diff --git a/sigap-website/app/(pages)/layout.tsx b/sigap-website/app/(pages)/layout.tsx index effd8c5..d2cce73 100644 --- a/sigap-website/app/(pages)/layout.tsx +++ b/sigap-website/app/(pages)/layout.tsx @@ -1,6 +1,7 @@ import { Geist } from "next/font/google"; import { ThemeProvider } from "next-themes"; import "@/app/_styles/globals.css"; +import "@/app/_styles/ui.css"; import ReactQueryProvider from "@/app/_lib/react-query-provider"; import { Toaster } from "@/app/_components/ui/sonner"; diff --git a/sigap-website/app/_components/map/crime-map.tsx b/sigap-website/app/_components/map/crime-map.tsx index c454df3..5d082e9 100644 --- a/sigap-website/app/_components/map/crime-map.tsx +++ b/sigap-website/app/_components/map/crime-map.tsx @@ -218,7 +218,7 @@ export default function CrimeMap() { ) : ( -
+
{ + if (!map) return; + + // Function to add coastline layer + function addCoastline() { + const sourceId = 'coastline'; + const layerId = 'outline-coastline'; + + // Make sure map is defined + if (!map) return; + + try { + // Check if the source already exists + if (!map.getSource(sourceId)) { + // Add coastline data source + fetch('/geojson/garis_pantai.geojson') + .then(response => response.json()) + .then(data => { + // Add coastline data source + map.addSource(sourceId, { + type: 'geojson', + generateId: true, + data: data + }); + + // Add coastline layer + map.addLayer({ + 'id': layerId, + 'type': 'line', + 'source': sourceId, + 'layout': { + 'visibility': visible ? 'visible' : 'none', + }, + 'paint': { + 'line-color': ['get', 'color'], + 'line-width': 5, + 'line-opacity': 1 + } + }); + }) + .catch((error) => { + console.error('Error fetching coastline data:', error); + }); + } else if (map.getLayer(layerId)) { + // If the layer exists, just update its visibility + map.setLayoutProperty( + layerId, + 'visibility', + visible ? 'visible' : 'none' + ); + } + } catch (error) { + console.warn("Error adding coastline:", error); + } + } + + // Function to clean up layers + function cleanupCoastline() { + try { + if (!map || !map.getStyle()) return; + + const layerId = 'outline-coastline'; + const sourceId = 'coastline'; + + if (map.getLayer(layerId)) { + map.removeLayer(layerId); + } + + if (map.getSource(sourceId)) { + map.removeSource(sourceId); + } + } catch (error) { + console.warn("Error cleaning up coastline:", error); + } + } + + let timeoutId: NodeJS.Timeout | undefined; + + // Try to add the layers now or set up listeners for when map is ready + try { + if (map.loaded() && map.isStyleLoaded()) { + addCoastline(); + } else { + // Use multiple events to catch map ready state + map.on('load', addCoastline); + map.on('style.load', addCoastline); + map.on('styledata', addCoastline); + + // Fallback timeout + timeoutId = setTimeout(() => { + addCoastline(); + }, 2000); + } + } catch (error) { + console.warn("Error setting up coastline:", error); + } + + // Single cleanup function + return () => { + if (timeoutId) clearTimeout(timeoutId); + + if (map) { + map.off('load', addCoastline); + map.off('style.load', addCoastline); + map.off('styledata', addCoastline); + } + + cleanupCoastline(); + }; + }, [map, visible]); + + return null; +} diff --git a/sigap-website/app/_components/map/layers/fault-lines.tsx b/sigap-website/app/_components/map/layers/fault-lines.tsx new file mode 100644 index 0000000..5adfbcd --- /dev/null +++ b/sigap-website/app/_components/map/layers/fault-lines.tsx @@ -0,0 +1,117 @@ +"use client" + +import React, { useEffect } from 'react'; +import mapboxgl from 'mapbox-gl'; + +interface FaultLinesLayerProps { + map: mapboxgl.Map | null; + visible?: boolean; +} + +export default function FaultLinesLayer({ map, visible = true }: FaultLinesLayerProps) { + useEffect(() => { + if (!map) return; + + // Function to add fault lines layer + function addFaultLines() { + const sourceId = 'indo_faults_lines'; + const layerId = 'indo_faults_line_layer'; + + // Make sure map is defined + if (!map) return; + + try { + // Check if the source already exists + if (!map.getSource(sourceId)) { + // Add fault lines data source + const url = "/geojson/indo_faults_lines.geojson"; + map.addSource(sourceId, { + 'type': 'geojson', + 'generateId': true, + 'data': url + }); + + // Add a line layer to visualize the fault lines + map.addLayer({ + 'id': layerId, + 'type': 'line', + 'source': sourceId, + 'layout': { + 'visibility': visible ? 'visible' : 'none' + }, + 'paint': { + 'line-color': 'red', + 'line-width': 1, + 'line-opacity': 0.5 + } + }); + } else if (map.getLayer(layerId)) { + // If the layer exists, just update its visibility + map.setLayoutProperty( + layerId, + 'visibility', + visible ? 'visible' : 'none' + ); + } + } catch (error) { + console.warn("Error adding fault lines:", error); + } + } + + // Function to clean up layers + function cleanupFaultLines() { + try { + if (!map || !map.getStyle()) return; + + const layerId = 'indo_faults_line_layer'; + const sourceId = 'indo_faults_lines'; + + if (map.getLayer(layerId)) { + map.removeLayer(layerId); + } + + if (map.getSource(sourceId)) { + map.removeSource(sourceId); + } + } catch (error) { + console.warn("Error cleaning up fault lines:", error); + } + } + + let timeoutId: NodeJS.Timeout | undefined; + + // Try to add the layers now or set up listeners for when map is ready + try { + if (map.loaded() && map.isStyleLoaded()) { + addFaultLines(); + } else { + // Use multiple events to catch map ready state + map.on('load', addFaultLines); + map.on('style.load', addFaultLines); + map.on('styledata', addFaultLines); + + // Fallback timeout + timeoutId = setTimeout(() => { + addFaultLines(); + }, 2000); + } + } catch (error) { + console.warn("Error setting up fault lines:", error); + } + + // Single cleanup function + return () => { + if (timeoutId) clearTimeout(timeoutId); + + if (map) { + map.off('load', addFaultLines); + map.off('style.load', addFaultLines); + map.off('styledata', addFaultLines); + } + + cleanupFaultLines(); + }; + }, [map, visible]); + + return null; +} diff --git a/sigap-website/app/_components/map/layers/layers.tsx b/sigap-website/app/_components/map/layers/layers.tsx index 3614b33..22cd202 100644 --- a/sigap-website/app/_components/map/layers/layers.tsx +++ b/sigap-website/app/_components/map/layers/layers.tsx @@ -20,7 +20,9 @@ import type { IUnits } from "@/app/_utils/types/units" import UnitsLayer from "./units-layer" import DistrictFillLineLayer from "./district-layer" import CrimePopup from "../pop-up/crime-popup" -import TimeZonesDisplay from "../timezone" +import TimeZonesDisplay from "./timezone" +import TimezoneLayer from "./timezone" +import FaultLinesLayer from "./fault-lines" // Interface for crime incident interface ICrimeIncident { @@ -102,31 +104,31 @@ export default function Layers({ setSelectedIncident(null) setFocusedDistrictId(null) - // Reset map view/camera - if (map) { - map.easeTo({ - zoom: BASE_ZOOM, - pitch: BASE_PITCH, - bearing: BASE_BEARING, - duration: 1500, - easing: (t) => t * (2 - t), // easeOutQuad - }) + // Reset map view/camera + if (map) { + map.easeTo({ + zoom: BASE_ZOOM, + pitch: BASE_PITCH, + bearing: BASE_BEARING, + duration: 1500, + easing: (t) => t * (2 - t), // easeOutQuad + }) - // Show all clusters again when closing popup - if (map.getLayer("clusters")) { - map.getMap().setLayoutProperty("clusters", "visibility", "visible") - } - if (map.getLayer("unclustered-point")) { - map.getMap().setLayoutProperty("unclustered-point", "visibility", "visible") + // Show all clusters again when closing popup + if (map.getLayer("clusters")) { + map.getMap().setLayoutProperty("clusters", "visibility", "visible") + } + if (map.getLayer("unclustered-point")) { + map.getMap().setLayoutProperty("unclustered-point", "visibility", "visible") + } + + // Update fill color for all districts + if (map.getLayer("district-fill")) { + const fillColorExpression = createFillColorExpression(null, crimeDataByDistrict) + map.getMap().setPaintProperty("district-fill", "fill-color", fillColorExpression as any) + } } - - // Update fill color for all districts - if (map.getLayer("district-fill")) { - const fillColorExpression = createFillColorExpression(null, crimeDataByDistrict) - map.getMap().setPaintProperty("district-fill", "fill-color", fillColorExpression as any) - } - } - }, [map, crimeDataByDistrict]) + }, [map, crimeDataByDistrict]) // Handle district popup close specifically const handleCloseDistrictPopup = useCallback(() => { @@ -173,8 +175,8 @@ export default function Layers({ } } }, - [map], - ) + [map], + ) // Set up custom event handler for fly-to events useEffect(() => { @@ -212,88 +214,88 @@ export default function Layers({ const customEvent = e as CustomEvent console.log("Received incident_click event in layers:", customEvent.detail) - // Enhanced error checking - if (!customEvent.detail) { - console.error("Empty incident click event data") - return - } + // Enhanced error checking + if (!customEvent.detail) { + console.error("Empty incident click event data") + return + } - // Allow for different property names in the event data - const incidentId = customEvent.detail.id || customEvent.detail.incidentId || customEvent.detail.incident_id + // Allow for different property names in the event data + const incidentId = customEvent.detail.id || customEvent.detail.incidentId || customEvent.detail.incident_id - if (!incidentId) { - console.error("No incident ID found in event data:", customEvent.detail) - return - } + if (!incidentId) { + console.error("No incident ID found in event data:", customEvent.detail) + return + } - console.log("Looking for incident with ID:", incidentId) + console.log("Looking for incident with ID:", incidentId) - // Improved incident finding - let foundIncident: ICrimeIncident | undefined + // Improved incident finding + let foundIncident: ICrimeIncident | undefined - // First try to use the data directly from the event if it has all needed properties - if ( - customEvent.detail.latitude !== undefined && - customEvent.detail.longitude !== undefined && - customEvent.detail.category !== undefined - ) { - foundIncident = { - id: incidentId, - district: customEvent.detail.district, - category: customEvent.detail.category, - type_category: customEvent.detail.type, - description: customEvent.detail.description, - status: customEvent.detail.status || "Unknown", - timestamp: customEvent.detail.timestamp ? new Date(customEvent.detail.timestamp) : undefined, - latitude: customEvent.detail.latitude, - longitude: customEvent.detail.longitude, - address: customEvent.detail.address, - } - } else { - // Otherwise search through the crimes data - for (const crime of crimes) { - for (const incident of crime.crime_incidents) { - if (incident.id === incidentId || incident.id?.toString() === incidentId?.toString()) { - console.log("Found matching incident:", incident) - foundIncident = { - id: incident.id, - district: crime.districts.name, - description: incident.description, - status: incident.status || "unknown", - timestamp: incident.timestamp, - category: incident.crime_categories.name, - type_category: incident.crime_categories.type, - address: incident.locations.address, - latitude: incident.locations.latitude, - longitude: incident.locations.longitude, - } - break - } - } - if (foundIncident) break - } - } + // First try to use the data directly from the event if it has all needed properties + if ( + customEvent.detail.latitude !== undefined && + customEvent.detail.longitude !== undefined && + customEvent.detail.category !== undefined + ) { + foundIncident = { + id: incidentId, + district: customEvent.detail.district, + category: customEvent.detail.category, + type_category: customEvent.detail.type, + description: customEvent.detail.description, + status: customEvent.detail.status || "Unknown", + timestamp: customEvent.detail.timestamp ? new Date(customEvent.detail.timestamp) : undefined, + latitude: customEvent.detail.latitude, + longitude: customEvent.detail.longitude, + address: customEvent.detail.address, + } + } else { + // Otherwise search through the crimes data + for (const crime of crimes) { + for (const incident of crime.crime_incidents) { + if (incident.id === incidentId || incident.id?.toString() === incidentId?.toString()) { + console.log("Found matching incident:", incident) + foundIncident = { + id: incident.id, + district: crime.districts.name, + description: incident.description, + status: incident.status || "unknown", + timestamp: incident.timestamp, + category: incident.crime_categories.name, + type_category: incident.crime_categories.type, + address: incident.locations.address, + latitude: incident.locations.latitude, + longitude: incident.locations.longitude, + } + break + } + } + if (foundIncident) break + } + } - if (!foundIncident) { - console.error("Could not find incident with ID:", incidentId) - return - } + if (!foundIncident) { + console.error("Could not find incident with ID:", incidentId) + return + } - if (!foundIncident.latitude || !foundIncident.longitude) { - console.error("Found incident has invalid coordinates:", foundIncident) - return - } + if (!foundIncident.latitude || !foundIncident.longitude) { + console.error("Found incident has invalid coordinates:", foundIncident) + return + } - console.log("Setting selected incident:", foundIncident) + console.log("Setting selected incident:", foundIncident) - // Clear any existing district selection first - setSelectedDistrict(null) - selectedDistrictRef.current = null - setFocusedDistrictId(null) + // Clear any existing district selection first + setSelectedDistrict(null) + selectedDistrictRef.current = null + setFocusedDistrictId(null) - // Set the selected incident - setSelectedIncident(foundIncident) - } + // Set the selected incident + setSelectedIncident(foundIncident) + } // Add event listeners to both the map canvas and document mapboxMap.getCanvas().addEventListener("incident_click", handleIncidentClickEvent as EventListener) @@ -317,67 +319,67 @@ export default function Layers({ const districtId = selectedDistrictRef.current.id const districtCrime = crimes.find((crime) => crime.district_id === districtId) - if (districtCrime) { - const selectedYearNum = year ? Number.parseInt(year) : new Date().getFullYear() + if (districtCrime) { + const selectedYearNum = year ? Number.parseInt(year) : new Date().getFullYear() - let demographics = districtCrime.districts.demographics?.find((d) => d.year === selectedYearNum) + let demographics = districtCrime.districts.demographics?.find((d) => d.year === selectedYearNum) - if (!demographics && districtCrime.districts.demographics?.length) { - demographics = districtCrime.districts.demographics.sort((a, b) => b.year - a.year)[0] - } + if (!demographics && districtCrime.districts.demographics?.length) { + demographics = districtCrime.districts.demographics.sort((a, b) => b.year - a.year)[0] + } - let geographics = districtCrime.districts.geographics?.find((g) => g.year === selectedYearNum) + let geographics = districtCrime.districts.geographics?.find((g) => g.year === selectedYearNum) - if (!geographics && districtCrime.districts.geographics?.length) { - const validGeographics = districtCrime.districts.geographics - .filter((g) => g.year !== null) - .sort((a, b) => (b.year || 0) - (a.year || 0)) + if (!geographics && districtCrime.districts.geographics?.length) { + const validGeographics = districtCrime.districts.geographics + .filter((g) => g.year !== null) + .sort((a, b) => (b.year || 0) - (a.year || 0)) - geographics = validGeographics.length > 0 ? validGeographics[0] : districtCrime.districts.geographics[0] - } + geographics = validGeographics.length > 0 ? validGeographics[0] : districtCrime.districts.geographics[0] + } - if (!demographics || !geographics) { - console.error("Missing district data:", { demographics, geographics }) - return - } + if (!demographics || !geographics) { + console.error("Missing district data:", { demographics, geographics }) + return + } - const crime_incidents = districtCrime.crime_incidents - .filter((incident) => filterCategory === "all" || incident.crime_categories.name === filterCategory) - .map((incident) => ({ - id: incident.id, - timestamp: incident.timestamp, - description: incident.description, - status: incident.status || "", - category: incident.crime_categories.name, - type: incident.crime_categories.type || "", - address: incident.locations.address || "", - latitude: incident.locations.latitude, - longitude: incident.locations.longitude, - })) + const crime_incidents = districtCrime.crime_incidents + .filter((incident) => filterCategory === "all" || incident.crime_categories.name === filterCategory) + .map((incident) => ({ + id: incident.id, + timestamp: incident.timestamp, + description: incident.description, + status: incident.status || "", + category: incident.crime_categories.name, + type: incident.crime_categories.type || "", + address: incident.locations.address || "", + latitude: incident.locations.latitude, + longitude: incident.locations.longitude, + })) - const updatedDistrict: IDistrictFeature = { - ...selectedDistrictRef.current, - number_of_crime: crimeDataByDistrict[districtId]?.number_of_crime || 0, - level: crimeDataByDistrict[districtId]?.level || selectedDistrictRef.current.level, - demographics: { - number_of_unemployed: demographics.number_of_unemployed, - population: demographics.population, - population_density: demographics.population_density, - year: demographics.year, - }, - geographics: { - address: geographics.address || "", - land_area: geographics.land_area || 0, - year: geographics.year || 0, - latitude: geographics.latitude, - longitude: geographics.longitude, - }, - crime_incidents, - selectedYear: year, - selectedMonth: month, - } + const updatedDistrict: IDistrictFeature = { + ...selectedDistrictRef.current, + number_of_crime: crimeDataByDistrict[districtId]?.number_of_crime || 0, + level: crimeDataByDistrict[districtId]?.level || selectedDistrictRef.current.level, + demographics: { + number_of_unemployed: demographics.number_of_unemployed, + population: demographics.population, + population_density: demographics.population_density, + year: demographics.year, + }, + geographics: { + address: geographics.address || "", + land_area: geographics.land_area || 0, + year: geographics.year || 0, + latitude: geographics.latitude, + longitude: geographics.longitude, + }, + crime_incidents, + selectedYear: year, + selectedMonth: month, + } - selectedDistrictRef.current = updatedDistrict + selectedDistrictRef.current = updatedDistrict setSelectedDistrict((prevDistrict) => { if ( @@ -391,7 +393,7 @@ export default function Layers({ }) } } - }, [crimes, filterCategory, year, month, crimeDataByDistrict]) + }, [crimes, filterCategory, year, month, crimeDataByDistrict]) // Make sure we have a defined handler for setFocusedDistrictId const handleSetFocusedDistrictId = useCallback((id: string | null, isMarkerClick = false) => { @@ -431,114 +433,119 @@ export default function Layers({ crimeDataByDistrict={crimeDataByDistrict} showFill={showDistrictFill} activeControl={activeControl} - onDistrictClick={handleDistrictClick} // Add this prop to pass the click handler - /> + onDistrictClick={handleDistrictClick} // Add this prop to pass the click handler + /> - {/* Heatmap Layer */} - + {/* Heatmap Layer */} + - {/* Timeline Layer - make sure this is the only visible layer in timeline mode */} - + {/* Timeline Layer - make sure this is the only visible layer in timeline mode */} + - {/* Units Layer - always show incidents when Units is active */} - + {/* Units Layer - always show incidents when Units is active */} + - {/* Cluster Layer - only enable when the clusters control is active and NOT in timeline mode */} - + {/* Cluster Layer - only enable when the clusters control is active and NOT in timeline mode */} + - {/* Unclustered Points Layer - now show for both incidents and units modes */} - + {/* Unclustered Points Layer - now show for both incidents and units modes */} + - {/* District Popup */} - {selectedDistrict && !selectedIncident && ( - <> - + {/* District Popup */} + {selectedDistrict && !selectedIncident && ( + <> + - - - )} + + + )} {/* Timeline Layer - only show if active control is timeline */} - + - {/* Incident Popup */} - {selectedIncident && selectedIncident.latitude && selectedIncident.longitude && ( - - )} + {/* Fault line layer */} + - {/* Debug info for development */} -
-
Selected District: {selectedDistrict ? selectedDistrict.name : "None"}
-
Selected Incident: {selectedIncident ? selectedIncident.id : "None"}
-
Focused District ID: {focusedDistrictId || "None"}
-
- - ) + + )} + + {/* Debug info for development */} + {/*
+
Selected District: {selectedDistrict ? selectedDistrict.name : "None"}
+
Selected Incident: {selectedIncident ? selectedIncident.id : "None"}
+
Focused District ID: {focusedDistrictId || "None"}
+
*/} + + ) } diff --git a/sigap-website/app/_components/map/layers/timeline-layer.tsx b/sigap-website/app/_components/map/layers/timeline-layer.tsx index 01575d3..46e619e 100644 --- a/sigap-website/app/_components/map/layers/timeline-layer.tsx +++ b/sigap-website/app/_components/map/layers/timeline-layer.tsx @@ -7,7 +7,7 @@ import type mapboxgl from "mapbox-gl" import { format } from "date-fns" import { calculateAverageTimeOfDay } from "@/app/_utils/time" import TimelinePopup from "../pop-up/timeline-popup" -import TimeZonesDisplay from "../timezone" +import TimeZonesDisplay from "./timezone" interface TimelineLayerProps { crimes: ICrimes[] diff --git a/sigap-website/app/_components/map/layers/timezone.tsx b/sigap-website/app/_components/map/layers/timezone.tsx new file mode 100644 index 0000000..d34fcfa --- /dev/null +++ b/sigap-website/app/_components/map/layers/timezone.tsx @@ -0,0 +1,146 @@ +"use client" + +import React, { useEffect, useRef } from 'react'; +import mapboxgl from 'mapbox-gl'; +import { createRoot } from 'react-dom/client'; +import { Badge } from "@/app/_components/ui/badge"; + +interface TimezoneLayerProps { + map: mapboxgl.Map | null; +} + +// Component to display time in a specific timezone +function Jam({ timeZone }: { timeZone: string }) { + const [time, setTime] = React.useState(""); + + useEffect(() => { + function updateTime() { + const now = new Date(); + const options: Intl.DateTimeFormatOptions = { + hour: '2-digit', + minute: '2-digit', + hour12: false, + timeZone + }; + setTime(now.toLocaleTimeString('id-ID', options)); + } + + updateTime(); + const interval = setInterval(updateTime, 1000); + return () => clearInterval(interval); + }, [timeZone]); + + return <>{time}; +} + +export default function TimezoneLayer({ map }: TimezoneLayerProps) { + const hoverTimezone = useRef(null); + const markersRef = useRef([]); + + useEffect(() => { + if (!map) return; + + // Function to add timezone data and markers + function addTimezoneLayers() { + // Add timezone data source + const url = "/geojson/timezones_wVVG8.geojson"; // Changed path to public folder + if (map && !map.getSource('timezone')) { + map.addSource('timezone', { + 'type': 'geojson', + 'generateId': true, + 'data': url + }); + + // Add timezone boundaries + map.addLayer({ + 'id': 'timezone-line', + 'type': 'line', + 'source': 'timezone', + 'layout': {}, + 'paint': { + 'line-color': 'orange', + 'line-width': 1, + 'line-opacity': 0.5 + } + }); + + // Create markers for Indonesian time zones + const createTimeMarker = (lngLat: [number, number], timeZone: string, label: string) => { + const markerElement = document.createElement('div'); + const root = createRoot(markerElement); + root.render( +
+

+ +

+ {label} +
+ ); + + const marker = new mapboxgl.Marker(markerElement) + .setLngLat(lngLat) + .addTo(map); + + markersRef.current.push(marker); + return marker; + }; + + // WIB (GMT+7) + createTimeMarker([107.4999769225339, 3.4359354227361933], "Asia/Jakarta", "WIB / GMT+7"); + + // WITA (GMT+8) + createTimeMarker([119.1174733337183, 3.4359354227361933], "Asia/Makassar", "WITA / GMT+8"); + + // WIT (GMT+9) + createTimeMarker([131.58387377752751, 3.4359354227361933], "Asia/Jayapura", "WIT / GMT+9"); + } + } + + // Check if style is loaded, otherwise wait for it + if (map.isStyleLoaded()) { + addTimezoneLayers(); + } else { + // Use both 'load' and 'style.load' events to ensure we catch the style loading + map.on('load', addTimezoneLayers); + map.on('style.load', addTimezoneLayers); + + // Fallback: If style hasn't loaded within 2 seconds, try again + const timeoutId = setTimeout(() => { + if (map.isStyleLoaded()) { + addTimezoneLayers(); + } + }, 2000); + + // Clean up the timeout if component unmounts + return () => { + clearTimeout(timeoutId); + map.off('load', addTimezoneLayers); + map.off('style.load', addTimezoneLayers); + + cleanupLayers(); + }; + } + + function cleanupLayers() { + if (map && map.getLayer('timezone-line')) { + map.removeLayer('timezone-line'); + } + if (map && map.getSource('timezone')) { + map.removeSource('timezone'); + } + + // Remove all markers + markersRef.current.forEach(marker => marker.remove()); + markersRef.current = []; + } + + // Clean up function + return () => { + cleanupLayers(); + }; + }, [map]); + + return null; +} diff --git a/sigap-website/app/_components/map/map.tsx b/sigap-website/app/_components/map/map.tsx index f959a1b..cfb5a15 100644 --- a/sigap-website/app/_components/map/map.tsx +++ b/sigap-website/app/_components/map/map.tsx @@ -7,8 +7,9 @@ import { FullscreenControl } from "react-map-gl/mapbox" import { BASE_BEARING, BASE_LATITUDE, BASE_LONGITUDE, BASE_PITCH, BASE_ZOOM, MAPBOX_STYLES, type MapboxStyle } from "@/app/_utils/const/map" import "mapbox-gl/dist/mapbox-gl.css" import MapboxGeocoder from '@mapbox/mapbox-gl-geocoder'; -import '@mapbox/mapbox-gl-geocoder/dist/mapbox-gl-geocoder.css'; + import mapboxgl from "mapbox-gl" +import TimezoneLayer from './layers/timezone'; interface MapViewProps { children?: React.ReactNode @@ -20,6 +21,7 @@ interface MapViewProps { mapboxApiAccessToken?: string onMoveEnd?: (viewState: ViewState) => void customControls?: React.ReactNode + showTimezones?: boolean // Add option to show timezones } export default function MapView({ @@ -31,6 +33,7 @@ export default function MapView({ height = "100%", mapboxApiAccessToken = process.env.NEXT_PUBLIC_MAPBOX_ACCESS_TOKEN, onMoveEnd, + showTimezones = false, // Add option to show timezones }: MapViewProps) { const mapContainerRef = useRef(null); const mapRef = useRef(null); @@ -122,6 +125,8 @@ export default function MapView({ {/* */} + {/* {showTimezones && mapRef.current && } */} + {children}
diff --git a/sigap-website/app/_components/map/markers/digital-clock.tsx b/sigap-website/app/_components/map/markers/digital-clock.tsx index 9118f4e..477f3dc 100644 --- a/sigap-website/app/_components/map/markers/digital-clock.tsx +++ b/sigap-website/app/_components/map/markers/digital-clock.tsx @@ -1,83 +1,42 @@ "use client" -import { useState, useEffect } from "react" -import { Marker } from "react-map-gl/mapbox" +import React, { useEffect, useState } from 'react'; -interface DigitalClockMarkerProps { - longitude: number - latitude: number - time: string - timeOfDay: string - onClick?: () => void +interface DigitalClockProps { + timeZone: string; + className?: string; + format?: '12h' | '24h'; + showSeconds?: boolean; } -export default function DigitalClockMarker({ longitude, latitude, time, timeOfDay, onClick }: DigitalClockMarkerProps) { - const [isBlinking, setIsBlinking] = useState(false) +export default function DigitalClock({ + timeZone, + className = "", + format = '24h', + showSeconds = false +}: DigitalClockProps) { + const [time, setTime] = useState(""); - // Blink effect for the colon in the time display useEffect(() => { - const interval = setInterval(() => { - setIsBlinking((prev) => !prev) - }, 1000) - - return () => clearInterval(interval) - }, []) - - // Get background color based on time of day - const getBackgroundColor = () => { - switch (timeOfDay) { - case "morning": - return "#FFEB3B" // yellow - case "afternoon": - return "#FF9800" // orange - case "evening": - return "#3F51B5" // indigo - case "night": - return "#263238" // dark blue-grey - default: - return "#4CAF50" // green fallback - } + function updateTime() { + const now = new Date(); + const options: Intl.DateTimeFormatOptions = { + hour: '2-digit', + minute: '2-digit', + second: showSeconds ? '2-digit' : undefined, + hour12: format === '12h', + timeZone + }; + setTime(now.toLocaleTimeString('id-ID', options)); } - // Get text color based on time of day - const getTextColor = () => { - switch (timeOfDay) { - case "morning": - case "afternoon": - return "#000000" - case "evening": - case "night": - return "#FFFFFF" - default: - return "#000000" - } - } - - // Format time with blinking colon - const formatTime = (timeString: string) => { - if (!isBlinking) { - return timeString - } - return timeString.replace(":", " ") - } + // Update immediately, then every second + updateTime(); + const interval = setInterval(updateTime, 1000); + return () => clearInterval(interval); + }, [timeZone, format, showSeconds]); return ( - -
-
- {formatTime(time)} -
-
-
- ) + {time} + ); } diff --git a/sigap-website/app/_components/map/timezone.tsx b/sigap-website/app/_components/map/timezone.tsx deleted file mode 100644 index 51c2bb6..0000000 --- a/sigap-website/app/_components/map/timezone.tsx +++ /dev/null @@ -1,72 +0,0 @@ -"use client" - -import { useEffect, useState } from "react" -import { Marker } from "react-map-gl/mapbox" - -interface TimeZoneMarker { - name: string - offset: number - longitude: number - latitude: number -} - -const TIME_ZONES: TimeZoneMarker[] = [ - { name: "WIB", offset: 7, longitude: 110.5, latitude: -3.3 }, // Between Java and Sumatra - { name: "WITA", offset: 8, longitude: 118.8, latitude: -2.5 }, // Between Java and Kalimantan - { name: "WIT", offset: 9, longitude: 128.0, latitude: -2.0 }, // Between Sulawesi and Papua -] - -export default function TimeZonesDisplay() { - const [currentTimes, setCurrentTimes] = useState>({}) - - useEffect(() => { - const updateTimes = () => { - const now = new Date() - const times: Record = {} - - TIME_ZONES.forEach((zone) => { - const localTime = new Date(now.getTime()) - localTime.setHours(now.getUTCHours() + zone.offset) - - const hours = localTime.getHours().toString().padStart(2, "0") - const minutes = localTime.getMinutes().toString().padStart(2, "0") - const seconds = localTime.getSeconds().toString().padStart(2, "0") - - times[zone.name] = `${hours}:${minutes}:${seconds}` - }) - - setCurrentTimes(times) - } - - // Update immediately and then every second - updateTimes() - const interval = setInterval(updateTimes, 1000) - - return () => clearInterval(interval) - }, []) - - return ( - <> - {TIME_ZONES.map((zone) => ( - -
-
-
-
{zone.name} / GMT+{zone.offset}
-
- {currentTimes[zone.name] || "00:00:00"} -
-
-
-
-
- ))} - - ) -} diff --git a/sigap-website/app/_styles/globals.css b/sigap-website/app/_styles/globals.css index 75216f9..60189fd 100644 --- a/sigap-website/app/_styles/globals.css +++ b/sigap-website/app/_styles/globals.css @@ -2,6 +2,8 @@ @tailwind components; @tailwind utilities; +@import url(//fonts.googleapis.com/css?family=Roboto+Condensed:400,600,700); + @layer base { :root { /* Latar belakang terang: putih bersih */ @@ -136,97 +138,23 @@ } } -/* Mapbox Popup Styles */ -.mapboxgl-popup { - z-index: 10; +@font-face { + font-family: "DS-Digital"; + src: url("/ds_digital/DIGITAL.TXT"); } - -.mapboxgl-popup-content { - padding: 0 !important; - border-radius: 0.5rem !important; - box-shadow: - 0 10px 15px -3px rgba(0, 0, 0, 0.1), - 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; - overflow: hidden; -} - -.mapboxgl-popup-close-button { - display: none !important; -} - -.map-popup .mapboxgl-popup-content { - max-width: 300px; -} - -/* Mapbox copyright */ -.mapbox-logo { - display: none !important; -} -.mapboxgl-ctrl-logo { - display: none !important; -} - -/* .mapbox-improve-map { - display: none; -} -.mapboxgl-ctrl-compass { - display: none; -} */ - -.mapbox-gl-draw_point { - background-repeat: no-repeat; - background-position: center; - pointer-events: auto; - background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB4bWxuczpzb2RpcG9kaT0iaHR0cDovL3NvZGlwb2RpLnNvdXJjZWZvcmdlLm5ldC9EVEQvc29kaXBvZGktMC5kdGQiICAgeG1sbnM6aW5rc2NhcGU9Imh0dHA6Ly93d3cuaW5rc2NhcGUub3JnL25hbWVzcGFjZXMvaW5rc2NhcGUiICAgd2lkdGg9IjIwIiAgIGhlaWdodD0iMjAiICAgdmlld0JveD0iMCAwIDIwIDIwIiAgIGlkPSJzdmcxOTE2NyIgICB2ZXJzaW9uPSIxLjEiICAgaW5rc2NhcGU6dmVyc2lvbj0iMC45MStkZXZlbCtvc3htZW51IHIxMjkxMSIgICBzb2RpcG9kaTpkb2NuYW1lPSJtYXJrZXIuc3ZnIj4gIDxkZWZzICAgICBpZD0iZGVmczE5MTY5IiAvPiAgPHNvZGlwb2RpOm5hbWVkdmlldyAgICAgaWQ9ImJhc2UiICAgICBwYWdlY29sb3I9IiNmZmZmZmYiICAgICBib3JkZXJjb2xvcj0iIzY2NjY2NiIgICAgIGJvcmRlcm9wYWNpdHk9IjEuMCIgICAgIGlua3NjYXBlOnBhZ2VvcGFjaXR5PSIwLjAiICAgICBpbmtzY2FwZTpwYWdlc2hhZG93PSIyIiAgICAgaW5rc2NhcGU6em9vbT0iMTYiICAgICBpbmtzY2FwZTpjeD0iMTQuMTY0MjUzIiAgICAgaW5rc2NhcGU6Y3k9IjguODg1NzIiICAgICBpbmtzY2FwZTpkb2N1bWVudC11bml0cz0icHgiICAgICBpbmtzY2FwZTpjdXJyZW50LWxheWVyPSJsYXllcjEiICAgICBzaG93Z3JpZD0iZmFsc2UiICAgICB1bml0cz0icHgiICAgICBpbmtzY2FwZTp3aW5kb3ctd2lkdGg9IjEyODAiICAgICBpbmtzY2FwZTp3aW5kb3ctaGVpZ2h0PSI3NTEiICAgICBpbmtzY2FwZTp3aW5kb3cteD0iMjA4IiAgICAgaW5rc2NhcGU6d2luZG93LXk9IjE5MCIgICAgIGlua3NjYXBlOndpbmRvdy1tYXhpbWl6ZWQ9IjAiICAgICBpbmtzY2FwZTpvYmplY3Qtbm9kZXM9InRydWUiPiAgICA8aW5rc2NhcGU6Z3JpZCAgICAgICB0eXBlPSJ4eWdyaWQiICAgICAgIGlkPSJncmlkMTk3MTUiIC8+ICA8L3NvZGlwb2RpOm5hbWVkdmlldz4gIDxtZXRhZGF0YSAgICAgaWQ9Im1ldGFkYXRhMTkxNzIiPiAgICA8cmRmOlJERj4gICAgICA8Y2M6V29yayAgICAgICAgIHJkZjphYm91dD0iIj4gICAgICAgIDxkYzpmb3JtYXQ+aW1hZ2Uvc3ZnK3htbDwvZGM6Zm9ybWF0PiAgICAgICAgPGRjOnR5cGUgICAgICAgICAgIHJkZjpyZXNvdXJjZT0iaHR0cDovL3B1cmwub3JnL2RjL2RjbWl0eXBlL1N0aWxsSW1hZ2UiIC8+ICAgICAgICA8ZGM6dGl0bGUgLz4gICAgICA8L2NjOldvcms+ICAgIDwvcmRmOlJERj4gIDwvbWV0YWRhdGE+ICA8ZyAgICAgaW5rc2NhcGU6bGFiZWw9IkxheWVyIDEiICAgICBpbmtzY2FwZTpncm91cG1vZGU9ImxheWVyIiAgICAgaWQ9ImxheWVyMSIgICAgIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAsLTEwMzIuMzYyMikiPiAgICA8cGF0aCAgICAgICBzdHlsZT0iY29sb3I6IzAwMDAwMDtjbGlwLXJ1bGU6bm9uemVybztkaXNwbGF5OmlubGluZTtvdmVyZmxvdzp2aXNpYmxlO3Zpc2liaWxpdHk6dmlzaWJsZTtvcGFjaXR5OjE7aXNvbGF0aW9uOmF1dG87bWl4LWJsZW5kLW1vZGU6bm9ybWFsO2NvbG9yLWludGVycG9sYXRpb246c1JHQjtjb2xvci1pbnRlcnBvbGF0aW9uLWZpbHRlcnM6bGluZWFyUkdCO3NvbGlkLWNvbG9yOiMwMDAwMDA7c29saWQtb3BhY2l0eToxO2ZpbGw6IzAwMDAwMDtmaWxsLW9wYWNpdHk6MTtmaWxsLXJ1bGU6ZXZlbm9kZDtzdHJva2U6bm9uZTtzdHJva2Utd2lkdGg6MjtzdHJva2UtbGluZWNhcDpyb3VuZDtzdHJva2UtbGluZWpvaW46cm91bmQ7c3Ryb2tlLW1pdGVybGltaXQ6NDtzdHJva2UtZGFzaGFycmF5Om5vbmU7c3Ryb2tlLWRhc2hvZmZzZXQ6MDtzdHJva2Utb3BhY2l0eToxO21hcmtlcjpub25lO2NvbG9yLXJlbmRlcmluZzphdXRvO2ltYWdlLXJlbmRlcmluZzphdXRvO3NoYXBlLXJlbmRlcmluZzphdXRvO3RleHQtcmVuZGVyaW5nOmF1dG87ZW5hYmxlLWJhY2tncm91bmQ6YWNjdW11bGF0ZSIgICAgICAgZD0ibSAzNiwxMDQwLjM2MjIgYyA2ZS02LDMuMzA5MyAtNS45ODg2MTIsMTAgLTUuOTg4NjEyLDEwIDAsMCAtNS45OTg3NzYsLTYuNjY4IC02LjAxMTM0NSwtOS45NzcyIC0wLjAxMjU3LC0zLjMwOTIgMi42NTY1NzYsLTYuMDAzOSA1Ljk2NTc5MiwtNi4wMjI3IDMuMzA5MTg5LC0wLjAxOSA2LjAwODg0LDIuNjQ1MiA2LjAzMzk5Miw1Ljk1NDMiICAgICAgIGlkPSJwYXRoMTI1NjEiICAgICAgIGlua3NjYXBlOmNvbm5lY3Rvci1jdXJ2YXR1cmU9IjAiICAgICAgIHNvZGlwb2RpOm5vZGV0eXBlcz0iY2Nzc2MiIC8+ICAgIDxwYXRoICAgICAgIHN0eWxlPSJjb2xvcjojMDAwMDAwO2NsaXAtcnVsZTpub256ZXJvO2Rpc3BsYXk6aW5saW5lO292ZXJmbG93OnZpc2libGU7dmlzaWJpbGl0eTp2aXNpYmxlO29wYWNpdHk6MTtpc29sYXRpb246YXV0bzttaXgtYmxlbmQtbW9kZTpub3JtYWw7Y29sb3ItaW50ZXJwb2xhdGlvbjpzUkdCO2NvbG9yLWludGVycG9sYXRpb24tZmlsdGVyczpsaW5lYXJSR0I7c29saWQtY29sb3I6IzAwMDAwMDtzb2xpZC1vcGFjaXR5OjE7ZmlsbDojZmZmZmZmO2ZpbGwtb3BhY2l0eToxO2ZpbGwtcnVsZTpldmVub2RkO3N0cm9rZTpub25lO3N0cm9rZS13aWR0aDoyO3N0cm9rZS1saW5lY2FwOnJvdW5kO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDo0O3N0cm9rZS1kYXNoYXJyYXk6bm9uZTtzdHJva2UtZGFzaG9mZnNldDowO3N0cm9rZS1vcGFjaXR5OjE7bWFya2VyOm5vbmU7Y29sb3ItcmVuZGVyaW5nOmF1dG87aW1hZ2UtcmVuZGVyaW5nOmF1dG87c2hhcGUtcmVuZGVyaW5nOmF1dG87dGV4dC1yZW5kZXJpbmc6YXV0bztlbmFibGUtYmFja2dyb3VuZDphY2N1bXVsYXRlIiAgICAgICBkPSJtIDM0LjAwMDExNSwxMDQwLjM2MjIgYyAtNWUtNiwyLjIwNjIgLTMuOTkyNTIzLDcuMDAwMSAtMy45OTI1MjMsNy4wMDAxIDAsMCAtMy45OTkyOTEsLTQuNzc4NyAtNC4wMDc2NzksLTYuOTg0OSAtMC4wMDg0LC0yLjIwNjIgMS43NzEwODIsLTQuMDAyNyAzLjk3NzMxLC00LjAxNTMgMi4yMDYyMSwtMC4wMTMgNC4wMDYwMzcsMS43NjM1IDQuMDIyNzc3LDMuOTY5NyIgICAgICAgaWQ9InBhdGgxMjU2MyIgICAgICAgaW5rc2NhcGU6Y29ubmVjdG9yLWN1cnZhdHVyZT0iMCIgICAgICAgc29kaXBvZGk6bm9kZXR5cGVzPSJjY2NzYyIgLz4gICAgPHBhdGggICAgICAgc3R5bGU9ImNvbG9yOiMwMDAwMDA7Y2xpcC1ydWxlOm5vbnplcm87ZGlzcGxheTppbmxpbmU7b3ZlcmZsb3c6dmlzaWJsZTt2aXNpYmlsaXR5OnZpc2libGU7b3BhY2l0eToxO2lzb2xhdGlvbjphdXRvO21peC1ibGVuZC1tb2RlOm5vcm1hbDtjb2xvci1pbnRlcnBvbGF0aW9uOnNSR0I7Y29sb3ItaW50ZXJwb2xhdGlvbi1maWx0ZXJzOmxpbmVhclJHQjtzb2xpZC1jb2xvcjojMDAwMDAwO3NvbGlkLW9wYWNpdHk6MTtmaWxsOiMwMDAwMDA7ZmlsbC1vcGFjaXR5OjE7ZmlsbC1ydWxlOmV2ZW5vZGQ7c3Ryb2tlOm5vbmU7c3Ryb2tlLXdpZHRoOjI7c3Ryb2tlLWxpbmVjYXA6cm91bmQ7c3Ryb2tlLWxpbmVqb2luOnJvdW5kO3N0cm9rZS1taXRlcmxpbWl0OjQ7c3Ryb2tlLWRhc2hhcnJheTpub25lO3N0cm9rZS1kYXNob2Zmc2V0OjA7c3Ryb2tlLW9wYWNpdHk6MTttYXJrZXI6bm9uZTtjb2xvci1yZW5kZXJpbmc6YXV0bztpbWFnZS1yZW5kZXJpbmc6YXV0bztzaGFwZS1yZW5kZXJpbmc6YXV0bzt0ZXh0LXJlbmRlcmluZzphdXRvO2VuYWJsZS1iYWNrZ3JvdW5kOmFjY3VtdWxhdGUiICAgICAgIGQ9Ik0gOS45NjY3OTY5LDEwMTQuMzYyMiBDIDYuNjU3NTgwOSwxMDE0LjM4MSAzLjk4NzQzLDEwMTcuMDc2NCA0LDEwMjAuMzg1NiBjIDAuMDEyNTY5LDMuMzA5MiA2LjAxMTcxOSw4Ljk3NjYgNi4wMTE3MTksOC45NzY2IDAsMCA1Ljk4ODI4NywtNS42OTA3IDUuOTg4MjgxLC05IGwgMCwtMC4wNDUgYyAtMC4wMjUxNSwtMy4zMDkxIC0yLjcyNDAxNCwtNS45NzQxIC02LjAzMzIwMzEsLTUuOTU1MSB6IG0gMC4wMDk3NywyIGMgMi4yMDYyMDYxLC0wLjAxMyA0LjAwNjY5MzEsMS43NjI2IDQuMDIzNDMzMSwzLjk2ODggbCAwLDAuMDMxIGMgLTVlLTYsMi4yMDYyIC0zLjk5MjE4OCw2IC0zLjk5MjE4OCw2IDAsMCAtMy45OTk0MjQsLTMuNzc4MiAtNC4wMDc4MTIsLTUuOTg0NCAtMC4wMDg0LC0yLjIwNjIgMS43NzAzMzQ1LC00LjAwMyAzLjk3NjU2MjUsLTQuMDE1NiB6IiAgICAgICBpZD0icGF0aDEyNTY4IiAgICAgICBpbmtzY2FwZTpjb25uZWN0b3ItY3VydmF0dXJlPSIwIiAgICAgICBzb2RpcG9kaTpub2RldHlwZXM9ImNzY3NjY2Njc2NzYyIgLz4gICAgPHBhdGggICAgICAgc3R5bGU9Im9wYWNpdHk6MTtmaWxsOiMwMDAwMDA7ZmlsbC1vcGFjaXR5OjE7c3Ryb2tlOm5vbmU7c3Ryb2tlLXdpZHRoOjI7c3Ryb2tlLWxpbmVjYXA6YnV0dDtzdHJva2UtbGluZWpvaW46YmV2ZWw7c3Ryb2tlLW1pdGVybGltaXQ6NDtzdHJva2UtZGFzaGFycmF5Om5vbmU7c3Ryb2tlLWRhc2hvZmZzZXQ6MDtzdHJva2Utb3BhY2l0eToxO21hcmtlcjpub25lIiAgICAgICBkPSJNIDEwIDIgQyA2LjY4NjI5MiAyIDQgNC42ODYzIDQgOCBDIDQgMTEuMzEzNyAxMCAxNyAxMCAxNyBDIDEwIDE3IDE2IDExLjMxMzcgMTYgOCBDIDE2IDQuNjg2MyAxMy4zMTM3MDggMiAxMCAyIHogTSAxMCA0IEMgMTIuMDcxMDY4IDQgMTMuNzUgNS42Nzg5IDEzLjc1IDcuNzUgQyAxMy43NSA5LjIwNTMyNzggMTEuOTMxMTEgMTEuNjQ0MzkzIDEwLjgzMDA3OCAxMyBMIDkuMTY5OTIxOSAxMyBDIDguMDY4ODkwMyAxMS42NDQzOTMgNi4yNSA5LjIwNTMyNzggNi4yNSA3Ljc1IEMgNi4yNSA1LjY3ODkgNy45Mjg5MzIgNCAxMCA0IHogIiAgICAgICB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLDEwMzIuMzYyMikiICAgICAgIGlkPSJwYXRoMTczMDUiIC8+ICA8L2c+PC9zdmc+); -} - - -/* Digital clock styling */ -.digital-clock { - font-family: monospace; - font-size: 1rem; +@font-face { + font-family: "DS-Digital"; + src: url("/ds_digital/DS-DIGIB.TTF"); font-weight: bold; - color: #ffb700; - background-color: #000; - padding: 0.25rem 0.5rem; - border-radius: 0.25rem; - border: 1px solid #333; - text-align: center; - letter-spacing: 0.05rem; - box-shadow: 0 0 5px rgba(255, 183, 0, 0.5); } - -/* Time zone markers */ -.time-zone-marker { - background-color: rgba(0, 0, 0, 0.7); - color: white; - padding: 0.5rem; - border-radius: 0.25rem; - border: 1px solid #333; - font-family: monospace; +@font-face { + font-family: "DS-Digital"; + src: url("/ds_digital/DS-DIGII.TTF"); + font-style: italic, oblique; } - -.time-zone-marker .zone-name { +@font-face { + font-family: "DS-Digital"; + src: url("/ds_digital/DS-DIGIT.TTF"); font-weight: bold; - text-align: center; - margin-bottom: 0.25rem; -} - -.time-zone-marker .zone-offset { - font-size: 0.75rem; - text-align: center; - color: #ccc; -} - -/* Digital Clock Styling */ -.digital-clock { - font-variant-numeric: tabular-nums; - letter-spacing: 0.05em; - background-color: rgba(0, 0, 0, 0.7); - padding: 0.25rem 0.5rem; - border-radius: 0.25rem; - box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5); - display: inline-block; - margin: 0.25rem 0; -} - + font-style: italic, oblique; +} \ No newline at end of file diff --git a/sigap-website/app/_styles/ui.css b/sigap-website/app/_styles/ui.css new file mode 100644 index 0000000..9b25029 --- /dev/null +++ b/sigap-website/app/_styles/ui.css @@ -0,0 +1,1265 @@ +:root { + --orange: #fa0; + --red: red; + --glow-rgb: 255, 102, 0; + --text-color: #fa0; + --danger-fill-color: #f23; + --danger-glow-rgb: 255, 0, 0; + --danger-text-color: #f23; + --gutter-size: 8px; +} + +.red-color { + color: var(--red); +} + +.red-bg { + background-color: var(--red); +} + +.red-border { + border: 1px solid var(--red); +} + +.strip-bar { + /* background-image: url("/images/strip.svg"); + background-size: 17%; */ + width: max(200vw, 2000px); + height: 30px; + display: inline-block; + margin-bottom: -5px; + + --stripe-color: var(--orange); + --stripe-size: 15px; + --glow-color: rgba(255, 94, 0, 0.8); + --glow-size: 3px; + background-image: repeating-linear-gradient( + -45deg, + /* glow boundary */ var(--glow-color) calc(-1 * var(--glow-size)), + /* fade into foreground */ var(--stripe-color) 0, + /* fade from foreground */ var(--stripe-color) + calc(var(--stripe-size) - var(--glow-size) / 2), + /* glow boundary */ var(--glow-color) + calc(var(--stripe-size) + var(--glow-size) / 2), + /* fade to background */ transparent + calc(var(--stripe-size) + var(--glow-size) / 2), + /* fade from background */ transparent calc(2 * var(--stripe-size)), + /* glow boundary */ var(--glow-color) + calc(2 * var(--stripe-size) - var(--glow-size)) + ); +} + +.strip-bar-red { + /* background-image: url("/images/strip.svg"); + background-size: 17%; */ + width: max(200vw, 2000px); + height: 30px; + display: inline-block; + margin-bottom: -5px; + + --stripe-color: var(--red); + --stripe-size: 15px; + --glow-color: rgba(255, 17, 0, 0.8); + --glow-size: 3px; + background-image: repeating-linear-gradient( + -45deg, + /* glow boundary */ var(--glow-color) calc(-1 * var(--glow-size)), + /* fade into foreground */ var(--stripe-color) 0, + /* fade from foreground */ var(--stripe-color) + calc(var(--stripe-size) - var(--glow-size) / 2), + /* glow boundary */ var(--glow-color) + calc(var(--stripe-size) + var(--glow-size) / 2), + /* fade to background */ transparent + calc(var(--stripe-size) + var(--glow-size) / 2), + /* fade from background */ transparent calc(2 * var(--stripe-size)), + /* glow boundary */ var(--glow-color) + calc(2 * var(--stripe-size) - var(--glow-size)) + ); +} + +.strip-bar-vertical { + height: 200vw; + transform: translate3d(0, 0, 0); + --stripe-color: var(--orange); + --stripe-size: 15px; + --glow-color: rgba(255, 94, 0, 0.8); + --glow-size: 3px; + background-image: repeating-linear-gradient( + 45deg, + var(--glow-color) calc(-1 * var(--glow-size)), + var(--stripe-color) 0, + var(--stripe-color) calc(var(--stripe-size) - var(--glow-size) / 2), + var(--glow-color) calc(var(--stripe-size) + var(--glow-size) / 2), + transparent calc(var(--stripe-size) + var(--glow-size) / 2), + transparent calc(2 * var(--stripe-size)), + var(--glow-color) calc(2 * var(--stripe-size) - var(--glow-size)) + ); +} + +.strip-bar-red-vertical { + height: 200vw; + transform: translate3d(0, 0, 0); + --stripe-color: var(--red); + --stripe-size: 15px; + --glow-color: rgba(255, 17, 0, 0.8); + --glow-size: 3px; + background-image: repeating-linear-gradient( + 45deg, + var(--glow-color) calc(-1 * var(--glow-size)), + var(--stripe-color) 0, + var(--stripe-color) calc(var(--stripe-size) - var(--glow-size) / 2), + var(--glow-color) calc(var(--stripe-size) + var(--glow-size) / 2), + transparent calc(var(--stripe-size) + var(--glow-size) / 2), + transparent calc(2 * var(--stripe-size)), + var(--glow-color) calc(2 * var(--stripe-size) - var(--glow-size)) + ); +} + +@keyframes slideinBg { + from { + background-position: top; + } + to { + background-position: -100px 0px; + } +} + +.strip-animation-vertical { + animation: stripAnimationVertical 15s infinite linear; +} + +.strip-animation-vertical-reverse { + animation: stripAnimationVertical 15s infinite linear reverse; +} + +.strip-animation { + animation: stripAnimation 10s infinite linear; +} + +.strip-animation-reverse { + animation: stripAnimation 10s infinite linear reverse; +} + +@keyframes stripAnimationVertical { + 100% { + /* background-position: 0px 100px; */ + transform: translateY(-66%); + } +} + +@keyframes stripAnimation { + 100% { + /* background-position: 0px 100px; */ + transform: translateX(-66%); + } +} + +.strip { + background-color: black; + width: 100vw; + border-top: 1px solid var(--red); + border-bottom: 1px solid var(--red); + position: fixed; +} + +.strip-wrapper { + width: max(200vw, 2000px); + overflow: hidden; + white-space: nowrap; +} + +@keyframes marquee1 { + 0% { + transform: translateX(100%); + } + + 100% { + transform: translateX(-100%); + } +} + +@keyframes marquee2 { + from { + transform: translateX(0%); + } + + to { + transform: translateX(-200%); + } +} + +.loop-strip { + animation: loopStrip infinite linear; + animation-duration: 10s; +} + +.loop-strip-reverse { + animation: loopStrip infinite linear reverse; + animation-duration: 10s; +} + +.anim-duration-10 { + animation-duration: 10s !important; +} + +.anim-duration-20 { + animation-duration: 20s !important; +} + +@keyframes loopStrip { + from { + transform: translateX(0); + } + + to { + transform: translateX(-100%); + } +} + +.show-pop-up { + animation: showPopUp 0.3s ease-in-out forwards; +} + +/* g.hexagon { + fill: transparent; +} */ + +@keyframes showPopUp { + 0% { + opacity: 0; + transform: scale(0.5); + } + + 100% { + opacity: 1; + transform: scale(1); + } +} + +.close-pop-up { + animation: closePopUp 0.3s ease-in-out forwards !important; +} + +@keyframes closePopUp { + 0% { + opacity: 1; + transform: scale(1); + } + + 100% { + opacity: 0; + transform: scale(0.5); + } +} + +.vertical-reveal { + animation: verticalReveal 0.3s ease-in-out; +} + +@keyframes verticalReveal { + 0% { + transform: scaleY(0); + } + + 100% { + transform: scaleY(1); + } +} + +.glow-effect { + animation: glowEffect 1s infinite; +} + +@keyframes glowEffect { + 0% { + -webkit-box-shadow: 0px 0px 66px 17px rgba(252, 60, 22, 0.59); + -moz-box-shadow: 0px 0px 66px 17px rgba(252, 60, 22, 0.59); + box-shadow: 0px 0px 66px 17px rgba(252, 60, 22, 0.59); + } + + 50% { + -webkit-box-shadow: 0px 0px 66px 44px rgba(252, 60, 22, 0.9); + -moz-box-shadow: 0px 0px 66px 44px rgba(252, 60, 22, 0.9); + box-shadow: 0px 0px 66px 44px rgba(252, 60, 22, 0.9); + } + + 100% { + -webkit-box-shadow: 0px 0px 66px 17px rgba(252, 60, 22, 0.59); + -moz-box-shadow: 0px 0px 66px 17px rgba(252, 60, 22, 0.59); + box-shadow: 0px 0px 66px 17px rgba(252, 60, 22, 0.59); + } +} + +/* +.card { + background-color: black; + border: 3px var(--orange) solid; + transition: 0.3s; + + color: white; +} + +.card-header { + padding: 10px; + border-bottom: 3px var(--orange) solid; + color: var(--orange); +} + +.card-content { + padding: 20px; +} */ + +.marker-daerah { + width: auto; + height: 25px; + + cursor: pointer; + display: flex; + flex-direction: column; + justify-content: center; + align-items: center; +} + +.marker-daerah p { + border: 1px black solid; + color: black; + background-color: red; + padding: 2px; + font-size: 8px; + text-transform: uppercase; + max-width: 75px; + line-height: 1; + text-align: center; + font-weight: bold; +} + +.marker-gempa { + /* border: 3px red solid; */ + /* width: 25px; + height: 25px; */ + font-size: 20px; + color: red; + cursor: pointer; +} + +.marker-gempa-wave { + border: 3px red solid; + border-radius: 50%; + width: 50px; + height: 50px; + font-size: 20px; + color: red; + cursor: pointer; +} + +.mapboxgl-popup { + width: auto; +} + +.mapboxgl-popup-anchor-bottom .mapboxgl-popup-tip { + border-top-color: unset; + height: 70px; + width: 3px; + background-color: red; + border: unset; +} + +.mapboxgl-popup-anchor-top .mapboxgl-popup-tip { + border-top-color: unset; + height: 70px; + width: 3px; + background-color: red; + border: unset; +} + +.mapboxgl-popup-content { + background-color: unset; + border: unset; + border-radius: 0; + padding: unset; + max-width: 256px; +} + +.blink { + animation: blink 1s infinite; +} + +@keyframes blink { + 0% { + opacity: 0; + } + + 50% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +.warning-wrapper { + display: flex; + justify-content: center; + position: absolute; + height: 200px; + max-width: 50%; + margin: auto; + top: 0; + bottom: 0; + left: 0; + right: 0; + animation: showWarningAlert 0.3s ease-in-out forwards; + flex-direction: column; + align-items: center; +} + +.long-shape { + position: relative; + width: 500px; + display: flex; + justify-content: center; +} + +.long-shape .shape { + height: 150px; + width: 300px; + display: flex; + justify-content: space-between; +} + +.shape { + position: absolute; + margin: auto; +} + +.long-shape .bg { + background-color: #e60003; +} + +.long-shape .fg { + background-color: #e60003; + scale: 0.98 0.92; +} + +.long-shape .br { + background-color: black; + scale: 0.99 0.96; +} + +.long-shape .hex { + margin-top: 30px; + transform: scale(1.5); +} + +.basic-shape { + height: 100px; + width: 115px; + transform: scale(1.5); + z-index: 99; +} + +.basic-shape .hex { + position: absolute; + margin: auto; +} + +.basic-shape .hex:nth-child(1) { + scale: 0.95; +} + +.basic-shape .hex:nth-child(2) { + scale: 0.9; +} + +.basic-shape .hex:nth-child(3) { + scale: 0.85; +} + +.basic-shape .hex:nth-child(4) { + scale: 0.8; +} + +.shape .hex:nth-child(1) { + margin-left: -20%; +} + +.shape .hex:nth-child(2) { + margin-right: -20%; +} + +.warning { + height: 500px; + width: 450px; +} + +.long-hex { + position: relative; + height: 150px; + width: 275px; + background-image: url('/images/long_shape.svg'); + background-size: contain; + background-position: center; + background-repeat: no-repeat; +} + +.warning-black-hex { + position: relative; + height: 100px; + width: 100px; + background-image: url('/images/warning_shape_black.svg'); + background-size: contain; + background-position: center; + background-repeat: no-repeat; +} + +.warning-black { + position: relative; + height: 40px; + width: 40px; + background-image: url('/images/warning_gempa_black.png'); + background-size: contain; + background-position: center; + background-repeat: no-repeat; +} + +.warning-yellow { + position: relative; + height: 80px; + width: 50px; + background-image: url('/images/warning_gempa_red_yellow.svg'); + background-size: contain; + background-position: center; + background-repeat: no-repeat; +} + +.warning-tsunami-yellow { + position: relative; + height: 80px; + width: 50px; + background-image: url('/images/warning_tsunami_yellow.png'); + background-size: contain; + background-position: center; + background-repeat: no-repeat; +} + +.basic-hex { + position: relative; + height: 100px; + width: 100px; + background-image: url('/images/hex_shape.svg'); + background-size: contain; + background-position: center; + background-repeat: no-repeat; +} + +.animation-delay-1 { + animation-delay: 1s; +} + +.animation-delay-2 { + animation-delay: 2s; +} + +.animation-delay-3 { + animation-delay: 3s; +} + +.animation-delay-4 { + animation-delay: 4s; +} + +.warning .info .basic-hex:nth-child(1) { + /* animation: showPopUp 0.3s ease-in-out forwards; */ + animation-delay: 2s; +} + +.warning .info .basic-hex:nth-child(2) { + /* animation: showPopUp 0.3s ease-in-out forwards; */ + animation-delay: 2.2s; +} + +.warning .info .basic-hex:nth-child(3) { + /* animation: showPopUp 0.3s ease-in-out forwards; */ + animation-delay: 2.4s; +} + +.animation-fast { + animation-duration: 0.5s; +} + +.blink-fast { + animation-duration: 0.1s; +} + +.overlay-bg { + background-color: rgba(0, 0, 0, 0.8); + /* background-image: url("/images/hexagons.png"); + transform: rotate(90deg); + width: 300%; + height: 300%; + opacity: 0.5; */ +} + +.list-event { + display: block; + font: 400 16px 'Roboto Condensed'; + letter-spacing: -1px; + line-height: 1; + padding: 1px calc(var(--gutter-size) - 3px); + text-transform: uppercase; + user-select: none; + white-space: nowrap; + --text-glow-color: rgba(var(--glow-rgb), 0.5); + color: var(--text-color); + /* text-shadow: -1px 1px 0 var(--text-glow-color), 1px -1px 0 var(--text-glow-color); */ +} + +.text-glow-red { + --text-glow-color: rgba(var(--danger-glow-rgb), 0.5); + color: var(--danger-text-color); + /* text-shadow: -1px 1px 0 var(--text-glow-color), 1px -1px 0 var(--text-glow-color); */ +} + +.text-glow { + --text-glow-color: rgba(var(--glow-rgb), 0.5); + color: var(--text-color) !important; + /* text-shadow: -1px 1px 0 var(--text-glow-color), 1px -1px 0 var(--text-glow-color); */ +} + +.bordered { + color: var(--text-color); + --border-glow-color: rgba(var(--glow-rgb), 0.7); + border-radius: var(--gutter-size); + border-style: solid; + border-width: 1px; + border-color: unset; + box-shadow: + inset 0 0 0 1px var(--border-glow-color), + 0 0 0 1px var(--border-glow-color); +} + +.red-bordered { + color: var(--danger-text-color); + --border-glow-color: rgba(var(--danger-glow-rgb), 0.7); + border-radius: var(--gutter-size); + border-style: solid; + border-width: 1px; + border-color: unset; + box-shadow: + inset 0 0 0 1px var(--border-glow-color), + 0 0 0 1px var(--border-glow-color); +} + +.red-bordered-bottom { + color: var(--danger-text-color); + --border-glow-color: rgba(var(--danger-glow-rgb), 0.7); + border-color: unset; + border-bottom: 1px solid red; + box-shadow: + inset 0 0 0 1px var(--border-glow-color), + 0 0 0 1px var(--border-glow-color); +} + +.red-bordered-top { + color: var(--danger-text-color); + --border-glow-color: rgba(var(--danger-glow-rgb), 0.7); + border-color: unset; + border-top: 1px solid var(--danger-glow-rgb); + box-shadow: + inset 0 0 0 1px var(--border-glow-color), + 0 0 0 1px var(--border-glow-color); +} + +.card { + background-color: black; + /* border: 1px var(--red) solid; */ + transition: 0.3s; + /* color: var(--text-color); */ + /* color: white; */ +} + +.card-header { + padding: 6px; + /* border-bottom: 1px var(--red) solid; */ + color: var(--orange); + position: relative; + border-radius: 10px 10px 0px 0px; +} + +.card-footer { + padding: 6px; + border-top: 3px var(--red) solid; + color: var(--orange); + position: relative; + border-radius: 0px 0px 10px 10px; +} + +.card-content { + padding: 12px; +} + +.card-float { + /* width: 30%; */ + transition: all 0.3s ease-in-out; +} + +.card-float .card-content { + display: block; + max-height: 45vh; + overflow-y: auto; + overflow-x: hidden; +} + +.jajar-genjang { + height: 30px; + width: 100%; + transform: skew(15deg); + -webkit-transform: skew(15deg); + -moz-transform: skew(15deg); + -o-transform: skew(15deg); + background-color: var(--orange); + -webkit-box-shadow: 0px 0px 5px 0px rgba(252, 114, 22, 1); + -moz-box-shadow: 0px 0px 5px 0px rgba(252, 114, 22, 1); + box-shadow: 0px 0px 5px 0px rgba(252, 114, 22, 1); + display: flex; + align-items: center; + padding: 6px; + overflow: hidden; +} + +.jajar-genjang .time-countdown { +} + +.jajar-genjang.danger { + background-color: var(--red); + -webkit-box-shadow: 0px 0px 5px 0px rgba(250, 23, 23, 1); + -moz-box-shadow: 0px 0px 5px 0px rgba(250, 23, 23, 1); + box-shadow: 0px 0px 5px 0px rgba(250, 23, 23, 1); +} + +.jajar-genjang p { + transform: skew(-15deg); + -webkit-transform: skew(-15deg); + -moz-transform: skew(-15deg); + -o-transform: skew(-15deg); + color: black; + font-weight: bold; + font-size: 14px; +} + +.pinggir-jajar-genjang { + height: 30px; + width: 30px; + transform: skew(15deg); + -webkit-transform: skew(15deg); + -moz-transform: skew(15deg); + -o-transform: skew(15deg); +} + +.item-daerah { + width: 100%; + position: relative; +} + +.list-daerah .card-content { + max-height: 50vh; + overflow-y: auto; +} + +.item-daerah.danger { +} + +.item-daerah .content { + position: absolute; + font-size: 12px; + color: black; + font-weight: bold; +} + +.item-daerah .pinggir-jajar-genjang { + background-color: var(--orange); +} + +.item-daerah.danger .pinggir-jajar-genjang { + background-color: var(--red); +} + +.time-countdown { + font-family: 'DS-Digital'; +} + +.text-time { + font-family: 'DS-Digital'; +} + +.custom-scrollbar::-webkit-scrollbar-track { + -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); + border-radius: 10px; + background-color: rgb(61, 61, 61); +} + +.custom-scrollbar::-webkit-scrollbar { + width: 12px; + background-color: rgb(61, 61, 61); +} + +.custom-scrollbar::-webkit-scrollbar-thumb { + border-radius: 10px; + -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3); + background-color: var(--red); +} + +/* slide animation from left to right */ +.slide-in-left { + animation: slideInLeft 0.5s forwards; +} + +@keyframes slideInLeft { + 0% { + transform: translateX(-100%); + } + + 100% { + transform: translateX(0); + } +} + +label#internal { + --decal-width: 50px; + --label-corner-size: 3px; + --label-gutter-size: 5px; +} + +.label { + overflow: hidden; + /* padding: 1px calc(var(--gutter-size) - 3px); */ + /* width: 8rem; */ + /* display: inline-block; */ + font: 400 2rem 'Roboto Condensed'; + letter-spacing: -1px; + line-height: 1; + padding-right: 0px; + text-transform: uppercase; + user-select: none; + white-space: nowrap; + --text-glow-color: rgba(var(--glow-rgb), 0.5); + color: var(--text-color); + text-shadow: + -1px 1px 0 var(--text-glow-color), + 1px -1px 0 var(--text-glow-color), + -1px -1px 0 var(--text-glow-color), + 1px 1px 0 var(--text-glow-color); +} + +.label#internal .decal { + border-radius: calc(var(--label-corner-size) - 1px); + display: block; + height: 100px; + width: 100%; +} + +.-striped { + --stripe-color: var(--danger-fill-color); + --stripe-size: 15px; + --glow-color: rgba(var(--danger-glow-rgb), 0.8); + --glow-size: 3px; + background-image: repeating-linear-gradient( + -45deg, + /* glow boundary */ var(--glow-color) calc(-1 * var(--glow-size)), + /* fade into foreground */ var(--stripe-color) 0, + /* fade from foreground */ var(--stripe-color) + calc(var(--stripe-size) - var(--glow-size) / 2), + /* glow boundary */ var(--glow-color) + calc(var(--stripe-size) + var(--glow-size) / 2), + /* fade to background */ transparent + calc(var(--stripe-size) + var(--glow-size) / 2), + /* fade from background */ transparent calc(2 * var(--stripe-size)), + /* glow boundary */ var(--glow-color) + calc(2 * var(--stripe-size) - var(--glow-size)) + ); + box-shadow: inset 0 0 1px calc(var(--glow-size) / 2) var(--shade-3); +} + +.-blink { + animation-name: blink; + animation-duration: var(--blink-duration); + animation-iteration-count: infinite; + animation-timing-function: steps(1); +} + +/* @keyframes blink { + 50% { + opacity: 0; + } +} */ + +.label#internal .text.-characters { + font-size: 3.5rem; + padding-top: var(--label-gutter-size); +} + +/* responsive query for mobile */ +@media (max-width: 768px) { + .card-float .card-content { + height: 0px; + padding: 0px; + } + + .card-float.open .card-content { + height: unset; + padding: 6px; + } + + .card-float { + margin: auto; + right: 0.25rem; + left: 0.25rem; + } + + .label#internal .decal { + width: 40px; + } + + .card-header { + cursor: pointer; + } +} + +/* responsive query for tablet */ +@media (min-width: 768px) and (max-width: 1024px) { + .label#internal .text.-characters { + font-size: 3.5rem; + } + + .label#internal .text { + font-size: 2.5rem; + } + + .label#internal .decal { + width: 40px; + } +} + +.github-icon { + width: 20px; + height: 20px; + border-radius: 50%; + background-image: url('https://cdn.jsdelivr.net/gh/devicons/devicon/icons/github/github-original.svg'); + background-color: white; + background-repeat: no-repeat; + background-position: center; +} + +.bmkg-icon { + width: 25px; + height: 25px; + border-radius: 50%; + background-image: url('/images/logo-bmkg.webp'); + background-size: contain; + background-repeat: no-repeat; + background-position: center; +} + +.loader { + width: 48px; + height: 48px; + display: inline-block; + position: relative; +} + +.loader::after, +.loader::before { + content: ''; + box-sizing: border-box; + width: 48px; + height: 48px; + border: 2px solid var(--orange); + position: absolute; + left: 0; + top: 0; + animation: scaleOut 2s ease-in-out infinite; +} + +.loader::after { + border-color: var(--red); + animation-delay: 1s; +} + +#loading-screen { + background-color: black; +} + +@keyframes scaleOut { + 0% { + transform: scale(0); + } + + 100% { + transform: scale(1); + } +} + +.circles .circle1 { + animation-delay: 1s; +} + +.circles .circle2 { + animation-delay: 2s; +} + +.circles .circle3 { + animation-delay: 3s; +} + +.circles { + height: 200px; + width: 200px; + + margin: auto; +} + +.circles div { + animation: growAndFade 3s infinite ease-out; + background-color: rgb(156, 94, 0); + border-radius: 50%; + height: 200px; + width: 200px; + opacity: 0; + position: absolute; + box-shadow: 0 0 10px 5px rgba(156, 75, 0, 0.5); +} + +@keyframes growAndFade { + 0% { + opacity: 0.25; + transform: scale(0); + } + + 100% { + opacity: 0; + transform: scale(1); + } +} + +.main { + width: calc(max(120vh, 120vw) + 100px); + margin-left: -35vh; + transform: translateY(min(-29vw, -40vw)); + display: grid; + grid-template-columns: repeat(auto-fit, calc(var(--s) + 2 * var(--mh))); + justify-content: center; + --s: 80px; /* size */ + --r: 1.15; /* ratio */ + /* clip-path */ + --h: 0.5; + --v: 0.25; + --hc: calc(clamp(0, var(--h), 0.5) * var(--s)); + --vc: calc(clamp(0, var(--v), 0.5) * var(--s) * var(--r)); + + /*margin */ + --mv: 1px; /* vertical */ + --mh: calc(var(--mv) + (var(--s) - 2 * var(--hc)) / 2); /* horizontal */ + /* for the float*/ + --f: calc(2 * var(--s) * var(--r) + 4 * var(--mv) - 2 * var(--vc) - 2px); +} + +.hex-bg { + grid-column: 1/-1; + /* width: 110vh; + height: 100vw; */ + margin: 0 auto; + font-size: 0; /*disable white space between inline block element */ + position: relative; + /* padding-bottom:50px; */ + /* filter:drop-shadow(2px 2px 1px #333) */ +} + +.hex-bg div { + width: var(--s); + margin: var(--mv) var(--mh); + height: calc(var(--s) * var(--r)); + display: inline-block; + font-size: initial; + /* clip-path: polygon(var(--hc) 0, calc(100% - var(--hc)) 0,100% var(--vc),100% calc(100% - var(--vc)), calc(100% - var(--hc)) 100%,var(--hc) 100%,0 calc(100% - var(--vc)),0 var(--vc)); */ + margin-bottom: calc(var(--mv) - var(--vc)); +} + +.hex-bg::before { + content: ''; + width: calc(var(--s) / 2 + var(--mh)); + float: left; + height: 100%; + shape-outside: repeating-linear-gradient( + transparent 0 calc(var(--f) - 2px), + #fff 0 var(--f) + ); +} + +.hex-bg div { + /* background-color: var(--red); */ + justify-content: center; + align-items: center; + font-weight: bold; + text-align: center; +} + +.hex-bg div p { + text-align: center; + margin-top: 20px; + color: black; + font-size: 10px; + transform: rotate(90deg); +} + +.hex-bg img { + display: block; + position: relative; + transform: rotate(90deg) scale(1.2); +} + +.hex-bg div::before { + /* padding-top:80px; */ + /* content:"DANGER"; */ + /* font-size:75px; */ + /* font-family:sans-serif; */ + position: absolute; + display: flex; + /* background-color: var(--red); */ + /* background-image: url("/images/warning_hex_red.png"); + background-position: center 5px; + background-repeat: no-repeat; + background-size: 50px; */ + /* inset:0; */ +} + +.hex-bg div { + /* animation:show 5s ease-in-out; */ + animation: showPopUp 0.3s ease-in-out forwards; + opacity: 0; + transform: scale(0.5); +} + +@keyframes show { + 10% { + opacity: 1; + transform: scale(1); + } + 90% { + opacity: 1; + transform: scale(1); + } +} + +/* Mapbox Popup Styles */ +.mapboxgl-popup { + z-index: 10; +} + +.mapboxgl-popup-content { + padding: 0 !important; + border-radius: 0.5rem !important; + box-shadow: + 0 10px 15px -3px rgba(0, 0, 0, 0.1), + 0 4px 6px -2px rgba(0, 0, 0, 0.05) !important; + overflow: hidden; +} + +.mapboxgl-popup-close-button { + display: none !important; +} + +.map-popup .mapboxgl-popup-content { + max-width: 300px; +} + +/* Mapbox copyright */ +.mapbox-logo { + display: none !important; +} +.mapboxgl-ctrl-logo { + display: none !important; +} + +/* .mapbox-improve-map { + display: none; + } + .mapboxgl-ctrl-compass { + display: none; + } */ + +.mapbox-gl-draw_point { + background-repeat: no-repeat; + background-position: center; + pointer-events: auto; + background-image: url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iVVRGLTgiIHN0YW5kYWxvbmU9Im5vIj8+PHN2ZyAgIHhtbG5zOmRjPSJodHRwOi8vcHVybC5vcmcvZGMvZWxlbWVudHMvMS4xLyIgICB4bWxuczpjYz0iaHR0cDovL2NyZWF0aXZlY29tbW9ucy5vcmcvbnMjIiAgIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyIgICB4bWxuczpzdmc9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiAgIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgICB4bWxuczpzb2RpcG9kaT0iaHR0cDovL3NvZGlwb2RpLnNvdXJjZWZvcmdlLm5ldC9EVEQvc29kaXBvZGktMC5kdGQiICAgeG1sbnM6aW5rc2NhcGU9Imh0dHA6Ly93d3cuaW5rc2NhcGUub3JnL25hbWVzcGFjZXMvaW5rc2NhcGUiICAgd2lkdGg9IjIwIiAgIGhlaWdodD0iMjAiICAgdmlld0JveD0iMCAwIDIwIDIwIiAgIGlkPSJzdmcxOTE2NyIgICB2ZXJzaW9uPSIxLjEiICAgaW5rc2NhcGU6dmVyc2lvbj0iMC45MStkZXZlbCtvc3htZW51IHIxMjkxMSIgICBzb2RpcG9kaTpkb2NuYW1lPSJtYXJrZXIuc3ZnIj4gIDxkZWZzICAgICBpZD0iZGVmczE5MTY5IiAvPiAgPHNvZGlwb2RpOm5hbWVkdmlldyAgICAgaWQ9ImJhc2UiICAgICBwYWdlY29sb3I9IiNmZmZmZmYiICAgICBib3JkZXJjb2xvcj0iIzY2NjY2NiIgICAgIGJvcmRlcm9wYWNpdHk9IjEuMCIgICAgIGlua3NjYXBlOnBhZ2VvcGFjaXR5PSIwLjAiICAgICBpbmtzY2FwZTpwYWdlc2hhZG93PSIyIiAgICAgaW5rc2NhcGU6em9vbT0iMTYiICAgICBpbmtzY2FwZTpjeD0iMTQuMTY0MjUzIiAgICAgaW5rc2NhcGU6Y3k9IjguODg1NzIiICAgICBpbmtzY2FwZTpkb2N1bWVudC11bml0cz0icHgiICAgICBpbmtzY2FwZTpjdXJyZW50LWxheWVyPSJsYXllcjEiICAgICBzaG93Z3JpZD0iZmFsc2UiICAgICB1bml0cz0icHgiICAgICBpbmtzY2FwZTp3aW5kb3ctd2lkdGg9IjEyODAiICAgICBpbmtzY2FwZTp3aW5kb3ctaGVpZ2h0PSI3NTEiICAgICBpbmtzY2FwZTp3aW5kb3cteD0iMjA4IiAgICAgaW5rc2NhcGU6d2luZG93LXk9IjE5MCIgICAgIGlua3NjYXBlOndpbmRvdy1tYXhpbWl6ZWQ9IjAiICAgICBpbmtzY2FwZTpvYmplY3Qtbm9kZXM9InRydWUiPiAgICA8aW5rc2NhcGU6Z3JpZCAgICAgICB0eXBlPSJ4eWdyaWQiICAgICAgIGlkPSJncmlkMTk3MTUiIC8+ICA8L3NvZGlwb2RpOm5hbWVkdmlldz4gIDxtZXRhZGF0YSAgICAgaWQ9Im1ldGFkYXRhMTkxNzIiPiAgICA8cmRmOlJERj4gICAgICA8Y2M6V29yayAgICAgICAgIHJkZjphYm91dD0iIj4gICAgICAgIDxkYzpmb3JtYXQ+aW1hZ2Uvc3ZnK3htbDwvZGM6Zm9ybWF0PiAgICAgICAgPGRjOnR5cGUgICAgICAgICAgIHJkZjpyZXNvdXJjZT0iaHR0cDovL3B1cmwub3JnL2RjL2RjbWl0eXBlL1N0aWxsSW1hZ2UiIC8+ICAgICAgICA8ZGM6dGl0bGUgLz4gICAgICA8L2NjOldvcms+ICAgIDwvcmRmOlJERj4gIDwvbWV0YWRhdGE+ICA8ZyAgICAgaW5rc2NhcGU6bGFiZWw9IkxheWVyIDEiICAgICBpbmtzY2FwZTpncm91cG1vZGU9ImxheWVyIiAgICAgaWQ9ImxheWVyMSIgICAgIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAsLTEwMzIuMzYyMikiPiAgICA8cGF0aCAgICAgICBzdHlsZT0iY29sb3I6IzAwMDAwMDtjbGlwLXJ1bGU6bm9uemVybztkaXNwbGF5OmlubGluZTtvdmVyZmxvdzp2aXNpYmxlO3Zpc2liaWxpdHk6dmlzaWJsZTtvcGFjaXR5OjE7aXNvbGF0aW9uOmF1dG87bWl4LWJsZW5kLW1vZGU6bm9ybWFsO2NvbG9yLWludGVycG9sYXRpb246c1JHQjtjb2xvci1pbnRlcnBvbGF0aW9uLWZpbHRlcnM6bGluZWFyUkdCO3NvbGlkLWNvbG9yOiMwMDAwMDA7c29saWQtb3BhY2l0eToxO2ZpbGw6IzAwMDAwMDtmaWxsLW9wYWNpdHk6MTtmaWxsLXJ1bGU6ZXZlbm9kZDtzdHJva2U6bm9uZTtzdHJva2Utd2lkdGg6MjtzdHJva2UtbGluZWNhcDpyb3VuZDtzdHJva2UtbGluZWpvaW46cm91bmQ7c3Ryb2tlLW1pdGVybGltaXQ6NDtzdHJva2UtZGFzaGFycmF5Om5vbmU7c3Ryb2tlLWRhc2hvZmZzZXQ6MDtzdHJva2Utb3BhY2l0eToxO21hcmtlcjpub25lO2NvbG9yLXJlbmRlcmluZzphdXRvO2ltYWdlLXJlbmRlcmluZzphdXRvO3NoYXBlLXJlbmRlcmluZzphdXRvO3RleHQtcmVuZGVyaW5nOmF1dG87ZW5hYmxlLWJhY2tncm91bmQ6YWNjdW11bGF0ZSIgICAgICAgZD0ibSAzNiwxMDQwLjM2MjIgYyA2ZS02LDMuMzA5MyAtNS45ODg2MTIsMTAgLTUuOTg4NjEyLDEwIDAsMCAtNS45OTg3NzYsLTYuNjY4IC02LjAxMTM0NSwtOS45NzcyIC0wLjAxMjU3LC0zLjMwOTIgMi42NTY1NzYsLTYuMDAzOSA1Ljk2NTc5MiwtNi4wMjI3IDMuMzA5MTg5LC0wLjAxOSA2LjAwODg0LDIuNjQ1MiA2LjAzMzk5Miw1Ljk1NDMiICAgICAgIGlkPSJwYXRoMTI1NjEiICAgICAgIGlua3NjYXBlOmNvbm5lY3Rvci1jdXJ2YXR1cmU9IjAiICAgICAgIHNvZGlwb2RpOm5vZGV0eXBlcz0iY2Nzc2MiIC8+ICAgIDxwYXRoICAgICAgIHN0eWxlPSJjb2xvcjojMDAwMDAwO2NsaXAtcnVsZTpub256ZXJvO2Rpc3BsYXk6aW5saW5lO292ZXJmbG93OnZpc2libGU7dmlzaWJpbGl0eTp2aXNpYmxlO29wYWNpdHk6MTtpc29sYXRpb246YXV0bzttaXgtYmxlbmQtbW9kZTpub3JtYWw7Y29sb3ItaW50ZXJwb2xhdGlvbjpzUkdCO2NvbG9yLWludGVycG9sYXRpb24tZmlsdGVyczpsaW5lYXJSR0I7c29saWQtY29sb3I6IzAwMDAwMDtzb2xpZC1vcGFjaXR5OjE7ZmlsbDojZmZmZmZmO2ZpbGwtb3BhY2l0eToxO2ZpbGwtcnVsZTpldmVub2RkO3N0cm9rZTpub25lO3N0cm9rZS13aWR0aDoyO3N0cm9rZS1saW5lY2FwOnJvdW5kO3N0cm9rZS1saW5lam9pbjpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDo0O3N0cm9rZS1kYXNoYXJyYXk6bm9uZTtzdHJva2UtZGFzaG9mZnNldDowO3N0cm9rZS1vcGFjaXR5OjE7bWFya2VyOm5vbmU7Y29sb3ItcmVuZGVyaW5nOmF1dG87aW1hZ2UtcmVuZGVyaW5nOmF1dG87c2hhcGUtcmVuZGVyaW5nOmF1dG87dGV4dC1yZW5kZXJpbmc6YXV0bztlbmFibGUtYmFja2dyb3VuZDphY2N1bXVsYXRlIiAgICAgICBkPSJtIDM0LjAwMDExNSwxMDQwLjM2MjIgYyAtNWUtNiwyLjIwNjIgLTMuOTkyNTIzLDcuMDAwMSAtMy45OTI1MjMsNy4wMDAxIDAsMCAtMy45OTkyOTEsLTQuNzc4NyAtNC4wMDc2NzksLTYuOTg0OSAtMC4wMDg0LC0yLjIwNjIgMS43NzEwODIsLTQuMDAyNyAzLjk3NzMxLC00LjAxNTMgMi4yMDYyMSwtMC4wMTMgNC4wMDYwMzcsMS43NjM1IDQuMDIyNzc3LDMuOTY5NyIgICAgICAgaWQ9InBhdGgxMjU2MyIgICAgICAgaW5rc2NhcGU6Y29ubmVjdG9yLWN1cnZhdHVyZT0iMCIgICAgICAgc29kaXBvZGk6bm9kZXR5cGVzPSJjY2NzYyIgLz4gICAgPHBhdGggICAgICAgc3R5bGU9ImNvbG9yOiMwMDAwMDA7Y2xpcC1ydWxlOm5vbnplcm87ZGlzcGxheTppbmxpbmU7b3ZlcmZsb3c6dmlzaWJsZTt2aXNpYmlsaXR5OnZpc2libGU7b3BhY2l0eToxO2lzb2xhdGlvbjphdXRvO21peC1ibGVuZC1tb2RlOm5vcm1hbDtjb2xvci1pbnRlcnBvbGF0aW9uOnNSR0I7Y29sb3ItaW50ZXJwb2xhdGlvbi1maWx0ZXJzOmxpbmVhclJHQjtzb2xpZC1jb2xvcjojMDAwMDAwO3NvbGlkLW9wYWNpdHk6MTtmaWxsOiMwMDAwMDA7ZmlsbC1vcGFjaXR5OjE7ZmlsbC1ydWxlOmV2ZW5vZGQ7c3Ryb2tlOm5vbmU7c3Ryb2tlLXdpZHRoOjI7c3Ryb2tlLWxpbmVjYXA6cm91bmQ7c3Ryb2tlLWxpbmVqb2luOnJvdW5kO3N0cm9rZS1taXRlcmxpbWl0OjQ7c3Ryb2tlLWRhc2hhcnJheTpub25lO3N0cm9rZS1kYXNob2Zmc2V0OjA7c3Ryb2tlLW9wYWNpdHk6MTttYXJrZXI6bm9uZTtjb2xvci1yZW5kZXJpbmc6YXV0bztpbWFnZS1yZW5kZXJpbmc6YXV0bztzaGFwZS1yZW5kZXJpbmc6YXV0bzt0ZXh0LXJlbmRlcmluZzphdXRvO2VuYWJsZS1iYWNrZ3JvdW5kOmFjY3VtdWxhdGUiICAgICAgIGQ9Ik0gOS45NjY3OTY5LDEwMTQuMzYyMiBDIDYuNjU3NTgwOSwxMDE0LjM4MSAzLjk4NzQzLDEwMTcuMDc2NCA0LDEwMjAuMzg1NiBjIDAuMDEyNTY5LDMuMzA5MiA2LjAxMTcxOSw4Ljk3NjYgNi4wMTE3MTksOC45NzY2IDAsMCA1Ljk4ODI4NywtNS42OTA3IDUuOTg4MjgxLC05IGwgMCwtMC4wNDUgYyAtMC4wMjUxNSwtMy4zMDkxIC0yLjcyNDAxNCwtNS45NzQxIC02LjAzMzIwMzEsLTUuOTU1MSB6IG0gMC4wMDk3NywyIGMgMi4yMDYyMDYxLC0wLjAxMyA0LjAwNjY5MzEsMS43NjI2IDQuMDIzNDMzMSwzLjk2ODggbCAwLDAuMDMxIGMgLTVlLTYsMi4yMDYyIC0zLjk5MjE4OCw2IC0zLjk5MjE4OCw2IDAsMCAtMy45OTk0MjQsLTMuNzc4MiAtNC4wMDc4MTIsLTUuOTg0NCAtMC4wMDg0LC0yLjIwNjIgMS43NzAzMzQ1LC00LjAwMyAzLjk3NjU2MjUsLTQuMDE1NiB6IiAgICAgICBpZD0icGF0aDEyNTY4IiAgICAgICBpbmtzY2FwZTpjb25uZWN0b3ItY3VydmF0dXJlPSIwIiAgICAgICBzb2RpcG9kaTpub2RldHlwZXM9ImNzY3NjY2Njc2NzYyIgLz4gICAgPHBhdGggICAgICAgc3R5bGU9Im9wYWNpdHk6MTtmaWxsOiMwMDAwMDA7ZmlsbC1vcGFjaXR5OjE7c3Ryb2tlOm5vbmU7c3Ryb2tlLXdpZHRoOjI7c3Ryb2tlLWxpbmVjYXA6YnV0dDtzdHJva2UtbGluZWpvaW46YmV2ZWw7c3Ryb2tlLW1pdGVybGltaXQ6NDtzdHJva2UtZGFzaGFycmF5Om5vbmU7c3Ryb2tlLWRhc2hvZmZzZXQ6MDtzdHJva2Utb3BhY2l0eToxO21hcmtlcjpub25lIiAgICAgICBkPSJNIDEwIDIgQyA2LjY4NjI5MiAyIDQgNC42ODYzIDQgOCBDIDQgMTEuMzEzNyAxMCAxNyAxMCAxNyBDIDEwIDE3IDE2IDExLjMxMzcgMTYgOCBDIDE2IDQuNjg2MyAxMy4zMTM3MDggMiAxMCAyIHogTSAxMCA0IEMgMTIuMDcxMDY4IDQgMTMuNzUgNS42Nzg5IDEzLjc1IDcuNzUgQyAxMy43NSA5LjIwNTMyNzggMTEuOTMxMTEgMTEuNjQ0MzkzIDEwLjgzMDA3OCAxMyBMIDkuMTY5OTIxOSAxMyBDIDguMDY4ODkwMyAxMS42NDQzOTMgNi4yNSA5LjIwNTMyNzggNi4yNSA3Ljc1IEMgNi4yNSA1LjY3ODkgNy45Mjg5MzIgNCAxMCA0IHogIiAgICAgICB0cmFuc2Zvcm09InRyYW5zbGF0ZSgwLDEwMzIuMzYyMikiICAgICAgIGlkPSJwYXRoMTczMDUiIC8+ICA8L2c+PC9zdmc+); +} + +/* Digital clock styling */ +.digital-clock { + font-family: monospace; + font-size: 1rem; + font-weight: bold; + color: #ffb700; + background-color: #000; + padding: 0.25rem 0.5rem; + border-radius: 0.25rem; + border: 1px solid #333; + text-align: center; + letter-spacing: 0.05rem; + box-shadow: 0 0 5px rgba(255, 183, 0, 0.5); +} + +/* Time zone markers */ +/* .time-zone-marker { + background-color: rgba(0, 0, 0, 0.7); + color: white; + padding: 0.5rem; + border-radius: 0.25rem; + border: 1px solid #333; + font-family: monospace; +} + +.time-zone-marker .zone-name { + font-weight: bold; + text-align: center; + margin-bottom: 0.25rem; +} + +.time-zone-marker .zone-offset { + font-size: 0.75rem; + text-align: center; + color: #ccc; +} + +/* Digital Clock Styling */ +.digital-clock { + font-variant-numeric: tabular-nums; + letter-spacing: 0.05em; + background-color: rgba(0, 0, 0, 0.7); + padding: 0.25rem 0.5rem; + border-radius: 0.25rem; + box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.5); + display: inline-block; + margin: 0.25rem 0; +} +*/ + +/* Mapbox Container Styling */ +.mapbox-container { + /* color: rgb(var(--foreground-rgb)); */ + /* background: linear-gradient( + to bottom, + transparent, + rgb(var(--background-end-rgb)) + ) + rgb(var(--background-start-rgb)); */ + margin: 0; + padding: 0; + font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif; +} + +/* Override Mapbox Default Body styles */ +.mapboxgl-map { + font-family: 'Roboto Condensed', Arial, Helvetica, sans-serif; +} diff --git a/sigap-website/public/ds_digital/DIGITAL.TXT b/sigap-website/public/ds_digital/DIGITAL.TXT new file mode 100644 index 0000000..7189da5 --- /dev/null +++ b/sigap-website/public/ds_digital/DIGITAL.TXT @@ -0,0 +1,40 @@ +DS-Font's TrueType Fonts +Font name: DS-Digital (Normal, Bold, Italic, Bold Italic), Version 1.0 +Author: Dusit Supasawat +Web Site: http://ds-font.hypermart.net +Contact me: Dusit Supasawat, 325/38 Suksawat32 Ratburana Bangkok Thailand 10140 +Email address: dusit@mailcity.com + +Thanks for trying! We hope you really enjoy this my typeface. This font is +distributed as shareware. You can use this font for a long time as you want. +After all, when you think this font can be usefulness for you. You can send +me some money, that would be way cool. + +I'm only asking $20 US shareware fee per this typeface for personal use. +And $45 US is the usual amount per this typeface for commercial use. + +Distribution: You are free to distribute this archive so long as this text +file is distributed with the archive, the font file have not been modified, +and it is understood that the font's copyright remains with the original +author (Dusit Supasawat). + +To register send your payment to: + +Dusit Supasawat +325/38 Suksawat32 Ratburana +Bangkok Thailand 10140 + +And fill out something as this order form, and send it in with your payment. + +Font name:_________________________________________ +Your information +Name:______________________________________________ +Address:___________________________________________ +City, State : _____________________________________ +Zip Code:__________________________________________ +Country:___________________________________________ +E-MAIL address:____________________________________ + + +You will receive fonts which you order by Email after registration. These fonts +will be generated for you by specify your name in font information. \ No newline at end of file diff --git a/sigap-website/public/ds_digital/DS-DIGI.TTF b/sigap-website/public/ds_digital/DS-DIGI.TTF new file mode 100644 index 0000000..0925877 Binary files /dev/null and b/sigap-website/public/ds_digital/DS-DIGI.TTF differ diff --git a/sigap-website/public/ds_digital/DS-DIGIB.TTF b/sigap-website/public/ds_digital/DS-DIGIB.TTF new file mode 100644 index 0000000..064ad47 Binary files /dev/null and b/sigap-website/public/ds_digital/DS-DIGIB.TTF differ diff --git a/sigap-website/public/ds_digital/DS-DIGII.TTF b/sigap-website/public/ds_digital/DS-DIGII.TTF new file mode 100644 index 0000000..2aae3d8 Binary files /dev/null and b/sigap-website/public/ds_digital/DS-DIGII.TTF differ diff --git a/sigap-website/public/ds_digital/DS-DIGIT.TTF b/sigap-website/public/ds_digital/DS-DIGIT.TTF new file mode 100644 index 0000000..65642f9 Binary files /dev/null and b/sigap-website/public/ds_digital/DS-DIGIT.TTF differ diff --git a/sigap-website/public/geojson/batas_wilayah.geojson b/sigap-website/public/geojson/batas_wilayah.geojson new file mode 100644 index 0000000..48ba5c5 --- /dev/null +++ b/sigap-website/public/geojson/batas_wilayah.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"mhid":"1332:1","alt_name":"KABUPATEN SIMEULUE","latitude":2.61667,"longitude":96.08333,"sample_value":479},"geometry":{"type":"LineString","coordinates":[[96.6651,2.1202],[96.6484,2.123],[96.64,2.1189],[96.6278,2.121],[96.6219,2.1183],[96.6146,2.1128],[96.6105,2.1037],[96.6107,2.0955],[96.6158,2.0938],[96.6123,2.0885],[96.6119,2.0826],[96.6153,2.0746],[96.6228,2.0663],[96.6357,2.0583],[96.6398,2.0592],[96.6441,2.056],[96.6484,2.0563],[96.6597,2.067],[96.6631,2.0663],[96.6693,2.0721],[96.6756,2.0728],[96.6869,2.0857],[96.687,2.091],[96.6813,2.0974],[96.6808,2.1021],[96.6768,2.1117],[96.6651,2.1202]]}},{"type":"Feature","properties":{"mhid":"1332:1","alt_name":"KABUPATEN SIMEULUE","latitude":2.61667,"longitude":96.08333,"sample_value":479},"geometry":{"type":"LineString","coordinates":[[96.6482,2.1694],[96.6434,2.1732],[96.6424,2.1771],[96.6346,2.1864],[96.6251,2.1879],[96.6123,2.1847],[96.6083,2.182],[96.6096,2.1748],[96.6175,2.1683],[96.6246,2.1584],[96.6332,2.1509],[96.6433,2.1486],[96.6516,2.1493],[96.6579,2.1558],[96.662,2.1666],[96.6574,2.1691],[96.6482,2.1694]]}},{"type":"Feature","properties":{"mhid":"1332:1","alt_name":"KABUPATEN SIMEULUE","latitude":2.61667,"longitude":96.08333,"sample_value":479},"geometry":{"type":"LineString","coordinates":[[96.1991,2.3586],[96.1944,2.359],[96.1913,2.3514],[96.1971,2.3483],[96.2059,2.355],[96.205,2.3583],[96.1991,2.3586]]}},{"type":"Feature","properties":{"mhid":"1332:1","alt_name":"KABUPATEN SIMEULUE","latitude":2.61667,"longitude":96.08333,"sample_value":479},"geometry":{"type":"LineString","coordinates":[[96.259,2.3597],[96.2618,2.3623],[96.258,2.3663],[96.2555,2.3741],[96.2501,2.3665],[96.2386,2.3606],[96.2306,2.3595],[96.2256,2.3609],[96.2207,2.3566],[96.2254,2.3503],[96.2353,2.3445],[96.249,2.3455],[96.255,2.3493],[96.2571,2.3582],[96.259,2.3597]]}},{"type":"Feature","properties":{"mhid":"1332:1","alt_name":"KABUPATEN SIMEULUE","latitude":2.61667,"longitude":96.08333,"sample_value":479},"geometry":{"type":"LineString","coordinates":[[96.4939,2.4359],[96.4893,2.4377],[96.4868,2.428],[96.4819,2.4275],[96.4974,2.4164],[96.5049,2.4169],[96.5097,2.4151],[96.5154,2.4213],[96.517,2.4259],[96.507,2.4327],[96.4992,2.4335],[96.4939,2.4359]]}},{"type":"Feature","properties":{"mhid":"1332:1","alt_name":"KABUPATEN SIMEULUE","latitude":2.61667,"longitude":96.08333,"sample_value":479},"geometry":{"type":"LineString","coordinates":[[96.4823,2.4384],[96.4774,2.4402],[96.4757,2.4366],[96.4814,2.4331],[96.4823,2.4384]]}},{"type":"Feature","properties":{"mhid":"1332:1","alt_name":"KABUPATEN SIMEULUE","latitude":2.61667,"longitude":96.08333,"sample_value":479},"geometry":{"type":"LineString","coordinates":[[96.3817,2.5246],[96.378,2.5274],[96.3724,2.5221],[96.3669,2.5261],[96.363,2.5202],[96.3739,2.5136],[96.3773,2.5156],[96.382,2.5134],[96.3881,2.5145],[96.3874,2.5182],[96.3807,2.5146],[96.3773,2.5215],[96.3817,2.5246]]}},{"type":"Feature","properties":{"mhid":"1332:1","alt_name":"KABUPATEN SIMEULUE","latitude":2.61667,"longitude":96.08333,"sample_value":479},"geometry":{"type":"LineString","coordinates":[[95.9355,2.5424],[95.9322,2.5449],[95.9267,2.5418],[95.9262,2.5387],[95.9188,2.5361],[95.9166,2.5249],[95.9254,2.5235],[95.9358,2.5229],[95.9382,2.5242],[95.9505,2.523],[95.9576,2.5234],[95.9584,2.5307],[95.9496,2.534],[95.9437,2.5396],[95.9399,2.5388],[95.9355,2.5424]]}},{"type":"Feature","properties":{"mhid":"1332:1","alt_name":"KABUPATEN SIMEULUE","latitude":2.61667,"longitude":96.08333,"sample_value":479},"geometry":{"type":"LineString","coordinates":[[96.2159,2.6497],[96.2182,2.654],[96.2128,2.6556],[96.212,2.6511],[96.2159,2.6497]]}},{"type":"Feature","properties":{"mhid":"1332:1","alt_name":"KABUPATEN SIMEULUE","latitude":2.61667,"longitude":96.08333,"sample_value":479},"geometry":{"type":"LineString","coordinates":[[96.3772,2.6552],[96.3671,2.6585],[96.3654,2.6639],[96.3559,2.6604],[96.3525,2.6571],[96.354,2.6541],[96.3609,2.6538],[96.3698,2.6502],[96.3754,2.646],[96.3822,2.6438],[96.3876,2.646],[96.396,2.6446],[96.3956,2.6487],[96.387,2.6554],[96.3772,2.6552]]}},{"type":"Feature","properties":{"mhid":"1332:1","alt_name":"KABUPATEN SIMEULUE","latitude":2.61667,"longitude":96.08333,"sample_value":479},"geometry":{"type":"LineString","coordinates":[[96.162,2.6687],[96.152,2.6681],[96.157,2.6628],[96.162,2.6687]]}},{"type":"Feature","properties":{"mhid":"1332:1","alt_name":"KABUPATEN SIMEULUE","latitude":2.61667,"longitude":96.08333,"sample_value":479},"geometry":{"type":"LineString","coordinates":[[95.7452,2.7127],[95.7456,2.7181],[95.7405,2.7197],[95.7378,2.7139],[95.7328,2.7123],[95.7242,2.7127],[95.7218,2.715],[95.7146,2.7132],[95.7177,2.7075],[95.7221,2.7035],[95.7312,2.7018],[95.7399,2.7029],[95.7428,2.7052],[95.7452,2.7127]]}},{"type":"Feature","properties":{"mhid":"1332:1","alt_name":"KABUPATEN SIMEULUE","latitude":2.61667,"longitude":96.08333,"sample_value":479},"geometry":{"type":"LineString","coordinates":[[96.1158,2.7462],[96.1136,2.7508],[96.1087,2.7515],[96.1065,2.7473],[96.1158,2.7462]]}},{"type":"Feature","properties":{"mhid":"1332:1","alt_name":"KABUPATEN SIMEULUE","latitude":2.61667,"longitude":96.08333,"sample_value":479},"geometry":{"type":"LineString","coordinates":[[95.7699,2.8339],[95.763,2.8354],[95.7635,2.8289],[95.7677,2.828],[95.7699,2.8339]]}},{"type":"Feature","properties":{"mhid":"1332:1","alt_name":"KABUPATEN SIMEULUE","latitude":2.61667,"longitude":96.08333,"sample_value":479},"geometry":{"type":"LineString","coordinates":[[96.4281,2.4775],[96.4252,2.4774],[96.4209,2.484],[96.4175,2.4855],[96.4139,2.4905],[96.4115,2.4973],[96.4112,2.5047],[96.409,2.5112],[96.4021,2.5111],[96.4018,2.5068],[96.4073,2.5051],[96.4059,2.4987],[96.4016,2.4911],[96.4013,2.4869],[96.4036,2.4797],[96.3997,2.4761],[96.4047,2.4738],[96.4072,2.4606],[96.4025,2.4555],[96.3927,2.4621],[96.3889,2.4619],[96.3855,2.4651],[96.3887,2.4686],[96.3819,2.4718],[96.3846,2.4777],[96.3799,2.4835],[96.3769,2.4834],[96.3709,2.4934],[96.3666,2.4966],[96.3636,2.5049],[96.3638,2.5099],[96.3662,2.5141],[96.362,2.5206],[96.3593,2.5181],[96.3532,2.5177],[96.349,2.5221],[96.3466,2.5192],[96.3427,2.5224],[96.3444,2.5272],[96.3428,2.5316],[96.3443,2.5397],[96.3486,2.5442],[96.3391,2.5522],[96.333,2.5502],[96.3262,2.5544],[96.3241,2.5589],[96.313,2.5618],[96.3097,2.5586],[96.2941,2.5631],[96.2901,2.567],[96.2804,2.5738],[96.2731,2.573],[96.2659,2.5772],[96.2583,2.5838],[96.2529,2.5857],[96.2472,2.5991],[96.2399,2.6076],[96.2411,2.6154],[96.2389,2.62],[96.2337,2.6221],[96.2273,2.6204],[96.2208,2.6219],[96.2261,2.6269],[96.2196,2.6282],[96.2192,2.6335],[96.2121,2.6368],[96.2101,2.6353],[96.2053,2.6418],[96.1954,2.6492],[96.1849,2.6531],[96.1862,2.6593],[96.1802,2.668],[96.1767,2.6681],[96.1639,2.6721],[96.1654,2.6764],[96.1631,2.6793],[96.1588,2.6768],[96.1639,2.6703],[96.1713,2.6668],[96.1812,2.656],[96.1839,2.6511],[96.1817,2.6449],[96.1816,2.6387],[96.1847,2.6318],[96.1929,2.6202],[96.1915,2.6172],[96.1864,2.6206],[96.1821,2.6156],[96.1783,2.6196],[96.1757,2.626],[96.1715,2.6299],[96.1673,2.6367],[96.1616,2.6333],[96.1602,2.6394],[96.1544,2.641],[96.1535,2.6465],[96.148,2.6398],[96.1454,2.6433],[96.1482,2.6469],[96.1416,2.6485],[96.1322,2.649],[96.127,2.6481],[96.1265,2.6416],[96.1197,2.6363],[96.1139,2.6373],[96.1054,2.6408],[96.0999,2.6506],[96.1057,2.6533],[96.1012,2.6568],[96.104,2.6598],[96.1015,2.6714],[96.0938,2.6736],[96.0928,2.6768],[96.1005,2.6763],[96.1,2.6792],[96.105,2.6855],[96.1136,2.6923],[96.121,2.6925],[96.1184,2.6873],[96.1214,2.6849],[96.1295,2.6825],[96.1346,2.6834],[96.1401,2.6892],[96.1517,2.6889],[96.1475,2.6939],[96.145,2.7006],[96.1477,2.7038],[96.1467,2.713],[96.1416,2.7101],[96.1321,2.7026],[96.1273,2.7057],[96.1219,2.7061],[96.12,2.7115],[96.1159,2.7119],[96.1119,2.7219],[96.1129,2.73],[96.1259,2.7238],[96.1275,2.7283],[96.1229,2.7305],[96.1187,2.7374],[96.1082,2.7413],[96.1055,2.7413],[96.0985,2.7466],[96.0903,2.7501],[96.0892,2.7451],[96.0907,2.7395],[96.0888,2.7349],[96.0842,2.7324],[96.0819,2.736],[96.0815,2.7445],[96.0868,2.7497],[96.0864,2.7554],[96.0835,2.7586],[96.0787,2.7568],[96.0703,2.7594],[96.0556,2.7614],[96.0481,2.7599],[96.0388,2.7604],[96.0267,2.7575],[96.0085,2.766],[96.0057,2.7691],[96.0067,2.7728],[96.0052,2.7788],[95.9973,2.786],[95.9912,2.7853],[95.9808,2.7893],[95.9774,2.7937],[95.9748,2.8007],[95.9746,2.8107],[95.9723,2.8127],[95.9601,2.8119],[95.9568,2.8136],[95.9551,2.8199],[95.9507,2.8217],[95.944,2.8204],[95.9372,2.825],[95.9326,2.8236],[95.9308,2.8279],[95.926,2.8306],[95.923,2.8364],[95.9148,2.8453],[95.9123,2.8448],[95.9095,2.8361],[95.9091,2.8305],[95.9006,2.8312],[95.9024,2.8277],[95.8991,2.8237],[95.8937,2.8294],[95.8904,2.8275],[95.886,2.8323],[95.8854,2.8442],[95.8738,2.8466],[95.8701,2.8518],[95.8671,2.8593],[95.8784,2.8653],[95.8782,2.871],[95.8815,2.8729],[95.8913,2.8645],[95.8947,2.8587],[95.9035,2.8564],[95.9066,2.8494],[95.9116,2.8498],[95.9109,2.8559],[95.9132,2.8604],[95.9122,2.8675],[95.9163,2.8693],[95.9104,2.8787],[95.9062,2.8877],[95.9034,2.8964],[95.8942,2.8995],[95.8913,2.9019],[95.8816,2.9033],[95.8782,2.9056],[95.8746,2.9122],[95.8691,2.9144],[95.8617,2.91],[95.854,2.9141],[95.8323,2.9119],[95.8314,2.8982],[95.827,2.9042],[95.8222,2.9064],[95.8165,2.9141],[95.8111,2.915],[95.8041,2.9122],[95.8013,2.9218],[95.8053,2.9218],[95.8051,2.9298],[95.8014,2.9316],[95.7951,2.9285],[95.7899,2.93],[95.784,2.9256],[95.7809,2.9162],[95.7808,2.9096],[95.7749,2.9059],[95.7702,2.9076],[95.7704,2.9017],[95.7677,2.8975],[95.7691,2.8863],[95.7637,2.8805],[95.7675,2.8722],[95.7677,2.8632],[95.7634,2.8575],[95.7658,2.8519],[95.7648,2.8484],[95.7715,2.8479],[95.7789,2.8451],[95.7817,2.8421],[95.7906,2.8369],[95.7907,2.8306],[95.7817,2.832],[95.7782,2.8272],[95.7663,2.8263],[95.7613,2.8242],[95.7538,2.8293],[95.7452,2.8305],[95.7396,2.8279],[95.733,2.8318],[95.7185,2.8254],[95.717,2.8215],[95.7188,2.8164],[95.7157,2.8087],[95.7103,2.8049],[95.7062,2.7963],[95.7072,2.7924],[95.7026,2.7851],[95.6952,2.7799],[95.6921,2.7726],[95.6999,2.7633],[95.6979,2.7561],[95.7012,2.7491],[95.7069,2.75],[95.7127,2.7481],[95.7209,2.7594],[95.7262,2.7601],[95.7343,2.7528],[95.7315,2.7493],[95.7218,2.7464],[95.7237,2.7392],[95.7294,2.7388],[95.742,2.7356],[95.7495,2.7307],[95.7507,2.7258],[95.7492,2.7221],[95.7544,2.7183],[95.7623,2.7152],[95.765,2.7089],[95.7563,2.7034],[95.7546,2.6999],[95.76,2.6929],[95.7702,2.6871],[95.7723,2.6878],[95.782,2.682],[95.7906,2.6687],[95.7926,2.6638],[95.7938,2.6554],[95.7918,2.6506],[95.7887,2.6499],[95.7882,2.6399],[95.7957,2.6304],[95.8035,2.6294],[95.8042,2.6403],[95.8092,2.6381],[95.8126,2.6445],[95.8211,2.6464],[95.8276,2.6428],[95.829,2.6357],[95.8317,2.63],[95.837,2.623],[95.8405,2.6241],[95.842,2.6348],[95.8456,2.6376],[95.8522,2.6384],[95.8616,2.6375],[95.8733,2.6277],[95.8862,2.6224],[95.8898,2.618],[95.8842,2.6105],[95.8848,2.604],[95.8964,2.5981],[95.902,2.6011],[95.9071,2.5973],[95.9109,2.6001],[95.9175,2.5987],[95.9183,2.592],[95.9266,2.5829],[95.9437,2.5725],[95.9542,2.57],[95.9585,2.5768],[95.9658,2.5779],[95.963,2.5814],[95.9696,2.586],[95.9799,2.5878],[95.9842,2.5839],[95.9882,2.5851],[95.9936,2.58],[95.9923,2.5707],[95.9963,2.5658],[96.0004,2.5748],[96.0014,2.5806],[96.005,2.5885],[96.0099,2.5907],[96.0154,2.5896],[96.0169,2.5856],[96.0267,2.5831],[96.043,2.5808],[96.0492,2.5774],[96.0498,2.574],[96.0575,2.5637],[96.0614,2.5684],[96.0679,2.5703],[96.0754,2.5696],[96.0844,2.5639],[96.0833,2.5583],[96.0867,2.5542],[96.095,2.5517],[96.1057,2.5457],[96.1191,2.5395],[96.1267,2.5265],[96.1284,2.5202],[96.1393,2.5135],[96.1447,2.5137],[96.1469,2.5176],[96.1606,2.5119],[96.1637,2.5086],[96.164,2.4996],[96.1694,2.4909],[96.1767,2.4895],[96.1814,2.4846],[96.1866,2.4885],[96.1937,2.483],[96.1991,2.4755],[96.2003,2.4715],[96.2066,2.4705],[96.2173,2.4643],[96.2267,2.449],[96.2256,2.4452],[96.2289,2.4415],[96.2353,2.4402],[96.2422,2.4416],[96.2523,2.4352],[96.2617,2.4314],[96.2725,2.4291],[96.2813,2.4293],[96.2864,2.4276],[96.2972,2.4259],[96.3094,2.4222],[96.3153,2.4168],[96.3185,2.406],[96.3145,2.4035],[96.3134,2.3855],[96.3172,2.3865],[96.3197,2.3833],[96.3331,2.391],[96.3355,2.387],[96.334,2.3719],[96.3215,2.3622],[96.3166,2.3628],[96.3141,2.3595],[96.3181,2.3537],[96.3264,2.3496],[96.334,2.3505],[96.3411,2.3456],[96.3447,2.3412],[96.3535,2.339],[96.3605,2.3408],[96.3652,2.3368],[96.3727,2.3401],[96.373,2.3464],[96.3772,2.3486],[96.3873,2.349],[96.3945,2.3402],[96.4071,2.3321],[96.4159,2.3299],[96.4234,2.3302],[96.4363,2.3277],[96.4443,2.329],[96.4544,2.3335],[96.4571,2.3375],[96.4641,2.3426],[96.47,2.34],[96.4819,2.345],[96.4857,2.3536],[96.4916,2.3566],[96.4923,2.3598],[96.4987,2.3632],[96.4987,2.3689],[96.4968,2.374],[96.4924,2.3759],[96.4899,2.39],[96.4852,2.3917],[96.4779,2.3967],[96.4785,2.4021],[96.4819,2.4025],[96.4869,2.4104],[96.4808,2.4198],[96.4772,2.4193],[96.4787,2.4263],[96.4757,2.4303],[96.4686,2.4265],[96.466,2.4366],[96.4713,2.4492],[96.4673,2.4604],[96.4615,2.4625],[96.4555,2.4674],[96.4572,2.4711],[96.4538,2.4761],[96.4463,2.4778],[96.4436,2.4814],[96.4349,2.4887],[96.4277,2.4918],[96.4271,2.4855],[96.4301,2.4813],[96.4281,2.4775]]}},{"type":"Feature","properties":{"mhid":"1332:1","alt_name":"KABUPATEN SIMEULUE","latitude":2.61667,"longitude":96.08333,"sample_value":479},"geometry":{"type":"LineString","coordinates":[[95.4018,2.9669],[95.4064,2.9759],[95.4021,2.9777],[95.3967,2.9875],[95.3908,2.9894],[95.3891,2.9866],[95.3949,2.978],[95.3973,2.9676],[95.4018,2.9669]]}},{"type":"Feature","properties":{"mhid":"1332:1","alt_name":"KABUPATEN SIMEULUE","latitude":2.61667,"longitude":96.08333,"sample_value":479},"geometry":{"type":"LineString","coordinates":[[95.405,3.0135],[95.4112,3.0167],[95.4099,3.0207],[95.4036,3.0181],[95.405,3.0135]]}},{"type":"Feature","properties":{"mhid":"1332:4","alt_name":"KABUPATEN ACEH SELATAN","latitude":3.16667,"longitude":97.41667,"sample_value":541},"geometry":{"type":"LineString","coordinates":[[97.3172,3.0752],[97.3129,3.0818],[97.3092,3.0803],[97.3106,3.0758],[97.3172,3.0752]]}},{"type":"Feature","properties":{"mhid":"1332:4","alt_name":"KABUPATEN ACEH SELATAN","latitude":3.16667,"longitude":97.41667,"sample_value":541},"geometry":{"type":"LineString","coordinates":[[97.2062,3.6939],[97.1918,3.7113],[97.184,3.7199],[97.1734,3.7301],[97.1613,3.7389],[97.1536,3.7456],[97.151,3.7396],[97.142,3.7341],[97.1381,3.7178],[97.1352,3.696],[97.1336,3.6922],[97.1283,3.6874],[97.1146,3.6802],[97.1073,3.6741],[97.0906,3.6584],[97.0829,3.6498],[97.0639,3.6311],[97.0568,3.6258],[97.0496,3.6227],[97.044,3.6223],[97.0414,3.616],[97.0358,3.6073],[97.0305,3.6038],[97.0258,3.6044],[97.0202,3.6076],[97.0137,3.6092],[97.0007,3.6158],[96.9969,3.6198],[96.9905,3.6219],[96.9832,3.6213],[96.9702,3.623],[96.968,3.6163],[96.9648,3.6149],[96.9606,3.6093],[96.959,3.6038],[96.95,3.5929],[96.9445,3.583],[96.942,3.5746],[96.9403,3.5696],[96.9706,3.558],[96.9809,3.5565],[96.9931,3.5511],[96.9934,3.547],[96.9997,3.5453],[97.0012,3.5383],[97.0046,3.5309],[97.017,3.5205],[97.0179,3.5081],[97.0248,3.4997],[97.0288,3.4964],[97.0378,3.4838],[97.0457,3.4747],[97.0463,3.4711],[97.052,3.4616],[97.0496,3.4583],[97.0517,3.455],[97.0576,3.4561],[97.058,3.4457],[97.0627,3.4434],[97.0632,3.4391],[97.0605,3.4359],[97.062,3.4302],[97.0708,3.427],[97.0695,3.4189],[97.0753,3.4133],[97.0846,3.4005],[97.0843,3.395],[97.0929,3.387],[97.106,3.3679],[97.1095,3.36],[97.1186,3.3562],[97.1225,3.3482],[97.1206,3.3408],[97.1214,3.3323],[97.1267,3.3261],[97.126,3.3212],[97.1284,3.3177],[97.1343,3.317],[97.1402,3.3127],[97.1456,3.3051],[97.1503,3.2915],[97.1577,3.2837],[97.1582,3.273],[97.1651,3.2701],[97.167,3.2612],[97.1719,3.2551],[97.1769,3.2516],[97.1815,3.256],[97.1944,3.259],[97.1955,3.253],[97.2017,3.2491],[97.2061,3.2511],[97.2124,3.2497],[97.2171,3.2451],[97.2217,3.2434],[97.2205,3.2379],[97.2236,3.2322],[97.2321,3.2325],[97.2363,3.236],[97.2446,3.236],[97.2576,3.2206],[97.264,3.2105],[97.2712,3.1939],[97.2758,3.186],[97.2779,3.1773],[97.2814,3.1688],[97.2835,3.158],[97.2876,3.1481],[97.2902,3.1346],[97.2975,3.1143],[97.3007,3.1163],[97.3091,3.1098],[97.3024,3.1029],[97.3038,3.0965],[97.3086,3.0824],[97.3143,3.0826],[97.3178,3.0779],[97.3174,3.0744],[97.3111,3.0738],[97.3196,3.0589],[97.319,3.0548],[97.3369,3.0324],[97.3597,3.0015],[97.3697,2.9886],[97.393,2.9631],[97.4251,2.9343],[97.4473,2.9232],[97.4569,2.9234],[97.4774,2.9216],[97.4867,2.9202],[97.4989,2.9127],[97.5046,2.9059],[97.5054,2.9025],[97.5131,2.9027],[97.5144,2.8996],[97.5221,2.8895],[97.5307,2.8861],[97.5345,2.883],[97.5429,2.8824],[97.5492,2.8881],[97.5558,2.8889],[97.563,2.8862],[97.5758,2.8882],[97.5822,2.8864],[97.5925,2.8772],[97.5988,2.8678],[97.6041,2.8578],[97.6112,2.8413],[97.615,2.8293],[97.6178,2.8119],[97.6241,2.787],[97.6341,2.7522],[97.6399,2.7219],[97.6423,2.7129],[97.6438,2.7001],[97.6479,2.6783],[97.6501,2.6621],[97.6511,2.6387],[97.6545,2.5894],[97.6544,2.5749],[97.6552,2.5642],[97.6551,2.5459],[97.6565,2.5313],[97.6567,2.52],[97.6553,2.4728],[97.6573,2.4512],[97.6592,2.4176],[97.6611,2.4019],[97.6639,2.3944],[97.6698,2.396],[97.6865,2.4025],[97.7041,2.407],[97.7113,2.4097],[97.7281,2.4195],[97.7322,2.4227],[97.7496,2.4429],[97.7728,2.4758],[97.7909,2.4998],[97.7917,2.5073],[97.7943,2.5319],[97.7955,2.5472],[97.8014,2.5659],[97.8181,2.6161],[97.8251,2.6358],[97.8139,2.6528],[97.8174,2.6671],[97.7952,2.7202],[97.7798,2.7587],[97.7709,2.7765],[97.7666,2.7877],[97.7777,2.7944],[97.8366,2.8265],[97.8492,2.8343],[97.86,2.8462],[97.86,2.8601],[97.8577,2.8652],[97.8576,2.8805],[97.8616,2.8842],[97.8788,2.8905],[97.8864,2.8943],[97.9017,2.9072],[97.9049,2.9117],[97.9075,2.9207],[97.9081,2.9339],[97.9065,2.9541],[97.8996,2.9658],[97.8902,2.9655],[97.8705,2.9676],[97.815,2.9822],[97.8156,2.9764],[97.8136,2.9664],[97.8104,2.9635],[97.8064,2.9604],[97.8034,2.9631],[97.7994,2.9748],[97.7966,2.9752],[97.7881,2.9722],[97.7775,2.9662],[97.7708,2.9594],[97.7687,2.9534],[97.7663,2.9419],[97.763,2.9351],[97.7537,2.9269],[97.743,2.9279],[97.7329,2.9314],[97.7131,2.9361],[97.6951,2.9417],[97.6773,2.9447],[97.6552,2.9474],[97.6461,2.9509],[97.6405,2.9543],[97.6371,2.9603],[97.6344,2.9651],[97.6331,2.9736],[97.6341,2.9932],[97.6336,3.007],[97.6351,3.0157],[97.6395,3.0208],[97.6426,3.0259],[97.6414,3.0339],[97.6338,3.0483],[97.6166,3.09],[97.6105,3.1009],[97.6024,3.1101],[97.5959,3.1151],[97.5756,3.1273],[97.5592,3.143],[97.5473,3.1521],[97.532,3.1609],[97.5198,3.1676],[97.5143,3.1735],[97.5024,3.1888],[97.5023,3.189],[97.4965,3.1956],[97.4931,3.1987],[97.4848,3.2079],[97.4774,3.218],[97.4742,3.2258],[97.4722,3.2345],[97.4704,3.2411],[97.4703,3.2492],[97.471,3.2527],[97.4714,3.2632],[97.4673,3.271],[97.4674,3.287],[97.4689,3.2948],[97.4686,3.3013],[97.4725,3.3219],[97.473,3.3325],[97.4683,3.3384],[97.4565,3.3619],[97.4502,3.3752],[97.4399,3.399],[97.4244,3.4218],[97.4089,3.4384],[97.399,3.4512],[97.3983,3.4551],[97.4098,3.475],[97.419,3.4897],[97.4437,3.5256],[97.4521,3.54],[97.4559,3.5422],[97.4626,3.5421],[97.4791,3.545],[97.4839,3.5517],[97.4844,3.5582],[97.4829,3.5623],[97.4725,3.5692],[97.469,3.5755],[97.4674,3.5926],[97.4636,3.5994],[97.4625,3.6053],[97.4626,3.6159],[97.4604,3.6225],[97.455,3.6305],[97.4466,3.6357],[97.4316,3.6385],[97.4215,3.6254],[97.4101,3.6196],[97.4043,3.6188],[97.4006,3.6207],[97.3921,3.63],[97.3825,3.6384],[97.3778,3.6411],[97.3691,3.64],[97.3648,3.6355],[97.36,3.6273],[97.3555,3.6245],[97.3441,3.6228],[97.3304,3.6129],[97.302,3.601],[97.2953,3.5992],[97.2933,3.6125],[97.2874,3.6279],[97.2846,3.6396],[97.2815,3.6461],[97.2782,3.6497],[97.2635,3.6523],[97.2391,3.6694],[97.2242,3.6788],[97.2143,3.6864],[97.2062,3.6939]]}},{"type":"Feature","properties":{"mhid":"1332:5","alt_name":"KABUPATEN ACEH TENGGARA","latitude":3.36667,"longitude":97.7,"sample_value":882},"geometry":{"type":"LineString","coordinates":[[97.8246,3.7495],[97.8093,3.7485],[97.7812,3.7492],[97.7489,3.7443],[97.7348,3.7399],[97.7089,3.7356],[97.6863,3.7341],[97.6816,3.7333],[97.6535,3.7317],[97.6423,3.7317],[97.6353,3.7333],[97.6295,3.7299],[97.6217,3.7217],[97.6017,3.718],[97.5722,3.7136],[97.5561,3.7107],[97.5496,3.7142],[97.5397,3.7102],[97.5349,3.7067],[97.5284,3.706],[97.5115,3.7001],[97.4979,3.7007],[97.4938,3.7029],[97.4773,3.7017],[97.4603,3.6977],[97.4166,3.6919],[97.3908,3.6875],[97.3213,3.6781],[97.3159,3.6769],[97.3048,3.6768],[97.2849,3.6823],[97.2664,3.6844],[97.2628,3.6863],[97.2584,3.6938],[97.2525,3.6956],[97.2325,3.6951],[97.2062,3.6939],[97.2143,3.6864],[97.2242,3.6788],[97.2391,3.6694],[97.2635,3.6523],[97.2782,3.6497],[97.2815,3.6461],[97.2846,3.6396],[97.2874,3.6279],[97.2933,3.6125],[97.2953,3.5992],[97.302,3.601],[97.3304,3.6129],[97.3441,3.6228],[97.3555,3.6245],[97.36,3.6273],[97.3648,3.6355],[97.3691,3.64],[97.3778,3.6411],[97.3825,3.6384],[97.3921,3.63],[97.4006,3.6207],[97.4043,3.6188],[97.4101,3.6196],[97.4215,3.6254],[97.4316,3.6385],[97.4466,3.6357],[97.455,3.6305],[97.4604,3.6225],[97.4626,3.6159],[97.4625,3.6053],[97.4636,3.5994],[97.4674,3.5926],[97.469,3.5755],[97.4725,3.5692],[97.4829,3.5623],[97.4844,3.5582],[97.4839,3.5517],[97.4791,3.545],[97.4626,3.5421],[97.4559,3.5422],[97.4521,3.54],[97.4437,3.5256],[97.419,3.4897],[97.4098,3.475],[97.3983,3.4551],[97.399,3.4512],[97.4089,3.4384],[97.4244,3.4218],[97.4399,3.399],[97.4502,3.3752],[97.4565,3.3619],[97.4683,3.3384],[97.473,3.3325],[97.4725,3.3219],[97.4686,3.3013],[97.4689,3.2948],[97.4674,3.287],[97.4673,3.271],[97.4714,3.2632],[97.471,3.2527],[97.4703,3.2492],[97.4722,3.2345],[97.4742,3.2258],[97.4774,3.218],[97.4848,3.2079],[97.4931,3.1987],[97.4965,3.1956],[97.5023,3.189],[97.5024,3.1888],[97.5143,3.1735],[97.5198,3.1676],[97.532,3.1609],[97.5473,3.1521],[97.5592,3.143],[97.5756,3.1273],[97.5959,3.1151],[97.6024,3.1101],[97.6105,3.1009],[97.6166,3.09],[97.6338,3.0483],[97.6414,3.0339],[97.6426,3.0259],[97.6395,3.0208],[97.6345,3.0141],[97.6336,3.007],[97.6341,2.9932],[97.6331,2.9736],[97.6344,2.9651],[97.6371,2.9603],[97.6399,2.9552],[97.6461,2.9509],[97.6552,2.9474],[97.6773,2.9447],[97.6951,2.9417],[97.7131,2.9361],[97.7329,2.9314],[97.743,2.9279],[97.7537,2.9269],[97.763,2.9351],[97.7663,2.9419],[97.7687,2.9534],[97.7708,2.9594],[97.7775,2.9662],[97.7881,2.9722],[97.7966,2.9752],[97.7994,2.9748],[97.8034,2.9631],[97.8056,2.961],[97.8104,2.9635],[97.8136,2.9664],[97.8156,2.9764],[97.815,2.9822],[97.8192,2.9886],[97.829,3],[97.841,3.0032],[97.8515,3.001],[97.8562,3.0034],[97.861,3.0035],[97.8725,3.0098],[97.8803,3.0072],[97.888,3.0092],[97.9016,3.0078],[97.908,3.0008],[97.916,2.9985],[97.9192,2.9962],[97.9351,2.9895],[97.9419,2.9971],[97.9469,3.0057],[97.9461,3.0104],[97.9387,3.0258],[97.9391,3.037],[97.9443,3.0442],[97.9424,3.048],[97.9303,3.0543],[97.9303,3.0631],[97.932,3.0694],[97.9384,3.0749],[97.9451,3.0751],[97.9496,3.0731],[97.9495,3.0657],[97.9611,3.0659],[97.9745,3.0728],[97.9768,3.079],[97.9825,3.0817],[97.9828,3.0868],[97.9794,3.0972],[97.9817,3.1109],[97.9809,3.1189],[97.9765,3.1289],[97.972,3.1353],[97.9693,3.1428],[97.9638,3.1449],[97.9429,3.1608],[97.9385,3.1635],[97.943,3.1751],[97.9398,3.1936],[97.9435,3.2013],[97.9413,3.2055],[97.9378,3.2041],[97.9306,3.2129],[97.9269,3.2231],[97.9224,3.2285],[97.9171,3.2307],[97.9045,3.232],[97.8985,3.234],[97.8889,3.2404],[97.8818,3.2381],[97.8704,3.2496],[97.8753,3.2554],[97.8836,3.2569],[97.8907,3.2564],[97.8967,3.2578],[97.9016,3.2623],[97.9083,3.2623],[97.913,3.2643],[97.9224,3.264],[97.9366,3.2654],[97.9368,3.2686],[97.9411,3.2715],[97.9456,3.2712],[97.9545,3.2835],[97.9661,3.2873],[97.9697,3.2777],[97.9813,3.2812],[97.9882,3.2808],[97.9956,3.2832],[98.0027,3.2913],[98.0098,3.2935],[98.017,3.3025],[98.0208,3.3026],[98.0202,3.316],[98.0226,3.3221],[98.0289,3.331],[98.0233,3.3419],[98.0143,3.3494],[98.0107,3.3592],[98.0065,3.3657],[98.0019,3.3698],[97.9946,3.3729],[97.9919,3.3703],[97.9787,3.3717],[97.9707,3.378],[97.9482,3.3907],[97.947,3.3936],[97.9305,3.3897],[97.9099,3.3896],[97.9058,3.3992],[97.8983,3.4082],[97.8976,3.4159],[97.9111,3.4171],[97.9211,3.4221],[97.9253,3.4304],[97.9294,3.434],[97.93,3.4377],[97.9337,3.4411],[97.9363,3.4504],[97.9414,3.4558],[97.9478,3.4666],[97.9498,3.4728],[97.9586,3.4806],[97.9582,3.4831],[97.9494,3.4856],[97.946,3.4894],[97.9287,3.4932],[97.9205,3.5],[97.9229,3.5053],[97.9235,3.5133],[97.9195,3.522],[97.9125,3.5339],[97.9123,3.5437],[97.9097,3.5502],[97.9044,3.5569],[97.8978,3.5603],[97.8924,3.5591],[97.8848,3.5611],[97.8756,3.5652],[97.8683,3.571],[97.8669,3.5766],[97.867,3.5848],[97.8636,3.5946],[97.8643,3.6008],[97.8705,3.607],[97.8719,3.6121],[97.8638,3.6196],[97.8536,3.6269],[97.8533,3.6419],[97.8466,3.6532],[97.8444,3.6612],[97.8384,3.6685],[97.8293,3.6722],[97.8225,3.6813],[97.8191,3.6906],[97.8046,3.7104],[97.8038,3.7168],[97.8003,3.7227],[97.8152,3.7367],[97.8177,3.7425],[97.8246,3.7495]]}},{"type":"Feature","properties":{"mhid":"1332:6","alt_name":"KABUPATEN ACEH TIMUR","latitude":4.63333,"longitude":97.63333,"sample_value":869},"geometry":{"type":"LineString","coordinates":[[97.9757,4.5563],[97.9706,4.5592],[97.9779,4.5627],[97.9819,4.5677],[97.9858,4.5763],[97.9948,4.587],[97.9994,4.5945],[98.0027,4.5964],[98.0072,4.6028],[98.012,4.6052],[98.0177,4.6018],[98.0177,4.6092],[98.0129,4.6167],[98.0066,4.6217],[97.9985,4.6251],[97.9939,4.6299],[97.9967,4.6396],[97.9904,4.6426],[97.9862,4.6428],[97.9797,4.6529],[97.975,4.654],[97.9719,4.6626],[97.9645,4.6644],[97.9624,4.6748],[97.9675,4.6775],[97.975,4.6687],[97.9764,4.6739],[97.9665,4.6977],[97.9624,4.7123],[97.9607,4.7328],[97.9552,4.7389],[97.9544,4.7436],[97.9571,4.7464],[97.9535,4.7569],[97.9487,4.7629],[97.9461,4.7692],[97.9462,4.7781],[97.9361,4.8034],[97.9355,4.8067],[97.9307,4.8156],[97.9224,4.8392],[97.9192,4.85],[97.9069,4.8819],[97.9059,4.8892],[97.8971,4.8885],[97.8802,4.89],[97.8724,4.8922],[97.862,4.8968],[97.8493,4.904],[97.8441,4.9091],[97.8229,4.9233],[97.8073,4.9349],[97.7792,4.9595],[97.7762,4.9643],[97.7514,4.9857],[97.7362,4.9984],[97.7357,4.9999],[97.716,5.0158],[97.6742,5.0515],[97.6721,5.0554],[97.6552,5.0685],[97.6447,5.0822],[97.6443,5.0882],[97.6554,5.0811],[97.6569,5.0837],[97.6547,5.0954],[97.6538,5.1131],[97.6524,5.1184],[97.6367,5.1287],[97.6274,5.1292],[97.6136,5.1318],[97.6033,5.1371],[97.5909,5.1445],[97.593,5.1468],[97.5823,5.1614],[97.577,5.1661],[97.5704,5.1751],[97.5696,5.1827],[97.5653,5.1888],[97.5427,5.2078],[97.5542,5.2107],[97.5547,5.2134],[97.5418,5.2216],[97.5254,5.2344],[97.5136,5.2424],[97.4977,5.2501],[97.4841,5.246],[97.4838,5.2437],[97.4838,5.24],[97.4883,5.2311],[97.4886,5.2244],[97.4927,5.2195],[97.4991,5.2146],[97.4926,5.2111],[97.4909,5.202],[97.4969,5.2027],[97.5006,5.1913],[97.4948,5.1859],[97.4884,5.1882],[97.4864,5.1802],[97.5003,5.1693],[97.4969,5.1628],[97.4982,5.1588],[97.4908,5.1572],[97.4799,5.1501],[97.473,5.152],[97.4661,5.1526],[97.4696,5.1508],[97.4675,5.1454],[97.4701,5.1399],[97.4683,5.1334],[97.4776,5.1295],[97.4772,5.1244],[97.4699,5.124],[97.4684,5.1169],[97.4648,5.1187],[97.4599,5.1125],[97.4663,5.1059],[97.4718,5.1047],[97.4731,5.1018],[97.4693,5.0986],[97.4745,5.0949],[97.4759,5.0893],[97.4798,5.087],[97.4834,5.0793],[97.4864,5.0779],[97.4906,5.0861],[97.4954,5.0862],[97.4974,5.0817],[97.4951,5.0777],[97.5016,5.0773],[97.4989,5.0705],[97.5148,5.0693],[97.5154,5.0657],[97.5099,5.0654],[97.5073,5.0592],[97.5116,5.0565],[97.512,5.0502],[97.5056,5.0549],[97.498,5.0511],[97.5037,5.0487],[97.5053,5.0457],[97.5002,5.0433],[97.5012,5.0377],[97.509,5.0434],[97.5104,5.038],[97.5144,5.0323],[97.5135,5.0292],[97.508,5.0296],[97.5067,5.0235],[97.5011,5.0164],[97.4955,5.0164],[97.4935,5.0124],[97.4973,5.0107],[97.5011,5.0128],[97.5049,5.0104],[97.5054,5.0053],[97.5024,5.0002],[97.5078,4.9956],[97.5033,4.9925],[97.4966,4.9889],[97.4978,4.983],[97.4932,4.9813],[97.4939,4.9759],[97.4993,4.9767],[97.4994,4.9703],[97.5018,4.9677],[97.4983,4.9641],[97.4942,4.9677],[97.4901,4.9599],[97.4954,4.9572],[97.5028,4.9609],[97.5034,4.9573],[97.4987,4.9544],[97.4971,4.9476],[97.4929,4.9478],[97.4881,4.9418],[97.4839,4.9451],[97.4806,4.9421],[97.4725,4.9382],[97.4677,4.9312],[97.4734,4.9234],[97.4794,4.9184],[97.4771,4.9146],[97.4797,4.9112],[97.4851,4.9112],[97.4919,4.9011],[97.4988,4.8984],[97.4987,4.8948],[97.4928,4.8885],[97.494,4.886],[97.5021,4.8925],[97.5017,4.8879],[97.4953,4.8799],[97.498,4.8747],[97.5033,4.8794],[97.5064,4.8852],[97.5112,4.8817],[97.5062,4.8769],[97.5021,4.8755],[97.5005,4.8704],[97.4946,4.8671],[97.4894,4.8674],[97.4879,4.8649],[97.4896,4.8565],[97.4854,4.8472],[97.4769,4.8387],[97.4726,4.8431],[97.4618,4.8412],[97.4579,4.8452],[97.4556,4.8393],[97.4523,4.8355],[97.4447,4.8337],[97.442,4.8285],[97.4489,4.8283],[97.4564,4.8229],[97.4555,4.8192],[97.4514,4.8187],[97.4368,4.8217],[97.4354,4.8186],[97.4378,4.8119],[97.4353,4.8083],[97.4284,4.8058],[97.4331,4.7975],[97.436,4.7954],[97.4365,4.7886],[97.4324,4.7857],[97.4268,4.7858],[97.4205,4.782],[97.4125,4.7799],[97.4071,4.784],[97.4104,4.7872],[97.418,4.7872],[97.4161,4.7935],[97.4123,4.796],[97.4076,4.7958],[97.4035,4.7895],[97.3999,4.7668],[97.4032,4.7633],[97.4105,4.7627],[97.4147,4.7685],[97.4224,4.7647],[97.4247,4.7563],[97.4224,4.755],[97.417,4.7587],[97.4111,4.7594],[97.4071,4.7559],[97.402,4.7563],[97.3992,4.7596],[97.388,4.7601],[97.387,4.7687],[97.3719,4.7682],[97.3654,4.7667],[97.3608,4.7691],[97.366,4.7783],[97.3622,4.7835],[97.3557,4.7765],[97.3505,4.7781],[97.338,4.7781],[97.3353,4.7717],[97.3364,4.7668],[97.327,4.7588],[97.3236,4.7441],[97.3191,4.741],[97.3241,4.7345],[97.3276,4.7158],[97.3272,4.7063],[97.3236,4.6976],[97.3176,4.6912],[97.312,4.682],[97.3127,4.6735],[97.3113,4.6667],[97.3057,4.6623],[97.294,4.6598],[97.2748,4.6593],[97.2613,4.6637],[97.255,4.6618],[97.2545,4.6491],[97.2565,4.6438],[97.2593,4.6246],[97.2615,4.6214],[97.2658,4.6213],[97.27,4.6276],[97.2748,4.6318],[97.2804,4.6302],[97.2991,4.6294],[97.3065,4.6205],[97.313,4.6028],[97.3215,4.5542],[97.3239,4.5482],[97.3223,4.5433],[97.3188,4.5412],[97.3104,4.5398],[97.3063,4.5377],[97.2971,4.5291],[97.2854,4.5277],[97.2806,4.5253],[97.2746,4.5178],[97.2732,4.5081],[97.2767,4.5059],[97.2847,4.5058],[97.2941,4.5038],[97.3123,4.5097],[97.3184,4.5105],[97.3279,4.5139],[97.3388,4.5127],[97.3423,4.5099],[97.3443,4.5016],[97.3439,4.4883],[97.3464,4.449],[97.3487,4.4386],[97.3529,4.4307],[97.3594,4.4245],[97.3622,4.4198],[97.3631,4.4139],[97.3687,4.4021],[97.3693,4.3839],[97.368,4.3746],[97.3694,4.3665],[97.3678,4.3615],[97.3568,4.3538],[97.3522,4.3473],[97.3557,4.3451],[97.3591,4.3353],[97.3574,4.3072],[97.3567,4.2961],[97.359,4.2859],[97.3597,4.2821],[97.3576,4.2701],[97.3528,4.2555],[97.3484,4.2374],[97.3511,4.2336],[97.355,4.221],[97.3569,4.2092],[97.3577,4.2076],[97.3603,4.2043],[97.3688,4.2034],[97.3757,4.2002],[97.3848,4.194],[97.396,4.1877],[97.4037,4.181],[97.4085,4.1822],[97.4192,4.1766],[97.4392,4.1698],[97.4549,4.1622],[97.4657,4.1591],[97.4748,4.1579],[97.5002,4.1559],[97.504,4.1574],[97.5054,4.1664],[97.5117,4.1756],[97.5152,4.1863],[97.5216,4.1881],[97.5308,4.1935],[97.5349,4.1942],[97.5474,4.1928],[97.5581,4.1875],[97.5612,4.1844],[97.5693,4.1873],[97.5734,4.186],[97.5758,4.1968],[97.5739,4.2015],[97.5769,4.2065],[97.5761,4.21],[97.5823,4.2191],[97.5828,4.2237],[97.5926,4.2396],[97.5945,4.2499],[97.6018,4.2537],[97.6064,4.2539],[97.6199,4.2469],[97.6227,4.2438],[97.6288,4.2287],[97.6327,4.2278],[97.6419,4.2224],[97.6443,4.2196],[97.6489,4.2233],[97.6571,4.2285],[97.6593,4.2317],[97.669,4.2422],[97.6692,4.2423],[97.6808,4.2409],[97.6849,4.2467],[97.7038,4.2464],[97.7179,4.2472],[97.7191,4.2573],[97.7263,4.2742],[97.7316,4.2777],[97.7318,4.2861],[97.7346,4.2871],[97.7402,4.2979],[97.745,4.3043],[97.7492,4.3054],[97.7559,4.3129],[97.7609,4.3165],[97.7602,4.3303],[97.7632,4.3389],[97.7661,4.3412],[97.7715,4.3403],[97.7834,4.3505],[97.7885,4.3498],[97.796,4.3444],[97.8,4.3482],[97.8056,4.3456],[97.8089,4.3464],[97.82,4.3454],[97.8343,4.3461],[97.8554,4.3461],[97.8662,4.3447],[97.8723,4.3462],[97.8834,4.3465],[97.89,4.3482],[97.9185,4.3502],[97.9226,4.3511],[97.9259,4.3591],[97.9384,4.3719],[97.9465,4.3875],[97.9506,4.3882],[97.9539,4.3915],[97.967,4.3964],[97.98,4.3926],[97.9871,4.3946],[98.0021,4.4025],[98.013,4.4108],[98.0174,4.4153],[98.0242,4.4158],[98.0195,4.4176],[98.015,4.4144],[98.0037,4.4118],[98.0005,4.4077],[97.9935,4.4094],[97.9916,4.4121],[97.9818,4.4144],[97.9817,4.4213],[97.9734,4.4227],[97.9688,4.4261],[97.9711,4.4383],[97.9669,4.4414],[97.9617,4.4422],[97.9529,4.4412],[97.9423,4.438],[97.9357,4.4325],[97.9254,4.435],[97.9213,4.4394],[97.9169,4.4527],[97.9098,4.4509],[97.9059,4.4523],[97.9028,4.4481],[97.8868,4.4483],[97.8774,4.4582],[97.8822,4.4679],[97.8887,4.4771],[97.8888,4.4829],[97.8908,4.4867],[97.8909,4.4932],[97.8976,4.5063],[97.9046,4.512],[97.913,4.5213],[97.9167,4.5295],[97.928,4.534],[97.9368,4.5329],[97.9356,4.5284],[97.9423,4.5272],[97.9509,4.5295],[97.9516,4.5348],[97.957,4.5344],[97.9625,4.5283],[97.9671,4.5295],[97.9709,4.534],[97.9788,4.54],[97.9809,4.5455],[97.9757,4.5563]]}},{"type":"Feature","properties":{"mhid":"1332:7","alt_name":"KABUPATEN ACEH TENGAH","latitude":4.51,"longitude":96.855,"sample_value":871},"geometry":{"type":"LineString","coordinates":[[96.6575,4.9554],[96.6499,4.9568],[96.6384,4.9561],[96.624,4.9535],[96.5999,4.9542],[96.5888,4.9523],[96.5858,4.9498],[96.5806,4.9496],[96.5651,4.9449],[96.5546,4.9425],[96.5361,4.9351],[96.5215,4.9183],[96.5188,4.9121],[96.5128,4.9029],[96.5093,4.9017],[96.506,4.8954],[96.4966,4.8901],[96.4923,4.8919],[96.4756,4.8921],[96.4668,4.8948],[96.4631,4.9106],[96.4594,4.9164],[96.4496,4.9251],[96.4362,4.8999],[96.4253,4.8857],[96.3973,4.8672],[96.376,4.8422],[96.3547,4.7892],[96.3505,4.7757],[96.343,4.7793],[96.3374,4.7789],[96.3333,4.7752],[96.3208,4.7763],[96.3127,4.78],[96.3071,4.7748],[96.2971,4.7756],[96.2923,4.7785],[96.2835,4.78],[96.2807,4.779],[96.2705,4.7746],[96.2684,4.768],[96.268,4.7506],[96.2644,4.7425],[96.2647,4.7373],[96.2631,4.7263],[96.2604,4.7177],[96.2623,4.7106],[96.2709,4.7082],[96.2749,4.7051],[96.2791,4.6953],[96.2824,4.6923],[96.297,4.6914],[96.3108,4.688],[96.3184,4.6874],[96.3293,4.6896],[96.3469,4.6898],[96.3543,4.6872],[96.3636,4.6875],[96.3694,4.6917],[96.3948,4.6797],[96.4073,4.6704],[96.4167,4.6578],[96.4241,4.6491],[96.438,4.6395],[96.4412,4.6311],[96.4477,4.6253],[96.4586,4.6253],[96.4677,4.6266],[96.4731,4.63],[96.4861,4.6305],[96.4911,4.6228],[96.4914,4.6226],[96.5269,4.6036],[96.5438,4.6008],[96.5593,4.5922],[96.5704,4.5816],[96.5815,4.573],[96.5897,4.5517],[96.5889,4.5365],[96.5892,4.5263],[96.5883,4.5191],[96.5906,4.5154],[96.593,4.502],[96.5999,4.4942],[96.6031,4.4857],[96.6044,4.4773],[96.5981,4.4518],[96.5989,4.4475],[96.5947,4.4401],[96.5972,4.4372],[96.591,4.4345],[96.5898,4.4267],[96.5853,4.424],[96.5839,4.4198],[96.5883,4.4158],[96.5966,4.4162],[96.6013,4.4131],[96.604,4.4089],[96.6087,4.4094],[96.6098,4.4046],[96.6177,4.4003],[96.618,4.4039],[96.6237,4.4036],[96.6319,4.3987],[96.6353,4.3946],[96.6348,4.3908],[96.6408,4.3858],[96.6422,4.3815],[96.6475,4.3774],[96.6782,4.3639],[96.7012,4.3566],[96.7171,4.353],[96.749,4.342],[96.765,4.333],[96.7781,4.327],[96.784,4.3179],[96.7854,4.313],[96.7917,4.3047],[96.8194,4.2876],[96.8206,4.2854],[96.829,4.2819],[96.8431,4.2694],[96.8495,4.259],[96.8575,4.249],[96.8643,4.2435],[96.8765,4.2392],[96.8799,4.2357],[96.8814,4.231],[96.887,4.2212],[96.8935,4.2183],[96.9098,4.2134],[96.9172,4.206],[96.9222,4.1992],[96.9275,4.197],[96.9391,4.1947],[96.9421,4.1908],[96.9505,4.1866],[96.9632,4.1861],[96.9776,4.1873],[96.9861,4.1903],[96.9902,4.19],[96.992,4.1972],[96.9977,4.1987],[97.0033,4.1979],[97.0134,4.2054],[97.0263,4.2092],[97.0524,4.218],[97.0671,4.2199],[97.0724,4.2231],[97.0925,4.2386],[97.1034,4.2463],[97.11,4.2499],[97.1237,4.2534],[97.1283,4.2554],[97.1395,4.2639],[97.1493,4.2689],[97.1553,4.2757],[97.1615,4.2808],[97.1703,4.272],[97.1772,4.2627],[97.181,4.2606],[97.1918,4.2586],[97.2021,4.2502],[97.2077,4.2438],[97.2172,4.2355],[97.2225,4.225],[97.223,4.2173],[97.2249,4.2126],[97.2306,4.206],[97.238,4.1941],[97.2422,4.1894],[97.2466,4.1757],[97.2516,4.17],[97.2583,4.1681],[97.2649,4.1683],[97.2731,4.1705],[97.2795,4.1737],[97.2868,4.1801],[97.2936,4.1827],[97.3173,4.1889],[97.3358,4.1973],[97.3565,4.21],[97.3568,4.2091],[97.3569,4.2092],[97.355,4.221],[97.3511,4.2336],[97.3484,4.2374],[97.3528,4.2555],[97.3576,4.2701],[97.3597,4.2821],[97.359,4.2859],[97.3573,4.2883],[97.3566,4.2961],[97.3574,4.3072],[97.3591,4.3353],[97.3557,4.3451],[97.3522,4.3473],[97.3568,4.3538],[97.3678,4.3615],[97.3694,4.3665],[97.368,4.3746],[97.3693,4.3839],[97.3687,4.4021],[97.3631,4.4139],[97.3622,4.4198],[97.3594,4.4245],[97.3529,4.4307],[97.3487,4.4386],[97.3464,4.449],[97.3439,4.4883],[97.3443,4.5016],[97.3423,4.5099],[97.3388,4.5127],[97.3279,4.5139],[97.3184,4.5105],[97.3123,4.5097],[97.2941,4.5038],[97.2847,4.5058],[97.2767,4.5059],[97.2732,4.5081],[97.2746,4.5178],[97.2806,4.5253],[97.2854,4.5277],[97.2971,4.5291],[97.3063,4.5377],[97.3104,4.5398],[97.3188,4.5412],[97.3223,4.5433],[97.3239,4.5482],[97.3215,4.5542],[97.313,4.6028],[97.3133,4.6018],[97.293,4.599],[97.2829,4.5958],[97.2647,4.585],[97.257,4.5837],[97.2381,4.5874],[97.2257,4.5873],[97.2163,4.5849],[97.2037,4.5781],[97.1943,4.5753],[97.1805,4.5758],[97.1448,4.5793],[97.1094,4.5846],[97.0908,4.5896],[97.0753,4.596],[97.0613,4.5995],[97.0489,4.605],[97.0411,4.61],[97.0329,4.6186],[97.0291,4.6202],[97.0188,4.6178],[96.9952,4.6318],[96.9832,4.6406],[96.9718,4.6438],[96.96,4.6494],[96.9495,4.6526],[96.929,4.6567],[96.913,4.6567],[96.8871,4.6592],[96.8792,4.6611],[96.8695,4.662],[96.8577,4.6658],[96.8402,4.666],[96.8309,4.6704],[96.8248,4.6713],[96.8207,4.6749],[96.8236,4.6793],[96.8181,4.6849],[96.8122,4.6808],[96.8105,4.6748],[96.8046,4.6774],[96.8077,4.6826],[96.805,4.6866],[96.8017,4.6868],[96.7949,4.6971],[96.7951,4.7017],[96.7919,4.7099],[96.7788,4.716],[96.769,4.7141],[96.764,4.7166],[96.7562,4.7144],[96.747,4.7132],[96.7418,4.7171],[96.7383,4.7232],[96.734,4.7234],[96.7299,4.7264],[96.7245,4.7343],[96.7216,4.7363],[96.709,4.7525],[96.7025,4.7449],[96.6979,4.7469],[96.695,4.7516],[96.6837,4.7559],[96.6874,4.7687],[96.6942,4.7722],[96.7013,4.7789],[96.7006,4.7907],[96.7014,4.8027],[96.7059,4.8101],[96.7075,4.8188],[96.706,4.8247],[96.7009,4.827],[96.6933,4.8326],[96.6905,4.8388],[96.692,4.8467],[96.6874,4.8627],[96.6893,4.8743],[96.6883,4.8821],[96.6906,4.8874],[96.691,4.8986],[96.6844,4.9158],[96.6826,4.9259],[96.6774,4.9295],[96.6733,4.9388],[96.6728,4.9446],[96.6753,4.9501],[96.6695,4.9526],[96.6607,4.9519],[96.6575,4.9554]]}},{"type":"Feature","properties":{"mhid":"1332:8","alt_name":"KABUPATEN ACEH BARAT","latitude":4.45,"longitude":96.16667,"sample_value":22},"geometry":{"type":"LineString","coordinates":[[96.4911,4.6228],[96.4861,4.6305],[96.4731,4.63],[96.4677,4.6266],[96.4586,4.6253],[96.4477,4.6253],[96.4412,4.6311],[96.438,4.6395],[96.4241,4.6491],[96.4167,4.6578],[96.4073,4.6704],[96.3948,4.6797],[96.3694,4.6917],[96.3636,4.6875],[96.3543,4.6872],[96.3469,4.6898],[96.3293,4.6896],[96.3184,4.6874],[96.3108,4.688],[96.297,4.6914],[96.2824,4.6923],[96.2791,4.6953],[96.2749,4.7051],[96.2709,4.7082],[96.2623,4.7106],[96.2604,4.7177],[96.2631,4.7263],[96.2647,4.7373],[96.2644,4.7425],[96.268,4.7506],[96.2684,4.768],[96.2705,4.7746],[96.2807,4.779],[96.2754,4.7965],[96.2702,4.7968],[96.2602,4.7916],[96.2549,4.7873],[96.2415,4.7813],[96.2358,4.7775],[96.2259,4.7653],[96.2038,4.7612],[96.1994,4.762],[96.1862,4.7675],[96.1742,4.7666],[96.1681,4.7647],[96.1614,4.7603],[96.1505,4.7552],[96.1431,4.7545],[96.1344,4.7575],[96.1219,4.7674],[96.1171,4.7674],[96.1146,4.7606],[96.1183,4.7479],[96.1169,4.7397],[96.1094,4.7335],[96.1044,4.7261],[96.0998,4.7101],[96.0915,4.6965],[96.0869,4.6903],[96.0749,4.6778],[96.0656,4.671],[96.0495,4.6611],[96.0424,4.6576],[96.0365,4.6477],[96.033,4.6397],[96.0326,4.6321],[96.0291,4.6143],[96.0369,4.6019],[96.0466,4.5972],[96.0501,4.5934],[96.0512,4.585],[96.0469,4.5804],[96.0476,4.5725],[96.0467,4.5665],[96.0373,4.5627],[96.0313,4.5622],[96.0248,4.5598],[96.0115,4.5509],[96.0048,4.5453],[96,4.5389],[95.9945,4.5384],[95.9873,4.5354],[95.9711,4.5233],[95.9608,4.5123],[95.9562,4.5059],[95.945,4.4823],[95.9361,4.4674],[95.9275,4.4442],[95.9232,4.436],[95.9183,4.4313],[95.9166,4.419],[95.9111,4.4065],[95.8954,4.3877],[95.8897,4.3779],[95.8848,4.3753],[95.8769,4.3675],[95.9029,4.3407],[95.917,4.3239],[95.9404,4.2982],[95.9584,4.2757],[95.9768,4.2551],[95.9862,4.2475],[95.9944,4.2389],[96.0026,4.2285],[96.0131,4.2181],[96.0222,4.2053],[96.0222,4.1979],[96.0274,4.195],[96.0331,4.1991],[96.033,4.2022],[96.0373,4.2067],[96.0464,4.2088],[96.0554,4.2052],[96.0691,4.1954],[96.0864,4.1783],[96.1003,4.1613],[96.1143,4.1476],[96.1228,4.1384],[96.1269,4.1305],[96.1332,4.1319],[96.1306,4.1367],[96.1344,4.1407],[96.1424,4.1423],[96.1523,4.1395],[96.1747,4.1216],[96.192,4.1073],[96.2065,4.1158],[96.2142,4.1175],[96.2248,4.117],[96.2466,4.1261],[96.2569,4.1346],[96.2626,4.138],[96.2676,4.146],[96.2734,4.1479],[96.2731,4.1507],[96.2789,4.1553],[96.2764,4.1581],[96.2749,4.1659],[96.2772,4.1686],[96.2746,4.1744],[96.2767,4.1849],[96.2724,4.1966],[96.2769,4.2105],[96.2751,4.2143],[96.2682,4.2173],[96.2665,4.2272],[96.2686,4.2393],[96.2732,4.2474],[96.2807,4.2538],[96.2818,4.265],[96.2861,4.2696],[96.2827,4.2794],[96.282,4.2859],[96.286,4.2893],[96.2895,4.3107],[96.2908,4.3242],[96.2969,4.3505],[96.2972,4.3577],[96.296,4.3683],[96.3016,4.3702],[96.3078,4.3676],[96.3138,4.3682],[96.3197,4.3647],[96.3228,4.3685],[96.3291,4.3671],[96.3357,4.3708],[96.3411,4.3762],[96.341,4.3794],[96.3502,4.3819],[96.358,4.3818],[96.3586,4.3868],[96.3716,4.3928],[96.3708,4.3991],[96.3736,4.4103],[96.3707,4.4128],[96.372,4.4174],[96.3835,4.4201],[96.4102,4.4205],[96.4334,4.4231],[96.4415,4.4258],[96.4533,4.4333],[96.4616,4.4414],[96.4733,4.4531],[96.479,4.4572],[96.4796,4.461],[96.4744,4.4687],[96.4528,4.4896],[96.4478,4.4958],[96.4404,4.51],[96.4444,4.517],[96.4509,4.5224],[96.4587,4.5328],[96.4631,4.5454],[96.4729,4.5488],[96.484,4.5501],[96.4902,4.5525],[96.4933,4.5611],[96.4937,4.5731],[96.4918,4.5876],[96.4916,4.5949],[96.4942,4.5987],[96.4919,4.6204],[96.4911,4.6228]]}},{"type":"Feature","properties":{"mhid":"1332:9","alt_name":"KABUPATEN ACEH BESAR","latitude":5.38333,"longitude":95.51667,"sample_value":227},"geometry":{"type":"LineString","coordinates":[[95.1766,5.5562],[95.177,5.5607],[95.1669,5.5635],[95.1631,5.5583],[95.1535,5.5553],[95.1529,5.5525],[95.1645,5.5496],[95.17,5.5497],[95.1766,5.5562]]}},{"type":"Feature","properties":{"mhid":"1332:9","alt_name":"KABUPATEN ACEH BESAR","latitude":5.38333,"longitude":95.51667,"sample_value":227},"geometry":{"type":"LineString","coordinates":[[95.202,5.583],[95.1943,5.5809],[95.1837,5.5758],[95.1834,5.5737],[95.1982,5.5767],[95.2044,5.5787],[95.202,5.583]]}},{"type":"Feature","properties":{"mhid":"1332:9","alt_name":"KABUPATEN ACEH BESAR","latitude":5.38333,"longitude":95.51667,"sample_value":227},"geometry":{"type":"LineString","coordinates":[[95.0788,5.6441],[95.0752,5.6435],[95.0661,5.6377],[95.0601,5.6387],[95.0523,5.6298],[95.0513,5.6225],[95.0545,5.6211],[95.0606,5.6221],[95.0612,5.6247],[95.0672,5.6269],[95.0757,5.6337],[95.0805,5.6333],[95.0864,5.6406],[95.0788,5.6441]]}},{"type":"Feature","properties":{"mhid":"1332:9","alt_name":"KABUPATEN ACEH BESAR","latitude":5.38333,"longitude":95.51667,"sample_value":227},"geometry":{"type":"LineString","coordinates":[[95.7457,5.569],[95.7386,5.5728],[95.7181,5.5787],[95.7081,5.5787],[95.7023,5.5812],[95.689,5.5835],[95.6803,5.588],[95.6658,5.594],[95.646,5.6051],[95.6315,5.6164],[95.6212,5.6185],[95.6157,5.6232],[95.6163,5.6256],[95.6102,5.628],[95.599,5.6259],[95.5922,5.6229],[95.584,5.6172],[95.5783,5.618],[95.5677,5.6167],[95.5606,5.6143],[95.549,5.6135],[95.5429,5.6154],[95.5393,5.6102],[95.5289,5.6121],[95.5305,5.5997],[95.5222,5.5954],[95.5059,5.5992],[95.4989,5.6031],[95.492,5.6091],[95.4837,5.6194],[95.4739,5.6338],[95.465,5.6448],[95.4555,5.6519],[95.4499,5.6525],[95.4409,5.6562],[95.4306,5.6562],[95.4194,5.6498],[95.4157,5.6497],[95.4037,5.6388],[95.3977,5.6322],[95.3901,5.6216],[95.3855,5.621],[95.3818,5.6179],[95.367,5.6103],[95.3669,5.6087],[95.3622,5.6045],[95.3575,5.6031],[95.3544,5.5958],[95.3557,5.585],[95.3601,5.5852],[95.3688,5.5891],[95.3721,5.5716],[95.3772,5.5678],[95.369,5.5633],[95.3607,5.5731],[95.3576,5.5711],[95.3572,5.5651],[95.353,5.5617],[95.36,5.5522],[95.3606,5.5448],[95.3552,5.5423],[95.3539,5.5353],[95.3478,5.5352],[95.3437,5.5281],[95.3365,5.5288],[95.3302,5.526],[95.3266,5.527],[95.3234,5.5196],[95.3097,5.5159],[95.309,5.5193],[95.3009,5.5215],[95.2961,5.5277],[95.2929,5.5266],[95.2903,5.5311],[95.285,5.5307],[95.2802,5.5376],[95.284,5.5426],[95.2823,5.5493],[95.2776,5.5559],[95.269,5.5512],[95.2621,5.5499],[95.2511,5.5523],[95.2461,5.5558],[95.236,5.5576],[95.2355,5.564],[95.2389,5.5709],[95.2281,5.5756],[95.2264,5.5706],[95.2203,5.5695],[95.217,5.5663],[95.2147,5.5596],[95.2164,5.5578],[95.2096,5.544],[95.2092,5.5407],[95.2028,5.5371],[95.1938,5.5273],[95.1963,5.522],[95.1994,5.5207],[95.2093,5.5084],[95.2096,5.5037],[95.2179,5.4982],[95.2265,5.4987],[95.23,5.4902],[95.2267,5.4853],[95.233,5.4816],[95.236,5.4732],[95.2402,5.4691],[95.2436,5.4595],[95.2442,5.452],[95.2426,5.4456],[95.2393,5.4428],[95.2381,5.4373],[95.2323,5.4332],[95.2336,5.4288],[95.2391,5.4287],[95.2476,5.4141],[95.2508,5.4021],[95.2524,5.3841],[95.252,5.3741],[95.2496,5.3669],[95.2446,5.3656],[95.2405,5.3495],[95.2417,5.3401],[95.236,5.3421],[95.2341,5.3448],[95.2344,5.3548],[95.2277,5.359],[95.2282,5.3515],[95.2258,5.3414],[95.2326,5.3315],[95.2378,5.33],[95.2391,5.3261],[95.2362,5.3189],[95.2304,5.3144],[95.2218,5.3202],[95.2233,5.3128],[95.2173,5.3108],[95.2153,5.3066],[95.217,5.2983],[95.22,5.2907],[95.2184,5.2836],[95.2154,5.2817],[95.2148,5.2758],[95.2197,5.2709],[95.2231,5.2778],[95.2313,5.2849],[95.2393,5.2823],[95.2467,5.2724],[95.2478,5.2659],[95.2396,5.2617],[95.2365,5.2629],[95.2336,5.2556],[95.2398,5.2564],[95.2438,5.2542],[95.2497,5.2475],[95.2526,5.2402],[95.2535,5.2311],[95.2519,5.2266],[95.2473,5.223],[95.2541,5.2213],[95.2608,5.2136],[95.2709,5.1972],[95.2733,5.1996],[95.2834,5.1969],[95.2912,5.1901],[95.3076,5.1684],[95.3068,5.1673],[95.3189,5.1723],[95.3224,5.1777],[95.3305,5.1799],[95.3328,5.1829],[95.3288,5.1863],[95.3342,5.193],[95.3302,5.1979],[95.3303,5.2048],[95.332,5.2086],[95.3271,5.2148],[95.3258,5.2205],[95.3221,5.225],[95.3255,5.2312],[95.3313,5.234],[95.339,5.2334],[95.3479,5.2396],[95.3466,5.2432],[95.3553,5.2473],[95.3652,5.2542],[95.3701,5.2536],[95.3772,5.2469],[95.3781,5.2396],[95.3868,5.2339],[95.387,5.2293],[95.3923,5.2269],[95.391,5.2204],[95.3952,5.2168],[95.3982,5.2183],[95.4016,5.2147],[95.4019,5.2105],[95.4123,5.2163],[95.4175,5.2216],[95.4288,5.2211],[95.4352,5.2239],[95.4391,5.2191],[95.4508,5.2188],[95.4624,5.2126],[95.4705,5.2134],[95.4732,5.2102],[95.4861,5.2115],[95.493,5.2179],[95.5005,5.2201],[95.514,5.2163],[95.5356,5.2161],[95.5442,5.2089],[95.5505,5.2059],[95.5674,5.2071],[95.5734,5.2092],[95.5832,5.2087],[95.59,5.2049],[95.5954,5.1941],[95.5992,5.1915],[95.6101,5.191],[95.6161,5.1886],[95.6212,5.1771],[95.6239,5.1674],[95.628,5.1612],[95.6381,5.1503],[95.6441,5.141],[95.6437,5.1391],[95.6352,5.1313],[95.6307,5.1148],[95.6296,5.1081],[95.6303,5.0917],[95.6353,5.0793],[95.643,5.0705],[95.6508,5.0665],[95.6589,5.0641],[95.6761,5.0606],[95.6882,5.0605],[95.6996,5.0576],[95.7047,5.0529],[95.7102,5.0532],[95.7222,5.0556],[95.7283,5.0537],[95.7365,5.0548],[95.7432,5.0611],[95.7432,5.0612],[95.7544,5.0707],[95.7655,5.0735],[95.7734,5.0715],[95.7875,5.0788],[95.7955,5.0815],[95.7996,5.0795],[95.809,5.0832],[95.8211,5.0853],[95.8228,5.0876],[95.8347,5.1231],[95.8411,5.135],[95.8404,5.1424],[95.8364,5.1514],[95.833,5.1641],[95.829,5.1717],[95.8228,5.1799],[95.8086,5.1948],[95.8059,5.2],[95.7929,5.2123],[95.7876,5.223],[95.7828,5.2446],[95.7758,5.2509],[95.7743,5.2547],[95.7776,5.2582],[95.7843,5.2581],[95.7875,5.2629],[95.7886,5.2706],[95.7915,5.2738],[95.7912,5.2805],[95.7871,5.2829],[95.7724,5.286],[95.7651,5.2895],[95.7593,5.2971],[95.7592,5.3045],[95.7677,5.3061],[95.7665,5.3113],[95.761,5.3148],[95.7518,5.3149],[95.7483,5.318],[95.747,5.3315],[95.7473,5.3376],[95.7519,5.3472],[95.7502,5.3535],[95.7533,5.3581],[95.7593,5.3629],[95.7599,5.3686],[95.7561,5.3801],[95.7579,5.3904],[95.7641,5.3951],[95.7656,5.4021],[95.7643,5.4049],[95.7586,5.4072],[95.7545,5.4113],[95.7532,5.4158],[95.7555,5.4222],[95.7685,5.4296],[95.7745,5.4298],[95.78,5.4352],[95.7816,5.4414],[95.778,5.4455],[95.7813,5.4491],[95.7913,5.4533],[95.7887,5.4581],[95.7807,5.4614],[95.7687,5.4624],[95.7629,5.4654],[95.7567,5.476],[95.7498,5.4799],[95.7442,5.4801],[95.7329,5.4879],[95.725,5.4972],[95.7254,5.4999],[95.733,5.5053],[95.7368,5.5104],[95.7366,5.5157],[95.7254,5.5234],[95.724,5.5323],[95.7269,5.5409],[95.7275,5.5466],[95.7302,5.5516],[95.7423,5.5587],[95.7457,5.569]]}},{"type":"Feature","properties":{"mhid":"1332:9","alt_name":"KABUPATEN ACEH BESAR","latitude":5.38333,"longitude":95.51667,"sample_value":227},"geometry":{"type":"LineString","coordinates":[[95.1481,5.6615],[95.1404,5.6602],[95.1379,5.6581],[95.1439,5.6481],[95.1449,5.6346],[95.1375,5.6293],[95.1251,5.6225],[95.1189,5.6149],[95.1215,5.6072],[95.1275,5.5944],[95.1328,5.5974],[95.1377,5.6066],[95.1439,5.606],[95.1459,5.6025],[95.1444,5.5973],[95.1458,5.5931],[95.1503,5.5953],[95.1557,5.5945],[95.1669,5.6016],[95.1675,5.6057],[95.1766,5.6083],[95.1859,5.6085],[95.1837,5.6172],[95.1791,5.621],[95.1735,5.6222],[95.1705,5.6255],[95.1708,5.631],[95.1635,5.6381],[95.16,5.6385],[95.1573,5.6429],[95.1594,5.6483],[95.157,5.6592],[95.1481,5.6615]]}},{"type":"Feature","properties":{"mhid":"1332:9","alt_name":"KABUPATEN ACEH BESAR","latitude":5.38333,"longitude":95.51667,"sample_value":227},"geometry":{"type":"LineString","coordinates":[[95.059,5.7506],[95.0445,5.7498],[95.0395,5.7474],[95.0373,5.7505],[95.0318,5.7495],[95.0298,5.7422],[95.022,5.738],[95.0167,5.7335],[95.0111,5.7243],[95.0167,5.7187],[95.0232,5.7233],[95.0321,5.726],[95.0335,5.7292],[95.0381,5.7301],[95.0449,5.7367],[95.0475,5.7357],[95.049,5.7279],[95.0471,5.7223],[95.0593,5.72],[95.0607,5.7138],[95.0589,5.712],[95.0472,5.7107],[95.0412,5.7077],[95.0415,5.6967],[95.0493,5.697],[95.0543,5.6916],[95.0592,5.6886],[95.0596,5.6803],[95.049,5.6752],[95.0529,5.6715],[95.0615,5.6707],[95.0663,5.6718],[95.0698,5.6661],[95.0653,5.6582],[95.0586,5.6543],[95.0592,5.6481],[95.0653,5.6518],[95.0777,5.6567],[95.078,5.6634],[95.0801,5.6679],[95.1019,5.6687],[95.1105,5.6671],[95.1179,5.6722],[95.1357,5.6674],[95.1386,5.6641],[95.143,5.6665],[95.1378,5.6741],[95.1327,5.6859],[95.1284,5.6861],[95.1283,5.6902],[95.1189,5.6891],[95.1139,5.6948],[95.108,5.6952],[95.1117,5.7007],[95.1115,5.7044],[95.1082,5.7092],[95.0962,5.7145],[95.0961,5.7174],[95.0914,5.7204],[95.0905,5.7243],[95.0852,5.724],[95.0838,5.7204],[95.0796,5.7201],[95.0731,5.7225],[95.0725,5.7304],[95.0638,5.735],[95.0638,5.7404],[95.0681,5.744],[95.0628,5.7465],[95.059,5.7506]]}},{"type":"Feature","properties":{"mhid":"1332:10","alt_name":"KABUPATEN PIDIE","latitude":5.08,"longitude":96.11,"sample_value":789},"geometry":{"type":"LineString","coordinates":[[96.105,5.2859],[96.1026,5.2879],[96.086,5.2899],[96.0769,5.2939],[96.0683,5.3014],[96.0576,5.3149],[96.0563,5.321],[96.0341,5.3352],[96.0259,5.3419],[96.0038,5.3563],[95.9968,5.362],[95.9799,5.3744],[95.9639,5.3892],[95.9499,5.3971],[95.9382,5.4076],[95.9328,5.4063],[95.9285,5.4106],[95.9284,5.4151],[95.9212,5.4208],[95.9124,5.4303],[95.8964,5.4503],[95.8898,5.4612],[95.8921,5.4856],[95.8886,5.4989],[95.8853,5.5046],[95.8795,5.509],[95.869,5.5147],[95.8521,5.5195],[95.8299,5.5333],[95.8283,5.5355],[95.818,5.5358],[95.7998,5.5422],[95.7934,5.5456],[95.7785,5.5508],[95.7681,5.5589],[95.7514,5.5658],[95.7457,5.569],[95.7423,5.5587],[95.7302,5.5516],[95.7275,5.5466],[95.7269,5.5409],[95.724,5.5323],[95.7254,5.5234],[95.7366,5.5157],[95.7368,5.5104],[95.733,5.5053],[95.7254,5.4999],[95.725,5.4972],[95.7329,5.4879],[95.7442,5.4801],[95.7498,5.4799],[95.7567,5.476],[95.7629,5.4654],[95.7687,5.4624],[95.7807,5.4614],[95.7887,5.4581],[95.7913,5.4533],[95.7813,5.4491],[95.778,5.4455],[95.7816,5.4414],[95.78,5.4352],[95.7745,5.4298],[95.7685,5.4296],[95.7555,5.4222],[95.7532,5.4158],[95.7545,5.4113],[95.7586,5.4072],[95.7643,5.4049],[95.7656,5.4021],[95.7641,5.3951],[95.7579,5.3904],[95.7561,5.3801],[95.7599,5.3686],[95.7593,5.3629],[95.7533,5.3581],[95.7502,5.3535],[95.7519,5.3472],[95.7473,5.3376],[95.747,5.3315],[95.7483,5.318],[95.7518,5.3149],[95.761,5.3148],[95.7665,5.3113],[95.7677,5.3061],[95.7592,5.3045],[95.7593,5.2971],[95.7651,5.2895],[95.7724,5.286],[95.7871,5.2829],[95.7912,5.2805],[95.7915,5.2738],[95.7886,5.2706],[95.7875,5.2629],[95.7843,5.2581],[95.7776,5.2582],[95.7743,5.2547],[95.7758,5.2509],[95.7828,5.2446],[95.7876,5.223],[95.7929,5.2123],[95.8059,5.2],[95.8086,5.1948],[95.8228,5.1799],[95.829,5.1717],[95.833,5.1641],[95.8364,5.1514],[95.8404,5.1424],[95.8411,5.135],[95.8347,5.1231],[95.8228,5.0876],[95.8211,5.0853],[95.809,5.0832],[95.7996,5.0795],[95.7955,5.0815],[95.7875,5.0788],[95.7734,5.0715],[95.7655,5.0735],[95.7544,5.0707],[95.7432,5.0612],[95.7434,5.0611],[95.7588,5.0576],[95.7624,5.0557],[95.7649,5.0432],[95.7674,5.0361],[95.7725,5.0274],[95.7785,5.0223],[95.7833,5.0099],[95.789,5.0052],[95.7964,5.0017],[95.803,4.9884],[95.8228,4.9742],[95.8299,4.9666],[95.8454,4.9539],[95.8517,4.9447],[95.8539,4.9318],[95.8609,4.9252],[95.8699,4.9213],[95.8791,4.9149],[95.8823,4.909],[95.8859,4.8939],[95.8996,4.8691],[95.9041,4.8639],[95.9159,4.8555],[95.9202,4.8502],[95.9253,4.8469],[95.9494,4.8354],[95.9578,4.8288],[95.9602,4.8216],[95.9649,4.8159],[95.9717,4.81],[95.9788,4.7964],[95.9838,4.7934],[95.9912,4.7866],[95.9932,4.7827],[95.9954,4.7675],[95.9948,4.7564],[95.997,4.752],[96.0048,4.7465],[96.0127,4.7316],[96.0281,4.694],[96.0315,4.6836],[96.0324,4.6693],[96.0424,4.6576],[96.0495,4.6611],[96.0656,4.671],[96.0749,4.6778],[96.0869,4.6903],[96.0915,4.6965],[96.0998,4.7101],[96.1044,4.7261],[96.1094,4.7335],[96.1169,4.7397],[96.1183,4.7479],[96.1146,4.7606],[96.1171,4.7674],[96.1219,4.7674],[96.1344,4.7575],[96.1431,4.7545],[96.1505,4.7552],[96.1614,4.7603],[96.1681,4.7647],[96.1742,4.7666],[96.1862,4.7675],[96.1994,4.762],[96.2038,4.7612],[96.2259,4.7653],[96.2358,4.7775],[96.2415,4.7813],[96.2549,4.7873],[96.2602,4.7916],[96.2702,4.7968],[96.2754,4.7965],[96.2807,4.779],[96.2835,4.78],[96.2923,4.7785],[96.2971,4.7756],[96.3071,4.7748],[96.3127,4.78],[96.3208,4.7763],[96.3333,4.7752],[96.3374,4.7789],[96.343,4.7793],[96.3505,4.7757],[96.3547,4.7892],[96.376,4.8422],[96.3973,4.8672],[96.4253,4.8857],[96.4362,4.8999],[96.4496,4.9251],[96.4431,4.931],[96.4318,4.9383],[96.4207,4.9414],[96.4148,4.9408],[96.3975,4.9419],[96.382,4.9335],[96.3759,4.9312],[96.3712,4.9316],[96.3684,4.9376],[96.3633,4.9418],[96.3505,4.9449],[96.3417,4.9441],[96.3427,4.9423],[96.3367,4.9316],[96.3266,4.9184],[96.3239,4.9161],[96.3158,4.9144],[96.3055,4.9163],[96.2957,4.9104],[96.2804,4.9095],[96.2762,4.9099],[96.2612,4.9149],[96.2522,4.9239],[96.2502,4.9335],[96.2473,4.9367],[96.2304,4.9463],[96.2263,4.9476],[96.2159,4.9562],[96.2114,4.9588],[96.208,4.9639],[96.1985,4.9848],[96.1906,4.9942],[96.1895,4.9996],[96.1964,5.0079],[96.2008,5.0153],[96.2043,5.0287],[96.2062,5.0404],[96.2016,5.0495],[96.1956,5.0558],[96.1963,5.0613],[96.1935,5.0641],[96.1932,5.076],[96.1892,5.0759],[96.1837,5.0682],[96.1795,5.0689],[96.1669,5.0684],[96.1539,5.0778],[96.1473,5.0795],[96.1366,5.0746],[96.123,5.0796],[96.1177,5.0831],[96.1127,5.091],[96.1078,5.0917],[96.1026,5.0894],[96.0911,5.0911],[96.085,5.0943],[96.0743,5.1042],[96.07,5.1064],[96.0601,5.107],[96.0494,5.1166],[96.0403,5.1296],[96.0347,5.136],[96.0271,5.1397],[96.0211,5.1454],[96.0264,5.1522],[96.0256,5.158],[96.0303,5.1617],[96.0347,5.1715],[96.0418,5.1714],[96.0516,5.1804],[96.0514,5.1848],[96.0484,5.1891],[96.0522,5.1946],[96.0537,5.201],[96.0527,5.2065],[96.043,5.2301],[96.0403,5.2407],[96.0472,5.245],[96.0525,5.2541],[96.0482,5.2638],[96.0456,5.2669],[96.0481,5.2772],[96.0512,5.2775],[96.0533,5.2856],[96.0508,5.2892],[96.0572,5.2997],[96.0634,5.2978],[96.071,5.2931],[96.075,5.2939],[96.0786,5.2905],[96.094,5.2849],[96.1049,5.2827],[96.105,5.2859]]}},{"type":"Feature","properties":{"mhid":"1332:11","alt_name":"KABUPATEN BIREUEN","latitude":5.08333,"longitude":96.58333,"sample_value":149},"geometry":{"type":"LineString","coordinates":[[96.9061,5.2505],[96.8996,5.2518],[96.8937,5.2494],[96.8821,5.2481],[96.8743,5.2497],[96.8664,5.2544],[96.8647,5.2584],[96.8661,5.2625],[96.8639,5.2673],[96.8585,5.2725],[96.8447,5.2769],[96.8296,5.2759],[96.8102,5.2727],[96.798,5.2686],[96.7903,5.2642],[96.7796,5.2594],[96.7437,5.2512],[96.7382,5.2512],[96.7228,5.247],[96.6826,5.2301],[96.6596,5.22],[96.6365,5.2135],[96.6289,5.2121],[96.6053,5.2105],[96.5906,5.2118],[96.582,5.2107],[96.5689,5.2063],[96.5563,5.2029],[96.5346,5.1993],[96.5191,5.199],[96.5128,5.1996],[96.493,5.2079],[96.4867,5.2124],[96.4824,5.2275],[96.4722,5.2382],[96.4654,5.2352],[96.4451,5.2232],[96.4207,5.2132],[96.4039,5.2089],[96.3955,5.2099],[96.3635,5.2211],[96.3512,5.2257],[96.3473,5.2168],[96.3485,5.2064],[96.3483,5.1917],[96.3446,5.178],[96.3444,5.1633],[96.3476,5.1529],[96.3476,5.1437],[96.3558,5.1244],[96.3588,5.1099],[96.3586,5.0884],[96.3564,5.0757],[96.3664,5.0594],[96.3668,5.0511],[96.3693,5.0449],[96.368,5.0384],[96.3622,5.0235],[96.353,5.0126],[96.3529,5.0012],[96.3481,4.9863],[96.3384,4.9706],[96.3254,4.9624],[96.327,4.9579],[96.3327,4.9493],[96.3417,4.9441],[96.3505,4.9449],[96.3633,4.9418],[96.3684,4.9376],[96.3712,4.9316],[96.3759,4.9312],[96.382,4.9335],[96.3975,4.9419],[96.4148,4.9408],[96.4207,4.9414],[96.4318,4.9383],[96.4431,4.931],[96.4496,4.9251],[96.4594,4.9164],[96.4631,4.9106],[96.4668,4.8948],[96.4756,4.8921],[96.4923,4.8919],[96.4966,4.8901],[96.506,4.8954],[96.5093,4.9017],[96.5128,4.9029],[96.5188,4.9121],[96.5215,4.9183],[96.5361,4.9351],[96.5546,4.9425],[96.5651,4.9449],[96.5806,4.9496],[96.5858,4.9498],[96.5888,4.9523],[96.5999,4.9542],[96.624,4.9535],[96.6384,4.9561],[96.6499,4.9568],[96.6575,4.9554],[96.6584,4.9642],[96.6627,4.9743],[96.6847,4.9712],[96.7078,4.9697],[96.7197,4.9709],[96.7447,4.9667],[96.75,4.9631],[96.7641,4.9577],[96.7786,4.9471],[96.7813,4.9435],[96.786,4.9421],[96.7994,4.9564],[96.8084,4.9691],[96.8146,4.9825],[96.8166,4.9895],[96.8189,5.0049],[96.8177,5.0093],[96.8178,5.0251],[96.8186,5.0384],[96.8239,5.0495],[96.8275,5.0541],[96.8259,5.0614],[96.8218,5.0697],[96.8368,5.0803],[96.8416,5.0819],[96.8595,5.0951],[96.8675,5.1057],[96.8756,5.1249],[96.8788,5.1343],[96.8839,5.1404],[96.8911,5.1524],[96.8898,5.1623],[96.8823,5.1707],[96.8814,5.1924],[96.8888,5.1919],[96.899,5.1934],[96.8995,5.1817],[96.9074,5.19],[96.904,5.1935],[96.9064,5.2005],[96.9136,5.1997],[96.9148,5.2067],[96.9193,5.2096],[96.9146,5.2124],[96.9111,5.2305],[96.906,5.2369],[96.9093,5.2457],[96.9061,5.2505]]}},{"type":"Feature","properties":{"mhid":"1332:12","alt_name":"KABUPATEN ACEH UTARA","latitude":4.97,"longitude":97.14,"sample_value":500},"geometry":{"type":"LineString","coordinates":[[97.0456,5.2408],[97.0383,5.2379],[97.0288,5.2444],[97.0331,5.2502],[97.0115,5.2555],[96.9931,5.2606],[96.9755,5.2626],[96.9592,5.2614],[96.9462,5.2588],[96.9213,5.2521],[96.9061,5.2505],[96.9093,5.2457],[96.906,5.2369],[96.9111,5.2305],[96.9146,5.2124],[96.9193,5.2096],[96.9148,5.2067],[96.9136,5.1997],[96.9064,5.2005],[96.904,5.1935],[96.9074,5.19],[96.8995,5.1817],[96.899,5.1934],[96.8888,5.1919],[96.8814,5.1924],[96.8823,5.1707],[96.8898,5.1623],[96.8911,5.1524],[96.8839,5.1404],[96.8788,5.1343],[96.8756,5.1249],[96.8675,5.1057],[96.8595,5.0951],[96.8416,5.0819],[96.8368,5.0803],[96.8218,5.0697],[96.8259,5.0614],[96.8275,5.0541],[96.8239,5.0495],[96.8186,5.0384],[96.8178,5.0251],[96.8177,5.0093],[96.8189,5.0049],[96.8166,4.9895],[96.8146,4.9825],[96.8084,4.9691],[96.7994,4.9564],[96.786,4.9421],[96.801,4.9346],[96.8047,4.9312],[96.8069,4.924],[96.8193,4.9137],[96.8264,4.9104],[96.8345,4.901],[96.8441,4.8879],[96.8545,4.8803],[96.8689,4.8759],[96.8793,4.8741],[96.8932,4.8759],[96.9115,4.8758],[96.9444,4.8649],[96.9577,4.8626],[96.9803,4.8622],[96.996,4.8646],[97.0031,4.8718],[97.0055,4.8809],[97.0091,4.8889],[97.0097,4.9015],[97.0122,4.9077],[97.0197,4.9134],[97.0259,4.9147],[97.0452,4.9083],[97.0483,4.9082],[97.0556,4.9124],[97.0714,4.9101],[97.0813,4.9107],[97.0869,4.9056],[97.0922,4.9072],[97.1032,4.9022],[97.107,4.9049],[97.1123,4.904],[97.1161,4.9097],[97.1208,4.9117],[97.1312,4.9132],[97.1437,4.9128],[97.1548,4.9082],[97.1701,4.8996],[97.1809,4.8959],[97.2284,4.8813],[97.232,4.8817],[97.2403,4.8748],[97.2479,4.8733],[97.2578,4.8675],[97.2685,4.8509],[97.2717,4.8346],[97.2803,4.8267],[97.2819,4.8202],[97.2811,4.8154],[97.2761,4.8042],[97.2733,4.7955],[97.2689,4.7883],[97.2574,4.7749],[97.2543,4.7676],[97.2534,4.7596],[97.2472,4.7602],[97.2479,4.7547],[97.2529,4.7481],[97.2527,4.7435],[97.258,4.7399],[97.2514,4.7351],[97.259,4.7246],[97.2612,4.73],[97.2665,4.7303],[97.2721,4.7265],[97.2752,4.7311],[97.2702,4.7334],[97.2729,4.7371],[97.2805,4.7332],[97.3145,4.7339],[97.3191,4.741],[97.3236,4.7441],[97.327,4.7588],[97.3364,4.7668],[97.3353,4.7717],[97.338,4.7781],[97.3505,4.7781],[97.3557,4.7765],[97.3622,4.7835],[97.366,4.7783],[97.3608,4.7691],[97.3654,4.7667],[97.3719,4.7682],[97.387,4.7687],[97.388,4.7601],[97.3992,4.7596],[97.402,4.7563],[97.4071,4.7559],[97.4111,4.7594],[97.417,4.7587],[97.4224,4.755],[97.4247,4.7563],[97.4224,4.7647],[97.4147,4.7685],[97.4105,4.7627],[97.4032,4.7633],[97.3999,4.7668],[97.4035,4.7895],[97.4076,4.7958],[97.4123,4.796],[97.4161,4.7935],[97.418,4.7872],[97.4104,4.7872],[97.4071,4.784],[97.4125,4.7799],[97.4205,4.782],[97.4268,4.7858],[97.4324,4.7857],[97.4365,4.7886],[97.436,4.7954],[97.4331,4.7975],[97.4284,4.8058],[97.4353,4.8083],[97.4378,4.8119],[97.4354,4.8186],[97.4368,4.8217],[97.4514,4.8187],[97.4555,4.8192],[97.4564,4.8229],[97.4489,4.8283],[97.442,4.8285],[97.4447,4.8337],[97.4523,4.8355],[97.4556,4.8393],[97.4579,4.8452],[97.4618,4.8412],[97.4726,4.8431],[97.4769,4.8387],[97.4854,4.8472],[97.4896,4.8565],[97.4879,4.8649],[97.4894,4.8674],[97.4946,4.8671],[97.5005,4.8704],[97.5021,4.8755],[97.5062,4.8769],[97.5112,4.8817],[97.5064,4.8852],[97.5033,4.8794],[97.498,4.8747],[97.4953,4.8799],[97.5017,4.8879],[97.5021,4.8925],[97.494,4.886],[97.4928,4.8885],[97.4987,4.8948],[97.4988,4.8984],[97.4919,4.9011],[97.4851,4.9112],[97.4797,4.9112],[97.4771,4.9146],[97.4794,4.9184],[97.4734,4.9234],[97.4677,4.9312],[97.4725,4.9382],[97.4806,4.9421],[97.4839,4.9451],[97.4881,4.9418],[97.4929,4.9478],[97.4971,4.9476],[97.4987,4.9544],[97.5034,4.9573],[97.5028,4.9609],[97.4954,4.9572],[97.4901,4.9599],[97.4942,4.9677],[97.4983,4.9641],[97.5018,4.9677],[97.4994,4.9703],[97.4993,4.9767],[97.4939,4.9759],[97.4932,4.9813],[97.4978,4.983],[97.4966,4.9889],[97.5033,4.9925],[97.5078,4.9956],[97.5024,5.0002],[97.5054,5.0053],[97.5049,5.0104],[97.5011,5.0128],[97.4973,5.0107],[97.4935,5.0124],[97.4955,5.0164],[97.5011,5.0164],[97.5067,5.0235],[97.508,5.0296],[97.5135,5.0292],[97.5144,5.0323],[97.5104,5.038],[97.509,5.0434],[97.5012,5.0377],[97.5002,5.0433],[97.5053,5.0457],[97.5037,5.0487],[97.498,5.0511],[97.5056,5.0549],[97.512,5.0502],[97.5116,5.0565],[97.5073,5.0592],[97.5099,5.0654],[97.5154,5.0657],[97.5148,5.0693],[97.4989,5.0705],[97.5016,5.0773],[97.4951,5.0777],[97.4974,5.0817],[97.4954,5.0862],[97.4906,5.0861],[97.4864,5.0779],[97.4834,5.0793],[97.4798,5.087],[97.4759,5.0893],[97.4745,5.0949],[97.4693,5.0986],[97.4731,5.1018],[97.4718,5.1047],[97.4663,5.1059],[97.4599,5.1125],[97.4648,5.1187],[97.4684,5.1169],[97.4699,5.124],[97.4772,5.1244],[97.4776,5.1295],[97.4683,5.1334],[97.4701,5.1399],[97.4675,5.1454],[97.4696,5.1508],[97.4661,5.1526],[97.473,5.152],[97.4799,5.1501],[97.4908,5.1572],[97.4982,5.1588],[97.4969,5.1628],[97.5003,5.1693],[97.4864,5.1802],[97.4884,5.1882],[97.4948,5.1859],[97.5006,5.1913],[97.4969,5.2027],[97.4909,5.202],[97.4926,5.2111],[97.4991,5.2146],[97.4927,5.2195],[97.4886,5.2244],[97.4883,5.2311],[97.4838,5.24],[97.4838,5.2437],[97.4769,5.2419],[97.4538,5.2323],[97.4443,5.2288],[97.4035,5.2152],[97.3858,5.2082],[97.3662,5.1995],[97.3574,5.1962],[97.3263,5.187],[97.3232,5.1898],[97.315,5.1869],[97.2914,5.1735],[97.2816,5.1692],[97.2764,5.169],[97.2699,5.1661],[97.2673,5.1693],[97.2632,5.1678],[97.2506,5.1588],[97.2423,5.1541],[97.2252,5.1513],[97.21,5.1443],[97.2021,5.1424],[97.1898,5.1414],[97.1771,5.1413],[97.1767,5.1212],[97.1786,5.1198],[97.1743,5.105],[97.1772,5.0987],[97.1768,5.092],[97.1794,5.0837],[97.1751,5.0827],[97.1563,5.0837],[97.146,5.09],[97.1355,5.0917],[97.1301,5.0907],[97.1288,5.0954],[97.1175,5.1041],[97.1104,5.1046],[97.1016,5.1096],[97.1012,5.1144],[97.1079,5.1256],[97.0943,5.1402],[97.0856,5.1477],[97.0805,5.157],[97.0713,5.1572],[97.0663,5.1587],[97.0568,5.1706],[97.0609,5.1773],[97.0546,5.1859],[97.0527,5.193],[97.0454,5.1985],[97.0297,5.1973],[97.028,5.1993],[97.0311,5.2047],[97.0262,5.2079],[97.0273,5.2105],[97.0368,5.2133],[97.035,5.2205],[97.0372,5.2227],[97.0366,5.2279],[97.0456,5.2408]]}},{"type":"Feature","properties":{"mhid":"1332:13","alt_name":"KABUPATEN ACEH BARAT DAYA","latitude":3.83333,"longitude":96.88333,"sample_value":685},"geometry":{"type":"LineString","coordinates":[[96.6237,3.739],[96.6361,3.7441],[96.6538,3.7462],[96.6689,3.7473],[96.6795,3.7465],[96.6867,3.7444],[96.6978,3.7431],[96.7084,3.7445],[96.718,3.747],[96.7244,3.7471],[96.7375,3.7435],[96.744,3.7441],[96.7518,3.7399],[96.7708,3.7394],[96.7779,3.7375],[96.788,3.7299],[96.7935,3.7245],[96.7979,3.7239],[96.805,3.7258],[96.8104,3.7227],[96.8119,3.7172],[96.8191,3.7164],[96.8266,3.7127],[96.8345,3.707],[96.8439,3.705],[96.8566,3.6996],[96.8656,3.6931],[96.8793,3.6775],[96.8903,3.655],[96.896,3.6382],[96.8967,3.6238],[96.8951,3.6203],[96.9049,3.601],[96.9105,3.5976],[96.9142,3.5935],[96.9343,3.5782],[96.942,3.5746],[96.9445,3.583],[96.95,3.5929],[96.959,3.6038],[96.9606,3.6093],[96.9648,3.6149],[96.968,3.6163],[96.9702,3.623],[96.9832,3.6213],[96.9905,3.6219],[96.9969,3.6198],[97.0007,3.6158],[97.0137,3.6092],[97.0202,3.6076],[97.0258,3.6044],[97.0305,3.6038],[97.0358,3.6073],[97.0414,3.616],[97.044,3.6223],[97.0496,3.6227],[97.0568,3.6258],[97.0639,3.6311],[97.0829,3.6498],[97.0906,3.6584],[97.1073,3.6741],[97.1146,3.6802],[97.1283,3.6874],[97.1336,3.6922],[97.1352,3.696],[97.1381,3.7178],[97.142,3.7341],[97.151,3.7396],[97.1536,3.7456],[97.145,3.763],[97.1396,3.7768],[97.1312,3.7945],[97.1193,3.8144],[97.114,3.8248],[97.1067,3.8412],[97.1053,3.8472],[97.1068,3.8571],[97.1135,3.8642],[97.1092,3.8752],[97.1079,3.8922],[97.1157,3.9116],[97.1175,3.919],[97.117,3.9286],[97.1082,3.9411],[97.0984,3.9489],[97.0832,3.9508],[97.0746,3.9536],[97.0668,3.959],[97.0428,3.961],[97.0222,3.96],[97.0143,3.9587],[97.0017,3.9526],[96.9939,3.9467],[96.9828,3.9425],[96.9578,3.9454],[96.9384,3.9462],[96.909,3.9481],[96.8826,3.9509],[96.8594,3.9546],[96.836,3.9594],[96.8259,3.9672],[96.8091,3.9831],[96.8047,3.9902],[96.803,3.9976],[96.803,4.0165],[96.802,4.0268],[96.7965,4.0416],[96.7916,4.0511],[96.7828,4.0606],[96.7668,4.0732],[96.756,4.0833],[96.7473,4.0886],[96.7471,4.0943],[96.7403,4.0916],[96.734,4.096],[96.7248,4.0969],[96.7244,4.0944],[96.7252,4.0817],[96.7292,4.0715],[96.7303,4.0506],[96.73,4.0415],[96.7259,4.0335],[96.7172,4.0257],[96.7171,4.0216],[96.7202,4.0153],[96.7161,4.0093],[96.7101,4.0063],[96.7022,3.9968],[96.6993,3.9904],[96.6962,3.9884],[96.6896,3.991],[96.6841,3.9903],[96.6847,3.9854],[96.6767,3.9866],[96.673,3.9834],[96.6659,3.9813],[96.6623,3.9781],[96.6512,3.972],[96.646,3.9717],[96.6456,3.9681],[96.6412,3.9675],[96.635,3.9603],[96.6292,3.9585],[96.6256,3.9476],[96.6189,3.9395],[96.6214,3.9352],[96.6151,3.9292],[96.6177,3.9227],[96.6131,3.9128],[96.6044,3.9154],[96.6012,3.9118],[96.6001,3.9027],[96.5938,3.8899],[96.5959,3.8848],[96.5926,3.8775],[96.5924,3.8685],[96.5887,3.8626],[96.5879,3.8566],[96.5839,3.8488],[96.5811,3.8459],[96.5829,3.8385],[96.5901,3.8327],[96.5988,3.8278],[96.6052,3.8203],[96.6098,3.8132],[96.6096,3.8084],[96.6166,3.7956],[96.6171,3.7911],[96.6065,3.7816],[96.6055,3.7769],[96.6098,3.7711],[96.6161,3.7656],[96.6176,3.7571],[96.6147,3.7522],[96.619,3.747],[96.6168,3.7363],[96.6237,3.739]]}},{"type":"Feature","properties":{"mhid":"1332:14","alt_name":"KABUPATEN GAYO LUES","latitude":3.95,"longitude":97.39,"sample_value":527},"geometry":{"type":"LineString","coordinates":[[97.3568,4.2091],[97.3565,4.21],[97.3358,4.1973],[97.3173,4.1889],[97.2936,4.1827],[97.2868,4.1801],[97.2795,4.1737],[97.2731,4.1705],[97.2649,4.1683],[97.2583,4.1681],[97.2516,4.17],[97.2466,4.1757],[97.2422,4.1894],[97.238,4.1941],[97.2306,4.206],[97.2249,4.2126],[97.223,4.2173],[97.2225,4.225],[97.2172,4.2355],[97.2077,4.2438],[97.2021,4.2502],[97.1918,4.2586],[97.181,4.2606],[97.1772,4.2627],[97.1703,4.272],[97.1615,4.2808],[97.1553,4.2757],[97.1493,4.2689],[97.1395,4.2639],[97.1283,4.2554],[97.1237,4.2534],[97.11,4.2499],[97.1034,4.2463],[97.0925,4.2386],[97.0724,4.2231],[97.0671,4.2199],[97.0524,4.218],[97.0263,4.2092],[97.0134,4.2054],[97.0033,4.1979],[96.9977,4.1987],[96.992,4.1972],[96.9902,4.19],[96.9861,4.1903],[96.9776,4.1873],[96.9632,4.1861],[96.9505,4.1866],[96.9421,4.1908],[96.9391,4.1947],[96.9275,4.197],[96.9222,4.1992],[96.9172,4.206],[96.9098,4.2134],[96.8935,4.2183],[96.887,4.2212],[96.8814,4.231],[96.8799,4.2357],[96.8765,4.2392],[96.8643,4.2435],[96.8575,4.249],[96.8495,4.259],[96.8431,4.2694],[96.829,4.2819],[96.8206,4.2854],[96.8,4.2842],[96.7933,4.2855],[96.7966,4.273],[96.7976,4.2623],[96.7971,4.2523],[96.7952,4.2413],[96.8008,4.2349],[96.8029,4.2268],[96.8005,4.2205],[96.7909,4.2085],[96.786,4.2009],[96.7773,4.1928],[96.7627,4.1825],[96.7539,4.1744],[96.746,4.1607],[96.7346,4.1344],[96.7303,4.1152],[96.7253,4.0994],[96.7248,4.0969],[96.734,4.096],[96.7403,4.0916],[96.7471,4.0943],[96.7473,4.0886],[96.756,4.0833],[96.7668,4.0732],[96.7828,4.0606],[96.7916,4.0511],[96.7965,4.0416],[96.802,4.0268],[96.803,4.0165],[96.803,3.9976],[96.8047,3.9902],[96.8091,3.9831],[96.8259,3.9672],[96.836,3.9594],[96.8594,3.9546],[96.8826,3.9509],[96.909,3.9481],[96.9384,3.9462],[96.9578,3.9454],[96.9828,3.9425],[96.9939,3.9467],[97.0017,3.9526],[97.0143,3.9587],[97.0222,3.96],[97.0428,3.961],[97.0668,3.959],[97.0746,3.9536],[97.0832,3.9508],[97.0984,3.9489],[97.1082,3.9411],[97.117,3.9286],[97.1175,3.919],[97.1157,3.9116],[97.1079,3.8922],[97.1092,3.8752],[97.1135,3.8642],[97.1068,3.8571],[97.1053,3.8472],[97.1067,3.8412],[97.114,3.8248],[97.1193,3.8144],[97.1312,3.7945],[97.1396,3.7768],[97.145,3.763],[97.1536,3.7456],[97.1613,3.7389],[97.1734,3.7301],[97.184,3.7199],[97.1918,3.7113],[97.2062,3.6939],[97.2325,3.6951],[97.2525,3.6956],[97.2584,3.6938],[97.2628,3.6863],[97.2664,3.6844],[97.2849,3.6823],[97.3048,3.6768],[97.3159,3.6769],[97.3213,3.6781],[97.3908,3.6875],[97.4166,3.6919],[97.4603,3.6977],[97.4773,3.7017],[97.4938,3.7029],[97.4979,3.7007],[97.5115,3.7001],[97.5284,3.706],[97.5349,3.7067],[97.5397,3.7102],[97.5496,3.7142],[97.5561,3.7107],[97.5722,3.7136],[97.6017,3.718],[97.6217,3.7217],[97.6295,3.7299],[97.6353,3.7333],[97.6423,3.7317],[97.6535,3.7317],[97.6816,3.7333],[97.6863,3.7341],[97.7089,3.7356],[97.7348,3.7399],[97.7489,3.7443],[97.7812,3.7492],[97.8093,3.7485],[97.8246,3.7495],[97.837,3.763],[97.8399,3.7678],[97.8489,3.7743],[97.8562,3.7753],[97.861,3.7843],[97.8728,3.7894],[97.8752,3.7927],[97.8824,3.7963],[97.8852,3.8007],[97.8963,3.8079],[97.9021,3.8182],[97.9093,3.8188],[97.9097,3.8244],[97.9156,3.8325],[97.9156,3.8364],[97.9215,3.8435],[97.9147,3.8532],[97.9152,3.8606],[97.9089,3.8685],[97.9094,3.8786],[97.9157,3.8852],[97.9124,3.8855],[97.9106,3.8924],[97.9121,3.8993],[97.9085,3.9021],[97.9096,3.9063],[97.9068,3.9114],[97.9085,3.9142],[97.905,3.9225],[97.9033,3.9296],[97.8999,3.9358],[97.8965,3.9347],[97.8822,3.9366],[97.8753,3.9331],[97.8693,3.9276],[97.8682,3.9246],[97.8611,3.9225],[97.8495,3.9339],[97.8435,3.9437],[97.8391,3.9529],[97.8307,3.9663],[97.824,3.9727],[97.8234,3.9829],[97.8198,3.9884],[97.8149,3.9912],[97.8063,3.9999],[97.7988,4.0087],[97.7928,4.0188],[97.7901,4.0254],[97.7946,4.0297],[97.7927,4.0406],[97.7929,4.0466],[97.7953,4.0502],[97.7949,4.0562],[97.7925,4.0615],[97.7935,4.0666],[97.7883,4.0838],[97.7826,4.095],[97.7778,4.1084],[97.7673,4.1152],[97.7621,4.1204],[97.7509,4.1286],[97.7381,4.137],[97.7295,4.1454],[97.7279,4.1502],[97.7283,4.1555],[97.7257,4.1574],[97.723,4.1667],[97.7206,4.1692],[97.7218,4.1751],[97.7186,4.1793],[97.7185,4.1861],[97.716,4.1955],[97.7167,4.2125],[97.7181,4.2265],[97.7208,4.2344],[97.7242,4.2361],[97.7179,4.2472],[97.7038,4.2464],[97.6849,4.2467],[97.6808,4.2409],[97.6692,4.2423],[97.669,4.2422],[97.6593,4.2317],[97.6571,4.2285],[97.6489,4.2233],[97.6443,4.2196],[97.6419,4.2224],[97.6327,4.2278],[97.6288,4.2287],[97.6227,4.2438],[97.6199,4.2469],[97.6064,4.2539],[97.6018,4.2537],[97.5945,4.2499],[97.5926,4.2396],[97.5828,4.2237],[97.5823,4.2191],[97.5761,4.21],[97.5769,4.2065],[97.5739,4.2015],[97.5758,4.1968],[97.5734,4.186],[97.5693,4.1873],[97.5612,4.1844],[97.5581,4.1875],[97.5474,4.1928],[97.5349,4.1942],[97.5308,4.1935],[97.5216,4.1881],[97.5152,4.1863],[97.5117,4.1756],[97.5054,4.1664],[97.504,4.1574],[97.5002,4.1559],[97.4748,4.1579],[97.4657,4.1591],[97.4549,4.1622],[97.4392,4.1698],[97.4192,4.1766],[97.4085,4.1822],[97.4037,4.181],[97.396,4.1877],[97.3848,4.194],[97.3757,4.2002],[97.3688,4.2034],[97.3603,4.2043],[97.3577,4.2076],[97.3568,4.2091]]}},{"type":"Feature","properties":{"mhid":"1332:15","alt_name":"KABUPATEN ACEH TAMIANG","latitude":4.25,"longitude":97.96667,"sample_value":385},"geometry":{"type":"LineString","coordinates":[[98.2511,4.2904],[98.2544,4.2894],[98.259,4.2965],[98.2665,4.3125],[98.2678,4.3171],[98.272,4.3236],[98.2785,4.3278],[98.2793,4.3322],[98.278,4.3409],[98.2785,4.3471],[98.283,4.3486],[98.282,4.3639],[98.2792,4.3694],[98.2771,4.3893],[98.2756,4.3957],[98.2807,4.3977],[98.2862,4.3962],[98.2873,4.3994],[98.285,4.4185],[98.2745,4.4263],[98.2649,4.4316],[98.2512,4.4454],[98.2475,4.4425],[98.2404,4.4398],[98.2345,4.4428],[98.2311,4.448],[98.2349,4.4531],[98.2374,4.4602],[98.2269,4.4646],[98.2241,4.4683],[98.2099,4.4775],[98.1995,4.4814],[98.1861,4.4779],[98.187,4.4845],[98.1791,4.4896],[98.1786,4.4951],[98.1707,4.5023],[98.1537,4.5105],[98.1444,4.5117],[98.137,4.516],[98.1208,4.523],[98.1146,4.5233],[98.1102,4.5214],[98.0946,4.5232],[98.0933,4.521],[98.0845,4.5236],[98.0825,4.5127],[98.0787,4.5125],[98.0671,4.5122],[98.0622,4.5099],[98.0614,4.5054],[98.0664,4.496],[98.0657,4.4902],[98.0625,4.4867],[98.0637,4.4834],[98.0616,4.4784],[98.0577,4.4807],[98.0479,4.4825],[98.0369,4.4796],[98.0365,4.4719],[98.0395,4.4672],[98.0457,4.4704],[98.0467,4.4652],[98.0454,4.4519],[98.0438,4.4483],[98.0363,4.4393],[98.0396,4.4361],[98.0405,4.4259],[98.0378,4.4232],[98.0286,4.4192],[98.0313,4.4141],[98.026,4.4118],[98.0242,4.4158],[98.0174,4.4153],[98.013,4.4108],[98.0021,4.4025],[97.9871,4.3946],[97.98,4.3926],[97.967,4.3964],[97.9539,4.3915],[97.9506,4.3882],[97.9465,4.3875],[97.9384,4.3719],[97.9259,4.3591],[97.9226,4.3511],[97.9185,4.3502],[97.89,4.3482],[97.8834,4.3465],[97.8723,4.3462],[97.8662,4.3447],[97.8554,4.3461],[97.8343,4.3461],[97.82,4.3454],[97.8089,4.3464],[97.8056,4.3456],[97.8,4.3482],[97.796,4.3444],[97.7885,4.3498],[97.7834,4.3505],[97.7715,4.3403],[97.7661,4.3412],[97.7632,4.3389],[97.7602,4.3303],[97.7609,4.3165],[97.7559,4.3129],[97.7492,4.3054],[97.745,4.3043],[97.7402,4.2979],[97.7346,4.2871],[97.7318,4.2861],[97.7316,4.2777],[97.7263,4.2742],[97.7191,4.2573],[97.7179,4.2472],[97.7242,4.2361],[97.7208,4.2344],[97.7181,4.2265],[97.7167,4.2125],[97.716,4.1955],[97.7185,4.1861],[97.7186,4.1793],[97.7218,4.1751],[97.7206,4.1692],[97.723,4.1667],[97.7257,4.1574],[97.7283,4.1555],[97.7279,4.1502],[97.7295,4.1454],[97.7381,4.137],[97.7509,4.1286],[97.7621,4.1204],[97.7673,4.1152],[97.7778,4.1084],[97.7826,4.095],[97.7883,4.0838],[97.7935,4.0666],[97.7925,4.0615],[97.7949,4.0562],[97.7953,4.0502],[97.7929,4.0466],[97.7927,4.0406],[97.7946,4.0297],[97.7901,4.0254],[97.7928,4.0188],[97.7988,4.0087],[97.8063,3.9999],[97.8149,3.9912],[97.8198,3.9884],[97.8234,3.9829],[97.824,3.9727],[97.8307,3.9663],[97.8391,3.9529],[97.8435,3.9437],[97.8495,3.9339],[97.8611,3.9225],[97.8682,3.9246],[97.8693,3.9276],[97.8753,3.9331],[97.8822,3.9366],[97.8965,3.9347],[97.8999,3.9358],[97.9033,3.9296],[97.905,3.9225],[97.9085,3.9142],[97.9068,3.9114],[97.9096,3.9063],[97.9085,3.9021],[97.9121,3.8993],[97.9106,3.8924],[97.9124,3.8855],[97.9157,3.8852],[97.9245,3.8863],[97.9318,3.8841],[97.9365,3.889],[97.9359,3.8949],[97.9453,3.8957],[97.9495,3.8897],[97.952,3.8897],[97.9539,3.8966],[97.9573,3.902],[97.9548,3.9127],[97.9563,3.9201],[97.9553,3.9243],[97.9576,3.9289],[97.9703,3.9371],[97.9781,3.9392],[97.9801,3.9412],[97.99,3.9418],[97.9953,3.9451],[98.0028,3.959],[98.0039,3.9639],[98.016,3.9637],[98.0158,3.9689],[98.0226,3.9669],[98.0244,3.9766],[98.0296,3.9806],[98.0314,3.9859],[98.0293,3.9932],[98.031,4.002],[98.0258,4.0138],[98.0275,4.0195],[98.0323,4.0223],[98.0403,4.0211],[98.0462,4.024],[98.0458,4.0279],[98.0407,4.035],[98.0371,4.0451],[98.0384,4.0496],[98.0338,4.0572],[98.0375,4.0605],[98.0397,4.0683],[98.0448,4.0736],[98.0459,4.0844],[98.0455,4.097],[98.0472,4.1067],[98.0463,4.1126],[98.0474,4.1207],[98.0499,4.1266],[98.0565,4.1356],[98.0643,4.1377],[98.0719,4.1427],[98.0697,4.1501],[98.0686,4.1592],[98.0697,4.1715],[98.0676,4.1767],[98.0634,4.1796],[98.0614,4.1889],[98.071,4.1888],[98.0752,4.1899],[98.0781,4.1938],[98.0855,4.1933],[98.089,4.1976],[98.0894,4.2033],[98.0928,4.2071],[98.09,4.2129],[98.0905,4.2194],[98.0892,4.2265],[98.0774,4.2285],[98.074,4.2311],[98.0677,4.2459],[98.0704,4.2501],[98.0769,4.2532],[98.0793,4.2593],[98.0832,4.2573],[98.0888,4.2586],[98.094,4.2573],[98.1086,4.2518],[98.1157,4.2535],[98.1198,4.2583],[98.1223,4.2561],[98.1307,4.257],[98.1374,4.2598],[98.1419,4.2593],[98.1482,4.2628],[98.1495,4.2663],[98.1554,4.2701],[98.1569,4.2766],[98.1541,4.2873],[98.1622,4.2858],[98.1653,4.2885],[98.1787,4.2902],[98.1884,4.2939],[98.1933,4.2994],[98.1976,4.2948],[98.199,4.3009],[98.2047,4.2972],[98.2124,4.2985],[98.2111,4.2932],[98.2144,4.2871],[98.2196,4.2906],[98.2221,4.2878],[98.2288,4.2923],[98.2307,4.2846],[98.2384,4.2834],[98.2393,4.2896],[98.245,4.2944],[98.2511,4.2904]]}},{"type":"Feature","properties":{"mhid":"1332:16","alt_name":"KABUPATEN NAGAN RAYA","latitude":4.16667,"longitude":96.51667,"sample_value":590},"geometry":{"type":"LineString","coordinates":[[96.8206,4.2854],[96.8194,4.2876],[96.7917,4.3047],[96.7854,4.313],[96.784,4.3179],[96.7781,4.327],[96.765,4.333],[96.749,4.342],[96.7171,4.353],[96.7012,4.3566],[96.6782,4.3639],[96.6475,4.3774],[96.6422,4.3815],[96.6408,4.3858],[96.6348,4.3908],[96.6353,4.3946],[96.6319,4.3987],[96.6237,4.4036],[96.618,4.4039],[96.6177,4.4003],[96.6098,4.4046],[96.6087,4.4094],[96.604,4.4089],[96.6013,4.4131],[96.5966,4.4162],[96.5883,4.4158],[96.5839,4.4198],[96.5853,4.424],[96.5898,4.4267],[96.591,4.4345],[96.5972,4.4372],[96.5947,4.4401],[96.5989,4.4475],[96.5981,4.4518],[96.6044,4.4773],[96.6031,4.4857],[96.5999,4.4942],[96.593,4.502],[96.5906,4.5154],[96.5883,4.5191],[96.5892,4.5263],[96.5889,4.5365],[96.5897,4.5517],[96.5815,4.573],[96.5704,4.5816],[96.5593,4.5922],[96.5438,4.6008],[96.5269,4.6036],[96.4914,4.6226],[96.4919,4.6204],[96.4942,4.5987],[96.4916,4.5949],[96.4918,4.5876],[96.4937,4.5731],[96.4933,4.5611],[96.4902,4.5525],[96.484,4.5501],[96.4729,4.5488],[96.4631,4.5454],[96.4587,4.5328],[96.4509,4.5224],[96.4444,4.517],[96.4404,4.51],[96.4478,4.4958],[96.4528,4.4896],[96.4744,4.4687],[96.4796,4.461],[96.479,4.4572],[96.4733,4.4531],[96.4616,4.4414],[96.4533,4.4333],[96.4415,4.4258],[96.4334,4.4231],[96.4102,4.4205],[96.3835,4.4201],[96.372,4.4174],[96.3707,4.4128],[96.3736,4.4103],[96.3708,4.3991],[96.3716,4.3928],[96.3586,4.3868],[96.358,4.3818],[96.3502,4.3819],[96.341,4.3794],[96.3411,4.3762],[96.3357,4.3708],[96.3291,4.3671],[96.3228,4.3685],[96.3197,4.3647],[96.3138,4.3682],[96.3078,4.3676],[96.3016,4.3702],[96.296,4.3683],[96.2972,4.3577],[96.2969,4.3505],[96.2908,4.3242],[96.2895,4.3107],[96.286,4.2893],[96.282,4.2859],[96.2827,4.2794],[96.2861,4.2696],[96.2818,4.265],[96.2807,4.2538],[96.2732,4.2474],[96.2686,4.2393],[96.2665,4.2272],[96.2682,4.2173],[96.2751,4.2143],[96.2769,4.2105],[96.2724,4.1966],[96.2767,4.1849],[96.2746,4.1744],[96.2772,4.1686],[96.2749,4.1659],[96.2764,4.1581],[96.2789,4.1553],[96.2731,4.1507],[96.2734,4.1479],[96.2676,4.146],[96.2626,4.138],[96.2569,4.1346],[96.2466,4.1261],[96.2248,4.117],[96.2142,4.1175],[96.2065,4.1158],[96.192,4.1073],[96.1894,4.1054],[96.2173,4.0777],[96.2354,4.0572],[96.2406,4.0555],[96.2442,4.0495],[96.247,4.0413],[96.2656,4.0211],[96.284,3.9988],[96.2959,3.9827],[96.3314,3.9293],[96.3526,3.8977],[96.3586,3.888],[96.3739,3.8661],[96.3852,3.8493],[96.3871,3.8579],[96.392,3.8532],[96.3879,3.8485],[96.4217,3.8147],[96.4495,3.7883],[96.4782,3.7642],[96.4967,3.7495],[96.5159,3.737],[96.5243,3.7332],[96.5365,3.7298],[96.5443,3.7291],[96.5573,3.7299],[96.5794,3.7331],[96.5963,3.7331],[96.6182,3.7346],[96.6237,3.739],[96.6168,3.7363],[96.619,3.747],[96.6147,3.7522],[96.6176,3.7571],[96.6161,3.7656],[96.6098,3.7711],[96.6055,3.7769],[96.6065,3.7816],[96.6171,3.7911],[96.6166,3.7956],[96.6096,3.8084],[96.6098,3.8132],[96.6052,3.8203],[96.5988,3.8278],[96.5901,3.8327],[96.5829,3.8385],[96.5811,3.8459],[96.5839,3.8488],[96.5879,3.8566],[96.5887,3.8626],[96.5924,3.8685],[96.5926,3.8775],[96.5959,3.8848],[96.5938,3.8899],[96.6001,3.9027],[96.6012,3.9118],[96.6044,3.9154],[96.6131,3.9128],[96.6177,3.9227],[96.6151,3.9292],[96.6214,3.9352],[96.6189,3.9395],[96.6256,3.9476],[96.6292,3.9585],[96.635,3.9603],[96.6412,3.9675],[96.6456,3.9681],[96.646,3.9717],[96.6512,3.972],[96.6623,3.9781],[96.6659,3.9813],[96.673,3.9834],[96.6767,3.9866],[96.6847,3.9854],[96.6841,3.9903],[96.6896,3.991],[96.6962,3.9884],[96.6993,3.9904],[96.7022,3.9968],[96.7101,4.0063],[96.7161,4.0093],[96.7202,4.0153],[96.7171,4.0216],[96.7172,4.0257],[96.7259,4.0335],[96.73,4.0415],[96.7303,4.0506],[96.7292,4.0715],[96.7252,4.0817],[96.7244,4.0944],[96.7253,4.0994],[96.7303,4.1152],[96.7346,4.1344],[96.746,4.1607],[96.7539,4.1744],[96.7627,4.1825],[96.7773,4.1928],[96.786,4.2009],[96.7909,4.2085],[96.8005,4.2205],[96.8029,4.2268],[96.8008,4.2349],[96.7952,4.2413],[96.7971,4.2523],[96.7976,4.2623],[96.7966,4.273],[96.7933,4.2855],[96.8,4.2842],[96.8206,4.2854]]}},{"type":"Feature","properties":{"mhid":"1332:17","alt_name":"KABUPATEN ACEH JAYA","latitude":4.86,"longitude":95.64,"sample_value":851},"geometry":{"type":"LineString","coordinates":[[95.4513,4.773],[95.4494,4.7773],[95.4427,4.7763],[95.4451,4.7724],[95.4513,4.773]]}},{"type":"Feature","properties":{"mhid":"1332:17","alt_name":"KABUPATEN ACEH JAYA","latitude":4.86,"longitude":95.64,"sample_value":851},"geometry":{"type":"LineString","coordinates":[[95.3773,4.8771],[95.3722,4.8783],[95.3665,4.8761],[95.3663,4.8724],[95.3744,4.8615],[95.3838,4.8586],[95.3902,4.8682],[95.3906,4.8733],[95.3851,4.8781],[95.3773,4.8771]]}},{"type":"Feature","properties":{"mhid":"1332:17","alt_name":"KABUPATEN ACEH JAYA","latitude":4.86,"longitude":95.64,"sample_value":851},"geometry":{"type":"LineString","coordinates":[[95.5005,5.2201],[95.493,5.2179],[95.4861,5.2115],[95.4732,5.2102],[95.4705,5.2134],[95.4624,5.2126],[95.4508,5.2188],[95.4391,5.2191],[95.4352,5.2239],[95.4288,5.2211],[95.4175,5.2216],[95.4123,5.2163],[95.4019,5.2105],[95.4016,5.2147],[95.3982,5.2183],[95.3952,5.2168],[95.391,5.2204],[95.3923,5.2269],[95.387,5.2293],[95.3868,5.2339],[95.3781,5.2396],[95.3772,5.2469],[95.3701,5.2536],[95.3652,5.2542],[95.3553,5.2473],[95.3466,5.2432],[95.3479,5.2396],[95.339,5.2334],[95.3313,5.234],[95.3255,5.2312],[95.3221,5.225],[95.3258,5.2205],[95.3271,5.2148],[95.332,5.2086],[95.3303,5.2048],[95.3302,5.1979],[95.3342,5.193],[95.3288,5.1863],[95.3328,5.1829],[95.3305,5.1799],[95.3224,5.1777],[95.3189,5.1723],[95.3068,5.1673],[95.3087,5.1621],[95.3072,5.1472],[95.3041,5.1365],[95.3065,5.1319],[95.3097,5.1314],[95.3058,5.1238],[95.2958,5.1189],[95.2916,5.1203],[95.2866,5.1193],[95.2814,5.115],[95.2844,5.1115],[95.2914,5.1095],[95.2983,5.1158],[95.3021,5.1161],[95.3041,5.1091],[95.3117,5.1028],[95.3119,5.0986],[95.3158,5.0936],[95.3201,5.0929],[95.3196,5.0846],[95.316,5.0803],[95.3256,5.067],[95.3303,5.0592],[95.3324,5.0506],[95.3363,5.0487],[95.3397,5.0515],[95.3496,5.0471],[95.3549,5.0401],[95.3624,5.0388],[95.3666,5.0322],[95.3686,5.0222],[95.3658,5.0125],[95.3607,5.0114],[95.3554,5.0066],[95.358,4.9984],[95.3646,5.0002],[95.369,4.9957],[95.3712,4.986],[95.3749,4.9815],[95.3741,4.9758],[95.3802,4.9719],[95.3816,4.9689],[95.3808,4.9617],[95.3765,4.9582],[95.374,4.9525],[95.3688,4.949],[95.3715,4.9388],[95.3759,4.9327],[95.3792,4.9202],[95.3865,4.9204],[95.3898,4.9148],[95.3918,4.9046],[95.394,4.9009],[95.4024,4.8942],[95.3994,4.8912],[95.3948,4.8796],[95.3969,4.8717],[95.4045,4.8659],[95.4111,4.8578],[95.4168,4.8557],[95.4225,4.8453],[95.4267,4.8342],[95.4249,4.8271],[95.4181,4.8244],[95.4132,4.8255],[95.4132,4.8205],[95.4236,4.8177],[95.4275,4.8095],[95.4369,4.8074],[95.4449,4.8084],[95.4518,4.7994],[95.454,4.7898],[95.4527,4.7828],[95.4607,4.7795],[95.473,4.7703],[95.4873,4.7566],[95.4977,4.7435],[95.4995,4.7371],[95.5061,4.7301],[95.5132,4.719],[95.5137,4.7136],[95.5104,4.7103],[95.5103,4.7064],[95.5227,4.697],[95.5275,4.6919],[95.5329,4.6836],[95.5332,4.6741],[95.5406,4.6739],[95.539,4.6679],[95.5404,4.665],[95.5385,4.6587],[95.5436,4.6593],[95.5514,4.6563],[95.5549,4.6581],[95.562,4.6694],[95.568,4.668],[95.5722,4.6623],[95.5801,4.6623],[95.5844,4.659],[95.5842,4.648],[95.5725,4.6443],[95.5739,4.6369],[95.5655,4.6354],[95.5703,4.63],[95.5734,4.6314],[95.5813,4.6273],[95.5824,4.6349],[95.5875,4.6357],[95.5969,4.6314],[95.6071,4.6253],[95.6222,4.6129],[95.6351,4.5989],[95.6422,4.5923],[95.656,4.582],[95.6643,4.5766],[95.6741,4.5689],[95.6825,4.5578],[95.6925,4.5507],[95.7071,4.5376],[95.7146,4.5287],[95.7198,4.526],[95.7292,4.5184],[95.7523,4.4967],[95.7629,4.4924],[95.78,4.4726],[95.7859,4.4671],[95.8769,4.3675],[95.8848,4.3753],[95.8897,4.3779],[95.8954,4.3877],[95.9111,4.4065],[95.9166,4.419],[95.9183,4.4313],[95.9232,4.436],[95.9275,4.4442],[95.9361,4.4674],[95.945,4.4823],[95.9562,4.5059],[95.9608,4.5123],[95.9711,4.5233],[95.9873,4.5354],[95.9945,4.5384],[96,4.5389],[96.0048,4.5453],[96.0115,4.5509],[96.0248,4.5598],[96.0313,4.5622],[96.0373,4.5627],[96.0467,4.5665],[96.0476,4.5725],[96.0469,4.5804],[96.0512,4.585],[96.0501,4.5934],[96.0466,4.5972],[96.0369,4.6019],[96.0291,4.6143],[96.0326,4.6321],[96.033,4.6397],[96.0365,4.6477],[96.0424,4.6576],[96.0324,4.6693],[96.0315,4.6836],[96.0281,4.694],[96.0127,4.7316],[96.0048,4.7465],[95.997,4.752],[95.9948,4.7564],[95.9954,4.7675],[95.9932,4.7827],[95.9912,4.7866],[95.9838,4.7934],[95.9788,4.7964],[95.9717,4.81],[95.9649,4.8159],[95.9602,4.8216],[95.9578,4.8288],[95.9494,4.8354],[95.9253,4.8469],[95.9202,4.8502],[95.9159,4.8555],[95.9041,4.8639],[95.8996,4.8691],[95.8859,4.8939],[95.8823,4.909],[95.8791,4.9149],[95.8699,4.9213],[95.8609,4.9252],[95.8539,4.9318],[95.8517,4.9447],[95.8454,4.9539],[95.8299,4.9666],[95.8228,4.9742],[95.803,4.9884],[95.7964,5.0017],[95.789,5.0052],[95.7833,5.0099],[95.7785,5.0223],[95.7725,5.0274],[95.7674,5.0361],[95.7649,5.0432],[95.7624,5.0557],[95.7588,5.0576],[95.7434,5.0611],[95.7432,5.0611],[95.7365,5.0548],[95.7282,5.0536],[95.7221,5.0555],[95.7102,5.0532],[95.7047,5.0529],[95.6996,5.0576],[95.6882,5.0605],[95.6761,5.0606],[95.6589,5.0641],[95.6508,5.0665],[95.643,5.0705],[95.6353,5.0793],[95.6303,5.0917],[95.6296,5.1081],[95.6307,5.1148],[95.6352,5.1313],[95.6437,5.1391],[95.6441,5.141],[95.6381,5.1503],[95.628,5.1612],[95.6239,5.1674],[95.6212,5.1771],[95.6161,5.1886],[95.6101,5.191],[95.5992,5.1915],[95.5954,5.1941],[95.59,5.2049],[95.5832,5.2087],[95.5734,5.2092],[95.5674,5.2071],[95.5505,5.2059],[95.5442,5.2089],[95.5356,5.2161],[95.514,5.2163],[95.508,5.2171],[95.5005,5.2201]]}},{"type":"Feature","properties":{"mhid":"1332:18","alt_name":"KABUPATEN BENER MERIAH","latitude":4.73015,"longitude":96.86156,"sample_value":946},"geometry":{"type":"LineString","coordinates":[[96.786,4.9421],[96.7813,4.9435],[96.7786,4.9471],[96.7641,4.9577],[96.75,4.9631],[96.7447,4.9667],[96.7197,4.9709],[96.7078,4.9697],[96.6847,4.9712],[96.6627,4.9743],[96.6584,4.9642],[96.6575,4.9554],[96.6607,4.9519],[96.6695,4.9526],[96.6753,4.9501],[96.6728,4.9446],[96.6733,4.9388],[96.6774,4.9295],[96.6826,4.9259],[96.6844,4.9158],[96.691,4.8986],[96.6906,4.8874],[96.6883,4.8821],[96.6893,4.8743],[96.6874,4.8627],[96.692,4.8467],[96.6905,4.8388],[96.6933,4.8326],[96.7009,4.827],[96.706,4.8247],[96.7075,4.8188],[96.7059,4.8101],[96.7014,4.8027],[96.7006,4.7907],[96.7013,4.7789],[96.6942,4.7722],[96.6874,4.7687],[96.6837,4.7559],[96.695,4.7516],[96.6979,4.7469],[96.7025,4.7449],[96.709,4.7525],[96.7216,4.7363],[96.7245,4.7343],[96.7299,4.7264],[96.734,4.7234],[96.7383,4.7232],[96.7418,4.7171],[96.747,4.7132],[96.7562,4.7144],[96.764,4.7166],[96.769,4.7141],[96.7788,4.716],[96.7919,4.7099],[96.7951,4.7017],[96.7949,4.6971],[96.8017,4.6868],[96.805,4.6866],[96.8077,4.6826],[96.8046,4.6774],[96.8105,4.6748],[96.8122,4.6808],[96.8181,4.6849],[96.8236,4.6793],[96.8207,4.6749],[96.8248,4.6713],[96.8309,4.6704],[96.8402,4.666],[96.8577,4.6658],[96.8695,4.662],[96.8792,4.6611],[96.8871,4.6592],[96.913,4.6567],[96.929,4.6567],[96.9495,4.6526],[96.96,4.6494],[96.9718,4.6438],[96.9832,4.6406],[96.9952,4.6318],[97.0188,4.6178],[97.0291,4.6202],[97.0329,4.6186],[97.0411,4.61],[97.0489,4.605],[97.0613,4.5995],[97.0753,4.596],[97.0908,4.5896],[97.1094,4.5846],[97.1448,4.5793],[97.1805,4.5758],[97.1943,4.5753],[97.2037,4.5781],[97.2163,4.5849],[97.2257,4.5873],[97.2381,4.5874],[97.257,4.5837],[97.2647,4.585],[97.2829,4.5958],[97.293,4.599],[97.3133,4.6018],[97.313,4.6028],[97.3065,4.6205],[97.2991,4.6294],[97.2804,4.6302],[97.2748,4.6318],[97.27,4.6276],[97.2658,4.6213],[97.2615,4.6214],[97.2593,4.6246],[97.2565,4.6438],[97.2545,4.6491],[97.255,4.6618],[97.2613,4.6637],[97.2748,4.6593],[97.294,4.6598],[97.3057,4.6623],[97.3113,4.6667],[97.3127,4.6735],[97.312,4.682],[97.3176,4.6912],[97.3236,4.6976],[97.3272,4.7063],[97.3276,4.7158],[97.3241,4.7345],[97.3191,4.741],[97.3145,4.7339],[97.2805,4.7332],[97.2729,4.7371],[97.2702,4.7334],[97.2752,4.7311],[97.2721,4.7265],[97.2665,4.7303],[97.2612,4.73],[97.259,4.7246],[97.2514,4.7351],[97.258,4.7399],[97.2527,4.7435],[97.2529,4.7481],[97.2479,4.7547],[97.2472,4.7602],[97.2534,4.7596],[97.2543,4.7676],[97.2574,4.7749],[97.2689,4.7883],[97.2733,4.7955],[97.2761,4.8042],[97.2811,4.8154],[97.2819,4.8202],[97.2803,4.8267],[97.2717,4.8346],[97.2685,4.8509],[97.2578,4.8675],[97.2479,4.8733],[97.2403,4.8748],[97.232,4.8817],[97.2284,4.8813],[97.1809,4.8959],[97.1701,4.8996],[97.1548,4.9082],[97.1437,4.9128],[97.1312,4.9132],[97.1208,4.9117],[97.1161,4.9097],[97.1123,4.904],[97.107,4.9049],[97.1032,4.9022],[97.0922,4.9072],[97.0869,4.9056],[97.0813,4.9107],[97.0714,4.9101],[97.0556,4.9124],[97.0483,4.9082],[97.0452,4.9083],[97.0259,4.9147],[97.0197,4.9134],[97.0122,4.9077],[97.0097,4.9015],[97.0091,4.8889],[97.0055,4.8809],[97.0031,4.8718],[96.996,4.8646],[96.9803,4.8622],[96.9577,4.8626],[96.9444,4.8649],[96.9115,4.8758],[96.8932,4.8759],[96.8793,4.8741],[96.8689,4.8759],[96.8545,4.8803],[96.8441,4.8879],[96.8345,4.901],[96.8264,4.9104],[96.8193,4.9137],[96.8069,4.924],[96.8047,4.9312],[96.801,4.9346],[96.786,4.9421]]}},{"type":"Feature","properties":{"mhid":"1332:19","alt_name":"KABUPATEN PIDIE JAYA","latitude":5.15,"longitude":96.21667,"sample_value":511},"geometry":{"type":"LineString","coordinates":[[96.105,5.2859],[96.1049,5.2827],[96.094,5.2849],[96.0786,5.2905],[96.075,5.2939],[96.071,5.2931],[96.0634,5.2978],[96.0572,5.2997],[96.0508,5.2892],[96.0533,5.2856],[96.0512,5.2775],[96.0481,5.2772],[96.0456,5.2669],[96.0482,5.2638],[96.0525,5.2541],[96.0472,5.245],[96.0403,5.2407],[96.043,5.2301],[96.0527,5.2065],[96.0537,5.201],[96.0522,5.1946],[96.0484,5.1891],[96.0514,5.1848],[96.0516,5.1804],[96.0418,5.1714],[96.0347,5.1715],[96.0303,5.1617],[96.0256,5.158],[96.0264,5.1522],[96.0211,5.1454],[96.0271,5.1397],[96.0347,5.136],[96.0403,5.1296],[96.0494,5.1166],[96.0601,5.107],[96.07,5.1064],[96.0743,5.1042],[96.085,5.0943],[96.0911,5.0911],[96.1026,5.0894],[96.1078,5.0917],[96.1127,5.091],[96.1177,5.0831],[96.123,5.0796],[96.1366,5.0746],[96.1473,5.0795],[96.1539,5.0778],[96.1669,5.0684],[96.1795,5.0689],[96.1837,5.0682],[96.1892,5.0759],[96.1932,5.076],[96.1935,5.0641],[96.1963,5.0613],[96.1956,5.0558],[96.2016,5.0495],[96.2062,5.0404],[96.2043,5.0287],[96.2008,5.0153],[96.1964,5.0079],[96.1895,4.9996],[96.1906,4.9942],[96.1985,4.9848],[96.208,4.9639],[96.2114,4.9588],[96.2159,4.9562],[96.2263,4.9476],[96.2304,4.9463],[96.2473,4.9367],[96.2502,4.9335],[96.2522,4.9239],[96.2612,4.9149],[96.2762,4.9099],[96.2804,4.9095],[96.2957,4.9104],[96.3055,4.9163],[96.3158,4.9144],[96.3239,4.9161],[96.3266,4.9184],[96.3367,4.9316],[96.3427,4.9423],[96.3417,4.9441],[96.3327,4.9493],[96.327,4.9579],[96.3254,4.9624],[96.3384,4.9706],[96.3481,4.9863],[96.3529,5.0012],[96.353,5.0126],[96.3622,5.0235],[96.368,5.0384],[96.3693,5.0449],[96.3668,5.0511],[96.3664,5.0594],[96.3564,5.0757],[96.3586,5.0884],[96.3588,5.1099],[96.3558,5.1244],[96.3476,5.1437],[96.3476,5.1529],[96.3444,5.1633],[96.3446,5.178],[96.3483,5.1917],[96.3485,5.2064],[96.3473,5.2168],[96.3512,5.2257],[96.3241,5.2312],[96.318,5.2332],[96.2996,5.2429],[96.2908,5.2463],[96.2734,5.2562],[96.2575,5.2632],[96.2415,5.2631],[96.2123,5.2588],[96.1965,5.259],[96.1883,5.2603],[96.1702,5.2652],[96.153,5.2726],[96.1454,5.2769],[96.1235,5.2808],[96.105,5.2859]]}},{"type":"Feature","properties":{"mhid":"1332:20","alt_name":"KOTA BANDA ACEH","latitude":5.54167,"longitude":95.33333,"sample_value":694},"geometry":{"type":"LineString","coordinates":[[95.2776,5.5559],[95.2823,5.5493],[95.284,5.5426],[95.2802,5.5376],[95.285,5.5307],[95.2903,5.5311],[95.2929,5.5266],[95.2961,5.5277],[95.3009,5.5215],[95.309,5.5193],[95.3097,5.5159],[95.3234,5.5196],[95.3266,5.527],[95.3302,5.526],[95.3365,5.5288],[95.3437,5.5281],[95.3478,5.5352],[95.3539,5.5353],[95.3552,5.5423],[95.3606,5.5448],[95.36,5.5522],[95.353,5.5617],[95.3572,5.5651],[95.3576,5.5711],[95.3607,5.5731],[95.369,5.5633],[95.3772,5.5678],[95.3721,5.5716],[95.3688,5.5891],[95.3601,5.5852],[95.3557,5.585],[95.3544,5.5958],[95.3575,5.6031],[95.3622,5.6045],[95.3669,5.6087],[95.3628,5.6089],[95.3528,5.6068],[95.3471,5.6067],[95.3245,5.5929],[95.3153,5.5836],[95.3137,5.5837],[95.2958,5.5678],[95.2776,5.5559]]}},{"type":"Feature","properties":{"mhid":"1332:21","alt_name":"KOTA SABANG","latitude":5.82164,"longitude":95.31086,"sample_value":309},"geometry":{"type":"LineString","coordinates":[[95.2193,5.9069],[95.2162,5.9056],[95.2176,5.8967],[95.2149,5.8903],[95.2218,5.8712],[95.2266,5.8693],[95.2279,5.8661],[95.2366,5.857],[95.2392,5.8496],[95.2482,5.8494],[95.2564,5.8437],[95.2612,5.8326],[95.2601,5.825],[95.2637,5.8202],[95.2666,5.8071],[95.273,5.7987],[95.2745,5.7942],[95.2816,5.7839],[95.2873,5.7799],[95.29,5.7817],[95.3043,5.7801],[95.3126,5.7773],[95.3184,5.7737],[95.3248,5.7739],[95.3297,5.772],[95.338,5.7789],[95.3425,5.786],[95.3438,5.7936],[95.3466,5.7963],[95.3458,5.8007],[95.3485,5.805],[95.3447,5.8166],[95.3458,5.8262],[95.3512,5.828],[95.3553,5.8263],[95.361,5.8182],[95.367,5.8117],[95.3719,5.8039],[95.3756,5.8049],[95.3772,5.8125],[95.3777,5.8297],[95.3733,5.8434],[95.373,5.8485],[95.369,5.8525],[95.3644,5.8536],[95.3555,5.8645],[95.3533,5.8694],[95.3539,5.8779],[95.3498,5.8856],[95.3435,5.8893],[95.3335,5.8982],[95.3281,5.9008],[95.3209,5.9002],[95.3102,5.894],[95.3099,5.8902],[95.3147,5.8849],[95.3195,5.8898],[95.3243,5.8858],[95.3238,5.8822],[95.3164,5.8706],[95.3122,5.8688],[95.3059,5.8698],[95.3014,5.8726],[95.3011,5.8631],[95.304,5.8406],[95.2881,5.8407],[95.2859,5.8465],[95.2767,5.8483],[95.2684,5.8577],[95.2641,5.8599],[95.263,5.8666],[95.2689,5.8699],[95.2644,5.8728],[95.2574,5.8721],[95.252,5.8814],[95.2451,5.8822],[95.2402,5.8872],[95.2419,5.8911],[95.2353,5.8976],[95.2245,5.906],[95.2193,5.9069]]}},{"type":"Feature","properties":{"mhid":"1332:21","alt_name":"KOTA SABANG","latitude":5.82164,"longitude":95.31086,"sample_value":309},"geometry":{"type":"LineString","coordinates":[[95.1179,6.0769],[95.1136,6.0755],[95.1176,6.0708],[95.121,6.0726],[95.1179,6.0769]]}},{"type":"Feature","properties":{"mhid":"1332:22","alt_name":"KOTA LANGSA","latitude":4.47,"longitude":97.93,"sample_value":202},"geometry":{"type":"LineString","coordinates":[[98.0418,4.5345],[98.0488,4.5363],[98.0476,4.5404],[98.0417,4.5436],[98.0383,4.5388],[98.0418,4.5345]]}},{"type":"Feature","properties":{"mhid":"1332:22","alt_name":"KOTA LANGSA","latitude":4.47,"longitude":97.93,"sample_value":202},"geometry":{"type":"LineString","coordinates":[[98.0787,4.5125],[98.0792,4.5175],[98.0765,4.5247],[98.0807,4.5244],[98.085,4.5307],[98.0818,4.5365],[98.0763,4.5399],[98.0626,4.5511],[98.0621,4.545],[98.0572,4.5406],[98.055,4.5359],[98.035,4.528],[98.0349,4.5326],[98.038,4.5443],[98.0326,4.5412],[98.0254,4.5397],[98.0235,4.5355],[98.0174,4.5364],[97.9998,4.53],[97.9945,4.5315],[97.9883,4.531],[97.9825,4.5344],[97.9855,4.537],[97.9844,4.5443],[97.9757,4.5563],[97.9809,4.5455],[97.9788,4.54],[97.9709,4.534],[97.9671,4.5295],[97.9625,4.5283],[97.957,4.5344],[97.9516,4.5348],[97.9509,4.5295],[97.9423,4.5272],[97.9356,4.5284],[97.9368,4.5329],[97.928,4.534],[97.9167,4.5295],[97.913,4.5213],[97.9046,4.512],[97.8976,4.5063],[97.8909,4.4932],[97.8908,4.4867],[97.8888,4.4829],[97.8887,4.4771],[97.8822,4.4679],[97.8774,4.4582],[97.8868,4.4483],[97.9028,4.4481],[97.9059,4.4523],[97.9098,4.4509],[97.9169,4.4527],[97.9213,4.4394],[97.9254,4.435],[97.9357,4.4325],[97.9423,4.438],[97.9529,4.4412],[97.9617,4.4422],[97.9669,4.4414],[97.9711,4.4383],[97.9688,4.4261],[97.9734,4.4227],[97.9817,4.4213],[97.9818,4.4144],[97.9916,4.4121],[97.9935,4.4094],[98.0005,4.4077],[98.0037,4.4118],[98.015,4.4144],[98.0195,4.4176],[98.0242,4.4158],[98.026,4.4118],[98.0313,4.4141],[98.0286,4.4192],[98.0378,4.4232],[98.0405,4.4259],[98.0396,4.4361],[98.0363,4.4393],[98.0438,4.4483],[98.0454,4.4519],[98.0467,4.4652],[98.0457,4.4704],[98.0395,4.4672],[98.0365,4.4719],[98.0369,4.4796],[98.0479,4.4825],[98.0577,4.4807],[98.0616,4.4784],[98.0637,4.4834],[98.0625,4.4867],[98.0657,4.4902],[98.0664,4.496],[98.0614,4.5054],[98.0622,4.5099],[98.0671,4.5122],[98.0787,4.5125]]}},{"type":"Feature","properties":{"mhid":"1332:25","alt_name":"KABUPATEN NIAS","latitude":1.03333,"longitude":97.76667,"sample_value":65},"geometry":{"type":"LineString","coordinates":[[97.9017,0.8847],[97.9039,0.8965],[97.9114,0.909],[97.9217,0.923],[97.9463,0.9536],[97.9472,0.958],[97.9448,0.9688],[97.9398,0.9794],[97.9297,0.9921],[97.9192,1.0257],[97.9107,1.0355],[97.9091,1.039],[97.8961,1.0547],[97.8885,1.0545],[97.8815,1.0511],[97.8727,1.0523],[97.8643,1.0582],[97.8494,1.0722],[97.844,1.0806],[97.844,1.0911],[97.8396,1.0941],[97.8356,1.0923],[97.8323,1.0956],[97.8289,1.1091],[97.816,1.1327],[97.8117,1.1392],[97.8005,1.1505],[97.7927,1.153],[97.7757,1.1504],[97.7694,1.1513],[97.7649,1.154],[97.7506,1.1689],[97.7405,1.1665],[97.7332,1.166],[97.7233,1.1687],[97.7151,1.1741],[97.7054,1.1735],[97.6962,1.1749],[97.6902,1.1785],[97.6868,1.1757],[97.6782,1.1638],[97.6688,1.1525],[97.6652,1.146],[97.6634,1.139],[97.6482,1.1234],[97.6456,1.1192],[97.6468,1.1124],[97.6552,1.1183],[97.6625,1.1189],[97.6705,1.1232],[97.6734,1.1211],[97.6807,1.1218],[97.6851,1.1173],[97.6774,1.1116],[97.671,1.1086],[97.6473,1.1004],[97.649,1.094],[97.6553,1.0828],[97.6433,1.0806],[97.6324,1.0816],[97.6213,1.08],[97.6157,1.0773],[97.6105,1.0796],[97.6094,1.0709],[97.6071,1.0642],[97.6079,1.0604],[97.6125,1.0547],[97.6188,1.0592],[97.6232,1.065],[97.6342,1.0669],[97.6464,1.0653],[97.6509,1.0613],[97.6385,1.0549],[97.6309,1.0549],[97.6246,1.0516],[97.6266,1.0451],[97.6196,1.0423],[97.6128,1.0302],[97.618,1.0275],[97.6282,1.0139],[97.6375,1.012],[97.6485,1.001],[97.6499,1.0058],[97.654,1.0046],[97.6595,0.9991],[97.6688,0.9992],[97.6813,1.0065],[97.6909,0.9967],[97.6885,0.9909],[97.6889,0.9835],[97.6919,0.9699],[97.6934,0.9411],[97.6945,0.9328],[97.7037,0.9366],[97.7183,0.9408],[97.7318,0.9477],[97.7388,0.9493],[97.7513,0.9502],[97.7571,0.9455],[97.7609,0.9393],[97.7667,0.9351],[97.774,0.9359],[97.7833,0.9327],[97.7913,0.9343],[97.795,0.9316],[97.7985,0.9249],[97.8097,0.9198],[97.8159,0.9245],[97.8259,0.926],[97.833,0.9307],[97.8489,0.9316],[97.8443,0.9163],[97.8461,0.9094],[97.8557,0.8899],[97.8572,0.8846],[97.8653,0.8899],[97.8702,0.8891],[97.874,0.8859],[97.8768,0.8893],[97.8854,0.8905],[97.8915,0.8883],[97.8926,0.8851],[97.9017,0.8847]]}},{"type":"Feature","properties":{"mhid":"1332:25","alt_name":"KABUPATEN NIAS","latitude":1.03333,"longitude":97.76667,"sample_value":65},"geometry":{"type":"LineString","coordinates":[[97.5862,1.1204],[97.5994,1.128],[97.606,1.1301],[97.6141,1.1468],[97.619,1.1605],[97.6263,1.1739],[97.6227,1.1806],[97.621,1.195],[97.6156,1.1999],[97.6087,1.1988],[97.6014,1.1956],[97.5871,1.1997],[97.5821,1.1946],[97.5761,1.2009],[97.5783,1.2151],[97.5603,1.2212],[97.5679,1.2281],[97.569,1.233],[97.5645,1.2461],[97.5653,1.2582],[97.5698,1.2613],[97.5819,1.2605],[97.5832,1.2625],[97.5799,1.2688],[97.5711,1.2713],[97.5658,1.277],[97.5553,1.2825],[97.5412,1.2849],[97.5275,1.2792],[97.5102,1.2745],[97.5011,1.2687],[97.4937,1.2606],[97.4937,1.2522],[97.5013,1.2378],[97.4921,1.2267],[97.4835,1.2142],[97.4893,1.2024],[97.489,1.1868],[97.4875,1.1786],[97.4892,1.1765],[97.4892,1.1665],[97.4909,1.1602],[97.489,1.1533],[97.5,1.1416],[97.5028,1.1476],[97.508,1.1541],[97.5159,1.1532],[97.531,1.1464],[97.5446,1.1347],[97.5645,1.1348],[97.572,1.1306],[97.5744,1.1239],[97.5791,1.1206],[97.5862,1.1204]]}},{"type":"Feature","properties":{"mhid":"1332:26","alt_name":"KABUPATEN MANDAILING NATAL","latitude":0.78378,"longitude":99.25495,"sample_value":926},"geometry":{"type":"LineString","coordinates":[[99.1062,0.3654],[99.1045,0.3737],[99.1005,0.3717],[99.0958,0.3657],[99.0908,0.3659],[99.0896,0.3617],[99.0978,0.3629],[99.1035,0.3621],[99.1062,0.3654]]}},{"type":"Feature","properties":{"mhid":"1332:26","alt_name":"KABUPATEN MANDAILING NATAL","latitude":0.78378,"longitude":99.25495,"sample_value":926},"geometry":{"type":"LineString","coordinates":[[98.8267,1.2681],[98.8281,1.2719],[98.8255,1.2773],[98.8211,1.2795],[98.8149,1.2765],[98.8127,1.2699],[98.8145,1.2665],[98.8219,1.2657],[98.8267,1.2681]]}},{"type":"Feature","properties":{"mhid":"1332:26","alt_name":"KABUPATEN MANDAILING NATAL","latitude":0.78378,"longitude":99.25495,"sample_value":926},"geometry":{"type":"LineString","coordinates":[[99.0706,1.1902],[99.0681,1.1958],[99.0635,1.1965],[99.049,1.2054],[99.049,1.2154],[99.0385,1.2252],[99.0399,1.2323],[99.0394,1.2496],[99.034,1.2518],[99.0299,1.2622],[99.0323,1.2661],[99.0294,1.2722],[99.0208,1.2691],[99.0146,1.2704],[99.0096,1.2761],[99.0053,1.2878],[99.0003,1.2887],[98.9956,1.2926],[98.9911,1.2993],[98.9877,1.2982],[98.9819,1.3006],[98.9706,1.2999],[98.9667,1.3156],[98.9639,1.3194],[98.9584,1.3174],[98.9526,1.328],[98.947,1.3295],[98.9384,1.3279],[98.9368,1.3291],[98.9269,1.3218],[98.9195,1.3077],[98.9107,1.3006],[98.9084,1.2943],[98.8962,1.2992],[98.8938,1.2968],[98.8887,1.3004],[98.8771,1.2943],[98.8695,1.2884],[98.8654,1.2798],[98.8561,1.288],[98.8514,1.2879],[98.8484,1.2973],[98.844,1.2973],[98.8429,1.2883],[98.8441,1.2779],[98.8571,1.2531],[98.8591,1.2473],[98.8679,1.2313],[98.8692,1.227],[98.8677,1.2206],[98.8638,1.2179],[98.8739,1.1966],[98.8814,1.1833],[98.901,1.146],[98.9083,1.1294],[98.9129,1.1165],[98.9177,1.098],[98.9252,1.061],[98.9255,1.0534],[98.9279,1.0442],[98.9357,1.0227],[98.9439,1.0044],[98.9564,0.9694],[98.9637,0.952],[98.9729,0.9239],[98.9767,0.8951],[98.9815,0.8831],[98.9819,0.8711],[98.9849,0.8611],[98.9855,0.8525],[98.9829,0.8477],[98.9773,0.8451],[98.9761,0.8405],[98.9807,0.8359],[98.9841,0.8359],[98.9901,0.8323],[98.9933,0.8225],[98.9955,0.8205],[99.0001,0.8239],[99.0063,0.8235],[99.0087,0.8263],[99.0129,0.8237],[99.0137,0.8187],[99.0193,0.8145],[99.0225,0.7995],[99.0329,0.7901],[99.0365,0.7849],[99.0455,0.7603],[99.0483,0.7605],[99.0579,0.7393],[99.0599,0.7285],[99.0605,0.7197],[99.059,0.7127],[99.0566,0.71],[99.0593,0.705],[99.0621,0.6902],[99.0579,0.6855],[99.0563,0.679],[99.0525,0.6743],[99.0486,0.6723],[99.0606,0.6682],[99.066,0.6595],[99.0576,0.6552],[99.0552,0.6512],[99.0591,0.6474],[99.0579,0.6392],[99.0533,0.6412],[99.0494,0.6454],[99.0451,0.6399],[99.0499,0.6226],[99.0598,0.6214],[99.061,0.6258],[99.0652,0.6321],[99.0753,0.6293],[99.0751,0.6218],[99.0792,0.6196],[99.0843,0.6203],[99.0872,0.6179],[99.0977,0.6031],[99.1013,0.595],[99.107,0.5767],[99.1098,0.5639],[99.1093,0.5497],[99.1052,0.5325],[99.0984,0.5288],[99.0915,0.5315],[99.0886,0.5291],[99.0902,0.5248],[99.0949,0.5195],[99.0916,0.5111],[99.0954,0.5031],[99.1015,0.5033],[99.1033,0.5075],[99.1139,0.5116],[99.12,0.4965],[99.1188,0.4929],[99.1238,0.4889],[99.1297,0.4774],[99.1368,0.4506],[99.1396,0.4281],[99.1396,0.4172],[99.1371,0.3997],[99.1351,0.3949],[99.1353,0.3853],[99.1337,0.3775],[99.1199,0.3629],[99.1207,0.3531],[99.1089,0.3459],[99.1149,0.3445],[99.1149,0.3419],[99.1199,0.3377],[99.1225,0.3387],[99.1285,0.3331],[99.1335,0.3331],[99.1365,0.3307],[99.1467,0.3323],[99.1503,0.3269],[99.1575,0.3085],[99.1605,0.2909],[99.1605,0.2745],[99.1587,0.2679],[99.1527,0.2633],[99.1469,0.2645],[99.1403,0.2627],[99.1371,0.2577],[99.1373,0.2535],[99.1421,0.2499],[99.1511,0.2491],[99.1591,0.245],[99.169,0.233],[99.1734,0.2427],[99.1734,0.248],[99.178,0.2548],[99.1843,0.2604],[99.1873,0.2661],[99.1926,0.2698],[99.1952,0.2735],[99.1943,0.2822],[99.1998,0.2896],[99.2248,0.3079],[99.2367,0.3227],[99.2487,0.3325],[99.2596,0.3363],[99.2655,0.3372],[99.2973,0.3369],[99.3143,0.3336],[99.3174,0.3346],[99.3281,0.349],[99.3341,0.358],[99.3438,0.3762],[99.3498,0.3863],[99.3504,0.3892],[99.3609,0.4118],[99.3661,0.4314],[99.3848,0.4492],[99.3883,0.4553],[99.3979,0.4649],[99.4045,0.4864],[99.4075,0.491],[99.4126,0.4932],[99.4291,0.492],[99.4373,0.4957],[99.4457,0.5061],[99.4566,0.5139],[99.4628,0.5164],[99.4687,0.5236],[99.4744,0.5242],[99.4896,0.5296],[99.4956,0.5352],[99.5038,0.5395],[99.5097,0.5451],[99.5201,0.5521],[99.5185,0.5438],[99.5136,0.5394],[99.518,0.5358],[99.5237,0.5277],[99.5305,0.5218],[99.5358,0.5196],[99.5469,0.5175],[99.5572,0.5113],[99.5748,0.5095],[99.5834,0.5157],[99.5905,0.516],[99.5956,0.523],[99.5998,0.5246],[99.6089,0.525],[99.6193,0.5301],[99.6285,0.5412],[99.6383,0.547],[99.6478,0.5417],[99.6503,0.5385],[99.6493,0.5323],[99.6555,0.5312],[99.6611,0.5246],[99.6654,0.5162],[99.6616,0.5071],[99.6654,0.5017],[99.6655,0.4942],[99.6672,0.4899],[99.6744,0.4837],[99.6763,0.476],[99.6828,0.4692],[99.6921,0.4694],[99.7008,0.4681],[99.7047,0.4625],[99.7137,0.4554],[99.7201,0.4524],[99.7282,0.454],[99.7351,0.4641],[99.739,0.4748],[99.7425,0.4778],[99.7527,0.479],[99.7577,0.4775],[99.7768,0.4818],[99.7844,0.4823],[99.8042,0.4731],[99.8088,0.4651],[99.8203,0.4605],[99.8368,0.4586],[99.8494,0.4699],[99.8571,0.4638],[99.8702,0.4647],[99.8742,0.468],[99.8846,0.4667],[99.8929,0.4705],[99.8998,0.4698],[99.9079,0.4725],[99.9174,0.4816],[99.9202,0.4878],[99.9311,0.4993],[99.9423,0.5077],[99.9483,0.5104],[99.9552,0.5104],[99.9596,0.5161],[99.952,0.5205],[99.9502,0.5242],[99.9564,0.5308],[99.9602,0.5392],[99.9647,0.5458],[99.9645,0.556],[99.9611,0.5596],[99.9598,0.5695],[99.9507,0.5775],[99.9481,0.5832],[99.9398,0.5935],[99.9308,0.5972],[99.9286,0.6032],[99.9204,0.6054],[99.9229,0.6158],[99.916,0.6216],[99.91,0.6248],[99.9096,0.629],[99.9162,0.6294],[99.9252,0.6329],[99.9205,0.6433],[99.9165,0.6482],[99.9166,0.6548],[99.9137,0.6637],[99.9121,0.6782],[99.9047,0.6806],[99.8978,0.6767],[99.893,0.6793],[99.8888,0.6868],[99.8845,0.6886],[99.8551,0.6828],[99.847,0.685],[99.8361,0.6919],[99.8309,0.6962],[99.8342,0.7013],[99.8349,0.71],[99.8297,0.716],[99.8253,0.7359],[99.8261,0.7397],[99.8305,0.7442],[99.834,0.7514],[99.8348,0.7575],[99.8449,0.7604],[99.8462,0.7689],[99.8438,0.7721],[99.8431,0.7802],[99.8468,0.7911],[99.8438,0.7976],[99.8459,0.8077],[99.8448,0.8143],[99.8409,0.8177],[99.838,0.8181],[99.8344,0.827],[99.8198,0.8362],[99.8137,0.8463],[99.8054,0.8502],[99.8028,0.8547],[99.7989,0.8572],[99.7915,0.8545],[99.7838,0.858],[99.7758,0.858],[99.7675,0.8599],[99.7646,0.864],[99.7594,0.8615],[99.7517,0.8664],[99.7442,0.866],[99.7426,0.875],[99.7351,0.8816],[99.7331,0.8851],[99.7348,0.8903],[99.7332,0.8933],[99.7226,0.8947],[99.7187,0.9021],[99.7134,0.906],[99.7128,0.9147],[99.7002,0.927],[99.6887,0.9333],[99.676,0.9318],[99.6692,0.9274],[99.6587,0.9274],[99.6502,0.9192],[99.6404,0.92],[99.6357,0.9273],[99.6301,0.9309],[99.6249,0.9375],[99.6257,0.942],[99.6205,0.9468],[99.6145,0.9495],[99.6025,0.9505],[99.6003,0.9522],[99.5941,0.9654],[99.5884,0.9678],[99.5866,0.9718],[99.5902,0.9773],[99.5906,0.9833],[99.5988,0.9937],[99.5973,1.0064],[99.5939,1.0111],[99.581,1.0194],[99.5731,1.0333],[99.5695,1.0417],[99.5677,1.0564],[99.5684,1.0651],[99.5648,1.068],[99.5588,1.0697],[99.5467,1.0709],[99.5449,1.0891],[99.5391,1.0974],[99.5314,1.1029],[99.526,1.1082],[99.5246,1.1126],[99.5136,1.1297],[99.5102,1.1309],[99.4974,1.1292],[99.4917,1.121],[99.4769,1.1227],[99.4588,1.1152],[99.4435,1.1119],[99.441,1.1094],[99.4367,1.099],[99.434,1.0978],[99.4277,1.0886],[99.4286,1.0808],[99.4244,1.0757],[99.4245,1.0713],[99.4348,1.0656],[99.4355,1.0635],[99.4437,1.0543],[99.4454,1.0384],[99.4423,1.0349],[99.4434,1.0265],[99.4397,1.0219],[99.4407,1.0119],[99.4396,1.0062],[99.4406,0.9954],[99.4396,0.9872],[99.4434,0.982],[99.4394,0.9758],[99.4281,0.9763],[99.4206,0.9796],[99.4214,0.9848],[99.4137,0.9929],[99.407,0.9957],[99.3975,1.0064],[99.3886,1.0057],[99.3834,1.0107],[99.3819,1.0151],[99.3769,1.0223],[99.3726,1.0237],[99.3688,1.0203],[99.3596,1.022],[99.3581,1.0189],[99.3515,1.0172],[99.3405,1.0259],[99.3348,1.0266],[99.3345,1.0301],[99.3305,1.0349],[99.3231,1.0389],[99.3191,1.0434],[99.3154,1.0437],[99.3101,1.0495],[99.3098,1.0538],[99.3052,1.0601],[99.2982,1.0643],[99.2902,1.0781],[99.2823,1.0844],[99.2783,1.0939],[99.2709,1.0972],[99.2686,1.0962],[99.269,1.0893],[99.267,1.0845],[99.268,1.0798],[99.2642,1.074],[99.2655,1.0696],[99.2616,1.0662],[99.2637,1.0567],[99.2615,1.053],[99.2494,1.0451],[99.2402,1.0421],[99.2343,1.0447],[99.2309,1.0485],[99.2219,1.0489],[99.2193,1.0474],[99.2159,1.0545],[99.2184,1.0583],[99.2143,1.0615],[99.2178,1.0663],[99.2157,1.0707],[99.2093,1.0745],[99.21,1.0813],[99.199,1.0899],[99.1932,1.0894],[99.1876,1.0958],[99.1816,1.0979],[99.177,1.0969],[99.1747,1.0933],[99.1704,1.0935],[99.1686,1.0986],[99.1651,1.0999],[99.1559,1.0997],[99.1475,1.1029],[99.1458,1.1074],[99.1354,1.1067],[99.1267,1.1087],[99.1217,1.1077],[99.1221,1.1027],[99.1183,1.101],[99.1173,1.1075],[99.1386,1.1592],[99.0972,1.1781],[99.0914,1.1802],[99.0706,1.1902]]}},{"type":"Feature","properties":{"mhid":"1332:27","alt_name":"KABUPATEN TAPANULI SELATAN","latitude":1.51667,"longitude":99.25,"sample_value":454},"geometry":{"type":"LineString","coordinates":[[99.4355,1.4769],[99.4341,1.4803],[99.4239,1.4752],[99.4239,1.4689],[99.4204,1.4644],[99.4213,1.4549],[99.4195,1.449],[99.4223,1.4417],[99.4279,1.4342],[99.4354,1.4321],[99.4418,1.4335],[99.4442,1.4468],[99.4408,1.4539],[99.4331,1.4612],[99.4318,1.4683],[99.4355,1.4769]]}},{"type":"Feature","properties":{"mhid":"1332:27","alt_name":"KABUPATEN TAPANULI SELATAN","latitude":1.51667,"longitude":99.25,"sample_value":454},"geometry":{"type":"MultiLineString","coordinates":[[[99.5658,2.0295],[99.5618,2.0359],[99.5559,2.0422],[99.5516,2.0549],[99.5465,2.0613],[99.5465,2.0658],[99.551,2.0771],[99.5393,2.0905],[99.5347,2.0924],[99.5226,2.0913],[99.5171,2.1017],[99.5133,2.1187],[99.5098,2.1239],[99.5016,2.1211],[99.4827,2.119],[99.4733,2.1192],[99.464,2.1249],[99.4595,2.1263],[99.4551,2.1021],[99.4549,2.0958],[99.4499,2.081],[99.4489,2.063],[99.4469,2.049],[99.4454,2.0273],[99.4462,2.0165],[99.4479,2.01],[99.4473,2.0012],[99.4547,1.979],[99.4584,1.9622],[99.4578,1.9556],[99.4537,1.9514],[99.4471,1.95],[99.4403,1.9526],[99.4339,1.9513],[99.4299,1.9488],[99.418,1.9477],[99.4092,1.9414],[99.4011,1.9398],[99.393,1.9417],[99.3803,1.9433],[99.3755,1.9407],[99.3682,1.9392],[99.3644,1.9366],[99.3622,1.929],[99.3539,1.9104],[99.349,1.9069],[99.3403,1.9062],[99.3403,1.8986],[99.3447,1.8948],[99.343,1.8899],[99.3438,1.884],[99.3415,1.8825],[99.3494,1.8747],[99.3482,1.8726],[99.3466,1.8535],[99.3395,1.8495],[99.3352,1.8423],[99.3252,1.8356],[99.3171,1.8335],[99.3115,1.8303],[99.3038,1.8316],[99.3011,1.8336],[99.294,1.8343],[99.2877,1.8373],[99.2837,1.8257],[99.2822,1.8164],[99.2822,1.8041],[99.2778,1.7918],[99.2745,1.78],[99.267,1.7608],[99.258,1.7443],[99.2446,1.7341],[99.2331,1.7182],[99.2164,1.7021],[99.2076,1.6972],[99.2012,1.6893],[99.1817,1.6744],[99.1737,1.669],[99.1628,1.6641],[99.1428,1.6399],[99.1308,1.6406],[99.1226,1.6468],[99.1163,1.6489],[99.111,1.6558],[99.1058,1.6603],[99.0972,1.6739],[99.0895,1.6818],[99.085,1.6913],[99.0757,1.6989],[99.0685,1.6968],[99.0618,1.6992],[99.0517,1.7001],[99.0554,1.6872],[99.0603,1.6656],[99.0583,1.6572],[99.0574,1.6442],[99.0551,1.6397],[99.0491,1.6345],[99.0453,1.6294],[99.0391,1.6256],[99.0315,1.6071],[99.0294,1.5955],[99.0305,1.5903],[99.0281,1.5876],[99.0252,1.5766],[99.022,1.5728],[99.0162,1.5708],[99.0123,1.5653],[99.0128,1.5564],[99.0049,1.5468],[99.0066,1.5433],[99.0017,1.5388],[98.9976,1.5388],[98.9922,1.5338],[98.9919,1.5275],[98.9882,1.5217],[98.9884,1.5138],[98.9921,1.511],[98.9942,1.5061],[99.0065,1.5023],[99.0127,1.4991],[99.0138,1.4966],[99.0109,1.4912],[99.0082,1.4733],[99.002,1.4707],[98.995,1.4725],[98.9903,1.4686],[98.9861,1.4706],[98.9791,1.4683],[98.9724,1.4638],[98.9691,1.467],[98.9619,1.4596],[98.9681,1.4558],[98.9777,1.4554],[98.9826,1.4584],[98.9883,1.4542],[98.9845,1.4465],[98.9725,1.4398],[98.9676,1.4406],[98.9702,1.4453],[98.963,1.4476],[98.9575,1.4414],[98.9542,1.4445],[98.9485,1.4439],[98.9461,1.447],[98.9412,1.4417],[98.9416,1.4356],[98.9351,1.44],[98.9279,1.4364],[98.9215,1.4406],[98.9243,1.446],[98.9198,1.4464],[98.9168,1.4426],[98.9128,1.4474],[98.9081,1.4428],[98.9014,1.44],[98.9025,1.4456],[98.897,1.4464],[98.8972,1.4517],[98.8928,1.4525],[98.8899,1.4503],[98.8853,1.4536],[98.8802,1.4548],[98.8769,1.4605],[98.8717,1.4657],[98.8648,1.4605],[98.8599,1.4608],[98.8546,1.4662],[98.8521,1.4594],[98.8486,1.4569],[98.8416,1.461],[98.84,1.4528],[98.832,1.4511],[98.8335,1.4461],[98.8381,1.4456],[98.8435,1.4386],[98.843,1.4328],[98.837,1.4327],[98.8335,1.4283],[98.8275,1.4329],[98.8219,1.4308],[98.8163,1.4349],[98.8133,1.431],[98.8088,1.4312],[98.8079,1.4258],[98.8026,1.4261],[98.8055,1.4315],[98.8024,1.4347],[98.7987,1.4334],[98.7971,1.4242],[98.793,1.4273],[98.7874,1.4284],[98.785,1.4312],[98.7797,1.4316],[98.7851,1.4206],[98.7887,1.416],[98.8104,1.3934],[98.8235,1.3766],[98.8353,1.3582],[98.8398,1.3483],[98.8463,1.3287],[98.8504,1.325],[98.8544,1.3149],[98.8539,1.3076],[98.8499,1.3024],[98.8424,1.3013],[98.844,1.2973],[98.8484,1.2973],[98.8514,1.2879],[98.8561,1.288],[98.8654,1.2798],[98.8695,1.2884],[98.8771,1.2943],[98.8887,1.3004],[98.8938,1.2968],[98.8962,1.2992],[98.9084,1.2943],[98.9107,1.3006],[98.9195,1.3077],[98.9269,1.3218],[98.9368,1.3291],[98.9384,1.3279],[98.947,1.3295],[98.9526,1.328],[98.9584,1.3174],[98.9639,1.3194],[98.9667,1.3156],[98.9706,1.2999],[98.9819,1.3006],[98.9877,1.2982],[98.9911,1.2993],[98.9956,1.2926],[99.0003,1.2887],[99.0053,1.2878],[99.0096,1.2761],[99.0146,1.2704],[99.0208,1.2691],[99.0294,1.2722],[99.0323,1.2661],[99.0299,1.2622],[99.034,1.2518],[99.0394,1.2496],[99.0399,1.2323],[99.0385,1.2252],[99.049,1.2154],[99.049,1.2054],[99.0635,1.1965],[99.0681,1.1958],[99.0706,1.1902],[99.0972,1.1781],[99.1386,1.1592],[99.1173,1.1075],[99.1183,1.101],[99.1221,1.1027],[99.1217,1.1077],[99.1267,1.1087],[99.1354,1.1067],[99.1458,1.1074],[99.1475,1.1029],[99.1559,1.0997],[99.1651,1.0999],[99.1686,1.0986],[99.1704,1.0935],[99.1747,1.0933],[99.177,1.0969],[99.1816,1.0979],[99.1876,1.0958],[99.1932,1.0894],[99.199,1.0899],[99.21,1.0813],[99.2093,1.0745],[99.2157,1.0707],[99.2178,1.0663],[99.2143,1.0615],[99.2184,1.0583],[99.2159,1.0545],[99.2193,1.0474],[99.2219,1.0489],[99.2309,1.0485],[99.2343,1.0447],[99.2402,1.0421],[99.2494,1.0451],[99.2615,1.053],[99.2637,1.0567],[99.2616,1.0662],[99.2655,1.0696],[99.2642,1.074],[99.268,1.0798],[99.267,1.0845],[99.269,1.0893],[99.2686,1.0962],[99.2709,1.0972],[99.2783,1.0939],[99.2823,1.0844],[99.2902,1.0781],[99.2982,1.0643],[99.3052,1.0601],[99.3098,1.0538],[99.3101,1.0495],[99.3154,1.0437],[99.3191,1.0434],[99.3231,1.0389],[99.3305,1.0349],[99.3345,1.0301],[99.3348,1.0266],[99.3405,1.0259],[99.3515,1.0172],[99.3581,1.0189],[99.3596,1.022],[99.3688,1.0203],[99.3726,1.0237],[99.3769,1.0223],[99.3819,1.0151],[99.3834,1.0107],[99.3886,1.0057],[99.3975,1.0064],[99.407,0.9957],[99.4137,0.9929],[99.4214,0.9848],[99.4206,0.9796],[99.4281,0.9763],[99.4394,0.9758],[99.4434,0.982],[99.4396,0.9872],[99.4406,0.9954],[99.4396,1.0062],[99.4407,1.0119],[99.4397,1.0219],[99.4434,1.0265],[99.4423,1.0349],[99.4454,1.0384],[99.4437,1.0543],[99.4355,1.0635],[99.4348,1.0656],[99.4245,1.0713],[99.4244,1.0757],[99.4286,1.0808],[99.4277,1.0886],[99.434,1.0978],[99.4367,1.099],[99.441,1.1094],[99.4435,1.1119],[99.4588,1.1152],[99.4769,1.1227],[99.4917,1.121],[99.4974,1.1292],[99.5102,1.1309],[99.5048,1.1337],[99.4844,1.142],[99.478,1.1484],[99.4735,1.1509],[99.4654,1.1595],[99.4616,1.1677],[99.4517,1.1769],[99.4479,1.179],[99.435,1.1816],[99.431,1.1862],[99.4309,1.1957],[99.4282,1.2029],[99.4206,1.2169],[99.419,1.2254],[99.4212,1.2306],[99.4237,1.2361],[99.4161,1.2517],[99.419,1.2608],[99.4174,1.2668],[99.419,1.2788],[99.4126,1.285],[99.4076,1.3006],[99.3908,1.3144],[99.3928,1.3223],[99.3898,1.3341],[99.3859,1.3369],[99.38,1.3499],[99.3689,1.3621],[99.3646,1.3758],[99.3565,1.3897],[99.3539,1.3958],[99.3467,1.4074],[99.3459,1.4293],[99.3511,1.4329],[99.3566,1.4341],[99.3671,1.4323],[99.3693,1.4302],[99.3781,1.4273],[99.384,1.4242],[99.3862,1.4195],[99.3946,1.4131],[99.3998,1.4136],[99.4002,1.4259],[99.3966,1.4307],[99.3993,1.4347],[99.407,1.4322],[99.4039,1.4424],[99.4045,1.4469],[99.4018,1.4518],[99.4029,1.4628],[99.402,1.4647],[99.4034,1.4759],[99.4029,1.4817],[99.4081,1.4899],[99.4178,1.4948],[99.4142,1.5031],[99.4214,1.5067],[99.4381,1.5188],[99.4342,1.5225],[99.4265,1.5263],[99.4217,1.5316],[99.4207,1.5387],[99.4168,1.5482],[99.4091,1.5578],[99.4042,1.5588],[99.391,1.5711],[99.3977,1.5751],[99.4044,1.5755],[99.4109,1.5777],[99.4204,1.5767],[99.4266,1.5743],[99.4328,1.5759],[99.4495,1.5862],[99.4542,1.5927],[99.454,1.6041],[99.4506,1.6138],[99.4428,1.6199],[99.4378,1.6215],[99.435,1.6248],[99.4371,1.6473],[99.4354,1.6539],[99.4394,1.6637],[99.4438,1.6672],[99.4592,1.6697],[99.4639,1.6717],[99.4672,1.6769],[99.4676,1.6825],[99.4714,1.6879],[99.4728,1.6949],[99.4774,1.7022],[99.4935,1.7115],[99.5022,1.7147],[99.5057,1.7215],[99.5106,1.7259],[99.5196,1.7285],[99.5235,1.7259],[99.5287,1.7262],[99.5369,1.7222],[99.5388,1.7176],[99.5508,1.718],[99.5499,1.7249],[99.553,1.73],[99.551,1.7344],[99.5527,1.7431],[99.5588,1.7508],[99.5659,1.7567],[99.5649,1.777],[99.5676,1.7945],[99.5708,1.8105],[99.568,1.8243],[99.5628,1.8326],[99.5561,1.8471],[99.5544,1.856],[99.5489,1.8597],[99.5486,1.8648],[99.5603,1.8729],[99.5586,1.885],[99.5722,1.9003],[99.5762,1.9089],[99.5747,1.912],[99.5669,1.912],[99.5642,1.9155],[99.5595,1.9172],[99.5552,1.9213],[99.5528,1.9314],[99.5534,1.9407],[99.552,1.9443],[99.5461,1.9486],[99.5449,1.9538],[99.5496,1.9643],[99.5492,1.9701],[99.5538,1.9731],[99.5576,1.9781],[99.5587,1.9916],[99.555,2],[99.5546,2.0088],[99.5577,2.0175],[99.5658,2.0295]],[[99.2252,1.4532],[99.2312,1.4643],[99.2367,1.468],[99.2474,1.4702],[99.2987,1.4667],[99.3004,1.4445],[99.3018,1.4386],[99.322,1.4126],[99.3247,1.41],[99.3257,1.4036],[99.322,1.4006],[99.3161,1.4061],[99.3058,1.4065],[99.3059,1.3979],[99.3112,1.3906],[99.3096,1.385],[99.3193,1.3692],[99.3294,1.3508],[99.341,1.333],[99.3462,1.326],[99.3499,1.3158],[99.3493,1.3116],[99.3406,1.3119],[99.337,1.3098],[99.3296,1.3102],[99.3217,1.3071],[99.3209,1.304],[99.3105,1.3039],[99.3034,1.3118],[99.3016,1.3175],[99.2906,1.337],[99.2781,1.3581],[99.2697,1.3595],[99.2656,1.3619],[99.248,1.3619],[99.2445,1.3749],[99.2446,1.3811],[99.2403,1.3841],[99.2368,1.3889],[99.2316,1.3917],[99.2263,1.4066],[99.2218,1.4111],[99.2273,1.4153],[99.2252,1.4532]]]}},{"type":"Feature","properties":{"mhid":"1332:28","alt_name":"KABUPATEN TAPANULI TENGAH","latitude":1.9,"longitude":98.66667,"sample_value":47},"geometry":{"type":"LineString","coordinates":[[98.4896,1.6884],[98.4928,1.6964],[98.4821,1.7034],[98.456,1.702],[98.4415,1.6696],[98.4439,1.6513],[98.4602,1.6372],[98.4742,1.6396],[98.4924,1.6311],[98.5003,1.6241],[98.5162,1.6241],[98.5325,1.6297],[98.5381,1.6335],[98.5484,1.6307],[98.5512,1.625],[98.5512,1.6204],[98.5638,1.6152],[98.5684,1.6185],[98.5731,1.6189],[98.5782,1.6147],[98.5796,1.6227],[98.5848,1.6246],[98.5983,1.6213],[98.6053,1.6114],[98.6109,1.6133],[98.6104,1.6185],[98.6057,1.6307],[98.6006,1.6335],[98.6006,1.6382],[98.5862,1.6457],[98.5861,1.6574],[98.5899,1.6626],[98.5871,1.6659],[98.5806,1.6607],[98.5792,1.6556],[98.5801,1.6504],[98.5764,1.6476],[98.5708,1.6481],[98.5661,1.6504],[98.5717,1.6654],[98.5717,1.6706],[98.5647,1.6711],[98.56,1.6781],[98.5549,1.6739],[98.5502,1.6795],[98.5479,1.6739],[98.547,1.6654],[98.539,1.6546],[98.5432,1.6518],[98.5344,1.641],[98.5283,1.6443],[98.5255,1.649],[98.5106,1.648],[98.505,1.6494],[98.504,1.6565],[98.497,1.6532],[98.4919,1.656],[98.4938,1.6598],[98.4933,1.6654],[98.4975,1.6701],[98.497,1.6771],[98.5012,1.6762],[98.5054,1.6814],[98.4994,1.6842],[98.4961,1.6823],[98.4896,1.6823],[98.4896,1.6884]]}},{"type":"Feature","properties":{"mhid":"1332:28","alt_name":"KABUPATEN TAPANULI TENGAH","latitude":1.9,"longitude":98.66667,"sample_value":47},"geometry":{"type":"LineString","coordinates":[[98.1804,2.0915],[98.1831,2.0948],[98.1789,2.0981],[98.1748,2.0922],[98.1804,2.0915]]}},{"type":"Feature","properties":{"mhid":"1332:28","alt_name":"KABUPATEN TAPANULI TENGAH","latitude":1.9,"longitude":98.66667,"sample_value":47},"geometry":{"type":"LineString","coordinates":[[98.6871,2.0183],[98.6693,2.0143],[98.6611,2.0161],[98.655,2.0158],[98.646,2.0206],[98.6437,2.0191],[98.6413,2.0113],[98.6334,2.012],[98.6319,2.0153],[98.6277,2.0153],[98.6231,2.0126],[98.6128,2.0178],[98.6064,2.0226],[98.6042,2.0287],[98.6047,2.0342],[98.6081,2.039],[98.6023,2.0483],[98.6065,2.0616],[98.6002,2.0663],[98.596,2.0712],[98.592,2.083],[98.5832,2.0819],[98.5799,2.0797],[98.5759,2.0807],[98.569,2.0784],[98.5622,2.0746],[98.5539,2.074],[98.549,2.0785],[98.5394,2.0832],[98.5283,2.082],[98.5197,2.0833],[98.5108,2.0801],[98.5061,2.0797],[98.4982,2.0818],[98.4745,2.0865],[98.4497,2.0927],[98.4449,2.0977],[98.4305,2.1062],[98.4292,2.1078],[98.4175,2.113],[98.4055,2.116],[98.3863,2.1185],[98.3728,2.1317],[98.3516,2.1446],[98.3419,2.1457],[98.3296,2.1521],[98.3234,2.1585],[98.3069,2.1598],[98.2992,2.1663],[98.2918,2.1775],[98.2803,2.1841],[98.2754,2.188],[98.2672,2.2093],[98.2647,2.2379],[98.2698,2.2418],[98.2664,2.2538],[98.2676,2.2568],[98.2576,2.263],[98.2543,2.2676],[98.2527,2.2761],[98.2472,2.28],[98.2355,2.2859],[98.2189,2.2967],[98.1971,2.3117],[98.188,2.2958],[98.1859,2.2816],[98.1821,2.2613],[98.1781,2.253],[98.1744,2.2506],[98.1788,2.2399],[98.1577,2.2064],[98.1569,2.2064],[98.1305,2.166],[98.1571,2.1452],[98.1621,2.142],[98.1701,2.1326],[98.1781,2.1255],[98.1852,2.1171],[98.1899,2.114],[98.2088,2.106],[98.2236,2.0968],[98.2348,2.0867],[98.2431,2.0756],[98.2555,2.0695],[98.2651,2.059],[98.2716,2.0456],[98.2722,2.0389],[98.265,2.0291],[98.2661,2.0267],[98.2733,2.0286],[98.2776,2.0274],[98.2804,2.0305],[98.2777,2.0365],[98.2814,2.0421],[98.287,2.0435],[98.3037,2.0371],[98.3079,2.0334],[98.3126,2.0345],[98.3126,2.0396],[98.3183,2.0446],[98.3285,2.0422],[98.3364,2.0457],[98.3433,2.045],[98.3545,2.0372],[98.3645,2.0262],[98.3687,2.0181],[98.3631,2.01],[98.357,2.0033],[98.3646,2.0048],[98.3741,2.0162],[98.3807,2.0146],[98.3925,2.0047],[98.3967,2.0076],[98.4025,2.0083],[98.4076,2.0066],[98.4166,2.0061],[98.4221,2.009],[98.4329,2.0066],[98.447,1.9997],[98.4615,1.9883],[98.4773,1.974],[98.4827,1.9711],[98.4906,1.9633],[98.5001,1.9508],[98.5002,1.9427],[98.5022,1.9407],[98.5077,1.9421],[98.5125,1.9394],[98.5168,1.9328],[98.5248,1.926],[98.5316,1.9164],[98.5432,1.9071],[98.5532,1.8912],[98.5582,1.886],[98.561,1.8809],[98.562,1.8688],[98.5712,1.8623],[98.5744,1.8648],[98.5823,1.8619],[98.591,1.8542],[98.5948,1.8475],[98.5995,1.8457],[98.6069,1.8392],[98.6213,1.8192],[98.6405,1.7988],[98.6537,1.7805],[98.6629,1.7637],[98.6671,1.7548],[98.6725,1.746],[98.6792,1.7385],[98.6851,1.7345],[98.7016,1.7289],[98.7167,1.7213],[98.7193,1.7214],[98.7232,1.7158],[98.7278,1.7184],[98.736,1.7204],[98.7394,1.7317],[98.7287,1.7315],[98.7287,1.7354],[98.733,1.7478],[98.7326,1.7526],[98.7289,1.7572],[98.728,1.7659],[98.7217,1.7571],[98.7179,1.7538],[98.7095,1.7631],[98.7023,1.7692],[98.6882,1.768],[98.685,1.772],[98.6817,1.7716],[98.681,1.7668],[98.675,1.7693],[98.6713,1.773],[98.6819,1.7745],[98.6979,1.7709],[98.6989,1.777],[98.7071,1.7856],[98.7246,1.7796],[98.7278,1.7745],[98.7385,1.7779],[98.7424,1.7817],[98.7459,1.7723],[98.7526,1.7643],[98.7589,1.7648],[98.7683,1.7607],[98.7687,1.7564],[98.7948,1.7564],[98.7927,1.7511],[98.8022,1.7402],[98.8086,1.7295],[98.7962,1.7216],[98.7891,1.7194],[98.7849,1.7225],[98.7804,1.7159],[98.7808,1.7121],[98.7843,1.7095],[98.7817,1.7009],[98.785,1.7005],[98.7869,1.6907],[98.7948,1.6828],[98.8017,1.6854],[98.8075,1.6892],[98.8114,1.6892],[98.8254,1.6778],[98.8283,1.6677],[98.8279,1.6641],[98.8208,1.6597],[98.829,1.659],[98.8381,1.6477],[98.84,1.6417],[98.8401,1.6291],[98.833,1.6272],[98.8277,1.6151],[98.8231,1.6083],[98.8206,1.6009],[98.8134,1.6034],[98.807,1.6035],[98.8023,1.6004],[98.7997,1.5956],[98.7995,1.5878],[98.7955,1.5835],[98.7992,1.5784],[98.8075,1.5782],[98.809,1.5716],[98.8073,1.5679],[98.7944,1.5705],[98.7906,1.5733],[98.7892,1.5799],[98.7826,1.5809],[98.781,1.5754],[98.7747,1.5697],[98.7724,1.5646],[98.7751,1.5577],[98.7735,1.5509],[98.7692,1.5438],[98.7697,1.5364],[98.7663,1.5285],[98.759,1.5304],[98.7525,1.5376],[98.748,1.5409],[98.7417,1.5526],[98.7414,1.5572],[98.7311,1.5682],[98.723,1.568],[98.7191,1.5711],[98.712,1.5644],[98.7182,1.5532],[98.7252,1.5484],[98.7291,1.5314],[98.7332,1.5242],[98.7377,1.5217],[98.7445,1.5103],[98.7595,1.5018],[98.7618,1.4998],[98.7664,1.4907],[98.7755,1.4642],[98.7768,1.4511],[98.776,1.4458],[98.7797,1.4316],[98.785,1.4312],[98.7874,1.4284],[98.793,1.4273],[98.7971,1.4242],[98.7987,1.4334],[98.8024,1.4347],[98.8055,1.4315],[98.8026,1.4261],[98.8079,1.4258],[98.8088,1.4312],[98.8133,1.431],[98.8163,1.4349],[98.8219,1.4308],[98.8275,1.4329],[98.8335,1.4283],[98.837,1.4327],[98.843,1.4328],[98.8435,1.4386],[98.8381,1.4456],[98.8335,1.4461],[98.832,1.4511],[98.84,1.4528],[98.8416,1.461],[98.8486,1.4569],[98.8521,1.4594],[98.8546,1.4662],[98.8599,1.4608],[98.8648,1.4605],[98.8717,1.4657],[98.8769,1.4605],[98.8802,1.4548],[98.8853,1.4536],[98.8899,1.4503],[98.8928,1.4525],[98.8972,1.4517],[98.897,1.4464],[98.9025,1.4456],[98.9014,1.44],[98.9081,1.4428],[98.9128,1.4474],[98.9168,1.4426],[98.9198,1.4464],[98.9243,1.446],[98.9215,1.4406],[98.9279,1.4364],[98.9351,1.44],[98.9416,1.4356],[98.9412,1.4417],[98.9461,1.447],[98.9485,1.4439],[98.9542,1.4445],[98.9575,1.4414],[98.963,1.4476],[98.9702,1.4453],[98.9676,1.4406],[98.9725,1.4398],[98.9845,1.4465],[98.9883,1.4542],[98.9826,1.4584],[98.9777,1.4554],[98.9681,1.4558],[98.9619,1.4596],[98.9691,1.467],[98.9724,1.4638],[98.9791,1.4683],[98.9861,1.4706],[98.9903,1.4686],[98.995,1.4725],[99.002,1.4707],[99.0082,1.4733],[99.0109,1.4912],[99.0138,1.4966],[99.0127,1.4991],[99.0065,1.5023],[98.9942,1.5061],[98.9921,1.511],[98.9884,1.5138],[98.9882,1.5217],[98.9919,1.5275],[98.9922,1.5338],[98.9976,1.5388],[99.0017,1.5388],[99.0066,1.5433],[99.0049,1.5468],[99.0128,1.5564],[99.0123,1.5653],[99.0162,1.5708],[99.022,1.5728],[99.0252,1.5766],[99.0281,1.5876],[99.0305,1.5903],[99.0294,1.5955],[99.0315,1.6071],[99.0391,1.6256],[99.0453,1.6294],[99.0491,1.6345],[99.0551,1.6397],[99.0574,1.6442],[99.0583,1.6572],[99.0603,1.6656],[99.0554,1.6872],[99.0517,1.7001],[99.0618,1.6992],[99.0516,1.7141],[99.0388,1.7021],[99.0298,1.6984],[99.0196,1.6905],[99.0172,1.6841],[99.012,1.6776],[99.0101,1.6687],[99.0063,1.6584],[99.0017,1.6513],[98.9892,1.6508],[98.9863,1.6559],[98.9773,1.6618],[98.9696,1.6784],[98.9715,1.6844],[98.9737,1.6976],[98.977,1.6993],[98.9835,1.7126],[98.9845,1.7216],[98.9827,1.7256],[98.9833,1.7364],[98.9887,1.7609],[98.9871,1.7689],[98.9834,1.7736],[98.9787,1.7727],[98.9668,1.7641],[98.9581,1.7609],[98.9466,1.7597],[98.9392,1.7604],[98.9331,1.7583],[98.9185,1.7579],[98.9129,1.7588],[98.907,1.7561],[98.8918,1.7544],[98.8811,1.7689],[98.8763,1.7855],[98.8731,1.7933],[98.872,1.8021],[98.8646,1.8119],[98.8605,1.8156],[98.8528,1.8196],[98.8446,1.8221],[98.8301,1.8412],[98.8261,1.8487],[98.815,1.8616],[98.8176,1.8664],[98.8158,1.8685],[98.8036,1.8724],[98.7885,1.8615],[98.7855,1.8685],[98.7852,1.8781],[98.7909,1.8894],[98.796,1.8891],[98.8087,1.8842],[98.8138,1.8862],[98.8159,1.8925],[98.8213,1.8996],[98.8202,1.9042],[98.8249,1.9117],[98.8228,1.919],[98.8236,1.926],[98.8196,1.9354],[98.8181,1.9441],[98.813,1.9446],[98.8071,1.9565],[98.7994,1.9601],[98.7807,1.9615],[98.7729,1.9608],[98.7616,1.9577],[98.7467,1.9604],[98.7396,1.9593],[98.7353,1.9563],[98.7309,1.9589],[98.7255,1.9587],[98.7084,1.9661],[98.711,1.9683],[98.6934,1.9827],[98.6832,1.9869],[98.6794,1.9895],[98.6829,2.008],[98.6871,2.0183]]}},{"type":"Feature","properties":{"mhid":"1332:29","alt_name":"KABUPATEN TAPANULI UTARA","latitude":2.0028,"longitude":99.0707,"sample_value":710},"geometry":{"type":"LineString","coordinates":[[98.9893,2.3369],[98.9871,2.347],[98.9832,2.3487],[98.9796,2.3462],[98.9784,2.3384],[98.9674,2.3426],[98.9596,2.3506],[98.9541,2.3532],[98.9483,2.3533],[98.9448,2.3597],[98.9346,2.3573],[98.932,2.354],[98.9263,2.3547],[98.9167,2.3515],[98.9113,2.3486],[98.9107,2.3421],[98.905,2.3344],[98.8959,2.3384],[98.8933,2.3434],[98.8883,2.3478],[98.8742,2.3417],[98.8691,2.3455],[98.8699,2.3494],[98.8661,2.3509],[98.8597,2.3491],[98.86,2.3448],[98.8565,2.3388],[98.8576,2.3355],[98.8584,2.3317],[98.8663,2.3348],[98.874,2.3322],[98.886,2.3358],[98.8897,2.3285],[98.8946,2.3254],[98.9,2.327],[98.9115,2.3248],[98.9189,2.3252],[98.9241,2.324],[98.9284,2.3264],[98.9327,2.3224],[98.9378,2.3239],[98.9402,2.32],[98.9539,2.3213],[98.9643,2.301],[98.971,2.298],[98.9683,2.2831],[98.9727,2.275],[98.9646,2.2744],[98.9647,2.2707],[98.9581,2.2673],[98.9407,2.2625],[98.9367,2.2524],[98.9317,2.2431],[98.9285,2.2336],[98.9251,2.2333],[98.9216,2.2293],[98.8952,2.222],[98.8743,2.2107],[98.8639,2.2023],[98.8578,2.2001],[98.8308,2.195],[98.8261,2.1926],[98.8111,2.1881],[98.8167,2.1695],[98.8165,2.1611],[98.8108,2.1594],[98.7993,2.1582],[98.7812,2.148],[98.7739,2.147],[98.7659,2.1436],[98.7566,2.1361],[98.7494,2.1314],[98.7391,2.1316],[98.737,2.1277],[98.7324,2.1261],[98.725,2.1262],[98.7265,2.1163],[98.7254,2.1148],[98.7099,2.0775],[98.699,2.0474],[98.6871,2.0183],[98.6829,2.008],[98.6794,1.9895],[98.6832,1.9869],[98.6934,1.9827],[98.711,1.9683],[98.7084,1.9661],[98.7255,1.9587],[98.7309,1.9589],[98.7353,1.9563],[98.7396,1.9593],[98.7467,1.9604],[98.7616,1.9577],[98.7729,1.9608],[98.7807,1.9615],[98.7994,1.9601],[98.8071,1.9565],[98.813,1.9446],[98.8181,1.9441],[98.8196,1.9354],[98.8236,1.926],[98.8228,1.919],[98.8249,1.9117],[98.8202,1.9042],[98.8213,1.8996],[98.8159,1.8925],[98.8138,1.8862],[98.8087,1.8842],[98.796,1.8891],[98.7909,1.8894],[98.7852,1.8781],[98.7855,1.8685],[98.7885,1.8615],[98.8036,1.8724],[98.8158,1.8685],[98.8176,1.8664],[98.815,1.8616],[98.8261,1.8487],[98.8301,1.8412],[98.8446,1.8221],[98.8528,1.8196],[98.8605,1.8156],[98.8646,1.8119],[98.872,1.8021],[98.8731,1.7933],[98.8763,1.7855],[98.8811,1.7689],[98.8918,1.7544],[98.907,1.7561],[98.9129,1.7588],[98.9185,1.7579],[98.9331,1.7583],[98.9392,1.7604],[98.9466,1.7597],[98.9581,1.7609],[98.9668,1.7641],[98.9787,1.7727],[98.9834,1.7736],[98.9871,1.7689],[98.9887,1.7609],[98.9833,1.7364],[98.9827,1.7256],[98.9845,1.7216],[98.9835,1.7126],[98.977,1.6993],[98.9737,1.6976],[98.9715,1.6844],[98.9696,1.6784],[98.9773,1.6618],[98.9863,1.6559],[98.9892,1.6508],[99.0017,1.6513],[99.0063,1.6584],[99.0101,1.6687],[99.012,1.6776],[99.0172,1.6841],[99.0196,1.6905],[99.0298,1.6984],[99.0388,1.7021],[99.0516,1.7141],[99.0618,1.6992],[99.0685,1.6968],[99.0757,1.6989],[99.085,1.6913],[99.0895,1.6818],[99.0972,1.6739],[99.1058,1.6603],[99.111,1.6558],[99.1163,1.6489],[99.1226,1.6468],[99.1308,1.6406],[99.1428,1.6399],[99.1628,1.6641],[99.1737,1.669],[99.1817,1.6744],[99.2012,1.6893],[99.2076,1.6972],[99.2164,1.7021],[99.2331,1.7182],[99.2446,1.7341],[99.258,1.7443],[99.267,1.7608],[99.2745,1.78],[99.2778,1.7918],[99.2822,1.8041],[99.2822,1.8164],[99.2837,1.8257],[99.2877,1.8373],[99.294,1.8343],[99.3011,1.8336],[99.3038,1.8316],[99.3115,1.8303],[99.3171,1.8335],[99.3252,1.8356],[99.3352,1.8423],[99.3395,1.8495],[99.3466,1.8535],[99.3482,1.8726],[99.3494,1.8747],[99.3415,1.8825],[99.3438,1.884],[99.343,1.8899],[99.3447,1.8948],[99.3403,1.8986],[99.3403,1.9062],[99.349,1.9069],[99.3539,1.9104],[99.3622,1.929],[99.3644,1.9366],[99.3682,1.9392],[99.3755,1.9407],[99.3803,1.9433],[99.393,1.9417],[99.4011,1.9398],[99.4092,1.9414],[99.418,1.9477],[99.4299,1.9488],[99.4339,1.9513],[99.4403,1.9526],[99.4471,1.95],[99.4537,1.9514],[99.4578,1.9556],[99.4584,1.9622],[99.4547,1.979],[99.4473,2.0012],[99.4479,2.01],[99.4462,2.0165],[99.4454,2.0273],[99.4469,2.049],[99.4489,2.063],[99.4499,2.081],[99.4549,2.0958],[99.4551,2.1021],[99.4595,2.1263],[99.4575,2.1252],[99.4357,2.1238],[99.4192,2.1364],[99.4071,2.1501],[99.3983,2.1563],[99.3939,2.1661],[99.3923,2.169],[99.3819,2.1666],[99.377,2.1595],[99.3767,2.156],[99.3694,2.1436],[99.3655,2.143],[99.3576,2.1388],[99.348,2.1323],[99.3421,2.1299],[99.3344,2.1233],[99.327,2.1243],[99.3134,2.1212],[99.3045,2.1177],[99.2972,2.1161],[99.2919,2.1117],[99.2776,2.1145],[99.263,2.1222],[99.2584,2.1225],[99.2474,2.1272],[99.2419,2.1365],[99.2352,2.1452],[99.233,2.1514],[99.2272,2.1559],[99.2197,2.1651],[99.2126,2.1788],[99.208,2.1863],[99.2126,2.186],[99.2124,2.1982],[99.2108,2.2025],[99.2121,2.2129],[99.2039,2.2229],[99.1988,2.2309],[99.1793,2.2317],[99.1738,2.234],[99.1602,2.2361],[99.1584,2.2393],[99.1513,2.2448],[99.1459,2.2507],[99.1378,2.2566],[99.129,2.256],[99.1252,2.2593],[99.1183,2.2562],[99.1087,2.2545],[99.1027,2.2551],[99.0968,2.2609],[99.0957,2.2676],[99.0845,2.2721],[99.0814,2.2713],[99.067,2.2723],[99.0647,2.2704],[99.053,2.2676],[99.0367,2.2577],[99.0327,2.2544],[99.0253,2.253],[99.0022,2.2537],[99.0054,2.2681],[98.9998,2.2797],[98.9936,2.3047],[98.9893,2.3369]]}},{"type":"Feature","properties":{"mhid":"1332:29","alt_name":"KABUPATEN TAPANULI UTARA","latitude":2.0028,"longitude":99.0707,"sample_value":710},"geometry":{"type":"LineString","coordinates":[[98.9035,2.3758],[98.9016,2.3823],[98.8965,2.382],[98.8939,2.3759],[98.8945,2.3686],[98.8859,2.3673],[98.884,2.3599],[98.8885,2.3578],[98.889,2.3527],[98.8922,2.3491],[98.9006,2.3466],[98.9083,2.3506],[98.9112,2.3536],[98.9105,2.3626],[98.9052,2.3656],[98.9035,2.3758]]}},{"type":"Feature","properties":{"mhid":"1332:30","alt_name":"KABUPATEN TOBA SAMOSIR","latitude":2.39793,"longitude":99.21678,"sample_value":183},"geometry":{"type":"LineString","coordinates":[[99.0741,2.6046],[99.0641,2.6112],[99.0535,2.6233],[99.0495,2.629],[99.0423,2.6337],[99.0392,2.6291],[99.0282,2.6192],[99.0155,2.6138],[99.0068,2.6137],[99.0048,2.6102],[98.9986,2.6115],[98.9957,2.6059],[98.9919,2.6026],[98.9793,2.6015],[98.9748,2.6026],[98.9696,2.608],[98.9621,2.6125],[98.9608,2.615],[98.9631,2.6211],[98.9622,2.6259],[98.9567,2.6348],[98.9582,2.6471],[98.941,2.6556],[98.9362,2.6595],[98.9336,2.6585],[98.9318,2.6518],[98.9248,2.6538],[98.9198,2.6463],[98.9138,2.6346],[98.9085,2.6302],[98.9084,2.6271],[98.9128,2.6221],[98.9131,2.614],[98.9171,2.6032],[98.9276,2.6002],[98.9247,2.5954],[98.9233,2.5874],[98.9255,2.5842],[98.9329,2.5823],[98.9349,2.578],[98.941,2.5756],[98.9497,2.5631],[98.9546,2.5688],[98.9662,2.5651],[98.9675,2.5608],[98.9728,2.5539],[98.9786,2.5552],[98.9833,2.5584],[98.9828,2.5512],[98.987,2.5478],[98.9888,2.5417],[98.9953,2.5404],[98.9921,2.547],[98.9935,2.5505],[99.0042,2.5425],[99.0091,2.535],[99.0079,2.5324],[99.0114,2.5282],[99.0284,2.5208],[99.0342,2.5147],[99.04,2.512],[99.0366,2.5059],[99.0442,2.4965],[99.0483,2.489],[99.0491,2.4802],[99.046,2.4753],[99.0461,2.4701],[99.0487,2.4643],[99.0487,2.4595],[99.0533,2.4556],[99.0576,2.4484],[99.0585,2.4429],[99.0517,2.4216],[99.0473,2.4137],[99.0417,2.41],[99.0434,2.4041],[99.0483,2.3956],[99.0589,2.3987],[99.0649,2.397],[99.0683,2.4018],[99.0751,2.4025],[99.0779,2.4059],[99.0847,2.4071],[99.0903,2.4101],[99.0998,2.4101],[99.1017,2.413],[99.1151,2.4187],[99.114,2.4219],[99.119,2.4244],[99.1213,2.4325],[99.1308,2.438],[99.1383,2.4341],[99.1446,2.4359],[99.1504,2.4305],[99.1542,2.4208],[99.1542,2.4089],[99.1517,2.4036],[99.1532,2.3991],[99.1515,2.3917],[99.1475,2.3846],[99.1387,2.3766],[99.132,2.3728],[99.1267,2.3722],[99.1222,2.3746],[99.1223,2.3791],[99.114,2.3759],[99.1154,2.3699],[99.1099,2.3593],[99.105,2.3611],[99.1003,2.355],[99.0927,2.3529],[99.0866,2.353],[99.0838,2.3454],[99.0795,2.345],[99.0737,2.349],[99.0696,2.3475],[99.0625,2.3402],[99.062,2.3363],[99.0575,2.335],[99.053,2.3381],[99.0459,2.3463],[99.0401,2.3507],[99.03,2.3639],[99.0258,2.3619],[99.0256,2.3537],[99.0225,2.3492],[99.0145,2.3464],[99.0149,2.3421],[99.0096,2.3415],[99.0031,2.3372],[99.0047,2.3337],[99.0036,2.3266],[98.9971,2.3218],[98.9922,2.3285],[98.9893,2.3369],[98.9936,2.3047],[98.9998,2.2797],[99.0054,2.2681],[99.0022,2.2537],[99.0253,2.253],[99.0327,2.2544],[99.0367,2.2577],[99.053,2.2676],[99.0647,2.2704],[99.067,2.2723],[99.0814,2.2713],[99.0845,2.2721],[99.0957,2.2676],[99.0968,2.2609],[99.1027,2.2551],[99.1087,2.2545],[99.1183,2.2562],[99.1252,2.2593],[99.129,2.256],[99.1378,2.2566],[99.1459,2.2507],[99.1513,2.2448],[99.1584,2.2393],[99.1602,2.2361],[99.1738,2.234],[99.1793,2.2317],[99.1988,2.2309],[99.2039,2.2229],[99.2121,2.2129],[99.2108,2.2025],[99.2124,2.1982],[99.2126,2.186],[99.208,2.1863],[99.2126,2.1788],[99.2197,2.1651],[99.2272,2.1559],[99.233,2.1514],[99.2352,2.1452],[99.2419,2.1365],[99.2474,2.1272],[99.2584,2.1225],[99.263,2.1222],[99.2776,2.1145],[99.2919,2.1117],[99.2972,2.1161],[99.3045,2.1177],[99.3134,2.1212],[99.327,2.1243],[99.3344,2.1233],[99.3421,2.1299],[99.348,2.1323],[99.3576,2.1388],[99.3655,2.143],[99.3694,2.1436],[99.3767,2.156],[99.377,2.1595],[99.3819,2.1666],[99.3923,2.169],[99.3939,2.1661],[99.4043,2.176],[99.4092,2.1828],[99.415,2.1933],[99.4173,2.1994],[99.4156,2.2109],[99.4229,2.2157],[99.4358,2.2174],[99.4649,2.2291],[99.4741,2.2337],[99.4762,2.2393],[99.482,2.2427],[99.4912,2.2423],[99.4969,2.2433],[99.501,2.247],[99.5059,2.2465],[99.5123,2.2437],[99.5224,2.2417],[99.53,2.2467],[99.537,2.2481],[99.5363,2.2555],[99.5397,2.2591],[99.5424,2.2655],[99.5469,2.269],[99.5448,2.293],[99.5487,2.3066],[99.5552,2.3097],[99.5598,2.3028],[99.5637,2.306],[99.5695,2.3059],[99.5781,2.3076],[99.5847,2.3129],[99.5828,2.3281],[99.5574,2.3344],[99.5331,2.3435],[99.5228,2.3487],[99.521,2.3543],[99.5204,2.3626],[99.5175,2.3669],[99.5181,2.3749],[99.523,2.3792],[99.5211,2.3866],[99.5238,2.3879],[99.5232,2.3941],[99.5264,2.4035],[99.5271,2.413],[99.5258,2.4182],[99.5276,2.4322],[99.5237,2.4344],[99.5197,2.4408],[99.5221,2.4457],[99.5278,2.4511],[99.5215,2.4591],[99.5124,2.4415],[99.5128,2.4348],[99.5175,2.4251],[99.5174,2.4193],[99.511,2.4163],[99.51,2.4125],[99.5169,2.4062],[99.5172,2.3985],[99.5031,2.3953],[99.4736,2.4185],[99.4515,2.4348],[99.4207,2.4586],[99.4233,2.4655],[99.4398,2.489],[99.4462,2.4939],[99.4507,2.5029],[99.4493,2.505],[99.4504,2.5125],[99.4523,2.5382],[99.453,2.5412],[99.4612,2.5508],[99.4554,2.5553],[99.4429,2.5625],[99.4505,2.5695],[99.4558,2.5762],[99.4578,2.5876],[99.4574,2.5959],[99.4586,2.6007],[99.4491,2.5959],[99.445,2.5917],[99.4458,2.5813],[99.4427,2.5772],[99.4328,2.568],[99.4267,2.5704],[99.4207,2.5629],[99.4144,2.5604],[99.41,2.5649],[99.4147,2.5779],[99.4175,2.5807],[99.4212,2.5907],[99.4264,2.5952],[99.4238,2.5973],[99.413,2.5922],[99.4064,2.5909],[99.3982,2.5832],[99.395,2.5783],[99.3911,2.5666],[99.3868,2.5641],[99.3788,2.565],[99.3733,2.5686],[99.3632,2.5661],[99.3567,2.5616],[99.3477,2.5608],[99.3447,2.5636],[99.3265,2.5662],[99.3246,2.5642],[99.3106,2.5618],[99.3085,2.5741],[99.3012,2.5729],[99.296,2.5662],[99.2852,2.559],[99.2788,2.5514],[99.2748,2.5494],[99.2675,2.5493],[99.2595,2.5426],[99.2513,2.5393],[99.2456,2.5399],[99.2387,2.5445],[99.2304,2.5448],[99.2205,2.5381],[99.2163,2.5316],[99.2143,2.5244],[99.2084,2.5291],[99.1978,2.5315],[99.1917,2.5314],[99.1829,2.5337],[99.1817,2.5389],[99.1811,2.5526],[99.1771,2.5571],[99.1693,2.5597],[99.1622,2.5676],[99.1571,2.5681],[99.1454,2.5731],[99.14,2.572],[99.132,2.567],[99.1253,2.569],[99.1167,2.5692],[99.1127,2.5736],[99.1003,2.572],[99.0949,2.575],[99.0834,2.586],[99.0816,2.5902],[99.075,2.5977],[99.0741,2.6046]]}},{"type":"Feature","properties":{"mhid":"1332:31","alt_name":"KABUPATEN LABUHAN BATU","latitude":2.26667,"longitude":100.1,"sample_value":525},"geometry":{"type":"LineString","coordinates":[[100.1253,2.5481],[100.1238,2.5589],[100.1243,2.5707],[100.1213,2.5825],[100.1192,2.6001],[100.1187,2.6174],[100.119,2.6398],[100.1153,2.6368],[100.1132,2.625],[100.1141,2.6092],[100.1131,2.6027],[100.1154,2.5768],[100.1162,2.5601],[100.118,2.5511],[100.1253,2.5481]]}},{"type":"Feature","properties":{"mhid":"1332:31","alt_name":"KABUPATEN LABUHAN BATU","latitude":2.26667,"longitude":100.1,"sample_value":525},"geometry":{"type":"LineString","coordinates":[[100.3228,2.5452],[100.321,2.5511],[100.3006,2.567],[100.2958,2.5679],[100.2945,2.5726],[100.286,2.576],[100.2754,2.5905],[100.272,2.5979],[100.2702,2.6135],[100.2669,2.6145],[100.2629,2.6192],[100.2573,2.6211],[100.2483,2.6279],[100.2352,2.6425],[100.2294,2.6603],[100.2295,2.6646],[100.2225,2.6786],[100.2241,2.6859],[100.221,2.6933],[100.2201,2.7052],[100.2118,2.7087],[100.203,2.7097],[100.1959,2.7119],[100.1853,2.7117],[100.1709,2.7095],[100.1597,2.7043],[100.1476,2.6959],[100.1354,2.6836],[100.1236,2.6618],[100.1227,2.6589],[100.1225,2.6425],[100.1212,2.625],[100.1215,2.6147],[100.1231,2.606],[100.1263,2.5968],[100.129,2.5813],[100.1319,2.5728],[100.1366,2.5433],[100.1132,2.5458],[100.1045,2.5457],[100.0943,2.6153],[100.1001,2.6745],[100.0963,2.6861],[100.0907,2.6955],[100.0812,2.7046],[100.0764,2.7131],[100.07,2.7184],[100.0596,2.7302],[100.0492,2.7358],[100.0492,2.7328],[100.0501,2.7178],[100.0538,2.711],[100.0555,2.6957],[100.0581,2.6784],[100.0636,2.6589],[100.0663,2.6388],[100.0694,2.6204],[100.0693,2.6082],[100.0727,2.5836],[100.0727,2.5623],[100.0745,2.5447],[100.0727,2.5408],[100.0661,2.5327],[100.0585,2.5257],[100.0525,2.5049],[100.0475,2.4967],[100.0401,2.4908],[100.0229,2.4615],[100.0206,2.4504],[100.0128,2.43],[100.0101,2.4216],[100.0059,2.4162],[100.001,2.3959],[99.9803,2.3647],[99.9738,2.3514],[99.9651,2.3379],[99.9546,2.3199],[99.9469,2.2968],[99.9444,2.285],[99.9398,2.274],[99.9333,2.262],[99.9339,2.2572],[99.9372,2.2529],[99.9441,2.2498],[99.9491,2.2363],[99.9636,2.2029],[99.9302,2.1905],[99.9144,2.1857],[99.9062,2.1841],[99.8987,2.1813],[99.8165,2.1806],[99.8053,2.1817],[99.8006,2.1811],[99.7936,2.1829],[99.785,2.1831],[99.7739,2.1818],[99.7716,2.177],[99.7712,2.1599],[99.7699,2.1562],[99.7663,2.1378],[99.7608,2.1357],[99.7509,2.1353],[99.7462,2.1319],[99.7445,2.1251],[99.7352,2.1201],[99.7303,2.1155],[99.727,2.1034],[99.7178,2.0861],[99.7101,2.0825],[99.6911,2.0788],[99.6715,2.069],[99.6705,2.0662],[99.6701,2.0548],[99.6631,2.0462],[99.6619,2.038],[99.6683,2.036],[99.6828,2.0371],[99.6837,2.035],[99.6813,2.0271],[99.6879,2.0157],[99.6884,2.0068],[99.6902,2.0017],[99.6875,1.9952],[99.6906,1.9696],[99.6797,1.9447],[99.6775,1.9373],[99.7047,1.9299],[99.7067,1.9351],[99.714,1.9631],[99.7323,1.9766],[99.7386,1.977],[99.7401,1.9797],[99.7459,2.0025],[99.7468,2.0037],[99.7591,2.0044],[99.7668,2.0073],[99.7697,2.0127],[99.7812,2.0171],[99.7914,2.0247],[99.798,2.0183],[99.8025,2.016],[99.8068,2.0215],[99.816,2.0257],[99.8242,2.0247],[99.8229,2.0202],[99.8242,2.0161],[99.8279,2.0161],[99.8371,2.0193],[99.8421,2.0191],[99.8465,2.0167],[99.8419,2.0104],[99.8383,2],[99.8289,1.9945],[99.8302,1.9911],[99.8408,1.9811],[99.841,1.9708],[99.833,1.9418],[99.8317,1.9311],[99.8334,1.9263],[99.8347,1.9148],[99.8322,1.9115],[99.8242,1.9107],[99.8086,1.9036],[99.8141,1.8954],[99.8174,1.8838],[99.816,1.8746],[99.8124,1.866],[99.8168,1.8611],[99.8182,1.8521],[99.8209,1.8445],[99.8234,1.8318],[99.8285,1.8257],[99.8366,1.8104],[99.8397,1.8021],[99.8394,1.7994],[99.85,1.805],[99.8557,1.8061],[99.86,1.8159],[99.8571,1.823],[99.8554,1.8333],[99.8574,1.8447],[99.8575,1.8646],[99.8564,1.8808],[99.8564,1.9058],[99.873,1.9173],[99.879,1.9245],[99.8817,1.9348],[99.8859,1.9445],[99.8933,1.9519],[99.8999,1.9541],[99.9036,1.9579],[99.9095,1.9591],[99.9178,1.958],[99.9233,1.9645],[99.9303,1.9692],[99.9402,1.9712],[99.9509,1.97],[99.9661,1.9658],[99.9745,1.9619],[99.979,1.9614],[99.9855,1.9638],[99.9886,1.9675],[99.9894,1.9722],[99.9965,1.9747],[99.9966,1.979],[100.0012,1.9812],[100.0009,1.9671],[100.0013,1.939],[100.0042,1.9347],[100.0309,1.9352],[100.0398,1.9445],[100.0573,1.9799],[100.0587,1.9853],[100.0551,1.9885],[100.0483,1.987],[100.04,1.9892],[100.0264,1.9942],[100.018,1.9941],[100.0147,1.9997],[100.0294,2.0115],[100.0326,2.0187],[100.0449,2.0304],[100.0442,2.0426],[100.0465,2.0534],[100.0451,2.061],[100.0445,2.0855],[100.07,2.1024],[100.0735,2.1051],[100.088,2.1047],[100.0951,2.1082],[100.0973,2.1146],[100.1202,2.1586],[100.1291,2.1769],[100.1352,2.191],[100.1667,2.1925],[100.2104,2.1932],[100.2131,2.2096],[100.3313,2.2122],[100.3548,2.2114],[100.3651,2.2102],[100.3594,2.2117],[100.35,2.2306],[100.3354,2.2534],[100.3336,2.2639],[100.3278,2.2759],[100.3206,2.2868],[100.3174,2.2897],[100.3149,2.3042],[100.3131,2.31],[100.3069,2.3231],[100.3008,2.3401],[100.3019,2.3499],[100.2994,2.3565],[100.298,2.3803],[100.2962,2.4052],[100.2955,2.4282],[100.2968,2.4369],[100.2996,2.4462],[100.3001,2.4608],[100.3061,2.4752],[100.3071,2.48],[100.3071,2.4913],[100.3124,2.5076],[100.3139,2.51],[100.3196,2.5289],[100.3228,2.5452]]}},{"type":"Feature","properties":{"mhid":"1332:32","alt_name":"KABUPATEN ASAHAN","latitude":2.78333,"longitude":99.55,"sample_value":191},"geometry":{"type":"MultiLineString","coordinates":[[[99.9847,2.8527],[99.9868,2.8554],[99.9868,2.8639],[99.9885,2.8745],[99.9874,2.8832],[99.9885,2.9018],[99.9903,2.9125],[99.9949,2.9332],[99.9953,2.9386],[99.9935,2.9455],[99.9929,2.9539],[99.99,2.9579],[99.9824,2.9576],[99.9822,2.953],[99.9787,2.9425],[99.9759,2.9502],[99.9603,2.9571],[99.9563,2.9613],[99.9504,2.9631],[99.9345,2.9738],[99.9211,2.9855],[99.9151,2.992],[99.9084,3.0014],[99.9063,3.0024],[99.8942,3.0239],[99.8945,3.0266],[99.8908,3.0376],[99.8804,3.0354],[99.8691,3.029],[99.86,3.0353],[99.8563,3.0413],[99.8491,3.0487],[99.8347,3.059],[99.8168,3.0773],[99.8105,3.0869],[99.8065,3.0895],[99.8003,3.0979],[99.7975,3.0996],[99.7947,3.1062],[99.7859,3.1146],[99.7816,3.125],[99.7777,3.1254],[99.7679,3.1367],[99.762,3.1492],[99.7578,3.1692],[99.7523,3.1708],[99.7476,3.1601],[99.7416,3.1527],[99.7228,3.1359],[99.7127,3.1298],[99.7067,3.1251],[99.6936,3.1054],[99.6483,3.1055],[99.6402,3.1159],[99.6353,3.1197],[99.6326,3.1174],[99.6298,3.1248],[99.6218,3.1304],[99.616,3.1269],[99.6076,3.1269],[99.589,3.1107],[99.5999,3.0983],[99.602,3.102],[99.6101,3.1037],[99.611,3.0983],[99.6078,3.0957],[99.6068,3.0914],[99.6079,3.0808],[99.6052,3.0753],[99.5952,3.0669],[99.5981,3.0579],[99.5945,3.0432],[99.5877,3.0384],[99.584,3.0437],[99.5698,3.0382],[99.5657,3.0342],[99.5557,3.0276],[99.5563,3.0179],[99.5496,3.0181],[99.5494,3.0361],[99.557,3.0361],[99.5572,3.0491],[99.5718,3.0491],[99.5724,3.0698],[99.5612,3.0702],[99.5449,3.0387],[99.538,3.0344],[99.5335,3.0294],[99.5299,3.0304],[99.5239,3.0263],[99.5231,3.0209],[99.5173,3.0136],[99.5092,3.0116],[99.5003,3.0054],[99.496,3],[99.4943,2.9943],[99.4965,2.9892],[99.4966,2.983],[99.4873,2.9765],[99.4772,2.967],[99.4743,2.9625],[99.4675,2.9608],[99.4616,2.9571],[99.4548,2.9565],[99.4543,2.9514],[99.4557,2.9441],[99.4496,2.9407],[99.446,2.9323],[99.4404,2.9293],[99.4309,2.9296],[99.4244,2.9278],[99.4209,2.9228],[99.4144,2.9216],[99.4094,2.9171],[99.4033,2.917],[99.3974,2.9141],[99.3915,2.9059],[99.3898,2.8998],[99.3833,2.8967],[99.3764,2.8857],[99.3713,2.8833],[99.3614,2.8822],[99.3555,2.8862],[99.3532,2.8921],[99.3486,2.8956],[99.3411,2.8937],[99.3335,2.8944],[99.3255,2.8897],[99.3217,2.886],[99.3165,2.8859],[99.3097,2.8791],[99.3065,2.8812],[99.3023,2.8798],[99.2967,2.8712],[99.2888,2.8728],[99.2878,2.8698],[99.2801,2.8653],[99.2741,2.8655],[99.2656,2.8605],[99.2635,2.8494],[99.2586,2.8458],[99.26,2.8419],[99.2566,2.8371],[99.2579,2.832],[99.2515,2.8245],[99.2483,2.8125],[99.2411,2.8092],[99.24,2.807],[99.2254,2.8004],[99.2122,2.7857],[99.2102,2.7745],[99.2079,2.77],[99.1973,2.7666],[99.1841,2.7544],[99.1762,2.7523],[99.1695,2.7484],[99.1664,2.7429],[99.158,2.7352],[99.1466,2.7194],[99.1348,2.7117],[99.1246,2.6959],[99.1231,2.6889],[99.1186,2.6805],[99.1056,2.6775],[99.1005,2.6738],[99.0908,2.6699],[99.0797,2.6506],[99.0741,2.6444],[99.0733,2.6363],[99.0745,2.629],[99.0729,2.6126],[99.0741,2.6046],[99.075,2.5977],[99.0816,2.5902],[99.0834,2.586],[99.0949,2.575],[99.1003,2.572],[99.1127,2.5736],[99.1167,2.5692],[99.1253,2.569],[99.132,2.567],[99.14,2.572],[99.1454,2.5731],[99.1571,2.5681],[99.1622,2.5676],[99.1693,2.5597],[99.1771,2.5571],[99.1811,2.5526],[99.1817,2.5389],[99.1829,2.5337],[99.1917,2.5314],[99.1978,2.5315],[99.2084,2.5291],[99.2143,2.5244],[99.2163,2.5316],[99.2205,2.5381],[99.2304,2.5448],[99.2387,2.5445],[99.2456,2.5399],[99.2513,2.5393],[99.2595,2.5426],[99.2675,2.5493],[99.2748,2.5494],[99.2788,2.5514],[99.2852,2.559],[99.296,2.5662],[99.3012,2.5729],[99.3085,2.5741],[99.3106,2.5618],[99.3246,2.5642],[99.3265,2.5662],[99.3447,2.5636],[99.3477,2.5608],[99.3567,2.5616],[99.3632,2.5661],[99.3733,2.5686],[99.3788,2.565],[99.3868,2.5641],[99.3911,2.5666],[99.395,2.5783],[99.3982,2.5832],[99.4064,2.5909],[99.413,2.5922],[99.4238,2.5973],[99.4264,2.5952],[99.4212,2.5907],[99.4175,2.5807],[99.4147,2.5779],[99.41,2.5649],[99.4144,2.5604],[99.4207,2.5629],[99.4267,2.5704],[99.4328,2.568],[99.4427,2.5772],[99.4458,2.5813],[99.445,2.5917],[99.4491,2.5959],[99.4586,2.6007],[99.4574,2.5959],[99.4578,2.5876],[99.4558,2.5762],[99.4505,2.5695],[99.4429,2.5625],[99.4554,2.5553],[99.4612,2.5508],[99.4725,2.556],[99.4794,2.5639],[99.4855,2.5732],[99.4896,2.5774],[99.5,2.5852],[99.512,2.588],[99.5178,2.5921],[99.5219,2.5906],[99.5271,2.5923],[99.5384,2.5922],[99.543,2.603],[99.5558,2.6062],[99.5596,2.6047],[99.5629,2.5945],[99.5696,2.585],[99.5781,2.5864],[99.5832,2.5913],[99.5868,2.5909],[99.5916,2.5857],[99.6068,2.5792],[99.6088,2.5752],[99.6382,2.5756],[99.6434,2.5762],[99.6438,2.5802],[99.6544,2.5815],[99.6676,2.5872],[99.6796,2.5861],[99.6841,2.5873],[99.697,2.587],[99.7122,2.5966],[99.7193,2.6045],[99.7255,2.6065],[99.7331,2.6152],[99.7378,2.6221],[99.7425,2.6262],[99.7507,2.6253],[99.76,2.6345],[99.8222,2.6885],[99.8271,2.6965],[99.8672,2.73],[99.8676,2.739],[99.8841,2.7487],[99.889,2.7546],[99.9256,2.794],[99.9434,2.8115],[99.9626,2.829],[99.9847,2.8527]],[[99.8051,3.017],[99.8164,3.024],[99.82,3.0235],[99.8194,2.9946],[99.8098,2.9929],[99.8066,2.9865],[99.8086,2.9704],[99.8105,2.9676],[99.8166,2.9652],[99.8206,2.9612],[99.8339,2.9564],[99.8375,2.9472],[99.8374,2.9368],[99.831,2.9298],[99.8258,2.9288],[99.8164,2.9241],[99.8138,2.9263],[99.8037,2.9288],[99.7964,2.9268],[99.79,2.9236],[99.7767,2.9214],[99.7725,2.9238],[99.7578,2.9384],[99.753,2.9421],[99.7556,2.9525],[99.7556,2.9593],[99.7626,2.969],[99.7804,2.9693],[99.7782,2.9794],[99.766,3.009],[99.7953,3.0089],[99.7918,3.0169],[99.8051,3.017]]]}},{"type":"Feature","properties":{"mhid":"1332:33","alt_name":"KABUPATEN SIMALUNGUN","latitude":2.9,"longitude":99,"sample_value":961},"geometry":{"type":"MultiLineString","coordinates":[[[98.7481,3.2184],[98.7448,3.2169],[98.7342,3.2218],[98.7302,3.2203],[98.7235,3.2073],[98.7277,3.2034],[98.7294,3.1969],[98.7267,3.1853],[98.7305,3.1752],[98.7238,3.1491],[98.7172,3.133],[98.7088,3.103],[98.7058,3.0638],[98.7043,3.0598],[98.6945,3.0518],[98.6907,3.0505],[98.6874,3.0527],[98.6823,3.0674],[98.6734,3.0713],[98.6592,3.0666],[98.6461,3.0669],[98.6273,3.0625],[98.6247,3.0635],[98.6221,3.0718],[98.6205,3.0891],[98.6172,3.0972],[98.6134,3.1013],[98.6053,3.1041],[98.6045,3.0992],[98.6006,3.0952],[98.5954,3.0951],[98.5934,3.091],[98.5837,3.0799],[98.5827,3.077],[98.5864,3.0624],[98.5801,3.0509],[98.5756,3.048],[98.5661,3.033],[98.557,3.0279],[98.5575,3.0216],[98.5539,3.0146],[98.5533,3.0066],[98.5511,3.0001],[98.5547,2.9928],[98.5515,2.9875],[98.5492,2.9781],[98.55,2.9731],[98.5536,2.9689],[98.5486,2.9605],[98.547,2.9548],[98.5475,2.9495],[98.5412,2.9362],[98.5341,2.9257],[98.5331,2.9036],[98.5404,2.8972],[98.5441,2.8981],[98.5486,2.8953],[98.5492,2.8912],[98.5526,2.896],[98.5579,2.899],[98.5609,2.8917],[98.569,2.8898],[98.5718,2.8843],[98.5776,2.8828],[98.587,2.8829],[98.5934,2.8865],[98.5985,2.8816],[98.5971,2.8762],[98.6048,2.8687],[98.612,2.869],[98.6178,2.8653],[98.622,2.868],[98.63,2.8673],[98.6356,2.8584],[98.6473,2.8563],[98.6648,2.862],[98.668,2.86],[98.6746,2.8736],[98.6803,2.8732],[98.6866,2.8668],[98.6875,2.8569],[98.6918,2.8507],[98.7035,2.8446],[98.7174,2.8402],[98.7228,2.84],[98.7296,2.836],[98.7357,2.8244],[98.745,2.8227],[98.7466,2.8198],[98.7527,2.8203],[98.7562,2.814],[98.7638,2.8085],[98.773,2.8052],[98.776,2.8005],[98.7853,2.795],[98.7925,2.7929],[98.7972,2.7851],[98.805,2.7773],[98.8059,2.7706],[98.8115,2.774],[98.8202,2.7702],[98.8271,2.7623],[98.8282,2.7558],[98.8332,2.7479],[98.8415,2.7408],[98.8518,2.7371],[98.8544,2.7324],[98.8594,2.7312],[98.8626,2.7331],[98.8727,2.7279],[98.8769,2.7234],[98.8858,2.7193],[98.8956,2.701],[98.9096,2.6977],[98.9181,2.7018],[98.9225,2.6948],[98.9156,2.6929],[98.9223,2.6858],[98.9243,2.6758],[98.9269,2.6726],[98.9349,2.6759],[98.9404,2.6671],[98.9424,2.6598],[98.941,2.6556],[98.9582,2.6471],[98.9567,2.6348],[98.9622,2.6259],[98.9631,2.6211],[98.9608,2.615],[98.9621,2.6125],[98.9696,2.608],[98.9748,2.6026],[98.9793,2.6015],[98.9919,2.6026],[98.9957,2.6059],[98.9986,2.6115],[99.0048,2.6102],[99.0068,2.6137],[99.0155,2.6138],[99.0282,2.6192],[99.0392,2.6291],[99.0423,2.6337],[99.0495,2.629],[99.0535,2.6233],[99.0641,2.6112],[99.0741,2.6046],[99.0729,2.6126],[99.0745,2.629],[99.0733,2.6363],[99.0741,2.6444],[99.0797,2.6506],[99.0908,2.6699],[99.1005,2.6738],[99.1056,2.6775],[99.1186,2.6805],[99.1231,2.6889],[99.1246,2.6959],[99.1348,2.7117],[99.1466,2.7194],[99.158,2.7352],[99.1664,2.7429],[99.1695,2.7484],[99.1762,2.7523],[99.1841,2.7544],[99.1973,2.7666],[99.2079,2.77],[99.2102,2.7745],[99.2122,2.7857],[99.2254,2.8004],[99.24,2.807],[99.2411,2.8092],[99.2483,2.8125],[99.2515,2.8245],[99.2579,2.832],[99.2566,2.8371],[99.26,2.8419],[99.2586,2.8458],[99.2635,2.8494],[99.2656,2.8605],[99.2741,2.8655],[99.2801,2.8653],[99.2878,2.8698],[99.2888,2.8728],[99.2967,2.8712],[99.3023,2.8798],[99.3065,2.8812],[99.3097,2.8791],[99.3165,2.8859],[99.3217,2.886],[99.3255,2.8897],[99.3335,2.8944],[99.3411,2.8937],[99.3486,2.8956],[99.3532,2.8921],[99.3555,2.8862],[99.3614,2.8822],[99.3713,2.8833],[99.3764,2.8857],[99.3833,2.8967],[99.3898,2.8998],[99.3915,2.9059],[99.3974,2.9141],[99.4033,2.917],[99.4094,2.9171],[99.4144,2.9216],[99.4209,2.9228],[99.4244,2.9278],[99.4309,2.9296],[99.4404,2.9293],[99.446,2.9323],[99.4496,2.9407],[99.4557,2.9441],[99.4543,2.9514],[99.4548,2.9565],[99.4616,2.9571],[99.4675,2.9608],[99.4743,2.9625],[99.4772,2.967],[99.4873,2.9765],[99.4966,2.983],[99.4965,2.9892],[99.4943,2.9943],[99.496,3],[99.5003,3.0054],[99.5092,3.0116],[99.5173,3.0136],[99.5231,3.0209],[99.5239,3.0263],[99.5299,3.0304],[99.5335,3.0294],[99.538,3.0344],[99.5449,3.0387],[99.5612,3.0702],[99.5659,3.0775],[99.5465,3.0982],[99.5369,3.0989],[99.5288,3.1019],[99.517,3.1095],[99.5082,3.1011],[99.4821,3.1119],[99.4928,3.1214],[99.4219,3.1467],[99.379,3.1497],[99.3631,3.1511],[99.3719,3.1704],[99.385,3.1954],[99.3975,3.2231],[99.4046,3.2419],[99.407,3.2516],[99.402,3.2533],[99.3971,3.25],[99.3947,3.2446],[99.3865,3.2534],[99.379,3.2476],[99.374,3.247],[99.3657,3.2347],[99.3613,3.2254],[99.3626,3.2215],[99.3556,3.2162],[99.3509,3.2267],[99.3444,3.2317],[99.342,3.238],[99.3453,3.2489],[99.3443,3.2522],[99.3473,3.2598],[99.3453,3.2644],[99.3458,3.2698],[99.3484,3.2743],[99.3442,3.2877],[99.3086,3.2998],[99.3094,3.2875],[99.3053,3.281],[99.2989,3.2785],[99.2932,3.2723],[99.282,3.2708],[99.2724,3.2745],[99.2675,3.2733],[99.2601,3.2641],[99.2639,3.2616],[99.2639,3.2571],[99.2585,3.2539],[99.2543,3.2534],[99.2523,3.2567],[99.241,3.2526],[99.2453,3.2446],[99.2408,3.241],[99.2362,3.2347],[99.2339,3.2257],[99.2303,3.2203],[99.231,3.2128],[99.2294,3.205],[99.2304,3.1997],[99.208,3.2236],[99.2065,3.2191],[99.1992,3.2129],[99.2012,3.2092],[99.2003,3.2042],[99.1907,3.1945],[99.1866,3.197],[99.172,3.1969],[99.1755,3.1856],[99.1682,3.181],[99.1681,3.1768],[99.1577,3.1703],[99.1572,3.1672],[99.1378,3.1674],[99.1373,3.164],[99.1129,3.143],[99.0959,3.1346],[99.0818,3.1348],[99.0818,3.1293],[99.0754,3.1293],[99.0464,3.1178],[99.046,3.114],[99.032,3.1081],[99.0318,3.0959],[99.0305,3.0935],[99.0186,3.0844],[99.0071,3.0703],[99.0093,3.0603],[99.01,3.0499],[99.0087,3.0468],[99.0015,3.0404],[98.9996,3.027],[98.9889,3.0234],[98.9801,3.0194],[98.9573,3.0156],[98.9275,3.0159],[98.9329,3.0219],[98.935,3.0263],[98.9528,3.0382],[98.9563,3.0475],[98.9742,3.0659],[98.978,3.072],[98.9815,3.082],[98.98,3.0919],[98.9786,3.0927],[98.9769,3.1075],[98.9772,3.1188],[98.9856,3.1219],[98.9825,3.1269],[98.9751,3.1297],[98.9721,3.1293],[98.9713,3.1369],[98.9649,3.1438],[98.9861,3.1725],[98.987,3.1812],[98.9893,3.183],[98.9968,3.1819],[99.0006,3.1861],[99.003,3.2023],[98.999,3.2062],[98.9782,3.2071],[98.9399,3.2075],[98.9408,3.2117],[98.9472,3.2161],[98.9526,3.2219],[98.9541,3.2352],[98.9607,3.2572],[98.9648,3.268],[98.9649,3.273],[98.9579,3.2802],[98.9534,3.2804],[98.952,3.2764],[98.9413,3.276],[98.9387,3.2719],[98.9271,3.267],[98.9204,3.2611],[98.9091,3.2539],[98.9008,3.2601],[98.8679,3.2615],[98.8627,3.2572],[98.865,3.2497],[98.8629,3.2465],[98.8633,3.2413],[98.86,3.2377],[98.8554,3.2364],[98.8546,3.2308],[98.8435,3.2255],[98.8407,3.2224],[98.8025,3.2228],[98.7888,3.2225],[98.7856,3.2158],[98.783,3.2141],[98.7706,3.2146],[98.7622,3.2202],[98.7589,3.2136],[98.7501,3.209],[98.7481,3.2184]],[[99.0845,3.0142],[99.0923,3.0105],[99.0974,3.0159],[99.1041,3.015],[99.1059,3.0125],[99.1019,3.007],[99.0958,3.0059],[99.0926,2.9958],[99.0922,2.9875],[99.0947,2.9812],[99.0815,2.9786],[99.0845,2.9728],[99.0902,2.9726],[99.0842,2.9557],[99.0981,2.963],[99.1013,2.9597],[99.0929,2.9546],[99.0966,2.9436],[99.1032,2.9394],[99.1016,2.9357],[99.0959,2.934],[99.0898,2.9344],[99.0833,2.9312],[99.078,2.9263],[99.0597,2.9149],[99.054,2.913],[99.0489,2.9071],[99.0399,2.9084],[99.0333,2.9009],[99.028,2.8922],[99.0175,2.8905],[99.0165,2.8985],[99.0187,2.9015],[99.0248,2.9043],[99.0283,2.9088],[99.0384,2.9136],[99.0335,2.9192],[99.0411,2.9254],[99.0303,2.9328],[99.0291,2.9371],[99.0207,2.9452],[99.019,2.9494],[99.0247,2.96],[99.0259,2.9724],[99.0208,2.9812],[99.025,2.9858],[99.0264,2.9908],[99.0294,2.9915],[99.0317,2.9968],[99.0369,2.9977],[99.0364,3.0023],[99.0384,3.0076],[99.0578,3.0063],[99.0721,3.0136],[99.0845,3.0142]]]}},{"type":"Feature","properties":{"mhid":"1332:34","alt_name":"KABUPATEN DAIRI","latitude":2.86667,"longitude":98.23333,"sample_value":340},"geometry":{"type":"LineString","coordinates":[[98.5214,2.8749],[98.5143,2.8702],[98.5063,2.8686],[98.4923,2.8686],[98.4824,2.8708],[98.4728,2.8742],[98.4625,2.8808],[98.4531,2.8852],[98.4486,2.8907],[98.44,2.8903],[98.4356,2.8935],[98.4322,2.9017],[98.43,2.9168],[98.412,2.9225],[98.4001,2.9244],[98.3944,2.9237],[98.3685,2.9325],[98.3637,2.9373],[98.3485,2.9627],[98.3443,2.9662],[98.3188,2.9671],[98.3145,2.9707],[98.3099,2.9707],[98.3023,2.9653],[98.2966,2.9662],[98.2872,2.9611],[98.2695,2.9538],[98.2488,2.9312],[98.245,2.9335],[98.2264,2.9482],[98.2212,2.9533],[98.2166,2.9641],[98.2144,2.9671],[98.2064,2.9723],[98.2044,2.9803],[98.2008,2.9841],[98.1964,2.9939],[98.1959,3.0022],[98.1927,3.0171],[98.1925,3.0235],[98.1974,3.032],[98.1983,3.043],[98.1962,3.05],[98.1915,3.053],[98.1853,3.0636],[98.1738,3.0796],[98.1715,3.0796],[98.1557,3.0672],[98.1391,3.0484],[98.1336,3.0484],[98.1234,3.0538],[98.1141,3.0541],[98.1078,3.0562],[98.0989,3.0704],[98.0957,3.0719],[98.0854,3.0709],[98.0773,3.0746],[98.0756,3.0848],[98.0671,3.1038],[98.0597,3.1102],[98.0534,3.1191],[98.0504,3.121],[98.0428,3.1215],[98.0359,3.1239],[98.0292,3.1229],[98.0283,3.1196],[98.0314,3.1147],[98.0284,3.108],[98.0294,3.1003],[98.0356,3.0925],[98.0379,3.0862],[98.0385,3.0793],[98.0317,3.0781],[98.0278,3.0817],[98.0209,3.0808],[98.016,3.0833],[98.0043,3.0853],[97.9913,3.0919],[97.9873,3.0912],[97.9828,3.0868],[97.9825,3.0817],[97.9768,3.079],[97.9745,3.0728],[97.9611,3.0659],[97.9495,3.0657],[97.9496,3.0731],[97.9451,3.0751],[97.9384,3.0749],[97.932,3.0694],[97.9303,3.0631],[97.9303,3.0543],[97.9424,3.048],[97.9443,3.0442],[97.9391,3.037],[97.9387,3.0258],[97.9461,3.0104],[97.9469,3.0057],[97.9419,2.9971],[97.9351,2.9895],[97.9496,2.9877],[97.9594,2.9813],[97.9646,2.9732],[97.9638,2.9619],[97.9487,2.8953],[97.9616,2.8914],[97.9705,2.8899],[97.9833,2.8847],[97.985,2.8826],[97.9924,2.8822],[97.9974,2.8743],[98.0026,2.8747],[98.0136,2.867],[98.0278,2.8559],[98.0319,2.8492],[98.0396,2.8473],[98.0419,2.837],[98.0462,2.8269],[98.049,2.823],[98.0557,2.8187],[98.0627,2.8169],[98.0677,2.8174],[98.0986,2.8228],[98.098,2.8186],[98.1017,2.8059],[98.1051,2.7903],[98.1169,2.785],[98.1307,2.7796],[98.1349,2.7753],[98.1446,2.7705],[98.1571,2.7695],[98.1674,2.7646],[98.1797,2.756],[98.1865,2.75],[98.1907,2.7411],[98.2002,2.7332],[98.212,2.7276],[98.2254,2.7231],[98.2369,2.7154],[98.2513,2.7083],[98.2529,2.7128],[98.2604,2.7193],[98.2716,2.7203],[98.2798,2.7164],[98.2943,2.7049],[98.3012,2.7021],[98.3102,2.7],[98.3286,2.6969],[98.3351,2.6925],[98.3385,2.6874],[98.3404,2.6785],[98.3447,2.6723],[98.3537,2.6629],[98.3607,2.6586],[98.3664,2.6571],[98.374,2.6526],[98.3939,2.6478],[98.4015,2.6425],[98.4199,2.638],[98.425,2.6321],[98.4285,2.6236],[98.4329,2.6075],[98.4379,2.5944],[98.4442,2.5817],[98.4499,2.5744],[98.4557,2.5688],[98.4646,2.5626],[98.4669,2.5528],[98.4669,2.5528],[98.4777,2.5531],[98.4875,2.5483],[98.4969,2.5511],[98.5049,2.5575],[98.5116,2.5605],[98.5151,2.5633],[98.5179,2.5666],[98.5447,2.5783],[98.5541,2.5853],[98.5547,2.5871],[98.5575,2.6142],[98.5601,2.631],[98.5602,2.6323],[98.5617,2.6496],[98.5647,2.6664],[98.5657,2.6802],[98.5679,2.6919],[98.5703,2.6995],[98.5728,2.7126],[98.573,2.7283],[98.5748,2.7351],[98.5783,2.7352],[98.573,2.7372],[98.5702,2.7429],[98.5704,2.7477],[98.5678,2.7614],[98.5628,2.7681],[98.5547,2.773],[98.5511,2.7813],[98.5447,2.7858],[98.5384,2.7872],[98.5278,2.7945],[98.5285,2.8127],[98.5257,2.8165],[98.528,2.8238],[98.526,2.8306],[98.5274,2.8326],[98.5252,2.8388],[98.5289,2.8469],[98.524,2.8551],[98.5244,2.8629],[98.5214,2.8679],[98.5214,2.8749]]}},{"type":"Feature","properties":{"mhid":"1332:35","alt_name":"KABUPATEN KARO","latitude":3.11667,"longitude":98.3,"sample_value":795},"geometry":{"type":"LineString","coordinates":[[98.4656,3.2304],[98.4613,3.2312],[98.4558,3.2367],[98.4497,3.2476],[98.4464,3.2486],[98.4359,3.2376],[98.4319,3.236],[98.4281,3.238],[98.4226,3.2446],[98.4173,3.2471],[98.4048,3.2475],[98.3993,3.2496],[98.3995,3.2614],[98.3893,3.2691],[98.3811,3.2701],[98.3736,3.2739],[98.3625,3.2825],[98.3589,3.2863],[98.3513,3.2874],[98.355,3.271],[98.359,3.2608],[98.361,3.2509],[98.3663,3.2453],[98.3569,3.2295],[98.3485,3.2221],[98.3416,3.2193],[98.3354,3.2194],[98.3223,3.2235],[98.314,3.2271],[98.2976,3.2293],[98.2931,3.2432],[98.2882,3.2472],[98.2889,3.2528],[98.2857,3.2553],[98.2785,3.252],[98.2749,3.2541],[98.2713,3.2518],[98.2665,3.2522],[98.2637,3.2498],[98.2589,3.25],[98.2442,3.2584],[98.2327,3.2637],[98.2232,3.2707],[98.2201,3.2807],[98.2171,3.2838],[98.2077,3.2815],[98.2009,3.2775],[98.1798,3.2801],[98.1733,3.2775],[98.1667,3.2797],[98.1617,3.2779],[98.1412,3.2656],[98.1242,3.2652],[98.1173,3.2707],[98.1077,3.2912],[98.1085,3.2996],[98.1062,3.3042],[98.0991,3.314],[98.0893,3.3164],[98.0853,3.3187],[98.0792,3.3196],[98.0717,3.3149],[98.0638,3.3182],[98.0556,3.3155],[98.0441,3.3233],[98.0385,3.3252],[98.0289,3.331],[98.0226,3.3221],[98.0202,3.316],[98.0208,3.3026],[98.017,3.3025],[98.0098,3.2935],[98.0027,3.2913],[97.9956,3.2832],[97.9882,3.2808],[97.9813,3.2812],[97.9697,3.2777],[97.9661,3.2873],[97.9545,3.2835],[97.9456,3.2712],[97.9411,3.2715],[97.9368,3.2686],[97.9366,3.2654],[97.9224,3.264],[97.913,3.2643],[97.9083,3.2623],[97.9016,3.2623],[97.8967,3.2578],[97.8907,3.2564],[97.8836,3.2569],[97.8753,3.2554],[97.8704,3.2496],[97.8818,3.2381],[97.8889,3.2404],[97.8985,3.234],[97.9045,3.232],[97.9171,3.2307],[97.9224,3.2285],[97.9269,3.2231],[97.9306,3.2129],[97.9378,3.2041],[97.9413,3.2055],[97.9435,3.2013],[97.9398,3.1936],[97.943,3.1751],[97.9385,3.1635],[97.9429,3.1608],[97.9638,3.1449],[97.9693,3.1428],[97.972,3.1353],[97.9765,3.1289],[97.9809,3.1189],[97.9817,3.1109],[97.9794,3.0972],[97.9828,3.0868],[97.9873,3.0912],[97.9913,3.0919],[98.0043,3.0853],[98.016,3.0833],[98.0209,3.0808],[98.0278,3.0817],[98.0317,3.0781],[98.0385,3.0793],[98.0379,3.0862],[98.0356,3.0925],[98.0294,3.1003],[98.0284,3.108],[98.0314,3.1147],[98.0283,3.1196],[98.0292,3.1229],[98.0359,3.1239],[98.0428,3.1215],[98.0504,3.121],[98.0534,3.1191],[98.0597,3.1102],[98.0671,3.1038],[98.0756,3.0848],[98.0773,3.0746],[98.0854,3.0709],[98.0957,3.0719],[98.0989,3.0704],[98.1078,3.0562],[98.1141,3.0541],[98.1234,3.0538],[98.1336,3.0484],[98.1391,3.0484],[98.1557,3.0672],[98.1715,3.0796],[98.1738,3.0796],[98.1853,3.0636],[98.1915,3.053],[98.1962,3.05],[98.1983,3.043],[98.1974,3.032],[98.1925,3.0235],[98.1927,3.0171],[98.1959,3.0022],[98.1964,2.9939],[98.2008,2.9841],[98.2044,2.9803],[98.2064,2.9723],[98.2144,2.9671],[98.2166,2.9641],[98.2212,2.9533],[98.2264,2.9482],[98.245,2.9335],[98.2488,2.9312],[98.2695,2.9538],[98.2872,2.9611],[98.2966,2.9662],[98.3023,2.9653],[98.3099,2.9707],[98.3145,2.9707],[98.3188,2.9671],[98.3443,2.9662],[98.3485,2.9627],[98.3637,2.9373],[98.3685,2.9325],[98.3944,2.9237],[98.4001,2.9244],[98.412,2.9225],[98.43,2.9168],[98.4322,2.9017],[98.4356,2.8935],[98.44,2.8903],[98.4486,2.8907],[98.4531,2.8852],[98.4625,2.8808],[98.4728,2.8742],[98.4824,2.8708],[98.4923,2.8686],[98.5063,2.8686],[98.5143,2.8702],[98.5214,2.8749],[98.5177,2.8774],[98.5175,2.8811],[98.5229,2.8846],[98.5202,2.8958],[98.5261,2.8962],[98.5349,2.8947],[98.5384,2.8871],[98.5417,2.8831],[98.5401,2.8774],[98.5451,2.873],[98.5548,2.8758],[98.5545,2.8813],[98.5489,2.8814],[98.5511,2.8872],[98.5492,2.8912],[98.5486,2.8953],[98.5441,2.8981],[98.5404,2.8972],[98.5331,2.9036],[98.5341,2.9257],[98.5412,2.9362],[98.5475,2.9495],[98.547,2.9548],[98.5486,2.9605],[98.5536,2.9689],[98.55,2.9731],[98.5492,2.9781],[98.5515,2.9875],[98.5547,2.9928],[98.5511,3.0001],[98.5533,3.0066],[98.5539,3.0146],[98.5575,3.0216],[98.557,3.0279],[98.5661,3.033],[98.5756,3.048],[98.5801,3.0509],[98.5864,3.0624],[98.5827,3.077],[98.5837,3.0799],[98.5934,3.091],[98.5954,3.0951],[98.6006,3.0952],[98.6045,3.0992],[98.6053,3.1041],[98.6064,3.1096],[98.6106,3.1108],[98.6159,3.1068],[98.622,3.1048],[98.6288,3.1158],[98.6275,3.1261],[98.6239,3.1317],[98.6153,3.1313],[98.6151,3.136],[98.6112,3.1474],[98.6047,3.1551],[98.6015,3.1607],[98.6035,3.1701],[98.6012,3.1773],[98.6027,3.1815],[98.6111,3.1791],[98.6152,3.1836],[98.6121,3.1948],[98.6209,3.2058],[98.6204,3.2147],[98.6215,3.2186],[98.6267,3.2222],[98.6227,3.2317],[98.6025,3.2241],[98.5942,3.2177],[98.5879,3.2186],[98.5741,3.2095],[98.5681,3.2086],[98.5629,3.2017],[98.556,3.2003],[98.5535,3.2201],[98.5473,3.2293],[98.538,3.2379],[98.5273,3.2407],[98.5192,3.2405],[98.5127,3.2435],[98.5069,3.2403],[98.4998,3.2416],[98.4925,3.2378],[98.4859,3.2249],[98.4809,3.2225],[98.473,3.2236],[98.4656,3.2304]]}},{"type":"Feature","properties":{"mhid":"1332:36","alt_name":"KABUPATEN DELI SERDANG","latitude":3.41667,"longitude":98.66667,"sample_value":379},"geometry":{"type":"LineString","coordinates":[[98.7047,3.7905],[98.7052,3.7954],[98.7088,3.7999],[98.7041,3.8084],[98.7009,3.8199],[98.701,3.8253],[98.6979,3.837],[98.6969,3.8621],[98.6986,3.8674],[98.696,3.8715],[98.6977,3.8744],[98.6907,3.8854],[98.686,3.8901],[98.6823,3.8983],[98.6725,3.9083],[98.669,3.9096],[98.665,3.9042],[98.6608,3.9078],[98.6573,3.9051],[98.6508,3.905],[98.6457,3.8967],[98.6411,3.8954],[98.6355,3.8842],[98.6236,3.8827],[98.6199,3.8839],[98.6165,3.8802],[98.6122,3.8701],[98.609,3.8665],[98.604,3.8691],[98.6006,3.864],[98.6061,3.8575],[98.606,3.8537],[98.5995,3.8494],[98.6011,3.8435],[98.6008,3.8343],[98.5955,3.8315],[98.5887,3.8353],[98.5831,3.8343],[98.5841,3.8288],[98.5831,3.8232],[98.5744,3.8225],[98.5767,3.817],[98.5652,3.8078],[98.5526,3.7999],[98.5388,3.7929],[98.5317,3.7865],[98.5251,3.7755],[98.5224,3.7676],[98.5157,3.7591],[98.5066,3.7363],[98.5096,3.7294],[98.5068,3.712],[98.5086,3.7079],[98.5049,3.6983],[98.5015,3.6725],[98.5109,3.6728],[98.5111,3.6671],[98.5183,3.6674],[98.5184,3.6642],[98.5111,3.6639],[98.5114,3.6459],[98.5178,3.6457],[98.5166,3.6417],[98.5116,3.6417],[98.5119,3.6318],[98.5161,3.6296],[98.5256,3.6293],[98.5256,3.6207],[98.5328,3.6208],[98.5331,3.6128],[98.5363,3.6068],[98.5332,3.5926],[98.5363,3.5869],[98.5366,3.5724],[98.5334,3.5678],[98.5213,3.5696],[98.5008,3.5695],[98.5018,3.5598],[98.5081,3.5561],[98.5106,3.5527],[98.5078,3.5427],[98.5123,3.538],[98.5106,3.5312],[98.5189,3.5253],[98.5244,3.52],[98.519,3.5158],[98.5191,3.5104],[98.514,3.5019],[98.513,3.4926],[98.5103,3.4807],[98.5076,3.476],[98.5096,3.469],[98.5084,3.463],[98.5042,3.4544],[98.5069,3.4497],[98.5036,3.4385],[98.5046,3.4311],[98.5023,3.4258],[98.501,3.4128],[98.5034,3.399],[98.4956,3.3908],[98.4987,3.3852],[98.4987,3.378],[98.5042,3.3647],[98.5043,3.3469],[98.5008,3.3381],[98.5049,3.3285],[98.5031,3.3184],[98.5095,3.3085],[98.4999,3.2993],[98.4941,3.2951],[98.4866,3.2915],[98.4853,3.2888],[98.4797,3.2859],[98.4707,3.2778],[98.4703,3.2736],[98.4749,3.2709],[98.4733,3.2566],[98.4686,3.2555],[98.4685,3.2495],[98.4722,3.2407],[98.4716,3.2359],[98.4656,3.2304],[98.473,3.2236],[98.4809,3.2225],[98.4859,3.2249],[98.4925,3.2378],[98.4998,3.2416],[98.5069,3.2403],[98.5127,3.2435],[98.5192,3.2405],[98.5273,3.2407],[98.538,3.2379],[98.5473,3.2293],[98.5535,3.2201],[98.556,3.2003],[98.5629,3.2017],[98.5681,3.2086],[98.5741,3.2095],[98.5879,3.2186],[98.5942,3.2177],[98.6025,3.2241],[98.6227,3.2317],[98.6267,3.2222],[98.6215,3.2186],[98.6204,3.2147],[98.6209,3.2058],[98.6121,3.1948],[98.6152,3.1836],[98.6111,3.1791],[98.6027,3.1815],[98.6012,3.1773],[98.6035,3.1701],[98.6015,3.1607],[98.6047,3.1551],[98.6112,3.1474],[98.6151,3.136],[98.6153,3.1313],[98.6239,3.1317],[98.6275,3.1261],[98.6288,3.1158],[98.622,3.1048],[98.6159,3.1068],[98.6106,3.1108],[98.6064,3.1096],[98.6053,3.1041],[98.6134,3.1013],[98.6172,3.0972],[98.6205,3.0891],[98.6221,3.0718],[98.6247,3.0635],[98.6273,3.0625],[98.6461,3.0669],[98.6592,3.0666],[98.6734,3.0713],[98.6823,3.0674],[98.6874,3.0527],[98.6907,3.0505],[98.6945,3.0518],[98.7043,3.0598],[98.7058,3.0638],[98.7088,3.103],[98.7172,3.133],[98.7238,3.1491],[98.7305,3.1752],[98.7267,3.1853],[98.7294,3.1969],[98.7277,3.2034],[98.7235,3.2073],[98.7302,3.2203],[98.7342,3.2218],[98.7448,3.2169],[98.7481,3.2184],[98.7505,3.2287],[98.7496,3.2327],[98.7529,3.2398],[98.7639,3.2475],[98.7691,3.2538],[98.7707,3.2625],[98.7743,3.2672],[98.7891,3.2756],[98.7956,3.2855],[98.7961,3.2984],[98.7999,3.3014],[98.8091,3.305],[98.8194,3.3127],[98.8274,3.3151],[98.8325,3.3182],[98.836,3.3293],[98.8402,3.3298],[98.842,3.3347],[98.8476,3.3363],[98.858,3.3438],[98.8635,3.3428],[98.872,3.345],[98.8846,3.3543],[98.8983,3.3583],[98.9124,3.3579],[98.9191,3.367],[98.9168,3.3755],[98.9209,3.3812],[98.9168,3.3857],[98.9212,3.3966],[98.9208,3.4052],[98.9179,3.4113],[98.9187,3.4155],[98.9156,3.4284],[98.9164,3.4373],[98.9143,3.449],[98.9194,3.4549],[98.9196,3.465],[98.9322,3.4858],[98.935,3.4922],[98.9361,3.5003],[98.9333,3.5031],[98.9368,3.5145],[98.9359,3.5248],[98.931,3.5327],[98.933,3.5377],[98.9266,3.5444],[98.9262,3.5467],[98.9308,3.5532],[98.9316,3.5604],[98.9339,3.566],[98.9329,3.5691],[98.926,3.5729],[98.9191,3.5822],[98.9213,3.5914],[98.9188,3.6],[98.9255,3.6131],[98.9303,3.6151],[98.9385,3.6245],[98.946,3.6477],[98.9461,3.6581],[98.949,3.6647],[98.9444,3.6684],[98.9425,3.6749],[98.9299,3.6781],[98.9233,3.6822],[98.9119,3.6808],[98.9076,3.6787],[98.9,3.6811],[98.8903,3.6817],[98.8665,3.689],[98.8472,3.6989],[98.8387,3.7014],[98.8308,3.7019],[98.8239,3.7068],[98.7981,3.717],[98.7882,3.7183],[98.7823,3.7229],[98.7722,3.734],[98.7633,3.7506],[98.7596,3.7599],[98.7499,3.7649],[98.7393,3.7691],[98.7309,3.7694],[98.7253,3.7732],[98.7189,3.7717],[98.716,3.7677],[98.707,3.7726],[98.7041,3.7667],[98.7021,3.7508],[98.7053,3.744],[98.7045,3.7409],[98.7181,3.7384],[98.7218,3.7345],[98.7272,3.7329],[98.7267,3.7275],[98.731,3.7214],[98.725,3.72],[98.7196,3.7256],[98.7111,3.7189],[98.7065,3.7136],[98.7049,3.7063],[98.7098,3.6944],[98.7122,3.6784],[98.7105,3.6739],[98.7033,3.672],[98.6947,3.6724],[98.6966,3.6779],[98.6803,3.6787],[98.6802,3.6754],[98.6737,3.6764],[98.6699,3.6723],[98.6804,3.6725],[98.6814,3.6681],[98.6922,3.6645],[98.6897,3.6565],[98.696,3.6604],[98.703,3.6626],[98.7017,3.6451],[98.6948,3.6454],[98.6929,3.6413],[98.6934,3.6268],[98.7099,3.6265],[98.7097,3.6173],[98.7073,3.6174],[98.7066,3.6024],[98.7118,3.6003],[98.7238,3.5994],[98.7415,3.599],[98.74,3.5937],[98.7408,3.5882],[98.7325,3.5861],[98.7334,3.5814],[98.7368,3.5773],[98.7318,3.571],[98.7271,3.5681],[98.7268,3.5511],[98.7219,3.5488],[98.7228,3.5408],[98.7349,3.5411],[98.7351,3.5384],[98.7444,3.5368],[98.7455,3.5319],[98.7424,3.5294],[98.6983,3.5315],[98.6982,3.5184],[98.6805,3.5187],[98.6754,3.5153],[98.6617,3.5149],[98.6623,3.5224],[98.6576,3.5225],[98.6543,3.5175],[98.656,3.5124],[98.6596,3.5084],[98.6591,3.5052],[98.6537,3.497],[98.647,3.4974],[98.6446,3.4881],[98.6365,3.4887],[98.6318,3.5058],[98.6257,3.5188],[98.6236,3.5161],[98.6247,3.507],[98.6214,3.5071],[98.6166,3.5033],[98.6172,3.4983],[98.6096,3.4966],[98.6001,3.4909],[98.5925,3.4982],[98.5967,3.5008],[98.5966,3.5057],[98.6018,3.5127],[98.5974,3.5281],[98.6023,3.5318],[98.6003,3.5386],[98.5935,3.5414],[98.5988,3.5465],[98.6057,3.55],[98.6069,3.5535],[98.6116,3.5537],[98.6114,3.564],[98.6074,3.566],[98.6095,3.5749],[98.6078,3.5813],[98.6048,3.5853],[98.6043,3.5921],[98.6076,3.5925],[98.6052,3.5989],[98.6068,3.6104],[98.61,3.6132],[98.6219,3.6117],[98.6276,3.6127],[98.6311,3.6157],[98.6526,3.6152],[98.6594,3.6217],[98.664,3.6241],[98.6644,3.6321],[98.6663,3.6357],[98.6593,3.6395],[98.6576,3.6441],[98.656,3.6692],[98.6578,3.675],[98.6516,3.6746],[98.6486,3.6834],[98.6339,3.6846],[98.6318,3.6996],[98.6248,3.6997],[98.6259,3.7127],[98.6298,3.7137],[98.6344,3.7203],[98.6433,3.7194],[98.6444,3.7297],[98.6527,3.7321],[98.6533,3.7375],[98.6471,3.7375],[98.641,3.7393],[98.6361,3.7432],[98.6345,3.7504],[98.6305,3.7557],[98.6253,3.7596],[98.6286,3.7687],[98.6342,3.7675],[98.6334,3.7757],[98.6445,3.7745],[98.6512,3.7817],[98.6634,3.7809],[98.6675,3.7762],[98.6743,3.7735],[98.6802,3.7771],[98.6801,3.787],[98.6846,3.7895],[98.7047,3.7905]]}},{"type":"Feature","properties":{"mhid":"1332:37","alt_name":"KABUPATEN LANGKAT","latitude":3.71667,"longitude":98.21667,"sample_value":902},"geometry":{"type":"LineString","coordinates":[[98.5699,3.9423],[98.5652,3.9468],[98.5583,3.9391],[98.568,3.9397],[98.5699,3.9423]]}},{"type":"Feature","properties":{"mhid":"1332:37","alt_name":"KABUPATEN LANGKAT","latitude":3.71667,"longitude":98.21667,"sample_value":902},"geometry":{"type":"LineString","coordinates":[[98.2025,4.1308],[98.1928,4.1285],[98.1849,4.1185],[98.1842,4.1143],[98.1964,4.1161],[98.1996,4.1206],[98.2034,4.1191],[98.2052,4.1271],[98.2025,4.1308]]}},{"type":"Feature","properties":{"mhid":"1332:37","alt_name":"KABUPATEN LANGKAT","latitude":3.71667,"longitude":98.21667,"sample_value":902},"geometry":{"type":"LineString","coordinates":[[98.2042,4.1374],[98.2021,4.1374],[98.196,4.1315],[98.2031,4.1314],[98.2042,4.1374]]}},{"type":"Feature","properties":{"mhid":"1332:37","alt_name":"KABUPATEN LANGKAT","latitude":3.71667,"longitude":98.21667,"sample_value":902},"geometry":{"type":"LineString","coordinates":[[98.178,4.1281],[98.1858,4.1398],[98.1833,4.1432],[98.1793,4.1411],[98.1751,4.1324],[98.178,4.1281]]}},{"type":"Feature","properties":{"mhid":"1332:37","alt_name":"KABUPATEN LANGKAT","latitude":3.71667,"longitude":98.21667,"sample_value":902},"geometry":{"type":"LineString","coordinates":[[98.2619,4.1761],[98.256,4.176],[98.2506,4.174],[98.243,4.1752],[98.2443,4.1693],[98.2358,4.1567],[98.2351,4.1507],[98.2326,4.147],[98.2353,4.1435],[98.2445,4.1409],[98.2526,4.1333],[98.2595,4.1335],[98.2625,4.139],[98.2712,4.1409],[98.2723,4.1432],[98.2704,4.1505],[98.2744,4.16],[98.2748,4.1667],[98.2731,4.1716],[98.2619,4.1761]]}},{"type":"Feature","properties":{"mhid":"1332:37","alt_name":"KABUPATEN LANGKAT","latitude":3.71667,"longitude":98.21667,"sample_value":902},"geometry":{"type":"LineString","coordinates":[[98.2511,4.2904],[98.245,4.2944],[98.2393,4.2896],[98.2384,4.2834],[98.2307,4.2846],[98.2288,4.2923],[98.2221,4.2878],[98.2196,4.2906],[98.2144,4.2871],[98.2111,4.2932],[98.2124,4.2985],[98.2047,4.2972],[98.199,4.3009],[98.1976,4.2948],[98.1933,4.2994],[98.1884,4.2939],[98.1787,4.2902],[98.1653,4.2885],[98.1622,4.2858],[98.1541,4.2873],[98.1569,4.2766],[98.1554,4.2701],[98.1495,4.2663],[98.1482,4.2628],[98.1419,4.2593],[98.1374,4.2598],[98.1307,4.257],[98.1223,4.2561],[98.1198,4.2583],[98.1157,4.2535],[98.1086,4.2518],[98.094,4.2573],[98.0888,4.2586],[98.0832,4.2573],[98.0793,4.2593],[98.0769,4.2532],[98.0704,4.2501],[98.0677,4.2459],[98.074,4.2311],[98.0774,4.2285],[98.0892,4.2265],[98.0905,4.2194],[98.09,4.2129],[98.0928,4.2071],[98.0894,4.2033],[98.089,4.1976],[98.0855,4.1933],[98.0781,4.1938],[98.0752,4.1899],[98.071,4.1888],[98.0614,4.1889],[98.0634,4.1796],[98.0676,4.1767],[98.0697,4.1715],[98.0686,4.1592],[98.0697,4.1501],[98.0719,4.1427],[98.0643,4.1377],[98.0565,4.1356],[98.0499,4.1266],[98.0474,4.1207],[98.0463,4.1126],[98.0472,4.1067],[98.0455,4.097],[98.0459,4.0844],[98.0448,4.0736],[98.0397,4.0683],[98.0375,4.0605],[98.0338,4.0572],[98.0384,4.0496],[98.0371,4.0451],[98.0407,4.035],[98.0458,4.0279],[98.0462,4.024],[98.0403,4.0211],[98.0323,4.0223],[98.0275,4.0195],[98.0258,4.0138],[98.031,4.002],[98.0293,3.9932],[98.0314,3.9859],[98.0296,3.9806],[98.0244,3.9766],[98.0226,3.9669],[98.0158,3.9689],[98.016,3.9637],[98.0039,3.9639],[98.0028,3.959],[97.9953,3.9451],[97.99,3.9418],[97.9801,3.9412],[97.9781,3.9392],[97.9703,3.9371],[97.9576,3.9289],[97.9553,3.9243],[97.9563,3.9201],[97.9548,3.9127],[97.9573,3.902],[97.9539,3.8966],[97.952,3.8897],[97.9495,3.8897],[97.9453,3.8957],[97.9359,3.8949],[97.9365,3.889],[97.9318,3.8841],[97.9245,3.8863],[97.9157,3.8852],[97.9094,3.8786],[97.9089,3.8685],[97.9152,3.8606],[97.9147,3.8532],[97.9215,3.8435],[97.9156,3.8364],[97.9156,3.8325],[97.9097,3.8244],[97.9093,3.8188],[97.9021,3.8182],[97.8963,3.8079],[97.8852,3.8007],[97.8824,3.7963],[97.8752,3.7927],[97.8728,3.7894],[97.861,3.7843],[97.8562,3.7753],[97.8489,3.7743],[97.8399,3.7678],[97.837,3.763],[97.8246,3.7495],[97.8177,3.7425],[97.8152,3.7367],[97.8003,3.7227],[97.8038,3.7168],[97.8046,3.7104],[97.8191,3.6906],[97.8225,3.6813],[97.8293,3.6722],[97.8384,3.6685],[97.8444,3.6612],[97.8466,3.6532],[97.8533,3.6419],[97.8536,3.6269],[97.8638,3.6196],[97.8719,3.6121],[97.8705,3.607],[97.8643,3.6008],[97.8636,3.5946],[97.867,3.5848],[97.8669,3.5766],[97.8683,3.571],[97.8756,3.5652],[97.8848,3.5611],[97.8924,3.5591],[97.8978,3.5603],[97.9044,3.5569],[97.9097,3.5502],[97.9123,3.5437],[97.9125,3.5339],[97.9195,3.522],[97.9235,3.5133],[97.9229,3.5053],[97.9205,3.5],[97.9287,3.4932],[97.946,3.4894],[97.9494,3.4856],[97.9582,3.4831],[97.9586,3.4806],[97.9498,3.4728],[97.9478,3.4666],[97.9414,3.4558],[97.9363,3.4504],[97.9337,3.4411],[97.93,3.4377],[97.9294,3.434],[97.9253,3.4304],[97.9211,3.4221],[97.9111,3.4171],[97.8976,3.4159],[97.8983,3.4082],[97.9058,3.3992],[97.9099,3.3896],[97.9305,3.3897],[97.947,3.3936],[97.9482,3.3907],[97.9707,3.378],[97.9787,3.3717],[97.9919,3.3703],[97.9946,3.3729],[98.0019,3.3698],[98.0065,3.3657],[98.0107,3.3592],[98.0143,3.3494],[98.0233,3.3419],[98.0289,3.331],[98.0385,3.3252],[98.0441,3.3233],[98.0556,3.3155],[98.0638,3.3182],[98.0717,3.3149],[98.0792,3.3196],[98.0853,3.3187],[98.0893,3.3164],[98.0991,3.314],[98.1062,3.3042],[98.1085,3.2996],[98.1077,3.2912],[98.1173,3.2707],[98.1242,3.2652],[98.1412,3.2656],[98.1617,3.2779],[98.1667,3.2797],[98.1733,3.2775],[98.1798,3.2801],[98.2009,3.2775],[98.2077,3.2815],[98.2171,3.2838],[98.2201,3.2807],[98.2232,3.2707],[98.2327,3.2637],[98.2442,3.2584],[98.2589,3.25],[98.2637,3.2498],[98.2665,3.2522],[98.2713,3.2518],[98.2749,3.2541],[98.2785,3.252],[98.2857,3.2553],[98.2889,3.2528],[98.2882,3.2472],[98.2931,3.2432],[98.2976,3.2293],[98.314,3.2271],[98.3223,3.2235],[98.3354,3.2194],[98.3416,3.2193],[98.3485,3.2221],[98.3569,3.2295],[98.3663,3.2453],[98.361,3.2509],[98.359,3.2608],[98.355,3.271],[98.3513,3.2874],[98.3589,3.2863],[98.3625,3.2825],[98.3736,3.2739],[98.3811,3.2701],[98.3893,3.2691],[98.3995,3.2614],[98.3993,3.2496],[98.4048,3.2475],[98.4173,3.2471],[98.4226,3.2446],[98.4281,3.238],[98.4319,3.236],[98.4359,3.2376],[98.4464,3.2486],[98.4497,3.2476],[98.4558,3.2367],[98.4613,3.2312],[98.4656,3.2304],[98.4716,3.2359],[98.4722,3.2407],[98.4685,3.2495],[98.4686,3.2555],[98.4733,3.2566],[98.4749,3.2709],[98.4703,3.2736],[98.4707,3.2778],[98.4797,3.2859],[98.4853,3.2888],[98.4866,3.2915],[98.4941,3.2951],[98.4999,3.2993],[98.5095,3.3085],[98.5031,3.3184],[98.5049,3.3285],[98.5008,3.3381],[98.5043,3.3469],[98.5042,3.3647],[98.4987,3.378],[98.4987,3.3852],[98.4956,3.3908],[98.5034,3.399],[98.501,3.4128],[98.5023,3.4258],[98.5046,3.4311],[98.5036,3.4385],[98.5069,3.4497],[98.5042,3.4544],[98.5084,3.463],[98.5096,3.469],[98.5076,3.476],[98.5103,3.4807],[98.513,3.4926],[98.514,3.5019],[98.5191,3.5104],[98.519,3.5158],[98.5244,3.52],[98.5189,3.5253],[98.5106,3.5312],[98.5123,3.538],[98.5078,3.5427],[98.5106,3.5527],[98.5081,3.5561],[98.5018,3.5598],[98.5008,3.5695],[98.496,3.5661],[98.4958,3.5566],[98.491,3.556],[98.4757,3.5564],[98.4746,3.553],[98.4769,3.5409],[98.4779,3.5283],[98.4719,3.5292],[98.4535,3.5295],[98.4512,3.5351],[98.4481,3.5358],[98.445,3.5461],[98.4448,3.5537],[98.4465,3.558],[98.4468,3.5668],[98.4504,3.5696],[98.4531,3.5791],[98.4565,3.577],[98.4602,3.5876],[98.4572,3.5921],[98.459,3.5944],[98.4452,3.5983],[98.4451,3.6043],[98.4405,3.6054],[98.4427,3.6128],[98.4614,3.6158],[98.4738,3.6169],[98.4744,3.6356],[98.4719,3.6409],[98.4609,3.6441],[98.4604,3.6497],[98.4575,3.6526],[98.4516,3.6508],[98.4467,3.6515],[98.4467,3.6559],[98.454,3.6531],[98.4577,3.6552],[98.4649,3.6501],[98.4725,3.6478],[98.4854,3.6639],[98.4951,3.6695],[98.501,3.6683],[98.5015,3.6725],[98.5049,3.6983],[98.5086,3.7079],[98.5068,3.712],[98.5096,3.7294],[98.5066,3.7363],[98.5157,3.7591],[98.5224,3.7676],[98.5251,3.7755],[98.5317,3.7865],[98.5388,3.7929],[98.5526,3.7999],[98.5652,3.8078],[98.5767,3.817],[98.5744,3.8225],[98.5831,3.8232],[98.5841,3.8288],[98.5831,3.8343],[98.5887,3.8353],[98.5955,3.8315],[98.6008,3.8343],[98.6011,3.8435],[98.5995,3.8494],[98.606,3.8537],[98.6061,3.8575],[98.6006,3.864],[98.604,3.8691],[98.609,3.8665],[98.6122,3.8701],[98.6165,3.8802],[98.6199,3.8839],[98.6236,3.8827],[98.6355,3.8842],[98.6411,3.8954],[98.6457,3.8967],[98.6508,3.905],[98.6573,3.9051],[98.6608,3.9078],[98.658,3.9118],[98.6478,3.9136],[98.6365,3.9178],[98.6299,3.9176],[98.6241,3.9126],[98.6186,3.9151],[98.6109,3.9135],[98.5997,3.9161],[98.598,3.9198],[98.5911,3.9236],[98.583,3.9243],[98.5798,3.9272],[98.5795,3.9329],[98.5716,3.9396],[98.5573,3.9385],[98.5551,3.9441],[98.5585,3.9498],[98.5547,3.9637],[98.5578,3.9686],[98.5515,3.9831],[98.5448,3.9832],[98.5406,3.9889],[98.5381,3.9955],[98.5425,4.0077],[98.5362,4.0128],[98.5303,4.0153],[98.5201,4.0167],[98.5185,4.0195],[98.5119,4.0189],[98.5085,4.0155],[98.5023,4.0177],[98.4959,4.0169],[98.4922,4.0123],[98.4886,4.012],[98.4864,4.0197],[98.4921,4.0288],[98.489,4.0313],[98.4779,4.0364],[98.4728,4.0363],[98.4627,4.04],[98.4501,4.0411],[98.4454,4.0393],[98.4378,4.0421],[98.4344,4.0411],[98.4294,4.0468],[98.4233,4.0507],[98.4023,4.0707],[98.3948,4.0757],[98.3886,4.0778],[98.3829,4.0752],[98.3704,4.0733],[98.36,4.0755],[98.3548,4.0781],[98.3487,4.0778],[98.3409,4.0756],[98.3277,4.0748],[98.3174,4.073],[98.3113,4.0686],[98.3072,4.0902],[98.2984,4.1063],[98.2818,4.1146],[98.2754,4.1202],[98.2648,4.1236],[98.2567,4.1247],[98.2492,4.1304],[98.2428,4.1298],[98.2363,4.1312],[98.2277,4.1286],[98.2204,4.1277],[98.207,4.1198],[98.2048,4.1141],[98.1994,4.1077],[98.1947,4.1121],[98.188,4.1116],[98.1812,4.1072],[98.1725,4.0957],[98.1678,4.0867],[98.1611,4.0834],[98.1641,4.0935],[98.1691,4.0997],[98.1736,4.1138],[98.1748,4.1228],[98.1737,4.1333],[98.178,4.1444],[98.1739,4.148],[98.1574,4.1529],[98.1702,4.1574],[98.1684,4.1603],[98.1821,4.1673],[98.1843,4.1741],[98.1966,4.1735],[98.2052,4.1779],[98.206,4.1797],[98.2161,4.1819],[98.2227,4.1818],[98.2365,4.1868],[98.2382,4.1913],[98.2448,4.1864],[98.2544,4.2032],[98.2507,4.2058],[98.2469,4.2222],[98.2462,4.2342],[98.2485,4.2437],[98.2491,4.253],[98.2437,4.2707],[98.2469,4.2768],[98.2512,4.2792],[98.2511,4.2904]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.5018,-0.5947],[98.4938,-0.6014],[98.4886,-0.6097],[98.4897,-0.6192],[98.4993,-0.6294],[98.5064,-0.6352],[98.5178,-0.6388],[98.5209,-0.6355],[98.5209,-0.6202],[98.5138,-0.611],[98.5138,-0.605],[98.5118,-0.6003],[98.5061,-0.5958],[98.5018,-0.5947]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.5209,-0.5016],[98.525,-0.4967],[98.5213,-0.493],[98.5177,-0.4962],[98.5171,-0.5018],[98.5209,-0.5016]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.5786,-0.3274],[98.5708,-0.3304],[98.5707,-0.3339],[98.5778,-0.3351],[98.5786,-0.3274]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.3899,-0.2759],[98.3881,-0.2671],[98.3893,-0.2638],[98.3829,-0.2601],[98.3809,-0.262],[98.3814,-0.2694],[98.3865,-0.2755],[98.3899,-0.2759]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.4286,-0.2494],[98.4219,-0.2421],[98.4168,-0.2407],[98.4134,-0.2428],[98.4163,-0.2509],[98.4244,-0.2576],[98.4231,-0.2632],[98.4288,-0.268],[98.4302,-0.278],[98.4351,-0.2826],[98.4401,-0.2839],[98.4414,-0.2884],[98.4408,-0.3008],[98.439,-0.3049],[98.4338,-0.3068],[98.4315,-0.3127],[98.4283,-0.3114],[98.4236,-0.3168],[98.418,-0.3178],[98.4136,-0.3127],[98.4086,-0.3136],[98.4058,-0.3206],[98.3998,-0.3231],[98.3956,-0.3291],[98.3947,-0.3374],[98.3883,-0.3389],[98.3839,-0.3426],[98.384,-0.3493],[98.3816,-0.353],[98.3825,-0.3696],[98.3801,-0.374],[98.3726,-0.3805],[98.3744,-0.3891],[98.3743,-0.3992],[98.378,-0.408],[98.3781,-0.4432],[98.3761,-0.4579],[98.3704,-0.4673],[98.3649,-0.4653],[98.3549,-0.4706],[98.3559,-0.4759],[98.3522,-0.4801],[98.355,-0.4881],[98.3512,-0.4976],[98.345,-0.4968],[98.3468,-0.5039],[98.345,-0.5099],[98.3491,-0.514],[98.3452,-0.5189],[98.3365,-0.5227],[98.3266,-0.522],[98.3236,-0.512],[98.3203,-0.5076],[98.3161,-0.5125],[98.3011,-0.5146],[98.2884,-0.524],[98.2986,-0.5301],[98.3024,-0.5307],[98.3137,-0.5293],[98.321,-0.53],[98.3314,-0.5355],[98.3348,-0.5397],[98.349,-0.5423],[98.3521,-0.5456],[98.3594,-0.5457],[98.3641,-0.5491],[98.3797,-0.5574],[98.3872,-0.5599],[98.3977,-0.5654],[98.4108,-0.5796],[98.4148,-0.5859],[98.4145,-0.5959],[98.4201,-0.5974],[98.4257,-0.5918],[98.4256,-0.5764],[98.4237,-0.57],[98.4163,-0.5677],[98.4156,-0.5653],[98.417,-0.5543],[98.4236,-0.5443],[98.4374,-0.538],[98.4463,-0.5393],[98.4497,-0.545],[98.4617,-0.5414],[98.4681,-0.5322],[98.4741,-0.5324],[98.4796,-0.5387],[98.4793,-0.5435],[98.4732,-0.5519],[98.4697,-0.5607],[98.4686,-0.5699],[98.4696,-0.5741],[98.4784,-0.5674],[98.4851,-0.5573],[98.4851,-0.5531],[98.4885,-0.5506],[98.4923,-0.5525],[98.4892,-0.559],[98.488,-0.5686],[98.4927,-0.5725],[98.4979,-0.568],[98.5073,-0.5521],[98.5063,-0.5423],[98.5004,-0.5383],[98.4968,-0.532],[98.4841,-0.5202],[98.4812,-0.5156],[98.4854,-0.5075],[98.4899,-0.5069],[98.4972,-0.5024],[98.4981,-0.4999],[98.5057,-0.4939],[98.5052,-0.4821],[98.5086,-0.4783],[98.5069,-0.4675],[98.5045,-0.4645],[98.5031,-0.4554],[98.5033,-0.4483],[98.5086,-0.439],[98.5077,-0.4336],[98.5049,-0.43],[98.5076,-0.4254],[98.5107,-0.4261],[98.5113,-0.4195],[98.5144,-0.4142],[98.5127,-0.408],[98.5075,-0.4044],[98.5,-0.3973],[98.5041,-0.3905],[98.5058,-0.3966],[98.5137,-0.3903],[98.5174,-0.3846],[98.5222,-0.3804],[98.5181,-0.3776],[98.5244,-0.372],[98.5214,-0.366],[98.5224,-0.3599],[98.5157,-0.3483],[98.5073,-0.3451],[98.5061,-0.3397],[98.5013,-0.3369],[98.4993,-0.3226],[98.492,-0.3141],[98.4934,-0.3101],[98.4906,-0.3014],[98.484,-0.2948],[98.4789,-0.2919],[98.4736,-0.286],[98.4721,-0.2814],[98.4671,-0.2786],[98.4655,-0.2737],[98.4622,-0.2716],[98.4582,-0.2644],[98.4509,-0.2618],[98.4512,-0.254],[98.4474,-0.2475],[98.4416,-0.2455],[98.4286,-0.2494]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.5275,-0.1478],[98.527,-0.1421],[98.5147,-0.137],[98.518,-0.1427],[98.5223,-0.1464],[98.5275,-0.1478]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.1896,-0.1429],[98.1963,-0.1355],[98.2033,-0.1322],[98.2078,-0.122],[98.2058,-0.1117],[98.199,-0.1069],[98.1849,-0.1156],[98.1823,-0.118],[98.1832,-0.1322],[98.1857,-0.1417],[98.1896,-0.1429]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.2284,-0.1093],[98.2287,-0.104],[98.2259,-0.1008],[98.2213,-0.101],[98.2196,-0.1056],[98.2237,-0.111],[98.2284,-0.1093]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.4853,-0.1214],[98.486,-0.1116],[98.4788,-0.1037],[98.4759,-0.0989],[98.4708,-0.1014],[98.4699,-0.1065],[98.472,-0.1108],[98.4775,-0.1137],[98.4794,-0.1205],[98.4853,-0.1214]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.4929,-0.112],[98.4933,-0.1086],[98.4876,-0.0985],[98.4861,-0.1029],[98.4885,-0.1096],[98.4929,-0.112]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.2871,-0.0982],[98.2812,-0.0996],[98.2811,-0.1053],[98.2854,-0.1098],[98.2893,-0.1014],[98.2871,-0.0982]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.3115,-0.0955],[98.3027,-0.0965],[98.3015,-0.1028],[98.3046,-0.1086],[98.3042,-0.1119],[98.3086,-0.1166],[98.3159,-0.1166],[98.3216,-0.1131],[98.3166,-0.1049],[98.3162,-0.0971],[98.3115,-0.0955]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.2638,-0.1005],[98.2651,-0.0937],[98.259,-0.0949],[98.2601,-0.1009],[98.2638,-0.1005]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.3378,-0.0986],[98.3367,-0.0955],[98.3291,-0.0913],[98.3248,-0.0935],[98.3233,-0.0988],[98.3183,-0.1035],[98.3223,-0.1131],[98.3194,-0.1172],[98.3203,-0.1253],[98.3261,-0.1324],[98.3363,-0.137],[98.3429,-0.1383],[98.341,-0.1302],[98.3356,-0.1266],[98.3369,-0.1215],[98.3343,-0.1069],[98.3378,-0.0986]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.3123,-0.0925],[98.3107,-0.0896],[98.3046,-0.0887],[98.3038,-0.0947],[98.3103,-0.0946],[98.3123,-0.0925]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[97.8898,-0.0621],[97.8751,-0.0617],[97.872,-0.0627],[97.8638,-0.0612],[97.8578,-0.0622],[97.8408,-0.0628],[97.8371,-0.0642],[97.8377,-0.0696],[97.845,-0.0781],[97.8503,-0.08],[97.8545,-0.0891],[97.8633,-0.0929],[97.867,-0.0919],[97.8762,-0.0961],[97.8777,-0.1005],[97.8833,-0.1046],[97.8885,-0.1062],[97.8988,-0.1006],[97.8992,-0.0931],[97.8922,-0.081],[97.8898,-0.0621]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.3126,-0.0464],[98.3119,-0.0526],[98.3173,-0.0579],[98.3179,-0.0645],[98.3134,-0.0667],[98.3036,-0.0594],[98.2992,-0.0588],[98.2958,-0.0644],[98.2955,-0.0697],[98.2978,-0.0726],[98.3041,-0.0725],[98.3083,-0.0781],[98.3162,-0.0801],[98.3248,-0.0903],[98.3322,-0.0906],[98.3481,-0.0973],[98.3493,-0.0936],[98.3536,-0.0921],[98.3568,-0.0878],[98.3519,-0.0828],[98.3454,-0.081],[98.3468,-0.0738],[98.3443,-0.0689],[98.3368,-0.0683],[98.3336,-0.0716],[98.3309,-0.0661],[98.3317,-0.0597],[98.3262,-0.0629],[98.3242,-0.0614],[98.3275,-0.0534],[98.3126,-0.0464]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.2834,-0.0535],[98.2845,-0.0489],[98.2817,-0.0436],[98.2768,-0.0389],[98.2746,-0.0334],[98.2699,-0.0332],[98.2642,-0.0396],[98.2663,-0.0442],[98.2631,-0.058],[98.267,-0.0685],[98.2762,-0.077],[98.282,-0.0865],[98.2822,-0.0931],[98.2858,-0.0933],[98.2908,-0.08],[98.2873,-0.0649],[98.2834,-0.0535]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.5253,-0.0313],[98.5275,-0.0383],[98.5263,-0.0564],[98.5289,-0.057],[98.5339,-0.0626],[98.5445,-0.0713],[98.5458,-0.0617],[98.5392,-0.0609],[98.5355,-0.0558],[98.5326,-0.0383],[98.5294,-0.0323],[98.5253,-0.0313]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.5064,-0.0509],[98.5025,-0.0379],[98.4984,-0.0316],[98.492,-0.0282],[98.4863,-0.0357],[98.4879,-0.0404],[98.4885,-0.0494],[98.4933,-0.0649],[98.4997,-0.0707],[98.5029,-0.0682],[98.5041,-0.0519],[98.5064,-0.0509]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.386,0.0064],[98.3812,0.0078],[98.3768,0.0025],[98.3705,-0.0001],[98.3598,0.0019],[98.3535,0.0061],[98.3412,0.0022],[98.3337,-0.0022],[98.3291,-0.0083],[98.3247,-0.0092],[98.3212,-0.0142],[98.3039,-0.0147],[98.2952,-0.0181],[98.2982,-0.0236],[98.3055,-0.0236],[98.313,-0.0258],[98.319,-0.0321],[98.3268,-0.0305],[98.327,-0.0354],[98.331,-0.0365],[98.3384,-0.035],[98.3424,-0.0361],[98.3511,-0.0435],[98.3516,-0.0474],[98.3623,-0.0587],[98.3622,-0.0647],[98.3649,-0.0687],[98.3667,-0.0761],[98.3699,-0.0814],[98.3699,-0.0857],[98.3747,-0.0934],[98.3769,-0.0999],[98.3675,-0.1039],[98.3681,-0.1078],[98.3745,-0.1153],[98.3783,-0.1165],[98.3882,-0.1265],[98.3895,-0.1371],[98.3933,-0.1402],[98.3986,-0.1414],[98.4016,-0.1506],[98.4081,-0.1538],[98.414,-0.1607],[98.4139,-0.1675],[98.4199,-0.168],[98.4229,-0.1707],[98.4255,-0.1768],[98.4237,-0.1844],[98.4305,-0.1841],[98.4335,-0.1862],[98.4357,-0.1931],[98.4307,-0.1973],[98.4313,-0.2022],[98.4363,-0.2116],[98.4439,-0.2191],[98.4495,-0.2226],[98.4493,-0.2265],[98.4645,-0.2433],[98.4703,-0.2506],[98.4735,-0.2601],[98.4855,-0.2755],[98.5012,-0.2931],[98.506,-0.2963],[98.5054,-0.3043],[98.5035,-0.3083],[98.5097,-0.3134],[98.5101,-0.3191],[98.5136,-0.3223],[98.5201,-0.3228],[98.5247,-0.3307],[98.5249,-0.3373],[98.5317,-0.3494],[98.536,-0.3529],[98.538,-0.3636],[98.5423,-0.3671],[98.544,-0.3753],[98.548,-0.3828],[98.549,-0.3901],[98.5539,-0.392],[98.5591,-0.3884],[98.5585,-0.3796],[98.5442,-0.3644],[98.5447,-0.3528],[98.5415,-0.3481],[98.5461,-0.3421],[98.5496,-0.3416],[98.5532,-0.3325],[98.5589,-0.3307],[98.5662,-0.3317],[98.5697,-0.3242],[98.5665,-0.3145],[98.5716,-0.3051],[98.5734,-0.2971],[98.5723,-0.2905],[98.5732,-0.2798],[98.5677,-0.2767],[98.5658,-0.2705],[98.5613,-0.2665],[98.559,-0.2587],[98.5541,-0.2567],[98.5532,-0.253],[98.5451,-0.2447],[98.543,-0.2447],[98.5265,-0.2317],[98.5209,-0.2314],[98.5165,-0.2291],[98.5139,-0.2253],[98.5093,-0.2236],[98.5081,-0.215],[98.5043,-0.2149],[98.4979,-0.2108],[98.4933,-0.2096],[98.4967,-0.1998],[98.4959,-0.189],[98.4903,-0.1819],[98.4866,-0.18],[98.4855,-0.1734],[98.4825,-0.1707],[98.4851,-0.1607],[98.4786,-0.1576],[98.4771,-0.1472],[98.4813,-0.1415],[98.4863,-0.1391],[98.4872,-0.1354],[98.4796,-0.1351],[98.4844,-0.1297],[98.4838,-0.1231],[98.4779,-0.1205],[98.477,-0.1147],[98.471,-0.1117],[98.4684,-0.1042],[98.4707,-0.0945],[98.4666,-0.0891],[98.4577,-0.0843],[98.4542,-0.0781],[98.4461,-0.0738],[98.4439,-0.0679],[98.4457,-0.0659],[98.443,-0.0587],[98.4374,-0.0541],[98.4376,-0.0508],[98.4318,-0.0436],[98.4242,-0.0365],[98.4152,-0.0214],[98.418,-0.0094],[98.418,-0.0048],[98.4153,0.0021],[98.4105,0.0007],[98.407,-0.0039],[98.403,-0.0054],[98.3959,-0.0143],[98.3948,-0.0074],[98.391,-0.0047],[98.392,0.0045],[98.386,0.0064]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.2346,0.0072],[98.2286,0.009],[98.2214,0.0068],[98.2169,0.002],[98.2172,-0.0076],[98.2214,-0.0092],[98.23,0.0003],[98.2329,0.0017],[98.2346,0.0072]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.2491,-0.0008],[98.2524,0.0029],[98.2638,0.0081],[98.2661,0.0114],[98.261,0.0148],[98.2542,0.0124],[98.2451,0.0027],[98.2491,-0.0008]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.2357,0.0512],[98.2403,0.0545],[98.2387,0.0603],[98.2278,0.0638],[98.2293,0.0554],[98.2357,0.0512]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.6303,0.0652],[98.639,0.0686],[98.6399,0.0721],[98.6349,0.0736],[98.6293,0.0688],[98.6303,0.0652]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[98.6127,0.1813],[98.6087,0.1798],[98.6005,0.1798],[98.595,0.1764],[98.5817,0.1736],[98.576,0.1759],[98.5666,0.1736],[98.5604,0.1686],[98.5552,0.1615],[98.5512,0.1615],[98.5487,0.1571],[98.5369,0.1474],[98.5281,0.1448],[98.5253,0.1408],[98.5263,0.133],[98.531,0.1265],[98.5304,0.1168],[98.5326,0.1134],[98.5325,0.1085],[98.5371,0.1012],[98.5426,0.1014],[98.5469,0.0993],[98.5489,0.0951],[98.5557,0.0907],[98.5583,0.0909],[98.5638,0.0963],[98.576,0.0957],[98.5798,0.0932],[98.5862,0.0939],[98.5891,0.0897],[98.596,0.0895],[98.6024,0.0935],[98.6066,0.0898],[98.611,0.0894],[98.6163,0.0839],[98.624,0.0842],[98.6342,0.0795],[98.6432,0.0818],[98.654,0.0732],[98.6653,0.0737],[98.6671,0.0769],[98.6734,0.081],[98.679,0.0763],[98.6855,0.0791],[98.6911,0.0752],[98.6989,0.0762],[98.7039,0.0795],[98.7146,0.0784],[98.718,0.0767],[98.7264,0.076],[98.7315,0.0721],[98.7429,0.0767],[98.7546,0.0738],[98.7577,0.0774],[98.7672,0.0804],[98.77,0.0834],[98.7687,0.0885],[98.78,0.0958],[98.7887,0.0962],[98.7967,0.089],[98.8007,0.0913],[98.8087,0.0895],[98.8139,0.0924],[98.8184,0.0918],[98.8236,0.0852],[98.8324,0.0807],[98.854,0.0807],[98.8481,0.0843],[98.8462,0.0912],[98.8538,0.0977],[98.8524,0.1068],[98.8547,0.1135],[98.8505,0.1229],[98.846,0.1272],[98.8423,0.1346],[98.8302,0.1421],[98.8207,0.1532],[98.8132,0.1581],[98.8116,0.1606],[98.8015,0.1666],[98.8004,0.1703],[98.7941,0.1724],[98.7895,0.1667],[98.7788,0.1702],[98.7769,0.1739],[98.7712,0.1718],[98.762,0.1642],[98.762,0.1619],[98.7546,0.1608],[98.754,0.156],[98.7422,0.165],[98.7377,0.1644],[98.7317,0.1595],[98.7202,0.1578],[98.7131,0.1608],[98.7134,0.1685],[98.7088,0.1783],[98.7036,0.1756],[98.6923,0.1731],[98.6847,0.1729],[98.6819,0.1685],[98.6756,0.17],[98.6722,0.1727],[98.6626,0.1724],[98.6582,0.1757],[98.651,0.1747],[98.646,0.1763],[98.6351,0.1764],[98.6199,0.174],[98.6168,0.1792],[98.6127,0.1813]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"LineString","coordinates":[[97.9017,0.8847],[97.8926,0.8851],[97.8915,0.8883],[97.8854,0.8905],[97.8768,0.8893],[97.874,0.8859],[97.8702,0.8891],[97.8653,0.8899],[97.8572,0.8846],[97.8557,0.8899],[97.8461,0.9094],[97.8443,0.9163],[97.8489,0.9316],[97.833,0.9307],[97.8259,0.926],[97.8159,0.9245],[97.8097,0.9198],[97.7985,0.9249],[97.795,0.9316],[97.7913,0.9343],[97.7833,0.9327],[97.774,0.9359],[97.7667,0.9351],[97.7609,0.9393],[97.7571,0.9455],[97.7513,0.9502],[97.7388,0.9493],[97.7318,0.9477],[97.7183,0.9408],[97.7037,0.9366],[97.6945,0.9328],[97.6934,0.9411],[97.6919,0.9699],[97.6889,0.9835],[97.6885,0.9909],[97.6909,0.9967],[97.6813,1.0065],[97.6688,0.9992],[97.6595,0.9991],[97.654,1.0046],[97.6499,1.0058],[97.6485,1.001],[97.6375,1.012],[97.6282,1.0139],[97.618,1.0275],[97.6128,1.0302],[97.5974,1.0344],[97.5901,1.0348],[97.5963,1.0206],[97.5897,1.0134],[97.5807,1.0066],[97.5657,1.0026],[97.552,1.0007],[97.5456,1.0028],[97.5366,1.0085],[97.5353,0.994],[97.5355,0.9867],[97.5372,0.9791],[97.5405,0.9729],[97.5489,0.9641],[97.5438,0.9561],[97.5476,0.9469],[97.5405,0.9433],[97.5407,0.9383],[97.5455,0.9334],[97.5511,0.9308],[97.5608,0.9329],[97.5671,0.9247],[97.5615,0.9174],[97.5625,0.9134],[97.5544,0.9051],[97.5479,0.9002],[97.5517,0.8935],[97.5451,0.8909],[97.5448,0.8872],[97.5475,0.888],[97.5534,0.8845],[97.5578,0.8787],[97.5563,0.8701],[97.5578,0.867],[97.5659,0.8621],[97.5777,0.8564],[97.5895,0.8486],[97.6026,0.8384],[97.6039,0.83],[97.6033,0.8254],[97.6077,0.8163],[97.6139,0.8151],[97.6207,0.8109],[97.6317,0.8002],[97.6338,0.7936],[97.6294,0.7896],[97.6388,0.7797],[97.6402,0.7658],[97.6355,0.7609],[97.6368,0.7586],[97.6452,0.759],[97.6476,0.7531],[97.6535,0.7459],[97.6553,0.7382],[97.6499,0.7333],[97.6559,0.7252],[97.6522,0.7141],[97.6586,0.7132],[97.6661,0.701],[97.6681,0.6869],[97.6634,0.6839],[97.6619,0.6756],[97.6665,0.6698],[97.6669,0.6629],[97.6709,0.659],[97.6755,0.6519],[97.6805,0.641],[97.6838,0.6384],[97.6912,0.6277],[97.6956,0.6172],[97.695,0.604],[97.6905,0.5981],[97.684,0.5985],[97.6829,0.5926],[97.6838,0.5849],[97.6949,0.5762],[97.7015,0.5649],[97.7101,0.5613],[97.7227,0.567],[97.7283,0.5668],[97.7322,0.5706],[97.7325,0.5782],[97.7397,0.5811],[97.745,0.5764],[97.745,0.5721],[97.7475,0.5671],[97.7409,0.5595],[97.744,0.5537],[97.7477,0.5555],[97.7537,0.5539],[97.7672,0.5579],[97.7719,0.5657],[97.771,0.5713],[97.7761,0.5794],[97.779,0.5803],[97.7855,0.5773],[97.7868,0.5679],[97.7814,0.5682],[97.7789,0.5638],[97.782,0.5527],[97.7853,0.5526],[97.7891,0.5568],[97.7899,0.5614],[97.7936,0.5617],[97.7947,0.5517],[97.8016,0.5596],[97.8045,0.5592],[97.8067,0.5521],[97.8143,0.5456],[97.8203,0.5434],[97.8277,0.5447],[97.8182,0.5583],[97.8224,0.5679],[97.8297,0.5648],[97.8294,0.5598],[97.8378,0.5596],[97.8366,0.57],[97.8447,0.5737],[97.8527,0.5883],[97.8604,0.5949],[97.8688,0.599],[97.8786,0.6012],[97.8852,0.6072],[97.8919,0.621],[97.8979,0.6231],[97.9002,0.63],[97.8952,0.6385],[97.896,0.6442],[97.893,0.6544],[97.8932,0.6632],[97.8959,0.6662],[97.8939,0.6769],[97.8961,0.681],[97.8981,0.6916],[97.8936,0.7015],[97.8932,0.7051],[97.8963,0.7093],[97.8975,0.715],[97.8914,0.7248],[97.8942,0.7366],[97.8884,0.7391],[97.8878,0.7465],[97.8915,0.7505],[97.8934,0.7582],[97.8904,0.7619],[97.8906,0.766],[97.8964,0.7769],[97.9119,0.7986],[97.9115,0.8026],[97.9076,0.8047],[97.9097,0.8153],[97.9047,0.8172],[97.8949,0.8265],[97.8981,0.8352],[97.8944,0.8422],[97.8977,0.8502],[97.8949,0.8572],[97.9039,0.8778],[97.9017,0.8847]]}},{"type":"Feature","properties":{"mhid":"1332:39","alt_name":"KABUPATEN HUMBANG HASUNDUTAN","latitude":2.26551,"longitude":98.50376,"sample_value":775},"geometry":{"type":"LineString","coordinates":[[98.4593,2.4773],[98.4458,2.4871],[98.4309,2.487],[98.4228,2.4813],[98.4176,2.4803],[98.4174,2.4803],[98.4151,2.4803],[98.4108,2.476],[98.4085,2.4702],[98.4036,2.4661],[98.3959,2.4642],[98.3775,2.4659],[98.3629,2.4658],[98.3557,2.4621],[98.3461,2.4498],[98.3447,2.4396],[98.3464,2.4332],[98.34,2.4321],[98.3382,2.4251],[98.3291,2.4238],[98.323,2.4254],[98.3146,2.4215],[98.3099,2.4241],[98.3028,2.4252],[98.2923,2.4237],[98.2887,2.4213],[98.2874,2.4144],[98.2965,2.3991],[98.2976,2.3879],[98.2942,2.3751],[98.2904,2.3664],[98.2961,2.3518],[98.2954,2.3406],[98.2933,2.3379],[98.2875,2.3363],[98.2798,2.3365],[98.2683,2.34],[98.2565,2.3465],[98.2471,2.3591],[98.245,2.3543],[98.2483,2.3481],[98.2496,2.3359],[98.2512,2.3291],[98.2507,2.3242],[98.2514,2.2995],[98.2527,2.2761],[98.2543,2.2676],[98.2576,2.263],[98.2676,2.2568],[98.2664,2.2538],[98.2698,2.2418],[98.2647,2.2379],[98.2672,2.2093],[98.2754,2.188],[98.2803,2.1841],[98.2918,2.1775],[98.2992,2.1663],[98.3069,2.1598],[98.3234,2.1585],[98.3296,2.1521],[98.3419,2.1457],[98.3516,2.1446],[98.3728,2.1317],[98.3863,2.1185],[98.4055,2.116],[98.4175,2.113],[98.4292,2.1078],[98.4305,2.1062],[98.4449,2.0977],[98.4497,2.0927],[98.4745,2.0865],[98.4982,2.0818],[98.5061,2.0797],[98.5108,2.0801],[98.5197,2.0833],[98.5283,2.082],[98.5394,2.0832],[98.549,2.0785],[98.5539,2.074],[98.5622,2.0746],[98.569,2.0784],[98.5759,2.0807],[98.5799,2.0797],[98.5832,2.0819],[98.592,2.083],[98.596,2.0712],[98.6002,2.0663],[98.6065,2.0616],[98.6023,2.0483],[98.6081,2.039],[98.6047,2.0342],[98.6042,2.0287],[98.6064,2.0226],[98.6128,2.0178],[98.6231,2.0126],[98.6277,2.0153],[98.6319,2.0153],[98.6334,2.012],[98.6413,2.0113],[98.6437,2.0191],[98.646,2.0206],[98.655,2.0158],[98.6611,2.0161],[98.6693,2.0143],[98.6871,2.0183],[98.699,2.0474],[98.7099,2.0775],[98.7254,2.1148],[98.7265,2.1163],[98.725,2.1262],[98.7324,2.1261],[98.737,2.1277],[98.7391,2.1316],[98.7494,2.1314],[98.7566,2.1361],[98.7659,2.1436],[98.7739,2.147],[98.7812,2.148],[98.7993,2.1582],[98.8108,2.1594],[98.8165,2.1611],[98.8167,2.1695],[98.8111,2.1881],[98.8261,2.1926],[98.8308,2.195],[98.8578,2.2001],[98.8639,2.2023],[98.8743,2.2107],[98.8952,2.222],[98.9216,2.2293],[98.9251,2.2333],[98.9285,2.2336],[98.9317,2.2431],[98.9367,2.2524],[98.9407,2.2625],[98.9581,2.2673],[98.9647,2.2707],[98.9646,2.2744],[98.9727,2.275],[98.9683,2.2831],[98.971,2.298],[98.9643,2.301],[98.9539,2.3213],[98.9402,2.32],[98.9378,2.3239],[98.9327,2.3224],[98.9284,2.3264],[98.9241,2.324],[98.9189,2.3252],[98.9115,2.3248],[98.9,2.327],[98.8946,2.3254],[98.8897,2.3285],[98.886,2.3358],[98.874,2.3322],[98.8663,2.3348],[98.8584,2.3317],[98.8576,2.3355],[98.8543,2.3381],[98.8467,2.3321],[98.8472,2.3269],[98.8422,2.3226],[98.8344,2.3213],[98.8293,2.3238],[98.821,2.3315],[98.8163,2.3462],[98.8174,2.3495],[98.8257,2.3579],[98.8354,2.3555],[98.834,2.3606],[98.8271,2.3631],[98.8153,2.3714],[98.8093,2.3732],[98.8032,2.3809],[98.7988,2.3906],[98.7908,2.3996],[98.789,2.4094],[98.7778,2.42],[98.7776,2.4202],[98.7651,2.4291],[98.7561,2.4354],[98.7492,2.4393],[98.7315,2.4368],[98.7154,2.4354],[98.7035,2.4337],[98.696,2.4318],[98.6808,2.4287],[98.6674,2.428],[98.6595,2.4258],[98.6519,2.4207],[98.6295,2.4093],[98.6161,2.399],[98.6141,2.4205],[98.6131,2.4435],[98.6109,2.4534],[98.6039,2.4655],[98.5941,2.4764],[98.5818,2.4866],[98.5106,2.4871],[98.5017,2.4787],[98.4834,2.4674],[98.4737,2.4646],[98.4684,2.4685],[98.4593,2.4773]]}},{"type":"Feature","properties":{"mhid":"1332:40","alt_name":"KABUPATEN PAKPAK BHARAT","latitude":2.56667,"longitude":98.28333,"sample_value":44},"geometry":{"type":"LineString","coordinates":[[98.4669,2.5528],[98.4646,2.5626],[98.4557,2.5688],[98.4499,2.5744],[98.4442,2.5817],[98.4379,2.5944],[98.4329,2.6075],[98.4285,2.6236],[98.425,2.6321],[98.4199,2.638],[98.4015,2.6425],[98.3939,2.6478],[98.374,2.6526],[98.3664,2.6571],[98.3607,2.6586],[98.3537,2.6629],[98.3447,2.6723],[98.3404,2.6785],[98.3385,2.6874],[98.3351,2.6925],[98.3286,2.6969],[98.3102,2.7],[98.3012,2.7021],[98.2943,2.7049],[98.2798,2.7164],[98.2716,2.7203],[98.2604,2.7193],[98.2529,2.7128],[98.2513,2.7083],[98.2369,2.7154],[98.2254,2.7231],[98.212,2.7276],[98.2002,2.7332],[98.1907,2.7411],[98.1865,2.75],[98.1797,2.756],[98.1674,2.7646],[98.1571,2.7695],[98.1446,2.7705],[98.1349,2.7753],[98.1307,2.7796],[98.1169,2.785],[98.1085,2.7761],[98.0932,2.7739],[98.0805,2.7695],[98.0701,2.765],[98.0697,2.7634],[98.0764,2.7505],[98.0739,2.7471],[98.0716,2.7359],[98.0751,2.7266],[98.0818,2.7155],[98.0864,2.7051],[98.098,2.6926],[98.104,2.6821],[98.1049,2.6677],[98.1034,2.6555],[98.1037,2.6504],[98.1071,2.6332],[98.1086,2.6238],[98.1126,2.6134],[98.1096,2.6041],[98.1004,2.6015],[98.0915,2.6012],[98.085,2.6028],[98.0834,2.5921],[98.0792,2.5831],[98.0785,2.5752],[98.0831,2.5603],[98.0834,2.5521],[98.0848,2.5468],[98.0835,2.539],[98.0839,2.5305],[98.0811,2.5226],[98.0833,2.5104],[98.0857,2.5035],[98.0944,2.4851],[98.1043,2.4713],[98.109,2.466],[98.1368,2.4309],[98.1474,2.4237],[98.163,2.3825],[98.1848,2.3292],[98.1971,2.3117],[98.2189,2.2967],[98.2355,2.2859],[98.2472,2.28],[98.2527,2.2761],[98.2514,2.2995],[98.2507,2.3242],[98.2512,2.3291],[98.2496,2.3359],[98.2483,2.3481],[98.245,2.3543],[98.2471,2.3591],[98.2565,2.3465],[98.2683,2.34],[98.2798,2.3365],[98.2875,2.3363],[98.2933,2.3379],[98.2954,2.3406],[98.2961,2.3518],[98.2904,2.3664],[98.2942,2.3751],[98.2976,2.3879],[98.2965,2.3991],[98.2874,2.4144],[98.2887,2.4213],[98.2923,2.4237],[98.3028,2.4252],[98.3099,2.4241],[98.3146,2.4215],[98.323,2.4254],[98.3291,2.4238],[98.3382,2.4251],[98.34,2.4321],[98.3464,2.4332],[98.3447,2.4396],[98.3461,2.4498],[98.3557,2.4621],[98.3629,2.4658],[98.3775,2.4659],[98.3959,2.4642],[98.4036,2.4661],[98.4085,2.4702],[98.4108,2.476],[98.4151,2.4803],[98.4133,2.4859],[98.4055,2.5001],[98.4057,2.5057],[98.4047,2.511],[98.3996,2.5182],[98.4,2.5205],[98.4096,2.5272],[98.4154,2.5289],[98.423,2.5282],[98.4268,2.526],[98.4394,2.5226],[98.4491,2.5259],[98.4521,2.528],[98.4591,2.536],[98.4645,2.5471],[98.4675,2.5493],[98.4669,2.5528]]}},{"type":"Feature","properties":{"mhid":"1332:41","alt_name":"KABUPATEN SAMOSIR","latitude":2.64025,"longitude":98.71525,"sample_value":156},"geometry":{"type":"LineString","coordinates":[[98.7492,2.4393],[98.7528,2.4397],[98.7561,2.4354],[98.7651,2.4291],[98.7776,2.4202],[98.7778,2.42],[98.784,2.4167],[98.79,2.4085],[98.794,2.3969],[98.7986,2.3914],[98.8046,2.3794],[98.8093,2.3732],[98.8153,2.3714],[98.8271,2.3631],[98.834,2.3606],[98.8354,2.3555],[98.8392,2.3556],[98.8413,2.3598],[98.8341,2.3663],[98.8285,2.3734],[98.8234,2.3763],[98.8228,2.3797],[98.8178,2.3812],[98.816,2.392],[98.8082,2.3985],[98.8106,2.4026],[98.8152,2.4017],[98.8141,2.4153],[98.8068,2.4215],[98.8075,2.4286],[98.7974,2.4342],[98.798,2.437],[98.7911,2.4433],[98.7886,2.435],[98.7793,2.4379],[98.7815,2.4424],[98.777,2.4502],[98.7751,2.4564],[98.7743,2.4654],[98.7698,2.4695],[98.7685,2.4791],[98.7646,2.4804],[98.762,2.486],[98.7531,2.4878],[98.7487,2.4923],[98.7505,2.5041],[98.7476,2.5074],[98.7423,2.5094],[98.7373,2.517],[98.7345,2.5177],[98.7221,2.5283],[98.7183,2.5359],[98.721,2.5398],[98.7151,2.5451],[98.7129,2.5509],[98.7054,2.5476],[98.7045,2.5428],[98.6947,2.533],[98.6869,2.538],[98.6897,2.5451],[98.6775,2.5401],[98.6765,2.5459],[98.678,2.55],[98.6726,2.5518],[98.6695,2.5478],[98.6657,2.5565],[98.6562,2.5607],[98.6641,2.5629],[98.6739,2.5676],[98.6762,2.5645],[98.6897,2.5661],[98.6874,2.571],[98.6773,2.5732],[98.6733,2.5773],[98.6873,2.588],[98.6881,2.592],[98.6861,2.5983],[98.6906,2.6068],[98.6915,2.6123],[98.6809,2.618],[98.6765,2.6186],[98.6726,2.6267],[98.6595,2.628],[98.6588,2.6343],[98.6541,2.6339],[98.6538,2.6283],[98.6493,2.6258],[98.646,2.6298],[98.6422,2.6383],[98.6387,2.633],[98.6327,2.6367],[98.6326,2.6453],[98.629,2.6469],[98.6258,2.6434],[98.6157,2.643],[98.6148,2.6497],[98.6174,2.6508],[98.6278,2.6658],[98.6264,2.6705],[98.6273,2.6759],[98.6244,2.677],[98.6266,2.6847],[98.6227,2.6862],[98.6216,2.6908],[98.6172,2.6936],[98.614,2.7025],[98.6073,2.7036],[98.6051,2.7065],[98.6035,2.7136],[98.5981,2.7173],[98.5965,2.7286],[98.5945,2.7331],[98.5909,2.7315],[98.584,2.7325],[98.5783,2.7352],[98.5743,2.7339],[98.573,2.7283],[98.5728,2.7126],[98.5703,2.6995],[98.5679,2.6919],[98.5659,2.6791],[98.5653,2.6689],[98.5627,2.6565],[98.5621,2.6433],[98.5602,2.6323],[98.5601,2.631],[98.5575,2.6142],[98.5547,2.5871],[98.5509,2.5801],[98.5237,2.5687],[98.5151,2.5633],[98.5116,2.5605],[98.4987,2.5511],[98.4905,2.5469],[98.4865,2.5469],[98.4753,2.5523],[98.4669,2.5528],[98.4675,2.5493],[98.4645,2.5471],[98.4591,2.536],[98.4521,2.528],[98.4491,2.5258],[98.4394,2.5226],[98.4268,2.526],[98.423,2.5282],[98.4154,2.5289],[98.4096,2.5272],[98.4,2.5205],[98.3996,2.5182],[98.4047,2.511],[98.4057,2.5057],[98.4055,2.5001],[98.4133,2.4859],[98.4174,2.4803],[98.4176,2.4803],[98.4309,2.487],[98.4458,2.4871],[98.4593,2.4773],[98.4684,2.4685],[98.4737,2.4646],[98.4834,2.4674],[98.5017,2.4787],[98.5106,2.4871],[98.5818,2.4866],[98.5941,2.4764],[98.6039,2.4655],[98.6109,2.4534],[98.6131,2.4435],[98.6141,2.4205],[98.6161,2.399],[98.6295,2.4093],[98.6519,2.4207],[98.6595,2.4258],[98.6674,2.428],[98.6808,2.4287],[98.696,2.4318],[98.7035,2.4337],[98.7154,2.4354],[98.7315,2.4368],[98.7492,2.4393]]}},{"type":"Feature","properties":{"mhid":"1332:41","alt_name":"KABUPATEN SAMOSIR","latitude":2.64025,"longitude":98.71525,"sample_value":156},"geometry":{"type":"LineString","coordinates":[[98.8195,2.6972],[98.8128,2.7056],[98.8139,2.7116],[98.8075,2.7186],[98.7969,2.7324],[98.7842,2.739],[98.7814,2.7419],[98.7749,2.743],[98.7638,2.743],[98.7573,2.741],[98.7511,2.7503],[98.7374,2.7549],[98.7349,2.7584],[98.727,2.759],[98.7207,2.7513],[98.7164,2.7492],[98.7112,2.7422],[98.7041,2.7374],[98.6962,2.7303],[98.6928,2.7178],[98.6909,2.708],[98.6905,2.6856],[98.6895,2.668],[98.6877,2.653],[98.6829,2.642],[98.6837,2.6387],[98.6912,2.6338],[98.6927,2.621],[98.6906,2.6139],[98.6948,2.6063],[98.6982,2.6061],[98.7064,2.5956],[98.7089,2.5856],[98.7121,2.5818],[98.712,2.5704],[98.7148,2.5679],[98.7207,2.5581],[98.7209,2.5465],[98.7252,2.5362],[98.7332,2.5303],[98.7355,2.5251],[98.7435,2.5224],[98.7448,2.5145],[98.7524,2.5095],[98.756,2.5026],[98.7646,2.5093],[98.7711,2.5075],[98.7798,2.509],[98.7895,2.4982],[98.795,2.4965],[98.7961,2.4916],[98.7995,2.4895],[98.8002,2.478],[98.7992,2.4761],[98.8011,2.4652],[98.8056,2.4643],[98.8101,2.4719],[98.8154,2.4744],[98.821,2.4712],[98.8213,2.4685],[98.8298,2.4616],[98.84,2.459],[98.8425,2.4547],[98.8463,2.4539],[98.8474,2.4497],[98.8513,2.4465],[98.8597,2.4437],[98.861,2.4385],[98.8644,2.4344],[98.877,2.4303],[98.8845,2.4339],[98.8881,2.4283],[98.8919,2.4272],[98.8979,2.4305],[98.9006,2.4361],[98.9071,2.4352],[98.9159,2.4368],[98.9231,2.4333],[98.9312,2.4356],[98.9374,2.44],[98.9393,2.4447],[98.9488,2.4435],[98.955,2.4462],[98.9612,2.4454],[98.9636,2.448],[98.9756,2.4532],[98.9796,2.4541],[98.9841,2.4588],[98.9919,2.4625],[98.994,2.467],[98.9926,2.4755],[98.9893,2.4813],[98.9839,2.4862],[98.9795,2.4981],[98.9723,2.5106],[98.9618,2.5182],[98.9437,2.5324],[98.9396,2.5337],[98.9294,2.543],[98.9212,2.5491],[98.9138,2.5591],[98.9077,2.5654],[98.9081,2.576],[98.9029,2.5804],[98.8991,2.5906],[98.8947,2.5996],[98.8921,2.6018],[98.8882,2.622],[98.8791,2.6339],[98.8685,2.6497],[98.8517,2.664],[98.858,2.6696],[98.8608,2.6677],[98.8647,2.6705],[98.8563,2.6777],[98.8495,2.6768],[98.8398,2.6794],[98.8304,2.6845],[98.8195,2.6972]]}},{"type":"Feature","properties":{"mhid":"1332:42","alt_name":"KABUPATEN SERDANG BEDAGAI","latitude":3.36667,"longitude":99.03333,"sample_value":189},"geometry":{"type":"MultiLineString","coordinates":[[[99.3153,3.444],[99.3034,3.453],[99.3005,3.4514],[99.2967,3.4595],[99.2905,3.4649],[99.2831,3.4626],[99.2704,3.4676],[99.2623,3.475],[99.2575,3.4827],[99.2545,3.4852],[99.2481,3.4966],[99.2399,3.4996],[99.2396,3.5067],[99.2261,3.519],[99.2085,3.5303],[99.1663,3.554],[99.157,3.5582],[99.1445,3.5626],[99.1375,3.5629],[99.1248,3.567],[99.1162,3.5737],[99.1099,3.577],[99.1053,3.5816],[99.0811,3.6002],[99.0711,3.6093],[99.0637,3.6131],[99.0544,3.6194],[99.0379,3.624],[99.0228,3.6297],[99.0128,3.6352],[99.0124,3.6371],[98.9898,3.653],[98.9828,3.6562],[98.9638,3.6615],[98.9537,3.6697],[98.9516,3.673],[98.9425,3.6749],[98.9444,3.6684],[98.949,3.6647],[98.9461,3.6581],[98.946,3.6477],[98.9385,3.6245],[98.9303,3.6151],[98.9255,3.6131],[98.9188,3.6],[98.9213,3.5914],[98.9191,3.5822],[98.926,3.5729],[98.9329,3.5691],[98.9339,3.566],[98.9316,3.5604],[98.9308,3.5532],[98.9262,3.5467],[98.9266,3.5444],[98.933,3.5377],[98.931,3.5327],[98.9359,3.5248],[98.9368,3.5145],[98.9333,3.5031],[98.9361,3.5003],[98.935,3.4922],[98.9322,3.4858],[98.9196,3.465],[98.9194,3.4549],[98.9143,3.449],[98.9164,3.4373],[98.9156,3.4284],[98.9187,3.4155],[98.9179,3.4113],[98.9208,3.4052],[98.9212,3.3966],[98.9168,3.3857],[98.9209,3.3812],[98.9168,3.3755],[98.9191,3.367],[98.9124,3.3579],[98.8983,3.3583],[98.8846,3.3543],[98.872,3.345],[98.8635,3.3428],[98.858,3.3438],[98.8476,3.3363],[98.842,3.3347],[98.8402,3.3298],[98.836,3.3293],[98.8325,3.3182],[98.8274,3.3151],[98.8194,3.3127],[98.8091,3.305],[98.7999,3.3014],[98.7961,3.2984],[98.7956,3.2855],[98.7891,3.2756],[98.7743,3.2672],[98.7707,3.2625],[98.7691,3.2538],[98.7639,3.2475],[98.7529,3.2398],[98.7496,3.2327],[98.7505,3.2287],[98.7481,3.2184],[98.7501,3.209],[98.7589,3.2136],[98.7622,3.2202],[98.7706,3.2146],[98.783,3.2141],[98.7856,3.2158],[98.7888,3.2225],[98.8025,3.2228],[98.8407,3.2224],[98.8435,3.2255],[98.8546,3.2308],[98.8554,3.2364],[98.86,3.2377],[98.8633,3.2413],[98.8629,3.2465],[98.865,3.2497],[98.8627,3.2572],[98.8679,3.2615],[98.9008,3.2601],[98.9091,3.2539],[98.9204,3.2611],[98.9271,3.267],[98.9387,3.2719],[98.9413,3.276],[98.952,3.2764],[98.9534,3.2804],[98.9579,3.2802],[98.9649,3.273],[98.9648,3.268],[98.9607,3.2572],[98.9541,3.2352],[98.9526,3.2219],[98.9472,3.2161],[98.9408,3.2117],[98.9399,3.2075],[98.9782,3.2071],[98.999,3.2062],[99.003,3.2023],[99.0006,3.1861],[98.9968,3.1819],[98.9893,3.183],[98.987,3.1812],[98.9861,3.1725],[98.9649,3.1438],[98.9713,3.1369],[98.9721,3.1293],[98.9751,3.1297],[98.9825,3.1269],[98.9856,3.1219],[98.9772,3.1188],[98.9769,3.1075],[98.9786,3.0927],[98.98,3.0919],[98.9815,3.082],[98.978,3.072],[98.9742,3.0659],[98.9563,3.0475],[98.9528,3.0382],[98.935,3.0263],[98.9329,3.0219],[98.9275,3.0159],[98.9573,3.0156],[98.9801,3.0194],[98.9889,3.0234],[98.9996,3.027],[99.0015,3.0404],[99.0087,3.0468],[99.01,3.0499],[99.0093,3.0603],[99.0071,3.0703],[99.0186,3.0844],[99.0305,3.0935],[99.0318,3.0959],[99.032,3.1081],[99.046,3.114],[99.0464,3.1178],[99.0754,3.1293],[99.0818,3.1293],[99.0818,3.1348],[99.0959,3.1346],[99.1129,3.143],[99.1373,3.164],[99.1378,3.1674],[99.1572,3.1672],[99.1577,3.1703],[99.1681,3.1768],[99.1682,3.181],[99.1755,3.1856],[99.172,3.1969],[99.1866,3.197],[99.1907,3.1945],[99.2003,3.2042],[99.2012,3.2092],[99.1992,3.2129],[99.2065,3.2191],[99.208,3.2236],[99.2137,3.2255],[99.2176,3.2307],[99.2188,3.2352],[99.2285,3.2443],[99.2352,3.2524],[99.2348,3.2668],[99.2447,3.2829],[99.246,3.291],[99.251,3.2948],[99.2597,3.311],[99.261,3.3176],[99.259,3.3212],[99.2628,3.3326],[99.2694,3.3397],[99.2779,3.3529],[99.2828,3.3648],[99.2875,3.371],[99.2878,3.3746],[99.2918,3.3864],[99.2979,3.3985],[99.2984,3.4021],[99.3038,3.4142],[99.3042,3.4203],[99.3102,3.4345],[99.3153,3.444]],[[99.1683,3.3744],[99.1689,3.3785],[99.1767,3.3715],[99.1774,3.3681],[99.17,3.3643],[99.1681,3.36],[99.1719,3.3552],[99.1677,3.3504],[99.1753,3.3496],[99.1787,3.3541],[99.1888,3.3583],[99.1938,3.3515],[99.1903,3.341],[99.1832,3.3373],[99.1839,3.3289],[99.1874,3.3172],[99.1912,3.3175],[99.1926,3.3109],[99.1838,3.3089],[99.1818,3.3064],[99.1731,3.3065],[99.1731,3.3092],[99.1542,3.3091],[99.1509,3.3056],[99.1462,3.3069],[99.1442,3.3117],[99.137,3.3053],[99.1426,3.296],[99.1433,3.2907],[99.1371,3.2837],[99.1363,3.2776],[99.1275,3.2882],[99.1249,3.2896],[99.1202,3.2973],[99.119,3.3016],[99.1263,3.3074],[99.1321,3.3078],[99.132,3.3157],[99.1268,3.3213],[99.1289,3.3279],[99.125,3.3293],[99.125,3.3359],[99.1144,3.3371],[99.1232,3.3433],[99.1289,3.3499],[99.1354,3.3498],[99.14,3.3449],[99.1451,3.35],[99.1544,3.3416],[99.1658,3.3571],[99.1561,3.3669],[99.1596,3.3706],[99.1683,3.3744]]]}},{"type":"Feature","properties":{"mhid":"1332:43","alt_name":"KABUPATEN BATU BARA","latitude":3.16166,"longitude":99.52652,"sample_value":812},"geometry":{"type":"LineString","coordinates":[[99.7523,3.1708],[99.7401,3.1733],[99.7285,3.1796],[99.7046,3.1978],[99.6882,3.2068],[99.6786,3.2094],[99.673,3.2076],[99.6667,3.2124],[99.6581,3.2136],[99.6431,3.2169],[99.6055,3.2274],[99.5962,3.2327],[99.5917,3.2337],[99.5879,3.2295],[99.5821,3.2326],[99.571,3.2336],[99.5587,3.2387],[99.5476,3.245],[99.5403,3.2509],[99.5345,3.2617],[99.5282,3.2684],[99.5179,3.2769],[99.5137,3.2817],[99.5116,3.2871],[99.5124,3.2916],[99.5051,3.2975],[99.5011,3.3024],[99.4984,3.3101],[99.4941,3.3143],[99.4865,3.3175],[99.4871,3.3199],[99.4852,3.3331],[99.4879,3.3415],[99.484,3.3479],[99.4733,3.3486],[99.4641,3.3521],[99.4548,3.358],[99.4523,3.3628],[99.4445,3.3705],[99.4361,3.3761],[99.4251,3.3807],[99.4217,3.3849],[99.4126,3.3852],[99.3902,3.3939],[99.368,3.3996],[99.3653,3.4027],[99.3559,3.409],[99.3465,3.4189],[99.3398,3.4237],[99.3317,3.4247],[99.3173,3.4371],[99.3153,3.444],[99.3102,3.4345],[99.3042,3.4203],[99.3038,3.4142],[99.2984,3.4021],[99.2979,3.3985],[99.2918,3.3864],[99.2878,3.3746],[99.2875,3.371],[99.2828,3.3648],[99.2779,3.3529],[99.2694,3.3397],[99.2628,3.3326],[99.259,3.3212],[99.261,3.3176],[99.2597,3.311],[99.251,3.2948],[99.246,3.291],[99.2447,3.2829],[99.2348,3.2668],[99.2352,3.2524],[99.2285,3.2443],[99.2188,3.2352],[99.2176,3.2307],[99.2137,3.2255],[99.208,3.2236],[99.2304,3.1997],[99.2294,3.205],[99.231,3.2128],[99.2303,3.2203],[99.2339,3.2257],[99.2362,3.2347],[99.2408,3.241],[99.2453,3.2446],[99.241,3.2526],[99.2523,3.2567],[99.2543,3.2534],[99.2585,3.2539],[99.2639,3.2571],[99.2639,3.2616],[99.2601,3.2641],[99.2675,3.2733],[99.2724,3.2745],[99.282,3.2708],[99.2932,3.2723],[99.2989,3.2785],[99.3053,3.281],[99.3094,3.2875],[99.3086,3.2998],[99.3442,3.2877],[99.3484,3.2743],[99.3458,3.2698],[99.3453,3.2644],[99.3473,3.2598],[99.3443,3.2522],[99.3453,3.2489],[99.342,3.238],[99.3444,3.2317],[99.3509,3.2267],[99.3556,3.2162],[99.3626,3.2215],[99.3613,3.2254],[99.3657,3.2347],[99.374,3.247],[99.379,3.2476],[99.3865,3.2534],[99.3947,3.2446],[99.3971,3.25],[99.402,3.2533],[99.407,3.2516],[99.4046,3.2419],[99.3975,3.2231],[99.385,3.1954],[99.3719,3.1704],[99.3631,3.1511],[99.379,3.1497],[99.4219,3.1467],[99.4928,3.1214],[99.4821,3.1119],[99.5082,3.1011],[99.517,3.1095],[99.5288,3.1019],[99.5369,3.0989],[99.5465,3.0982],[99.5659,3.0775],[99.5612,3.0702],[99.5724,3.0698],[99.5718,3.0491],[99.5572,3.0491],[99.557,3.0361],[99.5494,3.0361],[99.5496,3.0181],[99.5563,3.0179],[99.5557,3.0276],[99.5657,3.0342],[99.5698,3.0382],[99.584,3.0437],[99.5877,3.0384],[99.5945,3.0432],[99.5981,3.0579],[99.5952,3.0669],[99.6052,3.0753],[99.6079,3.0808],[99.6068,3.0914],[99.6078,3.0957],[99.611,3.0983],[99.6101,3.1037],[99.602,3.102],[99.5999,3.0983],[99.589,3.1107],[99.6076,3.1269],[99.616,3.1269],[99.6218,3.1304],[99.6298,3.1248],[99.6326,3.1174],[99.6353,3.1197],[99.6402,3.1159],[99.6483,3.1055],[99.6936,3.1054],[99.7067,3.1251],[99.7127,3.1298],[99.7228,3.1359],[99.7416,3.1527],[99.7476,3.1601],[99.7523,3.1708]]}},{"type":"Feature","properties":{"mhid":"1332:44","alt_name":"KABUPATEN PADANG LAWAS UTARA","latitude":1.46011,"longitude":99.67346,"sample_value":786},"geometry":{"type":"MultiLineString","coordinates":[[[99.6619,2.038],[99.6555,2.0293],[99.6403,2.0366],[99.6369,2.042],[99.6171,2.0412],[99.6162,2.0384],[99.617,2.0234],[99.6242,2.0136],[99.6264,2.006],[99.6268,1.9994],[99.6233,1.9964],[99.6141,1.9957],[99.6073,1.9972],[99.5977,2.0036],[99.5973,2.0082],[99.5914,2.0147],[99.5803,2.0219],[99.572,2.0295],[99.5658,2.0295],[99.5577,2.0175],[99.5546,2.0088],[99.555,2],[99.5587,1.9916],[99.5576,1.9781],[99.5538,1.9731],[99.5492,1.9701],[99.5496,1.9643],[99.5449,1.9538],[99.5461,1.9486],[99.552,1.9443],[99.5534,1.9407],[99.5528,1.9314],[99.5552,1.9213],[99.5595,1.9172],[99.5642,1.9155],[99.5669,1.912],[99.5747,1.912],[99.5762,1.9089],[99.5722,1.9003],[99.5586,1.885],[99.5603,1.8729],[99.5486,1.8648],[99.5489,1.8597],[99.5544,1.856],[99.5561,1.8471],[99.5628,1.8326],[99.568,1.8243],[99.5708,1.8105],[99.5676,1.7945],[99.5649,1.777],[99.5659,1.7567],[99.5588,1.7508],[99.5527,1.7431],[99.551,1.7344],[99.553,1.73],[99.5499,1.7249],[99.5508,1.718],[99.5388,1.7176],[99.5369,1.7222],[99.5287,1.7262],[99.5235,1.7259],[99.5196,1.7285],[99.5106,1.7259],[99.5057,1.7215],[99.5022,1.7147],[99.4935,1.7115],[99.4774,1.7022],[99.4728,1.6949],[99.4714,1.6879],[99.4676,1.6825],[99.4672,1.6769],[99.4639,1.6717],[99.4592,1.6697],[99.4438,1.6672],[99.4394,1.6637],[99.4354,1.6539],[99.4371,1.6473],[99.435,1.6248],[99.4378,1.6215],[99.4428,1.6199],[99.4506,1.6138],[99.454,1.6041],[99.4542,1.5927],[99.4495,1.5862],[99.4328,1.5759],[99.4266,1.5743],[99.4204,1.5767],[99.4109,1.5777],[99.4044,1.5755],[99.3977,1.5751],[99.391,1.5711],[99.4042,1.5588],[99.4091,1.5578],[99.4168,1.5482],[99.4207,1.5387],[99.4217,1.5316],[99.4265,1.5263],[99.4342,1.5225],[99.4381,1.5188],[99.4214,1.5067],[99.4142,1.5031],[99.4178,1.4948],[99.4081,1.4899],[99.4029,1.4817],[99.4034,1.4759],[99.402,1.4647],[99.4029,1.4628],[99.4018,1.4518],[99.4045,1.4469],[99.4039,1.4424],[99.407,1.4322],[99.3993,1.4347],[99.3966,1.4307],[99.4002,1.4259],[99.3998,1.4136],[99.3946,1.4131],[99.3862,1.4195],[99.384,1.4242],[99.3781,1.4273],[99.3693,1.4302],[99.3671,1.4323],[99.3566,1.4341],[99.3511,1.4329],[99.3459,1.4293],[99.3467,1.4074],[99.3539,1.3958],[99.3565,1.3897],[99.3646,1.3758],[99.3689,1.3621],[99.38,1.3499],[99.3859,1.3369],[99.3898,1.3341],[99.3928,1.3223],[99.3908,1.3144],[99.4076,1.3006],[99.4126,1.285],[99.419,1.2788],[99.4174,1.2668],[99.419,1.2608],[99.4161,1.2517],[99.4237,1.2361],[99.4212,1.2306],[99.4313,1.2343],[99.4522,1.2366],[99.4612,1.2396],[99.465,1.244],[99.4711,1.2585],[99.478,1.2626],[99.4867,1.2633],[99.5026,1.2631],[99.5143,1.2663],[99.532,1.2734],[99.5385,1.2817],[99.5426,1.2824],[99.5525,1.2796],[99.564,1.2803],[99.5674,1.2859],[99.57,1.295],[99.5743,1.3015],[99.584,1.3061],[99.5983,1.3061],[99.6047,1.3121],[99.61,1.3144],[99.6178,1.3156],[99.6261,1.315],[99.6286,1.322],[99.6397,1.3354],[99.6481,1.3426],[99.6657,1.3539],[99.6684,1.3604],[99.6738,1.3653],[99.6774,1.3703],[99.6828,1.3743],[99.6921,1.3752],[99.7028,1.3784],[99.7043,1.385],[99.7122,1.3915],[99.7135,1.3947],[99.7104,1.4029],[99.7136,1.4113],[99.7163,1.4149],[99.7214,1.4175],[99.726,1.4176],[99.7407,1.4204],[99.7436,1.4197],[99.7598,1.435],[99.7711,1.4428],[99.7785,1.4504],[99.7961,1.4656],[99.8032,1.4701],[99.8169,1.4802],[99.838,1.4982],[99.8451,1.5102],[99.8465,1.5205],[99.8489,1.5243],[99.8549,1.5278],[99.8716,1.5348],[99.8855,1.5429],[99.8975,1.5487],[99.9023,1.5445],[99.9034,1.5387],[99.9151,1.5315],[99.9195,1.5255],[99.9209,1.518],[99.9216,1.4882],[99.9225,1.4826],[99.9261,1.4722],[99.9335,1.4596],[99.9391,1.4476],[99.944,1.4394],[99.9487,1.4272],[99.9446,1.4223],[99.9471,1.4161],[99.9432,1.4051],[99.9502,1.3978],[99.9545,1.3788],[99.9531,1.3725],[99.9543,1.3676],[99.9651,1.3772],[99.9714,1.3803],[99.9929,1.382],[100.0011,1.3803],[100.0076,1.3748],[100.0132,1.367],[100.0152,1.3623],[100.0254,1.3569],[100.0304,1.3796],[100.0357,1.3868],[100.0416,1.392],[100.051,1.3948],[100.0697,1.3988],[100.0872,1.4005],[100.0953,1.4004],[100.1014,1.3973],[100.119,1.3958],[100.1276,1.3993],[100.1343,1.4035],[100.1493,1.4026],[100.1615,1.4032],[100.1771,1.4011],[100.1866,1.4008],[100.2008,1.3988],[100.211,1.4055],[100.2221,1.4098],[100.2407,1.4127],[100.2521,1.4129],[100.2606,1.4205],[100.2657,1.423],[100.2735,1.4228],[100.2834,1.4247],[100.2887,1.4231],[100.2964,1.4182],[100.3075,1.417],[100.3104,1.4214],[100.3157,1.4257],[100.3258,1.4283],[100.3336,1.4334],[100.3443,1.4363],[100.3396,1.4389],[100.3321,1.4398],[100.3275,1.4432],[100.3227,1.4429],[100.3194,1.4468],[100.3061,1.4506],[100.2998,1.4547],[100.2915,1.4571],[100.2885,1.4607],[100.2794,1.4662],[100.2816,1.4757],[100.287,1.4785],[100.2944,1.4736],[100.309,1.4717],[100.3168,1.4761],[100.319,1.4925],[100.3184,1.5004],[100.3109,1.5109],[100.3065,1.5146],[100.2863,1.5215],[100.2828,1.5248],[100.2761,1.5275],[100.2717,1.5318],[100.2645,1.5333],[100.2546,1.5381],[100.2482,1.5444],[100.2383,1.5504],[100.2334,1.5514],[100.222,1.5638],[100.2163,1.5681],[100.2088,1.5701],[100.2089,1.5755],[100.2016,1.5842],[100.1903,1.5875],[100.173,1.5953],[100.1684,1.6005],[100.1621,1.6109],[100.1655,1.6205],[100.16,1.6265],[100.1537,1.6302],[100.1455,1.631],[100.1422,1.6445],[100.1383,1.6527],[100.1281,1.6576],[100.1245,1.6649],[100.109,1.6895],[100.0988,1.7017],[100.0844,1.7129],[100.0766,1.7217],[100.0714,1.7241],[100.0641,1.725],[100.0561,1.7234],[100.0494,1.7208],[100.0403,1.6996],[100.0284,1.6803],[100.0184,1.6624],[100.0131,1.6561],[100.0044,1.6415],[99.9994,1.6375],[99.993,1.6367],[99.9792,1.6313],[99.9637,1.6279],[99.9549,1.6246],[99.952,1.6259],[99.9469,1.6352],[99.9433,1.6451],[99.9401,1.6491],[99.9327,1.6703],[99.9262,1.6867],[99.9215,1.6941],[99.9141,1.7141],[99.8992,1.7163],[99.8936,1.707],[99.8849,1.6904],[99.8727,1.674],[99.8618,1.6608],[99.8588,1.6544],[99.8473,1.6374],[99.8438,1.6389],[99.8397,1.6439],[99.8283,1.6514],[99.8242,1.6582],[99.8232,1.6626],[99.8166,1.673],[99.8098,1.6734],[99.8,1.6791],[99.7968,1.6828],[99.7898,1.6853],[99.771,1.6968],[99.7677,1.7067],[99.7653,1.7105],[99.7598,1.7137],[99.7515,1.7159],[99.7438,1.7201],[99.7335,1.7241],[99.7317,1.7328],[99.7259,1.7363],[99.7206,1.7417],[99.7159,1.7527],[99.704,1.7607],[99.7023,1.7683],[99.7047,1.7782],[99.7035,1.7832],[99.6996,1.7864],[99.6952,1.8047],[99.6961,1.8075],[99.7061,1.8189],[99.7279,1.8283],[99.7418,1.8286],[99.7455,1.8298],[99.7507,1.8276],[99.7591,1.8263],[99.7599,1.8195],[99.7659,1.8188],[99.7801,1.8087],[99.7871,1.8099],[99.7948,1.809],[99.8022,1.8059],[99.8148,1.8069],[99.8207,1.8041],[99.8296,1.7976],[99.8394,1.7994],[99.8397,1.8021],[99.8366,1.8104],[99.8285,1.8257],[99.8234,1.8318],[99.8209,1.8445],[99.8182,1.8521],[99.8168,1.8611],[99.8124,1.866],[99.816,1.8746],[99.8174,1.8838],[99.8141,1.8954],[99.8086,1.9036],[99.8242,1.9107],[99.8322,1.9115],[99.8347,1.9148],[99.8334,1.9263],[99.8317,1.9311],[99.833,1.9418],[99.841,1.9708],[99.8408,1.9811],[99.8302,1.9911],[99.8289,1.9945],[99.8383,2],[99.8419,2.0104],[99.8465,2.0167],[99.8421,2.0191],[99.8371,2.0193],[99.8279,2.0161],[99.8242,2.0161],[99.8229,2.0202],[99.8242,2.0247],[99.816,2.0257],[99.8068,2.0215],[99.8025,2.016],[99.798,2.0183],[99.7914,2.0247],[99.7812,2.0171],[99.7697,2.0127],[99.7668,2.0073],[99.7591,2.0044],[99.7468,2.0037],[99.7459,2.0025],[99.7401,1.9797],[99.7386,1.977],[99.7323,1.9766],[99.714,1.9631],[99.7067,1.9351],[99.7047,1.9299],[99.6775,1.9373],[99.6797,1.9447],[99.6906,1.9696],[99.6875,1.9952],[99.6902,2.0017],[99.6884,2.0068],[99.6879,2.0157],[99.6813,2.0271],[99.6837,2.035],[99.6828,2.0371],[99.6683,2.036],[99.6619,2.038]],[[99.4355,1.4769],[99.4318,1.4683],[99.4331,1.4612],[99.4408,1.4539],[99.4442,1.4468],[99.4418,1.4335],[99.4354,1.4321],[99.4279,1.4342],[99.4223,1.4417],[99.4195,1.449],[99.4213,1.4549],[99.4204,1.4644],[99.4239,1.4689],[99.4239,1.4752],[99.4341,1.4803],[99.4355,1.4769]]]}},{"type":"Feature","properties":{"mhid":"1332:45","alt_name":"KABUPATEN PADANG LAWAS","latitude":1.44684,"longitude":99.99207,"sample_value":108},"geometry":{"type":"LineString","coordinates":[[100.0254,1.3569],[100.0152,1.3623],[100.0132,1.367],[100.0076,1.3748],[100.0011,1.3803],[99.9929,1.382],[99.9714,1.3803],[99.9651,1.3772],[99.9543,1.3676],[99.9531,1.3725],[99.9545,1.3788],[99.9502,1.3978],[99.9432,1.4051],[99.9471,1.4161],[99.9446,1.4223],[99.9487,1.4272],[99.944,1.4394],[99.9391,1.4476],[99.9335,1.4596],[99.9261,1.4722],[99.9225,1.4826],[99.9216,1.4882],[99.9209,1.518],[99.9195,1.5255],[99.9151,1.5315],[99.9034,1.5387],[99.9023,1.5445],[99.8975,1.5487],[99.8855,1.5429],[99.8716,1.5348],[99.8549,1.5278],[99.8489,1.5243],[99.8465,1.5205],[99.8451,1.5102],[99.838,1.4982],[99.8169,1.4802],[99.8032,1.4701],[99.7961,1.4656],[99.7785,1.4504],[99.7711,1.4428],[99.7598,1.435],[99.7436,1.4197],[99.7407,1.4204],[99.726,1.4176],[99.7214,1.4175],[99.7163,1.4149],[99.7136,1.4113],[99.7104,1.4029],[99.7135,1.3947],[99.7122,1.3915],[99.7043,1.385],[99.7028,1.3784],[99.6921,1.3752],[99.6828,1.3743],[99.6774,1.3703],[99.6738,1.3653],[99.6684,1.3604],[99.6657,1.3539],[99.6481,1.3426],[99.6397,1.3354],[99.6286,1.322],[99.6261,1.315],[99.6178,1.3156],[99.61,1.3144],[99.6047,1.3121],[99.5983,1.3061],[99.584,1.3061],[99.5743,1.3015],[99.57,1.295],[99.5674,1.2859],[99.564,1.2803],[99.5525,1.2796],[99.5426,1.2824],[99.5385,1.2817],[99.532,1.2734],[99.5143,1.2663],[99.5026,1.2631],[99.4867,1.2633],[99.478,1.2626],[99.4711,1.2585],[99.465,1.244],[99.4612,1.2396],[99.4522,1.2366],[99.4313,1.2343],[99.4212,1.2306],[99.419,1.2254],[99.4206,1.2169],[99.4282,1.2029],[99.4309,1.1957],[99.431,1.1862],[99.435,1.1816],[99.4479,1.179],[99.4517,1.1769],[99.4616,1.1677],[99.4654,1.1595],[99.4735,1.1509],[99.478,1.1484],[99.4844,1.142],[99.5048,1.1337],[99.5102,1.1309],[99.5136,1.1297],[99.5246,1.1126],[99.526,1.1082],[99.5314,1.1029],[99.5391,1.0974],[99.5449,1.0891],[99.5467,1.0709],[99.5588,1.0697],[99.5648,1.068],[99.5684,1.0651],[99.5677,1.0564],[99.5695,1.0417],[99.5731,1.0333],[99.581,1.0194],[99.5939,1.0111],[99.5973,1.0064],[99.5988,0.9937],[99.5906,0.9833],[99.5902,0.9773],[99.5866,0.9718],[99.5884,0.9678],[99.5941,0.9654],[99.6003,0.9522],[99.6025,0.9505],[99.6145,0.9495],[99.6205,0.9468],[99.6257,0.942],[99.6249,0.9375],[99.6301,0.9309],[99.6357,0.9273],[99.6404,0.92],[99.6502,0.9192],[99.6587,0.9274],[99.6692,0.9274],[99.676,0.9318],[99.6887,0.9333],[99.7002,0.927],[99.7128,0.9147],[99.7134,0.906],[99.7187,0.9021],[99.7226,0.8947],[99.7332,0.8933],[99.7348,0.8903],[99.7331,0.8851],[99.7351,0.8816],[99.7426,0.875],[99.7442,0.866],[99.7517,0.8664],[99.7594,0.8615],[99.7646,0.864],[99.7675,0.8599],[99.7758,0.858],[99.7838,0.858],[99.7915,0.8545],[99.7989,0.8572],[99.8028,0.8547],[99.8054,0.8502],[99.8137,0.8463],[99.8198,0.8362],[99.8344,0.827],[99.838,0.8181],[99.8409,0.8177],[99.8376,0.8221],[99.8406,0.8299],[99.8418,0.8377],[99.8408,0.8531],[99.8338,0.8686],[99.8308,0.8776],[99.8336,0.8861],[99.8407,0.8929],[99.857,0.8967],[99.8653,0.906],[99.8716,0.9074],[99.8803,0.9045],[99.8818,0.9017],[99.8925,0.8969],[99.8984,0.896],[99.9005,0.891],[99.9099,0.887],[99.9313,0.8837],[99.9411,0.8827],[99.9517,0.8793],[99.9595,0.8689],[99.9608,0.86],[99.9675,0.8507],[99.9731,0.8487],[99.9763,0.8499],[99.982,0.8457],[99.9966,0.8415],[100.0017,0.8435],[100.0093,0.8406],[100.0347,0.8273],[100.0622,0.8081],[100.0744,0.8012],[100.0974,0.794],[100.1197,0.7859],[100.136,0.7755],[100.1697,0.7647],[100.1786,0.7644],[100.1646,0.7803],[100.1563,0.7844],[100.153,0.7889],[100.1435,0.7951],[100.1348,0.8055],[100.1243,0.8165],[100.12,0.8263],[100.1191,0.8351],[100.123,0.8392],[100.1235,0.8464],[100.1282,0.8474],[100.129,0.8436],[100.1379,0.8442],[100.1341,0.8662],[100.1372,0.8813],[100.1427,0.8844],[100.1399,0.8922],[100.1414,0.8998],[100.1329,0.9085],[100.1326,0.9133],[100.1347,0.9177],[100.1353,0.926],[100.1292,0.9317],[100.1284,0.9368],[100.1325,0.9494],[100.1416,0.9524],[100.1439,0.9544],[100.1446,0.9616],[100.1479,0.9658],[100.1467,0.9753],[100.1424,0.9777],[100.1398,0.9844],[100.1541,0.9908],[100.1594,0.9957],[100.1615,0.9995],[100.1665,0.9995],[100.1645,1.0044],[100.1591,1.0089],[100.1494,1.0122],[100.1445,1.0194],[100.1398,1.0305],[100.1387,1.0397],[100.1409,1.0475],[100.1413,1.0581],[100.1402,1.0608],[100.1303,1.055],[100.1258,1.0585],[100.1212,1.068],[100.121,1.0755],[100.1223,1.091],[100.1285,1.1043],[100.1347,1.1121],[100.1418,1.1172],[100.1481,1.1192],[100.1609,1.1196],[100.1622,1.1181],[100.1693,1.1227],[100.1749,1.1206],[100.1776,1.1176],[100.1826,1.1205],[100.184,1.1236],[100.1782,1.1265],[100.1727,1.1335],[100.1669,1.1335],[100.1644,1.1367],[100.1637,1.1442],[100.1617,1.1494],[100.1562,1.1554],[100.1499,1.1582],[100.1447,1.1588],[100.1354,1.1683],[100.1342,1.1747],[100.1298,1.186],[100.1215,1.1969],[100.1242,1.2025],[100.1228,1.2104],[100.118,1.2167],[100.1197,1.2238],[100.119,1.2346],[100.1228,1.25],[100.1189,1.2565],[100.1078,1.2678],[100.101,1.2704],[100.0941,1.2705],[100.0746,1.2759],[100.0577,1.3001],[100.0547,1.3067],[100.0473,1.3153],[100.0384,1.3179],[100.0302,1.3249],[100.0261,1.3327],[100.0248,1.3527],[100.0254,1.3569]]}},{"type":"Feature","properties":{"mhid":"1332:46","alt_name":"KABUPATEN LABUHAN BATU SELATAN","latitude":1.983,"longitude":100.0976,"sample_value":606},"geometry":{"type":"LineString","coordinates":[[100.3168,1.4761],[100.3218,1.4775],[100.3237,1.4741],[100.3227,1.4638],[100.3237,1.4595],[100.3327,1.4601],[100.3418,1.4585],[100.3768,1.4553],[100.3852,1.4598],[100.3882,1.4555],[100.4006,1.4619],[100.408,1.4627],[100.4131,1.465],[100.4172,1.4705],[100.424,1.4888],[100.4258,1.5047],[100.4229,1.5129],[100.4201,1.5148],[100.4225,1.5257],[100.4175,1.5365],[100.4125,1.5412],[100.4154,1.5482],[100.4188,1.5609],[100.4178,1.5659],[100.4115,1.5656],[100.4115,1.572],[100.408,1.5755],[100.404,1.5859],[100.4103,1.5919],[100.414,1.6001],[100.4148,1.6095],[100.4112,1.6194],[100.4034,1.624],[100.4064,1.6396],[100.4126,1.6461],[100.412,1.6612],[100.407,1.6728],[100.4007,1.6656],[100.3829,1.6721],[100.369,1.667],[100.3432,1.6791],[100.3307,1.6786],[100.3203,1.6805],[100.3191,1.69],[100.3286,1.6988],[100.3383,1.7105],[100.3461,1.7231],[100.3523,1.7378],[100.3528,1.7655],[100.3538,1.7821],[100.3306,1.7846],[100.2962,1.7912],[100.2889,1.7958],[100.2843,1.8007],[100.2777,1.8135],[100.2788,1.8245],[100.2813,1.834],[100.28,1.8423],[100.2815,1.8651],[100.2893,1.8768],[100.2922,1.8789],[100.3051,1.8823],[100.3112,1.8928],[100.3108,1.8997],[100.3144,1.9096],[100.3135,1.9276],[100.3133,1.944],[100.3141,1.9676],[100.3155,1.9904],[100.3165,1.9981],[100.3155,2.0524],[100.3266,2.0838],[100.3305,2.0959],[100.3367,2.1222],[100.3636,2.1689],[100.3632,2.1741],[100.3641,2.2016],[100.3651,2.2102],[100.3548,2.2114],[100.3313,2.2122],[100.2131,2.2096],[100.2104,2.1932],[100.1667,2.1925],[100.1352,2.191],[100.1291,2.1769],[100.1202,2.1586],[100.0973,2.1146],[100.0951,2.1082],[100.088,2.1047],[100.0735,2.1051],[100.07,2.1024],[100.0445,2.0855],[100.0451,2.061],[100.0465,2.0534],[100.0442,2.0426],[100.0449,2.0304],[100.0326,2.0187],[100.0294,2.0115],[100.0147,1.9997],[100.018,1.9941],[100.0264,1.9942],[100.04,1.9892],[100.0483,1.987],[100.0551,1.9885],[100.0587,1.9853],[100.0573,1.9799],[100.0398,1.9445],[100.0309,1.9352],[100.0042,1.9347],[100.0013,1.939],[100.0009,1.9671],[100.0012,1.9812],[99.9966,1.979],[99.9965,1.9747],[99.9894,1.9722],[99.9886,1.9675],[99.9855,1.9638],[99.979,1.9614],[99.9745,1.9619],[99.9661,1.9658],[99.9509,1.97],[99.9402,1.9712],[99.9303,1.9692],[99.9233,1.9645],[99.9178,1.958],[99.9095,1.9591],[99.9036,1.9579],[99.8999,1.9541],[99.8933,1.9519],[99.8859,1.9445],[99.8817,1.9348],[99.879,1.9245],[99.873,1.9173],[99.8564,1.9058],[99.8564,1.8808],[99.8575,1.8646],[99.8574,1.8447],[99.8554,1.8333],[99.8571,1.823],[99.86,1.8159],[99.8557,1.8061],[99.85,1.805],[99.8394,1.7994],[99.8296,1.7976],[99.8207,1.8041],[99.8148,1.8069],[99.8022,1.8059],[99.7948,1.809],[99.7871,1.8099],[99.7801,1.8087],[99.7659,1.8188],[99.7599,1.8195],[99.7591,1.8263],[99.7507,1.8276],[99.7455,1.8298],[99.7418,1.8286],[99.7279,1.8283],[99.7061,1.8189],[99.6961,1.8075],[99.6952,1.8047],[99.6996,1.7864],[99.7035,1.7832],[99.7047,1.7782],[99.7023,1.7683],[99.704,1.7607],[99.7159,1.7527],[99.7206,1.7417],[99.7259,1.7363],[99.7317,1.7328],[99.7335,1.7241],[99.7438,1.7201],[99.7515,1.7159],[99.7598,1.7137],[99.7653,1.7105],[99.7677,1.7067],[99.771,1.6968],[99.7898,1.6853],[99.7968,1.6828],[99.8,1.6791],[99.8098,1.6734],[99.8166,1.673],[99.8232,1.6626],[99.8242,1.6582],[99.8283,1.6514],[99.8397,1.6439],[99.8438,1.6389],[99.8473,1.6374],[99.8588,1.6544],[99.8618,1.6608],[99.8727,1.674],[99.8849,1.6904],[99.8936,1.707],[99.8992,1.7163],[99.9141,1.7141],[99.9215,1.6941],[99.9262,1.6867],[99.9327,1.6703],[99.9401,1.6491],[99.9433,1.6451],[99.9469,1.6352],[99.952,1.6259],[99.9549,1.6246],[99.9637,1.6279],[99.9792,1.6313],[99.993,1.6367],[99.9994,1.6375],[100.0044,1.6415],[100.0131,1.6561],[100.0184,1.6624],[100.0284,1.6803],[100.0403,1.6996],[100.0494,1.7208],[100.0561,1.7234],[100.0641,1.725],[100.0714,1.7241],[100.0766,1.7217],[100.0844,1.7129],[100.0988,1.7017],[100.109,1.6895],[100.1245,1.6649],[100.1281,1.6576],[100.1383,1.6527],[100.1422,1.6445],[100.1455,1.631],[100.1537,1.6302],[100.16,1.6265],[100.1655,1.6205],[100.1621,1.6109],[100.1684,1.6005],[100.173,1.5953],[100.1903,1.5875],[100.2016,1.5842],[100.2089,1.5755],[100.2088,1.5701],[100.2163,1.5681],[100.222,1.5638],[100.2334,1.5514],[100.2383,1.5504],[100.2482,1.5444],[100.2546,1.5381],[100.2645,1.5333],[100.2717,1.5318],[100.2761,1.5275],[100.2828,1.5248],[100.2863,1.5215],[100.3065,1.5146],[100.3109,1.5109],[100.3184,1.5004],[100.319,1.4925],[100.3168,1.4761]]}},{"type":"Feature","properties":{"mhid":"1332:47","alt_name":"KABUPATEN LABUHAN BATU UTARA","latitude":2.33349,"longitude":99.63776,"sample_value":238},"geometry":{"type":"LineString","coordinates":[[100.0492,2.7328],[100.0452,2.7377],[100.0344,2.7392],[100.0192,2.7334],[100.0061,2.7223],[99.9973,2.7092],[99.9905,2.6965],[99.9889,2.6789],[99.9876,2.6752],[99.9803,2.6721],[99.975,2.6715],[99.9688,2.674],[99.9633,2.6783],[99.9532,2.6912],[99.9512,2.6974],[99.956,2.714],[99.9602,2.7227],[99.9661,2.73],[99.9717,2.7342],[99.9779,2.7441],[99.9863,2.7473],[99.9909,2.7546],[99.9922,2.769],[99.9916,2.7798],[99.9939,2.7884],[99.9938,2.8166],[99.9948,2.8317],[99.9923,2.8337],[99.9888,2.8448],[99.9893,2.8509],[99.9847,2.8527],[99.9626,2.829],[99.9434,2.8115],[99.9256,2.794],[99.889,2.7546],[99.8841,2.7487],[99.8676,2.739],[99.8672,2.73],[99.8271,2.6965],[99.8222,2.6885],[99.76,2.6345],[99.7507,2.6253],[99.7425,2.6262],[99.7378,2.6221],[99.7331,2.6152],[99.7255,2.6065],[99.7193,2.6045],[99.7122,2.5966],[99.697,2.587],[99.6841,2.5873],[99.6796,2.5861],[99.6676,2.5872],[99.6544,2.5815],[99.6438,2.5802],[99.6434,2.5762],[99.6382,2.5756],[99.6088,2.5752],[99.6068,2.5792],[99.5916,2.5857],[99.5868,2.5909],[99.5832,2.5913],[99.5781,2.5864],[99.5696,2.585],[99.5629,2.5945],[99.5596,2.6047],[99.5558,2.6062],[99.543,2.603],[99.5384,2.5922],[99.5271,2.5923],[99.5219,2.5906],[99.5178,2.5921],[99.512,2.588],[99.5,2.5852],[99.4896,2.5774],[99.4855,2.5732],[99.4794,2.5639],[99.4725,2.556],[99.4612,2.5508],[99.453,2.5412],[99.4523,2.5382],[99.4504,2.5125],[99.4493,2.505],[99.4507,2.5029],[99.4462,2.4939],[99.4398,2.489],[99.4233,2.4655],[99.4207,2.4586],[99.4515,2.4348],[99.4736,2.4185],[99.5031,2.3953],[99.5172,2.3985],[99.5169,2.4062],[99.51,2.4125],[99.511,2.4163],[99.5174,2.4193],[99.5175,2.4251],[99.5128,2.4348],[99.5124,2.4415],[99.5215,2.4591],[99.5278,2.4511],[99.5221,2.4457],[99.5197,2.4408],[99.5237,2.4344],[99.5276,2.4322],[99.5258,2.4182],[99.5271,2.413],[99.5264,2.4035],[99.5232,2.3941],[99.5238,2.3879],[99.5211,2.3866],[99.523,2.3792],[99.5181,2.3749],[99.5175,2.3669],[99.5204,2.3626],[99.521,2.3543],[99.5228,2.3487],[99.5331,2.3435],[99.5574,2.3344],[99.5828,2.3281],[99.5847,2.3129],[99.5781,2.3076],[99.5695,2.3059],[99.5637,2.306],[99.5598,2.3028],[99.5552,2.3097],[99.5487,2.3066],[99.5448,2.293],[99.5469,2.269],[99.5424,2.2655],[99.5397,2.2591],[99.5363,2.2555],[99.537,2.2481],[99.53,2.2467],[99.5224,2.2417],[99.5123,2.2437],[99.5059,2.2465],[99.501,2.247],[99.4969,2.2433],[99.4912,2.2423],[99.482,2.2427],[99.4762,2.2393],[99.4741,2.2337],[99.4649,2.2291],[99.4358,2.2174],[99.4229,2.2157],[99.4156,2.2109],[99.4173,2.1994],[99.415,2.1933],[99.4092,2.1828],[99.4043,2.176],[99.3939,2.1661],[99.3983,2.1563],[99.4071,2.1501],[99.4192,2.1364],[99.4357,2.1238],[99.4575,2.1252],[99.4595,2.1263],[99.464,2.1249],[99.4733,2.1192],[99.4827,2.119],[99.5016,2.1211],[99.5098,2.1239],[99.5133,2.1187],[99.5171,2.1017],[99.5226,2.0913],[99.5347,2.0924],[99.5393,2.0905],[99.551,2.0771],[99.5465,2.0658],[99.5465,2.0613],[99.5516,2.0549],[99.5559,2.0422],[99.5618,2.0359],[99.5658,2.0295],[99.572,2.0295],[99.5803,2.0219],[99.5914,2.0147],[99.5973,2.0082],[99.5977,2.0036],[99.6073,1.9972],[99.6141,1.9957],[99.6233,1.9964],[99.6268,1.9994],[99.6264,2.006],[99.6242,2.0136],[99.617,2.0234],[99.6162,2.0384],[99.6171,2.0412],[99.6369,2.042],[99.6403,2.0366],[99.6555,2.0293],[99.6619,2.038],[99.6631,2.0462],[99.6701,2.0548],[99.6705,2.0662],[99.6715,2.069],[99.6911,2.0788],[99.7101,2.0825],[99.7178,2.0861],[99.727,2.1034],[99.7303,2.1155],[99.7352,2.1201],[99.7445,2.1251],[99.7462,2.1319],[99.7509,2.1353],[99.7608,2.1357],[99.7663,2.1378],[99.7699,2.1562],[99.7712,2.1599],[99.7716,2.177],[99.7739,2.1818],[99.785,2.1831],[99.7936,2.1829],[99.8006,2.1811],[99.8053,2.1817],[99.8165,2.1806],[99.8987,2.1813],[99.9062,2.1841],[99.9144,2.1857],[99.9302,2.1905],[99.9636,2.2029],[99.9491,2.2363],[99.9441,2.2498],[99.9372,2.2529],[99.9339,2.2572],[99.9333,2.262],[99.9398,2.274],[99.9444,2.285],[99.9469,2.2968],[99.9546,2.3199],[99.9651,2.3379],[99.9738,2.3514],[99.9803,2.3647],[100.001,2.3959],[100.0059,2.4162],[100.0101,2.4216],[100.0128,2.43],[100.0206,2.4504],[100.0229,2.4615],[100.0401,2.4908],[100.0475,2.4967],[100.0525,2.5049],[100.0585,2.5257],[100.0661,2.5327],[100.0727,2.5408],[100.0745,2.5447],[100.0727,2.5623],[100.0727,2.5836],[100.0693,2.6082],[100.0694,2.6204],[100.0663,2.6388],[100.0636,2.6589],[100.0581,2.6784],[100.0555,2.6957],[100.0538,2.711],[100.0501,2.7178],[100.0492,2.7328]]}},{"type":"Feature","properties":{"mhid":"1332:48","alt_name":"KABUPATEN NIAS UTARA","latitude":1.33037,"longitude":97.31964,"sample_value":818},"geometry":{"type":"LineString","coordinates":[[97.0965,1.2153],[97.0991,1.2081],[97.0991,1.2031],[97.0935,1.1993],[97.0987,1.1913],[97.1043,1.1965],[97.1023,1.2059],[97.0983,1.2151],[97.0965,1.2153]]}},{"type":"Feature","properties":{"mhid":"1332:48","alt_name":"KABUPATEN NIAS UTARA","latitude":1.33037,"longitude":97.31964,"sample_value":818},"geometry":{"type":"LineString","coordinates":[[97.0897,1.2333],[97.0823,1.2311],[97.0827,1.2231],[97.0803,1.2163],[97.0815,1.2095],[97.0859,1.2089],[97.0841,1.2151],[97.0863,1.2217],[97.0927,1.2321],[97.0897,1.2333]]}},{"type":"Feature","properties":{"mhid":"1332:48","alt_name":"KABUPATEN NIAS UTARA","latitude":1.33037,"longitude":97.31964,"sample_value":818},"geometry":{"type":"LineString","coordinates":[[97.1117,1.3589],[97.1013,1.3597],[97.1011,1.3535],[97.1063,1.3525],[97.1117,1.3589]]}},{"type":"Feature","properties":{"mhid":"1332:48","alt_name":"KABUPATEN NIAS UTARA","latitude":1.33037,"longitude":97.31964,"sample_value":818},"geometry":{"type":"LineString","coordinates":[[97.2587,1.4655],[97.2535,1.4643],[97.2511,1.4615],[97.2433,1.4637],[97.2369,1.4623],[97.2325,1.4559],[97.2335,1.4511],[97.2415,1.4555],[97.2427,1.4597],[97.2535,1.4601],[97.2597,1.4631],[97.2587,1.4655]]}},{"type":"Feature","properties":{"mhid":"1332:48","alt_name":"KABUPATEN NIAS UTARA","latitude":1.33037,"longitude":97.31964,"sample_value":818},"geometry":{"type":"LineString","coordinates":[[97.5213,1.4234],[97.5138,1.4307],[97.5104,1.4365],[97.5094,1.4445],[97.5075,1.4464],[97.4968,1.4484],[97.4932,1.4553],[97.4938,1.4595],[97.4884,1.4735],[97.4826,1.4794],[97.4726,1.4795],[97.4678,1.4731],[97.4555,1.4702],[97.4441,1.4722],[97.4395,1.4744],[97.4351,1.4823],[97.4328,1.4907],[97.4325,1.4999],[97.4268,1.5093],[97.424,1.5112],[97.4223,1.5178],[97.4135,1.5225],[97.4106,1.5161],[97.4114,1.505],[97.406,1.4998],[97.3952,1.4994],[97.3912,1.5039],[97.387,1.5046],[97.3866,1.5097],[97.3827,1.5135],[97.376,1.5108],[97.374,1.5155],[97.3785,1.5207],[97.3722,1.5259],[97.37,1.5302],[97.3534,1.5411],[97.3464,1.5406],[97.34,1.5369],[97.3361,1.5323],[97.3347,1.5232],[97.3427,1.5112],[97.3506,1.505],[97.3516,1.4973],[97.3486,1.4933],[97.349,1.4894],[97.3458,1.4819],[97.3397,1.4744],[97.3342,1.4714],[97.3305,1.4738],[97.319,1.461],[97.3081,1.4532],[97.2906,1.4465],[97.2876,1.4345],[97.2839,1.4257],[97.2755,1.4185],[97.2679,1.4161],[97.2607,1.4197],[97.2527,1.4117],[97.2429,1.4089],[97.2371,1.4095],[97.2283,1.4123],[97.2225,1.4061],[97.2127,1.4021],[97.202,1.4013],[97.2007,1.4061],[97.193,1.4098],[97.1941,1.4186],[97.1842,1.4154],[97.1776,1.4095],[97.1792,1.406],[97.1837,1.4072],[97.1838,1.3991],[97.18,1.3964],[97.178,1.4004],[97.1724,1.3955],[97.1701,1.4015],[97.1737,1.4049],[97.1729,1.408],[97.1632,1.4117],[97.1588,1.4188],[97.1493,1.4221],[97.1456,1.4257],[97.1337,1.4313],[97.1283,1.4249],[97.1241,1.4273],[97.1221,1.4229],[97.1135,1.4183],[97.1035,1.4215],[97.0907,1.4209],[97.0851,1.4181],[97.0823,1.4217],[97.0731,1.4177],[97.0681,1.4135],[97.0591,1.4125],[97.0621,1.4047],[97.0671,1.4009],[97.0693,1.3947],[97.0731,1.3903],[97.0775,1.3909],[97.0807,1.4043],[97.0833,1.4077],[97.0907,1.4083],[97.0975,1.4073],[97.1119,1.3989],[97.1265,1.3851],[97.1343,1.3803],[97.1401,1.3738],[97.1493,1.3678],[97.1553,1.3614],[97.1548,1.3591],[97.1603,1.3541],[97.167,1.3459],[97.1693,1.3379],[97.1758,1.3316],[97.1779,1.3278],[97.1836,1.3229],[97.1858,1.3162],[97.1908,1.311],[97.1921,1.3032],[97.1961,1.2925],[97.199,1.2926],[97.2058,1.287],[97.2087,1.2825],[97.2097,1.2759],[97.2121,1.2725],[97.2209,1.2729],[97.2305,1.2669],[97.2351,1.2583],[97.2387,1.2605],[97.2449,1.2612],[97.2503,1.2576],[97.2472,1.2501],[97.2552,1.2487],[97.2622,1.2424],[97.2639,1.2345],[97.2612,1.2292],[97.2562,1.2281],[97.2587,1.2231],[97.258,1.2162],[97.2611,1.2136],[97.2655,1.214],[97.267,1.2171],[97.2731,1.2161],[97.2854,1.2044],[97.2871,1.2009],[97.2853,1.194],[97.2921,1.1931],[97.3005,1.1808],[97.3008,1.1763],[97.298,1.1728],[97.3032,1.1694],[97.3066,1.1702],[97.3121,1.1679],[97.323,1.155],[97.3356,1.1352],[97.3444,1.1169],[97.3645,1.0875],[97.3695,1.0788],[97.3985,1.0928],[97.4118,1.0916],[97.4222,1.0931],[97.4323,1.0915],[97.4398,1.0959],[97.4497,1.0965],[97.4452,1.1083],[97.4451,1.1182],[97.4519,1.1181],[97.4554,1.1108],[97.4716,1.0921],[97.4775,1.0874],[97.4827,1.0949],[97.4889,1.0928],[97.4866,1.1029],[97.4819,1.1073],[97.4792,1.1171],[97.4697,1.124],[97.4708,1.131],[97.4702,1.1389],[97.4811,1.1448],[97.489,1.1533],[97.4909,1.1602],[97.4892,1.1665],[97.4892,1.1765],[97.4875,1.1786],[97.489,1.1868],[97.4893,1.2024],[97.4835,1.2142],[97.4921,1.2267],[97.5013,1.2378],[97.4937,1.2522],[97.4937,1.2606],[97.5011,1.2687],[97.5102,1.2745],[97.5065,1.2813],[97.4982,1.292],[97.4948,1.3049],[97.4878,1.313],[97.4839,1.3266],[97.479,1.3371],[97.4707,1.3467],[97.4757,1.361],[97.4781,1.3715],[97.489,1.3781],[97.4864,1.3867],[97.495,1.3959],[97.4988,1.4033],[97.5041,1.41],[97.5213,1.4234]]}},{"type":"Feature","properties":{"mhid":"1332:49","alt_name":"KABUPATEN NIAS BARAT","latitude":1.05966,"longitude":97.58606,"sample_value":855},"geometry":{"type":"LineString","coordinates":[[97.3462,0.8431],[97.3414,0.8427],[97.3358,0.8386],[97.3322,0.8313],[97.3337,0.826],[97.3383,0.8214],[97.3452,0.8174],[97.3493,0.8128],[97.3592,0.8111],[97.3616,0.815],[97.3572,0.8308],[97.3507,0.8331],[97.3512,0.8392],[97.3462,0.8431]]}},{"type":"Feature","properties":{"mhid":"1332:49","alt_name":"KABUPATEN NIAS BARAT","latitude":1.05966,"longitude":97.58606,"sample_value":855},"geometry":{"type":"LineString","coordinates":[[97.3799,0.8435],[97.3757,0.8393],[97.3793,0.8353],[97.3837,0.8357],[97.3839,0.8401],[97.3799,0.8435]]}},{"type":"Feature","properties":{"mhid":"1332:49","alt_name":"KABUPATEN NIAS BARAT","latitude":1.05966,"longitude":97.58606,"sample_value":855},"geometry":{"type":"LineString","coordinates":[[97.3225,0.8591],[97.3171,0.8599],[97.3103,0.8581],[97.3085,0.8545],[97.3121,0.8483],[97.3216,0.845],[97.3284,0.845],[97.333,0.8483],[97.3329,0.851],[97.3225,0.8591]]}},{"type":"Feature","properties":{"mhid":"1332:49","alt_name":"KABUPATEN NIAS BARAT","latitude":1.05966,"longitude":97.58606,"sample_value":855},"geometry":{"type":"LineString","coordinates":[[97.3769,0.8585],[97.3727,0.8627],[97.3653,0.8575],[97.3637,0.8521],[97.3695,0.8465],[97.3741,0.8481],[97.3813,0.8471],[97.3841,0.8517],[97.3849,0.8579],[97.3769,0.8585]]}},{"type":"Feature","properties":{"mhid":"1332:49","alt_name":"KABUPATEN NIAS BARAT","latitude":1.05966,"longitude":97.58606,"sample_value":855},"geometry":{"type":"LineString","coordinates":[[97.2869,0.8703],[97.2829,0.8673],[97.2865,0.8637],[97.2921,0.8671],[97.2869,0.8703]]}},{"type":"Feature","properties":{"mhid":"1332:49","alt_name":"KABUPATEN NIAS BARAT","latitude":1.05966,"longitude":97.58606,"sample_value":855},"geometry":{"type":"LineString","coordinates":[[97.3493,0.8742],[97.342,0.8735],[97.3353,0.8703],[97.3296,0.8633],[97.3319,0.8573],[97.3357,0.8572],[97.3488,0.8672],[97.3554,0.8688],[97.3493,0.8742]]}},{"type":"Feature","properties":{"mhid":"1332:49","alt_name":"KABUPATEN NIAS BARAT","latitude":1.05966,"longitude":97.58606,"sample_value":855},"geometry":{"type":"LineString","coordinates":[[97.2737,0.9153],[97.2679,0.9149],[97.2653,0.9125],[97.2667,0.9067],[97.2701,0.9047],[97.2793,0.8961],[97.2849,0.8975],[97.2845,0.9007],[97.2787,0.9077],[97.2783,0.9115],[97.2737,0.9153]]}},{"type":"Feature","properties":{"mhid":"1332:49","alt_name":"KABUPATEN NIAS BARAT","latitude":1.05966,"longitude":97.58606,"sample_value":855},"geometry":{"type":"LineString","coordinates":[[97.4303,0.9367],[97.4273,0.9367],[97.4247,0.9323],[97.4299,0.9303],[97.4303,0.9367]]}},{"type":"Feature","properties":{"mhid":"1332:49","alt_name":"KABUPATEN NIAS BARAT","latitude":1.05966,"longitude":97.58606,"sample_value":855},"geometry":{"type":"LineString","coordinates":[[97.5862,1.1204],[97.5791,1.1206],[97.5744,1.1239],[97.572,1.1306],[97.5645,1.1348],[97.5446,1.1347],[97.531,1.1464],[97.5159,1.1532],[97.508,1.1541],[97.5028,1.1476],[97.5,1.1416],[97.489,1.1533],[97.4811,1.1448],[97.4702,1.1389],[97.4708,1.131],[97.4697,1.124],[97.4792,1.1171],[97.4819,1.1073],[97.4866,1.1029],[97.4889,1.0928],[97.4827,1.0949],[97.4775,1.0874],[97.4716,1.0921],[97.4554,1.1108],[97.4519,1.1181],[97.4451,1.1182],[97.4452,1.1083],[97.4497,1.0965],[97.4398,1.0959],[97.4323,1.0915],[97.4222,1.0931],[97.4118,1.0916],[97.3985,1.0928],[97.3695,1.0788],[97.3725,1.0712],[97.3766,1.0649],[97.3782,1.0596],[97.3882,1.038],[97.3924,1.0249],[97.3976,1.015],[97.3991,1.0041],[97.4063,0.982],[97.4094,0.9686],[97.4105,0.9543],[97.4097,0.9487],[97.4051,0.9467],[97.4061,0.9399],[97.4105,0.9399],[97.4103,0.9451],[97.4171,0.9499],[97.4257,0.9483],[97.4312,0.9427],[97.4423,0.9438],[97.4542,0.9433],[97.47,0.9406],[97.4839,0.9391],[97.4915,0.9315],[97.4982,0.9305],[97.51,0.9218],[97.5114,0.9172],[97.5068,0.9128],[97.5075,0.9089],[97.5132,0.9057],[97.5158,0.9073],[97.5211,0.9053],[97.5341,0.8948],[97.541,0.893],[97.5448,0.8872],[97.5451,0.8909],[97.5517,0.8935],[97.5479,0.9002],[97.5544,0.9051],[97.5625,0.9134],[97.5615,0.9174],[97.5671,0.9247],[97.5608,0.9329],[97.5511,0.9308],[97.5455,0.9334],[97.5407,0.9383],[97.5405,0.9433],[97.5476,0.9469],[97.5438,0.9561],[97.5489,0.9641],[97.5405,0.9729],[97.5372,0.9791],[97.5355,0.9867],[97.5353,0.994],[97.5366,1.0085],[97.5456,1.0028],[97.552,1.0007],[97.5657,1.0026],[97.5807,1.0066],[97.5897,1.0134],[97.5963,1.0206],[97.5901,1.0348],[97.5974,1.0344],[97.6128,1.0302],[97.6196,1.0423],[97.6266,1.0451],[97.6246,1.0516],[97.6309,1.0549],[97.6385,1.0549],[97.6509,1.0613],[97.6464,1.0653],[97.6342,1.0669],[97.6232,1.065],[97.6188,1.0592],[97.6125,1.0547],[97.6079,1.0604],[97.6071,1.0642],[97.6094,1.0709],[97.6105,1.0796],[97.6157,1.0773],[97.6213,1.08],[97.6324,1.0816],[97.631,1.0885],[97.6321,1.0955],[97.6363,1.0942],[97.649,1.094],[97.6473,1.1004],[97.6434,1.1006],[97.6328,1.1049],[97.6302,1.1166],[97.6264,1.1121],[97.6198,1.108],[97.6137,1.1098],[97.6066,1.1092],[97.5932,1.1101],[97.5862,1.1204]]}},{"type":"Feature","properties":{"mhid":"1332:79","alt_name":"KABUPATEN KUANTAN SINGINGI","latitude":-0.47532,"longitude":101.45857,"sample_value":295},"geometry":{"type":"LineString","coordinates":[[101.5248,-0.1174],[101.5175,-0.118],[101.5073,-0.1132],[101.5023,-0.1135],[101.4912,-0.1038],[101.4831,-0.1007],[101.4805,-0.104],[101.483,-0.1106],[101.4725,-0.1265],[101.4686,-0.1297],[101.4621,-0.1263],[101.4522,-0.1272],[101.4432,-0.1183],[101.4379,-0.1111],[101.436,-0.1064],[101.4327,-0.1042],[101.4292,-0.098],[101.4235,-0.0915],[101.4223,-0.0874],[101.4162,-0.083],[101.4151,-0.0776],[101.4111,-0.0739],[101.4073,-0.08],[101.4062,-0.0882],[101.4005,-0.0924],[101.394,-0.0992],[101.393,-0.1092],[101.3913,-0.1152],[101.3912,-0.1237],[101.389,-0.1269],[101.3782,-0.1282],[101.3757,-0.1308],[101.372,-0.1417],[101.3724,-0.1476],[101.3682,-0.1488],[101.3648,-0.1394],[101.3593,-0.1341],[101.3555,-0.1236],[101.3463,-0.1074],[101.3391,-0.1079],[101.3204,-0.0921],[101.3141,-0.0757],[101.3136,-0.0672],[101.3117,-0.0662],[101.3115,-0.056],[101.3034,-0.0517],[101.3078,-0.0432],[101.2981,-0.0364],[101.2963,-0.0297],[101.2912,-0.0248],[101.2899,-0.0182],[101.2836,-0.0137],[101.2799,-0.0091],[101.2804,-0.0058],[101.271,-0.0056],[101.2609,-0.014],[101.2587,-0.0192],[101.2588,-0.0286],[101.2562,-0.0409],[101.2509,-0.045],[101.2427,-0.0463],[101.2389,-0.0597],[101.2329,-0.061],[101.2217,-0.0755],[101.2211,-0.0822],[101.2188,-0.0876],[101.2146,-0.0891],[101.2062,-0.095],[101.2022,-0.1014],[101.2034,-0.1074],[101.2005,-0.1132],[101.1965,-0.1153],[101.1932,-0.1214],[101.1965,-0.1275],[101.1977,-0.1352],[101.2042,-0.1471],[101.2018,-0.1526],[101.2006,-0.1697],[101.2019,-0.1832],[101.2002,-0.1879],[101.1958,-0.1934],[101.1877,-0.2001],[101.1751,-0.2187],[101.1745,-0.2251],[101.1774,-0.2307],[101.1769,-0.2341],[101.1723,-0.2375],[101.1603,-0.2321],[101.1566,-0.241],[101.1584,-0.2488],[101.1664,-0.2564],[101.1659,-0.2615],[101.1595,-0.2701],[101.1527,-0.2742],[101.1504,-0.2797],[101.1451,-0.2839],[101.1423,-0.2882],[101.1398,-0.2987],[101.1394,-0.3061],[101.1429,-0.3191],[101.143,-0.3336],[101.1405,-0.3394],[101.1325,-0.347],[101.1257,-0.3556],[101.1252,-0.3638],[101.118,-0.3878],[101.1146,-0.3892],[101.1009,-0.3831],[101.0858,-0.3806],[101.0763,-0.3805],[101.0678,-0.3781],[101.0611,-0.379],[101.0538,-0.377],[101.0474,-0.377],[101.041,-0.3627],[101.0424,-0.3671],[101.0429,-0.3823],[101.0348,-0.3885],[101.0301,-0.3895],[101.0253,-0.3947],[101.0258,-0.398],[101.0301,-0.4023],[101.0353,-0.4123],[101.0424,-0.4218],[101.0377,-0.4247],[101.0377,-0.4352],[101.0437,-0.4444],[101.0448,-0.4504],[101.0491,-0.4552],[101.0481,-0.4599],[101.0527,-0.4645],[101.057,-0.4746],[101.0602,-0.4787],[101.0667,-0.483],[101.0672,-0.4957],[101.0713,-0.5031],[101.081,-0.5055],[101.0894,-0.5114],[101.098,-0.5089],[101.1085,-0.5017],[101.1138,-0.5037],[101.1191,-0.5107],[101.1219,-0.5121],[101.1297,-0.5243],[101.135,-0.5279],[101.141,-0.53],[101.1446,-0.5333],[101.1508,-0.5312],[101.1679,-0.5396],[101.1834,-0.5517],[101.1854,-0.5573],[101.1933,-0.5725],[101.2055,-0.5877],[101.2076,-0.5938],[101.2228,-0.602],[101.2359,-0.6057],[101.2415,-0.6153],[101.2496,-0.6255],[101.258,-0.6262],[101.2658,-0.6231],[101.281,-0.6219],[101.2882,-0.6247],[101.2959,-0.6313],[101.3026,-0.6321],[101.3074,-0.6293],[101.3238,-0.6428],[101.3256,-0.6428],[101.3332,-0.6495],[101.3507,-0.672],[101.3575,-0.668],[101.3575,-0.6741],[101.3549,-0.6774],[101.3564,-0.6831],[101.3611,-0.6892],[101.3682,-0.6919],[101.3736,-0.6976],[101.4019,-0.7107],[101.411,-0.7176],[101.4126,-0.7201],[101.4141,-0.7369],[101.4185,-0.7388],[101.4246,-0.7369],[101.4265,-0.7435],[101.4316,-0.7474],[101.432,-0.7544],[101.4442,-0.7625],[101.4586,-0.7681],[101.473,-0.7772],[101.4796,-0.7823],[101.486,-0.7946],[101.495,-0.8055],[101.5,-0.8093],[101.5085,-0.8108],[101.5236,-0.8116],[101.537,-0.816],[101.5487,-0.8233],[101.5512,-0.828],[101.5582,-0.8345],[101.5707,-0.8329],[101.5791,-0.8333],[101.5931,-0.8356],[101.5964,-0.8348],[101.6042,-0.8263],[101.6166,-0.8244],[101.6363,-0.8301],[101.6482,-0.8278],[101.6536,-0.828],[101.6694,-0.8353],[101.6787,-0.8577],[101.6839,-0.8663],[101.6886,-0.8702],[101.6994,-0.872],[101.7095,-0.8663],[101.7126,-0.8686],[101.7134,-0.8959],[101.7127,-0.9032],[101.6965,-0.9281],[101.6895,-0.9401],[101.6931,-0.9438],[101.7037,-0.9471],[101.7182,-0.9484],[101.7327,-0.9557],[101.7376,-0.9604],[101.7557,-0.9749],[101.7627,-0.9757],[101.7736,-0.97],[101.7837,-0.9695],[101.7927,-0.9713],[101.7987,-0.9684],[101.815,-0.9757],[101.8183,-0.9788],[101.8334,-0.9815],[101.8418,-0.9831],[101.854,-0.9794],[101.8557,-0.968],[101.8592,-0.9654],[101.8723,-0.9667],[101.8838,-0.9645],[101.8925,-0.96],[101.8951,-0.955],[101.9012,-0.951],[101.9072,-0.9506],[101.9093,-0.9467],[101.9094,-0.9412],[101.9139,-0.9351],[101.9146,-0.9315],[101.9127,-0.9223],[101.9211,-0.9112],[101.9279,-0.9052],[101.9222,-0.8962],[101.9186,-0.8932],[101.9163,-0.8835],[101.9081,-0.8879],[101.8978,-0.8899],[101.8948,-0.8942],[101.8856,-0.903],[101.8816,-0.9095],[101.878,-0.9109],[101.8703,-0.9093],[101.8578,-0.9145],[101.853,-0.9224],[101.8503,-0.9219],[101.8472,-0.915],[101.8438,-0.9116],[101.8477,-0.9017],[101.8472,-0.897],[101.8417,-0.8872],[101.8397,-0.8802],[101.8266,-0.8747],[101.817,-0.8618],[101.8055,-0.8567],[101.7985,-0.8576],[101.7963,-0.8502],[101.7879,-0.844],[101.7833,-0.8431],[101.7785,-0.8336],[101.7842,-0.8233],[101.7856,-0.8143],[101.7821,-0.8005],[101.7768,-0.7975],[101.7775,-0.7928],[101.7807,-0.7899],[101.7852,-0.7801],[101.7868,-0.7665],[101.7891,-0.7562],[101.7873,-0.7547],[101.7884,-0.7405],[101.7952,-0.7348],[101.7926,-0.726],[101.792,-0.7196],[101.793,-0.7086],[101.7996,-0.6971],[101.7994,-0.6913],[101.803,-0.6796],[101.8066,-0.6747],[101.8057,-0.6602],[101.8256,-0.6385],[101.8394,-0.6231],[101.8445,-0.6162],[101.8457,-0.6095],[101.8484,-0.6046],[101.8612,-0.5986],[101.8845,-0.5725],[101.8945,-0.5575],[101.9063,-0.5381],[101.9068,-0.5203],[101.9081,-0.5108],[101.9121,-0.504],[101.9114,-0.487],[101.9099,-0.4737],[101.9049,-0.4614],[101.897,-0.4479],[101.8923,-0.4359],[101.8898,-0.4249],[101.8895,-0.4135],[101.8905,-0.4026],[101.8926,-0.3957],[101.8885,-0.3932],[101.8724,-0.3925],[101.8628,-0.4042],[101.8494,-0.4044],[101.8445,-0.3976],[101.8379,-0.3923],[101.8326,-0.3794],[101.8244,-0.3751],[101.8196,-0.3763],[101.8109,-0.382],[101.8046,-0.3807],[101.7977,-0.3726],[101.7931,-0.3711],[101.7885,-0.3657],[101.7775,-0.365],[101.7651,-0.358],[101.7586,-0.3566],[101.7477,-0.3521],[101.7461,-0.3444],[101.7552,-0.3369],[101.7599,-0.3314],[101.7575,-0.3238],[101.7541,-0.3201],[101.7538,-0.3112],[101.7328,-0.3082],[101.7349,-0.2991],[101.7323,-0.2936],[101.7197,-0.2809],[101.7184,-0.2767],[101.7139,-0.2716],[101.7126,-0.2653],[101.7081,-0.2627],[101.6905,-0.2601],[101.679,-0.2528],[101.6733,-0.2561],[101.6651,-0.2527],[101.6644,-0.2434],[101.6608,-0.2393],[101.6519,-0.2406],[101.6403,-0.2464],[101.6332,-0.2392],[101.623,-0.2309],[101.6197,-0.2311],[101.6166,-0.2362],[101.6106,-0.2346],[101.6044,-0.2257],[101.6025,-0.2195],[101.5963,-0.2142],[101.5934,-0.2051],[101.5924,-0.1982],[101.5856,-0.1926],[101.5837,-0.1884],[101.5771,-0.1851],[101.5712,-0.1841],[101.5676,-0.1782],[101.5596,-0.1696],[101.5566,-0.1603],[101.5573,-0.1553],[101.5533,-0.1533],[101.5482,-0.1456],[101.5446,-0.1302],[101.5357,-0.1268],[101.5325,-0.1279],[101.5318,-0.121],[101.5248,-0.1174]]}},{"type":"Feature","properties":{"mhid":"1332:80","alt_name":"KABUPATEN INDRAGIRI HULU","latitude":-0.55,"longitude":102.31667,"sample_value":428},"geometry":{"type":"LineString","coordinates":[[102.555,-1.09],[102.5567,-1.0826],[102.5594,-1.0604],[102.5627,-1.0205],[102.5675,-0.937],[102.5706,-0.914],[102.5733,-0.8999],[102.578,-0.8817],[102.5833,-0.8691],[102.591,-0.8581],[102.6092,-0.8431],[102.6259,-0.8272],[102.634,-0.8171],[102.6386,-0.8059],[102.6384,-0.7582],[102.6392,-0.717],[102.6422,-0.7004],[102.6455,-0.6895],[102.6566,-0.6792],[102.6671,-0.6721],[102.6677,-0.6567],[102.666,-0.6372],[102.6639,-0.6197],[102.6633,-0.605],[102.6661,-0.5909],[102.6873,-0.5393],[102.6912,-0.4691],[102.6944,-0.4699],[102.6995,-0.4756],[102.7054,-0.4777],[102.7091,-0.4761],[102.7193,-0.4649],[102.7197,-0.4598],[102.7168,-0.4543],[102.7169,-0.3466],[102.7168,-0.2446],[102.7168,-0.0812],[102.7168,0.074],[102.717,0.1054],[102.6743,0.1045],[102.6421,0.1035],[102.6268,0.1036],[102.6024,0.1026],[102.5911,0.1009],[102.5807,0.0983],[102.5656,0.0932],[102.5512,0.0847],[102.5381,0.0749],[102.5296,0.0662],[102.5152,0.0491],[102.5034,0.0299],[102.5001,0.0233],[102.4963,0.0122],[102.4952,-0.0002],[102.4925,-0.014],[102.4877,-0.0458],[102.487,-0.0577],[102.4854,-0.0692],[102.4797,-0.0889],[102.4755,-0.0978],[102.4704,-0.1051],[102.4464,-0.1331],[102.4329,-0.1474],[102.4072,-0.1664],[102.3837,-0.1766],[102.3681,-0.1788],[102.3391,-0.1777],[102.3006,-0.1741],[102.271,-0.1697],[102.2526,-0.1658],[102.2331,-0.1659],[102.2251,-0.1665],[102.2137,-0.1692],[102.201,-0.175],[102.1948,-0.1796],[102.1906,-0.1863],[102.1867,-0.1971],[102.1815,-0.2069],[102.1781,-0.2177],[102.1759,-0.2401],[102.1716,-0.2537],[102.1652,-0.2636],[102.1584,-0.2672],[102.1502,-0.2696],[102.1431,-0.2701],[102.1259,-0.2697],[102.1099,-0.2715],[102.102,-0.2731],[102.0653,-0.298],[102.0474,-0.312],[102.0316,-0.3298],[102.0249,-0.3414],[102.0188,-0.3501],[102.0077,-0.3619],[101.9841,-0.3847],[101.9696,-0.4003],[101.9608,-0.4065],[101.9536,-0.4078],[101.9392,-0.4049],[101.9297,-0.4009],[101.9239,-0.3998],[101.9069,-0.3995],[101.8926,-0.3957],[101.8905,-0.4026],[101.8895,-0.4135],[101.8898,-0.4249],[101.8923,-0.4359],[101.897,-0.4479],[101.9049,-0.4614],[101.9099,-0.4737],[101.9114,-0.487],[101.9121,-0.504],[101.9081,-0.5108],[101.9068,-0.5203],[101.9063,-0.5381],[101.8945,-0.5575],[101.8845,-0.5725],[101.8612,-0.5986],[101.8484,-0.6046],[101.8457,-0.6095],[101.8445,-0.6162],[101.8394,-0.6231],[101.8256,-0.6385],[101.8057,-0.6602],[101.8066,-0.6747],[101.803,-0.6796],[101.7994,-0.6913],[101.7996,-0.6971],[101.793,-0.7086],[101.792,-0.7196],[101.7926,-0.726],[101.7952,-0.7348],[101.7884,-0.7405],[101.7873,-0.7547],[101.7891,-0.7562],[101.7868,-0.7665],[101.7852,-0.7801],[101.7807,-0.7899],[101.7775,-0.7928],[101.7768,-0.7975],[101.7821,-0.8005],[101.7856,-0.8143],[101.7842,-0.8233],[101.7785,-0.8336],[101.7833,-0.8431],[101.7879,-0.844],[101.7963,-0.8502],[101.7985,-0.8576],[101.8055,-0.8567],[101.817,-0.8618],[101.8266,-0.8747],[101.8397,-0.8802],[101.8417,-0.8872],[101.8472,-0.897],[101.8477,-0.9017],[101.8438,-0.9116],[101.8472,-0.915],[101.8503,-0.9219],[101.853,-0.9224],[101.8578,-0.9145],[101.8703,-0.9093],[101.878,-0.9109],[101.8816,-0.9095],[101.8856,-0.903],[101.8948,-0.8942],[101.8978,-0.8899],[101.9081,-0.8879],[101.9163,-0.8835],[101.9186,-0.8932],[101.9222,-0.8962],[101.9279,-0.9052],[101.9361,-0.9087],[101.9418,-0.9023],[101.947,-0.9003],[101.954,-0.9038],[101.9589,-0.9096],[101.9674,-0.8971],[101.9684,-0.8931],[101.9734,-0.8862],[101.9836,-0.8804],[101.9943,-0.882],[102.0078,-0.8786],[102.0305,-0.8906],[102.0394,-0.8932],[102.0479,-0.8971],[102.058,-0.8899],[102.0624,-0.8895],[102.0706,-0.8964],[102.0913,-0.9054],[102.0991,-0.9115],[102.1058,-0.9142],[102.113,-0.9197],[102.1171,-0.921],[102.1224,-0.9194],[102.1335,-0.9132],[102.1371,-0.9024],[102.1393,-0.8994],[102.1459,-0.9025],[102.1552,-0.9038],[102.1627,-0.8989],[102.1664,-0.9013],[102.1668,-0.9057],[102.1704,-0.9081],[102.174,-0.9138],[102.1772,-0.9156],[102.1843,-0.9157],[102.1877,-0.918],[102.1888,-0.9234],[102.1869,-0.9316],[102.1879,-0.9425],[102.1904,-0.9442],[102.2036,-0.9485],[102.2167,-0.9464],[102.2298,-0.9387],[102.2356,-0.9311],[102.243,-0.9335],[102.2481,-0.9312],[102.2498,-0.9255],[102.2543,-0.9215],[102.263,-0.9234],[102.2752,-0.9179],[102.2903,-0.9164],[102.3043,-0.917],[102.3099,-0.9205],[102.3112,-0.9296],[102.3145,-0.9374],[102.3227,-0.9478],[102.3244,-0.9608],[102.3299,-0.9656],[102.3414,-0.9636],[102.3463,-0.9648],[102.3504,-0.9691],[102.3577,-0.9704],[102.3657,-0.9763],[102.3731,-0.9851],[102.3862,-0.9934],[102.3853,-0.9999],[102.3788,-1.0016],[102.3754,-1.0058],[102.3769,-1.0112],[102.3742,-1.0182],[102.3749,-1.0208],[102.3824,-1.0267],[102.4054,-1.0277],[102.4109,-1.0289],[102.4235,-1.0289],[102.4309,-1.0316],[102.4387,-1.0254],[102.4425,-1.0254],[102.4499,-1.0372],[102.4587,-1.0447],[102.4643,-1.0527],[102.4717,-1.0602],[102.4689,-1.0678],[102.4765,-1.0769],[102.4819,-1.0799],[102.4996,-1.0835],[102.5127,-1.08],[102.5172,-1.0796],[102.5247,-1.0825],[102.5278,-1.0854],[102.538,-1.087],[102.5434,-1.0828],[102.5494,-1.0856],[102.5504,-1.0904],[102.555,-1.09]]}},{"type":"Feature","properties":{"mhid":"1332:81","alt_name":"KABUPATEN INDRAGIRI HILIR","latitude":-0.33333,"longitude":103.16667,"sample_value":928},"geometry":{"type":"LineString","coordinates":[[103.3419,-0.642],[103.3392,-0.6418],[103.3338,-0.6461],[103.3319,-0.6509],[103.3248,-0.6596],[103.3162,-0.6664],[103.2786,-0.6738],[103.2696,-0.6761],[103.2628,-0.6792],[103.2541,-0.6811],[103.2407,-0.6812],[103.2355,-0.685],[103.2441,-0.6937],[103.254,-0.6975],[103.2737,-0.697],[103.2874,-0.7019],[103.3021,-0.7001],[103.3166,-0.6953],[103.3237,-0.6922],[103.3481,-0.6927],[103.3601,-0.6915],[103.3721,-0.6886],[103.3809,-0.6886],[103.3971,-0.6929],[103.4098,-0.685],[103.4145,-0.6796],[103.4209,-0.6664],[103.4186,-0.658],[103.4051,-0.6495],[103.3969,-0.6468],[103.3763,-0.6514],[103.3719,-0.6517],[103.3589,-0.6474],[103.3546,-0.6451],[103.3419,-0.642]]}},{"type":"Feature","properties":{"mhid":"1332:81","alt_name":"KABUPATEN INDRAGIRI HILIR","latitude":-0.33333,"longitude":103.16667,"sample_value":928},"geometry":{"type":"LineString","coordinates":[[103.4293,-0.6063],[103.4268,-0.6038],[103.4196,-0.6032],[103.4038,-0.6057],[103.3921,-0.6112],[103.3761,-0.6109],[103.3626,-0.62],[103.3547,-0.6282],[103.3455,-0.6267],[103.3401,-0.6299],[103.3356,-0.6365],[103.3583,-0.6415],[103.3682,-0.646],[103.3754,-0.6465],[103.3868,-0.6422],[103.4042,-0.6373],[103.4134,-0.6365],[103.4215,-0.6308],[103.428,-0.6221],[103.4302,-0.613],[103.4293,-0.6063]]}},{"type":"Feature","properties":{"mhid":"1332:81","alt_name":"KABUPATEN INDRAGIRI HILIR","latitude":-0.33333,"longitude":103.16667,"sample_value":928},"geometry":{"type":"LineString","coordinates":[[103.3677,-0.3744],[103.3524,-0.3686],[103.3308,-0.3567],[103.3192,-0.3616],[103.315,-0.3673],[103.3124,-0.3754],[103.3083,-0.3796],[103.3103,-0.3867],[103.3214,-0.3958],[103.3333,-0.3994],[103.336,-0.4033],[103.3355,-0.412],[103.3289,-0.4333],[103.3348,-0.4357],[103.3525,-0.4323],[103.3602,-0.4301],[103.3666,-0.4298],[103.3717,-0.432],[103.3764,-0.4371],[103.3787,-0.4422],[103.3818,-0.4608],[103.3852,-0.4741],[103.3921,-0.4949],[103.3922,-0.5002],[103.3951,-0.5106],[103.3989,-0.5154],[103.4125,-0.5197],[103.42,-0.5211],[103.4296,-0.517],[103.4443,-0.5132],[103.4559,-0.5055],[103.4619,-0.5057],[103.4678,-0.504],[103.4722,-0.5058],[103.4827,-0.5072],[103.4842,-0.5095],[103.5081,-0.5156],[103.5165,-0.5123],[103.5185,-0.5134],[103.5298,-0.5103],[103.5381,-0.5062],[103.5487,-0.4979],[103.5521,-0.4928],[103.5568,-0.4903],[103.5782,-0.4673],[103.6002,-0.4405],[103.6044,-0.4326],[103.6051,-0.4261],[103.6014,-0.4139],[103.5856,-0.3996],[103.5759,-0.3957],[103.5618,-0.3953],[103.5494,-0.3986],[103.5401,-0.3992],[103.5341,-0.397],[103.5274,-0.3916],[103.5239,-0.3871],[103.5179,-0.3725],[103.5113,-0.3688],[103.4747,-0.3805],[103.463,-0.3806],[103.4548,-0.3772],[103.4463,-0.3705],[103.4264,-0.3762],[103.4028,-0.3785],[103.3927,-0.3787],[103.3677,-0.3744]]}},{"type":"Feature","properties":{"mhid":"1332:81","alt_name":"KABUPATEN INDRAGIRI HILIR","latitude":-0.33333,"longitude":103.16667,"sample_value":928},"geometry":{"type":"LineString","coordinates":[[103.3073,-0.252],[103.2935,-0.2486],[103.2805,-0.2441],[103.273,-0.2445],[103.2686,-0.2472],[103.2585,-0.2621],[103.2519,-0.2684],[103.2331,-0.2776],[103.2343,-0.28],[103.2467,-0.2834],[103.2514,-0.2897],[103.2633,-0.2923],[103.2705,-0.296],[103.2853,-0.3114],[103.2928,-0.3175],[103.3081,-0.3222],[103.322,-0.3303],[103.3362,-0.345],[103.3414,-0.3486],[103.3522,-0.3535],[103.3644,-0.3575],[103.376,-0.3591],[103.4078,-0.3575],[103.4264,-0.3582],[103.4372,-0.3553],[103.447,-0.3472],[103.4522,-0.3405],[103.4568,-0.3298],[103.4588,-0.322],[103.4593,-0.3132],[103.4439,-0.3045],[103.438,-0.3019],[103.4274,-0.3034],[103.4214,-0.3031],[103.4084,-0.2948],[103.4038,-0.2932],[103.3942,-0.2929],[103.3809,-0.2967],[103.3683,-0.29],[103.3616,-0.2848],[103.3565,-0.2841],[103.3445,-0.2848],[103.3444,-0.2796],[103.3498,-0.2721],[103.3524,-0.2651],[103.3503,-0.2605],[103.3432,-0.251],[103.3338,-0.2522],[103.3177,-0.2525],[103.3073,-0.252]]}},{"type":"Feature","properties":{"mhid":"1332:81","alt_name":"KABUPATEN INDRAGIRI HILIR","latitude":-0.33333,"longitude":103.16667,"sample_value":928},"geometry":{"type":"LineString","coordinates":[[103.5699,-0.2209],[103.5546,-0.2161],[103.5387,-0.2183],[103.5323,-0.2224],[103.5267,-0.2283],[103.5118,-0.2471],[103.4748,-0.298],[103.4703,-0.3068],[103.4624,-0.334],[103.456,-0.3459],[103.4511,-0.3586],[103.4538,-0.365],[103.4631,-0.3728],[103.4685,-0.3732],[103.476,-0.3714],[103.5062,-0.3606],[103.5125,-0.3602],[103.5209,-0.3631],[103.5294,-0.374],[103.5353,-0.3853],[103.5427,-0.3878],[103.5627,-0.3833],[103.5794,-0.3839],[103.5835,-0.3853],[103.5963,-0.3949],[103.601,-0.3935],[103.6041,-0.3956],[103.614,-0.3919],[103.6267,-0.3886],[103.639,-0.3827],[103.6594,-0.3708],[103.6648,-0.366],[103.6725,-0.3642],[103.69,-0.3581],[103.694,-0.3547],[103.6989,-0.3552],[103.7156,-0.3504],[103.727,-0.349],[103.7394,-0.3461],[103.7516,-0.346],[103.7637,-0.3449],[103.7767,-0.3472],[103.7834,-0.3458],[103.7862,-0.3405],[103.7738,-0.3184],[103.7676,-0.3093],[103.7592,-0.2999],[103.742,-0.2858],[103.7361,-0.2817],[103.726,-0.2729],[103.717,-0.2624],[103.708,-0.2558],[103.6914,-0.2588],[103.6728,-0.2548],[103.6566,-0.2468],[103.6483,-0.2405],[103.644,-0.2352],[103.6421,-0.2284],[103.637,-0.2266],[103.6141,-0.2266],[103.6042,-0.2245],[103.5918,-0.2245],[103.5792,-0.2203],[103.5699,-0.2209]]}},{"type":"Feature","properties":{"mhid":"1332:81","alt_name":"KABUPATEN INDRAGIRI HILIR","latitude":-0.33333,"longitude":103.16667,"sample_value":928},"geometry":{"type":"LineString","coordinates":[[103.4715,-0.2833],[103.4813,-0.2699],[103.4943,-0.2488],[103.5109,-0.2249],[103.52,-0.2125],[103.5222,-0.2083],[103.5177,-0.2028],[103.5125,-0.2003],[103.4994,-0.2043],[103.4793,-0.2063],[103.463,-0.2114],[103.4482,-0.2143],[103.4326,-0.2242],[103.424,-0.2311],[103.4072,-0.2394],[103.3817,-0.2447],[103.3563,-0.2476],[103.3445,-0.2508],[103.3529,-0.2635],[103.352,-0.2704],[103.3458,-0.2796],[103.347,-0.2849],[103.3527,-0.2834],[103.3616,-0.2835],[103.3686,-0.2887],[103.3792,-0.2946],[103.3826,-0.2948],[103.3928,-0.291],[103.4053,-0.2917],[103.4119,-0.2946],[103.4229,-0.3011],[103.4338,-0.2996],[103.4446,-0.301],[103.4588,-0.3102],[103.4606,-0.3097],[103.4642,-0.2974],[103.4715,-0.2833]]}},{"type":"Feature","properties":{"mhid":"1332:81","alt_name":"KABUPATEN INDRAGIRI HILIR","latitude":-0.33333,"longitude":103.16667,"sample_value":928},"geometry":{"type":"LineString","coordinates":[[103.5559,-0.1748],[103.5431,-0.175],[103.532,-0.1765],[103.511,-0.1816],[103.4988,-0.1876],[103.4793,-0.1999],[103.4856,-0.2014],[103.4967,-0.2002],[103.5136,-0.1968],[103.5235,-0.2022],[103.5326,-0.2046],[103.5674,-0.194],[103.5692,-0.1875],[103.5675,-0.1797],[103.5621,-0.1756],[103.5559,-0.1748]]}},{"type":"Feature","properties":{"mhid":"1332:81","alt_name":"KABUPATEN INDRAGIRI HILIR","latitude":-0.33333,"longitude":103.16667,"sample_value":928},"geometry":{"type":"LineString","coordinates":[[103.517,-0.1041],[103.5192,-0.1022],[103.5144,-0.0947],[103.5086,-0.0916],[103.5044,-0.0864],[103.4992,-0.086],[103.4925,-0.0887],[103.4898,-0.0964],[103.4836,-0.1026],[103.475,-0.1055],[103.4802,-0.1099],[103.4925,-0.1177],[103.4978,-0.1194],[103.5039,-0.119],[103.5054,-0.1163],[103.5054,-0.1045],[103.517,-0.1041]]}},{"type":"Feature","properties":{"mhid":"1332:81","alt_name":"KABUPATEN INDRAGIRI HILIR","latitude":-0.33333,"longitude":103.16667,"sample_value":928},"geometry":{"type":"LineString","coordinates":[[103.5818,-0.0774],[103.5781,-0.0732],[103.5653,-0.0779],[103.5482,-0.078],[103.5409,-0.0834],[103.5273,-0.0879],[103.5167,-0.0941],[103.5213,-0.1026],[103.5155,-0.1063],[103.5067,-0.1058],[103.5066,-0.119],[103.519,-0.12],[103.5316,-0.1229],[103.5478,-0.1195],[103.5601,-0.115],[103.5854,-0.102],[103.591,-0.0972],[103.5937,-0.0903],[103.5868,-0.0855],[103.5818,-0.0774]]}},{"type":"Feature","properties":{"mhid":"1332:81","alt_name":"KABUPATEN INDRAGIRI HILIR","latitude":-0.33333,"longitude":103.16667,"sample_value":928},"geometry":{"type":"LineString","coordinates":[[103.477,-0.0498],[103.4678,-0.0437],[103.4678,-0.049],[103.4652,-0.0563],[103.4694,-0.0576],[103.4736,-0.0534],[103.4775,-0.0532],[103.4824,-0.0582],[103.4847,-0.0698],[103.4827,-0.0763],[103.4892,-0.0806],[103.4915,-0.0848],[103.4979,-0.0826],[103.5058,-0.0839],[103.5165,-0.0906],[103.5286,-0.0816],[103.5238,-0.0776],[103.5193,-0.0784],[103.5115,-0.0829],[103.5065,-0.083],[103.5002,-0.0775],[103.5001,-0.0702],[103.487,-0.0619],[103.4809,-0.0533],[103.477,-0.0498]]}},{"type":"Feature","properties":{"mhid":"1332:81","alt_name":"KABUPATEN INDRAGIRI HILIR","latitude":-0.33333,"longitude":103.16667,"sample_value":928},"geometry":{"type":"LineString","coordinates":[[103.6699,-0.0496],[103.6787,-0.0443],[103.6825,-0.0389],[103.6738,-0.0314],[103.664,-0.0212],[103.6384,-0.0145],[103.637,-0.0174],[103.6422,-0.0241],[103.6437,-0.032],[103.6491,-0.0441],[103.654,-0.046],[103.6567,-0.0501],[103.667,-0.0525],[103.6699,-0.0496]]}},{"type":"Feature","properties":{"mhid":"1332:81","alt_name":"KABUPATEN INDRAGIRI HILIR","latitude":-0.33333,"longitude":103.16667,"sample_value":928},"geometry":{"type":"LineString","coordinates":[[103.6419,-0.0304],[103.6401,-0.0219],[103.6348,-0.0173],[103.63,-0.0167],[103.6147,-0.008],[103.6091,-0.0128],[103.601,-0.0177],[103.603,-0.0229],[103.6078,-0.0241],[103.6163,-0.0313],[103.6189,-0.0385],[103.6283,-0.0463],[103.6387,-0.0505],[103.6481,-0.0488],[103.6419,-0.0304]]}},{"type":"Feature","properties":{"mhid":"1332:81","alt_name":"KABUPATEN INDRAGIRI HILIR","latitude":-0.33333,"longitude":103.16667,"sample_value":928},"geometry":{"type":"LineString","coordinates":[[103.5879,0.408],[103.5913,0.4125],[103.5911,0.4165],[103.5803,0.4323],[103.5651,0.4438],[103.556,0.448],[103.5455,0.4503],[103.5391,0.4476],[103.5408,0.4429],[103.5463,0.4364],[103.559,0.4252],[103.5675,0.4188],[103.5856,0.4078],[103.5879,0.408]]}},{"type":"Feature","properties":{"mhid":"1332:81","alt_name":"KABUPATEN INDRAGIRI HILIR","latitude":-0.33333,"longitude":103.16667,"sample_value":928},"geometry":{"type":"LineString","coordinates":[[103.4424,-0.7396],[103.4373,-0.7375],[103.4355,-0.734],[103.4281,-0.7333],[103.4195,-0.7301],[103.4347,-0.7201],[103.4369,-0.7137],[103.4324,-0.7096],[103.423,-0.7056],[103.4025,-0.7054],[103.3936,-0.7032],[103.3758,-0.6951],[103.3673,-0.6953],[103.3596,-0.6973],[103.3289,-0.6976],[103.3201,-0.6989],[103.3139,-0.702],[103.2951,-0.7055],[103.2878,-0.7056],[103.2734,-0.7007],[103.2688,-0.6999],[103.2587,-0.7017],[103.2535,-0.7011],[103.2444,-0.6974],[103.2374,-0.6922],[103.2298,-0.6889],[103.2266,-0.6852],[103.2356,-0.6806],[103.2418,-0.6791],[103.2593,-0.6778],[103.2725,-0.6725],[103.2864,-0.6702],[103.2996,-0.6657],[103.3134,-0.6637],[103.3219,-0.6565],[103.3288,-0.6455],[103.3349,-0.6392],[103.3375,-0.631],[103.3444,-0.6261],[103.3537,-0.6272],[103.3694,-0.6125],[103.374,-0.6097],[103.3899,-0.6095],[103.406,-0.6031],[103.4159,-0.6012],[103.4211,-0.5977],[103.4266,-0.5912],[103.4316,-0.5812],[103.4345,-0.5686],[103.437,-0.5528],[103.4361,-0.5433],[103.4342,-0.5385],[103.4289,-0.5312],[103.4208,-0.5288],[103.4125,-0.528],[103.4044,-0.5252],[103.3948,-0.5199],[103.3904,-0.5159],[103.3871,-0.5074],[103.3871,-0.5019],[103.3774,-0.4803],[103.3748,-0.4676],[103.3726,-0.4391],[103.3704,-0.4352],[103.3642,-0.4344],[103.3516,-0.4393],[103.341,-0.4414],[103.3337,-0.4414],[103.3241,-0.4386],[103.3342,-0.4098],[103.334,-0.4047],[103.3313,-0.4013],[103.3216,-0.3989],[103.3091,-0.389],[103.3057,-0.382],[103.3067,-0.3786],[103.3127,-0.3695],[103.3158,-0.3612],[103.3242,-0.3564],[103.3263,-0.3527],[103.3189,-0.3449],[103.3012,-0.336],[103.2826,-0.3258],[103.2757,-0.3202],[103.2647,-0.3073],[103.2618,-0.3054],[103.2502,-0.3044],[103.246,-0.305],[103.2448,-0.288],[103.2434,-0.2864],[103.2318,-0.284],[103.2279,-0.2799],[103.2268,-0.2714],[103.2466,-0.2639],[103.2531,-0.2567],[103.262,-0.2439],[103.2695,-0.2384],[103.2774,-0.2362],[103.2879,-0.2381],[103.3094,-0.2437],[103.319,-0.2437],[103.3381,-0.241],[103.3562,-0.2364],[103.385,-0.2313],[103.3968,-0.2275],[103.4047,-0.2227],[103.4335,-0.1982],[103.4555,-0.1842],[103.462,-0.1756],[103.4712,-0.172],[103.4835,-0.1642],[103.4948,-0.1579],[103.5019,-0.1458],[103.4975,-0.134],[103.4939,-0.1316],[103.483,-0.1273],[103.4711,-0.12],[103.4731,-0.1111],[103.4709,-0.1074],[103.4721,-0.1038],[103.4799,-0.1017],[103.4854,-0.0976],[103.4882,-0.0935],[103.4889,-0.0867],[103.4875,-0.0825],[103.481,-0.0787],[103.4802,-0.073],[103.4827,-0.0698],[103.4813,-0.0617],[103.4779,-0.0557],[103.4706,-0.0594],[103.4654,-0.0598],[103.4631,-0.0556],[103.4656,-0.0486],[103.4617,-0.0457],[103.4687,-0.041],[103.4812,-0.0494],[103.4878,-0.0575],[103.5015,-0.067],[103.5042,-0.0701],[103.5042,-0.0784],[103.5098,-0.079],[103.518,-0.0744],[103.5231,-0.0737],[103.529,-0.0753],[103.5359,-0.0802],[103.5428,-0.0744],[103.5481,-0.0726],[103.5637,-0.0707],[103.5754,-0.0624],[103.5833,-0.061],[103.5864,-0.0563],[103.5931,-0.0502],[103.5967,-0.0428],[103.5956,-0.0357],[103.5926,-0.0323],[103.5857,-0.0317],[103.578,-0.0365],[103.5704,-0.0356],[103.5776,-0.0288],[103.5887,-0.0213],[103.5992,-0.0172],[103.6157,-0.006],[103.6241,-0.0107],[103.6338,-0.0145],[103.6398,-0.0129],[103.6647,-0.0187],[103.6702,-0.0173],[103.6793,-0.0219],[103.6905,-0.0231],[103.6924,-0.0215],[103.7048,-0.0222],[103.7141,-0.0198],[103.7402,-0.0152],[103.748,-0.0115],[103.7542,-0.0123],[103.7619,-0.0098],[103.7799,-0.0092],[103.7999,-0.0118],[103.8101,-0.011],[103.8141,-0.0058],[103.8146,-0.0002],[103.8043,0.025],[103.7957,0.0401],[103.7882,0.0557],[103.7823,0.0724],[103.7798,0.0853],[103.7755,0.1014],[103.7754,0.1106],[103.7734,0.122],[103.7713,0.1285],[103.7692,0.1507],[103.7679,0.152],[103.7684,0.1611],[103.7673,0.1651],[103.7665,0.1854],[103.757,0.219],[103.7427,0.2508],[103.7337,0.2667],[103.7151,0.2967],[103.7065,0.3058],[103.6927,0.3145],[103.6786,0.3261],[103.6733,0.3271],[103.6509,0.3388],[103.6374,0.343],[103.6262,0.3449],[103.6205,0.3447],[103.6139,0.3466],[103.6029,0.3584],[103.5996,0.3685],[103.592,0.3852],[103.5879,0.392],[103.5778,0.4013],[103.5666,0.4083],[103.5552,0.4178],[103.5345,0.4397],[103.5108,0.4492],[103.4967,0.4566],[103.4956,0.4607],[103.4889,0.4619],[103.4722,0.479],[103.4586,0.4911],[103.4529,0.4932],[103.4394,0.5029],[103.4382,0.5069],[103.4318,0.5086],[103.4274,0.5143],[103.4151,0.5232],[103.4071,0.527],[103.3925,0.5318],[103.3748,0.5354],[103.3573,0.5374],[103.3561,0.5309],[103.3466,0.5109],[103.3418,0.4955],[103.3369,0.4853],[103.3295,0.4817],[103.3113,0.4755],[103.2955,0.4686],[103.2636,0.4522],[103.256,0.4464],[103.2416,0.434],[103.2324,0.4282],[103.2081,0.4084],[103.1972,0.3955],[103.1742,0.3723],[103.1642,0.3603],[103.1563,0.3531],[103.145,0.3405],[103.116,0.3251],[103.1065,0.3222],[103.0945,0.3202],[103.085,0.317],[103.0715,0.3139],[103.0474,0.3054],[103.0276,0.3013],[103.0153,0.2971],[103.0039,0.2909],[102.9934,0.2825],[102.9749,0.269],[102.9707,0.2648],[102.96,0.2569],[102.9409,0.2393],[102.9322,0.2321],[102.9175,0.2186],[102.9029,0.2021],[102.8841,0.1767],[102.8704,0.1621],[102.859,0.1531],[102.844,0.1454],[102.8351,0.1379],[102.8141,0.1264],[102.795,0.1198],[102.7819,0.1171],[102.7483,0.1143],[102.742,0.113],[102.7307,0.1083],[102.717,0.1054],[102.7168,0.074],[102.7168,-0.0812],[102.7168,-0.2446],[102.7169,-0.3466],[102.7168,-0.4543],[102.7197,-0.4598],[102.7193,-0.4649],[102.7091,-0.4761],[102.7054,-0.4777],[102.6995,-0.4756],[102.6944,-0.4699],[102.6912,-0.4691],[102.6873,-0.5393],[102.6661,-0.5909],[102.6633,-0.605],[102.6639,-0.6197],[102.666,-0.6372],[102.6677,-0.6567],[102.6671,-0.6721],[102.6566,-0.6792],[102.6455,-0.6895],[102.6422,-0.7004],[102.6392,-0.717],[102.6384,-0.7582],[102.6386,-0.8059],[102.634,-0.8171],[102.6259,-0.8272],[102.6092,-0.8431],[102.591,-0.8581],[102.5833,-0.8691],[102.578,-0.8817],[102.5733,-0.8999],[102.5706,-0.914],[102.5675,-0.937],[102.5627,-1.0205],[102.5594,-1.0604],[102.5567,-1.0826],[102.555,-1.09],[102.5586,-1.0973],[102.5669,-1.0954],[102.5714,-1.0966],[102.5828,-1.0929],[102.5938,-1.0925],[102.6028,-1.0947],[102.6168,-1.0946],[102.6232,-1.0979],[102.6264,-1.1017],[102.6303,-1.11],[102.6378,-1.1159],[102.6417,-1.121],[102.6468,-1.1223],[102.6496,-1.1185],[102.6541,-1.1158],[102.6633,-1.114],[102.6716,-1.11],[102.6724,-1.1025],[102.6747,-1.0964],[102.6797,-1.0945],[102.6853,-1.0953],[102.685,-1.0859],[102.691,-1.0872],[102.6949,-1.0849],[102.7054,-1.0819],[102.7097,-1.0825],[102.717,-1.0743],[102.729,-1.0786],[102.7332,-1.0757],[102.7349,-1.0697],[102.7329,-1.0597],[102.7332,-1.0541],[102.7402,-1.048],[102.7472,-1.0475],[102.751,-1.0442],[102.7566,-1.0456],[102.7599,-1.0389],[102.7559,-1.0328],[102.7605,-1.0275],[102.7706,-1.034],[102.7737,-1.0312],[102.7804,-1.0333],[102.7832,-1.0304],[102.781,-1.0246],[102.7811,-1.0198],[102.7737,-1.0138],[102.7754,-1.0089],[102.7834,-0.9985],[102.79,-0.9941],[102.8115,-0.9719],[102.8247,-0.9599],[102.8616,-0.9316],[102.883,-0.9126],[102.9007,-0.894],[102.9185,-0.8775],[102.9281,-0.8675],[102.9341,-0.8588],[102.9488,-0.84],[102.9616,-0.8209],[102.9723,-0.8082],[102.9965,-0.7727],[103.0036,-0.7629],[103.0122,-0.7553],[103.0397,-0.7555],[103.0487,-0.7547],[103.0729,-0.757],[103.0826,-0.7566],[103.0926,-0.7585],[103.0978,-0.7576],[103.1065,-0.7526],[103.1215,-0.7469],[103.1419,-0.7498],[103.1469,-0.7519],[103.2306,-0.7697],[103.247,-0.7726],[103.2528,-0.7729],[103.2648,-0.7764],[103.2945,-0.7826],[103.3056,-0.7845],[103.3212,-0.7882],[103.3452,-0.7929],[103.348,-0.7955],[103.3505,-0.8034],[103.3572,-0.8067],[103.3615,-0.8052],[103.3662,-0.7986],[103.3733,-0.7976],[103.4105,-0.7828],[103.4249,-0.776],[103.4397,-0.7712],[103.4423,-0.7672],[103.4455,-0.7509],[103.4421,-0.7439],[103.4424,-0.7396]]}},{"type":"Feature","properties":{"mhid":"1332:82","alt_name":"KABUPATEN PELALAWAN","latitude":0.20822,"longitude":102.18607,"sample_value":11},"geometry":{"type":"LineString","coordinates":[[102.8564,0.2586],[102.8736,0.2659],[102.8821,0.2705],[102.8882,0.2762],[102.9009,0.2854],[102.9066,0.2908],[102.917,0.2966],[102.9453,0.3069],[102.9457,0.315],[102.943,0.3226],[102.9346,0.3246],[102.9292,0.3211],[102.9189,0.3165],[102.9089,0.3108],[102.8951,0.3046],[102.8529,0.2881],[102.8399,0.2847],[102.8291,0.2778],[102.8265,0.272],[102.8265,0.264],[102.8322,0.259],[102.8445,0.2567],[102.8564,0.2586]]}},{"type":"Feature","properties":{"mhid":"1332:82","alt_name":"KABUPATEN PELALAWAN","latitude":0.20822,"longitude":102.18607,"sample_value":11},"geometry":{"type":"LineString","coordinates":[[102.9649,0.3203],[102.9703,0.3246],[102.9822,0.3292],[102.9941,0.3368],[102.9964,0.3418],[102.9929,0.346],[102.9895,0.3533],[102.9864,0.356],[102.9787,0.356],[102.9741,0.3499],[102.9684,0.3453],[102.9603,0.3418],[102.9534,0.3372],[102.945,0.3272],[102.9484,0.3234],[102.9492,0.3169],[102.9523,0.3161],[102.9649,0.3203]]}},{"type":"Feature","properties":{"mhid":"1332:82","alt_name":"KABUPATEN PELALAWAN","latitude":0.20822,"longitude":102.18607,"sample_value":11},"geometry":{"type":"LineString","coordinates":[[102.9444,0.3286],[102.951,0.3369],[102.9606,0.343],[102.9656,0.3448],[102.9716,0.3491],[102.9777,0.3569],[102.9731,0.3609],[102.9636,0.3603],[102.9531,0.3553],[102.9425,0.3476],[102.9382,0.3425],[102.9364,0.3324],[102.9375,0.3286],[102.9419,0.3267],[102.9444,0.3286]]}},{"type":"Feature","properties":{"mhid":"1332:82","alt_name":"KABUPATEN PELALAWAN","latitude":0.20822,"longitude":102.18607,"sample_value":11},"geometry":{"type":"LineString","coordinates":[[103.0734,0.5436],[103.0691,0.5512],[103.048,0.5753],[103.043,0.5789],[103.0559,0.5578],[103.0668,0.5449],[103.0711,0.5386],[103.0734,0.5436]]}},{"type":"Feature","properties":{"mhid":"1332:82","alt_name":"KABUPATEN PELALAWAN","latitude":0.20822,"longitude":102.18607,"sample_value":11},"geometry":{"type":"LineString","coordinates":[[103.0709,0.5654],[103.0761,0.5757],[103.079,0.5777],[103.0842,0.5901],[103.0794,0.6056],[103.0704,0.6188],[103.0597,0.6391],[103.0554,0.6548],[103.0514,0.6598],[103.0428,0.6615],[103.0342,0.6608],[103.0328,0.6545],[103.0274,0.6424],[103.0326,0.6306],[103.0394,0.6236],[103.0447,0.6159],[103.0507,0.6044],[103.0611,0.5798],[103.0647,0.5674],[103.0709,0.5654]]}},{"type":"Feature","properties":{"mhid":"1332:82","alt_name":"KABUPATEN PELALAWAN","latitude":0.20822,"longitude":102.18607,"sample_value":11},"geometry":{"type":"LineString","coordinates":[[103.1088,0.6384],[103.1147,0.6496],[103.1148,0.6538],[103.1097,0.6684],[103.1007,0.6635],[103.0961,0.6591],[103.0933,0.6505],[103.1043,0.6308],[103.1088,0.6384]]}},{"type":"Feature","properties":{"mhid":"1332:82","alt_name":"KABUPATEN PELALAWAN","latitude":0.20822,"longitude":102.18607,"sample_value":11},"geometry":{"type":"LineString","coordinates":[[102.9754,0.6694],[102.9709,0.6744],[102.9664,0.6727],[102.9718,0.6684],[102.9754,0.6694]]}},{"type":"Feature","properties":{"mhid":"1332:82","alt_name":"KABUPATEN PELALAWAN","latitude":0.20822,"longitude":102.18607,"sample_value":11},"geometry":{"type":"LineString","coordinates":[[103.2254,0.5229],[103.232,0.5247],[103.2504,0.5252],[103.2849,0.5284],[103.2963,0.544],[103.3009,0.5546],[103.3001,0.5801],[103.3021,0.6015],[103.2984,0.6154],[103.2918,0.6324],[103.2786,0.6574],[103.2728,0.6652],[103.2507,0.6853],[103.2368,0.6956],[103.2232,0.701],[103.2074,0.7023],[103.1912,0.7004],[103.1657,0.6886],[103.1556,0.679],[103.1495,0.6667],[103.1487,0.6596],[103.1489,0.6335],[103.1469,0.6307],[103.1445,0.6091],[103.1458,0.6042],[103.1386,0.5791],[103.1384,0.5637],[103.1396,0.5573],[103.1383,0.5535],[103.1437,0.5339],[103.1508,0.52],[103.1612,0.5044],[103.1655,0.4996],[103.1715,0.4983],[103.1834,0.5061],[103.1875,0.5112],[103.2004,0.5169],[103.2041,0.5195],[103.2174,0.5206],[103.2254,0.5229]]}},{"type":"Feature","properties":{"mhid":"1332:82","alt_name":"KABUPATEN PELALAWAN","latitude":0.20822,"longitude":102.18607,"sample_value":11},"geometry":{"type":"LineString","coordinates":[[103.3418,0.4955],[103.3466,0.5109],[103.356,0.531],[103.3573,0.5374],[103.3471,0.5409],[103.3392,0.5427],[103.3315,0.5473],[103.3256,0.5344],[103.3195,0.5251],[103.3091,0.5154],[103.3028,0.5118],[103.2901,0.5078],[103.281,0.5073],[103.2647,0.5092],[103.2549,0.5046],[103.2484,0.4993],[103.2337,0.4914],[103.2222,0.4871],[103.2167,0.4863],[103.2119,0.4835],[103.2059,0.477],[103.2019,0.467],[103.1992,0.4522],[103.1948,0.4424],[103.1888,0.4318],[103.1675,0.4072],[103.1438,0.3928],[103.1345,0.3915],[103.1222,0.3915],[103.1154,0.389],[103.1091,0.3885],[103.0968,0.3843],[103.087,0.383],[103.0705,0.3767],[103.0633,0.372],[103.057,0.3699],[103.0413,0.3585],[103.0328,0.3538],[103.0176,0.3415],[103.0138,0.3394],[103.0049,0.3275],[102.9981,0.3225],[102.986,0.3151],[102.9746,0.3104],[102.9547,0.3011],[102.9471,0.2968],[102.9339,0.293],[102.9233,0.2879],[102.9064,0.2782],[102.8967,0.2702],[102.8789,0.2621],[102.8611,0.2507],[102.8505,0.2452],[102.8424,0.2443],[102.834,0.2477],[102.8238,0.2553],[102.8072,0.2616],[102.7942,0.2935],[102.8133,0.3019],[102.8208,0.3038],[102.8421,0.3152],[102.8581,0.3171],[102.8803,0.327],[102.8862,0.3306],[102.9,0.336],[102.9132,0.343],[102.9242,0.3549],[102.9392,0.3694],[102.9548,0.3807],[102.9613,0.3827],[102.9852,0.3939],[102.9921,0.3957],[103.0068,0.4019],[103.0252,0.4146],[103.0337,0.4218],[103.0391,0.424],[103.0548,0.4345],[103.0669,0.4383],[103.0764,0.4446],[103.0846,0.4472],[103.0999,0.4535],[103.1119,0.4573],[103.1214,0.463],[103.1208,0.477],[103.1126,0.4973],[103.1056,0.5087],[103.0967,0.5163],[103.0859,0.5303],[103.0777,0.5366],[103.0732,0.5341],[103.0618,0.5449],[103.0542,0.5563],[103.0447,0.569],[103.0428,0.5766],[103.0376,0.5876],[103.0276,0.6008],[103.0152,0.6113],[102.9895,0.6348],[102.9618,0.6561],[102.9109,0.7166],[102.9043,0.7222],[102.9007,0.721],[102.8933,0.7194],[102.8798,0.7112],[102.8739,0.7049],[102.8707,0.6988],[102.8684,0.6861],[102.8601,0.6728],[102.8562,0.6692],[102.8482,0.6667],[102.8323,0.6655],[102.825,0.6638],[102.8121,0.6634],[102.8042,0.6621],[102.7797,0.6601],[102.7682,0.658],[102.7553,0.657],[102.7314,0.6536],[102.7203,0.6531],[102.6942,0.6499],[102.6668,0.6472],[102.6507,0.6451],[102.6358,0.6438],[102.6207,0.6413],[102.5928,0.6389],[102.5624,0.6353],[102.5507,0.6344],[102.5204,0.6306],[102.5151,0.6308],[102.4881,0.6274],[102.4389,0.6223],[102.4299,0.621],[102.417,0.6206],[102.4087,0.6188],[102.3662,0.6147],[102.3402,0.6114],[102.2979,0.6083],[102.2898,0.6083],[102.2687,0.6067],[102.2184,0.6036],[102.2069,0.6024],[102.1817,0.601],[102.1712,0.5998],[102.1425,0.5985],[102.1279,0.597],[102.1186,0.5968],[102.0909,0.5928],[102.0656,0.5882],[102.0518,0.585],[102.0276,0.5814],[102.0227,0.5802],[101.9775,0.5719],[101.9734,0.5502],[101.921,0.5223],[101.9198,0.5209],[101.916,0.5071],[101.9128,0.5046],[101.9135,0.5],[101.9215,0.4985],[101.9205,0.4774],[101.9115,0.4772],[101.9115,0.468],[101.9148,0.4659],[101.9147,0.4599],[101.9085,0.4599],[101.9084,0.4543],[101.8947,0.4542],[101.8948,0.4494],[101.8781,0.4493],[101.8781,0.4573],[101.8864,0.4575],[101.8854,0.5105],[101.8498,0.5102],[101.8312,0.5071],[101.8343,0.4981],[101.8417,0.4951],[101.8433,0.4828],[101.8499,0.4752],[101.8477,0.4684],[101.8443,0.4496],[101.8366,0.4363],[101.8177,0.4319],[101.8128,0.4245],[101.7985,0.4177],[101.7943,0.4075],[101.7666,0.4209],[101.7505,0.4295],[101.7333,0.4451],[101.7258,0.4485],[101.7179,0.4499],[101.7095,0.4487],[101.6975,0.4458],[101.6968,0.435],[101.6922,0.4194],[101.6716,0.4078],[101.6706,0.4315],[101.6716,0.4465],[101.6765,0.4556],[101.6695,0.4849],[101.6668,0.4948],[101.6647,0.5071],[101.6646,0.5374],[101.6558,0.5414],[101.6418,0.5432],[101.6368,0.5421],[101.6247,0.542],[101.6118,0.5393],[101.6033,0.5326],[101.5954,0.5294],[101.592,0.5305],[101.5889,0.5279],[101.5881,0.5167],[101.5821,0.5069],[101.5824,0.5016],[101.5799,0.4955],[101.5839,0.4891],[101.5886,0.4741],[101.5857,0.4718],[101.5722,0.4723],[101.5691,0.4687],[101.5708,0.4609],[101.5741,0.4541],[101.5794,0.4434],[101.5906,0.4236],[101.604,0.4058],[101.6142,0.3946],[101.626,0.3949],[101.6389,0.3941],[101.6673,0.3839],[101.6773,0.3863],[101.6874,0.3831],[101.6829,0.3768],[101.6785,0.3652],[101.6751,0.3511],[101.6719,0.3431],[101.6588,0.3218],[101.6591,0.3187],[101.6796,0.2948],[101.6827,0.2759],[101.6795,0.2709],[101.5986,0.2681],[101.5805,0.268],[101.5743,0.2539],[101.5697,0.236],[101.5654,0.2252],[101.5652,0.2184],[101.5707,0.213],[101.5741,0.2054],[101.5779,0.2019],[101.5864,0.2022],[101.5907,0.199],[101.5921,0.1938],[101.5904,0.1848],[101.5839,0.1723],[101.5794,0.1584],[101.5789,0.1445],[101.5778,0.1392],[101.5724,0.1229],[101.5709,0.1044],[101.5759,0.0918],[101.5706,0.0583],[101.5686,0.0519],[101.5624,0.046],[101.5543,0.0436],[101.5396,0.0364],[101.534,0.0296],[101.5319,0.0231],[101.5319,0.0145],[101.5298,-0.0014],[101.5271,-0.0103],[101.5205,-0.0236],[101.5147,-0.0376],[101.5143,-0.0466],[101.5181,-0.0677],[101.5202,-0.0892],[101.5213,-0.1078],[101.5228,-0.1172],[101.5248,-0.1174],[101.5318,-0.121],[101.5325,-0.1279],[101.5357,-0.1268],[101.5446,-0.1302],[101.5482,-0.1456],[101.5533,-0.1533],[101.5573,-0.1553],[101.5566,-0.1603],[101.5596,-0.1696],[101.5676,-0.1782],[101.5712,-0.1841],[101.5771,-0.1851],[101.5837,-0.1884],[101.5856,-0.1926],[101.5924,-0.1982],[101.5934,-0.2051],[101.5963,-0.2142],[101.6025,-0.2195],[101.6044,-0.2257],[101.6106,-0.2346],[101.6166,-0.2362],[101.6197,-0.2311],[101.623,-0.2309],[101.6332,-0.2392],[101.6403,-0.2464],[101.6519,-0.2406],[101.6608,-0.2393],[101.6644,-0.2434],[101.6651,-0.2527],[101.6733,-0.2561],[101.679,-0.2528],[101.6905,-0.2601],[101.7081,-0.2627],[101.7126,-0.2653],[101.7139,-0.2716],[101.7184,-0.2767],[101.7197,-0.2809],[101.7323,-0.2936],[101.7349,-0.2991],[101.7328,-0.3082],[101.7538,-0.3112],[101.7541,-0.3201],[101.7575,-0.3238],[101.7599,-0.3314],[101.7552,-0.3369],[101.7461,-0.3444],[101.7477,-0.3521],[101.7586,-0.3566],[101.7651,-0.358],[101.7775,-0.365],[101.7885,-0.3657],[101.7931,-0.3711],[101.7977,-0.3726],[101.8046,-0.3807],[101.8109,-0.382],[101.8196,-0.3763],[101.8244,-0.3751],[101.8326,-0.3794],[101.8379,-0.3923],[101.8445,-0.3976],[101.8494,-0.4044],[101.8628,-0.4042],[101.8724,-0.3925],[101.8885,-0.3932],[101.8926,-0.3957],[101.9069,-0.3995],[101.9239,-0.3998],[101.9297,-0.4009],[101.9392,-0.4049],[101.9536,-0.4078],[101.9608,-0.4065],[101.9696,-0.4003],[101.9841,-0.3847],[102.0077,-0.3619],[102.0188,-0.3501],[102.0249,-0.3414],[102.0316,-0.3298],[102.0474,-0.312],[102.0653,-0.298],[102.102,-0.2731],[102.1099,-0.2715],[102.1259,-0.2697],[102.1431,-0.2701],[102.1502,-0.2696],[102.1584,-0.2672],[102.1652,-0.2636],[102.1716,-0.2537],[102.1759,-0.2401],[102.1781,-0.2177],[102.1815,-0.2069],[102.1867,-0.1971],[102.1906,-0.1863],[102.1948,-0.1796],[102.201,-0.175],[102.2137,-0.1692],[102.2251,-0.1665],[102.2331,-0.1659],[102.2526,-0.1658],[102.271,-0.1697],[102.3006,-0.1741],[102.3391,-0.1777],[102.3681,-0.1788],[102.3837,-0.1766],[102.4072,-0.1664],[102.4329,-0.1474],[102.4464,-0.1331],[102.4704,-0.1051],[102.4755,-0.0978],[102.4797,-0.0889],[102.4854,-0.0692],[102.487,-0.0577],[102.4877,-0.0458],[102.4925,-0.014],[102.4952,-0.0002],[102.4963,0.0122],[102.5001,0.0233],[102.5034,0.0299],[102.5152,0.0491],[102.5296,0.0662],[102.5381,0.0749],[102.5512,0.0847],[102.5656,0.0932],[102.5807,0.0983],[102.5911,0.1009],[102.6024,0.1026],[102.6268,0.1036],[102.6421,0.1035],[102.6743,0.1045],[102.717,0.1054],[102.7307,0.1083],[102.742,0.113],[102.7483,0.1143],[102.7819,0.1171],[102.795,0.1198],[102.8141,0.1264],[102.8351,0.1379],[102.844,0.1454],[102.859,0.1531],[102.8704,0.1621],[102.8841,0.1767],[102.9029,0.2021],[102.9175,0.2186],[102.9322,0.2321],[102.9409,0.2393],[102.96,0.2569],[102.9707,0.2648],[102.9749,0.269],[102.9934,0.2825],[103.0039,0.2909],[103.0153,0.2971],[103.0276,0.3013],[103.0474,0.3054],[103.0715,0.3139],[103.085,0.317],[103.0945,0.3202],[103.1065,0.3222],[103.116,0.3251],[103.145,0.3405],[103.1563,0.3531],[103.1642,0.3603],[103.1742,0.3723],[103.1972,0.3955],[103.2081,0.4084],[103.2324,0.4282],[103.2416,0.434],[103.256,0.4464],[103.2636,0.4522],[103.2955,0.4686],[103.3113,0.4755],[103.3295,0.4817],[103.3369,0.4853],[103.3418,0.4955]]}},{"type":"Feature","properties":{"mhid":"1332:83","alt_name":"KABUPATEN SIAK","latitude":0.97453,"longitude":102.01355,"sample_value":854},"geometry":{"type":"LineString","coordinates":[[102.9007,0.721],[102.8934,0.7282],[102.877,0.7339],[102.869,0.736],[102.8496,0.7388],[102.842,0.739],[102.8181,0.7366],[102.7995,0.7335],[102.7879,0.7309],[102.7765,0.7304],[102.7631,0.732],[102.743,0.7387],[102.7296,0.7454],[102.719,0.7476],[102.7185,0.7503],[102.6952,0.7549],[102.6795,0.7555],[102.6645,0.7549],[102.6567,0.7522],[102.6396,0.7507],[102.638,0.7487],[102.6243,0.7421],[102.6154,0.7411],[102.6077,0.7384],[102.5871,0.7364],[102.5671,0.7387],[102.557,0.7414],[102.5459,0.7458],[102.5249,0.7457],[102.5077,0.7487],[102.4994,0.753],[102.4876,0.761],[102.4693,0.7771],[102.4604,0.7799],[102.4572,0.783],[102.4399,0.7911],[102.4203,0.8016],[102.4109,0.8081],[102.4012,0.8172],[102.3891,0.8337],[102.3772,0.8511],[102.3625,0.8693],[102.3593,0.8715],[102.3495,0.8819],[102.339,0.9001],[102.3255,0.9124],[102.3207,0.9153],[102.3093,0.9249],[102.2973,0.9376],[102.2886,0.94],[102.2687,0.9517],[102.2627,0.9562],[102.2517,0.9668],[102.2441,0.9765],[102.2385,0.9822],[102.2259,1.0001],[102.2229,1.0074],[102.2195,1.0249],[102.214,1.0372],[102.2079,1.0483],[102.207,1.0522],[102.196,1.0751],[102.192,1.0872],[102.1915,1.1044],[102.1951,1.1252],[102.1994,1.1415],[102.2047,1.1585],[102.2072,1.1694],[102.2083,1.1906],[102.2023,1.2066],[102.1957,1.2172],[102.1922,1.221],[102.1794,1.2304],[102.1728,1.2276],[102.1734,1.2132],[102.1718,1.2057],[102.162,1.1908],[102.151,1.1869],[102.1463,1.1867],[102.1426,1.1806],[102.1319,1.1769],[102.1098,1.1474],[102.1072,1.1375],[102.0946,1.1253],[102.0619,1.077],[102.0589,1.0737],[102.0326,1.0376],[102.0188,1.0208],[102.0113,1.0125],[101.9931,0.9952],[101.969,0.9605],[101.9377,0.9589],[101.9234,0.9618],[101.9147,0.9625],[101.9093,0.9595],[101.9019,0.9471],[101.8406,0.9469],[101.8477,0.9599],[101.8784,1.0143],[101.8842,1.0431],[101.8835,1.0683],[101.8739,1.1],[101.8637,1.1196],[101.8507,1.1379],[101.8139,1.1689],[101.7405,1.1928],[101.7119,1.1971],[101.6515,1.0963],[101.612,1.0306],[101.6097,1.027],[101.5394,0.9254],[101.525,0.9307],[101.5224,0.9354],[101.5212,0.9455],[101.5183,0.9514],[101.5083,0.9564],[101.5003,0.9584],[101.4825,0.9701],[101.4789,0.9705],[101.4761,0.9748],[101.4552,0.9865],[101.458,0.9981],[101.4537,1.0052],[101.4418,1.0065],[101.4383,1.0085],[101.4348,1.0151],[101.4315,1.0164],[101.4225,1.014],[101.417,1.0226],[101.4088,1.0219],[101.4012,1.0234],[101.3943,1.0205],[101.3745,1.0257],[101.3676,1.0277],[101.3655,1.0322],[101.3588,1.029],[101.3536,1.0327],[101.3436,1.0303],[101.3398,1.0282],[101.3319,1.035],[101.3265,1.0356],[101.3232,1.0409],[101.3163,1.042],[101.3101,1.0466],[101.3054,1.045],[101.2978,1.0475],[101.2962,1.0511],[101.2909,1.0499],[101.2878,1.0574],[101.2824,1.0604],[101.278,1.0539],[101.2745,1.0442],[101.2665,1.0368],[101.2605,1.0339],[101.2537,1.024],[101.2499,1.0206],[101.2431,1.018],[101.2367,1.0136],[101.2304,1.0069],[101.144,1.0771],[101.0484,1.1545],[100.9326,1.2485],[100.9254,1.1876],[100.9117,1.0675],[100.9076,1.0308],[100.9069,1.0299],[100.9813,0.9888],[101.1145,0.9154],[101.2207,0.857],[101.2759,0.8268],[101.2987,0.8105],[101.3003,0.8046],[101.3057,0.8008],[101.3104,0.8054],[101.3148,0.8065],[101.3169,0.8011],[101.3226,0.8032],[101.3348,0.7974],[101.3319,0.7752],[101.3235,0.7225],[101.3155,0.7118],[101.3112,0.7086],[101.3178,0.7024],[101.3143,0.6972],[101.3176,0.6947],[101.3226,0.696],[101.3349,0.689],[101.3782,0.6626],[101.3778,0.6687],[101.3822,0.6812],[101.3863,0.6865],[101.3973,0.6924],[101.4015,0.6891],[101.4072,0.6883],[101.4113,0.6835],[101.4178,0.6849],[101.4264,0.6747],[101.4407,0.666],[101.4571,0.6618],[101.4845,0.6597],[101.4841,0.6553],[101.4891,0.6513],[101.4972,0.657],[101.4982,0.6595],[101.5188,0.657],[101.5403,0.658],[101.5445,0.6498],[101.5459,0.6422],[101.5528,0.6371],[101.5598,0.638],[101.5638,0.6409],[101.5714,0.6387],[101.5742,0.6329],[101.5713,0.6248],[101.5782,0.6147],[101.5914,0.6066],[101.5881,0.5968],[101.5845,0.5953],[101.5785,0.5971],[101.5818,0.5882],[101.5845,0.585],[101.586,0.5776],[101.58,0.571],[101.582,0.5587],[101.5761,0.5514],[101.5776,0.5434],[101.5808,0.5419],[101.5877,0.5429],[101.5884,0.5393],[101.5926,0.5337],[101.592,0.5305],[101.5954,0.5294],[101.6033,0.5326],[101.6118,0.5393],[101.6247,0.542],[101.6368,0.5421],[101.6418,0.5432],[101.6558,0.5414],[101.6646,0.5374],[101.6647,0.5071],[101.6668,0.4948],[101.6695,0.4849],[101.6765,0.4556],[101.6716,0.4465],[101.6706,0.4315],[101.6716,0.4078],[101.6922,0.4194],[101.6968,0.435],[101.6975,0.4458],[101.7095,0.4487],[101.7179,0.4499],[101.7258,0.4485],[101.7333,0.4451],[101.7505,0.4295],[101.7666,0.4209],[101.7943,0.4075],[101.7985,0.4177],[101.8128,0.4245],[101.8177,0.4319],[101.8366,0.4363],[101.8443,0.4496],[101.8477,0.4684],[101.8499,0.4752],[101.8433,0.4828],[101.8417,0.4951],[101.8343,0.4981],[101.8312,0.5071],[101.8498,0.5102],[101.8854,0.5105],[101.8864,0.4575],[101.8781,0.4573],[101.8781,0.4493],[101.8948,0.4494],[101.8947,0.4542],[101.9084,0.4543],[101.9085,0.4599],[101.9147,0.4599],[101.9148,0.4659],[101.9115,0.468],[101.9115,0.4772],[101.9205,0.4774],[101.9215,0.4985],[101.9135,0.5],[101.9128,0.5046],[101.916,0.5071],[101.9198,0.5209],[101.921,0.5223],[101.9734,0.5502],[101.9775,0.5719],[102.0227,0.5802],[102.0276,0.5814],[102.0518,0.585],[102.0656,0.5882],[102.0909,0.5928],[102.1186,0.5968],[102.1279,0.597],[102.1425,0.5985],[102.1712,0.5998],[102.1817,0.601],[102.2069,0.6024],[102.2184,0.6036],[102.2687,0.6067],[102.2898,0.6083],[102.2979,0.6083],[102.3402,0.6114],[102.3662,0.6147],[102.4087,0.6188],[102.417,0.6206],[102.4299,0.621],[102.4389,0.6223],[102.4881,0.6274],[102.5151,0.6308],[102.5204,0.6306],[102.5507,0.6344],[102.5624,0.6353],[102.5928,0.6389],[102.6207,0.6413],[102.6358,0.6438],[102.6507,0.6451],[102.6668,0.6472],[102.6942,0.6499],[102.7203,0.6531],[102.7314,0.6536],[102.7553,0.657],[102.7682,0.658],[102.7797,0.6601],[102.8042,0.6621],[102.8121,0.6634],[102.825,0.6638],[102.8323,0.6655],[102.8482,0.6667],[102.8562,0.6692],[102.8601,0.6728],[102.8684,0.6861],[102.8707,0.6988],[102.8739,0.7049],[102.8798,0.7112],[102.8933,0.7194],[102.9007,0.721]]}},{"type":"Feature","properties":{"mhid":"1332:84","alt_name":"KABUPATEN KAMPAR","latitude":0.2344,"longitude":101.2131,"sample_value":426},"geometry":{"type":"LineString","coordinates":[[101.3782,0.6626],[101.3349,0.689],[101.3226,0.696],[101.3176,0.6947],[101.3143,0.6972],[101.3178,0.7024],[101.3112,0.7086],[101.3155,0.7118],[101.3235,0.7225],[101.3319,0.7752],[101.3348,0.7974],[101.3226,0.8032],[101.3169,0.8011],[101.3148,0.8065],[101.3104,0.8054],[101.3057,0.8008],[101.3003,0.8046],[101.2987,0.8105],[101.2759,0.8268],[101.2207,0.857],[101.1145,0.9154],[100.9813,0.9888],[100.9069,1.0299],[100.8312,0.9373],[100.7715,0.8653],[100.7638,0.8582],[100.7595,0.8562],[100.7554,0.8497],[100.7445,0.8484],[100.7283,0.8332],[100.7243,0.8414],[100.7033,0.8321],[100.6914,0.8216],[100.7004,0.8108],[100.6917,0.8039],[100.6914,0.8009],[100.6831,0.7862],[100.6566,0.7459],[100.6321,0.73],[100.6114,0.7162],[100.5954,0.7041],[100.5972,0.6989],[100.6044,0.6908],[100.6072,0.6841],[100.61,0.671],[100.6157,0.6586],[100.6261,0.6446],[100.6413,0.6377],[100.6445,0.6349],[100.6505,0.6259],[100.6523,0.6184],[100.6622,0.6075],[100.6669,0.605],[100.6739,0.5983],[100.6742,0.5939],[100.68,0.5876],[100.6897,0.587],[100.6953,0.5816],[100.7148,0.567],[100.7226,0.5578],[100.7337,0.5544],[100.7414,0.5492],[100.7458,0.5446],[100.755,0.5396],[100.7593,0.5355],[100.7716,0.5282],[100.777,0.5284],[100.7855,0.5409],[100.7896,0.5447],[100.7932,0.5449],[100.8007,0.5361],[100.8086,0.5294],[100.8195,0.5111],[100.8219,0.5007],[100.8251,0.4928],[100.8387,0.476],[100.8408,0.4666],[100.8405,0.4591],[100.8418,0.4532],[100.8413,0.4277],[100.8423,0.425],[100.8413,0.3923],[100.8394,0.3867],[100.8389,0.3754],[100.8348,0.3704],[100.8253,0.3637],[100.8152,0.3549],[100.8105,0.3532],[100.8028,0.3549],[100.7751,0.376],[100.7701,0.382],[100.7727,0.3898],[100.7605,0.3857],[100.7545,0.3811],[100.7425,0.3778],[100.7351,0.3808],[100.728,0.3859],[100.7267,0.3885],[100.7205,0.3905],[100.7145,0.3996],[100.7068,0.4035],[100.6944,0.418],[100.6904,0.4207],[100.6825,0.4319],[100.6785,0.4338],[100.6626,0.4473],[100.6508,0.4597],[100.6408,0.4672],[100.6307,0.4798],[100.622,0.4896],[100.6089,0.5063],[100.6036,0.5108],[100.5914,0.5151],[100.5856,0.5185],[100.5782,0.5249],[100.5769,0.5285],[100.5717,0.5322],[100.5623,0.5249],[100.5606,0.5213],[100.5546,0.5148],[100.5474,0.5114],[100.5412,0.5032],[100.5377,0.4962],[100.5339,0.4843],[100.5303,0.4781],[100.5198,0.4702],[100.5142,0.4631],[100.5121,0.4578],[100.5029,0.4578],[100.4976,0.459],[100.4914,0.458],[100.4882,0.4541],[100.4773,0.4511],[100.4723,0.4452],[100.4653,0.443],[100.4619,0.434],[100.4527,0.4246],[100.4478,0.422],[100.4479,0.4189],[100.4353,0.4175],[100.4382,0.4131],[100.4464,0.4097],[100.4588,0.4028],[100.4651,0.3979],[100.469,0.4022],[100.4708,0.4071],[100.4824,0.4011],[100.4889,0.393],[100.4975,0.3768],[100.4983,0.3655],[100.5173,0.3523],[100.5215,0.346],[100.5272,0.3452],[100.5341,0.3406],[100.5381,0.3325],[100.532,0.32],[100.5321,0.3167],[100.5375,0.31],[100.5415,0.3074],[100.5546,0.3028],[100.5612,0.2993],[100.5666,0.2948],[100.5701,0.2883],[100.5772,0.2791],[100.5841,0.2727],[100.5941,0.2677],[100.6048,0.2555],[100.6153,0.2405],[100.6213,0.2341],[100.6271,0.2223],[100.6491,0.2036],[100.6634,0.1967],[100.6673,0.1956],[100.6762,0.1862],[100.6807,0.1873],[100.6848,0.2036],[100.6955,0.2169],[100.6946,0.2318],[100.7001,0.2375],[100.7014,0.2456],[100.7135,0.2386],[100.7215,0.242],[100.725,0.2412],[100.7316,0.2362],[100.7386,0.2362],[100.7404,0.2413],[100.748,0.2403],[100.7549,0.2372],[100.7648,0.2369],[100.7671,0.2453],[100.7727,0.2513],[100.7896,0.254],[100.7981,0.2577],[100.8023,0.2576],[100.8096,0.2513],[100.819,0.249],[100.8259,0.2394],[100.8344,0.2351],[100.8413,0.226],[100.839,0.2185],[100.8398,0.2112],[100.8445,0.2093],[100.8453,0.2046],[100.8435,0.1972],[100.8457,0.1886],[100.8432,0.1793],[100.8484,0.1768],[100.8489,0.1704],[100.8426,0.1586],[100.8399,0.1506],[100.8412,0.1468],[100.8365,0.1407],[100.8323,0.1402],[100.8247,0.1435],[100.8199,0.143],[100.8136,0.1388],[100.8029,0.1285],[100.7906,0.1289],[100.7847,0.1235],[100.7847,0.1203],[100.7901,0.1156],[100.7867,0.107],[100.7771,0.1043],[100.7746,0.1009],[100.7804,0.0941],[100.7813,0.0892],[100.7793,0.0839],[100.7822,0.077],[100.7866,0.0765],[100.7921,0.0706],[100.795,0.0614],[100.7992,0.0582],[100.8011,0.0495],[100.8091,0.0509],[100.8143,0.0609],[100.8208,0.0635],[100.8285,0.0644],[100.8325,0.0669],[100.8372,0.0606],[100.8502,0.0533],[100.8515,0.0444],[100.8479,0.0382],[100.8443,0.0273],[100.8478,0.0045],[100.8477,0],[100.8401,-0.0071],[100.8262,-0.017],[100.8244,-0.0206],[100.828,-0.0284],[100.8262,-0.0334],[100.8192,-0.0326],[100.8145,-0.0403],[100.8109,-0.0393],[100.8092,-0.0303],[100.8011,-0.024],[100.7897,-0.0211],[100.7859,-0.014],[100.7823,-0.0113],[100.7753,-0.0143],[100.7712,-0.0192],[100.7661,-0.0219],[100.7586,-0.0319],[100.757,-0.0395],[100.7507,-0.0446],[100.7453,-0.0464],[100.7427,-0.0621],[100.7434,-0.0723],[100.7534,-0.083],[100.7539,-0.0929],[100.7565,-0.1032],[100.7578,-0.1127],[100.7614,-0.1197],[100.7614,-0.1246],[100.7542,-0.1325],[100.7562,-0.1395],[100.7633,-0.1454],[100.7682,-0.1615],[100.7679,-0.1717],[100.7693,-0.1772],[100.7671,-0.1878],[100.7632,-0.2],[100.7631,-0.2123],[100.7664,-0.2147],[100.7762,-0.2175],[100.781,-0.2241],[100.7938,-0.2374],[100.8015,-0.2431],[100.8051,-0.2556],[100.8045,-0.2653],[100.806,-0.2715],[100.8224,-0.2837],[100.832,-0.2851],[100.8382,-0.2904],[100.8411,-0.2969],[100.8387,-0.3065],[100.8411,-0.3131],[100.8404,-0.3251],[100.8424,-0.3347],[100.8446,-0.3395],[100.8616,-0.3326],[100.8729,-0.3394],[100.8818,-0.3388],[100.8889,-0.3349],[100.9032,-0.3349],[100.9088,-0.3323],[100.9124,-0.3282],[100.9152,-0.3212],[100.9204,-0.3191],[100.9243,-0.3196],[100.9326,-0.3148],[100.9434,-0.3131],[100.9477,-0.3108],[100.9562,-0.3116],[100.9625,-0.314],[100.9768,-0.314],[100.9886,-0.3166],[101.0006,-0.3205],[101.0058,-0.3237],[101.0186,-0.3361],[101.0251,-0.3399],[101.041,-0.3627],[101.0474,-0.377],[101.0538,-0.377],[101.0611,-0.379],[101.0678,-0.3781],[101.0763,-0.3805],[101.0858,-0.3806],[101.1009,-0.3831],[101.1146,-0.3892],[101.118,-0.3878],[101.1252,-0.3638],[101.1257,-0.3556],[101.1325,-0.347],[101.1405,-0.3394],[101.143,-0.3336],[101.1429,-0.3191],[101.1394,-0.3061],[101.1398,-0.2987],[101.1423,-0.2882],[101.1451,-0.2839],[101.1504,-0.2797],[101.1527,-0.2742],[101.1595,-0.2701],[101.1659,-0.2615],[101.1664,-0.2564],[101.1584,-0.2488],[101.1566,-0.241],[101.1603,-0.2321],[101.1723,-0.2375],[101.1769,-0.2341],[101.1774,-0.2307],[101.1745,-0.2251],[101.1751,-0.2187],[101.1877,-0.2001],[101.1958,-0.1934],[101.2002,-0.1879],[101.2019,-0.1832],[101.2006,-0.1697],[101.2018,-0.1526],[101.2042,-0.1471],[101.1977,-0.1352],[101.1965,-0.1275],[101.1932,-0.1214],[101.1965,-0.1153],[101.2005,-0.1132],[101.2034,-0.1074],[101.2022,-0.1014],[101.2062,-0.095],[101.2146,-0.0891],[101.2188,-0.0876],[101.2211,-0.0822],[101.2217,-0.0755],[101.2329,-0.061],[101.2389,-0.0597],[101.2427,-0.0463],[101.2509,-0.045],[101.2562,-0.0409],[101.2588,-0.0286],[101.2587,-0.0192],[101.2609,-0.014],[101.271,-0.0056],[101.2804,-0.0058],[101.2799,-0.0091],[101.2836,-0.0137],[101.2899,-0.0182],[101.2912,-0.0248],[101.2963,-0.0297],[101.2981,-0.0364],[101.3078,-0.0432],[101.3034,-0.0517],[101.3115,-0.056],[101.3117,-0.0662],[101.3136,-0.0672],[101.3141,-0.0757],[101.3204,-0.0921],[101.3391,-0.1079],[101.3463,-0.1074],[101.3555,-0.1236],[101.3593,-0.1341],[101.3648,-0.1394],[101.3682,-0.1488],[101.3724,-0.1476],[101.372,-0.1417],[101.3757,-0.1308],[101.3782,-0.1282],[101.389,-0.1269],[101.3912,-0.1237],[101.3913,-0.1152],[101.393,-0.1092],[101.394,-0.0992],[101.4005,-0.0924],[101.4062,-0.0882],[101.4073,-0.08],[101.4111,-0.0739],[101.4151,-0.0776],[101.4162,-0.083],[101.4223,-0.0874],[101.4235,-0.0915],[101.4292,-0.098],[101.4327,-0.1042],[101.436,-0.1064],[101.4379,-0.1111],[101.4432,-0.1183],[101.4522,-0.1272],[101.4621,-0.1263],[101.4686,-0.1297],[101.4725,-0.1265],[101.483,-0.1106],[101.4805,-0.104],[101.4831,-0.1007],[101.4912,-0.1038],[101.5023,-0.1135],[101.5073,-0.1132],[101.5175,-0.118],[101.5248,-0.1174],[101.5228,-0.1172],[101.5213,-0.1078],[101.5202,-0.0892],[101.5181,-0.0677],[101.5143,-0.0466],[101.5147,-0.0376],[101.5205,-0.0236],[101.5271,-0.0103],[101.5298,-0.0014],[101.5319,0.0145],[101.5319,0.0231],[101.534,0.0296],[101.5396,0.0364],[101.5543,0.0436],[101.5624,0.046],[101.5686,0.0519],[101.5706,0.0583],[101.5759,0.0918],[101.5709,0.1044],[101.5724,0.1229],[101.5778,0.1392],[101.5789,0.1445],[101.5794,0.1584],[101.5839,0.1723],[101.5904,0.1848],[101.5921,0.1938],[101.5907,0.199],[101.5864,0.2022],[101.5779,0.2019],[101.5741,0.2054],[101.5707,0.213],[101.5652,0.2184],[101.5654,0.2252],[101.5697,0.236],[101.5743,0.2539],[101.5805,0.268],[101.5986,0.2681],[101.6795,0.2709],[101.6827,0.2759],[101.6796,0.2948],[101.6591,0.3187],[101.6588,0.3218],[101.6719,0.3431],[101.6751,0.3511],[101.6785,0.3652],[101.6829,0.3768],[101.6874,0.3831],[101.6773,0.3863],[101.6673,0.3839],[101.6389,0.3941],[101.626,0.3949],[101.6142,0.3946],[101.604,0.4058],[101.5906,0.4236],[101.5794,0.4434],[101.5741,0.4541],[101.5711,0.4534],[101.5668,0.4474],[101.5701,0.4404],[101.5671,0.434],[101.5671,0.4252],[101.557,0.4268],[101.5517,0.4327],[101.5398,0.4327],[101.529,0.434],[101.5054,0.4461],[101.4959,0.4463],[101.4856,0.4529],[101.477,0.456],[101.4755,0.4532],[101.4632,0.4401],[101.4536,0.4427],[101.4453,0.4215],[101.4396,0.4199],[101.4375,0.4239],[101.4324,0.4263],[101.4284,0.4217],[101.4146,0.427],[101.4044,0.4318],[101.3976,0.433],[101.3919,0.4356],[101.3864,0.4329],[101.3812,0.4344],[101.3758,0.4334],[101.3698,0.4353],[101.3629,0.432],[101.3572,0.4714],[101.3529,0.4744],[101.3495,0.4822],[101.35,0.4926],[101.3561,0.5006],[101.3594,0.4976],[101.363,0.4989],[101.3629,0.5361],[101.3711,0.5444],[101.3735,0.5502],[101.3726,0.5638],[101.3683,0.5655],[101.3611,0.5638],[101.3588,0.5693],[101.3541,0.5665],[101.3451,0.5741],[101.3423,0.5794],[101.3373,0.5817],[101.335,0.5869],[101.3287,0.5907],[101.3321,0.6007],[101.3279,0.606],[101.3335,0.6133],[101.3449,0.6206],[101.3586,0.633],[101.3699,0.64],[101.3763,0.6462],[101.3769,0.6535],[101.3814,0.6592],[101.3782,0.6626],[101.3778,0.6687],[101.3782,0.6626]]}},{"type":"Feature","properties":{"mhid":"1332:85","alt_name":"KABUPATEN ROKAN HULU","latitude":0.88333,"longitude":100.48333,"sample_value":962},"geometry":{"type":"LineString","coordinates":[[100.9475,1.3512],[100.9553,1.3774],[100.9562,1.3848],[100.9516,1.3872],[100.9496,1.3909],[100.9543,1.3974],[100.952,1.4013],[100.9464,1.398],[100.9374,1.3959],[100.9319,1.3979],[100.9289,1.3953],[100.902,1.3816],[100.8655,1.3563],[100.8565,1.3454],[100.8296,1.3236],[100.816,1.3077],[100.8064,1.2888],[100.8033,1.2757],[100.8032,1.2688],[100.7994,1.2657],[100.7955,1.2586],[100.7939,1.2477],[100.786,1.2433],[100.7783,1.2422],[100.756,1.2426],[100.7454,1.2453],[100.728,1.244],[100.7059,1.2445],[100.7,1.2462],[100.6936,1.252],[100.6658,1.2902],[100.6576,1.2879],[100.654,1.2819],[100.6536,1.271],[100.6507,1.2608],[100.6476,1.255],[100.6408,1.2502],[100.6348,1.2424],[100.6282,1.2313],[100.6209,1.224],[100.6167,1.2226],[100.6072,1.2242],[100.5984,1.2302],[100.5894,1.2402],[100.5735,1.2495],[100.5566,1.2613],[100.546,1.2717],[100.5293,1.2804],[100.5188,1.289],[100.4937,1.3056],[100.4822,1.3166],[100.4787,1.3226],[100.468,1.3231],[100.459,1.327],[100.4493,1.3364],[100.4584,1.3432],[100.4528,1.3459],[100.4442,1.3544],[100.4177,1.3759],[100.4119,1.3827],[100.3812,1.3918],[100.3552,1.4176],[100.3447,1.4245],[100.3336,1.4334],[100.3258,1.4283],[100.3157,1.4257],[100.3104,1.4214],[100.3075,1.417],[100.2964,1.4182],[100.2887,1.4231],[100.2834,1.4247],[100.2735,1.4228],[100.2657,1.423],[100.2606,1.4205],[100.2521,1.4129],[100.2407,1.4127],[100.2221,1.4098],[100.211,1.4055],[100.2008,1.3988],[100.1866,1.4008],[100.1771,1.4011],[100.1615,1.4032],[100.1493,1.4026],[100.1343,1.4035],[100.1276,1.3993],[100.119,1.3958],[100.1014,1.3973],[100.0953,1.4004],[100.0872,1.4005],[100.0697,1.3988],[100.051,1.3948],[100.0416,1.392],[100.0357,1.3868],[100.0304,1.3796],[100.0254,1.3569],[100.0248,1.3527],[100.0261,1.3327],[100.0302,1.3249],[100.0384,1.3179],[100.0473,1.3153],[100.0547,1.3067],[100.0577,1.3001],[100.0746,1.2759],[100.0941,1.2705],[100.101,1.2704],[100.1078,1.2678],[100.1189,1.2565],[100.1228,1.25],[100.119,1.2346],[100.1197,1.2238],[100.118,1.2167],[100.1228,1.2104],[100.1242,1.2025],[100.1215,1.1969],[100.1298,1.186],[100.1342,1.1747],[100.1354,1.1683],[100.1447,1.1588],[100.1499,1.1582],[100.1562,1.1554],[100.1617,1.1494],[100.1637,1.1442],[100.1644,1.1367],[100.1669,1.1335],[100.1727,1.1335],[100.1782,1.1265],[100.184,1.1236],[100.1826,1.1205],[100.1776,1.1176],[100.1749,1.1206],[100.1693,1.1227],[100.1622,1.1181],[100.1609,1.1196],[100.1481,1.1192],[100.1418,1.1172],[100.1347,1.1121],[100.1285,1.1043],[100.1223,1.091],[100.121,1.0755],[100.1212,1.068],[100.1258,1.0585],[100.1303,1.055],[100.1402,1.0608],[100.1413,1.0581],[100.1409,1.0475],[100.1387,1.0397],[100.1398,1.0305],[100.1445,1.0194],[100.1494,1.0122],[100.1591,1.0089],[100.1645,1.0044],[100.1665,0.9995],[100.1615,0.9995],[100.1594,0.9957],[100.1541,0.9908],[100.1398,0.9844],[100.1424,0.9777],[100.1467,0.9753],[100.1479,0.9658],[100.1446,0.9616],[100.1439,0.9544],[100.1416,0.9524],[100.1325,0.9494],[100.1284,0.9368],[100.1292,0.9317],[100.1353,0.926],[100.1347,0.9177],[100.1326,0.9133],[100.1329,0.9085],[100.1414,0.8998],[100.1399,0.8922],[100.1427,0.8844],[100.1372,0.8813],[100.1341,0.8662],[100.1379,0.8442],[100.129,0.8436],[100.1282,0.8474],[100.1235,0.8464],[100.123,0.8392],[100.1191,0.8351],[100.12,0.8263],[100.1243,0.8165],[100.1348,0.8055],[100.1435,0.7951],[100.153,0.7889],[100.1563,0.7844],[100.1646,0.7803],[100.1786,0.7644],[100.1933,0.7638],[100.2005,0.7447],[100.2072,0.7378],[100.2132,0.7356],[100.218,0.7425],[100.2238,0.7388],[100.2321,0.737],[100.2393,0.734],[100.2411,0.7094],[100.2427,0.6943],[100.2408,0.6793],[100.2378,0.6733],[100.2158,0.6631],[100.2013,0.6409],[100.1928,0.6331],[100.1858,0.6246],[100.1837,0.6167],[100.1801,0.5949],[100.1783,0.5895],[100.1765,0.5739],[100.1798,0.5659],[100.1841,0.561],[100.1917,0.56],[100.1948,0.5578],[100.2002,0.5599],[100.2045,0.5579],[100.2115,0.5591],[100.2211,0.5563],[100.235,0.5457],[100.2382,0.5407],[100.2376,0.5353],[100.2294,0.5277],[100.2161,0.5207],[100.2166,0.5116],[100.2216,0.5029],[100.2284,0.4986],[100.2412,0.4922],[100.2424,0.4858],[100.2376,0.4751],[100.243,0.4688],[100.25,0.4559],[100.2604,0.4457],[100.255,0.442],[100.259,0.4323],[100.2782,0.4094],[100.2849,0.4053],[100.2896,0.3984],[100.2947,0.4006],[100.3005,0.3966],[100.3146,0.3987],[100.3168,0.402],[100.3228,0.4016],[100.3281,0.3969],[100.3401,0.3889],[100.3442,0.3845],[100.3472,0.3843],[100.3647,0.3906],[100.3672,0.3947],[100.3758,0.3893],[100.3892,0.399],[100.4025,0.4059],[100.4099,0.4147],[100.4165,0.4178],[100.4198,0.4239],[100.431,0.4218],[100.4353,0.4175],[100.4479,0.4189],[100.4478,0.422],[100.4527,0.4246],[100.4619,0.434],[100.4653,0.443],[100.4723,0.4452],[100.4773,0.4511],[100.4882,0.4541],[100.4914,0.458],[100.4976,0.459],[100.5029,0.4578],[100.5121,0.4578],[100.5142,0.4631],[100.5198,0.4702],[100.5303,0.4781],[100.5339,0.4843],[100.5377,0.4962],[100.5412,0.5032],[100.5474,0.5114],[100.5546,0.5148],[100.5606,0.5213],[100.5623,0.5249],[100.5717,0.5322],[100.5769,0.5285],[100.5782,0.5249],[100.5856,0.5185],[100.5914,0.5151],[100.6036,0.5108],[100.6089,0.5063],[100.622,0.4896],[100.6307,0.4798],[100.6408,0.4672],[100.6508,0.4597],[100.6626,0.4473],[100.6785,0.4338],[100.6825,0.4319],[100.6904,0.4207],[100.6944,0.418],[100.7068,0.4035],[100.7145,0.3996],[100.7205,0.3905],[100.7267,0.3885],[100.728,0.3859],[100.7351,0.3808],[100.7425,0.3778],[100.7545,0.3811],[100.7605,0.3857],[100.7727,0.3898],[100.7701,0.382],[100.7751,0.376],[100.8028,0.3549],[100.8105,0.3532],[100.8152,0.3549],[100.8253,0.3637],[100.8348,0.3704],[100.8389,0.3754],[100.8394,0.3867],[100.8413,0.3923],[100.8423,0.425],[100.8413,0.4277],[100.8418,0.4532],[100.8405,0.4591],[100.8408,0.4666],[100.8387,0.476],[100.8251,0.4928],[100.8219,0.5007],[100.8195,0.5111],[100.8086,0.5294],[100.8007,0.5361],[100.7932,0.5449],[100.7896,0.5447],[100.7855,0.5409],[100.777,0.5284],[100.7716,0.5282],[100.7593,0.5355],[100.755,0.5396],[100.7458,0.5446],[100.7414,0.5492],[100.7337,0.5544],[100.7226,0.5578],[100.7148,0.567],[100.6953,0.5816],[100.6897,0.587],[100.68,0.5876],[100.6742,0.5939],[100.6739,0.5983],[100.6669,0.605],[100.6622,0.6075],[100.6523,0.6184],[100.6505,0.6259],[100.6445,0.6349],[100.6413,0.6377],[100.6261,0.6446],[100.6157,0.6586],[100.61,0.671],[100.6072,0.6841],[100.6044,0.6908],[100.5972,0.6989],[100.5954,0.7041],[100.6114,0.7162],[100.6321,0.73],[100.6566,0.7459],[100.6831,0.7862],[100.6914,0.8009],[100.6917,0.8039],[100.7004,0.8108],[100.6914,0.8216],[100.7033,0.8321],[100.7243,0.8414],[100.7283,0.8332],[100.7445,0.8484],[100.7554,0.8497],[100.7595,0.8562],[100.7638,0.8582],[100.7715,0.8653],[100.8312,0.9373],[100.9069,1.0299],[100.9076,1.0308],[100.9117,1.0675],[100.9254,1.1876],[100.9326,1.2485],[100.9352,1.2802],[100.9406,1.3072],[100.9475,1.3512]]}},{"type":"Feature","properties":{"mhid":"1332:86","alt_name":"KABUPATEN BENGKALIS","latitude":0.9838,"longitude":102.5096,"sample_value":777},"geometry":{"type":"LineString","coordinates":[[102.0308,1.6078],[102.0102,1.6051],[102.0015,1.5979],[102.001,1.5925],[101.9982,1.5838],[102.0012,1.5791],[102.0084,1.5763],[102.0116,1.5707],[102.0182,1.5521],[102.0258,1.5399],[102.0338,1.5302],[102.0402,1.525],[102.0478,1.5171],[102.0592,1.5039],[102.069,1.4948],[102.0737,1.4919],[102.0839,1.4829],[102.1095,1.4644],[102.1257,1.4558],[102.1454,1.4479],[102.179,1.4387],[102.1941,1.4354],[102.2217,1.4322],[102.2401,1.4322],[102.2601,1.4348],[102.2729,1.4354],[102.2811,1.4342],[102.2898,1.4311],[102.2982,1.4261],[102.3201,1.4029],[102.3382,1.3892],[102.3541,1.3692],[102.3667,1.3584],[102.3746,1.3494],[102.3824,1.3385],[102.3975,1.3236],[102.4039,1.3189],[102.4228,1.3076],[102.432,1.3001],[102.4511,1.2857],[102.463,1.2784],[102.4787,1.2672],[102.4962,1.2526],[102.5047,1.2511],[102.5082,1.2554],[102.5086,1.2624],[102.5067,1.2854],[102.5042,1.307],[102.4986,1.3322],[102.4959,1.3692],[102.4941,1.3768],[102.4935,1.4063],[102.4952,1.4182],[102.4952,1.4326],[102.4866,1.4405],[102.489,1.4434],[102.4915,1.4535],[102.4965,1.4654],[102.496,1.4696],[102.4863,1.4798],[102.4817,1.4883],[102.4733,1.5012],[102.4676,1.5113],[102.4636,1.5162],[102.4584,1.5195],[102.452,1.5208],[102.4255,1.5289],[102.4077,1.5357],[102.3915,1.5394],[102.375,1.5418],[102.3684,1.5443],[102.3612,1.5448],[102.3551,1.547],[102.3401,1.5491],[102.3358,1.5517],[102.33,1.5512],[102.3272,1.5487],[102.3087,1.551],[102.3002,1.5543],[102.2814,1.5533],[102.2642,1.5604],[102.2619,1.5636],[102.2407,1.5625],[102.2346,1.5634],[102.2285,1.5676],[102.2215,1.5665],[102.1985,1.5676],[102.1847,1.5692],[102.1598,1.5752],[102.1477,1.5793],[102.1274,1.585],[102.092,1.5974],[102.0713,1.6032],[102.0459,1.6074],[102.0308,1.6078]]}},{"type":"Feature","properties":{"mhid":"1332:86","alt_name":"KABUPATEN BENGKALIS","latitude":0.9838,"longitude":102.5096,"sample_value":777},"geometry":{"type":"LineString","coordinates":[[102.162,1.1908],[102.1597,1.1951],[102.1601,1.1994],[102.1643,1.2113],[102.1641,1.2318],[102.1595,1.246],[102.1532,1.2615],[102.1518,1.2691],[102.1507,1.2946],[102.1529,1.3069],[102.1551,1.3256],[102.1573,1.3317],[102.1586,1.3431],[102.1592,1.3606],[102.1533,1.3728],[102.1485,1.3778],[102.1384,1.381],[102.1255,1.3889],[102.117,1.3898],[102.1082,1.3924],[102.1004,1.3978],[102.0899,1.4017],[102.0803,1.4092],[102.0755,1.4113],[102.0658,1.4195],[102.0584,1.4227],[102.0429,1.434],[102.0383,1.4399],[102.0209,1.4499],[102.017,1.4533],[102.0053,1.4584],[102.0019,1.4651],[101.9957,1.471],[101.974,1.4868],[101.9631,1.4958],[101.9579,1.4986],[101.9536,1.5038],[101.9465,1.508],[101.9426,1.513],[101.9308,1.523],[101.9248,1.529],[101.9161,1.5338],[101.9047,1.5421],[101.8916,1.5492],[101.8837,1.5554],[101.8733,1.5615],[101.8689,1.566],[101.8613,1.5709],[101.8503,1.5795],[101.8318,1.5958],[101.8214,1.606],[101.8193,1.6093],[101.8099,1.6177],[101.8068,1.6222],[101.7838,1.6423],[101.7619,1.6594],[101.7422,1.6683],[101.726,1.672],[101.7282,1.6609],[101.69,1.5158],[101.6617,1.5167],[101.6262,1.5174],[101.6117,1.5208],[101.6001,1.5245],[101.5911,1.5302],[101.5788,1.54],[101.5761,1.5362],[101.515,1.4823],[101.5149,1.4817],[101.4812,1.4821],[101.4755,1.4564],[101.4525,1.4579],[101.4222,1.4583],[101.4222,1.4311],[101.3664,1.4515],[101.3408,1.4673],[101.3174,1.4747],[101.2956,1.4735],[101.2706,1.4684],[101.241,1.4656],[101.2198,1.4583],[101.1789,1.4453],[101.1685,1.4416],[101.1512,1.4321],[101.14,1.4233],[101.1369,1.4192],[101.1314,1.4192],[101.1237,1.4171],[101.1205,1.4135],[101.1136,1.4139],[101.1109,1.4104],[101.1051,1.4074],[101.1023,1.4039],[101.0957,1.4008],[101.0858,1.3932],[101.0792,1.3905],[101.0748,1.3843],[101.0569,1.3736],[101.0442,1.3675],[101.028,1.3606],[101.0173,1.3527],[101.0114,1.3507],[100.9951,1.3514],[100.9748,1.35],[100.9713,1.3484],[100.9542,1.349],[100.9475,1.3512],[100.9406,1.3072],[100.9352,1.2802],[100.9326,1.2485],[101.0484,1.1545],[101.144,1.0771],[101.2304,1.0069],[101.2367,1.0136],[101.2431,1.018],[101.2499,1.0206],[101.2537,1.024],[101.2605,1.0339],[101.2665,1.0368],[101.2745,1.0442],[101.278,1.0539],[101.2824,1.0604],[101.2878,1.0574],[101.2909,1.0499],[101.2962,1.0511],[101.2978,1.0475],[101.3054,1.045],[101.3101,1.0466],[101.3163,1.042],[101.3232,1.0409],[101.3265,1.0356],[101.3319,1.035],[101.3398,1.0282],[101.3436,1.0303],[101.3536,1.0327],[101.3588,1.029],[101.3655,1.0322],[101.3676,1.0277],[101.3745,1.0257],[101.3943,1.0205],[101.4012,1.0234],[101.4088,1.0219],[101.417,1.0226],[101.4225,1.014],[101.4315,1.0164],[101.4348,1.0151],[101.4383,1.0085],[101.4418,1.0065],[101.4537,1.0052],[101.458,0.9981],[101.4552,0.9865],[101.4761,0.9748],[101.4789,0.9705],[101.4825,0.9701],[101.5003,0.9584],[101.5083,0.9564],[101.5183,0.9514],[101.5212,0.9455],[101.5224,0.9354],[101.525,0.9307],[101.5394,0.9254],[101.6097,1.027],[101.612,1.0306],[101.6515,1.0963],[101.7119,1.1971],[101.7405,1.1928],[101.8139,1.1689],[101.8507,1.1379],[101.8637,1.1196],[101.8739,1.1],[101.8835,1.0683],[101.8842,1.0431],[101.8784,1.0143],[101.8477,0.9599],[101.8406,0.9469],[101.9019,0.9471],[101.9093,0.9595],[101.9147,0.9625],[101.9234,0.9618],[101.9377,0.9589],[101.969,0.9605],[101.9931,0.9952],[102.0113,1.0125],[102.0188,1.0208],[102.0326,1.0376],[102.0589,1.0737],[102.0619,1.077],[102.0946,1.1253],[102.1072,1.1375],[102.1098,1.1474],[102.1319,1.1769],[102.1426,1.1806],[102.1463,1.1867],[102.151,1.1869],[102.162,1.1908]]}},{"type":"Feature","properties":{"mhid":"1332:86","alt_name":"KABUPATEN BENGKALIS","latitude":0.9838,"longitude":102.5096,"sample_value":777},"geometry":{"type":"LineString","coordinates":[[101.4186,1.7455],[101.4199,1.7533],[101.4185,1.7643],[101.4151,1.7648],[101.4175,1.7562],[101.4163,1.7462],[101.4186,1.7455]]}},{"type":"Feature","properties":{"mhid":"1332:86","alt_name":"KABUPATEN BENGKALIS","latitude":0.9838,"longitude":102.5096,"sample_value":777},"geometry":{"type":"LineString","coordinates":[[101.3809,1.7648],[101.3815,1.7736],[101.3801,1.7841],[101.3819,1.7978],[101.3801,1.8046],[101.3771,1.8049],[101.3719,1.7998],[101.3716,1.786],[101.3724,1.7796],[101.3759,1.7689],[101.3809,1.7648]]}},{"type":"Feature","properties":{"mhid":"1332:86","alt_name":"KABUPATEN BENGKALIS","latitude":0.9838,"longitude":102.5096,"sample_value":777},"geometry":{"type":"LineString","coordinates":[[101.407,1.7603],[101.4112,1.7659],[101.4121,1.797],[101.4097,1.8099],[101.4046,1.827],[101.3981,1.8277],[101.3938,1.8212],[101.3941,1.8007],[101.3933,1.7947],[101.3947,1.785],[101.3981,1.7737],[101.407,1.7603]]}},{"type":"Feature","properties":{"mhid":"1332:86","alt_name":"KABUPATEN BENGKALIS","latitude":0.9838,"longitude":102.5096,"sample_value":777},"geometry":{"type":"LineString","coordinates":[[101.3615,1.8888],[101.3538,1.8884],[101.3534,1.8842],[101.3566,1.879],[101.3659,1.8709],[101.3695,1.8715],[101.3687,1.8783],[101.3649,1.8857],[101.3615,1.8888]]}},{"type":"Feature","properties":{"mhid":"1332:86","alt_name":"KABUPATEN BENGKALIS","latitude":0.9838,"longitude":102.5096,"sample_value":777},"geometry":{"type":"LineString","coordinates":[[101.556,2.0942],[101.5557,2.0992],[101.5497,2.0991],[101.5453,2.096],[101.5509,2.0892],[101.556,2.0942]]}},{"type":"Feature","properties":{"mhid":"1332:86","alt_name":"KABUPATEN BENGKALIS","latitude":0.9838,"longitude":102.5096,"sample_value":777},"geometry":{"type":"LineString","coordinates":[[101.635,2.1149],[101.6418,2.1178],[101.6413,2.1223],[101.6366,2.1208],[101.635,2.1149]]}},{"type":"Feature","properties":{"mhid":"1332:86","alt_name":"KABUPATEN BENGKALIS","latitude":0.9838,"longitude":102.5096,"sample_value":777},"geometry":{"type":"LineString","coordinates":[[101.6552,2.1249],[101.6464,2.1178],[101.6434,2.1172],[101.6347,2.1115],[101.6209,2.1057],[101.6116,2.1036],[101.6006,2.098],[101.5944,2.092],[101.5888,2.0889],[101.5859,2.0853],[101.5832,2.0747],[101.5734,2.0689],[101.5641,2.0477],[101.5639,2.0436],[101.5562,2.047],[101.5465,2.0399],[101.5396,2.0394],[101.5283,2.0367],[101.5214,2.0305],[101.5163,2.0409],[101.5081,2.0494],[101.4775,2.0643],[101.4706,2.0645],[101.462,2.0624],[101.4411,2.0536],[101.4325,2.0476],[101.4095,2.0257],[101.4056,2.02],[101.4037,2.0132],[101.3978,2.0051],[101.3968,1.9954],[101.3997,1.9881],[101.3982,1.9735],[101.3978,1.9498],[101.393,1.9366],[101.3939,1.9314],[101.3909,1.921],[101.3867,1.913],[101.3831,1.9107],[101.3838,1.9063],[101.3901,1.891],[101.3977,1.8774],[101.4069,1.8626],[101.415,1.8431],[101.4187,1.8291],[101.4248,1.8003],[101.4263,1.7884],[101.4285,1.7794],[101.436,1.7682],[101.4398,1.7606],[101.4465,1.7397],[101.4534,1.7296],[101.4533,1.7263],[101.458,1.7239],[101.4793,1.7194],[101.5028,1.7111],[101.5113,1.7094],[101.5244,1.7038],[101.5398,1.7005],[101.5598,1.6951],[101.5752,1.6948],[101.5776,1.6936],[101.5935,1.6925],[101.6092,1.6881],[101.6173,1.6888],[101.625,1.6956],[101.6369,1.7039],[101.6411,1.7106],[101.6538,1.7147],[101.6568,1.7177],[101.6658,1.7227],[101.6724,1.7306],[101.68,1.7344],[101.684,1.7327],[101.6914,1.7359],[101.6971,1.7398],[101.7019,1.7396],[101.7082,1.7428],[101.7185,1.757],[101.7317,1.7626],[101.7352,1.7707],[101.7376,1.7797],[101.7411,1.7974],[101.7441,1.8226],[101.7466,1.8478],[101.748,1.8661],[101.7513,1.8827],[101.7549,1.8944],[101.7599,1.8997],[101.7743,1.9177],[101.7778,1.9265],[101.7769,1.9306],[101.785,1.9372],[101.7853,1.9443],[101.7795,1.9803],[101.7765,1.9886],[101.7536,2.0194],[101.7397,2.0402],[101.7325,2.0449],[101.7276,2.0424],[101.7234,2.0434],[101.7212,2.0482],[101.7154,2.067],[101.7156,2.0791],[101.7108,2.0898],[101.704,2.0968],[101.689,2.1068],[101.6552,2.1249]]}},{"type":"Feature","properties":{"mhid":"1332:86","alt_name":"KABUPATEN BENGKALIS","latitude":0.9838,"longitude":102.5096,"sample_value":777},"geometry":{"type":"LineString","coordinates":[[101.6354,2.1178],[101.6366,2.1251],[101.6313,2.123],[101.6255,2.1172],[101.6311,2.1141],[101.6354,2.1178]]}},{"type":"Feature","properties":{"mhid":"1332:87","alt_name":"KABUPATEN ROKAN HILIR","latitude":2.16599,"longitude":100.82514,"sample_value":914},"geometry":{"type":"LineString","coordinates":[[100.8754,2.0012],[100.8851,2.0049],[100.8834,2.024],[100.8805,2.0333],[100.8722,2.0441],[100.8648,2.0508],[100.8538,2.0634],[100.843,2.0736],[100.825,2.0876],[100.8108,2.0964],[100.8063,2.098],[100.7986,2.0973],[100.7969,2.0954],[100.7985,2.0893],[100.8047,2.0799],[100.8063,2.074],[100.8188,2.0583],[100.8305,2.0418],[100.8504,2.0198],[100.8573,2.0149],[100.8669,2.0041],[100.8754,2.0012]]}},{"type":"Feature","properties":{"mhid":"1332:87","alt_name":"KABUPATEN ROKAN HILIR","latitude":2.16599,"longitude":100.82514,"sample_value":914},"geometry":{"type":"LineString","coordinates":[[100.6504,2.2129],[100.6485,2.2205],[100.643,2.2252],[100.6382,2.2314],[100.6321,2.2321],[100.632,2.2194],[100.6363,2.212],[100.6351,2.2076],[100.6384,2.1927],[100.6422,2.1868],[100.6494,2.1789],[100.6514,2.175],[100.6686,2.1668],[100.6749,2.1602],[100.6848,2.1595],[100.6849,2.1642],[100.6797,2.1698],[100.6738,2.1842],[100.6728,2.1922],[100.6634,2.1984],[100.6612,2.2026],[100.6504,2.2129]]}},{"type":"Feature","properties":{"mhid":"1332:87","alt_name":"KABUPATEN ROKAN HILIR","latitude":2.16599,"longitude":100.82514,"sample_value":914},"geometry":{"type":"LineString","coordinates":[[100.7861,2.1221],[100.7849,2.1334],[100.7796,2.1473],[100.7777,2.1634],[100.778,2.1782],[100.7771,2.1826],[100.7722,2.1875],[100.7659,2.1968],[100.7654,2.2011],[100.7613,2.2083],[100.7577,2.2201],[100.7564,2.2314],[100.7515,2.2543],[100.7469,2.2593],[100.7343,2.2568],[100.7226,2.251],[100.7134,2.2363],[100.7088,2.2153],[100.7109,2.2049],[100.7159,2.1931],[100.7192,2.1776],[100.731,2.1546],[100.7414,2.1412],[100.7494,2.1382],[100.76,2.1325],[100.764,2.1322],[100.7861,2.1221]]}},{"type":"Feature","properties":{"mhid":"1332:87","alt_name":"KABUPATEN ROKAN HILIR","latitude":2.16599,"longitude":100.82514,"sample_value":914},"geometry":{"type":"LineString","coordinates":[[100.7701,2.231],[100.7731,2.2352],[100.7827,2.2448],[100.7898,2.2543],[100.7996,2.2698],[100.7967,2.2763],[100.793,2.2768],[100.7813,2.2707],[100.7698,2.2591],[100.766,2.2474],[100.7649,2.2371],[100.7664,2.2274],[100.7701,2.231]]}},{"type":"Feature","properties":{"mhid":"1332:87","alt_name":"KABUPATEN ROKAN HILIR","latitude":2.16599,"longitude":100.82514,"sample_value":914},"geometry":{"type":"LineString","coordinates":[[101.0262,2.3096],[101.0127,2.3094],[100.9998,2.3068],[100.988,2.3066],[100.9824,2.3053],[100.9827,2.2998],[100.9891,2.3001],[100.9933,2.3023],[101.0017,2.3022],[101.0204,2.2992],[101.0308,2.3006],[101.0374,2.3079],[101.029,2.3079],[101.0262,2.3096]]}},{"type":"Feature","properties":{"mhid":"1332:87","alt_name":"KABUPATEN ROKAN HILIR","latitude":2.16599,"longitude":100.82514,"sample_value":914},"geometry":{"type":"LineString","coordinates":[[101.0618,2.2753],[101.0602,2.2812],[101.0564,2.2842],[101.0522,2.2912],[101.0466,2.2929],[101.0373,2.2932],[101.0275,2.2908],[101.0186,2.2919],[100.9877,2.2932],[100.969,2.2989],[100.9513,2.3037],[100.9273,2.3056],[100.9098,2.3051],[100.8967,2.3054],[100.8869,2.3033],[100.8709,2.3012],[100.8423,2.2989],[100.8352,2.2987],[100.8267,2.2958],[100.819,2.2909],[100.8131,2.2843],[100.8084,2.2768],[100.8069,2.272],[100.8026,2.2667],[100.7966,2.2541],[100.792,2.2512],[100.7905,2.2467],[100.7861,2.2444],[100.7677,2.2235],[100.7678,2.2123],[100.7716,2.2001],[100.7801,2.1859],[100.7813,2.1772],[100.7784,2.162],[100.779,2.1567],[100.7883,2.1286],[100.7934,2.1158],[100.8204,2.0969],[100.8296,2.0916],[100.8482,2.077],[100.8552,2.07],[100.8668,2.0561],[100.8796,2.044],[100.8849,2.035],[100.8892,2.0202],[100.8886,1.9976],[100.8908,1.9723],[100.8929,1.9636],[100.8831,1.9611],[100.8744,1.9826],[100.8511,2.0082],[100.8443,2.0125],[100.8247,2.0331],[100.8087,2.0517],[100.7989,2.0612],[100.7843,2.0777],[100.7717,2.0864],[100.7582,2.0912],[100.749,2.0924],[100.7177,2.0999],[100.6959,2.1135],[100.6864,2.1202],[100.6722,2.1243],[100.6521,2.1266],[100.6261,2.13],[100.609,2.134],[100.605,2.1342],[100.5971,2.1377],[100.5852,2.1344],[100.5814,2.1401],[100.5757,2.1446],[100.5674,2.1449],[100.5668,2.1482],[100.5582,2.1569],[100.5579,2.1599],[100.5523,2.1599],[100.5493,2.1548],[100.5428,2.1503],[100.5425,2.156],[100.5469,2.1602],[100.5454,2.1692],[100.5353,2.1759],[100.5348,2.1801],[100.5282,2.1837],[100.5252,2.1832],[100.5206,2.1901],[100.5068,2.199],[100.4953,2.2006],[100.4907,2.2021],[100.4907,2.2056],[100.4761,2.201],[100.4719,2.2049],[100.4761,2.2103],[100.4815,2.2072],[100.4819,2.2134],[100.4715,2.2219],[100.4665,2.2223],[100.4638,2.2311],[100.4489,2.2439],[100.4431,2.2512],[100.4351,2.2567],[100.429,2.2691],[100.4273,2.2762],[100.4198,2.2795],[100.4158,2.2849],[100.4154,2.2885],[100.4064,2.3001],[100.3956,2.3092],[100.387,2.3089],[100.3927,2.3139],[100.3924,2.3187],[100.3881,2.3252],[100.3859,2.3317],[100.378,2.3462],[100.3798,2.3546],[100.3751,2.3564],[100.3766,2.3716],[100.3668,2.3796],[100.3612,2.3858],[100.3602,2.4032],[100.3584,2.4111],[100.3541,2.4147],[100.3499,2.4211],[100.3484,2.4257],[100.3467,2.4433],[100.3421,2.4539],[100.3407,2.4631],[100.3413,2.474],[100.3316,2.4913],[100.3286,2.502],[100.3311,2.5058],[100.3315,2.5136],[100.33,2.5298],[100.3272,2.5425],[100.3228,2.5452],[100.3196,2.5289],[100.3139,2.51],[100.3124,2.5076],[100.3071,2.4913],[100.3071,2.48],[100.3061,2.4752],[100.3001,2.4608],[100.2996,2.4462],[100.2968,2.4369],[100.2955,2.4282],[100.2962,2.4052],[100.298,2.3803],[100.2994,2.3565],[100.3019,2.3499],[100.3008,2.3401],[100.3069,2.3231],[100.3131,2.31],[100.3149,2.3042],[100.3174,2.2897],[100.3206,2.2868],[100.3278,2.2759],[100.3336,2.2639],[100.3354,2.2534],[100.35,2.2306],[100.3594,2.2117],[100.3651,2.2102],[100.3641,2.2016],[100.3632,2.1741],[100.3636,2.1689],[100.3367,2.1222],[100.3305,2.0959],[100.3266,2.0838],[100.3155,2.0524],[100.3165,1.9981],[100.3155,1.9904],[100.3141,1.9676],[100.3133,1.944],[100.3135,1.9276],[100.3144,1.9096],[100.3108,1.8997],[100.3112,1.8928],[100.3051,1.8823],[100.2922,1.8789],[100.2893,1.8768],[100.2815,1.8651],[100.28,1.8423],[100.2813,1.834],[100.2788,1.8245],[100.2777,1.8135],[100.2843,1.8007],[100.2889,1.7958],[100.2962,1.7912],[100.3306,1.7846],[100.3538,1.7821],[100.3528,1.7655],[100.3523,1.7378],[100.3461,1.7231],[100.3383,1.7105],[100.3286,1.6988],[100.3191,1.69],[100.3203,1.6805],[100.3307,1.6786],[100.3432,1.6791],[100.369,1.667],[100.3829,1.6721],[100.4007,1.6656],[100.407,1.6728],[100.412,1.6612],[100.4126,1.6461],[100.4064,1.6396],[100.4034,1.624],[100.4112,1.6194],[100.4148,1.6095],[100.414,1.6001],[100.4103,1.5919],[100.404,1.5859],[100.408,1.5755],[100.4115,1.572],[100.4115,1.5656],[100.4178,1.5659],[100.4188,1.5609],[100.4154,1.5482],[100.4125,1.5412],[100.4175,1.5365],[100.4225,1.5257],[100.4201,1.5148],[100.4229,1.5129],[100.4258,1.5047],[100.424,1.4888],[100.4172,1.4705],[100.4131,1.465],[100.408,1.4627],[100.4006,1.4619],[100.3882,1.4555],[100.3852,1.4598],[100.3768,1.4553],[100.3418,1.4585],[100.3327,1.4601],[100.3237,1.4595],[100.3227,1.4638],[100.3237,1.4741],[100.3218,1.4775],[100.3168,1.4761],[100.309,1.4717],[100.2944,1.4736],[100.287,1.4785],[100.2816,1.4757],[100.2794,1.4662],[100.2885,1.4607],[100.2915,1.4571],[100.2998,1.4547],[100.3061,1.4506],[100.3194,1.4468],[100.3227,1.4429],[100.3275,1.4432],[100.3321,1.4398],[100.3396,1.4389],[100.3443,1.4363],[100.3336,1.4334],[100.3447,1.4245],[100.3552,1.4176],[100.3812,1.3918],[100.4119,1.3827],[100.4177,1.3759],[100.4442,1.3544],[100.4528,1.3459],[100.4584,1.3432],[100.4493,1.3364],[100.459,1.327],[100.468,1.3231],[100.4787,1.3226],[100.4822,1.3166],[100.4937,1.3056],[100.5188,1.289],[100.5293,1.2804],[100.546,1.2717],[100.5566,1.2613],[100.5735,1.2495],[100.5894,1.2402],[100.5984,1.2302],[100.6072,1.2242],[100.6167,1.2226],[100.6209,1.224],[100.6282,1.2313],[100.6348,1.2424],[100.6408,1.2502],[100.6476,1.255],[100.6507,1.2608],[100.6536,1.271],[100.654,1.2819],[100.6576,1.2879],[100.6658,1.2902],[100.6936,1.252],[100.7,1.2462],[100.7059,1.2445],[100.728,1.244],[100.7454,1.2453],[100.756,1.2426],[100.7783,1.2422],[100.786,1.2433],[100.7939,1.2477],[100.7955,1.2586],[100.7994,1.2657],[100.8032,1.2688],[100.8033,1.2757],[100.8064,1.2888],[100.816,1.3077],[100.8296,1.3236],[100.8565,1.3454],[100.8655,1.3563],[100.902,1.3816],[100.9289,1.3953],[100.9319,1.3979],[100.9374,1.3959],[100.9464,1.398],[100.952,1.4013],[100.9543,1.3974],[100.9496,1.3909],[100.9516,1.3872],[100.9562,1.3848],[100.9553,1.3774],[100.9475,1.3512],[100.9542,1.349],[100.9713,1.3484],[100.9748,1.35],[100.9951,1.3514],[101.0114,1.3507],[101.0173,1.3527],[101.028,1.3606],[101.0442,1.3675],[101.0569,1.3736],[101.0748,1.3843],[101.0792,1.3905],[101.0858,1.3932],[101.0957,1.4008],[101.1023,1.4039],[101.1051,1.4074],[101.1109,1.4104],[101.1136,1.4139],[101.1205,1.4135],[101.1237,1.4171],[101.1314,1.4192],[101.1369,1.4192],[101.14,1.4233],[101.1512,1.4321],[101.1685,1.4416],[101.1789,1.4453],[101.2198,1.4583],[101.241,1.4656],[101.2706,1.4684],[101.2956,1.4735],[101.3174,1.4747],[101.333,1.4963],[101.3139,1.5268],[101.311,1.5418],[101.3079,1.5471],[101.3028,1.5779],[101.3,1.5886],[101.293,1.5981],[101.2879,1.6103],[101.2838,1.6175],[101.2814,1.6262],[101.2818,1.6316],[101.2715,1.647],[101.2696,1.6549],[101.2637,1.6614],[101.2562,1.6738],[101.2529,1.6815],[101.242,1.6943],[101.2029,1.7528],[101.1725,1.7892],[101.1588,1.8061],[101.1299,1.8408],[101.1277,1.8482],[101.1211,1.8576],[101.1171,1.8697],[101.1129,1.8723],[101.1083,1.8818],[101.0986,1.892],[101.0955,1.8972],[101.0954,1.8973],[101.0955,1.8973],[101.0954,1.8973],[101.0881,1.9075],[101.0845,1.9158],[101.079,1.9193],[101.0731,1.9291],[101.0602,1.9551],[101.0579,1.9744],[101.054,1.9939],[101.0492,2.0045],[101.0386,2.0326],[101.0326,2.0446],[101.0269,2.0597],[101.0259,2.065],[101.0187,2.0755],[101.0186,2.0906],[101.0128,2.0982],[101.0104,2.1101],[101.0093,2.1199],[101.0096,2.1273],[101.0128,2.1448],[101.0181,2.1637],[101.0225,2.1748],[101.0252,2.1847],[101.0318,2.2003],[101.0364,2.2158],[101.0501,2.2433],[101.0517,2.2576],[101.0562,2.2706],[101.0618,2.2753]]}},{"type":"Feature","properties":{"mhid":"1332:88","alt_name":"KABUPATEN KEPULAUAN MERANTI","latitude":0.97488,"longitude":102.69539,"sample_value":36},"geometry":{"type":"LineString","coordinates":[[102.9044,0.7678],[102.9019,0.77],[102.8872,0.7742],[102.8979,0.7666],[102.9044,0.7678]]}},{"type":"Feature","properties":{"mhid":"1332:88","alt_name":"KABUPATEN KEPULAUAN MERANTI","latitude":0.97488,"longitude":102.69539,"sample_value":36},"geometry":{"type":"LineString","coordinates":[[103.0908,0.7172],[103.101,0.719],[103.1095,0.7252],[103.1156,0.7385],[103.1125,0.7623],[103.1137,0.7668],[103.1114,0.7794],[103.1125,0.7827],[103.1094,0.7894],[103.1099,0.7948],[103.1055,0.7986],[103.096,0.7995],[103.0929,0.7978],[103.0846,0.7877],[103.0809,0.7784],[103.0789,0.7549],[103.0754,0.7405],[103.0764,0.7357],[103.0824,0.7227],[103.0878,0.7175],[103.0908,0.7172]]}},{"type":"Feature","properties":{"mhid":"1332:88","alt_name":"KABUPATEN KEPULAUAN MERANTI","latitude":0.97488,"longitude":102.69539,"sample_value":36},"geometry":{"type":"LineString","coordinates":[[103.0844,0.7968],[103.0913,0.8028],[103.0976,0.805],[103.1075,0.8057],[103.1101,0.8132],[103.1057,0.819],[103.0881,0.8211],[103.0756,0.8242],[103.0737,0.8218],[103.0786,0.8067],[103.0819,0.7989],[103.0844,0.7968]]}},{"type":"Feature","properties":{"mhid":"1332:88","alt_name":"KABUPATEN KEPULAUAN MERANTI","latitude":0.97488,"longitude":102.69539,"sample_value":36},"geometry":{"type":"LineString","coordinates":[[103.2187,0.8635],[103.2111,0.8689],[103.2089,0.8642],[103.2187,0.8635]]}},{"type":"Feature","properties":{"mhid":"1332:88","alt_name":"KABUPATEN KEPULAUAN MERANTI","latitude":0.97488,"longitude":102.69539,"sample_value":36},"geometry":{"type":"LineString","coordinates":[[102.9882,0.6955],[102.9945,0.6891],[103.0176,0.6856],[103.0227,0.6861],[103.0267,0.6891],[103.0315,0.6977],[103.0494,0.7203],[103.0494,0.7411],[103.0501,0.7549],[103.056,0.7771],[103.0565,0.7812],[103.0551,0.7968],[103.051,0.8074],[103.0493,0.8206],[103.0471,0.8243],[103.035,0.8343],[103.0194,0.8454],[102.9952,0.8609],[102.9859,0.8657],[102.9613,0.8769],[102.9441,0.8879],[102.9351,0.8956],[102.9265,0.9043],[102.9156,0.9229],[102.9048,0.932],[102.899,0.9357],[102.8859,0.9473],[102.8751,0.9543],[102.8619,0.9591],[102.8523,0.9615],[102.8222,0.9732],[102.8087,0.9759],[102.797,0.9803],[102.7881,0.9888],[102.7813,1.0021],[102.7706,1.0067],[102.7583,1.0095],[102.754,0.9997],[102.7499,0.9975],[102.7471,0.9999],[102.7492,1.008],[102.7453,1.0176],[102.7401,1.0212],[102.7279,1.0215],[102.716,1.0165],[102.6933,1.0106],[102.6731,1.0021],[102.6584,0.9951],[102.6493,0.992],[102.6347,0.9906],[102.6208,0.9937],[102.609,1.0001],[102.6085,1.0033],[102.5915,1.0021],[102.5847,0.9986],[102.5765,0.9909],[102.5677,0.978],[102.5568,0.9697],[102.5376,0.9653],[102.5219,0.9572],[102.5107,0.9479],[102.4992,0.9435],[102.4883,0.9319],[102.4819,0.929],[102.4746,0.9281],[102.4674,0.9292],[102.452,0.9363],[102.4419,0.936],[102.4397,0.9345],[102.4365,0.9257],[102.4326,0.9188],[102.4208,0.9052],[102.4181,0.8992],[102.4124,0.8937],[102.4089,0.8878],[102.4079,0.8771],[102.4111,0.8576],[102.4123,0.8549],[102.4286,0.8334],[102.4372,0.8252],[102.4447,0.8199],[102.4567,0.813],[102.4802,0.8024],[102.5011,0.7905],[102.5178,0.7831],[102.5391,0.7758],[102.5477,0.7722],[102.5611,0.7686],[102.5789,0.7661],[102.5924,0.7668],[102.6013,0.769],[102.62,0.7786],[102.6384,0.7849],[102.6552,0.789],[102.6846,0.7913],[102.7082,0.7918],[102.7217,0.7912],[102.7364,0.7893],[102.7623,0.7883],[102.776,0.7886],[102.8496,0.7942],[102.8662,0.7914],[102.8871,0.7822],[102.9026,0.778],[102.9184,0.7743],[102.9275,0.7693],[102.9339,0.7629],[102.9391,0.7553],[102.9456,0.7487],[102.9521,0.7404],[102.9652,0.7285],[102.9728,0.7197],[102.9788,0.7087],[102.981,0.7029],[102.9882,0.6955]]}},{"type":"Feature","properties":{"mhid":"1332:88","alt_name":"KABUPATEN KEPULAUAN MERANTI","latitude":0.97488,"longitude":102.69539,"sample_value":36},"geometry":{"type":"LineString","coordinates":[[102.5333,1.1286],[102.5258,1.1278],[102.5232,1.1253],[102.5126,1.1261],[102.497,1.1255],[102.4841,1.128],[102.4813,1.1262],[102.4775,1.1197],[102.4697,1.0994],[102.4613,1.0823],[102.4592,1.0722],[102.4607,1.0615],[102.467,1.0464],[102.4793,1.0226],[102.4833,1.0117],[102.4869,0.9903],[102.4896,0.9781],[102.497,0.9595],[102.4997,0.9503],[102.5,0.945],[102.5101,0.9486],[102.5216,0.958],[102.5294,0.9628],[102.5378,0.9663],[102.5549,0.9701],[102.5601,0.9727],[102.5692,0.9809],[102.5761,0.9919],[102.5842,0.9994],[102.5899,1.0027],[102.6082,1.0053],[102.6035,1.0161],[102.6025,1.0252],[102.6078,1.0372],[102.6136,1.0426],[102.6142,1.0477],[102.6057,1.0533],[102.5995,1.0631],[102.5954,1.0656],[102.5856,1.0758],[102.572,1.0883],[102.5702,1.0925],[102.5613,1.1001],[102.5599,1.0999],[102.5492,1.1094],[102.5452,1.1214],[102.5396,1.1269],[102.5333,1.1286]]}},{"type":"Feature","properties":{"mhid":"1332:88","alt_name":"KABUPATEN KEPULAUAN MERANTI","latitude":0.97488,"longitude":102.69539,"sample_value":36},"geometry":{"type":"LineString","coordinates":[[102.7709,1.1584],[102.7596,1.159],[102.7475,1.1576],[102.7354,1.1539],[102.7182,1.1439],[102.7037,1.1321],[102.6877,1.1179],[102.6771,1.1026],[102.6707,1.091],[102.6671,1.0804],[102.6677,1.0759],[102.6644,1.0562],[102.6564,1.0345],[102.6515,1.029],[102.6418,1.024],[102.6294,1.0217],[102.6228,1.019],[102.6246,1.011],[102.6292,1.0074],[102.6343,1.0061],[102.6436,1.0069],[102.6555,1.0125],[102.6873,1.026],[102.6933,1.0272],[102.7282,1.0392],[102.7441,1.0384],[102.7501,1.0352],[102.7548,1.03],[102.768,1.0218],[102.775,1.0195],[102.7814,1.0203],[102.7871,1.0293],[102.7931,1.0339],[102.7991,1.0356],[102.8091,1.0344],[102.8119,1.0359],[102.8144,1.0448],[102.8183,1.049],[102.8208,1.0479],[102.8186,1.0375],[102.8165,1.033],[102.8096,1.0292],[102.7993,1.0306],[102.7941,1.0292],[102.7906,1.0252],[102.7901,1.0203],[102.7947,1.0113],[102.7976,1.0024],[102.8058,0.9918],[102.8097,0.9897],[102.8287,0.9862],[102.8443,0.979],[102.8588,0.9746],[102.865,0.9742],[102.8849,0.9666],[102.8992,0.9566],[102.9198,0.9443],[102.9238,0.9386],[102.9348,0.9299],[102.941,0.9201],[102.9476,0.9121],[102.9554,0.9054],[102.9625,0.9023],[102.9849,0.8937],[103.027,0.8681],[103.0281,0.8665],[103.0402,0.8611],[103.0539,0.8514],[103.0633,0.8422],[103.0697,0.8335],[103.0757,0.8307],[103.0923,0.8279],[103.1021,0.8271],[103.1235,0.8309],[103.1372,0.8373],[103.1464,0.8405],[103.1539,0.848],[103.1548,0.8582],[103.1574,0.8627],[103.1546,0.8722],[103.1601,0.8857],[103.1522,0.8982],[103.1427,0.9079],[103.1369,0.9163],[103.1274,0.9242],[103.1187,0.9357],[103.1197,0.9398],[103.1093,0.9466],[103.0979,0.9604],[103.0917,0.9706],[103.0873,0.9801],[103.0788,0.9874],[103.0776,0.9907],[103.0689,1.0007],[103.0461,1.022],[103.0431,1.0262],[103.0315,1.0382],[103.0088,1.0649],[103.0052,1.0703],[102.9831,1.0889],[102.9722,1.0962],[102.9631,1.0975],[102.9533,1.1003],[102.9294,1.1095],[102.8923,1.1258],[102.8849,1.1277],[102.8739,1.1326],[102.8607,1.136],[102.8516,1.1394],[102.8435,1.1412],[102.8329,1.1449],[102.8244,1.1452],[102.8118,1.1499],[102.8063,1.1504],[102.7911,1.1545],[102.7901,1.1556],[102.7709,1.1584]]}},{"type":"Feature","properties":{"mhid":"1332:88","alt_name":"KABUPATEN KEPULAUAN MERANTI","latitude":0.97488,"longitude":102.69539,"sample_value":36},"geometry":{"type":"LineString","coordinates":[[102.292,1.412],[102.2796,1.4172],[102.2691,1.4183],[102.2567,1.414],[102.2433,1.412],[102.2305,1.4119],[102.2157,1.4142],[102.2103,1.4084],[102.2096,1.4013],[102.2142,1.3909],[102.2245,1.3732],[102.2275,1.3665],[102.229,1.3472],[102.2275,1.3295],[102.223,1.3171],[102.2164,1.3026],[102.212,1.296],[102.2059,1.2819],[102.2062,1.2757],[102.2101,1.2669],[102.2179,1.2532],[102.2228,1.2472],[102.2253,1.2412],[102.233,1.2324],[102.2358,1.2259],[102.241,1.208],[102.2447,1.1989],[102.248,1.1862],[102.2497,1.1714],[102.2474,1.1488],[102.2433,1.1364],[102.2424,1.1281],[102.2376,1.114],[102.2367,1.1007],[102.2422,1.0855],[102.2544,1.0589],[102.2591,1.0464],[102.265,1.0338],[102.2684,1.0235],[102.2759,1.0054],[102.2832,0.9966],[102.2945,0.9872],[102.3041,0.9806],[102.3182,0.9719],[102.3303,0.9632],[102.3392,0.954],[102.3482,0.9426],[102.3643,0.9268],[102.3795,0.9156],[102.3908,0.9127],[102.3982,0.9156],[102.418,0.9208],[102.4212,0.9249],[102.4267,0.9379],[102.4312,0.9436],[102.4397,0.9488],[102.4496,0.9495],[102.4694,0.9416],[102.4773,0.9405],[102.4814,0.9426],[102.4835,0.9522],[102.4812,0.961],[102.4769,0.9704],[102.4725,0.9855],[102.4688,1.0074],[102.4667,1.0129],[102.4551,1.0327],[102.4444,1.0545],[102.4396,1.0628],[102.4386,1.0706],[102.4424,1.0804],[102.4458,1.0934],[102.4517,1.1074],[102.4501,1.1129],[102.4538,1.1207],[102.458,1.1253],[102.4606,1.1313],[102.4596,1.1376],[102.4637,1.1583],[102.4684,1.1675],[102.4764,1.1785],[102.4799,1.1891],[102.4859,1.2004],[102.4864,1.2074],[102.4852,1.2155],[102.4862,1.2302],[102.485,1.2382],[102.4813,1.2436],[102.4739,1.249],[102.4668,1.2567],[102.4455,1.2725],[102.4226,1.2933],[102.3991,1.3069],[102.3719,1.3282],[102.3594,1.3452],[102.3441,1.3603],[102.3305,1.3718],[102.3208,1.3812],[102.3029,1.4023],[102.292,1.412]]}},{"type":"Feature","properties":{"mhid":"1332:89","alt_name":"KOTA PEKANBARU","latitude":0.53333,"longitude":101.46667,"sample_value":469},"geometry":{"type":"LineString","coordinates":[[101.592,0.5305],[101.5926,0.5337],[101.5884,0.5393],[101.5877,0.5429],[101.5808,0.5419],[101.5776,0.5434],[101.5761,0.5514],[101.582,0.5587],[101.58,0.571],[101.586,0.5776],[101.5845,0.585],[101.5818,0.5882],[101.5785,0.5971],[101.5845,0.5953],[101.5881,0.5968],[101.5914,0.6066],[101.5782,0.6147],[101.5713,0.6248],[101.5742,0.6329],[101.5714,0.6387],[101.5638,0.6409],[101.5598,0.638],[101.5528,0.6371],[101.5459,0.6422],[101.5445,0.6498],[101.5403,0.658],[101.5188,0.657],[101.4982,0.6595],[101.4972,0.657],[101.4891,0.6513],[101.4841,0.6553],[101.4845,0.6597],[101.4571,0.6618],[101.4407,0.666],[101.4264,0.6747],[101.4178,0.6849],[101.4113,0.6835],[101.4072,0.6883],[101.4015,0.6891],[101.3973,0.6924],[101.3863,0.6865],[101.3822,0.6812],[101.3778,0.6687],[101.3782,0.6626],[101.3814,0.6592],[101.3769,0.6535],[101.3763,0.6462],[101.3699,0.64],[101.3586,0.633],[101.3449,0.6206],[101.3335,0.6133],[101.3279,0.606],[101.3321,0.6007],[101.3287,0.5907],[101.335,0.5869],[101.3373,0.5817],[101.3423,0.5794],[101.3451,0.5741],[101.3541,0.5665],[101.3588,0.5693],[101.3611,0.5638],[101.3683,0.5655],[101.3726,0.5638],[101.3735,0.5502],[101.3711,0.5444],[101.3629,0.5361],[101.363,0.4989],[101.3594,0.4976],[101.3561,0.5006],[101.35,0.4926],[101.3495,0.4822],[101.3529,0.4744],[101.3572,0.4714],[101.3629,0.432],[101.3698,0.4353],[101.3758,0.4334],[101.3812,0.4344],[101.3864,0.4329],[101.3919,0.4356],[101.3976,0.433],[101.4044,0.4318],[101.4146,0.427],[101.4284,0.4217],[101.4324,0.4263],[101.4375,0.4239],[101.4396,0.4199],[101.4453,0.4215],[101.4536,0.4427],[101.4632,0.4401],[101.4755,0.4532],[101.477,0.456],[101.4856,0.4529],[101.4959,0.4463],[101.5054,0.4461],[101.529,0.434],[101.5398,0.4327],[101.5517,0.4327],[101.557,0.4268],[101.5671,0.4252],[101.5671,0.434],[101.5701,0.4404],[101.5668,0.4474],[101.5711,0.4534],[101.5741,0.4541],[101.5708,0.4609],[101.5691,0.4687],[101.5722,0.4723],[101.5857,0.4718],[101.5886,0.4741],[101.5839,0.4891],[101.5799,0.4955],[101.5824,0.5016],[101.5821,0.5069],[101.5881,0.5167],[101.5889,0.5279],[101.592,0.5305]]}},{"type":"Feature","properties":{"mhid":"1332:90","alt_name":"KOTA DUMAI","latitude":1.61592,"longitude":101.4917,"sample_value":125},"geometry":{"type":"LineString","coordinates":[[101.726,1.672],[101.7113,1.6713],[101.6941,1.6668],[101.678,1.6664],[101.6643,1.6653],[101.6609,1.6619],[101.6452,1.659],[101.6333,1.6543],[101.6257,1.6483],[101.6202,1.6466],[101.6101,1.6408],[101.6019,1.6387],[101.5869,1.6374],[101.5715,1.6367],[101.5672,1.6379],[101.5572,1.6381],[101.5555,1.6396],[101.5416,1.6425],[101.5312,1.646],[101.5067,1.6603],[101.5029,1.6652],[101.4974,1.6668],[101.495,1.673],[101.4908,1.6775],[101.4869,1.6785],[101.4814,1.6828],[101.4679,1.6866],[101.4399,1.6876],[101.4315,1.6892],[101.4158,1.6956],[101.4099,1.699],[101.3935,1.7132],[101.3874,1.7203],[101.3808,1.734],[101.3778,1.7372],[101.3647,1.7593],[101.3575,1.7782],[101.3562,1.7854],[101.3562,1.7947],[101.3588,1.812],[101.3623,1.8223],[101.3638,1.8316],[101.3543,1.8435],[101.3501,1.8562],[101.3482,1.8676],[101.3412,1.886],[101.337,1.8917],[101.3354,1.9031],[101.3322,1.9114],[101.3328,1.9153],[101.3307,1.9201],[101.3287,1.936],[101.3271,1.9382],[101.328,1.9454],[101.3268,1.9579],[101.325,1.9675],[101.323,1.9703],[101.3232,1.9775],[101.3215,1.9824],[101.3231,1.9979],[101.3181,2.0058],[101.3072,2.036],[101.305,2.0411],[101.2941,2.0514],[101.2848,2.0574],[101.2781,2.0661],[101.2732,2.0749],[101.2683,2.0814],[101.2416,2.0916],[101.216,2.105],[101.201,2.1156],[101.1872,2.1231],[101.1693,2.1372],[101.1518,2.1546],[101.1324,2.171],[101.1208,2.182],[101.0961,2.2031],[101.0882,2.2068],[101.0764,2.2183],[101.073,2.2231],[101.0682,2.2374],[101.0646,2.2452],[101.0602,2.2486],[101.0578,2.2585],[101.0586,2.2682],[101.0618,2.2753],[101.0562,2.2706],[101.0517,2.2576],[101.0501,2.2433],[101.0364,2.2158],[101.0318,2.2003],[101.0252,2.1847],[101.0225,2.1748],[101.0181,2.1637],[101.0128,2.1448],[101.0096,2.1273],[101.0093,2.1199],[101.0104,2.1101],[101.0128,2.0982],[101.0186,2.0906],[101.0187,2.0755],[101.0259,2.065],[101.0269,2.0597],[101.0326,2.0446],[101.0386,2.0326],[101.0492,2.0045],[101.054,1.9939],[101.0579,1.9744],[101.0602,1.9551],[101.0731,1.9291],[101.079,1.9193],[101.0845,1.9158],[101.0881,1.9075],[101.0954,1.8973],[101.0955,1.8973],[101.0955,1.8972],[101.0986,1.892],[101.1083,1.8818],[101.1129,1.8723],[101.1171,1.8697],[101.1211,1.8576],[101.1277,1.8482],[101.1299,1.8408],[101.1588,1.8061],[101.1725,1.7892],[101.2029,1.7528],[101.242,1.6943],[101.2529,1.6815],[101.2562,1.6738],[101.2637,1.6614],[101.2696,1.6549],[101.2715,1.647],[101.2818,1.6316],[101.2814,1.6262],[101.2838,1.6175],[101.2879,1.6103],[101.293,1.5981],[101.3,1.5886],[101.3028,1.5779],[101.3079,1.5471],[101.311,1.5418],[101.3139,1.5268],[101.333,1.4963],[101.3174,1.4747],[101.3408,1.4673],[101.3664,1.4515],[101.4222,1.4311],[101.4222,1.4583],[101.4525,1.4579],[101.4755,1.4564],[101.4812,1.4821],[101.5149,1.4817],[101.515,1.4823],[101.5761,1.5362],[101.5788,1.54],[101.5911,1.5302],[101.6001,1.5245],[101.6117,1.5208],[101.6262,1.5174],[101.6617,1.5167],[101.69,1.5158],[101.7282,1.6609],[101.726,1.672]]}},{"type":"Feature","properties":{"mhid":"1332:91","alt_name":"KABUPATEN KERINCI","latitude":-2.03333,"longitude":101.53333,"sample_value":154},"geometry":{"type":"LineString","coordinates":[[101.4364,-1.6948],[101.4302,-1.6861],[101.4284,-1.6786],[101.4146,-1.6727],[101.4112,-1.6721],[101.4032,-1.6786],[101.4018,-1.6867],[101.3972,-1.6897],[101.3903,-1.6896],[101.3821,-1.6849],[101.3791,-1.6859],[101.3756,-1.6911],[101.3629,-1.6937],[101.3534,-1.6916],[101.3467,-1.6919],[101.3355,-1.6868],[101.3328,-1.6882],[101.3325,-1.6939],[101.33,-1.6971],[101.3226,-1.6968],[101.3088,-1.7012],[101.2841,-1.6963],[101.2715,-1.6953],[101.2673,-1.6961],[101.2428,-1.7107],[101.2394,-1.7136],[101.2335,-1.7229],[101.2315,-1.7242],[101.2253,-1.719],[101.2184,-1.7236],[101.212,-1.7239],[101.1992,-1.714],[101.1971,-1.7106],[101.1964,-1.7021],[101.1944,-1.6955],[101.1948,-1.6877],[101.1924,-1.6805],[101.1882,-1.6777],[101.1832,-1.6889],[101.1817,-1.6961],[101.175,-1.7051],[101.1689,-1.7107],[101.1633,-1.7079],[101.1589,-1.7015],[101.1519,-1.694],[101.1454,-1.6912],[101.1344,-1.6839],[101.1316,-1.6852],[101.1315,-1.7439],[101.1339,-1.7554],[101.1288,-1.7627],[101.1297,-1.7664],[101.1361,-1.7761],[101.1405,-1.7795],[101.1424,-1.7863],[101.1421,-1.7952],[101.1518,-1.8013],[101.156,-1.8134],[101.1575,-1.8293],[101.1621,-1.8374],[101.1715,-1.8517],[101.176,-1.8552],[101.1782,-1.8631],[101.1659,-1.8795],[101.1636,-1.8944],[101.1519,-1.9031],[101.147,-1.9042],[101.1418,-1.9024],[101.1442,-1.9098],[101.1423,-1.9241],[101.1453,-1.9284],[101.1584,-1.9363],[101.169,-1.9474],[101.1825,-1.9599],[101.1925,-1.9733],[101.2027,-1.9775],[101.2071,-1.9842],[101.2081,-1.9968],[101.2069,-2.0095],[101.2098,-2.0142],[101.2337,-2.0529],[101.2408,-2.0649],[101.272,-2.0331],[101.2898,-2.0273],[101.3203,-2.0277],[101.4009,-2.0312],[101.4209,-2.0302],[101.4269,-2.0264],[101.4398,-2.0458],[101.4375,-2.0473],[101.4394,-2.0595],[101.4486,-2.0718],[101.4467,-2.0768],[101.4505,-2.0802],[101.4487,-2.0829],[101.4569,-2.0891],[101.4441,-2.1054],[101.4391,-2.1071],[101.4226,-2.1021],[101.4175,-2.1049],[101.4156,-2.1141],[101.409,-2.1183],[101.4154,-2.1495],[101.4153,-2.1564],[101.4116,-2.1665],[101.4081,-2.1714],[101.4006,-2.1771],[101.3936,-2.1805],[101.3788,-2.1759],[101.3681,-2.175],[101.3671,-2.1812],[101.3705,-2.1872],[101.37,-2.1914],[101.2821,-2.2503],[101.281,-2.2604],[101.2818,-2.2632],[101.2855,-2.2768],[101.303,-2.2928],[101.3195,-2.3046],[101.3385,-2.3174],[101.3609,-2.3312],[101.3807,-2.3444],[101.3896,-2.3494],[101.4153,-2.366],[101.419,-2.3699],[101.4254,-2.3722],[101.4365,-2.3744],[101.4486,-2.3867],[101.4545,-2.3902],[101.4851,-2.4098],[101.4944,-2.4152],[101.5123,-2.4233],[101.5294,-2.4323],[101.5523,-2.4455],[101.5575,-2.4504],[101.5597,-2.4439],[101.5608,-2.4239],[101.5594,-2.4167],[101.5536,-2.4115],[101.5502,-2.4056],[101.5558,-2.3691],[101.5552,-2.3639],[101.5506,-2.3588],[101.5504,-2.3514],[101.5705,-2.3555],[101.5824,-2.3612],[101.587,-2.3603],[101.595,-2.3614],[101.5965,-2.3588],[101.5989,-2.3433],[101.5984,-2.3368],[101.6028,-2.334],[101.609,-2.3343],[101.6171,-2.3321],[101.6208,-2.3335],[101.6246,-2.3435],[101.6318,-2.3493],[101.6395,-2.3509],[101.6462,-2.3479],[101.6471,-2.3437],[101.6512,-2.3422],[101.6664,-2.3457],[101.6768,-2.3406],[101.6944,-2.3463],[101.7136,-2.3328],[101.7206,-2.3236],[101.7222,-2.3102],[101.7268,-2.3046],[101.7349,-2.2996],[101.7428,-2.2903],[101.7459,-2.2839],[101.7468,-2.277],[101.7447,-2.2728],[101.7444,-2.2648],[101.7484,-2.2596],[101.7478,-2.2512],[101.749,-2.2485],[101.7586,-2.2465],[101.7619,-2.2437],[101.7694,-2.2325],[101.7741,-2.2224],[101.7714,-2.221],[101.7749,-2.2109],[101.7746,-2.2064],[101.7833,-2.1971],[101.7906,-2.1977],[101.797,-2.1958],[101.8045,-2.1878],[101.8116,-2.178],[101.8154,-2.1777],[101.817,-2.1824],[101.829,-2.1881],[101.8373,-2.1818],[101.8352,-2.1774],[101.83,-2.1805],[101.8255,-2.1775],[101.8206,-2.1636],[101.811,-2.1571],[101.8092,-2.1509],[101.798,-2.1409],[101.7918,-2.1432],[101.7884,-2.1352],[101.7897,-2.1259],[101.7838,-2.1167],[101.7871,-2.1092],[101.7826,-2.1048],[101.7808,-2.1001],[101.7745,-2.0957],[101.7681,-2.0951],[101.7667,-2.089],[101.7629,-2.0814],[101.7589,-2.0794],[101.7575,-2.075],[101.7594,-2.0624],[101.7583,-2.0572],[101.7536,-2.0523],[101.7468,-2.0508],[101.7328,-2.036],[101.7211,-2.0253],[101.7206,-2.0198],[101.7224,-2.0089],[101.7187,-1.9978],[101.7084,-1.9871],[101.6819,-1.9751],[101.6705,-1.9725],[101.6557,-1.9549],[101.6568,-1.9461],[101.6549,-1.9421],[101.6449,-1.9275],[101.6419,-1.9096],[101.638,-1.8966],[101.6313,-1.8915],[101.6162,-1.8789],[101.5895,-1.8482],[101.5774,-1.8378],[101.5647,-1.829],[101.5422,-1.8084],[101.5244,-1.7907],[101.507,-1.7744],[101.5002,-1.7631],[101.4804,-1.7499],[101.4731,-1.7418],[101.4672,-1.7311],[101.4456,-1.7034],[101.4389,-1.7012],[101.4364,-1.6948]]}},{"type":"Feature","properties":{"mhid":"1332:92","alt_name":"KABUPATEN MERANGIN","latitude":-2.06933,"longitude":102.13303,"sample_value":583},"geometry":{"type":"LineString","coordinates":[[102.4595,-1.8973],[102.4597,-1.8775],[102.4697,-1.8595],[102.4625,-1.842],[102.4625,-1.8293],[102.4615,-1.8221],[102.4583,-1.8127],[102.4598,-1.8004],[102.4643,-1.7926],[102.4694,-1.7867],[102.4701,-1.7807],[102.4772,-1.7764],[102.4857,-1.7686],[102.4866,-1.7654],[102.4947,-1.751],[102.5022,-1.7416],[102.514,-1.7147],[102.5141,-1.7082],[102.5121,-1.7047],[102.5017,-1.6968],[102.497,-1.6898],[102.5024,-1.6865],[102.5081,-1.6947],[102.5134,-1.6862],[102.5231,-1.6765],[102.5299,-1.6576],[102.5211,-1.6516],[102.5186,-1.6462],[102.5121,-1.6483],[102.4977,-1.6512],[102.487,-1.6576],[102.4781,-1.6691],[102.4672,-1.6811],[102.4559,-1.6888],[102.444,-1.6983],[102.4379,-1.7003],[102.4074,-1.7149],[102.3993,-1.7145],[102.3904,-1.6987],[102.3815,-1.6929],[102.3719,-1.6839],[102.3626,-1.6767],[102.3555,-1.6822],[102.3514,-1.6797],[102.3452,-1.6787],[102.3321,-1.6883],[102.3329,-1.6977],[102.3244,-1.7042],[102.3174,-1.7042],[102.3085,-1.7066],[102.2879,-1.724],[102.281,-1.7305],[102.2648,-1.7376],[102.2483,-1.7428],[102.2431,-1.7464],[102.2356,-1.7558],[102.2251,-1.7619],[102.2243,-1.7729],[102.2175,-1.7829],[102.2077,-1.7877],[102.1964,-1.7897],[102.1859,-1.7898],[102.1813,-1.791],[102.1791,-1.7875],[102.1726,-1.7896],[102.1657,-1.7871],[102.1592,-1.7871],[102.1565,-1.789],[102.1476,-1.7886],[102.1445,-1.7905],[102.1377,-1.7909],[102.1343,-1.7929],[102.1361,-1.7988],[102.1385,-1.813],[102.1437,-1.8251],[102.1431,-1.8347],[102.1356,-1.8451],[102.1283,-1.8451],[102.1215,-1.8566],[102.1206,-1.867],[102.1153,-1.8691],[102.114,-1.8776],[102.1073,-1.8837],[102.1042,-1.8844],[102.098,-1.8819],[102.0868,-1.8722],[102.0775,-1.8732],[102.0712,-1.8725],[102.0615,-1.8762],[102.0579,-1.8792],[102.0545,-1.8889],[102.0462,-1.8897],[102.0429,-1.8948],[102.0422,-1.9014],[102.0389,-1.9023],[102.0338,-1.9069],[102.017,-1.9075],[102.0136,-1.9023],[102.0062,-1.901],[102.002,-1.9076],[101.995,-1.9099],[101.9852,-1.9007],[101.9817,-1.8878],[101.9788,-1.8821],[101.9801,-1.8772],[101.976,-1.8726],[101.9673,-1.8718],[101.963,-1.8629],[101.9592,-1.8579],[101.9525,-1.8622],[101.9471,-1.8628],[101.9361,-1.8494],[101.9292,-1.8465],[101.9226,-1.8453],[101.9217,-1.839],[101.919,-1.8362],[101.9141,-1.8371],[101.9116,-1.8438],[101.905,-1.8437],[101.9007,-1.8381],[101.891,-1.841],[101.8871,-1.8484],[101.8852,-1.8484],[101.8757,-1.8394],[101.8694,-1.8372],[101.8603,-1.8388],[101.8524,-1.8333],[101.8494,-1.8291],[101.8421,-1.8309],[101.8272,-1.8215],[101.8215,-1.8239],[101.8105,-1.8329],[101.802,-1.8337],[101.7906,-1.8316],[101.7812,-1.8357],[101.7723,-1.8491],[101.758,-1.8609],[101.7358,-1.8683],[101.7311,-1.8765],[101.7244,-1.8771],[101.7164,-1.8795],[101.6944,-1.8766],[101.6855,-1.8791],[101.6805,-1.8816],[101.6769,-1.8759],[101.6708,-1.874],[101.6607,-1.8745],[101.6524,-1.8792],[101.6454,-1.8788],[101.6412,-1.882],[101.6385,-1.8903],[101.6313,-1.8915],[101.638,-1.8966],[101.6419,-1.9096],[101.6449,-1.9275],[101.6549,-1.9421],[101.6568,-1.9461],[101.6557,-1.9549],[101.6705,-1.9725],[101.6819,-1.9751],[101.7084,-1.9871],[101.7187,-1.9978],[101.7224,-2.0089],[101.7206,-2.0198],[101.7211,-2.0253],[101.7328,-2.036],[101.7468,-2.0508],[101.7536,-2.0523],[101.7583,-2.0572],[101.7594,-2.0624],[101.7575,-2.075],[101.7589,-2.0794],[101.7629,-2.0814],[101.7667,-2.089],[101.7681,-2.0951],[101.7745,-2.0957],[101.7808,-2.1001],[101.7826,-2.1048],[101.7871,-2.1092],[101.7838,-2.1167],[101.7897,-2.1259],[101.7884,-2.1352],[101.7918,-2.1432],[101.798,-2.1409],[101.8092,-2.1509],[101.811,-2.1571],[101.8206,-2.1636],[101.8255,-2.1775],[101.83,-2.1805],[101.8352,-2.1774],[101.8373,-2.1818],[101.829,-2.1881],[101.817,-2.1824],[101.8154,-2.1777],[101.8116,-2.178],[101.8045,-2.1878],[101.797,-2.1958],[101.7906,-2.1977],[101.7833,-2.1971],[101.7746,-2.2064],[101.7749,-2.2109],[101.7714,-2.221],[101.7741,-2.2224],[101.7694,-2.2325],[101.7619,-2.2437],[101.7586,-2.2465],[101.749,-2.2485],[101.7478,-2.2512],[101.7484,-2.2596],[101.7444,-2.2648],[101.7447,-2.2728],[101.7468,-2.277],[101.7459,-2.2839],[101.7428,-2.2903],[101.7349,-2.2996],[101.7268,-2.3046],[101.7222,-2.3102],[101.7206,-2.3236],[101.7136,-2.3328],[101.6944,-2.3463],[101.6768,-2.3406],[101.6664,-2.3457],[101.6512,-2.3422],[101.6471,-2.3437],[101.6462,-2.3479],[101.6395,-2.3509],[101.6318,-2.3493],[101.6246,-2.3435],[101.6208,-2.3335],[101.6171,-2.3321],[101.609,-2.3343],[101.6028,-2.334],[101.5984,-2.3368],[101.5989,-2.3433],[101.5965,-2.3588],[101.595,-2.3614],[101.587,-2.3603],[101.5824,-2.3612],[101.5705,-2.3555],[101.5504,-2.3514],[101.5506,-2.3588],[101.5552,-2.3639],[101.5558,-2.3691],[101.5502,-2.4056],[101.5536,-2.4115],[101.5594,-2.4167],[101.5608,-2.4239],[101.5597,-2.4439],[101.5575,-2.4504],[101.5608,-2.4559],[101.5616,-2.4625],[101.5581,-2.4687],[101.5591,-2.4753],[101.5568,-2.4807],[101.5564,-2.4886],[101.5492,-2.4949],[101.547,-2.5052],[101.5482,-2.5089],[101.5453,-2.522],[101.5437,-2.5401],[101.5416,-2.5552],[101.5424,-2.5633],[101.5466,-2.5706],[101.5531,-2.5718],[101.5594,-2.5691],[101.5628,-2.5637],[101.5645,-2.5515],[101.5701,-2.5464],[101.5785,-2.5439],[101.5879,-2.5445],[101.6007,-2.5371],[101.6056,-2.5385],[101.612,-2.5481],[101.6211,-2.5474],[101.6411,-2.5428],[101.6502,-2.5304],[101.6581,-2.5284],[101.6691,-2.5296],[101.6758,-2.5328],[101.6823,-2.5449],[101.6929,-2.5545],[101.7025,-2.5653],[101.7086,-2.5757],[101.7204,-2.5869],[101.7264,-2.5957],[101.7297,-2.5983],[101.735,-2.6092],[101.7411,-2.6144],[101.7513,-2.619],[101.7585,-2.6293],[101.7624,-2.6306],[101.7683,-2.6441],[101.7746,-2.6503],[101.7801,-2.6531],[101.7867,-2.6588],[101.7957,-2.6647],[101.7978,-2.6677],[101.8068,-2.6716],[101.8134,-2.6712],[101.8153,-2.6729],[101.8174,-2.6833],[101.8146,-2.69],[101.8242,-2.6967],[101.8359,-2.6976],[101.8464,-2.7053],[101.8556,-2.7169],[101.8632,-2.7252],[101.8772,-2.732],[101.8863,-2.7346],[101.8934,-2.7333],[101.9072,-2.7387],[101.9125,-2.739],[101.9219,-2.7368],[101.9286,-2.7316],[101.933,-2.7303],[101.9437,-2.7338],[101.9532,-2.7348],[101.963,-2.7257],[101.9814,-2.7232],[101.9901,-2.7231],[101.9975,-2.7306],[102.0032,-2.7341],[102.0051,-2.7376],[102.0154,-2.7442],[102.0191,-2.75],[102.0289,-2.7567],[102.0514,-2.7648],[102.068,-2.7679],[102.0694,-2.7652],[102.0752,-2.7656],[102.0771,-2.75],[102.0768,-2.742],[102.0803,-2.7295],[102.0824,-2.7261],[102.0818,-2.7211],[102.0775,-2.7061],[102.0802,-2.7002],[102.0865,-2.6935],[102.0875,-2.6887],[102.0848,-2.6847],[102.0834,-2.6756],[102.0832,-2.655],[102.0781,-2.6472],[102.0737,-2.6433],[102.0694,-2.6367],[102.0631,-2.6243],[102.0635,-2.622],[102.0693,-2.6172],[102.0856,-2.6094],[102.0937,-2.6075],[102.1017,-2.6035],[102.1044,-2.5988],[102.0956,-2.5812],[102.0939,-2.5649],[102.117,-2.5423],[102.1408,-2.5203],[102.1565,-2.5086],[102.1528,-2.496],[102.1529,-2.4883],[102.1485,-2.4763],[102.1427,-2.4684],[102.1353,-2.4536],[102.1306,-2.4418],[102.1222,-2.4274],[102.1232,-2.4162],[102.1295,-2.4113],[102.1711,-2.4108],[102.1829,-2.4102],[102.192,-2.4081],[102.2046,-2.4003],[102.2129,-2.397],[102.219,-2.3981],[102.224,-2.3948],[102.2572,-2.3646],[102.2641,-2.3654],[102.2722,-2.3567],[102.287,-2.3518],[102.2938,-2.3508],[102.2957,-2.3566],[102.2946,-2.3611],[102.2967,-2.3672],[102.2953,-2.3721],[102.3011,-2.3862],[102.3035,-2.3871],[102.3121,-2.3851],[102.3255,-2.3843],[102.3313,-2.3823],[102.335,-2.3829],[102.3522,-2.3794],[102.3617,-2.3719],[102.3666,-2.3664],[102.3655,-2.3621],[102.3701,-2.3602],[102.3737,-2.3559],[102.3737,-2.3491],[102.3927,-2.3311],[102.3952,-2.3222],[102.4038,-2.3137],[102.4241,-2.247],[102.4369,-2.2445],[102.4502,-2.2239],[102.461,-2.1958],[102.4739,-2.1987],[102.5009,-2.2002],[102.5096,-2.1972],[102.5169,-2.1998],[102.5336,-2.2029],[102.5574,-2.2065],[102.5746,-2.2023],[102.589,-2.1955],[102.6076,-2.176],[102.6149,-2.1604],[102.6255,-2.1509],[102.6308,-2.1478],[102.6273,-2.1312],[102.624,-2.119],[102.6243,-2.1163],[102.6142,-2.102],[102.6037,-2.1028],[102.5892,-2.1027],[102.5778,-2.0995],[102.5574,-2.0818],[102.5402,-2.062],[102.5286,-2.0471],[102.5187,-2.0391],[102.509,-2.0337],[102.4998,-2.0216],[102.4941,-2.0182],[102.4877,-2.0112],[102.4914,-2.006],[102.4864,-1.9976],[102.4882,-1.9834],[102.4831,-1.9776],[102.4748,-1.9739],[102.4702,-1.9525],[102.4658,-1.9452],[102.4597,-1.915],[102.4595,-1.8973]]}},{"type":"Feature","properties":{"mhid":"1332:93","alt_name":"KABUPATEN SAROLANGUN","latitude":-2.3,"longitude":102.65,"sample_value":632},"geometry":{"type":"LineString","coordinates":[[103.2221,-2.1418],[103.2222,-2.1314],[103.2195,-2.122],[103.2203,-2.1158],[103.216,-2.1028],[103.2157,-2.0942],[103.2113,-2.0811],[103.2011,-2.0614],[103.199,-2.0604],[103.174,-2.0384],[103.1635,-2.0248],[103.1605,-2.0172],[103.1595,-1.997],[103.1607,-1.9814],[103.1637,-1.9762],[103.1763,-1.9637],[103.1843,-1.9566],[103.1956,-1.9438],[103.1953,-1.9376],[103.1786,-1.9449],[103.1642,-1.9535],[103.1565,-1.9558],[103.1328,-1.9562],[103.1233,-1.9577],[103.1013,-1.9556],[103.0904,-1.9563],[103.079,-1.9539],[103.0742,-1.9508],[103.064,-1.9406],[103.0514,-1.9375],[103.0418,-1.9376],[103.0307,-1.9403],[103.0258,-1.9426],[103.0195,-1.9413],[103.0145,-1.9462],[103.0019,-1.9498],[102.981,-1.9433],[102.9794,-1.9434],[102.9649,-1.9552],[102.9612,-1.9645],[102.9463,-1.9825],[102.9399,-1.9858],[102.9306,-1.9854],[102.9285,-1.9822],[102.9194,-1.9836],[102.9144,-1.9822],[102.9118,-1.9848],[102.9097,-2.0013],[102.9012,-2.0057],[102.8856,-2.005],[102.8772,-2.0073],[102.871,-2.0063],[102.8582,-2.0094],[102.8429,-2.0024],[102.8223,-2.0014],[102.8114,-1.9925],[102.8135,-1.9825],[102.8158,-1.9767],[102.8195,-1.9739],[102.8206,-1.9691],[102.8181,-1.9604],[102.8176,-1.952],[102.8146,-1.949],[102.8017,-1.9544],[102.7966,-1.955],[102.7773,-1.9473],[102.7699,-1.9492],[102.761,-1.9501],[102.7504,-1.9543],[102.7446,-1.9509],[102.7364,-1.9488],[102.7275,-1.9517],[102.7208,-1.9571],[102.7153,-1.9598],[102.7064,-1.9564],[102.7052,-1.9518],[102.6967,-1.9451],[102.687,-1.941],[102.6796,-1.9395],[102.6741,-1.9344],[102.6523,-1.9246],[102.6461,-1.9233],[102.6404,-1.9249],[102.6077,-1.9129],[102.5996,-1.9109],[102.5903,-1.9102],[102.5676,-1.9166],[102.5569,-1.9162],[102.5403,-1.9087],[102.5323,-1.9094],[102.5228,-1.9149],[102.5174,-1.9156],[102.5097,-1.9119],[102.497,-1.9045],[102.465,-1.8945],[102.4595,-1.8973],[102.4597,-1.915],[102.4658,-1.9452],[102.4702,-1.9525],[102.4748,-1.9739],[102.4831,-1.9776],[102.4882,-1.9834],[102.4864,-1.9976],[102.4914,-2.006],[102.4877,-2.0112],[102.4941,-2.0182],[102.4998,-2.0216],[102.509,-2.0337],[102.5187,-2.0391],[102.5286,-2.0471],[102.5402,-2.062],[102.5574,-2.0818],[102.5778,-2.0995],[102.5892,-2.1027],[102.6037,-2.1028],[102.6142,-2.102],[102.6243,-2.1163],[102.624,-2.119],[102.6273,-2.1312],[102.6308,-2.1478],[102.6255,-2.1509],[102.6149,-2.1604],[102.6076,-2.176],[102.589,-2.1955],[102.5746,-2.2023],[102.5574,-2.2065],[102.5336,-2.2029],[102.5169,-2.1998],[102.5096,-2.1972],[102.5009,-2.2002],[102.4739,-2.1987],[102.461,-2.1958],[102.4502,-2.2239],[102.4369,-2.2445],[102.4241,-2.247],[102.4038,-2.3137],[102.3952,-2.3222],[102.3927,-2.3311],[102.3737,-2.3491],[102.3737,-2.3559],[102.3701,-2.3602],[102.3655,-2.3621],[102.3666,-2.3664],[102.3617,-2.3719],[102.3522,-2.3794],[102.335,-2.3829],[102.3313,-2.3823],[102.3255,-2.3843],[102.3121,-2.3851],[102.3035,-2.3871],[102.3011,-2.3862],[102.2953,-2.3721],[102.2967,-2.3672],[102.2946,-2.3611],[102.2957,-2.3566],[102.2938,-2.3508],[102.287,-2.3518],[102.2722,-2.3567],[102.2641,-2.3654],[102.2572,-2.3646],[102.224,-2.3948],[102.219,-2.3981],[102.2129,-2.397],[102.2046,-2.4003],[102.192,-2.4081],[102.1829,-2.4102],[102.1711,-2.4108],[102.1295,-2.4113],[102.1232,-2.4162],[102.1222,-2.4274],[102.1306,-2.4418],[102.1353,-2.4536],[102.1427,-2.4684],[102.1485,-2.4763],[102.1529,-2.4883],[102.1528,-2.496],[102.1565,-2.5086],[102.1408,-2.5203],[102.117,-2.5423],[102.0939,-2.5649],[102.0956,-2.5812],[102.1044,-2.5988],[102.1017,-2.6035],[102.0937,-2.6075],[102.0856,-2.6094],[102.0693,-2.6172],[102.0635,-2.622],[102.0631,-2.6243],[102.0694,-2.6367],[102.0737,-2.6433],[102.0781,-2.6472],[102.0832,-2.655],[102.0834,-2.6756],[102.0848,-2.6847],[102.0875,-2.6887],[102.0865,-2.6935],[102.0802,-2.7002],[102.0775,-2.7061],[102.0818,-2.7211],[102.0824,-2.7261],[102.0803,-2.7295],[102.0768,-2.742],[102.0771,-2.75],[102.0752,-2.7656],[102.0867,-2.7701],[102.0915,-2.7699],[102.0985,-2.765],[102.1006,-2.757],[102.1035,-2.755],[102.1064,-2.7475],[102.1097,-2.7462],[102.1111,-2.7412],[102.1162,-2.7358],[102.1229,-2.7338],[102.1257,-2.7293],[102.1338,-2.7279],[102.1448,-2.7214],[102.1498,-2.7203],[102.1577,-2.7161],[102.1656,-2.7141],[102.172,-2.7085],[102.1794,-2.7063],[102.1862,-2.7085],[102.205,-2.703],[102.2119,-2.6987],[102.2219,-2.698],[102.2363,-2.6884],[102.2372,-2.6734],[102.2425,-2.6698],[102.2417,-2.6615],[102.2452,-2.6497],[102.2477,-2.6476],[102.2455,-2.6426],[102.2497,-2.6396],[102.251,-2.6312],[102.2592,-2.6211],[102.2765,-2.6139],[102.2807,-2.6144],[102.2883,-2.6244],[102.2963,-2.6325],[102.3106,-2.6437],[102.3247,-2.654],[102.3347,-2.6552],[102.3432,-2.6501],[102.3531,-2.6462],[102.3602,-2.6506],[102.3694,-2.6513],[102.3872,-2.647],[102.3923,-2.6534],[102.3923,-2.6592],[102.3899,-2.6639],[102.3888,-2.6737],[102.3915,-2.6783],[102.3997,-2.6831],[102.4062,-2.6891],[102.4118,-2.6877],[102.4193,-2.6916],[102.4386,-2.691],[102.447,-2.6978],[102.4546,-2.7],[102.4612,-2.7002],[102.4714,-2.7041],[102.4799,-2.701],[102.4877,-2.7059],[102.4924,-2.7034],[102.4953,-2.6988],[102.5052,-2.6961],[102.5148,-2.6845],[102.5189,-2.6765],[102.5256,-2.6793],[102.5379,-2.6795],[102.5482,-2.6774],[102.5651,-2.6767],[102.5715,-2.6741],[102.5846,-2.6786],[102.5905,-2.6796],[102.602,-2.6754],[102.6126,-2.6661],[102.6165,-2.6606],[102.6214,-2.6492],[102.6244,-2.6383],[102.6284,-2.6304],[102.6406,-2.611],[102.6442,-2.6095],[102.6489,-2.6114],[102.6662,-2.6097],[102.6688,-2.6065],[102.6776,-2.6033],[102.6846,-2.5927],[102.6928,-2.5892],[102.6968,-2.5841],[102.7014,-2.5835],[102.704,-2.5878],[102.7097,-2.583],[102.7125,-2.5774],[102.7122,-2.5733],[102.7159,-2.5704],[102.7224,-2.5846],[102.7283,-2.5861],[102.7393,-2.578],[102.7397,-2.5715],[102.7449,-2.5626],[102.75,-2.5615],[102.7555,-2.5575],[102.7599,-2.5499],[102.7736,-2.543],[102.7806,-2.541],[102.7837,-2.5368],[102.7962,-2.5332],[102.7977,-2.5181],[102.7935,-2.5047],[102.8066,-2.4883],[102.8181,-2.4713],[102.8241,-2.4667],[102.826,-2.459],[102.835,-2.4558],[102.8412,-2.4502],[102.8445,-2.4448],[102.8451,-2.4377],[102.8521,-2.4332],[102.8552,-2.4289],[102.8621,-2.4233],[102.8656,-2.4168],[102.8754,-2.4098],[102.8695,-2.3952],[102.8722,-2.3869],[102.8605,-2.3873],[102.8508,-2.3866],[102.8478,-2.3842],[102.8471,-2.3744],[102.8422,-2.3705],[102.8396,-2.3588],[102.8399,-2.3558],[102.8449,-2.3462],[102.8415,-2.3423],[102.8406,-2.3379],[102.8452,-2.3346],[102.8519,-2.3355],[102.8598,-2.3304],[102.8644,-2.3246],[102.8667,-2.318],[102.8743,-2.3134],[102.8769,-2.3045],[102.8854,-2.308],[102.892,-2.3142],[102.8974,-2.3151],[102.905,-2.3118],[102.9089,-2.3117],[102.9124,-2.3156],[102.917,-2.3166],[102.9231,-2.3235],[102.9264,-2.324],[102.9348,-2.322],[102.9455,-2.3269],[102.9515,-2.3264],[102.9597,-2.3296],[102.9681,-2.3295],[102.9756,-2.3326],[102.9846,-2.3388],[102.9929,-2.3406],[103.0001,-2.3404],[103.004,-2.3361],[103.0174,-2.3362],[103.0242,-2.34],[103.0342,-2.3393],[103.0362,-2.3319],[103.0323,-2.3239],[103.0333,-2.3203],[103.04,-2.3137],[103.0438,-2.3117],[103.0502,-2.3139],[103.0559,-2.3131],[103.0583,-2.3183],[103.0643,-2.3238],[103.0681,-2.3308],[103.0749,-2.331],[103.0791,-2.3329],[103.0849,-2.3316],[103.0875,-2.3332],[103.0886,-2.3397],[103.0925,-2.3445],[103.104,-2.3453],[103.1117,-2.3441],[103.1152,-2.3461],[103.1185,-2.3527],[103.1236,-2.3574],[103.127,-2.3579],[103.1359,-2.3559],[103.1436,-2.3608],[103.1477,-2.3516],[103.1514,-2.3465],[103.1665,-2.3363],[103.1697,-2.3332],[103.1822,-2.3295],[103.1974,-2.3195],[103.2061,-2.3168],[103.2125,-2.3171],[103.2119,-2.3117],[103.2082,-2.3098],[103.2064,-2.3047],[103.2047,-2.2918],[103.2066,-2.2871],[103.2067,-2.2775],[103.195,-2.2561],[103.1915,-2.2531],[103.1798,-2.2496],[103.1796,-2.2391],[103.1807,-2.2293],[103.1829,-2.2218],[103.1788,-2.2084],[103.1816,-2.1924],[103.1815,-2.1788],[103.1852,-2.1661],[103.1899,-2.1582],[103.1986,-2.1487],[103.2092,-2.1415],[103.2221,-2.1418]]}},{"type":"Feature","properties":{"mhid":"1332:94","alt_name":"KABUPATEN BATANG HARI","latitude":-1.75,"longitude":103.11667,"sample_value":419},"geometry":{"type":"LineString","coordinates":[[103.4587,-2.1811],[103.4479,-2.1779],[103.447,-2.1741],[103.4466,-2.1334],[103.4465,-2.0623],[103.4418,-2.0658],[103.4414,-2.0585],[103.3916,-2.0586],[103.3749,-2.0559],[103.3746,-2.0523],[103.3694,-2.0508],[103.3695,-2.0019],[103.3328,-2.0017],[103.3327,-1.9916],[103.3349,-1.9654],[103.3143,-1.9654],[103.3146,-1.8685],[103.3955,-1.8687],[103.3981,-1.8653],[103.3977,-1.8554],[103.3987,-1.8491],[103.3982,-1.834],[103.3998,-1.8262],[103.4043,-1.8227],[103.4151,-1.8175],[103.4277,-1.8137],[103.43,-1.8101],[103.4239,-1.7924],[103.4223,-1.7861],[103.4172,-1.7784],[103.4012,-1.7668],[103.396,-1.7576],[103.3985,-1.7386],[103.4009,-1.7324],[103.4003,-1.727],[103.3969,-1.7201],[103.3979,-1.713],[103.4119,-1.7009],[103.4132,-1.695],[103.4185,-1.6855],[103.4177,-1.6743],[103.4191,-1.6672],[103.4188,-1.6614],[103.4163,-1.6585],[103.4165,-1.651],[103.4148,-1.644],[103.3863,-1.6443],[103.3881,-1.632],[103.4144,-1.6322],[103.4243,-1.6215],[103.4194,-1.6169],[103.4174,-1.6099],[103.4206,-1.6055],[103.4289,-1.603],[103.4342,-1.6027],[103.439,-1.5988],[103.4458,-1.6007],[103.4496,-1.5988],[103.4486,-1.5942],[103.4521,-1.5922],[103.4553,-1.5861],[103.4515,-1.5828],[103.452,-1.5778],[103.4478,-1.5684],[103.4532,-1.5649],[103.4664,-1.5331],[103.4647,-1.5241],[103.4567,-1.5157],[103.4568,-1.508],[103.4595,-1.4999],[103.4592,-1.4918],[103.4521,-1.4895],[103.4584,-1.4799],[103.4625,-1.4765],[103.4687,-1.4749],[103.4681,-1.4714],[103.4595,-1.4715],[103.4531,-1.4678],[103.4457,-1.4696],[103.4432,-1.4734],[103.4302,-1.4677],[103.4247,-1.4749],[103.4157,-1.4759],[103.4106,-1.4727],[103.4011,-1.4725],[103.3955,-1.4748],[103.3911,-1.4819],[103.3881,-1.4829],[103.3829,-1.4805],[103.3809,-1.4734],[103.3757,-1.4651],[103.3723,-1.4638],[103.3653,-1.4503],[103.3605,-1.4482],[103.3538,-1.443],[103.3542,-1.4359],[103.3458,-1.4138],[103.3474,-1.4022],[103.3426,-1.3981],[103.3419,-1.3886],[103.3373,-1.3826],[103.3399,-1.3767],[103.3383,-1.371],[103.3329,-1.366],[103.3236,-1.3662],[103.32,-1.3685],[103.3142,-1.365],[103.3125,-1.3586],[103.309,-1.3539],[103.3044,-1.3517],[103.2951,-1.3498],[103.2902,-1.3522],[103.2764,-1.3542],[103.2604,-1.3539],[103.2582,-1.3558],[103.2537,-1.3743],[103.2501,-1.3823],[103.2512,-1.3885],[103.2598,-1.3977],[103.2656,-1.399],[103.2653,-1.406],[103.2584,-1.4087],[103.2539,-1.4084],[103.25,-1.4046],[103.2433,-1.3946],[103.233,-1.3889],[103.2189,-1.3794],[103.2158,-1.3758],[103.216,-1.365],[103.2054,-1.3555],[103.1948,-1.3672],[103.1806,-1.375],[103.1725,-1.381],[103.1689,-1.3861],[103.166,-1.3863],[103.156,-1.3765],[103.1507,-1.375],[103.1462,-1.3684],[103.141,-1.3741],[103.137,-1.3805],[103.128,-1.3892],[103.1218,-1.3902],[103.1191,-1.3929],[103.1195,-1.3975],[103.1161,-1.3998],[103.079,-1.393],[103.0654,-1.3884],[103.0598,-1.3897],[103.0637,-1.3953],[103.07,-1.3987],[103.071,-1.404],[103.0659,-1.4094],[103.0542,-1.4126],[103.0519,-1.4157],[103.0537,-1.4226],[103.0514,-1.4283],[103.0513,-1.4332],[103.0475,-1.436],[103.0435,-1.4508],[103.0353,-1.4519],[103.0317,-1.4477],[103.0306,-1.4391],[103.0283,-1.4369],[103.0212,-1.4363],[103.0118,-1.4393],[103.0102,-1.4348],[103,-1.4325],[102.9935,-1.4283],[102.9883,-1.4232],[102.9816,-1.4213],[102.972,-1.4236],[102.9614,-1.4202],[102.9543,-1.4105],[102.9462,-1.4059],[102.9417,-1.4019],[102.9324,-1.3906],[102.926,-1.3863],[102.9211,-1.3814],[102.9076,-1.3798],[102.901,-1.3776],[102.893,-1.3697],[102.8855,-1.3692],[102.8675,-1.3709],[102.8677,-1.3768],[102.8575,-1.3801],[102.8607,-1.3854],[102.8565,-1.389],[102.8475,-1.3854],[102.8448,-1.386],[102.8387,-1.3944],[102.8324,-1.3978],[102.8263,-1.3948],[102.8224,-1.3965],[102.8226,-1.4181],[102.8206,-1.4213],[102.8136,-1.4232],[102.8121,-1.4259],[102.8151,-1.4345],[102.8174,-1.4451],[102.8248,-1.4526],[102.8229,-1.4676],[102.8236,-1.4844],[102.8231,-1.4988],[102.8166,-1.5123],[102.8125,-1.523],[102.8049,-1.5337],[102.8023,-1.5395],[102.8023,-1.5565],[102.8039,-1.5605],[102.8053,-1.5785],[102.8047,-1.5806],[102.7832,-1.6194],[102.7834,-1.6281],[102.779,-1.6371],[102.7711,-1.6415],[102.7584,-1.6664],[102.7458,-1.6801],[102.7466,-1.6852],[102.7419,-1.692],[102.7306,-1.691],[102.732,-1.6956],[102.7274,-1.7037],[102.7186,-1.7023],[102.7161,-1.7057],[102.7088,-1.7036],[102.7061,-1.7062],[102.7125,-1.7131],[102.7074,-1.7227],[102.6985,-1.7219],[102.6919,-1.7368],[102.687,-1.745],[102.688,-1.7666],[102.687,-1.7739],[102.6848,-1.7789],[102.678,-1.7876],[102.6688,-1.7967],[102.6639,-1.8128],[102.6585,-1.8206],[102.6521,-1.8251],[102.6381,-1.8321],[102.6271,-1.8432],[102.6155,-1.8603],[102.5975,-1.876],[102.5851,-1.8816],[102.5724,-1.882],[102.5634,-1.8806],[102.5521,-1.8744],[102.5377,-1.8638],[102.5255,-1.8584],[102.5207,-1.8573],[102.5099,-1.8662],[102.5081,-1.871],[102.5099,-1.8903],[102.5085,-1.8922],[102.5085,-1.9054],[102.5097,-1.9119],[102.5174,-1.9156],[102.5228,-1.9149],[102.5323,-1.9094],[102.5403,-1.9087],[102.5569,-1.9162],[102.5676,-1.9166],[102.5903,-1.9102],[102.5996,-1.9109],[102.6077,-1.9129],[102.6404,-1.9249],[102.6461,-1.9233],[102.6523,-1.9246],[102.6741,-1.9344],[102.6796,-1.9395],[102.687,-1.941],[102.6967,-1.9451],[102.7052,-1.9518],[102.7064,-1.9564],[102.7153,-1.9598],[102.7208,-1.9571],[102.7275,-1.9517],[102.7364,-1.9488],[102.7446,-1.9509],[102.7504,-1.9543],[102.761,-1.9501],[102.7699,-1.9492],[102.7773,-1.9473],[102.7966,-1.955],[102.8017,-1.9544],[102.8146,-1.949],[102.8176,-1.952],[102.8181,-1.9604],[102.8206,-1.9691],[102.8195,-1.9739],[102.8158,-1.9767],[102.8135,-1.9825],[102.8114,-1.9925],[102.8223,-2.0014],[102.8429,-2.0024],[102.8582,-2.0094],[102.871,-2.0063],[102.8772,-2.0073],[102.8856,-2.005],[102.9012,-2.0057],[102.9097,-2.0013],[102.9118,-1.9848],[102.9144,-1.9822],[102.9194,-1.9836],[102.9285,-1.9822],[102.9306,-1.9854],[102.9399,-1.9858],[102.9463,-1.9825],[102.9612,-1.9645],[102.9649,-1.9552],[102.9794,-1.9434],[102.981,-1.9433],[103.0019,-1.9498],[103.0145,-1.9462],[103.0195,-1.9413],[103.0258,-1.9426],[103.0307,-1.9403],[103.0418,-1.9376],[103.0514,-1.9375],[103.064,-1.9406],[103.0742,-1.9508],[103.079,-1.9539],[103.0904,-1.9563],[103.1013,-1.9556],[103.1233,-1.9577],[103.1328,-1.9562],[103.1565,-1.9558],[103.1642,-1.9535],[103.1786,-1.9449],[103.1953,-1.9376],[103.1956,-1.9438],[103.1843,-1.9566],[103.1763,-1.9637],[103.1637,-1.9762],[103.1607,-1.9814],[103.1595,-1.997],[103.1605,-2.0172],[103.1635,-2.0248],[103.174,-2.0384],[103.199,-2.0604],[103.2011,-2.0614],[103.2113,-2.0811],[103.2157,-2.0942],[103.216,-2.1028],[103.2203,-2.1158],[103.2195,-2.122],[103.2222,-2.1314],[103.2221,-2.1418],[103.238,-2.1418],[103.2465,-2.1375],[103.25,-2.1378],[103.2527,-2.132],[103.2573,-2.1328],[103.26,-2.1388],[103.2598,-2.1512],[103.2614,-2.1558],[103.2657,-2.1554],[103.2721,-2.1575],[103.2757,-2.1641],[103.2787,-2.165],[103.2872,-2.1789],[103.2919,-2.1777],[103.2951,-2.1844],[103.2938,-2.1885],[103.2948,-2.2003],[103.2975,-2.2063],[103.3068,-2.2158],[103.3139,-2.2188],[103.3216,-2.22],[103.3272,-2.2236],[103.3315,-2.2361],[103.3354,-2.2403],[103.3372,-2.2494],[103.3424,-2.2543],[103.3478,-2.2655],[103.3546,-2.2712],[103.3558,-2.2747],[103.3631,-2.2785],[103.3669,-2.2842],[103.377,-2.2833],[103.381,-2.2851],[103.3822,-2.2899],[103.3879,-2.2963],[103.3923,-2.2952],[103.3949,-2.3039],[103.3992,-2.3041],[103.3995,-2.31],[103.4029,-2.3159],[103.4072,-2.317],[103.4113,-2.3216],[103.412,-2.3255],[103.4096,-2.3309],[103.4116,-2.3347],[103.4188,-2.3341],[103.4215,-2.336],[103.43,-2.3351],[103.4328,-2.3366],[103.4364,-2.3436],[103.4436,-2.3543],[103.4474,-2.3564],[103.4494,-2.3517],[103.4467,-2.3475],[103.4506,-2.343],[103.4486,-2.339],[103.4506,-2.3359],[103.4522,-2.3258],[103.4469,-2.3154],[103.4471,-2.3114],[103.4507,-2.3088],[103.4532,-2.3014],[103.4598,-2.2978],[103.4604,-2.2938],[103.4593,-2.2836],[103.4611,-2.2794],[103.4589,-2.2731],[103.4633,-2.2676],[103.4656,-2.2574],[103.4659,-2.2556],[103.4642,-2.2483],[103.4605,-2.2435],[103.4614,-2.2387],[103.4602,-2.2272],[103.4586,-2.2253],[103.4528,-2.2156],[103.4518,-2.2114],[103.4529,-2.2011],[103.453,-2.2006],[103.4535,-2.1942],[103.4579,-2.1886],[103.4588,-2.1812],[103.4587,-2.1811]]}},{"type":"Feature","properties":{"mhid":"1332:95","alt_name":"KABUPATEN MUARO JAMBI","latitude":-1.55214,"longitude":103.82163,"sample_value":437},"geometry":{"type":"MultiLineString","coordinates":[[[104.3585,-1.6429],[104.3455,-1.6357],[104.3324,-1.6262],[104.3209,-1.6167],[104.3121,-1.6073],[104.3056,-1.5934],[104.3013,-1.58],[104.2973,-1.571],[104.2904,-1.5649],[104.2841,-1.5613],[104.2604,-1.5543],[104.2538,-1.549],[104.2481,-1.5406],[104.2124,-1.4963],[104.206,-1.4898],[104.2013,-1.4833],[104.1971,-1.4749],[104.187,-1.4625],[104.1788,-1.455],[104.1709,-1.4463],[104.1643,-1.4357],[104.1623,-1.4303],[104.1471,-1.4076],[104.1228,-1.3633],[104.1176,-1.3524],[104.1111,-1.3416],[104.0949,-1.3231],[104.075,-1.3053],[104.0728,-1.3027],[104.0686,-1.3084],[104.057,-1.3106],[104.0149,-1.315],[103.905,-1.327],[103.8775,-1.3303],[103.8379,-1.3346],[103.7971,-1.3421],[103.7674,-1.3482],[103.6871,-1.3633],[103.5846,-1.3825],[103.5848,-1.3447],[103.5832,-1.3375],[103.5789,-1.3309],[103.5596,-1.3309],[103.5557,-1.3249],[103.5568,-1.3121],[103.5522,-1.3122],[103.5522,-1.307],[103.5361,-1.3066],[103.5362,-1.3149],[103.5113,-1.3153],[103.5113,-1.3211],[103.485,-1.3197],[103.4567,-1.319],[103.4417,-1.3054],[103.4339,-1.2975],[103.4205,-1.288],[103.4034,-1.2734],[103.393,-1.2663],[103.3567,-1.2661],[103.3463,-1.2657],[103.3469,-1.2288],[103.2727,-1.2297],[103.2605,-1.2313],[103.2621,-1.257],[103.2639,-1.3109],[103.263,-1.3161],[103.2602,-1.3181],[103.2622,-1.3325],[103.2562,-1.3368],[103.2527,-1.343],[103.2529,-1.354],[103.2467,-1.3611],[103.2364,-1.3638],[103.2326,-1.3578],[103.2317,-1.3431],[103.2204,-1.3442],[103.2054,-1.3555],[103.216,-1.365],[103.2158,-1.3758],[103.2189,-1.3794],[103.233,-1.3889],[103.2433,-1.3946],[103.25,-1.4046],[103.2539,-1.4084],[103.2584,-1.4087],[103.2653,-1.406],[103.2656,-1.399],[103.2598,-1.3977],[103.2512,-1.3885],[103.2501,-1.3823],[103.2537,-1.3743],[103.2582,-1.3558],[103.2604,-1.3539],[103.2764,-1.3542],[103.2902,-1.3522],[103.2951,-1.3498],[103.3044,-1.3517],[103.309,-1.3539],[103.3125,-1.3586],[103.3142,-1.365],[103.32,-1.3685],[103.3236,-1.3662],[103.3329,-1.366],[103.3383,-1.371],[103.3399,-1.3767],[103.3373,-1.3826],[103.3419,-1.3886],[103.3426,-1.3981],[103.3474,-1.4022],[103.3458,-1.4138],[103.3542,-1.4359],[103.3538,-1.443],[103.3605,-1.4482],[103.3653,-1.4503],[103.3723,-1.4638],[103.3757,-1.4651],[103.3809,-1.4734],[103.3829,-1.4805],[103.3881,-1.4829],[103.3911,-1.4819],[103.3955,-1.4748],[103.4011,-1.4725],[103.4106,-1.4727],[103.4157,-1.4759],[103.4247,-1.4749],[103.4302,-1.4677],[103.4432,-1.4734],[103.4457,-1.4696],[103.4531,-1.4678],[103.4595,-1.4715],[103.4681,-1.4714],[103.4687,-1.4749],[103.4625,-1.4765],[103.4584,-1.4799],[103.4521,-1.4895],[103.4592,-1.4918],[103.4595,-1.4999],[103.4568,-1.508],[103.4567,-1.5157],[103.4647,-1.5241],[103.4664,-1.5331],[103.4532,-1.5649],[103.4478,-1.5684],[103.452,-1.5778],[103.4515,-1.5828],[103.4553,-1.5861],[103.4521,-1.5922],[103.4486,-1.5942],[103.4496,-1.5988],[103.4458,-1.6007],[103.439,-1.5988],[103.4342,-1.6027],[103.4289,-1.603],[103.4206,-1.6055],[103.4174,-1.6099],[103.4194,-1.6169],[103.4243,-1.6215],[103.4144,-1.6322],[103.3881,-1.632],[103.3863,-1.6443],[103.4148,-1.644],[103.4165,-1.651],[103.4163,-1.6585],[103.4188,-1.6614],[103.4191,-1.6672],[103.4177,-1.6743],[103.4185,-1.6855],[103.4132,-1.695],[103.4119,-1.7009],[103.3979,-1.713],[103.3969,-1.7201],[103.4003,-1.727],[103.4009,-1.7324],[103.3985,-1.7386],[103.396,-1.7576],[103.4012,-1.7668],[103.4172,-1.7784],[103.4223,-1.7861],[103.4239,-1.7924],[103.43,-1.8101],[103.4277,-1.8137],[103.4151,-1.8175],[103.4043,-1.8227],[103.3998,-1.8262],[103.3982,-1.834],[103.3987,-1.8491],[103.3977,-1.8554],[103.3981,-1.8653],[103.3955,-1.8687],[103.3146,-1.8685],[103.3143,-1.9654],[103.3349,-1.9654],[103.3327,-1.9916],[103.3328,-2.0017],[103.3695,-2.0019],[103.3694,-2.0508],[103.3746,-2.0523],[103.3749,-2.0559],[103.3916,-2.0586],[103.4414,-2.0585],[103.4418,-2.0658],[103.4465,-2.0623],[103.4466,-2.1334],[103.447,-2.1741],[103.4479,-2.1779],[103.4587,-2.1811],[103.4607,-2.1749],[103.4642,-2.1743],[103.4734,-2.1744],[103.4887,-2.1775],[103.4987,-2.1773],[103.5077,-2.1721],[103.5163,-2.169],[103.5275,-2.167],[103.5383,-2.1592],[103.5439,-2.1506],[103.5471,-2.1477],[103.5543,-2.1457],[103.5593,-2.1413],[103.5489,-2.1379],[103.5407,-2.1328],[103.5359,-2.1267],[103.5309,-2.1254],[103.5275,-2.1184],[103.5209,-2.1103],[103.5171,-2.1036],[103.5189,-2.0987],[103.5155,-2.0904],[103.5141,-2.0837],[103.5191,-2.0754],[103.5209,-2.0692],[103.5321,-2.0634],[103.5336,-2.0557],[103.5384,-2.0492],[103.5461,-2.0499],[103.5516,-2.0484],[103.5542,-2.0419],[103.5572,-2.0115],[103.5602,-2],[103.5475,-1.9868],[103.5181,-1.9662],[103.5096,-1.9624],[103.5099,-1.9556],[103.5141,-1.9456],[103.5159,-1.9351],[103.5176,-1.9183],[103.5197,-1.9087],[103.5225,-1.9068],[103.5245,-1.9007],[103.5376,-1.8886],[103.5488,-1.8814],[103.5572,-1.8787],[103.5635,-1.8741],[103.58,-1.8677],[103.5997,-1.8548],[103.6071,-1.8487],[103.609,-1.8506],[103.6256,-1.8435],[103.6377,-1.8509],[103.6413,-1.8502],[103.6452,-1.8458],[103.6572,-1.8458],[103.6605,-1.849],[103.6643,-1.849],[103.6878,-1.8426],[103.757,-1.8253],[103.7549,-1.8196],[103.7661,-1.816],[103.7771,-1.8203],[103.8909,-1.7925],[103.9582,-1.7757],[104.0059,-1.7627],[104.0558,-1.7501],[104.1527,-1.7249],[104.2188,-1.7072],[104.2786,-1.6921],[104.3028,-1.6856],[104.3423,-1.6756],[104.3466,-1.6683],[104.3549,-1.6623],[104.3546,-1.6593],[104.3598,-1.6559],[104.3585,-1.6429]],[[103.5408,-1.6281],[103.5468,-1.6166],[103.5488,-1.6092],[103.5369,-1.5894],[103.5433,-1.5898],[103.5458,-1.5864],[103.5439,-1.5793],[103.5443,-1.5744],[103.5482,-1.5669],[103.5523,-1.5653],[103.5578,-1.5668],[103.5663,-1.5737],[103.5929,-1.5529],[103.5959,-1.5521],[103.603,-1.5466],[103.6158,-1.5471],[103.6216,-1.551],[103.6268,-1.55],[103.6486,-1.55],[103.6534,-1.5529],[103.6547,-1.5614],[103.6516,-1.5679],[103.6513,-1.584],[103.6569,-1.5967],[103.6547,-1.6013],[103.6563,-1.6101],[103.6641,-1.6059],[103.6775,-1.6129],[103.6806,-1.6181],[103.6766,-1.6216],[103.6747,-1.629],[103.6692,-1.6328],[103.6701,-1.6405],[103.6659,-1.6399],[103.6586,-1.6441],[103.6602,-1.6498],[103.6549,-1.6517],[103.654,-1.6558],[103.6497,-1.6572],[103.6439,-1.6552],[103.6279,-1.6564],[103.6267,-1.6644],[103.6138,-1.6564],[103.608,-1.6596],[103.6129,-1.666],[103.6262,-1.6722],[103.6272,-1.6764],[103.6309,-1.6764],[103.6208,-1.6912],[103.6166,-1.6889],[103.6144,-1.6919],[103.6089,-1.6909],[103.5979,-1.6765],[103.5783,-1.6695],[103.5771,-1.6644],[103.5686,-1.6651],[103.5636,-1.6705],[103.5588,-1.6797],[103.5512,-1.6759],[103.5426,-1.6804],[103.5267,-1.6766],[103.5253,-1.6626],[103.5286,-1.6502],[103.539,-1.6456],[103.5408,-1.6281]],[[103.4067,-1.9714],[103.4068,-1.9831],[103.3874,-1.9828],[103.3875,-1.9817],[103.4065,-1.9829],[103.4067,-1.9714]]]}},{"type":"Feature","properties":{"mhid":"1332:96","alt_name":"KABUPATEN TANJUNG JABUNG TIMUR","latitude":-1.13198,"longitude":103.61755,"sample_value":766},"geometry":{"type":"LineString","coordinates":[[104.498,-1.6729],[104.4944,-1.6628],[104.488,-1.6574],[104.483,-1.6474],[104.4699,-1.6271],[104.4668,-1.6154],[104.4575,-1.5854],[104.4563,-1.5772],[104.4534,-1.5726],[104.4523,-1.5667],[104.4523,-1.551],[104.4483,-1.5368],[104.4426,-1.5211],[104.44,-1.5158],[104.4384,-1.4848],[104.4433,-1.458],[104.4499,-1.4338],[104.458,-1.4258],[104.4574,-1.403],[104.4503,-1.3875],[104.4552,-1.3629],[104.4561,-1.3333],[104.4394,-1.3128],[104.443,-1.3128],[104.4394,-1.3034],[104.4325,-1.294],[104.4222,-1.2783],[104.4009,-1.2381],[104.3928,-1.2166],[104.3897,-1.1983],[104.3926,-1.179],[104.4036,-1.1798],[104.4046,-1.1667],[104.4088,-1.159],[104.4055,-1.1402],[104.4061,-1.1265],[104.4005,-1.1012],[104.399,-1.0898],[104.3913,-1.0664],[104.3843,-1.051],[104.3701,-1.0267],[104.3641,-1.0188],[104.3596,-1.0179],[104.3561,-1.0273],[104.347,-1.0357],[104.3377,-1.043],[104.3277,-1.0443],[104.3258,-1.0411],[104.3194,-1.0438],[104.3128,-1.0438],[104.2992,-1.0482],[104.2876,-1.0478],[104.2803,-1.0428],[104.2716,-1.0436],[104.266,-1.0425],[104.25,-1.0331],[104.2142,-1.0337],[104.2051,-1.0315],[104.1927,-1.0356],[104.1803,-1.0363],[104.1728,-1.0501],[104.1597,-1.0481],[104.1502,-1.0488],[104.148,-1.0504],[104.1346,-1.0505],[104.1279,-1.0485],[104.1301,-1.0431],[104.1143,-1.0377],[104.1086,-1.0316],[104.0997,-1.029],[104.0852,-1.028],[104.0616,-1.0169],[104.0553,-1.0124],[104.0463,-1.0087],[104.0397,-1.0093],[104.0309,-1.0017],[104.0214,-0.9991],[103.9739,-0.9917],[103.966,-0.9914],[103.9608,-0.9929],[103.9563,-0.9962],[103.9519,-0.9925],[103.9409,-0.9907],[103.926,-0.9872],[103.9192,-0.9835],[103.9085,-0.9819],[103.9008,-0.9845],[103.8941,-0.9903],[103.8807,-0.9966],[103.8725,-0.9991],[103.8693,-0.9963],[103.8573,-1.0035],[103.8369,-1.0101],[103.8087,-1.0143],[103.809,-1.0086],[103.8055,-0.9969],[103.8033,-0.9944],[103.7919,-0.9914],[103.7813,-0.9922],[103.7771,-0.9915],[103.7565,-0.9916],[103.7491,-0.9923],[103.7504,-0.9848],[103.749,-0.9823],[103.7293,-0.9598],[103.7117,-0.9511],[103.7001,-0.9493],[103.6891,-0.9508],[103.6865,-0.9471],[103.6794,-0.9488],[103.6759,-0.9517],[103.6692,-0.9376],[103.6582,-0.9279],[103.6428,-0.9217],[103.6388,-0.9177],[103.63,-0.9138],[103.6267,-0.9092],[103.6059,-0.8911],[103.5977,-0.8829],[103.593,-0.876],[103.5884,-0.8729],[103.5827,-0.8778],[103.5795,-0.8741],[103.5741,-0.8752],[103.5682,-0.8818],[103.5675,-0.8877],[103.5687,-0.8942],[103.5641,-0.8957],[103.5611,-0.9025],[103.5615,-0.9103],[103.5672,-0.9134],[103.5645,-0.9161],[103.5603,-0.9159],[103.5632,-0.9299],[103.5598,-0.9377],[103.5656,-0.9396],[103.5651,-0.9425],[103.5584,-0.9415],[103.5564,-0.9521],[103.5512,-0.9534],[103.5509,-0.9567],[103.5571,-0.959],[103.5543,-0.9641],[103.5437,-0.9659],[103.5426,-0.972],[103.5496,-0.9769],[103.5479,-0.9792],[103.5419,-0.9794],[103.5348,-0.9849],[103.5371,-0.9883],[103.5351,-0.9932],[103.5239,-1.0026],[103.5205,-1.0004],[103.5142,-1.0015],[103.5147,-1.005],[103.5063,-1.0085],[103.4958,-1.0151],[103.4928,-1.0191],[103.4758,-1.0276],[103.47,-1.0336],[103.4657,-1.0405],[103.4587,-1.0458],[103.455,-1.0552],[103.4511,-1.061],[103.4451,-1.0646],[103.4411,-1.0693],[103.4394,-1.0795],[103.4349,-1.0884],[103.432,-1.1006],[103.4322,-1.1188],[103.4359,-1.1623],[103.4363,-1.1773],[103.4357,-1.1954],[103.4117,-1.2176],[103.4018,-1.2282],[103.3843,-1.2289],[103.3756,-1.2283],[103.3469,-1.2288],[103.3463,-1.2657],[103.3567,-1.2661],[103.393,-1.2663],[103.4034,-1.2734],[103.4205,-1.288],[103.4339,-1.2975],[103.4417,-1.3054],[103.4567,-1.319],[103.485,-1.3197],[103.5113,-1.3211],[103.5113,-1.3153],[103.5362,-1.3149],[103.5361,-1.3066],[103.5522,-1.307],[103.5522,-1.3122],[103.5568,-1.3121],[103.5557,-1.3249],[103.5596,-1.3309],[103.5789,-1.3309],[103.5832,-1.3375],[103.5848,-1.3447],[103.5846,-1.3825],[103.6871,-1.3633],[103.7674,-1.3482],[103.7971,-1.3421],[103.8379,-1.3346],[103.8775,-1.3303],[103.905,-1.327],[104.0149,-1.315],[104.057,-1.3106],[104.0686,-1.3084],[104.0728,-1.3027],[104.075,-1.3053],[104.0949,-1.3231],[104.1111,-1.3416],[104.1176,-1.3524],[104.1228,-1.3633],[104.1471,-1.4076],[104.1623,-1.4303],[104.1643,-1.4357],[104.1709,-1.4463],[104.1788,-1.455],[104.187,-1.4625],[104.1971,-1.4749],[104.2013,-1.4833],[104.206,-1.4898],[104.2124,-1.4963],[104.2481,-1.5406],[104.2538,-1.549],[104.2604,-1.5543],[104.2841,-1.5613],[104.2904,-1.5649],[104.2973,-1.571],[104.3013,-1.58],[104.3056,-1.5934],[104.3121,-1.6073],[104.3209,-1.6167],[104.3324,-1.6262],[104.3455,-1.6357],[104.3585,-1.6429],[104.3636,-1.6378],[104.3718,-1.6343],[104.3965,-1.6318],[104.4054,-1.6264],[104.4099,-1.6257],[104.4159,-1.6283],[104.4221,-1.6264],[104.4311,-1.6314],[104.4342,-1.6353],[104.442,-1.6362],[104.4503,-1.6328],[104.4527,-1.6332],[104.4604,-1.642],[104.471,-1.6453],[104.4728,-1.6545],[104.477,-1.6575],[104.4841,-1.656],[104.4871,-1.6605],[104.498,-1.6729]]}},{"type":"Feature","properties":{"mhid":"1332:97","alt_name":"KABUPATEN TANJUNG JABUNG BARAT","latitude":-1.1544,"longitude":103.24402,"sample_value":768},"geometry":{"type":"LineString","coordinates":[[103.5741,-0.8752],[103.5716,-0.8701],[103.5642,-0.8628],[103.5524,-0.857],[103.5559,-0.8546],[103.5591,-0.8442],[103.5576,-0.835],[103.5502,-0.814],[103.5461,-0.8084],[103.5418,-0.8068],[103.518,-0.8007],[103.4884,-0.7966],[103.4894,-0.7875],[103.489,-0.7767],[103.4868,-0.7644],[103.4773,-0.7476],[103.4632,-0.7356],[103.4557,-0.7333],[103.4469,-0.7341],[103.4424,-0.7396],[103.4421,-0.7439],[103.4455,-0.7509],[103.4423,-0.7672],[103.4397,-0.7712],[103.4249,-0.776],[103.4105,-0.7828],[103.3733,-0.7976],[103.3662,-0.7986],[103.3615,-0.8052],[103.3572,-0.8067],[103.3505,-0.8034],[103.348,-0.7955],[103.3452,-0.7929],[103.3212,-0.7882],[103.3056,-0.7845],[103.2945,-0.7826],[103.2648,-0.7764],[103.2528,-0.7729],[103.247,-0.7726],[103.2306,-0.7697],[103.1469,-0.7519],[103.1419,-0.7498],[103.1215,-0.7469],[103.1065,-0.7526],[103.0978,-0.7576],[103.0926,-0.7585],[103.0826,-0.7566],[103.0729,-0.757],[103.0487,-0.7547],[103.0397,-0.7555],[103.0122,-0.7553],[103.0036,-0.7629],[102.9965,-0.7727],[102.9723,-0.8082],[102.9616,-0.8209],[102.9488,-0.84],[102.9341,-0.8588],[102.9281,-0.8675],[102.9185,-0.8775],[102.9007,-0.894],[102.883,-0.9126],[102.8616,-0.9316],[102.8247,-0.9599],[102.8115,-0.9719],[102.79,-0.9941],[102.7834,-0.9985],[102.7754,-1.0089],[102.7737,-1.0138],[102.7811,-1.0198],[102.781,-1.0246],[102.7832,-1.0304],[102.7804,-1.0333],[102.7737,-1.0312],[102.7706,-1.034],[102.7605,-1.0275],[102.7559,-1.0328],[102.7599,-1.0389],[102.7566,-1.0456],[102.751,-1.0442],[102.7472,-1.0475],[102.7402,-1.048],[102.7332,-1.0541],[102.7329,-1.0597],[102.7349,-1.0697],[102.7332,-1.0757],[102.729,-1.0786],[102.717,-1.0743],[102.7097,-1.0825],[102.7054,-1.0819],[102.6949,-1.0849],[102.691,-1.0872],[102.685,-1.0859],[102.6853,-1.0953],[102.6797,-1.0945],[102.6747,-1.0964],[102.6724,-1.1025],[102.6716,-1.11],[102.6633,-1.114],[102.6541,-1.1158],[102.6496,-1.1185],[102.6501,-1.129],[102.6456,-1.1358],[102.6479,-1.1403],[102.6572,-1.1522],[102.6666,-1.1628],[102.6711,-1.173],[102.675,-1.1781],[102.6766,-1.1845],[102.6821,-1.188],[102.6857,-1.1948],[102.6839,-1.2057],[102.6882,-1.2165],[102.6883,-1.2211],[102.6934,-1.2254],[102.6963,-1.2342],[102.7,-1.2406],[102.7106,-1.2443],[102.7153,-1.2488],[102.7192,-1.2576],[102.7232,-1.261],[102.7273,-1.2616],[102.7392,-1.2598],[102.7463,-1.2629],[102.7538,-1.2683],[102.7613,-1.276],[102.7628,-1.2825],[102.7665,-1.2848],[102.7676,-1.29],[102.7661,-1.2942],[102.768,-1.2985],[102.7749,-1.3019],[102.78,-1.3077],[102.7821,-1.3167],[102.7897,-1.3334],[102.7909,-1.3421],[102.7981,-1.3567],[102.8056,-1.374],[102.8051,-1.379],[102.7992,-1.3839],[102.798,-1.3926],[102.8051,-1.4123],[102.8136,-1.4232],[102.8206,-1.4213],[102.8226,-1.4181],[102.8224,-1.3965],[102.8263,-1.3948],[102.8324,-1.3978],[102.8387,-1.3944],[102.8448,-1.386],[102.8475,-1.3854],[102.8565,-1.389],[102.8607,-1.3854],[102.8575,-1.3801],[102.8677,-1.3768],[102.8675,-1.3709],[102.8855,-1.3692],[102.893,-1.3697],[102.901,-1.3776],[102.9076,-1.3798],[102.9211,-1.3814],[102.926,-1.3863],[102.9324,-1.3906],[102.9417,-1.4019],[102.9462,-1.4059],[102.9543,-1.4105],[102.9614,-1.4202],[102.972,-1.4236],[102.9816,-1.4213],[102.9883,-1.4232],[102.9935,-1.4283],[103,-1.4325],[103.0102,-1.4348],[103.0118,-1.4393],[103.0212,-1.4363],[103.0283,-1.4369],[103.0306,-1.4391],[103.0317,-1.4477],[103.0353,-1.4519],[103.0435,-1.4508],[103.0475,-1.436],[103.0513,-1.4332],[103.0514,-1.4283],[103.0537,-1.4226],[103.0519,-1.4157],[103.0542,-1.4126],[103.0659,-1.4094],[103.071,-1.404],[103.07,-1.3987],[103.0637,-1.3953],[103.0598,-1.3897],[103.0654,-1.3884],[103.079,-1.393],[103.1161,-1.3998],[103.1195,-1.3975],[103.1191,-1.3929],[103.1218,-1.3902],[103.128,-1.3892],[103.137,-1.3805],[103.141,-1.3741],[103.1462,-1.3684],[103.1507,-1.375],[103.156,-1.3765],[103.166,-1.3863],[103.1689,-1.3861],[103.1725,-1.381],[103.1806,-1.375],[103.1948,-1.3672],[103.2054,-1.3555],[103.2204,-1.3442],[103.2317,-1.3431],[103.2326,-1.3578],[103.2364,-1.3638],[103.2467,-1.3611],[103.2529,-1.354],[103.2527,-1.343],[103.2562,-1.3368],[103.2622,-1.3325],[103.2602,-1.3181],[103.263,-1.3161],[103.2639,-1.3109],[103.2621,-1.257],[103.2605,-1.2313],[103.2727,-1.2297],[103.3469,-1.2288],[103.3756,-1.2283],[103.3843,-1.2289],[103.4018,-1.2282],[103.4117,-1.2176],[103.4357,-1.1954],[103.4363,-1.1773],[103.4359,-1.1623],[103.4322,-1.1188],[103.432,-1.1006],[103.4349,-1.0884],[103.4394,-1.0795],[103.4411,-1.0693],[103.4451,-1.0646],[103.4511,-1.061],[103.455,-1.0552],[103.4587,-1.0458],[103.4657,-1.0405],[103.47,-1.0336],[103.4758,-1.0276],[103.4928,-1.0191],[103.4958,-1.0151],[103.5063,-1.0085],[103.5147,-1.005],[103.5142,-1.0015],[103.5205,-1.0004],[103.5239,-1.0026],[103.5351,-0.9932],[103.5371,-0.9883],[103.5348,-0.9849],[103.5419,-0.9794],[103.5479,-0.9792],[103.5496,-0.9769],[103.5426,-0.972],[103.5437,-0.9659],[103.5543,-0.9641],[103.5571,-0.959],[103.5509,-0.9567],[103.5512,-0.9534],[103.5564,-0.9521],[103.5584,-0.9415],[103.5651,-0.9425],[103.5656,-0.9396],[103.5598,-0.9377],[103.5632,-0.9299],[103.5603,-0.9159],[103.5645,-0.9161],[103.5672,-0.9134],[103.5615,-0.9103],[103.5611,-0.9025],[103.5641,-0.8957],[103.5687,-0.8942],[103.5675,-0.8877],[103.5682,-0.8818],[103.5741,-0.8752]]}},{"type":"Feature","properties":{"mhid":"1332:98","alt_name":"KABUPATEN TEBO","latitude":-1.45576,"longitude":102.37473,"sample_value":113},"geometry":{"type":"LineString","coordinates":[[102.555,-1.09],[102.5504,-1.0904],[102.5494,-1.0856],[102.5434,-1.0828],[102.538,-1.087],[102.5278,-1.0854],[102.5247,-1.0825],[102.5172,-1.0796],[102.5127,-1.08],[102.4996,-1.0835],[102.4819,-1.0799],[102.4765,-1.0769],[102.4689,-1.0678],[102.4717,-1.0602],[102.4643,-1.0527],[102.4587,-1.0447],[102.4499,-1.0372],[102.4425,-1.0254],[102.4387,-1.0254],[102.4309,-1.0316],[102.4235,-1.0289],[102.4109,-1.0289],[102.4054,-1.0277],[102.3824,-1.0267],[102.3749,-1.0208],[102.3742,-1.0182],[102.3769,-1.0112],[102.3754,-1.0058],[102.3788,-1.0016],[102.3853,-0.9999],[102.3862,-0.9934],[102.3731,-0.9851],[102.3657,-0.9763],[102.3577,-0.9704],[102.3504,-0.9691],[102.3463,-0.9648],[102.3414,-0.9636],[102.3299,-0.9656],[102.3244,-0.9608],[102.3227,-0.9478],[102.3145,-0.9374],[102.3112,-0.9296],[102.3099,-0.9205],[102.3043,-0.917],[102.2903,-0.9164],[102.2752,-0.9179],[102.263,-0.9234],[102.2543,-0.9215],[102.2498,-0.9255],[102.2481,-0.9312],[102.243,-0.9335],[102.2356,-0.9311],[102.2298,-0.9387],[102.2167,-0.9464],[102.2036,-0.9485],[102.1904,-0.9442],[102.1879,-0.9425],[102.1869,-0.9316],[102.1888,-0.9234],[102.1877,-0.918],[102.1843,-0.9157],[102.1772,-0.9156],[102.174,-0.9138],[102.1704,-0.9081],[102.1668,-0.9057],[102.1664,-0.9013],[102.1627,-0.8989],[102.1552,-0.9038],[102.1459,-0.9025],[102.1393,-0.8994],[102.1371,-0.9024],[102.1335,-0.9132],[102.1224,-0.9194],[102.1171,-0.921],[102.113,-0.9197],[102.1058,-0.9142],[102.0991,-0.9115],[102.0913,-0.9054],[102.0706,-0.8964],[102.0624,-0.8895],[102.058,-0.8899],[102.0479,-0.8971],[102.0394,-0.8932],[102.0305,-0.8906],[102.0078,-0.8786],[101.9943,-0.882],[101.9836,-0.8804],[101.9734,-0.8862],[101.9684,-0.8931],[101.9674,-0.8971],[101.9589,-0.9096],[101.954,-0.9038],[101.947,-0.9003],[101.9418,-0.9023],[101.9361,-0.9087],[101.9279,-0.9052],[101.9211,-0.9112],[101.9127,-0.9223],[101.9146,-0.9315],[101.9139,-0.9351],[101.9094,-0.9412],[101.9093,-0.9467],[101.9072,-0.9506],[101.9012,-0.951],[101.8951,-0.955],[101.8925,-0.96],[101.8838,-0.9645],[101.8723,-0.9667],[101.8592,-0.9654],[101.8557,-0.968],[101.854,-0.9794],[101.8418,-0.9831],[101.8334,-0.9815],[101.8234,-0.9922],[101.822,-1],[101.8265,-1.0052],[101.8274,-1.0095],[101.8223,-1.0291],[101.8224,-1.0341],[101.8252,-1.0402],[101.8216,-1.0552],[101.8215,-1.0592],[101.8267,-1.0649],[101.8288,-1.0711],[101.8247,-1.0875],[101.8308,-1.1026],[101.837,-1.1103],[101.8455,-1.1119],[101.8469,-1.1069],[101.8455,-1.1017],[101.8492,-1.0995],[101.8536,-1.1002],[101.8602,-1.1089],[101.8651,-1.1119],[101.8678,-1.1111],[101.8725,-1.1047],[101.8749,-1.0948],[101.8789,-1.0938],[101.8814,-1.1008],[101.884,-1.1021],[101.8913,-1.1006],[101.8929,-1.1064],[101.8868,-1.1109],[101.8848,-1.1156],[101.8855,-1.1216],[101.8846,-1.1349],[101.8867,-1.1376],[101.8919,-1.1372],[101.8931,-1.1323],[101.8884,-1.1289],[101.8876,-1.1257],[101.8906,-1.1216],[101.9046,-1.1285],[101.9112,-1.1389],[101.9188,-1.139],[101.9216,-1.1308],[101.9235,-1.1293],[101.9347,-1.1284],[101.9451,-1.1304],[101.9489,-1.1342],[101.9474,-1.138],[101.9417,-1.1407],[101.9402,-1.1457],[101.9464,-1.1465],[101.9565,-1.1378],[101.9658,-1.1383],[101.9678,-1.141],[101.9625,-1.1518],[101.9676,-1.1507],[101.9716,-1.1529],[101.9721,-1.1571],[101.97,-1.1633],[101.9657,-1.1675],[101.9582,-1.166],[101.9575,-1.1755],[101.9513,-1.1898],[101.9453,-1.197],[101.9474,-1.2084],[101.9526,-1.2145],[101.9719,-1.2146],[101.9667,-1.232],[101.9634,-1.2378],[101.9629,-1.2502],[101.9607,-1.2535],[101.9553,-1.2562],[101.9336,-1.2555],[101.9184,-1.2559],[101.9053,-1.259],[101.9037,-1.2622],[101.9037,-1.271],[101.8952,-1.2783],[101.8893,-1.2814],[101.8864,-1.2941],[101.8804,-1.3],[101.8741,-1.303],[101.8714,-1.3081],[101.8718,-1.3151],[101.8737,-1.3194],[101.8829,-1.3337],[101.8889,-1.3414],[101.8974,-1.3468],[101.9007,-1.3531],[101.9055,-1.3521],[101.9106,-1.3555],[101.9169,-1.3568],[101.9372,-1.3658],[101.9484,-1.3698],[101.9674,-1.3739],[101.9785,-1.3774],[102.0158,-1.3868],[102.0286,-1.389],[102.0389,-1.3954],[102.0521,-1.3952],[102.0608,-1.3935],[102.0771,-1.3949],[102.0828,-1.4063],[102.0914,-1.4107],[102.0946,-1.4162],[102.1093,-1.4223],[102.1146,-1.4233],[102.1211,-1.4207],[102.1241,-1.4222],[102.1427,-1.4486],[102.1495,-1.4543],[102.1529,-1.4598],[102.1598,-1.4578],[102.1686,-1.4536],[102.1849,-1.4517],[102.1905,-1.4528],[102.2041,-1.4712],[102.2119,-1.4746],[102.2197,-1.4762],[102.2432,-1.4785],[102.2553,-1.4784],[102.2586,-1.4737],[102.2701,-1.4713],[102.2824,-1.4657],[102.2962,-1.4577],[102.3001,-1.4624],[102.3052,-1.4627],[102.3075,-1.4664],[102.3043,-1.4732],[102.3078,-1.4828],[102.3148,-1.4914],[102.3137,-1.4958],[102.3218,-1.4982],[102.3233,-1.5052],[102.3169,-1.5303],[102.3117,-1.5414],[102.3095,-1.5589],[102.3136,-1.5686],[102.3238,-1.5729],[102.3378,-1.5744],[102.3595,-1.5734],[102.377,-1.5692],[102.4008,-1.5657],[102.4084,-1.567],[102.4193,-1.5645],[102.4246,-1.5657],[102.4412,-1.5642],[102.4596,-1.5637],[102.4685,-1.5655],[102.48,-1.5698],[102.4812,-1.5956],[102.489,-1.5954],[102.4884,-1.6188],[102.4897,-1.6239],[102.4881,-1.6295],[102.4874,-1.6412],[102.489,-1.6461],[102.4953,-1.6417],[102.5186,-1.6386],[102.5203,-1.6422],[102.5186,-1.6462],[102.5211,-1.6516],[102.5299,-1.6576],[102.5231,-1.6765],[102.5134,-1.6862],[102.5081,-1.6947],[102.5024,-1.6865],[102.497,-1.6898],[102.5017,-1.6968],[102.5121,-1.7047],[102.5141,-1.7082],[102.514,-1.7147],[102.5022,-1.7416],[102.4947,-1.751],[102.4866,-1.7654],[102.4857,-1.7686],[102.4772,-1.7764],[102.4701,-1.7807],[102.4694,-1.7867],[102.4643,-1.7926],[102.4598,-1.8004],[102.4583,-1.8127],[102.4615,-1.8221],[102.4625,-1.8293],[102.4625,-1.842],[102.4697,-1.8595],[102.4597,-1.8775],[102.4595,-1.8973],[102.465,-1.8945],[102.497,-1.9045],[102.5097,-1.9119],[102.5085,-1.9054],[102.5085,-1.8922],[102.5099,-1.8903],[102.5081,-1.871],[102.5099,-1.8662],[102.5207,-1.8573],[102.5255,-1.8584],[102.5377,-1.8638],[102.5521,-1.8744],[102.5634,-1.8806],[102.5724,-1.882],[102.5851,-1.8816],[102.5975,-1.876],[102.6155,-1.8603],[102.6271,-1.8432],[102.6381,-1.8321],[102.6521,-1.8251],[102.6585,-1.8206],[102.6639,-1.8128],[102.6688,-1.7967],[102.678,-1.7876],[102.6848,-1.7789],[102.687,-1.7739],[102.688,-1.7666],[102.687,-1.745],[102.6919,-1.7368],[102.6985,-1.7219],[102.7074,-1.7227],[102.7125,-1.7131],[102.7061,-1.7062],[102.7088,-1.7036],[102.7161,-1.7057],[102.7186,-1.7023],[102.7274,-1.7037],[102.732,-1.6956],[102.7306,-1.691],[102.7419,-1.692],[102.7466,-1.6852],[102.7458,-1.6801],[102.7584,-1.6664],[102.7711,-1.6415],[102.779,-1.6371],[102.7834,-1.6281],[102.7832,-1.6194],[102.8047,-1.5806],[102.8053,-1.5785],[102.8039,-1.5605],[102.8023,-1.5565],[102.8023,-1.5395],[102.8049,-1.5337],[102.8125,-1.523],[102.8166,-1.5123],[102.8231,-1.4988],[102.8236,-1.4844],[102.8229,-1.4676],[102.8248,-1.4526],[102.8174,-1.4451],[102.8151,-1.4345],[102.8121,-1.4259],[102.8136,-1.4232],[102.8051,-1.4123],[102.798,-1.3926],[102.7992,-1.3839],[102.8051,-1.379],[102.8056,-1.374],[102.7981,-1.3567],[102.7909,-1.3421],[102.7897,-1.3334],[102.7821,-1.3167],[102.78,-1.3077],[102.7749,-1.3019],[102.768,-1.2985],[102.7661,-1.2942],[102.7676,-1.29],[102.7665,-1.2848],[102.7628,-1.2825],[102.7613,-1.276],[102.7538,-1.2683],[102.7463,-1.2629],[102.7392,-1.2598],[102.7273,-1.2616],[102.7232,-1.261],[102.7192,-1.2576],[102.7153,-1.2488],[102.7106,-1.2443],[102.7,-1.2406],[102.6963,-1.2342],[102.6934,-1.2254],[102.6883,-1.2211],[102.6882,-1.2165],[102.6839,-1.2057],[102.6857,-1.1948],[102.6821,-1.188],[102.6766,-1.1845],[102.675,-1.1781],[102.6711,-1.173],[102.6666,-1.1628],[102.6572,-1.1522],[102.6479,-1.1403],[102.6456,-1.1358],[102.6501,-1.129],[102.6496,-1.1185],[102.6468,-1.1223],[102.6417,-1.121],[102.6378,-1.1159],[102.6303,-1.11],[102.6264,-1.1017],[102.6232,-1.0979],[102.6168,-1.0946],[102.6028,-1.0947],[102.5938,-1.0925],[102.5828,-1.0929],[102.5714,-1.0966],[102.5669,-1.0954],[102.5586,-1.0973],[102.555,-1.09]]}},{"type":"Feature","properties":{"mhid":"1332:99","alt_name":"KABUPATEN BUNGO","latitude":-1.50222,"longitude":101.96,"sample_value":215},"geometry":{"type":"LineString","coordinates":[[102.5186,-1.6462],[102.5203,-1.6422],[102.5186,-1.6386],[102.4953,-1.6417],[102.489,-1.6461],[102.4874,-1.6412],[102.4881,-1.6295],[102.4897,-1.6239],[102.4884,-1.6188],[102.489,-1.5954],[102.4812,-1.5956],[102.48,-1.5698],[102.4685,-1.5655],[102.4596,-1.5637],[102.4412,-1.5642],[102.4246,-1.5657],[102.4193,-1.5645],[102.4084,-1.567],[102.4008,-1.5657],[102.377,-1.5692],[102.3595,-1.5734],[102.3378,-1.5744],[102.3238,-1.5729],[102.3136,-1.5686],[102.3095,-1.5589],[102.3117,-1.5414],[102.3169,-1.5303],[102.3233,-1.5052],[102.3218,-1.4982],[102.3137,-1.4958],[102.3148,-1.4914],[102.3078,-1.4828],[102.3043,-1.4732],[102.3075,-1.4664],[102.3052,-1.4627],[102.3001,-1.4624],[102.2962,-1.4577],[102.2824,-1.4657],[102.2701,-1.4713],[102.2586,-1.4737],[102.2553,-1.4784],[102.2432,-1.4785],[102.2197,-1.4762],[102.2119,-1.4746],[102.2041,-1.4712],[102.1905,-1.4528],[102.1849,-1.4517],[102.1686,-1.4536],[102.1598,-1.4578],[102.1529,-1.4598],[102.1495,-1.4543],[102.1427,-1.4486],[102.1241,-1.4222],[102.1211,-1.4207],[102.1146,-1.4233],[102.1093,-1.4223],[102.0946,-1.4162],[102.0914,-1.4107],[102.0828,-1.4063],[102.0771,-1.3949],[102.0608,-1.3935],[102.0521,-1.3952],[102.0389,-1.3954],[102.0286,-1.389],[102.0158,-1.3868],[101.9785,-1.3774],[101.9674,-1.3739],[101.9484,-1.3698],[101.9372,-1.3658],[101.9169,-1.3568],[101.9106,-1.3555],[101.9055,-1.3521],[101.9007,-1.3531],[101.8974,-1.3468],[101.8889,-1.3414],[101.8829,-1.3337],[101.8737,-1.3194],[101.8718,-1.3151],[101.8714,-1.3081],[101.8741,-1.303],[101.8804,-1.3],[101.8864,-1.2941],[101.8893,-1.2814],[101.8952,-1.2783],[101.9037,-1.271],[101.9037,-1.2622],[101.9053,-1.259],[101.9184,-1.2559],[101.9336,-1.2555],[101.9553,-1.2562],[101.9607,-1.2535],[101.9629,-1.2502],[101.9634,-1.2378],[101.9667,-1.232],[101.9719,-1.2146],[101.9526,-1.2145],[101.9474,-1.2084],[101.9453,-1.197],[101.9513,-1.1898],[101.9575,-1.1755],[101.9582,-1.166],[101.9657,-1.1675],[101.97,-1.1633],[101.9721,-1.1571],[101.9716,-1.1529],[101.9676,-1.1507],[101.9625,-1.1518],[101.9678,-1.141],[101.9658,-1.1383],[101.9565,-1.1378],[101.9464,-1.1465],[101.9402,-1.1457],[101.9417,-1.1407],[101.9474,-1.138],[101.9489,-1.1342],[101.9451,-1.1304],[101.9347,-1.1284],[101.9235,-1.1293],[101.9216,-1.1308],[101.9188,-1.139],[101.9112,-1.1389],[101.9046,-1.1285],[101.8906,-1.1216],[101.8876,-1.1257],[101.8884,-1.1289],[101.8931,-1.1323],[101.8919,-1.1372],[101.8867,-1.1376],[101.8846,-1.1349],[101.8822,-1.1378],[101.876,-1.1403],[101.8715,-1.1486],[101.8663,-1.1513],[101.8639,-1.1586],[101.8574,-1.1653],[101.8327,-1.1969],[101.8278,-1.2026],[101.8138,-1.221],[101.7943,-1.22],[101.7853,-1.2244],[101.7809,-1.2341],[101.7715,-1.2382],[101.754,-1.2359],[101.7408,-1.2366],[101.7336,-1.2352],[101.7262,-1.2401],[101.7217,-1.2411],[101.7218,-1.2502],[101.716,-1.2542],[101.7149,-1.2635],[101.6961,-1.2884],[101.6953,-1.2913],[101.6971,-1.2994],[101.701,-1.309],[101.7085,-1.3206],[101.7142,-1.3363],[101.7218,-1.3482],[101.7245,-1.359],[101.7227,-1.3666],[101.7166,-1.3733],[101.7004,-1.3887],[101.6968,-1.3941],[101.703,-1.4113],[101.7067,-1.4146],[101.7124,-1.4156],[101.7178,-1.4186],[101.7239,-1.4353],[101.7236,-1.4387],[101.7056,-1.4532],[101.6953,-1.4641],[101.6883,-1.4771],[101.6718,-1.5009],[101.671,-1.508],[101.6648,-1.5117],[101.6618,-1.5155],[101.6527,-1.5183],[101.6499,-1.5226],[101.6328,-1.5378],[101.6308,-1.5427],[101.6168,-1.551],[101.612,-1.5531],[101.6046,-1.5626],[101.5817,-1.5774],[101.5705,-1.5772],[101.5616,-1.5911],[101.552,-1.594],[101.5452,-1.601],[101.5322,-1.6185],[101.5276,-1.6302],[101.5215,-1.6372],[101.5189,-1.6439],[101.51,-1.6559],[101.5064,-1.6728],[101.5016,-1.6792],[101.4968,-1.6788],[101.4841,-1.6729],[101.4758,-1.6773],[101.4717,-1.6781],[101.4641,-1.6821],[101.4552,-1.6829],[101.4459,-1.6868],[101.4399,-1.6952],[101.4364,-1.6948],[101.4389,-1.7012],[101.4456,-1.7034],[101.4672,-1.7311],[101.4731,-1.7418],[101.4804,-1.7499],[101.5002,-1.7631],[101.507,-1.7744],[101.5244,-1.7907],[101.5422,-1.8084],[101.5647,-1.829],[101.5774,-1.8378],[101.5895,-1.8482],[101.6162,-1.8789],[101.6313,-1.8915],[101.6385,-1.8903],[101.6412,-1.882],[101.6454,-1.8788],[101.6524,-1.8792],[101.6607,-1.8745],[101.6708,-1.874],[101.6769,-1.8759],[101.6805,-1.8816],[101.6855,-1.8791],[101.6944,-1.8766],[101.7164,-1.8795],[101.7244,-1.8771],[101.7311,-1.8765],[101.7358,-1.8683],[101.758,-1.8609],[101.7723,-1.8491],[101.7812,-1.8357],[101.7906,-1.8316],[101.802,-1.8337],[101.8105,-1.8329],[101.8215,-1.8239],[101.8272,-1.8215],[101.8421,-1.8309],[101.8494,-1.8291],[101.8524,-1.8333],[101.8603,-1.8388],[101.8694,-1.8372],[101.8757,-1.8394],[101.8852,-1.8484],[101.8871,-1.8484],[101.891,-1.841],[101.9007,-1.8381],[101.905,-1.8437],[101.9116,-1.8438],[101.9141,-1.8371],[101.919,-1.8362],[101.9217,-1.839],[101.9226,-1.8453],[101.9292,-1.8465],[101.9361,-1.8494],[101.9471,-1.8628],[101.9525,-1.8622],[101.9592,-1.8579],[101.963,-1.8629],[101.9673,-1.8718],[101.976,-1.8726],[101.9801,-1.8772],[101.9788,-1.8821],[101.9817,-1.8878],[101.9852,-1.9007],[101.995,-1.9099],[102.002,-1.9076],[102.0062,-1.901],[102.0136,-1.9023],[102.017,-1.9075],[102.0338,-1.9069],[102.0389,-1.9023],[102.0422,-1.9014],[102.0429,-1.8948],[102.0462,-1.8897],[102.0545,-1.8889],[102.0579,-1.8792],[102.0615,-1.8762],[102.0712,-1.8725],[102.0775,-1.8732],[102.0868,-1.8722],[102.098,-1.8819],[102.1042,-1.8844],[102.1073,-1.8837],[102.114,-1.8776],[102.1153,-1.8691],[102.1206,-1.867],[102.1215,-1.8566],[102.1283,-1.8451],[102.1356,-1.8451],[102.1431,-1.8347],[102.1437,-1.8251],[102.1385,-1.813],[102.1361,-1.7988],[102.1343,-1.7929],[102.1377,-1.7909],[102.1445,-1.7905],[102.1476,-1.7886],[102.1565,-1.789],[102.1592,-1.7871],[102.1657,-1.7871],[102.1726,-1.7896],[102.1791,-1.7875],[102.1813,-1.791],[102.1859,-1.7898],[102.1964,-1.7897],[102.2077,-1.7877],[102.2175,-1.7829],[102.2243,-1.7729],[102.2251,-1.7619],[102.2356,-1.7558],[102.2431,-1.7464],[102.2483,-1.7428],[102.2648,-1.7376],[102.281,-1.7305],[102.2879,-1.724],[102.3085,-1.7066],[102.3174,-1.7042],[102.3244,-1.7042],[102.3329,-1.6977],[102.3321,-1.6883],[102.3452,-1.6787],[102.3514,-1.6797],[102.3555,-1.6822],[102.3626,-1.6767],[102.3719,-1.6839],[102.3815,-1.6929],[102.3904,-1.6987],[102.3993,-1.7145],[102.4074,-1.7149],[102.4379,-1.7003],[102.444,-1.6983],[102.4559,-1.6888],[102.4672,-1.6811],[102.4781,-1.6691],[102.487,-1.6576],[102.4977,-1.6512],[102.5121,-1.6483],[102.5186,-1.6462]]}},{"type":"Feature","properties":{"mhid":"1332:100","alt_name":"KOTA JAMBI","latitude":-1.61667,"longitude":103.65,"sample_value":957},"geometry":{"type":"LineString","coordinates":[[103.5408,-1.6281],[103.539,-1.6456],[103.5286,-1.6502],[103.5253,-1.6626],[103.5267,-1.6766],[103.5426,-1.6804],[103.5512,-1.6759],[103.5588,-1.6797],[103.5636,-1.6705],[103.5686,-1.6651],[103.5771,-1.6644],[103.5783,-1.6695],[103.5979,-1.6765],[103.6089,-1.6909],[103.6144,-1.6919],[103.6166,-1.6889],[103.6208,-1.6912],[103.6309,-1.6764],[103.6272,-1.6764],[103.6262,-1.6722],[103.6129,-1.666],[103.608,-1.6596],[103.6138,-1.6564],[103.6267,-1.6644],[103.6279,-1.6564],[103.6439,-1.6552],[103.6497,-1.6572],[103.654,-1.6558],[103.6549,-1.6517],[103.6602,-1.6498],[103.6586,-1.6441],[103.6659,-1.6399],[103.6701,-1.6405],[103.6692,-1.6328],[103.6747,-1.629],[103.6766,-1.6216],[103.6806,-1.6181],[103.6775,-1.6129],[103.6641,-1.6059],[103.6563,-1.6101],[103.6547,-1.6013],[103.6569,-1.5967],[103.6513,-1.584],[103.6516,-1.5679],[103.6547,-1.5614],[103.6534,-1.5529],[103.6486,-1.55],[103.6268,-1.55],[103.6216,-1.551],[103.6158,-1.5471],[103.603,-1.5466],[103.5959,-1.5521],[103.5929,-1.5529],[103.5663,-1.5737],[103.5578,-1.5668],[103.5523,-1.5653],[103.5482,-1.5669],[103.5443,-1.5744],[103.5439,-1.5793],[103.5458,-1.5864],[103.5433,-1.5898],[103.5369,-1.5894],[103.5488,-1.6092],[103.5468,-1.6166],[103.5408,-1.6281]]}},{"type":"Feature","properties":{"mhid":"1332:235","alt_name":"KOTA YOGYAKARTA","latitude":-7.8,"longitude":110.375,"sample_value":475},"geometry":{"type":"LineString","coordinates":[[110.3971,-7.7883],[110.3928,-7.7863],[110.3905,-7.7804],[110.3818,-7.7804],[110.3796,-7.7781],[110.3693,-7.7744],[110.3662,-7.7695],[110.3621,-7.7686],[110.3591,-7.7713],[110.3531,-7.7668],[110.351,-7.7682],[110.3511,-7.7794],[110.3484,-7.7986],[110.3446,-7.8069],[110.3458,-7.8125],[110.3515,-7.8135],[110.3518,-7.8257],[110.3591,-7.8261],[110.3752,-7.8244],[110.375,-7.8308],[110.3844,-7.829],[110.3881,-7.8357],[110.3943,-7.8372],[110.3958,-7.8325],[110.3941,-7.8271],[110.3995,-7.8278],[110.3999,-7.8334],[110.4049,-7.831],[110.4048,-7.8226],[110.4021,-7.8166],[110.4023,-7.8026],[110.3986,-7.8001],[110.3958,-7.7944],[110.3971,-7.7883]]}},{"type":"Feature","properties":{"mhid":"1332:236","alt_name":"KABUPATEN PACITAN","latitude":-8.13333,"longitude":111.16667,"sample_value":676},"geometry":{"type":"LineString","coordinates":[[111.2733,-7.9374],[111.2686,-7.9443],[111.2565,-7.9489],[111.2464,-7.9488],[111.2357,-7.9446],[111.2233,-7.9297],[111.2165,-7.926],[111.2144,-7.928],[111.2131,-7.9353],[111.2092,-7.9376],[111.1999,-7.9397],[111.1928,-7.9395],[111.1934,-7.9334],[111.1882,-7.9226],[111.1827,-7.9188],[111.1781,-7.9219],[111.1689,-7.9215],[111.1645,-7.924],[111.1549,-7.9225],[111.1503,-7.9269],[111.1448,-7.935],[111.1433,-7.9426],[111.1489,-7.9508],[111.1494,-7.9546],[111.1458,-7.9671],[111.1375,-7.9696],[111.1329,-7.9739],[111.1252,-7.9719],[111.1284,-7.9838],[111.1287,-7.9917],[111.1321,-7.9977],[111.1305,-8.0079],[111.1352,-8.0131],[111.1362,-8.0236],[111.1337,-8.0257],[111.1261,-8.0391],[111.1272,-8.0474],[111.1264,-8.061],[111.1167,-8.059],[111.1135,-8.0567],[111.1062,-8.0592],[111.096,-8.0611],[111.0887,-8.0601],[111.0913,-8.0465],[111.0905,-8.041],[111.0918,-8.0334],[111.0885,-8.0292],[111.0812,-8.0253],[111.0751,-8.0251],[111.0692,-8.0318],[111.0672,-8.0371],[111.0691,-8.0461],[111.0668,-8.0561],[111.072,-8.0633],[111.0656,-8.0633],[111.0643,-8.0677],[111.0582,-8.0677],[111.0498,-8.0746],[111.0409,-8.076],[111.0371,-8.08],[111.0257,-8.0806],[111.0182,-8.0764],[111.0015,-8.0779],[110.9999,-8.0805],[110.9942,-8.0824],[110.9822,-8.0731],[110.9751,-8.0733],[110.9588,-8.0633],[110.9532,-8.0624],[110.9516,-8.0704],[110.9479,-8.0725],[110.942,-8.0838],[110.9428,-8.0875],[110.9352,-8.0939],[110.9316,-8.1015],[110.9253,-8.1071],[110.9212,-8.1179],[110.9169,-8.1211],[110.9097,-8.1231],[110.9083,-8.1255],[110.9102,-8.1344],[110.9073,-8.1437],[110.9026,-8.1534],[110.9029,-8.1601],[110.8997,-8.1665],[110.9019,-8.1704],[110.8988,-8.1774],[110.9013,-8.1832],[110.8995,-8.1871],[110.9039,-8.1907],[110.9053,-8.1984],[110.9089,-8.2061],[110.9087,-8.211],[110.9131,-8.2125],[110.9181,-8.2188],[110.9237,-8.2193],[110.9292,-8.2232],[110.9328,-8.2215],[110.9434,-8.2262],[110.9458,-8.2238],[110.9558,-8.2265],[110.9611,-8.2298],[110.9596,-8.2337],[110.9728,-8.237],[110.975,-8.2401],[110.9816,-8.2401],[110.9861,-8.2418],[110.9982,-8.2524],[111.0018,-8.2484],[111.0071,-8.2474],[111.0206,-8.2497],[111.0268,-8.2529],[111.0268,-8.2564],[111.0348,-8.2558],[111.0377,-8.2526],[111.0606,-8.2507],[111.0658,-8.2474],[111.0699,-8.2479],[111.0765,-8.2459],[111.075,-8.2393],[111.0781,-8.2341],[111.075,-8.2319],[111.0747,-8.225],[111.0813,-8.2212],[111.089,-8.2206],[111.096,-8.2226],[111.1022,-8.229],[111.103,-8.2353],[111.0976,-8.2373],[111.1013,-8.2419],[111.0987,-8.2458],[111.1045,-8.2523],[111.1103,-8.257],[111.1148,-8.2539],[111.1199,-8.2533],[111.1318,-8.2622],[111.1378,-8.2628],[111.1379,-8.2675],[111.1322,-8.2732],[111.1377,-8.2766],[111.1457,-8.2792],[111.1595,-8.2784],[111.1705,-8.2806],[111.1768,-8.2731],[111.1856,-8.2751],[111.1905,-8.2783],[111.1975,-8.276],[111.1989,-8.2682],[111.2155,-8.2655],[111.2282,-8.2658],[111.2277,-8.2598],[111.2358,-8.2591],[111.2367,-8.2565],[111.2452,-8.2533],[111.2548,-8.253],[111.2577,-8.249],[111.2691,-8.25],[111.2747,-8.2522],[111.281,-8.2576],[111.281,-8.2645],[111.279,-8.2695],[111.2838,-8.2713],[111.288,-8.2699],[111.2878,-8.2603],[111.2958,-8.2634],[111.2962,-8.2591],[111.3032,-8.2573],[111.3128,-8.2614],[111.3118,-8.2675],[111.3199,-8.2697],[111.3265,-8.2735],[111.3325,-8.2639],[111.3374,-8.2623],[111.3492,-8.2645],[111.3504,-8.2689],[111.358,-8.2702],[111.361,-8.2637],[111.3675,-8.2609],[111.3752,-8.2654],[111.3775,-8.2744],[111.3809,-8.2761],[111.3859,-8.2746],[111.3986,-8.2777],[111.4037,-8.2708],[111.4035,-8.2671],[111.4064,-8.2584],[111.4015,-8.2509],[111.3981,-8.2409],[111.391,-8.2337],[111.3935,-8.23],[111.4007,-8.2271],[111.4004,-8.2209],[111.4045,-8.2197],[111.4086,-8.2131],[111.4043,-8.2081],[111.4031,-8.2008],[111.4007,-8.1953],[111.4024,-8.1906],[111.4088,-8.1928],[111.4228,-8.1886],[111.4254,-8.1837],[111.4266,-8.1754],[111.4248,-8.1703],[111.4173,-8.169],[111.4157,-8.1718],[111.4105,-8.1709],[111.4055,-8.1726],[111.3971,-8.1649],[111.3935,-8.1634],[111.3932,-8.1595],[111.3778,-8.16],[111.38,-8.1551],[111.3808,-8.1436],[111.3801,-8.1374],[111.3687,-8.1292],[111.3679,-8.1237],[111.3615,-8.1189],[111.3559,-8.1207],[111.3553,-8.117],[111.3485,-8.1152],[111.3475,-8.1075],[111.3511,-8.1056],[111.3543,-8.1087],[111.3598,-8.107],[111.3583,-8.0994],[111.3524,-8.0934],[111.3542,-8.0892],[111.3548,-8.0773],[111.3472,-8.0727],[111.3463,-8.0662],[111.3533,-8.0592],[111.3538,-8.0492],[111.3589,-8.0464],[111.3668,-8.0308],[111.3621,-8.0298],[111.3503,-8.0212],[111.3488,-8.0163],[111.3512,-8.0054],[111.3561,-8.0003],[111.3554,-7.9841],[111.3513,-7.9776],[111.3407,-7.9757],[111.3393,-7.9724],[111.3313,-7.9677],[111.3275,-7.9682],[111.3254,-7.9606],[111.3265,-7.9552],[111.3226,-7.9498],[111.3221,-7.9444],[111.3176,-7.9408],[111.3139,-7.935],[111.3085,-7.9355],[111.2983,-7.941],[111.2733,-7.9374]]}},{"type":"Feature","properties":{"mhid":"1332:237","alt_name":"KABUPATEN PONOROGO","latitude":-7.93333,"longitude":111.5,"sample_value":534},"geometry":{"type":"LineString","coordinates":[[111.7522,-7.801],[111.7455,-7.8036],[111.7328,-7.8013],[111.7267,-7.8058],[111.7226,-7.8125],[111.7105,-7.8141],[111.7002,-7.8121],[111.6932,-7.8081],[111.6955,-7.8012],[111.6906,-7.7914],[111.6761,-7.7844],[111.6779,-7.7744],[111.6691,-7.769],[111.6582,-7.767],[111.6527,-7.773],[111.6416,-7.7708],[111.6371,-7.7746],[111.6234,-7.7771],[111.6195,-7.7802],[111.6122,-7.7797],[111.6104,-7.7815],[111.601,-7.7816],[111.6,-7.7867],[111.5934,-7.7905],[111.592,-7.7955],[111.5769,-7.8046],[111.5719,-7.8046],[111.57,-7.8021],[111.5577,-7.7999],[111.5503,-7.7997],[111.5474,-7.8031],[111.5329,-7.8038],[111.4983,-7.7954],[111.4943,-7.7889],[111.4891,-7.7888],[111.4756,-7.7828],[111.4744,-7.7795],[111.4665,-7.7771],[111.4605,-7.7797],[111.4557,-7.7839],[111.4499,-7.779],[111.4427,-7.7792],[111.4315,-7.7759],[111.4176,-7.7769],[111.4066,-7.7788],[111.4021,-7.7784],[111.3871,-7.7812],[111.3642,-7.784],[111.3493,-7.7832],[111.342,-7.7837],[111.3379,-7.7892],[111.3298,-7.7874],[111.3277,-7.7888],[111.3186,-7.7864],[111.3148,-7.7922],[111.3054,-7.7969],[111.301,-7.7971],[111.2961,-7.7942],[111.2899,-7.794],[111.2987,-7.8015],[111.3016,-7.8123],[111.3069,-7.8242],[111.3038,-7.8313],[111.3058,-7.8411],[111.3144,-7.8431],[111.3185,-7.8479],[111.3193,-7.8544],[111.3085,-7.8584],[111.2997,-7.8599],[111.2978,-7.862],[111.2967,-7.8704],[111.2995,-7.878],[111.2926,-7.888],[111.2876,-7.9039],[111.2797,-7.9178],[111.2731,-7.9258],[111.2746,-7.9323],[111.2733,-7.9374],[111.2983,-7.941],[111.3085,-7.9355],[111.3139,-7.935],[111.3176,-7.9408],[111.3221,-7.9444],[111.3226,-7.9498],[111.3265,-7.9552],[111.3254,-7.9606],[111.3275,-7.9682],[111.3313,-7.9677],[111.3393,-7.9724],[111.3407,-7.9757],[111.3513,-7.9776],[111.3554,-7.9841],[111.3561,-8.0003],[111.3512,-8.0054],[111.3488,-8.0163],[111.3503,-8.0212],[111.3621,-8.0298],[111.3668,-8.0308],[111.3589,-8.0464],[111.3538,-8.0492],[111.3533,-8.0592],[111.3463,-8.0662],[111.3472,-8.0727],[111.3548,-8.0773],[111.3542,-8.0892],[111.3524,-8.0934],[111.3583,-8.0994],[111.3598,-8.107],[111.3543,-8.1087],[111.3511,-8.1056],[111.3475,-8.1075],[111.3485,-8.1152],[111.3553,-8.117],[111.3559,-8.1207],[111.3615,-8.1189],[111.3679,-8.1237],[111.3687,-8.1292],[111.3801,-8.1374],[111.3808,-8.1436],[111.38,-8.1551],[111.3778,-8.16],[111.3932,-8.1595],[111.3935,-8.1634],[111.3971,-8.1649],[111.4055,-8.1726],[111.4105,-8.1709],[111.4157,-8.1718],[111.4173,-8.169],[111.4248,-8.1703],[111.4311,-8.1704],[111.4383,-8.1649],[111.4504,-8.1687],[111.4552,-8.1675],[111.4598,-8.1696],[111.4654,-8.175],[111.4754,-8.1711],[111.4757,-8.1639],[111.4736,-8.1579],[111.4748,-8.1505],[111.473,-8.1431],[111.4762,-8.1419],[111.4787,-8.1373],[111.4786,-8.1303],[111.483,-8.1259],[111.4794,-8.1176],[111.4825,-8.1142],[111.4831,-8.1085],[111.4897,-8.1081],[111.5007,-8.1098],[111.5062,-8.1066],[111.5193,-8.11],[111.5271,-8.1042],[111.5283,-8.0991],[111.5257,-8.0924],[111.5276,-8.0902],[111.5268,-8.0823],[111.5285,-8.079],[111.5423,-8.0701],[111.5413,-8.0668],[111.5332,-8.0616],[111.5388,-8.0569],[111.5445,-8.0547],[111.5506,-8.0565],[111.5565,-8.0538],[111.5572,-8.0499],[111.5734,-8.0478],[111.5744,-8.0398],[111.5776,-8.0389],[111.5817,-8.0259],[111.5892,-8.0206],[111.602,-8.0183],[111.6058,-8.0194],[111.6068,-8.012],[111.6122,-8.0089],[111.625,-8.0075],[111.63,-8.0036],[111.6356,-8.0079],[111.6457,-8.0116],[111.6452,-8.0163],[111.647,-8.0212],[111.6533,-8.0205],[111.655,-8.0155],[111.657,-8.0032],[111.6558,-7.9982],[111.657,-7.9927],[111.6534,-7.9834],[111.6564,-7.9758],[111.6623,-7.974],[111.6599,-7.9686],[111.653,-7.9664],[111.6475,-7.9686],[111.6384,-7.9661],[111.6377,-7.9608],[111.6417,-7.9553],[111.6473,-7.9507],[111.6547,-7.9411],[111.6592,-7.9452],[111.6628,-7.9433],[111.6701,-7.9446],[111.679,-7.9407],[111.6832,-7.9363],[111.6918,-7.931],[111.6928,-7.9269],[111.6913,-7.9216],[111.6961,-7.916],[111.7028,-7.9113],[111.7046,-7.9062],[111.6991,-7.8996],[111.7012,-7.8962],[111.7074,-7.8974],[111.7173,-7.8951],[111.7325,-7.8949],[111.7419,-7.8884],[111.7499,-7.8907],[111.7533,-7.9046],[111.7553,-7.9083],[111.7586,-7.906],[111.7571,-7.8985],[111.7612,-7.8917],[111.7695,-7.8866],[111.7744,-7.8701],[111.7776,-7.8671],[111.7775,-7.8628],[111.7734,-7.8603],[111.7714,-7.8561],[111.7731,-7.8512],[111.7766,-7.8483],[111.779,-7.842],[111.7857,-7.8333],[111.7849,-7.83],[111.7765,-7.8203],[111.7733,-7.8202],[111.7688,-7.8241],[111.7644,-7.8174],[111.7601,-7.8137],[111.7551,-7.8027],[111.7522,-7.801]]}},{"type":"Feature","properties":{"mhid":"1332:238","alt_name":"KABUPATEN TRENGGALEK","latitude":-8.16667,"longitude":111.61667,"sample_value":870},"geometry":{"type":"LineString","coordinates":[[111.7553,-7.9083],[111.7533,-7.9046],[111.7499,-7.8907],[111.7419,-7.8884],[111.7325,-7.8949],[111.7173,-7.8951],[111.7074,-7.8974],[111.7012,-7.8962],[111.6991,-7.8996],[111.7046,-7.9062],[111.7028,-7.9113],[111.6961,-7.916],[111.6913,-7.9216],[111.6928,-7.9269],[111.6918,-7.931],[111.6832,-7.9363],[111.679,-7.9407],[111.6701,-7.9446],[111.6628,-7.9433],[111.6592,-7.9452],[111.6547,-7.9411],[111.6473,-7.9507],[111.6417,-7.9553],[111.6377,-7.9608],[111.6384,-7.9661],[111.6475,-7.9686],[111.653,-7.9664],[111.6599,-7.9686],[111.6623,-7.974],[111.6564,-7.9758],[111.6534,-7.9834],[111.657,-7.9927],[111.6558,-7.9982],[111.657,-8.0032],[111.655,-8.0155],[111.6533,-8.0205],[111.647,-8.0212],[111.6452,-8.0163],[111.6457,-8.0116],[111.6356,-8.0079],[111.63,-8.0036],[111.625,-8.0075],[111.6122,-8.0089],[111.6068,-8.012],[111.6058,-8.0194],[111.602,-8.0183],[111.5892,-8.0206],[111.5817,-8.0259],[111.5776,-8.0389],[111.5744,-8.0398],[111.5734,-8.0478],[111.5572,-8.0499],[111.5565,-8.0538],[111.5506,-8.0565],[111.5445,-8.0547],[111.5388,-8.0569],[111.5332,-8.0616],[111.5413,-8.0668],[111.5423,-8.0701],[111.5285,-8.079],[111.5268,-8.0823],[111.5276,-8.0902],[111.5257,-8.0924],[111.5283,-8.0991],[111.5271,-8.1042],[111.5193,-8.11],[111.5062,-8.1066],[111.5007,-8.1098],[111.4897,-8.1081],[111.4831,-8.1085],[111.4825,-8.1142],[111.4794,-8.1176],[111.483,-8.1259],[111.4786,-8.1303],[111.4787,-8.1373],[111.4762,-8.1419],[111.473,-8.1431],[111.4748,-8.1505],[111.4736,-8.1579],[111.4757,-8.1639],[111.4754,-8.1711],[111.4654,-8.175],[111.4598,-8.1696],[111.4552,-8.1675],[111.4504,-8.1687],[111.4383,-8.1649],[111.4311,-8.1704],[111.4248,-8.1703],[111.4266,-8.1754],[111.4254,-8.1837],[111.4228,-8.1886],[111.4088,-8.1928],[111.4024,-8.1906],[111.4007,-8.1953],[111.4031,-8.2008],[111.4043,-8.2081],[111.4086,-8.2131],[111.4045,-8.2197],[111.4004,-8.2209],[111.4007,-8.2271],[111.3935,-8.23],[111.391,-8.2337],[111.3981,-8.2409],[111.4015,-8.2509],[111.4064,-8.2584],[111.4035,-8.2671],[111.4037,-8.2708],[111.4075,-8.2735],[111.4102,-8.2785],[111.4157,-8.2764],[111.4157,-8.2673],[111.4222,-8.2589],[111.4313,-8.2597],[111.4415,-8.2671],[111.4502,-8.2717],[111.454,-8.2786],[111.4507,-8.2817],[111.4536,-8.2853],[111.4449,-8.2939],[111.4489,-8.2959],[111.445,-8.3025],[111.4493,-8.309],[111.4578,-8.3107],[111.4558,-8.317],[111.4614,-8.3186],[111.4639,-8.3226],[111.4695,-8.3137],[111.4784,-8.3061],[111.4832,-8.3091],[111.4817,-8.3194],[111.4874,-8.3173],[111.4899,-8.3141],[111.4945,-8.3153],[111.4965,-8.324],[111.5029,-8.3223],[111.5095,-8.3267],[111.5142,-8.3338],[111.5194,-8.332],[111.5268,-8.332],[111.538,-8.3269],[111.5307,-8.3222],[111.5313,-8.3177],[111.5373,-8.314],[111.5459,-8.3128],[111.5463,-8.308],[111.5518,-8.3064],[111.5612,-8.3081],[111.5683,-8.3121],[111.5731,-8.3187],[111.5712,-8.3259],[111.5679,-8.3279],[111.5748,-8.3333],[111.5766,-8.3296],[111.5873,-8.335],[111.5902,-8.3312],[111.5901,-8.3261],[111.5962,-8.3221],[111.6027,-8.325],[111.6014,-8.329],[111.6052,-8.3397],[111.6111,-8.3351],[111.6073,-8.3308],[111.612,-8.3216],[111.617,-8.3205],[111.628,-8.3249],[111.6289,-8.3311],[111.6269,-8.3351],[111.6324,-8.3369],[111.6339,-8.3416],[111.6288,-8.3446],[111.6266,-8.3509],[111.6307,-8.3522],[111.6337,-8.3483],[111.641,-8.3511],[111.6472,-8.352],[111.6502,-8.3587],[111.6517,-8.3663],[111.6562,-8.3647],[111.6575,-8.3573],[111.6675,-8.3562],[111.6701,-8.3625],[111.6701,-8.3671],[111.6751,-8.3718],[111.6851,-8.3724],[111.6875,-8.3679],[111.6926,-8.3702],[111.6933,-8.3753],[111.6965,-8.379],[111.7038,-8.374],[111.7033,-8.3681],[111.71,-8.3672],[111.7145,-8.3725],[111.7237,-8.3683],[111.7152,-8.3585],[111.7135,-8.3516],[111.7079,-8.3505],[111.704,-8.3461],[111.6986,-8.3454],[111.6893,-8.3372],[111.6894,-8.3308],[111.6957,-8.3222],[111.713,-8.3227],[111.7154,-8.3149],[111.7132,-8.3079],[111.7072,-8.3034],[111.7082,-8.2979],[111.713,-8.2911],[111.7248,-8.2871],[111.7298,-8.2879],[111.7348,-8.2918],[111.7375,-8.2962],[111.7454,-8.3049],[111.7485,-8.3132],[111.7415,-8.3223],[111.74,-8.3315],[111.7471,-8.3349],[111.7488,-8.3406],[111.7537,-8.3401],[111.7577,-8.335],[111.7606,-8.3355],[111.77,-8.3284],[111.7766,-8.3256],[111.7739,-8.3194],[111.7703,-8.3188],[111.7689,-8.3103],[111.7751,-8.3056],[111.7683,-8.2947],[111.7736,-8.2942],[111.774,-8.2891],[111.7711,-8.2901],[111.7588,-8.2902],[111.7554,-8.2858],[111.7489,-8.2814],[111.7482,-8.2696],[111.7459,-8.2654],[111.7459,-8.259],[111.7415,-8.2537],[111.7335,-8.2526],[111.7274,-8.2409],[111.7316,-8.2389],[111.7331,-8.2339],[111.7319,-8.2194],[111.7344,-8.2149],[111.7322,-8.2084],[111.7287,-8.2077],[111.7283,-8.2004],[111.7235,-8.1975],[111.7228,-8.1935],[111.7181,-8.1919],[111.7193,-8.1872],[111.7114,-8.1791],[111.7165,-8.1753],[111.7212,-8.1645],[111.7221,-8.1592],[111.7285,-8.1534],[111.7336,-8.1422],[111.7361,-8.1427],[111.7421,-8.1388],[111.7461,-8.139],[111.7479,-8.1441],[111.7532,-8.1468],[111.7608,-8.1412],[111.771,-8.138],[111.7859,-8.1383],[111.8177,-8.1369],[111.8194,-8.1327],[111.8246,-8.1321],[111.8324,-8.1284],[111.8407,-8.1196],[111.8424,-8.1117],[111.8464,-8.1106],[111.8469,-8.1064],[111.8426,-8.1039],[111.8438,-8.0963],[111.8391,-8.0935],[111.8357,-8.0947],[111.8209,-8.0884],[111.8142,-8.0885],[111.8113,-8.084],[111.8097,-8.0758],[111.7977,-8.0674],[111.7965,-8.0618],[111.7927,-8.0606],[111.7897,-8.0524],[111.7838,-8.0458],[111.7802,-8.0392],[111.7767,-8.0377],[111.7703,-8.0414],[111.7676,-8.0373],[111.7627,-8.0337],[111.7541,-8.0299],[111.7558,-8.0241],[111.7538,-8.0025],[111.7565,-7.9967],[111.7605,-7.9927],[111.759,-7.9838],[111.7533,-7.9796],[111.7526,-7.9751],[111.7483,-7.9699],[111.7429,-7.9707],[111.7403,-7.9668],[111.7382,-7.959],[111.743,-7.9532],[111.7394,-7.9467],[111.7382,-7.9307],[111.7413,-7.9238],[111.7468,-7.921],[111.7529,-7.9285],[111.7596,-7.9262],[111.759,-7.9178],[111.755,-7.9141],[111.7553,-7.9083]]}},{"type":"Feature","properties":{"mhid":"1332:239","alt_name":"KABUPATEN TULUNGAGUNG","latitude":-8.11667,"longitude":111.91667,"sample_value":574},"geometry":{"type":"LineString","coordinates":[[111.7992,-7.8366],[111.7947,-7.8365],[111.7857,-7.8333],[111.779,-7.842],[111.7766,-7.8483],[111.7731,-7.8512],[111.7714,-7.8561],[111.7734,-7.8603],[111.7775,-7.8628],[111.7776,-7.8671],[111.7744,-7.8701],[111.7695,-7.8866],[111.7612,-7.8917],[111.7571,-7.8985],[111.7586,-7.906],[111.7553,-7.9083],[111.755,-7.9141],[111.759,-7.9178],[111.7596,-7.9262],[111.7529,-7.9285],[111.7468,-7.921],[111.7413,-7.9238],[111.7382,-7.9307],[111.7394,-7.9467],[111.743,-7.9532],[111.7382,-7.959],[111.7403,-7.9668],[111.7429,-7.9707],[111.7483,-7.9699],[111.7526,-7.9751],[111.7533,-7.9796],[111.759,-7.9838],[111.7605,-7.9927],[111.7565,-7.9967],[111.7538,-8.0025],[111.7558,-8.0241],[111.7541,-8.0299],[111.7627,-8.0337],[111.7676,-8.0373],[111.7703,-8.0414],[111.7767,-8.0377],[111.7802,-8.0392],[111.7838,-8.0458],[111.7897,-8.0524],[111.7927,-8.0606],[111.7965,-8.0618],[111.7977,-8.0674],[111.8097,-8.0758],[111.8113,-8.084],[111.8142,-8.0885],[111.8209,-8.0884],[111.8357,-8.0947],[111.8391,-8.0935],[111.8438,-8.0963],[111.8426,-8.1039],[111.8469,-8.1064],[111.8464,-8.1106],[111.8424,-8.1117],[111.8407,-8.1196],[111.8324,-8.1284],[111.8246,-8.1321],[111.8194,-8.1327],[111.8177,-8.1369],[111.7859,-8.1383],[111.771,-8.138],[111.7608,-8.1412],[111.7532,-8.1468],[111.7479,-8.1441],[111.7461,-8.139],[111.7421,-8.1388],[111.7361,-8.1427],[111.7336,-8.1422],[111.7285,-8.1534],[111.7221,-8.1592],[111.7212,-8.1645],[111.7165,-8.1753],[111.7114,-8.1791],[111.7193,-8.1872],[111.7181,-8.1919],[111.7228,-8.1935],[111.7235,-8.1975],[111.7283,-8.2004],[111.7287,-8.2077],[111.7322,-8.2084],[111.7344,-8.2149],[111.7319,-8.2194],[111.7331,-8.2339],[111.7316,-8.2389],[111.7274,-8.2409],[111.7335,-8.2526],[111.7415,-8.2537],[111.7459,-8.259],[111.7459,-8.2654],[111.7482,-8.2696],[111.7489,-8.2814],[111.7554,-8.2858],[111.7588,-8.2902],[111.7711,-8.2901],[111.774,-8.2891],[111.7689,-8.2863],[111.7741,-8.283],[111.7776,-8.2741],[111.7701,-8.2703],[111.7724,-8.2605],[111.7767,-8.2567],[111.7855,-8.257],[111.795,-8.2558],[111.8003,-8.2582],[111.8057,-8.267],[111.8084,-8.2646],[111.8141,-8.2688],[111.8143,-8.2726],[111.8218,-8.2705],[111.8285,-8.2738],[111.829,-8.278],[111.8324,-8.2813],[111.8403,-8.2817],[111.8417,-8.2719],[111.8387,-8.2652],[111.8416,-8.2619],[111.8484,-8.2641],[111.8523,-8.2691],[111.8585,-8.269],[111.8631,-8.2707],[111.8628,-8.2752],[111.8682,-8.2772],[111.8689,-8.2842],[111.8732,-8.2847],[111.8734,-8.2892],[111.8853,-8.2932],[111.891,-8.2983],[111.9058,-8.3034],[111.9112,-8.2973],[111.9152,-8.2977],[111.925,-8.3045],[111.9378,-8.3064],[111.9418,-8.3004],[111.9429,-8.294],[111.9364,-8.2932],[111.9376,-8.2845],[111.9414,-8.2803],[111.9476,-8.2776],[111.9674,-8.2801],[111.978,-8.284],[111.985,-8.2915],[111.9932,-8.2972],[112.002,-8.2986],[112.0202,-8.304],[112.0281,-8.3126],[112.0312,-8.3088],[112.0322,-8.2949],[112.0244,-8.2869],[112.0238,-8.2811],[112.0297,-8.2709],[112.0306,-8.2627],[112.0263,-8.2571],[112.0251,-8.248],[112.0227,-8.2443],[112.0255,-8.2291],[112.0233,-8.2216],[112.0257,-8.2145],[112.0249,-8.2092],[112.0278,-8.202],[112.0261,-8.1957],[112.023,-8.1933],[112.0242,-8.1857],[112.0271,-8.1846],[112.0295,-8.1784],[112.0286,-8.169],[112.0358,-8.1695],[112.04,-8.1743],[112.0595,-8.1842],[112.0714,-8.1874],[112.0786,-8.1875],[112.0845,-8.1781],[112.0891,-8.1733],[112.094,-8.1736],[112.0971,-8.1673],[112.1049,-8.1581],[112.1165,-8.1576],[112.1173,-8.1436],[112.1191,-8.1379],[112.1199,-8.1273],[112.1109,-8.1188],[112.1023,-8.1151],[112.0948,-8.1106],[112.0859,-8.1137],[112.0821,-8.1189],[112.0748,-8.1181],[112.0703,-8.116],[112.0682,-8.1122],[112.0628,-8.1105],[112.0452,-8.1085],[112.037,-8.102],[112.025,-8.0983],[112.0031,-8.0954],[111.9962,-8.0908],[111.9912,-8.0782],[111.9934,-8.0735],[111.9931,-8.0655],[111.9946,-8.0593],[111.9891,-8.0546],[111.9879,-8.0497],[111.9797,-8.0477],[111.9749,-8.0444],[111.9716,-8.0358],[111.9703,-8.0281],[111.9651,-8.0199],[111.9621,-8.0116],[111.9568,-8.009],[111.9581,-8.006],[111.9571,-7.9975],[111.9556,-7.9899],[111.9511,-7.9806],[111.9503,-7.9747],[111.9471,-7.9711],[111.9458,-7.956],[111.9362,-7.9564],[111.9312,-7.9623],[111.9253,-7.9604],[111.9214,-7.9564],[111.9181,-7.9564],[111.9168,-7.9611],[111.9092,-7.9572],[111.9014,-7.9563],[111.8961,-7.9522],[111.8918,-7.9527],[111.8828,-7.9472],[111.8802,-7.9429],[111.8788,-7.9346],[111.8691,-7.9178],[111.8629,-7.9107],[111.863,-7.9077],[111.8512,-7.9009],[111.8447,-7.8916],[111.8375,-7.8837],[111.8304,-7.8774],[111.8168,-7.872],[111.8104,-7.8664],[111.8027,-7.8657],[111.802,-7.8563],[111.7972,-7.8479],[111.7971,-7.8425],[111.7992,-7.8366]]}},{"type":"Feature","properties":{"mhid":"1332:240","alt_name":"KABUPATEN BLITAR","latitude":-8.13333,"longitude":112.25,"sample_value":434},"geometry":{"type":"MultiLineString","coordinates":[[[112.359,-8.3485],[112.3608,-8.3467],[112.3643,-8.3285],[112.3701,-8.3237],[112.3714,-8.3109],[112.3755,-8.308],[112.3827,-8.2959],[112.3845,-8.2891],[112.3846,-8.2813],[112.3816,-8.2682],[112.3807,-8.2524],[112.3822,-8.2378],[112.3896,-8.2354],[112.3932,-8.2316],[112.3934,-8.2279],[112.39,-8.2178],[112.383,-8.2074],[112.3866,-8.201],[112.3854,-8.1926],[112.3822,-8.1919],[112.3772,-8.1873],[112.3668,-8.1833],[112.366,-8.1755],[112.372,-8.1704],[112.3787,-8.1708],[112.383,-8.1692],[112.3895,-8.1625],[112.3953,-8.1646],[112.4035,-8.1631],[112.4105,-8.1604],[112.4161,-8.1654],[112.4173,-8.1601],[112.4227,-8.1581],[112.4255,-8.1597],[112.4312,-8.1586],[112.4364,-8.1547],[112.4403,-8.1488],[112.4492,-8.1473],[112.4525,-8.1442],[112.4529,-8.1334],[112.4584,-8.118],[112.4578,-8.1109],[112.4543,-8.1067],[112.4548,-8.09],[112.4568,-8.081],[112.4562,-8.076],[112.4578,-8.0674],[112.454,-8.0618],[112.4559,-8.0503],[112.4593,-8.0433],[112.4597,-8.0367],[112.4644,-8.03],[112.4638,-8.0201],[112.4676,-8.0071],[112.4681,-8],[112.4713,-7.9953],[112.4684,-7.9886],[112.4694,-7.9852],[112.4789,-7.9721],[112.4745,-7.9581],[112.4678,-7.9569],[112.4644,-7.9518],[112.4659,-7.9462],[112.4582,-7.9334],[112.4515,-7.9275],[112.4524,-7.9187],[112.4461,-7.9111],[112.438,-7.9137],[112.4316,-7.9215],[112.4242,-7.9252],[112.4199,-7.9298],[112.4103,-7.9346],[112.4041,-7.9344],[112.3952,-7.9397],[112.3923,-7.9432],[112.3848,-7.9483],[112.3776,-7.9503],[112.374,-7.9554],[112.3705,-7.9573],[112.3648,-7.9554],[112.3632,-7.9502],[112.3566,-7.9465],[112.349,-7.9464],[112.3433,-7.9436],[112.3426,-7.9405],[112.3335,-7.9383],[112.3222,-7.9344],[112.3173,-7.9315],[112.3066,-7.9293],[112.3045,-7.9297],[112.2989,-7.9371],[112.2938,-7.9372],[112.2868,-7.9396],[112.2788,-7.9405],[112.2749,-7.9453],[112.2631,-7.9444],[112.2549,-7.9516],[112.2495,-7.9532],[112.2429,-7.9519],[112.2325,-7.9555],[112.2296,-7.9549],[112.2255,-7.959],[112.2162,-7.9627],[112.2013,-7.964],[112.1932,-7.9696],[112.18,-7.9734],[112.1683,-7.9751],[112.1602,-7.9752],[112.1543,-7.9769],[112.1266,-7.9776],[112.1141,-7.9774],[112.1135,-7.9707],[112.1079,-7.9693],[112.0961,-7.9699],[112.0983,-7.9774],[112.096,-7.9902],[112.0908,-7.9916],[112.0788,-7.9912],[112.0739,-7.9901],[112.0536,-7.9906],[112.0482,-7.9936],[112.0368,-7.9932],[112.0366,-7.9947],[112.019,-7.9995],[112.0134,-7.9993],[111.9863,-7.9964],[111.9775,-7.9963],[111.9765,-8.0026],[111.979,-8.0046],[111.9771,-8.0115],[111.9636,-8.0055],[111.9615,-7.9987],[111.9571,-7.9975],[111.9581,-8.006],[111.9568,-8.009],[111.9621,-8.0116],[111.9651,-8.0199],[111.9703,-8.0281],[111.9716,-8.0358],[111.9749,-8.0444],[111.9797,-8.0477],[111.9879,-8.0497],[111.9891,-8.0546],[111.9946,-8.0593],[111.9931,-8.0655],[111.9934,-8.0735],[111.9912,-8.0782],[111.9962,-8.0908],[112.0031,-8.0954],[112.025,-8.0983],[112.037,-8.102],[112.0452,-8.1085],[112.0628,-8.1105],[112.0682,-8.1122],[112.0703,-8.116],[112.0748,-8.1181],[112.0821,-8.1189],[112.0859,-8.1137],[112.0948,-8.1106],[112.1023,-8.1151],[112.1109,-8.1188],[112.1199,-8.1273],[112.1191,-8.1379],[112.1173,-8.1436],[112.1165,-8.1576],[112.1049,-8.1581],[112.0971,-8.1673],[112.094,-8.1736],[112.0891,-8.1733],[112.0845,-8.1781],[112.0786,-8.1875],[112.0714,-8.1874],[112.0595,-8.1842],[112.04,-8.1743],[112.0358,-8.1695],[112.0286,-8.169],[112.0295,-8.1784],[112.0271,-8.1846],[112.0242,-8.1857],[112.023,-8.1933],[112.0261,-8.1957],[112.0278,-8.202],[112.0249,-8.2092],[112.0257,-8.2145],[112.0233,-8.2216],[112.0255,-8.2291],[112.0227,-8.2443],[112.0251,-8.248],[112.0263,-8.2571],[112.0306,-8.2627],[112.0297,-8.2709],[112.0238,-8.2811],[112.0244,-8.2869],[112.0322,-8.2949],[112.0312,-8.3088],[112.0281,-8.3126],[112.0298,-8.3179],[112.0342,-8.3197],[112.0537,-8.3175],[112.0613,-8.3198],[112.0654,-8.3226],[112.0677,-8.3194],[112.0753,-8.3171],[112.0827,-8.3183],[112.0894,-8.3152],[112.0978,-8.3182],[112.1077,-8.3174],[112.1098,-8.3127],[112.1152,-8.3167],[112.1232,-8.3161],[112.1258,-8.3237],[112.132,-8.3246],[112.1351,-8.3187],[112.1435,-8.3158],[112.1451,-8.3189],[112.1511,-8.3228],[112.1542,-8.3282],[112.165,-8.3263],[112.1696,-8.3206],[112.1737,-8.3213],[112.1779,-8.3255],[112.1874,-8.3233],[112.194,-8.3269],[112.199,-8.327],[112.2028,-8.3248],[112.2124,-8.3289],[112.2192,-8.327],[112.2227,-8.332],[112.2183,-8.3412],[112.2342,-8.3459],[112.2359,-8.3439],[112.2413,-8.3472],[112.2444,-8.3445],[112.2548,-8.3432],[112.2634,-8.3505],[112.2716,-8.3445],[112.2722,-8.3398],[112.2823,-8.3364],[112.2866,-8.332],[112.2964,-8.3315],[112.3002,-8.3363],[112.3047,-8.3349],[112.3147,-8.3422],[112.3182,-8.342],[112.3194,-8.3338],[112.3285,-8.331],[112.3342,-8.333],[112.3391,-8.3431],[112.3471,-8.3414],[112.3499,-8.3442],[112.3463,-8.35],[112.349,-8.3519],[112.3527,-8.3486],[112.359,-8.3485]],[[112.1849,-8.0561],[112.1888,-8.057],[112.1899,-8.0635],[112.1978,-8.0662],[112.195,-8.0721],[112.1912,-8.0764],[112.1931,-8.0796],[112.1911,-8.0853],[112.1973,-8.0884],[112.1978,-8.0938],[112.1941,-8.1004],[112.1876,-8.1047],[112.1843,-8.105],[112.1826,-8.1106],[112.1776,-8.1156],[112.1763,-8.1204],[112.1715,-8.1186],[112.1678,-8.1316],[112.1597,-8.1367],[112.1559,-8.1357],[112.1568,-8.1283],[112.1492,-8.1279],[112.1508,-8.1215],[112.1441,-8.12],[112.1436,-8.1138],[112.1366,-8.1094],[112.1404,-8.0963],[112.1325,-8.0908],[112.1354,-8.0829],[112.1445,-8.0766],[112.1475,-8.0801],[112.1575,-8.0837],[112.1623,-8.0841],[112.1732,-8.0576],[112.1812,-8.0607],[112.1849,-8.0561]]]}},{"type":"Feature","properties":{"mhid":"1332:241","alt_name":"KABUPATEN KEDIRI","latitude":-7.83333,"longitude":112.16667,"sample_value":54},"geometry":{"type":"MultiLineString","coordinates":[[[112.4222,-7.7669],[112.4175,-7.7677],[112.4067,-7.7744],[112.3964,-7.7757],[112.3883,-7.7725],[112.3846,-7.7688],[112.3753,-7.764],[112.3654,-7.7608],[112.3612,-7.7612],[112.3484,-7.7487],[112.3431,-7.7486],[112.3372,-7.7453],[112.3336,-7.7413],[112.3286,-7.7414],[112.3249,-7.738],[112.318,-7.7373],[112.3104,-7.7308],[112.2913,-7.7255],[112.2802,-7.7257],[112.2666,-7.7229],[112.2677,-7.7272],[112.2572,-7.728],[112.2499,-7.7236],[112.2407,-7.7141],[112.2403,-7.711],[112.2334,-7.7071],[112.2351,-7.7021],[112.2274,-7.699],[112.2219,-7.6916],[112.2149,-7.6877],[112.2181,-7.6767],[112.21,-7.6696],[112.201,-7.6579],[112.1946,-7.6546],[112.1947,-7.6512],[112.1831,-7.6414],[112.1834,-7.634],[112.1767,-7.6251],[112.1713,-7.622],[112.1713,-7.6187],[112.1656,-7.6132],[112.1556,-7.6102],[112.1484,-7.6111],[112.1396,-7.6098],[112.1368,-7.6112],[112.1184,-7.6045],[112.1147,-7.5992],[112.1119,-7.5911],[112.1088,-7.5976],[112.1081,-7.6051],[112.1031,-7.6095],[112.1039,-7.6143],[112.1009,-7.6283],[112.1013,-7.6352],[112.0982,-7.6397],[112.0968,-7.6465],[112.0918,-7.6496],[112.0903,-7.6556],[112.0848,-7.6591],[112.082,-7.667],[112.0832,-7.6713],[112.0786,-7.6749],[112.0758,-7.6798],[112.0766,-7.6853],[112.0751,-7.6919],[112.0766,-7.7],[112.075,-7.7037],[112.0648,-7.7131],[112.0627,-7.7205],[112.0591,-7.7235],[112.0503,-7.726],[112.0375,-7.7246],[112.0319,-7.7264],[112.0281,-7.7253],[112.0206,-7.7425],[112.0214,-7.7591],[112.0202,-7.7632],[112.0106,-7.7611],[112.006,-7.757],[112.0016,-7.7486],[111.9993,-7.7416],[111.9974,-7.7291],[111.9931,-7.7282],[111.988,-7.7237],[111.9873,-7.7148],[111.9822,-7.7104],[111.983,-7.6871],[111.9821,-7.6844],[111.9639,-7.6819],[111.9577,-7.679],[111.9545,-7.6798],[111.9501,-7.6913],[111.9479,-7.6941],[111.9424,-7.6936],[111.9391,-7.7009],[111.9353,-7.7031],[111.9315,-7.7101],[111.9325,-7.7136],[111.9278,-7.7228],[111.9183,-7.7258],[111.9137,-7.7322],[111.907,-7.7343],[111.8962,-7.7444],[111.8891,-7.7529],[111.8857,-7.7549],[111.8834,-7.7614],[111.8798,-7.765],[111.8662,-7.7746],[111.8622,-7.7765],[111.854,-7.7863],[111.8522,-7.7865],[111.839,-7.7963],[111.8251,-7.8111],[111.814,-7.813],[111.8133,-7.8227],[111.8047,-7.8285],[111.7992,-7.8366],[111.7971,-7.8425],[111.7972,-7.8479],[111.802,-7.8563],[111.8027,-7.8657],[111.8104,-7.8664],[111.8168,-7.872],[111.8304,-7.8774],[111.8375,-7.8837],[111.8447,-7.8916],[111.8512,-7.9009],[111.863,-7.9077],[111.8629,-7.9107],[111.8691,-7.9178],[111.8788,-7.9346],[111.8802,-7.9429],[111.8828,-7.9472],[111.8918,-7.9527],[111.8961,-7.9522],[111.9014,-7.9563],[111.9092,-7.9572],[111.9168,-7.9611],[111.9181,-7.9564],[111.9214,-7.9564],[111.9253,-7.9604],[111.9312,-7.9623],[111.9362,-7.9564],[111.9458,-7.956],[111.9471,-7.9711],[111.9503,-7.9747],[111.9511,-7.9806],[111.9556,-7.9899],[111.9571,-7.9975],[111.9615,-7.9987],[111.9636,-8.0055],[111.9771,-8.0115],[111.979,-8.0046],[111.9765,-8.0026],[111.9775,-7.9963],[111.9863,-7.9964],[112.0134,-7.9993],[112.019,-7.9995],[112.0366,-7.9947],[112.0368,-7.9932],[112.0482,-7.9936],[112.0536,-7.9906],[112.0739,-7.9901],[112.0788,-7.9912],[112.0908,-7.9916],[112.096,-7.9902],[112.0983,-7.9774],[112.0961,-7.9699],[112.1079,-7.9693],[112.1135,-7.9707],[112.1141,-7.9774],[112.1266,-7.9776],[112.1543,-7.9769],[112.1602,-7.9752],[112.1683,-7.9751],[112.18,-7.9734],[112.1932,-7.9696],[112.2013,-7.964],[112.2162,-7.9627],[112.2255,-7.959],[112.2296,-7.9549],[112.2325,-7.9555],[112.2429,-7.9519],[112.2495,-7.9532],[112.2549,-7.9516],[112.2631,-7.9444],[112.2749,-7.9453],[112.2788,-7.9405],[112.2868,-7.9396],[112.2938,-7.9372],[112.2989,-7.9371],[112.3045,-7.9297],[112.3066,-7.9293],[112.3106,-7.9264],[112.314,-7.9182],[112.312,-7.9047],[112.3178,-7.8956],[112.3234,-7.8916],[112.3251,-7.8834],[112.3257,-7.8713],[112.3226,-7.8655],[112.3187,-7.8626],[112.3212,-7.8555],[112.3203,-7.8501],[112.3173,-7.8466],[112.3194,-7.8391],[112.3156,-7.8375],[112.3095,-7.8392],[112.3095,-7.8338],[112.307,-7.8302],[112.3084,-7.8232],[112.3053,-7.8122],[112.3071,-7.7993],[112.2974,-7.7895],[112.2927,-7.7813],[112.288,-7.7791],[112.2877,-7.771],[112.2924,-7.7688],[112.3066,-7.7733],[112.3104,-7.7768],[112.3199,-7.7778],[112.3286,-7.7773],[112.3333,-7.7757],[112.3394,-7.7682],[112.3489,-7.7613],[112.3526,-7.7639],[112.3674,-7.7685],[112.3737,-7.7749],[112.3778,-7.7819],[112.3822,-7.7851],[112.3886,-7.783],[112.3974,-7.7854],[112.4053,-7.7821],[112.4181,-7.7743],[112.4222,-7.7669]],[[112.0013,-7.7711],[112.0054,-7.7726],[112.0062,-7.7828],[112.0109,-7.7898],[112.016,-7.7916],[112.016,-7.7957],[112.0245,-7.7996],[112.0286,-7.8062],[112.0294,-7.8116],[112.0358,-7.8128],[112.0333,-7.8188],[112.0432,-7.8231],[112.0427,-7.8273],[112.0511,-7.8317],[112.0552,-7.8325],[112.0579,-7.8362],[112.0623,-7.8356],[112.074,-7.8373],[112.0814,-7.8427],[112.0776,-7.8492],[112.0695,-7.8452],[112.0678,-7.849],[112.0659,-7.8604],[112.0737,-7.8681],[112.0724,-7.8728],[112.0667,-7.8688],[112.058,-7.8651],[112.0554,-7.8704],[112.0476,-7.8678],[112.0424,-7.8717],[112.0222,-7.8685],[112.0172,-7.8615],[112.011,-7.8618],[112.0097,-7.856],[111.9999,-7.8527],[112.0044,-7.8462],[112.0036,-7.8425],[111.9842,-7.8378],[111.987,-7.8296],[111.975,-7.8244],[111.9581,-7.8229],[111.9544,-7.8124],[111.9563,-7.7967],[111.9713,-7.7911],[111.9766,-7.7935],[111.9827,-7.7867],[111.9835,-7.7809],[111.9906,-7.7815],[111.9926,-7.7755],[111.9973,-7.7716],[112.0013,-7.7711]]]}},{"type":"Feature","properties":{"mhid":"1332:242","alt_name":"KABUPATEN MALANG","latitude":-8.16667,"longitude":112.66667,"sample_value":773},"geometry":{"type":"LineString","coordinates":[[112.6988,-8.4299],[112.6918,-8.431],[112.6802,-8.4415],[112.6787,-8.4454],[112.6796,-8.4526],[112.6895,-8.4532],[112.6923,-8.4568],[112.7021,-8.4633],[112.7125,-8.4587],[112.7115,-8.4495],[112.7122,-8.4342],[112.7021,-8.4299],[112.6988,-8.4299]]}},{"type":"Feature","properties":{"mhid":"1332:242","alt_name":"KABUPATEN MALANG","latitude":-8.16667,"longitude":112.66667,"sample_value":773},"geometry":{"type":"MultiLineString","coordinates":[[[112.4222,-7.7669],[112.4181,-7.7743],[112.4053,-7.7821],[112.3974,-7.7854],[112.3886,-7.783],[112.3822,-7.7851],[112.3778,-7.7819],[112.3737,-7.7749],[112.3674,-7.7685],[112.3526,-7.7639],[112.3489,-7.7613],[112.3394,-7.7682],[112.3333,-7.7757],[112.3286,-7.7773],[112.3199,-7.7778],[112.3104,-7.7768],[112.3066,-7.7733],[112.2924,-7.7688],[112.2877,-7.771],[112.288,-7.7791],[112.2927,-7.7813],[112.2974,-7.7895],[112.3071,-7.7993],[112.3053,-7.8122],[112.3084,-7.8232],[112.307,-7.8302],[112.3095,-7.8338],[112.3095,-7.8392],[112.3156,-7.8375],[112.3194,-7.8391],[112.3173,-7.8466],[112.3203,-7.8501],[112.3212,-7.8555],[112.3187,-7.8626],[112.3226,-7.8655],[112.3257,-7.8713],[112.3251,-7.8834],[112.3234,-7.8916],[112.3178,-7.8956],[112.312,-7.9047],[112.314,-7.9182],[112.3106,-7.9264],[112.3066,-7.9293],[112.3173,-7.9315],[112.3222,-7.9344],[112.3335,-7.9383],[112.3426,-7.9405],[112.3433,-7.9436],[112.349,-7.9464],[112.3566,-7.9465],[112.3632,-7.9502],[112.3648,-7.9554],[112.3705,-7.9573],[112.374,-7.9554],[112.3776,-7.9503],[112.3848,-7.9483],[112.3923,-7.9432],[112.3952,-7.9397],[112.4041,-7.9344],[112.4103,-7.9346],[112.4199,-7.9298],[112.4242,-7.9252],[112.4316,-7.9215],[112.438,-7.9137],[112.4461,-7.9111],[112.4524,-7.9187],[112.4515,-7.9275],[112.4582,-7.9334],[112.4659,-7.9462],[112.4644,-7.9518],[112.4678,-7.9569],[112.4745,-7.9581],[112.4789,-7.9721],[112.4694,-7.9852],[112.4684,-7.9886],[112.4713,-7.9953],[112.4681,-8],[112.4676,-8.0071],[112.4638,-8.0201],[112.4644,-8.03],[112.4597,-8.0367],[112.4593,-8.0433],[112.4559,-8.0503],[112.454,-8.0618],[112.4578,-8.0674],[112.4562,-8.076],[112.4568,-8.081],[112.4548,-8.09],[112.4543,-8.1067],[112.4578,-8.1109],[112.4584,-8.118],[112.4529,-8.1334],[112.4525,-8.1442],[112.4492,-8.1473],[112.4403,-8.1488],[112.4364,-8.1547],[112.4312,-8.1586],[112.4255,-8.1597],[112.4227,-8.1581],[112.4173,-8.1601],[112.4161,-8.1654],[112.4105,-8.1604],[112.4035,-8.1631],[112.3953,-8.1646],[112.3895,-8.1625],[112.383,-8.1692],[112.3787,-8.1708],[112.372,-8.1704],[112.366,-8.1755],[112.3668,-8.1833],[112.3772,-8.1873],[112.3822,-8.1919],[112.3854,-8.1926],[112.3866,-8.201],[112.383,-8.2074],[112.39,-8.2178],[112.3934,-8.2279],[112.3932,-8.2316],[112.3896,-8.2354],[112.3822,-8.2378],[112.3807,-8.2524],[112.3816,-8.2682],[112.3846,-8.2813],[112.3845,-8.2891],[112.3827,-8.2959],[112.3755,-8.308],[112.3714,-8.3109],[112.3701,-8.3237],[112.3643,-8.3285],[112.3608,-8.3467],[112.359,-8.3485],[112.3652,-8.3534],[112.3655,-8.3574],[112.3695,-8.3683],[112.3734,-8.3759],[112.3798,-8.3765],[112.3889,-8.3752],[112.3941,-8.3759],[112.396,-8.3812],[112.4026,-8.38],[112.4123,-8.3801],[112.4241,-8.3835],[112.4259,-8.388],[112.4295,-8.3898],[112.4347,-8.389],[112.4398,-8.3953],[112.4443,-8.397],[112.4531,-8.3948],[112.4538,-8.3969],[112.4644,-8.3967],[112.4705,-8.3942],[112.4836,-8.3968],[112.4944,-8.4011],[112.5083,-8.4],[112.5102,-8.3952],[112.521,-8.3978],[112.5252,-8.4035],[112.5452,-8.4036],[112.5478,-8.4058],[112.5528,-8.402],[112.5726,-8.4076],[112.578,-8.4128],[112.5867,-8.4177],[112.5958,-8.4168],[112.6103,-8.4215],[112.6148,-8.4266],[112.6139,-8.4304],[112.618,-8.4343],[112.6243,-8.4288],[112.6324,-8.4298],[112.64,-8.4349],[112.6425,-8.4424],[112.6493,-8.447],[112.656,-8.4471],[112.6676,-8.4411],[112.6705,-8.4454],[112.6798,-8.4369],[112.6913,-8.428],[112.7015,-8.4254],[112.7044,-8.4204],[112.7089,-8.4178],[112.7206,-8.4199],[112.7257,-8.4173],[112.7294,-8.4201],[112.7368,-8.4161],[112.7431,-8.4187],[112.7529,-8.413],[112.7592,-8.4113],[112.7691,-8.4053],[112.7678,-8.393],[112.7714,-8.3864],[112.7814,-8.3858],[112.7855,-8.3916],[112.7831,-8.3979],[112.7877,-8.3987],[112.7917,-8.4039],[112.7988,-8.4062],[112.8043,-8.3982],[112.8107,-8.4009],[112.8147,-8.3997],[112.8196,-8.3919],[112.8161,-8.3879],[112.8173,-8.3799],[112.8211,-8.3726],[112.8264,-8.3729],[112.8338,-8.3693],[112.8374,-8.3747],[112.8378,-8.3824],[112.8425,-8.383],[112.8446,-8.3767],[112.8481,-8.3773],[112.8459,-8.3878],[112.8497,-8.3879],[112.8485,-8.3933],[112.8437,-8.4006],[112.8481,-8.405],[112.8538,-8.4015],[112.8597,-8.4005],[112.8643,-8.3944],[112.8687,-8.3995],[112.8686,-8.4072],[112.8718,-8.4087],[112.8766,-8.4071],[112.8792,-8.4035],[112.8852,-8.4002],[112.8976,-8.3997],[112.8978,-8.3942],[112.8933,-8.3889],[112.8961,-8.3807],[112.9001,-8.3793],[112.9067,-8.3812],[112.9053,-8.3908],[112.9117,-8.3909],[112.9109,-8.3989],[112.9159,-8.3979],[112.9152,-8.3943],[112.9232,-8.3913],[112.9249,-8.3881],[112.9316,-8.3887],[112.9307,-8.3834],[112.9381,-8.3817],[112.9399,-8.3724],[112.9456,-8.3698],[112.9457,-8.3642],[112.9509,-8.3573],[112.9596,-8.3532],[112.9559,-8.3487],[112.9421,-8.3388],[112.9382,-8.3371],[112.9341,-8.3303],[112.9358,-8.3247],[112.9398,-8.3215],[112.9427,-8.3157],[112.9413,-8.3109],[112.9334,-8.3074],[112.9286,-8.3085],[112.9185,-8.3072],[112.9149,-8.3016],[112.917,-8.2942],[112.912,-8.2928],[112.9072,-8.2833],[112.9039,-8.2808],[112.901,-8.2733],[112.9078,-8.2711],[112.9115,-8.263],[112.9149,-8.2621],[112.9183,-8.2575],[112.9207,-8.2474],[112.921,-8.2414],[112.9165,-8.2337],[112.9127,-8.2202],[112.9115,-8.2027],[112.909,-8.1946],[112.9065,-8.1916],[112.9068,-8.1856],[112.9035,-8.1743],[112.9037,-8.1541],[112.9097,-8.1481],[112.9104,-8.1436],[112.9168,-8.1348],[112.9195,-8.127],[112.9194,-8.1226],[112.9253,-8.1115],[112.9222,-8.1078],[112.9213,-8.0977],[112.9232,-8.087],[112.9154,-8.0854],[112.9122,-8.082],[112.9058,-8.0816],[112.9037,-8.0751],[112.9008,-8.0715],[112.9003,-8.0599],[112.9092,-8.05],[112.9084,-8.0424],[112.9182,-8.0327],[112.9227,-8.0318],[112.9277,-8.0243],[112.9347,-8.0188],[112.9341,-8.0124],[112.926,-8.0025],[112.927,-7.9971],[112.9333,-8.0006],[112.9363,-8.0003],[112.9379,-7.9904],[112.9422,-7.9834],[112.9355,-7.9798],[112.9282,-7.9686],[112.9286,-7.9608],[112.9353,-7.9562],[112.9149,-7.9514],[112.9118,-7.9542],[112.9068,-7.9526],[112.9025,-7.9476],[112.8961,-7.9474],[112.8851,-7.9525],[112.882,-7.949],[112.8739,-7.9454],[112.8705,-7.947],[112.8562,-7.9397],[112.8479,-7.942],[112.8358,-7.941],[112.8337,-7.9387],[112.8227,-7.9319],[112.8208,-7.9278],[112.8134,-7.9279],[112.8054,-7.9255],[112.8019,-7.9199],[112.7967,-7.9177],[112.7921,-7.9125],[112.7841,-7.8997],[112.7851,-7.8971],[112.7804,-7.8922],[112.7773,-7.8789],[112.7807,-7.8741],[112.7726,-7.8672],[112.7667,-7.868],[112.7634,-7.8641],[112.7586,-7.8648],[112.7606,-7.8584],[112.7583,-7.8535],[112.7419,-7.8471],[112.7343,-7.8349],[112.7367,-7.8275],[112.7309,-7.8195],[112.7194,-7.8194],[112.7112,-7.8252],[112.6983,-7.8137],[112.6889,-7.8139],[112.6764,-7.8103],[112.6695,-7.8069],[112.6571,-7.8056],[112.6549,-7.801],[112.6564,-7.7975],[112.6416,-7.7952],[112.6382,-7.7907],[112.6306,-7.7917],[112.6164,-7.7877],[112.6053,-7.7718],[112.6023,-7.7692],[112.5915,-7.7659],[112.5882,-7.7667],[112.5829,-7.7729],[112.5829,-7.7783],[112.5861,-7.7844],[112.5771,-7.7919],[112.572,-7.7996],[112.5697,-7.8061],[112.5632,-7.8137],[112.5657,-7.8358],[112.5645,-7.8618],[112.5656,-7.8682],[112.5644,-7.8809],[112.5722,-7.8909],[112.582,-7.8899],[112.5865,-7.8938],[112.5947,-7.9034],[112.5892,-7.9091],[112.5835,-7.9093],[112.5794,-7.915],[112.576,-7.9169],[112.5729,-7.9137],[112.5663,-7.9134],[112.5569,-7.9162],[112.5546,-7.9187],[112.5343,-7.9255],[112.5315,-7.9247],[112.5204,-7.9268],[112.5127,-7.9225],[112.5021,-7.9264],[112.4849,-7.9339],[112.4769,-7.9391],[112.4736,-7.9337],[112.4744,-7.9222],[112.4761,-7.9152],[112.4753,-7.9043],[112.4789,-7.8949],[112.488,-7.8817],[112.4896,-7.8762],[112.4876,-7.8713],[112.4878,-7.8643],[112.4911,-7.8579],[112.495,-7.8544],[112.4929,-7.8458],[112.4962,-7.8379],[112.4931,-7.8295],[112.4925,-7.8239],[112.4951,-7.8141],[112.4917,-7.8071],[112.4878,-7.8043],[112.4885,-7.7955],[112.487,-7.7862],[112.4839,-7.782],[112.4827,-7.774],[112.4782,-7.7689],[112.4742,-7.7671],[112.4647,-7.7681],[112.4608,-7.7702],[112.4558,-7.7791],[112.4522,-7.779],[112.441,-7.7751],[112.4372,-7.7681],[112.4304,-7.7715],[112.4222,-7.7669]],[[112.5816,-7.9449],[112.5708,-7.939],[112.5739,-7.9352],[112.5853,-7.9379],[112.59,-7.9362],[112.5987,-7.9365],[112.5975,-7.9299],[112.6025,-7.9216],[112.6095,-7.9239],[112.6106,-7.9197],[112.6178,-7.9198],[112.6303,-7.9113],[112.6406,-7.9207],[112.6459,-7.9164],[112.6497,-7.9198],[112.6598,-7.9249],[112.665,-7.9367],[112.6655,-7.9434],[112.6637,-7.948],[112.6634,-7.9589],[112.6572,-7.965],[112.6681,-7.9692],[112.6812,-7.9756],[112.6897,-7.9755],[112.6888,-7.9807],[112.6948,-7.9827],[112.6937,-7.9875],[112.6893,-7.997],[112.6843,-8.005],[112.6793,-8.0054],[112.6789,-8.0103],[112.672,-8.0089],[112.6732,-8.0185],[112.672,-8.0249],[112.6754,-8.0277],[112.6728,-8.0319],[112.6679,-8.035],[112.6655,-8.0409],[112.6626,-8.0399],[112.6575,-8.0454],[112.6568,-8.0497],[112.6488,-8.0479],[112.6455,-8.0513],[112.6317,-8.0459],[112.6309,-8.035],[112.6176,-8.0266],[112.6189,-8.0234],[112.614,-8.0212],[112.6179,-8.0167],[112.6133,-8.0152],[112.6069,-8.0174],[112.6062,-8.0108],[112.5998,-8.0063],[112.5971,-8.0063],[112.5988,-7.9959],[112.5891,-7.9924],[112.5913,-7.9861],[112.5829,-7.9873],[112.5782,-7.9848],[112.5819,-7.9801],[112.5921,-7.9849],[112.598,-7.9846],[112.5985,-7.9797],[112.5894,-7.9752],[112.591,-7.9731],[112.5988,-7.9747],[112.6028,-7.9717],[112.6022,-7.9671],[112.598,-7.9629],[112.5993,-7.9567],[112.5907,-7.9555],[112.5896,-7.9468],[112.5866,-7.9479],[112.5816,-7.9449]]]}},{"type":"Feature","properties":{"mhid":"1332:243","alt_name":"KABUPATEN LUMAJANG","latitude":-8.11667,"longitude":113.15,"sample_value":722},"geometry":{"type":"LineString","coordinates":[[113.363,-8.0277],[113.3671,-8.0215],[113.3639,-8.0144],[113.3615,-7.9962],[113.3565,-7.9837],[113.3503,-7.9799],[113.3465,-7.9752],[113.3464,-7.9607],[113.345,-7.9561],[113.3324,-7.941],[113.3282,-7.932],[113.3227,-7.9281],[113.3083,-7.9265],[113.2996,-7.9276],[113.28,-7.9286],[113.2746,-7.9295],[113.2707,-7.9202],[113.2681,-7.9178],[113.2674,-7.9013],[113.262,-7.8987],[113.2581,-7.9001],[113.2573,-7.9061],[113.2482,-7.9079],[113.2337,-7.9027],[113.2075,-7.898],[113.2089,-7.9075],[113.2119,-7.9109],[113.2061,-7.9199],[113.2061,-7.9269],[113.2007,-7.929],[113.1908,-7.945],[113.1875,-7.9451],[113.1801,-7.9503],[113.1773,-7.9563],[113.1718,-7.9616],[113.1679,-7.9622],[113.1612,-7.9686],[113.1543,-7.9712],[113.151,-7.9782],[113.1407,-7.9784],[113.136,-7.9766],[113.1242,-7.9848],[113.1212,-7.9902],[113.1147,-7.9917],[113.105,-7.9814],[113.0935,-7.9818],[113.0847,-7.9808],[113.0706,-7.9816],[113.0652,-7.9845],[113.0628,-7.9889],[113.0635,-8.0014],[113.0592,-8.0096],[113.0538,-8.0093],[113.051,-8.0061],[113.0484,-7.9992],[113.0445,-7.9943],[113.0425,-7.9885],[113.0351,-7.9798],[113.0257,-7.9732],[113.0221,-7.9692],[113.0145,-7.969],[113.0092,-7.9637],[113,-7.9632],[112.994,-7.9616],[112.9845,-7.9719],[112.9802,-7.9746],[112.9763,-7.9795],[112.9665,-7.9817],[112.9588,-7.9856],[112.9476,-7.9864],[112.9422,-7.9834],[112.9379,-7.9904],[112.9363,-8.0003],[112.9333,-8.0006],[112.927,-7.9971],[112.926,-8.0025],[112.9341,-8.0124],[112.9347,-8.0188],[112.9277,-8.0243],[112.9227,-8.0318],[112.9182,-8.0327],[112.9084,-8.0424],[112.9092,-8.05],[112.9003,-8.0599],[112.9008,-8.0715],[112.9037,-8.0751],[112.9058,-8.0816],[112.9122,-8.082],[112.9154,-8.0854],[112.9232,-8.087],[112.9213,-8.0977],[112.9222,-8.1078],[112.9253,-8.1115],[112.9194,-8.1226],[112.9195,-8.127],[112.9168,-8.1348],[112.9104,-8.1436],[112.9097,-8.1481],[112.9037,-8.1541],[112.9035,-8.1743],[112.9068,-8.1856],[112.9065,-8.1916],[112.909,-8.1946],[112.9115,-8.2027],[112.9127,-8.2202],[112.9165,-8.2337],[112.921,-8.2414],[112.9207,-8.2474],[112.9183,-8.2575],[112.9149,-8.2621],[112.9115,-8.263],[112.9078,-8.2711],[112.901,-8.2733],[112.9039,-8.2808],[112.9072,-8.2833],[112.912,-8.2928],[112.917,-8.2942],[112.9149,-8.3016],[112.9185,-8.3072],[112.9286,-8.3085],[112.9334,-8.3074],[112.9413,-8.3109],[112.9427,-8.3157],[112.9398,-8.3215],[112.9358,-8.3247],[112.9341,-8.3303],[112.9382,-8.3371],[112.9421,-8.3388],[112.9559,-8.3487],[112.9596,-8.3532],[112.964,-8.3458],[112.9657,-8.3407],[112.9703,-8.3332],[112.9794,-8.3252],[112.9866,-8.3214],[113.0111,-8.3109],[113.0332,-8.3045],[113.0383,-8.3018],[113.0503,-8.2978],[113.0655,-8.2974],[113.0716,-8.2887],[113.0776,-8.2859],[113.0927,-8.2867],[113.108,-8.2905],[113.1233,-8.2912],[113.1437,-8.2872],[113.1472,-8.2847],[113.1615,-8.282],[113.1828,-8.2804],[113.2064,-8.2803],[113.2276,-8.2825],[113.2463,-8.2854],[113.2614,-8.289],[113.2824,-8.2962],[113.3034,-8.3075],[113.3095,-8.2989],[113.317,-8.2782],[113.3197,-8.2656],[113.3191,-8.2572],[113.3153,-8.2485],[113.3156,-8.2385],[113.3117,-8.2335],[113.3132,-8.2287],[113.3272,-8.2209],[113.3314,-8.2154],[113.3334,-8.2083],[113.3369,-8.2063],[113.3443,-8.2078],[113.3528,-8.2039],[113.3527,-8.2008],[113.3611,-8.1891],[113.3679,-8.1851],[113.3686,-8.1798],[113.3662,-8.1738],[113.3667,-8.1679],[113.3727,-8.1665],[113.3796,-8.1572],[113.379,-8.1485],[113.373,-8.1474],[113.3723,-8.1436],[113.3766,-8.1353],[113.376,-8.1312],[113.3702,-8.1278],[113.3676,-8.1202],[113.3624,-8.1173],[113.3684,-8.1107],[113.3622,-8.101],[113.3646,-8.0964],[113.3663,-8.0851],[113.357,-8.078],[113.3569,-8.0733],[113.3487,-8.0549],[113.3557,-8.0363],[113.363,-8.0277]]}},{"type":"Feature","properties":{"mhid":"1332:244","alt_name":"KABUPATEN JEMBER","latitude":-8.25,"longitude":113.65,"sample_value":496},"geometry":{"type":"LineString","coordinates":[[113.301,-8.4472],[113.2959,-8.4441],[113.2904,-8.4457],[113.2933,-8.4496],[113.2904,-8.4578],[113.2824,-8.4634],[113.2743,-8.4634],[113.2679,-8.4678],[113.2689,-8.4702],[113.2629,-8.4853],[113.2637,-8.4889],[113.2696,-8.49],[113.268,-8.497],[113.2787,-8.499],[113.2843,-8.4984],[113.2885,-8.5037],[113.2955,-8.5073],[113.2985,-8.5025],[113.3057,-8.5088],[113.3117,-8.5047],[113.3156,-8.5066],[113.3234,-8.5031],[113.3311,-8.5035],[113.3409,-8.5006],[113.3473,-8.5035],[113.3583,-8.5009],[113.3636,-8.5017],[113.383,-8.4959],[113.3895,-8.4961],[113.3945,-8.4938],[113.3986,-8.4966],[113.4028,-8.4931],[113.4077,-8.4928],[113.41,-8.4841],[113.4103,-8.4759],[113.4151,-8.4752],[113.4195,-8.4705],[113.4162,-8.4682],[113.4058,-8.4658],[113.4003,-8.4579],[113.3966,-8.4552],[113.382,-8.4587],[113.3783,-8.4567],[113.3708,-8.4585],[113.3675,-8.4547],[113.3588,-8.4529],[113.3528,-8.4493],[113.3477,-8.4556],[113.3435,-8.458],[113.34,-8.454],[113.3355,-8.453],[113.3318,-8.4485],[113.3255,-8.4526],[113.3137,-8.4521],[113.3093,-8.4496],[113.3027,-8.4494],[113.301,-8.4472]]}},{"type":"Feature","properties":{"mhid":"1332:244","alt_name":"KABUPATEN JEMBER","latitude":-8.25,"longitude":113.65,"sample_value":496},"geometry":{"type":"LineString","coordinates":[[114.0433,-8.1338],[114.0434,-8.1319],[114.0347,-8.1284],[114.0368,-8.1248],[114.0295,-8.1146],[114.0281,-8.102],[114.0282,-8.0951],[114.0221,-8.0927],[114.0191,-8.0873],[114.0137,-8.0843],[114.0097,-8.0753],[114.0008,-8.0692],[113.9961,-8.0696],[113.9872,-8.067],[113.9781,-8.0618],[113.9702,-8.055],[113.9609,-8.0559],[113.9534,-8.0518],[113.9505,-8.0469],[113.9469,-8.0445],[113.9386,-8.0424],[113.9376,-8.0391],[113.9288,-8.0345],[113.9188,-8.0252],[113.9083,-8.0226],[113.9028,-8.0183],[113.8962,-8.0183],[113.89,-8.0144],[113.885,-8.0187],[113.8836,-8.0252],[113.8849,-8.03],[113.8725,-8.0299],[113.8677,-8.0358],[113.8606,-8.0299],[113.8544,-8.0221],[113.8513,-8.0271],[113.8547,-8.0393],[113.8546,-8.0454],[113.8415,-8.0488],[113.8356,-8.046],[113.83,-8.0479],[113.8241,-8.0454],[113.8124,-8.0462],[113.8077,-8.0508],[113.8058,-8.0563],[113.8022,-8.0577],[113.7954,-8.0554],[113.7911,-8.0499],[113.7818,-8.0503],[113.7793,-8.0441],[113.772,-8.0383],[113.7678,-8.0442],[113.763,-8.0469],[113.7581,-8.0578],[113.7538,-8.0519],[113.7502,-8.0526],[113.752,-8.0601],[113.749,-8.0654],[113.7451,-8.0547],[113.7461,-8.0513],[113.7397,-8.0469],[113.7392,-8.0426],[113.7355,-8.0396],[113.7306,-8.0299],[113.7262,-8.0236],[113.7194,-8.022],[113.7091,-8.0116],[113.6872,-8.0115],[113.6852,-8.0058],[113.677,-7.993],[113.6721,-7.987],[113.6692,-7.9742],[113.6709,-7.9683],[113.6634,-7.9686],[113.6552,-7.9706],[113.652,-7.9735],[113.6436,-7.9731],[113.638,-7.9757],[113.6277,-7.9759],[113.6271,-7.9815],[113.6188,-7.9835],[113.6196,-7.9876],[113.616,-7.9893],[113.6069,-7.99],[113.6043,-7.9868],[113.604,-7.9806],[113.5938,-7.9791],[113.5894,-7.9854],[113.5764,-7.9851],[113.5705,-7.9878],[113.5632,-7.9863],[113.5597,-7.9873],[113.5575,-7.9935],[113.5525,-7.9982],[113.5452,-7.9995],[113.5391,-8.0064],[113.5279,-8.0126],[113.5287,-8.016],[113.5142,-8.0138],[113.5042,-8.0072],[113.4969,-8.005],[113.4892,-7.9967],[113.483,-7.9965],[113.4804,-7.9924],[113.4764,-7.9965],[113.4819,-8.008],[113.4799,-8.0165],[113.4724,-8.022],[113.4662,-8.0229],[113.4618,-8.0215],[113.4583,-8.0247],[113.4524,-8.0236],[113.4439,-8.0241],[113.4446,-8.0204],[113.4324,-8.0205],[113.4329,-8.0162],[113.4254,-8.0112],[113.4122,-8.0115],[113.4085,-8.0131],[113.4063,-8.0091],[113.3916,-7.9974],[113.3886,-8.0041],[113.3872,-8.0137],[113.3799,-8.0163],[113.379,-8.0203],[113.37,-8.0227],[113.363,-8.0277],[113.3557,-8.0363],[113.3487,-8.0549],[113.3569,-8.0733],[113.357,-8.078],[113.3663,-8.0851],[113.3646,-8.0964],[113.3622,-8.101],[113.3684,-8.1107],[113.3624,-8.1173],[113.3676,-8.1202],[113.3702,-8.1278],[113.376,-8.1312],[113.3766,-8.1353],[113.3723,-8.1436],[113.373,-8.1474],[113.379,-8.1485],[113.3796,-8.1572],[113.3727,-8.1665],[113.3667,-8.1679],[113.3662,-8.1738],[113.3686,-8.1798],[113.3679,-8.1851],[113.3611,-8.1891],[113.3527,-8.2008],[113.3528,-8.2039],[113.3443,-8.2078],[113.3369,-8.2063],[113.3334,-8.2083],[113.3314,-8.2154],[113.3272,-8.2209],[113.3132,-8.2287],[113.3117,-8.2335],[113.3156,-8.2385],[113.3153,-8.2485],[113.3191,-8.2572],[113.3197,-8.2656],[113.317,-8.2782],[113.3095,-8.2989],[113.3034,-8.3075],[113.3109,-8.3109],[113.3302,-8.3234],[113.3378,-8.3292],[113.3584,-8.3503],[113.3647,-8.3577],[113.3723,-8.3693],[113.3863,-8.3983],[113.3923,-8.4],[113.4029,-8.3929],[113.4064,-8.3888],[113.41,-8.3887],[113.4221,-8.3821],[113.4356,-8.3787],[113.4494,-8.3782],[113.4592,-8.3794],[113.4736,-8.3841],[113.4757,-8.3976],[113.4795,-8.4105],[113.4848,-8.4163],[113.4942,-8.4134],[113.4982,-8.4177],[113.5031,-8.4185],[113.5073,-8.422],[113.5118,-8.4215],[113.5272,-8.4306],[113.533,-8.4293],[113.5491,-8.4303],[113.5534,-8.4316],[113.5578,-8.4267],[113.5657,-8.4248],[113.5741,-8.4271],[113.5816,-8.4335],[113.5806,-8.4384],[113.587,-8.4425],[113.5921,-8.4367],[113.6019,-8.4363],[113.6214,-8.4448],[113.6265,-8.4491],[113.6247,-8.4535],[113.6279,-8.4562],[113.6382,-8.455],[113.6404,-8.4576],[113.642,-8.4653],[113.6377,-8.4682],[113.6362,-8.4724],[113.6381,-8.476],[113.6448,-8.478],[113.6484,-8.4813],[113.6489,-8.4867],[113.645,-8.4894],[113.6462,-8.495],[113.6563,-8.4941],[113.6607,-8.4984],[113.6691,-8.4982],[113.6701,-8.495],[113.6759,-8.4917],[113.681,-8.4936],[113.685,-8.4921],[113.6863,-8.5033],[113.6905,-8.5053],[113.6951,-8.5002],[113.6948,-8.4959],[113.7031,-8.4908],[113.7004,-8.4863],[113.7046,-8.4819],[113.7111,-8.4823],[113.7171,-8.4853],[113.7218,-8.4972],[113.7197,-8.5035],[113.7132,-8.5148],[113.712,-8.5285],[113.7161,-8.5273],[113.72,-8.5191],[113.7316,-8.5154],[113.7338,-8.5174],[113.7329,-8.5234],[113.7376,-8.5261],[113.7444,-8.5217],[113.7538,-8.5198],[113.7612,-8.5156],[113.7596,-8.5122],[113.7547,-8.5104],[113.7578,-8.5034],[113.7647,-8.5012],[113.7671,-8.5048],[113.7865,-8.4929],[113.7895,-8.4896],[113.7961,-8.4898],[113.8068,-8.4951],[113.8115,-8.4989],[113.8107,-8.505],[113.8066,-8.5061],[113.8056,-8.5099],[113.8104,-8.5142],[113.8066,-8.5175],[113.8097,-8.5343],[113.8143,-8.5337],[113.8157,-8.5373],[113.8097,-8.548],[113.807,-8.5476],[113.8068,-8.5554],[113.8146,-8.5588],[113.8159,-8.5555],[113.8162,-8.5457],[113.8203,-8.5449],[113.8256,-8.5411],[113.8252,-8.5381],[113.8288,-8.5277],[113.8348,-8.5282],[113.8383,-8.5355],[113.834,-8.5411],[113.8368,-8.5474],[113.8371,-8.554],[113.8438,-8.5458],[113.8468,-8.5339],[113.8521,-8.5273],[113.8554,-8.5154],[113.8453,-8.5068],[113.8425,-8.5021],[113.8421,-8.4943],[113.8448,-8.475],[113.848,-8.4635],[113.8483,-8.4539],[113.8505,-8.4468],[113.8532,-8.4326],[113.8572,-8.4273],[113.8758,-8.4158],[113.882,-8.4171],[113.8883,-8.4112],[113.8921,-8.4109],[113.897,-8.4176],[113.901,-8.4266],[113.8992,-8.4343],[113.9054,-8.44],[113.9102,-8.4419],[113.9287,-8.4284],[113.9347,-8.4224],[113.9374,-8.4091],[113.9457,-8.4032],[113.9445,-8.3976],[113.936,-8.3929],[113.933,-8.3888],[113.9253,-8.3863],[113.9273,-8.3799],[113.9247,-8.3752],[113.9201,-8.3584],[113.9158,-8.3481],[113.9102,-8.3465],[113.9131,-8.3405],[113.9211,-8.335],[113.9269,-8.3279],[113.9258,-8.3242],[113.9284,-8.32],[113.9238,-8.3157],[113.9211,-8.309],[113.9221,-8.3033],[113.9259,-8.294],[113.9289,-8.2929],[113.9301,-8.2861],[113.9333,-8.2835],[113.9351,-8.2693],[113.9373,-8.2663],[113.934,-8.2614],[113.9342,-8.2555],[113.9442,-8.2445],[113.9524,-8.2429],[113.9594,-8.2433],[113.9628,-8.2404],[113.9666,-8.2322],[113.9652,-8.2255],[113.9679,-8.222],[113.9631,-8.215],[113.9596,-8.2039],[113.9641,-8.2007],[113.9707,-8.1895],[113.9808,-8.1874],[113.9909,-8.1826],[113.9965,-8.1765],[113.9992,-8.1705],[114.0036,-8.1659],[114.0042,-8.1622],[114.0119,-8.1543],[114.0179,-8.1461],[114.0239,-8.1403],[114.0354,-8.1403],[114.0393,-8.1388],[114.0433,-8.1338]]}},{"type":"Feature","properties":{"mhid":"1332:245","alt_name":"KABUPATEN BANYUWANGI","latitude":-8.33333,"longitude":114.2,"sample_value":423},"geometry":{"type":"LineString","coordinates":[[114.4238,-7.9355],[114.4197,-7.9344],[114.4135,-7.9401],[114.4065,-7.9373],[114.401,-7.9328],[114.3967,-7.9269],[114.3874,-7.926],[114.3726,-7.9187],[114.3655,-7.9182],[114.3615,-7.9144],[114.3447,-7.9115],[114.3432,-7.9075],[114.3332,-7.9069],[114.3302,-7.902],[114.3236,-7.8991],[114.3168,-7.8944],[114.3063,-7.8852],[114.2991,-7.8857],[114.2831,-7.8972],[114.2831,-7.9001],[114.2783,-7.9066],[114.2762,-7.9127],[114.2718,-7.9143],[114.2713,-7.9196],[114.2635,-7.9258],[114.259,-7.9312],[114.254,-7.9341],[114.2497,-7.9394],[114.246,-7.9505],[114.2406,-7.9602],[114.2371,-7.962],[114.2329,-7.9704],[114.2251,-7.983],[114.2243,-7.9867],[114.2244,-7.9898],[114.2322,-7.9965],[114.2384,-8.0069],[114.2385,-8.0184],[114.2358,-8.031],[114.24,-8.038],[114.2481,-8.0434],[114.2469,-8.0543],[114.2409,-8.059],[114.2394,-8.0621],[114.2311,-8.0704],[114.2233,-8.0739],[114.2197,-8.0737],[114.2198,-8.0797],[114.2175,-8.0834],[114.2174,-8.0923],[114.2137,-8.0998],[114.1957,-8.1033],[114.1921,-8.1065],[114.1837,-8.121],[114.1765,-8.1203],[114.1743,-8.1113],[114.1703,-8.1081],[114.161,-8.1055],[114.153,-8.1052],[114.1465,-8.101],[114.1354,-8.1028],[114.1287,-8.1098],[114.1166,-8.1144],[114.1104,-8.1129],[114.0917,-8.1162],[114.0839,-8.1209],[114.0814,-8.1256],[114.0604,-8.1224],[114.0558,-8.1286],[114.0505,-8.133],[114.0433,-8.1338],[114.0393,-8.1388],[114.0354,-8.1403],[114.0239,-8.1403],[114.0179,-8.1461],[114.0119,-8.1543],[114.0042,-8.1622],[114.0036,-8.1659],[113.9992,-8.1705],[113.9965,-8.1765],[113.9909,-8.1826],[113.9808,-8.1874],[113.9707,-8.1895],[113.9641,-8.2007],[113.9596,-8.2039],[113.9631,-8.215],[113.9679,-8.222],[113.9652,-8.2255],[113.9666,-8.2322],[113.9628,-8.2404],[113.9594,-8.2433],[113.9524,-8.2429],[113.9442,-8.2445],[113.9342,-8.2555],[113.934,-8.2614],[113.9373,-8.2663],[113.9351,-8.2693],[113.9333,-8.2835],[113.9301,-8.2861],[113.9289,-8.2929],[113.9259,-8.294],[113.9221,-8.3033],[113.9211,-8.309],[113.9238,-8.3157],[113.9284,-8.32],[113.9258,-8.3242],[113.9269,-8.3279],[113.9211,-8.335],[113.9131,-8.3405],[113.9102,-8.3465],[113.9158,-8.3481],[113.9201,-8.3584],[113.9247,-8.3752],[113.9273,-8.3799],[113.9253,-8.3863],[113.933,-8.3888],[113.936,-8.3929],[113.9445,-8.3976],[113.9457,-8.4032],[113.9374,-8.4091],[113.9347,-8.4224],[113.9287,-8.4284],[113.9102,-8.4419],[113.9054,-8.44],[113.8992,-8.4343],[113.901,-8.4266],[113.897,-8.4176],[113.8921,-8.4109],[113.8883,-8.4112],[113.882,-8.4171],[113.8758,-8.4158],[113.8572,-8.4273],[113.8532,-8.4326],[113.8505,-8.4468],[113.8483,-8.4539],[113.848,-8.4635],[113.8448,-8.475],[113.8421,-8.4943],[113.8425,-8.5021],[113.8453,-8.5068],[113.8554,-8.5154],[113.8521,-8.5273],[113.8468,-8.5339],[113.8438,-8.5458],[113.8371,-8.554],[113.8433,-8.5546],[113.8508,-8.5524],[113.8548,-8.5532],[113.8571,-8.5595],[113.8631,-8.5618],[113.8673,-8.5609],[113.8718,-8.5571],[113.8934,-8.5647],[113.9,-8.5707],[113.8999,-8.5751],[113.9086,-8.5798],[113.914,-8.5778],[113.918,-8.5741],[113.9227,-8.5743],[113.9259,-8.5691],[113.9234,-8.5649],[113.9252,-8.561],[113.9296,-8.5614],[113.932,-8.5663],[113.9374,-8.5652],[113.9349,-8.5607],[113.9421,-8.5582],[113.946,-8.5592],[113.9566,-8.5656],[113.963,-8.5721],[113.9665,-8.5777],[113.9688,-8.5849],[113.9686,-8.5899],[113.9656,-8.5968],[113.958,-8.5992],[113.9534,-8.5954],[113.9471,-8.6],[113.9505,-8.6049],[113.9567,-8.6088],[113.9563,-8.6136],[113.9614,-8.6173],[113.9689,-8.6138],[113.9712,-8.6084],[113.9787,-8.6091],[113.9822,-8.6065],[113.9887,-8.6054],[113.9899,-8.5992],[113.995,-8.6061],[113.9979,-8.6027],[113.996,-8.5942],[114.0041,-8.59],[114.0152,-8.5904],[114.0259,-8.5952],[114.0292,-8.6009],[114.0318,-8.615],[114.0301,-8.6212],[114.0318,-8.6229],[114.0313,-8.6302],[114.0349,-8.6341],[114.0424,-8.6353],[114.048,-8.6386],[114.0476,-8.646],[114.0525,-8.6445],[114.0499,-8.6392],[114.0591,-8.6327],[114.0593,-8.6272],[114.0648,-8.6253],[114.0783,-8.6251],[114.0824,-8.629],[114.0856,-8.6281],[114.085,-8.6216],[114.0903,-8.6161],[114.0973,-8.6158],[114.1125,-8.6187],[114.1192,-8.6188],[114.1346,-8.621],[114.1442,-8.6232],[114.1616,-8.6283],[114.177,-8.6345],[114.1835,-8.6388],[114.1967,-8.6409],[114.2016,-8.6408],[114.2097,-8.6453],[114.2206,-8.6454],[114.227,-8.626],[114.2299,-8.6206],[114.2254,-8.6123],[114.2326,-8.6025],[114.2479,-8.6003],[114.2645,-8.604],[114.2714,-8.6078],[114.283,-8.6121],[114.294,-8.6148],[114.3084,-8.6195],[114.3203,-8.6248],[114.3331,-8.6326],[114.3507,-8.6463],[114.3637,-8.6613],[114.37,-8.6707],[114.3732,-8.678],[114.3746,-8.691],[114.3775,-8.6991],[114.3764,-8.7055],[114.3711,-8.7188],[114.3624,-8.7261],[114.3485,-8.7328],[114.3442,-8.7336],[114.3423,-8.7392],[114.3452,-8.7429],[114.3537,-8.7459],[114.3712,-8.7494],[114.3816,-8.749],[114.3917,-8.7523],[114.4074,-8.7517],[114.4189,-8.7492],[114.4249,-8.7511],[114.4455,-8.7528],[114.4706,-8.7597],[114.478,-8.7605],[114.4834,-8.7649],[114.4918,-8.7685],[114.4979,-8.7728],[114.5051,-8.7755],[114.5245,-8.7794],[114.539,-8.7802],[114.5482,-8.778],[114.5541,-8.7755],[114.5689,-8.7728],[114.5758,-8.7699],[114.5881,-8.762],[114.5955,-8.7513],[114.5958,-8.7408],[114.604,-8.7243],[114.6044,-8.7143],[114.5975,-8.7047],[114.5975,-8.7012],[114.5886,-8.6873],[114.5751,-8.6714],[114.5707,-8.6613],[114.5616,-8.6558],[114.5543,-8.6568],[114.5461,-8.6593],[114.5367,-8.6563],[114.5312,-8.6561],[114.5241,-8.6517],[114.5185,-8.6516],[114.5132,-8.6493],[114.5066,-8.64],[114.5052,-8.6356],[114.4964,-8.6347],[114.4884,-8.6297],[114.4809,-8.6179],[114.4727,-8.6177],[114.4653,-8.625],[114.464,-8.6296],[114.4579,-8.6385],[114.4504,-8.6395],[114.4419,-8.6343],[114.4387,-8.6295],[114.4392,-8.6246],[114.4325,-8.613],[114.4231,-8.6047],[114.4207,-8.5982],[114.4178,-8.5844],[114.4101,-8.5741],[114.407,-8.5529],[114.4035,-8.5482],[114.4014,-8.5418],[114.4018,-8.5339],[114.4055,-8.5234],[114.4086,-8.5206],[114.4096,-8.5156],[114.4045,-8.5006],[114.3997,-8.4984],[114.3975,-8.4951],[114.3964,-8.488],[114.3974,-8.4758],[114.3994,-8.4635],[114.399,-8.459],[114.3954,-8.4533],[114.389,-8.4478],[114.3831,-8.4474],[114.383,-8.4563],[114.3856,-8.4614],[114.3862,-8.4725],[114.3881,-8.4814],[114.3849,-8.4929],[114.3855,-8.5041],[114.3832,-8.514],[114.379,-8.5219],[114.3757,-8.5329],[114.3721,-8.5359],[114.3645,-8.5373],[114.3565,-8.5351],[114.3533,-8.5325],[114.3502,-8.525],[114.3511,-8.5196],[114.3572,-8.5116],[114.357,-8.5054],[114.3616,-8.5],[114.3639,-8.4906],[114.3634,-8.4834],[114.36,-8.4751],[114.3542,-8.4673],[114.3564,-8.4649],[114.3544,-8.4571],[114.3482,-8.4523],[114.342,-8.439],[114.3403,-8.4317],[114.34,-8.4232],[114.3414,-8.4152],[114.3457,-8.4036],[114.3487,-8.3827],[114.3521,-8.3735],[114.3513,-8.3614],[114.3531,-8.3533],[114.3596,-8.3391],[114.3606,-8.3343],[114.3578,-8.3301],[114.3584,-8.3246],[114.3642,-8.3124],[114.365,-8.3089],[114.3634,-8.2987],[114.3654,-8.2902],[114.3661,-8.2802],[114.3759,-8.2598],[114.3864,-8.241],[114.3902,-8.2361],[114.3898,-8.2263],[114.3858,-8.2173],[114.386,-8.2091],[114.383,-8.2046],[114.3826,-8.1969],[114.386,-8.1869],[114.394,-8.1718],[114.3956,-8.1614],[114.4018,-8.1502],[114.4003,-8.1388],[114.4015,-8.1346],[114.3981,-8.1245],[114.4007,-8.117],[114.4066,-8.1119],[114.4102,-8.1023],[114.4152,-8.093],[114.4176,-8.0856],[114.4174,-8.0811],[114.4264,-8.069],[114.4299,-8.0658],[114.4313,-8.0563],[114.429,-8.0451],[114.43,-8.0408],[114.4339,-8.0366],[114.4346,-8.0317],[114.4257,-8.0195],[114.4257,-8.0143],[114.4302,-7.9972],[114.4292,-7.9914],[114.4253,-7.9826],[114.4253,-7.9702],[114.4228,-7.9613],[114.4231,-7.9498],[114.4244,-7.9443],[114.4238,-7.9355]]}},{"type":"Feature","properties":{"mhid":"1332:246","alt_name":"KABUPATEN BONDOWOSO","latitude":-7.9404,"longitude":113.9834,"sample_value":359},"geometry":{"type":"LineString","coordinates":[[114.2243,-7.9867],[114.2193,-7.9822],[114.2117,-7.9778],[114.2036,-7.9754],[114.1991,-7.9758],[114.1941,-7.9725],[114.186,-7.9719],[114.1751,-7.9696],[114.1662,-7.9704],[114.163,-7.9731],[114.15,-7.9772],[114.1385,-7.9831],[114.132,-7.9883],[114.1259,-7.9835],[114.1279,-7.976],[114.124,-7.9718],[114.1234,-7.9635],[114.1172,-7.9542],[114.1138,-7.9429],[114.1156,-7.936],[114.1137,-7.9326],[114.1138,-7.9248],[114.112,-7.9217],[114.1109,-7.9089],[114.1029,-7.8996],[114.1021,-7.8921],[114.0942,-7.8808],[114.0938,-7.8721],[114.0919,-7.8623],[114.0939,-7.8551],[114.0932,-7.8452],[114.0953,-7.8397],[114.0892,-7.8243],[114.0887,-7.8057],[114.0869,-7.7993],[114.0806,-7.7955],[114.0755,-7.7807],[114.0794,-7.7707],[114.0747,-7.7697],[114.0713,-7.7612],[114.062,-7.7588],[114.0442,-7.7584],[114.0325,-7.7602],[114.0239,-7.7599],[114.0148,-7.761],[114.0119,-7.7626],[114.0057,-7.7591],[114.0051,-7.7625],[113.9999,-7.7721],[113.9928,-7.7776],[113.9807,-7.7715],[113.965,-7.7727],[113.9573,-7.7697],[113.9508,-7.7652],[113.9461,-7.7714],[113.9409,-7.7755],[113.9357,-7.7764],[113.9378,-7.7861],[113.9368,-7.7917],[113.9326,-7.7933],[113.9287,-7.7906],[113.9181,-7.7889],[113.9169,-7.7925],[113.9055,-7.7957],[113.9041,-7.8021],[113.8994,-7.8018],[113.8967,-7.7983],[113.8814,-7.7963],[113.8783,-7.7915],[113.8735,-7.797],[113.8696,-7.7969],[113.8645,-7.7933],[113.8495,-7.7956],[113.8369,-7.8123],[113.8281,-7.813],[113.8243,-7.811],[113.8157,-7.8134],[113.8091,-7.8131],[113.8016,-7.8165],[113.8005,-7.809],[113.7934,-7.8028],[113.7877,-7.8029],[113.7857,-7.7999],[113.7812,-7.8002],[113.7704,-7.7963],[113.7666,-7.7984],[113.7582,-7.7957],[113.7474,-7.7963],[113.7432,-7.7893],[113.7394,-7.7891],[113.7387,-7.7946],[113.7394,-7.8045],[113.7335,-7.8096],[113.7336,-7.8159],[113.7314,-7.8199],[113.7347,-7.8361],[113.7316,-7.8409],[113.7315,-7.8452],[113.7279,-7.8535],[113.7285,-7.8582],[113.7219,-7.8718],[113.7225,-7.879],[113.7161,-7.8811],[113.7032,-7.8925],[113.6987,-7.9003],[113.6888,-7.9034],[113.6848,-7.9103],[113.6792,-7.9128],[113.6773,-7.9159],[113.6709,-7.9203],[113.6629,-7.9216],[113.6609,-7.9264],[113.6608,-7.9379],[113.6515,-7.9417],[113.6442,-7.9477],[113.6371,-7.9496],[113.6238,-7.9615],[113.6294,-7.9677],[113.6361,-7.9656],[113.6436,-7.9731],[113.652,-7.9735],[113.6552,-7.9706],[113.6634,-7.9686],[113.6709,-7.9683],[113.6692,-7.9742],[113.6721,-7.987],[113.677,-7.993],[113.6852,-8.0058],[113.6872,-8.0115],[113.7091,-8.0116],[113.7194,-8.022],[113.7262,-8.0236],[113.7306,-8.0299],[113.7355,-8.0396],[113.7392,-8.0426],[113.7397,-8.0469],[113.7461,-8.0513],[113.7451,-8.0547],[113.749,-8.0654],[113.752,-8.0601],[113.7502,-8.0526],[113.7538,-8.0519],[113.7581,-8.0578],[113.763,-8.0469],[113.7678,-8.0442],[113.772,-8.0383],[113.7793,-8.0441],[113.7818,-8.0503],[113.7911,-8.0499],[113.7954,-8.0554],[113.8022,-8.0577],[113.8058,-8.0563],[113.8077,-8.0508],[113.8124,-8.0462],[113.8241,-8.0454],[113.83,-8.0479],[113.8356,-8.046],[113.8415,-8.0488],[113.8546,-8.0454],[113.8547,-8.0393],[113.8513,-8.0271],[113.8544,-8.0221],[113.8606,-8.0299],[113.8677,-8.0358],[113.8725,-8.0299],[113.8849,-8.03],[113.8836,-8.0252],[113.885,-8.0187],[113.89,-8.0144],[113.8962,-8.0183],[113.9028,-8.0183],[113.9083,-8.0226],[113.9188,-8.0252],[113.9288,-8.0345],[113.9376,-8.0391],[113.9386,-8.0424],[113.9469,-8.0445],[113.9505,-8.0469],[113.9534,-8.0518],[113.9609,-8.0559],[113.9702,-8.055],[113.9781,-8.0618],[113.9872,-8.067],[113.9961,-8.0696],[114.0008,-8.0692],[114.0097,-8.0753],[114.0137,-8.0843],[114.0191,-8.0873],[114.0221,-8.0927],[114.0282,-8.0951],[114.0281,-8.102],[114.0295,-8.1146],[114.0368,-8.1248],[114.0347,-8.1284],[114.0434,-8.1319],[114.0433,-8.1338],[114.0505,-8.133],[114.0558,-8.1286],[114.0604,-8.1224],[114.0814,-8.1256],[114.0839,-8.1209],[114.0917,-8.1162],[114.1104,-8.1129],[114.1166,-8.1144],[114.1287,-8.1098],[114.1354,-8.1028],[114.1465,-8.101],[114.153,-8.1052],[114.161,-8.1055],[114.1703,-8.1081],[114.1743,-8.1113],[114.1765,-8.1203],[114.1837,-8.121],[114.1921,-8.1065],[114.1957,-8.1033],[114.2137,-8.0998],[114.2174,-8.0923],[114.2175,-8.0834],[114.2198,-8.0797],[114.2197,-8.0737],[114.2233,-8.0739],[114.2311,-8.0704],[114.2394,-8.0621],[114.2409,-8.059],[114.2469,-8.0543],[114.2481,-8.0434],[114.24,-8.038],[114.2358,-8.031],[114.2385,-8.0184],[114.2384,-8.0069],[114.2322,-7.9965],[114.2244,-7.9898],[114.2243,-7.9867]]}},{"type":"Feature","properties":{"mhid":"1332:247","alt_name":"KABUPATEN SITUBONDO","latitude":-7.71667,"longitude":114.05,"sample_value":67},"geometry":{"type":"LineString","coordinates":[[114.4238,-7.9355],[114.4212,-7.9264],[114.4235,-7.9169],[114.428,-7.9136],[114.437,-7.9102],[114.4392,-7.9038],[114.4441,-7.8991],[114.4635,-7.8901],[114.464,-7.8803],[114.4619,-7.8758],[114.4625,-7.8711],[114.4597,-7.8624],[114.4636,-7.8608],[114.4656,-7.8562],[114.4641,-7.8517],[114.4645,-7.8452],[114.4677,-7.8341],[114.4649,-7.8239],[114.4628,-7.8212],[114.4585,-7.8089],[114.4479,-7.7957],[114.4442,-7.7962],[114.4428,-7.7916],[114.4369,-7.7879],[114.4295,-7.7888],[114.4278,-7.7863],[114.4174,-7.7791],[114.4078,-7.7742],[114.4029,-7.7699],[114.3945,-7.7714],[114.3874,-7.7638],[114.3811,-7.7608],[114.3814,-7.7553],[114.3741,-7.7489],[114.3649,-7.7479],[114.359,-7.7499],[114.3568,-7.7545],[114.3503,-7.7535],[114.3456,-7.7556],[114.3382,-7.7559],[114.3282,-7.7583],[114.3181,-7.7556],[114.3098,-7.7463],[114.3046,-7.7459],[114.2967,-7.7482],[114.2918,-7.7466],[114.286,-7.7403],[114.2835,-7.7356],[114.2689,-7.7239],[114.259,-7.7183],[114.2509,-7.7095],[114.2456,-7.7012],[114.2418,-7.6985],[114.2368,-7.6981],[114.2296,-7.703],[114.2181,-7.7127],[114.2085,-7.7179],[114.2024,-7.7158],[114.1953,-7.7079],[114.189,-7.7122],[114.1777,-7.7143],[114.1658,-7.7152],[114.151,-7.714],[114.1406,-7.7145],[114.1339,-7.7134],[114.1237,-7.7072],[114.1192,-7.7093],[114.1067,-7.7065],[114.1009,-7.7015],[114.0956,-7.6891],[114.0893,-7.6809],[114.0843,-7.6716],[114.0694,-7.6373],[114.0599,-7.6229],[114.0458,-7.6086],[114.0437,-7.6135],[114.0358,-7.6093],[114.0302,-7.6086],[114.0156,-7.6219],[114.0045,-7.6348],[113.9961,-7.6367],[113.9902,-7.6402],[113.9811,-7.6495],[113.9731,-7.6509],[113.9685,-7.656],[113.9672,-7.6607],[113.9605,-7.6697],[113.9561,-7.6774],[113.9518,-7.6807],[113.948,-7.6768],[113.9432,-7.6754],[113.9397,-7.677],[113.9359,-7.6835],[113.9371,-7.6899],[113.9359,-7.6936],[113.931,-7.7001],[113.9215,-7.701],[113.9129,-7.6966],[113.9043,-7.699],[113.8959,-7.6964],[113.8894,-7.6923],[113.8862,-7.6878],[113.8788,-7.6881],[113.867,-7.6819],[113.8581,-7.6851],[113.8414,-7.6845],[113.8311,-7.6884],[113.8269,-7.6953],[113.8171,-7.6994],[113.8112,-7.7117],[113.7982,-7.7257],[113.7888,-7.7317],[113.7823,-7.7337],[113.7745,-7.7327],[113.7633,-7.7378],[113.7559,-7.7373],[113.7233,-7.721],[113.7153,-7.7124],[113.7131,-7.7078],[113.7084,-7.7096],[113.6941,-7.7218],[113.6828,-7.7287],[113.6739,-7.7304],[113.6701,-7.7349],[113.6655,-7.737],[113.6571,-7.7336],[113.6524,-7.7302],[113.6473,-7.7236],[113.6436,-7.7256],[113.6349,-7.7222],[113.6252,-7.7227],[113.6187,-7.72],[113.6128,-7.7226],[113.5978,-7.7171],[113.5979,-7.7153],[113.5907,-7.7166],[113.5905,-7.7237],[113.5863,-7.7272],[113.5793,-7.7259],[113.5775,-7.7342],[113.5726,-7.7421],[113.5762,-7.75],[113.5764,-7.7562],[113.5905,-7.7635],[113.5982,-7.7709],[113.6029,-7.7832],[113.6018,-7.7888],[113.604,-7.7982],[113.6012,-7.8024],[113.5934,-7.8037],[113.594,-7.8076],[113.6009,-7.8119],[113.6076,-7.8221],[113.6114,-7.824],[113.6091,-7.8326],[113.6034,-7.8416],[113.6023,-7.8452],[113.6095,-7.8534],[113.6086,-7.8597],[113.6173,-7.8732],[113.6183,-7.8802],[113.6151,-7.8871],[113.6235,-7.8955],[113.6223,-7.9072],[113.6263,-7.9165],[113.6248,-7.9253],[113.62,-7.9272],[113.6175,-7.9314],[113.6181,-7.9397],[113.6151,-7.9418],[113.6111,-7.9484],[113.6147,-7.9531],[113.6219,-7.9523],[113.6166,-7.9587],[113.6238,-7.9615],[113.6371,-7.9496],[113.6442,-7.9477],[113.6515,-7.9417],[113.6608,-7.9379],[113.6609,-7.9264],[113.6629,-7.9216],[113.6709,-7.9203],[113.6773,-7.9159],[113.6792,-7.9128],[113.6848,-7.9103],[113.6888,-7.9034],[113.6987,-7.9003],[113.7032,-7.8925],[113.7161,-7.8811],[113.7225,-7.879],[113.7219,-7.8718],[113.7285,-7.8582],[113.7279,-7.8535],[113.7315,-7.8452],[113.7316,-7.8409],[113.7347,-7.8361],[113.7314,-7.8199],[113.7336,-7.8159],[113.7335,-7.8096],[113.7394,-7.8045],[113.7387,-7.7946],[113.7394,-7.7891],[113.7432,-7.7893],[113.7474,-7.7963],[113.7582,-7.7957],[113.7666,-7.7984],[113.7704,-7.7963],[113.7812,-7.8002],[113.7857,-7.7999],[113.7877,-7.8029],[113.7934,-7.8028],[113.8005,-7.809],[113.8016,-7.8165],[113.8091,-7.8131],[113.8157,-7.8134],[113.8243,-7.811],[113.8281,-7.813],[113.8369,-7.8123],[113.8495,-7.7956],[113.8645,-7.7933],[113.8696,-7.7969],[113.8735,-7.797],[113.8783,-7.7915],[113.8814,-7.7963],[113.8967,-7.7983],[113.8994,-7.8018],[113.9041,-7.8021],[113.9055,-7.7957],[113.9169,-7.7925],[113.9181,-7.7889],[113.9287,-7.7906],[113.9326,-7.7933],[113.9368,-7.7917],[113.9378,-7.7861],[113.9357,-7.7764],[113.9409,-7.7755],[113.9461,-7.7714],[113.9508,-7.7652],[113.9573,-7.7697],[113.965,-7.7727],[113.9807,-7.7715],[113.9928,-7.7776],[113.9999,-7.7721],[114.0051,-7.7625],[114.0057,-7.7591],[114.0119,-7.7626],[114.0148,-7.761],[114.0239,-7.7599],[114.0325,-7.7602],[114.0442,-7.7584],[114.062,-7.7588],[114.0713,-7.7612],[114.0747,-7.7697],[114.0794,-7.7707],[114.0755,-7.7807],[114.0806,-7.7955],[114.0869,-7.7993],[114.0887,-7.8057],[114.0892,-7.8243],[114.0953,-7.8397],[114.0932,-7.8452],[114.0939,-7.8551],[114.0919,-7.8623],[114.0938,-7.8721],[114.0942,-7.8808],[114.1021,-7.8921],[114.1029,-7.8996],[114.1109,-7.9089],[114.112,-7.9217],[114.1138,-7.9248],[114.1137,-7.9326],[114.1156,-7.936],[114.1138,-7.9429],[114.1172,-7.9542],[114.1234,-7.9635],[114.124,-7.9718],[114.1279,-7.976],[114.1259,-7.9835],[114.132,-7.9883],[114.1385,-7.9831],[114.15,-7.9772],[114.163,-7.9731],[114.1662,-7.9704],[114.1751,-7.9696],[114.186,-7.9719],[114.1941,-7.9725],[114.1991,-7.9758],[114.2036,-7.9754],[114.2117,-7.9778],[114.2193,-7.9822],[114.2243,-7.9867],[114.2251,-7.983],[114.2329,-7.9704],[114.2371,-7.962],[114.2406,-7.9602],[114.246,-7.9505],[114.2497,-7.9394],[114.254,-7.9341],[114.259,-7.9312],[114.2635,-7.9258],[114.2713,-7.9196],[114.2718,-7.9143],[114.2762,-7.9127],[114.2783,-7.9066],[114.2831,-7.9001],[114.2831,-7.8972],[114.2991,-7.8857],[114.3063,-7.8852],[114.3168,-7.8944],[114.3236,-7.8991],[114.3302,-7.902],[114.3332,-7.9069],[114.3432,-7.9075],[114.3447,-7.9115],[114.3615,-7.9144],[114.3655,-7.9182],[114.3726,-7.9187],[114.3874,-7.926],[114.3967,-7.9269],[114.401,-7.9328],[114.4065,-7.9373],[114.4135,-7.9401],[114.4197,-7.9344],[114.4238,-7.9355]]}},{"type":"Feature","properties":{"mhid":"1332:248","alt_name":"KABUPATEN PROBOLINGGO","latitude":-7.86667,"longitude":113.31667,"sample_value":169},"geometry":{"type":"LineString","coordinates":[[112.9422,-7.9834],[112.9476,-7.9864],[112.9588,-7.9856],[112.9665,-7.9817],[112.9763,-7.9795],[112.9802,-7.9746],[112.9845,-7.9719],[112.994,-7.9616],[113,-7.9632],[113.0092,-7.9637],[113.0145,-7.969],[113.0221,-7.9692],[113.0257,-7.9732],[113.0351,-7.9798],[113.0425,-7.9885],[113.0445,-7.9943],[113.0484,-7.9992],[113.051,-8.0061],[113.0538,-8.0093],[113.0592,-8.0096],[113.0635,-8.0014],[113.0628,-7.9889],[113.0652,-7.9845],[113.0706,-7.9816],[113.0847,-7.9808],[113.0935,-7.9818],[113.105,-7.9814],[113.1147,-7.9917],[113.1212,-7.9902],[113.1242,-7.9848],[113.136,-7.9766],[113.1407,-7.9784],[113.151,-7.9782],[113.1543,-7.9712],[113.1612,-7.9686],[113.1679,-7.9622],[113.1718,-7.9616],[113.1773,-7.9563],[113.1801,-7.9503],[113.1875,-7.9451],[113.1908,-7.945],[113.2007,-7.929],[113.2061,-7.9269],[113.2061,-7.9199],[113.2119,-7.9109],[113.2089,-7.9075],[113.2075,-7.898],[113.2337,-7.9027],[113.2482,-7.9079],[113.2573,-7.9061],[113.2581,-7.9001],[113.262,-7.8987],[113.2674,-7.9013],[113.2681,-7.9178],[113.2707,-7.9202],[113.2746,-7.9295],[113.28,-7.9286],[113.2996,-7.9276],[113.3083,-7.9265],[113.3227,-7.9281],[113.3282,-7.932],[113.3324,-7.941],[113.345,-7.9561],[113.3464,-7.9607],[113.3465,-7.9752],[113.3503,-7.9799],[113.3565,-7.9837],[113.3615,-7.9962],[113.3639,-8.0144],[113.3671,-8.0215],[113.363,-8.0277],[113.37,-8.0227],[113.379,-8.0203],[113.3799,-8.0163],[113.3872,-8.0137],[113.3886,-8.0041],[113.3916,-7.9974],[113.4063,-8.0091],[113.4085,-8.0131],[113.4122,-8.0115],[113.4254,-8.0112],[113.4329,-8.0162],[113.4324,-8.0205],[113.4446,-8.0204],[113.4439,-8.0241],[113.4524,-8.0236],[113.4583,-8.0247],[113.4618,-8.0215],[113.4662,-8.0229],[113.4724,-8.022],[113.4799,-8.0165],[113.4819,-8.008],[113.4764,-7.9965],[113.4804,-7.9924],[113.483,-7.9965],[113.4892,-7.9967],[113.4969,-8.005],[113.5042,-8.0072],[113.5142,-8.0138],[113.5287,-8.016],[113.5279,-8.0126],[113.5391,-8.0064],[113.5452,-7.9995],[113.5525,-7.9982],[113.5575,-7.9935],[113.5597,-7.9873],[113.5632,-7.9863],[113.5705,-7.9878],[113.5764,-7.9851],[113.5894,-7.9854],[113.5938,-7.9791],[113.604,-7.9806],[113.6043,-7.9868],[113.6069,-7.99],[113.616,-7.9893],[113.6196,-7.9876],[113.6188,-7.9835],[113.6271,-7.9815],[113.6277,-7.9759],[113.638,-7.9757],[113.6436,-7.9731],[113.6361,-7.9656],[113.6294,-7.9677],[113.6238,-7.9615],[113.6166,-7.9587],[113.6219,-7.9523],[113.6147,-7.9531],[113.6111,-7.9484],[113.6151,-7.9418],[113.6181,-7.9397],[113.6175,-7.9314],[113.62,-7.9272],[113.6248,-7.9253],[113.6263,-7.9165],[113.6223,-7.9072],[113.6235,-7.8955],[113.6151,-7.8871],[113.6183,-7.8802],[113.6173,-7.8732],[113.6086,-7.8597],[113.6095,-7.8534],[113.6023,-7.8452],[113.6034,-7.8416],[113.6091,-7.8326],[113.6114,-7.824],[113.6076,-7.8221],[113.6009,-7.8119],[113.594,-7.8076],[113.5934,-7.8037],[113.6012,-7.8024],[113.604,-7.7982],[113.6018,-7.7888],[113.6029,-7.7832],[113.5982,-7.7709],[113.5905,-7.7635],[113.5764,-7.7562],[113.5762,-7.75],[113.5726,-7.7421],[113.5775,-7.7342],[113.5793,-7.7259],[113.5863,-7.7272],[113.5905,-7.7237],[113.5907,-7.7166],[113.5979,-7.7153],[113.5829,-7.7114],[113.5785,-7.7083],[113.5701,-7.7124],[113.5626,-7.7142],[113.5541,-7.7124],[113.5504,-7.7136],[113.5431,-7.7125],[113.5382,-7.71],[113.5331,-7.7106],[113.5256,-7.7082],[113.5191,-7.7043],[113.5009,-7.6984],[113.4886,-7.6977],[113.4848,-7.6985],[113.4774,-7.7042],[113.4712,-7.7065],[113.4702,-7.7135],[113.4574,-7.7233],[113.4508,-7.7256],[113.4388,-7.7342],[113.431,-7.7355],[113.4187,-7.7343],[113.4115,-7.7345],[113.4008,-7.7405],[113.3975,-7.7381],[113.3871,-7.7437],[113.3828,-7.7391],[113.3791,-7.7382],[113.3743,-7.7426],[113.3727,-7.7502],[113.3678,-7.7547],[113.3608,-7.7576],[113.3466,-7.7687],[113.3456,-7.771],[113.333,-7.7748],[113.3241,-7.7761],[113.3185,-7.7741],[113.3169,-7.7682],[113.3081,-7.7675],[113.3012,-7.7694],[113.2906,-7.7765],[113.288,-7.7833],[113.2804,-7.7837],[113.2735,-7.7792],[113.2651,-7.7657],[113.2579,-7.7561],[113.2552,-7.7501],[113.255,-7.7426],[113.2506,-7.7425],[113.2483,-7.7455],[113.2372,-7.7403],[113.2321,-7.7552],[113.2347,-7.7567],[113.2343,-7.7704],[113.2366,-7.7724],[113.234,-7.7806],[113.2371,-7.7815],[113.2369,-7.7896],[113.2401,-7.8001],[113.2402,-7.8077],[113.2333,-7.8069],[113.2321,-7.8029],[113.2267,-7.8016],[113.2167,-7.8155],[113.2149,-7.8202],[113.2041,-7.8136],[113.1783,-7.81],[113.1828,-7.7914],[113.177,-7.7885],[113.1789,-7.7834],[113.1639,-7.7792],[113.1641,-7.7733],[113.168,-7.7614],[113.1653,-7.7573],[113.1661,-7.7539],[113.1715,-7.7548],[113.1763,-7.7518],[113.1787,-7.7476],[113.1785,-7.7403],[113.1742,-7.736],[113.1728,-7.7276],[113.1675,-7.728],[113.1677,-7.7334],[113.1704,-7.7375],[113.163,-7.7421],[113.1512,-7.7411],[113.1469,-7.736],[113.1431,-7.7288],[113.1401,-7.726],[113.1289,-7.7242],[113.1162,-7.7257],[113.11,-7.7222],[113.1036,-7.7164],[113.0959,-7.7061],[113.0883,-7.7074],[113.0809,-7.7148],[113.0796,-7.7197],[113.0729,-7.7253],[113.0711,-7.733],[113.0652,-7.7374],[113.0547,-7.7483],[113.0571,-7.7594],[113.0563,-7.7649],[113.0532,-7.767],[113.0502,-7.7761],[113.0529,-7.7797],[113.0537,-7.7853],[113.0518,-7.7906],[113.0528,-7.7961],[113.049,-7.8041],[113.0494,-7.8084],[113.0473,-7.8198],[113.039,-7.8278],[113.0273,-7.8341],[113.0226,-7.8411],[113.0177,-7.8442],[113.0139,-7.8503],[113.0078,-7.8542],[113.0062,-7.8576],[112.9902,-7.8694],[112.9862,-7.8775],[112.9782,-7.8824],[112.966,-7.896],[112.9632,-7.8979],[112.9559,-7.8983],[112.9526,-7.9045],[112.9488,-7.9063],[112.9529,-7.9163],[112.9504,-7.9239],[112.9525,-7.9341],[112.9531,-7.9428],[112.9449,-7.9495],[112.9385,-7.95],[112.9353,-7.9562],[112.9286,-7.9608],[112.9282,-7.9686],[112.9355,-7.9798],[112.9422,-7.9834]]}},{"type":"Feature","properties":{"mhid":"1332:248","alt_name":"KABUPATEN PROBOLINGGO","latitude":-7.86667,"longitude":113.31667,"sample_value":169},"geometry":{"type":"LineString","coordinates":[[113.2616,-7.6763],[113.2474,-7.6782],[113.2508,-7.6814],[113.2605,-7.6795],[113.2616,-7.6763]]}},{"type":"Feature","properties":{"mhid":"1332:249","alt_name":"KABUPATEN PASURUAN","latitude":-7.73333,"longitude":112.83333,"sample_value":174},"geometry":{"type":"LineString","coordinates":[[112.8373,-7.5665],[112.832,-7.5524],[112.8267,-7.5536],[112.8165,-7.5589],[112.8101,-7.5554],[112.8052,-7.556],[112.8048,-7.5594],[112.7935,-7.5622],[112.7907,-7.5644],[112.7847,-7.5628],[112.778,-7.5683],[112.7763,-7.5718],[112.7716,-7.5705],[112.7696,-7.5736],[112.7624,-7.5749],[112.7564,-7.5732],[112.7534,-7.5753],[112.7477,-7.5719],[112.7389,-7.5732],[112.733,-7.571],[112.7287,-7.5718],[112.7228,-7.5688],[112.7192,-7.561],[112.7145,-7.5594],[112.7107,-7.5551],[112.7101,-7.5489],[112.7062,-7.5449],[112.6959,-7.5457],[112.6892,-7.5496],[112.6826,-7.5486],[112.6801,-7.5501],[112.6744,-7.5579],[112.6706,-7.5608],[112.6638,-7.562],[112.6597,-7.5677],[112.6543,-7.5802],[112.6556,-7.5836],[112.6609,-7.5839],[112.6624,-7.5877],[112.6599,-7.5915],[112.6549,-7.594],[112.6437,-7.6036],[112.6384,-7.6094],[112.6282,-7.6158],[112.6211,-7.6156],[112.6195,-7.6232],[112.6225,-7.6332],[112.6276,-7.6391],[112.6288,-7.6521],[112.6224,-7.6606],[112.6236,-7.6666],[112.62,-7.6711],[112.6147,-7.6813],[112.6101,-7.6863],[112.6023,-7.6898],[112.5936,-7.7011],[112.5894,-7.7138],[112.5844,-7.7227],[112.5745,-7.7339],[112.5775,-7.7386],[112.5817,-7.7533],[112.5813,-7.7586],[112.5882,-7.7667],[112.5915,-7.7659],[112.6023,-7.7692],[112.6053,-7.7718],[112.6164,-7.7877],[112.6306,-7.7917],[112.6382,-7.7907],[112.6416,-7.7952],[112.6564,-7.7975],[112.6549,-7.801],[112.6571,-7.8056],[112.6695,-7.8069],[112.6764,-7.8103],[112.6889,-7.8139],[112.6983,-7.8137],[112.7112,-7.8252],[112.7194,-7.8194],[112.7309,-7.8195],[112.7367,-7.8275],[112.7343,-7.8349],[112.7419,-7.8471],[112.7583,-7.8535],[112.7606,-7.8584],[112.7586,-7.8648],[112.7634,-7.8641],[112.7667,-7.868],[112.7726,-7.8672],[112.7807,-7.8741],[112.7773,-7.8789],[112.7804,-7.8922],[112.7851,-7.8971],[112.7841,-7.8997],[112.7921,-7.9125],[112.7967,-7.9177],[112.8019,-7.9199],[112.8054,-7.9255],[112.8134,-7.9279],[112.8208,-7.9278],[112.8227,-7.9319],[112.8337,-7.9387],[112.8358,-7.941],[112.8479,-7.942],[112.8562,-7.9397],[112.8705,-7.947],[112.8739,-7.9454],[112.882,-7.949],[112.8851,-7.9525],[112.8961,-7.9474],[112.9025,-7.9476],[112.9068,-7.9526],[112.9118,-7.9542],[112.9149,-7.9514],[112.9353,-7.9562],[112.9385,-7.95],[112.9449,-7.9495],[112.9531,-7.9428],[112.9525,-7.9341],[112.9504,-7.9239],[112.9529,-7.9163],[112.9488,-7.9063],[112.9526,-7.9045],[112.9559,-7.8983],[112.9632,-7.8979],[112.966,-7.896],[112.9782,-7.8824],[112.9862,-7.8775],[112.9902,-7.8694],[113.0062,-7.8576],[113.0078,-7.8542],[113.0139,-7.8503],[113.0177,-7.8442],[113.0226,-7.8411],[113.0273,-7.8341],[113.039,-7.8278],[113.0473,-7.8198],[113.0494,-7.8084],[113.049,-7.8041],[113.0528,-7.7961],[113.0518,-7.7906],[113.0537,-7.7853],[113.0529,-7.7797],[113.0502,-7.7761],[113.0532,-7.767],[113.0563,-7.7649],[113.0571,-7.7594],[113.0547,-7.7483],[113.0652,-7.7374],[113.0711,-7.733],[113.0729,-7.7253],[113.0796,-7.7197],[113.0809,-7.7148],[113.0883,-7.7074],[113.0959,-7.7061],[113.0938,-7.7035],[113.0867,-7.7021],[113.0769,-7.6904],[113.0635,-7.6688],[113.0503,-7.6575],[113.0416,-7.6531],[113.0287,-7.6493],[113.0197,-7.6496],[113.0142,-7.6524],[113.0027,-7.6543],[112.9925,-7.6575],[112.9848,-7.6565],[112.979,-7.6537],[112.9689,-7.6465],[112.9657,-7.6405],[112.9611,-7.6365],[112.9595,-7.6295],[112.9564,-7.6281],[112.9498,-7.6359],[112.9477,-7.6367],[112.9464,-7.644],[112.944,-7.6481],[112.9449,-7.6523],[112.9392,-7.6545],[112.9364,-7.6617],[112.932,-7.6687],[112.9286,-7.6672],[112.9227,-7.676],[112.9185,-7.674],[112.9169,-7.6785],[112.908,-7.6792],[112.9012,-7.6864],[112.8964,-7.6827],[112.8945,-7.6762],[112.8907,-7.673],[112.8834,-7.6716],[112.8861,-7.667],[112.8815,-7.664],[112.8831,-7.6609],[112.8788,-7.6553],[112.8728,-7.6599],[112.8715,-7.6512],[112.876,-7.6396],[112.8725,-7.6352],[112.8746,-7.63],[112.8843,-7.6318],[112.8863,-7.6235],[112.8915,-7.6267],[112.895,-7.6256],[112.9009,-7.6289],[112.9028,-7.6258],[112.8951,-7.62],[112.8894,-7.6171],[112.8804,-7.606],[112.8732,-7.5883],[112.8702,-7.5849],[112.8604,-7.5851],[112.8508,-7.5819],[112.8448,-7.5779],[112.8373,-7.5665]]}},{"type":"Feature","properties":{"mhid":"1332:250","alt_name":"KABUPATEN SIDOARJO","latitude":-7.45,"longitude":112.7,"sample_value":761},"geometry":{"type":"LineString","coordinates":[[112.8373,-7.5665],[112.8468,-7.5757],[112.8604,-7.5762],[112.8684,-7.5691],[112.8722,-7.5569],[112.8718,-7.5516],[112.8663,-7.5475],[112.8725,-7.5354],[112.8722,-7.5309],[112.867,-7.5265],[112.8672,-7.522],[112.8645,-7.5183],[112.856,-7.5183],[112.843,-7.5127],[112.8374,-7.5118],[112.831,-7.5009],[112.823,-7.4934],[112.8194,-7.4859],[112.8129,-7.4785],[112.8177,-7.4736],[112.8251,-7.4732],[112.8342,-7.4766],[112.8376,-7.4706],[112.8345,-7.4434],[112.8341,-7.4299],[112.8325,-7.4201],[112.8333,-7.4075],[112.8367,-7.3883],[112.8349,-7.3824],[112.8367,-7.3786],[112.8427,-7.3337],[112.8391,-7.3303],[112.8327,-7.3343],[112.828,-7.3434],[112.8259,-7.3432],[112.8196,-7.3433],[112.8129,-7.3463],[112.7987,-7.3449],[112.7935,-7.3464],[112.789,-7.344],[112.7794,-7.3446],[112.7775,-7.3411],[112.7664,-7.3384],[112.7549,-7.337],[112.7536,-7.342],[112.7428,-7.3411],[112.742,-7.3452],[112.7365,-7.345],[112.7331,-7.3481],[112.7256,-7.3482],[112.7242,-7.3459],[112.7157,-7.3418],[112.7161,-7.3399],[112.7047,-7.3362],[112.6981,-7.3417],[112.6902,-7.3455],[112.6733,-7.3514],[112.6624,-7.3513],[112.6563,-7.3568],[112.6535,-7.3621],[112.6421,-7.3611],[112.6289,-7.3681],[112.6216,-7.368],[112.6182,-7.3664],[112.6049,-7.3708],[112.5927,-7.3723],[112.5881,-7.3712],[112.5878,-7.3766],[112.584,-7.383],[112.5788,-7.3843],[112.5735,-7.3909],[112.5673,-7.3917],[112.5663,-7.3979],[112.5516,-7.4007],[112.5481,-7.404],[112.5425,-7.406],[112.5382,-7.4051],[112.5307,-7.4062],[112.5238,-7.4036],[112.5167,-7.4056],[112.4953,-7.4081],[112.4937,-7.4092],[112.4851,-7.4092],[112.4828,-7.4113],[112.4837,-7.4165],[112.4738,-7.4241],[112.4735,-7.4291],[112.4678,-7.4317],[112.4634,-7.4316],[112.4599,-7.4364],[112.4567,-7.447],[112.4686,-7.4453],[112.4867,-7.459],[112.4988,-7.4619],[112.5055,-7.4625],[112.5117,-7.4668],[112.5395,-7.471],[112.5551,-7.4751],[112.5626,-7.4752],[112.5703,-7.4781],[112.5738,-7.4835],[112.5778,-7.484],[112.5819,-7.4919],[112.5933,-7.4955],[112.5977,-7.5001],[112.6026,-7.5012],[112.6054,-7.5066],[112.6087,-7.5072],[112.6138,-7.5149],[112.6199,-7.519],[112.6278,-7.5302],[112.6319,-7.5334],[112.6402,-7.5363],[112.6467,-7.537],[112.6476,-7.5407],[112.652,-7.5472],[112.6637,-7.5572],[112.6635,-7.5599],[112.6706,-7.5608],[112.6744,-7.5579],[112.6801,-7.5501],[112.6826,-7.5486],[112.6892,-7.5496],[112.6959,-7.5457],[112.7062,-7.5449],[112.7101,-7.5489],[112.7107,-7.5551],[112.7145,-7.5594],[112.7192,-7.561],[112.7228,-7.5688],[112.7287,-7.5718],[112.733,-7.571],[112.7389,-7.5732],[112.7477,-7.5719],[112.7534,-7.5753],[112.7564,-7.5732],[112.7624,-7.5749],[112.7696,-7.5736],[112.7716,-7.5705],[112.7763,-7.5718],[112.778,-7.5683],[112.7847,-7.5628],[112.7907,-7.5644],[112.7935,-7.5622],[112.8048,-7.5594],[112.8052,-7.556],[112.8101,-7.5554],[112.8165,-7.5589],[112.8267,-7.5536],[112.832,-7.5524],[112.8373,-7.5665]]}},{"type":"Feature","properties":{"mhid":"1332:23","alt_name":"KOTA LHOKSEUMAWE","latitude":5.13333,"longitude":97.06667,"sample_value":558},"geometry":{"type":"LineString","coordinates":[[97.1771,5.1413],[97.1702,5.143],[97.146,5.153],[97.1424,5.1569],[97.1422,5.1604],[97.1377,5.1691],[97.1385,5.1719],[97.1437,5.1743],[97.1459,5.1695],[97.1506,5.1678],[97.154,5.1747],[97.1514,5.1875],[97.1452,5.1972],[97.1404,5.2012],[97.1187,5.2119],[97.1171,5.2175],[97.1086,5.2208],[97.1067,5.2118],[97.097,5.2182],[97.0975,5.2228],[97.1042,5.2213],[97.1046,5.2247],[97.0935,5.2266],[97.0815,5.2313],[97.0687,5.2349],[97.0614,5.2354],[97.0518,5.238],[97.0456,5.2408],[97.0366,5.2279],[97.0372,5.2227],[97.035,5.2205],[97.0368,5.2133],[97.0273,5.2105],[97.0262,5.2079],[97.0311,5.2047],[97.028,5.1993],[97.0297,5.1973],[97.0454,5.1985],[97.0527,5.193],[97.0546,5.1859],[97.0609,5.1773],[97.0568,5.1706],[97.0663,5.1587],[97.0713,5.1572],[97.0805,5.157],[97.0856,5.1477],[97.0943,5.1402],[97.1079,5.1256],[97.1012,5.1144],[97.1016,5.1096],[97.1104,5.1046],[97.1175,5.1041],[97.1288,5.0954],[97.1301,5.0907],[97.1355,5.0917],[97.146,5.09],[97.1563,5.0837],[97.1751,5.0827],[97.1794,5.0837],[97.1768,5.092],[97.1772,5.0987],[97.1743,5.105],[97.1786,5.1198],[97.1767,5.1212],[97.1771,5.1413]]}},{"type":"Feature","properties":{"mhid":"1332:24","alt_name":"KOTA SUBULUSSALAM","latitude":2.75,"longitude":97.93333,"sample_value":513},"geometry":{"type":"LineString","coordinates":[[97.9351,2.9895],[97.9192,2.9962],[97.916,2.9985],[97.908,3.0008],[97.9016,3.0078],[97.888,3.0092],[97.8803,3.0072],[97.8725,3.0098],[97.861,3.0035],[97.8562,3.0034],[97.8515,3.001],[97.841,3.0032],[97.829,3],[97.8192,2.9886],[97.815,2.9822],[97.8705,2.9676],[97.8902,2.9655],[97.8996,2.9658],[97.9065,2.9541],[97.9081,2.9339],[97.9075,2.9207],[97.9049,2.9117],[97.9017,2.9072],[97.8864,2.8943],[97.8788,2.8905],[97.8616,2.8842],[97.8576,2.8805],[97.8577,2.8652],[97.86,2.8601],[97.86,2.8462],[97.8492,2.8343],[97.8366,2.8265],[97.7777,2.7944],[97.7666,2.7877],[97.7709,2.7765],[97.7798,2.7587],[97.7952,2.7202],[97.8174,2.6671],[97.8139,2.6528],[97.8251,2.6358],[97.8181,2.6161],[97.8014,2.5659],[97.7955,2.5472],[97.7943,2.5319],[97.7917,2.5073],[97.8412,2.5025],[97.8398,2.5133],[97.8413,2.5162],[97.8466,2.5188],[97.8493,2.5232],[97.8501,2.5318],[97.8474,2.5315],[97.8427,2.5389],[97.8436,2.5455],[97.8429,2.557],[97.8502,2.5591],[97.8539,2.5644],[97.8612,2.5618],[97.871,2.556],[97.8757,2.5475],[97.8827,2.5481],[97.8864,2.551],[97.8907,2.5607],[97.8979,2.5648],[97.9053,2.5629],[97.9076,2.5672],[97.9119,2.5703],[97.9165,2.57],[97.9212,2.5738],[97.9294,2.5765],[97.9325,2.5737],[97.938,2.574],[97.9403,2.5787],[97.9479,2.5781],[97.953,2.5802],[97.9541,2.5769],[97.9667,2.5901],[97.9883,2.6097],[98.0042,2.5986],[98.0096,2.5966],[98.0124,2.5901],[98.024,2.5842],[98.0229,2.5805],[98.0278,2.5746],[98.0272,2.5711],[98.0324,2.5664],[98.0348,2.5598],[98.0426,2.5673],[98.045,2.5629],[98.0486,2.5618],[98.0556,2.5647],[98.0602,2.5738],[98.0574,2.5761],[98.0558,2.5853],[98.0653,2.5857],[98.0792,2.5831],[98.0834,2.5921],[98.085,2.6028],[98.0915,2.6012],[98.1004,2.6015],[98.1096,2.6041],[98.1126,2.6134],[98.1086,2.6238],[98.1071,2.6332],[98.1032,2.6545],[98.1045,2.6612],[98.1039,2.6816],[98.1006,2.6892],[98.092,2.6981],[98.0856,2.7063],[98.0822,2.7143],[98.0762,2.7238],[98.0713,2.7362],[98.0736,2.747],[98.0761,2.7498],[98.0697,2.7634],[98.0701,2.765],[98.0805,2.7695],[98.0932,2.7739],[98.1085,2.7761],[98.1169,2.785],[98.1051,2.7903],[98.1017,2.8059],[98.098,2.8186],[98.0986,2.8228],[98.0677,2.8174],[98.0627,2.8169],[98.0557,2.8187],[98.049,2.823],[98.0462,2.8269],[98.0419,2.837],[98.0396,2.8473],[98.0319,2.8492],[98.0278,2.8559],[98.0136,2.867],[98.0026,2.8747],[97.9974,2.8743],[97.9924,2.8822],[97.985,2.8826],[97.9833,2.8847],[97.9705,2.8899],[97.9616,2.8914],[97.9487,2.8953],[97.9638,2.9619],[97.9646,2.9732],[97.9594,2.9813],[97.9496,2.9877],[97.9351,2.9895]]}},{"type":"Feature","properties":{"mhid":"1332:50","alt_name":"KOTA SIBOLGA","latitude":1.73333,"longitude":98.8,"sample_value":560},"geometry":{"type":"LineString","coordinates":[[98.7683,1.7156],[98.76,1.7129],[98.7619,1.706],[98.7688,1.7077],[98.7683,1.7156]]}},{"type":"Feature","properties":{"mhid":"1332:50","alt_name":"KOTA SIBOLGA","latitude":1.73333,"longitude":98.8,"sample_value":560},"geometry":{"type":"LineString","coordinates":[[98.7962,1.7216],[98.8086,1.7295],[98.8022,1.7402],[98.7927,1.7511],[98.7948,1.7564],[98.7687,1.7564],[98.769,1.7447],[98.7731,1.7428],[98.7768,1.7366],[98.7852,1.7283],[98.7884,1.7297],[98.7962,1.7216]]}},{"type":"Feature","properties":{"mhid":"1332:51","alt_name":"KOTA TANJUNG BALAI","latitude":2.95833,"longitude":99.79167,"sample_value":373},"geometry":{"type":"LineString","coordinates":[[99.8051,3.017],[99.7918,3.0169],[99.7953,3.0089],[99.766,3.009],[99.7782,2.9794],[99.7804,2.9693],[99.7626,2.969],[99.7556,2.9593],[99.7556,2.9525],[99.753,2.9421],[99.7578,2.9384],[99.7725,2.9238],[99.7767,2.9214],[99.79,2.9236],[99.7964,2.9268],[99.8037,2.9288],[99.8138,2.9263],[99.8164,2.9241],[99.8258,2.9288],[99.831,2.9298],[99.8374,2.9368],[99.8375,2.9472],[99.8339,2.9564],[99.8206,2.9612],[99.8166,2.9652],[99.8105,2.9676],[99.8086,2.9704],[99.8066,2.9865],[99.8098,2.9929],[99.8194,2.9946],[99.82,3.0235],[99.8164,3.024],[99.8051,3.017]]}},{"type":"Feature","properties":{"mhid":"1332:52","alt_name":"KOTA PEMATANG SIANTAR","latitude":2.96667,"longitude":99.05,"sample_value":743},"geometry":{"type":"LineString","coordinates":[[99.0845,3.0142],[99.0721,3.0136],[99.0578,3.0063],[99.0384,3.0076],[99.0364,3.0023],[99.0369,2.9977],[99.0317,2.9968],[99.0294,2.9915],[99.0264,2.9908],[99.025,2.9858],[99.0208,2.9812],[99.0259,2.9724],[99.0247,2.96],[99.019,2.9494],[99.0207,2.9452],[99.0291,2.9371],[99.0303,2.9328],[99.0411,2.9254],[99.0335,2.9192],[99.0384,2.9136],[99.0283,2.9088],[99.0248,2.9043],[99.0187,2.9015],[99.0165,2.8985],[99.0175,2.8905],[99.028,2.8922],[99.0333,2.9009],[99.0399,2.9084],[99.0489,2.9071],[99.054,2.913],[99.0597,2.9149],[99.078,2.9263],[99.0833,2.9312],[99.0898,2.9344],[99.0959,2.934],[99.1016,2.9357],[99.1032,2.9394],[99.0966,2.9436],[99.0929,2.9546],[99.1013,2.9597],[99.0981,2.963],[99.0842,2.9557],[99.0902,2.9726],[99.0845,2.9728],[99.0815,2.9786],[99.0947,2.9812],[99.0922,2.9875],[99.0926,2.9958],[99.0958,3.0059],[99.1019,3.007],[99.1059,3.0125],[99.1041,3.015],[99.0974,3.0159],[99.0923,3.0105],[99.0845,3.0142]]}},{"type":"Feature","properties":{"mhid":"1332:53","alt_name":"KOTA TEBING TINGGI","latitude":3.325,"longitude":99.14167,"sample_value":42},"geometry":{"type":"LineString","coordinates":[[99.1683,3.3744],[99.1596,3.3706],[99.1561,3.3669],[99.1658,3.3571],[99.1544,3.3416],[99.1451,3.35],[99.14,3.3449],[99.1354,3.3498],[99.1289,3.3499],[99.1232,3.3433],[99.1144,3.3371],[99.125,3.3359],[99.125,3.3293],[99.1289,3.3279],[99.1268,3.3213],[99.132,3.3157],[99.1321,3.3078],[99.1263,3.3074],[99.119,3.3016],[99.1202,3.2973],[99.1249,3.2896],[99.1275,3.2882],[99.1363,3.2776],[99.1371,3.2837],[99.1433,3.2907],[99.1426,3.296],[99.137,3.3053],[99.1442,3.3117],[99.1462,3.3069],[99.1509,3.3056],[99.1542,3.3091],[99.1731,3.3092],[99.1731,3.3065],[99.1818,3.3064],[99.1838,3.3089],[99.1926,3.3109],[99.1912,3.3175],[99.1874,3.3172],[99.1839,3.3289],[99.1832,3.3373],[99.1903,3.341],[99.1938,3.3515],[99.1888,3.3583],[99.1787,3.3541],[99.1753,3.3496],[99.1677,3.3504],[99.1719,3.3552],[99.1681,3.36],[99.17,3.3643],[99.1774,3.3681],[99.1767,3.3715],[99.1689,3.3785],[99.1683,3.3744]]}},{"type":"Feature","properties":{"mhid":"1332:54","alt_name":"KOTA MEDAN","latitude":3.65,"longitude":98.66667,"sample_value":389},"geometry":{"type":"LineString","coordinates":[[98.707,3.7726],[98.7131,3.7795],[98.7198,3.7919],[98.7179,3.7975],[98.7123,3.7922],[98.7047,3.7905],[98.6846,3.7895],[98.6801,3.787],[98.6802,3.7771],[98.6743,3.7735],[98.6675,3.7762],[98.6634,3.7809],[98.6512,3.7817],[98.6445,3.7745],[98.6334,3.7757],[98.6342,3.7675],[98.6286,3.7687],[98.6253,3.7596],[98.6305,3.7557],[98.6345,3.7504],[98.6361,3.7432],[98.641,3.7393],[98.6471,3.7375],[98.6533,3.7375],[98.6527,3.7321],[98.6444,3.7297],[98.6433,3.7194],[98.6344,3.7203],[98.6298,3.7137],[98.6259,3.7127],[98.6248,3.6997],[98.6318,3.6996],[98.6339,3.6846],[98.6486,3.6834],[98.6516,3.6746],[98.6578,3.675],[98.656,3.6692],[98.6576,3.6441],[98.6593,3.6395],[98.6663,3.6357],[98.6644,3.6321],[98.664,3.6241],[98.6594,3.6217],[98.6526,3.6152],[98.6311,3.6157],[98.6276,3.6127],[98.6219,3.6117],[98.61,3.6132],[98.6068,3.6104],[98.6052,3.5989],[98.6076,3.5925],[98.6043,3.5921],[98.6048,3.5853],[98.6078,3.5813],[98.6095,3.5749],[98.6074,3.566],[98.6114,3.564],[98.6116,3.5537],[98.6069,3.5535],[98.6057,3.55],[98.5988,3.5465],[98.5935,3.5414],[98.6003,3.5386],[98.6023,3.5318],[98.5974,3.5281],[98.6018,3.5127],[98.5966,3.5057],[98.5967,3.5008],[98.5925,3.4982],[98.6001,3.4909],[98.6096,3.4966],[98.6172,3.4983],[98.6166,3.5033],[98.6214,3.5071],[98.6247,3.507],[98.6236,3.5161],[98.6257,3.5188],[98.6318,3.5058],[98.6365,3.4887],[98.6446,3.4881],[98.647,3.4974],[98.6537,3.497],[98.6591,3.5052],[98.6596,3.5084],[98.656,3.5124],[98.6543,3.5175],[98.6576,3.5225],[98.6623,3.5224],[98.6617,3.5149],[98.6754,3.5153],[98.6805,3.5187],[98.6982,3.5184],[98.6983,3.5315],[98.7424,3.5294],[98.7455,3.5319],[98.7444,3.5368],[98.7351,3.5384],[98.7349,3.5411],[98.7228,3.5408],[98.7219,3.5488],[98.7268,3.5511],[98.7271,3.5681],[98.7318,3.571],[98.7368,3.5773],[98.7334,3.5814],[98.7325,3.5861],[98.7408,3.5882],[98.74,3.5937],[98.7415,3.599],[98.7238,3.5994],[98.7118,3.6003],[98.7066,3.6024],[98.7073,3.6174],[98.7097,3.6173],[98.7099,3.6265],[98.6934,3.6268],[98.6929,3.6413],[98.6948,3.6454],[98.7017,3.6451],[98.703,3.6626],[98.696,3.6604],[98.6897,3.6565],[98.6922,3.6645],[98.6814,3.6681],[98.6804,3.6725],[98.6699,3.6723],[98.6737,3.6764],[98.6802,3.6754],[98.6803,3.6787],[98.6966,3.6779],[98.6947,3.6724],[98.7033,3.672],[98.7105,3.6739],[98.7122,3.6784],[98.7098,3.6944],[98.7049,3.7063],[98.7065,3.7136],[98.7111,3.7189],[98.7196,3.7256],[98.725,3.72],[98.731,3.7214],[98.7267,3.7275],[98.7272,3.7329],[98.7218,3.7345],[98.7181,3.7384],[98.7045,3.7409],[98.7053,3.744],[98.7021,3.7508],[98.7041,3.7667],[98.707,3.7726]]}},{"type":"Feature","properties":{"mhid":"1332:55","alt_name":"KOTA BINJAI","latitude":3.8,"longitude":108.23333,"sample_value":185},"geometry":{"type":"LineString","coordinates":[[98.5008,3.5695],[98.5213,3.5696],[98.5334,3.5678],[98.5366,3.5724],[98.5363,3.5869],[98.5332,3.5926],[98.5363,3.6068],[98.5331,3.6128],[98.5328,3.6208],[98.5256,3.6207],[98.5256,3.6293],[98.5161,3.6296],[98.5119,3.6318],[98.5116,3.6417],[98.5166,3.6417],[98.5178,3.6457],[98.5114,3.6459],[98.5111,3.6639],[98.5184,3.6642],[98.5183,3.6674],[98.5111,3.6671],[98.5109,3.6728],[98.5015,3.6725],[98.501,3.6683],[98.4951,3.6695],[98.4854,3.6639],[98.4725,3.6478],[98.4649,3.6501],[98.4577,3.6552],[98.454,3.6531],[98.4467,3.6559],[98.4467,3.6515],[98.4516,3.6508],[98.4575,3.6526],[98.4604,3.6497],[98.4609,3.6441],[98.4719,3.6409],[98.4744,3.6356],[98.4738,3.6169],[98.4614,3.6158],[98.4427,3.6128],[98.4405,3.6054],[98.4451,3.6043],[98.4452,3.5983],[98.459,3.5944],[98.4572,3.5921],[98.4602,3.5876],[98.4565,3.577],[98.4531,3.5791],[98.4504,3.5696],[98.4468,3.5668],[98.4465,3.558],[98.4448,3.5537],[98.445,3.5461],[98.4481,3.5358],[98.4512,3.5351],[98.4535,3.5295],[98.4719,3.5292],[98.4779,3.5283],[98.4769,3.5409],[98.4746,3.553],[98.4757,3.5564],[98.491,3.556],[98.4958,3.5566],[98.496,3.5661],[98.5008,3.5695]]}},{"type":"Feature","properties":{"mhid":"1332:56","alt_name":"KOTA PADANG SIDEMPUAN","latitude":1.37375,"longitude":99.26843,"sample_value":222},"geometry":{"type":"LineString","coordinates":[[99.2252,1.4532],[99.2273,1.4153],[99.2218,1.4111],[99.2263,1.4066],[99.2316,1.3917],[99.2368,1.3889],[99.2403,1.3841],[99.2446,1.3811],[99.2445,1.3749],[99.248,1.3619],[99.2656,1.3619],[99.2697,1.3595],[99.2781,1.3581],[99.2906,1.337],[99.3016,1.3175],[99.3034,1.3118],[99.3105,1.3039],[99.3209,1.304],[99.3217,1.3071],[99.3296,1.3102],[99.337,1.3098],[99.3406,1.3119],[99.3493,1.3116],[99.3499,1.3158],[99.3462,1.326],[99.341,1.333],[99.3294,1.3508],[99.3193,1.3692],[99.3096,1.385],[99.3112,1.3906],[99.3059,1.3979],[99.3058,1.4065],[99.3161,1.4061],[99.322,1.4006],[99.3257,1.4036],[99.3247,1.41],[99.322,1.4126],[99.3018,1.4386],[99.3004,1.4445],[99.2987,1.4667],[99.2474,1.4702],[99.2367,1.468],[99.2312,1.4643],[99.2252,1.4532]]}},{"type":"Feature","properties":{"mhid":"1332:57","alt_name":"KOTA GUNUNGSITOLI","latitude":1.32731,"longitude":97.55018,"sample_value":24},"geometry":{"type":"LineString","coordinates":[[97.649,1.094],[97.6363,1.0942],[97.6321,1.0955],[97.631,1.0885],[97.6324,1.0816],[97.6433,1.0806],[97.6553,1.0828],[97.649,1.094]]}},{"type":"Feature","properties":{"mhid":"1332:57","alt_name":"KOTA GUNUNGSITOLI","latitude":1.32731,"longitude":97.55018,"sample_value":24},"geometry":{"type":"LineString","coordinates":[[97.6902,1.1785],[97.6818,1.1899],[97.6797,1.1979],[97.6795,1.2107],[97.6754,1.2205],[97.6603,1.2321],[97.6518,1.2376],[97.65,1.2439],[97.6398,1.2562],[97.64,1.2614],[97.6357,1.2709],[97.6299,1.2785],[97.6258,1.2858],[97.6197,1.2907],[97.6132,1.2918],[97.6095,1.297],[97.609,1.304],[97.6114,1.3074],[97.6093,1.3123],[97.6017,1.3201],[97.5992,1.3289],[97.5922,1.337],[97.5879,1.3384],[97.5836,1.3432],[97.5784,1.3461],[97.5733,1.3551],[97.5685,1.3612],[97.563,1.3658],[97.5617,1.3717],[97.5585,1.3763],[97.5491,1.3785],[97.5463,1.385],[97.542,1.3894],[97.5413,1.4147],[97.5381,1.4216],[97.526,1.4219],[97.5213,1.4234],[97.5041,1.41],[97.4988,1.4033],[97.495,1.3959],[97.4864,1.3867],[97.489,1.3781],[97.4781,1.3715],[97.4757,1.361],[97.4707,1.3467],[97.479,1.3371],[97.4839,1.3266],[97.4878,1.313],[97.4948,1.3049],[97.4982,1.292],[97.5065,1.2813],[97.5102,1.2745],[97.5275,1.2792],[97.5412,1.2849],[97.5553,1.2825],[97.5658,1.277],[97.5711,1.2713],[97.5799,1.2688],[97.5832,1.2625],[97.5819,1.2605],[97.5698,1.2613],[97.5653,1.2582],[97.5645,1.2461],[97.569,1.233],[97.5679,1.2281],[97.5603,1.2212],[97.5783,1.2151],[97.5761,1.2009],[97.5821,1.1946],[97.5871,1.1997],[97.6014,1.1956],[97.6087,1.1988],[97.6156,1.1999],[97.621,1.195],[97.6227,1.1806],[97.6263,1.1739],[97.619,1.1605],[97.6141,1.1468],[97.606,1.1301],[97.5994,1.128],[97.5862,1.1204],[97.5932,1.1101],[97.6066,1.1092],[97.6137,1.1098],[97.6198,1.108],[97.6264,1.1121],[97.6302,1.1166],[97.6328,1.1049],[97.6434,1.1006],[97.6473,1.1004],[97.671,1.1086],[97.6774,1.1116],[97.6851,1.1173],[97.6807,1.1218],[97.6734,1.1211],[97.6705,1.1232],[97.6625,1.1189],[97.6552,1.1183],[97.6468,1.1124],[97.6456,1.1192],[97.6482,1.1234],[97.6634,1.139],[97.6652,1.146],[97.6688,1.1525],[97.6782,1.1638],[97.6868,1.1757],[97.6902,1.1785]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[100.3368,-3.2836],[100.3313,-3.2834],[100.3302,-3.2878],[100.3335,-3.2931],[100.3467,-3.2946],[100.3487,-3.2901],[100.3416,-3.2837],[100.3368,-3.2836]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[100.4463,-3.2704],[100.4441,-3.262],[100.4376,-3.2599],[100.4411,-3.2704],[100.4463,-3.2704]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[100.5696,-3.2751],[100.5726,-3.2719],[100.5722,-3.2618],[100.57,-3.2572],[100.5664,-3.2588],[100.5654,-3.2712],[100.5696,-3.2751]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[100.531,-3.2507],[100.5336,-3.2468],[100.5325,-3.2386],[100.5296,-3.2374],[100.5269,-3.2434],[100.5274,-3.2482],[100.531,-3.2507]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[100.4135,-3.2248],[100.4156,-3.2325],[100.4233,-3.2372],[100.4252,-3.2348],[100.4223,-3.2261],[100.4155,-3.2224],[100.4135,-3.2248]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[100.4929,-3.2303],[100.4945,-3.2283],[100.4922,-3.218],[100.4838,-3.2109],[100.4815,-3.214],[100.4835,-3.2193],[100.4929,-3.2303]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[100.4633,-3.209],[100.4591,-3.2093],[100.4611,-3.2183],[100.466,-3.2228],[100.4694,-3.2219],[100.4633,-3.209]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[100.2993,-3.208],[100.2936,-3.2086],[100.2946,-3.2133],[100.299,-3.216],[100.3016,-3.2143],[100.2993,-3.208]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[100.4014,-3.2023],[100.3957,-3.2034],[100.3989,-3.2121],[100.399,-3.2162],[100.4061,-3.2199],[100.4099,-3.2186],[100.4122,-3.2127],[100.4086,-3.203],[100.4014,-3.2023]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[100.4917,-3.1412],[100.489,-3.1415],[100.4859,-3.1483],[100.485,-3.1594],[100.4881,-3.1645],[100.4839,-3.1713],[100.4891,-3.1742],[100.4915,-3.1844],[100.4963,-3.187],[100.5034,-3.1991],[100.508,-3.201],[100.5145,-3.1956],[100.5195,-3.1953],[100.5287,-3.2002],[100.5318,-3.1977],[100.5289,-3.1935],[100.5245,-3.1938],[100.5201,-3.1903],[100.5179,-3.1832],[100.5095,-3.1805],[100.5071,-3.1781],[100.5092,-3.1725],[100.5003,-3.1635],[100.5027,-3.1581],[100.5007,-3.1469],[100.4941,-3.1413],[100.4917,-3.1412]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[100.3046,-3.1224],[100.2954,-3.1221],[100.2957,-3.1259],[100.299,-3.1293],[100.3029,-3.1381],[100.3066,-3.1395],[100.3098,-3.1357],[100.311,-3.1284],[100.3046,-3.1224]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[100.4713,-3.0826],[100.4701,-3.0884],[100.4748,-3.091],[100.4766,-3.0881],[100.4713,-3.0826]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[100.1747,-3.0537],[100.1719,-3.0543],[100.1703,-3.062],[100.1766,-3.0686],[100.181,-3.0755],[100.1891,-3.0774],[100.1973,-3.0676],[100.1963,-3.063],[100.191,-3.0579],[100.186,-3.058],[100.182,-3.055],[100.1747,-3.0537]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[100.1617,-3.0064],[100.1602,-3.0101],[100.1681,-3.0116],[100.1671,-3.0077],[100.1617,-3.0064]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[100.1542,-3.0108],[100.1466,-3.0061],[100.1445,-3.0083],[100.145,-3.0169],[100.1486,-3.0252],[100.1529,-3.0275],[100.1565,-3.021],[100.1566,-3.011],[100.1542,-3.0108]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[100.179,-2.8849],[100.1726,-2.8896],[100.1753,-2.894],[100.1818,-2.8905],[100.179,-2.8849]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[100.1676,-2.8747],[100.1624,-2.8714],[100.1597,-2.8785],[100.1655,-2.8842],[100.1697,-2.8831],[100.1676,-2.8747]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[100.1445,-2.8468],[100.1399,-2.8475],[100.1303,-2.8545],[100.1328,-2.8583],[100.1415,-2.8601],[100.1468,-2.8629],[100.1511,-2.8598],[100.1503,-2.8521],[100.1445,-2.8468]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[100.1713,-2.8297],[100.176,-2.8265],[100.1746,-2.8218],[100.168,-2.8227],[100.1677,-2.8277],[100.1713,-2.8297]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[100.2706,-2.8181],[100.2658,-2.8193],[100.2643,-2.8235],[100.2668,-2.8273],[100.2722,-2.8246],[100.2735,-2.8198],[100.2706,-2.8181]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[100.1675,-2.8208],[100.1691,-2.817],[100.1672,-2.8107],[100.1628,-2.816],[100.1675,-2.8208]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[100.2268,-2.785],[100.2238,-2.7825],[100.2208,-2.7881],[100.2171,-2.7856],[100.204,-2.7869],[100.2011,-2.7853],[100.1971,-2.7882],[100.1991,-2.7921],[100.1935,-2.7945],[100.1888,-2.7922],[100.1819,-2.7939],[100.1775,-2.7974],[100.1755,-2.8025],[100.1756,-2.811],[100.1829,-2.825],[100.1842,-2.8364],[100.1789,-2.8401],[100.1836,-2.8443],[100.1829,-2.8499],[100.1887,-2.8527],[100.1948,-2.8769],[100.1927,-2.8814],[100.1962,-2.8855],[100.1959,-2.8947],[100.1901,-2.9052],[100.1952,-2.9121],[100.1997,-2.9232],[100.2014,-2.932],[100.2007,-2.9392],[100.1934,-2.9472],[100.1935,-2.9511],[100.1901,-2.9562],[100.1842,-2.9543],[100.1805,-2.9657],[100.1901,-2.9705],[100.1913,-2.9753],[100.1896,-2.9846],[100.1865,-2.989],[100.1941,-2.9969],[100.1992,-2.9945],[100.2016,-2.9977],[100.2006,-3.0021],[100.2049,-3.003],[100.205,-3.0088],[100.2119,-3.012],[100.2111,-3.018],[100.2171,-3.0233],[100.22,-3.0212],[100.2234,-3.0249],[100.2188,-3.0277],[100.223,-3.036],[100.2299,-3.0358],[100.228,-3.0484],[100.2314,-3.0571],[100.2352,-3.0564],[100.2379,-3.0513],[100.2414,-3.0501],[100.2459,-3.0438],[100.2521,-3.0461],[100.2558,-3.0522],[100.2556,-3.0558],[100.2494,-3.0575],[100.2481,-3.0623],[100.2586,-3.0598],[100.2618,-3.0635],[100.2621,-3.0677],[100.2494,-3.0734],[100.2464,-3.0739],[100.2462,-3.0796],[100.2516,-3.0825],[100.2598,-3.0896],[100.2679,-3.0901],[100.2672,-3.0807],[100.2746,-3.0766],[100.2812,-3.0777],[100.283,-3.0804],[100.2908,-3.0802],[100.3011,-3.0879],[100.3073,-3.0956],[100.3118,-3.1032],[100.3117,-3.1065],[100.3071,-3.1094],[100.3076,-3.1141],[100.3119,-3.1187],[100.3231,-3.1192],[100.3217,-3.1254],[100.3315,-3.131],[100.3316,-3.1401],[100.3346,-3.1438],[100.3335,-3.1487],[100.3345,-3.1559],[100.339,-3.1579],[100.3393,-3.1632],[100.3359,-3.1662],[100.3262,-3.1688],[100.3244,-3.1713],[100.3272,-3.1758],[100.3292,-3.1833],[100.3378,-3.1938],[100.3386,-3.1999],[100.3428,-3.202],[100.3477,-3.2098],[100.3525,-3.2125],[100.3568,-3.2213],[100.363,-3.2221],[100.3685,-3.2265],[100.3677,-3.2291],[100.359,-3.2279],[100.3554,-3.2311],[100.3468,-3.2283],[100.3442,-3.2293],[100.3397,-3.2235],[100.3381,-3.2163],[100.3288,-3.2079],[100.3239,-3.2104],[100.3275,-3.2185],[100.3254,-3.2246],[100.3262,-3.2299],[100.3339,-3.2321],[100.3367,-3.2468],[100.3426,-3.2483],[100.3445,-3.2454],[100.3521,-3.2435],[100.3583,-3.2448],[100.3744,-3.2518],[100.3821,-3.2581],[100.381,-3.2638],[100.3774,-3.2648],[100.379,-3.2742],[100.3809,-3.2771],[100.3777,-3.284],[100.3822,-3.2892],[100.395,-3.2974],[100.3989,-3.297],[100.4058,-3.2998],[100.4105,-3.3051],[100.417,-3.308],[100.4209,-3.3149],[100.4206,-3.3223],[100.4243,-3.3268],[100.4333,-3.3321],[100.4397,-3.3441],[100.4448,-3.3472],[100.4587,-3.35],[100.4722,-3.3483],[100.4726,-3.3433],[100.4771,-3.3417],[100.4785,-3.3359],[100.4694,-3.3248],[100.4713,-3.3172],[100.4683,-3.312],[100.4568,-3.3061],[100.4565,-3.2999],[100.452,-3.2949],[100.4464,-3.2849],[100.4387,-3.28],[100.4327,-3.28],[100.4311,-3.272],[100.4321,-3.2675],[100.4296,-3.2585],[100.4249,-3.2539],[100.415,-3.2491],[100.4118,-3.2446],[100.4063,-3.2318],[100.4019,-3.2254],[100.3979,-3.2248],[100.3974,-3.2186],[100.3932,-3.2148],[100.3927,-3.2085],[100.3888,-3.202],[100.3897,-3.1955],[100.3806,-3.1867],[100.3819,-3.1852],[100.3894,-3.1905],[100.3914,-3.1967],[100.3973,-3.1991],[100.4097,-3.1935],[100.4057,-3.1906],[100.4038,-3.1841],[100.3987,-3.1764],[100.3927,-3.1726],[100.385,-3.1733],[100.3774,-3.1687],[100.3638,-3.1687],[100.3662,-3.1631],[100.3703,-3.1623],[100.3767,-3.1643],[100.3834,-3.1575],[100.3878,-3.156],[100.3924,-3.1508],[100.4004,-3.1559],[100.407,-3.1535],[100.4153,-3.155],[100.4184,-3.1524],[100.4249,-3.1539],[100.4266,-3.1434],[100.4302,-3.1475],[100.439,-3.1511],[100.4435,-3.1512],[100.4489,-3.1453],[100.4534,-3.1473],[100.4685,-3.1452],[100.4718,-3.1395],[100.4726,-3.1292],[100.4705,-3.1252],[100.4656,-3.1226],[100.4579,-3.1208],[100.4566,-3.1107],[100.4574,-3.1079],[100.4626,-3.1068],[100.4592,-3.1002],[100.4611,-3.0944],[100.4637,-3.0762],[100.4629,-3.0723],[100.4682,-3.0679],[100.4688,-3.0639],[100.4652,-3.0574],[100.4677,-3.0531],[100.4664,-3.0475],[100.4684,-3.0437],[100.4637,-3.0411],[100.4624,-3.0496],[100.4576,-3.0511],[100.4543,-3.0451],[100.4504,-3.0437],[100.4526,-3.0386],[100.4461,-3.0225],[100.4484,-3.0205],[100.4531,-3.0286],[100.4587,-3.0228],[100.4581,-3.031],[100.4634,-3.0331],[100.4651,-3.0254],[100.4605,-3.0198],[100.4546,-3.0101],[100.4435,-3.0066],[100.4402,-3.0069],[100.4278,-3.0011],[100.4252,-2.998],[100.4284,-2.9932],[100.4263,-2.9882],[100.4198,-2.9823],[100.4211,-2.9737],[100.416,-2.9695],[100.4045,-2.9663],[100.3945,-2.9571],[100.3923,-2.949],[100.3865,-2.9457],[100.3825,-2.9343],[100.3717,-2.9272],[100.3654,-2.9174],[100.3591,-2.9132],[100.3565,-2.9089],[100.3549,-2.9016],[100.3495,-2.8985],[100.3467,-2.8945],[100.3413,-2.8942],[100.3348,-2.8865],[100.3286,-2.8812],[100.3222,-2.8802],[100.3155,-2.8757],[100.3101,-2.874],[100.3086,-2.8705],[100.2992,-2.8603],[100.2935,-2.8513],[100.2883,-2.8542],[100.2839,-2.8534],[100.2854,-2.8483],[100.284,-2.8443],[100.278,-2.8446],[100.2667,-2.8425],[100.2672,-2.838],[100.2709,-2.8363],[100.2644,-2.8296],[100.2623,-2.8182],[100.2521,-2.8108],[100.2499,-2.8069],[100.2525,-2.7984],[100.2442,-2.7969],[100.2413,-2.7896],[100.2351,-2.7836],[100.2268,-2.785]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[99.9841,-2.747],[99.9791,-2.7498],[99.981,-2.7569],[99.987,-2.7534],[99.9841,-2.747]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[99.9939,-2.5025],[99.9852,-2.5059],[99.9749,-2.5083],[99.9718,-2.5144],[99.975,-2.5312],[99.9715,-2.5332],[99.9747,-2.5373],[99.9746,-2.542],[99.9699,-2.5537],[99.973,-2.5598],[99.9738,-2.567],[99.9714,-2.5694],[99.9611,-2.5704],[99.9602,-2.5725],[99.9635,-2.5813],[99.9708,-2.5891],[99.981,-2.5953],[99.9843,-2.6033],[99.9873,-2.606],[99.9887,-2.6112],[99.9876,-2.6216],[99.9819,-2.6252],[99.9781,-2.6226],[99.9748,-2.6268],[99.9767,-2.6326],[99.985,-2.6347],[99.9895,-2.6398],[99.994,-2.65],[99.9925,-2.6543],[99.9986,-2.6643],[100.0054,-2.6666],[100.0095,-2.674],[100.012,-2.6865],[100.008,-2.6954],[99.9989,-2.6969],[100.0023,-2.7059],[100.0018,-2.7123],[100.0031,-2.7192],[100.0095,-2.7272],[100.0047,-2.729],[100.0057,-2.7342],[100.0117,-2.7386],[100.0105,-2.7433],[100.0023,-2.7445],[99.995,-2.7511],[99.9956,-2.758],[99.989,-2.7648],[99.9921,-2.7694],[99.9835,-2.7707],[99.9813,-2.7756],[99.9771,-2.7793],[99.9732,-2.7853],[99.978,-2.7876],[99.9835,-2.7819],[99.9826,-2.779],[99.9855,-2.7738],[99.994,-2.7766],[99.9944,-2.7813],[99.9894,-2.7869],[99.9929,-2.7935],[99.9986,-2.7977],[100.0089,-2.8031],[100.0097,-2.808],[100.0158,-2.8102],[100.0167,-2.8183],[100.0141,-2.8272],[100.0088,-2.8304],[100.0045,-2.8304],[99.9988,-2.8271],[99.9956,-2.8289],[99.9972,-2.8338],[100.0073,-2.8442],[100.0126,-2.8481],[100.0193,-2.8509],[100.0278,-2.8497],[100.033,-2.8463],[100.0369,-2.8472],[100.0408,-2.8513],[100.0426,-2.8409],[100.0376,-2.8303],[100.0397,-2.8211],[100.0475,-2.8156],[100.0575,-2.8178],[100.0746,-2.842],[100.0812,-2.8387],[100.0816,-2.8312],[100.0865,-2.8343],[100.0918,-2.8297],[100.094,-2.8334],[100.1033,-2.8367],[100.1182,-2.8378],[100.1247,-2.8341],[100.1291,-2.8373],[100.133,-2.8326],[100.1425,-2.8406],[100.1474,-2.838],[100.1458,-2.8309],[100.1408,-2.8228],[100.1381,-2.8141],[100.1413,-2.8081],[100.1563,-2.8009],[100.1587,-2.7981],[100.17,-2.7912],[100.1866,-2.7833],[100.19,-2.7854],[100.1951,-2.7816],[100.1954,-2.7759],[100.1997,-2.7751],[100.2085,-2.7789],[100.2167,-2.7753],[100.218,-2.7688],[100.2168,-2.7648],[100.2181,-2.7567],[100.2216,-2.7514],[100.2183,-2.737],[100.2123,-2.7254],[100.2065,-2.7223],[100.2026,-2.7168],[100.2007,-2.7105],[100.1994,-2.6994],[100.1945,-2.695],[100.1841,-2.6756],[100.1805,-2.667],[100.1773,-2.6552],[100.1721,-2.6477],[100.1669,-2.6443],[100.1479,-2.639],[100.1438,-2.636],[100.1414,-2.6314],[100.1313,-2.6261],[100.125,-2.619],[100.1165,-2.6145],[100.1116,-2.6089],[100.1089,-2.603],[100.0996,-2.5946],[100.099,-2.5893],[100.09,-2.5905],[100.0822,-2.5841],[100.0766,-2.583],[100.0709,-2.5799],[100.0564,-2.5657],[100.0524,-2.5636],[100.0441,-2.5517],[100.041,-2.5453],[100.0354,-2.5431],[100.0317,-2.5327],[100.0271,-2.5263],[100.0185,-2.5207],[100.0176,-2.5182],[100.0098,-2.5143],[99.9985,-2.5028],[99.9939,-2.5025]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[99.7175,-2.3567],[99.7124,-2.3583],[99.7109,-2.3614],[99.7125,-2.3672],[99.7102,-2.3747],[99.722,-2.384],[99.725,-2.3837],[99.7285,-2.3788],[99.7336,-2.3814],[99.7324,-2.3882],[99.7355,-2.3938],[99.74,-2.3921],[99.743,-2.387],[99.7491,-2.3849],[99.7449,-2.379],[99.7397,-2.3852],[99.7353,-2.3816],[99.7389,-2.3762],[99.7386,-2.3705],[99.7305,-2.3607],[99.7236,-2.3571],[99.7175,-2.3567]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[99.5423,-2.223],[99.5446,-2.2215],[99.5442,-2.2127],[99.5378,-2.2135],[99.5373,-2.2207],[99.5423,-2.223]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[99.5279,-2.1287],[99.5287,-2.1341],[99.539,-2.1319],[99.5359,-2.1283],[99.5279,-2.1287]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[99.5927,-2.031],[99.5882,-2.0252],[99.5805,-2.0343],[99.5727,-2.0374],[99.569,-2.0373],[99.5586,-2.0458],[99.5579,-2.0517],[99.5665,-2.059],[99.5643,-2.0654],[99.5593,-2.0657],[99.5556,-2.0693],[99.5472,-2.0705],[99.547,-2.0792],[99.5495,-2.0848],[99.5525,-2.0965],[99.5508,-2.1042],[99.5533,-2.1111],[99.5577,-2.1187],[99.566,-2.1224],[99.5635,-2.1304],[99.5668,-2.1398],[99.5732,-2.1456],[99.5694,-2.1534],[99.5666,-2.1544],[99.5571,-2.1518],[99.5547,-2.1484],[99.5424,-2.1443],[99.5374,-2.144],[99.5313,-2.1472],[99.5284,-2.153],[99.5317,-2.1612],[99.5315,-2.1674],[99.5358,-2.1745],[99.5365,-2.1796],[99.5441,-2.1843],[99.5481,-2.1916],[99.5503,-2.2072],[99.5599,-2.2173],[99.5724,-2.2236],[99.5748,-2.23],[99.572,-2.235],[99.5749,-2.2426],[99.5792,-2.2401],[99.584,-2.231],[99.5844,-2.2239],[99.5918,-2.2226],[99.5977,-2.2279],[99.5956,-2.2342],[99.5927,-2.2365],[99.5944,-2.2452],[99.5921,-2.2491],[99.5951,-2.252],[99.6008,-2.2444],[99.6064,-2.2427],[99.6107,-2.2484],[99.6103,-2.253],[99.6065,-2.2562],[99.599,-2.258],[99.5975,-2.2641],[99.5987,-2.2707],[99.6015,-2.2764],[99.6012,-2.2841],[99.6065,-2.2864],[99.6077,-2.2903],[99.6124,-2.2929],[99.6161,-2.2919],[99.6209,-2.2843],[99.6225,-2.2746],[99.6262,-2.2727],[99.6318,-2.2818],[99.6289,-2.2858],[99.6322,-2.2903],[99.638,-2.2874],[99.6413,-2.2816],[99.6461,-2.2812],[99.6566,-2.2832],[99.6775,-2.2908],[99.6848,-2.2961],[99.6852,-2.3002],[99.6937,-2.3008],[99.6994,-2.3086],[99.7067,-2.3108],[99.7069,-2.3164],[99.7102,-2.327],[99.7136,-2.3297],[99.7221,-2.3328],[99.7296,-2.333],[99.7382,-2.3452],[99.7457,-2.3477],[99.7555,-2.3432],[99.7654,-2.341],[99.777,-2.3422],[99.7884,-2.3468],[99.7893,-2.3519],[99.793,-2.356],[99.7907,-2.3619],[99.7958,-2.3692],[99.8025,-2.3673],[99.8117,-2.3704],[99.818,-2.3651],[99.8229,-2.3691],[99.8268,-2.3636],[99.8322,-2.3623],[99.8406,-2.3662],[99.8403,-2.3748],[99.8421,-2.3787],[99.8397,-2.3852],[99.8399,-2.3894],[99.8451,-2.3986],[99.8515,-2.4021],[99.8601,-2.4028],[99.8633,-2.3981],[99.864,-2.3895],[99.8617,-2.3788],[99.8576,-2.3773],[99.8549,-2.3722],[99.8509,-2.3559],[99.8452,-2.3498],[99.8443,-2.3444],[99.8477,-2.3394],[99.8461,-2.3348],[99.8387,-2.3343],[99.8349,-2.3301],[99.8316,-2.3203],[99.8242,-2.3081],[99.8198,-2.3043],[99.8126,-2.3022],[99.8144,-2.2973],[99.8072,-2.2945],[99.8005,-2.289],[99.7912,-2.2909],[99.7885,-2.2934],[99.7825,-2.2825],[99.7846,-2.2782],[99.7847,-2.2704],[99.7799,-2.2643],[99.7807,-2.2551],[99.7683,-2.2452],[99.7592,-2.2399],[99.7513,-2.2319],[99.7451,-2.2178],[99.7454,-2.213],[99.7401,-2.2122],[99.7365,-2.2079],[99.7356,-2.2017],[99.7332,-2.1985],[99.7329,-2.1897],[99.7281,-2.1881],[99.7206,-2.1824],[99.7249,-2.1736],[99.7208,-2.1676],[99.7173,-2.1594],[99.7115,-2.1523],[99.7117,-2.1449],[99.7101,-2.1315],[99.7069,-2.1154],[99.7043,-2.1116],[99.7066,-2.1],[99.7031,-2.0948],[99.7044,-2.0908],[99.7015,-2.0847],[99.6943,-2.0872],[99.6946,-2.0836],[99.691,-2.0758],[99.688,-2.0759],[99.6826,-2.0718],[99.6738,-2.0697],[99.6645,-2.063],[99.6632,-2.059],[99.6552,-2.0557],[99.6522,-2.0475],[99.6456,-2.0458],[99.6374,-2.0507],[99.6355,-2.045],[99.6413,-2.0418],[99.6397,-2.037],[99.6329,-2.0365],[99.621,-2.0399],[99.6166,-2.04],[99.6161,-2.0347],[99.6264,-2.0337],[99.6261,-2.0288],[99.6184,-2.0296],[99.6106,-2.0327],[99.6013,-2.0318],[99.599,-2.0287],[99.5927,-2.031]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[99.5646,-2.0045],[99.5583,-2.0021],[99.5541,-2.0058],[99.5482,-2.0081],[99.5522,-2.0165],[99.5557,-2.0204],[99.562,-2.0213],[99.5643,-2.0194],[99.5758,-2.0238],[99.5724,-2.0171],[99.5731,-2.0121],[99.5712,-2.0072],[99.5646,-2.0045]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[99.5789,-1.9935],[99.5777,-1.9904],[99.5727,-1.9883],[99.5692,-1.9891],[99.5647,-1.9938],[99.5636,-1.9995],[99.5657,-2.0015],[99.5722,-1.9976],[99.5779,-2.0036],[99.5799,-2.0003],[99.5789,-1.9935]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[99.5819,-1.9685],[99.5779,-1.9686],[99.5764,-1.9729],[99.5823,-1.9841],[99.5879,-1.9891],[99.5867,-1.992],[99.5929,-1.9938],[99.5983,-1.9935],[99.6045,-1.9973],[99.607,-1.9937],[99.6057,-1.9901],[99.6003,-1.9847],[99.5907,-1.9727],[99.5819,-1.9685]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[99.3043,-1.8997],[99.296,-1.9001],[99.2926,-1.9102],[99.2934,-1.9198],[99.2971,-1.9279],[99.3039,-1.9308],[99.3096,-1.9309],[99.3159,-1.9247],[99.3132,-1.916],[99.3062,-1.9094],[99.3063,-1.9026],[99.3043,-1.8997]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[99.2804,-1.8714],[99.2758,-1.8745],[99.2822,-1.8801],[99.29,-1.8794],[99.288,-1.8727],[99.2804,-1.8714]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[99.0912,-1.8602],[99.0802,-1.8613],[99.077,-1.8661],[99.0814,-1.8678],[99.0906,-1.8664],[99.0952,-1.8626],[99.0912,-1.8602]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[99.3113,-1.8444],[99.3041,-1.8506],[99.3029,-1.8548],[99.3152,-1.8559],[99.3206,-1.8517],[99.3173,-1.8467],[99.3113,-1.8444]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[99.1488,-1.8368],[99.1464,-1.833],[99.1417,-1.8367],[99.1487,-1.8412],[99.1488,-1.8368]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[99.047,-1.8156],[99.049,-1.809],[99.0448,-1.8056],[99.0425,-1.8102],[99.047,-1.8156]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[99.2601,-1.7917],[99.2615,-1.7959],[99.2665,-1.8015],[99.2692,-1.8074],[99.2695,-1.8125],[99.2667,-1.8172],[99.2581,-1.8255],[99.257,-1.8293],[99.2508,-1.8387],[99.2467,-1.84],[99.2455,-1.8438],[99.2408,-1.8464],[99.2419,-1.851],[99.2464,-1.8496],[99.2519,-1.8451],[99.2595,-1.8449],[99.2641,-1.8394],[99.2713,-1.8376],[99.2815,-1.841],[99.2944,-1.8341],[99.2944,-1.8274],[99.2908,-1.8239],[99.2919,-1.8188],[99.2885,-1.8123],[99.2911,-1.808],[99.289,-1.8054],[99.2799,-1.8013],[99.2726,-1.7955],[99.2678,-1.7968],[99.2644,-1.7931],[99.2601,-1.7917]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[99.2539,-1.7146],[99.2568,-1.7236],[99.2596,-1.7234],[99.2586,-1.716],[99.2539,-1.7146]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[99.1766,-1.4813],[99.1737,-1.473],[99.1695,-1.4808],[99.1716,-1.4858],[99.1766,-1.4813]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[99.1127,-1.3541],[99.111,-1.3646],[99.1202,-1.3666],[99.1218,-1.3603],[99.1127,-1.3541]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"LineString","coordinates":[[98.8993,-0.9059],[98.8949,-0.9074],[98.8842,-0.9214],[98.8734,-0.9272],[98.8683,-0.9316],[98.8571,-0.9354],[98.8248,-0.9395],[98.8199,-0.9426],[98.8148,-0.948],[98.8019,-0.9553],[98.7956,-0.9569],[98.7802,-0.9575],[98.7748,-0.9555],[98.7678,-0.9574],[98.7564,-0.9588],[98.7413,-0.959],[98.7301,-0.9545],[98.7246,-0.9457],[98.721,-0.9439],[98.7144,-0.9459],[98.7116,-0.945],[98.7029,-0.9529],[98.6892,-0.9592],[98.6848,-0.9594],[98.6792,-0.9659],[98.6751,-0.9733],[98.6687,-0.9786],[98.6645,-0.9804],[98.6644,-0.9943],[98.6625,-0.999],[98.6628,-1.0043],[98.6608,-1.0093],[98.6611,-1.0275],[98.6602,-1.0358],[98.662,-1.0575],[98.6582,-1.0803],[98.6564,-1.0823],[98.6568,-1.0884],[98.6518,-1.105],[98.6466,-1.1096],[98.6411,-1.1096],[98.6381,-1.1383],[98.6336,-1.1487],[98.6278,-1.1498],[98.6276,-1.1563],[98.6235,-1.1612],[98.6228,-1.1682],[98.6189,-1.1728],[98.6157,-1.1831],[98.6127,-1.1872],[98.6072,-1.1909],[98.6014,-1.1914],[98.5967,-1.1989],[98.5977,-1.2063],[98.6032,-1.2167],[98.6023,-1.2213],[98.6046,-1.2277],[98.6273,-1.2493],[98.6355,-1.2587],[98.6418,-1.2759],[98.6411,-1.2807],[98.6371,-1.2868],[98.6523,-1.3078],[98.654,-1.3136],[98.6657,-1.3269],[98.67,-1.3304],[98.6865,-1.35],[98.6937,-1.3599],[98.6984,-1.3699],[98.7028,-1.3751],[98.7084,-1.3848],[98.7251,-1.4037],[98.7336,-1.418],[98.7366,-1.4215],[98.7448,-1.4379],[98.7466,-1.4454],[98.7558,-1.4559],[98.7646,-1.4676],[98.7665,-1.4732],[98.7772,-1.4867],[98.7957,-1.5069],[98.8038,-1.5181],[98.8053,-1.5225],[98.8034,-1.5291],[98.8068,-1.5376],[98.8116,-1.5423],[98.8169,-1.5506],[98.8179,-1.5554],[98.8236,-1.566],[98.8317,-1.5759],[98.8363,-1.5838],[98.838,-1.5979],[98.8348,-1.6068],[98.8252,-1.6148],[98.8306,-1.621],[98.854,-1.6381],[98.8593,-1.6425],[98.8653,-1.6504],[98.8683,-1.6634],[98.8702,-1.6653],[98.8744,-1.6753],[98.8796,-1.6804],[98.9175,-1.7021],[98.9251,-1.7051],[98.9281,-1.7083],[98.9532,-1.7231],[98.9722,-1.7349],[98.9939,-1.7502],[99.0053,-1.7563],[99.0118,-1.7626],[99.0186,-1.765],[99.0402,-1.7759],[99.0551,-1.7863],[99.0691,-1.7898],[99.0779,-1.7939],[99.0804,-1.7967],[99.089,-1.7997],[99.0963,-1.8037],[99.1062,-1.8067],[99.1084,-1.8124],[99.1156,-1.807],[99.1232,-1.8064],[99.1255,-1.8086],[99.1332,-1.8071],[99.1399,-1.8042],[99.1445,-1.8007],[99.1423,-1.7946],[99.1466,-1.7875],[99.1544,-1.7814],[99.1573,-1.7822],[99.1673,-1.7795],[99.1851,-1.7794],[99.2078,-1.7816],[99.2201,-1.7836],[99.2282,-1.786],[99.2335,-1.7954],[99.2411,-1.7968],[99.2444,-1.7932],[99.2471,-1.7867],[99.2474,-1.778],[99.2517,-1.7761],[99.261,-1.779],[99.2629,-1.772],[99.2568,-1.7664],[99.2567,-1.7622],[99.2539,-1.7586],[99.2488,-1.7569],[99.2464,-1.7499],[99.2406,-1.7377],[99.2465,-1.7321],[99.2418,-1.7275],[99.242,-1.7212],[99.2384,-1.7121],[99.2401,-1.7063],[99.24,-1.6986],[99.2344,-1.6928],[99.229,-1.6835],[99.2255,-1.6804],[99.2222,-1.6689],[99.2216,-1.6633],[99.2297,-1.6688],[99.2348,-1.6846],[99.2407,-1.6764],[99.2364,-1.6669],[99.225,-1.6499],[99.2198,-1.6491],[99.2168,-1.641],[99.2108,-1.6377],[99.2047,-1.645],[99.1998,-1.6434],[99.202,-1.638],[99.2082,-1.6343],[99.2107,-1.6251],[99.2168,-1.6247],[99.2208,-1.6265],[99.2281,-1.6374],[99.2285,-1.6422],[99.231,-1.6459],[99.2381,-1.6601],[99.2383,-1.6641],[99.2433,-1.6743],[99.2441,-1.6804],[99.2416,-1.683],[99.2466,-1.6862],[99.2519,-1.6929],[99.2536,-1.6993],[99.2511,-1.7047],[99.255,-1.7128],[99.2638,-1.7178],[99.2651,-1.724],[99.2619,-1.7315],[99.2624,-1.7367],[99.2755,-1.7459],[99.2758,-1.751],[99.2801,-1.7523],[99.2921,-1.7505],[99.2877,-1.7435],[99.2901,-1.7346],[99.2861,-1.7272],[99.2927,-1.726],[99.296,-1.7231],[99.3009,-1.7229],[99.3023,-1.7188],[99.2926,-1.7113],[99.2922,-1.7082],[99.2978,-1.7008],[99.2916,-1.6873],[99.2981,-1.6881],[99.3042,-1.6863],[99.3019,-1.6826],[99.2942,-1.6798],[99.2922,-1.6771],[99.2924,-1.67],[99.2907,-1.6666],[99.2859,-1.6639],[99.2851,-1.6699],[99.2872,-1.6783],[99.2848,-1.6817],[99.2786,-1.678],[99.2773,-1.6746],[99.2796,-1.6687],[99.2758,-1.6648],[99.2793,-1.6616],[99.2868,-1.6588],[99.2891,-1.6519],[99.2812,-1.6441],[99.2752,-1.6447],[99.2755,-1.6413],[99.2807,-1.6408],[99.2817,-1.6357],[99.2872,-1.6386],[99.287,-1.6324],[99.2804,-1.6284],[99.2778,-1.6217],[99.2744,-1.6196],[99.2701,-1.6104],[99.2621,-1.6004],[99.2574,-1.5998],[99.2547,-1.5966],[99.2479,-1.6038],[99.2375,-1.6062],[99.2306,-1.6091],[99.222,-1.6057],[99.2159,-1.5967],[99.2138,-1.5858],[99.2102,-1.5789],[99.205,-1.5774],[99.2002,-1.5804],[99.1966,-1.577],[99.1977,-1.5738],[99.1939,-1.5665],[99.203,-1.5542],[99.2066,-1.5548],[99.2084,-1.5486],[99.1934,-1.5433],[99.2022,-1.5389],[99.2053,-1.534],[99.2067,-1.5269],[99.2004,-1.515],[99.196,-1.5116],[99.1931,-1.5127],[99.1923,-1.5182],[99.1853,-1.519],[99.1831,-1.5096],[99.1802,-1.5037],[99.1751,-1.5056],[99.1713,-1.5033],[99.1682,-1.4963],[99.1625,-1.4951],[99.16,-1.4905],[99.1536,-1.4882],[99.1447,-1.4791],[99.1401,-1.4724],[99.131,-1.4636],[99.1327,-1.46],[99.1239,-1.454],[99.1151,-1.4415],[99.123,-1.4399],[99.1248,-1.4445],[99.139,-1.4547],[99.1431,-1.4597],[99.1492,-1.4594],[99.1544,-1.462],[99.1576,-1.4659],[99.1682,-1.4715],[99.1702,-1.4678],[99.1648,-1.4578],[99.1617,-1.4559],[99.1635,-1.4503],[99.1605,-1.4493],[99.1612,-1.4439],[99.1657,-1.4441],[99.1692,-1.4398],[99.1663,-1.4307],[99.1597,-1.4214],[99.1533,-1.416],[99.1531,-1.4108],[99.1488,-1.4014],[99.1415,-1.3972],[99.1339,-1.4054],[99.1324,-1.4018],[99.134,-1.3953],[99.1327,-1.39],[99.129,-1.3861],[99.1222,-1.3837],[99.1149,-1.3877],[99.117,-1.3781],[99.1114,-1.3797],[99.1086,-1.3784],[99.1077,-1.3704],[99.0991,-1.3653],[99.0959,-1.3442],[99.0901,-1.3334],[99.0902,-1.3203],[99.0917,-1.316],[99.0873,-1.3076],[99.0841,-1.3054],[99.0813,-1.2946],[99.0772,-1.2902],[99.0724,-1.2915],[99.0734,-1.2969],[99.0641,-1.2976],[99.0561,-1.296],[99.0539,-1.2928],[99.0586,-1.29],[99.0634,-1.2903],[99.0629,-1.2857],[99.0586,-1.2853],[99.0591,-1.2809],[99.0543,-1.2752],[99.0652,-1.2752],[99.0667,-1.2727],[99.066,-1.2664],[99.0686,-1.2582],[99.0685,-1.2529],[99.0577,-1.2425],[99.0573,-1.2336],[99.0531,-1.2283],[99.0393,-1.2299],[99.0304,-1.2273],[99.0326,-1.2241],[99.0244,-1.221],[99.028,-1.2154],[99.0282,-1.2115],[99.0328,-1.2107],[99.0362,-1.2131],[99.0412,-1.2087],[99.0415,-1.2056],[99.0377,-1.1989],[99.0339,-1.1951],[99.0339,-1.1896],[99.0315,-1.1828],[99.0244,-1.1776],[99.0199,-1.1721],[99.0156,-1.1715],[99.0105,-1.1664],[99.0075,-1.1609],[99.0068,-1.1544],[99.0033,-1.1473],[99.0033,-1.1412],[99.0006,-1.1384],[98.9991,-1.1293],[99.0015,-1.1136],[98.9862,-1.1052],[98.9721,-1.0957],[98.9644,-1.0859],[98.958,-1.0759],[98.9555,-1.0822],[98.9578,-1.0912],[98.95,-1.09],[98.9549,-1.0838],[98.9467,-1.0812],[98.9469,-1.068],[98.9405,-1.069],[98.9394,-1.0587],[98.9401,-1.0517],[98.9367,-1.0425],[98.937,-1.0312],[98.934,-1.0242],[98.931,-1.0235],[98.9286,-1.0174],[98.9226,-1.0109],[98.9202,-1.0045],[98.9172,-1.0015],[98.9178,-0.9923],[98.922,-0.9875],[98.9268,-0.9881],[98.9318,-0.9937],[98.9351,-1.0019],[98.9439,-1.0157],[98.952,-1.0118],[98.9491,-1.0058],[98.944,-1.0055],[98.9433,-0.9966],[98.9455,-0.9867],[98.945,-0.982],[98.9421,-0.9783],[98.9369,-0.9673],[98.9359,-0.9629],[98.9321,-0.9592],[98.936,-0.9531],[98.9349,-0.9454],[98.9305,-0.934],[98.9275,-0.931],[98.9231,-0.9317],[98.9213,-0.9377],[98.91,-0.9425],[98.9073,-0.9457],[98.8987,-0.9417],[98.8971,-0.9352],[98.9015,-0.927],[98.9063,-0.9312],[98.9091,-0.9368],[98.9116,-0.9261],[98.91,-0.9207],[98.9126,-0.9146],[98.9098,-0.9089],[98.8993,-0.9059]]}},{"type":"Feature","properties":{"mhid":"1332:60","alt_name":"KABUPATEN PESISIR SELATAN","latitude":-1.58333,"longitude":100.85,"sample_value":139},"geometry":{"type":"LineString","coordinates":[[100.4896,-1.3884],[100.4877,-1.397],[100.4915,-1.3986],[100.4924,-1.3933],[100.4896,-1.3884]]}},{"type":"Feature","properties":{"mhid":"1332:60","alt_name":"KABUPATEN PESISIR SELATAN","latitude":-1.58333,"longitude":100.85,"sample_value":139},"geometry":{"type":"LineString","coordinates":[[100.4742,-1.3302],[100.4774,-1.3211],[100.4719,-1.3217],[100.4742,-1.3302]]}},{"type":"Feature","properties":{"mhid":"1332:60","alt_name":"KABUPATEN PESISIR SELATAN","latitude":-1.58333,"longitude":100.85,"sample_value":139},"geometry":{"type":"LineString","coordinates":[[100.3395,-1.188],[100.3339,-1.1901],[100.3294,-1.197],[100.3284,-1.2055],[100.3354,-1.2081],[100.3405,-1.1985],[100.3378,-1.1916],[100.3395,-1.188]]}},{"type":"Feature","properties":{"mhid":"1332:60","alt_name":"KABUPATEN PESISIR SELATAN","latitude":-1.58333,"longitude":100.85,"sample_value":139},"geometry":{"type":"LineString","coordinates":[[100.3924,-1.1881],[100.3845,-1.1879],[100.3806,-1.1922],[100.3821,-1.1989],[100.3805,-1.2062],[100.3773,-1.2088],[100.3761,-1.2173],[100.3772,-1.223],[100.3807,-1.2267],[100.3835,-1.223],[100.3897,-1.2233],[100.3971,-1.2285],[100.4014,-1.2207],[100.3991,-1.2136],[100.4005,-1.2077],[100.3981,-1.2015],[100.389,-1.21],[100.3877,-1.205],[100.3909,-1.1963],[100.3895,-1.193],[100.3924,-1.1881]]}},{"type":"Feature","properties":{"mhid":"1332:60","alt_name":"KABUPATEN PESISIR SELATAN","latitude":-1.58333,"longitude":100.85,"sample_value":139},"geometry":{"type":"LineString","coordinates":[[100.876,-1.3205],[100.8719,-1.312],[100.8652,-1.3077],[100.859,-1.2979],[100.8537,-1.2966],[100.8465,-1.3046],[100.841,-1.3066],[100.837,-1.3056],[100.829,-1.2971],[100.8283,-1.2871],[100.8205,-1.2818],[100.8141,-1.289],[100.7988,-1.2804],[100.7979,-1.2754],[100.8017,-1.2654],[100.8006,-1.2611],[100.8024,-1.2542],[100.8078,-1.2498],[100.8085,-1.2403],[100.8047,-1.2311],[100.7969,-1.2235],[100.7972,-1.2128],[100.8011,-1.2069],[100.7911,-1.1846],[100.7838,-1.1802],[100.7765,-1.1705],[100.7775,-1.1631],[100.7718,-1.1586],[100.7636,-1.1584],[100.7556,-1.1628],[100.7495,-1.1606],[100.7447,-1.1565],[100.738,-1.155],[100.7359,-1.1498],[100.7351,-1.1347],[100.7318,-1.1268],[100.7362,-1.1219],[100.7365,-1.1181],[100.7307,-1.1125],[100.7294,-1.1087],[100.7244,-1.1041],[100.7206,-1.0963],[100.7111,-1.0926],[100.7009,-1.0905],[100.6913,-1.0948],[100.6867,-1.0987],[100.6663,-1.1046],[100.6501,-1.1109],[100.6454,-1.1094],[100.6374,-1.1099],[100.6254,-1.1007],[100.6215,-1.0958],[100.6234,-1.0824],[100.6203,-1.0749],[100.6226,-1.0698],[100.6227,-1.063],[100.6191,-1.0606],[100.6097,-1.0653],[100.6043,-1.071],[100.5932,-1.0747],[100.5789,-1.0697],[100.5765,-1.0566],[100.5724,-1.0548],[100.5666,-1.0473],[100.5594,-1.0465],[100.5575,-1.0441],[100.5565,-1.0352],[100.553,-1.0314],[100.5532,-1.0242],[100.5507,-1.0102],[100.5501,-0.9947],[100.5522,-0.9883],[100.5457,-0.9702],[100.5406,-0.9663],[100.5366,-0.9571],[100.5323,-0.9667],[100.5289,-0.977],[100.5238,-0.9861],[100.5198,-0.9908],[100.5066,-0.9981],[100.4995,-1],[100.4927,-1.0044],[100.4839,-1.0015],[100.4791,-1.0034],[100.4715,-1.0153],[100.4643,-1.0231],[100.4639,-1.0297],[100.4584,-1.032],[100.452,-1.039],[100.4474,-1.0418],[100.4386,-1.0541],[100.4312,-1.0575],[100.4292,-1.0609],[100.426,-1.076],[100.4218,-1.0808],[100.4134,-1.086],[100.4118,-1.0918],[100.4207,-1.0999],[100.4207,-1.1085],[100.4127,-1.1124],[100.4044,-1.1179],[100.3988,-1.119],[100.3944,-1.1224],[100.3868,-1.1318],[100.3681,-1.1383],[100.3635,-1.1432],[100.3619,-1.1466],[100.3615,-1.1551],[100.3629,-1.1569],[100.3794,-1.1455],[100.3817,-1.1466],[100.3849,-1.1567],[100.3797,-1.1633],[100.3833,-1.1733],[100.3858,-1.1834],[100.395,-1.1789],[100.4003,-1.1817],[100.4014,-1.1869],[100.3989,-1.1903],[100.4019,-1.1937],[100.4107,-1.1977],[100.4164,-1.1985],[100.4197,-1.197],[100.4287,-1.1968],[100.4314,-1.2024],[100.4262,-1.2073],[100.4276,-1.2131],[100.4265,-1.2167],[100.4289,-1.2213],[100.4236,-1.2228],[100.4223,-1.2264],[100.4263,-1.2292],[100.436,-1.2316],[100.4312,-1.2385],[100.4313,-1.2421],[100.4349,-1.2451],[100.431,-1.2501],[100.4325,-1.2543],[100.4297,-1.2565],[100.4237,-1.2547],[100.4192,-1.2427],[100.4188,-1.2383],[100.4145,-1.2384],[100.4103,-1.2358],[100.4068,-1.2368],[100.4048,-1.2421],[100.4041,-1.2511],[100.4059,-1.254],[100.405,-1.2593],[100.4011,-1.2668],[100.4008,-1.2707],[100.4076,-1.2704],[100.4127,-1.2736],[100.416,-1.2687],[100.4191,-1.2684],[100.4223,-1.2773],[100.4295,-1.2724],[100.4395,-1.269],[100.4424,-1.2618],[100.4467,-1.2586],[100.4521,-1.2581],[100.46,-1.2639],[100.4639,-1.2728],[100.4742,-1.2827],[100.4833,-1.2901],[100.4889,-1.2978],[100.4957,-1.3022],[100.5184,-1.3111],[100.5416,-1.3096],[100.5517,-1.3165],[100.5631,-1.3293],[100.5681,-1.3368],[100.5685,-1.3407],[100.5632,-1.3467],[100.5646,-1.3524],[100.5684,-1.3497],[100.573,-1.3523],[100.5746,-1.3575],[100.569,-1.3675],[100.5648,-1.3645],[100.5606,-1.3712],[100.5621,-1.3741],[100.5683,-1.373],[100.5753,-1.3692],[100.5799,-1.3726],[100.5797,-1.3796],[100.5863,-1.3819],[100.5874,-1.3897],[100.5919,-1.392],[100.5918,-1.3962],[100.5838,-1.3943],[100.5736,-1.3942],[100.5644,-1.3981],[100.5614,-1.4045],[100.5581,-1.4069],[100.562,-1.4138],[100.5685,-1.4118],[100.573,-1.4173],[100.5821,-1.4161],[100.5841,-1.4213],[100.5735,-1.4324],[100.5723,-1.4359],[100.5679,-1.4394],[100.564,-1.438],[100.5617,-1.4416],[100.5714,-1.4534],[100.575,-1.4605],[100.5772,-1.4612],[100.5906,-1.4759],[100.5945,-1.4818],[100.5978,-1.4902],[100.6025,-1.4899],[100.61,-1.4923],[100.6126,-1.4948],[100.6181,-1.495],[100.6233,-1.5013],[100.6235,-1.5105],[100.6196,-1.5198],[100.6193,-1.5272],[100.6282,-1.5461],[100.6359,-1.5595],[100.6369,-1.5744],[100.6353,-1.5832],[100.6397,-1.5908],[100.6409,-1.6003],[100.6369,-1.6058],[100.6436,-1.6166],[100.644,-1.6212],[100.6563,-1.6305],[100.6652,-1.6385],[100.6805,-1.6542],[100.6887,-1.6648],[100.6939,-1.6748],[100.6992,-1.6825],[100.7044,-1.6954],[100.7072,-1.6998],[100.7214,-1.7165],[100.7418,-1.7427],[100.7541,-1.7609],[100.7611,-1.7755],[100.7677,-1.7864],[100.7704,-1.7941],[100.7786,-1.8059],[100.7869,-1.8203],[100.7944,-1.827],[100.8117,-1.8446],[100.8234,-1.8575],[100.839,-1.8787],[100.8558,-1.9079],[100.8607,-1.9182],[100.8668,-1.9357],[100.8691,-1.9516],[100.8722,-1.9683],[100.8684,-1.9752],[100.8698,-1.9843],[100.8728,-1.9924],[100.8734,-2],[100.8792,-2.0241],[100.8805,-2.0417],[100.8791,-2.0549],[100.8723,-2.0822],[100.8678,-2.0942],[100.8615,-2.1036],[100.8464,-2.1221],[100.8304,-2.1346],[100.8243,-2.1412],[100.8214,-2.1479],[100.8207,-2.1583],[100.822,-2.169],[100.8253,-2.178],[100.8371,-2.196],[100.8488,-2.2127],[100.8624,-2.2295],[100.8701,-2.2374],[100.8751,-2.2451],[100.8783,-2.2562],[100.8789,-2.2708],[100.8778,-2.273],[100.8793,-2.2826],[100.882,-2.2904],[100.8845,-2.3023],[100.8884,-2.3115],[100.8887,-2.3215],[100.8918,-2.3281],[100.9017,-2.3384],[100.9129,-2.3486],[100.9305,-2.3685],[100.939,-2.3773],[100.9548,-2.3925],[100.98,-2.4192],[100.9895,-2.4279],[100.9943,-2.4352],[101.0062,-2.4492],[101.0096,-2.4542],[101.0228,-2.4784],[101.0975,-2.4259],[101.143,-2.3931],[101.1457,-2.3885],[101.151,-2.3873],[101.1599,-2.3825],[101.168,-2.383],[101.171,-2.382],[101.1767,-2.3761],[101.1829,-2.3758],[101.1911,-2.3679],[101.2004,-2.3667],[101.2062,-2.36],[101.2261,-2.3475],[101.2284,-2.3441],[101.2373,-2.3416],[101.2364,-2.3219],[101.2406,-2.3182],[101.2541,-2.314],[101.2602,-2.3096],[101.2672,-2.2995],[101.2708,-2.2973],[101.2833,-2.2849],[101.2853,-2.2774],[101.2818,-2.2632],[101.281,-2.2604],[101.2821,-2.2503],[101.2821,-2.2449],[101.2792,-2.2195],[101.2731,-2.171],[101.2661,-2.111],[101.2647,-2.1018],[101.2551,-2.089],[101.2496,-2.0829],[101.2446,-2.071],[101.2408,-2.0649],[101.2337,-2.0529],[101.2249,-2.0392],[101.2098,-2.0142],[101.2069,-2.0095],[101.2081,-1.9968],[101.2071,-1.9842],[101.2027,-1.9775],[101.1925,-1.9733],[101.1825,-1.9599],[101.169,-1.9474],[101.1584,-1.9363],[101.1453,-1.9284],[101.1423,-1.9241],[101.1442,-1.9098],[101.1418,-1.9024],[101.147,-1.9042],[101.1519,-1.9031],[101.1636,-1.8944],[101.1659,-1.8795],[101.1782,-1.8631],[101.176,-1.8552],[101.1715,-1.8517],[101.1621,-1.8374],[101.1575,-1.8293],[101.156,-1.8134],[101.1518,-1.8013],[101.1421,-1.7952],[101.1424,-1.7863],[101.1405,-1.7795],[101.1361,-1.7761],[101.1297,-1.7664],[101.1288,-1.7627],[101.1339,-1.7554],[101.1315,-1.7439],[101.1316,-1.6852],[101.1206,-1.676],[101.105,-1.6699],[101.0951,-1.6707],[101.0784,-1.662],[101.0678,-1.6592],[101.0644,-1.6556],[101.06,-1.642],[101.0623,-1.6379],[101.0614,-1.6335],[101.0539,-1.6306],[101.0467,-1.6263],[101.0376,-1.6195],[101.0286,-1.6154],[101.0193,-1.6083],[101.0152,-1.6018],[101.0139,-1.5945],[101.0145,-1.5843],[101.0193,-1.5727],[101.0206,-1.5668],[101.0163,-1.5631],[101.0151,-1.5595],[101.0101,-1.5571],[101.008,-1.5524],[101.004,-1.5505],[100.9985,-1.5443],[100.9912,-1.5308],[100.9831,-1.5254],[100.9806,-1.5183],[100.9797,-1.5045],[100.976,-1.494],[100.9775,-1.4867],[100.9725,-1.4824],[100.9577,-1.4805],[100.9428,-1.4677],[100.9351,-1.4641],[100.9342,-1.4601],[100.9396,-1.4485],[100.9375,-1.4377],[100.942,-1.4311],[100.9417,-1.4229],[100.9337,-1.4144],[100.9187,-1.4058],[100.9172,-1.4034],[100.9103,-1.4004],[100.8952,-1.3902],[100.8937,-1.3857],[100.8979,-1.3801],[100.9094,-1.3783],[100.9104,-1.3735],[100.9059,-1.364],[100.9056,-1.3596],[100.8946,-1.3463],[100.8923,-1.3383],[100.8967,-1.3313],[100.8932,-1.3284],[100.8845,-1.3286],[100.876,-1.3205]]}},{"type":"Feature","properties":{"mhid":"1332:61","alt_name":"KABUPATEN SOLOK","latitude":-0.96667,"longitude":100.81667,"sample_value":99},"geometry":{"type":"LineString","coordinates":[[100.7073,-0.5739],[100.7003,-0.5673],[100.7005,-0.5577],[100.6939,-0.5544],[100.6824,-0.5555],[100.6777,-0.5543],[100.6799,-0.5465],[100.6803,-0.5398],[100.6755,-0.5357],[100.6663,-0.5346],[100.6534,-0.5373],[100.6372,-0.5384],[100.6301,-0.5487],[100.6213,-0.5531],[100.6173,-0.5575],[100.6125,-0.5595],[100.6075,-0.5512],[100.5995,-0.5547],[100.5967,-0.565],[100.5829,-0.5848],[100.5787,-0.5971],[100.5735,-0.6075],[100.5717,-0.6084],[100.5729,-0.6194],[100.5799,-0.6302],[100.5851,-0.6433],[100.5901,-0.6674],[100.5949,-0.6783],[100.5973,-0.6792],[100.5987,-0.6858],[100.5961,-0.6921],[100.5865,-0.6975],[100.5691,-0.6969],[100.5621,-0.691],[100.5601,-0.6827],[100.5635,-0.676],[100.5593,-0.6693],[100.5541,-0.6666],[100.5459,-0.6693],[100.5403,-0.6635],[100.5415,-0.6579],[100.5397,-0.6534],[100.5249,-0.6453],[100.5205,-0.6355],[100.5075,-0.6418],[100.4863,-0.6588],[100.4825,-0.659],[100.4751,-0.6552],[100.4657,-0.656],[100.4464,-0.6541],[100.4399,-0.6562],[100.43,-0.6568],[100.43,-0.6568],[100.4417,-0.6642],[100.4422,-0.6728],[100.4394,-0.6808],[100.4421,-0.6886],[100.4423,-0.7014],[100.4488,-0.7133],[100.4539,-0.7185],[100.4566,-0.7242],[100.4561,-0.729],[100.4587,-0.7314],[100.4735,-0.7314],[100.4791,-0.7365],[100.4768,-0.7504],[100.4826,-0.7536],[100.5025,-0.7568],[100.5055,-0.7652],[100.5045,-0.7863],[100.5285,-0.8],[100.5414,-0.8091],[100.5442,-0.8045],[100.5539,-0.8027],[100.5582,-0.8001],[100.563,-0.792],[100.5702,-0.7945],[100.569,-0.7894],[100.5708,-0.7867],[100.5971,-0.7851],[100.606,-0.7806],[100.6097,-0.7721],[100.6218,-0.7727],[100.6301,-0.7663],[100.6397,-0.7527],[100.6429,-0.7445],[100.6751,-0.7387],[100.6805,-0.7395],[100.6879,-0.7439],[100.6889,-0.7465],[100.6857,-0.7607],[100.6767,-0.7679],[100.6726,-0.7689],[100.673,-0.7809],[100.6702,-0.7841],[100.6704,-0.7885],[100.6767,-0.7934],[100.6794,-0.8043],[100.678,-0.8068],[100.6663,-0.8109],[100.6612,-0.8092],[100.658,-0.806],[100.6534,-0.8076],[100.6472,-0.8044],[100.6416,-0.805],[100.6427,-0.7973],[100.6361,-0.7952],[100.6254,-0.7995],[100.6209,-0.7997],[100.5925,-0.8073],[100.5816,-0.8117],[100.5707,-0.815],[100.5613,-0.819],[100.5569,-0.8186],[100.5448,-0.8149],[100.5426,-0.8178],[100.543,-0.8273],[100.5411,-0.833],[100.5323,-0.8421],[100.5313,-0.8445],[100.5359,-0.8543],[100.5451,-0.8554],[100.5497,-0.866],[100.5541,-0.8787],[100.5595,-0.8908],[100.5651,-0.8965],[100.5649,-0.9052],[100.5591,-0.9152],[100.5555,-0.9234],[100.5503,-0.9283],[100.5377,-0.9452],[100.5361,-0.951],[100.5366,-0.9571],[100.5406,-0.9663],[100.5457,-0.9702],[100.5522,-0.9883],[100.5501,-0.9947],[100.5507,-1.0102],[100.5532,-1.0242],[100.553,-1.0314],[100.5565,-1.0352],[100.5575,-1.0441],[100.5594,-1.0465],[100.5666,-1.0473],[100.5724,-1.0548],[100.5765,-1.0566],[100.5789,-1.0697],[100.5932,-1.0747],[100.6043,-1.071],[100.6097,-1.0653],[100.6191,-1.0606],[100.6227,-1.063],[100.6226,-1.0698],[100.6203,-1.0749],[100.6234,-1.0824],[100.6215,-1.0958],[100.6254,-1.1007],[100.6374,-1.1099],[100.6454,-1.1094],[100.6501,-1.1109],[100.6663,-1.1046],[100.6867,-1.0987],[100.6913,-1.0948],[100.7009,-1.0905],[100.7111,-1.0926],[100.7206,-1.0963],[100.7244,-1.1041],[100.7294,-1.1087],[100.7307,-1.1125],[100.7365,-1.1181],[100.7362,-1.1219],[100.7318,-1.1268],[100.7351,-1.1347],[100.7359,-1.1498],[100.738,-1.155],[100.7447,-1.1565],[100.7495,-1.1606],[100.7556,-1.1628],[100.7636,-1.1584],[100.7718,-1.1586],[100.7775,-1.1631],[100.7765,-1.1705],[100.7838,-1.1802],[100.7911,-1.1846],[100.8011,-1.2069],[100.7972,-1.2128],[100.7969,-1.2235],[100.8047,-1.2311],[100.8085,-1.2403],[100.8078,-1.2498],[100.8024,-1.2542],[100.8006,-1.2611],[100.8017,-1.2654],[100.7979,-1.2754],[100.7988,-1.2804],[100.8141,-1.289],[100.8205,-1.2818],[100.8283,-1.2871],[100.829,-1.2971],[100.837,-1.3056],[100.841,-1.3066],[100.8465,-1.3046],[100.8537,-1.2966],[100.859,-1.2979],[100.8652,-1.3077],[100.8719,-1.312],[100.876,-1.3205],[100.8806,-1.3126],[100.8878,-1.3102],[100.8938,-1.3062],[100.9023,-1.2965],[100.9115,-1.2902],[100.9238,-1.2886],[100.9367,-1.2837],[100.9411,-1.284],[100.9445,-1.2871],[100.9571,-1.2824],[100.9715,-1.274],[100.9847,-1.2644],[100.9907,-1.2611],[101.0038,-1.2475],[101.0138,-1.234],[101.0179,-1.2269],[101.0221,-1.2017],[101.0209,-1.1836],[101.021,-1.1754],[101.0192,-1.1688],[101.0092,-1.1543],[101.0041,-1.1458],[100.9966,-1.1358],[101.007,-1.1332],[101.0227,-1.1326],[101.0384,-1.1355],[101.0587,-1.1335],[101.0614,-1.1362],[101.0733,-1.141],[101.0838,-1.1482],[101.0934,-1.1501],[101.1018,-1.1565],[101.1056,-1.1614],[101.1154,-1.1667],[101.116,-1.1696],[101.122,-1.1757],[101.1227,-1.1799],[101.129,-1.1887],[101.1488,-1.1954],[101.155,-1.2045],[101.157,-1.2124],[101.1612,-1.2215],[101.1675,-1.2275],[101.1699,-1.2256],[101.176,-1.2276],[101.191,-1.2275],[101.1981,-1.2302],[101.2082,-1.2396],[101.222,-1.2475],[101.2339,-1.2464],[101.2359,-1.2402],[101.2347,-1.2328],[101.2412,-1.2215],[101.2458,-1.2171],[101.2454,-1.2138],[101.2354,-1.2022],[101.234,-1.1952],[101.2227,-1.187],[101.2167,-1.1723],[101.2112,-1.1643],[101.2081,-1.1624],[101.2008,-1.1629],[101.196,-1.1603],[101.1932,-1.1541],[101.1876,-1.1484],[101.1844,-1.1427],[101.1766,-1.1344],[101.1745,-1.1306],[101.1734,-1.122],[101.1693,-1.1131],[101.1683,-1.1021],[101.1693,-1.0924],[101.1672,-1.0828],[101.1616,-1.0714],[101.1601,-1.0652],[101.1615,-1.0568],[101.1528,-1.0454],[101.1457,-1.0349],[101.1549,-1.0321],[101.1625,-1.031],[101.1679,-1.0333],[101.1779,-1.0325],[101.1816,-1.0286],[101.1873,-1.0175],[101.1905,-1.0044],[101.1866,-0.9944],[101.1882,-0.9875],[101.1913,-0.9845],[101.1999,-0.981],[101.2026,-0.978],[101.1999,-0.9677],[101.1965,-0.9607],[101.1954,-0.9522],[101.1872,-0.9507],[101.1707,-0.9573],[101.161,-0.9547],[101.1487,-0.9573],[101.1411,-0.9606],[101.13,-0.9725],[101.1241,-0.9725],[101.1088,-0.9759],[101.097,-0.9803],[101.0943,-0.9825],[101.0828,-0.9866],[101.0697,-0.9864],[101.0555,-0.9763],[101.0527,-0.973],[101.0549,-0.9645],[101.0643,-0.9572],[101.0688,-0.9487],[101.0665,-0.9413],[101.0613,-0.9308],[101.0555,-0.9132],[101.0533,-0.9045],[101.0475,-0.8951],[101.0475,-0.8912],[101.041,-0.8803],[101.0368,-0.8796],[101.0323,-0.8835],[101.0213,-0.8835],[101.0152,-0.8796],[100.9991,-0.8757],[100.9916,-0.8654],[100.9939,-0.8515],[100.9858,-0.8457],[100.9774,-0.8457],[100.9677,-0.8391],[100.9655,-0.8335],[100.9565,-0.8318],[100.953,-0.8283],[100.9432,-0.8246],[100.9334,-0.818],[100.9252,-0.8067],[100.9167,-0.8078],[100.9059,-0.8105],[100.9004,-0.8136],[100.8969,-0.8189],[100.888,-0.8249],[100.8833,-0.8108],[100.8675,-0.7985],[100.8558,-0.7874],[100.8499,-0.7796],[100.8418,-0.7832],[100.8283,-0.7827],[100.8266,-0.7801],[100.8116,-0.77],[100.8042,-0.7735],[100.7981,-0.7688],[100.7891,-0.7701],[100.7822,-0.7621],[100.7765,-0.7515],[100.7713,-0.7503],[100.7668,-0.7449],[100.7599,-0.7406],[100.7535,-0.7407],[100.7527,-0.7357],[100.7491,-0.7328],[100.7466,-0.7239],[100.7341,-0.7249],[100.7283,-0.7236],[100.7222,-0.7324],[100.7141,-0.7345],[100.71,-0.7337],[100.7067,-0.7269],[100.7009,-0.7275],[100.6958,-0.7242],[100.6972,-0.7186],[100.6966,-0.711],[100.7034,-0.6963],[100.7026,-0.6839],[100.7033,-0.679],[100.7067,-0.6731],[100.7088,-0.6621],[100.6987,-0.6533],[100.6945,-0.6478],[100.6959,-0.6383],[100.6947,-0.6328],[100.6912,-0.6279],[100.7011,-0.6213],[100.7032,-0.6167],[100.7032,-0.6065],[100.7056,-0.6005],[100.7014,-0.5992],[100.697,-0.5943],[100.6992,-0.5919],[100.7009,-0.5806],[100.7073,-0.5739]]}},{"type":"Feature","properties":{"mhid":"1332:62","alt_name":"KABUPATEN SIJUNJUNG","latitude":-1.1827,"longitude":101.6056,"sample_value":499},"geometry":{"type":"LineString","coordinates":[[101.041,-0.3627],[101.0251,-0.3399],[101.0186,-0.3361],[101.0058,-0.3237],[101.0006,-0.3205],[100.9886,-0.3166],[100.9768,-0.314],[100.9625,-0.314],[100.9562,-0.3116],[100.9477,-0.3108],[100.9434,-0.3131],[100.9326,-0.3148],[100.9243,-0.3196],[100.9204,-0.3191],[100.9152,-0.3212],[100.9124,-0.3282],[100.9088,-0.3323],[100.9032,-0.3349],[100.8889,-0.3349],[100.8818,-0.3388],[100.8729,-0.3394],[100.8616,-0.3326],[100.8446,-0.3395],[100.8438,-0.3442],[100.8367,-0.3484],[100.8293,-0.3487],[100.8242,-0.3516],[100.8258,-0.3523],[100.828,-0.3624],[100.8314,-0.3648],[100.8339,-0.3741],[100.8336,-0.3801],[100.837,-0.3931],[100.8293,-0.401],[100.8313,-0.408],[100.8284,-0.4158],[100.8283,-0.4211],[100.8187,-0.4348],[100.8196,-0.4389],[100.817,-0.4466],[100.8185,-0.4509],[100.8249,-0.4561],[100.8225,-0.4617],[100.8208,-0.4749],[100.8174,-0.4765],[100.8165,-0.4879],[100.8197,-0.4923],[100.8232,-0.4905],[100.8326,-0.4941],[100.8373,-0.4923],[100.8418,-0.4963],[100.842,-0.4991],[100.848,-0.5076],[100.8515,-0.5162],[100.8521,-0.5228],[100.8501,-0.5258],[100.837,-0.5367],[100.8249,-0.5354],[100.8129,-0.5412],[100.7978,-0.5645],[100.8044,-0.5676],[100.8126,-0.5787],[100.8123,-0.5852],[100.8079,-0.5901],[100.8013,-0.5949],[100.8031,-0.5984],[100.8114,-0.6044],[100.8144,-0.6154],[100.8091,-0.6209],[100.8016,-0.6639],[100.7909,-0.6684],[100.7994,-0.6744],[100.802,-0.6989],[100.8043,-0.7078],[100.8007,-0.718],[100.8037,-0.7199],[100.8114,-0.7363],[100.8105,-0.7419],[100.816,-0.7474],[100.8221,-0.7583],[100.8215,-0.7664],[100.8153,-0.7674],[100.8116,-0.77],[100.8266,-0.7801],[100.8283,-0.7827],[100.8418,-0.7832],[100.8499,-0.7796],[100.8558,-0.7874],[100.8675,-0.7985],[100.8833,-0.8108],[100.888,-0.8249],[100.8969,-0.8189],[100.9004,-0.8136],[100.9059,-0.8105],[100.9167,-0.8078],[100.9252,-0.8067],[100.9334,-0.818],[100.9432,-0.8246],[100.953,-0.8283],[100.9565,-0.8318],[100.9655,-0.8335],[100.9677,-0.8391],[100.9774,-0.8457],[100.9858,-0.8457],[100.9939,-0.8515],[100.9916,-0.8654],[100.9991,-0.8757],[101.0152,-0.8796],[101.0213,-0.8835],[101.0323,-0.8835],[101.0368,-0.8796],[101.041,-0.8803],[101.0475,-0.8912],[101.0475,-0.8951],[101.0533,-0.9045],[101.0555,-0.9132],[101.0613,-0.9308],[101.0665,-0.9413],[101.0688,-0.9487],[101.0643,-0.9572],[101.0549,-0.9645],[101.0527,-0.973],[101.0555,-0.9763],[101.0697,-0.9864],[101.0828,-0.9866],[101.0943,-0.9825],[101.097,-0.9803],[101.1088,-0.9759],[101.1241,-0.9725],[101.13,-0.9725],[101.1411,-0.9606],[101.1487,-0.9573],[101.161,-0.9547],[101.1707,-0.9573],[101.1872,-0.9507],[101.1882,-0.9407],[101.1932,-0.9328],[101.1917,-0.922],[101.1885,-0.9161],[101.1914,-0.9138],[101.1943,-0.9059],[101.1998,-0.9061],[101.209,-0.9088],[101.2095,-0.9123],[101.2141,-0.9183],[101.2244,-0.9275],[101.2326,-0.931],[101.2394,-0.9299],[101.2414,-0.9325],[101.2492,-0.9336],[101.2734,-0.9496],[101.2795,-0.9507],[101.3027,-0.9507],[101.3067,-0.9522],[101.3157,-0.9525],[101.3322,-0.9491],[101.3345,-0.9506],[101.3379,-0.9584],[101.3436,-0.9555],[101.3441,-0.9511],[101.3531,-0.9478],[101.3535,-0.9395],[101.35,-0.9335],[101.3494,-0.9252],[101.3535,-0.9235],[101.3578,-0.9292],[101.3608,-0.9377],[101.3696,-0.9362],[101.3773,-0.9395],[101.3823,-0.9359],[101.3853,-0.9387],[101.3919,-0.9411],[101.3993,-0.9389],[101.4058,-0.932],[101.4138,-0.9308],[101.4271,-0.9318],[101.4288,-0.928],[101.4244,-0.9227],[101.4178,-0.9218],[101.4112,-0.9225],[101.4087,-0.9182],[101.4143,-0.9147],[101.4134,-0.9062],[101.4144,-0.901],[101.4126,-0.894],[101.4057,-0.8897],[101.4088,-0.885],[101.4157,-0.8848],[101.4216,-0.8808],[101.4252,-0.8668],[101.4328,-0.8666],[101.43,-0.8572],[101.4322,-0.8523],[101.4358,-0.8515],[101.4397,-0.8403],[101.4464,-0.8372],[101.4495,-0.8339],[101.4536,-0.8335],[101.4612,-0.84],[101.4671,-0.8367],[101.4725,-0.8273],[101.4821,-0.8244],[101.486,-0.8204],[101.495,-0.8055],[101.486,-0.7946],[101.4796,-0.7823],[101.473,-0.7772],[101.4586,-0.7681],[101.4442,-0.7625],[101.432,-0.7544],[101.4316,-0.7474],[101.4265,-0.7435],[101.4246,-0.7369],[101.4185,-0.7388],[101.4141,-0.7369],[101.4126,-0.7201],[101.411,-0.7176],[101.4019,-0.7107],[101.3736,-0.6976],[101.3682,-0.6919],[101.3611,-0.6892],[101.3564,-0.6831],[101.3549,-0.6774],[101.3575,-0.6741],[101.3575,-0.668],[101.3507,-0.672],[101.3332,-0.6495],[101.3256,-0.6428],[101.3238,-0.6428],[101.3074,-0.6293],[101.3026,-0.6321],[101.2959,-0.6313],[101.2882,-0.6247],[101.281,-0.6219],[101.2658,-0.6231],[101.258,-0.6262],[101.2496,-0.6255],[101.2415,-0.6153],[101.2359,-0.6057],[101.2228,-0.602],[101.2076,-0.5938],[101.2055,-0.5877],[101.1933,-0.5725],[101.1854,-0.5573],[101.1834,-0.5517],[101.1679,-0.5396],[101.1508,-0.5312],[101.1446,-0.5333],[101.141,-0.53],[101.135,-0.5279],[101.1297,-0.5243],[101.1219,-0.5121],[101.1191,-0.5107],[101.1138,-0.5037],[101.1085,-0.5017],[101.098,-0.5089],[101.0894,-0.5114],[101.081,-0.5055],[101.0713,-0.5031],[101.0672,-0.4957],[101.0667,-0.483],[101.0602,-0.4787],[101.057,-0.4746],[101.0527,-0.4645],[101.0481,-0.4599],[101.0491,-0.4552],[101.0448,-0.4504],[101.0437,-0.4444],[101.0377,-0.4352],[101.0377,-0.4247],[101.0424,-0.4218],[101.0353,-0.4123],[101.0301,-0.4023],[101.0258,-0.398],[101.0253,-0.3947],[101.0301,-0.3895],[101.0348,-0.3885],[101.0429,-0.3823],[101.0424,-0.3671],[101.041,-0.3627]]}},{"type":"Feature","properties":{"mhid":"1332:63","alt_name":"KABUPATEN TANAH DATAR","latitude":-0.4555,"longitude":100.5771,"sample_value":762},"geometry":{"type":"MultiLineString","coordinates":[[[100.8242,-0.3516],[100.8132,-0.3503],[100.8102,-0.3542],[100.7991,-0.3512],[100.7918,-0.3519],[100.7775,-0.3469],[100.7735,-0.3501],[100.7725,-0.3613],[100.7629,-0.3652],[100.7543,-0.3662],[100.75,-0.363],[100.7387,-0.3599],[100.7306,-0.3547],[100.7112,-0.3436],[100.6958,-0.3395],[100.6892,-0.3349],[100.6862,-0.3271],[100.6735,-0.325],[100.6666,-0.3319],[100.668,-0.3449],[100.6622,-0.3491],[100.6513,-0.3519],[100.6403,-0.3511],[100.6226,-0.3524],[100.6172,-0.3514],[100.608,-0.3522],[100.6053,-0.3509],[100.6014,-0.3442],[100.6022,-0.3349],[100.601,-0.3145],[100.599,-0.3126],[100.5933,-0.3136],[100.5845,-0.3122],[100.58,-0.3089],[100.5767,-0.3006],[100.5821,-0.294],[100.5788,-0.2878],[100.5746,-0.2838],[100.5675,-0.2809],[100.5562,-0.284],[100.5492,-0.2828],[100.5407,-0.2844],[100.5356,-0.2805],[100.5321,-0.2814],[100.526,-0.2896],[100.512,-0.3002],[100.5066,-0.3089],[100.5029,-0.3232],[100.4977,-0.3298],[100.4951,-0.3357],[100.4954,-0.34],[100.4928,-0.3441],[100.4876,-0.3478],[100.4805,-0.3593],[100.4806,-0.3649],[100.4787,-0.3749],[100.4731,-0.3809],[100.4693,-0.3903],[100.4624,-0.3902],[100.4519,-0.392],[100.4377,-0.3892],[100.4314,-0.391],[100.4243,-0.3904],[100.4178,-0.392],[100.4039,-0.3878],[100.3975,-0.3848],[100.3797,-0.3842],[100.3692,-0.3899],[100.3586,-0.389],[100.3525,-0.3916],[100.3413,-0.3912],[100.3319,-0.394],[100.3319,-0.403],[100.3226,-0.4122],[100.3157,-0.4292],[100.3158,-0.4309],[100.3134,-0.4438],[100.315,-0.4555],[100.3179,-0.4662],[100.3187,-0.4735],[100.3222,-0.4793],[100.3268,-0.4816],[100.3304,-0.4871],[100.3309,-0.4877],[100.3387,-0.4883],[100.3483,-0.4871],[100.3587,-0.4914],[100.3619,-0.4904],[100.3685,-0.4849],[100.3711,-0.4848],[100.3773,-0.4915],[100.3878,-0.4895],[100.3896,-0.4907],[100.3929,-0.4912],[100.3879,-0.5013],[100.3864,-0.5073],[100.3872,-0.5139],[100.3826,-0.5252],[100.3887,-0.5343],[100.3874,-0.5419],[100.3881,-0.5458],[100.3937,-0.5547],[100.3981,-0.5651],[100.4036,-0.5647],[100.4074,-0.5629],[100.4126,-0.5659],[100.416,-0.577],[100.4181,-0.5805],[100.4193,-0.5844],[100.4181,-0.5919],[100.418,-0.5987],[100.416,-0.6024],[100.4121,-0.6028],[100.407,-0.6061],[100.3992,-0.614],[100.3943,-0.6165],[100.3756,-0.6213],[100.3788,-0.624],[100.3984,-0.6315],[100.402,-0.6278],[100.4114,-0.6267],[100.4174,-0.6295],[100.4197,-0.6328],[100.4307,-0.6375],[100.432,-0.6395],[100.4282,-0.6476],[100.4292,-0.6563],[100.43,-0.6568],[100.4399,-0.6562],[100.4464,-0.6541],[100.4657,-0.656],[100.4751,-0.6552],[100.4825,-0.659],[100.4863,-0.6588],[100.5075,-0.6418],[100.5205,-0.6355],[100.5153,-0.623],[100.5105,-0.6177],[100.5017,-0.6057],[100.4979,-0.6018],[100.4981,-0.5949],[100.4919,-0.5808],[100.4855,-0.5749],[100.4893,-0.5689],[100.4883,-0.5626],[100.4833,-0.5565],[100.4833,-0.5447],[100.4879,-0.539],[100.4957,-0.5354],[100.5045,-0.5354],[100.5135,-0.5465],[100.5191,-0.5487],[100.5267,-0.5459],[100.5307,-0.5492],[100.5369,-0.5494],[100.5433,-0.5532],[100.5449,-0.5565],[100.5547,-0.5671],[100.5575,-0.5743],[100.5675,-0.5919],[100.5675,-0.5987],[100.5711,-0.6014],[100.5717,-0.6084],[100.5735,-0.6075],[100.5787,-0.5971],[100.5829,-0.5848],[100.5967,-0.565],[100.5995,-0.5547],[100.6075,-0.5512],[100.6125,-0.5595],[100.6173,-0.5575],[100.6213,-0.5531],[100.6301,-0.5487],[100.6372,-0.5384],[100.6534,-0.5373],[100.6663,-0.5346],[100.6755,-0.5357],[100.6803,-0.5398],[100.6799,-0.5465],[100.6777,-0.5543],[100.6824,-0.5555],[100.6939,-0.5544],[100.7005,-0.5577],[100.7003,-0.5673],[100.7073,-0.5739],[100.7131,-0.573],[100.7195,-0.5682],[100.7241,-0.5579],[100.7317,-0.5536],[100.7459,-0.5605],[100.7507,-0.5565],[100.7731,-0.5582],[100.7799,-0.5616],[100.781,-0.5535],[100.7857,-0.55],[100.7884,-0.5544],[100.7874,-0.5607],[100.7907,-0.5633],[100.7978,-0.5645],[100.8129,-0.5412],[100.8249,-0.5354],[100.837,-0.5367],[100.8501,-0.5258],[100.8521,-0.5228],[100.8515,-0.5162],[100.848,-0.5076],[100.842,-0.4991],[100.8418,-0.4963],[100.8373,-0.4923],[100.8326,-0.4941],[100.8232,-0.4905],[100.8197,-0.4923],[100.8165,-0.4879],[100.8174,-0.4765],[100.8208,-0.4749],[100.8225,-0.4617],[100.8249,-0.4561],[100.8185,-0.4509],[100.817,-0.4466],[100.8196,-0.4389],[100.8187,-0.4348],[100.8283,-0.4211],[100.8284,-0.4158],[100.8313,-0.408],[100.8293,-0.401],[100.837,-0.3931],[100.8336,-0.3801],[100.8339,-0.3741],[100.8314,-0.3648],[100.828,-0.3624],[100.8258,-0.3523],[100.8242,-0.3516]],[[100.3987,-0.45],[100.4039,-0.4514],[100.4044,-0.455],[100.4094,-0.459],[100.4117,-0.4546],[100.4248,-0.4556],[100.4258,-0.4596],[100.4325,-0.4628],[100.4364,-0.4697],[100.4327,-0.473],[100.4345,-0.4782],[100.4329,-0.488],[100.4271,-0.4855],[100.4124,-0.4836],[100.4065,-0.4852],[100.3801,-0.4856],[100.3678,-0.479],[100.3721,-0.4679],[100.3776,-0.4621],[100.3896,-0.4584],[100.396,-0.4602],[100.3964,-0.452],[100.3987,-0.45]]]}},{"type":"Feature","properties":{"mhid":"1332:64","alt_name":"KABUPATEN PADANG PARIAMAN","latitude":-0.6,"longitude":100.28333,"sample_value":422},"geometry":{"type":"LineString","coordinates":[[100.1938,-0.4151],[100.1884,-0.4144],[100.1762,-0.4083],[100.1672,-0.3988],[100.1625,-0.3962],[100.1578,-0.3902],[100.1555,-0.3782],[100.1566,-0.3678],[100.1585,-0.36],[100.1557,-0.357],[100.1508,-0.3422],[100.1463,-0.3361],[100.1364,-0.32],[100.1289,-0.3165],[100.124,-0.3243],[100.1159,-0.331],[100.105,-0.3325],[100.0975,-0.3309],[100.0934,-0.326],[100.0832,-0.3249],[100.0667,-0.3293],[100.0615,-0.3348],[100.0602,-0.3391],[100.0574,-0.3476],[100.0481,-0.3559],[100.0492,-0.3607],[100.0456,-0.3644],[100.0344,-0.363],[100.0323,-0.3641],[100.0291,-0.3652],[100.0231,-0.3621],[100.0178,-0.3637],[100.0016,-0.3585],[99.9933,-0.3597],[99.988,-0.3635],[99.9859,-0.3708],[99.9908,-0.3787],[99.9947,-0.3808],[99.9987,-0.3906],[99.9996,-0.398],[99.9889,-0.3948],[99.9859,-0.3954],[99.9798,-0.4032],[99.9804,-0.4087],[99.9778,-0.4168],[99.97,-0.4177],[99.9674,-0.4213],[99.9626,-0.4326],[99.9618,-0.4342],[99.9709,-0.4424],[99.9833,-0.4568],[99.9961,-0.4649],[100.0057,-0.4739],[100.0164,-0.4828],[100.0411,-0.5056],[100.0535,-0.5189],[100.0622,-0.5303],[100.0773,-0.5451],[100.0848,-0.5557],[100.0908,-0.568],[100.0927,-0.5616],[100.0973,-0.5626],[100.1012,-0.5597],[100.1043,-0.5619],[100.1117,-0.5573],[100.1246,-0.5534],[100.1299,-0.5484],[100.135,-0.554],[100.1357,-0.5611],[100.1324,-0.5625],[100.1312,-0.5713],[100.145,-0.5727],[100.1495,-0.5707],[100.1506,-0.5747],[100.1495,-0.5828],[100.1463,-0.5857],[100.1492,-0.5892],[100.1551,-0.5889],[100.1526,-0.5943],[100.1588,-0.5942],[100.1669,-0.6034],[100.1706,-0.5998],[100.1736,-0.6006],[100.175,-0.6072],[100.1803,-0.6086],[100.1816,-0.6135],[100.1797,-0.6166],[100.1744,-0.6182],[100.1732,-0.6277],[100.1767,-0.6312],[100.1734,-0.6351],[100.1713,-0.6445],[100.173,-0.6486],[100.1699,-0.6507],[100.1645,-0.6502],[100.1634,-0.6534],[100.1535,-0.666],[100.1579,-0.6696],[100.1593,-0.6757],[100.1685,-0.6854],[100.1836,-0.7001],[100.1866,-0.7039],[100.2012,-0.7179],[100.2174,-0.7303],[100.2362,-0.7495],[100.2573,-0.7693],[100.2726,-0.7876],[100.2874,-0.8082],[100.2917,-0.8163],[100.2937,-0.8126],[100.293,-0.8066],[100.3118,-0.8056],[100.3171,-0.8037],[100.3216,-0.8053],[100.3249,-0.8036],[100.3369,-0.8012],[100.3402,-0.7987],[100.3453,-0.7878],[100.3507,-0.7859],[100.3613,-0.7792],[100.3665,-0.7726],[100.3757,-0.7684],[100.3807,-0.7606],[100.3957,-0.7546],[100.4002,-0.7487],[100.415,-0.7457],[100.4182,-0.7429],[100.4238,-0.743],[100.4324,-0.7404],[100.438,-0.7359],[100.4477,-0.7333],[100.4559,-0.7292],[100.4566,-0.7242],[100.4539,-0.7185],[100.4488,-0.7133],[100.4423,-0.7014],[100.4421,-0.6886],[100.4394,-0.6808],[100.4422,-0.6728],[100.4417,-0.6642],[100.43,-0.6568],[100.4292,-0.6563],[100.4282,-0.6476],[100.432,-0.6395],[100.4307,-0.6375],[100.4197,-0.6328],[100.4174,-0.6295],[100.4114,-0.6267],[100.402,-0.6278],[100.3984,-0.6315],[100.3788,-0.624],[100.3756,-0.6213],[100.3943,-0.6165],[100.3992,-0.614],[100.407,-0.6061],[100.4121,-0.6028],[100.416,-0.6024],[100.418,-0.5987],[100.4181,-0.5919],[100.4192,-0.5842],[100.4181,-0.5805],[100.416,-0.577],[100.4126,-0.5659],[100.4074,-0.5629],[100.4036,-0.5647],[100.3981,-0.5651],[100.3937,-0.5547],[100.3881,-0.5458],[100.3874,-0.5419],[100.3887,-0.5343],[100.3826,-0.5252],[100.3872,-0.5139],[100.3864,-0.5073],[100.3879,-0.5013],[100.3929,-0.4912],[100.3896,-0.4907],[100.3773,-0.4915],[100.3711,-0.4848],[100.3685,-0.4849],[100.3619,-0.4904],[100.3559,-0.491],[100.3461,-0.487],[100.3384,-0.4886],[100.3309,-0.4877],[100.3304,-0.4871],[100.3271,-0.4823],[100.3222,-0.4793],[100.3187,-0.4735],[100.3179,-0.4662],[100.315,-0.4555],[100.3134,-0.4438],[100.3158,-0.4309],[100.3087,-0.431],[100.3064,-0.4321],[100.2957,-0.4467],[100.2903,-0.4536],[100.2895,-0.4543],[100.2853,-0.4618],[100.2764,-0.4648],[100.2716,-0.4692],[100.2659,-0.4712],[100.2609,-0.4716],[100.2567,-0.4697],[100.2461,-0.4669],[100.2462,-0.4598],[100.2382,-0.4484],[100.2339,-0.448],[100.2257,-0.4446],[100.223,-0.4383],[100.2164,-0.4329],[100.2155,-0.4282],[100.2185,-0.4205],[100.217,-0.4157],[100.2041,-0.4135],[100.1993,-0.4155],[100.1938,-0.4151]]}},{"type":"Feature","properties":{"mhid":"1332:65","alt_name":"KABUPATEN AGAM","latitude":-0.25,"longitude":100.16667,"sample_value":793},"geometry":{"type":"MultiLineString","coordinates":[[[100.5356,-0.2805],[100.5325,-0.2772],[100.5344,-0.2704],[100.5394,-0.2609],[100.5394,-0.2573],[100.5355,-0.2532],[100.5271,-0.2485],[100.5212,-0.2484],[100.4904,-0.2292],[100.4851,-0.2271],[100.478,-0.2212],[100.4695,-0.2193],[100.4677,-0.2149],[100.4574,-0.2069],[100.4491,-0.2046],[100.4461,-0.2013],[100.4423,-0.1936],[100.4431,-0.1844],[100.4425,-0.1759],[100.4398,-0.1723],[100.4255,-0.1668],[100.4156,-0.1637],[100.3997,-0.1607],[100.3963,-0.1567],[100.3945,-0.1494],[100.3878,-0.1492],[100.3785,-0.1457],[100.3727,-0.1265],[100.3742,-0.1177],[100.3718,-0.1129],[100.3651,-0.109],[100.3578,-0.0962],[100.3554,-0.0859],[100.337,-0.0795],[100.33,-0.0742],[100.3241,-0.0588],[100.3203,-0.0559],[100.3168,-0.0461],[100.3033,-0.0557],[100.2961,-0.0529],[100.2901,-0.0482],[100.271,-0.0391],[100.2644,-0.0348],[100.2611,-0.0416],[100.2616,-0.0512],[100.2601,-0.0573],[100.2495,-0.0658],[100.2357,-0.063],[100.2234,-0.0696],[100.2175,-0.0741],[100.1991,-0.0845],[100.1876,-0.093],[100.1759,-0.0923],[100.1703,-0.098],[100.1661,-0.1],[100.1608,-0.1074],[100.1568,-0.1064],[100.1522,-0.1026],[100.1392,-0.1016],[100.1347,-0.0945],[100.1267,-0.0953],[100.1225,-0.0938],[100.1216,-0.0866],[100.1153,-0.0848],[100.114,-0.0794],[100.107,-0.0758],[100.1009,-0.0786],[100.0943,-0.0797],[100.0903,-0.0779],[100.0859,-0.0808],[100.08,-0.0809],[100.0747,-0.0842],[100.0654,-0.0848],[100.0506,-0.0812],[100.0459,-0.0829],[100.0375,-0.0815],[100.0318,-0.0918],[100.0226,-0.0937],[100.0163,-0.0968],[100.0134,-0.119],[100.0089,-0.1223],[100.0045,-0.1285],[100.0044,-0.1359],[100.0013,-0.1386],[100.0013,-0.1435],[99.9946,-0.1425],[99.992,-0.1395],[99.9875,-0.1413],[99.9841,-0.1457],[99.9809,-0.1387],[99.9734,-0.1382],[99.9639,-0.14],[99.9609,-0.1435],[99.951,-0.1486],[99.9418,-0.1458],[99.9399,-0.1505],[99.935,-0.1488],[99.925,-0.1525],[99.9186,-0.156],[99.9147,-0.1627],[99.9082,-0.1583],[99.9029,-0.161],[99.8959,-0.1577],[99.8882,-0.1615],[99.8818,-0.162],[99.8741,-0.1596],[99.8646,-0.1606],[99.8591,-0.163],[99.8528,-0.1618],[99.8476,-0.1642],[99.8378,-0.163],[99.8331,-0.1657],[99.8315,-0.1691],[99.8179,-0.1688],[99.8097,-0.1723],[99.8067,-0.1759],[99.7947,-0.1751],[99.7854,-0.173],[99.7739,-0.1725],[99.7679,-0.1709],[99.7773,-0.1818],[99.7898,-0.2027],[99.7982,-0.2192],[99.8051,-0.239],[99.8021,-0.2557],[99.804,-0.2639],[99.8089,-0.2797],[99.8196,-0.3006],[99.8343,-0.3113],[99.8484,-0.3184],[99.8584,-0.3242],[99.8746,-0.3353],[99.8851,-0.3442],[99.905,-0.3645],[99.9116,-0.3736],[99.9156,-0.3811],[99.9184,-0.392],[99.9178,-0.3967],[99.9137,-0.399],[99.9321,-0.4096],[99.9467,-0.4193],[99.9626,-0.4326],[99.9674,-0.4213],[99.97,-0.4177],[99.9778,-0.4168],[99.9804,-0.4087],[99.9798,-0.4032],[99.9859,-0.3954],[99.9889,-0.3948],[99.9996,-0.398],[99.9987,-0.3906],[99.9933,-0.3798],[99.9908,-0.3787],[99.9859,-0.3708],[99.988,-0.3635],[99.9933,-0.3597],[100.0016,-0.3585],[100.0178,-0.3637],[100.0231,-0.3621],[100.0291,-0.3652],[100.0323,-0.3641],[100.0348,-0.3626],[100.0456,-0.3644],[100.0492,-0.3607],[100.0481,-0.3559],[100.0574,-0.3476],[100.0602,-0.3391],[100.0615,-0.3348],[100.0667,-0.3293],[100.0832,-0.3249],[100.0934,-0.326],[100.0975,-0.3309],[100.105,-0.3325],[100.1159,-0.331],[100.124,-0.3243],[100.1289,-0.3165],[100.1364,-0.32],[100.1463,-0.3361],[100.1508,-0.3422],[100.1557,-0.357],[100.1585,-0.36],[100.1566,-0.3678],[100.1555,-0.3782],[100.1578,-0.3902],[100.1625,-0.3962],[100.1672,-0.3988],[100.1762,-0.4083],[100.1884,-0.4144],[100.1938,-0.4151],[100.1993,-0.4155],[100.2041,-0.4135],[100.217,-0.4157],[100.2185,-0.4205],[100.2155,-0.4282],[100.2164,-0.4329],[100.223,-0.4383],[100.2257,-0.4446],[100.2339,-0.448],[100.2382,-0.4484],[100.2462,-0.4598],[100.2461,-0.4669],[100.2567,-0.4697],[100.2611,-0.4716],[100.2659,-0.4712],[100.2716,-0.4692],[100.2764,-0.4648],[100.2853,-0.4618],[100.2895,-0.4543],[100.2903,-0.4536],[100.2957,-0.4467],[100.3064,-0.4321],[100.3087,-0.431],[100.3157,-0.4292],[100.3226,-0.4122],[100.3319,-0.403],[100.3319,-0.394],[100.3413,-0.3912],[100.3525,-0.3916],[100.3586,-0.389],[100.3692,-0.3899],[100.3797,-0.3842],[100.3975,-0.3848],[100.4039,-0.3878],[100.4178,-0.392],[100.4243,-0.3904],[100.4314,-0.391],[100.4377,-0.3892],[100.4519,-0.392],[100.4624,-0.3902],[100.4693,-0.3903],[100.4731,-0.3809],[100.4787,-0.3749],[100.4806,-0.3649],[100.4805,-0.3593],[100.4876,-0.3478],[100.4928,-0.3441],[100.4954,-0.34],[100.4951,-0.3357],[100.4977,-0.3298],[100.5029,-0.3232],[100.5066,-0.3089],[100.512,-0.3002],[100.526,-0.2896],[100.5321,-0.2814],[100.5356,-0.2805]],[[100.338,-0.2757],[100.3489,-0.2759],[100.3595,-0.2847],[100.3685,-0.2811],[100.3748,-0.2865],[100.3816,-0.2852],[100.3846,-0.2829],[100.3893,-0.285],[100.3926,-0.2908],[100.396,-0.2904],[100.3975,-0.2966],[100.3966,-0.3066],[100.3985,-0.3071],[100.4056,-0.318],[100.4013,-0.3227],[100.3952,-0.3258],[100.3843,-0.3244],[100.377,-0.322],[100.3709,-0.3223],[100.3647,-0.3163],[100.3636,-0.311],[100.3597,-0.3105],[100.3587,-0.3064],[100.3469,-0.2991],[100.3426,-0.2943],[100.3329,-0.2799],[100.338,-0.2757]]]}},{"type":"Feature","properties":{"mhid":"1332:66","alt_name":"KABUPATEN LIMA PULUH KOTA","latitude":-0.0168,"longitude":100.5872,"sample_value":398},"geometry":{"type":"MultiLineString","coordinates":[[[100.8446,-0.3395],[100.8424,-0.3347],[100.8404,-0.3251],[100.8411,-0.3131],[100.8387,-0.3065],[100.8411,-0.2969],[100.8382,-0.2904],[100.832,-0.2851],[100.8224,-0.2837],[100.806,-0.2715],[100.8045,-0.2653],[100.8051,-0.2556],[100.8015,-0.2431],[100.7938,-0.2374],[100.781,-0.2241],[100.7762,-0.2175],[100.7664,-0.2147],[100.7631,-0.2123],[100.7632,-0.2],[100.7671,-0.1878],[100.7693,-0.1772],[100.7679,-0.1717],[100.7682,-0.1615],[100.7633,-0.1454],[100.7562,-0.1395],[100.7542,-0.1325],[100.7614,-0.1246],[100.7614,-0.1197],[100.7578,-0.1127],[100.7565,-0.1032],[100.7539,-0.0929],[100.7534,-0.083],[100.7434,-0.0723],[100.7427,-0.0621],[100.7453,-0.0464],[100.7507,-0.0446],[100.757,-0.0395],[100.7586,-0.0319],[100.7661,-0.0219],[100.7712,-0.0192],[100.7753,-0.0143],[100.7823,-0.0113],[100.7859,-0.014],[100.7897,-0.0211],[100.8011,-0.024],[100.8092,-0.0303],[100.8109,-0.0393],[100.8145,-0.0403],[100.8192,-0.0326],[100.8262,-0.0334],[100.828,-0.0284],[100.8244,-0.0206],[100.8262,-0.017],[100.8401,-0.0071],[100.8477,0],[100.8478,0.0045],[100.8443,0.0273],[100.8479,0.0382],[100.8515,0.0444],[100.8502,0.0533],[100.8372,0.0606],[100.8325,0.0669],[100.8285,0.0644],[100.8208,0.0635],[100.8143,0.0609],[100.8091,0.0509],[100.8011,0.0495],[100.7992,0.0582],[100.795,0.0614],[100.7921,0.0706],[100.7866,0.0765],[100.7822,0.077],[100.7793,0.0839],[100.7813,0.0892],[100.7804,0.0941],[100.7746,0.1009],[100.7771,0.1043],[100.7867,0.107],[100.7901,0.1156],[100.7847,0.1203],[100.7847,0.1235],[100.7906,0.1289],[100.8029,0.1285],[100.8136,0.1388],[100.8199,0.143],[100.8247,0.1435],[100.8323,0.1402],[100.8365,0.1407],[100.8412,0.1468],[100.8399,0.1506],[100.8426,0.1586],[100.8489,0.1704],[100.8484,0.1768],[100.8432,0.1793],[100.8457,0.1886],[100.8435,0.1972],[100.8453,0.2046],[100.8445,0.2093],[100.8398,0.2112],[100.839,0.2185],[100.8413,0.226],[100.8344,0.2351],[100.8259,0.2394],[100.819,0.249],[100.8096,0.2513],[100.8023,0.2576],[100.7981,0.2577],[100.7896,0.254],[100.7727,0.2513],[100.7671,0.2453],[100.7648,0.2369],[100.7549,0.2372],[100.748,0.2403],[100.7404,0.2413],[100.7386,0.2362],[100.7316,0.2362],[100.725,0.2412],[100.7215,0.242],[100.7135,0.2386],[100.7014,0.2456],[100.7001,0.2375],[100.6946,0.2318],[100.6955,0.2169],[100.6848,0.2036],[100.6807,0.1873],[100.6762,0.1862],[100.6673,0.1956],[100.6634,0.1967],[100.6491,0.2036],[100.6271,0.2223],[100.6213,0.2341],[100.6153,0.2405],[100.6048,0.2555],[100.5941,0.2677],[100.5841,0.2727],[100.5772,0.2791],[100.5701,0.2883],[100.5666,0.2948],[100.5612,0.2993],[100.5546,0.3028],[100.5415,0.3074],[100.5375,0.31],[100.5321,0.3167],[100.532,0.32],[100.5381,0.3325],[100.5341,0.3406],[100.5272,0.3452],[100.5215,0.346],[100.5173,0.3523],[100.4983,0.3655],[100.4975,0.3768],[100.4889,0.393],[100.4824,0.4011],[100.4708,0.4071],[100.469,0.4022],[100.4651,0.3979],[100.4588,0.4028],[100.4464,0.4097],[100.4382,0.4131],[100.4353,0.4175],[100.431,0.4218],[100.4198,0.4239],[100.4165,0.4178],[100.4099,0.4147],[100.4025,0.4059],[100.3892,0.399],[100.3758,0.3893],[100.3672,0.3947],[100.3647,0.3906],[100.3472,0.3843],[100.3442,0.3845],[100.3401,0.3889],[100.3281,0.3969],[100.3228,0.4016],[100.3168,0.402],[100.3146,0.3987],[100.3005,0.3966],[100.3013,0.3879],[100.3076,0.3797],[100.3107,0.3788],[100.3195,0.3676],[100.3256,0.3665],[100.3232,0.3609],[100.327,0.3551],[100.332,0.3533],[100.3326,0.3494],[100.3282,0.3423],[100.3322,0.338],[100.329,0.3329],[100.3224,0.3187],[100.3183,0.3127],[100.3101,0.3057],[100.3087,0.3002],[100.3167,0.2871],[100.3196,0.2869],[100.3157,0.275],[100.3193,0.2741],[100.3247,0.2635],[100.3321,0.2527],[100.3294,0.2361],[100.3325,0.2275],[100.3327,0.2194],[100.3366,0.2108],[100.342,0.205],[100.3515,0.1804],[100.3495,0.1706],[100.3399,0.1622],[100.332,0.1525],[100.3292,0.1511],[100.328,0.145],[100.324,0.1367],[100.3247,0.1268],[100.3208,0.1186],[100.3209,0.1112],[100.324,0.1075],[100.3249,0.102],[100.3158,0.0878],[100.3178,0.081],[100.3274,0.0637],[100.3302,0.0523],[100.3376,0.0428],[100.3349,0.0376],[100.3279,0.0344],[100.3201,0.0274],[100.314,0.0052],[100.3107,0],[100.3016,-0.0067],[100.2908,-0.0098],[100.2804,-0.0094],[100.2739,-0.0112],[100.2688,-0.0173],[100.2627,-0.0188],[100.2601,-0.0225],[100.2649,-0.0317],[100.2644,-0.0348],[100.271,-0.0391],[100.2901,-0.0482],[100.2961,-0.0529],[100.3033,-0.0557],[100.3168,-0.0461],[100.3203,-0.0559],[100.3241,-0.0588],[100.33,-0.0742],[100.337,-0.0795],[100.3554,-0.0859],[100.3578,-0.0962],[100.3651,-0.109],[100.3718,-0.1129],[100.3742,-0.1177],[100.3727,-0.1265],[100.3785,-0.1457],[100.3878,-0.1492],[100.3945,-0.1494],[100.3963,-0.1567],[100.3997,-0.1607],[100.4156,-0.1637],[100.4255,-0.1668],[100.4398,-0.1723],[100.4425,-0.1759],[100.4431,-0.1844],[100.4423,-0.1936],[100.4461,-0.2013],[100.4491,-0.2046],[100.4574,-0.2069],[100.4677,-0.2149],[100.4695,-0.2193],[100.478,-0.2212],[100.4851,-0.2271],[100.4904,-0.2292],[100.5212,-0.2484],[100.5271,-0.2485],[100.5355,-0.2532],[100.5394,-0.2573],[100.5394,-0.2609],[100.5344,-0.2704],[100.5325,-0.2772],[100.5356,-0.2805],[100.5407,-0.2844],[100.5492,-0.2828],[100.5562,-0.284],[100.5675,-0.2809],[100.5746,-0.2838],[100.5788,-0.2878],[100.5821,-0.294],[100.5767,-0.3006],[100.58,-0.3089],[100.5845,-0.3122],[100.5933,-0.3136],[100.599,-0.3126],[100.601,-0.3145],[100.6022,-0.3349],[100.6014,-0.3442],[100.6053,-0.3509],[100.608,-0.3522],[100.6172,-0.3514],[100.6226,-0.3524],[100.6403,-0.3511],[100.6513,-0.3519],[100.6622,-0.3491],[100.668,-0.3449],[100.6666,-0.3319],[100.6735,-0.325],[100.6862,-0.3271],[100.6892,-0.3349],[100.6958,-0.3395],[100.7112,-0.3436],[100.7306,-0.3547],[100.7387,-0.3599],[100.75,-0.363],[100.7543,-0.3662],[100.7629,-0.3652],[100.7725,-0.3613],[100.7735,-0.3501],[100.7775,-0.3469],[100.7918,-0.3519],[100.7991,-0.3512],[100.8102,-0.3542],[100.8132,-0.3503],[100.8242,-0.3516],[100.8293,-0.3487],[100.8367,-0.3484],[100.8438,-0.3442],[100.8446,-0.3395]],[[100.6327,-0.1914],[100.6324,-0.1871],[100.6364,-0.1841],[100.656,-0.1882],[100.6608,-0.1862],[100.6651,-0.1907],[100.6718,-0.1893],[100.6776,-0.1923],[100.6774,-0.199],[100.68,-0.2043],[100.6859,-0.2105],[100.6853,-0.2162],[100.6772,-0.2145],[100.6753,-0.2204],[100.677,-0.2315],[100.6674,-0.2382],[100.6675,-0.2433],[100.6606,-0.241],[100.6573,-0.2438],[100.6462,-0.25],[100.6473,-0.2598],[100.6491,-0.2667],[100.6461,-0.2742],[100.6343,-0.268],[100.6226,-0.2718],[100.6187,-0.2749],[100.6058,-0.2705],[100.5984,-0.265],[100.5907,-0.2473],[100.58,-0.2431],[100.5861,-0.2374],[100.5915,-0.2306],[100.5953,-0.2236],[100.5993,-0.2195],[100.5881,-0.2123],[100.5832,-0.2102],[100.5836,-0.2014],[100.5922,-0.1938],[100.6008,-0.1917],[100.6057,-0.1962],[100.6119,-0.195],[100.6285,-0.1935],[100.6327,-0.1914]]]}},{"type":"Feature","properties":{"mhid":"1332:67","alt_name":"KABUPATEN PASAMAN","latitude":0.42503,"longitude":99.94606,"sample_value":635},"geometry":{"type":"LineString","coordinates":[[100.1786,0.7644],[100.1697,0.7647],[100.136,0.7755],[100.1197,0.7859],[100.0974,0.794],[100.0744,0.8012],[100.0622,0.8081],[100.0347,0.8273],[100.0093,0.8406],[100.0017,0.8435],[99.9966,0.8415],[99.982,0.8457],[99.9763,0.8499],[99.9731,0.8487],[99.9675,0.8507],[99.9608,0.86],[99.9595,0.8689],[99.9517,0.8793],[99.9411,0.8827],[99.9313,0.8837],[99.9099,0.887],[99.9005,0.891],[99.8984,0.896],[99.8925,0.8969],[99.8818,0.9017],[99.8803,0.9045],[99.8716,0.9074],[99.8653,0.906],[99.857,0.8967],[99.8407,0.8929],[99.8336,0.8861],[99.8308,0.8776],[99.8338,0.8686],[99.8408,0.8531],[99.8418,0.8377],[99.8406,0.8299],[99.8376,0.8221],[99.8409,0.8177],[99.8448,0.8143],[99.8459,0.8077],[99.8438,0.7976],[99.8468,0.7911],[99.8431,0.7802],[99.8438,0.7721],[99.8462,0.7689],[99.8449,0.7604],[99.8348,0.7575],[99.834,0.7514],[99.8305,0.7442],[99.8261,0.7397],[99.8253,0.7359],[99.8297,0.716],[99.8349,0.71],[99.8342,0.7013],[99.8309,0.6962],[99.8361,0.6919],[99.847,0.685],[99.8551,0.6828],[99.8845,0.6886],[99.8888,0.6868],[99.893,0.6793],[99.8978,0.6767],[99.9047,0.6806],[99.9121,0.6782],[99.9137,0.6637],[99.9166,0.6548],[99.9165,0.6482],[99.9205,0.6433],[99.9252,0.6329],[99.9162,0.6294],[99.9096,0.629],[99.91,0.6248],[99.916,0.6216],[99.9229,0.6158],[99.9204,0.6054],[99.9286,0.6032],[99.9308,0.5972],[99.9398,0.5935],[99.9481,0.5832],[99.9507,0.5775],[99.9598,0.5695],[99.9611,0.5596],[99.9645,0.556],[99.9647,0.5458],[99.9602,0.5392],[99.9564,0.5308],[99.9502,0.5242],[99.952,0.5205],[99.9596,0.5161],[99.9552,0.5104],[99.9483,0.5104],[99.9423,0.5077],[99.9311,0.4993],[99.9202,0.4878],[99.9174,0.4816],[99.9079,0.4725],[99.8998,0.4698],[99.8929,0.4705],[99.8846,0.4667],[99.8742,0.468],[99.8702,0.4647],[99.8571,0.4638],[99.8494,0.4699],[99.8368,0.4586],[99.8203,0.4605],[99.8215,0.4563],[99.8296,0.4439],[99.8308,0.4366],[99.8305,0.4279],[99.8254,0.417],[99.8217,0.4143],[99.8152,0.4134],[99.8029,0.4163],[99.7938,0.4124],[99.7847,0.4176],[99.7799,0.4187],[99.7763,0.416],[99.7754,0.4029],[99.7698,0.3987],[99.7573,0.3984],[99.7501,0.3973],[99.7488,0.392],[99.7435,0.3856],[99.7437,0.3822],[99.7502,0.379],[99.762,0.3702],[99.7695,0.3664],[99.7701,0.3627],[99.7768,0.3586],[99.7743,0.3509],[99.7713,0.3483],[99.759,0.345],[99.7524,0.332],[99.7547,0.32],[99.7566,0.3172],[99.7657,0.3107],[99.7706,0.3108],[99.7776,0.3181],[99.7818,0.3205],[99.7873,0.3206],[99.7894,0.3144],[99.7907,0.3019],[99.7951,0.2983],[99.8108,0.2996],[99.8219,0.304],[99.8245,0.3074],[99.8333,0.3068],[99.8477,0.3029],[99.8532,0.298],[99.855,0.2942],[99.8598,0.2919],[99.8668,0.2916],[99.8806,0.299],[99.8935,0.304],[99.9136,0.304],[99.9192,0.3006],[99.9245,0.3],[99.9328,0.2962],[99.9335,0.2937],[99.9514,0.2919],[99.9555,0.2867],[99.9631,0.2848],[99.9676,0.2812],[99.968,0.2776],[99.9817,0.2774],[99.9876,0.2823],[99.9983,0.2772],[100.0129,0.275],[100.0154,0.2622],[100.0271,0.2567],[100.0299,0.2442],[100.0308,0.2359],[100.0295,0.2263],[100.0227,0.2098],[100.0138,0.1963],[100.0107,0.1875],[100.0119,0.1765],[100.0145,0.1698],[100.0137,0.1632],[100.0165,0.1556],[100.0133,0.1447],[100.0126,0.1348],[100.0108,0.1269],[100.0066,0.116],[100.0026,0.1112],[99.9981,0.0992],[99.9941,0.0958],[99.993,0.0893],[99.9868,0.0838],[99.9815,0.0747],[99.9748,0.071],[99.9668,0.0647],[99.9602,0.0627],[99.9589,0.0595],[99.9617,0.0508],[99.9665,0.0465],[99.9758,0.0301],[99.9814,0.0295],[99.9876,0.0237],[99.9957,0.0119],[100.003,0.0073],[100.0107,0.0065],[100.0144,0],[100.0152,-0.0071],[100.0219,-0.0158],[100.0253,-0.0154],[100.0363,-0.0245],[100.0409,-0.0252],[100.0482,-0.0341],[100.0468,-0.0381],[100.0399,-0.0452],[100.0307,-0.0582],[100.035,-0.0617],[100.0369,-0.0664],[100.0336,-0.0679],[100.0375,-0.0815],[100.0459,-0.0829],[100.0506,-0.0812],[100.0654,-0.0848],[100.0747,-0.0842],[100.08,-0.0809],[100.0859,-0.0808],[100.0903,-0.0779],[100.0943,-0.0797],[100.1009,-0.0786],[100.107,-0.0758],[100.114,-0.0794],[100.1153,-0.0848],[100.1216,-0.0866],[100.1225,-0.0938],[100.1267,-0.0953],[100.1347,-0.0945],[100.1392,-0.1016],[100.1522,-0.1026],[100.1568,-0.1064],[100.1608,-0.1074],[100.1661,-0.1],[100.1703,-0.098],[100.1759,-0.0923],[100.1876,-0.093],[100.1991,-0.0845],[100.2175,-0.0741],[100.2234,-0.0696],[100.2357,-0.063],[100.2495,-0.0658],[100.2601,-0.0573],[100.2616,-0.0512],[100.2611,-0.0416],[100.2644,-0.0348],[100.2649,-0.0317],[100.2601,-0.0225],[100.2627,-0.0188],[100.2688,-0.0173],[100.2739,-0.0112],[100.2804,-0.0094],[100.2908,-0.0098],[100.3016,-0.0067],[100.3107,0],[100.314,0.0052],[100.3201,0.0274],[100.3279,0.0344],[100.3349,0.0376],[100.3376,0.0428],[100.3302,0.0523],[100.3274,0.0637],[100.3178,0.081],[100.3158,0.0878],[100.3249,0.102],[100.324,0.1075],[100.3209,0.1112],[100.3208,0.1186],[100.3247,0.1268],[100.324,0.1367],[100.328,0.145],[100.3292,0.1511],[100.332,0.1525],[100.3399,0.1622],[100.3495,0.1706],[100.3515,0.1804],[100.342,0.205],[100.3366,0.2108],[100.3327,0.2194],[100.3325,0.2275],[100.3294,0.2361],[100.3321,0.2527],[100.3247,0.2635],[100.3193,0.2741],[100.3157,0.275],[100.3196,0.2869],[100.3167,0.2871],[100.3087,0.3002],[100.3101,0.3057],[100.3183,0.3127],[100.3224,0.3187],[100.329,0.3329],[100.3322,0.338],[100.3282,0.3423],[100.3326,0.3494],[100.332,0.3533],[100.327,0.3551],[100.3232,0.3609],[100.3256,0.3665],[100.3195,0.3676],[100.3107,0.3788],[100.3076,0.3797],[100.3013,0.3879],[100.3005,0.3966],[100.2947,0.4006],[100.2896,0.3984],[100.2849,0.4053],[100.2782,0.4094],[100.259,0.4323],[100.255,0.442],[100.2604,0.4457],[100.25,0.4559],[100.243,0.4688],[100.2376,0.4751],[100.2424,0.4858],[100.2412,0.4922],[100.2284,0.4986],[100.2216,0.5029],[100.2166,0.5116],[100.2161,0.5207],[100.2294,0.5277],[100.2376,0.5353],[100.2382,0.5407],[100.235,0.5457],[100.2211,0.5563],[100.2115,0.5591],[100.2045,0.5579],[100.2002,0.5599],[100.1948,0.5578],[100.1917,0.56],[100.1841,0.561],[100.1798,0.5659],[100.1765,0.5739],[100.1783,0.5895],[100.1801,0.5949],[100.1837,0.6167],[100.1858,0.6246],[100.1928,0.6331],[100.2013,0.6409],[100.2158,0.6631],[100.2378,0.6733],[100.2408,0.6793],[100.2427,0.6943],[100.2411,0.7094],[100.2393,0.734],[100.2321,0.737],[100.2238,0.7388],[100.218,0.7425],[100.2132,0.7356],[100.2072,0.7378],[100.2005,0.7447],[100.1933,0.7638],[100.1786,0.7644]]}},{"type":"Feature","properties":{"mhid":"1332:68","alt_name":"KABUPATEN SOLOK SELATAN","latitude":-1.23333,"longitude":101.417,"sample_value":726},"geometry":{"type":"LineString","coordinates":[[101.4284,-1.6786],[101.4266,-1.677],[101.4288,-1.6702],[101.4293,-1.6532],[101.4322,-1.64],[101.4401,-1.6283],[101.4529,-1.6178],[101.455,-1.6136],[101.4646,-1.6013],[101.4745,-1.5908],[101.4793,-1.5881],[101.4888,-1.5788],[101.4974,-1.5775],[101.5084,-1.5724],[101.5094,-1.5663],[101.5157,-1.5559],[101.5169,-1.55],[101.5155,-1.5438],[101.5167,-1.54],[101.5216,-1.5373],[101.5237,-1.5283],[101.5274,-1.5239],[101.5322,-1.5219],[101.5392,-1.5132],[101.5387,-1.5084],[101.5341,-1.5052],[101.5284,-1.4968],[101.5257,-1.4857],[101.5342,-1.4844],[101.5426,-1.4745],[101.5468,-1.4715],[101.5561,-1.4621],[101.5549,-1.4557],[101.5607,-1.4443],[101.5663,-1.4464],[101.5794,-1.4478],[101.5826,-1.4453],[101.5974,-1.4414],[101.6073,-1.4375],[101.6119,-1.4317],[101.6163,-1.4228],[101.6237,-1.4186],[101.6247,-1.4131],[101.6284,-1.41],[101.6351,-1.4082],[101.6374,-1.4036],[101.6486,-1.4017],[101.6568,-1.399],[101.6647,-1.3917],[101.6709,-1.3886],[101.6648,-1.3822],[101.6587,-1.3777],[101.65,-1.3696],[101.6444,-1.367],[101.6347,-1.3655],[101.6223,-1.3593],[101.6175,-1.3547],[101.6068,-1.3496],[101.6005,-1.3449],[101.5954,-1.3388],[101.5883,-1.3278],[101.583,-1.3256],[101.5711,-1.3263],[101.5549,-1.3255],[101.5475,-1.3269],[101.5422,-1.3339],[101.5354,-1.334],[101.5291,-1.337],[101.5182,-1.3381],[101.5133,-1.3373],[101.5188,-1.3172],[101.5229,-1.3126],[101.5247,-1.306],[101.5215,-1.3029],[101.5117,-1.2996],[101.5026,-1.2982],[101.4954,-1.2944],[101.488,-1.2925],[101.4821,-1.2891],[101.4731,-1.2858],[101.4672,-1.2813],[101.4684,-1.2679],[101.4651,-1.2581],[101.4547,-1.2538],[101.4519,-1.251],[101.4473,-1.2412],[101.4473,-1.2304],[101.4448,-1.2198],[101.4501,-1.2133],[101.4495,-1.2101],[101.4348,-1.2079],[101.4193,-1.1942],[101.4104,-1.1838],[101.4088,-1.1804],[101.4082,-1.1719],[101.4035,-1.1619],[101.4029,-1.153],[101.4066,-1.1432],[101.4115,-1.1349],[101.4143,-1.122],[101.4211,-1.1135],[101.4264,-1.1095],[101.4356,-1.0983],[101.4405,-1.0871],[101.442,-1.0795],[101.4394,-1.0648],[101.4405,-1.0575],[101.4473,-1.0508],[101.4489,-1.0471],[101.455,-1.0436],[101.4565,-1.0363],[101.4593,-1.0303],[101.4552,-1.0227],[101.4558,-1.015],[101.4492,-1.0093],[101.4361,-1.0071],[101.4294,-1.0048],[101.4225,-1.0081],[101.4212,-1.0158],[101.4178,-1.0262],[101.4093,-1.032],[101.4049,-1.0377],[101.3897,-1.0441],[101.3858,-1.0441],[101.3772,-1.0477],[101.3708,-1.0476],[101.3601,-1.0415],[101.3561,-1.043],[101.3478,-1.043],[101.3435,-1.0447],[101.3427,-1.0488],[101.3475,-1.0631],[101.3437,-1.0665],[101.3398,-1.0758],[101.3404,-1.0859],[101.3432,-1.0915],[101.3438,-1.0968],[101.3418,-1.1021],[101.3447,-1.1175],[101.3507,-1.1315],[101.3485,-1.1338],[101.3403,-1.1353],[101.3348,-1.134],[101.3238,-1.1408],[101.3081,-1.1457],[101.2872,-1.1414],[101.2801,-1.1456],[101.2733,-1.1457],[101.2612,-1.1407],[101.2498,-1.1473],[101.2412,-1.1483],[101.2367,-1.1513],[101.2323,-1.1511],[101.2223,-1.1429],[101.2147,-1.135],[101.2063,-1.1214],[101.1986,-1.1109],[101.1888,-1.1044],[101.1762,-1.1017],[101.1683,-1.1021],[101.1693,-1.1131],[101.1734,-1.122],[101.1745,-1.1306],[101.1766,-1.1344],[101.1844,-1.1427],[101.1876,-1.1484],[101.1932,-1.1541],[101.196,-1.1603],[101.2008,-1.1629],[101.2081,-1.1624],[101.2112,-1.1643],[101.2167,-1.1723],[101.2227,-1.187],[101.234,-1.1952],[101.2354,-1.2022],[101.2454,-1.2138],[101.2458,-1.2171],[101.2412,-1.2215],[101.2347,-1.2328],[101.2359,-1.2402],[101.2339,-1.2464],[101.222,-1.2475],[101.2082,-1.2396],[101.1981,-1.2302],[101.191,-1.2275],[101.176,-1.2276],[101.1699,-1.2256],[101.1675,-1.2275],[101.1612,-1.2215],[101.157,-1.2124],[101.155,-1.2045],[101.1488,-1.1954],[101.129,-1.1887],[101.1227,-1.1799],[101.122,-1.1757],[101.116,-1.1696],[101.1154,-1.1667],[101.1056,-1.1614],[101.1018,-1.1565],[101.0934,-1.1501],[101.0838,-1.1482],[101.0733,-1.141],[101.0614,-1.1362],[101.0587,-1.1335],[101.0384,-1.1355],[101.0227,-1.1326],[101.007,-1.1332],[100.9966,-1.1358],[101.0041,-1.1458],[101.0092,-1.1543],[101.0192,-1.1688],[101.021,-1.1754],[101.0209,-1.1836],[101.0221,-1.2017],[101.0179,-1.2269],[101.0138,-1.234],[101.0038,-1.2475],[100.9907,-1.2611],[100.9847,-1.2644],[100.9715,-1.274],[100.9571,-1.2824],[100.9445,-1.2871],[100.9411,-1.284],[100.9367,-1.2837],[100.9238,-1.2886],[100.9115,-1.2902],[100.9023,-1.2965],[100.8938,-1.3062],[100.8878,-1.3102],[100.8806,-1.3126],[100.876,-1.3205],[100.8845,-1.3286],[100.8932,-1.3284],[100.8967,-1.3313],[100.8923,-1.3383],[100.8946,-1.3463],[100.9056,-1.3596],[100.9059,-1.364],[100.9104,-1.3735],[100.9094,-1.3783],[100.8979,-1.3801],[100.8937,-1.3857],[100.8952,-1.3902],[100.9103,-1.4004],[100.9172,-1.4034],[100.9187,-1.4058],[100.9337,-1.4144],[100.9417,-1.4229],[100.942,-1.4311],[100.9375,-1.4377],[100.9396,-1.4485],[100.9342,-1.4601],[100.9351,-1.4641],[100.9428,-1.4677],[100.9577,-1.4805],[100.9725,-1.4824],[100.9775,-1.4867],[100.976,-1.494],[100.9797,-1.5045],[100.9806,-1.5183],[100.9831,-1.5254],[100.9912,-1.5308],[100.9985,-1.5443],[101.004,-1.5505],[101.008,-1.5524],[101.0101,-1.5571],[101.0151,-1.5595],[101.0163,-1.5631],[101.0206,-1.5668],[101.0193,-1.5727],[101.0145,-1.5843],[101.0139,-1.5945],[101.0152,-1.6018],[101.0193,-1.6083],[101.0286,-1.6154],[101.0376,-1.6195],[101.0467,-1.6263],[101.0539,-1.6306],[101.0614,-1.6335],[101.0623,-1.6379],[101.06,-1.642],[101.0644,-1.6556],[101.0678,-1.6592],[101.0784,-1.662],[101.0951,-1.6707],[101.105,-1.6699],[101.1206,-1.676],[101.1316,-1.6852],[101.1344,-1.6839],[101.1454,-1.6912],[101.1519,-1.694],[101.1589,-1.7015],[101.1633,-1.7079],[101.1689,-1.7107],[101.175,-1.7051],[101.1817,-1.6961],[101.1832,-1.6889],[101.1882,-1.6777],[101.1924,-1.6805],[101.1948,-1.6877],[101.1944,-1.6955],[101.1964,-1.7021],[101.1971,-1.7106],[101.1992,-1.714],[101.212,-1.7239],[101.2184,-1.7236],[101.2253,-1.719],[101.2315,-1.7242],[101.2335,-1.7229],[101.2394,-1.7136],[101.2428,-1.7107],[101.2673,-1.6961],[101.2715,-1.6953],[101.2841,-1.6963],[101.3088,-1.7012],[101.3226,-1.6968],[101.33,-1.6971],[101.3325,-1.6939],[101.3328,-1.6882],[101.3355,-1.6868],[101.3467,-1.6919],[101.3534,-1.6916],[101.3629,-1.6937],[101.3756,-1.6911],[101.3791,-1.6859],[101.3821,-1.6849],[101.3903,-1.6896],[101.3972,-1.6897],[101.4018,-1.6867],[101.4032,-1.6786],[101.4112,-1.6721],[101.4146,-1.6727],[101.4284,-1.6786]]}},{"type":"Feature","properties":{"mhid":"1332:69","alt_name":"KABUPATEN DHARMASRAYA","latitude":-1.05,"longitude":101.367,"sample_value":435},"geometry":{"type":"LineString","coordinates":[[101.8334,-0.9815],[101.8183,-0.9788],[101.815,-0.9757],[101.7987,-0.9684],[101.7927,-0.9713],[101.7837,-0.9695],[101.7736,-0.97],[101.7627,-0.9757],[101.7557,-0.9749],[101.7376,-0.9604],[101.7327,-0.9557],[101.7182,-0.9484],[101.7037,-0.9471],[101.6931,-0.9438],[101.6895,-0.9401],[101.6965,-0.9281],[101.7127,-0.9032],[101.7134,-0.8959],[101.7126,-0.8686],[101.7095,-0.8663],[101.6994,-0.872],[101.6886,-0.8702],[101.6839,-0.8663],[101.6787,-0.8577],[101.6694,-0.8353],[101.6536,-0.828],[101.6482,-0.8278],[101.6363,-0.8301],[101.6166,-0.8244],[101.6042,-0.8263],[101.5964,-0.8348],[101.5931,-0.8356],[101.5791,-0.8333],[101.5707,-0.8329],[101.5582,-0.8345],[101.5512,-0.828],[101.5487,-0.8233],[101.537,-0.816],[101.5236,-0.8116],[101.5085,-0.8108],[101.5,-0.8093],[101.495,-0.8055],[101.486,-0.8204],[101.4821,-0.8244],[101.4725,-0.8273],[101.4671,-0.8367],[101.4612,-0.84],[101.4536,-0.8335],[101.4495,-0.8339],[101.4464,-0.8372],[101.4397,-0.8403],[101.4358,-0.8515],[101.4322,-0.8523],[101.43,-0.8572],[101.4328,-0.8666],[101.4252,-0.8668],[101.4216,-0.8808],[101.4157,-0.8848],[101.4088,-0.885],[101.4057,-0.8897],[101.4126,-0.894],[101.4144,-0.901],[101.4134,-0.9062],[101.4143,-0.9147],[101.4087,-0.9182],[101.4112,-0.9225],[101.4178,-0.9218],[101.4244,-0.9227],[101.4288,-0.928],[101.4271,-0.9318],[101.4138,-0.9308],[101.4058,-0.932],[101.3993,-0.9389],[101.3919,-0.9411],[101.3853,-0.9387],[101.3823,-0.9359],[101.3773,-0.9395],[101.3696,-0.9362],[101.3608,-0.9377],[101.3578,-0.9292],[101.3535,-0.9235],[101.3494,-0.9252],[101.35,-0.9335],[101.3535,-0.9395],[101.3531,-0.9478],[101.3441,-0.9511],[101.3436,-0.9555],[101.3379,-0.9584],[101.3345,-0.9506],[101.3322,-0.9491],[101.3157,-0.9525],[101.3067,-0.9522],[101.3027,-0.9507],[101.2795,-0.9507],[101.2734,-0.9496],[101.2492,-0.9336],[101.2414,-0.9325],[101.2394,-0.9299],[101.2326,-0.931],[101.2244,-0.9275],[101.2141,-0.9183],[101.2095,-0.9123],[101.209,-0.9088],[101.1998,-0.9061],[101.1943,-0.9059],[101.1914,-0.9138],[101.1885,-0.9161],[101.1917,-0.922],[101.1932,-0.9328],[101.1882,-0.9407],[101.1872,-0.9507],[101.1954,-0.9522],[101.1965,-0.9607],[101.1999,-0.9677],[101.2026,-0.978],[101.1999,-0.981],[101.1913,-0.9845],[101.1882,-0.9875],[101.1866,-0.9944],[101.1905,-1.0044],[101.1873,-1.0175],[101.1816,-1.0286],[101.1779,-1.0325],[101.1679,-1.0333],[101.1625,-1.031],[101.1549,-1.0321],[101.1457,-1.0349],[101.1528,-1.0454],[101.1615,-1.0568],[101.1601,-1.0652],[101.1616,-1.0714],[101.1672,-1.0828],[101.1693,-1.0924],[101.1683,-1.1021],[101.1762,-1.1017],[101.1888,-1.1044],[101.1986,-1.1109],[101.2063,-1.1214],[101.2147,-1.135],[101.2223,-1.1429],[101.2323,-1.1511],[101.2367,-1.1513],[101.2412,-1.1483],[101.2498,-1.1473],[101.2612,-1.1407],[101.2733,-1.1457],[101.2801,-1.1456],[101.2872,-1.1414],[101.3081,-1.1457],[101.3238,-1.1408],[101.3348,-1.134],[101.3403,-1.1353],[101.3485,-1.1338],[101.3507,-1.1315],[101.3447,-1.1175],[101.3418,-1.1021],[101.3438,-1.0968],[101.3432,-1.0915],[101.3404,-1.0859],[101.3398,-1.0758],[101.3437,-1.0665],[101.3475,-1.0631],[101.3427,-1.0488],[101.3435,-1.0447],[101.3478,-1.043],[101.3561,-1.043],[101.3601,-1.0415],[101.3708,-1.0476],[101.3772,-1.0477],[101.3858,-1.0441],[101.3897,-1.0441],[101.4049,-1.0377],[101.4093,-1.032],[101.4178,-1.0262],[101.4212,-1.0158],[101.4225,-1.0081],[101.4294,-1.0048],[101.4361,-1.0071],[101.4492,-1.0093],[101.4558,-1.015],[101.4552,-1.0227],[101.4593,-1.0303],[101.4565,-1.0363],[101.455,-1.0436],[101.4489,-1.0471],[101.4473,-1.0508],[101.4405,-1.0575],[101.4394,-1.0648],[101.442,-1.0795],[101.4405,-1.0871],[101.4356,-1.0983],[101.4264,-1.1095],[101.4211,-1.1135],[101.4143,-1.122],[101.4115,-1.1349],[101.4066,-1.1432],[101.4029,-1.153],[101.4035,-1.1619],[101.4082,-1.1719],[101.4088,-1.1804],[101.4104,-1.1838],[101.4193,-1.1942],[101.4348,-1.2079],[101.4495,-1.2101],[101.4501,-1.2133],[101.4448,-1.2198],[101.4473,-1.2304],[101.4473,-1.2412],[101.4519,-1.251],[101.4547,-1.2538],[101.4651,-1.2581],[101.4684,-1.2679],[101.4672,-1.2813],[101.4731,-1.2858],[101.4821,-1.2891],[101.488,-1.2925],[101.4954,-1.2944],[101.5026,-1.2982],[101.5117,-1.2996],[101.5215,-1.3029],[101.5247,-1.306],[101.5229,-1.3126],[101.5188,-1.3172],[101.5133,-1.3373],[101.5182,-1.3381],[101.5291,-1.337],[101.5354,-1.334],[101.5422,-1.3339],[101.5475,-1.3269],[101.5549,-1.3255],[101.5711,-1.3263],[101.583,-1.3256],[101.5883,-1.3278],[101.5954,-1.3388],[101.6005,-1.3449],[101.6068,-1.3496],[101.6175,-1.3547],[101.6223,-1.3593],[101.6347,-1.3655],[101.6444,-1.367],[101.65,-1.3696],[101.6587,-1.3777],[101.6648,-1.3822],[101.6709,-1.3886],[101.6647,-1.3917],[101.6568,-1.399],[101.6486,-1.4017],[101.6374,-1.4036],[101.6351,-1.4082],[101.6284,-1.41],[101.6247,-1.4131],[101.6237,-1.4186],[101.6163,-1.4228],[101.6119,-1.4317],[101.6073,-1.4375],[101.5974,-1.4414],[101.5826,-1.4453],[101.5794,-1.4478],[101.5663,-1.4464],[101.5607,-1.4443],[101.5549,-1.4557],[101.5561,-1.4621],[101.5468,-1.4715],[101.5426,-1.4745],[101.5342,-1.4844],[101.5257,-1.4857],[101.5284,-1.4968],[101.5341,-1.5052],[101.5387,-1.5084],[101.5392,-1.5132],[101.5322,-1.5219],[101.5274,-1.5239],[101.5237,-1.5283],[101.5216,-1.5373],[101.5167,-1.54],[101.5155,-1.5438],[101.5169,-1.55],[101.5157,-1.5559],[101.5094,-1.5663],[101.5084,-1.5724],[101.4974,-1.5775],[101.4888,-1.5788],[101.4793,-1.5881],[101.4745,-1.5908],[101.4646,-1.6013],[101.455,-1.6136],[101.4529,-1.6178],[101.4401,-1.6283],[101.4322,-1.64],[101.4293,-1.6532],[101.4288,-1.6702],[101.4266,-1.677],[101.4284,-1.6786],[101.4302,-1.6861],[101.4364,-1.6948],[101.4399,-1.6952],[101.4459,-1.6868],[101.4552,-1.6829],[101.4641,-1.6821],[101.4717,-1.6781],[101.4758,-1.6773],[101.4841,-1.6729],[101.4968,-1.6788],[101.5016,-1.6792],[101.5064,-1.6728],[101.51,-1.6559],[101.5189,-1.6439],[101.5215,-1.6372],[101.5276,-1.6302],[101.5322,-1.6185],[101.5452,-1.601],[101.552,-1.594],[101.5616,-1.5911],[101.5705,-1.5772],[101.5817,-1.5774],[101.6046,-1.5626],[101.612,-1.5531],[101.6168,-1.551],[101.6308,-1.5427],[101.6328,-1.5378],[101.6499,-1.5226],[101.6527,-1.5183],[101.6618,-1.5155],[101.6648,-1.5117],[101.671,-1.508],[101.6718,-1.5009],[101.6883,-1.4771],[101.6953,-1.4641],[101.7056,-1.4532],[101.7236,-1.4387],[101.7239,-1.4353],[101.7178,-1.4186],[101.7124,-1.4156],[101.7067,-1.4146],[101.703,-1.4113],[101.6968,-1.3941],[101.7004,-1.3887],[101.7166,-1.3733],[101.7227,-1.3666],[101.7245,-1.359],[101.7218,-1.3482],[101.7142,-1.3363],[101.7085,-1.3206],[101.701,-1.309],[101.6971,-1.2994],[101.6953,-1.2913],[101.6961,-1.2884],[101.7149,-1.2635],[101.716,-1.2542],[101.7218,-1.2502],[101.7217,-1.2411],[101.7262,-1.2401],[101.7336,-1.2352],[101.7408,-1.2366],[101.754,-1.2359],[101.7715,-1.2382],[101.7809,-1.2341],[101.7853,-1.2244],[101.7943,-1.22],[101.8138,-1.221],[101.8278,-1.2026],[101.8327,-1.1969],[101.8574,-1.1653],[101.8639,-1.1586],[101.8663,-1.1513],[101.8715,-1.1486],[101.876,-1.1403],[101.8822,-1.1378],[101.8846,-1.1349],[101.8855,-1.1216],[101.8848,-1.1156],[101.8868,-1.1109],[101.8929,-1.1064],[101.8913,-1.1006],[101.884,-1.1021],[101.8814,-1.1008],[101.8789,-1.0938],[101.8749,-1.0948],[101.8725,-1.1047],[101.8678,-1.1111],[101.8651,-1.1119],[101.8602,-1.1089],[101.8536,-1.1002],[101.8492,-1.0995],[101.8455,-1.1017],[101.8469,-1.1069],[101.8455,-1.1119],[101.837,-1.1103],[101.8308,-1.1026],[101.8247,-1.0875],[101.8288,-1.0711],[101.8267,-1.0649],[101.8215,-1.0592],[101.8216,-1.0552],[101.8252,-1.0402],[101.8224,-1.0341],[101.8223,-1.0291],[101.8274,-1.0095],[101.8265,-1.0052],[101.822,-1],[101.8234,-0.9922],[101.8334,-0.9815]]}},{"type":"Feature","properties":{"mhid":"1332:70","alt_name":"KABUPATEN PASAMAN BARAT","latitude":0.28152,"longitude":99.51965,"sample_value":823},"geometry":{"type":"LineString","coordinates":[[99.3112,0.195],[99.3054,0.1924],[99.3022,0.1869],[99.3045,0.1816],[99.312,0.1846],[99.313,0.1929],[99.3112,0.195]]}},{"type":"Feature","properties":{"mhid":"1332:70","alt_name":"KABUPATEN PASAMAN BARAT","latitude":0.28152,"longitude":99.51965,"sample_value":823},"geometry":{"type":"LineString","coordinates":[[99.2872,0.2279],[99.2816,0.223],[99.2797,0.2192],[99.2822,0.2138],[99.2922,0.2092],[99.2956,0.214],[99.2942,0.2219],[99.2912,0.227],[99.2872,0.2279]]}},{"type":"Feature","properties":{"mhid":"1332:70","alt_name":"KABUPATEN PASAMAN BARAT","latitude":0.28152,"longitude":99.51965,"sample_value":823},"geometry":{"type":"LineString","coordinates":[[99.8203,0.4605],[99.8088,0.4651],[99.8042,0.4731],[99.7844,0.4823],[99.7768,0.4818],[99.7577,0.4775],[99.7527,0.479],[99.7425,0.4778],[99.739,0.4748],[99.7351,0.4641],[99.7282,0.454],[99.7201,0.4524],[99.7137,0.4554],[99.7047,0.4625],[99.7008,0.4681],[99.6921,0.4694],[99.6828,0.4692],[99.6763,0.476],[99.6744,0.4837],[99.6672,0.4899],[99.6655,0.4942],[99.6654,0.5017],[99.6616,0.5071],[99.6654,0.5162],[99.6611,0.5246],[99.6555,0.5312],[99.6493,0.5323],[99.6503,0.5385],[99.6478,0.5417],[99.6383,0.547],[99.6285,0.5412],[99.6193,0.5301],[99.6089,0.525],[99.5998,0.5246],[99.5956,0.523],[99.5905,0.516],[99.5834,0.5157],[99.5748,0.5095],[99.5572,0.5113],[99.5469,0.5175],[99.5358,0.5196],[99.5305,0.5218],[99.5237,0.5277],[99.518,0.5358],[99.5136,0.5394],[99.5185,0.5438],[99.5201,0.5521],[99.5097,0.5451],[99.5038,0.5395],[99.4956,0.5352],[99.4896,0.5296],[99.4744,0.5242],[99.4687,0.5236],[99.4628,0.5164],[99.4566,0.5139],[99.4457,0.5061],[99.4373,0.4957],[99.4291,0.492],[99.4126,0.4932],[99.4075,0.491],[99.4045,0.4864],[99.3979,0.4649],[99.3883,0.4553],[99.3848,0.4492],[99.3661,0.4314],[99.3609,0.4118],[99.3504,0.3892],[99.3498,0.3863],[99.3438,0.3762],[99.3341,0.358],[99.3281,0.349],[99.3174,0.3346],[99.3143,0.3336],[99.2973,0.3369],[99.2655,0.3372],[99.2596,0.3363],[99.2487,0.3325],[99.2367,0.3227],[99.2248,0.3079],[99.1998,0.2896],[99.1943,0.2822],[99.1952,0.2735],[99.1926,0.2698],[99.184,0.2542],[99.178,0.2518],[99.1745,0.246],[99.1747,0.2408],[99.1673,0.2284],[99.1696,0.2273],[99.1753,0.2311],[99.1813,0.2412],[99.1771,0.2432],[99.178,0.2477],[99.1812,0.2519],[99.1881,0.254],[99.1916,0.2524],[99.1933,0.2421],[99.1924,0.2353],[99.2035,0.2335],[99.2049,0.2254],[99.2088,0.2181],[99.2151,0.2156],[99.2165,0.2125],[99.2213,0.2105],[99.2326,0.2154],[99.2383,0.21],[99.241,0.2161],[99.2436,0.2168],[99.2539,0.2109],[99.2577,0.2109],[99.2587,0.2058],[99.2621,0.2026],[99.2655,0.2202],[99.2682,0.2229],[99.2735,0.2216],[99.285,0.2251],[99.2852,0.2283],[99.2976,0.2291],[99.304,0.2353],[99.3144,0.2378],[99.3368,0.2375],[99.3578,0.2301],[99.3618,0.2266],[99.3586,0.22],[99.3589,0.2158],[99.3652,0.2151],[99.3722,0.212],[99.3775,0.2073],[99.3759,0.1965],[99.3717,0.1944],[99.3739,0.1909],[99.378,0.1906],[99.3825,0.1867],[99.3865,0.1885],[99.3924,0.1865],[99.3896,0.1788],[99.3895,0.1712],[99.3919,0.1599],[99.3983,0.1512],[99.4054,0.1512],[99.4109,0.153],[99.4188,0.151],[99.4233,0.1471],[99.4334,0.147],[99.4518,0.1415],[99.4779,0.1328],[99.4944,0.124],[99.5092,0.1186],[99.5381,0.1043],[99.5728,0.088],[99.6171,0.0659],[99.6536,0.0418],[99.6668,0.0294],[99.683,0.0133],[99.6854,0.0074],[99.6911,0.0048],[99.6912,0.0022],[99.7078,-0.0085],[99.7298,-0.0205],[99.7403,-0.0294],[99.7493,-0.0398],[99.7557,-0.0492],[99.7623,-0.0633],[99.7635,-0.07],[99.7596,-0.0767],[99.7575,-0.0834],[99.7576,-0.0942],[99.7589,-0.1008],[99.7587,-0.1157],[99.7543,-0.1249],[99.7486,-0.1339],[99.746,-0.1455],[99.7564,-0.1552],[99.7679,-0.1709],[99.7739,-0.1725],[99.7854,-0.173],[99.7947,-0.1751],[99.8067,-0.1759],[99.8097,-0.1723],[99.8179,-0.1688],[99.8315,-0.1691],[99.8331,-0.1657],[99.8378,-0.163],[99.8476,-0.1642],[99.8528,-0.1618],[99.8591,-0.163],[99.8646,-0.1606],[99.8741,-0.1596],[99.8818,-0.162],[99.8882,-0.1615],[99.8959,-0.1577],[99.9029,-0.161],[99.9082,-0.1583],[99.9147,-0.1627],[99.9186,-0.156],[99.925,-0.1525],[99.935,-0.1488],[99.9399,-0.1505],[99.9418,-0.1458],[99.951,-0.1486],[99.9609,-0.1435],[99.9639,-0.14],[99.9734,-0.1382],[99.9809,-0.1387],[99.9841,-0.1457],[99.9875,-0.1413],[99.992,-0.1395],[99.9946,-0.1425],[100.0013,-0.1435],[100.0013,-0.1386],[100.0044,-0.1359],[100.0045,-0.1285],[100.0089,-0.1223],[100.0134,-0.119],[100.0163,-0.0968],[100.0226,-0.0937],[100.0318,-0.0918],[100.0375,-0.0815],[100.0336,-0.0679],[100.0369,-0.0664],[100.035,-0.0617],[100.0307,-0.0582],[100.0399,-0.0452],[100.0468,-0.0381],[100.0482,-0.0341],[100.0409,-0.0252],[100.0363,-0.0245],[100.0253,-0.0154],[100.0219,-0.0158],[100.0152,-0.0071],[100.0144,0],[100.0107,0.0065],[100.003,0.0073],[99.9957,0.0119],[99.9876,0.0237],[99.9814,0.0295],[99.9758,0.0301],[99.9665,0.0465],[99.9617,0.0508],[99.9589,0.0595],[99.9602,0.0627],[99.9668,0.0647],[99.9748,0.071],[99.9815,0.0747],[99.9868,0.0838],[99.993,0.0893],[99.9941,0.0958],[99.9981,0.0992],[100.0026,0.1112],[100.0066,0.116],[100.0108,0.1269],[100.0126,0.1348],[100.0133,0.1447],[100.0165,0.1556],[100.0137,0.1632],[100.0145,0.1698],[100.0119,0.1765],[100.0107,0.1875],[100.0138,0.1963],[100.0227,0.2098],[100.0295,0.2263],[100.0308,0.2359],[100.0299,0.2442],[100.0271,0.2567],[100.0154,0.2622],[100.0129,0.275],[99.9983,0.2772],[99.9876,0.2823],[99.9817,0.2774],[99.968,0.2776],[99.9676,0.2812],[99.9631,0.2848],[99.9555,0.2867],[99.9514,0.2919],[99.9335,0.2937],[99.9328,0.2962],[99.9245,0.3],[99.9192,0.3006],[99.9136,0.304],[99.8935,0.304],[99.8806,0.299],[99.8668,0.2916],[99.8598,0.2919],[99.855,0.2942],[99.8532,0.298],[99.8477,0.3029],[99.8333,0.3068],[99.8245,0.3074],[99.8219,0.304],[99.8108,0.2996],[99.7951,0.2983],[99.7907,0.3019],[99.7894,0.3144],[99.7873,0.3206],[99.7818,0.3205],[99.7776,0.3181],[99.7706,0.3108],[99.7657,0.3107],[99.7566,0.3172],[99.7547,0.32],[99.7524,0.332],[99.759,0.345],[99.7713,0.3483],[99.7743,0.3509],[99.7768,0.3586],[99.7701,0.3627],[99.7695,0.3664],[99.762,0.3702],[99.7502,0.379],[99.7437,0.3822],[99.7435,0.3856],[99.7488,0.392],[99.7501,0.3973],[99.7573,0.3984],[99.7698,0.3987],[99.7754,0.4029],[99.7763,0.416],[99.7799,0.4187],[99.7847,0.4176],[99.7938,0.4124],[99.8029,0.4163],[99.8152,0.4134],[99.8217,0.4143],[99.8254,0.417],[99.8305,0.4279],[99.8308,0.4366],[99.8296,0.4439],[99.8215,0.4563],[99.8203,0.4605]]}},{"type":"Feature","properties":{"mhid":"1332:71","alt_name":"KOTA PADANG","latitude":-0.98333,"longitude":100.45,"sample_value":972},"geometry":{"type":"LineString","coordinates":[[100.3559,-1.1229],[100.3506,-1.1234],[100.3486,-1.1306],[100.3538,-1.1291],[100.3559,-1.1229]]}},{"type":"Feature","properties":{"mhid":"1332:71","alt_name":"KOTA PADANG","latitude":-0.98333,"longitude":100.45,"sample_value":972},"geometry":{"type":"LineString","coordinates":[[100.4561,-0.729],[100.4559,-0.7292],[100.4477,-0.7333],[100.438,-0.7359],[100.4324,-0.7404],[100.4238,-0.743],[100.4182,-0.7429],[100.415,-0.7457],[100.4002,-0.7487],[100.3957,-0.7546],[100.3807,-0.7606],[100.3757,-0.7684],[100.3665,-0.7726],[100.3613,-0.7792],[100.3507,-0.7859],[100.3453,-0.7878],[100.3402,-0.7987],[100.3369,-0.8012],[100.3249,-0.8036],[100.3216,-0.8053],[100.3171,-0.8037],[100.3118,-0.8056],[100.293,-0.8066],[100.2937,-0.8126],[100.2917,-0.8163],[100.2926,-0.8205],[100.3097,-0.8335],[100.3209,-0.8453],[100.3314,-0.8606],[100.3327,-0.8659],[100.3403,-0.8798],[100.3434,-0.8881],[100.3446,-0.9049],[100.3422,-0.9066],[100.3454,-0.9116],[100.35,-0.9242],[100.3497,-0.9319],[100.3512,-0.9391],[100.353,-0.9576],[100.3524,-0.962],[100.3471,-0.9644],[100.3512,-0.9683],[100.3541,-0.9739],[100.3594,-0.9781],[100.3581,-0.9876],[100.3655,-0.9962],[100.3633,-1.0011],[100.3661,-1.0051],[100.371,-0.9987],[100.3757,-0.9954],[100.3824,-0.9931],[100.3862,-0.9983],[100.387,-1.0043],[100.3907,-1.0102],[100.387,-1.0247],[100.3794,-1.0339],[100.3778,-1.0382],[100.3805,-1.0436],[100.3854,-1.0432],[100.3877,-1.0391],[100.3925,-1.0362],[100.3961,-1.0296],[100.4017,-1.0315],[100.4019,-1.0367],[100.407,-1.0366],[100.4108,-1.039],[100.4126,-1.045],[100.41,-1.0523],[100.4138,-1.0608],[100.4114,-1.0672],[100.4121,-1.0703],[100.4064,-1.0742],[100.3934,-1.0679],[100.3897,-1.0748],[100.3871,-1.0666],[100.3764,-1.0642],[100.3747,-1.0714],[100.3655,-1.0784],[100.365,-1.0843],[100.3685,-1.0913],[100.3724,-1.0958],[100.3725,-1.1017],[100.38,-1.1081],[100.3844,-1.114],[100.3836,-1.1272],[100.3801,-1.1229],[100.3739,-1.1189],[100.373,-1.1234],[100.3674,-1.125],[100.3624,-1.1238],[100.3592,-1.1312],[100.3641,-1.1316],[100.3658,-1.1381],[100.3635,-1.1432],[100.3681,-1.1383],[100.3868,-1.1318],[100.3944,-1.1224],[100.3988,-1.119],[100.4044,-1.1179],[100.4127,-1.1124],[100.4207,-1.1085],[100.4207,-1.0999],[100.4118,-1.0918],[100.4134,-1.086],[100.4218,-1.0808],[100.426,-1.076],[100.4292,-1.0609],[100.4312,-1.0575],[100.4386,-1.0541],[100.4474,-1.0418],[100.452,-1.039],[100.4584,-1.032],[100.4639,-1.0297],[100.4643,-1.0231],[100.4715,-1.0153],[100.4791,-1.0034],[100.4839,-1.0015],[100.4927,-1.0044],[100.4995,-1],[100.5066,-0.9981],[100.5198,-0.9908],[100.5238,-0.9861],[100.5289,-0.977],[100.5323,-0.9667],[100.5366,-0.9571],[100.5361,-0.951],[100.5377,-0.9452],[100.5503,-0.9283],[100.5555,-0.9234],[100.5591,-0.9152],[100.5649,-0.9052],[100.5651,-0.8965],[100.5595,-0.8908],[100.5541,-0.8787],[100.5497,-0.866],[100.5451,-0.8554],[100.5359,-0.8543],[100.5313,-0.8445],[100.5323,-0.8421],[100.5411,-0.833],[100.543,-0.8273],[100.5426,-0.8178],[100.5448,-0.8149],[100.5414,-0.8091],[100.5285,-0.8],[100.5045,-0.7863],[100.5055,-0.7652],[100.5025,-0.7568],[100.4826,-0.7536],[100.4768,-0.7504],[100.4791,-0.7365],[100.4735,-0.7314],[100.4587,-0.7314],[100.4561,-0.729]]}},{"type":"Feature","properties":{"mhid":"1332:131","alt_name":"KABUPATEN TANGGAMUS","latitude":-5.38508,"longitude":104.62349,"sample_value":450},"geometry":{"type":"LineString","coordinates":[[104.8357,-5.7904],[104.8291,-5.7891],[104.8135,-5.7807],[104.8074,-5.7719],[104.7986,-5.7649],[104.7896,-5.763],[104.7828,-5.7656],[104.7818,-5.7686],[104.7836,-5.7813],[104.792,-5.7836],[104.7965,-5.7962],[104.8032,-5.8003],[104.8088,-5.8119],[104.8121,-5.8151],[104.8135,-5.8238],[104.8213,-5.824],[104.8283,-5.8289],[104.8347,-5.8278],[104.8449,-5.8343],[104.8508,-5.8401],[104.8548,-5.8402],[104.8584,-5.8329],[104.8524,-5.827],[104.8545,-5.8222],[104.853,-5.8063],[104.8494,-5.7999],[104.8433,-5.7986],[104.8357,-5.7904]]}},{"type":"Feature","properties":{"mhid":"1332:131","alt_name":"KABUPATEN TANGGAMUS","latitude":-5.38508,"longitude":104.62349,"sample_value":450},"geometry":{"type":"LineString","coordinates":[[104.7945,-5.171],[104.7935,-5.1604],[104.7909,-5.1583],[104.7827,-5.1571],[104.7822,-5.1517],[104.7842,-5.1449],[104.7822,-5.1414],[104.7712,-5.1485],[104.7668,-5.1492],[104.7569,-5.1418],[104.7511,-5.1321],[104.7443,-5.1332],[104.7394,-5.1356],[104.7329,-5.1335],[104.7249,-5.1341],[104.7195,-5.1381],[104.7163,-5.1433],[104.7141,-5.1508],[104.7111,-5.1561],[104.6994,-5.1672],[104.6936,-5.1694],[104.6796,-5.1681],[104.6727,-5.1723],[104.6687,-5.1728],[104.6613,-5.1706],[104.6505,-5.1638],[104.6451,-5.1564],[104.6371,-5.1505],[104.625,-5.15],[104.6172,-5.1527],[104.6069,-5.1545],[104.5987,-5.1478],[104.5898,-5.1489],[104.5829,-5.1465],[104.5785,-5.1351],[104.5694,-5.1262],[104.5603,-5.1135],[104.5502,-5.1109],[104.5455,-5.1071],[104.533,-5.1071],[104.5246,-5.1107],[104.5159,-5.1173],[104.5108,-5.119],[104.5018,-5.1245],[104.4993,-5.1283],[104.4906,-5.1307],[104.4812,-5.1412],[104.4746,-5.1458],[104.4611,-5.1502],[104.453,-5.1545],[104.4406,-5.1627],[104.4383,-5.1665],[104.4391,-5.1745],[104.4331,-5.1714],[104.4221,-5.1722],[104.4076,-5.1704],[104.4042,-5.1742],[104.4015,-5.1841],[104.4102,-5.2032],[104.4014,-5.2292],[104.396,-5.2332],[104.3948,-5.2513],[104.3872,-5.2921],[104.3818,-5.3297],[104.3793,-5.3373],[104.349,-5.3816],[104.3539,-5.3882],[104.3622,-5.3997],[104.3748,-5.412],[104.3821,-5.4237],[104.3966,-5.4381],[104.4091,-5.4531],[104.4141,-5.4633],[104.4131,-5.4752],[104.4142,-5.4827],[104.4211,-5.4906],[104.4266,-5.4944],[104.4316,-5.5001],[104.4314,-5.5106],[104.4418,-5.5231],[104.4505,-5.5206],[104.4531,-5.5222],[104.4553,-5.5286],[104.4685,-5.5335],[104.4736,-5.5345],[104.4826,-5.5435],[104.4877,-5.5466],[104.4861,-5.5545],[104.4876,-5.5578],[104.5,-5.5685],[104.5091,-5.5743],[104.5099,-5.5857],[104.5171,-5.5859],[104.52,-5.5892],[104.5286,-5.5919],[104.5351,-5.5959],[104.5396,-5.602],[104.5376,-5.6063],[104.53,-5.6126],[104.5322,-5.6194],[104.5369,-5.6232],[104.5486,-5.6164],[104.5515,-5.6216],[104.5591,-5.6242],[104.5706,-5.6256],[104.5764,-5.6347],[104.5833,-5.6391],[104.5839,-5.6478],[104.5894,-5.6565],[104.599,-5.6627],[104.6045,-5.6647],[104.6092,-5.6698],[104.6114,-5.6751],[104.6155,-5.6797],[104.6231,-5.685],[104.6248,-5.6901],[104.6297,-5.6956],[104.6284,-5.6986],[104.6217,-5.7012],[104.6162,-5.707],[104.6116,-5.717],[104.612,-5.7224],[104.6146,-5.7255],[104.6122,-5.7349],[104.6144,-5.7416],[104.6134,-5.7485],[104.6085,-5.7518],[104.5985,-5.7533],[104.5936,-5.7506],[104.5883,-5.7511],[104.588,-5.757],[104.5917,-5.7625],[104.5942,-5.7708],[104.6005,-5.7761],[104.604,-5.7845],[104.6078,-5.7867],[104.6103,-5.7925],[104.6189,-5.8024],[104.628,-5.8014],[104.6322,-5.8032],[104.6371,-5.8091],[104.6439,-5.8116],[104.654,-5.8216],[104.6426,-5.8245],[104.6392,-5.8277],[104.6385,-5.836],[104.6345,-5.8385],[104.6355,-5.8458],[104.6408,-5.8526],[104.6384,-5.8606],[104.6435,-5.8774],[104.6442,-5.883],[104.6474,-5.8829],[104.6485,-5.8883],[104.6524,-5.8962],[104.6575,-5.9],[104.6549,-5.906],[104.6584,-5.9114],[104.6597,-5.9175],[104.6561,-5.9202],[104.656,-5.9257],[104.6591,-5.9298],[104.6566,-5.9353],[104.659,-5.9368],[104.668,-5.9355],[104.7031,-5.9337],[104.7144,-5.9346],[104.7245,-5.9341],[104.7306,-5.9307],[104.733,-5.9274],[104.7279,-5.9229],[104.7265,-5.9154],[104.7283,-5.9116],[104.7189,-5.8983],[104.7129,-5.8927],[104.7097,-5.8868],[104.7037,-5.8843],[104.6982,-5.8776],[104.6991,-5.8693],[104.7015,-5.8615],[104.7108,-5.8471],[104.7105,-5.8311],[104.7026,-5.8269],[104.7015,-5.8224],[104.6984,-5.82],[104.697,-5.8124],[104.6906,-5.8088],[104.6915,-5.8059],[104.6859,-5.8021],[104.6836,-5.798],[104.6831,-5.791],[104.6789,-5.7866],[104.6751,-5.7862],[104.6734,-5.7808],[104.6692,-5.775],[104.6644,-5.7722],[104.6606,-5.7651],[104.6587,-5.7577],[104.6526,-5.7522],[104.6501,-5.752],[104.645,-5.7424],[104.6433,-5.7333],[104.6461,-5.7288],[104.6553,-5.7264],[104.6535,-5.7224],[104.648,-5.6994],[104.6432,-5.6945],[104.6395,-5.6857],[104.63,-5.6731],[104.6246,-5.6684],[104.6189,-5.6598],[104.6168,-5.6589],[104.6117,-5.6506],[104.6001,-5.6383],[104.5937,-5.6325],[104.5893,-5.626],[104.5811,-5.6191],[104.5641,-5.6018],[104.565,-5.5992],[104.5607,-5.589],[104.556,-5.5837],[104.5547,-5.5733],[104.5489,-5.5647],[104.546,-5.5546],[104.5409,-5.5529],[104.5304,-5.5444],[104.5342,-5.5362],[104.5512,-5.5216],[104.5522,-5.518],[104.5582,-5.5128],[104.5656,-5.5092],[104.5674,-5.5064],[104.5745,-5.5067],[104.5893,-5.5005],[104.5945,-5.4972],[104.6012,-5.4976],[104.6092,-5.4937],[104.6083,-5.4991],[104.6168,-5.4979],[104.6246,-5.5036],[104.6315,-5.5027],[104.6398,-5.5069],[104.653,-5.5111],[104.6665,-5.5112],[104.6818,-5.5124],[104.6907,-5.5147],[104.7071,-5.5211],[104.7163,-5.5297],[104.7188,-5.5354],[104.7258,-5.5467],[104.7282,-5.5473],[104.7293,-5.5594],[104.7383,-5.5594],[104.7418,-5.564],[104.7476,-5.5661],[104.7506,-5.5691],[104.7509,-5.5739],[104.7585,-5.5762],[104.7612,-5.5799],[104.7675,-5.593],[104.7723,-5.6006],[104.7767,-5.6045],[104.7896,-5.6101],[104.7979,-5.6119],[104.801,-5.6103],[104.8055,-5.6147],[104.8098,-5.6142],[104.8209,-5.6207],[104.8287,-5.6214],[104.8314,-5.6286],[104.841,-5.6358],[104.8515,-5.6375],[104.8661,-5.6451],[104.8737,-5.6481],[104.876,-5.6506],[104.8757,-5.6576],[104.8798,-5.6619],[104.8859,-5.6596],[104.8849,-5.6656],[104.89,-5.6665],[104.9015,-5.6656],[104.9057,-5.6614],[104.9128,-5.6637],[104.926,-5.6642],[104.9289,-5.6677],[104.9202,-5.6714],[104.9128,-5.6697],[104.906,-5.676],[104.9124,-5.6771],[104.9153,-5.6866],[104.9213,-5.6875],[104.922,-5.6925],[104.9327,-5.7002],[104.9408,-5.7028],[104.9451,-5.6969],[104.9509,-5.6935],[104.9562,-5.7024],[104.9579,-5.712],[104.9605,-5.7173],[104.9664,-5.7184],[104.9725,-5.7137],[104.9746,-5.717],[104.9831,-5.7118],[104.988,-5.7188],[104.9926,-5.7172],[105.0025,-5.7199],[105.006,-5.7171],[105.0151,-5.7227],[105.0151,-5.7277],[105.0218,-5.7243],[105.0269,-5.7278],[105.0251,-5.732],[105.0211,-5.7332],[105.0222,-5.746],[105.0288,-5.7526],[105.0329,-5.748],[105.0404,-5.749],[105.0402,-5.7543],[105.05,-5.7444],[105.0542,-5.7439],[105.0549,-5.7491],[105.0582,-5.7514],[105.0632,-5.763],[105.0658,-5.7639],[105.0709,-5.7546],[105.0802,-5.7527],[105.0942,-5.7579],[105.0889,-5.7616],[105.0908,-5.7643],[105.0888,-5.7736],[105.095,-5.7739],[105.0969,-5.7715],[105.1055,-5.7705],[105.1044,-5.7758],[105.0985,-5.7783],[105.0976,-5.7836],[105.0914,-5.7915],[105.0925,-5.7968],[105.104,-5.7863],[105.105,-5.783],[105.1168,-5.7754],[105.1228,-5.7774],[105.1232,-5.7808],[105.1275,-5.7846],[105.1254,-5.7942],[105.1277,-5.7987],[105.131,-5.798],[105.1315,-5.7934],[105.1388,-5.7967],[105.1474,-5.8074],[105.1523,-5.8086],[105.1623,-5.8078],[105.1659,-5.8028],[105.1721,-5.8004],[105.1728,-5.7989],[105.1721,-5.781],[105.1638,-5.7794],[105.1453,-5.7781],[105.1184,-5.7721],[105.1163,-5.7655],[105.109,-5.7519],[105.099,-5.7484],[105.0945,-5.7399],[105.0938,-5.7359],[105.0833,-5.7217],[105.0865,-5.7198],[105.0868,-5.7092],[105.092,-5.693],[105.0944,-5.6888],[105.0929,-5.6784],[105.0936,-5.6734],[105.0855,-5.6725],[105.0767,-5.6728],[105.0758,-5.6662],[105.0684,-5.6589],[105.0628,-5.6557],[105.0548,-5.6449],[105.0466,-5.6392],[105.0419,-5.6326],[105.0268,-5.6169],[105.0177,-5.6122],[105.0105,-5.6027],[105.0021,-5.5964],[104.9929,-5.5912],[104.9867,-5.5904],[104.9797,-5.5864],[104.9716,-5.5858],[104.9616,-5.5793],[104.9514,-5.5756],[104.9444,-5.569],[104.9378,-5.5678],[104.9252,-5.5679],[104.9126,-5.5633],[104.9059,-5.5588],[104.8935,-5.5485],[104.893,-5.545],[104.8957,-5.5399],[104.8889,-5.5336],[104.8816,-5.5239],[104.8789,-5.5141],[104.8825,-5.5029],[104.8793,-5.4958],[104.8831,-5.4914],[104.892,-5.4902],[104.8954,-5.4871],[104.8952,-5.482],[104.8997,-5.469],[104.9044,-5.4631],[104.9065,-5.4565],[104.9042,-5.4524],[104.9056,-5.4457],[104.9026,-5.4381],[104.8922,-5.4301],[104.8895,-5.4268],[104.8928,-5.4214],[104.898,-5.4204],[104.8995,-5.4144],[104.9036,-5.4106],[104.8971,-5.4085],[104.8855,-5.3974],[104.8819,-5.3972],[104.8783,-5.3865],[104.8738,-5.3844],[104.8727,-5.3799],[104.868,-5.3792],[104.8642,-5.3812],[104.8572,-5.376],[104.8608,-5.3722],[104.8588,-5.3672],[104.8621,-5.3598],[104.8572,-5.3449],[104.8457,-5.3444],[104.8438,-5.3401],[104.8343,-5.3367],[104.8316,-5.3292],[104.8261,-5.3246],[104.8234,-5.3204],[104.8202,-5.3226],[104.8165,-5.3204],[104.8129,-5.3135],[104.8087,-5.3157],[104.8044,-5.3079],[104.7997,-5.3069],[104.7962,-5.2973],[104.7967,-5.2881],[104.7927,-5.2841],[104.7935,-5.2803],[104.7869,-5.276],[104.7799,-5.2683],[104.7746,-5.2656],[104.7611,-5.2527],[104.7643,-5.2487],[104.7643,-5.2405],[104.7674,-5.2362],[104.7714,-5.2358],[104.7739,-5.2195],[104.7732,-5.2082],[104.7697,-5.2015],[104.763,-5.1946],[104.7617,-5.1909],[104.7635,-5.1817],[104.7751,-5.1704],[104.7795,-5.1643],[104.7826,-5.1669],[104.7945,-5.171]]}},{"type":"Feature","properties":{"mhid":"1332:132","alt_name":"KABUPATEN LAMPUNG SELATAN","latitude":-5.4531,"longitude":104.9877,"sample_value":860},"geometry":{"type":"LineString","coordinates":[[105.4489,-6.1365],[105.4451,-6.1331],[105.4354,-6.1442],[105.4294,-6.1462],[105.4206,-6.1451],[105.4198,-6.156],[105.4282,-6.1646],[105.4391,-6.1672],[105.449,-6.1686],[105.4595,-6.161],[105.4642,-6.1526],[105.4609,-6.1454],[105.46,-6.1389],[105.4569,-6.1352],[105.4489,-6.1365]]}},{"type":"Feature","properties":{"mhid":"1332:132","alt_name":"KABUPATEN LAMPUNG SELATAN","latitude":-5.4531,"longitude":104.9877,"sample_value":860},"geometry":{"type":"LineString","coordinates":[[105.4245,-6.1113],[105.4288,-6.1062],[105.4348,-6.1038],[105.4297,-6.0949],[105.4248,-6.0943],[105.4231,-6.0903],[105.4176,-6.0928],[105.4158,-6.102],[105.422,-6.1112],[105.4245,-6.1113]]}},{"type":"Feature","properties":{"mhid":"1332:132","alt_name":"KABUPATEN LAMPUNG SELATAN","latitude":-5.4531,"longitude":104.9877,"sample_value":860},"geometry":{"type":"LineString","coordinates":[[105.4514,-6.0801],[105.452,-6.0925],[105.4533,-6.097],[105.4508,-6.1028],[105.4509,-6.1068],[105.4553,-6.1089],[105.4574,-6.1015],[105.4608,-6.098],[105.4654,-6.088],[105.4554,-6.0836],[105.4514,-6.0801]]}},{"type":"Feature","properties":{"mhid":"1332:132","alt_name":"KABUPATEN LAMPUNG SELATAN","latitude":-5.4531,"longitude":104.9877,"sample_value":860},"geometry":{"type":"LineString","coordinates":[[105.3626,-6.113],[105.365,-6.1128],[105.3706,-6.1071],[105.382,-6.1026],[105.385,-6.0977],[105.3916,-6.0949],[105.3962,-6.0913],[105.4003,-6.0846],[105.4005,-6.0777],[105.4025,-6.0731],[105.3847,-6.0783],[105.3765,-6.0851],[105.3759,-6.0884],[105.3715,-6.0913],[105.3666,-6.1002],[105.3578,-6.1072],[105.3626,-6.113]]}},{"type":"Feature","properties":{"mhid":"1332:132","alt_name":"KABUPATEN LAMPUNG SELATAN","latitude":-5.4531,"longitude":104.9877,"sample_value":860},"geometry":{"type":"LineString","coordinates":[[105.502,-5.9233],[105.4958,-5.9211],[105.4901,-5.9217],[105.4773,-5.9261],[105.4748,-5.9311],[105.4677,-5.9364],[105.4673,-5.9407],[105.464,-5.9464],[105.4633,-5.9565],[105.4657,-5.9578],[105.4675,-5.9643],[105.4797,-5.9693],[105.4819,-5.9725],[105.4873,-5.9729],[105.5013,-5.9689],[105.5078,-5.9624],[105.5128,-5.9549],[105.5168,-5.9464],[105.5118,-5.9368],[105.5122,-5.9298],[105.5067,-5.9233],[105.502,-5.9233]]}},{"type":"Feature","properties":{"mhid":"1332:132","alt_name":"KABUPATEN LAMPUNG SELATAN","latitude":-5.4531,"longitude":104.9877,"sample_value":860},"geometry":{"type":"LineString","coordinates":[[105.7883,-5.8839],[105.7789,-5.8836],[105.7831,-5.8902],[105.7888,-5.8914],[105.7883,-5.8839]]}},{"type":"Feature","properties":{"mhid":"1332:132","alt_name":"KABUPATEN LAMPUNG SELATAN","latitude":-5.4531,"longitude":104.9877,"sample_value":860},"geometry":{"type":"LineString","coordinates":[[105.4543,-5.889],[105.4573,-5.8865],[105.4549,-5.8814],[105.4517,-5.8852],[105.4543,-5.889]]}},{"type":"Feature","properties":{"mhid":"1332:132","alt_name":"KABUPATEN LAMPUNG SELATAN","latitude":-5.4531,"longitude":104.9877,"sample_value":860},"geometry":{"type":"LineString","coordinates":[[105.7681,-5.8837],[105.7626,-5.8822],[105.7566,-5.8839],[105.749,-5.9016],[105.7568,-5.8997],[105.7579,-5.895],[105.7624,-5.8895],[105.7662,-5.8894],[105.7681,-5.8837]]}},{"type":"Feature","properties":{"mhid":"1332:132","alt_name":"KABUPATEN LAMPUNG SELATAN","latitude":-5.4531,"longitude":104.9877,"sample_value":860},"geometry":{"type":"LineString","coordinates":[[105.7865,-5.8509],[105.7781,-5.8536],[105.7732,-5.8616],[105.7755,-5.8651],[105.7824,-5.8656],[105.7898,-5.8599],[105.7923,-5.8494],[105.7865,-5.8509]]}},{"type":"Feature","properties":{"mhid":"1332:132","alt_name":"KABUPATEN LAMPUNG SELATAN","latitude":-5.4531,"longitude":104.9877,"sample_value":860},"geometry":{"type":"LineString","coordinates":[[105.5275,-5.8491],[105.5235,-5.8489],[105.5223,-5.8576],[105.5186,-5.8617],[105.514,-5.861],[105.5122,-5.8564],[105.5055,-5.857],[105.5019,-5.8654],[105.5051,-5.873],[105.5,-5.8742],[105.4974,-5.8772],[105.492,-5.8773],[105.4927,-5.8837],[105.5016,-5.8873],[105.5034,-5.891],[105.5023,-5.8993],[105.5078,-5.9005],[105.5298,-5.8934],[105.5309,-5.8831],[105.5346,-5.877],[105.5322,-5.8745],[105.5357,-5.8708],[105.5435,-5.8678],[105.5427,-5.8623],[105.5356,-5.8632],[105.5291,-5.8612],[105.5309,-5.8558],[105.5349,-5.8512],[105.5331,-5.8468],[105.5275,-5.8491]]}},{"type":"Feature","properties":{"mhid":"1332:132","alt_name":"KABUPATEN LAMPUNG SELATAN","latitude":-5.4531,"longitude":104.9877,"sample_value":860},"geometry":{"type":"LineString","coordinates":[[105.2761,-5.18],[105.2598,-5.1776],[105.2572,-5.1804],[105.2494,-5.1803],[105.2447,-5.1826],[105.2421,-5.1806],[105.2402,-5.1712],[105.2101,-5.1802],[105.2022,-5.1804],[105.2014,-5.1874],[105.1975,-5.1903],[105.1892,-5.1924],[105.1855,-5.1979],[105.1738,-5.1976],[105.1625,-5.2103],[105.1612,-5.2145],[105.1615,-5.2294],[105.1664,-5.2381],[105.1677,-5.246],[105.1702,-5.2484],[105.1764,-5.2594],[105.1788,-5.2704],[105.1754,-5.2717],[105.1768,-5.2772],[105.1596,-5.274],[105.1531,-5.2695],[105.1532,-5.2631],[105.1471,-5.2584],[105.1406,-5.2621],[105.134,-5.2744],[105.1254,-5.2856],[105.1247,-5.289],[105.1182,-5.2889],[105.1127,-5.2939],[105.1085,-5.3043],[105.1089,-5.3113],[105.1355,-5.3157],[105.164,-5.3215],[105.17,-5.3259],[105.1778,-5.328],[105.1828,-5.3345],[105.1874,-5.334],[105.1935,-5.3391],[105.196,-5.3495],[105.2019,-5.3481],[105.2064,-5.353],[105.2128,-5.3544],[105.2176,-5.3601],[105.2195,-5.3655],[105.2245,-5.3659],[105.2258,-5.3618],[105.2361,-5.3548],[105.2365,-5.349],[105.2417,-5.3474],[105.2429,-5.3428],[105.2503,-5.3386],[105.2532,-5.3353],[105.2632,-5.3383],[105.2662,-5.3478],[105.2642,-5.3529],[105.267,-5.3554],[105.2751,-5.3556],[105.2788,-5.3517],[105.2806,-5.3442],[105.2859,-5.3445],[105.2893,-5.3491],[105.2947,-5.3494],[105.2905,-5.3554],[105.2913,-5.3656],[105.2927,-5.3678],[105.3039,-5.3599],[105.3081,-5.3613],[105.3084,-5.3747],[105.3156,-5.3757],[105.317,-5.382],[105.3156,-5.3878],[105.3217,-5.3887],[105.3217,-5.3959],[105.3249,-5.3968],[105.3248,-5.4069],[105.3354,-5.4072],[105.3393,-5.4128],[105.342,-5.4196],[105.339,-5.4359],[105.3361,-5.4382],[105.3308,-5.4485],[105.3276,-5.4505],[105.3292,-5.4665],[105.3315,-5.4797],[105.3394,-5.49],[105.3411,-5.4942],[105.3506,-5.4989],[105.3594,-5.5145],[105.3471,-5.5219],[105.3489,-5.5256],[105.3578,-5.5324],[105.36,-5.5368],[105.3643,-5.541],[105.3687,-5.5504],[105.3693,-5.5616],[105.3771,-5.5699],[105.3801,-5.5783],[105.3808,-5.5844],[105.3874,-5.5918],[105.3905,-5.5988],[105.4037,-5.6089],[105.4096,-5.6216],[105.4118,-5.6243],[105.4201,-5.6271],[105.4304,-5.6327],[105.4364,-5.6347],[105.4378,-5.6374],[105.4453,-5.6366],[105.4471,-5.6425],[105.4539,-5.6484],[105.4609,-5.6503],[105.4658,-5.6476],[105.4699,-5.648],[105.4706,-5.6575],[105.4788,-5.6598],[105.4968,-5.6697],[105.5024,-5.6691],[105.5069,-5.6747],[105.5179,-5.6856],[105.5166,-5.6899],[105.5225,-5.6963],[105.5276,-5.6961],[105.5307,-5.6929],[105.5311,-5.6867],[105.5349,-5.6716],[105.5418,-5.6681],[105.5448,-5.6687],[105.5453,-5.6743],[105.5506,-5.6761],[105.5542,-5.6692],[105.5584,-5.6681],[105.5619,-5.6726],[105.5603,-5.676],[105.5584,-5.688],[105.5554,-5.6933],[105.5545,-5.6993],[105.5593,-5.7016],[105.5617,-5.7077],[105.5749,-5.7183],[105.586,-5.7303],[105.5891,-5.736],[105.5895,-5.7409],[105.5859,-5.748],[105.5867,-5.7521],[105.5848,-5.7581],[105.5798,-5.7668],[105.5813,-5.7789],[105.5791,-5.7831],[105.5796,-5.7903],[105.5841,-5.7941],[105.5845,-5.8062],[105.595,-5.8156],[105.595,-5.8199],[105.6031,-5.8273],[105.6041,-5.8312],[105.6143,-5.8356],[105.6275,-5.8358],[105.6351,-5.8398],[105.6458,-5.8369],[105.6491,-5.8385],[105.656,-5.8357],[105.6629,-5.8389],[105.6756,-5.8387],[105.6811,-5.8465],[105.6871,-5.8497],[105.6938,-5.8476],[105.7046,-5.8489],[105.7149,-5.859],[105.7127,-5.8653],[105.7148,-5.8758],[105.7177,-5.8803],[105.7175,-5.8956],[105.7157,-5.9066],[105.7188,-5.908],[105.7215,-5.9036],[105.7251,-5.9042],[105.7299,-5.8998],[105.7374,-5.8813],[105.7472,-5.875],[105.7515,-5.8739],[105.7576,-5.8673],[105.7603,-5.8577],[105.7693,-5.8482],[105.7701,-5.8447],[105.7795,-5.8364],[105.7775,-5.8308],[105.7782,-5.8234],[105.7821,-5.823],[105.7841,-5.8141],[105.7835,-5.8077],[105.7901,-5.8082],[105.7931,-5.797],[105.7967,-5.7935],[105.7938,-5.789],[105.7937,-5.7796],[105.7958,-5.7752],[105.7964,-5.7643],[105.8002,-5.7518],[105.7993,-5.7445],[105.7932,-5.7345],[105.792,-5.7236],[105.7923,-5.7163],[105.796,-5.7047],[105.7991,-5.6985],[105.8073,-5.6891],[105.81,-5.6824],[105.8104,-5.6719],[105.8159,-5.6533],[105.8164,-5.645],[105.8201,-5.6183],[105.8261,-5.6011],[105.829,-5.5899],[105.8271,-5.5813],[105.8195,-5.5792],[105.8168,-5.576],[105.8054,-5.583],[105.7973,-5.5953],[105.7994,-5.6014],[105.7944,-5.6007],[105.7912,-5.6071],[105.7934,-5.6116],[105.791,-5.6141],[105.7871,-5.6093],[105.7844,-5.6166],[105.7755,-5.6158],[105.7741,-5.6129],[105.7669,-5.6189],[105.76,-5.6149],[105.7652,-5.6047],[105.7556,-5.6094],[105.7542,-5.6059],[105.7574,-5.6023],[105.7573,-5.592],[105.751,-5.5911],[105.7413,-5.6019],[105.7371,-5.5994],[105.7339,-5.6006],[105.7338,-5.6131],[105.7301,-5.6119],[105.7225,-5.6154],[105.7099,-5.6099],[105.7043,-5.6089],[105.7065,-5.6007],[105.7029,-5.5984],[105.6896,-5.597],[105.6868,-5.6039],[105.6857,-5.6124],[105.6812,-5.613],[105.6779,-5.6098],[105.6717,-5.6095],[105.673,-5.6042],[105.6722,-5.5981],[105.6645,-5.5874],[105.6571,-5.5843],[105.6573,-5.5815],[105.6536,-5.5737],[105.6587,-5.5633],[105.6498,-5.5599],[105.6474,-5.556],[105.6372,-5.5524],[105.6337,-5.5526],[105.6312,-5.5455],[105.6323,-5.5262],[105.6312,-5.5211],[105.6324,-5.5138],[105.6319,-5.5017],[105.6294,-5.4968],[105.6224,-5.4963],[105.6141,-5.4918],[105.6074,-5.4917],[105.604,-5.49],[105.5822,-5.4875],[105.5827,-5.48],[105.5874,-5.4695],[105.5906,-5.4573],[105.5863,-5.4481],[105.5783,-5.4522],[105.5695,-5.4489],[105.5597,-5.449],[105.5412,-5.4516],[105.5329,-5.4594],[105.5315,-5.4624],[105.5311,-5.4754],[105.5213,-5.4754],[105.5212,-5.4681],[105.5168,-5.4627],[105.5159,-5.454],[105.521,-5.4508],[105.527,-5.4494],[105.5278,-5.4405],[105.5269,-5.4361],[105.5307,-5.4259],[105.5315,-5.4177],[105.526,-5.411],[105.5241,-5.4064],[105.5251,-5.388],[105.5275,-5.3849],[105.5242,-5.3751],[105.5248,-5.3623],[105.5281,-5.3585],[105.5332,-5.3489],[105.5308,-5.3406],[105.5197,-5.3255],[105.512,-5.3172],[105.5035,-5.3154],[105.4981,-5.3165],[105.4911,-5.3056],[105.4845,-5.3024],[105.4855,-5.2972],[105.4849,-5.2892],[105.4781,-5.289],[105.4733,-5.2936],[105.4724,-5.299],[105.4663,-5.3012],[105.4659,-5.3074],[105.4226,-5.3073],[105.4171,-5.3131],[105.4162,-5.2919],[105.4146,-5.2809],[105.4301,-5.2831],[105.4373,-5.2868],[105.4487,-5.2826],[105.4508,-5.2796],[105.4554,-5.2788],[105.4578,-5.2435],[105.4489,-5.2463],[105.4427,-5.2446],[105.4351,-5.246],[105.4254,-5.2451],[105.4251,-5.2354],[105.432,-5.2314],[105.4114,-5.2283],[105.4098,-5.2295],[105.4012,-5.2287],[105.3989,-5.2261],[105.3986,-5.2183],[105.4193,-5.2189],[105.4201,-5.2119],[105.3995,-5.2122],[105.3929,-5.2133],[105.3884,-5.2121],[105.3846,-5.2153],[105.3719,-5.2131],[105.3702,-5.2181],[105.3612,-5.2199],[105.3572,-5.2281],[105.3471,-5.232],[105.3491,-5.2358],[105.3468,-5.2405],[105.3349,-5.2372],[105.332,-5.2351],[105.3267,-5.2258],[105.3249,-5.2203],[105.3286,-5.2149],[105.3261,-5.2077],[105.3075,-5.2166],[105.3083,-5.2212],[105.3019,-5.2288],[105.2969,-5.2248],[105.2966,-5.2198],[105.2888,-5.2166],[105.2872,-5.21],[105.2804,-5.206],[105.2776,-5.1988],[105.2786,-5.1959],[105.2761,-5.18]]}},{"type":"Feature","properties":{"mhid":"1332:133","alt_name":"KABUPATEN LAMPUNG TIMUR","latitude":-5.10273,"longitude":105.68003,"sample_value":737},"geometry":{"type":"LineString","coordinates":[[105.8758,-4.683],[105.8684,-4.6824],[105.8548,-4.6777],[105.8516,-4.6744],[105.8512,-4.669],[105.858,-4.6557],[105.8581,-4.6348],[105.8559,-4.6312],[105.8474,-4.6316],[105.8423,-4.6286],[105.8406,-4.6224],[105.8358,-4.6198],[105.8321,-4.622],[105.8309,-4.6323],[105.8277,-4.6405],[105.8166,-4.6496],[105.8177,-4.6603],[105.816,-4.6707],[105.8137,-4.6776],[105.8176,-4.6795],[105.8169,-4.6893],[105.8148,-4.695],[105.819,-4.6958],[105.8176,-4.7014],[105.81,-4.706],[105.8048,-4.7227],[105.8124,-4.7312],[105.8073,-4.7368],[105.8121,-4.74],[105.8154,-4.7446],[105.8129,-4.7501],[105.808,-4.7527],[105.7964,-4.7543],[105.7893,-4.7507],[105.7886,-4.744],[105.7844,-4.7395],[105.7786,-4.7423],[105.7729,-4.7405],[105.7698,-4.7358],[105.7622,-4.7379],[105.757,-4.731],[105.7482,-4.7313],[105.7451,-4.7338],[105.7433,-4.7394],[105.7371,-4.7459],[105.7294,-4.7462],[105.7262,-4.7379],[105.7206,-4.7352],[105.7058,-4.7387],[105.6981,-4.7396],[105.6905,-4.7462],[105.6821,-4.7473],[105.6806,-4.7676],[105.6776,-4.7741],[105.6786,-4.7823],[105.6747,-4.7849],[105.6674,-4.7828],[105.6626,-4.7831],[105.6589,-4.7875],[105.6496,-4.7938],[105.6542,-4.802],[105.6548,-4.8058],[105.6526,-4.8131],[105.6463,-4.8158],[105.6373,-4.8266],[105.6355,-4.8336],[105.6392,-4.8362],[105.6377,-4.8515],[105.6302,-4.8525],[105.6242,-4.859],[105.6206,-4.8552],[105.6101,-4.8511],[105.6052,-4.8519],[105.6012,-4.8549],[105.6,-4.8617],[105.5943,-4.8669],[105.5934,-4.8783],[105.5908,-4.882],[105.5791,-4.8838],[105.5753,-4.8783],[105.5695,-4.8759],[105.5548,-4.8727],[105.5475,-4.8743],[105.5438,-4.8775],[105.5423,-4.8829],[105.5359,-4.885],[105.5269,-4.8832],[105.5221,-4.8864],[105.5188,-4.8815],[105.5076,-4.8815],[105.5082,-4.8854],[105.5033,-4.8909],[105.4941,-4.894],[105.4926,-4.8988],[105.4854,-4.9],[105.4745,-4.8939],[105.4648,-4.8957],[105.454,-4.9049],[105.4498,-4.905],[105.4416,-4.8981],[105.4392,-4.8905],[105.4316,-4.8917],[105.4267,-4.8965],[105.4255,-4.9021],[105.4124,-4.9141],[105.4023,-4.9216],[105.3994,-4.9285],[105.4014,-4.9332],[105.4083,-4.942],[105.4093,-4.9485],[105.4089,-4.9564],[105.4142,-4.9641],[105.4144,-4.968],[105.4105,-4.9708],[105.4047,-4.9717],[105.3951,-4.9687],[105.3844,-4.9686],[105.3793,-4.9728],[105.3733,-4.9739],[105.3616,-4.973],[105.3564,-4.9677],[105.3545,-4.9706],[105.3494,-4.9698],[105.349,-4.9648],[105.3454,-4.9642],[105.3399,-4.9723],[105.3336,-4.9762],[105.3277,-4.9865],[105.3262,-4.9963],[105.3231,-5.0067],[105.3327,-5.0078],[105.3373,-5.012],[105.3411,-5.0079],[105.3541,-5.0088],[105.3553,-5.0142],[105.363,-5.0119],[105.3629,-5.0222],[105.3641,-5.0289],[105.352,-5.031],[105.3483,-5.037],[105.3367,-5.0453],[105.329,-5.0476],[105.3269,-5.0503],[105.3203,-5.0532],[105.3212,-5.0561],[105.3181,-5.0614],[105.3121,-5.065],[105.3107,-5.0691],[105.3166,-5.0707],[105.3163,-5.0756],[105.3201,-5.0759],[105.3234,-5.0726],[105.3312,-5.0701],[105.3382,-5.0718],[105.3464,-5.0715],[105.3474,-5.0666],[105.3532,-5.0631],[105.3581,-5.0656],[105.3561,-5.0708],[105.3518,-5.0744],[105.3493,-5.0791],[105.3416,-5.0843],[105.3336,-5.0884],[105.3328,-5.0924],[105.3439,-5.0984],[105.3481,-5.1035],[105.3435,-5.1076],[105.3395,-5.1065],[105.3365,-5.1118],[105.3339,-5.1117],[105.3288,-5.1187],[105.3252,-5.1282],[105.3248,-5.1365],[105.3307,-5.139],[105.3314,-5.1482],[105.3337,-5.1531],[105.327,-5.1607],[105.3308,-5.1678],[105.3254,-5.1717],[105.3203,-5.1724],[105.318,-5.1759],[105.3105,-5.1798],[105.3024,-5.1791],[105.3017,-5.183],[105.2958,-5.1851],[105.2916,-5.1813],[105.2854,-5.1816],[105.2823,-5.1778],[105.2761,-5.18],[105.2786,-5.1959],[105.2776,-5.1988],[105.2804,-5.206],[105.2872,-5.21],[105.2888,-5.2166],[105.2966,-5.2198],[105.2969,-5.2248],[105.3019,-5.2288],[105.3083,-5.2212],[105.3075,-5.2166],[105.3261,-5.2077],[105.3286,-5.2149],[105.3249,-5.2203],[105.3267,-5.2258],[105.332,-5.2351],[105.3349,-5.2372],[105.3468,-5.2405],[105.3491,-5.2358],[105.3471,-5.232],[105.3572,-5.2281],[105.3612,-5.2199],[105.3702,-5.2181],[105.3719,-5.2131],[105.3846,-5.2153],[105.3884,-5.2121],[105.3929,-5.2133],[105.3995,-5.2122],[105.4201,-5.2119],[105.4193,-5.2189],[105.3986,-5.2183],[105.3989,-5.2261],[105.4012,-5.2287],[105.4098,-5.2295],[105.4114,-5.2283],[105.432,-5.2314],[105.4251,-5.2354],[105.4254,-5.2451],[105.4351,-5.246],[105.4427,-5.2446],[105.4489,-5.2463],[105.4578,-5.2435],[105.4554,-5.2788],[105.4508,-5.2796],[105.4487,-5.2826],[105.4373,-5.2868],[105.4301,-5.2831],[105.4146,-5.2809],[105.4162,-5.2919],[105.4171,-5.3131],[105.4226,-5.3073],[105.4659,-5.3074],[105.4663,-5.3012],[105.4724,-5.299],[105.4733,-5.2936],[105.4781,-5.289],[105.4849,-5.2892],[105.4855,-5.2972],[105.4845,-5.3024],[105.4911,-5.3056],[105.4981,-5.3165],[105.5035,-5.3154],[105.512,-5.3172],[105.5197,-5.3255],[105.5308,-5.3406],[105.5332,-5.3489],[105.5281,-5.3585],[105.5248,-5.3623],[105.5242,-5.3751],[105.5275,-5.3849],[105.5251,-5.388],[105.5241,-5.4064],[105.526,-5.411],[105.5315,-5.4177],[105.5307,-5.4259],[105.5269,-5.4361],[105.5278,-5.4405],[105.527,-5.4494],[105.521,-5.4508],[105.5159,-5.454],[105.5168,-5.4627],[105.5212,-5.4681],[105.5213,-5.4754],[105.5311,-5.4754],[105.5315,-5.4624],[105.5329,-5.4594],[105.5412,-5.4516],[105.5597,-5.449],[105.5695,-5.4489],[105.5783,-5.4522],[105.5863,-5.4481],[105.5906,-5.4573],[105.5874,-5.4695],[105.5827,-5.48],[105.5822,-5.4875],[105.604,-5.49],[105.6074,-5.4917],[105.6141,-5.4918],[105.6224,-5.4963],[105.6294,-5.4968],[105.6319,-5.5017],[105.6324,-5.5138],[105.6312,-5.5211],[105.6323,-5.5262],[105.6312,-5.5455],[105.6337,-5.5526],[105.6372,-5.5524],[105.6474,-5.556],[105.6498,-5.5599],[105.6587,-5.5633],[105.6536,-5.5737],[105.6573,-5.5815],[105.6571,-5.5843],[105.6645,-5.5874],[105.6722,-5.5981],[105.673,-5.6042],[105.6717,-5.6095],[105.6779,-5.6098],[105.6812,-5.613],[105.6857,-5.6124],[105.6868,-5.6039],[105.6896,-5.597],[105.7029,-5.5984],[105.7065,-5.6007],[105.7043,-5.6089],[105.7099,-5.6099],[105.7225,-5.6154],[105.7301,-5.6119],[105.7338,-5.6131],[105.7339,-5.6006],[105.7371,-5.5994],[105.7413,-5.6019],[105.751,-5.5911],[105.7573,-5.592],[105.7574,-5.6023],[105.7542,-5.6059],[105.7556,-5.6094],[105.7652,-5.6047],[105.76,-5.6149],[105.7669,-5.6189],[105.7741,-5.6129],[105.7755,-5.6158],[105.7844,-5.6166],[105.7871,-5.6093],[105.791,-5.6141],[105.7934,-5.6116],[105.7912,-5.6071],[105.7944,-5.6007],[105.7994,-5.6014],[105.7973,-5.5953],[105.8054,-5.583],[105.8168,-5.576],[105.8202,-5.5702],[105.8149,-5.5525],[105.8142,-5.5392],[105.8155,-5.5293],[105.8194,-5.5129],[105.8252,-5.5044],[105.8246,-5.4921],[105.8249,-5.4729],[105.824,-5.4543],[105.8226,-5.4386],[105.821,-5.404],[105.8192,-5.38],[105.8201,-5.362],[105.8195,-5.3538],[105.8196,-5.3336],[105.8208,-5.3219],[105.8271,-5.3015],[105.8365,-5.2875],[105.8522,-5.2727],[105.8551,-5.2714],[105.8623,-5.2605],[105.8638,-5.2499],[105.8615,-5.212],[105.8609,-5.1904],[105.8611,-5.1747],[105.8621,-5.1501],[105.8602,-5.1366],[105.8588,-5.1212],[105.8591,-5.1017],[105.8569,-5.0736],[105.8587,-5.062],[105.8584,-5.0519],[105.8592,-5.0379],[105.8603,-5.0325],[105.8646,-4.9986],[105.8684,-4.9818],[105.8741,-4.9637],[105.8812,-4.9544],[105.8982,-4.9441],[105.902,-4.9371],[105.9011,-4.9251],[105.8974,-4.9154],[105.8927,-4.906],[105.8878,-4.8997],[105.883,-4.8961],[105.8774,-4.8882],[105.8716,-4.8752],[105.8666,-4.8578],[105.8635,-4.8384],[105.8615,-4.8148],[105.8613,-4.7901],[105.8631,-4.7679],[105.8661,-4.7475],[105.8718,-4.7244],[105.8771,-4.711],[105.8824,-4.7026],[105.8826,-4.6991],[105.8771,-4.6893],[105.8758,-4.683]]}},{"type":"Feature","properties":{"mhid":"1332:72","alt_name":"KOTA SOLOK","latitude":-0.76667,"longitude":100.61667,"sample_value":965},"geometry":{"type":"LineString","coordinates":[[100.5448,-0.8149],[100.5569,-0.8186],[100.5613,-0.819],[100.5707,-0.815],[100.5816,-0.8117],[100.5925,-0.8073],[100.6209,-0.7997],[100.6254,-0.7995],[100.6361,-0.7952],[100.6427,-0.7973],[100.6416,-0.805],[100.6472,-0.8044],[100.6534,-0.8076],[100.658,-0.806],[100.6612,-0.8092],[100.6663,-0.8109],[100.678,-0.8068],[100.6794,-0.8043],[100.6767,-0.7934],[100.6704,-0.7885],[100.6702,-0.7841],[100.673,-0.7809],[100.6726,-0.7689],[100.6767,-0.7679],[100.6857,-0.7607],[100.6889,-0.7465],[100.6879,-0.7439],[100.6805,-0.7395],[100.6751,-0.7387],[100.6429,-0.7445],[100.6397,-0.7527],[100.6301,-0.7663],[100.6218,-0.7727],[100.6097,-0.7721],[100.606,-0.7806],[100.5971,-0.7851],[100.5708,-0.7867],[100.569,-0.7894],[100.5702,-0.7945],[100.563,-0.792],[100.5582,-0.8001],[100.5539,-0.8027],[100.5442,-0.8045],[100.5414,-0.8091],[100.5448,-0.8149]]}},{"type":"Feature","properties":{"mhid":"1332:73","alt_name":"KOTA SAWAH LUNTO","latitude":-0.6,"longitude":100.75,"sample_value":395},"geometry":{"type":"LineString","coordinates":[[100.7978,-0.5645],[100.7907,-0.5633],[100.7874,-0.5607],[100.7884,-0.5544],[100.7857,-0.55],[100.781,-0.5535],[100.7799,-0.5616],[100.7731,-0.5582],[100.7507,-0.5565],[100.7459,-0.5605],[100.7317,-0.5536],[100.7241,-0.5579],[100.7195,-0.5682],[100.7131,-0.573],[100.7073,-0.5739],[100.7009,-0.5806],[100.6992,-0.5919],[100.697,-0.5943],[100.7014,-0.5992],[100.7056,-0.6005],[100.7032,-0.6065],[100.7032,-0.6167],[100.7011,-0.6213],[100.6912,-0.6279],[100.6947,-0.6328],[100.6959,-0.6383],[100.6945,-0.6478],[100.6987,-0.6533],[100.7088,-0.6621],[100.7067,-0.6731],[100.7033,-0.679],[100.7026,-0.6839],[100.7034,-0.6963],[100.6966,-0.711],[100.6972,-0.7186],[100.6958,-0.7242],[100.7009,-0.7275],[100.7067,-0.7269],[100.71,-0.7337],[100.7141,-0.7345],[100.7222,-0.7324],[100.7283,-0.7236],[100.7341,-0.7249],[100.7466,-0.7239],[100.7491,-0.7328],[100.7527,-0.7357],[100.7535,-0.7407],[100.7599,-0.7406],[100.7668,-0.7449],[100.7713,-0.7503],[100.7765,-0.7515],[100.7822,-0.7621],[100.7891,-0.7701],[100.7981,-0.7688],[100.8042,-0.7735],[100.8116,-0.77],[100.8153,-0.7674],[100.8215,-0.7664],[100.8221,-0.7583],[100.816,-0.7474],[100.8105,-0.7419],[100.8114,-0.7363],[100.8037,-0.7199],[100.8007,-0.718],[100.8043,-0.7078],[100.802,-0.6989],[100.7994,-0.6744],[100.7909,-0.6684],[100.8016,-0.6639],[100.8091,-0.6209],[100.8144,-0.6154],[100.8114,-0.6044],[100.8031,-0.5984],[100.8013,-0.5949],[100.8079,-0.5901],[100.8123,-0.5852],[100.8126,-0.5787],[100.8044,-0.5676],[100.7978,-0.5645]]}},{"type":"Feature","properties":{"mhid":"1332:74","alt_name":"KOTA PADANG PANJANG","latitude":-0.45,"longitude":100.43333,"sample_value":718},"geometry":{"type":"LineString","coordinates":[[100.3987,-0.45],[100.3964,-0.452],[100.396,-0.4602],[100.3896,-0.4584],[100.3776,-0.4621],[100.3721,-0.4679],[100.3678,-0.479],[100.3801,-0.4856],[100.4065,-0.4852],[100.4124,-0.4836],[100.4271,-0.4855],[100.4329,-0.488],[100.4345,-0.4782],[100.4327,-0.473],[100.4364,-0.4697],[100.4325,-0.4628],[100.4258,-0.4596],[100.4248,-0.4556],[100.4117,-0.4546],[100.4094,-0.459],[100.4044,-0.455],[100.4039,-0.4514],[100.3987,-0.45]]}},{"type":"Feature","properties":{"mhid":"1332:134","alt_name":"KABUPATEN LAMPUNG TENGAH","latitude":-4.86667,"longitude":105.26667,"sample_value":476},"geometry":{"type":"LineString","coordinates":[[105.8166,-4.6496],[105.8089,-4.6535],[105.8027,-4.6521],[105.7999,-4.6445],[105.7911,-4.6357],[105.7813,-4.6323],[105.782,-4.6252],[105.7794,-4.6209],[105.7835,-4.6146],[105.7796,-4.6123],[105.7787,-4.6061],[105.7833,-4.6033],[105.7842,-4.5979],[105.7931,-4.5885],[105.8012,-4.5911],[105.8049,-4.5849],[105.8036,-4.5807],[105.794,-4.5799],[105.7958,-4.572],[105.7999,-4.5703],[105.7997,-4.5598],[105.791,-4.55],[105.7861,-4.5504],[105.7845,-4.556],[105.7717,-4.5534],[105.7684,-4.5472],[105.7677,-4.5424],[105.7737,-4.5373],[105.7736,-4.5324],[105.7699,-4.5285],[105.766,-4.5287],[105.7594,-4.5322],[105.756,-4.5288],[105.7541,-4.5224],[105.746,-4.5218],[105.7448,-4.5303],[105.7397,-4.5348],[105.7314,-4.5373],[105.7281,-4.5363],[105.7269,-4.5301],[105.7242,-4.5278],[105.7189,-4.5314],[105.7132,-4.531],[105.7077,-4.5267],[105.7066,-4.5181],[105.6942,-4.5138],[105.693,-4.51],[105.6978,-4.5065],[105.6981,-4.4967],[105.6937,-4.4909],[105.6814,-4.4851],[105.6755,-4.4855],[105.6727,-4.4976],[105.6694,-4.5006],[105.6612,-4.5005],[105.658,-4.5072],[105.6546,-4.5091],[105.6452,-4.5084],[105.6414,-4.5015],[105.6451,-4.4963],[105.6466,-4.4868],[105.6433,-4.4811],[105.6387,-4.4828],[105.6336,-4.4819],[105.6269,-4.4884],[105.6271,-4.5009],[105.6201,-4.5182],[105.6113,-4.5186],[105.6076,-4.5217],[105.6021,-4.5215],[105.5965,-4.5138],[105.5873,-4.5158],[105.5853,-4.5188],[105.5855,-4.5259],[105.5834,-4.534],[105.5773,-4.5346],[105.5744,-4.5318],[105.5734,-4.5216],[105.5714,-4.5192],[105.5606,-4.5172],[105.5558,-4.5197],[105.5494,-4.5206],[105.5425,-4.5198],[105.5356,-4.5213],[105.5343,-4.5177],[105.5368,-4.5137],[105.5354,-4.5096],[105.5311,-4.5072],[105.5248,-4.5076],[105.5204,-4.4972],[105.5135,-4.4968],[105.51,-4.4915],[105.5054,-4.4954],[105.4971,-4.4948],[105.4925,-4.4827],[105.4826,-4.4917],[105.4786,-4.4966],[105.4739,-4.4958],[105.474,-4.492],[105.465,-4.4924],[105.464,-4.4969],[105.4587,-4.4925],[105.4487,-4.4966],[105.4459,-4.5015],[105.4379,-4.5023],[105.4343,-4.5061],[105.4269,-4.51],[105.4184,-4.5081],[105.4101,-4.514],[105.3993,-4.5112],[105.3956,-4.5154],[105.3917,-4.5152],[105.3867,-4.5178],[105.3822,-4.5162],[105.3755,-4.522],[105.3693,-4.5223],[105.37,-4.5257],[105.3649,-4.5285],[105.3607,-4.5369],[105.3537,-4.5395],[105.3558,-4.5438],[105.3532,-4.5508],[105.3472,-4.5505],[105.3401,-4.5528],[105.3377,-4.5642],[105.3306,-4.5674],[105.3233,-4.5727],[105.3227,-4.5772],[105.3122,-4.5797],[105.3106,-4.5915],[105.304,-4.595],[105.3038,-4.6046],[105.2917,-4.6161],[105.2888,-4.6137],[105.2867,-4.6211],[105.2787,-4.622],[105.2753,-4.6208],[105.2651,-4.6232],[105.2602,-4.6292],[105.2634,-4.6324],[105.2597,-4.6355],[105.2503,-4.6376],[105.2443,-4.6405],[105.2345,-4.6402],[105.2277,-4.6427],[105.2266,-4.6391],[105.2157,-4.6386],[105.2089,-4.6343],[105.2122,-4.6252],[105.2139,-4.6155],[105.2105,-4.6108],[105.2004,-4.613],[105.1962,-4.6143],[105.1814,-4.6156],[105.1764,-4.6205],[105.1773,-4.6353],[105.1803,-4.6398],[105.1743,-4.6448],[105.1665,-4.6574],[105.1606,-4.6697],[105.1551,-4.6773],[105.1448,-4.6763],[105.1398,-4.6787],[105.1376,-4.6851],[105.1418,-4.6906],[105.141,-4.6967],[105.143,-4.7047],[105.1382,-4.7151],[105.127,-4.7273],[105.123,-4.732],[105.1248,-4.7391],[105.1201,-4.7505],[105.1234,-4.7602],[105.1232,-4.7648],[105.1206,-4.7711],[105.1018,-4.8077],[105.0971,-4.8146],[105.0913,-4.8201],[105.0856,-4.8331],[105.0675,-4.864],[105.0533,-4.8726],[105.0571,-4.8949],[105.053,-4.8997],[105.0518,-4.9077],[105.0525,-4.9268],[105.0464,-4.9358],[105.0423,-4.9451],[105.0326,-4.9438],[105.0238,-4.9542],[105.0172,-4.9568],[105.003,-4.9543],[105.0011,-4.9518],[105.0018,-4.9431],[104.9936,-4.9293],[104.979,-4.9223],[104.9758,-4.9197],[104.9678,-4.9213],[104.9676,-4.9154],[104.9649,-4.9126],[104.9599,-4.9175],[104.9539,-4.9163],[104.9441,-4.9191],[104.9408,-4.9219],[104.9356,-4.9194],[104.9306,-4.9229],[104.9246,-4.9246],[104.924,-4.9321],[104.9185,-4.9419],[104.913,-4.9466],[104.9104,-4.9527],[104.9035,-4.9584],[104.9062,-4.964],[104.9056,-4.9694],[104.9078,-4.9769],[104.9023,-4.9849],[104.8918,-4.9869],[104.8861,-4.9897],[104.8789,-4.9895],[104.8599,-5.0013],[104.8536,-5.0004],[104.8545,-4.9939],[104.8719,-4.981],[104.8766,-4.9763],[104.8754,-4.9723],[104.8711,-4.9701],[104.8641,-4.9717],[104.86,-4.971],[104.8526,-4.9768],[104.8297,-4.9889],[104.8243,-4.99],[104.8201,-4.9884],[104.8154,-4.9939],[104.8074,-4.9976],[104.8072,-5.0054],[104.8051,-5.0072],[104.8,-5.005],[104.7837,-5.0113],[104.781,-5.0148],[104.7831,-5.0323],[104.7823,-5.0414],[104.777,-5.0388],[104.7673,-5.0359],[104.7621,-5.0378],[104.7547,-5.0449],[104.7502,-5.0457],[104.7399,-5.0504],[104.7351,-5.0481],[104.7328,-5.052],[104.7267,-5.0526],[104.7262,-5.0584],[104.7196,-5.0648],[104.7152,-5.0638],[104.7099,-5.0704],[104.7077,-5.0645],[104.6973,-5.0638],[104.6916,-5.0694],[104.6879,-5.0818],[104.6828,-5.0845],[104.6675,-5.0843],[104.6636,-5.0796],[104.6526,-5.0799],[104.6429,-5.0817],[104.6395,-5.0878],[104.6366,-5.0889],[104.6284,-5.086],[104.6225,-5.0867],[104.6074,-5.0844],[104.5928,-5.073],[104.591,-5.0683],[104.5816,-5.0615],[104.5804,-5.0576],[104.5766,-5.0644],[104.5653,-5.07],[104.5589,-5.0806],[104.546,-5.0926],[104.5379,-5.1029],[104.533,-5.1071],[104.5455,-5.1071],[104.5502,-5.1109],[104.5603,-5.1135],[104.5694,-5.1262],[104.5785,-5.1351],[104.5829,-5.1465],[104.5898,-5.1489],[104.5987,-5.1478],[104.6069,-5.1545],[104.6172,-5.1527],[104.625,-5.15],[104.6371,-5.1505],[104.6451,-5.1564],[104.6505,-5.1638],[104.6613,-5.1706],[104.6687,-5.1728],[104.6727,-5.1723],[104.6796,-5.1681],[104.6936,-5.1694],[104.6994,-5.1672],[104.7111,-5.1561],[104.7141,-5.1508],[104.7163,-5.1433],[104.7195,-5.1381],[104.7249,-5.1341],[104.7329,-5.1335],[104.7394,-5.1356],[104.7443,-5.1332],[104.7511,-5.1321],[104.7569,-5.1418],[104.7668,-5.1492],[104.7712,-5.1485],[104.7822,-5.1414],[104.7842,-5.1449],[104.7822,-5.1517],[104.7827,-5.1571],[104.7909,-5.1583],[104.7935,-5.1604],[104.7945,-5.171],[104.8013,-5.171],[104.8043,-5.1728],[104.8113,-5.1833],[104.8288,-5.2011],[104.8462,-5.2088],[104.8609,-5.214],[104.8678,-5.2219],[104.8688,-5.2326],[104.8838,-5.2508],[104.898,-5.2431],[104.9051,-5.2486],[104.9109,-5.255],[104.9135,-5.2671],[104.9186,-5.2656],[104.9274,-5.2655],[104.9373,-5.261],[104.949,-5.2606],[104.9485,-5.2584],[104.957,-5.2536],[104.9589,-5.2506],[104.97,-5.244],[104.9725,-5.2491],[104.9805,-5.2442],[104.9887,-5.2412],[105.0099,-5.2382],[105.0163,-5.2345],[105.0205,-5.2297],[105.0291,-5.224],[105.0326,-5.2199],[105.0379,-5.2092],[105.0414,-5.1983],[105.0524,-5.1838],[105.056,-5.1746],[105.0603,-5.1697],[105.0664,-5.1677],[105.0691,-5.1626],[105.0747,-5.1597],[105.0802,-5.1492],[105.0791,-5.1386],[105.0812,-5.1278],[105.0851,-5.1319],[105.0853,-5.1419],[105.0896,-5.1446],[105.0944,-5.1332],[105.1,-5.137],[105.0987,-5.1409],[105.091,-5.1519],[105.0892,-5.1589],[105.0935,-5.1597],[105.0952,-5.1643],[105.0995,-5.1602],[105.1089,-5.1548],[105.1161,-5.1544],[105.1328,-5.1504],[105.1416,-5.1532],[105.1437,-5.1569],[105.1477,-5.1564],[105.1471,-5.1513],[105.1507,-5.1469],[105.1523,-5.1404],[105.1572,-5.1421],[105.1619,-5.1384],[105.1708,-5.1378],[105.177,-5.1357],[105.1775,-5.1238],[105.1796,-5.1208],[105.1855,-5.1247],[105.1932,-5.1274],[105.2059,-5.1351],[105.2086,-5.1402],[105.2076,-5.1491],[105.2106,-5.1548],[105.2204,-5.1574],[105.2271,-5.1634],[105.2343,-5.1658],[105.2402,-5.1712],[105.2421,-5.1806],[105.2447,-5.1826],[105.2494,-5.1803],[105.2572,-5.1804],[105.2598,-5.1776],[105.2761,-5.18],[105.2751,-5.1737],[105.2778,-5.1684],[105.2748,-5.1656],[105.2757,-5.1605],[105.2688,-5.1587],[105.2624,-5.1589],[105.2685,-5.1526],[105.2712,-5.1477],[105.2751,-5.1452],[105.2711,-5.141],[105.2754,-5.1367],[105.2738,-5.1327],[105.2785,-5.1288],[105.2786,-5.1239],[105.2844,-5.1204],[105.2898,-5.1086],[105.2838,-5.1039],[105.2735,-5.107],[105.269,-5.1025],[105.2695,-5.0968],[105.2784,-5.0927],[105.2802,-5.0842],[105.289,-5.0786],[105.2958,-5.0731],[105.3009,-5.0648],[105.3041,-5.0629],[105.3061,-5.0573],[105.3203,-5.0532],[105.3269,-5.0503],[105.329,-5.0476],[105.3367,-5.0453],[105.3483,-5.037],[105.352,-5.031],[105.3641,-5.0289],[105.3629,-5.0222],[105.363,-5.0119],[105.3553,-5.0142],[105.3541,-5.0088],[105.3411,-5.0079],[105.3373,-5.012],[105.3327,-5.0078],[105.3231,-5.0067],[105.3262,-4.9963],[105.3277,-4.9865],[105.3336,-4.9762],[105.3399,-4.9723],[105.3454,-4.9642],[105.349,-4.9648],[105.3494,-4.9698],[105.3545,-4.9706],[105.3564,-4.9677],[105.3616,-4.973],[105.3733,-4.9739],[105.3793,-4.9728],[105.3844,-4.9686],[105.3951,-4.9687],[105.4047,-4.9717],[105.4105,-4.9708],[105.4144,-4.968],[105.4142,-4.9641],[105.4089,-4.9564],[105.4093,-4.9485],[105.4083,-4.942],[105.4014,-4.9332],[105.3994,-4.9285],[105.4023,-4.9216],[105.4124,-4.9141],[105.4255,-4.9021],[105.4267,-4.8965],[105.4316,-4.8917],[105.4392,-4.8905],[105.4416,-4.8981],[105.4498,-4.905],[105.454,-4.9049],[105.4648,-4.8957],[105.4745,-4.8939],[105.4854,-4.9],[105.4926,-4.8988],[105.4941,-4.894],[105.5033,-4.8909],[105.5082,-4.8854],[105.5076,-4.8815],[105.5188,-4.8815],[105.5221,-4.8864],[105.5269,-4.8832],[105.5359,-4.885],[105.5423,-4.8829],[105.5438,-4.8775],[105.5475,-4.8743],[105.5548,-4.8727],[105.5695,-4.8759],[105.5753,-4.8783],[105.5791,-4.8838],[105.5908,-4.882],[105.5934,-4.8783],[105.5943,-4.8669],[105.6,-4.8617],[105.6012,-4.8549],[105.6052,-4.8519],[105.6101,-4.8511],[105.6206,-4.8552],[105.6242,-4.859],[105.6302,-4.8525],[105.6377,-4.8515],[105.6392,-4.8362],[105.6355,-4.8336],[105.6373,-4.8266],[105.6463,-4.8158],[105.6526,-4.8131],[105.6548,-4.8058],[105.6542,-4.802],[105.6496,-4.7938],[105.6589,-4.7875],[105.6626,-4.7831],[105.6674,-4.7828],[105.6747,-4.7849],[105.6786,-4.7823],[105.6776,-4.7741],[105.6806,-4.7676],[105.6821,-4.7473],[105.6905,-4.7462],[105.6981,-4.7396],[105.7058,-4.7387],[105.7206,-4.7352],[105.7262,-4.7379],[105.7294,-4.7462],[105.7371,-4.7459],[105.7433,-4.7394],[105.7451,-4.7338],[105.7482,-4.7313],[105.757,-4.731],[105.7622,-4.7379],[105.7698,-4.7358],[105.7729,-4.7405],[105.7786,-4.7423],[105.7844,-4.7395],[105.7886,-4.744],[105.7893,-4.7507],[105.7964,-4.7543],[105.808,-4.7527],[105.8129,-4.7501],[105.8154,-4.7446],[105.8121,-4.74],[105.8073,-4.7368],[105.8124,-4.7312],[105.8048,-4.7227],[105.81,-4.706],[105.8176,-4.7014],[105.819,-4.6958],[105.8148,-4.695],[105.8169,-4.6893],[105.8176,-4.6795],[105.8137,-4.6776],[105.816,-4.6707],[105.8177,-4.6603],[105.8166,-4.6496]]}},{"type":"Feature","properties":{"mhid":"1332:135","alt_name":"KABUPATEN LAMPUNG UTARA","latitude":-4.81667,"longitude":104.8,"sample_value":798},"geometry":{"type":"LineString","coordinates":[[105.127,-4.7273],[105.1197,-4.7201],[105.1173,-4.7203],[105.1017,-4.7131],[105.0795,-4.7113],[105.0782,-4.7074],[105.0686,-4.7076],[105.0659,-4.6966],[105.0539,-4.6926],[105.0393,-4.6725],[105.035,-4.6683],[105.0274,-4.6678],[105.0126,-4.66],[105.0091,-4.6591],[105.0039,-4.6623],[104.9995,-4.6599],[104.9981,-4.6511],[104.999,-4.6331],[104.997,-4.6259],[104.9953,-4.6127],[104.9977,-4.6068],[104.9901,-4.5983],[104.9897,-4.5947],[104.9859,-4.5919],[104.9922,-4.5877],[104.994,-4.5842],[104.9914,-4.5768],[104.9878,-4.5736],[104.9865,-4.5607],[104.9833,-4.556],[104.9751,-4.5506],[104.9722,-4.5446],[104.971,-4.5338],[104.9673,-4.5279],[104.9571,-4.5313],[104.9527,-4.5286],[104.9436,-4.5306],[104.9417,-4.5333],[104.9315,-4.534],[104.9243,-4.5394],[104.9135,-4.5457],[104.9121,-4.55],[104.9056,-4.5523],[104.9011,-4.5481],[104.8852,-4.5418],[104.8742,-4.5441],[104.8654,-4.5517],[104.8609,-4.5596],[104.8491,-4.564],[104.8406,-4.5693],[104.8362,-4.5662],[104.8282,-4.5645],[104.8233,-4.5669],[104.8219,-4.5701],[104.8223,-4.5833],[104.8072,-4.585],[104.783,-4.5852],[104.7796,-4.5838],[104.7745,-4.5759],[104.7659,-4.5782],[104.75,-4.5636],[104.7418,-4.5601],[104.7343,-4.5588],[104.7317,-4.5568],[104.7217,-4.5568],[104.716,-4.5544],[104.6986,-4.5555],[104.6955,-4.5636],[104.7011,-4.5666],[104.702,-4.5727],[104.6988,-4.5821],[104.6963,-4.5815],[104.6947,-4.591],[104.6987,-4.596],[104.6946,-4.5974],[104.691,-4.6043],[104.685,-4.6055],[104.6792,-4.6098],[104.6758,-4.6083],[104.6727,-4.6133],[104.6693,-4.6143],[104.6687,-4.6206],[104.6575,-4.6243],[104.6509,-4.63],[104.6448,-4.6325],[104.6417,-4.6377],[104.6441,-4.6426],[104.6395,-4.6466],[104.6361,-4.6571],[104.6309,-4.6574],[104.6204,-4.6667],[104.6131,-4.671],[104.6053,-4.685],[104.6098,-4.691],[104.6219,-4.6971],[104.6279,-4.6977],[104.6308,-4.7021],[104.63,-4.7091],[104.6248,-4.714],[104.6177,-4.7171],[104.6251,-4.7315],[104.6309,-4.7337],[104.6346,-4.7412],[104.6409,-4.751],[104.6451,-4.7528],[104.6427,-4.7598],[104.6374,-4.7683],[104.6418,-4.7739],[104.6405,-4.7808],[104.6365,-4.7843],[104.6241,-4.8081],[104.6223,-4.8186],[104.6202,-4.8243],[104.6102,-4.8312],[104.6052,-4.8252],[104.5933,-4.8267],[104.5755,-4.828],[104.5612,-4.8305],[104.5507,-4.8302],[104.5508,-4.837],[104.5549,-4.8391],[104.5559,-4.8448],[104.5478,-4.8569],[104.5459,-4.862],[104.5476,-4.8659],[104.5404,-4.8741],[104.5391,-4.8811],[104.5355,-4.8912],[104.5294,-4.8968],[104.5261,-4.9079],[104.5182,-4.9207],[104.5093,-4.9309],[104.5108,-4.9387],[104.5072,-4.943],[104.5061,-4.9484],[104.5009,-4.955],[104.5017,-4.9583],[104.4969,-4.9725],[104.5015,-4.9792],[104.4994,-4.9858],[104.4999,-4.9982],[104.4966,-5.0045],[104.4992,-5.0088],[104.4995,-5.0166],[104.5047,-5.0193],[104.5142,-5.022],[104.5255,-5.0228],[104.5318,-5.0223],[104.5351,-5.0203],[104.5364,-5.0155],[104.5477,-5.0181],[104.5526,-5.0204],[104.5593,-5.0199],[104.5646,-5.0247],[104.5695,-5.0237],[104.5728,-5.0432],[104.5796,-5.0536],[104.5804,-5.0576],[104.5816,-5.0615],[104.591,-5.0683],[104.5928,-5.073],[104.6074,-5.0844],[104.6225,-5.0867],[104.6284,-5.086],[104.6366,-5.0889],[104.6395,-5.0878],[104.6429,-5.0817],[104.6526,-5.0799],[104.6636,-5.0796],[104.6675,-5.0843],[104.6828,-5.0845],[104.6879,-5.0818],[104.6916,-5.0694],[104.6973,-5.0638],[104.7077,-5.0645],[104.7099,-5.0704],[104.7152,-5.0638],[104.7196,-5.0648],[104.7262,-5.0584],[104.7267,-5.0526],[104.7328,-5.052],[104.7351,-5.0481],[104.7399,-5.0504],[104.7502,-5.0457],[104.7547,-5.0449],[104.7621,-5.0378],[104.7673,-5.0359],[104.777,-5.0388],[104.7823,-5.0414],[104.7831,-5.0323],[104.781,-5.0148],[104.7837,-5.0113],[104.8,-5.005],[104.8051,-5.0072],[104.8072,-5.0054],[104.8074,-4.9976],[104.8154,-4.9939],[104.8201,-4.9884],[104.8243,-4.99],[104.8297,-4.9889],[104.8526,-4.9768],[104.86,-4.971],[104.8641,-4.9717],[104.8711,-4.9701],[104.8754,-4.9723],[104.8766,-4.9763],[104.8719,-4.981],[104.8545,-4.9939],[104.8536,-5.0004],[104.8599,-5.0013],[104.8789,-4.9895],[104.8861,-4.9897],[104.8918,-4.9869],[104.9023,-4.9849],[104.9078,-4.9769],[104.9056,-4.9694],[104.9062,-4.964],[104.9035,-4.9584],[104.9104,-4.9527],[104.913,-4.9466],[104.9185,-4.9419],[104.924,-4.9321],[104.9246,-4.9246],[104.9306,-4.9229],[104.9356,-4.9194],[104.9408,-4.9219],[104.9441,-4.9191],[104.9539,-4.9163],[104.9599,-4.9175],[104.9649,-4.9126],[104.9676,-4.9154],[104.9678,-4.9213],[104.9758,-4.9197],[104.979,-4.9223],[104.9936,-4.9293],[105.0018,-4.9431],[105.0011,-4.9518],[105.003,-4.9543],[105.0172,-4.9568],[105.0238,-4.9542],[105.0326,-4.9438],[105.0423,-4.9451],[105.0464,-4.9358],[105.0525,-4.9268],[105.0518,-4.9077],[105.053,-4.8997],[105.0571,-4.8949],[105.0533,-4.8726],[105.0675,-4.864],[105.0856,-4.8331],[105.0913,-4.8201],[105.0971,-4.8146],[105.1018,-4.8077],[105.1206,-4.7711],[105.1232,-4.7648],[105.1234,-4.7602],[105.1201,-4.7505],[105.1248,-4.7391],[105.123,-4.732],[105.127,-4.7273]]}},{"type":"Feature","properties":{"mhid":"1332:136","alt_name":"KABUPATEN WAY KANAN","latitude":-4.44705,"longitude":104.52753,"sample_value":12},"geometry":{"type":"LineString","coordinates":[[104.9292,-4.1925],[104.9214,-4.1952],[104.9179,-4.1984],[104.9145,-4.1975],[104.9061,-4.2033],[104.9037,-4.2089],[104.8948,-4.2101],[104.8924,-4.2159],[104.8889,-4.2181],[104.8822,-4.2188],[104.8763,-4.2177],[104.8752,-4.2226],[104.8778,-4.227],[104.875,-4.2335],[104.8665,-4.2309],[104.8628,-4.2319],[104.8611,-4.2359],[104.8559,-4.2406],[104.8486,-4.2386],[104.8372,-4.2378],[104.8289,-4.2389],[104.8258,-4.2419],[104.8199,-4.2409],[104.8073,-4.2473],[104.8045,-4.2503],[104.7962,-4.2508],[104.7949,-4.254],[104.7956,-4.2607],[104.7906,-4.2644],[104.7867,-4.2599],[104.7743,-4.2514],[104.7687,-4.2496],[104.7644,-4.2452],[104.7558,-4.2458],[104.7433,-4.2518],[104.7379,-4.2563],[104.7258,-4.2572],[104.7169,-4.2635],[104.7121,-4.2573],[104.6836,-4.2585],[104.6782,-4.2598],[104.6661,-4.2593],[104.6626,-4.2614],[104.6587,-4.2591],[104.6571,-4.2508],[104.6493,-4.2461],[104.6396,-4.2434],[104.6247,-4.2433],[104.6223,-4.24],[104.6267,-4.2376],[104.6267,-4.2326],[104.6229,-4.2285],[104.6304,-4.2232],[104.6251,-4.2142],[104.6112,-4.2236],[104.6051,-4.2297],[104.5968,-4.2335],[104.5893,-4.2384],[104.5911,-4.2432],[104.5686,-4.2485],[104.55,-4.2568],[104.5366,-4.26],[104.5371,-4.2642],[104.5303,-4.2644],[104.5255,-4.2676],[104.5148,-4.2791],[104.5109,-4.2787],[104.5,-4.2935],[104.4972,-4.2922],[104.4893,-4.2986],[104.4826,-4.295],[104.4787,-4.2982],[104.4784,-4.3047],[104.4717,-4.3113],[104.4659,-4.3136],[104.4606,-4.3112],[104.4571,-4.3047],[104.4571,-4.3011],[104.4469,-4.2999],[104.4372,-4.3041],[104.4341,-4.3076],[104.4354,-4.315],[104.4247,-4.32],[104.423,-4.3237],[104.4186,-4.3263],[104.4176,-4.3304],[104.4118,-4.3371],[104.3976,-4.3393],[104.3843,-4.3474],[104.3824,-4.3508],[104.3812,-4.3616],[104.3793,-4.3652],[104.3786,-4.3741],[104.3719,-4.3783],[104.3557,-4.3935],[104.3506,-4.397],[104.3472,-4.4074],[104.3442,-4.4121],[104.344,-4.4174],[104.3412,-4.4214],[104.3358,-4.4235],[104.3381,-4.4295],[104.3327,-4.4378],[104.3354,-4.4542],[104.3282,-4.4613],[104.3308,-4.4712],[104.3333,-4.4932],[104.3333,-4.5003],[104.3295,-4.5107],[104.3218,-4.5125],[104.3157,-4.5122],[104.3136,-4.525],[104.3173,-4.5293],[104.317,-4.5385],[104.3241,-4.5464],[104.326,-4.5577],[104.3286,-4.5671],[104.3297,-4.5754],[104.3333,-4.5856],[104.3345,-4.5924],[104.3343,-4.6054],[104.3302,-4.6141],[104.3256,-4.6191],[104.3243,-4.6273],[104.3202,-4.6284],[104.316,-4.6264],[104.3151,-4.6316],[104.3118,-4.6365],[104.3025,-4.6386],[104.3005,-4.644],[104.2965,-4.6483],[104.2944,-4.6569],[104.2969,-4.6626],[104.2962,-4.667],[104.2918,-4.6722],[104.29,-4.6786],[104.2904,-4.6921],[104.2879,-4.6987],[104.2897,-4.7026],[104.2954,-4.7048],[104.3153,-4.6912],[104.3157,-4.6984],[104.3079,-4.6999],[104.3072,-4.7037],[104.2957,-4.7067],[104.2957,-4.7161],[104.3064,-4.7297],[104.3047,-4.7408],[104.3082,-4.7596],[104.3049,-4.7666],[104.3135,-4.7738],[104.3124,-4.7785],[104.3142,-4.7854],[104.3285,-4.8023],[104.3267,-4.8077],[104.3291,-4.8125],[104.3349,-4.8153],[104.3399,-4.8213],[104.3493,-4.8237],[104.3532,-4.8225],[104.3611,-4.8242],[104.3702,-4.822],[104.3592,-4.8391],[104.3583,-4.8451],[104.3477,-4.8556],[104.3405,-4.8648],[104.3435,-4.869],[104.348,-4.8697],[104.3528,-4.8746],[104.3594,-4.87],[104.3654,-4.869],[104.3681,-4.8707],[104.3817,-4.8697],[104.3858,-4.8729],[104.3936,-4.8721],[104.4072,-4.8683],[104.4101,-4.8653],[104.4175,-4.8748],[104.4196,-4.8822],[104.4193,-4.8922],[104.4224,-4.9039],[104.4288,-4.9119],[104.4382,-4.917],[104.4404,-4.9203],[104.437,-4.9294],[104.4374,-4.9362],[104.4412,-4.9393],[104.4434,-4.9449],[104.4594,-4.9401],[104.4659,-4.9345],[104.4725,-4.9325],[104.48,-4.9324],[104.487,-4.9375],[104.4988,-4.9431],[104.5009,-4.955],[104.5061,-4.9484],[104.5072,-4.943],[104.5108,-4.9387],[104.5093,-4.9309],[104.5182,-4.9207],[104.5261,-4.9079],[104.5294,-4.8968],[104.5355,-4.8912],[104.5391,-4.8811],[104.5404,-4.8741],[104.5476,-4.8659],[104.5459,-4.862],[104.5478,-4.8569],[104.5559,-4.8448],[104.5549,-4.8391],[104.5508,-4.837],[104.5507,-4.8302],[104.5612,-4.8305],[104.5755,-4.828],[104.5933,-4.8267],[104.6052,-4.8252],[104.6102,-4.8312],[104.6202,-4.8243],[104.6223,-4.8186],[104.6241,-4.8081],[104.6365,-4.7843],[104.6405,-4.7808],[104.6418,-4.7739],[104.6374,-4.7683],[104.6427,-4.7598],[104.6451,-4.7528],[104.6409,-4.751],[104.6346,-4.7412],[104.6309,-4.7337],[104.6251,-4.7315],[104.6177,-4.7171],[104.6248,-4.714],[104.63,-4.7091],[104.6308,-4.7021],[104.6279,-4.6977],[104.6219,-4.6971],[104.6098,-4.691],[104.6053,-4.685],[104.6131,-4.671],[104.6204,-4.6667],[104.6309,-4.6574],[104.6361,-4.6571],[104.6395,-4.6466],[104.6441,-4.6426],[104.6417,-4.6377],[104.6448,-4.6325],[104.6509,-4.63],[104.6575,-4.6243],[104.6687,-4.6206],[104.6693,-4.6143],[104.6727,-4.6133],[104.6758,-4.6083],[104.6792,-4.6098],[104.685,-4.6055],[104.691,-4.6043],[104.6946,-4.5974],[104.6987,-4.596],[104.6947,-4.591],[104.6963,-4.5815],[104.6988,-4.5821],[104.702,-4.5727],[104.7011,-4.5666],[104.6955,-4.5636],[104.6986,-4.5555],[104.716,-4.5544],[104.7217,-4.5568],[104.7317,-4.5568],[104.7343,-4.5588],[104.7418,-4.5601],[104.75,-4.5636],[104.7659,-4.5782],[104.7745,-4.5759],[104.7796,-4.5838],[104.783,-4.5852],[104.8072,-4.585],[104.8223,-4.5833],[104.8219,-4.5701],[104.8233,-4.5669],[104.8282,-4.5645],[104.8362,-4.5662],[104.8406,-4.5693],[104.8491,-4.564],[104.8609,-4.5596],[104.8654,-4.5517],[104.8742,-4.5441],[104.8852,-4.5418],[104.9011,-4.5481],[104.9056,-4.5523],[104.9121,-4.55],[104.9135,-4.5457],[104.9243,-4.5394],[104.9315,-4.534],[104.9417,-4.5333],[104.9436,-4.5306],[104.9474,-4.5239],[104.9502,-4.5119],[104.9512,-4.4994],[104.9561,-4.4933],[104.9636,-4.4893],[104.9677,-4.4846],[104.9673,-4.4753],[104.9723,-4.4694],[104.9715,-4.4588],[104.9774,-4.4532],[104.9781,-4.4493],[104.9824,-4.447],[104.9902,-4.4546],[104.9976,-4.4557],[105.0008,-4.4622],[105.0081,-4.463],[105.0202,-4.47],[105.0363,-4.47],[105.0443,-4.4709],[105.0529,-4.47],[105.0641,-4.4648],[105.0676,-4.4466],[105.0673,-4.435],[105.0625,-4.4353],[105.0613,-4.4145],[105.056,-4.4144],[105.0527,-4.4114],[105.0498,-4.4039],[105.0446,-4.4065],[105.039,-4.4035],[105.0365,-4.4105],[105.031,-4.407],[105.0253,-4.409],[105.0247,-4.4037],[105.0186,-4.4],[105.019,-4.4096],[105.0144,-4.4101],[105.0129,-4.4046],[104.9967,-4.3985],[104.9862,-4.4036],[104.996,-4.3681],[104.992,-4.3525],[104.9893,-4.3344],[104.9907,-4.3271],[104.9904,-4.3103],[104.9983,-4.3118],[104.994,-4.2936],[104.994,-4.2887],[104.9979,-4.2878],[104.9952,-4.2707],[104.9916,-4.2616],[104.9863,-4.2555],[104.9795,-4.257],[104.9693,-4.2497],[104.9645,-4.248],[104.9592,-4.2426],[104.9478,-4.2348],[104.9421,-4.2299],[104.9332,-4.2137],[104.9304,-4.2049],[104.9292,-4.1925]]}},{"type":"Feature","properties":{"mhid":"1332:137","alt_name":"KABUPATEN TULANGBAWANG","latitude":-4.20604,"longitude":105.57999,"sample_value":619},"geometry":{"type":"LineString","coordinates":[[105.8186,-4.1416],[105.8157,-4.1349],[105.8083,-4.1235],[105.8005,-4.1235],[105.7899,-4.1216],[105.7808,-4.1182],[105.7767,-4.1125],[105.7702,-4.1199],[105.772,-4.1311],[105.7659,-4.1397],[105.753,-4.1471],[105.7516,-4.1545],[105.7547,-4.1609],[105.7576,-4.194],[105.7214,-4.1998],[105.7199,-4.188],[105.6827,-4.191],[105.6828,-4.1928],[105.6691,-4.195],[105.655,-4.1959],[105.6539,-4.2173],[105.6253,-4.2153],[105.6222,-4.2204],[105.607,-4.2189],[105.6067,-4.1993],[105.6017,-4.1928],[105.5989,-4.1914],[105.5868,-4.1897],[105.5753,-4.1855],[105.5736,-4.183],[105.5658,-4.1795],[105.5446,-4.1684],[105.5317,-4.1656],[105.5268,-4.1611],[105.5045,-4.1614],[105.5045,-4.1311],[105.4683,-4.1347],[105.4684,-4.159],[105.4591,-4.1624],[105.4367,-4.1626],[105.4238,-4.1615],[105.4242,-4.1437],[105.4257,-4.1405],[105.4261,-4.1269],[105.4253,-4.1191],[105.4021,-4.1198],[105.3989,-4.1246],[105.3955,-4.1212],[105.3923,-4.1232],[105.3873,-4.1314],[105.3659,-4.1297],[105.3649,-4.1625],[105.3568,-4.161],[105.3182,-4.1602],[105.3121,-4.1591],[105.3086,-4.1627],[105.2779,-4.1893],[105.2475,-4.1904],[105.2374,-4.1923],[105.2269,-4.1834],[105.2307,-4.1888],[105.2257,-4.1895],[105.2241,-4.1958],[105.2248,-4.2009],[105.2233,-4.2075],[105.2171,-4.2133],[105.216,-4.2243],[105.2137,-4.2282],[105.2022,-4.2301],[105.1904,-4.2343],[105.1888,-4.2433],[105.1907,-4.2529],[105.1904,-4.2696],[105.1695,-4.2682],[105.1636,-4.2693],[105.1585,-4.2739],[105.1582,-4.2955],[105.1653,-4.2987],[105.1705,-4.2964],[105.1774,-4.2967],[105.1823,-4.3016],[105.2003,-4.3018],[105.2004,-4.3215],[105.2016,-4.3289],[105.2056,-4.3289],[105.2069,-4.3349],[105.2033,-4.3415],[105.2049,-4.3469],[105.2112,-4.3492],[105.2219,-4.348],[105.2325,-4.3456],[105.2331,-4.3491],[105.2299,-4.3523],[105.2306,-4.3603],[105.2261,-4.3603],[105.2206,-4.3532],[105.2082,-4.3551],[105.2009,-4.3598],[105.2016,-4.3697],[105.2002,-4.372],[105.2047,-4.3805],[105.2167,-4.382],[105.2199,-4.3872],[105.2278,-4.3893],[105.239,-4.3879],[105.2436,-4.3897],[105.242,-4.4096],[105.2475,-4.4195],[105.2526,-4.4185],[105.2567,-4.4225],[105.2556,-4.4253],[105.258,-4.4349],[105.2582,-4.4416],[105.2673,-4.445],[105.2603,-4.4535],[105.2536,-4.47],[105.2487,-4.4726],[105.2424,-4.4715],[105.2388,-4.4603],[105.2334,-4.4625],[105.2307,-4.4611],[105.229,-4.4545],[105.222,-4.4478],[105.2184,-4.4488],[105.2144,-4.4623],[105.2092,-4.4637],[105.2055,-4.4618],[105.2018,-4.4682],[105.1931,-4.4687],[105.1873,-4.4747],[105.1882,-4.4801],[105.1948,-4.4868],[105.1864,-4.4906],[105.1844,-4.4945],[105.1723,-4.4983],[105.1666,-4.501],[105.1632,-4.5046],[105.174,-4.5142],[105.1761,-4.5316],[105.1749,-4.559],[105.1757,-4.563],[105.1833,-4.5723],[105.1975,-4.5745],[105.1984,-4.5836],[105.2033,-4.5836],[105.2003,-4.5986],[105.2004,-4.613],[105.2105,-4.6108],[105.2139,-4.6155],[105.2122,-4.6252],[105.2089,-4.6343],[105.2157,-4.6386],[105.2266,-4.6391],[105.2277,-4.6427],[105.2345,-4.6402],[105.2443,-4.6405],[105.2503,-4.6376],[105.2597,-4.6355],[105.2634,-4.6324],[105.2602,-4.6292],[105.2651,-4.6232],[105.2753,-4.6208],[105.2787,-4.622],[105.2867,-4.6211],[105.2888,-4.6137],[105.2917,-4.6161],[105.3038,-4.6046],[105.304,-4.595],[105.3106,-4.5915],[105.3122,-4.5797],[105.3227,-4.5772],[105.3233,-4.5727],[105.3306,-4.5674],[105.3377,-4.5642],[105.3401,-4.5528],[105.3472,-4.5505],[105.3532,-4.5508],[105.3558,-4.5438],[105.3537,-4.5395],[105.3607,-4.5369],[105.3649,-4.5285],[105.37,-4.5257],[105.3693,-4.5223],[105.3755,-4.522],[105.3822,-4.5162],[105.3867,-4.5178],[105.3917,-4.5152],[105.3956,-4.5154],[105.3993,-4.5112],[105.4101,-4.514],[105.4184,-4.5081],[105.4269,-4.51],[105.4343,-4.5061],[105.4379,-4.5023],[105.4459,-4.5015],[105.4487,-4.4966],[105.4587,-4.4925],[105.464,-4.4969],[105.465,-4.4924],[105.474,-4.492],[105.4739,-4.4958],[105.4786,-4.4966],[105.4826,-4.4917],[105.4925,-4.4827],[105.4971,-4.4948],[105.5054,-4.4954],[105.51,-4.4915],[105.5135,-4.4968],[105.5204,-4.4972],[105.5248,-4.5076],[105.5311,-4.5072],[105.5354,-4.5096],[105.5368,-4.5137],[105.5343,-4.5177],[105.5356,-4.5213],[105.5425,-4.5198],[105.5494,-4.5206],[105.5558,-4.5197],[105.5606,-4.5172],[105.5714,-4.5192],[105.5734,-4.5216],[105.5744,-4.5318],[105.5773,-4.5346],[105.5834,-4.534],[105.5855,-4.5259],[105.5853,-4.5188],[105.5873,-4.5158],[105.5965,-4.5138],[105.6021,-4.5215],[105.6076,-4.5217],[105.6113,-4.5186],[105.6201,-4.5182],[105.6271,-4.5009],[105.6269,-4.4884],[105.6336,-4.4819],[105.6387,-4.4828],[105.6433,-4.4811],[105.6466,-4.4868],[105.6451,-4.4963],[105.6414,-4.5015],[105.6452,-4.5084],[105.6546,-4.5091],[105.658,-4.5072],[105.6612,-4.5005],[105.6694,-4.5006],[105.6727,-4.4976],[105.6755,-4.4855],[105.6814,-4.4851],[105.6937,-4.4909],[105.6981,-4.4967],[105.6978,-4.5065],[105.693,-4.51],[105.6942,-4.5138],[105.7066,-4.5181],[105.7077,-4.5267],[105.7132,-4.531],[105.7189,-4.5314],[105.7242,-4.5278],[105.7269,-4.5301],[105.7281,-4.5363],[105.7314,-4.5373],[105.7397,-4.5348],[105.7448,-4.5303],[105.746,-4.5218],[105.7541,-4.5224],[105.756,-4.5288],[105.7594,-4.5322],[105.766,-4.5287],[105.7699,-4.5285],[105.7736,-4.5324],[105.7737,-4.5373],[105.7677,-4.5424],[105.7684,-4.5472],[105.7717,-4.5534],[105.7845,-4.556],[105.7861,-4.5504],[105.791,-4.55],[105.7997,-4.5598],[105.7999,-4.5703],[105.7958,-4.572],[105.794,-4.5799],[105.8036,-4.5807],[105.8049,-4.5849],[105.8012,-4.5911],[105.7931,-4.5885],[105.7842,-4.5979],[105.7833,-4.6033],[105.7787,-4.6061],[105.7796,-4.6123],[105.7835,-4.6146],[105.7794,-4.6209],[105.782,-4.6252],[105.7813,-4.6323],[105.7911,-4.6357],[105.7999,-4.6445],[105.8027,-4.6521],[105.8089,-4.6535],[105.8166,-4.6496],[105.8277,-4.6405],[105.8309,-4.6323],[105.8321,-4.622],[105.8358,-4.6198],[105.8406,-4.6224],[105.8423,-4.6286],[105.8474,-4.6316],[105.8559,-4.6312],[105.8581,-4.6348],[105.858,-4.6557],[105.8512,-4.669],[105.8516,-4.6744],[105.8548,-4.6777],[105.8684,-4.6824],[105.8758,-4.683],[105.8811,-4.6806],[105.8869,-4.6831],[105.8985,-4.6849],[105.9009,-4.6823],[105.9045,-4.6706],[105.9094,-4.6595],[105.9169,-4.6467],[105.9164,-4.6427],[105.9077,-4.6342],[105.9032,-4.634],[105.902,-4.6283],[105.8954,-4.6254],[105.8909,-4.6191],[105.8878,-4.6123],[105.885,-4.6011],[105.8845,-4.5901],[105.8858,-4.5825],[105.8918,-4.565],[105.8995,-4.5552],[105.9048,-4.5519],[105.9013,-4.5301],[105.8991,-4.513],[105.8986,-4.4994],[105.8992,-4.489],[105.9013,-4.4723],[105.9064,-4.454],[105.9126,-4.4413],[105.9131,-4.437],[105.905,-4.4341],[105.8941,-4.4368],[105.8916,-4.4404],[105.8805,-4.4302],[105.8749,-4.4215],[105.8654,-4.4105],[105.8526,-4.4068],[105.8512,-4.4036],[105.8576,-4.3936],[105.8597,-4.386],[105.8588,-4.3779],[105.8538,-4.372],[105.85,-4.3708],[105.8377,-4.3621],[105.8298,-4.3536],[105.8253,-4.3431],[105.8204,-4.3211],[105.8186,-4.3051],[105.8183,-4.2946],[105.8197,-4.2292],[105.822,-4.2147],[105.8271,-4.1903],[105.827,-4.1868],[105.8227,-4.1762],[105.8193,-4.1621],[105.8214,-4.1583],[105.8186,-4.1416]]}},{"type":"Feature","properties":{"mhid":"1332:138","alt_name":"KABUPATEN PESAWARAN","latitude":-5.4298,"longitude":105.17899,"sample_value":745},"geometry":{"type":"LineString","coordinates":[[105.3182,-5.8232],[105.3111,-5.8266],[105.3137,-5.8302],[105.3219,-5.8282],[105.3182,-5.8232]]}},{"type":"Feature","properties":{"mhid":"1332:138","alt_name":"KABUPATEN PESAWARAN","latitude":-5.4298,"longitude":105.17899,"sample_value":745},"geometry":{"type":"LineString","coordinates":[[105.3475,-5.8215],[105.3435,-5.8157],[105.3417,-5.8216],[105.3475,-5.8215]]}},{"type":"Feature","properties":{"mhid":"1332:138","alt_name":"KABUPATEN PESAWARAN","latitude":-5.4298,"longitude":105.17899,"sample_value":745},"geometry":{"type":"LineString","coordinates":[[105.2913,-5.7982],[105.2821,-5.7989],[105.284,-5.8033],[105.2791,-5.8128],[105.2724,-5.8152],[105.269,-5.8089],[105.2641,-5.8151],[105.2592,-5.8187],[105.2531,-5.821],[105.2457,-5.8165],[105.2425,-5.8212],[105.2329,-5.8268],[105.2346,-5.8346],[105.2487,-5.8328],[105.2556,-5.8335],[105.2575,-5.836],[105.2733,-5.8347],[105.2805,-5.8398],[105.2853,-5.8381],[105.2902,-5.8324],[105.2882,-5.8285],[105.2957,-5.8175],[105.3031,-5.8202],[105.3082,-5.8144],[105.307,-5.8103],[105.301,-5.8048],[105.2975,-5.799],[105.2945,-5.8022],[105.2913,-5.7982]]}},{"type":"Feature","properties":{"mhid":"1332:138","alt_name":"KABUPATEN PESAWARAN","latitude":-5.4298,"longitude":105.17899,"sample_value":745},"geometry":{"type":"LineString","coordinates":[[105.3136,-5.7901],[105.3063,-5.7936],[105.3142,-5.7982],[105.3171,-5.8059],[105.3223,-5.8057],[105.322,-5.8115],[105.3266,-5.8165],[105.3248,-5.821],[105.3284,-5.8225],[105.3328,-5.8204],[105.3298,-5.812],[105.3305,-5.8062],[105.32,-5.801],[105.3172,-5.7952],[105.3178,-5.7908],[105.3136,-5.7901]]}},{"type":"Feature","properties":{"mhid":"1332:138","alt_name":"KABUPATEN PESAWARAN","latitude":-5.4298,"longitude":105.17899,"sample_value":745},"geometry":{"type":"LineString","coordinates":[[105.2158,-5.7289],[105.2073,-5.7298],[105.2047,-5.735],[105.2104,-5.7356],[105.2153,-5.7323],[105.2158,-5.7289]]}},{"type":"Feature","properties":{"mhid":"1332:138","alt_name":"KABUPATEN PESAWARAN","latitude":-5.4298,"longitude":105.17899,"sample_value":745},"geometry":{"type":"LineString","coordinates":[[105.2189,-5.6629],[105.2169,-5.661],[105.2092,-5.6651],[105.2066,-5.6727],[105.2088,-5.6753],[105.2076,-5.6851],[105.217,-5.6847],[105.2153,-5.6886],[105.228,-5.6855],[105.2302,-5.6803],[105.2279,-5.6733],[105.2343,-5.6715],[105.235,-5.6679],[105.2321,-5.6635],[105.2249,-5.662],[105.2189,-5.6629]]}},{"type":"Feature","properties":{"mhid":"1332:138","alt_name":"KABUPATEN PESAWARAN","latitude":-5.4298,"longitude":105.17899,"sample_value":745},"geometry":{"type":"LineString","coordinates":[[105.2238,-5.6169],[105.2131,-5.6221],[105.2121,-5.6239],[105.2135,-5.6348],[105.2198,-5.6373],[105.2302,-5.6354],[105.2339,-5.6404],[105.24,-5.6415],[105.2409,-5.6362],[105.2324,-5.6303],[105.2238,-5.6169]]}},{"type":"Feature","properties":{"mhid":"1332:138","alt_name":"KABUPATEN PESAWARAN","latitude":-5.4298,"longitude":105.17899,"sample_value":745},"geometry":{"type":"LineString","coordinates":[[105.2809,-5.5622],[105.2697,-5.5622],[105.2705,-5.5721],[105.2759,-5.5732],[105.2809,-5.5622]]}},{"type":"Feature","properties":{"mhid":"1332:138","alt_name":"KABUPATEN PESAWARAN","latitude":-5.4298,"longitude":105.17899,"sample_value":745},"geometry":{"type":"LineString","coordinates":[[105.2402,-5.1712],[105.2343,-5.1658],[105.2271,-5.1634],[105.2204,-5.1574],[105.2106,-5.1548],[105.2076,-5.1491],[105.2086,-5.1402],[105.2059,-5.1351],[105.1932,-5.1274],[105.1855,-5.1247],[105.1796,-5.1208],[105.1775,-5.1238],[105.177,-5.1357],[105.1708,-5.1378],[105.1619,-5.1384],[105.1572,-5.1421],[105.1523,-5.1404],[105.1507,-5.1469],[105.1471,-5.1513],[105.1477,-5.1564],[105.1437,-5.1569],[105.1416,-5.1532],[105.1328,-5.1504],[105.1161,-5.1544],[105.1089,-5.1548],[105.0995,-5.1602],[105.0952,-5.1643],[105.0935,-5.1597],[105.0892,-5.1589],[105.091,-5.1519],[105.0987,-5.1409],[105.1,-5.137],[105.0944,-5.1332],[105.0896,-5.1446],[105.0853,-5.1419],[105.0851,-5.1319],[105.0812,-5.1278],[105.0791,-5.1386],[105.0802,-5.1492],[105.0747,-5.1597],[105.0691,-5.1626],[105.0664,-5.1677],[105.0603,-5.1697],[105.056,-5.1746],[105.0524,-5.1838],[105.0414,-5.1983],[105.0379,-5.2092],[105.0517,-5.2069],[105.0664,-5.2155],[105.0649,-5.2224],[105.0654,-5.2366],[105.0615,-5.2434],[105.0555,-5.2438],[105.051,-5.2474],[105.0453,-5.2489],[105.0437,-5.2588],[105.0407,-5.2613],[105.0327,-5.2824],[105.0325,-5.294],[105.0359,-5.3096],[105.0374,-5.32],[105.0435,-5.323],[105.0516,-5.3218],[105.0544,-5.3241],[105.0543,-5.3353],[105.0578,-5.3363],[105.0636,-5.346],[105.062,-5.3584],[105.0712,-5.3604],[105.0735,-5.3639],[105.0737,-5.3715],[105.0681,-5.3727],[105.0653,-5.39],[105.0603,-5.3915],[105.0588,-5.386],[105.0437,-5.3859],[105.0342,-5.3837],[105.0272,-5.3842],[105.022,-5.3882],[105.0172,-5.3883],[105.0166,-5.3921],[105.0061,-5.3872],[105.0005,-5.3909],[104.9942,-5.3971],[104.9896,-5.399],[104.9818,-5.399],[104.9769,-5.4036],[104.9874,-5.4033],[104.9935,-5.4076],[104.9991,-5.4095],[104.9903,-5.4186],[104.9861,-5.4157],[104.9843,-5.4202],[104.9755,-5.421],[104.9706,-5.4249],[104.9628,-5.4272],[104.9522,-5.4272],[104.9479,-5.4357],[104.9451,-5.4374],[104.9434,-5.4447],[104.945,-5.452],[104.9375,-5.4583],[104.9402,-5.4639],[104.9397,-5.4681],[104.9308,-5.4753],[104.9319,-5.4823],[104.9289,-5.4961],[104.9249,-5.5012],[104.9264,-5.5041],[104.937,-5.5139],[104.9372,-5.526],[104.9454,-5.5328],[104.947,-5.5496],[104.9442,-5.5621],[104.9444,-5.569],[104.9514,-5.5756],[104.9616,-5.5793],[104.9716,-5.5858],[104.9797,-5.5864],[104.9867,-5.5904],[104.9929,-5.5912],[105.0021,-5.5964],[105.0105,-5.6027],[105.0177,-5.6122],[105.0268,-5.6169],[105.0419,-5.6326],[105.0466,-5.6392],[105.0548,-5.6449],[105.0628,-5.6557],[105.0684,-5.6589],[105.0758,-5.6662],[105.0767,-5.6728],[105.0855,-5.6725],[105.0936,-5.6734],[105.0929,-5.6784],[105.0944,-5.6888],[105.092,-5.693],[105.0868,-5.7092],[105.0865,-5.7198],[105.0833,-5.7217],[105.0938,-5.7359],[105.0945,-5.7399],[105.099,-5.7484],[105.109,-5.7519],[105.1163,-5.7655],[105.1184,-5.7721],[105.1453,-5.7781],[105.1638,-5.7794],[105.1721,-5.781],[105.1728,-5.7989],[105.1721,-5.8004],[105.1798,-5.8006],[105.1863,-5.8039],[105.1957,-5.801],[105.1933,-5.7979],[105.1964,-5.7886],[105.2022,-5.7858],[105.2101,-5.7842],[105.2131,-5.7878],[105.2197,-5.7897],[105.2199,-5.7817],[105.2111,-5.7702],[105.2055,-5.7665],[105.2038,-5.773],[105.1895,-5.7696],[105.1853,-5.7719],[105.178,-5.7708],[105.1764,-5.7781],[105.1734,-5.778],[105.167,-5.7716],[105.1622,-5.7695],[105.1661,-5.7619],[105.1633,-5.7576],[105.1565,-5.7554],[105.1546,-5.749],[105.161,-5.7415],[105.1711,-5.7372],[105.1728,-5.7308],[105.1764,-5.7244],[105.1804,-5.7212],[105.1845,-5.723],[105.1878,-5.7194],[105.195,-5.7194],[105.1991,-5.7143],[105.2033,-5.7157],[105.2034,-5.722],[105.2101,-5.7249],[105.2159,-5.7225],[105.2186,-5.7181],[105.2134,-5.7073],[105.2036,-5.7078],[105.2055,-5.7037],[105.2001,-5.7031],[105.1953,-5.7049],[105.1925,-5.701],[105.1935,-5.6943],[105.1895,-5.6906],[105.1865,-5.6916],[105.1848,-5.6853],[105.1895,-5.6836],[105.1909,-5.68],[105.1873,-5.6747],[105.1826,-5.6713],[105.1779,-5.6703],[105.1826,-5.6639],[105.1898,-5.6631],[105.1947,-5.658],[105.2064,-5.6535],[105.2089,-5.6483],[105.2056,-5.643],[105.191,-5.6484],[105.1863,-5.6422],[105.1919,-5.636],[105.187,-5.6343],[105.188,-5.6282],[105.1846,-5.6242],[105.1844,-5.6202],[105.1805,-5.6171],[105.1768,-5.6186],[105.1729,-5.6114],[105.167,-5.6063],[105.1672,-5.6007],[105.1723,-5.6],[105.1768,-5.5929],[105.1773,-5.5877],[105.1914,-5.5873],[105.1942,-5.584],[105.2036,-5.5766],[105.2167,-5.5817],[105.225,-5.5872],[105.2357,-5.5916],[105.2399,-5.5865],[105.2442,-5.5879],[105.2452,-5.5775],[105.2476,-5.5716],[105.2411,-5.5712],[105.2386,-5.565],[105.242,-5.5639],[105.2448,-5.5574],[105.2487,-5.5634],[105.2525,-5.5622],[105.2535,-5.5513],[105.2614,-5.5447],[105.2535,-5.5441],[105.2525,-5.547],[105.2447,-5.547],[105.2447,-5.5415],[105.2494,-5.5357],[105.2503,-5.5286],[105.2456,-5.5235],[105.2429,-5.5183],[105.2491,-5.514],[105.255,-5.5258],[105.2601,-5.5208],[105.265,-5.5211],[105.2637,-5.5142],[105.2573,-5.5092],[105.2529,-5.489],[105.2504,-5.4842],[105.2425,-5.4887],[105.2393,-5.492],[105.2341,-5.4899],[105.2297,-5.4852],[105.2331,-5.4807],[105.2324,-5.4768],[105.224,-5.4632],[105.2241,-5.458],[105.2177,-5.4474],[105.214,-5.4473],[105.2113,-5.4436],[105.2059,-5.4419],[105.2048,-5.4348],[105.2062,-5.4321],[105.2043,-5.421],[105.1964,-5.4205],[105.1946,-5.4171],[105.1899,-5.4162],[105.1864,-5.4198],[105.1814,-5.4171],[105.1755,-5.4075],[105.1828,-5.3995],[105.1851,-5.3994],[105.1973,-5.3867],[105.2075,-5.3895],[105.2062,-5.3792],[105.208,-5.3749],[105.2116,-5.3732],[105.2195,-5.3655],[105.2176,-5.3601],[105.2128,-5.3544],[105.2064,-5.353],[105.2019,-5.3481],[105.196,-5.3495],[105.1935,-5.3391],[105.1874,-5.334],[105.1828,-5.3345],[105.1778,-5.328],[105.17,-5.3259],[105.164,-5.3215],[105.1355,-5.3157],[105.1089,-5.3113],[105.1085,-5.3043],[105.1127,-5.2939],[105.1182,-5.2889],[105.1247,-5.289],[105.1254,-5.2856],[105.134,-5.2744],[105.1406,-5.2621],[105.1471,-5.2584],[105.1532,-5.2631],[105.1531,-5.2695],[105.1596,-5.274],[105.1768,-5.2772],[105.1754,-5.2717],[105.1788,-5.2704],[105.1764,-5.2594],[105.1702,-5.2484],[105.1677,-5.246],[105.1664,-5.2381],[105.1615,-5.2294],[105.1612,-5.2145],[105.1625,-5.2103],[105.1738,-5.1976],[105.1855,-5.1979],[105.1892,-5.1924],[105.1975,-5.1903],[105.2014,-5.1874],[105.2022,-5.1804],[105.2101,-5.1802],[105.2402,-5.1712]]}},{"type":"Feature","properties":{"mhid":"1332:139","alt_name":"KABUPATEN PRINGSEWU","latitude":-5.42211,"longitude":104.93454,"sample_value":84},"geometry":{"type":"LineString","coordinates":[[104.7945,-5.171],[104.7826,-5.1669],[104.7795,-5.1643],[104.7751,-5.1704],[104.7635,-5.1817],[104.7617,-5.1909],[104.763,-5.1946],[104.7697,-5.2015],[104.7732,-5.2082],[104.7739,-5.2195],[104.7714,-5.2358],[104.7674,-5.2362],[104.7643,-5.2405],[104.7643,-5.2487],[104.7611,-5.2527],[104.7746,-5.2656],[104.7799,-5.2683],[104.7869,-5.276],[104.7935,-5.2803],[104.7927,-5.2841],[104.7967,-5.2881],[104.7962,-5.2973],[104.7997,-5.3069],[104.8044,-5.3079],[104.8087,-5.3157],[104.8129,-5.3135],[104.8165,-5.3204],[104.8202,-5.3226],[104.8234,-5.3204],[104.8261,-5.3246],[104.8316,-5.3292],[104.8343,-5.3367],[104.8438,-5.3401],[104.8457,-5.3444],[104.8572,-5.3449],[104.8621,-5.3598],[104.8588,-5.3672],[104.8608,-5.3722],[104.8572,-5.376],[104.8642,-5.3812],[104.868,-5.3792],[104.8727,-5.3799],[104.8738,-5.3844],[104.8783,-5.3865],[104.8819,-5.3972],[104.8855,-5.3974],[104.8971,-5.4085],[104.9036,-5.4106],[104.8995,-5.4144],[104.898,-5.4204],[104.8928,-5.4214],[104.8895,-5.4268],[104.8922,-5.4301],[104.9026,-5.4381],[104.9056,-5.4457],[104.9042,-5.4524],[104.9065,-5.4565],[104.9044,-5.4631],[104.8997,-5.469],[104.8952,-5.482],[104.8954,-5.4871],[104.892,-5.4902],[104.8831,-5.4914],[104.8793,-5.4958],[104.8825,-5.5029],[104.8789,-5.5141],[104.8816,-5.5239],[104.8889,-5.5336],[104.8957,-5.5399],[104.893,-5.545],[104.8935,-5.5485],[104.9059,-5.5588],[104.9126,-5.5633],[104.9252,-5.5679],[104.9378,-5.5678],[104.9444,-5.569],[104.9442,-5.5621],[104.947,-5.5496],[104.9454,-5.5328],[104.9372,-5.526],[104.937,-5.5139],[104.9264,-5.5041],[104.9249,-5.5012],[104.9289,-5.4961],[104.9319,-5.4823],[104.9308,-5.4753],[104.9397,-5.4681],[104.9402,-5.4639],[104.9375,-5.4583],[104.945,-5.452],[104.9434,-5.4447],[104.9451,-5.4374],[104.9479,-5.4357],[104.9522,-5.4272],[104.9628,-5.4272],[104.9706,-5.4249],[104.9755,-5.421],[104.9843,-5.4202],[104.9861,-5.4157],[104.9903,-5.4186],[104.9991,-5.4095],[104.9935,-5.4076],[104.9874,-5.4033],[104.9769,-5.4036],[104.9818,-5.399],[104.9896,-5.399],[104.9942,-5.3971],[105.0005,-5.3909],[105.0061,-5.3872],[105.0166,-5.3921],[105.0172,-5.3883],[105.022,-5.3882],[105.0272,-5.3842],[105.0342,-5.3837],[105.0437,-5.3859],[105.0588,-5.386],[105.0603,-5.3915],[105.0653,-5.39],[105.0681,-5.3727],[105.0737,-5.3715],[105.0735,-5.3639],[105.0712,-5.3604],[105.062,-5.3584],[105.0636,-5.346],[105.0578,-5.3363],[105.0543,-5.3353],[105.0544,-5.3241],[105.0516,-5.3218],[105.0435,-5.323],[105.0374,-5.32],[105.0359,-5.3096],[105.0325,-5.294],[105.0327,-5.2824],[105.0407,-5.2613],[105.0437,-5.2588],[105.0453,-5.2489],[105.051,-5.2474],[105.0555,-5.2438],[105.0615,-5.2434],[105.0654,-5.2366],[105.0649,-5.2224],[105.0664,-5.2155],[105.0517,-5.2069],[105.0379,-5.2092],[105.0326,-5.2199],[105.0291,-5.224],[105.0205,-5.2297],[105.0163,-5.2345],[105.0099,-5.2382],[104.9887,-5.2412],[104.9805,-5.2442],[104.9725,-5.2491],[104.97,-5.244],[104.9589,-5.2506],[104.957,-5.2536],[104.9485,-5.2584],[104.949,-5.2606],[104.9373,-5.261],[104.9274,-5.2655],[104.9186,-5.2656],[104.9135,-5.2671],[104.9109,-5.255],[104.9051,-5.2486],[104.898,-5.2431],[104.8838,-5.2508],[104.8688,-5.2326],[104.8678,-5.2219],[104.8609,-5.214],[104.8462,-5.2088],[104.8288,-5.2011],[104.8113,-5.1833],[104.8043,-5.1728],[104.8013,-5.171],[104.7945,-5.171]]}},{"type":"Feature","properties":{"mhid":"1332:140","alt_name":"KABUPATEN MESUJI","latitude":-4.0439,"longitude":105.4013,"sample_value":581},"geometry":{"type":"LineString","coordinates":[[105.753,-4.1471],[105.7469,-4.1496],[105.7415,-4.1465],[105.7345,-4.1379],[105.7274,-4.1345],[105.7137,-4.1416],[105.7082,-4.1431],[105.702,-4.14],[105.6974,-4.1297],[105.6992,-4.123],[105.7065,-4.1171],[105.7103,-4.1122],[105.7086,-4.1063],[105.7002,-4.1044],[105.6898,-4.1041],[105.6839,-4.096],[105.6842,-4.0795],[105.6773,-4.0789],[105.675,-4.0812],[105.6715,-4.0905],[105.6631,-4.0955],[105.6543,-4.091],[105.651,-4.0862],[105.647,-4.0735],[105.6481,-4.0666],[105.6613,-4.0614],[105.6649,-4.0551],[105.6605,-4.0482],[105.6518,-4.0492],[105.6444,-4.0523],[105.6402,-4.0519],[105.631,-4.0448],[105.6254,-4.0435],[105.6225,-4.0458],[105.6219,-4.0565],[105.6183,-4.0613],[105.611,-4.0617],[105.6068,-4.0583],[105.6048,-4.0481],[105.6091,-4.0388],[105.6129,-4.0277],[105.6288,-4.0103],[105.6307,-4.0058],[105.6204,-3.9912],[105.6132,-3.9782],[105.6122,-3.9697],[105.6086,-3.9666],[105.593,-3.9594],[105.5901,-3.9538],[105.5908,-3.9488],[105.6118,-3.9451],[105.6099,-3.9384],[105.5997,-3.9269],[105.5959,-3.9274],[105.5869,-3.9392],[105.5803,-3.9382],[105.5703,-3.9321],[105.563,-3.9289],[105.5623,-3.9262],[105.5708,-3.9092],[105.5736,-3.902],[105.5723,-3.8996],[105.5568,-3.8925],[105.5483,-3.8818],[105.5408,-3.8871],[105.5381,-3.8933],[105.5332,-3.8978],[105.5288,-3.8969],[105.5231,-3.8926],[105.5127,-3.8759],[105.5136,-3.8691],[105.5252,-3.8514],[105.5259,-3.8432],[105.5222,-3.8394],[105.5053,-3.8424],[105.4971,-3.8421],[105.4892,-3.8389],[105.487,-3.8359],[105.4826,-3.8232],[105.4762,-3.8228],[105.4659,-3.8281],[105.4593,-3.8286],[105.4484,-3.8275],[105.4368,-3.8281],[105.4324,-3.8264],[105.4301,-3.8199],[105.4335,-3.8101],[105.4343,-3.7999],[105.4366,-3.7916],[105.4362,-3.7873],[105.4327,-3.7838],[105.421,-3.7789],[105.4128,-3.7774],[105.3902,-3.7795],[105.3841,-3.782],[105.3715,-3.7941],[105.3659,-3.7981],[105.3573,-3.7964],[105.3548,-3.7928],[105.3515,-3.7831],[105.351,-3.7763],[105.3527,-3.7562],[105.3512,-3.7501],[105.3423,-3.7308],[105.3362,-3.7247],[105.3332,-3.7238],[105.3242,-3.7268],[105.3187,-3.7319],[105.3126,-3.7526],[105.308,-3.7591],[105.309,-3.7756],[105.3045,-3.7916],[105.2972,-3.7963],[105.2886,-3.7937],[105.2843,-3.7967],[105.2834,-3.8155],[105.2813,-3.8247],[105.282,-3.8295],[105.2894,-3.8354],[105.2929,-3.8407],[105.2915,-3.8494],[105.285,-3.8576],[105.2778,-3.8758],[105.2744,-3.88],[105.2655,-3.8838],[105.2536,-3.9016],[105.2437,-3.9062],[105.2359,-3.9028],[105.2341,-3.8934],[105.2274,-3.8895],[105.2173,-3.8938],[105.2053,-3.8906],[105.1927,-3.8989],[105.1802,-3.9038],[105.1698,-3.9167],[105.1721,-3.9275],[105.1649,-3.9376],[105.1564,-3.9387],[105.1504,-3.9293],[105.1394,-3.9342],[105.1352,-3.9441],[105.1369,-3.9511],[105.1429,-3.9538],[105.1436,-3.9584],[105.1422,-3.9726],[105.1348,-3.9771],[105.1341,-3.9831],[105.1356,-3.9875],[105.1272,-4.0004],[105.1205,-3.9972],[105.1137,-4.0003],[105.1131,-4.0072],[105.1094,-4.0078],[105.1063,-4.0158],[105.1052,-4.0246],[105.1089,-4.0299],[105.1146,-4.0285],[105.1206,-4.0352],[105.1226,-4.0392],[105.1199,-4.0483],[105.1158,-4.051],[105.1031,-4.045],[105.0985,-4.0447],[105.091,-4.053],[105.0912,-4.0641],[105.0859,-4.0653],[105.0835,-4.0727],[105.0794,-4.0789],[105.0781,-4.0854],[105.0621,-4.0982],[105.0638,-4.1035],[105.0621,-4.1069],[105.0656,-4.1202],[105.0627,-4.1254],[105.0532,-4.1333],[105.05,-4.1413],[105.0624,-4.1508],[105.0642,-4.1572],[105.0607,-4.1595],[105.0687,-4.166],[105.0734,-4.175],[105.071,-4.1843],[105.0642,-4.2059],[105.0662,-4.2073],[105.0669,-4.2162],[105.0689,-4.2179],[105.0784,-4.2179],[105.0858,-4.22],[105.0876,-4.2148],[105.0875,-4.209],[105.0958,-4.2057],[105.1109,-4.2037],[105.1077,-4.2077],[105.1077,-4.2239],[105.1308,-4.211],[105.1347,-4.2196],[105.1392,-4.2239],[105.1441,-4.2225],[105.1424,-4.2182],[105.144,-4.2013],[105.1475,-4.2013],[105.1619,-4.1975],[105.1734,-4.1903],[105.1802,-4.1876],[105.1864,-4.1874],[105.1918,-4.182],[105.1956,-4.1756],[105.2042,-4.17],[105.2101,-4.1704],[105.2185,-4.1777],[105.2269,-4.1834],[105.2374,-4.1923],[105.2475,-4.1904],[105.2779,-4.1893],[105.3086,-4.1627],[105.3121,-4.1591],[105.3182,-4.1602],[105.3568,-4.161],[105.3649,-4.1625],[105.3659,-4.1297],[105.3873,-4.1314],[105.3923,-4.1232],[105.3955,-4.1212],[105.3989,-4.1246],[105.4021,-4.1198],[105.4253,-4.1191],[105.4261,-4.1269],[105.4257,-4.1405],[105.4242,-4.1437],[105.4238,-4.1615],[105.4367,-4.1626],[105.4591,-4.1624],[105.4684,-4.159],[105.4683,-4.1347],[105.5045,-4.1311],[105.5045,-4.1614],[105.5268,-4.1611],[105.5317,-4.1656],[105.5446,-4.1684],[105.5658,-4.1795],[105.5736,-4.183],[105.5753,-4.1855],[105.5868,-4.1897],[105.5989,-4.1914],[105.6017,-4.1928],[105.6067,-4.1993],[105.607,-4.2189],[105.6222,-4.2204],[105.6253,-4.2153],[105.6539,-4.2173],[105.655,-4.1959],[105.6691,-4.195],[105.6828,-4.1928],[105.6827,-4.191],[105.7199,-4.188],[105.7214,-4.1998],[105.7576,-4.194],[105.7547,-4.1609],[105.7516,-4.1545],[105.753,-4.1471]]}},{"type":"Feature","properties":{"mhid":"1332:141","alt_name":"KABUPATEN TULANG BAWANG BARAT","latitude":-4.43975,"longitude":105.0444,"sample_value":82},"geometry":{"type":"LineString","coordinates":[[104.9292,-4.1925],[104.9304,-4.2049],[104.9332,-4.2137],[104.9421,-4.2299],[104.9478,-4.2348],[104.9592,-4.2426],[104.9645,-4.248],[104.9693,-4.2497],[104.9795,-4.257],[104.9863,-4.2555],[104.9916,-4.2616],[104.9952,-4.2707],[104.9979,-4.2878],[104.994,-4.2887],[104.994,-4.2936],[104.9983,-4.3118],[104.9904,-4.3103],[104.9907,-4.3271],[104.9893,-4.3344],[104.992,-4.3525],[104.996,-4.3681],[104.9862,-4.4036],[104.9967,-4.3985],[105.0129,-4.4046],[105.0144,-4.4101],[105.019,-4.4096],[105.0186,-4.4],[105.0247,-4.4037],[105.0253,-4.409],[105.031,-4.407],[105.0365,-4.4105],[105.039,-4.4035],[105.0446,-4.4065],[105.0498,-4.4039],[105.0527,-4.4114],[105.056,-4.4144],[105.0613,-4.4145],[105.0625,-4.4353],[105.0673,-4.435],[105.0676,-4.4466],[105.0641,-4.4648],[105.0529,-4.47],[105.0443,-4.4709],[105.0363,-4.47],[105.0202,-4.47],[105.0081,-4.463],[105.0008,-4.4622],[104.9976,-4.4557],[104.9902,-4.4546],[104.9824,-4.447],[104.9781,-4.4493],[104.9774,-4.4532],[104.9715,-4.4588],[104.9723,-4.4694],[104.9673,-4.4753],[104.9677,-4.4846],[104.9636,-4.4893],[104.9561,-4.4933],[104.9512,-4.4994],[104.9502,-4.5119],[104.9474,-4.5239],[104.9436,-4.5306],[104.9527,-4.5286],[104.9571,-4.5313],[104.9673,-4.5279],[104.971,-4.5338],[104.9722,-4.5446],[104.9751,-4.5506],[104.9833,-4.556],[104.9865,-4.5607],[104.9878,-4.5736],[104.9914,-4.5768],[104.994,-4.5842],[104.9922,-4.5877],[104.9859,-4.5919],[104.9897,-4.5947],[104.9901,-4.5983],[104.9977,-4.6068],[104.9953,-4.6127],[104.997,-4.6259],[104.999,-4.6331],[104.9981,-4.6511],[104.9995,-4.6599],[105.0039,-4.6623],[105.0091,-4.6591],[105.0126,-4.66],[105.0274,-4.6678],[105.035,-4.6683],[105.0393,-4.6725],[105.0539,-4.6926],[105.0659,-4.6966],[105.0686,-4.7076],[105.0782,-4.7074],[105.0795,-4.7113],[105.1017,-4.7131],[105.1173,-4.7203],[105.1197,-4.7201],[105.127,-4.7273],[105.1382,-4.7151],[105.143,-4.7047],[105.141,-4.6967],[105.1418,-4.6906],[105.1376,-4.6851],[105.1398,-4.6787],[105.1448,-4.6763],[105.1551,-4.6773],[105.1606,-4.6697],[105.1665,-4.6574],[105.1743,-4.6448],[105.1803,-4.6398],[105.1773,-4.6353],[105.1764,-4.6205],[105.1814,-4.6156],[105.1962,-4.6143],[105.2004,-4.613],[105.2003,-4.5986],[105.2033,-4.5836],[105.1984,-4.5836],[105.1975,-4.5745],[105.1833,-4.5723],[105.1757,-4.563],[105.1749,-4.559],[105.1761,-4.5316],[105.174,-4.5142],[105.1632,-4.5046],[105.1666,-4.501],[105.1723,-4.4983],[105.1844,-4.4945],[105.1864,-4.4906],[105.1948,-4.4868],[105.1882,-4.4801],[105.1873,-4.4747],[105.1931,-4.4687],[105.2018,-4.4682],[105.2055,-4.4618],[105.2092,-4.4637],[105.2144,-4.4623],[105.2184,-4.4488],[105.222,-4.4478],[105.229,-4.4545],[105.2307,-4.4611],[105.2334,-4.4625],[105.2388,-4.4603],[105.2424,-4.4715],[105.2487,-4.4726],[105.2536,-4.47],[105.2603,-4.4535],[105.2673,-4.445],[105.2582,-4.4416],[105.258,-4.4349],[105.2556,-4.4253],[105.2567,-4.4225],[105.2526,-4.4185],[105.2475,-4.4195],[105.242,-4.4096],[105.2436,-4.3897],[105.239,-4.3879],[105.2278,-4.3893],[105.2199,-4.3872],[105.2167,-4.382],[105.2047,-4.3805],[105.2002,-4.372],[105.2016,-4.3697],[105.2009,-4.3598],[105.2082,-4.3551],[105.2206,-4.3532],[105.2261,-4.3603],[105.2306,-4.3603],[105.2299,-4.3523],[105.2331,-4.3491],[105.2325,-4.3456],[105.2219,-4.348],[105.2112,-4.3492],[105.2049,-4.3469],[105.2033,-4.3415],[105.2069,-4.3349],[105.2056,-4.3289],[105.2016,-4.3289],[105.2004,-4.3215],[105.2003,-4.3018],[105.1823,-4.3016],[105.1774,-4.2967],[105.1705,-4.2964],[105.1653,-4.2987],[105.1582,-4.2955],[105.1585,-4.2739],[105.1636,-4.2693],[105.1695,-4.2682],[105.1904,-4.2696],[105.1907,-4.2529],[105.1888,-4.2433],[105.1904,-4.2343],[105.2022,-4.2301],[105.2137,-4.2282],[105.216,-4.2243],[105.2171,-4.2133],[105.2233,-4.2075],[105.2248,-4.2009],[105.2241,-4.1958],[105.2257,-4.1895],[105.2307,-4.1888],[105.2269,-4.1834],[105.2185,-4.1777],[105.2101,-4.1704],[105.2042,-4.17],[105.1956,-4.1756],[105.1918,-4.182],[105.1864,-4.1874],[105.1802,-4.1876],[105.1734,-4.1903],[105.1619,-4.1975],[105.1475,-4.2013],[105.144,-4.2013],[105.1424,-4.2182],[105.1441,-4.2225],[105.1392,-4.2239],[105.1347,-4.2196],[105.1308,-4.211],[105.1077,-4.2239],[105.1077,-4.2077],[105.1109,-4.2037],[105.0958,-4.2057],[105.0875,-4.209],[105.0876,-4.2148],[105.0858,-4.22],[105.0784,-4.2179],[105.0689,-4.2179],[105.0669,-4.2162],[105.0662,-4.2073],[105.0642,-4.2059],[105.071,-4.1843],[105.0734,-4.175],[105.0687,-4.166],[105.0607,-4.1595],[105.0642,-4.1572],[105.0624,-4.1508],[105.05,-4.1413],[105.0426,-4.1385],[105.0353,-4.1402],[105.0269,-4.1465],[105.0246,-4.1563],[105.0212,-4.1582],[105.021,-4.1658],[105.0131,-4.1737],[105.0029,-4.1772],[104.9962,-4.1752],[104.9834,-4.1739],[104.9785,-4.1717],[104.9673,-4.1718],[104.9638,-4.1748],[104.9496,-4.1815],[104.9459,-4.1922],[104.9406,-4.1902],[104.9344,-4.1924],[104.9292,-4.1925]]}},{"type":"Feature","properties":{"mhid":"1332:142","alt_name":"KABUPATEN PESISIR BARAT","latitude":-5.19323,"longitude":103.93976,"sample_value":628},"geometry":{"type":"LineString","coordinates":[[103.8507,-5.1258],[103.8539,-5.1198],[103.8518,-5.1151],[103.8477,-5.1155],[103.8393,-5.1195],[103.8389,-5.1223],[103.8469,-5.1261],[103.8507,-5.1258]]}},{"type":"Feature","properties":{"mhid":"1332:142","alt_name":"KABUPATEN PESISIR BARAT","latitude":-5.19323,"longitude":103.93976,"sample_value":628},"geometry":{"type":"LineString","coordinates":[[103.8662,-4.8721],[103.8653,-4.8682],[103.8663,-4.8482],[103.8637,-4.8441],[103.854,-4.8353],[103.8487,-4.8274],[103.8401,-4.8216],[103.8237,-4.8208],[103.8227,-4.8175],[103.8228,-4.8066],[103.8258,-4.8013],[103.8094,-4.7938],[103.8022,-4.7924],[103.7895,-4.794],[103.7868,-4.7927],[103.7825,-4.7957],[103.779,-4.795],[103.7766,-4.7893],[103.7767,-4.7814],[103.7739,-4.7733],[103.7675,-4.7726],[103.7614,-4.7751],[103.7571,-4.7756],[103.7503,-4.7794],[103.7424,-4.7796],[103.7384,-4.7857],[103.7313,-4.7866],[103.7284,-4.7921],[103.718,-4.7936],[103.712,-4.8057],[103.7089,-4.8076],[103.7082,-4.8142],[103.703,-4.8191],[103.6883,-4.8265],[103.6844,-4.8295],[103.6789,-4.8309],[103.6768,-4.8357],[103.6678,-4.839],[103.6636,-4.8384],[103.6568,-4.8437],[103.6544,-4.8486],[103.6498,-4.8482],[103.6445,-4.8516],[103.6365,-4.8493],[103.634,-4.8531],[103.6234,-4.8595],[103.6227,-4.8646],[103.6158,-4.87],[103.6086,-4.87],[103.602,-4.8678],[103.5966,-4.8764],[103.5956,-4.882],[103.5919,-4.8849],[103.594,-4.8913],[103.5898,-4.9],[103.5796,-4.9108],[103.5713,-4.9261],[103.5805,-4.9254],[103.5843,-4.9239],[103.596,-4.9242],[103.6245,-4.9276],[103.6288,-4.9306],[103.6399,-4.9333],[103.6419,-4.9373],[103.6438,-4.944],[103.6473,-4.9479],[103.6531,-4.9509],[103.6569,-4.956],[103.6592,-4.9647],[103.6555,-4.9715],[103.6525,-4.9738],[103.6526,-4.9864],[103.6603,-4.9907],[103.666,-4.9918],[103.6703,-4.9905],[103.6737,-4.9838],[103.6831,-4.9728],[103.6863,-4.9668],[103.698,-4.9605],[103.7097,-4.9612],[103.7163,-4.9679],[103.7186,-4.9682],[103.7266,-4.9743],[103.7388,-4.9812],[103.7466,-4.9903],[103.7485,-4.998],[103.7481,-5.0044],[103.7454,-5.007],[103.7492,-5.0126],[103.7484,-5.0171],[103.7417,-5.0205],[103.7388,-5.0236],[103.7461,-5.0419],[103.7514,-5.0462],[103.7561,-5.0469],[103.7641,-5.0443],[103.7684,-5.0412],[103.7694,-5.0339],[103.7729,-5.0298],[103.7828,-5.0319],[103.7871,-5.0343],[103.7878,-5.0403],[103.7918,-5.0449],[103.7966,-5.0452],[103.8057,-5.0489],[103.815,-5.0512],[103.8267,-5.0584],[103.8382,-5.0669],[103.8433,-5.0758],[103.8437,-5.0826],[103.852,-5.092],[103.8542,-5.0986],[103.8632,-5.1018],[103.8671,-5.1107],[103.8765,-5.1128],[103.8813,-5.1126],[103.8865,-5.1175],[103.8941,-5.1163],[103.9001,-5.1217],[103.9123,-5.1281],[103.9198,-5.1376],[103.9305,-5.1497],[103.9347,-5.1605],[103.937,-5.1728],[103.9346,-5.1831],[103.9301,-5.1923],[103.9196,-5.2037],[103.9066,-5.2082],[103.9034,-5.2115],[103.9015,-5.2228],[103.9048,-5.23],[103.9143,-5.2372],[103.9206,-5.2339],[103.9403,-5.2356],[103.9546,-5.244],[103.9682,-5.2492],[103.9772,-5.2518],[103.987,-5.257],[104.0027,-5.2739],[104.0074,-5.2818],[104.0084,-5.2925],[104.0013,-5.2998],[104.001,-5.302],[103.9923,-5.3099],[103.9965,-5.3201],[104.006,-5.3255],[104.0136,-5.3252],[104.0203,-5.3282],[104.0275,-5.334],[104.031,-5.3395],[104.032,-5.3453],[104.0281,-5.3497],[104.0262,-5.3572],[104.0306,-5.3639],[104.0428,-5.3683],[104.047,-5.3718],[104.0547,-5.3756],[104.063,-5.3894],[104.0637,-5.3941],[104.0685,-5.3988],[104.0691,-5.4077],[104.0758,-5.4075],[104.0913,-5.4162],[104.1084,-5.4291],[104.1076,-5.4319],[104.1113,-5.4373],[104.112,-5.4465],[104.1207,-5.4574],[104.1294,-5.4598],[104.1489,-5.4677],[104.1648,-5.4762],[104.1771,-5.4813],[104.1902,-5.49],[104.2115,-5.5073],[104.2147,-5.512],[104.2145,-5.5259],[104.2192,-5.5249],[104.2378,-5.5318],[104.2388,-5.5335],[104.2561,-5.5428],[104.2717,-5.5519],[104.2874,-5.5654],[104.2974,-5.5757],[104.2992,-5.5751],[104.3119,-5.5911],[104.3185,-5.6031],[104.3208,-5.6141],[104.3187,-5.624],[104.3141,-5.6297],[104.3081,-5.6335],[104.2983,-5.6355],[104.301,-5.6408],[104.3068,-5.6429],[104.3267,-5.6543],[104.3459,-5.6621],[104.3478,-5.6639],[104.3655,-5.6722],[104.3801,-5.6798],[104.3838,-5.6846],[104.4076,-5.7013],[104.4214,-5.7124],[104.4235,-5.7177],[104.4234,-5.724],[104.4209,-5.7252],[104.438,-5.7407],[104.4445,-5.7455],[104.4481,-5.7507],[104.4482,-5.756],[104.4531,-5.7642],[104.4579,-5.7669],[104.4723,-5.7795],[104.4828,-5.7898],[104.4886,-5.7993],[104.4977,-5.8072],[104.5069,-5.8135],[104.518,-5.8235],[104.5391,-5.8385],[104.5566,-5.8569],[104.5653,-5.8672],[104.5708,-5.8751],[104.5763,-5.8923],[104.5765,-5.8985],[104.5739,-5.9072],[104.5689,-5.9133],[104.5602,-5.9145],[104.5593,-5.9082],[104.5539,-5.91],[104.5526,-5.9193],[104.5549,-5.9259],[104.5603,-5.928],[104.5662,-5.9269],[104.5678,-5.9311],[104.5799,-5.9387],[104.5833,-5.9428],[104.5874,-5.9427],[104.592,-5.9379],[104.6112,-5.9379],[104.6287,-5.9386],[104.6429,-5.9386],[104.659,-5.9368],[104.6566,-5.9353],[104.6591,-5.9298],[104.656,-5.9257],[104.6561,-5.9202],[104.6597,-5.9175],[104.6584,-5.9114],[104.6549,-5.906],[104.6575,-5.9],[104.6524,-5.8962],[104.6485,-5.8883],[104.6474,-5.8829],[104.6442,-5.883],[104.6435,-5.8774],[104.6384,-5.8606],[104.6408,-5.8526],[104.6355,-5.8458],[104.6345,-5.8385],[104.6385,-5.836],[104.6392,-5.8277],[104.6426,-5.8245],[104.654,-5.8216],[104.6439,-5.8116],[104.6371,-5.8091],[104.6322,-5.8032],[104.628,-5.8014],[104.6189,-5.8024],[104.6103,-5.7925],[104.6078,-5.7867],[104.604,-5.7845],[104.6005,-5.7761],[104.5942,-5.7708],[104.5917,-5.7625],[104.588,-5.757],[104.5883,-5.7511],[104.5936,-5.7506],[104.5985,-5.7533],[104.6085,-5.7518],[104.6134,-5.7485],[104.6144,-5.7416],[104.6122,-5.7349],[104.6146,-5.7255],[104.612,-5.7224],[104.6116,-5.717],[104.6162,-5.707],[104.6217,-5.7012],[104.6284,-5.6986],[104.6297,-5.6956],[104.6248,-5.6901],[104.6231,-5.685],[104.6155,-5.6797],[104.6114,-5.6751],[104.6092,-5.6698],[104.6045,-5.6647],[104.599,-5.6627],[104.5894,-5.6565],[104.5839,-5.6478],[104.5833,-5.6391],[104.5764,-5.6347],[104.5706,-5.6256],[104.5591,-5.6242],[104.5515,-5.6216],[104.5486,-5.6164],[104.5369,-5.6232],[104.5322,-5.6194],[104.53,-5.6126],[104.5376,-5.6063],[104.5396,-5.602],[104.5351,-5.5959],[104.5286,-5.5919],[104.52,-5.5892],[104.5171,-5.5859],[104.5099,-5.5857],[104.5091,-5.5743],[104.5,-5.5685],[104.4876,-5.5578],[104.4861,-5.5545],[104.4877,-5.5466],[104.4826,-5.5435],[104.4736,-5.5345],[104.4685,-5.5335],[104.4553,-5.5286],[104.4531,-5.5222],[104.4505,-5.5206],[104.4418,-5.5231],[104.4314,-5.5106],[104.4316,-5.5001],[104.4266,-5.4944],[104.4211,-5.4906],[104.4142,-5.4827],[104.4131,-5.4752],[104.4141,-5.4633],[104.4091,-5.4531],[104.3966,-5.4381],[104.3821,-5.4237],[104.3748,-5.412],[104.3622,-5.3997],[104.3539,-5.3882],[104.3518,-5.3852],[104.3405,-5.3748],[104.3331,-5.371],[104.3333,-5.361],[104.3268,-5.3541],[104.3197,-5.3502],[104.3145,-5.3453],[104.3094,-5.337],[104.3012,-5.3269],[104.2946,-5.3204],[104.2865,-5.3144],[104.2795,-5.3034],[104.2764,-5.296],[104.2615,-5.2828],[104.2585,-5.2761],[104.2537,-5.2589],[104.2476,-5.2533],[104.2438,-5.2465],[104.2306,-5.2288],[104.2227,-5.2193],[104.2152,-5.2121],[104.2039,-5.2032],[104.2006,-5.2021],[104.1741,-5.1986],[104.1447,-5.1909],[104.1301,-5.1813],[104.1209,-5.1739],[104.1089,-5.1623],[104.0974,-5.1547],[104.0882,-5.1466],[104.0836,-5.141],[104.0793,-5.1286],[104.0831,-5.1159],[104.0795,-5.1093],[104.0583,-5.0921],[104.0436,-5.091],[104.0369,-5.0857],[104.0344,-5.0843],[104.0274,-5.0847],[104.0204,-5.0898],[104.0168,-5.093],[104.0114,-5.0857],[104.0088,-5.0821],[104.0128,-5.0749],[104.0174,-5.07],[104.0189,-5.0531],[104.0218,-5.0496],[104.0227,-5.0438],[104.0182,-5.0335],[104.0121,-5.0245],[104.0033,-5.0199],[103.9958,-5.0159],[103.9839,-5.0034],[103.9766,-4.9997],[103.9701,-4.9931],[103.9631,-4.9906],[103.9538,-4.9832],[103.9469,-4.982],[103.939,-4.9768],[103.9316,-4.9828],[103.9214,-4.9757],[103.8959,-4.967],[103.8897,-4.9604],[103.8828,-4.9613],[103.8728,-4.9649],[103.8644,-4.9574],[103.8588,-4.9499],[103.8602,-4.9464],[103.8582,-4.9419],[103.8525,-4.9412],[103.8424,-4.9243],[103.8373,-4.9178],[103.8271,-4.9139],[103.8201,-4.9062],[103.8189,-4.8909],[103.8179,-4.8752],[103.8547,-4.8776],[103.8647,-4.8802],[103.8662,-4.8721]]}},{"type":"Feature","properties":{"mhid":"1332:143","alt_name":"KOTA BANDAR LAMPUNG","latitude":-5.41667,"longitude":105.25,"sample_value":282},"geometry":{"type":"LineString","coordinates":[[105.3471,-5.5219],[105.3594,-5.5145],[105.3506,-5.4989],[105.3411,-5.4942],[105.3394,-5.49],[105.3315,-5.4797],[105.3292,-5.4665],[105.3276,-5.4505],[105.3308,-5.4485],[105.3361,-5.4382],[105.339,-5.4359],[105.342,-5.4196],[105.3393,-5.4128],[105.3354,-5.4072],[105.3248,-5.4069],[105.3249,-5.3968],[105.3217,-5.3959],[105.3217,-5.3887],[105.3156,-5.3878],[105.317,-5.382],[105.3156,-5.3757],[105.3084,-5.3747],[105.3081,-5.3613],[105.3039,-5.3599],[105.2927,-5.3678],[105.2913,-5.3656],[105.2905,-5.3554],[105.2947,-5.3494],[105.2893,-5.3491],[105.2859,-5.3445],[105.2806,-5.3442],[105.2788,-5.3517],[105.2751,-5.3556],[105.267,-5.3554],[105.2642,-5.3529],[105.2662,-5.3478],[105.2632,-5.3383],[105.2532,-5.3353],[105.2503,-5.3386],[105.2429,-5.3428],[105.2417,-5.3474],[105.2365,-5.349],[105.2361,-5.3548],[105.2258,-5.3618],[105.2245,-5.3659],[105.2195,-5.3655],[105.2116,-5.3732],[105.208,-5.3749],[105.2062,-5.3792],[105.2075,-5.3895],[105.1973,-5.3867],[105.1851,-5.3994],[105.1828,-5.3995],[105.1755,-5.4075],[105.1814,-5.4171],[105.1864,-5.4198],[105.1899,-5.4162],[105.1946,-5.4171],[105.1964,-5.4205],[105.2043,-5.421],[105.2062,-5.4321],[105.2048,-5.4348],[105.2059,-5.4419],[105.2113,-5.4436],[105.214,-5.4473],[105.2177,-5.4474],[105.2241,-5.458],[105.224,-5.4632],[105.2324,-5.4768],[105.2331,-5.4807],[105.2297,-5.4852],[105.2341,-5.4899],[105.2393,-5.492],[105.2425,-5.4887],[105.2504,-5.4842],[105.2529,-5.489],[105.2535,-5.4812],[105.2504,-5.4715],[105.2528,-5.4684],[105.2548,-5.4612],[105.2616,-5.4585],[105.268,-5.4533],[105.2705,-5.4488],[105.277,-5.4471],[105.2817,-5.4476],[105.2898,-5.445],[105.2971,-5.4491],[105.3038,-5.4508],[105.3102,-5.4567],[105.3165,-5.4672],[105.3201,-5.4692],[105.3163,-5.4769],[105.3235,-5.4839],[105.3254,-5.4906],[105.3241,-5.4992],[105.3268,-5.4997],[105.3315,-5.505],[105.3349,-5.5055],[105.3377,-5.5096],[105.3426,-5.5127],[105.3471,-5.5219]]}},{"type":"Feature","properties":{"mhid":"1332:144","alt_name":"KOTA METRO","latitude":-5.11856,"longitude":105.29949,"sample_value":602},"geometry":{"type":"LineString","coordinates":[[105.2761,-5.18],[105.2823,-5.1778],[105.2854,-5.1816],[105.2916,-5.1813],[105.2958,-5.1851],[105.3017,-5.183],[105.3024,-5.1791],[105.3105,-5.1798],[105.318,-5.1759],[105.3203,-5.1724],[105.3254,-5.1717],[105.3308,-5.1678],[105.327,-5.1607],[105.3337,-5.1531],[105.3314,-5.1482],[105.3307,-5.139],[105.3248,-5.1365],[105.3252,-5.1282],[105.3288,-5.1187],[105.3339,-5.1117],[105.3365,-5.1118],[105.3395,-5.1065],[105.3435,-5.1076],[105.3481,-5.1035],[105.3439,-5.0984],[105.3328,-5.0924],[105.3336,-5.0884],[105.3416,-5.0843],[105.3493,-5.0791],[105.3518,-5.0744],[105.3561,-5.0708],[105.3581,-5.0656],[105.3532,-5.0631],[105.3474,-5.0666],[105.3464,-5.0715],[105.3382,-5.0718],[105.3312,-5.0701],[105.3234,-5.0726],[105.3201,-5.0759],[105.3163,-5.0756],[105.3166,-5.0707],[105.3107,-5.0691],[105.3121,-5.065],[105.3181,-5.0614],[105.3212,-5.0561],[105.3203,-5.0532],[105.3061,-5.0573],[105.3041,-5.0629],[105.3009,-5.0648],[105.2958,-5.0731],[105.289,-5.0786],[105.2802,-5.0842],[105.2784,-5.0927],[105.2695,-5.0968],[105.269,-5.1025],[105.2735,-5.107],[105.2838,-5.1039],[105.2898,-5.1086],[105.2844,-5.1204],[105.2786,-5.1239],[105.2785,-5.1288],[105.2738,-5.1327],[105.2754,-5.1367],[105.2711,-5.141],[105.2751,-5.1452],[105.2712,-5.1477],[105.2685,-5.1526],[105.2624,-5.1589],[105.2688,-5.1587],[105.2757,-5.1605],[105.2748,-5.1656],[105.2778,-5.1684],[105.2751,-5.1737],[105.2761,-5.18]]}},{"type":"Feature","properties":{"mhid":"1332:251","alt_name":"KABUPATEN MOJOKERTO","latitude":-7.55,"longitude":112.5,"sample_value":203},"geometry":{"type":"MultiLineString","coordinates":[[[112.4937,-7.4092],[112.4921,-7.3991],[112.4829,-7.3978],[112.4764,-7.3818],[112.4758,-7.3713],[112.4788,-7.3657],[112.4772,-7.3541],[112.479,-7.3494],[112.4847,-7.3409],[112.4845,-7.3368],[112.4798,-7.3293],[112.4787,-7.3091],[112.4774,-7.3057],[112.4717,-7.3049],[112.4678,-7.3065],[112.4623,-7.3124],[112.4521,-7.3098],[112.4443,-7.305],[112.4403,-7.3141],[112.436,-7.3148],[112.426,-7.3124],[112.417,-7.3128],[112.419,-7.3168],[112.4098,-7.3176],[112.402,-7.3223],[112.4014,-7.3257],[112.394,-7.3275],[112.3913,-7.3334],[112.3683,-7.3247],[112.3664,-7.3263],[112.3584,-7.3265],[112.3576,-7.3311],[112.3528,-7.3333],[112.3464,-7.3406],[112.3457,-7.345],[112.3425,-7.3476],[112.3445,-7.3541],[112.337,-7.3613],[112.3352,-7.3702],[112.3364,-7.3784],[112.3441,-7.3935],[112.3483,-7.3987],[112.3464,-7.4201],[112.342,-7.4292],[112.3412,-7.4361],[112.3476,-7.437],[112.346,-7.4415],[112.3408,-7.4407],[112.3379,-7.4474],[112.3343,-7.447],[112.3328,-7.4524],[112.3412,-7.4596],[112.3497,-7.4549],[112.3582,-7.4576],[112.3688,-7.4565],[112.3775,-7.4585],[112.3868,-7.4587],[112.3987,-7.4578],[112.402,-7.4594],[112.3997,-7.4648],[112.3927,-7.4673],[112.3905,-7.47],[112.3901,-7.4788],[112.3844,-7.4786],[112.3765,-7.483],[112.3741,-7.4872],[112.3746,-7.4935],[112.3767,-7.4977],[112.3737,-7.5254],[112.3671,-7.5243],[112.3699,-7.5299],[112.3684,-7.5437],[112.3654,-7.5433],[112.3637,-7.5526],[112.3669,-7.5539],[112.3696,-7.5595],[112.3749,-7.5631],[112.3716,-7.5708],[112.373,-7.5757],[112.3767,-7.5763],[112.3756,-7.5838],[112.3708,-7.584],[112.3763,-7.5915],[112.3816,-7.5949],[112.3858,-7.6041],[112.3899,-7.6097],[112.4039,-7.6229],[112.405,-7.6378],[112.4105,-7.646],[112.4104,-7.6529],[112.4121,-7.6577],[112.4109,-7.6635],[112.4117,-7.6735],[112.4156,-7.6803],[112.4218,-7.6853],[112.4239,-7.6916],[112.4303,-7.6997],[112.4328,-7.7068],[112.4332,-7.7148],[112.4386,-7.7329],[112.4475,-7.7412],[112.4463,-7.7463],[112.4485,-7.7533],[112.4468,-7.7591],[112.45,-7.7705],[112.4558,-7.7791],[112.4608,-7.7702],[112.4647,-7.7681],[112.4742,-7.7671],[112.4782,-7.7689],[112.4873,-7.7657],[112.5006,-7.7625],[112.5029,-7.7558],[112.5074,-7.755],[112.5134,-7.7512],[112.5148,-7.7419],[112.522,-7.7382],[112.5292,-7.7365],[112.5333,-7.7254],[112.5401,-7.7258],[112.549,-7.7304],[112.5645,-7.7333],[112.5745,-7.7339],[112.5844,-7.7227],[112.5894,-7.7138],[112.5936,-7.7011],[112.6023,-7.6898],[112.6101,-7.6863],[112.6147,-7.6813],[112.62,-7.6711],[112.6236,-7.6666],[112.6224,-7.6606],[112.6288,-7.6521],[112.6276,-7.6391],[112.6225,-7.6332],[112.6195,-7.6232],[112.6211,-7.6156],[112.6282,-7.6158],[112.6384,-7.6094],[112.6437,-7.6036],[112.6549,-7.594],[112.6599,-7.5915],[112.6624,-7.5877],[112.6609,-7.5839],[112.6556,-7.5836],[112.6543,-7.5802],[112.6597,-7.5677],[112.6638,-7.562],[112.6706,-7.5608],[112.6635,-7.5599],[112.6637,-7.5572],[112.652,-7.5472],[112.6476,-7.5407],[112.6467,-7.537],[112.6402,-7.5363],[112.6319,-7.5334],[112.6278,-7.5302],[112.6199,-7.519],[112.6138,-7.5149],[112.6087,-7.5072],[112.6054,-7.5066],[112.6026,-7.5012],[112.5977,-7.5001],[112.5933,-7.4955],[112.5819,-7.4919],[112.5778,-7.484],[112.5738,-7.4835],[112.5703,-7.4781],[112.5626,-7.4752],[112.5551,-7.4751],[112.5395,-7.471],[112.5117,-7.4668],[112.5055,-7.4625],[112.4988,-7.4619],[112.4867,-7.459],[112.4686,-7.4453],[112.4567,-7.447],[112.4599,-7.4364],[112.4634,-7.4316],[112.4678,-7.4317],[112.4735,-7.4291],[112.4738,-7.4241],[112.4837,-7.4165],[112.4828,-7.4113],[112.4851,-7.4092],[112.4937,-7.4092]],[[112.4456,-7.4516],[112.455,-7.4474],[112.4575,-7.4568],[112.4668,-7.4552],[112.4674,-7.4674],[112.4646,-7.4732],[112.4613,-7.4736],[112.4605,-7.4831],[112.4507,-7.4818],[112.4494,-7.4923],[112.4434,-7.4906],[112.4435,-7.4818],[112.4363,-7.4816],[112.4327,-7.4848],[112.4276,-7.4836],[112.4239,-7.4856],[112.4228,-7.4929],[112.415,-7.4941],[112.413,-7.4897],[112.4076,-7.4894],[112.4065,-7.4771],[112.41,-7.4771],[112.4117,-7.469],[112.4152,-7.4642],[112.4153,-7.4574],[112.421,-7.4569],[112.4317,-7.4602],[112.4403,-7.4561],[112.4456,-7.4516]]]}},{"type":"Feature","properties":{"mhid":"1332:252","alt_name":"KABUPATEN JOMBANG","latitude":-7.55,"longitude":112.25,"sample_value":57},"geometry":{"type":"LineString","coordinates":[[112.3457,-7.345],[112.343,-7.3445],[112.3383,-7.349],[112.3288,-7.3509],[112.3289,-7.3459],[112.3249,-7.3449],[112.3178,-7.3491],[112.3085,-7.3515],[112.3033,-7.3545],[112.2913,-7.3578],[112.2843,-7.3588],[112.2755,-7.3569],[112.2638,-7.3621],[112.25,-7.3632],[112.24,-7.3554],[112.2273,-7.3504],[112.2113,-7.3486],[112.2,-7.3532],[112.1904,-7.3535],[112.1725,-7.3576],[112.1697,-7.3572],[112.1638,-7.3616],[112.1504,-7.3673],[112.1378,-7.3679],[112.1349,-7.3704],[112.1225,-7.3737],[112.1183,-7.3774],[112.1076,-7.3813],[112.1059,-7.3835],[112.097,-7.3848],[112.0894,-7.3816],[112.0861,-7.3844],[112.0815,-7.3826],[112.0756,-7.384],[112.0753,-7.3881],[112.0693,-7.397],[112.0716,-7.4062],[112.0626,-7.4173],[112.0633,-7.4213],[112.0671,-7.4271],[112.0694,-7.4349],[112.0775,-7.4439],[112.0776,-7.4484],[112.0809,-7.4522],[112.0766,-7.4587],[112.0788,-7.4628],[112.0795,-7.4736],[112.0834,-7.4747],[112.0936,-7.4693],[112.0943,-7.4666],[112.1,-7.4629],[112.1133,-7.4626],[112.1171,-7.4594],[112.1227,-7.4598],[112.125,-7.4521],[112.1303,-7.4585],[112.1347,-7.4609],[112.1405,-7.4594],[112.1438,-7.4616],[112.1512,-7.4621],[112.1525,-7.466],[112.1569,-7.4656],[112.1571,-7.4719],[112.1598,-7.4742],[112.1603,-7.4797],[112.1643,-7.4787],[112.166,-7.4857],[112.1691,-7.4896],[112.1663,-7.4955],[112.1567,-7.5006],[112.1519,-7.5044],[112.1528,-7.5136],[112.1508,-7.5292],[112.1442,-7.5354],[112.1363,-7.5342],[112.1261,-7.5478],[112.1193,-7.553],[112.1143,-7.5637],[112.1113,-7.5667],[112.1138,-7.5727],[112.1151,-7.5819],[112.1119,-7.5911],[112.1147,-7.5992],[112.1184,-7.6045],[112.1368,-7.6112],[112.1396,-7.6098],[112.1484,-7.6111],[112.1556,-7.6102],[112.1656,-7.6132],[112.1713,-7.6187],[112.1713,-7.622],[112.1767,-7.6251],[112.1834,-7.634],[112.1831,-7.6414],[112.1947,-7.6512],[112.1946,-7.6546],[112.201,-7.6579],[112.21,-7.6696],[112.2181,-7.6767],[112.2149,-7.6877],[112.2219,-7.6916],[112.2274,-7.699],[112.2351,-7.7021],[112.2334,-7.7071],[112.2403,-7.711],[112.2407,-7.7141],[112.2499,-7.7236],[112.2572,-7.728],[112.2677,-7.7272],[112.2666,-7.7229],[112.2802,-7.7257],[112.2913,-7.7255],[112.3104,-7.7308],[112.318,-7.7373],[112.3249,-7.738],[112.3286,-7.7414],[112.3336,-7.7413],[112.3372,-7.7453],[112.3431,-7.7486],[112.3484,-7.7487],[112.3612,-7.7612],[112.3654,-7.7608],[112.3753,-7.764],[112.3846,-7.7688],[112.3883,-7.7725],[112.3964,-7.7757],[112.4067,-7.7744],[112.4175,-7.7677],[112.4222,-7.7669],[112.4304,-7.7715],[112.4372,-7.7681],[112.441,-7.7751],[112.4522,-7.779],[112.4558,-7.7791],[112.45,-7.7705],[112.4468,-7.7591],[112.4485,-7.7533],[112.4463,-7.7463],[112.4475,-7.7412],[112.4386,-7.7329],[112.4332,-7.7148],[112.4328,-7.7068],[112.4303,-7.6997],[112.4239,-7.6916],[112.4218,-7.6853],[112.4156,-7.6803],[112.4117,-7.6735],[112.4109,-7.6635],[112.4121,-7.6577],[112.4104,-7.6529],[112.4105,-7.646],[112.405,-7.6378],[112.4039,-7.6229],[112.3899,-7.6097],[112.3858,-7.6041],[112.3816,-7.5949],[112.3763,-7.5915],[112.3708,-7.584],[112.3756,-7.5838],[112.3767,-7.5763],[112.373,-7.5757],[112.3716,-7.5708],[112.3749,-7.5631],[112.3696,-7.5595],[112.3669,-7.5539],[112.3637,-7.5526],[112.3654,-7.5433],[112.3684,-7.5437],[112.3699,-7.5299],[112.3671,-7.5243],[112.3737,-7.5254],[112.3767,-7.4977],[112.3746,-7.4935],[112.3741,-7.4872],[112.3765,-7.483],[112.3844,-7.4786],[112.3901,-7.4788],[112.3905,-7.47],[112.3927,-7.4673],[112.3997,-7.4648],[112.402,-7.4594],[112.3987,-7.4578],[112.3868,-7.4587],[112.3775,-7.4585],[112.3688,-7.4565],[112.3582,-7.4576],[112.3497,-7.4549],[112.3412,-7.4596],[112.3328,-7.4524],[112.3343,-7.447],[112.3379,-7.4474],[112.3408,-7.4407],[112.346,-7.4415],[112.3476,-7.437],[112.3412,-7.4361],[112.342,-7.4292],[112.3464,-7.4201],[112.3483,-7.3987],[112.3441,-7.3935],[112.3364,-7.3784],[112.3352,-7.3702],[112.337,-7.3613],[112.3445,-7.3541],[112.3425,-7.3476],[112.3457,-7.345]]}},{"type":"Feature","properties":{"mhid":"1332:253","alt_name":"KABUPATEN NGANJUK","latitude":-7.6,"longitude":111.93333,"sample_value":388},"geometry":{"type":"LineString","coordinates":[[112.0693,-7.397],[112.0648,-7.3955],[112.0561,-7.3958],[112.0488,-7.3944],[112.0456,-7.3995],[112.0354,-7.4018],[112.0242,-7.3956],[112.0202,-7.3999],[112.0204,-7.4076],[112.0177,-7.4078],[112.0051,-7.404],[111.9987,-7.4034],[111.9837,-7.4074],[111.9772,-7.4047],[111.9713,-7.405],[111.9674,-7.4087],[111.958,-7.4133],[111.9537,-7.409],[111.946,-7.4059],[111.9467,-7.4114],[111.9561,-7.4165],[111.9585,-7.4201],[111.9589,-7.4276],[111.9533,-7.4324],[111.9481,-7.4339],[111.9404,-7.4401],[111.9346,-7.4404],[111.923,-7.4355],[111.9054,-7.4333],[111.8939,-7.4377],[111.8878,-7.4368],[111.8813,-7.4378],[111.8795,-7.4406],[111.874,-7.441],[111.861,-7.4359],[111.8495,-7.4391],[111.8282,-7.4406],[111.821,-7.4396],[111.8149,-7.4507],[111.8066,-7.4535],[111.8004,-7.4611],[111.8061,-7.4636],[111.8181,-7.4732],[111.8203,-7.4785],[111.8203,-7.4878],[111.8218,-7.4929],[111.8259,-7.496],[111.8425,-7.4978],[111.8468,-7.5046],[111.8462,-7.5093],[111.8401,-7.5201],[111.8371,-7.5308],[111.8394,-7.535],[111.8387,-7.5417],[111.8345,-7.5479],[111.8315,-7.5487],[111.8261,-7.5447],[111.8188,-7.5483],[111.8155,-7.5466],[111.8148,-7.542],[111.8042,-7.5455],[111.8024,-7.5565],[111.7986,-7.5667],[111.7947,-7.5732],[111.7951,-7.5801],[111.7922,-7.5961],[111.7867,-7.6024],[111.789,-7.6116],[111.7894,-7.6205],[111.7852,-7.6226],[111.7848,-7.6355],[111.7829,-7.6504],[111.7785,-7.6559],[111.7744,-7.6581],[111.768,-7.6658],[111.7668,-7.6711],[111.7621,-7.6781],[111.7561,-7.6839],[111.7575,-7.6934],[111.7526,-7.7055],[111.7459,-7.7122],[111.742,-7.7143],[111.7375,-7.7223],[111.7329,-7.7263],[111.7292,-7.7406],[111.7309,-7.745],[111.7298,-7.7546],[111.727,-7.7593],[111.7273,-7.7641],[111.7255,-7.771],[111.7281,-7.7793],[111.737,-7.7883],[111.7429,-7.7912],[111.7522,-7.801],[111.7551,-7.8027],[111.7601,-7.8137],[111.7644,-7.8174],[111.7688,-7.8241],[111.7733,-7.8202],[111.7765,-7.8203],[111.7849,-7.83],[111.7857,-7.8333],[111.7947,-7.8365],[111.7992,-7.8366],[111.8047,-7.8285],[111.8133,-7.8227],[111.814,-7.813],[111.8251,-7.8111],[111.839,-7.7963],[111.8522,-7.7865],[111.854,-7.7863],[111.8622,-7.7765],[111.8662,-7.7746],[111.8798,-7.765],[111.8834,-7.7614],[111.8857,-7.7549],[111.8891,-7.7529],[111.8962,-7.7444],[111.907,-7.7343],[111.9137,-7.7322],[111.9183,-7.7258],[111.9278,-7.7228],[111.9325,-7.7136],[111.9315,-7.7101],[111.9353,-7.7031],[111.9391,-7.7009],[111.9424,-7.6936],[111.9479,-7.6941],[111.9501,-7.6913],[111.9545,-7.6798],[111.9577,-7.679],[111.9639,-7.6819],[111.9821,-7.6844],[111.983,-7.6871],[111.9822,-7.7104],[111.9873,-7.7148],[111.988,-7.7237],[111.9931,-7.7282],[111.9974,-7.7291],[111.9993,-7.7416],[112.0016,-7.7486],[112.006,-7.757],[112.0106,-7.7611],[112.0202,-7.7632],[112.0214,-7.7591],[112.0206,-7.7425],[112.0281,-7.7253],[112.0319,-7.7264],[112.0375,-7.7246],[112.0503,-7.726],[112.0591,-7.7235],[112.0627,-7.7205],[112.0648,-7.7131],[112.075,-7.7037],[112.0766,-7.7],[112.0751,-7.6919],[112.0766,-7.6853],[112.0758,-7.6798],[112.0786,-7.6749],[112.0832,-7.6713],[112.082,-7.667],[112.0848,-7.6591],[112.0903,-7.6556],[112.0918,-7.6496],[112.0968,-7.6465],[112.0982,-7.6397],[112.1013,-7.6352],[112.1009,-7.6283],[112.1039,-7.6143],[112.1031,-7.6095],[112.1081,-7.6051],[112.1088,-7.5976],[112.1119,-7.5911],[112.1151,-7.5819],[112.1138,-7.5727],[112.1113,-7.5667],[112.1143,-7.5637],[112.1193,-7.553],[112.1261,-7.5478],[112.1363,-7.5342],[112.1442,-7.5354],[112.1508,-7.5292],[112.1528,-7.5136],[112.1519,-7.5044],[112.1567,-7.5006],[112.1663,-7.4955],[112.1691,-7.4896],[112.166,-7.4857],[112.1643,-7.4787],[112.1603,-7.4797],[112.1598,-7.4742],[112.1571,-7.4719],[112.1569,-7.4656],[112.1525,-7.466],[112.1512,-7.4621],[112.1438,-7.4616],[112.1405,-7.4594],[112.1347,-7.4609],[112.1303,-7.4585],[112.125,-7.4521],[112.1227,-7.4598],[112.1171,-7.4594],[112.1133,-7.4626],[112.1,-7.4629],[112.0943,-7.4666],[112.0936,-7.4693],[112.0834,-7.4747],[112.0795,-7.4736],[112.0788,-7.4628],[112.0766,-7.4587],[112.0809,-7.4522],[112.0776,-7.4484],[112.0775,-7.4439],[112.0694,-7.4349],[112.0671,-7.4271],[112.0633,-7.4213],[112.0626,-7.4173],[112.0716,-7.4062],[112.0693,-7.397]]}},{"type":"Feature","properties":{"mhid":"1332:254","alt_name":"KABUPATEN MADIUN","latitude":-7.61667,"longitude":111.65,"sample_value":645},"geometry":{"type":"LineString","coordinates":[[111.8004,-7.4611],[111.797,-7.4613],[111.7747,-7.469],[111.7705,-7.4696],[111.7511,-7.4593],[111.7463,-7.455],[111.7373,-7.4509],[111.7283,-7.4492],[111.7167,-7.4432],[111.7109,-7.4366],[111.6915,-7.4226],[111.6845,-7.4166],[111.6712,-7.4095],[111.6696,-7.4188],[111.6669,-7.4237],[111.6632,-7.4241],[111.6583,-7.4331],[111.6509,-7.439],[111.6522,-7.4504],[111.6438,-7.4516],[111.6373,-7.4624],[111.629,-7.4637],[111.6227,-7.4694],[111.6172,-7.4676],[111.6118,-7.4682],[111.6106,-7.4759],[111.6062,-7.4755],[111.5959,-7.4943],[111.5958,-7.4977],[111.5905,-7.5045],[111.5804,-7.5125],[111.5803,-7.5156],[111.5867,-7.5202],[111.5823,-7.5234],[111.5755,-7.5204],[111.5701,-7.5241],[111.5642,-7.5232],[111.5605,-7.5276],[111.5523,-7.5301],[111.5468,-7.5367],[111.5604,-7.5399],[111.558,-7.5442],[111.549,-7.5444],[111.547,-7.5395],[111.5388,-7.5394],[111.5362,-7.5449],[111.525,-7.5446],[111.5231,-7.5397],[111.5096,-7.5375],[111.5072,-7.546],[111.5125,-7.5496],[111.5119,-7.5523],[111.5044,-7.552],[111.5,-7.5585],[111.4997,-7.565],[111.4893,-7.5629],[111.4848,-7.5721],[111.4849,-7.5761],[111.4803,-7.5766],[111.475,-7.5851],[111.4768,-7.593],[111.4722,-7.599],[111.4731,-7.6089],[111.4677,-7.6151],[111.4629,-7.6162],[111.4573,-7.6197],[111.458,-7.6254],[111.4623,-7.6296],[111.4664,-7.6369],[111.483,-7.6395],[111.485,-7.6475],[111.4819,-7.6576],[111.4846,-7.6627],[111.4912,-7.6578],[111.4954,-7.6586],[111.5,-7.6567],[111.5059,-7.6488],[111.5117,-7.6489],[111.5117,-7.6361],[111.4997,-7.6408],[111.496,-7.6369],[111.4994,-7.6284],[111.498,-7.6257],[111.5023,-7.6189],[111.5005,-7.6113],[111.5014,-7.6062],[111.5117,-7.6082],[111.5136,-7.603],[111.5176,-7.603],[111.5212,-7.5973],[111.5312,-7.6002],[111.5324,-7.6027],[111.5403,-7.5993],[111.5445,-7.5998],[111.5512,-7.5954],[111.5591,-7.5967],[111.5576,-7.6036],[111.5586,-7.6082],[111.5567,-7.6137],[111.553,-7.6175],[111.5488,-7.6252],[111.5529,-7.6337],[111.5502,-7.6359],[111.5515,-7.6401],[111.5492,-7.6456],[111.546,-7.6476],[111.5397,-7.6463],[111.5415,-7.6518],[111.5413,-7.6593],[111.5333,-7.6602],[111.5329,-7.6633],[111.5247,-7.6638],[111.5197,-7.6616],[111.5151,-7.662],[111.511,-7.6594],[111.5066,-7.6671],[111.4986,-7.6743],[111.4992,-7.6789],[111.5026,-7.6878],[111.4986,-7.6994],[111.496,-7.7014],[111.4903,-7.7011],[111.4866,-7.7042],[111.4833,-7.7037],[111.4786,-7.7088],[111.4734,-7.7118],[111.4684,-7.7196],[111.4618,-7.7209],[111.4592,-7.7262],[111.4556,-7.7386],[111.4569,-7.7461],[111.4523,-7.7529],[111.4519,-7.7635],[111.4532,-7.7684],[111.4499,-7.779],[111.4557,-7.7839],[111.4605,-7.7797],[111.4665,-7.7771],[111.4744,-7.7795],[111.4756,-7.7828],[111.4891,-7.7888],[111.4943,-7.7889],[111.4983,-7.7954],[111.5329,-7.8038],[111.5474,-7.8031],[111.5503,-7.7997],[111.5577,-7.7999],[111.57,-7.8021],[111.5719,-7.8046],[111.5769,-7.8046],[111.592,-7.7955],[111.5934,-7.7905],[111.6,-7.7867],[111.601,-7.7816],[111.6104,-7.7815],[111.6122,-7.7797],[111.6195,-7.7802],[111.6234,-7.7771],[111.6371,-7.7746],[111.6416,-7.7708],[111.6527,-7.773],[111.6582,-7.767],[111.6691,-7.769],[111.6779,-7.7744],[111.6761,-7.7844],[111.6906,-7.7914],[111.6955,-7.8012],[111.6932,-7.8081],[111.7002,-7.8121],[111.7105,-7.8141],[111.7226,-7.8125],[111.7267,-7.8058],[111.7328,-7.8013],[111.7455,-7.8036],[111.7522,-7.801],[111.7429,-7.7912],[111.737,-7.7883],[111.7281,-7.7793],[111.7255,-7.771],[111.7273,-7.7641],[111.727,-7.7593],[111.7298,-7.7546],[111.7309,-7.745],[111.7292,-7.7406],[111.7329,-7.7263],[111.7375,-7.7223],[111.742,-7.7143],[111.7459,-7.7122],[111.7526,-7.7055],[111.7575,-7.6934],[111.7561,-7.6839],[111.7621,-7.6781],[111.7668,-7.6711],[111.768,-7.6658],[111.7744,-7.6581],[111.7785,-7.6559],[111.7829,-7.6504],[111.7848,-7.6355],[111.7852,-7.6226],[111.7894,-7.6205],[111.789,-7.6116],[111.7867,-7.6024],[111.7922,-7.5961],[111.7951,-7.5801],[111.7947,-7.5732],[111.7986,-7.5667],[111.8024,-7.5565],[111.8042,-7.5455],[111.8148,-7.542],[111.8155,-7.5466],[111.8188,-7.5483],[111.8261,-7.5447],[111.8315,-7.5487],[111.8345,-7.5479],[111.8387,-7.5417],[111.8394,-7.535],[111.8371,-7.5308],[111.8401,-7.5201],[111.8462,-7.5093],[111.8468,-7.5046],[111.8425,-7.4978],[111.8259,-7.496],[111.8218,-7.4929],[111.8203,-7.4878],[111.8203,-7.4785],[111.8181,-7.4732],[111.8061,-7.4636],[111.8004,-7.4611]]}},{"type":"Feature","properties":{"mhid":"1332:255","alt_name":"KABUPATEN MAGETAN","latitude":-7.64472,"longitude":111.35917,"sample_value":289},"geometry":{"type":"LineString","coordinates":[[111.5096,-7.5375],[111.5082,-7.5346],[111.5109,-7.5256],[111.5097,-7.5227],[111.5019,-7.5143],[111.4935,-7.5157],[111.488,-7.5146],[111.4856,-7.5163],[111.4772,-7.5159],[111.4677,-7.5102],[111.4616,-7.51],[111.4613,-7.5167],[111.4528,-7.5152],[111.4377,-7.5206],[111.4322,-7.5277],[111.4233,-7.531],[111.4112,-7.5379],[111.4045,-7.5399],[111.3946,-7.5413],[111.3813,-7.5397],[111.3768,-7.5472],[111.373,-7.5478],[111.3691,-7.5547],[111.3714,-7.563],[111.3713,-7.5687],[111.3534,-7.5725],[111.3445,-7.5766],[111.3393,-7.5772],[111.3302,-7.5818],[111.3252,-7.5866],[111.3154,-7.5885],[111.3142,-7.5831],[111.3015,-7.5868],[111.2984,-7.5945],[111.2922,-7.5967],[111.2912,-7.6037],[111.2754,-7.6034],[111.2741,-7.6006],[111.2652,-7.5987],[111.2585,-7.5985],[111.2522,-7.6019],[111.2454,-7.6018],[111.2408,-7.6059],[111.2312,-7.6101],[111.2272,-7.6094],[111.217,-7.6144],[111.1991,-7.6164],[111.1945,-7.6204],[111.1943,-7.6288],[111.1899,-7.6358],[111.1887,-7.6423],[111.1896,-7.6486],[111.1875,-7.6599],[111.1906,-7.6761],[111.1892,-7.686],[111.1831,-7.691],[111.182,-7.6952],[111.1841,-7.6999],[111.1819,-7.7123],[111.1916,-7.7125],[111.2015,-7.7212],[111.2082,-7.7213],[111.2139,-7.723],[111.2155,-7.7284],[111.2136,-7.7334],[111.2157,-7.7378],[111.2248,-7.7409],[111.2304,-7.7467],[111.2331,-7.7465],[111.2388,-7.7509],[111.244,-7.7414],[111.2491,-7.742],[111.2521,-7.7468],[111.2596,-7.7468],[111.2611,-7.7442],[111.267,-7.7433],[111.2745,-7.7349],[111.283,-7.7381],[111.2868,-7.743],[111.2901,-7.7429],[111.2891,-7.75],[111.2936,-7.7607],[111.2879,-7.7702],[111.2832,-7.7819],[111.2828,-7.7898],[111.2854,-7.794],[111.2899,-7.794],[111.2961,-7.7942],[111.301,-7.7971],[111.3054,-7.7969],[111.3148,-7.7922],[111.3186,-7.7864],[111.3277,-7.7888],[111.3298,-7.7874],[111.3379,-7.7892],[111.342,-7.7837],[111.3493,-7.7832],[111.3642,-7.784],[111.3871,-7.7812],[111.4021,-7.7784],[111.4066,-7.7788],[111.4176,-7.7769],[111.4315,-7.7759],[111.4427,-7.7792],[111.4499,-7.779],[111.4532,-7.7684],[111.4519,-7.7635],[111.4523,-7.7529],[111.4569,-7.7461],[111.4556,-7.7386],[111.4592,-7.7262],[111.4618,-7.7209],[111.4684,-7.7196],[111.4734,-7.7118],[111.4786,-7.7088],[111.4833,-7.7037],[111.4866,-7.7042],[111.4903,-7.7011],[111.496,-7.7014],[111.4986,-7.6994],[111.5026,-7.6878],[111.4992,-7.6789],[111.4986,-7.6743],[111.5066,-7.6671],[111.511,-7.6594],[111.5099,-7.6577],[111.5117,-7.6489],[111.5059,-7.6488],[111.5,-7.6567],[111.4954,-7.6586],[111.4912,-7.6578],[111.4846,-7.6627],[111.4819,-7.6576],[111.485,-7.6475],[111.483,-7.6395],[111.4664,-7.6369],[111.4623,-7.6296],[111.458,-7.6254],[111.4573,-7.6197],[111.4629,-7.6162],[111.4677,-7.6151],[111.4731,-7.6089],[111.4722,-7.599],[111.4768,-7.593],[111.475,-7.5851],[111.4803,-7.5766],[111.4849,-7.5761],[111.4848,-7.5721],[111.4893,-7.5629],[111.4997,-7.565],[111.5,-7.5585],[111.5044,-7.552],[111.5119,-7.5523],[111.5125,-7.5496],[111.5072,-7.546],[111.5096,-7.5375]]}},{"type":"Feature","properties":{"mhid":"1332:256","alt_name":"KABUPATEN NGAWI","latitude":-7.47444,"longitude":111.33444,"sample_value":278},"geometry":{"type":"LineString","coordinates":[[111.2124,-7.2469],[111.2083,-7.2449],[111.2006,-7.2449],[111.1992,-7.2555],[111.1913,-7.2585],[111.1822,-7.2598],[111.1777,-7.2644],[111.174,-7.2627],[111.1684,-7.2634],[111.1671,-7.2606],[111.1557,-7.2579],[111.1487,-7.2644],[111.1506,-7.2678],[111.1504,-7.2737],[111.1468,-7.2796],[111.1399,-7.2842],[111.1409,-7.2911],[111.138,-7.2938],[111.1373,-7.2999],[111.1421,-7.3074],[111.147,-7.3083],[111.1553,-7.3133],[111.1511,-7.3188],[111.1493,-7.3239],[111.1421,-7.3324],[111.1416,-7.3409],[111.143,-7.3468],[111.1406,-7.3524],[111.1428,-7.358],[111.1418,-7.3628],[111.1453,-7.3688],[111.1432,-7.3743],[111.1364,-7.3814],[111.138,-7.3849],[111.1358,-7.3898],[111.1275,-7.399],[111.1296,-7.4015],[111.124,-7.4092],[111.1204,-7.409],[111.1184,-7.4143],[111.1191,-7.4233],[111.1229,-7.4302],[111.1261,-7.4442],[111.1254,-7.4506],[111.13,-7.4535],[111.1315,-7.4606],[111.1355,-7.4628],[111.137,-7.4668],[111.1332,-7.475],[111.1366,-7.4795],[111.1352,-7.4837],[111.1436,-7.4891],[111.1448,-7.4934],[111.1518,-7.4979],[111.1537,-7.5085],[111.1499,-7.5119],[111.1481,-7.5164],[111.1502,-7.5191],[111.1478,-7.525],[111.1509,-7.5356],[111.1501,-7.543],[111.1538,-7.5498],[111.1522,-7.5554],[111.1531,-7.5627],[111.1622,-7.5748],[111.1633,-7.5803],[111.1678,-7.5841],[111.169,-7.5902],[111.1731,-7.5918],[111.1784,-7.6001],[111.1856,-7.6054],[111.193,-7.6138],[111.1945,-7.6204],[111.1991,-7.6164],[111.217,-7.6144],[111.2272,-7.6094],[111.2312,-7.6101],[111.2408,-7.6059],[111.2454,-7.6018],[111.2522,-7.6019],[111.2585,-7.5985],[111.2652,-7.5987],[111.2741,-7.6006],[111.2754,-7.6034],[111.2912,-7.6037],[111.2922,-7.5967],[111.2984,-7.5945],[111.3015,-7.5868],[111.3142,-7.5831],[111.3154,-7.5885],[111.3252,-7.5866],[111.3302,-7.5818],[111.3393,-7.5772],[111.3445,-7.5766],[111.3534,-7.5725],[111.3713,-7.5687],[111.3714,-7.563],[111.3691,-7.5547],[111.373,-7.5478],[111.3768,-7.5472],[111.3813,-7.5397],[111.3946,-7.5413],[111.4045,-7.5399],[111.4112,-7.5379],[111.4233,-7.531],[111.4322,-7.5277],[111.4377,-7.5206],[111.4528,-7.5152],[111.4613,-7.5167],[111.4616,-7.51],[111.4677,-7.5102],[111.4772,-7.5159],[111.4856,-7.5163],[111.488,-7.5146],[111.4935,-7.5157],[111.5019,-7.5143],[111.5097,-7.5227],[111.5109,-7.5256],[111.5082,-7.5346],[111.5096,-7.5375],[111.5231,-7.5397],[111.525,-7.5446],[111.5362,-7.5449],[111.5388,-7.5394],[111.547,-7.5395],[111.549,-7.5444],[111.558,-7.5442],[111.5604,-7.5399],[111.5468,-7.5367],[111.5523,-7.5301],[111.5605,-7.5276],[111.5642,-7.5232],[111.5701,-7.5241],[111.5755,-7.5204],[111.5823,-7.5234],[111.5867,-7.5202],[111.5803,-7.5156],[111.5804,-7.5125],[111.5905,-7.5045],[111.5958,-7.4977],[111.5959,-7.4943],[111.6062,-7.4755],[111.6106,-7.4759],[111.6118,-7.4682],[111.6172,-7.4676],[111.6227,-7.4694],[111.629,-7.4637],[111.6373,-7.4624],[111.6438,-7.4516],[111.6522,-7.4504],[111.6509,-7.439],[111.6583,-7.4331],[111.6632,-7.4241],[111.6669,-7.4237],[111.6696,-7.4188],[111.6712,-7.4095],[111.6547,-7.3991],[111.6307,-7.3897],[111.6235,-7.3822],[111.6163,-7.3794],[111.615,-7.3714],[111.6111,-7.3705],[111.597,-7.3592],[111.5835,-7.3529],[111.5809,-7.3549],[111.5749,-7.3486],[111.5671,-7.3553],[111.5624,-7.3576],[111.5575,-7.3643],[111.5538,-7.3638],[111.543,-7.3665],[111.5404,-7.3694],[111.5235,-7.3715],[111.5192,-7.366],[111.5135,-7.3629],[111.5052,-7.3618],[111.5014,-7.3633],[111.4971,-7.3612],[111.4883,-7.3602],[111.4848,-7.3582],[111.4757,-7.3596],[111.4739,-7.3574],[111.4669,-7.3618],[111.4618,-7.3623],[111.4568,-7.3682],[111.4631,-7.371],[111.4626,-7.3747],[111.4525,-7.3748],[111.4399,-7.3699],[111.4313,-7.3642],[111.4264,-7.3561],[111.421,-7.3536],[111.4126,-7.3477],[111.4099,-7.3493],[111.403,-7.3479],[111.3992,-7.3491],[111.3953,-7.3464],[111.3861,-7.3447],[111.3824,-7.3466],[111.3739,-7.3442],[111.3686,-7.3403],[111.3675,-7.3348],[111.3595,-7.3307],[111.3471,-7.3349],[111.3454,-7.3281],[111.347,-7.3228],[111.3411,-7.3183],[111.3329,-7.3206],[111.3331,-7.3176],[111.3217,-7.3117],[111.3157,-7.3055],[111.3088,-7.305],[111.309,-7.3024],[111.2958,-7.3005],[111.2936,-7.2965],[111.2845,-7.2888],[111.2678,-7.2895],[111.2621,-7.287],[111.2551,-7.2876],[111.2516,-7.2841],[111.2442,-7.2855],[111.2353,-7.2703],[111.23,-7.2687],[111.2237,-7.2618],[111.2217,-7.2525],[111.2168,-7.2482],[111.2124,-7.2469]]}},{"type":"Feature","properties":{"mhid":"1332:257","alt_name":"KABUPATEN BOJONEGORO","latitude":-7.25,"longitude":111.8,"sample_value":431},"geometry":{"type":"LineString","coordinates":[[112.1545,-7.1101],[112.1419,-7.1047],[112.1337,-7.0983],[112.1276,-7.0979],[112.1273,-7.1052],[112.1225,-7.1082],[112.1175,-7.0995],[112.1186,-7.0951],[112.125,-7.09],[112.1235,-7.0877],[112.1155,-7.0897],[112.1077,-7.0864],[112.102,-7.0885],[112.0856,-7.0856],[112.084,-7.0808],[112.0848,-7.0758],[112.0839,-7.0668],[112.0792,-7.066],[112.074,-7.0691],[112.0634,-7.0726],[112.0571,-7.0721],[112.0518,-7.0766],[112.0474,-7.0775],[112.0446,-7.0717],[112.0383,-7.0716],[112.0348,-7.0772],[112.03,-7.0782],[112.0286,-7.072],[112.0232,-7.0677],[112.017,-7.0684],[112.0154,-7.0719],[112.0167,-7.0778],[112.0204,-7.0829],[112.0207,-7.0869],[112.0154,-7.0927],[112.0101,-7.0942],[112.0125,-7.1039],[112.0062,-7.1051],[112.0034,-7.1082],[112.0056,-7.1165],[112.0096,-7.1221],[112.0104,-7.1303],[112.0049,-7.1306],[111.9976,-7.1222],[111.999,-7.1174],[111.994,-7.1165],[111.9937,-7.1276],[111.9859,-7.1397],[111.9828,-7.1533],[111.9846,-7.1604],[111.9829,-7.1647],[111.9788,-7.1646],[111.9772,-7.1603],[111.9797,-7.1506],[111.9778,-7.1452],[111.9697,-7.1378],[111.9632,-7.1372],[111.9549,-7.1322],[111.9513,-7.1332],[111.9472,-7.1452],[111.9426,-7.1547],[111.9359,-7.1599],[111.9315,-7.1595],[111.9302,-7.1543],[111.9325,-7.1389],[111.9313,-7.1335],[111.9233,-7.1318],[111.9178,-7.1331],[111.913,-7.1376],[111.9072,-7.138],[111.899,-7.1366],[111.8971,-7.1302],[111.8937,-7.1285],[111.8844,-7.1281],[111.8821,-7.1313],[111.8754,-7.1321],[111.8712,-7.1299],[111.8593,-7.1277],[111.8562,-7.1254],[111.8543,-7.1144],[111.8477,-7.1108],[111.8333,-7.0994],[111.8287,-7.0914],[111.823,-7.088],[111.8086,-7.0859],[111.7976,-7.0854],[111.7918,-7.0805],[111.7837,-7.0805],[111.7647,-7.0836],[111.7543,-7.0842],[111.7435,-7.0839],[111.7367,-7.0849],[111.7145,-7.082],[111.7103,-7.0767],[111.7031,-7.0729],[111.6969,-7.0654],[111.6923,-7.0635],[111.6946,-7.0541],[111.6872,-7.0539],[111.6804,-7.0515],[111.673,-7.0448],[111.6718,-7.0406],[111.6603,-7.0394],[111.6558,-7.0262],[111.6575,-7.0145],[111.6547,-7.0117],[111.6526,-7.0002],[111.6461,-6.9965],[111.6357,-6.9948],[111.6243,-6.9897],[111.6234,-6.9875],[111.6178,-6.993],[111.6154,-7.0008],[111.6156,-7.0056],[111.613,-7.0107],[111.6152,-7.0169],[111.6134,-7.0244],[111.6159,-7.0319],[111.6134,-7.0352],[111.6182,-7.0409],[111.6173,-7.0473],[111.6217,-7.0534],[111.629,-7.0597],[111.629,-7.0639],[111.6258,-7.0728],[111.6225,-7.0751],[111.6187,-7.0736],[111.6125,-7.0822],[111.6133,-7.0896],[111.616,-7.0986],[111.6163,-7.1045],[111.6203,-7.1103],[111.6132,-7.1109],[111.6137,-7.1164],[111.6117,-7.1239],[111.6079,-7.1282],[111.6092,-7.1326],[111.6077,-7.1367],[111.6121,-7.1384],[111.6106,-7.142],[111.5985,-7.1454],[111.598,-7.156],[111.587,-7.1654],[111.5844,-7.1708],[111.5841,-7.177],[111.5874,-7.1842],[111.5758,-7.1883],[111.569,-7.1861],[111.5639,-7.1906],[111.5692,-7.1989],[111.5659,-7.2075],[111.5589,-7.2062],[111.5557,-7.2018],[111.549,-7.2053],[111.5423,-7.214],[111.5368,-7.2183],[111.5432,-7.2242],[111.5415,-7.2276],[111.5311,-7.2265],[111.5255,-7.2303],[111.523,-7.2364],[111.5134,-7.2389],[111.504,-7.2476],[111.4984,-7.2481],[111.4917,-7.2438],[111.4878,-7.2431],[111.4855,-7.25],[111.4868,-7.2539],[111.491,-7.2582],[111.4875,-7.2611],[111.4786,-7.2522],[111.4754,-7.2526],[111.4691,-7.2623],[111.4601,-7.2618],[111.4556,-7.2581],[111.4565,-7.2504],[111.4515,-7.2484],[111.4509,-7.2571],[111.4514,-7.2742],[111.447,-7.2752],[111.4434,-7.2678],[111.4381,-7.2698],[111.4399,-7.2747],[111.4442,-7.2779],[111.4415,-7.2903],[111.438,-7.2925],[111.4354,-7.298],[111.4301,-7.3044],[111.4246,-7.3071],[111.426,-7.3127],[111.4322,-7.3147],[111.4413,-7.3154],[111.4474,-7.3135],[111.4559,-7.3193],[111.4574,-7.3245],[111.45,-7.3299],[111.4461,-7.3367],[111.4508,-7.3405],[111.4602,-7.3409],[111.4586,-7.3463],[111.4498,-7.3432],[111.4422,-7.3488],[111.4437,-7.3601],[111.4469,-7.3607],[111.4501,-7.3552],[111.4555,-7.3521],[111.459,-7.3527],[111.4622,-7.3571],[111.4618,-7.3623],[111.4669,-7.3618],[111.4739,-7.3574],[111.4757,-7.3596],[111.4848,-7.3582],[111.4883,-7.3602],[111.4971,-7.3612],[111.5014,-7.3633],[111.5052,-7.3618],[111.5135,-7.3629],[111.5192,-7.366],[111.5235,-7.3715],[111.5404,-7.3694],[111.543,-7.3665],[111.5538,-7.3638],[111.5575,-7.3643],[111.5624,-7.3576],[111.5671,-7.3553],[111.5749,-7.3486],[111.5809,-7.3549],[111.5835,-7.3529],[111.597,-7.3592],[111.6111,-7.3705],[111.615,-7.3714],[111.6163,-7.3794],[111.6235,-7.3822],[111.6307,-7.3897],[111.6547,-7.3991],[111.6712,-7.4095],[111.6845,-7.4166],[111.6915,-7.4226],[111.7109,-7.4366],[111.7167,-7.4432],[111.7283,-7.4492],[111.7373,-7.4509],[111.7463,-7.455],[111.7511,-7.4593],[111.7705,-7.4696],[111.7747,-7.469],[111.797,-7.4613],[111.8004,-7.4611],[111.8066,-7.4535],[111.8149,-7.4507],[111.821,-7.4396],[111.8282,-7.4406],[111.8495,-7.4391],[111.861,-7.4359],[111.874,-7.441],[111.8795,-7.4406],[111.8813,-7.4378],[111.8878,-7.4368],[111.8939,-7.4377],[111.9054,-7.4333],[111.923,-7.4355],[111.9346,-7.4404],[111.9404,-7.4401],[111.9481,-7.4339],[111.9533,-7.4324],[111.9589,-7.4276],[111.9585,-7.4201],[111.9561,-7.4165],[111.9467,-7.4114],[111.946,-7.4059],[111.9537,-7.409],[111.958,-7.4133],[111.9674,-7.4087],[111.9713,-7.405],[111.9772,-7.4047],[111.9837,-7.4074],[111.9987,-7.4034],[112.0051,-7.404],[112.0177,-7.4078],[112.0204,-7.4076],[112.0202,-7.3999],[112.0242,-7.3956],[112.0354,-7.4018],[112.0456,-7.3995],[112.0488,-7.3944],[112.0561,-7.3958],[112.0648,-7.3955],[112.0693,-7.397],[112.0753,-7.3881],[112.0756,-7.384],[112.0815,-7.3826],[112.0848,-7.3786],[112.0864,-7.3703],[112.0893,-7.3685],[112.0885,-7.3579],[112.0845,-7.3566],[112.085,-7.3503],[112.0798,-7.3468],[112.077,-7.338],[112.0726,-7.3333],[112.075,-7.3251],[112.0774,-7.3229],[112.0781,-7.3164],[112.0828,-7.3069],[112.0877,-7.3036],[112.0896,-7.2956],[112.0872,-7.2927],[112.0861,-7.2843],[112.0913,-7.2816],[112.092,-7.2667],[112.0875,-7.2669],[112.0843,-7.2596],[112.0865,-7.2507],[112.0858,-7.2448],[112.0888,-7.2397],[112.0882,-7.2342],[112.0896,-7.2279],[112.0933,-7.2248],[112.0956,-7.2282],[112.1069,-7.2236],[112.1061,-7.2208],[112.113,-7.2172],[112.114,-7.213],[112.1187,-7.2113],[112.1219,-7.1974],[112.1222,-7.1897],[112.1263,-7.1834],[112.1296,-7.1842],[112.1341,-7.1741],[112.1366,-7.1649],[112.1427,-7.1617],[112.143,-7.1575],[112.1504,-7.1587],[112.1518,-7.151],[112.1545,-7.1509],[112.1576,-7.1421],[112.1601,-7.1417],[112.1614,-7.1358],[112.1617,-7.1211],[112.1656,-7.1185],[112.1641,-7.1152],[112.1569,-7.1177],[112.1533,-7.1166],[112.1545,-7.1101]]}},{"type":"Feature","properties":{"mhid":"1332:258","alt_name":"KABUPATEN TUBAN","latitude":-6.96667,"longitude":111.9,"sample_value":677},"geometry":{"type":"LineString","coordinates":[[112.1709,-6.8995],[112.1599,-6.8989],[112.1513,-6.8968],[112.1459,-6.8975],[112.1455,-6.9011],[112.1306,-6.9024],[112.1233,-6.9021],[112.1052,-6.8949],[112.1032,-6.8965],[112.0876,-6.894],[112.0814,-6.8962],[112.0778,-6.8943],[112.072,-6.8949],[112.0606,-6.8911],[112.0528,-6.8867],[112.0471,-6.8819],[112.036,-6.8703],[112.0262,-6.8577],[112.0133,-6.8395],[112.0082,-6.829],[112.0064,-6.8179],[112.002,-6.8139],[111.9955,-6.8045],[111.9873,-6.7954],[111.9851,-6.7853],[111.9801,-6.7732],[111.9726,-6.7674],[111.9593,-6.7634],[111.9472,-6.7639],[111.9357,-6.7695],[111.9328,-6.7729],[111.9248,-6.7779],[111.9139,-6.7828],[111.8905,-6.7917],[111.874,-6.7966],[111.8616,-6.799],[111.8432,-6.8006],[111.8336,-6.8005],[111.8111,-6.7945],[111.805,-6.7918],[111.7852,-6.78],[111.7735,-6.7813],[111.7742,-6.7776],[111.7658,-6.7715],[111.7609,-6.7747],[111.7511,-6.7705],[111.7415,-6.7703],[111.7287,-6.7717],[111.7132,-6.7674],[111.6914,-6.7538],[111.6844,-6.7706],[111.6818,-6.7714],[111.6718,-6.7702],[111.6698,-6.7638],[111.6628,-6.7716],[111.6599,-6.7829],[111.6642,-6.7907],[111.6642,-6.7975],[111.6572,-6.807],[111.6578,-6.8115],[111.661,-6.817],[111.6527,-6.8254],[111.649,-6.823],[111.6421,-6.8246],[111.635,-6.8289],[111.6291,-6.8249],[111.6193,-6.8217],[111.6135,-6.8317],[111.6104,-6.8478],[111.6124,-6.8643],[111.6097,-6.8711],[111.6149,-6.8821],[111.6114,-6.8825],[111.6097,-6.887],[111.6008,-6.8923],[111.5997,-6.8955],[111.6029,-6.8995],[111.608,-6.9019],[111.6024,-6.9115],[111.6,-6.9105],[111.5836,-6.9101],[111.5777,-6.9133],[111.575,-6.9181],[111.5763,-6.9237],[111.5736,-6.9287],[111.5763,-6.9313],[111.575,-6.9379],[111.5768,-6.9412],[111.5736,-6.9458],[111.5701,-6.9467],[111.5739,-6.9544],[111.5874,-6.9636],[111.5943,-6.9659],[111.6047,-6.967],[111.6108,-6.975],[111.6219,-6.9822],[111.6234,-6.9875],[111.6243,-6.9897],[111.6357,-6.9948],[111.6461,-6.9965],[111.6526,-7.0002],[111.6547,-7.0117],[111.6575,-7.0145],[111.6558,-7.0262],[111.6603,-7.0394],[111.6718,-7.0406],[111.673,-7.0448],[111.6804,-7.0515],[111.6872,-7.0539],[111.6946,-7.0541],[111.6923,-7.0635],[111.6969,-7.0654],[111.7031,-7.0729],[111.7103,-7.0767],[111.7145,-7.082],[111.7367,-7.0849],[111.7435,-7.0839],[111.7543,-7.0842],[111.7647,-7.0836],[111.7837,-7.0805],[111.7918,-7.0805],[111.7976,-7.0854],[111.8086,-7.0859],[111.823,-7.088],[111.8287,-7.0914],[111.8333,-7.0994],[111.8477,-7.1108],[111.8543,-7.1144],[111.8562,-7.1254],[111.8593,-7.1277],[111.8712,-7.1299],[111.8754,-7.1321],[111.8821,-7.1313],[111.8844,-7.1281],[111.8937,-7.1285],[111.8971,-7.1302],[111.899,-7.1366],[111.9072,-7.138],[111.913,-7.1376],[111.9178,-7.1331],[111.9233,-7.1318],[111.9313,-7.1335],[111.9325,-7.1389],[111.9302,-7.1543],[111.9315,-7.1595],[111.9359,-7.1599],[111.9426,-7.1547],[111.9472,-7.1452],[111.9513,-7.1332],[111.9549,-7.1322],[111.9632,-7.1372],[111.9697,-7.1378],[111.9778,-7.1452],[111.9797,-7.1506],[111.9772,-7.1603],[111.9788,-7.1646],[111.9829,-7.1647],[111.9846,-7.1604],[111.9828,-7.1533],[111.9859,-7.1397],[111.9937,-7.1276],[111.994,-7.1165],[111.999,-7.1174],[111.9976,-7.1222],[112.0049,-7.1306],[112.0104,-7.1303],[112.0096,-7.1221],[112.0056,-7.1165],[112.0034,-7.1082],[112.0062,-7.1051],[112.0125,-7.1039],[112.0101,-7.0942],[112.0154,-7.0927],[112.0207,-7.0869],[112.0204,-7.0829],[112.0167,-7.0778],[112.0154,-7.0719],[112.017,-7.0684],[112.0232,-7.0677],[112.0286,-7.072],[112.03,-7.0782],[112.0348,-7.0772],[112.0383,-7.0716],[112.0446,-7.0717],[112.0474,-7.0775],[112.0518,-7.0766],[112.0571,-7.0721],[112.0634,-7.0726],[112.074,-7.0691],[112.0792,-7.066],[112.0839,-7.0668],[112.0848,-7.0758],[112.084,-7.0808],[112.0856,-7.0856],[112.102,-7.0885],[112.1077,-7.0864],[112.1155,-7.0897],[112.1235,-7.0877],[112.125,-7.09],[112.1186,-7.0951],[112.1175,-7.0995],[112.1225,-7.1082],[112.1273,-7.1052],[112.1276,-7.0979],[112.1337,-7.0983],[112.1419,-7.1047],[112.1545,-7.1101],[112.1593,-7.1104],[112.1637,-7.105],[112.164,-7.1002],[112.1673,-7.0974],[112.1745,-7.0994],[112.1775,-7.0986],[112.1836,-7.0892],[112.1756,-7.0873],[112.1746,-7.0845],[112.1793,-7.0751],[112.1849,-7.0763],[112.1838,-7.0835],[112.1898,-7.0844],[112.1998,-7.0766],[112.2067,-7.0737],[112.2172,-7.0748],[112.219,-7.0666],[112.2153,-7.0547],[112.2157,-7.0441],[112.2186,-7.0359],[112.208,-7.0343],[112.2033,-7.0294],[112.2041,-7.0259],[112.2097,-7.0224],[112.2144,-7.0093],[112.2118,-7.0043],[112.2097,-6.9941],[112.2109,-6.9856],[112.2088,-6.9754],[112.2068,-6.9713],[112.2041,-6.959],[112.2037,-6.9505],[112.202,-6.9447],[112.2034,-6.9239],[112.199,-6.9198],[112.1978,-6.915],[112.1808,-6.9109],[112.1789,-6.905],[112.1709,-6.8995]]}},{"type":"Feature","properties":{"mhid":"1332:259","alt_name":"KABUPATEN LAMONGAN","latitude":-7.13333,"longitude":112.31667,"sample_value":97},"geometry":{"type":"LineString","coordinates":[[112.4539,-6.8833],[112.453,-6.879],[112.4489,-6.8788],[112.4539,-6.8833]]}},{"type":"Feature","properties":{"mhid":"1332:259","alt_name":"KABUPATEN LAMONGAN","latitude":-7.13333,"longitude":112.31667,"sample_value":97},"geometry":{"type":"LineString","coordinates":[[112.4406,-6.8749],[112.4358,-6.869],[112.4295,-6.8672],[112.4185,-6.8658],[112.4141,-6.8642],[112.4097,-6.8662],[112.4064,-6.8717],[112.3897,-6.8759],[112.3735,-6.8744],[112.3668,-6.8687],[112.3577,-6.8638],[112.3528,-6.8689],[112.3414,-6.8697],[112.3371,-6.8661],[112.3293,-6.8631],[112.3234,-6.8647],[112.3155,-6.8707],[112.2982,-6.8743],[112.2848,-6.8694],[112.2708,-6.8775],[112.2575,-6.8771],[112.2471,-6.8786],[112.2448,-6.873],[112.24,-6.8718],[112.2234,-6.8728],[112.2168,-6.8744],[112.2148,-6.88],[112.1953,-6.8863],[112.1909,-6.8885],[112.1834,-6.8889],[112.1811,-6.8917],[112.175,-6.8933],[112.1709,-6.8995],[112.1789,-6.905],[112.1808,-6.9109],[112.1978,-6.915],[112.199,-6.9198],[112.2034,-6.9239],[112.202,-6.9447],[112.2037,-6.9505],[112.2041,-6.959],[112.2068,-6.9713],[112.2088,-6.9754],[112.2109,-6.9856],[112.2097,-6.9941],[112.2118,-7.0043],[112.2144,-7.0093],[112.2097,-7.0224],[112.2041,-7.0259],[112.2033,-7.0294],[112.208,-7.0343],[112.2186,-7.0359],[112.2157,-7.0441],[112.2153,-7.0547],[112.219,-7.0666],[112.2172,-7.0748],[112.2067,-7.0737],[112.1998,-7.0766],[112.1898,-7.0844],[112.1838,-7.0835],[112.1849,-7.0763],[112.1793,-7.0751],[112.1746,-7.0845],[112.1756,-7.0873],[112.1836,-7.0892],[112.1775,-7.0986],[112.1745,-7.0994],[112.1673,-7.0974],[112.164,-7.1002],[112.1637,-7.105],[112.1593,-7.1104],[112.1545,-7.1101],[112.1533,-7.1166],[112.1569,-7.1177],[112.1641,-7.1152],[112.1656,-7.1185],[112.1617,-7.1211],[112.1614,-7.1358],[112.1601,-7.1417],[112.1576,-7.1421],[112.1545,-7.1509],[112.1518,-7.151],[112.1504,-7.1587],[112.143,-7.1575],[112.1427,-7.1617],[112.1366,-7.1649],[112.1341,-7.1741],[112.1296,-7.1842],[112.1263,-7.1834],[112.1222,-7.1897],[112.1219,-7.1974],[112.1187,-7.2113],[112.114,-7.213],[112.113,-7.2172],[112.1061,-7.2208],[112.1069,-7.2236],[112.0956,-7.2282],[112.0933,-7.2248],[112.0896,-7.2279],[112.0882,-7.2342],[112.0888,-7.2397],[112.0858,-7.2448],[112.0865,-7.2507],[112.0843,-7.2596],[112.0875,-7.2669],[112.092,-7.2667],[112.0913,-7.2816],[112.0861,-7.2843],[112.0872,-7.2927],[112.0896,-7.2956],[112.0877,-7.3036],[112.0828,-7.3069],[112.0781,-7.3164],[112.0774,-7.3229],[112.075,-7.3251],[112.0726,-7.3333],[112.077,-7.338],[112.0798,-7.3468],[112.085,-7.3503],[112.0845,-7.3566],[112.0885,-7.3579],[112.0893,-7.3685],[112.0864,-7.3703],[112.0848,-7.3786],[112.0815,-7.3826],[112.0861,-7.3844],[112.0894,-7.3816],[112.097,-7.3848],[112.1059,-7.3835],[112.1076,-7.3813],[112.1183,-7.3774],[112.1225,-7.3737],[112.1349,-7.3704],[112.1378,-7.3679],[112.1504,-7.3673],[112.1638,-7.3616],[112.1697,-7.3572],[112.1725,-7.3576],[112.1904,-7.3535],[112.2,-7.3532],[112.2113,-7.3486],[112.2273,-7.3504],[112.24,-7.3554],[112.25,-7.3632],[112.2638,-7.3621],[112.2755,-7.3569],[112.2843,-7.3588],[112.2913,-7.3578],[112.3033,-7.3545],[112.3085,-7.3515],[112.3178,-7.3491],[112.3249,-7.3449],[112.3289,-7.3459],[112.3288,-7.3509],[112.3383,-7.349],[112.343,-7.3445],[112.3457,-7.345],[112.3464,-7.3406],[112.3528,-7.3333],[112.3576,-7.3311],[112.3584,-7.3265],[112.3664,-7.3263],[112.3683,-7.3247],[112.3716,-7.3208],[112.3835,-7.3208],[112.3881,-7.3193],[112.3933,-7.3124],[112.3983,-7.3136],[112.4042,-7.3104],[112.4087,-7.3059],[112.4101,-7.3012],[112.4081,-7.2952],[112.4077,-7.2877],[112.4122,-7.2791],[112.412,-7.2735],[112.4078,-7.2696],[112.397,-7.2646],[112.403,-7.2571],[112.4074,-7.247],[112.4127,-7.2491],[112.4128,-7.2389],[112.4196,-7.2318],[112.4225,-7.2327],[112.4338,-7.2291],[112.4364,-7.2227],[112.447,-7.2162],[112.4527,-7.2082],[112.4576,-7.2065],[112.4651,-7.2072],[112.4685,-7.2032],[112.473,-7.2046],[112.4777,-7.2003],[112.4841,-7.1972],[112.5023,-7.1923],[112.5043,-7.1867],[112.5046,-7.172],[112.503,-7.1668],[112.4978,-7.1636],[112.4894,-7.1654],[112.4788,-7.1644],[112.4702,-7.1593],[112.4716,-7.1571],[112.4735,-7.1454],[112.4715,-7.1447],[112.4761,-7.1257],[112.4886,-7.1283],[112.4965,-7.1274],[112.4965,-7.1186],[112.5015,-7.1068],[112.5141,-7.1083],[112.5179,-7.1034],[112.532,-7.0987],[112.5359,-7.0957],[112.531,-7.0877],[112.533,-7.0839],[112.5409,-7.0765],[112.5422,-7.0703],[112.5479,-7.0656],[112.5482,-7.0586],[112.5524,-7.0504],[112.5472,-7.0475],[112.5441,-7.0533],[112.5406,-7.0528],[112.536,-7.0481],[112.5247,-7.0393],[112.5221,-7.0462],[112.5191,-7.0471],[112.514,-7.0412],[112.4984,-7.031],[112.4962,-7.0262],[112.4979,-7.0234],[112.5069,-7.0211],[112.5099,-7.0158],[112.5059,-7.012],[112.4901,-7.0088],[112.4806,-7.0116],[112.4823,-7.0049],[112.4809,-7.0024],[112.4615,-7.0075],[112.4575,-7.0147],[112.4499,-7.0163],[112.4504,-7.0014],[112.4288,-7.0026],[112.4217,-6.996],[112.4166,-6.9937],[112.4043,-6.9909],[112.3985,-6.9933],[112.3945,-6.9876],[112.3899,-6.9858],[112.3837,-6.9887],[112.3757,-6.9871],[112.3731,-6.9848],[112.3672,-6.9843],[112.3666,-6.9771],[112.3749,-6.9582],[112.3819,-6.958],[112.391,-6.9601],[112.3952,-6.9559],[112.4039,-6.9584],[112.4132,-6.9538],[112.4232,-6.9504],[112.4264,-6.9453],[112.4258,-6.9383],[112.4274,-6.9341],[112.4233,-6.9225],[112.4253,-6.9071],[112.428,-6.904],[112.4368,-6.9017],[112.4407,-6.8987],[112.4456,-6.8865],[112.4456,-6.884],[112.4406,-6.8749]]}},{"type":"Feature","properties":{"mhid":"1332:260","alt_name":"KABUPATEN GRESIK","latitude":-7.1933,"longitude":112.553,"sample_value":545},"geometry":{"type":"LineString","coordinates":[[112.6615,-7.193],[112.6657,-7.1891],[112.6675,-7.1801],[112.6652,-7.1739],[112.6623,-7.1581],[112.6579,-7.151],[112.6517,-7.1493],[112.6486,-7.145],[112.6347,-7.1377],[112.6282,-7.1353],[112.6232,-7.1204],[112.6248,-7.1126],[112.6286,-7.1078],[112.6244,-7.1039],[112.6179,-7.1042],[112.6162,-7.1016],[112.6314,-7.1029],[112.6341,-7.099],[112.6326,-7.0924],[112.6315,-7.0768],[112.6376,-7.066],[112.644,-7.0618],[112.6496,-7.0611],[112.6543,-7.0554],[112.653,-7.0494],[112.6541,-7.0443],[112.6504,-7.0357],[112.6492,-7.0297],[112.6525,-7.0214],[112.6489,-7.0172],[112.6464,-7.0062],[112.6409,-6.9925],[112.6221,-6.983],[112.6206,-6.9793],[112.6147,-6.9737],[112.6077,-6.961],[112.6019,-6.9562],[112.5981,-6.9561],[112.5937,-6.9392],[112.5954,-6.9296],[112.599,-6.9228],[112.5981,-6.9075],[112.5942,-6.9005],[112.59,-6.9012],[112.5874,-6.906],[112.5833,-6.8992],[112.5778,-6.8953],[112.5732,-6.8947],[112.5637,-6.8751],[112.5601,-6.8665],[112.559,-6.8604],[112.5529,-6.8527],[112.5502,-6.8451],[112.5458,-6.8503],[112.5479,-6.8594],[112.5454,-6.8603],[112.5435,-6.8661],[112.5369,-6.8684],[112.5345,-6.8752],[112.5477,-6.8765],[112.5551,-6.8875],[112.5548,-6.895],[112.5499,-6.8996],[112.5488,-6.9065],[112.5429,-6.9093],[112.5291,-6.9082],[112.5257,-6.907],[112.5057,-6.9072],[112.4922,-6.9033],[112.487,-6.9041],[112.4753,-6.8998],[112.4691,-6.8926],[112.4633,-6.8911],[112.4539,-6.8833],[112.4489,-6.8788],[112.4406,-6.8749],[112.4456,-6.884],[112.4456,-6.8865],[112.4407,-6.8987],[112.4368,-6.9017],[112.428,-6.904],[112.4253,-6.9071],[112.4233,-6.9225],[112.4274,-6.9341],[112.4258,-6.9383],[112.4264,-6.9453],[112.4232,-6.9504],[112.4132,-6.9538],[112.4039,-6.9584],[112.3952,-6.9559],[112.391,-6.9601],[112.3819,-6.958],[112.3749,-6.9582],[112.3666,-6.9771],[112.3672,-6.9843],[112.3731,-6.9848],[112.3757,-6.9871],[112.3837,-6.9887],[112.3899,-6.9858],[112.3945,-6.9876],[112.3985,-6.9933],[112.4043,-6.9909],[112.4166,-6.9937],[112.4217,-6.996],[112.4288,-7.0026],[112.4504,-7.0014],[112.4499,-7.0163],[112.4575,-7.0147],[112.4615,-7.0075],[112.4809,-7.0024],[112.4823,-7.0049],[112.4806,-7.0116],[112.4901,-7.0088],[112.5059,-7.012],[112.5099,-7.0158],[112.5069,-7.0211],[112.4979,-7.0234],[112.4962,-7.0262],[112.4984,-7.031],[112.514,-7.0412],[112.5191,-7.0471],[112.5221,-7.0462],[112.5247,-7.0393],[112.536,-7.0481],[112.5406,-7.0528],[112.5441,-7.0533],[112.5472,-7.0475],[112.5524,-7.0504],[112.5482,-7.0586],[112.5479,-7.0656],[112.5422,-7.0703],[112.5409,-7.0765],[112.533,-7.0839],[112.531,-7.0877],[112.5359,-7.0957],[112.532,-7.0987],[112.5179,-7.1034],[112.5141,-7.1083],[112.5015,-7.1068],[112.4965,-7.1186],[112.4965,-7.1274],[112.4886,-7.1283],[112.4761,-7.1257],[112.4715,-7.1447],[112.4735,-7.1454],[112.4716,-7.1571],[112.4702,-7.1593],[112.4788,-7.1644],[112.4894,-7.1654],[112.4978,-7.1636],[112.503,-7.1668],[112.5046,-7.172],[112.5043,-7.1867],[112.5023,-7.1923],[112.4841,-7.1972],[112.4777,-7.2003],[112.473,-7.2046],[112.4685,-7.2032],[112.4651,-7.2072],[112.4576,-7.2065],[112.4527,-7.2082],[112.447,-7.2162],[112.4364,-7.2227],[112.4338,-7.2291],[112.4225,-7.2327],[112.4196,-7.2318],[112.4128,-7.2389],[112.4127,-7.2491],[112.4074,-7.247],[112.403,-7.2571],[112.397,-7.2646],[112.4078,-7.2696],[112.412,-7.2735],[112.4122,-7.2791],[112.4077,-7.2877],[112.4081,-7.2952],[112.4101,-7.3012],[112.4087,-7.3059],[112.4042,-7.3104],[112.3983,-7.3136],[112.3933,-7.3124],[112.3881,-7.3193],[112.3835,-7.3208],[112.3716,-7.3208],[112.3683,-7.3247],[112.3913,-7.3334],[112.394,-7.3275],[112.4014,-7.3257],[112.402,-7.3223],[112.4098,-7.3176],[112.419,-7.3168],[112.417,-7.3128],[112.426,-7.3124],[112.436,-7.3148],[112.4403,-7.3141],[112.4443,-7.305],[112.4521,-7.3098],[112.4623,-7.3124],[112.4678,-7.3065],[112.4717,-7.3049],[112.4774,-7.3057],[112.4787,-7.3091],[112.4798,-7.3293],[112.4845,-7.3368],[112.4847,-7.3409],[112.479,-7.3494],[112.4772,-7.3541],[112.4788,-7.3657],[112.4758,-7.3713],[112.4764,-7.3818],[112.4829,-7.3978],[112.4921,-7.3991],[112.4937,-7.4092],[112.4953,-7.4081],[112.5167,-7.4056],[112.5238,-7.4036],[112.5307,-7.4062],[112.5382,-7.4051],[112.5425,-7.406],[112.5481,-7.404],[112.5516,-7.4007],[112.5663,-7.3979],[112.5673,-7.3917],[112.5735,-7.3909],[112.5788,-7.3843],[112.584,-7.383],[112.5878,-7.3766],[112.5881,-7.3712],[112.5927,-7.3723],[112.6049,-7.3708],[112.6182,-7.3664],[112.6216,-7.368],[112.6289,-7.3681],[112.6421,-7.3611],[112.6535,-7.3621],[112.6563,-7.3568],[112.6544,-7.3562],[112.656,-7.3456],[112.6538,-7.339],[112.6485,-7.3353],[112.6509,-7.3215],[112.6483,-7.319],[112.6493,-7.3146],[112.6294,-7.3116],[112.6273,-7.2983],[112.6287,-7.2896],[112.6267,-7.2812],[112.6269,-7.2765],[112.632,-7.2722],[112.6319,-7.2609],[112.6262,-7.2613],[112.6172,-7.2576],[112.6179,-7.2527],[112.6146,-7.2482],[112.6035,-7.2476],[112.6065,-7.2394],[112.6039,-7.237],[112.6046,-7.2328],[112.6003,-7.2297],[112.5954,-7.2196],[112.5947,-7.2147],[112.5981,-7.212],[112.5923,-7.2071],[112.5927,-7.2023],[112.6015,-7.2042],[112.6134,-7.209],[112.6288,-7.2015],[112.6348,-7.1996],[112.6592,-7.1964],[112.6615,-7.193]]}},{"type":"Feature","properties":{"mhid":"1332:260","alt_name":"KABUPATEN GRESIK","latitude":-7.1933,"longitude":112.553,"sample_value":545},"geometry":{"type":"LineString","coordinates":[[112.5858,-5.7753],[112.5879,-5.7685],[112.5818,-5.7712],[112.5858,-5.7753]]}},{"type":"Feature","properties":{"mhid":"1332:260","alt_name":"KABUPATEN GRESIK","latitude":-7.1933,"longitude":112.553,"sample_value":545},"geometry":{"type":"LineString","coordinates":[[112.6047,-5.7584],[112.606,-5.751],[112.6025,-5.746],[112.6016,-5.7555],[112.6047,-5.7584]]}},{"type":"Feature","properties":{"mhid":"1332:260","alt_name":"KABUPATEN GRESIK","latitude":-7.1933,"longitude":112.553,"sample_value":545},"geometry":{"type":"LineString","coordinates":[[112.7034,-5.7347],[112.6946,-5.7284],[112.6903,-5.7267],[112.6886,-5.7192],[112.6805,-5.7197],[112.6754,-5.7248],[112.6764,-5.7329],[112.6704,-5.7386],[112.6581,-5.7321],[112.6481,-5.7313],[112.6369,-5.7379],[112.6325,-5.7449],[112.6267,-5.7494],[112.6155,-5.7514],[112.6114,-5.7572],[112.612,-5.7706],[112.6083,-5.7739],[112.6025,-5.7743],[112.5992,-5.7704],[112.5898,-5.7745],[112.5899,-5.7788],[112.5873,-5.7833],[112.5863,-5.7902],[112.5805,-5.79],[112.584,-5.7959],[112.5821,-5.8057],[112.577,-5.8077],[112.5706,-5.8059],[112.569,-5.8099],[112.573,-5.8131],[112.5798,-5.8132],[112.5752,-5.8293],[112.5848,-5.8316],[112.5836,-5.8376],[112.5774,-5.8404],[112.5808,-5.8444],[112.5876,-5.847],[112.5914,-5.8555],[112.597,-5.8534],[112.6072,-5.8561],[112.6219,-5.8544],[112.6234,-5.8589],[112.6199,-5.8663],[112.6223,-5.8693],[112.6283,-5.8558],[112.628,-5.8469],[112.6312,-5.8435],[112.639,-5.8443],[112.6489,-5.8488],[112.6517,-5.8514],[112.6578,-5.8525],[112.6638,-5.85],[112.6699,-5.8543],[112.6789,-5.8515],[112.6838,-5.8527],[112.6848,-5.8604],[112.6829,-5.8653],[112.6893,-5.8649],[112.6883,-5.8539],[112.694,-5.8504],[112.6991,-5.8517],[112.7057,-5.8458],[112.7136,-5.8446],[112.7194,-5.8386],[112.7221,-5.833],[112.7273,-5.8341],[112.7328,-5.8315],[112.7326,-5.8243],[112.7276,-5.8187],[112.733,-5.8042],[112.7389,-5.7915],[112.7425,-5.79],[112.7397,-5.7815],[112.7325,-5.7769],[112.7329,-5.7719],[112.7368,-5.7672],[112.7328,-5.7636],[112.7252,-5.7603],[112.7278,-5.7403],[112.7175,-5.7357],[112.7034,-5.7347]]}},{"type":"Feature","properties":{"mhid":"1332:261","alt_name":"KABUPATEN BANGKALAN","latitude":-7.05,"longitude":112.93333,"sample_value":236},"geometry":{"type":"LineString","coordinates":[[113.1245,-6.894],[113.1213,-6.8901],[113.1158,-6.8948],[113.1086,-6.8935],[113.1085,-6.8887],[113.104,-6.8893],[113.0888,-6.8889],[113.0763,-6.8847],[113.0637,-6.882],[113.0536,-6.885],[113.0437,-6.8803],[113.0326,-6.8799],[113.0289,-6.8834],[113.0108,-6.8808],[113.0044,-6.8825],[112.9998,-6.8816],[112.9942,-6.8854],[112.9914,-6.8839],[112.9869,-6.8869],[112.9785,-6.8856],[112.9695,-6.8888],[112.9662,-6.887],[112.9596,-6.8891],[112.9513,-6.8871],[112.9442,-6.8895],[112.9383,-6.8889],[112.9329,-6.8914],[112.9255,-6.8899],[112.9215,-6.8937],[112.9033,-6.8935],[112.8933,-6.8908],[112.8866,-6.8918],[112.878,-6.8913],[112.879,-6.8966],[112.8753,-6.898],[112.8676,-6.8919],[112.8635,-6.8919],[112.8493,-6.8967],[112.8479,-6.9099],[112.8407,-6.9165],[112.8351,-6.9153],[112.8326,-6.9071],[112.829,-6.9057],[112.8223,-6.9127],[112.8292,-6.9206],[112.8265,-6.9275],[112.8283,-6.9307],[112.8175,-6.9463],[112.809,-6.9559],[112.804,-6.9639],[112.7987,-6.9695],[112.7906,-6.9747],[112.7928,-6.9784],[112.7885,-6.9844],[112.7758,-6.9965],[112.7672,-7.0028],[112.757,-7.0077],[112.7463,-7.0168],[112.7406,-7.0182],[112.7359,-7.0259],[112.7229,-7.0387],[112.7163,-7.0384],[112.7106,-7.0404],[112.7032,-7.0384],[112.6976,-7.0339],[112.6893,-7.0313],[112.6828,-7.0318],[112.6774,-7.0441],[112.6765,-7.0569],[112.6736,-7.0596],[112.6753,-7.0664],[112.6734,-7.0735],[112.6777,-7.0766],[112.6826,-7.0838],[112.6894,-7.0973],[112.6954,-7.0943],[112.7015,-7.0938],[112.7058,-7.0962],[112.7038,-7.1133],[112.6991,-7.1297],[112.6918,-7.1477],[112.6914,-7.1542],[112.695,-7.1567],[112.7034,-7.1659],[112.7243,-7.1741],[112.7287,-7.1705],[112.7401,-7.1713],[112.7459,-7.1704],[112.7404,-7.1653],[112.7515,-7.1536],[112.7529,-7.1512],[112.7652,-7.1522],[112.7645,-7.1556],[112.7683,-7.1626],[112.7766,-7.1595],[112.7908,-7.1605],[112.7994,-7.1577],[112.8053,-7.1589],[112.8129,-7.1584],[112.8239,-7.1613],[112.8309,-7.1616],[112.8398,-7.1643],[112.8526,-7.1654],[112.8587,-7.1631],[112.8648,-7.1627],[112.8783,-7.1684],[112.8857,-7.1726],[112.8912,-7.178],[112.9019,-7.1806],[112.9055,-7.1798],[112.9112,-7.1822],[112.9132,-7.1851],[112.9184,-7.1831],[112.9261,-7.1863],[112.9469,-7.1932],[112.9519,-7.1926],[112.9648,-7.1997],[112.9762,-7.1989],[112.9876,-7.2011],[112.9959,-7.2044],[112.9976,-7.2088],[113.0013,-7.2094],[113.0078,-7.2063],[113.0138,-7.2055],[113.0168,-7.2079],[113.0291,-7.2114],[113.0404,-7.2129],[113.0449,-7.2015],[113.0503,-7.1958],[113.0551,-7.1947],[113.0609,-7.1962],[113.0613,-7.1902],[113.0482,-7.1838],[113.0501,-7.1785],[113.0563,-7.1752],[113.0548,-7.1696],[113.0576,-7.1637],[113.0667,-7.1639],[113.0707,-7.1621],[113.0758,-7.1515],[113.0789,-7.151],[113.0927,-7.1578],[113.0972,-7.1551],[113.0936,-7.1505],[113.0953,-7.148],[113.0942,-7.1361],[113.0928,-7.1334],[113.0962,-7.1274],[113.1033,-7.1261],[113.1076,-7.1172],[113.1058,-7.112],[113.1073,-7.108],[113.114,-7.1108],[113.1127,-7.1055],[113.116,-7.1042],[113.1119,-7.0952],[113.1097,-7.0828],[113.1147,-7.0787],[113.1201,-7.0801],[113.1195,-7.0659],[113.1166,-7.0614],[113.112,-7.0597],[113.1135,-7.0531],[113.1112,-7.0493],[113.1164,-7.0475],[113.1142,-7.041],[113.1162,-7.0374],[113.1152,-7.0317],[113.1282,-7.0366],[113.1332,-7.0359],[113.1342,-7.023],[113.139,-7.0195],[113.1423,-7.0141],[113.1388,-7.006],[113.1414,-6.9997],[113.1449,-6.9986],[113.1465,-6.9935],[113.1449,-6.9885],[113.1478,-6.9846],[113.1416,-6.9816],[113.1338,-6.9761],[113.122,-6.9855],[113.1173,-6.9839],[113.1109,-6.989],[113.105,-6.9871],[113.1078,-6.9804],[113.108,-6.9755],[113.1027,-6.9646],[113.103,-6.9584],[113.1076,-6.9563],[113.0969,-6.9492],[113.0952,-6.9453],[113.1008,-6.9361],[113.1016,-6.9318],[113.1064,-6.9333],[113.1112,-6.9374],[113.1154,-6.9368],[113.1175,-6.9251],[113.1163,-6.9154],[113.1189,-6.9048],[113.1266,-6.9062],[113.1273,-6.8986],[113.1245,-6.894]]}},{"type":"Feature","properties":{"mhid":"1332:262","alt_name":"KABUPATEN SAMPANG","latitude":-7.05,"longitude":113.25,"sample_value":920},"geometry":{"type":"LineString","coordinates":[[113.2061,-7.3067],[113.2027,-7.3103],[113.2126,-7.3134],[113.2204,-7.3141],[113.2241,-7.3099],[113.2192,-7.3083],[113.2061,-7.3067]]}},{"type":"Feature","properties":{"mhid":"1332:262","alt_name":"KABUPATEN SAMPANG","latitude":-7.05,"longitude":113.25,"sample_value":920},"geometry":{"type":"LineString","coordinates":[[113.4834,-6.8971],[113.4672,-6.8935],[113.4523,-6.8919],[113.4489,-6.8901],[113.44,-6.8889],[113.4305,-6.8898],[113.4195,-6.888],[113.4135,-6.8894],[113.4071,-6.8879],[113.3932,-6.8896],[113.3854,-6.8882],[113.3793,-6.8896],[113.3757,-6.8883],[113.3625,-6.8885],[113.3526,-6.8899],[113.3473,-6.8885],[113.3235,-6.8881],[113.3142,-6.8907],[113.312,-6.8928],[113.3014,-6.8915],[113.2951,-6.889],[113.2817,-6.8919],[113.2763,-6.8901],[113.2587,-6.8895],[113.2451,-6.8922],[113.2339,-6.8906],[113.2271,-6.8908],[113.2181,-6.8946],[113.1987,-6.8979],[113.1897,-6.8939],[113.1867,-6.8946],[113.1741,-6.8934],[113.1691,-6.8913],[113.162,-6.895],[113.1562,-6.8953],[113.15,-6.8915],[113.1417,-6.8921],[113.1365,-6.8944],[113.1293,-6.8916],[113.1245,-6.894],[113.1273,-6.8986],[113.1266,-6.9062],[113.1189,-6.9048],[113.1163,-6.9154],[113.1175,-6.9251],[113.1154,-6.9368],[113.1112,-6.9374],[113.1064,-6.9333],[113.1016,-6.9318],[113.1008,-6.9361],[113.0952,-6.9453],[113.0969,-6.9492],[113.1076,-6.9563],[113.103,-6.9584],[113.1027,-6.9646],[113.108,-6.9755],[113.1078,-6.9804],[113.105,-6.9871],[113.1109,-6.989],[113.1173,-6.9839],[113.122,-6.9855],[113.1338,-6.9761],[113.1416,-6.9816],[113.1478,-6.9846],[113.1449,-6.9885],[113.1465,-6.9935],[113.1449,-6.9986],[113.1414,-6.9997],[113.1388,-7.006],[113.1423,-7.0141],[113.139,-7.0195],[113.1342,-7.023],[113.1332,-7.0359],[113.1282,-7.0366],[113.1152,-7.0317],[113.1162,-7.0374],[113.1142,-7.041],[113.1164,-7.0475],[113.1112,-7.0493],[113.1135,-7.0531],[113.112,-7.0597],[113.1166,-7.0614],[113.1195,-7.0659],[113.1201,-7.0801],[113.1147,-7.0787],[113.1097,-7.0828],[113.1119,-7.0952],[113.116,-7.1042],[113.1127,-7.1055],[113.114,-7.1108],[113.1073,-7.108],[113.1058,-7.112],[113.1076,-7.1172],[113.1033,-7.1261],[113.0962,-7.1274],[113.0928,-7.1334],[113.0942,-7.1361],[113.0953,-7.148],[113.0936,-7.1505],[113.0972,-7.1551],[113.0927,-7.1578],[113.0789,-7.151],[113.0758,-7.1515],[113.0707,-7.1621],[113.0667,-7.1639],[113.0576,-7.1637],[113.0548,-7.1696],[113.0563,-7.1752],[113.0501,-7.1785],[113.0482,-7.1838],[113.0613,-7.1902],[113.0609,-7.1962],[113.0551,-7.1947],[113.0503,-7.1958],[113.0449,-7.2015],[113.0404,-7.2129],[113.0459,-7.2156],[113.0509,-7.2158],[113.0623,-7.2191],[113.0728,-7.2232],[113.0809,-7.2234],[113.092,-7.2277],[113.1081,-7.2282],[113.1328,-7.2231],[113.1426,-7.2247],[113.149,-7.2239],[113.1498,-7.2165],[113.1444,-7.2131],[113.1471,-7.2103],[113.1561,-7.2063],[113.1626,-7.2097],[113.1655,-7.2148],[113.167,-7.2231],[113.1698,-7.2275],[113.1863,-7.2257],[113.197,-7.2229],[113.2132,-7.2214],[113.2185,-7.2202],[113.2368,-7.2215],[113.2609,-7.2249],[113.2683,-7.2214],[113.2747,-7.2154],[113.2938,-7.2177],[113.2995,-7.2168],[113.3076,-7.2184],[113.3178,-7.2186],[113.3268,-7.2135],[113.3383,-7.2156],[113.355,-7.2156],[113.3789,-7.2164],[113.3935,-7.2176],[113.3935,-7.2111],[113.3968,-7.2021],[113.3879,-7.1962],[113.386,-7.1905],[113.3805,-7.1916],[113.3819,-7.2046],[113.3775,-7.209],[113.3765,-7.1994],[113.3732,-7.194],[113.3764,-7.1894],[113.3814,-7.1759],[113.3786,-7.1742],[113.3796,-7.1502],[113.3783,-7.1495],[113.3676,-7.1533],[113.3575,-7.1538],[113.3588,-7.1447],[113.3636,-7.1427],[113.3675,-7.1364],[113.3643,-7.1314],[113.3666,-7.1281],[113.3672,-7.1169],[113.3692,-7.1099],[113.3626,-7.1063],[113.3636,-7.1004],[113.3765,-7.0951],[113.383,-7.0867],[113.3824,-7.0798],[113.3932,-7.0738],[113.3946,-7.0701],[113.3945,-7.0619],[113.3962,-7.0556],[113.3935,-7.0478],[113.397,-7.0395],[113.3925,-7.0354],[113.3947,-7.03],[113.3984,-7.0299],[113.4099,-7.0202],[113.4168,-7.0169],[113.4176,-7.0131],[113.4216,-7.0115],[113.4198,-7.0055],[113.423,-7.0008],[113.4204,-6.996],[113.4208,-6.9898],[113.4249,-6.9818],[113.429,-6.9807],[113.4299,-6.9738],[113.4337,-6.9703],[113.4366,-6.9601],[113.4446,-6.9558],[113.4478,-6.9517],[113.4534,-6.9508],[113.4595,-6.9469],[113.4611,-6.9355],[113.4703,-6.9327],[113.4779,-6.9246],[113.4759,-6.9141],[113.476,-6.9091],[113.4824,-6.903],[113.4834,-6.8971]]}},{"type":"Feature","properties":{"mhid":"1332:263","alt_name":"KABUPATEN PAMEKASAN","latitude":-7.06667,"longitude":113.5,"sample_value":129},"geometry":{"type":"LineString","coordinates":[[113.5021,-7.2406],[113.4997,-7.2456],[113.5054,-7.2526],[113.5099,-7.254],[113.5137,-7.2526],[113.5085,-7.2446],[113.5021,-7.2406]]}},{"type":"Feature","properties":{"mhid":"1332:263","alt_name":"KABUPATEN PAMEKASAN","latitude":-7.06667,"longitude":113.5,"sample_value":129},"geometry":{"type":"LineString","coordinates":[[113.602,-7.1277],[113.6023,-7.1215],[113.606,-7.1179],[113.607,-7.1135],[113.6122,-7.105],[113.6209,-7.1037],[113.6219,-7.0897],[113.6186,-7.0839],[113.614,-7.0809],[113.6138,-7.078],[113.6073,-7.0739],[113.6063,-7.0674],[113.6023,-7.0674],[113.6003,-7.0631],[113.5935,-7.062],[113.6021,-7.0484],[113.605,-7.0451],[113.6,-7.0421],[113.5973,-7.038],[113.5832,-7.0415],[113.5775,-7.0337],[113.5808,-7.0257],[113.5814,-7.0188],[113.5884,-7.0183],[113.5949,-7.0156],[113.5953,-7.0111],[113.6078,-7.0129],[113.6114,-7.0095],[113.6071,-7.0056],[113.6122,-6.992],[113.6117,-6.9827],[113.6084,-6.9743],[113.6159,-6.9689],[113.6257,-6.966],[113.6275,-6.9614],[113.6273,-6.9516],[113.6328,-6.9435],[113.6317,-6.939],[113.6365,-6.9389],[113.6402,-6.9278],[113.6458,-6.9255],[113.65,-6.9192],[113.6483,-6.9151],[113.6417,-6.9174],[113.6357,-6.9134],[113.6392,-6.9009],[113.638,-6.8922],[113.6391,-6.8876],[113.6243,-6.8903],[113.6126,-6.8888],[113.5895,-6.8889],[113.5719,-6.8931],[113.564,-6.8925],[113.552,-6.8938],[113.5332,-6.8944],[113.525,-6.8955],[113.5151,-6.8953],[113.5047,-6.8975],[113.4834,-6.8971],[113.4824,-6.903],[113.476,-6.9091],[113.4759,-6.9141],[113.4779,-6.9246],[113.4703,-6.9327],[113.4611,-6.9355],[113.4595,-6.9469],[113.4534,-6.9508],[113.4478,-6.9517],[113.4446,-6.9558],[113.4366,-6.9601],[113.4337,-6.9703],[113.4299,-6.9738],[113.429,-6.9807],[113.4249,-6.9818],[113.4208,-6.9898],[113.4204,-6.996],[113.423,-7.0008],[113.4198,-7.0055],[113.4216,-7.0115],[113.4176,-7.0131],[113.4168,-7.0169],[113.4099,-7.0202],[113.3984,-7.0299],[113.3947,-7.03],[113.3925,-7.0354],[113.397,-7.0395],[113.3935,-7.0478],[113.3962,-7.0556],[113.3945,-7.0619],[113.3946,-7.0701],[113.3932,-7.0738],[113.3824,-7.0798],[113.383,-7.0867],[113.3765,-7.0951],[113.3636,-7.1004],[113.3626,-7.1063],[113.3692,-7.1099],[113.3672,-7.1169],[113.3666,-7.1281],[113.3643,-7.1314],[113.3675,-7.1364],[113.3636,-7.1427],[113.3588,-7.1447],[113.3575,-7.1538],[113.3676,-7.1533],[113.3783,-7.1495],[113.3796,-7.1502],[113.3786,-7.1742],[113.3814,-7.1759],[113.3764,-7.1894],[113.3732,-7.194],[113.3765,-7.1994],[113.3775,-7.209],[113.3819,-7.2046],[113.3805,-7.1916],[113.386,-7.1905],[113.3879,-7.1962],[113.3968,-7.2021],[113.3935,-7.2111],[113.3935,-7.2176],[113.407,-7.2184],[113.4107,-7.2177],[113.4278,-7.2228],[113.4354,-7.2205],[113.4433,-7.2207],[113.4598,-7.2227],[113.4684,-7.2211],[113.4771,-7.2243],[113.4967,-7.2267],[113.505,-7.2315],[113.5114,-7.2402],[113.5067,-7.2427],[113.5152,-7.2525],[113.5209,-7.249],[113.5377,-7.236],[113.5466,-7.2336],[113.5495,-7.2306],[113.5596,-7.2135],[113.5598,-7.2063],[113.5564,-7.2026],[113.5636,-7.1972],[113.5662,-7.1926],[113.5662,-7.1821],[113.5703,-7.1798],[113.5732,-7.1705],[113.5731,-7.1634],[113.5767,-7.1596],[113.5858,-7.1463],[113.5893,-7.139],[113.6023,-7.1289],[113.602,-7.1277]]}},{"type":"Feature","properties":{"mhid":"1332:75","alt_name":"KOTA BUKITTINGGI","latitude":-0.275,"longitude":100.375,"sample_value":190},"geometry":{"type":"LineString","coordinates":[[100.338,-0.2757],[100.3329,-0.2799],[100.3426,-0.2943],[100.3469,-0.2991],[100.3587,-0.3064],[100.3597,-0.3105],[100.3636,-0.311],[100.3647,-0.3163],[100.3709,-0.3223],[100.377,-0.322],[100.3843,-0.3244],[100.3952,-0.3258],[100.4013,-0.3227],[100.4056,-0.318],[100.3985,-0.3071],[100.3966,-0.3066],[100.3975,-0.2966],[100.396,-0.2904],[100.3926,-0.2908],[100.3893,-0.285],[100.3846,-0.2829],[100.3816,-0.2852],[100.3748,-0.2865],[100.3685,-0.2811],[100.3595,-0.2847],[100.3489,-0.2759],[100.338,-0.2757]]}},{"type":"Feature","properties":{"mhid":"1332:76","alt_name":"KOTA PAYAKUMBUH","latitude":-0.23333,"longitude":100.63333,"sample_value":386},"geometry":{"type":"LineString","coordinates":[[100.6327,-0.1914],[100.6285,-0.1935],[100.6119,-0.195],[100.6057,-0.1962],[100.6008,-0.1917],[100.5922,-0.1938],[100.5836,-0.2014],[100.5832,-0.2102],[100.5881,-0.2123],[100.5993,-0.2195],[100.5953,-0.2236],[100.5915,-0.2306],[100.5861,-0.2374],[100.58,-0.2431],[100.5907,-0.2473],[100.5984,-0.265],[100.6058,-0.2705],[100.6187,-0.2749],[100.6226,-0.2718],[100.6343,-0.268],[100.6461,-0.2742],[100.6491,-0.2667],[100.6473,-0.2598],[100.6462,-0.25],[100.6573,-0.2438],[100.6606,-0.241],[100.6675,-0.2433],[100.6674,-0.2382],[100.677,-0.2315],[100.6753,-0.2204],[100.6772,-0.2145],[100.6853,-0.2162],[100.6859,-0.2105],[100.68,-0.2043],[100.6774,-0.199],[100.6776,-0.1923],[100.6718,-0.1893],[100.6651,-0.1907],[100.6608,-0.1862],[100.656,-0.1882],[100.6364,-0.1841],[100.6324,-0.1871],[100.6327,-0.1914]]}},{"type":"Feature","properties":{"mhid":"1332:77","alt_name":"KOTA PARIAMAN","latitude":-0.62682,"longitude":100.12047,"sample_value":226},"geometry":{"type":"LineString","coordinates":[[100.175,-0.6072],[100.1736,-0.6006],[100.1706,-0.5998],[100.1669,-0.6034],[100.1588,-0.5942],[100.1526,-0.5943],[100.1551,-0.5889],[100.1492,-0.5892],[100.1463,-0.5857],[100.1495,-0.5828],[100.1506,-0.5747],[100.1495,-0.5707],[100.145,-0.5727],[100.1312,-0.5713],[100.1324,-0.5625],[100.1357,-0.5611],[100.135,-0.554],[100.1299,-0.5484],[100.1246,-0.5534],[100.1117,-0.5573],[100.1043,-0.5619],[100.1012,-0.5597],[100.0973,-0.5626],[100.0927,-0.5616],[100.0908,-0.568],[100.097,-0.5813],[100.1028,-0.5892],[100.1131,-0.6092],[100.1157,-0.6157],[100.1156,-0.6279],[100.1212,-0.6349],[100.1277,-0.6459],[100.1431,-0.6591],[100.1593,-0.6757],[100.1579,-0.6696],[100.1535,-0.666],[100.1634,-0.6534],[100.1645,-0.6502],[100.1699,-0.6507],[100.173,-0.6486],[100.1713,-0.6445],[100.1734,-0.6351],[100.1767,-0.6312],[100.1732,-0.6277],[100.1744,-0.6182],[100.1797,-0.6166],[100.1816,-0.6135],[100.1801,-0.6084],[100.175,-0.6072]]}},{"type":"Feature","properties":{"mhid":"1332:216","alt_name":"KABUPATEN TEMANGGUNG","latitude":-7.25,"longitude":110.11667,"sample_value":404},"geometry":{"type":"LineString","coordinates":[[110.2586,-7.1985],[110.2526,-7.1915],[110.2519,-7.1887],[110.2444,-7.1842],[110.2399,-7.1875],[110.2298,-7.1876],[110.221,-7.1841],[110.2141,-7.1857],[110.2094,-7.1812],[110.2083,-7.1772],[110.203,-7.1775],[110.196,-7.175],[110.1913,-7.1693],[110.1927,-7.1647],[110.1849,-7.1517],[110.1805,-7.1525],[110.1777,-7.1485],[110.169,-7.1434],[110.1664,-7.1452],[110.1614,-7.1434],[110.1523,-7.1473],[110.146,-7.1433],[110.1458,-7.138],[110.1411,-7.1382],[110.1448,-7.1253],[110.1505,-7.1257],[110.1536,-7.1278],[110.1598,-7.1253],[110.1612,-7.1167],[110.1673,-7.1124],[110.1742,-7.1116],[110.1886,-7.1083],[110.1924,-7.1066],[110.1879,-7.1018],[110.1935,-7.0956],[110.1907,-7.0922],[110.1932,-7.0891],[110.1911,-7.0856],[110.1934,-7.0814],[110.1827,-7.0796],[110.1772,-7.0824],[110.1768,-7.0921],[110.1731,-7.1003],[110.1575,-7.0988],[110.1483,-7.0989],[110.1383,-7.0967],[110.1295,-7.0962],[110.1251,-7.0973],[110.1209,-7.0928],[110.1179,-7.0952],[110.11,-7.0952],[110.0994,-7.1027],[110.0905,-7.1073],[110.0856,-7.1113],[110.082,-7.1165],[110.0766,-7.1209],[110.0607,-7.1197],[110.0551,-7.1236],[110.0501,-7.1242],[110.0426,-7.1327],[110.0389,-7.1339],[110.0271,-7.1469],[110.0175,-7.1495],[110.0084,-7.1595],[109.9989,-7.1632],[109.9884,-7.1724],[109.9816,-7.18],[109.9759,-7.1825],[109.9694,-7.188],[109.9564,-7.1947],[109.9486,-7.1954],[109.9404,-7.1983],[109.9341,-7.2023],[109.9372,-7.2097],[109.9469,-7.2167],[109.95,-7.217],[109.9592,-7.2326],[109.962,-7.2331],[109.9707,-7.2401],[109.9726,-7.2437],[109.9773,-7.2457],[109.9886,-7.2566],[109.9948,-7.261],[109.9981,-7.2709],[109.9943,-7.2814],[109.9945,-7.2891],[109.9964,-7.2919],[109.9962,-7.3068],[109.9991,-7.3142],[110.0059,-7.319],[110.0184,-7.3316],[110.0315,-7.3487],[110.0379,-7.3533],[110.0522,-7.3687],[110.0629,-7.3763],[110.0714,-7.3803],[110.0742,-7.3857],[110.0786,-7.3834],[110.0935,-7.3878],[110.0979,-7.3878],[110.1207,-7.3903],[110.1277,-7.3871],[110.134,-7.3885],[110.1415,-7.387],[110.1483,-7.3837],[110.1599,-7.3861],[110.1716,-7.3814],[110.1784,-7.3813],[110.1813,-7.3837],[110.1897,-7.3832],[110.1923,-7.38],[110.1983,-7.3812],[110.2051,-7.387],[110.2119,-7.3855],[110.2163,-7.3881],[110.2147,-7.3952],[110.2218,-7.3919],[110.2259,-7.383],[110.2342,-7.3799],[110.2361,-7.3732],[110.2495,-7.3691],[110.2546,-7.3703],[110.2571,-7.3772],[110.2629,-7.3809],[110.2704,-7.3794],[110.2715,-7.375],[110.2813,-7.3693],[110.2815,-7.3679],[110.2917,-7.3615],[110.3037,-7.3578],[110.3053,-7.3559],[110.3152,-7.3534],[110.3249,-7.3412],[110.3191,-7.3364],[110.3199,-7.3304],[110.3264,-7.3273],[110.328,-7.3203],[110.3281,-7.314],[110.3255,-7.309],[110.3181,-7.3123],[110.3135,-7.3088],[110.3175,-7.3048],[110.3245,-7.304],[110.3282,-7.3015],[110.3272,-7.296],[110.3214,-7.2871],[110.3165,-7.2843],[110.3096,-7.278],[110.3037,-7.2744],[110.2923,-7.2653],[110.2831,-7.2537],[110.2758,-7.2515],[110.2711,-7.252],[110.2705,-7.246],[110.2738,-7.2362],[110.2669,-7.2327],[110.264,-7.2245],[110.2655,-7.2185],[110.2572,-7.216],[110.2523,-7.2039],[110.2528,-7.2002],[110.2586,-7.1985]]}},{"type":"Feature","properties":{"mhid":"1332:217","alt_name":"KABUPATEN KENDAL","latitude":-7.0256,"longitude":110.1685,"sample_value":573},"geometry":{"type":"LineString","coordinates":[[110.3142,-6.9377],[110.3052,-6.9341],[110.3062,-6.9287],[110.3006,-6.9285],[110.2878,-6.9209],[110.2786,-6.9178],[110.2562,-6.9125],[110.2463,-6.9036],[110.2418,-6.8971],[110.2395,-6.8893],[110.2309,-6.8863],[110.2263,-6.8799],[110.2188,-6.8636],[110.2188,-6.8605],[110.2098,-6.8574],[110.2019,-6.8562],[110.1977,-6.8511],[110.1875,-6.851],[110.1753,-6.8474],[110.171,-6.8446],[110.1578,-6.85],[110.1651,-6.8599],[110.1615,-6.8632],[110.1317,-6.8808],[110.1101,-6.8889],[110.0974,-6.8923],[110.0722,-6.9007],[110.0502,-6.9054],[110.0424,-6.9045],[110.0414,-6.9067],[110.0342,-6.908],[110.03,-6.9124],[110.0333,-6.9139],[110.0336,-6.9181],[110.0411,-6.918],[110.0452,-6.9215],[110.0437,-6.9246],[110.0307,-6.9293],[110.0354,-6.932],[110.0341,-6.937],[110.0505,-6.9434],[110.0472,-6.9455],[110.0494,-6.9509],[110.0533,-6.954],[110.0513,-6.959],[110.048,-6.9586],[110.0501,-6.9691],[110.0496,-6.9806],[110.0449,-6.9798],[110.0423,-6.9895],[110.0361,-6.9937],[110.032,-6.9921],[110.0299,-6.997],[110.0248,-6.9994],[110.0235,-7.0059],[110.0169,-7.0103],[110.0119,-7.0171],[110.0037,-7.0193],[109.9982,-7.026],[109.9952,-7.0272],[109.9884,-7.0246],[109.983,-7.032],[109.9776,-7.0313],[109.9736,-7.0349],[109.9748,-7.0417],[109.9736,-7.0483],[109.9775,-7.0495],[109.98,-7.0621],[109.9777,-7.0675],[109.9798,-7.0721],[109.9781,-7.0749],[109.9775,-7.0827],[109.9738,-7.0881],[109.9699,-7.0895],[109.9633,-7.0954],[109.9634,-7.1],[109.9597,-7.1059],[109.9594,-7.1102],[109.9554,-7.1143],[109.9536,-7.1202],[109.9486,-7.1268],[109.9491,-7.1321],[109.9453,-7.1342],[109.9399,-7.1417],[109.9388,-7.1477],[109.9398,-7.1576],[109.9322,-7.1715],[109.9301,-7.1802],[109.9227,-7.1868],[109.9248,-7.1886],[109.9309,-7.1952],[109.9341,-7.2023],[109.9404,-7.1983],[109.9486,-7.1954],[109.9564,-7.1947],[109.9694,-7.188],[109.9759,-7.1825],[109.9816,-7.18],[109.9884,-7.1724],[109.9989,-7.1632],[110.0084,-7.1595],[110.0175,-7.1495],[110.0271,-7.1469],[110.0389,-7.1339],[110.0426,-7.1327],[110.0501,-7.1242],[110.0551,-7.1236],[110.0607,-7.1197],[110.0766,-7.1209],[110.082,-7.1165],[110.0856,-7.1113],[110.0905,-7.1073],[110.0994,-7.1027],[110.11,-7.0952],[110.1179,-7.0952],[110.1209,-7.0928],[110.1251,-7.0973],[110.1295,-7.0962],[110.1383,-7.0967],[110.1483,-7.0989],[110.1575,-7.0988],[110.1731,-7.1003],[110.1768,-7.0921],[110.1772,-7.0824],[110.1827,-7.0796],[110.1934,-7.0814],[110.1911,-7.0856],[110.1932,-7.0891],[110.1907,-7.0922],[110.1935,-7.0956],[110.1879,-7.1018],[110.1924,-7.1066],[110.1886,-7.1083],[110.1742,-7.1116],[110.1673,-7.1124],[110.1612,-7.1167],[110.1598,-7.1253],[110.1536,-7.1278],[110.1505,-7.1257],[110.1448,-7.1253],[110.1411,-7.1382],[110.1458,-7.138],[110.146,-7.1433],[110.1523,-7.1473],[110.1614,-7.1434],[110.1664,-7.1452],[110.169,-7.1434],[110.1777,-7.1485],[110.1805,-7.1525],[110.1849,-7.1517],[110.1927,-7.1647],[110.1913,-7.1693],[110.196,-7.175],[110.203,-7.1775],[110.2083,-7.1772],[110.2094,-7.1812],[110.2141,-7.1857],[110.221,-7.1841],[110.2298,-7.1876],[110.2399,-7.1875],[110.2444,-7.1842],[110.2519,-7.1887],[110.2526,-7.1915],[110.2586,-7.1985],[110.2697,-7.1965],[110.2725,-7.1999],[110.2764,-7.1991],[110.2857,-7.1904],[110.2969,-7.1952],[110.3204,-7.195],[110.3222,-7.1968],[110.3325,-7.1933],[110.3407,-7.194],[110.3424,-7.1879],[110.3382,-7.1843],[110.3312,-7.1843],[110.3236,-7.1795],[110.3246,-7.1737],[110.329,-7.172],[110.3388,-7.1733],[110.344,-7.1658],[110.3391,-7.1593],[110.332,-7.1579],[110.334,-7.1537],[110.3394,-7.1482],[110.3435,-7.1483],[110.3488,-7.1514],[110.3526,-7.1443],[110.3529,-7.1362],[110.3511,-7.1312],[110.3525,-7.1222],[110.3486,-7.1193],[110.3509,-7.112],[110.3561,-7.1066],[110.352,-7.1018],[110.3474,-7.0903],[110.3427,-7.0906],[110.3448,-7.097],[110.3374,-7.1041],[110.3246,-7.1014],[110.317,-7.1058],[110.3125,-7.1055],[110.3051,-7.1014],[110.3033,-7.0971],[110.3051,-7.0896],[110.3029,-7.0769],[110.3007,-7.0724],[110.3007,-7.0645],[110.2953,-7.0593],[110.2927,-7.052],[110.2854,-7.0519],[110.2749,-7.0487],[110.271,-7.0507],[110.2691,-7.0465],[110.2738,-7.0341],[110.2709,-7.0228],[110.2749,-7.0193],[110.2734,-7.015],[110.2762,-7.0118],[110.284,-7.0127],[110.2809,-6.9989],[110.2863,-6.9938],[110.2829,-6.9906],[110.2852,-6.9828],[110.2932,-6.9822],[110.294,-6.9789],[110.2895,-6.9713],[110.286,-6.9691],[110.2881,-6.9654],[110.2957,-6.9684],[110.2997,-6.9591],[110.2919,-6.9555],[110.2917,-6.9502],[110.2992,-6.941],[110.3059,-6.9375],[110.3142,-6.9377]]}},{"type":"Feature","properties":{"mhid":"1332:218","alt_name":"KABUPATEN BATANG","latitude":-7.03333,"longitude":109.88333,"sample_value":258},"geometry":{"type":"LineString","coordinates":[[110.03,-6.9124],[110.0283,-6.9108],[110.0134,-6.9177],[110.0016,-6.9218],[109.9876,-6.9237],[109.9753,-6.9237],[109.9661,-6.9223],[109.9628,-6.9197],[109.95,-6.9195],[109.9479,-6.9169],[109.9337,-6.9155],[109.9267,-6.9121],[109.9192,-6.9152],[109.9093,-6.9178],[109.8918,-6.918],[109.8677,-6.9147],[109.8477,-6.9079],[109.8208,-6.904],[109.806,-6.8981],[109.7997,-6.8922],[109.786,-6.8891],[109.7711,-6.8868],[109.7586,-6.8833],[109.7504,-6.8792],[109.7404,-6.8776],[109.7144,-6.8686],[109.71,-6.8718],[109.7068,-6.8786],[109.7112,-6.8826],[109.7033,-6.8994],[109.7053,-6.9043],[109.7009,-6.9094],[109.6956,-6.9118],[109.6968,-6.9204],[109.6951,-6.9285],[109.6881,-6.9332],[109.6812,-6.9311],[109.6802,-6.9352],[109.6751,-6.9346],[109.6812,-6.9416],[109.6839,-6.9515],[109.6875,-6.9507],[109.6931,-6.955],[109.6964,-6.9635],[109.7027,-6.9681],[109.7068,-6.9797],[109.7074,-6.9865],[109.7154,-6.988],[109.7217,-6.9866],[109.7307,-7.0028],[109.7361,-7.0037],[109.7442,-6.9954],[109.7482,-6.9996],[109.7468,-7.0049],[109.7477,-7.0117],[109.759,-7.0306],[109.759,-7.0339],[109.7531,-7.0387],[109.7516,-7.0436],[109.7554,-7.0472],[109.756,-7.065],[109.7586,-7.0688],[109.7532,-7.0838],[109.7529,-7.0892],[109.7467,-7.0963],[109.739,-7.0995],[109.7439,-7.1116],[109.7544,-7.1129],[109.763,-7.1165],[109.7664,-7.1148],[109.7719,-7.1168],[109.7746,-7.125],[109.7737,-7.1347],[109.7706,-7.1391],[109.7747,-7.1445],[109.7774,-7.1531],[109.7876,-7.1662],[109.7942,-7.168],[109.7987,-7.1712],[109.8028,-7.1724],[109.8159,-7.1811],[109.8197,-7.1794],[109.8269,-7.1837],[109.8334,-7.1899],[109.842,-7.1863],[109.8458,-7.1828],[109.8477,-7.1779],[109.8645,-7.1865],[109.8745,-7.187],[109.8769,-7.1911],[109.8815,-7.189],[109.8815,-7.1843],[109.8874,-7.1803],[109.8923,-7.1831],[109.899,-7.1901],[109.9006,-7.1941],[109.9047,-7.1962],[109.915,-7.1958],[109.9179,-7.1909],[109.9248,-7.1886],[109.9227,-7.1868],[109.9301,-7.1802],[109.9322,-7.1715],[109.9398,-7.1576],[109.9388,-7.1477],[109.9399,-7.1417],[109.9453,-7.1342],[109.9491,-7.1321],[109.9486,-7.1268],[109.9536,-7.1202],[109.9554,-7.1143],[109.9594,-7.1102],[109.9597,-7.1059],[109.9634,-7.1],[109.9633,-7.0954],[109.9699,-7.0895],[109.9738,-7.0881],[109.9775,-7.0827],[109.9781,-7.0749],[109.9798,-7.0721],[109.9777,-7.0675],[109.98,-7.0621],[109.9775,-7.0495],[109.9736,-7.0483],[109.9748,-7.0417],[109.9736,-7.0349],[109.9776,-7.0313],[109.983,-7.032],[109.9884,-7.0246],[109.9952,-7.0272],[109.9982,-7.026],[110.0037,-7.0193],[110.0119,-7.0171],[110.0169,-7.0103],[110.0235,-7.0059],[110.0248,-6.9994],[110.0299,-6.997],[110.032,-6.9921],[110.0361,-6.9937],[110.0423,-6.9895],[110.0449,-6.9798],[110.0496,-6.9806],[110.0501,-6.9691],[110.048,-6.9586],[110.0513,-6.959],[110.0533,-6.954],[110.0494,-6.9509],[110.0472,-6.9455],[110.0505,-6.9434],[110.0341,-6.937],[110.0354,-6.932],[110.0307,-6.9293],[110.0437,-6.9246],[110.0452,-6.9215],[110.0411,-6.918],[110.0336,-6.9181],[110.0333,-6.9139],[110.03,-6.9124]]}},{"type":"Feature","properties":{"mhid":"1332:219","alt_name":"KABUPATEN PEKALONGAN","latitude":-7.0319,"longitude":109.624,"sample_value":610},"geometry":{"type":"LineString","coordinates":[[109.6659,-6.8517],[109.6606,-6.8486],[109.6579,-6.8502],[109.6528,-6.848],[109.6451,-6.8482],[109.6355,-6.8465],[109.6275,-6.8434],[109.6171,-6.8408],[109.6114,-6.8414],[109.5979,-6.8408],[109.5959,-6.8418],[109.5887,-6.8502],[109.5834,-6.8533],[109.5872,-6.864],[109.5844,-6.8648],[109.5838,-6.8724],[109.5797,-6.8743],[109.5765,-6.8823],[109.569,-6.8821],[109.569,-6.8911],[109.5656,-6.8923],[109.566,-6.8985],[109.5628,-6.9],[109.5649,-6.9072],[109.561,-6.9126],[109.5634,-6.9184],[109.5586,-6.9251],[109.5554,-6.9225],[109.5491,-6.9262],[109.5459,-6.9299],[109.5413,-6.9301],[109.5347,-6.933],[109.5347,-6.9376],[109.531,-6.9382],[109.5211,-6.9432],[109.5193,-6.9486],[109.5124,-6.948],[109.5079,-6.9569],[109.4984,-6.9643],[109.4976,-6.9709],[109.4986,-6.9824],[109.4955,-6.9849],[109.4952,-6.9902],[109.4988,-7],[109.4967,-7.0068],[109.4971,-7.0106],[109.4929,-7.0134],[109.4934,-7.0188],[109.4876,-7.0229],[109.4834,-7.0299],[109.4856,-7.0311],[109.4867,-7.0378],[109.4852,-7.045],[109.4894,-7.0462],[109.4909,-7.05],[109.488,-7.0555],[109.4939,-7.0661],[109.4971,-7.0743],[109.4958,-7.0828],[109.4994,-7.0866],[109.4993,-7.0919],[109.5042,-7.0988],[109.4957,-7.1128],[109.4909,-7.1224],[109.4934,-7.1344],[109.5015,-7.1482],[109.5048,-7.1569],[109.5056,-7.1685],[109.5095,-7.1699],[109.519,-7.1858],[109.5178,-7.188],[109.5244,-7.1945],[109.5252,-7.2016],[109.5205,-7.2049],[109.5212,-7.2163],[109.5248,-7.2207],[109.5306,-7.2225],[109.5323,-7.2307],[109.5383,-7.2394],[109.5386,-7.2444],[109.5464,-7.2364],[109.554,-7.2306],[109.5612,-7.2304],[109.5632,-7.2257],[109.5675,-7.2218],[109.5787,-7.2218],[109.5875,-7.2138],[109.5905,-7.2069],[109.5959,-7.2059],[109.6075,-7.2116],[109.6113,-7.2108],[109.6162,-7.2014],[109.6234,-7.1976],[109.625,-7.1891],[109.628,-7.1889],[109.6365,-7.1762],[109.6413,-7.1762],[109.648,-7.1721],[109.6638,-7.1785],[109.6708,-7.1777],[109.675,-7.1727],[109.6817,-7.174],[109.6831,-7.1851],[109.6916,-7.1952],[109.7041,-7.1953],[109.708,-7.1999],[109.7124,-7.1983],[109.7271,-7.2017],[109.7342,-7.1957],[109.7406,-7.1928],[109.7454,-7.1879],[109.7453,-7.1827],[109.7536,-7.1806],[109.7616,-7.1766],[109.7703,-7.1804],[109.7867,-7.1772],[109.7987,-7.1712],[109.7942,-7.168],[109.7876,-7.1662],[109.7774,-7.1531],[109.7747,-7.1445],[109.7706,-7.1391],[109.7737,-7.1347],[109.7746,-7.125],[109.7719,-7.1168],[109.7664,-7.1148],[109.763,-7.1165],[109.7544,-7.1129],[109.7439,-7.1116],[109.739,-7.0995],[109.7467,-7.0963],[109.7529,-7.0892],[109.7532,-7.0838],[109.7586,-7.0688],[109.756,-7.065],[109.7554,-7.0472],[109.7516,-7.0436],[109.7531,-7.0387],[109.759,-7.0339],[109.759,-7.0306],[109.7477,-7.0117],[109.7468,-7.0049],[109.7482,-6.9996],[109.7442,-6.9954],[109.7361,-7.0037],[109.7307,-7.0028],[109.7217,-6.9866],[109.7154,-6.988],[109.7074,-6.9865],[109.7068,-6.9797],[109.7027,-6.9681],[109.6964,-6.9635],[109.6931,-6.955],[109.6875,-6.9507],[109.6839,-6.9515],[109.6812,-6.9416],[109.6751,-6.9346],[109.6691,-6.9343],[109.668,-6.9281],[109.6694,-6.9228],[109.6587,-6.92],[109.657,-6.922],[109.6448,-6.9211],[109.6422,-6.917],[109.6452,-6.9054],[109.6477,-6.9056],[109.6481,-6.8968],[109.646,-6.894],[109.648,-6.8862],[109.6472,-6.8798],[109.6563,-6.8758],[109.663,-6.8779],[109.6643,-6.8742],[109.6582,-6.8707],[109.6608,-6.8665],[109.66,-6.8593],[109.6632,-6.8593],[109.6659,-6.8517]]}},{"type":"Feature","properties":{"mhid":"1332:220","alt_name":"KABUPATEN PEMALANG","latitude":-7.03333,"longitude":109.4,"sample_value":923},"geometry":{"type":"LineString","coordinates":[[109.5959,-6.8418],[109.5943,-6.8402],[109.5809,-6.8385],[109.5692,-6.835],[109.5618,-6.8291],[109.5444,-6.8121],[109.543,-6.8071],[109.5352,-6.7956],[109.5263,-6.789],[109.5254,-6.7827],[109.5284,-6.7808],[109.5226,-6.7749],[109.5185,-6.7819],[109.5193,-6.7907],[109.512,-6.7902],[109.5065,-6.7853],[109.5032,-6.7925],[109.493,-6.8036],[109.4925,-6.8067],[109.4681,-6.8242],[109.4538,-6.8329],[109.4362,-6.8425],[109.4265,-6.8465],[109.4124,-6.8504],[109.3913,-6.859],[109.3791,-6.8615],[109.3644,-6.8636],[109.3503,-6.8626],[109.3501,-6.8667],[109.3591,-6.871],[109.3597,-6.8822],[109.355,-6.8858],[109.351,-6.8935],[109.3372,-6.9039],[109.3349,-6.9134],[109.3321,-6.9186],[109.3264,-6.9241],[109.3283,-6.9315],[109.3272,-6.9354],[109.3332,-6.9356],[109.3336,-6.9419],[109.3292,-6.9546],[109.332,-6.9628],[109.325,-6.9612],[109.3255,-6.9669],[109.3234,-6.9687],[109.3164,-6.9679],[109.3154,-6.984],[109.3104,-6.9888],[109.3053,-6.989],[109.2938,-6.9937],[109.2912,-6.998],[109.2919,-7.0028],[109.2861,-7.0081],[109.2888,-7.0136],[109.2867,-7.0183],[109.2878,-7.0215],[109.2824,-7.0254],[109.2831,-7.0319],[109.279,-7.033],[109.276,-7.0373],[109.2774,-7.0402],[109.2749,-7.0535],[109.2691,-7.0582],[109.2646,-7.0582],[109.2616,-7.061],[109.2533,-7.0641],[109.2524,-7.0673],[109.2443,-7.0749],[109.2377,-7.0742],[109.2325,-7.0832],[109.2319,-7.0875],[109.2284,-7.09],[109.2256,-7.0976],[109.2241,-7.1072],[109.2195,-7.1227],[109.2143,-7.1294],[109.2087,-7.1287],[109.2022,-7.1309],[109.1953,-7.13],[109.1859,-7.136],[109.1878,-7.1404],[109.192,-7.1423],[109.1944,-7.147],[109.1885,-7.1566],[109.1907,-7.1648],[109.1981,-7.1706],[109.1969,-7.1862],[109.1993,-7.1932],[109.1971,-7.2004],[109.1965,-7.2082],[109.2,-7.2162],[109.2,-7.2242],[109.2091,-7.2306],[109.2103,-7.235],[109.206,-7.2392],[109.2038,-7.2476],[109.2167,-7.2489],[109.2237,-7.2463],[109.2253,-7.2395],[109.2327,-7.2367],[109.2355,-7.233],[109.2495,-7.2272],[109.2543,-7.227],[109.2636,-7.223],[109.276,-7.2219],[109.2773,-7.2201],[109.2844,-7.2205],[109.2878,-7.2182],[109.3065,-7.2141],[109.3166,-7.2141],[109.3193,-7.2125],[109.3275,-7.2135],[109.3338,-7.2115],[109.3476,-7.2045],[109.3651,-7.1974],[109.3727,-7.1965],[109.3764,-7.1923],[109.3816,-7.1903],[109.3894,-7.1924],[109.3917,-7.1979],[109.397,-7.1972],[109.4089,-7.2005],[109.4169,-7.1959],[109.4249,-7.1861],[109.4344,-7.18],[109.4373,-7.1762],[109.4361,-7.1709],[109.4433,-7.1612],[109.4533,-7.1669],[109.4532,-7.1701],[109.4609,-7.1784],[109.4601,-7.1868],[109.4574,-7.191],[109.4574,-7.1968],[109.4622,-7.2039],[109.4694,-7.2099],[109.4799,-7.222],[109.4835,-7.223],[109.4903,-7.2217],[109.4972,-7.2301],[109.5024,-7.234],[109.5067,-7.2396],[109.5133,-7.2352],[109.5196,-7.2361],[109.5286,-7.2335],[109.5323,-7.2307],[109.5306,-7.2225],[109.5248,-7.2207],[109.5212,-7.2163],[109.5205,-7.2049],[109.5252,-7.2016],[109.5244,-7.1945],[109.5178,-7.188],[109.519,-7.1858],[109.5095,-7.1699],[109.5056,-7.1685],[109.5048,-7.1569],[109.5015,-7.1482],[109.4934,-7.1344],[109.4909,-7.1224],[109.4957,-7.1128],[109.5042,-7.0988],[109.4993,-7.0919],[109.4994,-7.0866],[109.4958,-7.0828],[109.4971,-7.0743],[109.4939,-7.0661],[109.488,-7.0555],[109.4909,-7.05],[109.4894,-7.0462],[109.4852,-7.045],[109.4867,-7.0378],[109.4856,-7.0311],[109.4834,-7.0299],[109.4876,-7.0229],[109.4934,-7.0188],[109.4929,-7.0134],[109.4971,-7.0106],[109.4967,-7.0068],[109.4988,-7],[109.4952,-6.9902],[109.4955,-6.9849],[109.4986,-6.9824],[109.4976,-6.9709],[109.4984,-6.9643],[109.5079,-6.9569],[109.5124,-6.948],[109.5193,-6.9486],[109.5211,-6.9432],[109.531,-6.9382],[109.5347,-6.9376],[109.5347,-6.933],[109.5413,-6.9301],[109.5459,-6.9299],[109.5491,-6.9262],[109.5554,-6.9225],[109.5586,-6.9251],[109.5634,-6.9184],[109.561,-6.9126],[109.5649,-6.9072],[109.5628,-6.9],[109.566,-6.8985],[109.5656,-6.8923],[109.569,-6.8911],[109.569,-6.8821],[109.5765,-6.8823],[109.5797,-6.8743],[109.5838,-6.8724],[109.5844,-6.8648],[109.5872,-6.864],[109.5834,-6.8533],[109.5887,-6.8502],[109.5959,-6.8418]]}},{"type":"Feature","properties":{"mhid":"1332:221","alt_name":"KABUPATEN TEGAL","latitude":-7.03333,"longitude":109.16667,"sample_value":918},"geometry":{"type":"LineString","coordinates":[[109.1616,-6.8438],[109.1605,-6.848],[109.1553,-6.8542],[109.15,-6.8652],[109.1466,-6.8791],[109.1474,-6.8863],[109.1377,-6.8857],[109.1323,-6.8868],[109.1327,-6.8922],[109.1231,-6.8994],[109.1186,-6.8973],[109.111,-6.8979],[109.1025,-6.8899],[109.0965,-6.8886],[109.0774,-6.8878],[109.0732,-6.8924],[109.0733,-6.9],[109.0759,-6.9074],[109.0767,-6.919],[109.0792,-6.919],[109.0821,-6.9277],[109.0773,-6.9385],[109.0778,-6.9449],[109.0754,-6.9544],[109.0771,-6.9614],[109.0703,-6.9727],[109.0709,-6.979],[109.0744,-6.9912],[109.0691,-6.991],[109.0698,-6.9829],[109.0688,-6.9739],[109.0641,-6.9767],[109.0481,-6.9785],[109.0484,-6.9809],[109.0442,-6.9865],[109.0373,-6.9863],[109.0286,-6.9845],[109.0261,-6.9874],[109.0293,-6.9956],[109.0272,-7.0035],[109.0187,-7.0247],[109.0262,-7.0376],[109.025,-7.044],[109.0179,-7.0483],[109.0145,-7.046],[109.002,-7.0425],[109.0006,-7.049],[108.9941,-7.052],[108.9891,-7.0595],[108.9842,-7.0615],[108.9734,-7.0598],[108.9693,-7.0604],[108.9669,-7.0669],[108.9762,-7.0742],[108.9786,-7.0789],[108.9778,-7.0839],[108.9838,-7.087],[108.9849,-7.099],[108.9803,-7.1036],[108.9846,-7.1053],[108.9845,-7.1113],[108.98,-7.1113],[108.9801,-7.1188],[108.9763,-7.1216],[108.971,-7.1207],[108.9642,-7.1243],[108.9578,-7.1224],[108.9526,-7.1235],[108.9515,-7.1265],[108.9606,-7.141],[108.9626,-7.1478],[108.9681,-7.1507],[108.9719,-7.1484],[108.9752,-7.1391],[108.9837,-7.1321],[108.9905,-7.1321],[108.9927,-7.1357],[109,-7.1417],[109.0113,-7.1398],[109.0192,-7.1425],[109.0256,-7.1431],[109.0365,-7.1404],[109.0423,-7.1436],[109.0457,-7.1493],[109.0529,-7.1507],[109.0579,-7.1494],[109.0605,-7.1414],[109.0573,-7.1359],[109.0614,-7.1282],[109.0697,-7.1262],[109.0743,-7.1272],[109.0824,-7.1352],[109.0843,-7.1461],[109.0817,-7.1547],[109.0644,-7.1721],[109.0556,-7.1862],[109.0576,-7.1916],[109.0655,-7.197],[109.0729,-7.1984],[109.0775,-7.2009],[109.0786,-7.2123],[109.0829,-7.2156],[109.0941,-7.215],[109.1076,-7.2126],[109.1163,-7.2153],[109.1204,-7.2224],[109.1282,-7.2269],[109.13,-7.2298],[109.1375,-7.2345],[109.1374,-7.2371],[109.1496,-7.2462],[109.1535,-7.2469],[109.1684,-7.2397],[109.1755,-7.2398],[109.1747,-7.2503],[109.1653,-7.2487],[109.1653,-7.2567],[109.1624,-7.2621],[109.1671,-7.2684],[109.1799,-7.2621],[109.1943,-7.2513],[109.2038,-7.2476],[109.206,-7.2392],[109.2103,-7.235],[109.2091,-7.2306],[109.2,-7.2242],[109.2,-7.2162],[109.1965,-7.2082],[109.1971,-7.2004],[109.1993,-7.1932],[109.1969,-7.1862],[109.1981,-7.1706],[109.1907,-7.1648],[109.1885,-7.1566],[109.1944,-7.147],[109.192,-7.1423],[109.1878,-7.1404],[109.1859,-7.136],[109.1953,-7.13],[109.2022,-7.1309],[109.2087,-7.1287],[109.2143,-7.1294],[109.2195,-7.1227],[109.2241,-7.1072],[109.2256,-7.0976],[109.2284,-7.09],[109.2319,-7.0875],[109.2325,-7.0832],[109.2377,-7.0742],[109.2443,-7.0749],[109.2524,-7.0673],[109.2533,-7.0641],[109.2616,-7.061],[109.2646,-7.0582],[109.2691,-7.0582],[109.2749,-7.0535],[109.2774,-7.0402],[109.276,-7.0373],[109.279,-7.033],[109.2831,-7.0319],[109.2824,-7.0254],[109.2878,-7.0215],[109.2867,-7.0183],[109.2888,-7.0136],[109.2861,-7.0081],[109.2919,-7.0028],[109.2912,-6.998],[109.2938,-6.9937],[109.3053,-6.989],[109.3104,-6.9888],[109.3154,-6.984],[109.3164,-6.9679],[109.3234,-6.9687],[109.3255,-6.9669],[109.325,-6.9612],[109.332,-6.9628],[109.3292,-6.9546],[109.3336,-6.9419],[109.3332,-6.9356],[109.3272,-6.9354],[109.3283,-6.9315],[109.3264,-6.9241],[109.3321,-6.9186],[109.3349,-6.9134],[109.3372,-6.9039],[109.351,-6.8935],[109.355,-6.8858],[109.3597,-6.8822],[109.3591,-6.871],[109.3501,-6.8667],[109.3503,-6.8626],[109.3398,-6.8625],[109.3225,-6.8688],[109.3033,-6.8726],[109.2835,-6.8737],[109.2631,-6.8725],[109.2543,-6.8712],[109.2378,-6.8667],[109.2284,-6.8628],[109.2082,-6.863],[109.1899,-6.861],[109.1807,-6.857],[109.1627,-6.8428],[109.1616,-6.8438]]}},{"type":"Feature","properties":{"mhid":"1332:222","alt_name":"KABUPATEN BREBES","latitude":-7.05,"longitude":108.9,"sample_value":83},"geometry":{"type":"LineString","coordinates":[[109.1022,-6.8399],[109.0911,-6.8313],[109.0819,-6.8214],[109.0764,-6.8083],[109.0768,-6.8034],[109.075,-6.7917],[109.0728,-6.7893],[109.0667,-6.7912],[109.0628,-6.788],[109.0632,-6.7832],[109.0607,-6.7787],[109.0638,-6.7684],[109.053,-6.7801],[109.0452,-6.7825],[109.0382,-6.7768],[109.0356,-6.7727],[109.0316,-6.7751],[109.0254,-6.7848],[109.0206,-6.7823],[109.0152,-6.7841],[109.0127,-6.792],[109.0083,-6.7934],[109.0054,-6.7977],[109.0008,-6.7993],[108.995,-6.7977],[108.9897,-6.8089],[108.9796,-6.8064],[108.9727,-6.8062],[108.9748,-6.8148],[108.9728,-6.8199],[108.9596,-6.8282],[108.9495,-6.8309],[108.9364,-6.8288],[108.9191,-6.817],[108.9114,-6.8141],[108.8872,-6.8117],[108.8739,-6.8063],[108.8704,-6.8092],[108.8673,-6.8072],[108.864,-6.8001],[108.8572,-6.7948],[108.8539,-6.795],[108.8476,-6.7884],[108.8452,-6.7778],[108.8482,-6.7728],[108.8444,-6.7646],[108.8378,-6.7709],[108.8331,-6.7692],[108.8322,-6.7644],[108.8338,-6.758],[108.8299,-6.7613],[108.8272,-6.7678],[108.8277,-6.7748],[108.8315,-6.7848],[108.8281,-6.7882],[108.8276,-6.7945],[108.8307,-6.7955],[108.8327,-6.8006],[108.8255,-6.8032],[108.825,-6.8313],[108.8193,-6.8347],[108.8097,-6.8517],[108.8086,-6.8563],[108.8029,-6.8644],[108.8017,-6.869],[108.7941,-6.8749],[108.7852,-6.8799],[108.7797,-6.8746],[108.7778,-6.8771],[108.7805,-6.8829],[108.7747,-6.8831],[108.7706,-6.8898],[108.7717,-6.8935],[108.7651,-6.9031],[108.761,-6.9035],[108.7583,-6.9073],[108.7611,-6.9116],[108.7543,-6.9171],[108.7528,-6.9224],[108.7613,-6.9336],[108.7641,-6.9392],[108.7593,-6.9529],[108.7598,-6.969],[108.7612,-6.9783],[108.7587,-6.9836],[108.7616,-6.9886],[108.7699,-6.9939],[108.7745,-6.9922],[108.7805,-6.9959],[108.7834,-7.0008],[108.7814,-7.004],[108.7906,-7.0123],[108.789,-7.0146],[108.791,-7.0241],[108.7894,-7.0261],[108.7791,-7.0268],[108.7778,-7.0324],[108.7747,-7.0348],[108.7764,-7.0437],[108.7855,-7.0573],[108.783,-7.0645],[108.7837,-7.0698],[108.7779,-7.0762],[108.7746,-7.0829],[108.7744,-7.0893],[108.7784,-7.094],[108.7762,-7.0972],[108.7709,-7.1118],[108.7659,-7.1138],[108.7556,-7.1151],[108.7488,-7.1121],[108.7372,-7.115],[108.7328,-7.1139],[108.7266,-7.115],[108.7234,-7.1187],[108.7222,-7.1256],[108.7163,-7.128],[108.7145,-7.134],[108.7047,-7.1447],[108.6982,-7.1504],[108.6931,-7.1519],[108.694,-7.1598],[108.7001,-7.1669],[108.706,-7.1638],[108.7105,-7.1696],[108.7158,-7.1725],[108.7215,-7.1811],[108.7213,-7.1898],[108.7231,-7.1932],[108.7349,-7.1947],[108.7424,-7.1978],[108.7488,-7.1941],[108.7555,-7.1948],[108.7612,-7.1991],[108.774,-7.1984],[108.7765,-7.2035],[108.7823,-7.2082],[108.7894,-7.2101],[108.7904,-7.2134],[108.7993,-7.2105],[108.8026,-7.2059],[108.8107,-7.2039],[108.8141,-7.2103],[108.8185,-7.2138],[108.8213,-7.2205],[108.8188,-7.2316],[108.828,-7.2344],[108.8295,-7.2324],[108.8397,-7.2368],[108.8508,-7.2382],[108.855,-7.2412],[108.8599,-7.2411],[108.863,-7.2464],[108.8571,-7.2472],[108.853,-7.2523],[108.8559,-7.2603],[108.8617,-7.2635],[108.8625,-7.2687],[108.8676,-7.2726],[108.8716,-7.2717],[108.8775,-7.2733],[108.8826,-7.2725],[108.8845,-7.2752],[108.8934,-7.2764],[108.8922,-7.2826],[108.8961,-7.2855],[108.9095,-7.2883],[108.9138,-7.2931],[108.9124,-7.2957],[108.914,-7.3029],[108.9185,-7.3047],[108.9214,-7.3122],[108.9285,-7.3179],[108.9338,-7.319],[108.9391,-7.3156],[108.9429,-7.3176],[108.9494,-7.3153],[108.9516,-7.3187],[108.9531,-7.332],[108.9593,-7.3317],[108.9623,-7.3338],[108.9671,-7.3322],[108.9756,-7.3349],[108.9836,-7.3332],[108.9852,-7.3346],[109.0005,-7.3335],[109.0029,-7.3351],[109.0085,-7.3337],[109.0144,-7.3351],[109.0239,-7.3322],[109.0257,-7.3269],[109.0297,-7.3276],[109.0352,-7.3413],[109.0349,-7.3458],[109.0308,-7.3497],[109.0362,-7.3515],[109.0469,-7.3391],[109.0566,-7.3401],[109.0633,-7.3394],[109.0688,-7.3322],[109.0704,-7.3258],[109.0762,-7.3137],[109.0839,-7.3047],[109.0943,-7.3028],[109.1046,-7.3025],[109.1077,-7.2963],[109.1139,-7.2948],[109.1143,-7.2923],[109.106,-7.2897],[109.1057,-7.2873],[109.1171,-7.2852],[109.127,-7.2821],[109.1258,-7.2786],[109.1202,-7.2791],[109.1171,-7.2751],[109.1249,-7.2729],[109.1304,-7.2764],[109.1353,-7.2679],[109.1428,-7.2683],[109.147,-7.2665],[109.1579,-7.2676],[109.1631,-7.2711],[109.1671,-7.2684],[109.1624,-7.2621],[109.1653,-7.2567],[109.1653,-7.2487],[109.1747,-7.2503],[109.1755,-7.2398],[109.1684,-7.2397],[109.1535,-7.2469],[109.1496,-7.2462],[109.1374,-7.2371],[109.1375,-7.2345],[109.13,-7.2298],[109.1282,-7.2269],[109.1204,-7.2224],[109.1163,-7.2153],[109.1076,-7.2126],[109.0941,-7.215],[109.0829,-7.2156],[109.0786,-7.2123],[109.0775,-7.2009],[109.0729,-7.1984],[109.0655,-7.197],[109.0576,-7.1916],[109.0556,-7.1862],[109.0644,-7.1721],[109.0817,-7.1547],[109.0843,-7.1461],[109.0824,-7.1352],[109.0743,-7.1272],[109.0697,-7.1262],[109.0614,-7.1282],[109.0573,-7.1359],[109.0605,-7.1414],[109.0579,-7.1494],[109.0529,-7.1507],[109.0457,-7.1493],[109.0423,-7.1436],[109.0365,-7.1404],[109.0256,-7.1431],[109.0192,-7.1425],[109.0113,-7.1398],[109,-7.1417],[108.9927,-7.1357],[108.9905,-7.1321],[108.9837,-7.1321],[108.9752,-7.1391],[108.9719,-7.1484],[108.9681,-7.1507],[108.9626,-7.1478],[108.9606,-7.141],[108.9515,-7.1265],[108.9526,-7.1235],[108.9578,-7.1224],[108.9642,-7.1243],[108.971,-7.1207],[108.9763,-7.1216],[108.9801,-7.1188],[108.98,-7.1113],[108.9845,-7.1113],[108.9846,-7.1053],[108.9803,-7.1036],[108.9849,-7.099],[108.9838,-7.087],[108.9778,-7.0839],[108.9786,-7.0789],[108.9762,-7.0742],[108.9669,-7.0669],[108.9693,-7.0604],[108.9734,-7.0598],[108.9842,-7.0615],[108.9891,-7.0595],[108.9941,-7.052],[109.0006,-7.049],[109.002,-7.0425],[109.0145,-7.046],[109.0179,-7.0483],[109.025,-7.044],[109.0262,-7.0376],[109.0187,-7.0247],[109.0272,-7.0035],[109.0293,-6.9956],[109.0261,-6.9874],[109.0286,-6.9845],[109.0373,-6.9863],[109.0442,-6.9865],[109.0484,-6.9809],[109.0481,-6.9785],[109.0641,-6.9767],[109.0688,-6.9739],[109.0698,-6.9829],[109.0691,-6.991],[109.0744,-6.9912],[109.0709,-6.979],[109.0703,-6.9727],[109.0771,-6.9614],[109.0754,-6.9544],[109.0778,-6.9449],[109.0773,-6.9385],[109.0821,-6.9277],[109.0792,-6.919],[109.0767,-6.919],[109.0759,-6.9074],[109.0733,-6.9],[109.0732,-6.8924],[109.0774,-6.8878],[109.0751,-6.8814],[109.0762,-6.8743],[109.081,-6.8719],[109.082,-6.8588],[109.1022,-6.8399]]}},{"type":"Feature","properties":{"mhid":"1332:223","alt_name":"KOTA MAGELANG","latitude":-7.5,"longitude":110.225,"sample_value":357},"geometry":{"type":"LineString","coordinates":[[110.2256,-7.4377],[110.2192,-7.4387],[110.2119,-7.4478],[110.2139,-7.4506],[110.21,-7.4598],[110.2115,-7.4614],[110.2099,-7.4741],[110.2061,-7.4797],[110.2076,-7.4818],[110.2042,-7.4886],[110.2042,-7.4936],[110.202,-7.4991],[110.2067,-7.504],[110.2102,-7.5007],[110.2143,-7.5047],[110.2182,-7.5014],[110.2218,-7.5037],[110.2319,-7.5047],[110.2338,-7.4979],[110.2373,-7.4932],[110.2356,-7.4895],[110.2345,-7.4799],[110.2315,-7.4768],[110.2275,-7.4662],[110.23,-7.4558],[110.2278,-7.4493],[110.2309,-7.4456],[110.2256,-7.4377]]}},{"type":"Feature","properties":{"mhid":"1332:224","alt_name":"KOTA SURAKARTA","latitude":-7.55,"longitude":110.81667,"sample_value":717},"geometry":{"type":"LineString","coordinates":[[110.8007,-7.5339],[110.7965,-7.5486],[110.7872,-7.5482],[110.7815,-7.5454],[110.7773,-7.5467],[110.771,-7.5453],[110.7691,-7.5514],[110.7786,-7.5543],[110.7782,-7.5605],[110.7841,-7.5645],[110.7839,-7.5719],[110.7878,-7.5751],[110.7934,-7.5722],[110.8018,-7.5715],[110.8046,-7.5737],[110.8066,-7.5796],[110.8177,-7.5889],[110.8188,-7.5947],[110.8221,-7.5952],[110.8296,-7.593],[110.8323,-7.5949],[110.8406,-7.5895],[110.8411,-7.5821],[110.8479,-7.5726],[110.8536,-7.5749],[110.8549,-7.5699],[110.861,-7.5671],[110.8621,-7.5611],[110.866,-7.559],[110.8683,-7.5463],[110.8609,-7.5467],[110.8627,-7.5414],[110.8578,-7.5407],[110.8561,-7.5371],[110.8491,-7.5332],[110.8393,-7.5333],[110.8235,-7.5279],[110.8174,-7.5289],[110.8157,-7.5232],[110.8102,-7.527],[110.807,-7.5329],[110.8007,-7.5339]]}},{"type":"Feature","properties":{"mhid":"1332:225","alt_name":"KOTA SALATIGA","latitude":-7.33278,"longitude":110.48333,"sample_value":934},"geometry":{"type":"LineString","coordinates":[[110.4884,-7.2921],[110.4847,-7.286],[110.4691,-7.2969],[110.4713,-7.3049],[110.4756,-7.3092],[110.4761,-7.3125],[110.4723,-7.3253],[110.4722,-7.3317],[110.4696,-7.3372],[110.4714,-7.3455],[110.4749,-7.3475],[110.4748,-7.3601],[110.4782,-7.3707],[110.4768,-7.3729],[110.4802,-7.3788],[110.4882,-7.3768],[110.4912,-7.3816],[110.4924,-7.3888],[110.5041,-7.3866],[110.5103,-7.3869],[110.5121,-7.3793],[110.5161,-7.3791],[110.5154,-7.367],[110.5168,-7.363],[110.5217,-7.3634],[110.5334,-7.3603],[110.5344,-7.3545],[110.5287,-7.3441],[110.5299,-7.3398],[110.5235,-7.3302],[110.5249,-7.3268],[110.5166,-7.3188],[110.5181,-7.3041],[110.5207,-7.3024],[110.5185,-7.2966],[110.5132,-7.2942],[110.5106,-7.3019],[110.5,-7.2996],[110.4915,-7.2912],[110.4884,-7.2921]]}},{"type":"Feature","properties":{"mhid":"1332:226","alt_name":"KOTA SEMARANG","latitude":-7.03333,"longitude":110.38333,"sample_value":859},"geometry":{"type":"LineString","coordinates":[[110.4632,-6.9315],[110.4567,-6.9354],[110.443,-6.9383],[110.4417,-6.9464],[110.4368,-6.9433],[110.4291,-6.9444],[110.4243,-6.9388],[110.4234,-6.9497],[110.4195,-6.9509],[110.4194,-6.9443],[110.409,-6.9472],[110.4054,-6.9508],[110.4015,-6.9515],[110.398,-6.9476],[110.3932,-6.9456],[110.3867,-6.9498],[110.3768,-6.9509],[110.3743,-6.9541],[110.3624,-6.9545],[110.3403,-6.948],[110.3199,-6.939],[110.3142,-6.9377],[110.3059,-6.9375],[110.2992,-6.941],[110.2917,-6.9502],[110.2919,-6.9555],[110.2997,-6.9591],[110.2957,-6.9684],[110.2881,-6.9654],[110.286,-6.9691],[110.2895,-6.9713],[110.294,-6.9789],[110.2932,-6.9822],[110.2852,-6.9828],[110.2829,-6.9906],[110.2863,-6.9938],[110.2809,-6.9989],[110.284,-7.0127],[110.2762,-7.0118],[110.2734,-7.015],[110.2749,-7.0193],[110.2709,-7.0228],[110.2738,-7.0341],[110.2691,-7.0465],[110.271,-7.0507],[110.2749,-7.0487],[110.2854,-7.0519],[110.2927,-7.052],[110.2953,-7.0593],[110.3007,-7.0645],[110.3007,-7.0724],[110.3029,-7.0769],[110.3051,-7.0896],[110.3033,-7.0971],[110.3051,-7.1014],[110.3125,-7.1055],[110.317,-7.1058],[110.3246,-7.1014],[110.3374,-7.1041],[110.3448,-7.097],[110.3427,-7.0906],[110.3474,-7.0903],[110.352,-7.1018],[110.3561,-7.1066],[110.36,-7.1047],[110.3711,-7.1075],[110.375,-7.0964],[110.3785,-7.1006],[110.3764,-7.1073],[110.3842,-7.1141],[110.3899,-7.1125],[110.3957,-7.1144],[110.4016,-7.1098],[110.4162,-7.1084],[110.4219,-7.1032],[110.4231,-7.0963],[110.4287,-7.092],[110.4463,-7.0907],[110.4535,-7.0871],[110.4543,-7.0788],[110.4678,-7.0794],[110.4769,-7.0838],[110.4776,-7.0854],[110.4847,-7.0813],[110.4999,-7.066],[110.4909,-7.0594],[110.491,-7.0553],[110.4825,-7.0454],[110.4874,-7.0311],[110.494,-7.0302],[110.498,-7.0271],[110.4978,-7.0208],[110.4995,-7.0164],[110.5037,-7.0149],[110.5039,-7.0107],[110.4904,-7.0043],[110.497,-6.9951],[110.5012,-6.9922],[110.503,-6.9858],[110.5022,-6.9792],[110.5054,-6.976],[110.5012,-6.9628],[110.5028,-6.9589],[110.501,-6.9526],[110.491,-6.9552],[110.4922,-6.9475],[110.4809,-6.9454],[110.4734,-6.9421],[110.4632,-6.9315]]}},{"type":"Feature","properties":{"mhid":"1332:227","alt_name":"KOTA PEKALONGAN","latitude":-6.9,"longitude":109.68333,"sample_value":594},"geometry":{"type":"LineString","coordinates":[[109.7144,-6.8686],[109.7137,-6.8671],[109.6973,-6.86],[109.6822,-6.8584],[109.6705,-6.8545],[109.6659,-6.8517],[109.6632,-6.8593],[109.66,-6.8593],[109.6608,-6.8665],[109.6582,-6.8707],[109.6643,-6.8742],[109.663,-6.8779],[109.6563,-6.8758],[109.6472,-6.8798],[109.648,-6.8862],[109.646,-6.894],[109.6481,-6.8968],[109.6477,-6.9056],[109.6452,-6.9054],[109.6422,-6.917],[109.6448,-6.9211],[109.657,-6.922],[109.6587,-6.92],[109.6694,-6.9228],[109.668,-6.9281],[109.6691,-6.9343],[109.6751,-6.9346],[109.6802,-6.9352],[109.6812,-6.9311],[109.6881,-6.9332],[109.6951,-6.9285],[109.6968,-6.9204],[109.6956,-6.9118],[109.7009,-6.9094],[109.7053,-6.9043],[109.7033,-6.8994],[109.7112,-6.8826],[109.7068,-6.8786],[109.71,-6.8718],[109.7144,-6.8686]]}},{"type":"Feature","properties":{"mhid":"1332:228","alt_name":"KOTA TEGAL","latitude":-6.8686,"longitude":109.1129,"sample_value":845},"geometry":{"type":"LineString","coordinates":[[109.0774,-6.8878],[109.0965,-6.8886],[109.1025,-6.8899],[109.111,-6.8979],[109.1186,-6.8973],[109.1231,-6.8994],[109.1327,-6.8922],[109.1323,-6.8868],[109.1377,-6.8857],[109.1474,-6.8863],[109.1466,-6.8791],[109.15,-6.8652],[109.1553,-6.8542],[109.1605,-6.848],[109.1616,-6.8438],[109.1584,-6.8438],[109.1518,-6.8474],[109.1387,-6.8467],[109.1351,-6.8488],[109.1212,-6.8472],[109.1037,-6.8395],[109.1022,-6.8399],[109.082,-6.8588],[109.081,-6.8719],[109.0762,-6.8743],[109.0751,-6.8814],[109.0774,-6.8878]]}},{"type":"Feature","properties":{"mhid":"1332:231","alt_name":"KABUPATEN KULON PROGO","latitude":-7.645,"longitude":110.02694,"sample_value":107},"geometry":{"type":"LineString","coordinates":[[110.2704,-7.7057],[110.2709,-7.7038],[110.2658,-7.691],[110.2613,-7.6846],[110.2644,-7.6814],[110.2635,-7.6775],[110.2659,-7.6731],[110.2652,-7.6681],[110.2671,-7.6631],[110.2631,-7.6611],[110.2638,-7.6527],[110.2659,-7.6491],[110.2637,-7.6459],[110.2543,-7.642],[110.2517,-7.6425],[110.2428,-7.6532],[110.2404,-7.6543],[110.2333,-7.6507],[110.2221,-7.6501],[110.2142,-7.6477],[110.2056,-7.6515],[110.2001,-7.6503],[110.1925,-7.6448],[110.1748,-7.6484],[110.1656,-7.6489],[110.1587,-7.6458],[110.1498,-7.6465],[110.1446,-7.6497],[110.1419,-7.645],[110.1365,-7.6543],[110.131,-7.6545],[110.1304,-7.6576],[110.1231,-7.6635],[110.122,-7.6677],[110.1179,-7.6699],[110.1233,-7.6766],[110.1269,-7.6775],[110.1267,-7.6823],[110.1354,-7.6874],[110.138,-7.6934],[110.1313,-7.7005],[110.1348,-7.7054],[110.1325,-7.716],[110.1344,-7.7214],[110.1319,-7.7254],[110.1296,-7.7475],[110.1266,-7.7482],[110.1217,-7.7561],[110.114,-7.7649],[110.1143,-7.771],[110.1127,-7.7769],[110.1012,-7.779],[110.0921,-7.7861],[110.0869,-7.7979],[110.0835,-7.7998],[110.0808,-7.8067],[110.0723,-7.8122],[110.0627,-7.814],[110.0622,-7.8189],[110.0589,-7.8239],[110.0586,-7.836],[110.0594,-7.8413],[110.0512,-7.8447],[110.0506,-7.8518],[110.0435,-7.8598],[110.0424,-7.8634],[110.0442,-7.8728],[110.042,-7.8851],[110.0371,-7.8844],[110.0293,-7.8927],[110.0249,-7.8906],[110.0197,-7.8917],[110.0314,-7.8994],[110.0299,-7.9016],[110.0432,-7.9058],[110.0687,-7.9163],[110.0768,-7.919],[110.0938,-7.9262],[110.1276,-7.9424],[110.129,-7.9439],[110.1428,-7.9503],[110.1506,-7.9527],[110.1664,-7.9606],[110.1837,-7.9711],[110.2022,-7.9834],[110.2054,-7.9839],[110.2147,-7.9786],[110.2246,-7.968],[110.2262,-7.9639],[110.2317,-7.9597],[110.2433,-7.9386],[110.2468,-7.929],[110.2519,-7.925],[110.2571,-7.9234],[110.2658,-7.9288],[110.2707,-7.926],[110.2739,-7.9096],[110.2743,-7.9005],[110.2727,-7.8909],[110.2639,-7.8774],[110.2599,-7.873],[110.2572,-7.8665],[110.2502,-7.8626],[110.2376,-7.8529],[110.2327,-7.8455],[110.2231,-7.8402],[110.2221,-7.8351],[110.2261,-7.8342],[110.2313,-7.8294],[110.2339,-7.8224],[110.2334,-7.815],[110.2325,-7.8105],[110.2284,-7.8059],[110.2361,-7.798],[110.233,-7.7909],[110.2204,-7.7767],[110.2222,-7.773],[110.2226,-7.7652],[110.2198,-7.7628],[110.2181,-7.7525],[110.2194,-7.7471],[110.2161,-7.7425],[110.2165,-7.7383],[110.2211,-7.7353],[110.2246,-7.7239],[110.232,-7.7221],[110.2326,-7.7137],[110.2387,-7.7131],[110.2443,-7.71],[110.2538,-7.7083],[110.2617,-7.7048],[110.2678,-7.7073],[110.2704,-7.7057]]}},{"type":"Feature","properties":{"mhid":"1332:232","alt_name":"KABUPATEN BANTUL","latitude":-7.9,"longitude":110.36667,"sample_value":969},"geometry":{"type":"LineString","coordinates":[[110.3971,-7.7883],[110.3958,-7.7944],[110.3986,-7.8001],[110.4023,-7.8026],[110.4021,-7.8166],[110.4048,-7.8226],[110.4049,-7.831],[110.3999,-7.8334],[110.3995,-7.8278],[110.3941,-7.8271],[110.3958,-7.8325],[110.3943,-7.8372],[110.3881,-7.8357],[110.3844,-7.829],[110.375,-7.8308],[110.3752,-7.8244],[110.3591,-7.8261],[110.3518,-7.8257],[110.3515,-7.8135],[110.3458,-7.8125],[110.3446,-7.8069],[110.3484,-7.7986],[110.3511,-7.7794],[110.351,-7.7682],[110.349,-7.7699],[110.3477,-7.7805],[110.3436,-7.7919],[110.3392,-7.7924],[110.338,-7.7977],[110.3334,-7.7979],[110.3288,-7.805],[110.3215,-7.8043],[110.3148,-7.8089],[110.317,-7.8199],[110.3164,-7.8237],[110.3103,-7.8199],[110.3073,-7.8217],[110.3064,-7.8283],[110.2976,-7.8272],[110.2928,-7.834],[110.2876,-7.8314],[110.287,-7.8207],[110.2847,-7.8169],[110.282,-7.8063],[110.287,-7.8029],[110.2895,-7.7968],[110.2904,-7.7892],[110.286,-7.7852],[110.2816,-7.7847],[110.2775,-7.7876],[110.2757,-7.7918],[110.2676,-7.7957],[110.2637,-7.7941],[110.2598,-7.7975],[110.2539,-7.7961],[110.2524,-7.8018],[110.2478,-7.8058],[110.2445,-7.8047],[110.2374,-7.8091],[110.2334,-7.815],[110.2339,-7.8224],[110.2313,-7.8294],[110.2261,-7.8342],[110.2221,-7.8351],[110.2231,-7.8402],[110.2327,-7.8455],[110.2376,-7.8529],[110.2502,-7.8626],[110.2572,-7.8665],[110.2599,-7.873],[110.2639,-7.8774],[110.2727,-7.8909],[110.2743,-7.9005],[110.2739,-7.9096],[110.2707,-7.926],[110.2658,-7.9288],[110.2571,-7.9234],[110.2519,-7.925],[110.2468,-7.929],[110.2433,-7.9386],[110.2317,-7.9597],[110.2262,-7.9639],[110.2246,-7.968],[110.2147,-7.9786],[110.2054,-7.9839],[110.2114,-7.9867],[110.2367,-7.9951],[110.2551,-8.0025],[110.2795,-8.0111],[110.2973,-8.0151],[110.3197,-8.0215],[110.3401,-8.0281],[110.3298,-8.0091],[110.3312,-7.9989],[110.3391,-7.995],[110.3518,-7.9952],[110.3554,-7.9915],[110.3502,-7.9887],[110.356,-7.9789],[110.3599,-7.9823],[110.3644,-7.983],[110.3664,-7.9746],[110.3711,-7.9752],[110.3753,-7.9793],[110.3809,-7.982],[110.3968,-7.9807],[110.3987,-7.9772],[110.3974,-7.9699],[110.4028,-7.9689],[110.4087,-7.972],[110.4136,-7.9714],[110.422,-7.9735],[110.4312,-7.9673],[110.441,-7.9675],[110.4441,-7.9656],[110.4447,-7.9576],[110.4436,-7.9521],[110.4455,-7.9491],[110.4518,-7.9474],[110.4549,-7.9516],[110.4513,-7.9555],[110.4507,-7.9609],[110.4549,-7.9674],[110.4573,-7.9658],[110.4572,-7.9576],[110.4646,-7.9553],[110.4649,-7.9594],[110.4705,-7.9621],[110.4669,-7.9699],[110.4771,-7.97],[110.4726,-7.9546],[110.4779,-7.9506],[110.4763,-7.9437],[110.4816,-7.9421],[110.4878,-7.9452],[110.4935,-7.9314],[110.4917,-7.9279],[110.493,-7.9205],[110.4955,-7.9168],[110.4983,-7.9008],[110.496,-7.8969],[110.4964,-7.8922],[110.4835,-7.8886],[110.4769,-7.8883],[110.4706,-7.8769],[110.4675,-7.8667],[110.473,-7.8569],[110.4839,-7.8404],[110.4901,-7.8377],[110.4938,-7.8393],[110.4979,-7.8379],[110.5163,-7.8377],[110.5213,-7.8337],[110.5195,-7.831],[110.5111,-7.8288],[110.5095,-7.8221],[110.505,-7.8235],[110.4922,-7.8228],[110.4813,-7.8175],[110.4794,-7.8249],[110.4654,-7.822],[110.4602,-7.8196],[110.4526,-7.8246],[110.4438,-7.8239],[110.4434,-7.8269],[110.437,-7.8282],[110.4361,-7.8321],[110.4306,-7.8371],[110.4307,-7.8304],[110.4284,-7.8243],[110.4216,-7.8214],[110.4228,-7.7956],[110.4208,-7.7939],[110.421,-7.7863],[110.4129,-7.787],[110.4029,-7.7863],[110.3971,-7.7883]]}},{"type":"Feature","properties":{"mhid":"1332:233","alt_name":"KABUPATEN GUNUNG KIDUL","latitude":-7.98333,"longitude":110.61667,"sample_value":517},"geometry":{"type":"LineString","coordinates":[[110.7125,-7.7929],[110.7142,-7.799],[110.7087,-7.8053],[110.6995,-7.8075],[110.6908,-7.8082],[110.6796,-7.8065],[110.6749,-7.8032],[110.6719,-7.7968],[110.6766,-7.7913],[110.6729,-7.7865],[110.6636,-7.7938],[110.6605,-7.8021],[110.658,-7.8048],[110.6506,-7.7995],[110.647,-7.7952],[110.6382,-7.8004],[110.6301,-7.8012],[110.6267,-7.8029],[110.6192,-7.799],[110.6161,-7.8021],[110.6121,-7.7988],[110.6042,-7.7983],[110.5987,-7.8001],[110.6001,-7.8067],[110.5891,-7.8072],[110.5861,-7.8028],[110.5817,-7.8055],[110.5762,-7.806],[110.5762,-7.8019],[110.5839,-7.798],[110.5848,-7.7909],[110.5779,-7.7896],[110.5636,-7.7824],[110.5559,-7.7841],[110.5535,-7.7871],[110.5558,-7.7947],[110.5459,-7.7916],[110.544,-7.7938],[110.5465,-7.798],[110.5446,-7.8075],[110.5455,-7.8157],[110.5421,-7.8198],[110.5424,-7.8235],[110.5314,-7.8236],[110.5219,-7.8286],[110.5195,-7.831],[110.5213,-7.8337],[110.5163,-7.8377],[110.4979,-7.8379],[110.4938,-7.8393],[110.4901,-7.8377],[110.4839,-7.8404],[110.473,-7.8569],[110.4675,-7.8667],[110.4706,-7.8769],[110.4769,-7.8883],[110.4835,-7.8886],[110.4964,-7.8922],[110.496,-7.8969],[110.4983,-7.9008],[110.4955,-7.9168],[110.493,-7.9205],[110.4917,-7.9279],[110.4935,-7.9314],[110.4878,-7.9452],[110.4816,-7.9421],[110.4763,-7.9437],[110.4779,-7.9506],[110.4726,-7.9546],[110.4771,-7.97],[110.4669,-7.9699],[110.4705,-7.9621],[110.4649,-7.9594],[110.4646,-7.9553],[110.4572,-7.9576],[110.4573,-7.9658],[110.4549,-7.9674],[110.4507,-7.9609],[110.4513,-7.9555],[110.4549,-7.9516],[110.4518,-7.9474],[110.4455,-7.9491],[110.4436,-7.9521],[110.4447,-7.9576],[110.4441,-7.9656],[110.441,-7.9675],[110.4312,-7.9673],[110.422,-7.9735],[110.4136,-7.9714],[110.4087,-7.972],[110.4028,-7.9689],[110.3974,-7.9699],[110.3987,-7.9772],[110.3968,-7.9807],[110.3809,-7.982],[110.3753,-7.9793],[110.3711,-7.9752],[110.3664,-7.9746],[110.3644,-7.983],[110.3599,-7.9823],[110.356,-7.9789],[110.3502,-7.9887],[110.3554,-7.9915],[110.3518,-7.9952],[110.3391,-7.995],[110.3312,-7.9989],[110.3298,-8.0091],[110.3401,-8.0281],[110.3444,-8.0302],[110.3497,-8.0425],[110.3595,-8.0569],[110.368,-8.061],[110.3752,-8.0716],[110.3872,-8.0723],[110.3969,-8.0781],[110.4024,-8.078],[110.4149,-8.0828],[110.4187,-8.0867],[110.4245,-8.087],[110.4347,-8.0935],[110.4341,-8.0987],[110.4389,-8.1007],[110.4503,-8.1005],[110.4675,-8.1104],[110.477,-8.1099],[110.4859,-8.1123],[110.4938,-8.1176],[110.5002,-8.1183],[110.5103,-8.1214],[110.5172,-8.1252],[110.5206,-8.1255],[110.5262,-8.1304],[110.5356,-8.1313],[110.5446,-8.1349],[110.547,-8.1325],[110.5535,-8.1334],[110.5677,-8.1375],[110.5794,-8.1382],[110.585,-8.1447],[110.5908,-8.1474],[110.6,-8.1452],[110.607,-8.147],[110.6161,-8.1535],[110.6251,-8.1585],[110.6367,-8.1621],[110.6443,-8.1686],[110.6496,-8.1691],[110.654,-8.1732],[110.6598,-8.1734],[110.6637,-8.1767],[110.6677,-8.1764],[110.6791,-8.183],[110.6884,-8.1846],[110.6909,-8.1873],[110.7002,-8.1865],[110.7023,-8.1845],[110.7087,-8.1839],[110.7099,-8.1928],[110.7061,-8.1954],[110.7062,-8.1996],[110.71,-8.2007],[110.7129,-8.1974],[110.7181,-8.1995],[110.7273,-8.1967],[110.7315,-8.1926],[110.7379,-8.1924],[110.7485,-8.1969],[110.7538,-8.1953],[110.7638,-8.1952],[110.7748,-8.1968],[110.7822,-8.1959],[110.7866,-8.1927],[110.7898,-8.1941],[110.7973,-8.1912],[110.7995,-8.1979],[110.8055,-8.1994],[110.8186,-8.2],[110.8289,-8.204],[110.8298,-8.2014],[110.8289,-8.1956],[110.8342,-8.1906],[110.8326,-8.1797],[110.8332,-8.1736],[110.8276,-8.171],[110.8231,-8.1613],[110.8184,-8.1586],[110.8164,-8.1541],[110.8189,-8.1449],[110.8123,-8.1467],[110.8099,-8.1554],[110.8003,-8.1621],[110.7962,-8.1623],[110.7902,-8.1583],[110.7856,-8.1489],[110.7855,-8.1397],[110.788,-8.1279],[110.7899,-8.1255],[110.7876,-8.1032],[110.7793,-8.083],[110.7785,-8.0676],[110.7719,-8.0582],[110.7681,-8.0467],[110.7542,-8.0258],[110.7569,-8.0123],[110.7617,-8.0035],[110.7605,-7.9982],[110.7622,-7.9918],[110.7668,-7.988],[110.7683,-7.9802],[110.7679,-7.97],[110.7692,-7.9616],[110.7683,-7.9556],[110.7713,-7.9474],[110.7701,-7.9423],[110.7705,-7.9317],[110.7721,-7.9268],[110.7695,-7.9147],[110.771,-7.902],[110.7743,-7.8955],[110.7778,-7.8919],[110.7755,-7.8867],[110.7783,-7.8774],[110.7839,-7.8724],[110.783,-7.8619],[110.7841,-7.8578],[110.7883,-7.855],[110.7839,-7.8517],[110.7825,-7.8464],[110.7857,-7.8167],[110.7702,-7.8081],[110.763,-7.8148],[110.7632,-7.8244],[110.7564,-7.8273],[110.7513,-7.823],[110.7516,-7.8201],[110.7454,-7.8184],[110.7426,-7.8129],[110.743,-7.8083],[110.7366,-7.8044],[110.7239,-7.7944],[110.7155,-7.7921],[110.7125,-7.7929]]}},{"type":"Feature","properties":{"mhid":"1332:234","alt_name":"KABUPATEN SLEMAN","latitude":-7.68167,"longitude":110.32333,"sample_value":87},"geometry":{"type":"LineString","coordinates":[[110.544,-7.7938],[110.5364,-7.7979],[110.5304,-7.7979],[110.5295,-7.7908],[110.5112,-7.7774],[110.5113,-7.7729],[110.5071,-7.769],[110.4918,-7.7668],[110.4918,-7.7421],[110.4719,-7.6533],[110.4685,-7.6372],[110.4685,-7.6178],[110.4633,-7.6047],[110.4595,-7.5828],[110.4606,-7.5805],[110.4597,-7.5701],[110.4572,-7.5601],[110.4531,-7.552],[110.4461,-7.5419],[110.4407,-7.5464],[110.4288,-7.5521],[110.4248,-7.5566],[110.416,-7.5612],[110.4088,-7.5717],[110.4015,-7.5796],[110.4001,-7.5848],[110.3964,-7.5892],[110.3909,-7.5923],[110.391,-7.5949],[110.3848,-7.6],[110.3794,-7.6015],[110.3752,-7.6072],[110.3671,-7.6122],[110.3628,-7.6171],[110.3545,-7.6228],[110.3449,-7.6261],[110.338,-7.6305],[110.3332,-7.6366],[110.325,-7.642],[110.3238,-7.6442],[110.314,-7.6507],[110.3041,-7.6549],[110.2995,-7.6648],[110.2913,-7.6724],[110.2847,-7.6871],[110.2771,-7.6978],[110.2704,-7.7057],[110.2678,-7.7073],[110.2617,-7.7048],[110.2538,-7.7083],[110.2443,-7.71],[110.2387,-7.7131],[110.2326,-7.7137],[110.232,-7.7221],[110.2246,-7.7239],[110.2211,-7.7353],[110.2165,-7.7383],[110.2161,-7.7425],[110.2194,-7.7471],[110.2181,-7.7525],[110.2198,-7.7628],[110.2226,-7.7652],[110.2222,-7.773],[110.2204,-7.7767],[110.233,-7.7909],[110.2361,-7.798],[110.2284,-7.8059],[110.2325,-7.8105],[110.2334,-7.815],[110.2374,-7.8091],[110.2445,-7.8047],[110.2478,-7.8058],[110.2524,-7.8018],[110.2539,-7.7961],[110.2598,-7.7975],[110.2637,-7.7941],[110.2676,-7.7957],[110.2757,-7.7918],[110.2775,-7.7876],[110.2816,-7.7847],[110.286,-7.7852],[110.2904,-7.7892],[110.2895,-7.7968],[110.287,-7.8029],[110.282,-7.8063],[110.2847,-7.8169],[110.287,-7.8207],[110.2876,-7.8314],[110.2928,-7.834],[110.2976,-7.8272],[110.3064,-7.8283],[110.3073,-7.8217],[110.3103,-7.8199],[110.3164,-7.8237],[110.317,-7.8199],[110.3148,-7.8089],[110.3215,-7.8043],[110.3288,-7.805],[110.3334,-7.7979],[110.338,-7.7977],[110.3392,-7.7924],[110.3436,-7.7919],[110.3477,-7.7805],[110.349,-7.7699],[110.351,-7.7682],[110.3531,-7.7668],[110.3591,-7.7713],[110.3621,-7.7686],[110.3662,-7.7695],[110.3693,-7.7744],[110.3796,-7.7781],[110.3818,-7.7804],[110.3905,-7.7804],[110.3928,-7.7863],[110.3971,-7.7883],[110.4029,-7.7863],[110.4129,-7.787],[110.421,-7.7863],[110.4208,-7.7939],[110.4228,-7.7956],[110.4216,-7.8214],[110.4284,-7.8243],[110.4307,-7.8304],[110.4306,-7.8371],[110.4361,-7.8321],[110.437,-7.8282],[110.4434,-7.8269],[110.4438,-7.8239],[110.4526,-7.8246],[110.4602,-7.8196],[110.4654,-7.822],[110.4794,-7.8249],[110.4813,-7.8175],[110.4922,-7.8228],[110.505,-7.8235],[110.5095,-7.8221],[110.5111,-7.8288],[110.5195,-7.831],[110.5219,-7.8286],[110.5314,-7.8236],[110.5424,-7.8235],[110.5421,-7.8198],[110.5455,-7.8157],[110.5446,-7.8075],[110.5465,-7.798],[110.544,-7.7938]]}},{"type":"Feature","properties":{"mhid":"1332:101","alt_name":"KOTA SUNGAI PENUH","latitude":-2.10896,"longitude":101.32175,"sample_value":105},"geometry":{"type":"LineString","coordinates":[[101.2821,-2.2503],[101.37,-2.1914],[101.3705,-2.1872],[101.3671,-2.1812],[101.3681,-2.175],[101.3788,-2.1759],[101.3936,-2.1805],[101.4006,-2.1771],[101.4081,-2.1714],[101.4116,-2.1665],[101.4153,-2.1564],[101.4154,-2.1495],[101.409,-2.1183],[101.4156,-2.1141],[101.4175,-2.1049],[101.4226,-2.1021],[101.4391,-2.1071],[101.4441,-2.1054],[101.4569,-2.0891],[101.4487,-2.0829],[101.4505,-2.0802],[101.4467,-2.0768],[101.4486,-2.0718],[101.4394,-2.0595],[101.4375,-2.0473],[101.4398,-2.0458],[101.4269,-2.0264],[101.4209,-2.0302],[101.4009,-2.0312],[101.3203,-2.0277],[101.2898,-2.0273],[101.272,-2.0331],[101.2408,-2.0649],[101.2446,-2.071],[101.2496,-2.0829],[101.2551,-2.089],[101.2647,-2.1018],[101.2661,-2.111],[101.2731,-2.171],[101.2792,-2.2195],[101.2821,-2.2449],[101.2821,-2.2503]]}},{"type":"Feature","properties":{"mhid":"1332:102","alt_name":"KABUPATEN OGAN KOMERING ULU","latitude":-4.13333,"longitude":104.03333,"sample_value":848},"geometry":{"type":"LineString","coordinates":[[104.3744,-3.7637],[104.37,-3.7634],[104.3602,-3.7689],[104.3543,-3.7668],[104.3467,-3.7676],[104.3347,-3.7603],[104.3294,-3.764],[104.3221,-3.7668],[104.3205,-3.7703],[104.3067,-3.7735],[104.3025,-3.7715],[104.2905,-3.7568],[104.2881,-3.7551],[104.2798,-3.7635],[104.2622,-3.7739],[104.2561,-3.7782],[104.2477,-3.7799],[104.2389,-3.783],[104.2367,-3.7856],[104.2357,-3.7997],[104.2292,-3.805],[104.2206,-3.8169],[104.2146,-3.819],[104.2102,-3.8251],[104.2094,-3.8372],[104.21,-3.8438],[104.2055,-3.8475],[104.199,-3.8454],[104.1934,-3.8474],[104.1889,-3.8518],[104.1867,-3.8571],[104.1792,-3.8633],[104.1565,-3.8747],[104.1512,-3.8817],[104.1472,-3.885],[104.1372,-3.8878],[104.1229,-3.8956],[104.1227,-3.8924],[104.1066,-3.8986],[104.093,-3.8958],[104.0847,-3.8962],[104.0825,-3.9002],[104.0717,-3.9055],[104.0627,-3.9046],[104.0531,-3.9064],[104.0471,-3.9057],[104.042,-3.9103],[104.0388,-3.909],[104.0331,-3.9105],[104.0269,-3.9082],[104.0231,-3.9138],[104.0151,-3.9134],[104.0119,-3.915],[103.9947,-3.9197],[103.9804,-3.9037],[103.9712,-3.8924],[103.9656,-3.8886],[103.9577,-3.8936],[103.9446,-3.8957],[103.9401,-3.8976],[103.9315,-3.9111],[103.9278,-3.9145],[103.909,-3.9215],[103.893,-3.9248],[103.8919,-3.9289],[103.8944,-3.9371],[103.8905,-3.9503],[103.8924,-3.9603],[103.8878,-3.9677],[103.8782,-3.9713],[103.875,-3.9784],[103.8688,-3.9885],[103.8615,-3.9935],[103.855,-3.9957],[103.8489,-4.007],[103.8429,-4.0065],[103.8351,-4.0144],[103.8304,-4.0148],[103.8248,-4.0197],[103.8201,-4.0272],[103.8145,-4.0314],[103.8,-4.0343],[103.7925,-4.0389],[103.7887,-4.0463],[103.7786,-4.0574],[103.7698,-4.0697],[103.7588,-4.0761],[103.7529,-4.081],[103.7467,-4.0843],[103.7365,-4.0853],[103.7049,-4.0853],[103.7037,-4.1169],[103.7051,-4.1341],[103.7051,-4.1723],[103.706,-4.1833],[103.6907,-4.1841],[103.6822,-4.1868],[103.6664,-4.1936],[103.6481,-4.1976],[103.6474,-4.2039],[103.642,-4.21],[103.6316,-4.2123],[103.6216,-4.2162],[103.6175,-4.2219],[103.6164,-4.2328],[103.6174,-4.2445],[103.6209,-4.2529],[103.6273,-4.2644],[103.626,-4.2699],[103.6248,-4.2913],[103.6216,-4.3059],[103.6271,-4.3067],[103.637,-4.2875],[103.699,-4.2853],[103.7023,-4.2806],[103.7173,-4.2641],[103.7443,-4.2412],[103.7601,-4.2303],[103.7724,-4.2236],[103.7908,-4.2164],[103.7991,-4.21],[103.8081,-4.2224],[103.8126,-4.2307],[103.8272,-4.2495],[103.8355,-4.2618],[103.8419,-4.2776],[103.846,-4.2915],[103.8483,-4.3084],[103.8535,-4.3606],[103.8512,-4.3769],[103.8643,-4.3795],[103.8814,-4.3795],[103.8903,-4.3824],[103.8988,-4.3818],[103.9034,-4.3832],[103.9077,-4.3975],[103.9157,-4.409],[103.9257,-4.4215],[103.9523,-4.4442],[103.9605,-4.4571],[103.967,-4.4636],[103.9714,-4.466],[103.9799,-4.4646],[103.986,-4.461],[103.9958,-4.4502],[104.0015,-4.4472],[104.0137,-4.4456],[104.0271,-4.4554],[104.0451,-4.4584],[104.0631,-4.4461],[104.0986,-4.4374],[104.1089,-4.4255],[104.1423,-4.4094],[104.1587,-4.4028],[104.2192,-4.3528],[104.2207,-4.3455],[104.2189,-4.3318],[104.2222,-4.3276],[104.2233,-4.3227],[104.2196,-4.3191],[104.2253,-4.3136],[104.2259,-4.309],[104.2233,-4.303],[104.227,-4.2904],[104.2271,-4.2848],[104.2323,-4.2769],[104.2313,-4.2704],[104.2274,-4.2662],[104.2289,-4.2626],[104.2265,-4.2552],[104.226,-4.2476],[104.228,-4.2405],[104.2254,-4.2356],[104.2319,-4.2358],[104.2356,-4.2414],[104.2413,-4.2463],[104.2464,-4.2466],[104.2533,-4.2442],[104.2587,-4.24],[104.2736,-4.2416],[104.2822,-4.2391],[104.284,-4.2309],[104.2833,-4.2186],[104.2866,-4.2125],[104.2903,-4.2117],[104.2943,-4.2047],[104.3035,-4.1994],[104.3126,-4.2007],[104.3232,-4.1994],[104.3269,-4.1966],[104.326,-4.191],[104.3293,-4.1883],[104.3333,-4.1795],[104.3288,-4.1675],[104.328,-4.16],[104.3244,-4.155],[104.3244,-4.1511],[104.3274,-4.1472],[104.3273,-4.1417],[104.3227,-4.1352],[104.3247,-4.1322],[104.3211,-4.1257],[104.317,-4.1251],[104.314,-4.1137],[104.3168,-4.1074],[104.3158,-4.1041],[104.3202,-4.0969],[104.3141,-4.0899],[104.3141,-4.0875],[104.3086,-4.0837],[104.3082,-4.0765],[104.3141,-4.0748],[104.3242,-4.0682],[104.331,-4.0628],[104.3391,-4.0547],[104.3434,-4.0477],[104.3425,-4.0419],[104.3491,-4.0269],[104.3516,-4.0137],[104.3592,-4.0081],[104.3788,-4.0118],[104.384,-4.0072],[104.3952,-4.0044],[104.3964,-4.0058],[104.4043,-4.0002],[104.4026,-3.9856],[104.4046,-3.9821],[104.4131,-3.978],[104.418,-3.9774],[104.4238,-3.9793],[104.43,-3.9791],[104.4373,-3.9725],[104.442,-3.9633],[104.4472,-3.9591],[104.4583,-3.9527],[104.464,-3.952],[104.4774,-3.9536],[104.4828,-3.9507],[104.4859,-3.9448],[104.4914,-3.945],[104.5052,-3.9354],[104.5123,-3.921],[104.5121,-3.9103],[104.5098,-3.897],[104.5091,-3.8838],[104.5104,-3.8785],[104.5089,-3.8713],[104.5229,-3.8555],[104.5331,-3.8499],[104.5369,-3.8435],[104.5433,-3.8394],[104.5578,-3.8249],[104.5577,-3.8182],[104.5557,-3.8052],[104.5516,-3.801],[104.5378,-3.7954],[104.5299,-3.7935],[104.5137,-3.7916],[104.5056,-3.7864],[104.4995,-3.7866],[104.4964,-3.7703],[104.4898,-3.7736],[104.4852,-3.7681],[104.4726,-3.7652],[104.4648,-3.7612],[104.4591,-3.7604],[104.4641,-3.7755],[104.4525,-3.7705],[104.4424,-3.7741],[104.4368,-3.7735],[104.4336,-3.7754],[104.4104,-3.7847],[104.4065,-3.7839],[104.3852,-3.7729],[104.3796,-3.7693],[104.3811,-3.7642],[104.3744,-3.7637]]}},{"type":"Feature","properties":{"mhid":"1332:103","alt_name":"KABUPATEN OGAN KOMERING ILIR","latitude":-3.36667,"longitude":105.36667,"sample_value":512},"geometry":{"type":"LineString","coordinates":[[106.1645,-3.2964],[106.1617,-3.2988],[106.1732,-3.31],[106.1822,-3.3153],[106.1871,-3.3167],[106.1887,-3.3116],[106.1771,-3.3009],[106.1683,-3.2969],[106.1645,-3.2964]]}},{"type":"Feature","properties":{"mhid":"1332:103","alt_name":"KABUPATEN OGAN KOMERING ILIR","latitude":-3.36667,"longitude":105.36667,"sample_value":512},"geometry":{"type":"LineString","coordinates":[[105.8186,-4.1416],[105.8214,-4.1482],[105.824,-4.1579],[105.8362,-4.1701],[105.8476,-4.1653],[105.851,-4.1575],[105.8517,-4.1488],[105.8472,-4.1191],[105.8627,-4.0526],[105.8644,-4.0411],[105.8717,-4.0181],[105.8722,-4.0121],[105.8776,-4.0009],[105.8849,-3.9794],[105.8885,-3.9785],[105.8931,-3.9678],[105.8968,-3.9632],[105.9143,-3.9364],[105.9256,-3.9209],[105.9375,-3.8977],[105.9432,-3.8856],[105.9446,-3.8784],[105.9543,-3.8595],[105.9604,-3.8395],[105.9605,-3.8231],[105.9561,-3.8146],[105.9485,-3.8045],[105.9363,-3.7903],[105.925,-3.7751],[105.9132,-3.7677],[105.9069,-3.7613],[105.88,-3.7444],[105.8651,-3.7378],[105.8536,-3.7442],[105.8503,-3.7493],[105.8465,-3.7449],[105.8386,-3.725],[105.8296,-3.7118],[105.8237,-3.6927],[105.823,-3.6705],[105.8199,-3.639],[105.821,-3.6298],[105.8268,-3.6033],[105.8295,-3.5857],[105.8336,-3.5676],[105.8417,-3.5481],[105.8479,-3.5236],[105.867,-3.4807],[105.8733,-3.4637],[105.8841,-3.4387],[105.8908,-3.4246],[105.8997,-3.4248],[105.9087,-3.4136],[105.9232,-3.39],[105.9324,-3.3782],[105.935,-3.3677],[105.939,-3.3625],[105.9331,-3.3608],[105.9455,-3.3561],[105.9544,-3.3422],[105.9561,-3.3364],[105.9615,-3.3385],[105.9772,-3.3231],[105.9855,-3.3158],[105.9873,-3.3115],[105.9932,-3.312],[106.0025,-3.3053],[106.0234,-3.2891],[106.0379,-3.2786],[106.0562,-3.2759],[106.0673,-3.2712],[106.0669,-3.2654],[106.0765,-3.2643],[106.0876,-3.2561],[106.0961,-3.2408],[106.0981,-3.2282],[106.0921,-3.201],[106.0893,-3.1917],[106.0719,-3.1464],[106.0691,-3.1373],[106.0641,-3.1319],[106.0601,-3.1188],[106.0672,-3.1148],[106.0628,-3.1109],[106.0614,-3.0939],[106.0693,-3.0795],[106.0706,-3.0756],[106.0706,-3.0651],[106.068,-3.0507],[106.064,-3.035],[106.064,-3.0298],[106.06,-3.0127],[106.0513,-2.9871],[105.999,-2.9678],[105.9888,-2.9709],[105.9789,-2.9532],[105.9716,-2.9539],[105.9634,-2.953],[105.9597,-2.9618],[105.9459,-2.9619],[105.9518,-2.9683],[105.9281,-2.967],[105.9017,-2.9736],[105.8806,-2.9671],[105.8645,-2.9524],[105.8512,-2.9415],[105.8318,-2.9291],[105.8169,-2.9083],[105.8106,-2.8988],[105.8041,-2.8807],[105.7982,-2.8769],[105.8027,-2.8532],[105.8014,-2.8401],[105.8027,-2.827],[105.8001,-2.8179],[105.804,-2.8021],[105.8066,-2.7877],[105.8066,-2.7642],[105.804,-2.7498],[105.804,-2.734],[105.8026,-2.717],[105.8,-2.7026],[105.7967,-2.6922],[105.7869,-2.6896],[105.7826,-2.6813],[105.7709,-2.6825],[105.7497,-2.6894],[105.7364,-2.689],[105.7011,-2.6851],[105.6889,-2.6821],[105.6777,-2.6756],[105.6721,-2.6739],[105.6674,-2.6695],[105.6574,-2.6648],[105.6406,-2.6466],[105.6329,-2.6409],[105.6203,-2.6188],[105.6156,-2.6054],[105.6126,-2.6023],[105.6087,-2.5941],[105.6074,-2.5854],[105.6065,-2.5685],[105.6043,-2.5576],[105.6046,-2.5409],[105.6034,-2.5386],[105.6067,-2.5133],[105.6101,-2.5039],[105.6158,-2.48],[105.6261,-2.4627],[105.6278,-2.4541],[105.6317,-2.4454],[105.6337,-2.4341],[105.6324,-2.4263],[105.6333,-2.4176],[105.6316,-2.408],[105.626,-2.3952],[105.6192,-2.3888],[105.6128,-2.3912],[105.612,-2.3942],[105.602,-2.4032],[105.5972,-2.4065],[105.5817,-2.4149],[105.5695,-2.4183],[105.5637,-2.417],[105.5577,-2.4132],[105.5327,-2.4178],[105.5264,-2.4215],[105.5207,-2.4269],[105.5102,-2.4315],[105.5037,-2.4361],[105.4953,-2.4397],[105.4942,-2.4501],[105.4875,-2.4488],[105.4842,-2.4458],[105.47,-2.4551],[105.4703,-2.4628],[105.4604,-2.4584],[105.4519,-2.4597],[105.4489,-2.4545],[105.4441,-2.4505],[105.4394,-2.4496],[105.4324,-2.4506],[105.4285,-2.4474],[105.4219,-2.4518],[105.4168,-2.4481],[105.4032,-2.4555],[105.399,-2.4558],[105.3916,-2.4483],[105.3857,-2.4505],[105.38,-2.4455],[105.3737,-2.444],[105.3675,-2.4455],[105.3608,-2.4521],[105.3563,-2.4473],[105.351,-2.4444],[105.3429,-2.4476],[105.3364,-2.4479],[105.3347,-2.4501],[105.3347,-2.4606],[105.3298,-2.4651],[105.3232,-2.4684],[105.3123,-2.4816],[105.3113,-2.4886],[105.3145,-2.4954],[105.3132,-2.4983],[105.3022,-2.5041],[105.297,-2.5086],[105.2896,-2.5081],[105.2856,-2.5101],[105.2799,-2.5187],[105.2722,-2.5262],[105.2717,-2.5338],[105.2694,-2.5381],[105.2631,-2.5428],[105.2586,-2.5493],[105.2517,-2.5541],[105.2473,-2.5548],[105.2409,-2.5664],[105.2295,-2.5819],[105.2284,-2.5871],[105.2184,-2.5867],[105.2085,-2.5836],[105.2037,-2.5833],[105.2013,-2.5905],[105.2034,-2.595],[105.2092,-2.6007],[105.2125,-2.6085],[105.2093,-2.6187],[105.2095,-2.6254],[105.2065,-2.6276],[105.2043,-2.6344],[105.198,-2.636],[105.185,-2.6337],[105.1768,-2.6394],[105.1746,-2.6455],[105.1761,-2.6495],[105.1813,-2.653],[105.1964,-2.6551],[105.2055,-2.6699],[105.2117,-2.6773],[105.2159,-2.6854],[105.2174,-2.7109],[105.2128,-2.7232],[105.2079,-2.7298],[105.193,-2.7323],[105.1769,-2.733],[105.1685,-2.7316],[105.1541,-2.7275],[105.1438,-2.7255],[105.1323,-2.7208],[105.119,-2.7181],[105.115,-2.7188],[105.0965,-2.7115],[105.0927,-2.714],[105.0878,-2.7215],[105.088,-2.7353],[105.09,-2.7368],[105.0906,-2.7458],[105.0873,-2.7557],[105.0844,-2.76],[105.0769,-2.7675],[105.0801,-2.7777],[105.0814,-2.7877],[105.08,-2.7999],[105.078,-2.8054],[105.0809,-2.8084],[105.087,-2.8311],[105.0906,-2.8417],[105.0846,-2.8539],[105.0808,-2.8583],[105.0718,-2.8743],[105.0692,-2.881],[105.0679,-2.8886],[105.0671,-2.9033],[105.0679,-2.9075],[105.0938,-2.9151],[105.096,-2.9318],[105.0924,-2.9419],[105.0845,-2.9407],[105.0783,-2.941],[105.0722,-2.9434],[105.0693,-2.9506],[105.0646,-2.9499],[105.0616,-2.954],[105.0472,-2.9543],[105.0392,-2.9638],[105.0193,-2.965],[105.0098,-2.9711],[105.0355,-2.9821],[105.027,-2.9964],[105.027,-3.0045],[105.0223,-3.0083],[105.0414,-3.0128],[105.0365,-3.0325],[105.0334,-3.0491],[105.0338,-3.0621],[105.0324,-3.0818],[105.0319,-3.0998],[105.0286,-3.1126],[105.0163,-3.1245],[105.003,-3.1279],[104.9995,-3.1316],[105.0014,-3.1373],[105.0016,-3.1451],[104.9996,-3.1463],[104.989,-3.1449],[104.9799,-3.1468],[104.9811,-3.1573],[104.9756,-3.1581],[104.9672,-3.166],[104.9602,-3.1694],[104.9429,-3.1719],[104.9302,-3.1698],[104.9199,-3.1607],[104.9151,-3.1615],[104.8985,-3.1557],[104.9033,-3.1466],[104.9047,-3.137],[104.9079,-3.1301],[104.9054,-3.1274],[104.8944,-3.1252],[104.8887,-3.1221],[104.8843,-3.1081],[104.8834,-3.1027],[104.8793,-3.0991],[104.8725,-3.097],[104.8686,-3.0974],[104.8592,-3.1012],[104.8503,-3.0995],[104.838,-3.0909],[104.8284,-3.0778],[104.8282,-3.0687],[104.8214,-3.0663],[104.8056,-3.0635],[104.7942,-3.063],[104.7923,-3.0772],[104.8074,-3.0807],[104.8098,-3.0824],[104.8046,-3.1083],[104.8015,-3.1175],[104.7936,-3.1256],[104.7931,-3.1311],[104.7987,-3.1354],[104.8047,-3.1329],[104.8125,-3.1328],[104.8183,-3.1441],[104.8101,-3.1498],[104.8088,-3.1533],[104.8171,-3.1522],[104.8183,-3.1547],[104.8141,-3.1601],[104.8159,-3.163],[104.81,-3.1675],[104.8038,-3.1678],[104.7993,-3.1725],[104.8024,-3.176],[104.7967,-3.1812],[104.8,-3.189],[104.8036,-3.1917],[104.8074,-3.1999],[104.8114,-3.2041],[104.8154,-3.2123],[104.8161,-3.2171],[104.8107,-3.2262],[104.8049,-3.2311],[104.8086,-3.2508],[104.8076,-3.2554],[104.8078,-3.2669],[104.7992,-3.2713],[104.8047,-3.2798],[104.801,-3.2852],[104.7998,-3.2911],[104.8038,-3.3048],[104.8123,-3.3062],[104.8155,-3.3111],[104.8128,-3.3232],[104.817,-3.3295],[104.8157,-3.3368],[104.8111,-3.3381],[104.8071,-3.3467],[104.8097,-3.3514],[104.8174,-3.3527],[104.8191,-3.3577],[104.8173,-3.3685],[104.814,-3.3674],[104.8086,-3.38],[104.8078,-3.3868],[104.8054,-3.3934],[104.8104,-3.4178],[104.809,-3.4228],[104.8048,-3.4284],[104.8072,-3.4368],[104.8125,-3.4459],[104.8148,-3.4527],[104.8141,-3.4577],[104.8025,-3.4658],[104.787,-3.4649],[104.7839,-3.4654],[104.7744,-3.4609],[104.7607,-3.4683],[104.7572,-3.4727],[104.743,-3.4797],[104.7423,-3.4845],[104.7391,-3.4865],[104.7336,-3.4822],[104.7328,-3.4761],[104.7086,-3.4653],[104.7023,-3.475],[104.6965,-3.4856],[104.6788,-3.4933],[104.6794,-3.5022],[104.6737,-3.5203],[104.6696,-3.5416],[104.6631,-3.5529],[104.6509,-3.5673],[104.6489,-3.5773],[104.6493,-3.59],[104.6483,-3.5981],[104.6432,-3.613],[104.6421,-3.6274],[104.6431,-3.6405],[104.6419,-3.6475],[104.6426,-3.6551],[104.6476,-3.6525],[104.6485,-3.6568],[104.6528,-3.6579],[104.6565,-3.6545],[104.6616,-3.6586],[104.6811,-3.6516],[104.698,-3.6495],[104.705,-3.6497],[104.7213,-3.6533],[104.7346,-3.6605],[104.7389,-3.6664],[104.7384,-3.6736],[104.7401,-3.6749],[104.7702,-3.6842],[104.774,-3.6861],[104.7725,-3.724],[104.7841,-3.733],[104.8029,-3.743],[104.8209,-3.7554],[104.8509,-3.7752],[104.8575,-3.7764],[104.8626,-3.7868],[104.8681,-3.7899],[104.8781,-3.8109],[104.8757,-3.8212],[104.8761,-3.8274],[104.8727,-3.8402],[104.8741,-3.842],[104.875,-3.8541],[104.8728,-3.8589],[104.8726,-3.8644],[104.8688,-3.8671],[104.8632,-3.8666],[104.859,-3.873],[104.8591,-3.8822],[104.8557,-3.8881],[104.8575,-3.8923],[104.8736,-3.9073],[104.8714,-3.9141],[104.8522,-3.9366],[104.8516,-3.9403],[104.8613,-3.9561],[104.8626,-3.9601],[104.8691,-3.9624],[104.8741,-3.9607],[104.8868,-3.947],[104.8981,-3.9434],[104.9083,-3.9462],[104.9155,-3.9462],[104.9202,-3.9486],[104.9275,-3.9462],[104.9303,-3.9496],[104.9265,-3.9578],[104.9288,-3.9616],[104.9246,-3.9715],[104.9255,-3.9767],[104.9209,-3.9789],[104.9198,-3.9885],[104.9137,-4.0052],[104.9067,-4.012],[104.8999,-4.0114],[104.891,-4.0159],[104.8867,-4.0165],[104.8801,-4.0209],[104.8753,-4.0213],[104.8715,-4.025],[104.869,-4.0307],[104.8647,-4.0319],[104.8601,-4.0362],[104.8555,-4.0367],[104.8483,-4.0547],[104.8434,-4.0562],[104.8329,-4.0615],[104.8275,-4.0709],[104.832,-4.0758],[104.8302,-4.0781],[104.8333,-4.0852],[104.8324,-4.0906],[104.8345,-4.0941],[104.8341,-4.0995],[104.8259,-4.105],[104.8235,-4.1081],[104.8157,-4.107],[104.8064,-4.1099],[104.8047,-4.1202],[104.7984,-4.1233],[104.7919,-4.1288],[104.7888,-4.135],[104.7913,-4.1467],[104.7907,-4.1554],[104.7868,-4.158],[104.7853,-4.1624],[104.7872,-4.1669],[104.784,-4.1725],[104.7783,-4.1744],[104.7748,-4.1838],[104.7725,-4.1867],[104.7702,-4.195],[104.7644,-4.1945],[104.7581,-4.215],[104.7506,-4.2216],[104.7505,-4.2268],[104.7554,-4.2268],[104.7558,-4.2458],[104.7644,-4.2452],[104.7687,-4.2496],[104.7743,-4.2514],[104.7867,-4.2599],[104.7906,-4.2644],[104.7956,-4.2607],[104.7949,-4.254],[104.7962,-4.2508],[104.8045,-4.2503],[104.8073,-4.2473],[104.8199,-4.2409],[104.8258,-4.2419],[104.8289,-4.2389],[104.8372,-4.2378],[104.8486,-4.2386],[104.8559,-4.2406],[104.8611,-4.2359],[104.8628,-4.2319],[104.8665,-4.2309],[104.875,-4.2335],[104.8778,-4.227],[104.8752,-4.2226],[104.8763,-4.2177],[104.8822,-4.2188],[104.8889,-4.2181],[104.8924,-4.2159],[104.8948,-4.2101],[104.9037,-4.2089],[104.9061,-4.2033],[104.9145,-4.1975],[104.9179,-4.1984],[104.9214,-4.1952],[104.9292,-4.1925],[104.9344,-4.1924],[104.9406,-4.1902],[104.9459,-4.1922],[104.9496,-4.1815],[104.9638,-4.1748],[104.9673,-4.1718],[104.9785,-4.1717],[104.9834,-4.1739],[104.9962,-4.1752],[105.0029,-4.1772],[105.0131,-4.1737],[105.021,-4.1658],[105.0212,-4.1582],[105.0246,-4.1563],[105.0269,-4.1465],[105.0353,-4.1402],[105.0426,-4.1385],[105.05,-4.1413],[105.0532,-4.1333],[105.0627,-4.1254],[105.0656,-4.1202],[105.0621,-4.1069],[105.0638,-4.1035],[105.0621,-4.0982],[105.0781,-4.0854],[105.0794,-4.0789],[105.0835,-4.0727],[105.0859,-4.0653],[105.0912,-4.0641],[105.091,-4.053],[105.0985,-4.0447],[105.1031,-4.045],[105.1158,-4.051],[105.1199,-4.0483],[105.1226,-4.0392],[105.1206,-4.0352],[105.1146,-4.0285],[105.1089,-4.0299],[105.1052,-4.0246],[105.1063,-4.0158],[105.1094,-4.0078],[105.1131,-4.0072],[105.1137,-4.0003],[105.1205,-3.9972],[105.1272,-4.0004],[105.1356,-3.9875],[105.1341,-3.9831],[105.1348,-3.9771],[105.1422,-3.9726],[105.1436,-3.9584],[105.1429,-3.9538],[105.1369,-3.9511],[105.1352,-3.9441],[105.1394,-3.9342],[105.1504,-3.9293],[105.1564,-3.9387],[105.1649,-3.9376],[105.1721,-3.9275],[105.1698,-3.9167],[105.1802,-3.9038],[105.1927,-3.8989],[105.2053,-3.8906],[105.2173,-3.8938],[105.2274,-3.8895],[105.2341,-3.8934],[105.2359,-3.9028],[105.2437,-3.9062],[105.2536,-3.9016],[105.2655,-3.8838],[105.2744,-3.88],[105.2778,-3.8758],[105.285,-3.8576],[105.2915,-3.8494],[105.2929,-3.8407],[105.2894,-3.8354],[105.282,-3.8295],[105.2813,-3.8247],[105.2834,-3.8155],[105.2843,-3.7967],[105.2886,-3.7937],[105.2972,-3.7963],[105.3045,-3.7916],[105.309,-3.7756],[105.308,-3.7591],[105.3126,-3.7526],[105.3187,-3.7319],[105.3242,-3.7268],[105.3332,-3.7238],[105.3362,-3.7247],[105.3423,-3.7308],[105.3512,-3.7501],[105.3527,-3.7562],[105.351,-3.7763],[105.3515,-3.7831],[105.3548,-3.7928],[105.3573,-3.7964],[105.3659,-3.7981],[105.3715,-3.7941],[105.3841,-3.782],[105.3902,-3.7795],[105.4128,-3.7774],[105.421,-3.7789],[105.4327,-3.7838],[105.4362,-3.7873],[105.4366,-3.7916],[105.4343,-3.7999],[105.4335,-3.8101],[105.4301,-3.8199],[105.4324,-3.8264],[105.4368,-3.8281],[105.4484,-3.8275],[105.4593,-3.8286],[105.4659,-3.8281],[105.4762,-3.8228],[105.4826,-3.8232],[105.487,-3.8359],[105.4892,-3.8389],[105.4971,-3.8421],[105.5053,-3.8424],[105.5222,-3.8394],[105.5259,-3.8432],[105.5252,-3.8514],[105.5136,-3.8691],[105.5127,-3.8759],[105.5231,-3.8926],[105.5288,-3.8969],[105.5332,-3.8978],[105.5381,-3.8933],[105.5408,-3.8871],[105.5483,-3.8818],[105.5568,-3.8925],[105.5723,-3.8996],[105.5736,-3.902],[105.5708,-3.9092],[105.5623,-3.9262],[105.563,-3.9289],[105.5703,-3.9321],[105.5803,-3.9382],[105.5869,-3.9392],[105.5959,-3.9274],[105.5997,-3.9269],[105.6099,-3.9384],[105.6118,-3.9451],[105.5908,-3.9488],[105.5901,-3.9538],[105.593,-3.9594],[105.6086,-3.9666],[105.6122,-3.9697],[105.6132,-3.9782],[105.6204,-3.9912],[105.6307,-4.0058],[105.6288,-4.0103],[105.6129,-4.0277],[105.6091,-4.0388],[105.6048,-4.0481],[105.6068,-4.0583],[105.611,-4.0617],[105.6183,-4.0613],[105.6219,-4.0565],[105.6225,-4.0458],[105.6254,-4.0435],[105.631,-4.0448],[105.6402,-4.0519],[105.6444,-4.0523],[105.6518,-4.0492],[105.6605,-4.0482],[105.6649,-4.0551],[105.6613,-4.0614],[105.6481,-4.0666],[105.647,-4.0735],[105.651,-4.0862],[105.6543,-4.091],[105.6631,-4.0955],[105.6715,-4.0905],[105.675,-4.0812],[105.6773,-4.0789],[105.6842,-4.0795],[105.6839,-4.096],[105.6898,-4.1041],[105.7002,-4.1044],[105.7086,-4.1063],[105.7103,-4.1122],[105.7065,-4.1171],[105.6992,-4.123],[105.6974,-4.1297],[105.702,-4.14],[105.7082,-4.1431],[105.7137,-4.1416],[105.7274,-4.1345],[105.7345,-4.1379],[105.7415,-4.1465],[105.7469,-4.1496],[105.753,-4.1471],[105.7659,-4.1397],[105.772,-4.1311],[105.7702,-4.1199],[105.7767,-4.1125],[105.7808,-4.1182],[105.7899,-4.1216],[105.8005,-4.1235],[105.8083,-4.1235],[105.8157,-4.1349],[105.8186,-4.1416]]}},{"type":"Feature","properties":{"mhid":"1332:104","alt_name":"KABUPATEN MUARA ENIM","latitude":-4.2327,"longitude":103.6141,"sample_value":797},"geometry":{"type":"LineString","coordinates":[[104.1313,-3.3588],[104.1271,-3.3634],[104.1189,-3.3636],[104.1169,-3.3693],[104.1095,-3.3662],[104.1059,-3.3623],[104.0975,-3.3572],[104.0937,-3.3535],[104.0864,-3.3619],[104.0746,-3.3634],[104.0659,-3.3623],[104.0565,-3.3634],[104.0399,-3.3635],[104.0357,-3.3648],[104.0233,-3.3647],[104.0217,-3.3949],[104.0187,-3.4137],[104.0035,-3.4084],[103.9869,-3.407],[103.9735,-3.4078],[103.9419,-3.3999],[103.9328,-3.3963],[103.9276,-3.3918],[103.9209,-3.3823],[103.9115,-3.3551],[103.9079,-3.3521],[103.8995,-3.3486],[103.8909,-3.3419],[103.8863,-3.33],[103.8827,-3.3301],[103.8776,-3.3351],[103.8642,-3.3389],[103.8586,-3.3386],[103.8555,-3.3344],[103.8571,-3.3272],[103.8542,-3.3214],[103.8496,-3.3201],[103.8363,-3.3249],[103.8324,-3.3233],[103.829,-3.3276],[103.8211,-3.3241],[103.8145,-3.3276],[103.811,-3.3267],[103.808,-3.3169],[103.8043,-3.3165],[103.7948,-3.3223],[103.792,-3.322],[103.7837,-3.3268],[103.7688,-3.3405],[103.7623,-3.3437],[103.7521,-3.3419],[103.7471,-3.3427],[103.7307,-3.3496],[103.7237,-3.3512],[103.7064,-3.3495],[103.6901,-3.3449],[103.6813,-3.3368],[103.6747,-3.3401],[103.6716,-3.3491],[103.6767,-3.3625],[103.6787,-3.3737],[103.6723,-3.375],[103.6565,-3.3678],[103.6505,-3.3603],[103.6462,-3.3516],[103.6281,-3.335],[103.6175,-3.33],[103.6139,-3.3445],[103.6252,-3.3568],[103.6247,-3.3757],[103.616,-3.3871],[103.6159,-3.4037],[103.6141,-3.4196],[103.6046,-3.4344],[103.5932,-3.4493],[103.5906,-3.4572],[103.5862,-3.4607],[103.5766,-3.4545],[103.5722,-3.4554],[103.5664,-3.4731],[103.561,-3.4814],[103.5463,-3.4879],[103.5406,-3.4928],[103.5468,-3.5167],[103.5486,-3.5217],[103.5485,-3.5291],[103.539,-3.536],[103.5388,-3.5478],[103.5552,-3.5516],[103.5655,-3.5521],[103.5744,-3.5498],[103.5925,-3.5371],[103.6043,-3.5278],[103.6283,-3.5121],[103.6654,-3.5387],[103.6701,-3.5385],[103.685,-3.5492],[103.7165,-3.5687],[103.7291,-3.5755],[103.7382,-3.5771],[103.757,-3.576],[103.76,-3.5835],[103.7648,-3.5852],[103.7682,-3.5824],[103.7732,-3.5851],[103.7698,-3.5896],[103.7663,-3.5882],[103.7623,-3.5909],[103.7656,-3.5981],[103.7616,-3.6029],[103.7679,-3.6089],[103.7634,-3.6133],[103.7663,-3.6217],[103.7675,-3.6316],[103.7471,-3.6403],[103.7402,-3.6471],[103.7474,-3.6611],[103.757,-3.6609],[103.7629,-3.6619],[103.7653,-3.6679],[103.7608,-3.6712],[103.7669,-3.6851],[103.7604,-3.6859],[103.7469,-3.684],[103.7398,-3.6877],[103.7374,-3.6923],[103.7381,-3.6985],[103.7409,-3.6999],[103.746,-3.7076],[103.7501,-3.7111],[103.7514,-3.7174],[103.7496,-3.7214],[103.7519,-3.7297],[103.7617,-3.7337],[103.7597,-3.747],[103.7469,-3.7494],[103.7379,-3.7521],[103.7337,-3.7569],[103.733,-3.7641],[103.7245,-3.7647],[103.7257,-3.768],[103.7224,-3.7715],[103.7257,-3.7818],[103.7304,-3.7888],[103.7242,-3.8026],[103.7186,-3.8097],[103.7079,-3.8166],[103.7068,-3.8234],[103.7086,-3.8316],[103.7134,-3.8379],[103.714,-3.8411],[103.7075,-3.853],[103.7072,-3.8605],[103.7034,-3.8697],[103.7051,-3.8813],[103.7029,-3.8927],[103.7045,-3.8991],[103.6997,-3.9015],[103.6944,-3.9078],[103.6835,-3.9145],[103.6761,-3.9105],[103.67,-3.9103],[103.6641,-3.9172],[103.6574,-3.9214],[103.6532,-3.9284],[103.6466,-3.934],[103.6326,-3.9407],[103.6314,-3.9464],[103.6418,-3.9556],[103.6439,-3.9591],[103.6441,-3.9657],[103.6315,-3.9765],[103.624,-3.9804],[103.62,-3.9879],[103.6082,-3.9871],[103.6014,-3.9878],[103.5952,-3.9981],[103.5985,-4.0045],[103.5976,-4.0122],[103.5934,-4.0172],[103.5902,-4.0281],[103.5915,-4.0352],[103.5912,-4.0474],[103.5876,-4.052],[103.5866,-4.0598],[103.5794,-4.0671],[103.569,-4.0888],[103.5643,-4.0937],[103.5623,-4.1069],[103.5583,-4.1148],[103.5534,-4.1208],[103.545,-4.1106],[103.5398,-4.1095],[103.5329,-4.1114],[103.5243,-4.1118],[103.5186,-4.1109],[103.5124,-4.1074],[103.5084,-4.1099],[103.5057,-4.1183],[103.4995,-4.1233],[103.4961,-4.1293],[103.4701,-4.1005],[103.4659,-4.1004],[103.4614,-4.1074],[103.4541,-4.1118],[103.4396,-4.1565],[103.4389,-4.1705],[103.4238,-4.1813],[103.3628,-4.2225],[103.3094,-4.2513],[103.3051,-4.2545],[103.3112,-4.2605],[103.3181,-4.2791],[103.3267,-4.2909],[103.3306,-4.2929],[103.3402,-4.2944],[103.3589,-4.3018],[103.3762,-4.3143],[103.3905,-4.3183],[103.4095,-4.3192],[103.4209,-4.3226],[103.4339,-4.3295],[103.454,-4.3318],[103.4638,-4.3377],[103.4674,-4.3437],[103.4681,-4.3531],[103.4781,-4.3587],[103.4942,-4.3616],[103.5007,-4.3611],[103.5103,-4.37],[103.5149,-4.3761],[103.5197,-4.3768],[103.5308,-4.3679],[103.5378,-4.3686],[103.5406,-4.372],[103.5476,-4.371],[103.5534,-4.3566],[103.5683,-4.3549],[103.5823,-4.3549],[103.5907,-4.3568],[103.5984,-4.3626],[103.6037,-4.3397],[103.6102,-4.3282],[103.6172,-4.3123],[103.6216,-4.3059],[103.6248,-4.2913],[103.626,-4.2699],[103.6273,-4.2644],[103.6209,-4.2529],[103.6174,-4.2445],[103.6164,-4.2328],[103.6175,-4.2219],[103.6216,-4.2162],[103.6316,-4.2123],[103.642,-4.21],[103.6474,-4.2039],[103.6481,-4.1976],[103.6664,-4.1936],[103.6822,-4.1868],[103.6907,-4.1841],[103.706,-4.1833],[103.7051,-4.1723],[103.7051,-4.1341],[103.7037,-4.1169],[103.7049,-4.0853],[103.7365,-4.0853],[103.7467,-4.0843],[103.7529,-4.081],[103.7588,-4.0761],[103.7698,-4.0697],[103.7786,-4.0574],[103.7887,-4.0463],[103.7925,-4.0389],[103.8,-4.0343],[103.8145,-4.0314],[103.8201,-4.0272],[103.8248,-4.0197],[103.8304,-4.0148],[103.8351,-4.0144],[103.8429,-4.0065],[103.8489,-4.007],[103.855,-3.9957],[103.8615,-3.9935],[103.8688,-3.9885],[103.875,-3.9784],[103.8782,-3.9713],[103.8878,-3.9677],[103.8924,-3.9603],[103.8905,-3.9503],[103.8944,-3.9371],[103.8919,-3.9289],[103.893,-3.9248],[103.909,-3.9215],[103.9278,-3.9145],[103.9315,-3.9111],[103.9401,-3.8976],[103.9446,-3.8957],[103.9577,-3.8936],[103.9656,-3.8886],[103.9712,-3.8924],[103.9804,-3.9037],[103.9947,-3.9197],[104.0119,-3.915],[104.0151,-3.9134],[104.0231,-3.9138],[104.0269,-3.9082],[104.0331,-3.9105],[104.0388,-3.909],[104.042,-3.9103],[104.0471,-3.9057],[104.0531,-3.9064],[104.0627,-3.9046],[104.0717,-3.9055],[104.0825,-3.9002],[104.0847,-3.8962],[104.093,-3.8958],[104.1066,-3.8986],[104.1227,-3.8924],[104.1229,-3.8956],[104.1372,-3.8878],[104.1472,-3.885],[104.1512,-3.8817],[104.1565,-3.8747],[104.1792,-3.8633],[104.1867,-3.8571],[104.1889,-3.8518],[104.1934,-3.8474],[104.199,-3.8454],[104.2055,-3.8475],[104.21,-3.8438],[104.2094,-3.8372],[104.2102,-3.8251],[104.2146,-3.819],[104.2206,-3.8169],[104.2292,-3.805],[104.2357,-3.7997],[104.2367,-3.7856],[104.2389,-3.783],[104.2477,-3.7799],[104.2561,-3.7782],[104.2622,-3.7739],[104.2798,-3.7635],[104.2881,-3.7551],[104.2905,-3.7568],[104.3025,-3.7715],[104.3067,-3.7735],[104.3205,-3.7703],[104.3221,-3.7668],[104.3294,-3.764],[104.3347,-3.7603],[104.3467,-3.7676],[104.3543,-3.7668],[104.3602,-3.7689],[104.37,-3.7634],[104.3744,-3.7637],[104.3824,-3.7599],[104.3837,-3.7569],[104.3774,-3.7473],[104.3731,-3.7433],[104.3712,-3.7356],[104.3753,-3.7197],[104.3871,-3.7171],[104.3905,-3.712],[104.3904,-3.7083],[104.3933,-3.7038],[104.3976,-3.7035],[104.408,-3.6989],[104.4099,-3.6963],[104.4156,-3.6959],[104.4206,-3.6915],[104.4299,-3.6898],[104.4325,-3.6849],[104.442,-3.6831],[104.4434,-3.677],[104.4536,-3.6689],[104.454,-3.6628],[104.458,-3.6597],[104.4566,-3.656],[104.464,-3.6499],[104.4627,-3.6461],[104.4688,-3.636],[104.4737,-3.6301],[104.4729,-3.6258],[104.476,-3.6234],[104.477,-3.6103],[104.4694,-3.5979],[104.4679,-3.5895],[104.4621,-3.5869],[104.4586,-3.5813],[104.4535,-3.5766],[104.4434,-3.5706],[104.438,-3.565],[104.4398,-3.56],[104.435,-3.5564],[104.428,-3.5599],[104.4201,-3.5582],[104.4141,-3.5695],[104.4071,-3.575],[104.4071,-3.5834],[104.4008,-3.587],[104.3819,-3.5903],[104.3669,-3.5974],[104.3699,-3.6046],[104.3639,-3.6082],[104.3612,-3.6055],[104.3477,-3.6102],[104.3443,-3.6126],[104.3334,-3.6174],[104.3272,-3.6215],[104.3224,-3.6217],[104.3156,-3.6193],[104.3059,-3.6091],[104.3037,-3.6017],[104.3095,-3.5928],[104.3094,-3.5794],[104.3076,-3.566],[104.3048,-3.5617],[104.3054,-3.567],[104.3006,-3.5671],[104.2935,-3.5639],[104.2787,-3.5724],[104.2607,-3.571],[104.2431,-3.5679],[104.2489,-3.5535],[104.2518,-3.5485],[104.2536,-3.5395],[104.2502,-3.5361],[104.2416,-3.542],[104.2367,-3.5396],[104.2316,-3.542],[104.2213,-3.5396],[104.2244,-3.5324],[104.2137,-3.5317],[104.2177,-3.5416],[104.2074,-3.5421],[104.1951,-3.5385],[104.1937,-3.5433],[104.1837,-3.5459],[104.1734,-3.5426],[104.1635,-3.5428],[104.1608,-3.5448],[104.1496,-3.5438],[104.1466,-3.5423],[104.1424,-3.531],[104.1314,-3.5198],[104.1339,-3.5181],[104.1368,-3.5108],[104.1416,-3.5055],[104.1448,-3.4972],[104.143,-3.4901],[104.1366,-3.492],[104.1285,-3.4915],[104.1329,-3.4866],[104.1397,-3.471],[104.1402,-3.4672],[104.1363,-3.4604],[104.1361,-3.4543],[104.1411,-3.4494],[104.1472,-3.4494],[104.1512,-3.4454],[104.1489,-3.436],[104.151,-3.4304],[104.1506,-3.4167],[104.1519,-3.4115],[104.1515,-3.3961],[104.1319,-3.3783],[104.1313,-3.3588]]}},{"type":"Feature","properties":{"mhid":"1332:104","alt_name":"KABUPATEN MUARA ENIM","latitude":-4.2327,"longitude":103.6141,"sample_value":797},"geometry":{"type":"LineString","coordinates":[[104.6449,-3.0254],[104.6359,-3.019],[104.6259,-3.0143],[104.6188,-3.013],[104.6121,-3.0143],[104.6065,-3.0199],[104.6021,-3.0274],[104.6031,-3.0415],[104.5999,-3.0492],[104.5925,-3.0516],[104.5865,-3.0509],[104.583,-3.048],[104.5853,-3.0417],[104.5846,-3.0366],[104.5799,-3.0343],[104.5653,-3.0374],[104.5548,-3.0319],[104.542,-3.0273],[104.5379,-3.0278],[104.5328,-3.0317],[104.5234,-3.042],[104.5155,-3.0472],[104.511,-3.0551],[104.5054,-3.0613],[104.4991,-3.0629],[104.4916,-3.0627],[104.4857,-3.0608],[104.4827,-3.0561],[104.4803,-3.0369],[104.4786,-3.0317],[104.4747,-3.0302],[104.451,-3.0351],[104.4435,-3.0347],[104.4251,-3.0267],[104.4166,-3.0211],[104.405,-3.0192],[104.3962,-3.0201],[104.3843,-3.0238],[104.3757,-3.0208],[104.3431,-3.0173],[104.353,-3.0346],[104.3564,-3.0475],[104.3531,-3.0463],[104.3385,-3.0324],[104.3365,-3.0321],[104.3182,-3.0218],[104.3065,-3.0247],[104.2843,-3.0354],[104.2741,-3.0346],[104.2673,-3.0277],[104.2643,-3.0265],[104.2566,-3.0332],[104.2555,-3.0435],[104.2571,-3.0465],[104.2571,-3.0564],[104.2524,-3.0747],[104.2484,-3.0843],[104.245,-3.0962],[104.2395,-3.1344],[104.2381,-3.1378],[104.2357,-3.1527],[104.2355,-3.1668],[104.2322,-3.2003],[104.2301,-3.2122],[104.2265,-3.2225],[104.2234,-3.227],[104.2129,-3.2372],[104.2067,-3.2457],[104.2108,-3.2458],[104.2221,-3.2513],[104.2338,-3.2559],[104.2279,-3.2587],[104.2296,-3.2619],[104.2357,-3.2641],[104.2357,-3.2682],[104.2286,-3.2651],[104.2338,-3.2829],[104.2304,-3.286],[104.2339,-3.2998],[104.2323,-3.3052],[104.2192,-3.319],[104.2116,-3.3298],[104.2084,-3.3453],[104.2127,-3.3678],[104.2347,-3.3714],[104.2417,-3.3736],[104.248,-3.373],[104.2642,-3.3696],[104.2807,-3.3645],[104.2979,-3.3568],[104.3059,-3.3568],[104.3265,-3.366],[104.3378,-3.3696],[104.3482,-3.3715],[104.3414,-3.3843],[104.3316,-3.3991],[104.3168,-3.427],[104.3125,-3.4395],[104.3094,-3.4633],[104.3015,-3.4639],[104.2966,-3.47],[104.2928,-3.4784],[104.2931,-3.4876],[104.2957,-3.4931],[104.301,-3.4976],[104.3099,-3.4984],[104.3176,-3.5034],[104.333,-3.5059],[104.349,-3.5043],[104.3564,-3.5056],[104.3781,-3.504],[104.3976,-3.5073],[104.4055,-3.5074],[104.4155,-3.5044],[104.424,-3.5002],[104.4391,-3.4954],[104.4459,-3.4953],[104.4475,-3.4525],[104.4475,-3.4251],[104.4641,-3.4229],[104.4699,-3.4053],[104.4894,-3.4005],[104.4943,-3.3979],[104.5075,-3.3795],[104.5132,-3.3882],[104.5222,-3.3721],[104.5362,-3.3537],[104.5364,-3.346],[104.5349,-3.3332],[104.5366,-3.3251],[104.5349,-3.3213],[104.5294,-3.3231],[104.528,-3.3021],[104.531,-3.2915],[104.5399,-3.2684],[104.5511,-3.261],[104.5563,-3.2636],[104.5609,-3.2588],[104.5687,-3.2475],[104.5715,-3.2395],[104.5679,-3.2269],[104.5634,-3.2152],[104.5351,-3.2147],[104.5219,-3.2094],[104.5145,-3.2052],[104.5071,-3.1946],[104.5025,-3.1844],[104.4961,-3.1738],[104.4969,-3.1692],[104.4921,-3.1634],[104.49,-3.1424],[104.4837,-3.1363],[104.4851,-3.1311],[104.484,-3.1248],[104.4791,-3.1208],[104.4788,-3.1159],[104.4874,-3.1032],[104.4911,-3.1024],[104.4954,-3.0961],[104.4994,-3.0935],[104.5048,-3.0932],[104.5128,-3.0895],[104.5207,-3.0914],[104.5216,-3.0953],[104.526,-3.0974],[104.5424,-3.0908],[104.5441,-3.0959],[104.5474,-3.0962],[104.5779,-3.0941],[104.6095,-3.1015],[104.6182,-3.1114],[104.6789,-3.0685],[104.6808,-3.0667],[104.676,-3.0609],[104.6905,-3.056],[104.6641,-3.0417],[104.6548,-3.0323],[104.6449,-3.0254]]}},{"type":"Feature","properties":{"mhid":"1332:105","alt_name":"KABUPATEN LAHAT","latitude":-3.7864,"longitude":103.5428,"sample_value":697},"geometry":{"type":"LineString","coordinates":[[103.1214,-4.0157],[103.1141,-4.022],[103.1094,-4.0216],[103.0997,-4.011],[103.0933,-4.0084],[103.0858,-4.0076],[103.0768,-4.0134],[103.066,-4.0136],[103.0585,-4.0175],[103.0475,-4.0128],[103.0399,-4.015],[103.0321,-4.0215],[103.0238,-4.0185],[103.0194,-4.0194],[103.0091,-4.0156],[102.9974,-4.0191],[102.9846,-4.0311],[102.981,-4.0416],[102.9678,-4.0447],[102.9627,-4.0482],[102.9602,-4.0531],[102.9541,-4.0562],[102.9427,-4.0526],[102.9305,-4.0474],[102.9188,-4.0559],[102.916,-4.0568],[102.9142,-4.0656],[102.922,-4.076],[102.9223,-4.0798],[102.9187,-4.0854],[102.9178,-4.0928],[102.9196,-4.0966],[102.9336,-4.1065],[102.9427,-4.1112],[102.9527,-4.1124],[102.9599,-4.1205],[102.9672,-4.122],[102.9738,-4.1271],[102.9811,-4.1362],[102.9866,-4.1459],[102.9965,-4.1491],[102.9997,-4.1582],[103.0096,-4.1632],[103.013,-4.1666],[103.0224,-4.1682],[103.0263,-4.1675],[103.0376,-4.1768],[103.0453,-4.1823],[103.0453,-4.1861],[103.0489,-4.1918],[103.0614,-4.196],[103.0617,-4.2027],[103.0642,-4.2117],[103.0611,-4.215],[103.0515,-4.2192],[103.0567,-4.2263],[103.0586,-4.2342],[103.0647,-4.2372],[103.0684,-4.2431],[103.0675,-4.2504],[103.0697,-4.2568],[103.0758,-4.2625],[103.0835,-4.2643],[103.0877,-4.2607],[103.0936,-4.2528],[103.0963,-4.2517],[103.1047,-4.2541],[103.1123,-4.2489],[103.1175,-4.2479],[103.126,-4.2539],[103.1348,-4.2554],[103.1414,-4.2507],[103.1454,-4.2501],[103.1519,-4.2455],[103.1552,-4.2411],[103.1711,-4.241],[103.1809,-4.236],[103.1777,-4.2307],[103.1782,-4.2272],[103.1847,-4.2186],[103.1854,-4.2157],[103.1838,-4.1909],[103.1847,-4.1866],[103.1837,-4.1706],[103.1853,-4.1641],[103.1805,-4.159],[103.1822,-4.1532],[103.1809,-4.1476],[103.1649,-4.1197],[103.1544,-4.1096],[103.1511,-4.1019],[103.1513,-4.0986],[103.1481,-4.0925],[103.1441,-4.0722],[103.1398,-4.059],[103.1367,-4.0419],[103.1322,-4.0309],[103.128,-4.0243],[103.124,-4.0212],[103.1214,-4.0157]]}},{"type":"Feature","properties":{"mhid":"1332:105","alt_name":"KABUPATEN LAHAT","latitude":-3.7864,"longitude":103.5428,"sample_value":697},"geometry":{"type":"LineString","coordinates":[[103.1214,-4.0157],[103.1324,-4.0152],[103.1479,-4.0091],[103.1548,-4.0048],[103.1608,-4.0054],[103.1687,-3.9983],[103.1813,-3.9936],[103.1828,-3.9905],[103.19,-3.9889],[103.1992,-3.992],[103.2123,-3.9887],[103.2203,-3.9879],[103.2303,-3.9921],[103.2373,-3.9931],[103.2407,-3.9986],[103.2487,-3.9991],[103.2527,-4.0031],[103.2604,-3.9998],[103.2711,-4.0041],[103.2746,-4.0036],[103.2883,-4.0093],[103.291,-4.0161],[103.2857,-4.0197],[103.2856,-4.0249],[103.2802,-4.0258],[103.2774,-4.0364],[103.2829,-4.0428],[103.2886,-4.0441],[103.293,-4.0423],[103.3309,-4.0435],[103.3386,-4.039],[103.3435,-4.0377],[103.3428,-4.0309],[103.3473,-4.0195],[103.3475,-4.0152],[103.3515,-4.0115],[103.352,-4.0034],[103.3609,-3.9963],[103.3741,-3.9932],[103.3762,-3.9889],[103.3798,-3.9878],[103.3846,-3.9908],[103.3923,-3.9905],[103.3954,-3.986],[103.4058,-3.9873],[103.4101,-3.9861],[103.4136,-3.9895],[103.4124,-3.9966],[103.4128,-4.0044],[103.4117,-4.0095],[103.4074,-4.017],[103.4065,-4.0266],[103.4001,-4.0316],[103.3994,-4.0369],[103.4011,-4.0478],[103.3967,-4.0523],[103.3942,-4.0582],[103.3956,-4.0631],[103.3906,-4.0714],[103.3765,-4.0813],[103.3739,-4.0895],[103.3649,-4.0972],[103.3593,-4.0981],[103.3615,-4.1031],[103.3612,-4.1078],[103.3631,-4.1133],[103.3578,-4.1165],[103.3555,-4.1206],[103.356,-4.1267],[103.3611,-4.1318],[103.364,-4.145],[103.363,-4.1576],[103.3575,-4.1606],[103.3491,-4.1711],[103.3458,-4.1796],[103.3408,-4.1781],[103.3307,-4.1864],[103.3298,-4.1976],[103.3258,-4.2049],[103.3236,-4.2129],[103.3172,-4.2175],[103.3156,-4.2212],[103.3168,-4.2304],[103.3165,-4.2375],[103.3143,-4.2433],[103.3094,-4.2513],[103.3628,-4.2225],[103.4238,-4.1813],[103.4389,-4.1705],[103.4396,-4.1565],[103.4541,-4.1118],[103.4614,-4.1074],[103.4659,-4.1004],[103.4701,-4.1005],[103.4961,-4.1293],[103.4995,-4.1233],[103.5057,-4.1183],[103.5084,-4.1099],[103.5124,-4.1074],[103.5186,-4.1109],[103.5243,-4.1118],[103.5329,-4.1114],[103.5398,-4.1095],[103.545,-4.1106],[103.5534,-4.1208],[103.5583,-4.1148],[103.5623,-4.1069],[103.5643,-4.0937],[103.569,-4.0888],[103.5794,-4.0671],[103.5866,-4.0598],[103.5876,-4.052],[103.5912,-4.0474],[103.5915,-4.0352],[103.5902,-4.0281],[103.5934,-4.0172],[103.5976,-4.0122],[103.5985,-4.0045],[103.5952,-3.9981],[103.6014,-3.9878],[103.6082,-3.9871],[103.62,-3.9879],[103.624,-3.9804],[103.6315,-3.9765],[103.6441,-3.9657],[103.6439,-3.9591],[103.6418,-3.9556],[103.6314,-3.9464],[103.6326,-3.9407],[103.6466,-3.934],[103.6532,-3.9284],[103.6574,-3.9214],[103.6641,-3.9172],[103.67,-3.9103],[103.6761,-3.9105],[103.6835,-3.9145],[103.6944,-3.9078],[103.6997,-3.9015],[103.7045,-3.8991],[103.7029,-3.8927],[103.7051,-3.8813],[103.7034,-3.8697],[103.7072,-3.8605],[103.7075,-3.853],[103.714,-3.8411],[103.7134,-3.8379],[103.7086,-3.8316],[103.7068,-3.8234],[103.7079,-3.8166],[103.7186,-3.8097],[103.7242,-3.8026],[103.7304,-3.7888],[103.7257,-3.7818],[103.7224,-3.7715],[103.7257,-3.768],[103.7245,-3.7647],[103.733,-3.7641],[103.7337,-3.7569],[103.7379,-3.7521],[103.7469,-3.7494],[103.7597,-3.747],[103.7617,-3.7337],[103.7519,-3.7297],[103.7496,-3.7214],[103.7514,-3.7174],[103.7501,-3.7111],[103.746,-3.7076],[103.7409,-3.6999],[103.7381,-3.6985],[103.7374,-3.6923],[103.7398,-3.6877],[103.7469,-3.684],[103.7604,-3.6859],[103.7669,-3.6851],[103.7608,-3.6712],[103.7653,-3.6679],[103.7629,-3.6619],[103.757,-3.6609],[103.7474,-3.6611],[103.7402,-3.6471],[103.7471,-3.6403],[103.7675,-3.6316],[103.7663,-3.6217],[103.7634,-3.6133],[103.7679,-3.6089],[103.7616,-3.6029],[103.7656,-3.5981],[103.7623,-3.5909],[103.7663,-3.5882],[103.7698,-3.5896],[103.7732,-3.5851],[103.7682,-3.5824],[103.7648,-3.5852],[103.76,-3.5835],[103.757,-3.576],[103.7382,-3.5771],[103.7291,-3.5755],[103.7165,-3.5687],[103.685,-3.5492],[103.6701,-3.5385],[103.6654,-3.5387],[103.6283,-3.5121],[103.6043,-3.5278],[103.5925,-3.5371],[103.5744,-3.5498],[103.5655,-3.5521],[103.5552,-3.5516],[103.5388,-3.5478],[103.5381,-3.5876],[103.5364,-3.594],[103.527,-3.5979],[103.5157,-3.5979],[103.5126,-3.5917],[103.5105,-3.5763],[103.5066,-3.5665],[103.5039,-3.5572],[103.4986,-3.5487],[103.4991,-3.5243],[103.4987,-3.5149],[103.493,-3.51],[103.4841,-3.5087],[103.4452,-3.5095],[103.4257,-3.5201],[103.4182,-3.5299],[103.3826,-3.5306],[103.3839,-3.5338],[103.375,-3.5347],[103.3728,-3.5271],[103.3701,-3.5261],[103.3673,-3.5342],[103.3535,-3.5331],[103.3398,-3.531],[103.336,-3.5289],[103.3316,-3.5222],[103.326,-3.5221],[103.3173,-3.5106],[103.2979,-3.5088],[103.2883,-3.5092],[103.2659,-3.504],[103.246,-3.5031],[103.2235,-3.5013],[103.2011,-3.5021],[103.1947,-3.4898],[103.1837,-3.4958],[103.1692,-3.5062],[103.1661,-3.5131],[103.1695,-3.5214],[103.1709,-3.5289],[103.1637,-3.5491],[103.1602,-3.5512],[103.155,-3.5609],[103.1498,-3.5619],[103.1458,-3.5695],[103.146,-3.577],[103.1391,-3.5842],[103.1362,-3.5892],[103.1324,-3.5889],[103.1285,-3.5967],[103.1297,-3.5999],[103.1258,-3.6031],[103.1288,-3.6131],[103.1267,-3.6201],[103.1268,-3.6409],[103.1286,-3.6451],[103.128,-3.6524],[103.1312,-3.6544],[103.145,-3.6704],[103.1529,-3.6731],[103.1567,-3.6769],[103.1519,-3.6817],[103.1492,-3.6879],[103.1492,-3.6927],[103.1532,-3.7047],[103.1475,-3.7291],[103.145,-3.7346],[103.1457,-3.7502],[103.1523,-3.7696],[103.1601,-3.7782],[103.1649,-3.78],[103.1641,-3.7866],[103.1687,-3.7865],[103.1683,-3.792],[103.1714,-3.7979],[103.1694,-3.8095],[103.1572,-3.829],[103.1444,-3.846],[103.1421,-3.8531],[103.1159,-3.86],[103.1136,-3.8682],[103.1075,-3.8819],[103.1082,-3.9199],[103.1229,-3.9232],[103.1241,-3.9249],[103.1231,-3.9352],[103.1243,-3.94],[103.1281,-3.9389],[103.1336,-3.9434],[103.1429,-3.9435],[103.1396,-3.9608],[103.1403,-3.9681],[103.1388,-3.9719],[103.1417,-3.9752],[103.1364,-3.9863],[103.1325,-3.987],[103.1305,-3.9942],[103.1253,-3.9986],[103.1246,-4.0057],[103.1214,-4.0157]]}},{"type":"Feature","properties":{"mhid":"1332:106","alt_name":"KABUPATEN MUSI RAWAS","latitude":-3.08333,"longitude":103.2,"sample_value":609},"geometry":{"type":"LineString","coordinates":[[103.6493,-3.2456],[103.65,-3.2412],[103.6407,-3.2353],[103.6388,-3.2302],[103.6393,-3.2249],[103.6337,-3.2191],[103.633,-3.2159],[103.6383,-3.214],[103.6448,-3.2046],[103.6396,-3.1969],[103.6379,-3.1883],[103.6279,-3.1853],[103.6157,-3.1798],[103.6092,-3.1797],[103.6082,-3.1748],[103.5986,-3.162],[103.595,-3.1601],[103.5954,-3.152],[103.5937,-3.1423],[103.5938,-3.1361],[103.588,-3.1375],[103.5814,-3.1415],[103.5739,-3.1378],[103.5751,-3.1292],[103.581,-3.1226],[103.5814,-3.1174],[103.5778,-3.1113],[103.5592,-3.0967],[103.5505,-3.1001],[103.5431,-3.1007],[103.5401,-3.0992],[103.5301,-3.0856],[103.5207,-3.0836],[103.5121,-3.0781],[103.5071,-3.0698],[103.5026,-3.0573],[103.4999,-3.0323],[103.4859,-3.0375],[103.4815,-3.0366],[103.4762,-3.0228],[103.4608,-2.9928],[103.4456,-2.9675],[103.4413,-2.9577],[103.4385,-2.9476],[103.4264,-2.9433],[103.4111,-2.9246],[103.4177,-2.9025],[103.4313,-2.8771],[103.3536,-2.8511],[103.3466,-2.8378],[103.3343,-2.8257],[103.3381,-2.8229],[103.3121,-2.7965],[103.2712,-2.753],[103.2631,-2.7559],[103.2518,-2.758],[103.2461,-2.7624],[103.2359,-2.762],[103.2332,-2.7578],[103.2241,-2.7555],[103.2117,-2.7572],[103.2071,-2.7561],[103.184,-2.7567],[103.1743,-2.7581],[103.1593,-2.7728],[103.1544,-2.7745],[103.1524,-2.7717],[103.1435,-2.7783],[103.1327,-2.7705],[103.129,-2.7702],[103.1207,-2.782],[103.101,-2.7821],[103.102,-2.7856],[103.1018,-2.8239],[103.1003,-2.8267],[103.1005,-2.8429],[103.0987,-2.8468],[103.0912,-2.8416],[103.0842,-2.8448],[103.0796,-2.8433],[103.0744,-2.8486],[103.0637,-2.848],[103.0548,-2.8506],[103.0473,-2.8503],[103.0416,-2.8527],[103.0328,-2.8537],[103.0295,-2.857],[103.0254,-2.8566],[103.017,-2.8517],[103.0097,-2.8545],[103.0041,-2.8591],[102.9939,-2.8615],[102.9871,-2.8664],[102.9815,-2.8689],[102.9493,-2.8785],[102.923,-2.8808],[102.9038,-2.8834],[102.9151,-2.9324],[102.8864,-2.926],[102.8758,-2.924],[102.8758,-2.9334],[102.8724,-2.9709],[102.8811,-2.9811],[102.8721,-2.9796],[102.8594,-2.9752],[102.853,-2.9824],[102.851,-2.9864],[102.8451,-2.9911],[102.8355,-2.9913],[102.8277,-2.9955],[102.8218,-2.9893],[102.8148,-2.9893],[102.8104,-2.9937],[102.8102,-2.9985],[102.8014,-2.9978],[102.7934,-2.9922],[102.7696,-2.9924],[102.7574,-3.0005],[102.7564,-3.0039],[102.7491,-3.0042],[102.7426,-3.0079],[102.7424,-3.0108],[102.7376,-3.0131],[102.7349,-3.008],[102.7296,-3.0039],[102.7243,-3.0038],[102.7211,-3.0082],[102.7153,-3.013],[102.7039,-3.0074],[102.6903,-3.0092],[102.6824,-3.0126],[102.6829,-3.0181],[102.6722,-3.024],[102.6725,-3.0289],[102.6631,-3.0316],[102.6574,-3.0345],[102.649,-3.035],[102.6481,-3.038],[102.6431,-3.041],[102.6383,-3.0399],[102.6317,-3.043],[102.6237,-3.053],[102.6143,-3.0558],[102.6116,-3.0506],[102.6085,-3.0504],[102.602,-3.0547],[102.5967,-3.0551],[102.5861,-3.0584],[102.584,-3.0631],[102.5842,-3.0691],[102.5796,-3.0729],[102.5727,-3.0711],[102.5585,-3.0786],[102.5522,-3.0838],[102.5489,-3.0898],[102.5459,-3.0848],[102.5408,-3.084],[102.5386,-3.0862],[102.528,-3.0885],[102.5204,-3.0931],[102.5201,-3.0972],[102.5083,-3.1021],[102.4948,-3.1031],[102.4863,-3.1079],[102.4881,-3.1103],[102.4858,-3.1158],[102.4883,-3.1219],[102.4891,-3.1309],[102.4925,-3.1359],[102.4888,-3.1432],[102.489,-3.1566],[102.4938,-3.1642],[102.493,-3.1722],[102.491,-3.1776],[102.4923,-3.1903],[102.4904,-3.1969],[102.487,-3.2014],[102.489,-3.2079],[102.5027,-3.2107],[102.5057,-3.2152],[102.5041,-3.2197],[102.5003,-3.2221],[102.4949,-3.2287],[102.4947,-3.2323],[102.4898,-3.2394],[102.492,-3.2443],[102.4928,-3.2512],[102.4973,-3.2554],[102.4981,-3.2601],[102.4981,-3.263],[102.5083,-3.2688],[102.5115,-3.2745],[102.5205,-3.2758],[102.5245,-3.2784],[102.5284,-3.2869],[102.5319,-3.2893],[102.5401,-3.2895],[102.543,-3.2941],[102.5502,-3.2957],[102.5608,-3.2942],[102.5606,-3.3037],[102.5649,-3.3092],[102.569,-3.3109],[102.5701,-3.3148],[102.5787,-3.3195],[102.5843,-3.3265],[102.5961,-3.3334],[102.6099,-3.3336],[102.6145,-3.3372],[102.633,-3.3434],[102.6365,-3.3528],[102.6418,-3.3497],[102.6502,-3.3392],[102.6578,-3.3365],[102.6613,-3.3335],[102.6704,-3.3296],[102.6753,-3.3222],[102.6876,-3.3187],[102.6964,-3.3191],[102.7011,-3.3178],[102.7059,-3.3189],[102.7249,-3.317],[102.7265,-3.3156],[102.7437,-3.3158],[102.7458,-3.3054],[102.7507,-3.2949],[102.759,-3.2882],[102.7605,-3.2837],[102.7532,-3.2834],[102.766,-3.2731],[102.7654,-3.2688],[102.7747,-3.2699],[102.7797,-3.2676],[102.7791,-3.2579],[102.7877,-3.2576],[102.7925,-3.2531],[102.7976,-3.2544],[102.816,-3.2364],[102.8078,-3.2316],[102.8086,-3.2254],[102.8117,-3.2213],[102.8086,-3.2052],[102.8057,-3.2015],[102.8113,-3.1947],[102.81,-3.189],[102.8128,-3.1749],[102.825,-3.1736],[102.8321,-3.175],[102.8322,-3.1649],[102.8361,-3.1513],[102.8397,-3.1475],[102.8448,-3.1457],[102.8521,-3.1357],[102.8603,-3.1293],[102.8643,-3.1356],[102.8691,-3.1392],[102.8753,-3.1495],[102.8811,-3.1567],[102.8853,-3.1541],[102.9003,-3.158],[102.9102,-3.1614],[102.924,-3.1706],[102.9192,-3.1744],[102.9162,-3.1906],[102.9217,-3.1939],[102.927,-3.1946],[102.9277,-3.1994],[102.9353,-3.2062],[102.9371,-3.2127],[102.9409,-3.2175],[102.9476,-3.218],[102.9447,-3.2265],[102.9462,-3.2327],[102.9561,-3.2354],[102.956,-3.2378],[102.9508,-3.2467],[102.9483,-3.2535],[102.9411,-3.2552],[102.9379,-3.2584],[102.9405,-3.2624],[102.9499,-3.2625],[102.9563,-3.2595],[102.9692,-3.2598],[102.9711,-3.2626],[102.9677,-3.3381],[102.9662,-3.3479],[102.966,-3.3621],[102.9707,-3.3643],[102.9851,-3.3666],[102.9894,-3.3697],[102.996,-3.3912],[102.9993,-3.3948],[102.9943,-3.4005],[102.9945,-3.4046],[102.9916,-3.4121],[103.0264,-3.4186],[103.042,-3.4235],[103.0576,-3.4337],[103.0754,-3.4524],[103.0997,-3.4767],[103.1064,-3.4838],[103.1118,-3.4876],[103.1167,-3.4871],[103.136,-3.4829],[103.1605,-3.473],[103.1675,-3.4659],[103.176,-3.4639],[103.1854,-3.4749],[103.1877,-3.4764],[103.1947,-3.4898],[103.2011,-3.5021],[103.2235,-3.5013],[103.246,-3.5031],[103.2659,-3.504],[103.2883,-3.5092],[103.2979,-3.5088],[103.3173,-3.5106],[103.326,-3.5221],[103.3316,-3.5222],[103.336,-3.5289],[103.3398,-3.531],[103.3535,-3.5331],[103.3673,-3.5342],[103.3701,-3.5261],[103.3728,-3.5271],[103.375,-3.5347],[103.3839,-3.5338],[103.3826,-3.5306],[103.4182,-3.5299],[103.4257,-3.5201],[103.4452,-3.5095],[103.4841,-3.5087],[103.493,-3.51],[103.4987,-3.5149],[103.4991,-3.5243],[103.4986,-3.5487],[103.5039,-3.5572],[103.5066,-3.5665],[103.5105,-3.5763],[103.5126,-3.5917],[103.5157,-3.5979],[103.527,-3.5979],[103.5364,-3.594],[103.5381,-3.5876],[103.5388,-3.5478],[103.539,-3.536],[103.5485,-3.5291],[103.5486,-3.5217],[103.5468,-3.5167],[103.5406,-3.4928],[103.5463,-3.4879],[103.561,-3.4814],[103.5664,-3.4731],[103.5722,-3.4554],[103.5766,-3.4545],[103.5862,-3.4607],[103.5906,-3.4572],[103.5932,-3.4493],[103.6046,-3.4344],[103.6141,-3.4196],[103.6159,-3.4037],[103.616,-3.3871],[103.6247,-3.3757],[103.6252,-3.3568],[103.6139,-3.3445],[103.6175,-3.33],[103.6191,-3.3235],[103.6104,-3.3165],[103.6113,-3.3086],[103.6069,-3.2893],[103.6105,-3.2788],[103.6244,-3.2761],[103.6323,-3.256],[103.6419,-3.2516],[103.6493,-3.2456]]}},{"type":"Feature","properties":{"mhid":"1332:107","alt_name":"KABUPATEN MUSI BANYU ASIN","latitude":-2.41667,"longitude":103.75,"sample_value":708},"geometry":{"type":"LineString","coordinates":[[104.1527,-1.7249],[104.0558,-1.7501],[104.0059,-1.7627],[103.9582,-1.7757],[103.8909,-1.7925],[103.7771,-1.8203],[103.7661,-1.816],[103.7549,-1.8196],[103.757,-1.8253],[103.6878,-1.8426],[103.6643,-1.849],[103.6605,-1.849],[103.6572,-1.8458],[103.6452,-1.8458],[103.6413,-1.8502],[103.6377,-1.8509],[103.6256,-1.8435],[103.609,-1.8506],[103.6071,-1.8487],[103.5997,-1.8548],[103.58,-1.8677],[103.5635,-1.8741],[103.5572,-1.8787],[103.5488,-1.8814],[103.5376,-1.8886],[103.5245,-1.9007],[103.5225,-1.9068],[103.5197,-1.9087],[103.5176,-1.9183],[103.5159,-1.9351],[103.5141,-1.9456],[103.5099,-1.9556],[103.5096,-1.9624],[103.5181,-1.9662],[103.5475,-1.9868],[103.5602,-2],[103.5572,-2.0115],[103.5542,-2.0419],[103.5516,-2.0484],[103.5461,-2.0499],[103.5384,-2.0492],[103.5336,-2.0557],[103.5321,-2.0634],[103.5209,-2.0692],[103.5191,-2.0754],[103.5141,-2.0837],[103.5155,-2.0904],[103.5189,-2.0987],[103.5171,-2.1036],[103.5209,-2.1103],[103.5275,-2.1184],[103.5309,-2.1254],[103.5359,-2.1267],[103.5407,-2.1328],[103.5489,-2.1379],[103.5593,-2.1413],[103.5543,-2.1457],[103.5471,-2.1477],[103.5439,-2.1506],[103.5383,-2.1592],[103.5275,-2.167],[103.5163,-2.169],[103.5077,-2.1721],[103.4987,-2.1773],[103.4887,-2.1775],[103.4734,-2.1744],[103.4642,-2.1743],[103.4599,-2.1755],[103.4588,-2.1812],[103.4579,-2.1886],[103.4547,-2.1927],[103.453,-2.2006],[103.4529,-2.2011],[103.4518,-2.2114],[103.4528,-2.2156],[103.4586,-2.2253],[103.4602,-2.2272],[103.4614,-2.2387],[103.4605,-2.2434],[103.4642,-2.2483],[103.4659,-2.2556],[103.4659,-2.2561],[103.5249,-2.2457],[103.4656,-2.2574],[103.4633,-2.2676],[103.4589,-2.2731],[103.4611,-2.2794],[103.4593,-2.2836],[103.4604,-2.2938],[103.4598,-2.2978],[103.4532,-2.3014],[103.4507,-2.3088],[103.4471,-2.3114],[103.4469,-2.3154],[103.4522,-2.3258],[103.4506,-2.3359],[103.4486,-2.339],[103.4506,-2.343],[103.4467,-2.3475],[103.4494,-2.3517],[103.4474,-2.3564],[103.4436,-2.3543],[103.4364,-2.3436],[103.4328,-2.3366],[103.43,-2.3351],[103.4215,-2.336],[103.4188,-2.3341],[103.4116,-2.3347],[103.4096,-2.3309],[103.412,-2.3255],[103.4113,-2.3216],[103.4072,-2.317],[103.4029,-2.3159],[103.3995,-2.31],[103.3992,-2.3041],[103.3949,-2.3039],[103.3923,-2.2952],[103.3879,-2.2963],[103.3822,-2.2899],[103.381,-2.2851],[103.377,-2.2833],[103.3669,-2.2842],[103.3631,-2.2785],[103.3558,-2.2747],[103.3546,-2.2712],[103.3478,-2.2655],[103.3424,-2.2543],[103.3372,-2.2494],[103.3354,-2.2403],[103.3315,-2.2361],[103.3272,-2.2236],[103.3216,-2.22],[103.3139,-2.2188],[103.3068,-2.2158],[103.2975,-2.2063],[103.2948,-2.2003],[103.2938,-2.1885],[103.2951,-2.1844],[103.2919,-2.1777],[103.2872,-2.1789],[103.2787,-2.165],[103.2757,-2.1641],[103.2721,-2.1575],[103.2657,-2.1554],[103.2614,-2.1558],[103.2598,-2.1512],[103.26,-2.1388],[103.2573,-2.1328],[103.2527,-2.132],[103.25,-2.1378],[103.2465,-2.1375],[103.238,-2.1418],[103.2221,-2.1418],[103.2092,-2.1415],[103.1986,-2.1487],[103.1899,-2.1582],[103.1852,-2.1661],[103.1815,-2.1788],[103.1816,-2.1924],[103.1788,-2.2084],[103.1829,-2.2218],[103.1807,-2.2293],[103.1796,-2.2391],[103.1798,-2.2496],[103.1915,-2.2531],[103.195,-2.2561],[103.2067,-2.2775],[103.2066,-2.2871],[103.2047,-2.2918],[103.2064,-2.3047],[103.2082,-2.3098],[103.2119,-2.3117],[103.2125,-2.3171],[103.2061,-2.3168],[103.1974,-2.3195],[103.1822,-2.3295],[103.1697,-2.3332],[103.1665,-2.3363],[103.1514,-2.3465],[103.1477,-2.3516],[103.1436,-2.3608],[103.1359,-2.3559],[103.127,-2.3579],[103.1236,-2.3574],[103.1185,-2.3527],[103.1152,-2.3461],[103.1117,-2.3441],[103.104,-2.3453],[103.0925,-2.3445],[103.0886,-2.3397],[103.0875,-2.3332],[103.0849,-2.3316],[103.0791,-2.3329],[103.0749,-2.331],[103.0681,-2.3308],[103.0643,-2.3238],[103.0583,-2.3183],[103.0559,-2.3131],[103.0502,-2.3139],[103.0438,-2.3117],[103.04,-2.3137],[103.0333,-2.3203],[103.0323,-2.3239],[103.0362,-2.3319],[103.0342,-2.3393],[103.0242,-2.34],[103.0174,-2.3362],[103.004,-2.3361],[103.0062,-2.3461],[103.0142,-2.3633],[103.0148,-2.3676],[103.014,-2.3902],[103.0167,-2.4001],[103.0215,-2.4049],[103.0268,-2.404],[103.0341,-2.3972],[103.0376,-2.3975],[103.0465,-2.403],[103.053,-2.4023],[103.0538,-2.4068],[103.05,-2.4093],[103.0507,-2.4166],[103.0586,-2.4203],[103.0624,-2.4271],[103.0627,-2.432],[103.0667,-2.4398],[103.0702,-2.4429],[103.0862,-2.4475],[103.1054,-2.4581],[103.1153,-2.4669],[103.1252,-2.4609],[103.1335,-2.4579],[103.138,-2.462],[103.1506,-2.4649],[103.1569,-2.4701],[103.1569,-2.4803],[103.1603,-2.4957],[103.1585,-2.5025],[103.1594,-2.5061],[103.1639,-2.51],[103.1715,-2.5107],[103.1746,-2.5036],[103.1798,-2.5053],[103.1842,-2.5041],[103.1871,-2.5069],[103.1875,-2.5114],[103.1928,-2.513],[103.1972,-2.5178],[103.2008,-2.5277],[103.203,-2.5296],[103.2115,-2.5304],[103.2152,-2.5354],[103.2213,-2.5349],[103.2244,-2.5319],[103.2226,-2.5235],[103.2283,-2.5193],[103.2369,-2.5173],[103.241,-2.5145],[103.2407,-2.5097],[103.2441,-2.5003],[103.2438,-2.4929],[103.2453,-2.4843],[103.2491,-2.479],[103.2555,-2.4771],[103.2606,-2.4732],[103.2649,-2.4667],[103.2736,-2.4659],[103.2793,-2.4694],[103.2756,-2.4721],[103.2723,-2.4783],[103.2741,-2.485],[103.2757,-2.4987],[103.2852,-2.5038],[103.2958,-2.5147],[103.2998,-2.5208],[103.3131,-2.5285],[103.3239,-2.537],[103.3341,-2.5321],[103.3387,-2.5397],[103.3432,-2.5445],[103.3504,-2.5591],[103.3665,-2.5865],[103.3664,-2.6059],[103.3435,-2.6682],[103.3416,-2.6946],[103.309,-2.7312],[103.2736,-2.7513],[103.2712,-2.753],[103.3121,-2.7965],[103.3381,-2.8229],[103.3343,-2.8257],[103.3466,-2.8378],[103.3536,-2.8511],[103.4313,-2.8771],[103.4177,-2.9025],[103.4111,-2.9246],[103.4264,-2.9433],[103.4385,-2.9476],[103.4413,-2.9577],[103.4456,-2.9675],[103.4608,-2.9928],[103.4762,-3.0228],[103.4815,-3.0366],[103.4859,-3.0375],[103.4999,-3.0323],[103.5026,-3.0573],[103.5071,-3.0698],[103.5121,-3.0781],[103.5207,-3.0836],[103.5301,-3.0856],[103.5401,-3.0992],[103.5431,-3.1007],[103.5505,-3.1001],[103.5592,-3.0967],[103.5778,-3.1113],[103.5814,-3.1174],[103.581,-3.1226],[103.5751,-3.1292],[103.5739,-3.1378],[103.5814,-3.1415],[103.588,-3.1375],[103.5938,-3.1361],[103.5937,-3.1423],[103.5954,-3.152],[103.595,-3.1601],[103.5986,-3.162],[103.6082,-3.1748],[103.6092,-3.1797],[103.6157,-3.1798],[103.6279,-3.1853],[103.6379,-3.1883],[103.6396,-3.1969],[103.6448,-3.2046],[103.6383,-3.214],[103.633,-3.2159],[103.6337,-3.2191],[103.6393,-3.2249],[103.6388,-3.2302],[103.6407,-3.2353],[103.65,-3.2412],[103.6493,-3.2456],[103.648,-3.2501],[103.6529,-3.2507],[103.6604,-3.2549],[103.6681,-3.2571],[103.6792,-3.2569],[103.6824,-3.2547],[103.686,-3.2472],[103.6945,-3.2453],[103.7008,-3.2404],[103.7064,-3.2383],[103.7127,-3.2574],[103.7165,-3.2623],[103.7313,-3.266],[103.7413,-3.2668],[103.7476,-3.2625],[103.7659,-3.2591],[103.7741,-3.2542],[103.7808,-3.2409],[103.7887,-3.2029],[103.7894,-3.1949],[103.7842,-3.1887],[103.7831,-3.1843],[103.7838,-3.1757],[103.7868,-3.1704],[103.7915,-3.1577],[103.7971,-3.1542],[103.7975,-3.1509],[103.7935,-3.1413],[103.7961,-3.1374],[103.8013,-3.1338],[103.8094,-3.1314],[103.8138,-3.1252],[103.8142,-3.1198],[103.8168,-3.1153],[103.821,-3.1136],[103.8327,-3.102],[103.8422,-3.0903],[103.8522,-3.0847],[103.8641,-3.0872],[103.8859,-3.0795],[103.8898,-3.0734],[103.889,-3.0654],[103.891,-3.0569],[103.8976,-3.0522],[103.9033,-3.0392],[103.9053,-3.0325],[103.9105,-3.0283],[103.9121,-3.0244],[103.9219,-3.0237],[103.9267,-3.0206],[103.9341,-3.0183],[103.9413,-3.0145],[103.9489,-3.0054],[103.9825,-3.0158],[103.9997,-3.0224],[104.0122,-3.0257],[104.0185,-3.0297],[104.0266,-3.0289],[104.0334,-3.0232],[104.0388,-3.0173],[104.0477,-3.011],[104.0666,-3.0039],[104.0874,-3.0032],[104.0988,-3.0063],[104.1282,-3.0073],[104.1363,-3.0141],[104.1331,-3.0247],[104.1335,-3.029],[104.1386,-3.0378],[104.1413,-3.0464],[104.1435,-3.0477],[104.1504,-3.0453],[104.155,-3.0456],[104.1681,-3.0509],[104.1674,-3.0548],[104.1876,-3.0525],[104.1832,-3.0442],[104.1795,-3.0259],[104.1795,-3.015],[104.1805,-3.0019],[104.18,-2.9881],[104.1759,-2.9721],[104.1755,-2.9583],[104.1772,-2.9421],[104.1826,-2.9267],[104.1827,-2.9174],[104.1844,-2.9027],[104.1818,-2.8922],[104.1771,-2.8857],[104.171,-2.8811],[104.1606,-2.8762],[104.1577,-2.8735],[104.1325,-2.864],[104.1316,-2.8555],[104.147,-2.8398],[104.1547,-2.829],[104.1688,-2.8138],[104.1774,-2.8014],[104.1826,-2.7915],[104.1916,-2.7867],[104.1991,-2.7739],[104.2056,-2.768],[104.2094,-2.7623],[104.2166,-2.7562],[104.2237,-2.7484],[104.2293,-2.7404],[104.2365,-2.735],[104.2467,-2.7251],[104.2279,-2.7087],[104.2368,-2.6977],[104.2421,-2.696],[104.2664,-2.6745],[104.2829,-2.6624],[104.2789,-2.6586],[104.2696,-2.6571],[104.2613,-2.6526],[104.2423,-2.647],[104.2389,-2.6453],[104.2437,-2.6292],[104.2296,-2.6311],[104.2285,-2.6175],[104.2107,-2.6204],[104.2087,-2.6154],[104.2216,-2.6006],[104.2026,-2.5935],[104.1899,-2.5861],[104.1764,-2.5752],[104.1697,-2.5728],[104.1588,-2.5615],[104.1529,-2.5662],[104.1443,-2.5565],[104.1343,-2.55],[104.1132,-2.565],[104.0977,-2.5516],[104.0841,-2.5453],[104.0731,-2.5391],[104.076,-2.5337],[104.076,-2.526],[104.1023,-2.5071],[104.0662,-2.4541],[104.0793,-2.4429],[104.0883,-2.4337],[104.095,-2.4291],[104.1062,-2.426],[104.1114,-2.4262],[104.1278,-2.4316],[104.1496,-2.4448],[104.1671,-2.4596],[104.1858,-2.4811],[104.1996,-2.4929],[104.2077,-2.5006],[104.2159,-2.5057],[104.2224,-2.511],[104.2307,-2.5151],[104.2534,-2.52],[104.2708,-2.5194],[104.2754,-2.5185],[104.2942,-2.5102],[104.2988,-2.5069],[104.3077,-2.4979],[104.3114,-2.4921],[104.3231,-2.4793],[104.3478,-2.4618],[104.36,-2.4552],[104.3753,-2.4512],[104.3839,-2.4499],[104.3967,-2.45],[104.4208,-2.4455],[104.4276,-2.4432],[104.4552,-2.438],[104.4594,-2.4383],[104.4698,-2.4328],[104.4957,-2.4227],[104.5062,-2.4176],[104.5275,-2.4004],[104.5359,-2.3962],[104.5586,-2.3893],[104.5626,-2.3873],[104.5771,-2.383],[104.5995,-2.3684],[104.618,-2.3549],[104.6329,-2.3422],[104.6534,-2.3265],[104.6569,-2.3221],[104.6551,-2.3195],[104.652,-2.3075],[104.6498,-2.3033],[104.6458,-2.2887],[104.6399,-2.2734],[104.6342,-2.262],[104.6242,-2.2522],[104.6165,-2.2498],[104.6052,-2.2487],[104.5935,-2.2491],[104.569,-2.2603],[104.5557,-2.2641],[104.5449,-2.2633],[104.5223,-2.2538],[104.5054,-2.2447],[104.4845,-2.2324],[104.4714,-2.2235],[104.4624,-2.216],[104.456,-2.2074],[104.4497,-2.2015],[104.4354,-2.192],[104.4298,-2.1871],[104.4224,-2.178],[104.4106,-2.1595],[104.3982,-2.1444],[104.3759,-2.1104],[104.3691,-2.0951],[104.3604,-2.0709],[104.3437,-2.0537],[104.3354,-2.0463],[104.3256,-2.0346],[104.3186,-2.0284],[104.3123,-2.0197],[104.307,-2.0143],[104.2753,-1.9757],[104.2589,-1.9578],[104.2449,-1.9403],[104.2299,-1.9176],[104.2125,-1.8888],[104.2069,-1.8769],[104.2005,-1.8663],[104.1805,-1.8285],[104.1628,-1.7932],[104.1527,-1.7249]]}},{"type":"Feature","properties":{"mhid":"1332:108","alt_name":"KABUPATEN BANYU ASIN","latitude":-2.88333,"longitude":104.38306,"sample_value":270},"geometry":{"type":"LineString","coordinates":[[104.9282,-2.3999],[104.9286,-2.3668],[104.9282,-2.3584],[104.9262,-2.3542],[104.9162,-2.3596],[104.913,-2.3657],[104.9174,-2.3799],[104.9245,-2.3989],[104.9282,-2.3999]]}},{"type":"Feature","properties":{"mhid":"1332:108","alt_name":"KABUPATEN BANYU ASIN","latitude":-2.88333,"longitude":104.38306,"sample_value":270},"geometry":{"type":"LineString","coordinates":[[104.7659,-2.3471],[104.7701,-2.3313],[104.7728,-2.3166],[104.7691,-2.3128],[104.7659,-2.3182],[104.7551,-2.3436],[104.7567,-2.3525],[104.7659,-2.3471]]}},{"type":"Feature","properties":{"mhid":"1332:108","alt_name":"KABUPATEN BANYU ASIN","latitude":-2.88333,"longitude":104.38306,"sample_value":270},"geometry":{"type":"LineString","coordinates":[[104.6456,-1.9181],[104.6444,-1.9142],[104.6351,-1.9066],[104.6264,-1.8979],[104.6174,-1.8869],[104.6028,-1.8744],[104.5878,-1.8642],[104.5535,-1.8493],[104.5465,-1.8487],[104.5393,-1.8537],[104.5384,-1.8586],[104.5382,-1.8739],[104.5336,-1.883],[104.5293,-1.8965],[104.5244,-1.9077],[104.5235,-1.9159],[104.5199,-1.9202],[104.5081,-1.9231],[104.5024,-1.9353],[104.504,-1.948],[104.5066,-1.9546],[104.5132,-1.9637],[104.5229,-1.9703],[104.5346,-1.9725],[104.5416,-1.9751],[104.547,-1.9815],[104.5582,-1.9857],[104.5731,-1.9934],[104.584,-1.9941],[104.5966,-1.9926],[104.6076,-1.9897],[104.6103,-1.9877],[104.6134,-1.98],[104.6197,-1.9767],[104.6167,-1.9643],[104.6111,-1.9578],[104.6097,-1.9534],[104.6198,-1.9461],[104.6239,-1.941],[104.6282,-1.9327],[104.6436,-1.9253],[104.6456,-1.9181]]}},{"type":"Feature","properties":{"mhid":"1332:108","alt_name":"KABUPATEN BANYU ASIN","latitude":-2.88333,"longitude":104.38306,"sample_value":270},"geometry":{"type":"LineString","coordinates":[[104.6056,-1.8059],[104.6064,-1.8022],[104.6043,-1.7968],[104.5976,-1.7871],[104.5945,-1.7842],[104.5936,-1.7722],[104.588,-1.7588],[104.5884,-1.7501],[104.5918,-1.7376],[104.5917,-1.7318],[104.5853,-1.7262],[104.5752,-1.7264],[104.57,-1.7283],[104.5674,-1.7317],[104.5646,-1.7401],[104.5624,-1.7518],[104.5611,-1.7667],[104.5541,-1.7834],[104.5485,-1.7984],[104.5493,-1.8054],[104.5609,-1.808],[104.576,-1.807],[104.5974,-1.8114],[104.6028,-1.8097],[104.6056,-1.8059]]}},{"type":"Feature","properties":{"mhid":"1332:108","alt_name":"KABUPATEN BANYU ASIN","latitude":-2.88333,"longitude":104.38306,"sample_value":270},"geometry":{"type":"LineString","coordinates":[[104.498,-1.6729],[104.4871,-1.6605],[104.4841,-1.656],[104.477,-1.6575],[104.4728,-1.6545],[104.471,-1.6453],[104.4604,-1.642],[104.4527,-1.6332],[104.4503,-1.6328],[104.442,-1.6362],[104.4342,-1.6353],[104.4311,-1.6314],[104.4221,-1.6264],[104.4159,-1.6283],[104.4099,-1.6257],[104.4054,-1.6264],[104.3965,-1.6318],[104.3718,-1.6343],[104.3636,-1.6378],[104.3585,-1.6429],[104.3598,-1.6559],[104.3546,-1.6593],[104.3549,-1.6623],[104.3466,-1.6683],[104.3423,-1.6756],[104.3028,-1.6856],[104.2786,-1.6921],[104.2188,-1.7072],[104.1527,-1.7249],[104.1628,-1.7932],[104.1805,-1.8285],[104.2005,-1.8663],[104.2069,-1.8769],[104.2125,-1.8888],[104.2299,-1.9176],[104.2449,-1.9403],[104.2589,-1.9578],[104.2753,-1.9757],[104.307,-2.0143],[104.3123,-2.0197],[104.3186,-2.0284],[104.3256,-2.0346],[104.3354,-2.0463],[104.3437,-2.0537],[104.3604,-2.0709],[104.3691,-2.0951],[104.3759,-2.1104],[104.3982,-2.1444],[104.4106,-2.1595],[104.4224,-2.178],[104.4298,-2.1871],[104.4354,-2.192],[104.4497,-2.2015],[104.456,-2.2074],[104.4624,-2.216],[104.4714,-2.2235],[104.4845,-2.2324],[104.5054,-2.2447],[104.5223,-2.2538],[104.5449,-2.2633],[104.5557,-2.2641],[104.569,-2.2603],[104.5935,-2.2491],[104.6052,-2.2487],[104.6165,-2.2498],[104.6242,-2.2522],[104.6342,-2.262],[104.6399,-2.2734],[104.6458,-2.2887],[104.6498,-2.3033],[104.652,-2.3075],[104.6551,-2.3195],[104.6569,-2.3221],[104.6534,-2.3265],[104.6329,-2.3422],[104.618,-2.3549],[104.5995,-2.3684],[104.5771,-2.383],[104.5626,-2.3873],[104.5586,-2.3893],[104.5359,-2.3962],[104.5275,-2.4004],[104.5062,-2.4176],[104.4957,-2.4227],[104.4698,-2.4328],[104.4594,-2.4383],[104.4552,-2.438],[104.4276,-2.4432],[104.4208,-2.4455],[104.3967,-2.45],[104.3839,-2.4499],[104.3753,-2.4512],[104.36,-2.4552],[104.3478,-2.4618],[104.3231,-2.4793],[104.3114,-2.4921],[104.3077,-2.4979],[104.2988,-2.5069],[104.2942,-2.5102],[104.2754,-2.5185],[104.2708,-2.5194],[104.2534,-2.52],[104.2307,-2.5151],[104.2224,-2.511],[104.2159,-2.5057],[104.2077,-2.5006],[104.1996,-2.4929],[104.1858,-2.4811],[104.1671,-2.4596],[104.1496,-2.4448],[104.1278,-2.4316],[104.1114,-2.4262],[104.1062,-2.426],[104.095,-2.4291],[104.0883,-2.4337],[104.0793,-2.4429],[104.0662,-2.4541],[104.1023,-2.5071],[104.076,-2.526],[104.076,-2.5337],[104.0731,-2.5391],[104.0841,-2.5453],[104.0977,-2.5516],[104.1132,-2.565],[104.1343,-2.55],[104.1443,-2.5565],[104.1529,-2.5662],[104.1588,-2.5615],[104.1697,-2.5728],[104.1764,-2.5752],[104.1899,-2.5861],[104.2026,-2.5935],[104.2216,-2.6006],[104.2087,-2.6154],[104.2107,-2.6204],[104.2285,-2.6175],[104.2296,-2.6311],[104.2437,-2.6292],[104.2389,-2.6453],[104.2423,-2.647],[104.2613,-2.6526],[104.2696,-2.6571],[104.2789,-2.6586],[104.2829,-2.6624],[104.2664,-2.6745],[104.2421,-2.696],[104.2368,-2.6977],[104.2279,-2.7087],[104.2467,-2.7251],[104.2365,-2.735],[104.2293,-2.7404],[104.2237,-2.7484],[104.2166,-2.7562],[104.2094,-2.7623],[104.2056,-2.768],[104.1991,-2.7739],[104.1916,-2.7867],[104.1826,-2.7915],[104.1774,-2.8014],[104.1688,-2.8138],[104.1547,-2.829],[104.147,-2.8398],[104.1316,-2.8555],[104.1325,-2.864],[104.1577,-2.8735],[104.1606,-2.8762],[104.171,-2.8811],[104.1771,-2.8857],[104.1818,-2.8922],[104.1844,-2.9027],[104.1827,-2.9174],[104.1826,-2.9267],[104.1772,-2.9421],[104.1755,-2.9583],[104.1759,-2.9721],[104.18,-2.9881],[104.1805,-3.0019],[104.1795,-3.015],[104.1795,-3.0259],[104.1832,-3.0442],[104.1876,-3.0525],[104.1674,-3.0548],[104.1668,-3.0577],[104.1608,-3.0691],[104.1628,-3.0776],[104.1616,-3.082],[104.1536,-3.0906],[104.1545,-3.1025],[104.1668,-3.1007],[104.1762,-3.0979],[104.2036,-3.0931],[104.2139,-3.0907],[104.2437,-3.0861],[104.2484,-3.0843],[104.2524,-3.0747],[104.2571,-3.0564],[104.2571,-3.0465],[104.2555,-3.0435],[104.2566,-3.0332],[104.2643,-3.0265],[104.2673,-3.0277],[104.2741,-3.0346],[104.2843,-3.0354],[104.3065,-3.0247],[104.3182,-3.0218],[104.3365,-3.0321],[104.3385,-3.0324],[104.3531,-3.0463],[104.3564,-3.0475],[104.353,-3.0346],[104.3431,-3.0173],[104.3757,-3.0208],[104.3843,-3.0238],[104.3962,-3.0201],[104.405,-3.0192],[104.4166,-3.0211],[104.4251,-3.0267],[104.4435,-3.0347],[104.451,-3.0351],[104.4747,-3.0302],[104.4786,-3.0317],[104.4803,-3.0369],[104.4827,-3.0561],[104.4857,-3.0608],[104.4916,-3.0627],[104.4991,-3.0629],[104.5054,-3.0613],[104.511,-3.0551],[104.5155,-3.0472],[104.5234,-3.042],[104.5328,-3.0317],[104.5379,-3.0278],[104.542,-3.0273],[104.5548,-3.0319],[104.5653,-3.0374],[104.5799,-3.0343],[104.5846,-3.0366],[104.5853,-3.0417],[104.583,-3.048],[104.5865,-3.0509],[104.5925,-3.0516],[104.5999,-3.0492],[104.6031,-3.0415],[104.6021,-3.0274],[104.6065,-3.0199],[104.6121,-3.0143],[104.6188,-3.013],[104.6259,-3.0143],[104.6359,-3.019],[104.6449,-3.0254],[104.6385,-3.0161],[104.6258,-3.0006],[104.623,-2.9913],[104.6227,-2.98],[104.6247,-2.9706],[104.6291,-2.9616],[104.6292,-2.9541],[104.6337,-2.9363],[104.6378,-2.9301],[104.643,-2.9324],[104.6441,-2.9259],[104.6477,-2.9223],[104.6562,-2.9229],[104.6622,-2.9283],[104.6768,-2.9355],[104.6751,-2.917],[104.6785,-2.9147],[104.6791,-2.9064],[104.6746,-2.9036],[104.6775,-2.8991],[104.6737,-2.8904],[104.6694,-2.8887],[104.6668,-2.8834],[104.6718,-2.8721],[104.6745,-2.8712],[104.6753,-2.8658],[104.7042,-2.8647],[104.7053,-2.8694],[104.71,-2.8731],[104.7301,-2.8778],[104.7302,-2.8828],[104.7346,-2.8852],[104.7345,-2.8883],[104.738,-2.8968],[104.7338,-2.9034],[104.7412,-2.9061],[104.7538,-2.9156],[104.7628,-2.9145],[104.7685,-2.9151],[104.7739,-2.9186],[104.7833,-2.9127],[104.7894,-2.9076],[104.7904,-2.904],[104.8111,-2.9094],[104.8063,-2.9148],[104.8039,-2.9219],[104.7952,-2.9219],[104.8084,-2.94],[104.8142,-2.939],[104.8147,-2.9443],[104.8359,-2.9322],[104.8498,-2.9248],[104.8514,-2.9249],[104.8505,-2.9439],[104.8412,-2.9503],[104.8474,-2.9561],[104.8601,-2.947],[104.8646,-2.952],[104.8657,-2.957],[104.8609,-2.9719],[104.8554,-2.9795],[104.8399,-2.9884],[104.8344,-2.9892],[104.832,-3.0044],[104.8231,-3.0117],[104.8156,-3.027],[104.8122,-3.0279],[104.8136,-3.034],[104.8099,-3.039],[104.8062,-3.0366],[104.7956,-3.0381],[104.7913,-3.0319],[104.7867,-3.0298],[104.7825,-3.035],[104.7816,-3.0407],[104.7807,-3.0526],[104.7994,-3.0548],[104.7942,-3.063],[104.8056,-3.0635],[104.8214,-3.0663],[104.8282,-3.0687],[104.8284,-3.0778],[104.838,-3.0909],[104.8503,-3.0995],[104.8592,-3.1012],[104.8686,-3.0974],[104.8725,-3.097],[104.8793,-3.0991],[104.8834,-3.1027],[104.8843,-3.1081],[104.8887,-3.1221],[104.8944,-3.1252],[104.9054,-3.1274],[104.9079,-3.1301],[104.9047,-3.137],[104.9033,-3.1466],[104.8985,-3.1557],[104.9151,-3.1615],[104.9199,-3.1607],[104.9302,-3.1698],[104.9429,-3.1719],[104.9602,-3.1694],[104.9672,-3.166],[104.9756,-3.1581],[104.9811,-3.1573],[104.9799,-3.1468],[104.989,-3.1449],[104.9996,-3.1463],[105.0016,-3.1451],[105.0014,-3.1373],[104.9995,-3.1316],[105.003,-3.1279],[105.0163,-3.1245],[105.0286,-3.1126],[105.0319,-3.0998],[105.0324,-3.0818],[105.0338,-3.0621],[105.0334,-3.0491],[105.0365,-3.0325],[105.0414,-3.0128],[105.0223,-3.0083],[105.027,-3.0045],[105.027,-2.9964],[105.0355,-2.9821],[105.0098,-2.9711],[105.0193,-2.965],[105.0392,-2.9638],[105.0472,-2.9543],[105.0616,-2.954],[105.0646,-2.9499],[105.0693,-2.9506],[105.0722,-2.9434],[105.0783,-2.941],[105.0845,-2.9407],[105.0924,-2.9419],[105.096,-2.9318],[105.0938,-2.9151],[105.0679,-2.9075],[105.0671,-2.9033],[105.0679,-2.8886],[105.0692,-2.881],[105.0718,-2.8743],[105.0808,-2.8583],[105.0846,-2.8539],[105.0906,-2.8417],[105.087,-2.8311],[105.0809,-2.8084],[105.078,-2.8054],[105.08,-2.7999],[105.0814,-2.7877],[105.0801,-2.7777],[105.0769,-2.7675],[105.0844,-2.76],[105.0873,-2.7557],[105.0906,-2.7458],[105.09,-2.7368],[105.088,-2.7353],[105.0878,-2.7215],[105.0927,-2.714],[105.0965,-2.7115],[105.115,-2.7188],[105.119,-2.7181],[105.1323,-2.7208],[105.1438,-2.7255],[105.1541,-2.7275],[105.1685,-2.7316],[105.1769,-2.733],[105.193,-2.7323],[105.2079,-2.7298],[105.2128,-2.7232],[105.2174,-2.7109],[105.2159,-2.6854],[105.2117,-2.6773],[105.2055,-2.6699],[105.1964,-2.6551],[105.1813,-2.653],[105.1761,-2.6495],[105.1746,-2.6455],[105.1768,-2.6394],[105.185,-2.6337],[105.198,-2.636],[105.2043,-2.6344],[105.2065,-2.6276],[105.2095,-2.6254],[105.2093,-2.6187],[105.2125,-2.6085],[105.2092,-2.6007],[105.2034,-2.595],[105.2013,-2.5905],[105.2037,-2.5833],[105.2085,-2.5836],[105.2184,-2.5867],[105.2284,-2.5871],[105.2295,-2.5819],[105.2409,-2.5664],[105.2473,-2.5548],[105.2517,-2.5541],[105.2586,-2.5493],[105.2631,-2.5428],[105.2694,-2.5381],[105.2717,-2.5338],[105.2722,-2.5262],[105.2799,-2.5187],[105.2856,-2.5101],[105.2896,-2.5081],[105.297,-2.5086],[105.3022,-2.5041],[105.3132,-2.4983],[105.3145,-2.4954],[105.3113,-2.4886],[105.3123,-2.4816],[105.3232,-2.4684],[105.3298,-2.4651],[105.3347,-2.4606],[105.3347,-2.4501],[105.3364,-2.4479],[105.3429,-2.4476],[105.351,-2.4444],[105.3563,-2.4473],[105.3608,-2.4521],[105.3675,-2.4455],[105.3737,-2.444],[105.38,-2.4455],[105.3857,-2.4505],[105.3916,-2.4483],[105.399,-2.4558],[105.4032,-2.4555],[105.4168,-2.4481],[105.4219,-2.4518],[105.4285,-2.4474],[105.4324,-2.4506],[105.4394,-2.4496],[105.4441,-2.4505],[105.4489,-2.4545],[105.4519,-2.4597],[105.4604,-2.4584],[105.4703,-2.4628],[105.47,-2.4551],[105.4842,-2.4458],[105.4875,-2.4488],[105.4942,-2.4501],[105.4953,-2.4397],[105.5037,-2.4361],[105.5102,-2.4315],[105.5207,-2.4269],[105.5264,-2.4215],[105.5327,-2.4178],[105.5577,-2.4132],[105.5637,-2.417],[105.5684,-2.4111],[105.5679,-2.4028],[105.5531,-2.3982],[105.5111,-2.3908],[105.4903,-2.3834],[105.4713,-2.3797],[105.4484,-2.3876],[105.4307,-2.3888],[105.4034,-2.387],[105.4001,-2.3824],[105.39,-2.3826],[105.3786,-2.3811],[105.3727,-2.3792],[105.3604,-2.3774],[105.346,-2.378],[105.3378,-2.3764],[105.3322,-2.3737],[105.3227,-2.3747],[105.3148,-2.3743],[105.3038,-2.3714],[105.2972,-2.3718],[105.2921,-2.3679],[105.2856,-2.3652],[105.2762,-2.3662],[105.2761,-2.3616],[105.2669,-2.3579],[105.2627,-2.3543],[105.2521,-2.352],[105.2326,-2.3427],[105.2259,-2.3364],[105.2214,-2.3303],[105.2109,-2.3261],[105.2048,-2.3261],[105.1742,-2.3396],[105.1595,-2.3469],[105.1322,-2.3692],[105.1209,-2.3738],[105.1103,-2.369],[105.1083,-2.3667],[105.1022,-2.3671],[105.0901,-2.3629],[105.081,-2.3617],[105.079,-2.3632],[105.0669,-2.3631],[105.0601,-2.3663],[105.0573,-2.374],[105.0507,-2.3754],[105.0459,-2.3736],[105.0289,-2.3506],[105.0214,-2.3445],[105.0041,-2.3338],[105.0008,-2.335],[104.9907,-2.3336],[104.9827,-2.3336],[104.9632,-2.3313],[104.9541,-2.3323],[104.9263,-2.3408],[104.9329,-2.3664],[104.9321,-2.3819],[104.9343,-2.3937],[104.9334,-2.4054],[104.937,-2.4237],[104.9414,-2.439],[104.9338,-2.44],[104.9312,-2.4358],[104.9251,-2.421],[104.9184,-2.4087],[104.9198,-2.4032],[104.9136,-2.3865],[104.9062,-2.3758],[104.9024,-2.3727],[104.9016,-2.3642],[104.9085,-2.3577],[104.9144,-2.3396],[104.9181,-2.3212],[104.9188,-2.3056],[104.9183,-2.2915],[104.9171,-2.2873],[104.9131,-2.2823],[104.9089,-2.2804],[104.8991,-2.2793],[104.8916,-2.282],[104.8719,-2.2846],[104.8588,-2.2839],[104.8529,-2.2857],[104.8444,-2.2857],[104.8435,-2.2904],[104.8392,-2.2983],[104.8387,-2.3116],[104.8416,-2.3172],[104.843,-2.3289],[104.8397,-2.3359],[104.8243,-2.3547],[104.814,-2.3662],[104.7889,-2.3826],[104.7745,-2.39],[104.7554,-2.391],[104.7521,-2.4004],[104.7532,-2.4062],[104.7523,-2.4119],[104.7555,-2.4273],[104.7573,-2.4546],[104.7559,-2.4708],[104.7503,-2.499],[104.7469,-2.5097],[104.7385,-2.5556],[104.7374,-2.5672],[104.7385,-2.5712],[104.7338,-2.5859],[104.7269,-2.5962],[104.7224,-2.584],[104.7254,-2.5789],[104.727,-2.5617],[104.7235,-2.5436],[104.7202,-2.5319],[104.7215,-2.5218],[104.7234,-2.5157],[104.7315,-2.4995],[104.7395,-2.4777],[104.7431,-2.4657],[104.743,-2.4508],[104.7402,-2.4375],[104.7337,-2.421],[104.7301,-2.4006],[104.73,-2.3799],[104.7233,-2.3739],[104.7123,-2.3695],[104.7097,-2.3594],[104.7072,-2.3544],[104.6995,-2.3522],[104.6969,-2.353],[104.6974,-2.342],[104.709,-2.3414],[104.7255,-2.3512],[104.7387,-2.3572],[104.7473,-2.3552],[104.7515,-2.3439],[104.7626,-2.3237],[104.7766,-2.2922],[104.8123,-2.2619],[104.8309,-2.2468],[104.8341,-2.2503],[104.8412,-2.25],[104.8517,-2.238],[104.8627,-2.2274],[104.8711,-2.2182],[104.8807,-2.2122],[104.8958,-2.2003],[104.905,-2.1893],[104.905,-2.1696],[104.9024,-2.1448],[104.9039,-2.1371],[104.9006,-2.1166],[104.8924,-2.085],[104.8863,-2.067],[104.8784,-2.0484],[104.8746,-2.042],[104.8549,-2.0156],[104.8444,-2.005],[104.8381,-2.0015],[104.8186,-1.9981],[104.8032,-1.9976],[104.787,-1.9942],[104.7648,-1.9912],[104.7458,-1.9904],[104.7336,-1.9887],[104.7172,-1.9883],[104.7143,-1.9896],[104.7087,-1.9962],[104.7007,-1.9976],[104.6934,-2.0016],[104.6915,-2.0055],[104.69,-2.0158],[104.6893,-2.0291],[104.6904,-2.0431],[104.6894,-2.052],[104.6874,-2.055],[104.6773,-2.0584],[104.6729,-2.0574],[104.6658,-2.0515],[104.6587,-2.0514],[104.6467,-2.0531],[104.6375,-2.0568],[104.6343,-2.0598],[104.6328,-2.0667],[104.6349,-2.0728],[104.6417,-2.0868],[104.6375,-2.092],[104.6316,-2.0936],[104.6298,-2.0983],[104.6315,-2.106],[104.6273,-2.1126],[104.623,-2.1144],[104.6068,-2.1141],[104.5955,-2.1054],[104.5988,-2.1014],[104.6091,-2.1084],[104.6174,-2.1094],[104.6245,-2.1087],[104.6241,-2.0987],[104.6253,-2.092],[104.6351,-2.0808],[104.6269,-2.0668],[104.6276,-2.0582],[104.6304,-2.0551],[104.6462,-2.0462],[104.6518,-2.0455],[104.6596,-2.0467],[104.6694,-2.0454],[104.6786,-2.0501],[104.682,-2.0498],[104.6821,-2.043],[104.6726,-2.0195],[104.6716,-2.0105],[104.6729,-2.0044],[104.6768,-1.9997],[104.6831,-1.9961],[104.6869,-1.987],[104.6858,-1.983],[104.67,-1.9718],[104.6615,-1.9602],[104.6573,-1.9592],[104.6484,-1.9611],[104.6407,-1.9648],[104.6294,-1.9726],[104.6266,-1.9845],[104.6163,-1.996],[104.6057,-2.0004],[104.5944,-2.0028],[104.5839,-1.9999],[104.5793,-2.0005],[104.5739,-1.9988],[104.5665,-1.9936],[104.5621,-1.993],[104.5578,-1.9893],[104.5421,-1.9838],[104.5362,-1.9757],[104.5239,-1.9752],[104.5199,-1.9734],[104.5062,-1.9621],[104.4998,-1.9461],[104.4991,-1.9356],[104.4954,-1.9202],[104.4916,-1.9113],[104.4868,-1.9073],[104.4765,-1.9065],[104.4701,-1.9105],[104.4678,-1.9206],[104.4701,-1.9457],[104.4715,-1.9544],[104.4755,-1.9581],[104.4725,-1.9616],[104.4683,-1.9541],[104.4686,-1.9484],[104.4646,-1.93],[104.4663,-1.9148],[104.4648,-1.9064],[104.4659,-1.9004],[104.4686,-1.896],[104.4681,-1.8835],[104.4716,-1.8807],[104.4735,-1.8756],[104.4724,-1.8716],[104.464,-1.8653],[104.466,-1.8563],[104.4701,-1.8534],[104.4743,-1.8472],[104.4797,-1.8456],[104.4857,-1.84],[104.4858,-1.8245],[104.4912,-1.8218],[104.4936,-1.8162],[104.4993,-1.8086],[104.5025,-1.8084],[104.5069,-1.8046],[104.5086,-1.7989],[104.514,-1.8006],[104.5272,-1.7977],[104.5324,-1.7939],[104.5374,-1.7879],[104.5399,-1.7826],[104.5403,-1.7773],[104.5391,-1.7648],[104.5373,-1.7555],[104.5376,-1.7485],[104.5411,-1.7393],[104.5406,-1.7267],[104.5386,-1.718],[104.536,-1.7134],[104.5278,-1.7083],[104.5297,-1.7008],[104.5284,-1.6953],[104.5176,-1.6771],[104.5144,-1.6735],[104.5054,-1.6708],[104.498,-1.6729]]}},{"type":"Feature","properties":{"mhid":"1332:109","alt_name":"KABUPATEN OGAN KOMERING ULU SELATAN","latitude":-4.65728,"longitude":104.00659,"sample_value":480},"geometry":{"type":"LineString","coordinates":[[104.1587,-4.4028],[104.1423,-4.4094],[104.1089,-4.4255],[104.0986,-4.4374],[104.0631,-4.4461],[104.0451,-4.4584],[104.0271,-4.4554],[104.0137,-4.4456],[104.0015,-4.4472],[103.9958,-4.4502],[103.986,-4.461],[103.9799,-4.4646],[103.9714,-4.466],[103.967,-4.4636],[103.9605,-4.4571],[103.9523,-4.4442],[103.9257,-4.4215],[103.9157,-4.409],[103.9077,-4.3975],[103.9034,-4.3832],[103.8988,-4.3818],[103.8903,-4.3824],[103.8814,-4.3795],[103.8643,-4.3795],[103.8512,-4.3769],[103.8535,-4.3606],[103.8483,-4.3084],[103.846,-4.2915],[103.8419,-4.2776],[103.8355,-4.2618],[103.8272,-4.2495],[103.8126,-4.2307],[103.8081,-4.2224],[103.7991,-4.21],[103.7908,-4.2164],[103.7724,-4.2236],[103.7601,-4.2303],[103.7443,-4.2412],[103.7173,-4.2641],[103.7023,-4.2806],[103.699,-4.2853],[103.637,-4.2875],[103.6271,-4.3067],[103.6216,-4.3059],[103.6172,-4.3123],[103.6102,-4.3282],[103.6037,-4.3397],[103.5984,-4.3626],[103.5907,-4.3568],[103.5823,-4.3549],[103.5683,-4.3549],[103.5534,-4.3566],[103.5476,-4.371],[103.5406,-4.372],[103.5378,-4.3686],[103.5308,-4.3679],[103.5197,-4.3768],[103.5149,-4.3761],[103.5103,-4.37],[103.5007,-4.3611],[103.4942,-4.3616],[103.4781,-4.3587],[103.4681,-4.3531],[103.4624,-4.3614],[103.4494,-4.3708],[103.4391,-4.3873],[103.433,-4.4002],[103.4286,-4.4053],[103.4254,-4.4237],[103.4252,-4.4386],[103.4235,-4.458],[103.4137,-4.4663],[103.4119,-4.4713],[103.4107,-4.4852],[103.4082,-4.4922],[103.4,-4.5106],[103.3982,-4.5175],[103.4069,-4.5211],[103.4168,-4.5207],[103.437,-4.5313],[103.4435,-4.5386],[103.4461,-4.5442],[103.4515,-4.5469],[103.46,-4.5549],[103.4664,-4.5591],[103.4718,-4.5657],[103.4726,-4.5703],[103.4758,-4.5737],[103.4856,-4.5791],[103.4947,-4.5771],[103.5029,-4.5733],[103.5086,-4.5747],[103.5204,-4.5739],[103.5268,-4.5708],[103.5369,-4.564],[103.5449,-4.5536],[103.5488,-4.5443],[103.5562,-4.5399],[103.5706,-4.5248],[103.5768,-4.528],[103.5879,-4.5232],[103.5977,-4.5245],[103.6053,-4.5295],[103.6149,-4.5305],[103.6184,-4.533],[103.6289,-4.5507],[103.6301,-4.5562],[103.6243,-4.5565],[103.6207,-4.5681],[103.6074,-4.5789],[103.6073,-4.5837],[103.5982,-4.5894],[103.5979,-4.596],[103.6137,-4.5973],[103.6229,-4.5933],[103.628,-4.5949],[103.6407,-4.5949],[103.6449,-4.5975],[103.6485,-4.6026],[103.6563,-4.608],[103.6618,-4.6098],[103.6709,-4.6228],[103.6859,-4.6337],[103.6842,-4.6458],[103.6947,-4.6539],[103.6974,-4.6694],[103.6999,-4.672],[103.6982,-4.6829],[103.7041,-4.6923],[103.7045,-4.6984],[103.7007,-4.7041],[103.6861,-4.7121],[103.6793,-4.7167],[103.6747,-4.7216],[103.6718,-4.7295],[103.6747,-4.7321],[103.6877,-4.729],[103.6959,-4.7254],[103.7029,-4.7251],[103.7079,-4.7282],[103.715,-4.7291],[103.7208,-4.7329],[103.7325,-4.7372],[103.7326,-4.742],[103.7396,-4.7441],[103.7454,-4.7412],[103.7473,-4.7451],[103.7549,-4.7508],[103.7619,-4.7545],[103.7635,-4.7585],[103.7614,-4.7751],[103.7675,-4.7726],[103.7739,-4.7733],[103.7767,-4.7814],[103.7766,-4.7893],[103.779,-4.795],[103.7825,-4.7957],[103.7868,-4.7927],[103.7895,-4.794],[103.8022,-4.7924],[103.8094,-4.7938],[103.8258,-4.8013],[103.8228,-4.8066],[103.8227,-4.8175],[103.8237,-4.8208],[103.8401,-4.8216],[103.8487,-4.8274],[103.854,-4.8353],[103.8637,-4.8441],[103.8663,-4.8482],[103.8653,-4.8682],[103.8662,-4.8721],[103.8721,-4.8781],[103.8749,-4.8841],[103.8789,-4.8748],[103.883,-4.8681],[103.8816,-4.8617],[103.8833,-4.8582],[103.8888,-4.8541],[103.899,-4.8495],[103.9011,-4.8439],[103.9055,-4.8399],[103.9055,-4.8332],[103.9136,-4.825],[103.9127,-4.8168],[103.92,-4.8133],[103.9387,-4.8133],[103.9515,-4.8206],[103.9672,-4.8198],[103.9769,-4.8246],[103.9797,-4.8287],[103.9846,-4.8303],[103.9854,-4.84],[103.9922,-4.8388],[103.9951,-4.842],[104.0032,-4.8449],[104.0137,-4.8584],[104.0158,-4.8649],[104.0115,-4.8702],[104.0091,-4.8772],[103.9991,-4.8772],[103.9948,-4.8822],[103.9867,-4.8786],[103.9817,-4.8782],[103.9801,-4.8755],[103.9811,-4.8689],[103.9781,-4.8679],[103.9664,-4.8699],[103.9637,-4.8739],[103.9557,-4.8735],[103.946,-4.8772],[103.935,-4.8852],[103.9472,-4.8978],[103.9598,-4.9109],[103.9722,-4.9103],[104.006,-4.9075],[104.0138,-4.9079],[104.0189,-4.9054],[104.034,-4.9025],[104.0473,-4.9009],[104.0514,-4.8938],[104.0576,-4.89],[104.0652,-4.8927],[104.069,-4.9003],[104.0706,-4.9071],[104.0785,-4.912],[104.0807,-4.9117],[104.0885,-4.9166],[104.0978,-4.919],[104.1075,-4.9231],[104.1222,-4.9239],[104.1325,-4.922],[104.1521,-4.9253],[104.1627,-4.922],[104.1662,-4.9159],[104.1759,-4.9061],[104.1863,-4.892],[104.1895,-4.8829],[104.193,-4.8647],[104.1952,-4.862],[104.2046,-4.862],[104.2151,-4.8585],[104.2205,-4.8603],[104.2294,-4.8673],[104.2385,-4.8782],[104.2441,-4.8817],[104.2564,-4.8799],[104.2629,-4.8771],[104.2673,-4.8774],[104.2727,-4.8749],[104.2785,-4.8692],[104.2784,-4.8627],[104.2812,-4.8568],[104.2866,-4.8557],[104.2934,-4.86],[104.2918,-4.8631],[104.2933,-4.869],[104.299,-4.873],[104.3036,-4.8804],[104.313,-4.8839],[104.33,-4.8741],[104.3405,-4.8648],[104.3477,-4.8556],[104.3583,-4.8451],[104.3592,-4.8391],[104.3702,-4.822],[104.3611,-4.8242],[104.3532,-4.8225],[104.3493,-4.8237],[104.3399,-4.8213],[104.3349,-4.8153],[104.3291,-4.8125],[104.3267,-4.8077],[104.3285,-4.8023],[104.3142,-4.7854],[104.3124,-4.7785],[104.3135,-4.7738],[104.3049,-4.7666],[104.3082,-4.7596],[104.3047,-4.7408],[104.3064,-4.7297],[104.2957,-4.7161],[104.2957,-4.7067],[104.3072,-4.7037],[104.3079,-4.6999],[104.3157,-4.6984],[104.3153,-4.6912],[104.2954,-4.7048],[104.2897,-4.7026],[104.2879,-4.6987],[104.2904,-4.6921],[104.29,-4.6786],[104.2918,-4.6722],[104.2962,-4.667],[104.2969,-4.6626],[104.2944,-4.6569],[104.2965,-4.6483],[104.3005,-4.644],[104.3025,-4.6386],[104.3118,-4.6365],[104.3151,-4.6316],[104.316,-4.6264],[104.3202,-4.6284],[104.3243,-4.6273],[104.3256,-4.6191],[104.3302,-4.6141],[104.3343,-4.6054],[104.3345,-4.5924],[104.3333,-4.5856],[104.3297,-4.5754],[104.3286,-4.5671],[104.326,-4.5577],[104.3207,-4.5589],[104.3129,-4.563],[104.3001,-4.5603],[104.2925,-4.5534],[104.2849,-4.5551],[104.2776,-4.55],[104.2768,-4.5448],[104.2715,-4.5412],[104.268,-4.5413],[104.2647,-4.534],[104.2598,-4.5306],[104.2602,-4.5257],[104.2547,-4.5201],[104.2576,-4.5154],[104.2621,-4.5136],[104.25,-4.5044],[104.24,-4.5013],[104.2349,-4.5019],[104.2299,-4.4989],[104.2279,-4.4872],[104.2059,-4.4419],[104.1918,-4.4374],[104.1767,-4.4237],[104.1681,-4.417],[104.1571,-4.4133],[104.1524,-4.408],[104.1587,-4.4028]]}},{"type":"Feature","properties":{"mhid":"1332:110","alt_name":"KABUPATEN OGAN KOMERING ULU TIMUR","latitude":-3.85679,"longitude":104.75209,"sample_value":213},"geometry":{"type":"LineString","coordinates":[[104.7558,-4.2458],[104.7554,-4.2268],[104.7505,-4.2268],[104.7506,-4.2216],[104.7581,-4.215],[104.7644,-4.1945],[104.7702,-4.195],[104.7725,-4.1867],[104.7748,-4.1838],[104.7783,-4.1744],[104.784,-4.1725],[104.7872,-4.1669],[104.7853,-4.1624],[104.7868,-4.158],[104.7907,-4.1554],[104.7913,-4.1467],[104.7888,-4.135],[104.7919,-4.1288],[104.7984,-4.1233],[104.8047,-4.1202],[104.8064,-4.1099],[104.8157,-4.107],[104.8235,-4.1081],[104.8259,-4.105],[104.8341,-4.0995],[104.8345,-4.0941],[104.8324,-4.0906],[104.8333,-4.0852],[104.8302,-4.0781],[104.832,-4.0758],[104.8275,-4.0709],[104.8329,-4.0615],[104.8434,-4.0562],[104.8483,-4.0547],[104.8555,-4.0367],[104.8601,-4.0362],[104.8647,-4.0319],[104.869,-4.0307],[104.8715,-4.025],[104.8753,-4.0213],[104.8801,-4.0209],[104.8867,-4.0165],[104.891,-4.0159],[104.8999,-4.0114],[104.9067,-4.012],[104.9137,-4.0052],[104.9198,-3.9885],[104.9209,-3.9789],[104.9255,-3.9767],[104.9246,-3.9715],[104.9288,-3.9616],[104.9265,-3.9578],[104.9303,-3.9496],[104.9275,-3.9462],[104.9202,-3.9486],[104.9155,-3.9462],[104.9083,-3.9462],[104.8981,-3.9434],[104.8868,-3.947],[104.8741,-3.9607],[104.8691,-3.9624],[104.8626,-3.9601],[104.8613,-3.9561],[104.8516,-3.9403],[104.8522,-3.9366],[104.8714,-3.9141],[104.8736,-3.9073],[104.8575,-3.8923],[104.8557,-3.8881],[104.8591,-3.8822],[104.859,-3.873],[104.8632,-3.8666],[104.8688,-3.8671],[104.8726,-3.8644],[104.8728,-3.8589],[104.875,-3.8541],[104.8741,-3.842],[104.8727,-3.8402],[104.8761,-3.8274],[104.8757,-3.8212],[104.8781,-3.8109],[104.8681,-3.7899],[104.8626,-3.7868],[104.8575,-3.7764],[104.8509,-3.7752],[104.8209,-3.7554],[104.8029,-3.743],[104.7841,-3.733],[104.7725,-3.724],[104.774,-3.6861],[104.7702,-3.6842],[104.7401,-3.6749],[104.7384,-3.6736],[104.7389,-3.6664],[104.7346,-3.6605],[104.7213,-3.6533],[104.705,-3.6497],[104.698,-3.6495],[104.6811,-3.6516],[104.6616,-3.6586],[104.6565,-3.6545],[104.6528,-3.6579],[104.6485,-3.6568],[104.6476,-3.6525],[104.6426,-3.6551],[104.637,-3.6593],[104.6334,-3.665],[104.6305,-3.6765],[104.6247,-3.6882],[104.6259,-3.6945],[104.6202,-3.7042],[104.6211,-3.7084],[104.613,-3.7144],[104.6081,-3.7197],[104.6045,-3.7264],[104.6,-3.7301],[104.6016,-3.7338],[104.5876,-3.7529],[104.59,-3.7577],[104.5887,-3.7676],[104.5839,-3.7714],[104.572,-3.7902],[104.5733,-3.7939],[104.5677,-3.7965],[104.559,-3.8069],[104.5557,-3.8052],[104.5577,-3.8182],[104.5578,-3.8249],[104.5433,-3.8394],[104.5369,-3.8435],[104.5331,-3.8499],[104.5229,-3.8555],[104.5089,-3.8713],[104.5104,-3.8785],[104.5091,-3.8838],[104.5098,-3.897],[104.5121,-3.9103],[104.5123,-3.921],[104.5052,-3.9354],[104.4914,-3.945],[104.4859,-3.9448],[104.4828,-3.9507],[104.4774,-3.9536],[104.464,-3.952],[104.4583,-3.9527],[104.4472,-3.9591],[104.442,-3.9633],[104.4373,-3.9725],[104.43,-3.9791],[104.4238,-3.9793],[104.418,-3.9774],[104.4131,-3.978],[104.4046,-3.9821],[104.4026,-3.9856],[104.4043,-4.0002],[104.3964,-4.0058],[104.3952,-4.0044],[104.384,-4.0072],[104.3788,-4.0118],[104.3592,-4.0081],[104.3516,-4.0137],[104.3491,-4.0269],[104.3425,-4.0419],[104.3434,-4.0477],[104.3391,-4.0547],[104.331,-4.0628],[104.3242,-4.0682],[104.3141,-4.0748],[104.3082,-4.0765],[104.3086,-4.0837],[104.3141,-4.0875],[104.3141,-4.0899],[104.3202,-4.0969],[104.3158,-4.1041],[104.3168,-4.1074],[104.314,-4.1137],[104.317,-4.1251],[104.3211,-4.1257],[104.3247,-4.1322],[104.3227,-4.1352],[104.3273,-4.1417],[104.3274,-4.1472],[104.3244,-4.1511],[104.3244,-4.155],[104.328,-4.16],[104.3288,-4.1675],[104.3333,-4.1795],[104.3293,-4.1883],[104.326,-4.191],[104.3269,-4.1966],[104.3232,-4.1994],[104.3126,-4.2007],[104.3035,-4.1994],[104.2943,-4.2047],[104.2903,-4.2117],[104.2866,-4.2125],[104.2833,-4.2186],[104.284,-4.2309],[104.2822,-4.2391],[104.2736,-4.2416],[104.2587,-4.24],[104.2533,-4.2442],[104.2464,-4.2466],[104.2413,-4.2463],[104.2356,-4.2414],[104.2319,-4.2358],[104.2254,-4.2356],[104.228,-4.2405],[104.226,-4.2476],[104.2265,-4.2552],[104.2289,-4.2626],[104.2274,-4.2662],[104.2313,-4.2704],[104.2323,-4.2769],[104.2271,-4.2848],[104.227,-4.2904],[104.2233,-4.303],[104.2259,-4.309],[104.2253,-4.3136],[104.2196,-4.3191],[104.2233,-4.3227],[104.2222,-4.3276],[104.2189,-4.3318],[104.2207,-4.3455],[104.2192,-4.3528],[104.1587,-4.4028],[104.1524,-4.408],[104.1571,-4.4133],[104.1681,-4.417],[104.1767,-4.4237],[104.1918,-4.4374],[104.2059,-4.4419],[104.2279,-4.4872],[104.2299,-4.4989],[104.2349,-4.5019],[104.24,-4.5013],[104.25,-4.5044],[104.2621,-4.5136],[104.2576,-4.5154],[104.2547,-4.5201],[104.2602,-4.5257],[104.2598,-4.5306],[104.2647,-4.534],[104.268,-4.5413],[104.2715,-4.5412],[104.2768,-4.5448],[104.2776,-4.55],[104.2849,-4.5551],[104.2925,-4.5534],[104.3001,-4.5603],[104.3129,-4.563],[104.3207,-4.5589],[104.326,-4.5577],[104.3241,-4.5464],[104.317,-4.5385],[104.3173,-4.5293],[104.3136,-4.525],[104.3157,-4.5122],[104.3218,-4.5125],[104.3295,-4.5107],[104.3333,-4.5003],[104.3333,-4.4932],[104.3308,-4.4712],[104.3282,-4.4613],[104.3354,-4.4542],[104.3327,-4.4378],[104.3381,-4.4295],[104.3358,-4.4235],[104.3412,-4.4214],[104.344,-4.4174],[104.3442,-4.4121],[104.3472,-4.4074],[104.3506,-4.397],[104.3557,-4.3935],[104.3719,-4.3783],[104.3786,-4.3741],[104.3793,-4.3652],[104.3812,-4.3616],[104.3824,-4.3508],[104.3843,-4.3474],[104.3976,-4.3393],[104.4118,-4.3371],[104.4176,-4.3304],[104.4186,-4.3263],[104.423,-4.3237],[104.4247,-4.32],[104.4354,-4.315],[104.4341,-4.3076],[104.4372,-4.3041],[104.4469,-4.2999],[104.4571,-4.3011],[104.4571,-4.3047],[104.4606,-4.3112],[104.4659,-4.3136],[104.4717,-4.3113],[104.4784,-4.3047],[104.4787,-4.2982],[104.4826,-4.295],[104.4893,-4.2986],[104.4972,-4.2922],[104.5,-4.2935],[104.5109,-4.2787],[104.5148,-4.2791],[104.5255,-4.2676],[104.5303,-4.2644],[104.5371,-4.2642],[104.5366,-4.26],[104.55,-4.2568],[104.5686,-4.2485],[104.5911,-4.2432],[104.5893,-4.2384],[104.5968,-4.2335],[104.6051,-4.2297],[104.6112,-4.2236],[104.6251,-4.2142],[104.6304,-4.2232],[104.6229,-4.2285],[104.6267,-4.2326],[104.6267,-4.2376],[104.6223,-4.24],[104.6247,-4.2433],[104.6396,-4.2434],[104.6493,-4.2461],[104.6571,-4.2508],[104.6587,-4.2591],[104.6626,-4.2614],[104.6661,-4.2593],[104.6782,-4.2598],[104.6836,-4.2585],[104.7121,-4.2573],[104.7169,-4.2635],[104.7258,-4.2572],[104.7379,-4.2563],[104.7433,-4.2518],[104.7558,-4.2458]]}},{"type":"Feature","properties":{"mhid":"1332:111","alt_name":"KABUPATEN OGAN ILIR","latitude":-3.43186,"longitude":104.62727,"sample_value":948},"geometry":{"type":"LineString","coordinates":[[104.7942,-3.063],[104.7994,-3.0548],[104.7807,-3.0526],[104.7816,-3.0407],[104.7794,-3.0344],[104.7751,-3.0342],[104.7705,-3.038],[104.7507,-3.0394],[104.748,-3.0451],[104.7437,-3.048],[104.7447,-3.0571],[104.7428,-3.0653],[104.7382,-3.0686],[104.7329,-3.0691],[104.7285,-3.0741],[104.7275,-3.0864],[104.7242,-3.0913],[104.7194,-3.0945],[104.7182,-3.0856],[104.7155,-3.0793],[104.7198,-3.0738],[104.7179,-3.0696],[104.7096,-3.0665],[104.6905,-3.056],[104.676,-3.0609],[104.6808,-3.0667],[104.6789,-3.0685],[104.6182,-3.1114],[104.6095,-3.1015],[104.5779,-3.0941],[104.5474,-3.0962],[104.5441,-3.0959],[104.5424,-3.0908],[104.526,-3.0974],[104.5216,-3.0953],[104.5207,-3.0914],[104.5128,-3.0895],[104.5048,-3.0932],[104.4994,-3.0935],[104.4954,-3.0961],[104.4911,-3.1024],[104.4874,-3.1032],[104.4788,-3.1159],[104.4791,-3.1208],[104.484,-3.1248],[104.4851,-3.1311],[104.4837,-3.1363],[104.49,-3.1424],[104.4921,-3.1634],[104.4969,-3.1692],[104.4961,-3.1738],[104.5025,-3.1844],[104.5071,-3.1946],[104.5145,-3.2052],[104.5219,-3.2094],[104.5351,-3.2147],[104.5634,-3.2152],[104.5679,-3.2269],[104.5715,-3.2395],[104.5687,-3.2475],[104.5609,-3.2588],[104.5563,-3.2636],[104.5511,-3.261],[104.5399,-3.2684],[104.531,-3.2915],[104.528,-3.3021],[104.5294,-3.3231],[104.5349,-3.3213],[104.5366,-3.3251],[104.5349,-3.3332],[104.5364,-3.346],[104.5362,-3.3537],[104.5222,-3.3721],[104.5132,-3.3882],[104.5075,-3.3795],[104.4943,-3.3979],[104.4894,-3.4005],[104.4699,-3.4053],[104.4641,-3.4229],[104.4475,-3.4251],[104.4475,-3.4525],[104.4459,-3.4953],[104.4391,-3.4954],[104.424,-3.5002],[104.4155,-3.5044],[104.4055,-3.5074],[104.3976,-3.5073],[104.3781,-3.504],[104.3564,-3.5056],[104.349,-3.5043],[104.333,-3.5059],[104.3176,-3.5034],[104.3099,-3.4984],[104.301,-3.4976],[104.3037,-3.5038],[104.311,-3.512],[104.3086,-3.5307],[104.3112,-3.5358],[104.3123,-3.5439],[104.3112,-3.5479],[104.3045,-3.5562],[104.3048,-3.5617],[104.3076,-3.566],[104.3094,-3.5794],[104.3095,-3.5928],[104.3037,-3.6017],[104.3059,-3.6091],[104.3156,-3.6193],[104.3224,-3.6217],[104.3272,-3.6215],[104.3334,-3.6174],[104.3443,-3.6126],[104.3477,-3.6102],[104.3612,-3.6055],[104.3639,-3.6082],[104.3699,-3.6046],[104.3669,-3.5974],[104.3819,-3.5903],[104.4008,-3.587],[104.4071,-3.5834],[104.4071,-3.575],[104.4141,-3.5695],[104.4201,-3.5582],[104.428,-3.5599],[104.435,-3.5564],[104.4398,-3.56],[104.438,-3.565],[104.4434,-3.5706],[104.4535,-3.5766],[104.4586,-3.5813],[104.4621,-3.5869],[104.4679,-3.5895],[104.4694,-3.5979],[104.477,-3.6103],[104.476,-3.6234],[104.4729,-3.6258],[104.4737,-3.6301],[104.4688,-3.636],[104.4627,-3.6461],[104.464,-3.6499],[104.4566,-3.656],[104.458,-3.6597],[104.454,-3.6628],[104.4536,-3.6689],[104.4434,-3.677],[104.442,-3.6831],[104.4325,-3.6849],[104.4299,-3.6898],[104.4206,-3.6915],[104.4156,-3.6959],[104.4099,-3.6963],[104.408,-3.6989],[104.3976,-3.7035],[104.3933,-3.7038],[104.3904,-3.7083],[104.3905,-3.712],[104.3871,-3.7171],[104.3753,-3.7197],[104.3712,-3.7356],[104.3731,-3.7433],[104.3774,-3.7473],[104.3837,-3.7569],[104.3824,-3.7599],[104.3744,-3.7637],[104.3811,-3.7642],[104.3796,-3.7693],[104.3852,-3.7729],[104.4065,-3.7839],[104.4104,-3.7847],[104.4336,-3.7754],[104.4368,-3.7735],[104.4424,-3.7741],[104.4525,-3.7705],[104.4641,-3.7755],[104.4591,-3.7604],[104.4648,-3.7612],[104.4726,-3.7652],[104.4852,-3.7681],[104.4898,-3.7736],[104.4964,-3.7703],[104.4995,-3.7866],[104.5056,-3.7864],[104.5137,-3.7916],[104.5299,-3.7935],[104.5378,-3.7954],[104.5516,-3.801],[104.5557,-3.8052],[104.559,-3.8069],[104.5677,-3.7965],[104.5733,-3.7939],[104.572,-3.7902],[104.5839,-3.7714],[104.5887,-3.7676],[104.59,-3.7577],[104.5876,-3.7529],[104.6016,-3.7338],[104.6,-3.7301],[104.6045,-3.7264],[104.6081,-3.7197],[104.613,-3.7144],[104.6211,-3.7084],[104.6202,-3.7042],[104.6259,-3.6945],[104.6247,-3.6882],[104.6305,-3.6765],[104.6334,-3.665],[104.637,-3.6593],[104.6426,-3.6551],[104.6419,-3.6475],[104.6431,-3.6405],[104.6421,-3.6274],[104.6432,-3.613],[104.6483,-3.5981],[104.6493,-3.59],[104.6489,-3.5773],[104.6509,-3.5673],[104.6631,-3.5529],[104.6696,-3.5416],[104.6737,-3.5203],[104.6794,-3.5022],[104.6788,-3.4933],[104.6965,-3.4856],[104.7023,-3.475],[104.7086,-3.4653],[104.7328,-3.4761],[104.7336,-3.4822],[104.7391,-3.4865],[104.7423,-3.4845],[104.743,-3.4797],[104.7572,-3.4727],[104.7607,-3.4683],[104.7744,-3.4609],[104.7839,-3.4654],[104.787,-3.4649],[104.8025,-3.4658],[104.8141,-3.4577],[104.8148,-3.4527],[104.8125,-3.4459],[104.8072,-3.4368],[104.8048,-3.4284],[104.809,-3.4228],[104.8104,-3.4178],[104.8054,-3.3934],[104.8078,-3.3868],[104.8086,-3.38],[104.814,-3.3674],[104.8173,-3.3685],[104.8191,-3.3577],[104.8174,-3.3527],[104.8097,-3.3514],[104.8071,-3.3467],[104.8111,-3.3381],[104.8157,-3.3368],[104.817,-3.3295],[104.8128,-3.3232],[104.8155,-3.3111],[104.8123,-3.3062],[104.8038,-3.3048],[104.7998,-3.2911],[104.801,-3.2852],[104.8047,-3.2798],[104.7992,-3.2713],[104.8078,-3.2669],[104.8076,-3.2554],[104.8086,-3.2508],[104.8049,-3.2311],[104.8107,-3.2262],[104.8161,-3.2171],[104.8154,-3.2123],[104.8114,-3.2041],[104.8074,-3.1999],[104.8036,-3.1917],[104.8,-3.189],[104.7967,-3.1812],[104.8024,-3.176],[104.7993,-3.1725],[104.8038,-3.1678],[104.81,-3.1675],[104.8159,-3.163],[104.8141,-3.1601],[104.8183,-3.1547],[104.8171,-3.1522],[104.8088,-3.1533],[104.8101,-3.1498],[104.8183,-3.1441],[104.8125,-3.1328],[104.8047,-3.1329],[104.7987,-3.1354],[104.7931,-3.1311],[104.7936,-3.1256],[104.8015,-3.1175],[104.8046,-3.1083],[104.8098,-3.0824],[104.8074,-3.0807],[104.7923,-3.0772],[104.7942,-3.063]]}},{"type":"Feature","properties":{"mhid":"1332:112","alt_name":"KABUPATEN EMPAT LAWANG","latitude":3.22667,"longitude":99.09256,"sample_value":288},"geometry":{"type":"LineString","coordinates":[[102.9916,-3.4121],[102.9912,-3.4176],[102.9982,-3.426],[102.9992,-3.4353],[102.9932,-3.4385],[102.9929,-3.4462],[102.9901,-3.4511],[102.9912,-3.4614],[102.9983,-3.4688],[102.9966,-3.4748],[102.9928,-3.4809],[102.9864,-3.4954],[102.9886,-3.4982],[102.988,-3.5037],[102.9905,-3.5065],[102.9921,-3.5135],[102.989,-3.5189],[102.983,-3.5249],[102.9782,-3.5271],[102.9608,-3.5287],[102.9517,-3.5308],[102.9435,-3.5401],[102.9439,-3.5478],[102.9412,-3.5521],[102.9416,-3.5667],[102.9354,-3.5783],[102.9234,-3.5885],[102.9136,-3.5933],[102.9036,-3.6084],[102.9039,-3.6149],[102.9,-3.6154],[102.892,-3.6094],[102.8897,-3.6051],[102.89,-3.5966],[102.8858,-3.5788],[102.8691,-3.5574],[102.8629,-3.5529],[102.8601,-3.5481],[102.8514,-3.5453],[102.8476,-3.5371],[102.8406,-3.5376],[102.8274,-3.5351],[102.8244,-3.5291],[102.8189,-3.5276],[102.8102,-3.5301],[102.8121,-3.5345],[102.8126,-3.5457],[102.8101,-3.5558],[102.8063,-3.5611],[102.8022,-3.5636],[102.7961,-3.5732],[102.7946,-3.5813],[102.7954,-3.5874],[102.7994,-3.5892],[102.8057,-3.5988],[102.8088,-3.6083],[102.7999,-3.6218],[102.798,-3.6263],[102.7797,-3.6316],[102.7767,-3.636],[102.7722,-3.6378],[102.7664,-3.6425],[102.76,-3.6541],[102.7537,-3.6639],[102.7506,-3.6709],[102.742,-3.7095],[102.7376,-3.7218],[102.7393,-3.74],[102.7388,-3.7476],[102.7136,-3.7551],[102.7083,-3.7571],[102.6712,-3.7682],[102.6616,-3.7718],[102.6559,-3.7718],[102.6488,-3.7877],[102.6418,-3.7933],[102.6237,-3.795],[102.6186,-3.8011],[102.6244,-3.8033],[102.6325,-3.8109],[102.6397,-3.813],[102.6516,-3.8117],[102.6693,-3.8245],[102.6749,-3.8347],[102.679,-3.8366],[102.6854,-3.8448],[102.6865,-3.8502],[102.6857,-3.8563],[102.69,-3.8616],[102.6999,-3.8613],[102.7035,-3.8625],[102.7069,-3.8692],[102.7122,-3.8697],[102.7162,-3.8747],[102.7276,-3.8789],[102.7311,-3.8822],[102.7343,-3.8902],[102.7446,-3.8914],[102.7487,-3.9018],[102.7527,-3.9092],[102.7607,-3.9147],[102.7757,-3.9158],[102.7774,-3.9175],[102.7748,-3.9285],[102.7804,-3.9343],[102.7818,-3.9412],[102.7858,-3.9484],[102.7955,-3.9556],[102.8064,-3.9593],[102.8143,-3.9643],[102.8175,-3.9678],[102.8177,-3.9723],[102.8153,-3.9791],[102.8214,-3.9809],[102.8263,-3.9782],[102.845,-3.9769],[102.8521,-3.9823],[102.86,-3.9927],[102.8638,-3.9919],[102.8686,-3.9864],[102.8848,-3.9898],[102.8868,-3.9892],[102.8988,-3.9732],[102.909,-3.971],[102.9165,-3.9737],[102.921,-3.9802],[102.9343,-3.9856],[102.9351,-3.9927],[102.9409,-4.0021],[102.9498,-4.006],[102.9529,-4.0087],[102.9573,-4.0169],[102.9628,-4.0207],[102.9834,-4.018],[102.9974,-4.0191],[103.0091,-4.0156],[103.0194,-4.0194],[103.0238,-4.0185],[103.0321,-4.0215],[103.0399,-4.015],[103.0475,-4.0128],[103.0585,-4.0175],[103.066,-4.0136],[103.0768,-4.0134],[103.0858,-4.0076],[103.0933,-4.0084],[103.0997,-4.011],[103.1094,-4.0216],[103.1141,-4.022],[103.1214,-4.0157],[103.1246,-4.0057],[103.1253,-3.9986],[103.1305,-3.9942],[103.1325,-3.987],[103.1364,-3.9863],[103.1417,-3.9752],[103.1388,-3.9719],[103.1403,-3.9681],[103.1396,-3.9608],[103.1429,-3.9435],[103.1336,-3.9434],[103.1281,-3.9389],[103.1243,-3.94],[103.1231,-3.9352],[103.1241,-3.9249],[103.1229,-3.9232],[103.1082,-3.9199],[103.1075,-3.8819],[103.1136,-3.8682],[103.1159,-3.86],[103.1421,-3.8531],[103.1444,-3.846],[103.1572,-3.829],[103.1694,-3.8095],[103.1714,-3.7979],[103.1683,-3.792],[103.1687,-3.7865],[103.1641,-3.7866],[103.1649,-3.78],[103.1601,-3.7782],[103.1523,-3.7696],[103.1457,-3.7502],[103.145,-3.7346],[103.1475,-3.7291],[103.1532,-3.7047],[103.1492,-3.6927],[103.1492,-3.6879],[103.1519,-3.6817],[103.1567,-3.6769],[103.1529,-3.6731],[103.145,-3.6704],[103.1312,-3.6544],[103.128,-3.6524],[103.1286,-3.6451],[103.1268,-3.6409],[103.1267,-3.6201],[103.1288,-3.6131],[103.1258,-3.6031],[103.1297,-3.5999],[103.1285,-3.5967],[103.1324,-3.5889],[103.1362,-3.5892],[103.1391,-3.5842],[103.146,-3.577],[103.1458,-3.5695],[103.1498,-3.5619],[103.155,-3.5609],[103.1602,-3.5512],[103.1637,-3.5491],[103.1709,-3.5289],[103.1695,-3.5214],[103.1661,-3.5131],[103.1692,-3.5062],[103.1837,-3.4958],[103.1947,-3.4898],[103.1877,-3.4764],[103.1854,-3.4749],[103.176,-3.4639],[103.1675,-3.4659],[103.1605,-3.473],[103.136,-3.4829],[103.1167,-3.4871],[103.1118,-3.4876],[103.1064,-3.4838],[103.0997,-3.4767],[103.0754,-3.4524],[103.0576,-3.4337],[103.042,-3.4235],[103.0264,-3.4186],[102.9916,-3.4121]]}},{"type":"Feature","properties":{"mhid":"1332:113","alt_name":"KABUPATEN PENUKAL ABAB LEMATANG ILIR","latitude":-3.21342,"longitude":104.08722,"sample_value":342},"geometry":{"type":"LineString","coordinates":[[104.1674,-3.0548],[104.1681,-3.0509],[104.155,-3.0456],[104.1504,-3.0453],[104.1435,-3.0477],[104.1413,-3.0464],[104.1386,-3.0378],[104.1335,-3.029],[104.1331,-3.0247],[104.1363,-3.0141],[104.1282,-3.0073],[104.0988,-3.0063],[104.0874,-3.0032],[104.0666,-3.0039],[104.0477,-3.011],[104.0388,-3.0173],[104.0334,-3.0232],[104.0266,-3.0289],[104.0185,-3.0297],[104.0122,-3.0257],[103.9997,-3.0224],[103.9825,-3.0158],[103.9489,-3.0054],[103.9413,-3.0145],[103.9341,-3.0183],[103.9267,-3.0206],[103.9219,-3.0237],[103.9121,-3.0244],[103.9105,-3.0283],[103.9053,-3.0325],[103.9033,-3.0392],[103.8976,-3.0522],[103.891,-3.0569],[103.889,-3.0654],[103.8898,-3.0734],[103.8859,-3.0795],[103.8641,-3.0872],[103.8522,-3.0847],[103.8422,-3.0903],[103.8327,-3.102],[103.821,-3.1136],[103.8168,-3.1153],[103.8142,-3.1198],[103.8138,-3.1252],[103.8094,-3.1314],[103.8013,-3.1338],[103.7961,-3.1374],[103.7935,-3.1413],[103.7975,-3.1509],[103.7971,-3.1542],[103.7915,-3.1577],[103.7868,-3.1704],[103.7838,-3.1757],[103.7831,-3.1843],[103.7842,-3.1887],[103.7894,-3.1949],[103.7887,-3.2029],[103.7808,-3.2409],[103.7741,-3.2542],[103.7659,-3.2591],[103.7476,-3.2625],[103.7413,-3.2668],[103.7313,-3.266],[103.7165,-3.2623],[103.7127,-3.2574],[103.7064,-3.2383],[103.7008,-3.2404],[103.6945,-3.2453],[103.686,-3.2472],[103.6824,-3.2547],[103.6792,-3.2569],[103.6681,-3.2571],[103.6604,-3.2549],[103.6529,-3.2507],[103.648,-3.2501],[103.6493,-3.2456],[103.6419,-3.2516],[103.6323,-3.256],[103.6244,-3.2761],[103.6105,-3.2788],[103.6069,-3.2893],[103.6113,-3.3086],[103.6104,-3.3165],[103.6191,-3.3235],[103.6175,-3.33],[103.6281,-3.335],[103.6462,-3.3516],[103.6505,-3.3603],[103.6565,-3.3678],[103.6723,-3.375],[103.6787,-3.3737],[103.6767,-3.3625],[103.6716,-3.3491],[103.6747,-3.3401],[103.6813,-3.3368],[103.6901,-3.3449],[103.7064,-3.3495],[103.7237,-3.3512],[103.7307,-3.3496],[103.7471,-3.3427],[103.7521,-3.3419],[103.7623,-3.3437],[103.7688,-3.3405],[103.7837,-3.3268],[103.792,-3.322],[103.7948,-3.3223],[103.8043,-3.3165],[103.808,-3.3169],[103.811,-3.3267],[103.8145,-3.3276],[103.8211,-3.3241],[103.829,-3.3276],[103.8324,-3.3233],[103.8363,-3.3249],[103.8496,-3.3201],[103.8542,-3.3214],[103.8571,-3.3272],[103.8555,-3.3344],[103.8586,-3.3386],[103.8642,-3.3389],[103.8776,-3.3351],[103.8827,-3.3301],[103.8863,-3.33],[103.8909,-3.3419],[103.8995,-3.3486],[103.9079,-3.3521],[103.9115,-3.3551],[103.9209,-3.3823],[103.9276,-3.3918],[103.9328,-3.3963],[103.9419,-3.3999],[103.9735,-3.4078],[103.9869,-3.407],[104.0035,-3.4084],[104.0187,-3.4137],[104.0217,-3.3949],[104.0233,-3.3647],[104.0357,-3.3648],[104.0399,-3.3635],[104.0565,-3.3634],[104.0659,-3.3623],[104.0746,-3.3634],[104.0864,-3.3619],[104.0937,-3.3535],[104.0975,-3.3572],[104.1059,-3.3623],[104.1095,-3.3662],[104.1169,-3.3693],[104.1189,-3.3636],[104.1271,-3.3634],[104.1313,-3.3588],[104.1371,-3.3572],[104.1368,-3.3524],[104.1322,-3.3493],[104.1331,-3.342],[104.1372,-3.3444],[104.1493,-3.3401],[104.1542,-3.3451],[104.1605,-3.3491],[104.1711,-3.3478],[104.1777,-3.3551],[104.1823,-3.3577],[104.1943,-3.3588],[104.2022,-3.3613],[104.2127,-3.3678],[104.2084,-3.3453],[104.2116,-3.3298],[104.2192,-3.319],[104.2323,-3.3052],[104.2339,-3.2998],[104.2304,-3.286],[104.2338,-3.2829],[104.2286,-3.2651],[104.2357,-3.2682],[104.2357,-3.2641],[104.2296,-3.2619],[104.2279,-3.2587],[104.2338,-3.2559],[104.2221,-3.2513],[104.2108,-3.2458],[104.2067,-3.2457],[104.2129,-3.2372],[104.2234,-3.227],[104.2265,-3.2225],[104.2301,-3.2122],[104.2322,-3.2003],[104.2355,-3.1668],[104.2357,-3.1527],[104.2381,-3.1378],[104.2395,-3.1344],[104.245,-3.0962],[104.2484,-3.0843],[104.2437,-3.0861],[104.2139,-3.0907],[104.2036,-3.0931],[104.1762,-3.0979],[104.1668,-3.1007],[104.1545,-3.1025],[104.1536,-3.0906],[104.1616,-3.082],[104.1628,-3.0776],[104.1608,-3.0691],[104.1668,-3.0577],[104.1674,-3.0548]]}},{"type":"Feature","properties":{"mhid":"1332:114","alt_name":"KABUPATEN MUSI RAWAS UTARA","latitude":-2.48533,"longitude":103.29346,"sample_value":436},"geometry":{"type":"LineString","coordinates":[[103.004,-2.3361],[103.0001,-2.3404],[102.9929,-2.3406],[102.9846,-2.3388],[102.9756,-2.3326],[102.9681,-2.3295],[102.9597,-2.3296],[102.9515,-2.3264],[102.9455,-2.3269],[102.9348,-2.322],[102.9264,-2.324],[102.9231,-2.3235],[102.917,-2.3166],[102.9124,-2.3156],[102.9089,-2.3117],[102.905,-2.3118],[102.8974,-2.3151],[102.892,-2.3142],[102.8854,-2.308],[102.8769,-2.3045],[102.8743,-2.3134],[102.8667,-2.318],[102.8644,-2.3246],[102.8598,-2.3304],[102.8519,-2.3355],[102.8452,-2.3346],[102.8406,-2.3379],[102.8415,-2.3423],[102.8449,-2.3462],[102.8399,-2.3558],[102.8396,-2.3588],[102.8422,-2.3705],[102.8471,-2.3744],[102.8478,-2.3842],[102.8508,-2.3866],[102.8605,-2.3873],[102.8722,-2.3869],[102.8695,-2.3952],[102.8754,-2.4098],[102.8656,-2.4168],[102.8621,-2.4233],[102.8552,-2.4289],[102.8521,-2.4332],[102.8451,-2.4377],[102.8445,-2.4448],[102.8412,-2.4502],[102.835,-2.4558],[102.826,-2.459],[102.8241,-2.4667],[102.8181,-2.4713],[102.8066,-2.4883],[102.7935,-2.5047],[102.7977,-2.5181],[102.7962,-2.5332],[102.7837,-2.5368],[102.7806,-2.541],[102.7736,-2.543],[102.7599,-2.5499],[102.7555,-2.5575],[102.75,-2.5615],[102.7449,-2.5626],[102.7397,-2.5715],[102.7393,-2.578],[102.7283,-2.5861],[102.7224,-2.5846],[102.7159,-2.5704],[102.7122,-2.5733],[102.7125,-2.5774],[102.7097,-2.583],[102.704,-2.5878],[102.7014,-2.5835],[102.6968,-2.5841],[102.6928,-2.5892],[102.6846,-2.5927],[102.6776,-2.6033],[102.6688,-2.6065],[102.6662,-2.6097],[102.6489,-2.6114],[102.6442,-2.6095],[102.6406,-2.611],[102.6284,-2.6304],[102.6244,-2.6383],[102.6214,-2.6492],[102.6165,-2.6606],[102.6126,-2.6661],[102.602,-2.6754],[102.5905,-2.6796],[102.5846,-2.6786],[102.5715,-2.6741],[102.5651,-2.6767],[102.5482,-2.6774],[102.5379,-2.6795],[102.5256,-2.6793],[102.5189,-2.6765],[102.5148,-2.6845],[102.5052,-2.6961],[102.4953,-2.6988],[102.4924,-2.7034],[102.4877,-2.7059],[102.4799,-2.701],[102.4714,-2.7041],[102.4612,-2.7002],[102.4546,-2.7],[102.447,-2.6978],[102.4386,-2.691],[102.4193,-2.6916],[102.4118,-2.6877],[102.4062,-2.6891],[102.3997,-2.6831],[102.3915,-2.6783],[102.3888,-2.6737],[102.3899,-2.6639],[102.3923,-2.6592],[102.3923,-2.6534],[102.3872,-2.647],[102.3694,-2.6513],[102.3602,-2.6506],[102.3531,-2.6462],[102.3432,-2.6501],[102.3347,-2.6552],[102.3247,-2.654],[102.3106,-2.6437],[102.2963,-2.6325],[102.2883,-2.6244],[102.2807,-2.6144],[102.2765,-2.6139],[102.2592,-2.6211],[102.251,-2.6312],[102.2497,-2.6396],[102.2455,-2.6426],[102.2477,-2.6476],[102.2452,-2.6497],[102.2417,-2.6615],[102.2425,-2.6698],[102.2372,-2.6734],[102.2363,-2.6884],[102.2219,-2.698],[102.2119,-2.6987],[102.205,-2.703],[102.1862,-2.7085],[102.1794,-2.7063],[102.172,-2.7085],[102.1656,-2.7141],[102.1577,-2.7161],[102.1498,-2.7203],[102.1448,-2.7214],[102.1338,-2.7279],[102.1257,-2.7293],[102.1229,-2.7338],[102.1162,-2.7358],[102.1111,-2.7412],[102.1097,-2.7462],[102.1064,-2.7475],[102.1035,-2.755],[102.1006,-2.757],[102.0985,-2.765],[102.0915,-2.7699],[102.0867,-2.7701],[102.0752,-2.7656],[102.0694,-2.7652],[102.068,-2.7679],[102.0674,-2.7691],[102.0713,-2.7833],[102.0723,-2.7934],[102.0809,-2.802],[102.0873,-2.804],[102.0955,-2.8109],[102.1008,-2.8105],[102.1143,-2.8164],[102.1207,-2.8293],[102.1303,-2.8364],[102.1302,-2.8571],[102.1347,-2.8668],[102.1329,-2.8758],[102.1482,-2.8811],[102.1552,-2.8869],[102.1636,-2.8958],[102.1705,-2.8965],[102.1822,-2.9012],[102.186,-2.9083],[102.1937,-2.918],[102.1983,-2.919],[102.2016,-2.9166],[102.2098,-2.9168],[102.2124,-2.9207],[102.2245,-2.9291],[102.2245,-2.9382],[102.2228,-2.9415],[102.2245,-2.9464],[102.2285,-2.9472],[102.231,-2.9628],[102.2342,-2.9686],[102.235,-2.9809],[102.2374,-2.9973],[102.2419,-3.0039],[102.2443,-3.0104],[102.2438,-3.0139],[102.2463,-3.0249],[102.2528,-3.031],[102.2569,-3.0368],[102.2659,-3.0385],[102.2675,-3.0409],[102.2732,-3.0377],[102.2836,-3.038],[102.2919,-3.0428],[102.2959,-3.048],[102.3076,-3.0567],[102.314,-3.0657],[102.3148,-3.069],[102.3205,-3.0698],[102.326,-3.0671],[102.3395,-3.0623],[102.3492,-3.0617],[102.3523,-3.0585],[102.3641,-3.0551],[102.3704,-3.0552],[102.3743,-3.0496],[102.3856,-3.045],[102.3899,-3.0443],[102.4032,-3.0526],[102.4103,-3.0542],[102.422,-3.0542],[102.4356,-3.0552],[102.4453,-3.0624],[102.4523,-3.0704],[102.4675,-3.0801],[102.4735,-3.0919],[102.4809,-3.1022],[102.4863,-3.1079],[102.4948,-3.1031],[102.5083,-3.1021],[102.5201,-3.0972],[102.5204,-3.0931],[102.528,-3.0885],[102.5386,-3.0862],[102.5408,-3.084],[102.5459,-3.0848],[102.5489,-3.0898],[102.5522,-3.0838],[102.5585,-3.0786],[102.5727,-3.0711],[102.5796,-3.0729],[102.5842,-3.0691],[102.584,-3.0631],[102.5861,-3.0584],[102.5967,-3.0551],[102.602,-3.0547],[102.6085,-3.0504],[102.6116,-3.0506],[102.6143,-3.0558],[102.6237,-3.053],[102.6317,-3.043],[102.6383,-3.0399],[102.6431,-3.041],[102.6481,-3.038],[102.649,-3.035],[102.6574,-3.0345],[102.6631,-3.0316],[102.6725,-3.0289],[102.6722,-3.024],[102.6829,-3.0181],[102.6824,-3.0126],[102.6903,-3.0092],[102.7039,-3.0074],[102.7153,-3.013],[102.7211,-3.0082],[102.7243,-3.0038],[102.7296,-3.0039],[102.7349,-3.008],[102.7376,-3.0131],[102.7424,-3.0108],[102.7426,-3.0079],[102.7491,-3.0042],[102.7564,-3.0039],[102.7574,-3.0005],[102.7696,-2.9924],[102.7934,-2.9922],[102.8014,-2.9978],[102.8102,-2.9985],[102.8104,-2.9937],[102.8148,-2.9893],[102.8218,-2.9893],[102.8277,-2.9955],[102.8355,-2.9913],[102.8451,-2.9911],[102.851,-2.9864],[102.853,-2.9824],[102.8594,-2.9752],[102.8721,-2.9796],[102.8811,-2.9811],[102.8724,-2.9709],[102.8758,-2.9334],[102.8758,-2.924],[102.8864,-2.926],[102.9151,-2.9324],[102.9038,-2.8834],[102.923,-2.8808],[102.9493,-2.8785],[102.9815,-2.8689],[102.9871,-2.8664],[102.9939,-2.8615],[103.0041,-2.8591],[103.0097,-2.8545],[103.017,-2.8517],[103.0254,-2.8566],[103.0295,-2.857],[103.0328,-2.8537],[103.0416,-2.8527],[103.0473,-2.8503],[103.0548,-2.8506],[103.0637,-2.848],[103.0744,-2.8486],[103.0796,-2.8433],[103.0842,-2.8448],[103.0912,-2.8416],[103.0987,-2.8468],[103.1005,-2.8429],[103.1003,-2.8267],[103.1018,-2.8239],[103.102,-2.7856],[103.101,-2.7821],[103.1207,-2.782],[103.129,-2.7702],[103.1327,-2.7705],[103.1435,-2.7783],[103.1524,-2.7717],[103.1544,-2.7745],[103.1593,-2.7728],[103.1743,-2.7581],[103.184,-2.7567],[103.2071,-2.7561],[103.2117,-2.7572],[103.2241,-2.7555],[103.2332,-2.7578],[103.2359,-2.762],[103.2461,-2.7624],[103.2518,-2.758],[103.2631,-2.7559],[103.2712,-2.753],[103.2736,-2.7513],[103.309,-2.7312],[103.3416,-2.6946],[103.3435,-2.6682],[103.3664,-2.6059],[103.3665,-2.5865],[103.3504,-2.5591],[103.3432,-2.5445],[103.3387,-2.5397],[103.3341,-2.5321],[103.3239,-2.537],[103.3131,-2.5285],[103.2998,-2.5208],[103.2958,-2.5147],[103.2852,-2.5038],[103.2757,-2.4987],[103.2741,-2.485],[103.2723,-2.4783],[103.2756,-2.4721],[103.2793,-2.4694],[103.2736,-2.4659],[103.2649,-2.4667],[103.2606,-2.4732],[103.2555,-2.4771],[103.2491,-2.479],[103.2453,-2.4843],[103.2438,-2.4929],[103.2441,-2.5003],[103.2407,-2.5097],[103.241,-2.5145],[103.2369,-2.5173],[103.2283,-2.5193],[103.2226,-2.5235],[103.2244,-2.5319],[103.2213,-2.5349],[103.2152,-2.5354],[103.2115,-2.5304],[103.203,-2.5296],[103.2008,-2.5277],[103.1972,-2.5178],[103.1928,-2.513],[103.1875,-2.5114],[103.1871,-2.5069],[103.1842,-2.5041],[103.1798,-2.5053],[103.1746,-2.5036],[103.1715,-2.5107],[103.1639,-2.51],[103.1594,-2.5061],[103.1585,-2.5025],[103.1603,-2.4957],[103.1569,-2.4803],[103.1569,-2.4701],[103.1506,-2.4649],[103.138,-2.462],[103.1335,-2.4579],[103.1252,-2.4609],[103.1153,-2.4669],[103.1054,-2.4581],[103.0862,-2.4475],[103.0702,-2.4429],[103.0667,-2.4398],[103.0627,-2.432],[103.0624,-2.4271],[103.0586,-2.4203],[103.0507,-2.4166],[103.05,-2.4093],[103.0538,-2.4068],[103.053,-2.4023],[103.0465,-2.403],[103.0376,-2.3975],[103.0341,-2.3972],[103.0268,-2.404],[103.0215,-2.4049],[103.0167,-2.4001],[103.014,-2.3902],[103.0148,-2.3676],[103.0142,-2.3633],[103.0062,-2.3461],[103.004,-2.3361]]}},{"type":"Feature","properties":{"mhid":"1332:115","alt_name":"KOTA PALEMBANG","latitude":-3,"longitude":104.71667,"sample_value":959},"geometry":{"type":"LineString","coordinates":[[104.7816,-3.0407],[104.7825,-3.035],[104.7867,-3.0298],[104.7913,-3.0319],[104.7956,-3.0381],[104.8062,-3.0366],[104.8099,-3.039],[104.8136,-3.034],[104.8122,-3.0279],[104.8156,-3.027],[104.8231,-3.0117],[104.832,-3.0044],[104.8344,-2.9892],[104.8399,-2.9884],[104.8554,-2.9795],[104.8609,-2.9719],[104.8657,-2.957],[104.8646,-2.952],[104.8601,-2.947],[104.8474,-2.9561],[104.8412,-2.9503],[104.8505,-2.9439],[104.8514,-2.9249],[104.8498,-2.9248],[104.8359,-2.9322],[104.8147,-2.9443],[104.8142,-2.939],[104.8084,-2.94],[104.7952,-2.9219],[104.8039,-2.9219],[104.8063,-2.9148],[104.8111,-2.9094],[104.7904,-2.904],[104.7894,-2.9076],[104.7833,-2.9127],[104.7739,-2.9186],[104.7685,-2.9151],[104.7628,-2.9145],[104.7538,-2.9156],[104.7412,-2.9061],[104.7338,-2.9034],[104.738,-2.8968],[104.7345,-2.8883],[104.7346,-2.8852],[104.7302,-2.8828],[104.7301,-2.8778],[104.71,-2.8731],[104.7053,-2.8694],[104.7042,-2.8647],[104.6753,-2.8658],[104.6745,-2.8712],[104.6718,-2.8721],[104.6668,-2.8834],[104.6694,-2.8887],[104.6737,-2.8904],[104.6775,-2.8991],[104.6746,-2.9036],[104.6791,-2.9064],[104.6785,-2.9147],[104.6751,-2.917],[104.6768,-2.9355],[104.6622,-2.9283],[104.6562,-2.9229],[104.6477,-2.9223],[104.6441,-2.9259],[104.643,-2.9324],[104.6378,-2.9301],[104.6337,-2.9363],[104.6292,-2.9541],[104.6291,-2.9616],[104.6247,-2.9706],[104.6227,-2.98],[104.623,-2.9913],[104.6258,-3.0006],[104.6385,-3.0161],[104.6449,-3.0254],[104.6548,-3.0323],[104.6641,-3.0417],[104.6905,-3.056],[104.7096,-3.0665],[104.7179,-3.0696],[104.7198,-3.0738],[104.7155,-3.0793],[104.7182,-3.0856],[104.7194,-3.0945],[104.7242,-3.0913],[104.7275,-3.0864],[104.7285,-3.0741],[104.7329,-3.0691],[104.7382,-3.0686],[104.7428,-3.0653],[104.7447,-3.0571],[104.7437,-3.048],[104.748,-3.0451],[104.7507,-3.0394],[104.7705,-3.038],[104.7751,-3.0342],[104.7794,-3.0344],[104.7816,-3.0407]]}},{"type":"Feature","properties":{"mhid":"1332:116","alt_name":"KOTA PRABUMULIH","latitude":-3.46202,"longitude":104.2229,"sample_value":495},"geometry":{"type":"LineString","coordinates":[[104.2127,-3.3678],[104.2022,-3.3613],[104.1943,-3.3588],[104.1823,-3.3577],[104.1777,-3.3551],[104.1711,-3.3478],[104.1605,-3.3491],[104.1542,-3.3451],[104.1493,-3.3401],[104.1372,-3.3444],[104.1331,-3.342],[104.1322,-3.3493],[104.1368,-3.3524],[104.1371,-3.3572],[104.1313,-3.3588],[104.1319,-3.3783],[104.1515,-3.3961],[104.1519,-3.4115],[104.1506,-3.4167],[104.151,-3.4304],[104.1489,-3.436],[104.1512,-3.4454],[104.1472,-3.4494],[104.1411,-3.4494],[104.1361,-3.4543],[104.1363,-3.4604],[104.1402,-3.4672],[104.1397,-3.471],[104.1329,-3.4866],[104.1285,-3.4915],[104.1366,-3.492],[104.143,-3.4901],[104.1448,-3.4972],[104.1416,-3.5055],[104.1368,-3.5108],[104.1339,-3.5181],[104.1314,-3.5198],[104.1424,-3.531],[104.1466,-3.5423],[104.1496,-3.5438],[104.1608,-3.5448],[104.1635,-3.5428],[104.1734,-3.5426],[104.1837,-3.5459],[104.1937,-3.5433],[104.1951,-3.5385],[104.2074,-3.5421],[104.2177,-3.5416],[104.2137,-3.5317],[104.2244,-3.5324],[104.2213,-3.5396],[104.2316,-3.542],[104.2367,-3.5396],[104.2416,-3.542],[104.2502,-3.5361],[104.2536,-3.5395],[104.2518,-3.5485],[104.2489,-3.5535],[104.2431,-3.5679],[104.2607,-3.571],[104.2787,-3.5724],[104.2935,-3.5639],[104.3006,-3.5671],[104.3054,-3.567],[104.3048,-3.5617],[104.3045,-3.5562],[104.3112,-3.5479],[104.3123,-3.5439],[104.3112,-3.5358],[104.3086,-3.5307],[104.311,-3.512],[104.3037,-3.5038],[104.301,-3.4976],[104.2957,-3.4931],[104.2931,-3.4876],[104.2928,-3.4784],[104.2966,-3.47],[104.3015,-3.4639],[104.3094,-3.4633],[104.3125,-3.4395],[104.3168,-3.427],[104.3316,-3.3991],[104.3414,-3.3843],[104.3482,-3.3715],[104.3378,-3.3696],[104.3265,-3.366],[104.3059,-3.3568],[104.2979,-3.3568],[104.2807,-3.3645],[104.2642,-3.3696],[104.248,-3.373],[104.2417,-3.3736],[104.2347,-3.3714],[104.2127,-3.3678]]}},{"type":"Feature","properties":{"mhid":"1332:117","alt_name":"KOTA PAGAR ALAM","latitude":-4.13055,"longitude":103.26822,"sample_value":186},"geometry":{"type":"LineString","coordinates":[[103.3094,-4.2513],[103.3143,-4.2433],[103.3165,-4.2375],[103.3168,-4.2304],[103.3156,-4.2212],[103.3172,-4.2175],[103.3236,-4.2129],[103.3258,-4.2049],[103.3298,-4.1976],[103.3307,-4.1864],[103.3408,-4.1781],[103.3458,-4.1796],[103.3491,-4.1711],[103.3575,-4.1606],[103.363,-4.1576],[103.364,-4.145],[103.3611,-4.1318],[103.356,-4.1267],[103.3555,-4.1206],[103.3578,-4.1165],[103.3631,-4.1133],[103.3612,-4.1078],[103.3615,-4.1031],[103.3593,-4.0981],[103.3649,-4.0972],[103.3739,-4.0895],[103.3765,-4.0813],[103.3906,-4.0714],[103.3956,-4.0631],[103.3942,-4.0582],[103.3967,-4.0523],[103.4011,-4.0478],[103.3994,-4.0369],[103.4001,-4.0316],[103.4065,-4.0266],[103.4074,-4.017],[103.4117,-4.0095],[103.4128,-4.0044],[103.4124,-3.9966],[103.4136,-3.9895],[103.4101,-3.9861],[103.4058,-3.9873],[103.3954,-3.986],[103.3923,-3.9905],[103.3846,-3.9908],[103.3798,-3.9878],[103.3762,-3.9889],[103.3741,-3.9932],[103.3609,-3.9963],[103.352,-4.0034],[103.3515,-4.0115],[103.3475,-4.0152],[103.3473,-4.0195],[103.3428,-4.0309],[103.3435,-4.0377],[103.3386,-4.039],[103.3309,-4.0435],[103.293,-4.0423],[103.2886,-4.0441],[103.2829,-4.0428],[103.2774,-4.0364],[103.2802,-4.0258],[103.2856,-4.0249],[103.2857,-4.0197],[103.291,-4.0161],[103.2883,-4.0093],[103.2746,-4.0036],[103.2711,-4.0041],[103.2604,-3.9998],[103.2527,-4.0031],[103.2487,-3.9991],[103.2407,-3.9986],[103.2373,-3.9931],[103.2303,-3.9921],[103.2203,-3.9879],[103.2123,-3.9887],[103.1992,-3.992],[103.19,-3.9889],[103.1828,-3.9905],[103.1813,-3.9936],[103.1687,-3.9983],[103.1608,-4.0054],[103.1548,-4.0048],[103.1479,-4.0091],[103.1324,-4.0152],[103.1214,-4.0157],[103.124,-4.0212],[103.128,-4.0243],[103.1322,-4.0309],[103.1367,-4.0419],[103.1398,-4.059],[103.1441,-4.0722],[103.1481,-4.0925],[103.1513,-4.0986],[103.1511,-4.1019],[103.1544,-4.1096],[103.1649,-4.1197],[103.1809,-4.1476],[103.1822,-4.1532],[103.1805,-4.159],[103.1853,-4.1641],[103.1837,-4.1706],[103.1847,-4.1866],[103.1838,-4.1909],[103.1854,-4.2157],[103.1847,-4.2186],[103.1782,-4.2272],[103.1777,-4.2307],[103.1809,-4.236],[103.1871,-4.2384],[103.2008,-4.2476],[103.2041,-4.2475],[103.2141,-4.2408],[103.2173,-4.2404],[103.2346,-4.2458],[103.2474,-4.2445],[103.2611,-4.2487],[103.2685,-4.2557],[103.285,-4.2572],[103.2912,-4.2581],[103.3017,-4.2546],[103.3051,-4.2545],[103.3094,-4.2513]]}},{"type":"Feature","properties":{"mhid":"1332:118","alt_name":"KOTA LUBUK LINGGAU","latitude":-3.29308,"longitude":102.85503,"sample_value":313},"geometry":{"type":"LineString","coordinates":[[102.966,-3.3621],[102.9662,-3.3479],[102.9677,-3.3381],[102.9711,-3.2626],[102.9692,-3.2598],[102.9563,-3.2595],[102.9499,-3.2625],[102.9405,-3.2624],[102.9379,-3.2584],[102.9411,-3.2552],[102.9483,-3.2535],[102.9508,-3.2467],[102.956,-3.2378],[102.9561,-3.2354],[102.9462,-3.2327],[102.9447,-3.2265],[102.9476,-3.218],[102.9409,-3.2175],[102.9371,-3.2127],[102.9353,-3.2062],[102.9277,-3.1994],[102.927,-3.1946],[102.9217,-3.1939],[102.9162,-3.1906],[102.9192,-3.1744],[102.924,-3.1706],[102.9102,-3.1614],[102.9003,-3.158],[102.8853,-3.1541],[102.8811,-3.1567],[102.8753,-3.1495],[102.8691,-3.1392],[102.8643,-3.1356],[102.8603,-3.1293],[102.8521,-3.1357],[102.8448,-3.1457],[102.8397,-3.1475],[102.8361,-3.1513],[102.8322,-3.1649],[102.8321,-3.175],[102.825,-3.1736],[102.8128,-3.1749],[102.81,-3.189],[102.8113,-3.1947],[102.8057,-3.2015],[102.8086,-3.2052],[102.8117,-3.2213],[102.8086,-3.2254],[102.8078,-3.2316],[102.816,-3.2364],[102.7976,-3.2544],[102.7925,-3.2531],[102.7877,-3.2576],[102.7791,-3.2579],[102.7797,-3.2676],[102.7747,-3.2699],[102.7654,-3.2688],[102.766,-3.2731],[102.7532,-3.2834],[102.7605,-3.2837],[102.7689,-3.284],[102.7754,-3.281],[102.7798,-3.2874],[102.7888,-3.288],[102.7931,-3.2947],[102.7961,-3.306],[102.796,-3.3114],[102.7988,-3.3211],[102.809,-3.3305],[102.8114,-3.3356],[102.8158,-3.3341],[102.8328,-3.3335],[102.8354,-3.3357],[102.8348,-3.3414],[102.8437,-3.3421],[102.8515,-3.3412],[102.8568,-3.3447],[102.8722,-3.3432],[102.8761,-3.3362],[102.8792,-3.3336],[102.8941,-3.3279],[102.8915,-3.3368],[102.8866,-3.3408],[102.8829,-3.3472],[102.891,-3.3606],[102.8857,-3.3657],[102.8924,-3.3759],[102.902,-3.3774],[102.9143,-3.3757],[102.9162,-3.3725],[102.9282,-3.3688],[102.9322,-3.3704],[102.9383,-3.3684],[102.942,-3.3641],[102.9473,-3.3661],[102.958,-3.3608],[102.966,-3.3621]]}},{"type":"Feature","properties":{"mhid":"1332:120","alt_name":"KABUPATEN BENGKULU SELATAN","latitude":-4.35,"longitude":103.03333,"sample_value":867},"geometry":{"type":"LineString","coordinates":[[103.1809,-4.236],[103.1711,-4.241],[103.1552,-4.2411],[103.1519,-4.2455],[103.1454,-4.2501],[103.1414,-4.2507],[103.1348,-4.2554],[103.126,-4.2539],[103.1175,-4.2479],[103.1123,-4.2489],[103.1047,-4.2541],[103.0963,-4.2517],[103.0936,-4.2528],[103.0877,-4.2607],[103.0835,-4.2643],[103.0758,-4.2625],[103.0697,-4.2568],[103.0675,-4.2504],[103.0684,-4.2431],[103.0647,-4.2372],[103.0586,-4.2342],[103.0567,-4.2263],[103.0515,-4.2192],[103.0611,-4.215],[103.0642,-4.2117],[103.0617,-4.2027],[103.0614,-4.196],[103.0489,-4.1918],[103.0453,-4.1861],[103.0453,-4.1823],[103.0376,-4.1768],[103.0263,-4.1675],[103.0224,-4.1682],[103.013,-4.1666],[103.0096,-4.1632],[102.9997,-4.1582],[102.9879,-4.1697],[102.9683,-4.167],[102.9607,-4.167],[102.9553,-4.169],[102.951,-4.1729],[102.9466,-4.1803],[102.935,-4.1854],[102.9224,-4.1818],[102.9171,-4.1818],[102.9094,-4.1753],[102.9036,-4.1771],[102.8999,-4.1814],[102.8997,-4.191],[102.9007,-4.1974],[102.8973,-4.2009],[102.8912,-4.2034],[102.8895,-4.2088],[102.8879,-4.2214],[102.8832,-4.2298],[102.8807,-4.2371],[102.8824,-4.2454],[102.8826,-4.2562],[102.8851,-4.2636],[102.876,-4.2724],[102.8614,-4.2842],[102.859,-4.2973],[102.8587,-4.3059],[102.8553,-4.3179],[102.8502,-4.3254],[102.8481,-4.3354],[102.8435,-4.3442],[102.8369,-4.3443],[102.8314,-4.3474],[102.8001,-4.3599],[102.8029,-4.3636],[102.8055,-4.3717],[102.8149,-4.3803],[102.8157,-4.3827],[102.8235,-4.3878],[102.8262,-4.3912],[102.8491,-4.4073],[102.8528,-4.4115],[102.8711,-4.4278],[102.8866,-4.4442],[102.9,-4.4661],[102.9015,-4.4738],[102.8979,-4.4801],[102.8983,-4.4873],[102.9045,-4.492],[102.9135,-4.4938],[102.9275,-4.4985],[102.943,-4.5021],[102.9542,-4.5055],[102.9771,-4.5107],[103.0042,-4.5201],[103.016,-4.5253],[103.019,-4.5286],[103.0366,-4.5342],[103.0466,-4.5398],[103.0573,-4.5471],[103.0655,-4.5562],[103.0702,-4.5591],[103.0775,-4.5583],[103.0802,-4.5597],[103.0851,-4.5564],[103.0865,-4.55],[103.0835,-4.5362],[103.0851,-4.5282],[103.0952,-4.516],[103.0984,-4.5102],[103.0973,-4.5066],[103.1045,-4.4938],[103.1076,-4.4936],[103.1119,-4.4862],[103.117,-4.4837],[103.1258,-4.4715],[103.1285,-4.4659],[103.1329,-4.4628],[103.1458,-4.4496],[103.1494,-4.4449],[103.1545,-4.4325],[103.152,-4.4279],[103.1538,-4.4223],[103.1623,-4.4166],[103.1642,-4.408],[103.168,-4.4003],[103.1758,-4.3978],[103.1938,-4.397],[103.2007,-4.3926],[103.2019,-4.3878],[103.1994,-4.3807],[103.2035,-4.3772],[103.2041,-4.3737],[103.2017,-4.368],[103.2031,-4.3612],[103.1978,-4.3504],[103.1976,-4.3384],[103.1991,-4.3249],[103.1988,-4.3203],[103.2028,-4.3141],[103.2004,-4.3104],[103.2025,-4.3069],[103.2078,-4.3082],[103.2193,-4.307],[103.2247,-4.2974],[103.2289,-4.293],[103.2384,-4.2911],[103.2461,-4.2944],[103.2511,-4.2996],[103.2566,-4.2928],[103.2597,-4.2921],[103.2682,-4.2944],[103.2801,-4.2908],[103.2825,-4.2881],[103.28,-4.2833],[103.283,-4.2778],[103.2856,-4.2678],[103.2883,-4.2631],[103.285,-4.2572],[103.2685,-4.2557],[103.2611,-4.2487],[103.2474,-4.2445],[103.2346,-4.2458],[103.2173,-4.2404],[103.2141,-4.2408],[103.2041,-4.2475],[103.2008,-4.2476],[103.1871,-4.2384],[103.1809,-4.236]]}},{"type":"Feature","properties":{"mhid":"1332:121","alt_name":"KABUPATEN REJANG LEBONG","latitude":-3.43333,"longitude":102.71667,"sample_value":900},"geometry":{"type":"LineString","coordinates":[[102.7605,-3.2837],[102.759,-3.2882],[102.7507,-3.2949],[102.7458,-3.3054],[102.7437,-3.3158],[102.7265,-3.3156],[102.7249,-3.317],[102.7059,-3.3189],[102.7011,-3.3178],[102.6964,-3.3191],[102.6876,-3.3187],[102.6753,-3.3222],[102.6704,-3.3296],[102.6613,-3.3335],[102.6578,-3.3365],[102.6502,-3.3392],[102.6418,-3.3497],[102.6365,-3.3528],[102.633,-3.3434],[102.6145,-3.3372],[102.6099,-3.3336],[102.5961,-3.3334],[102.5843,-3.3265],[102.5787,-3.3195],[102.5701,-3.3148],[102.569,-3.3109],[102.5649,-3.3092],[102.5606,-3.3037],[102.5608,-3.2942],[102.5502,-3.2957],[102.543,-3.2941],[102.5401,-3.2895],[102.5319,-3.2893],[102.5284,-3.2869],[102.5245,-3.2784],[102.5205,-3.2758],[102.5115,-3.2745],[102.5083,-3.2688],[102.4981,-3.263],[102.4981,-3.2601],[102.4939,-3.2603],[102.4946,-3.268],[102.4887,-3.2785],[102.487,-3.2839],[102.489,-3.2967],[102.4952,-3.3021],[102.5009,-3.3097],[102.5003,-3.3154],[102.4975,-3.32],[102.4924,-3.3225],[102.4898,-3.3262],[102.4847,-3.3262],[102.4753,-3.3214],[102.4614,-3.3217],[102.4557,-3.3194],[102.4486,-3.3208],[102.4503,-3.3288],[102.4446,-3.3313],[102.4474,-3.3376],[102.4426,-3.341],[102.4412,-3.3473],[102.4321,-3.3521],[102.4236,-3.3581],[102.4168,-3.3586],[102.4074,-3.3566],[102.3991,-3.3564],[102.3929,-3.3547],[102.3869,-3.3578],[102.3824,-3.3655],[102.3804,-3.3748],[102.3761,-3.382],[102.3741,-3.3905],[102.3758,-3.395],[102.3685,-3.4003],[102.3669,-3.4053],[102.3699,-3.4099],[102.3899,-3.4147],[102.3965,-3.4224],[102.3985,-3.4374],[102.4081,-3.4476],[102.406,-3.4556],[102.4181,-3.4786],[102.4201,-3.4924],[102.4217,-3.494],[102.4274,-3.4999],[102.4292,-3.5108],[102.4429,-3.5275],[102.4507,-3.5301],[102.4555,-3.5293],[102.4659,-3.5321],[102.472,-3.5309],[102.4809,-3.5197],[102.4872,-3.5161],[102.4969,-3.5136],[102.4976,-3.5068],[102.5005,-3.5008],[102.5185,-3.4961],[102.5331,-3.4961],[102.5416,-3.5],[102.5656,-3.5077],[102.5837,-3.5178],[102.5942,-3.5256],[102.601,-3.5259],[102.6246,-3.5164],[102.6282,-3.5164],[102.6307,-3.5231],[102.6375,-3.5326],[102.655,-3.5407],[102.6615,-3.5421],[102.6634,-3.5383],[102.6691,-3.5397],[102.6848,-3.5396],[102.6824,-3.5479],[102.6875,-3.5463],[102.7069,-3.5473],[102.7222,-3.5526],[102.7295,-3.5512],[102.751,-3.5432],[102.7749,-3.5469],[102.7849,-3.5407],[102.7964,-3.5374],[102.8102,-3.5301],[102.8189,-3.5276],[102.8244,-3.5291],[102.8274,-3.5351],[102.8406,-3.5376],[102.8476,-3.5371],[102.8514,-3.5453],[102.8601,-3.5481],[102.8629,-3.5529],[102.8691,-3.5574],[102.8858,-3.5788],[102.89,-3.5966],[102.8897,-3.6051],[102.892,-3.6094],[102.9,-3.6154],[102.9039,-3.6149],[102.9036,-3.6084],[102.9136,-3.5933],[102.9234,-3.5885],[102.9354,-3.5783],[102.9416,-3.5667],[102.9412,-3.5521],[102.9439,-3.5478],[102.9435,-3.5401],[102.9517,-3.5308],[102.9608,-3.5287],[102.9782,-3.5271],[102.983,-3.5249],[102.989,-3.5189],[102.9921,-3.5135],[102.9905,-3.5065],[102.988,-3.5037],[102.9886,-3.4982],[102.9864,-3.4954],[102.9928,-3.4809],[102.9966,-3.4748],[102.9983,-3.4688],[102.9912,-3.4614],[102.9901,-3.4511],[102.9929,-3.4462],[102.9932,-3.4385],[102.9992,-3.4353],[102.9982,-3.426],[102.9912,-3.4176],[102.9916,-3.4121],[102.9945,-3.4046],[102.9943,-3.4005],[102.9993,-3.3948],[102.996,-3.3912],[102.9894,-3.3697],[102.9851,-3.3666],[102.9707,-3.3643],[102.966,-3.3621],[102.958,-3.3608],[102.9473,-3.3661],[102.942,-3.3641],[102.9383,-3.3684],[102.9322,-3.3704],[102.9282,-3.3688],[102.9162,-3.3725],[102.9143,-3.3757],[102.902,-3.3774],[102.8924,-3.3759],[102.8857,-3.3657],[102.891,-3.3606],[102.8829,-3.3472],[102.8866,-3.3408],[102.8915,-3.3368],[102.8941,-3.3279],[102.8792,-3.3336],[102.8761,-3.3362],[102.8722,-3.3432],[102.8568,-3.3447],[102.8515,-3.3412],[102.8437,-3.3421],[102.8348,-3.3414],[102.8354,-3.3357],[102.8328,-3.3335],[102.8158,-3.3341],[102.8114,-3.3356],[102.809,-3.3305],[102.7988,-3.3211],[102.796,-3.3114],[102.7961,-3.306],[102.7931,-3.2947],[102.7888,-3.288],[102.7798,-3.2874],[102.7754,-3.281],[102.7689,-3.284],[102.7605,-3.2837]]}},{"type":"Feature","properties":{"mhid":"1332:122","alt_name":"KABUPATEN BENGKULU UTARA","latitude":-3.33333,"longitude":102.05,"sample_value":944},"geometry":{"type":"LineString","coordinates":[[102.1619,-5.2761],[102.1552,-5.2852],[102.1446,-5.2828],[102.1264,-5.293],[102.1263,-5.3148],[102.148,-5.3363],[102.1826,-5.3524],[102.2354,-5.3741],[102.2548,-5.3842],[102.2554,-5.3836],[102.2941,-5.4026],[102.3185,-5.4113],[102.3272,-5.42],[102.3527,-5.4425],[102.3788,-5.4405],[102.3812,-5.4256],[102.3741,-5.4206],[102.3671,-5.4172],[102.368,-5.4103],[102.3757,-5.408],[102.3807,-5.3883],[102.3759,-5.3697],[102.3545,-5.357],[102.3306,-5.3507],[102.3115,-5.347],[102.3054,-5.3452],[102.2908,-5.3385],[102.2635,-5.3219],[102.2552,-5.3161],[102.238,-5.3124],[102.2087,-5.3037],[102.1866,-5.2885],[102.1619,-5.2761]]}},{"type":"Feature","properties":{"mhid":"1332:122","alt_name":"KABUPATEN BENGKULU UTARA","latitude":-3.33333,"longitude":102.05,"sample_value":944},"geometry":{"type":"LineString","coordinates":[[101.9219,-2.7368],[101.9125,-2.739],[101.9072,-2.7387],[101.8934,-2.7333],[101.8863,-2.7346],[101.8772,-2.732],[101.8632,-2.7252],[101.8556,-2.7169],[101.8577,-2.7276],[101.8604,-2.7303],[101.858,-2.7448],[101.8594,-2.7548],[101.8635,-2.7679],[101.8628,-2.7792],[101.8661,-2.7845],[101.8661,-2.789],[101.8582,-2.8073],[101.8536,-2.8122],[101.8529,-2.8193],[101.8499,-2.8293],[101.8408,-2.8382],[101.8363,-2.8476],[101.8288,-2.8532],[101.8204,-2.8638],[101.8093,-2.8721],[101.8027,-2.8887],[101.8042,-2.899],[101.8026,-2.9133],[101.8026,-2.9222],[101.7983,-2.9309],[101.792,-2.9313],[101.7859,-2.9345],[101.7846,-2.9375],[101.7854,-2.9509],[101.7835,-2.9547],[101.784,-2.9637],[101.7897,-2.9698],[101.792,-2.9798],[101.7887,-2.9851],[101.7838,-2.9877],[101.7814,-2.9943],[101.7783,-2.995],[101.7748,-3],[101.7656,-3.0034],[101.7549,-3.0047],[101.7471,-3.0207],[101.738,-3.0297],[101.732,-3.0343],[101.7244,-3.0383],[101.7179,-3.0446],[101.702,-3.0539],[101.7064,-3.0595],[101.7128,-3.0726],[101.7134,-3.0761],[101.6921,-3.0971],[101.6745,-3.1167],[101.6687,-3.1258],[101.653,-3.1284],[101.6393,-3.1363],[101.6221,-3.138],[101.6212,-3.1491],[101.6067,-3.1518],[101.5992,-3.1556],[101.5955,-3.1595],[101.5928,-3.1655],[101.5885,-3.1708],[101.5823,-3.1809],[101.5758,-3.1846],[101.5894,-3.2057],[101.597,-3.2189],[101.6026,-3.2239],[101.6142,-3.238],[101.6257,-3.2486],[101.6476,-3.2647],[101.6623,-3.2735],[101.6691,-3.28],[101.6905,-3.2937],[101.6986,-3.2982],[101.7054,-3.3063],[101.7188,-3.3165],[101.7337,-3.3258],[101.7428,-3.3344],[101.7522,-3.3405],[101.7622,-3.3483],[101.7749,-3.3564],[101.7837,-3.361],[101.8042,-3.3769],[101.8146,-3.3825],[101.8216,-3.3881],[101.8405,-3.3998],[101.8604,-3.41],[101.8827,-3.4225],[101.9021,-3.4327],[101.91,-3.4386],[101.9119,-3.449],[101.923,-3.4575],[101.9259,-3.4612],[101.9222,-3.4731],[101.9259,-3.4787],[101.9538,-3.4916],[101.964,-3.495],[101.9761,-3.5015],[101.9949,-3.5106],[102.0151,-3.522],[102.0315,-3.53],[102.0477,-3.5386],[102.0755,-3.5523],[102.0965,-3.5664],[102.1112,-3.5783],[102.1119,-3.5827],[102.1188,-3.5865],[102.1306,-3.5913],[102.1376,-3.6008],[102.1694,-3.6243],[102.1744,-3.6295],[102.1901,-3.64],[102.2055,-3.6537],[102.2096,-3.6466],[102.2123,-3.6322],[102.2204,-3.6046],[102.226,-3.5966],[102.236,-3.5934],[102.2452,-3.5921],[102.2598,-3.5927],[102.2675,-3.5918],[102.2722,-3.5842],[102.2813,-3.5733],[102.2915,-3.563],[102.3115,-3.5525],[102.3266,-3.5373],[102.3357,-3.5303],[102.3442,-3.5267],[102.3546,-3.5253],[102.3733,-3.5212],[102.3833,-3.52],[102.4037,-3.5081],[102.4217,-3.494],[102.4201,-3.4924],[102.4181,-3.4786],[102.406,-3.4556],[102.4081,-3.4476],[102.3985,-3.4374],[102.3965,-3.4224],[102.3899,-3.4147],[102.3699,-3.4099],[102.3669,-3.4053],[102.3685,-3.4003],[102.3758,-3.395],[102.3741,-3.3905],[102.3761,-3.382],[102.3593,-3.3732],[102.3529,-3.3727],[102.3425,-3.3737],[102.3213,-3.3718],[102.315,-3.3727],[102.3007,-3.3684],[102.2922,-3.3642],[102.2751,-3.361],[102.2734,-3.3579],[102.2759,-3.347],[102.2802,-3.3373],[102.286,-3.3321],[102.2972,-3.3246],[102.2983,-3.3215],[102.2948,-3.3058],[102.2923,-3.3006],[102.2914,-3.2841],[102.2864,-3.279],[102.2708,-3.2767],[102.2622,-3.2685],[102.2493,-3.262],[102.2426,-3.2556],[102.2362,-3.2464],[102.2272,-3.242],[102.2222,-3.2376],[102.2163,-3.2279],[102.2094,-3.2248],[102.206,-3.2214],[102.1987,-3.2217],[102.1918,-3.2186],[102.1721,-3.2279],[102.1647,-3.2287],[102.1602,-3.2267],[102.1536,-3.2194],[102.1433,-3.1992],[102.1329,-3.1857],[102.1272,-3.1763],[102.1263,-3.1705],[102.1289,-3.1636],[102.1323,-3.1506],[102.1362,-3.1445],[102.1361,-3.1392],[102.1326,-3.1336],[102.1346,-3.1275],[102.1403,-3.1198],[102.1421,-3.1088],[102.1381,-3.1039],[102.1387,-3.0987],[102.1426,-3.0899],[102.1427,-3.0816],[102.1393,-3.0719],[102.1345,-3.0644],[102.1279,-3.0589],[102.1164,-3.0518],[102.1107,-3.0474],[102.104,-3.0372],[102.1043,-3.0296],[102.1017,-3.0236],[102.0954,-3.0167],[102.0927,-3.0102],[102.0845,-3.004],[102.0836,-2.9986],[102.0769,-2.9939],[102.0666,-2.992],[102.0595,-2.9891],[102.049,-2.983],[102.0417,-2.9738],[102.0389,-2.9596],[102.0391,-2.954],[102.0337,-2.9226],[102.0293,-2.9129],[102.0177,-2.9028],[102.0106,-2.8931],[102.0082,-2.8846],[102.0106,-2.8712],[102.0111,-2.8632],[102.0099,-2.8575],[102.0044,-2.848],[101.9996,-2.8436],[101.9906,-2.8415],[101.9788,-2.8326],[101.9641,-2.8155],[101.9628,-2.8096],[101.9577,-2.8033],[101.9538,-2.7953],[101.9503,-2.791],[101.9489,-2.7813],[101.9466,-2.7757],[101.9422,-2.7714],[101.9326,-2.765],[101.9288,-2.7576],[101.9253,-2.7424],[101.9219,-2.7368]]}},{"type":"Feature","properties":{"mhid":"1332:123","alt_name":"KABUPATEN KAUR","latitude":-4.78179,"longitude":103.36109,"sample_value":413},"geometry":{"type":"LineString","coordinates":[[103.4681,-4.3531],[103.4674,-4.3437],[103.4638,-4.3377],[103.454,-4.3318],[103.4339,-4.3295],[103.4209,-4.3226],[103.4095,-4.3192],[103.3905,-4.3183],[103.3762,-4.3143],[103.3589,-4.3018],[103.3402,-4.2944],[103.3306,-4.2929],[103.3267,-4.2909],[103.3181,-4.2791],[103.3112,-4.2605],[103.3051,-4.2545],[103.3017,-4.2546],[103.2912,-4.2581],[103.285,-4.2572],[103.2883,-4.2631],[103.2856,-4.2678],[103.283,-4.2778],[103.28,-4.2833],[103.2825,-4.2881],[103.2801,-4.2908],[103.2682,-4.2944],[103.2597,-4.2921],[103.2566,-4.2928],[103.2511,-4.2996],[103.2461,-4.2944],[103.2384,-4.2911],[103.2289,-4.293],[103.2247,-4.2974],[103.2193,-4.307],[103.2078,-4.3082],[103.2025,-4.3069],[103.2004,-4.3104],[103.2028,-4.3141],[103.1988,-4.3203],[103.1991,-4.3249],[103.1976,-4.3384],[103.1978,-4.3504],[103.2031,-4.3612],[103.2017,-4.368],[103.2041,-4.3737],[103.2035,-4.3772],[103.1994,-4.3807],[103.2019,-4.3878],[103.2007,-4.3926],[103.1938,-4.397],[103.1758,-4.3978],[103.168,-4.4003],[103.1642,-4.408],[103.1623,-4.4166],[103.1538,-4.4223],[103.152,-4.4279],[103.1545,-4.4325],[103.1494,-4.4449],[103.1458,-4.4496],[103.1329,-4.4628],[103.1285,-4.4659],[103.1258,-4.4715],[103.117,-4.4837],[103.1119,-4.4862],[103.1076,-4.4936],[103.1045,-4.4938],[103.0973,-4.5066],[103.0984,-4.5102],[103.0952,-4.516],[103.0851,-4.5282],[103.0835,-4.5362],[103.0865,-4.55],[103.0851,-4.5564],[103.0802,-4.5597],[103.0775,-4.5583],[103.0702,-4.5591],[103.086,-4.5651],[103.1074,-4.5753],[103.1197,-4.5796],[103.1262,-4.5893],[103.1337,-4.5914],[103.1471,-4.5972],[103.1544,-4.6018],[103.1628,-4.612],[103.1833,-4.6278],[103.1999,-4.6371],[103.204,-4.642],[103.2093,-4.6455],[103.212,-4.6502],[103.2226,-4.6554],[103.2281,-4.6613],[103.2409,-4.6726],[103.2445,-4.6737],[103.2507,-4.6809],[103.2523,-4.6862],[103.2573,-4.6912],[103.2568,-4.6954],[103.2617,-4.6994],[103.2731,-4.7051],[103.2784,-4.7056],[103.2854,-4.7122],[103.2841,-4.7209],[103.2867,-4.7281],[103.2899,-4.7315],[103.295,-4.7403],[103.2994,-4.7444],[103.3033,-4.7454],[103.3112,-4.7504],[103.3171,-4.7572],[103.3207,-4.7663],[103.3205,-4.7709],[103.3114,-4.7782],[103.3114,-4.7855],[103.3222,-4.8018],[103.3276,-4.8077],[103.3351,-4.8112],[103.3448,-4.8122],[103.3469,-4.8109],[103.3472,-4.8027],[103.3512,-4.7991],[103.3574,-4.7966],[103.3661,-4.7961],[103.3759,-4.7987],[103.3821,-4.8024],[103.3825,-4.8053],[103.3887,-4.8111],[103.3936,-4.8117],[103.4025,-4.8171],[103.4075,-4.8299],[103.4119,-4.834],[103.4148,-4.84],[103.4066,-4.8488],[103.4059,-4.8559],[103.4105,-4.8622],[103.4263,-4.8721],[103.4312,-4.8725],[103.4366,-4.8641],[103.4436,-4.8618],[103.4588,-4.8628],[103.471,-4.8653],[103.4805,-4.8703],[103.4974,-4.8738],[103.5089,-4.8802],[103.5198,-4.8852],[103.5276,-4.8927],[103.5278,-4.8973],[103.5337,-4.9078],[103.5354,-4.9156],[103.5443,-4.9163],[103.5484,-4.9208],[103.5563,-4.9209],[103.5617,-4.9259],[103.5713,-4.9261],[103.5796,-4.9108],[103.5898,-4.9],[103.594,-4.8913],[103.5919,-4.8849],[103.5956,-4.882],[103.5966,-4.8764],[103.602,-4.8678],[103.6086,-4.87],[103.6158,-4.87],[103.6227,-4.8646],[103.6234,-4.8595],[103.634,-4.8531],[103.6365,-4.8493],[103.6445,-4.8516],[103.6498,-4.8482],[103.6544,-4.8486],[103.6568,-4.8437],[103.6636,-4.8384],[103.6678,-4.839],[103.6768,-4.8357],[103.6789,-4.8309],[103.6844,-4.8295],[103.6883,-4.8265],[103.703,-4.8191],[103.7082,-4.8142],[103.7089,-4.8076],[103.712,-4.8057],[103.718,-4.7936],[103.7284,-4.7921],[103.7313,-4.7866],[103.7384,-4.7857],[103.7424,-4.7796],[103.7503,-4.7794],[103.7571,-4.7756],[103.7614,-4.7751],[103.7635,-4.7585],[103.7619,-4.7545],[103.7549,-4.7508],[103.7473,-4.7451],[103.7454,-4.7412],[103.7396,-4.7441],[103.7326,-4.742],[103.7325,-4.7372],[103.7208,-4.7329],[103.715,-4.7291],[103.7079,-4.7282],[103.7029,-4.7251],[103.6959,-4.7254],[103.6877,-4.729],[103.6747,-4.7321],[103.6718,-4.7295],[103.6747,-4.7216],[103.6793,-4.7167],[103.6861,-4.7121],[103.7007,-4.7041],[103.7045,-4.6984],[103.7041,-4.6923],[103.6982,-4.6829],[103.6999,-4.672],[103.6974,-4.6694],[103.6947,-4.6539],[103.6842,-4.6458],[103.6859,-4.6337],[103.6709,-4.6228],[103.6618,-4.6098],[103.6563,-4.608],[103.6485,-4.6026],[103.6449,-4.5975],[103.6407,-4.5949],[103.628,-4.5949],[103.6229,-4.5933],[103.6137,-4.5973],[103.5979,-4.596],[103.5982,-4.5894],[103.6073,-4.5837],[103.6074,-4.5789],[103.6207,-4.5681],[103.6243,-4.5565],[103.6301,-4.5562],[103.6289,-4.5507],[103.6184,-4.533],[103.6149,-4.5305],[103.6053,-4.5295],[103.5977,-4.5245],[103.5879,-4.5232],[103.5768,-4.528],[103.5706,-4.5248],[103.5562,-4.5399],[103.5488,-4.5443],[103.5449,-4.5536],[103.5369,-4.564],[103.5268,-4.5708],[103.5204,-4.5739],[103.5086,-4.5747],[103.5029,-4.5733],[103.4947,-4.5771],[103.4856,-4.5791],[103.4758,-4.5737],[103.4726,-4.5703],[103.4718,-4.5657],[103.4664,-4.5591],[103.46,-4.5549],[103.4515,-4.5469],[103.4461,-4.5442],[103.4435,-4.5386],[103.437,-4.5313],[103.4168,-4.5207],[103.4069,-4.5211],[103.3982,-4.5175],[103.4,-4.5106],[103.4082,-4.4922],[103.4107,-4.4852],[103.4119,-4.4713],[103.4137,-4.4663],[103.4235,-4.458],[103.4252,-4.4386],[103.4254,-4.4237],[103.4286,-4.4053],[103.433,-4.4002],[103.4391,-4.3873],[103.4494,-4.3708],[103.4624,-4.3614],[103.4681,-4.3531]]}},{"type":"Feature","properties":{"mhid":"1332:124","alt_name":"KABUPATEN SELUMA","latitude":-3.96644,"longitude":102.47429,"sample_value":273},"geometry":{"type":"LineString","coordinates":[[102.9974,-4.0191],[102.9834,-4.018],[102.9628,-4.0207],[102.9573,-4.0169],[102.9529,-4.0087],[102.9498,-4.006],[102.9409,-4.0021],[102.9351,-3.9927],[102.9343,-3.9856],[102.921,-3.9802],[102.9165,-3.9737],[102.909,-3.971],[102.8988,-3.9732],[102.8868,-3.9892],[102.8848,-3.9898],[102.8686,-3.9864],[102.8638,-3.9919],[102.86,-3.9927],[102.8521,-3.9823],[102.845,-3.9769],[102.8263,-3.9782],[102.8214,-3.9809],[102.8153,-3.9791],[102.8177,-3.9723],[102.8175,-3.9678],[102.8143,-3.9643],[102.8064,-3.9593],[102.7955,-3.9556],[102.7858,-3.9484],[102.7818,-3.9412],[102.7804,-3.9343],[102.7748,-3.9285],[102.7774,-3.9175],[102.7757,-3.9158],[102.7607,-3.9147],[102.7527,-3.9092],[102.7487,-3.9018],[102.7446,-3.8914],[102.7343,-3.8902],[102.7311,-3.8822],[102.7276,-3.8789],[102.7162,-3.8747],[102.7122,-3.8697],[102.7069,-3.8692],[102.7035,-3.8625],[102.6999,-3.8613],[102.69,-3.8616],[102.6857,-3.8563],[102.6865,-3.8502],[102.6854,-3.8448],[102.679,-3.8366],[102.6749,-3.8347],[102.6693,-3.8245],[102.6516,-3.8117],[102.6397,-3.813],[102.6325,-3.8109],[102.6244,-3.8033],[102.6186,-3.8011],[102.6143,-3.8005],[102.6094,-3.8034],[102.6068,-3.8102],[102.5856,-3.8049],[102.5767,-3.8059],[102.5735,-3.8029],[102.5635,-3.8068],[102.5613,-3.8091],[102.5592,-3.8176],[102.556,-3.8212],[102.5542,-3.8337],[102.5522,-3.8355],[102.5454,-3.8326],[102.5329,-3.8296],[102.5172,-3.8368],[102.5107,-3.8385],[102.498,-3.8389],[102.4916,-3.8374],[102.4791,-3.8439],[102.4725,-3.8464],[102.46,-3.8479],[102.438,-3.847],[102.4345,-3.8485],[102.4273,-3.855],[102.4103,-3.8614],[102.406,-3.861],[102.3981,-3.8626],[102.3932,-3.8683],[102.3879,-3.8713],[102.3852,-3.8767],[102.3823,-3.8775],[102.3775,-3.8828],[102.3706,-3.8828],[102.3632,-3.8797],[102.3607,-3.8862],[102.3532,-3.8834],[102.3472,-3.8867],[102.3444,-3.8912],[102.3478,-3.9006],[102.333,-3.9099],[102.3185,-3.9105],[102.3134,-3.9155],[102.3158,-3.9229],[102.3107,-3.9298],[102.3104,-3.9363],[102.3039,-3.9417],[102.2875,-3.9396],[102.277,-3.9331],[102.2691,-3.9237],[102.2778,-3.937],[102.2788,-3.94],[102.2782,-3.95],[102.2768,-3.955],[102.2807,-3.9642],[102.285,-3.9662],[102.2972,-3.9803],[102.3321,-4.0098],[102.3474,-4.0213],[102.3983,-4.0586],[102.4083,-4.0655],[102.4128,-4.0697],[102.4321,-4.0835],[102.4512,-4.0946],[102.4699,-4.1075],[102.4845,-4.1191],[102.4942,-4.1258],[102.509,-4.1374],[102.53,-4.1523],[102.5307,-4.1519],[102.5516,-4.1686],[102.6198,-4.2204],[102.634,-4.2307],[102.6558,-4.2454],[102.6778,-4.2637],[102.6924,-4.2736],[102.7082,-4.2852],[102.7219,-4.2992],[102.7254,-4.3053],[102.7399,-4.3198],[102.7464,-4.3248],[102.767,-4.3354],[102.7742,-4.341],[102.7948,-4.3537],[102.8001,-4.3599],[102.8314,-4.3474],[102.8369,-4.3443],[102.8435,-4.3442],[102.8481,-4.3354],[102.8502,-4.3254],[102.8553,-4.3179],[102.8587,-4.3059],[102.859,-4.2973],[102.8614,-4.2842],[102.876,-4.2724],[102.8851,-4.2636],[102.8826,-4.2562],[102.8824,-4.2454],[102.8807,-4.2371],[102.8832,-4.2298],[102.8879,-4.2214],[102.8895,-4.2088],[102.8912,-4.2034],[102.8973,-4.2009],[102.9007,-4.1974],[102.8997,-4.191],[102.8999,-4.1814],[102.9036,-4.1771],[102.9094,-4.1753],[102.9171,-4.1818],[102.9224,-4.1818],[102.935,-4.1854],[102.9466,-4.1803],[102.951,-4.1729],[102.9553,-4.169],[102.9607,-4.167],[102.9683,-4.167],[102.9879,-4.1697],[102.9997,-4.1582],[102.9965,-4.1491],[102.9866,-4.1459],[102.9811,-4.1362],[102.9738,-4.1271],[102.9672,-4.122],[102.9599,-4.1205],[102.9527,-4.1124],[102.9427,-4.1112],[102.9336,-4.1065],[102.9196,-4.0966],[102.9178,-4.0928],[102.9187,-4.0854],[102.9223,-4.0798],[102.922,-4.076],[102.9142,-4.0656],[102.916,-4.0568],[102.9188,-4.0559],[102.9305,-4.0474],[102.9427,-4.0526],[102.9541,-4.0562],[102.9602,-4.0531],[102.9627,-4.0482],[102.9678,-4.0447],[102.981,-4.0416],[102.9846,-4.0311],[102.9974,-4.0191]]}},{"type":"Feature","properties":{"mhid":"1332:125","alt_name":"KABUPATEN MUKOMUKO","latitude":-3.07438,"longitude":101.54766,"sample_value":662},"geometry":{"type":"LineString","coordinates":[[101.2855,-2.2768],[101.2853,-2.2774],[101.2833,-2.2849],[101.2708,-2.2973],[101.2672,-2.2995],[101.2602,-2.3096],[101.2541,-2.314],[101.2406,-2.3182],[101.2364,-2.3219],[101.2373,-2.3416],[101.2284,-2.3441],[101.2261,-2.3475],[101.2062,-2.36],[101.2004,-2.3667],[101.1911,-2.3679],[101.1829,-2.3758],[101.1767,-2.3761],[101.171,-2.382],[101.168,-2.383],[101.1599,-2.3825],[101.151,-2.3873],[101.1457,-2.3885],[101.143,-2.3931],[101.0975,-2.4259],[101.0228,-2.4784],[101.0285,-2.4932],[101.0342,-2.4986],[101.0474,-2.5083],[101.0533,-2.5142],[101.0617,-2.5245],[101.0702,-2.5331],[101.071,-2.5357],[101.0802,-2.5454],[101.0933,-2.5616],[101.1009,-2.573],[101.1092,-2.5827],[101.1149,-2.5958],[101.1277,-2.6109],[101.1371,-2.6231],[101.1422,-2.6284],[101.1633,-2.6429],[101.1801,-2.6523],[101.218,-2.67],[101.2373,-2.6785],[101.2621,-2.692],[101.2896,-2.7095],[101.3045,-2.7218],[101.3205,-2.7376],[101.3229,-2.7407],[101.3246,-2.7485],[101.3243,-2.7548],[101.3306,-2.7635],[101.3411,-2.7811],[101.3453,-2.7897],[101.3624,-2.8306],[101.3717,-2.8502],[101.3772,-2.8656],[101.3913,-2.8992],[101.3976,-2.9121],[101.4038,-2.9273],[101.4158,-2.9428],[101.4362,-2.9653],[101.4535,-2.9837],[101.4781,-3.0109],[101.4803,-3.0143],[101.4865,-3.0308],[101.4889,-3.0405],[101.4881,-3.0527],[101.5058,-3.0697],[101.5149,-3.0803],[101.5255,-3.1014],[101.5244,-3.1067],[101.5205,-3.113],[101.5207,-3.1158],[101.5355,-3.1336],[101.5452,-3.1418],[101.5464,-3.1456],[101.5541,-3.154],[101.5592,-3.164],[101.5758,-3.1846],[101.5823,-3.1809],[101.5885,-3.1708],[101.5928,-3.1655],[101.5955,-3.1595],[101.5992,-3.1556],[101.6067,-3.1518],[101.6212,-3.1491],[101.6221,-3.138],[101.6393,-3.1363],[101.653,-3.1284],[101.6687,-3.1258],[101.6745,-3.1167],[101.6921,-3.0971],[101.7134,-3.0761],[101.7128,-3.0726],[101.7064,-3.0595],[101.702,-3.0539],[101.7179,-3.0446],[101.7244,-3.0383],[101.732,-3.0343],[101.738,-3.0297],[101.7471,-3.0207],[101.7549,-3.0047],[101.7656,-3.0034],[101.7748,-3],[101.7783,-2.995],[101.7814,-2.9943],[101.7838,-2.9877],[101.7887,-2.9851],[101.792,-2.9798],[101.7897,-2.9698],[101.784,-2.9637],[101.7835,-2.9547],[101.7854,-2.9509],[101.7846,-2.9375],[101.7859,-2.9345],[101.792,-2.9313],[101.7983,-2.9309],[101.8026,-2.9222],[101.8026,-2.9133],[101.8042,-2.899],[101.8027,-2.8887],[101.8093,-2.8721],[101.8204,-2.8638],[101.8288,-2.8532],[101.8363,-2.8476],[101.8408,-2.8382],[101.8499,-2.8293],[101.8529,-2.8193],[101.8536,-2.8122],[101.8582,-2.8073],[101.8661,-2.789],[101.8661,-2.7845],[101.8628,-2.7792],[101.8635,-2.7679],[101.8594,-2.7548],[101.858,-2.7448],[101.8604,-2.7303],[101.8577,-2.7276],[101.8556,-2.7169],[101.8464,-2.7053],[101.8359,-2.6976],[101.8242,-2.6967],[101.8146,-2.69],[101.8174,-2.6833],[101.8153,-2.6729],[101.8134,-2.6712],[101.8068,-2.6716],[101.7978,-2.6677],[101.7957,-2.6647],[101.7867,-2.6588],[101.7801,-2.6531],[101.7746,-2.6503],[101.7683,-2.6441],[101.7624,-2.6306],[101.7585,-2.6293],[101.7513,-2.619],[101.7411,-2.6144],[101.735,-2.6092],[101.7297,-2.5983],[101.7264,-2.5957],[101.7204,-2.5869],[101.7086,-2.5757],[101.7025,-2.5653],[101.6929,-2.5545],[101.6823,-2.5449],[101.6758,-2.5328],[101.6691,-2.5296],[101.6581,-2.5284],[101.6502,-2.5304],[101.6411,-2.5428],[101.6211,-2.5474],[101.612,-2.5481],[101.6056,-2.5385],[101.6007,-2.5371],[101.5879,-2.5445],[101.5785,-2.5439],[101.5701,-2.5464],[101.5645,-2.5515],[101.5628,-2.5637],[101.5594,-2.5691],[101.5531,-2.5718],[101.5466,-2.5706],[101.5424,-2.5633],[101.5416,-2.5552],[101.5437,-2.5401],[101.5453,-2.522],[101.5482,-2.5089],[101.547,-2.5052],[101.5492,-2.4949],[101.5564,-2.4886],[101.5568,-2.4807],[101.5591,-2.4753],[101.5581,-2.4687],[101.5616,-2.4625],[101.5608,-2.4559],[101.5575,-2.4504],[101.5523,-2.4455],[101.5294,-2.4323],[101.5123,-2.4233],[101.4944,-2.4152],[101.4851,-2.4098],[101.4545,-2.3902],[101.4486,-2.3867],[101.4365,-2.3744],[101.4254,-2.3722],[101.419,-2.3699],[101.4153,-2.366],[101.3896,-2.3494],[101.3807,-2.3444],[101.3609,-2.3312],[101.3385,-2.3174],[101.3195,-2.3046],[101.303,-2.2928],[101.2855,-2.2768]]}},{"type":"Feature","properties":{"mhid":"1332:126","alt_name":"KABUPATEN LEBONG","latitude":-3.24278,"longitude":102.3349,"sample_value":658},"geometry":{"type":"LineString","coordinates":[[102.068,-2.7679],[102.0514,-2.7648],[102.0289,-2.7567],[102.0191,-2.75],[102.0154,-2.7442],[102.0051,-2.7376],[102.0032,-2.7341],[101.9975,-2.7306],[101.9901,-2.7231],[101.9814,-2.7232],[101.963,-2.7257],[101.9532,-2.7348],[101.9437,-2.7338],[101.933,-2.7303],[101.9286,-2.7316],[101.9219,-2.7368],[101.9253,-2.7424],[101.9288,-2.7576],[101.9326,-2.765],[101.9422,-2.7714],[101.9466,-2.7757],[101.9489,-2.7813],[101.9503,-2.791],[101.9538,-2.7953],[101.9577,-2.8033],[101.9628,-2.8096],[101.9641,-2.8155],[101.9788,-2.8326],[101.9906,-2.8415],[101.9996,-2.8436],[102.0044,-2.848],[102.0099,-2.8575],[102.0111,-2.8632],[102.0106,-2.8712],[102.0082,-2.8846],[102.0106,-2.8931],[102.0177,-2.9028],[102.0293,-2.9129],[102.0337,-2.9226],[102.0391,-2.954],[102.0389,-2.9596],[102.0417,-2.9738],[102.049,-2.983],[102.0595,-2.9891],[102.0666,-2.992],[102.0769,-2.9939],[102.0836,-2.9986],[102.0845,-3.004],[102.0927,-3.0102],[102.0954,-3.0167],[102.1017,-3.0236],[102.1043,-3.0296],[102.104,-3.0372],[102.1107,-3.0474],[102.1164,-3.0518],[102.1279,-3.0589],[102.1345,-3.0644],[102.1393,-3.0719],[102.1427,-3.0816],[102.1426,-3.0899],[102.1387,-3.0987],[102.1381,-3.1039],[102.1421,-3.1088],[102.1403,-3.1198],[102.1346,-3.1275],[102.1326,-3.1336],[102.1361,-3.1392],[102.1362,-3.1445],[102.1323,-3.1506],[102.1289,-3.1636],[102.1263,-3.1705],[102.1272,-3.1763],[102.1329,-3.1857],[102.1433,-3.1992],[102.1536,-3.2194],[102.1602,-3.2267],[102.1647,-3.2287],[102.1721,-3.2279],[102.1918,-3.2186],[102.1987,-3.2217],[102.206,-3.2214],[102.2094,-3.2248],[102.2163,-3.2279],[102.2222,-3.2376],[102.2272,-3.242],[102.2362,-3.2464],[102.2426,-3.2556],[102.2493,-3.262],[102.2622,-3.2685],[102.2708,-3.2767],[102.2864,-3.279],[102.2914,-3.2841],[102.2923,-3.3006],[102.2948,-3.3058],[102.2983,-3.3215],[102.2972,-3.3246],[102.286,-3.3321],[102.2802,-3.3373],[102.2759,-3.347],[102.2734,-3.3579],[102.2751,-3.361],[102.2922,-3.3642],[102.3007,-3.3684],[102.315,-3.3727],[102.3213,-3.3718],[102.3425,-3.3737],[102.3529,-3.3727],[102.3593,-3.3732],[102.3761,-3.382],[102.3804,-3.3748],[102.3824,-3.3655],[102.3869,-3.3578],[102.3929,-3.3547],[102.3991,-3.3564],[102.4074,-3.3566],[102.4168,-3.3586],[102.4236,-3.3581],[102.4321,-3.3521],[102.4412,-3.3473],[102.4426,-3.341],[102.4474,-3.3376],[102.4446,-3.3313],[102.4503,-3.3288],[102.4486,-3.3208],[102.4557,-3.3194],[102.4614,-3.3217],[102.4753,-3.3214],[102.4847,-3.3262],[102.4898,-3.3262],[102.4924,-3.3225],[102.4975,-3.32],[102.5003,-3.3154],[102.5009,-3.3097],[102.4952,-3.3021],[102.489,-3.2967],[102.487,-3.2839],[102.4887,-3.2785],[102.4946,-3.268],[102.4939,-3.2603],[102.4981,-3.2601],[102.4973,-3.2554],[102.4928,-3.2512],[102.492,-3.2443],[102.4898,-3.2394],[102.4947,-3.2323],[102.4949,-3.2287],[102.5003,-3.2221],[102.5041,-3.2197],[102.5057,-3.2152],[102.5027,-3.2107],[102.489,-3.2079],[102.487,-3.2014],[102.4904,-3.1969],[102.4923,-3.1903],[102.491,-3.1776],[102.493,-3.1722],[102.4938,-3.1642],[102.489,-3.1566],[102.4888,-3.1432],[102.4925,-3.1359],[102.4891,-3.1309],[102.4883,-3.1219],[102.4858,-3.1158],[102.4881,-3.1103],[102.4863,-3.1079],[102.4809,-3.1022],[102.4735,-3.0919],[102.4675,-3.0801],[102.4523,-3.0704],[102.4453,-3.0624],[102.4356,-3.0552],[102.422,-3.0542],[102.4103,-3.0542],[102.4032,-3.0526],[102.3899,-3.0443],[102.3856,-3.045],[102.3743,-3.0496],[102.3704,-3.0552],[102.3641,-3.0551],[102.3523,-3.0585],[102.3492,-3.0617],[102.3395,-3.0623],[102.326,-3.0671],[102.3205,-3.0698],[102.3148,-3.069],[102.314,-3.0657],[102.3076,-3.0567],[102.2959,-3.048],[102.2919,-3.0428],[102.2836,-3.038],[102.2732,-3.0377],[102.2675,-3.0409],[102.2659,-3.0385],[102.2569,-3.0368],[102.2528,-3.031],[102.2463,-3.0249],[102.2438,-3.0139],[102.2443,-3.0104],[102.2419,-3.0039],[102.2374,-2.9973],[102.235,-2.9809],[102.2342,-2.9686],[102.231,-2.9628],[102.2285,-2.9472],[102.2245,-2.9464],[102.2228,-2.9415],[102.2245,-2.9382],[102.2245,-2.9291],[102.2124,-2.9207],[102.2098,-2.9168],[102.2016,-2.9166],[102.1983,-2.919],[102.1937,-2.918],[102.186,-2.9083],[102.1822,-2.9012],[102.1705,-2.8965],[102.1636,-2.8958],[102.1552,-2.8869],[102.1482,-2.8811],[102.1329,-2.8758],[102.1347,-2.8668],[102.1302,-2.8571],[102.1303,-2.8364],[102.1207,-2.8293],[102.1143,-2.8164],[102.1008,-2.8105],[102.0955,-2.8109],[102.0873,-2.804],[102.0809,-2.802],[102.0723,-2.7934],[102.0713,-2.7833],[102.0674,-2.7691],[102.068,-2.7679]]}},{"type":"Feature","properties":{"mhid":"1332:127","alt_name":"KABUPATEN KEPAHIANG","latitude":-3.60194,"longitude":102.56424,"sample_value":711},"geometry":{"type":"LineString","coordinates":[[102.8102,-3.5301],[102.7964,-3.5374],[102.7849,-3.5407],[102.7749,-3.5469],[102.751,-3.5432],[102.7295,-3.5512],[102.7222,-3.5526],[102.7069,-3.5473],[102.6875,-3.5463],[102.6824,-3.5479],[102.6848,-3.5396],[102.6691,-3.5397],[102.6634,-3.5383],[102.6615,-3.5421],[102.655,-3.5407],[102.6375,-3.5326],[102.6307,-3.5231],[102.6282,-3.5164],[102.6246,-3.5164],[102.601,-3.5259],[102.5942,-3.5256],[102.5837,-3.5178],[102.5656,-3.5077],[102.5416,-3.5],[102.5331,-3.4961],[102.5185,-3.4961],[102.5005,-3.5008],[102.4976,-3.5068],[102.4969,-3.5136],[102.4872,-3.5161],[102.4809,-3.5197],[102.472,-3.5309],[102.4659,-3.5321],[102.4555,-3.5293],[102.4507,-3.5301],[102.4429,-3.5275],[102.4431,-3.535],[102.4466,-3.5401],[102.4564,-3.549],[102.4786,-3.5527],[102.5,-3.5739],[102.503,-3.5759],[102.5073,-3.5834],[102.5118,-3.5864],[102.5141,-3.5943],[102.5127,-3.6019],[102.5192,-3.6125],[102.5132,-3.6212],[102.5174,-3.627],[102.524,-3.6312],[102.5286,-3.6438],[102.5275,-3.6546],[102.5283,-3.6569],[102.5429,-3.6593],[102.5528,-3.6626],[102.5529,-3.6702],[102.5635,-3.6786],[102.5759,-3.6821],[102.5772,-3.6835],[102.5754,-3.6951],[102.5787,-3.7048],[102.5783,-3.7139],[102.5804,-3.7225],[102.5827,-3.7402],[102.5922,-3.7557],[102.6065,-3.7812],[102.6106,-3.7976],[102.6143,-3.8005],[102.6186,-3.8011],[102.6237,-3.795],[102.6418,-3.7933],[102.6488,-3.7877],[102.6559,-3.7718],[102.6616,-3.7718],[102.6712,-3.7682],[102.7083,-3.7571],[102.7136,-3.7551],[102.7388,-3.7476],[102.7393,-3.74],[102.7376,-3.7218],[102.742,-3.7095],[102.7506,-3.6709],[102.7537,-3.6639],[102.76,-3.6541],[102.7664,-3.6425],[102.7722,-3.6378],[102.7767,-3.636],[102.7797,-3.6316],[102.798,-3.6263],[102.7999,-3.6218],[102.8088,-3.6083],[102.8057,-3.5988],[102.7994,-3.5892],[102.7954,-3.5874],[102.7946,-3.5813],[102.7961,-3.5732],[102.8022,-3.5636],[102.8063,-3.5611],[102.8101,-3.5558],[102.8126,-3.5457],[102.8121,-3.5345],[102.8102,-3.5301]]}},{"type":"Feature","properties":{"mhid":"1332:128","alt_name":"KABUPATEN BENGKULU TENGAH","latitude":-3.20679,"longitude":102.12616,"sample_value":485},"geometry":{"type":"LineString","coordinates":[[102.6143,-3.8005],[102.6106,-3.7976],[102.6065,-3.7812],[102.5922,-3.7557],[102.5827,-3.7402],[102.5804,-3.7225],[102.5783,-3.7139],[102.5787,-3.7048],[102.5754,-3.6951],[102.5772,-3.6835],[102.5759,-3.6821],[102.5635,-3.6786],[102.5529,-3.6702],[102.5528,-3.6626],[102.5429,-3.6593],[102.5283,-3.6569],[102.5275,-3.6546],[102.5286,-3.6438],[102.524,-3.6312],[102.5174,-3.627],[102.5132,-3.6212],[102.5192,-3.6125],[102.5127,-3.6019],[102.5141,-3.5943],[102.5118,-3.5864],[102.5073,-3.5834],[102.503,-3.5759],[102.5,-3.5739],[102.4786,-3.5527],[102.4564,-3.549],[102.4466,-3.5401],[102.4431,-3.535],[102.4429,-3.5275],[102.4292,-3.5108],[102.4274,-3.4999],[102.4217,-3.494],[102.4037,-3.5081],[102.3833,-3.52],[102.3733,-3.5212],[102.3546,-3.5253],[102.3442,-3.5267],[102.3357,-3.5303],[102.3266,-3.5373],[102.3115,-3.5525],[102.2915,-3.563],[102.2813,-3.5733],[102.2722,-3.5842],[102.2675,-3.5918],[102.2598,-3.5927],[102.2452,-3.5921],[102.236,-3.5934],[102.226,-3.5966],[102.2204,-3.6046],[102.2123,-3.6322],[102.2096,-3.6466],[102.2055,-3.6537],[102.2139,-3.6593],[102.2226,-3.6673],[102.2289,-3.676],[102.2349,-3.6823],[102.2436,-3.6963],[102.2451,-3.7059],[102.236,-3.7114],[102.233,-3.7155],[102.2375,-3.7224],[102.2455,-3.7308],[102.2501,-3.7384],[102.2549,-3.7368],[102.2622,-3.7313],[102.2754,-3.7272],[102.2817,-3.7367],[102.2886,-3.7415],[102.2973,-3.7402],[102.3041,-3.7351],[102.3141,-3.7315],[102.3279,-3.7308],[102.3317,-3.7319],[102.3329,-3.7429],[102.3331,-3.7581],[102.3353,-3.7723],[102.34,-3.7831],[102.346,-3.7924],[102.3498,-3.7961],[102.3553,-3.8067],[102.3562,-3.8146],[102.3586,-3.8219],[102.3628,-3.8285],[102.3601,-3.8312],[102.358,-3.8383],[102.3637,-3.8447],[102.3838,-3.8568],[102.3982,-3.8582],[102.406,-3.861],[102.4103,-3.8614],[102.4273,-3.855],[102.4345,-3.8485],[102.438,-3.847],[102.46,-3.8479],[102.4725,-3.8464],[102.4791,-3.8439],[102.4916,-3.8374],[102.498,-3.8389],[102.5107,-3.8385],[102.5172,-3.8368],[102.5329,-3.8296],[102.5454,-3.8326],[102.5522,-3.8355],[102.5542,-3.8337],[102.556,-3.8212],[102.5592,-3.8176],[102.5613,-3.8091],[102.5635,-3.8068],[102.5735,-3.8029],[102.5767,-3.8059],[102.5856,-3.8049],[102.6068,-3.8102],[102.6094,-3.8034],[102.6143,-3.8005]]}},{"type":"Feature","properties":{"mhid":"1332:129","alt_name":"KOTA BENGKULU","latitude":-3.81667,"longitude":102.31667,"sample_value":502},"geometry":{"type":"LineString","coordinates":[[102.406,-3.861],[102.3982,-3.8582],[102.3838,-3.8568],[102.3637,-3.8447],[102.358,-3.8383],[102.3601,-3.8312],[102.3628,-3.8285],[102.3586,-3.8219],[102.3562,-3.8146],[102.3553,-3.8067],[102.3498,-3.7961],[102.346,-3.7924],[102.34,-3.7831],[102.3353,-3.7723],[102.3331,-3.7581],[102.3329,-3.7429],[102.3317,-3.7319],[102.3279,-3.7308],[102.3141,-3.7315],[102.3041,-3.7351],[102.2973,-3.7402],[102.2886,-3.7415],[102.2817,-3.7367],[102.2754,-3.7272],[102.2622,-3.7313],[102.2549,-3.7368],[102.2501,-3.7384],[102.2586,-3.7545],[102.2623,-3.7677],[102.2612,-3.7805],[102.2563,-3.7854],[102.2517,-3.7843],[102.2473,-3.787],[102.2476,-3.7926],[102.2537,-3.8015],[102.2674,-3.8138],[102.2723,-3.8193],[102.2781,-3.8295],[102.2873,-3.839],[102.2926,-3.8463],[102.3013,-3.8659],[102.3031,-3.8829],[102.3012,-3.89],[102.2988,-3.8933],[102.2876,-3.9018],[102.2817,-3.9008],[102.2755,-3.897],[102.2724,-3.9057],[102.2656,-3.9121],[102.2651,-3.916],[102.2691,-3.9237],[102.277,-3.9331],[102.2875,-3.9396],[102.3039,-3.9417],[102.3104,-3.9363],[102.3107,-3.9298],[102.3158,-3.9229],[102.3134,-3.9155],[102.3185,-3.9105],[102.333,-3.9099],[102.3478,-3.9006],[102.3444,-3.8912],[102.3472,-3.8867],[102.3532,-3.8834],[102.3607,-3.8862],[102.3632,-3.8797],[102.3706,-3.8828],[102.3775,-3.8828],[102.3823,-3.8775],[102.3852,-3.8767],[102.3879,-3.8713],[102.3932,-3.8683],[102.3981,-3.8626],[102.406,-3.861]]}},{"type":"Feature","properties":{"mhid":"1332:130","alt_name":"KABUPATEN LAMPUNG BARAT","latitude":-5.14904,"longitude":104.19309,"sample_value":64},"geometry":{"type":"LineString","coordinates":[[103.8662,-4.8721],[103.8653,-4.8682],[103.8663,-4.8482],[103.8637,-4.8441],[103.854,-4.8353],[103.8487,-4.8274],[103.8401,-4.8216],[103.8237,-4.8208],[103.8227,-4.8175],[103.8228,-4.8066],[103.8258,-4.8013],[103.8094,-4.7938],[103.8022,-4.7924],[103.7895,-4.794],[103.7868,-4.7927],[103.7825,-4.7957],[103.779,-4.795],[103.7766,-4.7893],[103.7767,-4.7814],[103.7739,-4.7733],[103.7675,-4.7726],[103.7614,-4.7751],[103.7571,-4.7756],[103.7503,-4.7794],[103.7424,-4.7796],[103.7384,-4.7857],[103.7313,-4.7866],[103.7284,-4.7921],[103.718,-4.7936],[103.712,-4.8057],[103.7089,-4.8076],[103.7082,-4.8142],[103.703,-4.8191],[103.6883,-4.8265],[103.6844,-4.8295],[103.6789,-4.8309],[103.6768,-4.8357],[103.6678,-4.839],[103.6636,-4.8384],[103.6568,-4.8437],[103.6544,-4.8486],[103.6498,-4.8482],[103.6445,-4.8516],[103.6365,-4.8493],[103.634,-4.8531],[103.6234,-4.8595],[103.6227,-4.8646],[103.6158,-4.87],[103.6086,-4.87],[103.602,-4.8678],[103.5966,-4.8764],[103.5956,-4.882],[103.5919,-4.8849],[103.594,-4.8913],[103.5898,-4.9],[103.5796,-4.9108],[103.5713,-4.9261],[103.5805,-4.9254],[103.5843,-4.9239],[103.596,-4.9242],[103.6245,-4.9276],[103.6288,-4.9306],[103.6399,-4.9333],[103.6419,-4.9373],[103.6497,-4.937],[103.6586,-4.929],[103.6587,-4.9206],[103.6763,-4.9111],[103.6859,-4.9088],[103.6919,-4.9059],[103.6936,-4.903],[103.7111,-4.9041],[103.7319,-4.9089],[103.7419,-4.9161],[103.7516,-4.9184],[103.7541,-4.9212],[103.7535,-4.9275],[103.7578,-4.9296],[103.7675,-4.9386],[103.7722,-4.9446],[103.7754,-4.9423],[103.783,-4.9403],[103.7932,-4.9351],[103.7929,-4.9006],[103.8007,-4.8881],[103.8063,-4.8808],[103.8176,-4.8753],[103.8189,-4.8909],[103.8201,-4.9062],[103.8271,-4.9139],[103.8373,-4.9178],[103.8424,-4.9243],[103.8525,-4.9412],[103.8582,-4.9419],[103.8602,-4.9464],[103.8588,-4.9499],[103.8644,-4.9574],[103.8728,-4.9649],[103.8828,-4.9613],[103.8897,-4.9604],[103.8959,-4.967],[103.9214,-4.9757],[103.9316,-4.9828],[103.939,-4.9768],[103.9406,-4.9773],[103.9566,-4.9936],[103.9741,-4.9976],[103.9766,-4.9997],[103.9839,-5.0034],[103.9958,-5.0159],[104.0033,-5.0199],[104.0121,-5.0245],[104.0182,-5.0335],[104.0227,-5.0438],[104.0218,-5.0496],[104.0189,-5.0531],[104.0174,-5.07],[104.0128,-5.0749],[104.0088,-5.0821],[104.0114,-5.0857],[104.0168,-5.093],[104.0204,-5.0898],[104.0274,-5.0847],[104.0344,-5.0843],[104.0369,-5.0857],[104.0433,-5.0907],[104.0583,-5.0921],[104.0793,-5.1092],[104.0831,-5.1159],[104.0793,-5.1286],[104.0836,-5.141],[104.0882,-5.1466],[104.0974,-5.1547],[104.1089,-5.1623],[104.1209,-5.1739],[104.1301,-5.1813],[104.1447,-5.1909],[104.1741,-5.1986],[104.2006,-5.2021],[104.2039,-5.2032],[104.2152,-5.2121],[104.2227,-5.2193],[104.2306,-5.2288],[104.2438,-5.2465],[104.2476,-5.2533],[104.2537,-5.2589],[104.2585,-5.2761],[104.2615,-5.2828],[104.2764,-5.296],[104.2795,-5.3034],[104.2865,-5.3144],[104.2946,-5.3204],[104.3012,-5.3269],[104.3094,-5.337],[104.3171,-5.3471],[104.3259,-5.3492],[104.332,-5.3546],[104.3337,-5.3695],[104.3423,-5.3753],[104.349,-5.3816],[104.3793,-5.3373],[104.3818,-5.3297],[104.3872,-5.2921],[104.3948,-5.2513],[104.396,-5.2332],[104.4014,-5.2292],[104.4102,-5.2032],[104.4015,-5.1841],[104.4042,-5.1742],[104.4076,-5.1704],[104.4221,-5.1722],[104.4331,-5.1714],[104.4391,-5.1745],[104.4383,-5.1665],[104.4406,-5.1627],[104.453,-5.1545],[104.4611,-5.1502],[104.4746,-5.1458],[104.4812,-5.1412],[104.4906,-5.1307],[104.4993,-5.1283],[104.5018,-5.1245],[104.5108,-5.119],[104.5159,-5.1173],[104.5246,-5.1107],[104.533,-5.1071],[104.5379,-5.1029],[104.546,-5.0926],[104.5589,-5.0806],[104.5653,-5.07],[104.5766,-5.0644],[104.5804,-5.0576],[104.5796,-5.0536],[104.5728,-5.0432],[104.5695,-5.0237],[104.5646,-5.0247],[104.5593,-5.0199],[104.5526,-5.0204],[104.5477,-5.0181],[104.5364,-5.0155],[104.5351,-5.0203],[104.5318,-5.0223],[104.5255,-5.0228],[104.5142,-5.022],[104.5047,-5.0193],[104.4995,-5.0166],[104.4992,-5.0088],[104.4966,-5.0045],[104.4999,-4.9982],[104.4994,-4.9858],[104.5015,-4.9792],[104.4969,-4.9725],[104.5017,-4.9583],[104.5009,-4.955],[104.4988,-4.9431],[104.487,-4.9375],[104.48,-4.9324],[104.4725,-4.9325],[104.4659,-4.9345],[104.4594,-4.9401],[104.4434,-4.9449],[104.4412,-4.9393],[104.4374,-4.9362],[104.437,-4.9294],[104.4404,-4.9203],[104.4382,-4.917],[104.4288,-4.9119],[104.4224,-4.9039],[104.4193,-4.8922],[104.4196,-4.8822],[104.4175,-4.8748],[104.4101,-4.8653],[104.4072,-4.8683],[104.3936,-4.8721],[104.3858,-4.8729],[104.3817,-4.8697],[104.3681,-4.8707],[104.3654,-4.869],[104.3594,-4.87],[104.3528,-4.8746],[104.348,-4.8697],[104.3435,-4.869],[104.3405,-4.8648],[104.33,-4.8741],[104.313,-4.8839],[104.3036,-4.8804],[104.299,-4.873],[104.2933,-4.869],[104.2918,-4.8631],[104.2934,-4.86],[104.2866,-4.8557],[104.2812,-4.8568],[104.2784,-4.8627],[104.2785,-4.8692],[104.2727,-4.8749],[104.2673,-4.8774],[104.2629,-4.8771],[104.2564,-4.8799],[104.2441,-4.8817],[104.2385,-4.8782],[104.2294,-4.8673],[104.2205,-4.8603],[104.2151,-4.8585],[104.2046,-4.862],[104.1952,-4.862],[104.193,-4.8647],[104.1895,-4.8829],[104.1863,-4.892],[104.1759,-4.9061],[104.1662,-4.9159],[104.1627,-4.922],[104.1521,-4.9253],[104.1325,-4.922],[104.1222,-4.9239],[104.1075,-4.9231],[104.0978,-4.919],[104.0885,-4.9166],[104.0807,-4.9117],[104.0785,-4.912],[104.0706,-4.9071],[104.069,-4.9003],[104.0652,-4.8927],[104.0576,-4.89],[104.0514,-4.8938],[104.0473,-4.9009],[104.034,-4.9025],[104.0189,-4.9054],[104.0138,-4.9079],[104.006,-4.9075],[103.9722,-4.9103],[103.9598,-4.9109],[103.9472,-4.8978],[103.9434,-4.8972],[103.9337,-4.9006],[103.9283,-4.9164],[103.9254,-4.9175],[103.9226,-4.9126],[103.918,-4.9116],[103.9147,-4.9142],[103.9137,-4.9202],[103.9188,-4.9279],[103.9242,-4.9309],[103.9186,-4.9367],[103.9228,-4.9435],[103.9194,-4.9472],[103.9192,-4.9538],[103.9149,-4.958],[103.9092,-4.9529],[103.9009,-4.9476],[103.8999,-4.9417],[103.8904,-4.9361],[103.888,-4.9304],[103.8811,-4.9264],[103.8614,-4.9267],[103.8525,-4.9233],[103.8512,-4.9192],[103.8577,-4.91],[103.8647,-4.9044],[103.8624,-4.9005],[103.8645,-4.8944],[103.8749,-4.8841],[103.8721,-4.8781],[103.8662,-4.8721]]}},{"type":"Feature","properties":{"mhid":"1332:146","alt_name":"KABUPATEN BANGKA","latitude":-1.91667,"longitude":105.93333,"sample_value":243},"geometry":{"type":"LineString","coordinates":[[105.8169,-1.8049],[105.8132,-1.7958],[105.8083,-1.7949],[105.8053,-1.8003],[105.8058,-1.8054],[105.8093,-1.8065],[105.8169,-1.8049]]}},{"type":"Feature","properties":{"mhid":"1332:146","alt_name":"KABUPATEN BANGKA","latitude":-1.91667,"longitude":105.93333,"sample_value":243},"geometry":{"type":"LineString","coordinates":[[105.7592,-2.1438],[105.759,-2.1509],[105.7712,-2.1581],[105.7747,-2.1576],[105.7809,-2.1605],[105.7899,-2.173],[105.793,-2.1807],[105.7941,-2.1951],[105.7864,-2.2107],[105.7875,-2.2173],[105.7929,-2.2281],[105.7905,-2.2292],[105.786,-2.2364],[105.7862,-2.2428],[105.7884,-2.2538],[105.7961,-2.2633],[105.7988,-2.27],[105.8037,-2.2727],[105.8102,-2.2819],[105.812,-2.2961],[105.8229,-2.3038],[105.8256,-2.3084],[105.8258,-2.3185],[105.8246,-2.3291],[105.8206,-2.3379],[105.8133,-2.3432],[105.8056,-2.3614],[105.8024,-2.3634],[105.806,-2.3701],[105.822,-2.3607],[105.8277,-2.3536],[105.8303,-2.3477],[105.8369,-2.3482],[105.8432,-2.3455],[105.8457,-2.3393],[105.858,-2.339],[105.8656,-2.3336],[105.8752,-2.333],[105.8841,-2.3347],[105.8883,-2.3385],[105.9,-2.3387],[105.902,-2.3279],[105.9068,-2.3199],[105.9135,-2.3113],[105.92,-2.3071],[105.9215,-2.3034],[105.9204,-2.2983],[105.9222,-2.293],[105.9217,-2.2863],[105.9289,-2.2753],[105.9231,-2.2736],[105.9204,-2.2649],[105.9118,-2.2501],[105.913,-2.2457],[105.9193,-2.2432],[105.9187,-2.2281],[105.9227,-2.2251],[105.9237,-2.22],[105.9231,-2.2114],[105.9263,-2.2084],[105.9277,-2.2166],[105.9334,-2.2211],[105.9399,-2.2227],[105.9449,-2.2263],[105.9526,-2.2407],[105.9589,-2.2455],[105.9645,-2.2454],[105.972,-2.2418],[105.9776,-2.2415],[105.9754,-2.2309],[105.9862,-2.2255],[105.992,-2.2215],[106.0142,-2.2172],[106.0208,-2.2144],[106.021,-2.2076],[106.0306,-2.1979],[106.0381,-2.1942],[106.0394,-2.1861],[106.0446,-2.1845],[106.0513,-2.1785],[106.0556,-2.1695],[106.0681,-2.1681],[106.0736,-2.1629],[106.074,-2.1557],[106.0781,-2.151],[106.0889,-2.1445],[106.0891,-2.1359],[106.0822,-2.1274],[106.0652,-2.1252],[106.0557,-2.1186],[106.0401,-2.113],[106.0413,-2.1092],[106.0454,-2.1063],[106.0488,-2.0983],[106.043,-2.0951],[106.0413,-2.0913],[106.0423,-2.0852],[106.0407,-2.0796],[106.0452,-2.0751],[106.0511,-2.0769],[106.0573,-2.0735],[106.0597,-2.067],[106.0656,-2.0694],[106.0696,-2.0748],[106.0745,-2.0763],[106.0865,-2.0771],[106.0974,-2.0753],[106.1033,-2.0787],[106.1077,-2.0776],[106.1081,-2.0727],[106.1032,-2.0728],[106.1061,-2.0661],[106.1105,-2.0707],[106.1159,-2.0678],[106.1259,-2.0595],[106.131,-2.0575],[106.1346,-2.0607],[106.141,-2.0716],[106.1412,-2.0786],[106.1357,-2.0848],[106.1276,-2.0897],[106.1277,-2.0945],[106.132,-2.0976],[106.1358,-2.0971],[106.1477,-2.0833],[106.1513,-2.0826],[106.158,-2.088],[106.1623,-2.076],[106.1635,-2.0679],[106.1623,-2.0591],[106.1589,-2.044],[106.1583,-2.0348],[106.1548,-2.026],[106.1554,-2.0206],[106.1501,-1.9942],[106.153,-1.9771],[106.1559,-1.9664],[106.1556,-1.9596],[106.1622,-1.9534],[106.1642,-1.9322],[106.1657,-1.9301],[106.1669,-1.9202],[106.1729,-1.9193],[106.174,-1.9136],[106.1841,-1.9075],[106.186,-1.9028],[106.1858,-1.8956],[106.1759,-1.8873],[106.1722,-1.8738],[106.1624,-1.8704],[106.158,-1.8708],[106.1505,-1.8681],[106.1412,-1.8595],[106.1348,-1.8551],[106.1282,-1.8424],[106.1218,-1.8326],[106.1189,-1.8217],[106.1191,-1.8146],[106.1282,-1.8043],[106.1257,-1.8012],[106.1141,-1.7983],[106.1025,-1.7894],[106.0971,-1.7819],[106.0873,-1.7759],[106.0897,-1.7711],[106.0905,-1.7627],[106.0939,-1.7574],[106.0817,-1.7559],[106.0733,-1.748],[106.0691,-1.7383],[106.0641,-1.7294],[106.0617,-1.717],[106.058,-1.7131],[106.0413,-1.7002],[106.0343,-1.691],[106.0302,-1.6827],[106.024,-1.6666],[106.021,-1.6525],[106.0223,-1.6358],[106.0278,-1.6201],[106.0329,-1.6144],[106.0391,-1.6161],[106.0441,-1.6135],[106.048,-1.6178],[106.053,-1.6197],[106.0516,-1.6063],[106.048,-1.6007],[106.0382,-1.5971],[106.032,-1.5931],[106.0283,-1.5876],[106.0222,-1.587],[106.018,-1.5816],[106.0106,-1.578],[106.0054,-1.5689],[106.0016,-1.5697],[105.9985,-1.5667],[105.988,-1.5623],[105.9862,-1.5572],[105.98,-1.553],[105.9736,-1.5508],[105.9659,-1.5573],[105.9572,-1.5567],[105.9521,-1.5597],[105.9317,-1.552],[105.9217,-1.5458],[105.9174,-1.5417],[105.9113,-1.5386],[105.9095,-1.5335],[105.9126,-1.5229],[105.9203,-1.5219],[105.921,-1.5091],[105.9163,-1.502],[105.9111,-1.5064],[105.8998,-1.5056],[105.8884,-1.5019],[105.8832,-1.5022],[105.8878,-1.5117],[105.8799,-1.5196],[105.8719,-1.5218],[105.8534,-1.5234],[105.8455,-1.5224],[105.8321,-1.5261],[105.826,-1.5289],[105.8147,-1.5315],[105.7933,-1.5325],[105.757,-1.5323],[105.7381,-1.5308],[105.7228,-1.5284],[105.7045,-1.5284],[105.7026,-1.5308],[105.7195,-1.5426],[105.7222,-1.5501],[105.7204,-1.5616],[105.7227,-1.5635],[105.7195,-1.5791],[105.7197,-1.5834],[105.7237,-1.5866],[105.7318,-1.5986],[105.7336,-1.6036],[105.7396,-1.6087],[105.7417,-1.6206],[105.7359,-1.6247],[105.7331,-1.6316],[105.7384,-1.6355],[105.7446,-1.6341],[105.7532,-1.6373],[105.7595,-1.6477],[105.7664,-1.6502],[105.7593,-1.6531],[105.7615,-1.6606],[105.7574,-1.6761],[105.7535,-1.6816],[105.7422,-1.6834],[105.74,-1.6865],[105.7431,-1.6945],[105.7485,-1.6998],[105.7466,-1.7032],[105.7528,-1.7158],[105.7542,-1.7276],[105.7643,-1.7364],[105.7707,-1.7376],[105.7742,-1.7423],[105.779,-1.744],[105.7781,-1.7481],[105.7822,-1.7497],[105.787,-1.7546],[105.7922,-1.7623],[105.7928,-1.7707],[105.7952,-1.7803],[105.7996,-1.7841],[105.8152,-1.79],[105.8261,-1.8033],[105.825,-1.8069],[105.8129,-1.807],[105.8172,-1.8114],[105.8094,-1.8142],[105.8026,-1.8108],[105.8013,-1.8082],[105.7881,-1.8083],[105.7847,-1.8064],[105.7799,-1.7985],[105.7797,-1.7916],[105.7825,-1.7861],[105.7808,-1.7831],[105.779,-1.7735],[105.7758,-1.7682],[105.7707,-1.767],[105.7566,-1.7749],[105.7457,-1.7778],[105.7442,-1.7823],[105.7481,-1.7876],[105.7544,-1.7906],[105.7565,-1.7947],[105.7552,-1.7994],[105.7506,-1.8022],[105.7534,-1.8072],[105.7594,-1.8078],[105.7605,-1.8161],[105.7562,-1.8166],[105.7526,-1.8204],[105.7466,-1.8201],[105.7448,-1.8292],[105.7462,-1.8321],[105.7525,-1.8353],[105.7537,-1.8406],[105.7474,-1.855],[105.7478,-1.8615],[105.7408,-1.8678],[105.7346,-1.8708],[105.7261,-1.879],[105.7216,-1.8893],[105.7127,-1.8954],[105.7044,-1.895],[105.6973,-1.9064],[105.7058,-1.9113],[105.7064,-1.9132],[105.7021,-1.9216],[105.7029,-1.9252],[105.7129,-1.937],[105.717,-1.9448],[105.7319,-1.9405],[105.7407,-1.9386],[105.7456,-1.9448],[105.75,-1.9551],[105.7512,-1.9738],[105.757,-1.9793],[105.7626,-1.9816],[105.7746,-1.9889],[105.7779,-1.9939],[105.7858,-1.9959],[105.774,-2.0013],[105.7703,-2.0078],[105.7699,-2.0153],[105.7708,-2.0258],[105.7687,-2.0307],[105.7641,-2.0356],[105.7614,-2.0443],[105.7526,-2.0523],[105.7542,-2.0556],[105.7503,-2.0597],[105.7501,-2.0656],[105.7563,-2.0679],[105.7583,-2.0786],[105.7509,-2.0791],[105.7523,-2.0827],[105.7489,-2.0885],[105.7525,-2.0901],[105.7526,-2.0945],[105.7557,-2.1059],[105.7598,-2.1087],[105.7651,-2.1054],[105.7689,-2.1138],[105.7658,-2.1178],[105.7605,-2.1176],[105.7607,-2.1213],[105.7665,-2.1228],[105.7651,-2.1349],[105.7618,-2.1369],[105.7592,-2.1438]]}},{"type":"Feature","properties":{"mhid":"1332:147","alt_name":"KABUPATEN BELITUNG","latitude":-2.86667,"longitude":107.7,"sample_value":339},"geometry":{"type":"LineString","coordinates":[[107.5657,-3.237],[107.5625,-3.2442],[107.5689,-3.2434],[107.5657,-3.237]]}},{"type":"Feature","properties":{"mhid":"1332:147","alt_name":"KABUPATEN BELITUNG","latitude":-2.86667,"longitude":107.7,"sample_value":339},"geometry":{"type":"LineString","coordinates":[[107.5234,-3.1924],[107.5172,-3.1978],[107.5183,-3.2097],[107.5196,-3.2378],[107.5165,-3.2455],[107.5177,-3.2531],[107.5245,-3.2527],[107.5256,-3.2459],[107.5304,-3.2464],[107.5306,-3.239],[107.5362,-3.2399],[107.5426,-3.2335],[107.5449,-3.2278],[107.5442,-3.2217],[107.5483,-3.215],[107.5515,-3.2016],[107.537,-3.2003],[107.5268,-3.1927],[107.5234,-3.1924]]}},{"type":"Feature","properties":{"mhid":"1332:147","alt_name":"KABUPATEN BELITUNG","latitude":-2.86667,"longitude":107.7,"sample_value":339},"geometry":{"type":"LineString","coordinates":[[107.8512,-3.1036],[107.8497,-3.0981],[107.8399,-3.1039],[107.8397,-3.1099],[107.8436,-3.1103],[107.848,-3.1162],[107.8512,-3.1232],[107.8562,-3.127],[107.8579,-3.1246],[107.8565,-3.1117],[107.8613,-3.1103],[107.8628,-3.1072],[107.856,-3.101],[107.8512,-3.1036]]}},{"type":"Feature","properties":{"mhid":"1332:147","alt_name":"KABUPATEN BELITUNG","latitude":-2.86667,"longitude":107.7,"sample_value":339},"geometry":{"type":"LineString","coordinates":[[107.561,-3.0548],[107.5617,-3.0482],[107.5579,-3.04],[107.555,-3.0412],[107.5577,-3.0533],[107.561,-3.0548]]}},{"type":"Feature","properties":{"mhid":"1332:147","alt_name":"KABUPATEN BELITUNG","latitude":-2.86667,"longitude":107.7,"sample_value":339},"geometry":{"type":"LineString","coordinates":[[107.4995,-3.0257],[107.4943,-3.0308],[107.4904,-3.0274],[107.4873,-3.0312],[107.4874,-3.0458],[107.4938,-3.0524],[107.4987,-3.0486],[107.5035,-3.0412],[107.5043,-3.0355],[107.4995,-3.0257]]}},{"type":"Feature","properties":{"mhid":"1332:147","alt_name":"KABUPATEN BELITUNG","latitude":-2.86667,"longitude":107.7,"sample_value":339},"geometry":{"type":"LineString","coordinates":[[107.1728,-3.0311],[107.1753,-3.0268],[107.1709,-3.0249],[107.1662,-3.0268],[107.166,-3.032],[107.1728,-3.0311]]}},{"type":"Feature","properties":{"mhid":"1332:147","alt_name":"KABUPATEN BELITUNG","latitude":-2.86667,"longitude":107.7,"sample_value":339},"geometry":{"type":"LineString","coordinates":[[107.5493,-3.0335],[107.5417,-3.0264],[107.542,-3.0323],[107.5474,-3.0397],[107.5493,-3.0335]]}},{"type":"Feature","properties":{"mhid":"1332:147","alt_name":"KABUPATEN BELITUNG","latitude":-2.86667,"longitude":107.7,"sample_value":339},"geometry":{"type":"LineString","coordinates":[[107.5085,-3.022],[107.51,-3.0177],[107.5063,-3.0026],[107.4997,-2.9993],[107.4984,-3.0059],[107.5025,-3.0128],[107.5035,-3.0174],[107.5085,-3.022]]}},{"type":"Feature","properties":{"mhid":"1332:147","alt_name":"KABUPATEN BELITUNG","latitude":-2.86667,"longitude":107.7,"sample_value":339},"geometry":{"type":"LineString","coordinates":[[107.2347,-2.9867],[107.2283,-2.9875],[107.2264,-2.9909],[107.2291,-2.9967],[107.2343,-2.9977],[107.2355,-2.9938],[107.2407,-2.9904],[107.2419,-2.9869],[107.2347,-2.9867]]}},{"type":"Feature","properties":{"mhid":"1332:147","alt_name":"KABUPATEN BELITUNG","latitude":-2.86667,"longitude":107.7,"sample_value":339},"geometry":{"type":"LineString","coordinates":[[107.1312,-2.9882],[107.1351,-2.9836],[107.1303,-2.9807],[107.1312,-2.9882]]}},{"type":"Feature","properties":{"mhid":"1332:147","alt_name":"KABUPATEN BELITUNG","latitude":-2.86667,"longitude":107.7,"sample_value":339},"geometry":{"type":"LineString","coordinates":[[107.5079,-2.9861],[107.5037,-2.9724],[107.4995,-2.9711],[107.5018,-2.9874],[107.5037,-2.9913],[107.5028,-2.9975],[107.5094,-2.9972],[107.5073,-2.9911],[107.5079,-2.9861]]}},{"type":"Feature","properties":{"mhid":"1332:147","alt_name":"KABUPATEN BELITUNG","latitude":-2.86667,"longitude":107.7,"sample_value":339},"geometry":{"type":"LineString","coordinates":[[107.5321,-2.968],[107.5199,-2.9706],[107.5161,-2.9743],[107.5176,-2.984],[107.5193,-2.9873],[107.5188,-2.9962],[107.5258,-3.0053],[107.5297,-2.9981],[107.5297,-2.9945],[107.5336,-2.9861],[107.5314,-2.9784],[107.5321,-2.968]]}},{"type":"Feature","properties":{"mhid":"1332:147","alt_name":"KABUPATEN BELITUNG","latitude":-2.86667,"longitude":107.7,"sample_value":339},"geometry":{"type":"LineString","coordinates":[[107.5151,-2.9621],[107.5139,-2.9677],[107.5165,-2.9704],[107.53,-2.9666],[107.5223,-2.9621],[107.5151,-2.9621]]}},{"type":"Feature","properties":{"mhid":"1332:147","alt_name":"KABUPATEN BELITUNG","latitude":-2.86667,"longitude":107.7,"sample_value":339},"geometry":{"type":"LineString","coordinates":[[107.5166,-2.9341],[107.5133,-2.938],[107.5175,-2.9474],[107.5258,-2.9517],[107.5304,-2.947],[107.5274,-2.9392],[107.5193,-2.9338],[107.5166,-2.9341]]}},{"type":"Feature","properties":{"mhid":"1332:147","alt_name":"KABUPATEN BELITUNG","latitude":-2.86667,"longitude":107.7,"sample_value":339},"geometry":{"type":"LineString","coordinates":[[107.469,-2.9254],[107.4646,-2.9231],[107.4487,-2.9288],[107.4358,-2.9345],[107.4323,-2.9389],[107.4266,-2.9506],[107.4254,-2.955],[107.4284,-2.9601],[107.428,-2.9706],[107.4336,-2.9741],[107.4323,-2.9793],[107.4365,-2.9841],[107.4448,-2.9848],[107.4561,-2.9789],[107.4577,-2.9726],[107.4603,-2.9728],[107.4646,-2.9672],[107.4643,-2.9567],[107.4621,-2.9536],[107.469,-2.9458],[107.4718,-2.9452],[107.469,-2.9254]]}},{"type":"Feature","properties":{"mhid":"1332:147","alt_name":"KABUPATEN BELITUNG","latitude":-2.86667,"longitude":107.7,"sample_value":339},"geometry":{"type":"LineString","coordinates":[[107.4877,-2.9303],[107.4887,-2.9214],[107.4847,-2.9209],[107.4793,-2.9329],[107.4807,-2.9409],[107.4837,-2.9443],[107.4877,-2.9303]]}},{"type":"Feature","properties":{"mhid":"1332:147","alt_name":"KABUPATEN BELITUNG","latitude":-2.86667,"longitude":107.7,"sample_value":339},"geometry":{"type":"LineString","coordinates":[[107.5063,-2.8433],[107.5016,-2.843],[107.4986,-2.8496],[107.4946,-2.8506],[107.4935,-2.8545],[107.4869,-2.8613],[107.4831,-2.8634],[107.4874,-2.8725],[107.4908,-2.8766],[107.4943,-2.8759],[107.4969,-2.862],[107.5024,-2.8569],[107.5063,-2.8433]]}},{"type":"Feature","properties":{"mhid":"1332:147","alt_name":"KABUPATEN BELITUNG","latitude":-2.86667,"longitude":107.7,"sample_value":339},"geometry":{"type":"LineString","coordinates":[[107.4898,-2.8204],[107.4843,-2.8209],[107.4781,-2.8249],[107.4811,-2.838],[107.4867,-2.8443],[107.4935,-2.828],[107.5007,-2.8251],[107.4988,-2.822],[107.4898,-2.8204]]}},{"type":"Feature","properties":{"mhid":"1332:147","alt_name":"KABUPATEN BELITUNG","latitude":-2.86667,"longitude":107.7,"sample_value":339},"geometry":{"type":"LineString","coordinates":[[107.4643,-2.8216],[107.4581,-2.8201],[107.4556,-2.8269],[107.4468,-2.8284],[107.4378,-2.8257],[107.4282,-2.8257],[107.4204,-2.8274],[107.412,-2.8345],[107.3999,-2.8377],[107.3949,-2.8442],[107.3882,-2.8495],[107.3807,-2.8476],[107.378,-2.8551],[107.371,-2.8643],[107.378,-2.876],[107.3765,-2.8824],[107.3689,-2.8847],[107.3647,-2.8807],[107.3564,-2.878],[107.3484,-2.8774],[107.3387,-2.8807],[107.3404,-2.8849],[107.3467,-2.8877],[107.3551,-2.8881],[107.355,-2.8935],[107.3574,-2.8987],[107.365,-2.9078],[107.3713,-2.9098],[107.3807,-2.9165],[107.3832,-2.9163],[107.3895,-2.9244],[107.3932,-2.9315],[107.3974,-2.9329],[107.4058,-2.9417],[107.4137,-2.9445],[107.4208,-2.9365],[107.4227,-2.9312],[107.4154,-2.9253],[107.4111,-2.9243],[107.4103,-2.9195],[107.4172,-2.9185],[107.4172,-2.9258],[107.4293,-2.9298],[107.4305,-2.9255],[107.4356,-2.9207],[107.4393,-2.9221],[107.4467,-2.9171],[107.455,-2.9159],[107.4635,-2.9121],[107.4686,-2.9081],[107.4718,-2.9006],[107.472,-2.8963],[107.4763,-2.8901],[107.4759,-2.8845],[107.4731,-2.8797],[107.4753,-2.8746],[107.4772,-2.8594],[107.4858,-2.8519],[107.4855,-2.8476],[107.4796,-2.8469],[107.479,-2.8424],[107.4756,-2.8386],[107.4721,-2.8256],[107.4683,-2.8217],[107.4643,-2.8216]]}},{"type":"Feature","properties":{"mhid":"1332:147","alt_name":"KABUPATEN BELITUNG","latitude":-2.86667,"longitude":107.7,"sample_value":339},"geometry":{"type":"LineString","coordinates":[[107.4168,-2.7911],[107.4039,-2.7971],[107.3978,-2.7963],[107.3872,-2.7975],[107.3823,-2.8009],[107.3888,-2.805],[107.3944,-2.804],[107.3991,-2.8052],[107.4021,-2.8095],[107.3985,-2.8178],[107.3917,-2.816],[107.3795,-2.8166],[107.372,-2.8194],[107.3712,-2.8231],[107.3813,-2.8264],[107.3909,-2.8327],[107.4007,-2.834],[107.4118,-2.8291],[107.4128,-2.8276],[107.4325,-2.82],[107.4355,-2.816],[107.43,-2.8051],[107.4247,-2.8047],[107.4213,-2.7995],[107.4218,-2.7954],[107.4168,-2.7911]]}},{"type":"Feature","properties":{"mhid":"1332:147","alt_name":"KABUPATEN BELITUNG","latitude":-2.86667,"longitude":107.7,"sample_value":339},"geometry":{"type":"LineString","coordinates":[[107.8621,-2.5399],[107.8598,-2.538],[107.8552,-2.5429],[107.8574,-2.548],[107.8644,-2.5488],[107.8704,-2.5443],[107.8706,-2.5393],[107.8621,-2.5399]]}},{"type":"Feature","properties":{"mhid":"1332:147","alt_name":"KABUPATEN BELITUNG","latitude":-2.86667,"longitude":107.7,"sample_value":339},"geometry":{"type":"LineString","coordinates":[[107.9379,-2.5698],[107.938,-2.5661],[107.9294,-2.5651],[107.9286,-2.5608],[107.9234,-2.5608],[107.9204,-2.5644],[107.9204,-2.5713],[107.9148,-2.571],[107.908,-2.5755],[107.9029,-2.5747],[107.8964,-2.567],[107.8837,-2.5675],[107.8687,-2.5598],[107.8588,-2.5578],[107.8518,-2.558],[107.8422,-2.5554],[107.8385,-2.5561],[107.8281,-2.55],[107.8258,-2.5434],[107.8268,-2.5397],[107.8325,-2.5371],[107.8334,-2.5317],[107.8154,-2.5288],[107.8126,-2.5351],[107.8044,-2.5406],[107.7968,-2.5436],[107.7961,-2.5457],[107.7839,-2.5488],[107.7788,-2.549],[107.7767,-2.552],[107.7639,-2.5572],[107.7498,-2.5575],[107.7403,-2.5558],[107.7329,-2.5568],[107.7274,-2.555],[107.7287,-2.5513],[107.7202,-2.5477],[107.7132,-2.5501],[107.7046,-2.5589],[107.6978,-2.5615],[107.6928,-2.561],[107.6879,-2.5641],[107.6762,-2.5631],[107.6674,-2.5559],[107.6642,-2.5582],[107.658,-2.559],[107.6584,-2.5619],[107.6551,-2.5678],[107.652,-2.568],[107.6513,-2.5748],[107.6482,-2.5786],[107.6437,-2.5881],[107.6363,-2.593],[107.6284,-2.5947],[107.6278,-2.6051],[107.633,-2.6058],[107.6409,-2.6151],[107.6451,-2.6183],[107.6455,-2.6279],[107.64,-2.6345],[107.6424,-2.6399],[107.6405,-2.6447],[107.6364,-2.6479],[107.631,-2.6488],[107.6308,-2.6574],[107.6284,-2.6651],[107.6308,-2.6722],[107.6296,-2.6772],[107.6255,-2.6839],[107.6253,-2.689],[107.6213,-2.6895],[107.6179,-2.6944],[107.6132,-2.7065],[107.6221,-2.7064],[107.6244,-2.7084],[107.6288,-2.7168],[107.6293,-2.7233],[107.6259,-2.7379],[107.6258,-2.7444],[107.6323,-2.7441],[107.6413,-2.7469],[107.6269,-2.7508],[107.6257,-2.7546],[107.6102,-2.7647],[107.6144,-2.769],[107.609,-2.7727],[107.6019,-2.7798],[107.596,-2.7881],[107.5966,-2.7927],[107.5875,-2.7917],[107.5811,-2.7966],[107.5836,-2.7991],[107.5923,-2.8016],[107.5988,-2.8147],[107.5996,-2.826],[107.5975,-2.8349],[107.5944,-2.8356],[107.5967,-2.844],[107.5961,-2.8535],[107.5977,-2.8583],[107.5888,-2.8705],[107.5833,-2.8752],[107.5759,-2.8838],[107.5657,-2.8902],[107.5487,-2.8981],[107.5469,-2.9022],[107.537,-2.9138],[107.5286,-2.921],[107.5327,-2.9343],[107.5383,-2.9324],[107.5472,-2.9345],[107.5507,-2.9284],[107.5596,-2.9248],[107.5667,-2.9263],[107.5745,-2.9186],[107.5874,-2.912],[107.615,-2.9128],[107.6087,-2.9284],[107.6052,-2.9281],[107.6002,-2.932],[107.5987,-2.9406],[107.5948,-2.9499],[107.598,-2.9556],[107.5912,-2.9622],[107.5905,-2.9688],[107.5857,-2.9784],[107.5807,-2.984],[107.5685,-2.9836],[107.5644,-2.9886],[107.5607,-2.9966],[107.5608,-3.0002],[107.5648,-3.0043],[107.566,-3.0098],[107.5651,-3.0147],[107.568,-3.0186],[107.5688,-3.0305],[107.5772,-3.0444],[107.5804,-3.0458],[107.5801,-3.0503],[107.585,-3.0708],[107.583,-3.0769],[107.5825,-3.0857],[107.5868,-3.0912],[107.5923,-3.095],[107.5932,-3.1033],[107.5986,-3.1074],[107.606,-3.1061],[107.6109,-3.117],[107.6197,-3.1224],[107.6224,-3.1279],[107.6268,-3.1289],[107.6269,-3.1391],[107.6298,-3.1446],[107.627,-3.1517],[107.6129,-3.1674],[107.6068,-3.1731],[107.6048,-3.1809],[107.5921,-3.1969],[107.5883,-3.1985],[107.5856,-3.2036],[107.5923,-3.2105],[107.5959,-3.2179],[107.5957,-3.2239],[107.6006,-3.226],[107.608,-3.2321],[107.6079,-3.2385],[107.6157,-3.2377],[107.6236,-3.234],[107.632,-3.2355],[107.6361,-3.2387],[107.6451,-3.2324],[107.656,-3.2284],[107.6603,-3.2202],[107.6689,-3.2106],[107.6743,-3.2072],[107.6827,-3.2038],[107.6887,-3.204],[107.6973,-3.1974],[107.7087,-3.1926],[107.7162,-3.191],[107.7294,-3.1905],[107.7404,-3.1916],[107.7436,-3.195],[107.7499,-3.1923],[107.7569,-3.1941],[107.7593,-3.192],[107.7665,-3.1918],[107.7681,-3.1876],[107.7754,-3.1824],[107.7795,-3.1835],[107.7826,-3.1788],[107.7876,-3.1749],[107.7962,-3.177],[107.8003,-3.175],[107.8127,-3.1659],[107.8203,-3.1656],[107.8283,-3.1674],[107.8354,-3.1583],[107.8328,-3.1496],[107.8336,-3.1383],[107.8396,-3.1372],[107.8367,-3.1294],[107.8411,-3.1238],[107.8489,-3.122],[107.8457,-3.114],[107.8428,-3.1122],[107.8328,-3.1105],[107.8333,-3.1027],[107.8294,-3.1023],[107.8225,-3.093],[107.8165,-3.0904],[107.8161,-3.0846],[107.8226,-3.0817],[107.8385,-3.069],[107.8444,-3.061],[107.8488,-3.0574],[107.8488,-3.0529],[107.8513,-3.0468],[107.8549,-3.0448],[107.863,-3.0364],[107.864,-3.0289],[107.8613,-3.0241],[107.8637,-3.0184],[107.8619,-3.0145],[107.8547,-3.0122],[107.8534,-3.0085],[107.858,-2.9956],[107.8536,-2.9874],[107.8482,-2.9847],[107.8501,-2.9765],[107.8466,-2.9764],[107.8411,-2.9678],[107.8378,-2.9664],[107.8335,-2.9598],[107.8272,-2.9595],[107.8231,-2.9471],[107.8179,-2.9426],[107.8107,-2.9421],[107.8092,-2.9367],[107.805,-2.9309],[107.7996,-2.9302],[107.7894,-2.9208],[107.7839,-2.9206],[107.7832,-2.917],[107.7788,-2.9128],[107.7658,-2.9036],[107.7614,-2.9028],[107.7596,-2.8997],[107.7506,-2.8936],[107.754,-2.884],[107.7731,-2.876],[107.7769,-2.8752],[107.7819,-2.8676],[107.7904,-2.8654],[107.7948,-2.8659],[107.8014,-2.8713],[107.8083,-2.8743],[107.8197,-2.8758],[107.8249,-2.8778],[107.8293,-2.8756],[107.8373,-2.8774],[107.855,-2.8675],[107.8551,-2.8561],[107.8473,-2.8476],[107.8459,-2.8429],[107.8523,-2.8327],[107.8527,-2.8292],[107.8487,-2.8243],[107.852,-2.8184],[107.8593,-2.8147],[107.8625,-2.8064],[107.8678,-2.8006],[107.8807,-2.7983],[107.8836,-2.7998],[107.8887,-2.7978],[107.9038,-2.7973],[107.9091,-2.7994],[107.9135,-2.7984],[107.9171,-2.8006],[107.9268,-2.7994],[107.9368,-2.7994],[107.9489,-2.7933],[107.955,-2.7945],[107.9584,-2.7907],[107.9644,-2.7923],[107.9684,-2.7884],[107.9788,-2.7859],[107.98,-2.7801],[107.9944,-2.7778],[107.9963,-2.7741],[107.9918,-2.7666],[107.9956,-2.7553],[107.9899,-2.7515],[107.982,-2.7509],[107.9793,-2.7532],[107.9709,-2.7532],[107.9666,-2.7579],[107.9583,-2.757],[107.9552,-2.75],[107.9625,-2.7433],[107.9576,-2.7393],[107.9531,-2.7385],[107.9476,-2.7349],[107.9332,-2.7205],[107.9349,-2.7166],[107.9324,-2.7104],[107.9256,-2.7095],[107.9217,-2.7114],[107.9065,-2.7107],[107.9048,-2.7052],[107.8822,-2.6939],[107.8764,-2.6903],[107.8789,-2.6809],[107.8814,-2.679],[107.8855,-2.6705],[107.8938,-2.6694],[107.8965,-2.6632],[107.8978,-2.6386],[107.9021,-2.6369],[107.9009,-2.6324],[107.9024,-2.627],[107.8984,-2.6182],[107.9,-2.6137],[107.8991,-2.6084],[107.9099,-2.6094],[107.9271,-2.6004],[107.9384,-2.5902],[107.94,-2.5851],[107.9374,-2.5738],[107.9379,-2.5698]]}},{"type":"Feature","properties":{"mhid":"1332:148","alt_name":"KABUPATEN BANGKA BARAT","latitude":-1.95839,"longitude":105.53741,"sample_value":876},"geometry":{"type":"LineString","coordinates":[[105.7442,-1.7823],[105.7378,-1.7837],[105.7327,-1.7829],[105.7182,-1.7841],[105.7029,-1.783],[105.6944,-1.7814],[105.6836,-1.769],[105.6724,-1.7642],[105.6684,-1.7612],[105.6662,-1.7552],[105.6629,-1.7511],[105.661,-1.7454],[105.6545,-1.7452],[105.6546,-1.7402],[105.6579,-1.7364],[105.657,-1.7313],[105.6528,-1.7259],[105.651,-1.7164],[105.6534,-1.7132],[105.6599,-1.7144],[105.6691,-1.7003],[105.6809,-1.6911],[105.6827,-1.6873],[105.6968,-1.6768],[105.7015,-1.6686],[105.7054,-1.6642],[105.7123,-1.6604],[105.7179,-1.6495],[105.719,-1.6441],[105.7038,-1.6512],[105.6976,-1.653],[105.6722,-1.6544],[105.6521,-1.6506],[105.6491,-1.6463],[105.6397,-1.6414],[105.6365,-1.6322],[105.6286,-1.6275],[105.6288,-1.6222],[105.6218,-1.611],[105.622,-1.5986],[105.6189,-1.5938],[105.6201,-1.589],[105.6175,-1.5842],[105.6125,-1.5798],[105.6147,-1.5742],[105.6113,-1.5715],[105.6098,-1.5622],[105.6024,-1.5556],[105.5999,-1.5442],[105.604,-1.5342],[105.6038,-1.5294],[105.599,-1.5272],[105.5941,-1.5279],[105.5885,-1.5326],[105.5815,-1.5346],[105.5758,-1.5347],[105.5654,-1.5311],[105.5613,-1.5322],[105.5636,-1.537],[105.5632,-1.5448],[105.5548,-1.5558],[105.5356,-1.5648],[105.5219,-1.567],[105.5034,-1.5635],[105.4988,-1.5602],[105.4928,-1.5642],[105.4837,-1.5641],[105.4685,-1.5608],[105.4655,-1.565],[105.461,-1.5632],[105.4557,-1.5703],[105.4575,-1.5724],[105.4494,-1.5796],[105.4486,-1.5825],[105.4354,-1.5955],[105.4299,-1.5978],[105.4245,-1.6047],[105.4196,-1.6071],[105.3979,-1.6092],[105.3932,-1.6057],[105.389,-1.6066],[105.393,-1.612],[105.3902,-1.6221],[105.3925,-1.6261],[105.3892,-1.6355],[105.3827,-1.6421],[105.3675,-1.6468],[105.3579,-1.6522],[105.3502,-1.6477],[105.3449,-1.6475],[105.3437,-1.6525],[105.3467,-1.6564],[105.3409,-1.6579],[105.3395,-1.6651],[105.3437,-1.6708],[105.3488,-1.6724],[105.3547,-1.6717],[105.3598,-1.6741],[105.3596,-1.6814],[105.3568,-1.6861],[105.3505,-1.6863],[105.345,-1.6933],[105.3278,-1.699],[105.3334,-1.7014],[105.3362,-1.7049],[105.34,-1.7006],[105.3502,-1.7077],[105.3537,-1.7122],[105.3727,-1.718],[105.3801,-1.7246],[105.3872,-1.7347],[105.3872,-1.7443],[105.39,-1.7517],[105.3981,-1.763],[105.3972,-1.7723],[105.3946,-1.7813],[105.3885,-1.7968],[105.3819,-1.807],[105.3687,-1.8247],[105.3616,-1.8313],[105.3347,-1.8529],[105.3253,-1.8582],[105.3212,-1.8623],[105.3041,-1.8704],[105.296,-1.8727],[105.285,-1.8825],[105.2642,-1.8959],[105.2514,-1.8992],[105.2411,-1.8996],[105.2301,-1.9084],[105.2221,-1.9129],[105.2086,-1.9168],[105.1947,-1.9181],[105.1906,-1.9171],[105.1814,-1.9243],[105.162,-1.9293],[105.1522,-1.9476],[105.1491,-1.9497],[105.1249,-1.9589],[105.125,-1.9656],[105.1294,-1.9685],[105.1329,-1.9754],[105.1295,-1.9853],[105.1272,-1.9881],[105.1266,-1.9973],[105.1166,-2.0093],[105.1081,-2.0238],[105.1208,-2.0358],[105.1211,-2.0444],[105.1233,-2.0498],[105.1255,-2.0602],[105.1247,-2.0708],[105.1316,-2.0856],[105.1413,-2.0772],[105.1509,-2.0714],[105.1559,-2.0703],[105.162,-2.072],[105.1693,-2.0701],[105.1785,-2.0751],[105.1927,-2.0725],[105.1954,-2.0732],[105.2167,-2.0668],[105.2287,-2.0662],[105.2477,-2.0756],[105.2576,-2.0858],[105.2587,-2.091],[105.2633,-2.0958],[105.2635,-2.0986],[105.2696,-2.1103],[105.2763,-2.1187],[105.2792,-2.1264],[105.2836,-2.1309],[105.2887,-2.1402],[105.293,-2.1507],[105.3029,-2.1535],[105.307,-2.1487],[105.314,-2.137],[105.3293,-2.1254],[105.3376,-2.1262],[105.3418,-2.1281],[105.3457,-2.1232],[105.3558,-2.1194],[105.3699,-2.123],[105.3725,-2.1251],[105.3837,-2.1299],[105.3964,-2.1261],[105.4066,-2.1205],[105.4189,-2.1182],[105.4304,-2.1239],[105.4364,-2.1334],[105.4441,-2.129],[105.4467,-2.125],[105.4583,-2.1138],[105.4657,-2.1082],[105.47,-2.1036],[105.4853,-2.0947],[105.5007,-2.0874],[105.5128,-2.0834],[105.5166,-2.0856],[105.5251,-2.0871],[105.5343,-2.0814],[105.5471,-2.0866],[105.5474,-2.0849],[105.572,-2.094],[105.5798,-2.0993],[105.5839,-2.1067],[105.5882,-2.1117],[105.5874,-2.118],[105.5901,-2.1227],[105.6232,-2.1184],[105.6338,-2.1196],[105.646,-2.1167],[105.6492,-2.1188],[105.6555,-2.1181],[105.6657,-2.1243],[105.6734,-2.1235],[105.6803,-2.1297],[105.6914,-2.1262],[105.7002,-2.1277],[105.7036,-2.1255],[105.719,-2.125],[105.7324,-2.128],[105.7432,-2.1337],[105.7513,-2.1409],[105.7592,-2.1438],[105.7618,-2.1369],[105.7651,-2.1349],[105.7665,-2.1228],[105.7607,-2.1213],[105.7605,-2.1176],[105.7658,-2.1178],[105.7689,-2.1138],[105.7651,-2.1054],[105.7598,-2.1087],[105.7557,-2.1059],[105.7526,-2.0945],[105.7525,-2.0901],[105.7489,-2.0885],[105.7523,-2.0827],[105.7509,-2.0791],[105.7583,-2.0786],[105.7563,-2.0679],[105.7501,-2.0656],[105.7503,-2.0597],[105.7542,-2.0556],[105.7526,-2.0523],[105.7614,-2.0443],[105.7641,-2.0356],[105.7687,-2.0307],[105.7708,-2.0258],[105.7699,-2.0153],[105.7703,-2.0078],[105.774,-2.0013],[105.7858,-1.9959],[105.7779,-1.9939],[105.7746,-1.9889],[105.7626,-1.9816],[105.757,-1.9793],[105.7512,-1.9738],[105.75,-1.9551],[105.7456,-1.9448],[105.7407,-1.9386],[105.7319,-1.9405],[105.717,-1.9448],[105.7129,-1.937],[105.7029,-1.9252],[105.7021,-1.9216],[105.7064,-1.9132],[105.7058,-1.9113],[105.6973,-1.9064],[105.7044,-1.895],[105.7127,-1.8954],[105.7216,-1.8893],[105.7261,-1.879],[105.7346,-1.8708],[105.7408,-1.8678],[105.7478,-1.8615],[105.7474,-1.855],[105.7537,-1.8406],[105.7525,-1.8353],[105.7462,-1.8321],[105.7448,-1.8292],[105.7466,-1.8201],[105.7526,-1.8204],[105.7562,-1.8166],[105.7605,-1.8161],[105.7594,-1.8078],[105.7534,-1.8072],[105.7506,-1.8022],[105.7552,-1.7994],[105.7565,-1.7947],[105.7544,-1.7906],[105.7481,-1.7876],[105.7442,-1.7823]]}},{"type":"Feature","properties":{"mhid":"1332:149","alt_name":"KABUPATEN BANGKA TENGAH","latitude":-2.33989,"longitude":106.1142,"sample_value":576},"geometry":{"type":"LineString","coordinates":[[105.7897,-2.4003],[105.7854,-2.3985],[105.7824,-2.4015],[105.786,-2.4045],[105.7882,-2.4171],[105.7907,-2.4182],[105.801,-2.4165],[105.8026,-2.406],[105.7958,-2.4014],[105.7897,-2.4003]]}},{"type":"Feature","properties":{"mhid":"1332:149","alt_name":"KABUPATEN BANGKA TENGAH","latitude":-2.33989,"longitude":106.1142,"sample_value":576},"geometry":{"type":"LineString","coordinates":[[106.2751,-2.1494],[106.2697,-2.1498],[106.2663,-2.1531],[106.2666,-2.1567],[106.2719,-2.1593],[106.2789,-2.1526],[106.2751,-2.1494]]}},{"type":"Feature","properties":{"mhid":"1332:149","alt_name":"KABUPATEN BANGKA TENGAH","latitude":-2.33989,"longitude":106.1142,"sample_value":576},"geometry":{"type":"LineString","coordinates":[[106.1743,-2.155],[106.1591,-2.1559],[106.1541,-2.1601],[106.133,-2.146],[106.1257,-2.1514],[106.1178,-2.1545],[106.1124,-2.1547],[106.109,-2.1526],[106.1037,-2.1546],[106.1033,-2.15],[106.0949,-2.1452],[106.0889,-2.1445],[106.0781,-2.151],[106.074,-2.1557],[106.0736,-2.1629],[106.0681,-2.1681],[106.0556,-2.1695],[106.0513,-2.1785],[106.0446,-2.1845],[106.0394,-2.1861],[106.0381,-2.1942],[106.0306,-2.1979],[106.021,-2.2076],[106.0208,-2.2144],[106.0142,-2.2172],[105.992,-2.2215],[105.9862,-2.2255],[105.9754,-2.2309],[105.9776,-2.2415],[105.972,-2.2418],[105.9645,-2.2454],[105.9589,-2.2455],[105.9526,-2.2407],[105.9449,-2.2263],[105.9399,-2.2227],[105.9334,-2.2211],[105.9277,-2.2166],[105.9263,-2.2084],[105.9231,-2.2114],[105.9237,-2.22],[105.9227,-2.2251],[105.9187,-2.2281],[105.9193,-2.2432],[105.913,-2.2457],[105.9118,-2.2501],[105.9204,-2.2649],[105.9231,-2.2736],[105.9289,-2.2753],[105.9217,-2.2863],[105.9222,-2.293],[105.9204,-2.2983],[105.9215,-2.3034],[105.92,-2.3071],[105.9135,-2.3113],[105.9068,-2.3199],[105.902,-2.3279],[105.9,-2.3387],[105.8883,-2.3385],[105.8841,-2.3347],[105.8752,-2.333],[105.8656,-2.3336],[105.858,-2.339],[105.8457,-2.3393],[105.8432,-2.3455],[105.8369,-2.3482],[105.8303,-2.3477],[105.8277,-2.3536],[105.822,-2.3607],[105.806,-2.3701],[105.8184,-2.381],[105.8267,-2.3934],[105.8332,-2.411],[105.8383,-2.4152],[105.8507,-2.4193],[105.8617,-2.4243],[105.8685,-2.4284],[105.8743,-2.4291],[105.8786,-2.4244],[105.8808,-2.4277],[105.8978,-2.4359],[105.9128,-2.4444],[105.9197,-2.4513],[105.9207,-2.4543],[105.927,-2.4593],[105.9282,-2.4638],[105.9329,-2.47],[105.9578,-2.4686],[105.9844,-2.4689],[105.9909,-2.4613],[106.0043,-2.4531],[106.0054,-2.4453],[106.0282,-2.4369],[106.0346,-2.438],[106.0411,-2.4458],[106.046,-2.4544],[106.0447,-2.4626],[106.0283,-2.4754],[106.0256,-2.4828],[106.0258,-2.4905],[106.0284,-2.4997],[106.0315,-2.5034],[106.0307,-2.5125],[106.0449,-2.5169],[106.0505,-2.5169],[106.0552,-2.5128],[106.0567,-2.5086],[106.0526,-2.5055],[106.0531,-2.4993],[106.0585,-2.5016],[106.0603,-2.4995],[106.0611,-2.4923],[106.0647,-2.4928],[106.0686,-2.5008],[106.0815,-2.499],[106.0874,-2.4964],[106.0885,-2.4913],[106.0947,-2.492],[106.1066,-2.4884],[106.1119,-2.4886],[106.1168,-2.4985],[106.1229,-2.5017],[106.1421,-2.5021],[106.1418,-2.4982],[106.1373,-2.4957],[106.1396,-2.4904],[106.1444,-2.4917],[106.1605,-2.4874],[106.1802,-2.4857],[106.1859,-2.4776],[106.1918,-2.475],[106.1959,-2.468],[106.2111,-2.4654],[106.2163,-2.4654],[106.2189,-2.4711],[106.2248,-2.4646],[106.2351,-2.4714],[106.2341,-2.4763],[106.2258,-2.4789],[106.2256,-2.4872],[106.224,-2.4926],[106.2235,-2.5022],[106.2215,-2.5061],[106.2127,-2.5108],[106.2104,-2.5155],[106.2027,-2.5209],[106.1992,-2.5269],[106.2009,-2.5356],[106.1999,-2.5599],[106.2011,-2.5681],[106.2069,-2.5711],[106.2148,-2.5706],[106.2253,-2.5755],[106.2281,-2.5813],[106.2376,-2.5849],[106.2475,-2.5847],[106.2535,-2.5798],[106.2629,-2.5755],[106.2717,-2.5768],[106.2813,-2.5728],[106.2848,-2.5678],[106.2894,-2.5701],[106.2957,-2.566],[106.2971,-2.5586],[106.302,-2.5496],[106.3057,-2.5473],[106.3135,-2.5488],[106.3193,-2.546],[106.3247,-2.5475],[106.3247,-2.5506],[106.3318,-2.5517],[106.3342,-2.5457],[106.3464,-2.548],[106.3578,-2.548],[106.3603,-2.5469],[106.3723,-2.5489],[106.3744,-2.5605],[106.3792,-2.5659],[106.3896,-2.5673],[106.4098,-2.5687],[106.4224,-2.5658],[106.4285,-2.5633],[106.435,-2.5644],[106.448,-2.5607],[106.4555,-2.5553],[106.4579,-2.5623],[106.4565,-2.5695],[106.4577,-2.5723],[106.455,-2.5783],[106.4492,-2.5805],[106.4431,-2.5956],[106.4437,-2.6144],[106.4499,-2.6172],[106.4619,-2.617],[106.4657,-2.6187],[106.4714,-2.6171],[106.4793,-2.6172],[106.4829,-2.6136],[106.4953,-2.6104],[106.4913,-2.6185],[106.4922,-2.6247],[106.4962,-2.6293],[106.4951,-2.6399],[106.4926,-2.6483],[106.4934,-2.6571],[106.4993,-2.6595],[106.5038,-2.6581],[106.5091,-2.6605],[106.51,-2.6551],[106.514,-2.6466],[106.5224,-2.6527],[106.5298,-2.6535],[106.5322,-2.6555],[106.5402,-2.6561],[106.5431,-2.6602],[106.5499,-2.6616],[106.5571,-2.6606],[106.5694,-2.6688],[106.5729,-2.6696],[106.5805,-2.6749],[106.5862,-2.6768],[106.5875,-2.6813],[106.5916,-2.6851],[106.5996,-2.6861],[106.6022,-2.6909],[106.6184,-2.6932],[106.622,-2.6948],[106.6337,-2.6956],[106.6368,-2.7014],[106.638,-2.7132],[106.6438,-2.7187],[106.6491,-2.718],[106.6556,-2.7212],[106.6615,-2.7158],[106.6631,-2.7148],[106.6707,-2.7031],[106.6741,-2.6936],[106.6841,-2.6792],[106.6897,-2.6683],[106.6985,-2.662],[106.6994,-2.6566],[106.7044,-2.6495],[106.7086,-2.6464],[106.7077,-2.6434],[106.7137,-2.638],[106.7207,-2.6341],[106.7232,-2.6307],[106.7275,-2.6298],[106.7335,-2.6212],[106.7468,-2.6084],[106.7612,-2.5989],[106.7648,-2.5985],[106.7731,-2.6077],[106.7766,-2.6022],[106.7847,-2.5937],[106.7883,-2.5872],[106.8036,-2.5801],[106.8122,-2.578],[106.8182,-2.5785],[106.8232,-2.5838],[106.8243,-2.5882],[106.8332,-2.5886],[106.8376,-2.5874],[106.8431,-2.5814],[106.8424,-2.5718],[106.8359,-2.5713],[106.8152,-2.5669],[106.7763,-2.5605],[106.7668,-2.5583],[106.7551,-2.5568],[106.7144,-2.5472],[106.6983,-2.5423],[106.666,-2.5377],[106.6436,-2.5354],[106.5834,-2.524],[106.5654,-2.5202],[106.5425,-2.5133],[106.518,-2.5079],[106.4984,-2.5042],[106.4792,-2.4969],[106.4627,-2.4835],[106.4453,-2.4728],[106.4365,-2.4775],[106.4221,-2.4804],[106.4134,-2.4799],[106.405,-2.4773],[106.4011,-2.4787],[106.3936,-2.478],[106.3768,-2.4742],[106.3559,-2.4656],[106.3412,-2.4568],[106.3273,-2.4446],[106.3193,-2.435],[106.3126,-2.4294],[106.3067,-2.422],[106.3016,-2.4227],[106.2914,-2.4101],[106.2795,-2.3917],[106.2591,-2.3543],[106.2515,-2.344],[106.2459,-2.3383],[106.2396,-2.3297],[106.2361,-2.3228],[106.2351,-2.3174],[106.2322,-2.3152],[106.2315,-2.308],[106.2262,-2.2999],[106.2253,-2.2915],[106.2256,-2.278],[106.2225,-2.2692],[106.2245,-2.2634],[106.2282,-2.2602],[106.2238,-2.2524],[106.2144,-2.2429],[106.2118,-2.233],[106.2062,-2.2224],[106.2056,-2.2028],[106.2038,-2.1963],[106.1994,-2.1899],[106.1984,-2.1852],[106.192,-2.1791],[106.1885,-2.1698],[106.1927,-2.1633],[106.1847,-2.1613],[106.1807,-2.1539],[106.1743,-2.155]]}},{"type":"Feature","properties":{"mhid":"1332:150","alt_name":"KABUPATEN BANGKA SELATAN","latitude":-2.66803,"longitude":106.01257,"sample_value":72},"geometry":{"type":"LineString","coordinates":[[106.6989,-2.9784],[106.6943,-2.9878],[106.6976,-2.9939],[106.7027,-2.9954],[106.7092,-2.9931],[106.7134,-2.982],[106.709,-2.9792],[106.6989,-2.9784]]}},{"type":"Feature","properties":{"mhid":"1332:150","alt_name":"KABUPATEN BANGKA SELATAN","latitude":-2.66803,"longitude":106.01257,"sample_value":72},"geometry":{"type":"LineString","coordinates":[[106.6955,-2.9606],[106.6917,-2.9596],[106.6895,-2.9631],[106.6915,-2.9663],[106.6959,-2.9645],[106.6955,-2.9606]]}},{"type":"Feature","properties":{"mhid":"1332:150","alt_name":"KABUPATEN BANGKA SELATAN","latitude":-2.66803,"longitude":106.01257,"sample_value":72},"geometry":{"type":"LineString","coordinates":[[106.6737,-2.9586],[106.6665,-2.9599],[106.6714,-2.9678],[106.678,-2.9681],[106.679,-2.9623],[106.6737,-2.9586]]}},{"type":"Feature","properties":{"mhid":"1332:150","alt_name":"KABUPATEN BANGKA SELATAN","latitude":-2.66803,"longitude":106.01257,"sample_value":72},"geometry":{"type":"LineString","coordinates":[[106.8215,-2.8966],[106.8099,-2.8879],[106.8039,-2.8863],[106.7981,-2.8888],[106.7913,-2.897],[106.7884,-2.9054],[106.7779,-2.9093],[106.7698,-2.9083],[106.7653,-2.9158],[106.7471,-2.9245],[106.7325,-2.9254],[106.7299,-2.9285],[106.7319,-2.9371],[106.7296,-2.9448],[106.7243,-2.9477],[106.7241,-2.9543],[106.7177,-2.9594],[106.7115,-2.9622],[106.7095,-2.9671],[106.7136,-2.9699],[106.7179,-2.9698],[106.7247,-2.9751],[106.7281,-2.9758],[106.7463,-2.9853],[106.7572,-2.9889],[106.7677,-2.9954],[106.775,-2.9983],[106.7814,-3.0057],[106.786,-3.0087],[106.791,-3.0179],[106.8012,-3.0203],[106.8076,-3.025],[106.8113,-3.0232],[106.8165,-3.0241],[106.8234,-3.0317],[106.8299,-3.0286],[106.8376,-3.03],[106.8416,-3.0289],[106.8486,-3.0301],[106.8564,-3.039],[106.8615,-3.035],[106.8685,-3.0315],[106.8718,-3.033],[106.8917,-3.0288],[106.8808,-3.0215],[106.8803,-3.0068],[106.8886,-2.9929],[106.8948,-2.9866],[106.8958,-2.9831],[106.9058,-2.9678],[106.9103,-2.9507],[106.9104,-2.9443],[106.9062,-2.9416],[106.9001,-2.9349],[106.8939,-2.9304],[106.877,-2.9304],[106.8678,-2.9262],[106.859,-2.9245],[106.8473,-2.919],[106.8406,-2.9147],[106.8328,-2.9061],[106.8339,-2.9036],[106.8215,-2.8966]]}},{"type":"Feature","properties":{"mhid":"1332:150","alt_name":"KABUPATEN BANGKA SELATAN","latitude":-2.66803,"longitude":106.01257,"sample_value":72},"geometry":{"type":"LineString","coordinates":[[106.7688,-2.8835],[106.7602,-2.8862],[106.7609,-2.8955],[106.7648,-2.8975],[106.7694,-2.896],[106.7765,-2.8889],[106.777,-2.8846],[106.7688,-2.8835]]}},{"type":"Feature","properties":{"mhid":"1332:150","alt_name":"KABUPATEN BANGKA SELATAN","latitude":-2.66803,"longitude":106.01257,"sample_value":72},"geometry":{"type":"LineString","coordinates":[[106.7365,-2.8674],[106.7334,-2.8719],[106.7351,-2.8795],[106.731,-2.8842],[106.7209,-2.8881],[106.7182,-2.8933],[106.7213,-2.9023],[106.7274,-2.9046],[106.7348,-2.9042],[106.7441,-2.8926],[106.7488,-2.8816],[106.7452,-2.8764],[106.7401,-2.8761],[106.7399,-2.8707],[106.7365,-2.8674]]}},{"type":"Feature","properties":{"mhid":"1332:150","alt_name":"KABUPATEN BANGKA SELATAN","latitude":-2.66803,"longitude":106.01257,"sample_value":72},"geometry":{"type":"LineString","coordinates":[[106.8439,-2.844],[106.8365,-2.843],[106.8317,-2.8459],[106.8289,-2.8502],[106.8324,-2.8533],[106.8407,-2.8552],[106.843,-2.8578],[106.8511,-2.8593],[106.8543,-2.858],[106.8535,-2.8509],[106.8547,-2.846],[106.8526,-2.8432],[106.8439,-2.844]]}},{"type":"Feature","properties":{"mhid":"1332:150","alt_name":"KABUPATEN BANGKA SELATAN","latitude":-2.66803,"longitude":106.01257,"sample_value":72},"geometry":{"type":"LineString","coordinates":[[106.7966,-2.8378],[106.7877,-2.833],[106.7814,-2.8432],[106.7887,-2.8417],[106.799,-2.8424],[106.7966,-2.8378]]}},{"type":"Feature","properties":{"mhid":"1332:150","alt_name":"KABUPATEN BANGKA SELATAN","latitude":-2.66803,"longitude":106.01257,"sample_value":72},"geometry":{"type":"LineString","coordinates":[[107.061,-2.8389],[107.0649,-2.8297],[107.0613,-2.8216],[107.0555,-2.8195],[107.0487,-2.8279],[107.0462,-2.8379],[107.0409,-2.8395],[107.0382,-2.8449],[107.0386,-2.8507],[107.0311,-2.8548],[107.0294,-2.8598],[107.0294,-2.8664],[107.0259,-2.8683],[107.0249,-2.8743],[107.0195,-2.8776],[107.023,-2.8831],[107.0327,-2.8862],[107.0378,-2.8952],[107.0432,-2.9014],[107.05,-2.9047],[107.0528,-2.908],[107.0574,-2.9093],[107.0667,-2.9079],[107.0796,-2.9084],[107.0842,-2.9118],[107.0866,-2.9103],[107.0856,-2.902],[107.087,-2.8932],[107.0903,-2.8836],[107.0933,-2.8817],[107.0946,-2.8703],[107.0916,-2.863],[107.0904,-2.8564],[107.0738,-2.8409],[107.0625,-2.8414],[107.061,-2.8389]]}},{"type":"Feature","properties":{"mhid":"1332:150","alt_name":"KABUPATEN BANGKA SELATAN","latitude":-2.66803,"longitude":106.01257,"sample_value":72},"geometry":{"type":"LineString","coordinates":[[106.6615,-2.7158],[106.6556,-2.7212],[106.6491,-2.718],[106.6438,-2.7187],[106.638,-2.7132],[106.6368,-2.7014],[106.6337,-2.6956],[106.622,-2.6948],[106.6184,-2.6932],[106.6022,-2.6909],[106.5996,-2.6861],[106.5916,-2.6851],[106.5875,-2.6813],[106.5862,-2.6768],[106.5805,-2.6749],[106.5729,-2.6696],[106.5694,-2.6688],[106.5571,-2.6606],[106.5499,-2.6616],[106.5431,-2.6602],[106.5402,-2.6561],[106.5322,-2.6555],[106.5298,-2.6535],[106.5224,-2.6527],[106.514,-2.6466],[106.51,-2.6551],[106.5091,-2.6605],[106.5038,-2.6581],[106.4993,-2.6595],[106.4934,-2.6571],[106.4926,-2.6483],[106.4951,-2.6399],[106.4962,-2.6293],[106.4922,-2.6247],[106.4913,-2.6185],[106.4953,-2.6104],[106.4829,-2.6136],[106.4793,-2.6172],[106.4714,-2.6171],[106.4657,-2.6187],[106.4619,-2.617],[106.4499,-2.6172],[106.4437,-2.6144],[106.4431,-2.5956],[106.4492,-2.5805],[106.455,-2.5783],[106.4577,-2.5723],[106.4565,-2.5695],[106.4579,-2.5623],[106.4555,-2.5553],[106.448,-2.5607],[106.435,-2.5644],[106.4285,-2.5633],[106.4224,-2.5658],[106.4098,-2.5687],[106.3896,-2.5673],[106.3792,-2.5659],[106.3744,-2.5605],[106.3723,-2.5489],[106.3603,-2.5469],[106.3578,-2.548],[106.3464,-2.548],[106.3342,-2.5457],[106.3318,-2.5517],[106.3247,-2.5506],[106.3247,-2.5475],[106.3193,-2.546],[106.3135,-2.5488],[106.3057,-2.5473],[106.302,-2.5496],[106.2971,-2.5586],[106.2957,-2.566],[106.2894,-2.5701],[106.2848,-2.5678],[106.2813,-2.5728],[106.2717,-2.5768],[106.2629,-2.5755],[106.2535,-2.5798],[106.2475,-2.5847],[106.2376,-2.5849],[106.2281,-2.5813],[106.2253,-2.5755],[106.2148,-2.5706],[106.2069,-2.5711],[106.2011,-2.5681],[106.1999,-2.5599],[106.2009,-2.5356],[106.1992,-2.5269],[106.2027,-2.5209],[106.2104,-2.5155],[106.2127,-2.5108],[106.2215,-2.5061],[106.2235,-2.5022],[106.224,-2.4926],[106.2256,-2.4872],[106.2258,-2.4789],[106.2341,-2.4763],[106.2351,-2.4714],[106.2248,-2.4646],[106.2189,-2.4711],[106.2163,-2.4654],[106.2111,-2.4654],[106.1959,-2.468],[106.1918,-2.475],[106.1859,-2.4776],[106.1802,-2.4857],[106.1605,-2.4874],[106.1444,-2.4917],[106.1396,-2.4904],[106.1373,-2.4957],[106.1418,-2.4982],[106.1421,-2.5021],[106.1229,-2.5017],[106.1168,-2.4985],[106.1119,-2.4886],[106.1066,-2.4884],[106.0947,-2.492],[106.0885,-2.4913],[106.0874,-2.4964],[106.0815,-2.499],[106.0686,-2.5008],[106.0647,-2.4928],[106.0611,-2.4923],[106.0603,-2.4995],[106.0585,-2.5016],[106.0531,-2.4993],[106.0526,-2.5055],[106.0567,-2.5086],[106.0552,-2.5128],[106.0505,-2.5169],[106.0449,-2.5169],[106.0307,-2.5125],[106.0315,-2.5034],[106.0284,-2.4997],[106.0258,-2.4905],[106.0256,-2.4828],[106.0283,-2.4754],[106.0447,-2.4626],[106.046,-2.4544],[106.0411,-2.4458],[106.0346,-2.438],[106.0282,-2.4369],[106.0054,-2.4453],[106.0043,-2.4531],[105.9909,-2.4613],[105.9844,-2.4689],[105.9578,-2.4686],[105.9329,-2.47],[105.9329,-2.4744],[105.9355,-2.4807],[105.9363,-2.4899],[105.9387,-2.4954],[105.9358,-2.5066],[105.9366,-2.512],[105.9346,-2.5234],[105.9382,-2.5307],[105.9301,-2.5354],[105.926,-2.541],[105.9169,-2.5453],[105.9134,-2.556],[105.9121,-2.564],[105.9038,-2.582],[105.898,-2.589],[105.8913,-2.5879],[105.8914,-2.5937],[105.8987,-2.6048],[105.8972,-2.614],[105.8874,-2.6384],[105.8869,-2.6446],[105.8918,-2.6469],[105.898,-2.6605],[105.9005,-2.6608],[105.9028,-2.6671],[105.903,-2.683],[105.9055,-2.6874],[105.9072,-2.6984],[105.9117,-2.7026],[105.9157,-2.7099],[105.9195,-2.724],[105.9169,-2.7291],[105.9183,-2.7412],[105.9266,-2.7528],[105.9285,-2.754],[105.933,-2.7636],[105.9489,-2.7756],[105.9534,-2.7825],[105.9556,-2.792],[105.9496,-2.8087],[105.9502,-2.8211],[105.9538,-2.8212],[105.9637,-2.816],[105.9691,-2.8148],[105.9777,-2.8155],[105.9941,-2.822],[106.0096,-2.8256],[106.02,-2.8269],[106.0318,-2.8324],[106.0369,-2.8332],[106.0473,-2.831],[106.0597,-2.8305],[106.0715,-2.8343],[106.0818,-2.835],[106.0983,-2.8392],[106.1203,-2.8495],[106.1287,-2.8559],[106.1366,-2.8638],[106.1409,-2.8745],[106.1539,-2.8743],[106.1626,-2.8725],[106.1813,-2.8715],[106.1867,-2.8739],[106.1952,-2.8757],[106.1984,-2.8803],[106.2101,-2.8829],[106.218,-2.8861],[106.2243,-2.8907],[106.2319,-2.8991],[106.238,-2.9013],[106.2434,-2.8988],[106.2629,-2.8995],[106.2797,-2.9032],[106.2877,-2.9074],[106.2953,-2.9164],[106.3011,-2.9206],[106.3098,-2.9244],[106.3207,-2.9328],[106.3276,-2.9436],[106.3312,-2.9538],[106.3293,-2.959],[106.33,-2.9638],[106.3375,-2.9673],[106.3465,-2.9676],[106.3524,-2.9707],[106.3737,-2.9684],[106.3777,-2.9709],[106.3851,-2.9724],[106.3864,-2.9668],[106.4055,-2.9664],[106.417,-2.9684],[106.428,-2.9738],[106.4377,-2.9864],[106.4391,-2.9938],[106.4428,-3.0004],[106.445,-3.0117],[106.4485,-3.0152],[106.4544,-3.0171],[106.4631,-3.0221],[106.4752,-3.0308],[106.4827,-3.0379],[106.4935,-3.053],[106.4936,-3.0562],[106.4975,-3.0615],[106.4992,-3.069],[106.4979,-3.0767],[106.495,-3.0786],[106.4962,-3.0831],[106.4912,-3.0878],[106.4921,-3.0927],[106.4959,-3.0975],[106.5002,-3.0995],[106.5021,-3.1047],[106.5096,-3.1073],[106.5114,-3.1124],[106.5194,-3.1122],[106.5356,-3.1022],[106.5397,-3.1011],[106.5459,-3.1029],[106.5457,-3.1067],[106.5508,-3.1096],[106.5544,-3.1061],[106.5513,-3.1016],[106.5504,-3.0963],[106.5539,-3.0921],[106.5661,-3.0835],[106.5785,-3.0786],[106.588,-3.0773],[106.5981,-3.0777],[106.6058,-3.0841],[106.6165,-3.0866],[106.6287,-3.0817],[106.6369,-3.0815],[106.6456,-3.0833],[106.6523,-3.0861],[106.6568,-3.0916],[106.6579,-3.1014],[106.664,-3.1011],[106.676,-3.093],[106.6861,-3.0895],[106.6917,-3.0925],[106.7004,-3.0943],[106.7052,-3.0978],[106.7143,-3.0869],[106.7201,-3.083],[106.7283,-3.0816],[106.7292,-3.0833],[106.739,-3.0859],[106.7366,-3.0778],[106.7329,-3.0735],[106.7343,-3.0683],[106.7394,-3.0633],[106.7433,-3.0565],[106.7355,-3.0498],[106.7293,-3.0321],[106.7338,-3.0245],[106.7445,-3.0131],[106.7425,-3.0082],[106.7389,-3.005],[106.735,-3.0058],[106.7072,-3.0053],[106.6948,-3.003],[106.6905,-3],[106.681,-2.9895],[106.6775,-2.9839],[106.676,-2.9756],[106.6682,-2.9782],[106.6613,-2.9779],[106.6535,-2.9755],[106.6361,-2.9739],[106.6293,-2.9704],[106.6286,-2.9634],[106.6211,-2.9609],[106.6182,-2.9651],[106.6144,-2.965],[106.6039,-2.9595],[106.5993,-2.9548],[106.5948,-2.9476],[106.5915,-2.9339],[106.5907,-2.917],[106.5929,-2.9001],[106.5951,-2.8906],[106.6007,-2.8763],[106.6002,-2.8694],[106.6023,-2.8623],[106.6178,-2.834],[106.6232,-2.8159],[106.6315,-2.7924],[106.6345,-2.7865],[106.6414,-2.7676],[106.6466,-2.7585],[106.6459,-2.7547],[106.6524,-2.7427],[106.6566,-2.7316],[106.6615,-2.7158]]}},{"type":"Feature","properties":{"mhid":"1332:151","alt_name":"KABUPATEN BELITUNG TIMUR","latitude":-2.9627,"longitude":108.15216,"sample_value":548},"geometry":{"type":"LineString","coordinates":[[108.4441,-3.3278],[108.4407,-3.324],[108.438,-3.3305],[108.4427,-3.3398],[108.446,-3.3398],[108.447,-3.3322],[108.4441,-3.3278]]}},{"type":"Feature","properties":{"mhid":"1332:151","alt_name":"KABUPATEN BELITUNG TIMUR","latitude":-2.9627,"longitude":108.15216,"sample_value":548},"geometry":{"type":"LineString","coordinates":[[108.4139,-3.312],[108.4156,-3.3058],[108.4135,-3.3014],[108.4088,-3.3072],[108.4061,-3.3139],[108.4104,-3.3161],[108.4139,-3.312]]}},{"type":"Feature","properties":{"mhid":"1332:151","alt_name":"KABUPATEN BELITUNG TIMUR","latitude":-2.9627,"longitude":108.15216,"sample_value":548},"geometry":{"type":"LineString","coordinates":[[108.3953,-3.2918],[108.397,-3.2857],[108.3915,-3.2851],[108.3801,-3.2998],[108.3814,-3.303],[108.3867,-3.3046],[108.3928,-3.3009],[108.3953,-3.2918]]}},{"type":"Feature","properties":{"mhid":"1332:151","alt_name":"KABUPATEN BELITUNG TIMUR","latitude":-2.9627,"longitude":108.15216,"sample_value":548},"geometry":{"type":"LineString","coordinates":[[108.3876,-3.2426],[108.3837,-3.239],[108.3742,-3.2456],[108.3734,-3.2497],[108.3778,-3.2587],[108.382,-3.262],[108.389,-3.2588],[108.3928,-3.2531],[108.389,-3.2483],[108.3876,-3.2426]]}},{"type":"Feature","properties":{"mhid":"1332:151","alt_name":"KABUPATEN BELITUNG TIMUR","latitude":-2.9627,"longitude":108.15216,"sample_value":548},"geometry":{"type":"LineString","coordinates":[[108.3953,-3.2419],[108.3909,-3.2379],[108.3893,-3.2465],[108.3935,-3.247],[108.3953,-3.2419]]}},{"type":"Feature","properties":{"mhid":"1332:151","alt_name":"KABUPATEN BELITUNG TIMUR","latitude":-2.9627,"longitude":108.15216,"sample_value":548},"geometry":{"type":"LineString","coordinates":[[108.2017,-3.2196],[108.1938,-3.2196],[108.1874,-3.2257],[108.1926,-3.2295],[108.198,-3.228],[108.2017,-3.2196]]}},{"type":"Feature","properties":{"mhid":"1332:151","alt_name":"KABUPATEN BELITUNG TIMUR","latitude":-2.9627,"longitude":108.15216,"sample_value":548},"geometry":{"type":"LineString","coordinates":[[108.2868,-3.208],[108.2827,-3.2081],[108.2758,-3.2125],[108.2736,-3.221],[108.2769,-3.2252],[108.2812,-3.2247],[108.2869,-3.2189],[108.2893,-3.2102],[108.2868,-3.208]]}},{"type":"Feature","properties":{"mhid":"1332:151","alt_name":"KABUPATEN BELITUNG TIMUR","latitude":-2.9627,"longitude":108.15216,"sample_value":548},"geometry":{"type":"LineString","coordinates":[[108.2062,-3.1989],[108.1972,-3.2024],[108.1861,-3.2112],[108.1893,-3.2139],[108.1958,-3.2092],[108.2002,-3.2079],[108.2067,-3.2021],[108.2062,-3.1989]]}},{"type":"Feature","properties":{"mhid":"1332:151","alt_name":"KABUPATEN BELITUNG TIMUR","latitude":-2.9627,"longitude":108.15216,"sample_value":548},"geometry":{"type":"LineString","coordinates":[[108.2064,-3.1699],[108.1969,-3.1736],[108.1978,-3.1765],[108.2045,-3.1773],[108.2088,-3.1753],[108.2064,-3.1699]]}},{"type":"Feature","properties":{"mhid":"1332:151","alt_name":"KABUPATEN BELITUNG TIMUR","latitude":-2.9627,"longitude":108.15216,"sample_value":548},"geometry":{"type":"LineString","coordinates":[[108.1909,-3.1663],[108.1855,-3.1667],[108.1785,-3.1751],[108.1786,-3.1787],[108.1834,-3.1794],[108.1872,-3.1751],[108.1953,-3.1698],[108.1909,-3.1663]]}},{"type":"Feature","properties":{"mhid":"1332:151","alt_name":"KABUPATEN BELITUNG TIMUR","latitude":-2.9627,"longitude":108.15216,"sample_value":548},"geometry":{"type":"LineString","coordinates":[[108.2163,-3.1426],[108.2125,-3.1437],[108.2107,-3.1494],[108.2169,-3.1489],[108.2163,-3.1426]]}},{"type":"Feature","properties":{"mhid":"1332:151","alt_name":"KABUPATEN BELITUNG TIMUR","latitude":-2.9627,"longitude":108.15216,"sample_value":548},"geometry":{"type":"LineString","coordinates":[[107.8921,-3.128],[107.8937,-3.1246],[107.8926,-3.1186],[107.8874,-3.1224],[107.8921,-3.128]]}},{"type":"Feature","properties":{"mhid":"1332:151","alt_name":"KABUPATEN BELITUNG TIMUR","latitude":-2.9627,"longitude":108.15216,"sample_value":548},"geometry":{"type":"LineString","coordinates":[[108.2984,-3.0589],[108.2973,-3.0683],[108.3013,-3.0665],[108.301,-3.0591],[108.2984,-3.0589]]}},{"type":"Feature","properties":{"mhid":"1332:151","alt_name":"KABUPATEN BELITUNG TIMUR","latitude":-2.9627,"longitude":108.15216,"sample_value":548},"geometry":{"type":"LineString","coordinates":[[108.2545,-3.0453],[108.2432,-3.0494],[108.2413,-3.0556],[108.2348,-3.0644],[108.2384,-3.074],[108.2452,-3.0775],[108.2535,-3.0679],[108.2554,-3.0587],[108.2663,-3.0584],[108.2728,-3.0543],[108.2685,-3.0491],[108.2603,-3.0455],[108.2545,-3.0453]]}},{"type":"Feature","properties":{"mhid":"1332:151","alt_name":"KABUPATEN BELITUNG TIMUR","latitude":-2.9627,"longitude":108.15216,"sample_value":548},"geometry":{"type":"LineString","coordinates":[[108.4142,-2.7859],[108.4119,-2.7876],[108.4154,-2.7938],[108.42,-2.7923],[108.4142,-2.7859]]}},{"type":"Feature","properties":{"mhid":"1332:151","alt_name":"KABUPATEN BELITUNG TIMUR","latitude":-2.9627,"longitude":108.15216,"sample_value":548},"geometry":{"type":"LineString","coordinates":[[108.417,-2.6825],[108.4128,-2.6815],[108.4121,-2.6866],[108.4185,-2.693],[108.4213,-2.6869],[108.417,-2.6825]]}},{"type":"Feature","properties":{"mhid":"1332:151","alt_name":"KABUPATEN BELITUNG TIMUR","latitude":-2.9627,"longitude":108.15216,"sample_value":548},"geometry":{"type":"LineString","coordinates":[[108.0267,-2.6514],[108.0213,-2.6535],[108.0192,-2.6656],[108.0249,-2.6608],[108.0289,-2.6548],[108.0267,-2.6514]]}},{"type":"Feature","properties":{"mhid":"1332:151","alt_name":"KABUPATEN BELITUNG TIMUR","latitude":-2.9627,"longitude":108.15216,"sample_value":548},"geometry":{"type":"LineString","coordinates":[[108.4929,-2.6279],[108.4924,-2.6329],[108.4958,-2.6384],[108.4991,-2.6344],[108.4929,-2.6279]]}},{"type":"Feature","properties":{"mhid":"1332:151","alt_name":"KABUPATEN BELITUNG TIMUR","latitude":-2.9627,"longitude":108.15216,"sample_value":548},"geometry":{"type":"LineString","coordinates":[[108.7297,-2.5819],[108.7271,-2.5822],[108.726,-2.5885],[108.7275,-2.5931],[108.7332,-2.5983],[108.7408,-2.5975],[108.7423,-2.5945],[108.7324,-2.582],[108.7297,-2.5819]]}},{"type":"Feature","properties":{"mhid":"1332:151","alt_name":"KABUPATEN BELITUNG TIMUR","latitude":-2.9627,"longitude":108.15216,"sample_value":548},"geometry":{"type":"LineString","coordinates":[[107.8488,-3.0529],[107.8489,-3.0607],[107.8599,-3.0585],[107.8651,-3.0682],[107.8634,-3.0717],[107.8668,-3.0743],[107.8725,-3.0739],[107.8758,-3.0798],[107.8789,-3.0817],[107.8835,-3.08],[107.8893,-3.082],[107.8891,-3.0897],[107.899,-3.0971],[107.8953,-3.1053],[107.8889,-3.1048],[107.8827,-3.1101],[107.8866,-3.1179],[107.8942,-3.1182],[107.904,-3.1152],[107.9135,-3.1195],[107.9182,-3.1231],[107.9235,-3.1317],[107.9337,-3.1324],[107.933,-3.1377],[107.9302,-3.1416],[107.9323,-3.1499],[107.9404,-3.1511],[107.9512,-3.1589],[107.9594,-3.1619],[107.9637,-3.169],[107.9633,-3.1728],[107.9705,-3.1809],[107.9735,-3.1941],[107.9721,-3.2],[107.9692,-3.2025],[107.9697,-3.21],[107.9671,-3.2153],[107.9668,-3.2367],[107.9656,-3.2423],[107.967,-3.2468],[107.9756,-3.255],[107.9746,-3.2609],[107.9832,-3.2719],[107.9913,-3.2682],[107.9904,-3.261],[107.9954,-3.2589],[107.9964,-3.255],[108.0075,-3.2469],[108.0115,-3.2476],[108.0144,-3.2435],[108.0228,-3.2431],[108.03,-3.2447],[108.0364,-3.2432],[108.0416,-3.2457],[108.0475,-3.2405],[108.0605,-3.2394],[108.0696,-3.2451],[108.0804,-3.2465],[108.0834,-3.243],[108.0806,-3.239],[108.0808,-3.2347],[108.0837,-3.2288],[108.0841,-3.2232],[108.0871,-3.22],[108.0867,-3.2079],[108.0836,-3.2046],[108.0788,-3.2032],[108.0724,-3.1974],[108.0692,-3.188],[108.0724,-3.182],[108.0771,-3.1784],[108.0795,-3.1706],[108.0861,-3.1675],[108.0997,-3.1665],[108.1081,-3.169],[108.1127,-3.1736],[108.1312,-3.1748],[108.1387,-3.174],[108.1481,-3.1708],[108.1525,-3.1721],[108.1575,-3.1661],[108.1617,-3.1651],[108.1709,-3.1604],[108.1768,-3.1525],[108.1832,-3.1468],[108.1854,-3.1428],[108.1915,-3.143],[108.2042,-3.147],[108.2087,-3.1453],[108.2053,-3.1348],[108.2007,-3.1305],[108.1907,-3.1285],[108.1856,-3.131],[108.182,-3.1277],[108.1799,-3.1201],[108.1842,-3.1086],[108.1886,-3.1061],[108.1927,-3.101],[108.193,-3.0969],[108.2,-3.0822],[108.2091,-3.0696],[108.2105,-3.0638],[108.2165,-3.0571],[108.2173,-3.0541],[108.2157,-3.0402],[108.2159,-3.0357],[108.2125,-3.0337],[108.2079,-3.0169],[108.2101,-3.008],[108.2211,-2.9855],[108.2252,-2.9808],[108.2297,-2.9785],[108.2364,-2.9689],[108.2472,-2.9559],[108.2441,-2.9398],[108.2452,-2.9327],[108.2495,-2.9196],[108.2535,-2.9123],[108.2638,-2.8981],[108.273,-2.8902],[108.2839,-2.8838],[108.2902,-2.8814],[108.2935,-2.8755],[108.2967,-2.8627],[108.2981,-2.849],[108.2965,-2.8468],[108.2935,-2.8316],[108.2902,-2.8223],[108.2844,-2.8129],[108.2823,-2.8045],[108.2784,-2.7963],[108.2769,-2.7903],[108.2721,-2.7798],[108.2662,-2.7706],[108.2673,-2.7589],[108.2711,-2.7568],[108.2708,-2.7518],[108.2615,-2.7434],[108.2509,-2.7423],[108.2481,-2.7402],[108.2454,-2.7338],[108.2418,-2.7315],[108.2398,-2.7257],[108.2312,-2.7199],[108.2257,-2.7139],[108.2234,-2.714],[108.2185,-2.7063],[108.2188,-2.703],[108.2083,-2.7015],[108.2018,-2.6897],[108.1921,-2.6909],[108.1933,-2.6863],[108.1918,-2.6796],[108.1856,-2.6767],[108.1842,-2.6792],[108.1782,-2.6774],[108.1791,-2.6746],[108.1755,-2.6703],[108.1709,-2.669],[108.1702,-2.6761],[108.1667,-2.6865],[108.1612,-2.6829],[108.1625,-2.6765],[108.1495,-2.6724],[108.1513,-2.6688],[108.1536,-2.6568],[108.155,-2.6542],[108.1501,-2.6499],[108.142,-2.6503],[108.1378,-2.6472],[108.14,-2.6427],[108.1388,-2.639],[108.1283,-2.6341],[108.1282,-2.6298],[108.1212,-2.6289],[108.1134,-2.6317],[108.1111,-2.6267],[108.1108,-2.6211],[108.1048,-2.6149],[108.0971,-2.6136],[108.0936,-2.6077],[108.0872,-2.6046],[108.0867,-2.5989],[108.0778,-2.6069],[108.0688,-2.6055],[108.0681,-2.6015],[108.0578,-2.6062],[108.0432,-2.5985],[108.0411,-2.6021],[108.0447,-2.606],[108.0442,-2.6102],[108.0379,-2.6099],[108.0374,-2.6179],[108.0399,-2.6225],[108.0386,-2.6254],[108.04,-2.6365],[108.0378,-2.6433],[108.0334,-2.6438],[108.0296,-2.6569],[108.0265,-2.6612],[108.0189,-2.667],[108.017,-2.6646],[108.0195,-2.6553],[108.0255,-2.6495],[108.0291,-2.642],[108.0238,-2.6422],[108.0216,-2.6375],[108.0211,-2.6308],[108.0141,-2.6236],[108.0124,-2.6195],[108.0073,-2.6207],[108.0029,-2.6189],[108.0104,-2.6054],[108.0132,-2.5958],[108.0093,-2.5917],[108.0083,-2.5851],[108.0036,-2.5803],[107.9986,-2.5793],[107.9974,-2.5764],[107.9904,-2.5729],[107.9865,-2.5753],[107.9778,-2.5723],[107.9712,-2.5747],[107.9579,-2.5779],[107.952,-2.5699],[107.9433,-2.5719],[107.9379,-2.5698],[107.9374,-2.5738],[107.94,-2.5851],[107.9384,-2.5902],[107.9271,-2.6004],[107.9099,-2.6094],[107.8991,-2.6084],[107.9,-2.6137],[107.8984,-2.6182],[107.9024,-2.627],[107.9009,-2.6324],[107.9021,-2.6369],[107.8978,-2.6386],[107.8965,-2.6632],[107.8938,-2.6694],[107.8855,-2.6705],[107.8814,-2.679],[107.8789,-2.6809],[107.8764,-2.6903],[107.8822,-2.6939],[107.9048,-2.7052],[107.9065,-2.7107],[107.9217,-2.7114],[107.9256,-2.7095],[107.9324,-2.7104],[107.9349,-2.7166],[107.9332,-2.7205],[107.9476,-2.7349],[107.9531,-2.7385],[107.9576,-2.7393],[107.9625,-2.7433],[107.9552,-2.75],[107.9583,-2.757],[107.9666,-2.7579],[107.9709,-2.7532],[107.9793,-2.7532],[107.982,-2.7509],[107.9899,-2.7515],[107.9956,-2.7553],[107.9918,-2.7666],[107.9963,-2.7741],[107.9944,-2.7778],[107.98,-2.7801],[107.9788,-2.7859],[107.9684,-2.7884],[107.9644,-2.7923],[107.9584,-2.7907],[107.955,-2.7945],[107.9489,-2.7933],[107.9368,-2.7994],[107.9268,-2.7994],[107.9171,-2.8006],[107.9135,-2.7984],[107.9091,-2.7994],[107.9038,-2.7973],[107.8887,-2.7978],[107.8836,-2.7998],[107.8807,-2.7983],[107.8678,-2.8006],[107.8625,-2.8064],[107.8593,-2.8147],[107.852,-2.8184],[107.8487,-2.8243],[107.8527,-2.8292],[107.8523,-2.8327],[107.8459,-2.8429],[107.8473,-2.8476],[107.8551,-2.8561],[107.855,-2.8675],[107.8373,-2.8774],[107.8293,-2.8756],[107.8249,-2.8778],[107.8197,-2.8758],[107.8083,-2.8743],[107.8014,-2.8713],[107.7948,-2.8659],[107.7904,-2.8654],[107.7819,-2.8676],[107.7769,-2.8752],[107.7731,-2.876],[107.754,-2.884],[107.7506,-2.8936],[107.7596,-2.8997],[107.7614,-2.9028],[107.7658,-2.9036],[107.7788,-2.9128],[107.7832,-2.917],[107.7839,-2.9206],[107.7894,-2.9208],[107.7996,-2.9302],[107.805,-2.9309],[107.8092,-2.9367],[107.8107,-2.9421],[107.8179,-2.9426],[107.8231,-2.9471],[107.8272,-2.9595],[107.8335,-2.9598],[107.8378,-2.9664],[107.8411,-2.9678],[107.8466,-2.9764],[107.8501,-2.9765],[107.8482,-2.9847],[107.8536,-2.9874],[107.858,-2.9956],[107.8534,-3.0085],[107.8547,-3.0122],[107.8619,-3.0145],[107.8637,-3.0184],[107.8613,-3.0241],[107.864,-3.0289],[107.863,-3.0364],[107.8549,-3.0448],[107.8513,-3.0468],[107.8488,-3.0529]]}},{"type":"Feature","properties":{"mhid":"1332:151","alt_name":"KABUPATEN BELITUNG TIMUR","latitude":-2.9627,"longitude":108.15216,"sample_value":548},"geometry":{"type":"LineString","coordinates":[[108.565,-2.5649],[108.5612,-2.5669],[108.5656,-2.5734],[108.5652,-2.5801],[108.5702,-2.5806],[108.5716,-2.5757],[108.5708,-2.5705],[108.565,-2.5649]]}},{"type":"Feature","properties":{"mhid":"1332:151","alt_name":"KABUPATEN BELITUNG TIMUR","latitude":-2.9627,"longitude":108.15216,"sample_value":548},"geometry":{"type":"LineString","coordinates":[[108.5459,-2.4935],[108.5427,-2.4936],[108.5357,-2.5018],[108.5351,-2.5054],[108.5369,-2.5133],[108.5424,-2.5128],[108.5484,-2.5085],[108.5468,-2.5033],[108.5479,-2.4974],[108.5459,-2.4935]]}},{"type":"Feature","properties":{"mhid":"1332:152","alt_name":"KOTA PANGKAL PINANG","latitude":-2.13333,"longitude":106.13333,"sample_value":136},"geometry":{"type":"LineString","coordinates":[[106.1513,-2.0826],[106.1477,-2.0833],[106.1358,-2.0971],[106.132,-2.0976],[106.1277,-2.0945],[106.1276,-2.0897],[106.1357,-2.0848],[106.1412,-2.0786],[106.141,-2.0716],[106.1346,-2.0607],[106.131,-2.0575],[106.1259,-2.0595],[106.1159,-2.0678],[106.1105,-2.0707],[106.1061,-2.0661],[106.1032,-2.0728],[106.1081,-2.0727],[106.1077,-2.0776],[106.1033,-2.0787],[106.0974,-2.0753],[106.0865,-2.0771],[106.0745,-2.0763],[106.0696,-2.0748],[106.0656,-2.0694],[106.0597,-2.067],[106.0573,-2.0735],[106.0511,-2.0769],[106.0452,-2.0751],[106.0407,-2.0796],[106.0423,-2.0852],[106.0413,-2.0913],[106.043,-2.0951],[106.0488,-2.0983],[106.0454,-2.1063],[106.0413,-2.1092],[106.0401,-2.113],[106.0557,-2.1186],[106.0652,-2.1252],[106.0822,-2.1274],[106.0891,-2.1359],[106.0889,-2.1445],[106.0949,-2.1452],[106.1033,-2.15],[106.1037,-2.1546],[106.109,-2.1526],[106.1124,-2.1547],[106.1178,-2.1545],[106.1257,-2.1514],[106.133,-2.146],[106.1541,-2.1601],[106.1591,-2.1559],[106.1743,-2.155],[106.1775,-2.1485],[106.1759,-2.1397],[106.1787,-2.1288],[106.1676,-2.1045],[106.1635,-2.0987],[106.1654,-2.0932],[106.1618,-2.0917],[106.1513,-2.0826]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.6306,0.4975],[103.6241,0.4883],[103.6255,0.4842],[103.6295,0.4845],[103.6352,0.4905],[103.6306,0.4975]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.6367,0.507],[103.6299,0.5061],[103.6348,0.4982],[103.638,0.4994],[103.6394,0.5041],[103.6367,0.507]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.6286,0.5099],[103.6332,0.5125],[103.6213,0.5219],[103.6239,0.5144],[103.6286,0.5099]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.6362,0.532],[103.631,0.5328],[103.625,0.5305],[103.6216,0.5312],[103.6203,0.5257],[103.6298,0.5174],[103.6351,0.5153],[103.637,0.5207],[103.6362,0.532]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.5661,0.5472],[103.5577,0.5432],[103.5604,0.5379],[103.5671,0.5379],[103.5695,0.5445],[103.5661,0.5472]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.6268,0.5361],[103.6289,0.543],[103.6254,0.5486],[103.623,0.5445],[103.6235,0.5377],[103.6268,0.5361]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.7814,0.5404],[103.7761,0.5485],[103.7731,0.5451],[103.7764,0.5394],[103.7814,0.5404]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.5989,0.5309],[103.595,0.5317],[103.5884,0.5389],[103.5859,0.5463],[103.5831,0.5488],[103.5783,0.5579],[103.5753,0.5571],[103.5696,0.5511],[103.5761,0.5363],[103.5886,0.528],[103.5947,0.5183],[103.5971,0.5029],[103.5969,0.4959],[103.5985,0.4904],[103.6045,0.4908],[103.6076,0.4957],[103.6115,0.4967],[103.6193,0.495],[103.6243,0.5048],[103.6202,0.5106],[103.6104,0.5148],[103.6053,0.5201],[103.5989,0.5309]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.6575,0.5712],[103.6528,0.5682],[103.6583,0.5603],[103.6605,0.5524],[103.6664,0.5549],[103.6674,0.5621],[103.6641,0.5672],[103.6575,0.5712]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.6492,0.5701],[103.651,0.5743],[103.6458,0.5774],[103.6458,0.5718],[103.6492,0.5701]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.5356,0.5935],[103.531,0.5987],[103.5259,0.589],[103.5316,0.5851],[103.5353,0.5874],[103.5356,0.5935]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.7073,0.6121],[103.7052,0.6065],[103.715,0.6047],[103.7141,0.6094],[103.7073,0.6121]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.6407,0.6246],[103.636,0.6256],[103.633,0.6214],[103.6382,0.6158],[103.6458,0.6123],[103.6517,0.6112],[103.6616,0.611],[103.6636,0.6164],[103.6542,0.6178],[103.6514,0.6218],[103.6462,0.6213],[103.6407,0.6246]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.6386,0.6356],[103.6298,0.6353],[103.6311,0.631],[103.6366,0.6315],[103.641,0.6283],[103.6426,0.6321],[103.6386,0.6356]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.6774,0.6348],[103.6727,0.6362],[103.6739,0.6226],[103.6711,0.6176],[103.6775,0.6124],[103.6828,0.6131],[103.69,0.6093],[103.6938,0.611],[103.6996,0.609],[103.7015,0.6131],[103.7071,0.6151],[103.7051,0.6197],[103.6982,0.6233],[103.6942,0.6275],[103.6774,0.6348]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.5813,0.6547],[103.5778,0.6623],[103.5718,0.6621],[103.5738,0.6557],[103.5813,0.6547]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.5723,0.6795],[103.5677,0.6797],[103.5677,0.6754],[103.5721,0.6695],[103.5825,0.6694],[103.5831,0.6736],[103.575,0.68],[103.5723,0.6795]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.521,0.6909],[103.5,0.6893],[103.4923,0.6854],[103.4865,0.6785],[103.4823,0.6715],[103.4765,0.6589],[103.4709,0.6443],[103.4638,0.6352],[103.465,0.6314],[103.4624,0.6219],[103.4717,0.6218],[103.475,0.6205],[103.4798,0.6239],[103.4914,0.6262],[103.4973,0.6373],[103.5118,0.6576],[103.5156,0.6655],[103.5163,0.6754],[103.5179,0.6814],[103.5226,0.6883],[103.521,0.6909]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.5865,0.6777],[103.5904,0.6822],[103.5897,0.6852],[103.5922,0.691],[103.5853,0.6974],[103.5808,0.6954],[103.5779,0.6866],[103.5805,0.6815],[103.5865,0.6777]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.5094,0.7026],[103.5026,0.7062],[103.4975,0.6977],[103.4964,0.6919],[103.5093,0.6937],[103.5167,0.6939],[103.5164,0.6987],[103.5124,0.7029],[103.5094,0.7026]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.745,0.7362],[103.7366,0.7329],[103.7299,0.7325],[103.7186,0.7299],[103.7122,0.7255],[103.7039,0.7278],[103.6954,0.7275],[103.6921,0.7205],[103.6951,0.714],[103.6939,0.7102],[103.706,0.6984],[103.7211,0.689],[103.7275,0.6929],[103.7346,0.69],[103.7377,0.687],[103.7424,0.6874],[103.7347,0.7003],[103.7325,0.7121],[103.7345,0.717],[103.7397,0.7192],[103.744,0.7274],[103.7476,0.729],[103.7497,0.7359],[103.745,0.7362]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.6567,0.7403],[103.6569,0.7368],[103.6662,0.7295],[103.6644,0.7258],[103.6741,0.7126],[103.6798,0.7168],[103.679,0.7207],[103.6821,0.7236],[103.6882,0.7235],[103.6843,0.7307],[103.6764,0.7356],[103.6661,0.7388],[103.6567,0.7403]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.568,0.726],[103.5684,0.7341],[103.5719,0.7357],[103.568,0.7419],[103.5594,0.7485],[103.5571,0.7458],[103.561,0.7396],[103.5657,0.7266],[103.568,0.726]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.9726,0.7534],[103.9689,0.7547],[103.9638,0.7525],[103.9636,0.7473],[103.9744,0.7503],[103.9726,0.7534]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.7356,0.7565],[103.7306,0.7578],[103.7242,0.7542],[103.7252,0.7505],[103.7296,0.7491],[103.7388,0.7514],[103.7356,0.7565]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.6801,0.7609],[103.6785,0.7684],[103.67,0.7606],[103.6755,0.7584],[103.6801,0.7609]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.9654,0.7675],[103.9653,0.776],[103.9613,0.7734],[103.9572,0.7674],[103.9511,0.7634],[103.9555,0.7614],[103.9654,0.7675]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.8675,0.7816],[103.8611,0.7907],[103.8585,0.7886],[103.8675,0.7816]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.5401,0.7937],[103.5342,0.7934],[103.5344,0.7872],[103.5312,0.7815],[103.5306,0.7766],[103.532,0.7607],[103.5422,0.7552],[103.546,0.7594],[103.5444,0.7678],[103.5489,0.7702],[103.5534,0.7794],[103.5539,0.7851],[103.5501,0.7923],[103.5458,0.7946],[103.5401,0.7937]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.7101,0.7982],[103.7111,0.7907],[103.7162,0.7881],[103.7183,0.7928],[103.7101,0.7982]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.844,0.7842],[103.8384,0.7913],[103.8356,0.8017],[103.8317,0.7921],[103.8338,0.784],[103.844,0.7842]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.5315,0.8094],[103.532,0.812],[103.5266,0.8148],[103.5246,0.8114],[103.5315,0.8094]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.4734,0.8134],[103.4717,0.8172],[103.4666,0.8206],[103.4536,0.8225],[103.4533,0.8182],[103.4639,0.8159],[103.4676,0.8129],[103.4734,0.8134]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.4471,0.8223],[103.451,0.8236],[103.4501,0.8278],[103.4451,0.8285],[103.4408,0.8264],[103.4471,0.8223]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.521,0.8272],[103.5162,0.8318],[103.5155,0.8262],[103.521,0.8272]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.6675,0.83],[103.6646,0.8312],[103.6608,0.8268],[103.6684,0.8176],[103.6746,0.8042],[103.6815,0.7927],[103.6885,0.7835],[103.7015,0.7607],[103.7014,0.758],[103.7063,0.7529],[103.7139,0.7523],[103.7163,0.7565],[103.7274,0.7586],[103.7289,0.7657],[103.7262,0.7698],[103.7186,0.775],[103.7087,0.7879],[103.7068,0.7921],[103.7045,0.8031],[103.6937,0.8057],[103.6837,0.8095],[103.6781,0.8133],[103.6675,0.83]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.917,0.8174],[103.9146,0.819],[103.9084,0.8322],[103.9061,0.8285],[103.9064,0.8195],[103.896,0.8023],[103.8881,0.7975],[103.8882,0.7935],[103.8931,0.7902],[103.8991,0.7895],[103.9045,0.7817],[103.9112,0.7828],[103.9155,0.7778],[103.9157,0.773],[103.9126,0.771],[103.9176,0.7641],[103.916,0.7579],[103.9191,0.7547],[103.9256,0.7579],[103.9255,0.7631],[103.9333,0.7673],[103.9364,0.776],[103.9407,0.7791],[103.9389,0.7829],[103.941,0.7872],[103.9367,0.7948],[103.9367,0.7975],[103.9285,0.8109],[103.9232,0.8156],[103.917,0.8174]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.6568,0.8333],[103.66,0.8363],[103.6538,0.8448],[103.6515,0.8411],[103.6568,0.8333]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.5016,0.8445],[103.5011,0.851],[103.496,0.8501],[103.4992,0.844],[103.5016,0.8445]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.7006,0.8587],[103.6952,0.8584],[103.6932,0.8554],[103.6957,0.8388],[103.6974,0.8367],[103.7044,0.8399],[103.7006,0.8587]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.6763,0.8549],[103.6722,0.8627],[103.662,0.8692],[103.6678,0.86],[103.6767,0.8491],[103.6822,0.8386],[103.683,0.8312],[103.6895,0.8248],[103.6941,0.8256],[103.6896,0.8316],[103.6763,0.8549]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.7704,0.8824],[103.7672,0.8811],[103.7723,0.8749],[103.7756,0.8796],[103.7704,0.8824]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.489,0.8477],[103.4718,0.8567],[103.4594,0.8555],[103.4531,0.8563],[103.4453,0.863],[103.434,0.8687],[103.4322,0.8716],[103.4211,0.8763],[103.412,0.885],[103.4144,0.8756],[103.4118,0.8691],[103.4146,0.8572],[103.4127,0.85],[103.4168,0.8453],[103.4339,0.8327],[103.4388,0.8301],[103.4473,0.8311],[103.456,0.8291],[103.4609,0.8247],[103.4676,0.8255],[103.4787,0.818],[103.4843,0.8081],[103.4874,0.8001],[103.4954,0.7913],[103.4991,0.7908],[103.5058,0.7825],[103.5154,0.7768],[103.5265,0.7662],[103.5287,0.7704],[103.5271,0.7786],[103.5332,0.7874],[103.5318,0.7906],[103.5315,0.8008],[103.5252,0.8086],[103.5224,0.8099],[103.5196,0.8156],[103.5106,0.8221],[103.5036,0.8298],[103.4996,0.8379],[103.494,0.845],[103.489,0.8477]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.7025,0.8746],[103.7021,0.8847],[103.6983,0.8825],[103.7025,0.8746]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.7534,0.8816],[103.7492,0.8862],[103.7294,0.8811],[103.7253,0.8818],[103.7244,0.8744],[103.7182,0.8734],[103.721,0.8657],[103.7214,0.855],[103.7228,0.8504],[103.7339,0.8384],[103.7379,0.8277],[103.7423,0.8228],[103.7527,0.8155],[103.7598,0.8043],[103.7652,0.7996],[103.7722,0.7957],[103.7841,0.7934],[103.7904,0.7855],[103.7967,0.7822],[103.801,0.7775],[103.808,0.7773],[103.8202,0.7724],[103.823,0.7665],[103.8226,0.7593],[103.8205,0.7514],[103.8305,0.7522],[103.8301,0.7565],[103.834,0.7607],[103.8351,0.7722],[103.8346,0.7799],[103.8312,0.7931],[103.8354,0.8043],[103.8349,0.8117],[103.8285,0.8157],[103.8193,0.8272],[103.8112,0.8427],[103.8068,0.8481],[103.7955,0.8557],[103.7926,0.8607],[103.7852,0.8697],[103.7789,0.874],[103.7717,0.8732],[103.7655,0.8805],[103.7581,0.8798],[103.7534,0.8816]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.3783,0.8949],[103.376,0.8968],[103.3704,0.8937],[103.3718,0.8848],[103.3704,0.876],[103.3667,0.8704],[103.3686,0.864],[103.3661,0.8565],[103.359,0.846],[103.3539,0.8439],[103.3532,0.8362],[103.3504,0.8334],[103.3518,0.8262],[103.3514,0.8178],[103.347,0.8066],[103.3424,0.8007],[103.3452,0.794],[103.3496,0.7875],[103.3507,0.7685],[103.3516,0.7657],[103.3516,0.7405],[103.3529,0.7394],[103.3598,0.7252],[103.3656,0.7174],[103.3678,0.7122],[103.377,0.7006],[103.3859,0.6924],[103.3963,0.6798],[103.4013,0.6707],[103.4004,0.6631],[103.4016,0.659],[103.4001,0.6497],[103.407,0.6477],[103.4118,0.6491],[103.4292,0.6405],[103.4349,0.6365],[103.4477,0.6385],[103.4573,0.6376],[103.46,0.6402],[103.4671,0.6533],[103.476,0.6724],[103.4918,0.6965],[103.5017,0.7161],[103.5043,0.7184],[103.5074,0.7332],[103.513,0.7445],[103.5129,0.7551],[103.5091,0.7627],[103.5011,0.7722],[103.486,0.7937],[103.48,0.7996],[103.4725,0.8092],[103.4642,0.8145],[103.4593,0.8149],[103.4472,0.8195],[103.438,0.8249],[103.4291,0.8325],[103.4108,0.8457],[103.4067,0.8592],[103.4098,0.8643],[103.4083,0.8699],[103.4087,0.8766],[103.4037,0.8832],[103.4004,0.8801],[103.396,0.8849],[103.389,0.89],[103.3783,0.8949]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.8225,0.8917],[103.8142,0.8969],[103.8093,0.8905],[103.816,0.8797],[103.8207,0.8632],[103.8271,0.8511],[103.8324,0.8432],[103.8405,0.8341],[103.8558,0.8212],[103.8664,0.8171],[103.8725,0.8078],[103.8791,0.8007],[103.8896,0.7996],[103.8941,0.8018],[103.8983,0.8097],[103.9038,0.8163],[103.9054,0.836],[103.9054,0.8454],[103.9024,0.8496],[103.8925,0.8595],[103.8728,0.874],[103.8688,0.875],[103.8629,0.8811],[103.8551,0.8801],[103.8473,0.8824],[103.8364,0.8841],[103.8311,0.888],[103.8225,0.8917]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.7527,0.9012],[103.7456,0.8994],[103.745,0.894],[103.7486,0.8916],[103.7535,0.8842],[103.7656,0.883],[103.7666,0.8881],[103.7601,0.8956],[103.7527,0.9012]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.798,0.9036],[103.7953,0.9072],[103.7906,0.9022],[103.7961,0.8975],[103.8005,0.899],[103.798,0.9036]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.3584,0.9123],[103.3575,0.9057],[103.3629,0.9081],[103.3584,0.9123]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.3415,0.9144],[103.3363,0.9153],[103.3363,0.9104],[103.333,0.9051],[103.3343,0.8989],[103.3402,0.8954],[103.3439,0.9122],[103.3415,0.9144]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.4376,0.9254],[103.435,0.9247],[103.4286,0.9162],[103.4238,0.9122],[103.4174,0.9106],[103.412,0.9114],[103.4052,0.9069],[103.4053,0.9029],[103.4102,0.8925],[103.4197,0.8823],[103.4238,0.8819],[103.4255,0.8777],[103.4337,0.8723],[103.4354,0.8693],[103.4485,0.8635],[103.4518,0.8604],[103.4586,0.8575],[103.473,0.8582],[103.48,0.8553],[103.4877,0.8556],[103.4871,0.8626],[103.4838,0.8684],[103.4831,0.8812],[103.4784,0.8963],[103.479,0.9068],[103.4755,0.9139],[103.4604,0.9219],[103.4494,0.9217],[103.4376,0.9254]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.5273,0.8677],[103.5284,0.871],[103.5269,0.8788],[103.5169,0.8988],[103.5112,0.906],[103.5107,0.9101],[103.5057,0.9165],[103.4897,0.9261],[103.4866,0.916],[103.4863,0.899],[103.4953,0.8738],[103.5025,0.8622],[103.5122,0.8602],[103.5173,0.8661],[103.5273,0.8677]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.4403,0.9383],[103.4391,0.9358],[103.4419,0.9275],[103.4441,0.9248],[103.4503,0.9233],[103.4589,0.9239],[103.4609,0.9296],[103.4576,0.9338],[103.4467,0.9358],[103.4403,0.9383]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.4174,0.9499],[103.4172,0.946],[103.4109,0.939],[103.4152,0.9329],[103.4151,0.9281],[103.4123,0.9202],[103.4182,0.9136],[103.4235,0.9145],[103.4293,0.9193],[103.4336,0.9261],[103.4394,0.9317],[103.4345,0.9398],[103.4287,0.9454],[103.4216,0.9471],[103.4174,0.9499]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.4937,0.9448],[103.4938,0.9501],[103.4897,0.95],[103.4903,0.9426],[103.4937,0.9448]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.4451,0.9617],[103.437,0.9614],[103.43,0.9543],[103.4382,0.9413],[103.4481,0.9363],[103.4565,0.9357],[103.4618,0.9298],[103.4637,0.9249],[103.4757,0.92],[103.4784,0.9244],[103.4757,0.9396],[103.4769,0.9432],[103.4635,0.959],[103.4558,0.9573],[103.4451,0.9617]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.3581,0.962],[103.3573,0.9565],[103.3616,0.9513],[103.3651,0.9565],[103.362,0.9608],[103.3581,0.962]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.3901,0.9883],[103.3791,0.9951],[103.3716,0.9922],[103.3749,0.9876],[103.3781,0.9877],[103.3887,0.9831],[103.3901,0.9883]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.2889,1.0876],[103.2924,1.0969],[103.2886,1.1006],[103.2863,1.0939],[103.2889,1.0876]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.375,1.1367],[103.3728,1.1258],[103.3675,1.1242],[103.3618,1.1321],[103.3511,1.1347],[103.3484,1.1302],[103.3502,1.1272],[103.3424,1.1223],[103.3398,1.1169],[103.3345,1.1182],[103.3326,1.1124],[103.3274,1.1109],[103.3286,1.1051],[103.3268,1.0972],[103.3194,1.0872],[103.3115,1.0871],[103.3101,1.0765],[103.3123,1.0722],[103.3188,1.0716],[103.3219,1.067],[103.3203,1.0639],[103.3148,1.0603],[103.3116,1.0544],[103.3173,1.0438],[103.3198,1.044],[103.3206,1.037],[103.3278,1.0357],[103.3314,1.0287],[103.3294,1.0207],[103.3311,1.0175],[103.3376,1.0181],[103.3449,1.0164],[103.3517,1.0129],[103.3503,1.0051],[103.3552,1.0042],[103.3575,1.008],[103.3611,1.0067],[103.3677,1.0107],[103.3764,1.0099],[103.3836,1.0079],[103.3884,1.0033],[103.3941,0.9926],[103.4068,0.9911],[103.4206,0.9937],[103.4263,0.9927],[103.4384,0.988],[103.4464,0.9953],[103.4436,1.0006],[103.4323,1.0133],[103.4305,1.0178],[103.4314,1.0234],[103.4254,1.026],[103.4255,1.0314],[103.421,1.0394],[103.4228,1.0467],[103.412,1.0458],[103.4105,1.0492],[103.4038,1.0522],[103.4,1.0518],[103.3985,1.0582],[103.39,1.0649],[103.3897,1.0704],[103.3828,1.0834],[103.3812,1.0897],[103.3827,1.0932],[103.38,1.0963],[103.3805,1.1106],[103.3835,1.1159],[103.3902,1.1197],[103.3818,1.1334],[103.375,1.1367]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.301,1.1418],[103.3013,1.1323],[103.2954,1.1272],[103.2991,1.1242],[103.2939,1.1184],[103.2991,1.1137],[103.3059,1.115],[103.3084,1.1197],[103.3101,1.1317],[103.3075,1.1341],[103.3087,1.1396],[103.3015,1.1391],[103.301,1.1418]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"LineString","coordinates":[[103.3901,1.1651],[103.3812,1.1602],[103.3808,1.1526],[103.3827,1.1456],[103.3907,1.137],[103.3952,1.1298],[103.4006,1.1315],[103.4067,1.129],[103.4101,1.1301],[103.4107,1.1392],[103.4049,1.1495],[103.3953,1.1562],[103.395,1.1611],[103.3901,1.1651]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[107.3991,0.5068],[107.4033,0.511],[107.4144,0.5153],[107.4144,0.5196],[107.4042,0.5196],[107.3948,0.5231],[107.3889,0.5128],[107.3957,0.5059],[107.3991,0.5068]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[107.3872,0.5282],[107.3761,0.5282],[107.3769,0.5239],[107.3846,0.5205],[107.3872,0.5282]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[107.1359,0.5859],[107.1328,0.589],[107.1287,0.5876],[107.1237,0.5815],[107.1353,0.5799],[107.1359,0.5859]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[107.0943,0.6066],[107.088,0.5997],[107.0883,0.5955],[107.0946,0.5993],[107.0971,0.6051],[107.0943,0.6066]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[106.9757,0.6093],[106.9742,0.6035],[106.9787,0.6],[106.9829,0.6028],[106.9811,0.6091],[106.9757,0.6093]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[107.0198,0.6364],[107.0182,0.6405],[107.0201,0.6451],[107.0155,0.649],[107.0129,0.6467],[107.016,0.6428],[107.0154,0.6376],[107.0108,0.6301],[107.0107,0.6262],[107.015,0.6224],[107.0204,0.6217],[107.0236,0.6327],[107.0198,0.6364]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[107.2347,0.6905],[107.2304,0.6956],[107.2287,0.6879],[107.2346,0.6862],[107.2347,0.6905]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.6203,0.7201],[104.6138,0.7201],[104.612,0.7154],[104.5967,0.7056],[104.6032,0.6993],[104.6201,0.6979],[104.6217,0.7061],[104.6258,0.7106],[104.619,0.7174],[104.6203,0.7201]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.659,0.7531],[104.6469,0.75],[104.6397,0.7441],[104.6328,0.7441],[104.629,0.7459],[104.6171,0.7382],[104.6166,0.7357],[104.611,0.7314],[104.6132,0.7211],[104.6189,0.7226],[104.6199,0.717],[104.6246,0.7133],[104.6308,0.7175],[104.6309,0.7211],[104.6357,0.7239],[104.6377,0.7281],[104.6443,0.7328],[104.6469,0.739],[104.6535,0.7459],[104.6611,0.7515],[104.659,0.7531]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.7187,0.7583],[104.7138,0.7524],[104.7164,0.7443],[104.7158,0.7387],[104.7209,0.7363],[104.7258,0.7311],[104.7275,0.7265],[104.7346,0.7174],[104.7381,0.7193],[104.7434,0.7187],[104.745,0.7212],[104.7536,0.7265],[104.7594,0.7314],[104.7582,0.7416],[104.759,0.7466],[104.7489,0.7457],[104.742,0.7488],[104.7358,0.7492],[104.7266,0.7535],[104.7187,0.7583]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.693,0.7627],[104.6892,0.7601],[104.6943,0.7425],[104.6973,0.7377],[104.7012,0.7376],[104.7083,0.7419],[104.7123,0.7414],[104.7155,0.7445],[104.713,0.7532],[104.7152,0.759],[104.7087,0.7617],[104.704,0.7613],[104.693,0.7627]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.594,0.7937],[104.5873,0.7924],[104.5867,0.79],[104.5898,0.7767],[104.579,0.7692],[104.5789,0.7591],[104.5825,0.7527],[104.5901,0.7528],[104.5979,0.7574],[104.6026,0.763],[104.6207,0.777],[104.6273,0.7793],[104.6354,0.7867],[104.6311,0.792],[104.6236,0.7855],[104.6129,0.7873],[104.6061,0.7912],[104.6023,0.7908],[104.594,0.7937]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.6997,0.7925],[104.6911,0.7883],[104.6883,0.7815],[104.6854,0.7791],[104.687,0.7746],[104.6919,0.7694],[104.7034,0.7644],[104.7099,0.7646],[104.722,0.7611],[104.7364,0.7531],[104.7484,0.752],[104.7537,0.758],[104.7525,0.7721],[104.7491,0.7772],[104.7489,0.7824],[104.7466,0.7876],[104.7376,0.7915],[104.7203,0.7905],[104.7171,0.7878],[104.7074,0.7917],[104.6997,0.7925]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.5477,0.7971],[104.5406,0.794],[104.5354,0.785],[104.5225,0.783],[104.5154,0.7769],[104.5096,0.7735],[104.507,0.762],[104.5109,0.7491],[104.5214,0.7616],[104.5306,0.765],[104.5423,0.772],[104.5526,0.775],[104.5625,0.7753],[104.5792,0.7713],[104.5846,0.7742],[104.588,0.7781],[104.585,0.7866],[104.5671,0.7957],[104.5631,0.7939],[104.5538,0.7929],[104.5512,0.7911],[104.5477,0.7971]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.5775,0.798],[104.5768,0.7932],[104.5801,0.7912],[104.5838,0.7955],[104.5775,0.798]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.622,0.7983],[104.6158,0.7917],[104.6232,0.7899],[104.6256,0.7962],[104.622,0.7983]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.6116,0.8009],[104.6063,0.7989],[104.6065,0.796],[104.6112,0.7938],[104.6163,0.7991],[104.6116,0.8009]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.5572,0.8032],[104.5528,0.7975],[104.5594,0.7957],[104.5664,0.7996],[104.5649,0.8017],[104.5572,0.8032]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.7475,0.8018],[104.7415,0.7998],[104.7409,0.794],[104.7488,0.7969],[104.7475,0.8018]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.645,0.8093],[104.6381,0.805],[104.6353,0.8015],[104.6386,0.7989],[104.6458,0.8012],[104.645,0.8093]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.6209,0.8166],[104.6268,0.8257],[104.626,0.8355],[104.6177,0.8359],[104.6093,0.815],[104.6182,0.8139],[104.6209,0.8166]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.623,0.8446],[104.622,0.8457],[104.6124,0.8422],[104.617,0.838],[104.6254,0.8412],[104.623,0.8446]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.3621,0.8484],[104.3535,0.8447],[104.3585,0.8408],[104.3605,0.835],[104.3571,0.8243],[104.3572,0.8213],[104.3519,0.8158],[104.3591,0.8142],[104.3655,0.8198],[104.3642,0.8233],[104.3659,0.8291],[104.364,0.8346],[104.3636,0.8429],[104.3621,0.8484]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.6238,0.8494],[104.6248,0.8556],[104.6226,0.8604],[104.6149,0.851],[104.6137,0.8457],[104.6171,0.8449],[104.6238,0.8494]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.6505,0.8667],[104.6481,0.8682],[104.6411,0.8617],[104.6396,0.8558],[104.6324,0.845],[104.6372,0.8369],[104.6355,0.8242],[104.6324,0.8218],[104.6306,0.8146],[104.6233,0.8128],[104.6208,0.8084],[104.6248,0.8045],[104.6346,0.8039],[104.6365,0.8086],[104.6524,0.8136],[104.6578,0.8188],[104.665,0.8217],[104.6649,0.8265],[104.6618,0.8294],[104.6612,0.8388],[104.6627,0.8478],[104.6582,0.8568],[104.655,0.8581],[104.6505,0.8667]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.6662,0.8856],[104.668,0.8946],[104.6626,0.8912],[104.6662,0.8856]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[107.5465,0.8873],[107.5441,0.8964],[107.5398,0.8921],[107.5392,0.8805],[107.5398,0.8722],[107.5434,0.8676],[107.547,0.8686],[107.5478,0.8772],[107.5494,0.8802],[107.5465,0.8873]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.6875,0.8965],[104.677,0.8952],[104.6737,0.8922],[104.6719,0.8848],[104.6656,0.8696],[104.6615,0.866],[104.6625,0.858],[104.6673,0.8522],[104.6726,0.8511],[104.6768,0.845],[104.6822,0.8487],[104.6875,0.8492],[104.6917,0.8474],[104.6958,0.8495],[104.6901,0.8591],[104.6954,0.8619],[104.694,0.8653],[104.6952,0.8739],[104.6947,0.885],[104.6988,0.886],[104.6928,0.8937],[104.6875,0.8965]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.6313,0.8947],[104.6245,0.897],[104.6208,0.8897],[104.6171,0.8716],[104.6184,0.8649],[104.623,0.8627],[104.6284,0.8541],[104.6323,0.8587],[104.633,0.8625],[104.6381,0.8656],[104.6445,0.8731],[104.6554,0.8785],[104.6611,0.8791],[104.6591,0.8854],[104.6582,0.8937],[104.6508,0.895],[104.647,0.8926],[104.6383,0.8929],[104.6313,0.8947]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.9223,0.937],[104.9195,0.9364],[104.9228,0.9289],[104.927,0.9361],[104.9223,0.937]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.7406,0.9432],[104.7317,0.9432],[104.7302,0.94],[104.7334,0.9335],[104.7378,0.9281],[104.7461,0.9246],[104.7492,0.9214],[104.7554,0.9197],[104.7545,0.9279],[104.752,0.9328],[104.746,0.94],[104.7406,0.9432]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[107.5045,0.9516],[107.4955,0.9436],[107.5028,0.9331],[107.5043,0.9397],[107.5094,0.9414],[107.5089,0.9474],[107.5045,0.9516]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[107.4821,0.9661],[107.4763,0.9551],[107.4769,0.9495],[107.4803,0.9466],[107.486,0.9487],[107.4869,0.9545],[107.4816,0.9616],[107.4821,0.9661]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[107.4176,0.9679],[107.4147,0.9688],[107.4111,0.9599],[107.4121,0.9558],[107.4226,0.9502],[107.4235,0.9635],[107.4176,0.9679]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[107.4931,0.9659],[107.4884,0.9692],[107.4875,0.96],[107.4907,0.9557],[107.4943,0.9626],[107.4931,0.9659]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[107.399,0.9681],[107.3992,0.9744],[107.3943,0.9743],[107.3953,0.9696],[107.399,0.9681]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[107.432,0.9756],[107.4288,0.9754],[107.4269,0.9656],[107.4281,0.9563],[107.4318,0.948],[107.442,0.9459],[107.443,0.9369],[107.4395,0.9347],[107.4433,0.9304],[107.4482,0.9302],[107.4561,0.9204],[107.4611,0.9234],[107.4637,0.922],[107.4692,0.9249],[107.4694,0.9285],[107.4654,0.9319],[107.4656,0.9375],[107.4681,0.9449],[107.4779,0.9434],[107.4737,0.9492],[107.475,0.9575],[107.4723,0.96],[107.4733,0.9663],[107.4622,0.9758],[107.4541,0.9694],[107.449,0.9704],[107.4482,0.966],[107.432,0.9756]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[107.4155,0.9918],[107.4094,0.9915],[107.4063,0.9888],[107.4006,0.9881],[107.4042,0.9789],[107.4083,0.9773],[107.4114,0.9836],[107.4168,0.984],[107.418,0.9893],[107.4155,0.9918]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.2438,0.9963],[104.2372,0.994],[104.231,0.9827],[104.2402,0.9802],[104.243,0.976],[104.2582,0.9745],[104.2627,0.9805],[104.2623,0.9869],[104.2588,0.9882],[104.2569,0.9927],[104.2507,0.9962],[104.2438,0.9963]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[107.3928,1.0115],[107.3882,1.0086],[107.389,0.9983],[107.3874,0.9949],[107.3884,0.9899],[107.3928,0.9894],[107.3952,0.999],[107.3928,1.0115]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[107.3835,1.0111],[107.3797,1.0125],[107.3772,1.0054],[107.3828,1.0055],[107.3835,1.0111]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.393,1.0156],[104.3839,1.0158],[104.3795,1.0084],[104.3789,1.0036],[104.3647,0.9918],[104.3668,0.9894],[104.3737,0.9898],[104.3872,0.9928],[104.3969,0.997],[104.3924,1.0025],[104.393,1.0156]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[107.3684,1.023],[107.3629,1.0233],[107.361,1.0163],[107.3567,1.0118],[107.3633,1.0099],[107.367,1.0062],[107.3733,1.0151],[107.3736,1.0203],[107.3684,1.023]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[107.5379,1.0266],[107.533,1.0264],[107.5299,1.0216],[107.5327,1.0146],[107.5295,1.0094],[107.5319,0.9938],[107.5377,0.9855],[107.5465,0.9809],[107.5606,0.9913],[107.5658,0.9971],[107.5696,0.9889],[107.5647,0.9829],[107.5634,0.9776],[107.5561,0.9692],[107.5572,0.9653],[107.5525,0.9622],[107.5477,0.9521],[107.5534,0.9476],[107.5612,0.9518],[107.5698,0.9624],[107.5711,0.9686],[107.5818,0.9775],[107.5857,0.9748],[107.5876,0.9791],[107.5865,0.9838],[107.5942,0.9903],[107.6006,0.9878],[107.6033,0.9902],[107.6013,0.9997],[107.5938,1.0018],[107.5904,1.0085],[107.5749,1.0157],[107.5602,1.0171],[107.5536,1.0226],[107.5454,1.022],[107.5409,1.0231],[107.5379,1.0266]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.7884,1.0276],[104.7834,1.0255],[104.7824,1.0197],[104.7868,1.0161],[104.7834,1.0108],[104.7885,1.0037],[104.7969,1.0009],[104.8026,1.0037],[104.8059,0.9998],[104.8034,0.9957],[104.8049,0.9893],[104.8108,0.9879],[104.8213,0.9806],[104.8245,0.9808],[104.8262,0.9725],[104.8218,0.9678],[104.814,0.963],[104.8224,0.9572],[104.8257,0.9565],[104.8382,0.9608],[104.8431,0.9649],[104.8463,0.9704],[104.8477,0.9783],[104.8542,0.9839],[104.8486,0.9872],[104.8436,0.9971],[104.8436,1.0005],[104.8499,1.01],[104.8476,1.0138],[104.8412,1.0128],[104.8359,1.016],[104.8292,1.0146],[104.8155,1.019],[104.8057,1.0175],[104.8002,1.0199],[104.7884,1.0276]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.2195,1.0487],[104.2212,1.0389],[104.225,1.0412],[104.2216,1.0483],[104.2195,1.0487]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[107.5018,1.05],[107.4977,1.0446],[107.5041,1.0361],[107.5136,1.0393],[107.52,1.0471],[107.5128,1.0465],[107.5018,1.05]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[107.4886,1.0553],[107.4841,1.0531],[107.4871,1.048],[107.4911,1.0452],[107.4948,1.0462],[107.4955,1.0505],[107.4935,1.0544],[107.4886,1.0553]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.6711,1.0721],[104.6723,1.0706],[104.6729,1.0575],[104.6785,1.052],[104.6773,1.0623],[104.6779,1.0671],[104.6741,1.0717],[104.6711,1.0721]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[107.4357,1.0849],[107.4385,1.0909],[107.4347,1.0938],[107.4311,1.0903],[107.4312,1.0861],[107.4357,1.0849]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[107.4133,1.102],[107.4061,1.1104],[107.4033,1.112],[107.3993,1.1034],[107.3931,1.1016],[107.3931,1.0973],[107.3899,1.0942],[107.3909,1.0892],[107.4056,1.0909],[107.4142,1.094],[107.4179,1.1008],[107.4133,1.102]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[106.8939,1.1876],[106.8949,1.1907],[106.889,1.1948],[106.8866,1.189],[106.8939,1.1876]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"LineString","coordinates":[[104.5137,0.8436],[104.5162,0.8345],[104.522,0.8256],[104.5316,0.8258],[104.5367,0.8235],[104.5413,0.8237],[104.5433,0.8205],[104.5536,0.8212],[104.5554,0.8145],[104.5759,0.8122],[104.5826,0.8141],[104.5876,0.8103],[104.5931,0.8103],[104.608,0.8264],[104.6112,0.8333],[104.61,0.8399],[104.6113,0.8524],[104.611,0.8595],[104.6138,0.8654],[104.612,0.8776],[104.6148,0.8907],[104.6197,0.8989],[104.6289,0.9058],[104.6384,0.9048],[104.6505,0.9066],[104.6551,0.9092],[104.6599,0.9194],[104.6555,0.9261],[104.6564,0.9358],[104.6599,0.9404],[104.6561,0.9433],[104.6424,0.9481],[104.6464,0.9598],[104.6448,0.9689],[104.6394,0.9779],[104.6353,0.9891],[104.6418,0.9921],[104.6471,0.9998],[104.651,1.0104],[104.6516,1.0161],[104.6576,1.0323],[104.6558,1.0395],[104.6575,1.0455],[104.6507,1.0521],[104.6523,1.0626],[104.6448,1.071],[104.6381,1.0831],[104.636,1.0955],[104.6327,1.0999],[104.6349,1.1052],[104.6313,1.1106],[104.6206,1.1185],[104.6141,1.1189],[104.602,1.1254],[104.5962,1.1268],[104.5968,1.1317],[104.5929,1.1338],[104.5893,1.1408],[104.5847,1.1439],[104.5817,1.1527],[104.5778,1.1554],[104.5779,1.1612],[104.5803,1.1661],[104.578,1.1746],[104.5784,1.1841],[104.5767,1.1911],[104.5812,1.2023],[104.5883,1.2084],[104.5834,1.2137],[104.5831,1.2192],[104.5862,1.2256],[104.5839,1.2297],[104.5791,1.2264],[104.5719,1.2292],[104.5639,1.2296],[104.5568,1.2273],[104.5507,1.2237],[104.5451,1.217],[104.547,1.2106],[104.5463,1.2033],[104.5504,1.1997],[104.5407,1.1966],[104.5359,1.1877],[104.5363,1.1827],[104.5291,1.1771],[104.5114,1.1738],[104.4995,1.1706],[104.4962,1.1739],[104.4783,1.1745],[104.4676,1.1767],[104.4645,1.1791],[104.4646,1.184],[104.457,1.1852],[104.455,1.1835],[104.4371,1.1881],[104.4169,1.1975],[104.402,1.2024],[104.3964,1.2006],[104.3934,1.2045],[104.3877,1.1978],[104.3794,1.1967],[104.3759,1.1916],[104.3815,1.1829],[104.3747,1.1789],[104.3651,1.1783],[104.3585,1.1811],[104.3529,1.1877],[104.3498,1.1851],[104.3439,1.1896],[104.3368,1.1819],[104.3306,1.1791],[104.3233,1.1792],[104.3184,1.1811],[104.3109,1.1786],[104.3138,1.1743],[104.317,1.175],[104.322,1.1655],[104.3306,1.1639],[104.3249,1.1579],[104.3286,1.15],[104.329,1.146],[104.3328,1.143],[104.3302,1.1383],[104.324,1.136],[104.3119,1.1378],[104.3056,1.1375],[104.2962,1.1325],[104.2779,1.1263],[104.2695,1.1241],[104.2403,1.1196],[104.24,1.1106],[104.2308,1.104],[104.228,1.0985],[104.2236,1.0947],[104.2166,1.0837],[104.2156,1.0753],[104.2125,1.0742],[104.2146,1.0648],[104.2223,1.0587],[104.226,1.0537],[104.2306,1.0514],[104.2332,1.0462],[104.2315,1.0426],[104.2359,1.0389],[104.2345,1.0341],[104.2284,1.0298],[104.2278,1.0182],[104.2314,1.0155],[104.2361,1.0158],[104.2467,1.0071],[104.2569,1.0012],[104.2635,0.9997],[104.2845,1.0013],[104.2918,1.0004],[104.3036,1.0008],[104.3111,0.9982],[104.3169,0.9924],[104.3199,0.9913],[104.3333,0.9923],[104.3377,1.0085],[104.3358,1.0125],[104.3368,1.0202],[104.3405,1.0259],[104.3455,1.0201],[104.3553,1.0204],[104.3634,1.0173],[104.3738,1.0103],[104.3811,1.0122],[104.3799,1.0176],[104.3815,1.0206],[104.3877,1.0225],[104.3962,1.0279],[104.3994,1.0338],[104.4039,1.0343],[104.4035,1.0398],[104.4055,1.0435],[104.402,1.0463],[104.4025,1.0504],[104.4058,1.0533],[104.4164,1.0556],[104.4146,1.0449],[104.4163,1.04],[104.4239,1.0426],[104.4261,1.0516],[104.4344,1.0531],[104.4385,1.0512],[104.4464,1.0544],[104.4546,1.0511],[104.463,1.0427],[104.4725,1.0303],[104.4763,1.0269],[104.48,1.027],[104.4865,1.034],[104.4888,1.0333],[104.486,1.0248],[104.4864,1.018],[104.4815,1.0144],[104.4721,1.0182],[104.468,1.0218],[104.4634,1.0228],[104.4491,1.0122],[104.4449,1.0161],[104.4425,1.0091],[104.4446,1.0056],[104.4413,1.0014],[104.4414,0.9958],[104.4516,0.9897],[104.4529,0.9846],[104.4675,0.9856],[104.4738,0.9787],[104.4734,0.9849],[104.4766,0.9884],[104.4843,0.9878],[104.4938,0.9907],[104.4991,0.9894],[104.5024,0.978],[104.5053,0.9727],[104.5131,0.9724],[104.5147,0.9768],[104.5208,0.9775],[104.5194,0.9688],[104.52,0.9571],[104.5271,0.947],[104.5389,0.9357],[104.5452,0.9328],[104.5479,0.9261],[104.553,0.9222],[104.5527,0.9171],[104.5502,0.91],[104.5435,0.9036],[104.5381,0.8966],[104.537,0.8864],[104.5397,0.8821],[104.534,0.8766],[104.5317,0.8619],[104.5241,0.8578],[104.521,0.8583],[104.5129,0.8489],[104.5137,0.8436]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[108.9507,2.5009],[108.9453,2.5007],[108.9399,2.4968],[108.9397,2.4935],[108.9449,2.483],[108.9502,2.4794],[108.9556,2.4818],[108.9548,2.4859],[108.9567,2.4912],[108.9562,2.4982],[108.9507,2.5009]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[108.9861,2.5064],[108.9831,2.5054],[108.9904,2.4889],[108.994,2.4895],[108.9979,2.4938],[108.9935,2.4953],[108.9933,2.5004],[108.9887,2.4994],[108.9861,2.5064]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[109.1458,2.5467],[109.1425,2.5465],[109.1368,2.5409],[109.1384,2.5349],[109.1441,2.54],[109.1458,2.5467]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[108.9979,2.5586],[108.9952,2.5605],[108.9888,2.5547],[108.976,2.5554],[108.977,2.5501],[108.9756,2.5434],[108.977,2.5378],[108.9766,2.5314],[108.9798,2.5294],[108.9797,2.521],[108.9881,2.5226],[108.992,2.5255],[108.9997,2.5262],[109.0038,2.5313],[109.0074,2.5318],[109.0119,2.5262],[109.0217,2.5221],[109.0235,2.5161],[109.0322,2.5161],[109.0166,2.5068],[109.0106,2.5048],[109.0069,2.4991],[109.0093,2.4965],[109.0066,2.4906],[109.0146,2.4831],[109.0194,2.4811],[109.0296,2.4821],[109.0445,2.4894],[109.0468,2.4936],[109.0543,2.4952],[109.0502,2.5025],[109.0553,2.5028],[109.0622,2.4993],[109.0634,2.4968],[109.0703,2.4974],[109.0796,2.4945],[109.0834,2.4893],[109.087,2.4915],[109.0936,2.5003],[109.0969,2.4978],[109.1046,2.5019],[109.1146,2.5046],[109.1175,2.5105],[109.1172,2.5223],[109.115,2.5273],[109.1015,2.5281],[109.0915,2.527],[109.0835,2.525],[109.0792,2.5208],[109.0559,2.5255],[109.048,2.528],[109.0351,2.5334],[109.0267,2.5382],[109.0222,2.5434],[109.0196,2.554],[109.0074,2.56],[108.9979,2.5586]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[109.164,2.5921],[109.1616,2.5962],[109.157,2.5981],[109.1547,2.5924],[109.1569,2.5833],[109.1626,2.5857],[109.164,2.5921]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[108.568,2.6566],[108.5714,2.6603],[108.5732,2.6663],[108.5786,2.6785],[108.5816,2.6819],[108.5836,2.6878],[108.5833,2.6941],[108.5856,2.6974],[108.5826,2.7031],[108.5773,2.6986],[108.5688,2.6845],[108.5653,2.6589],[108.568,2.6566]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[108.8818,2.6981],[108.8855,2.7006],[108.8815,2.706],[108.877,2.7055],[108.877,2.6999],[108.8818,2.6981]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[108.9224,2.7673],[108.9184,2.7586],[108.9075,2.7494],[108.9032,2.7412],[108.8891,2.7336],[108.8853,2.7299],[108.887,2.7266],[108.8914,2.7261],[108.8989,2.7324],[108.9048,2.7348],[108.9115,2.7337],[108.9134,2.7364],[108.914,2.7434],[108.919,2.7486],[108.9239,2.7496],[108.9291,2.7557],[108.9295,2.7604],[108.9224,2.7673]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[108.7235,2.8971],[108.729,2.9067],[108.73,2.9146],[108.7268,2.9172],[108.7225,2.9135],[108.7188,2.901],[108.7235,2.8971]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[108.8683,3.0098],[108.8645,3.0118],[108.8593,3.0081],[108.8496,3.0058],[108.8464,3.0023],[108.8427,3.0024],[108.8379,2.9953],[108.8389,2.9914],[108.8355,2.9864],[108.8369,2.9632],[108.8364,2.9499],[108.8273,2.9344],[108.8061,2.9171],[108.8035,2.9168],[108.7941,2.9095],[108.7901,2.9049],[108.7899,2.8994],[108.7864,2.8955],[108.7812,2.8956],[108.7744,2.8924],[108.7761,2.8852],[108.7758,2.8779],[108.7845,2.8715],[108.7867,2.8651],[108.7918,2.8596],[108.8018,2.8549],[108.8077,2.8534],[108.8146,2.8454],[108.82,2.8431],[108.8248,2.8431],[108.8289,2.8455],[108.846,2.8496],[108.8513,2.8558],[108.8625,2.8772],[108.867,2.8797],[108.8793,2.8809],[108.8852,2.8798],[108.8772,2.8899],[108.8817,2.9045],[108.8854,2.9086],[108.8776,2.9156],[108.8781,2.9203],[108.8815,2.9256],[108.8861,2.9362],[108.8783,2.9438],[108.8851,2.9443],[108.887,2.9485],[108.8865,2.9613],[108.8885,2.9699],[108.8886,2.9891],[108.8903,2.9978],[108.8887,3.0036],[108.8781,3.0087],[108.8733,3.0078],[108.8683,3.0098]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[107.7868,3.0205],[107.7714,3.0189],[107.7496,3.0076],[107.7527,3.0015],[107.7514,2.9958],[107.7543,2.9878],[107.7534,2.9779],[107.7576,2.9719],[107.7621,2.9752],[107.7781,2.9765],[107.7836,2.9791],[107.7899,2.9774],[107.7958,2.9805],[107.8014,2.9814],[107.8132,2.98],[107.8125,2.9846],[107.8083,2.9914],[107.8068,3.0053],[107.8043,3.0118],[107.7973,3.0174],[107.7868,3.0205]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[108.8412,3.0546],[108.8391,3.0508],[108.84,3.0464],[108.8355,3.043],[108.8451,3.0372],[108.8475,3.0312],[108.8511,3.0289],[108.8523,3.0235],[108.8504,3.0147],[108.859,3.0136],[108.8656,3.0144],[108.8705,3.0216],[108.8695,3.0258],[108.8645,3.0316],[108.8683,3.0389],[108.8681,3.0432],[108.8592,3.0466],[108.8545,3.0501],[108.8441,3.0521],[108.8412,3.0546]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[108.087,3.5827],[108.0827,3.5828],[108.0796,3.5769],[108.0845,3.5739],[108.0898,3.5785],[108.087,3.5827]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[108.0455,3.5886],[108.0418,3.5839],[108.0349,3.5781],[108.0326,3.5738],[108.034,3.5687],[108.0383,3.5608],[108.0446,3.5568],[108.0484,3.561],[108.0468,3.5748],[108.0503,3.5855],[108.0455,3.5886]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[108.0419,3.5994],[108.0417,3.6088],[108.0384,3.6062],[108.0378,3.6018],[108.0419,3.5994]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[108.1037,3.6367],[108.095,3.6353],[108.0895,3.6227],[108.09,3.6159],[108.0859,3.612],[108.0783,3.6145],[108.0753,3.6108],[108.0741,3.6056],[108.0707,3.6023],[108.0693,3.5945],[108.0663,3.5886],[108.0695,3.5829],[108.0801,3.5844],[108.0788,3.5881],[108.0846,3.597],[108.0885,3.5973],[108.0945,3.5931],[108.099,3.5919],[108.1026,3.5864],[108.1058,3.5875],[108.1068,3.5927],[108.1032,3.6015],[108.1086,3.6055],[108.1144,3.6042],[108.1212,3.6069],[108.1219,3.6137],[108.1251,3.6229],[108.1152,3.6322],[108.1037,3.6367]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[108.0546,3.6688],[108.0487,3.6678],[108.0449,3.6642],[108.05,3.6559],[108.0534,3.6441],[108.0503,3.6383],[108.0535,3.6342],[108.057,3.6372],[108.0631,3.6347],[108.0673,3.6355],[108.0757,3.6328],[108.0821,3.634],[108.0849,3.6381],[108.086,3.6459],[108.083,3.6532],[108.0747,3.6635],[108.071,3.6663],[108.063,3.6651],[108.0546,3.6688]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[108.0865,3.6932],[108.074,3.6908],[108.0812,3.6825],[108.0865,3.6889],[108.0865,3.6932]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[108.1158,3.7666],[108.1168,3.7698],[108.1128,3.7726],[108.1109,3.767],[108.1158,3.7666]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[108.0022,3.8181],[107.9946,3.8142],[107.9996,3.8106],[108.0044,3.8127],[108.0063,3.8078],[108.0112,3.8072],[108.0158,3.8033],[108.0127,3.7971],[108.0165,3.7924],[108.0173,3.7869],[108.0133,3.7852],[108.0119,3.7814],[108.0141,3.7781],[108.0242,3.7762],[108.028,3.7795],[108.0346,3.7752],[108.0328,3.7667],[108.0345,3.7637],[108.0404,3.7675],[108.0397,3.7746],[108.0373,3.7768],[108.0375,3.7841],[108.033,3.7823],[108.0291,3.7893],[108.0317,3.8001],[108.0283,3.8075],[108.0177,3.8157],[108.0142,3.8144],[108.0077,3.8153],[108.0022,3.8181]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[107.8982,3.9134],[107.8951,3.9119],[107.8957,3.9021],[107.8944,3.8937],[107.9027,3.8871],[107.9036,3.8839],[107.9117,3.8819],[107.9194,3.8895],[107.9197,3.9028],[107.9121,3.9082],[107.9035,3.9095],[107.8982,3.9134]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[107.8612,4.1584],[107.8539,4.1501],[107.8531,4.1409],[107.8462,4.1392],[107.8446,4.1311],[107.846,4.1221],[107.8408,4.1195],[107.8439,4.1165],[107.8481,4.1189],[107.852,4.1153],[107.8625,4.126],[107.8631,4.1288],[107.8603,4.1372],[107.8627,4.1459],[107.8666,4.1482],[107.8689,4.1556],[107.8612,4.1584]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[108.2273,4.217],[108.226,4.2227],[108.2194,4.2301],[108.2076,4.2259],[108.2038,4.2209],[108.198,4.1996],[108.1936,4.1925],[108.1876,4.1891],[108.1855,4.1836],[108.1821,4.1816],[108.1809,4.1774],[108.1731,4.1706],[108.1728,4.1635],[108.1646,4.1567],[108.158,4.1498],[108.1507,4.1453],[108.1456,4.1369],[108.1341,4.1343],[108.1241,4.1225],[108.1194,4.1184],[108.1064,4.1099],[108.1043,4.1066],[108.0971,4.1042],[108.0941,4.1069],[108.0893,4.1031],[108.0884,4.0982],[108.0838,4.0921],[108.0792,4.0757],[108.0739,4.0674],[108.0703,4.0673],[108.0628,4.0628],[108.059,4.0557],[108.0554,4.0546],[108.0464,4.0552],[108.0349,4.0575],[108.0323,4.0546],[108.0261,4.0532],[108.0215,4.0466],[108.0212,4.0373],[108.0164,4.033],[108.0141,4.0271],[107.9923,4.0168],[107.9737,4.0143],[107.9676,4.0064],[107.9623,4.0043],[107.9641,3.9993],[107.9703,3.9976],[107.9764,4.0008],[107.9825,3.9992],[107.9873,3.9919],[107.9868,3.9856],[107.9925,3.9835],[107.9942,3.9786],[107.9897,3.9648],[107.9928,3.9624],[107.9915,3.9581],[107.9871,3.9542],[107.9892,3.9516],[107.9885,3.9449],[107.9934,3.9352],[107.9983,3.9282],[108.0044,3.923],[108.011,3.9196],[108.0098,3.9161],[108.0159,3.9105],[108.0257,3.9093],[108.0308,3.8983],[108.0308,3.8934],[108.0246,3.8904],[108.0178,3.8836],[108.0212,3.8764],[108.0247,3.8774],[108.0329,3.8684],[108.0392,3.8646],[108.0472,3.8619],[108.0525,3.8495],[108.0581,3.8444],[108.0629,3.8343],[108.073,3.8329],[108.0764,3.8347],[108.0859,3.8332],[108.09,3.8294],[108.0926,3.8207],[108.1008,3.821],[108.1066,3.8252],[108.1178,3.826],[108.1249,3.8227],[108.1325,3.8159],[108.1351,3.8166],[108.146,3.8138],[108.1543,3.8043],[108.1622,3.8034],[108.1694,3.8076],[108.1732,3.8043],[108.1825,3.8027],[108.1854,3.8055],[108.1992,3.8007],[108.2073,3.8019],[108.2155,3.7922],[108.2234,3.7887],[108.2269,3.7913],[108.2294,3.7989],[108.2306,3.8104],[108.226,3.8205],[108.2305,3.8211],[108.2363,3.8107],[108.2362,3.8038],[108.233,3.7885],[108.2285,3.7891],[108.2235,3.7848],[108.2267,3.7775],[108.243,3.7709],[108.253,3.7621],[108.2513,3.7576],[108.255,3.7517],[108.257,3.7442],[108.2603,3.738],[108.265,3.7377],[108.2711,3.7239],[108.2749,3.7202],[108.2768,3.7123],[108.272,3.7107],[108.265,3.7178],[108.2646,3.7227],[108.2603,3.7299],[108.2503,3.734],[108.2376,3.7464],[108.2199,3.7594],[108.217,3.7667],[108.2133,3.7707],[108.2078,3.7735],[108.2046,3.778],[108.1884,3.7834],[108.1863,3.7804],[108.1757,3.775],[108.1735,3.7682],[108.1671,3.7654],[108.1547,3.7651],[108.1495,3.7603],[108.1515,3.7547],[108.1471,3.7443],[108.1413,3.7513],[108.1344,3.7495],[108.131,3.7458],[108.1251,3.7462],[108.118,3.7439],[108.1153,3.7391],[108.1167,3.7327],[108.1209,3.7276],[108.1208,3.724],[108.1131,3.7227],[108.1125,3.7165],[108.11,3.7086],[108.1068,3.7048],[108.1011,3.6943],[108.0935,3.6915],[108.0921,3.6836],[108.0896,3.6805],[108.093,3.6773],[108.0981,3.6787],[108.1039,3.6756],[108.1141,3.6723],[108.1174,3.6685],[108.1245,3.6706],[108.1304,3.6635],[108.1389,3.6631],[108.1437,3.6645],[108.1491,3.6469],[108.1488,3.6426],[108.153,3.6321],[108.1562,3.6299],[108.1643,3.6379],[108.1697,3.6408],[108.1724,3.6398],[108.1766,3.6432],[108.1854,3.6412],[108.1895,3.6441],[108.1903,3.6511],[108.1963,3.657],[108.2019,3.6594],[108.2098,3.6598],[108.2155,3.6585],[108.225,3.6639],[108.2338,3.6634],[108.2398,3.6644],[108.2535,3.663],[108.2611,3.6608],[108.2759,3.6652],[108.2797,3.6643],[108.2854,3.6598],[108.2954,3.6573],[108.2997,3.6619],[108.3018,3.6678],[108.3054,3.6702],[108.3043,3.6768],[108.3068,3.698],[108.305,3.7028],[108.3047,3.7171],[108.3054,3.7215],[108.3097,3.7308],[108.3152,3.7389],[108.3192,3.7426],[108.3255,3.7453],[108.3295,3.7493],[108.3302,3.7565],[108.3321,3.7606],[108.3383,3.7662],[108.3431,3.7675],[108.3509,3.7651],[108.3544,3.7667],[108.3585,3.7758],[108.3623,3.7778],[108.3683,3.7849],[108.3782,3.7873],[108.3826,3.7924],[108.3864,3.7931],[108.3868,3.801],[108.3894,3.8018],[108.3906,3.8131],[108.3939,3.8224],[108.3969,3.8276],[108.3941,3.8329],[108.3955,3.8466],[108.4009,3.8535],[108.3989,3.8612],[108.4004,3.8659],[108.4073,3.876],[108.4087,3.8843],[108.4075,3.8866],[108.4015,3.8847],[108.3968,3.8799],[108.3892,3.8675],[108.3867,3.8678],[108.3817,3.8583],[108.3798,3.8665],[108.3825,3.869],[108.3778,3.8729],[108.3787,3.8789],[108.3736,3.8833],[108.3726,3.8867],[108.3663,3.8933],[108.3617,3.8929],[108.3586,3.8874],[108.3629,3.8817],[108.3608,3.8751],[108.3558,3.8745],[108.355,3.8829],[108.3575,3.8903],[108.3544,3.8975],[108.3635,3.8991],[108.3703,3.904],[108.3733,3.9003],[108.3801,3.8967],[108.3897,3.8956],[108.3943,3.913],[108.3938,3.917],[108.3821,3.928],[108.382,3.9316],[108.3933,3.9449],[108.3967,3.956],[108.401,3.9559],[108.4027,3.9658],[108.3997,3.9684],[108.3941,3.9681],[108.3882,3.9738],[108.3802,3.9796],[108.377,3.985],[108.3623,3.9921],[108.3576,3.9931],[108.3537,3.9965],[108.3455,4.0002],[108.3444,4.0073],[108.3469,4.0133],[108.3459,4.0158],[108.3373,4.0223],[108.3309,4.0259],[108.3254,4.0318],[108.3165,4.0382],[108.3051,4.0495],[108.2957,4.0542],[108.2926,4.0606],[108.2967,4.07],[108.2981,4.0805],[108.2999,4.0842],[108.2974,4.0876],[108.2902,4.0832],[108.28,4.0843],[108.2694,4.0892],[108.2623,4.0937],[108.2534,4.1033],[108.2535,4.1075],[108.2498,4.11],[108.2464,4.1177],[108.2347,4.1269],[108.2306,4.1363],[108.2287,4.1474],[108.232,4.1537],[108.2304,4.1562],[108.2285,4.1724],[108.2287,4.1777],[108.2244,4.1844],[108.2289,4.2],[108.2334,4.2021],[108.2349,4.2073],[108.241,4.2117],[108.2414,4.2186],[108.2367,4.2198],[108.2319,4.2172],[108.2273,4.217]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[108.2096,4.2655],[108.1997,4.2634],[108.1982,4.2603],[108.1999,4.2551],[108.1928,4.246],[108.198,4.2464],[108.2028,4.2546],[108.2027,4.2581],[108.2096,4.2655]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[107.7318,4.5201],[107.7235,4.52],[107.7245,4.513],[107.7316,4.5118],[107.7318,4.5201]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[108.0074,4.7746],[108.0006,4.7748],[107.9922,4.7694],[107.9916,4.7598],[107.9893,4.7544],[107.9764,4.7424],[107.972,4.7321],[107.971,4.7263],[107.9671,4.7187],[107.9583,4.7078],[107.9493,4.701],[107.9427,4.6978],[107.9372,4.6972],[107.9273,4.6932],[107.927,4.6843],[107.9285,4.6804],[107.9451,4.6749],[107.9487,4.6758],[107.9648,4.6686],[107.9672,4.6741],[107.977,4.6806],[107.9778,4.6884],[107.9816,4.691],[107.9862,4.7003],[107.9898,4.7121],[107.9891,4.7168],[107.9922,4.7235],[107.9944,4.7329],[108.0001,4.7453],[108.0031,4.7492],[108.0076,4.76],[108.0083,4.7661],[108.0074,4.7746]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"LineString","coordinates":[[108.0219,4.794],[108.0166,4.7976],[108.0106,4.7929],[108.0064,4.7862],[108.0094,4.7804],[108.0219,4.794]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[105.2628,-1.2001],[105.2609,-1.2002],[105.264,-1.2137],[105.271,-1.2162],[105.2729,-1.2138],[105.2628,-1.2001]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[105.283,-1.1472],[105.2805,-1.144],[105.2754,-1.1463],[105.2836,-1.1502],[105.2896,-1.159],[105.297,-1.1635],[105.2999,-1.1692],[105.3046,-1.1724],[105.3117,-1.1698],[105.3109,-1.167],[105.2987,-1.1584],[105.2886,-1.1491],[105.283,-1.1472]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[105.6938,-0.9418],[105.6959,-0.9353],[105.6906,-0.9364],[105.6938,-0.9418]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[105.838,-0.8703],[105.838,-0.8648],[105.8294,-0.8659],[105.8283,-0.8692],[105.8326,-0.8713],[105.838,-0.8703]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.9333,-0.7844],[104.9351,-0.7757],[104.9305,-0.7736],[104.929,-0.7838],[104.9333,-0.7844]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4812,-0.6974],[104.4777,-0.6966],[104.4771,-0.7097],[104.4823,-0.7077],[104.4812,-0.6974]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4657,-0.683],[104.4624,-0.686],[104.4653,-0.6892],[104.4648,-0.6934],[104.4701,-0.6932],[104.4657,-0.683]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.2353,-0.6535],[104.233,-0.659],[104.2418,-0.6625],[104.2427,-0.657],[104.2375,-0.657],[104.2353,-0.6535]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.1957,-0.3928],[104.1895,-0.3946],[104.1925,-0.3999],[104.1917,-0.406],[104.1969,-0.407],[104.1981,-0.4162],[104.1955,-0.4216],[104.2005,-0.4262],[104.2109,-0.4249],[104.212,-0.4291],[104.224,-0.4276],[104.2245,-0.4205],[104.2228,-0.4163],[104.2263,-0.4122],[104.2249,-0.4061],[104.2291,-0.4055],[104.2323,-0.4012],[104.2245,-0.3932],[104.22,-0.3972],[104.2155,-0.3985],[104.2139,-0.3934],[104.2068,-0.3947],[104.2029,-0.3919],[104.1957,-0.3928]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.1669,-0.3693],[104.162,-0.3709],[104.1627,-0.3766],[104.1666,-0.3847],[104.1751,-0.3899],[104.1791,-0.3835],[104.177,-0.3784],[104.1713,-0.375],[104.1668,-0.3743],[104.1669,-0.3693]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.1895,-0.3631],[104.1866,-0.3608],[104.178,-0.3706],[104.1737,-0.3663],[104.1717,-0.3713],[104.1765,-0.3752],[104.1857,-0.3886],[104.1884,-0.3862],[104.1963,-0.3881],[104.2017,-0.3833],[104.2069,-0.3837],[104.211,-0.3889],[104.2147,-0.3855],[104.2209,-0.3904],[104.2278,-0.3876],[104.2322,-0.388],[104.2344,-0.3832],[104.2333,-0.3775],[104.2295,-0.3738],[104.2341,-0.3695],[104.2296,-0.3644],[104.222,-0.3683],[104.2099,-0.3685],[104.2057,-0.3725],[104.2038,-0.3687],[104.2,-0.3683],[104.1895,-0.3631]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4335,-0.3569],[104.4332,-0.3524],[104.4276,-0.3497],[104.4256,-0.3574],[104.4335,-0.3569]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.2703,-0.3425],[104.2663,-0.3424],[104.2615,-0.3466],[104.2589,-0.354],[104.2583,-0.362],[104.2666,-0.3635],[104.2718,-0.3583],[104.2728,-0.3516],[104.2698,-0.3473],[104.2703,-0.3425]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.1694,-0.343],[104.1565,-0.338],[104.1544,-0.3416],[104.1485,-0.3467],[104.1427,-0.3488],[104.1442,-0.3594],[104.147,-0.3619],[104.1577,-0.3647],[104.1641,-0.3608],[104.1634,-0.3547],[104.1669,-0.3541],[104.1729,-0.3566],[104.1772,-0.3518],[104.1739,-0.3443],[104.1694,-0.343]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4853,-0.3399],[104.4826,-0.3354],[104.4781,-0.3349],[104.4734,-0.3383],[104.4671,-0.3402],[104.4618,-0.3401],[104.4517,-0.3435],[104.4487,-0.3375],[104.4409,-0.3395],[104.4369,-0.3441],[104.4371,-0.3503],[104.4347,-0.3562],[104.4276,-0.3592],[104.4258,-0.3656],[104.4312,-0.3678],[104.432,-0.381],[104.4262,-0.388],[104.4221,-0.3884],[104.4187,-0.3952],[104.4145,-0.4004],[104.4018,-0.4068],[104.3845,-0.4127],[104.3795,-0.4055],[104.3752,-0.4035],[104.3652,-0.4077],[104.3583,-0.4055],[104.3506,-0.3968],[104.3495,-0.3898],[104.3409,-0.3945],[104.3442,-0.4077],[104.3378,-0.4155],[104.34,-0.4228],[104.3462,-0.4349],[104.3426,-0.444],[104.3391,-0.4395],[104.3311,-0.4408],[104.3288,-0.4339],[104.3236,-0.4311],[104.3224,-0.4227],[104.3195,-0.419],[104.3135,-0.417],[104.3167,-0.4068],[104.323,-0.3978],[104.3281,-0.3936],[104.3342,-0.3919],[104.3375,-0.3885],[104.3345,-0.3804],[104.3369,-0.3783],[104.3356,-0.3735],[104.3308,-0.3647],[104.3274,-0.3619],[104.3288,-0.3518],[104.323,-0.3465],[104.3181,-0.3505],[104.3208,-0.3571],[104.3185,-0.3657],[104.3179,-0.3737],[104.3143,-0.3767],[104.3116,-0.3841],[104.3118,-0.3883],[104.3074,-0.3917],[104.2929,-0.3968],[104.2773,-0.3962],[104.2761,-0.4006],[104.2772,-0.4072],[104.2731,-0.4147],[104.2748,-0.4214],[104.2674,-0.4289],[104.2693,-0.432],[104.2688,-0.4415],[104.2629,-0.4499],[104.263,-0.4559],[104.2579,-0.458],[104.2625,-0.4648],[104.2589,-0.4685],[104.2593,-0.4762],[104.2553,-0.4781],[104.2512,-0.4768],[104.2488,-0.4898],[104.2539,-0.4947],[104.2647,-0.5022],[104.2715,-0.5095],[104.2777,-0.5121],[104.281,-0.5168],[104.287,-0.5215],[104.2991,-0.5346],[104.3095,-0.5404],[104.3169,-0.5369],[104.3196,-0.5402],[104.3228,-0.5502],[104.3237,-0.557],[104.3263,-0.5621],[104.3272,-0.5712],[104.3317,-0.5758],[104.3315,-0.5815],[104.3381,-0.6122],[104.3421,-0.6149],[104.3439,-0.6259],[104.3418,-0.632],[104.342,-0.6406],[104.3441,-0.6474],[104.3424,-0.6565],[104.3462,-0.6595],[104.3474,-0.6657],[104.3541,-0.6706],[104.3593,-0.6826],[104.367,-0.6822],[104.3806,-0.6745],[104.382,-0.6715],[104.3891,-0.667],[104.3875,-0.6617],[104.3831,-0.6555],[104.3873,-0.6419],[104.3958,-0.6292],[104.393,-0.6242],[104.3944,-0.6109],[104.3977,-0.6012],[104.4073,-0.5944],[104.4146,-0.5913],[104.4235,-0.59],[104.4304,-0.5836],[104.4402,-0.5868],[104.4449,-0.5942],[104.4497,-0.6083],[104.4548,-0.6198],[104.4572,-0.6223],[104.4649,-0.6235],[104.472,-0.6284],[104.4744,-0.6371],[104.4845,-0.6403],[104.4922,-0.6449],[104.5021,-0.645],[104.5052,-0.6423],[104.5076,-0.6234],[104.5083,-0.6132],[104.5069,-0.6048],[104.5098,-0.5926],[104.5168,-0.574],[104.5235,-0.5637],[104.5284,-0.5588],[104.5299,-0.5517],[104.5351,-0.5392],[104.547,-0.5221],[104.5594,-0.5073],[104.5652,-0.5018],[104.5743,-0.4959],[104.5807,-0.494],[104.5853,-0.4967],[104.5928,-0.4917],[104.5925,-0.4852],[104.5965,-0.479],[104.6002,-0.4693],[104.5967,-0.458],[104.5928,-0.4567],[104.5861,-0.4511],[104.5804,-0.4507],[104.5743,-0.4458],[104.57,-0.4382],[104.567,-0.4269],[104.5638,-0.4204],[104.5593,-0.4184],[104.5569,-0.4113],[104.5524,-0.4094],[104.5436,-0.3964],[104.5411,-0.3914],[104.5392,-0.3784],[104.5391,-0.371],[104.5284,-0.3631],[104.5229,-0.3614],[104.5166,-0.3639],[104.5058,-0.3629],[104.4861,-0.3508],[104.4851,-0.3468],[104.481,-0.3439],[104.4853,-0.3399]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.2338,-0.331],[104.228,-0.3308],[104.2241,-0.3355],[104.2246,-0.339],[104.2214,-0.3425],[104.229,-0.3493],[104.2368,-0.3506],[104.2387,-0.3428],[104.2388,-0.3347],[104.2338,-0.331]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.1247,-0.3048],[104.1197,-0.3035],[104.1177,-0.3057],[104.1192,-0.3123],[104.1247,-0.3048]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4716,-0.2774],[104.4599,-0.2812],[104.4579,-0.2833],[104.4483,-0.283],[104.4278,-0.2895],[104.4252,-0.2874],[104.4101,-0.2839],[104.4069,-0.2805],[104.3989,-0.2859],[104.3918,-0.2853],[104.3883,-0.2969],[104.3929,-0.3065],[104.3965,-0.3052],[104.4061,-0.3098],[104.4152,-0.3218],[104.4205,-0.324],[104.4252,-0.3229],[104.4323,-0.3237],[104.445,-0.3229],[104.4544,-0.3244],[104.4607,-0.3283],[104.4615,-0.3194],[104.4648,-0.316],[104.4709,-0.3195],[104.4774,-0.3197],[104.4855,-0.3175],[104.486,-0.3129],[104.492,-0.306],[104.4839,-0.2937],[104.4832,-0.2828],[104.4762,-0.278],[104.4716,-0.2774]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4555,-0.1567],[104.4543,-0.1503],[104.4493,-0.1528],[104.4489,-0.1589],[104.4555,-0.1567]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.9172,-0.1258],[104.9161,-0.136],[104.9144,-0.14],[104.9233,-0.1388],[104.9249,-0.1326],[104.9172,-0.1258]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.7627,-0.149],[104.7609,-0.1421],[104.7547,-0.137],[104.7552,-0.1335],[104.7505,-0.129],[104.749,-0.1232],[104.7447,-0.1143],[104.7422,-0.1125],[104.7299,-0.0957],[104.7293,-0.1038],[104.7333,-0.1112],[104.7422,-0.1331],[104.7439,-0.1388],[104.7539,-0.1444],[104.757,-0.1517],[104.7627,-0.149]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.8442,-0.0708],[104.8458,-0.062],[104.8435,-0.0585],[104.8394,-0.0578],[104.8355,-0.0534],[104.8318,-0.0525],[104.8303,-0.0567],[104.834,-0.0604],[104.8365,-0.0673],[104.8442,-0.0708]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.703,-0.0571],[104.7017,-0.0539],[104.6951,-0.0508],[104.6955,-0.0609],[104.7012,-0.0684],[104.7105,-0.0725],[104.7217,-0.0841],[104.7281,-0.0862],[104.7201,-0.0763],[104.7199,-0.0741],[104.7108,-0.0659],[104.709,-0.0589],[104.703,-0.0571]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.8455,-0.0407],[104.8433,-0.0356],[104.8393,-0.0406],[104.8336,-0.0425],[104.8377,-0.0531],[104.8431,-0.0554],[104.8464,-0.0632],[104.8496,-0.065],[104.859,-0.0663],[104.8606,-0.0688],[104.867,-0.0715],[104.8684,-0.075],[104.8772,-0.0774],[104.8695,-0.0635],[104.8583,-0.0592],[104.8584,-0.0554],[104.8506,-0.0476],[104.8455,-0.0407]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.83,-0.0136],[104.8258,-0.0155],[104.826,-0.0204],[104.8301,-0.0213],[104.83,-0.0136]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.6734,-0.0272],[104.6618,-0.013],[104.6612,-0.0191],[104.6669,-0.0257],[104.6734,-0.0272]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.5068,0.0077],[104.5026,0.0003],[104.507,-0.0041],[104.5122,0.0001],[104.5068,0.0077]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.5341,0.0243],[104.5315,0.0192],[104.5241,0.0172],[104.5178,0.0133],[104.5136,0.0134],[104.5198,0.0015],[104.526,-0.0003],[104.5382,0.003],[104.5454,0.0067],[104.5404,0.0169],[104.5363,0.0184],[104.5341,0.0243]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.5827,0.0053],[104.5712,0.0146],[104.5648,0.0183],[104.558,0.0242],[104.5537,0.0295],[104.5486,0.0292],[104.5478,0.0179],[104.5495,0.0124],[104.5529,0.009],[104.5543,0.003],[104.5421,-0.0029],[104.5361,-0.0111],[104.527,-0.0124],[104.5184,-0.0055],[104.5134,-0.0087],[104.5058,-0.0064],[104.5022,-0.0105],[104.4975,-0.0114],[104.4962,-0.0213],[104.5011,-0.0229],[104.5021,-0.0306],[104.5012,-0.0404],[104.5019,-0.0464],[104.4994,-0.0517],[104.5092,-0.0555],[104.5102,-0.0606],[104.508,-0.0641],[104.5107,-0.068],[104.51,-0.0765],[104.508,-0.0828],[104.508,-0.0898],[104.5096,-0.1004],[104.5087,-0.1128],[104.5059,-0.1286],[104.5033,-0.132],[104.49,-0.1358],[104.4834,-0.135],[104.4805,-0.1386],[104.4727,-0.1359],[104.4674,-0.1417],[104.4706,-0.1461],[104.4769,-0.1509],[104.4765,-0.1552],[104.4709,-0.1621],[104.4638,-0.1599],[104.4623,-0.1573],[104.4518,-0.1605],[104.4565,-0.1659],[104.4511,-0.1679],[104.4523,-0.1756],[104.4478,-0.1827],[104.4412,-0.1776],[104.4272,-0.1834],[104.4259,-0.1884],[104.4264,-0.1997],[104.4295,-0.2027],[104.4283,-0.2064],[104.4308,-0.2105],[104.4243,-0.2236],[104.4284,-0.2306],[104.4295,-0.2369],[104.4345,-0.2358],[104.4423,-0.2396],[104.4436,-0.2432],[104.4478,-0.2457],[104.4528,-0.2439],[104.4631,-0.247],[104.4705,-0.2413],[104.482,-0.2431],[104.4899,-0.2409],[104.4993,-0.2423],[104.5039,-0.246],[104.5052,-0.2519],[104.5025,-0.256],[104.5022,-0.2616],[104.505,-0.2628],[104.505,-0.2683],[104.5186,-0.2752],[104.5241,-0.2745],[104.5309,-0.2691],[104.5406,-0.2593],[104.5572,-0.2499],[104.5607,-0.2436],[104.5703,-0.2401],[104.5813,-0.242],[104.5855,-0.2451],[104.5939,-0.2466],[104.5998,-0.2498],[104.5999,-0.2444],[104.603,-0.2415],[104.6163,-0.2374],[104.6305,-0.2299],[104.6332,-0.2259],[104.648,-0.2173],[104.6679,-0.21],[104.6828,-0.2062],[104.6995,-0.2047],[104.7072,-0.2076],[104.7241,-0.2186],[104.7364,-0.2326],[104.7375,-0.2295],[104.7434,-0.2295],[104.7473,-0.233],[104.7538,-0.2347],[104.7532,-0.2543],[104.7634,-0.2593],[104.766,-0.2628],[104.7712,-0.264],[104.7757,-0.2597],[104.7828,-0.2598],[104.7889,-0.2619],[104.7922,-0.2654],[104.7941,-0.2725],[104.7895,-0.277],[104.7919,-0.281],[104.798,-0.2834],[104.804,-0.2839],[104.8095,-0.2883],[104.8153,-0.2963],[104.8195,-0.2905],[104.8246,-0.2916],[104.8286,-0.2983],[104.8259,-0.3041],[104.8316,-0.3106],[104.8413,-0.3164],[104.8501,-0.3229],[104.8528,-0.317],[104.8592,-0.3138],[104.8654,-0.3135],[104.8746,-0.3176],[104.8799,-0.3214],[104.8814,-0.3258],[104.8869,-0.3246],[104.8932,-0.3264],[104.8974,-0.3249],[104.9032,-0.3257],[104.9081,-0.329],[104.9132,-0.337],[104.9169,-0.3369],[104.9213,-0.3301],[104.9269,-0.3245],[104.9125,-0.32],[104.9079,-0.3138],[104.9034,-0.3108],[104.9043,-0.3022],[104.9,-0.2982],[104.9006,-0.2889],[104.9056,-0.2874],[104.9122,-0.2826],[104.9163,-0.2779],[104.9236,-0.2773],[104.9368,-0.2798],[104.945,-0.2869],[104.9481,-0.2882],[104.9519,-0.2944],[104.9553,-0.293],[104.964,-0.293],[104.97,-0.2972],[104.9734,-0.2969],[104.9822,-0.3002],[104.9828,-0.3073],[104.9853,-0.3091],[104.9908,-0.3079],[104.9981,-0.3036],[104.9975,-0.2991],[104.9936,-0.2894],[104.9985,-0.2849],[104.9991,-0.2805],[104.9911,-0.2757],[104.9842,-0.2785],[104.9797,-0.2819],[104.9735,-0.279],[104.9664,-0.2802],[104.9591,-0.2761],[104.9537,-0.275],[104.9445,-0.2695],[104.9254,-0.2545],[104.9124,-0.2416],[104.8966,-0.2296],[104.887,-0.2179],[104.879,-0.1959],[104.8718,-0.1925],[104.8666,-0.1886],[104.8602,-0.1776],[104.8589,-0.1722],[104.8466,-0.1545],[104.8425,-0.1524],[104.8345,-0.1407],[104.8269,-0.1337],[104.8246,-0.1429],[104.819,-0.1513],[104.8137,-0.1547],[104.8164,-0.1648],[104.8146,-0.1714],[104.8164,-0.1858],[104.8237,-0.1904],[104.825,-0.1968],[104.8211,-0.2011],[104.8108,-0.2062],[104.8033,-0.2073],[104.7905,-0.2069],[104.7864,-0.2045],[104.7821,-0.1985],[104.7781,-0.1956],[104.7694,-0.1975],[104.7573,-0.1956],[104.7508,-0.1898],[104.7438,-0.1814],[104.7399,-0.1715],[104.7371,-0.1676],[104.736,-0.1549],[104.7365,-0.1487],[104.7341,-0.1409],[104.7284,-0.1366],[104.7194,-0.1347],[104.7166,-0.1328],[104.7082,-0.1196],[104.7015,-0.114],[104.696,-0.0988],[104.6866,-0.087],[104.6829,-0.0836],[104.6805,-0.0871],[104.6704,-0.0852],[104.6613,-0.0933],[104.6686,-0.1094],[104.6649,-0.113],[104.6613,-0.1127],[104.6562,-0.1059],[104.65,-0.1041],[104.6421,-0.096],[104.6362,-0.0966],[104.6334,-0.0948],[104.6263,-0.0817],[104.6281,-0.0764],[104.6309,-0.0758],[104.6382,-0.0798],[104.6389,-0.0832],[104.651,-0.0879],[104.657,-0.0854],[104.6622,-0.0852],[104.6691,-0.0814],[104.6686,-0.0755],[104.6603,-0.0638],[104.6546,-0.0525],[104.6423,-0.0434],[104.6427,-0.0406],[104.6382,-0.0346],[104.6323,-0.0346],[104.6267,-0.0312],[104.6207,-0.0231],[104.6077,-0.012],[104.6019,-0.0081],[104.5952,-0.0013],[104.5827,0.0053]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.5186,0.0418],[104.5123,0.0385],[104.5144,0.0313],[104.522,0.0372],[104.5186,0.0418]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.6592,0.0324],[104.6592,0.0335],[104.6477,0.0465],[104.6455,0.0454],[104.6518,0.0375],[104.6592,0.0324]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.5169,0.0466],[104.5142,0.0505],[104.5094,0.0497],[104.5076,0.0466],[104.4973,0.044],[104.492,0.0398],[104.4902,0.0349],[104.4971,0.0262],[104.5058,0.0321],[104.5131,0.0444],[104.5169,0.0466]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.5284,0.0528],[104.5249,0.0543],[104.5215,0.0507],[104.5296,0.038],[104.5336,0.0348],[104.5429,0.0368],[104.5404,0.0423],[104.5284,0.0528]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.7797,0.0432],[104.7755,0.0464],[104.772,0.0531],[104.7725,0.0567],[104.7684,0.0631],[104.7653,0.0631],[104.7657,0.0457],[104.7557,0.0431],[104.7398,0.0472],[104.735,0.0433],[104.7397,0.0324],[104.7532,0.0303],[104.7623,0.0351],[104.7725,0.0334],[104.7784,0.031],[104.7844,0.0316],[104.7797,0.0432]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.5008,0.0609],[104.4946,0.0627],[104.4949,0.0578],[104.4988,0.0493],[104.5079,0.0504],[104.5084,0.0526],[104.5035,0.0599],[104.5008,0.0609]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.5224,0.0532],[104.5254,0.0564],[104.5204,0.0633],[104.5102,0.0696],[104.5089,0.0634],[104.5161,0.0551],[104.5224,0.0532]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.7495,0.0866],[104.7393,0.0853],[104.7392,0.0775],[104.7436,0.0751],[104.7495,0.0756],[104.7469,0.0824],[104.7495,0.0866]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.5005,0.0727],[104.4994,0.0793],[104.4876,0.092],[104.4814,0.0897],[104.4826,0.0838],[104.4987,0.0722],[104.5005,0.0727]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.5616,0.0724],[104.5589,0.0802],[104.5531,0.087],[104.5464,0.0926],[104.5421,0.1003],[104.5389,0.1032],[104.5341,0.1002],[104.5343,0.0959],[104.5411,0.0919],[104.5463,0.0846],[104.5524,0.0804],[104.5586,0.0738],[104.5616,0.0724]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.5267,0.1072],[104.521,0.1068],[104.5215,0.1028],[104.5254,0.1017],[104.5267,0.1072]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4883,0.1255],[104.4907,0.1168],[104.4958,0.1145],[104.4954,0.1199],[104.4919,0.1247],[104.4883,0.1255]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.2297,0.1369],[104.222,0.1353],[104.2339,0.1306],[104.2358,0.1336],[104.2297,0.1369]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4785,0.096],[104.4795,0.1028],[104.4781,0.1078],[104.4702,0.1145],[104.4639,0.1232],[104.4554,0.1371],[104.4498,0.1386],[104.446,0.1267],[104.4514,0.1236],[104.4544,0.1168],[104.4601,0.115],[104.4657,0.1057],[104.4706,0.1006],[104.4785,0.096]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.5454,0.1392],[104.5445,0.1359],[104.5505,0.1303],[104.5525,0.132],[104.5454,0.1392]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4804,0.1407],[104.4755,0.136],[104.4773,0.1301],[104.4802,0.131],[104.4824,0.1362],[104.4804,0.1407]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.5054,0.1376],[104.4976,0.1464],[104.4936,0.1468],[104.4894,0.1422],[104.4899,0.1354],[104.496,0.1274],[104.5025,0.1254],[104.5081,0.1209],[104.5106,0.1135],[104.515,0.1091],[104.5162,0.116],[104.5201,0.1148],[104.5177,0.124],[104.5098,0.1288],[104.5084,0.1364],[104.5054,0.1376]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.2051,0.1433],[104.2059,0.1488],[104.2003,0.1473],[104.2051,0.1433]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4897,0.1435],[104.4928,0.1481],[104.4896,0.1509],[104.4841,0.1472],[104.4842,0.1428],[104.4897,0.1435]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.471,0.144],[104.4708,0.1478],[104.4663,0.1532],[104.4644,0.1503],[104.4675,0.1444],[104.471,0.144]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4391,0.1455],[104.4421,0.1498],[104.4302,0.1595],[104.4241,0.1571],[104.4391,0.1455]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4065,0.1557],[104.4068,0.1591],[104.4026,0.162],[104.3987,0.1576],[104.4012,0.1501],[104.3968,0.1444],[104.4022,0.1349],[104.4026,0.1308],[104.4082,0.1224],[104.4106,0.1248],[104.4192,0.1207],[104.4151,0.1185],[104.4131,0.1144],[104.418,0.1125],[104.4271,0.1005],[104.4224,0.0995],[104.4172,0.1015],[104.403,0.1151],[104.3981,0.1125],[104.3929,0.1122],[104.3818,0.1237],[104.378,0.1238],[104.3861,0.114],[104.3935,0.1011],[104.4005,0.0917],[104.4079,0.0937],[104.4111,0.0905],[104.4276,0.0696],[104.436,0.0652],[104.4406,0.0581],[104.4437,0.0497],[104.4501,0.0432],[104.4631,0.0319],[104.4668,0.0261],[104.4692,0.0271],[104.4769,0.0207],[104.4808,0.0154],[104.4872,0.0163],[104.4949,0.0144],[104.4943,0.0203],[104.4912,0.0259],[104.486,0.0303],[104.4844,0.0391],[104.4765,0.0342],[104.4773,0.043],[104.472,0.0458],[104.4692,0.0504],[104.4654,0.0512],[104.4627,0.0563],[104.4747,0.0549],[104.4739,0.0507],[104.4879,0.0453],[104.4882,0.0502],[104.4922,0.0585],[104.4895,0.0627],[104.4934,0.0658],[104.4911,0.0734],[104.4805,0.079],[104.4785,0.0856],[104.4753,0.0898],[104.474,0.0963],[104.4659,0.1025],[104.4568,0.1128],[104.4503,0.1153],[104.4418,0.1282],[104.4376,0.1311],[104.4314,0.1379],[104.4262,0.1405],[104.4235,0.1461],[104.4181,0.1462],[104.4171,0.151],[104.4065,0.1557]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4984,0.159],[104.5016,0.1608],[104.4985,0.1663],[104.494,0.1659],[104.4946,0.159],[104.4984,0.159]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4789,0.162],[104.4718,0.1673],[104.4654,0.1662],[104.4652,0.1603],[104.4697,0.1611],[104.476,0.1584],[104.4789,0.162]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.2878,0.1616],[104.2817,0.1637],[104.2777,0.1697],[104.2756,0.166],[104.2761,0.1613],[104.2795,0.1604],[104.2806,0.1557],[104.2884,0.1514],[104.2935,0.1503],[104.2923,0.1586],[104.2878,0.1616]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4852,0.1727],[104.4773,0.1728],[104.4736,0.1684],[104.4764,0.1643],[104.4835,0.1682],[104.4852,0.1727]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4523,0.1643],[104.4523,0.1725],[104.447,0.1707],[104.4477,0.1657],[104.4523,0.1643]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.3315,0.1333],[104.3273,0.1392],[104.3187,0.1483],[104.3128,0.1521],[104.3079,0.1585],[104.2985,0.1674],[104.2919,0.1758],[104.2897,0.1738],[104.2956,0.1652],[104.2993,0.156],[104.2998,0.1486],[104.2953,0.1466],[104.2929,0.1419],[104.2976,0.1397],[104.2968,0.1365],[104.3015,0.1325],[104.302,0.1266],[104.3076,0.1283],[104.3106,0.1332],[104.3155,0.1315],[104.3187,0.1226],[104.3231,0.1137],[104.3239,0.1085],[104.3327,0.1053],[104.3361,0.106],[104.3374,0.1214],[104.3369,0.1293],[104.3315,0.1333]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4961,0.1688],[104.4889,0.1766],[104.4887,0.1698],[104.4961,0.1688]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.1888,0.1695],[104.1826,0.1753],[104.1826,0.1677],[104.1886,0.1656],[104.1888,0.1695]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.2539,0.1696],[104.2566,0.1726],[104.2536,0.1793],[104.2486,0.1729],[104.2539,0.1696]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4504,0.1791],[104.4513,0.1832],[104.4473,0.188],[104.4429,0.1853],[104.4504,0.1791]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.3642,0.1619],[104.3654,0.1647],[104.3623,0.1717],[104.3553,0.1779],[104.3506,0.1894],[104.346,0.1861],[104.3459,0.1803],[104.3528,0.1719],[104.3603,0.1577],[104.3694,0.1471],[104.3767,0.134],[104.3835,0.1299],[104.3917,0.1164],[104.3976,0.121],[104.3922,0.1354],[104.3835,0.1426],[104.3877,0.144],[104.3807,0.1568],[104.3745,0.1647],[104.3642,0.1619]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.3635,0.1873],[104.363,0.1843],[104.3671,0.1776],[104.37,0.1845],[104.3635,0.1873]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.2315,0.2006],[104.2272,0.1973],[104.2233,0.1971],[104.2141,0.1921],[104.2166,0.1872],[104.2133,0.1843],[104.2123,0.1795],[104.207,0.1777],[104.2069,0.1739],[104.2,0.1719],[104.2007,0.1667],[104.2056,0.1666],[104.2101,0.1632],[104.2156,0.1656],[104.2194,0.1642],[104.2255,0.1552],[104.2297,0.1554],[104.2299,0.1612],[104.2395,0.1677],[104.241,0.1716],[104.2414,0.1808],[104.2359,0.1898],[104.2375,0.1947],[104.2347,0.2001],[104.2315,0.2006]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.3324,0.2076],[104.3315,0.2031],[104.3372,0.1895],[104.3372,0.1859],[104.3407,0.1777],[104.3434,0.1787],[104.3422,0.1848],[104.3375,0.1949],[104.3363,0.2009],[104.3324,0.2076]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4145,0.2113],[104.4158,0.2146],[104.4105,0.2183],[104.4069,0.2139],[104.4104,0.211],[104.4145,0.2113]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4809,0.2238],[104.4769,0.2225],[104.4814,0.2153],[104.486,0.2134],[104.4925,0.2051],[104.4988,0.2018],[104.5042,0.2012],[104.496,0.2126],[104.4911,0.214],[104.4864,0.22],[104.4809,0.2238]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4713,0.2238],[104.4611,0.232],[104.4595,0.2307],[104.4713,0.2238]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.525,0.2356],[104.5252,0.239],[104.5206,0.2416],[104.5178,0.2461],[104.5128,0.247],[104.5135,0.2407],[104.5167,0.2371],[104.523,0.224],[104.5249,0.2183],[104.5211,0.2172],[104.5161,0.2193],[104.5156,0.2252],[104.5071,0.2287],[104.4985,0.2389],[104.4887,0.2457],[104.4852,0.2433],[104.4838,0.238],[104.4786,0.2423],[104.4759,0.2382],[104.4796,0.2334],[104.4882,0.2263],[104.4934,0.2168],[104.5027,0.211],[104.5085,0.2035],[104.5161,0.1993],[104.5181,0.1955],[104.5292,0.1886],[104.5254,0.185],[104.5196,0.1908],[104.5112,0.1948],[104.5061,0.1908],[104.5179,0.1781],[104.5243,0.1696],[104.5266,0.1644],[104.5307,0.1603],[104.5363,0.1516],[104.5427,0.1461],[104.5495,0.1543],[104.5501,0.1602],[104.5463,0.1601],[104.5436,0.1651],[104.5452,0.1682],[104.5511,0.1643],[104.554,0.1597],[104.5538,0.1543],[104.5569,0.146],[104.568,0.1405],[104.5603,0.1394],[104.5549,0.1414],[104.5493,0.1495],[104.5463,0.1465],[104.5459,0.1412],[104.5522,0.1346],[104.5555,0.1283],[104.5543,0.126],[104.5622,0.1182],[104.5752,0.107],[104.583,0.1019],[104.587,0.0976],[104.5919,0.0961],[104.5962,0.0896],[104.6024,0.0844],[104.6154,0.079],[104.6184,0.081],[104.6138,0.0874],[104.6253,0.0881],[104.6294,0.0795],[104.6214,0.0752],[104.6376,0.0615],[104.6448,0.0524],[104.6498,0.0507],[104.6576,0.0405],[104.6716,0.0286],[104.683,0.021],[104.6963,0.0158],[104.7015,0.0182],[104.7017,0.0221],[104.7098,0.0379],[104.7035,0.0479],[104.6966,0.0503],[104.6892,0.0508],[104.676,0.0653],[104.6712,0.0665],[104.6637,0.0738],[104.6591,0.0812],[104.6503,0.0931],[104.637,0.1064],[104.6309,0.1115],[104.6219,0.1244],[104.617,0.1297],[104.6096,0.1399],[104.6083,0.1456],[104.6049,0.1509],[104.594,0.1603],[104.5917,0.1613],[104.5854,0.1715],[104.5738,0.1819],[104.5688,0.1895],[104.5565,0.2035],[104.5449,0.2125],[104.5405,0.2194],[104.5329,0.2267],[104.5282,0.2337],[104.525,0.2356]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4449,0.2479],[104.4408,0.245],[104.4502,0.2391],[104.4477,0.2346],[104.4552,0.2334],[104.464,0.2365],[104.4562,0.2453],[104.4449,0.2479]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.5029,0.2559],[104.5036,0.2521],[104.5085,0.2479],[104.5113,0.2513],[104.5075,0.2559],[104.5029,0.2559]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.3543,0.2664],[104.3484,0.2658],[104.35,0.261],[104.3581,0.2568],[104.3588,0.2625],[104.3543,0.2664]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4922,0.2659],[104.4904,0.263],[104.4941,0.2598],[104.5029,0.2595],[104.4922,0.2659]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.3757,0.2697],[104.3732,0.2678],[104.3728,0.2554],[104.3771,0.2597],[104.3785,0.2678],[104.3757,0.2697]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.3538,0.2742],[104.3507,0.2733],[104.3624,0.2615],[104.3667,0.2634],[104.3653,0.2687],[104.3605,0.2695],[104.3538,0.2742]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.3307,0.2808],[104.3297,0.2783],[104.3437,0.2669],[104.3481,0.2671],[104.3488,0.2726],[104.3462,0.2762],[104.3427,0.2753],[104.3307,0.2808]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4313,0.2897],[104.4257,0.2901],[104.4192,0.2855],[104.4185,0.2814],[104.4242,0.2786],[104.4319,0.2831],[104.4313,0.2897]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4081,0.2868],[104.4076,0.2907],[104.4025,0.2908],[104.4031,0.2858],[104.4081,0.2868]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.3384,0.2898],[104.3317,0.2929],[104.3299,0.29],[104.332,0.2847],[104.3356,0.2837],[104.3424,0.2768],[104.3472,0.2814],[104.3451,0.2883],[104.3384,0.2898]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4215,0.2957],[104.4147,0.2953],[104.4127,0.2878],[104.419,0.2892],[104.4215,0.2957]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4404,0.3075],[104.4372,0.304],[104.4446,0.3],[104.4456,0.3038],[104.4404,0.3075]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.3481,0.312],[104.3427,0.3166],[104.3373,0.3188],[104.3324,0.3239],[104.3254,0.3273],[104.3231,0.3164],[104.3285,0.3059],[104.3357,0.2998],[104.3404,0.302],[104.3434,0.2943],[104.3549,0.2891],[104.352,0.2855],[104.3546,0.2789],[104.3649,0.2738],[104.3675,0.2799],[104.3753,0.2796],[104.3811,0.2773],[104.3864,0.2785],[104.3839,0.2826],[104.3825,0.2902],[104.3794,0.2895],[104.3767,0.2939],[104.3732,0.2924],[104.3727,0.3007],[104.3691,0.3007],[104.3684,0.3062],[104.3627,0.3059],[104.3481,0.312]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.3153,0.3399],[104.3125,0.3448],[104.3025,0.3463],[104.3034,0.3393],[104.3084,0.3294],[104.3083,0.3222],[104.302,0.3153],[104.3018,0.3094],[104.3094,0.3087],[104.3121,0.3128],[104.3163,0.3116],[104.3209,0.3138],[104.3194,0.3176],[104.3206,0.3224],[104.3239,0.3251],[104.3218,0.3366],[104.3153,0.3399]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.5574,0.3483],[104.5511,0.3465],[104.5524,0.339],[104.5559,0.3345],[104.5592,0.339],[104.5663,0.3422],[104.5574,0.3483]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4722,0.3607],[104.467,0.366],[104.4616,0.3611],[104.4575,0.3533],[104.4603,0.3485],[104.4635,0.3479],[104.4759,0.3515],[104.4792,0.3489],[104.4876,0.3494],[104.4817,0.3574],[104.4722,0.3607]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4239,0.369],[104.4221,0.3655],[104.4299,0.3604],[104.4308,0.3693],[104.4239,0.369]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.2561,0.3753],[104.2535,0.3722],[104.258,0.3686],[104.2639,0.3686],[104.2561,0.3753]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.332,0.3761],[104.328,0.3727],[104.3289,0.3672],[104.3332,0.3619],[104.348,0.3491],[104.3546,0.3447],[104.3463,0.344],[104.3386,0.3408],[104.3389,0.3357],[104.3542,0.3137],[104.3589,0.3123],[104.3654,0.3141],[104.3661,0.3097],[104.3702,0.3101],[104.3791,0.3137],[104.3782,0.3062],[104.3791,0.3006],[104.3892,0.3004],[104.3906,0.2896],[104.3936,0.2893],[104.3972,0.2959],[104.3997,0.292],[104.4111,0.2938],[104.42,0.2978],[104.4181,0.3011],[104.4137,0.3011],[104.4101,0.3091],[104.4076,0.3078],[104.3974,0.313],[104.4034,0.3163],[104.4084,0.3135],[104.4164,0.3117],[104.4226,0.3079],[104.4251,0.3089],[104.4342,0.3074],[104.4325,0.3126],[104.4229,0.319],[104.4218,0.3278],[104.4166,0.3315],[104.4044,0.334],[104.395,0.3374],[104.3889,0.3438],[104.38,0.3483],[104.3728,0.3506],[104.3687,0.3553],[104.3515,0.3647],[104.3431,0.3677],[104.341,0.3711],[104.3356,0.3717],[104.332,0.3761]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.3272,0.3753],[104.3228,0.3754],[104.3188,0.3721],[104.3239,0.369],[104.3272,0.3753]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4688,0.3831],[104.4632,0.3803],[104.4721,0.3745],[104.4774,0.3662],[104.4842,0.3659],[104.4842,0.3705],[104.4783,0.3754],[104.4726,0.3782],[104.4688,0.3831]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4313,0.3844],[104.4248,0.3849],[104.4135,0.3826],[104.4092,0.3786],[104.4107,0.3739],[104.4159,0.372],[104.4182,0.3759],[104.4247,0.3755],[104.4264,0.3776],[104.4328,0.3727],[104.4357,0.3744],[104.4313,0.3844]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.3201,0.3846],[104.307,0.3843],[104.3081,0.3815],[104.3138,0.3789],[104.3162,0.3735],[104.3211,0.3757],[104.3201,0.3846]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4382,0.4024],[104.4358,0.3994],[104.441,0.3945],[104.4423,0.3904],[104.4473,0.3913],[104.4569,0.3903],[104.4563,0.394],[104.4517,0.4009],[104.4466,0.4029],[104.4382,0.4024]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.5167,0.4304],[104.5117,0.4286],[104.5172,0.4161],[104.5173,0.4108],[104.5218,0.4009],[104.5216,0.3983],[104.5266,0.3815],[104.526,0.3719],[104.532,0.3611],[104.5372,0.365],[104.5338,0.3721],[104.5345,0.3759],[104.5318,0.387],[104.5343,0.3895],[104.5307,0.3947],[104.5293,0.4052],[104.5345,0.409],[104.5383,0.4149],[104.5425,0.4152],[104.5474,0.4108],[104.5598,0.4091],[104.5616,0.4141],[104.556,0.4133],[104.5528,0.4162],[104.5503,0.4224],[104.5434,0.4215],[104.5346,0.425],[104.531,0.4236],[104.5228,0.4239],[104.5173,0.4278],[104.5167,0.4304]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4154,0.4475],[104.4141,0.4513],[104.4082,0.4474],[104.4001,0.4459],[104.3934,0.4475],[104.3903,0.4438],[104.3938,0.4368],[104.3991,0.4411],[104.4081,0.4442],[104.4148,0.4435],[104.4154,0.4475]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.3862,0.4525],[104.3829,0.4556],[104.3805,0.4483],[104.3774,0.4452],[104.3803,0.4392],[104.3851,0.4381],[104.3897,0.4442],[104.39,0.4522],[104.3862,0.4525]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4036,0.456],[104.3995,0.4563],[104.3982,0.4499],[104.4042,0.4495],[104.4091,0.4516],[104.4072,0.4554],[104.4036,0.456]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4073,0.4738],[104.3984,0.4723],[104.4034,0.4626],[104.409,0.4667],[104.4144,0.4623],[104.4201,0.46],[104.4259,0.4595],[104.425,0.4654],[104.4189,0.4701],[104.4119,0.4704],[104.4073,0.4738]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4496,0.4789],[104.4428,0.481],[104.4401,0.4785],[104.4556,0.4678],[104.4567,0.4776],[104.4496,0.4789]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.3847,0.4969],[104.3855,0.4892],[104.3813,0.4857],[104.3746,0.4842],[104.3716,0.4803],[104.3828,0.4799],[104.3856,0.4846],[104.391,0.4878],[104.3903,0.4928],[104.3847,0.4969]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"LineString","coordinates":[[104.4113,0.51],[104.4089,0.5063],[104.4129,0.4997],[104.4163,0.5003],[104.4171,0.505],[104.4113,0.51]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[105.883,2.3647],[105.8782,2.3622],[105.8781,2.3582],[105.8834,2.3559],[105.8863,2.3597],[105.883,2.3647]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.0509,2.5151],[106.0492,2.5251],[106.04,2.5155],[106.0488,2.5134],[106.0509,2.5151]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.2817,2.6201],[106.2787,2.6154],[106.2732,2.6136],[106.2748,2.6068],[106.2797,2.6114],[106.2825,2.617],[106.2817,2.6201]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.2667,2.7258],[106.2607,2.7254],[106.2596,2.7222],[106.2527,2.7212],[106.2521,2.7155],[106.2564,2.7122],[106.2635,2.7158],[106.2667,2.7258]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.1703,2.761],[106.1697,2.758],[106.1758,2.7458],[106.1803,2.7458],[106.1869,2.7433],[106.1932,2.7462],[106.1919,2.7526],[106.1856,2.7579],[106.1808,2.7569],[106.1782,2.7593],[106.1703,2.761]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.0175,2.7909],[106.0139,2.7891],[106.0159,2.784],[106.0212,2.7837],[106.0204,2.7887],[106.0175,2.7909]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.2095,2.8089],[106.2003,2.812],[106.1957,2.8104],[106.1934,2.8027],[106.1972,2.7967],[106.2025,2.7939],[106.2002,2.7898],[106.2162,2.7834],[106.2233,2.7666],[106.2209,2.764],[106.2146,2.7642],[106.2006,2.7615],[106.2023,2.7576],[106.2074,2.7588],[106.2139,2.7559],[106.2175,2.751],[106.2183,2.7459],[106.2257,2.7443],[106.2258,2.7385],[106.2334,2.7343],[106.238,2.7338],[106.2416,2.7273],[106.2467,2.7245],[106.248,2.7305],[106.2416,2.7384],[106.2478,2.7431],[106.2489,2.7536],[106.255,2.756],[106.2515,2.7615],[106.2441,2.7601],[106.2391,2.7612],[106.2394,2.765],[106.2476,2.7696],[106.2459,2.7768],[106.2366,2.7793],[106.2309,2.7869],[106.2269,2.7897],[106.2311,2.7939],[106.2304,2.7965],[106.2228,2.8001],[106.2271,2.8042],[106.226,2.8073],[106.2207,2.8063],[106.2167,2.8083],[106.2095,2.8089]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.1184,2.8465],[106.1209,2.8418],[106.1243,2.844],[106.1222,2.8477],[106.1184,2.8465]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[105.7924,2.8843],[105.7875,2.8842],[105.7852,2.8802],[105.79,2.877],[105.7924,2.8843]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[105.6836,2.9239],[105.6786,2.9192],[105.6842,2.9122],[105.6881,2.9099],[105.691,2.915],[105.6951,2.917],[105.6898,2.9239],[105.6836,2.9239]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.1294,2.938],[106.1254,2.9397],[106.1204,2.9379],[106.1145,2.9324],[106.1126,2.9274],[106.1145,2.9253],[106.1316,2.9284],[106.1372,2.9182],[106.1496,2.9193],[106.1504,2.9218],[106.1455,2.9305],[106.134,2.9374],[106.1294,2.938]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.1831,2.9579],[106.1803,2.9587],[106.175,2.9525],[106.1802,2.9446],[106.1836,2.9458],[106.1883,2.9423],[106.1929,2.9506],[106.186,2.9508],[106.1831,2.9579]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.1642,2.9737],[106.1607,2.9666],[106.1565,2.9658],[106.155,2.9602],[106.1574,2.9574],[106.1649,2.954],[106.1683,2.9559],[106.1696,2.961],[106.1682,2.9675],[106.1642,2.9737]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[105.6932,2.9777],[105.6898,2.9761],[105.6916,2.9698],[105.6993,2.9696],[105.6986,2.9625],[105.7054,2.9592],[105.7085,2.9642],[105.7024,2.9747],[105.6983,2.9729],[105.6932,2.9777]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.2512,3.0038],[106.2431,3.0028],[106.2394,2.9971],[106.2431,2.9946],[106.2455,2.9984],[106.2495,2.9984],[106.2512,3.0038]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.1464,3.006],[106.1421,3.0046],[106.1367,2.9966],[106.1362,2.9906],[106.1382,2.9879],[106.1366,2.9806],[106.1417,2.9771],[106.1436,2.9891],[106.1495,2.9949],[106.149,3.0023],[106.1464,3.006]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[105.8053,3.0086],[105.8022,3.0059],[105.8054,3.0019],[105.8125,2.9997],[105.8141,3.0042],[105.8053,3.0086]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.4076,3.0372],[106.4068,3.032],[106.399,3.0379],[106.3976,3.0322],[106.3935,3.03],[106.3985,3.0198],[106.405,3.0207],[106.4067,3.0144],[106.4102,3.0167],[106.4161,3.0319],[106.4111,3.0303],[106.4113,3.0373],[106.4076,3.0372]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.3856,3.0392],[106.3813,3.0383],[106.3802,3.0325],[106.3829,3.0259],[106.3877,3.0268],[106.387,3.0369],[106.3856,3.0392]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[105.955,3.0342],[105.9548,3.0458],[105.9511,3.0419],[105.9505,3.0376],[105.9462,3.0288],[105.9517,3.0259],[105.9563,3.0324],[105.955,3.0342]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.3932,3.0464],[106.3897,3.0443],[106.39,3.0396],[106.3945,3.0368],[106.3947,3.045],[106.3932,3.0464]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.2225,3.0401],[106.2238,3.0483],[106.2186,3.0485],[106.2225,3.0401]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[105.6985,3.0634],[105.6915,3.0586],[105.6966,3.0493],[105.696,3.0448],[105.706,3.0359],[105.7043,3.0309],[105.6963,3.03],[105.6951,3.0255],[105.6981,3.0185],[105.6962,3.0139],[105.6922,3.0124],[105.6928,3.0064],[105.6895,3.0053],[105.6847,3.0105],[105.6802,3.0124],[105.6758,3.0086],[105.6838,3.0001],[105.6901,2.9969],[105.6967,2.9965],[105.7063,2.9878],[105.711,2.9872],[105.7133,2.9835],[105.7125,2.9766],[105.7068,2.9773],[105.7087,2.9663],[105.7148,2.9639],[105.7153,2.9587],[105.7132,2.9523],[105.7079,2.953],[105.7078,2.9483],[105.7046,2.9434],[105.7076,2.9393],[105.7049,2.9326],[105.699,2.9352],[105.6963,2.9308],[105.7067,2.9287],[105.7041,2.9182],[105.6992,2.916],[105.6987,2.9121],[105.7018,2.9084],[105.7002,2.9021],[105.6962,2.8972],[105.6967,2.8894],[105.6997,2.8887],[105.703,2.8819],[105.6928,2.8819],[105.6933,2.8726],[105.6963,2.8729],[105.6937,2.8643],[105.6975,2.8579],[105.693,2.8555],[105.7043,2.8415],[105.7032,2.8384],[105.7202,2.83],[105.7203,2.8268],[105.725,2.8209],[105.7257,2.8175],[105.7331,2.8154],[105.7393,2.8242],[105.7387,2.8308],[105.7426,2.8298],[105.7465,2.8189],[105.75,2.8223],[105.7478,2.8262],[105.7517,2.83],[105.7576,2.827],[105.76,2.8352],[105.7658,2.8357],[105.7698,2.834],[105.7693,2.8431],[105.7657,2.8504],[105.7619,2.8493],[105.7566,2.8528],[105.7554,2.8568],[105.75,2.8548],[105.7456,2.8556],[105.7398,2.8516],[105.7356,2.8546],[105.735,2.8604],[105.7317,2.8648],[105.7279,2.8663],[105.7247,2.8729],[105.7313,2.8765],[105.7319,2.8801],[105.7368,2.8793],[105.7377,2.8747],[105.7416,2.8683],[105.7475,2.8676],[105.7553,2.8735],[105.7612,2.8716],[105.7676,2.8722],[105.7699,2.8748],[105.7726,2.8836],[105.767,2.8904],[105.7661,2.8946],[105.7703,2.8982],[105.7753,2.8956],[105.7833,2.8972],[105.7871,2.9032],[105.7934,2.8939],[105.798,2.8925],[105.8004,2.8882],[105.8085,2.8874],[105.817,2.8884],[105.8214,2.8911],[105.8169,2.8975],[105.8117,2.9019],[105.7957,2.9088],[105.8027,2.9102],[105.8105,2.9066],[105.8184,2.9089],[105.8226,2.9075],[105.8285,2.9112],[105.8218,2.9169],[105.8217,2.9258],[105.8147,2.9286],[105.8153,2.9377],[105.8136,2.9444],[105.8175,2.949],[105.8188,2.954],[105.8244,2.9583],[105.819,2.9684],[105.8289,2.9697],[105.8348,2.9593],[105.8447,2.9586],[105.8475,2.9642],[105.8427,2.9665],[105.8426,2.9723],[105.8474,2.9781],[105.8413,2.9784],[105.8411,2.9815],[105.8508,2.9868],[105.8441,2.9908],[105.8412,2.9901],[105.8323,2.9928],[105.8272,2.989],[105.8149,2.992],[105.8092,2.9902],[105.8046,2.992],[105.8007,2.9961],[105.7966,2.9911],[105.7893,2.9888],[105.7874,2.9831],[105.7901,2.9802],[105.7887,2.9744],[105.7837,2.9716],[105.7797,2.9731],[105.776,2.9794],[105.7699,2.982],[105.7621,2.9803],[105.7612,2.9753],[105.7548,2.9685],[105.7492,2.9695],[105.7406,2.9743],[105.7339,2.9807],[105.7264,2.9908],[105.7252,2.9968],[105.7335,3.0075],[105.7369,3.0094],[105.7379,3.0158],[105.7344,3.0195],[105.7344,3.0255],[105.7394,3.0297],[105.7345,3.0389],[105.7355,3.0454],[105.7274,3.0464],[105.7274,3.0373],[105.7224,3.0331],[105.7148,3.0323],[105.7137,3.0414],[105.7146,3.0462],[105.7057,3.0604],[105.6985,3.0634]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[105.983,3.0874],[105.9812,3.0879],[105.971,3.0776],[105.967,3.0708],[105.9693,3.0644],[105.9687,3.0587],[105.9701,3.0524],[105.9685,3.043],[105.964,3.0405],[105.9682,3.0366],[105.9681,3.0294],[105.9746,3.0286],[105.9766,3.0196],[105.9805,3.0193],[105.9865,3.0295],[105.9803,3.0374],[105.9829,3.0435],[105.9886,3.0469],[105.9832,3.0552],[105.9894,3.0711],[105.9879,3.0767],[105.9847,3.0806],[105.9856,3.0846],[105.983,3.0874]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[105.9547,3.0916],[105.9476,3.0914],[105.9473,3.0854],[105.9497,3.0817],[105.948,3.0739],[105.9555,3.0712],[105.9581,3.0768],[105.9555,3.0843],[105.9547,3.0916]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[105.9712,3.092],[105.9631,3.0839],[105.9659,3.081],[105.974,3.0878],[105.9712,3.092]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[105.5886,3.0931],[105.5845,3.0918],[105.5885,3.0843],[105.5931,3.0818],[105.598,3.0821],[105.6057,3.0788],[105.6096,3.0825],[105.6024,3.0885],[105.5962,3.0916],[105.5886,3.0931]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.3567,3.0916],[106.3523,3.0912],[106.351,3.0841],[106.3481,3.0797],[106.3445,3.0792],[106.3419,3.0663],[106.3438,3.058],[106.3435,3.0518],[106.3482,3.0499],[106.3517,3.0532],[106.3554,3.0598],[106.3534,3.064],[106.3553,3.0672],[106.3532,3.0754],[106.3567,3.0809],[106.3586,3.0889],[106.3567,3.0916]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.3356,3.0847],[106.3357,3.0892],[106.331,3.0928],[106.3308,3.0825],[106.3269,3.0798],[106.3273,3.0755],[106.3374,3.0793],[106.3356,3.0847]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[105.9562,3.101],[105.9525,3.1018],[105.948,3.098],[105.9582,3.0938],[105.9624,3.0965],[105.9622,3.1014],[105.9562,3.101]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[105.7015,3.0998],[105.6974,3.0954],[105.6996,3.0928],[105.7044,3.0813],[105.7122,3.0746],[105.7239,3.0868],[105.7263,3.0868],[105.731,3.0813],[105.7358,3.0857],[105.7335,3.0912],[105.7287,3.0948],[105.7236,3.0927],[105.7169,3.0994],[105.7147,3.0982],[105.7015,3.0998]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[105.6859,3.1178],[105.6789,3.1149],[105.6735,3.1172],[105.6759,3.1073],[105.6795,3.1049],[105.6822,3.1073],[105.6898,3.1043],[105.6925,3.1089],[105.692,3.1132],[105.6859,3.1178]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[105.6538,3.1195],[105.6441,3.1184],[105.6417,3.115],[105.6424,3.1105],[105.6461,3.1033],[105.6433,3.1005],[105.644,3.0935],[105.6505,3.0923],[105.6539,3.0974],[105.6581,3.0983],[105.6639,3.0968],[105.6722,3.0917],[105.676,3.0927],[105.6722,3.0998],[105.6628,3.1032],[105.6639,3.1106],[105.6538,3.1195]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.4045,3.1213],[106.4017,3.1195],[106.3966,3.1121],[106.399,3.1067],[106.4021,3.1092],[106.4012,3.1134],[106.4045,3.1213]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.4495,3.1283],[106.4449,3.1263],[106.4469,3.1229],[106.451,3.1256],[106.4545,3.1204],[106.4569,3.1233],[106.4495,3.1283]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.1195,3.1338],[106.1137,3.1409],[106.1103,3.1273],[106.1137,3.1182],[106.1232,3.1179],[106.1263,3.1193],[106.1228,3.1316],[106.1195,3.1338]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.1094,3.1378],[106.1124,3.1417],[106.1087,3.1437],[106.1026,3.1385],[106.1073,3.1352],[106.1094,3.1378]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.4175,3.1547],[106.4093,3.1481],[106.4081,3.1441],[106.4036,3.14],[106.4031,3.1357],[106.4112,3.1315],[106.4136,3.1346],[106.4185,3.131],[106.4221,3.1372],[106.4252,3.1336],[106.4342,3.1329],[106.4377,3.1361],[106.4357,3.1424],[106.4304,3.1499],[106.4249,3.1499],[106.4215,3.1463],[106.4175,3.1547]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.3955,3.1548],[106.3922,3.1515],[106.3876,3.1514],[106.3814,3.144],[106.3814,3.1383],[106.3933,3.1362],[106.3958,3.1405],[106.3928,3.1453],[106.3955,3.1548]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.0877,3.1584],[106.0832,3.1568],[106.0752,3.149],[106.0768,3.1469],[106.0835,3.1489],[106.0852,3.1469],[106.0814,3.1405],[106.0797,3.134],[106.0823,3.1251],[106.0911,3.124],[106.0989,3.136],[106.0989,3.1415],[106.0956,3.1422],[106.0921,3.1533],[106.0879,3.152],[106.0877,3.1584]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.4078,3.1599],[106.3992,3.1551],[106.3972,3.1512],[106.4017,3.1466],[106.4086,3.1514],[106.4094,3.1579],[106.4078,3.1599]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.3157,3.1595],[106.3175,3.1641],[106.3166,3.1695],[106.3086,3.159],[106.3071,3.1511],[106.3008,3.1496],[106.3015,3.1416],[106.2985,3.1389],[106.2948,3.1421],[106.2925,3.1381],[106.2922,3.1316],[106.2867,3.1294],[106.2852,3.1227],[106.2887,3.113],[106.2968,3.1045],[106.3026,3.1202],[106.3087,3.117],[106.3103,3.1128],[106.3086,3.1052],[106.3103,3.1014],[106.3054,3.0958],[106.3063,3.0882],[106.3086,3.0865],[106.3152,3.0891],[106.3173,3.0995],[106.3201,3.1019],[106.321,3.1135],[106.3301,3.1149],[106.3295,3.1197],[106.3386,3.1204],[106.3419,3.1251],[106.3421,3.1343],[106.3407,3.1404],[106.3365,3.1472],[106.329,3.149],[106.3337,3.1545],[106.3272,3.1572],[106.3273,3.149],[106.3241,3.1449],[106.3199,3.1429],[106.3164,3.1361],[106.3117,3.1351],[106.3104,3.1437],[106.3128,3.1506],[106.3123,3.1549],[106.3157,3.1595]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.307,3.1751],[106.3025,3.179],[106.2975,3.1716],[106.3025,3.1655],[106.3067,3.1705],[106.307,3.1751]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.3683,3.1905],[106.3648,3.1852],[106.3658,3.1723],[106.3621,3.1702],[106.3631,3.1623],[106.3677,3.1635],[106.365,3.169],[106.3698,3.1769],[106.3702,3.1819],[106.3683,3.1905]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.4441,3.1931],[106.4331,3.1895],[106.4339,3.1841],[106.439,3.1842],[106.4385,3.1799],[106.433,3.1745],[106.4353,3.1677],[106.44,3.1717],[106.4407,3.1776],[106.4454,3.1761],[106.4464,3.1868],[106.4417,3.1871],[106.4441,3.1931]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.3055,3.1998],[106.2956,3.1994],[106.293,3.197],[106.2914,3.1902],[106.2965,3.1861],[106.3015,3.196],[106.3055,3.1998]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.4867,3.2113],[106.48,3.2077],[106.4775,3.1928],[106.4841,3.1947],[106.4925,3.1939],[106.4985,3.1841],[106.501,3.1921],[106.4962,3.1904],[106.5012,3.2017],[106.4983,3.2058],[106.4936,3.2046],[106.4905,3.1997],[106.4872,3.2003],[106.4867,3.2113]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.3051,3.2342],[106.3012,3.2344],[106.2993,3.2302],[106.2953,3.2314],[106.2929,3.2287],[106.2942,3.2225],[106.2979,3.2162],[106.3003,3.2217],[106.3086,3.2291],[106.3051,3.2342]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.2352,3.2291],[106.2297,3.2308],[106.2215,3.2288],[106.2223,3.2237],[106.2196,3.2187],[106.2153,3.2188],[106.2106,3.2273],[106.2075,3.2298],[106.2043,3.2253],[106.2011,3.232],[106.1971,3.2324],[106.1962,3.2249],[106.1973,3.2198],[106.2015,3.2138],[106.2032,3.2068],[106.2023,3.2033],[106.2071,3.1956],[106.2082,3.1893],[106.2067,3.1855],[106.2092,3.1688],[106.2062,3.163],[106.207,3.1533],[106.2043,3.1462],[106.2041,3.1387],[106.2065,3.131],[106.2098,3.1268],[106.211,3.1214],[106.2164,3.1206],[106.2215,3.1313],[106.2238,3.1306],[106.2239,3.1217],[106.2225,3.116],[106.2229,3.1087],[106.228,3.1078],[106.2374,3.0976],[106.2391,3.1046],[106.2428,3.1059],[106.2443,3.1012],[106.2495,3.1087],[106.2497,3.1144],[106.2536,3.1157],[106.26,3.1117],[106.2613,3.1001],[106.2593,3.0963],[106.2655,3.0921],[106.2718,3.0994],[106.275,3.0936],[106.2728,3.089],[106.2734,3.0803],[106.2783,3.0802],[106.2822,3.0875],[106.2861,3.1],[106.2859,3.1123],[106.2772,3.1149],[106.2749,3.1201],[106.2797,3.138],[106.2838,3.1399],[106.2854,3.1481],[106.2881,3.1504],[106.2915,3.161],[106.2893,3.1758],[106.2876,3.1805],[106.2818,3.1711],[106.2764,3.1707],[106.2733,3.1736],[106.2757,3.181],[106.2824,3.1819],[106.2821,3.1872],[106.2781,3.195],[106.2722,3.1976],[106.2619,3.2062],[106.2577,3.2077],[106.2581,3.2152],[106.2485,3.2234],[106.2454,3.2237],[106.2406,3.2188],[106.2352,3.2291]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.4528,3.2513],[106.4482,3.2471],[106.4425,3.2463],[106.4378,3.2406],[106.4441,3.2353],[106.4448,3.2323],[106.4518,3.2322],[106.451,3.2291],[106.4566,3.226],[106.4583,3.2308],[106.4531,3.2371],[106.4516,3.2425],[106.4528,3.2513]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.3008,3.2741],[106.2978,3.2761],[106.2972,3.2631],[106.2985,3.2597],[106.2939,3.2444],[106.2984,3.2378],[106.303,3.248],[106.3055,3.2609],[106.3008,3.2741]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.3058,3.2841],[106.3017,3.2852],[106.3016,3.2787],[106.3054,3.2691],[106.3075,3.2716],[106.3058,3.2841]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.4172,3.301],[106.4135,3.2987],[106.4112,3.2914],[106.4118,3.2863],[106.4063,3.2783],[106.4154,3.2719],[106.4188,3.2795],[106.4172,3.2817],[106.4194,3.2892],[106.4155,3.2944],[106.4172,3.301]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.2018,3.3061],[106.1952,3.3024],[106.1924,3.2955],[106.1947,3.2911],[106.1983,3.2891],[106.2017,3.2918],[106.2009,3.3012],[106.2018,3.3061]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.4089,3.308],[106.4009,3.3048],[106.3967,3.3098],[106.393,3.3056],[106.392,3.2971],[106.3985,3.2921],[106.4024,3.2979],[106.4114,3.2995],[106.4129,3.3067],[106.4089,3.308]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.3073,3.3206],[106.3041,3.3192],[106.3028,3.3075],[106.3065,3.3048],[106.3088,3.3094],[106.3073,3.3206]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.0475,3.3378],[106.0427,3.3345],[106.0489,3.3288],[106.0529,3.33],[106.0519,3.3366],[106.0475,3.3378]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.3037,3.3378],[106.3067,3.3473],[106.3049,3.3581],[106.3016,3.3545],[106.3011,3.344],[106.3037,3.3378]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.3157,3.3657],[106.3138,3.3602],[106.3155,3.3558],[106.3196,3.3583],[106.3157,3.3657]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.3513,3.3805],[106.3465,3.3812],[106.3464,3.3768],[106.3497,3.3723],[106.3513,3.3805]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.4558,3.3822],[106.4503,3.3814],[106.4459,3.3784],[106.4513,3.3706],[106.4554,3.378],[106.4558,3.3822]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.2863,3.3848],[106.281,3.3849],[106.2765,3.3822],[106.2709,3.3826],[106.2673,3.3748],[106.2699,3.3695],[106.2685,3.3651],[106.2646,3.3626],[106.2664,3.3561],[106.2707,3.3562],[106.2636,3.3407],[106.2509,3.3518],[106.2456,3.3465],[106.2422,3.3389],[106.2409,3.3296],[106.2412,3.3238],[106.2384,3.3206],[106.2349,3.3026],[106.2391,3.3009],[106.2384,3.2934],[106.2458,3.2906],[106.2443,3.286],[106.2397,3.2816],[106.2372,3.2757],[106.2406,3.2679],[106.2361,3.2634],[106.2326,3.2661],[106.2276,3.2614],[106.2316,3.2558],[106.2348,3.256],[106.2401,3.2517],[106.2431,3.2425],[106.2497,3.2386],[106.2605,3.2349],[106.2658,3.23],[106.2719,3.2304],[106.2736,3.2339],[106.282,3.2273],[106.2847,3.2322],[106.2812,3.2478],[106.2785,3.2532],[106.2732,3.2514],[106.2658,3.2582],[106.2679,3.2631],[106.2644,3.2696],[106.2647,3.2879],[106.2615,3.2903],[106.2657,3.2945],[106.2728,3.2879],[106.2764,3.2757],[106.2797,3.2746],[106.2778,3.2666],[106.2803,3.2566],[106.2853,3.2507],[106.2894,3.2518],[106.2929,3.2607],[106.2927,3.2636],[106.2959,3.2764],[106.2945,3.2852],[106.2929,3.2869],[106.2904,3.3078],[106.2956,3.3136],[106.2949,3.3197],[106.2979,3.3296],[106.2972,3.3405],[106.2921,3.3463],[106.2962,3.3533],[106.3023,3.358],[106.3051,3.364],[106.3078,3.3653],[106.3057,3.375],[106.3029,3.38],[106.2959,3.3821],[106.2931,3.3846],[106.2892,3.3822],[106.2863,3.3848]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.2317,3.3852],[106.2279,3.3844],[106.2272,3.3791],[106.2323,3.3796],[106.2317,3.3852]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.2279,3.3943],[106.2245,3.3949],[106.2142,3.39],[106.2048,3.3826],[106.2001,3.3763],[106.2006,3.3687],[106.2048,3.3665],[106.2043,3.359],[106.2053,3.3528],[106.2025,3.3472],[106.1948,3.3469],[106.1869,3.3445],[106.1823,3.339],[106.1792,3.3394],[106.1719,3.3317],[106.175,3.3237],[106.1761,3.3159],[106.1815,3.3134],[106.1821,3.3084],[106.1851,3.306],[106.1851,3.3019],[106.1909,3.3007],[106.1955,3.3054],[106.1978,3.3145],[106.2007,3.3193],[106.2012,3.3256],[106.2059,3.3215],[106.2037,3.3129],[106.2102,3.2993],[106.2204,3.3006],[106.2214,3.3069],[106.2264,3.3113],[106.2273,3.3196],[106.2362,3.334],[106.2393,3.3439],[106.2323,3.352],[106.2278,3.3453],[106.2238,3.3456],[106.2256,3.3515],[106.2226,3.3588],[106.2153,3.3623],[106.22,3.3656],[106.2214,3.37],[106.2184,3.3724],[106.219,3.3767],[106.2245,3.3872],[106.2282,3.3883],[106.2279,3.3943]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.4413,3.3947],[106.4376,3.3899],[106.4355,3.381],[106.4279,3.3759],[106.4347,3.3747],[106.442,3.3793],[106.4413,3.3947]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.1522,3.3961],[106.1531,3.4021],[106.1489,3.4049],[106.1453,3.4001],[106.1492,3.3958],[106.1522,3.3961]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.2782,3.4025],[106.2684,3.398],[106.2766,3.3881],[106.2861,3.3873],[106.2918,3.3905],[106.2806,3.4026],[106.2782,3.4025]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"LineString","coordinates":[[106.3447,3.4173],[106.3417,3.4169],[106.3407,3.4119],[106.331,3.4064],[106.3334,3.4026],[106.3327,3.3961],[106.3343,3.3905],[106.3308,3.3832],[106.3287,3.375],[106.3316,3.369],[106.3271,3.358],[106.321,3.3489],[106.3182,3.3477],[106.317,3.3421],[106.3238,3.337],[106.3204,3.3306],[106.3165,3.3299],[106.319,3.3231],[106.3217,3.3244],[106.3256,3.3333],[106.3255,3.3389],[106.331,3.3352],[106.3322,3.3439],[106.3343,3.344],[106.3384,3.3517],[106.3388,3.3605],[106.3375,3.3645],[106.3404,3.3691],[106.342,3.3844],[106.34,3.3936],[106.3431,3.4025],[106.3436,3.4086],[106.3466,3.4145],[106.3447,3.4173]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.2648,0.5017],[104.258,0.5019],[104.2634,0.4952],[104.2661,0.4958],[104.2727,0.484],[104.2752,0.487],[104.2731,0.492],[104.2648,0.5017]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.284,0.5269],[104.2822,0.5178],[104.2847,0.5151],[104.2848,0.5071],[104.2872,0.5019],[104.2866,0.4924],[104.2875,0.4871],[104.2937,0.4777],[104.2958,0.4799],[104.2933,0.4879],[104.2917,0.5057],[104.2895,0.5088],[104.2909,0.5203],[104.284,0.5269]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.2241,0.5568],[104.2202,0.5481],[104.22,0.5408],[104.2222,0.5397],[104.2243,0.533],[104.2321,0.5357],[104.2389,0.5308],[104.2334,0.5482],[104.2333,0.5548],[104.2285,0.5544],[104.2241,0.5568]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.2394,0.5582],[104.2363,0.562],[104.2316,0.5566],[104.2372,0.5547],[104.2394,0.5582]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.2198,0.5621],[104.2177,0.5673],[104.2134,0.5672],[104.2085,0.5609],[104.2102,0.5575],[104.2197,0.5595],[104.2198,0.5621]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.214,0.5705],[104.2086,0.575],[104.2081,0.5696],[104.214,0.5705]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.1981,0.6087],[104.1944,0.609],[104.1933,0.5986],[104.1861,0.5911],[104.1852,0.5882],[104.187,0.574],[104.189,0.5694],[104.1908,0.5587],[104.1904,0.5532],[104.1947,0.5532],[104.1946,0.5595],[104.202,0.5644],[104.204,0.5731],[104.2071,0.5756],[104.2151,0.573],[104.2202,0.5744],[104.2279,0.5731],[104.2253,0.5793],[104.2167,0.5908],[104.2084,0.5953],[104.2023,0.5948],[104.2021,0.6015],[104.1981,0.6087]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.0856,0.643],[104.0823,0.6418],[104.0821,0.6324],[104.0851,0.6283],[104.0854,0.6209],[104.0824,0.6165],[104.0862,0.6084],[104.0898,0.6171],[104.0968,0.6178],[104.1027,0.6228],[104.097,0.6287],[104.0939,0.63],[104.0888,0.6409],[104.0856,0.643]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.3347,0.6778],[104.3305,0.6751],[104.3352,0.6707],[104.3418,0.6703],[104.3408,0.6753],[104.3347,0.6778]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.3187,0.6849],[104.3178,0.6793],[104.3094,0.6751],[104.3085,0.669],[104.3125,0.6618],[104.3217,0.6639],[104.33,0.6637],[104.3257,0.6684],[104.3269,0.6743],[104.3261,0.6798],[104.3187,0.6849]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.294,0.6891],[104.2921,0.6912],[104.2862,0.6901],[104.2854,0.6864],[104.2786,0.6884],[104.271,0.6829],[104.2768,0.6782],[104.2796,0.6738],[104.2846,0.6712],[104.2964,0.6746],[104.2976,0.6836],[104.3008,0.6862],[104.2975,0.6902],[104.294,0.6891]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.3133,0.7002],[104.3093,0.6977],[104.3141,0.6936],[104.3204,0.6854],[104.3288,0.681],[104.3363,0.6823],[104.3358,0.687],[104.3269,0.6875],[104.3227,0.6916],[104.3243,0.6955],[104.3211,0.6988],[104.3133,0.7002]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.2142,0.7189],[104.2104,0.7171],[104.2105,0.7104],[104.2131,0.7049],[104.2127,0.7004],[104.2182,0.6978],[104.2203,0.6866],[104.2224,0.6833],[104.2264,0.6876],[104.2311,0.6822],[104.2342,0.6757],[104.2351,0.6698],[104.2439,0.6705],[104.2473,0.6675],[104.2498,0.654],[104.2535,0.6467],[104.257,0.6442],[104.2588,0.6389],[104.2625,0.6381],[104.2657,0.6265],[104.2756,0.6229],[104.2812,0.6168],[104.2854,0.6171],[104.2872,0.6249],[104.2847,0.6301],[104.289,0.6318],[104.2887,0.639],[104.2852,0.6497],[104.2865,0.6561],[104.2817,0.6623],[104.2817,0.6678],[104.279,0.6719],[104.2689,0.6772],[104.2601,0.6883],[104.2594,0.6837],[104.2607,0.6769],[104.2513,0.6828],[104.2491,0.6866],[104.2424,0.6888],[104.238,0.6934],[104.2338,0.7002],[104.2213,0.7154],[104.2142,0.7189]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.309,0.7631],[104.299,0.7568],[104.3033,0.7541],[104.314,0.7527],[104.3159,0.7491],[104.3245,0.7531],[104.3322,0.7517],[104.3475,0.7454],[104.3532,0.7391],[104.3566,0.7403],[104.3572,0.7482],[104.3508,0.7514],[104.3381,0.7545],[104.3328,0.7573],[104.3193,0.7598],[104.309,0.7631]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.2027,0.7949],[104.199,0.7906],[104.2025,0.7807],[104.2046,0.7829],[104.2117,0.7823],[104.2096,0.7893],[104.2101,0.7934],[104.2027,0.7949]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.2173,0.7985],[104.2145,0.7948],[104.2215,0.7934],[104.2229,0.7975],[104.2173,0.7985]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.2617,0.8009],[104.2509,0.8006],[104.2463,0.7954],[104.2457,0.7924],[104.2399,0.79],[104.2309,0.7899],[104.2224,0.7861],[104.2162,0.7862],[104.212,0.7816],[104.205,0.7825],[104.1931,0.7871],[104.1882,0.781],[104.1868,0.7768],[104.1798,0.7771],[104.1734,0.7828],[104.1709,0.7794],[104.1737,0.7721],[104.1818,0.7645],[104.1873,0.7538],[104.1896,0.7517],[104.189,0.7363],[104.1988,0.7243],[104.2004,0.7283],[104.2109,0.7193],[104.2196,0.7222],[104.2303,0.7116],[104.2383,0.6998],[104.2421,0.6964],[104.2525,0.6924],[104.2594,0.6918],[104.2623,0.6981],[104.26,0.7028],[104.2678,0.7059],[104.2727,0.7013],[104.2794,0.7088],[104.2847,0.7076],[104.2873,0.7097],[104.2985,0.7066],[104.3058,0.7084],[104.2928,0.7175],[104.2868,0.7206],[104.2839,0.729],[104.2789,0.7312],[104.2734,0.73],[104.271,0.7355],[104.2674,0.7372],[104.2646,0.7426],[104.2608,0.7548],[104.258,0.7693],[104.2611,0.7738],[104.2676,0.7744],[104.2648,0.7797],[104.2695,0.7836],[104.27,0.7885],[104.2755,0.7895],[104.2766,0.7967],[104.2664,0.7954],[104.2608,0.7973],[104.2617,0.8009]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.1509,0.7899],[104.1475,0.8031],[104.1482,0.8107],[104.1452,0.8175],[104.1419,0.8185],[104.1433,0.8063],[104.1471,0.7956],[104.1509,0.7899]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.1856,0.8776],[104.1859,0.8845],[104.1805,0.8801],[104.1856,0.8776]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.9531,0.9047],[103.9518,0.8999],[103.9578,0.8928],[103.9599,0.8932],[103.9582,0.9041],[103.9531,0.9047]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.05,0.9203],[104.0477,0.9211],[104.0418,0.9144],[104.0442,0.9102],[104.0383,0.9022],[104.0364,0.8926],[104.0427,0.897],[104.0467,0.8971],[104.0494,0.9038],[104.0505,0.9119],[104.0554,0.9186],[104.05,0.9203]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.2116,0.9233],[104.2041,0.9222],[104.2022,0.9163],[104.199,0.917],[104.1933,0.9022],[104.202,0.9029],[104.2065,0.9045],[104.2139,0.9159],[104.2116,0.9233]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.9508,0.9234],[103.9472,0.9223],[103.9475,0.9152],[103.9524,0.9059],[103.9648,0.908],[103.9651,0.9182],[103.9591,0.9219],[103.9508,0.9234]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.1834,0.9317],[104.1827,0.937],[104.171,0.9378],[104.1585,0.9262],[104.1586,0.9149],[104.1625,0.9107],[104.1673,0.9146],[104.1756,0.9131],[104.1791,0.9168],[104.1884,0.9192],[104.191,0.9306],[104.1834,0.9317]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.8939,0.9362],[103.8922,0.9404],[103.8876,0.9397],[103.8867,0.9363],[103.8939,0.9362]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.7743,0.9469],[103.7707,0.943],[103.7764,0.9354],[103.7771,0.9413],[103.7743,0.9469]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.1679,0.9609],[104.1569,0.9572],[104.1492,0.9579],[104.144,0.9544],[104.1483,0.9415],[104.1518,0.9343],[104.1595,0.9339],[104.1674,0.9428],[104.1751,0.9431],[104.1826,0.9418],[104.1891,0.9457],[104.1935,0.9433],[104.1977,0.9484],[104.1824,0.9537],[104.1679,0.9609]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.1193,0.958],[104.1085,0.958],[104.1056,0.9608],[104.0986,0.9596],[104.0942,0.9544],[104.0885,0.9531],[104.0786,0.9426],[104.083,0.9372],[104.0874,0.9361],[104.0949,0.9257],[104.0918,0.9138],[104.0908,0.8983],[104.0936,0.8898],[104.0941,0.8711],[104.0976,0.8713],[104.1004,0.8798],[104.1162,0.8772],[104.1187,0.8756],[104.1192,0.8669],[104.1222,0.864],[104.1278,0.8663],[104.138,0.8629],[104.1478,0.8539],[104.1511,0.8362],[104.1541,0.8321],[104.1576,0.8236],[104.1549,0.8171],[104.1608,0.8136],[104.1648,0.7915],[104.1687,0.7865],[104.181,0.783],[104.1847,0.788],[104.1896,0.7897],[104.2,0.7974],[104.1997,0.8028],[104.2032,0.8056],[104.2086,0.8059],[104.213,0.8034],[104.218,0.8049],[104.2312,0.8128],[104.2311,0.8166],[104.2455,0.8208],[104.2452,0.8297],[104.2468,0.8344],[104.2523,0.8357],[104.2604,0.8403],[104.2649,0.8597],[104.2574,0.8662],[104.249,0.8648],[104.2441,0.8618],[104.2403,0.8619],[104.2391,0.8692],[104.2331,0.8759],[104.2288,0.8755],[104.2242,0.88],[104.2199,0.8787],[104.2086,0.8818],[104.2011,0.8805],[104.1885,0.873],[104.1813,0.8781],[104.1734,0.8749],[104.1672,0.8669],[104.1655,0.87],[104.1652,0.8779],[104.1689,0.8851],[104.1696,0.8922],[104.1672,0.8932],[104.1681,0.8991],[104.1656,0.905],[104.1606,0.9002],[104.1572,0.902],[104.1532,0.8984],[104.1514,0.9065],[104.1572,0.908],[104.1557,0.9124],[104.1563,0.9222],[104.1545,0.9272],[104.1477,0.9282],[104.1434,0.9337],[104.1436,0.9379],[104.1389,0.9415],[104.1324,0.9417],[104.1316,0.9374],[104.1256,0.9357],[104.1272,0.948],[104.126,0.9526],[104.121,0.951],[104.1193,0.958]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.9703,0.9647],[103.9663,0.9604],[103.9676,0.9543],[103.9716,0.9508],[103.9747,0.9536],[103.973,0.9613],[103.9703,0.9647]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.8442,0.9657],[103.8425,0.9613],[103.8459,0.959],[103.8503,0.9624],[103.8442,0.9657]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.9944,0.9662],[103.9921,0.958],[103.9974,0.9565],[103.9974,0.962],[103.9944,0.9662]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.7884,0.967],[103.7806,0.9646],[103.7836,0.9609],[103.7938,0.9581],[103.7927,0.9643],[103.7884,0.967]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.8059,0.9711],[103.8014,0.9708],[103.7993,0.967],[103.8029,0.9607],[103.8075,0.9664],[103.8059,0.9711]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.0843,0.9718],[104.0843,0.9682],[104.0923,0.9569],[104.0955,0.9588],[104.0929,0.9699],[104.09,0.969],[104.0843,0.9718]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.062,0.9677],[104.0491,0.9666],[104.0452,0.962],[104.0463,0.9543],[104.0441,0.9496],[104.0466,0.9448],[104.0452,0.939],[104.0474,0.9315],[104.0548,0.9326],[104.0575,0.9245],[104.0638,0.9214],[104.0673,0.9173],[104.071,0.9173],[104.0747,0.9284],[104.0779,0.9319],[104.0773,0.9361],[104.0738,0.9428],[104.08,0.949],[104.0784,0.9543],[104.074,0.957],[104.0689,0.9627],[104.0634,0.961],[104.062,0.9677]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.1546,0.9702],[104.1457,0.9747],[104.1462,0.9646],[104.1491,0.9595],[104.1551,0.9575],[104.1656,0.9605],[104.1695,0.965],[104.1742,0.9677],[104.1726,0.9729],[104.1685,0.9732],[104.1546,0.9702]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.9818,0.9759],[103.9797,0.9734],[103.9807,0.9656],[103.9857,0.9609],[103.9886,0.946],[103.9944,0.9476],[103.991,0.9581],[103.9926,0.9632],[103.9862,0.9743],[103.9818,0.9759]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.0558,0.977],[104.0514,0.9743],[104.0501,0.9683],[104.0567,0.9681],[104.0558,0.977]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.7729,0.9791],[103.7672,0.979],[103.7663,0.9755],[103.7729,0.9694],[103.7763,0.9723],[103.7729,0.9791]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.0766,0.9824],[104.0704,0.9801],[104.0791,0.9754],[104.0802,0.9777],[104.0766,0.9824]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.1113,0.9833],[104.1079,0.9778],[104.1037,0.9755],[104.107,0.9696],[104.1196,0.9652],[104.1214,0.9669],[104.1139,0.9743],[104.1146,0.9772],[104.1113,0.9833]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.1185,0.9958],[104.1162,0.9922],[104.1198,0.9879],[104.1287,0.9871],[104.1269,0.9957],[104.1185,0.9958]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.1416,0.9983],[104.1415,0.9914],[104.1465,0.985],[104.1486,0.9903],[104.1416,0.9983]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.9522,0.9982],[103.9482,0.9989],[103.9494,0.9913],[103.9584,0.9865],[103.9669,0.9777],[103.9667,0.9753],[103.9747,0.9735],[103.978,0.9819],[103.9718,0.9852],[103.9664,0.9911],[103.9589,0.9959],[103.9522,0.9982]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.8272,0.9953],[103.829,0.9993],[103.8262,1.0023],[103.8229,0.9989],[103.8272,0.9953]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.9934,1.0094],[103.9913,1.0119],[103.9836,1.0081],[103.9842,1.0021],[103.9895,1.0006],[103.9935,1.0017],[103.9934,1.0094]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.7598,1.015],[103.755,1.0161],[103.755,1.0068],[103.7584,1.0038],[103.7622,1.0105],[103.7598,1.015]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.1154,1.0169],[104.1084,1.0187],[104.1013,1.0135],[104.1001,1.0048],[104.107,1.0044],[104.1154,1.0169]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.8908,1.0106],[103.8908,1.0153],[103.8869,1.0226],[103.8849,1.0168],[103.8908,1.0106]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.0994,1.024],[104.0952,1.0207],[104.0924,1.0131],[104.0967,1.0067],[104.0984,1.0156],[104.1046,1.0216],[104.0994,1.024]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.084,1.026],[104.0814,1.0207],[104.087,1.0181],[104.0868,1.0249],[104.084,1.026]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.1808,1.0245],[104.1755,1.0241],[104.1701,1.0203],[104.166,1.0139],[104.1595,1.0178],[104.156,1.016],[104.1521,1.0082],[104.1557,1.006],[104.1544,1.0002],[104.1609,0.9956],[104.1717,0.9954],[104.1772,1.0021],[104.1792,1.0077],[104.184,1.0142],[104.1808,1.0245]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.1366,1.0348],[104.1358,1.0316],[104.129,1.0292],[104.1323,1.0256],[104.1386,1.0307],[104.1366,1.0348]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.8726,1.0341],[103.8683,1.0377],[103.8617,1.0334],[103.8534,1.0338],[103.8539,1.0274],[103.8484,1.0233],[103.8597,1.0103],[103.855,1.0108],[103.847,1.0144],[103.8397,1.0151],[103.834,1.0173],[103.8316,1.0112],[103.8334,1.0067],[103.8334,0.993],[103.8322,0.9856],[103.8329,0.9775],[103.839,0.9712],[103.8484,0.967],[103.8681,0.9544],[103.8783,0.9521],[103.8837,0.9483],[103.8872,0.9431],[103.8922,0.9421],[103.8968,0.9377],[103.9114,0.9343],[103.92,0.9269],[103.9285,0.9212],[103.9395,0.9109],[103.9435,0.9102],[103.9454,0.9146],[103.9417,0.9182],[103.9417,0.9227],[103.9467,0.9289],[103.9553,0.9303],[103.9619,0.9347],[103.965,0.9433],[103.9678,0.9575],[103.9659,0.9612],[103.9678,0.9658],[103.9605,0.9765],[103.9572,0.9784],[103.9476,0.9877],[103.9425,0.9909],[103.9379,0.9972],[103.9309,0.9974],[103.9256,1.0063],[103.9182,1.009],[103.9121,1.005],[103.9087,1.0062],[103.9015,0.9992],[103.8882,1.0096],[103.8837,1.0157],[103.8784,1.0144],[103.8838,1.0249],[103.8839,1.028],[103.8798,1.0335],[103.8726,1.0341]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.904,1.031],[103.9018,1.0357],[103.8966,1.0385],[103.8944,1.0363],[103.8946,1.0308],[103.8901,1.032],[103.8868,1.0296],[103.8875,1.0246],[103.8915,1.0165],[103.8927,1.011],[103.9015,1.0033],[103.904,1.0029],[103.9088,1.0083],[103.9133,1.0078],[103.9152,1.0113],[103.92,1.0117],[103.9171,1.0173],[103.9105,1.0195],[103.9065,1.0228],[103.904,1.031]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.877,1.0458],[103.8794,1.0362],[103.8828,1.0327],[103.89,1.0335],[103.8903,1.0408],[103.8853,1.0393],[103.8804,1.0457],[103.877,1.0458]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.7765,1.0492],[103.7691,1.0483],[103.7709,1.0333],[103.7667,1.0308],[103.7543,1.0337],[103.7493,1.0301],[103.7507,1.0263],[103.755,1.0257],[103.7593,1.0201],[103.7613,1.0142],[103.7664,1.0101],[103.7668,1.0026],[103.772,0.9997],[103.776,0.9937],[103.7746,0.9888],[103.7778,0.9863],[103.7826,0.9779],[103.7895,0.9735],[103.7924,0.9734],[103.7959,0.9689],[103.8055,0.9726],[103.8012,0.9776],[103.7999,0.9849],[103.8002,0.992],[103.7968,0.9974],[103.798,1.0048],[103.7969,1.0108],[103.7986,1.0152],[103.7996,1.0247],[103.7966,1.0275],[103.7957,1.0373],[103.7882,1.0446],[103.7881,1.0391],[103.7795,1.0434],[103.7765,1.0492]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.8312,1.0524],[103.8188,1.0491],[103.824,1.0438],[103.8313,1.0446],[103.8312,1.0524]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.0867,1.053],[104.0816,1.0559],[104.0796,1.05],[104.0867,1.053]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.8174,1.0557],[103.8123,1.0535],[103.8127,1.0493],[103.8187,1.0525],[103.8174,1.0557]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.8978,1.0615],[103.8926,1.0592],[103.8941,1.0475],[103.8928,1.0403],[103.9008,1.0392],[103.8989,1.0458],[103.9006,1.055],[103.8978,1.0615]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[104.1682,1.0659],[104.1645,1.0657],[104.1611,1.0573],[104.1646,1.0482],[104.1577,1.0424],[104.1637,1.0408],[104.1636,1.035],[104.1608,1.0302],[104.1674,1.022],[104.1744,1.0261],[104.1757,1.03],[104.1815,1.0354],[104.1811,1.0416],[104.1842,1.0499],[104.1809,1.0528],[104.1739,1.0646],[104.1682,1.0659]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.8178,1.0675],[103.8127,1.0634],[103.8197,1.0559],[103.8245,1.0609],[103.8178,1.0675]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.8489,1.0682],[103.8481,1.0725],[103.8389,1.0657],[103.8329,1.0629],[103.8369,1.0519],[103.8354,1.0404],[103.838,1.0361],[103.8368,1.0312],[103.8398,1.0278],[103.8465,1.029],[103.8457,1.0364],[103.8576,1.0396],[103.8613,1.0422],[103.865,1.0388],[103.8739,1.0443],[103.8744,1.0483],[103.879,1.0477],[103.882,1.0524],[103.8789,1.0571],[103.8728,1.0607],[103.8695,1.06],[103.8673,1.0646],[103.8624,1.0652],[103.8555,1.0734],[103.8489,1.0682]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.829,1.0769],[103.8205,1.0764],[103.8181,1.0707],[103.8223,1.0669],[103.8266,1.0668],[103.8268,1.0728],[103.829,1.0769]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.865,1.0778],[103.861,1.0823],[103.8587,1.0764],[103.8598,1.0695],[103.871,1.0651],[103.865,1.0778]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.8714,1.092],[103.8693,1.0961],[103.8626,1.095],[103.866,1.0894],[103.8704,1.0882],[103.8714,1.092]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.8027,1.1011],[103.7945,1.1092],[103.7913,1.1093],[103.7934,1.0955],[103.8007,1.0853],[103.8111,1.0844],[103.8151,1.0892],[103.811,1.0956],[103.8027,1.1011]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.9148,1.1198],[103.9099,1.1109],[103.9034,1.1093],[103.9001,1.1052],[103.9028,1.101],[103.9085,1.1016],[103.9208,1.1062],[103.9196,1.1159],[103.9148,1.1198]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.8738,1.144],[103.8764,1.147],[103.8743,1.1547],[103.869,1.1523],[103.8696,1.1466],[103.8738,1.144]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.8892,1.1579],[103.8872,1.1587],[103.8809,1.1523],[103.8809,1.149],[103.8745,1.1433],[103.8785,1.1408],[103.8818,1.1431],[103.8868,1.1423],[103.8926,1.144],[103.896,1.1501],[103.8928,1.1562],[103.8892,1.1579]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.8813,1.1621],[103.8778,1.1635],[103.8751,1.1577],[103.8793,1.1554],[103.8823,1.158],[103.8813,1.1621]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"LineString","coordinates":[[103.8976,1.1652],[103.898,1.157],[103.9054,1.1558],[103.8976,1.1652]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"MultiLineString","coordinates":[[[104.1139,1.1964],[104.106,1.201],[104.0987,1.2002],[104.0949,1.1939],[104.0869,1.1959],[104.0839,1.1922],[104.074,1.1875],[104.0696,1.178],[104.0693,1.1658],[104.0706,1.1624],[104.0832,1.1569],[104.0893,1.153],[104.0905,1.1469],[104.0885,1.1413],[104.0839,1.1469],[104.079,1.1444],[104.0773,1.1369],[104.0836,1.1287],[104.0737,1.1239],[104.0718,1.131],[104.0647,1.1323],[104.0544,1.1315],[104.0544,1.1397],[104.0519,1.1406],[104.0512,1.1496],[104.0575,1.1523],[104.0592,1.1602],[104.0524,1.1592],[104.0486,1.1633],[104.0483,1.1698],[104.0453,1.1736],[104.0407,1.1736],[104.0338,1.1777],[104.0278,1.178],[104.0248,1.1818],[104.0271,1.1847],[104.0238,1.1892],[104.0118,1.1899],[104.0059,1.1868],[103.9982,1.179],[103.9986,1.1676],[103.9968,1.1651],[103.9972,1.1571],[103.9956,1.1539],[104.0001,1.15],[103.992,1.1487],[103.9926,1.1453],[103.9901,1.139],[103.9928,1.1329],[103.9919,1.1295],[103.987,1.1288],[103.9819,1.131],[103.9784,1.1373],[103.9702,1.1344],[103.9673,1.139],[103.9613,1.1424],[103.9571,1.1385],[103.9519,1.1401],[103.9476,1.1455],[103.9441,1.1443],[103.9417,1.1399],[103.936,1.1389],[103.931,1.1414],[103.9217,1.1431],[103.9187,1.14],[103.9204,1.1342],[103.9254,1.124],[103.9299,1.1238],[103.9332,1.121],[103.9367,1.1106],[103.9335,1.109],[103.9296,1.1113],[103.9285,1.0996],[103.9327,1.0959],[103.9376,1.0841],[103.9324,1.0804],[103.9286,1.0738],[103.9239,1.0708],[103.9168,1.0783],[103.9177,1.0838],[103.9138,1.0836],[103.9101,1.0872],[103.9123,1.0905],[103.909,1.0961],[103.8991,1.0957],[103.8895,1.0938],[103.893,1.0834],[103.905,1.0681],[103.9092,1.0563],[103.9102,1.0403],[103.9128,1.036],[103.92,1.0295],[103.927,1.0253],[103.937,1.016],[103.9411,1.0092],[103.9538,1.0083],[103.9599,1.005],[103.9635,1.0052],[103.9718,1.0101],[103.9807,1.0082],[103.9891,1.0132],[103.9911,1.0173],[103.9969,1.0125],[103.9998,1.0043],[104.0041,1.0011],[104.0111,0.9876],[104.0169,0.9851],[104.0224,0.987],[104.0246,0.9825],[104.034,0.9802],[104.0382,0.9806],[104.0426,0.9858],[104.0409,0.9912],[104.048,0.9993],[104.0622,0.9852],[104.0671,0.9828],[104.0721,0.9915],[104.0721,0.9958],[104.0759,0.9984],[104.0839,0.9853],[104.0908,0.9848],[104.0971,0.9827],[104.0906,0.9984],[104.0824,1.0083],[104.0826,1.0177],[104.0797,1.0226],[104.0815,1.0262],[104.0877,1.0287],[104.096,1.0267],[104.1008,1.029],[104.1016,1.0379],[104.1041,1.0428],[104.1121,1.0329],[104.1174,1.0384],[104.1199,1.0344],[104.1278,1.0322],[104.1318,1.0328],[104.1367,1.0389],[104.1387,1.0457],[104.1395,1.0538],[104.1371,1.0582],[104.1351,1.0667],[104.137,1.0751],[104.1359,1.0782],[104.1409,1.1006],[104.1494,1.1102],[104.1488,1.1166],[104.1539,1.1324],[104.1544,1.1377],[104.1491,1.1409],[104.1497,1.1445],[104.142,1.1468],[104.146,1.1505],[104.1479,1.1594],[104.1472,1.1649],[104.1485,1.1711],[104.1356,1.1791],[104.1243,1.1896],[104.1139,1.1964]],[[104.0401,1.0924],[104.0439,1.088],[104.0546,1.0805],[104.0596,1.081],[104.063,1.0754],[104.0743,1.0757],[104.0747,1.0818],[104.0794,1.0803],[104.0769,1.075],[104.0783,1.0695],[104.0846,1.0707],[104.0914,1.0643],[104.0964,1.0636],[104.0986,1.0682],[104.1047,1.0705],[104.1034,1.0621],[104.1079,1.0521],[104.1063,1.0441],[104.0988,1.042],[104.0978,1.0442],[104.0866,1.0397],[104.086,1.0472],[104.0785,1.0478],[104.072,1.0507],[104.0696,1.0445],[104.0697,1.0395],[104.0667,1.0338],[104.061,1.0318],[104.0579,1.0392],[104.063,1.0436],[104.0569,1.0504],[104.0535,1.059],[104.0541,1.0618],[104.0591,1.0667],[104.0546,1.0694],[104.0511,1.0655],[104.0464,1.068],[104.0435,1.0728],[104.0392,1.0732],[104.0362,1.0797],[104.0397,1.0835],[104.0385,1.0913],[104.0401,1.0924]]]}},{"type":"Feature","properties":{"mhid":"1332:159","alt_name":"KOTA TANJUNG PINANG","latitude":0.91683,"longitude":104.44329,"sample_value":478},"geometry":{"type":"LineString","coordinates":[[104.4593,0.8849],[104.4522,0.8874],[104.448,0.8832],[104.4399,0.8837],[104.437,0.8814],[104.4272,0.8786],[104.4186,0.8781],[104.4189,0.8756],[104.4249,0.8735],[104.4289,0.8668],[104.4382,0.8708],[104.4449,0.8673],[104.447,0.869],[104.4556,0.865],[104.4605,0.8588],[104.466,0.8588],[104.4682,0.8666],[104.4757,0.867],[104.4839,0.8703],[104.4833,0.8737],[104.469,0.8782],[104.4674,0.882],[104.4593,0.8849]]}},{"type":"Feature","properties":{"mhid":"1332:159","alt_name":"KOTA TANJUNG PINANG","latitude":0.91683,"longitude":104.44329,"sample_value":478},"geometry":{"type":"LineString","coordinates":[[104.4206,0.9319],[104.409,0.9298],[104.4084,0.9264],[104.4193,0.9239],[104.4269,0.9266],[104.4206,0.9319]]}},{"type":"Feature","properties":{"mhid":"1332:159","alt_name":"KOTA TANJUNG PINANG","latitude":0.91683,"longitude":104.44329,"sample_value":478},"geometry":{"type":"LineString","coordinates":[[104.3473,0.9521],[104.338,0.9556],[104.338,0.9507],[104.3473,0.9521]]}},{"type":"Feature","properties":{"mhid":"1332:159","alt_name":"KOTA TANJUNG PINANG","latitude":0.91683,"longitude":104.44329,"sample_value":478},"geometry":{"type":"LineString","coordinates":[[104.4102,0.9595],[104.4034,0.9601],[104.4044,0.9545],[104.4102,0.9595]]}},{"type":"Feature","properties":{"mhid":"1332:159","alt_name":"KOTA TANJUNG PINANG","latitude":0.91683,"longitude":104.44329,"sample_value":478},"geometry":{"type":"LineString","coordinates":[[104.5137,0.8436],[104.5129,0.8489],[104.521,0.8583],[104.5241,0.8578],[104.5317,0.8619],[104.534,0.8766],[104.5397,0.8821],[104.537,0.8864],[104.5381,0.8966],[104.5435,0.9036],[104.5502,0.91],[104.5527,0.9171],[104.553,0.9222],[104.5479,0.9261],[104.5452,0.9328],[104.5389,0.9357],[104.5271,0.947],[104.52,0.9571],[104.5194,0.9688],[104.5208,0.9775],[104.5147,0.9768],[104.5131,0.9724],[104.5053,0.9727],[104.5024,0.978],[104.4991,0.9894],[104.4938,0.9907],[104.4843,0.9878],[104.4766,0.9884],[104.4734,0.9849],[104.4738,0.9787],[104.4695,0.9818],[104.4644,0.9826],[104.4626,0.98],[104.4457,0.9792],[104.4364,0.9763],[104.429,0.9777],[104.4264,0.975],[104.4149,0.9782],[104.4124,0.967],[104.4206,0.9523],[104.4262,0.9535],[104.4325,0.9458],[104.4368,0.9431],[104.4415,0.9434],[104.4446,0.9372],[104.4536,0.9359],[104.4569,0.9381],[104.4693,0.9368],[104.4769,0.9292],[104.4642,0.9323],[104.4574,0.9297],[104.4533,0.9297],[104.4424,0.9344],[104.4381,0.9261],[104.44,0.9174],[104.4379,0.9155],[104.4391,0.9059],[104.4478,0.9047],[104.4512,0.8979],[104.4562,0.9011],[104.4589,0.8978],[104.4708,0.8951],[104.4721,0.8917],[104.4798,0.884],[104.4839,0.8764],[104.4978,0.8728],[104.5007,0.8781],[104.5041,0.873],[104.4972,0.8703],[104.4913,0.872],[104.4872,0.8683],[104.4786,0.8653],[104.477,0.8538],[104.4779,0.8487],[104.4838,0.8477],[104.4885,0.8507],[104.4949,0.8478],[104.4988,0.8404],[104.5082,0.8408],[104.5137,0.8436]]}},{"type":"Feature","properties":{"mhid":"1332:160","alt_name":"KABUPATEN KEPULAUAN SERIBU","latitude":-5.5985,"longitude":106.55271,"sample_value":320},"geometry":{"type":"LineString","coordinates":[[106.6919,-5.9708],[106.6896,-5.9749],[106.6949,-5.9781],[106.6952,-5.972],[106.6919,-5.9708]]}},{"type":"Feature","properties":{"mhid":"1332:160","alt_name":"KABUPATEN KEPULAUAN SERIBU","latitude":-5.5985,"longitude":106.55271,"sample_value":320},"geometry":{"type":"LineString","coordinates":[[106.6299,-5.8538],[106.615,-5.8564],[106.6157,-5.8605],[106.6299,-5.8538]]}},{"type":"Feature","properties":{"mhid":"1332:161","alt_name":"KOTA JAKARTA SELATAN","latitude":-6.266,"longitude":106.8135,"sample_value":509},"geometry":{"type":"LineString","coordinates":[[106.8491,-6.2075],[106.8461,-6.2086],[106.8377,-6.2056],[106.8227,-6.2027],[106.822,-6.2078],[106.8186,-6.2144],[106.7999,-6.2287],[106.7958,-6.2293],[106.7968,-6.2182],[106.7956,-6.2124],[106.7924,-6.2078],[106.7831,-6.2067],[106.7836,-6.2122],[106.7777,-6.2137],[106.7785,-6.2248],[106.767,-6.2252],[106.7655,-6.2223],[106.7601,-6.2231],[106.7417,-6.223],[106.7373,-6.2236],[106.7443,-6.2292],[106.7439,-6.2362],[106.7486,-6.241],[106.7467,-6.2472],[106.7482,-6.2496],[106.7529,-6.25],[106.7543,-6.2575],[106.7514,-6.2608],[106.7542,-6.2678],[106.7503,-6.2718],[106.7516,-6.2746],[106.7567,-6.2744],[106.7572,-6.2778],[106.7622,-6.2779],[106.7607,-6.2847],[106.7668,-6.2873],[106.7666,-6.2905],[106.7749,-6.3046],[106.7768,-6.3153],[106.7799,-6.3165],[106.8089,-6.3145],[106.8068,-6.3226],[106.8034,-6.33],[106.7991,-6.334],[106.8,-6.3403],[106.7967,-6.3465],[106.7926,-6.348],[106.794,-6.3544],[106.7925,-6.3594],[106.7947,-6.3649],[106.7999,-6.3655],[106.803,-6.3634],[106.8093,-6.3642],[106.8159,-6.356],[106.8273,-6.3569],[106.836,-6.3545],[106.8391,-6.3519],[106.8378,-6.3466],[106.8409,-6.342],[106.8397,-6.3349],[106.8425,-6.325],[106.8383,-6.3207],[106.8442,-6.3167],[106.8556,-6.3138],[106.8581,-6.3051],[106.8548,-6.3035],[106.8507,-6.2959],[106.8543,-6.2959],[106.8538,-6.2903],[106.848,-6.2876],[106.8468,-6.2788],[106.8508,-6.2767],[106.8565,-6.2702],[106.8554,-6.2662],[106.859,-6.263],[106.8607,-6.2552],[106.864,-6.2493],[106.862,-6.2461],[106.8638,-6.2373],[106.8635,-6.2313],[106.8653,-6.2233],[106.8581,-6.2131],[106.8491,-6.2075]]}},{"type":"Feature","properties":{"mhid":"1332:162","alt_name":"KOTA JAKARTA TIMUR","latitude":-6.2521,"longitude":106.884,"sample_value":523},"geometry":{"type":"LineString","coordinates":[[106.9719,-6.1546],[106.9629,-6.1563],[106.9581,-6.159],[106.9543,-6.1576],[106.9516,-6.1634],[106.9444,-6.163],[106.9442,-6.155],[106.9402,-6.1553],[106.9356,-6.1585],[106.9218,-6.1626],[106.9204,-6.1698],[106.9225,-6.1831],[106.9101,-6.1825],[106.9014,-6.1785],[106.8966,-6.1781],[106.8912,-6.1733],[106.8788,-6.1665],[106.8761,-6.1757],[106.875,-6.1923],[106.8658,-6.1925],[106.8617,-6.1939],[106.8515,-6.2014],[106.8536,-6.2066],[106.8491,-6.2075],[106.8581,-6.2131],[106.8653,-6.2233],[106.8635,-6.2313],[106.8638,-6.2373],[106.862,-6.2461],[106.864,-6.2493],[106.8607,-6.2552],[106.859,-6.263],[106.8554,-6.2662],[106.8565,-6.2702],[106.8508,-6.2767],[106.8468,-6.2788],[106.848,-6.2876],[106.8538,-6.2903],[106.8543,-6.2959],[106.8507,-6.2959],[106.8548,-6.3035],[106.8581,-6.3051],[106.8556,-6.3138],[106.8442,-6.3167],[106.8383,-6.3207],[106.8425,-6.325],[106.8397,-6.3349],[106.8409,-6.342],[106.8461,-6.3421],[106.847,-6.338],[106.8548,-6.3446],[106.8567,-6.3497],[106.8622,-6.3573],[106.8701,-6.353],[106.8739,-6.3564],[106.8715,-6.36],[106.8768,-6.3616],[106.8827,-6.3696],[106.8887,-6.3684],[106.8958,-6.3707],[106.902,-6.3689],[106.9056,-6.3612],[106.9144,-6.3655],[106.9144,-6.3602],[106.9177,-6.3502],[106.9172,-6.344],[106.9209,-6.331],[106.9192,-6.3251],[106.9228,-6.3142],[106.9202,-6.3116],[106.9218,-6.3035],[106.9192,-6.2991],[106.9119,-6.2983],[106.9085,-6.2828],[106.9098,-6.2723],[106.9045,-6.2698],[106.9044,-6.2621],[106.9099,-6.258],[106.9157,-6.2584],[106.9162,-6.2525],[106.9221,-6.2539],[106.9408,-6.2535],[106.9439,-6.2523],[106.9436,-6.2386],[106.9455,-6.2368],[106.9486,-6.2222],[106.9508,-6.2191],[106.9558,-6.2195],[106.959,-6.2129],[106.9628,-6.2115],[106.9662,-6.2069],[106.9661,-6.2012],[106.9696,-6.195],[106.9711,-6.1885],[106.9716,-6.1722],[106.971,-6.1624],[106.9719,-6.1546]]}},{"type":"Feature","properties":{"mhid":"1332:163","alt_name":"KOTA JAKARTA PUSAT","latitude":-6.1777,"longitude":106.8403,"sample_value":442},"geometry":{"type":"LineString","coordinates":[[106.8788,-6.1665],[106.8769,-6.1635],[106.8567,-6.1518],[106.8457,-6.1535],[106.8412,-6.1511],[106.8441,-6.145],[106.8384,-6.1418],[106.8371,-6.1451],[106.8307,-6.139],[106.8307,-6.1353],[106.8213,-6.1369],[106.8263,-6.147],[106.8273,-6.162],[106.8203,-6.1595],[106.8046,-6.1618],[106.7981,-6.1614],[106.8008,-6.1667],[106.8096,-6.1793],[106.8107,-6.1887],[106.8067,-6.1891],[106.8051,-6.1956],[106.7977,-6.2031],[106.7961,-6.2076],[106.7924,-6.2078],[106.7956,-6.2124],[106.7968,-6.2182],[106.7958,-6.2293],[106.7999,-6.2287],[106.8186,-6.2144],[106.822,-6.2078],[106.8227,-6.2027],[106.8377,-6.2056],[106.8461,-6.2086],[106.8491,-6.2075],[106.8536,-6.2066],[106.8515,-6.2014],[106.8617,-6.1939],[106.8658,-6.1925],[106.875,-6.1923],[106.8761,-6.1757],[106.8788,-6.1665]]}},{"type":"Feature","properties":{"mhid":"1332:164","alt_name":"KOTA JAKARTA BARAT","latitude":-6.1676,"longitude":106.7673,"sample_value":919},"geometry":{"type":"LineString","coordinates":[[106.8213,-6.1369],[106.8167,-6.1371],[106.815,-6.1302],[106.802,-6.1331],[106.8002,-6.1356],[106.8005,-6.1419],[106.7769,-6.1442],[106.7755,-6.1417],[106.7684,-6.1407],[106.7509,-6.1344],[106.7333,-6.1232],[106.7274,-6.1176],[106.7172,-6.1046],[106.711,-6.0956],[106.7021,-6.0968],[106.6872,-6.0971],[106.6891,-6.1065],[106.6937,-6.1072],[106.6969,-6.1125],[106.6891,-6.1145],[106.6896,-6.1215],[106.6871,-6.1285],[106.6914,-6.1335],[106.6913,-6.1377],[106.6862,-6.1431],[106.6875,-6.1477],[106.6879,-6.16],[106.6892,-6.1617],[106.6894,-6.1731],[106.6935,-6.1737],[106.7101,-6.1818],[106.7171,-6.1867],[106.7165,-6.1919],[106.7241,-6.1916],[106.724,-6.2074],[106.7202,-6.2096],[106.7175,-6.2197],[106.7176,-6.2242],[106.7373,-6.2236],[106.7417,-6.223],[106.7601,-6.2231],[106.7655,-6.2223],[106.767,-6.2252],[106.7785,-6.2248],[106.7777,-6.2137],[106.7836,-6.2122],[106.7831,-6.2067],[106.7924,-6.2078],[106.7961,-6.2076],[106.7977,-6.2031],[106.8051,-6.1956],[106.8067,-6.1891],[106.8107,-6.1887],[106.8096,-6.1793],[106.8008,-6.1667],[106.7981,-6.1614],[106.8046,-6.1618],[106.8203,-6.1595],[106.8273,-6.162],[106.8263,-6.147],[106.8213,-6.1369]]}},{"type":"Feature","properties":{"mhid":"1332:165","alt_name":"KOTA JAKARTA UTARA","latitude":-6.1339,"longitude":106.8823,"sample_value":827},"geometry":{"type":"LineString","coordinates":[[106.969,-6.0907],[106.959,-6.0938],[106.9188,-6.0991],[106.8842,-6.0964],[106.8791,-6.095],[106.8763,-6.102],[106.8634,-6.1121],[106.8538,-6.1184],[106.8383,-6.1214],[106.8294,-6.1201],[106.8288,-6.1173],[106.8233,-6.1173],[106.8172,-6.1149],[106.8165,-6.1199],[106.8096,-6.1202],[106.8044,-6.1019],[106.8006,-6.1084],[106.796,-6.1089],[106.797,-6.0941],[106.7904,-6.0936],[106.7896,-6.1007],[106.7903,-6.108],[106.7825,-6.1086],[106.7716,-6.1049],[106.766,-6.101],[106.7627,-6.1036],[106.7573,-6.1039],[106.7469,-6.0999],[106.7399,-6.1018],[106.733,-6.0982],[106.724,-6.0895],[106.7186,-6.0919],[106.711,-6.0956],[106.7172,-6.1046],[106.7274,-6.1176],[106.7333,-6.1232],[106.7509,-6.1344],[106.7684,-6.1407],[106.7755,-6.1417],[106.7769,-6.1442],[106.8005,-6.1419],[106.8002,-6.1356],[106.802,-6.1331],[106.815,-6.1302],[106.8167,-6.1371],[106.8213,-6.1369],[106.8307,-6.1353],[106.8307,-6.139],[106.8371,-6.1451],[106.8384,-6.1418],[106.8441,-6.145],[106.8412,-6.1511],[106.8457,-6.1535],[106.8567,-6.1518],[106.8769,-6.1635],[106.8788,-6.1665],[106.8912,-6.1733],[106.8966,-6.1781],[106.9014,-6.1785],[106.9101,-6.1825],[106.9225,-6.1831],[106.9204,-6.1698],[106.9218,-6.1626],[106.9356,-6.1585],[106.9402,-6.1553],[106.9442,-6.155],[106.9444,-6.163],[106.9516,-6.1634],[106.9543,-6.1576],[106.9581,-6.159],[106.9629,-6.1563],[106.9719,-6.1546],[106.9722,-6.1445],[106.9707,-6.1399],[106.9697,-6.1206],[106.9704,-6.1046],[106.9688,-6.0998],[106.969,-6.0907]]}},{"type":"Feature","properties":{"mhid":"1332:166","alt_name":"KABUPATEN BOGOR","latitude":-6.58333,"longitude":106.71667,"sample_value":911},"geometry":{"type":"MultiLineString","coordinates":[[[106.994,-6.3671],[106.9902,-6.3643],[106.9806,-6.3643],[106.982,-6.3584],[106.9771,-6.3533],[106.9696,-6.3491],[106.9687,-6.3455],[106.9732,-6.3403],[106.977,-6.3314],[106.977,-6.3181],[106.9805,-6.3144],[106.9739,-6.3123],[106.9721,-6.304],[106.9662,-6.3064],[106.9632,-6.3115],[106.9637,-6.3169],[106.9617,-6.325],[106.9634,-6.3291],[106.9611,-6.3352],[106.9528,-6.3403],[106.9509,-6.3439],[106.9522,-6.3487],[106.947,-6.3584],[106.9455,-6.3682],[106.9385,-6.3707],[106.938,-6.3773],[106.9331,-6.3758],[106.9297,-6.38],[106.9297,-6.386],[106.9264,-6.3856],[106.9188,-6.3956],[106.9163,-6.3994],[106.9172,-6.4088],[106.9155,-6.413],[106.9085,-6.4127],[106.9076,-6.4151],[106.9003,-6.4193],[106.8991,-6.426],[106.8906,-6.4311],[106.8861,-6.4372],[106.8846,-6.4443],[106.8822,-6.4467],[106.881,-6.4568],[106.8715,-6.4561],[106.8557,-6.4563],[106.8533,-6.4487],[106.8536,-6.4434],[106.8502,-6.436],[106.8448,-6.4366],[106.8428,-6.441],[106.8433,-6.4475],[106.8281,-6.4561],[106.8212,-6.4541],[106.8234,-6.4478],[106.8225,-6.4443],[106.8168,-6.445],[106.805,-6.4428],[106.8016,-6.452],[106.7935,-6.4514],[106.7941,-6.4417],[106.7884,-6.4386],[106.7811,-6.4393],[106.7638,-6.4379],[106.7555,-6.4391],[106.7482,-6.4381],[106.7384,-6.4389],[106.735,-6.4263],[106.7372,-6.4191],[106.7307,-6.4105],[106.7325,-6.4066],[106.7269,-6.3944],[106.7274,-6.3894],[106.7206,-6.3736],[106.7169,-6.37],[106.7178,-6.364],[106.7205,-6.3605],[106.701,-6.3604],[106.6974,-6.3594],[106.6698,-6.3584],[106.6586,-6.3588],[106.6512,-6.3622],[106.6287,-6.3609],[106.6176,-6.3618],[106.5936,-6.3625],[106.588,-6.356],[106.5873,-6.3474],[106.5774,-6.34],[106.5586,-6.3379],[106.5486,-6.3331],[106.5423,-6.334],[106.5385,-6.331],[106.534,-6.3306],[106.5236,-6.3251],[106.5206,-6.3265],[106.5135,-6.3254],[106.5164,-6.3325],[106.5241,-6.3336],[106.5247,-6.339],[106.5293,-6.3379],[106.5294,-6.3458],[106.5262,-6.3495],[106.5221,-6.3501],[106.5191,-6.3552],[106.5123,-6.3553],[106.5023,-6.3499],[106.4997,-6.3557],[106.4883,-6.3543],[106.484,-6.3521],[106.4763,-6.3507],[106.4764,-6.3441],[106.482,-6.344],[106.4836,-6.3395],[106.4827,-6.3323],[106.484,-6.3246],[106.4781,-6.3158],[106.4762,-6.3091],[106.4713,-6.3083],[106.4693,-6.3035],[106.465,-6.3083],[106.4427,-6.3252],[106.4362,-6.3354],[106.4307,-6.3478],[106.4267,-6.3481],[106.4306,-6.3571],[106.4299,-6.3628],[106.4319,-6.367],[106.4285,-6.3694],[106.4274,-6.3765],[106.4316,-6.3769],[106.4356,-6.3896],[106.4412,-6.3986],[106.4393,-6.4044],[106.444,-6.4048],[106.4444,-6.4082],[106.45,-6.4128],[106.4539,-6.4138],[106.4541,-6.4185],[106.4463,-6.4193],[106.4514,-6.4243],[106.4503,-6.4329],[106.4418,-6.441],[106.4393,-6.4502],[106.4228,-6.4495],[106.407,-6.4539],[106.4021,-6.4528],[106.4118,-6.4676],[106.4113,-6.4784],[106.4126,-6.4833],[106.4097,-6.4922],[106.406,-6.4964],[106.405,-6.5006],[106.4047,-6.5129],[106.4033,-6.5153],[106.4075,-6.5239],[106.408,-6.5329],[106.4141,-6.5421],[106.4229,-6.5519],[106.4163,-6.5598],[106.4244,-6.569],[106.4264,-6.5743],[106.4304,-6.5899],[106.4293,-6.6017],[106.4275,-6.6092],[106.4317,-6.6365],[106.4307,-6.6439],[106.4315,-6.6527],[106.4288,-6.6756],[106.4294,-6.6821],[106.4328,-6.6904],[106.4399,-6.699],[106.4459,-6.703],[106.4498,-6.7084],[106.4514,-6.7135],[106.4505,-6.7262],[106.4538,-6.7308],[106.4632,-6.7369],[106.466,-6.7449],[106.466,-6.7501],[106.4746,-6.7522],[106.5,-6.7525],[106.5202,-6.7616],[106.5248,-6.7623],[106.5246,-6.759],[106.5333,-6.7515],[106.5479,-6.7508],[106.5599,-6.7383],[106.5605,-6.7343],[106.567,-6.7272],[106.5695,-6.7219],[106.5783,-6.7177],[106.5824,-6.7211],[106.5848,-6.7323],[106.5847,-6.7372],[106.5873,-6.7423],[106.5964,-6.7481],[106.604,-6.7493],[106.623,-6.749],[106.6331,-6.7549],[106.6434,-6.7488],[106.6541,-6.7487],[106.6577,-6.745],[106.656,-6.7398],[106.6589,-6.7319],[106.6677,-6.7366],[106.6726,-6.732],[106.6773,-6.7399],[106.6829,-6.7459],[106.6943,-6.7447],[106.6994,-6.7418],[106.7027,-6.7334],[106.7109,-6.731],[106.7163,-6.7273],[106.7252,-6.7184],[106.7326,-6.7157],[106.7395,-6.7154],[106.746,-6.7181],[106.7578,-6.7275],[106.7641,-6.7367],[106.7665,-6.7443],[106.7715,-6.7502],[106.7776,-6.7548],[106.7868,-6.7559],[106.7926,-6.7525],[106.7979,-6.7552],[106.8003,-6.762],[106.8144,-6.7687],[106.8215,-6.7697],[106.8312,-6.767],[106.8373,-6.7689],[106.8446,-6.7759],[106.8531,-6.7773],[106.8586,-6.7768],[106.8649,-6.7781],[106.8712,-6.7816],[106.8788,-6.7813],[106.8873,-6.7854],[106.8979,-6.7866],[106.8998,-6.7881],[106.9128,-6.7882],[106.921,-6.7866],[106.9279,-6.7814],[106.9318,-6.7724],[106.9356,-6.7675],[106.947,-6.7608],[106.9567,-6.7607],[106.9616,-6.7637],[106.9652,-6.7703],[106.9743,-6.7653],[106.9758,-6.7598],[106.974,-6.7518],[106.9771,-6.7446],[106.9858,-6.7429],[106.9925,-6.7372],[106.9965,-6.7378],[106.9992,-6.7301],[106.9966,-6.7257],[106.9932,-6.7151],[106.9951,-6.7073],[107.0004,-6.6987],[107.0031,-6.6975],[107.0065,-6.6917],[107.0036,-6.6857],[106.9951,-6.6785],[106.991,-6.6685],[107.0006,-6.6665],[107.0047,-6.6682],[107.0094,-6.6647],[107.0159,-6.668],[107.0253,-6.6625],[107.0331,-6.6629],[107.0383,-6.6609],[107.0427,-6.6567],[107.0513,-6.6566],[107.0552,-6.6592],[107.0659,-6.662],[107.0685,-6.6652],[107.073,-6.6627],[107.0793,-6.665],[107.0849,-6.6649],[107.0887,-6.6675],[107.0951,-6.6643],[107.1036,-6.664],[107.1097,-6.6658],[107.1132,-6.6635],[107.1231,-6.664],[107.1302,-6.6698],[107.1349,-6.6704],[107.1504,-6.663],[107.1503,-6.6543],[107.1529,-6.6496],[107.1581,-6.6499],[107.1602,-6.6455],[107.1636,-6.6473],[107.1742,-6.6413],[107.1795,-6.6465],[107.1922,-6.6455],[107.2027,-6.6405],[107.2145,-6.6376],[107.213,-6.6306],[107.2148,-6.6197],[107.2218,-6.6127],[107.2271,-6.6021],[107.2205,-6.5907],[107.2135,-6.5905],[107.2051,-6.587],[107.1931,-6.5783],[107.1908,-6.5719],[107.1897,-6.5618],[107.1852,-6.5596],[107.1839,-6.5551],[107.1786,-6.5517],[107.1789,-6.5478],[107.1762,-6.5382],[107.1765,-6.5329],[107.1713,-6.5232],[107.1693,-6.5228],[107.1676,-6.5115],[107.1647,-6.5109],[107.1651,-6.5033],[107.17,-6.4921],[107.1743,-6.4908],[107.1739,-6.4852],[107.1717,-6.482],[107.1621,-6.4792],[107.1563,-6.4754],[107.1465,-6.4716],[107.1408,-6.4716],[107.1348,-6.4661],[107.1233,-6.4671],[107.126,-6.4592],[107.1204,-6.459],[107.117,-6.4621],[107.1074,-6.4623],[107.106,-6.4585],[107.1006,-6.4542],[107.0922,-6.4513],[107.0883,-6.4514],[107.0799,-6.4488],[107.0808,-6.4441],[107.0593,-6.4317],[107.0557,-6.4276],[107.0572,-6.4242],[107.0565,-6.4178],[107.0543,-6.4123],[107.0587,-6.4015],[107.0562,-6.3973],[107.0515,-6.3943],[107.0483,-6.3964],[107.0461,-6.4028],[107.0411,-6.407],[107.0351,-6.4059],[107.0305,-6.4115],[107.0232,-6.4096],[107.0231,-6.4042],[107.019,-6.4002],[107.0103,-6.4026],[107.0085,-6.3959],[107.0111,-6.3919],[107.0056,-6.3894],[107.0065,-6.3837],[107.0054,-6.3775],[107.002,-6.3792],[106.9958,-6.3786],[106.993,-6.3705],[106.994,-6.3671]],[[106.7789,-6.5117],[106.7864,-6.5148],[106.7899,-6.5225],[106.7895,-6.5277],[106.7932,-6.5326],[106.7919,-6.5435],[106.7952,-6.5471],[106.8056,-6.5403],[106.8054,-6.5454],[106.8089,-6.5461],[106.8114,-6.5393],[106.8183,-6.5385],[106.8185,-6.5428],[106.8242,-6.5455],[106.8292,-6.5505],[106.8299,-6.5606],[106.8348,-6.5681],[106.8359,-6.5749],[106.8391,-6.5763],[106.8322,-6.5971],[106.8314,-6.6027],[106.8325,-6.6152],[106.8394,-6.632],[106.8474,-6.6431],[106.8485,-6.6516],[106.8453,-6.6605],[106.8481,-6.6762],[106.8434,-6.6788],[106.8304,-6.6792],[106.819,-6.6719],[106.8184,-6.6663],[106.8156,-6.6613],[106.8089,-6.6564],[106.8084,-6.6524],[106.7994,-6.6457],[106.7949,-6.6493],[106.7868,-6.6592],[106.7749,-6.6559],[106.7716,-6.6537],[106.783,-6.645],[106.7854,-6.6362],[106.7901,-6.628],[106.7843,-6.6211],[106.7837,-6.616],[106.7787,-6.6072],[106.7754,-6.6067],[106.7737,-6.5994],[106.7664,-6.5919],[106.7627,-6.5835],[106.7564,-6.5773],[106.7492,-6.5723],[106.7442,-6.5763],[106.7411,-6.5754],[106.7416,-6.5701],[106.7364,-6.5663],[106.735,-6.5598],[106.741,-6.5427],[106.7466,-6.5436],[106.7521,-6.551],[106.7562,-6.5517],[106.7604,-6.5471],[106.7645,-6.5459],[106.7645,-6.531],[106.7663,-6.5273],[106.7644,-6.523],[106.7667,-6.517],[106.7724,-6.5125],[106.7789,-6.5117]]]}},{"type":"Feature","properties":{"mhid":"1332:167","alt_name":"KABUPATEN SUKABUMI","latitude":-7.06667,"longitude":106.7,"sample_value":542},"geometry":{"type":"MultiLineString","coordinates":[[[106.9652,-6.7703],[106.9616,-6.7637],[106.9567,-6.7607],[106.947,-6.7608],[106.9356,-6.7675],[106.9318,-6.7724],[106.9279,-6.7814],[106.921,-6.7866],[106.9128,-6.7882],[106.8998,-6.7881],[106.8979,-6.7866],[106.8873,-6.7854],[106.8788,-6.7813],[106.8712,-6.7816],[106.8649,-6.7781],[106.8586,-6.7768],[106.8531,-6.7773],[106.8446,-6.7759],[106.8373,-6.7689],[106.8312,-6.767],[106.8215,-6.7697],[106.8144,-6.7687],[106.8003,-6.762],[106.7979,-6.7552],[106.7926,-6.7525],[106.7868,-6.7559],[106.7776,-6.7548],[106.7715,-6.7502],[106.7665,-6.7443],[106.7641,-6.7367],[106.7578,-6.7275],[106.746,-6.7181],[106.7395,-6.7154],[106.7326,-6.7157],[106.7252,-6.7184],[106.7163,-6.7273],[106.7109,-6.731],[106.7027,-6.7334],[106.6994,-6.7418],[106.6943,-6.7447],[106.6829,-6.7459],[106.6773,-6.7399],[106.6726,-6.732],[106.6677,-6.7366],[106.6589,-6.7319],[106.656,-6.7398],[106.6577,-6.745],[106.6541,-6.7487],[106.6434,-6.7488],[106.6331,-6.7549],[106.623,-6.749],[106.604,-6.7493],[106.5964,-6.7481],[106.5873,-6.7423],[106.5847,-6.7372],[106.5848,-6.7323],[106.5824,-6.7211],[106.5783,-6.7177],[106.5695,-6.7219],[106.567,-6.7272],[106.5605,-6.7343],[106.5599,-6.7383],[106.5479,-6.7508],[106.5333,-6.7515],[106.5246,-6.759],[106.5248,-6.7623],[106.5263,-6.7679],[106.5166,-6.7765],[106.5095,-6.7809],[106.4965,-6.7915],[106.4917,-6.7913],[106.4852,-6.7947],[106.4791,-6.7952],[106.4556,-6.8048],[106.4529,-6.8131],[106.447,-6.8185],[106.44,-6.8177],[106.4361,-6.8202],[106.4353,-6.8389],[106.4312,-6.846],[106.432,-6.8493],[106.4298,-6.8555],[106.4313,-6.8617],[106.4239,-6.8705],[106.4192,-6.8743],[106.4193,-6.8805],[106.4063,-6.8864],[106.4024,-6.8956],[106.3929,-6.9006],[106.3922,-6.9041],[106.397,-6.9086],[106.3979,-6.9179],[106.4001,-6.9243],[106.3981,-6.9289],[106.3911,-6.9324],[106.3914,-6.9397],[106.3896,-6.942],[106.3936,-6.9479],[106.3957,-6.9541],[106.3929,-6.9681],[106.394,-6.9741],[106.3969,-6.978],[106.3999,-6.9765],[106.4126,-6.9755],[106.4155,-6.9709],[106.4141,-6.9666],[106.42,-6.9606],[106.4293,-6.9582],[106.4345,-6.958],[106.4414,-6.9525],[106.452,-6.9544],[106.4568,-6.957],[106.4604,-6.9551],[106.4732,-6.9617],[106.478,-6.9631],[106.4862,-6.9604],[106.4968,-6.9632],[106.4998,-6.962],[106.5103,-6.9644],[106.5255,-6.9735],[106.533,-6.9809],[106.54,-6.9824],[106.5436,-6.9882],[106.5407,-6.991],[106.5421,-6.9978],[106.5394,-7.0059],[106.5402,-7.0222],[106.5429,-7.0271],[106.5438,-7.033],[106.5414,-7.043],[106.5455,-7.0551],[106.5402,-7.0589],[106.5391,-7.0675],[106.536,-7.0735],[106.5297,-7.0789],[106.5216,-7.0895],[106.5162,-7.0937],[106.5112,-7.0948],[106.4846,-7.1038],[106.4815,-7.1121],[106.4749,-7.1155],[106.4693,-7.1203],[106.4657,-7.1274],[106.4571,-7.1291],[106.4575,-7.1338],[106.4491,-7.1527],[106.456,-7.1607],[106.4582,-7.1668],[106.4656,-7.1707],[106.4663,-7.1741],[106.4637,-7.1803],[106.4539,-7.1866],[106.448,-7.186],[106.4452,-7.1901],[106.4397,-7.1906],[106.4384,-7.1858],[106.4239,-7.1904],[106.4139,-7.1868],[106.4072,-7.1883],[106.4006,-7.1867],[106.3994,-7.1935],[106.3957,-7.1986],[106.3991,-7.2018],[106.3975,-7.2092],[106.3949,-7.2118],[106.3898,-7.2112],[106.3887,-7.218],[106.3905,-7.2291],[106.3861,-7.2363],[106.3807,-7.2392],[106.3784,-7.2427],[106.3848,-7.2635],[106.3805,-7.2736],[106.3706,-7.2794],[106.3715,-7.2843],[106.3775,-7.2927],[106.3776,-7.2983],[106.3731,-7.3034],[106.3727,-7.3079],[106.3785,-7.3154],[106.3813,-7.321],[106.3811,-7.3273],[106.3876,-7.3246],[106.3992,-7.3229],[106.3987,-7.3319],[106.4008,-7.3383],[106.3997,-7.343],[106.4027,-7.3469],[106.4037,-7.3575],[106.3995,-7.37],[106.4049,-7.374],[106.4076,-7.3676],[106.4162,-7.3627],[106.427,-7.3595],[106.4444,-7.361],[106.4494,-7.366],[106.4609,-7.3683],[106.4677,-7.3715],[106.4695,-7.3704],[106.4774,-7.3724],[106.4942,-7.3796],[106.4963,-7.3857],[106.505,-7.3933],[106.5147,-7.3984],[106.526,-7.4084],[106.5332,-7.4086],[106.5453,-7.4134],[106.5563,-7.4151],[106.5625,-7.4175],[106.5759,-7.4182],[106.5821,-7.4133],[106.6005,-7.4108],[106.6106,-7.4114],[106.6217,-7.4097],[106.6294,-7.4099],[106.6331,-7.4185],[106.6542,-7.4218],[106.6763,-7.4243],[106.6817,-7.4244],[106.7306,-7.4299],[106.7328,-7.4356],[106.7398,-7.4373],[106.7548,-7.4372],[106.7736,-7.4409],[106.7804,-7.4403],[106.7917,-7.4326],[106.7934,-7.4274],[106.7932,-7.4211],[106.7909,-7.4127],[106.7885,-7.4089],[106.7829,-7.4164],[106.7778,-7.4111],[106.7766,-7.4032],[106.7798,-7.3985],[106.7869,-7.3963],[106.794,-7.3974],[106.7958,-7.3914],[106.8059,-7.3875],[106.8083,-7.384],[106.8197,-7.3724],[106.8226,-7.3631],[106.8285,-7.3643],[106.8309,-7.3586],[106.8356,-7.3572],[106.8425,-7.3585],[106.8445,-7.3565],[106.8514,-7.3604],[106.8579,-7.3542],[106.8605,-7.3571],[106.8556,-7.3608],[106.8602,-7.3638],[106.8678,-7.3559],[106.8711,-7.3632],[106.8765,-7.3633],[106.8768,-7.3535],[106.8809,-7.3515],[106.8847,-7.3534],[106.8905,-7.3485],[106.8949,-7.3476],[106.893,-7.3429],[106.8991,-7.3411],[106.9036,-7.3433],[106.9034,-7.3512],[106.9088,-7.3497],[106.908,-7.3415],[106.9108,-7.3341],[106.9114,-7.3283],[106.9148,-7.3233],[106.919,-7.3218],[106.9262,-7.327],[106.9275,-7.3327],[106.9353,-7.3324],[106.9336,-7.3256],[106.9356,-7.3215],[106.9409,-7.3177],[106.9477,-7.3189],[106.9515,-7.3215],[106.9572,-7.3181],[106.9611,-7.3184],[106.9672,-7.3122],[106.97,-7.3016],[106.9732,-7.2943],[106.973,-7.2902],[106.976,-7.285],[106.9725,-7.2799],[106.9728,-7.2739],[106.9703,-7.2718],[106.9699,-7.2661],[106.9648,-7.2657],[106.9604,-7.261],[106.9635,-7.2514],[106.9721,-7.2466],[106.9743,-7.2413],[106.9788,-7.2417],[106.9826,-7.2222],[106.9801,-7.2167],[106.9752,-7.2151],[106.9752,-7.206],[106.9732,-7.1996],[106.9679,-7.1962],[106.968,-7.1888],[106.9746,-7.1872],[106.9707,-7.178],[106.9639,-7.1749],[106.958,-7.1651],[106.9601,-7.1569],[106.9673,-7.153],[106.9644,-7.1423],[106.9503,-7.1321],[106.9455,-7.1333],[106.9444,-7.1291],[106.9399,-7.1264],[106.9364,-7.1171],[106.9369,-7.1098],[106.9428,-7.0983],[106.9419,-7.0954],[106.945,-7.0912],[106.944,-7.0873],[106.9483,-7.0856],[106.9447,-7.0779],[106.9445,-7.0733],[106.9511,-7.0711],[106.9549,-7.0635],[106.9533,-7.0588],[106.9595,-7.033],[106.9652,-7.026],[106.9703,-7.0227],[106.9753,-7.0164],[106.9806,-7.0133],[106.9891,-7.017],[106.9947,-7.0284],[107.0033,-7.0318],[107.0071,-7.0365],[107.0121,-7.0356],[107.0225,-7.0373],[107.0288,-7.0446],[107.0377,-7.0439],[107.0401,-7.0368],[107.0475,-7.0311],[107.0429,-7.0232],[107.049,-7.0178],[107.0471,-7.0114],[107.0495,-7.0046],[107.0455,-7.0022],[107.0381,-6.9893],[107.0334,-6.9875],[107.0324,-6.9813],[107.0337,-6.976],[107.0367,-6.9749],[107.0374,-6.9692],[107.0412,-6.9649],[107.0491,-6.9606],[107.0578,-6.9676],[107.0641,-6.9669],[107.065,-6.9642],[107.0626,-6.9564],[107.0565,-6.9525],[107.0511,-6.9469],[107.0485,-6.9415],[107.0486,-6.9325],[107.05,-6.9297],[107.0488,-6.9139],[107.0473,-6.9098],[107.0421,-6.9094],[107.0387,-6.8989],[107.0321,-6.8976],[107.0288,-6.8891],[107.0346,-6.886],[107.0312,-6.8779],[107.0328,-6.8743],[107.0272,-6.868],[107.0249,-6.862],[107.016,-6.8546],[107.0063,-6.8488],[107.0005,-6.8405],[106.9991,-6.8329],[106.9956,-6.8252],[106.9963,-6.8194],[106.9932,-6.8053],[106.9848,-6.7909],[106.978,-6.7846],[106.9707,-6.7797],[106.9686,-6.7737],[106.9652,-6.7703]],[[106.9148,-6.8924],[106.9196,-6.9023],[106.923,-6.8995],[106.9289,-6.9041],[106.9342,-6.9024],[106.9467,-6.9075],[106.954,-6.9048],[106.9543,-6.9122],[106.9522,-6.9161],[106.954,-6.9197],[106.9591,-6.9192],[106.9578,-6.9254],[106.9599,-6.9415],[106.9556,-6.9546],[106.9557,-6.9585],[106.9466,-6.9691],[106.9319,-6.9653],[106.9232,-6.9726],[106.9134,-6.9772],[106.8982,-6.9779],[106.896,-6.9723],[106.8893,-6.9695],[106.8848,-6.974],[106.8798,-6.9733],[106.8755,-6.9763],[106.8713,-6.9723],[106.8746,-6.9656],[106.8847,-6.957],[106.9015,-6.9565],[106.9103,-6.9543],[106.9109,-6.9492],[106.9084,-6.9451],[106.9074,-6.9385],[106.9005,-6.9332],[106.9014,-6.912],[106.907,-6.9112],[106.9098,-6.9035],[106.909,-6.8986],[106.9107,-6.8929],[106.9148,-6.8924]]]}},{"type":"Feature","properties":{"mhid":"1332:168","alt_name":"KABUPATEN CIANJUR","latitude":-6.7725,"longitude":107.08306,"sample_value":819},"geometry":{"type":"LineString","coordinates":[[107.2843,-6.707],[107.2747,-6.7067],[107.2677,-6.7028],[107.2641,-6.6991],[107.2499,-6.696],[107.2474,-6.6911],[107.2561,-6.6862],[107.2594,-6.68],[107.2584,-6.6695],[107.2612,-6.6575],[107.2647,-6.653],[107.2636,-6.6433],[107.2646,-6.6395],[107.2627,-6.6342],[107.256,-6.6301],[107.2386,-6.6162],[107.235,-6.6073],[107.2271,-6.6021],[107.2218,-6.6127],[107.2148,-6.6197],[107.213,-6.6306],[107.2145,-6.6376],[107.2027,-6.6405],[107.1922,-6.6455],[107.1795,-6.6465],[107.1742,-6.6413],[107.1636,-6.6473],[107.1602,-6.6455],[107.1581,-6.6499],[107.1529,-6.6496],[107.1503,-6.6543],[107.1504,-6.663],[107.1349,-6.6704],[107.1302,-6.6698],[107.1231,-6.664],[107.1132,-6.6635],[107.1097,-6.6658],[107.1036,-6.664],[107.0951,-6.6643],[107.0887,-6.6675],[107.0849,-6.6649],[107.0793,-6.665],[107.073,-6.6627],[107.0685,-6.6652],[107.0659,-6.662],[107.0552,-6.6592],[107.0513,-6.6566],[107.0427,-6.6567],[107.0383,-6.6609],[107.0331,-6.6629],[107.0253,-6.6625],[107.0159,-6.668],[107.0094,-6.6647],[107.0047,-6.6682],[107.0006,-6.6665],[106.991,-6.6685],[106.9951,-6.6785],[107.0036,-6.6857],[107.0065,-6.6917],[107.0031,-6.6975],[107.0004,-6.6987],[106.9951,-6.7073],[106.9932,-6.7151],[106.9966,-6.7257],[106.9992,-6.7301],[106.9965,-6.7378],[106.9925,-6.7372],[106.9858,-6.7429],[106.9771,-6.7446],[106.974,-6.7518],[106.9758,-6.7598],[106.9743,-6.7653],[106.9652,-6.7703],[106.9686,-6.7737],[106.9707,-6.7797],[106.978,-6.7846],[106.9848,-6.7909],[106.9932,-6.8053],[106.9963,-6.8194],[106.9956,-6.8252],[106.9991,-6.8329],[107.0005,-6.8405],[107.0063,-6.8488],[107.016,-6.8546],[107.0249,-6.862],[107.0272,-6.868],[107.0328,-6.8743],[107.0312,-6.8779],[107.0346,-6.886],[107.0288,-6.8891],[107.0321,-6.8976],[107.0387,-6.8989],[107.0421,-6.9094],[107.0473,-6.9098],[107.0488,-6.9139],[107.05,-6.9297],[107.0486,-6.9325],[107.0485,-6.9415],[107.0511,-6.9469],[107.0565,-6.9525],[107.0626,-6.9564],[107.065,-6.9642],[107.0641,-6.9669],[107.0578,-6.9676],[107.0491,-6.9606],[107.0412,-6.9649],[107.0374,-6.9692],[107.0367,-6.9749],[107.0337,-6.976],[107.0324,-6.9813],[107.0334,-6.9875],[107.0381,-6.9893],[107.0455,-7.0022],[107.0495,-7.0046],[107.0471,-7.0114],[107.049,-7.0178],[107.0429,-7.0232],[107.0475,-7.0311],[107.0401,-7.0368],[107.0377,-7.0439],[107.0288,-7.0446],[107.0225,-7.0373],[107.0121,-7.0356],[107.0071,-7.0365],[107.0033,-7.0318],[106.9947,-7.0284],[106.9891,-7.017],[106.9806,-7.0133],[106.9753,-7.0164],[106.9703,-7.0227],[106.9652,-7.026],[106.9595,-7.033],[106.9533,-7.0588],[106.9549,-7.0635],[106.9511,-7.0711],[106.9445,-7.0733],[106.9447,-7.0779],[106.9483,-7.0856],[106.944,-7.0873],[106.945,-7.0912],[106.9419,-7.0954],[106.9428,-7.0983],[106.9369,-7.1098],[106.9364,-7.1171],[106.9399,-7.1264],[106.9444,-7.1291],[106.9455,-7.1333],[106.9503,-7.1321],[106.9644,-7.1423],[106.9673,-7.153],[106.9601,-7.1569],[106.958,-7.1651],[106.9639,-7.1749],[106.9707,-7.178],[106.9746,-7.1872],[106.968,-7.1888],[106.9679,-7.1962],[106.9732,-7.1996],[106.9752,-7.206],[106.9752,-7.2151],[106.9801,-7.2167],[106.9826,-7.2222],[106.9788,-7.2417],[106.9743,-7.2413],[106.9721,-7.2466],[106.9635,-7.2514],[106.9604,-7.261],[106.9648,-7.2657],[106.9699,-7.2661],[106.9703,-7.2718],[106.9728,-7.2739],[106.9725,-7.2799],[106.976,-7.285],[106.973,-7.2902],[106.9732,-7.2943],[106.97,-7.3016],[106.9672,-7.3122],[106.9611,-7.3184],[106.9572,-7.3181],[106.9515,-7.3215],[106.9477,-7.3189],[106.9409,-7.3177],[106.9356,-7.3215],[106.9336,-7.3256],[106.9353,-7.3324],[106.9275,-7.3327],[106.9262,-7.327],[106.919,-7.3218],[106.9148,-7.3233],[106.9114,-7.3283],[106.9108,-7.3341],[106.908,-7.3415],[106.9088,-7.3497],[106.9034,-7.3512],[106.9036,-7.3433],[106.8991,-7.3411],[106.893,-7.3429],[106.8949,-7.3476],[106.8905,-7.3485],[106.8847,-7.3534],[106.8809,-7.3515],[106.8768,-7.3535],[106.8765,-7.3633],[106.8711,-7.3632],[106.8678,-7.3559],[106.8602,-7.3638],[106.8556,-7.3608],[106.8605,-7.3571],[106.8579,-7.3542],[106.8514,-7.3604],[106.8445,-7.3565],[106.8425,-7.3585],[106.8356,-7.3572],[106.8309,-7.3586],[106.8285,-7.3643],[106.8226,-7.3631],[106.8197,-7.3724],[106.8083,-7.384],[106.8059,-7.3875],[106.7958,-7.3914],[106.794,-7.3974],[106.7869,-7.3963],[106.7798,-7.3985],[106.7766,-7.4032],[106.7778,-7.4111],[106.7829,-7.4164],[106.7885,-7.4089],[106.7909,-7.4127],[106.7932,-7.4211],[106.7946,-7.4323],[106.7935,-7.4361],[106.8001,-7.4368],[106.8191,-7.4345],[106.8409,-7.4337],[106.8619,-7.4345],[106.8678,-7.4314],[106.8803,-7.4348],[106.9404,-7.4402],[106.9568,-7.4426],[106.9679,-7.443],[106.9908,-7.4454],[107.0058,-7.4479],[107.0174,-7.4487],[107.0416,-7.4491],[107.0622,-7.4521],[107.0726,-7.4522],[107.086,-7.4533],[107.109,-7.4579],[107.1138,-7.4594],[107.1276,-7.4613],[107.1549,-7.4675],[107.1649,-7.4693],[107.1743,-7.4725],[107.2036,-7.4791],[107.2388,-7.4877],[107.248,-7.4892],[107.2619,-7.4902],[107.2908,-7.4944],[107.3116,-7.4942],[107.3301,-7.4956],[107.3454,-7.4993],[107.3574,-7.5],[107.373,-7.4986],[107.3832,-7.4993],[107.3891,-7.4985],[107.3928,-7.4951],[107.3997,-7.4958],[107.4068,-7.5028],[107.4231,-7.5056],[107.4261,-7.5028],[107.4263,-7.4949],[107.4215,-7.4883],[107.4217,-7.4822],[107.4236,-7.4776],[107.4231,-7.4692],[107.4203,-7.4631],[107.4236,-7.4586],[107.4282,-7.4482],[107.4267,-7.4405],[107.4307,-7.4344],[107.4314,-7.425],[107.4338,-7.4204],[107.4439,-7.415],[107.4504,-7.4139],[107.4548,-7.4086],[107.4715,-7.4028],[107.4745,-7.3998],[107.4736,-7.3829],[107.4762,-7.3725],[107.4801,-7.367],[107.4846,-7.3569],[107.4831,-7.3484],[107.4788,-7.3468],[107.4746,-7.3421],[107.4727,-7.333],[107.4659,-7.327],[107.4631,-7.3165],[107.4586,-7.3068],[107.4581,-7.2965],[107.4549,-7.2921],[107.4585,-7.2859],[107.4637,-7.2818],[107.4644,-7.2762],[107.4686,-7.2745],[107.4741,-7.2655],[107.4766,-7.2565],[107.4647,-7.2525],[107.4608,-7.2536],[107.4559,-7.2601],[107.448,-7.2608],[107.4412,-7.2599],[107.4326,-7.257],[107.4265,-7.2602],[107.4171,-7.2586],[107.406,-7.2546],[107.3988,-7.2481],[107.375,-7.2404],[107.3671,-7.2396],[107.3568,-7.2356],[107.3523,-7.2381],[107.3461,-7.2385],[107.3445,-7.2342],[107.339,-7.2272],[107.3375,-7.216],[107.3305,-7.213],[107.3254,-7.2039],[107.3129,-7.2052],[107.3016,-7.2094],[107.2904,-7.2077],[107.2517,-7.2078],[107.251,-7.1998],[107.2536,-7.1954],[107.2763,-7.184],[107.2766,-7.1794],[107.2831,-7.1743],[107.2929,-7.1705],[107.2965,-7.1643],[107.3055,-7.1635],[107.3123,-7.1575],[107.3157,-7.1518],[107.317,-7.1454],[107.3153,-7.1288],[107.3092,-7.1241],[107.3091,-7.1106],[107.3118,-7.1081],[107.3109,-7.0971],[107.3075,-7.0915],[107.3014,-7.0875],[107.2993,-7.0839],[107.2927,-7.0877],[107.2853,-7.0848],[107.2839,-7.0787],[107.275,-7.0748],[107.2662,-7.0669],[107.2652,-7.0624],[107.2595,-7.0604],[107.2578,-7.0545],[107.2527,-7.0487],[107.249,-7.0505],[107.2403,-7.0468],[107.2344,-7.0497],[107.2245,-7.05],[107.2226,-7.0521],[107.2239,-7.0584],[107.2168,-7.0565],[107.2003,-7.0561],[107.1876,-7.0602],[107.1827,-7.0587],[107.1873,-7.0445],[107.1914,-7.0282],[107.194,-7.0266],[107.1944,-7.0187],[107.1887,-7.0128],[107.1861,-7.0033],[107.1863,-6.9893],[107.1849,-6.9827],[107.1863,-6.9736],[107.1907,-6.9723],[107.1903,-6.9681],[107.2006,-6.9633],[107.2024,-6.9603],[107.2097,-6.9566],[107.2193,-6.9493],[107.2151,-6.9429],[107.2218,-6.939],[107.2274,-6.94],[107.2328,-6.9387],[107.2554,-6.9271],[107.265,-6.928],[107.2743,-6.9244],[107.2784,-6.9255],[107.2833,-6.9233],[107.2914,-6.9162],[107.2953,-6.91],[107.3066,-6.9077],[107.3151,-6.9001],[107.3141,-6.8972],[107.3232,-6.8879],[107.3304,-6.8885],[107.3333,-6.8868],[107.3407,-6.8866],[107.3431,-6.8793],[107.3412,-6.8754],[107.3471,-6.8704],[107.3492,-6.8662],[107.3469,-6.8605],[107.3502,-6.856],[107.3483,-6.8524],[107.3426,-6.8525],[107.338,-6.8576],[107.3341,-6.8531],[107.3294,-6.8558],[107.3275,-6.8471],[107.3224,-6.8389],[107.3234,-6.8302],[107.3217,-6.824],[107.3165,-6.823],[107.315,-6.8193],[107.3192,-6.8146],[107.316,-6.8095],[107.3134,-6.8008],[107.3041,-6.7967],[107.2957,-6.788],[107.2862,-6.7838],[107.2819,-6.7775],[107.2766,-6.7742],[107.2736,-6.7678],[107.2639,-6.7747],[107.2576,-6.7826],[107.2548,-6.7931],[107.251,-6.7897],[107.2559,-6.7827],[107.255,-6.7795],[107.2616,-6.7706],[107.2605,-6.762],[107.2622,-6.7559],[107.2668,-6.7574],[107.2718,-6.7521],[107.2685,-6.749],[107.2683,-6.7435],[107.2579,-6.7419],[107.2637,-6.7384],[107.2718,-6.7441],[107.2755,-6.7409],[107.2703,-6.7353],[107.2649,-6.7345],[107.2617,-6.732],[107.2568,-6.7322],[107.2553,-6.7277],[107.251,-6.7267],[107.25,-6.716],[107.2518,-6.7129],[107.2572,-6.7101],[107.2593,-6.7152],[107.265,-6.7101],[107.2843,-6.7111],[107.2843,-6.707]]}},{"type":"Feature","properties":{"mhid":"1332:169","alt_name":"KABUPATEN BANDUNG","latitude":-7.1,"longitude":107.6,"sample_value":391},"geometry":{"type":"LineString","coordinates":[[107.75,-6.8128],[107.7335,-6.8143],[107.7265,-6.8108],[107.7246,-6.8185],[107.7189,-6.8251],[107.7176,-6.8347],[107.7128,-6.8333],[107.7034,-6.8403],[107.7002,-6.8371],[107.6949,-6.8362],[107.6939,-6.8297],[107.6847,-6.8301],[107.6723,-6.8324],[107.6605,-6.8322],[107.6557,-6.8363],[107.6519,-6.842],[107.644,-6.8464],[107.6426,-6.8504],[107.6313,-6.8562],[107.6286,-6.8557],[107.6252,-6.8583],[107.6274,-6.8712],[107.6303,-6.8714],[107.6295,-6.8806],[107.6378,-6.887],[107.6434,-6.893],[107.6459,-6.8885],[107.6492,-6.8933],[107.6565,-6.8943],[107.6637,-6.8837],[107.668,-6.8909],[107.678,-6.8926],[107.6807,-6.8911],[107.6846,-6.8956],[107.6951,-6.9033],[107.7001,-6.9083],[107.7047,-6.9032],[107.7006,-6.9016],[107.7041,-6.8936],[107.7076,-6.8897],[107.7146,-6.8903],[107.714,-6.9009],[107.7235,-6.8986],[107.7261,-6.895],[107.7344,-6.8982],[107.7393,-6.9021],[107.7365,-6.9093],[107.7343,-6.9085],[107.7262,-6.9176],[107.7255,-6.9288],[107.7159,-6.9458],[107.7134,-6.9468],[107.7126,-6.954],[107.7156,-6.956],[107.716,-6.9617],[107.706,-6.9669],[107.6994,-6.9692],[107.6924,-6.9697],[107.6709,-6.9675],[107.6643,-6.9674],[107.6506,-6.9648],[107.6395,-6.9659],[107.6285,-6.9646],[107.6157,-6.9609],[107.5894,-6.9627],[107.5799,-6.9605],[107.5639,-6.9518],[107.5605,-6.9486],[107.547,-6.93],[107.5473,-6.9267],[107.5438,-6.919],[107.5363,-6.9174],[107.5295,-6.9174],[107.5251,-6.9207],[107.5231,-6.9272],[107.5226,-6.9355],[107.5315,-6.9393],[107.5261,-6.9444],[107.5243,-6.9514],[107.5186,-6.9568],[107.5188,-6.9637],[107.5112,-6.9672],[107.5083,-6.9767],[107.505,-6.9815],[107.4989,-6.9777],[107.4881,-6.9798],[107.486,-6.9853],[107.4877,-6.9943],[107.4865,-7],[107.4789,-7.0026],[107.475,-7.0071],[107.4771,-7.0129],[107.4753,-7.0182],[107.4817,-7.0238],[107.481,-7.0289],[107.4774,-7.039],[107.4753,-7.0404],[107.4755,-7.0514],[107.4697,-7.0542],[107.4669,-7.0525],[107.454,-7.0517],[107.448,-7.0484],[107.4327,-7.0549],[107.4281,-7.0552],[107.4194,-7.0623],[107.4221,-7.0752],[107.4071,-7.0914],[107.4088,-7.0959],[107.4073,-7.1091],[107.4024,-7.1113],[107.395,-7.1193],[107.3868,-7.122],[107.3828,-7.1196],[107.3678,-7.1147],[107.3624,-7.1185],[107.3591,-7.1143],[107.3463,-7.1082],[107.3397,-7.1106],[107.3341,-7.1084],[107.3254,-7.1097],[107.3148,-7.107],[107.3118,-7.1081],[107.3091,-7.1106],[107.3092,-7.1241],[107.3153,-7.1288],[107.317,-7.1454],[107.3157,-7.1518],[107.3123,-7.1575],[107.3055,-7.1635],[107.2965,-7.1643],[107.2929,-7.1705],[107.2831,-7.1743],[107.2766,-7.1794],[107.2763,-7.184],[107.2536,-7.1954],[107.251,-7.1998],[107.2517,-7.2078],[107.2904,-7.2077],[107.3016,-7.2094],[107.3129,-7.2052],[107.3254,-7.2039],[107.3305,-7.213],[107.3375,-7.216],[107.339,-7.2272],[107.3445,-7.2342],[107.3461,-7.2385],[107.3523,-7.2381],[107.3568,-7.2356],[107.3671,-7.2396],[107.375,-7.2404],[107.3988,-7.2481],[107.406,-7.2546],[107.4171,-7.2586],[107.4265,-7.2602],[107.4326,-7.257],[107.4412,-7.2599],[107.448,-7.2608],[107.4559,-7.2601],[107.4608,-7.2536],[107.4647,-7.2525],[107.4766,-7.2565],[107.4801,-7.2515],[107.5007,-7.2572],[107.5108,-7.2558],[107.522,-7.2563],[107.5318,-7.2543],[107.5358,-7.2516],[107.5449,-7.2576],[107.554,-7.2518],[107.5575,-7.2515],[107.5671,-7.2595],[107.574,-7.2632],[107.5824,-7.2768],[107.5909,-7.2817],[107.5992,-7.283],[107.6038,-7.2935],[107.6015,-7.2994],[107.6049,-7.3077],[107.6133,-7.3092],[107.6207,-7.3067],[107.625,-7.3005],[107.6354,-7.3015],[107.6424,-7.3034],[107.6476,-7.2986],[107.6481,-7.2949],[107.6525,-7.2948],[107.6554,-7.2908],[107.6601,-7.2904],[107.664,-7.298],[107.6688,-7.3005],[107.6714,-7.3087],[107.6702,-7.3126],[107.6777,-7.3119],[107.6916,-7.309],[107.6952,-7.3102],[107.7094,-7.3087],[107.7173,-7.3137],[107.7235,-7.3132],[107.7247,-7.2993],[107.731,-7.2954],[107.7306,-7.2929],[107.7226,-7.2929],[107.723,-7.2882],[107.7303,-7.2818],[107.7391,-7.2724],[107.7381,-7.2647],[107.7291,-7.2589],[107.7126,-7.2501],[107.7087,-7.2458],[107.7061,-7.2374],[107.7086,-7.2313],[107.7075,-7.2275],[107.7245,-7.2188],[107.731,-7.2122],[107.7252,-7.2063],[107.7216,-7.1984],[107.725,-7.1915],[107.7337,-7.1814],[107.7364,-7.1735],[107.7418,-7.1672],[107.7501,-7.1715],[107.7574,-7.1727],[107.766,-7.1717],[107.7708,-7.1681],[107.77,-7.1574],[107.7783,-7.1557],[107.7849,-7.1613],[107.7885,-7.1615],[107.7971,-7.1582],[107.8077,-7.1445],[107.8113,-7.1365],[107.8119,-7.1293],[107.8104,-7.1207],[107.8078,-7.1155],[107.811,-7.1091],[107.8099,-7.1018],[107.8115,-7.0992],[107.8295,-7.0916],[107.8314,-7.0886],[107.83,-7.0818],[107.8354,-7.0804],[107.8357,-7.0683],[107.8405,-7.067],[107.8498,-7.0606],[107.8499,-7.0588],[107.8615,-7.0597],[107.8657,-7.0567],[107.8755,-7.054],[107.8779,-7.0508],[107.8919,-7.0493],[107.8943,-7.0543],[107.9016,-7.0547],[107.9085,-7.0532],[107.9245,-7.0532],[107.9316,-7.0407],[107.9307,-7.0335],[107.9205,-7.034],[107.9102,-7.0363],[107.9105,-7.0327],[107.9073,-7.0252],[107.9079,-7.0213],[107.906,-7.0148],[107.9086,-7.0041],[107.908,-6.9943],[107.9049,-6.9875],[107.8918,-6.9792],[107.8976,-6.9752],[107.9014,-6.9698],[107.9083,-6.9675],[107.9171,-6.9667],[107.9184,-6.954],[107.9147,-6.9528],[107.9004,-6.9531],[107.892,-6.9595],[107.8899,-6.9639],[107.8762,-6.9622],[107.87,-6.9631],[107.8621,-6.9678],[107.854,-6.9676],[107.8478,-6.9697],[107.8424,-6.9695],[107.8308,-6.9646],[107.8265,-6.9672],[107.8117,-6.9665],[107.8009,-6.9648],[107.7826,-6.9589],[107.7813,-6.9551],[107.7742,-6.9595],[107.7706,-6.955],[107.7599,-6.9528],[107.7552,-6.956],[107.7541,-6.9508],[107.759,-6.9439],[107.7573,-6.9394],[107.7576,-6.9294],[107.7598,-6.9178],[107.7576,-6.91],[107.7604,-6.8971],[107.7586,-6.8918],[107.7488,-6.8837],[107.7445,-6.8764],[107.7432,-6.8708],[107.7431,-6.8615],[107.7408,-6.855],[107.7419,-6.8434],[107.7463,-6.8337],[107.7446,-6.828],[107.75,-6.8128]]}},{"type":"Feature","properties":{"mhid":"1332:170","alt_name":"KABUPATEN GARUT","latitude":-7.38333,"longitude":107.76667,"sample_value":507},"geometry":{"type":"LineString","coordinates":[[108.1291,-7.0408],[108.115,-7.0329],[108.1093,-7.0261],[108.1001,-7.0195],[108.0995,-7.0146],[108.0941,-7.0071],[108.0922,-6.9998],[108.0933,-6.994],[108.0915,-6.9914],[108.0902,-6.9818],[108.0832,-6.9828],[108.0752,-6.9815],[108.0724,-6.9833],[108.0641,-6.9951],[108.0585,-6.9945],[108.0553,-6.9962],[108.048,-6.9928],[108.043,-6.9965],[108.0349,-6.9914],[108.0321,-6.9921],[108.0254,-6.9874],[108.0249,-6.9848],[108.0159,-6.9801],[108.0076,-6.9824],[108.0044,-6.9809],[108,-6.9836],[107.9862,-6.979],[107.9784,-6.9728],[107.9766,-6.9694],[107.9686,-6.9626],[107.9672,-6.9592],[107.9577,-6.9603],[107.9534,-6.9583],[107.9457,-6.9573],[107.9429,-6.9531],[107.9388,-6.9563],[107.9314,-6.9559],[107.9268,-6.952],[107.915,-6.947],[107.9147,-6.9528],[107.9184,-6.954],[107.9171,-6.9667],[107.9083,-6.9675],[107.9014,-6.9698],[107.8976,-6.9752],[107.8918,-6.9792],[107.9049,-6.9875],[107.908,-6.9943],[107.9086,-7.0041],[107.906,-7.0148],[107.9079,-7.0213],[107.9073,-7.0252],[107.9105,-7.0327],[107.9102,-7.0363],[107.9205,-7.034],[107.9307,-7.0335],[107.9316,-7.0407],[107.9245,-7.0532],[107.9085,-7.0532],[107.9016,-7.0547],[107.8943,-7.0543],[107.8919,-7.0493],[107.8779,-7.0508],[107.8755,-7.054],[107.8657,-7.0567],[107.8615,-7.0597],[107.8499,-7.0588],[107.8498,-7.0606],[107.8405,-7.067],[107.8357,-7.0683],[107.8354,-7.0804],[107.83,-7.0818],[107.8314,-7.0886],[107.8295,-7.0916],[107.8115,-7.0992],[107.8099,-7.1018],[107.811,-7.1091],[107.8078,-7.1155],[107.8104,-7.1207],[107.8119,-7.1293],[107.8113,-7.1365],[107.8077,-7.1445],[107.7971,-7.1582],[107.7885,-7.1615],[107.7849,-7.1613],[107.7783,-7.1557],[107.77,-7.1574],[107.7708,-7.1681],[107.766,-7.1717],[107.7574,-7.1727],[107.7501,-7.1715],[107.7418,-7.1672],[107.7364,-7.1735],[107.7337,-7.1814],[107.725,-7.1915],[107.7216,-7.1984],[107.7252,-7.2063],[107.731,-7.2122],[107.7245,-7.2188],[107.7075,-7.2275],[107.7086,-7.2313],[107.7061,-7.2374],[107.7087,-7.2458],[107.7126,-7.2501],[107.7291,-7.2589],[107.7381,-7.2647],[107.7391,-7.2724],[107.7303,-7.2818],[107.723,-7.2882],[107.7226,-7.2929],[107.7306,-7.2929],[107.731,-7.2954],[107.7247,-7.2993],[107.7235,-7.3132],[107.7173,-7.3137],[107.7094,-7.3087],[107.6952,-7.3102],[107.6916,-7.309],[107.6777,-7.3119],[107.6702,-7.3126],[107.6714,-7.3087],[107.6688,-7.3005],[107.664,-7.298],[107.6601,-7.2904],[107.6554,-7.2908],[107.6525,-7.2948],[107.6481,-7.2949],[107.6476,-7.2986],[107.6424,-7.3034],[107.6354,-7.3015],[107.625,-7.3005],[107.6207,-7.3067],[107.6133,-7.3092],[107.6049,-7.3077],[107.6015,-7.2994],[107.6038,-7.2935],[107.5992,-7.283],[107.5909,-7.2817],[107.5824,-7.2768],[107.574,-7.2632],[107.5671,-7.2595],[107.5575,-7.2515],[107.554,-7.2518],[107.5449,-7.2576],[107.5358,-7.2516],[107.5318,-7.2543],[107.522,-7.2563],[107.5108,-7.2558],[107.5007,-7.2572],[107.4801,-7.2515],[107.4766,-7.2565],[107.4741,-7.2655],[107.4686,-7.2745],[107.4644,-7.2762],[107.4637,-7.2818],[107.4585,-7.2859],[107.4549,-7.2921],[107.4581,-7.2965],[107.4586,-7.3068],[107.4631,-7.3165],[107.4659,-7.327],[107.4727,-7.333],[107.4746,-7.3421],[107.4788,-7.3468],[107.4831,-7.3484],[107.4846,-7.3569],[107.4801,-7.367],[107.4762,-7.3725],[107.4736,-7.3829],[107.4745,-7.3998],[107.4715,-7.4028],[107.4548,-7.4086],[107.4504,-7.4139],[107.4439,-7.415],[107.4338,-7.4204],[107.4314,-7.425],[107.4307,-7.4344],[107.4267,-7.4405],[107.4282,-7.4482],[107.4236,-7.4586],[107.4203,-7.4631],[107.4231,-7.4692],[107.4236,-7.4776],[107.4217,-7.4822],[107.4215,-7.4883],[107.4263,-7.4949],[107.4261,-7.5028],[107.4231,-7.5056],[107.4275,-7.5067],[107.4416,-7.5072],[107.4531,-7.5106],[107.4575,-7.514],[107.4713,-7.5175],[107.4774,-7.5222],[107.4772,-7.5275],[107.4808,-7.5306],[107.4807,-7.5378],[107.4843,-7.539],[107.4921,-7.5352],[107.4988,-7.5356],[107.5072,-7.5404],[107.521,-7.5421],[107.526,-7.5468],[107.529,-7.547],[107.5372,-7.5531],[107.5402,-7.552],[107.5577,-7.5572],[107.5763,-7.5654],[107.596,-7.5691],[107.6061,-7.5741],[107.6124,-7.5827],[107.6177,-7.5834],[107.6241,-7.59],[107.6229,-7.5951],[107.6266,-7.599],[107.6332,-7.6011],[107.6356,-7.5993],[107.6416,-7.6042],[107.6548,-7.6113],[107.6644,-7.6191],[107.6692,-7.6217],[107.683,-7.6382],[107.6832,-7.6441],[107.6872,-7.649],[107.6889,-7.6575],[107.686,-7.6616],[107.6901,-7.6682],[107.694,-7.6692],[107.7069,-7.6678],[107.7087,-7.6665],[107.7209,-7.6668],[107.7537,-7.6738],[107.7614,-7.6748],[107.7758,-7.6786],[107.7856,-7.68],[107.8133,-7.6909],[107.8267,-7.6987],[107.8349,-7.7062],[107.8376,-7.7137],[107.8344,-7.722],[107.8364,-7.7276],[107.8469,-7.7368],[107.8504,-7.7344],[107.8558,-7.7373],[107.8644,-7.7394],[107.8892,-7.7394],[107.8935,-7.7354],[107.9001,-7.7395],[107.9034,-7.7359],[107.9072,-7.7365],[107.9097,-7.7317],[107.9133,-7.7254],[107.9133,-7.72],[107.9186,-7.713],[107.9215,-7.7032],[107.9271,-7.7003],[107.924,-7.6962],[107.9278,-7.6932],[107.9312,-7.6832],[107.9255,-7.6764],[107.9271,-7.6706],[107.9233,-7.6653],[107.9299,-7.6594],[107.929,-7.6548],[107.9238,-7.6533],[107.9258,-7.6427],[107.9212,-7.6369],[107.9258,-7.6342],[107.9248,-7.6309],[107.9256,-7.6219],[107.9182,-7.608],[107.917,-7.597],[107.926,-7.5882],[107.9334,-7.5865],[107.9406,-7.5814],[107.9418,-7.5738],[107.9405,-7.5698],[107.9332,-7.564],[107.9314,-7.5605],[107.9329,-7.5558],[107.9457,-7.5441],[107.947,-7.5376],[107.9422,-7.5277],[107.9414,-7.5189],[107.942,-7.5018],[107.9448,-7.495],[107.9502,-7.4873],[107.9513,-7.4806],[107.9468,-7.4734],[107.9482,-7.4654],[107.9533,-7.4602],[107.9497,-7.4541],[107.949,-7.4456],[107.9505,-7.4399],[107.9517,-7.4283],[107.9514,-7.4217],[107.9437,-7.4141],[107.9423,-7.4089],[107.948,-7.4048],[107.949,-7.4015],[107.9362,-7.3999],[107.9328,-7.3942],[107.9338,-7.3884],[107.9198,-7.3764],[107.9139,-7.3688],[107.907,-7.3667],[107.905,-7.3595],[107.9157,-7.3551],[107.9207,-7.3513],[107.9242,-7.3522],[107.9302,-7.3486],[107.9293,-7.3386],[107.938,-7.3307],[107.9463,-7.3305],[107.9406,-7.3224],[107.939,-7.3159],[107.9313,-7.3158],[107.9283,-7.3118],[107.9317,-7.3042],[107.928,-7.3013],[107.9227,-7.2932],[107.9225,-7.289],[107.9263,-7.2847],[107.932,-7.2824],[107.9358,-7.2831],[107.9458,-7.2819],[107.952,-7.2785],[107.9567,-7.2779],[107.9675,-7.2732],[107.9768,-7.274],[107.9804,-7.2719],[107.981,-7.264],[107.985,-7.2604],[107.9933,-7.2595],[107.9948,-7.2528],[108.0001,-7.25],[108.005,-7.2449],[108.0135,-7.2411],[108.0148,-7.2357],[108.0186,-7.2309],[108.0357,-7.2265],[108.0485,-7.2263],[108.0604,-7.2249],[108.0686,-7.2115],[108.0664,-7.2079],[108.0688,-7.2007],[108.0737,-7.1999],[108.0741,-7.1947],[108.067,-7.1868],[108.0747,-7.1745],[108.0763,-7.1694],[108.0809,-7.1672],[108.0844,-7.1592],[108.0817,-7.152],[108.0807,-7.1429],[108.0735,-7.1352],[108.071,-7.1353],[108.0685,-7.1289],[108.077,-7.1188],[108.0841,-7.1122],[108.0858,-7.109],[108.0997,-7.1038],[108.1102,-7.1021],[108.1136,-7.103],[108.1189,-7.1098],[108.1234,-7.1115],[108.1259,-7.1013],[108.1227,-7.099],[108.1212,-7.0934],[108.1239,-7.089],[108.1224,-7.0835],[108.1178,-7.0792],[108.1236,-7.0695],[108.128,-7.0707],[108.1301,-7.0645],[108.136,-7.0609],[108.1338,-7.0548],[108.1357,-7.051],[108.1278,-7.0433],[108.1291,-7.0408]]}},{"type":"Feature","properties":{"mhid":"1332:171","alt_name":"KABUPATEN TASIKMALAYA","latitude":-7.5,"longitude":108.13333,"sample_value":451},"geometry":{"type":"LineString","coordinates":[[108.1762,-7.0677],[108.1656,-7.0746],[108.1621,-7.0741],[108.1562,-7.0671],[108.15,-7.0574],[108.1459,-7.0479],[108.1335,-7.0392],[108.1291,-7.0408],[108.1278,-7.0433],[108.1357,-7.051],[108.1338,-7.0548],[108.136,-7.0609],[108.1301,-7.0645],[108.128,-7.0707],[108.1236,-7.0695],[108.1178,-7.0792],[108.1224,-7.0835],[108.1239,-7.089],[108.1212,-7.0934],[108.1227,-7.099],[108.1259,-7.1013],[108.1234,-7.1115],[108.1189,-7.1098],[108.1136,-7.103],[108.1102,-7.1021],[108.0997,-7.1038],[108.0858,-7.109],[108.0841,-7.1122],[108.077,-7.1188],[108.0685,-7.1289],[108.071,-7.1353],[108.0735,-7.1352],[108.0807,-7.1429],[108.0817,-7.152],[108.0844,-7.1592],[108.0809,-7.1672],[108.0763,-7.1694],[108.0747,-7.1745],[108.067,-7.1868],[108.0741,-7.1947],[108.0737,-7.1999],[108.0688,-7.2007],[108.0664,-7.2079],[108.0686,-7.2115],[108.0604,-7.2249],[108.0485,-7.2263],[108.0357,-7.2265],[108.0186,-7.2309],[108.0148,-7.2357],[108.0135,-7.2411],[108.005,-7.2449],[108.0001,-7.25],[107.9948,-7.2528],[107.9933,-7.2595],[107.985,-7.2604],[107.981,-7.264],[107.9804,-7.2719],[107.9768,-7.274],[107.9675,-7.2732],[107.9567,-7.2779],[107.952,-7.2785],[107.9458,-7.2819],[107.9358,-7.2831],[107.932,-7.2824],[107.9263,-7.2847],[107.9225,-7.289],[107.9227,-7.2932],[107.928,-7.3013],[107.9317,-7.3042],[107.9283,-7.3118],[107.9313,-7.3158],[107.939,-7.3159],[107.9406,-7.3224],[107.9463,-7.3305],[107.938,-7.3307],[107.9293,-7.3386],[107.9302,-7.3486],[107.9242,-7.3522],[107.9207,-7.3513],[107.9157,-7.3551],[107.905,-7.3595],[107.907,-7.3667],[107.9139,-7.3688],[107.9198,-7.3764],[107.9338,-7.3884],[107.9328,-7.3942],[107.9362,-7.3999],[107.949,-7.4015],[107.948,-7.4048],[107.9423,-7.4089],[107.9437,-7.4141],[107.9514,-7.4217],[107.9517,-7.4283],[107.9505,-7.4399],[107.949,-7.4456],[107.9497,-7.4541],[107.9533,-7.4602],[107.9482,-7.4654],[107.9468,-7.4734],[107.9513,-7.4806],[107.9502,-7.4873],[107.9448,-7.495],[107.942,-7.5018],[107.9414,-7.5189],[107.9422,-7.5277],[107.947,-7.5376],[107.9457,-7.5441],[107.9329,-7.5558],[107.9314,-7.5605],[107.9332,-7.564],[107.9405,-7.5698],[107.9418,-7.5738],[107.9406,-7.5814],[107.9334,-7.5865],[107.926,-7.5882],[107.917,-7.597],[107.9182,-7.608],[107.9256,-7.6219],[107.9248,-7.6309],[107.9258,-7.6342],[107.9212,-7.6369],[107.9258,-7.6427],[107.9238,-7.6533],[107.929,-7.6548],[107.9299,-7.6594],[107.9233,-7.6653],[107.9271,-7.6706],[107.9255,-7.6764],[107.9312,-7.6832],[107.9278,-7.6932],[107.924,-7.6962],[107.9271,-7.7003],[107.9215,-7.7032],[107.9186,-7.713],[107.9133,-7.72],[107.9133,-7.7254],[107.9097,-7.7317],[107.9289,-7.7321],[107.9442,-7.734],[107.9629,-7.7382],[108.0097,-7.7475],[108.0229,-7.7516],[108.0378,-7.7541],[108.0472,-7.7576],[108.0645,-7.7677],[108.068,-7.7665],[108.0781,-7.7692],[108.0824,-7.7727],[108.0888,-7.7713],[108.1135,-7.777],[108.1311,-7.7831],[108.1455,-7.7858],[108.1735,-7.7898],[108.1942,-7.7939],[108.2451,-7.8021],[108.2519,-7.8039],[108.2942,-7.8108],[108.2996,-7.8149],[108.3023,-7.8115],[108.3102,-7.812],[108.3219,-7.8157],[108.3279,-7.8144],[108.3405,-7.8166],[108.3394,-7.8097],[108.3293,-7.8039],[108.3304,-7.798],[108.3234,-7.7944],[108.3194,-7.7845],[108.3234,-7.7827],[108.325,-7.7786],[108.3226,-7.7596],[108.3236,-7.7467],[108.3194,-7.7424],[108.3147,-7.7323],[108.3128,-7.7249],[108.319,-7.7262],[108.3213,-7.7217],[108.3122,-7.7182],[108.3147,-7.7129],[108.3209,-7.7147],[108.3237,-7.7201],[108.3304,-7.7164],[108.3303,-7.7098],[108.3238,-7.7128],[108.3238,-7.7036],[108.3225,-7.7009],[108.3163,-7.6973],[108.3167,-7.6928],[108.3206,-7.6927],[108.3243,-7.6882],[108.3315,-7.6921],[108.338,-7.6811],[108.3466,-7.6807],[108.3534,-7.684],[108.3531,-7.6785],[108.3547,-7.6716],[108.3614,-7.6623],[108.3651,-7.6609],[108.3605,-7.6544],[108.3617,-7.6454],[108.3551,-7.6446],[108.3534,-7.6387],[108.357,-7.6353],[108.3551,-7.6237],[108.3587,-7.6102],[108.3588,-7.5971],[108.3559,-7.5915],[108.3556,-7.5847],[108.357,-7.5781],[108.3564,-7.5727],[108.3528,-7.5646],[108.3534,-7.562],[108.3338,-7.5508],[108.3275,-7.5508],[108.3287,-7.5451],[108.3322,-7.5403],[108.3344,-7.5299],[108.3329,-7.5158],[108.3354,-7.5084],[108.3516,-7.5005],[108.352,-7.4931],[108.3561,-7.4904],[108.3624,-7.4891],[108.372,-7.4792],[108.3846,-7.4794],[108.3907,-7.477],[108.4015,-7.4788],[108.4012,-7.4844],[108.4071,-7.4893],[108.407,-7.4923],[108.4135,-7.4953],[108.4162,-7.4883],[108.4194,-7.4917],[108.4263,-7.4949],[108.4295,-7.5005],[108.4386,-7.4903],[108.4329,-7.4879],[108.4258,-7.49],[108.4216,-7.4889],[108.4239,-7.4794],[108.4264,-7.4741],[108.4251,-7.4599],[108.4254,-7.453],[108.4214,-7.4531],[108.4234,-7.4463],[108.4204,-7.4403],[108.4223,-7.4342],[108.4201,-7.422],[108.413,-7.4202],[108.4098,-7.4223],[108.3992,-7.417],[108.3956,-7.4122],[108.3965,-7.4046],[108.3999,-7.3969],[108.4014,-7.3887],[108.4105,-7.3796],[108.4117,-7.3755],[108.4072,-7.3706],[108.4077,-7.3655],[108.4021,-7.3632],[108.3899,-7.3616],[108.3853,-7.3572],[108.3789,-7.3566],[108.3779,-7.3596],[108.3726,-7.3599],[108.3627,-7.3527],[108.3473,-7.3542],[108.3421,-7.3563],[108.3367,-7.3514],[108.3351,-7.3473],[108.3265,-7.3479],[108.3241,-7.3429],[108.32,-7.3407],[108.313,-7.3396],[108.308,-7.3382],[108.3018,-7.3442],[108.2948,-7.3408],[108.2872,-7.3448],[108.2866,-7.348],[108.2822,-7.3511],[108.2834,-7.3568],[108.2869,-7.3608],[108.2837,-7.3651],[108.2673,-7.3739],[108.2743,-7.3763],[108.2725,-7.3802],[108.2825,-7.3845],[108.2781,-7.3898],[108.2727,-7.3915],[108.278,-7.4],[108.2766,-7.4109],[108.2722,-7.4248],[108.264,-7.4322],[108.2576,-7.4302],[108.2379,-7.4299],[108.2305,-7.4254],[108.2309,-7.4303],[108.2176,-7.4357],[108.2124,-7.4354],[108.2063,-7.4435],[108.2023,-7.4457],[108.2009,-7.4499],[108.1918,-7.4503],[108.1873,-7.4468],[108.193,-7.4439],[108.1936,-7.439],[108.1893,-7.4382],[108.1843,-7.4202],[108.1861,-7.4144],[108.1811,-7.4092],[108.1864,-7.4034],[108.1838,-7.4016],[108.1844,-7.3923],[108.1755,-7.3927],[108.1721,-7.3856],[108.1723,-7.3768],[108.164,-7.3651],[108.1644,-7.3548],[108.1676,-7.3502],[108.1666,-7.3442],[108.1591,-7.3418],[108.1527,-7.3354],[108.1533,-7.3259],[108.1601,-7.3238],[108.1613,-7.3179],[108.1586,-7.3104],[108.1595,-7.3045],[108.153,-7.2949],[108.155,-7.2897],[108.1652,-7.2898],[108.1695,-7.2877],[108.1763,-7.2883],[108.1762,-7.284],[108.18,-7.2825],[108.1802,-7.2769],[108.1783,-7.2736],[108.1846,-7.2696],[108.1904,-7.272],[108.1931,-7.2693],[108.1885,-7.2552],[108.1928,-7.2506],[108.1923,-7.2436],[108.195,-7.2318],[108.199,-7.2261],[108.1966,-7.2203],[108.1982,-7.2146],[108.1956,-7.202],[108.1981,-7.1971],[108.1993,-7.1887],[108.1921,-7.1874],[108.1948,-7.1827],[108.1907,-7.1675],[108.1946,-7.1617],[108.2031,-7.1522],[108.1998,-7.1462],[108.2032,-7.1418],[108.2011,-7.1384],[108.2081,-7.1354],[108.2137,-7.1347],[108.2172,-7.1295],[108.2162,-7.1253],[108.2197,-7.1236],[108.2137,-7.1135],[108.2147,-7.1043],[108.2184,-7.0975],[108.2201,-7.0874],[108.2171,-7.0826],[108.2085,-7.0833],[108.2041,-7.0774],[108.197,-7.0753],[108.1933,-7.0719],[108.184,-7.0713],[108.1762,-7.0677]]}},{"type":"Feature","properties":{"mhid":"1332:172","alt_name":"KABUPATEN CIAMIS","latitude":-7.28333,"longitude":108.41667,"sample_value":336},"geometry":{"type":"LineString","coordinates":[[108.3857,-7.073],[108.3824,-7.072],[108.3802,-7.0677],[108.3812,-7.0637],[108.3778,-7.0599],[108.3682,-7.0598],[108.36,-7.0516],[108.3481,-7.0554],[108.3452,-7.0646],[108.3386,-7.0707],[108.3266,-7.0643],[108.3223,-7.0559],[108.3204,-7.0588],[108.313,-7.057],[108.3077,-7.0607],[108.3019,-7.0617],[108.2958,-7.0585],[108.2806,-7.0582],[108.2817,-7.0621],[108.2734,-7.0649],[108.2568,-7.0646],[108.2455,-7.0667],[108.2381,-7.0643],[108.2379,-7.0593],[108.2272,-7.0547],[108.2179,-7.0586],[108.2144,-7.0556],[108.1988,-7.0655],[108.1931,-7.0589],[108.1881,-7.0586],[108.1846,-7.0612],[108.1774,-7.0612],[108.1762,-7.0677],[108.184,-7.0713],[108.1933,-7.0719],[108.197,-7.0753],[108.2041,-7.0774],[108.2085,-7.0833],[108.2171,-7.0826],[108.2201,-7.0874],[108.2184,-7.0975],[108.2147,-7.1043],[108.2137,-7.1135],[108.2197,-7.1236],[108.2162,-7.1253],[108.2172,-7.1295],[108.2137,-7.1347],[108.2081,-7.1354],[108.2011,-7.1384],[108.2032,-7.1418],[108.1998,-7.1462],[108.2031,-7.1522],[108.1946,-7.1617],[108.1907,-7.1675],[108.1948,-7.1827],[108.1921,-7.1874],[108.1993,-7.1887],[108.1981,-7.1971],[108.1956,-7.202],[108.1982,-7.2146],[108.1966,-7.2203],[108.199,-7.2261],[108.195,-7.2318],[108.1923,-7.2436],[108.1928,-7.2506],[108.1885,-7.2552],[108.1931,-7.2693],[108.1986,-7.2826],[108.206,-7.2888],[108.2176,-7.2926],[108.2289,-7.3011],[108.2314,-7.3059],[108.2344,-7.3055],[108.2408,-7.3116],[108.2468,-7.314],[108.2495,-7.3131],[108.2534,-7.3176],[108.2526,-7.3213],[108.2596,-7.3222],[108.2658,-7.3202],[108.2708,-7.321],[108.2758,-7.3294],[108.2801,-7.3342],[108.2884,-7.3358],[108.2916,-7.3331],[108.3002,-7.3322],[108.3061,-7.3343],[108.313,-7.3396],[108.32,-7.3407],[108.3241,-7.3429],[108.3265,-7.3479],[108.3351,-7.3473],[108.3367,-7.3514],[108.3421,-7.3563],[108.3473,-7.3542],[108.3627,-7.3527],[108.3726,-7.3599],[108.3779,-7.3596],[108.3789,-7.3566],[108.3853,-7.3572],[108.3899,-7.3616],[108.4021,-7.3632],[108.4077,-7.3655],[108.4072,-7.3706],[108.4117,-7.3755],[108.4105,-7.3796],[108.4014,-7.3887],[108.3999,-7.3969],[108.3965,-7.4046],[108.3956,-7.4122],[108.3992,-7.417],[108.4098,-7.4223],[108.413,-7.4202],[108.4201,-7.422],[108.4223,-7.4342],[108.4204,-7.4403],[108.4234,-7.4463],[108.4214,-7.4531],[108.4254,-7.453],[108.4251,-7.4599],[108.4264,-7.4741],[108.4239,-7.4794],[108.4216,-7.4889],[108.4258,-7.49],[108.4329,-7.4879],[108.4386,-7.4903],[108.4295,-7.5005],[108.4361,-7.5073],[108.4449,-7.5101],[108.4557,-7.5102],[108.4607,-7.5175],[108.4704,-7.5197],[108.4747,-7.5241],[108.4762,-7.5315],[108.4842,-7.5343],[108.4851,-7.5361],[108.4957,-7.5308],[108.5001,-7.5343],[108.5132,-7.5286],[108.5219,-7.5267],[108.5273,-7.5293],[108.5367,-7.5363],[108.5252,-7.5389],[108.5209,-7.5443],[108.5221,-7.5508],[108.5211,-7.5591],[108.5277,-7.5648],[108.5288,-7.5711],[108.5326,-7.5699],[108.5447,-7.5698],[108.5491,-7.5628],[108.5495,-7.5569],[108.5582,-7.5613],[108.5691,-7.5639],[108.5712,-7.5663],[108.5773,-7.5666],[108.5839,-7.5608],[108.5912,-7.563],[108.5979,-7.5619],[108.6069,-7.5539],[108.6161,-7.5536],[108.6226,-7.555],[108.6223,-7.5501],[108.6292,-7.5485],[108.6352,-7.5428],[108.6433,-7.5407],[108.6482,-7.5379],[108.6484,-7.5349],[108.654,-7.5292],[108.6538,-7.524],[108.6566,-7.5115],[108.6571,-7.4942],[108.65,-7.4881],[108.648,-7.4818],[108.6475,-7.4694],[108.649,-7.4676],[108.657,-7.4681],[108.6593,-7.4634],[108.6646,-7.4633],[108.6681,-7.4599],[108.6833,-7.4633],[108.6875,-7.4613],[108.6967,-7.4611],[108.6962,-7.4676],[108.7023,-7.4762],[108.7078,-7.4698],[108.716,-7.4663],[108.7124,-7.4593],[108.7132,-7.4559],[108.7205,-7.4449],[108.7217,-7.4393],[108.7197,-7.4301],[108.7176,-7.4264],[108.7127,-7.4266],[108.7065,-7.4186],[108.6993,-7.4143],[108.7011,-7.4105],[108.6973,-7.4002],[108.6871,-7.3995],[108.6891,-7.3927],[108.6841,-7.3858],[108.6852,-7.3798],[108.6785,-7.3754],[108.6831,-7.3719],[108.678,-7.3675],[108.676,-7.3573],[108.6719,-7.3576],[108.6672,-7.3535],[108.6619,-7.3525],[108.6616,-7.3587],[108.6538,-7.3772],[108.6505,-7.3873],[108.6391,-7.3852],[108.6368,-7.3814],[108.631,-7.3819],[108.6266,-7.3894],[108.6192,-7.3932],[108.6154,-7.406],[108.6071,-7.4032],[108.6021,-7.397],[108.596,-7.394],[108.5902,-7.398],[108.5913,-7.4034],[108.595,-7.4059],[108.5904,-7.4135],[108.5859,-7.4164],[108.5797,-7.4175],[108.5754,-7.4229],[108.5779,-7.4295],[108.5697,-7.4372],[108.5652,-7.4376],[108.5657,-7.4299],[108.5613,-7.4309],[108.559,-7.4255],[108.5559,-7.4253],[108.5542,-7.4195],[108.5491,-7.422],[108.5444,-7.4122],[108.5404,-7.4115],[108.5378,-7.4158],[108.5341,-7.4159],[108.5267,-7.412],[108.5248,-7.4068],[108.5181,-7.4076],[108.5044,-7.4014],[108.502,-7.3983],[108.4937,-7.3941],[108.486,-7.3932],[108.4798,-7.3866],[108.4754,-7.3863],[108.4695,-7.3818],[108.4726,-7.3749],[108.4681,-7.3717],[108.4737,-7.3679],[108.4698,-7.3625],[108.4771,-7.3614],[108.4796,-7.3566],[108.4849,-7.3563],[108.4893,-7.35],[108.4966,-7.349],[108.4959,-7.3536],[108.5025,-7.3582],[108.5054,-7.3545],[108.5114,-7.358],[108.5227,-7.3585],[108.5314,-7.3492],[108.534,-7.3487],[108.5359,-7.3431],[108.5413,-7.3442],[108.5506,-7.3416],[108.5514,-7.3356],[108.5556,-7.3317],[108.5538,-7.3252],[108.5594,-7.3265],[108.5628,-7.3215],[108.5629,-7.3142],[108.5594,-7.3067],[108.5639,-7.3028],[108.5604,-7.3004],[108.56,-7.2928],[108.5559,-7.2886],[108.5628,-7.2811],[108.567,-7.2787],[108.569,-7.2689],[108.5711,-7.2666],[108.5689,-7.2616],[108.5742,-7.2536],[108.5785,-7.2559],[108.5853,-7.2412],[108.5801,-7.237],[108.5842,-7.2308],[108.5826,-7.2241],[108.5852,-7.219],[108.5817,-7.2172],[108.5812,-7.2065],[108.5743,-7.2039],[108.5728,-7.2061],[108.5661,-7.2008],[108.563,-7.1943],[108.5577,-7.1928],[108.5558,-7.1909],[108.5454,-7.1893],[108.5423,-7.1864],[108.5331,-7.1846],[108.5278,-7.182],[108.5262,-7.1742],[108.5186,-7.1602],[108.5135,-7.1595],[108.5151,-7.1444],[108.5117,-7.1411],[108.5108,-7.1364],[108.5036,-7.1309],[108.4983,-7.1293],[108.4935,-7.1248],[108.4889,-7.1265],[108.4843,-7.1241],[108.4788,-7.1191],[108.4765,-7.1218],[108.4699,-7.1232],[108.4638,-7.1193],[108.4514,-7.1176],[108.4424,-7.1188],[108.439,-7.116],[108.4357,-7.1067],[108.4313,-7.1048],[108.4271,-7.096],[108.4212,-7.0943],[108.417,-7.0901],[108.4063,-7.0871],[108.399,-7.0797],[108.3936,-7.0792],[108.3928,-7.0763],[108.3857,-7.073]]}},{"type":"Feature","properties":{"mhid":"1332:173","alt_name":"KABUPATEN KUNINGAN","latitude":-7,"longitude":108.55,"sample_value":443},"geometry":{"type":"LineString","coordinates":[[108.7587,-6.9836],[108.7513,-6.9866],[108.7442,-6.987],[108.7419,-6.9902],[108.7431,-6.9987],[108.7387,-7.0053],[108.7355,-7.0061],[108.7266,-6.9982],[108.7185,-6.995],[108.7218,-6.99],[108.7243,-6.975],[108.7256,-6.9627],[108.7154,-6.9529],[108.7155,-6.9438],[108.707,-6.937],[108.7009,-6.9361],[108.6822,-6.9293],[108.6769,-6.9302],[108.6707,-6.9356],[108.663,-6.9404],[108.6553,-6.9362],[108.6524,-6.9316],[108.6623,-6.9243],[108.6658,-6.9172],[108.6531,-6.9037],[108.6472,-6.9054],[108.6427,-6.9102],[108.6374,-6.9112],[108.6138,-6.9019],[108.6091,-6.897],[108.6072,-6.9017],[108.6006,-6.9037],[108.5934,-6.8982],[108.5868,-6.8993],[108.5768,-6.8933],[108.5689,-6.8917],[108.5631,-6.8863],[108.5554,-6.8858],[108.5546,-6.8824],[108.5488,-6.8811],[108.5336,-6.88],[108.5368,-6.8734],[108.5335,-6.8703],[108.523,-6.8701],[108.5243,-6.8575],[108.5186,-6.859],[108.5099,-6.8565],[108.5081,-6.852],[108.5103,-6.848],[108.5087,-6.8406],[108.5118,-6.8293],[108.505,-6.8229],[108.5076,-6.8152],[108.5122,-6.8124],[108.5119,-6.7999],[108.5126,-6.7914],[108.5078,-6.7943],[108.4892,-6.7921],[108.486,-6.7892],[108.4819,-6.793],[108.4796,-6.7987],[108.4748,-6.7966],[108.4749,-6.7893],[108.471,-6.7874],[108.4685,-6.796],[108.4622,-6.7987],[108.455,-6.793],[108.4538,-6.7841],[108.4494,-6.784],[108.4315,-6.7864],[108.4211,-6.7841],[108.4115,-6.7875],[108.4127,-6.7929],[108.4098,-6.7979],[108.4133,-6.803],[108.407,-6.8163],[108.4068,-6.8215],[108.4024,-6.8255],[108.401,-6.8299],[108.4042,-6.8398],[108.4047,-6.8463],[108.4016,-6.8553],[108.4069,-6.8688],[108.4077,-6.8771],[108.4077,-6.8925],[108.4042,-6.9033],[108.4021,-6.9179],[108.4025,-6.9257],[108.4015,-6.9345],[108.3896,-6.9458],[108.3857,-6.9525],[108.3853,-6.9624],[108.388,-6.9662],[108.3878,-6.9738],[108.3855,-6.9837],[108.3829,-6.9995],[108.3833,-7.0078],[108.389,-7.0153],[108.3914,-7.0217],[108.3872,-7.0346],[108.3859,-7.0421],[108.3902,-7.0632],[108.3857,-7.073],[108.3928,-7.0763],[108.3936,-7.0792],[108.399,-7.0797],[108.4063,-7.0871],[108.417,-7.0901],[108.4212,-7.0943],[108.4271,-7.096],[108.4313,-7.1048],[108.4357,-7.1067],[108.439,-7.116],[108.4424,-7.1188],[108.4514,-7.1176],[108.4638,-7.1193],[108.4699,-7.1232],[108.4765,-7.1218],[108.4788,-7.1191],[108.4843,-7.1241],[108.4889,-7.1265],[108.4935,-7.1248],[108.4983,-7.1293],[108.5036,-7.1309],[108.5108,-7.1364],[108.5117,-7.1411],[108.5151,-7.1444],[108.5135,-7.1595],[108.5186,-7.1602],[108.5262,-7.1742],[108.5278,-7.182],[108.5331,-7.1846],[108.5423,-7.1864],[108.5454,-7.1893],[108.5558,-7.1909],[108.5577,-7.1928],[108.5608,-7.1914],[108.5602,-7.1859],[108.5659,-7.1803],[108.5622,-7.1714],[108.5682,-7.1651],[108.5786,-7.1649],[108.582,-7.1625],[108.5834,-7.1573],[108.5888,-7.1551],[108.5914,-7.1506],[108.6001,-7.1499],[108.604,-7.151],[108.6146,-7.147],[108.6188,-7.1413],[108.625,-7.1397],[108.6283,-7.1418],[108.6349,-7.1387],[108.6392,-7.1422],[108.6441,-7.1419],[108.648,-7.1441],[108.651,-7.1496],[108.6586,-7.1556],[108.6626,-7.1547],[108.6687,-7.1567],[108.6749,-7.1567],[108.6791,-7.1535],[108.6931,-7.1519],[108.6982,-7.1504],[108.7047,-7.1447],[108.7145,-7.134],[108.7163,-7.128],[108.7222,-7.1256],[108.7234,-7.1187],[108.7266,-7.115],[108.7328,-7.1139],[108.7372,-7.115],[108.7488,-7.1121],[108.7556,-7.1151],[108.7659,-7.1138],[108.7709,-7.1118],[108.7762,-7.0972],[108.7784,-7.094],[108.7744,-7.0893],[108.7746,-7.0829],[108.7779,-7.0762],[108.7837,-7.0698],[108.783,-7.0645],[108.7855,-7.0573],[108.7764,-7.0437],[108.7747,-7.0348],[108.7778,-7.0324],[108.7791,-7.0268],[108.7894,-7.0261],[108.791,-7.0241],[108.789,-7.0146],[108.7906,-7.0123],[108.7814,-7.004],[108.7834,-7.0008],[108.7805,-6.9959],[108.7745,-6.9922],[108.7699,-6.9939],[108.7616,-6.9886],[108.7587,-6.9836]]}},{"type":"Feature","properties":{"mhid":"1332:174","alt_name":"KABUPATEN CIREBON","latitude":-6.8,"longitude":108.56667,"sample_value":366},"geometry":{"type":"LineString","coordinates":[[108.5607,-6.6924],[108.5627,-6.6909],[108.5582,-6.6729],[108.5576,-6.6555],[108.5588,-6.6514],[108.5579,-6.6443],[108.5528,-6.6269],[108.5527,-6.6231],[108.5459,-6.603],[108.5433,-6.5908],[108.5431,-6.5724],[108.5437,-6.5672],[108.5475,-6.5592],[108.5446,-6.5403],[108.546,-6.5356],[108.5381,-6.5164],[108.5255,-6.5175],[108.5191,-6.522],[108.519,-6.5276],[108.5099,-6.5287],[108.5066,-6.5339],[108.5028,-6.534],[108.5009,-6.542],[108.4941,-6.5426],[108.4907,-6.5455],[108.491,-6.5548],[108.4883,-6.5584],[108.475,-6.5584],[108.4738,-6.564],[108.47,-6.5649],[108.4669,-6.5699],[108.4602,-6.5684],[108.4578,-6.5724],[108.4541,-6.5731],[108.4485,-6.5708],[108.4489,-6.5371],[108.4427,-6.5264],[108.4385,-6.5228],[108.4311,-6.5204],[108.4175,-6.5245],[108.4081,-6.5305],[108.4041,-6.5357],[108.3937,-6.5345],[108.3908,-6.5361],[108.3875,-6.5438],[108.3828,-6.5473],[108.3804,-6.5457],[108.3732,-6.5486],[108.3717,-6.5544],[108.3605,-6.5554],[108.3548,-6.5677],[108.3536,-6.5756],[108.3481,-6.5778],[108.3312,-6.5941],[108.3283,-6.5993],[108.3304,-6.6074],[108.3272,-6.6105],[108.3235,-6.6208],[108.3346,-6.6227],[108.3445,-6.6232],[108.3463,-6.6267],[108.3447,-6.6341],[108.3473,-6.6387],[108.344,-6.6484],[108.3434,-6.6549],[108.3399,-6.66],[108.3395,-6.6741],[108.3585,-6.6812],[108.3589,-6.6841],[108.3644,-6.6934],[108.3669,-6.694],[108.3689,-6.7022],[108.3653,-6.7036],[108.3636,-6.7098],[108.36,-6.7106],[108.3631,-6.7216],[108.369,-6.725],[108.3703,-6.7315],[108.3686,-6.7366],[108.3604,-6.7417],[108.3588,-6.7506],[108.3642,-6.7585],[108.3728,-6.7594],[108.3827,-6.7647],[108.3871,-6.7652],[108.3961,-6.7726],[108.399,-6.7736],[108.4023,-6.7845],[108.4043,-6.7878],[108.4115,-6.7875],[108.4211,-6.7841],[108.4315,-6.7864],[108.4494,-6.784],[108.4538,-6.7841],[108.455,-6.793],[108.4622,-6.7987],[108.4685,-6.796],[108.471,-6.7874],[108.4749,-6.7893],[108.4748,-6.7966],[108.4796,-6.7987],[108.4819,-6.793],[108.486,-6.7892],[108.4892,-6.7921],[108.5078,-6.7943],[108.5126,-6.7914],[108.5119,-6.7999],[108.5122,-6.8124],[108.5076,-6.8152],[108.505,-6.8229],[108.5118,-6.8293],[108.5087,-6.8406],[108.5103,-6.848],[108.5081,-6.852],[108.5099,-6.8565],[108.5186,-6.859],[108.5243,-6.8575],[108.523,-6.8701],[108.5335,-6.8703],[108.5368,-6.8734],[108.5336,-6.88],[108.5488,-6.8811],[108.5546,-6.8824],[108.5554,-6.8858],[108.5631,-6.8863],[108.5689,-6.8917],[108.5768,-6.8933],[108.5868,-6.8993],[108.5934,-6.8982],[108.6006,-6.9037],[108.6072,-6.9017],[108.6091,-6.897],[108.6138,-6.9019],[108.6374,-6.9112],[108.6427,-6.9102],[108.6472,-6.9054],[108.6531,-6.9037],[108.6658,-6.9172],[108.6623,-6.9243],[108.6524,-6.9316],[108.6553,-6.9362],[108.663,-6.9404],[108.6707,-6.9356],[108.6769,-6.9302],[108.6822,-6.9293],[108.7009,-6.9361],[108.707,-6.937],[108.7155,-6.9438],[108.7154,-6.9529],[108.7256,-6.9627],[108.7243,-6.975],[108.7218,-6.99],[108.7185,-6.995],[108.7266,-6.9982],[108.7355,-7.0061],[108.7387,-7.0053],[108.7431,-6.9987],[108.7419,-6.9902],[108.7442,-6.987],[108.7513,-6.9866],[108.7587,-6.9836],[108.7612,-6.9783],[108.7598,-6.969],[108.7593,-6.9529],[108.7641,-6.9392],[108.7613,-6.9336],[108.7528,-6.9224],[108.7543,-6.9171],[108.7611,-6.9116],[108.7583,-6.9073],[108.761,-6.9035],[108.7651,-6.9031],[108.7717,-6.8935],[108.7706,-6.8898],[108.7747,-6.8831],[108.7805,-6.8829],[108.7778,-6.8771],[108.7797,-6.8746],[108.7852,-6.8799],[108.7941,-6.8749],[108.8017,-6.869],[108.8029,-6.8644],[108.8086,-6.8563],[108.8097,-6.8517],[108.8193,-6.8347],[108.825,-6.8313],[108.8255,-6.8032],[108.8327,-6.8006],[108.8307,-6.7955],[108.8276,-6.7945],[108.8281,-6.7882],[108.8315,-6.7848],[108.8277,-6.7748],[108.8272,-6.7678],[108.8299,-6.7613],[108.8338,-6.758],[108.8254,-6.7505],[108.823,-6.7513],[108.8153,-6.7485],[108.8119,-6.7426],[108.8126,-6.7371],[108.8046,-6.7383],[108.7958,-6.7426],[108.8035,-6.7497],[108.8075,-6.7493],[108.8101,-6.7578],[108.8054,-6.7624],[108.8087,-6.7641],[108.8053,-6.7769],[108.8076,-6.781],[108.8061,-6.7856],[108.8003,-6.7912],[108.7915,-6.795],[108.7849,-6.8],[108.7627,-6.8118],[108.7549,-6.8129],[108.7499,-6.8158],[108.7404,-6.8133],[108.731,-6.8074],[108.7258,-6.8079],[108.7166,-6.8108],[108.7046,-6.8097],[108.6898,-6.8036],[108.6854,-6.8],[108.6793,-6.791],[108.6767,-6.7831],[108.6763,-6.7759],[108.6806,-6.7707],[108.6782,-6.7636],[108.6749,-6.7603],[108.6694,-6.7585],[108.6675,-6.7604],[108.66,-6.7588],[108.6532,-6.7533],[108.6503,-6.7549],[108.6505,-6.7599],[108.6372,-6.7695],[108.6294,-6.7719],[108.6262,-6.7714],[108.6177,-6.7657],[108.6117,-6.7685],[108.6014,-6.7621],[108.5952,-6.7534],[108.5949,-6.7454],[108.5872,-6.75],[108.5836,-6.747],[108.5754,-6.7502],[108.5701,-6.7503],[108.5665,-6.7547],[108.5607,-6.7575],[108.5585,-6.7652],[108.5558,-6.7656],[108.5545,-6.7783],[108.5554,-6.7805],[108.5499,-6.7929],[108.5429,-6.7952],[108.5415,-6.789],[108.5344,-6.7863],[108.5296,-6.7791],[108.5358,-6.7624],[108.5289,-6.7568],[108.53,-6.7526],[108.5225,-6.7461],[108.5192,-6.7414],[108.5195,-6.7355],[108.5349,-6.7298],[108.5356,-6.7262],[108.541,-6.7244],[108.5472,-6.7266],[108.5466,-6.7213],[108.5493,-6.7154],[108.5491,-6.7074],[108.5443,-6.7029],[108.5429,-6.6964],[108.5507,-6.7001],[108.5521,-6.6969],[108.5607,-6.6924]]}},{"type":"Feature","properties":{"mhid":"1332:175","alt_name":"KABUPATEN MAJALENGKA","latitude":-6.81667,"longitude":108.28333,"sample_value":393},"geometry":{"type":"LineString","coordinates":[[108.3235,-6.6208],[108.3196,-6.613],[108.3142,-6.6088],[108.3126,-6.617],[108.3093,-6.6236],[108.3053,-6.6239],[108.3041,-6.6193],[108.2942,-6.6128],[108.293,-6.6092],[108.2864,-6.6097],[108.286,-6.6144],[108.2939,-6.6154],[108.2907,-6.6222],[108.2808,-6.6206],[108.2752,-6.6165],[108.2724,-6.607],[108.2763,-6.5918],[108.2637,-6.5874],[108.2519,-6.5872],[108.25,-6.5856],[108.2101,-6.5732],[108.2074,-6.5734],[108.2,-6.5851],[108.1976,-6.5935],[108.1907,-6.6012],[108.1897,-6.608],[108.1848,-6.6106],[108.1735,-6.6057],[108.1659,-6.6092],[108.1646,-6.6135],[108.1583,-6.6122],[108.1486,-6.606],[108.1459,-6.5992],[108.1453,-6.5885],[108.1477,-6.578],[108.1435,-6.5768],[108.1421,-6.5653],[108.1279,-6.5658],[108.1289,-6.5595],[108.1322,-6.555],[108.1281,-6.5492],[108.1281,-6.5452],[108.1198,-6.5412],[108.1157,-6.5534],[108.112,-6.5526],[108.1066,-6.556],[108.1055,-6.5615],[108.0935,-6.5631],[108.0858,-6.5728],[108.0751,-6.575],[108.0747,-6.5856],[108.0727,-6.5876],[108.0741,-6.5962],[108.0699,-6.6039],[108.0689,-6.6089],[108.0716,-6.6109],[108.0671,-6.6164],[108.0607,-6.6177],[108.0476,-6.6281],[108.0469,-6.633],[108.0431,-6.6391],[108.0479,-6.6375],[108.0521,-6.6413],[108.0517,-6.646],[108.056,-6.653],[108.0635,-6.6583],[108.0672,-6.6632],[108.074,-6.6645],[108.0841,-6.6716],[108.0919,-6.6727],[108.0976,-6.6831],[108.1029,-6.6879],[108.1075,-6.6875],[108.111,-6.6985],[108.1181,-6.7054],[108.1259,-6.7038],[108.1283,-6.7066],[108.1382,-6.7084],[108.1439,-6.7106],[108.1491,-6.7189],[108.1607,-6.7239],[108.1639,-6.7281],[108.1602,-6.7331],[108.1568,-6.7408],[108.1522,-6.7443],[108.1532,-6.7513],[108.149,-6.7541],[108.1488,-6.7583],[108.1541,-6.7623],[108.1598,-6.7589],[108.1646,-6.7624],[108.1636,-6.7739],[108.1693,-6.7824],[108.1648,-6.7888],[108.1665,-6.7942],[108.1646,-6.7976],[108.1576,-6.796],[108.1543,-6.7979],[108.1529,-6.804],[108.1605,-6.8098],[108.1616,-6.8138],[108.1595,-6.8185],[108.1597,-6.8265],[108.1644,-6.8349],[108.1754,-6.8315],[108.1787,-6.8327],[108.1779,-6.8387],[108.1807,-6.8412],[108.1816,-6.8482],[108.1798,-6.8523],[108.1846,-6.8552],[108.1863,-6.8594],[108.1992,-6.8725],[108.1931,-6.8814],[108.1935,-6.8853],[108.2064,-6.8931],[108.2117,-6.8886],[108.2136,-6.8946],[108.2107,-6.9014],[108.2114,-6.9072],[108.214,-6.9122],[108.2115,-6.9147],[108.2137,-6.9187],[108.2176,-6.9194],[108.2173,-6.9314],[108.2073,-6.9353],[108.2057,-6.9406],[108.198,-6.9476],[108.191,-6.9481],[108.1885,-6.953],[108.1807,-6.9563],[108.1799,-6.961],[108.1716,-6.9689],[108.1713,-6.9771],[108.1678,-6.9835],[108.1684,-6.9872],[108.1635,-7.0007],[108.1572,-7.0073],[108.1534,-7.0129],[108.1522,-7.0201],[108.1452,-7.0247],[108.1433,-7.0317],[108.1335,-7.0392],[108.1459,-7.0479],[108.15,-7.0574],[108.1562,-7.0671],[108.1621,-7.0741],[108.1656,-7.0746],[108.1762,-7.0677],[108.1774,-7.0612],[108.1846,-7.0612],[108.1881,-7.0586],[108.1931,-7.0589],[108.1988,-7.0655],[108.2144,-7.0556],[108.2179,-7.0586],[108.2272,-7.0547],[108.2379,-7.0593],[108.2381,-7.0643],[108.2455,-7.0667],[108.2568,-7.0646],[108.2734,-7.0649],[108.2817,-7.0621],[108.2806,-7.0582],[108.2958,-7.0585],[108.3019,-7.0617],[108.3077,-7.0607],[108.313,-7.057],[108.3204,-7.0588],[108.3223,-7.0559],[108.3266,-7.0643],[108.3386,-7.0707],[108.3452,-7.0646],[108.3481,-7.0554],[108.36,-7.0516],[108.3682,-7.0598],[108.3778,-7.0599],[108.3812,-7.0637],[108.3802,-7.0677],[108.3824,-7.072],[108.3857,-7.073],[108.3902,-7.0632],[108.3859,-7.0421],[108.3872,-7.0346],[108.3914,-7.0217],[108.389,-7.0153],[108.3833,-7.0078],[108.3829,-6.9995],[108.3855,-6.9837],[108.3878,-6.9738],[108.388,-6.9662],[108.3853,-6.9624],[108.3857,-6.9525],[108.3896,-6.9458],[108.4015,-6.9345],[108.4025,-6.9257],[108.4021,-6.9179],[108.4042,-6.9033],[108.4077,-6.8925],[108.4077,-6.8771],[108.4069,-6.8688],[108.4016,-6.8553],[108.4047,-6.8463],[108.4042,-6.8398],[108.401,-6.8299],[108.4024,-6.8255],[108.4068,-6.8215],[108.407,-6.8163],[108.4133,-6.803],[108.4098,-6.7979],[108.4127,-6.7929],[108.4115,-6.7875],[108.4043,-6.7878],[108.4023,-6.7845],[108.399,-6.7736],[108.3961,-6.7726],[108.3871,-6.7652],[108.3827,-6.7647],[108.3728,-6.7594],[108.3642,-6.7585],[108.3588,-6.7506],[108.3604,-6.7417],[108.3686,-6.7366],[108.3703,-6.7315],[108.369,-6.725],[108.3631,-6.7216],[108.36,-6.7106],[108.3636,-6.7098],[108.3653,-6.7036],[108.3689,-6.7022],[108.3669,-6.694],[108.3644,-6.6934],[108.3589,-6.6841],[108.3585,-6.6812],[108.3395,-6.6741],[108.3399,-6.66],[108.3434,-6.6549],[108.344,-6.6484],[108.3473,-6.6387],[108.3447,-6.6341],[108.3463,-6.6267],[108.3445,-6.6232],[108.3346,-6.6227],[108.3235,-6.6208]]}},{"type":"Feature","properties":{"mhid":"1332:176","alt_name":"KABUPATEN SUMEDANG","latitude":-6.81667,"longitude":107.98333,"sample_value":249},"geometry":{"type":"LineString","coordinates":[[108.0431,-6.6391],[108.0345,-6.6434],[108.0349,-6.6473],[108.0291,-6.656],[108.0271,-6.6683],[108.0275,-6.6744],[108.0244,-6.6778],[108.0193,-6.6737],[108.0087,-6.6743],[107.9985,-6.668],[107.9942,-6.6675],[107.9887,-6.6695],[107.9863,-6.6631],[107.9766,-6.6538],[107.971,-6.6402],[107.9624,-6.6332],[107.9518,-6.6301],[107.9498,-6.6271],[107.9403,-6.6256],[107.9339,-6.6148],[107.9299,-6.6158],[107.9188,-6.6037],[107.9053,-6.5935],[107.8823,-6.5877],[107.875,-6.5844],[107.8677,-6.5831],[107.8556,-6.5789],[107.8487,-6.5819],[107.8486,-6.5873],[107.8568,-6.5999],[107.8507,-6.607],[107.853,-6.6147],[107.8518,-6.6192],[107.8549,-6.6265],[107.8506,-6.6325],[107.849,-6.6419],[107.8517,-6.6493],[107.8477,-6.6556],[107.8442,-6.6573],[107.8409,-6.6652],[107.8324,-6.6674],[107.8261,-6.671],[107.8181,-6.6697],[107.8107,-6.677],[107.8122,-6.6806],[107.8218,-6.6864],[107.8265,-6.6833],[107.8322,-6.685],[107.8351,-6.689],[107.8403,-6.6915],[107.8409,-6.6953],[107.8365,-6.7017],[107.8367,-6.7102],[107.8337,-6.7148],[107.8357,-6.7209],[107.8396,-6.7228],[107.8376,-6.7293],[107.8379,-6.7368],[107.8399,-6.7414],[107.8376,-6.7464],[107.8403,-6.7502],[107.8419,-6.7584],[107.839,-6.762],[107.8374,-6.7758],[107.8326,-6.7806],[107.8256,-6.7823],[107.8177,-6.7926],[107.8167,-6.7997],[107.8045,-6.8085],[107.7977,-6.8023],[107.7938,-6.8019],[107.7868,-6.8041],[107.7803,-6.8007],[107.7691,-6.8061],[107.7613,-6.8111],[107.75,-6.8128],[107.7446,-6.828],[107.7463,-6.8337],[107.7419,-6.8434],[107.7408,-6.855],[107.7431,-6.8615],[107.7432,-6.8708],[107.7445,-6.8764],[107.7488,-6.8837],[107.7586,-6.8918],[107.7604,-6.8971],[107.7576,-6.91],[107.7598,-6.9178],[107.7576,-6.9294],[107.7573,-6.9394],[107.759,-6.9439],[107.7541,-6.9508],[107.7552,-6.956],[107.7599,-6.9528],[107.7706,-6.955],[107.7742,-6.9595],[107.7813,-6.9551],[107.7826,-6.9589],[107.8009,-6.9648],[107.8117,-6.9665],[107.8265,-6.9672],[107.8308,-6.9646],[107.8424,-6.9695],[107.8478,-6.9697],[107.854,-6.9676],[107.8621,-6.9678],[107.87,-6.9631],[107.8762,-6.9622],[107.8899,-6.9639],[107.892,-6.9595],[107.9004,-6.9531],[107.9147,-6.9528],[107.915,-6.947],[107.9268,-6.952],[107.9314,-6.9559],[107.9388,-6.9563],[107.9429,-6.9531],[107.9457,-6.9573],[107.9534,-6.9583],[107.9577,-6.9603],[107.9672,-6.9592],[107.9686,-6.9626],[107.9766,-6.9694],[107.9784,-6.9728],[107.9862,-6.979],[108,-6.9836],[108.0044,-6.9809],[108.0076,-6.9824],[108.0159,-6.9801],[108.0249,-6.9848],[108.0254,-6.9874],[108.0321,-6.9921],[108.0349,-6.9914],[108.043,-6.9965],[108.048,-6.9928],[108.0553,-6.9962],[108.0585,-6.9945],[108.0641,-6.9951],[108.0724,-6.9833],[108.0752,-6.9815],[108.0832,-6.9828],[108.0902,-6.9818],[108.0915,-6.9914],[108.0933,-6.994],[108.0922,-6.9998],[108.0941,-7.0071],[108.0995,-7.0146],[108.1001,-7.0195],[108.1093,-7.0261],[108.115,-7.0329],[108.1291,-7.0408],[108.1335,-7.0392],[108.1433,-7.0317],[108.1452,-7.0247],[108.1522,-7.0201],[108.1534,-7.0129],[108.1572,-7.0073],[108.1635,-7.0007],[108.1684,-6.9872],[108.1678,-6.9835],[108.1713,-6.9771],[108.1716,-6.9689],[108.1799,-6.961],[108.1807,-6.9563],[108.1885,-6.953],[108.191,-6.9481],[108.198,-6.9476],[108.2057,-6.9406],[108.2073,-6.9353],[108.2173,-6.9314],[108.2176,-6.9194],[108.2137,-6.9187],[108.2115,-6.9147],[108.214,-6.9122],[108.2114,-6.9072],[108.2107,-6.9014],[108.2136,-6.8946],[108.2117,-6.8886],[108.2064,-6.8931],[108.1935,-6.8853],[108.1931,-6.8814],[108.1992,-6.8725],[108.1863,-6.8594],[108.1846,-6.8552],[108.1798,-6.8523],[108.1816,-6.8482],[108.1807,-6.8412],[108.1779,-6.8387],[108.1787,-6.8327],[108.1754,-6.8315],[108.1644,-6.8349],[108.1597,-6.8265],[108.1595,-6.8185],[108.1616,-6.8138],[108.1605,-6.8098],[108.1529,-6.804],[108.1543,-6.7979],[108.1576,-6.796],[108.1646,-6.7976],[108.1665,-6.7942],[108.1648,-6.7888],[108.1693,-6.7824],[108.1636,-6.7739],[108.1646,-6.7624],[108.1598,-6.7589],[108.1541,-6.7623],[108.1488,-6.7583],[108.149,-6.7541],[108.1532,-6.7513],[108.1522,-6.7443],[108.1568,-6.7408],[108.1602,-6.7331],[108.1639,-6.7281],[108.1607,-6.7239],[108.1491,-6.7189],[108.1439,-6.7106],[108.1382,-6.7084],[108.1283,-6.7066],[108.1259,-6.7038],[108.1181,-6.7054],[108.111,-6.6985],[108.1075,-6.6875],[108.1029,-6.6879],[108.0976,-6.6831],[108.0919,-6.6727],[108.0841,-6.6716],[108.074,-6.6645],[108.0672,-6.6632],[108.0635,-6.6583],[108.056,-6.653],[108.0517,-6.646],[108.0521,-6.6413],[108.0479,-6.6375],[108.0431,-6.6391]]}},{"type":"Feature","properties":{"mhid":"1332:177","alt_name":"KABUPATEN INDRAMAYU","latitude":-6.45,"longitude":108.16667,"sample_value":59},"geometry":{"type":"LineString","coordinates":[[108.5381,-6.5164],[108.5356,-6.4985],[108.5395,-6.4836],[108.513,-6.4722],[108.5015,-6.4666],[108.4818,-6.4555],[108.4727,-6.4496],[108.4552,-6.435],[108.4492,-6.4311],[108.432,-6.4137],[108.4193,-6.3991],[108.4071,-6.3843],[108.3928,-6.3613],[108.3854,-6.3562],[108.3779,-6.3429],[108.3735,-6.3319],[108.3673,-6.3111],[108.3673,-6.302],[108.3712,-6.296],[108.3749,-6.296],[108.3712,-6.2886],[108.3639,-6.2663],[108.36,-6.2455],[108.3451,-6.2448],[108.3407,-6.2463],[108.3419,-6.2502],[108.3413,-6.2592],[108.339,-6.2644],[108.3389,-6.2727],[108.3347,-6.2747],[108.3269,-6.2681],[108.3285,-6.2642],[108.3134,-6.2559],[108.3102,-6.2534],[108.2998,-6.2488],[108.2882,-6.2455],[108.2777,-6.2491],[108.2673,-6.2489],[108.2531,-6.2455],[108.2382,-6.2382],[108.24,-6.2436],[108.2352,-6.2448],[108.2298,-6.2419],[108.2247,-6.2489],[108.2198,-6.2496],[108.2157,-6.2375],[108.2119,-6.2396],[108.2072,-6.2384],[108.2047,-6.2325],[108.1997,-6.2296],[108.1963,-6.2306],[108.1893,-6.2294],[108.1885,-6.2338],[108.1972,-6.237],[108.2029,-6.2418],[108.2035,-6.2488],[108.2055,-6.2521],[108.2071,-6.2616],[108.2127,-6.2651],[108.2063,-6.2685],[108.2057,-6.2731],[108.2016,-6.2771],[108.1944,-6.279],[108.1918,-6.2818],[108.1935,-6.2913],[108.19,-6.2956],[108.1811,-6.2944],[108.1683,-6.3067],[108.1641,-6.3073],[108.158,-6.3118],[108.1501,-6.3154],[108.1368,-6.3187],[108.1344,-6.3213],[108.133,-6.3298],[108.1299,-6.3344],[108.1186,-6.3335],[108.1074,-6.334],[108.1032,-6.331],[108.1029,-6.3273],[108.0981,-6.3254],[108.0914,-6.3255],[108.0875,-6.3204],[108.0772,-6.3194],[108.0659,-6.3169],[108.0459,-6.3106],[108.0331,-6.3034],[108.0287,-6.3027],[108.0069,-6.288],[107.9994,-6.2843],[107.9919,-6.2791],[107.9749,-6.2712],[107.9686,-6.2669],[107.9614,-6.2638],[107.9484,-6.2568],[107.9363,-6.2528],[107.9307,-6.2523],[107.9212,-6.2488],[107.9198,-6.2502],[107.9237,-6.252],[107.9264,-6.2564],[107.9259,-6.2617],[107.9234,-6.2657],[107.918,-6.2692],[107.9207,-6.2768],[107.9253,-6.28],[107.9219,-6.2827],[107.9241,-6.2936],[107.9218,-6.2956],[107.9235,-6.3032],[107.9217,-6.3102],[107.9281,-6.3112],[107.9301,-6.3186],[107.9278,-6.3303],[107.9239,-6.3369],[107.9197,-6.3404],[107.9169,-6.3479],[107.9203,-6.3511],[107.9233,-6.3602],[107.9146,-6.3705],[107.914,-6.3769],[107.9097,-6.3766],[107.899,-6.3887],[107.8949,-6.3967],[107.8987,-6.4014],[107.8914,-6.4104],[107.8964,-6.4266],[107.8912,-6.4352],[107.8926,-6.4391],[107.89,-6.4433],[107.8946,-6.4478],[107.8909,-6.4499],[107.888,-6.4598],[107.8951,-6.4627],[107.8952,-6.472],[107.8992,-6.4779],[107.8967,-6.4799],[107.8987,-6.4852],[107.9029,-6.4824],[107.9097,-6.4853],[107.9134,-6.4845],[107.9146,-6.4923],[107.9064,-6.5027],[107.9068,-6.5071],[107.911,-6.5069],[107.9133,-6.5015],[107.916,-6.5014],[107.9198,-6.5086],[107.9162,-6.5246],[107.9119,-6.5281],[107.9114,-6.5342],[107.9063,-6.5427],[107.8967,-6.5473],[107.8969,-6.5526],[107.8929,-6.5574],[107.8871,-6.5553],[107.8804,-6.5621],[107.8812,-6.5662],[107.8737,-6.5666],[107.8672,-6.5686],[107.8614,-6.5679],[107.8516,-6.5715],[107.8509,-6.574],[107.8556,-6.5789],[107.8677,-6.5831],[107.875,-6.5844],[107.8823,-6.5877],[107.9053,-6.5935],[107.9188,-6.6037],[107.9299,-6.6158],[107.9339,-6.6148],[107.9403,-6.6256],[107.9498,-6.6271],[107.9518,-6.6301],[107.9624,-6.6332],[107.971,-6.6402],[107.9766,-6.6538],[107.9863,-6.6631],[107.9887,-6.6695],[107.9942,-6.6675],[107.9985,-6.668],[108.0087,-6.6743],[108.0193,-6.6737],[108.0244,-6.6778],[108.0275,-6.6744],[108.0271,-6.6683],[108.0291,-6.656],[108.0349,-6.6473],[108.0345,-6.6434],[108.0431,-6.6391],[108.0469,-6.633],[108.0476,-6.6281],[108.0607,-6.6177],[108.0671,-6.6164],[108.0716,-6.6109],[108.0689,-6.6089],[108.0699,-6.6039],[108.0741,-6.5962],[108.0727,-6.5876],[108.0747,-6.5856],[108.0751,-6.575],[108.0858,-6.5728],[108.0935,-6.5631],[108.1055,-6.5615],[108.1066,-6.556],[108.112,-6.5526],[108.1157,-6.5534],[108.1198,-6.5412],[108.1281,-6.5452],[108.1281,-6.5492],[108.1322,-6.555],[108.1289,-6.5595],[108.1279,-6.5658],[108.1421,-6.5653],[108.1435,-6.5768],[108.1477,-6.578],[108.1453,-6.5885],[108.1459,-6.5992],[108.1486,-6.606],[108.1583,-6.6122],[108.1646,-6.6135],[108.1659,-6.6092],[108.1735,-6.6057],[108.1848,-6.6106],[108.1897,-6.608],[108.1907,-6.6012],[108.1976,-6.5935],[108.2,-6.5851],[108.2074,-6.5734],[108.2101,-6.5732],[108.25,-6.5856],[108.2519,-6.5872],[108.2637,-6.5874],[108.2763,-6.5918],[108.2724,-6.607],[108.2752,-6.6165],[108.2808,-6.6206],[108.2907,-6.6222],[108.2939,-6.6154],[108.286,-6.6144],[108.2864,-6.6097],[108.293,-6.6092],[108.2942,-6.6128],[108.3041,-6.6193],[108.3053,-6.6239],[108.3093,-6.6236],[108.3126,-6.617],[108.3142,-6.6088],[108.3196,-6.613],[108.3235,-6.6208],[108.3272,-6.6105],[108.3304,-6.6074],[108.3283,-6.5993],[108.3312,-6.5941],[108.3481,-6.5778],[108.3536,-6.5756],[108.3548,-6.5677],[108.3605,-6.5554],[108.3717,-6.5544],[108.3732,-6.5486],[108.3804,-6.5457],[108.3828,-6.5473],[108.3875,-6.5438],[108.3908,-6.5361],[108.3937,-6.5345],[108.4041,-6.5357],[108.4081,-6.5305],[108.4175,-6.5245],[108.4311,-6.5204],[108.4385,-6.5228],[108.4427,-6.5264],[108.4489,-6.5371],[108.4485,-6.5708],[108.4541,-6.5731],[108.4578,-6.5724],[108.4602,-6.5684],[108.4669,-6.5699],[108.47,-6.5649],[108.4738,-6.564],[108.475,-6.5584],[108.4883,-6.5584],[108.491,-6.5548],[108.4907,-6.5455],[108.4941,-6.5426],[108.5009,-6.542],[108.5028,-6.534],[108.5066,-6.5339],[108.5099,-6.5287],[108.519,-6.5276],[108.5191,-6.522],[108.5255,-6.5175],[108.5381,-6.5164]]}},{"type":"Feature","properties":{"mhid":"1332:178","alt_name":"KABUPATEN SUBANG","latitude":-6.50833,"longitude":107.7025,"sample_value":822},"geometry":{"type":"LineString","coordinates":[[107.9198,-6.2502],[107.9122,-6.2482],[107.9035,-6.243],[107.8899,-6.2375],[107.8896,-6.2324],[107.8953,-6.2281],[107.8947,-6.2243],[107.8883,-6.2205],[107.8864,-6.2133],[107.8904,-6.2087],[107.9015,-6.2147],[107.9023,-6.2086],[107.8964,-6.2038],[107.8988,-6.198],[107.8962,-6.1918],[107.8889,-6.1925],[107.888,-6.1999],[107.8756,-6.1985],[107.8737,-6.2122],[107.8688,-6.2109],[107.8633,-6.2142],[107.8587,-6.215],[107.8552,-6.2097],[107.8507,-6.1986],[107.8531,-6.1909],[107.8447,-6.1895],[107.8399,-6.1902],[107.8359,-6.1885],[107.8218,-6.1873],[107.815,-6.1908],[107.8154,-6.1972],[107.8068,-6.1995],[107.8013,-6.2045],[107.793,-6.2039],[107.7842,-6.2067],[107.7734,-6.212],[107.7652,-6.2144],[107.7602,-6.2179],[107.7608,-6.2206],[107.7535,-6.2288],[107.7481,-6.2263],[107.7403,-6.2294],[107.7407,-6.2333],[107.7338,-6.237],[107.7276,-6.2378],[107.715,-6.235],[107.7025,-6.2276],[107.6977,-6.2229],[107.6942,-6.2244],[107.6904,-6.237],[107.6868,-6.2407],[107.679,-6.2447],[107.6701,-6.2463],[107.6641,-6.2455],[107.6561,-6.241],[107.6456,-6.2287],[107.6413,-6.2225],[107.6412,-6.2166],[107.6306,-6.2239],[107.6256,-6.2244],[107.6223,-6.2221],[107.613,-6.2319],[107.6009,-6.2375],[107.6025,-6.2431],[107.6017,-6.2487],[107.5991,-6.2531],[107.5925,-6.2509],[107.587,-6.2519],[107.5821,-6.2561],[107.5826,-6.2637],[107.5785,-6.2675],[107.5789,-6.2803],[107.5861,-6.2949],[107.5849,-6.2983],[107.5802,-6.3006],[107.579,-6.3059],[107.5827,-6.3121],[107.5802,-6.3136],[107.579,-6.3223],[107.5758,-6.3287],[107.5704,-6.3325],[107.5703,-6.3413],[107.5631,-6.3504],[107.5621,-6.3585],[107.5582,-6.3646],[107.5553,-6.3647],[107.5495,-6.3692],[107.5482,-6.3797],[107.5372,-6.389],[107.5398,-6.3961],[107.5394,-6.4041],[107.5371,-6.405],[107.5349,-6.4149],[107.5294,-6.4184],[107.526,-6.4326],[107.5267,-6.437],[107.5307,-6.4417],[107.5423,-6.4461],[107.5441,-6.4557],[107.5427,-6.4597],[107.5451,-6.4694],[107.5511,-6.4707],[107.5519,-6.4738],[107.5574,-6.4744],[107.5604,-6.4784],[107.5583,-6.4826],[107.5624,-6.4853],[107.5639,-6.4901],[107.5599,-6.4909],[107.5624,-6.4959],[107.5606,-6.4985],[107.5614,-6.5098],[107.5607,-6.5145],[107.5553,-6.5184],[107.5601,-6.5207],[107.5636,-6.5276],[107.5582,-6.5315],[107.5591,-6.5358],[107.5561,-6.5413],[107.5603,-6.5426],[107.5623,-6.5473],[107.5587,-6.5498],[107.5578,-6.562],[107.5543,-6.5669],[107.5608,-6.5673],[107.5634,-6.5709],[107.5691,-6.5741],[107.5685,-6.5786],[107.5755,-6.5827],[107.5786,-6.5819],[107.5827,-6.589],[107.5828,-6.5938],[107.5861,-6.5968],[107.5892,-6.6046],[107.5843,-6.6088],[107.5831,-6.615],[107.5849,-6.6174],[107.5839,-6.6249],[107.58,-6.6301],[107.5799,-6.6358],[107.5837,-6.6404],[107.595,-6.6507],[107.6016,-6.654],[107.6021,-6.6635],[107.596,-6.6772],[107.5914,-6.6816],[107.5888,-6.6883],[107.5919,-6.6914],[107.5914,-6.6993],[107.5948,-6.7055],[107.591,-6.709],[107.5883,-6.7153],[107.5937,-6.7211],[107.5955,-6.7292],[107.6,-6.7314],[107.6042,-6.7492],[107.601,-6.7539],[107.6006,-6.7611],[107.6106,-6.7592],[107.6185,-6.7601],[107.6197,-6.7641],[107.6274,-6.7737],[107.6426,-6.7743],[107.6452,-6.7729],[107.6547,-6.7727],[107.6625,-6.7741],[107.6693,-6.7772],[107.6774,-6.786],[107.6783,-6.7888],[107.688,-6.7983],[107.7023,-6.7928],[107.7076,-6.7929],[107.7108,-6.7972],[107.722,-6.8005],[107.726,-6.8044],[107.7265,-6.8108],[107.7335,-6.8143],[107.75,-6.8128],[107.7613,-6.8111],[107.7691,-6.8061],[107.7803,-6.8007],[107.7868,-6.8041],[107.7938,-6.8019],[107.7977,-6.8023],[107.8045,-6.8085],[107.8167,-6.7997],[107.8177,-6.7926],[107.8256,-6.7823],[107.8326,-6.7806],[107.8374,-6.7758],[107.839,-6.762],[107.8419,-6.7584],[107.8403,-6.7502],[107.8376,-6.7464],[107.8399,-6.7414],[107.8379,-6.7368],[107.8376,-6.7293],[107.8396,-6.7228],[107.8357,-6.7209],[107.8337,-6.7148],[107.8367,-6.7102],[107.8365,-6.7017],[107.8409,-6.6953],[107.8403,-6.6915],[107.8351,-6.689],[107.8322,-6.685],[107.8265,-6.6833],[107.8218,-6.6864],[107.8122,-6.6806],[107.8107,-6.677],[107.8181,-6.6697],[107.8261,-6.671],[107.8324,-6.6674],[107.8409,-6.6652],[107.8442,-6.6573],[107.8477,-6.6556],[107.8517,-6.6493],[107.849,-6.6419],[107.8506,-6.6325],[107.8549,-6.6265],[107.8518,-6.6192],[107.853,-6.6147],[107.8507,-6.607],[107.8568,-6.5999],[107.8486,-6.5873],[107.8487,-6.5819],[107.8556,-6.5789],[107.8509,-6.574],[107.8516,-6.5715],[107.8614,-6.5679],[107.8672,-6.5686],[107.8737,-6.5666],[107.8812,-6.5662],[107.8804,-6.5621],[107.8871,-6.5553],[107.8929,-6.5574],[107.8969,-6.5526],[107.8967,-6.5473],[107.9063,-6.5427],[107.9114,-6.5342],[107.9119,-6.5281],[107.9162,-6.5246],[107.9198,-6.5086],[107.916,-6.5014],[107.9133,-6.5015],[107.911,-6.5069],[107.9068,-6.5071],[107.9064,-6.5027],[107.9146,-6.4923],[107.9134,-6.4845],[107.9097,-6.4853],[107.9029,-6.4824],[107.8987,-6.4852],[107.8967,-6.4799],[107.8992,-6.4779],[107.8952,-6.472],[107.8951,-6.4627],[107.888,-6.4598],[107.8909,-6.4499],[107.8946,-6.4478],[107.89,-6.4433],[107.8926,-6.4391],[107.8912,-6.4352],[107.8964,-6.4266],[107.8914,-6.4104],[107.8987,-6.4014],[107.8949,-6.3967],[107.899,-6.3887],[107.9097,-6.3766],[107.914,-6.3769],[107.9146,-6.3705],[107.9233,-6.3602],[107.9203,-6.3511],[107.9169,-6.3479],[107.9197,-6.3404],[107.9239,-6.3369],[107.9278,-6.3303],[107.9301,-6.3186],[107.9281,-6.3112],[107.9217,-6.3102],[107.9235,-6.3032],[107.9218,-6.2956],[107.9241,-6.2936],[107.9219,-6.2827],[107.9253,-6.28],[107.9207,-6.2768],[107.918,-6.2692],[107.9234,-6.2657],[107.9259,-6.2617],[107.9264,-6.2564],[107.9237,-6.252],[107.9198,-6.2502]]}},{"type":"Feature","properties":{"mhid":"1332:179","alt_name":"KABUPATEN PURWAKARTA","latitude":-6.58333,"longitude":107.45,"sample_value":687},"geometry":{"type":"LineString","coordinates":[[107.5294,-6.4184],[107.5192,-6.4181],[107.5117,-6.4202],[107.508,-6.4129],[107.5027,-6.4081],[107.4917,-6.4152],[107.4876,-6.4219],[107.4806,-6.4268],[107.4805,-6.4298],[107.4742,-6.4324],[107.471,-6.4296],[107.4618,-6.4266],[107.4587,-6.4308],[107.4566,-6.4374],[107.4519,-6.4441],[107.4449,-6.4445],[107.4367,-6.4489],[107.4351,-6.4581],[107.4323,-6.4598],[107.4228,-6.4614],[107.405,-6.4656],[107.399,-6.4661],[107.385,-6.4691],[107.3732,-6.4683],[107.3729,-6.4748],[107.3811,-6.4812],[107.3818,-6.4873],[107.3898,-6.4925],[107.3903,-6.4998],[107.3765,-6.4968],[107.3683,-6.497],[107.3639,-6.4955],[107.3511,-6.4857],[107.3429,-6.4881],[107.3353,-6.4854],[107.3283,-6.4844],[107.3058,-6.491],[107.301,-6.4956],[107.2891,-6.5017],[107.2855,-6.5048],[107.2843,-6.5157],[107.2859,-6.5198],[107.2839,-6.5299],[107.2778,-6.5353],[107.2726,-6.536],[107.2665,-6.5497],[107.265,-6.5553],[107.2582,-6.5594],[107.2538,-6.5654],[107.2504,-6.5734],[107.2388,-6.5761],[107.225,-6.5846],[107.2205,-6.5907],[107.2271,-6.6021],[107.235,-6.6073],[107.2386,-6.6162],[107.256,-6.6301],[107.2627,-6.6342],[107.2646,-6.6395],[107.2636,-6.6433],[107.2647,-6.653],[107.2612,-6.6575],[107.2584,-6.6695],[107.2594,-6.68],[107.2561,-6.6862],[107.2474,-6.6911],[107.2499,-6.696],[107.2641,-6.6991],[107.2677,-6.7028],[107.2747,-6.7067],[107.2843,-6.707],[107.285,-6.701],[107.2954,-6.7081],[107.3,-6.7069],[107.3006,-6.7116],[107.2972,-6.7139],[107.3023,-6.7208],[107.3099,-6.7199],[107.3128,-6.7162],[107.3195,-6.7202],[107.3215,-6.718],[107.3271,-6.6952],[107.3305,-6.6896],[107.3361,-6.6874],[107.338,-6.6902],[107.3436,-6.6894],[107.3678,-6.7007],[107.3737,-6.6911],[107.3801,-6.6903],[107.3868,-6.6938],[107.3934,-6.6955],[107.3998,-6.6948],[107.4074,-6.689],[107.4167,-6.6907],[107.4251,-6.7],[107.4352,-6.7021],[107.4432,-6.6997],[107.4541,-6.7031],[107.4641,-6.7108],[107.4666,-6.7163],[107.4738,-6.7205],[107.4764,-6.7252],[107.4879,-6.7355],[107.4945,-6.7349],[107.5071,-6.7392],[107.5094,-6.7424],[107.5143,-6.7423],[107.5224,-6.7477],[107.5287,-6.7603],[107.5317,-6.7631],[107.5423,-6.7653],[107.5493,-6.773],[107.5546,-6.7748],[107.5584,-6.7729],[107.563,-6.7739],[107.5688,-6.771],[107.5721,-6.7718],[107.5745,-6.7765],[107.5784,-6.7758],[107.5757,-6.7618],[107.5725,-6.7621],[107.5726,-6.7458],[107.5686,-6.7444],[107.571,-6.7366],[107.5777,-6.7297],[107.5848,-6.7268],[107.5955,-6.7292],[107.5937,-6.7211],[107.5883,-6.7153],[107.591,-6.709],[107.5948,-6.7055],[107.5914,-6.6993],[107.5919,-6.6914],[107.5888,-6.6883],[107.5914,-6.6816],[107.596,-6.6772],[107.6021,-6.6635],[107.6016,-6.654],[107.595,-6.6507],[107.5837,-6.6404],[107.5799,-6.6358],[107.58,-6.6301],[107.5839,-6.6249],[107.5849,-6.6174],[107.5831,-6.615],[107.5843,-6.6088],[107.5892,-6.6046],[107.5861,-6.5968],[107.5828,-6.5938],[107.5827,-6.589],[107.5786,-6.5819],[107.5755,-6.5827],[107.5685,-6.5786],[107.5691,-6.5741],[107.5634,-6.5709],[107.5608,-6.5673],[107.5543,-6.5669],[107.5578,-6.562],[107.5587,-6.5498],[107.5623,-6.5473],[107.5603,-6.5426],[107.5561,-6.5413],[107.5591,-6.5358],[107.5582,-6.5315],[107.5636,-6.5276],[107.5601,-6.5207],[107.5553,-6.5184],[107.5607,-6.5145],[107.5614,-6.5098],[107.5606,-6.4985],[107.5624,-6.4959],[107.5599,-6.4909],[107.5639,-6.4901],[107.5624,-6.4853],[107.5583,-6.4826],[107.5604,-6.4784],[107.5574,-6.4744],[107.5519,-6.4738],[107.5511,-6.4707],[107.5451,-6.4694],[107.5427,-6.4597],[107.5441,-6.4557],[107.5423,-6.4461],[107.5307,-6.4417],[107.5267,-6.437],[107.526,-6.4326],[107.5294,-6.4184]]}},{"type":"Feature","properties":{"mhid":"1332:180","alt_name":"KABUPATEN KARAWANG","latitude":-6.26667,"longitude":107.41667,"sample_value":584},"geometry":{"type":"LineString","coordinates":[[107.6412,-6.2166],[107.6308,-6.2035],[107.6254,-6.1926],[107.6221,-6.1883],[107.6124,-6.1908],[107.5961,-6.1896],[107.5848,-6.1899],[107.5764,-6.188],[107.5693,-6.1833],[107.564,-6.1815],[107.5536,-6.1806],[107.5407,-6.1782],[107.5281,-6.1731],[107.5098,-6.1627],[107.4895,-6.1571],[107.4799,-6.1528],[107.4665,-6.1429],[107.4605,-6.1356],[107.4523,-6.121],[107.4496,-6.1126],[107.4446,-6.1018],[107.4333,-6.0908],[107.422,-6.0702],[107.4112,-6.0541],[107.4025,-6.036],[107.3945,-6.0247],[107.3746,-6.0002],[107.36,-5.9854],[107.3511,-5.9772],[107.3407,-5.9696],[107.3292,-5.9649],[107.3158,-5.9607],[107.306,-5.9585],[107.2851,-5.9589],[107.2771,-5.9614],[107.2662,-5.9631],[107.2548,-5.9665],[107.223,-5.9749],[107.2057,-5.978],[107.2045,-5.9821],[107.1894,-5.9872],[107.1811,-5.9887],[107.1706,-5.9875],[107.1655,-5.988],[107.1485,-5.984],[107.1393,-5.98],[107.1327,-5.976],[107.1259,-5.9698],[107.1135,-5.9554],[107.1109,-5.9539],[107.1004,-5.9362],[107.0939,-5.9559],[107.097,-5.9608],[107.0897,-5.9683],[107.091,-5.9727],[107.0873,-5.9794],[107.0897,-5.9839],[107.0854,-5.9866],[107.0877,-5.9975],[107.0855,-6.0029],[107.0911,-6.0049],[107.0945,-6.0146],[107.1003,-6.0147],[107.1013,-6.0174],[107.0942,-6.0234],[107.0961,-6.0279],[107.1006,-6.0255],[107.1056,-6.0289],[107.1121,-6.0298],[107.1131,-6.0385],[107.1194,-6.0404],[107.1211,-6.0466],[107.1285,-6.0546],[107.1351,-6.0496],[107.1368,-6.0556],[107.1322,-6.0564],[107.1304,-6.0607],[107.1357,-6.0629],[107.1384,-6.0579],[107.1431,-6.0708],[107.1488,-6.0725],[107.1535,-6.072],[107.1586,-6.0675],[107.1719,-6.0759],[107.175,-6.0806],[107.1789,-6.0812],[107.1857,-6.0766],[107.1884,-6.0815],[107.187,-6.0853],[107.1903,-6.0899],[107.2026,-6.0935],[107.2117,-6.0997],[107.2216,-6.1039],[107.2283,-6.1027],[107.2375,-6.1044],[107.2424,-6.1014],[107.2482,-6.1037],[107.248,-6.1157],[107.2515,-6.1162],[107.2625,-6.111],[107.2689,-6.1142],[107.27,-6.1278],[107.2728,-6.1305],[107.2771,-6.1274],[107.2812,-6.1276],[107.28,-6.1342],[107.2838,-6.1378],[107.281,-6.1448],[107.2858,-6.1487],[107.2896,-6.1412],[107.2888,-6.1557],[107.2812,-6.1573],[107.2785,-6.1611],[107.2809,-6.1726],[107.2869,-6.1776],[107.286,-6.1833],[107.2906,-6.1871],[107.2924,-6.1915],[107.2908,-6.2006],[107.2966,-6.2029],[107.2935,-6.2083],[107.2922,-6.2161],[107.289,-6.2175],[107.2839,-6.216],[107.2733,-6.2158],[107.2749,-6.2225],[107.2836,-6.2255],[107.2821,-6.2289],[107.2744,-6.2336],[107.2695,-6.2333],[107.2745,-6.2412],[107.2778,-6.2542],[107.2738,-6.2575],[107.2761,-6.267],[107.2667,-6.2738],[107.2654,-6.2788],[107.2619,-6.282],[107.2615,-6.2861],[107.2555,-6.2902],[107.2537,-6.2949],[107.25,-6.2928],[107.2457,-6.2996],[107.242,-6.2967],[107.2359,-6.2975],[107.2334,-6.3021],[107.2249,-6.3053],[107.225,-6.3137],[107.2203,-6.3133],[107.2191,-6.3255],[107.216,-6.3277],[107.2208,-6.3346],[107.2239,-6.3363],[107.2264,-6.3497],[107.2223,-6.3519],[107.2159,-6.3496],[107.21,-6.3665],[107.2051,-6.3702],[107.2056,-6.3767],[107.2092,-6.3795],[107.2191,-6.3806],[107.2214,-6.3848],[107.2199,-6.3967],[107.2221,-6.4004],[107.2208,-6.4084],[107.2173,-6.4077],[107.2124,-6.4103],[107.2122,-6.4172],[107.2023,-6.4138],[107.2037,-6.4199],[107.1977,-6.4249],[107.2037,-6.4261],[107.2066,-6.4341],[107.202,-6.4361],[107.207,-6.4411],[107.2118,-6.4496],[107.2127,-6.455],[107.2169,-6.4614],[107.2073,-6.4681],[107.2015,-6.4614],[107.1962,-6.4609],[107.1945,-6.4642],[107.1893,-6.4644],[107.1814,-6.4684],[107.1827,-6.4736],[107.1808,-6.4781],[107.1756,-6.4789],[107.1717,-6.482],[107.1739,-6.4852],[107.1743,-6.4908],[107.17,-6.4921],[107.1651,-6.5033],[107.1647,-6.5109],[107.1676,-6.5115],[107.1693,-6.5228],[107.1713,-6.5232],[107.1765,-6.5329],[107.1762,-6.5382],[107.1789,-6.5478],[107.1786,-6.5517],[107.1839,-6.5551],[107.1852,-6.5596],[107.1897,-6.5618],[107.1908,-6.5719],[107.1931,-6.5783],[107.2051,-6.587],[107.2135,-6.5905],[107.2205,-6.5907],[107.225,-6.5846],[107.2388,-6.5761],[107.2504,-6.5734],[107.2538,-6.5654],[107.2582,-6.5594],[107.265,-6.5553],[107.2665,-6.5497],[107.2726,-6.536],[107.2778,-6.5353],[107.2839,-6.5299],[107.2859,-6.5198],[107.2843,-6.5157],[107.2855,-6.5048],[107.2891,-6.5017],[107.301,-6.4956],[107.3058,-6.491],[107.3283,-6.4844],[107.3353,-6.4854],[107.3429,-6.4881],[107.3511,-6.4857],[107.3639,-6.4955],[107.3683,-6.497],[107.3765,-6.4968],[107.3903,-6.4998],[107.3898,-6.4925],[107.3818,-6.4873],[107.3811,-6.4812],[107.3729,-6.4748],[107.3732,-6.4683],[107.385,-6.4691],[107.399,-6.4661],[107.405,-6.4656],[107.4228,-6.4614],[107.4323,-6.4598],[107.4351,-6.4581],[107.4367,-6.4489],[107.4449,-6.4445],[107.4519,-6.4441],[107.4566,-6.4374],[107.4587,-6.4308],[107.4618,-6.4266],[107.471,-6.4296],[107.4742,-6.4324],[107.4805,-6.4298],[107.4806,-6.4268],[107.4876,-6.4219],[107.4917,-6.4152],[107.5027,-6.4081],[107.508,-6.4129],[107.5117,-6.4202],[107.5192,-6.4181],[107.5294,-6.4184],[107.5349,-6.4149],[107.5371,-6.405],[107.5394,-6.4041],[107.5398,-6.3961],[107.5372,-6.389],[107.5482,-6.3797],[107.5495,-6.3692],[107.5553,-6.3647],[107.5582,-6.3646],[107.5621,-6.3585],[107.5631,-6.3504],[107.5703,-6.3413],[107.5704,-6.3325],[107.5758,-6.3287],[107.579,-6.3223],[107.5802,-6.3136],[107.5827,-6.3121],[107.579,-6.3059],[107.5802,-6.3006],[107.5849,-6.2983],[107.5861,-6.2949],[107.5789,-6.2803],[107.5785,-6.2675],[107.5826,-6.2637],[107.5821,-6.2561],[107.587,-6.2519],[107.5925,-6.2509],[107.5991,-6.2531],[107.6017,-6.2487],[107.6025,-6.2431],[107.6009,-6.2375],[107.613,-6.2319],[107.6223,-6.2221],[107.6256,-6.2244],[107.6306,-6.2239],[107.6412,-6.2166]]}},{"type":"Feature","properties":{"mhid":"1332:181","alt_name":"KABUPATEN BEKASI","latitude":-6.24667,"longitude":107.10833,"sample_value":986},"geometry":{"type":"LineString","coordinates":[[107.1004,-5.9362],[107.0853,-5.9359],[107.0768,-5.9344],[107.0636,-5.9306],[107.0521,-5.9245],[107.0418,-5.9204],[107.0386,-5.9162],[107.0312,-5.9138],[107.0242,-5.9145],[107.0164,-5.9177],[107.0109,-5.9234],[106.9998,-5.9329],[106.9914,-5.9362],[106.9957,-5.9404],[107.0066,-5.9404],[107.0112,-5.9459],[107.0158,-5.958],[107.0167,-5.9709],[107.0122,-5.9806],[107.0078,-5.9982],[107.001,-6.0025],[106.995,-6.0021],[106.9881,-6.0045],[106.9862,-6.01],[106.9928,-6.0145],[106.9938,-6.0201],[106.9929,-6.028],[107.0014,-6.0247],[107.01,-6.0238],[107.0152,-6.0296],[107.0054,-6.0383],[107.0083,-6.0418],[107.0048,-6.0501],[106.9987,-6.048],[106.992,-6.0526],[106.9983,-6.0589],[106.9999,-6.0665],[107.0028,-6.0698],[107.0166,-6.0781],[107.0069,-6.0818],[107.0025,-6.0805],[106.9971,-6.0814],[106.99,-6.0873],[106.9814,-6.0894],[106.969,-6.0907],[106.9688,-6.0998],[106.9704,-6.1046],[106.9697,-6.1206],[106.9707,-6.1399],[106.9722,-6.1445],[106.9719,-6.1546],[106.971,-6.1624],[106.9716,-6.1722],[107.0107,-6.1724],[107.007,-6.1777],[107.0075,-6.1849],[107.0059,-6.1959],[107.0149,-6.1951],[107.0325,-6.1984],[107.0341,-6.2047],[107.0323,-6.2082],[107.0338,-6.2124],[107.0311,-6.2145],[107.0327,-6.2187],[107.0304,-6.2267],[107.0349,-6.2266],[107.0387,-6.2324],[107.0425,-6.2328],[107.0415,-6.2462],[107.0351,-6.2468],[107.0226,-6.2574],[107.02,-6.2636],[107.0164,-6.2655],[107.0178,-6.2713],[107.0166,-6.2762],[107.0249,-6.279],[107.029,-6.2786],[107.0314,-6.2821],[107.0378,-6.284],[107.0401,-6.2879],[107.041,-6.2955],[107.0383,-6.3063],[107.0395,-6.3092],[107.0371,-6.3141],[107.0371,-6.3215],[107.0304,-6.3254],[107.0289,-6.3304],[107.0216,-6.3282],[107.0163,-6.3313],[107.0159,-6.3389],[107.0172,-6.3536],[107.0068,-6.3626],[107.0039,-6.3597],[107.0046,-6.3554],[106.9941,-6.3554],[106.9927,-6.3648],[106.994,-6.3671],[106.993,-6.3705],[106.9958,-6.3786],[107.002,-6.3792],[107.0054,-6.3775],[107.0065,-6.3837],[107.0056,-6.3894],[107.0111,-6.3919],[107.0085,-6.3959],[107.0103,-6.4026],[107.019,-6.4002],[107.0231,-6.4042],[107.0232,-6.4096],[107.0305,-6.4115],[107.0351,-6.4059],[107.0411,-6.407],[107.0461,-6.4028],[107.0483,-6.3964],[107.0515,-6.3943],[107.0562,-6.3973],[107.0587,-6.4015],[107.0543,-6.4123],[107.0565,-6.4178],[107.0572,-6.4242],[107.0557,-6.4276],[107.0593,-6.4317],[107.0808,-6.4441],[107.0799,-6.4488],[107.0883,-6.4514],[107.0922,-6.4513],[107.1006,-6.4542],[107.106,-6.4585],[107.1074,-6.4623],[107.117,-6.4621],[107.1204,-6.459],[107.126,-6.4592],[107.1233,-6.4671],[107.1348,-6.4661],[107.1408,-6.4716],[107.1465,-6.4716],[107.1563,-6.4754],[107.1621,-6.4792],[107.1717,-6.482],[107.1756,-6.4789],[107.1808,-6.4781],[107.1827,-6.4736],[107.1814,-6.4684],[107.1893,-6.4644],[107.1945,-6.4642],[107.1962,-6.4609],[107.2015,-6.4614],[107.2073,-6.4681],[107.2169,-6.4614],[107.2127,-6.455],[107.2118,-6.4496],[107.207,-6.4411],[107.202,-6.4361],[107.2066,-6.4341],[107.2037,-6.4261],[107.1977,-6.4249],[107.2037,-6.4199],[107.2023,-6.4138],[107.2122,-6.4172],[107.2124,-6.4103],[107.2173,-6.4077],[107.2208,-6.4084],[107.2221,-6.4004],[107.2199,-6.3967],[107.2214,-6.3848],[107.2191,-6.3806],[107.2092,-6.3795],[107.2056,-6.3767],[107.2051,-6.3702],[107.21,-6.3665],[107.2159,-6.3496],[107.2223,-6.3519],[107.2264,-6.3497],[107.2239,-6.3363],[107.2208,-6.3346],[107.216,-6.3277],[107.2191,-6.3255],[107.2203,-6.3133],[107.225,-6.3137],[107.2249,-6.3053],[107.2334,-6.3021],[107.2359,-6.2975],[107.242,-6.2967],[107.2457,-6.2996],[107.25,-6.2928],[107.2537,-6.2949],[107.2555,-6.2902],[107.2615,-6.2861],[107.2619,-6.282],[107.2654,-6.2788],[107.2667,-6.2738],[107.2761,-6.267],[107.2738,-6.2575],[107.2778,-6.2542],[107.2745,-6.2412],[107.2695,-6.2333],[107.2744,-6.2336],[107.2821,-6.2289],[107.2836,-6.2255],[107.2749,-6.2225],[107.2733,-6.2158],[107.2839,-6.216],[107.289,-6.2175],[107.2922,-6.2161],[107.2935,-6.2083],[107.2966,-6.2029],[107.2908,-6.2006],[107.2924,-6.1915],[107.2906,-6.1871],[107.286,-6.1833],[107.2869,-6.1776],[107.2809,-6.1726],[107.2785,-6.1611],[107.2812,-6.1573],[107.2888,-6.1557],[107.2896,-6.1412],[107.2858,-6.1487],[107.281,-6.1448],[107.2838,-6.1378],[107.28,-6.1342],[107.2812,-6.1276],[107.2771,-6.1274],[107.2728,-6.1305],[107.27,-6.1278],[107.2689,-6.1142],[107.2625,-6.111],[107.2515,-6.1162],[107.248,-6.1157],[107.2482,-6.1037],[107.2424,-6.1014],[107.2375,-6.1044],[107.2283,-6.1027],[107.2216,-6.1039],[107.2117,-6.0997],[107.2026,-6.0935],[107.1903,-6.0899],[107.187,-6.0853],[107.1884,-6.0815],[107.1857,-6.0766],[107.1789,-6.0812],[107.175,-6.0806],[107.1719,-6.0759],[107.1586,-6.0675],[107.1535,-6.072],[107.1488,-6.0725],[107.1431,-6.0708],[107.1384,-6.0579],[107.1357,-6.0629],[107.1304,-6.0607],[107.1322,-6.0564],[107.1368,-6.0556],[107.1351,-6.0496],[107.1285,-6.0546],[107.1211,-6.0466],[107.1194,-6.0404],[107.1131,-6.0385],[107.1121,-6.0298],[107.1056,-6.0289],[107.1006,-6.0255],[107.0961,-6.0279],[107.0942,-6.0234],[107.1013,-6.0174],[107.1003,-6.0147],[107.0945,-6.0146],[107.0911,-6.0049],[107.0855,-6.0029],[107.0877,-5.9975],[107.0854,-5.9866],[107.0897,-5.9839],[107.0873,-5.9794],[107.091,-5.9727],[107.0897,-5.9683],[107.097,-5.9608],[107.0939,-5.9559],[107.1004,-5.9362]]}},{"type":"Feature","properties":{"mhid":"1332:182","alt_name":"KABUPATEN BANDUNG BARAT","latitude":-6.83333,"longitude":107.48333,"sample_value":992},"geometry":{"type":"LineString","coordinates":[[107.5955,-6.7292],[107.5848,-6.7268],[107.5777,-6.7297],[107.571,-6.7366],[107.5686,-6.7444],[107.5726,-6.7458],[107.5725,-6.7621],[107.5757,-6.7618],[107.5784,-6.7758],[107.5745,-6.7765],[107.5721,-6.7718],[107.5688,-6.771],[107.563,-6.7739],[107.5584,-6.7729],[107.5546,-6.7748],[107.5493,-6.773],[107.5423,-6.7653],[107.5317,-6.7631],[107.5287,-6.7603],[107.5224,-6.7477],[107.5143,-6.7423],[107.5094,-6.7424],[107.5071,-6.7392],[107.4945,-6.7349],[107.4879,-6.7355],[107.4764,-6.7252],[107.4738,-6.7205],[107.4666,-6.7163],[107.4641,-6.7108],[107.4541,-6.7031],[107.4432,-6.6997],[107.4352,-6.7021],[107.4251,-6.7],[107.4167,-6.6907],[107.4074,-6.689],[107.3998,-6.6948],[107.3934,-6.6955],[107.3868,-6.6938],[107.3801,-6.6903],[107.3737,-6.6911],[107.3678,-6.7007],[107.3623,-6.703],[107.354,-6.6976],[107.3488,-6.6973],[107.3431,-6.7046],[107.3387,-6.718],[107.3332,-6.7205],[107.327,-6.7276],[107.3322,-6.7302],[107.3325,-6.7332],[107.3282,-6.7375],[107.331,-6.7442],[107.3361,-6.7488],[107.3377,-6.7571],[107.3288,-6.7613],[107.3272,-6.7696],[107.321,-6.769],[107.3174,-6.7658],[107.3264,-6.7602],[107.3224,-6.7568],[107.311,-6.7609],[107.3142,-6.7529],[107.3099,-6.7514],[107.3046,-6.7528],[107.3031,-6.7468],[107.3003,-6.744],[107.2947,-6.7453],[107.3012,-6.7499],[107.3008,-6.7539],[107.2951,-6.7597],[107.2937,-6.7651],[107.2981,-6.7687],[107.293,-6.7793],[107.2937,-6.7828],[107.3044,-6.7945],[107.3093,-6.7953],[107.3156,-6.7999],[107.3173,-6.8089],[107.3213,-6.8127],[107.3163,-6.8192],[107.3165,-6.823],[107.3217,-6.824],[107.3234,-6.8302],[107.3224,-6.8389],[107.3275,-6.8471],[107.3294,-6.8558],[107.3341,-6.8531],[107.338,-6.8576],[107.3426,-6.8525],[107.3483,-6.8524],[107.3502,-6.856],[107.3469,-6.8605],[107.3492,-6.8662],[107.3471,-6.8704],[107.3412,-6.8754],[107.3431,-6.8793],[107.3407,-6.8866],[107.3333,-6.8868],[107.3304,-6.8885],[107.3232,-6.8879],[107.3141,-6.8972],[107.3151,-6.9001],[107.3066,-6.9077],[107.2953,-6.91],[107.2914,-6.9162],[107.2833,-6.9233],[107.2784,-6.9255],[107.2743,-6.9244],[107.265,-6.928],[107.2554,-6.9271],[107.2328,-6.9387],[107.2274,-6.94],[107.2218,-6.939],[107.2151,-6.9429],[107.2193,-6.9493],[107.2097,-6.9566],[107.2024,-6.9603],[107.2006,-6.9633],[107.1903,-6.9681],[107.1907,-6.9723],[107.1863,-6.9736],[107.1849,-6.9827],[107.1863,-6.9893],[107.1861,-7.0033],[107.1887,-7.0128],[107.1944,-7.0187],[107.194,-7.0266],[107.1914,-7.0282],[107.1873,-7.0445],[107.1827,-7.0587],[107.1876,-7.0602],[107.2003,-7.0561],[107.2168,-7.0565],[107.2239,-7.0584],[107.2226,-7.0521],[107.2245,-7.05],[107.2344,-7.0497],[107.2403,-7.0468],[107.249,-7.0505],[107.2527,-7.0487],[107.2578,-7.0545],[107.2595,-7.0604],[107.2652,-7.0624],[107.2662,-7.0669],[107.275,-7.0748],[107.2839,-7.0787],[107.2853,-7.0848],[107.2927,-7.0877],[107.2993,-7.0839],[107.3014,-7.0875],[107.3075,-7.0915],[107.3109,-7.0971],[107.3118,-7.1081],[107.3148,-7.107],[107.3254,-7.1097],[107.3341,-7.1084],[107.3397,-7.1106],[107.3463,-7.1082],[107.3591,-7.1143],[107.3624,-7.1185],[107.3678,-7.1147],[107.3828,-7.1196],[107.3868,-7.122],[107.395,-7.1193],[107.4024,-7.1113],[107.4073,-7.1091],[107.4088,-7.0959],[107.4071,-7.0914],[107.4221,-7.0752],[107.4194,-7.0623],[107.4281,-7.0552],[107.4327,-7.0549],[107.448,-7.0484],[107.454,-7.0517],[107.4669,-7.0525],[107.4697,-7.0542],[107.4755,-7.0514],[107.4753,-7.0404],[107.4774,-7.039],[107.481,-7.0289],[107.4817,-7.0238],[107.4753,-7.0182],[107.4771,-7.0129],[107.475,-7.0071],[107.4789,-7.0026],[107.4865,-7],[107.4877,-6.9943],[107.486,-6.9853],[107.4881,-6.9798],[107.4989,-6.9777],[107.505,-6.9815],[107.5083,-6.9767],[107.5112,-6.9672],[107.5188,-6.9637],[107.5186,-6.9568],[107.5243,-6.9514],[107.5261,-6.9444],[107.5315,-6.9393],[107.5226,-6.9355],[107.5231,-6.9272],[107.5251,-6.9207],[107.5186,-6.9139],[107.5208,-6.9114],[107.5168,-6.9056],[107.511,-6.9012],[107.5102,-6.8983],[107.5145,-6.8921],[107.5169,-6.8923],[107.5178,-6.8836],[107.5201,-6.8777],[107.5248,-6.8739],[107.5272,-6.865],[107.5307,-6.8637],[107.5359,-6.8585],[107.5377,-6.8534],[107.5323,-6.8501],[107.5372,-6.8436],[107.539,-6.8345],[107.5453,-6.8318],[107.5503,-6.8335],[107.5492,-6.8399],[107.555,-6.841],[107.5509,-6.8482],[107.5588,-6.8558],[107.5666,-6.8616],[107.5618,-6.8729],[107.5646,-6.8756],[107.5707,-6.8772],[107.5715,-6.8822],[107.575,-6.8735],[107.5768,-6.8654],[107.5842,-6.8596],[107.5892,-6.8572],[107.5946,-6.843],[107.6008,-6.8423],[107.6032,-6.846],[107.6022,-6.8536],[107.6046,-6.8591],[107.6131,-6.8491],[107.6185,-6.8517],[107.6213,-6.8557],[107.6248,-6.8501],[107.6286,-6.8557],[107.6313,-6.8562],[107.6426,-6.8504],[107.644,-6.8464],[107.6519,-6.842],[107.6557,-6.8363],[107.6605,-6.8322],[107.6723,-6.8324],[107.6847,-6.8301],[107.6939,-6.8297],[107.6949,-6.8362],[107.7002,-6.8371],[107.7034,-6.8403],[107.7128,-6.8333],[107.7176,-6.8347],[107.7189,-6.8251],[107.7246,-6.8185],[107.7265,-6.8108],[107.726,-6.8044],[107.722,-6.8005],[107.7108,-6.7972],[107.7076,-6.7929],[107.7023,-6.7928],[107.688,-6.7983],[107.6783,-6.7888],[107.6774,-6.786],[107.6693,-6.7772],[107.6625,-6.7741],[107.6547,-6.7727],[107.6452,-6.7729],[107.6426,-6.7743],[107.6274,-6.7737],[107.6197,-6.7641],[107.6185,-6.7601],[107.6106,-6.7592],[107.6006,-6.7611],[107.601,-6.7539],[107.6042,-6.7492],[107.6,-6.7314],[107.5955,-6.7292]]}},{"type":"Feature","properties":{"mhid":"1332:183","alt_name":"KABUPATEN PANGANDARAN","latitude":-7.6673,"longitude":108.64037,"sample_value":592},"geometry":{"type":"LineString","coordinates":[[108.716,-7.4663],[108.7078,-7.4698],[108.7023,-7.4762],[108.6962,-7.4676],[108.6967,-7.4611],[108.6875,-7.4613],[108.6833,-7.4633],[108.6681,-7.4599],[108.6646,-7.4633],[108.6593,-7.4634],[108.657,-7.4681],[108.649,-7.4676],[108.6475,-7.4694],[108.648,-7.4818],[108.65,-7.4881],[108.6571,-7.4942],[108.6566,-7.5115],[108.6538,-7.524],[108.654,-7.5292],[108.6484,-7.5349],[108.6482,-7.5379],[108.6433,-7.5407],[108.6352,-7.5428],[108.6292,-7.5485],[108.6223,-7.5501],[108.6226,-7.555],[108.6161,-7.5536],[108.6069,-7.5539],[108.5979,-7.5619],[108.5912,-7.563],[108.5839,-7.5608],[108.5773,-7.5666],[108.5712,-7.5663],[108.5691,-7.5639],[108.5582,-7.5613],[108.5495,-7.5569],[108.5491,-7.5628],[108.5447,-7.5698],[108.5326,-7.5699],[108.5288,-7.5711],[108.5277,-7.5648],[108.5211,-7.5591],[108.5221,-7.5508],[108.5209,-7.5443],[108.5252,-7.5389],[108.5367,-7.5363],[108.5273,-7.5293],[108.5219,-7.5267],[108.5132,-7.5286],[108.5001,-7.5343],[108.4957,-7.5308],[108.4851,-7.5361],[108.4842,-7.5343],[108.4762,-7.5315],[108.4747,-7.5241],[108.4704,-7.5197],[108.4607,-7.5175],[108.4557,-7.5102],[108.4449,-7.5101],[108.4361,-7.5073],[108.4295,-7.5005],[108.4263,-7.4949],[108.4194,-7.4917],[108.4162,-7.4883],[108.4135,-7.4953],[108.407,-7.4923],[108.4071,-7.4893],[108.4012,-7.4844],[108.4015,-7.4788],[108.3907,-7.477],[108.3846,-7.4794],[108.372,-7.4792],[108.3624,-7.4891],[108.3561,-7.4904],[108.352,-7.4931],[108.3516,-7.5005],[108.3354,-7.5084],[108.3329,-7.5158],[108.3344,-7.5299],[108.3322,-7.5403],[108.3287,-7.5451],[108.3275,-7.5508],[108.3338,-7.5508],[108.3534,-7.562],[108.3528,-7.5646],[108.3564,-7.5727],[108.357,-7.5781],[108.3556,-7.5847],[108.3559,-7.5915],[108.3588,-7.5971],[108.3587,-7.6102],[108.3551,-7.6237],[108.357,-7.6353],[108.3534,-7.6387],[108.3551,-7.6446],[108.3617,-7.6454],[108.3605,-7.6544],[108.3651,-7.6609],[108.3614,-7.6623],[108.3547,-7.6716],[108.3531,-7.6785],[108.3534,-7.684],[108.3466,-7.6807],[108.338,-7.6811],[108.3315,-7.6921],[108.3243,-7.6882],[108.3206,-7.6927],[108.3167,-7.6928],[108.3163,-7.6973],[108.3225,-7.7009],[108.3238,-7.7036],[108.3238,-7.7128],[108.3303,-7.7098],[108.3304,-7.7164],[108.3237,-7.7201],[108.3209,-7.7147],[108.3147,-7.7129],[108.3122,-7.7182],[108.3213,-7.7217],[108.319,-7.7262],[108.3128,-7.7249],[108.3147,-7.7323],[108.3194,-7.7424],[108.3236,-7.7467],[108.3226,-7.7596],[108.325,-7.7786],[108.3234,-7.7827],[108.3194,-7.7845],[108.3234,-7.7944],[108.3304,-7.798],[108.3293,-7.8039],[108.3394,-7.8097],[108.3405,-7.8166],[108.345,-7.8183],[108.3532,-7.8162],[108.3615,-7.8164],[108.3758,-7.8133],[108.4039,-7.8162],[108.435,-7.8221],[108.4429,-7.8232],[108.4509,-7.8226],[108.4539,-7.8137],[108.4651,-7.8122],[108.477,-7.8072],[108.483,-7.8026],[108.4828,-7.7989],[108.4889,-7.7962],[108.4976,-7.7904],[108.5007,-7.7838],[108.5061,-7.7666],[108.508,-7.7637],[108.5058,-7.7573],[108.5049,-7.7497],[108.4994,-7.7495],[108.4973,-7.741],[108.4995,-7.7341],[108.498,-7.7242],[108.5019,-7.7152],[108.5136,-7.7017],[108.5224,-7.6974],[108.5304,-7.6956],[108.5312,-7.6931],[108.5454,-7.6911],[108.562,-7.6866],[108.5882,-7.684],[108.5909,-7.682],[108.5972,-7.6849],[108.6286,-7.6855],[108.6425,-7.6883],[108.6507,-7.6934],[108.6551,-7.698],[108.6566,-7.706],[108.6515,-7.7096],[108.649,-7.7143],[108.6512,-7.7183],[108.6655,-7.7274],[108.674,-7.726],[108.6781,-7.7221],[108.6743,-7.715],[108.6706,-7.7161],[108.6639,-7.7079],[108.6591,-7.7036],[108.6627,-7.6943],[108.6703,-7.6877],[108.6799,-7.6815],[108.6942,-7.6766],[108.7101,-7.6767],[108.7256,-7.6797],[108.7377,-7.683],[108.7416,-7.6866],[108.7496,-7.6896],[108.7554,-7.6947],[108.7612,-7.6958],[108.7631,-7.6914],[108.7733,-7.6907],[108.7741,-7.6845],[108.7809,-7.6851],[108.7795,-7.6918],[108.7801,-7.6973],[108.7842,-7.6966],[108.79,-7.6923],[108.7939,-7.6934],[108.7961,-7.6873],[108.7932,-7.6824],[108.794,-7.679],[108.8001,-7.6764],[108.7995,-7.6679],[108.7912,-7.6703],[108.7852,-7.6664],[108.7853,-7.6589],[108.7792,-7.6581],[108.7781,-7.6527],[108.7722,-7.6554],[108.7648,-7.6501],[108.7642,-7.646],[108.7549,-7.6396],[108.7558,-7.6359],[108.75,-7.6345],[108.7483,-7.6317],[108.7477,-7.6223],[108.7455,-7.6192],[108.7407,-7.6184],[108.7319,-7.6124],[108.7372,-7.6105],[108.738,-7.6026],[108.7411,-7.6008],[108.7404,-7.5941],[108.7443,-7.5914],[108.747,-7.5941],[108.7506,-7.5919],[108.7486,-7.5866],[108.7521,-7.5853],[108.7511,-7.5766],[108.748,-7.5755],[108.7485,-7.5677],[108.7546,-7.5586],[108.7514,-7.5534],[108.7513,-7.5454],[108.7448,-7.5411],[108.7442,-7.5345],[108.7372,-7.5175],[108.7355,-7.505],[108.7334,-7.5011],[108.7234,-7.4893],[108.72,-7.4805],[108.7202,-7.472],[108.716,-7.4663]]}},{"type":"Feature","properties":{"mhid":"1332:184","alt_name":"KOTA BOGOR","latitude":-6.59167,"longitude":106.8,"sample_value":806},"geometry":{"type":"LineString","coordinates":[[106.7789,-6.5117],[106.7724,-6.5125],[106.7667,-6.517],[106.7644,-6.523],[106.7663,-6.5273],[106.7645,-6.531],[106.7645,-6.5459],[106.7604,-6.5471],[106.7562,-6.5517],[106.7521,-6.551],[106.7466,-6.5436],[106.741,-6.5427],[106.735,-6.5598],[106.7364,-6.5663],[106.7416,-6.5701],[106.7411,-6.5754],[106.7442,-6.5763],[106.7492,-6.5723],[106.7564,-6.5773],[106.7627,-6.5835],[106.7664,-6.5919],[106.7737,-6.5994],[106.7754,-6.6067],[106.7787,-6.6072],[106.7837,-6.616],[106.7843,-6.6211],[106.7901,-6.628],[106.7854,-6.6362],[106.783,-6.645],[106.7716,-6.6537],[106.7749,-6.6559],[106.7868,-6.6592],[106.7949,-6.6493],[106.7994,-6.6457],[106.8084,-6.6524],[106.8089,-6.6564],[106.8156,-6.6613],[106.8184,-6.6663],[106.819,-6.6719],[106.8304,-6.6792],[106.8434,-6.6788],[106.8481,-6.6762],[106.8453,-6.6605],[106.8485,-6.6516],[106.8474,-6.6431],[106.8394,-6.632],[106.8325,-6.6152],[106.8314,-6.6027],[106.8322,-6.5971],[106.8391,-6.5763],[106.8359,-6.5749],[106.8348,-6.5681],[106.8299,-6.5606],[106.8292,-6.5505],[106.8242,-6.5455],[106.8185,-6.5428],[106.8183,-6.5385],[106.8114,-6.5393],[106.8089,-6.5461],[106.8054,-6.5454],[106.8056,-6.5403],[106.7952,-6.5471],[106.7919,-6.5435],[106.7932,-6.5326],[106.7895,-6.5277],[106.7899,-6.5225],[106.7864,-6.5148],[106.7789,-6.5117]]}},{"type":"Feature","properties":{"mhid":"1332:185","alt_name":"KOTA SUKABUMI","latitude":-6.95,"longitude":106.93333,"sample_value":41},"geometry":{"type":"LineString","coordinates":[[106.9148,-6.8924],[106.9107,-6.8929],[106.909,-6.8986],[106.9098,-6.9035],[106.907,-6.9112],[106.9014,-6.912],[106.9005,-6.9332],[106.9074,-6.9385],[106.9084,-6.9451],[106.9109,-6.9492],[106.9103,-6.9543],[106.9015,-6.9565],[106.8847,-6.957],[106.8746,-6.9656],[106.8713,-6.9723],[106.8755,-6.9763],[106.8798,-6.9733],[106.8848,-6.974],[106.8893,-6.9695],[106.896,-6.9723],[106.8982,-6.9779],[106.9134,-6.9772],[106.9232,-6.9726],[106.9319,-6.9653],[106.9466,-6.9691],[106.9557,-6.9585],[106.9556,-6.9546],[106.9599,-6.9415],[106.9578,-6.9254],[106.9591,-6.9192],[106.954,-6.9197],[106.9522,-6.9161],[106.9543,-6.9122],[106.954,-6.9048],[106.9467,-6.9075],[106.9342,-6.9024],[106.9289,-6.9041],[106.923,-6.8995],[106.9196,-6.9023],[106.9148,-6.8924]]}},{"type":"Feature","properties":{"mhid":"1332:186","alt_name":"KOTA BANDUNG","latitude":-6.9175,"longitude":107.62444,"sample_value":750},"geometry":{"type":"LineString","coordinates":[[107.6286,-6.8557],[107.6248,-6.8501],[107.6213,-6.8557],[107.6185,-6.8517],[107.6131,-6.8491],[107.6046,-6.8591],[107.6022,-6.8536],[107.6032,-6.846],[107.6008,-6.8423],[107.5946,-6.843],[107.5892,-6.8572],[107.5842,-6.8596],[107.5768,-6.8654],[107.575,-6.8735],[107.5715,-6.8822],[107.5724,-6.8863],[107.5763,-6.8907],[107.5635,-6.8882],[107.5561,-6.889],[107.569,-6.9103],[107.5651,-6.9135],[107.5652,-6.9297],[107.5641,-6.9329],[107.5503,-6.9262],[107.5473,-6.9267],[107.547,-6.93],[107.5605,-6.9486],[107.5639,-6.9518],[107.5799,-6.9605],[107.5894,-6.9627],[107.6157,-6.9609],[107.6285,-6.9646],[107.6395,-6.9659],[107.6506,-6.9648],[107.6643,-6.9674],[107.6709,-6.9675],[107.6924,-6.9697],[107.6994,-6.9692],[107.706,-6.9669],[107.716,-6.9617],[107.7156,-6.956],[107.7126,-6.954],[107.7134,-6.9468],[107.7159,-6.9458],[107.7255,-6.9288],[107.7262,-6.9176],[107.7343,-6.9085],[107.7365,-6.9093],[107.7393,-6.9021],[107.7344,-6.8982],[107.7261,-6.895],[107.7235,-6.8986],[107.714,-6.9009],[107.7146,-6.8903],[107.7076,-6.8897],[107.7041,-6.8936],[107.7006,-6.9016],[107.7047,-6.9032],[107.7001,-6.9083],[107.6951,-6.9033],[107.6846,-6.8956],[107.6807,-6.8911],[107.678,-6.8926],[107.668,-6.8909],[107.6637,-6.8837],[107.6565,-6.8943],[107.6492,-6.8933],[107.6459,-6.8885],[107.6434,-6.893],[107.6378,-6.887],[107.6295,-6.8806],[107.6303,-6.8714],[107.6274,-6.8712],[107.6252,-6.8583],[107.6286,-6.8557]]}},{"type":"Feature","properties":{"mhid":"1332:187","alt_name":"KOTA CIREBON","latitude":-6.75,"longitude":108.55,"sample_value":657},"geometry":{"type":"LineString","coordinates":[[108.5949,-6.7454],[108.5902,-6.7432],[108.5857,-6.7369],[108.5867,-6.7307],[108.578,-6.7247],[108.5751,-6.7197],[108.5724,-6.7078],[108.5684,-6.7052],[108.5623,-6.692],[108.5607,-6.6924],[108.5521,-6.6969],[108.5507,-6.7001],[108.5429,-6.6964],[108.5443,-6.7029],[108.5491,-6.7074],[108.5493,-6.7154],[108.5466,-6.7213],[108.5472,-6.7266],[108.541,-6.7244],[108.5356,-6.7262],[108.5349,-6.7298],[108.5195,-6.7355],[108.5192,-6.7414],[108.5225,-6.7461],[108.53,-6.7526],[108.5289,-6.7568],[108.5358,-6.7624],[108.5296,-6.7791],[108.5344,-6.7863],[108.5415,-6.789],[108.5429,-6.7952],[108.5499,-6.7929],[108.5554,-6.7805],[108.5545,-6.7783],[108.5558,-6.7656],[108.5585,-6.7652],[108.5607,-6.7575],[108.5665,-6.7547],[108.5701,-6.7503],[108.5754,-6.7502],[108.5836,-6.747],[108.5872,-6.75],[108.5949,-6.7454]]}},{"type":"Feature","properties":{"mhid":"1332:188","alt_name":"KOTA BEKASI","latitude":-6.28333,"longitude":106.98333,"sample_value":964},"geometry":{"type":"LineString","coordinates":[[106.994,-6.3671],[106.9927,-6.3648],[106.9941,-6.3554],[107.0046,-6.3554],[107.0039,-6.3597],[107.0068,-6.3626],[107.0172,-6.3536],[107.0159,-6.3389],[107.0163,-6.3313],[107.0216,-6.3282],[107.0289,-6.3304],[107.0304,-6.3254],[107.0371,-6.3215],[107.0371,-6.3141],[107.0395,-6.3092],[107.0383,-6.3063],[107.041,-6.2955],[107.0401,-6.2879],[107.0378,-6.284],[107.0314,-6.2821],[107.029,-6.2786],[107.0249,-6.279],[107.0166,-6.2762],[107.0178,-6.2713],[107.0164,-6.2655],[107.02,-6.2636],[107.0226,-6.2574],[107.0351,-6.2468],[107.0415,-6.2462],[107.0425,-6.2328],[107.0387,-6.2324],[107.0349,-6.2266],[107.0304,-6.2267],[107.0327,-6.2187],[107.0311,-6.2145],[107.0338,-6.2124],[107.0323,-6.2082],[107.0341,-6.2047],[107.0325,-6.1984],[107.0149,-6.1951],[107.0059,-6.1959],[107.0075,-6.1849],[107.007,-6.1777],[107.0107,-6.1724],[106.9716,-6.1722],[106.9711,-6.1885],[106.9696,-6.195],[106.9661,-6.2012],[106.9662,-6.2069],[106.9628,-6.2115],[106.959,-6.2129],[106.9558,-6.2195],[106.9508,-6.2191],[106.9486,-6.2222],[106.9455,-6.2368],[106.9436,-6.2386],[106.9439,-6.2523],[106.9408,-6.2535],[106.9221,-6.2539],[106.9162,-6.2525],[106.9157,-6.2584],[106.9099,-6.258],[106.9044,-6.2621],[106.9045,-6.2698],[106.9098,-6.2723],[106.9085,-6.2828],[106.9119,-6.2983],[106.9192,-6.2991],[106.9218,-6.3035],[106.9202,-6.3116],[106.9228,-6.3142],[106.9192,-6.3251],[106.9209,-6.331],[106.9172,-6.344],[106.9177,-6.3502],[106.9144,-6.3602],[106.9144,-6.3655],[106.9076,-6.3708],[106.9078,-6.3775],[106.904,-6.38],[106.905,-6.3841],[106.9041,-6.3922],[106.9062,-6.3944],[106.9188,-6.3956],[106.9264,-6.3856],[106.9297,-6.386],[106.9297,-6.38],[106.9331,-6.3758],[106.938,-6.3773],[106.9385,-6.3707],[106.9455,-6.3682],[106.947,-6.3584],[106.9522,-6.3487],[106.9509,-6.3439],[106.9528,-6.3403],[106.9611,-6.3352],[106.9634,-6.3291],[106.9617,-6.325],[106.9637,-6.3169],[106.9632,-6.3115],[106.9662,-6.3064],[106.9721,-6.304],[106.9739,-6.3123],[106.9805,-6.3144],[106.977,-6.3181],[106.977,-6.3314],[106.9732,-6.3403],[106.9687,-6.3455],[106.9696,-6.3491],[106.9771,-6.3533],[106.982,-6.3584],[106.9806,-6.3643],[106.9902,-6.3643],[106.994,-6.3671]]}},{"type":"Feature","properties":{"mhid":"1332:189","alt_name":"KOTA DEPOK","latitude":-6.4,"longitude":106.81667,"sample_value":639},"geometry":{"type":"LineString","coordinates":[[106.8409,-6.342],[106.8378,-6.3466],[106.8391,-6.3519],[106.836,-6.3545],[106.8273,-6.3569],[106.8159,-6.356],[106.8093,-6.3642],[106.803,-6.3634],[106.7999,-6.3655],[106.7947,-6.3649],[106.7925,-6.3594],[106.794,-6.3544],[106.7926,-6.348],[106.7967,-6.3465],[106.8,-6.3403],[106.7991,-6.334],[106.8034,-6.33],[106.8068,-6.3226],[106.8089,-6.3145],[106.7799,-6.3165],[106.779,-6.3246],[106.7756,-6.3363],[106.7734,-6.3401],[106.7733,-6.3472],[106.7697,-6.3565],[106.7638,-6.3567],[106.7594,-6.3608],[106.7488,-6.361],[106.7242,-6.36],[106.7205,-6.3605],[106.7178,-6.364],[106.7169,-6.37],[106.7206,-6.3736],[106.7274,-6.3894],[106.7269,-6.3944],[106.7325,-6.4066],[106.7307,-6.4105],[106.7372,-6.4191],[106.735,-6.4263],[106.7384,-6.4389],[106.7482,-6.4381],[106.7555,-6.4391],[106.7638,-6.4379],[106.7811,-6.4393],[106.7884,-6.4386],[106.7941,-6.4417],[106.7935,-6.4514],[106.8016,-6.452],[106.805,-6.4428],[106.8168,-6.445],[106.8225,-6.4443],[106.8234,-6.4478],[106.8212,-6.4541],[106.8281,-6.4561],[106.8433,-6.4475],[106.8428,-6.441],[106.8448,-6.4366],[106.8502,-6.436],[106.8536,-6.4434],[106.8533,-6.4487],[106.8557,-6.4563],[106.8715,-6.4561],[106.881,-6.4568],[106.8822,-6.4467],[106.8846,-6.4443],[106.8861,-6.4372],[106.8906,-6.4311],[106.8991,-6.426],[106.9003,-6.4193],[106.9076,-6.4151],[106.9085,-6.4127],[106.9155,-6.413],[106.9172,-6.4088],[106.9163,-6.3994],[106.9188,-6.3956],[106.9062,-6.3944],[106.9041,-6.3922],[106.905,-6.3841],[106.904,-6.38],[106.9078,-6.3775],[106.9076,-6.3708],[106.9144,-6.3655],[106.9056,-6.3612],[106.902,-6.3689],[106.8958,-6.3707],[106.8887,-6.3684],[106.8827,-6.3696],[106.8768,-6.3616],[106.8715,-6.36],[106.8739,-6.3564],[106.8701,-6.353],[106.8622,-6.3573],[106.8567,-6.3497],[106.8548,-6.3446],[106.847,-6.338],[106.8461,-6.3421],[106.8409,-6.342]]}},{"type":"Feature","properties":{"mhid":"1332:190","alt_name":"KOTA CIMAHI","latitude":-6.89167,"longitude":107.55,"sample_value":731},"geometry":{"type":"LineString","coordinates":[[107.5715,-6.8822],[107.5707,-6.8772],[107.5646,-6.8756],[107.5618,-6.8729],[107.5666,-6.8616],[107.5588,-6.8558],[107.5509,-6.8482],[107.555,-6.841],[107.5492,-6.8399],[107.5503,-6.8335],[107.5453,-6.8318],[107.539,-6.8345],[107.5372,-6.8436],[107.5323,-6.8501],[107.5377,-6.8534],[107.5359,-6.8585],[107.5307,-6.8637],[107.5272,-6.865],[107.5248,-6.8739],[107.5201,-6.8777],[107.5178,-6.8836],[107.5169,-6.8923],[107.5145,-6.8921],[107.5102,-6.8983],[107.511,-6.9012],[107.5168,-6.9056],[107.5208,-6.9114],[107.5186,-6.9139],[107.5251,-6.9207],[107.5295,-6.9174],[107.5363,-6.9174],[107.5438,-6.919],[107.5473,-6.9267],[107.5503,-6.9262],[107.5641,-6.9329],[107.5652,-6.9297],[107.5651,-6.9135],[107.569,-6.9103],[107.5561,-6.889],[107.5635,-6.8882],[107.5763,-6.8907],[107.5724,-6.8863],[107.5715,-6.8822]]}},{"type":"Feature","properties":{"mhid":"1332:191","alt_name":"KOTA TASIKMALAYA","latitude":-7.35,"longitude":108.21667,"sample_value":971},"geometry":{"type":"LineString","coordinates":[[108.313,-7.3396],[108.3061,-7.3343],[108.3002,-7.3322],[108.2916,-7.3331],[108.2884,-7.3358],[108.2801,-7.3342],[108.2758,-7.3294],[108.2708,-7.321],[108.2658,-7.3202],[108.2596,-7.3222],[108.2526,-7.3213],[108.2534,-7.3176],[108.2495,-7.3131],[108.2468,-7.314],[108.2408,-7.3116],[108.2344,-7.3055],[108.2314,-7.3059],[108.2289,-7.3011],[108.2176,-7.2926],[108.206,-7.2888],[108.1986,-7.2826],[108.1931,-7.2693],[108.1904,-7.272],[108.1846,-7.2696],[108.1783,-7.2736],[108.1802,-7.2769],[108.18,-7.2825],[108.1762,-7.284],[108.1763,-7.2883],[108.1695,-7.2877],[108.1652,-7.2898],[108.155,-7.2897],[108.153,-7.2949],[108.1595,-7.3045],[108.1586,-7.3104],[108.1613,-7.3179],[108.1601,-7.3238],[108.1533,-7.3259],[108.1527,-7.3354],[108.1591,-7.3418],[108.1666,-7.3442],[108.1676,-7.3502],[108.1644,-7.3548],[108.164,-7.3651],[108.1723,-7.3768],[108.1721,-7.3856],[108.1755,-7.3927],[108.1844,-7.3923],[108.1838,-7.4016],[108.1864,-7.4034],[108.1811,-7.4092],[108.1861,-7.4144],[108.1843,-7.4202],[108.1893,-7.4382],[108.1936,-7.439],[108.193,-7.4439],[108.1873,-7.4468],[108.1918,-7.4503],[108.2009,-7.4499],[108.2023,-7.4457],[108.2063,-7.4435],[108.2124,-7.4354],[108.2176,-7.4357],[108.2309,-7.4303],[108.2305,-7.4254],[108.2379,-7.4299],[108.2576,-7.4302],[108.264,-7.4322],[108.2722,-7.4248],[108.2766,-7.4109],[108.278,-7.4],[108.2727,-7.3915],[108.2781,-7.3898],[108.2825,-7.3845],[108.2725,-7.3802],[108.2743,-7.3763],[108.2673,-7.3739],[108.2837,-7.3651],[108.2869,-7.3608],[108.2834,-7.3568],[108.2822,-7.3511],[108.2866,-7.348],[108.2872,-7.3448],[108.2948,-7.3408],[108.3018,-7.3442],[108.308,-7.3382],[108.313,-7.3396]]}},{"type":"Feature","properties":{"mhid":"1332:192","alt_name":"KOTA BANJAR","latitude":-7.36996,"longitude":108.53209,"sample_value":69},"geometry":{"type":"LineString","coordinates":[[108.5594,-7.3265],[108.5538,-7.3252],[108.5556,-7.3317],[108.5514,-7.3356],[108.5506,-7.3416],[108.5413,-7.3442],[108.5359,-7.3431],[108.534,-7.3487],[108.5314,-7.3492],[108.5227,-7.3585],[108.5114,-7.358],[108.5054,-7.3545],[108.5025,-7.3582],[108.4959,-7.3536],[108.4966,-7.349],[108.4893,-7.35],[108.4849,-7.3563],[108.4796,-7.3566],[108.4771,-7.3614],[108.4698,-7.3625],[108.4737,-7.3679],[108.4681,-7.3717],[108.4726,-7.3749],[108.4695,-7.3818],[108.4754,-7.3863],[108.4798,-7.3866],[108.486,-7.3932],[108.4937,-7.3941],[108.502,-7.3983],[108.5044,-7.4014],[108.5181,-7.4076],[108.5248,-7.4068],[108.5267,-7.412],[108.5341,-7.4159],[108.5378,-7.4158],[108.5404,-7.4115],[108.5444,-7.4122],[108.5491,-7.422],[108.5542,-7.4195],[108.5559,-7.4253],[108.559,-7.4255],[108.5613,-7.4309],[108.5657,-7.4299],[108.5652,-7.4376],[108.5697,-7.4372],[108.5779,-7.4295],[108.5754,-7.4229],[108.5797,-7.4175],[108.5859,-7.4164],[108.5904,-7.4135],[108.595,-7.4059],[108.5913,-7.4034],[108.5902,-7.398],[108.596,-7.394],[108.6021,-7.397],[108.6071,-7.4032],[108.6154,-7.406],[108.6192,-7.3932],[108.6266,-7.3894],[108.631,-7.3819],[108.6368,-7.3814],[108.6391,-7.3852],[108.6505,-7.3873],[108.6538,-7.3772],[108.6616,-7.3587],[108.6619,-7.3525],[108.6647,-7.3471],[108.6618,-7.3421],[108.6557,-7.339],[108.6465,-7.3425],[108.6439,-7.3455],[108.6369,-7.3421],[108.6265,-7.3458],[108.6201,-7.3456],[108.6189,-7.3492],[108.6149,-7.3498],[108.6148,-7.3444],[108.6106,-7.3443],[108.6002,-7.3505],[108.5977,-7.3504],[108.592,-7.345],[108.583,-7.3464],[108.5799,-7.3402],[108.5754,-7.3393],[108.5748,-7.3339],[108.568,-7.3322],[108.5589,-7.3352],[108.5594,-7.3265]]}},{"type":"Feature","properties":{"mhid":"1332:194","alt_name":"KABUPATEN CILACAP","latitude":-7.57417,"longitude":108.98861,"sample_value":615},"geometry":{"type":"LineString","coordinates":[[108.6931,-7.1519],[108.6791,-7.1535],[108.6749,-7.1567],[108.6687,-7.1567],[108.6626,-7.1547],[108.6586,-7.1556],[108.651,-7.1496],[108.648,-7.1441],[108.6441,-7.1419],[108.6392,-7.1422],[108.6349,-7.1387],[108.6283,-7.1418],[108.625,-7.1397],[108.6188,-7.1413],[108.6146,-7.147],[108.604,-7.151],[108.6001,-7.1499],[108.5914,-7.1506],[108.5888,-7.1551],[108.5834,-7.1573],[108.582,-7.1625],[108.5786,-7.1649],[108.5682,-7.1651],[108.5622,-7.1714],[108.5659,-7.1803],[108.5602,-7.1859],[108.5608,-7.1914],[108.5577,-7.1928],[108.563,-7.1943],[108.5661,-7.2008],[108.5728,-7.2061],[108.5743,-7.2039],[108.5812,-7.2065],[108.5817,-7.2172],[108.5852,-7.219],[108.5826,-7.2241],[108.5842,-7.2308],[108.5801,-7.237],[108.5853,-7.2412],[108.5785,-7.2559],[108.5742,-7.2536],[108.5689,-7.2616],[108.5711,-7.2666],[108.569,-7.2689],[108.567,-7.2787],[108.5628,-7.2811],[108.5559,-7.2886],[108.56,-7.2928],[108.5604,-7.3004],[108.5639,-7.3028],[108.5594,-7.3067],[108.5629,-7.3142],[108.5628,-7.3215],[108.5594,-7.3265],[108.5589,-7.3352],[108.568,-7.3322],[108.5748,-7.3339],[108.5754,-7.3393],[108.5799,-7.3402],[108.583,-7.3464],[108.592,-7.345],[108.5977,-7.3504],[108.6002,-7.3505],[108.6106,-7.3443],[108.6148,-7.3444],[108.6149,-7.3498],[108.6189,-7.3492],[108.6201,-7.3456],[108.6265,-7.3458],[108.6369,-7.3421],[108.6439,-7.3455],[108.6465,-7.3425],[108.6557,-7.339],[108.6618,-7.3421],[108.6647,-7.3471],[108.6619,-7.3525],[108.6672,-7.3535],[108.6719,-7.3576],[108.676,-7.3573],[108.678,-7.3675],[108.6831,-7.3719],[108.6785,-7.3754],[108.6852,-7.3798],[108.6841,-7.3858],[108.6891,-7.3927],[108.6871,-7.3995],[108.6973,-7.4002],[108.7011,-7.4105],[108.6993,-7.4143],[108.7065,-7.4186],[108.7127,-7.4266],[108.7176,-7.4264],[108.7197,-7.4301],[108.7217,-7.4393],[108.7205,-7.4449],[108.7132,-7.4559],[108.7124,-7.4593],[108.716,-7.4663],[108.7202,-7.472],[108.72,-7.4805],[108.7234,-7.4893],[108.7334,-7.5011],[108.7355,-7.505],[108.7372,-7.5175],[108.7442,-7.5345],[108.7448,-7.5411],[108.7513,-7.5454],[108.7514,-7.5534],[108.7546,-7.5586],[108.7485,-7.5677],[108.748,-7.5755],[108.7511,-7.5766],[108.7521,-7.5853],[108.7486,-7.5866],[108.7506,-7.5919],[108.747,-7.5941],[108.7443,-7.5914],[108.7404,-7.5941],[108.7411,-7.6008],[108.738,-7.6026],[108.7372,-7.6105],[108.7319,-7.6124],[108.7407,-7.6184],[108.7455,-7.6192],[108.7477,-7.6223],[108.7483,-7.6317],[108.75,-7.6345],[108.7558,-7.6359],[108.7549,-7.6396],[108.7642,-7.646],[108.7648,-7.6501],[108.7722,-7.6554],[108.7781,-7.6527],[108.7792,-7.6581],[108.7853,-7.6589],[108.7852,-7.6664],[108.7912,-7.6703],[108.7995,-7.6679],[108.8001,-7.6764],[108.7943,-7.6808],[108.7969,-7.6878],[108.8029,-7.6887],[108.7964,-7.6949],[108.7921,-7.6947],[108.7847,-7.7064],[108.7886,-7.7072],[108.7956,-7.7058],[108.8,-7.7117],[108.7997,-7.7179],[108.794,-7.7191],[108.7885,-7.7252],[108.79,-7.7308],[108.7855,-7.7357],[108.7898,-7.7384],[108.7966,-7.7352],[108.7994,-7.7426],[108.805,-7.7418],[108.8098,-7.736],[108.8136,-7.7346],[108.8292,-7.7388],[108.8384,-7.7371],[108.8503,-7.7409],[108.8557,-7.7439],[108.8586,-7.741],[108.8649,-7.7415],[108.8698,-7.744],[108.8828,-7.7456],[108.8853,-7.7485],[108.9043,-7.7522],[108.9098,-7.7515],[108.9215,-7.7538],[108.9333,-7.7589],[108.9484,-7.7622],[108.9498,-7.7608],[108.9615,-7.7643],[108.967,-7.7633],[108.9721,-7.7667],[108.9829,-7.7718],[109.0026,-7.7761],[109.0063,-7.7777],[109.0169,-7.7788],[109.0197,-7.7756],[109.0297,-7.7776],[109.036,-7.78],[109.0386,-7.7846],[109.0442,-7.7843],[109.0446,-7.7794],[109.0502,-7.7751],[109.0479,-7.7679],[109.0439,-7.7608],[109.0368,-7.7616],[109.0348,-7.7657],[109.0312,-7.7664],[109.0233,-7.7638],[109.0194,-7.7607],[109.0174,-7.7544],[109.0206,-7.7521],[109.02,-7.7436],[109.0224,-7.7314],[109.0275,-7.7212],[109.0323,-7.7151],[109.0418,-7.7066],[109.0529,-7.6992],[109.0626,-7.6948],[109.0786,-7.6899],[109.0886,-7.6877],[109.0998,-7.687],[109.1298,-7.6896],[109.1893,-7.693],[109.1913,-7.6935],[109.2243,-7.6952],[109.2876,-7.7005],[109.3262,-7.706],[109.3679,-7.715],[109.3825,-7.7195],[109.3919,-7.7257],[109.3935,-7.7202],[109.3874,-7.7176],[109.389,-7.7065],[109.3917,-7.7003],[109.3953,-7.6958],[109.3872,-7.6874],[109.3844,-7.6909],[109.3799,-7.6862],[109.3875,-7.6807],[109.3866,-7.6731],[109.3834,-7.6639],[109.3863,-7.6607],[109.3725,-7.6564],[109.3695,-7.6527],[109.3626,-7.65],[109.362,-7.6449],[109.359,-7.6402],[109.346,-7.6424],[109.3423,-7.6383],[109.329,-7.6323],[109.2987,-7.6273],[109.2918,-7.6243],[109.2785,-7.6233],[109.2748,-7.6218],[109.2633,-7.6203],[109.2649,-7.6083],[109.2688,-7.5983],[109.2682,-7.5926],[109.2584,-7.5922],[109.2539,-7.5909],[109.2441,-7.5851],[109.2266,-7.5725],[109.2149,-7.5649],[109.2058,-7.561],[109.2028,-7.5582],[109.1963,-7.5564],[109.1728,-7.5526],[109.1691,-7.5533],[109.1708,-7.5656],[109.1674,-7.5752],[109.1598,-7.5777],[109.1389,-7.5789],[109.1307,-7.5762],[109.1187,-7.5781],[109.114,-7.5766],[109.0935,-7.5779],[109.0828,-7.5732],[109.0784,-7.574],[109.0671,-7.5734],[109.062,-7.5708],[109.0595,-7.5661],[109.059,-7.5585],[109.056,-7.5563],[109.0501,-7.5595],[109.0412,-7.5591],[109.0364,-7.5557],[109.023,-7.5501],[109.0127,-7.5439],[109.0029,-7.5438],[109.0051,-7.53],[109,-7.5268],[108.9893,-7.5239],[108.9835,-7.5243],[108.9816,-7.5202],[108.9731,-7.5187],[108.9734,-7.5136],[108.9668,-7.5082],[108.9606,-7.4949],[108.9576,-7.4925],[108.9641,-7.4876],[108.9638,-7.4722],[108.9483,-7.468],[108.9418,-7.4644],[108.9359,-7.4652],[108.9207,-7.4642],[108.9108,-7.4658],[108.9076,-7.4725],[108.9016,-7.4723],[108.8954,-7.4621],[108.8953,-7.4579],[108.8918,-7.4535],[108.892,-7.45],[108.9037,-7.446],[108.9145,-7.445],[108.9172,-7.4408],[108.9271,-7.4353],[108.932,-7.4304],[108.9303,-7.423],[108.9388,-7.4131],[108.9355,-7.4051],[108.9387,-7.3976],[108.9387,-7.3928],[108.9355,-7.39],[108.9398,-7.3857],[108.9471,-7.3832],[108.9494,-7.3809],[108.9518,-7.3717],[108.9545,-7.3685],[108.9496,-7.3654],[108.9543,-7.3584],[108.9595,-7.3572],[108.9626,-7.354],[108.962,-7.3456],[108.9649,-7.3426],[108.9671,-7.3322],[108.9623,-7.3338],[108.9593,-7.3317],[108.9531,-7.332],[108.9516,-7.3187],[108.9494,-7.3153],[108.9429,-7.3176],[108.9391,-7.3156],[108.9338,-7.319],[108.9285,-7.3179],[108.9214,-7.3122],[108.9185,-7.3047],[108.914,-7.3029],[108.9124,-7.2957],[108.9138,-7.2931],[108.9095,-7.2883],[108.8961,-7.2855],[108.8922,-7.2826],[108.8934,-7.2764],[108.8845,-7.2752],[108.8826,-7.2725],[108.8775,-7.2733],[108.8716,-7.2717],[108.8676,-7.2726],[108.8625,-7.2687],[108.8617,-7.2635],[108.8559,-7.2603],[108.853,-7.2523],[108.8571,-7.2472],[108.863,-7.2464],[108.8599,-7.2411],[108.855,-7.2412],[108.8508,-7.2382],[108.8397,-7.2368],[108.8295,-7.2324],[108.828,-7.2344],[108.8188,-7.2316],[108.8213,-7.2205],[108.8185,-7.2138],[108.8141,-7.2103],[108.8107,-7.2039],[108.8026,-7.2059],[108.7993,-7.2105],[108.7904,-7.2134],[108.7894,-7.2101],[108.7823,-7.2082],[108.7765,-7.2035],[108.774,-7.1984],[108.7612,-7.1991],[108.7555,-7.1948],[108.7488,-7.1941],[108.7424,-7.1978],[108.7349,-7.1947],[108.7231,-7.1932],[108.7213,-7.1898],[108.7215,-7.1811],[108.7158,-7.1725],[108.7105,-7.1696],[108.706,-7.1638],[108.7001,-7.1669],[108.694,-7.1598],[108.6931,-7.1519]]}},{"type":"Feature","properties":{"mhid":"1332:195","alt_name":"KABUPATEN BANYUMAS","latitude":-7.45,"longitude":109.16667,"sample_value":235},"geometry":{"type":"LineString","coordinates":[[109.3616,-7.4853],[109.356,-7.4827],[109.3526,-7.4848],[109.3421,-7.4845],[109.3383,-7.4869],[109.3285,-7.4835],[109.3219,-7.4831],[109.3205,-7.4811],[109.3216,-7.473],[109.3273,-7.4714],[109.3255,-7.466],[109.333,-7.4672],[109.338,-7.4573],[109.341,-7.4583],[109.341,-7.4498],[109.3313,-7.4431],[109.3352,-7.4353],[109.3335,-7.4301],[109.3239,-7.426],[109.3206,-7.4191],[109.3211,-7.4142],[109.3194,-7.4093],[109.3133,-7.4102],[109.3109,-7.4002],[109.3067,-7.3902],[109.3057,-7.3826],[109.3014,-7.382],[109.3016,-7.3774],[109.298,-7.372],[109.2946,-7.3618],[109.2905,-7.3573],[109.2877,-7.3484],[109.2814,-7.3407],[109.2807,-7.3354],[109.2759,-7.3291],[109.2687,-7.3164],[109.2675,-7.3113],[109.2594,-7.2941],[109.2564,-7.2894],[109.2549,-7.2806],[109.2496,-7.2735],[109.2445,-7.2718],[109.2378,-7.2574],[109.235,-7.2541],[109.2237,-7.2463],[109.2167,-7.2489],[109.2038,-7.2476],[109.1943,-7.2513],[109.1799,-7.2621],[109.1671,-7.2684],[109.1631,-7.2711],[109.1579,-7.2676],[109.147,-7.2665],[109.1428,-7.2683],[109.1353,-7.2679],[109.1304,-7.2764],[109.1249,-7.2729],[109.1171,-7.2751],[109.1202,-7.2791],[109.1258,-7.2786],[109.127,-7.2821],[109.1171,-7.2852],[109.1057,-7.2873],[109.106,-7.2897],[109.1143,-7.2923],[109.1139,-7.2948],[109.1077,-7.2963],[109.1046,-7.3025],[109.0943,-7.3028],[109.0839,-7.3047],[109.0762,-7.3137],[109.0704,-7.3258],[109.0688,-7.3322],[109.0633,-7.3394],[109.0566,-7.3401],[109.0469,-7.3391],[109.0362,-7.3515],[109.0308,-7.3497],[109.0349,-7.3458],[109.0352,-7.3413],[109.0297,-7.3276],[109.0257,-7.3269],[109.0239,-7.3322],[109.0144,-7.3351],[109.0085,-7.3337],[109.0029,-7.3351],[109.0005,-7.3335],[108.9852,-7.3346],[108.9836,-7.3332],[108.9756,-7.3349],[108.9671,-7.3322],[108.9649,-7.3426],[108.962,-7.3456],[108.9626,-7.354],[108.9595,-7.3572],[108.9543,-7.3584],[108.9496,-7.3654],[108.9545,-7.3685],[108.9518,-7.3717],[108.9494,-7.3809],[108.9471,-7.3832],[108.9398,-7.3857],[108.9355,-7.39],[108.9387,-7.3928],[108.9387,-7.3976],[108.9355,-7.4051],[108.9388,-7.4131],[108.9303,-7.423],[108.932,-7.4304],[108.9271,-7.4353],[108.9172,-7.4408],[108.9145,-7.445],[108.9037,-7.446],[108.892,-7.45],[108.8918,-7.4535],[108.8953,-7.4579],[108.8954,-7.4621],[108.9016,-7.4723],[108.9076,-7.4725],[108.9108,-7.4658],[108.9207,-7.4642],[108.9359,-7.4652],[108.9418,-7.4644],[108.9483,-7.468],[108.9638,-7.4722],[108.9641,-7.4876],[108.9576,-7.4925],[108.9606,-7.4949],[108.9668,-7.5082],[108.9734,-7.5136],[108.9731,-7.5187],[108.9816,-7.5202],[108.9835,-7.5243],[108.9893,-7.5239],[109,-7.5268],[109.0051,-7.53],[109.0029,-7.5438],[109.0127,-7.5439],[109.023,-7.5501],[109.0364,-7.5557],[109.0412,-7.5591],[109.0501,-7.5595],[109.056,-7.5563],[109.059,-7.5585],[109.0595,-7.5661],[109.062,-7.5708],[109.0671,-7.5734],[109.0784,-7.574],[109.0828,-7.5732],[109.0935,-7.5779],[109.114,-7.5766],[109.1187,-7.5781],[109.1307,-7.5762],[109.1389,-7.5789],[109.1598,-7.5777],[109.1674,-7.5752],[109.1708,-7.5656],[109.1691,-7.5533],[109.1728,-7.5526],[109.1963,-7.5564],[109.2028,-7.5582],[109.2058,-7.561],[109.2149,-7.5649],[109.2266,-7.5725],[109.2441,-7.5851],[109.2539,-7.5909],[109.2584,-7.5922],[109.2682,-7.5926],[109.2688,-7.5983],[109.2649,-7.6083],[109.2633,-7.6203],[109.2748,-7.6218],[109.2785,-7.6233],[109.2918,-7.6243],[109.2987,-7.6273],[109.329,-7.6323],[109.3423,-7.6383],[109.346,-7.6424],[109.359,-7.6402],[109.362,-7.6449],[109.3626,-7.65],[109.3695,-7.6527],[109.3725,-7.6564],[109.3863,-7.6607],[109.3867,-7.657],[109.3835,-7.6531],[109.3921,-7.6472],[109.4028,-7.6493],[109.4145,-7.6481],[109.4192,-7.6384],[109.4238,-7.6372],[109.4287,-7.6334],[109.4349,-7.6358],[109.4401,-7.6306],[109.4421,-7.6241],[109.4457,-7.6211],[109.4416,-7.6136],[109.4413,-7.6078],[109.4378,-7.6017],[109.4306,-7.5964],[109.4231,-7.5888],[109.4211,-7.5785],[109.4154,-7.5697],[109.4161,-7.563],[109.4207,-7.558],[109.4284,-7.5562],[109.433,-7.5493],[109.4319,-7.5416],[109.4327,-7.5361],[109.4256,-7.5368],[109.4184,-7.5342],[109.4161,-7.5388],[109.4121,-7.5383],[109.4041,-7.5407],[109.3994,-7.5361],[109.3958,-7.5369],[109.3876,-7.5302],[109.3852,-7.5238],[109.3782,-7.5233],[109.3723,-7.5207],[109.3695,-7.5169],[109.3644,-7.5175],[109.3621,-7.5136],[109.3658,-7.4967],[109.3616,-7.4853]]}},{"type":"Feature","properties":{"mhid":"1332:196","alt_name":"KABUPATEN PURBALINGGA","latitude":-7.28417,"longitude":109.35028,"sample_value":200},"geometry":{"type":"LineString","coordinates":[[109.5323,-7.2307],[109.5286,-7.2335],[109.5196,-7.2361],[109.5133,-7.2352],[109.5067,-7.2396],[109.5024,-7.234],[109.4972,-7.2301],[109.4903,-7.2217],[109.4835,-7.223],[109.4799,-7.222],[109.4694,-7.2099],[109.4622,-7.2039],[109.4574,-7.1968],[109.4574,-7.191],[109.4601,-7.1868],[109.4609,-7.1784],[109.4532,-7.1701],[109.4533,-7.1669],[109.4433,-7.1612],[109.4361,-7.1709],[109.4373,-7.1762],[109.4344,-7.18],[109.4249,-7.1861],[109.4169,-7.1959],[109.4089,-7.2005],[109.397,-7.1972],[109.3917,-7.1979],[109.3894,-7.1924],[109.3816,-7.1903],[109.3764,-7.1923],[109.3727,-7.1965],[109.3651,-7.1974],[109.3476,-7.2045],[109.3338,-7.2115],[109.3275,-7.2135],[109.3193,-7.2125],[109.3166,-7.2141],[109.3065,-7.2141],[109.2878,-7.2182],[109.2844,-7.2205],[109.2773,-7.2201],[109.276,-7.2219],[109.2636,-7.223],[109.2543,-7.227],[109.2495,-7.2272],[109.2355,-7.233],[109.2327,-7.2367],[109.2253,-7.2395],[109.2237,-7.2463],[109.235,-7.2541],[109.2378,-7.2574],[109.2445,-7.2718],[109.2496,-7.2735],[109.2549,-7.2806],[109.2564,-7.2894],[109.2594,-7.2941],[109.2675,-7.3113],[109.2687,-7.3164],[109.2759,-7.3291],[109.2807,-7.3354],[109.2814,-7.3407],[109.2877,-7.3484],[109.2905,-7.3573],[109.2946,-7.3618],[109.298,-7.372],[109.3016,-7.3774],[109.3014,-7.382],[109.3057,-7.3826],[109.3067,-7.3902],[109.3109,-7.4002],[109.3133,-7.4102],[109.3194,-7.4093],[109.3211,-7.4142],[109.3206,-7.4191],[109.3239,-7.426],[109.3335,-7.4301],[109.3352,-7.4353],[109.3313,-7.4431],[109.341,-7.4498],[109.341,-7.4583],[109.338,-7.4573],[109.333,-7.4672],[109.3255,-7.466],[109.3273,-7.4714],[109.3216,-7.473],[109.3205,-7.4811],[109.3219,-7.4831],[109.3285,-7.4835],[109.3383,-7.4869],[109.3421,-7.4845],[109.3526,-7.4848],[109.356,-7.4827],[109.3616,-7.4853],[109.364,-7.4874],[109.3719,-7.4847],[109.3728,-7.4784],[109.378,-7.4813],[109.3944,-7.4743],[109.4024,-7.4759],[109.4074,-7.4708],[109.4131,-7.4719],[109.4113,-7.4771],[109.4187,-7.4789],[109.4191,-7.4711],[109.4244,-7.4677],[109.4237,-7.4588],[109.4305,-7.4595],[109.4411,-7.4542],[109.4474,-7.4556],[109.4467,-7.451],[109.4496,-7.4469],[109.4536,-7.451],[109.4603,-7.4522],[109.4616,-7.4477],[109.4652,-7.4461],[109.4697,-7.4489],[109.4766,-7.4455],[109.4854,-7.4455],[109.49,-7.4433],[109.4944,-7.4494],[109.5078,-7.448],[109.5084,-7.4394],[109.5067,-7.4343],[109.506,-7.4226],[109.5085,-7.4198],[109.5033,-7.4116],[109.5071,-7.41],[109.5108,-7.4127],[109.516,-7.4126],[109.532,-7.4088],[109.5325,-7.4072],[109.5419,-7.4071],[109.5488,-7.4019],[109.5481,-7.3965],[109.5415,-7.3909],[109.54,-7.3851],[109.536,-7.378],[109.5339,-7.366],[109.5331,-7.3558],[109.5195,-7.3459],[109.5183,-7.3431],[109.5258,-7.3247],[109.5283,-7.3236],[109.534,-7.3284],[109.5412,-7.3254],[109.5465,-7.3274],[109.5502,-7.3311],[109.5626,-7.3323],[109.5653,-7.328],[109.5645,-7.323],[109.5689,-7.3135],[109.5666,-7.305],[109.5673,-7.3007],[109.5755,-7.2992],[109.5757,-7.2963],[109.5845,-7.2932],[109.5757,-7.2783],[109.5732,-7.2695],[109.5695,-7.2647],[109.5615,-7.262],[109.5499,-7.2555],[109.5386,-7.2444],[109.5383,-7.2394],[109.5323,-7.2307]]}},{"type":"Feature","properties":{"mhid":"1332:197","alt_name":"KABUPATEN BANJARNEGARA","latitude":-7.35111,"longitude":109.5875,"sample_value":231},"geometry":{"type":"LineString","coordinates":[[109.915,-7.1958],[109.9047,-7.1962],[109.9006,-7.1941],[109.899,-7.1901],[109.8923,-7.1831],[109.8874,-7.1803],[109.8815,-7.1843],[109.8815,-7.189],[109.8769,-7.1911],[109.8745,-7.187],[109.8645,-7.1865],[109.8477,-7.1779],[109.8458,-7.1828],[109.842,-7.1863],[109.8334,-7.1899],[109.8269,-7.1837],[109.8197,-7.1794],[109.8159,-7.1811],[109.8028,-7.1724],[109.7987,-7.1712],[109.7867,-7.1772],[109.7703,-7.1804],[109.7616,-7.1766],[109.7536,-7.1806],[109.7453,-7.1827],[109.7454,-7.1879],[109.7406,-7.1928],[109.7342,-7.1957],[109.7271,-7.2017],[109.7124,-7.1983],[109.708,-7.1999],[109.7041,-7.1953],[109.6916,-7.1952],[109.6831,-7.1851],[109.6817,-7.174],[109.675,-7.1727],[109.6708,-7.1777],[109.6638,-7.1785],[109.648,-7.1721],[109.6413,-7.1762],[109.6365,-7.1762],[109.628,-7.1889],[109.625,-7.1891],[109.6234,-7.1976],[109.6162,-7.2014],[109.6113,-7.2108],[109.6075,-7.2116],[109.5959,-7.2059],[109.5905,-7.2069],[109.5875,-7.2138],[109.5787,-7.2218],[109.5675,-7.2218],[109.5632,-7.2257],[109.5612,-7.2304],[109.554,-7.2306],[109.5464,-7.2364],[109.5386,-7.2444],[109.5499,-7.2555],[109.5615,-7.262],[109.5695,-7.2647],[109.5732,-7.2695],[109.5757,-7.2783],[109.5845,-7.2932],[109.5757,-7.2963],[109.5755,-7.2992],[109.5673,-7.3007],[109.5666,-7.305],[109.5689,-7.3135],[109.5645,-7.323],[109.5653,-7.328],[109.5626,-7.3323],[109.5502,-7.3311],[109.5465,-7.3274],[109.5412,-7.3254],[109.534,-7.3284],[109.5283,-7.3236],[109.5258,-7.3247],[109.5183,-7.3431],[109.5195,-7.3459],[109.5331,-7.3558],[109.5339,-7.366],[109.536,-7.378],[109.54,-7.3851],[109.5415,-7.3909],[109.5481,-7.3965],[109.5488,-7.4019],[109.5419,-7.4071],[109.5325,-7.4072],[109.532,-7.4088],[109.516,-7.4126],[109.5108,-7.4127],[109.5071,-7.41],[109.5033,-7.4116],[109.5085,-7.4198],[109.506,-7.4226],[109.5067,-7.4343],[109.5084,-7.4394],[109.5078,-7.448],[109.4944,-7.4494],[109.49,-7.4433],[109.4854,-7.4455],[109.4766,-7.4455],[109.4697,-7.4489],[109.4652,-7.4461],[109.4616,-7.4477],[109.4603,-7.4522],[109.4536,-7.451],[109.4496,-7.4469],[109.4467,-7.451],[109.4474,-7.4556],[109.4411,-7.4542],[109.4305,-7.4595],[109.4237,-7.4588],[109.4244,-7.4677],[109.4191,-7.4711],[109.4187,-7.4789],[109.4113,-7.4771],[109.4131,-7.4719],[109.4074,-7.4708],[109.4024,-7.4759],[109.3944,-7.4743],[109.378,-7.4813],[109.3728,-7.4784],[109.3719,-7.4847],[109.364,-7.4874],[109.3616,-7.4853],[109.3658,-7.4967],[109.3621,-7.5136],[109.3644,-7.5175],[109.3695,-7.5169],[109.3723,-7.5207],[109.3782,-7.5233],[109.3852,-7.5238],[109.3876,-7.5302],[109.3958,-7.5369],[109.3994,-7.5361],[109.4041,-7.5407],[109.4121,-7.5383],[109.4161,-7.5388],[109.4184,-7.5342],[109.4256,-7.5368],[109.4327,-7.5361],[109.4344,-7.5298],[109.4371,-7.5272],[109.4456,-7.5247],[109.4564,-7.5229],[109.4628,-7.5193],[109.4688,-7.5223],[109.4832,-7.5172],[109.4841,-7.5118],[109.4915,-7.5097],[109.4959,-7.5065],[109.5,-7.5105],[109.5082,-7.5087],[109.5191,-7.5111],[109.526,-7.5157],[109.5379,-7.5158],[109.5442,-7.5223],[109.5478,-7.519],[109.5514,-7.5115],[109.5631,-7.5093],[109.5691,-7.51],[109.5715,-7.5129],[109.593,-7.5134],[109.6025,-7.506],[109.6132,-7.5042],[109.6152,-7.4966],[109.6328,-7.4816],[109.6376,-7.4812],[109.6422,-7.4848],[109.6464,-7.4934],[109.6495,-7.4957],[109.6554,-7.4958],[109.6603,-7.4935],[109.6657,-7.4933],[109.6725,-7.503],[109.6783,-7.5018],[109.6846,-7.5034],[109.6879,-7.5019],[109.6897,-7.4966],[109.6985,-7.4958],[109.7064,-7.4891],[109.7113,-7.4828],[109.7237,-7.4764],[109.7331,-7.4784],[109.7346,-7.4747],[109.7328,-7.4697],[109.741,-7.4688],[109.7418,-7.4659],[109.7471,-7.4623],[109.7522,-7.4619],[109.7562,-7.4491],[109.7527,-7.4455],[109.755,-7.4397],[109.7614,-7.4408],[109.771,-7.4475],[109.7788,-7.448],[109.7864,-7.4507],[109.7916,-7.4499],[109.8021,-7.4512],[109.8107,-7.4487],[109.817,-7.4495],[109.8271,-7.4477],[109.8274,-7.4384],[109.8317,-7.4327],[109.833,-7.4228],[109.8275,-7.4196],[109.8225,-7.4214],[109.817,-7.4155],[109.7961,-7.4104],[109.785,-7.4057],[109.7815,-7.4064],[109.7793,-7.4023],[109.7725,-7.3989],[109.7686,-7.3931],[109.7632,-7.3929],[109.7556,-7.3857],[109.7612,-7.3859],[109.7645,-7.3824],[109.7685,-7.3716],[109.7717,-7.3702],[109.7756,-7.3639],[109.7798,-7.365],[109.7833,-7.3627],[109.787,-7.3551],[109.7857,-7.3498],[109.7875,-7.3416],[109.7927,-7.3376],[109.7928,-7.3332],[109.7982,-7.3252],[109.8049,-7.3246],[109.8086,-7.3214],[109.8101,-7.3156],[109.8151,-7.3132],[109.816,-7.3095],[109.8257,-7.299],[109.8299,-7.2981],[109.8361,-7.2875],[109.8432,-7.2802],[109.8415,-7.2729],[109.845,-7.2696],[109.8499,-7.2555],[109.8502,-7.251],[109.8546,-7.2446],[109.8548,-7.2411],[109.8617,-7.2328],[109.8679,-7.2302],[109.8697,-7.227],[109.8752,-7.2251],[109.8836,-7.2256],[109.8892,-7.2235],[109.8997,-7.223],[109.9074,-7.2193],[109.9122,-7.2153],[109.9094,-7.2061],[109.9105,-7.2002],[109.915,-7.1958]]}},{"type":"Feature","properties":{"mhid":"1332:198","alt_name":"KABUPATEN KEBUMEN","latitude":-7.63917,"longitude":109.66056,"sample_value":612},"geometry":{"type":"LineString","coordinates":[[109.8196,-7.83],[109.8275,-7.8252],[109.8293,-7.8216],[109.833,-7.8044],[109.8294,-7.8037],[109.834,-7.7934],[109.839,-7.7733],[109.8352,-7.7731],[109.8336,-7.7569],[109.8316,-7.7532],[109.8325,-7.7417],[109.8311,-7.7258],[109.8282,-7.7184],[109.8236,-7.7147],[109.812,-7.7121],[109.8081,-7.7088],[109.8003,-7.7067],[109.7982,-7.6964],[109.8032,-7.6931],[109.8049,-7.6884],[109.8067,-7.6743],[109.8068,-7.6676],[109.8021,-7.6627],[109.8035,-7.655],[109.7984,-7.6472],[109.804,-7.6427],[109.8099,-7.6338],[109.8141,-7.6316],[109.8144,-7.6266],[109.8105,-7.6229],[109.812,-7.6182],[109.8126,-7.6031],[109.815,-7.5992],[109.8108,-7.5999],[109.8084,-7.6066],[109.8056,-7.6068],[109.8009,-7.6121],[109.7917,-7.6108],[109.781,-7.6062],[109.7645,-7.6032],[109.7576,-7.5971],[109.7523,-7.5821],[109.7472,-7.5768],[109.7412,-7.5742],[109.7422,-7.5511],[109.7386,-7.5452],[109.7379,-7.5353],[109.7411,-7.5303],[109.7503,-7.5282],[109.7537,-7.5231],[109.7598,-7.5236],[109.7673,-7.5182],[109.7742,-7.5169],[109.7673,-7.5102],[109.7685,-7.5065],[109.7576,-7.494],[109.7605,-7.485],[109.7611,-7.4788],[109.7592,-7.4688],[109.7561,-7.4681],[109.7522,-7.4619],[109.7471,-7.4623],[109.7418,-7.4659],[109.741,-7.4688],[109.7328,-7.4697],[109.7346,-7.4747],[109.7331,-7.4784],[109.7237,-7.4764],[109.7113,-7.4828],[109.7064,-7.4891],[109.6985,-7.4958],[109.6897,-7.4966],[109.6879,-7.5019],[109.6846,-7.5034],[109.6783,-7.5018],[109.6725,-7.503],[109.6657,-7.4933],[109.6603,-7.4935],[109.6554,-7.4958],[109.6495,-7.4957],[109.6464,-7.4934],[109.6422,-7.4848],[109.6376,-7.4812],[109.6328,-7.4816],[109.6152,-7.4966],[109.6132,-7.5042],[109.6025,-7.506],[109.593,-7.5134],[109.5715,-7.5129],[109.5691,-7.51],[109.5631,-7.5093],[109.5514,-7.5115],[109.5478,-7.519],[109.5442,-7.5223],[109.5379,-7.5158],[109.526,-7.5157],[109.5191,-7.5111],[109.5082,-7.5087],[109.5,-7.5105],[109.4959,-7.5065],[109.4915,-7.5097],[109.4841,-7.5118],[109.4832,-7.5172],[109.4688,-7.5223],[109.4628,-7.5193],[109.4564,-7.5229],[109.4456,-7.5247],[109.4371,-7.5272],[109.4344,-7.5298],[109.4327,-7.5361],[109.4319,-7.5416],[109.433,-7.5493],[109.4284,-7.5562],[109.4207,-7.558],[109.4161,-7.563],[109.4154,-7.5697],[109.4211,-7.5785],[109.4231,-7.5888],[109.4306,-7.5964],[109.4378,-7.6017],[109.4413,-7.6078],[109.4416,-7.6136],[109.4457,-7.6211],[109.4421,-7.6241],[109.4401,-7.6306],[109.4349,-7.6358],[109.4287,-7.6334],[109.4238,-7.6372],[109.4192,-7.6384],[109.4145,-7.6481],[109.4028,-7.6493],[109.3921,-7.6472],[109.3835,-7.6531],[109.3867,-7.657],[109.3863,-7.6607],[109.3834,-7.6639],[109.3866,-7.6731],[109.3875,-7.6807],[109.3799,-7.6862],[109.3844,-7.6909],[109.3872,-7.6874],[109.3953,-7.6958],[109.3917,-7.7003],[109.389,-7.7065],[109.3874,-7.7176],[109.3935,-7.7202],[109.3919,-7.7257],[109.3863,-7.7513],[109.396,-7.7569],[109.3976,-7.7609],[109.4073,-7.7646],[109.4125,-7.7698],[109.4209,-7.7704],[109.4366,-7.7732],[109.4364,-7.7687],[109.4406,-7.7663],[109.4443,-7.7683],[109.4487,-7.7655],[109.4574,-7.7652],[109.4661,-7.7623],[109.4672,-7.7586],[109.5259,-7.7656],[109.56,-7.7715],[109.5621,-7.7726],[109.5926,-7.7785],[109.6096,-7.783],[109.6116,-7.7795],[109.625,-7.7825],[109.6239,-7.7854],[109.6448,-7.7885],[109.6674,-7.7925],[109.7091,-7.802],[109.7535,-7.8132],[109.7585,-7.8152],[109.7908,-7.823],[109.8192,-7.8305],[109.8196,-7.83]]}},{"type":"Feature","properties":{"mhid":"1332:199","alt_name":"KABUPATEN PURWOREJO","latitude":-7.7,"longitude":109.96667,"sample_value":916},"geometry":{"type":"LineString","coordinates":[[110.0442,-7.5348],[110.037,-7.5305],[110.0284,-7.5294],[110.0317,-7.535],[110.0341,-7.5425],[110.0324,-7.5523],[110.0284,-7.5531],[110.0156,-7.5656],[110.0167,-7.5698],[110.0143,-7.5788],[110.0168,-7.5855],[110.0078,-7.5871],[109.9995,-7.5905],[109.9954,-7.5876],[109.9963,-7.5767],[109.9924,-7.575],[109.9844,-7.5776],[109.9785,-7.577],[109.9771,-7.5722],[109.972,-7.5696],[109.968,-7.5622],[109.973,-7.5472],[109.9751,-7.5336],[109.9716,-7.5306],[109.964,-7.5324],[109.9516,-7.5265],[109.9487,-7.5318],[109.9446,-7.5305],[109.939,-7.5326],[109.9339,-7.5235],[109.926,-7.5241],[109.9202,-7.5193],[109.9093,-7.5229],[109.8984,-7.5197],[109.8932,-7.523],[109.8843,-7.5308],[109.8837,-7.5361],[109.8789,-7.5334],[109.875,-7.5266],[109.8639,-7.529],[109.8639,-7.5335],[109.8691,-7.5376],[109.8675,-7.5408],[109.8608,-7.5441],[109.8604,-7.5493],[109.856,-7.5547],[109.8552,-7.5591],[109.8498,-7.5616],[109.8433,-7.5606],[109.8396,-7.5712],[109.8352,-7.5764],[109.8271,-7.5788],[109.8211,-7.5954],[109.8171,-7.5948],[109.815,-7.5992],[109.8126,-7.6031],[109.812,-7.6182],[109.8105,-7.6229],[109.8144,-7.6266],[109.8141,-7.6316],[109.8099,-7.6338],[109.804,-7.6427],[109.7984,-7.6472],[109.8035,-7.655],[109.8021,-7.6627],[109.8068,-7.6676],[109.8067,-7.6743],[109.8049,-7.6884],[109.8032,-7.6931],[109.7982,-7.6964],[109.8003,-7.7067],[109.8081,-7.7088],[109.812,-7.7121],[109.8236,-7.7147],[109.8282,-7.7184],[109.8311,-7.7258],[109.8325,-7.7417],[109.8316,-7.7532],[109.8336,-7.7569],[109.8352,-7.7731],[109.839,-7.7733],[109.834,-7.7934],[109.8294,-7.8037],[109.833,-7.8044],[109.8293,-7.8216],[109.8275,-7.8252],[109.8196,-7.83],[109.8409,-7.8345],[109.8632,-7.8398],[109.8948,-7.8488],[109.9225,-7.8577],[109.9693,-7.874],[109.992,-7.8834],[110.0025,-7.8887],[110.0047,-7.8849],[110.0169,-7.8894],[110.0197,-7.8917],[110.0249,-7.8906],[110.0293,-7.8927],[110.0371,-7.8844],[110.042,-7.8851],[110.0442,-7.8728],[110.0424,-7.8634],[110.0435,-7.8598],[110.0506,-7.8518],[110.0512,-7.8447],[110.0594,-7.8413],[110.0586,-7.836],[110.0589,-7.8239],[110.0622,-7.8189],[110.0627,-7.814],[110.0723,-7.8122],[110.0808,-7.8067],[110.0835,-7.7998],[110.0869,-7.7979],[110.0921,-7.7861],[110.1012,-7.779],[110.1127,-7.7769],[110.1143,-7.771],[110.114,-7.7649],[110.1217,-7.7561],[110.1266,-7.7482],[110.1296,-7.7475],[110.1319,-7.7254],[110.1344,-7.7214],[110.1325,-7.716],[110.1348,-7.7054],[110.1313,-7.7005],[110.138,-7.6934],[110.1354,-7.6874],[110.1267,-7.6823],[110.1269,-7.6775],[110.1233,-7.6766],[110.1179,-7.6699],[110.122,-7.6677],[110.1231,-7.6635],[110.1304,-7.6576],[110.131,-7.6545],[110.1365,-7.6543],[110.1419,-7.645],[110.1396,-7.6444],[110.1331,-7.6357],[110.126,-7.6312],[110.1219,-7.6243],[110.1224,-7.6203],[110.1202,-7.6084],[110.115,-7.6022],[110.1116,-7.6003],[110.1074,-7.5926],[110.1067,-7.5882],[110.0978,-7.5739],[110.0974,-7.5698],[110.0898,-7.569],[110.0871,-7.5729],[110.0814,-7.5768],[110.0772,-7.5762],[110.0714,-7.5721],[110.0657,-7.571],[110.0589,-7.5741],[110.0564,-7.5726],[110.0569,-7.5647],[110.0592,-7.5598],[110.051,-7.5517],[110.0525,-7.5483],[110.0442,-7.5348]]}},{"type":"Feature","properties":{"mhid":"1332:200","alt_name":"KABUPATEN WONOSOBO","latitude":-7.36139,"longitude":109.92667,"sample_value":547},"geometry":{"type":"LineString","coordinates":[[109.815,-7.5992],[109.8171,-7.5948],[109.8211,-7.5954],[109.8271,-7.5788],[109.8352,-7.5764],[109.8396,-7.5712],[109.8433,-7.5606],[109.8498,-7.5616],[109.8552,-7.5591],[109.856,-7.5547],[109.8604,-7.5493],[109.8608,-7.5441],[109.8675,-7.5408],[109.8691,-7.5376],[109.8639,-7.5335],[109.8639,-7.529],[109.875,-7.5266],[109.8789,-7.5334],[109.8837,-7.5361],[109.8843,-7.5308],[109.8932,-7.523],[109.8984,-7.5197],[109.9093,-7.5229],[109.9202,-7.5193],[109.926,-7.5241],[109.9339,-7.5235],[109.939,-7.5326],[109.9446,-7.5305],[109.9487,-7.5318],[109.9516,-7.5265],[109.964,-7.5324],[109.9716,-7.5306],[109.9751,-7.5336],[109.973,-7.5472],[109.968,-7.5622],[109.972,-7.5696],[109.9771,-7.5722],[109.9785,-7.577],[109.9844,-7.5776],[109.9924,-7.575],[109.9963,-7.5767],[109.9954,-7.5876],[109.9995,-7.5905],[110.0078,-7.5871],[110.0168,-7.5855],[110.0143,-7.5788],[110.0167,-7.5698],[110.0156,-7.5656],[110.0284,-7.5531],[110.0324,-7.5523],[110.0341,-7.5425],[110.0317,-7.535],[110.0284,-7.5294],[110.037,-7.5305],[110.0442,-7.5348],[110.0437,-7.5301],[110.0499,-7.4982],[110.0538,-7.4919],[110.0521,-7.4818],[110.0594,-7.4666],[110.0624,-7.4643],[110.0647,-7.4583],[110.0588,-7.4546],[110.0566,-7.4509],[110.0561,-7.4424],[110.0542,-7.4343],[110.0593,-7.4341],[110.0595,-7.4218],[110.0627,-7.4135],[110.0624,-7.4096],[110.0677,-7.3976],[110.0727,-7.3904],[110.0742,-7.3857],[110.0714,-7.3803],[110.0629,-7.3763],[110.0522,-7.3687],[110.0379,-7.3533],[110.0315,-7.3487],[110.0184,-7.3316],[110.0059,-7.319],[109.9991,-7.3142],[109.9962,-7.3068],[109.9964,-7.2919],[109.9945,-7.2891],[109.9943,-7.2814],[109.9981,-7.2709],[109.9948,-7.261],[109.9886,-7.2566],[109.9773,-7.2457],[109.9726,-7.2437],[109.9707,-7.2401],[109.962,-7.2331],[109.9592,-7.2326],[109.95,-7.217],[109.9469,-7.2167],[109.9372,-7.2097],[109.9341,-7.2023],[109.9309,-7.1952],[109.9248,-7.1886],[109.9179,-7.1909],[109.915,-7.1958],[109.9105,-7.2002],[109.9094,-7.2061],[109.9122,-7.2153],[109.9074,-7.2193],[109.8997,-7.223],[109.8892,-7.2235],[109.8836,-7.2256],[109.8752,-7.2251],[109.8697,-7.227],[109.8679,-7.2302],[109.8617,-7.2328],[109.8548,-7.2411],[109.8546,-7.2446],[109.8502,-7.251],[109.8499,-7.2555],[109.845,-7.2696],[109.8415,-7.2729],[109.8432,-7.2802],[109.8361,-7.2875],[109.8299,-7.2981],[109.8257,-7.299],[109.816,-7.3095],[109.8151,-7.3132],[109.8101,-7.3156],[109.8086,-7.3214],[109.8049,-7.3246],[109.7982,-7.3252],[109.7928,-7.3332],[109.7927,-7.3376],[109.7875,-7.3416],[109.7857,-7.3498],[109.787,-7.3551],[109.7833,-7.3627],[109.7798,-7.365],[109.7756,-7.3639],[109.7717,-7.3702],[109.7685,-7.3716],[109.7645,-7.3824],[109.7612,-7.3859],[109.7556,-7.3857],[109.7632,-7.3929],[109.7686,-7.3931],[109.7725,-7.3989],[109.7793,-7.4023],[109.7815,-7.4064],[109.785,-7.4057],[109.7961,-7.4104],[109.817,-7.4155],[109.8225,-7.4214],[109.8275,-7.4196],[109.833,-7.4228],[109.8317,-7.4327],[109.8274,-7.4384],[109.8271,-7.4477],[109.817,-7.4495],[109.8107,-7.4487],[109.8021,-7.4512],[109.7916,-7.4499],[109.7864,-7.4507],[109.7788,-7.448],[109.771,-7.4475],[109.7614,-7.4408],[109.755,-7.4397],[109.7527,-7.4455],[109.7562,-7.4491],[109.7522,-7.4619],[109.7561,-7.4681],[109.7592,-7.4688],[109.7611,-7.4788],[109.7605,-7.485],[109.7576,-7.494],[109.7685,-7.5065],[109.7673,-7.5102],[109.7742,-7.5169],[109.7673,-7.5182],[109.7598,-7.5236],[109.7537,-7.5231],[109.7503,-7.5282],[109.7411,-7.5303],[109.7379,-7.5353],[109.7386,-7.5452],[109.7422,-7.5511],[109.7412,-7.5742],[109.7472,-7.5768],[109.7523,-7.5821],[109.7576,-7.5971],[109.7645,-7.6032],[109.781,-7.6062],[109.7917,-7.6108],[109.8009,-7.6121],[109.8056,-7.6068],[109.8084,-7.6066],[109.8108,-7.5999],[109.815,-7.5992]]}},{"type":"Feature","properties":{"mhid":"1332:201","alt_name":"KABUPATEN MAGELANG","latitude":-7.4275,"longitude":110.16194,"sample_value":220},"geometry":{"type":"MultiLineString","coordinates":[[[110.4387,-7.4534],[110.432,-7.4458],[110.4249,-7.4349],[110.4245,-7.4307],[110.4194,-7.4221],[110.4143,-7.4166],[110.4136,-7.4092],[110.4086,-7.399],[110.4053,-7.3896],[110.4066,-7.377],[110.4035,-7.3714],[110.4036,-7.3655],[110.3972,-7.3572],[110.3908,-7.3531],[110.3821,-7.3542],[110.3777,-7.3431],[110.3791,-7.3346],[110.3648,-7.3316],[110.3561,-7.3266],[110.3511,-7.3254],[110.3423,-7.3256],[110.3322,-7.3205],[110.328,-7.3203],[110.3264,-7.3273],[110.3199,-7.3304],[110.3191,-7.3364],[110.3249,-7.3412],[110.3152,-7.3534],[110.3053,-7.3559],[110.3037,-7.3578],[110.2917,-7.3615],[110.2815,-7.3679],[110.2813,-7.3693],[110.2715,-7.375],[110.2704,-7.3794],[110.2629,-7.3809],[110.2571,-7.3772],[110.2546,-7.3703],[110.2495,-7.3691],[110.2361,-7.3732],[110.2342,-7.3799],[110.2259,-7.383],[110.2218,-7.3919],[110.2147,-7.3952],[110.2163,-7.3881],[110.2119,-7.3855],[110.2051,-7.387],[110.1983,-7.3812],[110.1923,-7.38],[110.1897,-7.3832],[110.1813,-7.3837],[110.1784,-7.3813],[110.1716,-7.3814],[110.1599,-7.3861],[110.1483,-7.3837],[110.1415,-7.387],[110.134,-7.3885],[110.1277,-7.3871],[110.1207,-7.3903],[110.0979,-7.3878],[110.0935,-7.3878],[110.0786,-7.3834],[110.0742,-7.3857],[110.0727,-7.3904],[110.0677,-7.3976],[110.0624,-7.4096],[110.0627,-7.4135],[110.0595,-7.4218],[110.0593,-7.4341],[110.0542,-7.4343],[110.0561,-7.4424],[110.0566,-7.4509],[110.0588,-7.4546],[110.0647,-7.4583],[110.0624,-7.4643],[110.0594,-7.4666],[110.0521,-7.4818],[110.0538,-7.4919],[110.0499,-7.4982],[110.0437,-7.5301],[110.0442,-7.5348],[110.0525,-7.5483],[110.051,-7.5517],[110.0592,-7.5598],[110.0569,-7.5647],[110.0564,-7.5726],[110.0589,-7.5741],[110.0657,-7.571],[110.0714,-7.5721],[110.0772,-7.5762],[110.0814,-7.5768],[110.0871,-7.5729],[110.0898,-7.569],[110.0974,-7.5698],[110.0978,-7.5739],[110.1067,-7.5882],[110.1074,-7.5926],[110.1116,-7.6003],[110.115,-7.6022],[110.1202,-7.6084],[110.1224,-7.6203],[110.1219,-7.6243],[110.126,-7.6312],[110.1331,-7.6357],[110.1396,-7.6444],[110.1419,-7.645],[110.1446,-7.6497],[110.1498,-7.6465],[110.1587,-7.6458],[110.1656,-7.6489],[110.1748,-7.6484],[110.1925,-7.6448],[110.2001,-7.6503],[110.2056,-7.6515],[110.2142,-7.6477],[110.2221,-7.6501],[110.2333,-7.6507],[110.2404,-7.6543],[110.2428,-7.6532],[110.2517,-7.6425],[110.2543,-7.642],[110.2637,-7.6459],[110.2659,-7.6491],[110.2638,-7.6527],[110.2631,-7.6611],[110.2671,-7.6631],[110.2652,-7.6681],[110.2659,-7.6731],[110.2635,-7.6775],[110.2644,-7.6814],[110.2613,-7.6846],[110.2658,-7.691],[110.2709,-7.7038],[110.2704,-7.7057],[110.2771,-7.6978],[110.2847,-7.6871],[110.2913,-7.6724],[110.2995,-7.6648],[110.3041,-7.6549],[110.314,-7.6507],[110.3238,-7.6442],[110.325,-7.642],[110.3332,-7.6366],[110.338,-7.6305],[110.3449,-7.6261],[110.3545,-7.6228],[110.3628,-7.6171],[110.3671,-7.6122],[110.3752,-7.6072],[110.3794,-7.6015],[110.3848,-7.6],[110.391,-7.5949],[110.3909,-7.5923],[110.3964,-7.5892],[110.4001,-7.5848],[110.4015,-7.5796],[110.4088,-7.5717],[110.416,-7.5612],[110.4248,-7.5566],[110.4288,-7.5521],[110.4407,-7.5464],[110.4461,-7.5419],[110.4378,-7.5357],[110.4294,-7.5323],[110.4267,-7.5293],[110.4052,-7.5171],[110.4008,-7.5171],[110.3874,-7.5136],[110.3803,-7.5142],[110.3895,-7.5067],[110.3933,-7.501],[110.3997,-7.4981],[110.4082,-7.4991],[110.4158,-7.496],[110.4297,-7.4827],[110.4331,-7.4778],[110.4353,-7.4694],[110.4342,-7.466],[110.4393,-7.4536],[110.4387,-7.4534]],[[110.2256,-7.4377],[110.2309,-7.4456],[110.2278,-7.4493],[110.23,-7.4558],[110.2275,-7.4662],[110.2315,-7.4768],[110.2345,-7.4799],[110.2356,-7.4895],[110.2373,-7.4932],[110.2338,-7.4979],[110.2319,-7.5047],[110.2218,-7.5037],[110.2182,-7.5014],[110.2143,-7.5047],[110.2102,-7.5007],[110.2067,-7.504],[110.202,-7.4991],[110.2042,-7.4936],[110.2042,-7.4886],[110.2076,-7.4818],[110.2061,-7.4797],[110.2099,-7.4741],[110.2115,-7.4614],[110.21,-7.4598],[110.2139,-7.4506],[110.2119,-7.4478],[110.2192,-7.4387],[110.2256,-7.4377]]]}},{"type":"Feature","properties":{"mhid":"1332:202","alt_name":"KABUPATEN BOYOLALI","latitude":-7.5,"longitude":110.7,"sample_value":334},"geometry":{"type":"LineString","coordinates":[[110.8279,-7.2475],[110.8278,-7.2367],[110.8404,-7.2195],[110.8459,-7.2144],[110.8531,-7.2172],[110.8583,-7.2158],[110.8586,-7.2123],[110.8495,-7.2017],[110.8385,-7.1985],[110.8321,-7.1985],[110.8272,-7.2028],[110.8263,-7.2088],[110.8211,-7.2147],[110.8116,-7.2191],[110.808,-7.2287],[110.7936,-7.2404],[110.7888,-7.2435],[110.7821,-7.245],[110.7666,-7.2441],[110.7719,-7.2355],[110.7704,-7.2301],[110.7728,-7.224],[110.7802,-7.2135],[110.7817,-7.2021],[110.7855,-7.1952],[110.7816,-7.1892],[110.7777,-7.1862],[110.7704,-7.1864],[110.7684,-7.1834],[110.7602,-7.1864],[110.7609,-7.1798],[110.7673,-7.1801],[110.7694,-7.1774],[110.7641,-7.1743],[110.76,-7.1751],[110.7578,-7.1704],[110.7438,-7.1643],[110.7439,-7.1546],[110.75,-7.1488],[110.7453,-7.1402],[110.7421,-7.1392],[110.7345,-7.1437],[110.7279,-7.1528],[110.7278,-7.1572],[110.7237,-7.165],[110.7071,-7.1802],[110.7041,-7.1851],[110.6922,-7.1872],[110.6893,-7.192],[110.693,-7.199],[110.6928,-7.205],[110.6969,-7.2078],[110.7032,-7.208],[110.7058,-7.2156],[110.6978,-7.2209],[110.6935,-7.2283],[110.6946,-7.2307],[110.6901,-7.2412],[110.683,-7.2416],[110.6738,-7.2376],[110.6692,-7.2319],[110.668,-7.2275],[110.6615,-7.2241],[110.6556,-7.2259],[110.6476,-7.2224],[110.6441,-7.219],[110.6276,-7.2194],[110.6241,-7.2295],[110.624,-7.234],[110.6263,-7.2385],[110.6283,-7.2475],[110.6337,-7.2534],[110.6364,-7.2633],[110.6318,-7.2654],[110.6224,-7.2736],[110.6246,-7.2788],[110.6239,-7.2856],[110.6217,-7.2893],[110.6045,-7.2903],[110.6015,-7.2912],[110.6025,-7.3028],[110.5993,-7.3071],[110.5994,-7.3161],[110.6031,-7.3226],[110.6101,-7.3246],[110.6079,-7.331],[110.6142,-7.3339],[110.622,-7.3323],[110.6311,-7.3271],[110.6358,-7.3282],[110.6427,-7.326],[110.6429,-7.3351],[110.64,-7.3389],[110.641,-7.3437],[110.6394,-7.3498],[110.6361,-7.3524],[110.636,-7.3615],[110.629,-7.3696],[110.632,-7.3728],[110.6255,-7.3827],[110.6288,-7.3868],[110.6349,-7.3903],[110.6348,-7.4009],[110.6381,-7.403],[110.6355,-7.4089],[110.6364,-7.4163],[110.6318,-7.4184],[110.6348,-7.4225],[110.6357,-7.43],[110.6323,-7.4336],[110.6314,-7.4391],[110.6259,-7.4414],[110.6228,-7.4459],[110.6213,-7.4543],[110.6333,-7.4512],[110.6379,-7.4521],[110.6443,-7.4466],[110.6452,-7.4518],[110.6391,-7.4535],[110.6327,-7.4573],[110.6292,-7.4644],[110.6339,-7.4672],[110.6352,-7.4705],[110.6506,-7.4707],[110.6615,-7.4747],[110.6549,-7.4813],[110.6547,-7.4868],[110.6582,-7.4878],[110.6567,-7.4951],[110.6449,-7.4918],[110.6392,-7.4953],[110.6334,-7.4901],[110.629,-7.4917],[110.6218,-7.4915],[110.6184,-7.4882],[110.6118,-7.4891],[110.6058,-7.4879],[110.602,-7.4838],[110.596,-7.4828],[110.594,-7.4762],[110.5864,-7.472],[110.5821,-7.4663],[110.5864,-7.4601],[110.5845,-7.4483],[110.5938,-7.4506],[110.5971,-7.4533],[110.5998,-7.4478],[110.5898,-7.4449],[110.586,-7.4419],[110.5826,-7.4297],[110.5769,-7.423],[110.5736,-7.4243],[110.5758,-7.4317],[110.5714,-7.4404],[110.5675,-7.4403],[110.5676,-7.4338],[110.5699,-7.4262],[110.5646,-7.4259],[110.5623,-7.4308],[110.5588,-7.4314],[110.5583,-7.4381],[110.5596,-7.4501],[110.5553,-7.4517],[110.551,-7.4482],[110.5537,-7.4413],[110.5475,-7.4389],[110.5478,-7.4347],[110.5445,-7.4331],[110.5377,-7.4348],[110.5308,-7.4333],[110.5199,-7.4387],[110.5176,-7.4387],[110.5124,-7.4215],[110.5156,-7.4196],[110.5159,-7.4154],[110.5113,-7.4149],[110.5063,-7.4083],[110.5042,-7.4115],[110.4975,-7.4107],[110.4836,-7.4074],[110.4835,-7.4024],[110.4655,-7.4081],[110.4587,-7.414],[110.4565,-7.4226],[110.4503,-7.4285],[110.4475,-7.436],[110.4435,-7.4428],[110.4429,-7.4491],[110.4393,-7.4536],[110.4387,-7.4534],[110.4393,-7.4536],[110.4342,-7.466],[110.4353,-7.4694],[110.4331,-7.4778],[110.4297,-7.4827],[110.4158,-7.496],[110.4082,-7.4991],[110.3997,-7.4981],[110.3933,-7.501],[110.3895,-7.5067],[110.3803,-7.5142],[110.3874,-7.5136],[110.4008,-7.5171],[110.4052,-7.5171],[110.4267,-7.5293],[110.4294,-7.5323],[110.4378,-7.5357],[110.4461,-7.5419],[110.4494,-7.5441],[110.4571,-7.541],[110.4599,-7.5421],[110.4736,-7.5523],[110.481,-7.5617],[110.4881,-7.5721],[110.4893,-7.5767],[110.4954,-7.5849],[110.5042,-7.589],[110.5082,-7.5925],[110.5067,-7.5957],[110.5147,-7.6022],[110.5167,-7.6008],[110.5226,-7.6034],[110.5129,-7.606],[110.513,-7.6108],[110.5209,-7.6178],[110.5225,-7.6215],[110.5311,-7.6264],[110.5408,-7.6284],[110.5452,-7.6256],[110.5424,-7.6166],[110.5504,-7.6092],[110.5459,-7.6064],[110.5596,-7.595],[110.562,-7.5947],[110.5668,-7.5879],[110.5708,-7.5884],[110.5735,-7.5841],[110.5814,-7.5878],[110.5895,-7.5843],[110.5971,-7.5884],[110.6005,-7.575],[110.6007,-7.5694],[110.6109,-7.5758],[110.6321,-7.5821],[110.6393,-7.5856],[110.6468,-7.5869],[110.6504,-7.5854],[110.6572,-7.5863],[110.666,-7.585],[110.6737,-7.5861],[110.6784,-7.5884],[110.689,-7.5855],[110.693,-7.5914],[110.703,-7.5935],[110.7134,-7.5838],[110.7167,-7.5737],[110.7215,-7.5659],[110.7188,-7.5615],[110.7264,-7.5538],[110.7218,-7.5502],[110.7116,-7.5479],[110.7134,-7.5416],[110.7084,-7.5402],[110.7093,-7.5323],[110.7206,-7.5317],[110.7267,-7.5261],[110.7325,-7.5286],[110.7423,-7.5275],[110.7487,-7.5233],[110.7616,-7.5255],[110.7641,-7.5267],[110.7734,-7.5263],[110.781,-7.5238],[110.7881,-7.5265],[110.8007,-7.5339],[110.807,-7.5329],[110.8102,-7.527],[110.8157,-7.5232],[110.807,-7.4937],[110.8063,-7.49],[110.8048,-7.4593],[110.7961,-7.4616],[110.7808,-7.4529],[110.7794,-7.4471],[110.7743,-7.4447],[110.7708,-7.4402],[110.7723,-7.4372],[110.7825,-7.4323],[110.7745,-7.4291],[110.7699,-7.4207],[110.7734,-7.4189],[110.7727,-7.4097],[110.7736,-7.4042],[110.7726,-7.3929],[110.7784,-7.3864],[110.7815,-7.3863],[110.788,-7.38],[110.7887,-7.3773],[110.8009,-7.3696],[110.7952,-7.3667],[110.7926,-7.3627],[110.7886,-7.362],[110.7906,-7.3543],[110.7967,-7.351],[110.798,-7.341],[110.8032,-7.3275],[110.8015,-7.3173],[110.7977,-7.3117],[110.7971,-7.3078],[110.7969,-7.3059],[110.7927,-7.2894],[110.7944,-7.284],[110.793,-7.278],[110.7942,-7.275],[110.7926,-7.2703],[110.7888,-7.2725],[110.7845,-7.279],[110.7778,-7.2799],[110.7761,-7.2873],[110.7795,-7.2913],[110.7748,-7.2977],[110.7681,-7.296],[110.7717,-7.2894],[110.7679,-7.2839],[110.7718,-7.2768],[110.7755,-7.2756],[110.7758,-7.2682],[110.7679,-7.27],[110.771,-7.264],[110.7753,-7.2644],[110.7799,-7.262],[110.788,-7.2662],[110.7874,-7.2618],[110.7966,-7.2626],[110.8018,-7.2561],[110.8166,-7.257],[110.8207,-7.2505],[110.8279,-7.2475]]}},{"type":"Feature","properties":{"mhid":"1332:203","alt_name":"KABUPATEN KLATEN","latitude":-7.68333,"longitude":110.61667,"sample_value":14},"geometry":{"type":"LineString","coordinates":[[110.703,-7.5935],[110.693,-7.5914],[110.689,-7.5855],[110.6784,-7.5884],[110.6737,-7.5861],[110.666,-7.585],[110.6572,-7.5863],[110.6504,-7.5854],[110.6468,-7.5869],[110.6393,-7.5856],[110.6321,-7.5821],[110.6109,-7.5758],[110.6007,-7.5694],[110.6005,-7.575],[110.5971,-7.5884],[110.5895,-7.5843],[110.5814,-7.5878],[110.5735,-7.5841],[110.5708,-7.5884],[110.5668,-7.5879],[110.562,-7.5947],[110.5596,-7.595],[110.5459,-7.6064],[110.5504,-7.6092],[110.5424,-7.6166],[110.5452,-7.6256],[110.5408,-7.6284],[110.5311,-7.6264],[110.5225,-7.6215],[110.5209,-7.6178],[110.513,-7.6108],[110.5129,-7.606],[110.5226,-7.6034],[110.5167,-7.6008],[110.5147,-7.6022],[110.5067,-7.5957],[110.5082,-7.5925],[110.5042,-7.589],[110.4954,-7.5849],[110.4893,-7.5767],[110.4881,-7.5721],[110.481,-7.5617],[110.4736,-7.5523],[110.4599,-7.5421],[110.4571,-7.541],[110.4494,-7.5441],[110.4461,-7.5419],[110.4531,-7.552],[110.4572,-7.5601],[110.4597,-7.5701],[110.4606,-7.5805],[110.4595,-7.5828],[110.4633,-7.6047],[110.4685,-7.6178],[110.4685,-7.6372],[110.4719,-7.6533],[110.4918,-7.7421],[110.4918,-7.7668],[110.5071,-7.769],[110.5113,-7.7729],[110.5112,-7.7774],[110.5295,-7.7908],[110.5304,-7.7979],[110.5364,-7.7979],[110.544,-7.7938],[110.5459,-7.7916],[110.5558,-7.7947],[110.5535,-7.7871],[110.5559,-7.7841],[110.5636,-7.7824],[110.5779,-7.7896],[110.5848,-7.7909],[110.5839,-7.798],[110.5762,-7.8019],[110.5762,-7.806],[110.5817,-7.8055],[110.5861,-7.8028],[110.5891,-7.8072],[110.6001,-7.8067],[110.5987,-7.8001],[110.6042,-7.7983],[110.6121,-7.7988],[110.6161,-7.8021],[110.6192,-7.799],[110.6267,-7.8029],[110.6301,-7.8012],[110.6382,-7.8004],[110.647,-7.7952],[110.6506,-7.7995],[110.658,-7.8048],[110.6605,-7.8021],[110.6636,-7.7938],[110.6729,-7.7865],[110.6766,-7.7913],[110.6719,-7.7968],[110.6749,-7.8032],[110.6796,-7.8065],[110.6908,-7.8082],[110.6995,-7.8075],[110.7087,-7.8053],[110.7142,-7.799],[110.7125,-7.7929],[110.7124,-7.7901],[110.725,-7.7772],[110.73,-7.7642],[110.7404,-7.7605],[110.741,-7.7563],[110.7468,-7.7492],[110.751,-7.7412],[110.7588,-7.7343],[110.7589,-7.7295],[110.7639,-7.7247],[110.7636,-7.7198],[110.7666,-7.7153],[110.7696,-7.7168],[110.7722,-7.7124],[110.7693,-7.7101],[110.7679,-7.7041],[110.7698,-7.6987],[110.7742,-7.6934],[110.7709,-7.6919],[110.7699,-7.6847],[110.7761,-7.6824],[110.7792,-7.667],[110.7811,-7.6621],[110.7856,-7.6612],[110.7943,-7.6566],[110.7919,-7.6522],[110.792,-7.647],[110.799,-7.6443],[110.7876,-7.642],[110.7761,-7.6338],[110.7727,-7.6401],[110.7635,-7.636],[110.7684,-7.6267],[110.7646,-7.6198],[110.7612,-7.6199],[110.7449,-7.6162],[110.7458,-7.6113],[110.7423,-7.61],[110.7471,-7.6039],[110.7439,-7.5993],[110.7338,-7.5987],[110.7201,-7.595],[110.7177,-7.5974],[110.7079,-7.5957],[110.703,-7.5935]]}},{"type":"Feature","properties":{"mhid":"1332:204","alt_name":"KABUPATEN SUKOHARJO","latitude":-7.68333,"longitude":110.83333,"sample_value":58},"geometry":{"type":"LineString","coordinates":[[110.771,-7.5453],[110.766,-7.5433],[110.7589,-7.5499],[110.7551,-7.5461],[110.7486,-7.5439],[110.7377,-7.5383],[110.7255,-7.538],[110.7179,-7.5412],[110.7134,-7.5416],[110.7116,-7.5479],[110.7218,-7.5502],[110.7264,-7.5538],[110.7188,-7.5615],[110.7215,-7.5659],[110.7167,-7.5737],[110.7134,-7.5838],[110.703,-7.5935],[110.7079,-7.5957],[110.7177,-7.5974],[110.7201,-7.595],[110.7338,-7.5987],[110.7439,-7.5993],[110.7471,-7.6039],[110.7423,-7.61],[110.7458,-7.6113],[110.7449,-7.6162],[110.7612,-7.6199],[110.7646,-7.6198],[110.7684,-7.6267],[110.7635,-7.636],[110.7727,-7.6401],[110.7761,-7.6338],[110.7876,-7.642],[110.799,-7.6443],[110.792,-7.647],[110.7919,-7.6522],[110.7943,-7.6566],[110.7856,-7.6612],[110.7811,-7.6621],[110.7792,-7.667],[110.7761,-7.6824],[110.7699,-7.6847],[110.7709,-7.6919],[110.7742,-7.6934],[110.7698,-7.6987],[110.7679,-7.7041],[110.7693,-7.7101],[110.7722,-7.7124],[110.7696,-7.7168],[110.7666,-7.7153],[110.7636,-7.7198],[110.7639,-7.7247],[110.7589,-7.7295],[110.7588,-7.7343],[110.751,-7.7412],[110.7468,-7.7492],[110.741,-7.7563],[110.7404,-7.7605],[110.73,-7.7642],[110.725,-7.7772],[110.7124,-7.7901],[110.7125,-7.7929],[110.7155,-7.7921],[110.7239,-7.7944],[110.7366,-7.8044],[110.743,-7.8083],[110.7426,-7.8129],[110.7454,-7.8184],[110.7516,-7.8201],[110.7513,-7.823],[110.7564,-7.8273],[110.7632,-7.8244],[110.763,-7.8148],[110.7702,-7.8081],[110.7857,-7.8167],[110.7828,-7.81],[110.7831,-7.804],[110.788,-7.7975],[110.7939,-7.7949],[110.7971,-7.7961],[110.8064,-7.7909],[110.8146,-7.7941],[110.8256,-7.795],[110.8271,-7.7973],[110.833,-7.7954],[110.8383,-7.798],[110.8408,-7.8054],[110.8461,-7.8133],[110.85,-7.8152],[110.8558,-7.8127],[110.8574,-7.81],[110.8564,-7.8019],[110.8601,-7.7962],[110.8571,-7.7875],[110.8547,-7.7847],[110.8582,-7.7802],[110.8569,-7.7766],[110.858,-7.7706],[110.8623,-7.7624],[110.8602,-7.7592],[110.87,-7.7503],[110.8782,-7.7518],[110.8834,-7.7506],[110.904,-7.7527],[110.9104,-7.7557],[110.9235,-7.7705],[110.9291,-7.7709],[110.932,-7.7775],[110.9368,-7.7796],[110.9401,-7.7703],[110.9409,-7.7563],[110.9399,-7.7466],[110.9413,-7.7397],[110.9452,-7.7125],[110.9478,-7.7086],[110.9494,-7.6953],[110.9538,-7.6837],[110.9477,-7.6699],[110.9465,-7.6532],[110.9446,-7.641],[110.943,-7.6392],[110.9477,-7.6273],[110.9476,-7.6226],[110.9448,-7.6179],[110.9357,-7.6174],[110.93,-7.6153],[110.9163,-7.6126],[110.9046,-7.6142],[110.9067,-7.6067],[110.9084,-7.5957],[110.9123,-7.5842],[110.8882,-7.5753],[110.8684,-7.5667],[110.861,-7.5671],[110.8549,-7.5699],[110.8536,-7.5749],[110.8479,-7.5726],[110.8411,-7.5821],[110.8406,-7.5895],[110.8323,-7.5949],[110.8296,-7.593],[110.8221,-7.5952],[110.8188,-7.5947],[110.8177,-7.5889],[110.8066,-7.5796],[110.8046,-7.5737],[110.8018,-7.5715],[110.7934,-7.5722],[110.7878,-7.5751],[110.7839,-7.5719],[110.7841,-7.5645],[110.7782,-7.5605],[110.7786,-7.5543],[110.7691,-7.5514],[110.771,-7.5453]]}},{"type":"Feature","properties":{"mhid":"1332:205","alt_name":"KABUPATEN WONOGIRI","latitude":-7.91667,"longitude":111,"sample_value":684},"geometry":{"type":"LineString","coordinates":[[111.2899,-7.794],[111.2854,-7.794],[111.2828,-7.7898],[111.2832,-7.7819],[111.2879,-7.7702],[111.2936,-7.7607],[111.2891,-7.75],[111.2901,-7.7429],[111.2868,-7.743],[111.283,-7.7381],[111.2745,-7.7349],[111.267,-7.7433],[111.2611,-7.7442],[111.2596,-7.7468],[111.2521,-7.7468],[111.2491,-7.742],[111.244,-7.7414],[111.2388,-7.7509],[111.2331,-7.7465],[111.2304,-7.7467],[111.2248,-7.7409],[111.2157,-7.7378],[111.2136,-7.7334],[111.2155,-7.7284],[111.2139,-7.723],[111.2082,-7.7213],[111.2015,-7.7212],[111.1916,-7.7125],[111.1819,-7.7123],[111.1791,-7.7144],[111.1667,-7.7165],[111.1631,-7.7137],[111.1513,-7.7148],[111.1388,-7.7195],[111.1329,-7.7229],[111.1287,-7.7274],[111.1212,-7.7381],[111.1191,-7.744],[111.1128,-7.7468],[111.1091,-7.7376],[111.1009,-7.7465],[111.0936,-7.7517],[111.0793,-7.7482],[111.0728,-7.7519],[111.0691,-7.757],[111.062,-7.756],[111.0573,-7.7588],[111.0505,-7.7593],[111.0479,-7.7649],[111.0491,-7.7725],[111.0516,-7.7781],[111.0453,-7.7828],[111.0376,-7.7757],[111.0376,-7.7715],[111.0322,-7.7671],[111.0306,-7.7631],[111.0206,-7.7633],[111.0172,-7.7597],[111.009,-7.7623],[111.0032,-7.7657],[110.9959,-7.764],[110.989,-7.7647],[110.9804,-7.7618],[110.9732,-7.7653],[110.9716,-7.759],[110.9746,-7.753],[110.9697,-7.7483],[110.9706,-7.7446],[110.9667,-7.7386],[110.9617,-7.7376],[110.9587,-7.7339],[110.9413,-7.7397],[110.9399,-7.7466],[110.9409,-7.7563],[110.9401,-7.7703],[110.9368,-7.7796],[110.932,-7.7775],[110.9291,-7.7709],[110.9235,-7.7705],[110.9104,-7.7557],[110.904,-7.7527],[110.8834,-7.7506],[110.8782,-7.7518],[110.87,-7.7503],[110.8602,-7.7592],[110.8623,-7.7624],[110.858,-7.7706],[110.8569,-7.7766],[110.8582,-7.7802],[110.8547,-7.7847],[110.8571,-7.7875],[110.8601,-7.7962],[110.8564,-7.8019],[110.8574,-7.81],[110.8558,-7.8127],[110.85,-7.8152],[110.8461,-7.8133],[110.8408,-7.8054],[110.8383,-7.798],[110.833,-7.7954],[110.8271,-7.7973],[110.8256,-7.795],[110.8146,-7.7941],[110.8064,-7.7909],[110.7971,-7.7961],[110.7939,-7.7949],[110.788,-7.7975],[110.7831,-7.804],[110.7828,-7.81],[110.7857,-7.8167],[110.7825,-7.8464],[110.7839,-7.8517],[110.7883,-7.855],[110.7841,-7.8578],[110.783,-7.8619],[110.7839,-7.8724],[110.7783,-7.8774],[110.7755,-7.8867],[110.7778,-7.8919],[110.7743,-7.8955],[110.771,-7.902],[110.7695,-7.9147],[110.7721,-7.9268],[110.7705,-7.9317],[110.7701,-7.9423],[110.7713,-7.9474],[110.7683,-7.9556],[110.7692,-7.9616],[110.7679,-7.97],[110.7683,-7.9802],[110.7668,-7.988],[110.7622,-7.9918],[110.7605,-7.9982],[110.7617,-8.0035],[110.7569,-8.0123],[110.7542,-8.0258],[110.7681,-8.0467],[110.7719,-8.0582],[110.7785,-8.0676],[110.7793,-8.083],[110.7876,-8.1032],[110.7899,-8.1255],[110.788,-8.1279],[110.7855,-8.1397],[110.7856,-8.1489],[110.7902,-8.1583],[110.7962,-8.1623],[110.8003,-8.1621],[110.8099,-8.1554],[110.8123,-8.1467],[110.8189,-8.1449],[110.8164,-8.1541],[110.8184,-8.1586],[110.8231,-8.1613],[110.8276,-8.171],[110.8332,-8.1736],[110.8326,-8.1797],[110.8342,-8.1906],[110.8289,-8.1956],[110.8298,-8.2014],[110.832,-8.2036],[110.8375,-8.203],[110.8391,-8.2059],[110.8476,-8.2037],[110.8533,-8.2062],[110.857,-8.2049],[110.8626,-8.2065],[110.8727,-8.2058],[110.8812,-8.2114],[110.8866,-8.2101],[110.8984,-8.2119],[110.9087,-8.211],[110.9089,-8.2061],[110.9053,-8.1984],[110.9039,-8.1907],[110.8995,-8.1871],[110.9013,-8.1832],[110.8988,-8.1774],[110.9019,-8.1704],[110.8997,-8.1665],[110.9029,-8.1601],[110.9026,-8.1534],[110.9073,-8.1437],[110.9102,-8.1344],[110.9083,-8.1255],[110.9097,-8.1231],[110.9169,-8.1211],[110.9212,-8.1179],[110.9253,-8.1071],[110.9316,-8.1015],[110.9352,-8.0939],[110.9428,-8.0875],[110.942,-8.0838],[110.9479,-8.0725],[110.9516,-8.0704],[110.9532,-8.0624],[110.9588,-8.0633],[110.9751,-8.0733],[110.9822,-8.0731],[110.9942,-8.0824],[110.9999,-8.0805],[111.0015,-8.0779],[111.0182,-8.0764],[111.0257,-8.0806],[111.0371,-8.08],[111.0409,-8.076],[111.0498,-8.0746],[111.0582,-8.0677],[111.0643,-8.0677],[111.0656,-8.0633],[111.072,-8.0633],[111.0668,-8.0561],[111.0691,-8.0461],[111.0672,-8.0371],[111.0692,-8.0318],[111.0751,-8.0251],[111.0812,-8.0253],[111.0885,-8.0292],[111.0918,-8.0334],[111.0905,-8.041],[111.0913,-8.0465],[111.0887,-8.0601],[111.096,-8.0611],[111.1062,-8.0592],[111.1135,-8.0567],[111.1167,-8.059],[111.1264,-8.061],[111.1272,-8.0474],[111.1261,-8.0391],[111.1337,-8.0257],[111.1362,-8.0236],[111.1352,-8.0131],[111.1305,-8.0079],[111.1321,-7.9977],[111.1287,-7.9917],[111.1284,-7.9838],[111.1252,-7.9719],[111.1329,-7.9739],[111.1375,-7.9696],[111.1458,-7.9671],[111.1494,-7.9546],[111.1489,-7.9508],[111.1433,-7.9426],[111.1448,-7.935],[111.1503,-7.9269],[111.1549,-7.9225],[111.1645,-7.924],[111.1689,-7.9215],[111.1781,-7.9219],[111.1827,-7.9188],[111.1882,-7.9226],[111.1934,-7.9334],[111.1928,-7.9395],[111.1999,-7.9397],[111.2092,-7.9376],[111.2131,-7.9353],[111.2144,-7.928],[111.2165,-7.926],[111.2233,-7.9297],[111.2357,-7.9446],[111.2464,-7.9488],[111.2565,-7.9489],[111.2686,-7.9443],[111.2733,-7.9374],[111.2746,-7.9323],[111.2731,-7.9258],[111.2797,-7.9178],[111.2876,-7.9039],[111.2926,-7.888],[111.2995,-7.878],[111.2967,-7.8704],[111.2978,-7.862],[111.2997,-7.8599],[111.3085,-7.8584],[111.3193,-7.8544],[111.3185,-7.8479],[111.3144,-7.8431],[111.3058,-7.8411],[111.3038,-7.8313],[111.3069,-7.8242],[111.3016,-7.8123],[111.2987,-7.8015],[111.2899,-7.794]]}},{"type":"Feature","properties":{"mhid":"1332:206","alt_name":"KABUPATEN KARANGANYAR","latitude":-7.62806,"longitude":111.0625,"sample_value":741},"geometry":{"type":"LineString","coordinates":[[110.771,-7.5453],[110.7773,-7.5467],[110.7815,-7.5454],[110.7872,-7.5482],[110.7965,-7.5486],[110.8007,-7.5339],[110.7881,-7.5265],[110.781,-7.5238],[110.7734,-7.5263],[110.7641,-7.5267],[110.7616,-7.5255],[110.7487,-7.5233],[110.7423,-7.5275],[110.7325,-7.5286],[110.7267,-7.5261],[110.7206,-7.5317],[110.7093,-7.5323],[110.7084,-7.5402],[110.7134,-7.5416],[110.7179,-7.5412],[110.7255,-7.538],[110.7377,-7.5383],[110.7486,-7.5439],[110.7551,-7.5461],[110.7589,-7.5499],[110.766,-7.5433],[110.771,-7.5453]]}},{"type":"Feature","properties":{"mhid":"1332:206","alt_name":"KABUPATEN KARANGANYAR","latitude":-7.62806,"longitude":111.0625,"sample_value":741},"geometry":{"type":"LineString","coordinates":[[111.0569,-7.5093],[111.0494,-7.5081],[111.0403,-7.5113],[111.0415,-7.5214],[111.0453,-7.5264],[111.0494,-7.5373],[111.0442,-7.5372],[111.0318,-7.5341],[111.0243,-7.5277],[111.0211,-7.5319],[111.0135,-7.5282],[111.0091,-7.5291],[111.0026,-7.5247],[110.9924,-7.5224],[110.9758,-7.5158],[110.97,-7.5111],[110.9578,-7.5044],[110.9451,-7.4966],[110.9205,-7.4909],[110.9181,-7.4961],[110.8951,-7.4935],[110.8925,-7.4896],[110.8888,-7.4917],[110.8823,-7.491],[110.8829,-7.4872],[110.8724,-7.4886],[110.8634,-7.4782],[110.863,-7.4728],[110.8575,-7.4731],[110.8575,-7.4695],[110.8476,-7.469],[110.8427,-7.4644],[110.8408,-7.4596],[110.8277,-7.4575],[110.8186,-7.4596],[110.8093,-7.4583],[110.8048,-7.4593],[110.8063,-7.49],[110.807,-7.4937],[110.8157,-7.5232],[110.8174,-7.5289],[110.8235,-7.5279],[110.8393,-7.5333],[110.8491,-7.5332],[110.8561,-7.5371],[110.8578,-7.5407],[110.8627,-7.5414],[110.8609,-7.5467],[110.8683,-7.5463],[110.866,-7.559],[110.8621,-7.5611],[110.861,-7.5671],[110.8684,-7.5667],[110.8882,-7.5753],[110.9123,-7.5842],[110.9084,-7.5957],[110.9067,-7.6067],[110.9046,-7.6142],[110.9163,-7.6126],[110.93,-7.6153],[110.9357,-7.6174],[110.9448,-7.6179],[110.9476,-7.6226],[110.9477,-7.6273],[110.943,-7.6392],[110.9446,-7.641],[110.9465,-7.6532],[110.9477,-7.6699],[110.9538,-7.6837],[110.9494,-7.6953],[110.9478,-7.7086],[110.9452,-7.7125],[110.9413,-7.7397],[110.9587,-7.7339],[110.9617,-7.7376],[110.9667,-7.7386],[110.9706,-7.7446],[110.9697,-7.7483],[110.9746,-7.753],[110.9716,-7.759],[110.9732,-7.7653],[110.9804,-7.7618],[110.989,-7.7647],[110.9959,-7.764],[111.0032,-7.7657],[111.009,-7.7623],[111.0172,-7.7597],[111.0206,-7.7633],[111.0306,-7.7631],[111.0322,-7.7671],[111.0376,-7.7715],[111.0376,-7.7757],[111.0453,-7.7828],[111.0516,-7.7781],[111.0491,-7.7725],[111.0479,-7.7649],[111.0505,-7.7593],[111.0573,-7.7588],[111.062,-7.756],[111.0691,-7.757],[111.0728,-7.7519],[111.0793,-7.7482],[111.0936,-7.7517],[111.1009,-7.7465],[111.1091,-7.7376],[111.1128,-7.7468],[111.1191,-7.744],[111.1212,-7.7381],[111.1287,-7.7274],[111.1329,-7.7229],[111.1388,-7.7195],[111.1513,-7.7148],[111.1631,-7.7137],[111.1667,-7.7165],[111.1791,-7.7144],[111.1819,-7.7123],[111.1841,-7.6999],[111.182,-7.6952],[111.1831,-7.691],[111.1892,-7.686],[111.1906,-7.6761],[111.1875,-7.6599],[111.1896,-7.6486],[111.1887,-7.6423],[111.1899,-7.6358],[111.1943,-7.6288],[111.1945,-7.6204],[111.193,-7.6138],[111.1856,-7.6054],[111.1784,-7.6001],[111.1731,-7.5918],[111.169,-7.5902],[111.1678,-7.5841],[111.1633,-7.5803],[111.1622,-7.5748],[111.1531,-7.5627],[111.1522,-7.5554],[111.1538,-7.5498],[111.1501,-7.543],[111.1509,-7.5356],[111.1478,-7.525],[111.1396,-7.5239],[111.1308,-7.5153],[111.1297,-7.511],[111.1246,-7.5134],[111.1239,-7.5191],[111.1167,-7.5214],[111.1154,-7.5292],[111.1107,-7.5305],[111.0963,-7.5292],[111.0925,-7.5306],[111.0811,-7.5274],[111.0803,-7.5156],[111.0812,-7.5082],[111.0785,-7.4985],[111.0722,-7.4987],[111.0639,-7.4958],[111.0624,-7.5037],[111.0583,-7.5038],[111.0569,-7.5093],[111.0569,-7.5093],[111.0569,-7.5093],[111.0569,-7.5093]]}},{"type":"Feature","properties":{"mhid":"1332:207","alt_name":"KABUPATEN SRAGEN","latitude":-7.41278,"longitude":110.935,"sample_value":402},"geometry":{"type":"LineString","coordinates":[[110.7969,-7.3059],[110.8036,-7.3028],[110.8142,-7.2958],[110.8116,-7.2877],[110.8043,-7.2863],[110.8123,-7.2775],[110.8094,-7.2719],[110.8102,-7.2677],[110.8042,-7.2657],[110.8037,-7.2714],[110.7942,-7.275],[110.793,-7.278],[110.7944,-7.284],[110.7927,-7.2894],[110.7969,-7.3059]]}},{"type":"Feature","properties":{"mhid":"1332:207","alt_name":"KABUPATEN SRAGEN","latitude":-7.41278,"longitude":110.935,"sample_value":402},"geometry":{"type":"LineString","coordinates":[[110.8048,-7.4593],[110.8093,-7.4583],[110.8186,-7.4596],[110.8277,-7.4575],[110.8408,-7.4596],[110.8427,-7.4644],[110.8476,-7.469],[110.8575,-7.4695],[110.8575,-7.4731],[110.863,-7.4728],[110.8634,-7.4782],[110.8724,-7.4886],[110.8829,-7.4872],[110.8823,-7.491],[110.8888,-7.4917],[110.8925,-7.4896],[110.8951,-7.4935],[110.9181,-7.4961],[110.9205,-7.4909],[110.9451,-7.4966],[110.9578,-7.5044],[110.97,-7.5111],[110.9758,-7.5158],[110.9924,-7.5224],[111.0026,-7.5247],[111.0091,-7.5291],[111.0135,-7.5282],[111.0211,-7.5319],[111.0243,-7.5277],[111.0318,-7.5341],[111.0442,-7.5372],[111.0494,-7.5373],[111.0453,-7.5264],[111.0415,-7.5214],[111.0403,-7.5113],[111.0494,-7.5081],[111.0569,-7.5093],[111.0569,-7.5093],[111.0569,-7.5093],[111.0569,-7.5093],[111.0583,-7.5038],[111.0624,-7.5037],[111.0639,-7.4958],[111.0722,-7.4987],[111.0785,-7.4985],[111.0812,-7.5082],[111.0803,-7.5156],[111.0811,-7.5274],[111.0925,-7.5306],[111.0963,-7.5292],[111.1107,-7.5305],[111.1154,-7.5292],[111.1167,-7.5214],[111.1239,-7.5191],[111.1246,-7.5134],[111.1297,-7.511],[111.1308,-7.5153],[111.1396,-7.5239],[111.1478,-7.525],[111.1502,-7.5191],[111.1481,-7.5164],[111.1499,-7.5119],[111.1537,-7.5085],[111.1518,-7.4979],[111.1448,-7.4934],[111.1436,-7.4891],[111.1352,-7.4837],[111.1366,-7.4795],[111.1332,-7.475],[111.137,-7.4668],[111.1355,-7.4628],[111.1315,-7.4606],[111.13,-7.4535],[111.1254,-7.4506],[111.1261,-7.4442],[111.1229,-7.4302],[111.1191,-7.4233],[111.1184,-7.4143],[111.1204,-7.409],[111.124,-7.4092],[111.1296,-7.4015],[111.1275,-7.399],[111.1358,-7.3898],[111.138,-7.3849],[111.1364,-7.3814],[111.1432,-7.3743],[111.1453,-7.3688],[111.1418,-7.3628],[111.1428,-7.358],[111.1406,-7.3524],[111.143,-7.3468],[111.1416,-7.3409],[111.1421,-7.3324],[111.1493,-7.3239],[111.1511,-7.3188],[111.1553,-7.3133],[111.147,-7.3083],[111.1421,-7.3074],[111.1373,-7.2999],[111.138,-7.2938],[111.1409,-7.2911],[111.1399,-7.2842],[111.1468,-7.2796],[111.1504,-7.2737],[111.1506,-7.2678],[111.1487,-7.2644],[111.1435,-7.2617],[111.1309,-7.2596],[111.1268,-7.2573],[111.1259,-7.2512],[111.1215,-7.2481],[111.1119,-7.2492],[111.1071,-7.2472],[111.098,-7.2491],[111.0956,-7.2523],[111.089,-7.2511],[111.0852,-7.2548],[111.0802,-7.2543],[111.0799,-7.2613],[111.0749,-7.2626],[111.0722,-7.2671],[111.0655,-7.2671],[111.0578,-7.2706],[111.0542,-7.2682],[111.038,-7.2663],[111.0319,-7.2617],[111.0299,-7.2567],[111.0227,-7.2592],[111.0073,-7.2609],[111.0056,-7.2661],[110.9962,-7.268],[110.9952,-7.2734],[110.9854,-7.2764],[110.9782,-7.2774],[110.9697,-7.2759],[110.9632,-7.2762],[110.9554,-7.2827],[110.9479,-7.2813],[110.9454,-7.2779],[110.9269,-7.2764],[110.9245,-7.2719],[110.9208,-7.2717],[110.9204,-7.2798],[110.9177,-7.282],[110.9116,-7.281],[110.901,-7.2821],[110.9006,-7.2758],[110.8892,-7.2727],[110.8737,-7.2758],[110.8697,-7.2731],[110.8711,-7.2689],[110.8659,-7.2655],[110.8578,-7.2711],[110.852,-7.2699],[110.8493,-7.2718],[110.8436,-7.2703],[110.834,-7.2639],[110.8306,-7.2684],[110.8312,-7.274],[110.8339,-7.2801],[110.8328,-7.2851],[110.84,-7.2872],[110.8409,-7.294],[110.8343,-7.2965],[110.8279,-7.2966],[110.8321,-7.3017],[110.8377,-7.3029],[110.8376,-7.3102],[110.8425,-7.3091],[110.8418,-7.3146],[110.8382,-7.3261],[110.8397,-7.3297],[110.8358,-7.3347],[110.8338,-7.327],[110.8392,-7.3171],[110.8305,-7.3131],[110.823,-7.3119],[110.8153,-7.3027],[110.8105,-7.303],[110.7971,-7.3078],[110.7977,-7.3117],[110.8015,-7.3173],[110.8032,-7.3275],[110.798,-7.341],[110.7967,-7.351],[110.7906,-7.3543],[110.7886,-7.362],[110.7926,-7.3627],[110.7952,-7.3667],[110.8009,-7.3696],[110.7887,-7.3773],[110.788,-7.38],[110.7815,-7.3863],[110.7784,-7.3864],[110.7726,-7.3929],[110.7736,-7.4042],[110.7727,-7.4097],[110.7734,-7.4189],[110.7699,-7.4207],[110.7745,-7.4291],[110.7825,-7.4323],[110.7723,-7.4372],[110.7708,-7.4402],[110.7743,-7.4447],[110.7794,-7.4471],[110.7808,-7.4529],[110.7961,-7.4616],[110.8048,-7.4593]]}},{"type":"Feature","properties":{"mhid":"1332:208","alt_name":"KABUPATEN GROBOGAN","latitude":-7.11667,"longitude":110.91667,"sample_value":937},"geometry":{"type":"LineString","coordinates":[[111.1153,-6.9163],[111.1053,-6.9188],[111.0967,-6.9332],[111.0904,-6.9371],[111.086,-6.9371],[111.0779,-6.9424],[111.0784,-6.9453],[111.0844,-6.9489],[111.0926,-6.9508],[111.0912,-6.9539],[111.082,-6.9593],[111.0755,-6.9613],[111.0697,-6.9691],[111.0584,-6.9687],[111.0516,-6.9675],[111.0328,-6.9723],[111.0256,-6.9695],[111.0157,-6.9686],[111.0084,-6.9698],[111,-6.969],[110.9954,-6.9702],[110.9804,-6.9701],[110.9778,-6.967],[110.9694,-6.9651],[110.9652,-6.9657],[110.9622,-6.9704],[110.9511,-6.97],[110.9466,-6.9749],[110.936,-6.9722],[110.9325,-6.974],[110.9294,-6.9713],[110.9175,-6.966],[110.9141,-6.9624],[110.9062,-6.9765],[110.9056,-6.9833],[110.9004,-6.9883],[110.887,-6.9848],[110.8846,-6.9801],[110.8858,-6.9691],[110.875,-6.9729],[110.8733,-6.9753],[110.867,-6.976],[110.8658,-6.979],[110.8569,-6.9858],[110.8515,-6.9988],[110.8475,-6.9976],[110.8461,-6.991],[110.8406,-6.9934],[110.8348,-6.9915],[110.8272,-7.0012],[110.8237,-7.0011],[110.8198,-6.996],[110.8175,-6.997],[110.8151,-7.0037],[110.8109,-7],[110.8082,-6.9923],[110.8038,-6.989],[110.8039,-6.9796],[110.8035,-6.9723],[110.7986,-6.9644],[110.7934,-6.9589],[110.7873,-6.9564],[110.7845,-6.9509],[110.7786,-6.9487],[110.7739,-6.9512],[110.774,-6.9587],[110.7766,-6.963],[110.7734,-6.9654],[110.7699,-6.9627],[110.765,-6.9655],[110.7644,-6.9693],[110.7739,-6.9759],[110.7685,-6.9801],[110.763,-6.9796],[110.7622,-6.9852],[110.7674,-6.984],[110.7725,-6.9889],[110.7668,-6.9909],[110.7678,-6.9993],[110.775,-6.9992],[110.7748,-7.0034],[110.764,-7.0047],[110.7687,-7.0098],[110.7675,-7.015],[110.7633,-7.0181],[110.7626,-7.0217],[110.7409,-7.0299],[110.7286,-7.0328],[110.6948,-7.0186],[110.6985,-7.0219],[110.6982,-7.0255],[110.6921,-7.0249],[110.6899,-7.0322],[110.6843,-7.0388],[110.6695,-7.0543],[110.6685,-7.0498],[110.6704,-7.0431],[110.6789,-7.0358],[110.6897,-7.0252],[110.6908,-7.0173],[110.6874,-7.0139],[110.6803,-7.0137],[110.6732,-7.0082],[110.6803,-6.9964],[110.6768,-6.9912],[110.6781,-6.9886],[110.6681,-6.9829],[110.6711,-6.9803],[110.6685,-6.9767],[110.6588,-6.9735],[110.6509,-6.9742],[110.6446,-6.979],[110.637,-6.9767],[110.6309,-6.9791],[110.6295,-6.9844],[110.6221,-6.9814],[110.6191,-6.9846],[110.6227,-6.9898],[110.6242,-6.995],[110.6223,-6.9982],[110.6239,-7.0044],[110.6224,-7.011],[110.6141,-7.0201],[110.6195,-7.0211],[110.6092,-7.0364],[110.6039,-7.0471],[110.5994,-7.0487],[110.5951,-7.0558],[110.594,-7.0678],[110.5875,-7.0713],[110.5796,-7.0694],[110.571,-7.0757],[110.5632,-7.0877],[110.5625,-7.0944],[110.5701,-7.0978],[110.5757,-7.1042],[110.579,-7.1116],[110.585,-7.1145],[110.5927,-7.1153],[110.5944,-7.1199],[110.5927,-7.1248],[110.5801,-7.1324],[110.5583,-7.1397],[110.5609,-7.1434],[110.5574,-7.1467],[110.5578,-7.1525],[110.5516,-7.1671],[110.5473,-7.1683],[110.542,-7.1772],[110.5459,-7.1857],[110.5442,-7.1889],[110.5463,-7.1928],[110.5531,-7.1938],[110.5561,-7.1872],[110.5589,-7.1918],[110.5709,-7.1893],[110.5762,-7.1946],[110.5767,-7.1993],[110.5841,-7.2028],[110.5934,-7.1994],[110.6008,-7.1999],[110.6008,-7.1951],[110.6071,-7.1951],[110.6134,-7.2019],[110.6116,-7.2051],[110.6121,-7.2125],[110.6164,-7.2177],[110.6253,-7.2173],[110.6276,-7.2194],[110.6441,-7.219],[110.6476,-7.2224],[110.6556,-7.2259],[110.6615,-7.2241],[110.668,-7.2275],[110.6692,-7.2319],[110.6738,-7.2376],[110.683,-7.2416],[110.6901,-7.2412],[110.6946,-7.2307],[110.6935,-7.2283],[110.6978,-7.2209],[110.7058,-7.2156],[110.7032,-7.208],[110.6969,-7.2078],[110.6928,-7.205],[110.693,-7.199],[110.6893,-7.192],[110.6922,-7.1872],[110.7041,-7.1851],[110.7071,-7.1802],[110.7237,-7.165],[110.7278,-7.1572],[110.7279,-7.1528],[110.7345,-7.1437],[110.7421,-7.1392],[110.7453,-7.1402],[110.75,-7.1488],[110.7439,-7.1546],[110.7438,-7.1643],[110.7578,-7.1704],[110.76,-7.1751],[110.7641,-7.1743],[110.7694,-7.1774],[110.7673,-7.1801],[110.7609,-7.1798],[110.7602,-7.1864],[110.7684,-7.1834],[110.7704,-7.1864],[110.7777,-7.1862],[110.7816,-7.1892],[110.7855,-7.1952],[110.7817,-7.2021],[110.7802,-7.2135],[110.7728,-7.224],[110.7704,-7.2301],[110.7719,-7.2355],[110.7666,-7.2441],[110.7821,-7.245],[110.7888,-7.2435],[110.7936,-7.2404],[110.808,-7.2287],[110.8116,-7.2191],[110.8211,-7.2147],[110.8263,-7.2088],[110.8272,-7.2028],[110.8321,-7.1985],[110.8385,-7.1985],[110.8495,-7.2017],[110.8586,-7.2123],[110.8583,-7.2158],[110.8531,-7.2172],[110.8459,-7.2144],[110.8404,-7.2195],[110.8278,-7.2367],[110.8279,-7.2475],[110.8358,-7.2544],[110.8368,-7.2583],[110.8434,-7.2634],[110.8444,-7.2663],[110.852,-7.2699],[110.8578,-7.2711],[110.8659,-7.2655],[110.8711,-7.2689],[110.8697,-7.2731],[110.8737,-7.2758],[110.8892,-7.2727],[110.9006,-7.2758],[110.901,-7.2821],[110.9116,-7.281],[110.9177,-7.282],[110.9204,-7.2798],[110.9208,-7.2717],[110.9245,-7.2719],[110.9269,-7.2764],[110.9454,-7.2779],[110.9479,-7.2813],[110.9554,-7.2827],[110.9632,-7.2762],[110.9697,-7.2759],[110.9782,-7.2774],[110.9854,-7.2764],[110.9952,-7.2734],[110.9962,-7.268],[111.0056,-7.2661],[111.0073,-7.2609],[111.0227,-7.2592],[111.0299,-7.2567],[111.0319,-7.2617],[111.038,-7.2663],[111.0542,-7.2682],[111.0578,-7.2706],[111.0655,-7.2671],[111.0722,-7.2671],[111.0749,-7.2626],[111.0799,-7.2613],[111.0802,-7.2543],[111.0852,-7.2548],[111.089,-7.2511],[111.0956,-7.2523],[111.098,-7.2491],[111.1071,-7.2472],[111.1119,-7.2492],[111.1215,-7.2481],[111.1259,-7.2512],[111.1268,-7.2573],[111.1309,-7.2596],[111.1435,-7.2617],[111.1487,-7.2644],[111.1557,-7.2579],[111.1671,-7.2606],[111.1684,-7.2634],[111.174,-7.2627],[111.1777,-7.2644],[111.1822,-7.2598],[111.1913,-7.2585],[111.1992,-7.2555],[111.2006,-7.2449],[111.2083,-7.2449],[111.2124,-7.2469],[111.2193,-7.2467],[111.2249,-7.2444],[111.2344,-7.244],[111.2379,-7.241],[111.2368,-7.2307],[111.2394,-7.2268],[111.2443,-7.2075],[111.2435,-7.201],[111.246,-7.191],[111.2451,-7.1869],[111.2467,-7.1815],[111.2452,-7.1771],[111.2468,-7.1718],[111.2414,-7.1659],[111.2404,-7.1403],[111.2379,-7.1379],[111.2336,-7.1282],[111.2325,-7.1213],[111.2237,-7.1042],[111.223,-7.094],[111.2208,-7.0847],[111.2149,-7.0779],[111.2173,-7.071],[111.2153,-7.0643],[111.2157,-7.0577],[111.2188,-7.0496],[111.2167,-7.0462],[111.218,-7.0305],[111.2132,-7.0209],[111.2078,-7.0213],[111.2011,-7.0171],[111.1969,-7.0068],[111.1918,-7.0043],[111.1871,-6.9973],[111.1827,-6.9964],[111.1799,-6.9932],[111.1737,-6.9911],[111.1714,-6.9855],[111.1611,-6.9808],[111.1546,-6.9836],[111.1472,-6.9807],[111.1401,-6.9811],[111.1341,-6.9776],[111.1212,-6.9766],[111.1136,-6.979],[111.1113,-6.978],[111.1099,-6.97],[111.1068,-6.9637],[111.1094,-6.9494],[111.1132,-6.9393],[111.1124,-6.9343],[111.113,-6.9235],[111.1153,-6.9163]]}},{"type":"Feature","properties":{"mhid":"1332:209","alt_name":"KABUPATEN BLORA","latitude":-7.06667,"longitude":111.38333,"sample_value":392},"geometry":{"type":"LineString","coordinates":[[111.2635,-6.8554],[111.2608,-6.8538],[111.2543,-6.8583],[111.2448,-6.8627],[111.2422,-6.8617],[111.2388,-6.8506],[111.23,-6.8496],[111.2249,-6.8461],[111.2228,-6.8481],[111.2238,-6.8632],[111.2218,-6.8717],[111.2165,-6.873],[111.2129,-6.8703],[111.2044,-6.8778],[111.2008,-6.8892],[111.2012,-6.8944],[111.1983,-6.8983],[111.1833,-6.8986],[111.1758,-6.9056],[111.1686,-6.906],[111.1525,-6.9101],[111.1499,-6.9059],[111.144,-6.9033],[111.1438,-6.9108],[111.142,-6.9164],[111.1381,-6.9208],[111.1324,-6.9203],[111.125,-6.9135],[111.1203,-6.913],[111.1153,-6.9163],[111.113,-6.9235],[111.1124,-6.9343],[111.1132,-6.9393],[111.1094,-6.9494],[111.1068,-6.9637],[111.1099,-6.97],[111.1113,-6.978],[111.1136,-6.979],[111.1212,-6.9766],[111.1341,-6.9776],[111.1401,-6.9811],[111.1472,-6.9807],[111.1546,-6.9836],[111.1611,-6.9808],[111.1714,-6.9855],[111.1737,-6.9911],[111.1799,-6.9932],[111.1827,-6.9964],[111.1871,-6.9973],[111.1918,-7.0043],[111.1969,-7.0068],[111.2011,-7.0171],[111.2078,-7.0213],[111.2132,-7.0209],[111.218,-7.0305],[111.2167,-7.0462],[111.2188,-7.0496],[111.2157,-7.0577],[111.2153,-7.0643],[111.2173,-7.071],[111.2149,-7.0779],[111.2208,-7.0847],[111.223,-7.094],[111.2237,-7.1042],[111.2325,-7.1213],[111.2336,-7.1282],[111.2379,-7.1379],[111.2404,-7.1403],[111.2414,-7.1659],[111.2468,-7.1718],[111.2452,-7.1771],[111.2467,-7.1815],[111.2451,-7.1869],[111.246,-7.191],[111.2435,-7.201],[111.2443,-7.2075],[111.2394,-7.2268],[111.2368,-7.2307],[111.2379,-7.241],[111.2344,-7.244],[111.2249,-7.2444],[111.2193,-7.2467],[111.2124,-7.2469],[111.2168,-7.2482],[111.2217,-7.2525],[111.2237,-7.2618],[111.23,-7.2687],[111.2353,-7.2703],[111.2442,-7.2855],[111.2516,-7.2841],[111.2551,-7.2876],[111.2621,-7.287],[111.2678,-7.2895],[111.2845,-7.2888],[111.2936,-7.2965],[111.2958,-7.3005],[111.309,-7.3024],[111.3088,-7.305],[111.3157,-7.3055],[111.3217,-7.3117],[111.3331,-7.3176],[111.3329,-7.3206],[111.3411,-7.3183],[111.347,-7.3228],[111.3454,-7.3281],[111.3471,-7.3349],[111.3595,-7.3307],[111.3675,-7.3348],[111.3686,-7.3403],[111.3739,-7.3442],[111.3824,-7.3466],[111.3861,-7.3447],[111.3953,-7.3464],[111.3992,-7.3491],[111.403,-7.3479],[111.4099,-7.3493],[111.4126,-7.3477],[111.421,-7.3536],[111.4264,-7.3561],[111.4313,-7.3642],[111.4399,-7.3699],[111.4525,-7.3748],[111.4626,-7.3747],[111.4631,-7.371],[111.4568,-7.3682],[111.4618,-7.3623],[111.4622,-7.3571],[111.459,-7.3527],[111.4555,-7.3521],[111.4501,-7.3552],[111.4469,-7.3607],[111.4437,-7.3601],[111.4422,-7.3488],[111.4498,-7.3432],[111.4586,-7.3463],[111.4602,-7.3409],[111.4508,-7.3405],[111.4461,-7.3367],[111.45,-7.3299],[111.4574,-7.3245],[111.4559,-7.3193],[111.4474,-7.3135],[111.4413,-7.3154],[111.4322,-7.3147],[111.426,-7.3127],[111.4246,-7.3071],[111.4301,-7.3044],[111.4354,-7.298],[111.438,-7.2925],[111.4415,-7.2903],[111.4442,-7.2779],[111.4399,-7.2747],[111.4381,-7.2698],[111.4434,-7.2678],[111.447,-7.2752],[111.4514,-7.2742],[111.4509,-7.2571],[111.4515,-7.2484],[111.4565,-7.2504],[111.4556,-7.2581],[111.4601,-7.2618],[111.4691,-7.2623],[111.4754,-7.2526],[111.4786,-7.2522],[111.4875,-7.2611],[111.491,-7.2582],[111.4868,-7.2539],[111.4855,-7.25],[111.4878,-7.2431],[111.4917,-7.2438],[111.4984,-7.2481],[111.504,-7.2476],[111.5134,-7.2389],[111.523,-7.2364],[111.5255,-7.2303],[111.5311,-7.2265],[111.5415,-7.2276],[111.5432,-7.2242],[111.5368,-7.2183],[111.5423,-7.214],[111.549,-7.2053],[111.5557,-7.2018],[111.5589,-7.2062],[111.5659,-7.2075],[111.5692,-7.1989],[111.5639,-7.1906],[111.569,-7.1861],[111.5758,-7.1883],[111.5874,-7.1842],[111.5841,-7.177],[111.5844,-7.1708],[111.587,-7.1654],[111.598,-7.156],[111.5985,-7.1454],[111.6106,-7.142],[111.6121,-7.1384],[111.6077,-7.1367],[111.6092,-7.1326],[111.6079,-7.1282],[111.6117,-7.1239],[111.6137,-7.1164],[111.6132,-7.1109],[111.6203,-7.1103],[111.6163,-7.1045],[111.616,-7.0986],[111.6133,-7.0896],[111.6125,-7.0822],[111.6187,-7.0736],[111.6225,-7.0751],[111.6258,-7.0728],[111.629,-7.0639],[111.629,-7.0597],[111.6217,-7.0534],[111.6173,-7.0473],[111.6182,-7.0409],[111.6134,-7.0352],[111.6159,-7.0319],[111.6134,-7.0244],[111.6152,-7.0169],[111.613,-7.0107],[111.6156,-7.0056],[111.6154,-7.0008],[111.6178,-6.993],[111.6234,-6.9875],[111.6219,-6.9822],[111.6108,-6.975],[111.6047,-6.967],[111.5943,-6.9659],[111.5874,-6.9636],[111.5739,-6.9544],[111.5701,-6.9467],[111.5736,-6.9458],[111.5768,-6.9412],[111.575,-6.9379],[111.5763,-6.9313],[111.5736,-6.9287],[111.5763,-6.9237],[111.575,-6.9181],[111.564,-6.9133],[111.5561,-6.9141],[111.5533,-6.9098],[111.5481,-6.9107],[111.542,-6.9077],[111.5386,-6.9004],[111.5334,-6.9005],[111.5167,-6.8964],[111.5166,-6.8925],[111.5134,-6.8894],[111.5098,-6.8919],[111.5052,-6.8908],[111.4979,-6.8941],[111.4886,-6.8816],[111.483,-6.8827],[111.4767,-6.8865],[111.4702,-6.8822],[111.4659,-6.8811],[111.4604,-6.8824],[111.4584,-6.8778],[111.4544,-6.8763],[111.443,-6.8813],[111.4349,-6.8902],[111.4255,-6.8941],[111.4129,-6.8887],[111.4142,-6.8844],[111.4052,-6.8848],[111.3997,-6.8912],[111.3913,-6.8926],[111.3851,-6.8922],[111.3812,-6.8901],[111.3777,-6.8915],[111.3624,-6.8845],[111.3478,-6.8859],[111.3412,-6.8807],[111.3423,-6.8775],[111.3301,-6.8687],[111.3264,-6.8685],[111.3136,-6.8648],[111.2904,-6.8656],[111.2834,-6.8646],[111.2726,-6.8583],[111.2635,-6.8554]]}},{"type":"Feature","properties":{"mhid":"1332:210","alt_name":"KABUPATEN REMBANG","latitude":-6.78333,"longitude":111.46667,"sample_value":322},"geometry":{"type":"LineString","coordinates":[[111.6914,-6.7538],[111.6635,-6.7311],[111.6424,-6.712],[111.6195,-6.6923],[111.5918,-6.6666],[111.5663,-6.6439],[111.5626,-6.6394],[111.5486,-6.637],[111.5326,-6.632],[111.5292,-6.6302],[111.5118,-6.6331],[111.5004,-6.6272],[111.4927,-6.6207],[111.4892,-6.6252],[111.4791,-6.6289],[111.4713,-6.6375],[111.4661,-6.6411],[111.4648,-6.6448],[111.4667,-6.6488],[111.4665,-6.6595],[111.4606,-6.6643],[111.4431,-6.6706],[111.4417,-6.6724],[111.423,-6.6816],[111.4154,-6.6844],[111.4073,-6.6895],[111.3944,-6.6944],[111.3886,-6.6984],[111.3836,-6.6985],[111.3812,-6.702],[111.3738,-6.7013],[111.3572,-6.7044],[111.3523,-6.7032],[111.341,-6.7026],[111.3316,-6.7009],[111.3193,-6.6971],[111.3139,-6.6982],[111.3053,-6.6966],[111.2927,-6.6878],[111.2792,-6.6885],[111.2743,-6.6911],[111.2679,-6.6909],[111.2588,-6.6873],[111.2511,-6.6916],[111.243,-6.6923],[111.2341,-6.6867],[111.2348,-6.6961],[111.2368,-6.703],[111.2399,-6.7054],[111.2409,-6.7135],[111.2394,-6.72],[111.2358,-6.7264],[111.2384,-6.7336],[111.236,-6.7412],[111.2381,-6.7472],[111.2364,-6.7519],[111.2396,-6.7578],[111.2463,-6.7627],[111.2464,-6.7748],[111.2481,-6.7872],[111.2447,-6.7964],[111.251,-6.8019],[111.2502,-6.8051],[111.2588,-6.8118],[111.2654,-6.8247],[111.2705,-6.8311],[111.2621,-6.8351],[111.2599,-6.8396],[111.2638,-6.8484],[111.2635,-6.8554],[111.2726,-6.8583],[111.2834,-6.8646],[111.2904,-6.8656],[111.3136,-6.8648],[111.3264,-6.8685],[111.3301,-6.8687],[111.3423,-6.8775],[111.3412,-6.8807],[111.3478,-6.8859],[111.3624,-6.8845],[111.3777,-6.8915],[111.3812,-6.8901],[111.3851,-6.8922],[111.3913,-6.8926],[111.3997,-6.8912],[111.4052,-6.8848],[111.4142,-6.8844],[111.4129,-6.8887],[111.4255,-6.8941],[111.4349,-6.8902],[111.443,-6.8813],[111.4544,-6.8763],[111.4584,-6.8778],[111.4604,-6.8824],[111.4659,-6.8811],[111.4702,-6.8822],[111.4767,-6.8865],[111.483,-6.8827],[111.4886,-6.8816],[111.4979,-6.8941],[111.5052,-6.8908],[111.5098,-6.8919],[111.5134,-6.8894],[111.5166,-6.8925],[111.5167,-6.8964],[111.5334,-6.9005],[111.5386,-6.9004],[111.542,-6.9077],[111.5481,-6.9107],[111.5533,-6.9098],[111.5561,-6.9141],[111.564,-6.9133],[111.575,-6.9181],[111.5777,-6.9133],[111.5836,-6.9101],[111.6,-6.9105],[111.6024,-6.9115],[111.608,-6.9019],[111.6029,-6.8995],[111.5997,-6.8955],[111.6008,-6.8923],[111.6097,-6.887],[111.6114,-6.8825],[111.6149,-6.8821],[111.6097,-6.8711],[111.6124,-6.8643],[111.6104,-6.8478],[111.6135,-6.8317],[111.6193,-6.8217],[111.6291,-6.8249],[111.635,-6.8289],[111.6421,-6.8246],[111.649,-6.823],[111.6527,-6.8254],[111.661,-6.817],[111.6578,-6.8115],[111.6572,-6.807],[111.6642,-6.7975],[111.6642,-6.7907],[111.6599,-6.7829],[111.6628,-6.7716],[111.6698,-6.7638],[111.6718,-6.7702],[111.6818,-6.7714],[111.6844,-6.7706],[111.6914,-6.7538]]}},{"type":"Feature","properties":{"mhid":"1332:211","alt_name":"KABUPATEN PATI","latitude":-6.76667,"longitude":111.1,"sample_value":841},"geometry":{"type":"LineString","coordinates":[[111.2348,-6.6961],[111.2336,-6.6873],[111.2201,-6.6842],[111.2117,-6.68],[111.2065,-6.6746],[111.1912,-6.6659],[111.1829,-6.6628],[111.156,-6.659],[111.1462,-6.6552],[111.144,-6.6521],[111.1316,-6.643],[111.1264,-6.6373],[111.1194,-6.6273],[111.1082,-6.6096],[111.0996,-6.5949],[111.0842,-6.5648],[111.0787,-6.5478],[111.0751,-6.5391],[111.0692,-6.5301],[111.0635,-6.5195],[111.0584,-6.5054],[111.0502,-6.4728],[111.0493,-6.4629],[111.0467,-6.4504],[111.0445,-6.434],[111.0481,-6.4286],[111.047,-6.4251],[111.0296,-6.4208],[110.9967,-6.4065],[110.9911,-6.4074],[110.9913,-6.4111],[110.9872,-6.4123],[110.9751,-6.4118],[110.9762,-6.4235],[110.9719,-6.4327],[110.9769,-6.4374],[110.973,-6.4399],[110.9726,-6.4495],[110.9688,-6.4609],[110.9537,-6.4734],[110.9517,-6.4778],[110.9452,-6.4853],[110.9428,-6.4864],[110.9372,-6.4835],[110.9345,-6.4911],[110.9294,-6.4958],[110.9196,-6.4969],[110.9147,-6.4959],[110.9123,-6.5012],[110.9133,-6.5059],[110.9084,-6.5251],[110.9139,-6.5286],[110.9173,-6.5357],[110.9178,-6.5403],[110.9134,-6.5421],[110.9092,-6.5528],[110.9083,-6.561],[110.9121,-6.5769],[110.9098,-6.5911],[110.912,-6.5992],[110.9077,-6.6077],[110.9077,-6.6146],[110.9033,-6.6191],[110.9022,-6.6238],[110.9028,-6.6278],[110.8978,-6.639],[110.905,-6.6437],[110.9071,-6.6555],[110.9146,-6.669],[110.9218,-6.6742],[110.924,-6.6786],[110.9251,-6.6871],[110.9348,-6.7013],[110.9336,-6.7063],[110.938,-6.7097],[110.935,-6.7143],[110.9352,-6.7212],[110.9259,-6.7167],[110.9246,-6.7226],[110.9247,-6.7333],[110.9344,-6.7397],[110.9387,-6.7401],[110.9408,-6.7496],[110.9447,-6.7521],[110.9453,-6.756],[110.9606,-6.755],[110.9652,-6.7573],[110.963,-6.7622],[110.9655,-6.7736],[110.9649,-6.7794],[110.9679,-6.7821],[110.9712,-6.7929],[110.9707,-6.803],[110.9743,-6.8041],[110.9742,-6.8228],[110.9768,-6.8336],[110.9615,-6.8446],[110.9474,-6.8499],[110.9374,-6.8552],[110.9234,-6.8652],[110.919,-6.8675],[110.8932,-6.8675],[110.8807,-6.8663],[110.8781,-6.8674],[110.8792,-6.8774],[110.8825,-6.888],[110.8805,-6.894],[110.8738,-6.8944],[110.8647,-6.8921],[110.8616,-6.8978],[110.8529,-6.8977],[110.8556,-6.9032],[110.8513,-6.9084],[110.8455,-6.9185],[110.8456,-6.9241],[110.8481,-6.9316],[110.8448,-6.9355],[110.8375,-6.9372],[110.8396,-6.9429],[110.8326,-6.9426],[110.8312,-6.9455],[110.8235,-6.9454],[110.8235,-6.9405],[110.8181,-6.9385],[110.8123,-6.9416],[110.8093,-6.9459],[110.8101,-6.9521],[110.8073,-6.9555],[110.8072,-6.9603],[110.81,-6.9657],[110.8102,-6.9758],[110.8039,-6.9796],[110.8038,-6.989],[110.8082,-6.9923],[110.8109,-7],[110.8151,-7.0037],[110.8175,-6.997],[110.8198,-6.996],[110.8237,-7.0011],[110.8272,-7.0012],[110.8348,-6.9915],[110.8406,-6.9934],[110.8461,-6.991],[110.8475,-6.9976],[110.8515,-6.9988],[110.8569,-6.9858],[110.8658,-6.979],[110.867,-6.976],[110.8733,-6.9753],[110.875,-6.9729],[110.8858,-6.9691],[110.8846,-6.9801],[110.887,-6.9848],[110.9004,-6.9883],[110.9056,-6.9833],[110.9062,-6.9765],[110.9141,-6.9624],[110.9175,-6.966],[110.9294,-6.9713],[110.9325,-6.974],[110.936,-6.9722],[110.9466,-6.9749],[110.9511,-6.97],[110.9622,-6.9704],[110.9652,-6.9657],[110.9694,-6.9651],[110.9778,-6.967],[110.9804,-6.9701],[110.9954,-6.9702],[111,-6.969],[111.0084,-6.9698],[111.0157,-6.9686],[111.0256,-6.9695],[111.0328,-6.9723],[111.0516,-6.9675],[111.0584,-6.9687],[111.0697,-6.9691],[111.0755,-6.9613],[111.082,-6.9593],[111.0912,-6.9539],[111.0926,-6.9508],[111.0844,-6.9489],[111.0784,-6.9453],[111.0779,-6.9424],[111.086,-6.9371],[111.0904,-6.9371],[111.0967,-6.9332],[111.1053,-6.9188],[111.1153,-6.9163],[111.1203,-6.913],[111.125,-6.9135],[111.1324,-6.9203],[111.1381,-6.9208],[111.142,-6.9164],[111.1438,-6.9108],[111.144,-6.9033],[111.1499,-6.9059],[111.1525,-6.9101],[111.1686,-6.906],[111.1758,-6.9056],[111.1833,-6.8986],[111.1983,-6.8983],[111.2012,-6.8944],[111.2008,-6.8892],[111.2044,-6.8778],[111.2129,-6.8703],[111.2165,-6.873],[111.2218,-6.8717],[111.2238,-6.8632],[111.2228,-6.8481],[111.2249,-6.8461],[111.23,-6.8496],[111.2388,-6.8506],[111.2422,-6.8617],[111.2448,-6.8627],[111.2543,-6.8583],[111.2608,-6.8538],[111.2635,-6.8554],[111.2638,-6.8484],[111.2599,-6.8396],[111.2621,-6.8351],[111.2705,-6.8311],[111.2654,-6.8247],[111.2588,-6.8118],[111.2502,-6.8051],[111.251,-6.8019],[111.2447,-6.7964],[111.2481,-6.7872],[111.2464,-6.7748],[111.2463,-6.7627],[111.2396,-6.7578],[111.2364,-6.7519],[111.2381,-6.7472],[111.236,-6.7412],[111.2384,-6.7336],[111.2358,-6.7264],[111.2394,-6.72],[111.2409,-6.7135],[111.2399,-6.7054],[111.2368,-6.703],[111.2348,-6.6961]]}},{"type":"Feature","properties":{"mhid":"1332:212","alt_name":"KABUPATEN KUDUS","latitude":-6.8,"longitude":110.86667,"sample_value":736},"geometry":{"type":"LineString","coordinates":[[110.9022,-6.6238],[110.8958,-6.6246],[110.8857,-6.6214],[110.8823,-6.6256],[110.8801,-6.6163],[110.8736,-6.6158],[110.8715,-6.6211],[110.8664,-6.6233],[110.8594,-6.624],[110.86,-6.6366],[110.8592,-6.647],[110.8511,-6.649],[110.847,-6.6522],[110.8473,-6.656],[110.8507,-6.6621],[110.8502,-6.6652],[110.8437,-6.6676],[110.834,-6.6899],[110.8391,-6.7028],[110.8247,-6.7043],[110.8204,-6.7087],[110.8232,-6.716],[110.8271,-6.7208],[110.8245,-6.7311],[110.8248,-6.7352],[110.8369,-6.7379],[110.8283,-6.7556],[110.8197,-6.7505],[110.8148,-6.7489],[110.8067,-6.7515],[110.798,-6.7586],[110.7929,-6.7528],[110.7872,-6.7566],[110.7832,-6.7615],[110.7798,-6.7618],[110.7675,-6.7698],[110.7652,-6.7758],[110.7636,-6.7848],[110.7592,-6.7915],[110.7644,-6.7974],[110.7718,-6.8023],[110.7792,-6.8029],[110.7834,-6.8069],[110.7866,-6.8155],[110.7902,-6.817],[110.793,-6.824],[110.7992,-6.832],[110.7993,-6.8377],[110.807,-6.8362],[110.8138,-6.837],[110.8151,-6.8421],[110.8208,-6.8497],[110.8263,-6.8485],[110.83,-6.8447],[110.8343,-6.8471],[110.8381,-6.8463],[110.8374,-6.855],[110.8327,-6.8598],[110.8257,-6.861],[110.8251,-6.867],[110.8185,-6.8701],[110.8138,-6.8774],[110.8082,-6.8815],[110.8088,-6.8906],[110.8075,-6.894],[110.8012,-6.899],[110.7958,-6.899],[110.7922,-6.9075],[110.7862,-6.911],[110.7867,-6.9152],[110.7829,-6.9225],[110.7814,-6.9294],[110.7828,-6.9345],[110.7798,-6.9458],[110.7739,-6.9512],[110.7786,-6.9487],[110.7845,-6.9509],[110.7873,-6.9564],[110.7934,-6.9589],[110.7986,-6.9644],[110.8035,-6.9723],[110.8039,-6.9796],[110.8102,-6.9758],[110.81,-6.9657],[110.8072,-6.9603],[110.8073,-6.9555],[110.8101,-6.9521],[110.8093,-6.9459],[110.8123,-6.9416],[110.8181,-6.9385],[110.8235,-6.9405],[110.8235,-6.9454],[110.8312,-6.9455],[110.8326,-6.9426],[110.8396,-6.9429],[110.8375,-6.9372],[110.8448,-6.9355],[110.8481,-6.9316],[110.8456,-6.9241],[110.8455,-6.9185],[110.8513,-6.9084],[110.8556,-6.9032],[110.8529,-6.8977],[110.8616,-6.8978],[110.8647,-6.8921],[110.8738,-6.8944],[110.8805,-6.894],[110.8825,-6.888],[110.8792,-6.8774],[110.8781,-6.8674],[110.8807,-6.8663],[110.8932,-6.8675],[110.919,-6.8675],[110.9234,-6.8652],[110.9374,-6.8552],[110.9474,-6.8499],[110.9615,-6.8446],[110.9768,-6.8336],[110.9742,-6.8228],[110.9743,-6.8041],[110.9707,-6.803],[110.9712,-6.7929],[110.9679,-6.7821],[110.9649,-6.7794],[110.9655,-6.7736],[110.963,-6.7622],[110.9652,-6.7573],[110.9606,-6.755],[110.9453,-6.756],[110.9447,-6.7521],[110.9408,-6.7496],[110.9387,-6.7401],[110.9344,-6.7397],[110.9247,-6.7333],[110.9246,-6.7226],[110.9259,-6.7167],[110.9352,-6.7212],[110.935,-6.7143],[110.938,-6.7097],[110.9336,-6.7063],[110.9348,-6.7013],[110.9251,-6.6871],[110.924,-6.6786],[110.9218,-6.6742],[110.9146,-6.669],[110.9071,-6.6555],[110.905,-6.6437],[110.8978,-6.639],[110.9028,-6.6278],[110.9022,-6.6238]]}},{"type":"Feature","properties":{"mhid":"1332:213","alt_name":"KABUPATEN JEPARA","latitude":-6.58333,"longitude":110.76667,"sample_value":515},"geometry":{"type":"LineString","coordinates":[[110.9751,-6.4118],[110.9625,-6.4114],[110.9589,-6.4122],[110.9495,-6.4111],[110.9245,-6.4068],[110.919,-6.4046],[110.9109,-6.4052],[110.9012,-6.4042],[110.8984,-6.4061],[110.8837,-6.409],[110.8657,-6.4081],[110.8578,-6.4062],[110.8454,-6.4081],[110.8363,-6.4075],[110.8324,-6.4118],[110.8185,-6.4236],[110.8118,-6.4266],[110.8082,-6.4255],[110.7997,-6.4273],[110.786,-6.4254],[110.7738,-6.4332],[110.7587,-6.4413],[110.7496,-6.4419],[110.7462,-6.4435],[110.7415,-6.4417],[110.7266,-6.4461],[110.7176,-6.4525],[110.7134,-6.4578],[110.7138,-6.4678],[110.7084,-6.4753],[110.7037,-6.4742],[110.6943,-6.4859],[110.6895,-6.4891],[110.6914,-6.4973],[110.6873,-6.4997],[110.6835,-6.4965],[110.6746,-6.4969],[110.6727,-6.503],[110.665,-6.5039],[110.6661,-6.5093],[110.6735,-6.513],[110.679,-6.5119],[110.6823,-6.5137],[110.6836,-6.5181],[110.6821,-6.5252],[110.6778,-6.5333],[110.6702,-6.5358],[110.6659,-6.5323],[110.6659,-6.5412],[110.6616,-6.5452],[110.6557,-6.5452],[110.6543,-6.5528],[110.6464,-6.5539],[110.6449,-6.5575],[110.6548,-6.5637],[110.6604,-6.5696],[110.6618,-6.5742],[110.656,-6.5841],[110.644,-6.5872],[110.6483,-6.5911],[110.6554,-6.5938],[110.6545,-6.606],[110.653,-6.61],[110.6455,-6.6185],[110.6395,-6.6174],[110.6377,-6.631],[110.6406,-6.6385],[110.6462,-6.6457],[110.6464,-6.6508],[110.6406,-6.6621],[110.6322,-6.681],[110.6248,-6.6907],[110.6204,-6.6937],[110.6148,-6.7024],[110.6148,-6.7068],[110.6102,-6.7065],[110.5984,-6.7172],[110.5899,-6.7238],[110.5981,-6.7268],[110.6047,-6.7246],[110.6057,-6.721],[110.6109,-6.7169],[110.6161,-6.7157],[110.6212,-6.7086],[110.6351,-6.7103],[110.6385,-6.7132],[110.6452,-6.713],[110.6485,-6.716],[110.6543,-6.7151],[110.6644,-6.7168],[110.671,-6.7223],[110.6716,-6.7256],[110.6694,-6.7368],[110.666,-6.7412],[110.6701,-6.7479],[110.6693,-6.7528],[110.6657,-6.7543],[110.67,-6.7615],[110.6674,-6.7651],[110.6745,-6.7682],[110.6791,-6.7675],[110.6843,-6.7703],[110.6864,-6.7664],[110.6914,-6.7692],[110.694,-6.7744],[110.6996,-6.7767],[110.6987,-6.7828],[110.7035,-6.7936],[110.7094,-6.7925],[110.7113,-6.7892],[110.7162,-6.7917],[110.7208,-6.7884],[110.7294,-6.7933],[110.7475,-6.7948],[110.7511,-6.7963],[110.7592,-6.7915],[110.7636,-6.7848],[110.7652,-6.7758],[110.7675,-6.7698],[110.7798,-6.7618],[110.7832,-6.7615],[110.7872,-6.7566],[110.7929,-6.7528],[110.798,-6.7586],[110.8067,-6.7515],[110.8148,-6.7489],[110.8197,-6.7505],[110.8283,-6.7556],[110.8369,-6.7379],[110.8248,-6.7352],[110.8245,-6.7311],[110.8271,-6.7208],[110.8232,-6.716],[110.8204,-6.7087],[110.8247,-6.7043],[110.8391,-6.7028],[110.834,-6.6899],[110.8437,-6.6676],[110.8502,-6.6652],[110.8507,-6.6621],[110.8473,-6.656],[110.847,-6.6522],[110.8511,-6.649],[110.8592,-6.647],[110.86,-6.6366],[110.8594,-6.624],[110.8664,-6.6233],[110.8715,-6.6211],[110.8736,-6.6158],[110.8801,-6.6163],[110.8823,-6.6256],[110.8857,-6.6214],[110.8958,-6.6246],[110.9022,-6.6238],[110.9033,-6.6191],[110.9077,-6.6146],[110.9077,-6.6077],[110.912,-6.5992],[110.9098,-6.5911],[110.9121,-6.5769],[110.9083,-6.561],[110.9092,-6.5528],[110.9134,-6.5421],[110.9178,-6.5403],[110.9173,-6.5357],[110.9139,-6.5286],[110.9084,-6.5251],[110.9133,-6.5059],[110.9123,-6.5012],[110.9147,-6.4959],[110.9196,-6.4969],[110.9294,-6.4958],[110.9345,-6.4911],[110.9372,-6.4835],[110.9428,-6.4864],[110.9452,-6.4853],[110.9517,-6.4778],[110.9537,-6.4734],[110.9688,-6.4609],[110.9726,-6.4495],[110.973,-6.4399],[110.9769,-6.4374],[110.9719,-6.4327],[110.9762,-6.4235],[110.9751,-6.4118]]}},{"type":"Feature","properties":{"mhid":"1332:213","alt_name":"KABUPATEN JEPARA","latitude":-6.58333,"longitude":110.76667,"sample_value":515},"geometry":{"type":"LineString","coordinates":[[110.4303,-5.8871],[110.429,-5.8831],[110.4253,-5.8824],[110.4277,-5.8923],[110.434,-5.894],[110.4303,-5.8871]]}},{"type":"Feature","properties":{"mhid":"1332:213","alt_name":"KABUPATEN JEPARA","latitude":-6.58333,"longitude":110.76667,"sample_value":515},"geometry":{"type":"LineString","coordinates":[[110.6045,-5.842],[110.6009,-5.8426],[110.6,-5.8583],[110.5981,-5.8648],[110.6022,-5.8652],[110.6075,-5.8476],[110.6045,-5.842]]}},{"type":"Feature","properties":{"mhid":"1332:213","alt_name":"KABUPATEN JEPARA","latitude":-6.58333,"longitude":110.76667,"sample_value":515},"geometry":{"type":"LineString","coordinates":[[110.1906,-5.8095],[110.1845,-5.8119],[110.1806,-5.8165],[110.1827,-5.8195],[110.1886,-5.8196],[110.1955,-5.8154],[110.1906,-5.8095]]}},{"type":"Feature","properties":{"mhid":"1332:213","alt_name":"KABUPATEN JEPARA","latitude":-6.58333,"longitude":110.76667,"sample_value":515},"geometry":{"type":"LineString","coordinates":[[110.484,-5.7703],[110.4758,-5.7758],[110.4731,-5.782],[110.4698,-5.7853],[110.4636,-5.7959],[110.4582,-5.8006],[110.4539,-5.8021],[110.4506,-5.8066],[110.4495,-5.8136],[110.4523,-5.8162],[110.4608,-5.8119],[110.4668,-5.8123],[110.4693,-5.8148],[110.4774,-5.8164],[110.4741,-5.8204],[110.4594,-5.8253],[110.454,-5.8301],[110.4441,-5.8342],[110.4353,-5.834],[110.4268,-5.8357],[110.4202,-5.8386],[110.4154,-5.8379],[110.4109,-5.8414],[110.4166,-5.8434],[110.4262,-5.8527],[110.4316,-5.8592],[110.4292,-5.8619],[110.433,-5.8732],[110.4314,-5.8809],[110.4349,-5.8801],[110.4457,-5.8859],[110.4495,-5.8844],[110.4461,-5.8755],[110.449,-5.8695],[110.453,-5.866],[110.4645,-5.8624],[110.4653,-5.8577],[110.4704,-5.854],[110.475,-5.8558],[110.4772,-5.8522],[110.4735,-5.8491],[110.4749,-5.8437],[110.4683,-5.8308],[110.4817,-5.8348],[110.4829,-5.8237],[110.4902,-5.8224],[110.4949,-5.8178],[110.487,-5.8103],[110.4889,-5.8064],[110.4748,-5.7938],[110.4761,-5.7871],[110.4825,-5.7803],[110.484,-5.7703]]}},{"type":"Feature","properties":{"mhid":"1332:213","alt_name":"KABUPATEN JEPARA","latitude":-6.58333,"longitude":110.76667,"sample_value":515},"geometry":{"type":"LineString","coordinates":[[110.4104,-5.7342],[110.4027,-5.7334],[110.407,-5.746],[110.41,-5.7452],[110.4126,-5.7381],[110.4104,-5.7342]]}},{"type":"Feature","properties":{"mhid":"1332:213","alt_name":"KABUPATEN JEPARA","latitude":-6.58333,"longitude":110.76667,"sample_value":515},"geometry":{"type":"LineString","coordinates":[[110.2511,-5.7314],[110.2398,-5.7301],[110.2405,-5.7351],[110.2312,-5.7381],[110.2447,-5.7583],[110.2468,-5.7623],[110.2546,-5.755],[110.2506,-5.7509],[110.2479,-5.7434],[110.2482,-5.7373],[110.2515,-5.7357],[110.2511,-5.7314]]}},{"type":"Feature","properties":{"mhid":"1332:214","alt_name":"KABUPATEN DEMAK","latitude":-6.8993,"longitude":110.6122,"sample_value":987},"geometry":{"type":"LineString","coordinates":[[110.7592,-6.7915],[110.7511,-6.7963],[110.7475,-6.7948],[110.7294,-6.7933],[110.7208,-6.7884],[110.7162,-6.7917],[110.7113,-6.7892],[110.7094,-6.7925],[110.7035,-6.7936],[110.6987,-6.7828],[110.6996,-6.7767],[110.694,-6.7744],[110.6914,-6.7692],[110.6864,-6.7664],[110.6843,-6.7703],[110.6791,-6.7675],[110.6745,-6.7682],[110.6674,-6.7651],[110.67,-6.7615],[110.6657,-6.7543],[110.6693,-6.7528],[110.6701,-6.7479],[110.666,-6.7412],[110.6694,-6.7368],[110.6716,-6.7256],[110.671,-6.7223],[110.6644,-6.7168],[110.6543,-6.7151],[110.6485,-6.716],[110.6452,-6.713],[110.6385,-6.7132],[110.6351,-6.7103],[110.6212,-6.7086],[110.6161,-6.7157],[110.6109,-6.7169],[110.6057,-6.721],[110.6047,-6.7246],[110.5981,-6.7268],[110.5899,-6.7238],[110.5819,-6.7271],[110.5798,-6.733],[110.5751,-6.7357],[110.5737,-6.7304],[110.5706,-6.7298],[110.5615,-6.7208],[110.5574,-6.7267],[110.5515,-6.7169],[110.5459,-6.7256],[110.5502,-6.7291],[110.5532,-6.7373],[110.56,-6.746],[110.5601,-6.7515],[110.5556,-6.7559],[110.5467,-6.7548],[110.543,-6.7492],[110.537,-6.745],[110.5362,-6.753],[110.5417,-6.7574],[110.551,-6.7629],[110.5638,-6.7608],[110.5648,-6.7629],[110.5755,-6.7656],[110.5757,-6.773],[110.5682,-6.7761],[110.5656,-6.7877],[110.5596,-6.7985],[110.5602,-6.8034],[110.5542,-6.8092],[110.5489,-6.8122],[110.5491,-6.8182],[110.5434,-6.82],[110.5378,-6.8267],[110.5273,-6.8334],[110.5223,-6.834],[110.5227,-6.8393],[110.5278,-6.84],[110.5282,-6.8474],[110.5214,-6.8493],[110.5153,-6.8591],[110.5183,-6.8637],[110.5151,-6.8673],[110.5088,-6.88],[110.5001,-6.8904],[110.4792,-6.9173],[110.4759,-6.9243],[110.4705,-6.9254],[110.4681,-6.9292],[110.4632,-6.9315],[110.4734,-6.9421],[110.4809,-6.9454],[110.4922,-6.9475],[110.491,-6.9552],[110.501,-6.9526],[110.5028,-6.9589],[110.5012,-6.9628],[110.5054,-6.976],[110.5022,-6.9792],[110.503,-6.9858],[110.5012,-6.9922],[110.497,-6.9951],[110.4904,-7.0043],[110.5039,-7.0107],[110.5037,-7.0149],[110.4995,-7.0164],[110.4978,-7.0208],[110.498,-7.0271],[110.494,-7.0302],[110.4874,-7.0311],[110.4825,-7.0454],[110.491,-7.0553],[110.4909,-7.0594],[110.4999,-7.066],[110.4847,-7.0813],[110.4776,-7.0854],[110.4824,-7.0907],[110.4876,-7.091],[110.4969,-7.0942],[110.4995,-7.0965],[110.5003,-7.1021],[110.4986,-7.1088],[110.4998,-7.1186],[110.506,-7.1233],[110.5134,-7.1235],[110.5134,-7.1283],[110.5207,-7.1332],[110.5272,-7.1292],[110.5316,-7.1319],[110.5371,-7.1281],[110.5424,-7.1284],[110.5514,-7.1373],[110.5583,-7.1397],[110.5801,-7.1324],[110.5927,-7.1248],[110.5944,-7.1199],[110.5927,-7.1153],[110.585,-7.1145],[110.579,-7.1116],[110.5757,-7.1042],[110.5701,-7.0978],[110.5625,-7.0944],[110.5632,-7.0877],[110.571,-7.0757],[110.5796,-7.0694],[110.5875,-7.0713],[110.594,-7.0678],[110.5951,-7.0558],[110.5994,-7.0487],[110.6039,-7.0471],[110.6092,-7.0364],[110.6195,-7.0211],[110.6141,-7.0201],[110.6224,-7.011],[110.6239,-7.0044],[110.6223,-6.9982],[110.6242,-6.995],[110.6227,-6.9898],[110.6191,-6.9846],[110.6221,-6.9814],[110.6295,-6.9844],[110.6309,-6.9791],[110.637,-6.9767],[110.6446,-6.979],[110.6509,-6.9742],[110.6588,-6.9735],[110.6685,-6.9767],[110.6711,-6.9803],[110.6681,-6.9829],[110.6781,-6.9886],[110.6768,-6.9912],[110.6803,-6.9964],[110.6732,-7.0082],[110.6803,-7.0137],[110.6874,-7.0139],[110.6908,-7.0173],[110.6897,-7.0252],[110.6789,-7.0358],[110.6704,-7.0431],[110.6685,-7.0498],[110.6695,-7.0543],[110.6843,-7.0388],[110.6899,-7.0322],[110.6921,-7.0249],[110.6982,-7.0255],[110.6985,-7.0219],[110.6948,-7.0186],[110.7286,-7.0328],[110.7409,-7.0299],[110.7626,-7.0217],[110.7633,-7.0181],[110.7675,-7.015],[110.7687,-7.0098],[110.764,-7.0047],[110.7748,-7.0034],[110.775,-6.9992],[110.7678,-6.9993],[110.7668,-6.9909],[110.7725,-6.9889],[110.7674,-6.984],[110.7622,-6.9852],[110.763,-6.9796],[110.7685,-6.9801],[110.7739,-6.9759],[110.7644,-6.9693],[110.765,-6.9655],[110.7699,-6.9627],[110.7734,-6.9654],[110.7766,-6.963],[110.774,-6.9587],[110.7739,-6.9512],[110.7798,-6.9458],[110.7828,-6.9345],[110.7814,-6.9294],[110.7829,-6.9225],[110.7867,-6.9152],[110.7862,-6.911],[110.7922,-6.9075],[110.7958,-6.899],[110.8012,-6.899],[110.8075,-6.894],[110.8088,-6.8906],[110.8082,-6.8815],[110.8138,-6.8774],[110.8185,-6.8701],[110.8251,-6.867],[110.8257,-6.861],[110.8327,-6.8598],[110.8374,-6.855],[110.8381,-6.8463],[110.8343,-6.8471],[110.83,-6.8447],[110.8263,-6.8485],[110.8208,-6.8497],[110.8151,-6.8421],[110.8138,-6.837],[110.807,-6.8362],[110.7993,-6.8377],[110.7992,-6.832],[110.793,-6.824],[110.7902,-6.817],[110.7866,-6.8155],[110.7834,-6.8069],[110.7792,-6.8029],[110.7718,-6.8023],[110.7644,-6.7974],[110.7592,-6.7915]]}},{"type":"Feature","properties":{"mhid":"1332:215","alt_name":"KABUPATEN SEMARANG","latitude":-7.20667,"longitude":110.44139,"sample_value":440},"geometry":{"type":"MultiLineString","coordinates":[[[110.3488,-7.1514],[110.3528,-7.1582],[110.3694,-7.148],[110.372,-7.1526],[110.3776,-7.1525],[110.3866,-7.1566],[110.3906,-7.1634],[110.3887,-7.1698],[110.3739,-7.1746],[110.367,-7.1731],[110.3628,-7.1747],[110.3575,-7.1801],[110.3594,-7.1862],[110.3478,-7.1864],[110.3407,-7.194],[110.3325,-7.1933],[110.3222,-7.1968],[110.3204,-7.195],[110.2969,-7.1952],[110.2857,-7.1904],[110.2764,-7.1991],[110.2725,-7.1999],[110.2697,-7.1965],[110.2586,-7.1985],[110.2528,-7.2002],[110.2523,-7.2039],[110.2572,-7.216],[110.2655,-7.2185],[110.264,-7.2245],[110.2669,-7.2327],[110.2738,-7.2362],[110.2705,-7.246],[110.2711,-7.252],[110.2758,-7.2515],[110.2831,-7.2537],[110.2923,-7.2653],[110.3037,-7.2744],[110.3096,-7.278],[110.3165,-7.2843],[110.3214,-7.2871],[110.3272,-7.296],[110.3282,-7.3015],[110.3245,-7.304],[110.3175,-7.3048],[110.3135,-7.3088],[110.3181,-7.3123],[110.3255,-7.309],[110.3281,-7.314],[110.328,-7.3203],[110.3322,-7.3205],[110.3423,-7.3256],[110.3511,-7.3254],[110.3561,-7.3266],[110.3648,-7.3316],[110.3791,-7.3346],[110.3777,-7.3431],[110.3821,-7.3542],[110.3908,-7.3531],[110.3972,-7.3572],[110.4036,-7.3655],[110.4035,-7.3714],[110.4066,-7.377],[110.4053,-7.3896],[110.4086,-7.399],[110.4136,-7.4092],[110.4143,-7.4166],[110.4194,-7.4221],[110.4245,-7.4307],[110.4249,-7.4349],[110.432,-7.4458],[110.4387,-7.4534],[110.4393,-7.4536],[110.4429,-7.4491],[110.4435,-7.4428],[110.4475,-7.436],[110.4503,-7.4285],[110.4565,-7.4226],[110.4587,-7.414],[110.4655,-7.4081],[110.4835,-7.4024],[110.4836,-7.4074],[110.4975,-7.4107],[110.5042,-7.4115],[110.5063,-7.4083],[110.5113,-7.4149],[110.5159,-7.4154],[110.5156,-7.4196],[110.5124,-7.4215],[110.5176,-7.4387],[110.5199,-7.4387],[110.5308,-7.4333],[110.5377,-7.4348],[110.5445,-7.4331],[110.5478,-7.4347],[110.5475,-7.4389],[110.5537,-7.4413],[110.551,-7.4482],[110.5553,-7.4517],[110.5596,-7.4501],[110.5583,-7.4381],[110.5588,-7.4314],[110.5623,-7.4308],[110.5646,-7.4259],[110.5699,-7.4262],[110.5676,-7.4338],[110.5675,-7.4403],[110.5714,-7.4404],[110.5758,-7.4317],[110.5736,-7.4243],[110.5769,-7.423],[110.5826,-7.4297],[110.586,-7.4419],[110.5898,-7.4449],[110.5998,-7.4478],[110.5971,-7.4533],[110.5938,-7.4506],[110.5845,-7.4483],[110.5864,-7.4601],[110.5821,-7.4663],[110.5864,-7.472],[110.594,-7.4762],[110.596,-7.4828],[110.602,-7.4838],[110.6058,-7.4879],[110.6118,-7.4891],[110.6184,-7.4882],[110.6218,-7.4915],[110.629,-7.4917],[110.6334,-7.4901],[110.6392,-7.4953],[110.6449,-7.4918],[110.6567,-7.4951],[110.6582,-7.4878],[110.6547,-7.4868],[110.6549,-7.4813],[110.6615,-7.4747],[110.6506,-7.4707],[110.6352,-7.4705],[110.6339,-7.4672],[110.6292,-7.4644],[110.6327,-7.4573],[110.6391,-7.4535],[110.6452,-7.4518],[110.6443,-7.4466],[110.6379,-7.4521],[110.6333,-7.4512],[110.6213,-7.4543],[110.6228,-7.4459],[110.6259,-7.4414],[110.6314,-7.4391],[110.6323,-7.4336],[110.6357,-7.43],[110.6348,-7.4225],[110.6318,-7.4184],[110.6364,-7.4163],[110.6355,-7.4089],[110.6381,-7.403],[110.6348,-7.4009],[110.6349,-7.3903],[110.6288,-7.3868],[110.6255,-7.3827],[110.632,-7.3728],[110.629,-7.3696],[110.636,-7.3615],[110.6361,-7.3524],[110.6394,-7.3498],[110.641,-7.3437],[110.64,-7.3389],[110.6429,-7.3351],[110.6427,-7.326],[110.6358,-7.3282],[110.6311,-7.3271],[110.622,-7.3323],[110.6142,-7.3339],[110.6079,-7.331],[110.6101,-7.3246],[110.6031,-7.3226],[110.5994,-7.3161],[110.5993,-7.3071],[110.6025,-7.3028],[110.6015,-7.2912],[110.6045,-7.2903],[110.6217,-7.2893],[110.6239,-7.2856],[110.6246,-7.2788],[110.6224,-7.2736],[110.6318,-7.2654],[110.6364,-7.2633],[110.6337,-7.2534],[110.6283,-7.2475],[110.6263,-7.2385],[110.624,-7.234],[110.6241,-7.2295],[110.6276,-7.2194],[110.6253,-7.2173],[110.6164,-7.2177],[110.6121,-7.2125],[110.6116,-7.2051],[110.6134,-7.2019],[110.6071,-7.1951],[110.6008,-7.1951],[110.6008,-7.1999],[110.5934,-7.1994],[110.5841,-7.2028],[110.5767,-7.1993],[110.5762,-7.1946],[110.5709,-7.1893],[110.5589,-7.1918],[110.5561,-7.1872],[110.5531,-7.1938],[110.5463,-7.1928],[110.5442,-7.1889],[110.5459,-7.1857],[110.542,-7.1772],[110.5473,-7.1683],[110.5516,-7.1671],[110.5578,-7.1525],[110.5574,-7.1467],[110.5609,-7.1434],[110.5583,-7.1397],[110.5514,-7.1373],[110.5424,-7.1284],[110.5371,-7.1281],[110.5316,-7.1319],[110.5272,-7.1292],[110.5207,-7.1332],[110.5134,-7.1283],[110.5134,-7.1235],[110.506,-7.1233],[110.4998,-7.1186],[110.4986,-7.1088],[110.5003,-7.1021],[110.4995,-7.0965],[110.4969,-7.0942],[110.4876,-7.091],[110.4824,-7.0907],[110.4776,-7.0854],[110.4769,-7.0838],[110.4678,-7.0794],[110.4543,-7.0788],[110.4535,-7.0871],[110.4463,-7.0907],[110.4287,-7.092],[110.4231,-7.0963],[110.4219,-7.1032],[110.4162,-7.1084],[110.4016,-7.1098],[110.3957,-7.1144],[110.3899,-7.1125],[110.3842,-7.1141],[110.3764,-7.1073],[110.3785,-7.1006],[110.375,-7.0964],[110.3711,-7.1075],[110.36,-7.1047],[110.3561,-7.1066],[110.3509,-7.112],[110.3486,-7.1193],[110.3525,-7.1222],[110.3511,-7.1312],[110.3529,-7.1362],[110.3526,-7.1443],[110.3488,-7.1514]],[[110.4884,-7.2921],[110.4915,-7.2912],[110.5,-7.2996],[110.5106,-7.3019],[110.5132,-7.2942],[110.5185,-7.2966],[110.5207,-7.3024],[110.5181,-7.3041],[110.5166,-7.3188],[110.5249,-7.3268],[110.5235,-7.3302],[110.5299,-7.3398],[110.5287,-7.3441],[110.5344,-7.3545],[110.5334,-7.3603],[110.5217,-7.3634],[110.5168,-7.363],[110.5154,-7.367],[110.5161,-7.3791],[110.5121,-7.3793],[110.5103,-7.3869],[110.5041,-7.3866],[110.4924,-7.3888],[110.4912,-7.3816],[110.4882,-7.3768],[110.4802,-7.3788],[110.4768,-7.3729],[110.4782,-7.3707],[110.4748,-7.3601],[110.4749,-7.3475],[110.4714,-7.3455],[110.4696,-7.3372],[110.4722,-7.3317],[110.4723,-7.3253],[110.4761,-7.3125],[110.4756,-7.3092],[110.4713,-7.3049],[110.4691,-7.2969],[110.4847,-7.286],[110.4884,-7.2921]]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[113.7636,-7.2093],[113.7542,-7.2062],[113.7497,-7.2157],[113.7508,-7.219],[113.7596,-7.2186],[113.7728,-7.2281],[113.7845,-7.2306],[113.7926,-7.2358],[113.7969,-7.2353],[113.7976,-7.2305],[113.8047,-7.2248],[113.8125,-7.2208],[113.8098,-7.2159],[113.8002,-7.2137],[113.7956,-7.2162],[113.791,-7.2158],[113.7865,-7.2122],[113.7761,-7.2093],[113.7636,-7.2093]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[113.9245,-7.1743],[113.9229,-7.1737],[113.9132,-7.18],[113.9055,-7.1812],[113.8974,-7.1842],[113.8829,-7.1938],[113.8805,-7.2006],[113.8829,-7.207],[113.887,-7.2119],[113.8903,-7.2122],[113.9022,-7.2092],[113.9097,-7.2097],[113.9265,-7.2031],[113.9335,-7.2064],[113.9362,-7.2136],[113.9416,-7.2193],[113.947,-7.2298],[113.9562,-7.2309],[113.954,-7.2247],[113.9447,-7.2202],[113.9396,-7.2145],[113.9412,-7.2035],[113.9402,-7.1997],[113.9293,-7.1851],[113.9272,-7.1754],[113.9245,-7.1743]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[114.6119,-7.1634],[114.6091,-7.164],[114.6035,-7.171],[114.6091,-7.1737],[114.6162,-7.1714],[114.6163,-7.1666],[114.6119,-7.1634]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[114.6763,-7.1597],[114.6678,-7.1599],[114.6578,-7.1642],[114.6566,-7.1711],[114.6638,-7.1705],[114.679,-7.1675],[114.6833,-7.163],[114.6763,-7.1597]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.8597,-7.1529],[115.8642,-7.1485],[115.8573,-7.1457],[115.8552,-7.1506],[115.8597,-7.1529]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[114.5004,-7.1408],[114.497,-7.1397],[114.4883,-7.1417],[114.4818,-7.141],[114.4772,-7.1437],[114.4773,-7.1527],[114.4822,-7.1596],[114.4872,-7.1619],[114.4964,-7.1611],[114.5069,-7.1557],[114.5086,-7.1516],[114.5064,-7.1474],[114.5,-7.1461],[114.5004,-7.1408]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[114.5769,-7.1307],[114.5725,-7.1332],[114.563,-7.135],[114.5442,-7.1319],[114.5408,-7.1329],[114.5317,-7.1319],[114.5289,-7.136],[114.5243,-7.1362],[114.5156,-7.1389],[114.5145,-7.1419],[114.5177,-7.1464],[114.529,-7.1462],[114.5329,-7.1442],[114.5435,-7.146],[114.5508,-7.1442],[114.5566,-7.1506],[114.5655,-7.1542],[114.566,-7.1592],[114.5723,-7.1588],[114.5755,-7.1666],[114.5874,-7.1637],[114.5919,-7.1662],[114.6101,-7.1627],[114.6117,-7.158],[114.6151,-7.1567],[114.6134,-7.1489],[114.6151,-7.1441],[114.6079,-7.1394],[114.5956,-7.139],[114.5914,-7.1349],[114.5821,-7.1353],[114.5769,-7.1307]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.7669,-7.122],[115.7619,-7.124],[115.7694,-7.1313],[115.7712,-7.1277],[115.7669,-7.122]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[114.7814,-7.1192],[114.779,-7.117],[114.7723,-7.1308],[114.7754,-7.1354],[114.7789,-7.1332],[114.7832,-7.1229],[114.7814,-7.1192]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.7697,-7.1115],[115.7607,-7.1078],[115.7588,-7.1145],[115.7632,-7.1166],[115.77,-7.1172],[115.7697,-7.1115]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.9058,-7.1074],[115.896,-7.1077],[115.8913,-7.1128],[115.8981,-7.1154],[115.8964,-7.1345],[115.8921,-7.1405],[115.89,-7.1342],[115.8932,-7.1281],[115.8874,-7.1224],[115.8782,-7.1303],[115.8705,-7.1338],[115.8732,-7.1526],[115.8788,-7.1606],[115.8827,-7.1629],[115.8874,-7.156],[115.887,-7.1509],[115.8924,-7.152],[115.8898,-7.1589],[115.8852,-7.1666],[115.8755,-7.1619],[115.8723,-7.1588],[115.8658,-7.1646],[115.8618,-7.1604],[115.8541,-7.1618],[115.8498,-7.1647],[115.8431,-7.1646],[115.837,-7.1585],[115.8358,-7.151],[115.8228,-7.1497],[115.8146,-7.1516],[115.8098,-7.1562],[115.809,-7.1493],[115.7996,-7.1472],[115.7979,-7.1429],[115.7936,-7.1408],[115.7937,-7.1363],[115.7987,-7.1304],[115.7968,-7.1229],[115.7923,-7.1203],[115.7895,-7.1159],[115.7828,-7.1115],[115.7788,-7.1129],[115.7767,-7.1188],[115.7805,-7.1217],[115.7789,-7.1309],[115.7748,-7.1326],[115.7697,-7.1431],[115.7674,-7.1351],[115.7632,-7.1314],[115.7544,-7.1416],[115.7537,-7.1473],[115.7477,-7.1526],[115.7413,-7.1551],[115.7472,-7.1664],[115.7552,-7.1741],[115.7717,-7.1824],[115.7938,-7.1886],[115.819,-7.2],[115.827,-7.2074],[115.8385,-7.2085],[115.8533,-7.2062],[115.8767,-7.2048],[115.8838,-7.2028],[115.8934,-7.1946],[115.8993,-7.1762],[115.9017,-7.1488],[115.9018,-7.1295],[115.9034,-7.1166],[115.9058,-7.1074]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[114.6855,-7.094],[114.6781,-7.0974],[114.682,-7.101],[114.6874,-7.0981],[114.6855,-7.094]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.7614,-7.0871],[115.7542,-7.0897],[115.7538,-7.0974],[115.7482,-7.1034],[115.7547,-7.1103],[115.7572,-7.1009],[115.7636,-7.0998],[115.766,-7.0924],[115.7614,-7.0871]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.1999,-7.0832],[115.1961,-7.0824],[115.193,-7.0859],[115.1937,-7.0916],[115.1989,-7.0902],[115.1999,-7.0832]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[114.6483,-7.0875],[114.6505,-7.0812],[114.6487,-7.0775],[114.6445,-7.0774],[114.6445,-7.0853],[114.6483,-7.0875]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.695,-7.0615],[115.6857,-7.0585],[115.6846,-7.068],[115.6917,-7.0741],[115.6981,-7.0759],[115.7059,-7.076],[115.7115,-7.0717],[115.7119,-7.0655],[115.7075,-7.0605],[115.695,-7.0615]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[114.3747,-7.1081],[114.3739,-7.0967],[114.3687,-7.0872],[114.3587,-7.0803],[114.3448,-7.0695],[114.3379,-7.0617],[114.3329,-7.0586],[114.3273,-7.0573],[114.3167,-7.06],[114.3018,-7.0622],[114.2948,-7.0659],[114.2747,-7.0885],[114.2713,-7.0971],[114.272,-7.1022],[114.2781,-7.1175],[114.2841,-7.1242],[114.2863,-7.1289],[114.2924,-7.1369],[114.2952,-7.1434],[114.3,-7.1458],[114.3038,-7.1504],[114.3134,-7.1589],[114.322,-7.1628],[114.3365,-7.1663],[114.3468,-7.172],[114.3523,-7.173],[114.3612,-7.1787],[114.3684,-7.18],[114.3789,-7.1797],[114.384,-7.1818],[114.3891,-7.1795],[114.402,-7.1711],[114.4042,-7.1657],[114.3955,-7.1615],[114.3909,-7.1521],[114.3907,-7.1414],[114.3887,-7.1335],[114.3776,-7.1218],[114.3721,-7.1127],[114.3747,-7.1081]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[113.9531,-7.0583],[113.9472,-7.0565],[113.9405,-7.062],[113.9363,-7.0687],[113.9362,-7.0735],[113.9439,-7.0882],[113.9491,-7.0884],[113.9565,-7.0924],[113.9598,-7.0958],[113.969,-7.0974],[113.976,-7.1002],[113.9826,-7.1049],[113.9918,-7.1066],[114.0061,-7.1064],[114.0117,-7.1055],[114.0236,-7.1081],[114.0419,-7.1133],[114.0508,-7.1134],[114.0633,-7.1112],[114.0635,-7.1057],[114.0587,-7.0967],[114.0529,-7.0796],[114.048,-7.075],[114.0382,-7.0742],[114.0137,-7.07],[113.9976,-7.0722],[113.9806,-7.0727],[113.9673,-7.0697],[113.9592,-7.0656],[113.9531,-7.0583]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.6624,-7.0465],[115.6607,-7.0433],[115.6499,-7.0464],[115.648,-7.0493],[115.6491,-7.0622],[115.6554,-7.0677],[115.6615,-7.0688],[115.6693,-7.0682],[115.6747,-7.0646],[115.6664,-7.0548],[115.6624,-7.0465]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.6364,-7.0441],[115.6363,-7.0389],[115.6316,-7.0365],[115.6271,-7.0394],[115.6271,-7.0447],[115.6178,-7.0426],[115.613,-7.0398],[115.6077,-7.0419],[115.6002,-7.0391],[115.5954,-7.0429],[115.5999,-7.0462],[115.5995,-7.0534],[115.6035,-7.0548],[115.6065,-7.0511],[115.6161,-7.0513],[115.613,-7.059],[115.6165,-7.0614],[115.616,-7.0655],[115.6212,-7.0672],[115.6303,-7.0673],[115.6348,-7.0644],[115.6336,-7.059],[115.6364,-7.0441]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.6978,-7.0308],[115.699,-7.0282],[115.6938,-7.0235],[115.6904,-7.0279],[115.6978,-7.0308]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.5483,-7.011],[115.5448,-7.0105],[115.5404,-7.0141],[115.5395,-7.0227],[115.5415,-7.0279],[115.5491,-7.0255],[115.5551,-7.0182],[115.5545,-7.0125],[115.5483,-7.011]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.3097,-7.0073],[115.3031,-7.0084],[115.3016,-7.0106],[115.3107,-7.0193],[115.3164,-7.0219],[115.3177,-7.0134],[115.3097,-7.0073]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.706,-7.0137],[115.7116,-7.0076],[115.7086,-7.0034],[115.7053,-7.0045],[115.7039,-7.0103],[115.706,-7.0137]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.5845,-6.9892],[115.5785,-6.9893],[115.5776,-6.9944],[115.5853,-6.9965],[115.5874,-6.9929],[115.5845,-6.9892]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[114.4873,-6.9996],[114.4908,-6.9994],[114.4963,-6.9914],[114.4925,-6.9868],[114.4873,-6.9996]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.5454,-6.9873],[115.5427,-6.9817],[115.5381,-6.9877],[115.5317,-6.9885],[115.5279,-6.9913],[115.527,-6.9964],[115.5195,-6.9978],[115.5183,-7.0035],[115.5115,-7.0075],[115.5065,-7.0152],[115.5159,-7.0171],[115.5228,-7.0247],[115.5238,-7.0279],[115.5286,-7.0319],[115.5339,-7.033],[115.5375,-7.022],[115.5387,-7.0083],[115.5362,-7.0026],[115.5409,-6.9923],[115.5443,-6.9933],[115.5454,-6.9873]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.467,-6.9778],[115.4649,-6.9761],[115.4562,-6.9801],[115.4553,-6.9771],[115.4494,-6.9769],[115.4495,-6.9813],[115.4365,-6.9791],[115.43,-6.979],[115.4258,-6.9854],[115.428,-6.9929],[115.4325,-6.9981],[115.4369,-7.0001],[115.4504,-7.0035],[115.4631,-7.005],[115.4711,-7.0067],[115.4732,-7.0035],[115.4666,-6.9952],[115.4636,-6.9878],[115.467,-6.9778]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.2543,-6.9689],[115.247,-6.97],[115.2453,-6.9725],[115.2555,-6.9821],[115.2618,-6.9851],[115.2631,-6.9756],[115.2543,-6.9689]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.7568,-6.9694],[115.7512,-6.9692],[115.7486,-6.9718],[115.758,-6.9761],[115.7617,-6.9702],[115.7568,-6.9694]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[114.1824,-7.003],[114.1845,-6.9878],[114.1872,-6.98],[114.1867,-6.9721],[114.1822,-6.9671],[114.1775,-6.9648],[114.1712,-6.9664],[114.167,-6.9738],[114.1643,-6.9894],[114.161,-6.9988],[114.1665,-7.0024],[114.1782,-7.0053],[114.1824,-7.003]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[114.4342,-6.9798],[114.4373,-6.9688],[114.4361,-6.9636],[114.4309,-6.9643],[114.428,-6.9724],[114.4307,-6.9811],[114.4342,-6.9798]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.4159,-6.9849],[115.4176,-6.9819],[115.4144,-6.974],[115.418,-6.9664],[115.4142,-6.9603],[115.4115,-6.9647],[115.4124,-6.9745],[115.4094,-6.9812],[115.4118,-6.9845],[115.4159,-6.9849]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.2595,-6.9698],[115.2607,-6.9669],[115.2552,-6.9614],[115.2518,-6.9647],[115.2595,-6.9698]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.9145,-6.95],[115.9052,-6.9501],[115.9006,-6.9545],[115.9029,-6.9614],[115.9138,-6.9623],[115.9256,-6.9593],[115.9332,-6.9621],[115.933,-6.9558],[115.9259,-6.9528],[115.9145,-6.95]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.5177,-6.9468],[115.5105,-6.9471],[115.5125,-6.9521],[115.5181,-6.9526],[115.5225,-6.9489],[115.5177,-6.9468]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.5871,-6.9432],[115.5757,-6.9446],[115.571,-6.95],[115.5729,-6.9581],[115.5678,-6.9592],[115.5643,-6.963],[115.5683,-6.9697],[115.5711,-6.9778],[115.5856,-6.9778],[115.5914,-6.9821],[115.5883,-6.9899],[115.5932,-6.9976],[115.5978,-6.9952],[115.6059,-6.9988],[115.6078,-7.0019],[115.6143,-7.006],[115.6229,-7.0038],[115.6324,-7.0081],[115.6412,-6.9997],[115.6473,-7.0003],[115.6516,-7.0026],[115.6672,-7.0078],[115.6775,-7.0162],[115.6843,-7.0158],[115.6822,-7.0026],[115.675,-6.9982],[115.6741,-6.9933],[115.6545,-6.9827],[115.6516,-6.9778],[115.6433,-6.9724],[115.6359,-6.9698],[115.6106,-6.9558],[115.5973,-6.9496],[115.5871,-6.9432]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.4883,-6.9433],[115.49,-6.9501],[115.4982,-6.9514],[115.4929,-6.9435],[115.4883,-6.9433]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.4741,-6.9419],[115.4735,-6.9457],[115.4815,-6.9448],[115.4812,-6.9425],[115.4741,-6.9419]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.8756,-6.9388],[115.8712,-6.9473],[115.8676,-6.9511],[115.8688,-6.9615],[115.876,-6.9612],[115.8792,-6.9589],[115.884,-6.9496],[115.8756,-6.9388]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.791,-6.9369],[115.7886,-6.9372],[115.7832,-6.9532],[115.7785,-6.9625],[115.7848,-6.9641],[115.7919,-6.9613],[115.7957,-6.9548],[115.7967,-6.949],[115.7948,-6.942],[115.791,-6.9369]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[116.2534,-6.9284],[116.2527,-6.9311],[116.2438,-6.9361],[116.236,-6.9385],[116.2347,-6.943],[116.238,-6.9477],[116.2461,-6.9499],[116.254,-6.9497],[116.2612,-6.9475],[116.2667,-6.9436],[116.2695,-6.9379],[116.2629,-6.932],[116.2534,-6.9284]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[113.602,-7.1277],[113.6082,-7.1256],[113.6139,-7.1264],[113.6356,-7.1246],[113.6456,-7.1289],[113.6495,-7.1263],[113.654,-7.1278],[113.6657,-7.1157],[113.6707,-7.1139],[113.6729,-7.1107],[113.683,-7.1087],[113.6919,-7.1106],[113.7137,-7.1121],[113.7203,-7.1136],[113.724,-7.1162],[113.738,-7.1151],[113.746,-7.1158],[113.7525,-7.1194],[113.7697,-7.122],[113.7706,-7.1235],[113.7822,-7.1238],[113.7849,-7.1249],[113.7966,-7.1252],[113.7999,-7.1271],[113.8116,-7.1292],[113.8155,-7.1331],[113.8257,-7.1336],[113.8292,-7.1327],[113.8455,-7.1333],[113.8568,-7.1345],[113.8707,-7.1338],[113.8872,-7.134],[113.8923,-7.1328],[113.8938,-7.1234],[113.8892,-7.1146],[113.891,-7.1114],[113.8882,-7.104],[113.8817,-7.1012],[113.8786,-7.1017],[113.8706,-7.096],[113.8752,-7.084],[113.8802,-7.0742],[113.8902,-7.0621],[113.9067,-7.0471],[113.9166,-7.0431],[113.9226,-7.0446],[113.931,-7.0493],[113.9348,-7.053],[113.9437,-7.0571],[113.9477,-7.0528],[113.9464,-7.0444],[113.9262,-7.035],[113.9205,-7.0294],[113.9217,-7.0234],[113.9271,-7.0185],[113.9328,-7.0203],[113.9413,-7.0268],[113.9386,-7.0353],[113.9451,-7.0385],[113.9469,-7.0413],[113.9615,-7.0404],[113.965,-7.0393],[113.9754,-7.0218],[113.9892,-7.0085],[114.0019,-7.0056],[114.0127,-7.0058],[114.0151,-7.0076],[114.0208,-7.0066],[114.0335,-7.0089],[114.0437,-7.0075],[114.0585,-7.0034],[114.0652,-6.9993],[114.0833,-6.9866],[114.0858,-6.9839],[114.0935,-6.9799],[114.0987,-6.9791],[114.1075,-6.9799],[114.1137,-6.9825],[114.1241,-6.9785],[114.1198,-6.9698],[114.1129,-6.9533],[114.1066,-6.9415],[114.1032,-6.9376],[114.0906,-6.9284],[114.0742,-6.9214],[114.0653,-6.9183],[114.0279,-6.9008],[114.0214,-6.8988],[114.0015,-6.8868],[113.9804,-6.8803],[113.9776,-6.8775],[113.9675,-6.873],[113.9488,-6.8693],[113.9389,-6.8685],[113.9321,-6.8665],[113.9217,-6.8661],[113.9147,-6.8639],[113.9076,-6.8634],[113.8897,-6.8665],[113.8857,-6.8659],[113.8746,-6.8687],[113.869,-6.8716],[113.8561,-6.8726],[113.8249,-6.8801],[113.8135,-6.8813],[113.8006,-6.8848],[113.7696,-6.8835],[113.7601,-6.8856],[113.7537,-6.8845],[113.7401,-6.8842],[113.7299,-6.8874],[113.711,-6.8862],[113.6964,-6.8835],[113.6788,-6.8828],[113.6592,-6.8863],[113.6548,-6.888],[113.6402,-6.8889],[113.6391,-6.8876],[113.638,-6.8922],[113.6392,-6.9009],[113.6357,-6.9134],[113.6417,-6.9174],[113.6483,-6.9151],[113.65,-6.9192],[113.6458,-6.9255],[113.6402,-6.9278],[113.6365,-6.9389],[113.6317,-6.939],[113.6328,-6.9435],[113.6273,-6.9516],[113.6275,-6.9614],[113.6257,-6.966],[113.6159,-6.9689],[113.6084,-6.9743],[113.6117,-6.9827],[113.6122,-6.992],[113.6071,-7.0056],[113.6114,-7.0095],[113.6078,-7.0129],[113.5953,-7.0111],[113.5949,-7.0156],[113.5884,-7.0183],[113.5814,-7.0188],[113.5808,-7.0257],[113.5775,-7.0337],[113.5832,-7.0415],[113.5973,-7.038],[113.6,-7.0421],[113.605,-7.0451],[113.6021,-7.0484],[113.5935,-7.062],[113.6003,-7.0631],[113.6023,-7.0674],[113.6063,-7.0674],[113.6073,-7.0739],[113.6138,-7.078],[113.614,-7.0809],[113.6186,-7.0839],[113.6219,-7.0897],[113.6209,-7.1037],[113.6122,-7.105],[113.607,-7.1135],[113.606,-7.1179],[113.6023,-7.1215],[113.602,-7.1277]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[115.2672,-6.8275],[115.2545,-6.8272],[115.2442,-6.8283],[115.2356,-6.8343],[115.2368,-6.8382],[115.2435,-6.8431],[115.2489,-6.8447],[115.2528,-6.8525],[115.2536,-6.8625],[115.2449,-6.8736],[115.2387,-6.8735],[115.2421,-6.8833],[115.2398,-6.8863],[115.23,-6.8861],[115.2274,-6.883],[115.2206,-6.8829],[115.2071,-6.8899],[115.2034,-6.8977],[115.2004,-6.9079],[115.1996,-6.9242],[115.2041,-6.927],[115.2052,-6.9314],[115.2032,-6.9372],[115.2118,-6.9427],[115.2145,-6.9421],[115.2225,-6.9351],[115.2303,-6.9373],[115.2299,-6.9412],[115.2339,-6.9445],[115.2376,-6.9436],[115.2389,-6.9374],[115.2417,-6.9343],[115.2451,-6.939],[115.245,-6.9453],[115.2469,-6.9478],[115.2538,-6.9454],[115.2604,-6.9408],[115.2634,-6.9358],[115.2703,-6.9362],[115.2709,-6.9417],[115.2756,-6.9433],[115.2737,-6.9494],[115.267,-6.9515],[115.2613,-6.9515],[115.2573,-6.9537],[115.2576,-6.9601],[115.2632,-6.9637],[115.2614,-6.9722],[115.2648,-6.977],[115.2636,-6.9841],[115.2662,-6.994],[115.2738,-6.9943],[115.2805,-7.0035],[115.292,-7.011],[115.2927,-7.0054],[115.2999,-7.0008],[115.3015,-6.9962],[115.2991,-6.992],[115.3006,-6.9874],[115.29,-6.9803],[115.2925,-6.9713],[115.297,-6.9718],[115.3036,-6.9777],[115.3101,-6.977],[115.3043,-6.9654],[115.3028,-6.9601],[115.2997,-6.958],[115.3022,-6.9499],[115.3091,-6.9546],[115.3196,-6.9581],[115.3201,-6.9624],[115.3262,-6.9619],[115.3257,-6.9702],[115.3198,-6.9713],[115.3231,-6.9812],[115.3283,-6.9849],[115.3315,-6.9948],[115.3372,-6.9961],[115.3455,-6.9937],[115.3514,-6.9961],[115.3619,-6.9921],[115.3749,-6.9947],[115.382,-6.9953],[115.3917,-6.9907],[115.4045,-6.9882],[115.4015,-6.9813],[115.3972,-6.9789],[115.3875,-6.9816],[115.392,-6.9747],[115.3927,-6.971],[115.3869,-6.9601],[115.3817,-6.9552],[115.3678,-6.9515],[115.3635,-6.9551],[115.3618,-6.9504],[115.3631,-6.9452],[115.3528,-6.9423],[115.3531,-6.9372],[115.3438,-6.9377],[115.3417,-6.9458],[115.3391,-6.9456],[115.3388,-6.9365],[115.3347,-6.9361],[115.331,-6.9313],[115.3367,-6.9276],[115.3347,-6.9236],[115.3391,-6.9184],[115.3499,-6.9252],[115.351,-6.9206],[115.358,-6.9194],[115.3588,-6.9249],[115.3657,-6.9249],[115.3701,-6.9208],[115.3685,-6.9065],[115.3726,-6.9051],[115.3735,-6.9014],[115.3784,-6.9003],[115.3792,-6.9147],[115.3841,-6.9135],[115.3882,-6.9098],[115.3903,-6.9048],[115.3972,-6.9078],[115.3952,-6.9126],[115.3977,-6.9152],[115.396,-6.9202],[115.4013,-6.9241],[115.4053,-6.924],[115.4084,-6.9345],[115.4086,-6.9394],[115.4121,-6.9427],[115.4198,-6.9374],[115.4207,-6.9325],[115.425,-6.9324],[115.424,-6.922],[115.4313,-6.9178],[115.4315,-6.9245],[115.434,-6.9256],[115.4322,-6.9428],[115.4358,-6.9407],[115.4375,-6.9299],[115.4404,-6.9305],[115.4401,-6.9231],[115.4474,-6.9204],[115.4446,-6.9174],[115.4494,-6.9117],[115.4557,-6.9144],[115.4549,-6.9214],[115.4619,-6.9222],[115.4587,-6.9291],[115.4591,-6.934],[115.4716,-6.9291],[115.4746,-6.9244],[115.4789,-6.9255],[115.4761,-6.9307],[115.4967,-6.9414],[115.4947,-6.9457],[115.497,-6.9485],[115.5023,-6.9488],[115.5098,-6.9459],[115.5195,-6.9453],[115.529,-6.9513],[115.5382,-6.9602],[115.5487,-6.9663],[115.5516,-6.9651],[115.5546,-6.958],[115.5536,-6.9522],[115.5636,-6.9483],[115.5645,-6.9444],[115.5717,-6.9425],[115.573,-6.9344],[115.5764,-6.9326],[115.573,-6.9276],[115.5657,-6.9233],[115.5639,-6.9147],[115.5601,-6.9065],[115.5557,-6.9033],[115.543,-6.9019],[115.5326,-6.8921],[115.5218,-6.8836],[115.5086,-6.8775],[115.5006,-6.8754],[115.4894,-6.8706],[115.4771,-6.8632],[115.4528,-6.853],[115.437,-6.8468],[115.4145,-6.8409],[115.4052,-6.8369],[115.3941,-6.8348],[115.3784,-6.8357],[115.3665,-6.8338],[115.3514,-6.8343],[115.3433,-6.8324],[115.3293,-6.8333],[115.3239,-6.8347],[115.3064,-6.8318],[115.301,-6.8323],[115.2913,-6.8303],[115.2851,-6.8304],[115.2753,-6.8275],[115.2672,-6.8275]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[114.413,-5.5328],[114.4082,-5.5335],[114.4039,-5.5389],[114.398,-5.5392],[114.3938,-5.542],[114.3965,-5.5469],[114.3966,-5.5529],[114.3931,-5.5642],[114.3975,-5.5718],[114.4056,-5.5696],[114.4171,-5.5745],[114.4196,-5.5786],[114.421,-5.5891],[114.4227,-5.5903],[114.4304,-5.5875],[114.4343,-5.5889],[114.4478,-5.5792],[114.4467,-5.5727],[114.4533,-5.5664],[114.451,-5.5623],[114.4524,-5.5489],[114.4462,-5.548],[114.439,-5.5495],[114.4312,-5.5474],[114.4241,-5.5507],[114.4206,-5.5461],[114.4178,-5.5519],[114.4125,-5.5456],[114.415,-5.5363],[114.413,-5.5328]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[114.4158,-5.4309],[114.4095,-5.4413],[114.4139,-5.4512],[114.4172,-5.4553],[114.4222,-5.4573],[114.425,-5.4618],[114.4359,-5.4607],[114.4384,-5.4584],[114.4386,-5.4528],[114.4293,-5.4385],[114.4191,-5.431],[114.4158,-5.4309]]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"LineString","coordinates":[[114.608,-5.0597],[114.6104,-5.0508],[114.6069,-5.0492],[114.5997,-5.0532],[114.5951,-5.0595],[114.5882,-5.066],[114.5877,-5.0714],[114.5905,-5.0775],[114.593,-5.0781],[114.5926,-5.0901],[114.5892,-5.0962],[114.5948,-5.1008],[114.6032,-5.1027],[114.6036,-5.0966],[114.6106,-5.0789],[114.6114,-5.0683],[114.608,-5.0597]]}},{"type":"Feature","properties":{"mhid":"1332:265","alt_name":"KOTA KEDIRI","latitude":-7.83333,"longitude":112.01667,"sample_value":929},"geometry":{"type":"LineString","coordinates":[[112.0013,-7.7711],[111.9973,-7.7716],[111.9926,-7.7755],[111.9906,-7.7815],[111.9835,-7.7809],[111.9827,-7.7867],[111.9766,-7.7935],[111.9713,-7.7911],[111.9563,-7.7967],[111.9544,-7.8124],[111.9581,-7.8229],[111.975,-7.8244],[111.987,-7.8296],[111.9842,-7.8378],[112.0036,-7.8425],[112.0044,-7.8462],[111.9999,-7.8527],[112.0097,-7.856],[112.011,-7.8618],[112.0172,-7.8615],[112.0222,-7.8685],[112.0424,-7.8717],[112.0476,-7.8678],[112.0554,-7.8704],[112.058,-7.8651],[112.0667,-7.8688],[112.0724,-7.8728],[112.0737,-7.8681],[112.0659,-7.8604],[112.0678,-7.849],[112.0695,-7.8452],[112.0776,-7.8492],[112.0814,-7.8427],[112.074,-7.8373],[112.0623,-7.8356],[112.0579,-7.8362],[112.0552,-7.8325],[112.0511,-7.8317],[112.0427,-7.8273],[112.0432,-7.8231],[112.0333,-7.8188],[112.0358,-7.8128],[112.0294,-7.8116],[112.0286,-7.8062],[112.0245,-7.7996],[112.016,-7.7957],[112.016,-7.7916],[112.0109,-7.7898],[112.0062,-7.7828],[112.0054,-7.7726],[112.0013,-7.7711]]}},{"type":"Feature","properties":{"mhid":"1332:266","alt_name":"KOTA BLITAR","latitude":-8.1,"longitude":112.16667,"sample_value":816},"geometry":{"type":"LineString","coordinates":[[112.1849,-8.0561],[112.1812,-8.0607],[112.1732,-8.0576],[112.1623,-8.0841],[112.1575,-8.0837],[112.1475,-8.0801],[112.1445,-8.0766],[112.1354,-8.0829],[112.1325,-8.0908],[112.1404,-8.0963],[112.1366,-8.1094],[112.1436,-8.1138],[112.1441,-8.12],[112.1508,-8.1215],[112.1492,-8.1279],[112.1568,-8.1283],[112.1559,-8.1357],[112.1597,-8.1367],[112.1678,-8.1316],[112.1715,-8.1186],[112.1763,-8.1204],[112.1776,-8.1156],[112.1826,-8.1106],[112.1843,-8.105],[112.1876,-8.1047],[112.1941,-8.1004],[112.1978,-8.0938],[112.1973,-8.0884],[112.1911,-8.0853],[112.1931,-8.0796],[112.1912,-8.0764],[112.195,-8.0721],[112.1978,-8.0662],[112.1899,-8.0635],[112.1888,-8.057],[112.1849,-8.0561]]}},{"type":"Feature","properties":{"mhid":"1332:267","alt_name":"KOTA MALANG","latitude":-7.975,"longitude":112.63333,"sample_value":758},"geometry":{"type":"LineString","coordinates":[[112.5816,-7.9449],[112.5866,-7.9479],[112.5896,-7.9468],[112.5907,-7.9555],[112.5993,-7.9567],[112.598,-7.9629],[112.6022,-7.9671],[112.6028,-7.9717],[112.5988,-7.9747],[112.591,-7.9731],[112.5894,-7.9752],[112.5985,-7.9797],[112.598,-7.9846],[112.5921,-7.9849],[112.5819,-7.9801],[112.5782,-7.9848],[112.5829,-7.9873],[112.5913,-7.9861],[112.5891,-7.9924],[112.5988,-7.9959],[112.5971,-8.0063],[112.5998,-8.0063],[112.6062,-8.0108],[112.6069,-8.0174],[112.6133,-8.0152],[112.6179,-8.0167],[112.614,-8.0212],[112.6189,-8.0234],[112.6176,-8.0266],[112.6309,-8.035],[112.6317,-8.0459],[112.6455,-8.0513],[112.6488,-8.0479],[112.6568,-8.0497],[112.6575,-8.0454],[112.6626,-8.0399],[112.6655,-8.0409],[112.6679,-8.035],[112.6728,-8.0319],[112.6754,-8.0277],[112.672,-8.0249],[112.6732,-8.0185],[112.672,-8.0089],[112.6789,-8.0103],[112.6793,-8.0054],[112.6843,-8.005],[112.6893,-7.997],[112.6937,-7.9875],[112.6948,-7.9827],[112.6888,-7.9807],[112.6897,-7.9755],[112.6812,-7.9756],[112.6681,-7.9692],[112.6572,-7.965],[112.6634,-7.9589],[112.6637,-7.948],[112.6655,-7.9434],[112.665,-7.9367],[112.6598,-7.9249],[112.6497,-7.9198],[112.6459,-7.9164],[112.6406,-7.9207],[112.6303,-7.9113],[112.6178,-7.9198],[112.6106,-7.9197],[112.6095,-7.9239],[112.6025,-7.9216],[112.5975,-7.9299],[112.5987,-7.9365],[112.59,-7.9362],[112.5853,-7.9379],[112.5739,-7.9352],[112.5708,-7.939],[112.5816,-7.9449]]}},{"type":"Feature","properties":{"mhid":"1332:268","alt_name":"KOTA PROBOLINGGO","latitude":-7.78333,"longitude":113.21667,"sample_value":954},"geometry":{"type":"LineString","coordinates":[[113.2372,-7.7403],[113.2249,-7.7379],[113.2161,-7.7277],[113.2152,-7.7358],[113.2049,-7.7405],[113.1969,-7.7416],[113.1954,-7.744],[113.1895,-7.745],[113.184,-7.7484],[113.1787,-7.7476],[113.1763,-7.7518],[113.1715,-7.7548],[113.1661,-7.7539],[113.1653,-7.7573],[113.168,-7.7614],[113.1641,-7.7733],[113.1639,-7.7792],[113.1789,-7.7834],[113.177,-7.7885],[113.1828,-7.7914],[113.1783,-7.81],[113.2041,-7.8136],[113.2149,-7.8202],[113.2167,-7.8155],[113.2267,-7.8016],[113.2321,-7.8029],[113.2333,-7.8069],[113.2402,-7.8077],[113.2401,-7.8001],[113.2369,-7.7896],[113.2371,-7.7815],[113.234,-7.7806],[113.2366,-7.7724],[113.2343,-7.7704],[113.2347,-7.7567],[113.2321,-7.7552],[113.2372,-7.7403]]}},{"type":"Feature","properties":{"mhid":"1332:269","alt_name":"KOTA PASURUAN","latitude":-7.65,"longitude":112.9,"sample_value":691},"geometry":{"type":"LineString","coordinates":[[112.9498,-7.6359],[112.9522,-7.6319],[112.952,-7.6239],[112.9372,-7.6254],[112.9368,-7.6303],[112.9302,-7.6316],[112.9194,-7.6269],[112.9089,-7.6289],[112.9028,-7.6258],[112.9009,-7.6289],[112.895,-7.6256],[112.8915,-7.6267],[112.8863,-7.6235],[112.8843,-7.6318],[112.8746,-7.63],[112.8725,-7.6352],[112.876,-7.6396],[112.8715,-7.6512],[112.8728,-7.6599],[112.8788,-7.6553],[112.8831,-7.6609],[112.8815,-7.664],[112.8861,-7.667],[112.8834,-7.6716],[112.8907,-7.673],[112.8945,-7.6762],[112.8964,-7.6827],[112.9012,-7.6864],[112.908,-7.6792],[112.9169,-7.6785],[112.9185,-7.674],[112.9227,-7.676],[112.9286,-7.6672],[112.932,-7.6687],[112.9364,-7.6617],[112.9392,-7.6545],[112.9449,-7.6523],[112.944,-7.6481],[112.9464,-7.644],[112.9477,-7.6367],[112.9498,-7.6359]]}},{"type":"Feature","properties":{"mhid":"1332:270","alt_name":"KOTA MOJOKERTO","latitude":-7.46667,"longitude":112.43333,"sample_value":695},"geometry":{"type":"LineString","coordinates":[[112.4456,-7.4516],[112.4403,-7.4561],[112.4317,-7.4602],[112.421,-7.4569],[112.4153,-7.4574],[112.4152,-7.4642],[112.4117,-7.469],[112.41,-7.4771],[112.4065,-7.4771],[112.4076,-7.4894],[112.413,-7.4897],[112.415,-7.4941],[112.4228,-7.4929],[112.4239,-7.4856],[112.4276,-7.4836],[112.4327,-7.4848],[112.4363,-7.4816],[112.4435,-7.4818],[112.4434,-7.4906],[112.4494,-7.4923],[112.4507,-7.4818],[112.4605,-7.4831],[112.4613,-7.4736],[112.4646,-7.4732],[112.4674,-7.4674],[112.4668,-7.4552],[112.4575,-7.4568],[112.455,-7.4474],[112.4456,-7.4516]]}},{"type":"Feature","properties":{"mhid":"1332:271","alt_name":"KOTA MADIUN","latitude":-7.63333,"longitude":111.53333,"sample_value":297},"geometry":{"type":"LineString","coordinates":[[111.511,-7.6594],[111.5151,-7.662],[111.5197,-7.6616],[111.5247,-7.6638],[111.5329,-7.6633],[111.5333,-7.6602],[111.5413,-7.6593],[111.5415,-7.6518],[111.5397,-7.6463],[111.546,-7.6476],[111.5492,-7.6456],[111.5515,-7.6401],[111.5502,-7.6359],[111.5529,-7.6337],[111.5488,-7.6252],[111.553,-7.6175],[111.5567,-7.6137],[111.5586,-7.6082],[111.5576,-7.6036],[111.5591,-7.5967],[111.5512,-7.5954],[111.5445,-7.5998],[111.5403,-7.5993],[111.5324,-7.6027],[111.5312,-7.6002],[111.5212,-7.5973],[111.5176,-7.603],[111.5136,-7.603],[111.5117,-7.6082],[111.5014,-7.6062],[111.5005,-7.6113],[111.5023,-7.6189],[111.498,-7.6257],[111.4994,-7.6284],[111.496,-7.6369],[111.4997,-7.6408],[111.5117,-7.6361],[111.5117,-7.6489],[111.5099,-7.6577],[111.511,-7.6594]]}},{"type":"Feature","properties":{"mhid":"1332:272","alt_name":"KOTA SURABAYA","latitude":-7.26667,"longitude":112.71667,"sample_value":905},"geometry":{"type":"LineString","coordinates":[[112.8259,-7.3432],[112.8269,-7.3333],[112.8322,-7.3261],[112.8377,-7.3224],[112.8425,-7.317],[112.8464,-7.3062],[112.8443,-7.2867],[112.8395,-7.2773],[112.8293,-7.2729],[112.8279,-7.2695],[112.8363,-7.2673],[112.8316,-7.2615],[112.827,-7.2618],[112.8065,-7.2557],[112.8014,-7.2423],[112.7969,-7.2385],[112.7942,-7.2308],[112.7869,-7.2222],[112.7787,-7.2194],[112.78,-7.2087],[112.7753,-7.2074],[112.7748,-7.203],[112.7648,-7.1963],[112.76,-7.1959],[112.7518,-7.1999],[112.7433,-7.1943],[112.7315,-7.1985],[112.7327,-7.2066],[112.7257,-7.2098],[112.72,-7.1986],[112.7174,-7.201],[112.7193,-7.205],[112.7141,-7.2163],[112.7102,-7.2175],[112.7114,-7.2219],[112.7048,-7.2207],[112.6958,-7.2234],[112.689,-7.2233],[112.6853,-7.2254],[112.6801,-7.2231],[112.6764,-7.2239],[112.6682,-7.2199],[112.6622,-7.2087],[112.66,-7.2077],[112.6612,-7.2003],[112.6638,-7.1988],[112.6615,-7.193],[112.6592,-7.1964],[112.6348,-7.1996],[112.6288,-7.2015],[112.6134,-7.209],[112.6015,-7.2042],[112.5927,-7.2023],[112.5923,-7.2071],[112.5981,-7.212],[112.5947,-7.2147],[112.5954,-7.2196],[112.6003,-7.2297],[112.6046,-7.2328],[112.6039,-7.237],[112.6065,-7.2394],[112.6035,-7.2476],[112.6146,-7.2482],[112.6179,-7.2527],[112.6172,-7.2576],[112.6262,-7.2613],[112.6319,-7.2609],[112.632,-7.2722],[112.6269,-7.2765],[112.6267,-7.2812],[112.6287,-7.2896],[112.6273,-7.2983],[112.6294,-7.3116],[112.6493,-7.3146],[112.6483,-7.319],[112.6509,-7.3215],[112.6485,-7.3353],[112.6538,-7.339],[112.656,-7.3456],[112.6544,-7.3562],[112.6563,-7.3568],[112.6624,-7.3513],[112.6733,-7.3514],[112.6902,-7.3455],[112.6981,-7.3417],[112.7047,-7.3362],[112.7161,-7.3399],[112.7157,-7.3418],[112.7242,-7.3459],[112.7256,-7.3482],[112.7331,-7.3481],[112.7365,-7.345],[112.742,-7.3452],[112.7428,-7.3411],[112.7536,-7.342],[112.7549,-7.337],[112.7664,-7.3384],[112.7775,-7.3411],[112.7794,-7.3446],[112.789,-7.344],[112.7935,-7.3464],[112.7987,-7.3449],[112.8129,-7.3463],[112.8196,-7.3433],[112.8259,-7.3432]]}},{"type":"Feature","properties":{"mhid":"1332:273","alt_name":"KOTA BATU","latitude":-7.83272,"longitude":112.53751,"sample_value":772},"geometry":{"type":"LineString","coordinates":[[112.5745,-7.7339],[112.5645,-7.7333],[112.549,-7.7304],[112.5401,-7.7258],[112.5333,-7.7254],[112.5292,-7.7365],[112.522,-7.7382],[112.5148,-7.7419],[112.5134,-7.7512],[112.5074,-7.755],[112.5029,-7.7558],[112.5006,-7.7625],[112.4873,-7.7657],[112.4782,-7.7689],[112.4827,-7.774],[112.4839,-7.782],[112.487,-7.7862],[112.4885,-7.7955],[112.4878,-7.8043],[112.4917,-7.8071],[112.4951,-7.8141],[112.4925,-7.8239],[112.4931,-7.8295],[112.4962,-7.8379],[112.4929,-7.8458],[112.495,-7.8544],[112.4911,-7.8579],[112.4878,-7.8643],[112.4876,-7.8713],[112.4896,-7.8762],[112.488,-7.8817],[112.4789,-7.8949],[112.4753,-7.9043],[112.4761,-7.9152],[112.4744,-7.9222],[112.4736,-7.9337],[112.4769,-7.9391],[112.4849,-7.9339],[112.5021,-7.9264],[112.5127,-7.9225],[112.5204,-7.9268],[112.5315,-7.9247],[112.5343,-7.9255],[112.5546,-7.9187],[112.5569,-7.9162],[112.5663,-7.9134],[112.5729,-7.9137],[112.576,-7.9169],[112.5794,-7.915],[112.5835,-7.9093],[112.5892,-7.9091],[112.5947,-7.9034],[112.5865,-7.8938],[112.582,-7.8899],[112.5722,-7.8909],[112.5644,-7.8809],[112.5656,-7.8682],[112.5645,-7.8618],[112.5657,-7.8358],[112.5632,-7.8137],[112.5697,-7.8061],[112.572,-7.7996],[112.5771,-7.7919],[112.5861,-7.7844],[112.5829,-7.7783],[112.5829,-7.7729],[112.5882,-7.7667],[112.5813,-7.7586],[112.5817,-7.7533],[112.5775,-7.7386],[112.5745,-7.7339]]}},{"type":"Feature","properties":{"mhid":"1332:274","alt_name":"KABUPATEN PANDEGLANG","latitude":-6.63333,"longitude":105.75,"sample_value":886},"geometry":{"type":"LineString","coordinates":[[105.5498,-6.9957],[105.5417,-6.9961],[105.5329,-6.9986],[105.5292,-7.0009],[105.5216,-7.0016],[105.5199,-7.0073],[105.5249,-7.0135],[105.5357,-7.0153],[105.5555,-7.0168],[105.563,-7.0166],[105.5681,-7.0143],[105.5697,-7.0074],[105.5609,-7.0008],[105.5498,-6.9957]]}},{"type":"Feature","properties":{"mhid":"1332:274","alt_name":"KABUPATEN PANDEGLANG","latitude":-6.63333,"longitude":105.75,"sample_value":886},"geometry":{"type":"LineString","coordinates":[[105.8146,-6.9503],[105.8011,-6.953],[105.7877,-6.9599],[105.7725,-6.9634],[105.7672,-6.966],[105.7658,-6.9709],[105.7722,-6.9739],[105.8126,-6.9587],[105.8201,-6.9543],[105.8193,-6.9504],[105.8146,-6.9503]]}},{"type":"Feature","properties":{"mhid":"1332:274","alt_name":"KABUPATEN PANDEGLANG","latitude":-6.63333,"longitude":105.75,"sample_value":886},"geometry":{"type":"LineString","coordinates":[[105.4258,-6.7528],[105.4232,-6.7487],[105.4196,-6.7482],[105.418,-6.753],[105.4258,-6.7528]]}},{"type":"Feature","properties":{"mhid":"1332:274","alt_name":"KABUPATEN PANDEGLANG","latitude":-6.63333,"longitude":105.75,"sample_value":886},"geometry":{"type":"LineString","coordinates":[[105.2561,-6.7289],[105.2467,-6.7252],[105.2488,-6.7393],[105.2474,-6.7484],[105.2531,-6.7524],[105.2583,-6.7508],[105.2664,-6.7421],[105.2678,-6.7375],[105.2631,-6.729],[105.2561,-6.7289]]}},{"type":"Feature","properties":{"mhid":"1332:274","alt_name":"KABUPATEN PANDEGLANG","latitude":-6.63333,"longitude":105.75,"sample_value":886},"geometry":{"type":"LineString","coordinates":[[105.2656,-6.5228],[105.2619,-6.5216],[105.2543,-6.5234],[105.2512,-6.5295],[105.244,-6.53],[105.2388,-6.5332],[105.232,-6.5331],[105.2296,-6.5306],[105.22,-6.5298],[105.2134,-6.5351],[105.2127,-6.5401],[105.2147,-6.5441],[105.2086,-6.5453],[105.1984,-6.5436],[105.1974,-6.5414],[105.1895,-6.541],[105.184,-6.5388],[105.1801,-6.5445],[105.1632,-6.5537],[105.1634,-6.5562],[105.1562,-6.5641],[105.1513,-6.5676],[105.141,-6.572],[105.1281,-6.5842],[105.125,-6.5893],[105.1211,-6.591],[105.1105,-6.6044],[105.1008,-6.6123],[105.1102,-6.6105],[105.1172,-6.6131],[105.1165,-6.6174],[105.1283,-6.6236],[105.1314,-6.6058],[105.1359,-6.6002],[105.1499,-6.5915],[105.1536,-6.5868],[105.1568,-6.5782],[105.1643,-6.5732],[105.1721,-6.5761],[105.1809,-6.583],[105.1809,-6.586],[105.1764,-6.5916],[105.1741,-6.5992],[105.1821,-6.6065],[105.1819,-6.6105],[105.1857,-6.6131],[105.1913,-6.6121],[105.1949,-6.6205],[105.1917,-6.6307],[105.1906,-6.6406],[105.1819,-6.6509],[105.1717,-6.6559],[105.1702,-6.6633],[105.1752,-6.6704],[105.1794,-6.6719],[105.1825,-6.6802],[105.186,-6.6734],[105.1916,-6.6663],[105.1981,-6.6634],[105.2044,-6.6568],[105.2049,-6.6476],[105.2105,-6.6464],[105.2148,-6.6403],[105.2189,-6.6377],[105.2291,-6.643],[105.2344,-6.639],[105.243,-6.6358],[105.2547,-6.6081],[105.2584,-6.6052],[105.2607,-6.5979],[105.2577,-6.5827],[105.2532,-6.5801],[105.2512,-6.5733],[105.2543,-6.5662],[105.2527,-6.5616],[105.2534,-6.5482],[105.2584,-6.5401],[105.2652,-6.5365],[105.2678,-6.5281],[105.2656,-6.5228]]}},{"type":"Feature","properties":{"mhid":"1332:274","alt_name":"KABUPATEN PANDEGLANG","latitude":-6.63333,"longitude":105.75,"sample_value":886},"geometry":{"type":"LineString","coordinates":[[106.1708,-6.29],[106.1693,-6.2889],[106.1699,-6.2798],[106.1757,-6.2687],[106.1747,-6.2514],[106.1655,-6.2525],[106.148,-6.2514],[106.1451,-6.2549],[106.1387,-6.2546],[106.1343,-6.2582],[106.1243,-6.2539],[106.1224,-6.2493],[106.1126,-6.2522],[106.1083,-6.2486],[106.1074,-6.2431],[106.101,-6.2317],[106.0923,-6.236],[106.0884,-6.2334],[106.0829,-6.2325],[106.0767,-6.2435],[106.0755,-6.252],[106.0702,-6.2587],[106.0559,-6.2668],[106.0496,-6.2686],[106.0439,-6.2742],[106.039,-6.2755],[106.0355,-6.2735],[106.0285,-6.2757],[106.0207,-6.2737],[106.0096,-6.274],[106.0013,-6.2754],[105.9956,-6.2726],[105.993,-6.2634],[105.9871,-6.2601],[105.9831,-6.253],[105.981,-6.2438],[105.9717,-6.2456],[105.9581,-6.2448],[105.9496,-6.2483],[105.9474,-6.2375],[105.9391,-6.2391],[105.9343,-6.242],[105.9337,-6.2545],[105.9351,-6.2667],[105.9346,-6.2755],[105.9292,-6.2794],[105.9219,-6.2739],[105.9195,-6.2579],[105.9143,-6.2477],[105.909,-6.2446],[105.8988,-6.2436],[105.8991,-6.2375],[105.8923,-6.2314],[105.8871,-6.2224],[105.882,-6.2216],[105.88,-6.2275],[105.8812,-6.2317],[105.8752,-6.2395],[105.8719,-6.2362],[105.8666,-6.2392],[105.856,-6.2418],[105.8455,-6.2404],[105.8339,-6.2443],[105.8258,-6.2423],[105.8282,-6.2551],[105.8296,-6.2566],[105.8278,-6.2668],[105.8304,-6.2691],[105.8259,-6.2776],[105.8262,-6.2873],[105.8306,-6.2943],[105.8378,-6.295],[105.8404,-6.2968],[105.8411,-6.3057],[105.8397,-6.3137],[105.8365,-6.3162],[105.8307,-6.3159],[105.8281,-6.3188],[105.8293,-6.327],[105.826,-6.3346],[105.8234,-6.3465],[105.824,-6.3513],[105.8196,-6.3623],[105.8193,-6.3701],[105.8228,-6.3737],[105.8214,-6.3831],[105.8246,-6.3856],[105.8257,-6.3902],[105.8246,-6.3964],[105.8269,-6.4067],[105.8247,-6.428],[105.8214,-6.4399],[105.8153,-6.4562],[105.8081,-6.4725],[105.797,-6.4901],[105.783,-6.5067],[105.7687,-6.5177],[105.7593,-6.5206],[105.7518,-6.5216],[105.7452,-6.5193],[105.7371,-6.521],[105.732,-6.5271],[105.7225,-6.5316],[105.7128,-6.5323],[105.7083,-6.5276],[105.7035,-6.5257],[105.694,-6.5246],[105.6866,-6.5215],[105.6845,-6.5154],[105.6755,-6.511],[105.6727,-6.5052],[105.674,-6.5],[105.6777,-6.4933],[105.6755,-6.4858],[105.6785,-6.4767],[105.6682,-6.4714],[105.6653,-6.4727],[105.6678,-6.4782],[105.6639,-6.4814],[105.6564,-6.4783],[105.6497,-6.4816],[105.6477,-6.4866],[105.6499,-6.4908],[105.6463,-6.497],[105.6411,-6.4996],[105.6397,-6.5051],[105.6351,-6.5108],[105.6341,-6.5156],[105.6287,-6.5199],[105.6276,-6.5267],[105.6247,-6.5297],[105.622,-6.538],[105.6231,-6.5487],[105.6158,-6.5595],[105.6159,-6.5695],[105.6173,-6.5765],[105.621,-6.578],[105.6257,-6.5876],[105.622,-6.5984],[105.6182,-6.6027],[105.6173,-6.6127],[105.6181,-6.6164],[105.6096,-6.632],[105.6049,-6.639],[105.5967,-6.6487],[105.5792,-6.658],[105.5717,-6.6568],[105.5679,-6.66],[105.5689,-6.664],[105.5759,-6.6648],[105.5707,-6.6761],[105.5725,-6.6797],[105.5682,-6.6831],[105.5636,-6.6804],[105.5616,-6.6863],[105.5553,-6.6968],[105.5512,-6.6978],[105.5475,-6.7018],[105.5427,-6.7009],[105.541,-6.7059],[105.5293,-6.715],[105.5197,-6.7247],[105.5129,-6.726],[105.5065,-6.731],[105.5068,-6.7381],[105.5116,-6.7429],[105.5121,-6.7574],[105.5036,-6.7651],[105.502,-6.7695],[105.5047,-6.7744],[105.5032,-6.7809],[105.5003,-6.7853],[105.5,-6.7925],[105.4972,-6.7974],[105.4895,-6.8032],[105.481,-6.8065],[105.4793,-6.8096],[105.4815,-6.8164],[105.4779,-6.8203],[105.4695,-6.8243],[105.4646,-6.8283],[105.4532,-6.8273],[105.4476,-6.8257],[105.4403,-6.819],[105.4352,-6.807],[105.4415,-6.8],[105.4348,-6.799],[105.4364,-6.7911],[105.4349,-6.7756],[105.4318,-6.7722],[105.427,-6.7719],[105.4152,-6.7661],[105.4161,-6.7615],[105.411,-6.7592],[105.4085,-6.7522],[105.3962,-6.745],[105.3913,-6.7441],[105.387,-6.7351],[105.3929,-6.7262],[105.4012,-6.7277],[105.4007,-6.7178],[105.3987,-6.7132],[105.3939,-6.7082],[105.3919,-6.6966],[105.3923,-6.6878],[105.3877,-6.6779],[105.3782,-6.6744],[105.3746,-6.6582],[105.3744,-6.6536],[105.3703,-6.6469],[105.3661,-6.6496],[105.3631,-6.6548],[105.3554,-6.6567],[105.3492,-6.6596],[105.3398,-6.6614],[105.3366,-6.6648],[105.3297,-6.6669],[105.3241,-6.6721],[105.3239,-6.6779],[105.3284,-6.6824],[105.3275,-6.692],[105.3301,-6.6961],[105.3256,-6.6984],[105.3196,-6.7093],[105.3163,-6.7089],[105.3084,-6.7152],[105.2983,-6.7189],[105.2818,-6.734],[105.269,-6.7476],[105.2649,-6.7594],[105.2587,-6.7626],[105.2484,-6.7596],[105.2452,-6.7601],[105.2349,-6.7581],[105.2299,-6.7558],[105.224,-6.7492],[105.2117,-6.7461],[105.2104,-6.7526],[105.2131,-6.7567],[105.2141,-6.7625],[105.2206,-6.766],[105.2259,-6.7723],[105.2286,-6.7779],[105.2316,-6.7789],[105.2321,-6.7895],[105.2365,-6.7925],[105.2385,-6.7967],[105.2379,-6.8153],[105.2438,-6.8249],[105.2399,-6.831],[105.2413,-6.8404],[105.2463,-6.8411],[105.2504,-6.8371],[105.2631,-6.8469],[105.2679,-6.8427],[105.2724,-6.8413],[105.2765,-6.8336],[105.2825,-6.8268],[105.2901,-6.8203],[105.2948,-6.8054],[105.3022,-6.8028],[105.3153,-6.8024],[105.3266,-6.8028],[105.3609,-6.8102],[105.3779,-6.8159],[105.3929,-6.8226],[105.4067,-6.8296],[105.4124,-6.8366],[105.4131,-6.8409],[105.4093,-6.8465],[105.4117,-6.8523],[105.4175,-6.8542],[105.4223,-6.8496],[105.4202,-6.8412],[105.4255,-6.8375],[105.4368,-6.8356],[105.4465,-6.8388],[105.464,-6.8518],[105.4661,-6.8552],[105.4727,-6.8591],[105.476,-6.8641],[105.4884,-6.8669],[105.4924,-6.8653],[105.4959,-6.8611],[105.5238,-6.8652],[105.5305,-6.8676],[105.5404,-6.8732],[105.5493,-6.8672],[105.56,-6.8584],[105.5674,-6.8563],[105.5729,-6.8562],[105.5823,-6.8535],[105.592,-6.8533],[105.5999,-6.8509],[105.6033,-6.8464],[105.6191,-6.8432],[105.6393,-6.8418],[105.6607,-6.8443],[105.6726,-6.837],[105.6839,-6.8371],[105.6975,-6.8361],[105.7084,-6.8363],[105.73,-6.8392],[105.7442,-6.8419],[105.7713,-6.8483],[105.7741,-6.8505],[105.7954,-6.8429],[105.8003,-6.8426],[105.8335,-6.8354],[105.8544,-6.8333],[105.8695,-6.8329],[105.8751,-6.837],[105.8827,-6.8391],[105.883,-6.8348],[105.8804,-6.8302],[105.8836,-6.8279],[105.8834,-6.8226],[105.8792,-6.8137],[105.8734,-6.8091],[105.8779,-6.8037],[105.8743,-6.7974],[105.8663,-6.7876],[105.8687,-6.7752],[105.8745,-6.7681],[105.8766,-6.7687],[105.884,-6.7609],[105.883,-6.7558],[105.886,-6.7462],[105.8923,-6.7384],[105.894,-6.7341],[105.8908,-6.7306],[105.8927,-6.7207],[105.8957,-6.7189],[105.8971,-6.714],[105.9043,-6.7175],[105.9108,-6.7175],[105.9162,-6.7195],[105.9287,-6.7042],[105.929,-6.6964],[105.9386,-6.6867],[105.9365,-6.6759],[105.9392,-6.6632],[105.9435,-6.6582],[105.9439,-6.6391],[105.9428,-6.6295],[105.9392,-6.6255],[105.9334,-6.6251],[105.9309,-6.6164],[105.9336,-6.6133],[105.9341,-6.6003],[105.9387,-6.5977],[105.9427,-6.5924],[105.9468,-6.5829],[105.9528,-6.583],[105.959,-6.5709],[105.9659,-6.5694],[105.9709,-6.5658],[105.9708,-6.5561],[105.9749,-6.5531],[105.9781,-6.5436],[105.9853,-6.5409],[105.9821,-6.5292],[105.9833,-6.5252],[105.9882,-6.5245],[105.9917,-6.5147],[105.9836,-6.5046],[105.9882,-6.4975],[105.9926,-6.4965],[105.9969,-6.4887],[105.9994,-6.4806],[106.0041,-6.476],[106.0097,-6.4738],[106.0084,-6.4663],[106.0118,-6.4564],[106.0174,-6.4539],[106.0216,-6.4441],[106.0245,-6.4419],[106.0257,-6.4322],[106.0356,-6.4231],[106.0384,-6.4222],[106.0439,-6.4138],[106.0517,-6.4119],[106.0566,-6.4139],[106.0609,-6.4133],[106.0658,-6.4086],[106.0716,-6.4118],[106.0795,-6.412],[106.0846,-6.4167],[106.0863,-6.4237],[106.0941,-6.4277],[106.1029,-6.4257],[106.1128,-6.4191],[106.1135,-6.4128],[106.1168,-6.4074],[106.1165,-6.4008],[106.1216,-6.3903],[106.1213,-6.3841],[106.1269,-6.3824],[106.1306,-6.3757],[106.126,-6.3703],[106.1255,-6.3584],[106.1295,-6.3577],[106.1293,-6.3526],[106.1321,-6.3463],[106.1317,-6.3362],[106.1298,-6.3343],[106.1301,-6.328],[106.1359,-6.3254],[106.1409,-6.3265],[106.1482,-6.3242],[106.1509,-6.3196],[106.1581,-6.3133],[106.1566,-6.3095],[106.1591,-6.3018],[106.1574,-6.2967],[106.164,-6.2955],[106.1708,-6.29]]}},{"type":"Feature","properties":{"mhid":"1332:275","alt_name":"KABUPATEN LEBAK","latitude":-6.65,"longitude":106.21667,"sample_value":821},"geometry":{"type":"LineString","coordinates":[[106.3997,-6.3324],[106.3915,-6.329],[106.3755,-6.3309],[106.3708,-6.3323],[106.3628,-6.332],[106.3573,-6.3291],[106.3518,-6.3324],[106.339,-6.3365],[106.3351,-6.3344],[106.3264,-6.3358],[106.318,-6.3347],[106.3159,-6.3288],[106.3119,-6.3275],[106.3098,-6.3225],[106.3045,-6.3199],[106.2967,-6.3206],[106.2965,-6.3167],[106.2931,-6.3123],[106.284,-6.3134],[106.2794,-6.3036],[106.2744,-6.301],[106.2606,-6.3069],[106.2597,-6.3108],[106.2523,-6.3089],[106.2528,-6.3064],[106.259,-6.3036],[106.2593,-6.3],[106.2529,-6.2981],[106.2436,-6.2981],[106.244,-6.3046],[106.2385,-6.3061],[106.234,-6.3034],[106.2314,-6.3109],[106.2258,-6.3126],[106.2171,-6.3088],[106.2194,-6.2991],[106.2156,-6.2988],[106.2134,-6.2918],[106.2038,-6.2907],[106.1969,-6.2887],[106.1892,-6.2891],[106.1844,-6.2873],[106.1805,-6.2893],[106.1739,-6.2884],[106.1708,-6.29],[106.164,-6.2955],[106.1574,-6.2967],[106.1591,-6.3018],[106.1566,-6.3095],[106.1581,-6.3133],[106.1509,-6.3196],[106.1482,-6.3242],[106.1409,-6.3265],[106.1359,-6.3254],[106.1301,-6.328],[106.1298,-6.3343],[106.1317,-6.3362],[106.1321,-6.3463],[106.1293,-6.3526],[106.1295,-6.3577],[106.1255,-6.3584],[106.126,-6.3703],[106.1306,-6.3757],[106.1269,-6.3824],[106.1213,-6.3841],[106.1216,-6.3903],[106.1165,-6.4008],[106.1168,-6.4074],[106.1135,-6.4128],[106.1128,-6.4191],[106.1029,-6.4257],[106.0941,-6.4277],[106.0863,-6.4237],[106.0846,-6.4167],[106.0795,-6.412],[106.0716,-6.4118],[106.0658,-6.4086],[106.0609,-6.4133],[106.0566,-6.4139],[106.0517,-6.4119],[106.0439,-6.4138],[106.0384,-6.4222],[106.0356,-6.4231],[106.0257,-6.4322],[106.0245,-6.4419],[106.0216,-6.4441],[106.0174,-6.4539],[106.0118,-6.4564],[106.0084,-6.4663],[106.0097,-6.4738],[106.0041,-6.476],[105.9994,-6.4806],[105.9969,-6.4887],[105.9926,-6.4965],[105.9882,-6.4975],[105.9836,-6.5046],[105.9917,-6.5147],[105.9882,-6.5245],[105.9833,-6.5252],[105.9821,-6.5292],[105.9853,-6.5409],[105.9781,-6.5436],[105.9749,-6.5531],[105.9708,-6.5561],[105.9709,-6.5658],[105.9659,-6.5694],[105.959,-6.5709],[105.9528,-6.583],[105.9468,-6.5829],[105.9427,-6.5924],[105.9387,-6.5977],[105.9341,-6.6003],[105.9336,-6.6133],[105.9309,-6.6164],[105.9334,-6.6251],[105.9392,-6.6255],[105.9428,-6.6295],[105.9439,-6.6391],[105.9435,-6.6582],[105.9392,-6.6632],[105.9365,-6.6759],[105.9386,-6.6867],[105.929,-6.6964],[105.9287,-6.7042],[105.9162,-6.7195],[105.9108,-6.7175],[105.9043,-6.7175],[105.8971,-6.714],[105.8957,-6.7189],[105.8927,-6.7207],[105.8908,-6.7306],[105.894,-6.7341],[105.8923,-6.7384],[105.886,-6.7462],[105.883,-6.7558],[105.884,-6.7609],[105.8766,-6.7687],[105.8745,-6.7681],[105.8687,-6.7752],[105.8663,-6.7876],[105.8743,-6.7974],[105.8779,-6.8037],[105.8734,-6.8091],[105.8792,-6.8137],[105.8834,-6.8226],[105.8836,-6.8279],[105.8804,-6.8302],[105.883,-6.8348],[105.8827,-6.8391],[105.88,-6.8447],[105.8872,-6.8457],[105.8975,-6.8401],[105.8934,-6.8291],[105.8983,-6.8233],[105.9056,-6.8198],[105.918,-6.816],[105.9292,-6.8142],[105.9608,-6.812],[105.993,-6.814],[106.0304,-6.8219],[106.0586,-6.8326],[106.0635,-6.8362],[106.0655,-6.8422],[106.0755,-6.8524],[106.0872,-6.8618],[106.0947,-6.876],[106.1052,-6.8801],[106.106,-6.8829],[106.1169,-6.8861],[106.1192,-6.8882],[106.1311,-6.8919],[106.1482,-6.903],[106.1551,-6.9027],[106.1649,-6.9084],[106.1878,-6.91],[106.2054,-6.9155],[106.2275,-6.926],[106.2381,-6.932],[106.2462,-6.9402],[106.2478,-6.9483],[106.2415,-6.952],[106.2411,-6.9573],[106.246,-6.9606],[106.2548,-6.9603],[106.2611,-6.964],[106.2648,-6.9731],[106.2698,-6.9761],[106.2787,-6.978],[106.2828,-6.9743],[106.3016,-6.9789],[106.3083,-6.9867],[106.3067,-6.9937],[106.3111,-6.995],[106.3205,-6.9914],[106.3309,-6.9918],[106.3345,-6.9877],[106.3384,-6.9873],[106.3436,-6.991],[106.3441,-6.9976],[106.354,-6.9945],[106.3588,-6.9977],[106.3609,-6.9924],[106.3682,-6.9935],[106.3705,-6.9907],[106.3781,-6.9953],[106.3807,-6.9903],[106.3876,-6.9885],[106.3949,-6.982],[106.3969,-6.978],[106.394,-6.9741],[106.3929,-6.9681],[106.3957,-6.9541],[106.3936,-6.9479],[106.3896,-6.942],[106.3914,-6.9397],[106.3911,-6.9324],[106.3981,-6.9289],[106.4001,-6.9243],[106.3979,-6.9179],[106.397,-6.9086],[106.3922,-6.9041],[106.3929,-6.9006],[106.4024,-6.8956],[106.4063,-6.8864],[106.4193,-6.8805],[106.4192,-6.8743],[106.4239,-6.8705],[106.4313,-6.8617],[106.4298,-6.8555],[106.432,-6.8493],[106.4312,-6.846],[106.4353,-6.8389],[106.4361,-6.8202],[106.44,-6.8177],[106.447,-6.8185],[106.4529,-6.8131],[106.4556,-6.8048],[106.4791,-6.7952],[106.4852,-6.7947],[106.4917,-6.7913],[106.4965,-6.7915],[106.5095,-6.7809],[106.5166,-6.7765],[106.5263,-6.7679],[106.5248,-6.7623],[106.5202,-6.7616],[106.5,-6.7525],[106.4746,-6.7522],[106.466,-6.7501],[106.466,-6.7449],[106.4632,-6.7369],[106.4538,-6.7308],[106.4505,-6.7262],[106.4514,-6.7135],[106.4498,-6.7084],[106.4459,-6.703],[106.4399,-6.699],[106.4328,-6.6904],[106.4294,-6.6821],[106.4288,-6.6756],[106.4315,-6.6527],[106.4307,-6.6439],[106.4317,-6.6365],[106.4275,-6.6092],[106.4293,-6.6017],[106.4304,-6.5899],[106.4264,-6.5743],[106.4244,-6.569],[106.4163,-6.5598],[106.4229,-6.5519],[106.4141,-6.5421],[106.408,-6.5329],[106.4075,-6.5239],[106.4033,-6.5153],[106.4047,-6.5129],[106.405,-6.5006],[106.406,-6.4964],[106.4097,-6.4922],[106.4126,-6.4833],[106.4113,-6.4784],[106.4118,-6.4676],[106.4021,-6.4528],[106.407,-6.4539],[106.4228,-6.4495],[106.4393,-6.4502],[106.4418,-6.441],[106.4503,-6.4329],[106.4514,-6.4243],[106.4463,-6.4193],[106.4541,-6.4185],[106.4539,-6.4138],[106.45,-6.4128],[106.4444,-6.4082],[106.444,-6.4048],[106.4393,-6.4044],[106.4412,-6.3986],[106.4356,-6.3896],[106.4316,-6.3769],[106.4274,-6.3765],[106.4285,-6.3694],[106.4319,-6.367],[106.4299,-6.3628],[106.4306,-6.3571],[106.4267,-6.3481],[106.4096,-6.3435],[106.4059,-6.3403],[106.4023,-6.3326],[106.3997,-6.3324]]}},{"type":"Feature","properties":{"mhid":"1332:276","alt_name":"KABUPATEN TANGERANG","latitude":-6.2,"longitude":106.46667,"sample_value":115},"geometry":{"type":"LineString","coordinates":[[106.7186,-6.0919],[106.7245,-6.0873],[106.7184,-6.0803],[106.7126,-6.069],[106.7095,-6.0556],[106.7102,-6.0472],[106.7136,-6.0448],[106.7143,-6.0399],[106.7078,-6.0328],[106.704,-6.0314],[106.6877,-6.0187],[106.678,-6.0132],[106.6698,-6.0195],[106.6624,-6.0232],[106.6567,-6.0216],[106.658,-6.0181],[106.6533,-6.0159],[106.65,-6.0066],[106.6456,-6.0078],[106.6392,-6.0036],[106.633,-6.005],[106.6241,-6.0143],[106.6129,-6.0231],[106.6048,-6.0251],[106.5974,-6.0254],[106.5877,-6.0296],[106.5779,-6.0312],[106.5696,-6.0306],[106.5608,-6.0263],[106.5533,-6.0246],[106.5479,-6.0216],[106.5355,-6.0104],[106.53,-6.0139],[106.5252,-6.0204],[106.5235,-6.0268],[106.5179,-6.0291],[106.5064,-6.0374],[106.4966,-6.0418],[106.4866,-6.045],[106.4782,-6.0455],[106.4693,-6.0428],[106.4609,-6.0367],[106.446,-6.0337],[106.4421,-6.0309],[106.4305,-6.032],[106.412,-6.024],[106.4075,-6.0309],[106.4012,-6.0303],[106.3931,-6.0277],[106.3852,-6.0312],[106.3798,-6.035],[106.3783,-6.0388],[106.3743,-6.0406],[106.3708,-6.0373],[106.3673,-6.0381],[106.3582,-6.0456],[106.3593,-6.0494],[106.3541,-6.0526],[106.349,-6.0629],[106.3394,-6.0632],[106.3397,-6.0738],[106.3484,-6.0866],[106.3534,-6.0922],[106.3504,-6.0973],[106.3506,-6.1096],[106.3619,-6.1165],[106.3635,-6.123],[106.3719,-6.1292],[106.3772,-6.1289],[106.3778,-6.1327],[106.3844,-6.1403],[106.3926,-6.1518],[106.3937,-6.165],[106.3908,-6.1791],[106.3879,-6.1793],[106.385,-6.1863],[106.3805,-6.1862],[106.374,-6.1912],[106.3727,-6.1955],[106.3787,-6.1962],[106.3768,-6.2052],[106.3742,-6.2063],[106.3673,-6.2183],[106.3731,-6.2216],[106.3814,-6.221],[106.3862,-6.2279],[106.3843,-6.233],[106.3865,-6.2426],[106.3886,-6.2452],[106.3828,-6.2612],[106.392,-6.2746],[106.3928,-6.2837],[106.3948,-6.2939],[106.3981,-6.2966],[106.3987,-6.3037],[106.3957,-6.3067],[106.3945,-6.3139],[106.3983,-6.3153],[106.3978,-6.3247],[106.3997,-6.3324],[106.4023,-6.3326],[106.4059,-6.3403],[106.4096,-6.3435],[106.4267,-6.3481],[106.4307,-6.3478],[106.4362,-6.3354],[106.4427,-6.3252],[106.465,-6.3083],[106.4693,-6.3035],[106.4713,-6.3083],[106.4762,-6.3091],[106.4781,-6.3158],[106.484,-6.3246],[106.4827,-6.3323],[106.4836,-6.3395],[106.482,-6.344],[106.4764,-6.3441],[106.4763,-6.3507],[106.484,-6.3521],[106.4883,-6.3543],[106.4997,-6.3557],[106.5023,-6.3499],[106.5123,-6.3553],[106.5191,-6.3552],[106.5221,-6.3501],[106.5262,-6.3495],[106.5294,-6.3458],[106.5293,-6.3379],[106.5247,-6.339],[106.5241,-6.3336],[106.5164,-6.3325],[106.5135,-6.3254],[106.5206,-6.3265],[106.5236,-6.3251],[106.534,-6.3306],[106.5385,-6.331],[106.5423,-6.334],[106.5486,-6.3331],[106.5586,-6.3379],[106.5774,-6.34],[106.5873,-6.3474],[106.588,-6.356],[106.5936,-6.3625],[106.6176,-6.3618],[106.6287,-6.3609],[106.6512,-6.3622],[106.6568,-6.3595],[106.6543,-6.3502],[106.647,-6.3438],[106.647,-6.34],[106.6546,-6.3354],[106.6607,-6.3274],[106.6577,-6.3248],[106.6591,-6.318],[106.6555,-6.3139],[106.6592,-6.3085],[106.6571,-6.3061],[106.6539,-6.2947],[106.6575,-6.29],[106.6556,-6.2862],[106.65,-6.2839],[106.646,-6.276],[106.651,-6.2726],[106.6519,-6.269],[106.6474,-6.2658],[106.6491,-6.261],[106.6463,-6.256],[106.6439,-6.2463],[106.6441,-6.2421],[106.6377,-6.2381],[106.6381,-6.2297],[106.6305,-6.2255],[106.6278,-6.2278],[106.6128,-6.2273],[106.6133,-6.2203],[106.6111,-6.2154],[106.6024,-6.2133],[106.6047,-6.2084],[106.5956,-6.2073],[106.5936,-6.2181],[106.5916,-6.2227],[106.5829,-6.2207],[106.58,-6.2162],[106.5732,-6.2155],[106.5649,-6.2112],[106.5691,-6.2063],[106.5581,-6.2015],[106.5519,-6.1948],[106.5533,-6.1841],[106.5603,-6.1819],[106.5656,-6.1769],[106.5793,-6.1717],[106.5836,-6.1623],[106.5868,-6.1624],[106.5918,-6.1585],[106.5905,-6.1489],[106.5929,-6.1477],[106.6134,-6.1477],[106.6157,-6.1414],[106.6111,-6.1366],[106.6142,-6.1304],[106.6141,-6.126],[106.6226,-6.1209],[106.6314,-6.1208],[106.6329,-6.1118],[106.6358,-6.1058],[106.6395,-6.1063],[106.6417,-6.1102],[106.6425,-6.1173],[106.6715,-6.1058],[106.6756,-6.1021],[106.677,-6.098],[106.6872,-6.0971],[106.7021,-6.0968],[106.711,-6.0956],[106.7186,-6.0919]]}},{"type":"Feature","properties":{"mhid":"1332:277","alt_name":"KABUPATEN SERANG","latitude":-6.15,"longitude":106,"sample_value":977},"geometry":{"type":"LineString","coordinates":[[106.1681,-5.9324],[106.1605,-5.9215],[106.1506,-5.9195],[106.1409,-5.9208],[106.1391,-5.928],[106.1416,-5.9395],[106.1523,-5.9445],[106.156,-5.9445],[106.1627,-5.9382],[106.1676,-5.937],[106.1681,-5.9324]]}},{"type":"Feature","properties":{"mhid":"1332:277","alt_name":"KABUPATEN SERANG","latitude":-6.15,"longitude":106,"sample_value":977},"geometry":{"type":"LineString","coordinates":[[106.1484,-6.019],[106.1399,-6.0142],[106.122,-6.0094],[106.1181,-6.0068],[106.1069,-5.9952],[106.0971,-5.9805],[106.0995,-5.976],[106.1069,-5.9773],[106.1029,-5.9695],[106.1049,-5.9634],[106.1045,-5.9569],[106.107,-5.9501],[106.1047,-5.9415],[106.1122,-5.9395],[106.114,-5.931],[106.1043,-5.9236],[106.1003,-5.9181],[106.1005,-5.9138],[106.0954,-5.9097],[106.0912,-5.9085],[106.0877,-5.9036],[106.0881,-5.8998],[106.0847,-5.8945],[106.0749,-5.8859],[106.0682,-5.8814],[106.0553,-5.8843],[106.0434,-5.8807],[106.0414,-5.8782],[106.0396,-5.8906],[106.0404,-5.901],[106.0439,-5.9077],[106.0439,-5.9126],[106.04,-5.919],[106.0391,-5.9266],[106.0331,-5.9344],[106.0382,-5.9396],[106.0486,-5.9469],[106.0576,-5.951],[106.0623,-5.9566],[106.0621,-5.9618],[106.0586,-5.9727],[106.0602,-5.9781],[106.0593,-5.9832],[106.0647,-5.9865],[106.0626,-5.9895],[106.0775,-5.998],[106.0774,-6.0014],[106.0879,-6.0025],[106.088,-6.0072],[106.0854,-6.0217],[106.0851,-6.0308],[106.0814,-6.0382],[106.0778,-6.0404],[106.0743,-6.0388],[106.065,-6.0457],[106.0628,-6.0498],[106.0638,-6.0558],[106.0591,-6.061],[106.0538,-6.0628],[106.05,-6.0757],[106.0449,-6.0781],[106.038,-6.0793],[106.0202,-6.0782],[106.0197,-6.065],[106.0227,-6.0624],[106.0234,-6.0574],[106.0271,-6.054],[106.03,-6.0476],[106.0304,-6.0407],[106.0219,-6.0389],[106.0158,-6.0427],[106.0089,-6.041],[106.0075,-6.0461],[106.002,-6.0461],[106.0001,-6.0438],[105.9877,-6.0378],[105.981,-6.0402],[105.9815,-6.0458],[105.9877,-6.051],[105.9845,-6.055],[105.9763,-6.0528],[105.9641,-6.058],[105.952,-6.0552],[105.9477,-6.052],[105.9441,-6.0456],[105.9394,-6.0515],[105.9232,-6.0468],[105.9206,-6.0521],[105.915,-6.0534],[105.9011,-6.0605],[105.8948,-6.0627],[105.8934,-6.0655],[105.885,-6.0702],[105.8822,-6.0735],[105.8835,-6.0835],[105.8815,-6.0917],[105.8818,-6.0994],[105.8797,-6.111],[105.8733,-6.1131],[105.869,-6.1214],[105.8656,-6.123],[105.863,-6.1281],[105.8635,-6.1351],[105.8582,-6.1402],[105.8549,-6.1459],[105.8548,-6.1529],[105.8531,-6.1574],[105.8532,-6.1644],[105.8478,-6.1711],[105.8432,-6.1798],[105.8414,-6.1927],[105.8359,-6.2004],[105.8325,-6.2093],[105.832,-6.223],[105.8305,-6.2326],[105.8252,-6.237],[105.8258,-6.2423],[105.8339,-6.2443],[105.8455,-6.2404],[105.856,-6.2418],[105.8666,-6.2392],[105.8719,-6.2362],[105.8752,-6.2395],[105.8812,-6.2317],[105.88,-6.2275],[105.882,-6.2216],[105.8871,-6.2224],[105.8923,-6.2314],[105.8991,-6.2375],[105.8988,-6.2436],[105.909,-6.2446],[105.9143,-6.2477],[105.9195,-6.2579],[105.9219,-6.2739],[105.9292,-6.2794],[105.9346,-6.2755],[105.9351,-6.2667],[105.9337,-6.2545],[105.9343,-6.242],[105.9391,-6.2391],[105.9474,-6.2375],[105.9496,-6.2483],[105.9581,-6.2448],[105.9717,-6.2456],[105.981,-6.2438],[105.9831,-6.253],[105.9871,-6.2601],[105.993,-6.2634],[105.9956,-6.2726],[106.0013,-6.2754],[106.0096,-6.274],[106.0207,-6.2737],[106.0285,-6.2757],[106.0355,-6.2735],[106.039,-6.2755],[106.0439,-6.2742],[106.0496,-6.2686],[106.0559,-6.2668],[106.0702,-6.2587],[106.0755,-6.252],[106.0767,-6.2435],[106.0829,-6.2325],[106.0884,-6.2334],[106.0923,-6.236],[106.101,-6.2317],[106.1074,-6.2431],[106.1083,-6.2486],[106.1126,-6.2522],[106.1224,-6.2493],[106.1243,-6.2539],[106.1343,-6.2582],[106.1387,-6.2546],[106.1451,-6.2549],[106.148,-6.2514],[106.1655,-6.2525],[106.1747,-6.2514],[106.1757,-6.2687],[106.1699,-6.2798],[106.1693,-6.2889],[106.1708,-6.29],[106.1739,-6.2884],[106.1805,-6.2893],[106.1844,-6.2873],[106.1892,-6.2891],[106.1969,-6.2887],[106.2038,-6.2907],[106.2134,-6.2918],[106.2156,-6.2988],[106.2194,-6.2991],[106.2171,-6.3088],[106.2258,-6.3126],[106.2314,-6.3109],[106.234,-6.3034],[106.2385,-6.3061],[106.244,-6.3046],[106.2436,-6.2981],[106.2529,-6.2981],[106.2593,-6.3],[106.259,-6.3036],[106.2528,-6.3064],[106.2523,-6.3089],[106.2597,-6.3108],[106.2606,-6.3069],[106.2744,-6.301],[106.2794,-6.3036],[106.284,-6.3134],[106.2931,-6.3123],[106.2965,-6.3167],[106.2967,-6.3206],[106.3045,-6.3199],[106.3098,-6.3225],[106.3119,-6.3275],[106.3159,-6.3288],[106.318,-6.3347],[106.3264,-6.3358],[106.3351,-6.3344],[106.339,-6.3365],[106.3518,-6.3324],[106.3573,-6.3291],[106.3628,-6.332],[106.3708,-6.3323],[106.3755,-6.3309],[106.3915,-6.329],[106.3997,-6.3324],[106.3978,-6.3247],[106.3983,-6.3153],[106.3945,-6.3139],[106.3957,-6.3067],[106.3987,-6.3037],[106.3981,-6.2966],[106.3948,-6.2939],[106.3928,-6.2837],[106.392,-6.2746],[106.3828,-6.2612],[106.3886,-6.2452],[106.3865,-6.2426],[106.3843,-6.233],[106.3862,-6.2279],[106.3814,-6.221],[106.3731,-6.2216],[106.3673,-6.2183],[106.3742,-6.2063],[106.3768,-6.2052],[106.3787,-6.1962],[106.3727,-6.1955],[106.374,-6.1912],[106.3805,-6.1862],[106.385,-6.1863],[106.3879,-6.1793],[106.3908,-6.1791],[106.3937,-6.165],[106.3926,-6.1518],[106.3844,-6.1403],[106.3778,-6.1327],[106.3772,-6.1289],[106.3719,-6.1292],[106.3635,-6.123],[106.3619,-6.1165],[106.3506,-6.1096],[106.3504,-6.0973],[106.3534,-6.0922],[106.3484,-6.0866],[106.3397,-6.0738],[106.3394,-6.0632],[106.349,-6.0629],[106.3541,-6.0526],[106.3593,-6.0494],[106.3582,-6.0456],[106.3673,-6.0381],[106.3708,-6.0373],[106.3743,-6.0406],[106.3783,-6.0388],[106.3798,-6.035],[106.3852,-6.0312],[106.3931,-6.0277],[106.4012,-6.0303],[106.4075,-6.0309],[106.412,-6.024],[106.4041,-6.0187],[106.4016,-6.0151],[106.3956,-6.0012],[106.3907,-5.9875],[106.3915,-5.9817],[106.3891,-5.9772],[106.3711,-5.9715],[106.3657,-5.9639],[106.3603,-5.9609],[106.353,-5.9617],[106.3386,-5.9775],[106.326,-5.9836],[106.315,-5.9768],[106.3085,-5.9703],[106.3048,-5.9686],[106.2935,-5.9683],[106.2787,-5.9638],[106.2702,-5.9597],[106.2638,-5.9536],[106.253,-5.9577],[106.2435,-5.9661],[106.2414,-5.9888],[106.237,-5.9955],[106.2237,-6.0023],[106.2267,-6.0074],[106.2246,-6.014],[106.2163,-6.016],[106.2223,-6.0254],[106.2252,-6.0344],[106.224,-6.0384],[106.2263,-6.0426],[106.2219,-6.0453],[106.2208,-6.0529],[106.2163,-6.0692],[106.2209,-6.0722],[106.2191,-6.0829],[106.2225,-6.0855],[106.2222,-6.0912],[106.2267,-6.0927],[106.2302,-6.0968],[106.2252,-6.1038],[106.2241,-6.1076],[106.2292,-6.1117],[106.226,-6.1141],[106.2218,-6.1237],[106.2176,-6.1277],[106.2208,-6.1318],[106.2288,-6.1293],[106.2343,-6.1341],[106.2411,-6.1305],[106.24,-6.1366],[106.2444,-6.137],[106.2463,-6.1417],[106.2546,-6.1473],[106.2512,-6.1591],[106.2441,-6.1695],[106.2407,-6.1717],[106.2347,-6.1701],[106.2316,-6.1724],[106.2257,-6.1809],[106.2272,-6.195],[106.2243,-6.1976],[106.2133,-6.1962],[106.1999,-6.1984],[106.1925,-6.2055],[106.1952,-6.2154],[106.1923,-6.2182],[106.1797,-6.2156],[106.1711,-6.2195],[106.1647,-6.2146],[106.1575,-6.2143],[106.1566,-6.2097],[106.1504,-6.2097],[106.1406,-6.2074],[106.136,-6.2046],[106.1348,-6.1935],[106.1357,-6.1911],[106.1428,-6.1856],[106.1459,-6.1854],[106.1484,-6.1792],[106.1525,-6.1773],[106.1495,-6.1693],[106.145,-6.1718],[106.1377,-6.1721],[106.1289,-6.1746],[106.1278,-6.1697],[106.1224,-6.1679],[106.1162,-6.1765],[106.114,-6.1815],[106.1097,-6.1817],[106.1027,-6.1735],[106.0957,-6.1753],[106.0873,-6.1732],[106.0781,-6.1807],[106.0753,-6.1808],[106.0712,-6.1763],[106.0659,-6.1744],[106.0676,-6.1687],[106.0666,-6.1649],[106.0704,-6.1605],[106.0734,-6.1524],[106.076,-6.1506],[106.0733,-6.1346],[106.0694,-6.1309],[106.0745,-6.1217],[106.0888,-6.1169],[106.0902,-6.1127],[106.0953,-6.1084],[106.0999,-6.0966],[106.1104,-6.0856],[106.1198,-6.0832],[106.1222,-6.0788],[106.1322,-6.0766],[106.14,-6.0685],[106.1476,-6.0672],[106.1428,-6.058],[106.1453,-6.0519],[106.149,-6.0473],[106.1479,-6.0429],[106.1493,-6.035],[106.1466,-6.0295],[106.1484,-6.019]]}},{"type":"Feature","properties":{"mhid":"1332:277","alt_name":"KABUPATEN SERANG","latitude":-6.15,"longitude":106,"sample_value":977},"geometry":{"type":"LineString","coordinates":[[106.271,-5.8074],[106.2548,-5.8111],[106.2822,-5.8165],[106.2919,-5.8156],[106.2948,-5.8106],[106.2916,-5.8089],[106.271,-5.8074]]}},{"type":"Feature","properties":{"mhid":"1332:278","alt_name":"KOTA TANGERANG","latitude":-6.17944,"longitude":106.62991,"sample_value":81},"geometry":{"type":"LineString","coordinates":[[106.6872,-6.0971],[106.677,-6.098],[106.6756,-6.1021],[106.6715,-6.1058],[106.6425,-6.1173],[106.6417,-6.1102],[106.6395,-6.1063],[106.6358,-6.1058],[106.6329,-6.1118],[106.6314,-6.1208],[106.6226,-6.1209],[106.6141,-6.126],[106.6142,-6.1304],[106.6111,-6.1366],[106.6157,-6.1414],[106.6134,-6.1477],[106.5929,-6.1477],[106.5905,-6.1489],[106.5918,-6.1585],[106.5868,-6.1624],[106.5836,-6.1623],[106.5793,-6.1717],[106.5656,-6.1769],[106.5603,-6.1819],[106.5533,-6.1841],[106.5519,-6.1948],[106.5581,-6.2015],[106.5691,-6.2063],[106.5649,-6.2112],[106.5732,-6.2155],[106.58,-6.2162],[106.5829,-6.2207],[106.5916,-6.2227],[106.5936,-6.2181],[106.5956,-6.2073],[106.6047,-6.2084],[106.6024,-6.2133],[106.6111,-6.2154],[106.6133,-6.2203],[106.6128,-6.2273],[106.6278,-6.2278],[106.6305,-6.2255],[106.6381,-6.2297],[106.6535,-6.2297],[106.658,-6.2313],[106.6705,-6.2321],[106.6726,-6.2311],[106.6879,-6.2307],[106.687,-6.2402],[106.6931,-6.2442],[106.6971,-6.2445],[106.6959,-6.2517],[106.7028,-6.255],[106.7074,-6.2522],[106.7204,-6.2522],[106.7482,-6.2496],[106.7467,-6.2472],[106.7486,-6.241],[106.7439,-6.2362],[106.7443,-6.2292],[106.7373,-6.2236],[106.7176,-6.2242],[106.7175,-6.2197],[106.7202,-6.2096],[106.724,-6.2074],[106.7241,-6.1916],[106.7165,-6.1919],[106.7171,-6.1867],[106.7101,-6.1818],[106.6935,-6.1737],[106.6894,-6.1731],[106.6892,-6.1617],[106.6879,-6.16],[106.6875,-6.1477],[106.6862,-6.1431],[106.6913,-6.1377],[106.6914,-6.1335],[106.6871,-6.1285],[106.6896,-6.1215],[106.6891,-6.1145],[106.6969,-6.1125],[106.6937,-6.1072],[106.6891,-6.1065],[106.6872,-6.0971]]}},{"type":"Feature","properties":{"mhid":"1332:279","alt_name":"KOTA CILEGON","latitude":-6.01667,"longitude":106.01667,"sample_value":952},"geometry":{"type":"LineString","coordinates":[[105.9912,-5.9311],[105.9855,-5.9317],[105.9877,-5.9372],[105.9913,-5.9366],[105.9912,-5.9311]]}},{"type":"Feature","properties":{"mhid":"1332:279","alt_name":"KOTA CILEGON","latitude":-6.01667,"longitude":106.01667,"sample_value":952},"geometry":{"type":"LineString","coordinates":[[105.9232,-6.0468],[105.9394,-6.0515],[105.9441,-6.0456],[105.9477,-6.052],[105.952,-6.0552],[105.9641,-6.058],[105.9763,-6.0528],[105.9845,-6.055],[105.9877,-6.051],[105.9815,-6.0458],[105.981,-6.0402],[105.9877,-6.0378],[106.0001,-6.0438],[106.002,-6.0461],[106.0075,-6.0461],[106.0089,-6.041],[106.0158,-6.0427],[106.0219,-6.0389],[106.0304,-6.0407],[106.03,-6.0476],[106.0271,-6.054],[106.0234,-6.0574],[106.0227,-6.0624],[106.0197,-6.065],[106.0202,-6.0782],[106.038,-6.0793],[106.0449,-6.0781],[106.05,-6.0757],[106.0538,-6.0628],[106.0591,-6.061],[106.0638,-6.0558],[106.0628,-6.0498],[106.065,-6.0457],[106.0743,-6.0388],[106.0778,-6.0404],[106.0814,-6.0382],[106.0851,-6.0308],[106.0854,-6.0217],[106.088,-6.0072],[106.0879,-6.0025],[106.0774,-6.0014],[106.0775,-5.998],[106.0626,-5.9895],[106.0647,-5.9865],[106.0593,-5.9832],[106.0602,-5.9781],[106.0586,-5.9727],[106.0621,-5.9618],[106.0623,-5.9566],[106.0576,-5.951],[106.0486,-5.9469],[106.0382,-5.9396],[106.0331,-5.9344],[106.0391,-5.9266],[106.04,-5.919],[106.0439,-5.9126],[106.0439,-5.9077],[106.0404,-5.901],[106.0396,-5.8906],[106.0414,-5.8782],[106.0356,-5.8865],[106.029,-5.8865],[106.0222,-5.8907],[106.0175,-5.8971],[106.0169,-5.9032],[106.008,-5.9057],[106.0016,-5.9129],[106.004,-5.9163],[106.0033,-5.9214],[105.9956,-5.9222],[105.9934,-5.929],[105.9999,-5.9353],[105.9998,-5.9397],[106.0026,-5.9478],[105.9979,-5.9551],[105.9986,-5.9606],[105.9959,-5.9645],[105.9959,-5.9747],[105.9894,-5.9805],[105.9783,-5.9966],[105.9706,-6.0029],[105.9664,-6.0105],[105.9585,-6.0126],[105.9574,-6.02],[105.9536,-6.0176],[105.9505,-6.0222],[105.9474,-6.0199],[105.9411,-6.0238],[105.9317,-6.0325],[105.9253,-6.0414],[105.9232,-6.0468]]}},{"type":"Feature","properties":{"mhid":"1332:280","alt_name":"KOTA SERANG","latitude":-6.12563,"longitude":106.14999,"sample_value":608},"geometry":{"type":"LineString","coordinates":[[106.2163,-6.016],[106.2108,-6.0187],[106.2046,-6.0198],[106.2013,-6.0178],[106.1959,-6.018],[106.188,-6.0246],[106.1751,-6.0272],[106.1675,-6.0266],[106.1567,-6.0243],[106.1484,-6.019],[106.1466,-6.0295],[106.1493,-6.035],[106.1479,-6.0429],[106.149,-6.0473],[106.1453,-6.0519],[106.1428,-6.058],[106.1476,-6.0672],[106.14,-6.0685],[106.1322,-6.0766],[106.1222,-6.0788],[106.1198,-6.0832],[106.1104,-6.0856],[106.0999,-6.0966],[106.0953,-6.1084],[106.0902,-6.1127],[106.0888,-6.1169],[106.0745,-6.1217],[106.0694,-6.1309],[106.0733,-6.1346],[106.076,-6.1506],[106.0734,-6.1524],[106.0704,-6.1605],[106.0666,-6.1649],[106.0676,-6.1687],[106.0659,-6.1744],[106.0712,-6.1763],[106.0753,-6.1808],[106.0781,-6.1807],[106.0873,-6.1732],[106.0957,-6.1753],[106.1027,-6.1735],[106.1097,-6.1817],[106.114,-6.1815],[106.1162,-6.1765],[106.1224,-6.1679],[106.1278,-6.1697],[106.1289,-6.1746],[106.1377,-6.1721],[106.145,-6.1718],[106.1495,-6.1693],[106.1525,-6.1773],[106.1484,-6.1792],[106.1459,-6.1854],[106.1428,-6.1856],[106.1357,-6.1911],[106.1348,-6.1935],[106.136,-6.2046],[106.1406,-6.2074],[106.1504,-6.2097],[106.1566,-6.2097],[106.1575,-6.2143],[106.1647,-6.2146],[106.1711,-6.2195],[106.1797,-6.2156],[106.1923,-6.2182],[106.1952,-6.2154],[106.1925,-6.2055],[106.1999,-6.1984],[106.2133,-6.1962],[106.2243,-6.1976],[106.2272,-6.195],[106.2257,-6.1809],[106.2316,-6.1724],[106.2347,-6.1701],[106.2407,-6.1717],[106.2441,-6.1695],[106.2512,-6.1591],[106.2546,-6.1473],[106.2463,-6.1417],[106.2444,-6.137],[106.24,-6.1366],[106.2411,-6.1305],[106.2343,-6.1341],[106.2288,-6.1293],[106.2208,-6.1318],[106.2176,-6.1277],[106.2218,-6.1237],[106.226,-6.1141],[106.2292,-6.1117],[106.2241,-6.1076],[106.2252,-6.1038],[106.2302,-6.0968],[106.2267,-6.0927],[106.2222,-6.0912],[106.2225,-6.0855],[106.2191,-6.0829],[106.2209,-6.0722],[106.2163,-6.0692],[106.2208,-6.0529],[106.2219,-6.0453],[106.2263,-6.0426],[106.224,-6.0384],[106.2252,-6.0344],[106.2223,-6.0254],[106.2163,-6.016]]}},{"type":"Feature","properties":{"mhid":"1332:281","alt_name":"KOTA TANGERANG SELATAN","latitude":-6.29373,"longitude":106.71244,"sample_value":397},"geometry":{"type":"LineString","coordinates":[[106.7482,-6.2496],[106.7204,-6.2522],[106.7074,-6.2522],[106.7028,-6.255],[106.6959,-6.2517],[106.6971,-6.2445],[106.6931,-6.2442],[106.687,-6.2402],[106.6879,-6.2307],[106.6726,-6.2311],[106.6705,-6.2321],[106.658,-6.2313],[106.6535,-6.2297],[106.6381,-6.2297],[106.6377,-6.2381],[106.6441,-6.2421],[106.6439,-6.2463],[106.6463,-6.256],[106.6491,-6.261],[106.6474,-6.2658],[106.6519,-6.269],[106.651,-6.2726],[106.646,-6.276],[106.65,-6.2839],[106.6556,-6.2862],[106.6575,-6.29],[106.6539,-6.2947],[106.6571,-6.3061],[106.6592,-6.3085],[106.6555,-6.3139],[106.6591,-6.318],[106.6577,-6.3248],[106.6607,-6.3274],[106.6546,-6.3354],[106.647,-6.34],[106.647,-6.3438],[106.6543,-6.3502],[106.6568,-6.3595],[106.6512,-6.3622],[106.6586,-6.3588],[106.6698,-6.3584],[106.6974,-6.3594],[106.701,-6.3604],[106.7205,-6.3605],[106.7242,-6.36],[106.7488,-6.361],[106.7594,-6.3608],[106.7638,-6.3567],[106.7697,-6.3565],[106.7733,-6.3472],[106.7734,-6.3401],[106.7756,-6.3363],[106.779,-6.3246],[106.7799,-6.3165],[106.7768,-6.3153],[106.7749,-6.3046],[106.7666,-6.2905],[106.7668,-6.2873],[106.7607,-6.2847],[106.7622,-6.2779],[106.7572,-6.2778],[106.7567,-6.2744],[106.7516,-6.2746],[106.7503,-6.2718],[106.7542,-6.2678],[106.7514,-6.2608],[106.7543,-6.2575],[106.7529,-6.25],[106.7482,-6.2496]]}},{"type":"Feature","properties":{"mhid":"1332:282","alt_name":"KABUPATEN JEMBRANA","latitude":-8.3,"longitude":114.66667,"sample_value":799},"geometry":{"type":"LineString","coordinates":[[114.459,-8.1718],[114.4457,-8.1713],[114.4449,-8.1631],[114.4417,-8.1653],[114.4374,-8.1607],[114.4333,-8.166],[114.4318,-8.1734],[114.4336,-8.1791],[114.4377,-8.1829],[114.4416,-8.1938],[114.4434,-8.2034],[114.4477,-8.2168],[114.4542,-8.2265],[114.4547,-8.2299],[114.4608,-8.2348],[114.4697,-8.2464],[114.472,-8.253],[114.4779,-8.2606],[114.4845,-8.2769],[114.4889,-8.2819],[114.4949,-8.2856],[114.5088,-8.3001],[114.5176,-8.3062],[114.5206,-8.3125],[114.5189,-8.3239],[114.5201,-8.3299],[114.5276,-8.338],[114.5433,-8.3458],[114.5467,-8.3554],[114.5561,-8.3636],[114.5562,-8.3661],[114.5639,-8.371],[114.5757,-8.3843],[114.5749,-8.3885],[114.5806,-8.394],[114.5815,-8.3983],[114.588,-8.4013],[114.5975,-8.4033],[114.6047,-8.4003],[114.6056,-8.4036],[114.6228,-8.4076],[114.6324,-8.4076],[114.6604,-8.4019],[114.6798,-8.399],[114.7155,-8.3965],[114.7335,-8.3958],[114.7379,-8.3974],[114.7562,-8.4005],[114.7742,-8.406],[114.7922,-8.4103],[114.8005,-8.4132],[114.8043,-8.4161],[114.8061,-8.4214],[114.8157,-8.4251],[114.8199,-8.4311],[114.825,-8.4348],[114.8334,-8.4352],[114.8495,-8.439],[114.864,-8.445],[114.8797,-8.4505],[114.8835,-8.45],[114.8909,-8.4549],[114.9026,-8.4597],[114.9131,-8.4661],[114.916,-8.4637],[114.9237,-8.447],[114.924,-8.4413],[114.9268,-8.4363],[114.9252,-8.4319],[114.9254,-8.4251],[114.9224,-8.4211],[114.9238,-8.4148],[114.9307,-8.4015],[114.9334,-8.3995],[114.9337,-8.3905],[114.9314,-8.3892],[114.9291,-8.3827],[114.9234,-8.3833],[114.9025,-8.3753],[114.9019,-8.3715],[114.8977,-8.3637],[114.8967,-8.3576],[114.8874,-8.3518],[114.8844,-8.3467],[114.8782,-8.3443],[114.872,-8.3381],[114.8652,-8.3353],[114.8608,-8.3407],[114.8521,-8.337],[114.8463,-8.3372],[114.8419,-8.3353],[114.8389,-8.3378],[114.8309,-8.3341],[114.8241,-8.3329],[114.8222,-8.325],[114.8248,-8.3177],[114.8188,-8.3154],[114.8206,-8.3015],[114.8187,-8.2943],[114.8159,-8.2895],[114.8171,-8.2818],[114.8131,-8.2791],[114.8136,-8.2715],[114.8108,-8.2663],[114.816,-8.2643],[114.817,-8.2609],[114.8102,-8.2539],[114.8053,-8.2514],[114.7987,-8.2527],[114.796,-8.2564],[114.7851,-8.2543],[114.7827,-8.2599],[114.7761,-8.2631],[114.7709,-8.2601],[114.7708,-8.2553],[114.7662,-8.2534],[114.7629,-8.2491],[114.7559,-8.2319],[114.7516,-8.2289],[114.746,-8.2226],[114.7382,-8.2209],[114.7276,-8.217],[114.7195,-8.2098],[114.7068,-8.2026],[114.7034,-8.1987],[114.6913,-8.2095],[114.6907,-8.2195],[114.685,-8.2308],[114.683,-8.2309],[114.6756,-8.2241],[114.6675,-8.2224],[114.6629,-8.2242],[114.6525,-8.226],[114.6455,-8.2196],[114.64,-8.2184],[114.6331,-8.2141],[114.6281,-8.205],[114.6267,-8.199],[114.621,-8.1912],[114.6172,-8.1837],[114.6137,-8.1844],[114.6033,-8.1775],[114.5958,-8.1763],[114.5853,-8.1775],[114.5825,-8.1818],[114.5727,-8.1896],[114.5624,-8.1919],[114.5532,-8.1978],[114.532,-8.1912],[114.5194,-8.2049],[114.5096,-8.2053],[114.5059,-8.1999],[114.5001,-8.1987],[114.4943,-8.1936],[114.4808,-8.1972],[114.4603,-8.1944],[114.457,-8.1925],[114.4559,-8.1875],[114.4563,-8.1765],[114.459,-8.1718]]}},{"type":"Feature","properties":{"mhid":"1332:283","alt_name":"KABUPATEN TABANAN","latitude":-8.43333,"longitude":115.06667,"sample_value":924},"geometry":{"type":"LineString","coordinates":[[115.0994,-8.6362],[115.1046,-8.629],[115.1072,-8.6233],[115.1134,-8.6178],[115.1165,-8.6169],[115.1196,-8.6112],[115.129,-8.6083],[115.137,-8.6092],[115.1397,-8.615],[115.1434,-8.6097],[115.1502,-8.6069],[115.1501,-8.6017],[115.1555,-8.6012],[115.1567,-8.5974],[115.1549,-8.5928],[115.1493,-8.5901],[115.1504,-8.5797],[115.1557,-8.5655],[115.1589,-8.5607],[115.1619,-8.5513],[115.1628,-8.5422],[115.1651,-8.5338],[115.171,-8.5257],[115.1723,-8.5172],[115.1772,-8.5099],[115.1781,-8.504],[115.1825,-8.4994],[115.1829,-8.4884],[115.1766,-8.4871],[115.1776,-8.4766],[115.1799,-8.4647],[115.1739,-8.4641],[115.1748,-8.4586],[115.1787,-8.4517],[115.1872,-8.4454],[115.1878,-8.4427],[115.1982,-8.4457],[115.1998,-8.4512],[115.1994,-8.4577],[115.1968,-8.4627],[115.1991,-8.4723],[115.1956,-8.4828],[115.1949,-8.4883],[115.2023,-8.4894],[115.2044,-8.4821],[115.2031,-8.4701],[115.2112,-8.4574],[115.2135,-8.4499],[115.2169,-8.4341],[115.2121,-8.4186],[115.2103,-8.4098],[115.212,-8.406],[115.2107,-8.3914],[115.2079,-8.3866],[115.2089,-8.379],[115.2019,-8.3728],[115.1981,-8.3578],[115.2035,-8.3497],[115.2024,-8.3346],[115.2044,-8.3325],[115.2119,-8.3319],[115.2076,-8.3241],[115.2083,-8.3218],[115.2075,-8.3088],[115.2045,-8.3038],[115.2019,-8.2945],[115.1973,-8.2877],[115.1924,-8.283],[115.1912,-8.2795],[115.1845,-8.271],[115.1871,-8.2622],[115.186,-8.2488],[115.1833,-8.2453],[115.1791,-8.2419],[115.1742,-8.2419],[115.1639,-8.2547],[115.1473,-8.2607],[115.1444,-8.2653],[115.1352,-8.2698],[115.1298,-8.2847],[115.1258,-8.2925],[115.1266,-8.2956],[115.124,-8.3078],[115.1184,-8.3067],[115.113,-8.3016],[115.106,-8.2979],[115.1024,-8.2989],[115.1012,-8.3071],[115.0937,-8.3065],[115.0875,-8.3109],[115.0708,-8.3118],[115.0638,-8.3097],[115.0592,-8.3104],[115.0492,-8.3064],[115.0433,-8.3066],[115.033,-8.3009],[115.0245,-8.3007],[115.0197,-8.3084],[115.0143,-8.3062],[115.0094,-8.309],[115.0054,-8.3057],[114.9994,-8.3035],[114.9964,-8.3003],[114.9916,-8.299],[114.9857,-8.2902],[114.98,-8.2885],[114.9811,-8.2975],[114.9737,-8.3031],[114.9673,-8.3044],[114.9627,-8.3101],[114.9605,-8.3209],[114.9583,-8.3236],[114.9604,-8.3284],[114.9585,-8.3343],[114.9553,-8.3382],[114.9556,-8.3452],[114.952,-8.3508],[114.9522,-8.3554],[114.949,-8.3616],[114.9419,-8.3586],[114.9355,-8.3587],[114.9316,-8.3638],[114.9291,-8.3827],[114.9314,-8.3892],[114.9337,-8.3905],[114.9334,-8.3995],[114.9307,-8.4015],[114.9238,-8.4148],[114.9224,-8.4211],[114.9254,-8.4251],[114.9252,-8.4319],[114.9268,-8.4363],[114.924,-8.4413],[114.9237,-8.447],[114.916,-8.4637],[114.9193,-8.4686],[114.9308,-8.4746],[114.9443,-8.4861],[114.9472,-8.4913],[114.9532,-8.4971],[114.9582,-8.4986],[114.9728,-8.5075],[114.9758,-8.5132],[114.9802,-8.5145],[114.9862,-8.5191],[114.9929,-8.5267],[114.9952,-8.5276],[114.9996,-8.537],[115.0096,-8.5419],[115.0119,-8.5457],[115.0334,-8.5611],[115.0481,-8.5723],[115.0487,-8.5739],[115.0592,-8.5805],[115.0609,-8.5839],[115.071,-8.5926],[115.0715,-8.5944],[115.0832,-8.6081],[115.0836,-8.6129],[115.0926,-8.629],[115.0983,-8.6332],[115.0994,-8.6362]]}},{"type":"Feature","properties":{"mhid":"1332:284","alt_name":"KABUPATEN BADUNG","latitude":-8.51667,"longitude":115.2,"sample_value":39},"geometry":{"type":"LineString","coordinates":[[115.1904,-8.7377],[115.187,-8.7347],[115.187,-8.7114],[115.1821,-8.7018],[115.1768,-8.6955],[115.1778,-8.6917],[115.1752,-8.6813],[115.1796,-8.6744],[115.176,-8.6672],[115.1748,-8.6603],[115.1814,-8.6573],[115.1818,-8.648],[115.1806,-8.6298],[115.1823,-8.6287],[115.1795,-8.6176],[115.1804,-8.6158],[115.1881,-8.6152],[115.189,-8.6127],[115.1977,-8.612],[115.1999,-8.6064],[115.2035,-8.6028],[115.2149,-8.5963],[115.2262,-8.5956],[115.2257,-8.5928],[115.2359,-8.5928],[115.2374,-8.6026],[115.2423,-8.6031],[115.2462,-8.5963],[115.2494,-8.5855],[115.2493,-8.5744],[115.2449,-8.5639],[115.2449,-8.5583],[115.2415,-8.5561],[115.2391,-8.548],[115.2351,-8.5454],[115.2324,-8.5342],[115.233,-8.5293],[115.2303,-8.5275],[115.231,-8.5171],[115.2338,-8.5121],[115.2385,-8.5087],[115.2379,-8.5029],[115.2432,-8.496],[115.2403,-8.4913],[115.2436,-8.4877],[115.2449,-8.4777],[115.2417,-8.4744],[115.2423,-8.4651],[115.2353,-8.4568],[115.2312,-8.45],[115.2298,-8.442],[115.2332,-8.4274],[115.2311,-8.4226],[115.2292,-8.4114],[115.2274,-8.4093],[115.229,-8.4036],[115.2282,-8.3947],[115.2254,-8.3905],[115.2283,-8.384],[115.2352,-8.3744],[115.2345,-8.3682],[115.237,-8.3649],[115.2344,-8.3578],[115.2375,-8.3541],[115.2419,-8.3435],[115.2478,-8.3414],[115.2494,-8.3384],[115.2481,-8.3321],[115.2434,-8.3292],[115.2466,-8.325],[115.2449,-8.3219],[115.2511,-8.3146],[115.2474,-8.3075],[115.2479,-8.3019],[115.2435,-8.2952],[115.2462,-8.2871],[115.246,-8.2803],[115.2503,-8.2703],[115.2512,-8.2628],[115.2487,-8.2572],[115.2424,-8.2521],[115.2388,-8.244],[115.2325,-8.2419],[115.2268,-8.2424],[115.2176,-8.2464],[115.204,-8.2477],[115.198,-8.2453],[115.1833,-8.2453],[115.186,-8.2488],[115.1871,-8.2622],[115.1845,-8.271],[115.1912,-8.2795],[115.1924,-8.283],[115.1973,-8.2877],[115.2019,-8.2945],[115.2045,-8.3038],[115.2075,-8.3088],[115.2083,-8.3218],[115.2076,-8.3241],[115.2119,-8.3319],[115.2044,-8.3325],[115.2024,-8.3346],[115.2035,-8.3497],[115.1981,-8.3578],[115.2019,-8.3728],[115.2089,-8.379],[115.2079,-8.3866],[115.2107,-8.3914],[115.212,-8.406],[115.2103,-8.4098],[115.2121,-8.4186],[115.2169,-8.4341],[115.2135,-8.4499],[115.2112,-8.4574],[115.2031,-8.4701],[115.2044,-8.4821],[115.2023,-8.4894],[115.1949,-8.4883],[115.1956,-8.4828],[115.1991,-8.4723],[115.1968,-8.4627],[115.1994,-8.4577],[115.1998,-8.4512],[115.1982,-8.4457],[115.1878,-8.4427],[115.1872,-8.4454],[115.1787,-8.4517],[115.1748,-8.4586],[115.1739,-8.4641],[115.1799,-8.4647],[115.1776,-8.4766],[115.1766,-8.4871],[115.1829,-8.4884],[115.1825,-8.4994],[115.1781,-8.504],[115.1772,-8.5099],[115.1723,-8.5172],[115.171,-8.5257],[115.1651,-8.5338],[115.1628,-8.5422],[115.1619,-8.5513],[115.1589,-8.5607],[115.1557,-8.5655],[115.1504,-8.5797],[115.1493,-8.5901],[115.1549,-8.5928],[115.1567,-8.5974],[115.1555,-8.6012],[115.1501,-8.6017],[115.1502,-8.6069],[115.1434,-8.6097],[115.1397,-8.615],[115.137,-8.6092],[115.129,-8.6083],[115.1196,-8.6112],[115.1165,-8.6169],[115.1134,-8.6178],[115.1072,-8.6233],[115.1046,-8.629],[115.0994,-8.6362],[115.1031,-8.6424],[115.1112,-8.6453],[115.1167,-8.6486],[115.1381,-8.666],[115.1437,-8.6718],[115.1593,-8.6955],[115.1615,-8.6976],[115.166,-8.7086],[115.1693,-8.7244],[115.1649,-8.7292],[115.1587,-8.7468],[115.1523,-8.7471],[115.1525,-8.7505],[115.1595,-8.7503],[115.1679,-8.7576],[115.1694,-8.7648],[115.1675,-8.774],[115.1627,-8.7815],[115.1451,-8.7795],[115.1421,-8.7804],[115.1317,-8.7893],[115.1241,-8.7911],[115.1188,-8.7938],[115.116,-8.8035],[115.1035,-8.8112],[115.0885,-8.8147],[115.0841,-8.8247],[115.0839,-8.8297],[115.087,-8.8357],[115.0959,-8.8407],[115.1017,-8.8417],[115.1126,-8.8458],[115.1225,-8.8471],[115.1508,-8.8475],[115.1702,-8.8491],[115.1876,-8.8451],[115.1983,-8.8417],[115.2044,-8.8379],[115.2179,-8.8326],[115.2245,-8.8182],[115.2315,-8.8114],[115.2359,-8.8034],[115.2311,-8.789],[115.2272,-8.7857],[115.2261,-8.7767],[115.2244,-8.7745],[115.2236,-8.7602],[115.2215,-8.7535],[115.2183,-8.7524],[115.2156,-8.7572],[115.2156,-8.7661],[115.2177,-8.7718],[115.2138,-8.776],[115.2171,-8.785],[115.2147,-8.7871],[115.2082,-8.7853],[115.2045,-8.7821],[115.1977,-8.7803],[115.1947,-8.7775],[115.1916,-8.767],[115.1888,-8.7642],[115.1828,-8.7651],[115.1807,-8.7593],[115.1845,-8.7488],[115.1845,-8.7446],[115.1904,-8.7377]]}},{"type":"Feature","properties":{"mhid":"1332:285","alt_name":"KABUPATEN GIANYAR","latitude":-8.46667,"longitude":115.28333,"sample_value":664},"geometry":{"type":"LineString","coordinates":[[115.3001,-8.4121],[115.3001,-8.4121],[115.3001,-8.4121],[115.3001,-8.4121]]}},{"type":"Feature","properties":{"mhid":"1332:285","alt_name":"KABUPATEN GIANYAR","latitude":-8.46667,"longitude":115.28333,"sample_value":664},"geometry":{"type":"LineString","coordinates":[[115.3001,-8.4121],[115.3001,-8.4121],[115.3001,-8.4121],[115.3001,-8.4121]]}},{"type":"Feature","properties":{"mhid":"1332:285","alt_name":"KABUPATEN GIANYAR","latitude":-8.46667,"longitude":115.28333,"sample_value":664},"geometry":{"type":"LineString","coordinates":[[115.3001,-8.4121],[115.3001,-8.4121],[115.3001,-8.4121],[115.3001,-8.4121]]}},{"type":"Feature","properties":{"mhid":"1332:285","alt_name":"KABUPATEN GIANYAR","latitude":-8.46667,"longitude":115.28333,"sample_value":664},"geometry":{"type":"LineString","coordinates":[[115.3576,-8.521],[115.3448,-8.5249],[115.3363,-8.5227],[115.3351,-8.5192],[115.3292,-8.5119],[115.329,-8.5002],[115.325,-8.4902],[115.3278,-8.4841],[115.3277,-8.4773],[115.3252,-8.4694],[115.3272,-8.466],[115.3246,-8.4522],[115.3182,-8.4392],[115.3175,-8.4343],[115.323,-8.4285],[115.3308,-8.4142],[115.3306,-8.4034],[115.3367,-8.3849],[115.3366,-8.3803],[115.3333,-8.3775],[115.3361,-8.374],[115.3366,-8.3663],[115.3286,-8.3724],[115.3285,-8.3649],[115.3256,-8.3624],[115.3303,-8.3577],[115.3309,-8.3456],[115.3273,-8.3383],[115.3285,-8.3307],[115.3224,-8.3295],[115.3176,-8.3345],[115.3152,-8.3296],[115.3082,-8.3278],[115.304,-8.3345],[115.2941,-8.3324],[115.2943,-8.3282],[115.2914,-8.3249],[115.291,-8.3162],[115.2845,-8.3136],[115.282,-8.3166],[115.2722,-8.3226],[115.2668,-8.328],[115.2639,-8.3276],[115.264,-8.3218],[115.2589,-8.3151],[115.2511,-8.3146],[115.2449,-8.3219],[115.2466,-8.325],[115.2434,-8.3292],[115.2481,-8.3321],[115.2494,-8.3384],[115.2478,-8.3414],[115.2419,-8.3435],[115.2375,-8.3541],[115.2344,-8.3578],[115.237,-8.3649],[115.2345,-8.3682],[115.2352,-8.3744],[115.2283,-8.384],[115.2254,-8.3905],[115.2282,-8.3947],[115.229,-8.4036],[115.2274,-8.4093],[115.2292,-8.4114],[115.2311,-8.4226],[115.2332,-8.4274],[115.2298,-8.442],[115.2312,-8.45],[115.2353,-8.4568],[115.2423,-8.4651],[115.2417,-8.4744],[115.2449,-8.4777],[115.2436,-8.4877],[115.2403,-8.4913],[115.2432,-8.496],[115.2379,-8.5029],[115.2385,-8.5087],[115.2338,-8.5121],[115.231,-8.5171],[115.2303,-8.5275],[115.233,-8.5293],[115.2324,-8.5342],[115.2351,-8.5454],[115.2391,-8.548],[115.2415,-8.5561],[115.2449,-8.5583],[115.2449,-8.5639],[115.2493,-8.5744],[115.2494,-8.5855],[115.2462,-8.5963],[115.2423,-8.6031],[115.2447,-8.6123],[115.2557,-8.623],[115.2562,-8.6284],[115.2603,-8.6363],[115.2642,-8.6372],[115.2656,-8.6411],[115.27,-8.6423],[115.2715,-8.6471],[115.275,-8.6502],[115.2882,-8.6401],[115.3016,-8.6278],[115.3022,-8.625],[115.3104,-8.619],[115.3201,-8.6149],[115.3258,-8.6068],[115.3296,-8.6037],[115.3466,-8.5944],[115.3499,-8.5909],[115.3524,-8.5844],[115.3619,-8.5775],[115.3711,-8.5749],[115.3694,-8.5638],[115.3649,-8.5576],[115.3647,-8.5535],[115.3612,-8.5477],[115.3635,-8.5453],[115.3637,-8.5361],[115.3607,-8.5322],[115.3602,-8.5242],[115.3576,-8.521]]}},{"type":"Feature","properties":{"mhid":"1332:285","alt_name":"KABUPATEN GIANYAR","latitude":-8.46667,"longitude":115.28333,"sample_value":664},"geometry":{"type":"LineString","coordinates":[[115.3001,-8.4121],[115.3001,-8.4121],[115.3001,-8.4121],[115.3001,-8.4121]]}},{"type":"Feature","properties":{"mhid":"1332:286","alt_name":"KABUPATEN KLUNGKUNG","latitude":-8.55,"longitude":115.4,"sample_value":769},"geometry":{"type":"LineString","coordinates":[[115.4657,-8.6882],[115.4595,-8.688],[115.4577,-8.6909],[115.4503,-8.695],[115.4489,-8.6976],[115.4399,-8.7023],[115.437,-8.7072],[115.4401,-8.7119],[115.4444,-8.7121],[115.4602,-8.6985],[115.4657,-8.6882]]}},{"type":"Feature","properties":{"mhid":"1332:286","alt_name":"KABUPATEN KLUNGKUNG","latitude":-8.55,"longitude":115.4,"sample_value":769},"geometry":{"type":"LineString","coordinates":[[115.562,-8.6719],[115.5505,-8.6723],[115.5455,-8.6747],[115.5294,-8.6776],[115.5155,-8.677],[115.5069,-8.6738],[115.4976,-8.672],[115.4895,-8.6744],[115.4865,-8.6838],[115.4803,-8.6847],[115.4732,-8.6901],[115.4726,-8.6948],[115.4648,-8.7006],[115.464,-8.7053],[115.4574,-8.7118],[115.4591,-8.7166],[115.4532,-8.718],[115.4479,-8.7218],[115.449,-8.7305],[115.4555,-8.7371],[115.4512,-8.748],[115.4562,-8.7488],[115.4642,-8.7476],[115.4729,-8.7506],[115.4804,-8.7575],[115.4861,-8.7607],[115.4853,-8.769],[115.4972,-8.771],[115.5032,-8.7765],[115.5107,-8.7764],[115.5235,-8.7873],[115.5236,-8.7918],[115.5273,-8.7932],[115.5308,-8.7994],[115.535,-8.7973],[115.5471,-8.8001],[115.5624,-8.8079],[115.5668,-8.8091],[115.5691,-8.8131],[115.5743,-8.8123],[115.5794,-8.8138],[115.5831,-8.8184],[115.5871,-8.8195],[115.5945,-8.8148],[115.5989,-8.8083],[115.6059,-8.8073],[115.6072,-8.8028],[115.6047,-8.7986],[115.6064,-8.7916],[115.6102,-8.7845],[115.6156,-8.7821],[115.616,-8.7784],[115.6225,-8.7731],[115.6286,-8.77],[115.625,-8.762],[115.6253,-8.7571],[115.6212,-8.7488],[115.6103,-8.7354],[115.599,-8.727],[115.5963,-8.7239],[115.595,-8.7162],[115.5889,-8.7116],[115.5842,-8.7037],[115.5841,-8.6999],[115.5792,-8.6859],[115.5717,-8.6769],[115.562,-8.6719]]}},{"type":"Feature","properties":{"mhid":"1332:286","alt_name":"KABUPATEN KLUNGKUNG","latitude":-8.55,"longitude":115.4,"sample_value":769},"geometry":{"type":"LineString","coordinates":[[115.4665,-8.6659],[115.4535,-8.6631],[115.4504,-8.6636],[115.4478,-8.6684],[115.4455,-8.6793],[115.4334,-8.6824],[115.4273,-8.683],[115.4279,-8.6887],[115.4309,-8.6923],[115.4364,-8.6943],[115.4509,-8.6938],[115.4618,-8.6834],[115.4698,-8.6786],[115.4732,-8.6722],[115.4713,-8.6682],[115.4665,-8.6659]]}},{"type":"Feature","properties":{"mhid":"1332:286","alt_name":"KABUPATEN KLUNGKUNG","latitude":-8.55,"longitude":115.4,"sample_value":769},"geometry":{"type":"LineString","coordinates":[[115.4025,-8.4564],[115.3959,-8.4553],[115.3951,-8.4581],[115.3851,-8.4669],[115.384,-8.4619],[115.3752,-8.4613],[115.3673,-8.4763],[115.3688,-8.4791],[115.3639,-8.4836],[115.3635,-8.4884],[115.3585,-8.4922],[115.3563,-8.5064],[115.3541,-8.5118],[115.3568,-8.5154],[115.3576,-8.521],[115.3602,-8.5242],[115.3607,-8.5322],[115.3637,-8.5361],[115.3635,-8.5453],[115.3612,-8.5477],[115.3647,-8.5535],[115.3649,-8.5576],[115.3694,-8.5638],[115.3711,-8.5749],[115.3769,-8.5746],[115.398,-8.576],[115.4029,-8.5775],[115.4133,-8.5759],[115.4278,-8.5759],[115.4475,-8.5711],[115.4623,-8.556],[115.4723,-8.5519],[115.4791,-8.5509],[115.4803,-8.5434],[115.4749,-8.537],[115.475,-8.5278],[115.4763,-8.52],[115.4704,-8.5135],[115.4692,-8.509],[115.4635,-8.5039],[115.4584,-8.5032],[115.4399,-8.5146],[115.4364,-8.5177],[115.4285,-8.5193],[115.4193,-8.5234],[115.4142,-8.5232],[115.4098,-8.5301],[115.4064,-8.5239],[115.4083,-8.5201],[115.4057,-8.514],[115.4151,-8.5089],[115.4139,-8.4993],[115.4097,-8.487],[115.4143,-8.4742],[115.4118,-8.4726],[115.4063,-8.4741],[115.3973,-8.4805],[115.3908,-8.483],[115.3946,-8.4715],[115.4014,-8.4646],[115.4025,-8.4564]]}},{"type":"Feature","properties":{"mhid":"1332:287","alt_name":"KABUPATEN BANGLI","latitude":-8.28333,"longitude":115.35,"sample_value":582},"geometry":{"type":"LineString","coordinates":[[115.4363,-8.1814],[115.43,-8.1826],[115.4285,-8.1885],[115.4028,-8.1886],[115.3995,-8.1892],[115.39,-8.1859],[115.391,-8.1783],[115.3851,-8.1758],[115.3797,-8.1714],[115.3808,-8.1676],[115.3763,-8.1638],[115.3721,-8.1681],[115.3675,-8.1661],[115.3647,-8.1611],[115.3681,-8.1547],[115.3667,-8.1521],[115.3605,-8.1527],[115.3617,-8.1455],[115.3521,-8.1516],[115.3476,-8.15],[115.3403,-8.1446],[115.3373,-8.1506],[115.3314,-8.1552],[115.3235,-8.1447],[115.3168,-8.1489],[115.3173,-8.1548],[115.3119,-8.164],[115.305,-8.1683],[115.3061,-8.174],[115.301,-8.1734],[115.2923,-8.1688],[115.2853,-8.1709],[115.2807,-8.1667],[115.2799,-8.1609],[115.2765,-8.1616],[115.2708,-8.1661],[115.2651,-8.1661],[115.2549,-8.1786],[115.2446,-8.1731],[115.2447,-8.1825],[115.2425,-8.1885],[115.2452,-8.1949],[115.2431,-8.2059],[115.2432,-8.2112],[115.2363,-8.2347],[115.2325,-8.2419],[115.2388,-8.244],[115.2424,-8.2521],[115.2487,-8.2572],[115.2512,-8.2628],[115.2503,-8.2703],[115.246,-8.2803],[115.2462,-8.2871],[115.2435,-8.2952],[115.2479,-8.3019],[115.2474,-8.3075],[115.2511,-8.3146],[115.2589,-8.3151],[115.264,-8.3218],[115.2639,-8.3276],[115.2668,-8.328],[115.2722,-8.3226],[115.282,-8.3166],[115.2845,-8.3136],[115.291,-8.3162],[115.2914,-8.3249],[115.2943,-8.3282],[115.2941,-8.3324],[115.304,-8.3345],[115.3082,-8.3278],[115.3152,-8.3296],[115.3176,-8.3345],[115.3224,-8.3295],[115.3285,-8.3307],[115.3273,-8.3383],[115.3309,-8.3456],[115.3303,-8.3577],[115.3256,-8.3624],[115.3285,-8.3649],[115.3286,-8.3724],[115.3366,-8.3663],[115.3361,-8.374],[115.3333,-8.3775],[115.3366,-8.3803],[115.3367,-8.3849],[115.3306,-8.4034],[115.3308,-8.4142],[115.323,-8.4285],[115.3175,-8.4343],[115.3182,-8.4392],[115.3246,-8.4522],[115.3272,-8.466],[115.3252,-8.4694],[115.3277,-8.4773],[115.3278,-8.4841],[115.325,-8.4902],[115.329,-8.5002],[115.3292,-8.5119],[115.3351,-8.5192],[115.3363,-8.5227],[115.3448,-8.5249],[115.3576,-8.521],[115.3568,-8.5154],[115.3541,-8.5118],[115.3563,-8.5064],[115.3585,-8.4922],[115.3635,-8.4884],[115.3639,-8.4836],[115.3688,-8.4791],[115.3673,-8.4763],[115.3752,-8.4613],[115.384,-8.4619],[115.3851,-8.4669],[115.3951,-8.4581],[115.3959,-8.4553],[115.4025,-8.4564],[115.4034,-8.4522],[115.4084,-8.4488],[115.4112,-8.4366],[115.4146,-8.4341],[115.415,-8.4214],[115.4133,-8.4186],[115.4161,-8.4093],[115.4152,-8.4002],[115.4111,-8.3978],[115.407,-8.39],[115.4081,-8.3853],[115.4034,-8.3804],[115.404,-8.3764],[115.3994,-8.3704],[115.3961,-8.3611],[115.399,-8.3563],[115.3989,-8.3448],[115.4101,-8.3384],[115.4088,-8.3295],[115.4092,-8.3224],[115.4147,-8.3222],[115.4182,-8.3195],[115.4165,-8.3146],[115.4216,-8.312],[115.4188,-8.3057],[115.4225,-8.3023],[115.4228,-8.2961],[115.4264,-8.2845],[115.4317,-8.2754],[115.4288,-8.2711],[115.4309,-8.2666],[115.4398,-8.2625],[115.4494,-8.2526],[115.4549,-8.2508],[115.4575,-8.2421],[115.4483,-8.2459],[115.4487,-8.2397],[115.4452,-8.2346],[115.4447,-8.2248],[115.4384,-8.2182],[115.4432,-8.212],[115.4464,-8.2045],[115.4538,-8.1987],[115.4521,-8.194],[115.448,-8.1893],[115.4444,-8.1894],[115.4421,-8.1857],[115.4363,-8.1814]]}},{"type":"Feature","properties":{"mhid":"1332:288","alt_name":"KABUPATEN KARANG ASEM","latitude":-8.3891,"longitude":115.5393,"sample_value":672},"geometry":{"type":"LineString","coordinates":[[115.4791,-8.5509],[115.4863,-8.5493],[115.5096,-8.5405],[115.5085,-8.5329],[115.5138,-8.5282],[115.5077,-8.5179],[115.5086,-8.5131],[115.5126,-8.5091],[115.5207,-8.5044],[115.5304,-8.501],[115.5383,-8.5007],[115.547,-8.5058],[115.5536,-8.5048],[115.5808,-8.5151],[115.581,-8.5177],[115.5937,-8.5099],[115.6102,-8.5031],[115.6127,-8.4951],[115.617,-8.4877],[115.6179,-8.4834],[115.6309,-8.4727],[115.6344,-8.468],[115.6353,-8.4622],[115.6483,-8.4552],[115.6537,-8.4541],[115.6595,-8.4493],[115.6682,-8.4453],[115.6719,-8.4451],[115.6803,-8.439],[115.6834,-8.4351],[115.6886,-8.4322],[115.6934,-8.4269],[115.7003,-8.4135],[115.7051,-8.4101],[115.7113,-8.3998],[115.7101,-8.3945],[115.7119,-8.3903],[115.7105,-8.3861],[115.7109,-8.378],[115.7038,-8.3705],[115.6982,-8.3585],[115.6833,-8.3502],[115.6821,-8.3475],[115.6682,-8.3419],[115.6642,-8.3374],[115.6598,-8.3384],[115.6549,-8.3346],[115.6496,-8.335],[115.6421,-8.3335],[115.6348,-8.3262],[115.6308,-8.3249],[115.6202,-8.3064],[115.6188,-8.3001],[115.6123,-8.2951],[115.5986,-8.279],[115.5929,-8.2753],[115.5904,-8.2687],[115.5809,-8.2548],[115.5736,-8.2484],[115.5582,-8.2313],[115.5545,-8.2298],[115.5361,-8.2188],[115.526,-8.2152],[115.5184,-8.2096],[115.5074,-8.2033],[115.5012,-8.1931],[115.4895,-8.1867],[115.4849,-8.1804],[115.4815,-8.179],[115.4719,-8.1784],[115.4589,-8.1695],[115.4571,-8.1665],[115.4526,-8.168],[115.442,-8.1742],[115.4419,-8.1777],[115.4363,-8.1814],[115.4421,-8.1857],[115.4444,-8.1894],[115.448,-8.1893],[115.4521,-8.194],[115.4538,-8.1987],[115.4464,-8.2045],[115.4432,-8.212],[115.4384,-8.2182],[115.4447,-8.2248],[115.4452,-8.2346],[115.4487,-8.2397],[115.4483,-8.2459],[115.4575,-8.2421],[115.4549,-8.2508],[115.4494,-8.2526],[115.4398,-8.2625],[115.4309,-8.2666],[115.4288,-8.2711],[115.4317,-8.2754],[115.4264,-8.2845],[115.4228,-8.2961],[115.4225,-8.3023],[115.4188,-8.3057],[115.4216,-8.312],[115.4165,-8.3146],[115.4182,-8.3195],[115.4147,-8.3222],[115.4092,-8.3224],[115.4088,-8.3295],[115.4101,-8.3384],[115.3989,-8.3448],[115.399,-8.3563],[115.3961,-8.3611],[115.3994,-8.3704],[115.404,-8.3764],[115.4034,-8.3804],[115.4081,-8.3853],[115.407,-8.39],[115.4111,-8.3978],[115.4152,-8.4002],[115.4161,-8.4093],[115.4133,-8.4186],[115.415,-8.4214],[115.4146,-8.4341],[115.4112,-8.4366],[115.4084,-8.4488],[115.4034,-8.4522],[115.4025,-8.4564],[115.4014,-8.4646],[115.3946,-8.4715],[115.3908,-8.483],[115.3973,-8.4805],[115.4063,-8.4741],[115.4118,-8.4726],[115.4143,-8.4742],[115.4097,-8.487],[115.4139,-8.4993],[115.4151,-8.5089],[115.4057,-8.514],[115.4083,-8.5201],[115.4064,-8.5239],[115.4098,-8.5301],[115.4142,-8.5232],[115.4193,-8.5234],[115.4285,-8.5193],[115.4364,-8.5177],[115.4399,-8.5146],[115.4584,-8.5032],[115.4635,-8.5039],[115.4692,-8.509],[115.4704,-8.5135],[115.4763,-8.52],[115.475,-8.5278],[115.4749,-8.537],[115.4803,-8.5434],[115.4791,-8.5509]]}},{"type":"Feature","properties":{"mhid":"1332:289","alt_name":"KABUPATEN BULELENG","latitude":-8.25,"longitude":114.96667,"sample_value":683},"geometry":{"type":"LineString","coordinates":[[114.5171,-8.0925],[114.5145,-8.0919],[114.5026,-8.0941],[114.5101,-8.098],[114.5176,-8.1002],[114.5249,-8.0981],[114.5248,-8.0929],[114.5171,-8.0925]]}},{"type":"Feature","properties":{"mhid":"1332:289","alt_name":"KABUPATEN BULELENG","latitude":-8.25,"longitude":114.96667,"sample_value":683},"geometry":{"type":"LineString","coordinates":[[115.4571,-8.1665],[115.4533,-8.1622],[115.4371,-8.1558],[115.4209,-8.152],[115.4168,-8.1523],[115.4047,-8.143],[115.3897,-8.1358],[115.3798,-8.1347],[115.3768,-8.1323],[115.3666,-8.1292],[115.358,-8.1283],[115.3449,-8.1184],[115.3391,-8.1115],[115.3245,-8.1131],[115.3093,-8.1062],[115.2955,-8.1049],[115.2836,-8.0987],[115.2767,-8.0965],[115.2685,-8.09],[115.2616,-8.0869],[115.2567,-8.0868],[115.2443,-8.0832],[115.2364,-8.0836],[115.2234,-8.0796],[115.2023,-8.0724],[115.1886,-8.063],[115.184,-8.0618],[115.1565,-8.0649],[115.1377,-8.0744],[115.1319,-8.0785],[115.1235,-8.0814],[115.1161,-8.0818],[115.1153,-8.084],[115.0943,-8.1012],[115.083,-8.1058],[115.0778,-8.1098],[115.0756,-8.1141],[115.0655,-8.1213],[115.0585,-8.1319],[115.0513,-8.1382],[115.0487,-8.144],[115.0404,-8.1476],[115.0296,-8.1538],[115.0219,-8.1637],[115.0103,-8.1658],[115.0056,-8.173],[114.9992,-8.1765],[114.994,-8.1765],[114.9871,-8.1802],[114.9756,-8.181],[114.9669,-8.1827],[114.9545,-8.1821],[114.9396,-8.1836],[114.9291,-8.1811],[114.9155,-8.1842],[114.907,-8.1826],[114.9035,-8.1878],[114.8937,-8.1883],[114.876,-8.1954],[114.8621,-8.1966],[114.8465,-8.1935],[114.8429,-8.1909],[114.8397,-8.1935],[114.8337,-8.1928],[114.8322,-8.1897],[114.8235,-8.1923],[114.8184,-8.1882],[114.8082,-8.1854],[114.8044,-8.1823],[114.7923,-8.1784],[114.7725,-8.173],[114.767,-8.1731],[114.7572,-8.1694],[114.7513,-8.1697],[114.7399,-8.1643],[114.736,-8.1609],[114.7264,-8.1574],[114.7213,-8.1576],[114.7079,-8.1543],[114.6937,-8.1443],[114.6814,-8.1444],[114.6792,-8.1465],[114.6728,-8.1474],[114.6655,-8.1454],[114.6632,-8.1427],[114.6559,-8.1437],[114.646,-8.1323],[114.6405,-8.1383],[114.6358,-8.1348],[114.6348,-8.1314],[114.63,-8.128],[114.6164,-8.1258],[114.6124,-8.1282],[114.6136,-8.1317],[114.6077,-8.1336],[114.6034,-8.1385],[114.5994,-8.1362],[114.5937,-8.1375],[114.593,-8.1305],[114.5953,-8.1238],[114.5919,-8.1205],[114.5867,-8.1197],[114.5792,-8.1215],[114.5689,-8.1268],[114.5629,-8.1315],[114.5615,-8.1352],[114.57,-8.1383],[114.563,-8.1436],[114.5585,-8.138],[114.559,-8.1339],[114.5561,-8.1313],[114.5507,-8.1335],[114.5454,-8.1392],[114.5399,-8.1431],[114.5287,-8.153],[114.5242,-8.1548],[114.5193,-8.1527],[114.5177,-8.1441],[114.523,-8.1391],[114.5232,-8.1339],[114.5157,-8.1239],[114.5109,-8.1155],[114.5053,-8.1109],[114.5024,-8.105],[114.4945,-8.0962],[114.4871,-8.0938],[114.4837,-8.0962],[114.4772,-8.0962],[114.4559,-8.0936],[114.4452,-8.0933],[114.4363,-8.0973],[114.4344,-8.1029],[114.4338,-8.1181],[114.4364,-8.1243],[114.4437,-8.1326],[114.4465,-8.1437],[114.4448,-8.1483],[114.4449,-8.1566],[114.4514,-8.161],[114.4575,-8.1602],[114.4677,-8.1653],[114.4662,-8.1686],[114.459,-8.1718],[114.4563,-8.1765],[114.4559,-8.1875],[114.457,-8.1925],[114.4603,-8.1944],[114.4808,-8.1972],[114.4943,-8.1936],[114.5001,-8.1987],[114.5059,-8.1999],[114.5096,-8.2053],[114.5194,-8.2049],[114.532,-8.1912],[114.5532,-8.1978],[114.5624,-8.1919],[114.5727,-8.1896],[114.5825,-8.1818],[114.5853,-8.1775],[114.5958,-8.1763],[114.6033,-8.1775],[114.6137,-8.1844],[114.6172,-8.1837],[114.621,-8.1912],[114.6267,-8.199],[114.6281,-8.205],[114.6331,-8.2141],[114.64,-8.2184],[114.6455,-8.2196],[114.6525,-8.226],[114.6629,-8.2242],[114.6675,-8.2224],[114.6756,-8.2241],[114.683,-8.2309],[114.685,-8.2308],[114.6907,-8.2195],[114.6913,-8.2095],[114.7034,-8.1987],[114.7068,-8.2026],[114.7195,-8.2098],[114.7276,-8.217],[114.7382,-8.2209],[114.746,-8.2226],[114.7516,-8.2289],[114.7559,-8.2319],[114.7629,-8.2491],[114.7662,-8.2534],[114.7708,-8.2553],[114.7709,-8.2601],[114.7761,-8.2631],[114.7827,-8.2599],[114.7851,-8.2543],[114.796,-8.2564],[114.7987,-8.2527],[114.8053,-8.2514],[114.8102,-8.2539],[114.817,-8.2609],[114.816,-8.2643],[114.8108,-8.2663],[114.8136,-8.2715],[114.8131,-8.2791],[114.8171,-8.2818],[114.8159,-8.2895],[114.8187,-8.2943],[114.8206,-8.3015],[114.8188,-8.3154],[114.8248,-8.3177],[114.8222,-8.325],[114.8241,-8.3329],[114.8309,-8.3341],[114.8389,-8.3378],[114.8419,-8.3353],[114.8463,-8.3372],[114.8521,-8.337],[114.8608,-8.3407],[114.8652,-8.3353],[114.872,-8.3381],[114.8782,-8.3443],[114.8844,-8.3467],[114.8874,-8.3518],[114.8967,-8.3576],[114.8977,-8.3637],[114.9019,-8.3715],[114.9025,-8.3753],[114.9234,-8.3833],[114.9291,-8.3827],[114.9316,-8.3638],[114.9355,-8.3587],[114.9419,-8.3586],[114.949,-8.3616],[114.9522,-8.3554],[114.952,-8.3508],[114.9556,-8.3452],[114.9553,-8.3382],[114.9585,-8.3343],[114.9604,-8.3284],[114.9583,-8.3236],[114.9605,-8.3209],[114.9627,-8.3101],[114.9673,-8.3044],[114.9737,-8.3031],[114.9811,-8.2975],[114.98,-8.2885],[114.9857,-8.2902],[114.9916,-8.299],[114.9964,-8.3003],[114.9994,-8.3035],[115.0054,-8.3057],[115.0094,-8.309],[115.0143,-8.3062],[115.0197,-8.3084],[115.0245,-8.3007],[115.033,-8.3009],[115.0433,-8.3066],[115.0492,-8.3064],[115.0592,-8.3104],[115.0638,-8.3097],[115.0708,-8.3118],[115.0875,-8.3109],[115.0937,-8.3065],[115.1012,-8.3071],[115.1024,-8.2989],[115.106,-8.2979],[115.113,-8.3016],[115.1184,-8.3067],[115.124,-8.3078],[115.1266,-8.2956],[115.1258,-8.2925],[115.1298,-8.2847],[115.1352,-8.2698],[115.1444,-8.2653],[115.1473,-8.2607],[115.1639,-8.2547],[115.1742,-8.2419],[115.1791,-8.2419],[115.1833,-8.2453],[115.198,-8.2453],[115.204,-8.2477],[115.2176,-8.2464],[115.2268,-8.2424],[115.2325,-8.2419],[115.2363,-8.2347],[115.2432,-8.2112],[115.2431,-8.2059],[115.2452,-8.1949],[115.2425,-8.1885],[115.2447,-8.1825],[115.2446,-8.1731],[115.2549,-8.1786],[115.2651,-8.1661],[115.2708,-8.1661],[115.2765,-8.1616],[115.2799,-8.1609],[115.2807,-8.1667],[115.2853,-8.1709],[115.2923,-8.1688],[115.301,-8.1734],[115.3061,-8.174],[115.305,-8.1683],[115.3119,-8.164],[115.3173,-8.1548],[115.3168,-8.1489],[115.3235,-8.1447],[115.3314,-8.1552],[115.3373,-8.1506],[115.3403,-8.1446],[115.3476,-8.15],[115.3521,-8.1516],[115.3617,-8.1455],[115.3605,-8.1527],[115.3667,-8.1521],[115.3681,-8.1547],[115.3647,-8.1611],[115.3675,-8.1661],[115.3721,-8.1681],[115.3763,-8.1638],[115.3808,-8.1676],[115.3797,-8.1714],[115.3851,-8.1758],[115.391,-8.1783],[115.39,-8.1859],[115.3995,-8.1892],[115.4028,-8.1886],[115.4285,-8.1885],[115.43,-8.1826],[115.4363,-8.1814],[115.4419,-8.1777],[115.442,-8.1742],[115.4526,-8.168],[115.4571,-8.1665]]}},{"type":"Feature","properties":{"mhid":"1332:290","alt_name":"KOTA DENPASAR","latitude":-8.66667,"longitude":115.21663,"sample_value":164},"geometry":{"type":"LineString","coordinates":[[115.2423,-8.6031],[115.2374,-8.6026],[115.2359,-8.5928],[115.2257,-8.5928],[115.2262,-8.5956],[115.2149,-8.5963],[115.2035,-8.6028],[115.1999,-8.6064],[115.1977,-8.612],[115.189,-8.6127],[115.1881,-8.6152],[115.1804,-8.6158],[115.1795,-8.6176],[115.1823,-8.6287],[115.1806,-8.6298],[115.1818,-8.648],[115.1814,-8.6573],[115.1748,-8.6603],[115.176,-8.6672],[115.1796,-8.6744],[115.1752,-8.6813],[115.1778,-8.6917],[115.1768,-8.6955],[115.1821,-8.7018],[115.187,-8.7114],[115.187,-8.7347],[115.1904,-8.7377],[115.1944,-8.737],[115.2048,-8.7293],[115.2116,-8.7334],[115.208,-8.7383],[115.206,-8.7461],[115.2119,-8.7469],[115.2138,-8.7379],[115.2117,-8.7364],[115.2138,-8.7268],[115.2272,-8.7278],[115.2217,-8.7326],[115.2179,-8.7464],[115.2207,-8.7495],[115.2283,-8.7524],[115.2348,-8.7454],[115.2396,-8.7435],[115.244,-8.7369],[115.2467,-8.7362],[115.2389,-8.7214],[115.2309,-8.7234],[115.2279,-8.7198],[115.239,-8.7173],[115.2456,-8.7109],[115.2509,-8.7127],[115.2551,-8.7119],[115.2634,-8.707],[115.2668,-8.6971],[115.2672,-8.6913],[115.2648,-8.6823],[115.2642,-8.6748],[115.2608,-8.6691],[115.262,-8.6636],[115.2685,-8.6548],[115.275,-8.6502],[115.2715,-8.6471],[115.27,-8.6423],[115.2656,-8.6411],[115.2642,-8.6372],[115.2603,-8.6363],[115.2562,-8.6284],[115.2557,-8.623],[115.2447,-8.6123],[115.2423,-8.6031]]}},{"type":"Feature","properties":{"mhid":"1332:291","alt_name":"KABUPATEN LOMBOK BARAT","latitude":-8.69583,"longitude":116.11667,"sample_value":441},"geometry":{"type":"LineString","coordinates":[[115.8911,-8.7445],[115.8915,-8.7344],[115.8901,-8.7315],[115.8853,-8.7311],[115.8822,-8.736],[115.8857,-8.743],[115.8911,-8.7445]]}},{"type":"Feature","properties":{"mhid":"1332:291","alt_name":"KABUPATEN LOMBOK BARAT","latitude":-8.69583,"longitude":116.11667,"sample_value":441},"geometry":{"type":"LineString","coordinates":[[115.9303,-8.7321],[115.9259,-8.7264],[115.9211,-8.7264],[115.9185,-8.7336],[115.9213,-8.7412],[115.9137,-8.7479],[115.9239,-8.7481],[115.9271,-8.7529],[115.9272,-8.7593],[115.9342,-8.761],[115.9324,-8.7508],[115.9259,-8.7419],[115.9255,-8.7355],[115.9303,-8.7321]]}},{"type":"Feature","properties":{"mhid":"1332:291","alt_name":"KABUPATEN LOMBOK BARAT","latitude":-8.69583,"longitude":116.11667,"sample_value":441},"geometry":{"type":"LineString","coordinates":[[115.9109,-8.7294],[115.9097,-8.7246],[115.9044,-8.7224],[115.9016,-8.7247],[115.9046,-8.7303],[115.9109,-8.7294]]}},{"type":"Feature","properties":{"mhid":"1332:291","alt_name":"KABUPATEN LOMBOK BARAT","latitude":-8.69583,"longitude":116.11667,"sample_value":441},"geometry":{"type":"LineString","coordinates":[[116.074,-8.6253],[116.0689,-8.6513],[116.0691,-8.6579],[116.0719,-8.6706],[116.0667,-8.6855],[116.0605,-8.7119],[116.0567,-8.7245],[116.0596,-8.7303],[116.0696,-8.7285],[116.0805,-8.7321],[116.0729,-8.7384],[116.0696,-8.7363],[116.0657,-8.7419],[116.0667,-8.7461],[116.0588,-8.7537],[116.0619,-8.7579],[116.0584,-8.7679],[116.0547,-8.7664],[116.0501,-8.7611],[116.044,-8.766],[116.0388,-8.7627],[116.0407,-8.7593],[116.0397,-8.7545],[116.0364,-8.7508],[116.046,-8.7459],[116.0415,-8.7387],[116.0431,-8.7317],[116.0469,-8.727],[116.0453,-8.7235],[116.041,-8.7255],[116.0311,-8.7257],[116.0285,-8.7284],[116.0295,-8.7394],[116.0232,-8.7416],[116.0142,-8.751],[116.0084,-8.751],[116.0065,-8.747],[116.0007,-8.7405],[115.9971,-8.739],[115.9901,-8.7307],[115.9874,-8.7296],[115.9814,-8.7358],[115.9764,-8.7326],[115.9674,-8.7346],[115.9643,-8.7386],[115.9553,-8.7449],[115.9493,-8.7454],[115.9422,-8.753],[115.9426,-8.7585],[115.9392,-8.7651],[115.9331,-8.769],[115.9223,-8.7682],[115.9196,-8.7693],[115.9185,-8.7745],[115.914,-8.7753],[115.9044,-8.7709],[115.8981,-8.7621],[115.8943,-8.7601],[115.9002,-8.7502],[115.8956,-8.7492],[115.8938,-8.754],[115.8875,-8.7641],[115.8814,-8.7619],[115.8828,-8.7577],[115.8799,-8.7518],[115.8669,-8.7462],[115.8649,-8.7388],[115.869,-8.7296],[115.8656,-8.7225],[115.86,-8.7266],[115.8521,-8.7202],[115.8399,-8.7274],[115.8376,-8.733],[115.8372,-8.7403],[115.8296,-8.7448],[115.8253,-8.7506],[115.821,-8.7522],[115.8241,-8.7568],[115.8235,-8.7631],[115.8252,-8.7708],[115.8294,-8.7794],[115.8303,-8.7843],[115.8292,-8.7979],[115.833,-8.8005],[115.8348,-8.8106],[115.8482,-8.8131],[115.8488,-8.8159],[115.8447,-8.8211],[115.8481,-8.8255],[115.8521,-8.823],[115.8601,-8.8241],[115.8665,-8.8184],[115.8784,-8.8261],[115.887,-8.8258],[115.8907,-8.8308],[115.9022,-8.8305],[115.9091,-8.84],[115.9138,-8.8436],[115.919,-8.8444],[115.9208,-8.8384],[115.9256,-8.8341],[115.9334,-8.8334],[115.9357,-8.8363],[115.9447,-8.841],[115.9483,-8.8464],[115.9469,-8.8512],[115.9557,-8.8562],[115.9636,-8.8619],[115.9614,-8.8682],[115.9706,-8.8685],[115.9727,-8.8712],[115.972,-8.879],[115.9766,-8.8768],[115.9821,-8.8819],[115.9887,-8.8834],[115.9883,-8.8875],[115.9936,-8.8877],[115.9982,-8.8901],[115.9969,-8.8955],[116.0011,-8.8982],[116.0043,-8.903],[116.0117,-8.9028],[116.0161,-8.8975],[116.0161,-8.8938],[116.027,-8.8876],[116.0273,-8.8821],[116.0175,-8.8741],[116.0099,-8.8736],[116.01,-8.8676],[116.0119,-8.8643],[116.0188,-8.8596],[116.0213,-8.8605],[116.0288,-8.8571],[116.0334,-8.858],[116.0354,-8.8641],[116.0445,-8.8603],[116.0476,-8.854],[116.0543,-8.8513],[116.06,-8.8518],[116.0719,-8.8565],[116.0722,-8.8621],[116.0678,-8.8646],[116.0586,-8.8632],[116.0516,-8.8652],[116.0447,-8.87],[116.0471,-8.8751],[116.0474,-8.8804],[116.0498,-8.8853],[116.0565,-8.8829],[116.0649,-8.8832],[116.072,-8.8849],[116.0757,-8.8947],[116.0773,-8.8847],[116.0826,-8.8739],[116.1014,-8.8698],[116.0991,-8.8593],[116.1003,-8.8569],[116.0917,-8.8452],[116.0927,-8.8396],[116.0973,-8.8309],[116.1063,-8.8186],[116.1067,-8.8165],[116.1148,-8.8079],[116.1134,-8.8027],[116.1196,-8.7936],[116.1264,-8.7877],[116.1241,-8.7836],[116.1287,-8.7793],[116.1337,-8.7681],[116.1416,-8.7662],[116.1405,-8.7619],[116.1351,-8.7555],[116.1305,-8.7439],[116.1341,-8.7369],[116.1416,-8.7312],[116.1459,-8.7328],[116.1518,-8.738],[116.1663,-8.7328],[116.1667,-8.7268],[116.1745,-8.727],[116.1706,-8.7179],[116.1718,-8.7147],[116.1767,-8.7119],[116.1764,-8.7028],[116.1734,-8.69],[116.1689,-8.6821],[116.1672,-8.6758],[116.1731,-8.6729],[116.1771,-8.6783],[116.1812,-8.6799],[116.1844,-8.6764],[116.1919,-8.6755],[116.1961,-8.6735],[116.1881,-8.6453],[116.1887,-8.6419],[116.1814,-8.6396],[116.1782,-8.6263],[116.1787,-8.6204],[116.1916,-8.6169],[116.196,-8.6168],[116.2015,-8.6098],[116.2123,-8.6039],[116.2328,-8.5963],[116.2423,-8.5961],[116.2495,-8.5927],[116.2578,-8.5851],[116.2587,-8.5811],[116.2651,-8.5786],[116.2668,-8.5643],[116.2712,-8.5616],[116.2752,-8.5621],[116.2781,-8.5591],[116.2901,-8.5551],[116.2947,-8.551],[116.2976,-8.5449],[116.3015,-8.5415],[116.3053,-8.5344],[116.3078,-8.5265],[116.3115,-8.5206],[116.3161,-8.5169],[116.3165,-8.5118],[116.3207,-8.5046],[116.32,-8.4976],[116.3155,-8.4875],[116.3097,-8.4794],[116.3048,-8.4687],[116.3035,-8.4616],[116.3059,-8.4571],[116.3108,-8.4529],[116.3183,-8.4406],[116.3204,-8.4329],[116.327,-8.431],[116.334,-8.4201],[116.337,-8.4175],[116.339,-8.4105],[116.3329,-8.4107],[116.3278,-8.4137],[116.3194,-8.4242],[116.3112,-8.4292],[116.2964,-8.4343],[116.2893,-8.435],[116.2808,-8.44],[116.2772,-8.445],[116.2648,-8.4513],[116.256,-8.4527],[116.248,-8.4518],[116.2448,-8.4537],[116.2341,-8.4529],[116.2285,-8.4561],[116.2217,-8.4576],[116.2202,-8.4653],[116.2145,-8.4802],[116.2053,-8.4802],[116.1998,-8.4785],[116.1923,-8.4732],[116.192,-8.4677],[116.1823,-8.4627],[116.1732,-8.4658],[116.1648,-8.4643],[116.1614,-8.4567],[116.1538,-8.4597],[116.1462,-8.4583],[116.1421,-8.4544],[116.1374,-8.457],[116.1349,-8.4608],[116.1332,-8.4696],[116.1295,-8.4706],[116.1195,-8.4705],[116.1116,-8.4683],[116.1014,-8.4679],[116.0915,-8.4646],[116.0815,-8.4662],[116.0761,-8.4719],[116.0732,-8.4711],[116.0709,-8.4623],[116.066,-8.4623],[116.0584,-8.4657],[116.0527,-8.4669],[116.0439,-8.4707],[116.0374,-8.4702],[116.0377,-8.4812],[116.0344,-8.485],[116.0405,-8.4961],[116.0425,-8.4951],[116.047,-8.5012],[116.0549,-8.5059],[116.0645,-8.5219],[116.068,-8.5333],[116.0694,-8.551],[116.0753,-8.5553],[116.0849,-8.56],[116.0883,-8.56],[116.0971,-8.5551],[116.1068,-8.5548],[116.1158,-8.5572],[116.1235,-8.5645],[116.1316,-8.5636],[116.1358,-8.566],[116.1427,-8.5656],[116.1477,-8.5698],[116.1495,-8.5749],[116.1475,-8.5794],[116.1502,-8.5839],[116.1559,-8.5829],[116.16,-8.5849],[116.1611,-8.5904],[116.1701,-8.5915],[116.1679,-8.5964],[116.1507,-8.6122],[116.1418,-8.614],[116.1361,-8.612],[116.1311,-8.6188],[116.127,-8.617],[116.1187,-8.6183],[116.1128,-8.6219],[116.1092,-8.6192],[116.1021,-8.6248],[116.0866,-8.6264],[116.0778,-8.6228],[116.074,-8.6253]]}},{"type":"Feature","properties":{"mhid":"1332:292","alt_name":"KABUPATEN LOMBOK TENGAH","latitude":-8.7,"longitude":116.3,"sample_value":262},"geometry":{"type":"LineString","coordinates":[[116.4063,-8.4345],[116.4017,-8.4286],[116.3922,-8.4224],[116.3851,-8.4214],[116.3824,-8.4101],[116.375,-8.4145],[116.3671,-8.4125],[116.3594,-8.4127],[116.3459,-8.4088],[116.339,-8.4105],[116.337,-8.4175],[116.334,-8.4201],[116.327,-8.431],[116.3204,-8.4329],[116.3183,-8.4406],[116.3108,-8.4529],[116.3059,-8.4571],[116.3035,-8.4616],[116.3048,-8.4687],[116.3097,-8.4794],[116.3155,-8.4875],[116.32,-8.4976],[116.3207,-8.5046],[116.3165,-8.5118],[116.3161,-8.5169],[116.3115,-8.5206],[116.3078,-8.5265],[116.3053,-8.5344],[116.3015,-8.5415],[116.2976,-8.5449],[116.2947,-8.551],[116.2901,-8.5551],[116.2781,-8.5591],[116.2752,-8.5621],[116.2712,-8.5616],[116.2668,-8.5643],[116.2651,-8.5786],[116.2587,-8.5811],[116.2578,-8.5851],[116.2495,-8.5927],[116.2423,-8.5961],[116.2328,-8.5963],[116.2123,-8.6039],[116.2015,-8.6098],[116.196,-8.6168],[116.1916,-8.6169],[116.1787,-8.6204],[116.1782,-8.6263],[116.1814,-8.6396],[116.1887,-8.6419],[116.1881,-8.6453],[116.1961,-8.6735],[116.1919,-8.6755],[116.1844,-8.6764],[116.1812,-8.6799],[116.1771,-8.6783],[116.1731,-8.6729],[116.1672,-8.6758],[116.1689,-8.6821],[116.1734,-8.69],[116.1764,-8.7028],[116.1767,-8.7119],[116.1718,-8.7147],[116.1706,-8.7179],[116.1745,-8.727],[116.1667,-8.7268],[116.1663,-8.7328],[116.1518,-8.738],[116.1459,-8.7328],[116.1416,-8.7312],[116.1341,-8.7369],[116.1305,-8.7439],[116.1351,-8.7555],[116.1405,-8.7619],[116.1416,-8.7662],[116.1337,-8.7681],[116.1287,-8.7793],[116.1241,-8.7836],[116.1264,-8.7877],[116.1196,-8.7936],[116.1134,-8.8027],[116.1148,-8.8079],[116.1067,-8.8165],[116.1063,-8.8186],[116.0973,-8.8309],[116.0927,-8.8396],[116.0917,-8.8452],[116.1003,-8.8569],[116.0991,-8.8593],[116.1014,-8.8698],[116.107,-8.8694],[116.1111,-8.8718],[116.1143,-8.8675],[116.1199,-8.8668],[116.1328,-8.87],[116.1403,-8.8696],[116.1505,-8.8629],[116.1554,-8.8644],[116.1618,-8.8735],[116.1573,-8.8772],[116.1608,-8.8858],[116.1565,-8.8942],[116.1624,-8.8959],[116.1647,-8.9015],[116.1733,-8.9135],[116.1803,-8.9113],[116.1846,-8.9144],[116.1907,-8.9113],[116.1956,-8.9145],[116.1998,-8.9027],[116.2069,-8.901],[116.216,-8.9025],[116.219,-8.9088],[116.2265,-8.9087],[116.227,-8.901],[116.2334,-8.9035],[116.2332,-8.914],[116.2384,-8.9169],[116.245,-8.913],[116.2433,-8.9054],[116.2508,-8.9026],[116.254,-8.9056],[116.2609,-8.9063],[116.2679,-8.9101],[116.2756,-8.9081],[116.2743,-8.9037],[116.2762,-8.8993],[116.2748,-8.8957],[116.2797,-8.8934],[116.287,-8.8952],[116.2969,-8.9043],[116.2975,-8.9097],[116.3028,-8.9072],[116.3146,-8.9087],[116.3168,-8.9139],[116.324,-8.9082],[116.3314,-8.9116],[116.3329,-8.9152],[116.3423,-8.9218],[116.3411,-8.9265],[116.3466,-8.9305],[116.3508,-8.9274],[116.3468,-8.921],[116.3469,-8.9151],[116.3397,-8.9025],[116.3465,-8.8975],[116.3505,-8.9014],[116.3509,-8.9052],[116.3582,-8.9051],[116.3605,-8.9093],[116.3662,-8.9093],[116.3719,-8.9044],[116.3755,-8.9037],[116.3808,-8.91],[116.3701,-8.9228],[116.3665,-8.925],[116.3671,-8.9305],[116.3695,-8.9334],[116.3688,-8.9377],[116.373,-8.9456],[116.3708,-8.9487],[116.3757,-8.9556],[116.3807,-8.9536],[116.3874,-8.948],[116.3942,-8.9444],[116.3968,-8.9391],[116.3934,-8.9261],[116.3951,-8.9185],[116.3978,-8.9147],[116.3984,-8.908],[116.4006,-8.9034],[116.4049,-8.8996],[116.4016,-8.8934],[116.398,-8.8907],[116.3988,-8.8861],[116.3951,-8.8838],[116.3955,-8.8745],[116.3904,-8.8717],[116.3863,-8.8666],[116.3886,-8.8609],[116.3929,-8.8564],[116.4016,-8.8566],[116.3983,-8.8467],[116.396,-8.8466],[116.394,-8.8378],[116.3899,-8.8331],[116.3901,-8.8215],[116.395,-8.8183],[116.4008,-8.8157],[116.4029,-8.8114],[116.4118,-8.809],[116.4149,-8.806],[116.4148,-8.7945],[116.4175,-8.7764],[116.4252,-8.7729],[116.4259,-8.7603],[116.4285,-8.7558],[116.4351,-8.7558],[116.4431,-8.7487],[116.4458,-8.7459],[116.4464,-8.74],[116.443,-8.7342],[116.4434,-8.7267],[116.4461,-8.7226],[116.4383,-8.7192],[116.4335,-8.7109],[116.4297,-8.6929],[116.428,-8.6906],[116.4203,-8.6892],[116.4165,-8.6821],[116.409,-8.6814],[116.4033,-8.6775],[116.3975,-8.6842],[116.3852,-8.6745],[116.3818,-8.6683],[116.3812,-8.6631],[116.3843,-8.6526],[116.3843,-8.6447],[116.3784,-8.6395],[116.3785,-8.6302],[116.3766,-8.6112],[116.3782,-8.6051],[116.3763,-8.6012],[116.379,-8.5807],[116.3789,-8.5695],[116.3802,-8.561],[116.3794,-8.5305],[116.38,-8.5263],[116.3845,-8.5168],[116.3846,-8.4989],[116.3855,-8.4894],[116.3917,-8.4831],[116.3925,-8.4796],[116.403,-8.4693],[116.4064,-8.4615],[116.4064,-8.4534],[116.4036,-8.4508],[116.4027,-8.443],[116.4063,-8.4345]]}},{"type":"Feature","properties":{"mhid":"1332:293","alt_name":"KABUPATEN LOMBOK TIMUR","latitude":-8.53333,"longitude":116.53333,"sample_value":947},"geometry":{"type":"LineString","coordinates":[[116.7189,-8.3104],[116.7118,-8.311],[116.7071,-8.3145],[116.7096,-8.3248],[116.7149,-8.33],[116.7245,-8.3323],[116.7258,-8.3373],[116.7393,-8.3445],[116.7437,-8.3451],[116.7436,-8.3369],[116.7189,-8.3104]]}},{"type":"Feature","properties":{"mhid":"1332:293","alt_name":"KABUPATEN LOMBOK TIMUR","latitude":-8.53333,"longitude":116.53333,"sample_value":947},"geometry":{"type":"LineString","coordinates":[[116.6967,-8.2847],[116.69,-8.2806],[116.6855,-8.2864],[116.6859,-8.2914],[116.6946,-8.2965],[116.7057,-8.3092],[116.7114,-8.305],[116.7118,-8.2996],[116.7006,-8.2868],[116.6967,-8.2847]]}},{"type":"Feature","properties":{"mhid":"1332:293","alt_name":"KABUPATEN LOMBOK TIMUR","latitude":-8.53333,"longitude":116.53333,"sample_value":947},"geometry":{"type":"LineString","coordinates":[[116.4016,-8.8566],[116.4034,-8.8616],[116.4086,-8.8514],[116.4095,-8.8444],[116.4145,-8.8374],[116.4191,-8.8354],[116.4225,-8.8283],[116.4279,-8.8263],[116.4293,-8.8303],[116.4349,-8.8342],[116.4374,-8.8409],[116.4418,-8.8409],[116.4419,-8.8321],[116.4454,-8.8289],[116.4522,-8.8321],[116.4607,-8.8277],[116.4641,-8.8224],[116.4692,-8.8229],[116.4722,-8.8273],[116.4678,-8.8304],[116.4739,-8.839],[116.4717,-8.8445],[116.465,-8.8496],[116.4613,-8.8495],[116.4577,-8.8568],[116.4595,-8.862],[116.4574,-8.8718],[116.4547,-8.872],[116.4484,-8.8956],[116.4483,-8.8991],[116.4412,-8.9032],[116.4371,-8.9111],[116.4325,-8.9135],[116.4358,-8.9198],[116.4404,-8.919],[116.4461,-8.9212],[116.4564,-8.9212],[116.4578,-8.9193],[116.4718,-8.9214],[116.4769,-8.9182],[116.4875,-8.9137],[116.4962,-8.9118],[116.4991,-8.9089],[116.4999,-8.9024],[116.5064,-8.8946],[116.5071,-8.8885],[116.5103,-8.8831],[116.5088,-8.8789],[116.5195,-8.8826],[116.5207,-8.8986],[116.5199,-8.9044],[116.5141,-8.911],[116.5273,-8.9079],[116.5449,-8.9001],[116.5467,-8.8979],[116.5557,-8.8965],[116.5673,-8.8916],[116.5709,-8.8871],[116.5704,-8.8791],[116.5751,-8.8762],[116.5748,-8.8724],[116.5857,-8.8707],[116.5844,-8.865],[116.5944,-8.8611],[116.5879,-8.8566],[116.5698,-8.8624],[116.5543,-8.8572],[116.5498,-8.8541],[116.5423,-8.8574],[116.5398,-8.8612],[116.5358,-8.8599],[116.5397,-8.8543],[116.5407,-8.8453],[116.5394,-8.8397],[116.54,-8.8327],[116.5347,-8.8283],[116.5289,-8.8297],[116.5244,-8.8255],[116.5227,-8.8298],[116.5294,-8.8312],[116.5282,-8.8407],[116.5172,-8.8387],[116.5178,-8.8435],[116.5052,-8.8413],[116.503,-8.8456],[116.5054,-8.8507],[116.5099,-8.8519],[116.5103,-8.8565],[116.5044,-8.8592],[116.4989,-8.8562],[116.4927,-8.8482],[116.4973,-8.8413],[116.4943,-8.8371],[116.4994,-8.8294],[116.4975,-8.8268],[116.5006,-8.8216],[116.4989,-8.8115],[116.4946,-8.8142],[116.4841,-8.8158],[116.4801,-8.8103],[116.4811,-8.8068],[116.486,-8.8055],[116.4948,-8.8105],[116.5009,-8.8056],[116.5008,-8.8019],[116.5057,-8.7946],[116.5058,-8.7885],[116.5089,-8.7809],[116.513,-8.7773],[116.5207,-8.7769],[116.5253,-8.7702],[116.5363,-8.7621],[116.5457,-8.7525],[116.5526,-8.7404],[116.5517,-8.7323],[116.5536,-8.7253],[116.5611,-8.7142],[116.5706,-8.704],[116.572,-8.6998],[116.578,-8.6911],[116.58,-8.6816],[116.5872,-8.6674],[116.5974,-8.6592],[116.6171,-8.6322],[116.6208,-8.6259],[116.6246,-8.6108],[116.6231,-8.6054],[116.6254,-8.6014],[116.6329,-8.5934],[116.6422,-8.5861],[116.6474,-8.5807],[116.6589,-8.5712],[116.6666,-8.5593],[116.6671,-8.5556],[116.6591,-8.5465],[116.6573,-8.5393],[116.6586,-8.5294],[116.6614,-8.5257],[116.6658,-8.5136],[116.677,-8.5054],[116.6785,-8.497],[116.6693,-8.5021],[116.6617,-8.4947],[116.6622,-8.4865],[116.6681,-8.4818],[116.6702,-8.4779],[116.677,-8.4734],[116.6852,-8.4654],[116.6963,-8.4524],[116.704,-8.4486],[116.7115,-8.443],[116.7096,-8.4329],[116.7097,-8.4273],[116.7142,-8.4239],[116.7105,-8.415],[116.7137,-8.4091],[116.7224,-8.3966],[116.7249,-8.3828],[116.7238,-8.3756],[116.7248,-8.3681],[116.7161,-8.353],[116.7181,-8.3483],[116.7102,-8.3418],[116.6988,-8.3358],[116.6934,-8.3354],[116.6884,-8.3327],[116.6898,-8.3293],[116.6725,-8.3092],[116.6657,-8.3049],[116.6641,-8.2994],[116.6596,-8.2944],[116.6506,-8.2883],[116.6424,-8.2855],[116.6212,-8.2807],[116.6158,-8.2807],[116.6085,-8.2828],[116.5989,-8.2809],[116.5937,-8.2785],[116.5895,-8.2744],[116.5714,-8.2665],[116.5557,-8.2628],[116.5486,-8.2619],[116.5452,-8.2593],[116.5322,-8.2542],[116.5238,-8.2529],[116.5103,-8.2557],[116.506,-8.2555],[116.5,-8.2521],[116.494,-8.2455],[116.4901,-8.2473],[116.4829,-8.2571],[116.4774,-8.2615],[116.4772,-8.2639],[116.4702,-8.2728],[116.4715,-8.2811],[116.47,-8.2971],[116.4726,-8.3019],[116.4724,-8.3066],[116.4695,-8.3101],[116.4668,-8.3294],[116.4631,-8.3361],[116.4577,-8.338],[116.4537,-8.3451],[116.451,-8.3551],[116.4406,-8.3634],[116.441,-8.3665],[116.4369,-8.3725],[116.4335,-8.3744],[116.4302,-8.3817],[116.4213,-8.3881],[116.4192,-8.3916],[116.4279,-8.3975],[116.4307,-8.4031],[116.4286,-8.4048],[116.4208,-8.4047],[116.4236,-8.4111],[116.4194,-8.419],[116.4268,-8.4232],[116.4112,-8.4307],[116.4063,-8.4345],[116.4027,-8.443],[116.4036,-8.4508],[116.4064,-8.4534],[116.4064,-8.4615],[116.403,-8.4693],[116.3925,-8.4796],[116.3917,-8.4831],[116.3855,-8.4894],[116.3846,-8.4989],[116.3845,-8.5168],[116.38,-8.5263],[116.3794,-8.5305],[116.3802,-8.561],[116.3789,-8.5695],[116.379,-8.5807],[116.3763,-8.6012],[116.3782,-8.6051],[116.3766,-8.6112],[116.3785,-8.6302],[116.3784,-8.6395],[116.3843,-8.6447],[116.3843,-8.6526],[116.3812,-8.6631],[116.3818,-8.6683],[116.3852,-8.6745],[116.3975,-8.6842],[116.4033,-8.6775],[116.409,-8.6814],[116.4165,-8.6821],[116.4203,-8.6892],[116.428,-8.6906],[116.4297,-8.6929],[116.4335,-8.7109],[116.4383,-8.7192],[116.4461,-8.7226],[116.4434,-8.7267],[116.443,-8.7342],[116.4464,-8.74],[116.4503,-8.7438],[116.4488,-8.7486],[116.4431,-8.7487],[116.4351,-8.7558],[116.4285,-8.7558],[116.4259,-8.7603],[116.4252,-8.7729],[116.4175,-8.7764],[116.4148,-8.7945],[116.4149,-8.806],[116.4118,-8.809],[116.4029,-8.8114],[116.4008,-8.8157],[116.395,-8.8183],[116.3956,-8.8266],[116.398,-8.8304],[116.3994,-8.8385],[116.3983,-8.8467],[116.4016,-8.8566]]}},{"type":"Feature","properties":{"mhid":"1332:294","alt_name":"KABUPATEN SUMBAWA","latitude":-8.7439,"longitude":117.3324,"sample_value":488},"geometry":{"type":"LineString","coordinates":[[117.966,-8.6116],[117.9566,-8.6112],[117.9571,-8.6244],[117.9599,-8.6303],[117.9655,-8.6273],[117.9704,-8.6301],[117.9683,-8.635],[117.972,-8.638],[117.9785,-8.637],[117.9743,-8.6479],[117.9668,-8.6469],[117.9652,-8.6533],[117.9613,-8.6562],[117.9621,-8.6607],[117.9548,-8.6658],[117.9591,-8.6706],[117.9647,-8.67],[117.9651,-8.666],[117.9701,-8.6639],[117.9699,-8.6594],[117.9742,-8.6585],[117.9794,-8.6602],[117.9813,-8.6573],[117.988,-8.6565],[117.987,-8.6514],[117.9905,-8.6488],[117.9934,-8.6539],[117.9951,-8.6622],[117.9902,-8.6673],[117.9829,-8.6797],[117.978,-8.6866],[117.9787,-8.6921],[117.9875,-8.6874],[117.9935,-8.691],[117.9972,-8.6875],[118.0008,-8.6921],[118.0041,-8.6904],[118.0017,-8.6853],[118.0054,-8.6798],[118.0078,-8.669],[118.0023,-8.6633],[118.0053,-8.6585],[118.0007,-8.6577],[117.9975,-8.6513],[117.9993,-8.6455],[117.9979,-8.6412],[118.003,-8.6374],[118.0049,-8.6335],[118.0026,-8.628],[117.9982,-8.6276],[117.9959,-8.6345],[117.9893,-8.6346],[117.9873,-8.6269],[117.9795,-8.6292],[117.9754,-8.6248],[117.9795,-8.6211],[117.978,-8.6114],[117.9738,-8.6136],[117.966,-8.6116]]}},{"type":"Feature","properties":{"mhid":"1332:294","alt_name":"KABUPATEN SUMBAWA","latitude":-8.7439,"longitude":117.3324,"sample_value":488},"geometry":{"type":"LineString","coordinates":[[117.8345,-8.5748],[117.8281,-8.5762],[117.8321,-8.5853],[117.8308,-8.5893],[117.8366,-8.5905],[117.8416,-8.585],[117.8418,-8.5775],[117.8402,-8.5751],[117.8345,-8.5748]]}},{"type":"Feature","properties":{"mhid":"1332:294","alt_name":"KABUPATEN SUMBAWA","latitude":-8.7439,"longitude":117.3324,"sample_value":488},"geometry":{"type":"LineString","coordinates":[[117.8227,-8.5558],[117.8143,-8.5587],[117.8135,-8.5614],[117.8225,-8.5674],[117.8227,-8.5558]]}},{"type":"Feature","properties":{"mhid":"1332:294","alt_name":"KABUPATEN SUMBAWA","latitude":-8.7439,"longitude":117.3324,"sample_value":488},"geometry":{"type":"LineString","coordinates":[[116.8735,-8.4927],[116.8663,-8.4942],[116.8644,-8.4982],[116.8681,-8.504],[116.8721,-8.5052],[116.8784,-8.5024],[116.8821,-8.4981],[116.8785,-8.4934],[116.8735,-8.4927]]}},{"type":"Feature","properties":{"mhid":"1332:294","alt_name":"KABUPATEN SUMBAWA","latitude":-8.7439,"longitude":117.3324,"sample_value":488},"geometry":{"type":"LineString","coordinates":[[117.7279,-8.4781],[117.7279,-8.4747],[117.7222,-8.4742],[117.7197,-8.4771],[117.7149,-8.478],[117.7079,-8.4848],[117.7069,-8.4907],[117.7014,-8.495],[117.7054,-8.5009],[117.7101,-8.5032],[117.7138,-8.5138],[117.71,-8.5179],[117.7098,-8.5214],[117.7126,-8.5273],[117.7137,-8.535],[117.7232,-8.5439],[117.7294,-8.5463],[117.7327,-8.5502],[117.7361,-8.5591],[117.7408,-8.5625],[117.7468,-8.5693],[117.7496,-8.568],[117.7609,-8.5694],[117.7658,-8.5654],[117.7681,-8.5599],[117.7666,-8.5566],[117.7708,-8.5526],[117.7781,-8.5615],[117.7919,-8.5577],[117.7994,-8.5543],[117.8003,-8.5517],[117.795,-8.5483],[117.791,-8.5505],[117.7776,-8.5547],[117.7714,-8.5517],[117.7695,-8.5427],[117.7658,-8.5402],[117.7643,-8.5469],[117.7596,-8.5475],[117.7556,-8.5427],[117.7495,-8.5399],[117.7454,-8.5338],[117.7451,-8.5301],[117.7394,-8.5283],[117.7347,-8.5183],[117.7374,-8.5105],[117.7366,-8.5037],[117.732,-8.5015],[117.7313,-8.4951],[117.7269,-8.4897],[117.7288,-8.482],[117.7279,-8.4781]]}},{"type":"Feature","properties":{"mhid":"1332:294","alt_name":"KABUPATEN SUMBAWA","latitude":-8.7439,"longitude":117.3324,"sample_value":488},"geometry":{"type":"LineString","coordinates":[[117.6528,-8.4479],[117.6489,-8.4638],[117.6507,-8.4664],[117.6486,-8.4738],[117.6504,-8.4866],[117.647,-8.4897],[117.6441,-8.4848],[117.6412,-8.4848],[117.6379,-8.4897],[117.6432,-8.4932],[117.6429,-8.5025],[117.638,-8.506],[117.6365,-8.5093],[117.6396,-8.5148],[117.6402,-8.5213],[117.6476,-8.5223],[117.6506,-8.5311],[117.6542,-8.5296],[117.6521,-8.5233],[117.6543,-8.5202],[117.661,-8.5167],[117.6648,-8.5209],[117.6663,-8.5142],[117.6687,-8.5136],[117.6709,-8.5214],[117.6742,-8.5231],[117.6792,-8.519],[117.6786,-8.5142],[117.6731,-8.5138],[117.6727,-8.509],[117.6777,-8.5035],[117.6753,-8.4996],[117.6767,-8.4903],[117.6752,-8.4842],[117.6702,-8.4806],[117.6683,-8.4762],[117.6697,-8.4703],[117.674,-8.4663],[117.6696,-8.457],[117.6607,-8.4489],[117.6528,-8.4479]]}},{"type":"Feature","properties":{"mhid":"1332:294","alt_name":"KABUPATEN SUMBAWA","latitude":-8.7439,"longitude":117.3324,"sample_value":488},"geometry":{"type":"LineString","coordinates":[[116.9512,-8.42],[116.9395,-8.4218],[116.9288,-8.4256],[116.924,-8.434],[116.9161,-8.4375],[116.9073,-8.4349],[116.9035,-8.4364],[116.895,-8.4368],[116.8793,-8.4318],[116.8725,-8.4318],[116.8665,-8.438],[116.8609,-8.4407],[116.8471,-8.4404],[116.8397,-8.4454],[116.8427,-8.4499],[116.8545,-8.4506],[116.8608,-8.4525],[116.8753,-8.445],[116.8886,-8.4444],[116.8912,-8.4475],[116.8969,-8.4492],[116.9045,-8.4466],[116.9124,-8.4463],[116.9268,-8.4411],[116.933,-8.4366],[116.94,-8.4335],[116.9441,-8.4377],[116.9487,-8.4379],[116.9541,-8.4354],[116.9597,-8.4301],[116.9599,-8.4242],[116.9561,-8.4208],[116.9512,-8.42]]}},{"type":"Feature","properties":{"mhid":"1332:294","alt_name":"KABUPATEN SUMBAWA","latitude":-8.7439,"longitude":117.3324,"sample_value":488},"geometry":{"type":"LineString","coordinates":[[117.6612,-8.4344],[117.6637,-8.4211],[117.6579,-8.4187],[117.6522,-8.4233],[117.6454,-8.4327],[117.642,-8.439],[117.6449,-8.44],[117.657,-8.4376],[117.6612,-8.4344]]}},{"type":"Feature","properties":{"mhid":"1332:294","alt_name":"KABUPATEN SUMBAWA","latitude":-8.7439,"longitude":117.3324,"sample_value":488},"geometry":{"type":"LineString","coordinates":[[117.0473,-8.3786],[117.0408,-8.3785],[117.0322,-8.3848],[117.026,-8.3929],[117.0249,-8.4023],[117.0198,-8.4066],[117.0093,-8.4105],[117.0007,-8.4119],[116.9943,-8.4091],[116.9922,-8.403],[116.9825,-8.414],[116.9818,-8.4205],[116.9762,-8.4302],[116.9788,-8.4325],[116.9963,-8.43],[116.996,-8.4214],[117.0013,-8.4211],[117.0144,-8.4158],[117.0238,-8.4183],[117.0241,-8.4092],[117.0326,-8.4103],[117.0401,-8.4033],[117.0455,-8.3948],[117.0425,-8.3919],[117.0434,-8.3881],[117.0481,-8.3838],[117.0473,-8.3786]]}},{"type":"Feature","properties":{"mhid":"1332:294","alt_name":"KABUPATEN SUMBAWA","latitude":-8.7439,"longitude":117.3324,"sample_value":488},"geometry":{"type":"LineString","coordinates":[[117.0809,-8.3714],[117.073,-8.3714],[117.0713,-8.3746],[117.0776,-8.3781],[117.0822,-8.374],[117.0809,-8.3714]]}},{"type":"Feature","properties":{"mhid":"1332:294","alt_name":"KABUPATEN SUMBAWA","latitude":-8.7439,"longitude":117.3324,"sample_value":488},"geometry":{"type":"LineString","coordinates":[[118.1758,-8.6548],[118.1758,-8.6592],[118.1725,-8.6605],[118.168,-8.6533],[118.1549,-8.6529],[118.1508,-8.654],[118.1443,-8.6523],[118.1413,-8.6479],[118.1337,-8.6517],[118.1278,-8.65],[118.1235,-8.6515],[118.1257,-8.6568],[118.1226,-8.6583],[118.1183,-8.6523],[118.1129,-8.6534],[118.1078,-8.6569],[118.0988,-8.6539],[118.0971,-8.6555],[118.0884,-8.6522],[118.0839,-8.6549],[118.0831,-8.6583],[118.0771,-8.66],[118.0749,-8.6562],[118.0688,-8.6629],[118.0599,-8.6616],[118.0512,-8.6662],[118.0467,-8.6699],[118.038,-8.6724],[118.0351,-8.6827],[118.0277,-8.6854],[118.0252,-8.6903],[118.0196,-8.6956],[118.0168,-8.7012],[118.0113,-8.706],[118.0092,-8.712],[118.0047,-8.7115],[117.9986,-8.714],[117.993,-8.7097],[117.9867,-8.7156],[117.9913,-8.7214],[117.9839,-8.7274],[117.9808,-8.7334],[117.9744,-8.7395],[117.9595,-8.7431],[117.9566,-8.7403],[117.9511,-8.744],[117.9458,-8.7429],[117.9481,-8.734],[117.9472,-8.7295],[117.9387,-8.7266],[117.9365,-8.7227],[117.9288,-8.7256],[117.9244,-8.7246],[117.9219,-8.7189],[117.9188,-8.7199],[117.918,-8.7265],[117.914,-8.732],[117.9078,-8.7357],[117.9053,-8.7411],[117.902,-8.7367],[117.894,-8.7304],[117.8889,-8.7244],[117.8899,-8.7191],[117.9018,-8.713],[117.9034,-8.7091],[117.9001,-8.7035],[117.8934,-8.7005],[117.888,-8.6999],[117.88,-8.702],[117.8713,-8.6965],[117.8572,-8.7052],[117.8537,-8.7121],[117.8475,-8.7181],[117.8403,-8.7184],[117.8372,-8.712],[117.8318,-8.7092],[117.8267,-8.7118],[117.8238,-8.7166],[117.816,-8.7226],[117.8065,-8.727],[117.8039,-8.7268],[117.7995,-8.7186],[117.7928,-8.7223],[117.785,-8.7198],[117.7827,-8.7167],[117.7729,-8.7117],[117.7703,-8.7047],[117.7717,-8.7015],[117.7698,-8.6911],[117.7731,-8.6887],[117.7727,-8.6843],[117.7666,-8.6736],[117.7649,-8.6684],[117.7691,-8.6647],[117.7699,-8.6586],[117.7662,-8.6572],[117.7616,-8.6608],[117.7569,-8.659],[117.7568,-8.6549],[117.7502,-8.6492],[117.7491,-8.6446],[117.751,-8.6376],[117.7543,-8.6358],[117.7684,-8.6376],[117.7767,-8.6351],[117.78,-8.6312],[117.7728,-8.6303],[117.7639,-8.6329],[117.7598,-8.6294],[117.7518,-8.6314],[117.7511,-8.6252],[117.7545,-8.6226],[117.7517,-8.618],[117.7547,-8.6128],[117.7584,-8.6101],[117.7601,-8.6055],[117.7563,-8.5914],[117.7456,-8.5886],[117.7374,-8.5943],[117.7282,-8.5893],[117.7273,-8.5861],[117.7314,-8.5782],[117.7375,-8.5712],[117.7372,-8.5637],[117.7308,-8.5618],[117.7252,-8.5576],[117.7245,-8.5629],[117.7192,-8.5677],[117.7116,-8.5662],[117.7053,-8.5671],[117.7017,-8.5641],[117.6975,-8.5655],[117.6958,-8.5746],[117.69,-8.5775],[117.687,-8.5766],[117.6855,-8.5711],[117.6774,-8.5678],[117.6689,-8.5675],[117.6621,-8.5656],[117.6605,-8.5614],[117.6536,-8.5637],[117.6491,-8.5589],[117.6438,-8.556],[117.64,-8.5602],[117.6358,-8.5597],[117.6347,-8.5548],[117.6292,-8.5521],[117.6346,-8.5465],[117.6291,-8.5385],[117.624,-8.5388],[117.63,-8.5263],[117.6345,-8.5231],[117.6282,-8.5162],[117.6266,-8.5093],[117.6293,-8.5019],[117.6253,-8.4987],[117.6315,-8.4876],[117.6319,-8.4786],[117.6346,-8.4745],[117.6344,-8.4644],[117.6319,-8.4628],[117.6281,-8.4509],[117.6251,-8.4446],[117.6166,-8.4392],[117.607,-8.4381],[117.6012,-8.4349],[117.5919,-8.4336],[117.5905,-8.4262],[117.5838,-8.4261],[117.5767,-8.4339],[117.5744,-8.4418],[117.5747,-8.4508],[117.5794,-8.4641],[117.5771,-8.4674],[117.5816,-8.4779],[117.5808,-8.4821],[117.5855,-8.4837],[117.5893,-8.4877],[117.5881,-8.4933],[117.5913,-8.4994],[117.5917,-8.5042],[117.5704,-8.5008],[117.5712,-8.4983],[117.5655,-8.4854],[117.5676,-8.4805],[117.5644,-8.4782],[117.5695,-8.4732],[117.565,-8.471],[117.5654,-8.4667],[117.5599,-8.4633],[117.5678,-8.4601],[117.567,-8.4492],[117.5628,-8.4463],[117.5628,-8.4403],[117.5689,-8.4344],[117.5707,-8.4257],[117.5672,-8.4173],[117.567,-8.4093],[117.5596,-8.4049],[117.553,-8.4061],[117.5477,-8.4027],[117.5357,-8.4086],[117.5145,-8.4124],[117.5012,-8.4137],[117.4826,-8.4117],[117.4727,-8.415],[117.4626,-8.4108],[117.4516,-8.4123],[117.4483,-8.4109],[117.4424,-8.4003],[117.4397,-8.3981],[117.4305,-8.3953],[117.4305,-8.402],[117.4358,-8.4051],[117.4343,-8.4132],[117.4253,-8.421],[117.4196,-8.4342],[117.4146,-8.4425],[117.4102,-8.4459],[117.4053,-8.454],[117.4064,-8.4627],[117.3988,-8.4695],[117.3931,-8.4723],[117.3838,-8.4712],[117.3816,-8.4652],[117.3762,-8.4636],[117.3686,-8.458],[117.3589,-8.4552],[117.3542,-8.4557],[117.3439,-8.4514],[117.3309,-8.4414],[117.3156,-8.4396],[117.3083,-8.4351],[117.3052,-8.4315],[117.3,-8.4305],[117.2968,-8.4328],[117.2888,-8.4262],[117.283,-8.426],[117.2798,-8.4231],[117.2668,-8.4187],[117.2621,-8.4163],[117.2535,-8.4173],[117.2446,-8.411],[117.2388,-8.4019],[117.2351,-8.3991],[117.2269,-8.3982],[117.2154,-8.4059],[117.2142,-8.408],[117.2019,-8.4063],[117.2003,-8.4035],[117.1902,-8.3954],[117.1833,-8.3848],[117.1746,-8.3806],[117.1756,-8.3764],[117.1655,-8.3689],[117.1551,-8.3643],[117.152,-8.3669],[117.1514,-8.3734],[117.147,-8.3767],[117.1383,-8.3773],[117.1295,-8.3709],[117.1223,-8.3697],[117.1124,-8.3704],[117.1055,-8.3728],[117.1109,-8.3778],[117.1039,-8.3821],[117.1034,-8.389],[117.0954,-8.3955],[117.0883,-8.3977],[117.0917,-8.4064],[117.0964,-8.4079],[117.098,-8.4141],[117.095,-8.4169],[117.0912,-8.414],[117.0852,-8.4148],[117.0844,-8.4185],[117.0756,-8.4209],[117.0704,-8.4203],[117.0669,-8.4239],[117.0667,-8.4352],[117.0605,-8.4356],[117.0558,-8.4385],[117.0517,-8.4435],[117.0465,-8.4433],[117.0417,-8.4454],[117.033,-8.4542],[117.0264,-8.4558],[117.0236,-8.4638],[117.0165,-8.4638],[117.0158,-8.4698],[117.0183,-8.4802],[117.0115,-8.4833],[117.0094,-8.4863],[117.0115,-8.4942],[117.0095,-8.4989],[117.0021,-8.5064],[116.9965,-8.5003],[116.9957,-8.496],[116.991,-8.4914],[116.9943,-8.4886],[116.9896,-8.4853],[116.9868,-8.4794],[116.9836,-8.4858],[116.9831,-8.4921],[116.9749,-8.495],[116.9691,-8.4923],[116.9627,-8.4934],[116.9564,-8.4979],[116.9564,-8.5069],[116.9534,-8.5111],[116.9447,-8.517],[116.9339,-8.5132],[116.9294,-8.5129],[116.9256,-8.5213],[116.9158,-8.5266],[116.9049,-8.5275],[116.8984,-8.5266],[116.89,-8.5271],[116.8835,-8.5259],[116.8883,-8.5267],[116.8781,-8.5357],[116.876,-8.5399],[116.8787,-8.5439],[116.8909,-8.5553],[116.9099,-8.5671],[116.9198,-8.5745],[116.9325,-8.5853],[116.9415,-8.5947],[116.9507,-8.6014],[116.9709,-8.6125],[116.9826,-8.6168],[117.0005,-8.625],[117.025,-8.6517],[117.0331,-8.664],[117.0419,-8.6725],[117.049,-8.6701],[117.0559,-8.6774],[117.0623,-8.6748],[117.0694,-8.678],[117.0706,-8.6848],[117.0747,-8.6899],[117.0822,-8.6951],[117.0879,-8.7052],[117.0906,-8.7194],[117.0906,-8.7305],[117.0886,-8.7484],[117.0832,-8.7588],[117.0837,-8.7646],[117.0767,-8.7673],[117.0657,-8.7804],[117.058,-8.7825],[117.0486,-8.783],[117.0416,-8.7883],[117.0406,-8.7935],[117.0436,-8.801],[117.049,-8.8041],[117.0562,-8.8034],[117.0634,-8.8066],[117.0655,-8.8098],[117.0739,-8.8148],[117.0768,-8.8239],[117.0843,-8.8253],[117.0854,-8.8346],[117.079,-8.8398],[117.0788,-8.8444],[117.0744,-8.847],[117.0723,-8.8571],[117.0703,-8.8598],[117.0616,-8.8617],[117.0622,-8.8722],[117.0642,-8.8759],[117.0717,-8.8833],[117.0766,-8.8863],[117.0839,-8.9013],[117.0834,-8.915],[117.0885,-8.9266],[117.0877,-8.9326],[117.0845,-8.9406],[117.0743,-8.9422],[117.0674,-8.9464],[117.0676,-8.9579],[117.0702,-8.9711],[117.0687,-8.9846],[117.0679,-8.9994],[117.0639,-9.0057],[117.0616,-9.0128],[117.0634,-9.0202],[117.0669,-9.0244],[117.0649,-9.0278],[117.0674,-9.0344],[117.0668,-9.0387],[117.0631,-9.0443],[117.0592,-9.043],[117.0566,-9.0514],[117.0568,-9.0589],[117.0518,-9.0615],[117.0492,-9.074],[117.0441,-9.0821],[117.0444,-9.0871],[117.0417,-9.0923],[117.0434,-9.0964],[117.0404,-9.1009],[117.046,-9.0997],[117.0497,-9.1022],[117.0571,-9.1042],[117.0653,-9.098],[117.0726,-9.0983],[117.0817,-9.0939],[117.0883,-9.0941],[117.0996,-9.0896],[117.1148,-9.0904],[117.1272,-9.0851],[117.135,-9.084],[117.1365,-9.0798],[117.1341,-9.0755],[117.1349,-9.0699],[117.1495,-9.0621],[117.1518,-9.0545],[117.1603,-9.0513],[117.1673,-9.0422],[117.168,-9.0379],[117.1712,-9.0344],[117.1769,-9.0243],[117.1858,-9.0213],[117.1936,-9.02],[117.209,-9.0191],[117.2191,-9.0198],[117.235,-9.0244],[117.2436,-9.0279],[117.268,-9.039],[117.27,-9.0408],[117.2801,-9.0419],[117.2876,-9.0455],[117.2936,-9.0467],[117.3051,-9.0423],[117.3203,-9.0509],[117.3239,-9.0555],[117.329,-9.0552],[117.3368,-9.0485],[117.3482,-9.0422],[117.3566,-9.0482],[117.3596,-9.0557],[117.3666,-9.0541],[117.3672,-9.0521],[117.375,-9.0481],[117.377,-9.05],[117.3905,-9.0524],[117.3998,-9.0484],[117.4094,-9.0495],[117.4158,-9.0431],[117.4252,-9.0405],[117.4333,-9.0354],[117.4441,-9.0334],[117.4589,-9.0245],[117.4638,-9.0233],[117.4794,-9.0222],[117.4842,-9.0194],[117.4917,-9.0182],[117.4997,-9.0191],[117.5139,-9.0129],[117.5201,-9.0083],[117.5262,-9.007],[117.5294,-9.001],[117.5361,-8.9978],[117.5424,-8.9985],[117.5476,-9.0031],[117.5541,-8.9949],[117.5599,-8.996],[117.5672,-8.9928],[117.5729,-8.9849],[117.5757,-8.9866],[117.5846,-8.9824],[117.5941,-8.9814],[117.5965,-8.9755],[117.6035,-8.9707],[117.6058,-8.9661],[117.6151,-8.9612],[117.6206,-8.9608],[117.6321,-8.9543],[117.6393,-8.9513],[117.643,-8.9438],[117.6651,-8.9389],[117.6687,-8.937],[117.675,-8.9304],[117.6765,-8.9246],[117.6905,-8.9188],[117.698,-8.9201],[117.7246,-8.9184],[117.7338,-8.9161],[117.7397,-8.9195],[117.7414,-8.9234],[117.7533,-8.9316],[117.7655,-8.9342],[117.7749,-8.9317],[117.7845,-8.9222],[117.7914,-8.9133],[117.7957,-8.906],[117.8004,-8.9048],[117.8095,-8.8988],[117.8171,-8.899],[117.8256,-8.9071],[117.8294,-8.9164],[117.833,-8.9183],[117.8363,-8.9297],[117.8395,-8.9324],[117.8449,-8.9325],[117.8496,-8.9287],[117.8545,-8.9272],[117.8597,-8.9349],[117.8625,-8.9367],[117.8671,-8.9352],[117.8711,-8.9369],[117.873,-8.9418],[117.8857,-8.9434],[117.8886,-8.9406],[117.8938,-8.932],[117.8959,-8.9224],[117.9026,-8.9198],[117.9188,-8.9184],[117.9233,-8.9165],[117.9248,-8.9105],[117.932,-8.9012],[117.9352,-8.8991],[117.9436,-8.9002],[117.9497,-8.9069],[117.9544,-8.906],[117.9578,-8.9013],[117.9622,-8.899],[117.9659,-8.9012],[117.9749,-8.8963],[117.9825,-8.8934],[117.9893,-8.8738],[118.0005,-8.8634],[118.003,-8.8579],[118.0083,-8.854],[118.0162,-8.8529],[118.021,-8.8564],[118.0278,-8.8521],[118.0298,-8.8554],[118.036,-8.8555],[118.0374,-8.8578],[118.0444,-8.8558],[118.0584,-8.8463],[118.0703,-8.8412],[118.0803,-8.8406],[118.0904,-8.8478],[118.094,-8.8536],[118.0925,-8.8584],[118.0958,-8.8624],[118.1092,-8.8718],[118.119,-8.8768],[118.127,-8.8779],[118.1376,-8.8721],[118.1416,-8.8671],[118.1506,-8.8649],[118.1588,-8.8588],[118.1733,-8.8584],[118.185,-8.8541],[118.1881,-8.8464],[118.1929,-8.8445],[118.2078,-8.8347],[118.211,-8.8293],[118.2106,-8.8259],[118.2134,-8.8203],[118.2196,-8.8144],[118.2215,-8.8068],[118.2276,-8.8051],[118.2343,-8.8008],[118.2445,-8.7958],[118.2543,-8.7856],[118.2584,-8.7755],[118.2631,-8.7727],[118.2757,-8.7698],[118.284,-8.7689],[118.286,-8.7601],[118.2853,-8.7551],[118.2825,-8.7513],[118.2873,-8.7404],[118.3036,-8.7324],[118.3168,-8.7284],[118.3218,-8.7318],[118.3264,-8.7295],[118.333,-8.7129],[118.3323,-8.7103],[118.3196,-8.7015],[118.3198,-8.6968],[118.3137,-8.6936],[118.2948,-8.6956],[118.2859,-8.6954],[118.276,-8.6926],[118.2687,-8.6934],[118.2529,-8.6992],[118.2484,-8.6995],[118.2401,-8.7029],[118.233,-8.7015],[118.2263,-8.7042],[118.2235,-8.7021],[118.2165,-8.7013],[118.2059,-8.7022],[118.1904,-8.7062],[118.1882,-8.7055],[118.183,-8.6962],[118.1776,-8.6916],[118.1769,-8.6824],[118.1793,-8.6775],[118.1767,-8.6703],[118.1776,-8.6638],[118.1758,-8.6548]]}},{"type":"Feature","properties":{"mhid":"1332:294","alt_name":"KABUPATEN SUMBAWA","latitude":-8.7439,"longitude":117.3324,"sample_value":488},"geometry":{"type":"LineString","coordinates":[[117.56,-8.1442],[117.5535,-8.1452],[117.5411,-8.152],[117.5377,-8.1549],[117.5296,-8.155],[117.5165,-8.1609],[117.5006,-8.1739],[117.494,-8.1785],[117.4885,-8.1804],[117.4822,-8.1861],[117.4801,-8.1923],[117.4793,-8.2081],[117.4817,-8.216],[117.4855,-8.2203],[117.488,-8.2281],[117.4845,-8.2418],[117.4789,-8.2574],[117.4849,-8.2612],[117.488,-8.2599],[117.497,-8.2617],[117.4992,-8.2651],[117.507,-8.268],[117.5079,-8.277],[117.5042,-8.2865],[117.4995,-8.3027],[117.4931,-8.3168],[117.4864,-8.3248],[117.4771,-8.3313],[117.4707,-8.3569],[117.4821,-8.3619],[117.485,-8.3652],[117.4992,-8.3713],[117.5017,-8.3743],[117.5161,-8.3845],[117.5281,-8.3896],[117.5291,-8.3856],[117.5344,-8.3799],[117.5478,-8.3695],[117.5511,-8.3596],[117.5578,-8.3525],[117.5703,-8.3353],[117.5746,-8.3243],[117.5725,-8.3206],[117.5745,-8.3136],[117.5786,-8.3104],[117.5818,-8.3014],[117.5859,-8.2823],[117.59,-8.2773],[117.6043,-8.2684],[117.6071,-8.2644],[117.6083,-8.2565],[117.6059,-8.2525],[117.6087,-8.2476],[117.6099,-8.2386],[117.6146,-8.2329],[117.6278,-8.2228],[117.6318,-8.2217],[117.6391,-8.216],[117.6466,-8.2131],[117.6599,-8.1983],[117.6726,-8.1942],[117.68,-8.1908],[117.6861,-8.1859],[117.6899,-8.1782],[117.6836,-8.166],[117.6746,-8.1588],[117.672,-8.1554],[117.6651,-8.1509],[117.6565,-8.1486],[117.6489,-8.1529],[117.6315,-8.1527],[117.6249,-8.1543],[117.6064,-8.1548],[117.597,-8.1528],[117.5859,-8.1521],[117.5723,-8.1488],[117.56,-8.1442]]}},{"type":"Feature","properties":{"mhid":"1332:294","alt_name":"KABUPATEN SUMBAWA","latitude":-8.7439,"longitude":117.3324,"sample_value":488},"geometry":{"type":"LineString","coordinates":[[117.4065,-8.1292],[117.4035,-8.1285],[117.3846,-8.1317],[117.3814,-8.1342],[117.3804,-8.1406],[117.3756,-8.147],[117.3587,-8.146],[117.3498,-8.1493],[117.3511,-8.1544],[117.3572,-8.1564],[117.36,-8.1594],[117.3651,-8.1605],[117.3775,-8.1604],[117.3792,-8.1558],[117.3784,-8.1511],[117.3944,-8.1459],[117.4077,-8.1399],[117.4145,-8.1383],[117.418,-8.1356],[117.4141,-8.1309],[117.4065,-8.1292]]}},{"type":"Feature","properties":{"mhid":"1332:295","alt_name":"KABUPATEN DOMPU","latitude":-8.5094,"longitude":118.4816,"sample_value":613},"geometry":{"type":"LineString","coordinates":[[118.2199,-8.6468],[118.2197,-8.6523],[118.2247,-8.653],[118.2257,-8.6489],[118.2199,-8.6468]]}},{"type":"Feature","properties":{"mhid":"1332:295","alt_name":"KABUPATEN DOMPU","latitude":-8.5094,"longitude":118.4816,"sample_value":613},"geometry":{"type":"LineString","coordinates":[[118.2065,-8.6425],[118.2029,-8.6375],[118.199,-8.642],[118.1964,-8.6496],[118.2036,-8.6498],[118.2093,-8.6541],[118.2125,-8.6518],[118.2065,-8.6425]]}},{"type":"Feature","properties":{"mhid":"1332:295","alt_name":"KABUPATEN DOMPU","latitude":-8.5094,"longitude":118.4816,"sample_value":613},"geometry":{"type":"LineString","coordinates":[[117.7655,-8.1435],[117.7561,-8.1459],[117.7457,-8.1509],[117.7421,-8.1551],[117.7347,-8.1535],[117.7315,-8.1472],[117.7243,-8.1504],[117.7271,-8.1583],[117.7205,-8.1617],[117.7204,-8.1735],[117.7126,-8.1824],[117.713,-8.1909],[117.7097,-8.1981],[117.7102,-8.203],[117.7065,-8.2108],[117.7106,-8.2183],[117.7056,-8.2236],[117.6991,-8.2267],[117.6974,-8.2324],[117.6917,-8.2383],[117.6995,-8.2431],[117.7085,-8.242],[117.7118,-8.2429],[117.713,-8.248],[117.7173,-8.2477],[117.727,-8.254],[117.7337,-8.2608],[117.7361,-8.271],[117.7423,-8.2795],[117.7521,-8.2847],[117.7579,-8.2856],[117.7628,-8.2891],[117.7682,-8.2964],[117.774,-8.3008],[117.7732,-8.3067],[117.7787,-8.3148],[117.7837,-8.3176],[117.7883,-8.325],[117.7967,-8.3304],[117.7976,-8.3331],[117.8061,-8.3402],[117.817,-8.3514],[117.8182,-8.3573],[117.8167,-8.3627],[117.8261,-8.3625],[117.8294,-8.3641],[117.8302,-8.3726],[117.842,-8.3709],[117.8464,-8.3718],[117.8556,-8.3781],[117.8576,-8.383],[117.8669,-8.3914],[117.8766,-8.3976],[117.8858,-8.4017],[117.892,-8.403],[117.8976,-8.4119],[117.9041,-8.4173],[117.9131,-8.4198],[117.9173,-8.4251],[117.9213,-8.4263],[117.932,-8.4327],[117.9403,-8.4338],[117.9484,-8.4366],[117.9613,-8.4444],[117.9683,-8.4471],[117.9684,-8.4524],[117.9725,-8.454],[117.9804,-8.4648],[117.9859,-8.4657],[118.0121,-8.4589],[118.019,-8.455],[118.0255,-8.4541],[118.034,-8.4549],[118.0394,-8.452],[118.0428,-8.4532],[118.0496,-8.4515],[118.0709,-8.4494],[118.0769,-8.4512],[118.0821,-8.4507],[118.0886,-8.4572],[118.0951,-8.4656],[118.0961,-8.4739],[118.1008,-8.48],[118.1015,-8.4889],[118.1056,-8.4954],[118.1132,-8.4962],[118.1172,-8.4938],[118.1199,-8.4839],[118.1261,-8.4851],[118.1334,-8.4943],[118.1351,-8.4997],[118.1391,-8.5053],[118.1387,-8.5086],[118.1425,-8.5137],[118.1468,-8.5163],[118.1503,-8.5154],[118.1658,-8.5255],[118.1716,-8.5269],[118.1801,-8.5325],[118.1846,-8.5404],[118.1844,-8.5469],[118.1881,-8.5559],[118.1873,-8.5635],[118.1957,-8.5714],[118.2025,-8.5707],[118.2031,-8.5623],[118.2062,-8.5597],[118.2067,-8.5544],[118.211,-8.5516],[118.216,-8.5524],[118.2204,-8.5556],[118.2227,-8.5528],[118.2308,-8.5518],[118.2341,-8.556],[118.246,-8.5636],[118.2501,-8.5696],[118.2508,-8.5872],[118.2634,-8.5854],[118.2666,-8.5878],[118.2713,-8.5865],[118.2793,-8.5944],[118.2779,-8.597],[118.2805,-8.6042],[118.2841,-8.6092],[118.2881,-8.6235],[118.2856,-8.6334],[118.2796,-8.6432],[118.2754,-8.6445],[118.2717,-8.6382],[118.2675,-8.6428],[118.2741,-8.6527],[118.2704,-8.6575],[118.2647,-8.6594],[118.2591,-8.6528],[118.2539,-8.6547],[118.2554,-8.6606],[118.2485,-8.6665],[118.2454,-8.6631],[118.2479,-8.6593],[118.2446,-8.6516],[118.2375,-8.6538],[118.2361,-8.6579],[118.2271,-8.6558],[118.2302,-8.6605],[118.2272,-8.666],[118.2202,-8.665],[118.2155,-8.6662],[118.2112,-8.6714],[118.2078,-8.6698],[118.2043,-8.6728],[118.1816,-8.6668],[118.1758,-8.6548],[118.1776,-8.6638],[118.1767,-8.6703],[118.1793,-8.6775],[118.1769,-8.6824],[118.1776,-8.6916],[118.183,-8.6962],[118.1882,-8.7055],[118.1904,-8.7062],[118.2059,-8.7022],[118.2165,-8.7013],[118.2235,-8.7021],[118.2263,-8.7042],[118.233,-8.7015],[118.2401,-8.7029],[118.2484,-8.6995],[118.2529,-8.6992],[118.2687,-8.6934],[118.276,-8.6926],[118.2859,-8.6954],[118.2948,-8.6956],[118.3137,-8.6936],[118.3198,-8.6968],[118.3196,-8.7015],[118.3323,-8.7103],[118.333,-8.7129],[118.3362,-8.7103],[118.3365,-8.7018],[118.346,-8.6989],[118.3498,-8.6896],[118.3538,-8.6845],[118.3587,-8.6832],[118.371,-8.6886],[118.3714,-8.6912],[118.3767,-8.6946],[118.3851,-8.6832],[118.3939,-8.6826],[118.3956,-8.6783],[118.4007,-8.6784],[118.406,-8.6723],[118.4052,-8.6643],[118.3991,-8.6629],[118.3932,-8.6633],[118.3893,-8.6604],[118.3855,-8.6513],[118.391,-8.6458],[118.3884,-8.6384],[118.3806,-8.626],[118.3816,-8.6169],[118.3871,-8.609],[118.3902,-8.6073],[118.3956,-8.6081],[118.3958,-8.6143],[118.3984,-8.6209],[118.4038,-8.621],[118.4138,-8.6251],[118.4202,-8.6234],[118.4223,-8.6259],[118.421,-8.6305],[118.4245,-8.6469],[118.4264,-8.6497],[118.4192,-8.6573],[118.4257,-8.6615],[118.4324,-8.6722],[118.431,-8.6798],[118.4206,-8.6853],[118.4183,-8.6923],[118.4273,-8.7101],[118.4294,-8.716],[118.4285,-8.7214],[118.4193,-8.7285],[118.4113,-8.743],[118.407,-8.7593],[118.4021,-8.761],[118.3929,-8.7669],[118.3866,-8.7638],[118.382,-8.7687],[118.3758,-8.7728],[118.3717,-8.7797],[118.3775,-8.7831],[118.3799,-8.7872],[118.3791,-8.7967],[118.3821,-8.8025],[118.3798,-8.8098],[118.3801,-8.83],[118.3875,-8.8423],[118.3973,-8.8551],[118.4123,-8.868],[118.418,-8.8717],[118.4236,-8.8721],[118.4308,-8.8774],[118.4506,-8.8848],[118.4606,-8.8825],[118.4638,-8.8796],[118.4684,-8.8818],[118.468,-8.8861],[118.4783,-8.8848],[118.4757,-8.8727],[118.4775,-8.8616],[118.4757,-8.8573],[118.4784,-8.8386],[118.4806,-8.8345],[118.4837,-8.8202],[118.4919,-8.8153],[118.4939,-8.8062],[118.5007,-8.7958],[118.5016,-8.7907],[118.5,-8.7837],[118.4948,-8.7765],[118.4976,-8.7693],[118.5016,-8.7653],[118.5088,-8.7612],[118.5038,-8.7568],[118.5051,-8.7473],[118.5084,-8.7397],[118.5101,-8.7268],[118.5134,-8.715],[118.5209,-8.7008],[118.5323,-8.6851],[118.5362,-8.6821],[118.5342,-8.6742],[118.5344,-8.6567],[118.5358,-8.6487],[118.5301,-8.6475],[118.5235,-8.6438],[118.5196,-8.6393],[118.5182,-8.6247],[118.5208,-8.6165],[118.5181,-8.611],[118.5105,-8.604],[118.5066,-8.5953],[118.5098,-8.5855],[118.5055,-8.5729],[118.5075,-8.5657],[118.5045,-8.5641],[118.5046,-8.5585],[118.5021,-8.5513],[118.4935,-8.5397],[118.4918,-8.5333],[118.4938,-8.5287],[118.5041,-8.5195],[118.5077,-8.5187],[118.514,-8.5106],[118.513,-8.5001],[118.5151,-8.4931],[118.5144,-8.4857],[118.5062,-8.471],[118.5055,-8.466],[118.5022,-8.4618],[118.5014,-8.4565],[118.503,-8.4512],[118.5026,-8.4431],[118.5104,-8.436],[118.5157,-8.4349],[118.5246,-8.4283],[118.529,-8.4205],[118.5389,-8.4068],[118.5426,-8.3949],[118.5407,-8.389],[118.5335,-8.379],[118.5323,-8.375],[118.5266,-8.3653],[118.5183,-8.3604],[118.5082,-8.3563],[118.4983,-8.348],[118.487,-8.3371],[118.4813,-8.3289],[118.4775,-8.3183],[118.476,-8.3072],[118.4728,-8.2998],[118.4604,-8.2902],[118.456,-8.2847],[118.4508,-8.2747],[118.446,-8.2678],[118.4439,-8.2687],[118.4428,-8.2743],[118.4395,-8.2783],[118.4342,-8.2769],[118.4324,-8.28],[118.4233,-8.2866],[118.4136,-8.2895],[118.4118,-8.2947],[118.4069,-8.298],[118.3929,-8.3018],[118.3881,-8.3046],[118.3872,-8.3128],[118.3896,-8.3178],[118.3881,-8.3232],[118.3892,-8.3272],[118.3861,-8.3316],[118.3803,-8.3345],[118.373,-8.3347],[118.3659,-8.3368],[118.3607,-8.3403],[118.3582,-8.3491],[118.356,-8.3523],[118.3494,-8.3455],[118.3453,-8.3438],[118.3379,-8.3454],[118.3357,-8.3477],[118.3334,-8.3664],[118.3251,-8.3652],[118.3174,-8.3703],[118.3169,-8.3771],[118.3218,-8.3802],[118.3197,-8.386],[118.3228,-8.3894],[118.3205,-8.3932],[118.3208,-8.405],[118.3156,-8.4059],[118.3107,-8.4114],[118.3068,-8.4203],[118.2959,-8.4294],[118.2744,-8.4386],[118.2695,-8.4387],[118.2561,-8.4347],[118.2549,-8.4363],[118.2409,-8.4408],[118.2351,-8.4382],[118.2253,-8.4375],[118.2218,-8.4393],[118.2061,-8.437],[118.2005,-8.433],[118.1893,-8.4212],[118.1852,-8.4177],[118.1742,-8.414],[118.1671,-8.4142],[118.1623,-8.4089],[118.1543,-8.4057],[118.1455,-8.4057],[118.1395,-8.3958],[118.1385,-8.3898],[118.125,-8.3854],[118.1153,-8.3839],[118.1019,-8.3768],[118.0944,-8.3675],[118.0872,-8.3609],[118.0796,-8.3563],[118.0695,-8.3531],[118.0584,-8.3464],[118.0452,-8.3356],[118.0422,-8.3303],[118.0329,-8.311],[118.0275,-8.3024],[118.0206,-8.2962],[118.0116,-8.292],[117.9973,-8.2868],[117.9733,-8.273],[117.9628,-8.2629],[117.9538,-8.25],[117.9389,-8.2358],[117.9362,-8.2292],[117.9288,-8.22],[117.9182,-8.2165],[117.9124,-8.2175],[117.9082,-8.2162],[117.9026,-8.2195],[117.8914,-8.2164],[117.8876,-8.2164],[117.8819,-8.221],[117.8741,-8.2211],[117.8707,-8.2189],[117.8604,-8.2173],[117.8512,-8.2134],[117.8395,-8.2054],[117.83,-8.1971],[117.8152,-8.1881],[117.8078,-8.1807],[117.8023,-8.1729],[117.79,-8.1704],[117.787,-8.1668],[117.7774,-8.1604],[117.7655,-8.1435]]}},{"type":"Feature","properties":{"mhid":"1332:295","alt_name":"KABUPATEN DOMPU","latitude":-8.5094,"longitude":118.4816,"sample_value":613},"geometry":{"type":"LineString","coordinates":[[117.7477,-8.0984],[117.7373,-8.0998],[117.735,-8.1077],[117.7376,-8.1139],[117.7419,-8.1172],[117.7467,-8.1181],[117.7518,-8.1213],[117.7584,-8.1158],[117.76,-8.1088],[117.7497,-8.0986],[117.7477,-8.0984]]}},{"type":"Feature","properties":{"mhid":"1332:296","alt_name":"KABUPATEN BIMA","latitude":-8.6,"longitude":118.61667,"sample_value":774},"geometry":{"type":"LineString","coordinates":[[119.2275,-8.6538],[119.2227,-8.655],[119.2172,-8.6644],[119.2162,-8.6706],[119.2084,-8.6737],[119.2152,-8.6771],[119.2142,-8.6824],[119.2214,-8.6834],[119.225,-8.6763],[119.233,-8.6734],[119.2343,-8.6689],[119.2385,-8.6692],[119.2389,-8.6634],[119.2351,-8.6635],[119.2275,-8.6538]]}},{"type":"Feature","properties":{"mhid":"1332:296","alt_name":"KABUPATEN BIMA","latitude":-8.6,"longitude":118.61667,"sample_value":774},"geometry":{"type":"LineString","coordinates":[[119.1866,-8.566],[119.1874,-8.5711],[119.1906,-8.5739],[119.19,-8.5835],[119.1975,-8.5842],[119.1978,-8.5712],[119.1876,-8.568],[119.1866,-8.566]]}},{"type":"Feature","properties":{"mhid":"1332:296","alt_name":"KABUPATEN BIMA","latitude":-8.6,"longitude":118.61667,"sample_value":774},"geometry":{"type":"LineString","coordinates":[[119.045,-8.5568],[119.0395,-8.5637],[119.0441,-8.5688],[119.0426,-8.571],[119.0427,-8.5798],[119.0529,-8.5762],[119.0556,-8.5725],[119.056,-8.5668],[119.0536,-8.5621],[119.045,-8.5568]]}},{"type":"Feature","properties":{"mhid":"1332:296","alt_name":"KABUPATEN BIMA","latitude":-8.6,"longitude":118.61667,"sample_value":774},"geometry":{"type":"LineString","coordinates":[[119.2749,-8.3967],[119.2695,-8.3978],[119.2687,-8.4112],[119.2699,-8.4177],[119.266,-8.4237],[119.2691,-8.4269],[119.2701,-8.4325],[119.2739,-8.4363],[119.2678,-8.4447],[119.2743,-8.4543],[119.2787,-8.448],[119.281,-8.4488],[119.2797,-8.4592],[119.2776,-8.4631],[119.2899,-8.4627],[119.2933,-8.4588],[119.2954,-8.4531],[119.2954,-8.4438],[119.3007,-8.4413],[119.3024,-8.4294],[119.307,-8.433],[119.3091,-8.4447],[119.3163,-8.4473],[119.3198,-8.4456],[119.3182,-8.4414],[119.3204,-8.4386],[119.3171,-8.434],[119.321,-8.4319],[119.3211,-8.4282],[119.3258,-8.4251],[119.3281,-8.4203],[119.3279,-8.4148],[119.3211,-8.412],[119.3136,-8.4073],[119.2964,-8.4167],[119.2828,-8.4192],[119.2768,-8.4152],[119.2746,-8.4056],[119.2763,-8.4022],[119.2749,-8.3967]]}},{"type":"Feature","properties":{"mhid":"1332:296","alt_name":"KABUPATEN BIMA","latitude":-8.6,"longitude":118.61667,"sample_value":774},"geometry":{"type":"LineString","coordinates":[[118.7136,-8.4966],[118.707,-8.5046],[118.707,-8.5071],[118.6947,-8.5121],[118.6953,-8.5165],[118.6877,-8.5186],[118.6782,-8.5159],[118.6751,-8.519],[118.679,-8.5217],[118.673,-8.5396],[118.6609,-8.542],[118.6529,-8.5509],[118.6509,-8.5461],[118.6554,-8.5425],[118.6606,-8.5315],[118.6677,-8.5268],[118.671,-8.5188],[118.6603,-8.511],[118.6638,-8.5022],[118.664,-8.4971],[118.6669,-8.495],[118.6649,-8.4864],[118.6711,-8.4798],[118.6781,-8.4757],[118.6798,-8.4685],[118.6858,-8.4599],[118.6869,-8.4481],[118.6893,-8.4451],[118.6871,-8.4407],[118.6902,-8.4378],[118.692,-8.4305],[118.6891,-8.4274],[118.6905,-8.4239],[118.6859,-8.418],[118.6917,-8.4042],[118.69,-8.4014],[118.6933,-8.3936],[118.6891,-8.3911],[118.6917,-8.3832],[118.6957,-8.377],[118.6916,-8.3724],[118.6906,-8.358],[118.6879,-8.3546],[118.6858,-8.3449],[118.6796,-8.3386],[118.6781,-8.3325],[118.6683,-8.3246],[118.6694,-8.3181],[118.6624,-8.3147],[118.6596,-8.3112],[118.6588,-8.3026],[118.649,-8.2964],[118.6497,-8.2931],[118.6458,-8.2895],[118.6386,-8.2881],[118.6324,-8.2921],[118.6224,-8.2884],[118.6055,-8.2746],[118.6021,-8.2762],[118.5968,-8.2738],[118.5919,-8.2751],[118.5853,-8.2668],[118.577,-8.2709],[118.5695,-8.27],[118.5651,-8.2652],[118.5564,-8.2632],[118.5415,-8.2649],[118.5359,-8.2632],[118.5319,-8.2649],[118.5207,-8.2604],[118.513,-8.2606],[118.5066,-8.2558],[118.5027,-8.25],[118.4939,-8.2432],[118.4865,-8.2498],[118.4804,-8.2511],[118.4757,-8.2499],[118.4697,-8.2458],[118.4633,-8.2464],[118.4588,-8.2556],[118.4534,-8.2563],[118.4508,-8.2613],[118.4472,-8.2631],[118.4439,-8.2687],[118.446,-8.2678],[118.4508,-8.2747],[118.456,-8.2847],[118.4604,-8.2902],[118.4728,-8.2998],[118.476,-8.3072],[118.4775,-8.3183],[118.4813,-8.3289],[118.487,-8.3371],[118.4983,-8.348],[118.5082,-8.3563],[118.5183,-8.3604],[118.5266,-8.3653],[118.5323,-8.375],[118.5335,-8.379],[118.5407,-8.389],[118.5426,-8.3949],[118.5389,-8.4068],[118.529,-8.4205],[118.5246,-8.4283],[118.5157,-8.4349],[118.5104,-8.436],[118.5026,-8.4431],[118.503,-8.4512],[118.5014,-8.4565],[118.5022,-8.4618],[118.5055,-8.466],[118.5062,-8.471],[118.5144,-8.4857],[118.5151,-8.4931],[118.513,-8.5001],[118.514,-8.5106],[118.5077,-8.5187],[118.5041,-8.5195],[118.4938,-8.5287],[118.4918,-8.5333],[118.4935,-8.5397],[118.5021,-8.5513],[118.5046,-8.5585],[118.5045,-8.5641],[118.5075,-8.5657],[118.5055,-8.5729],[118.5098,-8.5855],[118.5066,-8.5953],[118.5105,-8.604],[118.5181,-8.611],[118.5208,-8.6165],[118.5182,-8.6247],[118.5196,-8.6393],[118.5235,-8.6438],[118.5301,-8.6475],[118.5358,-8.6487],[118.5344,-8.6567],[118.5342,-8.6742],[118.5362,-8.6821],[118.5323,-8.6851],[118.5209,-8.7008],[118.5134,-8.715],[118.5101,-8.7268],[118.5084,-8.7397],[118.5051,-8.7473],[118.5038,-8.7568],[118.5088,-8.7612],[118.5016,-8.7653],[118.4976,-8.7693],[118.4948,-8.7765],[118.5,-8.7837],[118.5016,-8.7907],[118.5007,-8.7958],[118.4939,-8.8062],[118.4919,-8.8153],[118.4837,-8.8202],[118.4806,-8.8345],[118.4784,-8.8386],[118.4757,-8.8573],[118.4775,-8.8616],[118.4757,-8.8727],[118.4783,-8.8848],[118.4845,-8.8854],[118.4938,-8.8832],[118.4944,-8.8796],[118.4987,-8.8785],[118.5066,-8.8821],[118.5079,-8.877],[118.5126,-8.8758],[118.519,-8.8773],[118.5228,-8.8711],[118.5349,-8.862],[118.5527,-8.8535],[118.558,-8.8477],[118.5659,-8.8467],[118.5724,-8.8494],[118.5756,-8.8457],[118.582,-8.8447],[118.5865,-8.8415],[118.6051,-8.8381],[118.6102,-8.8332],[118.6101,-8.8301],[118.616,-8.8273],[118.6268,-8.8249],[118.6253,-8.8204],[118.6371,-8.8139],[118.642,-8.8131],[118.649,-8.8144],[118.6551,-8.8121],[118.656,-8.8097],[118.6622,-8.8068],[118.6733,-8.8059],[118.6823,-8.8095],[118.6885,-8.8055],[118.7021,-8.8059],[118.7075,-8.7979],[118.718,-8.7979],[118.7196,-8.793],[118.7252,-8.7971],[118.7328,-8.7961],[118.7382,-8.802],[118.7472,-8.8019],[118.7467,-8.7974],[118.7497,-8.7955],[118.7581,-8.797],[118.7621,-8.8041],[118.7726,-8.8081],[118.7785,-8.8126],[118.7838,-8.8203],[118.7908,-8.8225],[118.796,-8.8223],[118.8017,-8.8193],[118.8092,-8.8228],[118.8173,-8.8317],[118.816,-8.835],[118.82,-8.8378],[118.8247,-8.8373],[118.8328,-8.8397],[118.8347,-8.8439],[118.844,-8.8429],[118.8426,-8.8373],[118.8448,-8.8349],[118.8537,-8.8335],[118.8631,-8.8383],[118.8649,-8.8427],[118.8815,-8.8408],[118.8958,-8.8375],[118.904,-8.8432],[118.9099,-8.8407],[118.9179,-8.8406],[118.9375,-8.8318],[118.9451,-8.8296],[118.9454,-8.8267],[118.9525,-8.8198],[118.9571,-8.8175],[118.9504,-8.8115],[118.946,-8.8016],[118.9494,-8.7895],[118.9439,-8.7885],[118.9381,-8.795],[118.936,-8.7884],[118.9241,-8.7884],[118.9204,-8.7862],[118.9178,-8.7806],[118.9115,-8.7719],[118.9094,-8.7653],[118.9063,-8.766],[118.8982,-8.7628],[118.8885,-8.7615],[118.8769,-8.7642],[118.8693,-8.7629],[118.861,-8.7638],[118.8587,-8.7675],[118.8462,-8.7704],[118.8386,-8.7687],[118.8349,-8.7714],[118.8278,-8.7665],[118.818,-8.766],[118.8108,-8.763],[118.8039,-8.7652],[118.7981,-8.7652],[118.7897,-8.7634],[118.7741,-8.763],[118.7659,-8.7643],[118.7604,-8.7682],[118.7394,-8.7647],[118.7356,-8.7681],[118.7286,-8.7775],[118.7261,-8.777],[118.7247,-8.7655],[118.726,-8.7589],[118.719,-8.7546],[118.7077,-8.7542],[118.6963,-8.7523],[118.6925,-8.7465],[118.6961,-8.7437],[118.6985,-8.7387],[118.712,-8.7412],[118.7191,-8.738],[118.7214,-8.7309],[118.7269,-8.7274],[118.7313,-8.7289],[118.7314,-8.7233],[118.7378,-8.7161],[118.7437,-8.7122],[118.7483,-8.7014],[118.757,-8.6945],[118.7644,-8.6931],[118.7654,-8.699],[118.7703,-8.7015],[118.7728,-8.7091],[118.7752,-8.7098],[118.7826,-8.7035],[118.7899,-8.7074],[118.799,-8.7083],[118.8032,-8.705],[118.8148,-8.7032],[118.8196,-8.7119],[118.8316,-8.7132],[118.8382,-8.7152],[118.85,-8.7284],[118.8516,-8.7248],[118.8587,-8.7209],[118.8648,-8.7229],[118.8699,-8.7217],[118.8824,-8.708],[118.8807,-8.7043],[118.8752,-8.7005],[118.8767,-8.6943],[118.881,-8.6893],[118.8888,-8.6867],[118.8924,-8.6839],[118.9033,-8.6804],[118.9075,-8.6803],[118.9122,-8.6829],[118.9288,-8.6948],[118.9301,-8.6995],[118.9379,-8.7048],[118.9429,-8.7107],[118.9462,-8.7173],[118.9541,-8.7216],[118.9575,-8.7289],[118.9623,-8.7339],[118.9656,-8.7435],[118.9721,-8.7487],[118.9757,-8.7457],[118.9986,-8.7401],[119.0087,-8.7409],[119.0178,-8.7428],[119.0255,-8.736],[119.0296,-8.7364],[119.0363,-8.7329],[119.0443,-8.7363],[119.0467,-8.7351],[119.0596,-8.7383],[119.0618,-8.7417],[119.0736,-8.7439],[119.0764,-8.7417],[119.083,-8.7428],[119.0912,-8.7486],[119.099,-8.7517],[119.1031,-8.7487],[119.1029,-8.738],[119.0983,-8.7317],[119.1052,-8.7262],[119.1128,-8.7301],[119.1166,-8.7374],[119.1172,-8.745],[119.1211,-8.7433],[119.128,-8.752],[119.1347,-8.752],[119.1364,-8.7464],[119.1394,-8.7442],[119.1337,-8.7377],[119.139,-8.7361],[119.1413,-8.7324],[119.1474,-8.7289],[119.1518,-8.7286],[119.1596,-8.7252],[119.1619,-8.7264],[119.1692,-8.7193],[119.1599,-8.7174],[119.1543,-8.7129],[119.1485,-8.712],[119.1511,-8.7067],[119.1577,-8.7038],[119.1704,-8.7039],[119.1674,-8.6978],[119.1725,-8.6938],[119.1662,-8.6864],[119.1615,-8.6838],[119.1606,-8.6784],[119.1575,-8.6723],[119.1565,-8.6579],[119.1607,-8.6526],[119.1683,-8.65],[119.1676,-8.6465],[119.1576,-8.6477],[119.1613,-8.6378],[119.1719,-8.6343],[119.1745,-8.6283],[119.1825,-8.6327],[119.1813,-8.6222],[119.1772,-8.6197],[119.1782,-8.6165],[119.1733,-8.6148],[119.1724,-8.6115],[119.1806,-8.608],[119.1847,-8.6043],[119.1798,-8.5989],[119.1798,-8.5946],[119.1845,-8.5882],[119.1829,-8.5853],[119.1771,-8.5867],[119.1647,-8.5821],[119.1623,-8.5799],[119.172,-8.5694],[119.1722,-8.5643],[119.164,-8.5582],[119.1612,-8.5632],[119.1536,-8.5677],[119.151,-8.5657],[119.1468,-8.5693],[119.1477,-8.5731],[119.1472,-8.5851],[119.1525,-8.5885],[119.1505,-8.5929],[119.1463,-8.5894],[119.1345,-8.5954],[119.1341,-8.6016],[119.1308,-8.6034],[119.1224,-8.598],[119.1178,-8.5991],[119.1157,-8.5945],[119.1088,-8.5971],[119.1082,-8.6037],[119.1137,-8.6109],[119.1135,-8.6135],[119.1199,-8.6165],[119.1276,-8.622],[119.1304,-8.6263],[119.129,-8.6302],[119.1246,-8.629],[119.1111,-8.6356],[119.1021,-8.6359],[119.0951,-8.6405],[119.0861,-8.6445],[119.0799,-8.6508],[119.0744,-8.6515],[119.0665,-8.6505],[119.0545,-8.6525],[119.0478,-8.6494],[119.0358,-8.6418],[119.032,-8.6342],[119.0331,-8.6241],[119.0319,-8.6195],[119.0371,-8.6141],[119.037,-8.6111],[119.0332,-8.6053],[119.0363,-8.6007],[119.0367,-8.5956],[119.0311,-8.5961],[119.0291,-8.5939],[119.0299,-8.5876],[119.0248,-8.5827],[119.0248,-8.5784],[119.0151,-8.5754],[119.0141,-8.571],[119.0175,-8.5622],[119.0134,-8.5592],[119.0176,-8.5551],[119.0238,-8.5573],[119.0255,-8.5507],[119.0147,-8.547],[119.0178,-8.5447],[119.013,-8.5378],[119.0151,-8.5308],[119.0237,-8.5232],[119.0324,-8.5277],[119.0368,-8.5265],[119.0529,-8.5109],[119.0502,-8.5061],[119.0396,-8.504],[119.0414,-8.5],[119.0468,-8.4983],[119.046,-8.4936],[119.0488,-8.485],[119.0474,-8.4773],[119.0434,-8.4743],[119.0395,-8.475],[119.0351,-8.4679],[119.0364,-8.4647],[119.0481,-8.4626],[119.0467,-8.4597],[119.052,-8.4539],[119.0492,-8.4514],[119.0445,-8.4553],[119.0407,-8.4542],[119.0389,-8.4493],[119.0418,-8.4409],[119.0314,-8.4414],[119.0266,-8.4394],[119.0294,-8.4322],[119.0282,-8.4271],[119.0214,-8.4203],[119.0184,-8.4125],[119.0122,-8.4041],[119.0123,-8.401],[119.0082,-8.3963],[119.0043,-8.3949],[118.9994,-8.3896],[118.9921,-8.3765],[118.991,-8.3706],[118.9931,-8.3575],[118.9927,-8.3516],[118.9901,-8.3486],[118.9896,-8.3419],[118.9978,-8.3223],[119.0038,-8.3152],[119.0005,-8.3103],[118.9823,-8.3029],[118.9717,-8.3053],[118.9671,-8.3047],[118.9441,-8.294],[118.9297,-8.2955],[118.9247,-8.2942],[118.9202,-8.29],[118.9092,-8.2899],[118.8977,-8.2877],[118.8896,-8.2845],[118.8769,-8.2864],[118.8692,-8.2896],[118.8588,-8.2895],[118.8554,-8.2869],[118.8477,-8.2864],[118.8345,-8.2815],[118.8161,-8.2808],[118.8068,-8.2862],[118.8002,-8.2872],[118.7957,-8.2936],[118.7916,-8.2945],[118.7872,-8.3015],[118.7762,-8.3046],[118.7707,-8.3086],[118.7649,-8.3102],[118.7647,-8.3141],[118.7555,-8.3235],[118.7535,-8.3307],[118.7476,-8.3333],[118.7474,-8.3364],[118.7391,-8.3373],[118.7369,-8.3406],[118.7327,-8.3403],[118.7274,-8.3462],[118.729,-8.3491],[118.7332,-8.3504],[118.7396,-8.3586],[118.7467,-8.3778],[118.7415,-8.3901],[118.7422,-8.4021],[118.7507,-8.402],[118.7531,-8.3991],[118.7651,-8.4009],[118.769,-8.4041],[118.7747,-8.4118],[118.7786,-8.4133],[118.7873,-8.4132],[118.7937,-8.4236],[118.7992,-8.4276],[118.8052,-8.4255],[118.8073,-8.4109],[118.8149,-8.4119],[118.8224,-8.4174],[118.831,-8.4214],[118.8414,-8.4242],[118.8579,-8.4235],[118.8652,-8.4253],[118.8654,-8.4336],[118.8671,-8.4386],[118.8707,-8.442],[118.8757,-8.4431],[118.881,-8.4465],[118.8866,-8.4529],[118.882,-8.4632],[118.883,-8.4716],[118.8911,-8.4839],[118.896,-8.4898],[118.8828,-8.4901],[118.8703,-8.4926],[118.868,-8.4903],[118.8632,-8.491],[118.8541,-8.4966],[118.8443,-8.4962],[118.8381,-8.5012],[118.833,-8.503],[118.8262,-8.508],[118.8204,-8.5208],[118.8093,-8.5292],[118.8015,-8.5326],[118.7966,-8.5248],[118.7957,-8.5185],[118.7899,-8.5112],[118.7823,-8.5067],[118.7749,-8.5151],[118.7676,-8.5192],[118.7607,-8.5155],[118.7535,-8.5195],[118.7406,-8.5172],[118.732,-8.5141],[118.7277,-8.5089],[118.7251,-8.5004],[118.7136,-8.4966]]}},{"type":"Feature","properties":{"mhid":"1332:296","alt_name":"KABUPATEN BIMA","latitude":-8.6,"longitude":118.61667,"sample_value":774},"geometry":{"type":"LineString","coordinates":[[119.0679,-8.1309],[119.0604,-8.1277],[119.0541,-8.1272],[119.0476,-8.1293],[119.0405,-8.135],[119.0345,-8.138],[119.031,-8.1427],[119.0207,-8.1506],[119.0125,-8.1539],[119.0105,-8.1615],[119.005,-8.1722],[119.0009,-8.1774],[118.9996,-8.1835],[119.0021,-8.1879],[118.9985,-8.2026],[119.0015,-8.2095],[118.9988,-8.2161],[118.9999,-8.2287],[119.0033,-8.2351],[119.0126,-8.2473],[119.0168,-8.2471],[119.0257,-8.2519],[119.0295,-8.2555],[119.0393,-8.2602],[119.0506,-8.2618],[119.0596,-8.2598],[119.0661,-8.2564],[119.0832,-8.2543],[119.0884,-8.2492],[119.0957,-8.2375],[119.1028,-8.2308],[119.11,-8.2277],[119.115,-8.2233],[119.1185,-8.2155],[119.1202,-8.2047],[119.1226,-8.2011],[119.1236,-8.1895],[119.1208,-8.1799],[119.1178,-8.1747],[119.1156,-8.1639],[119.1128,-8.1565],[119.1082,-8.1541],[119.1035,-8.1467],[119.1,-8.1443],[119.091,-8.1339],[119.0797,-8.1299],[119.0719,-8.1318],[119.0679,-8.1309]]}},{"type":"Feature","properties":{"mhid":"1332:296","alt_name":"KABUPATEN BIMA","latitude":-8.6,"longitude":118.61667,"sample_value":774},"geometry":{"type":"LineString","coordinates":[[118.3174,-8.3703],[118.3108,-8.3703],[118.2958,-8.3671],[118.2908,-8.3678],[118.2851,-8.3598],[118.2799,-8.3647],[118.2714,-8.3583],[118.2769,-8.3419],[118.2754,-8.3348],[118.263,-8.3361],[118.2588,-8.3496],[118.2492,-8.3443],[118.2462,-8.3393],[118.2335,-8.3323],[118.2297,-8.3272],[118.2297,-8.3226],[118.2237,-8.3142],[118.2238,-8.3036],[118.2226,-8.2954],[118.2199,-8.2918],[118.218,-8.2851],[118.2131,-8.2789],[118.2076,-8.2746],[118.1919,-8.2697],[118.1887,-8.2672],[118.1851,-8.2687],[118.1806,-8.261],[118.181,-8.2571],[118.1753,-8.252],[118.1686,-8.2484],[118.1625,-8.2417],[118.1583,-8.2187],[118.1607,-8.2126],[118.1587,-8.2082],[118.1548,-8.2072],[118.1479,-8.2018],[118.1453,-8.1902],[118.1456,-8.1846],[118.149,-8.1758],[118.1456,-8.1631],[118.1454,-8.1488],[118.1467,-8.1409],[118.1451,-8.1367],[118.1402,-8.1329],[118.1281,-8.1278],[118.1218,-8.1271],[118.1118,-8.1232],[118.1019,-8.1154],[118.0913,-8.1118],[118.0807,-8.1003],[118.0765,-8.0999],[118.0594,-8.1075],[118.0442,-8.1077],[118.0309,-8.103],[118.0227,-8.0978],[118.011,-8.0956],[118.0073,-8.0939],[117.9928,-8.0994],[117.9834,-8.1047],[117.9709,-8.1035],[117.962,-8.1071],[117.9521,-8.103],[117.9482,-8.0972],[117.9437,-8.0839],[117.9314,-8.0825],[117.9238,-8.0801],[117.9148,-8.0843],[117.9012,-8.0941],[117.8901,-8.094],[117.8811,-8.0994],[117.8719,-8.0997],[117.866,-8.1028],[117.8499,-8.1152],[117.8345,-8.1233],[117.8292,-8.1293],[117.8164,-8.1307],[117.8066,-8.126],[117.7869,-8.1238],[117.7795,-8.1265],[117.7733,-8.1316],[117.7673,-8.1423],[117.7655,-8.1435],[117.7774,-8.1604],[117.787,-8.1668],[117.79,-8.1704],[117.8023,-8.1729],[117.8078,-8.1807],[117.8152,-8.1881],[117.83,-8.1971],[117.8395,-8.2054],[117.8512,-8.2134],[117.8604,-8.2173],[117.8707,-8.2189],[117.8741,-8.2211],[117.8819,-8.221],[117.8876,-8.2164],[117.8914,-8.2164],[117.9026,-8.2195],[117.9082,-8.2162],[117.9124,-8.2175],[117.9182,-8.2165],[117.9288,-8.22],[117.9362,-8.2292],[117.9389,-8.2358],[117.9538,-8.25],[117.9628,-8.2629],[117.9733,-8.273],[117.9973,-8.2868],[118.0116,-8.292],[118.0206,-8.2962],[118.0275,-8.3024],[118.0329,-8.311],[118.0422,-8.3303],[118.0452,-8.3356],[118.0584,-8.3464],[118.0695,-8.3531],[118.0796,-8.3563],[118.0872,-8.3609],[118.0944,-8.3675],[118.1019,-8.3768],[118.1153,-8.3839],[118.125,-8.3854],[118.1385,-8.3898],[118.1395,-8.3958],[118.1455,-8.4057],[118.1543,-8.4057],[118.1623,-8.4089],[118.1671,-8.4142],[118.1742,-8.414],[118.1852,-8.4177],[118.1893,-8.4212],[118.2005,-8.433],[118.2061,-8.437],[118.2218,-8.4393],[118.2253,-8.4375],[118.2351,-8.4382],[118.2409,-8.4408],[118.2549,-8.4363],[118.2561,-8.4347],[118.2695,-8.4387],[118.2744,-8.4386],[118.2959,-8.4294],[118.3068,-8.4203],[118.3107,-8.4114],[118.3156,-8.4059],[118.3208,-8.405],[118.3205,-8.3932],[118.3228,-8.3894],[118.3197,-8.386],[118.3218,-8.3802],[118.3169,-8.3771],[118.3174,-8.3703]]}},{"type":"Feature","properties":{"mhid":"1332:297","alt_name":"KABUPATEN SUMBAWA BARAT","latitude":-8.75159,"longitude":116.92132,"sample_value":50},"geometry":{"type":"LineString","coordinates":[[116.7881,-8.5291],[116.7838,-8.5289],[116.7783,-8.5317],[116.7693,-8.5431],[116.7689,-8.5489],[116.7664,-8.5531],[116.7695,-8.5593],[116.7738,-8.5583],[116.7799,-8.5538],[116.7872,-8.5438],[116.7888,-8.538],[116.7881,-8.5291]]}},{"type":"Feature","properties":{"mhid":"1332:297","alt_name":"KABUPATEN SUMBAWA BARAT","latitude":-8.75159,"longitude":116.92132,"sample_value":50},"geometry":{"type":"LineString","coordinates":[[116.8835,-8.5259],[116.8785,-8.5259],[116.8712,-8.5289],[116.8547,-8.5393],[116.8485,-8.5365],[116.8428,-8.5386],[116.8335,-8.5306],[116.8309,-8.5237],[116.8327,-8.5206],[116.831,-8.5153],[116.8219,-8.5152],[116.8191,-8.5179],[116.8234,-8.5236],[116.8313,-8.5396],[116.8337,-8.5477],[116.8333,-8.5575],[116.8305,-8.5598],[116.8283,-8.5667],[116.8248,-8.5723],[116.8179,-8.5786],[116.8075,-8.5818],[116.8022,-8.5817],[116.7885,-8.5896],[116.7861,-8.5937],[116.7868,-8.6022],[116.7848,-8.6096],[116.7742,-8.6212],[116.7704,-8.6288],[116.7711,-8.6374],[116.7674,-8.6432],[116.764,-8.6537],[116.7532,-8.663],[116.7493,-8.6639],[116.7539,-8.6701],[116.7589,-8.6745],[116.7731,-8.6738],[116.7744,-8.6807],[116.7719,-8.6869],[116.7747,-8.6879],[116.7796,-8.7056],[116.7863,-8.7126],[116.7829,-8.7167],[116.7857,-8.7212],[116.7809,-8.7284],[116.7777,-8.7261],[116.7716,-8.7257],[116.7688,-8.729],[116.7655,-8.7368],[116.7677,-8.743],[116.771,-8.74],[116.7774,-8.7433],[116.7842,-8.753],[116.7806,-8.758],[116.7783,-8.7643],[116.7814,-8.7747],[116.7875,-8.7656],[116.7929,-8.7663],[116.8008,-8.7733],[116.8096,-8.7862],[116.8118,-8.7925],[116.8095,-8.8029],[116.8147,-8.8116],[116.8125,-8.8194],[116.8081,-8.8244],[116.803,-8.8261],[116.7988,-8.8222],[116.7909,-8.8204],[116.7886,-8.8175],[116.784,-8.8224],[116.7853,-8.8259],[116.7803,-8.8313],[116.7712,-8.8326],[116.7666,-8.8349],[116.7701,-8.8391],[116.7711,-8.8483],[116.7679,-8.8555],[116.7572,-8.8642],[116.7531,-8.8623],[116.7445,-8.8655],[116.735,-8.8664],[116.7342,-8.8713],[116.7399,-8.8733],[116.7368,-8.8791],[116.7452,-8.8869],[116.7518,-8.8897],[116.7521,-8.8944],[116.7495,-8.8995],[116.7462,-8.9002],[116.7425,-8.8961],[116.7348,-8.8916],[116.7296,-8.8948],[116.7327,-8.9012],[116.7311,-8.9058],[116.7264,-8.906],[116.725,-8.9102],[116.7344,-8.916],[116.7432,-8.9152],[116.7513,-8.9213],[116.7499,-8.9268],[116.7461,-8.928],[116.7412,-8.9334],[116.7367,-8.9339],[116.7347,-8.9384],[116.7381,-8.952],[116.737,-8.9553],[116.7266,-8.9581],[116.7241,-8.9613],[116.7269,-8.9649],[116.7206,-8.9679],[116.7156,-8.9658],[116.7164,-8.9729],[116.7198,-8.9756],[116.7249,-8.9703],[116.7311,-8.9715],[116.7369,-8.9789],[116.7376,-8.9861],[116.733,-8.9909],[116.7271,-8.9997],[116.7323,-9.0014],[116.7392,-8.9969],[116.7546,-9.0087],[116.7689,-9.0183],[116.7831,-9.0315],[116.7888,-9.0359],[116.7966,-9.0358],[116.802,-9.0324],[116.8096,-9.0331],[116.8158,-9.0377],[116.8244,-9.0402],[116.833,-9.0459],[116.838,-9.0455],[116.8393,-9.0408],[116.8507,-9.0447],[116.8555,-9.0492],[116.8637,-9.0528],[116.867,-9.0568],[116.8832,-9.0621],[116.884,-9.0599],[116.8934,-9.0625],[116.8981,-9.0649],[116.9109,-9.0611],[116.9184,-9.0577],[116.9221,-9.0522],[116.9285,-9.0541],[116.933,-9.0527],[116.9401,-9.0529],[116.9465,-9.0563],[116.9541,-9.0584],[116.956,-9.0628],[116.9622,-9.0674],[116.9704,-9.0795],[116.9795,-9.0827],[116.9875,-9.0892],[116.9898,-9.0852],[116.997,-9.0922],[117.0044,-9.0933],[117.0093,-9.1007],[117.0088,-9.1063],[117.0163,-9.1093],[117.0238,-9.1021],[117.025,-9.1056],[117.0316,-9.1059],[117.0389,-9.1046],[117.0404,-9.1009],[117.0434,-9.0964],[117.0417,-9.0923],[117.0444,-9.0871],[117.0441,-9.0821],[117.0492,-9.074],[117.0518,-9.0615],[117.0568,-9.0589],[117.0566,-9.0514],[117.0592,-9.043],[117.0631,-9.0443],[117.0668,-9.0387],[117.0674,-9.0344],[117.0649,-9.0278],[117.0669,-9.0244],[117.0634,-9.0202],[117.0616,-9.0128],[117.0639,-9.0057],[117.0679,-8.9994],[117.0687,-8.9846],[117.0702,-8.9711],[117.0676,-8.9579],[117.0674,-8.9464],[117.0743,-8.9422],[117.0845,-8.9406],[117.0877,-8.9326],[117.0885,-8.9266],[117.0834,-8.915],[117.0839,-8.9013],[117.0766,-8.8863],[117.0717,-8.8833],[117.0642,-8.8759],[117.0622,-8.8722],[117.0616,-8.8617],[117.0703,-8.8598],[117.0723,-8.8571],[117.0744,-8.847],[117.0788,-8.8444],[117.079,-8.8398],[117.0854,-8.8346],[117.0843,-8.8253],[117.0768,-8.8239],[117.0739,-8.8148],[117.0655,-8.8098],[117.0634,-8.8066],[117.0562,-8.8034],[117.049,-8.8041],[117.0436,-8.801],[117.0406,-8.7935],[117.0416,-8.7883],[117.0486,-8.783],[117.058,-8.7825],[117.0657,-8.7804],[117.0767,-8.7673],[117.0837,-8.7646],[117.0832,-8.7588],[117.0886,-8.7484],[117.0906,-8.7305],[117.0906,-8.7194],[117.0879,-8.7052],[117.0822,-8.6951],[117.0747,-8.6899],[117.0706,-8.6848],[117.0694,-8.678],[117.0623,-8.6748],[117.0559,-8.6774],[117.049,-8.6701],[117.0419,-8.6725],[117.0331,-8.664],[117.025,-8.6517],[117.0005,-8.625],[116.9826,-8.6168],[116.9709,-8.6125],[116.9507,-8.6014],[116.9415,-8.5947],[116.9325,-8.5853],[116.9198,-8.5745],[116.9099,-8.5671],[116.8909,-8.5553],[116.8787,-8.5439],[116.876,-8.5399],[116.8781,-8.5357],[116.8883,-8.5267],[116.8835,-8.5259]]}},{"type":"Feature","properties":{"mhid":"1332:297","alt_name":"KABUPATEN SUMBAWA BARAT","latitude":-8.75159,"longitude":116.92132,"sample_value":50},"geometry":{"type":"LineString","coordinates":[[116.7914,-8.5116],[116.7878,-8.5133],[116.7887,-8.5185],[116.7942,-8.5164],[116.7914,-8.5116]]}},{"type":"Feature","properties":{"mhid":"1332:297","alt_name":"KABUPATEN SUMBAWA BARAT","latitude":-8.75159,"longitude":116.92132,"sample_value":50},"geometry":{"type":"LineString","coordinates":[[116.856,-8.5024],[116.8504,-8.5031],[116.8428,-8.5077],[116.8445,-8.5121],[116.8508,-8.5185],[116.8554,-8.513],[116.856,-8.5024]]}},{"type":"Feature","properties":{"mhid":"1332:298","alt_name":"KABUPATEN LOMBOK UTARA","latitude":-8.35214,"longitude":116.40152,"sample_value":251},"geometry":{"type":"LineString","coordinates":[[116.0877,-8.3626],[116.0873,-8.3534],[116.0853,-8.3502],[116.0779,-8.3533],[116.0749,-8.3576],[116.0799,-8.3648],[116.0865,-8.3651],[116.0877,-8.3626]]}},{"type":"Feature","properties":{"mhid":"1332:298","alt_name":"KABUPATEN LOMBOK UTARA","latitude":-8.35214,"longitude":116.40152,"sample_value":251},"geometry":{"type":"LineString","coordinates":[[116.0593,-8.3591],[116.0615,-8.3578],[116.0623,-8.3507],[116.0589,-8.3421],[116.0527,-8.343],[116.0517,-8.3498],[116.0541,-8.3579],[116.0593,-8.3591]]}},{"type":"Feature","properties":{"mhid":"1332:298","alt_name":"KABUPATEN LOMBOK UTARA","latitude":-8.35214,"longitude":116.40152,"sample_value":251},"geometry":{"type":"LineString","coordinates":[[116.0357,-8.3617],[116.0407,-8.3601],[116.0445,-8.3526],[116.0409,-8.339],[116.0343,-8.3392],[116.0295,-8.3427],[116.0279,-8.3464],[116.0291,-8.3542],[116.0357,-8.3617]]}},{"type":"Feature","properties":{"mhid":"1332:298","alt_name":"KABUPATEN LOMBOK UTARA","latitude":-8.35214,"longitude":116.40152,"sample_value":251},"geometry":{"type":"LineString","coordinates":[[116.494,-8.2455],[116.4863,-8.2413],[116.4799,-8.2355],[116.4757,-8.2359],[116.4641,-8.2302],[116.4602,-8.2271],[116.4451,-8.2285],[116.4401,-8.2276],[116.4302,-8.221],[116.422,-8.2215],[116.413,-8.2178],[116.4068,-8.2165],[116.4016,-8.2176],[116.3887,-8.2172],[116.3769,-8.214],[116.3704,-8.2104],[116.3586,-8.2138],[116.35,-8.2112],[116.3371,-8.215],[116.3315,-8.2185],[116.3268,-8.219],[116.319,-8.2224],[116.3075,-8.2297],[116.2994,-8.2316],[116.2934,-8.2397],[116.2862,-8.2382],[116.2813,-8.2394],[116.2696,-8.2448],[116.2535,-8.2546],[116.2432,-8.2641],[116.2369,-8.2664],[116.2229,-8.2789],[116.2206,-8.2847],[116.2138,-8.2891],[116.212,-8.2927],[116.2029,-8.3031],[116.1952,-8.3044],[116.1896,-8.3118],[116.1868,-8.3211],[116.1888,-8.3238],[116.1862,-8.3296],[116.1793,-8.3397],[116.1664,-8.3452],[116.1536,-8.3433],[116.1474,-8.3497],[116.1454,-8.3542],[116.1368,-8.3584],[116.1355,-8.3628],[116.13,-8.3655],[116.1256,-8.3625],[116.1213,-8.3639],[116.1198,-8.3703],[116.1142,-8.3676],[116.1103,-8.3625],[116.1022,-8.3608],[116.0996,-8.3624],[116.1038,-8.3734],[116.1066,-8.3835],[116.1044,-8.3907],[116.1016,-8.3937],[116.0813,-8.4019],[116.0794,-8.4059],[116.073,-8.4067],[116.0705,-8.4028],[116.0619,-8.4061],[116.0562,-8.4042],[116.0535,-8.4093],[116.0532,-8.4162],[116.0507,-8.4192],[116.0466,-8.4186],[116.0422,-8.4226],[116.0474,-8.4262],[116.0461,-8.4329],[116.0404,-8.4359],[116.0376,-8.4424],[116.0331,-8.4424],[116.032,-8.4469],[116.0366,-8.4565],[116.0359,-8.4648],[116.0374,-8.4702],[116.0439,-8.4707],[116.0527,-8.4669],[116.0584,-8.4657],[116.066,-8.4623],[116.0709,-8.4623],[116.0732,-8.4711],[116.0761,-8.4719],[116.0815,-8.4662],[116.0915,-8.4646],[116.1014,-8.4679],[116.1116,-8.4683],[116.1195,-8.4705],[116.1295,-8.4706],[116.1332,-8.4696],[116.1349,-8.4608],[116.1374,-8.457],[116.1421,-8.4544],[116.1462,-8.4583],[116.1538,-8.4597],[116.1614,-8.4567],[116.1648,-8.4643],[116.1732,-8.4658],[116.1823,-8.4627],[116.192,-8.4677],[116.1923,-8.4732],[116.1998,-8.4785],[116.2053,-8.4802],[116.2145,-8.4802],[116.2202,-8.4653],[116.2217,-8.4576],[116.2285,-8.4561],[116.2341,-8.4529],[116.2448,-8.4537],[116.248,-8.4518],[116.256,-8.4527],[116.2648,-8.4513],[116.2772,-8.445],[116.2808,-8.44],[116.2893,-8.435],[116.2964,-8.4343],[116.3112,-8.4292],[116.3194,-8.4242],[116.3278,-8.4137],[116.3329,-8.4107],[116.339,-8.4105],[116.3459,-8.4088],[116.3594,-8.4127],[116.3671,-8.4125],[116.375,-8.4145],[116.3824,-8.4101],[116.3851,-8.4214],[116.3922,-8.4224],[116.4017,-8.4286],[116.4063,-8.4345],[116.4112,-8.4307],[116.4268,-8.4232],[116.4194,-8.419],[116.4236,-8.4111],[116.4208,-8.4047],[116.4286,-8.4048],[116.4307,-8.4031],[116.4279,-8.3975],[116.4192,-8.3916],[116.4213,-8.3881],[116.4302,-8.3817],[116.4335,-8.3744],[116.4369,-8.3725],[116.441,-8.3665],[116.4406,-8.3634],[116.451,-8.3551],[116.4537,-8.3451],[116.4577,-8.338],[116.4631,-8.3361],[116.4668,-8.3294],[116.4695,-8.3101],[116.4724,-8.3066],[116.4726,-8.3019],[116.47,-8.2971],[116.4715,-8.2811],[116.4702,-8.2728],[116.4772,-8.2639],[116.4774,-8.2615],[116.4829,-8.2571],[116.4901,-8.2473],[116.494,-8.2455]]}},{"type":"Feature","properties":{"mhid":"1332:299","alt_name":"KOTA MATARAM","latitude":-8.5833,"longitude":116.1167,"sample_value":29},"geometry":{"type":"LineString","coordinates":[[116.074,-8.6253],[116.0778,-8.6228],[116.0866,-8.6264],[116.1021,-8.6248],[116.1092,-8.6192],[116.1128,-8.6219],[116.1187,-8.6183],[116.127,-8.617],[116.1311,-8.6188],[116.1361,-8.612],[116.1418,-8.614],[116.1507,-8.6122],[116.1679,-8.5964],[116.1701,-8.5915],[116.1611,-8.5904],[116.16,-8.5849],[116.1559,-8.5829],[116.1502,-8.5839],[116.1475,-8.5794],[116.1495,-8.5749],[116.1477,-8.5698],[116.1427,-8.5656],[116.1358,-8.566],[116.1316,-8.5636],[116.1235,-8.5645],[116.1158,-8.5572],[116.1068,-8.5548],[116.0971,-8.5551],[116.0883,-8.56],[116.0849,-8.56],[116.0753,-8.5553],[116.0694,-8.551],[116.0722,-8.5638],[116.0711,-8.5804],[116.073,-8.5944],[116.0745,-8.6144],[116.074,-8.6253]]}},{"type":"Feature","properties":{"mhid":"1332:300","alt_name":"KOTA BIMA","latitude":-8.46728,"longitude":118.75259,"sample_value":26},"geometry":{"type":"LineString","coordinates":[[118.7136,-8.4966],[118.7251,-8.5004],[118.7277,-8.5089],[118.732,-8.5141],[118.7406,-8.5172],[118.7535,-8.5195],[118.7607,-8.5155],[118.7676,-8.5192],[118.7749,-8.5151],[118.7823,-8.5067],[118.7899,-8.5112],[118.7957,-8.5185],[118.7966,-8.5248],[118.8015,-8.5326],[118.8093,-8.5292],[118.8204,-8.5208],[118.8262,-8.508],[118.833,-8.503],[118.8381,-8.5012],[118.8443,-8.4962],[118.8541,-8.4966],[118.8632,-8.491],[118.868,-8.4903],[118.8703,-8.4926],[118.8828,-8.4901],[118.896,-8.4898],[118.8911,-8.4839],[118.883,-8.4716],[118.882,-8.4632],[118.8866,-8.4529],[118.881,-8.4465],[118.8757,-8.4431],[118.8707,-8.442],[118.8671,-8.4386],[118.8654,-8.4336],[118.8652,-8.4253],[118.8579,-8.4235],[118.8414,-8.4242],[118.831,-8.4214],[118.8224,-8.4174],[118.8149,-8.4119],[118.8073,-8.4109],[118.8052,-8.4255],[118.7992,-8.4276],[118.7937,-8.4236],[118.7873,-8.4132],[118.7786,-8.4133],[118.7747,-8.4118],[118.769,-8.4041],[118.7651,-8.4009],[118.7531,-8.3991],[118.7507,-8.402],[118.7422,-8.4021],[118.7415,-8.3901],[118.7467,-8.3778],[118.7396,-8.3586],[118.7332,-8.3504],[118.729,-8.3491],[118.7272,-8.351],[118.7293,-8.358],[118.7236,-8.3644],[118.7187,-8.3679],[118.712,-8.3822],[118.7015,-8.3903],[118.7055,-8.3962],[118.7108,-8.3975],[118.7083,-8.4027],[118.6983,-8.4114],[118.7025,-8.4165],[118.7122,-8.4213],[118.7122,-8.4296],[118.7168,-8.4282],[118.7208,-8.4301],[118.7248,-8.4361],[118.7228,-8.4414],[118.7187,-8.4417],[118.7183,-8.4528],[118.7115,-8.4536],[118.712,-8.4592],[118.7157,-8.4631],[118.7234,-8.4636],[118.7223,-8.4691],[118.7152,-8.4735],[118.7108,-8.4722],[118.7099,-8.481],[118.7136,-8.4966]]}},{"type":"Feature","properties":{"mhid":"1332:301","alt_name":"KABUPATEN SUMBA BARAT","latitude":-9.56667,"longitude":119.45,"sample_value":892},"geometry":{"type":"LineString","coordinates":[[119.543,-9.7527],[119.5403,-9.7419],[119.5069,-9.7411],[119.5078,-9.7337],[119.5068,-9.7294],[119.51,-9.7275],[119.52,-9.7108],[119.5254,-9.7061],[119.5348,-9.6939],[119.5345,-9.6915],[119.5276,-9.6854],[119.5204,-9.6822],[119.5123,-9.6806],[119.4988,-9.6814],[119.4917,-9.6791],[119.4835,-9.6837],[119.4696,-9.6775],[119.4727,-9.6746],[119.4711,-9.6701],[119.4812,-9.6574],[119.4866,-9.6564],[119.4849,-9.65],[119.4852,-9.6445],[119.4888,-9.6348],[119.4819,-9.6264],[119.4835,-9.6198],[119.4821,-9.6084],[119.4804,-9.6065],[119.4847,-9.599],[119.5005,-9.5816],[119.5077,-9.577],[119.5152,-9.5642],[119.5147,-9.5441],[119.5186,-9.5361],[119.5111,-9.5351],[119.499,-9.5279],[119.4947,-9.5268],[119.489,-9.5282],[119.4795,-9.5253],[119.4755,-9.5278],[119.473,-9.5205],[119.4659,-9.5148],[119.458,-9.5026],[119.465,-9.4984],[119.4648,-9.4931],[119.4602,-9.4905],[119.4557,-9.4841],[119.4563,-9.4732],[119.4551,-9.4692],[119.4498,-9.468],[119.4491,-9.4638],[119.4434,-9.4639],[119.4454,-9.4589],[119.4416,-9.4535],[119.4384,-9.4429],[119.4324,-9.4381],[119.4308,-9.4339],[119.4335,-9.4315],[119.4317,-9.4263],[119.427,-9.4225],[119.4288,-9.4194],[119.4262,-9.4153],[119.4219,-9.4137],[119.4196,-9.4056],[119.416,-9.3737],[119.4091,-9.3736],[119.4044,-9.3752],[119.3979,-9.3808],[119.3908,-9.3831],[119.3956,-9.3921],[119.3805,-9.4138],[119.3767,-9.4265],[119.3762,-9.4408],[119.3767,-9.4736],[119.3756,-9.4809],[119.3772,-9.5032],[119.384,-9.5015],[119.3872,-9.5055],[119.3846,-9.5126],[119.3917,-9.5222],[119.3953,-9.5247],[119.3954,-9.5333],[119.3929,-9.5406],[119.3971,-9.546],[119.4067,-9.549],[119.4136,-9.5624],[119.4064,-9.568],[119.3879,-9.5897],[119.3828,-9.5935],[119.3746,-9.5977],[119.3726,-9.6063],[119.3653,-9.6157],[119.3605,-9.6157],[119.3563,-9.6129],[119.3546,-9.618],[119.3404,-9.6238],[119.3335,-9.6184],[119.3296,-9.6229],[119.3172,-9.6496],[119.312,-9.6597],[119.303,-9.6736],[119.2947,-9.6793],[119.2855,-9.6831],[119.2776,-9.6845],[119.2706,-9.6805],[119.2647,-9.6786],[119.2603,-9.6795],[119.2456,-9.6854],[119.2405,-9.6887],[119.2342,-9.6899],[119.2243,-9.6839],[119.2159,-9.6773],[119.202,-9.6585],[119.1992,-9.6504],[119.1965,-9.6478],[119.1873,-9.6488],[119.1827,-9.6527],[119.1772,-9.6549],[119.1708,-9.6601],[119.1667,-9.6581],[119.1626,-9.6629],[119.1626,-9.6691],[119.1575,-9.6721],[119.1519,-9.6856],[119.1485,-9.6904],[119.1471,-9.6963],[119.1481,-9.7035],[119.1436,-9.7091],[119.1484,-9.7172],[119.1442,-9.7243],[119.1446,-9.73],[119.159,-9.7366],[119.1631,-9.7422],[119.1725,-9.7407],[119.1788,-9.7444],[119.1842,-9.7519],[119.1852,-9.7583],[119.1935,-9.7548],[119.1928,-9.7494],[119.1999,-9.7438],[119.2135,-9.7397],[119.2221,-9.7381],[119.2261,-9.7426],[119.2327,-9.7448],[119.2404,-9.7438],[119.2435,-9.7418],[119.2521,-9.747],[119.2588,-9.7459],[119.2761,-9.7446],[119.2835,-9.7454],[119.2868,-9.749],[119.2943,-9.7475],[119.3013,-9.7444],[119.3052,-9.7471],[119.3091,-9.7578],[119.3186,-9.7664],[119.3262,-9.7682],[119.3303,-9.7671],[119.3319,-9.7614],[119.336,-9.7583],[119.3473,-9.7589],[119.3516,-9.7606],[119.3574,-9.766],[119.3617,-9.7671],[119.3734,-9.7757],[119.3751,-9.7852],[119.3845,-9.7958],[119.3952,-9.7972],[119.4048,-9.7922],[119.4108,-9.7872],[119.409,-9.7805],[119.4112,-9.7695],[119.4183,-9.7604],[119.4239,-9.758],[119.4398,-9.7551],[119.4458,-9.7554],[119.4481,-9.7479],[119.4519,-9.7443],[119.4577,-9.7416],[119.4715,-9.7412],[119.482,-9.7446],[119.4898,-9.7518],[119.4968,-9.7544],[119.506,-9.7551],[119.5101,-9.7582],[119.5133,-9.7576],[119.5193,-9.7608],[119.5241,-9.7657],[119.5299,-9.7664],[119.5381,-9.7637],[119.543,-9.7527]]}},{"type":"Feature","properties":{"mhid":"1332:302","alt_name":"KABUPATEN SUMBA TIMUR","latitude":-9.88333,"longitude":120.25,"sample_value":446},"geometry":{"type":"LineString","coordinates":[[120.1158,-10.3347],[120.1228,-10.3333],[120.1261,-10.3274],[120.12,-10.3258],[120.1096,-10.3295],[120.1102,-10.3345],[120.1158,-10.3347]]}},{"type":"Feature","properties":{"mhid":"1332:302","alt_name":"KABUPATEN SUMBA TIMUR","latitude":-9.88333,"longitude":120.25,"sample_value":446},"geometry":{"type":"LineString","coordinates":[[120.2126,-10.3046],[120.2099,-10.3038],[120.1939,-10.3094],[120.1804,-10.3124],[120.1712,-10.3167],[120.1749,-10.3209],[120.1836,-10.3236],[120.1905,-10.324],[120.2017,-10.3224],[120.2062,-10.3194],[120.2117,-10.3185],[120.2135,-10.3157],[120.2126,-10.3046]]}},{"type":"Feature","properties":{"mhid":"1332:302","alt_name":"KABUPATEN SUMBA TIMUR","latitude":-9.88333,"longitude":120.25,"sample_value":446},"geometry":{"type":"LineString","coordinates":[[119.6748,-9.8287],[119.6808,-9.8338],[119.6807,-9.8368],[119.6875,-9.8466],[119.6933,-9.8435],[119.6976,-9.8444],[119.6992,-9.85],[119.7032,-9.8565],[119.7077,-9.8566],[119.7077,-9.8629],[119.7139,-9.8651],[119.7218,-9.866],[119.7285,-9.8715],[119.7374,-9.8742],[119.7456,-9.8828],[119.7536,-9.8888],[119.7557,-9.8883],[119.7681,-9.8965],[119.7723,-9.9023],[119.7775,-9.9052],[119.7801,-9.9118],[119.778,-9.9138],[119.7844,-9.9219],[119.7948,-9.9192],[119.8004,-9.9189],[119.8018,-9.9152],[119.8117,-9.9156],[119.8139,-9.9198],[119.8197,-9.9226],[119.8248,-9.9199],[119.8292,-9.9266],[119.8355,-9.9281],[119.8422,-9.9271],[119.844,-9.9236],[119.8491,-9.9205],[119.857,-9.9206],[119.8629,-9.9223],[119.8715,-9.9298],[119.8739,-9.9349],[119.8722,-9.9419],[119.8691,-9.9431],[119.8719,-9.95],[119.8827,-9.9583],[119.8948,-9.9544],[119.8991,-9.9481],[119.905,-9.9502],[119.9054,-9.9606],[119.903,-9.9623],[119.9026,-9.9704],[119.9089,-9.9753],[119.9313,-9.9809],[119.9363,-9.9795],[119.9377,-9.9761],[119.9422,-9.9736],[119.9481,-9.9733],[119.9539,-9.9797],[119.9542,-9.9844],[119.9515,-9.9956],[119.9474,-9.9987],[119.9519,-10.0035],[119.9651,-10.0109],[119.9887,-10.0313],[119.9955,-10.0385],[119.9993,-10.0449],[119.9987,-10.0501],[120.0003,-10.055],[120.0084,-10.062],[120.0085,-10.0653],[120.0188,-10.0795],[120.0229,-10.0929],[120.0223,-10.0998],[120.0132,-10.1029],[120.0071,-10.1179],[120.0112,-10.1219],[120.0149,-10.1228],[120.0354,-10.1205],[120.0457,-10.1255],[120.0589,-10.1374],[120.0844,-10.168],[120.0844,-10.1761],[120.09,-10.1782],[120.093,-10.1755],[120.1041,-10.1746],[120.1079,-10.1762],[120.1263,-10.1918],[120.1321,-10.202],[120.1393,-10.2086],[120.1493,-10.224],[120.1637,-10.2329],[120.1656,-10.2391],[120.1718,-10.2317],[120.1796,-10.2292],[120.1843,-10.2302],[120.1936,-10.2355],[120.2009,-10.2414],[120.2122,-10.2531],[120.23,-10.2506],[120.2342,-10.2469],[120.2405,-10.2443],[120.2472,-10.2439],[120.2686,-10.2457],[120.2803,-10.2501],[120.2955,-10.2577],[120.2982,-10.2572],[120.3034,-10.2516],[120.3064,-10.2509],[120.3203,-10.2537],[120.3265,-10.2515],[120.3342,-10.2519],[120.3462,-10.2486],[120.3546,-10.2507],[120.3661,-10.2558],[120.3908,-10.2696],[120.4065,-10.2813],[120.4178,-10.291],[120.432,-10.3017],[120.4371,-10.307],[120.4436,-10.3069],[120.4542,-10.3126],[120.4582,-10.3081],[120.4637,-10.3054],[120.4691,-10.3053],[120.473,-10.3019],[120.4776,-10.2853],[120.479,-10.2741],[120.4869,-10.262],[120.5007,-10.2588],[120.5078,-10.2557],[120.5144,-10.2557],[120.515,-10.2502],[120.5191,-10.2458],[120.5319,-10.24],[120.5519,-10.2378],[120.5606,-10.2379],[120.5709,-10.2394],[120.5853,-10.2492],[120.591,-10.2514],[120.6055,-10.2533],[120.6139,-10.2528],[120.62,-10.2508],[120.626,-10.2452],[120.6301,-10.2367],[120.6357,-10.2315],[120.6437,-10.2283],[120.6551,-10.2284],[120.6663,-10.2299],[120.6714,-10.2296],[120.6853,-10.2244],[120.6879,-10.2197],[120.6969,-10.2145],[120.7033,-10.209],[120.7184,-10.204],[120.7297,-10.1944],[120.7392,-10.1902],[120.7425,-10.1865],[120.7457,-10.1744],[120.7516,-10.1619],[120.7571,-10.1547],[120.7663,-10.1483],[120.7698,-10.1441],[120.7882,-10.1352],[120.8065,-10.1306],[120.8162,-10.1245],[120.8175,-10.1188],[120.8236,-10.1141],[120.8385,-10.097],[120.8412,-10.0876],[120.8375,-10.0841],[120.8438,-10.0717],[120.8451,-10.0596],[120.8444,-10.0569],[120.8465,-10.0452],[120.847,-10.0365],[120.8459,-10.0288],[120.8385,-10.0145],[120.8308,-10.0089],[120.8324,-10.0055],[120.8301,-10.0011],[120.8231,-9.9932],[120.8159,-9.9772],[120.8096,-9.9714],[120.7973,-9.963],[120.7847,-9.9487],[120.7763,-9.9451],[120.7656,-9.9385],[120.7594,-9.9322],[120.747,-9.9241],[120.7395,-9.922],[120.7374,-9.9245],[120.7291,-9.923],[120.7242,-9.9191],[120.7199,-9.9181],[120.7138,-9.9211],[120.709,-9.9188],[120.7043,-9.911],[120.6944,-9.9036],[120.6856,-9.9036],[120.6792,-9.9002],[120.6706,-9.8885],[120.6678,-9.8826],[120.6604,-9.8732],[120.6583,-9.868],[120.6504,-9.8543],[120.646,-9.8451],[120.6361,-9.8298],[120.6302,-9.8191],[120.6276,-9.8091],[120.6276,-9.7971],[120.6246,-9.7886],[120.6167,-9.7783],[120.6086,-9.7734],[120.6056,-9.769],[120.6017,-9.7549],[120.6006,-9.7423],[120.5966,-9.731],[120.5916,-9.7283],[120.5825,-9.7273],[120.577,-9.7243],[120.5739,-9.7138],[120.5694,-9.7069],[120.5579,-9.6958],[120.5413,-9.6871],[120.5372,-9.6869],[120.5317,-9.6898],[120.522,-9.692],[120.5162,-9.6892],[120.5067,-9.6873],[120.503,-9.6844],[120.4985,-9.6778],[120.496,-9.6706],[120.4931,-9.6573],[120.481,-9.6314],[120.476,-9.6235],[120.4681,-9.6166],[120.4639,-9.6147],[120.4597,-9.6159],[120.4431,-9.6245],[120.42,-9.63],[120.4059,-9.6358],[120.3878,-9.638],[120.3849,-9.6427],[120.3856,-9.6483],[120.3792,-9.6474],[120.3778,-9.6435],[120.3729,-9.6424],[120.3646,-9.6441],[120.3506,-9.651],[120.3467,-9.6571],[120.3364,-9.6636],[120.3273,-9.6665],[120.3201,-9.6716],[120.3109,-9.665],[120.3095,-9.6603],[120.3056,-9.6575],[120.3021,-9.6458],[120.2989,-9.6419],[120.2867,-9.6402],[120.2781,-9.6408],[120.2761,-9.638],[120.269,-9.6424],[120.2609,-9.6425],[120.2581,-9.6397],[120.2547,-9.6435],[120.2449,-9.639],[120.2452,-9.6337],[120.2428,-9.6254],[120.2368,-9.6152],[120.2315,-9.6],[120.2283,-9.5863],[120.229,-9.5651],[120.2269,-9.5422],[120.2241,-9.5289],[120.2187,-9.5128],[120.2139,-9.5048],[120.2104,-9.4905],[120.2035,-9.488],[120.1957,-9.4834],[120.1924,-9.4736],[120.1871,-9.469],[120.1818,-9.4679],[120.1742,-9.4697],[120.1647,-9.4698],[120.1414,-9.4821],[120.1329,-9.4849],[120.1239,-9.4852],[120.1154,-9.4808],[120.1111,-9.482],[120.1052,-9.4782],[120.093,-9.4748],[120.0845,-9.4697],[120.0779,-9.4641],[120.0683,-9.4497],[120.0615,-9.4454],[120.0578,-9.4381],[120.0492,-9.4296],[120.0442,-9.4214],[120.0389,-9.4089],[120.0355,-9.4045],[120.0352,-9.3989],[120.0287,-9.3962],[120.0236,-9.3887],[120.0114,-9.3857],[120.0065,-9.3817],[119.9994,-9.3731],[119.9958,-9.363],[119.9916,-9.3551],[119.9846,-9.3491],[119.9763,-9.339],[119.9612,-9.3254],[119.9536,-9.3157],[119.9465,-9.3022],[119.9431,-9.2856],[119.9396,-9.2793],[119.9352,-9.2762],[119.9221,-9.285],[119.9194,-9.2922],[119.8914,-9.3263],[119.8825,-9.3339],[119.8648,-9.3435],[119.8696,-9.3557],[119.869,-9.3573],[119.8754,-9.3672],[119.8764,-9.3713],[119.8868,-9.3734],[119.8885,-9.3759],[119.9053,-9.3795],[119.9088,-9.3827],[119.9079,-9.3864],[119.9117,-9.3913],[119.9098,-9.3999],[119.9113,-9.4026],[119.9069,-9.4069],[119.9036,-9.4127],[119.9016,-9.422],[119.8965,-9.4317],[119.9037,-9.4493],[119.9072,-9.4558],[119.9166,-9.4657],[119.9152,-9.4745],[119.9238,-9.481],[119.9233,-9.4894],[119.9188,-9.4875],[119.9176,-9.4934],[119.9113,-9.4973],[119.9123,-9.5006],[119.9109,-9.5108],[119.8963,-9.5166],[119.8876,-9.5126],[119.886,-9.5188],[119.8828,-9.5231],[119.8754,-9.5281],[119.8727,-9.535],[119.8748,-9.5434],[119.8651,-9.5531],[119.858,-9.5566],[119.8591,-9.5622],[119.8526,-9.568],[119.8535,-9.5733],[119.8476,-9.5734],[119.8421,-9.5767],[119.8397,-9.5824],[119.8399,-9.588],[119.8451,-9.5949],[119.8456,-9.6014],[119.8498,-9.6075],[119.8506,-9.6127],[119.8417,-9.6179],[119.845,-9.6223],[119.8469,-9.6345],[119.8459,-9.6477],[119.8441,-9.6532],[119.8447,-9.6615],[119.8384,-9.6687],[119.8308,-9.6695],[119.8121,-9.6664],[119.7869,-9.6698],[119.7717,-9.6752],[119.7648,-9.6763],[119.7592,-9.6753],[119.7463,-9.6702],[119.7361,-9.6764],[119.7287,-9.6837],[119.7253,-9.691],[119.7275,-9.7078],[119.7278,-9.7155],[119.7325,-9.7179],[119.7384,-9.7272],[119.7412,-9.7265],[119.7497,-9.7352],[119.7419,-9.7447],[119.7378,-9.7561],[119.7369,-9.779],[119.7346,-9.7868],[119.7342,-9.7957],[119.736,-9.8068],[119.7317,-9.8227],[119.731,-9.8347],[119.732,-9.8405],[119.7252,-9.8433],[119.7197,-9.8436],[119.7151,-9.8388],[119.6914,-9.8336],[119.6857,-9.8302],[119.6748,-9.8287]]}},{"type":"Feature","properties":{"mhid":"1332:303","alt_name":"KABUPATEN KUPANG","latitude":-9.91667,"longitude":123.83333,"sample_value":112},"geometry":{"type":"LineString","coordinates":[[123.2869,-10.3082],[123.2782,-10.3081],[123.2699,-10.3167],[123.2735,-10.3203],[123.2869,-10.3082]]}},{"type":"Feature","properties":{"mhid":"1332:303","alt_name":"KABUPATEN KUPANG","latitude":-9.91667,"longitude":123.83333,"sample_value":112},"geometry":{"type":"LineString","coordinates":[[123.4328,-10.2325],[123.4268,-10.2386],[123.4286,-10.2461],[123.4342,-10.2472],[123.4406,-10.2419],[123.4393,-10.2372],[123.4328,-10.2325]]}},{"type":"Feature","properties":{"mhid":"1332:303","alt_name":"KABUPATEN KUPANG","latitude":-9.91667,"longitude":123.83333,"sample_value":112},"geometry":{"type":"LineString","coordinates":[[123.4525,-10.1146],[123.4433,-10.1169],[123.4351,-10.1228],[123.4261,-10.1267],[123.4201,-10.1275],[123.4142,-10.1301],[123.4103,-10.1291],[123.4035,-10.1325],[123.3966,-10.1339],[123.3951,-10.1368],[123.3892,-10.1592],[123.3886,-10.1642],[123.3845,-10.1735],[123.3819,-10.1749],[123.3731,-10.1921],[123.3679,-10.2037],[123.3596,-10.2147],[123.349,-10.2269],[123.3315,-10.2323],[123.3238,-10.2367],[123.3202,-10.2403],[123.3199,-10.2444],[123.3009,-10.2712],[123.3093,-10.2821],[123.3065,-10.2891],[123.3073,-10.2939],[123.305,-10.3007],[123.3054,-10.3118],[123.3095,-10.3178],[123.3108,-10.3233],[123.3158,-10.3326],[123.323,-10.3395],[123.3282,-10.3386],[123.3319,-10.3304],[123.3316,-10.3275],[123.3364,-10.3164],[123.3468,-10.3052],[123.3549,-10.3067],[123.3586,-10.305],[123.3668,-10.3045],[123.3729,-10.3062],[123.3792,-10.3112],[123.3801,-10.3209],[123.379,-10.3237],[123.382,-10.3288],[123.3819,-10.3349],[123.4028,-10.3391],[123.4106,-10.3325],[123.4145,-10.3213],[123.4148,-10.3137],[123.4093,-10.3131],[123.3997,-10.3072],[123.3964,-10.3014],[123.3955,-10.2922],[123.3971,-10.2902],[123.4042,-10.2952],[123.4103,-10.2969],[123.4123,-10.2933],[123.4186,-10.2963],[123.4201,-10.2902],[123.4164,-10.2841],[123.4124,-10.2738],[123.4185,-10.2602],[123.4173,-10.256],[123.4124,-10.2529],[123.4161,-10.2499],[123.4107,-10.2399],[123.406,-10.2402],[123.4055,-10.2365],[123.4001,-10.2381],[123.3943,-10.2325],[123.3927,-10.2237],[123.3953,-10.2163],[123.3926,-10.2094],[123.3984,-10.203],[123.4024,-10.2067],[123.4136,-10.2106],[123.421,-10.2082],[123.4202,-10.216],[123.4172,-10.2282],[123.4238,-10.2309],[123.4318,-10.2286],[123.4466,-10.2151],[123.4485,-10.2176],[123.4535,-10.2163],[123.4544,-10.2096],[123.4523,-10.205],[123.4632,-10.1944],[123.468,-10.1954],[123.483,-10.1848],[123.4891,-10.1828],[123.5024,-10.1828],[123.5066,-10.1737],[123.506,-10.1638],[123.5018,-10.1587],[123.4943,-10.1566],[123.4907,-10.1537],[123.4817,-10.1632],[123.4769,-10.1649],[123.4699,-10.1626],[123.4668,-10.158],[123.468,-10.1527],[123.4643,-10.1449],[123.4648,-10.1373],[123.4624,-10.129],[123.4589,-10.1217],[123.4525,-10.1146]]}},{"type":"Feature","properties":{"mhid":"1332:303","alt_name":"KABUPATEN KUPANG","latitude":-9.91667,"longitude":123.83333,"sample_value":112},"geometry":{"type":"LineString","coordinates":[[123.5568,-10.0853],[123.5531,-10.0899],[123.5583,-10.095],[123.5598,-10.0882],[123.5568,-10.0853]]}},{"type":"Feature","properties":{"mhid":"1332:303","alt_name":"KABUPATEN KUPANG","latitude":-9.91667,"longitude":123.83333,"sample_value":112},"geometry":{"type":"LineString","coordinates":[[124.0959,-9.406],[124.0883,-9.3949],[124.0767,-9.382],[124.0702,-9.3697],[124.0643,-9.3673],[124.0623,-9.361],[124.0447,-9.3459],[124.0443,-9.3364],[124.04,-9.3368],[124.0325,-9.3439],[124.0128,-9.3457],[124.0087,-9.3431],[123.9952,-9.3421],[123.9809,-9.3519],[123.9762,-9.3612],[123.9717,-9.3645],[123.9681,-9.3786],[123.964,-9.3858],[123.9576,-9.3907],[123.9458,-9.3935],[123.9403,-9.4011],[123.9406,-9.4091],[123.9389,-9.4147],[123.9327,-9.4228],[123.921,-9.4251],[123.9153,-9.4287],[123.9061,-9.427],[123.8998,-9.4299],[123.8963,-9.4358],[123.897,-9.444],[123.8938,-9.455],[123.8865,-9.4636],[123.8766,-9.4699],[123.8702,-9.4756],[123.8575,-9.4772],[123.8515,-9.4747],[123.848,-9.4756],[123.8412,-9.485],[123.8335,-9.4898],[123.8287,-9.4955],[123.8134,-9.4983],[123.8038,-9.4925],[123.795,-9.4909],[123.7931,-9.4988],[123.795,-9.5049],[123.795,-9.5159],[123.7913,-9.523],[123.7902,-9.5337],[123.7882,-9.5411],[123.781,-9.5479],[123.7709,-9.5516],[123.7597,-9.5532],[123.7554,-9.5559],[123.7487,-9.5628],[123.7435,-9.5631],[123.7337,-9.5675],[123.7319,-9.5744],[123.7218,-9.5918],[123.7081,-9.5991],[123.7045,-9.6037],[123.7001,-9.6048],[123.6948,-9.6158],[123.6827,-9.6248],[123.6741,-9.6285],[123.672,-9.6334],[123.6716,-9.6488],[123.6783,-9.6719],[123.6831,-9.6933],[123.6843,-9.7015],[123.6827,-9.7079],[123.6837,-9.7151],[123.6809,-9.7191],[123.6823,-9.7357],[123.682,-9.7404],[123.6787,-9.7534],[123.6757,-9.7573],[123.6709,-9.7594],[123.6615,-9.7612],[123.6583,-9.7651],[123.6435,-9.7715],[123.6429,-9.775],[123.6482,-9.7802],[123.6532,-9.7826],[123.6556,-9.789],[123.6619,-9.7932],[123.6667,-9.8052],[123.6697,-9.8199],[123.6702,-9.8278],[123.6692,-9.8365],[123.6688,-9.8504],[123.6643,-9.8645],[123.6609,-9.87],[123.6557,-9.8743],[123.6545,-9.8785],[123.6501,-9.8836],[123.646,-9.8909],[123.6408,-9.8952],[123.6333,-9.898],[123.6297,-9.8972],[123.6249,-9.8915],[123.6198,-9.8913],[123.6157,-9.8978],[123.601,-9.8982],[123.5927,-9.905],[123.5905,-9.9101],[123.5836,-9.9164],[123.5813,-9.925],[123.5854,-9.9355],[123.5819,-9.9413],[123.5785,-9.9433],[123.5823,-9.9553],[123.5859,-9.9729],[123.5863,-9.9845],[123.5887,-9.9931],[123.586,-9.9989],[123.5847,-10.0065],[123.5809,-10.0177],[123.5863,-10.0346],[123.5914,-10.0406],[123.5963,-10.0443],[123.6078,-10.0453],[123.6116,-10.0344],[123.6217,-10.0198],[123.6285,-10.0177],[123.6379,-10.0174],[123.6452,-10.0121],[123.654,-10.0095],[123.6653,-10.018],[123.6773,-10.0176],[123.6793,-10.0205],[123.6888,-10.0156],[123.692,-10.0111],[123.6956,-10.0101],[123.7011,-10.0133],[123.7022,-10.0163],[123.708,-10.0189],[123.7148,-10.024],[123.7238,-10.0273],[123.7302,-10.0266],[123.7328,-10.0293],[123.7517,-10.0285],[123.763,-10.0341],[123.7711,-10.0434],[123.7681,-10.0462],[123.7684,-10.0519],[123.7629,-10.0535],[123.7585,-10.0665],[123.7582,-10.0719],[123.7523,-10.0805],[123.749,-10.0811],[123.7467,-10.0884],[123.7482,-10.0899],[123.7414,-10.0986],[123.7326,-10.1001],[123.7273,-10.1038],[123.718,-10.1059],[123.7153,-10.1022],[123.7025,-10.1085],[123.693,-10.1179],[123.6893,-10.1195],[123.6807,-10.1197],[123.6715,-10.1274],[123.6753,-10.1325],[123.6829,-10.1397],[123.68,-10.1468],[123.6826,-10.1511],[123.667,-10.1536],[123.6625,-10.1589],[123.6671,-10.1662],[123.6763,-10.1647],[123.6823,-10.165],[123.6834,-10.168],[123.6808,-10.1765],[123.6746,-10.1767],[123.67,-10.184],[123.6623,-10.1855],[123.6587,-10.1905],[123.6554,-10.187],[123.6509,-10.1885],[123.651,-10.1924],[123.6547,-10.2036],[123.655,-10.2083],[123.6594,-10.2127],[123.663,-10.2208],[123.6676,-10.2221],[123.6685,-10.2269],[123.6574,-10.2253],[123.6491,-10.2207],[123.6395,-10.2178],[123.6335,-10.2255],[123.6201,-10.232],[123.6305,-10.2412],[123.6391,-10.2443],[123.6347,-10.2627],[123.6322,-10.2686],[123.6299,-10.285],[123.6252,-10.288],[123.6195,-10.2883],[123.6136,-10.2929],[123.6063,-10.2915],[123.5945,-10.2869],[123.5855,-10.2888],[123.5838,-10.2743],[123.5804,-10.2617],[123.5743,-10.25],[123.5708,-10.2465],[123.5742,-10.2342],[123.5785,-10.2243],[123.57,-10.224],[123.5637,-10.227],[123.5569,-10.2275],[123.5554,-10.2238],[123.5432,-10.214],[123.5342,-10.2083],[123.5283,-10.2099],[123.5276,-10.2152],[123.5244,-10.2179],[123.5152,-10.2201],[123.4888,-10.2241],[123.4894,-10.2357],[123.4884,-10.2438],[123.4903,-10.2521],[123.4975,-10.2646],[123.501,-10.2738],[123.4976,-10.2766],[123.4965,-10.283],[123.4908,-10.288],[123.4927,-10.2914],[123.4888,-10.2959],[123.4853,-10.2965],[123.4762,-10.317],[123.4674,-10.3216],[123.4622,-10.3281],[123.465,-10.3392],[123.4555,-10.3492],[123.4574,-10.3565],[123.4651,-10.3603],[123.4739,-10.359],[123.486,-10.3558],[123.4992,-10.3464],[123.5144,-10.3403],[123.5265,-10.332],[123.5327,-10.3292],[123.5459,-10.3277],[123.5542,-10.333],[123.5692,-10.3332],[123.5706,-10.339],[123.5762,-10.3448],[123.5859,-10.3456],[123.5944,-10.3492],[123.5997,-10.3536],[123.6067,-10.3678],[123.6114,-10.3701],[123.6136,-10.3664],[123.6221,-10.3584],[123.6282,-10.3552],[123.6353,-10.3559],[123.6492,-10.3508],[123.6612,-10.3496],[123.6714,-10.3511],[123.6808,-10.3536],[123.6817,-10.356],[123.6935,-10.3621],[123.6951,-10.3607],[123.7039,-10.3663],[123.7088,-10.3642],[123.7147,-10.3646],[123.7174,-10.3625],[123.7239,-10.3623],[123.732,-10.3588],[123.7404,-10.3577],[123.7529,-10.3543],[123.76,-10.3491],[123.7658,-10.3478],[123.7775,-10.3496],[123.7891,-10.3559],[123.7977,-10.3552],[123.8035,-10.3505],[123.8119,-10.3489],[123.8212,-10.3429],[123.8358,-10.3398],[123.8526,-10.3339],[123.8605,-10.3344],[123.8655,-10.3321],[123.8761,-10.3183],[123.8881,-10.3103],[123.8991,-10.3049],[123.9102,-10.3019],[123.9143,-10.298],[123.9265,-10.2948],[123.9349,-10.2946],[123.9414,-10.2973],[123.9464,-10.2936],[123.9471,-10.2876],[123.9494,-10.2838],[123.9585,-10.2785],[123.9646,-10.2761],[123.9758,-10.274],[123.9866,-10.2746],[123.9985,-10.277],[124.0166,-10.274],[124.0205,-10.2718],[124.0257,-10.263],[124.0269,-10.2549],[124.0299,-10.25],[124.0462,-10.2385],[124.0552,-10.2349],[124.0632,-10.2294],[124.0719,-10.2266],[124.0806,-10.2184],[124.0826,-10.2144],[124.079,-10.2101],[124.0808,-10.2037],[124.0842,-10.2005],[124.0965,-10.1919],[124.0993,-10.1874],[124.1004,-10.1808],[124.1136,-10.1749],[124.1217,-10.1696],[124.1393,-10.1614],[124.1511,-10.1582],[124.1707,-10.1555],[124.1813,-10.156],[124.1925,-10.1585],[124.202,-10.1624],[124.2089,-10.1612],[124.2199,-10.1629],[124.2264,-10.1567],[124.2276,-10.1518],[124.2259,-10.1447],[124.2191,-10.1462],[124.2148,-10.1427],[124.2157,-10.137],[124.2201,-10.1378],[124.2218,-10.1347],[124.2189,-10.1305],[124.215,-10.1299],[124.2113,-10.133],[124.2062,-10.1305],[124.2127,-10.124],[124.2153,-10.1192],[124.2114,-10.1113],[124.2019,-10.1097],[124.2024,-10.1028],[124.1995,-10.098],[124.208,-10.0904],[124.2079,-10.0855],[124.1958,-10.0783],[124.1877,-10.0695],[124.1816,-10.0582],[124.1764,-10.0556],[124.1619,-10.0427],[124.1566,-10.0429],[124.1504,-10.0395],[124.1426,-10.0235],[124.1432,-10.0187],[124.1504,-10.0174],[124.1609,-10.0215],[124.1649,-10.0178],[124.1557,-10.0112],[124.1497,-10.0088],[124.1483,-9.9998],[124.1457,-9.9947],[124.1359,-9.986],[124.1293,-9.9858],[124.125,-9.976],[124.1177,-9.9735],[124.1077,-9.975],[124.1021,-9.9736],[124.0998,-9.9765],[124.0957,-9.9756],[124.0947,-9.9713],[124.0882,-9.968],[124.0853,-9.9642],[124.0866,-9.9597],[124.0848,-9.9564],[124.0876,-9.9484],[124.0863,-9.9429],[124.0859,-9.9323],[124.0817,-9.9278],[124.0814,-9.9233],[124.0845,-9.9021],[124.0901,-9.8937],[124.0918,-9.8875],[124.0918,-9.8793],[124.0893,-9.874],[124.0909,-9.8603],[124.0852,-9.8432],[124.0861,-9.8363],[124.0852,-9.8284],[124.0911,-9.8197],[124.0939,-9.8089],[124.0916,-9.8001],[124.0837,-9.793],[124.076,-9.771],[124.0683,-9.7619],[124.0673,-9.7587],[124.0693,-9.7508],[124.0717,-9.7473],[124.0784,-9.7444],[124.0865,-9.7375],[124.0873,-9.7315],[124.0904,-9.7241],[124.0912,-9.7184],[124.09,-9.7133],[124.0859,-9.7127],[124.0853,-9.7079],[124.09,-9.7045],[124.0924,-9.6973],[124.0911,-9.6933],[124.0796,-9.6916],[124.0787,-9.6882],[124.0678,-9.6755],[124.0582,-9.6679],[124.0574,-9.6604],[124.0547,-9.6579],[124.0535,-9.6475],[124.0683,-9.6365],[124.0736,-9.6357],[124.0855,-9.6293],[124.0901,-9.6181],[124.0893,-9.6101],[124.0782,-9.5864],[124.085,-9.5817],[124.0952,-9.5803],[124.1038,-9.5711],[124.1094,-9.5688],[124.1129,-9.5644],[124.1169,-9.5557],[124.1212,-9.5527],[124.1377,-9.557],[124.1408,-9.5618],[124.148,-9.5649],[124.1517,-9.5613],[124.152,-9.5571],[124.1575,-9.5571],[124.1581,-9.5522],[124.154,-9.5425],[124.1535,-9.5362],[124.1461,-9.5328],[124.1432,-9.5291],[124.1432,-9.5215],[124.1418,-9.5158],[124.1351,-9.5074],[124.1353,-9.5042],[124.1307,-9.4988],[124.1291,-9.4947],[124.1239,-9.4932],[124.1188,-9.4874],[124.1171,-9.4826],[124.118,-9.4783],[124.1217,-9.4727],[124.132,-9.477],[124.1396,-9.4775],[124.1442,-9.4755],[124.1529,-9.4816],[124.1549,-9.4874],[124.1699,-9.4955],[124.174,-9.503],[124.177,-9.5034],[124.1855,-9.5114],[124.1934,-9.5084],[124.1954,-9.5037],[124.1905,-9.4933],[124.1899,-9.4832],[124.1855,-9.4806],[124.1835,-9.4749],[124.1783,-9.474],[124.1721,-9.4658],[124.1661,-9.4552],[124.1557,-9.4488],[124.1477,-9.4531],[124.1436,-9.4519],[124.1438,-9.4454],[124.1257,-9.4368],[124.1246,-9.4341],[124.1184,-9.4313],[124.1113,-9.4304],[124.1084,-9.4281],[124.1058,-9.4212],[124.1009,-9.4181],[124.0954,-9.4173],[124.0926,-9.4126],[124.0959,-9.406]]}},{"type":"Feature","properties":{"mhid":"1332:304","alt_name":"KABUPATEN TIMOR TENGAH SELATAN","latitude":-9.83333,"longitude":124.4,"sample_value":310},"geometry":{"type":"MultiLineString","coordinates":[[[124.1899,-9.4832],[124.1905,-9.4933],[124.1954,-9.5037],[124.1934,-9.5084],[124.1855,-9.5114],[124.177,-9.5034],[124.174,-9.503],[124.1699,-9.4955],[124.1549,-9.4874],[124.1529,-9.4816],[124.1442,-9.4755],[124.1396,-9.4775],[124.132,-9.477],[124.1217,-9.4727],[124.118,-9.4783],[124.1171,-9.4826],[124.1188,-9.4874],[124.1239,-9.4932],[124.1291,-9.4947],[124.1307,-9.4988],[124.1353,-9.5042],[124.1351,-9.5074],[124.1418,-9.5158],[124.1432,-9.5215],[124.1432,-9.5291],[124.1461,-9.5328],[124.1535,-9.5362],[124.154,-9.5425],[124.1581,-9.5522],[124.1575,-9.5571],[124.152,-9.5571],[124.1517,-9.5613],[124.148,-9.5649],[124.1408,-9.5618],[124.1377,-9.557],[124.1212,-9.5527],[124.1169,-9.5557],[124.1129,-9.5644],[124.1094,-9.5688],[124.1038,-9.5711],[124.0952,-9.5803],[124.085,-9.5817],[124.0782,-9.5864],[124.0893,-9.6101],[124.0901,-9.6181],[124.0855,-9.6293],[124.0736,-9.6357],[124.0683,-9.6365],[124.0535,-9.6475],[124.0547,-9.6579],[124.0574,-9.6604],[124.0582,-9.6679],[124.0678,-9.6755],[124.0787,-9.6882],[124.0796,-9.6916],[124.0911,-9.6933],[124.0924,-9.6973],[124.09,-9.7045],[124.0853,-9.7079],[124.0859,-9.7127],[124.09,-9.7133],[124.0912,-9.7184],[124.0904,-9.7241],[124.0873,-9.7315],[124.0865,-9.7375],[124.0784,-9.7444],[124.0717,-9.7473],[124.0693,-9.7508],[124.0673,-9.7587],[124.0683,-9.7619],[124.076,-9.771],[124.0837,-9.793],[124.0916,-9.8001],[124.0939,-9.8089],[124.0911,-9.8197],[124.0852,-9.8284],[124.0861,-9.8363],[124.0852,-9.8432],[124.0909,-9.8603],[124.0893,-9.874],[124.0918,-9.8793],[124.0918,-9.8875],[124.0901,-9.8937],[124.0845,-9.9021],[124.0814,-9.9233],[124.0817,-9.9278],[124.0859,-9.9323],[124.0863,-9.9429],[124.0876,-9.9484],[124.0848,-9.9564],[124.0866,-9.9597],[124.0853,-9.9642],[124.0882,-9.968],[124.0947,-9.9713],[124.0957,-9.9756],[124.0998,-9.9765],[124.1021,-9.9736],[124.1077,-9.975],[124.1177,-9.9735],[124.125,-9.976],[124.1293,-9.9858],[124.1359,-9.986],[124.1457,-9.9947],[124.1483,-9.9998],[124.1497,-10.0088],[124.1557,-10.0112],[124.1649,-10.0178],[124.1609,-10.0215],[124.1504,-10.0174],[124.1432,-10.0187],[124.1426,-10.0235],[124.1504,-10.0395],[124.1566,-10.0429],[124.1619,-10.0427],[124.1764,-10.0556],[124.1816,-10.0582],[124.1877,-10.0695],[124.1958,-10.0783],[124.2079,-10.0855],[124.208,-10.0904],[124.1995,-10.098],[124.2024,-10.1028],[124.2019,-10.1097],[124.2114,-10.1113],[124.2153,-10.1192],[124.2127,-10.124],[124.2062,-10.1305],[124.2113,-10.133],[124.215,-10.1299],[124.2189,-10.1305],[124.2218,-10.1347],[124.2201,-10.1378],[124.2157,-10.137],[124.2148,-10.1427],[124.2191,-10.1462],[124.2259,-10.1447],[124.2276,-10.1518],[124.2264,-10.1567],[124.2199,-10.1629],[124.2617,-10.1668],[124.3024,-10.1689],[124.3372,-10.1722],[124.3385,-10.1692],[124.3493,-10.1727],[124.3844,-10.1713],[124.3957,-10.1697],[124.409,-10.1645],[124.4222,-10.1572],[124.4426,-10.1442],[124.4643,-10.1273],[124.4777,-10.1216],[124.4875,-10.1118],[124.4897,-10.1073],[124.4978,-10.1029],[124.5087,-10.0916],[124.5188,-10.0754],[124.5255,-10.062],[124.5281,-10.0539],[124.5299,-10.0405],[124.5324,-10.0304],[124.5373,-10.0217],[124.5479,-10.011],[124.553,-10.007],[124.566,-10.004],[124.5836,-10.003],[124.5897,-9.9989],[124.5953,-9.9886],[124.6039,-9.9789],[124.6168,-9.9708],[124.6231,-9.9657],[124.632,-9.9626],[124.6378,-9.9592],[124.6412,-9.9552],[124.6514,-9.9509],[124.6568,-9.9463],[124.6638,-9.9307],[124.6683,-9.9244],[124.6742,-9.9195],[124.6833,-9.9213],[124.6894,-9.9176],[124.6979,-9.9147],[124.7149,-9.9026],[124.7235,-9.8948],[124.7321,-9.8911],[124.7352,-9.8879],[124.7448,-9.8854],[124.7508,-9.8816],[124.753,-9.8764],[124.7545,-9.8658],[124.7633,-9.8486],[124.7669,-9.8447],[124.7738,-9.8414],[124.781,-9.8266],[124.7863,-9.8177],[124.8001,-9.8003],[124.8096,-9.7919],[124.8081,-9.7895],[124.8093,-9.7806],[124.7996,-9.7742],[124.7971,-9.7645],[124.7994,-9.756],[124.7988,-9.7449],[124.8061,-9.7254],[124.8096,-9.7035],[124.8144,-9.6838],[124.8213,-9.669],[124.8208,-9.658],[124.8156,-9.6548],[124.8083,-9.6539],[124.8037,-9.6513],[124.8016,-9.6495],[124.7987,-9.6449],[124.7929,-9.6378],[124.7929,-9.6379],[124.7932,-9.6363],[124.7925,-9.6343],[124.8003,-9.6179],[124.7982,-9.6144],[124.7928,-9.6107],[124.7883,-9.6002],[124.7777,-9.5968],[124.7742,-9.5984],[124.765,-9.5971],[124.7577,-9.6021],[124.7496,-9.6141],[124.7432,-9.6206],[124.7321,-9.6292],[124.7277,-9.6293],[124.7164,-9.6384],[124.7089,-9.6379],[124.705,-9.6361],[124.7009,-9.6289],[124.6928,-9.6321],[124.685,-9.6304],[124.68,-9.6313],[124.6714,-9.6272],[124.6633,-9.6257],[124.6595,-9.6196],[124.6531,-9.6183],[124.6497,-9.6123],[124.6502,-9.6068],[124.6469,-9.598],[124.6425,-9.595],[124.6453,-9.5849],[124.6384,-9.5877],[124.6317,-9.5875],[124.627,-9.5944],[124.625,-9.6003],[124.6191,-9.6027],[124.6176,-9.6108],[124.6155,-9.6134],[124.6108,-9.6129],[124.6065,-9.6165],[124.599,-9.6192],[124.5819,-9.6163],[124.5758,-9.6194],[124.5726,-9.625],[124.5721,-9.6311],[124.5656,-9.6387],[124.5592,-9.6437],[124.5541,-9.6455],[124.5441,-9.6442],[124.5412,-9.6461],[124.5401,-9.6528],[124.531,-9.6602],[124.5256,-9.6616],[124.5198,-9.6607],[124.5171,-9.663],[124.5105,-9.6596],[124.5086,-9.656],[124.5025,-9.6534],[124.4966,-9.6478],[124.4916,-9.6451],[124.4755,-9.6411],[124.4611,-9.6367],[124.4563,-9.6326],[124.4551,-9.6254],[124.4559,-9.6147],[124.4515,-9.6178],[124.4389,-9.6084],[124.4327,-9.6052],[124.4243,-9.5943],[124.4226,-9.5977],[124.4093,-9.6],[124.4042,-9.5963],[124.3944,-9.5934],[124.3892,-9.5979],[124.3846,-9.595],[124.3727,-9.5904],[124.3675,-9.5924],[124.3618,-9.5971],[124.3544,-9.5878],[124.3426,-9.5869],[124.3346,-9.5888],[124.3296,-9.592],[124.3178,-9.5924],[124.3117,-9.5806],[124.3124,-9.5756],[124.3086,-9.5718],[124.3047,-9.5734],[124.2981,-9.568],[124.2886,-9.5685],[124.2849,-9.5674],[124.28,-9.5698],[124.2741,-9.5643],[124.2726,-9.5597],[124.2686,-9.5591],[124.2673,-9.553],[124.2537,-9.5506],[124.2475,-9.5468],[124.2406,-9.5457],[124.2364,-9.5432],[124.2314,-9.5465],[124.2295,-9.5587],[124.2245,-9.5585],[124.2232,-9.5531],[124.2167,-9.5469],[124.2132,-9.5455],[124.2148,-9.5382],[124.2222,-9.5309],[124.2313,-9.5265],[124.238,-9.5265],[124.2339,-9.5183],[124.2292,-9.5181],[124.2229,-9.5113],[124.2233,-9.5065],[124.2098,-9.5002],[124.2063,-9.4918],[124.2027,-9.4863],[124.1899,-9.4832]],[[124.275,-9.8627],[124.2793,-9.8575],[124.2816,-9.8588],[124.2825,-9.8655],[124.275,-9.8627]]]}},{"type":"Feature","properties":{"mhid":"1332:306","alt_name":"KABUPATEN TIMOR TENGAH UTARA","latitude":-9.33136,"longitude":124.51904,"sample_value":323},"geometry":{"type":"LineString","coordinates":[[124.7924,-9.0182],[124.7854,-9.0191],[124.78,-9.0261],[124.7732,-9.0318],[124.7658,-9.0327],[124.7599,-9.0374],[124.7569,-9.0418],[124.7298,-9.0588],[124.7245,-9.0585],[124.7176,-9.0515],[124.7061,-9.0506],[124.6974,-9.0536],[124.6945,-9.0604],[124.6936,-9.0677],[124.6903,-9.0833],[124.6872,-9.0922],[124.6816,-9.1034],[124.6771,-9.1078],[124.6679,-9.1205],[124.6587,-9.1253],[124.6492,-9.124],[124.6386,-9.1289],[124.6333,-9.1343],[124.6265,-9.1441],[124.6159,-9.1534],[124.6095,-9.1557],[124.6004,-9.157],[124.5874,-9.1616],[124.5783,-9.1626],[124.5727,-9.1644],[124.5663,-9.1734],[124.5612,-9.1778],[124.5557,-9.1787],[124.5524,-9.177],[124.551,-9.1725],[124.5356,-9.1787],[124.5312,-9.1861],[124.5275,-9.1861],[124.5061,-9.1761],[124.5017,-9.1762],[124.4976,-9.1792],[124.4917,-9.1779],[124.4878,-9.173],[124.4811,-9.172],[124.478,-9.1757],[124.479,-9.1866],[124.4808,-9.1925],[124.478,-9.1997],[124.4689,-9.2078],[124.4661,-9.224],[124.4685,-9.2281],[124.4657,-9.2327],[124.4673,-9.2383],[124.4645,-9.2424],[124.4649,-9.2498],[124.4621,-9.2508],[124.4582,-9.2619],[124.4545,-9.2658],[124.4561,-9.2751],[124.4554,-9.2837],[124.4584,-9.2898],[124.4621,-9.2936],[124.4627,-9.2991],[124.459,-9.3051],[124.4533,-9.3086],[124.4467,-9.3063],[124.4447,-9.311],[124.4399,-9.315],[124.44,-9.3235],[124.4356,-9.3349],[124.4329,-9.3315],[124.4271,-9.3318],[124.4219,-9.3363],[124.414,-9.3359],[124.4045,-9.3399],[124.4021,-9.3504],[124.3978,-9.3549],[124.3881,-9.3607],[124.3818,-9.3568],[124.3787,-9.3611],[124.3789,-9.3684],[124.3742,-9.3767],[124.3781,-9.3792],[124.3819,-9.3905],[124.3804,-9.3968],[124.3692,-9.4038],[124.3739,-9.4087],[124.374,-9.412],[124.3668,-9.4195],[124.3574,-9.4184],[124.3498,-9.4237],[124.3482,-9.434],[124.352,-9.4408],[124.3621,-9.4461],[124.3622,-9.4512],[124.365,-9.4589],[124.3566,-9.464],[124.3549,-9.4694],[124.3569,-9.4718],[124.3553,-9.4766],[124.3566,-9.4818],[124.3548,-9.4852],[124.3497,-9.4856],[124.3422,-9.4828],[124.3369,-9.4868],[124.3322,-9.4856],[124.3227,-9.4909],[124.3162,-9.4959],[124.3012,-9.4937],[124.2961,-9.5026],[124.2869,-9.5037],[124.2812,-9.5014],[124.2782,-9.4964],[124.2796,-9.4892],[124.2824,-9.4853],[124.2832,-9.4795],[124.2882,-9.4725],[124.2869,-9.4638],[124.2838,-9.457],[124.287,-9.4512],[124.2813,-9.4406],[124.2746,-9.4347],[124.2764,-9.4316],[124.2757,-9.4248],[124.2711,-9.4146],[124.2716,-9.4124],[124.2639,-9.4038],[124.261,-9.3957],[124.2521,-9.3923],[124.2453,-9.3843],[124.2393,-9.3819],[124.2344,-9.3744],[124.2302,-9.3754],[124.2166,-9.3657],[124.2109,-9.37],[124.2051,-9.3706],[124.2039,-9.3768],[124.2016,-9.3782],[124.1919,-9.3784],[124.1858,-9.3871],[124.1744,-9.3904],[124.168,-9.3964],[124.1716,-9.3993],[124.161,-9.4137],[124.1606,-9.4202],[124.1547,-9.4225],[124.1505,-9.4264],[124.1447,-9.4242],[124.1337,-9.4261],[124.1246,-9.4104],[124.1183,-9.4071],[124.1134,-9.4069],[124.1107,-9.41],[124.0985,-9.4091],[124.0959,-9.406],[124.0926,-9.4126],[124.0954,-9.4173],[124.1009,-9.4181],[124.1058,-9.4212],[124.1084,-9.4281],[124.1113,-9.4304],[124.1184,-9.4313],[124.1246,-9.4341],[124.1257,-9.4368],[124.1438,-9.4454],[124.1436,-9.4519],[124.1477,-9.4531],[124.1557,-9.4488],[124.1661,-9.4552],[124.1721,-9.4658],[124.1783,-9.474],[124.1835,-9.4749],[124.1855,-9.4806],[124.1899,-9.4832],[124.2027,-9.4863],[124.2063,-9.4918],[124.2098,-9.5002],[124.2233,-9.5065],[124.2229,-9.5113],[124.2292,-9.5181],[124.2339,-9.5183],[124.238,-9.5265],[124.2313,-9.5265],[124.2222,-9.5309],[124.2148,-9.5382],[124.2132,-9.5455],[124.2167,-9.5469],[124.2232,-9.5531],[124.2245,-9.5585],[124.2295,-9.5587],[124.2314,-9.5465],[124.2364,-9.5432],[124.2406,-9.5457],[124.2475,-9.5468],[124.2537,-9.5506],[124.2673,-9.553],[124.2686,-9.5591],[124.2726,-9.5597],[124.2741,-9.5643],[124.28,-9.5698],[124.2849,-9.5674],[124.2886,-9.5685],[124.2981,-9.568],[124.3047,-9.5734],[124.3086,-9.5718],[124.3124,-9.5756],[124.3117,-9.5806],[124.3178,-9.5924],[124.3296,-9.592],[124.3346,-9.5888],[124.3426,-9.5869],[124.3544,-9.5878],[124.3618,-9.5971],[124.3675,-9.5924],[124.3727,-9.5904],[124.3846,-9.595],[124.3892,-9.5979],[124.3944,-9.5934],[124.4042,-9.5963],[124.4093,-9.6],[124.4226,-9.5977],[124.4243,-9.5943],[124.4327,-9.6052],[124.4389,-9.6084],[124.4515,-9.6178],[124.4559,-9.6147],[124.4551,-9.6254],[124.4563,-9.6326],[124.4611,-9.6367],[124.4755,-9.6411],[124.4916,-9.6451],[124.4966,-9.6478],[124.5025,-9.6534],[124.5086,-9.656],[124.5105,-9.6596],[124.5171,-9.663],[124.5198,-9.6607],[124.5256,-9.6616],[124.531,-9.6602],[124.5401,-9.6528],[124.5412,-9.6461],[124.5441,-9.6442],[124.5541,-9.6455],[124.5592,-9.6437],[124.5656,-9.6387],[124.5721,-9.6311],[124.5726,-9.625],[124.5758,-9.6194],[124.5819,-9.6163],[124.599,-9.6192],[124.6065,-9.6165],[124.6108,-9.6129],[124.6155,-9.6134],[124.6176,-9.6108],[124.6191,-9.6027],[124.625,-9.6003],[124.627,-9.5944],[124.6317,-9.5875],[124.6384,-9.5877],[124.6453,-9.5849],[124.6539,-9.5817],[124.6703,-9.5822],[124.6772,-9.5856],[124.684,-9.5847],[124.6927,-9.5863],[124.6995,-9.585],[124.7016,-9.5811],[124.7003,-9.5689],[124.7048,-9.5607],[124.7161,-9.5579],[124.7221,-9.5575],[124.7299,-9.5543],[124.734,-9.5548],[124.7366,-9.5617],[124.7389,-9.5621],[124.7473,-9.5626],[124.7534,-9.5638],[124.7569,-9.5577],[124.7519,-9.5545],[124.7541,-9.5431],[124.753,-9.5363],[124.742,-9.531],[124.7364,-9.5154],[124.7385,-9.5111],[124.7332,-9.5105],[124.7293,-9.5134],[124.7219,-9.5063],[124.7229,-9.5013],[124.7286,-9.5026],[124.7339,-9.5011],[124.7366,-9.4959],[124.7438,-9.4877],[124.7483,-9.4888],[124.7527,-9.4823],[124.7567,-9.4824],[124.7599,-9.4794],[124.7631,-9.4824],[124.7682,-9.4763],[124.7682,-9.4687],[124.7813,-9.4707],[124.7787,-9.464],[124.7798,-9.4593],[124.788,-9.4452],[124.7862,-9.4371],[124.7879,-9.4309],[124.7864,-9.4249],[124.7878,-9.4207],[124.7845,-9.4152],[124.7699,-9.4065],[124.7711,-9.4021],[124.7687,-9.3975],[124.7686,-9.3975],[124.7687,-9.3975],[124.7735,-9.3983],[124.778,-9.3964],[124.7881,-9.3858],[124.7944,-9.3829],[124.8001,-9.3836],[124.8026,-9.3811],[124.8052,-9.3738],[124.8087,-9.3687],[124.8054,-9.3613],[124.8023,-9.3585],[124.8017,-9.35],[124.8122,-9.3443],[124.8153,-9.3411],[124.82,-9.3391],[124.8239,-9.3401],[124.8304,-9.3354],[124.8383,-9.3338],[124.8425,-9.3287],[124.8458,-9.3183],[124.8427,-9.3059],[124.8467,-9.2982],[124.8472,-9.2935],[124.854,-9.2861],[124.8522,-9.2781],[124.8527,-9.272],[124.8505,-9.2651],[124.8509,-9.2582],[124.8489,-9.25],[124.8381,-9.2351],[124.8372,-9.2241],[124.8349,-9.2139],[124.8272,-9.2052],[124.8199,-9.1993],[124.8174,-9.188],[124.8209,-9.178],[124.8209,-9.1739],[124.8127,-9.1726],[124.8092,-9.1683],[124.8143,-9.1661],[124.8173,-9.1595],[124.8244,-9.1527],[124.8269,-9.1455],[124.8214,-9.1426],[124.8189,-9.1307],[124.8189,-9.125],[124.8166,-9.1058],[124.8136,-9.1016],[124.8156,-9.0909],[124.8202,-9.0763],[124.818,-9.0733],[124.8154,-9.0648],[124.812,-9.0636],[124.8045,-9.0545],[124.8025,-9.0472],[124.8056,-9.0413],[124.802,-9.0374],[124.8005,-9.0295],[124.7972,-9.0271],[124.7972,-9.0223],[124.7924,-9.0182]]}},{"type":"Feature","properties":{"mhid":"1332:306","alt_name":"KABUPATEN TIMOR TENGAH UTARA","latitude":-9.33136,"longitude":124.51904,"sample_value":323},"geometry":{"type":"LineString","coordinates":[[124.5288,-8.2133],[124.5283,-8.2113],[124.5187,-8.2135],[124.5196,-8.2165],[124.5277,-8.2162],[124.5288,-8.2133]]}},{"type":"Feature","properties":{"mhid":"1332:307","alt_name":"KABUPATEN BELU","latitude":-9.41258,"longitude":124.95066,"sample_value":732},"geometry":{"type":"LineString","coordinates":[[125.0141,-9.3025],[125.0068,-9.2949],[124.9969,-9.2936],[124.9958,-9.2855],[124.9983,-9.2808],[124.9944,-9.2724],[124.9967,-9.2685],[124.9968,-9.2634],[124.9895,-9.257],[124.985,-9.2512],[124.9855,-9.2486],[124.9822,-9.2353],[124.9838,-9.2308],[124.9815,-9.2121],[124.9827,-9.1914],[124.9845,-9.192],[124.9925,-9.1868],[124.999,-9.1864],[125.0056,-9.1824],[125.0114,-9.176],[125.0144,-9.1691],[125.0251,-9.1713],[125.0337,-9.1708],[125.0355,-9.174],[125.0414,-9.1746],[125.0527,-9.1688],[125.0564,-9.1716],[125.0749,-9.1757],[125.0771,-9.183],[125.0811,-9.1885],[125.0934,-9.1973],[125.097,-9.2018],[125.1022,-9.1975],[125.1064,-9.1963],[125.1088,-9.1919],[125.1171,-9.1862],[125.1235,-9.1837],[125.1332,-9.1776],[125.1335,-9.1751],[125.1421,-9.1735],[125.1482,-9.1708],[125.1551,-9.173],[125.1686,-9.1732],[125.176,-9.1722],[125.18,-9.1663],[125.1865,-9.1596],[125.1931,-9.1582],[125.193,-9.1541],[125.18,-9.1454],[125.1759,-9.1411],[125.1765,-9.1374],[125.1732,-9.1335],[125.1716,-9.123],[125.1722,-9.1189],[125.1793,-9.1186],[125.1789,-9.1132],[125.1734,-9.1057],[125.1763,-9.1045],[125.1784,-9.0991],[125.1792,-9.0867],[125.1848,-9.0801],[125.1861,-9.0706],[125.1839,-9.0628],[125.1883,-9.0577],[125.1893,-9.0465],[125.1843,-9.0362],[125.1847,-9.0259],[125.1717,-9.0182],[125.1695,-9.0143],[125.1648,-9.0126],[125.1592,-9.0047],[125.1484,-8.9966],[125.1383,-8.9966],[125.1344,-8.9934],[125.1334,-8.9882],[125.1243,-8.9769],[125.1167,-8.9696],[125.112,-8.9675],[125.1083,-8.9687],[125.1022,-8.9757],[125.1021,-8.9884],[125.0988,-8.9928],[125.099,-8.9998],[125.0929,-9.0051],[125.0873,-9.0127],[125.0824,-9.0141],[125.0768,-9.0217],[125.0723,-9.0235],[125.0661,-9.0283],[125.058,-9.0269],[125.0524,-9.0317],[125.0427,-9.0319],[125.0409,-9.0341],[125.0316,-9.0379],[125.0303,-9.0434],[125.0204,-9.0436],[125.0214,-9.0494],[125.0183,-9.0507],[125.0113,-9.05],[125.0091,-9.0515],[125.0069,-9.0606],[125.0031,-9.0636],[124.9913,-9.064],[124.9899,-9.061],[124.9837,-9.0662],[124.9759,-9.0636],[124.9697,-9.0568],[124.9594,-9.059],[124.954,-9.0561],[124.9533,-9.0496],[124.9437,-9.049],[124.9402,-9.0426],[124.9403,-9.0369],[124.9317,-9.0279],[124.9344,-9.0227],[124.9329,-9.0185],[124.9367,-9.0168],[124.9382,-9.0037],[124.9347,-9.0001],[124.9341,-8.9951],[124.9405,-8.9853],[124.9413,-8.9786],[124.9518,-8.9673],[124.9525,-8.9602],[124.9434,-8.9569],[124.9386,-8.9575],[124.9258,-8.9661],[124.9211,-8.9665],[124.9187,-8.9707],[124.8992,-8.9725],[124.8903,-8.9751],[124.8784,-8.9801],[124.875,-8.9846],[124.8666,-8.9899],[124.8612,-8.9992],[124.8544,-8.9994],[124.8511,-9.0068],[124.827,-9.0021],[124.8164,-9.0024],[124.8096,-9.0071],[124.8072,-9.0113],[124.801,-9.0086],[124.7943,-9.0141],[124.7924,-9.0182],[124.7972,-9.0223],[124.7972,-9.0271],[124.8005,-9.0295],[124.802,-9.0374],[124.8056,-9.0413],[124.8025,-9.0472],[124.8045,-9.0545],[124.812,-9.0636],[124.8154,-9.0648],[124.818,-9.0733],[124.8202,-9.0763],[124.8156,-9.0909],[124.8136,-9.1016],[124.8166,-9.1058],[124.8189,-9.125],[124.8189,-9.1307],[124.8214,-9.1426],[124.8269,-9.1455],[124.8244,-9.1527],[124.8173,-9.1595],[124.8143,-9.1661],[124.8092,-9.1683],[124.8127,-9.1726],[124.8209,-9.1739],[124.8209,-9.178],[124.8174,-9.188],[124.8199,-9.1993],[124.8272,-9.2052],[124.8349,-9.2139],[124.8372,-9.2241],[124.8381,-9.2351],[124.8489,-9.25],[124.8509,-9.2582],[124.8505,-9.2651],[124.8527,-9.272],[124.8522,-9.2781],[124.854,-9.2861],[124.8472,-9.2935],[124.8467,-9.2982],[124.8427,-9.3059],[124.8458,-9.3183],[124.8425,-9.3287],[124.8383,-9.3338],[124.8304,-9.3354],[124.8239,-9.3401],[124.82,-9.3391],[124.8153,-9.3411],[124.8279,-9.3474],[124.8384,-9.3497],[124.8447,-9.3539],[124.8482,-9.3596],[124.8465,-9.3756],[124.8428,-9.3839],[124.845,-9.3877],[124.8508,-9.3875],[124.8568,-9.3849],[124.8614,-9.3866],[124.8722,-9.3811],[124.8744,-9.3865],[124.8801,-9.3855],[124.8817,-9.3945],[124.8881,-9.389],[124.8895,-9.3795],[124.8933,-9.3754],[124.8963,-9.3693],[124.9011,-9.369],[124.9059,-9.3713],[124.9154,-9.3727],[124.9151,-9.3757],[124.9201,-9.3814],[124.9283,-9.3772],[124.9327,-9.3779],[124.9453,-9.3896],[124.9516,-9.392],[124.9613,-9.3931],[124.9658,-9.3903],[124.9675,-9.3841],[124.976,-9.3785],[124.977,-9.3731],[124.9825,-9.3701],[124.9864,-9.3708],[124.9875,-9.3637],[124.9958,-9.3564],[124.9953,-9.3453],[124.9938,-9.3407],[124.988,-9.3343],[124.9885,-9.3298],[125.0029,-9.319],[125.0042,-9.3131],[125.0066,-9.3112],[125.0087,-9.302],[125.0141,-9.3025]]}},{"type":"Feature","properties":{"mhid":"1332:308","alt_name":"KABUPATEN ALOR","latitude":-8.3,"longitude":124.56667,"sample_value":134},"geometry":{"type":"LineString","coordinates":[[124.2909,-8.4703],[124.2801,-8.4704],[124.2718,-8.4735],[124.27,-8.4769],[124.2734,-8.4879],[124.2788,-8.4905],[124.2841,-8.4828],[124.2939,-8.4825],[124.2955,-8.4762],[124.2909,-8.4703]]}},{"type":"Feature","properties":{"mhid":"1332:308","alt_name":"KABUPATEN ALOR","latitude":-8.3,"longitude":124.56667,"sample_value":134},"geometry":{"type":"LineString","coordinates":[[123.8931,-8.4303],[123.8915,-8.4268],[123.8852,-8.4247],[123.8767,-8.4305],[123.8761,-8.4397],[123.88,-8.443],[123.8829,-8.441],[123.8848,-8.4354],[123.8931,-8.4303]]}},{"type":"Feature","properties":{"mhid":"1332:308","alt_name":"KABUPATEN ALOR","latitude":-8.3,"longitude":124.56667,"sample_value":134},"geometry":{"type":"LineString","coordinates":[[123.8356,-8.3949],[123.8366,-8.3814],[123.8353,-8.3713],[123.8289,-8.3677],[123.8198,-8.3656],[123.8154,-8.366],[123.808,-8.3727],[123.8094,-8.3844],[123.808,-8.3878],[123.8111,-8.3979],[123.8094,-8.4029],[123.8134,-8.4086],[123.8258,-8.414],[123.8332,-8.4096],[123.8376,-8.4107],[123.8356,-8.3949]]}},{"type":"Feature","properties":{"mhid":"1332:308","alt_name":"KABUPATEN ALOR","latitude":-8.3,"longitude":124.56667,"sample_value":134},"geometry":{"type":"LineString","coordinates":[[124.0952,-8.3646],[124.0925,-8.3681],[124.0931,-8.3735],[124.0982,-8.3746],[124.0989,-8.3685],[124.0952,-8.3646]]}},{"type":"Feature","properties":{"mhid":"1332:308","alt_name":"KABUPATEN ALOR","latitude":-8.3,"longitude":124.56667,"sample_value":134},"geometry":{"type":"LineString","coordinates":[[123.955,-8.3493],[123.9521,-8.3466],[123.9466,-8.347],[123.9362,-8.3514],[123.9332,-8.3539],[123.9263,-8.3541],[123.9187,-8.3561],[123.9133,-8.356],[123.9034,-8.3602],[123.9001,-8.3628],[123.8993,-8.368],[123.9152,-8.3804],[123.9226,-8.3792],[123.9303,-8.3825],[123.941,-8.3761],[123.9473,-8.3652],[123.9498,-8.3587],[123.9549,-8.3567],[123.955,-8.3493]]}},{"type":"Feature","properties":{"mhid":"1332:308","alt_name":"KABUPATEN ALOR","latitude":-8.3,"longitude":124.56667,"sample_value":134},"geometry":{"type":"LineString","coordinates":[[124.356,-8.2759],[124.3451,-8.2771],[124.3389,-8.2758],[124.3287,-8.2811],[124.3218,-8.2884],[124.3152,-8.2981],[124.3201,-8.3077],[124.3215,-8.3157],[124.3275,-8.3198],[124.3296,-8.324],[124.3371,-8.3238],[124.3421,-8.3255],[124.3623,-8.325],[124.3662,-8.3149],[124.3699,-8.3092],[124.3737,-8.3064],[124.3739,-8.2989],[124.376,-8.2955],[124.3694,-8.2822],[124.3611,-8.2794],[124.356,-8.2759]]}},{"type":"Feature","properties":{"mhid":"1332:308","alt_name":"KABUPATEN ALOR","latitude":-8.3,"longitude":124.56667,"sample_value":134},"geometry":{"type":"LineString","coordinates":[[124.4017,-8.2767],[124.4038,-8.2702],[124.3986,-8.2688],[124.3963,-8.2756],[124.4017,-8.2767]]}},{"type":"Feature","properties":{"mhid":"1332:308","alt_name":"KABUPATEN ALOR","latitude":-8.3,"longitude":124.56667,"sample_value":134},"geometry":{"type":"LineString","coordinates":[[124.0849,-8.2378],[124.0885,-8.2374],[124.0902,-8.2311],[124.095,-8.2263],[124.0868,-8.2208],[124.0849,-8.2227],[124.0772,-8.2227],[124.0734,-8.2251],[124.07,-8.2321],[124.0705,-8.2362],[124.076,-8.2393],[124.0825,-8.2402],[124.0849,-8.2378]]}},{"type":"Feature","properties":{"mhid":"1332:308","alt_name":"KABUPATEN ALOR","latitude":-8.3,"longitude":124.56667,"sample_value":134},"geometry":{"type":"LineString","coordinates":[[124.0432,-8.2186],[124.0468,-8.2117],[124.0434,-8.2112],[124.0391,-8.2213],[124.036,-8.2191],[124.0345,-8.2138],[124.0304,-8.2148],[124.0273,-8.2189],[124.0252,-8.2273],[124.0254,-8.2318],[124.0309,-8.2333],[124.0388,-8.2273],[124.0432,-8.2186]]}},{"type":"Feature","properties":{"mhid":"1332:308","alt_name":"KABUPATEN ALOR","latitude":-8.3,"longitude":124.56667,"sample_value":134},"geometry":{"type":"LineString","coordinates":[[124.3764,-8.2067],[124.3735,-8.2009],[124.364,-8.2084],[124.3606,-8.2163],[124.3616,-8.2221],[124.367,-8.2254],[124.3749,-8.2264],[124.3801,-8.217],[124.3764,-8.2067]]}},{"type":"Feature","properties":{"mhid":"1332:308","alt_name":"KABUPATEN ALOR","latitude":-8.3,"longitude":124.56667,"sample_value":134},"geometry":{"type":"LineString","coordinates":[[124.2904,-8.1739],[124.2869,-8.1754],[124.278,-8.1756],[124.2673,-8.1856],[124.2519,-8.1917],[124.2369,-8.2107],[124.2316,-8.2134],[124.2288,-8.2183],[124.225,-8.232],[124.2198,-8.2379],[124.214,-8.2493],[124.2144,-8.2547],[124.2119,-8.2611],[124.2059,-8.267],[124.2034,-8.273],[124.1996,-8.277],[124.1953,-8.2773],[124.1912,-8.2725],[124.1849,-8.2738],[124.1744,-8.2852],[124.1676,-8.2912],[124.1664,-8.3029],[124.1637,-8.3099],[124.1589,-8.3141],[124.1508,-8.3188],[124.1508,-8.3225],[124.1466,-8.3246],[124.1384,-8.3331],[124.1337,-8.3392],[124.1328,-8.3441],[124.1247,-8.3491],[124.1139,-8.3533],[124.1088,-8.3564],[124.1031,-8.3623],[124.1057,-8.369],[124.1098,-8.3749],[124.117,-8.3715],[124.1161,-8.3767],[124.1198,-8.3818],[124.1135,-8.3863],[124.105,-8.3881],[124.1061,-8.3805],[124.1023,-8.3756],[124.098,-8.3756],[124.0913,-8.3704],[124.0898,-8.3649],[124.0976,-8.36],[124.0945,-8.3565],[124.0854,-8.3553],[124.0853,-8.3492],[124.0881,-8.3382],[124.0857,-8.3332],[124.0852,-8.3271],[124.0866,-8.32],[124.085,-8.3136],[124.0805,-8.3069],[124.0757,-8.3027],[124.0642,-8.2977],[124.0586,-8.293],[124.0501,-8.2971],[124.0448,-8.3024],[124.0351,-8.3097],[124.0323,-8.3092],[124.025,-8.3122],[124.0171,-8.3218],[124.0064,-8.3293],[123.9882,-8.3365],[123.9837,-8.3363],[123.9735,-8.3416],[123.9652,-8.3475],[123.9615,-8.3584],[123.9536,-8.368],[123.9441,-8.3913],[123.9469,-8.4047],[123.9356,-8.4232],[123.9302,-8.4246],[123.9137,-8.437],[123.9137,-8.4393],[123.9204,-8.4421],[123.9219,-8.4477],[123.9359,-8.4538],[123.9373,-8.4605],[123.9462,-8.4594],[123.9484,-8.451],[123.9521,-8.4456],[123.958,-8.4411],[123.9633,-8.4408],[123.9667,-8.4368],[123.9727,-8.4334],[123.9751,-8.4342],[123.978,-8.4258],[123.9829,-8.4201],[123.989,-8.418],[123.9937,-8.4193],[124.0012,-8.4166],[124.0147,-8.4153],[124.0202,-8.4163],[124.0274,-8.4208],[124.0343,-8.4213],[124.0412,-8.4447],[124.0431,-8.449],[124.0546,-8.4547],[124.053,-8.4616],[124.0571,-8.4692],[124.0553,-8.4779],[124.0651,-8.4894],[124.0655,-8.4993],[124.0591,-8.5151],[124.0544,-8.5212],[124.0555,-8.5238],[124.0538,-8.5321],[124.0557,-8.5442],[124.059,-8.5452],[124.0626,-8.55],[124.0722,-8.5504],[124.0757,-8.5476],[124.0805,-8.5481],[124.085,-8.5449],[124.1065,-8.5442],[124.1137,-8.5462],[124.1236,-8.5446],[124.1389,-8.537],[124.1413,-8.5384],[124.146,-8.5345],[124.148,-8.5249],[124.1557,-8.5195],[124.1573,-8.5165],[124.1646,-8.5149],[124.17,-8.5099],[124.169,-8.5039],[124.1726,-8.5022],[124.1763,-8.4957],[124.1721,-8.4883],[124.1799,-8.4845],[124.1825,-8.4889],[124.1869,-8.4888],[124.1937,-8.4843],[124.2005,-8.4763],[124.203,-8.4712],[124.2124,-8.4596],[124.2115,-8.4499],[124.2089,-8.4459],[124.2062,-8.4344],[124.21,-8.4259],[124.2093,-8.416],[124.2135,-8.4086],[124.2179,-8.4061],[124.2253,-8.3965],[124.2307,-8.3922],[124.2341,-8.3799],[124.2401,-8.3754],[124.2422,-8.3692],[124.2495,-8.3587],[124.2561,-8.3573],[124.2589,-8.3525],[124.2662,-8.3506],[124.277,-8.34],[124.2848,-8.338],[124.2922,-8.3391],[124.2938,-8.335],[124.3019,-8.3297],[124.302,-8.3264],[124.3098,-8.3107],[124.3092,-8.3033],[124.3055,-8.2957],[124.3032,-8.2869],[124.3048,-8.2843],[124.3035,-8.2789],[124.2988,-8.2687],[124.3041,-8.2542],[124.3072,-8.2524],[124.3189,-8.2382],[124.3232,-8.2341],[124.3263,-8.228],[124.3259,-8.2215],[124.3292,-8.2127],[124.3289,-8.2026],[124.3248,-8.1931],[124.3249,-8.1889],[124.3195,-8.1802],[124.3141,-8.1776],[124.3025,-8.1751],[124.2914,-8.1769],[124.2904,-8.1739]]}},{"type":"Feature","properties":{"mhid":"1332:308","alt_name":"KABUPATEN ALOR","latitude":-8.3,"longitude":124.56667,"sample_value":134},"geometry":{"type":"LineString","coordinates":[[124.3795,-8.1826],[124.3851,-8.1779],[124.381,-8.1722],[124.37,-8.1693],[124.3674,-8.1739],[124.3681,-8.1812],[124.3709,-8.1837],[124.3773,-8.1845],[124.3795,-8.1826]]}},{"type":"Feature","properties":{"mhid":"1332:308","alt_name":"KABUPATEN ALOR","latitude":-8.3,"longitude":124.56667,"sample_value":134},"geometry":{"type":"MultiLineString","coordinates":[[[124.5611,-8.1236],[124.549,-8.1216],[124.5407,-8.1266],[124.5355,-8.1271],[124.5303,-8.1218],[124.5144,-8.1237],[124.5048,-8.1324],[124.4935,-8.1293],[124.4891,-8.1267],[124.477,-8.1281],[124.4579,-8.1423],[124.4553,-8.1471],[124.4524,-8.1473],[124.4458,-8.1557],[124.4469,-8.16],[124.4431,-8.1666],[124.4366,-8.171],[124.4204,-8.1916],[124.4106,-8.2052],[124.4002,-8.2148],[124.3958,-8.2298],[124.3964,-8.2337],[124.4026,-8.2371],[124.406,-8.2515],[124.4069,-8.2677],[124.4046,-8.2762],[124.4087,-8.2774],[124.413,-8.2708],[124.4227,-8.2686],[124.4391,-8.259],[124.4471,-8.2555],[124.4533,-8.2547],[124.4549,-8.2496],[124.4632,-8.2477],[124.4675,-8.2429],[124.4729,-8.2418],[124.4896,-8.2307],[124.4963,-8.2317],[124.5048,-8.2213],[124.5084,-8.2247],[124.5134,-8.2188],[124.5181,-8.2207],[124.5239,-8.2184],[124.533,-8.2176],[124.5397,-8.2244],[124.5474,-8.2228],[124.5487,-8.2173],[124.5543,-8.2135],[124.5588,-8.2154],[124.5615,-8.2212],[124.5552,-8.2236],[124.5502,-8.2232],[124.5421,-8.228],[124.5426,-8.2331],[124.5394,-8.2388],[124.5352,-8.2379],[124.5123,-8.2492],[124.5116,-8.2528],[124.5038,-8.2584],[124.4979,-8.2521],[124.4878,-8.2541],[124.4754,-8.2547],[124.4534,-8.2668],[124.4508,-8.27],[124.4469,-8.2691],[124.4433,-8.2724],[124.4419,-8.2806],[124.4363,-8.2834],[124.4307,-8.2889],[124.423,-8.2924],[124.4144,-8.2905],[124.407,-8.2954],[124.403,-8.3097],[124.4037,-8.318],[124.4003,-8.321],[124.3988,-8.3264],[124.3954,-8.3293],[124.3881,-8.3397],[124.3818,-8.3451],[124.3747,-8.3536],[124.3696,-8.3563],[124.3705,-8.3639],[124.3662,-8.368],[124.365,-8.3723],[124.3603,-8.3748],[124.3496,-8.3831],[124.3466,-8.3895],[124.3427,-8.3915],[124.3414,-8.4026],[124.3396,-8.4089],[124.3395,-8.4224],[124.3465,-8.4258],[124.3504,-8.4338],[124.3552,-8.4388],[124.3624,-8.4424],[124.3733,-8.4428],[124.3739,-8.4389],[124.3809,-8.4377],[124.3939,-8.4422],[124.4066,-8.44],[124.4129,-8.437],[124.4199,-8.4419],[124.4196,-8.4512],[124.4144,-8.4593],[124.4163,-8.4614],[124.4231,-8.4594],[124.4278,-8.4599],[124.4279,-8.4553],[124.4392,-8.4536],[124.4465,-8.447],[124.4564,-8.4419],[124.4691,-8.4363],[124.4744,-8.4299],[124.4826,-8.423],[124.4859,-8.4253],[124.4905,-8.4235],[124.4943,-8.419],[124.5099,-8.4184],[124.5199,-8.4205],[124.5292,-8.4249],[124.5397,-8.4416],[124.5471,-8.4424],[124.5503,-8.4388],[124.5549,-8.4397],[124.5608,-8.4364],[124.5905,-8.4328],[124.6038,-8.4259],[124.6105,-8.4189],[124.616,-8.4192],[124.6265,-8.4105],[124.6341,-8.4071],[124.6389,-8.4016],[124.6553,-8.3923],[124.6618,-8.3902],[124.6759,-8.3924],[124.6844,-8.3952],[124.6875,-8.3937],[124.6943,-8.3969],[124.701,-8.3973],[124.7105,-8.4006],[124.7174,-8.4049],[124.7247,-8.3998],[124.7297,-8.4019],[124.7341,-8.4014],[124.7413,-8.4048],[124.7479,-8.4036],[124.7579,-8.4038],[124.761,-8.4023],[124.7738,-8.4053],[124.7808,-8.3997],[124.7874,-8.4035],[124.7885,-8.4008],[124.8006,-8.3963],[124.8066,-8.3964],[124.821,-8.3901],[124.824,-8.3861],[124.8281,-8.3843],[124.8317,-8.3866],[124.839,-8.3872],[124.8428,-8.3823],[124.8522,-8.3795],[124.8569,-8.3762],[124.8635,-8.3749],[124.8813,-8.3655],[124.8867,-8.3655],[124.8909,-8.3626],[124.8968,-8.3646],[124.9109,-8.3614],[124.9333,-8.3575],[124.9357,-8.358],[124.9498,-8.3558],[124.9691,-8.36],[124.9869,-8.3575],[124.991,-8.3558],[125.0014,-8.3543],[125.0059,-8.355],[125.0143,-8.3531],[125.0187,-8.3568],[125.0241,-8.3566],[125.0288,-8.3535],[125.0314,-8.3554],[125.0356,-8.3532],[125.0435,-8.3562],[125.05,-8.3537],[125.0622,-8.357],[125.0772,-8.3476],[125.0875,-8.348],[125.0953,-8.3443],[125.1093,-8.3437],[125.1259,-8.3371],[125.1293,-8.3313],[125.1409,-8.3192],[125.1357,-8.315],[125.1296,-8.2968],[125.1283,-8.2821],[125.1362,-8.2708],[125.1391,-8.2638],[125.1397,-8.2577],[125.1425,-8.2523],[125.1411,-8.2408],[125.1372,-8.2239],[125.1345,-8.2188],[125.125,-8.2089],[125.1228,-8.2037],[125.1127,-8.1931],[125.1097,-8.184],[125.1073,-8.181],[125.1074,-8.1739],[125.1009,-8.1618],[125.0991,-8.1499],[125.0907,-8.145],[125.0847,-8.1455],[125.0794,-8.1489],[125.0687,-8.1478],[125.0529,-8.1496],[125.0479,-8.1463],[125.0408,-8.1464],[125.0251,-8.1492],[125.0179,-8.1536],[125.0082,-8.157],[124.9974,-8.157],[124.9895,-8.1506],[124.9823,-8.1523],[124.9765,-8.1515],[124.9717,-8.1485],[124.9675,-8.1487],[124.9658,-8.1421],[124.9586,-8.1396],[124.955,-8.1452],[124.9451,-8.1466],[124.9387,-8.1499],[124.9307,-8.1522],[124.9223,-8.1619],[124.9188,-8.1634],[124.8973,-8.1621],[124.8874,-8.1651],[124.8796,-8.1647],[124.8614,-8.1669],[124.8502,-8.166],[124.8413,-8.1636],[124.8319,-8.1639],[124.8278,-8.1661],[124.8178,-8.1631],[124.8132,-8.1647],[124.81,-8.161],[124.804,-8.1585],[124.794,-8.157],[124.786,-8.149],[124.7822,-8.1472],[124.7728,-8.1461],[124.7573,-8.1499],[124.7518,-8.1466],[124.7375,-8.1538],[124.7328,-8.1535],[124.7248,-8.1561],[124.7181,-8.1551],[124.697,-8.1583],[124.6942,-8.1569],[124.6839,-8.1602],[124.6753,-8.1647],[124.6687,-8.1621],[124.6623,-8.1682],[124.6475,-8.173],[124.6401,-8.1789],[124.6309,-8.1804],[124.6255,-8.1845],[124.6212,-8.185],[124.608,-8.197],[124.5999,-8.1953],[124.5914,-8.1839],[124.5949,-8.1766],[124.5929,-8.1422],[124.601,-8.1339],[124.6031,-8.1241],[124.5999,-8.1216],[124.592,-8.1221],[124.5851,-8.125],[124.5611,-8.1236]],[[124.5288,-8.2133],[124.5277,-8.2162],[124.5196,-8.2165],[124.5187,-8.2135],[124.5283,-8.2113],[124.5288,-8.2133]]]}},{"type":"Feature","properties":{"mhid":"1332:308","alt_name":"KABUPATEN ALOR","latitude":-8.3,"longitude":124.56667,"sample_value":134},"geometry":{"type":"LineString","coordinates":[[124.6165,-8.1168],[124.6119,-8.117],[124.6102,-8.122],[124.6171,-8.1214],[124.6165,-8.1168]]}},{"type":"Feature","properties":{"mhid":"1332:309","alt_name":"KABUPATEN LEMBATA","latitude":-8.41396,"longitude":123.55225,"sample_value":820},"geometry":{"type":"LineString","coordinates":[[123.8449,-8.2099],[123.8422,-8.2051],[123.8428,-8.1992],[123.8294,-8.1972],[123.8236,-8.1902],[123.8138,-8.185],[123.8097,-8.1778],[123.7908,-8.1692],[123.7823,-8.1672],[123.7726,-8.1703],[123.7673,-8.1753],[123.7621,-8.1771],[123.7534,-8.1838],[123.745,-8.1948],[123.7412,-8.1967],[123.7376,-8.2029],[123.7304,-8.2077],[123.7274,-8.2126],[123.7238,-8.2086],[123.716,-8.2106],[123.708,-8.2153],[123.6981,-8.2147],[123.6957,-8.2182],[123.6973,-8.2234],[123.7059,-8.2301],[123.7134,-8.2373],[123.704,-8.2379],[123.7019,-8.2485],[123.6991,-8.2518],[123.6926,-8.2544],[123.6865,-8.2548],[123.6796,-8.2533],[123.6739,-8.2498],[123.6702,-8.2532],[123.6664,-8.2531],[123.6572,-8.25],[123.652,-8.25],[123.6444,-8.2472],[123.6573,-8.243],[123.6554,-8.2368],[123.6593,-8.2311],[123.6597,-8.2262],[123.6572,-8.2215],[123.646,-8.214],[123.639,-8.2124],[123.6325,-8.2138],[123.6266,-8.217],[123.6229,-8.2211],[123.6163,-8.2221],[123.6073,-8.2167],[123.6039,-8.2176],[123.6063,-8.2239],[123.6073,-8.2382],[123.6154,-8.2391],[123.6233,-8.2429],[123.6279,-8.2467],[123.6291,-8.2504],[123.6293,-8.267],[123.6303,-8.2712],[123.6367,-8.2805],[123.6331,-8.2907],[123.6196,-8.3014],[123.6125,-8.3057],[123.6073,-8.3129],[123.5989,-8.3152],[123.598,-8.3059],[123.6055,-8.2978],[123.6054,-8.289],[123.602,-8.2838],[123.5898,-8.2851],[123.5859,-8.287],[123.5793,-8.2835],[123.5752,-8.285],[123.5758,-8.2914],[123.5743,-8.2952],[123.575,-8.3064],[123.5779,-8.3122],[123.5836,-8.3123],[123.591,-8.3103],[123.5927,-8.3153],[123.5902,-8.3245],[123.5994,-8.3219],[123.5986,-8.3294],[123.5862,-8.3497],[123.5727,-8.36],[123.563,-8.3639],[123.5539,-8.3657],[123.5478,-8.3656],[123.5389,-8.3636],[123.5289,-8.3579],[123.5263,-8.3544],[123.5179,-8.3489],[123.5126,-8.3488],[123.5051,-8.3521],[123.503,-8.3568],[123.4981,-8.3555],[123.4983,-8.3489],[123.5021,-8.3382],[123.4998,-8.3339],[123.5049,-8.332],[123.5106,-8.3238],[123.5125,-8.3186],[123.517,-8.3144],[123.5177,-8.3077],[123.5307,-8.3026],[123.5336,-8.2975],[123.5346,-8.2902],[123.5443,-8.2831],[123.5451,-8.279],[123.5426,-8.2735],[123.5476,-8.2667],[123.5535,-8.2641],[123.5476,-8.2572],[123.5488,-8.2527],[123.5613,-8.2492],[123.5641,-8.2451],[123.5607,-8.2368],[123.5517,-8.2377],[123.546,-8.2361],[123.5404,-8.2324],[123.5358,-8.2322],[123.5279,-8.2346],[123.5192,-8.2345],[123.5105,-8.2374],[123.4952,-8.2395],[123.4796,-8.2466],[123.4706,-8.2569],[123.4647,-8.2651],[123.4594,-8.2684],[123.4502,-8.268],[123.4394,-8.2606],[123.4364,-8.2623],[123.4382,-8.2679],[123.4359,-8.2699],[123.4255,-8.2644],[123.4184,-8.2528],[123.4075,-8.2502],[123.398,-8.2577],[123.3911,-8.2583],[123.384,-8.2606],[123.3796,-8.264],[123.3662,-8.2784],[123.3669,-8.2893],[123.3593,-8.2931],[123.3502,-8.2959],[123.3456,-8.2961],[123.3463,-8.3033],[123.352,-8.3037],[123.3538,-8.3004],[123.3588,-8.299],[123.3693,-8.3018],[123.3725,-8.2972],[123.3926,-8.296],[123.3954,-8.2917],[123.4,-8.2965],[123.4035,-8.2901],[123.4114,-8.2913],[123.4146,-8.2886],[123.4189,-8.2948],[123.4288,-8.2936],[123.4327,-8.2953],[123.4499,-8.31],[123.4561,-8.314],[123.4659,-8.3234],[123.469,-8.3292],[123.4734,-8.333],[123.4641,-8.3441],[123.449,-8.3534],[123.4436,-8.3537],[123.44,-8.356],[123.4364,-8.3627],[123.4323,-8.3656],[123.4261,-8.3672],[123.4212,-8.3664],[123.4107,-8.3685],[123.4037,-8.3664],[123.3977,-8.3667],[123.3876,-8.3713],[123.3843,-8.3749],[123.3812,-8.3819],[123.3752,-8.3857],[123.3661,-8.386],[123.3605,-8.389],[123.3537,-8.3901],[123.3452,-8.3959],[123.3393,-8.3959],[123.3323,-8.4024],[123.3288,-8.4097],[123.3158,-8.4246],[123.3136,-8.4299],[123.3096,-8.4344],[123.306,-8.444],[123.3006,-8.4512],[123.2942,-8.4564],[123.2894,-8.4628],[123.2831,-8.4616],[123.2789,-8.4653],[123.2665,-8.481],[123.2561,-8.4868],[123.2409,-8.5001],[123.2342,-8.5071],[123.226,-8.5093],[123.2166,-8.5059],[123.2076,-8.5142],[123.2077,-8.5167],[123.2138,-8.521],[123.217,-8.5264],[123.2132,-8.5283],[123.2136,-8.533],[123.2203,-8.53],[123.2266,-8.5316],[123.2208,-8.5374],[123.2192,-8.5459],[123.2222,-8.5502],[123.2307,-8.5491],[123.234,-8.5399],[123.2395,-8.5378],[123.2456,-8.5374],[123.2522,-8.5389],[123.2596,-8.543],[123.2683,-8.5413],[123.2777,-8.5414],[123.2902,-8.5467],[123.2925,-8.5443],[123.2979,-8.544],[123.2983,-8.5382],[123.3027,-8.5356],[123.3079,-8.5296],[123.3151,-8.5244],[123.3187,-8.5233],[123.322,-8.5281],[123.3287,-8.5302],[123.3303,-8.5334],[123.337,-8.5373],[123.3396,-8.5351],[123.3449,-8.5355],[123.3455,-8.5409],[123.3504,-8.5484],[123.3503,-8.5527],[123.3547,-8.5606],[123.3622,-8.5638],[123.3717,-8.5715],[123.3823,-8.576],[123.3877,-8.5816],[123.3953,-8.582],[123.4012,-8.5803],[123.4051,-8.5814],[123.4182,-8.5746],[123.4247,-8.5732],[123.4314,-8.5612],[123.4455,-8.546],[123.4457,-8.5413],[123.4482,-8.5364],[123.4475,-8.5314],[123.4535,-8.529],[123.4609,-8.5242],[123.465,-8.5279],[123.4756,-8.5187],[123.4805,-8.5181],[123.4901,-8.5128],[123.5023,-8.5146],[123.5083,-8.5195],[123.5065,-8.5242],[123.5086,-8.534],[123.5087,-8.5447],[123.5102,-8.5494],[123.5138,-8.5523],[123.5188,-8.5593],[123.5301,-8.5665],[123.5373,-8.5663],[123.544,-8.5634],[123.5477,-8.5672],[123.5515,-8.5628],[123.5601,-8.557],[123.5625,-8.5524],[123.5692,-8.5478],[123.5758,-8.5463],[123.5775,-8.5427],[123.5841,-8.5387],[123.5882,-8.526],[123.5847,-8.5192],[123.584,-8.5054],[123.5804,-8.4979],[123.5697,-8.4884],[123.5638,-8.4819],[123.5626,-8.4755],[123.5571,-8.4727],[123.5537,-8.4653],[123.5671,-8.4511],[123.5721,-8.4491],[123.5843,-8.4413],[123.5867,-8.4382],[123.5964,-8.4325],[123.6003,-8.4273],[123.6066,-8.4219],[123.6142,-8.4192],[123.6156,-8.4124],[123.6249,-8.4017],[123.6286,-8.4003],[123.6369,-8.4014],[123.6483,-8.4002],[123.6525,-8.4032],[123.6559,-8.4086],[123.6508,-8.4247],[123.6543,-8.4254],[123.6671,-8.4229],[123.672,-8.424],[123.6819,-8.4176],[123.6949,-8.4056],[123.6957,-8.4016],[123.7006,-8.3929],[123.7001,-8.3845],[123.7049,-8.3759],[123.7119,-8.3688],[123.7194,-8.3578],[123.7277,-8.3512],[123.7314,-8.3465],[123.7361,-8.3375],[123.7374,-8.3251],[123.7531,-8.2989],[123.7638,-8.2889],[123.7745,-8.2822],[123.7868,-8.2791],[123.7878,-8.2726],[123.7954,-8.2704],[123.8047,-8.2691],[123.8164,-8.2723],[123.8245,-8.2728],[123.8319,-8.275],[123.8374,-8.2802],[123.8516,-8.2729],[123.8643,-8.2722],[123.8737,-8.2697],[123.8816,-8.2648],[123.8931,-8.2599],[123.903,-8.258],[123.9181,-8.2532],[123.9221,-8.2497],[123.9248,-8.2441],[123.9235,-8.2392],[123.9146,-8.2276],[123.9104,-8.2204],[123.9092,-8.2156],[123.9049,-8.2109],[123.885,-8.2101],[123.8785,-8.2078],[123.8647,-8.2108],[123.8603,-8.2143],[123.86,-8.2211],[123.854,-8.2235],[123.8518,-8.2182],[123.8534,-8.2108],[123.8449,-8.2099]]}},{"type":"Feature","properties":{"mhid":"1332:310","alt_name":"KABUPATEN FLORES TIMUR","latitude":-8.24224,"longitude":122.96817,"sample_value":611},"geometry":{"type":"LineString","coordinates":[[122.8022,-8.4465],[122.7954,-8.4474],[122.7936,-8.4502],[122.7956,-8.4573],[122.8001,-8.4576],[122.8043,-8.4528],[122.8022,-8.4465]]}},{"type":"Feature","properties":{"mhid":"1332:310","alt_name":"KABUPATEN FLORES TIMUR","latitude":-8.24224,"longitude":122.96817,"sample_value":611},"geometry":{"type":"LineString","coordinates":[[123.1462,-8.4241],[123.1391,-8.4238],[123.1306,-8.4277],[123.1288,-8.4304],[123.1225,-8.4322],[123.1166,-8.4358],[123.1089,-8.4331],[123.0953,-8.4335],[123.0898,-8.4345],[123.0812,-8.4333],[123.0549,-8.4351],[123.0512,-8.4336],[123.0368,-8.4357],[123.0337,-8.4415],[123.0223,-8.4486],[123.0153,-8.4483],[123.0076,-8.442],[123.0042,-8.4423],[122.9974,-8.4356],[122.9772,-8.4358],[122.9702,-8.4435],[122.9657,-8.4447],[122.9526,-8.4602],[122.952,-8.4713],[122.9491,-8.4838],[122.9454,-8.4932],[122.9381,-8.4965],[122.921,-8.501],[122.9137,-8.5057],[122.9006,-8.5117],[122.8848,-8.5245],[122.8817,-8.5307],[122.8799,-8.5493],[122.881,-8.5556],[122.8757,-8.5606],[122.8718,-8.5696],[122.8703,-8.5844],[122.8765,-8.591],[122.8814,-8.5945],[122.8863,-8.6094],[122.8907,-8.611],[122.9036,-8.6091],[122.9085,-8.6114],[122.9218,-8.6065],[122.9359,-8.596],[122.9421,-8.5886],[122.9452,-8.579],[122.9485,-8.5758],[122.9511,-8.5623],[122.9535,-8.5542],[122.9632,-8.5411],[122.9699,-8.5344],[122.976,-8.5151],[122.984,-8.5061],[122.9914,-8.5027],[122.9977,-8.4954],[123.0037,-8.4934],[123.0066,-8.488],[123.0219,-8.4765],[123.0284,-8.4772],[123.0346,-8.4811],[123.0401,-8.4879],[123.0506,-8.492],[123.0541,-8.4905],[123.0663,-8.4913],[123.0738,-8.4881],[123.077,-8.4892],[123.0869,-8.4822],[123.0975,-8.4778],[123.1042,-8.472],[123.1165,-8.4674],[123.1295,-8.4657],[123.1321,-8.4666],[123.1486,-8.4612],[123.1518,-8.4533],[123.1653,-8.4459],[123.1676,-8.4411],[123.1635,-8.431],[123.1605,-8.4304],[123.1515,-8.4237],[123.1462,-8.4241]]}},{"type":"Feature","properties":{"mhid":"1332:310","alt_name":"KABUPATEN FLORES TIMUR","latitude":-8.24224,"longitude":122.96817,"sample_value":611},"geometry":{"type":"LineString","coordinates":[[123.3378,-8.2564],[123.3393,-8.2508],[123.3336,-8.2464],[123.3321,-8.2511],[123.3378,-8.2564]]}},{"type":"Feature","properties":{"mhid":"1332:310","alt_name":"KABUPATEN FLORES TIMUR","latitude":-8.24224,"longitude":122.96817,"sample_value":611},"geometry":{"type":"LineString","coordinates":[[123.2114,-8.2254],[123.2006,-8.2264],[123.1961,-8.2248],[123.1912,-8.2351],[123.1831,-8.24],[123.1709,-8.2394],[123.1622,-8.2415],[123.1538,-8.2386],[123.1489,-8.2322],[123.1419,-8.2339],[123.1428,-8.2385],[123.1329,-8.2417],[123.1313,-8.2451],[123.1268,-8.2459],[123.1212,-8.2537],[123.1125,-8.2609],[123.1086,-8.2655],[123.1023,-8.2675],[123.0999,-8.2704],[123.0895,-8.2758],[123.0799,-8.2756],[123.077,-8.2789],[123.0663,-8.2848],[123.0539,-8.2959],[123.0454,-8.2985],[123.0406,-8.3052],[123.0346,-8.3067],[123.0288,-8.3117],[123.0263,-8.3209],[123.02,-8.325],[123.0211,-8.3274],[123.0171,-8.335],[123.0102,-8.339],[123.0111,-8.343],[123.0058,-8.3567],[123.0032,-8.3576],[123.0012,-8.3658],[122.9988,-8.3688],[123.0017,-8.3798],[122.9998,-8.3839],[123.0018,-8.3911],[122.9973,-8.398],[122.9979,-8.4056],[123.0012,-8.4105],[123.006,-8.4127],[123.0132,-8.4084],[123.0189,-8.4025],[123.023,-8.404],[123.0281,-8.3999],[123.0401,-8.3998],[123.0471,-8.4017],[123.053,-8.3983],[123.0589,-8.4042],[123.0641,-8.4117],[123.0697,-8.4117],[123.0789,-8.402],[123.0891,-8.4046],[123.1023,-8.4019],[123.1101,-8.4024],[123.1192,-8.3951],[123.1234,-8.3946],[123.13,-8.3906],[123.1499,-8.3916],[123.155,-8.3894],[123.1688,-8.3913],[123.1705,-8.3883],[123.179,-8.3852],[123.2022,-8.3872],[123.2167,-8.3872],[123.2205,-8.3918],[123.2244,-8.392],[123.2303,-8.3964],[123.2388,-8.396],[123.2427,-8.3933],[123.2521,-8.3956],[123.2606,-8.3958],[123.2689,-8.3937],[123.2762,-8.3954],[123.2806,-8.3917],[123.2891,-8.391],[123.2946,-8.3882],[123.2982,-8.3807],[123.2975,-8.3747],[123.3022,-8.3692],[123.3077,-8.3604],[123.3077,-8.3509],[123.3043,-8.336],[123.3033,-8.3273],[123.3037,-8.3129],[123.3051,-8.2963],[123.3078,-8.2939],[123.3127,-8.294],[123.3235,-8.2846],[123.3238,-8.2793],[123.3299,-8.2767],[123.3337,-8.27],[123.3338,-8.2643],[123.3264,-8.259],[123.3144,-8.2565],[123.3089,-8.2541],[123.3003,-8.2463],[123.2933,-8.2492],[123.2861,-8.2503],[123.2828,-8.2476],[123.276,-8.2505],[123.2654,-8.2446],[123.2646,-8.2402],[123.2558,-8.2353],[123.2502,-8.2299],[123.245,-8.2278],[123.2315,-8.2288],[123.2273,-8.2327],[123.2279,-8.2398],[123.2206,-8.244],[123.2146,-8.2422],[123.2122,-8.239],[123.2137,-8.2314],[123.2114,-8.2254]]}},{"type":"Feature","properties":{"mhid":"1332:310","alt_name":"KABUPATEN FLORES TIMUR","latitude":-8.24224,"longitude":122.96817,"sample_value":611},"geometry":{"type":"LineString","coordinates":[[122.6542,-8.6371],[122.6607,-8.6288],[122.6646,-8.626],[122.6774,-8.6221],[122.6906,-8.6257],[122.6972,-8.6266],[122.7017,-8.6232],[122.7119,-8.6259],[122.7184,-8.6292],[122.7207,-8.634],[122.7276,-8.6327],[122.7282,-8.6267],[122.7258,-8.6253],[122.7281,-8.617],[122.7325,-8.6105],[122.7372,-8.6084],[122.7473,-8.6077],[122.7516,-8.6048],[122.7613,-8.6062],[122.7719,-8.6089],[122.7747,-8.6116],[122.7813,-8.6091],[122.7873,-8.6051],[122.7966,-8.6011],[122.802,-8.6026],[122.8046,-8.5992],[122.8106,-8.5962],[122.8194,-8.5965],[122.8233,-8.5931],[122.8311,-8.5897],[122.8313,-8.5844],[122.8412,-8.5695],[122.8446,-8.5622],[122.8422,-8.56],[122.8417,-8.5532],[122.8435,-8.5474],[122.8366,-8.5268],[122.8316,-8.5175],[122.8266,-8.5158],[122.8217,-8.5091],[122.8123,-8.5012],[122.8019,-8.4968],[122.7983,-8.4938],[122.7958,-8.4862],[122.7902,-8.4841],[122.7883,-8.4788],[122.7846,-8.4619],[122.7789,-8.4577],[122.78,-8.4507],[122.7865,-8.447],[122.7866,-8.4385],[122.7837,-8.4353],[122.784,-8.4309],[122.788,-8.4262],[122.7881,-8.4226],[122.7984,-8.4222],[122.8115,-8.4257],[122.809,-8.4319],[122.814,-8.4335],[122.8164,-8.4291],[122.8288,-8.4316],[122.8311,-8.4348],[122.8287,-8.4381],[122.8408,-8.4422],[122.8482,-8.4457],[122.8532,-8.4497],[122.8602,-8.4527],[122.8678,-8.4529],[122.8721,-8.4549],[122.878,-8.4528],[122.8898,-8.4465],[122.8892,-8.4405],[122.8916,-8.4357],[122.893,-8.4197],[122.8904,-8.4107],[122.8896,-8.4021],[122.8822,-8.398],[122.8836,-8.3912],[122.8784,-8.3844],[122.8823,-8.3787],[122.8847,-8.3705],[122.8926,-8.3671],[122.8969,-8.3549],[122.9034,-8.3462],[122.9099,-8.3436],[122.9081,-8.3394],[122.9139,-8.3362],[122.9139,-8.3284],[122.9229,-8.3275],[122.9296,-8.3286],[122.9327,-8.3349],[122.9394,-8.3365],[122.947,-8.3414],[122.9552,-8.3483],[122.9645,-8.3519],[122.9731,-8.3472],[122.9829,-8.3472],[122.9896,-8.3425],[122.992,-8.3369],[123.0019,-8.3326],[123.0096,-8.3245],[123.0198,-8.3175],[123.0211,-8.3066],[123.0184,-8.2984],[123.0196,-8.2892],[123.0183,-8.2811],[123.0076,-8.2734],[122.9977,-8.2696],[122.9921,-8.2617],[122.9897,-8.2539],[122.983,-8.2511],[122.9812,-8.2446],[122.9845,-8.2384],[122.9841,-8.235],[122.9802,-8.2289],[122.978,-8.2218],[122.98,-8.2162],[122.9778,-8.2122],[122.9696,-8.2075],[122.9623,-8.195],[122.9662,-8.1918],[122.9715,-8.1742],[122.972,-8.1501],[122.9736,-8.1422],[122.9715,-8.1323],[122.9672,-8.1281],[122.9622,-8.1282],[122.955,-8.1206],[122.9411,-8.1151],[122.9404,-8.1121],[122.9353,-8.1087],[122.9226,-8.1048],[122.9166,-8.1021],[122.9081,-8.0957],[122.8928,-8.0878],[122.8878,-8.083],[122.8851,-8.0762],[122.8821,-8.0738],[122.8699,-8.0683],[122.8658,-8.0635],[122.8503,-8.0751],[122.8443,-8.0702],[122.842,-8.0732],[122.8462,-8.0766],[122.8448,-8.0802],[122.839,-8.0818],[122.8313,-8.096],[122.8224,-8.0968],[122.8177,-8.0955],[122.8079,-8.1006],[122.803,-8.1049],[122.7948,-8.1078],[122.7881,-8.1054],[122.7827,-8.1079],[122.7807,-8.112],[122.7811,-8.1211],[122.7783,-8.1362],[122.7807,-8.1376],[122.7853,-8.1491],[122.7824,-8.1518],[122.7816,-8.1569],[122.7702,-8.1705],[122.7659,-8.1736],[122.7614,-8.1794],[122.7619,-8.1835],[122.7595,-8.1942],[122.7504,-8.1982],[122.7489,-8.2015],[122.7313,-8.2166],[122.7307,-8.2245],[122.734,-8.228],[122.7417,-8.2289],[122.7493,-8.226],[122.7552,-8.2299],[122.7624,-8.225],[122.7668,-8.2264],[122.7685,-8.231],[122.7752,-8.2312],[122.7813,-8.2354],[122.7878,-8.2355],[122.7931,-8.2254],[122.7972,-8.2236],[122.797,-8.2155],[122.7995,-8.2083],[122.8088,-8.1985],[122.8129,-8.1963],[122.8333,-8.193],[122.8482,-8.1825],[122.8499,-8.1887],[122.8589,-8.1862],[122.8661,-8.1762],[122.8702,-8.1796],[122.876,-8.1787],[122.8821,-8.1807],[122.8867,-8.1753],[122.9012,-8.1793],[122.9164,-8.1917],[122.922,-8.1952],[122.9377,-8.1926],[122.9397,-8.1997],[122.9379,-8.2018],[122.9264,-8.2033],[122.9191,-8.208],[122.9121,-8.2178],[122.9084,-8.2249],[122.9074,-8.2379],[122.9043,-8.2405],[122.9003,-8.2509],[122.8954,-8.2555],[122.8931,-8.2775],[122.8867,-8.2819],[122.8845,-8.2868],[122.8721,-8.2937],[122.8649,-8.2915],[122.854,-8.29],[122.8464,-8.2925],[122.8419,-8.2921],[122.8363,-8.295],[122.827,-8.2928],[122.8165,-8.2993],[122.8117,-8.2978],[122.8074,-8.3037],[122.8026,-8.3064],[122.7994,-8.3109],[122.793,-8.3131],[122.789,-8.3166],[122.7823,-8.3297],[122.7741,-8.3431],[122.7716,-8.3525],[122.7693,-8.3542],[122.7678,-8.3611],[122.7604,-8.3637],[122.7538,-8.3618],[122.7515,-8.3594],[122.7356,-8.3578],[122.7277,-8.3606],[122.7239,-8.3603],[122.7178,-8.3658],[122.7139,-8.366],[122.7059,-8.374],[122.6964,-8.3773],[122.6887,-8.3781],[122.6856,-8.3829],[122.6822,-8.3833],[122.6835,-8.3866],[122.6824,-8.3956],[122.6841,-8.3998],[122.6822,-8.4075],[122.6767,-8.4125],[122.6792,-8.4205],[122.6838,-8.4218],[122.6849,-8.4372],[122.6791,-8.4553],[122.6736,-8.4592],[122.6781,-8.4634],[122.6765,-8.467],[122.6821,-8.4736],[122.6863,-8.482],[122.6865,-8.4863],[122.6799,-8.4971],[122.6803,-8.5006],[122.6746,-8.5024],[122.671,-8.5126],[122.6671,-8.5156],[122.6655,-8.5203],[122.6665,-8.5255],[122.664,-8.5322],[122.6634,-8.5477],[122.6592,-8.5527],[122.6585,-8.5605],[122.6558,-8.5622],[122.6535,-8.578],[122.6511,-8.5882],[122.6515,-8.5989],[122.6492,-8.6046],[122.6514,-8.6072],[122.6487,-8.6167],[122.6499,-8.6202],[122.6484,-8.6276],[122.6542,-8.6371]]}},{"type":"Feature","properties":{"mhid":"1332:311","alt_name":"KABUPATEN SIKKA","latitude":-8.66667,"longitude":122.36667,"sample_value":988},"geometry":{"type":"LineString","coordinates":[[122.4523,-8.4592],[122.4388,-8.46],[122.4279,-8.4661],[122.4229,-8.4667],[122.4229,-8.472],[122.4311,-8.4753],[122.4423,-8.4724],[122.4486,-8.4732],[122.4523,-8.4764],[122.4573,-8.4733],[122.4564,-8.4686],[122.4485,-8.4649],[122.4523,-8.4592]]}},{"type":"Feature","properties":{"mhid":"1332:311","alt_name":"KABUPATEN SIKKA","latitude":-8.66667,"longitude":122.36667,"sample_value":988},"geometry":{"type":"LineString","coordinates":[[122.3725,-8.4283],[122.3556,-8.4298],[122.3451,-8.4285],[122.3395,-8.4339],[122.3338,-8.4362],[122.3351,-8.4416],[122.3357,-8.4561],[122.334,-8.4605],[122.3375,-8.4687],[122.345,-8.477],[122.3493,-8.4836],[122.3549,-8.4882],[122.3658,-8.4901],[122.3692,-8.4941],[122.3788,-8.4974],[122.3888,-8.4979],[122.391,-8.4967],[122.3973,-8.4881],[122.4008,-8.4892],[122.4057,-8.4818],[122.4151,-8.4769],[122.417,-8.4696],[122.4121,-8.4655],[122.4137,-8.4582],[122.4225,-8.4513],[122.4162,-8.4365],[122.4098,-8.443],[122.4078,-8.4479],[122.4009,-8.4409],[122.397,-8.4396],[122.3932,-8.4346],[122.3808,-8.4319],[122.3725,-8.4283]]}},{"type":"Feature","properties":{"mhid":"1332:311","alt_name":"KABUPATEN SIKKA","latitude":-8.66667,"longitude":122.36667,"sample_value":988},"geometry":{"type":"LineString","coordinates":[[122.5121,-8.4132],[122.5082,-8.4132],[122.5008,-8.4176],[122.4979,-8.4216],[122.498,-8.4299],[122.5012,-8.4352],[122.507,-8.4339],[122.5142,-8.4345],[122.5191,-8.4314],[122.5202,-8.4235],[122.5174,-8.4163],[122.5121,-8.4132]]}},{"type":"Feature","properties":{"mhid":"1332:311","alt_name":"KABUPATEN SIKKA","latitude":-8.66667,"longitude":122.36667,"sample_value":988},"geometry":{"type":"LineString","coordinates":[[122.6822,-8.3833],[122.6775,-8.3858],[122.6647,-8.39],[122.656,-8.3902],[122.651,-8.3873],[122.6452,-8.3862],[122.6347,-8.3813],[122.6249,-8.3841],[122.6209,-8.3836],[122.6154,-8.389],[122.6168,-8.3942],[122.6145,-8.3965],[122.6068,-8.3961],[122.6036,-8.3924],[122.5972,-8.3929],[122.597,-8.3992],[122.5939,-8.4062],[122.5896,-8.4113],[122.5922,-8.4235],[122.5877,-8.4275],[122.5821,-8.4291],[122.5777,-8.4271],[122.5714,-8.4283],[122.5704,-8.4337],[122.5555,-8.455],[122.5487,-8.4604],[122.5467,-8.4642],[122.5335,-8.463],[122.5303,-8.4671],[122.5253,-8.4653],[122.5197,-8.4673],[122.5085,-8.4683],[122.4913,-8.473],[122.4843,-8.4846],[122.4793,-8.4905],[122.4794,-8.4947],[122.4886,-8.5092],[122.4971,-8.5174],[122.507,-8.5199],[122.5136,-8.5266],[122.5178,-8.5263],[122.5141,-8.5373],[122.5169,-8.5488],[122.5136,-8.5495],[122.5106,-8.555],[122.5075,-8.5553],[122.5034,-8.5628],[122.491,-8.5822],[122.4863,-8.5837],[122.4856,-8.5913],[122.4749,-8.6084],[122.4718,-8.6095],[122.4616,-8.6031],[122.4507,-8.6032],[122.4418,-8.6047],[122.4336,-8.6083],[122.4195,-8.6075],[122.409,-8.612],[122.4011,-8.6084],[122.3865,-8.61],[122.3829,-8.6087],[122.3728,-8.6112],[122.364,-8.6114],[122.3548,-8.6153],[122.3517,-8.6186],[122.3418,-8.6185],[122.3374,-8.6167],[122.3347,-8.619],[122.3295,-8.6186],[122.3171,-8.6328],[122.3128,-8.6323],[122.3093,-8.6358],[122.3039,-8.6372],[122.2969,-8.6422],[122.2896,-8.6417],[122.2812,-8.6366],[122.2727,-8.6369],[122.2672,-8.6327],[122.2603,-8.6338],[122.2513,-8.6327],[122.2399,-8.6276],[122.2339,-8.6269],[122.2273,-8.6221],[122.2214,-8.62],[122.2162,-8.6077],[122.2026,-8.604],[122.196,-8.5994],[122.1949,-8.5951],[122.1906,-8.5897],[122.1852,-8.5881],[122.1823,-8.5793],[122.1756,-8.575],[122.1702,-8.5661],[122.1577,-8.5547],[122.1521,-8.5526],[122.1388,-8.5495],[122.1321,-8.5448],[122.1272,-8.5441],[122.1177,-8.5369],[122.1057,-8.5311],[122.1039,-8.5288],[122.0979,-8.5294],[122.0892,-8.5345],[122.092,-8.5393],[122.0891,-8.5429],[122.083,-8.5427],[122.0801,-8.5364],[122.0799,-8.5301],[122.0776,-8.5267],[122.0713,-8.5237],[122.0612,-8.5222],[122.0586,-8.5301],[122.0527,-8.5287],[122.0461,-8.5248],[122.0436,-8.5198],[122.0407,-8.5204],[122.0393,-8.5275],[122.0305,-8.5288],[122.0238,-8.5258],[122.0202,-8.5304],[122.0133,-8.527],[122.0066,-8.5139],[121.9996,-8.516],[121.9979,-8.5251],[121.9903,-8.539],[121.9873,-8.5426],[121.9809,-8.545],[121.9768,-8.5508],[121.9811,-8.563],[121.9881,-8.5667],[121.9848,-8.576],[121.9807,-8.5792],[121.9804,-8.5847],[121.9855,-8.5914],[121.9856,-8.5958],[121.9821,-8.6051],[121.9844,-8.6099],[121.9682,-8.611],[121.9626,-8.6162],[121.9688,-8.6213],[121.968,-8.626],[121.9625,-8.6321],[121.9607,-8.6363],[121.9616,-8.648],[121.9585,-8.6575],[121.9585,-8.6709],[121.9471,-8.6787],[121.9422,-8.6934],[121.939,-8.6971],[121.9364,-8.7057],[121.927,-8.709],[121.9263,-8.7136],[121.9298,-8.7206],[121.9362,-8.7233],[121.9401,-8.727],[121.9407,-8.731],[121.9443,-8.737],[121.9438,-8.7415],[121.9476,-8.748],[121.9507,-8.749],[121.9595,-8.7558],[121.9641,-8.7563],[121.9688,-8.7598],[121.9708,-8.7509],[121.9757,-8.7518],[121.9839,-8.7512],[121.9908,-8.7557],[121.9947,-8.764],[121.9954,-8.7741],[121.9913,-8.7771],[121.9922,-8.7813],[121.9903,-8.7951],[121.9972,-8.8059],[122.0002,-8.8079],[122.0049,-8.8023],[122.0168,-8.7953],[122.0209,-8.7973],[122.0318,-8.7946],[122.0321,-8.7916],[122.0365,-8.7846],[122.0465,-8.7793],[122.0525,-8.7681],[122.0571,-8.7656],[122.0658,-8.7641],[122.0749,-8.7595],[122.0786,-8.7466],[122.084,-8.7414],[122.0961,-8.7362],[122.1083,-8.7346],[122.1173,-8.7296],[122.1288,-8.7311],[122.1327,-8.7293],[122.1437,-8.7295],[122.1455,-8.7283],[122.1751,-8.7298],[122.1816,-8.7325],[122.1916,-8.7435],[122.1945,-8.7492],[122.2026,-8.7486],[122.2056,-8.7508],[122.2141,-8.7493],[122.215,-8.7457],[122.2247,-8.7434],[122.2371,-8.7423],[122.2437,-8.7432],[122.2497,-8.7476],[122.2664,-8.7526],[122.2779,-8.7545],[122.284,-8.7545],[122.2862,-8.7498],[122.2941,-8.746],[122.2994,-8.7461],[122.3067,-8.7418],[122.3123,-8.7407],[122.3302,-8.7418],[122.3348,-8.7392],[122.3491,-8.7414],[122.3623,-8.7472],[122.3638,-8.7494],[122.3736,-8.7525],[122.3779,-8.7514],[122.3828,-8.7447],[122.3912,-8.7442],[122.4027,-8.7449],[122.4136,-8.7422],[122.4226,-8.7414],[122.43,-8.7348],[122.4427,-8.7331],[122.4519,-8.7367],[122.4621,-8.7321],[122.4704,-8.7323],[122.4705,-8.7286],[122.4769,-8.7226],[122.488,-8.7207],[122.4892,-8.7189],[122.5005,-8.7188],[122.5134,-8.7152],[122.5222,-8.7081],[122.5278,-8.7092],[122.533,-8.7036],[122.5397,-8.7013],[122.5426,-8.6924],[122.5464,-8.6881],[122.5544,-8.6731],[122.5558,-8.6676],[122.5669,-8.6644],[122.5774,-8.6651],[122.5869,-8.6624],[122.598,-8.6522],[122.6043,-8.6491],[122.6109,-8.6498],[122.6182,-8.6555],[122.6244,-8.6507],[122.6292,-8.6404],[122.6458,-8.6365],[122.6542,-8.6371],[122.6484,-8.6276],[122.6499,-8.6202],[122.6487,-8.6167],[122.6514,-8.6072],[122.6492,-8.6046],[122.6515,-8.5989],[122.6511,-8.5882],[122.6535,-8.578],[122.6558,-8.5622],[122.6585,-8.5605],[122.6592,-8.5527],[122.6634,-8.5477],[122.664,-8.5322],[122.6665,-8.5255],[122.6655,-8.5203],[122.6671,-8.5156],[122.671,-8.5126],[122.6746,-8.5024],[122.6803,-8.5006],[122.6799,-8.4971],[122.6865,-8.4863],[122.6863,-8.482],[122.6821,-8.4736],[122.6765,-8.467],[122.6781,-8.4634],[122.6736,-8.4592],[122.6791,-8.4553],[122.6849,-8.4372],[122.6838,-8.4218],[122.6792,-8.4205],[122.6767,-8.4125],[122.6822,-8.4075],[122.6841,-8.3998],[122.6824,-8.3956],[122.6835,-8.3866],[122.6822,-8.3833]]}},{"type":"Feature","properties":{"mhid":"1332:311","alt_name":"KABUPATEN SIKKA","latitude":-8.66667,"longitude":122.36667,"sample_value":988},"geometry":{"type":"LineString","coordinates":[[122.3148,-8.3451],[122.3102,-8.3466],[122.3071,-8.3517],[122.2988,-8.3566],[122.2935,-8.3542],[122.2846,-8.3544],[122.2841,-8.3569],[122.2756,-8.3659],[122.2762,-8.3684],[122.2858,-8.3687],[122.2926,-8.3636],[122.2985,-8.365],[122.299,-8.3684],[122.3072,-8.3686],[122.3174,-8.3543],[122.3237,-8.35],[122.3209,-8.3459],[122.3148,-8.3451]]}},{"type":"Feature","properties":{"mhid":"1332:311","alt_name":"KABUPATEN SIKKA","latitude":-8.66667,"longitude":122.36667,"sample_value":988},"geometry":{"type":"LineString","coordinates":[[121.707,-8.292],[121.7023,-8.2951],[121.6958,-8.2957],[121.6857,-8.3045],[121.6862,-8.3109],[121.6814,-8.3129],[121.6808,-8.3167],[121.6767,-8.3232],[121.6783,-8.3397],[121.6835,-8.3428],[121.6871,-8.3473],[121.6928,-8.3501],[121.7049,-8.3518],[121.7128,-8.3544],[121.7284,-8.3528],[121.7356,-8.3491],[121.7425,-8.3429],[121.7465,-8.3301],[121.7457,-8.3239],[121.7409,-8.3195],[121.7412,-8.3149],[121.7389,-8.3076],[121.7352,-8.3049],[121.73,-8.2966],[121.7213,-8.2967],[121.7139,-8.2926],[121.707,-8.292]]}},{"type":"Feature","properties":{"mhid":"1332:311","alt_name":"KABUPATEN SIKKA","latitude":-8.66667,"longitude":122.36667,"sample_value":988},"geometry":{"type":"LineString","coordinates":[[122.1313,-8.1075],[122.1265,-8.1078],[122.1207,-8.1123],[122.1134,-8.111],[122.1058,-8.1165],[122.1042,-8.1223],[122.11,-8.124],[122.1187,-8.1195],[122.1222,-8.1213],[122.1309,-8.1214],[122.1348,-8.1134],[122.1344,-8.1075],[122.1313,-8.1075]]}},{"type":"Feature","properties":{"mhid":"1332:312","alt_name":"KABUPATEN ENDE","latitude":-8.84056,"longitude":121.66389,"sample_value":477},"geometry":{"type":"LineString","coordinates":[[121.5285,-8.8558],[121.5242,-8.8501],[121.5183,-8.856],[121.5227,-8.873],[121.5179,-8.8791],[121.5132,-8.8778],[121.5091,-8.8814],[121.5089,-8.8902],[121.507,-8.8919],[121.5098,-8.8995],[121.5161,-8.907],[121.522,-8.9064],[121.529,-8.9002],[121.5326,-8.8936],[121.535,-8.8853],[121.5297,-8.8786],[121.5284,-8.872],[121.5332,-8.8648],[121.5309,-8.8573],[121.5285,-8.8558]]}},{"type":"Feature","properties":{"mhid":"1332:312","alt_name":"KABUPATEN ENDE","latitude":-8.84056,"longitude":121.66389,"sample_value":477},"geometry":{"type":"LineString","coordinates":[[122.0066,-8.5139],[122.0062,-8.509],[122.0109,-8.5074],[122.0125,-8.5036],[122.0091,-8.4951],[122.0093,-8.4868],[122.0141,-8.4817],[122.0139,-8.4791],[122.0191,-8.4724],[122.0177,-8.4622],[122.0226,-8.4575],[122.0221,-8.4522],[122.0259,-8.4452],[122.0145,-8.4405],[122.0079,-8.4422],[122.0069,-8.4472],[122.0016,-8.4503],[121.9953,-8.4488],[121.9917,-8.4529],[121.9862,-8.4495],[121.9756,-8.456],[121.9689,-8.4572],[121.9651,-8.4611],[121.965,-8.4643],[121.9594,-8.4724],[121.955,-8.4728],[121.9527,-8.4684],[121.958,-8.4619],[121.9519,-8.4559],[121.955,-8.4486],[121.9439,-8.4563],[121.9457,-8.4629],[121.9424,-8.4652],[121.942,-8.4694],[121.9323,-8.4785],[121.9316,-8.4825],[121.9272,-8.4852],[121.9232,-8.4903],[121.9134,-8.4956],[121.9053,-8.4938],[121.898,-8.4969],[121.895,-8.4947],[121.8846,-8.4988],[121.8816,-8.4961],[121.8744,-8.4988],[121.8594,-8.4934],[121.8551,-8.4942],[121.8455,-8.4869],[121.8436,-8.482],[121.8331,-8.4894],[121.8312,-8.4952],[121.8274,-8.4996],[121.8201,-8.5038],[121.8148,-8.5016],[121.8132,-8.5056],[121.8003,-8.5106],[121.7888,-8.5093],[121.7855,-8.5031],[121.7816,-8.5001],[121.7718,-8.503],[121.764,-8.5007],[121.7606,-8.5011],[121.7542,-8.4975],[121.7502,-8.498],[121.7349,-8.4945],[121.7255,-8.4945],[121.7208,-8.4981],[121.7096,-8.5016],[121.6994,-8.508],[121.6863,-8.5117],[121.6802,-8.512],[121.6733,-8.5089],[121.6672,-8.5026],[121.665,-8.4954],[121.6603,-8.494],[121.6563,-8.4997],[121.6507,-8.5014],[121.6419,-8.4988],[121.6372,-8.4857],[121.6441,-8.4813],[121.6389,-8.4749],[121.6309,-8.4717],[121.6225,-8.478],[121.6189,-8.4718],[121.6113,-8.4847],[121.6076,-8.4822],[121.605,-8.4914],[121.6065,-8.4985],[121.6026,-8.5069],[121.6072,-8.5156],[121.6021,-8.5243],[121.6027,-8.5303],[121.6012,-8.5354],[121.6026,-8.5438],[121.6058,-8.5447],[121.6122,-8.5537],[121.6113,-8.559],[121.6056,-8.5596],[121.5937,-8.55],[121.5912,-8.546],[121.5769,-8.5386],[121.5771,-8.5348],[121.5703,-8.5309],[121.5641,-8.5402],[121.566,-8.5425],[121.5663,-8.554],[121.5732,-8.5595],[121.5776,-8.56],[121.5817,-8.5648],[121.5816,-8.5694],[121.5779,-8.5746],[121.5745,-8.5762],[121.5656,-8.5742],[121.5591,-8.5768],[121.5532,-8.576],[121.5493,-8.5799],[121.5425,-8.5837],[121.5401,-8.5932],[121.5406,-8.6003],[121.5319,-8.601],[121.5259,-8.5956],[121.5253,-8.6025],[121.5285,-8.6091],[121.5265,-8.612],[121.5203,-8.6143],[121.5232,-8.6212],[121.5234,-8.6273],[121.5191,-8.6353],[121.5042,-8.6363],[121.4947,-8.6395],[121.4824,-8.6533],[121.4727,-8.6581],[121.4716,-8.663],[121.4645,-8.6639],[121.4622,-8.6681],[121.4483,-8.6689],[121.4464,-8.6717],[121.4418,-8.6692],[121.4368,-8.6717],[121.432,-8.6711],[121.4282,-8.6778],[121.4301,-8.6807],[121.426,-8.6865],[121.4191,-8.6929],[121.4161,-8.6939],[121.4029,-8.7075],[121.3999,-8.714],[121.395,-8.7194],[121.3957,-8.7255],[121.4008,-8.7331],[121.4045,-8.7355],[121.4101,-8.736],[121.4129,-8.7423],[121.4161,-8.7439],[121.4177,-8.7516],[121.4156,-8.7548],[121.4165,-8.7688],[121.4148,-8.7719],[121.4173,-8.7832],[121.4157,-8.788],[121.4153,-8.7943],[121.4276,-8.7936],[121.4294,-8.795],[121.441,-8.7954],[121.4624,-8.7991],[121.4697,-8.7984],[121.4856,-8.7988],[121.5026,-8.8038],[121.5456,-8.8096],[121.5487,-8.8055],[121.5526,-8.805],[121.5572,-8.8013],[121.5695,-8.7978],[121.5772,-8.7992],[121.5869,-8.8029],[121.5949,-8.8087],[121.5951,-8.8119],[121.6009,-8.8168],[121.6028,-8.8214],[121.6092,-8.8257],[121.6187,-8.8295],[121.6217,-8.8294],[121.6351,-8.8344],[121.6401,-8.8384],[121.6428,-8.8437],[121.6425,-8.8493],[121.6339,-8.8651],[121.629,-8.8773],[121.625,-8.8931],[121.6265,-8.8982],[121.636,-8.9017],[121.6393,-8.9055],[121.6463,-8.905],[121.6523,-8.8998],[121.6544,-8.8928],[121.6619,-8.8862],[121.6637,-8.8817],[121.6645,-8.8734],[121.6617,-8.8654],[121.6613,-8.8561],[121.6688,-8.849],[121.6824,-8.8462],[121.7011,-8.8519],[121.7108,-8.8562],[121.7225,-8.863],[121.7288,-8.8684],[121.7351,-8.8776],[121.7431,-8.8773],[121.7523,-8.8794],[121.769,-8.8814],[121.772,-8.8833],[121.7774,-8.883],[121.7867,-8.878],[121.7916,-8.8775],[121.8012,-8.8719],[121.81,-8.8726],[121.8197,-8.8663],[121.8207,-8.8617],[121.8252,-8.858],[121.8321,-8.8565],[121.8357,-8.8528],[121.8408,-8.851],[121.8496,-8.8512],[121.8546,-8.8456],[121.8581,-8.8372],[121.8669,-8.8337],[121.8742,-8.8333],[121.881,-8.8293],[121.8883,-8.828],[121.8946,-8.8309],[121.9058,-8.8297],[121.9093,-8.832],[121.9194,-8.8302],[121.924,-8.8317],[121.9307,-8.8296],[121.9358,-8.8264],[121.9436,-8.8254],[121.9528,-8.8199],[121.9562,-8.8202],[121.9657,-8.8158],[121.9685,-8.8126],[121.9797,-8.8128],[121.9821,-8.8103],[121.9972,-8.8059],[121.9903,-8.7951],[121.9922,-8.7813],[121.9913,-8.7771],[121.9954,-8.7741],[121.9947,-8.764],[121.9908,-8.7557],[121.9839,-8.7512],[121.9757,-8.7518],[121.9708,-8.7509],[121.9688,-8.7598],[121.9641,-8.7563],[121.9595,-8.7558],[121.9507,-8.749],[121.9476,-8.748],[121.9438,-8.7415],[121.9443,-8.737],[121.9407,-8.731],[121.9401,-8.727],[121.9362,-8.7233],[121.9298,-8.7206],[121.9263,-8.7136],[121.927,-8.709],[121.9364,-8.7057],[121.939,-8.6971],[121.9422,-8.6934],[121.9471,-8.6787],[121.9585,-8.6709],[121.9585,-8.6575],[121.9616,-8.648],[121.9607,-8.6363],[121.9625,-8.6321],[121.968,-8.626],[121.9688,-8.6213],[121.9626,-8.6162],[121.9682,-8.611],[121.9844,-8.6099],[121.9821,-8.6051],[121.9856,-8.5958],[121.9855,-8.5914],[121.9804,-8.5847],[121.9807,-8.5792],[121.9848,-8.576],[121.9881,-8.5667],[121.9811,-8.563],[121.9768,-8.5508],[121.9809,-8.545],[121.9873,-8.5426],[121.9903,-8.539],[121.9979,-8.5251],[121.9996,-8.516],[122.0066,-8.5139]]}},{"type":"Feature","properties":{"mhid":"1332:313","alt_name":"KABUPATEN NGADA","latitude":-8.66667,"longitude":121,"sample_value":102},"geometry":{"type":"LineString","coordinates":[[121.1732,-8.4407],[121.1659,-8.4435],[121.1607,-8.4409],[121.1564,-8.4351],[121.1506,-8.4338],[121.1432,-8.426],[121.1393,-8.4283],[121.1284,-8.4264],[121.1159,-8.4285],[121.1033,-8.4253],[121.0944,-8.4182],[121.0875,-8.4204],[121.0725,-8.4125],[121.0634,-8.4107],[121.0506,-8.4117],[121.0408,-8.4157],[121.0309,-8.4136],[121.0238,-8.4141],[121.0158,-8.4028],[121.0148,-8.3981],[121.009,-8.3965],[121.0103,-8.3921],[121.0001,-8.3937],[120.9921,-8.393],[120.9905,-8.3841],[120.9848,-8.3781],[120.9789,-8.3756],[120.9785,-8.3807],[120.9738,-8.3811],[120.9704,-8.3738],[120.9632,-8.3697],[120.9652,-8.3641],[120.9719,-8.3666],[120.9738,-8.3705],[120.9803,-8.3668],[120.982,-8.3592],[120.9859,-8.3524],[120.9846,-8.3499],[120.9643,-8.3447],[120.9517,-8.3441],[120.9435,-8.3456],[120.9439,-8.3483],[120.9497,-8.3553],[120.9563,-8.3691],[120.9495,-8.3709],[120.9497,-8.3765],[120.9453,-8.3811],[120.9424,-8.391],[120.9426,-8.3979],[120.9412,-8.4014],[120.9302,-8.4058],[120.9266,-8.4121],[120.9274,-8.4193],[120.9222,-8.43],[120.9149,-8.4383],[120.9126,-8.4436],[120.9108,-8.4567],[120.9154,-8.4598],[120.9234,-8.4676],[120.9237,-8.4701],[120.9195,-8.4754],[120.9129,-8.4784],[120.904,-8.4797],[120.8975,-8.4837],[120.8919,-8.4838],[120.8882,-8.4813],[120.8873,-8.4771],[120.8813,-8.4789],[120.8798,-8.4827],[120.8742,-8.4845],[120.8704,-8.4964],[120.8681,-8.5002],[120.8522,-8.5043],[120.852,-8.508],[120.8481,-8.5094],[120.8453,-8.5176],[120.8498,-8.5184],[120.8513,-8.5224],[120.8507,-8.5307],[120.8515,-8.538],[120.8577,-8.5444],[120.8657,-8.5508],[120.8743,-8.5634],[120.87,-8.5688],[120.8627,-8.5694],[120.8605,-8.5731],[120.8642,-8.5825],[120.8691,-8.5853],[120.869,-8.5912],[120.8731,-8.5958],[120.8785,-8.5976],[120.8814,-8.6044],[120.8815,-8.6176],[120.8849,-8.6199],[120.8886,-8.6264],[120.8883,-8.6306],[120.883,-8.6352],[120.8858,-8.6406],[120.8853,-8.6472],[120.8914,-8.6502],[120.8898,-8.6564],[120.8843,-8.6647],[120.8809,-8.6664],[120.8806,-8.6814],[120.8787,-8.6866],[120.8706,-8.6958],[120.8605,-8.699],[120.8565,-8.7045],[120.8507,-8.7057],[120.8467,-8.7041],[120.8441,-8.7104],[120.8459,-8.7147],[120.8439,-8.72],[120.8505,-8.7218],[120.851,-8.7291],[120.8552,-8.7302],[120.854,-8.7362],[120.8563,-8.7414],[120.8549,-8.7507],[120.8503,-8.7525],[120.8462,-8.7613],[120.8431,-8.7715],[120.8406,-8.7762],[120.8448,-8.7834],[120.8379,-8.7875],[120.8304,-8.7968],[120.8289,-8.8062],[120.8245,-8.8153],[120.8237,-8.8217],[120.8164,-8.8251],[120.8113,-8.8256],[120.81,-8.8297],[120.8191,-8.8359],[120.8225,-8.836],[120.8262,-8.8323],[120.8357,-8.8289],[120.8429,-8.8327],[120.8469,-8.8332],[120.8542,-8.8407],[120.857,-8.8538],[120.8675,-8.8676],[120.8666,-8.8769],[120.8693,-8.8836],[120.8736,-8.8869],[120.8812,-8.8874],[120.8862,-8.8921],[120.8871,-8.8957],[120.9015,-8.9061],[120.9036,-8.9119],[120.9142,-8.9211],[120.9209,-8.9252],[120.9292,-8.9287],[120.9321,-8.9335],[120.936,-8.9337],[120.9465,-8.9399],[120.9588,-8.9448],[120.9705,-8.9463],[120.9757,-8.9435],[120.9813,-8.9443],[120.9866,-8.9514],[121.0151,-8.9564],[121.0169,-8.9543],[121.0241,-8.9537],[121.0311,-8.9562],[121.0388,-8.9543],[121.0434,-8.9496],[121.0513,-8.9466],[121.0565,-8.948],[121.068,-8.9356],[121.0769,-8.9303],[121.0809,-8.9306],[121.0847,-8.9259],[121.0957,-8.9201],[121.1029,-8.9192],[121.1057,-8.9163],[121.1135,-8.916],[121.115,-8.9133],[121.1226,-8.9093],[121.1265,-8.9095],[121.1352,-8.9036],[121.1393,-8.898],[121.1367,-8.8938],[121.1264,-8.8839],[121.125,-8.8787],[121.1188,-8.8794],[121.1153,-8.8753],[121.1167,-8.8679],[121.1207,-8.8622],[121.1204,-8.8581],[121.1235,-8.8545],[121.1296,-8.8533],[121.1338,-8.8503],[121.1401,-8.8431],[121.1363,-8.8377],[121.1352,-8.8302],[121.1289,-8.8124],[121.1234,-8.8071],[121.1216,-8.8027],[121.1237,-8.7928],[121.1138,-8.7859],[121.1101,-8.7778],[121.1019,-8.7736],[121.1006,-8.7678],[121.096,-8.7594],[121.0999,-8.749],[121.1031,-8.7467],[121.1024,-8.7373],[121.1,-8.7364],[121.1051,-8.7262],[121.1112,-8.7244],[121.1138,-8.7214],[121.1157,-8.7095],[121.1202,-8.7096],[121.1278,-8.7024],[121.1416,-8.7011],[121.149,-8.6946],[121.1488,-8.6923],[121.1339,-8.6892],[121.13,-8.684],[121.1218,-8.687],[121.1158,-8.6834],[121.1092,-8.6819],[121.1126,-8.6771],[121.1111,-8.6716],[121.1146,-8.6676],[121.1174,-8.6535],[121.1201,-8.6522],[121.1202,-8.6469],[121.1246,-8.6456],[121.1266,-8.6344],[121.1259,-8.6261],[121.1266,-8.617],[121.1322,-8.6016],[121.1317,-8.5946],[121.1293,-8.5921],[121.1333,-8.5852],[121.1327,-8.5828],[121.1404,-8.578],[121.1435,-8.572],[121.1418,-8.5553],[121.1451,-8.5496],[121.1534,-8.546],[121.156,-8.542],[121.1661,-8.534],[121.172,-8.5253],[121.1717,-8.5195],[121.1758,-8.519],[121.1839,-8.512],[121.1837,-8.5001],[121.1725,-8.4884],[121.1672,-8.486],[121.1616,-8.4779],[121.1736,-8.4678],[121.1798,-8.4594],[121.1798,-8.4551],[121.1749,-8.4464],[121.1732,-8.4407]]}},{"type":"Feature","properties":{"mhid":"1332:314","alt_name":"KABUPATEN MANGGARAI","latitude":-8.56667,"longitude":120.41667,"sample_value":941},"geometry":{"type":"LineString","coordinates":[[120.296,-8.8725],[120.2879,-8.8684],[120.2829,-8.8696],[120.274,-8.8762],[120.2677,-8.8844],[120.2654,-8.8899],[120.2566,-8.9023],[120.2727,-8.9155],[120.2797,-8.9128],[120.2874,-8.9121],[120.2984,-8.9044],[120.3061,-8.9002],[120.3046,-8.8936],[120.3057,-8.8908],[120.3048,-8.8802],[120.3014,-8.8753],[120.296,-8.8725]]}},{"type":"Feature","properties":{"mhid":"1332:314","alt_name":"KABUPATEN MANGGARAI","latitude":-8.56667,"longitude":120.41667,"sample_value":941},"geometry":{"type":"LineString","coordinates":[[120.4928,-8.2927],[120.4689,-8.2956],[120.4639,-8.2943],[120.4593,-8.2867],[120.4514,-8.2852],[120.4501,-8.2826],[120.4524,-8.2738],[120.4524,-8.2686],[120.4485,-8.2584],[120.4445,-8.2547],[120.4423,-8.2486],[120.4335,-8.2444],[120.4286,-8.2409],[120.4191,-8.2445],[120.4137,-8.2514],[120.4144,-8.2622],[120.4126,-8.2677],[120.4129,-8.2728],[120.4082,-8.2804],[120.3958,-8.283],[120.3882,-8.288],[120.3832,-8.2889],[120.3768,-8.2876],[120.373,-8.2917],[120.3622,-8.2951],[120.3503,-8.2886],[120.3408,-8.2873],[120.3377,-8.2825],[120.3305,-8.2809],[120.3277,-8.2828],[120.3115,-8.2835],[120.3065,-8.2823],[120.2985,-8.2849],[120.2916,-8.2807],[120.2895,-8.2882],[120.2888,-8.2988],[120.2905,-8.3018],[120.2903,-8.3082],[120.2925,-8.3118],[120.2908,-8.3177],[120.291,-8.3275],[120.2885,-8.3307],[120.2861,-8.3398],[120.289,-8.3458],[120.288,-8.3509],[120.289,-8.3571],[120.2859,-8.3767],[120.2859,-8.3853],[120.283,-8.3917],[120.2848,-8.4087],[120.283,-8.4177],[120.284,-8.4226],[120.2931,-8.4313],[120.2958,-8.4397],[120.3063,-8.4514],[120.312,-8.4501],[120.3214,-8.4446],[120.3256,-8.4376],[120.3298,-8.4358],[120.3334,-8.4405],[120.3375,-8.4371],[120.3369,-8.4337],[120.3456,-8.4262],[120.3525,-8.4258],[120.3575,-8.4297],[120.3655,-8.4292],[120.3696,-8.4311],[120.3769,-8.4289],[120.3817,-8.4296],[120.3894,-8.4253],[120.3901,-8.4296],[120.396,-8.43],[120.396,-8.4387],[120.3993,-8.4439],[120.3988,-8.4508],[120.3956,-8.4519],[120.3942,-8.4605],[120.3898,-8.4613],[120.3876,-8.4834],[120.3839,-8.488],[120.3807,-8.4879],[120.381,-8.4943],[120.3763,-8.4988],[120.3739,-8.506],[120.3725,-8.5142],[120.3625,-8.5184],[120.3614,-8.5208],[120.3523,-8.5245],[120.3605,-8.5477],[120.3584,-8.5591],[120.3612,-8.5685],[120.3517,-8.5719],[120.3427,-8.571],[120.3357,-8.5638],[120.3325,-8.5583],[120.319,-8.5681],[120.3175,-8.5785],[120.3148,-8.5832],[120.3009,-8.5849],[120.2909,-8.5906],[120.2853,-8.5972],[120.2847,-8.6063],[120.2822,-8.6094],[120.2806,-8.6255],[120.2889,-8.6331],[120.2895,-8.6421],[120.2863,-8.6452],[120.2815,-8.6451],[120.2818,-8.6517],[120.2865,-8.6566],[120.2944,-8.6619],[120.2968,-8.6721],[120.3037,-8.6752],[120.3068,-8.6747],[120.3106,-8.6699],[120.3144,-8.6699],[120.319,-8.6787],[120.3239,-8.6838],[120.3318,-8.6887],[120.3327,-8.693],[120.3274,-8.709],[120.3268,-8.7176],[120.3223,-8.7222],[120.3138,-8.7249],[120.3135,-8.7336],[120.3033,-8.7417],[120.2936,-8.7564],[120.2841,-8.7594],[120.2738,-8.7594],[120.2717,-8.7645],[120.2815,-8.7788],[120.2827,-8.786],[120.2811,-8.789],[120.2646,-8.7899],[120.2617,-8.795],[120.2562,-8.7962],[120.251,-8.7952],[120.24,-8.8043],[120.2364,-8.811],[120.233,-8.8122],[120.24,-8.83],[120.2338,-8.8374],[120.2281,-8.8415],[120.233,-8.8443],[120.2457,-8.8454],[120.2505,-8.8488],[120.2648,-8.8464],[120.2682,-8.8472],[120.278,-8.8536],[120.2943,-8.845],[120.2978,-8.8443],[120.3075,-8.8502],[120.3114,-8.8552],[120.3173,-8.8536],[120.3199,-8.8494],[120.3311,-8.8417],[120.3354,-8.8355],[120.3397,-8.8333],[120.345,-8.8338],[120.3553,-8.8306],[120.3633,-8.8245],[120.3659,-8.825],[120.3709,-8.8191],[120.3762,-8.8194],[120.3827,-8.8173],[120.3863,-8.8193],[120.3914,-8.8262],[120.3937,-8.8267],[120.4045,-8.824],[120.4207,-8.8169],[120.4299,-8.8195],[120.4379,-8.8136],[120.4472,-8.8163],[120.459,-8.8181],[120.4697,-8.8171],[120.4785,-8.8205],[120.4861,-8.8196],[120.4897,-8.8213],[120.5094,-8.819],[120.5137,-8.821],[120.5184,-8.8184],[120.5138,-8.8156],[120.5131,-8.808],[120.5093,-8.7946],[120.5084,-8.7857],[120.5039,-8.7813],[120.5085,-8.7738],[120.5059,-8.7681],[120.5073,-8.761],[120.5073,-8.7526],[120.5026,-8.7463],[120.5014,-8.7382],[120.5024,-8.7258],[120.5019,-8.7198],[120.4962,-8.7119],[120.4908,-8.7016],[120.4809,-8.6948],[120.4782,-8.6913],[120.4685,-8.6732],[120.4753,-8.6661],[120.4791,-8.6598],[120.4814,-8.6524],[120.4871,-8.6506],[120.492,-8.645],[120.505,-8.643],[120.5166,-8.6382],[120.5239,-8.638],[120.5224,-8.63],[120.5242,-8.6174],[120.5235,-8.6104],[120.527,-8.6058],[120.5267,-8.6025],[120.5175,-8.5924],[120.516,-8.5803],[120.5106,-8.5764],[120.5121,-8.5706],[120.5108,-8.5643],[120.5158,-8.5586],[120.5152,-8.5543],[120.5175,-8.5478],[120.5301,-8.5379],[120.5301,-8.5334],[120.534,-8.5263],[120.5321,-8.5233],[120.5402,-8.5188],[120.5411,-8.5126],[120.5449,-8.5064],[120.5463,-8.4998],[120.5457,-8.4921],[120.5424,-8.4908],[120.5381,-8.4724],[120.5357,-8.4691],[120.5322,-8.4597],[120.535,-8.4517],[120.5303,-8.4474],[120.5268,-8.4395],[120.52,-8.4308],[120.5206,-8.4252],[120.5172,-8.4236],[120.517,-8.4176],[120.5119,-8.413],[120.5135,-8.4089],[120.5062,-8.4069],[120.5018,-8.404],[120.4985,-8.3964],[120.4989,-8.3937],[120.4892,-8.3886],[120.4845,-8.3832],[120.4781,-8.3821],[120.478,-8.3674],[120.4795,-8.3628],[120.4774,-8.3594],[120.4783,-8.3544],[120.4835,-8.3501],[120.4819,-8.3418],[120.4829,-8.3358],[120.4801,-8.3296],[120.4821,-8.3144],[120.4846,-8.3133],[120.4918,-8.3159],[120.4957,-8.3067],[120.4958,-8.3],[120.4928,-8.2927]]}},{"type":"Feature","properties":{"mhid":"1332:315","alt_name":"KABUPATEN ROTE NDAO","latitude":-10.73617,"longitude":123.12054,"sample_value":166},"geometry":{"type":"LineString","coordinates":[[122.8714,-10.9688],[122.8633,-10.964],[122.8547,-10.9686],[122.8452,-10.9695],[122.847,-10.9766],[122.8464,-10.9823],[122.8537,-10.9933],[122.858,-10.9953],[122.8677,-11.0042],[122.8724,-11.0072],[122.8827,-11.005],[122.8867,-10.9983],[122.8856,-10.9903],[122.8819,-10.9781],[122.8714,-10.9688]]}},{"type":"Feature","properties":{"mhid":"1332:315","alt_name":"KABUPATEN ROTE NDAO","latitude":-10.73617,"longitude":123.12054,"sample_value":166},"geometry":{"type":"LineString","coordinates":[[122.9578,-10.9173],[122.9524,-10.9159],[122.9483,-10.92],[122.9383,-10.9154],[122.9353,-10.9158],[122.9302,-10.9244],[122.933,-10.9362],[122.9381,-10.9399],[122.9425,-10.9407],[122.9474,-10.9384],[122.9551,-10.9381],[122.957,-10.9316],[122.961,-10.9304],[122.9663,-10.9225],[122.9705,-10.9191],[122.9578,-10.9173]]}},{"type":"Feature","properties":{"mhid":"1332:315","alt_name":"KABUPATEN ROTE NDAO","latitude":-10.73617,"longitude":123.12054,"sample_value":166},"geometry":{"type":"LineString","coordinates":[[122.9918,-10.9079],[122.9876,-10.9083],[122.9829,-10.912],[122.9784,-10.9114],[122.977,-10.9153],[122.9859,-10.9239],[122.9947,-10.9235],[123.0004,-10.9193],[122.998,-10.9172],[122.999,-10.9118],[122.9918,-10.9079]]}},{"type":"Feature","properties":{"mhid":"1332:315","alt_name":"KABUPATEN ROTE NDAO","latitude":-10.73617,"longitude":123.12054,"sample_value":166},"geometry":{"type":"LineString","coordinates":[[122.7385,-10.8243],[122.7337,-10.8256],[122.7305,-10.8303],[122.7334,-10.8347],[122.7401,-10.8349],[122.749,-10.8284],[122.7457,-10.8249],[122.7385,-10.8243]]}},{"type":"Feature","properties":{"mhid":"1332:315","alt_name":"KABUPATEN ROTE NDAO","latitude":-10.73617,"longitude":123.12054,"sample_value":166},"geometry":{"type":"LineString","coordinates":[[122.6683,-10.8001],[122.6662,-10.7985],[122.6506,-10.8016],[122.6424,-10.8024],[122.6399,-10.8059],[122.6542,-10.8169],[122.6624,-10.8243],[122.6778,-10.8339],[122.6814,-10.8315],[122.6862,-10.834],[122.6877,-10.8278],[122.6815,-10.8202],[122.674,-10.8153],[122.6694,-10.8091],[122.6683,-10.8001]]}},{"type":"Feature","properties":{"mhid":"1332:315","alt_name":"KABUPATEN ROTE NDAO","latitude":-10.73617,"longitude":123.12054,"sample_value":166},"geometry":{"type":"LineString","coordinates":[[122.7731,-10.7723],[122.7641,-10.7723],[122.7553,-10.774],[122.75,-10.7776],[122.7499,-10.7855],[122.754,-10.7883],[122.762,-10.7892],[122.7695,-10.7873],[122.7837,-10.7821],[122.7871,-10.7746],[122.7854,-10.7732],[122.7731,-10.7723]]}},{"type":"Feature","properties":{"mhid":"1332:315","alt_name":"KABUPATEN ROTE NDAO","latitude":-10.73617,"longitude":123.12054,"sample_value":166},"geometry":{"type":"LineString","coordinates":[[122.9569,-10.7303],[122.9549,-10.7276],[122.9463,-10.728],[122.9488,-10.7326],[122.9569,-10.7303]]}},{"type":"Feature","properties":{"mhid":"1332:315","alt_name":"KABUPATEN ROTE NDAO","latitude":-10.73617,"longitude":123.12054,"sample_value":166},"geometry":{"type":"LineString","coordinates":[[123.4268,-10.4909],[123.4214,-10.491],[123.4157,-10.4935],[123.408,-10.4942],[123.4038,-10.4993],[123.4024,-10.511],[123.4065,-10.5159],[123.4035,-10.5198],[123.3992,-10.5197],[123.3947,-10.5233],[123.3941,-10.5264],[123.3893,-10.5315],[123.3874,-10.5365],[123.3799,-10.5406],[123.3747,-10.545],[123.3805,-10.5465],[123.3809,-10.558],[123.3828,-10.5606],[123.3876,-10.5586],[123.391,-10.5513],[123.399,-10.5373],[123.4064,-10.5358],[123.4124,-10.5313],[123.4128,-10.5258],[123.4244,-10.5199],[123.4278,-10.5166],[123.4286,-10.5123],[123.4327,-10.5068],[123.4354,-10.5092],[123.4396,-10.5061],[123.4422,-10.501],[123.442,-10.4953],[123.4394,-10.4922],[123.4344,-10.493],[123.4268,-10.4909]]}},{"type":"Feature","properties":{"mhid":"1332:315","alt_name":"KABUPATEN ROTE NDAO","latitude":-10.73617,"longitude":123.12054,"sample_value":166},"geometry":{"type":"LineString","coordinates":[[123.3787,-10.431],[123.3741,-10.4314],[123.3691,-10.4401],[123.3725,-10.4491],[123.3716,-10.4528],[123.3758,-10.4573],[123.3718,-10.4657],[123.365,-10.4698],[123.3693,-10.4783],[123.3499,-10.4871],[123.3491,-10.4823],[123.3393,-10.4861],[123.3337,-10.4913],[123.326,-10.5005],[123.3089,-10.5059],[123.2942,-10.5096],[123.288,-10.5171],[123.2841,-10.5146],[123.2792,-10.5195],[123.2728,-10.5183],[123.2634,-10.5213],[123.2554,-10.5311],[123.2511,-10.5343],[123.2392,-10.5535],[123.2344,-10.5592],[123.231,-10.5664],[123.221,-10.5695],[123.2132,-10.5797],[123.2185,-10.5842],[123.2207,-10.5926],[123.2244,-10.5966],[123.2288,-10.5958],[123.2448,-10.6029],[123.2535,-10.6034],[123.2584,-10.5958],[123.2642,-10.5933],[123.2771,-10.5795],[123.2849,-10.5804],[123.2957,-10.5791],[123.3001,-10.5773],[123.3137,-10.5768],[123.316,-10.5811],[123.3123,-10.5912],[123.3096,-10.5936],[123.2965,-10.5953],[123.2932,-10.5939],[123.2878,-10.5991],[123.2822,-10.6],[123.275,-10.6047],[123.2706,-10.6047],[123.2673,-10.6008],[123.2631,-10.6038],[123.2561,-10.6057],[123.2467,-10.6045],[123.2374,-10.6014],[123.2346,-10.6048],[123.2293,-10.6052],[123.2217,-10.5972],[123.2138,-10.595],[123.2069,-10.5914],[123.203,-10.5913],[123.1948,-10.5939],[123.1895,-10.605],[123.1919,-10.6142],[123.1888,-10.6209],[123.1805,-10.6308],[123.1773,-10.6369],[123.1677,-10.6439],[123.1628,-10.6448],[123.1605,-10.6498],[123.1532,-10.6503],[123.1498,-10.6526],[123.1436,-10.6523],[123.1341,-10.6477],[123.1328,-10.6443],[123.1265,-10.6458],[123.1159,-10.6618],[123.1089,-10.6638],[123.1093,-10.6693],[123.1002,-10.6744],[123.0939,-10.6717],[123.0929,-10.6809],[123.0873,-10.6867],[123.0804,-10.6893],[123.0765,-10.693],[123.0713,-10.703],[123.0677,-10.7049],[123.0639,-10.7023],[123.0605,-10.7097],[123.05,-10.7209],[123.0481,-10.725],[123.0441,-10.726],[123.0423,-10.7296],[123.0339,-10.7295],[123.0287,-10.7249],[123.0225,-10.7295],[123.0205,-10.7346],[123.014,-10.7301],[123.0079,-10.7301],[123.0012,-10.7331],[122.9969,-10.7322],[122.9867,-10.7335],[122.9852,-10.7396],[122.9744,-10.7431],[122.9589,-10.7418],[122.9563,-10.7441],[122.9475,-10.7462],[122.9374,-10.7371],[122.9335,-10.7365],[122.9327,-10.7417],[122.9277,-10.7428],[122.9225,-10.7472],[122.9129,-10.7464],[122.9092,-10.7506],[122.9002,-10.752],[122.898,-10.7553],[122.8888,-10.7574],[122.874,-10.7555],[122.8627,-10.7568],[122.8539,-10.7626],[122.8511,-10.7674],[122.8463,-10.7709],[122.8341,-10.7742],[122.8333,-10.7782],[122.8376,-10.7831],[122.8372,-10.7879],[122.8259,-10.7863],[122.8253,-10.7812],[122.8224,-10.78],[122.81,-10.782],[122.8048,-10.7964],[122.8042,-10.8026],[122.8128,-10.8161],[122.8195,-10.8204],[122.8256,-10.8341],[122.824,-10.8417],[122.8273,-10.8473],[122.8305,-10.8594],[122.8311,-10.8707],[122.8299,-10.8747],[122.8213,-10.8917],[122.8216,-10.9071],[122.8239,-10.9143],[122.8221,-10.9193],[122.8248,-10.9231],[122.8337,-10.9273],[122.8343,-10.9312],[122.8408,-10.9379],[122.8466,-10.9419],[122.8559,-10.9398],[122.8595,-10.9333],[122.8575,-10.9278],[122.8607,-10.9198],[122.8749,-10.9144],[122.8825,-10.9156],[122.8886,-10.9146],[122.8978,-10.9109],[122.9017,-10.9129],[122.8977,-10.9204],[122.9032,-10.9207],[122.9054,-10.9171],[122.9029,-10.9119],[122.9101,-10.9119],[122.9065,-10.9226],[122.9115,-10.9249],[122.9195,-10.9206],[122.9232,-10.9149],[122.929,-10.9154],[122.9399,-10.911],[122.9498,-10.9041],[122.9538,-10.907],[122.9607,-10.9077],[122.969,-10.9148],[122.973,-10.9133],[122.9696,-10.9067],[122.9667,-10.9063],[122.9646,-10.9007],[122.9565,-10.8987],[122.949,-10.8927],[122.9497,-10.8872],[122.9583,-10.8805],[122.9646,-10.879],[122.9638,-10.8755],[122.9687,-10.8702],[122.98,-10.8649],[122.9821,-10.8653],[122.9887,-10.8605],[123.0055,-10.8589],[123.011,-10.8644],[123.0128,-10.8621],[123.0182,-10.8666],[123.0207,-10.8626],[123.0263,-10.8589],[123.0339,-10.8574],[123.0427,-10.8572],[123.052,-10.8556],[123.0611,-10.8578],[123.0683,-10.8563],[123.0708,-10.8478],[123.0829,-10.8567],[123.0893,-10.8567],[123.0941,-10.8479],[123.094,-10.8447],[123.1018,-10.8344],[123.1028,-10.8314],[123.1105,-10.8267],[123.1188,-10.8232],[123.1256,-10.8181],[123.1447,-10.8143],[123.1498,-10.8143],[123.1593,-10.8166],[123.1738,-10.8283],[123.1846,-10.8322],[123.1892,-10.8369],[123.1955,-10.8325],[123.1984,-10.8253],[123.2093,-10.8217],[123.2162,-10.8232],[123.223,-10.8267],[123.2281,-10.8187],[123.2285,-10.8061],[123.2302,-10.7987],[123.2418,-10.7846],[123.2449,-10.7769],[123.243,-10.7726],[123.243,-10.764],[123.2369,-10.7568],[123.2402,-10.7495],[123.2467,-10.7505],[123.2458,-10.7456],[123.2512,-10.7365],[123.2542,-10.7336],[123.2583,-10.7351],[123.2619,-10.7331],[123.2663,-10.734],[123.2703,-10.7296],[123.2828,-10.7282],[123.287,-10.7248],[123.2945,-10.7232],[123.3043,-10.7127],[123.3042,-10.7052],[123.3099,-10.7005],[123.3137,-10.7005],[123.3212,-10.6969],[123.3254,-10.6926],[123.3288,-10.6921],[123.3307,-10.6875],[123.3273,-10.6838],[123.3306,-10.6788],[123.3354,-10.6773],[123.338,-10.6816],[123.3456,-10.6863],[123.3508,-10.684],[123.3576,-10.6844],[123.3641,-10.6812],[123.3683,-10.6884],[123.3748,-10.687],[123.3792,-10.6907],[123.3858,-10.6877],[123.391,-10.6822],[123.3956,-10.6864],[123.4012,-10.6868],[123.4072,-10.6807],[123.4096,-10.6743],[123.4059,-10.6687],[123.413,-10.6604],[123.4204,-10.6567],[123.4254,-10.6566],[123.427,-10.6533],[123.425,-10.6483],[123.4271,-10.6393],[123.4251,-10.6354],[123.4259,-10.6251],[123.4206,-10.6137],[123.4164,-10.6088],[123.4119,-10.61],[123.4053,-10.6093],[123.3963,-10.6013],[123.3894,-10.5969],[123.3824,-10.5968],[123.3776,-10.6007],[123.3706,-10.5996],[123.3674,-10.6012],[123.3596,-10.6],[123.3518,-10.597],[123.3492,-10.5911],[123.3442,-10.5894],[123.3458,-10.5855],[123.3513,-10.5861],[123.3605,-10.582],[123.3685,-10.5835],[123.37,-10.5809],[123.3835,-10.5685],[123.3843,-10.5633],[123.3808,-10.5614],[123.3786,-10.5537],[123.3681,-10.554],[123.3585,-10.5513],[123.3634,-10.5449],[123.3657,-10.5348],[123.3687,-10.5294],[123.3719,-10.5308],[123.3747,-10.5271],[123.3796,-10.5298],[123.3837,-10.5294],[123.3898,-10.517],[123.3909,-10.5093],[123.3938,-10.5063],[123.3984,-10.5073],[123.3982,-10.5008],[123.3912,-10.5002],[123.3874,-10.4933],[123.3876,-10.4868],[123.3901,-10.4812],[123.3954,-10.4773],[123.3991,-10.4773],[123.4024,-10.4731],[123.4056,-10.4753],[123.4119,-10.4728],[123.4098,-10.47],[123.4078,-10.4597],[123.4049,-10.4551],[123.389,-10.4411],[123.3787,-10.431]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.7864,-8.7945],[119.7827,-8.7913],[119.7707,-8.8111],[119.7711,-8.8193],[119.7756,-8.8225],[119.7848,-8.8208],[119.7891,-8.8256],[119.7946,-8.824],[119.801,-8.8143],[119.803,-8.8009],[119.8005,-8.7983],[119.7864,-8.7945]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.655,-8.7843],[119.6459,-8.7936],[119.6355,-8.7979],[119.632,-8.8017],[119.6306,-8.807],[119.6455,-8.8095],[119.6522,-8.8093],[119.6546,-8.8142],[119.6581,-8.8103],[119.6603,-8.8162],[119.6643,-8.8148],[119.6675,-8.8082],[119.6672,-8.7989],[119.6634,-8.7981],[119.6549,-8.7904],[119.655,-8.7843]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.4254,-8.7441],[119.4233,-8.7441],[119.4193,-8.7549],[119.4271,-8.7638],[119.4307,-8.7605],[119.4274,-8.7537],[119.4254,-8.7441]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.3747,-8.7388],[119.3672,-8.7416],[119.3716,-8.7449],[119.3747,-8.7388]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.5411,-8.6883],[119.5324,-8.6895],[119.534,-8.694],[119.5411,-8.6883]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.7765,-8.6686],[119.7746,-8.6718],[119.7777,-8.6786],[119.7818,-8.6727],[119.7765,-8.6686]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.6013,-8.6312],[119.5916,-8.633],[119.5817,-8.6392],[119.5758,-8.6381],[119.5719,-8.6429],[119.5738,-8.6474],[119.5695,-8.6554],[119.5675,-8.6565],[119.5628,-8.6512],[119.5533,-8.6605],[119.5513,-8.6601],[119.5448,-8.6652],[119.5356,-8.6677],[119.5402,-8.6721],[119.5491,-8.6733],[119.5543,-8.6779],[119.5567,-8.6889],[119.5596,-8.6913],[119.5632,-8.6868],[119.555,-8.6763],[119.5558,-8.67],[119.5599,-8.6636],[119.5652,-8.6588],[119.5792,-8.6547],[119.5842,-8.6573],[119.5869,-8.6617],[119.5925,-8.6623],[119.6021,-8.6598],[119.6043,-8.6518],[119.6018,-8.6468],[119.6041,-8.6377],[119.6013,-8.6312]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.6144,-8.6262],[119.6128,-8.6326],[119.6152,-8.6367],[119.6184,-8.6355],[119.6189,-8.6273],[119.6144,-8.6262]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.5298,-8.6059],[119.5224,-8.6092],[119.5239,-8.6157],[119.5314,-8.6139],[119.5338,-8.6073],[119.5298,-8.6059]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.6348,-8.6053],[119.6295,-8.6047],[119.62,-8.6065],[119.6144,-8.6095],[119.6173,-8.6137],[119.6178,-8.6225],[119.6241,-8.6283],[119.6253,-8.6341],[119.6313,-8.633],[119.6352,-8.6413],[119.6343,-8.6475],[119.6413,-8.6572],[119.6421,-8.661],[119.6404,-8.6744],[119.6362,-8.6786],[119.6271,-8.6801],[119.6294,-8.6849],[119.6338,-8.6886],[119.6391,-8.6888],[119.6418,-8.6837],[119.649,-8.6827],[119.6503,-8.6726],[119.6538,-8.6716],[119.6525,-8.6799],[119.6566,-8.6795],[119.6557,-8.6879],[119.658,-8.6922],[119.6571,-8.6988],[119.6598,-8.7045],[119.6542,-8.7079],[119.6487,-8.7004],[119.6451,-8.705],[119.6382,-8.7024],[119.6356,-8.6987],[119.6283,-8.701],[119.6261,-8.7046],[119.6175,-8.7077],[119.6213,-8.7181],[119.63,-8.7188],[119.637,-8.7248],[119.6331,-8.7276],[119.6301,-8.7246],[119.6185,-8.7234],[119.623,-8.7332],[119.629,-8.7356],[119.6279,-8.7414],[119.6201,-8.737],[119.6168,-8.733],[119.6119,-8.7383],[119.6056,-8.7395],[119.608,-8.7442],[119.6132,-8.7465],[119.6104,-8.7505],[119.6059,-8.7478],[119.6044,-8.7541],[119.6105,-8.7582],[119.6143,-8.7664],[119.6126,-8.7752],[119.6165,-8.7813],[119.6145,-8.7874],[119.6193,-8.7906],[119.6221,-8.7957],[119.6392,-8.7806],[119.6398,-8.7767],[119.6436,-8.7755],[119.6493,-8.7781],[119.6513,-8.7736],[119.6602,-8.7735],[119.6669,-8.7828],[119.67,-8.7833],[119.6749,-8.7879],[119.6758,-8.7965],[119.6755,-8.8088],[119.6793,-8.8085],[119.69,-8.8108],[119.6955,-8.8093],[119.697,-8.805],[119.7011,-8.8047],[119.7098,-8.795],[119.7161,-8.7928],[119.7151,-8.7897],[119.7188,-8.7857],[119.7131,-8.7821],[119.7118,-8.7787],[119.7149,-8.7757],[119.725,-8.7746],[119.7258,-8.7675],[119.7246,-8.7642],[119.7201,-8.761],[119.7253,-8.7539],[119.7302,-8.7541],[119.7234,-8.7431],[119.7223,-8.7396],[119.7112,-8.7388],[119.7064,-8.7348],[119.6961,-8.732],[119.6902,-8.7233],[119.6948,-8.7156],[119.7041,-8.7059],[119.7045,-8.7017],[119.7087,-8.6973],[119.7074,-8.6927],[119.7134,-8.6874],[119.7106,-8.6815],[119.7175,-8.6816],[119.7242,-8.6844],[119.7269,-8.6896],[119.7239,-8.6969],[119.7265,-8.6997],[119.7353,-8.6992],[119.7438,-8.6973],[119.7451,-8.6911],[119.7493,-8.6903],[119.7502,-8.6856],[119.7475,-8.6801],[119.7482,-8.6766],[119.7546,-8.6707],[119.7556,-8.6674],[119.7649,-8.6631],[119.7674,-8.6594],[119.7728,-8.6582],[119.7805,-8.6592],[119.7895,-8.6561],[119.7962,-8.6583],[119.8005,-8.6517],[119.7989,-8.6342],[119.805,-8.6253],[119.8011,-8.6187],[119.7925,-8.6141],[119.7863,-8.6192],[119.7816,-8.6193],[119.7779,-8.617],[119.7685,-8.6155],[119.7622,-8.6205],[119.7528,-8.618],[119.7447,-8.6281],[119.7406,-8.6272],[119.7394,-8.6211],[119.7259,-8.6193],[119.7182,-8.6217],[119.715,-8.6312],[119.7166,-8.6382],[119.7141,-8.6506],[119.7112,-8.6476],[119.705,-8.6477],[119.6983,-8.6436],[119.6921,-8.6377],[119.6873,-8.6394],[119.6938,-8.6483],[119.7043,-8.6533],[119.7061,-8.6573],[119.7082,-8.6698],[119.7018,-8.6717],[119.6942,-8.6756],[119.6852,-8.6845],[119.6828,-8.6768],[119.6774,-8.6732],[119.6792,-8.684],[119.6725,-8.6869],[119.6711,-8.6808],[119.6679,-8.6768],[119.6673,-8.6701],[119.6633,-8.6676],[119.6585,-8.6569],[119.6612,-8.6497],[119.6624,-8.6417],[119.6615,-8.6373],[119.6646,-8.6295],[119.6618,-8.619],[119.6622,-8.6127],[119.6545,-8.6139],[119.6455,-8.6125],[119.6377,-8.6083],[119.6348,-8.6053]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.8027,-8.5799],[119.7967,-8.5803],[119.799,-8.5855],[119.8036,-8.5844],[119.8027,-8.5799]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.7495,-8.5743],[119.7464,-8.5745],[119.7458,-8.5801],[119.7509,-8.5814],[119.7519,-8.5768],[119.7495,-8.5743]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.7273,-8.569],[119.7173,-8.5686],[119.7073,-8.5717],[119.7055,-8.5747],[119.7125,-8.5805],[119.7173,-8.578],[119.7248,-8.5788],[119.729,-8.5729],[119.7273,-8.569]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.6843,-8.5473],[119.6803,-8.5464],[119.6788,-8.5509],[119.6815,-8.5558],[119.6881,-8.5543],[119.6899,-8.5478],[119.6843,-8.5473]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.5707,-8.5347],[119.5683,-8.5397],[119.5723,-8.5416],[119.5785,-8.5382],[119.5741,-8.534],[119.5707,-8.5347]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.66,-8.5318],[119.657,-8.5386],[119.6503,-8.5402],[119.6518,-8.548],[119.6494,-8.5551],[119.6534,-8.5609],[119.6588,-8.5625],[119.657,-8.5543],[119.6546,-8.5516],[119.6559,-8.5456],[119.66,-8.5404],[119.6651,-8.537],[119.6644,-8.5336],[119.66,-8.5318]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.7902,-8.522],[119.7854,-8.5239],[119.7832,-8.5289],[119.7863,-8.5312],[119.7912,-8.528],[119.7979,-8.5306],[119.7948,-8.5223],[119.7902,-8.522]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.6405,-8.5103],[119.6336,-8.5146],[119.6356,-8.5213],[119.643,-8.5164],[119.6405,-8.5103]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.7064,-8.5113],[119.7045,-8.5099],[119.6966,-8.5114],[119.7013,-8.5186],[119.7064,-8.5113]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.7291,-8.4941],[119.7208,-8.4944],[119.7173,-8.4964],[119.7133,-8.5055],[119.7176,-8.5099],[119.7199,-8.5058],[119.7278,-8.506],[119.7342,-8.4999],[119.7291,-8.4941]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.8636,-8.4855],[119.8646,-8.4918],[119.8731,-8.4857],[119.8636,-8.4855]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.8619,-8.487],[119.8543,-8.4822],[119.854,-8.4893],[119.8619,-8.487]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.563,-8.4619],[119.5574,-8.4636],[119.5528,-8.4688],[119.5534,-8.4764],[119.5597,-8.4766],[119.5638,-8.4698],[119.563,-8.4619]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.5837,-8.4455],[119.5796,-8.4425],[119.5723,-8.4461],[119.5635,-8.4533],[119.5673,-8.4549],[119.573,-8.4525],[119.5845,-8.4511],[119.5837,-8.4455]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.457,-8.4285],[119.4503,-8.4295],[119.4501,-8.435],[119.4535,-8.4371],[119.452,-8.4433],[119.4538,-8.4474],[119.4502,-8.4523],[119.4432,-8.4503],[119.443,-8.4472],[119.431,-8.4467],[119.4298,-8.4443],[119.423,-8.4436],[119.4205,-8.4515],[119.4268,-8.461],[119.4247,-8.4664],[119.4266,-8.4719],[119.4309,-8.4712],[119.4388,-8.4785],[119.4386,-8.4811],[119.4459,-8.484],[119.4491,-8.4904],[119.4473,-8.4941],[119.4375,-8.4891],[119.4245,-8.4977],[119.4187,-8.5002],[119.4162,-8.5065],[119.4218,-8.5051],[119.4234,-8.51],[119.4275,-8.5128],[119.4315,-8.5119],[119.434,-8.5162],[119.4307,-8.5196],[119.4361,-8.5235],[119.4321,-8.5269],[119.4209,-8.5307],[119.4237,-8.5351],[119.4238,-8.5505],[119.4194,-8.5537],[119.4124,-8.5524],[119.4109,-8.5557],[119.4052,-8.5587],[119.401,-8.5631],[119.3889,-8.5608],[119.3881,-8.5685],[119.3893,-8.5723],[119.3813,-8.5768],[119.3821,-8.5803],[119.374,-8.587],[119.3805,-8.5893],[119.3844,-8.5925],[119.3843,-8.5963],[119.3882,-8.5985],[119.3806,-8.6103],[119.3801,-8.6179],[119.3828,-8.623],[119.3749,-8.6269],[119.3748,-8.6321],[119.3778,-8.634],[119.3841,-8.6243],[119.3912,-8.6255],[119.3954,-8.622],[119.4017,-8.6273],[119.3966,-8.6344],[119.3992,-8.6378],[119.4041,-8.6387],[119.4098,-8.6469],[119.4091,-8.6521],[119.4035,-8.6587],[119.407,-8.6621],[119.405,-8.6709],[119.4069,-8.6769],[119.4044,-8.6882],[119.4002,-8.6894],[119.3961,-8.6953],[119.3908,-8.6952],[119.3878,-8.6924],[119.3861,-8.7018],[119.3805,-8.7101],[119.3822,-8.7163],[119.3782,-8.7183],[119.3821,-8.7316],[119.3846,-8.735],[119.3898,-8.731],[119.3895,-8.7256],[119.3928,-8.7227],[119.3963,-8.725],[119.4074,-8.7226],[119.4098,-8.728],[119.4142,-8.7274],[119.4197,-8.7307],[119.4216,-8.7351],[119.427,-8.7379],[119.4372,-8.7496],[119.4439,-8.7512],[119.4622,-8.746],[119.47,-8.7383],[119.4629,-8.7389],[119.4583,-8.7444],[119.4529,-8.7459],[119.4478,-8.7358],[119.4526,-8.7293],[119.4512,-8.7245],[119.4472,-8.7254],[119.4457,-8.7216],[119.453,-8.7118],[119.4532,-8.7061],[119.4562,-8.7025],[119.4454,-8.6996],[119.443,-8.6913],[119.4473,-8.6895],[119.4435,-8.6842],[119.4346,-8.6843],[119.4332,-8.6758],[119.4367,-8.6723],[119.4373,-8.6677],[119.4415,-8.6637],[119.4491,-8.6539],[119.456,-8.6484],[119.4656,-8.6499],[119.4679,-8.6536],[119.4758,-8.6525],[119.4775,-8.6466],[119.4743,-8.6419],[119.4751,-8.6386],[119.48,-8.638],[119.4826,-8.6425],[119.4861,-8.6379],[119.4798,-8.6319],[119.4835,-8.6275],[119.4886,-8.6251],[119.4932,-8.6203],[119.4921,-8.6117],[119.4871,-8.6141],[119.4848,-8.6216],[119.4732,-8.6293],[119.4703,-8.6273],[119.4625,-8.627],[119.4616,-8.6227],[119.4559,-8.6163],[119.4528,-8.6065],[119.459,-8.6041],[119.465,-8.6054],[119.4682,-8.6082],[119.4772,-8.6043],[119.4844,-8.599],[119.4861,-8.5935],[119.4971,-8.5874],[119.4957,-8.5753],[119.499,-8.5705],[119.5053,-8.5685],[119.5119,-8.569],[119.5199,-8.5737],[119.5231,-8.5779],[119.5247,-8.5845],[119.5217,-8.5895],[119.5171,-8.5921],[119.5196,-8.5991],[119.5259,-8.5987],[119.5359,-8.6027],[119.5374,-8.5993],[119.5432,-8.6],[119.5449,-8.5965],[119.5573,-8.5987],[119.5657,-8.5933],[119.5596,-8.5867],[119.5625,-8.5778],[119.5584,-8.567],[119.5599,-8.5631],[119.5602,-8.5531],[119.5575,-8.5445],[119.5495,-8.5364],[119.5492,-8.5297],[119.5542,-8.5298],[119.5542,-8.523],[119.5586,-8.5145],[119.5624,-8.5184],[119.5615,-8.5239],[119.5675,-8.5285],[119.5694,-8.5109],[119.5723,-8.5067],[119.5687,-8.5006],[119.5714,-8.4979],[119.5713,-8.4898],[119.5656,-8.4841],[119.5627,-8.4844],[119.5567,-8.4898],[119.5538,-8.4967],[119.5505,-8.4988],[119.5468,-8.4968],[119.5441,-8.4905],[119.5386,-8.4957],[119.5325,-8.4969],[119.5318,-8.4919],[119.5264,-8.4886],[119.5248,-8.4846],[119.52,-8.4852],[119.5188,-8.4889],[119.5121,-8.4934],[119.5069,-8.494],[119.5011,-8.4897],[119.5004,-8.4866],[119.4884,-8.4803],[119.4845,-8.486],[119.4815,-8.4858],[119.4705,-8.4801],[119.4691,-8.4749],[119.4723,-8.4721],[119.4675,-8.4643],[119.4712,-8.4518],[119.467,-8.4463],[119.4658,-8.4416],[119.4673,-8.4374],[119.457,-8.4285]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.8122,-8.3993],[119.81,-8.3951],[119.8038,-8.3942],[119.8052,-8.399],[119.8122,-8.3993]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[119.8579,-8.3796],[119.8538,-8.3749],[119.8422,-8.3797],[119.839,-8.3791],[119.8385,-8.3871],[119.8418,-8.3928],[119.8453,-8.3955],[119.8523,-8.395],[119.8607,-8.4017],[119.866,-8.4017],[119.8727,-8.3871],[119.8762,-8.3838],[119.8654,-8.3835],[119.8579,-8.3796]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[120.0323,-8.3595],[120.0228,-8.352],[120.0164,-8.3618],[120.0182,-8.366],[120.0172,-8.3732],[120.0219,-8.3706],[120.0256,-8.3653],[120.0296,-8.369],[120.0341,-8.3665],[120.0323,-8.3595]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[120.132,-8.3388],[120.1174,-8.3398],[120.1121,-8.3455],[120.1192,-8.3504],[120.127,-8.3517],[120.1334,-8.3545],[120.14,-8.3505],[120.1439,-8.3525],[120.1518,-8.352],[120.1512,-8.3462],[120.143,-8.3412],[120.132,-8.3388]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"LineString","coordinates":[[120.2281,-8.8415],[120.2338,-8.8374],[120.24,-8.83],[120.233,-8.8122],[120.2364,-8.811],[120.24,-8.8043],[120.251,-8.7952],[120.2562,-8.7962],[120.2617,-8.795],[120.2646,-8.7899],[120.2811,-8.789],[120.2827,-8.786],[120.2815,-8.7788],[120.2717,-8.7645],[120.2738,-8.7594],[120.2841,-8.7594],[120.2936,-8.7564],[120.3033,-8.7417],[120.3135,-8.7336],[120.3138,-8.7249],[120.3223,-8.7222],[120.3268,-8.7176],[120.3274,-8.709],[120.3327,-8.693],[120.3318,-8.6887],[120.3239,-8.6838],[120.319,-8.6787],[120.3144,-8.6699],[120.3106,-8.6699],[120.3068,-8.6747],[120.3037,-8.6752],[120.2968,-8.6721],[120.2944,-8.6619],[120.2865,-8.6566],[120.2818,-8.6517],[120.2815,-8.6451],[120.2863,-8.6452],[120.2895,-8.6421],[120.2889,-8.6331],[120.2806,-8.6255],[120.2822,-8.6094],[120.2847,-8.6063],[120.2853,-8.5972],[120.2909,-8.5906],[120.3009,-8.5849],[120.3148,-8.5832],[120.3175,-8.5785],[120.319,-8.5681],[120.3325,-8.5583],[120.3357,-8.5638],[120.3427,-8.571],[120.3517,-8.5719],[120.3612,-8.5685],[120.3584,-8.5591],[120.3605,-8.5477],[120.3523,-8.5245],[120.3614,-8.5208],[120.3625,-8.5184],[120.3725,-8.5142],[120.3739,-8.506],[120.3763,-8.4988],[120.381,-8.4943],[120.3807,-8.4879],[120.3839,-8.488],[120.3876,-8.4834],[120.3898,-8.4613],[120.3942,-8.4605],[120.3956,-8.4519],[120.3988,-8.4508],[120.3993,-8.4439],[120.396,-8.4387],[120.396,-8.43],[120.3901,-8.4296],[120.3894,-8.4253],[120.3817,-8.4296],[120.3769,-8.4289],[120.3696,-8.4311],[120.3655,-8.4292],[120.3575,-8.4297],[120.3525,-8.4258],[120.3456,-8.4262],[120.3369,-8.4337],[120.3375,-8.4371],[120.3334,-8.4405],[120.3298,-8.4358],[120.3256,-8.4376],[120.3214,-8.4446],[120.312,-8.4501],[120.3063,-8.4514],[120.2958,-8.4397],[120.2931,-8.4313],[120.284,-8.4226],[120.283,-8.4177],[120.2848,-8.4087],[120.283,-8.3917],[120.2859,-8.3853],[120.2859,-8.3767],[120.289,-8.3571],[120.288,-8.3509],[120.289,-8.3458],[120.2861,-8.3398],[120.2885,-8.3307],[120.291,-8.3275],[120.2908,-8.3177],[120.2925,-8.3118],[120.2903,-8.3082],[120.2905,-8.3018],[120.2888,-8.2988],[120.2895,-8.2882],[120.2916,-8.2807],[120.2811,-8.283],[120.2709,-8.2832],[120.2664,-8.2845],[120.2606,-8.283],[120.2518,-8.2902],[120.2443,-8.2949],[120.2403,-8.3015],[120.2232,-8.3056],[120.2159,-8.31],[120.2102,-8.3089],[120.2091,-8.306],[120.2005,-8.3056],[120.1921,-8.3189],[120.1918,-8.3237],[120.1828,-8.3382],[120.1861,-8.3429],[120.1853,-8.3478],[120.1782,-8.3513],[120.172,-8.3481],[120.1675,-8.3592],[120.163,-8.3623],[120.1624,-8.369],[120.1667,-8.3751],[120.1574,-8.373],[120.151,-8.38],[120.1472,-8.3798],[120.1452,-8.3731],[120.1469,-8.367],[120.1441,-8.3653],[120.1372,-8.3649],[120.1317,-8.367],[120.1289,-8.3649],[120.1269,-8.3578],[120.1216,-8.3562],[120.1202,-8.359],[120.1209,-8.367],[120.1185,-8.369],[120.1178,-8.3762],[120.1156,-8.3833],[120.1175,-8.393],[120.1168,-8.4069],[120.1208,-8.414],[120.1253,-8.4166],[120.1233,-8.4223],[120.1187,-8.4242],[120.1133,-8.4384],[120.11,-8.4412],[120.1045,-8.4373],[120.099,-8.4398],[120.0915,-8.441],[120.0863,-8.4386],[120.0841,-8.4346],[120.0828,-8.4255],[120.0914,-8.4218],[120.0959,-8.4145],[120.095,-8.4076],[120.0806,-8.4152],[120.0769,-8.4097],[120.0835,-8.4038],[120.0866,-8.3893],[120.0846,-8.3869],[120.0795,-8.3901],[120.0709,-8.3931],[120.0674,-8.3963],[120.0635,-8.4028],[120.054,-8.4059],[120.0501,-8.4054],[120.0488,-8.3989],[120.0553,-8.3978],[120.0628,-8.3897],[120.0732,-8.3836],[120.0691,-8.3794],[120.064,-8.3782],[120.0597,-8.3835],[120.0589,-8.3879],[120.0535,-8.3901],[120.0513,-8.3952],[120.0475,-8.3935],[120.0402,-8.3975],[120.0371,-8.3933],[120.0417,-8.3896],[120.0305,-8.382],[120.022,-8.3826],[120.0189,-8.3916],[120.0118,-8.4025],[120.0176,-8.4081],[120.0132,-8.4145],[120.0087,-8.4116],[120.0013,-8.4136],[119.9979,-8.4172],[120.001,-8.422],[120.0032,-8.4303],[120.0158,-8.4356],[120.016,-8.4412],[120.0125,-8.4472],[120.0066,-8.4475],[120.0034,-8.4511],[120.0024,-8.4564],[119.9974,-8.4613],[119.9904,-8.4593],[119.9888,-8.4555],[119.9825,-8.4516],[119.9796,-8.4463],[119.9727,-8.4433],[119.9767,-8.4325],[119.9715,-8.4294],[119.9636,-8.4314],[119.963,-8.4361],[119.9567,-8.4435],[119.9572,-8.4496],[119.9504,-8.4561],[119.9416,-8.4589],[119.9393,-8.4554],[119.9296,-8.4614],[119.9206,-8.4656],[119.9159,-8.4666],[119.909,-8.4754],[119.9065,-8.4752],[119.9018,-8.4663],[119.8918,-8.464],[119.8861,-8.461],[119.8801,-8.4631],[119.8773,-8.4589],[119.8788,-8.4495],[119.8853,-8.4439],[119.8775,-8.443],[119.8826,-8.4365],[119.8824,-8.4303],[119.88,-8.427],[119.8717,-8.4273],[119.8587,-8.433],[119.8628,-8.4405],[119.8628,-8.4481],[119.8608,-8.4531],[119.8676,-8.454],[119.8718,-8.458],[119.8718,-8.465],[119.8815,-8.4791],[119.8748,-8.4897],[119.8791,-8.4988],[119.876,-8.5098],[119.8738,-8.5109],[119.8736,-8.5174],[119.8674,-8.5242],[119.8538,-8.5345],[119.8505,-8.5339],[119.8442,-8.5397],[119.8337,-8.5393],[119.8306,-8.5512],[119.8238,-8.5567],[119.8138,-8.5602],[119.8094,-8.5649],[119.8087,-8.5691],[119.8052,-8.5706],[119.804,-8.5797],[119.8066,-8.5867],[119.7993,-8.5919],[119.7982,-8.5986],[119.8061,-8.6041],[119.811,-8.6046],[119.8069,-8.6123],[119.8097,-8.6255],[119.8066,-8.6356],[119.8088,-8.6543],[119.8113,-8.6613],[119.8093,-8.6643],[119.8113,-8.6684],[119.8093,-8.6718],[119.8038,-8.6712],[119.7997,-8.6783],[119.8004,-8.6849],[119.7983,-8.6905],[119.7965,-8.7021],[119.8018,-8.7112],[119.8023,-8.7176],[119.7997,-8.7218],[119.7978,-8.7293],[119.8063,-8.73],[119.8075,-8.7334],[119.8056,-8.7384],[119.8019,-8.7398],[119.8006,-8.7471],[119.8084,-8.7505],[119.8084,-8.7556],[119.8006,-8.7578],[119.7997,-8.7598],[119.8034,-8.7671],[119.8088,-8.77],[119.8136,-8.7759],[119.8139,-8.7792],[119.8224,-8.7801],[119.8183,-8.785],[119.8234,-8.7894],[119.8295,-8.7874],[119.8354,-8.7981],[119.8378,-8.8072],[119.8421,-8.7973],[119.8465,-8.7983],[119.8477,-8.8045],[119.8582,-8.8018],[119.8597,-8.805],[119.8661,-8.81],[119.8696,-8.8074],[119.8771,-8.8112],[119.8846,-8.8098],[119.8859,-8.816],[119.8843,-8.8211],[119.8843,-8.8402],[119.894,-8.842],[119.886,-8.8518],[119.8892,-8.8584],[119.8933,-8.8603],[119.9046,-8.8628],[119.911,-8.8674],[119.912,-8.8636],[119.9192,-8.8659],[119.9219,-8.8609],[119.9165,-8.8461],[119.9119,-8.8447],[119.9098,-8.8391],[119.9229,-8.8435],[119.9254,-8.8329],[119.9334,-8.8286],[119.9392,-8.8229],[119.945,-8.8205],[119.965,-8.8235],[119.969,-8.826],[119.9769,-8.8212],[119.9897,-8.8202],[119.9977,-8.8179],[120.0099,-8.8175],[120.0164,-8.8193],[120.0217,-8.8148],[120.0368,-8.8128],[120.0467,-8.813],[120.0577,-8.8082],[120.0619,-8.8078],[120.0803,-8.8026],[120.0841,-8.7989],[120.0976,-8.7938],[120.1107,-8.7907],[120.1289,-8.7899],[120.1401,-8.7885],[120.148,-8.7863],[120.157,-8.7851],[120.1634,-8.7868],[120.1712,-8.7917],[120.183,-8.8032],[120.191,-8.8141],[120.1982,-8.8199],[120.2033,-8.8214],[120.2118,-8.8294],[120.2131,-8.836],[120.2223,-8.836],[120.2281,-8.8415]]}},{"type":"Feature","properties":{"mhid":"1332:317","alt_name":"KABUPATEN SUMBA TENGAH","latitude":-9.62941,"longitude":119.61914,"sample_value":966},"geometry":{"type":"LineString","coordinates":[[119.6748,-9.8287],[119.6857,-9.8302],[119.6914,-9.8336],[119.7151,-9.8388],[119.7197,-9.8436],[119.7252,-9.8433],[119.732,-9.8405],[119.731,-9.8347],[119.7317,-9.8227],[119.736,-9.8068],[119.7342,-9.7957],[119.7346,-9.7868],[119.7369,-9.779],[119.7378,-9.7561],[119.7419,-9.7447],[119.7497,-9.7352],[119.7412,-9.7265],[119.7384,-9.7272],[119.7325,-9.7179],[119.7278,-9.7155],[119.7275,-9.7078],[119.7253,-9.691],[119.7287,-9.6837],[119.7361,-9.6764],[119.7463,-9.6702],[119.7592,-9.6753],[119.7648,-9.6763],[119.7717,-9.6752],[119.7869,-9.6698],[119.8121,-9.6664],[119.8308,-9.6695],[119.8384,-9.6687],[119.8447,-9.6615],[119.8441,-9.6532],[119.8459,-9.6477],[119.8469,-9.6345],[119.845,-9.6223],[119.8417,-9.6179],[119.8506,-9.6127],[119.8498,-9.6075],[119.8456,-9.6014],[119.8451,-9.5949],[119.8399,-9.588],[119.8397,-9.5824],[119.8421,-9.5767],[119.8476,-9.5734],[119.8535,-9.5733],[119.8526,-9.568],[119.8591,-9.5622],[119.858,-9.5566],[119.8651,-9.5531],[119.8748,-9.5434],[119.8727,-9.535],[119.8754,-9.5281],[119.8828,-9.5231],[119.886,-9.5188],[119.8876,-9.5126],[119.8963,-9.5166],[119.9109,-9.5108],[119.9123,-9.5006],[119.9113,-9.4973],[119.9176,-9.4934],[119.9188,-9.4875],[119.9233,-9.4894],[119.9238,-9.481],[119.9152,-9.4745],[119.9166,-9.4657],[119.9072,-9.4558],[119.9037,-9.4493],[119.8965,-9.4317],[119.9016,-9.422],[119.9036,-9.4127],[119.9069,-9.4069],[119.9113,-9.4026],[119.9098,-9.3999],[119.9117,-9.3913],[119.9079,-9.3864],[119.9088,-9.3827],[119.9053,-9.3795],[119.8885,-9.3759],[119.8868,-9.3734],[119.8764,-9.3713],[119.8754,-9.3672],[119.869,-9.3573],[119.8696,-9.3557],[119.8648,-9.3435],[119.8494,-9.3526],[119.8328,-9.3659],[119.822,-9.3791],[119.807,-9.3939],[119.7966,-9.399],[119.7843,-9.3996],[119.7731,-9.3968],[119.7659,-9.391],[119.7627,-9.3864],[119.7537,-9.3859],[119.7466,-9.3883],[119.7359,-9.3894],[119.7195,-9.3876],[119.6993,-9.3837],[119.6864,-9.3824],[119.6707,-9.3749],[119.664,-9.3707],[119.658,-9.3686],[119.6407,-9.3555],[119.6314,-9.3456],[119.6141,-9.3455],[119.6004,-9.3466],[119.5858,-9.3507],[119.5745,-9.3549],[119.5694,-9.3579],[119.5617,-9.3654],[119.5516,-9.372],[119.546,-9.3743],[119.5336,-9.3775],[119.522,-9.3779],[119.5134,-9.3752],[119.5001,-9.3684],[119.4893,-9.3658],[119.4765,-9.3587],[119.4637,-9.3587],[119.4505,-9.3618],[119.4433,-9.3643],[119.4288,-9.3746],[119.4286,-9.3765],[119.416,-9.3737],[119.4196,-9.4056],[119.4219,-9.4137],[119.4262,-9.4153],[119.4288,-9.4194],[119.427,-9.4225],[119.4317,-9.4263],[119.4335,-9.4315],[119.4308,-9.4339],[119.4324,-9.4381],[119.4384,-9.4429],[119.4416,-9.4535],[119.4454,-9.4589],[119.4434,-9.4639],[119.4491,-9.4638],[119.4498,-9.468],[119.4551,-9.4692],[119.4563,-9.4732],[119.4557,-9.4841],[119.4602,-9.4905],[119.4648,-9.4931],[119.465,-9.4984],[119.458,-9.5026],[119.4659,-9.5148],[119.473,-9.5205],[119.4755,-9.5278],[119.4795,-9.5253],[119.489,-9.5282],[119.4947,-9.5268],[119.499,-9.5279],[119.5111,-9.5351],[119.5186,-9.5361],[119.5147,-9.5441],[119.5152,-9.5642],[119.5077,-9.577],[119.5005,-9.5816],[119.4847,-9.599],[119.4804,-9.6065],[119.4821,-9.6084],[119.4835,-9.6198],[119.4819,-9.6264],[119.4888,-9.6348],[119.4852,-9.6445],[119.4849,-9.65],[119.4866,-9.6564],[119.4812,-9.6574],[119.4711,-9.6701],[119.4727,-9.6746],[119.4696,-9.6775],[119.4835,-9.6837],[119.4917,-9.6791],[119.4988,-9.6814],[119.5123,-9.6806],[119.5204,-9.6822],[119.5276,-9.6854],[119.5345,-9.6915],[119.5348,-9.6939],[119.5254,-9.7061],[119.52,-9.7108],[119.51,-9.7275],[119.5068,-9.7294],[119.5078,-9.7337],[119.5069,-9.7411],[119.5403,-9.7419],[119.543,-9.7527],[119.5498,-9.7545],[119.5484,-9.7574],[119.5532,-9.766],[119.5598,-9.7641],[119.5666,-9.7689],[119.577,-9.7661],[119.5833,-9.7619],[119.5881,-9.7668],[119.5881,-9.7715],[119.5938,-9.7752],[119.5948,-9.779],[119.6019,-9.777],[119.6057,-9.7738],[119.6092,-9.7748],[119.612,-9.7716],[119.6145,-9.7644],[119.619,-9.7637],[119.6264,-9.7668],[119.6284,-9.7726],[119.6255,-9.7751],[119.6276,-9.7789],[119.6217,-9.7905],[119.616,-9.7947],[119.6208,-9.8003],[119.6279,-9.7998],[119.6422,-9.7924],[119.646,-9.7934],[119.6467,-9.7855],[119.65,-9.7788],[119.6535,-9.7763],[119.6611,-9.7769],[119.6711,-9.7809],[119.6729,-9.7856],[119.6785,-9.7897],[119.6777,-9.7956],[119.674,-9.8008],[119.6772,-9.8041],[119.6834,-9.8036],[119.6866,-9.8073],[119.6899,-9.8178],[119.6842,-9.823],[119.6828,-9.8271],[119.6748,-9.8287]]}},{"type":"Feature","properties":{"mhid":"1332:318","alt_name":"KABUPATEN SUMBA BARAT DAYA","latitude":-9.56216,"longitude":119.08905,"sample_value":193},"geometry":{"type":"LineString","coordinates":[[119.3908,-9.3831],[119.3823,-9.3827],[119.3765,-9.3804],[119.3542,-9.3768],[119.3475,-9.377],[119.3416,-9.3746],[119.3276,-9.3719],[119.3161,-9.3668],[119.308,-9.3606],[119.3016,-9.3575],[119.2934,-9.3576],[119.2859,-9.3598],[119.2715,-9.3683],[119.2647,-9.3681],[119.2562,-9.3698],[119.2425,-9.3767],[119.2379,-9.3779],[119.2251,-9.3894],[119.219,-9.391],[119.2106,-9.3884],[119.2045,-9.3844],[119.1965,-9.3761],[119.1896,-9.374],[119.1781,-9.3748],[119.1603,-9.3808],[119.1536,-9.3839],[119.1371,-9.3958],[119.1273,-9.4016],[119.1239,-9.4023],[119.1139,-9.4091],[119.1093,-9.4159],[119.1013,-9.4215],[119.0962,-9.422],[119.0803,-9.4195],[119.0721,-9.4238],[119.0561,-9.4237],[119.0436,-9.4268],[119.0296,-9.4327],[119.0248,-9.4364],[119.0127,-9.4418],[119.0002,-9.4487],[118.9939,-9.4545],[118.9898,-9.4563],[118.9772,-9.4694],[118.9738,-9.4741],[118.965,-9.4817],[118.9521,-9.5017],[118.944,-9.5106],[118.9408,-9.5158],[118.9365,-9.5267],[118.932,-9.535],[118.9273,-9.5502],[118.9279,-9.5576],[118.9369,-9.5674],[118.9469,-9.5748],[118.9537,-9.5818],[118.9677,-9.5933],[118.9738,-9.5995],[118.9843,-9.6064],[118.9855,-9.6135],[118.9947,-9.6263],[119.0033,-9.6307],[119.0062,-9.6352],[119.0093,-9.6467],[119.0152,-9.6548],[119.018,-9.6626],[119.0242,-9.6704],[119.0262,-9.6751],[119.0468,-9.6892],[119.0491,-9.6925],[119.0604,-9.6987],[119.0622,-9.6972],[119.074,-9.7021],[119.079,-9.7062],[119.091,-9.7138],[119.095,-9.7147],[119.1044,-9.714],[119.1157,-9.7207],[119.1178,-9.7265],[119.1232,-9.7249],[119.1282,-9.73],[119.1376,-9.7279],[119.1446,-9.73],[119.1442,-9.7243],[119.1484,-9.7172],[119.1436,-9.7091],[119.1481,-9.7035],[119.1471,-9.6963],[119.1485,-9.6904],[119.1519,-9.6856],[119.1575,-9.6721],[119.1626,-9.6691],[119.1626,-9.6629],[119.1667,-9.6581],[119.1708,-9.6601],[119.1772,-9.6549],[119.1827,-9.6527],[119.1873,-9.6488],[119.1965,-9.6478],[119.1992,-9.6504],[119.202,-9.6585],[119.2159,-9.6773],[119.2243,-9.6839],[119.2342,-9.6899],[119.2405,-9.6887],[119.2456,-9.6854],[119.2603,-9.6795],[119.2647,-9.6786],[119.2706,-9.6805],[119.2776,-9.6845],[119.2855,-9.6831],[119.2947,-9.6793],[119.303,-9.6736],[119.312,-9.6597],[119.3172,-9.6496],[119.3296,-9.6229],[119.3335,-9.6184],[119.3404,-9.6238],[119.3546,-9.618],[119.3563,-9.6129],[119.3605,-9.6157],[119.3653,-9.6157],[119.3726,-9.6063],[119.3746,-9.5977],[119.3828,-9.5935],[119.3879,-9.5897],[119.4064,-9.568],[119.4136,-9.5624],[119.4067,-9.549],[119.3971,-9.546],[119.3929,-9.5406],[119.3954,-9.5333],[119.3953,-9.5247],[119.3917,-9.5222],[119.3846,-9.5126],[119.3872,-9.5055],[119.384,-9.5015],[119.3772,-9.5032],[119.3756,-9.4809],[119.3767,-9.4736],[119.3762,-9.4408],[119.3767,-9.4265],[119.3805,-9.4138],[119.3956,-9.3921],[119.3908,-9.3831]]}},{"type":"Feature","properties":{"mhid":"1332:319","alt_name":"KABUPATEN NAGEKEO","latitude":-8.8721,"longitude":121.20963,"sample_value":132},"geometry":{"type":"LineString","coordinates":[[121.5203,-8.6143],[121.5145,-8.6157],[121.5077,-8.6139],[121.5052,-8.61],[121.5126,-8.6073],[121.5049,-8.6003],[121.5012,-8.6003],[121.5018,-8.5931],[121.4979,-8.5899],[121.5024,-8.5814],[121.5002,-8.5777],[121.4931,-8.5778],[121.4871,-8.5813],[121.4825,-8.5774],[121.4804,-8.5717],[121.4771,-8.5709],[121.4768,-8.5647],[121.4671,-8.5629],[121.4621,-8.5608],[121.4606,-8.5642],[121.4457,-8.5719],[121.4403,-8.5759],[121.4397,-8.5787],[121.431,-8.5864],[121.4251,-8.5874],[121.4184,-8.592],[121.4159,-8.5828],[121.4133,-8.5786],[121.404,-8.5715],[121.3923,-8.5726],[121.3851,-8.5651],[121.3707,-8.564],[121.3627,-8.559],[121.3606,-8.5559],[121.3462,-8.549],[121.3346,-8.5368],[121.3295,-8.5277],[121.3249,-8.5227],[121.3266,-8.5166],[121.3192,-8.5085],[121.3112,-8.4907],[121.3078,-8.4816],[121.3039,-8.4816],[121.2974,-8.4773],[121.287,-8.4742],[121.2787,-8.4698],[121.2695,-8.4674],[121.2668,-8.4648],[121.2524,-8.466],[121.2451,-8.4688],[121.2374,-8.4674],[121.2316,-8.4629],[121.2267,-8.4637],[121.223,-8.4617],[121.217,-8.4615],[121.208,-8.4536],[121.1948,-8.4435],[121.192,-8.4384],[121.1823,-8.4387],[121.1732,-8.4407],[121.1749,-8.4464],[121.1798,-8.4551],[121.1798,-8.4594],[121.1736,-8.4678],[121.1616,-8.4779],[121.1672,-8.486],[121.1725,-8.4884],[121.1837,-8.5001],[121.1839,-8.512],[121.1758,-8.519],[121.1717,-8.5195],[121.172,-8.5253],[121.1661,-8.534],[121.156,-8.542],[121.1534,-8.546],[121.1451,-8.5496],[121.1418,-8.5553],[121.1435,-8.572],[121.1404,-8.578],[121.1327,-8.5828],[121.1333,-8.5852],[121.1293,-8.5921],[121.1317,-8.5946],[121.1322,-8.6016],[121.1266,-8.617],[121.1259,-8.6261],[121.1266,-8.6344],[121.1246,-8.6456],[121.1202,-8.6469],[121.1201,-8.6522],[121.1174,-8.6535],[121.1146,-8.6676],[121.1111,-8.6716],[121.1126,-8.6771],[121.1092,-8.6819],[121.1158,-8.6834],[121.1218,-8.687],[121.13,-8.684],[121.1339,-8.6892],[121.1488,-8.6923],[121.149,-8.6946],[121.1416,-8.7011],[121.1278,-8.7024],[121.1202,-8.7096],[121.1157,-8.7095],[121.1138,-8.7214],[121.1112,-8.7244],[121.1051,-8.7262],[121.1,-8.7364],[121.1024,-8.7373],[121.1031,-8.7467],[121.0999,-8.749],[121.096,-8.7594],[121.1006,-8.7678],[121.1019,-8.7736],[121.1101,-8.7778],[121.1138,-8.7859],[121.1237,-8.7928],[121.1216,-8.8027],[121.1234,-8.8071],[121.1289,-8.8124],[121.1352,-8.8302],[121.1363,-8.8377],[121.1401,-8.8431],[121.1338,-8.8503],[121.1296,-8.8533],[121.1235,-8.8545],[121.1204,-8.8581],[121.1207,-8.8622],[121.1167,-8.8679],[121.1153,-8.8753],[121.1188,-8.8794],[121.125,-8.8787],[121.1264,-8.8839],[121.1367,-8.8938],[121.1393,-8.898],[121.1475,-8.8983],[121.1545,-8.8941],[121.1647,-8.8948],[121.1715,-8.8868],[121.1796,-8.8855],[121.1884,-8.8869],[121.1909,-8.8916],[121.1985,-8.8943],[121.2045,-8.8913],[121.209,-8.8926],[121.2237,-8.8892],[121.2289,-8.8905],[121.2325,-8.8951],[121.2393,-8.889],[121.2457,-8.8892],[121.2524,-8.8912],[121.2557,-8.8938],[121.2616,-8.8872],[121.2697,-8.8865],[121.2751,-8.8915],[121.2823,-8.8916],[121.2877,-8.8953],[121.2905,-8.9016],[121.2993,-8.9076],[121.3062,-8.908],[121.3144,-8.911],[121.3204,-8.9102],[121.3232,-8.9067],[121.3369,-8.9065],[121.3424,-8.9051],[121.357,-8.8879],[121.3631,-8.8862],[121.3689,-8.8785],[121.3702,-8.8639],[121.3717,-8.8615],[121.3709,-8.8458],[121.3687,-8.8389],[121.3699,-8.8341],[121.3677,-8.8244],[121.3713,-8.8166],[121.3706,-8.8124],[121.3753,-8.8047],[121.3773,-8.7967],[121.381,-8.7927],[121.388,-8.7892],[121.3952,-8.7888],[121.4061,-8.7907],[121.4139,-8.7937],[121.4157,-8.788],[121.4173,-8.7832],[121.4148,-8.7719],[121.4165,-8.7688],[121.4156,-8.7548],[121.4177,-8.7516],[121.4161,-8.7439],[121.4129,-8.7423],[121.4101,-8.736],[121.4045,-8.7355],[121.4008,-8.7331],[121.3957,-8.7255],[121.395,-8.7194],[121.3999,-8.714],[121.4029,-8.7075],[121.4161,-8.6939],[121.4191,-8.6929],[121.426,-8.6865],[121.4301,-8.6807],[121.4282,-8.6778],[121.432,-8.6711],[121.4368,-8.6717],[121.4418,-8.6692],[121.4464,-8.6717],[121.4483,-8.6689],[121.4622,-8.6681],[121.4645,-8.6639],[121.4716,-8.663],[121.4727,-8.6581],[121.4824,-8.6533],[121.4947,-8.6395],[121.5042,-8.6363],[121.5191,-8.6353],[121.5234,-8.6273],[121.5232,-8.6212],[121.5203,-8.6143]]}},{"type":"Feature","properties":{"mhid":"1332:320","alt_name":"KABUPATEN MANGGARAI TIMUR","latitude":-8.55533,"longitude":120.59761,"sample_value":399},"geometry":{"type":"LineString","coordinates":[[120.9495,-8.3709],[120.9468,-8.3656],[120.9383,-8.3558],[120.9435,-8.3522],[120.94,-8.3484],[120.9301,-8.3515],[120.9215,-8.3564],[120.9034,-8.3563],[120.8964,-8.3525],[120.8869,-8.355],[120.8821,-8.3494],[120.8769,-8.3501],[120.8702,-8.3535],[120.8623,-8.3547],[120.8536,-8.3575],[120.8434,-8.3514],[120.8311,-8.3462],[120.8228,-8.3473],[120.8156,-8.3443],[120.8078,-8.3385],[120.7945,-8.3406],[120.7916,-8.343],[120.7825,-8.3455],[120.7772,-8.343],[120.7676,-8.3411],[120.7624,-8.3362],[120.7584,-8.3387],[120.7574,-8.3427],[120.7485,-8.3484],[120.7391,-8.3494],[120.733,-8.3487],[120.7266,-8.3423],[120.7212,-8.3405],[120.7165,-8.3365],[120.7154,-8.3263],[120.7001,-8.3271],[120.6903,-8.3296],[120.6854,-8.3259],[120.6775,-8.3224],[120.6746,-8.3078],[120.6659,-8.3082],[120.6594,-8.3021],[120.6569,-8.2903],[120.6475,-8.2839],[120.6403,-8.2769],[120.6277,-8.2678],[120.6181,-8.2638],[120.6124,-8.2638],[120.6083,-8.2595],[120.6005,-8.2554],[120.5919,-8.2571],[120.5909,-8.2609],[120.5962,-8.2698],[120.6019,-8.2717],[120.6053,-8.2766],[120.5992,-8.2911],[120.5908,-8.2971],[120.5791,-8.2957],[120.5688,-8.297],[120.5629,-8.3008],[120.5586,-8.3004],[120.5554,-8.2958],[120.5502,-8.2946],[120.5415,-8.288],[120.5405,-8.2842],[120.5354,-8.2786],[120.5317,-8.277],[120.5292,-8.2724],[120.5192,-8.2794],[120.5075,-8.2841],[120.5027,-8.289],[120.4928,-8.2927],[120.4958,-8.3],[120.4957,-8.3067],[120.4918,-8.3159],[120.4846,-8.3133],[120.4821,-8.3144],[120.4801,-8.3296],[120.4829,-8.3358],[120.4819,-8.3418],[120.4835,-8.3501],[120.4783,-8.3544],[120.4774,-8.3594],[120.4795,-8.3628],[120.478,-8.3674],[120.4781,-8.3821],[120.4845,-8.3832],[120.4892,-8.3886],[120.4989,-8.3937],[120.4985,-8.3964],[120.5018,-8.404],[120.5062,-8.4069],[120.5135,-8.4089],[120.5119,-8.413],[120.517,-8.4176],[120.5172,-8.4236],[120.5206,-8.4252],[120.52,-8.4308],[120.5268,-8.4395],[120.5303,-8.4474],[120.535,-8.4517],[120.5322,-8.4597],[120.5357,-8.4691],[120.5381,-8.4724],[120.5424,-8.4908],[120.5457,-8.4921],[120.5463,-8.4998],[120.5449,-8.5064],[120.5411,-8.5126],[120.5402,-8.5188],[120.5321,-8.5233],[120.534,-8.5263],[120.5301,-8.5334],[120.5301,-8.5379],[120.5175,-8.5478],[120.5152,-8.5543],[120.5158,-8.5586],[120.5108,-8.5643],[120.5121,-8.5706],[120.5106,-8.5764],[120.516,-8.5803],[120.5175,-8.5924],[120.5267,-8.6025],[120.527,-8.6058],[120.5235,-8.6104],[120.5242,-8.6174],[120.5224,-8.63],[120.5239,-8.638],[120.5166,-8.6382],[120.505,-8.643],[120.492,-8.645],[120.4871,-8.6506],[120.4814,-8.6524],[120.4791,-8.6598],[120.4753,-8.6661],[120.4685,-8.6732],[120.4782,-8.6913],[120.4809,-8.6948],[120.4908,-8.7016],[120.4962,-8.7119],[120.5019,-8.7198],[120.5024,-8.7258],[120.5014,-8.7382],[120.5026,-8.7463],[120.5073,-8.7526],[120.5073,-8.761],[120.5059,-8.7681],[120.5085,-8.7738],[120.5039,-8.7813],[120.5084,-8.7857],[120.5093,-8.7946],[120.5131,-8.808],[120.5138,-8.8156],[120.5184,-8.8184],[120.5275,-8.8134],[120.5366,-8.8115],[120.5433,-8.8119],[120.55,-8.8164],[120.5593,-8.8162],[120.5649,-8.8175],[120.5733,-8.8165],[120.5803,-8.8182],[120.5866,-8.8155],[120.5958,-8.815],[120.6075,-8.8209],[120.6123,-8.826],[120.6121,-8.8312],[120.6148,-8.8369],[120.6232,-8.8474],[120.6259,-8.8483],[120.6329,-8.8573],[120.6395,-8.861],[120.6468,-8.8674],[120.6559,-8.8701],[120.6711,-8.8697],[120.6786,-8.8711],[120.6857,-8.8702],[120.6909,-8.8713],[120.7029,-8.8819],[120.7081,-8.8811],[120.7182,-8.8864],[120.7253,-8.8852],[120.7334,-8.8896],[120.7375,-8.8881],[120.7437,-8.8925],[120.7508,-8.8914],[120.7538,-8.8929],[120.7682,-8.8872],[120.7745,-8.8869],[120.7743,-8.8837],[120.7809,-8.875],[120.7854,-8.8732],[120.7866,-8.8522],[120.7859,-8.8474],[120.7885,-8.841],[120.7931,-8.8395],[120.7973,-8.8408],[120.8053,-8.8398],[120.8099,-8.8419],[120.8164,-8.8418],[120.8191,-8.8359],[120.81,-8.8297],[120.8113,-8.8256],[120.8164,-8.8251],[120.8237,-8.8217],[120.8245,-8.8153],[120.8289,-8.8062],[120.8304,-8.7968],[120.8379,-8.7875],[120.8448,-8.7834],[120.8406,-8.7762],[120.8431,-8.7715],[120.8462,-8.7613],[120.8503,-8.7525],[120.8549,-8.7507],[120.8563,-8.7414],[120.854,-8.7362],[120.8552,-8.7302],[120.851,-8.7291],[120.8505,-8.7218],[120.8439,-8.72],[120.8459,-8.7147],[120.8441,-8.7104],[120.8467,-8.7041],[120.8507,-8.7057],[120.8565,-8.7045],[120.8605,-8.699],[120.8706,-8.6958],[120.8787,-8.6866],[120.8806,-8.6814],[120.8809,-8.6664],[120.8843,-8.6647],[120.8898,-8.6564],[120.8914,-8.6502],[120.8853,-8.6472],[120.8858,-8.6406],[120.883,-8.6352],[120.8883,-8.6306],[120.8886,-8.6264],[120.8849,-8.6199],[120.8815,-8.6176],[120.8814,-8.6044],[120.8785,-8.5976],[120.8731,-8.5958],[120.869,-8.5912],[120.8691,-8.5853],[120.8642,-8.5825],[120.8605,-8.5731],[120.8627,-8.5694],[120.87,-8.5688],[120.8743,-8.5634],[120.8657,-8.5508],[120.8577,-8.5444],[120.8515,-8.538],[120.8507,-8.5307],[120.8513,-8.5224],[120.8498,-8.5184],[120.8453,-8.5176],[120.8481,-8.5094],[120.852,-8.508],[120.8522,-8.5043],[120.8681,-8.5002],[120.8704,-8.4964],[120.8742,-8.4845],[120.8798,-8.4827],[120.8813,-8.4789],[120.8873,-8.4771],[120.8882,-8.4813],[120.8919,-8.4838],[120.8975,-8.4837],[120.904,-8.4797],[120.9129,-8.4784],[120.9195,-8.4754],[120.9237,-8.4701],[120.9234,-8.4676],[120.9154,-8.4598],[120.9108,-8.4567],[120.9126,-8.4436],[120.9149,-8.4383],[120.9222,-8.43],[120.9274,-8.4193],[120.9266,-8.4121],[120.9302,-8.4058],[120.9412,-8.4014],[120.9426,-8.3979],[120.9424,-8.391],[120.9453,-8.3811],[120.9497,-8.3765],[120.9495,-8.3709]]}},{"type":"Feature","properties":{"mhid":"1332:321","alt_name":"KABUPATEN SABU RAIJUA","latitude":-10.56286,"longitude":121.78894,"sample_value":211},"geometry":{"type":"LineString","coordinates":[[121.2779,-10.8221],[121.2753,-10.82],[121.2697,-10.8245],[121.2731,-10.8281],[121.2833,-10.828],[121.2779,-10.8221]]}},{"type":"Feature","properties":{"mhid":"1332:321","alt_name":"KABUPATEN SABU RAIJUA","latitude":-10.56286,"longitude":121.78894,"sample_value":211},"geometry":{"type":"LineString","coordinates":[[121.6345,-10.6024],[121.63,-10.5978],[121.6194,-10.6017],[121.6057,-10.604],[121.5899,-10.6002],[121.5668,-10.5981],[121.5558,-10.6018],[121.5516,-10.6064],[121.5425,-10.6118],[121.5358,-10.6197],[121.5273,-10.6271],[121.5246,-10.6312],[121.5198,-10.6334],[121.5209,-10.6372],[121.5267,-10.6384],[121.5398,-10.6364],[121.5562,-10.6407],[121.5674,-10.6402],[121.574,-10.642],[121.5784,-10.6382],[121.5934,-10.6324],[121.6098,-10.6294],[121.617,-10.6228],[121.6253,-10.6199],[121.6321,-10.6139],[121.6346,-10.6099],[121.6345,-10.6024]]}},{"type":"Feature","properties":{"mhid":"1332:321","alt_name":"KABUPATEN SABU RAIJUA","latitude":-10.56286,"longitude":121.78894,"sample_value":211},"geometry":{"type":"LineString","coordinates":[[121.9529,-10.4338],[121.9435,-10.4283],[121.9229,-10.4211],[121.9105,-10.4188],[121.9036,-10.4188],[121.8953,-10.4206],[121.8754,-10.4282],[121.8669,-10.434],[121.8603,-10.4358],[121.852,-10.4417],[121.8444,-10.4504],[121.8438,-10.4543],[121.8465,-10.461],[121.8404,-10.4779],[121.8408,-10.489],[121.8358,-10.4941],[121.8333,-10.4989],[121.8222,-10.503],[121.8191,-10.5066],[121.8018,-10.5099],[121.7954,-10.5149],[121.7739,-10.5254],[121.767,-10.531],[121.7644,-10.535],[121.7522,-10.5407],[121.7311,-10.5492],[121.7281,-10.5495],[121.7207,-10.5543],[121.7123,-10.562],[121.7071,-10.5654],[121.6942,-10.57],[121.6854,-10.5751],[121.6868,-10.58],[121.7065,-10.592],[121.7086,-10.5912],[121.7213,-10.5965],[121.7305,-10.6015],[121.7382,-10.6029],[121.7451,-10.6123],[121.7493,-10.6151],[121.7539,-10.613],[121.7623,-10.6123],[121.7707,-10.6082],[121.7824,-10.6076],[121.789,-10.609],[121.7939,-10.6068],[121.8023,-10.6096],[121.8061,-10.6127],[121.8158,-10.6139],[121.8278,-10.6228],[121.8378,-10.6259],[121.8487,-10.6206],[121.8561,-10.6193],[121.8605,-10.6229],[121.8639,-10.6224],[121.8705,-10.6158],[121.8749,-10.6183],[121.8809,-10.6143],[121.8827,-10.6089],[121.897,-10.5953],[121.9096,-10.5905],[121.9172,-10.5835],[121.9199,-10.5792],[121.9265,-10.575],[121.9281,-10.5712],[121.9425,-10.5622],[121.948,-10.5572],[121.9572,-10.5514],[121.9628,-10.5498],[121.9726,-10.549],[121.9757,-10.5505],[121.9862,-10.5509],[121.9868,-10.5407],[121.9925,-10.5352],[121.9969,-10.5231],[121.993,-10.5172],[121.9967,-10.5015],[121.9935,-10.4891],[121.9966,-10.482],[122.0059,-10.4709],[122.0078,-10.4661],[122.0059,-10.453],[122.0002,-10.4437],[121.9966,-10.4417],[121.9881,-10.4409],[121.9705,-10.4427],[121.9589,-10.439],[121.9529,-10.4338]]}},{"type":"Feature","properties":{"mhid":"1332:322","alt_name":"KABUPATEN MALAKA","latitude":-9.5632,"longitude":124.89481,"sample_value":21},"geometry":{"type":"LineString","coordinates":[[124.8081,-9.7895],[124.8126,-9.7885],[124.824,-9.7753],[124.8303,-9.7621],[124.8344,-9.7553],[124.847,-9.7383],[124.8631,-9.7231],[124.8771,-9.7111],[124.89,-9.6992],[124.8955,-9.6955],[124.9093,-9.6895],[124.9176,-9.6848],[124.9278,-9.6825],[124.9376,-9.6825],[124.9432,-9.6784],[124.947,-9.6779],[124.9487,-9.6733],[124.9622,-9.6596],[124.9768,-9.6462],[124.9821,-9.6401],[124.9869,-9.6292],[124.9859,-9.623],[124.9866,-9.6169],[124.9863,-9.5941],[124.989,-9.579],[124.9928,-9.568],[124.9898,-9.5621],[124.9954,-9.5559],[125.0018,-9.5417],[125.0089,-9.5298],[125.0171,-9.5196],[125.028,-9.5082],[125.0487,-9.4909],[125.0632,-9.4817],[125.0723,-9.4811],[125.087,-9.4634],[125.0892,-9.4571],[125.0848,-9.4549],[125.0787,-9.4346],[125.0814,-9.4323],[125.081,-9.4215],[125.0779,-9.4183],[125.081,-9.4142],[125.0772,-9.4049],[125.077,-9.3981],[125.08,-9.3948],[125.0793,-9.3902],[125.0751,-9.3838],[125.0707,-9.3826],[125.0673,-9.3779],[125.0668,-9.3736],[125.061,-9.3726],[125.0583,-9.3666],[125.0534,-9.3641],[125.0507,-9.3602],[125.0489,-9.3532],[125.0522,-9.3314],[125.049,-9.3251],[125.041,-9.3211],[125.0356,-9.3235],[125.0341,-9.3201],[125.024,-9.3132],[125.0141,-9.3025],[125.0087,-9.302],[125.0066,-9.3112],[125.0042,-9.3131],[125.0029,-9.319],[124.9885,-9.3298],[124.988,-9.3343],[124.9938,-9.3407],[124.9953,-9.3453],[124.9958,-9.3564],[124.9875,-9.3637],[124.9864,-9.3708],[124.9825,-9.3701],[124.977,-9.3731],[124.976,-9.3785],[124.9675,-9.3841],[124.9658,-9.3903],[124.9613,-9.3931],[124.9516,-9.392],[124.9453,-9.3896],[124.9327,-9.3779],[124.9283,-9.3772],[124.9201,-9.3814],[124.9151,-9.3757],[124.9154,-9.3727],[124.9059,-9.3713],[124.9011,-9.369],[124.8963,-9.3693],[124.8933,-9.3754],[124.8895,-9.3795],[124.8881,-9.389],[124.8817,-9.3945],[124.8801,-9.3855],[124.8744,-9.3865],[124.8722,-9.3811],[124.8614,-9.3866],[124.8568,-9.3849],[124.8508,-9.3875],[124.845,-9.3877],[124.8428,-9.3839],[124.8465,-9.3756],[124.8482,-9.3596],[124.8447,-9.3539],[124.8384,-9.3497],[124.8279,-9.3474],[124.8153,-9.3411],[124.8122,-9.3443],[124.8017,-9.35],[124.8023,-9.3585],[124.8054,-9.3613],[124.8087,-9.3687],[124.8052,-9.3738],[124.8026,-9.3811],[124.8001,-9.3836],[124.7944,-9.3829],[124.7881,-9.3858],[124.778,-9.3964],[124.7735,-9.3983],[124.7687,-9.3975],[124.7686,-9.3975],[124.7686,-9.3975],[124.7686,-9.3975],[124.7687,-9.3975],[124.7711,-9.4021],[124.7699,-9.4065],[124.7845,-9.4152],[124.7878,-9.4207],[124.7864,-9.4249],[124.7879,-9.4309],[124.7862,-9.4371],[124.788,-9.4452],[124.7798,-9.4593],[124.7787,-9.464],[124.7813,-9.4707],[124.7682,-9.4687],[124.7682,-9.4763],[124.7631,-9.4824],[124.7599,-9.4794],[124.7567,-9.4824],[124.7527,-9.4823],[124.7483,-9.4888],[124.7438,-9.4877],[124.7366,-9.4959],[124.7339,-9.5011],[124.7286,-9.5026],[124.7229,-9.5013],[124.7219,-9.5063],[124.7293,-9.5134],[124.7332,-9.5105],[124.7385,-9.5111],[124.7364,-9.5154],[124.742,-9.531],[124.753,-9.5363],[124.7541,-9.5431],[124.7519,-9.5545],[124.7569,-9.5577],[124.7534,-9.5638],[124.7473,-9.5626],[124.7389,-9.5621],[124.734,-9.5548],[124.7258,-9.554],[124.7161,-9.5579],[124.7048,-9.5607],[124.7003,-9.5689],[124.7016,-9.5811],[124.6995,-9.585],[124.6927,-9.5863],[124.684,-9.5847],[124.6772,-9.5856],[124.6703,-9.5822],[124.6539,-9.5817],[124.6453,-9.5849],[124.6425,-9.595],[124.6469,-9.598],[124.6502,-9.6068],[124.6497,-9.6123],[124.6531,-9.6183],[124.6595,-9.6196],[124.6633,-9.6257],[124.6714,-9.6272],[124.68,-9.6313],[124.685,-9.6304],[124.6928,-9.6321],[124.7009,-9.6289],[124.705,-9.6361],[124.7089,-9.6379],[124.7164,-9.6384],[124.7277,-9.6293],[124.7321,-9.6292],[124.7432,-9.6206],[124.7496,-9.6141],[124.7577,-9.6021],[124.765,-9.5971],[124.7742,-9.5984],[124.7777,-9.5968],[124.7883,-9.6002],[124.7928,-9.6107],[124.7982,-9.6144],[124.8003,-9.6179],[124.7925,-9.6343],[124.7932,-9.6363],[124.7929,-9.6378],[124.7929,-9.6379],[124.7987,-9.6449],[124.8016,-9.6495],[124.8037,-9.6513],[124.8083,-9.6539],[124.8156,-9.6548],[124.8208,-9.658],[124.8213,-9.669],[124.8144,-9.6838],[124.8096,-9.7035],[124.8061,-9.7254],[124.7988,-9.7449],[124.7994,-9.756],[124.7971,-9.7645],[124.7996,-9.7742],[124.8093,-9.7806],[124.8081,-9.7895]]}},{"type":"Feature","properties":{"mhid":"1332:323","alt_name":"KOTA KUPANG","latitude":-10.21667,"longitude":123.6,"sample_value":133},"geometry":{"type":"LineString","coordinates":[[123.5283,-10.2099],[123.5342,-10.2083],[123.5432,-10.214],[123.5554,-10.2238],[123.5569,-10.2275],[123.5637,-10.227],[123.57,-10.224],[123.5785,-10.2243],[123.5742,-10.2342],[123.5708,-10.2465],[123.5743,-10.25],[123.5804,-10.2617],[123.5838,-10.2743],[123.5855,-10.2888],[123.5945,-10.2869],[123.6063,-10.2915],[123.6136,-10.2929],[123.6195,-10.2883],[123.6252,-10.288],[123.6299,-10.285],[123.6322,-10.2686],[123.6347,-10.2627],[123.6391,-10.2443],[123.6305,-10.2412],[123.6201,-10.232],[123.6335,-10.2255],[123.6395,-10.2178],[123.6491,-10.2207],[123.6574,-10.2253],[123.6685,-10.2269],[123.6676,-10.2221],[123.663,-10.2208],[123.6594,-10.2127],[123.655,-10.2083],[123.6547,-10.2036],[123.651,-10.1924],[123.6509,-10.1885],[123.6554,-10.187],[123.6587,-10.1905],[123.6623,-10.1855],[123.67,-10.184],[123.6746,-10.1767],[123.6808,-10.1765],[123.6834,-10.168],[123.6823,-10.165],[123.6763,-10.1647],[123.6671,-10.1662],[123.6625,-10.1589],[123.667,-10.1536],[123.6826,-10.1511],[123.68,-10.1468],[123.6829,-10.1397],[123.6753,-10.1325],[123.671,-10.13],[123.6679,-10.1336],[123.6608,-10.1337],[123.6566,-10.1372],[123.6545,-10.1421],[123.65,-10.1459],[123.6326,-10.1437],[123.6297,-10.1408],[123.6248,-10.1403],[123.6155,-10.1454],[123.6062,-10.149],[123.5988,-10.1531],[123.5921,-10.1523],[123.5883,-10.1568],[123.5825,-10.1569],[123.5717,-10.1642],[123.5688,-10.169],[123.5608,-10.1731],[123.5567,-10.1698],[123.5471,-10.1688],[123.5427,-10.1719],[123.5348,-10.174],[123.5314,-10.1771],[123.5282,-10.1858],[123.5272,-10.1958],[123.5302,-10.2024],[123.5283,-10.2099]]}},{"type":"Feature","properties":{"mhid":"1332:324","alt_name":"KABUPATEN SAMBAS","latitude":1.41667,"longitude":109.33333,"sample_value":128},"geometry":{"type":"LineString","coordinates":[[109.7491,1.5336],[109.742,1.5414],[109.7401,1.5465],[109.7311,1.553],[109.7236,1.5616],[109.7168,1.5658],[109.7126,1.5745],[109.7097,1.5831],[109.7041,1.5866],[109.7004,1.5865],[109.6954,1.5895],[109.6915,1.6025],[109.6848,1.6113],[109.6813,1.6125],[109.6694,1.6135],[109.6607,1.6193],[109.6602,1.6298],[109.6581,1.6365],[109.6585,1.6427],[109.6623,1.6487],[109.6626,1.66],[109.6568,1.6704],[109.6623,1.6844],[109.6617,1.6968],[109.6675,1.7003],[109.6675,1.7088],[109.6657,1.7183],[109.6666,1.7218],[109.6667,1.7338],[109.6704,1.7424],[109.6773,1.7507],[109.6836,1.7676],[109.683,1.7848],[109.6809,1.787],[109.6735,1.7879],[109.656,1.7995],[109.6501,1.7972],[109.6421,1.7977],[109.6361,1.8049],[109.6267,1.8013],[109.6208,1.8036],[109.6111,1.7966],[109.598,1.7972],[109.5862,1.7912],[109.5761,1.7995],[109.5763,1.8028],[109.5801,1.8079],[109.5807,1.8187],[109.574,1.8186],[109.578,1.8276],[109.5764,1.834],[109.5801,1.838],[109.5758,1.8456],[109.5696,1.8436],[109.5631,1.8442],[109.5589,1.851],[109.5525,1.8587],[109.5517,1.8618],[109.5533,1.8707],[109.5465,1.8797],[109.5474,1.8883],[109.5425,1.8927],[109.5444,1.8979],[109.5405,1.9021],[109.5398,1.9062],[109.5452,1.9109],[109.5546,1.9162],[109.5564,1.9205],[109.5534,1.9256],[109.5591,1.9418],[109.5631,1.9439],[109.5611,1.9521],[109.5559,1.9553],[109.5478,1.9564],[109.5519,1.9669],[109.5565,1.9705],[109.5636,1.9734],[109.5728,1.9723],[109.5821,1.9752],[109.5913,1.9703],[109.597,1.9716],[109.6028,1.9763],[109.6095,1.9791],[109.6168,1.9806],[109.6251,2.0001],[109.629,2.0053],[109.6285,2.0129],[109.6358,2.0269],[109.6295,2.0364],[109.629,2.0459],[109.6342,2.0583],[109.6425,2.0759],[109.6381,2.0776],[109.6309,2.0683],[109.6254,2.0645],[109.6236,2.0557],[109.6209,2.0542],[109.6162,2.0429],[109.6047,2.0265],[109.6016,2.0163],[109.5987,2.012],[109.5974,2.0059],[109.5943,2.0024],[109.5926,1.9958],[109.5875,1.991],[109.5789,1.9889],[109.5544,1.9888],[109.5421,1.9899],[109.5203,1.9885],[109.5131,1.9887],[109.5087,1.9867],[109.4839,1.984],[109.4719,1.9816],[109.4626,1.9784],[109.4561,1.9777],[109.4506,1.9672],[109.4342,1.9514],[109.427,1.9492],[109.399,1.9455],[109.3775,1.9441],[109.3496,1.9446],[109.3386,1.9419],[109.3345,1.9338],[109.3245,1.927],[109.3243,1.9213],[109.3309,1.9072],[109.3344,1.897],[109.3388,1.8894],[109.3448,1.8734],[109.3402,1.8652],[109.3379,1.8488],[109.3388,1.8438],[109.3365,1.8302],[109.3322,1.8247],[109.3222,1.8145],[109.3091,1.7997],[109.2952,1.7829],[109.2955,1.7782],[109.301,1.7684],[109.2978,1.7614],[109.2887,1.7529],[109.2879,1.7438],[109.286,1.7374],[109.2861,1.7257],[109.2802,1.7191],[109.2702,1.7157],[109.27,1.708],[109.2659,1.6885],[109.2622,1.6773],[109.2582,1.6694],[109.2502,1.6583],[109.236,1.6442],[109.2205,1.6327],[109.2042,1.6234],[109.1931,1.6177],[109.1577,1.6023],[109.1424,1.5945],[109.1289,1.5865],[109.1182,1.5786],[109.1039,1.5669],[109.0629,1.5284],[109.0533,1.5146],[109.0482,1.5029],[109.0419,1.4836],[109.0391,1.4675],[109.0373,1.4506],[109.0371,1.429],[109.0382,1.4138],[109.0419,1.4023],[109.0419,1.3979],[109.045,1.3742],[109.0441,1.3553],[109.0424,1.3453],[109.0387,1.3351],[109.0355,1.3291],[109.0215,1.309],[109.008,1.2926],[108.9873,1.2712],[108.9898,1.2667],[108.9869,1.2558],[108.9791,1.2413],[108.9626,1.2153],[108.9598,1.2047],[108.963,1.1975],[108.9681,1.1941],[108.9695,1.1883],[108.9678,1.1838],[108.9709,1.1786],[108.9703,1.1747],[108.9646,1.1698],[108.9593,1.1672],[108.947,1.1654],[108.9388,1.1703],[108.9266,1.1761],[108.9078,1.1744],[108.9049,1.1713],[108.9043,1.1658],[108.906,1.1592],[108.9178,1.1349],[108.9234,1.1195],[108.9261,1.1163],[108.9346,1.119],[108.9312,1.1067],[108.9316,1.0975],[108.9385,1.0948],[108.9437,1.0858],[108.9505,1.0684],[108.958,1.069],[108.962,1.0652],[108.9579,1.0608],[108.9652,1.0482],[108.9695,1.0365],[108.9722,1.0325],[108.9763,1.0197],[108.9788,1.0012],[108.9788,0.9892],[108.9933,0.9891],[109.0222,0.9905],[109.0627,0.9896],[109.0669,0.9921],[109.0763,0.9929],[109.0796,0.9981],[109.0847,1.0004],[109.0886,0.9909],[109.0956,0.9912],[109.0983,0.9944],[109.0961,1.0041],[109.0979,1.0058],[109.1072,1.005],[109.1083,1.012],[109.1209,1.0111],[109.1303,1.0184],[109.1344,1.0121],[109.1372,1.0108],[109.1454,1.0114],[109.1475,1.0091],[109.147,1.0024],[109.1509,0.9931],[109.1493,0.9812],[109.1598,0.977],[109.1615,0.9727],[109.1664,0.9732],[109.1658,0.9773],[109.1714,0.9773],[109.1761,0.9746],[109.1729,0.9665],[109.1762,0.9648],[109.1794,0.9658],[109.1865,0.964],[109.1953,0.9664],[109.2035,0.972],[109.2064,0.98],[109.2107,0.9812],[109.2132,0.9877],[109.218,0.9891],[109.2273,0.9877],[109.2302,0.9891],[109.2336,0.9948],[109.2309,1.0012],[109.2361,1.0191],[109.2416,1.0234],[109.251,1.0355],[109.2631,1.0384],[109.2718,1.0419],[109.2795,1.0428],[109.2933,1.041],[109.3119,1.0462],[109.315,1.0454],[109.3254,1.0465],[109.3327,1.0448],[109.3387,1.0467],[109.3458,1.046],[109.3524,1.042],[109.3606,1.046],[109.3693,1.0471],[109.3775,1.0463],[109.3801,1.0442],[109.3894,1.0443],[109.3997,1.0466],[109.4076,1.0525],[109.4126,1.0512],[109.4222,1.0513],[109.4247,1.045],[109.4354,1.0425],[109.4385,1.0359],[109.447,1.0305],[109.4642,1.0238],[109.4692,1.0203],[109.4762,1.0351],[109.479,1.044],[109.4803,1.0529],[109.4831,1.0635],[109.4945,1.0783],[109.5041,1.0991],[109.5074,1.108],[109.5155,1.1181],[109.5198,1.1328],[109.5183,1.1428],[109.5208,1.1627],[109.5264,1.1767],[109.5374,1.1937],[109.5402,1.1937],[109.5519,1.2003],[109.5611,1.2013],[109.589,1.202],[109.5983,1.2126],[109.6016,1.2239],[109.6012,1.2385],[109.6061,1.2551],[109.61,1.2604],[109.6108,1.275],[109.6072,1.286],[109.6141,1.3015],[109.6215,1.3118],[109.6262,1.3262],[109.6264,1.3319],[109.6188,1.3553],[109.6146,1.364],[109.6098,1.3688],[109.5984,1.3733],[109.5921,1.3698],[109.5778,1.3749],[109.5762,1.3814],[109.5868,1.3858],[109.5939,1.3856],[109.6095,1.3924],[109.6037,1.3991],[109.6014,1.4047],[109.6061,1.4086],[109.6036,1.4184],[109.609,1.4272],[109.6097,1.4326],[109.6217,1.4333],[109.6275,1.4368],[109.6293,1.4398],[109.6393,1.4435],[109.6525,1.4359],[109.6646,1.4411],[109.6693,1.445],[109.6794,1.4498],[109.6787,1.4551],[109.6879,1.4634],[109.6958,1.4633],[109.701,1.4672],[109.7042,1.4759],[109.7123,1.4738],[109.7178,1.4753],[109.7208,1.4785],[109.7239,1.4855],[109.7282,1.4883],[109.7336,1.4969],[109.7417,1.5019],[109.7501,1.5204],[109.7491,1.5336]]}},{"type":"Feature","properties":{"mhid":"1332:325","alt_name":"KABUPATEN BENGKAYANG","latitude":1.06911,"longitude":109.66393,"sample_value":242},"geometry":{"type":"LineString","coordinates":[[108.864,0.7109],[108.8613,0.706],[108.8672,0.7057],[108.864,0.7109]]}},{"type":"Feature","properties":{"mhid":"1332:325","alt_name":"KABUPATEN BENGKAYANG","latitude":1.06911,"longitude":109.66393,"sample_value":242},"geometry":{"type":"LineString","coordinates":[[108.7902,0.7539],[108.7867,0.7541],[108.786,0.7445],[108.7962,0.7499],[108.7902,0.7539]]}},{"type":"Feature","properties":{"mhid":"1332:325","alt_name":"KABUPATEN BENGKAYANG","latitude":1.06911,"longitude":109.66393,"sample_value":242},"geometry":{"type":"LineString","coordinates":[[108.77,0.7295],[108.772,0.7328],[108.7673,0.7482],[108.7674,0.7586],[108.7654,0.7637],[108.7588,0.761],[108.7598,0.7508],[108.7591,0.7443],[108.7632,0.7342],[108.77,0.7295]]}},{"type":"Feature","properties":{"mhid":"1332:325","alt_name":"KABUPATEN BENGKAYANG","latitude":1.06911,"longitude":109.66393,"sample_value":242},"geometry":{"type":"LineString","coordinates":[[108.7005,0.8043],[108.6914,0.7987],[108.691,0.7947],[108.6942,0.7842],[108.6949,0.7756],[108.7024,0.7661],[108.7061,0.7582],[108.7066,0.7463],[108.709,0.7391],[108.7145,0.7318],[108.7207,0.731],[108.7283,0.7329],[108.7286,0.7459],[108.7272,0.7524],[108.7164,0.7605],[108.7154,0.7653],[108.71,0.772],[108.7067,0.78],[108.7104,0.7883],[108.711,0.8],[108.7046,0.8041],[108.7005,0.8043]]}},{"type":"Feature","properties":{"mhid":"1332:325","alt_name":"KABUPATEN BENGKAYANG","latitude":1.06911,"longitude":109.66393,"sample_value":242},"geometry":{"type":"LineString","coordinates":[[108.7912,0.8403],[108.782,0.8401],[108.7762,0.8361],[108.7761,0.8234],[108.7791,0.8213],[108.7866,0.8231],[108.7941,0.8372],[108.7912,0.8403]]}},{"type":"Feature","properties":{"mhid":"1332:325","alt_name":"KABUPATEN BENGKAYANG","latitude":1.06911,"longitude":109.66393,"sample_value":242},"geometry":{"type":"LineString","coordinates":[[110.1321,1.1966],[110.1151,1.195],[110.1072,1.1952],[110.0936,1.1985],[110.0879,1.206],[110.0848,1.2133],[110.0789,1.2152],[110.0683,1.2098],[110.0617,1.2095],[110.0557,1.216],[110.057,1.2232],[110.0638,1.2263],[110.0652,1.2418],[110.0639,1.2527],[110.0602,1.2615],[110.0538,1.2666],[110.0464,1.2644],[110.0429,1.2664],[110.0353,1.2747],[110.0208,1.2815],[110.0099,1.291],[110.0039,1.2947],[109.9981,1.2955],[109.9837,1.2943],[109.9768,1.3014],[109.9743,1.308],[109.9599,1.3623],[109.9596,1.3685],[109.9641,1.3865],[109.9592,1.3943],[109.9487,1.4042],[109.9402,1.4134],[109.9343,1.4179],[109.9202,1.4226],[109.9062,1.4213],[109.8969,1.4167],[109.8904,1.4158],[109.875,1.419],[109.8635,1.4177],[109.8543,1.4194],[109.8491,1.4227],[109.8438,1.4238],[109.8337,1.4222],[109.8304,1.4244],[109.8312,1.4409],[109.8278,1.4513],[109.8277,1.4575],[109.8304,1.4673],[109.8351,1.4768],[109.8363,1.4824],[109.8289,1.4828],[109.8225,1.4771],[109.8177,1.4707],[109.808,1.465],[109.8006,1.4694],[109.7963,1.4748],[109.7944,1.4807],[109.7984,1.4877],[109.7975,1.4947],[109.7952,1.4986],[109.7833,1.5015],[109.7797,1.5046],[109.7708,1.5184],[109.7561,1.5304],[109.7491,1.5336],[109.7501,1.5204],[109.7417,1.5019],[109.7336,1.4969],[109.7282,1.4883],[109.7239,1.4855],[109.7208,1.4785],[109.7178,1.4753],[109.7123,1.4738],[109.7042,1.4759],[109.701,1.4672],[109.6958,1.4633],[109.6879,1.4634],[109.6787,1.4551],[109.6794,1.4498],[109.6693,1.445],[109.6646,1.4411],[109.6525,1.4359],[109.6393,1.4435],[109.6293,1.4398],[109.6275,1.4368],[109.6217,1.4333],[109.6097,1.4326],[109.609,1.4272],[109.6036,1.4184],[109.6061,1.4086],[109.6014,1.4047],[109.6037,1.3991],[109.6095,1.3924],[109.5939,1.3856],[109.5868,1.3858],[109.5762,1.3814],[109.5778,1.3749],[109.5921,1.3698],[109.5984,1.3733],[109.6098,1.3688],[109.6146,1.364],[109.6188,1.3553],[109.6264,1.3319],[109.6262,1.3262],[109.6215,1.3118],[109.6141,1.3015],[109.6072,1.286],[109.6108,1.275],[109.61,1.2604],[109.6061,1.2551],[109.6012,1.2385],[109.6016,1.2239],[109.5983,1.2126],[109.589,1.202],[109.5611,1.2013],[109.5519,1.2003],[109.5402,1.1937],[109.5374,1.1937],[109.5264,1.1767],[109.5208,1.1627],[109.5183,1.1428],[109.5198,1.1328],[109.5155,1.1181],[109.5074,1.108],[109.5041,1.0991],[109.4945,1.0783],[109.4831,1.0635],[109.4803,1.0529],[109.479,1.044],[109.4762,1.0351],[109.4692,1.0203],[109.4642,1.0238],[109.447,1.0305],[109.4385,1.0359],[109.4354,1.0425],[109.4247,1.045],[109.4222,1.0513],[109.4126,1.0512],[109.4076,1.0525],[109.3997,1.0466],[109.3894,1.0443],[109.3801,1.0442],[109.3775,1.0463],[109.3693,1.0471],[109.3606,1.046],[109.3524,1.042],[109.3458,1.046],[109.3387,1.0467],[109.3327,1.0448],[109.3254,1.0465],[109.315,1.0454],[109.3119,1.0462],[109.2933,1.041],[109.2795,1.0428],[109.2718,1.0419],[109.2631,1.0384],[109.251,1.0355],[109.2416,1.0234],[109.2361,1.0191],[109.2309,1.0012],[109.2336,0.9948],[109.2302,0.9891],[109.2273,0.9877],[109.218,0.9891],[109.2132,0.9877],[109.2107,0.9812],[109.2064,0.98],[109.2035,0.972],[109.1953,0.9664],[109.1865,0.964],[109.1794,0.9658],[109.1762,0.9648],[109.17,0.96],[109.1667,0.954],[109.1654,0.9468],[109.1606,0.942],[109.1627,0.938],[109.1603,0.9343],[109.1609,0.9286],[109.1604,0.9156],[109.1588,0.9125],[109.1574,0.9031],[109.1471,0.9023],[109.1417,0.8987],[109.1367,0.8894],[109.1324,0.884],[109.127,0.8835],[109.122,0.8806],[109.1167,0.8751],[109.0927,0.862],[109.0668,0.853],[109.0585,0.8509],[109.0522,0.8461],[109.0461,0.8393],[109.0409,0.8315],[109.0405,0.819],[109.0379,0.8071],[109.0379,0.7958],[109.0355,0.7787],[109.0314,0.7716],[109.0223,0.7661],[109.0132,0.7641],[109.0037,0.7643],[108.9954,0.7669],[108.9803,0.775],[108.9705,0.7768],[108.9663,0.7866],[108.9661,0.8001],[108.9613,0.8085],[108.9511,0.8101],[108.9484,0.8126],[108.9422,0.8126],[108.9351,0.808],[108.915,0.8181],[108.9095,0.832],[108.9067,0.8347],[108.8972,0.8336],[108.874,0.841],[108.8706,0.8372],[108.8668,0.8376],[108.8643,0.8341],[108.8543,0.8274],[108.8425,0.8166],[108.8424,0.812],[108.8479,0.8043],[108.8472,0.7954],[108.8508,0.7925],[108.8529,0.7867],[108.8622,0.7919],[108.8716,0.7852],[108.8812,0.771],[108.8838,0.7635],[108.8853,0.7485],[108.883,0.7364],[108.8785,0.7313],[108.8788,0.7248],[108.8749,0.7238],[108.8734,0.7126],[108.874,0.7086],[108.8791,0.708],[108.8894,0.7017],[108.891,0.6984],[108.8958,0.6967],[108.9044,0.6842],[108.9058,0.6761],[108.9119,0.6694],[108.9204,0.655],[108.9202,0.6483],[108.9277,0.6235],[108.9304,0.5959],[108.9305,0.5873],[108.9291,0.5751],[108.9264,0.5612],[108.9305,0.5585],[108.9314,0.5462],[108.9399,0.542],[108.9462,0.5407],[108.9498,0.5371],[108.9515,0.5296],[108.9564,0.5279],[108.9675,0.5287],[108.9748,0.538],[108.9815,0.5403],[108.986,0.5502],[108.9914,0.5507],[108.9931,0.5446],[108.996,0.5417],[109.0031,0.546],[109.0026,0.5536],[109.0089,0.5577],[109.0131,0.5657],[109.0264,0.5678],[109.0308,0.5693],[109.0305,0.5751],[109.0337,0.5791],[109.0333,0.587],[109.0392,0.5939],[109.0488,0.5969],[109.0639,0.5972],[109.0715,0.5986],[109.0783,0.6043],[109.0902,0.6185],[109.0969,0.6254],[109.1045,0.6355],[109.108,0.6446],[109.1175,0.6489],[109.1295,0.656],[109.1333,0.6598],[109.1366,0.6671],[109.1399,0.6802],[109.1435,0.6846],[109.1448,0.6889],[109.1491,0.6937],[109.1571,0.6961],[109.178,0.6984],[109.1927,0.7008],[109.2002,0.7065],[109.2117,0.7249],[109.2152,0.7271],[109.2232,0.7256],[109.2309,0.7219],[109.2352,0.7223],[109.2495,0.7297],[109.2532,0.7331],[109.2603,0.747],[109.2659,0.7505],[109.2751,0.7429],[109.2744,0.7361],[109.2762,0.7271],[109.2824,0.7161],[109.288,0.7121],[109.2938,0.7121],[109.3043,0.7179],[109.3213,0.7387],[109.3294,0.7514],[109.3359,0.7587],[109.3439,0.7635],[109.3506,0.766],[109.3582,0.7668],[109.3634,0.7634],[109.3652,0.7581],[109.3695,0.7565],[109.3735,0.7597],[109.3848,0.7511],[109.3939,0.7358],[109.3976,0.7327],[109.4071,0.7309],[109.4144,0.7328],[109.423,0.7375],[109.4318,0.7409],[109.4415,0.7518],[109.4588,0.7665],[109.4639,0.7697],[109.4714,0.777],[109.4768,0.7771],[109.4799,0.7682],[109.4856,0.7596],[109.4853,0.7575],[109.4948,0.7441],[109.5048,0.7333],[109.5116,0.731],[109.5198,0.732],[109.5249,0.7281],[109.5299,0.7144],[109.5329,0.7116],[109.5386,0.7117],[109.5508,0.7181],[109.5555,0.7197],[109.569,0.7193],[109.5811,0.7179],[109.6034,0.7298],[109.612,0.7316],[109.6275,0.7411],[109.6402,0.7457],[109.6538,0.7474],[109.662,0.7494],[109.67,0.7536],[109.676,0.7605],[109.6772,0.767],[109.6772,0.783],[109.6756,0.7989],[109.6758,0.8033],[109.6797,0.814],[109.6861,0.8382],[109.6881,0.842],[109.6953,0.8477],[109.7015,0.8498],[109.7106,0.8483],[109.7187,0.8454],[109.7323,0.8423],[109.7417,0.8415],[109.7455,0.8453],[109.7585,0.8438],[109.7709,0.8435],[109.7727,0.8405],[109.7845,0.8411],[109.7861,0.846],[109.7933,0.8489],[109.8018,0.8497],[109.8095,0.8466],[109.821,0.8531],[109.8281,0.8558],[109.8399,0.8627],[109.8502,0.8717],[109.8557,0.8854],[109.8556,0.8976],[109.8568,0.9032],[109.8599,0.9075],[109.8716,0.9159],[109.8834,0.9223],[109.8991,0.929],[109.9087,0.9352],[109.9126,0.9402],[109.9246,0.9594],[109.9261,0.965],[109.9251,0.9753],[109.9194,0.9912],[109.9198,0.9978],[109.9222,1.0013],[109.929,1.0047],[109.9295,1.012],[109.9269,1.0159],[109.9132,1.0272],[109.911,1.0333],[109.913,1.0387],[109.917,1.0444],[109.9256,1.0527],[109.9312,1.0527],[109.943,1.0421],[109.9529,1.0343],[109.9582,1.0316],[109.9639,1.031],[109.9724,1.0343],[109.9793,1.0354],[109.9807,1.0305],[109.9881,1.0293],[109.9961,1.0262],[110.0047,1.0266],[110.0104,1.024],[110.0244,1.0222],[110.0313,1.0256],[110.0365,1.0192],[110.0396,1.0206],[110.0438,1.0289],[110.0541,1.037],[110.0664,1.0334],[110.0914,1.0281],[110.0919,1.0207],[110.0993,1.022],[110.1063,1.0202],[110.1134,1.0208],[110.122,1.0195],[110.1281,1.0194],[110.1358,1.025],[110.1379,1.0316],[110.1281,1.0435],[110.1199,1.0504],[110.1135,1.0586],[110.1129,1.0694],[110.1187,1.0766],[110.1261,1.079],[110.1299,1.0846],[110.1265,1.0904],[110.1174,1.0936],[110.1047,1.1038],[110.0887,1.1051],[110.0812,1.1079],[110.0734,1.1166],[110.0712,1.1251],[110.0716,1.1313],[110.0746,1.138],[110.0821,1.1448],[110.0989,1.1486],[110.1038,1.1536],[110.1062,1.1587],[110.1222,1.1753],[110.128,1.1914],[110.1321,1.1966]]}},{"type":"Feature","properties":{"mhid":"1332:326","alt_name":"KABUPATEN LANDAK","latitude":0.42373,"longitude":109.75917,"sample_value":940},"geometry":{"type":"LineString","coordinates":[[110.122,1.0195],[110.1134,1.0208],[110.1063,1.0202],[110.0993,1.022],[110.0919,1.0207],[110.0914,1.0281],[110.0664,1.0334],[110.0541,1.037],[110.0438,1.0289],[110.0396,1.0206],[110.0365,1.0192],[110.0313,1.0256],[110.0244,1.0222],[110.0104,1.024],[110.0047,1.0266],[109.9961,1.0262],[109.9881,1.0293],[109.9807,1.0305],[109.9793,1.0354],[109.9724,1.0343],[109.9639,1.031],[109.9582,1.0316],[109.9529,1.0343],[109.943,1.0421],[109.9312,1.0527],[109.9256,1.0527],[109.917,1.0444],[109.913,1.0387],[109.911,1.0333],[109.9132,1.0272],[109.9269,1.0159],[109.9295,1.012],[109.929,1.0047],[109.9222,1.0013],[109.9198,0.9978],[109.9194,0.9912],[109.9251,0.9753],[109.9261,0.965],[109.9246,0.9594],[109.9126,0.9402],[109.9087,0.9352],[109.8991,0.929],[109.8834,0.9223],[109.8716,0.9159],[109.8599,0.9075],[109.8568,0.9032],[109.8556,0.8976],[109.8557,0.8854],[109.8502,0.8717],[109.8399,0.8627],[109.8281,0.8558],[109.821,0.8531],[109.8095,0.8466],[109.8018,0.8497],[109.7933,0.8489],[109.7861,0.846],[109.7845,0.8411],[109.7727,0.8405],[109.7709,0.8435],[109.7585,0.8438],[109.7455,0.8453],[109.7417,0.8415],[109.7323,0.8423],[109.7187,0.8454],[109.7106,0.8483],[109.7015,0.8498],[109.6953,0.8477],[109.6881,0.842],[109.6861,0.8382],[109.6797,0.814],[109.6758,0.8033],[109.6756,0.7989],[109.6772,0.783],[109.6772,0.767],[109.676,0.7605],[109.67,0.7536],[109.662,0.7494],[109.6538,0.7474],[109.6402,0.7457],[109.6275,0.7411],[109.612,0.7316],[109.6034,0.7298],[109.5811,0.7179],[109.569,0.7193],[109.5555,0.7197],[109.5508,0.7181],[109.5386,0.7117],[109.5329,0.7116],[109.5299,0.7144],[109.5249,0.7281],[109.5198,0.732],[109.5116,0.731],[109.5048,0.7333],[109.4948,0.7441],[109.4853,0.7575],[109.4856,0.7596],[109.4799,0.7682],[109.4768,0.7771],[109.4714,0.777],[109.4639,0.7697],[109.4588,0.7665],[109.4415,0.7518],[109.4318,0.7409],[109.423,0.7375],[109.4144,0.7328],[109.4071,0.7309],[109.3976,0.7327],[109.3939,0.7358],[109.3848,0.7511],[109.3735,0.7597],[109.3695,0.7565],[109.3652,0.7581],[109.3634,0.7634],[109.3582,0.7668],[109.3506,0.766],[109.3439,0.7635],[109.3359,0.7587],[109.3294,0.7514],[109.3213,0.7387],[109.3043,0.7179],[109.2938,0.7121],[109.288,0.7121],[109.2824,0.7161],[109.2762,0.7271],[109.2744,0.7361],[109.2751,0.7429],[109.2659,0.7505],[109.2603,0.747],[109.2532,0.7331],[109.2495,0.7297],[109.2352,0.7223],[109.2309,0.7219],[109.2232,0.7256],[109.2152,0.7271],[109.2117,0.7249],[109.2002,0.7065],[109.1927,0.7008],[109.178,0.6984],[109.1571,0.6961],[109.1491,0.6937],[109.1448,0.6889],[109.1435,0.6846],[109.1489,0.686],[109.153,0.6837],[109.1668,0.6715],[109.1812,0.671],[109.1859,0.6663],[109.1904,0.6555],[109.1946,0.6528],[109.2037,0.6502],[109.2129,0.643],[109.2295,0.6433],[109.235,0.6414],[109.2392,0.6374],[109.2447,0.6351],[109.2476,0.6362],[109.2559,0.6443],[109.2601,0.6452],[109.263,0.6361],[109.2661,0.6328],[109.2785,0.626],[109.2898,0.6065],[109.2873,0.6023],[109.2821,0.5882],[109.2752,0.5795],[109.2648,0.5751],[109.2531,0.5623],[109.2469,0.5519],[109.2417,0.5388],[109.2383,0.5268],[109.2376,0.5171],[109.2342,0.5102],[109.2276,0.5013],[109.2235,0.4899],[109.2228,0.4826],[109.2232,0.469],[109.2295,0.4689],[109.2306,0.4714],[109.2365,0.4727],[109.2421,0.471],[109.2406,0.4661],[109.2474,0.4606],[109.2485,0.4537],[109.2539,0.4529],[109.263,0.4561],[109.2692,0.4531],[109.274,0.4482],[109.2786,0.4383],[109.291,0.4318],[109.296,0.4252],[109.2969,0.4201],[109.3013,0.4203],[109.3055,0.4138],[109.3118,0.4079],[109.3149,0.3989],[109.3187,0.3918],[109.3195,0.3833],[109.3214,0.3779],[109.3223,0.3622],[109.3093,0.3616],[109.2971,0.3562],[109.2913,0.3488],[109.2765,0.3412],[109.2631,0.3369],[109.254,0.3372],[109.2386,0.3411],[109.235,0.3408],[109.2365,0.32],[109.2221,0.3238],[109.2163,0.3215],[109.2088,0.3147],[109.204,0.3037],[109.2005,0.2901],[109.2176,0.2805],[109.2267,0.279],[109.2337,0.279],[109.2458,0.2774],[109.2529,0.2729],[109.2599,0.2638],[109.2731,0.2638],[109.2811,0.2669],[109.3209,0.2674],[109.3416,0.2659],[109.3618,0.2633],[109.3836,0.2551],[109.3905,0.2543],[109.4056,0.2563],[109.4324,0.2563],[109.447,0.2548],[109.4578,0.2495],[109.4739,0.2467],[109.4853,0.2345],[109.4944,0.2296],[109.4959,0.2221],[109.4881,0.2168],[109.4893,0.2064],[109.493,0.2014],[109.489,0.192],[109.49,0.1776],[109.487,0.1756],[109.4889,0.1646],[109.4924,0.1645],[109.4998,0.1566],[109.5015,0.1451],[109.506,0.1459],[109.508,0.1411],[109.5062,0.1365],[109.5103,0.1277],[109.5079,0.1257],[109.5113,0.117],[109.5079,0.1131],[109.5008,0.0989],[109.5033,0.0943],[109.5003,0.0916],[109.5005,0.0757],[109.5019,0.0685],[109.5074,0.0641],[109.5164,0.0482],[109.5214,0.0415],[109.5216,0.0356],[109.5144,0.0256],[109.5097,0.0129],[109.5075,0.0032],[109.5104,-0.0073],[109.5094,-0.0127],[109.5008,-0.024],[109.5019,-0.0308],[109.5134,-0.0245],[109.5255,-0.0243],[109.5311,-0.0166],[109.5465,-0.0116],[109.5496,-0.0087],[109.5434,-0.0025],[109.5459,0.0009],[109.5519,-0.0011],[109.5568,0.0023],[109.5625,-0.0001],[109.558,-0.0034],[109.5612,-0.0126],[109.5653,-0.0095],[109.5676,-0.0028],[109.5809,-0.0042],[109.5811,-0.0009],[109.5703,0.0065],[109.5774,0.0144],[109.5808,0.0154],[109.5862,0.0092],[109.5891,0.0131],[109.5884,0.0243],[109.5841,0.0277],[109.5806,0.022],[109.5757,0.0293],[109.5692,0.031],[109.5675,0.0338],[109.5724,0.0386],[109.5801,0.0348],[109.5836,0.035],[109.586,0.0406],[109.5921,0.0396],[109.5937,0.0338],[109.5924,0.0255],[109.5995,0.0295],[109.6037,0.0356],[109.6075,0.0313],[109.6123,0.0196],[109.6164,0.0253],[109.6233,0.0236],[109.6272,0.0258],[109.6268,0.0358],[109.6306,0.0367],[109.6357,0.0341],[109.6359,0.0413],[109.6292,0.0458],[109.6298,0.0479],[109.6388,0.0515],[109.6459,0.0507],[109.6426,0.0441],[109.644,0.0397],[109.6529,0.0363],[109.6573,0.0392],[109.6502,0.0438],[109.6491,0.0496],[109.6522,0.0513],[109.6576,0.0429],[109.6633,0.0414],[109.665,0.0438],[109.6562,0.0511],[109.6562,0.0565],[109.6594,0.0594],[109.6587,0.0634],[109.6616,0.0665],[109.6652,0.062],[109.6741,0.0613],[109.6756,0.0662],[109.6845,0.0644],[109.6904,0.0671],[109.6947,0.0736],[109.7024,0.0756],[109.7119,0.0734],[109.7249,0.0778],[109.729,0.0765],[109.7406,0.0831],[109.7466,0.0852],[109.7484,0.0917],[109.7517,0.0924],[109.7594,0.0861],[109.7669,0.0773],[109.7729,0.0774],[109.7833,0.0872],[109.7882,0.0871],[109.7968,0.0901],[109.8073,0.0878],[109.8108,0.0854],[109.8157,0.0853],[109.8276,0.0904],[109.8441,0.0904],[109.8692,0.0859],[109.8769,0.0952],[109.8811,0.0963],[109.8963,0.0967],[109.9027,0.0987],[109.9129,0.1074],[109.9182,0.1161],[109.9187,0.1299],[109.9201,0.1345],[109.9301,0.148],[109.9382,0.1562],[109.9504,0.1655],[109.9618,0.1687],[109.9717,0.1685],[109.9876,0.1654],[109.9973,0.1649],[110.0137,0.1682],[110.0298,0.1767],[110.0364,0.1857],[110.0418,0.2012],[110.0495,0.2128],[110.0538,0.2156],[110.0609,0.215],[110.0688,0.2178],[110.0758,0.2174],[110.0827,0.2148],[110.0876,0.2106],[110.0934,0.2173],[110.0977,0.2189],[110.1055,0.218],[110.111,0.2099],[110.1159,0.2086],[110.1206,0.2128],[110.1271,0.2151],[110.1342,0.2211],[110.1344,0.227],[110.1293,0.2432],[110.1294,0.2504],[110.1382,0.2577],[110.1415,0.2618],[110.1429,0.2678],[110.1402,0.2767],[110.1392,0.2855],[110.1331,0.3085],[110.1322,0.3185],[110.1331,0.3232],[110.1375,0.331],[110.1484,0.3379],[110.1485,0.3412],[110.145,0.3497],[110.1447,0.3569],[110.1486,0.3627],[110.1496,0.3696],[110.1529,0.3778],[110.1623,0.3819],[110.1694,0.3837],[110.181,0.3792],[110.1848,0.3799],[110.1909,0.3854],[110.193,0.3952],[110.1978,0.4071],[110.203,0.4114],[110.2096,0.413],[110.2125,0.418],[110.2091,0.4265],[110.1962,0.4286],[110.1857,0.4274],[110.1742,0.4332],[110.1699,0.437],[110.1618,0.4411],[110.1589,0.4457],[110.1618,0.4541],[110.1663,0.4568],[110.1713,0.4623],[110.181,0.4662],[110.1855,0.4737],[110.1866,0.4839],[110.191,0.4849],[110.1962,0.4795],[110.2042,0.4804],[110.2073,0.4837],[110.2076,0.4975],[110.2036,0.5063],[110.2005,0.5206],[110.2004,0.5269],[110.2109,0.5319],[110.2147,0.5358],[110.2247,0.5382],[110.2324,0.5382],[110.2478,0.5433],[110.2555,0.5482],[110.2541,0.5603],[110.2553,0.5633],[110.2531,0.5729],[110.2607,0.5786],[110.2631,0.5855],[110.2609,0.5901],[110.2551,0.5919],[110.2488,0.5907],[110.241,0.5843],[110.2354,0.583],[110.2281,0.5911],[110.2217,0.6054],[110.2211,0.6164],[110.2193,0.6236],[110.2205,0.6305],[110.2234,0.6358],[110.2243,0.6439],[110.2272,0.6477],[110.2334,0.6486],[110.2343,0.6518],[110.2309,0.6598],[110.2303,0.6654],[110.235,0.6773],[110.2416,0.6883],[110.2452,0.6986],[110.2407,0.7094],[110.241,0.7177],[110.2398,0.7243],[110.2341,0.7318],[110.2276,0.7367],[110.2004,0.7537],[110.1953,0.7582],[110.192,0.7644],[110.1921,0.7703],[110.1871,0.7823],[110.181,0.7925],[110.1802,0.8002],[110.1765,0.8075],[110.179,0.8288],[110.1818,0.8363],[110.1895,0.8373],[110.1961,0.8416],[110.1973,0.8449],[110.206,0.8482],[110.211,0.8442],[110.2163,0.843],[110.2247,0.8471],[110.2396,0.8468],[110.2445,0.8479],[110.2478,0.8524],[110.2563,0.8565],[110.2645,0.8632],[110.2648,0.8697],[110.2434,0.8825],[110.2365,0.8851],[110.2316,0.8896],[110.2271,0.9022],[110.2276,0.9066],[110.2216,0.9156],[110.2081,0.9175],[110.2052,0.9249],[110.2025,0.927],[110.2084,0.9397],[110.2145,0.9446],[110.2177,0.9511],[110.2176,0.957],[110.2242,0.957],[110.2262,0.9624],[110.222,0.9674],[110.2165,0.9709],[110.218,0.9754],[110.2243,0.9798],[110.2169,0.9827],[110.2137,0.99],[110.2018,1],[110.1946,1.0016],[110.1812,1.003],[110.1758,1.0013],[110.1593,1.0038],[110.1428,1.01],[110.1269,1.0184],[110.122,1.0195]]}},{"type":"Feature","properties":{"mhid":"1332:327","alt_name":"KABUPATEN MEMPAWAH","latitude":0.25,"longitude":109.16667,"sample_value":481},"geometry":{"type":"LineString","coordinates":[[108.8596,0.5108],[108.8518,0.5112],[108.8481,0.5041],[108.8396,0.5048],[108.8397,0.4951],[108.8454,0.494],[108.8492,0.4896],[108.8544,0.4869],[108.8608,0.4776],[108.8639,0.4871],[108.862,0.4899],[108.8622,0.4963],[108.8577,0.5026],[108.8596,0.5108]]}},{"type":"Feature","properties":{"mhid":"1332:327","alt_name":"KABUPATEN MEMPAWAH","latitude":0.25,"longitude":109.16667,"sample_value":481},"geometry":{"type":"LineString","coordinates":[[109.3836,0.2551],[109.3618,0.2633],[109.3416,0.2659],[109.3209,0.2674],[109.2811,0.2669],[109.2731,0.2638],[109.2599,0.2638],[109.2529,0.2729],[109.2458,0.2774],[109.2337,0.279],[109.2267,0.279],[109.2176,0.2805],[109.2005,0.2901],[109.204,0.3037],[109.2088,0.3147],[109.2163,0.3215],[109.2221,0.3238],[109.2365,0.32],[109.235,0.3408],[109.2386,0.3411],[109.254,0.3372],[109.2631,0.3369],[109.2765,0.3412],[109.2913,0.3488],[109.2971,0.3562],[109.3093,0.3616],[109.3223,0.3622],[109.3214,0.3779],[109.3195,0.3833],[109.3187,0.3918],[109.3149,0.3989],[109.3118,0.4079],[109.3055,0.4138],[109.3013,0.4203],[109.2969,0.4201],[109.296,0.4252],[109.291,0.4318],[109.2786,0.4383],[109.274,0.4482],[109.2692,0.4531],[109.263,0.4561],[109.2539,0.4529],[109.2485,0.4537],[109.2474,0.4606],[109.2406,0.4661],[109.2421,0.471],[109.2365,0.4727],[109.2306,0.4714],[109.2295,0.4689],[109.2232,0.469],[109.2228,0.4826],[109.2235,0.4899],[109.2276,0.5013],[109.2342,0.5102],[109.2376,0.5171],[109.2383,0.5268],[109.2417,0.5388],[109.2469,0.5519],[109.2531,0.5623],[109.2648,0.5751],[109.2752,0.5795],[109.2821,0.5882],[109.2873,0.6023],[109.2898,0.6065],[109.2785,0.626],[109.2661,0.6328],[109.263,0.6361],[109.2601,0.6452],[109.2559,0.6443],[109.2476,0.6362],[109.2447,0.6351],[109.2392,0.6374],[109.235,0.6414],[109.2295,0.6433],[109.2129,0.643],[109.2037,0.6502],[109.1946,0.6528],[109.1904,0.6555],[109.1859,0.6663],[109.1812,0.671],[109.1668,0.6715],[109.153,0.6837],[109.1489,0.686],[109.1435,0.6846],[109.1399,0.6802],[109.1366,0.6671],[109.1333,0.6598],[109.1295,0.656],[109.1175,0.6489],[109.108,0.6446],[109.1045,0.6355],[109.0969,0.6254],[109.0902,0.6185],[109.0783,0.6043],[109.0715,0.5986],[109.0639,0.5972],[109.0488,0.5969],[109.0392,0.5939],[109.0333,0.587],[109.0337,0.5791],[109.0305,0.5751],[109.0308,0.5693],[109.0264,0.5678],[109.0131,0.5657],[109.0089,0.5577],[109.0026,0.5536],[109.0031,0.546],[108.996,0.5417],[108.9931,0.5446],[108.9914,0.5507],[108.986,0.5502],[108.9815,0.5403],[108.9748,0.538],[108.9675,0.5287],[108.9564,0.5279],[108.9515,0.5296],[108.9498,0.5371],[108.9462,0.5407],[108.9399,0.542],[108.9314,0.5462],[108.9305,0.5585],[108.9264,0.5612],[108.9205,0.5449],[108.9187,0.538],[108.9144,0.5276],[108.9076,0.5042],[108.9087,0.4951],[108.9082,0.4785],[108.911,0.4734],[108.9242,0.4649],[108.9312,0.459],[108.9389,0.4484],[108.9452,0.4324],[108.9463,0.4232],[108.9462,0.4063],[108.945,0.401],[108.9449,0.3844],[108.9398,0.3669],[108.9349,0.3579],[108.9307,0.3523],[108.9209,0.3429],[108.9124,0.3361],[108.9194,0.3231],[108.9326,0.3174],[108.941,0.3168],[108.9519,0.3116],[108.9562,0.3105],[108.9638,0.3138],[108.9912,0.3055],[109.0101,0.2982],[109.031,0.2884],[109.0436,0.281],[109.0651,0.2647],[109.0794,0.2556],[109.0934,0.2431],[109.1099,0.2238],[109.1179,0.2106],[109.1258,0.1935],[109.1297,0.1813],[109.1325,0.1654],[109.132,0.1538],[109.1325,0.1408],[109.1358,0.1327],[109.1418,0.1228],[109.1547,0.1108],[109.1611,0.1022],[109.1693,0.0848],[109.1752,0.0765],[109.1795,0.0724],[109.211,0.0508],[109.2295,0.037],[109.2476,0.0266],[109.2664,0.0192],[109.2708,0.0164],[109.29,0.0085],[109.2975,0.0298],[109.3057,0.0288],[109.3058,0.0333],[109.3103,0.0341],[109.3093,0.0381],[109.3233,0.035],[109.339,0.03],[109.357,0.0259],[109.3708,0.0211],[109.3685,0.036],[109.3642,0.0444],[109.3642,0.0544],[109.3693,0.0616],[109.3714,0.0685],[109.3661,0.0786],[109.3612,0.0836],[109.359,0.0891],[109.3574,0.1019],[109.3592,0.1181],[109.3579,0.1224],[109.3508,0.132],[109.3512,0.1629],[109.3514,0.2066],[109.3546,0.218],[109.3593,0.2243],[109.3639,0.2337],[109.3793,0.2521],[109.3836,0.2551]]}},{"type":"Feature","properties":{"mhid":"1332:328","alt_name":"KABUPATEN SANGGAU","latitude":0.25472,"longitude":110.45,"sample_value":120},"geometry":{"type":"LineString","coordinates":[[110.8083,0.8595],[110.8087,0.8678],[110.7984,0.874],[110.7849,0.884],[110.7816,0.8887],[110.7765,0.8911],[110.7789,0.8942],[110.7975,0.906],[110.7931,0.908],[110.7913,0.9122],[110.7852,0.9123],[110.782,0.9261],[110.7784,0.9304],[110.7729,0.9321],[110.7671,0.9294],[110.7662,0.9244],[110.7632,0.9233],[110.7618,0.9177],[110.7644,0.9156],[110.7662,0.9081],[110.7609,0.9057],[110.757,0.8992],[110.7514,0.8996],[110.7498,0.9032],[110.7427,0.9033],[110.7329,0.9073],[110.7253,0.9072],[110.7203,0.9047],[110.7177,0.906],[110.7132,0.8964],[110.7058,0.8913],[110.7041,0.8863],[110.699,0.8841],[110.6973,0.8768],[110.7005,0.8731],[110.6975,0.8645],[110.6929,0.8632],[110.6846,0.8677],[110.6813,0.8718],[110.6716,0.8756],[110.6645,0.8734],[110.6595,0.8741],[110.6533,0.8776],[110.656,0.891],[110.6493,0.896],[110.6495,0.9021],[110.6395,0.8923],[110.6339,0.8834],[110.6381,0.88],[110.6365,0.8757],[110.6249,0.8691],[110.6224,0.8659],[110.6134,0.8693],[110.6113,0.8664],[110.6032,0.8688],[110.6008,0.8624],[110.597,0.8576],[110.5911,0.8602],[110.5876,0.8577],[110.5804,0.8582],[110.5768,0.8537],[110.5699,0.8606],[110.5623,0.8609],[110.5549,0.8594],[110.5479,0.8639],[110.5465,0.8685],[110.5364,0.8677],[110.5298,0.8713],[110.5226,0.8698],[110.5134,0.8745],[110.5078,0.8733],[110.4994,0.8743],[110.4919,0.8766],[110.4913,0.8796],[110.4842,0.8832],[110.4808,0.8879],[110.481,0.8919],[110.4687,0.8925],[110.4641,0.9047],[110.4574,0.9063],[110.4544,0.9088],[110.4458,0.9094],[110.4401,0.9184],[110.4394,0.9225],[110.4344,0.9252],[110.4358,0.9297],[110.4421,0.9381],[110.4404,0.9436],[110.4369,0.9466],[110.4308,0.9447],[110.4259,0.9466],[110.4217,0.9523],[110.4192,0.9506],[110.4068,0.9529],[110.4101,0.9579],[110.4106,0.9674],[110.4061,0.9718],[110.4078,0.9761],[110.4023,0.9884],[110.3988,0.9903],[110.3978,0.9976],[110.3898,0.9943],[110.38,0.9957],[110.3722,0.9912],[110.3721,0.9878],[110.3639,0.985],[110.3587,0.9873],[110.3544,0.9864],[110.3448,0.9918],[110.343,0.9977],[110.3452,1.0062],[110.3407,1.0125],[110.3305,1.0029],[110.3295,0.9952],[110.3265,0.992],[110.323,0.9983],[110.317,1.0018],[110.3105,1.0003],[110.3067,1.0034],[110.2998,0.9957],[110.294,0.9981],[110.2915,0.9954],[110.2798,0.9968],[110.2791,1.0019],[110.2837,1.0097],[110.2843,1.0181],[110.2795,1.0325],[110.288,1.0402],[110.2877,1.0444],[110.2807,1.0522],[110.2774,1.0514],[110.2708,1.0533],[110.2689,1.0504],[110.2616,1.0575],[110.2618,1.0616],[110.2666,1.0639],[110.2649,1.0743],[110.253,1.0795],[110.2485,1.0889],[110.2493,1.098],[110.2473,1.1029],[110.2487,1.1085],[110.2455,1.1111],[110.2426,1.1178],[110.2333,1.1203],[110.223,1.1151],[110.2173,1.1151],[110.2118,1.1185],[110.2092,1.1307],[110.2066,1.1329],[110.2074,1.1383],[110.2133,1.1408],[110.2141,1.1507],[110.2075,1.1593],[110.2086,1.1645],[110.2018,1.1679],[110.1971,1.1751],[110.1944,1.1828],[110.1906,1.1826],[110.1726,1.1871],[110.1665,1.196],[110.1605,1.1987],[110.1539,1.1968],[110.1403,1.1998],[110.1321,1.1966],[110.128,1.1914],[110.1222,1.1753],[110.1062,1.1587],[110.1038,1.1536],[110.0989,1.1486],[110.0821,1.1448],[110.0746,1.138],[110.0716,1.1313],[110.0712,1.1251],[110.0734,1.1166],[110.0812,1.1079],[110.0887,1.1051],[110.1047,1.1038],[110.1174,1.0936],[110.1265,1.0904],[110.1299,1.0846],[110.1261,1.079],[110.1187,1.0766],[110.1129,1.0694],[110.1135,1.0586],[110.1199,1.0504],[110.1281,1.0435],[110.1379,1.0316],[110.1358,1.025],[110.1281,1.0194],[110.122,1.0195],[110.1269,1.0184],[110.1428,1.01],[110.1593,1.0038],[110.1758,1.0013],[110.1812,1.003],[110.1946,1.0016],[110.2018,1],[110.2137,0.99],[110.2169,0.9827],[110.2243,0.9798],[110.218,0.9754],[110.2165,0.9709],[110.222,0.9674],[110.2262,0.9624],[110.2242,0.957],[110.2176,0.957],[110.2177,0.9511],[110.2145,0.9446],[110.2084,0.9397],[110.2025,0.927],[110.2052,0.9249],[110.2081,0.9175],[110.2216,0.9156],[110.2276,0.9066],[110.2271,0.9022],[110.2316,0.8896],[110.2365,0.8851],[110.2434,0.8825],[110.2648,0.8697],[110.2645,0.8632],[110.2563,0.8565],[110.2478,0.8524],[110.2445,0.8479],[110.2396,0.8468],[110.2247,0.8471],[110.2163,0.843],[110.211,0.8442],[110.206,0.8482],[110.1973,0.8449],[110.1961,0.8416],[110.1895,0.8373],[110.1818,0.8363],[110.179,0.8288],[110.1765,0.8075],[110.1802,0.8002],[110.181,0.7925],[110.1871,0.7823],[110.1921,0.7703],[110.192,0.7644],[110.1953,0.7582],[110.2004,0.7537],[110.2276,0.7367],[110.2341,0.7318],[110.2398,0.7243],[110.241,0.7177],[110.2407,0.7094],[110.2452,0.6986],[110.2416,0.6883],[110.235,0.6773],[110.2303,0.6654],[110.2309,0.6598],[110.2343,0.6518],[110.2334,0.6486],[110.2272,0.6477],[110.2243,0.6439],[110.2234,0.6358],[110.2205,0.6305],[110.2193,0.6236],[110.2211,0.6164],[110.2217,0.6054],[110.2281,0.5911],[110.2354,0.583],[110.241,0.5843],[110.2488,0.5907],[110.2551,0.5919],[110.2609,0.5901],[110.2631,0.5855],[110.2607,0.5786],[110.2531,0.5729],[110.2553,0.5633],[110.2541,0.5603],[110.2555,0.5482],[110.2478,0.5433],[110.2324,0.5382],[110.2247,0.5382],[110.2147,0.5358],[110.2109,0.5319],[110.2004,0.5269],[110.2005,0.5206],[110.2036,0.5063],[110.2076,0.4975],[110.2073,0.4837],[110.2042,0.4804],[110.1962,0.4795],[110.191,0.4849],[110.1866,0.4839],[110.1855,0.4737],[110.181,0.4662],[110.1713,0.4623],[110.1663,0.4568],[110.1618,0.4541],[110.1589,0.4457],[110.1618,0.4411],[110.1699,0.437],[110.1742,0.4332],[110.1857,0.4274],[110.1962,0.4286],[110.2091,0.4265],[110.2125,0.418],[110.2096,0.413],[110.203,0.4114],[110.1978,0.4071],[110.193,0.3952],[110.1909,0.3854],[110.1848,0.3799],[110.181,0.3792],[110.1694,0.3837],[110.1623,0.3819],[110.1529,0.3778],[110.1496,0.3696],[110.1486,0.3627],[110.1447,0.3569],[110.145,0.3497],[110.1485,0.3412],[110.1484,0.3379],[110.1375,0.331],[110.1331,0.3232],[110.1322,0.3185],[110.1331,0.3085],[110.1392,0.2855],[110.1402,0.2767],[110.1429,0.2678],[110.1415,0.2618],[110.1382,0.2577],[110.1294,0.2504],[110.1293,0.2432],[110.1344,0.227],[110.1342,0.2211],[110.1271,0.2151],[110.1206,0.2128],[110.1159,0.2086],[110.111,0.2099],[110.1055,0.218],[110.0977,0.2189],[110.0934,0.2173],[110.0876,0.2106],[110.0827,0.2148],[110.0758,0.2174],[110.0688,0.2178],[110.0609,0.215],[110.0538,0.2156],[110.0495,0.2128],[110.0418,0.2012],[110.0364,0.1857],[110.0298,0.1767],[110.0137,0.1682],[109.9973,0.1649],[109.9876,0.1654],[109.9717,0.1685],[109.9618,0.1687],[109.9504,0.1655],[109.9382,0.1562],[109.9301,0.148],[109.9201,0.1345],[109.9187,0.1299],[109.9182,0.1161],[109.9129,0.1074],[109.9027,0.0987],[109.8963,0.0967],[109.8811,0.0963],[109.8769,0.0952],[109.8692,0.0859],[109.8608,0.0759],[109.8592,0.0691],[109.8595,0.0593],[109.8608,0.0512],[109.8599,0.0465],[109.8641,0.0384],[109.855,0.0248],[109.8477,0.0259],[109.8381,0.0253],[109.8347,0.0192],[109.8418,0],[109.8465,-0.0399],[109.8499,-0.0489],[109.8602,-0.0567],[109.8643,-0.0637],[109.8734,-0.0707],[109.8745,-0.0788],[109.8764,-0.083],[109.8904,-0.0967],[109.895,-0.1032],[109.9037,-0.1069],[109.9026,-0.1148],[109.9004,-0.1199],[109.9012,-0.1292],[109.9055,-0.1361],[109.9202,-0.1453],[109.9147,-0.15],[109.9192,-0.1519],[109.929,-0.1497],[109.9389,-0.1434],[109.938,-0.1516],[109.9381,-0.163],[109.9416,-0.1828],[109.9418,-0.1981],[109.9403,-0.2139],[109.9425,-0.2281],[109.9476,-0.2376],[109.9498,-0.2449],[109.9478,-0.2555],[109.9515,-0.2616],[109.9601,-0.2667],[109.9648,-0.2741],[109.9657,-0.2814],[109.9644,-0.2847],[109.9568,-0.2926],[109.9503,-0.3024],[109.9395,-0.3085],[109.9337,-0.313],[109.9306,-0.3186],[109.9334,-0.3284],[109.9464,-0.3403],[109.9484,-0.3465],[109.946,-0.3503],[109.9385,-0.3529],[109.9301,-0.3523],[109.9225,-0.3569],[109.9206,-0.3646],[109.9203,-0.3982],[109.9225,-0.4081],[109.9261,-0.4124],[109.94,-0.4199],[109.9472,-0.4215],[109.9534,-0.4254],[109.9671,-0.4292],[109.9717,-0.4331],[109.9722,-0.4408],[109.9653,-0.4446],[109.953,-0.4396],[109.946,-0.4428],[109.9493,-0.4478],[109.9537,-0.4496],[109.9641,-0.4512],[109.9702,-0.4574],[109.973,-0.4673],[109.9729,-0.4754],[109.9714,-0.4786],[109.9614,-0.4836],[109.9587,-0.4863],[109.9644,-0.4965],[109.9725,-0.4985],[109.978,-0.4963],[109.9808,-0.4908],[109.9889,-0.4843],[109.996,-0.4833],[109.9922,-0.4787],[109.9948,-0.4715],[110.005,-0.4721],[110.0091,-0.4616],[110.015,-0.4568],[110.0148,-0.448],[110.0263,-0.4447],[110.0373,-0.4348],[110.0381,-0.4307],[110.0365,-0.4232],[110.0431,-0.4163],[110.0437,-0.4124],[110.0399,-0.4045],[110.0409,-0.3972],[110.0491,-0.3912],[110.0513,-0.3865],[110.0579,-0.3857],[110.0603,-0.3885],[110.0773,-0.3885],[110.0794,-0.3944],[110.0858,-0.398],[110.0923,-0.3984],[110.0988,-0.3968],[110.1032,-0.4188],[110.108,-0.4234],[110.1138,-0.4219],[110.1209,-0.4251],[110.1298,-0.4248],[110.1353,-0.4281],[110.1421,-0.4294],[110.1483,-0.4352],[110.1505,-0.4354],[110.1564,-0.4284],[110.1672,-0.423],[110.1858,-0.4182],[110.1914,-0.4185],[110.1943,-0.4213],[110.2078,-0.4193],[110.213,-0.4193],[110.215,-0.4233],[110.2273,-0.4278],[110.2328,-0.4332],[110.2456,-0.4377],[110.2492,-0.4428],[110.2537,-0.4436],[110.2621,-0.4392],[110.2724,-0.4372],[110.2765,-0.4374],[110.2909,-0.4458],[110.2985,-0.449],[110.3024,-0.4464],[110.3027,-0.4418],[110.3066,-0.4378],[110.3067,-0.4331],[110.3115,-0.426],[110.3118,-0.4175],[110.3149,-0.4124],[110.3216,-0.4069],[110.3313,-0.4023],[110.334,-0.3987],[110.3452,-0.3928],[110.3613,-0.3963],[110.3668,-0.3955],[110.3715,-0.4011],[110.3713,-0.4124],[110.3673,-0.4157],[110.3572,-0.4207],[110.3505,-0.4336],[110.3521,-0.4421],[110.3561,-0.4453],[110.3684,-0.4449],[110.3713,-0.4495],[110.3684,-0.4638],[110.3708,-0.4665],[110.3845,-0.4699],[110.39,-0.4741],[110.3914,-0.4676],[110.3985,-0.4598],[110.3983,-0.4542],[110.4002,-0.4499],[110.4039,-0.4485],[110.4059,-0.443],[110.4106,-0.444],[110.4144,-0.4327],[110.411,-0.4253],[110.413,-0.4195],[110.4109,-0.4113],[110.4129,-0.4022],[110.4065,-0.3831],[110.4024,-0.3771],[110.4165,-0.3674],[110.426,-0.3635],[110.4309,-0.3588],[110.4384,-0.3462],[110.447,-0.3405],[110.4584,-0.3308],[110.4685,-0.326],[110.4818,-0.3274],[110.4926,-0.3306],[110.5281,-0.3387],[110.541,-0.348],[110.5618,-0.3657],[110.5608,-0.3507],[110.5562,-0.3427],[110.5548,-0.3322],[110.556,-0.3206],[110.5606,-0.3115],[110.5616,-0.3038],[110.5697,-0.2859],[110.5667,-0.2777],[110.5611,-0.2731],[110.5601,-0.2587],[110.5651,-0.2531],[110.5707,-0.2505],[110.584,-0.2485],[110.6002,-0.2408],[110.6053,-0.2377],[110.6069,-0.2306],[110.6099,-0.2244],[110.6221,-0.2132],[110.6301,-0.2041],[110.6307,-0.1989],[110.6353,-0.1782],[110.6403,-0.1503],[110.642,-0.1463],[110.6459,-0.1441],[110.6575,-0.1492],[110.6654,-0.1546],[110.6758,-0.1593],[110.6892,-0.1631],[110.6988,-0.1681],[110.7085,-0.1697],[110.7163,-0.1695],[110.7488,-0.1638],[110.7465,-0.1583],[110.7454,-0.148],[110.7407,-0.1406],[110.7394,-0.1304],[110.7358,-0.1247],[110.7292,-0.1184],[110.7201,-0.1069],[110.7156,-0.0921],[110.7144,-0.0836],[110.7143,-0.0696],[110.7165,-0.0581],[110.719,-0.0393],[110.7258,-0.033],[110.7288,-0.0246],[110.7391,-0.0151],[110.7503,0],[110.7538,0.0131],[110.7563,0.0284],[110.7552,0.0341],[110.7501,0.0452],[110.749,0.0549],[110.7519,0.0658],[110.7579,0.0713],[110.7689,0.0771],[110.785,0.0822],[110.7908,0.0848],[110.8075,0.0901],[110.8296,0.0933],[110.8356,0.0935],[110.8401,0.0901],[110.8484,0.0933],[110.8557,0.1006],[110.868,0.1146],[110.8732,0.1239],[110.8753,0.1338],[110.8773,0.153],[110.8825,0.1603],[110.885,0.1686],[110.8871,0.1816],[110.8889,0.1864],[110.8889,0.1955],[110.8861,0.206],[110.8883,0.2148],[110.8961,0.2235],[110.903,0.2277],[110.9152,0.2263],[110.9218,0.2293],[110.9351,0.2575],[110.9447,0.2941],[110.9457,0.3065],[110.9473,0.3114],[110.9543,0.3205],[110.9681,0.3341],[110.972,0.3475],[110.9733,0.36],[110.9666,0.38],[110.9636,0.3851],[110.9533,0.3909],[110.9524,0.3959],[110.9459,0.4007],[110.9464,0.4054],[110.9427,0.4142],[110.9398,0.4318],[110.9428,0.4429],[110.9421,0.4493],[110.9425,0.4618],[110.9444,0.468],[110.9515,0.4815],[110.9565,0.4973],[110.9625,0.5021],[110.9658,0.5094],[110.9744,0.5252],[110.9807,0.5336],[110.9963,0.5518],[111.0019,0.5629],[111.0009,0.5804],[111.004,0.5871],[111.0056,0.5948],[111.0081,0.598],[111.0098,0.605],[111.0108,0.6184],[111.0095,0.6407],[111.0104,0.6503],[111.0133,0.6619],[111.0125,0.6687],[111.0092,0.6742],[111.0073,0.6819],[111.0103,0.688],[111.0182,0.692],[111.0249,0.6969],[111.0403,0.7122],[111.0501,0.7289],[111.0538,0.7377],[111.0535,0.74],[111.0324,0.7432],[111.018,0.7462],[110.9994,0.7539],[110.9892,0.7536],[110.9699,0.7442],[110.9606,0.7421],[110.9427,0.7414],[110.9364,0.7403],[110.9179,0.7331],[110.9048,0.7309],[110.8992,0.7321],[110.8939,0.7352],[110.8765,0.7519],[110.8675,0.7587],[110.8571,0.7559],[110.8318,0.7465],[110.8242,0.7497],[110.816,0.7508],[110.8058,0.7606],[110.7933,0.7807],[110.7905,0.7881],[110.7892,0.7977],[110.7816,0.8099],[110.7873,0.8113],[110.788,0.8144],[110.7844,0.8207],[110.7876,0.8242],[110.7873,0.8292],[110.7898,0.8424],[110.7921,0.8469],[110.7998,0.8479],[110.8047,0.8512],[110.8051,0.856],[110.8083,0.8595]]}},{"type":"Feature","properties":{"mhid":"1332:329","alt_name":"KABUPATEN KETAPANG","latitude":-1.58333,"longitude":110.5,"sample_value":321},"geometry":{"type":"LineString","coordinates":[[110.17,-2.8523],[110.1657,-2.8526],[110.1591,-2.8568],[110.1613,-2.8652],[110.1586,-2.8688],[110.1583,-2.8737],[110.1515,-2.8825],[110.1468,-2.8829],[110.1384,-2.8862],[110.1317,-2.8903],[110.1337,-2.898],[110.1406,-2.903],[110.1452,-2.898],[110.1493,-2.9025],[110.1548,-2.9001],[110.1602,-2.907],[110.1598,-2.9108],[110.169,-2.9123],[110.1716,-2.9143],[110.1838,-2.9086],[110.1948,-2.9094],[110.1917,-2.9039],[110.1949,-2.898],[110.2005,-2.8931],[110.2001,-2.8875],[110.2018,-2.8827],[110.1946,-2.8769],[110.1793,-2.8621],[110.1747,-2.8544],[110.17,-2.8523]]}},{"type":"Feature","properties":{"mhid":"1332:329","alt_name":"KABUPATEN KETAPANG","latitude":-1.58333,"longitude":110.5,"sample_value":321},"geometry":{"type":"LineString","coordinates":[[110.1131,-2.6731],[110.1055,-2.6744],[110.0993,-2.6733],[110.0945,-2.6801],[110.0926,-2.6883],[110.0856,-2.6954],[110.0818,-2.6931],[110.0778,-2.6963],[110.0734,-2.7061],[110.0714,-2.7178],[110.0684,-2.7218],[110.0665,-2.731],[110.0571,-2.7381],[110.0432,-2.7444],[110.0444,-2.7482],[110.053,-2.7483],[110.0611,-2.7524],[110.0691,-2.7529],[110.0713,-2.7559],[110.0817,-2.7607],[110.0895,-2.7577],[110.0971,-2.7582],[110.1032,-2.7572],[110.1066,-2.7528],[110.1146,-2.7519],[110.1206,-2.7495],[110.1212,-2.7461],[110.1292,-2.7416],[110.1241,-2.7386],[110.1245,-2.7307],[110.1218,-2.7227],[110.1157,-2.7188],[110.121,-2.7155],[110.1209,-2.7098],[110.1181,-2.7025],[110.1218,-2.6983],[110.1274,-2.6985],[110.1278,-2.6936],[110.1197,-2.6862],[110.122,-2.6809],[110.1151,-2.6773],[110.1131,-2.6731]]}},{"type":"Feature","properties":{"mhid":"1332:329","alt_name":"KABUPATEN KETAPANG","latitude":-1.58333,"longitude":110.5,"sample_value":321},"geometry":{"type":"LineString","coordinates":[[110.1278,-2.6266],[110.1214,-2.6284],[110.1158,-2.632],[110.1234,-2.6383],[110.1278,-2.6266]]}},{"type":"Feature","properties":{"mhid":"1332:329","alt_name":"KABUPATEN KETAPANG","latitude":-1.58333,"longitude":110.5,"sample_value":321},"geometry":{"type":"LineString","coordinates":[[110.0615,-2.3727],[110.0586,-2.377],[110.0687,-2.3787],[110.0663,-2.3744],[110.0615,-2.3727]]}},{"type":"Feature","properties":{"mhid":"1332:329","alt_name":"KABUPATEN KETAPANG","latitude":-1.58333,"longitude":110.5,"sample_value":321},"geometry":{"type":"LineString","coordinates":[[110.0146,-1.4282],[110.019,-1.4363],[110.0209,-1.4341],[110.0146,-1.4282]]}},{"type":"Feature","properties":{"mhid":"1332:329","alt_name":"KABUPATEN KETAPANG","latitude":-1.58333,"longitude":110.5,"sample_value":321},"geometry":{"type":"LineString","coordinates":[[111.0889,-0.4955],[111.0842,-0.4991],[111.0689,-0.5019],[111.0654,-0.5007],[111.0509,-0.5029],[111.0452,-0.5018],[111.0296,-0.5012],[111.0178,-0.5036],[111.0047,-0.4986],[110.9802,-0.488],[110.9718,-0.485],[110.947,-0.4815],[110.9357,-0.4701],[110.9258,-0.4678],[110.9214,-0.4622],[110.9072,-0.458],[110.8996,-0.4592],[110.8912,-0.4668],[110.8887,-0.4708],[110.8814,-0.478],[110.8669,-0.4904],[110.8721,-0.5059],[110.8659,-0.5122],[110.8599,-0.516],[110.8504,-0.5272],[110.8463,-0.5413],[110.8468,-0.5553],[110.8437,-0.5678],[110.8184,-0.585],[110.8127,-0.5896],[110.8091,-0.5959],[110.8039,-0.6011],[110.7827,-0.6068],[110.7755,-0.6068],[110.7744,-0.6089],[110.7633,-0.6102],[110.7489,-0.6221],[110.7362,-0.6255],[110.7319,-0.6294],[110.7281,-0.6226],[110.7154,-0.6231],[110.7032,-0.632],[110.6983,-0.6328],[110.6782,-0.6216],[110.6701,-0.6196],[110.6491,-0.6164],[110.6369,-0.6191],[110.6315,-0.5815],[110.6299,-0.5672],[110.6317,-0.5468],[110.6301,-0.5423],[110.6218,-0.5302],[110.618,-0.5217],[110.6137,-0.5072],[110.6157,-0.4875],[110.6134,-0.4745],[110.6132,-0.4679],[110.6168,-0.4594],[110.6122,-0.4445],[110.6042,-0.4229],[110.5932,-0.4048],[110.5714,-0.3853],[110.5663,-0.3793],[110.5618,-0.3657],[110.541,-0.348],[110.5281,-0.3387],[110.4926,-0.3306],[110.4818,-0.3274],[110.4685,-0.326],[110.4584,-0.3308],[110.447,-0.3405],[110.4384,-0.3462],[110.4309,-0.3588],[110.426,-0.3635],[110.4165,-0.3674],[110.4024,-0.3771],[110.4065,-0.3831],[110.4129,-0.4022],[110.4109,-0.4113],[110.413,-0.4195],[110.411,-0.4253],[110.4144,-0.4327],[110.4106,-0.444],[110.4059,-0.443],[110.4039,-0.4485],[110.4002,-0.4499],[110.3983,-0.4542],[110.3985,-0.4598],[110.3914,-0.4676],[110.39,-0.4741],[110.3845,-0.4699],[110.3708,-0.4665],[110.3684,-0.4638],[110.3713,-0.4495],[110.3684,-0.4449],[110.3561,-0.4453],[110.3521,-0.4421],[110.3505,-0.4336],[110.3572,-0.4207],[110.3673,-0.4157],[110.3713,-0.4124],[110.3715,-0.4011],[110.3668,-0.3955],[110.3613,-0.3963],[110.3452,-0.3928],[110.334,-0.3987],[110.3313,-0.4023],[110.3216,-0.4069],[110.3149,-0.4124],[110.3118,-0.4175],[110.3115,-0.426],[110.3067,-0.4331],[110.3066,-0.4378],[110.3027,-0.4418],[110.3024,-0.4464],[110.2985,-0.449],[110.2909,-0.4458],[110.2765,-0.4374],[110.2724,-0.4372],[110.2621,-0.4392],[110.2537,-0.4436],[110.2492,-0.4428],[110.2456,-0.4377],[110.2328,-0.4332],[110.2273,-0.4278],[110.215,-0.4233],[110.213,-0.4193],[110.2078,-0.4193],[110.1943,-0.4213],[110.1914,-0.4185],[110.1858,-0.4182],[110.1672,-0.423],[110.1564,-0.4284],[110.1505,-0.4354],[110.1483,-0.4352],[110.1421,-0.4294],[110.1353,-0.4281],[110.1298,-0.4248],[110.1209,-0.4251],[110.1138,-0.4219],[110.108,-0.4234],[110.1032,-0.4188],[110.0988,-0.3968],[110.0923,-0.3984],[110.0858,-0.398],[110.0794,-0.3944],[110.0773,-0.3885],[110.0603,-0.3885],[110.0579,-0.3857],[110.0513,-0.3865],[110.0491,-0.3912],[110.0409,-0.3972],[110.0399,-0.4045],[110.0437,-0.4124],[110.0431,-0.4163],[110.0365,-0.4232],[110.0381,-0.4307],[110.0373,-0.4348],[110.0263,-0.4447],[110.0148,-0.448],[110.015,-0.4568],[110.0091,-0.4616],[110.005,-0.4721],[109.9948,-0.4715],[109.9922,-0.4787],[109.996,-0.4833],[109.9889,-0.4843],[109.9808,-0.4908],[109.978,-0.4963],[109.9725,-0.4985],[109.9644,-0.4965],[109.957,-0.4967],[109.9474,-0.4992],[109.9431,-0.5042],[109.9362,-0.5152],[109.9241,-0.5237],[109.9187,-0.531],[109.887,-0.5511],[109.88,-0.5612],[109.8791,-0.5685],[109.882,-0.5772],[109.881,-0.5864],[109.8702,-0.592],[109.8668,-0.596],[109.8635,-0.6059],[109.86,-0.6107],[109.8448,-0.621],[109.8264,-0.6318],[109.8181,-0.6386],[109.8146,-0.6429],[109.8107,-0.671],[109.8133,-0.6802],[109.8185,-0.6822],[109.8219,-0.6805],[109.8236,-0.6732],[109.828,-0.6728],[109.8385,-0.6754],[109.8406,-0.6726],[109.8412,-0.666],[109.8463,-0.659],[109.8543,-0.6572],[109.8615,-0.6599],[109.8687,-0.6723],[109.8804,-0.685],[109.8843,-0.6915],[109.885,-0.6997],[109.8791,-0.711],[109.8799,-0.7167],[109.8887,-0.7268],[109.8994,-0.7323],[109.9059,-0.7315],[109.9118,-0.7283],[109.9337,-0.7195],[109.9411,-0.7299],[109.9409,-0.7376],[109.9377,-0.7449],[109.9326,-0.7483],[109.9323,-0.7523],[109.9717,-0.7525],[110.0029,-0.7561],[110.0162,-0.758],[110.0573,-0.7597],[110.0978,-0.7759],[110.1139,-0.7832],[110.127,-0.7901],[110.1377,-0.7978],[110.1443,-0.8039],[110.1907,-0.8427],[110.2195,-0.8611],[110.2336,-0.866],[110.2819,-0.8742],[110.3461,-0.8751],[110.3531,-0.8738],[110.3644,-0.9036],[110.3759,-0.9581],[110.3911,-1.0114],[110.4002,-1.0494],[110.4043,-1.0592],[110.3997,-1.0635],[110.395,-1.0638],[110.3956,-1.0692],[110.4,-1.0714],[110.4004,-1.0802],[110.4045,-1.0817],[110.4135,-1.0804],[110.4218,-1.0866],[110.4242,-1.0929],[110.414,-1.0986],[110.4144,-1.1018],[110.4215,-1.1041],[110.4274,-1.101],[110.4309,-1.1072],[110.4422,-1.107],[110.4458,-1.11],[110.4603,-1.1107],[110.4582,-1.1166],[110.4612,-1.1205],[110.4615,-1.1303],[110.4706,-1.134],[110.4706,-1.139],[110.4656,-1.1408],[110.4677,-1.1447],[110.4681,-1.1522],[110.4654,-1.1564],[110.4658,-1.1616],[110.4621,-1.1675],[110.466,-1.169],[110.4566,-1.1809],[110.455,-1.1913],[110.4511,-1.1957],[110.4541,-1.201],[110.4464,-1.2073],[110.4444,-1.2158],[110.4449,-1.2218],[110.4477,-1.2237],[110.4444,-1.231],[110.4413,-1.2341],[110.4187,-1.2255],[110.3813,-1.2268],[110.353,-1.2363],[110.3177,-1.2615],[110.2886,-1.2884],[110.2707,-1.3044],[110.2522,-1.3094],[110.2349,-1.3063],[110.2201,-1.3082],[110.205,-1.3174],[110.1848,-1.325],[110.1608,-1.3269],[110.1328,-1.3378],[110.1048,-1.3529],[110.0688,-1.3683],[110.0707,-1.3729],[110.074,-1.3873],[110.0745,-1.4047],[110.0706,-1.4217],[110.065,-1.4292],[110.0576,-1.4338],[110.0612,-1.4431],[110.0637,-1.46],[110.0612,-1.4627],[110.0577,-1.4742],[110.0465,-1.4908],[110.0419,-1.5013],[110.0363,-1.5227],[110.0355,-1.533],[110.0391,-1.5487],[110.042,-1.5712],[110.0412,-1.5921],[110.0401,-1.5976],[110.0379,-1.6176],[110.0363,-1.6445],[110.0334,-1.661],[110.0267,-1.6827],[110.0172,-1.6994],[110.0024,-1.7118],[109.996,-1.719],[109.9843,-1.7397],[109.9753,-1.7494],[109.958,-1.7621],[109.9488,-1.7639],[109.9427,-1.7627],[109.9399,-1.7643],[109.9444,-1.7701],[109.946,-1.7749],[109.943,-1.7774],[109.9366,-1.776],[109.9299,-1.7766],[109.9165,-1.7723],[109.912,-1.774],[109.9114,-1.785],[109.9084,-1.8029],[109.9096,-1.8065],[109.9243,-1.8191],[109.9286,-1.8303],[109.9269,-1.8317],[109.9191,-1.8298],[109.9167,-1.827],[109.9098,-1.8279],[109.907,-1.8252],[109.9009,-1.8282],[109.9167,-1.8511],[109.9261,-1.8582],[109.9445,-1.865],[109.9615,-1.8735],[109.9821,-1.8876],[109.9935,-1.8977],[110.0113,-1.9077],[110.0182,-1.9104],[110.0255,-1.9115],[110.0458,-1.9179],[110.0576,-1.9245],[110.0649,-1.9298],[110.0752,-1.9391],[110.0846,-1.953],[110.0913,-1.9618],[110.0998,-1.978],[110.101,-1.9859],[110.1055,-1.9985],[110.1059,-2.0061],[110.1086,-2.0152],[110.1075,-2.0189],[110.1093,-2.0258],[110.1217,-2.0296],[110.1161,-2.0339],[110.113,-2.0386],[110.1122,-2.0442],[110.1182,-2.059],[110.1197,-2.0805],[110.1197,-2.0911],[110.1174,-2.1041],[110.1153,-2.1102],[110.1162,-2.124],[110.1108,-2.1449],[110.109,-2.1547],[110.101,-2.1685],[110.0905,-2.1786],[110.0861,-2.1782],[110.084,-2.1896],[110.0875,-2.1933],[110.0921,-2.1939],[110.0948,-2.2045],[110.0927,-2.2206],[110.0888,-2.231],[110.0827,-2.2389],[110.0774,-2.2418],[110.0682,-2.2378],[110.062,-2.2441],[110.0634,-2.2474],[110.0683,-2.246],[110.0772,-2.2468],[110.0783,-2.2432],[110.0918,-2.2419],[110.1018,-2.2491],[110.1104,-2.2575],[110.1225,-2.2748],[110.126,-2.2834],[110.1296,-2.2877],[110.1405,-2.3084],[110.145,-2.3253],[110.146,-2.3357],[110.1447,-2.3502],[110.1435,-2.3536],[110.1474,-2.3637],[110.1488,-2.371],[110.1517,-2.4028],[110.1533,-2.4144],[110.1523,-2.421],[110.1492,-2.4279],[110.1546,-2.4333],[110.161,-2.4345],[110.1779,-2.4532],[110.182,-2.4568],[110.1844,-2.475],[110.1841,-2.4818],[110.1857,-2.4859],[110.1847,-2.4983],[110.1891,-2.4995],[110.1936,-2.5084],[110.1962,-2.5177],[110.1955,-2.5341],[110.1921,-2.5442],[110.1903,-2.5688],[110.1856,-2.5831],[110.1847,-2.5887],[110.1732,-2.597],[110.174,-2.6021],[110.1665,-2.5997],[110.1625,-2.6026],[110.163,-2.6063],[110.1558,-2.6115],[110.1562,-2.6155],[110.1496,-2.6184],[110.1509,-2.6252],[110.158,-2.6287],[110.1596,-2.6345],[110.1716,-2.6304],[110.182,-2.6333],[110.1901,-2.6339],[110.1992,-2.6375],[110.2036,-2.6411],[110.2121,-2.6455],[110.2161,-2.6512],[110.2187,-2.6598],[110.2189,-2.6668],[110.2172,-2.6704],[110.2209,-2.6771],[110.2223,-2.6828],[110.231,-2.6896],[110.2334,-2.6938],[110.2334,-2.7006],[110.2288,-2.7099],[110.232,-2.7194],[110.2289,-2.7284],[110.2187,-2.7386],[110.2238,-2.7396],[110.2284,-2.7437],[110.2378,-2.7476],[110.2446,-2.7529],[110.2573,-2.7583],[110.2594,-2.7628],[110.2642,-2.7787],[110.2652,-2.7954],[110.2626,-2.8157],[110.2594,-2.828],[110.252,-2.8497],[110.2405,-2.8682],[110.2242,-2.886],[110.2294,-2.8959],[110.2393,-2.9053],[110.2483,-2.9196],[110.2525,-2.9321],[110.2564,-2.9531],[110.26,-2.9612],[110.2652,-2.9647],[110.2835,-2.9714],[110.298,-2.9818],[110.3017,-2.986],[110.3037,-2.9943],[110.3184,-2.9781],[110.3566,-2.9428],[110.3769,-2.9268],[110.3896,-2.9189],[110.3996,-2.9095],[110.415,-2.899],[110.4316,-2.8905],[110.4746,-2.8675],[110.4899,-2.8599],[110.5007,-2.8558],[110.5113,-2.8503],[110.524,-2.8483],[110.5293,-2.8445],[110.5542,-2.838],[110.5647,-2.8376],[110.5785,-2.8421],[110.5894,-2.8501],[110.5969,-2.8539],[110.6053,-2.8616],[110.6149,-2.873],[110.6168,-2.879],[110.6228,-2.8892],[110.6283,-2.9045],[110.6309,-2.9136],[110.6349,-2.9387],[110.6357,-2.9645],[110.6378,-2.9831],[110.6416,-2.9878],[110.6374,-2.9923],[110.6245,-2.9912],[110.6131,-2.9849],[110.6111,-2.9909],[110.6197,-3.0036],[110.6273,-3.0109],[110.6311,-3.0172],[110.6327,-3.0236],[110.6309,-3.0271],[110.6333,-3.0302],[110.6396,-3.0329],[110.6496,-3.0405],[110.653,-3.0419],[110.6602,-3.0408],[110.666,-3.0363],[110.6701,-3.0349],[110.6779,-3.0297],[110.6852,-3.0223],[110.6935,-3.0172],[110.7169,-3.0059],[110.7271,-3.0022],[110.7289,-2.9878],[110.7338,-2.9859],[110.7411,-2.9738],[110.7443,-2.9629],[110.7552,-2.9424],[110.7699,-2.9292],[110.7807,-2.9216],[110.7882,-2.9131],[110.7995,-2.9071],[110.8078,-2.9076],[110.8248,-2.9067],[110.8297,-2.9052],[110.8377,-2.8959],[110.8595,-2.8874],[110.8663,-2.8867],[110.8792,-2.8825],[110.8854,-2.8747],[110.8916,-2.8707],[110.9082,-2.8672],[110.915,-2.8665],[110.9303,-2.868],[110.9402,-2.8654],[110.9466,-2.865],[110.9666,-2.8579],[110.9708,-2.8537],[110.9762,-2.8414],[110.9878,-2.8363],[110.9958,-2.8309],[110.9988,-2.8269],[111.0017,-2.8191],[111.0051,-2.8048],[111.0084,-2.7979],[111.0177,-2.7915],[111.0323,-2.7858],[111.0406,-2.7858],[111.0588,-2.7822],[111.0737,-2.7776],[111.0838,-2.7717],[111.0994,-2.7687],[111.1083,-2.7627],[111.1128,-2.7583],[111.1275,-2.7531],[111.1463,-2.7415],[111.1561,-2.7242],[111.1576,-2.7176],[111.166,-2.7101],[111.1714,-2.6939],[111.1716,-2.6859],[111.169,-2.6782],[111.1648,-2.6722],[111.1593,-2.6708],[111.144,-2.672],[111.1357,-2.6704],[111.1282,-2.6661],[111.1215,-2.6579],[111.1186,-2.6526],[111.12,-2.6427],[111.1294,-2.6329],[111.1337,-2.6244],[111.1363,-2.6113],[111.1344,-2.5955],[111.1287,-2.5773],[111.1161,-2.5417],[111.1153,-2.5237],[111.1143,-2.5152],[111.1055,-2.4842],[111.1053,-2.4696],[111.1061,-2.4529],[111.105,-2.4333],[111.102,-2.4197],[111.0984,-2.4098],[111.095,-2.3947],[111.0944,-2.3859],[111.0895,-2.3629],[111.0798,-2.3389],[111.076,-2.3213],[111.0702,-2.3008],[111.0642,-2.2913],[111.0585,-2.2781],[111.0515,-2.2741],[111.0447,-2.2674],[111.0326,-2.247],[111.0319,-2.2399],[111.0346,-2.2325],[111.0406,-2.2222],[111.0503,-2.2145],[111.063,-2.2029],[111.0658,-2.1972],[111.0635,-2.1862],[111.0653,-2.1823],[111.0715,-2.179],[111.0743,-2.175],[111.0788,-2.1612],[111.0778,-2.1528],[111.0703,-2.1402],[111.0676,-2.1309],[111.0662,-2.118],[111.0594,-2.0885],[111.0573,-2.0718],[111.0601,-2.0582],[111.0667,-2.053],[111.0799,-2.0476],[111.0831,-2.0451],[111.0886,-2.0232],[111.091,-2.0201],[111.0895,-2.0142],[111.0812,-2.0131],[111.0752,-2.0153],[111.0593,-2.0146],[111.0548,-2.0111],[111.0535,-2.0022],[111.056,-2.0001],[111.0554,-1.9932],[111.0478,-1.9839],[111.0388,-1.977],[111.018,-1.9561],[111.0141,-1.9543],[111.0068,-1.9547],[111,-1.9568],[110.9904,-1.9572],[110.9846,-1.9558],[110.9798,-1.9503],[110.9796,-1.9457],[110.9837,-1.9372],[110.9904,-1.9296],[110.9947,-1.92],[110.996,-1.9091],[110.9957,-1.903],[110.9936,-1.8973],[110.9821,-1.8896],[110.9769,-1.8837],[110.9744,-1.8779],[110.9741,-1.8718],[110.9767,-1.8447],[110.9781,-1.8377],[110.983,-1.8236],[110.9865,-1.8174],[110.992,-1.8116],[111.0043,-1.8023],[111.0075,-1.7963],[111.0089,-1.7901],[111.0139,-1.7777],[111.014,-1.7723],[111.0122,-1.7579],[111.0161,-1.7443],[111.0132,-1.7365],[111.0053,-1.7266],[111.0053,-1.7176],[111.0067,-1.7065],[111.0033,-1.6968],[110.9993,-1.6929],[110.986,-1.6764],[110.9745,-1.6691],[110.963,-1.6722],[110.9557,-1.679],[110.9527,-1.6841],[110.9486,-1.7],[110.9429,-1.7104],[110.9288,-1.7181],[110.9166,-1.7203],[110.9106,-1.7155],[110.9043,-1.7124],[110.9006,-1.7131],[110.8936,-1.7016],[110.8927,-1.6892],[110.8865,-1.6815],[110.8825,-1.6794],[110.8638,-1.6826],[110.8551,-1.6738],[110.8566,-1.6449],[110.8538,-1.6364],[110.8589,-1.6305],[110.8816,-1.6189],[110.8897,-1.6125],[110.8939,-1.6011],[110.8997,-1.5917],[110.9133,-1.5846],[110.9452,-1.5822],[110.9522,-1.5791],[110.9557,-1.5748],[110.9564,-1.57],[110.9623,-1.5594],[110.9691,-1.5521],[110.9731,-1.5441],[110.9793,-1.5392],[110.9839,-1.5387],[110.9897,-1.5405],[110.9944,-1.5505],[110.9955,-1.5558],[111.0084,-1.5619],[111.0171,-1.5625],[111.0215,-1.5584],[111.0275,-1.5481],[111.0349,-1.5407],[111.0396,-1.5394],[111.0491,-1.5397],[111.0598,-1.5355],[111.0683,-1.5392],[111.0696,-1.5515],[111.0718,-1.5567],[111.0754,-1.5595],[111.0843,-1.5588],[111.098,-1.5524],[111.1039,-1.5518],[111.1187,-1.5528],[111.1223,-1.5495],[111.1232,-1.5443],[111.1186,-1.5311],[111.1182,-1.5174],[111.1219,-1.5072],[111.1277,-1.4988],[111.129,-1.488],[111.129,-1.4734],[111.1327,-1.4598],[111.1384,-1.451],[111.1479,-1.4415],[111.1573,-1.4343],[111.1634,-1.4333],[111.1735,-1.434],[111.1965,-1.438],[111.2073,-1.4343],[111.2186,-1.4228],[111.2228,-1.4208],[111.2295,-1.4211],[111.2475,-1.4196],[111.2596,-1.4163],[111.2784,-1.4059],[111.3099,-1.3776],[111.3175,-1.37],[111.3246,-1.3652],[111.3271,-1.3579],[111.3317,-1.3498],[111.3311,-1.342],[111.3327,-1.3324],[111.3407,-1.3255],[111.3495,-1.3265],[111.3582,-1.321],[111.3589,-1.3191],[111.3544,-1.3156],[111.3247,-1.3013],[111.3154,-1.2931],[111.3142,-1.2821],[111.3142,-1.2712],[111.3154,-1.2624],[111.3133,-1.2574],[111.302,-1.2555],[111.2805,-1.2585],[111.2714,-1.2585],[111.266,-1.2538],[111.2604,-1.244],[111.2573,-1.2354],[111.2569,-1.2308],[111.2611,-1.2142],[111.2604,-1.2091],[111.2551,-1.2035],[111.2473,-1.1977],[111.2396,-1.1935],[111.2351,-1.183],[111.2371,-1.1751],[111.2516,-1.1524],[111.2567,-1.1429],[111.2618,-1.1356],[111.2647,-1.1254],[111.2641,-1.1136],[111.2661,-1.1057],[111.2654,-1.0979],[111.2553,-1.0839],[111.2369,-1.0567],[111.2249,-1.04],[111.2179,-1.0351],[111.2115,-1.0238],[111.2059,-1.0186],[111.1984,-1.015],[111.1901,-1.0143],[111.1688,-1.0113],[111.1493,-1.009],[111.1439,-1.0072],[111.1461,-0.9774],[111.15,-0.9672],[111.1482,-0.9622],[111.1441,-0.9607],[111.1304,-0.9607],[111.1225,-0.9599],[111.1186,-0.9581],[111.1143,-0.9516],[111.1143,-0.9463],[111.1212,-0.9391],[111.1216,-0.9342],[111.1244,-0.9308],[111.1318,-0.9292],[111.1416,-0.9221],[111.1534,-0.9206],[111.1691,-0.9113],[111.1706,-0.9042],[111.1679,-0.8953],[111.1632,-0.8855],[111.1558,-0.8746],[111.1605,-0.8663],[111.1671,-0.8615],[111.1778,-0.8622],[111.1846,-0.868],[111.1937,-0.88],[111.2018,-0.8797],[111.212,-0.8711],[111.2177,-0.8636],[111.2165,-0.8546],[111.2183,-0.8475],[111.2173,-0.8422],[111.2118,-0.8319],[111.2129,-0.8281],[111.2339,-0.7839],[111.2301,-0.7454],[111.229,-0.741],[111.2365,-0.7344],[111.241,-0.7188],[111.2402,-0.7072],[111.242,-0.7007],[111.2402,-0.6898],[111.2318,-0.6794],[111.2271,-0.6705],[111.2215,-0.6637],[111.2217,-0.6587],[111.2377,-0.638],[111.2461,-0.6283],[111.2477,-0.6205],[111.2608,-0.6135],[111.2667,-0.6076],[111.2681,-0.6013],[111.2655,-0.5878],[111.2461,-0.587],[111.24,-0.5892],[111.2345,-0.5773],[111.2284,-0.5716],[111.2263,-0.5649],[111.2216,-0.562],[111.2181,-0.5467],[111.2128,-0.5367],[111.2021,-0.5252],[111.1964,-0.5195],[111.1805,-0.5138],[111.1735,-0.5136],[111.1585,-0.5158],[111.1506,-0.5159],[111.1354,-0.514],[111.13,-0.5116],[111.1192,-0.5042],[111.1158,-0.5035],[111.0958,-0.5036],[111.0916,-0.502],[111.0889,-0.4955]]}},{"type":"Feature","properties":{"mhid":"1332:330","alt_name":"KABUPATEN SINTANG","latitude":-0.08333,"longitude":112.08333,"sample_value":790},"geometry":{"type":"LineString","coordinates":[[111.5276,0.9649],[111.5248,0.9703],[111.5233,0.9825],[111.521,0.9907],[111.5161,1.0032],[111.5066,1.0207],[111.4953,1.0297],[111.4793,1.0365],[111.4721,1.0377],[111.462,1.033],[111.453,1.0217],[111.4426,1.0135],[111.4261,1.0099],[111.4112,1.0091],[111.405,1.0116],[111.3872,1.0162],[111.378,1.0203],[111.3661,1.0298],[111.353,1.0368],[111.3328,1.0432],[111.3182,1.0453],[111.3064,1.0488],[111.2965,1.0544],[111.2857,1.0563],[111.2759,1.0649],[111.2681,1.0683],[111.2582,1.0683],[111.2514,1.0706],[111.2474,1.0748],[111.2342,1.0837],[111.2258,1.0839],[111.2105,1.0719],[111.1854,1.0599],[111.1653,1.0611],[111.1589,1.0558],[111.1459,1.0508],[111.13,1.0502],[111.113,1.0516],[111.1088,1.0494],[111.1033,1.0506],[111.0928,1.0483],[111.0814,1.0506],[111.0624,1.0491],[111.0418,1.0388],[111.0215,1.0339],[111.0009,1.0325],[110.9963,1.0292],[110.9802,1.0278],[110.9676,1.0289],[110.9449,1.0258],[110.9313,1.0253],[110.9239,1.0288],[110.9143,1.03],[110.906,1.0274],[110.8965,1.0178],[110.8895,1.0026],[110.89,0.9929],[110.8876,0.9883],[110.8785,0.9769],[110.8737,0.9742],[110.8577,0.9593],[110.8535,0.9513],[110.8508,0.95],[110.8451,0.9525],[110.8292,0.9515],[110.8157,0.95],[110.8051,0.9463],[110.7996,0.9404],[110.8028,0.9282],[110.8076,0.9225],[110.809,0.9159],[110.8078,0.91],[110.8112,0.9052],[110.8104,0.9007],[110.801,0.8952],[110.7987,0.8896],[110.8002,0.8831],[110.8113,0.8686],[110.8115,0.8627],[110.8083,0.8595],[110.8051,0.856],[110.8047,0.8512],[110.7998,0.8479],[110.7921,0.8469],[110.7898,0.8424],[110.7873,0.8292],[110.7876,0.8242],[110.7844,0.8207],[110.788,0.8144],[110.7873,0.8113],[110.7816,0.8099],[110.7892,0.7977],[110.7905,0.7881],[110.7933,0.7807],[110.8058,0.7606],[110.816,0.7508],[110.8242,0.7497],[110.8318,0.7465],[110.8571,0.7559],[110.8675,0.7587],[110.8765,0.7519],[110.8939,0.7352],[110.8992,0.7321],[110.9048,0.7309],[110.9179,0.7331],[110.9364,0.7403],[110.9427,0.7414],[110.9606,0.7421],[110.9699,0.7442],[110.9892,0.7536],[110.9994,0.7539],[111.018,0.7462],[111.0324,0.7432],[111.0535,0.74],[111.0601,0.7403],[111.0788,0.7341],[111.086,0.7329],[111.1003,0.7279],[111.1054,0.7168],[111.1155,0.7102],[111.1199,0.7059],[111.1216,0.6911],[111.1248,0.6867],[111.1342,0.6807],[111.1559,0.6615],[111.1665,0.6494],[111.1861,0.6221],[111.1933,0.6128],[111.1995,0.6064],[111.2077,0.6001],[111.2202,0.5927],[111.2301,0.5891],[111.2425,0.591],[111.2578,0.5955],[111.2624,0.5942],[111.2696,0.5891],[111.2735,0.5827],[111.2787,0.5683],[111.2913,0.5462],[111.294,0.5368],[111.2956,0.5246],[111.2927,0.509],[111.2854,0.4908],[111.275,0.4734],[111.2689,0.4606],[111.2662,0.4408],[111.26,0.4332],[111.258,0.4222],[111.2647,0.4048],[111.2679,0.3919],[111.2686,0.3833],[111.2674,0.3752],[111.2642,0.3695],[111.2592,0.3652],[111.253,0.3638],[111.2385,0.3652],[111.2322,0.3666],[111.2203,0.3629],[111.2176,0.3564],[111.2214,0.3484],[111.2227,0.3422],[111.2304,0.3281],[111.2349,0.3257],[111.2336,0.317],[111.2311,0.3097],[111.2317,0.3063],[111.2373,0.3052],[111.2372,0.3016],[111.249,0.2939],[111.2567,0.2965],[111.2582,0.2777],[111.2549,0.2712],[111.2632,0.2615],[111.2596,0.2597],[111.2625,0.2527],[111.2658,0.2508],[111.2685,0.2415],[111.2734,0.2411],[111.2703,0.2356],[111.266,0.2327],[111.2634,0.2218],[111.2669,0.2192],[111.267,0.2149],[111.2621,0.2125],[111.2603,0.2081],[111.261,0.1945],[111.2642,0.1801],[111.2643,0.1718],[111.2688,0.157],[111.273,0.1492],[111.2749,0.1416],[111.2749,0.1324],[111.2586,0.1295],[111.2489,0.1269],[111.2408,0.1232],[111.2348,0.1156],[111.2322,0.1091],[111.228,0.0882],[111.2242,0.0733],[111.2179,0.063],[111.2105,0.062],[111.2065,0.0679],[111.2016,0.072],[111.1951,0.0744],[111.1827,0.0766],[111.1784,0.0791],[111.1672,0.0961],[111.1623,0.1012],[111.1529,0.104],[111.1476,0.1024],[111.1388,0.0959],[111.1299,0.0909],[111.1237,0.0856],[111.1296,0.0768],[111.1317,0.0681],[111.1344,0.0456],[111.1419,0.0244],[111.1488,0.0015],[111.1488,-0.0133],[111.1459,-0.0701],[111.1421,-0.0836],[111.1353,-0.0996],[111.1359,-0.1129],[111.1286,-0.121],[111.1117,-0.1244],[111.0987,-0.1336],[111.0963,-0.1389],[111.0958,-0.152],[111.0978,-0.1661],[111.0949,-0.1816],[111.0874,-0.183],[111.0855,-0.1932],[111.0861,-0.2051],[111.0914,-0.2243],[111.0923,-0.2361],[111.0899,-0.2481],[111.0864,-0.2562],[111.0794,-0.2663],[111.0765,-0.2685],[111.0754,-0.2742],[111.0702,-0.2807],[111.0555,-0.2933],[111.0494,-0.2955],[111.0428,-0.2999],[111.034,-0.3102],[111.0289,-0.3276],[111.0272,-0.3473],[111.0278,-0.3538],[111.028,-0.3823],[111.0348,-0.4164],[111.0468,-0.438],[111.0574,-0.4482],[111.0671,-0.4652],[111.0777,-0.4747],[111.0863,-0.4857],[111.0889,-0.4955],[111.0916,-0.502],[111.0958,-0.5036],[111.1158,-0.5035],[111.1192,-0.5042],[111.13,-0.5116],[111.1354,-0.514],[111.1506,-0.5159],[111.1585,-0.5158],[111.1735,-0.5136],[111.1805,-0.5138],[111.1964,-0.5195],[111.2021,-0.5252],[111.2101,-0.5208],[111.2217,-0.5197],[111.2293,-0.5158],[111.2357,-0.5106],[111.2406,-0.5048],[111.2445,-0.4963],[111.2463,-0.4865],[111.2503,-0.4803],[111.2584,-0.4731],[111.2611,-0.4681],[111.2665,-0.4627],[111.2745,-0.4594],[111.2777,-0.4493],[111.2816,-0.4478],[111.2934,-0.4467],[111.3041,-0.4401],[111.308,-0.4332],[111.3004,-0.4245],[111.3144,-0.4146],[111.318,-0.4113],[111.3245,-0.3974],[111.3301,-0.3911],[111.3355,-0.3889],[111.3411,-0.3899],[111.3493,-0.388],[111.354,-0.3847],[111.357,-0.3741],[111.3601,-0.3692],[111.368,-0.3616],[111.3764,-0.3557],[111.3898,-0.355],[111.3991,-0.3576],[111.4076,-0.3584],[111.422,-0.3571],[111.4359,-0.3544],[111.4468,-0.3505],[111.4523,-0.3435],[111.4561,-0.3137],[111.4573,-0.302],[111.4635,-0.2864],[111.4651,-0.272],[111.4635,-0.2562],[111.4668,-0.2462],[111.4751,-0.2375],[111.4808,-0.2296],[111.4924,-0.2237],[111.5036,-0.2208],[111.5371,-0.2204],[111.5541,-0.2246],[111.57,-0.2227],[111.5788,-0.2119],[111.5983,-0.1963],[111.6078,-0.1863],[111.6135,-0.1896],[111.6219,-0.2047],[111.6368,-0.2011],[111.6468,-0.1973],[111.653,-0.1916],[111.6599,-0.1813],[111.6627,-0.175],[111.6835,-0.1439],[111.6892,-0.1403],[111.6899,-0.1444],[111.7006,-0.1558],[111.7067,-0.1558],[111.7151,-0.1477],[111.7227,-0.1446],[111.7299,-0.1464],[111.7414,-0.1527],[111.7521,-0.162],[111.7617,-0.1713],[111.7743,-0.1791],[111.7781,-0.1807],[111.7957,-0.1773],[111.8074,-0.1803],[111.8206,-0.1901],[111.8258,-0.1924],[111.8333,-0.1935],[111.8412,-0.1975],[111.8519,-0.2059],[111.8562,-0.2132],[111.8587,-0.2249],[111.8644,-0.2355],[111.868,-0.2385],[111.8887,-0.2362],[111.8969,-0.2344],[111.9058,-0.2256],[111.9122,-0.2139],[111.9175,-0.2069],[111.9239,-0.2022],[111.9434,-0.1958],[111.9542,-0.1955],[111.9624,-0.1981],[111.971,-0.2069],[111.9781,-0.2182],[111.9838,-0.2248],[111.9881,-0.2273],[111.9974,-0.2277],[112.018,-0.2159],[112.0232,-0.2145],[112.0307,-0.216],[112.0381,-0.2219],[112.0495,-0.2371],[112.0578,-0.2449],[112.0687,-0.2506],[112.0785,-0.2548],[112.0868,-0.2595],[112.1174,-0.2705],[112.1257,-0.2778],[112.1288,-0.2819],[112.1309,-0.2903],[112.1288,-0.3059],[112.144,-0.3033],[112.1686,-0.2941],[112.1807,-0.2904],[112.1907,-0.286],[112.201,-0.2791],[112.216,-0.2633],[112.2242,-0.2538],[112.2434,-0.2417],[112.2559,-0.2358],[112.2683,-0.2317],[112.2904,-0.2306],[112.3075,-0.2266],[112.3193,-0.22],[112.3449,-0.1994],[112.3614,-0.1885],[112.3691,-0.1849],[112.3809,-0.1818],[112.378,-0.1891],[112.3731,-0.2078],[112.3703,-0.2313],[112.3707,-0.2865],[112.3699,-0.2954],[112.3736,-0.3059],[112.3704,-0.3366],[112.3679,-0.338],[112.3666,-0.3443],[112.3732,-0.3508],[112.3707,-0.3578],[112.3755,-0.3716],[112.3873,-0.378],[112.4059,-0.389],[112.416,-0.4012],[112.4196,-0.42],[112.4173,-0.4296],[112.4115,-0.4419],[112.4116,-0.4546],[112.4181,-0.466],[112.4245,-0.4725],[112.429,-0.4794],[112.4315,-0.4879],[112.4302,-0.5113],[112.4271,-0.5295],[112.4289,-0.5373],[112.4358,-0.5445],[112.4482,-0.5537],[112.4547,-0.5595],[112.4554,-0.5676],[112.4515,-0.5804],[112.4512,-0.5888],[112.4583,-0.6056],[112.4591,-0.6141],[112.4516,-0.6338],[112.4506,-0.6467],[112.4577,-0.6562],[112.4599,-0.6642],[112.4599,-0.6724],[112.4559,-0.6824],[112.4511,-0.6858],[112.4521,-0.6894],[112.4519,-0.7111],[112.4552,-0.7204],[112.4614,-0.7265],[112.4692,-0.7301],[112.4758,-0.7307],[112.4815,-0.7271],[112.4846,-0.7153],[112.4846,-0.6989],[112.4854,-0.6938],[112.4883,-0.692],[112.5064,-0.692],[112.5263,-0.6956],[112.5348,-0.6988],[112.5415,-0.6972],[112.5447,-0.6911],[112.5503,-0.6864],[112.557,-0.6862],[112.5688,-0.6889],[112.5827,-0.6892],[112.5909,-0.688],[112.5978,-0.6846],[112.5995,-0.6813],[112.6035,-0.6681],[112.6063,-0.665],[112.6184,-0.6616],[112.6288,-0.6537],[112.6376,-0.653],[112.6431,-0.6575],[112.6508,-0.6527],[112.6561,-0.6557],[112.6663,-0.6546],[112.6776,-0.6504],[112.6865,-0.651],[112.6903,-0.6497],[112.694,-0.6414],[112.7016,-0.6355],[112.7004,-0.627],[112.7044,-0.6212],[112.7122,-0.626],[112.723,-0.6222],[112.7395,-0.6233],[112.7435,-0.6205],[112.7451,-0.6151],[112.7421,-0.6051],[112.7413,-0.5839],[112.7419,-0.5799],[112.751,-0.5681],[112.7565,-0.5661],[112.7711,-0.5658],[112.7857,-0.5645],[112.7977,-0.5649],[112.809,-0.5714],[112.8135,-0.5751],[112.8205,-0.5759],[112.8255,-0.5737],[112.8443,-0.5712],[112.8556,-0.5657],[112.8592,-0.5594],[112.8721,-0.5447],[112.8823,-0.5373],[112.8937,-0.5309],[112.9044,-0.528],[112.9166,-0.5276],[112.9263,-0.5207],[112.9351,-0.5179],[112.9464,-0.516],[112.9607,-0.5111],[112.9708,-0.5113],[112.9766,-0.5099],[112.981,-0.5054],[112.9868,-0.4902],[112.9899,-0.4857],[112.9945,-0.4865],[112.9981,-0.4928],[113.0034,-0.4938],[113.0228,-0.4861],[113.0297,-0.4849],[113.0398,-0.4869],[113.0532,-0.4976],[113.0616,-0.4989],[113.0666,-0.4977],[113.091,-0.4859],[113.0979,-0.4838],[113.107,-0.4871],[113.1114,-0.484],[113.1126,-0.4743],[113.1214,-0.4656],[113.1249,-0.4571],[113.1304,-0.4498],[113.1421,-0.4431],[113.1505,-0.4474],[113.1539,-0.4531],[113.1545,-0.4654],[113.1579,-0.4699],[113.165,-0.4696],[113.1821,-0.4646],[113.1878,-0.4676],[113.1914,-0.4783],[113.1986,-0.4776],[113.1996,-0.4797],[113.1981,-0.4889],[113.1986,-0.4955],[113.2015,-0.4994],[113.2098,-0.5046],[113.2152,-0.5054],[113.2199,-0.5026],[113.2228,-0.4996],[113.2262,-0.4916],[113.2266,-0.4801],[113.2289,-0.4743],[113.2404,-0.4636],[113.2458,-0.453],[113.2518,-0.4466],[113.2635,-0.4377],[113.2663,-0.431],[113.2669,-0.418],[113.2569,-0.408],[113.2589,-0.4],[113.2624,-0.3955],[113.2631,-0.3902],[113.2594,-0.3856],[113.2462,-0.3789],[113.2383,-0.3701],[113.2297,-0.3643],[113.2272,-0.36],[113.2245,-0.3508],[113.2217,-0.347],[113.2073,-0.3446],[113.207,-0.338],[113.2108,-0.3348],[113.2179,-0.334],[113.2257,-0.3289],[113.2294,-0.3133],[113.2348,-0.2976],[113.2391,-0.2916],[113.2444,-0.2876],[113.2552,-0.2744],[113.2604,-0.2715],[113.271,-0.2704],[113.2756,-0.2653],[113.2782,-0.2517],[113.2877,-0.2404],[113.292,-0.2376],[113.3021,-0.2366],[113.3154,-0.2365],[113.3287,-0.2324],[113.3323,-0.2284],[113.3377,-0.2255],[113.3523,-0.2213],[113.3641,-0.2051],[113.3681,-0.2018],[113.373,-0.1936],[113.3854,-0.1861],[113.3872,-0.1796],[113.3857,-0.1699],[113.3866,-0.1656],[113.3931,-0.161],[113.3982,-0.1603],[113.406,-0.1625],[113.4101,-0.1608],[113.4133,-0.1562],[113.4211,-0.139],[113.4147,-0.1346],[113.4041,-0.1332],[113.3969,-0.1297],[113.3973,-0.1226],[113.4011,-0.119],[113.4164,-0.1185],[113.422,-0.1116],[113.4212,-0.0981],[113.4235,-0.0919],[113.4286,-0.0852],[113.4363,-0.0775],[113.4399,-0.0709],[113.4399,-0.0645],[113.438,-0.0577],[113.4346,-0.0529],[113.4192,-0.0504],[113.4165,-0.0473],[113.4165,-0.0411],[113.4201,-0.0351],[113.4288,-0.0294],[113.4274,-0.0166],[113.4287,-0.0083],[113.4334,-0.0001],[113.4365,0.0015],[113.4421,0.0116],[113.4402,0.0154],[113.4291,0.0268],[113.4171,0.0382],[113.4129,0.0436],[113.4105,0.0525],[113.4117,0.0597],[113.4164,0.0765],[113.4159,0.0856],[113.4125,0.1032],[113.4143,0.108],[113.4226,0.1158],[113.4198,0.123],[113.4137,0.1305],[113.3806,0.1539],[113.3592,0.1585],[113.3493,0.1623],[113.3408,0.1674],[113.3254,0.1802],[113.3133,0.1936],[113.3032,0.2062],[113.2823,0.2284],[113.2762,0.2301],[113.2729,0.2339],[113.273,0.2404],[113.2568,0.245],[113.2218,0.252],[113.2048,0.2542],[113.1907,0.2584],[113.1776,0.2611],[113.1679,0.262],[113.1552,0.2587],[113.1469,0.2529],[113.1402,0.2451],[113.1331,0.242],[113.1268,0.2423],[113.111,0.249],[113.1059,0.2535],[113.1011,0.2599],[113.1039,0.2786],[113.1025,0.2832],[113.0982,0.2873],[113.0874,0.2894],[113.0821,0.2918],[113.075,0.2997],[113.0688,0.3115],[113.0649,0.316],[113.0574,0.3174],[113.05,0.3137],[113.036,0.3088],[113.017,0.3091],[113.0098,0.3073],[113.0017,0.2989],[112.9912,0.2969],[112.986,0.2926],[112.9787,0.2809],[112.9712,0.2728],[112.9667,0.2665],[112.9619,0.2567],[112.9618,0.2473],[112.9679,0.2331],[112.9701,0.2248],[112.9697,0.22],[112.9659,0.2059],[112.9604,0.2004],[112.9486,0.1999],[112.9228,0.2059],[112.9027,0.2075],[112.892,0.2092],[112.8713,0.2091],[112.8582,0.21],[112.8447,0.2158],[112.8281,0.2279],[112.8188,0.2333],[112.8086,0.2374],[112.7971,0.2404],[112.7908,0.2411],[112.7792,0.2372],[112.7709,0.2318],[112.7638,0.2253],[112.7546,0.2187],[112.7422,0.2164],[112.7332,0.2179],[112.7175,0.2265],[112.7018,0.2379],[112.6941,0.2404],[112.6832,0.241],[112.677,0.2389],[112.6609,0.2277],[112.6387,0.2164],[112.6322,0.2114],[112.6276,0.2026],[112.6281,0.199],[112.6364,0.1893],[112.6448,0.1807],[112.6486,0.1717],[112.6463,0.1668],[112.6405,0.1613],[112.6316,0.155],[112.622,0.1495],[112.6143,0.1476],[112.6086,0.1504],[112.6032,0.1564],[112.5889,0.1814],[112.5822,0.188],[112.575,0.2012],[112.568,0.2029],[112.5615,0.2001],[112.5573,0.1967],[112.5469,0.1914],[112.5429,0.1812],[112.5354,0.1795],[112.5275,0.1827],[112.5217,0.1837],[112.5131,0.1721],[112.5069,0.1592],[112.505,0.1527],[112.5065,0.1431],[112.5131,0.1337],[112.5154,0.1265],[112.5151,0.1212],[112.51,0.1188],[112.4997,0.1211],[112.4829,0.1282],[112.4737,0.1311],[112.4655,0.1323],[112.434,0.1418],[112.4228,0.1444],[112.4176,0.1429],[112.404,0.1319],[112.3977,0.1286],[112.3723,0.121],[112.3591,0.1185],[112.337,0.1163],[112.3221,0.1165],[112.3087,0.1184],[112.2977,0.1212],[112.28,0.1277],[112.2728,0.1282],[112.2618,0.1244],[112.2571,0.121],[112.2497,0.1126],[112.2435,0.1092],[112.2362,0.1075],[112.2292,0.1078],[112.2186,0.1102],[112.2132,0.1089],[112.2018,0.103],[112.1917,0.0945],[112.1796,0.091],[112.1709,0.0898],[112.1577,0.0821],[112.1498,0.0797],[112.1355,0.0836],[112.1234,0.0809],[112.1173,0.0854],[112.1132,0.094],[112.1093,0.1106],[112.1047,0.1177],[112.0925,0.127],[112.0915,0.1331],[112.0958,0.1518],[112.0956,0.1549],[112.091,0.1679],[112.0849,0.1731],[112.0763,0.1767],[112.0606,0.182],[112.0495,0.1875],[112.04,0.1945],[112.0274,0.2026],[112.0151,0.2095],[112.0069,0.2127],[111.9986,0.2142],[111.9866,0.2076],[111.9765,0.1957],[111.9694,0.1896],[111.9574,0.1854],[111.9189,0.1826],[111.9107,0.1797],[111.8858,0.1785],[111.8717,0.1804],[111.8615,0.1859],[111.8576,0.192],[111.8509,0.2135],[111.8457,0.2213],[111.8406,0.2262],[111.8305,0.2304],[111.8174,0.2299],[111.8078,0.2308],[111.7842,0.2372],[111.7733,0.2372],[111.7507,0.2411],[111.731,0.2465],[111.6892,0.2631],[111.6818,0.2677],[111.6739,0.2772],[111.6644,0.2975],[111.6541,0.3269],[111.6517,0.3366],[111.6528,0.3451],[111.6575,0.3563],[111.6617,0.3616],[111.6706,0.3683],[111.6796,0.372],[111.6848,0.3758],[111.6889,0.3811],[111.691,0.3902],[111.6986,0.4099],[111.7104,0.4287],[111.7126,0.4419],[111.7189,0.4547],[111.7265,0.4652],[111.7295,0.4717],[111.7314,0.4798],[111.7304,0.4942],[111.7252,0.5117],[111.719,0.5265],[111.712,0.541],[111.7102,0.5475],[111.7101,0.5544],[111.7125,0.5602],[111.7184,0.5658],[111.7298,0.5683],[111.7377,0.5729],[111.7409,0.5783],[111.7394,0.5913],[111.7302,0.6006],[111.7219,0.6042],[111.7093,0.6064],[111.7019,0.6092],[111.6942,0.6139],[111.689,0.6213],[111.6878,0.626],[111.6919,0.6352],[111.6988,0.6448],[111.7162,0.6646],[111.7182,0.6755],[111.7156,0.688],[111.7167,0.6984],[111.7257,0.7161],[111.7265,0.7265],[111.7293,0.7301],[111.7413,0.7346],[111.7449,0.7372],[111.7489,0.7443],[111.746,0.756],[111.7392,0.7677],[111.731,0.7771],[111.715,0.7904],[111.701,0.7998],[111.688,0.807],[111.682,0.8092],[111.6763,0.8135],[111.6725,0.8315],[111.6682,0.8406],[111.6607,0.849],[111.6512,0.8549],[111.6416,0.8586],[111.6372,0.8639],[111.6378,0.8762],[111.6371,0.8827],[111.6314,0.9],[111.6274,0.91],[111.6292,0.9177],[111.6234,0.9249],[111.6147,0.9296],[111.6057,0.9311],[111.5959,0.927],[111.5902,0.922],[111.5845,0.9189],[111.5668,0.9165],[111.5524,0.922],[111.5436,0.9282],[111.5359,0.9377],[111.5314,0.9493],[111.5276,0.9649]]}},{"type":"Feature","properties":{"mhid":"1332:331","alt_name":"KABUPATEN KAPUAS HULU","latitude":0.81667,"longitude":112.76667,"sample_value":904},"geometry":{"type":"LineString","coordinates":[[114.2011,1.4128],[114.1977,1.4212],[114.1824,1.4284],[114.1652,1.4385],[114.1561,1.4468],[114.1493,1.457],[114.1427,1.4634],[114.1368,1.465],[114.1221,1.4608],[114.1112,1.455],[114.1054,1.4563],[114.098,1.4619],[114.0923,1.4634],[114.083,1.4627],[114.0708,1.464],[114.0657,1.4605],[114.0571,1.4571],[114.0481,1.4552],[114.0365,1.451],[114.0311,1.4481],[114.0158,1.4464],[113.9999,1.4534],[113.9857,1.4538],[113.9788,1.4529],[113.9724,1.4499],[113.9636,1.4442],[113.9533,1.4424],[113.9474,1.4384],[113.9395,1.4298],[113.9363,1.4198],[113.934,1.4173],[113.9272,1.4157],[113.9181,1.4104],[113.9113,1.412],[113.8954,1.405],[113.8861,1.4028],[113.8781,1.3959],[113.8719,1.3873],[113.8686,1.3864],[113.8581,1.3866],[113.8511,1.3852],[113.8418,1.3802],[113.8316,1.3776],[113.8204,1.3701],[113.8166,1.3642],[113.8166,1.3571],[113.8223,1.3534],[113.8267,1.3479],[113.8268,1.3356],[113.8251,1.3298],[113.8172,1.3113],[113.8009,1.2978],[113.7916,1.2928],[113.7784,1.2878],[113.7715,1.286],[113.7558,1.2794],[113.7438,1.2719],[113.7267,1.2676],[113.7202,1.265],[113.7032,1.2609],[113.6917,1.2515],[113.6875,1.2457],[113.6754,1.2329],[113.6695,1.2292],[113.6651,1.2236],[113.6591,1.2202],[113.6368,1.2177],[113.6268,1.2188],[113.6235,1.2204],[113.6207,1.2286],[113.6221,1.2427],[113.6212,1.2478],[113.6031,1.2552],[113.5979,1.2593],[113.5939,1.2691],[113.5917,1.2796],[113.5808,1.3019],[113.5714,1.3065],[113.5622,1.3063],[113.5512,1.3149],[113.5383,1.3205],[113.5277,1.3206],[113.5208,1.319],[113.5145,1.316],[113.5043,1.3134],[113.4957,1.3133],[113.4889,1.3113],[113.4626,1.3016],[113.4566,1.2978],[113.4458,1.2888],[113.4394,1.2857],[113.4339,1.285],[113.418,1.2892],[113.4045,1.3007],[113.3939,1.3149],[113.3854,1.3211],[113.3707,1.3242],[113.3654,1.3285],[113.3609,1.3456],[113.353,1.3575],[113.3441,1.3629],[113.3355,1.3665],[113.3214,1.3771],[113.3109,1.3777],[113.3005,1.3763],[113.2942,1.3794],[113.2809,1.384],[113.2707,1.3902],[113.2639,1.3918],[113.2552,1.386],[113.2488,1.383],[113.2388,1.3856],[113.2304,1.3919],[113.2234,1.3918],[113.2149,1.3857],[113.2,1.3808],[113.193,1.3807],[113.1791,1.3784],[113.1689,1.3807],[113.1603,1.3866],[113.1535,1.3888],[113.1395,1.3898],[113.1351,1.392],[113.1301,1.397],[113.1251,1.4102],[113.1217,1.4164],[113.1091,1.4335],[113.1004,1.4393],[113.0896,1.4384],[113.0832,1.4301],[113.077,1.4269],[113.0701,1.4278],[113.0578,1.4212],[113.0439,1.4189],[113.0346,1.4139],[113.0121,1.4072],[113.0069,1.407],[112.9964,1.4088],[112.9841,1.4099],[112.9757,1.4117],[112.9695,1.4161],[112.967,1.4257],[112.9695,1.436],[112.9763,1.4483],[112.9859,1.4526],[112.996,1.4555],[113.0167,1.4673],[113.0269,1.47],[113.0326,1.4738],[113.0342,1.4769],[113.0335,1.4839],[113.0298,1.4899],[113.0304,1.4931],[113.0366,1.4961],[113.0412,1.5012],[113.0431,1.5117],[113.0482,1.5204],[113.0574,1.5255],[113.0618,1.5308],[113.0626,1.5378],[113.0615,1.5448],[113.0565,1.5542],[113.0538,1.5565],[113.0441,1.5605],[113.0338,1.5618],[113.0107,1.5706],[112.9968,1.5721],[112.9829,1.5694],[112.9696,1.5651],[112.9635,1.5666],[112.9579,1.5706],[112.9478,1.5732],[112.938,1.5693],[112.924,1.5692],[112.9209,1.5708],[112.9077,1.5825],[112.8982,1.587],[112.8911,1.5877],[112.8808,1.5855],[112.8752,1.5812],[112.8708,1.5757],[112.8642,1.5632],[112.8555,1.5572],[112.8507,1.5519],[112.8452,1.5428],[112.8395,1.5389],[112.8256,1.5414],[112.8083,1.5384],[112.7985,1.5417],[112.7917,1.5528],[112.7803,1.561],[112.7734,1.5621],[112.7664,1.5615],[112.7529,1.5577],[112.7459,1.5585],[112.7366,1.5635],[112.7286,1.5656],[112.7216,1.5647],[112.7122,1.56],[112.7024,1.5562],[112.6815,1.5524],[112.6716,1.5557],[112.6597,1.5645],[112.6548,1.5696],[112.6445,1.5697],[112.6315,1.5646],[112.6244,1.565],[112.6073,1.5696],[112.5964,1.5707],[112.5251,1.5757],[112.5109,1.5755],[112.5039,1.5763],[112.4861,1.5761],[112.4723,1.571],[112.4618,1.5612],[112.4512,1.5564],[112.4459,1.5514],[112.4394,1.5364],[112.4314,1.5269],[112.4084,1.5204],[112.3939,1.5196],[112.3832,1.5137],[112.3632,1.5092],[112.355,1.5039],[112.3484,1.5018],[112.3317,1.5041],[112.3228,1.5035],[112.3163,1.5011],[112.2976,1.4868],[112.2856,1.4789],[112.2731,1.4691],[112.2672,1.4662],[112.2549,1.4633],[112.2462,1.4597],[112.2366,1.4579],[112.2276,1.4577],[112.2153,1.4537],[112.2087,1.4493],[112.2046,1.4445],[112.199,1.4314],[112.1985,1.4171],[112.1991,1.4102],[112.2067,1.4011],[112.2186,1.3951],[112.2229,1.389],[112.2229,1.3831],[112.2179,1.3648],[112.2101,1.3446],[112.2036,1.3326],[112.1969,1.3247],[112.1813,1.3133],[112.1745,1.3019],[112.1706,1.2812],[112.1702,1.2623],[112.168,1.2566],[112.1598,1.2459],[112.1593,1.2375],[112.1626,1.2185],[112.1612,1.2111],[112.1581,1.2029],[112.1453,1.1868],[112.1436,1.1809],[112.1461,1.1713],[112.1531,1.156],[112.1492,1.1481],[112.142,1.1449],[112.1284,1.1437],[112.1146,1.1453],[112.0945,1.1439],[112.0447,1.1347],[112.0315,1.1335],[112.0067,1.1332],[111.9795,1.1302],[111.9612,1.1289],[111.9463,1.1227],[111.9418,1.1168],[111.9339,1.0985],[111.9258,1.0897],[111.9146,1.0822],[111.9093,1.0759],[111.8975,1.0703],[111.892,1.0658],[111.8778,1.0464],[111.8766,1.0387],[111.8763,1.028],[111.8746,1.0155],[111.87,1.0072],[111.8617,1.003],[111.855,1.0024],[111.8384,1.0047],[111.8234,1.0096],[111.8075,1.0178],[111.7998,1.0203],[111.7942,1.0154],[111.7934,1.0057],[111.7906,1.0032],[111.7802,1.0049],[111.7763,1.0091],[111.7725,1.0165],[111.7658,1.0222],[111.7596,1.0217],[111.7414,1.0138],[111.7313,1.0107],[111.7245,1.0118],[111.7216,1.0149],[111.7196,1.021],[111.7154,1.0267],[111.7025,1.0294],[111.6957,1.0341],[111.6852,1.0372],[111.677,1.0439],[111.6693,1.0468],[111.6608,1.0454],[111.647,1.0383],[111.6344,1.0299],[111.6183,1.014],[111.6131,1.0105],[111.6007,0.9995],[111.5918,0.9976],[111.5766,0.9979],[111.5678,0.9947],[111.5607,0.9882],[111.5519,0.9872],[111.5485,0.9852],[111.5469,0.9766],[111.5429,0.9635],[111.5348,0.9621],[111.5276,0.9649],[111.5314,0.9493],[111.5359,0.9377],[111.5436,0.9282],[111.5524,0.922],[111.5668,0.9165],[111.5845,0.9189],[111.5902,0.922],[111.5959,0.927],[111.6057,0.9311],[111.6147,0.9296],[111.6234,0.9249],[111.6292,0.9177],[111.6274,0.91],[111.6314,0.9],[111.6371,0.8827],[111.6378,0.8762],[111.6372,0.8639],[111.6416,0.8586],[111.6512,0.8549],[111.6607,0.849],[111.6682,0.8406],[111.6725,0.8315],[111.6763,0.8135],[111.682,0.8092],[111.688,0.807],[111.701,0.7998],[111.715,0.7904],[111.731,0.7771],[111.7392,0.7677],[111.746,0.756],[111.7489,0.7443],[111.7449,0.7372],[111.7413,0.7346],[111.7293,0.7301],[111.7265,0.7265],[111.7257,0.7161],[111.7167,0.6984],[111.7156,0.688],[111.7182,0.6755],[111.7162,0.6646],[111.6988,0.6448],[111.6919,0.6352],[111.6878,0.626],[111.689,0.6213],[111.6942,0.6139],[111.7019,0.6092],[111.7093,0.6064],[111.7219,0.6042],[111.7302,0.6006],[111.7394,0.5913],[111.7409,0.5783],[111.7377,0.5729],[111.7298,0.5683],[111.7184,0.5658],[111.7125,0.5602],[111.7101,0.5544],[111.7102,0.5475],[111.712,0.541],[111.719,0.5265],[111.7252,0.5117],[111.7304,0.4942],[111.7314,0.4798],[111.7295,0.4717],[111.7265,0.4652],[111.7189,0.4547],[111.7126,0.4419],[111.7104,0.4287],[111.6986,0.4099],[111.691,0.3902],[111.6889,0.3811],[111.6848,0.3758],[111.6796,0.372],[111.6706,0.3683],[111.6617,0.3616],[111.6575,0.3563],[111.6528,0.3451],[111.6517,0.3366],[111.6541,0.3269],[111.6644,0.2975],[111.6739,0.2772],[111.6818,0.2677],[111.6892,0.2631],[111.731,0.2465],[111.7507,0.2411],[111.7733,0.2372],[111.7842,0.2372],[111.8078,0.2308],[111.8174,0.2299],[111.8305,0.2304],[111.8406,0.2262],[111.8457,0.2213],[111.8509,0.2135],[111.8576,0.192],[111.8615,0.1859],[111.8717,0.1804],[111.8858,0.1785],[111.9107,0.1797],[111.9189,0.1826],[111.9574,0.1854],[111.9694,0.1896],[111.9765,0.1957],[111.9866,0.2076],[111.9986,0.2142],[112.0069,0.2127],[112.0151,0.2095],[112.0274,0.2026],[112.04,0.1945],[112.0495,0.1875],[112.0606,0.182],[112.0763,0.1767],[112.0849,0.1731],[112.091,0.1679],[112.0956,0.1549],[112.0958,0.1518],[112.0915,0.1331],[112.0925,0.127],[112.1047,0.1177],[112.1093,0.1106],[112.1132,0.094],[112.1173,0.0854],[112.1234,0.0809],[112.1355,0.0836],[112.1498,0.0797],[112.1577,0.0821],[112.1709,0.0898],[112.1796,0.091],[112.1917,0.0945],[112.2018,0.103],[112.2132,0.1089],[112.2186,0.1102],[112.2292,0.1078],[112.2362,0.1075],[112.2435,0.1092],[112.2497,0.1126],[112.2571,0.121],[112.2618,0.1244],[112.2728,0.1282],[112.28,0.1277],[112.2977,0.1212],[112.3087,0.1184],[112.3221,0.1165],[112.337,0.1163],[112.3591,0.1185],[112.3723,0.121],[112.3977,0.1286],[112.404,0.1319],[112.4176,0.1429],[112.4228,0.1444],[112.434,0.1418],[112.4655,0.1323],[112.4737,0.1311],[112.4829,0.1282],[112.4997,0.1211],[112.51,0.1188],[112.5151,0.1212],[112.5154,0.1265],[112.5131,0.1337],[112.5065,0.1431],[112.505,0.1527],[112.5069,0.1592],[112.5131,0.1721],[112.5217,0.1837],[112.5275,0.1827],[112.5354,0.1795],[112.5429,0.1812],[112.5469,0.1914],[112.5573,0.1967],[112.5615,0.2001],[112.568,0.2029],[112.575,0.2012],[112.5822,0.188],[112.5889,0.1814],[112.6032,0.1564],[112.6086,0.1504],[112.6143,0.1476],[112.622,0.1495],[112.6316,0.155],[112.6405,0.1613],[112.6463,0.1668],[112.6486,0.1717],[112.6448,0.1807],[112.6364,0.1893],[112.6281,0.199],[112.6276,0.2026],[112.6322,0.2114],[112.6387,0.2164],[112.6609,0.2277],[112.677,0.2389],[112.6832,0.241],[112.6941,0.2404],[112.7018,0.2379],[112.7175,0.2265],[112.7332,0.2179],[112.7422,0.2164],[112.7546,0.2187],[112.7638,0.2253],[112.7709,0.2318],[112.7792,0.2372],[112.7908,0.2411],[112.7971,0.2404],[112.8086,0.2374],[112.8188,0.2333],[112.8281,0.2279],[112.8447,0.2158],[112.8582,0.21],[112.8713,0.2091],[112.892,0.2092],[112.9027,0.2075],[112.9228,0.2059],[112.9486,0.1999],[112.9604,0.2004],[112.9659,0.2059],[112.9697,0.22],[112.9701,0.2248],[112.9679,0.2331],[112.9618,0.2473],[112.9619,0.2567],[112.9667,0.2665],[112.9712,0.2728],[112.9787,0.2809],[112.986,0.2926],[112.9912,0.2969],[113.0017,0.2989],[113.0098,0.3073],[113.017,0.3091],[113.036,0.3088],[113.05,0.3137],[113.0574,0.3174],[113.0649,0.316],[113.0688,0.3115],[113.075,0.2997],[113.0821,0.2918],[113.0874,0.2894],[113.0982,0.2873],[113.1025,0.2832],[113.1039,0.2786],[113.1011,0.2599],[113.1059,0.2535],[113.111,0.249],[113.1268,0.2423],[113.1331,0.242],[113.1402,0.2451],[113.1469,0.2529],[113.1552,0.2587],[113.1679,0.262],[113.1776,0.2611],[113.1907,0.2584],[113.2048,0.2542],[113.2218,0.252],[113.2568,0.245],[113.273,0.2404],[113.2842,0.2477],[113.2885,0.2529],[113.2943,0.2574],[113.3152,0.2669],[113.324,0.2728],[113.3359,0.2727],[113.352,0.2784],[113.3662,0.2755],[113.3738,0.2717],[113.3817,0.2704],[113.3895,0.272],[113.4042,0.2661],[113.423,0.2636],[113.4328,0.2638],[113.44,0.2653],[113.452,0.2714],[113.4844,0.3008],[113.4971,0.3107],[113.5131,0.3211],[113.5161,0.3248],[113.5141,0.3306],[113.52,0.3368],[113.5361,0.3467],[113.5503,0.3593],[113.5564,0.367],[113.5605,0.3767],[113.5661,0.3794],[113.5715,0.3794],[113.577,0.3835],[113.5824,0.3982],[113.5883,0.4071],[113.6139,0.4171],[113.6299,0.424],[113.6361,0.4253],[113.6473,0.4338],[113.6587,0.4406],[113.6631,0.4454],[113.6639,0.4493],[113.6628,0.457],[113.6685,0.4843],[113.6698,0.4943],[113.6729,0.5023],[113.6788,0.5059],[113.6892,0.5066],[113.6956,0.5126],[113.6988,0.5219],[113.703,0.5258],[113.7102,0.5248],[113.7232,0.5321],[113.7354,0.5301],[113.7392,0.5351],[113.7422,0.5483],[113.7484,0.5559],[113.7575,0.5628],[113.7649,0.5646],[113.771,0.5627],[113.7746,0.5646],[113.7757,0.5688],[113.777,0.5833],[113.7809,0.5913],[113.7919,0.6],[113.8031,0.6061],[113.8073,0.6134],[113.8105,0.6324],[113.8143,0.6419],[113.8202,0.6482],[113.8358,0.6549],[113.843,0.662],[113.8367,0.6826],[113.8371,0.6869],[113.8439,0.7029],[113.8485,0.707],[113.8579,0.7111],[113.8766,0.7137],[113.8949,0.7369],[113.8983,0.7432],[113.8986,0.749],[113.8917,0.7605],[113.8901,0.7779],[113.8914,0.7862],[113.8943,0.7937],[113.8997,0.8012],[113.9155,0.8129],[113.9245,0.8213],[113.9262,0.8337],[113.9283,0.8406],[113.9269,0.8459],[113.9136,0.8577],[113.8908,0.8768],[113.8796,0.8892],[113.878,0.8962],[113.8824,0.9116],[113.8805,0.9197],[113.8805,0.9261],[113.8959,0.9495],[113.9075,0.9538],[113.921,0.9874],[113.9216,0.9919],[113.9199,1.0045],[113.9134,1.0119],[113.9051,1.0159],[113.8976,1.0178],[113.8929,1.0268],[113.8914,1.0353],[113.8915,1.045],[113.896,1.0528],[113.9028,1.0602],[113.9131,1.0635],[113.9258,1.0623],[113.9376,1.0627],[113.9427,1.066],[113.9476,1.0739],[113.9567,1.0963],[113.9573,1.1091],[113.9635,1.1199],[113.9704,1.1254],[113.9776,1.1269],[113.9822,1.1344],[113.9852,1.1443],[114.0005,1.1473],[114.0061,1.1456],[114.0118,1.1396],[114.027,1.1482],[114.0311,1.1489],[114.0344,1.1455],[114.0363,1.1389],[114.0447,1.1324],[114.0513,1.1351],[114.0565,1.1399],[114.0671,1.1464],[114.0714,1.148],[114.0787,1.1591],[114.0852,1.165],[114.088,1.1633],[114.0923,1.153],[114.0953,1.1492],[114.0999,1.1482],[114.1064,1.1492],[114.115,1.1525],[114.1199,1.1587],[114.1226,1.1705],[114.1355,1.1864],[114.1418,1.2005],[114.1411,1.2088],[114.138,1.2149],[114.1296,1.2192],[114.1277,1.225],[114.1347,1.2346],[114.1384,1.2494],[114.145,1.2576],[114.1507,1.2612],[114.1578,1.2607],[114.1616,1.2639],[114.1615,1.2684],[114.1553,1.2771],[114.155,1.2853],[114.1493,1.2904],[114.1432,1.2927],[114.1423,1.2954],[114.1499,1.3017],[114.1541,1.3103],[114.154,1.3238],[114.1515,1.3346],[114.1501,1.3455],[114.1501,1.354],[114.1529,1.3701],[114.1484,1.3802],[114.1495,1.3837],[114.154,1.3879],[114.1709,1.3972],[114.1841,1.3978],[114.1913,1.406],[114.1982,1.4073],[114.2011,1.4128]]}},{"type":"Feature","properties":{"mhid":"1332:332","alt_name":"KABUPATEN SEKADAU","latitude":0.03485,"longitude":110.95066,"sample_value":350},"geometry":{"type":"LineString","coordinates":[[111.0889,-0.4955],[111.0863,-0.4857],[111.0777,-0.4747],[111.0671,-0.4652],[111.0574,-0.4482],[111.0468,-0.438],[111.0348,-0.4164],[111.028,-0.3823],[111.0278,-0.3538],[111.0272,-0.3473],[111.0289,-0.3276],[111.034,-0.3102],[111.0428,-0.2999],[111.0494,-0.2955],[111.0555,-0.2933],[111.0702,-0.2807],[111.0754,-0.2742],[111.0765,-0.2685],[111.0794,-0.2663],[111.0864,-0.2562],[111.0899,-0.2481],[111.0923,-0.2361],[111.0914,-0.2243],[111.0861,-0.2051],[111.0855,-0.1932],[111.0874,-0.183],[111.0949,-0.1816],[111.0978,-0.1661],[111.0958,-0.152],[111.0963,-0.1389],[111.0987,-0.1336],[111.1117,-0.1244],[111.1286,-0.121],[111.1359,-0.1129],[111.1353,-0.0996],[111.1421,-0.0836],[111.1459,-0.0701],[111.1488,-0.0133],[111.1488,0.0015],[111.1419,0.0244],[111.1344,0.0456],[111.1317,0.0681],[111.1296,0.0768],[111.1237,0.0856],[111.1299,0.0909],[111.1388,0.0959],[111.1476,0.1024],[111.1529,0.104],[111.1623,0.1012],[111.1672,0.0961],[111.1784,0.0791],[111.1827,0.0766],[111.1951,0.0744],[111.2016,0.072],[111.2065,0.0679],[111.2105,0.062],[111.2179,0.063],[111.2242,0.0733],[111.228,0.0882],[111.2322,0.1091],[111.2348,0.1156],[111.2408,0.1232],[111.2489,0.1269],[111.2586,0.1295],[111.2749,0.1324],[111.2749,0.1416],[111.273,0.1492],[111.2688,0.157],[111.2643,0.1718],[111.2642,0.1801],[111.261,0.1945],[111.2603,0.2081],[111.2621,0.2125],[111.267,0.2149],[111.2669,0.2192],[111.2634,0.2218],[111.266,0.2327],[111.2703,0.2356],[111.2734,0.2411],[111.2685,0.2415],[111.2658,0.2508],[111.2625,0.2527],[111.2596,0.2597],[111.2632,0.2615],[111.2549,0.2712],[111.2582,0.2777],[111.2567,0.2965],[111.249,0.2939],[111.2372,0.3016],[111.2373,0.3052],[111.2317,0.3063],[111.2311,0.3097],[111.2336,0.317],[111.2349,0.3257],[111.2304,0.3281],[111.2227,0.3422],[111.2214,0.3484],[111.2176,0.3564],[111.2203,0.3629],[111.2322,0.3666],[111.2385,0.3652],[111.253,0.3638],[111.2592,0.3652],[111.2642,0.3695],[111.2674,0.3752],[111.2686,0.3833],[111.2679,0.3919],[111.2647,0.4048],[111.258,0.4222],[111.26,0.4332],[111.2662,0.4408],[111.2689,0.4606],[111.275,0.4734],[111.2854,0.4908],[111.2927,0.509],[111.2956,0.5246],[111.294,0.5368],[111.2913,0.5462],[111.2787,0.5683],[111.2735,0.5827],[111.2696,0.5891],[111.2624,0.5942],[111.2578,0.5955],[111.2425,0.591],[111.2301,0.5891],[111.2202,0.5927],[111.2077,0.6001],[111.1995,0.6064],[111.1933,0.6128],[111.1861,0.6221],[111.1665,0.6494],[111.1559,0.6615],[111.1342,0.6807],[111.1248,0.6867],[111.1216,0.6911],[111.1199,0.7059],[111.1155,0.7102],[111.1054,0.7168],[111.1003,0.7279],[111.086,0.7329],[111.0788,0.7341],[111.0601,0.7403],[111.0535,0.74],[111.0538,0.7377],[111.0501,0.7289],[111.0403,0.7122],[111.0249,0.6969],[111.0182,0.692],[111.0103,0.688],[111.0073,0.6819],[111.0092,0.6742],[111.0125,0.6687],[111.0133,0.6619],[111.0104,0.6503],[111.0095,0.6407],[111.0108,0.6184],[111.0098,0.605],[111.0081,0.598],[111.0056,0.5948],[111.004,0.5871],[111.0009,0.5804],[111.0019,0.5629],[110.9963,0.5518],[110.9807,0.5336],[110.9744,0.5252],[110.9658,0.5094],[110.9625,0.5021],[110.9565,0.4973],[110.9515,0.4815],[110.9444,0.468],[110.9425,0.4618],[110.9421,0.4493],[110.9428,0.4429],[110.9398,0.4318],[110.9427,0.4142],[110.9464,0.4054],[110.9459,0.4007],[110.9524,0.3959],[110.9533,0.3909],[110.9636,0.3851],[110.9666,0.38],[110.9733,0.36],[110.972,0.3475],[110.9681,0.3341],[110.9543,0.3205],[110.9473,0.3114],[110.9457,0.3065],[110.9447,0.2941],[110.9351,0.2575],[110.9218,0.2293],[110.9152,0.2263],[110.903,0.2277],[110.8961,0.2235],[110.8883,0.2148],[110.8861,0.206],[110.8889,0.1955],[110.8889,0.1864],[110.8871,0.1816],[110.885,0.1686],[110.8825,0.1603],[110.8773,0.153],[110.8753,0.1338],[110.8732,0.1239],[110.868,0.1146],[110.8557,0.1006],[110.8484,0.0933],[110.8401,0.0901],[110.8356,0.0935],[110.8296,0.0933],[110.8075,0.0901],[110.7908,0.0848],[110.785,0.0822],[110.7689,0.0771],[110.7579,0.0713],[110.7519,0.0658],[110.749,0.0549],[110.7501,0.0452],[110.7552,0.0341],[110.7563,0.0284],[110.7538,0.0131],[110.7503,0],[110.7391,-0.0151],[110.7288,-0.0246],[110.7258,-0.033],[110.719,-0.0393],[110.7165,-0.0581],[110.7143,-0.0696],[110.7144,-0.0836],[110.7156,-0.0921],[110.7201,-0.1069],[110.7292,-0.1184],[110.7358,-0.1247],[110.7394,-0.1304],[110.7407,-0.1406],[110.7454,-0.148],[110.7465,-0.1583],[110.7488,-0.1638],[110.7163,-0.1695],[110.7085,-0.1697],[110.6988,-0.1681],[110.6892,-0.1631],[110.6758,-0.1593],[110.6654,-0.1546],[110.6575,-0.1492],[110.6459,-0.1441],[110.642,-0.1463],[110.6403,-0.1503],[110.6353,-0.1782],[110.6307,-0.1989],[110.6301,-0.2041],[110.6221,-0.2132],[110.6099,-0.2244],[110.6069,-0.2306],[110.6053,-0.2377],[110.6002,-0.2408],[110.584,-0.2485],[110.5707,-0.2505],[110.5651,-0.2531],[110.5601,-0.2587],[110.5611,-0.2731],[110.5667,-0.2777],[110.5697,-0.2859],[110.5616,-0.3038],[110.5606,-0.3115],[110.556,-0.3206],[110.5548,-0.3322],[110.5562,-0.3427],[110.5608,-0.3507],[110.5618,-0.3657],[110.5663,-0.3793],[110.5714,-0.3853],[110.5932,-0.4048],[110.6042,-0.4229],[110.6122,-0.4445],[110.6168,-0.4594],[110.6132,-0.4679],[110.6134,-0.4745],[110.6157,-0.4875],[110.6137,-0.5072],[110.618,-0.5217],[110.6218,-0.5302],[110.6301,-0.5423],[110.6317,-0.5468],[110.6299,-0.5672],[110.6315,-0.5815],[110.6369,-0.6191],[110.6491,-0.6164],[110.6701,-0.6196],[110.6782,-0.6216],[110.6983,-0.6328],[110.7032,-0.632],[110.7154,-0.6231],[110.7281,-0.6226],[110.7319,-0.6294],[110.7362,-0.6255],[110.7489,-0.6221],[110.7633,-0.6102],[110.7744,-0.6089],[110.7755,-0.6068],[110.7827,-0.6068],[110.8039,-0.6011],[110.8091,-0.5959],[110.8127,-0.5896],[110.8184,-0.585],[110.8437,-0.5678],[110.8468,-0.5553],[110.8463,-0.5413],[110.8504,-0.5272],[110.8599,-0.516],[110.8659,-0.5122],[110.8721,-0.5059],[110.8669,-0.4904],[110.8814,-0.478],[110.8887,-0.4708],[110.8912,-0.4668],[110.8996,-0.4592],[110.9072,-0.458],[110.9214,-0.4622],[110.9258,-0.4678],[110.9357,-0.4701],[110.947,-0.4815],[110.9718,-0.485],[110.9802,-0.488],[111.0047,-0.4986],[111.0178,-0.5036],[111.0296,-0.5012],[111.0452,-0.5018],[111.0509,-0.5029],[111.0654,-0.5007],[111.0689,-0.5019],[111.0842,-0.4991],[111.0889,-0.4955]]}},{"type":"Feature","properties":{"mhid":"1332:333","alt_name":"KABUPATEN MELAWI","latitude":-0.33617,"longitude":111.698,"sample_value":143},"geometry":{"type":"LineString","coordinates":[[112.4511,-0.6858],[112.4559,-0.6824],[112.4599,-0.6724],[112.4599,-0.6642],[112.4577,-0.6562],[112.4506,-0.6467],[112.4516,-0.6338],[112.4591,-0.6141],[112.4583,-0.6056],[112.4512,-0.5888],[112.4515,-0.5804],[112.4554,-0.5676],[112.4547,-0.5595],[112.4482,-0.5537],[112.4358,-0.5445],[112.4289,-0.5373],[112.4271,-0.5295],[112.4302,-0.5113],[112.4315,-0.4879],[112.429,-0.4794],[112.4245,-0.4725],[112.4181,-0.466],[112.4116,-0.4546],[112.4115,-0.4419],[112.4173,-0.4296],[112.4196,-0.42],[112.416,-0.4012],[112.4059,-0.389],[112.3873,-0.378],[112.3755,-0.3716],[112.3707,-0.3578],[112.3732,-0.3508],[112.3666,-0.3443],[112.3679,-0.338],[112.3704,-0.3366],[112.3736,-0.3059],[112.3699,-0.2954],[112.3707,-0.2865],[112.3703,-0.2313],[112.3731,-0.2078],[112.378,-0.1891],[112.3809,-0.1818],[112.3691,-0.1849],[112.3614,-0.1885],[112.3449,-0.1994],[112.3193,-0.22],[112.3075,-0.2266],[112.2904,-0.2306],[112.2683,-0.2317],[112.2559,-0.2358],[112.2434,-0.2417],[112.2242,-0.2538],[112.216,-0.2633],[112.201,-0.2791],[112.1907,-0.286],[112.1807,-0.2904],[112.1686,-0.2941],[112.144,-0.3033],[112.1288,-0.3059],[112.1309,-0.2903],[112.1288,-0.2819],[112.1257,-0.2778],[112.1174,-0.2705],[112.0868,-0.2595],[112.0785,-0.2548],[112.0687,-0.2506],[112.0578,-0.2449],[112.0495,-0.2371],[112.0381,-0.2219],[112.0307,-0.216],[112.0232,-0.2145],[112.018,-0.2159],[111.9974,-0.2277],[111.9881,-0.2273],[111.9838,-0.2248],[111.9781,-0.2182],[111.971,-0.2069],[111.9624,-0.1981],[111.9542,-0.1955],[111.9434,-0.1958],[111.9239,-0.2022],[111.9175,-0.2069],[111.9122,-0.2139],[111.9058,-0.2256],[111.8969,-0.2344],[111.8887,-0.2362],[111.868,-0.2385],[111.8644,-0.2355],[111.8587,-0.2249],[111.8562,-0.2132],[111.8519,-0.2059],[111.8412,-0.1975],[111.8333,-0.1935],[111.8258,-0.1924],[111.8206,-0.1901],[111.8074,-0.1803],[111.7957,-0.1773],[111.7781,-0.1807],[111.7743,-0.1791],[111.7617,-0.1713],[111.7521,-0.162],[111.7414,-0.1527],[111.7299,-0.1464],[111.7227,-0.1446],[111.7151,-0.1477],[111.7067,-0.1558],[111.7006,-0.1558],[111.6899,-0.1444],[111.6892,-0.1403],[111.6835,-0.1439],[111.6627,-0.175],[111.6599,-0.1813],[111.653,-0.1916],[111.6468,-0.1973],[111.6368,-0.2011],[111.6219,-0.2047],[111.6135,-0.1896],[111.6078,-0.1863],[111.5983,-0.1963],[111.5788,-0.2119],[111.57,-0.2227],[111.5541,-0.2246],[111.5371,-0.2204],[111.5036,-0.2208],[111.4924,-0.2237],[111.4808,-0.2296],[111.4751,-0.2375],[111.4668,-0.2462],[111.4635,-0.2562],[111.4651,-0.272],[111.4635,-0.2864],[111.4573,-0.302],[111.4561,-0.3137],[111.4523,-0.3435],[111.4468,-0.3505],[111.4359,-0.3544],[111.422,-0.3571],[111.4076,-0.3584],[111.3991,-0.3576],[111.3898,-0.355],[111.3764,-0.3557],[111.368,-0.3616],[111.3601,-0.3692],[111.357,-0.3741],[111.354,-0.3847],[111.3493,-0.388],[111.3411,-0.3899],[111.3355,-0.3889],[111.3301,-0.3911],[111.3245,-0.3974],[111.318,-0.4113],[111.3144,-0.4146],[111.3004,-0.4245],[111.308,-0.4332],[111.3041,-0.4401],[111.2934,-0.4467],[111.2816,-0.4478],[111.2777,-0.4493],[111.2745,-0.4594],[111.2665,-0.4627],[111.2611,-0.4681],[111.2584,-0.4731],[111.2503,-0.4803],[111.2463,-0.4865],[111.2445,-0.4963],[111.2406,-0.5048],[111.2357,-0.5106],[111.2293,-0.5158],[111.2217,-0.5197],[111.2101,-0.5208],[111.2021,-0.5252],[111.2128,-0.5367],[111.2181,-0.5467],[111.2216,-0.562],[111.2263,-0.5649],[111.2284,-0.5716],[111.2345,-0.5773],[111.24,-0.5892],[111.2461,-0.587],[111.2655,-0.5878],[111.2681,-0.6013],[111.2667,-0.6076],[111.2608,-0.6135],[111.2477,-0.6205],[111.2461,-0.6283],[111.2377,-0.638],[111.2217,-0.6587],[111.2215,-0.6637],[111.2271,-0.6705],[111.2318,-0.6794],[111.2402,-0.6898],[111.242,-0.7007],[111.2402,-0.7072],[111.241,-0.7188],[111.2365,-0.7344],[111.229,-0.741],[111.2301,-0.7454],[111.2339,-0.7839],[111.2129,-0.8281],[111.2118,-0.8319],[111.2173,-0.8422],[111.2183,-0.8475],[111.2165,-0.8546],[111.2177,-0.8636],[111.212,-0.8711],[111.2018,-0.8797],[111.1937,-0.88],[111.1846,-0.868],[111.1778,-0.8622],[111.1671,-0.8615],[111.1605,-0.8663],[111.1558,-0.8746],[111.1632,-0.8855],[111.1679,-0.8953],[111.1706,-0.9042],[111.1691,-0.9113],[111.1534,-0.9206],[111.1416,-0.9221],[111.1318,-0.9292],[111.1244,-0.9308],[111.1216,-0.9342],[111.1212,-0.9391],[111.1143,-0.9463],[111.1143,-0.9516],[111.1186,-0.9581],[111.1225,-0.9599],[111.1304,-0.9607],[111.1441,-0.9607],[111.1482,-0.9622],[111.15,-0.9672],[111.1461,-0.9774],[111.1439,-1.0072],[111.1493,-1.009],[111.1688,-1.0113],[111.1901,-1.0143],[111.1984,-1.015],[111.2059,-1.0186],[111.2115,-1.0238],[111.2179,-1.0351],[111.2249,-1.04],[111.2369,-1.0567],[111.2553,-1.0839],[111.2654,-1.0979],[111.2661,-1.1057],[111.2641,-1.1136],[111.2647,-1.1254],[111.2618,-1.1356],[111.2567,-1.1429],[111.2516,-1.1524],[111.2371,-1.1751],[111.2351,-1.183],[111.2396,-1.1935],[111.2473,-1.1977],[111.2551,-1.2035],[111.2604,-1.2091],[111.2611,-1.2142],[111.2569,-1.2308],[111.2573,-1.2354],[111.2604,-1.244],[111.266,-1.2538],[111.2714,-1.2585],[111.2805,-1.2585],[111.302,-1.2555],[111.3133,-1.2574],[111.3154,-1.2624],[111.3142,-1.2712],[111.3142,-1.2821],[111.3154,-1.2931],[111.3247,-1.3013],[111.3544,-1.3156],[111.3589,-1.3191],[111.3628,-1.3154],[111.3656,-1.3093],[111.3689,-1.2949],[111.3715,-1.285],[111.3785,-1.2785],[111.3901,-1.2734],[111.3971,-1.2764],[111.4005,-1.2705],[111.4012,-1.2476],[111.4065,-1.2416],[111.4167,-1.2387],[111.4576,-1.2304],[111.467,-1.2307],[111.4783,-1.2332],[111.4868,-1.2308],[111.4939,-1.2211],[111.5051,-1.2176],[111.5188,-1.2152],[111.5286,-1.2163],[111.5394,-1.2136],[111.5429,-1.2095],[111.5593,-1.2097],[111.5682,-1.203],[111.5733,-1.1944],[111.5727,-1.1857],[111.5637,-1.1812],[111.5551,-1.1748],[111.5542,-1.1672],[111.5595,-1.1588],[111.5661,-1.1526],[111.5702,-1.1457],[111.567,-1.1313],[111.5524,-1.1213],[111.5535,-1.0991],[111.5623,-1.085],[111.57,-1.0754],[111.5808,-1.0734],[111.5897,-1.0735],[111.5967,-1.0715],[111.6001,-1.0607],[111.6082,-1.0476],[111.6123,-1.0453],[111.6181,-1.0494],[111.6209,-1.0491],[111.6235,-1.0409],[111.6208,-1.0303],[111.6173,-1.0216],[111.6146,-1.0115],[111.6151,-1.0045],[111.6183,-0.992],[111.6272,-0.9831],[111.657,-0.9766],[111.6651,-0.9731],[111.6748,-0.9657],[111.6831,-0.962],[111.692,-0.9569],[111.7169,-0.9446],[111.7234,-0.9377],[111.7285,-0.9242],[111.7428,-0.9238],[111.7579,-0.9208],[111.7799,-0.9109],[111.7875,-0.9089],[111.7964,-0.9092],[111.8216,-0.9128],[111.8347,-0.9117],[111.8487,-0.9064],[111.8554,-0.9026],[111.8617,-0.8962],[111.8671,-0.8833],[111.867,-0.8724],[111.8698,-0.8666],[111.878,-0.863],[111.8907,-0.8628],[111.9015,-0.8683],[111.9123,-0.8711],[111.9207,-0.8694],[111.9195,-0.8649],[111.9142,-0.8556],[111.9085,-0.8484],[111.9029,-0.8368],[111.9017,-0.8259],[111.9046,-0.8157],[111.9064,-0.8054],[111.9063,-0.7754],[111.9134,-0.7721],[111.9197,-0.777],[111.9223,-0.7813],[111.9281,-0.7987],[111.9352,-0.8065],[111.9429,-0.8099],[111.9517,-0.816],[111.9611,-0.8167],[111.9673,-0.8131],[111.9897,-0.8032],[112.0021,-0.8003],[112.0089,-0.7996],[112.0159,-0.8017],[112.0269,-0.7965],[112.0323,-0.7928],[112.0355,-0.787],[112.0342,-0.7767],[112.0263,-0.7592],[112.0229,-0.748],[112.0187,-0.7375],[112.0146,-0.7223],[112.0165,-0.7104],[112.0234,-0.7025],[112.0346,-0.7002],[112.0508,-0.7002],[112.0692,-0.7041],[112.0916,-0.7107],[112.1019,-0.715],[112.1115,-0.7158],[112.1225,-0.7241],[112.1272,-0.7266],[112.1389,-0.7288],[112.1548,-0.7289],[112.1618,-0.7235],[112.1555,-0.7115],[112.1473,-0.6889],[112.146,-0.6823],[112.1526,-0.678],[112.1589,-0.6816],[112.1583,-0.6705],[112.1587,-0.6583],[112.1603,-0.6538],[112.1656,-0.6491],[112.1732,-0.6365],[112.1832,-0.6364],[112.1866,-0.6321],[112.1913,-0.6193],[112.1981,-0.6146],[112.2111,-0.6133],[112.2272,-0.62],[112.2425,-0.6334],[112.2508,-0.6431],[112.268,-0.6682],[112.2735,-0.68],[112.2761,-0.6877],[112.2884,-0.7122],[112.2959,-0.7235],[112.302,-0.7307],[112.3086,-0.7348],[112.3117,-0.7328],[112.3163,-0.7212],[112.3251,-0.7094],[112.3305,-0.7044],[112.3343,-0.7042],[112.3397,-0.7139],[112.3422,-0.716],[112.3523,-0.7162],[112.3662,-0.7134],[112.3792,-0.709],[112.3989,-0.7005],[112.413,-0.6899],[112.421,-0.6751],[112.425,-0.6725],[112.4308,-0.6715],[112.4421,-0.6742],[112.4466,-0.6776],[112.4511,-0.6858]]}},{"type":"Feature","properties":{"mhid":"1332:334","alt_name":"KABUPATEN KAYONG UTARA","latitude":-1.43711,"longitude":110.79781,"sample_value":960},"geometry":{"type":"LineString","coordinates":[[108.7699,-1.701],[108.7622,-1.7004],[108.7531,-1.7021],[108.7483,-1.7001],[108.7293,-1.7024],[108.7242,-1.7071],[108.7193,-1.7082],[108.7156,-1.7029],[108.7111,-1.7073],[108.704,-1.7044],[108.6917,-1.7096],[108.6882,-1.7028],[108.6807,-1.7057],[108.6839,-1.7093],[108.6838,-1.7146],[108.6789,-1.7174],[108.681,-1.7227],[108.6961,-1.7216],[108.6994,-1.7239],[108.7081,-1.7242],[108.7181,-1.7272],[108.7312,-1.7257],[108.7375,-1.7216],[108.7517,-1.7177],[108.774,-1.7169],[108.7832,-1.7136],[108.7873,-1.7109],[108.7876,-1.707],[108.7839,-1.7033],[108.7699,-1.701]]}},{"type":"Feature","properties":{"mhid":"1332:334","alt_name":"KABUPATEN KAYONG UTARA","latitude":-1.43711,"longitude":110.79781,"sample_value":960},"geometry":{"type":"LineString","coordinates":[[109.1543,-1.5978],[109.1505,-1.6001],[109.151,-1.6053],[109.1558,-1.6043],[109.1543,-1.5978]]}},{"type":"Feature","properties":{"mhid":"1332:334","alt_name":"KABUPATEN KAYONG UTARA","latitude":-1.43711,"longitude":110.79781,"sample_value":960},"geometry":{"type":"LineString","coordinates":[[108.7771,-1.5755],[108.7657,-1.5761],[108.7634,-1.5806],[108.7634,-1.5899],[108.7675,-1.5914],[108.7771,-1.5869],[108.7771,-1.5755]]}},{"type":"Feature","properties":{"mhid":"1332:334","alt_name":"KABUPATEN KAYONG UTARA","latitude":-1.43711,"longitude":110.79781,"sample_value":960},"geometry":{"type":"LineString","coordinates":[[108.7403,-1.5755],[108.7382,-1.5707],[108.7321,-1.5687],[108.731,-1.5754],[108.7391,-1.5791],[108.7403,-1.5755]]}},{"type":"Feature","properties":{"mhid":"1332:334","alt_name":"KABUPATEN KAYONG UTARA","latitude":-1.43711,"longitude":110.79781,"sample_value":960},"geometry":{"type":"LineString","coordinates":[[108.898,-1.5347],[108.8924,-1.5357],[108.8917,-1.5402],[108.893,-1.5491],[108.8757,-1.5648],[108.8685,-1.5594],[108.8642,-1.5622],[108.8575,-1.5722],[108.8546,-1.5713],[108.8558,-1.5642],[108.8524,-1.5639],[108.846,-1.5697],[108.8392,-1.5549],[108.8356,-1.553],[108.8293,-1.5558],[108.8308,-1.5604],[108.8251,-1.562],[108.8249,-1.5674],[108.8203,-1.5704],[108.8132,-1.5676],[108.8002,-1.5719],[108.79,-1.5816],[108.796,-1.5844],[108.8032,-1.5794],[108.806,-1.5811],[108.8072,-1.5865],[108.8017,-1.5932],[108.8124,-1.5923],[108.8216,-1.5894],[108.8234,-1.5865],[108.8303,-1.5845],[108.8289,-1.5895],[108.8336,-1.6026],[108.8293,-1.6081],[108.836,-1.6235],[108.8411,-1.628],[108.8374,-1.6356],[108.8294,-1.6369],[108.8277,-1.6432],[108.8191,-1.6471],[108.8272,-1.6496],[108.83,-1.6639],[108.8335,-1.6676],[108.8373,-1.6671],[108.8556,-1.6729],[108.8568,-1.6755],[108.8662,-1.6766],[108.8732,-1.6731],[108.8775,-1.6744],[108.8919,-1.6683],[108.8961,-1.6648],[108.8977,-1.6607],[108.9059,-1.6604],[108.9103,-1.6585],[108.9222,-1.6601],[108.9354,-1.651],[108.9415,-1.6447],[108.9491,-1.6399],[108.9518,-1.6396],[108.9607,-1.6338],[108.963,-1.6294],[108.9696,-1.6267],[108.9729,-1.6168],[108.9751,-1.6156],[108.9829,-1.6036],[108.9827,-1.5997],[108.9731,-1.5935],[108.9719,-1.5878],[108.9595,-1.5797],[108.9532,-1.5734],[108.954,-1.5664],[108.944,-1.5592],[108.9411,-1.5513],[108.9296,-1.5484],[108.9169,-1.5491],[108.9082,-1.5418],[108.902,-1.5443],[108.898,-1.5347]]}},{"type":"Feature","properties":{"mhid":"1332:334","alt_name":"KABUPATEN KAYONG UTARA","latitude":-1.43711,"longitude":110.79781,"sample_value":960},"geometry":{"type":"LineString","coordinates":[[109.3887,-1.4903],[109.3875,-1.4857],[109.3828,-1.4886],[109.3816,-1.4974],[109.3768,-1.5009],[109.38,-1.5041],[109.3827,-1.4991],[109.3871,-1.4955],[109.3887,-1.4903]]}},{"type":"Feature","properties":{"mhid":"1332:334","alt_name":"KABUPATEN KAYONG UTARA","latitude":-1.43711,"longitude":110.79781,"sample_value":960},"geometry":{"type":"LineString","coordinates":[[109.044,-1.474],[109.0395,-1.4786],[109.0402,-1.4855],[109.0448,-1.4884],[109.0438,-1.4922],[109.0464,-1.4956],[109.0523,-1.4956],[109.0569,-1.4916],[109.0527,-1.4881],[109.054,-1.4789],[109.0472,-1.4811],[109.044,-1.474]]}},{"type":"Feature","properties":{"mhid":"1332:334","alt_name":"KABUPATEN KAYONG UTARA","latitude":-1.43711,"longitude":110.79781,"sample_value":960},"geometry":{"type":"LineString","coordinates":[[109.9008,-1.3427],[109.8967,-1.3504],[109.9029,-1.3492],[109.9008,-1.3427]]}},{"type":"Feature","properties":{"mhid":"1332:334","alt_name":"KABUPATEN KAYONG UTARA","latitude":-1.43711,"longitude":110.79781,"sample_value":960},"geometry":{"type":"LineString","coordinates":[[109.1388,-1.2904],[109.1342,-1.2873],[109.1303,-1.2894],[109.1286,-1.2934],[109.1207,-1.2984],[109.115,-1.3137],[109.1236,-1.3112],[109.1265,-1.3049],[109.1303,-1.3028],[109.1357,-1.292],[109.1388,-1.2904]]}},{"type":"Feature","properties":{"mhid":"1332:334","alt_name":"KABUPATEN KAYONG UTARA","latitude":-1.43711,"longitude":110.79781,"sample_value":960},"geometry":{"type":"LineString","coordinates":[[109.146,-1.2878],[109.1411,-1.2871],[109.1414,-1.2918],[109.1395,-1.3112],[109.1398,-1.3176],[109.1357,-1.3223],[109.1396,-1.3278],[109.145,-1.3225],[109.1469,-1.3178],[109.1527,-1.3107],[109.1521,-1.3026],[109.158,-1.3017],[109.1631,-1.2945],[109.1616,-1.2902],[109.1554,-1.2905],[109.1506,-1.2943],[109.146,-1.2878]]}},{"type":"Feature","properties":{"mhid":"1332:334","alt_name":"KABUPATEN KAYONG UTARA","latitude":-1.43711,"longitude":110.79781,"sample_value":960},"geometry":{"type":"LineString","coordinates":[[109.1332,-1.2763],[109.1264,-1.2818],[109.1272,-1.2863],[109.1336,-1.2843],[109.1352,-1.2778],[109.1332,-1.2763]]}},{"type":"Feature","properties":{"mhid":"1332:334","alt_name":"KABUPATEN KAYONG UTARA","latitude":-1.43711,"longitude":110.79781,"sample_value":960},"geometry":{"type":"LineString","coordinates":[[109.16,-1.2665],[109.1565,-1.2665],[109.1526,-1.272],[109.1588,-1.2822],[109.1613,-1.2827],[109.1641,-1.2903],[109.1727,-1.2916],[109.1749,-1.2961],[109.1785,-1.2927],[109.1797,-1.2833],[109.1707,-1.2712],[109.163,-1.2662],[109.16,-1.2665]]}},{"type":"Feature","properties":{"mhid":"1332:334","alt_name":"KABUPATEN KAYONG UTARA","latitude":-1.43711,"longitude":110.79781,"sample_value":960},"geometry":{"type":"LineString","coordinates":[[109.2082,-1.2353],[109.2073,-1.2329],[109.1999,-1.2376],[109.2056,-1.2437],[109.2083,-1.2419],[109.2082,-1.2353]]}},{"type":"Feature","properties":{"mhid":"1332:334","alt_name":"KABUPATEN KAYONG UTARA","latitude":-1.43711,"longitude":110.79781,"sample_value":960},"geometry":{"type":"LineString","coordinates":[[109.2751,-1.2108],[109.2772,-1.2067],[109.2749,-1.2],[109.2719,-1.2012],[109.2717,-1.208],[109.2751,-1.2108]]}},{"type":"Feature","properties":{"mhid":"1332:334","alt_name":"KABUPATEN KAYONG UTARA","latitude":-1.43711,"longitude":110.79781,"sample_value":960},"geometry":{"type":"LineString","coordinates":[[109.2632,-1.1857],[109.2602,-1.1816],[109.2468,-1.1943],[109.2444,-1.1979],[109.2371,-1.1966],[109.235,-1.2001],[109.2274,-1.2002],[109.2243,-1.2121],[109.2285,-1.2138],[109.2264,-1.2222],[109.2231,-1.2238],[109.2188,-1.2301],[109.2173,-1.2368],[109.2325,-1.2436],[109.2432,-1.2432],[109.253,-1.2324],[109.2533,-1.2274],[109.2565,-1.2229],[109.2632,-1.2195],[109.2653,-1.2151],[109.2695,-1.2163],[109.2711,-1.2087],[109.2681,-1.1996],[109.269,-1.1943],[109.2664,-1.187],[109.2632,-1.1857]]}},{"type":"Feature","properties":{"mhid":"1332:334","alt_name":"KABUPATEN KAYONG UTARA","latitude":-1.43711,"longitude":110.79781,"sample_value":960},"geometry":{"type":"LineString","coordinates":[[109.498,-0.9786],[109.492,-0.973],[109.488,-0.9731],[109.4833,-0.986],[109.4786,-0.9951],[109.4724,-1.0027],[109.4649,-1.0025],[109.4618,-1.0006],[109.4581,-1.0036],[109.4619,-1.0098],[109.4612,-1.0158],[109.455,-1.0183],[109.4572,-1.0227],[109.4511,-1.0309],[109.4518,-1.0373],[109.4557,-1.0415],[109.4551,-1.0622],[109.4489,-1.1033],[109.4465,-1.1099],[109.4437,-1.1269],[109.4373,-1.1528],[109.4334,-1.1772],[109.4261,-1.2054],[109.4178,-1.2248],[109.4106,-1.239],[109.4064,-1.2448],[109.4012,-1.2472],[109.3927,-1.2467],[109.3832,-1.2499],[109.3798,-1.2539],[109.3818,-1.2594],[109.3977,-1.2717],[109.4024,-1.2761],[109.4173,-1.2858],[109.4304,-1.2932],[109.4564,-1.3032],[109.4685,-1.3062],[109.4931,-1.3095],[109.5011,-1.3094],[109.5079,-1.2997],[109.5174,-1.2911],[109.5421,-1.2733],[109.5607,-1.2624],[109.5894,-1.2489],[109.5905,-1.2467],[109.6168,-1.2354],[109.6382,-1.227],[109.6415,-1.2246],[109.6602,-1.2177],[109.6736,-1.2147],[109.6862,-1.2137],[109.6839,-1.2103],[109.6832,-1.2023],[109.6844,-1.1988],[109.6901,-1.1925],[109.714,-1.18],[109.7269,-1.1743],[109.7485,-1.1628],[109.7551,-1.1575],[109.7696,-1.1498],[109.7778,-1.1475],[109.7804,-1.1441],[109.7796,-1.1351],[109.7768,-1.1285],[109.7721,-1.1252],[109.7678,-1.1183],[109.7656,-1.1068],[109.765,-1.0976],[109.7667,-1.0927],[109.7698,-1.077],[109.766,-1.0687],[109.7656,-1.0621],[109.7596,-1.0454],[109.7594,-1.0348],[109.7562,-1.0246],[109.7561,-1.0132],[109.7619,-1.01],[109.7607,-1.0042],[109.7459,-1.0034],[109.7375,-1.0018],[109.73,-0.9991],[109.7231,-0.994],[109.7195,-0.9892],[109.7147,-0.9891],[109.701,-0.9931],[109.699,-1.0023],[109.6969,-1.0069],[109.6859,-1.0188],[109.6753,-1.0204],[109.6626,-1.0105],[109.6511,-1.0122],[109.6457,-1.0114],[109.6416,-1.003],[109.64,-0.9905],[109.6378,-0.9864],[109.6166,-0.9859],[109.6054,-0.984],[109.5971,-0.9811],[109.5882,-0.9846],[109.5772,-0.9937],[109.5719,-0.9945],[109.5676,-0.999],[109.5538,-1.0032],[109.5365,-1.0001],[109.5316,-0.997],[109.5289,-0.9988],[109.5169,-0.9903],[109.498,-0.9786]]}},{"type":"Feature","properties":{"mhid":"1332:334","alt_name":"KABUPATEN KAYONG UTARA","latitude":-1.43711,"longitude":110.79781,"sample_value":960},"geometry":{"type":"LineString","coordinates":[[110.0688,-1.3683],[110.1048,-1.3529],[110.1328,-1.3378],[110.1608,-1.3269],[110.1848,-1.325],[110.205,-1.3174],[110.2201,-1.3082],[110.2349,-1.3063],[110.2522,-1.3094],[110.2707,-1.3044],[110.2886,-1.2884],[110.3177,-1.2615],[110.353,-1.2363],[110.3813,-1.2268],[110.4187,-1.2255],[110.4413,-1.2341],[110.4444,-1.231],[110.4477,-1.2237],[110.4449,-1.2218],[110.4444,-1.2158],[110.4464,-1.2073],[110.4541,-1.201],[110.4511,-1.1957],[110.455,-1.1913],[110.4566,-1.1809],[110.466,-1.169],[110.4621,-1.1675],[110.4658,-1.1616],[110.4654,-1.1564],[110.4681,-1.1522],[110.4677,-1.1447],[110.4656,-1.1408],[110.4706,-1.139],[110.4706,-1.134],[110.4615,-1.1303],[110.4612,-1.1205],[110.4582,-1.1166],[110.4603,-1.1107],[110.4458,-1.11],[110.4422,-1.107],[110.4309,-1.1072],[110.4274,-1.101],[110.4215,-1.1041],[110.4144,-1.1018],[110.414,-1.0986],[110.4242,-1.0929],[110.4218,-1.0866],[110.4135,-1.0804],[110.4045,-1.0817],[110.4004,-1.0802],[110.4,-1.0714],[110.3956,-1.0692],[110.395,-1.0638],[110.3997,-1.0635],[110.4043,-1.0592],[110.4002,-1.0494],[110.3911,-1.0114],[110.3759,-0.9581],[110.3644,-0.9036],[110.3531,-0.8738],[110.3461,-0.8751],[110.2819,-0.8742],[110.2336,-0.866],[110.2195,-0.8611],[110.1907,-0.8427],[110.1443,-0.8039],[110.1377,-0.7978],[110.127,-0.7901],[110.1139,-0.7832],[110.0978,-0.7759],[110.0573,-0.7597],[110.0162,-0.758],[110.0029,-0.7561],[109.9717,-0.7525],[109.9323,-0.7523],[109.9397,-0.7573],[109.931,-0.7711],[109.9321,-0.7811],[109.9263,-0.7855],[109.9155,-0.7897],[109.907,-0.7991],[109.8959,-0.8007],[109.893,-0.8037],[109.8926,-0.8081],[109.8941,-0.8204],[109.8916,-0.823],[109.8839,-0.8232],[109.8769,-0.8249],[109.869,-0.8295],[109.8643,-0.8301],[109.8602,-0.8243],[109.8536,-0.8241],[109.845,-0.8372],[109.8405,-0.8385],[109.8282,-0.8317],[109.8249,-0.8328],[109.8178,-0.8403],[109.8119,-0.8418],[109.8005,-0.8423],[109.7963,-0.8466],[109.7949,-0.8557],[109.8017,-0.8619],[109.8032,-0.8673],[109.797,-0.8716],[109.7803,-0.8751],[109.7779,-0.8766],[109.7717,-0.8855],[109.7596,-0.8878],[109.7568,-0.8895],[109.7543,-0.8952],[109.7582,-0.8963],[109.758,-0.9033],[109.7558,-0.907],[109.7482,-0.9138],[109.7334,-0.9152],[109.7283,-0.9197],[109.7272,-0.9247],[109.7307,-0.9326],[109.7326,-0.9404],[109.7344,-0.9617],[109.7324,-0.9874],[109.7421,-0.9928],[109.747,-0.9897],[109.755,-0.9891],[109.762,-0.9924],[109.7686,-1.0019],[109.7692,-1.0192],[109.7677,-1.0326],[109.775,-1.0437],[109.7787,-1.0444],[109.7878,-1.0418],[109.7996,-1.0452],[109.8038,-1.0489],[109.8044,-1.0541],[109.8139,-1.0701],[109.8201,-1.0837],[109.8188,-1.0904],[109.8255,-1.0944],[109.8293,-1.0889],[109.836,-1.088],[109.8557,-1.0905],[109.8778,-1.0973],[109.8959,-1.1047],[109.9079,-1.1107],[109.9257,-1.1184],[109.9385,-1.123],[109.9424,-1.1209],[109.9466,-1.125],[109.9418,-1.1313],[109.9378,-1.1407],[109.9336,-1.1544],[109.9281,-1.167],[109.9228,-1.1763],[109.9211,-1.1852],[109.9164,-1.1917],[109.9114,-1.1927],[109.9099,-1.2032],[109.9078,-1.209],[109.9118,-1.2093],[109.9124,-1.2171],[109.9186,-1.2184],[109.9265,-1.2136],[109.9329,-1.2172],[109.9358,-1.2206],[109.9331,-1.2232],[109.9365,-1.2323],[109.9404,-1.2349],[109.9441,-1.2322],[109.9472,-1.2361],[109.9486,-1.2429],[109.9413,-1.2547],[109.9471,-1.2566],[109.95,-1.2629],[109.9559,-1.2617],[109.9608,-1.2641],[109.9603,-1.2714],[109.9624,-1.277],[109.965,-1.2777],[109.9728,-1.2751],[109.9859,-1.2774],[109.9881,-1.2739],[109.9935,-1.2738],[110.0021,-1.2775],[110.0151,-1.2851],[110.0262,-1.2951],[110.0329,-1.3034],[110.0326,-1.3074],[110.0446,-1.3177],[110.0576,-1.3374],[110.0633,-1.3499],[110.0688,-1.3683]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.5848,-0.7388],[109.5788,-0.7349],[109.5748,-0.7384],[109.5729,-0.7485],[109.5666,-0.7548],[109.5688,-0.7588],[109.583,-0.7669],[109.594,-0.7661],[109.6018,-0.7689],[109.6041,-0.7786],[109.6103,-0.7801],[109.6187,-0.784],[109.6232,-0.7934],[109.6285,-0.7953],[109.6354,-0.7912],[109.6367,-0.787],[109.6329,-0.7824],[109.6334,-0.7762],[109.6319,-0.7606],[109.6261,-0.7509],[109.6224,-0.7498],[109.613,-0.7518],[109.6079,-0.7486],[109.5987,-0.7483],[109.5934,-0.7429],[109.5848,-0.7388]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.6908,-0.7155],[109.6762,-0.7177],[109.6683,-0.7166],[109.6651,-0.7246],[109.6616,-0.7256],[109.6503,-0.7194],[109.6469,-0.7205],[109.6461,-0.726],[109.6422,-0.7324],[109.6289,-0.7336],[109.6244,-0.7285],[109.616,-0.7324],[109.6059,-0.7342],[109.6089,-0.7405],[109.6078,-0.7449],[109.6159,-0.7493],[109.6214,-0.7472],[109.6394,-0.75],[109.6448,-0.7486],[109.6609,-0.7485],[109.6689,-0.7523],[109.6728,-0.7382],[109.6756,-0.7375],[109.6845,-0.7269],[109.691,-0.7265],[109.6953,-0.7206],[109.6954,-0.717],[109.6908,-0.7155]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.5715,-0.7319],[109.577,-0.7269],[109.5755,-0.7178],[109.5687,-0.7123],[109.5655,-0.7145],[109.5607,-0.7229],[109.5532,-0.7284],[109.5522,-0.732],[109.5578,-0.7331],[109.5648,-0.7422],[109.5703,-0.7396],[109.5715,-0.7319]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.5756,-0.7108],[109.5706,-0.712],[109.5769,-0.7189],[109.5785,-0.7262],[109.5774,-0.729],[109.593,-0.7383],[109.5992,-0.7437],[109.604,-0.7448],[109.6063,-0.7415],[109.6042,-0.7319],[109.6067,-0.7266],[109.5942,-0.716],[109.5868,-0.72],[109.5797,-0.7191],[109.5756,-0.7108]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.6571,-0.6997],[109.648,-0.7032],[109.6323,-0.7055],[109.621,-0.7051],[109.6161,-0.7025],[109.61,-0.7046],[109.6028,-0.7045],[109.5996,-0.7092],[109.5966,-0.7098],[109.5866,-0.7071],[109.5779,-0.7099],[109.5801,-0.7179],[109.5865,-0.7189],[109.5903,-0.7152],[109.595,-0.7149],[109.6069,-0.7249],[109.6086,-0.7302],[109.6147,-0.7299],[109.6265,-0.7269],[109.6289,-0.732],[109.634,-0.73],[109.6418,-0.7305],[109.6473,-0.7178],[109.6526,-0.7191],[109.6604,-0.7241],[109.6642,-0.724],[109.6665,-0.7177],[109.6697,-0.7147],[109.6761,-0.7168],[109.6873,-0.7143],[109.6879,-0.7068],[109.68,-0.7022],[109.67,-0.702],[109.6571,-0.6997]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.5258,-0.6994],[109.5167,-0.7015],[109.5004,-0.6999],[109.4912,-0.7012],[109.4913,-0.7074],[109.4835,-0.7066],[109.4853,-0.7138],[109.4831,-0.7174],[109.4694,-0.7169],[109.4621,-0.7209],[109.4586,-0.7207],[109.4481,-0.7092],[109.4468,-0.7106],[109.4531,-0.7252],[109.4567,-0.7284],[109.464,-0.7313],[109.4765,-0.732],[109.4885,-0.7302],[109.5147,-0.7274],[109.5287,-0.7272],[109.5363,-0.7308],[109.5422,-0.7312],[109.5493,-0.7241],[109.5557,-0.7207],[109.5592,-0.7152],[109.5496,-0.7066],[109.5422,-0.7059],[109.5335,-0.7033],[109.5258,-0.6994]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.4852,-0.6839],[109.4836,-0.6875],[109.4938,-0.6956],[109.4979,-0.6941],[109.4962,-0.6879],[109.4852,-0.6839]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.6671,-0.6847],[109.6609,-0.681],[109.6576,-0.677],[109.6561,-0.6718],[109.6512,-0.6772],[109.6474,-0.6844],[109.6402,-0.6854],[109.6344,-0.6895],[109.6176,-0.6907],[109.6159,-0.6849],[109.6076,-0.6867],[109.5978,-0.6953],[109.5832,-0.6921],[109.5738,-0.6921],[109.5523,-0.7066],[109.5612,-0.7121],[109.569,-0.7079],[109.578,-0.7075],[109.5902,-0.7051],[109.5948,-0.7079],[109.6029,-0.7021],[109.6084,-0.7025],[109.617,-0.7012],[109.6217,-0.7036],[109.6314,-0.7039],[109.6443,-0.7025],[109.6552,-0.6985],[109.662,-0.6991],[109.6719,-0.6982],[109.6747,-0.6955],[109.6686,-0.6892],[109.6671,-0.6847]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.4478,-0.6716],[109.4416,-0.6686],[109.4397,-0.6738],[109.4358,-0.6764],[109.4231,-0.6697],[109.4189,-0.6697],[109.4119,-0.6742],[109.425,-0.6816],[109.4311,-0.6876],[109.4365,-0.6958],[109.4424,-0.6961],[109.4547,-0.7051],[109.4529,-0.7106],[109.4581,-0.7188],[109.4669,-0.7161],[109.483,-0.7166],[109.482,-0.7081],[109.4835,-0.7054],[109.4915,-0.7064],[109.4896,-0.6968],[109.4782,-0.6893],[109.4703,-0.6883],[109.4676,-0.6814],[109.4577,-0.6771],[109.4536,-0.6721],[109.4478,-0.6716]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.2538,-0.6614],[109.2492,-0.6606],[109.2464,-0.6641],[109.2425,-0.6933],[109.2419,-0.7063],[109.2425,-0.7536],[109.2418,-0.767],[109.2378,-0.7935],[109.2375,-0.7998],[109.2393,-0.8116],[109.2423,-0.8231],[109.2454,-0.8311],[109.2547,-0.8469],[109.267,-0.8623],[109.2811,-0.8816],[109.3003,-0.9002],[109.3044,-0.9003],[109.3059,-0.9042],[109.314,-0.9101],[109.3309,-0.9174],[109.3538,-0.9166],[109.3612,-0.9183],[109.3742,-0.9265],[109.3911,-0.9303],[109.3992,-0.9332],[109.4062,-0.9322],[109.4102,-0.9248],[109.4189,-0.9162],[109.4275,-0.9023],[109.4277,-0.8992],[109.4327,-0.896],[109.4263,-0.8889],[109.4215,-0.8749],[109.4163,-0.8714],[109.4169,-0.8646],[109.4198,-0.8642],[109.4334,-0.8536],[109.4388,-0.8524],[109.4397,-0.8576],[109.4511,-0.8617],[109.457,-0.8654],[109.4646,-0.8658],[109.4816,-0.8693],[109.4861,-0.8717],[109.4932,-0.8725],[109.4976,-0.8757],[109.5051,-0.8742],[109.5147,-0.8772],[109.5245,-0.8781],[109.5367,-0.8863],[109.5431,-0.8835],[109.5524,-0.885],[109.5575,-0.888],[109.5632,-0.8956],[109.5689,-0.8991],[109.5709,-0.9023],[109.575,-0.8982],[109.5839,-0.8977],[109.5903,-0.9035],[109.5951,-0.9118],[109.5977,-0.9198],[109.5996,-0.9312],[109.6032,-0.9377],[109.6089,-0.9433],[109.6101,-0.9564],[109.6093,-0.9643],[109.6129,-0.9721],[109.6219,-0.978],[109.6268,-0.972],[109.6397,-0.9763],[109.6436,-0.9814],[109.6489,-0.998],[109.6534,-1.0001],[109.661,-1.0003],[109.6687,-0.9971],[109.6759,-1.0026],[109.6839,-1.0134],[109.6899,-0.9973],[109.6939,-0.991],[109.6986,-0.9863],[109.7062,-0.9829],[109.7214,-0.9737],[109.7229,-0.9664],[109.7206,-0.9432],[109.7207,-0.9313],[109.7198,-0.9186],[109.7205,-0.9134],[109.7281,-0.9049],[109.7431,-0.9013],[109.7461,-0.8993],[109.7445,-0.895],[109.7381,-0.8884],[109.7359,-0.8839],[109.7391,-0.8764],[109.7479,-0.8736],[109.7475,-0.8689],[109.7438,-0.864],[109.7375,-0.8628],[109.732,-0.8698],[109.7238,-0.874],[109.7163,-0.8707],[109.7137,-0.8671],[109.7139,-0.8605],[109.7185,-0.8515],[109.7148,-0.8425],[109.7128,-0.834],[109.7086,-0.8311],[109.6927,-0.8276],[109.6854,-0.8317],[109.6767,-0.832],[109.6678,-0.8252],[109.6629,-0.8199],[109.66,-0.811],[109.6534,-0.8095],[109.6423,-0.8038],[109.6291,-0.8021],[109.6185,-0.797],[109.6149,-0.7893],[109.6022,-0.7851],[109.5963,-0.7793],[109.5934,-0.7735],[109.5831,-0.7738],[109.5711,-0.7671],[109.5601,-0.7624],[109.5574,-0.7571],[109.5588,-0.7493],[109.556,-0.7454],[109.5518,-0.7439],[109.5462,-0.7475],[109.5412,-0.7457],[109.5347,-0.7384],[109.5094,-0.7394],[109.5033,-0.7423],[109.5044,-0.7453],[109.4903,-0.7493],[109.4784,-0.7505],[109.4724,-0.7538],[109.4665,-0.7544],[109.459,-0.751],[109.4439,-0.7421],[109.4354,-0.734],[109.4226,-0.7234],[109.4099,-0.716],[109.4038,-0.7105],[109.3929,-0.7065],[109.3871,-0.7084],[109.3731,-0.7106],[109.3688,-0.714],[109.3608,-0.7138],[109.3473,-0.712],[109.3245,-0.7055],[109.3134,-0.7039],[109.3065,-0.7015],[109.2884,-0.6913],[109.2793,-0.6817],[109.2762,-0.677],[109.2656,-0.665],[109.2538,-0.6614]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.3764,-0.6543],[109.37,-0.6503],[109.36,-0.6569],[109.3493,-0.656],[109.352,-0.6625],[109.3621,-0.6743],[109.3683,-0.6763],[109.3791,-0.6727],[109.3861,-0.6728],[109.3997,-0.6747],[109.3992,-0.6699],[109.3874,-0.6585],[109.3764,-0.6543]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.483,-0.6285],[109.4738,-0.6236],[109.4684,-0.6287],[109.4606,-0.6307],[109.4557,-0.6369],[109.4524,-0.6319],[109.4397,-0.6326],[109.4318,-0.6342],[109.4284,-0.6372],[109.4274,-0.6425],[109.4577,-0.6589],[109.4665,-0.6643],[109.4732,-0.6712],[109.4814,-0.6777],[109.4843,-0.6824],[109.4978,-0.6884],[109.4985,-0.6936],[109.5034,-0.6949],[109.5168,-0.6955],[109.5239,-0.6951],[109.5331,-0.6968],[109.5398,-0.701],[109.5467,-0.7031],[109.5553,-0.6989],[109.5747,-0.6873],[109.5829,-0.6862],[109.5809,-0.6794],[109.5847,-0.6604],[109.5837,-0.6532],[109.5769,-0.6551],[109.5729,-0.6531],[109.5687,-0.6571],[109.5639,-0.6526],[109.558,-0.6568],[109.5524,-0.6521],[109.5449,-0.6545],[109.541,-0.6461],[109.533,-0.6457],[109.5286,-0.6468],[109.5263,-0.6406],[109.5236,-0.6396],[109.5173,-0.6448],[109.5093,-0.6377],[109.5065,-0.6393],[109.5015,-0.6375],[109.4925,-0.626],[109.483,-0.6285]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.364,-0.6174],[109.3576,-0.6191],[109.3522,-0.6299],[109.3512,-0.6356],[109.3588,-0.6473],[109.3611,-0.6531],[109.3685,-0.6487],[109.3732,-0.6485],[109.3796,-0.6535],[109.3873,-0.6558],[109.3975,-0.6642],[109.4048,-0.6723],[109.4082,-0.6723],[109.42,-0.6675],[109.4251,-0.6678],[109.4348,-0.6742],[109.4414,-0.6665],[109.4467,-0.6698],[109.4526,-0.67],[109.4625,-0.6779],[109.4679,-0.68],[109.4741,-0.6883],[109.4772,-0.6826],[109.4743,-0.6769],[109.4569,-0.6659],[109.4493,-0.6602],[109.4306,-0.6501],[109.423,-0.648],[109.4142,-0.6411],[109.4038,-0.6371],[109.3856,-0.6247],[109.3735,-0.6226],[109.364,-0.6174]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.2992,-0.5942],[109.2946,-0.5942],[109.286,-0.5996],[109.2813,-0.6132],[109.2885,-0.6119],[109.2901,-0.6094],[109.3069,-0.6016],[109.3063,-0.5991],[109.2992,-0.5942]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.3246,-0.5815],[109.3338,-0.5758],[109.3322,-0.5726],[109.3247,-0.5736],[109.3246,-0.5815]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.1261,-0.202],[109.1128,-0.2028],[109.1016,-0.2058],[109.0936,-0.2093],[109.0894,-0.2076],[109.0776,-0.2177],[109.0721,-0.2204],[109.0649,-0.2206],[109.0579,-0.2169],[109.0534,-0.242],[109.0524,-0.2554],[109.0549,-0.2682],[109.0583,-0.278],[109.0691,-0.2961],[109.0806,-0.309],[109.0944,-0.3293],[109.1018,-0.3272],[109.0996,-0.3223],[109.1015,-0.3186],[109.0982,-0.305],[109.0884,-0.2956],[109.0834,-0.2876],[109.0836,-0.2696],[109.0883,-0.2684],[109.0948,-0.2645],[109.1106,-0.2607],[109.1176,-0.2568],[109.1231,-0.2515],[109.1325,-0.2363],[109.1442,-0.2337],[109.153,-0.2336],[109.1617,-0.2296],[109.1727,-0.231],[109.1768,-0.2248],[109.1869,-0.223],[109.1932,-0.2174],[109.1866,-0.2116],[109.178,-0.2071],[109.1722,-0.2064],[109.1616,-0.2107],[109.1576,-0.2103],[109.1424,-0.2042],[109.1261,-0.202]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.0742,-0.1949],[109.0691,-0.1904],[109.0662,-0.1956],[109.0742,-0.1949]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.0898,-0.1708],[109.0822,-0.1713],[109.0832,-0.1742],[109.0898,-0.1708]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.1081,-0.1678],[109.103,-0.1684],[109.0921,-0.1805],[109.088,-0.181],[109.0859,-0.1866],[109.0879,-0.1904],[109.0927,-0.1932],[109.1039,-0.1961],[109.1175,-0.1978],[109.1324,-0.1968],[109.1336,-0.1958],[109.1475,-0.2017],[109.1589,-0.2079],[109.1634,-0.2075],[109.1732,-0.2014],[109.1663,-0.1923],[109.1619,-0.1889],[109.1519,-0.1846],[109.1424,-0.1822],[109.1331,-0.177],[109.119,-0.1727],[109.1081,-0.1678]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.1296,-0.1459],[109.1274,-0.1472],[109.1274,-0.1548],[109.1254,-0.1641],[109.1266,-0.1671],[109.1422,-0.1796],[109.1608,-0.1852],[109.1609,-0.1807],[109.1577,-0.1763],[109.1493,-0.1698],[109.1406,-0.1582],[109.1358,-0.1498],[109.1296,-0.1459]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.1256,-0.1506],[109.1251,-0.1452],[109.1222,-0.1393],[109.1141,-0.1294],[109.1162,-0.1243],[109.1146,-0.1193],[109.1101,-0.118],[109.1027,-0.1216],[109.0969,-0.128],[109.0942,-0.1354],[109.0939,-0.1404],[109.0893,-0.1515],[109.0974,-0.1512],[109.1047,-0.1592],[109.1073,-0.1588],[109.1138,-0.1658],[109.1191,-0.1682],[109.124,-0.1679],[109.124,-0.1614],[109.1256,-0.1506]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.1215,-0.1164],[109.1256,-0.1084],[109.124,-0.1037],[109.1193,-0.1065],[109.1182,-0.1104],[109.1215,-0.1164]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.1753,-0.0878],[109.1705,-0.088],[109.1703,-0.0934],[109.1755,-0.0957],[109.1753,-0.0878]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.1727,-0.1051],[109.1659,-0.092],[109.1676,-0.0795],[109.1649,-0.0707],[109.1646,-0.0624],[109.1612,-0.0581],[109.1481,-0.0709],[109.136,-0.0845],[109.1251,-0.104],[109.1283,-0.1084],[109.1284,-0.1128],[109.1247,-0.1168],[109.1281,-0.1202],[109.1286,-0.1272],[109.1309,-0.1328],[109.1318,-0.1405],[109.1402,-0.15],[109.1433,-0.1591],[109.1497,-0.1679],[109.1604,-0.1765],[109.1636,-0.1862],[109.1751,-0.194],[109.1778,-0.1931],[109.1818,-0.1783],[109.181,-0.1666],[109.1819,-0.1588],[109.1852,-0.149],[109.1868,-0.1365],[109.1837,-0.1249],[109.175,-0.1123],[109.1727,-0.1051]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.1944,0.0478],[109.1869,0.0463],[109.1802,0.0478],[109.1779,0.0447],[109.1788,0.0363],[109.1848,0.0344],[109.199,0.0281],[109.2111,0.0245],[109.2183,0.0198],[109.2301,0.0185],[109.239,0.0189],[109.2349,0.0252],[109.2206,0.0368],[109.2002,0.0474],[109.1944,0.0478]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"LineString","coordinates":[[109.3732,-0.0616],[109.3661,-0.0606],[109.357,-0.0767],[109.3561,-0.0784],[109.3437,-0.0974],[109.3406,-0.0961],[109.3172,-0.0752],[109.3139,-0.082],[109.307,-0.0771],[109.3109,-0.0696],[109.3039,-0.0634],[109.3016,-0.0593],[109.285,-0.0409],[109.2823,-0.0435],[109.2721,-0.0274],[109.2811,-0.0171],[109.2854,-0.0169],[109.2869,-0.009],[109.2871,0.0016],[109.2763,0.0048],[109.2641,0.0105],[109.255,0.0121],[109.2409,0.0163],[109.2218,0.0173],[109.2006,0.0262],[109.1963,0.0272],[109.1812,0.0333],[109.171,0.0338],[109.1687,0.0258],[109.1678,0.0086],[109.1646,-0.0104],[109.1618,-0.0201],[109.1591,-0.0365],[109.1596,-0.0447],[109.1664,-0.0506],[109.1775,-0.064],[109.1757,-0.0719],[109.18,-0.0826],[109.1849,-0.0857],[109.1877,-0.091],[109.1822,-0.0976],[109.1822,-0.1072],[109.1839,-0.1178],[109.1889,-0.1277],[109.1896,-0.1406],[109.1839,-0.1604],[109.1837,-0.1822],[109.1814,-0.1909],[109.1833,-0.2],[109.1887,-0.2064],[109.194,-0.2105],[109.2136,-0.2229],[109.2165,-0.2261],[109.2226,-0.2378],[109.2293,-0.2449],[109.2561,-0.2635],[109.2612,-0.264],[109.2693,-0.267],[109.2755,-0.2736],[109.281,-0.2772],[109.2893,-0.2787],[109.289,-0.2826],[109.2833,-0.2816],[109.2756,-0.2777],[109.2649,-0.2685],[109.2513,-0.2648],[109.2245,-0.2482],[109.2181,-0.241],[109.2129,-0.2302],[109.2073,-0.2245],[109.1985,-0.2206],[109.1841,-0.2248],[109.1761,-0.2261],[109.1738,-0.2309],[109.1653,-0.2302],[109.1593,-0.2312],[109.155,-0.2338],[109.1465,-0.2345],[109.1372,-0.2364],[109.1312,-0.24],[109.1238,-0.2532],[109.118,-0.2595],[109.1107,-0.2651],[109.1042,-0.2673],[109.097,-0.2718],[109.0897,-0.2746],[109.0872,-0.2839],[109.0906,-0.2906],[109.1001,-0.2985],[109.1051,-0.3063],[109.1073,-0.3193],[109.1114,-0.3237],[109.1139,-0.3305],[109.1151,-0.3436],[109.1281,-0.3497],[109.1493,-0.3578],[109.1593,-0.3686],[109.142,-0.3628],[109.125,-0.3616],[109.1188,-0.3591],[109.1098,-0.3528],[109.1043,-0.3447],[109.1,-0.3478],[109.0978,-0.3564],[109.098,-0.3611],[109.1042,-0.385],[109.1047,-0.39],[109.1077,-0.3975],[109.1131,-0.4219],[109.1159,-0.4424],[109.1142,-0.4454],[109.1125,-0.4609],[109.1123,-0.4867],[109.1134,-0.4995],[109.1164,-0.5141],[109.123,-0.5311],[109.1271,-0.5393],[109.1425,-0.5627],[109.1519,-0.5678],[109.1589,-0.5733],[109.1695,-0.5738],[109.1896,-0.5681],[109.1935,-0.5643],[109.1916,-0.5594],[109.1867,-0.5542],[109.1903,-0.5519],[109.2033,-0.5533],[109.2159,-0.5613],[109.2247,-0.571],[109.2275,-0.5724],[109.2246,-0.5834],[109.2272,-0.5893],[109.2381,-0.5953],[109.2444,-0.5971],[109.2514,-0.605],[109.2564,-0.6036],[109.2589,-0.5992],[109.2631,-0.601],[109.2685,-0.5991],[109.2853,-0.5974],[109.2943,-0.5919],[109.3023,-0.5921],[109.3095,-0.5943],[109.3151,-0.5942],[109.3239,-0.588],[109.3224,-0.5848],[109.3249,-0.5725],[109.3339,-0.5719],[109.3347,-0.5748],[109.3312,-0.579],[109.3246,-0.5838],[109.3296,-0.5885],[109.3391,-0.5897],[109.3445,-0.5887],[109.3512,-0.5846],[109.3638,-0.5836],[109.3742,-0.5846],[109.3813,-0.5903],[109.3816,-0.5951],[109.3889,-0.609],[109.3955,-0.614],[109.4023,-0.6232],[109.4132,-0.6305],[109.4184,-0.6313],[109.4306,-0.6284],[109.4455,-0.6262],[109.4532,-0.6225],[109.4622,-0.6252],[109.4729,-0.6172],[109.4812,-0.6254],[109.4848,-0.6259],[109.4914,-0.6237],[109.495,-0.6244],[109.5034,-0.6362],[109.5119,-0.6358],[109.5174,-0.6424],[109.5243,-0.6373],[109.5278,-0.638],[109.5291,-0.6438],[109.5429,-0.6446],[109.5459,-0.6516],[109.5539,-0.6503],[109.5584,-0.6537],[109.5623,-0.6503],[109.5705,-0.6512],[109.5747,-0.6499],[109.5775,-0.6526],[109.5837,-0.6505],[109.5862,-0.6527],[109.5875,-0.6629],[109.5839,-0.6788],[109.5878,-0.6845],[109.5886,-0.6902],[109.596,-0.6936],[109.6009,-0.6915],[109.6073,-0.6851],[109.6142,-0.683],[109.6176,-0.6848],[109.6194,-0.6896],[109.6232,-0.6884],[109.6323,-0.6889],[109.64,-0.6841],[109.6464,-0.6836],[109.6544,-0.6717],[109.658,-0.6721],[109.6599,-0.6788],[109.6676,-0.6831],[109.6698,-0.69],[109.6755,-0.6962],[109.6684,-0.7008],[109.6805,-0.7018],[109.688,-0.7059],[109.6888,-0.7121],[109.6968,-0.7161],[109.6947,-0.724],[109.685,-0.7278],[109.6773,-0.7371],[109.6734,-0.7388],[109.6764,-0.7436],[109.6713,-0.7461],[109.6716,-0.7518],[109.6696,-0.7546],[109.6603,-0.7501],[109.6471,-0.7504],[109.6387,-0.7519],[109.6335,-0.7507],[109.6315,-0.7557],[109.6336,-0.7618],[109.6347,-0.7753],[109.6341,-0.7808],[109.6374,-0.7847],[109.6379,-0.7888],[109.6356,-0.796],[109.6435,-0.7985],[109.6513,-0.8033],[109.6618,-0.8058],[109.665,-0.8092],[109.6673,-0.8188],[109.6756,-0.8266],[109.6805,-0.8297],[109.6918,-0.8233],[109.7136,-0.828],[109.7211,-0.8486],[109.7202,-0.8563],[109.7163,-0.8624],[109.7167,-0.8667],[109.7228,-0.8708],[109.7266,-0.8705],[109.7311,-0.863],[109.7372,-0.8594],[109.7425,-0.8598],[109.7474,-0.8629],[109.7507,-0.8684],[109.7506,-0.875],[109.7463,-0.8789],[109.7404,-0.8804],[109.7404,-0.8854],[109.7503,-0.894],[109.7543,-0.8952],[109.7568,-0.8895],[109.7596,-0.8878],[109.7717,-0.8855],[109.7779,-0.8766],[109.7803,-0.8751],[109.797,-0.8716],[109.8032,-0.8673],[109.8017,-0.8619],[109.7949,-0.8557],[109.7963,-0.8466],[109.8005,-0.8423],[109.8119,-0.8418],[109.8178,-0.8403],[109.8249,-0.8328],[109.8282,-0.8317],[109.8405,-0.8385],[109.845,-0.8372],[109.8536,-0.8241],[109.8602,-0.8243],[109.8643,-0.8301],[109.869,-0.8295],[109.8769,-0.8249],[109.8839,-0.8232],[109.8916,-0.823],[109.8941,-0.8204],[109.8926,-0.8081],[109.893,-0.8037],[109.8959,-0.8007],[109.907,-0.7991],[109.9155,-0.7897],[109.9263,-0.7855],[109.9321,-0.7811],[109.931,-0.7711],[109.9397,-0.7573],[109.9323,-0.7523],[109.9326,-0.7483],[109.9377,-0.7449],[109.9409,-0.7376],[109.9411,-0.7299],[109.9337,-0.7195],[109.9118,-0.7283],[109.9059,-0.7315],[109.8994,-0.7323],[109.8887,-0.7268],[109.8799,-0.7167],[109.8791,-0.711],[109.885,-0.6997],[109.8843,-0.6915],[109.8804,-0.685],[109.8687,-0.6723],[109.8615,-0.6599],[109.8543,-0.6572],[109.8463,-0.659],[109.8412,-0.666],[109.8406,-0.6726],[109.8385,-0.6754],[109.828,-0.6728],[109.8236,-0.6732],[109.8219,-0.6805],[109.8185,-0.6822],[109.8133,-0.6802],[109.8107,-0.671],[109.8146,-0.6429],[109.8181,-0.6386],[109.8264,-0.6318],[109.8448,-0.621],[109.86,-0.6107],[109.8635,-0.6059],[109.8668,-0.596],[109.8702,-0.592],[109.881,-0.5864],[109.882,-0.5772],[109.8791,-0.5685],[109.88,-0.5612],[109.887,-0.5511],[109.9187,-0.531],[109.9241,-0.5237],[109.9362,-0.5152],[109.9431,-0.5042],[109.9474,-0.4992],[109.957,-0.4967],[109.9644,-0.4965],[109.9587,-0.4863],[109.9614,-0.4836],[109.9714,-0.4786],[109.9729,-0.4754],[109.973,-0.4673],[109.9702,-0.4574],[109.9641,-0.4512],[109.9537,-0.4496],[109.9493,-0.4478],[109.946,-0.4428],[109.953,-0.4396],[109.9653,-0.4446],[109.9722,-0.4408],[109.9717,-0.4331],[109.9671,-0.4292],[109.9534,-0.4254],[109.9472,-0.4215],[109.94,-0.4199],[109.9261,-0.4124],[109.9225,-0.4081],[109.9203,-0.3982],[109.9206,-0.3646],[109.9225,-0.3569],[109.9301,-0.3523],[109.9385,-0.3529],[109.946,-0.3503],[109.9484,-0.3465],[109.9464,-0.3403],[109.9334,-0.3284],[109.9306,-0.3186],[109.9337,-0.313],[109.9395,-0.3085],[109.9503,-0.3024],[109.9568,-0.2926],[109.9644,-0.2847],[109.9657,-0.2814],[109.9648,-0.2741],[109.9601,-0.2667],[109.9515,-0.2616],[109.9478,-0.2555],[109.9498,-0.2449],[109.9476,-0.2376],[109.9425,-0.2281],[109.9403,-0.2139],[109.9418,-0.1981],[109.9416,-0.1828],[109.9381,-0.163],[109.938,-0.1516],[109.9389,-0.1434],[109.929,-0.1497],[109.9192,-0.1519],[109.9147,-0.15],[109.9202,-0.1453],[109.9055,-0.1361],[109.9012,-0.1292],[109.9004,-0.1199],[109.9026,-0.1148],[109.9037,-0.1069],[109.895,-0.1032],[109.8904,-0.0967],[109.8764,-0.083],[109.8745,-0.0788],[109.8734,-0.0707],[109.8643,-0.0637],[109.8602,-0.0567],[109.8499,-0.0489],[109.8465,-0.0399],[109.8418,0],[109.8347,0.0192],[109.8381,0.0253],[109.8477,0.0259],[109.855,0.0248],[109.8641,0.0384],[109.8599,0.0465],[109.8608,0.0512],[109.8595,0.0593],[109.8592,0.0691],[109.8608,0.0759],[109.8692,0.0859],[109.8441,0.0904],[109.8276,0.0904],[109.8157,0.0853],[109.8108,0.0854],[109.8073,0.0878],[109.7968,0.0901],[109.7882,0.0871],[109.7833,0.0872],[109.7729,0.0774],[109.7669,0.0773],[109.7594,0.0861],[109.7517,0.0924],[109.7484,0.0917],[109.7466,0.0852],[109.7406,0.0831],[109.729,0.0765],[109.7249,0.0778],[109.7119,0.0734],[109.7024,0.0756],[109.6947,0.0736],[109.6904,0.0671],[109.6845,0.0644],[109.6756,0.0662],[109.6741,0.0613],[109.6652,0.062],[109.6616,0.0665],[109.6587,0.0634],[109.6594,0.0594],[109.6562,0.0565],[109.6562,0.0511],[109.665,0.0438],[109.6633,0.0414],[109.6576,0.0429],[109.6522,0.0513],[109.6491,0.0496],[109.6502,0.0438],[109.6573,0.0392],[109.6529,0.0363],[109.644,0.0397],[109.6426,0.0441],[109.6459,0.0507],[109.6388,0.0515],[109.6298,0.0479],[109.6292,0.0458],[109.6359,0.0413],[109.6357,0.0341],[109.6306,0.0367],[109.6268,0.0358],[109.6272,0.0258],[109.6233,0.0236],[109.6164,0.0253],[109.6123,0.0196],[109.6075,0.0313],[109.6037,0.0356],[109.5995,0.0295],[109.5924,0.0255],[109.5937,0.0338],[109.5921,0.0396],[109.586,0.0406],[109.5836,0.035],[109.5801,0.0348],[109.5724,0.0386],[109.5675,0.0338],[109.5692,0.031],[109.5757,0.0293],[109.5806,0.022],[109.5841,0.0277],[109.5884,0.0243],[109.5891,0.0131],[109.5862,0.0092],[109.5808,0.0154],[109.5774,0.0144],[109.5703,0.0065],[109.5811,-0.0009],[109.5809,-0.0042],[109.5676,-0.0028],[109.5653,-0.0095],[109.5612,-0.0126],[109.558,-0.0034],[109.5625,-0.0001],[109.5568,0.0023],[109.5519,-0.0011],[109.5459,0.0009],[109.5434,-0.0025],[109.5496,-0.0087],[109.5465,-0.0116],[109.5311,-0.0166],[109.5255,-0.0243],[109.5134,-0.0245],[109.5019,-0.0308],[109.5008,-0.024],[109.5094,-0.0127],[109.5104,-0.0073],[109.5075,0.0032],[109.5097,0.0129],[109.5144,0.0256],[109.5216,0.0356],[109.5214,0.0415],[109.5164,0.0482],[109.5074,0.0641],[109.5019,0.0685],[109.5005,0.0757],[109.5003,0.0916],[109.5033,0.0943],[109.5008,0.0989],[109.5079,0.1131],[109.5113,0.117],[109.5079,0.1257],[109.5103,0.1277],[109.5062,0.1365],[109.508,0.1411],[109.506,0.1459],[109.5015,0.1451],[109.4998,0.1566],[109.4924,0.1645],[109.4889,0.1646],[109.487,0.1756],[109.49,0.1776],[109.489,0.192],[109.493,0.2014],[109.4893,0.2064],[109.4881,0.2168],[109.4959,0.2221],[109.4944,0.2296],[109.4853,0.2345],[109.4739,0.2467],[109.4578,0.2495],[109.447,0.2548],[109.4324,0.2563],[109.4056,0.2563],[109.3905,0.2543],[109.3836,0.2551],[109.3793,0.2521],[109.3639,0.2337],[109.3593,0.2243],[109.3546,0.218],[109.3514,0.2066],[109.3512,0.1629],[109.3508,0.132],[109.3579,0.1224],[109.3592,0.1181],[109.3574,0.1019],[109.359,0.0891],[109.3612,0.0836],[109.3661,0.0786],[109.3714,0.0685],[109.3693,0.0616],[109.3642,0.0544],[109.3642,0.0444],[109.3685,0.036],[109.3708,0.0211],[109.3695,0.0096],[109.3732,-0.0005],[109.3762,-0.0026],[109.3791,-0.014],[109.3766,-0.0215],[109.382,-0.0226],[109.3836,-0.0265],[109.3789,-0.0321],[109.3761,-0.0313],[109.371,-0.0361],[109.3803,-0.0463],[109.3838,-0.0525],[109.3732,-0.0616]]}},{"type":"Feature","properties":{"mhid":"1332:336","alt_name":"KOTA PONTIANAK","latitude":-0.08333,"longitude":109.36667,"sample_value":494},"geometry":{"type":"LineString","coordinates":[[109.3836,-0.0265],[109.3681,-0.0212],[109.363,-0.0209],[109.3455,-0.0237],[109.352,-0.0361],[109.365,-0.0502],[109.3732,-0.0616],[109.3838,-0.0525],[109.3803,-0.0463],[109.371,-0.0361],[109.3761,-0.0313],[109.3789,-0.0321],[109.3836,-0.0265]]}},{"type":"Feature","properties":{"mhid":"1332:336","alt_name":"KOTA PONTIANAK","latitude":-0.08333,"longitude":109.36667,"sample_value":494},"geometry":{"type":"LineString","coordinates":[[109.357,-0.0767],[109.366,-0.0602],[109.368,-0.0586],[109.3634,-0.0514],[109.3523,-0.0399],[109.3483,-0.0339],[109.3442,-0.0249],[109.3185,-0.0052],[109.3112,-0.0017],[109.3045,-0.0008],[109.2979,-0.002],[109.2871,0.0016],[109.2869,-0.009],[109.2854,-0.0169],[109.2811,-0.0171],[109.2721,-0.0274],[109.2823,-0.0435],[109.285,-0.0409],[109.3016,-0.0593],[109.3039,-0.0634],[109.3109,-0.0696],[109.307,-0.0771],[109.3139,-0.082],[109.3172,-0.0752],[109.3406,-0.0961],[109.3437,-0.0974],[109.3561,-0.0784],[109.357,-0.0767]]}},{"type":"Feature","properties":{"mhid":"1332:336","alt_name":"KOTA PONTIANAK","latitude":-0.08333,"longitude":109.36667,"sample_value":494},"geometry":{"type":"LineString","coordinates":[[109.3708,0.0211],[109.357,0.0259],[109.339,0.03],[109.3233,0.035],[109.3093,0.0381],[109.3103,0.0341],[109.3058,0.0333],[109.3057,0.0288],[109.2975,0.0298],[109.29,0.0085],[109.2963,0.0077],[109.301,0.0049],[109.3054,0.0048],[109.3199,0.0002],[109.3272,-0.0047],[109.3427,-0.0201],[109.3481,-0.0214],[109.3649,-0.0183],[109.3719,-0.0192],[109.3766,-0.0215],[109.3791,-0.014],[109.3762,-0.0026],[109.3732,-0.0005],[109.3695,0.0096],[109.3708,0.0211]]}},{"type":"Feature","properties":{"mhid":"1332:337","alt_name":"KOTA SINGKAWANG","latitude":0.90734,"longitude":109.00103,"sample_value":951},"geometry":{"type":"LineString","coordinates":[[109.1762,0.9648],[109.1729,0.9665],[109.1761,0.9746],[109.1714,0.9773],[109.1658,0.9773],[109.1664,0.9732],[109.1615,0.9727],[109.1598,0.977],[109.1493,0.9812],[109.1509,0.9931],[109.147,1.0024],[109.1475,1.0091],[109.1454,1.0114],[109.1372,1.0108],[109.1344,1.0121],[109.1303,1.0184],[109.1209,1.0111],[109.1083,1.012],[109.1072,1.005],[109.0979,1.0058],[109.0961,1.0041],[109.0983,0.9944],[109.0956,0.9912],[109.0886,0.9909],[109.0847,1.0004],[109.0796,0.9981],[109.0763,0.9929],[109.0669,0.9921],[109.0627,0.9896],[109.0222,0.9905],[108.9933,0.9891],[108.9788,0.9892],[108.9774,0.9698],[108.973,0.95],[108.9686,0.9365],[108.9618,0.9237],[108.9585,0.915],[108.9526,0.9044],[108.9411,0.8885],[108.934,0.8805],[108.9243,0.8722],[108.9113,0.8627],[108.9068,0.8654],[108.8993,0.8664],[108.8938,0.8709],[108.8907,0.8658],[108.8915,0.8581],[108.874,0.841],[108.8972,0.8336],[108.9067,0.8347],[108.9095,0.832],[108.915,0.8181],[108.9351,0.808],[108.9422,0.8126],[108.9484,0.8126],[108.9511,0.8101],[108.9613,0.8085],[108.9661,0.8001],[108.9663,0.7866],[108.9705,0.7768],[108.9803,0.775],[108.9954,0.7669],[109.0037,0.7643],[109.0132,0.7641],[109.0223,0.7661],[109.0314,0.7716],[109.0355,0.7787],[109.0379,0.7958],[109.0379,0.8071],[109.0405,0.819],[109.0409,0.8315],[109.0461,0.8393],[109.0522,0.8461],[109.0585,0.8509],[109.0668,0.853],[109.0927,0.862],[109.1167,0.8751],[109.122,0.8806],[109.127,0.8835],[109.1324,0.884],[109.1367,0.8894],[109.1417,0.8987],[109.1471,0.9023],[109.1574,0.9031],[109.1588,0.9125],[109.1604,0.9156],[109.1609,0.9286],[109.1603,0.9343],[109.1627,0.938],[109.1606,0.942],[109.1654,0.9468],[109.1667,0.954],[109.17,0.96],[109.1762,0.9648]]}},{"type":"Feature","properties":{"mhid":"1332:338","alt_name":"KABUPATEN KOTAWARINGIN BARAT","latitude":-2.4,"longitude":111.73333,"sample_value":463},"geometry":{"type":"LineString","coordinates":[[111.8187,-3.534],[111.8792,-3.4089],[111.8988,-3.3827],[111.9329,-3.3121],[111.9687,-3.2187],[111.9947,-3.1318],[112.0256,-3.058],[112.0468,-3.0072],[112.0549,-2.9301],[112.0548,-2.8888],[112.0527,-2.8894],[112.0269,-2.8482],[111.9894,-2.8094],[111.9777,-2.7859],[111.9706,-2.7376],[111.9846,-2.7081],[111.9834,-2.6893],[111.9963,-2.6575],[112.0045,-2.621],[112.0079,-2.5821],[112.0149,-2.5292],[112.0441,-2.4761],[112.0558,-2.4338],[112.0593,-2.409],[112.0441,-2.3655],[112.044,-2.3502],[112.0247,-2.3005],[112.0013,-2.2977],[111.9906,-2.2893],[111.9853,-2.2718],[111.9833,-2.2554],[111.9832,-2.2393],[111.9848,-2.2207],[111.9887,-2.1922],[111.9918,-2.1799],[111.9988,-2.1651],[112.0087,-2.1403],[112.0096,-2.1297],[112.0207,-2.0952],[112.045,-2.0539],[112.0622,-2.0311],[112.0786,-2.0276],[112.0811,-2.0282],[112.0905,-2.0015],[112.0736,-1.9649],[112.0575,-1.9502],[112.0317,-1.9366],[111.9908,-1.8982],[111.9737,-1.8661],[111.968,-1.8586],[111.9631,-1.8496],[111.9587,-1.837],[111.9549,-1.8222],[111.9534,-1.809],[111.956,-1.7965],[111.9629,-1.7769],[111.9614,-1.7631],[111.9581,-1.7467],[111.9547,-1.7334],[111.947,-1.7334],[111.9055,-1.7175],[111.9014,-1.711],[111.8987,-1.6939],[111.8808,-1.675],[111.8871,-1.6642],[111.888,-1.6579],[111.8835,-1.6507],[111.8853,-1.6363],[111.8781,-1.6228],[111.862,-1.6165],[111.8584,-1.6057],[111.8531,-1.5958],[111.8361,-1.5949],[111.8075,-1.5707],[111.7969,-1.5628],[111.8089,-1.583],[111.8218,-1.7394],[111.8244,-1.7763],[111.8199,-1.8736],[111.7988,-1.9503],[111.7912,-1.9716],[111.7451,-2.067],[111.7118,-2.1282],[111.6913,-2.1578],[111.6676,-2.1772],[111.6294,-2.1932],[111.6068,-2.2347],[111.6018,-2.2555],[111.6034,-2.2733],[111.6025,-2.3057],[111.5823,-2.3142],[111.5601,-2.3197],[111.541,-2.3153],[111.5184,-2.3074],[111.4992,-2.3119],[111.4772,-2.31],[111.4383,-2.3133],[111.4076,-2.301],[111.3835,-2.2829],[111.3819,-2.2808],[111.3684,-2.2633],[111.3416,-2.2755],[111.3555,-2.3067],[111.3384,-2.307],[111.3171,-2.3051],[111.3166,-2.3324],[111.3065,-2.3327],[111.3054,-2.3359],[111.2745,-2.3362],[111.2718,-2.3431],[111.266,-2.347],[111.2648,-2.3725],[111.2837,-2.3727],[111.2846,-2.4267],[111.2845,-2.4466],[111.2798,-2.5013],[111.2789,-2.5245],[111.2797,-2.5383],[111.279,-2.5423],[111.2816,-2.5547],[111.2889,-2.5805],[111.2943,-2.5904],[111.2997,-2.5942],[111.3021,-2.6141],[111.3017,-2.6176],[111.344,-2.626],[111.3772,-2.6455],[111.3975,-2.6485],[111.4002,-2.653],[111.3861,-2.7096],[111.3826,-2.7346],[111.3819,-2.7547],[111.3825,-2.7593],[111.3795,-2.7916],[111.3827,-2.817],[111.3801,-2.877],[111.3619,-2.9086],[111.3716,-2.9122],[111.3859,-2.92],[111.3895,-2.92],[111.4032,-2.9113],[111.4101,-2.9176],[111.4238,-2.9166],[111.4354,-2.9205],[111.4502,-2.9233],[111.4554,-2.9253],[111.4659,-2.9331],[111.4879,-2.9441],[111.4962,-2.9519],[111.503,-2.9626],[111.5128,-2.9702],[111.5254,-2.9781],[111.5355,-2.9915],[111.5415,-3.0011],[111.5442,-3.0075],[111.5489,-3.0231],[111.5523,-3.0149],[111.559,-3.0078],[111.5732,-2.9999],[111.5886,-2.9906],[111.5975,-2.9893],[111.6019,-2.9844],[111.6134,-2.9758],[111.6191,-2.9692],[111.6417,-2.9553],[111.6464,-2.954],[111.6641,-2.9462],[111.6695,-2.9451],[111.6855,-2.9442],[111.6912,-2.9418],[111.6978,-2.9257],[111.6978,-2.9197],[111.6869,-2.9197],[111.6803,-2.9153],[111.6776,-2.9099],[111.6728,-2.9046],[111.6697,-2.8986],[111.6696,-2.8942],[111.674,-2.8853],[111.6822,-2.8739],[111.6914,-2.8657],[111.7131,-2.8494],[111.7177,-2.8498],[111.7239,-2.8562],[111.7313,-2.856],[111.7264,-2.864],[111.7267,-2.8677],[111.7352,-2.8738],[111.7434,-2.8811],[111.7502,-2.8885],[111.7542,-2.8947],[111.76,-2.9096],[111.7634,-2.9219],[111.7687,-2.934],[111.7786,-2.9484],[111.7987,-2.9731],[111.8059,-2.9837],[111.8123,-2.9965],[111.8162,-3.0102],[111.8154,-3.0161],[111.8223,-3.0312],[111.8218,-3.0332],[111.8243,-3.05],[111.8221,-3.0675],[111.8197,-3.071],[111.8203,-3.0843],[111.8187,-3.0977],[111.8099,-3.1195],[111.8074,-3.1365],[111.8073,-3.1532],[111.8027,-3.1618],[111.8013,-3.1765],[111.798,-3.1905],[111.7974,-3.2008],[111.814,-3.2757],[111.8196,-3.3425],[111.8197,-3.3662],[111.819,-3.3853],[111.8104,-3.4324],[111.8052,-3.4504],[111.7968,-3.4703],[111.7773,-3.5015],[111.7728,-3.5076],[111.7736,-3.512],[111.7816,-3.5187],[111.7932,-3.5258],[111.8049,-3.5306],[111.8187,-3.534]]}},{"type":"Feature","properties":{"mhid":"1332:339","alt_name":"KABUPATEN KOTAWARINGIN TIMUR","latitude":-2.08333,"longitude":112.75,"sample_value":503},"geometry":{"type":"LineString","coordinates":[[113.157,-3.0639],[113.1671,-3.0182],[113.1399,-2.9318],[113.1023,-2.8133],[113.098,-2.8003],[113.0805,-2.7166],[113.0821,-2.7087],[113.0911,-2.6733],[113.1297,-2.6182],[113.1376,-2.606],[113.2027,-2.4994],[113.2128,-2.4513],[113.2128,-2.4495],[113.1942,-2.3875],[113.1819,-2.3568],[113.1723,-2.3219],[113.1751,-2.29],[113.1763,-2.2884],[113.1907,-2.259],[113.1964,-2.2482],[113.2393,-2.2032],[113.2471,-2.1863],[113.2453,-2.1639],[113.2345,-2.1452],[113.2298,-2.1229],[113.2313,-2.1027],[113.2438,-2.0853],[113.2621,-2.072],[113.282,-2.0455],[113.2829,-2.0204],[113.2844,-1.9987],[113.2799,-1.9668],[113.2718,-1.9515],[113.2532,-1.9404],[113.2245,-1.9366],[113.1963,-1.9263],[113.191,-1.916],[113.1919,-1.9016],[113.2,-1.8882],[113.2006,-1.8852],[113.2011,-1.8628],[113.1957,-1.8559],[113.186,-1.853],[113.1589,-1.8382],[113.135,-1.8211],[113.0972,-1.7947],[113.0267,-1.7684],[112.9813,-1.7052],[112.9312,-1.7044],[112.9313,-1.677],[112.9285,-1.6766],[112.9287,-1.6593],[112.8638,-1.5935],[112.8547,-1.5092],[112.8448,-1.4562],[112.8412,-1.4325],[112.8211,-1.3896],[112.802,-1.3615],[112.7443,-1.3027],[112.6681,-1.2552],[112.647,-1.2297],[112.597,-1.2071],[112.5582,-1.1983],[112.5231,-1.1945],[112.4572,-1.2047],[112.3932,-1.2146],[112.3784,-1.223],[112.3472,-1.2418],[112.3331,-1.2549],[112.3161,-1.2737],[112.2895,-1.2859],[112.2753,-1.2875],[112.2137,-1.2962],[112.1404,-1.3104],[112.1275,-1.3131],[112.132,-1.3655],[112.1326,-1.4119],[112.1263,-1.4425],[112.1254,-1.4522],[112.1122,-1.495],[112.0787,-1.5438],[112.0709,-1.5698],[112.0727,-1.5987],[112.0895,-1.6439],[112.1411,-1.6953],[112.1843,-1.748],[112.1923,-1.758],[112.1981,-1.7703],[112.2018,-1.7862],[112.2149,-1.7946],[112.2316,-1.8062],[112.2345,-1.8112],[112.2337,-1.821],[112.2389,-1.8266],[112.2473,-1.8281],[112.2512,-1.8312],[112.2557,-1.851],[112.2535,-1.8556],[112.2607,-1.8615],[112.261,-1.8664],[112.2572,-1.8732],[112.261,-1.8809],[112.2694,-1.8859],[112.2759,-1.9168],[112.285,-1.9746],[112.2854,-1.9934],[112.2841,-2.0688],[112.2839,-2.0953],[112.3211,-2.1624],[112.322,-2.1662],[112.327,-2.1665],[112.327,-2.1705],[112.3335,-2.1786],[112.3348,-2.1821],[112.342,-2.1816],[112.3504,-2.1877],[112.3534,-2.188],[112.3559,-2.193],[112.3733,-2.1971],[112.3734,-2.2671],[112.4082,-2.2674],[112.4083,-2.3283],[112.4291,-2.328],[112.4353,-2.3568],[112.4348,-2.3909],[112.4524,-2.3982],[112.4592,-2.4047],[112.4702,-2.4991],[112.4741,-2.5528],[112.4807,-2.5811],[112.5109,-2.6159],[112.5781,-2.658],[112.6075,-2.683],[112.6553,-2.7061],[112.6881,-2.7215],[112.7331,-2.7482],[112.7586,-2.7646],[112.782,-2.7803],[112.7883,-2.7837],[112.8706,-2.8306],[112.8476,-2.937],[112.8212,-3.0123],[112.8101,-3.0428],[112.8331,-3.1373],[112.8407,-3.1655],[112.8531,-3.2033],[112.8737,-3.2649],[112.8785,-3.2618],[112.9106,-3.2455],[112.9219,-3.2387],[112.9417,-3.2231],[112.9511,-3.2144],[112.9657,-3.202],[112.9752,-3.1922],[112.9889,-3.1796],[112.9984,-3.1699],[113.0434,-3.1281],[113.0403,-3.1252],[113.0346,-3.1312],[113.0357,-3.1335],[113.0185,-3.1492],[113.0067,-3.1549],[112.9989,-3.1565],[112.9841,-3.1547],[112.9676,-3.1471],[112.9524,-3.1368],[112.9446,-3.1272],[112.9416,-3.1148],[112.9451,-3.1033],[112.9607,-3.0808],[112.9707,-3.0688],[112.9817,-3.0522],[112.9841,-3.0473],[112.9925,-3.0469],[113.0031,-3.041],[113.0118,-3.0313],[113.0177,-3.0219],[113.0195,-3.0172],[113.0257,-2.9937],[113.0316,-2.9771],[113.0324,-2.9725],[113.0451,-2.9707],[113.05,-2.9825],[113.0529,-2.9841],[113.0555,-2.9897],[113.0569,-3.0056],[113.0625,-3.0121],[113.0771,-3.0197],[113.084,-3.024],[113.088,-3.034],[113.0952,-3.0396],[113.1133,-3.0479],[113.1366,-3.0591],[113.1445,-3.0594],[113.157,-3.0639]]}},{"type":"Feature","properties":{"mhid":"1332:340","alt_name":"KABUPATEN KAPUAS","latitude":-2.01667,"longitude":114.38333,"sample_value":678},"geometry":{"type":"LineString","coordinates":[[114.5694,-0.8576],[114.5082,-0.8481],[114.4591,-0.8339],[114.4466,-0.8331],[114.4244,-0.8326],[114.4059,-0.8331],[114.3853,-0.8367],[114.3433,-0.8455],[114.323,-0.8512],[114.3035,-0.8557],[114.2704,-0.8649],[114.2464,-0.8666],[114.2283,-0.8592],[114.2178,-0.8469],[114.2003,-0.8275],[114.1842,-0.8118],[114.1565,-0.7989],[114.134,-0.7827],[114.1238,-0.7584],[114.1213,-0.7457],[114.1193,-0.7291],[114.113,-0.7055],[114.1,-0.6672],[114.0803,-0.619],[114.0752,-0.6097],[114.0692,-0.5861],[114.0638,-0.552],[114.0609,-0.5409],[114.0521,-0.5221],[114.029,-0.4839],[114.0121,-0.4162],[113.9915,-0.381],[113.9734,-0.3751],[113.9429,-0.3861],[113.9276,-0.4055],[113.9289,-0.4584],[113.9206,-0.4661],[113.9071,-0.4655],[113.902,-0.4687],[113.8892,-0.4635],[113.8847,-0.4584],[113.8264,-0.4526],[113.8161,-0.4481],[113.7962,-0.4332],[113.7757,-0.4307],[113.7719,-0.4378],[113.7776,-0.4565],[113.7757,-0.4726],[113.761,-0.4836],[113.7559,-0.5462],[113.7417,-0.5871],[113.7372,-0.6013],[113.7195,-0.6205],[113.7017,-0.6403],[113.6843,-0.6617],[113.671,-0.6792],[113.6684,-0.685],[113.66,-0.7087],[113.6504,-0.738],[113.6609,-0.7554],[113.679,-0.7736],[113.6856,-0.7903],[113.6961,-0.8184],[113.7056,-0.8427],[113.7228,-0.888],[113.7365,-0.9058],[113.7631,-0.9377],[113.7795,-0.9458],[113.819,-0.9639],[113.8506,-0.9775],[113.8646,-0.9821],[113.9344,-1.003],[113.9728,-1.0448],[113.9771,-1.0638],[113.9749,-1.0868],[113.969,-1.1118],[113.9709,-1.122],[113.9796,-1.1571],[113.9893,-1.1946],[113.9973,-1.2299],[113.9962,-1.259],[113.9948,-1.2829],[113.9953,-1.3067],[113.9963,-1.3226],[113.9971,-1.3625],[114.0023,-1.4112],[114.0083,-1.475],[113.9937,-1.5081],[113.9693,-1.5416],[113.9833,-1.5565],[113.9918,-1.5794],[113.991,-1.615],[113.9904,-1.6209],[113.9841,-1.649],[113.9713,-1.6726],[113.9814,-1.6945],[113.9822,-1.711],[113.9834,-1.7504],[113.9892,-1.7972],[113.9985,-1.8327],[114.0159,-1.8694],[114.0209,-1.9033],[114.0326,-1.9243],[114.0492,-1.9405],[114.0727,-1.9657],[114.0985,-1.979],[114.1166,-2.0002],[114.1335,-2.0404],[114.1366,-2.0622],[114.1362,-2.0702],[114.1298,-2.1013],[114.1258,-2.157],[114.127,-2.1713],[114.1338,-2.2188],[114.146,-2.231],[114.1613,-2.2476],[114.2006,-2.2617],[114.2156,-2.2682],[114.252,-2.2939],[114.2595,-2.3063],[114.276,-2.3316],[114.2918,-2.4124],[114.2961,-2.4324],[114.3053,-2.469],[114.3104,-2.492],[114.3166,-2.517],[114.3178,-2.5236],[114.3313,-2.6373],[114.3322,-2.6608],[114.3331,-2.6686],[114.3339,-2.6927],[114.3237,-2.728],[114.303,-2.776],[114.3009,-2.7816],[114.2872,-2.7926],[114.2837,-2.8149],[114.2911,-2.8205],[114.2931,-2.8258],[114.2915,-2.8339],[114.2852,-2.8423],[114.2816,-2.8489],[114.2652,-2.9112],[114.2232,-2.9531],[114.2837,-3.0433],[114.2591,-3.1065],[114.2595,-3.1067],[114.2432,-3.1486],[114.2319,-3.1808],[114.2266,-3.1941],[114.2038,-3.1875],[114.1918,-3.2157],[114.1755,-3.2734],[114.1329,-3.3803],[114.149,-3.3825],[114.1651,-3.387],[114.1725,-3.3912],[114.1779,-3.3928],[114.1836,-3.3923],[114.1935,-3.3884],[114.2088,-3.3804],[114.2227,-3.3748],[114.2325,-3.3728],[114.243,-3.3682],[114.2454,-3.3649],[114.263,-3.3737],[114.2594,-3.3827],[114.2505,-3.3874],[114.249,-3.3915],[114.2505,-3.3961],[114.2583,-3.4037],[114.2694,-3.411],[114.2754,-3.416],[114.285,-3.4198],[114.2837,-3.4232],[114.29,-3.4325],[114.3011,-3.4421],[114.3201,-3.4555],[114.3283,-3.4576],[114.3389,-3.4563],[114.3489,-3.4618],[114.3506,-3.4513],[114.3536,-3.4426],[114.3492,-3.4408],[114.3463,-3.4317],[114.3476,-3.426],[114.3473,-3.4176],[114.3534,-3.4146],[114.3576,-3.4027],[114.3589,-3.3865],[114.3589,-3.3863],[114.3556,-3.3775],[114.3505,-3.3688],[114.3459,-3.3527],[114.3542,-3.3421],[114.3685,-3.326],[114.3716,-3.3204],[114.3719,-3.3075],[114.3798,-3.3003],[114.3837,-3.2674],[114.4028,-3.252],[114.4066,-3.2573],[114.4211,-3.2477],[114.4368,-3.2181],[114.4502,-3.2099],[114.4356,-3.188],[114.4294,-3.1743],[114.4454,-3.1621],[114.4538,-3.15],[114.4563,-3.143],[114.478,-3.1251],[114.4876,-3.1165],[114.5159,-3.0935],[114.5458,-3.0678],[114.4962,-3.015],[114.5037,-3.0025],[114.5056,-3.0014],[114.5067,-2.9976],[114.5359,-2.9605],[114.5385,-2.9573],[114.5462,-2.9474],[114.5245,-2.9267],[114.5417,-2.9237],[114.5615,-2.8799],[114.5679,-2.8665],[114.6073,-2.8874],[114.6176,-2.8833],[114.5992,-2.8166],[114.5991,-2.8151],[114.635,-2.8053],[114.6499,-2.804],[114.6615,-2.8022],[114.6664,-2.7991],[114.6738,-2.7903],[114.6789,-2.7817],[114.6798,-2.7736],[114.6784,-2.7679],[114.6731,-2.7611],[114.6712,-2.7521],[114.6732,-2.7465],[114.6778,-2.7395],[114.684,-2.7364],[114.6911,-2.7354],[114.7038,-2.7395],[114.7154,-2.7406],[114.7222,-2.739],[114.7334,-2.7342],[114.7514,-2.7241],[114.7605,-2.7211],[114.7631,-2.7166],[114.7684,-2.7021],[114.7742,-2.6936],[114.7847,-2.6852],[114.7864,-2.6835],[114.7907,-2.67],[114.7934,-2.6492],[114.7917,-2.6305],[114.792,-2.6244],[114.7593,-2.5985],[114.7324,-2.5827],[114.7137,-2.5722],[114.698,-2.5719],[114.7014,-2.5681],[114.7065,-2.5542],[114.7194,-2.5345],[114.7226,-2.5262],[114.7347,-2.5187],[114.738,-2.5148],[114.7414,-2.5022],[114.7447,-2.4987],[114.7519,-2.4973],[114.7557,-2.4944],[114.7565,-2.4869],[114.7483,-2.4818],[114.7397,-2.4872],[114.7377,-2.4848],[114.7368,-2.4734],[114.7378,-2.4707],[114.7224,-2.4644],[114.7027,-2.4798],[114.6553,-2.5585],[114.6506,-2.5587],[114.6176,-2.544],[114.6016,-2.5586],[114.5988,-2.5627],[114.5779,-2.5543],[114.5541,-2.5463],[114.5624,-2.5276],[114.5945,-2.4479],[114.6254,-2.3723],[114.6818,-2.2332],[114.6906,-2.2098],[114.7157,-2.1444],[114.7181,-2.115],[114.7174,-2.0976],[114.7126,-2.0715],[114.7057,-2.0398],[114.695,-2.0257],[114.6793,-2.0036],[114.6396,-1.9753],[114.6209,-1.9497],[114.6201,-1.941],[114.6165,-1.9152],[114.6179,-1.8923],[114.6318,-1.8276],[114.6359,-1.8126],[114.6373,-1.7884],[114.6195,-1.7392],[114.6011,-1.7058],[114.5993,-1.6783],[114.6146,-1.6439],[114.634,-1.6194],[114.6538,-1.5769],[114.6746,-1.5215],[114.6669,-1.4577],[114.6654,-1.4419],[114.6621,-1.4256],[114.6633,-1.4117],[114.6704,-1.3917],[114.6678,-1.3169],[114.6851,-1.2966],[114.6839,-1.2763],[114.7006,-1.2525],[114.7012,-1.2101],[114.7119,-1.1814],[114.7107,-1.1653],[114.7002,-1.1563],[114.694,-1.1475],[114.6786,-1.1388],[114.6593,-1.1358],[114.6275,-1.1358],[114.5734,-1.1426],[114.5406,-1.1377],[114.4991,-1.1114],[114.4803,-1.0863],[114.457,-1.0348],[114.459,-0.989],[114.4656,-0.9803],[114.5016,-0.9164],[114.5396,-0.886],[114.5694,-0.8576]]}},{"type":"Feature","properties":{"mhid":"1332:341","alt_name":"KABUPATEN BARITO SELATAN","latitude":-1.86667,"longitude":114.73333,"sample_value":144},"geometry":{"type":"LineString","coordinates":[[115.4757,-1.4161],[115.4723,-1.4132],[115.4671,-1.3866],[115.4594,-1.36],[115.4559,-1.3554],[115.4337,-1.34],[115.4121,-1.3293],[115.3151,-1.3359],[115.2559,-1.333],[115.237,-1.333],[115.2381,-1.3145],[115.2363,-1.3121],[115.1622,-1.3067],[115.1272,-1.3313],[115.1193,-1.311],[115.0968,-1.3036],[115.0855,-1.3059],[115.0524,-1.3075],[114.9898,-1.3196],[114.9561,-1.3356],[114.8761,-1.3582],[114.8522,-1.3599],[114.8342,-1.3419],[114.794,-1.3483],[114.7388,-1.3401],[114.6678,-1.3169],[114.6704,-1.3917],[114.6633,-1.4117],[114.6621,-1.4256],[114.6654,-1.4419],[114.6669,-1.4577],[114.6746,-1.5215],[114.6538,-1.5769],[114.634,-1.6194],[114.6146,-1.6439],[114.5993,-1.6783],[114.6011,-1.7058],[114.6195,-1.7392],[114.6373,-1.7884],[114.6359,-1.8126],[114.6318,-1.8276],[114.6179,-1.8923],[114.6165,-1.9152],[114.6201,-1.941],[114.6209,-1.9497],[114.6396,-1.9753],[114.6793,-2.0036],[114.695,-2.0257],[114.7057,-2.0398],[114.7126,-2.0715],[114.7174,-2.0976],[114.7181,-2.115],[114.7157,-2.1444],[114.6906,-2.2098],[114.6818,-2.2332],[114.6254,-2.3723],[114.5945,-2.4479],[114.5624,-2.5276],[114.5541,-2.5463],[114.5779,-2.5543],[114.5988,-2.5627],[114.6016,-2.5586],[114.6176,-2.544],[114.6506,-2.5587],[114.6553,-2.5585],[114.7027,-2.4798],[114.7224,-2.4644],[114.7378,-2.4707],[114.7368,-2.4734],[114.7377,-2.4848],[114.7397,-2.4872],[114.7483,-2.4818],[114.7565,-2.4869],[114.7557,-2.4944],[114.7519,-2.4973],[114.7447,-2.4987],[114.7414,-2.5022],[114.738,-2.5148],[114.7347,-2.5187],[114.7226,-2.5262],[114.7194,-2.5345],[114.7065,-2.5542],[114.7014,-2.5681],[114.698,-2.5719],[114.7137,-2.5722],[114.7324,-2.5827],[114.7593,-2.5985],[114.792,-2.6244],[114.7937,-2.6039],[114.7968,-2.5923],[114.8025,-2.583],[114.8066,-2.5791],[114.8273,-2.5664],[114.8371,-2.5586],[114.8425,-2.5499],[114.8465,-2.5396],[114.8528,-2.528],[114.8605,-2.5215],[114.8669,-2.5142],[114.8863,-2.5035],[114.8939,-2.4892],[114.8948,-2.4821],[114.9001,-2.4763],[114.9022,-2.4715],[114.9129,-2.4604],[114.9233,-2.4534],[114.9585,-2.4333],[114.9777,-2.4213],[114.9935,-2.4092],[115.0029,-2.4001],[115.0005,-2.3954],[114.9589,-2.3052],[114.9249,-2.2313],[114.9235,-2.2241],[114.9177,-2.2227],[114.9177,-2.2177],[114.9256,-2.2047],[114.9336,-2.1781],[114.9336,-2.1529],[114.9343,-2.1263],[114.9307,-2.1062],[114.9314,-2.0961],[114.9343,-2.0896],[114.9391,-2.0749],[114.9429,-2.0543],[114.9441,-2.034],[114.9457,-2.0205],[114.9497,-2.0054],[114.9588,-1.9776],[114.9628,-1.951],[114.9612,-1.9247],[114.9588,-1.9132],[114.9564,-1.8902],[114.9577,-1.8697],[114.9608,-1.8429],[114.9636,-1.8258],[114.9711,-1.7964],[114.9775,-1.7837],[114.9842,-1.7749],[114.991,-1.763],[114.9997,-1.7459],[115.0041,-1.7348],[115.0116,-1.7201],[115.0212,-1.7058],[115.0335,-1.6919],[115.0494,-1.684],[115.0593,-1.6828],[115.0732,-1.68],[115.0824,-1.6791],[115.1007,-1.6696],[115.1249,-1.6522],[115.1312,-1.6486],[115.1607,-1.6458],[115.1829,-1.6458],[115.2048,-1.647],[115.2155,-1.6454],[115.227,-1.6422],[115.2361,-1.6331],[115.2457,-1.6303],[115.2679,-1.6295],[115.2842,-1.6299],[115.3503,-1.6368],[115.3609,-1.6014],[115.3675,-1.5786],[115.3856,-1.5173],[115.3947,-1.4868],[115.4071,-1.448],[115.4136,-1.4246],[115.4224,-1.4254],[115.442,-1.4289],[115.4454,-1.4288],[115.455,-1.4234],[115.4757,-1.4161]]}},{"type":"Feature","properties":{"mhid":"1332:342","alt_name":"KABUPATEN BARITO UTARA","latitude":-0.98333,"longitude":115.1,"sample_value":873},"geometry":{"type":"LineString","coordinates":[[115.8032,-1.1163],[115.7965,-1.1121],[115.786,-1.1158],[115.7792,-1.1201],[115.7661,-1.134],[115.7587,-1.1361],[115.7536,-1.1314],[115.7489,-1.1226],[115.7466,-1.1131],[115.7461,-1.1023],[115.7443,-1.0931],[115.7422,-1.0898],[115.7374,-1.0878],[115.7281,-1.0864],[115.7214,-1.0811],[115.7105,-1.0683],[115.6996,-1.0585],[115.6926,-1.0549],[115.6866,-1.0554],[115.6801,-1.0589],[115.6753,-1.0598],[115.6698,-1.0523],[115.6629,-1.034],[115.6584,-1.0257],[115.6569,-1.0163],[115.6606,-1.0067],[115.6593,-1.0004],[115.6553,-0.9956],[115.6434,-0.9848],[115.631,-0.9767],[115.6118,-0.9662],[115.5986,-0.9572],[115.5851,-0.9497],[115.5658,-0.9331],[115.5579,-0.9236],[115.5519,-0.9132],[115.5336,-0.8831],[115.5132,-0.8646],[115.5052,-0.8557],[115.4977,-0.85],[115.4884,-0.8448],[115.4822,-0.8428],[115.4695,-0.8409],[115.4479,-0.8388],[115.4351,-0.8359],[115.4189,-0.8312],[115.4027,-0.8274],[115.3925,-0.8223],[115.3889,-0.8178],[115.3797,-0.8016],[115.3766,-0.793],[115.3747,-0.7842],[115.3735,-0.7715],[115.367,-0.7495],[115.3669,-0.7252],[115.368,-0.7179],[115.3684,-0.6909],[115.3626,-0.6613],[115.3604,-0.653],[115.3564,-0.6327],[115.3554,-0.6211],[115.3574,-0.6052],[115.3555,-0.5899],[115.3538,-0.5823],[115.3485,-0.5775],[115.3352,-0.5689],[115.3241,-0.5574],[115.3212,-0.5503],[115.3186,-0.5312],[115.3162,-0.5238],[115.3053,-0.5049],[115.3017,-0.5006],[115.27,-0.4706],[115.2624,-0.4612],[115.2571,-0.4559],[115.2465,-0.4515],[115.2447,-0.4481],[115.2457,-0.4419],[115.2569,-0.4341],[115.2589,-0.4292],[115.2601,-0.3932],[115.2593,-0.3878],[115.2543,-0.3825],[115.2435,-0.3831],[115.2394,-0.3815],[115.2372,-0.3749],[115.2383,-0.3629],[115.2373,-0.3543],[115.2348,-0.3457],[115.2305,-0.3245],[115.2271,-0.306],[115.2279,-0.2972],[115.2347,-0.2946],[115.2447,-0.2988],[115.2495,-0.2978],[115.2522,-0.2937],[115.2537,-0.2833],[115.252,-0.2689],[115.2471,-0.251],[115.2437,-0.2469],[115.2384,-0.2444],[115.2398,-0.2356],[115.245,-0.2301],[115.2505,-0.2162],[115.2575,-0.2058],[115.267,-0.1938],[115.2692,-0.1855],[115.2651,-0.1626],[115.2648,-0.1581],[115.2676,-0.1497],[115.2761,-0.1427],[115.2872,-0.1397],[115.296,-0.126],[115.3029,-0.1224],[115.3127,-0.1132],[115.3164,-0.1058],[115.32,-0.0936],[115.318,-0.0859],[115.3124,-0.0719],[115.3042,-0.0619],[115.3023,-0.0496],[115.3026,-0.0367],[115.2969,-0.0336],[115.2849,-0.0443],[115.279,-0.047],[115.2704,-0.0486],[115.2589,-0.0492],[115.2513,-0.0538],[115.246,-0.055],[115.2404,-0.059],[115.2316,-0.0703],[115.2274,-0.0729],[115.2152,-0.0747],[115.2095,-0.0768],[115.196,-0.0761],[115.192,-0.0782],[115.1855,-0.0868],[115.1774,-0.0911],[115.1702,-0.0973],[115.1597,-0.1002],[115.155,-0.1039],[115.1536,-0.1113],[115.1473,-0.1213],[115.1493,-0.1336],[115.1483,-0.1371],[115.1376,-0.1402],[115.1306,-0.1403],[115.1248,-0.1382],[115.1217,-0.1441],[115.1173,-0.1459],[115.1118,-0.1428],[115.1065,-0.1439],[115.0936,-0.1518],[115.0812,-0.1532],[115.0785,-0.1549],[115.0727,-0.1635],[115.0671,-0.1659],[115.0613,-0.2073],[115.0536,-0.2475],[115.0567,-0.3232],[115.0521,-0.3665],[115.0306,-0.4051],[115.0352,-0.4654],[115.0428,-0.5118],[115.0167,-0.5582],[114.9845,-0.6045],[114.9461,-0.6586],[114.9077,-0.7065],[114.8739,-0.7359],[114.8339,-0.7405],[114.7879,-0.7435],[114.7234,-0.7513],[114.6727,-0.7749],[114.6244,-0.8152],[114.5807,-0.8468],[114.5694,-0.8576],[114.5396,-0.886],[114.5016,-0.9164],[114.4656,-0.9803],[114.459,-0.989],[114.457,-1.0348],[114.4803,-1.0863],[114.4991,-1.1114],[114.5406,-1.1377],[114.5734,-1.1426],[114.6275,-1.1358],[114.6593,-1.1358],[114.6786,-1.1388],[114.694,-1.1475],[114.7002,-1.1563],[114.7107,-1.1653],[114.7119,-1.1814],[114.7012,-1.2101],[114.7006,-1.2525],[114.6839,-1.2763],[114.6851,-1.2966],[114.6678,-1.3169],[114.7388,-1.3401],[114.794,-1.3483],[114.8342,-1.3419],[114.8522,-1.3599],[114.8761,-1.3582],[114.9561,-1.3356],[114.9898,-1.3196],[115.0524,-1.3075],[115.0855,-1.3059],[115.0968,-1.3036],[115.1193,-1.311],[115.1272,-1.3313],[115.1622,-1.3067],[115.2363,-1.3121],[115.2381,-1.3145],[115.237,-1.333],[115.2559,-1.333],[115.3151,-1.3359],[115.4121,-1.3293],[115.4337,-1.34],[115.4559,-1.3554],[115.4594,-1.36],[115.4671,-1.3866],[115.4723,-1.4132],[115.4757,-1.4161],[115.4875,-1.4067],[115.4955,-1.4024],[115.52,-1.4007],[115.5374,-1.3975],[115.5568,-1.3956],[115.5592,-1.3939],[115.5888,-1.3787],[115.658,-1.338],[115.6704,-1.3328],[115.6945,-1.3362],[115.7139,-1.3366],[115.7248,-1.3282],[115.7447,-1.315],[115.7493,-1.315],[115.754,-1.315],[115.7576,-1.3074],[115.7546,-1.283],[115.7563,-1.2768],[115.7615,-1.2661],[115.7633,-1.2556],[115.7705,-1.2312],[115.7749,-1.2243],[115.7836,-1.213],[115.7967,-1.1998],[115.8186,-1.182],[115.8412,-1.1691],[115.8457,-1.1647],[115.847,-1.1573],[115.843,-1.1512],[115.8342,-1.1441],[115.8278,-1.1417],[115.8236,-1.1366],[115.8071,-1.1216],[115.8032,-1.1163]]}},{"type":"Feature","properties":{"mhid":"1332:343","alt_name":"KABUPATEN SUKAMARA","latitude":-2.62675,"longitude":111.23681,"sample_value":753},"geometry":{"type":"LineString","coordinates":[[111.3819,-2.2808],[111.3847,-2.2748],[111.3907,-2.2669],[111.3903,-2.2599],[111.3896,-2.2189],[111.3861,-2.198],[111.3786,-2.1923],[111.3678,-2.1939],[111.3634,-2.1878],[111.3639,-2.1823],[111.3582,-2.1719],[111.3546,-2.1628],[111.3554,-2.1524],[111.3459,-2.1512],[111.3068,-2.1505],[111.2926,-2.1488],[111.2746,-2.1427],[111.2652,-2.1408],[111.2519,-2.1257],[111.2354,-2.1247],[111.2227,-2.1209],[111.2179,-2.1167],[111.2085,-2.1058],[111.2014,-2.1002],[111.2,-2.0917],[111.2047,-2.0893],[111.2032,-2.0746],[111.1928,-2.0726],[111.1877,-2.0629],[111.1788,-2.0563],[111.1675,-2.0543],[111.1566,-2.056],[111.1473,-2.0637],[111.0662,-2.118],[111.0676,-2.1309],[111.0703,-2.1402],[111.0778,-2.1528],[111.0788,-2.1612],[111.0743,-2.175],[111.0715,-2.179],[111.0653,-2.1823],[111.0635,-2.1862],[111.0658,-2.1972],[111.063,-2.2029],[111.0503,-2.2145],[111.0406,-2.2222],[111.0346,-2.2325],[111.0319,-2.2399],[111.0326,-2.247],[111.0447,-2.2674],[111.0515,-2.2741],[111.0585,-2.2781],[111.0642,-2.2913],[111.0702,-2.3008],[111.076,-2.3213],[111.0798,-2.3389],[111.0895,-2.3629],[111.0944,-2.3859],[111.095,-2.3947],[111.0984,-2.4098],[111.102,-2.4197],[111.105,-2.4333],[111.1061,-2.4529],[111.1053,-2.4696],[111.1055,-2.4842],[111.1143,-2.5152],[111.1153,-2.5237],[111.1161,-2.5417],[111.1287,-2.5773],[111.1344,-2.5955],[111.1363,-2.6113],[111.1337,-2.6244],[111.1294,-2.6329],[111.12,-2.6427],[111.1186,-2.6526],[111.1215,-2.6579],[111.1282,-2.6661],[111.1357,-2.6704],[111.144,-2.672],[111.1593,-2.6708],[111.1648,-2.6722],[111.169,-2.6782],[111.1716,-2.6859],[111.1714,-2.6939],[111.166,-2.7101],[111.1576,-2.7176],[111.1561,-2.7242],[111.1463,-2.7415],[111.1275,-2.7531],[111.1128,-2.7583],[111.1083,-2.7627],[111.0994,-2.7687],[111.0838,-2.7717],[111.0737,-2.7776],[111.0588,-2.7822],[111.0406,-2.7858],[111.0323,-2.7858],[111.0177,-2.7915],[111.0084,-2.7979],[111.0051,-2.8048],[111.0017,-2.8191],[110.9988,-2.8269],[110.9958,-2.8309],[110.9878,-2.8363],[110.9762,-2.8414],[110.9708,-2.8537],[110.9666,-2.8579],[110.9466,-2.865],[110.9402,-2.8654],[110.9303,-2.868],[110.915,-2.8665],[110.9082,-2.8672],[110.8916,-2.8707],[110.8854,-2.8747],[110.8792,-2.8825],[110.8663,-2.8867],[110.8595,-2.8874],[110.8377,-2.8959],[110.8297,-2.9052],[110.8248,-2.9067],[110.8078,-2.9076],[110.7995,-2.9071],[110.7882,-2.9131],[110.7807,-2.9216],[110.7699,-2.9292],[110.7552,-2.9424],[110.7443,-2.9629],[110.7411,-2.9738],[110.7338,-2.9859],[110.7346,-2.9885],[110.7406,-2.9887],[110.7487,-2.9856],[110.7634,-2.9833],[110.7673,-2.98],[110.7782,-2.9769],[110.7869,-2.976],[110.8007,-2.9767],[110.8126,-2.9798],[110.8307,-2.9862],[110.842,-2.9918],[110.8651,-3.0075],[110.8801,-3.0192],[110.8974,-3.031],[110.9161,-3.0451],[110.9218,-3.0445],[110.9241,-3.0485],[110.9384,-3.0516],[110.951,-3.0617],[110.9591,-3.0654],[110.9743,-3.0667],[110.9813,-3.0664],[110.9998,-3.0619],[111.0113,-3.0603],[111.0388,-3.0546],[111.0578,-3.0485],[111.0854,-3.0373],[111.1182,-3.0252],[111.1394,-3.0157],[111.1515,-3.0084],[111.1759,-2.9975],[111.1916,-2.99],[111.2098,-2.9788],[111.2332,-2.9632],[111.2583,-2.948],[111.2807,-2.9352],[111.2869,-2.9355],[111.3002,-2.928],[111.3175,-2.9204],[111.3242,-2.9162],[111.3391,-2.9093],[111.349,-2.907],[111.3619,-2.9086],[111.3801,-2.877],[111.3827,-2.817],[111.3795,-2.7916],[111.3825,-2.7593],[111.3819,-2.7547],[111.3826,-2.7346],[111.3861,-2.7096],[111.4002,-2.653],[111.3975,-2.6485],[111.3772,-2.6455],[111.344,-2.626],[111.3017,-2.6176],[111.3021,-2.6141],[111.2997,-2.5942],[111.2943,-2.5904],[111.2889,-2.5805],[111.2816,-2.5547],[111.279,-2.5423],[111.2797,-2.5383],[111.2789,-2.5245],[111.2798,-2.5013],[111.2845,-2.4466],[111.2846,-2.4267],[111.2837,-2.3727],[111.2648,-2.3725],[111.266,-2.347],[111.2718,-2.3431],[111.2745,-2.3362],[111.3054,-2.3359],[111.3065,-2.3327],[111.3166,-2.3324],[111.3171,-2.3051],[111.3384,-2.307],[111.3555,-2.3067],[111.3416,-2.2755],[111.3684,-2.2633],[111.3819,-2.2808]]}},{"type":"Feature","properties":{"mhid":"1332:344","alt_name":"KABUPATEN LAMANDAU","latitude":-1.83828,"longitude":111.2869,"sample_value":950},"geometry":{"type":"LineString","coordinates":[[111.7969,-1.5628],[111.7812,-1.5541],[111.7754,-1.5382],[111.7357,-1.501],[111.6863,-1.4729],[111.6483,-1.4403],[111.6232,-1.4204],[111.6068,-1.4139],[111.5669,-1.4173],[111.5182,-1.4198],[111.4693,-1.4078],[111.447,-1.3929],[111.4114,-1.3486],[111.3689,-1.2949],[111.3656,-1.3093],[111.3628,-1.3154],[111.3589,-1.3191],[111.3582,-1.321],[111.3495,-1.3265],[111.3407,-1.3255],[111.3327,-1.3324],[111.3311,-1.342],[111.3317,-1.3498],[111.3271,-1.3579],[111.3246,-1.3652],[111.3175,-1.37],[111.3099,-1.3776],[111.2784,-1.4059],[111.2596,-1.4163],[111.2475,-1.4196],[111.2295,-1.4211],[111.2228,-1.4208],[111.2186,-1.4228],[111.2073,-1.4343],[111.1965,-1.438],[111.1735,-1.434],[111.1634,-1.4333],[111.1573,-1.4343],[111.1479,-1.4415],[111.1384,-1.451],[111.1327,-1.4598],[111.129,-1.4734],[111.129,-1.488],[111.1277,-1.4988],[111.1219,-1.5072],[111.1182,-1.5174],[111.1186,-1.5311],[111.1232,-1.5443],[111.1223,-1.5495],[111.1187,-1.5528],[111.1039,-1.5518],[111.098,-1.5524],[111.0843,-1.5588],[111.0754,-1.5595],[111.0718,-1.5567],[111.0696,-1.5515],[111.0683,-1.5392],[111.0598,-1.5355],[111.0491,-1.5397],[111.0396,-1.5394],[111.0349,-1.5407],[111.0275,-1.5481],[111.0215,-1.5584],[111.0171,-1.5625],[111.0084,-1.5619],[110.9955,-1.5558],[110.9944,-1.5505],[110.9897,-1.5405],[110.9839,-1.5387],[110.9793,-1.5392],[110.9731,-1.5441],[110.9691,-1.5521],[110.9623,-1.5594],[110.9564,-1.57],[110.9557,-1.5748],[110.9522,-1.5791],[110.9452,-1.5822],[110.9133,-1.5846],[110.8997,-1.5917],[110.8939,-1.6011],[110.8897,-1.6125],[110.8816,-1.6189],[110.8589,-1.6305],[110.8538,-1.6364],[110.8566,-1.6449],[110.8551,-1.6738],[110.8638,-1.6826],[110.8825,-1.6794],[110.8865,-1.6815],[110.8927,-1.6892],[110.8936,-1.7016],[110.9006,-1.7131],[110.9043,-1.7124],[110.9106,-1.7155],[110.9166,-1.7203],[110.9288,-1.7181],[110.9429,-1.7104],[110.9486,-1.7],[110.9527,-1.6841],[110.9557,-1.679],[110.963,-1.6722],[110.9745,-1.6691],[110.986,-1.6764],[110.9993,-1.6929],[111.0033,-1.6968],[111.0067,-1.7065],[111.0053,-1.7176],[111.0053,-1.7266],[111.0132,-1.7365],[111.0161,-1.7443],[111.0122,-1.7579],[111.014,-1.7723],[111.0139,-1.7777],[111.0089,-1.7901],[111.0075,-1.7963],[111.0043,-1.8023],[110.992,-1.8116],[110.9865,-1.8174],[110.983,-1.8236],[110.9781,-1.8377],[110.9767,-1.8447],[110.9741,-1.8718],[110.9744,-1.8779],[110.9769,-1.8837],[110.9821,-1.8896],[110.9936,-1.8973],[110.9957,-1.903],[110.996,-1.9091],[110.9947,-1.92],[110.9904,-1.9296],[110.9837,-1.9372],[110.9796,-1.9457],[110.9798,-1.9503],[110.9846,-1.9558],[110.9904,-1.9572],[111,-1.9568],[111.0068,-1.9547],[111.0141,-1.9543],[111.018,-1.9561],[111.0388,-1.977],[111.0478,-1.9839],[111.0554,-1.9932],[111.056,-2.0001],[111.0535,-2.0022],[111.0548,-2.0111],[111.0593,-2.0146],[111.0752,-2.0153],[111.0812,-2.0131],[111.0895,-2.0142],[111.091,-2.0201],[111.0886,-2.0232],[111.0831,-2.0451],[111.0799,-2.0476],[111.0667,-2.053],[111.0601,-2.0582],[111.0573,-2.0718],[111.0594,-2.0885],[111.0662,-2.118],[111.1473,-2.0637],[111.1566,-2.056],[111.1675,-2.0543],[111.1788,-2.0563],[111.1877,-2.0629],[111.1928,-2.0726],[111.2032,-2.0746],[111.2047,-2.0893],[111.2,-2.0917],[111.2014,-2.1002],[111.2085,-2.1058],[111.2179,-2.1167],[111.2227,-2.1209],[111.2354,-2.1247],[111.2519,-2.1257],[111.2652,-2.1408],[111.2746,-2.1427],[111.2926,-2.1488],[111.3068,-2.1505],[111.3459,-2.1512],[111.3554,-2.1524],[111.3546,-2.1628],[111.3582,-2.1719],[111.3639,-2.1823],[111.3634,-2.1878],[111.3678,-2.1939],[111.3786,-2.1923],[111.3861,-2.198],[111.3896,-2.2189],[111.3903,-2.2599],[111.3907,-2.2669],[111.3847,-2.2748],[111.3819,-2.2808],[111.3835,-2.2829],[111.4076,-2.301],[111.4383,-2.3133],[111.4772,-2.31],[111.4992,-2.3119],[111.5184,-2.3074],[111.541,-2.3153],[111.5601,-2.3197],[111.5823,-2.3142],[111.6025,-2.3057],[111.6034,-2.2733],[111.6018,-2.2555],[111.6068,-2.2347],[111.6294,-2.1932],[111.6676,-2.1772],[111.6913,-2.1578],[111.7118,-2.1282],[111.7451,-2.067],[111.7912,-1.9716],[111.7988,-1.9503],[111.8199,-1.8736],[111.8244,-1.7763],[111.8218,-1.7394],[111.8089,-1.583],[111.7969,-1.5628]]}},{"type":"Feature","properties":{"mhid":"1332:345","alt_name":"KABUPATEN SERUYAN","latitude":-2.33333,"longitude":112.25,"sample_value":649},"geometry":{"type":"LineString","coordinates":[[112.1548,-0.7289],[112.1389,-0.7288],[112.1272,-0.7266],[112.1225,-0.7241],[112.1115,-0.7158],[112.1019,-0.715],[112.0916,-0.7107],[112.0692,-0.7041],[112.0508,-0.7002],[112.0346,-0.7002],[112.0234,-0.7025],[112.0165,-0.7104],[112.0146,-0.7223],[112.0187,-0.7375],[112.0229,-0.748],[112.0263,-0.7592],[112.0342,-0.7767],[112.0355,-0.787],[112.0323,-0.7928],[112.0269,-0.7965],[112.0159,-0.8017],[112.0089,-0.7996],[112.0021,-0.8003],[111.9897,-0.8032],[111.9673,-0.8131],[111.9611,-0.8167],[111.9517,-0.816],[111.9429,-0.8099],[111.9352,-0.8065],[111.9281,-0.7987],[111.9223,-0.7813],[111.9197,-0.777],[111.9134,-0.7721],[111.9063,-0.7754],[111.9064,-0.8054],[111.9046,-0.8157],[111.9017,-0.8259],[111.9029,-0.8368],[111.9085,-0.8484],[111.9142,-0.8556],[111.9195,-0.8649],[111.9207,-0.8694],[111.9123,-0.8711],[111.9015,-0.8683],[111.8907,-0.8628],[111.878,-0.863],[111.8698,-0.8666],[111.867,-0.8724],[111.8671,-0.8833],[111.8617,-0.8962],[111.8554,-0.9026],[111.8487,-0.9064],[111.8347,-0.9117],[111.8216,-0.9128],[111.7964,-0.9092],[111.7875,-0.9089],[111.7799,-0.9109],[111.7579,-0.9208],[111.7428,-0.9238],[111.7285,-0.9242],[111.7234,-0.9377],[111.7169,-0.9446],[111.692,-0.9569],[111.6831,-0.962],[111.6748,-0.9657],[111.6651,-0.9731],[111.657,-0.9766],[111.6272,-0.9831],[111.6183,-0.992],[111.6151,-1.0045],[111.6146,-1.0115],[111.6173,-1.0216],[111.6208,-1.0303],[111.6235,-1.0409],[111.6209,-1.0491],[111.6181,-1.0494],[111.6123,-1.0453],[111.6082,-1.0476],[111.6001,-1.0607],[111.5967,-1.0715],[111.5897,-1.0735],[111.5808,-1.0734],[111.57,-1.0754],[111.5623,-1.085],[111.5535,-1.0991],[111.5524,-1.1213],[111.567,-1.1313],[111.5702,-1.1457],[111.5661,-1.1526],[111.5595,-1.1588],[111.5542,-1.1672],[111.5551,-1.1748],[111.5637,-1.1812],[111.5727,-1.1857],[111.5733,-1.1944],[111.5682,-1.203],[111.5593,-1.2097],[111.5429,-1.2095],[111.5394,-1.2136],[111.5286,-1.2163],[111.5188,-1.2152],[111.5051,-1.2176],[111.4939,-1.2211],[111.4868,-1.2308],[111.4783,-1.2332],[111.467,-1.2307],[111.4576,-1.2304],[111.4167,-1.2387],[111.4065,-1.2416],[111.4012,-1.2476],[111.4005,-1.2705],[111.3971,-1.2764],[111.3901,-1.2734],[111.3785,-1.2785],[111.3715,-1.285],[111.3689,-1.2949],[111.4114,-1.3486],[111.447,-1.3929],[111.4693,-1.4078],[111.5182,-1.4198],[111.5669,-1.4173],[111.6068,-1.4139],[111.6232,-1.4204],[111.6483,-1.4403],[111.6863,-1.4729],[111.7357,-1.501],[111.7754,-1.5382],[111.7812,-1.5541],[111.7969,-1.5628],[111.8075,-1.5707],[111.8361,-1.5949],[111.8531,-1.5958],[111.8584,-1.6057],[111.862,-1.6165],[111.8781,-1.6228],[111.8853,-1.6363],[111.8835,-1.6507],[111.888,-1.6579],[111.8871,-1.6642],[111.8808,-1.675],[111.8987,-1.6939],[111.9014,-1.711],[111.9055,-1.7175],[111.947,-1.7334],[111.9547,-1.7334],[111.9581,-1.7467],[111.9614,-1.7631],[111.9629,-1.7769],[111.956,-1.7965],[111.9534,-1.809],[111.9549,-1.8222],[111.9587,-1.837],[111.9631,-1.8496],[111.968,-1.8586],[111.9737,-1.8661],[111.9908,-1.8982],[112.0317,-1.9366],[112.0575,-1.9502],[112.0736,-1.9649],[112.0905,-2.0015],[112.0811,-2.0282],[112.0786,-2.0276],[112.0622,-2.0311],[112.045,-2.0539],[112.0207,-2.0952],[112.0096,-2.1297],[112.0087,-2.1403],[111.9988,-2.1651],[111.9918,-2.1799],[111.9887,-2.1922],[111.9848,-2.2207],[111.9832,-2.2393],[111.9833,-2.2554],[111.9853,-2.2718],[111.9906,-2.2893],[112.0013,-2.2977],[112.0247,-2.3005],[112.044,-2.3502],[112.0441,-2.3655],[112.0593,-2.409],[112.0558,-2.4338],[112.0441,-2.4761],[112.0149,-2.5292],[112.0079,-2.5821],[112.0045,-2.621],[111.9963,-2.6575],[111.9834,-2.6893],[111.9846,-2.7081],[111.9706,-2.7376],[111.9777,-2.7859],[111.9894,-2.8094],[112.0269,-2.8482],[112.0527,-2.8894],[112.0548,-2.8888],[112.0549,-2.9301],[112.0468,-3.0072],[112.0256,-3.058],[111.9947,-3.1318],[111.9687,-3.2187],[111.9329,-3.3121],[111.8988,-3.3827],[111.8792,-3.4089],[111.8187,-3.534],[111.8501,-3.5408],[111.8635,-3.5421],[111.883,-3.5423],[111.8907,-3.5436],[111.8974,-3.5421],[111.9092,-3.5363],[111.9193,-3.5291],[111.9291,-3.5202],[111.9355,-3.5131],[111.9591,-3.4918],[111.9624,-3.4899],[111.9893,-3.4683],[112.0296,-3.4385],[112.0753,-3.409],[112.0892,-3.3994],[112.1117,-3.386],[112.1569,-3.3584],[112.1752,-3.3463],[112.1865,-3.34],[112.2099,-3.3285],[112.2245,-3.323],[112.2487,-3.3155],[112.2593,-3.3128],[112.2894,-3.3106],[112.3055,-3.3106],[112.3235,-3.3145],[112.3374,-3.3159],[112.3537,-3.3228],[112.3579,-3.3256],[112.3756,-3.3336],[112.3867,-3.3375],[112.4105,-3.3471],[112.4283,-3.3577],[112.4314,-3.3618],[112.4333,-3.368],[112.4396,-3.3801],[112.4469,-3.3884],[112.456,-3.396],[112.4708,-3.4051],[112.4807,-3.4118],[112.4996,-3.4217],[112.5164,-3.4317],[112.5351,-3.4419],[112.5417,-3.4444],[112.5616,-3.447],[112.5669,-3.4311],[112.5755,-3.432],[112.5822,-3.4275],[112.5922,-3.4242],[112.6018,-3.4187],[112.6143,-3.414],[112.6237,-3.4092],[112.6363,-3.4076],[112.6507,-3.3937],[112.6568,-3.3834],[112.6701,-3.3715],[112.6801,-3.3651],[112.6917,-3.3605],[112.702,-3.3552],[112.7099,-3.3524],[112.7189,-3.3521],[112.7246,-3.345],[112.7422,-3.3367],[112.7552,-3.3286],[112.7937,-3.3073],[112.8147,-3.2998],[112.8221,-3.2947],[112.8437,-3.2822],[112.8651,-3.2708],[112.8737,-3.2649],[112.8531,-3.2033],[112.8407,-3.1655],[112.8331,-3.1373],[112.8101,-3.0428],[112.8212,-3.0123],[112.8476,-2.937],[112.8706,-2.8306],[112.7883,-2.7837],[112.782,-2.7803],[112.7586,-2.7646],[112.7331,-2.7482],[112.6881,-2.7215],[112.6553,-2.7061],[112.6075,-2.683],[112.5781,-2.658],[112.5109,-2.6159],[112.4807,-2.5811],[112.4741,-2.5528],[112.4702,-2.4991],[112.4592,-2.4047],[112.4524,-2.3982],[112.4348,-2.3909],[112.4353,-2.3568],[112.4291,-2.328],[112.4083,-2.3283],[112.4082,-2.2674],[112.3734,-2.2671],[112.3733,-2.1971],[112.3559,-2.193],[112.3534,-2.188],[112.3504,-2.1877],[112.342,-2.1816],[112.3348,-2.1821],[112.3335,-2.1786],[112.327,-2.1705],[112.327,-2.1665],[112.322,-2.1662],[112.3211,-2.1624],[112.2839,-2.0953],[112.2841,-2.0688],[112.2854,-1.9934],[112.285,-1.9746],[112.2759,-1.9168],[112.2694,-1.8859],[112.261,-1.8809],[112.2572,-1.8732],[112.261,-1.8664],[112.2607,-1.8615],[112.2535,-1.8556],[112.2557,-1.851],[112.2512,-1.8312],[112.2473,-1.8281],[112.2389,-1.8266],[112.2337,-1.821],[112.2345,-1.8112],[112.2316,-1.8062],[112.2149,-1.7946],[112.2018,-1.7862],[112.1981,-1.7703],[112.1923,-1.758],[112.1843,-1.748],[112.1411,-1.6953],[112.0895,-1.6439],[112.0727,-1.5987],[112.0709,-1.5698],[112.0787,-1.5438],[112.1122,-1.495],[112.1254,-1.4522],[112.1263,-1.4425],[112.1326,-1.4119],[112.132,-1.3655],[112.1275,-1.3131],[112.1222,-1.2591],[112.1133,-1.1665],[112.1021,-1.0296],[112.099,-0.9901],[112.121,-0.9245],[112.1695,-0.8244],[112.181,-0.7962],[112.1796,-0.7761],[112.169,-0.757],[112.1548,-0.7289]]}},{"type":"Feature","properties":{"mhid":"1332:346","alt_name":"KABUPATEN KATINGAN","latitude":-2.06667,"longitude":113.4,"sample_value":985},"geometry":{"type":"LineString","coordinates":[[113.4046,-3.2659],[113.4022,-3.264],[113.3977,-3.2503],[113.3956,-3.25],[113.3824,-3.2584],[113.3734,-3.2625],[113.3696,-3.2715],[113.3649,-3.2764],[113.3664,-3.2858],[113.3649,-3.2978],[113.369,-3.3031],[113.376,-3.3009],[113.3813,-3.2974],[113.4068,-3.2688],[113.4046,-3.2659]]}},{"type":"Feature","properties":{"mhid":"1332:346","alt_name":"KABUPATEN KATINGAN","latitude":-2.06667,"longitude":113.4,"sample_value":985},"geometry":{"type":"LineString","coordinates":[[113.3296,-3.2255],[113.327,-3.2219],[113.3234,-3.2239],[113.323,-3.2326],[113.3284,-3.2393],[113.3342,-3.2335],[113.3296,-3.2255]]}},{"type":"Feature","properties":{"mhid":"1332:346","alt_name":"KABUPATEN KATINGAN","latitude":-2.06667,"longitude":113.4,"sample_value":985},"geometry":{"type":"LineString","coordinates":[[113.2199,-0.5026],[113.2152,-0.5054],[113.2098,-0.5046],[113.2015,-0.4994],[113.1986,-0.4955],[113.1981,-0.4889],[113.1996,-0.4797],[113.1986,-0.4776],[113.1914,-0.4783],[113.1878,-0.4676],[113.1821,-0.4646],[113.165,-0.4696],[113.1579,-0.4699],[113.1545,-0.4654],[113.1539,-0.4531],[113.1505,-0.4474],[113.1421,-0.4431],[113.1304,-0.4498],[113.1249,-0.4571],[113.1214,-0.4656],[113.1126,-0.4743],[113.1114,-0.484],[113.107,-0.4871],[113.0979,-0.4838],[113.091,-0.4859],[113.0666,-0.4977],[113.0616,-0.4989],[113.0532,-0.4976],[113.0398,-0.4869],[113.0297,-0.4849],[113.0228,-0.4861],[113.0034,-0.4938],[112.9981,-0.4928],[112.9945,-0.4865],[112.9899,-0.4857],[112.9868,-0.4902],[112.981,-0.5054],[112.9766,-0.5099],[112.9708,-0.5113],[112.9607,-0.5111],[112.9464,-0.516],[112.9351,-0.5179],[112.9263,-0.5207],[112.9166,-0.5276],[112.9044,-0.528],[112.8937,-0.5309],[112.8823,-0.5373],[112.8721,-0.5447],[112.8592,-0.5594],[112.8556,-0.5657],[112.8443,-0.5712],[112.8255,-0.5737],[112.8205,-0.5759],[112.8135,-0.5751],[112.809,-0.5714],[112.7977,-0.5649],[112.7857,-0.5645],[112.7711,-0.5658],[112.7565,-0.5661],[112.751,-0.5681],[112.7419,-0.5799],[112.7413,-0.5839],[112.7421,-0.6051],[112.7451,-0.6151],[112.7435,-0.6205],[112.7395,-0.6233],[112.723,-0.6222],[112.7122,-0.626],[112.7044,-0.6212],[112.7004,-0.627],[112.7016,-0.6355],[112.694,-0.6414],[112.6903,-0.6497],[112.6865,-0.651],[112.6776,-0.6504],[112.6663,-0.6546],[112.6561,-0.6557],[112.6508,-0.6527],[112.6431,-0.6575],[112.6376,-0.653],[112.6288,-0.6537],[112.6184,-0.6616],[112.6063,-0.665],[112.6035,-0.6681],[112.5995,-0.6813],[112.5978,-0.6846],[112.5909,-0.688],[112.5827,-0.6892],[112.5688,-0.6889],[112.557,-0.6862],[112.5503,-0.6864],[112.5447,-0.6911],[112.5415,-0.6972],[112.5348,-0.6988],[112.5263,-0.6956],[112.5064,-0.692],[112.4883,-0.692],[112.4854,-0.6938],[112.4846,-0.6989],[112.4846,-0.7153],[112.4815,-0.7271],[112.4758,-0.7307],[112.4692,-0.7301],[112.4614,-0.7265],[112.4552,-0.7204],[112.4519,-0.7111],[112.4521,-0.6894],[112.4511,-0.6858],[112.4466,-0.6776],[112.4421,-0.6742],[112.4308,-0.6715],[112.425,-0.6725],[112.421,-0.6751],[112.413,-0.6899],[112.3989,-0.7005],[112.3792,-0.709],[112.3662,-0.7134],[112.3523,-0.7162],[112.3422,-0.716],[112.3397,-0.7139],[112.3343,-0.7042],[112.3305,-0.7044],[112.3251,-0.7094],[112.3163,-0.7212],[112.3117,-0.7328],[112.3086,-0.7348],[112.302,-0.7307],[112.2959,-0.7235],[112.2884,-0.7122],[112.2761,-0.6877],[112.2735,-0.68],[112.268,-0.6682],[112.2508,-0.6431],[112.2425,-0.6334],[112.2272,-0.62],[112.2111,-0.6133],[112.1981,-0.6146],[112.1913,-0.6193],[112.1866,-0.6321],[112.1832,-0.6364],[112.1732,-0.6365],[112.1656,-0.6491],[112.1603,-0.6538],[112.1587,-0.6583],[112.1583,-0.6705],[112.1589,-0.6816],[112.1526,-0.678],[112.146,-0.6823],[112.1473,-0.6889],[112.1555,-0.7115],[112.1618,-0.7235],[112.1548,-0.7289],[112.169,-0.757],[112.1796,-0.7761],[112.181,-0.7962],[112.1695,-0.8244],[112.121,-0.9245],[112.099,-0.9901],[112.1021,-1.0296],[112.1133,-1.1665],[112.1222,-1.2591],[112.1275,-1.3131],[112.1404,-1.3104],[112.2137,-1.2962],[112.2753,-1.2875],[112.2895,-1.2859],[112.3161,-1.2737],[112.3331,-1.2549],[112.3472,-1.2418],[112.3784,-1.223],[112.3932,-1.2146],[112.4572,-1.2047],[112.5231,-1.1945],[112.5582,-1.1983],[112.597,-1.2071],[112.647,-1.2297],[112.6681,-1.2552],[112.7443,-1.3027],[112.802,-1.3615],[112.8211,-1.3896],[112.8412,-1.4325],[112.8448,-1.4562],[112.8547,-1.5092],[112.8638,-1.5935],[112.9287,-1.6593],[112.9285,-1.6766],[112.9313,-1.677],[112.9312,-1.7044],[112.9813,-1.7052],[113.0267,-1.7684],[113.0972,-1.7947],[113.135,-1.8211],[113.1589,-1.8382],[113.186,-1.853],[113.1957,-1.8559],[113.2011,-1.8628],[113.2006,-1.8852],[113.2,-1.8882],[113.1919,-1.9016],[113.191,-1.916],[113.1963,-1.9263],[113.2245,-1.9366],[113.2532,-1.9404],[113.2718,-1.9515],[113.2799,-1.9668],[113.2844,-1.9987],[113.2829,-2.0204],[113.282,-2.0455],[113.2621,-2.072],[113.2438,-2.0853],[113.2313,-2.1027],[113.2298,-2.1229],[113.2345,-2.1452],[113.2453,-2.1639],[113.2471,-2.1863],[113.2393,-2.2032],[113.1964,-2.2482],[113.1907,-2.259],[113.1763,-2.2884],[113.1751,-2.29],[113.1723,-2.3219],[113.1819,-2.3568],[113.1942,-2.3875],[113.2128,-2.4495],[113.2128,-2.4513],[113.2027,-2.4994],[113.1376,-2.606],[113.1297,-2.6182],[113.0911,-2.6733],[113.0821,-2.7087],[113.0805,-2.7166],[113.098,-2.8003],[113.1023,-2.8133],[113.1399,-2.9318],[113.1671,-3.0182],[113.157,-3.0639],[113.1633,-3.067],[113.186,-3.0852],[113.1924,-3.0956],[113.1951,-3.1048],[113.1908,-3.108],[113.1984,-3.1182],[113.2067,-3.1275],[113.2186,-3.1389],[113.2293,-3.1482],[113.2422,-3.1585],[113.2539,-3.1716],[113.2662,-3.184],[113.2726,-3.1917],[113.2898,-3.2097],[113.294,-3.2169],[113.3137,-3.2447],[113.3285,-3.2638],[113.3428,-3.2797],[113.3456,-3.2779],[113.3272,-3.2518],[113.3242,-3.2411],[113.3188,-3.2315],[113.3181,-3.2257],[113.3201,-3.2128],[113.3274,-3.2128],[113.3299,-3.2222],[113.3356,-3.2335],[113.3292,-3.242],[113.3299,-3.2451],[113.3357,-3.2532],[113.35,-3.2672],[113.3551,-3.2668],[113.3644,-3.2712],[113.3683,-3.2688],[113.3724,-3.2604],[113.3809,-3.2562],[113.3938,-3.2464],[113.4003,-3.2442],[113.4102,-3.243],[113.414,-3.2404],[113.4243,-3.2378],[113.4332,-3.2311],[113.4362,-3.2228],[113.4354,-3.2187],[113.4381,-3.2066],[113.4497,-3.1906],[113.4519,-3.1906],[113.4589,-3.1847],[113.4852,-3.1746],[113.5161,-3.1665],[113.5347,-3.1638],[113.5375,-3.1624],[113.5534,-3.1607],[113.567,-3.1614],[113.5939,-3.1661],[113.6131,-3.1351],[113.6211,-3.1388],[113.6266,-3.1372],[113.629,-3.1329],[113.6324,-3.1172],[113.6315,-3.103],[113.6377,-3.0916],[113.6364,-3.0805],[113.6388,-3.0496],[113.647,-3.002],[113.645,-2.964],[113.6419,-2.939],[113.6386,-2.929],[113.6178,-2.8872],[113.584,-2.8369],[113.5776,-2.8205],[113.5759,-2.8],[113.5774,-2.7774],[113.5831,-2.7415],[113.605,-2.6961],[113.6211,-2.6683],[113.658,-2.5954],[113.6824,-2.5564],[113.7134,-2.489],[113.7632,-2.3988],[113.7666,-2.3885],[113.7673,-2.3695],[113.7639,-2.3567],[113.7529,-2.3332],[113.7326,-2.312],[113.7188,-2.3016],[113.7062,-2.2849],[113.6969,-2.2574],[113.6954,-2.2337],[113.6965,-2.1951],[113.6996,-2.158],[113.6946,-2.0868],[113.683,-2.0665],[113.6559,-2.0373],[113.623,-1.991],[113.6178,-1.9798],[113.614,-1.9504],[113.5935,-1.9186],[113.5719,-1.8998],[113.5335,-1.8486],[113.5061,-1.8234],[113.4895,-1.7862],[113.4886,-1.7617],[113.4968,-1.7456],[113.4988,-1.7377],[113.4976,-1.7194],[113.4838,-1.6941],[113.482,-1.6849],[113.4844,-1.6704],[113.4921,-1.6575],[113.4829,-1.6025],[113.4588,-1.5895],[113.4354,-1.5781],[113.4305,-1.561],[113.3612,-1.5259],[113.3394,-1.4847],[113.309,-1.4403],[113.2982,-1.4255],[113.2489,-1.3548],[113.1992,-1.2835],[113.1857,-1.2517],[113.1871,-1.2136],[113.1983,-1.184],[113.2207,-1.1543],[113.2333,-1.1289],[113.2347,-1.1049],[113.2333,-1.0866],[113.2291,-1.0725],[113.2164,-1.057],[113.1954,-1.0344],[113.1856,-1.0245],[113.1449,-0.9879],[113.1335,-0.9811],[113.0915,-0.9351],[113.0762,-0.9287],[113.0638,-0.9275],[113.0494,-0.925],[113.0314,-0.9091],[113.0201,-0.8849],[113.0179,-0.8436],[113.0325,-0.8135],[113.0758,-0.7663],[113.1309,-0.6915],[113.1519,-0.656],[113.1694,-0.6213],[113.1861,-0.5931],[113.206,-0.5623],[113.2138,-0.5387],[113.2183,-0.5154],[113.2199,-0.5026]]}},{"type":"Feature","properties":{"mhid":"1332:347","alt_name":"KABUPATEN PULANG PISAU","latitude":-3.11858,"longitude":113.8623,"sample_value":349},"geometry":{"type":"LineString","coordinates":[[114.1329,-3.3803],[114.1755,-3.2734],[114.1918,-3.2157],[114.2038,-3.1875],[114.2266,-3.1941],[114.2319,-3.1808],[114.2432,-3.1486],[114.2595,-3.1067],[114.2591,-3.1065],[114.2837,-3.0433],[114.2232,-2.9531],[114.2652,-2.9112],[114.2816,-2.8489],[114.2852,-2.8423],[114.2915,-2.8339],[114.2931,-2.8258],[114.2911,-2.8205],[114.2837,-2.8149],[114.2872,-2.7926],[114.3009,-2.7816],[114.303,-2.776],[114.3237,-2.728],[114.3339,-2.6927],[114.3331,-2.6686],[114.3322,-2.6608],[114.3313,-2.6373],[114.3178,-2.5236],[114.3166,-2.517],[114.3104,-2.492],[114.3053,-2.469],[114.2961,-2.4324],[114.2918,-2.4124],[114.276,-2.3316],[114.2595,-2.3063],[114.252,-2.2939],[114.2156,-2.2682],[114.2006,-2.2617],[114.1613,-2.2476],[114.146,-2.231],[114.1338,-2.2188],[114.127,-2.1713],[114.1258,-2.157],[114.1298,-2.1013],[114.1362,-2.0702],[114.1366,-2.0622],[114.1335,-2.0404],[114.1166,-2.0002],[114.0985,-1.979],[114.0727,-1.9657],[114.0492,-1.9405],[114.0326,-1.9243],[114.0209,-1.9033],[114.0159,-1.8694],[113.9985,-1.8327],[113.9892,-1.7972],[113.9834,-1.7504],[113.9822,-1.711],[113.9814,-1.6945],[113.9713,-1.6726],[113.9841,-1.649],[113.9904,-1.6209],[113.991,-1.615],[113.9918,-1.5794],[113.9833,-1.5565],[113.9693,-1.5416],[113.9586,-1.5491],[113.9345,-1.5612],[113.9144,-1.5746],[113.8875,-1.617],[113.8272,-1.6311],[113.8168,-1.6686],[113.807,-1.7065],[113.8053,-1.725],[113.8048,-1.7408],[113.8076,-1.7551],[113.8184,-1.7889],[113.8213,-1.8173],[113.8228,-1.8404],[113.8237,-1.8696],[113.8221,-1.8953],[113.8149,-1.9555],[113.8194,-1.9789],[113.831,-2.0043],[113.8383,-2.0163],[113.8473,-2.0273],[113.8617,-2.0495],[113.8787,-2.0746],[113.9271,-2.1428],[113.9352,-2.1574],[113.9378,-2.1637],[113.9499,-2.1643],[113.9791,-2.1677],[114.0027,-2.1693],[114.0218,-2.1716],[114.0398,-2.1753],[114.0618,-2.1854],[114.0773,-2.1877],[114.1068,-2.1981],[114.1008,-2.2119],[114.0849,-2.2511],[114.0706,-2.2635],[114.0302,-2.2922],[114.0276,-2.3343],[114.026,-2.3741],[114.0292,-2.3911],[114.0271,-2.3967],[114.0079,-2.3941],[113.996,-2.3912],[113.9747,-2.3909],[113.9676,-2.3917],[113.9413,-2.3983],[113.7632,-2.3988],[113.7134,-2.489],[113.6824,-2.5564],[113.658,-2.5954],[113.6211,-2.6683],[113.605,-2.6961],[113.5831,-2.7415],[113.5774,-2.7774],[113.5759,-2.8],[113.5776,-2.8205],[113.584,-2.8369],[113.6178,-2.8872],[113.6386,-2.929],[113.6419,-2.939],[113.645,-2.964],[113.647,-3.002],[113.6388,-3.0496],[113.6364,-3.0805],[113.6377,-3.0916],[113.6315,-3.103],[113.6324,-3.1172],[113.629,-3.1329],[113.6266,-3.1372],[113.6211,-3.1388],[113.6131,-3.1351],[113.5939,-3.1661],[113.6014,-3.1654],[113.6032,-3.1785],[113.6052,-3.1852],[113.6093,-3.1929],[113.6154,-3.2076],[113.622,-3.2272],[113.6282,-3.2515],[113.6306,-3.2703],[113.6325,-3.2982],[113.6317,-3.3226],[113.6273,-3.3427],[113.6266,-3.3518],[113.6212,-3.3648],[113.6176,-3.3768],[113.6129,-3.3873],[113.6113,-3.3964],[113.607,-3.4013],[113.5972,-3.4212],[113.5873,-3.4349],[113.5821,-3.4404],[113.5819,-3.4438],[113.5858,-3.4464],[113.598,-3.4507],[113.6199,-3.4603],[113.627,-3.4642],[113.6336,-3.4655],[113.6543,-3.4664],[113.6776,-3.468],[113.6854,-3.4693],[113.7161,-3.4681],[113.7494,-3.4655],[113.756,-3.463],[113.7672,-3.4631],[113.7902,-3.4599],[113.811,-3.4528],[113.8135,-3.4508],[113.8209,-3.4498],[113.8339,-3.4443],[113.8424,-3.4382],[113.8525,-3.4341],[113.8637,-3.4311],[113.8655,-3.426],[113.8726,-3.4217],[113.8737,-3.4194],[113.8892,-3.41],[113.9017,-3.401],[113.911,-3.3964],[113.9259,-3.3864],[113.9342,-3.3818],[113.9497,-3.3713],[113.9731,-3.3613],[113.9972,-3.3549],[114.0194,-3.3529],[114.0211,-3.3514],[114.0339,-3.3515],[114.0447,-3.3467],[114.0455,-3.3343],[114.0472,-3.3212],[114.0529,-3.3108],[114.0714,-3.3113],[114.0746,-3.312],[114.0773,-3.3166],[114.0683,-3.3226],[114.069,-3.3293],[114.0713,-3.3357],[114.0778,-3.3459],[114.0914,-3.3566],[114.1007,-3.3622],[114.1156,-3.3728],[114.1329,-3.3803]]}},{"type":"Feature","properties":{"mhid":"1332:348","alt_name":"KABUPATEN GUNUNG MAS","latitude":-0.95,"longitude":113.5,"sample_value":461},"geometry":{"type":"LineString","coordinates":[[113.9693,-1.5416],[113.9937,-1.5081],[114.0083,-1.475],[114.0023,-1.4112],[113.9971,-1.3625],[113.9963,-1.3226],[113.9953,-1.3067],[113.9948,-1.2829],[113.9962,-1.259],[113.9973,-1.2299],[113.9893,-1.1946],[113.9796,-1.1571],[113.9709,-1.122],[113.969,-1.1118],[113.9749,-1.0868],[113.9771,-1.0638],[113.9728,-1.0448],[113.9344,-1.003],[113.8646,-0.9821],[113.8506,-0.9775],[113.819,-0.9639],[113.7795,-0.9458],[113.7631,-0.9377],[113.7365,-0.9058],[113.7228,-0.888],[113.7056,-0.8427],[113.6961,-0.8184],[113.6856,-0.7903],[113.679,-0.7736],[113.6609,-0.7554],[113.6504,-0.738],[113.66,-0.7087],[113.6684,-0.685],[113.671,-0.6792],[113.6843,-0.6617],[113.7017,-0.6403],[113.7195,-0.6205],[113.7372,-0.6013],[113.7417,-0.5871],[113.7559,-0.5462],[113.761,-0.4836],[113.7472,-0.4549],[113.7357,-0.4402],[113.7268,-0.4322],[113.722,-0.4224],[113.7135,-0.4114],[113.6975,-0.4049],[113.6812,-0.4015],[113.6526,-0.3981],[113.6237,-0.393],[113.5964,-0.3837],[113.5787,-0.3741],[113.5358,-0.3419],[113.4902,-0.3258],[113.4827,-0.3207],[113.452,-0.3076],[113.4421,-0.3027],[113.431,-0.3027],[113.4072,-0.3045],[113.3647,-0.3195],[113.3418,-0.3414],[113.3065,-0.3818],[113.2716,-0.4124],[113.2669,-0.418],[113.2663,-0.431],[113.2635,-0.4377],[113.2518,-0.4466],[113.2458,-0.453],[113.2404,-0.4636],[113.2289,-0.4743],[113.2266,-0.4801],[113.2262,-0.4916],[113.2228,-0.4996],[113.2199,-0.5026],[113.2183,-0.5154],[113.2138,-0.5387],[113.206,-0.5623],[113.1861,-0.5931],[113.1694,-0.6213],[113.1519,-0.656],[113.1309,-0.6915],[113.0758,-0.7663],[113.0325,-0.8135],[113.0179,-0.8436],[113.0201,-0.8849],[113.0314,-0.9091],[113.0494,-0.925],[113.0638,-0.9275],[113.0762,-0.9287],[113.0915,-0.9351],[113.1335,-0.9811],[113.1449,-0.9879],[113.1856,-1.0245],[113.1954,-1.0344],[113.2164,-1.057],[113.2291,-1.0725],[113.2333,-1.0866],[113.2347,-1.1049],[113.2333,-1.1289],[113.2207,-1.1543],[113.1983,-1.184],[113.1871,-1.2136],[113.1857,-1.2517],[113.1992,-1.2835],[113.2489,-1.3548],[113.2982,-1.4255],[113.309,-1.4403],[113.3394,-1.4847],[113.3612,-1.5259],[113.4305,-1.561],[113.4354,-1.5781],[113.4588,-1.5895],[113.4829,-1.6025],[113.4921,-1.6575],[113.5019,-1.6672],[113.5073,-1.6702],[113.5191,-1.6709],[113.5333,-1.6563],[113.5521,-1.6419],[113.5629,-1.637],[113.5671,-1.6371],[113.5768,-1.6435],[113.5833,-1.6507],[113.5885,-1.6535],[113.6002,-1.6553],[113.667,-1.6445],[113.6762,-1.6405],[113.7044,-1.6306],[113.7371,-1.6243],[113.7577,-1.6235],[113.7991,-1.6301],[113.8202,-1.6316],[113.8272,-1.6311],[113.8875,-1.617],[113.9144,-1.5746],[113.9345,-1.5612],[113.9586,-1.5491],[113.9693,-1.5416]]}},{"type":"Feature","properties":{"mhid":"1332:349","alt_name":"KABUPATEN BARITO TIMUR","latitude":-1.93333,"longitude":115.1,"sample_value":421},"geometry":{"type":"LineString","coordinates":[[115.132,-2.2918],[115.1321,-2.2915],[115.185,-2.2554],[115.2014,-2.2459],[115.2023,-2.2442],[115.2473,-2.2122],[115.2491,-2.21],[115.2462,-2.2053],[115.2392,-2.2001],[115.2412,-2.1964],[115.2498,-2.2029],[115.2543,-2.2078],[115.2642,-2.2223],[115.2691,-2.2199],[115.2818,-2.2234],[115.2911,-2.2239],[115.2923,-2.2042],[115.295,-2.1778],[115.2952,-2.1706],[115.3033,-2.1596],[115.302,-2.1533],[115.2972,-2.1492],[115.2977,-2.1417],[115.302,-2.1376],[115.3094,-2.1335],[115.3177,-2.1241],[115.3177,-2.1035],[115.3169,-2.101],[115.3169,-2.0858],[115.3205,-2.074],[115.3229,-2.0721],[115.3377,-2.08],[115.3454,-2.0823],[115.352,-2.0737],[115.3603,-2.0708],[115.3726,-2.0685],[115.379,-2.0647],[115.387,-2.0641],[115.3926,-2.0621],[115.4042,-2.0607],[115.4083,-2.0585],[115.4089,-2.0547],[115.4048,-2.0492],[115.4039,-2.0447],[115.3997,-2.0402],[115.3897,-2.0379],[115.385,-2.0336],[115.3822,-2.0274],[115.3777,-2.0222],[115.3737,-2.0209],[115.3707,-2.0158],[115.371,-2.0093],[115.3794,-1.9897],[115.3838,-1.9847],[115.3897,-1.9837],[115.3915,-1.9806],[115.3898,-1.9765],[115.3973,-1.9668],[115.4051,-1.9659],[115.4089,-1.9784],[115.4154,-1.9773],[115.4278,-1.9729],[115.4318,-1.9641],[115.4372,-1.9572],[115.4384,-1.9489],[115.4428,-1.948],[115.4414,-1.9425],[115.4325,-1.9464],[115.4312,-1.944],[115.4351,-1.9383],[115.4313,-1.9343],[115.426,-1.9362],[115.4218,-1.9333],[115.4286,-1.9297],[115.4307,-1.9238],[115.4283,-1.9175],[115.4246,-1.9144],[115.419,-1.915],[115.4168,-1.9102],[115.4197,-1.9001],[115.4192,-1.8916],[115.4151,-1.896],[115.4106,-1.8933],[115.4053,-1.895],[115.4048,-1.8866],[115.4003,-1.8862],[115.393,-1.8933],[115.3852,-1.8925],[115.3791,-1.8883],[115.377,-1.8913],[115.372,-1.8919],[115.3355,-1.8919],[115.3195,-1.8923],[115.3181,-1.8875],[115.3207,-1.8829],[115.3209,-1.8758],[115.3184,-1.874],[115.3195,-1.8678],[115.3189,-1.8604],[115.3157,-1.8517],[115.3087,-1.8493],[115.309,-1.8446],[115.3057,-1.8342],[115.3,-1.8246],[115.3128,-1.8264],[115.3095,-1.808],[115.3099,-1.801],[115.3153,-1.7897],[115.3197,-1.7773],[115.3228,-1.7641],[115.3264,-1.7577],[115.3293,-1.756],[115.3337,-1.7492],[115.3324,-1.7354],[115.3363,-1.7299],[115.3325,-1.7235],[115.3347,-1.7193],[115.3343,-1.7148],[115.3383,-1.7103],[115.3376,-1.7074],[115.344,-1.7017],[115.3413,-1.6914],[115.3503,-1.6811],[115.3464,-1.6736],[115.3444,-1.6633],[115.3512,-1.659],[115.3553,-1.6545],[115.3541,-1.6471],[115.3493,-1.6399],[115.3503,-1.6368],[115.2842,-1.6299],[115.2679,-1.6295],[115.2457,-1.6303],[115.2361,-1.6331],[115.227,-1.6422],[115.2155,-1.6454],[115.2048,-1.647],[115.1829,-1.6458],[115.1607,-1.6458],[115.1312,-1.6486],[115.1249,-1.6522],[115.1007,-1.6696],[115.0824,-1.6791],[115.0732,-1.68],[115.0593,-1.6828],[115.0494,-1.684],[115.0335,-1.6919],[115.0212,-1.7058],[115.0116,-1.7201],[115.0041,-1.7348],[114.9997,-1.7459],[114.991,-1.763],[114.9842,-1.7749],[114.9775,-1.7837],[114.9711,-1.7964],[114.9636,-1.8258],[114.9608,-1.8429],[114.9577,-1.8697],[114.9564,-1.8902],[114.9588,-1.9132],[114.9612,-1.9247],[114.9628,-1.951],[114.9588,-1.9776],[114.9497,-2.0054],[114.9457,-2.0205],[114.9441,-2.034],[114.9429,-2.0543],[114.9391,-2.0749],[114.9343,-2.0896],[114.9314,-2.0961],[114.9307,-2.1062],[114.9343,-2.1263],[114.9336,-2.1529],[114.9336,-2.1781],[114.9256,-2.2047],[114.9177,-2.2177],[114.9177,-2.2227],[114.9235,-2.2241],[114.9249,-2.2313],[114.9589,-2.3052],[115.0005,-2.3954],[115.0029,-2.4001],[115.01,-2.3914],[115.0254,-2.3681],[115.0331,-2.3589],[115.0443,-2.3495],[115.0746,-2.33],[115.132,-2.2918]]}},{"type":"Feature","properties":{"mhid":"1332:350","alt_name":"KABUPATEN MURUNG RAYA","latitude":-0.01667,"longitude":114.26667,"sample_value":234},"geometry":{"type":"LineString","coordinates":[[115.0671,-0.1659],[115.0616,-0.1694],[115.0569,-0.1769],[115.0518,-0.1809],[115.0448,-0.1898],[115.036,-0.1913],[115.0269,-0.1852],[115.0193,-0.1863],[115.011,-0.1857],[115.0008,-0.1869],[114.9918,-0.186],[114.9904,-0.1819],[114.9943,-0.1788],[114.9917,-0.1751],[114.987,-0.1729],[114.9793,-0.1785],[114.9661,-0.1791],[114.9596,-0.1814],[114.9531,-0.188],[114.9477,-0.1904],[114.9415,-0.1886],[114.9336,-0.1889],[114.9296,-0.1861],[114.9288,-0.1822],[114.9318,-0.1741],[114.9332,-0.1658],[114.9325,-0.1612],[114.927,-0.1515],[114.9245,-0.1433],[114.92,-0.1338],[114.9245,-0.1214],[114.9261,-0.1079],[114.9238,-0.0966],[114.9215,-0.0904],[114.9158,-0.083],[114.9125,-0.0763],[114.909,-0.0649],[114.9018,-0.0498],[114.8975,-0.0354],[114.8972,-0.0294],[114.8996,-0.0151],[114.8971,-0.0052],[114.8934,0.0021],[114.8895,0.0192],[114.8912,0.0261],[114.8951,0.0333],[114.8948,0.0386],[114.8902,0.0437],[114.8862,0.0456],[114.8813,0.053],[114.8691,0.0587],[114.8613,0.0547],[114.8585,0.055],[114.8477,0.0694],[114.835,0.0773],[114.8298,0.0782],[114.8172,0.0689],[114.8072,0.071],[114.8027,0.0778],[114.7939,0.0868],[114.7913,0.0935],[114.7909,0.1145],[114.793,0.125],[114.8003,0.1346],[114.8092,0.1529],[114.8111,0.1587],[114.8098,0.1659],[114.8022,0.1706],[114.8004,0.1736],[114.8026,0.1775],[114.8107,0.1818],[114.8228,0.1922],[114.8264,0.1964],[114.8276,0.2013],[114.8264,0.2065],[114.8298,0.2209],[114.838,0.2283],[114.8548,0.2305],[114.8609,0.2331],[114.8632,0.2364],[114.8643,0.2457],[114.8696,0.2571],[114.8719,0.2674],[114.875,0.2717],[114.8826,0.274],[114.8862,0.2769],[114.8887,0.2837],[114.887,0.2927],[114.89,0.3],[114.9017,0.3112],[114.9129,0.3189],[114.9304,0.3267],[114.9436,0.3308],[114.9531,0.327],[114.954,0.3248],[114.9514,0.3159],[114.9534,0.3129],[114.9657,0.3162],[114.974,0.3236],[114.979,0.3254],[114.9829,0.3246],[114.9901,0.3201],[114.9999,0.3209],[115.0096,0.3256],[115.0187,0.3266],[115.0236,0.3256],[115.0318,0.3174],[115.0399,0.3033],[115.0455,0.3002],[115.0523,0.3041],[115.0537,0.3078],[115.0528,0.3159],[115.0659,0.3246],[115.0821,0.3314],[115.0872,0.3362],[115.0936,0.3454],[115.0987,0.3506],[115.1108,0.3589],[115.1247,0.3694],[115.1287,0.3746],[115.1334,0.3907],[115.137,0.4157],[115.137,0.426],[115.1353,0.4298],[115.1208,0.4396],[115.1079,0.4512],[115.1,0.4655],[115.0954,0.4677],[115.0923,0.4722],[115.0884,0.4861],[115.084,0.4968],[115.076,0.5111],[115.0687,0.522],[115.0601,0.5302],[115.0505,0.541],[115.0404,0.554],[115.0327,0.5729],[115.0234,0.5899],[115.0171,0.5992],[115.0111,0.6111],[115.0085,0.6194],[115.0038,0.6441],[115.0027,0.6558],[114.9998,0.6741],[114.9922,0.7107],[114.9914,0.7169],[114.9863,0.7261],[114.9846,0.7349],[114.9797,0.7445],[114.9701,0.7529],[114.964,0.7564],[114.9578,0.7638],[114.9494,0.7663],[114.944,0.775],[114.9396,0.7771],[114.9302,0.777],[114.9222,0.7821],[114.9163,0.7898],[114.9115,0.7931],[114.9078,0.7909],[114.9108,0.7842],[114.9057,0.7714],[114.903,0.7686],[114.8898,0.7651],[114.8834,0.7602],[114.8791,0.7515],[114.875,0.7466],[114.8668,0.7419],[114.8651,0.739],[114.8644,0.7248],[114.8659,0.7201],[114.8704,0.7157],[114.8807,0.7082],[114.8814,0.7036],[114.8767,0.6994],[114.8688,0.7005],[114.8502,0.7113],[114.8457,0.7153],[114.8431,0.7234],[114.8432,0.7298],[114.8313,0.7409],[114.8266,0.7511],[114.8106,0.7497],[114.8081,0.7455],[114.7931,0.7385],[114.7841,0.7321],[114.7758,0.732],[114.7698,0.7367],[114.765,0.7424],[114.7555,0.7385],[114.7491,0.7306],[114.7365,0.7171],[114.7188,0.7069],[114.7123,0.7051],[114.6962,0.7089],[114.6993,0.7161],[114.7073,0.7249],[114.7057,0.7289],[114.7013,0.7283],[114.6878,0.7172],[114.6826,0.7109],[114.6764,0.7075],[114.6629,0.7075],[114.6565,0.7021],[114.6549,0.6942],[114.6518,0.6852],[114.6484,0.6802],[114.6391,0.6752],[114.6356,0.6717],[114.6325,0.6625],[114.6269,0.6608],[114.6211,0.6562],[114.6178,0.6504],[114.6162,0.6404],[114.6087,0.647],[114.6046,0.6468],[114.5936,0.6352],[114.591,0.6279],[114.5887,0.6261],[114.5786,0.6315],[114.5734,0.6314],[114.5612,0.6288],[114.5583,0.631],[114.5493,0.6293],[114.5415,0.6315],[114.5393,0.6301],[114.5356,0.6227],[114.5345,0.614],[114.5355,0.6073],[114.5413,0.5967],[114.5377,0.5916],[114.5348,0.5845],[114.528,0.5817],[114.5279,0.5764],[114.5184,0.5647],[114.5048,0.5637],[114.5001,0.5682],[114.4915,0.5728],[114.4831,0.5713],[114.4735,0.5666],[114.4602,0.5709],[114.4552,0.5666],[114.4524,0.5585],[114.439,0.5497],[114.4286,0.5452],[114.4245,0.5384],[114.431,0.5296],[114.4327,0.515],[114.4324,0.5068],[114.4299,0.5031],[114.4204,0.5001],[114.4111,0.4956],[114.4007,0.4969],[114.3942,0.5041],[114.3907,0.5056],[114.3806,0.5057],[114.3768,0.5067],[114.3719,0.5114],[114.3637,0.5222],[114.3522,0.5311],[114.3344,0.5356],[114.3227,0.5397],[114.3155,0.5413],[114.311,0.5407],[114.3031,0.5355],[114.2972,0.5382],[114.2911,0.5354],[114.2869,0.5393],[114.2791,0.5405],[114.2716,0.5395],[114.2662,0.5369],[114.2623,0.5314],[114.2592,0.53],[114.2501,0.5347],[114.2437,0.5351],[114.2369,0.5301],[114.227,0.5316],[114.221,0.5299],[114.215,0.5339],[114.2101,0.5327],[114.2,0.5393],[114.1942,0.5412],[114.1879,0.5549],[114.1888,0.5633],[114.1877,0.5678],[114.1813,0.5756],[114.1703,0.5805],[114.154,0.5823],[114.1487,0.5846],[114.1477,0.5939],[114.1528,0.6021],[114.162,0.6097],[114.1677,0.6123],[114.1711,0.6165],[114.1715,0.6284],[114.17,0.6331],[114.1631,0.6473],[114.1554,0.656],[114.1536,0.666],[114.1481,0.6749],[114.1307,0.6822],[114.1148,0.6953],[114.1045,0.6983],[114.0948,0.6956],[114.081,0.6967],[114.0754,0.6928],[114.0638,0.6914],[114.0522,0.6789],[114.0458,0.6744],[114.0323,0.6713],[114.0237,0.6711],[114.0157,0.6687],[114.0105,0.6625],[114.0086,0.656],[114.0044,0.652],[113.9858,0.6654],[113.9813,0.6672],[113.9739,0.6661],[113.9685,0.6592],[113.9617,0.657],[113.9502,0.6602],[113.939,0.6582],[113.9318,0.6539],[113.923,0.6538],[113.9122,0.6568],[113.9021,0.6532],[113.8958,0.6443],[113.8893,0.6412],[113.8856,0.6416],[113.8836,0.6459],[113.8825,0.6579],[113.8801,0.6604],[113.8464,0.6642],[113.843,0.662],[113.8358,0.6549],[113.8202,0.6482],[113.8143,0.6419],[113.8105,0.6324],[113.8073,0.6134],[113.8031,0.6061],[113.7919,0.6],[113.7809,0.5913],[113.777,0.5833],[113.7757,0.5688],[113.7746,0.5646],[113.771,0.5627],[113.7649,0.5646],[113.7575,0.5628],[113.7484,0.5559],[113.7422,0.5483],[113.7392,0.5351],[113.7354,0.5301],[113.7232,0.5321],[113.7102,0.5248],[113.703,0.5258],[113.6988,0.5219],[113.6956,0.5126],[113.6892,0.5066],[113.6788,0.5059],[113.6729,0.5023],[113.6698,0.4943],[113.6685,0.4843],[113.6628,0.457],[113.6639,0.4493],[113.6631,0.4454],[113.6587,0.4406],[113.6473,0.4338],[113.6361,0.4253],[113.6299,0.424],[113.6139,0.4171],[113.5883,0.4071],[113.5824,0.3982],[113.577,0.3835],[113.5715,0.3794],[113.5661,0.3794],[113.5605,0.3767],[113.5564,0.367],[113.5503,0.3593],[113.5361,0.3467],[113.52,0.3368],[113.5141,0.3306],[113.5161,0.3248],[113.5131,0.3211],[113.4971,0.3107],[113.4844,0.3008],[113.452,0.2714],[113.44,0.2653],[113.4328,0.2638],[113.423,0.2636],[113.4042,0.2661],[113.3895,0.272],[113.3817,0.2704],[113.3738,0.2717],[113.3662,0.2755],[113.352,0.2784],[113.3359,0.2727],[113.324,0.2728],[113.3152,0.2669],[113.2943,0.2574],[113.2885,0.2529],[113.2842,0.2477],[113.273,0.2404],[113.2729,0.2339],[113.2762,0.2301],[113.2823,0.2284],[113.3032,0.2062],[113.3133,0.1936],[113.3254,0.1802],[113.3408,0.1674],[113.3493,0.1623],[113.3592,0.1585],[113.3806,0.1539],[113.4137,0.1305],[113.4198,0.123],[113.4226,0.1158],[113.4143,0.108],[113.4125,0.1032],[113.4159,0.0856],[113.4164,0.0765],[113.4117,0.0597],[113.4105,0.0525],[113.4129,0.0436],[113.4171,0.0382],[113.4291,0.0268],[113.4402,0.0154],[113.4421,0.0116],[113.4365,0.0015],[113.4334,-0.0001],[113.4287,-0.0083],[113.4274,-0.0166],[113.4288,-0.0294],[113.4201,-0.0351],[113.4165,-0.0411],[113.4165,-0.0473],[113.4192,-0.0504],[113.4346,-0.0529],[113.438,-0.0577],[113.4399,-0.0645],[113.4399,-0.0709],[113.4363,-0.0775],[113.4286,-0.0852],[113.4235,-0.0919],[113.4212,-0.0981],[113.422,-0.1116],[113.4164,-0.1185],[113.4011,-0.119],[113.3973,-0.1226],[113.3969,-0.1297],[113.4041,-0.1332],[113.4147,-0.1346],[113.4211,-0.139],[113.4133,-0.1562],[113.4101,-0.1608],[113.406,-0.1625],[113.3982,-0.1603],[113.3931,-0.161],[113.3866,-0.1656],[113.3857,-0.1699],[113.3872,-0.1796],[113.3854,-0.1861],[113.373,-0.1936],[113.3681,-0.2018],[113.3641,-0.2051],[113.3523,-0.2213],[113.3377,-0.2255],[113.3323,-0.2284],[113.3287,-0.2324],[113.3154,-0.2365],[113.3021,-0.2366],[113.292,-0.2376],[113.2877,-0.2404],[113.2782,-0.2517],[113.2756,-0.2653],[113.271,-0.2704],[113.2604,-0.2715],[113.2552,-0.2744],[113.2444,-0.2876],[113.2391,-0.2916],[113.2348,-0.2976],[113.2294,-0.3133],[113.2257,-0.3289],[113.2179,-0.334],[113.2108,-0.3348],[113.207,-0.338],[113.2073,-0.3446],[113.2217,-0.347],[113.2245,-0.3508],[113.2272,-0.36],[113.2297,-0.3643],[113.2383,-0.3701],[113.2462,-0.3789],[113.2594,-0.3856],[113.2631,-0.3902],[113.2624,-0.3955],[113.2589,-0.4],[113.2569,-0.408],[113.2669,-0.418],[113.2716,-0.4124],[113.3065,-0.3818],[113.3418,-0.3414],[113.3647,-0.3195],[113.4072,-0.3045],[113.431,-0.3027],[113.4421,-0.3027],[113.452,-0.3076],[113.4827,-0.3207],[113.4902,-0.3258],[113.5358,-0.3419],[113.5787,-0.3741],[113.5964,-0.3837],[113.6237,-0.393],[113.6526,-0.3981],[113.6812,-0.4015],[113.6975,-0.4049],[113.7135,-0.4114],[113.722,-0.4224],[113.7268,-0.4322],[113.7357,-0.4402],[113.7472,-0.4549],[113.761,-0.4836],[113.7757,-0.4726],[113.7776,-0.4565],[113.7719,-0.4378],[113.7757,-0.4307],[113.7962,-0.4332],[113.8161,-0.4481],[113.8264,-0.4526],[113.8847,-0.4584],[113.8892,-0.4635],[113.902,-0.4687],[113.9071,-0.4655],[113.9206,-0.4661],[113.9289,-0.4584],[113.9276,-0.4055],[113.9429,-0.3861],[113.9734,-0.3751],[113.9915,-0.381],[114.0121,-0.4162],[114.029,-0.4839],[114.0521,-0.5221],[114.0609,-0.5409],[114.0638,-0.552],[114.0692,-0.5861],[114.0752,-0.6097],[114.0803,-0.619],[114.1,-0.6672],[114.113,-0.7055],[114.1193,-0.7291],[114.1213,-0.7457],[114.1238,-0.7584],[114.134,-0.7827],[114.1565,-0.7989],[114.1842,-0.8118],[114.2003,-0.8275],[114.2178,-0.8469],[114.2283,-0.8592],[114.2464,-0.8666],[114.2704,-0.8649],[114.3035,-0.8557],[114.323,-0.8512],[114.3433,-0.8455],[114.3853,-0.8367],[114.4059,-0.8331],[114.4244,-0.8326],[114.4466,-0.8331],[114.4591,-0.8339],[114.5082,-0.8481],[114.5694,-0.8576],[114.5807,-0.8468],[114.6244,-0.8152],[114.6727,-0.7749],[114.7234,-0.7513],[114.7879,-0.7435],[114.8339,-0.7405],[114.8739,-0.7359],[114.9077,-0.7065],[114.9461,-0.6586],[114.9845,-0.6045],[115.0167,-0.5582],[115.0428,-0.5118],[115.0352,-0.4654],[115.0306,-0.4051],[115.0521,-0.3665],[115.0567,-0.3232],[115.0536,-0.2475],[115.0613,-0.2073],[115.0671,-0.1659]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[115.6673,-4.7445],[115.674,-4.741],[115.6832,-4.7274],[115.6795,-4.7235],[115.6748,-4.7292],[115.6672,-4.7304],[115.6648,-4.7441],[115.6673,-4.7445]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[115.7717,-4.6654],[115.7662,-4.6655],[115.7615,-4.6619],[115.7573,-4.6671],[115.7489,-4.6736],[115.7347,-4.6823],[115.7255,-4.687],[115.7204,-4.6925],[115.7182,-4.7024],[115.7199,-4.7044],[115.7273,-4.7028],[115.7353,-4.7034],[115.7377,-4.7021],[115.7654,-4.6787],[115.7679,-4.675],[115.7681,-4.6697],[115.7717,-4.6654]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[115.7882,-4.653],[115.7851,-4.6482],[115.7813,-4.6551],[115.7857,-4.6599],[115.7907,-4.658],[115.7882,-4.653]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[115.6964,-4.6409],[115.6997,-4.6381],[115.703,-4.6318],[115.7092,-4.6244],[115.708,-4.6184],[115.7041,-4.6192],[115.6963,-4.6259],[115.6864,-4.6321],[115.687,-4.6352],[115.6964,-4.6409]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[115.7881,-4.3253],[115.7834,-4.322],[115.7794,-4.323],[115.7751,-4.3279],[115.7763,-4.3331],[115.7802,-4.3339],[115.7833,-4.3398],[115.7879,-4.3395],[115.7897,-4.3315],[115.7927,-4.3271],[115.7881,-4.3253]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[116.2097,-4.0861],[116.2045,-4.0866],[116.2012,-4.0892],[116.2065,-4.0973],[116.2145,-4.0975],[116.2124,-4.0881],[116.2097,-4.0861]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[116.0476,-4.0769],[116.0415,-4.0778],[116.0428,-4.0843],[116.0409,-4.0897],[116.0467,-4.0932],[116.0496,-4.0899],[116.0476,-4.0769]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[116.1808,-4.0454],[116.1717,-4.0469],[116.1635,-4.0541],[116.1678,-4.0582],[116.1803,-4.0513],[116.1808,-4.0454]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[116.2011,-4.0274],[116.2006,-4.0334],[116.2073,-4.0374],[116.2149,-4.0292],[116.2098,-4.0275],[116.2011,-4.0274]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[116.3216,-3.8169],[116.3145,-3.8201],[116.3103,-3.8305],[116.3087,-3.8297],[116.3009,-3.8369],[116.2974,-3.8432],[116.298,-3.8467],[116.3065,-3.8503],[116.309,-3.8463],[116.3145,-3.8448],[116.3187,-3.8273],[116.3226,-3.825],[116.3216,-3.8169]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[116.3356,-3.5938],[116.3343,-3.5951],[116.3354,-3.6062],[116.3349,-3.6146],[116.3372,-3.6181],[116.3425,-3.6175],[116.3449,-3.6121],[116.3504,-3.605],[116.3486,-3.5998],[116.3448,-3.5972],[116.3356,-3.5938]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[116.4229,-3.3652],[116.418,-3.3626],[116.4095,-3.3605],[116.4068,-3.3667],[116.4092,-3.3703],[116.4058,-3.3739],[116.4056,-3.3794],[116.4019,-3.3839],[116.3987,-3.3911],[116.3982,-3.3976],[116.3937,-3.4042],[116.3924,-3.4095],[116.3854,-3.417],[116.3749,-3.4224],[116.3684,-3.4268],[116.3529,-3.4409],[116.3453,-3.4523],[116.3444,-3.4659],[116.338,-3.4789],[116.3359,-3.4866],[116.3361,-3.4914],[116.3327,-3.5055],[116.323,-3.5258],[116.3209,-3.5316],[116.3195,-3.5418],[116.314,-3.551],[116.3133,-3.5582],[116.3174,-3.5586],[116.3226,-3.5563],[116.3325,-3.5584],[116.3398,-3.5632],[116.3425,-3.5671],[116.3484,-3.5834],[116.3495,-3.5898],[116.3478,-3.5941],[116.3539,-3.6003],[116.3544,-3.6052],[116.35,-3.611],[116.3535,-3.6192],[116.3534,-3.6237],[116.359,-3.6369],[116.3602,-3.6461],[116.3623,-3.6508],[116.3703,-3.6515],[116.3732,-3.6499],[116.3788,-3.6522],[116.3845,-3.6474],[116.3833,-3.6423],[116.3864,-3.6275],[116.3909,-3.6259],[116.3991,-3.6265],[116.3992,-3.6127],[116.4023,-3.6071],[116.4025,-3.5902],[116.4047,-3.58],[116.4084,-3.5706],[116.4095,-3.5596],[116.4057,-3.5539],[116.4068,-3.5483],[116.407,-3.5371],[116.4094,-3.5229],[116.4147,-3.5142],[116.4182,-3.5047],[116.4179,-3.4986],[116.42,-3.4939],[116.4192,-3.4889],[116.4209,-3.4811],[116.4204,-3.4669],[116.4228,-3.4515],[116.4256,-3.4461],[116.4297,-3.4344],[116.435,-3.4223],[116.432,-3.4126],[116.4327,-3.4],[116.4358,-3.3905],[116.4358,-3.3859],[116.433,-3.3773],[116.4317,-3.3675],[116.4288,-3.3641],[116.4229,-3.3652]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[116.268,-3.2207],[116.2635,-3.2143],[116.2562,-3.2093],[116.243,-3.2185],[116.2336,-3.2264],[116.2267,-3.236],[116.2219,-3.2376],[116.2211,-3.2406],[116.2139,-3.2447],[116.2033,-3.2537],[116.1963,-3.2575],[116.1843,-3.2688],[116.1662,-3.2807],[116.157,-3.2873],[116.1432,-3.2941],[116.1401,-3.3035],[116.1344,-3.3004],[116.1257,-3.2978],[116.1189,-3.3014],[116.1148,-3.3071],[116.1137,-3.3147],[116.1108,-3.3208],[116.1056,-3.3397],[116.1,-3.3447],[116.0984,-3.3498],[116.1033,-3.3553],[116.0976,-3.371],[116.0939,-3.3777],[116.092,-3.3855],[116.0831,-3.4028],[116.0796,-3.4072],[116.0777,-3.4158],[116.0709,-3.4296],[116.0706,-3.4365],[116.063,-3.4492],[116.0608,-3.4543],[116.0462,-3.4689],[116.0394,-3.4813],[116.0415,-3.4876],[116.0411,-3.5049],[116.0425,-3.5085],[116.0404,-3.5201],[116.0445,-3.5262],[116.0474,-3.533],[116.0454,-3.5479],[116.0426,-3.5539],[116.039,-3.5553],[116.041,-3.5645],[116.0389,-3.5705],[116.0368,-3.5823],[116.0276,-3.597],[116.0189,-3.6022],[116.0124,-3.6119],[116.0101,-3.613],[116.0092,-3.6202],[116.0106,-3.6284],[116.0047,-3.6326],[116.0025,-3.6385],[116.0119,-3.6435],[116.0085,-3.6458],[116.0122,-3.6545],[116.0083,-3.6618],[116.0091,-3.6708],[116.007,-3.681],[116.014,-3.6909],[116.0129,-3.695],[116.0159,-3.6985],[116.0165,-3.7067],[116.0217,-3.7083],[116.0244,-3.7204],[116.0258,-3.7222],[116.0243,-3.7298],[116.03,-3.736],[116.0309,-3.7391],[116.0415,-3.7498],[116.0511,-3.7608],[116.0619,-3.7769],[116.0705,-3.7942],[116.0782,-3.8117],[116.0806,-3.8195],[116.082,-3.8341],[116.0758,-3.8473],[116.0697,-3.8491],[116.0653,-3.8473],[116.0646,-3.8618],[116.0608,-3.8729],[116.0675,-3.876],[116.0651,-3.8846],[116.0648,-3.8963],[116.0574,-3.9043],[116.06,-3.9071],[116.0675,-3.9049],[116.0745,-3.91],[116.0779,-3.9178],[116.0794,-3.9245],[116.0773,-3.9332],[116.0719,-3.9386],[116.0683,-3.9382],[116.0652,-3.9557],[116.0649,-3.9668],[116.0611,-3.9712],[116.0589,-3.9792],[116.0509,-3.9903],[116.0553,-3.9957],[116.0542,-4.0011],[116.0568,-4.0046],[116.0497,-4.0184],[116.0444,-4.0147],[116.0411,-4.0168],[116.0394,-4.0229],[116.0472,-4.031],[116.0502,-4.0365],[116.0497,-4.0408],[116.0517,-4.0539],[116.0488,-4.0606],[116.0505,-4.0623],[116.0553,-4.0529],[116.0559,-4.0436],[116.063,-4.0387],[116.0685,-4.0373],[116.0717,-4.0404],[116.0726,-4.0486],[116.0809,-4.0493],[116.0846,-4.053],[116.0876,-4.0515],[116.0949,-4.057],[116.095,-4.0606],[116.0907,-4.0651],[116.0945,-4.0756],[116.091,-4.0759],[116.0881,-4.0808],[116.0952,-4.0823],[116.0992,-4.0748],[116.098,-4.0708],[116.1016,-4.0624],[116.0995,-4.0599],[116.1005,-4.0538],[116.1081,-4.0441],[116.1077,-4.0371],[116.1107,-4.035],[116.1149,-4.0372],[116.1162,-4.0325],[116.1215,-4.0274],[116.1278,-4.0342],[116.1417,-4.0363],[116.1502,-4.0312],[116.1526,-4.0255],[116.1568,-4.0233],[116.162,-4.0135],[116.1664,-4.0104],[116.1708,-4.0001],[116.1799,-3.9962],[116.1833,-3.9923],[116.1891,-3.9924],[116.1926,-3.9868],[116.2044,-3.983],[116.2102,-3.9847],[116.2103,-3.9809],[116.2053,-3.9756],[116.203,-3.9701],[116.2055,-3.9665],[116.2033,-3.9602],[116.2079,-3.9531],[116.2212,-3.9448],[116.2324,-3.9417],[116.2438,-3.9427],[116.2567,-3.9312],[116.2562,-3.929],[116.2623,-3.9209],[116.2637,-3.9161],[116.2738,-3.9074],[116.2815,-3.907],[116.2859,-3.9093],[116.2908,-3.9194],[116.2951,-3.9183],[116.3107,-3.917],[116.3116,-3.9092],[116.311,-3.901],[116.3067,-3.8973],[116.3045,-3.8889],[116.3072,-3.8756],[116.3108,-3.8678],[116.3059,-3.869],[116.2952,-3.8631],[116.2945,-3.8586],[116.2988,-3.8484],[116.2919,-3.8435],[116.2864,-3.8424],[116.2839,-3.8371],[116.2755,-3.8271],[116.2725,-3.8211],[116.2723,-3.8166],[116.2762,-3.8121],[116.274,-3.8075],[116.2775,-3.7975],[116.2876,-3.7956],[116.294,-3.7842],[116.2977,-3.7859],[116.3035,-3.7811],[116.3069,-3.7813],[116.3126,-3.7772],[116.3168,-3.7722],[116.3169,-3.7668],[116.3199,-3.7614],[116.3238,-3.7498],[116.3285,-3.7409],[116.3338,-3.7383],[116.3368,-3.7256],[116.3311,-3.7246],[116.3262,-3.7275],[116.3149,-3.7285],[116.3113,-3.7237],[116.305,-3.7208],[116.3003,-3.7121],[116.3017,-3.7023],[116.3028,-3.6865],[116.3054,-3.6825],[116.299,-3.6811],[116.2969,-3.6769],[116.2958,-3.6696],[116.2978,-3.6603],[116.297,-3.6525],[116.3006,-3.6424],[116.2974,-3.6362],[116.2979,-3.6288],[116.293,-3.6245],[116.2902,-3.6247],[116.2887,-3.6129],[116.2929,-3.6004],[116.3062,-3.5909],[116.298,-3.5763],[116.2916,-3.5676],[116.286,-3.5629],[116.2781,-3.561],[116.2717,-3.5511],[116.271,-3.5389],[116.2742,-3.5284],[116.2702,-3.526],[116.2771,-3.522],[116.2891,-3.5123],[116.2906,-3.5068],[116.2999,-3.504],[116.3118,-3.5051],[116.314,-3.5026],[116.3137,-3.4865],[116.3144,-3.4761],[116.3119,-3.4621],[116.3084,-3.451],[116.3025,-3.4418],[116.2941,-3.4307],[116.2834,-3.4192],[116.2752,-3.413],[116.269,-3.4063],[116.2641,-3.4028],[116.2532,-3.3888],[116.25,-3.3739],[116.2511,-3.3604],[116.2556,-3.3527],[116.2556,-3.3464],[116.2621,-3.3355],[116.265,-3.3249],[116.2641,-3.3191],[116.2647,-3.31],[116.2682,-3.3044],[116.2691,-3.2967],[116.2673,-3.2894],[116.2736,-3.2824],[116.2737,-3.2773],[116.2718,-3.2686],[116.2752,-3.2646],[116.2699,-3.2505],[116.2726,-3.2388],[116.2804,-3.2208],[116.2796,-3.2139],[116.2733,-3.2204],[116.268,-3.2207]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[116.0785,-3.1461],[116.0721,-3.1461],[116.0689,-3.1504],[116.0692,-3.154],[116.0775,-3.1622],[116.0808,-3.1621],[116.0856,-3.1513],[116.0851,-3.1467],[116.0785,-3.1461]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[116.2796,-3.0811],[116.2753,-3.0787],[116.2721,-3.0884],[116.2779,-3.0928],[116.2829,-3.0841],[116.2796,-3.0811]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[116.2824,-3.0731],[116.2855,-3.0686],[116.2822,-3.0668],[116.2775,-3.0686],[116.2824,-3.0731]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[116.1847,-3.0394],[116.1803,-3.0365],[116.173,-3.0359],[116.1718,-3.0392],[116.1672,-3.0406],[116.1723,-3.0572],[116.1766,-3.059],[116.1867,-3.0424],[116.1847,-3.0394]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[116.1064,-2.9949],[116.102,-2.9946],[116.1004,-2.9993],[116.1039,-3.0072],[116.108,-3.0087],[116.1089,-3.0034],[116.1119,-3.0003],[116.1106,-2.9952],[116.1064,-2.9949]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[116.1285,-2.9942],[116.123,-2.9912],[116.1134,-2.9969],[116.1099,-3.0039],[116.1104,-3.0071],[116.118,-3.0075],[116.1229,-3.0116],[116.1334,-3.0077],[116.1409,-3.0122],[116.1421,-3.0078],[116.1357,-3.0053],[116.1285,-2.9942]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[116.1488,-2.9896],[116.1442,-2.9866],[116.1389,-2.9782],[116.1358,-2.9782],[116.1348,-2.9852],[116.1376,-2.9915],[116.1337,-2.995],[116.1384,-3.0057],[116.1413,-3.0055],[116.1468,-3.0092],[116.1538,-3.0101],[116.1602,-3.0142],[116.1594,-3.0203],[116.1553,-3.0304],[116.1621,-3.0327],[116.1693,-3.0375],[116.1726,-3.0324],[116.1724,-3.0189],[116.1765,-2.9975],[116.1711,-2.9951],[116.1679,-2.9961],[116.1593,-2.9919],[116.1558,-2.9922],[116.1488,-2.9896]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[116.1367,-2.9914],[116.134,-2.9854],[116.1355,-2.9746],[116.1291,-2.9773],[116.1275,-2.9833],[116.1236,-2.9873],[116.1246,-2.9907],[116.1338,-2.9931],[116.1367,-2.9914]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[116.1508,-2.8996],[116.1477,-2.8993],[116.1465,-2.9107],[116.1447,-2.9141],[116.1444,-2.9223],[116.1484,-2.9352],[116.1639,-2.9422],[116.1767,-2.946],[116.1793,-2.9498],[116.1883,-2.9497],[116.2003,-2.9433],[116.2021,-2.9392],[116.1914,-2.9331],[116.1882,-2.9276],[116.18,-2.9274],[116.1704,-2.9161],[116.1697,-2.9117],[116.1607,-2.9069],[116.1583,-2.9025],[116.1508,-2.8996]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[116.1058,-2.8655],[116.1064,-2.8678],[116.1139,-2.8702],[116.116,-2.8677],[116.1058,-2.8655]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[116.1117,-2.8149],[116.1156,-2.8223],[116.1215,-2.8234],[116.1168,-2.816],[116.1117,-2.8149]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[116.2107,-2.6195],[116.2065,-2.6204],[116.2037,-2.6171],[116.1967,-2.6185],[116.1963,-2.6233],[116.2064,-2.6313],[116.212,-2.6303],[116.2142,-2.6255],[116.2107,-2.6195]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[116.3144,-2.5685],[116.3177,-2.561],[116.3227,-2.5536],[116.3173,-2.542],[116.3113,-2.5358],[116.3064,-2.5401],[116.3054,-2.551],[116.3072,-2.5656],[116.3047,-2.5688],[116.2996,-2.5691],[116.2967,-2.5726],[116.2973,-2.5799],[116.2903,-2.5866],[116.2939,-2.5905],[116.2906,-2.5966],[116.2928,-2.6005],[116.292,-2.6053],[116.2863,-2.6101],[116.2907,-2.6146],[116.3162,-2.593],[116.3198,-2.5881],[116.3235,-2.5777],[116.3238,-2.564],[116.3195,-2.5597],[116.3144,-2.5685]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[116.2733,-2.5423],[116.2784,-2.538],[116.2725,-2.5318],[116.268,-2.5331],[116.2676,-2.5375],[116.2733,-2.5423]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"LineString","coordinates":[[116.5543,-2.4086],[116.5486,-2.4021],[116.5409,-2.4019],[116.5388,-2.4],[116.5,-2.3836],[116.4928,-2.381],[116.4545,-2.3705],[116.435,-2.367],[116.3743,-2.355],[116.3204,-2.3414],[116.2637,-2.3223],[116.2514,-2.3168],[116.2346,-2.3181],[116.2047,-2.3196],[116.186,-2.321],[116.0815,-2.317],[116.0176,-2.3148],[116.0078,-2.313],[115.9975,-2.3172],[115.9927,-2.3175],[115.9844,-2.3124],[115.9671,-2.3197],[115.9419,-2.3288],[115.9299,-2.3305],[115.9111,-2.3362],[115.8995,-2.3327],[115.8903,-2.3356],[115.8894,-2.3396],[115.8913,-2.3513],[115.8869,-2.361],[115.8865,-2.3699],[115.8843,-2.3746],[115.877,-2.3704],[115.8699,-2.3723],[115.8557,-2.3859],[115.8503,-2.3878],[115.8466,-2.3943],[115.8424,-2.393],[115.8348,-2.3954],[115.8324,-2.4002],[115.8254,-2.4057],[115.8195,-2.4122],[115.8146,-2.4141],[115.8101,-2.4107],[115.8086,-2.4204],[115.8029,-2.4292],[115.8026,-2.4329],[115.8068,-2.4408],[115.8083,-2.4485],[115.8083,-2.46],[115.8092,-2.4668],[115.8125,-2.4776],[115.8126,-2.4835],[115.8106,-2.49],[115.806,-2.497],[115.8036,-2.504],[115.8235,-2.504],[115.838,-2.509],[115.8407,-2.5127],[115.8455,-2.5151],[115.8544,-2.5162],[115.868,-2.5241],[115.8779,-2.5272],[115.8807,-2.5424],[115.8876,-2.556],[115.8891,-2.5749],[115.8872,-2.5953],[115.8924,-2.6002],[115.8871,-2.6127],[115.8625,-2.6141],[115.8573,-2.616],[115.832,-2.6085],[115.8294,-2.6059],[115.8236,-2.6112],[115.8144,-2.625],[115.8118,-2.6329],[115.7911,-2.6389],[115.7849,-2.6439],[115.7775,-2.6477],[115.7761,-2.6499],[115.7645,-2.6587],[115.7441,-2.6591],[115.7359,-2.6581],[115.7254,-2.6591],[115.7227,-2.6665],[115.7204,-2.6819],[115.7141,-2.6916],[115.7092,-2.6958],[115.7062,-2.7022],[115.6927,-2.7104],[115.684,-2.7093],[115.6797,-2.7102],[115.6726,-2.7186],[115.6666,-2.7217],[115.6566,-2.7234],[115.6438,-2.7209],[115.6267,-2.7225],[115.5967,-2.7349],[115.5953,-2.749],[115.5887,-2.7733],[115.5869,-2.7784],[115.5788,-2.7945],[115.5727,-2.8109],[115.5666,-2.8176],[115.5577,-2.8252],[115.5566,-2.8282],[115.5563,-2.8388],[115.5658,-2.845],[115.5706,-2.8499],[115.5719,-2.8541],[115.5711,-2.8607],[115.5769,-2.8716],[115.577,-2.8835],[115.5949,-2.8889],[115.595,-2.8939],[115.5857,-2.9047],[115.5816,-2.9115],[115.5809,-2.9201],[115.5777,-2.9301],[115.5752,-2.9339],[115.5681,-2.9405],[115.554,-2.9442],[115.5469,-2.9404],[115.5374,-2.9717],[115.5334,-2.9825],[115.5167,-2.9997],[115.5142,-3.0129],[115.5123,-3.0294],[115.5195,-3.0331],[115.524,-3.0379],[115.5283,-3.0386],[115.5413,-3.0459],[115.5596,-3.0477],[115.5618,-3.0612],[115.5638,-3.0656],[115.5684,-3.0688],[115.5755,-3.0656],[115.5838,-3.0654],[115.593,-3.0618],[115.6037,-3.0615],[115.6094,-3.0667],[115.6255,-3.0684],[115.6286,-3.0632],[115.6337,-3.06],[115.6412,-3.0613],[115.6475,-3.0663],[115.6527,-3.0672],[115.6533,-3.0722],[115.6622,-3.0656],[115.6663,-3.0658],[115.6663,-3.0719],[115.6738,-3.0727],[115.6788,-3.0857],[115.6824,-3.0812],[115.6823,-3.0734],[115.6861,-3.0734],[115.6885,-3.0806],[115.694,-3.0824],[115.6968,-3.0796],[115.7036,-3.0806],[115.7071,-3.0845],[115.7056,-3.0919],[115.7072,-3.097],[115.7182,-3.0985],[115.7137,-3.1088],[115.7145,-3.1136],[115.7178,-3.1165],[115.7213,-3.1149],[115.7256,-3.1163],[115.7349,-3.1272],[115.733,-3.1306],[115.7353,-3.137],[115.7357,-3.1466],[115.7398,-3.1491],[115.74,-3.1549],[115.7429,-3.1609],[115.7458,-3.1582],[115.7522,-3.164],[115.7546,-3.1726],[115.7535,-3.1749],[115.7599,-3.179],[115.7646,-3.1919],[115.7728,-3.1933],[115.7796,-3.1904],[115.7925,-3.1818],[115.8012,-3.1833],[115.809,-3.1817],[115.8129,-3.1853],[115.8232,-3.1864],[115.8304,-3.1857],[115.8366,-3.1722],[115.8406,-3.1701],[115.8563,-3.1701],[115.8592,-3.1676],[115.8712,-3.1658],[115.9345,-3.1528],[115.9414,-3.1636],[115.9493,-3.1797],[115.9514,-3.1895],[115.9505,-3.198],[115.9468,-3.2052],[115.9311,-3.2161],[115.9284,-3.221],[115.9279,-3.2266],[115.9306,-3.236],[115.9345,-3.2414],[115.9468,-3.2539],[115.9508,-3.2487],[115.9555,-3.247],[115.9601,-3.249],[115.9639,-3.2469],[115.9681,-3.2352],[115.9734,-3.2245],[115.9822,-3.2209],[115.99,-3.22],[115.9959,-3.2234],[116.0011,-3.2344],[116.012,-3.2382],[116.0141,-3.2415],[116.0213,-3.2444],[116.0307,-3.2497],[116.0391,-3.257],[116.0411,-3.2616],[116.052,-3.2603],[116.0609,-3.2608],[116.0647,-3.2586],[116.0665,-3.2626],[116.0711,-3.2648],[116.0779,-3.259],[116.0828,-3.2576],[116.0848,-3.2649],[116.0842,-3.2773],[116.0889,-3.2829],[116.0987,-3.281],[116.116,-3.274],[116.1293,-3.2709],[116.1462,-3.2656],[116.1494,-3.2594],[116.1661,-3.2525],[116.1756,-3.252],[116.1776,-3.2457],[116.1813,-3.2397],[116.1833,-3.2278],[116.179,-3.2167],[116.18,-3.2117],[116.1772,-3.2031],[116.1684,-3.1805],[116.168,-3.1656],[116.1604,-3.1618],[116.1514,-3.1596],[116.1389,-3.1523],[116.1275,-3.1504],[116.1221,-3.1484],[116.1096,-3.1469],[116.0987,-3.1499],[116.0912,-3.1549],[116.0893,-3.159],[116.0825,-3.1664],[116.0806,-3.1715],[116.0705,-3.1787],[116.0764,-3.1689],[116.0722,-3.1642],[116.0706,-3.1574],[116.0682,-3.1548],[116.0718,-3.1454],[116.077,-3.1428],[116.0881,-3.1489],[116.0983,-3.1446],[116.1048,-3.1341],[116.1067,-3.1378],[116.1172,-3.1385],[116.1219,-3.1401],[116.1316,-3.1374],[116.1422,-3.1444],[116.1456,-3.1453],[116.1602,-3.1533],[116.1724,-3.1567],[116.1805,-3.1608],[116.1877,-3.1527],[116.1874,-3.1483],[116.1968,-3.1402],[116.2079,-3.128],[116.2264,-3.1248],[116.2302,-3.1266],[116.2392,-3.1274],[116.2501,-3.1228],[116.2544,-3.1261],[116.2617,-3.1268],[116.2647,-3.1246],[116.2683,-3.1287],[116.2758,-3.1288],[116.2702,-3.1114],[116.2658,-3.111],[116.2518,-3.1058],[116.239,-3.0981],[116.2352,-3.0945],[116.2166,-3.0895],[116.2154,-3.0809],[116.2104,-3.0771],[116.2051,-3.0776],[116.1975,-3.0757],[116.1887,-3.0683],[116.1885,-3.0658],[116.1757,-3.0631],[116.1702,-3.0591],[116.1689,-3.0508],[116.1629,-3.0383],[116.1539,-3.0339],[116.153,-3.0273],[116.1578,-3.0178],[116.1563,-3.0146],[116.1443,-3.0126],[116.1408,-3.0145],[116.1344,-3.0114],[116.1203,-3.0139],[116.1173,-3.0095],[116.1018,-3.0089],[116.1001,-3.0007],[116.0939,-2.9992],[116.0829,-3.0069],[116.0779,-3.0167],[116.0728,-3.0213],[116.0659,-3.0238],[116.064,-3.0269],[116.0603,-3.0409],[116.0567,-3.034],[116.0602,-3.0313],[116.0594,-3.0274],[116.0649,-3.0205],[116.0737,-3.0148],[116.0816,-3.0046],[116.0901,-2.9961],[116.0894,-2.9947],[116.0749,-2.9979],[116.0675,-3.0011],[116.0578,-3.008],[116.0556,-3.0063],[116.0615,-3.0012],[116.068,-2.9931],[116.0763,-2.9948],[116.0838,-2.9924],[116.0847,-2.9899],[116.0797,-2.9801],[116.0885,-2.9872],[116.1001,-2.9779],[116.1129,-2.9734],[116.1136,-2.969],[116.1205,-2.9654],[116.122,-2.9597],[116.1196,-2.9553],[116.1068,-2.9495],[116.1025,-2.9442],[116.1012,-2.9343],[116.105,-2.925],[116.1053,-2.9169],[116.1169,-2.9019],[116.1198,-2.9001],[116.1311,-2.8868],[116.1305,-2.8756],[116.1233,-2.872],[116.1116,-2.8703],[116.1013,-2.8662],[116.0906,-2.8606],[116.0855,-2.8617],[116.0766,-2.8545],[116.0753,-2.8507],[116.0842,-2.8524],[116.0905,-2.8579],[116.0996,-2.8579],[116.1097,-2.8637],[116.1198,-2.8657],[116.1281,-2.8644],[116.131,-2.8663],[116.1337,-2.8589],[116.1341,-2.851],[116.1314,-2.8462],[116.1317,-2.8411],[116.1279,-2.8355],[116.1198,-2.8283],[116.1191,-2.8259],[116.1072,-2.8145],[116.1193,-2.8145],[116.1255,-2.8194],[116.1292,-2.8177],[116.138,-2.8047],[116.1364,-2.8005],[116.1422,-2.7918],[116.1425,-2.8003],[116.1391,-2.8083],[116.1384,-2.8156],[116.1344,-2.8249],[116.1373,-2.8298],[116.1442,-2.8375],[116.1437,-2.8429],[116.1466,-2.8445],[116.1489,-2.8529],[116.1525,-2.8555],[116.1501,-2.8622],[116.1509,-2.8672],[116.1545,-2.8714],[116.1549,-2.8783],[116.1528,-2.8843],[116.1529,-2.8894],[116.1557,-2.9004],[116.16,-2.902],[116.1617,-2.9064],[116.1663,-2.9067],[116.1718,-2.9108],[116.1722,-2.9147],[116.1791,-2.9218],[116.183,-2.9243],[116.1872,-2.9231],[116.1927,-2.9288],[116.2054,-2.9358],[116.2087,-2.9438],[116.2071,-2.9553],[116.2092,-2.9755],[116.2115,-2.9807],[116.2127,-2.9888],[116.2112,-2.9968],[116.2121,-3.0004],[116.2208,-3.0068],[116.2279,-3.0049],[116.2374,-3.0069],[116.2458,-3.0047],[116.258,-3.0033],[116.2602,-3.0054],[116.2691,-3.0028],[116.273,-2.9983],[116.2857,-2.9781],[116.2886,-2.9773],[116.2937,-2.971],[116.3018,-2.9639],[116.303,-2.9613],[116.315,-2.9473],[116.3179,-2.9382],[116.3249,-2.9313],[116.3254,-2.9258],[116.3323,-2.9134],[116.3411,-2.8997],[116.3507,-2.8879],[116.3558,-2.8863],[116.3642,-2.8781],[116.3593,-2.8638],[116.3607,-2.8556],[116.3643,-2.8424],[116.3648,-2.8338],[116.3702,-2.815],[116.3722,-2.8033],[116.37,-2.8029],[116.3639,-2.7883],[116.3593,-2.7649],[116.3602,-2.7197],[116.361,-2.7174],[116.3649,-2.6895],[116.3664,-2.6837],[116.3659,-2.6724],[116.3685,-2.6599],[116.3727,-2.6471],[116.3805,-2.6305],[116.4006,-2.6012],[116.4101,-2.5896],[116.4152,-2.5795],[116.4135,-2.5782],[116.398,-2.581],[116.3912,-2.5843],[116.3843,-2.5733],[116.3731,-2.5649],[116.3668,-2.5652],[116.3588,-2.5618],[116.3575,-2.5503],[116.345,-2.5603],[116.3395,-2.5662],[116.3291,-2.5827],[116.3288,-2.5884],[116.3256,-2.5957],[116.3178,-2.6021],[116.3161,-2.6083],[116.3026,-2.6152],[116.2871,-2.6259],[116.2854,-2.63],[116.2775,-2.639],[116.2717,-2.643],[116.2706,-2.6489],[116.2626,-2.656],[116.2548,-2.6676],[116.2514,-2.6698],[116.2464,-2.6696],[116.2378,-2.6665],[116.226,-2.6738],[116.234,-2.6633],[116.2494,-2.6673],[116.2527,-2.6661],[116.2603,-2.655],[116.2594,-2.6503],[116.2505,-2.645],[116.2461,-2.6364],[116.2475,-2.6289],[116.2457,-2.6227],[116.24,-2.6184],[116.2348,-2.6168],[116.2277,-2.6226],[116.2148,-2.6258],[116.2126,-2.6305],[116.2068,-2.632],[116.196,-2.6247],[116.1975,-2.6169],[116.2085,-2.6182],[116.2125,-2.6236],[116.2245,-2.622],[116.2332,-2.6152],[116.2376,-2.6152],[116.2456,-2.619],[116.2503,-2.6292],[116.256,-2.6347],[116.2629,-2.6378],[116.272,-2.6381],[116.2782,-2.6316],[116.2771,-2.6268],[116.2714,-2.6212],[116.2735,-2.6184],[116.2802,-2.6223],[116.2876,-2.6155],[116.2855,-2.6106],[116.2906,-2.6055],[116.292,-2.6014],[116.2877,-2.5937],[116.2889,-2.5864],[116.2951,-2.5778],[116.2963,-2.5691],[116.305,-2.5671],[116.3035,-2.554],[116.3043,-2.5372],[116.3006,-2.5326],[116.2842,-2.5385],[116.2745,-2.5449],[116.2694,-2.5436],[116.2654,-2.5378],[116.2675,-2.5325],[116.272,-2.5309],[116.2796,-2.5363],[116.2834,-2.5358],[116.2912,-2.5314],[116.2984,-2.5206],[116.3022,-2.5238],[116.3099,-2.5241],[116.3173,-2.5304],[116.328,-2.5311],[116.3365,-2.5335],[116.3453,-2.5271],[116.3531,-2.5184],[116.3612,-2.5246],[116.3736,-2.5225],[116.384,-2.5226],[116.398,-2.527],[116.4088,-2.5186],[116.4127,-2.5108],[116.4145,-2.5007],[116.4087,-2.4922],[116.4046,-2.4894],[116.3893,-2.4845],[116.3799,-2.4808],[116.3793,-2.4789],[116.406,-2.4879],[116.4167,-2.4989],[116.4334,-2.4986],[116.4402,-2.5003],[116.449,-2.5004],[116.4581,-2.502],[116.4724,-2.5077],[116.4773,-2.5118],[116.4782,-2.5168],[116.4764,-2.523],[116.4796,-2.5323],[116.4799,-2.5398],[116.4774,-2.549],[116.4821,-2.5527],[116.4828,-2.5608],[116.4808,-2.5637],[116.4818,-2.572],[116.4912,-2.5702],[116.4995,-2.5663],[116.5123,-2.5635],[116.5175,-2.5594],[116.519,-2.5514],[116.5266,-2.5427],[116.5323,-2.5383],[116.5298,-2.5333],[116.5306,-2.5269],[116.5249,-2.518],[116.5276,-2.5021],[116.5321,-2.488],[116.5376,-2.4793],[116.5401,-2.4703],[116.545,-2.4611],[116.5434,-2.4536],[116.5463,-2.4406],[116.5525,-2.4252],[116.5521,-2.422],[116.5543,-2.4086]]}},{"type":"Feature","properties":{"mhid":"1332:354","alt_name":"KABUPATEN BANJAR","latitude":-3.31667,"longitude":115.08333,"sample_value":66},"geometry":{"type":"LineString","coordinates":[[115.5566,-2.8282],[115.5476,-2.8303],[115.5428,-2.8355],[115.5401,-2.8473],[115.5275,-2.8601],[115.5254,-2.868],[115.5183,-2.8748],[115.5128,-2.8843],[115.5067,-2.8849],[115.5006,-2.9018],[115.4974,-2.9039],[115.4951,-2.91],[115.4854,-2.9162],[115.4846,-2.925],[115.4799,-2.9326],[115.477,-2.9408],[115.4656,-2.9429],[115.4587,-2.9508],[115.4539,-2.9519],[115.448,-2.9558],[115.4425,-2.9615],[115.4348,-2.9764],[115.4299,-2.9768],[115.4208,-2.9826],[115.4119,-2.9827],[115.405,-2.9924],[115.3991,-2.9951],[115.392,-2.9886],[115.3897,-2.9794],[115.3807,-2.9769],[115.3686,-2.9788],[115.3565,-2.9846],[115.3515,-2.9827],[115.3506,-2.9782],[115.3526,-2.9748],[115.3473,-2.9716],[115.3458,-2.966],[115.3402,-2.9649],[115.333,-2.9676],[115.3219,-2.9688],[115.3139,-2.974],[115.3128,-2.9812],[115.2986,-2.9885],[115.2849,-2.9931],[115.2792,-2.9965],[115.2699,-3.0108],[115.267,-3.0196],[115.2598,-3.0288],[115.2525,-3.0364],[115.2471,-3.0439],[115.238,-3.0496],[115.22,-3.0383],[115.2164,-3.0432],[115.2086,-3.0584],[115.2028,-3.0761],[115.191,-3.0911],[115.1691,-3.1155],[115.1995,-3.1243],[115.2182,-3.127],[115.2264,-3.1329],[115.2351,-3.1349],[115.2422,-3.1351],[115.2418,-3.1411],[115.239,-3.1503],[115.24,-3.1623],[115.2359,-3.168],[115.2276,-3.1749],[115.2246,-3.1827],[115.2153,-3.1862],[115.2104,-3.1903],[115.2038,-3.2021],[115.2039,-3.2121],[115.1975,-3.2092],[115.1828,-3.2075],[115.1701,-3.207],[115.1405,-3.2006],[115.1129,-3.1932],[115.0996,-3.1882],[115.0892,-3.1833],[115.075,-3.1746],[115.0477,-3.1569],[115.0024,-3.122],[114.9719,-3.1028],[114.9572,-3.0931],[114.8865,-3.0478],[114.8675,-3.036],[114.8479,-3.0253],[114.8319,-3.0179],[114.8277,-3.0148],[114.8276,-3.019],[114.8295,-3.0739],[114.8278,-3.0924],[114.82,-3.134],[114.8163,-3.2001],[114.8137,-3.1996],[114.8061,-3.2044],[114.8006,-3.2098],[114.7956,-3.2081],[114.7937,-3.2014],[114.7891,-3.2018],[114.7866,-3.2147],[114.7897,-3.2201],[114.7825,-3.2251],[114.7798,-3.2295],[114.7684,-3.2266],[114.7636,-3.2323],[114.75,-3.236],[114.7046,-3.2534],[114.6882,-3.2575],[114.6681,-3.264],[114.655,-3.2697],[114.6386,-3.2756],[114.6399,-3.2883],[114.6372,-3.2921],[114.6285,-3.312],[114.634,-3.3204],[114.6423,-3.3261],[114.6461,-3.3272],[114.653,-3.3336],[114.6596,-3.3356],[114.657,-3.3409],[114.657,-3.3484],[114.646,-3.3441],[114.6352,-3.3468],[114.625,-3.3506],[114.6241,-3.3612],[114.6202,-3.3633],[114.615,-3.369],[114.6078,-3.3724],[114.6056,-3.3699],[114.5957,-3.3668],[114.5861,-3.3821],[114.5785,-3.3787],[114.5771,-3.3757],[114.5696,-3.3753],[114.5666,-3.3736],[114.5699,-3.3668],[114.559,-3.371],[114.5547,-3.3741],[114.545,-3.3736],[114.5376,-3.3692],[114.5338,-3.3697],[114.5219,-3.3633],[114.5219,-3.3633],[114.5219,-3.3633],[114.5087,-3.3831],[114.5066,-3.3886],[114.5067,-3.3951],[114.5102,-3.4107],[114.5178,-3.4262],[114.5197,-3.4391],[114.5174,-3.4477],[114.5148,-3.4524],[114.5123,-3.4641],[114.5126,-3.4738],[114.5155,-3.4908],[114.5119,-3.536],[114.5092,-3.5444],[114.5166,-3.5443],[114.5306,-3.5408],[114.5489,-3.5381],[114.556,-3.5377],[114.5822,-3.5333],[114.6051,-3.5329],[114.6113,-3.5343],[114.6206,-3.5308],[114.6569,-3.523],[114.6668,-3.5217],[114.6824,-3.5178],[114.7044,-3.5135],[114.7003,-3.4843],[114.6966,-3.4747],[114.6964,-3.4678],[114.6984,-3.4589],[114.707,-3.4443],[114.7078,-3.441],[114.705,-3.4368],[114.7189,-3.426],[114.7164,-3.4225],[114.7195,-3.4155],[114.7235,-3.4128],[114.7241,-3.4063],[114.7409,-3.3713],[114.7586,-3.3827],[114.7707,-3.3896],[114.7955,-3.4069],[114.8007,-3.4128],[114.8094,-3.4194],[114.8146,-3.4181],[114.8235,-3.4218],[114.8247,-3.4252],[114.844,-3.4254],[114.855,-3.4268],[114.8616,-3.4227],[114.867,-3.4291],[114.8698,-3.4353],[114.8776,-3.436],[114.8837,-3.4386],[114.8862,-3.4437],[114.8902,-3.4446],[114.8958,-3.4417],[114.9074,-3.4443],[114.9301,-3.4465],[114.9278,-3.4578],[114.9266,-3.4709],[114.9151,-3.4686],[114.9301,-3.4942],[114.93,-3.5055],[114.9233,-3.5414],[114.9318,-3.5404],[114.931,-3.5524],[114.9288,-3.558],[114.9181,-3.572],[114.9187,-3.5774],[114.9228,-3.5822],[114.9217,-3.5922],[114.92,-3.5959],[114.917,-3.6065],[114.9187,-3.6099],[114.9304,-3.6098],[114.9573,-3.6142],[114.9643,-3.6219],[114.9681,-3.6284],[114.9682,-3.6389],[114.9449,-3.6677],[114.9353,-3.6879],[114.9345,-3.7022],[114.9349,-3.7109],[114.9368,-3.7226],[114.9405,-3.7274],[114.9503,-3.7306],[114.9568,-3.7307],[114.9655,-3.7275],[114.9699,-3.7233],[114.9772,-3.7123],[114.9834,-3.7002],[114.9989,-3.7028],[115.0019,-3.7016],[115.0117,-3.693],[115.0322,-3.687],[115.0834,-3.6691],[115.0899,-3.6643],[115.0991,-3.6523],[115.1149,-3.6385],[115.1221,-3.6343],[115.1496,-3.6351],[115.1535,-3.6338],[115.1717,-3.6202],[115.1884,-3.6102],[115.197,-3.6078],[115.2193,-3.6076],[115.2371,-3.6036],[115.2474,-3.5962],[115.2597,-3.5897],[115.2658,-3.5801],[115.2735,-3.5723],[115.2789,-3.5691],[115.2964,-3.5623],[115.301,-3.5591],[115.3114,-3.5497],[115.3181,-3.5316],[115.3256,-3.5202],[115.3337,-3.5138],[115.3426,-3.5097],[115.3494,-3.5086],[115.3607,-3.5097],[115.3735,-3.5083],[115.3805,-3.5063],[115.396,-3.4994],[115.4124,-3.4889],[115.4154,-3.4863],[115.4202,-3.4782],[115.4216,-3.469],[115.4181,-3.4591],[115.4075,-3.4459],[115.4118,-3.4407],[115.4236,-3.434],[115.4273,-3.4253],[115.4301,-3.4076],[115.4299,-3.3631],[115.4354,-3.3531],[115.4375,-3.3442],[115.4405,-3.3397],[115.4476,-3.334],[115.4555,-3.3323],[115.4599,-3.3292],[115.4609,-3.3222],[115.4564,-3.3171],[115.4532,-3.306],[115.4573,-3.2862],[115.4526,-3.2783],[115.4496,-3.2757],[115.4403,-3.2727],[115.4074,-3.2699],[115.3899,-3.265],[115.3729,-3.2574],[115.3741,-3.2547],[115.3824,-3.2522],[115.3896,-3.2524],[115.3919,-3.2494],[115.4032,-3.2492],[115.4058,-3.2418],[115.4106,-3.2391],[115.4135,-3.2287],[115.4167,-3.1949],[115.4214,-3.1717],[115.4221,-3.1588],[115.4388,-3.1367],[115.4635,-3.1164],[115.4817,-3.1021],[115.5017,-3.0846],[115.507,-3.066],[115.5077,-3.055],[115.5123,-3.0294],[115.5142,-3.0129],[115.5167,-2.9997],[115.5334,-2.9825],[115.5374,-2.9717],[115.5469,-2.9404],[115.554,-2.9442],[115.5681,-2.9405],[115.5752,-2.9339],[115.5777,-2.9301],[115.5809,-2.9201],[115.5816,-2.9115],[115.5857,-2.9047],[115.595,-2.8939],[115.5949,-2.8889],[115.577,-2.8835],[115.5769,-2.8716],[115.5711,-2.8607],[115.5719,-2.8541],[115.5706,-2.8499],[115.5658,-2.845],[115.5563,-2.8388],[115.5566,-2.8282]]}},{"type":"Feature","properties":{"mhid":"1332:355","alt_name":"KABUPATEN BARITO KUALA","latitude":-3.08333,"longitude":114.61667,"sample_value":666},"geometry":{"type":"LineString","coordinates":[[114.8277,-3.0148],[114.8243,-3.0109],[114.815,-3.007],[114.8158,-2.9932],[114.8148,-2.988],[114.8074,-2.9776],[114.8084,-2.9732],[114.8046,-2.968],[114.803,-2.9402],[114.8113,-2.9324],[114.8153,-2.93],[114.8398,-2.8744],[114.8402,-2.8707],[114.8119,-2.8067],[114.8098,-2.7959],[114.805,-2.7525],[114.8044,-2.7421],[114.8357,-2.6185],[114.852,-2.5561],[114.8613,-2.523],[114.8605,-2.5215],[114.8528,-2.528],[114.8467,-2.5394],[114.8427,-2.5497],[114.8371,-2.5586],[114.8273,-2.5664],[114.8066,-2.5791],[114.8025,-2.583],[114.797,-2.592],[114.7939,-2.6037],[114.7919,-2.6302],[114.7936,-2.649],[114.791,-2.6698],[114.7866,-2.6832],[114.7847,-2.6852],[114.7742,-2.6936],[114.7684,-2.7021],[114.7633,-2.7163],[114.7605,-2.7211],[114.7514,-2.7241],[114.7334,-2.7342],[114.7222,-2.739],[114.7154,-2.7406],[114.7038,-2.7395],[114.6911,-2.7354],[114.684,-2.7364],[114.6778,-2.7395],[114.6734,-2.7462],[114.6714,-2.7519],[114.6734,-2.7609],[114.6786,-2.7676],[114.68,-2.7733],[114.6791,-2.7815],[114.674,-2.79],[114.6664,-2.7991],[114.6615,-2.8022],[114.6499,-2.804],[114.635,-2.8053],[114.5991,-2.8151],[114.6179,-2.8832],[114.6176,-2.8833],[114.6073,-2.8874],[114.5679,-2.8665],[114.5417,-2.9237],[114.5245,-2.9267],[114.5464,-2.9472],[114.5385,-2.9573],[114.5359,-2.9605],[114.5069,-2.9973],[114.5056,-3.0014],[114.5037,-3.0025],[114.4964,-3.0148],[114.5461,-3.0676],[114.5458,-3.0678],[114.5159,-3.0935],[114.4876,-3.1165],[114.478,-3.1251],[114.4563,-3.143],[114.4538,-3.15],[114.4454,-3.1621],[114.4294,-3.1743],[114.4356,-3.188],[114.4502,-3.2099],[114.4368,-3.2181],[114.4211,-3.2477],[114.4066,-3.2573],[114.4028,-3.252],[114.3837,-3.2674],[114.3798,-3.3003],[114.3719,-3.3075],[114.3719,-3.3202],[114.3685,-3.326],[114.3542,-3.3421],[114.3461,-3.3524],[114.3507,-3.3685],[114.3558,-3.3773],[114.3589,-3.3863],[114.3589,-3.3865],[114.3596,-3.3942],[114.3576,-3.4027],[114.3534,-3.4146],[114.3473,-3.4176],[114.3478,-3.4257],[114.3465,-3.4314],[114.3495,-3.4406],[114.3538,-3.4423],[114.3508,-3.451],[114.3491,-3.4616],[114.3599,-3.4653],[114.3637,-3.4683],[114.3945,-3.4821],[114.3975,-3.4813],[114.4016,-3.4851],[114.4064,-3.4856],[114.408,-3.4886],[114.4205,-3.4957],[114.4289,-3.4984],[114.4308,-3.5013],[114.4396,-3.5037],[114.4453,-3.5026],[114.4813,-3.5027],[114.5092,-3.5444],[114.5119,-3.536],[114.5155,-3.4908],[114.5126,-3.4738],[114.5123,-3.4641],[114.5148,-3.4524],[114.5174,-3.4477],[114.5197,-3.4391],[114.5178,-3.4262],[114.5102,-3.4107],[114.5067,-3.3951],[114.5066,-3.3886],[114.5087,-3.3831],[114.5219,-3.3633],[114.5219,-3.3633],[114.5288,-3.3552],[114.5394,-3.3456],[114.5483,-3.336],[114.5537,-3.3287],[114.5581,-3.3194],[114.5635,-3.3104],[114.566,-3.2992],[114.5669,-3.2699],[114.5691,-3.2672],[114.5765,-3.2702],[114.5768,-3.2756],[114.5829,-3.2735],[114.5954,-3.2801],[114.5966,-3.2859],[114.6015,-3.2887],[114.6065,-3.2856],[114.6061,-3.2804],[114.6133,-3.2794],[114.6251,-3.2851],[114.6351,-3.2805],[114.6386,-3.2756],[114.655,-3.2697],[114.6681,-3.264],[114.6882,-3.2575],[114.7046,-3.2534],[114.75,-3.236],[114.7636,-3.2323],[114.7684,-3.2266],[114.7798,-3.2295],[114.7825,-3.2251],[114.7897,-3.2201],[114.7866,-3.2147],[114.7891,-3.2018],[114.7937,-3.2014],[114.7956,-3.2081],[114.8006,-3.2098],[114.8061,-3.2044],[114.8137,-3.1996],[114.8163,-3.2001],[114.82,-3.134],[114.8278,-3.0924],[114.8295,-3.0739],[114.8276,-3.019],[114.8277,-3.0148]]}},{"type":"Feature","properties":{"mhid":"1332:356","alt_name":"KABUPATEN TAPIN","latitude":-2.91667,"longitude":115.03333,"sample_value":796},"geometry":{"type":"LineString","coordinates":[[115.5067,-2.8849],[115.4995,-2.8804],[115.4879,-2.8784],[115.4785,-2.8729],[115.4744,-2.8748],[115.4663,-2.873],[115.458,-2.8735],[115.4499,-2.8851],[115.4432,-2.8892],[115.4382,-2.8836],[115.4313,-2.8879],[115.4243,-2.8901],[115.4194,-2.8898],[115.4105,-2.8927],[115.3982,-2.8912],[115.3915,-2.8856],[115.3863,-2.8854],[115.3827,-2.8817],[115.3755,-2.894],[115.3763,-2.8973],[115.384,-2.9028],[115.3841,-2.9103],[115.3812,-2.9164],[115.3718,-2.9237],[115.3661,-2.9258],[115.3542,-2.935],[115.3482,-2.9369],[115.3379,-2.937],[115.3316,-2.933],[115.3221,-2.9357],[115.318,-2.925],[115.3151,-2.924],[115.3015,-2.9238],[115.2966,-2.9331],[115.2872,-2.9296],[115.2828,-2.9296],[115.2811,-2.9175],[115.27,-2.9035],[115.2672,-2.8963],[115.2631,-2.8927],[115.2544,-2.893],[115.2451,-2.8884],[115.2327,-2.8718],[115.2307,-2.8708],[115.2144,-2.8736],[115.1981,-2.869],[115.187,-2.8648],[115.186,-2.8621],[115.1738,-2.8551],[115.146,-2.8449],[115.1275,-2.839],[115.1101,-2.8351],[115.0999,-2.8356],[115.0948,-2.8292],[115.0899,-2.8301],[115.0861,-2.8408],[115.0806,-2.8396],[115.0687,-2.8453],[115.0628,-2.8396],[115.0635,-2.8349],[115.0684,-2.8269],[115.0683,-2.8187],[115.0729,-2.8108],[115.0738,-2.7994],[115.0759,-2.79],[115.0743,-2.7866],[115.0667,-2.7828],[115.0599,-2.7848],[115.0551,-2.7841],[115.0437,-2.7853],[115.0261,-2.78],[115.021,-2.7771],[115.0045,-2.763],[114.9975,-2.7561],[114.9912,-2.7476],[114.9773,-2.7251],[114.9667,-2.705],[114.9198,-2.6233],[114.8824,-2.5589],[114.8665,-2.5319],[114.8613,-2.523],[114.852,-2.5561],[114.8357,-2.6185],[114.8044,-2.7421],[114.805,-2.7525],[114.8098,-2.7959],[114.8119,-2.8067],[114.8402,-2.8707],[114.8398,-2.8744],[114.8153,-2.93],[114.8113,-2.9324],[114.803,-2.9402],[114.8046,-2.968],[114.8084,-2.9732],[114.8074,-2.9776],[114.8148,-2.988],[114.8158,-2.9932],[114.815,-3.007],[114.8243,-3.0109],[114.8277,-3.0148],[114.8319,-3.0179],[114.8479,-3.0253],[114.8675,-3.036],[114.8865,-3.0478],[114.9572,-3.0931],[114.9719,-3.1028],[115.0024,-3.122],[115.0477,-3.1569],[115.075,-3.1746],[115.0892,-3.1833],[115.0996,-3.1882],[115.1129,-3.1932],[115.1405,-3.2006],[115.1701,-3.207],[115.1828,-3.2075],[115.1975,-3.2092],[115.2039,-3.2121],[115.2038,-3.2021],[115.2104,-3.1903],[115.2153,-3.1862],[115.2246,-3.1827],[115.2276,-3.1749],[115.2359,-3.168],[115.24,-3.1623],[115.239,-3.1503],[115.2418,-3.1411],[115.2422,-3.1351],[115.2351,-3.1349],[115.2264,-3.1329],[115.2182,-3.127],[115.1995,-3.1243],[115.1691,-3.1155],[115.191,-3.0911],[115.2028,-3.0761],[115.2086,-3.0584],[115.2164,-3.0432],[115.22,-3.0383],[115.238,-3.0496],[115.2471,-3.0439],[115.2525,-3.0364],[115.2598,-3.0288],[115.267,-3.0196],[115.2699,-3.0108],[115.2792,-2.9965],[115.2849,-2.9931],[115.2986,-2.9885],[115.3128,-2.9812],[115.3139,-2.974],[115.3219,-2.9688],[115.333,-2.9676],[115.3402,-2.9649],[115.3458,-2.966],[115.3473,-2.9716],[115.3526,-2.9748],[115.3506,-2.9782],[115.3515,-2.9827],[115.3565,-2.9846],[115.3686,-2.9788],[115.3807,-2.9769],[115.3897,-2.9794],[115.392,-2.9886],[115.3991,-2.9951],[115.405,-2.9924],[115.4119,-2.9827],[115.4208,-2.9826],[115.4299,-2.9768],[115.4348,-2.9764],[115.4425,-2.9615],[115.448,-2.9558],[115.4539,-2.9519],[115.4587,-2.9508],[115.4656,-2.9429],[115.477,-2.9408],[115.4799,-2.9326],[115.4846,-2.925],[115.4854,-2.9162],[115.4951,-2.91],[115.4974,-2.9039],[115.5006,-2.9018],[115.5067,-2.8849]]}},{"type":"Feature","properties":{"mhid":"1332:357","alt_name":"KABUPATEN HULU SUNGAI SELATAN","latitude":-2.75,"longitude":115.2,"sample_value":92},"geometry":{"type":"LineString","coordinates":[[115.1785,-2.5547],[115.1573,-2.5486],[115.1484,-2.5467],[115.142,-2.5492],[115.1276,-2.5438],[115.1112,-2.5357],[115.1012,-2.5336],[115.064,-2.5219],[114.9978,-2.4989],[114.9332,-2.5144],[114.9154,-2.5193],[114.9045,-2.5186],[114.8907,-2.5146],[114.878,-2.5253],[114.8665,-2.5319],[114.8824,-2.5589],[114.9198,-2.6233],[114.9667,-2.705],[114.9773,-2.7251],[114.9912,-2.7476],[114.9975,-2.7561],[115.0045,-2.763],[115.021,-2.7771],[115.0261,-2.78],[115.0437,-2.7853],[115.0551,-2.7841],[115.0599,-2.7848],[115.0667,-2.7828],[115.0743,-2.7866],[115.0759,-2.79],[115.0738,-2.7994],[115.0729,-2.8108],[115.0683,-2.8187],[115.0684,-2.8269],[115.0635,-2.8349],[115.0628,-2.8396],[115.0687,-2.8453],[115.0806,-2.8396],[115.0861,-2.8408],[115.0899,-2.8301],[115.0948,-2.8292],[115.0999,-2.8356],[115.1101,-2.8351],[115.1275,-2.839],[115.146,-2.8449],[115.1738,-2.8551],[115.186,-2.8621],[115.187,-2.8648],[115.1981,-2.869],[115.2144,-2.8736],[115.2307,-2.8708],[115.2327,-2.8718],[115.2451,-2.8884],[115.2544,-2.893],[115.2631,-2.8927],[115.2672,-2.8963],[115.27,-2.9035],[115.2811,-2.9175],[115.2828,-2.9296],[115.2872,-2.9296],[115.2966,-2.9331],[115.3015,-2.9238],[115.3151,-2.924],[115.318,-2.925],[115.3221,-2.9357],[115.3316,-2.933],[115.3379,-2.937],[115.3482,-2.9369],[115.3542,-2.935],[115.3661,-2.9258],[115.3718,-2.9237],[115.3812,-2.9164],[115.3841,-2.9103],[115.384,-2.9028],[115.3763,-2.8973],[115.3755,-2.894],[115.3827,-2.8817],[115.3863,-2.8854],[115.3915,-2.8856],[115.3982,-2.8912],[115.4105,-2.8927],[115.4194,-2.8898],[115.4243,-2.8901],[115.4313,-2.8879],[115.4382,-2.8836],[115.4432,-2.8892],[115.4499,-2.8851],[115.458,-2.8735],[115.4663,-2.873],[115.4744,-2.8748],[115.4785,-2.8729],[115.4879,-2.8784],[115.4995,-2.8804],[115.5067,-2.8849],[115.5128,-2.8843],[115.5183,-2.8748],[115.5254,-2.868],[115.5275,-2.8601],[115.5401,-2.8473],[115.5428,-2.8355],[115.5476,-2.8303],[115.5566,-2.8282],[115.5577,-2.8252],[115.5666,-2.8176],[115.5727,-2.8109],[115.5788,-2.7945],[115.5869,-2.7784],[115.5887,-2.7733],[115.5953,-2.749],[115.5967,-2.7349],[115.5976,-2.7266],[115.5993,-2.7222],[115.5884,-2.7136],[115.5836,-2.7119],[115.5753,-2.7112],[115.5696,-2.7144],[115.5653,-2.7204],[115.5548,-2.7242],[115.5478,-2.7292],[115.5429,-2.7289],[115.5276,-2.7248],[115.5237,-2.7216],[115.5108,-2.7224],[115.5044,-2.7197],[115.4956,-2.7179],[115.4885,-2.7236],[115.4867,-2.7276],[115.4806,-2.7323],[115.4764,-2.7404],[115.4667,-2.7502],[115.4624,-2.7521],[115.4604,-2.759],[115.4506,-2.7672],[115.4508,-2.7712],[115.4452,-2.7801],[115.4385,-2.782],[115.4342,-2.7754],[115.4285,-2.7776],[115.423,-2.7761],[115.4242,-2.7711],[115.4168,-2.766],[115.4094,-2.7663],[115.4029,-2.7581],[115.4035,-2.754],[115.4002,-2.7478],[115.3883,-2.7466],[115.3776,-2.7439],[115.3734,-2.7359],[115.3585,-2.7162],[115.3475,-2.7156],[115.342,-2.711],[115.3289,-2.7021],[115.3035,-2.6989],[115.2913,-2.6936],[115.2805,-2.6903],[115.2714,-2.6865],[115.2637,-2.6858],[115.2608,-2.6833],[115.2505,-2.6786],[115.2404,-2.6775],[115.2321,-2.6899],[115.2268,-2.6882],[115.2183,-2.6775],[115.212,-2.6677],[115.2118,-2.6578],[115.2103,-2.6506],[115.2012,-2.6417],[115.1958,-2.6398],[115.193,-2.6345],[115.1892,-2.6322],[115.1832,-2.6337],[115.1791,-2.6375],[115.1714,-2.6356],[115.1664,-2.6264],[115.1644,-2.6162],[115.1579,-2.6112],[115.162,-2.6013],[115.1618,-2.5871],[115.1582,-2.5813],[115.156,-2.5716],[115.1643,-2.5699],[115.1785,-2.5547]]}},{"type":"Feature","properties":{"mhid":"1332:358","alt_name":"KABUPATEN HULU SUNGAI TENGAH","latitude":-2.61667,"longitude":115.41667,"sample_value":301},"geometry":{"type":"LineString","coordinates":[[115.8036,-2.504],[115.7982,-2.5103],[115.7777,-2.5231],[115.7714,-2.5286],[115.7623,-2.5537],[115.7586,-2.5688],[115.7492,-2.5758],[115.7346,-2.5814],[115.7215,-2.5912],[115.7171,-2.5906],[115.7117,-2.5854],[115.7086,-2.5783],[115.6993,-2.5719],[115.6966,-2.5633],[115.6949,-2.5508],[115.693,-2.5461],[115.6811,-2.5387],[115.6809,-2.5363],[115.6854,-2.5271],[115.6866,-2.5163],[115.6835,-2.5126],[115.6749,-2.5129],[115.6575,-2.5103],[115.6383,-2.5092],[115.616,-2.5051],[115.6041,-2.4989],[115.5996,-2.4915],[115.5976,-2.4847],[115.5925,-2.4861],[115.587,-2.4844],[115.5721,-2.4821],[115.5589,-2.4862],[115.5453,-2.4806],[115.5275,-2.4698],[115.5191,-2.4668],[115.5013,-2.462],[115.4708,-2.4617],[115.4573,-2.4579],[115.4456,-2.4557],[115.4155,-2.443],[115.4015,-2.441],[115.397,-2.4514],[115.384,-2.4847],[115.3791,-2.4923],[115.3739,-2.4953],[115.3688,-2.4959],[115.3599,-2.492],[115.3491,-2.4828],[115.3221,-2.5011],[115.3165,-2.5044],[115.3001,-2.5106],[115.2882,-2.5125],[115.2853,-2.5244],[115.2706,-2.5269],[115.2598,-2.5265],[115.2553,-2.529],[115.2497,-2.5292],[115.1946,-2.5497],[115.1785,-2.5547],[115.1643,-2.5699],[115.156,-2.5716],[115.1582,-2.5813],[115.1618,-2.5871],[115.162,-2.6013],[115.1579,-2.6112],[115.1644,-2.6162],[115.1664,-2.6264],[115.1714,-2.6356],[115.1791,-2.6375],[115.1832,-2.6337],[115.1892,-2.6322],[115.193,-2.6345],[115.1958,-2.6398],[115.2012,-2.6417],[115.2103,-2.6506],[115.2118,-2.6578],[115.212,-2.6677],[115.2183,-2.6775],[115.2268,-2.6882],[115.2321,-2.6899],[115.2404,-2.6775],[115.2505,-2.6786],[115.2608,-2.6833],[115.2637,-2.6858],[115.2714,-2.6865],[115.2805,-2.6903],[115.2913,-2.6936],[115.3035,-2.6989],[115.3289,-2.7021],[115.342,-2.711],[115.3475,-2.7156],[115.3585,-2.7162],[115.3734,-2.7359],[115.3776,-2.7439],[115.3883,-2.7466],[115.4002,-2.7478],[115.4035,-2.754],[115.4029,-2.7581],[115.4094,-2.7663],[115.4168,-2.766],[115.4242,-2.7711],[115.423,-2.7761],[115.4285,-2.7776],[115.4342,-2.7754],[115.4385,-2.782],[115.4452,-2.7801],[115.4508,-2.7712],[115.4506,-2.7672],[115.4604,-2.759],[115.4624,-2.7521],[115.4667,-2.7502],[115.4764,-2.7404],[115.4806,-2.7323],[115.4867,-2.7276],[115.4885,-2.7236],[115.4956,-2.7179],[115.5044,-2.7197],[115.5108,-2.7224],[115.5237,-2.7216],[115.5276,-2.7248],[115.5429,-2.7289],[115.5478,-2.7292],[115.5548,-2.7242],[115.5653,-2.7204],[115.5696,-2.7144],[115.5753,-2.7112],[115.5836,-2.7119],[115.5884,-2.7136],[115.5993,-2.7222],[115.5976,-2.7266],[115.5967,-2.7349],[115.6267,-2.7225],[115.6438,-2.7209],[115.6566,-2.7234],[115.6666,-2.7217],[115.6726,-2.7186],[115.6797,-2.7102],[115.684,-2.7093],[115.6927,-2.7104],[115.7062,-2.7022],[115.7092,-2.6958],[115.7141,-2.6916],[115.7204,-2.6819],[115.7227,-2.6665],[115.7254,-2.6591],[115.7359,-2.6581],[115.7441,-2.6591],[115.7645,-2.6587],[115.7761,-2.6499],[115.7775,-2.6477],[115.7849,-2.6439],[115.7911,-2.6389],[115.8118,-2.6329],[115.8144,-2.625],[115.8236,-2.6112],[115.8294,-2.6059],[115.832,-2.6085],[115.8573,-2.616],[115.8625,-2.6141],[115.8871,-2.6127],[115.8924,-2.6002],[115.8872,-2.5953],[115.8891,-2.5749],[115.8876,-2.556],[115.8807,-2.5424],[115.8779,-2.5272],[115.868,-2.5241],[115.8544,-2.5162],[115.8455,-2.5151],[115.8407,-2.5127],[115.838,-2.509],[115.8235,-2.504],[115.8036,-2.504]]}},{"type":"Feature","properties":{"mhid":"1332:359","alt_name":"KABUPATEN HULU SUNGAI UTARA","latitude":-2.45,"longitude":115.13333,"sample_value":921},"geometry":{"type":"LineString","coordinates":[[115.3559,-2.3416],[115.3391,-2.3423],[115.3289,-2.3448],[115.3202,-2.3454],[115.3107,-2.3438],[115.3045,-2.346],[115.2882,-2.3567],[115.2825,-2.3589],[115.2506,-2.354],[115.2428,-2.3504],[115.2127,-2.3398],[115.1897,-2.3253],[115.1706,-2.3148],[115.132,-2.2918],[115.0746,-2.33],[115.0443,-2.3495],[115.0331,-2.3589],[115.0254,-2.3681],[115.01,-2.3914],[115.0029,-2.4001],[114.9935,-2.4092],[114.9777,-2.4213],[114.9585,-2.4333],[114.9233,-2.4534],[114.9129,-2.4604],[114.9022,-2.4715],[114.9001,-2.4763],[114.8948,-2.4821],[114.8939,-2.4892],[114.8863,-2.5035],[114.8669,-2.5142],[114.8605,-2.5215],[114.8613,-2.523],[114.8665,-2.5319],[114.878,-2.5253],[114.8907,-2.5146],[114.9045,-2.5186],[114.9154,-2.5193],[114.9332,-2.5144],[114.9978,-2.4989],[115.064,-2.5219],[115.1012,-2.5336],[115.1112,-2.5357],[115.1276,-2.5438],[115.142,-2.5492],[115.1484,-2.5467],[115.1573,-2.5486],[115.1785,-2.5547],[115.1946,-2.5497],[115.2497,-2.5292],[115.2553,-2.529],[115.2598,-2.5265],[115.2706,-2.5269],[115.2853,-2.5244],[115.2882,-2.5125],[115.3001,-2.5106],[115.3165,-2.5044],[115.3221,-2.5011],[115.3491,-2.4828],[115.3599,-2.492],[115.3688,-2.4959],[115.3739,-2.4953],[115.3791,-2.4923],[115.384,-2.4847],[115.397,-2.4514],[115.4015,-2.441],[115.3854,-2.435],[115.3714,-2.4258],[115.3592,-2.4207],[115.3492,-2.4104],[115.345,-2.4012],[115.3387,-2.3956],[115.3322,-2.3953],[115.318,-2.4021],[115.3159,-2.3949],[115.3197,-2.3887],[115.3195,-2.3795],[115.3217,-2.3693],[115.3196,-2.3576],[115.3262,-2.3591],[115.3348,-2.3581],[115.343,-2.3543],[115.3559,-2.3416]]}},{"type":"Feature","properties":{"mhid":"1332:360","alt_name":"KABUPATEN TABALONG","latitude":-1.88333,"longitude":115.5,"sample_value":324},"geometry":{"type":"LineString","coordinates":[[115.673,-1.6699],[115.6741,-1.664],[115.6724,-1.6551],[115.6696,-1.6479],[115.6709,-1.6418],[115.6659,-1.6281],[115.6586,-1.6281],[115.6547,-1.6261],[115.6507,-1.6209],[115.654,-1.6133],[115.6431,-1.6121],[115.6362,-1.604],[115.637,-1.594],[115.6397,-1.5916],[115.6395,-1.5853],[115.6366,-1.5816],[115.6302,-1.5786],[115.6297,-1.576],[115.6357,-1.5727],[115.6385,-1.5674],[115.6454,-1.561],[115.6455,-1.5521],[115.6365,-1.5458],[115.6344,-1.5387],[115.6323,-1.5374],[115.6314,-1.5303],[115.6361,-1.5272],[115.641,-1.5192],[115.654,-1.5134],[115.6557,-1.5094],[115.6522,-1.5009],[115.6544,-1.495],[115.6562,-1.4832],[115.6596,-1.4781],[115.6593,-1.4704],[115.6683,-1.4685],[115.6709,-1.4607],[115.6776,-1.4629],[115.6786,-1.455],[115.6821,-1.4477],[115.6865,-1.4478],[115.692,-1.4346],[115.6919,-1.4257],[115.6974,-1.4237],[115.6939,-1.4168],[115.7086,-1.4126],[115.7107,-1.405],[115.715,-1.3961],[115.7194,-1.3898],[115.7232,-1.3729],[115.7286,-1.3687],[115.7344,-1.367],[115.7426,-1.3546],[115.7437,-1.3436],[115.749,-1.336],[115.7493,-1.315],[115.7447,-1.315],[115.7248,-1.3282],[115.7139,-1.3366],[115.6945,-1.3362],[115.6704,-1.3328],[115.658,-1.338],[115.5888,-1.3787],[115.5592,-1.3939],[115.5568,-1.3956],[115.5374,-1.3975],[115.52,-1.4007],[115.4955,-1.4024],[115.4875,-1.4067],[115.4757,-1.4161],[115.455,-1.4234],[115.4454,-1.4288],[115.442,-1.4289],[115.4224,-1.4254],[115.4136,-1.4246],[115.4071,-1.448],[115.3947,-1.4868],[115.3856,-1.5173],[115.3675,-1.5786],[115.3609,-1.6014],[115.3503,-1.6368],[115.3493,-1.6399],[115.3541,-1.6471],[115.3553,-1.6545],[115.3512,-1.659],[115.3444,-1.6633],[115.3464,-1.6736],[115.3503,-1.6811],[115.3413,-1.6914],[115.344,-1.7017],[115.3376,-1.7074],[115.3383,-1.7103],[115.3343,-1.7148],[115.3347,-1.7193],[115.3325,-1.7235],[115.3363,-1.7299],[115.3324,-1.7354],[115.3337,-1.7492],[115.3293,-1.756],[115.3264,-1.7577],[115.3228,-1.7641],[115.3197,-1.7773],[115.3153,-1.7897],[115.3099,-1.801],[115.3095,-1.808],[115.3128,-1.8264],[115.3,-1.8246],[115.3057,-1.8342],[115.309,-1.8446],[115.3087,-1.8493],[115.3157,-1.8517],[115.3189,-1.8604],[115.3195,-1.8678],[115.3184,-1.874],[115.3209,-1.8758],[115.3207,-1.8829],[115.3181,-1.8875],[115.3195,-1.8923],[115.3355,-1.8919],[115.372,-1.8919],[115.377,-1.8913],[115.3791,-1.8883],[115.3852,-1.8925],[115.393,-1.8933],[115.4003,-1.8862],[115.4048,-1.8866],[115.4053,-1.895],[115.4106,-1.8933],[115.4151,-1.896],[115.4192,-1.8916],[115.4197,-1.9001],[115.4168,-1.9102],[115.419,-1.915],[115.4246,-1.9144],[115.4283,-1.9175],[115.4307,-1.9238],[115.4286,-1.9297],[115.4218,-1.9333],[115.426,-1.9362],[115.4313,-1.9343],[115.4351,-1.9383],[115.4312,-1.944],[115.4325,-1.9464],[115.4414,-1.9425],[115.4428,-1.948],[115.4384,-1.9489],[115.4372,-1.9572],[115.4318,-1.9641],[115.4278,-1.9729],[115.4154,-1.9773],[115.4089,-1.9784],[115.4051,-1.9659],[115.3973,-1.9668],[115.3898,-1.9765],[115.3915,-1.9806],[115.3897,-1.9837],[115.3838,-1.9847],[115.3794,-1.9897],[115.371,-2.0093],[115.3707,-2.0158],[115.3737,-2.0209],[115.3777,-2.0222],[115.3822,-2.0274],[115.385,-2.0336],[115.3897,-2.0379],[115.3997,-2.0402],[115.4039,-2.0447],[115.4048,-2.0492],[115.4089,-2.0547],[115.4083,-2.0585],[115.4042,-2.0607],[115.3926,-2.0621],[115.387,-2.0641],[115.379,-2.0647],[115.3726,-2.0685],[115.3603,-2.0708],[115.352,-2.0737],[115.3454,-2.0823],[115.3377,-2.08],[115.3229,-2.0721],[115.3205,-2.074],[115.3169,-2.0858],[115.3169,-2.101],[115.3177,-2.1035],[115.3177,-2.1241],[115.3094,-2.1335],[115.302,-2.1376],[115.2977,-2.1417],[115.2972,-2.1492],[115.302,-2.1533],[115.3033,-2.1596],[115.2952,-2.1706],[115.295,-2.1778],[115.2923,-2.2042],[115.2911,-2.2239],[115.2818,-2.2234],[115.2691,-2.2199],[115.2642,-2.2223],[115.2543,-2.2078],[115.2498,-2.2029],[115.2412,-2.1964],[115.2392,-2.2001],[115.2462,-2.2053],[115.2491,-2.21],[115.2473,-2.2122],[115.2023,-2.2442],[115.2014,-2.2459],[115.185,-2.2554],[115.1321,-2.2915],[115.132,-2.2918],[115.1706,-2.3148],[115.1897,-2.3253],[115.2127,-2.3398],[115.2428,-2.3504],[115.2506,-2.354],[115.2825,-2.3589],[115.2882,-2.3567],[115.3045,-2.346],[115.3107,-2.3438],[115.3202,-2.3454],[115.3289,-2.3448],[115.3391,-2.3423],[115.3559,-2.3416],[115.3585,-2.3379],[115.3629,-2.3363],[115.3778,-2.3248],[115.3883,-2.3126],[115.4007,-2.3015],[115.4177,-2.2915],[115.4466,-2.2762],[115.4529,-2.2716],[115.4613,-2.2623],[115.4691,-2.2587],[115.4741,-2.2587],[115.4819,-2.2562],[115.4919,-2.2498],[115.4995,-2.2424],[115.5052,-2.2316],[115.5086,-2.2202],[115.5142,-2.2116],[115.5182,-2.2079],[115.5389,-2.197],[115.5812,-2.1797],[115.5862,-2.1749],[115.5882,-2.1691],[115.591,-2.1519],[115.5975,-2.1462],[115.6022,-2.145],[115.6079,-2.1463],[115.6231,-2.1538],[115.627,-2.1548],[115.6373,-2.1522],[115.6413,-2.1481],[115.6467,-2.1356],[115.6505,-2.1297],[115.6581,-2.1246],[115.6636,-2.1196],[115.67,-2.1073],[115.6741,-2.1017],[115.6849,-2.0913],[115.6929,-2.0824],[115.7017,-2.0692],[115.7049,-2.0618],[115.7063,-2.0535],[115.7049,-2.037],[115.7101,-2.0261],[115.7118,-2.017],[115.7129,-2.0044],[115.7177,-1.9955],[115.7177,-1.9955],[115.7133,-1.9921],[115.7135,-1.9861],[115.7106,-1.9799],[115.7038,-1.9773],[115.6973,-1.9779],[115.6962,-1.9744],[115.7003,-1.9701],[115.7068,-1.9603],[115.7062,-1.9497],[115.7124,-1.9428],[115.7187,-1.9294],[115.7187,-1.9267],[115.724,-1.9223],[115.7197,-1.9156],[115.7195,-1.9093],[115.7252,-1.9018],[115.725,-1.8913],[115.7294,-1.88],[115.7264,-1.876],[115.7308,-1.8652],[115.7267,-1.8535],[115.7296,-1.8484],[115.7295,-1.8439],[115.723,-1.835],[115.7217,-1.8257],[115.7274,-1.8162],[115.7261,-1.8079],[115.7267,-1.8036],[115.7215,-1.8011],[115.7156,-1.7943],[115.7108,-1.7921],[115.7081,-1.7882],[115.7001,-1.7929],[115.6891,-1.804],[115.6846,-1.8009],[115.681,-1.7947],[115.6808,-1.7892],[115.6855,-1.786],[115.6901,-1.779],[115.6888,-1.7704],[115.6866,-1.7649],[115.6869,-1.7577],[115.6898,-1.7522],[115.7015,-1.7422],[115.702,-1.7392],[115.7067,-1.7352],[115.7057,-1.7322],[115.7026,-1.7282],[115.6967,-1.7218],[115.691,-1.7178],[115.6813,-1.7152],[115.6793,-1.7102],[115.6725,-1.7099],[115.6654,-1.7063],[115.6662,-1.689],[115.6686,-1.6782],[115.673,-1.6699]]}},{"type":"Feature","properties":{"mhid":"1332:361","alt_name":"KABUPATEN TANAH BUMBU","latitude":-3.45413,"longitude":115.70372,"sample_value":852},"geometry":{"type":"LineString","coordinates":[[116.0281,-3.4583],[116.0322,-3.4541],[116.0345,-3.4479],[116.0335,-3.4387],[116.041,-3.4256],[116.0405,-3.4214],[116.0314,-3.4223],[116.0196,-3.4313],[116.0165,-3.4377],[116.0161,-3.4442],[116.0176,-3.4489],[116.0232,-3.456],[116.0281,-3.4583]]}},{"type":"Feature","properties":{"mhid":"1332:361","alt_name":"KABUPATEN TANAH BUMBU","latitude":-3.45413,"longitude":115.70372,"sample_value":852},"geometry":{"type":"LineString","coordinates":[[116.0306,-3.4059],[116.0369,-3.3987],[116.0378,-3.3917],[116.0446,-3.3724],[116.0464,-3.3604],[116.0456,-3.3583],[116.0381,-3.3605],[116.033,-3.367],[116.0337,-3.3774],[116.0292,-3.3932],[116.0258,-3.4025],[116.0306,-3.4059]]}},{"type":"Feature","properties":{"mhid":"1332:361","alt_name":"KABUPATEN TANAH BUMBU","latitude":-3.45413,"longitude":115.70372,"sample_value":852},"geometry":{"type":"LineString","coordinates":[[116.062,-3.3844],[116.0696,-3.3803],[116.072,-3.3697],[116.0726,-3.3506],[116.0687,-3.3494],[116.0596,-3.3526],[116.0584,-3.3559],[116.0574,-3.3693],[116.0542,-3.3806],[116.0574,-3.3845],[116.062,-3.3844]]}},{"type":"Feature","properties":{"mhid":"1332:361","alt_name":"KABUPATEN TANAH BUMBU","latitude":-3.45413,"longitude":115.70372,"sample_value":852},"geometry":{"type":"LineString","coordinates":[[115.5123,-3.0294],[115.5077,-3.055],[115.507,-3.066],[115.5017,-3.0846],[115.4817,-3.1021],[115.4635,-3.1164],[115.4388,-3.1367],[115.4221,-3.1588],[115.4214,-3.1717],[115.4167,-3.1949],[115.4135,-3.2287],[115.4106,-3.2391],[115.4058,-3.2418],[115.4032,-3.2492],[115.3919,-3.2494],[115.3896,-3.2524],[115.3824,-3.2522],[115.3741,-3.2547],[115.3729,-3.2574],[115.3899,-3.265],[115.4074,-3.2699],[115.4403,-3.2727],[115.4496,-3.2757],[115.4526,-3.2783],[115.4573,-3.2862],[115.4532,-3.306],[115.4564,-3.3171],[115.4609,-3.3222],[115.4599,-3.3292],[115.4555,-3.3323],[115.4476,-3.334],[115.4405,-3.3397],[115.4375,-3.3442],[115.4354,-3.3531],[115.4299,-3.3631],[115.4301,-3.4076],[115.4273,-3.4253],[115.4236,-3.434],[115.4118,-3.4407],[115.4075,-3.4459],[115.4181,-3.4591],[115.4216,-3.469],[115.4202,-3.4782],[115.4154,-3.4863],[115.4124,-3.4889],[115.396,-3.4994],[115.3805,-3.5063],[115.3735,-3.5083],[115.3607,-3.5097],[115.3494,-3.5086],[115.3426,-3.5097],[115.3337,-3.5138],[115.3256,-3.5202],[115.3181,-3.5316],[115.3114,-3.5497],[115.301,-3.5591],[115.2964,-3.5623],[115.2789,-3.5691],[115.2735,-3.5723],[115.2658,-3.5801],[115.2597,-3.5897],[115.2474,-3.5962],[115.2615,-3.6332],[115.2648,-3.6453],[115.2724,-3.6644],[115.2799,-3.6793],[115.2911,-3.6984],[115.2967,-3.7038],[115.3003,-3.7104],[115.3124,-3.72],[115.3174,-3.7364],[115.3402,-3.7788],[115.3436,-3.7817],[115.3461,-3.788],[115.3458,-3.7928],[115.3489,-3.8019],[115.3553,-3.8136],[115.3648,-3.816],[115.3689,-3.821],[115.3689,-3.8263],[115.372,-3.8322],[115.3715,-3.8391],[115.3691,-3.8399],[115.3667,-3.8465],[115.3683,-3.8537],[115.3763,-3.8553],[115.3775,-3.8589],[115.3744,-3.8638],[115.4058,-3.8501],[115.4399,-3.8328],[115.4574,-3.8231],[115.4758,-3.8167],[115.4793,-3.8147],[115.4843,-3.8177],[115.4919,-3.8153],[115.5135,-3.8041],[115.5255,-3.8019],[115.5275,-3.7961],[115.5358,-3.7947],[115.5635,-3.7839],[115.574,-3.7783],[115.5854,-3.7743],[115.6084,-3.7702],[115.6147,-3.7653],[115.6306,-3.7555],[115.6397,-3.7511],[115.6546,-3.7453],[115.6853,-3.7374],[115.6966,-3.7357],[115.7057,-3.7359],[115.7166,-3.7328],[115.7178,-3.7277],[115.721,-3.7239],[115.7356,-3.7102],[115.7489,-3.7024],[115.7698,-3.6922],[115.7732,-3.6889],[115.7799,-3.6855],[115.7895,-3.6775],[115.7922,-3.6674],[115.8019,-3.6548],[115.8092,-3.6506],[115.8167,-3.6423],[115.8265,-3.6377],[115.834,-3.6326],[115.8402,-3.6318],[115.8501,-3.6277],[115.8517,-3.6258],[115.8809,-3.6203],[115.9031,-3.6174],[115.9136,-3.6148],[115.9305,-3.6129],[115.9439,-3.6122],[115.9556,-3.613],[115.9645,-3.6117],[115.9695,-3.6094],[115.9734,-3.605],[115.975,-3.5985],[115.9826,-3.5864],[115.9838,-3.5825],[115.9942,-3.5728],[115.9966,-3.5648],[115.9937,-3.5624],[115.9931,-3.5535],[115.9916,-3.5511],[115.9925,-3.5374],[115.9916,-3.5283],[115.9933,-3.5195],[115.9987,-3.5071],[116.0067,-3.4944],[116.015,-3.4849],[116.0151,-3.4782],[116.0119,-3.4645],[116.0099,-3.4606],[116.0069,-3.4452],[116.0086,-3.4428],[116.0078,-3.4369],[116.0094,-3.4295],[116.014,-3.4182],[116.0235,-3.4118],[116.0235,-3.3963],[116.0268,-3.3909],[116.0319,-3.3766],[116.0314,-3.3669],[116.0377,-3.3587],[116.0458,-3.3564],[116.0525,-3.3489],[116.0525,-3.3463],[116.0571,-3.3372],[116.0612,-3.3353],[116.0632,-3.3294],[116.0644,-3.3195],[116.0713,-3.3126],[116.0742,-3.3045],[116.0747,-3.2994],[116.0798,-3.2972],[116.0858,-3.2866],[116.0889,-3.2829],[116.0842,-3.2773],[116.0848,-3.2649],[116.0828,-3.2576],[116.0779,-3.259],[116.0711,-3.2648],[116.0665,-3.2626],[116.0647,-3.2586],[116.0609,-3.2608],[116.052,-3.2603],[116.0411,-3.2616],[116.0391,-3.257],[116.0307,-3.2497],[116.0213,-3.2444],[116.0141,-3.2415],[116.012,-3.2382],[116.0011,-3.2344],[115.9959,-3.2234],[115.99,-3.22],[115.9822,-3.2209],[115.9734,-3.2245],[115.9681,-3.2352],[115.9639,-3.2469],[115.9601,-3.249],[115.9555,-3.247],[115.9508,-3.2487],[115.9468,-3.2539],[115.9345,-3.2414],[115.9306,-3.236],[115.9279,-3.2266],[115.9284,-3.221],[115.9311,-3.2161],[115.9468,-3.2052],[115.9505,-3.198],[115.9514,-3.1895],[115.9493,-3.1797],[115.9414,-3.1636],[115.9345,-3.1528],[115.8712,-3.1658],[115.8592,-3.1676],[115.8563,-3.1701],[115.8406,-3.1701],[115.8366,-3.1722],[115.8304,-3.1857],[115.8232,-3.1864],[115.8129,-3.1853],[115.809,-3.1817],[115.8012,-3.1833],[115.7925,-3.1818],[115.7796,-3.1904],[115.7728,-3.1933],[115.7646,-3.1919],[115.7599,-3.179],[115.7535,-3.1749],[115.7546,-3.1726],[115.7522,-3.164],[115.7458,-3.1582],[115.7429,-3.1609],[115.74,-3.1549],[115.7398,-3.1491],[115.7357,-3.1466],[115.7353,-3.137],[115.733,-3.1306],[115.7349,-3.1272],[115.7256,-3.1163],[115.7213,-3.1149],[115.7178,-3.1165],[115.7145,-3.1136],[115.7137,-3.1088],[115.7182,-3.0985],[115.7072,-3.097],[115.7056,-3.0919],[115.7071,-3.0845],[115.7036,-3.0806],[115.6968,-3.0796],[115.694,-3.0824],[115.6885,-3.0806],[115.6861,-3.0734],[115.6823,-3.0734],[115.6824,-3.0812],[115.6788,-3.0857],[115.6738,-3.0727],[115.6663,-3.0719],[115.6663,-3.0658],[115.6622,-3.0656],[115.6533,-3.0722],[115.6527,-3.0672],[115.6475,-3.0663],[115.6412,-3.0613],[115.6337,-3.06],[115.6286,-3.0632],[115.6255,-3.0684],[115.6094,-3.0667],[115.6037,-3.0615],[115.593,-3.0618],[115.5838,-3.0654],[115.5755,-3.0656],[115.5684,-3.0688],[115.5638,-3.0656],[115.5618,-3.0612],[115.5596,-3.0477],[115.5413,-3.0459],[115.5283,-3.0386],[115.524,-3.0379],[115.5195,-3.0331],[115.5123,-3.0294]]}},{"type":"Feature","properties":{"mhid":"1332:362","alt_name":"KABUPATEN BALANGAN","latitude":-2.32314,"longitude":115.62922,"sample_value":970},"geometry":{"type":"LineString","coordinates":[[115.7303,-1.9823],[115.7194,-1.9813],[115.72,-1.9913],[115.7177,-1.9955],[115.7129,-2.0044],[115.7118,-2.017],[115.7101,-2.0261],[115.7049,-2.037],[115.7063,-2.0535],[115.7049,-2.0618],[115.7017,-2.0692],[115.6929,-2.0824],[115.6849,-2.0913],[115.6741,-2.1017],[115.67,-2.1073],[115.6636,-2.1196],[115.6581,-2.1246],[115.6505,-2.1297],[115.6467,-2.1356],[115.6413,-2.1481],[115.6373,-2.1522],[115.627,-2.1548],[115.6231,-2.1538],[115.6079,-2.1463],[115.6022,-2.145],[115.5975,-2.1462],[115.591,-2.1519],[115.5882,-2.1691],[115.5862,-2.1749],[115.5812,-2.1797],[115.5389,-2.197],[115.5182,-2.2079],[115.5142,-2.2116],[115.5086,-2.2202],[115.5052,-2.2316],[115.4995,-2.2424],[115.4919,-2.2498],[115.4819,-2.2562],[115.4741,-2.2587],[115.4691,-2.2587],[115.4613,-2.2623],[115.4529,-2.2716],[115.4466,-2.2762],[115.4177,-2.2915],[115.4007,-2.3015],[115.3883,-2.3126],[115.3778,-2.3248],[115.3629,-2.3363],[115.3585,-2.3379],[115.3559,-2.3416],[115.343,-2.3543],[115.3348,-2.3581],[115.3262,-2.3591],[115.3196,-2.3576],[115.3217,-2.3693],[115.3195,-2.3795],[115.3197,-2.3887],[115.3159,-2.3949],[115.318,-2.4021],[115.3322,-2.3953],[115.3387,-2.3956],[115.345,-2.4012],[115.3492,-2.4104],[115.3592,-2.4207],[115.3714,-2.4258],[115.3854,-2.435],[115.4015,-2.441],[115.4155,-2.443],[115.4456,-2.4557],[115.4573,-2.4579],[115.4708,-2.4617],[115.5013,-2.462],[115.5191,-2.4668],[115.5275,-2.4698],[115.5453,-2.4806],[115.5589,-2.4862],[115.5721,-2.4821],[115.587,-2.4844],[115.5925,-2.4861],[115.5976,-2.4847],[115.5996,-2.4915],[115.6041,-2.4989],[115.616,-2.5051],[115.6383,-2.5092],[115.6575,-2.5103],[115.6749,-2.5129],[115.6835,-2.5126],[115.6866,-2.5163],[115.6854,-2.5271],[115.6809,-2.5363],[115.6811,-2.5387],[115.693,-2.5461],[115.6949,-2.5508],[115.6966,-2.5633],[115.6993,-2.5719],[115.7086,-2.5783],[115.7117,-2.5854],[115.7171,-2.5906],[115.7215,-2.5912],[115.7346,-2.5814],[115.7492,-2.5758],[115.7586,-2.5688],[115.7623,-2.5537],[115.7714,-2.5286],[115.7777,-2.5231],[115.7982,-2.5103],[115.8036,-2.504],[115.806,-2.497],[115.8106,-2.49],[115.8126,-2.4835],[115.8125,-2.4776],[115.8092,-2.4668],[115.8083,-2.46],[115.8083,-2.4485],[115.8068,-2.4408],[115.8026,-2.4329],[115.8029,-2.4292],[115.8086,-2.4204],[115.8101,-2.4107],[115.8146,-2.4141],[115.8195,-2.4122],[115.8254,-2.4057],[115.8324,-2.4002],[115.8348,-2.3954],[115.8424,-2.393],[115.8466,-2.3943],[115.8503,-2.3878],[115.8539,-2.3796],[115.853,-2.3712],[115.85,-2.3629],[115.8436,-2.3548],[115.8423,-2.3512],[115.8469,-2.3387],[115.8455,-2.3315],[115.8415,-2.3257],[115.8359,-2.3211],[115.8349,-2.3138],[115.8389,-2.3068],[115.8419,-2.3043],[115.8513,-2.3013],[115.8549,-2.2964],[115.8528,-2.2919],[115.8416,-2.2916],[115.8361,-2.2866],[115.8287,-2.2694],[115.824,-2.2631],[115.822,-2.2578],[115.8276,-2.2459],[115.8273,-2.2379],[115.8241,-2.2319],[115.8185,-2.2306],[115.8137,-2.2248],[115.8123,-2.2188],[115.8067,-2.2136],[115.8037,-2.2086],[115.8004,-2.1983],[115.7994,-2.1876],[115.8006,-2.182],[115.8083,-2.1709],[115.8081,-2.1497],[115.8104,-2.1341],[115.8105,-2.1118],[115.8095,-2.1009],[115.8122,-2.0938],[115.8161,-2.0916],[115.826,-2.0889],[115.832,-2.0814],[115.8327,-2.0729],[115.8362,-2.0644],[115.8352,-2.0563],[115.8264,-2.0564],[115.8216,-2.0546],[115.8103,-2.0449],[115.8042,-2.0445],[115.7983,-2.0488],[115.7967,-2.0442],[115.7828,-2.0447],[115.7767,-2.0509],[115.7731,-2.0518],[115.7613,-2.0495],[115.7537,-2.0505],[115.7487,-2.0458],[115.7433,-2.0373],[115.7317,-2.0358],[115.7282,-2.0344],[115.7248,-2.0287],[115.7276,-2.0207],[115.7431,-2.0094],[115.748,-2.0006],[115.7476,-1.9951],[115.7355,-1.9849],[115.7303,-1.9823]]}},{"type":"Feature","properties":{"mhid":"1332:363","alt_name":"KOTA BANJARMASIN","latitude":-3.32444,"longitude":114.59102,"sample_value":181},"geometry":{"type":"LineString","coordinates":[[114.6386,-3.2756],[114.6351,-3.2805],[114.6251,-3.2851],[114.6133,-3.2794],[114.6061,-3.2804],[114.6065,-3.2856],[114.6015,-3.2887],[114.5966,-3.2859],[114.5954,-3.2801],[114.5829,-3.2735],[114.5768,-3.2756],[114.5765,-3.2702],[114.5691,-3.2672],[114.5669,-3.2699],[114.566,-3.2992],[114.5635,-3.3104],[114.5581,-3.3194],[114.5537,-3.3287],[114.5483,-3.336],[114.5394,-3.3456],[114.5288,-3.3552],[114.5219,-3.3633],[114.5219,-3.3633],[114.5338,-3.3697],[114.5376,-3.3692],[114.545,-3.3736],[114.5547,-3.3741],[114.559,-3.371],[114.5699,-3.3668],[114.5666,-3.3736],[114.5696,-3.3753],[114.5771,-3.3757],[114.5785,-3.3787],[114.5861,-3.3821],[114.5957,-3.3668],[114.6056,-3.3699],[114.6078,-3.3724],[114.615,-3.369],[114.6202,-3.3633],[114.6241,-3.3612],[114.625,-3.3506],[114.6352,-3.3468],[114.646,-3.3441],[114.657,-3.3484],[114.657,-3.3409],[114.6596,-3.3356],[114.653,-3.3336],[114.6461,-3.3272],[114.6423,-3.3261],[114.634,-3.3204],[114.6285,-3.312],[114.6372,-3.2921],[114.6399,-3.2883],[114.6386,-3.2756]]}},{"type":"Feature","properties":{"mhid":"1332:364","alt_name":"KOTA BANJAR BARU","latitude":-3.41667,"longitude":114.83333,"sample_value":669},"geometry":{"type":"LineString","coordinates":[[114.92,-3.5959],[114.9217,-3.5922],[114.9228,-3.5822],[114.9187,-3.5774],[114.9181,-3.572],[114.9288,-3.558],[114.931,-3.5524],[114.9318,-3.5404],[114.9233,-3.5414],[114.93,-3.5055],[114.9301,-3.4942],[114.9151,-3.4686],[114.9266,-3.4709],[114.9278,-3.4578],[114.9301,-3.4465],[114.9074,-3.4443],[114.8958,-3.4417],[114.8902,-3.4446],[114.8862,-3.4437],[114.8837,-3.4386],[114.8776,-3.436],[114.8698,-3.4353],[114.867,-3.4291],[114.8616,-3.4227],[114.855,-3.4268],[114.844,-3.4254],[114.8247,-3.4252],[114.8235,-3.4218],[114.8146,-3.4181],[114.8094,-3.4194],[114.8007,-3.4128],[114.7955,-3.4069],[114.7707,-3.3896],[114.7586,-3.3827],[114.7409,-3.3713],[114.7241,-3.4063],[114.7235,-3.4128],[114.7195,-3.4155],[114.7164,-3.4225],[114.7189,-3.426],[114.705,-3.4368],[114.7078,-3.441],[114.707,-3.4443],[114.6984,-3.4589],[114.6964,-3.4678],[114.6966,-3.4747],[114.7003,-3.4843],[114.7044,-3.5135],[114.7159,-3.5116],[114.7293,-3.5114],[114.7355,-3.51],[114.7618,-3.5093],[114.7683,-3.5113],[114.7755,-3.5118],[114.7859,-3.5143],[114.7892,-3.5186],[114.7944,-3.521],[114.8032,-3.5228],[114.8236,-3.5224],[114.8319,-3.5232],[114.8325,-3.5328],[114.8364,-3.5392],[114.8398,-3.5397],[114.8455,-3.5452],[114.853,-3.5489],[114.8628,-3.5508],[114.8692,-3.55],[114.8692,-3.5548],[114.8773,-3.5577],[114.8834,-3.5499],[114.8898,-3.551],[114.8919,-3.5573],[114.8922,-3.5638],[114.8968,-3.5677],[114.894,-3.5742],[114.8986,-3.5758],[114.9059,-3.581],[114.9081,-3.5881],[114.9176,-3.5964],[114.92,-3.5959]]}},{"type":"Feature","properties":{"mhid":"1332:365","alt_name":"KABUPATEN PASER","latitude":-1.43517,"longitude":116.23535,"sample_value":111},"geometry":{"type":"LineString","coordinates":[[116.4615,-2.1915],[116.5064,-2.1622],[116.4298,-2.2035],[116.4615,-2.1915]]}},{"type":"Feature","properties":{"mhid":"1332:365","alt_name":"KABUPATEN PASER","latitude":-1.43517,"longitude":116.23535,"sample_value":111},"geometry":{"type":"LineString","coordinates":[[116.4439,-1.0588],[116.4541,-1.0435],[116.4542,-1.0266],[116.4545,-1.0249],[116.4477,-1.0034],[116.4417,-0.9845],[116.4417,-0.9702],[116.4386,-0.9708],[116.4385,-0.974],[116.4027,-0.978],[116.3762,-0.9851],[116.3612,-0.9932],[116.3537,-1.0007],[116.3357,-1.0331],[116.3241,-1.0429],[116.312,-1.0484],[116.2927,-1.048],[116.2735,-1.0453],[116.2645,-1.0461],[116.2541,-1.0524],[116.2346,-1.0931],[116.2252,-1.1094],[116.2191,-1.1179],[116.1815,-1.1179],[116.1656,-1.1267],[116.1532,-1.1373],[116.139,-1.1532],[116.1213,-1.155],[116.1089,-1.1409],[116.1089,-1.1179],[116.0966,-1.0878],[116.0938,-1.0858],[116.078,-1.0981],[116.0667,-1.1098],[116.0518,-1.1141],[116.0352,-1.1094],[116.0254,-1.1094],[116.0231,-1.1118],[116.0051,-1.1106],[115.9925,-1.1071],[115.9863,-1.1028],[115.9781,-1.0993],[115.9624,-1.0973],[115.9475,-1.1012],[115.9284,-1.1134],[115.9131,-1.1149],[115.899,-1.1134],[115.8822,-1.1071],[115.8634,-1.1024],[115.8474,-1.0903],[115.8391,-1.0954],[115.8293,-1.0966],[115.8134,-1.1055],[115.8032,-1.1163],[115.8071,-1.1216],[115.8236,-1.1366],[115.8278,-1.1417],[115.8342,-1.1441],[115.843,-1.1512],[115.847,-1.1573],[115.8457,-1.1647],[115.8412,-1.1691],[115.8186,-1.182],[115.7967,-1.1998],[115.7836,-1.213],[115.7749,-1.2243],[115.7705,-1.2312],[115.7633,-1.2556],[115.7615,-1.2661],[115.7563,-1.2768],[115.7546,-1.283],[115.7576,-1.3074],[115.754,-1.315],[115.7493,-1.315],[115.749,-1.336],[115.7437,-1.3436],[115.7426,-1.3546],[115.7344,-1.367],[115.7286,-1.3687],[115.7232,-1.3729],[115.7194,-1.3898],[115.715,-1.3961],[115.7107,-1.405],[115.7086,-1.4126],[115.6939,-1.4168],[115.6974,-1.4237],[115.6919,-1.4257],[115.692,-1.4346],[115.6865,-1.4478],[115.6821,-1.4477],[115.6786,-1.455],[115.6776,-1.4629],[115.6709,-1.4607],[115.6683,-1.4685],[115.6593,-1.4704],[115.6596,-1.4781],[115.6562,-1.4832],[115.6544,-1.495],[115.6522,-1.5009],[115.6557,-1.5094],[115.654,-1.5134],[115.641,-1.5192],[115.6361,-1.5272],[115.6314,-1.5303],[115.6323,-1.5374],[115.6344,-1.5387],[115.6365,-1.5458],[115.6455,-1.5521],[115.6454,-1.561],[115.6385,-1.5674],[115.6357,-1.5727],[115.6297,-1.576],[115.6302,-1.5786],[115.6366,-1.5816],[115.6395,-1.5853],[115.6397,-1.5916],[115.637,-1.594],[115.6362,-1.604],[115.6431,-1.6121],[115.654,-1.6133],[115.6507,-1.6209],[115.6547,-1.6261],[115.6586,-1.6281],[115.6659,-1.6281],[115.6709,-1.6418],[115.6696,-1.6479],[115.6724,-1.6551],[115.6741,-1.664],[115.673,-1.6699],[115.6686,-1.6782],[115.6662,-1.689],[115.6654,-1.7063],[115.6725,-1.7099],[115.6793,-1.7102],[115.6813,-1.7152],[115.691,-1.7178],[115.6967,-1.7218],[115.7026,-1.7282],[115.7057,-1.7322],[115.7067,-1.7352],[115.702,-1.7392],[115.7015,-1.7422],[115.6898,-1.7522],[115.6869,-1.7577],[115.6866,-1.7649],[115.6888,-1.7704],[115.6901,-1.779],[115.6855,-1.786],[115.6808,-1.7892],[115.681,-1.7947],[115.6846,-1.8009],[115.6891,-1.804],[115.7001,-1.7929],[115.7081,-1.7882],[115.7108,-1.7921],[115.7156,-1.7943],[115.7215,-1.8011],[115.7267,-1.8036],[115.7261,-1.8079],[115.7274,-1.8162],[115.7217,-1.8257],[115.723,-1.835],[115.7295,-1.8439],[115.7296,-1.8484],[115.7267,-1.8535],[115.7308,-1.8652],[115.7264,-1.876],[115.7294,-1.88],[115.725,-1.8913],[115.7252,-1.9018],[115.7195,-1.9093],[115.7197,-1.9156],[115.724,-1.9223],[115.7187,-1.9267],[115.7187,-1.9294],[115.7124,-1.9428],[115.7062,-1.9497],[115.7068,-1.9603],[115.7003,-1.9701],[115.6962,-1.9744],[115.6973,-1.9779],[115.7038,-1.9773],[115.7106,-1.9799],[115.7135,-1.9861],[115.7133,-1.9921],[115.7177,-1.9955],[115.72,-1.9913],[115.7194,-1.9813],[115.7303,-1.9823],[115.7355,-1.9849],[115.7476,-1.9951],[115.748,-2.0006],[115.7431,-2.0094],[115.7276,-2.0207],[115.7248,-2.0287],[115.7282,-2.0344],[115.7317,-2.0358],[115.7433,-2.0373],[115.7487,-2.0458],[115.7537,-2.0505],[115.7613,-2.0495],[115.7731,-2.0518],[115.7767,-2.0509],[115.7827,-2.0447],[115.7967,-2.0442],[115.7983,-2.0488],[115.8042,-2.0445],[115.8103,-2.0449],[115.8216,-2.0546],[115.8264,-2.0564],[115.8352,-2.0563],[115.8362,-2.0644],[115.8327,-2.0729],[115.832,-2.0814],[115.826,-2.0889],[115.8161,-2.0916],[115.8122,-2.0938],[115.8095,-2.1009],[115.8105,-2.1118],[115.8104,-2.1341],[115.8081,-2.1497],[115.8083,-2.1709],[115.8006,-2.182],[115.7994,-2.1876],[115.8004,-2.1983],[115.8037,-2.2086],[115.8067,-2.2136],[115.8123,-2.2188],[115.8137,-2.2248],[115.8185,-2.2306],[115.8241,-2.2319],[115.8273,-2.2379],[115.8276,-2.2459],[115.822,-2.2578],[115.824,-2.2631],[115.8287,-2.2694],[115.8361,-2.2866],[115.8416,-2.2916],[115.8528,-2.2919],[115.8549,-2.2964],[115.8513,-2.3013],[115.8419,-2.3043],[115.8389,-2.3068],[115.8349,-2.3138],[115.8359,-2.3211],[115.8415,-2.3257],[115.8455,-2.3315],[115.8469,-2.3387],[115.8423,-2.3512],[115.8436,-2.3548],[115.85,-2.3629],[115.853,-2.3712],[115.8539,-2.3796],[115.8503,-2.3878],[115.8557,-2.3859],[115.8699,-2.3723],[115.877,-2.3704],[115.8843,-2.3746],[115.8865,-2.3699],[115.8869,-2.361],[115.8913,-2.3513],[115.8894,-2.3396],[115.8903,-2.3356],[115.8995,-2.3327],[115.9111,-2.3362],[115.9299,-2.3305],[115.9419,-2.3288],[115.9671,-2.3197],[115.9844,-2.3124],[115.9927,-2.3175],[115.9975,-2.3172],[116.0078,-2.313],[116.0176,-2.3148],[116.0815,-2.317],[116.186,-2.321],[116.2047,-2.3196],[116.2346,-2.3181],[116.2514,-2.3168],[116.2637,-2.3223],[116.3204,-2.3414],[116.3743,-2.355],[116.435,-2.367],[116.4545,-2.3705],[116.4928,-2.381],[116.5,-2.3836],[116.5388,-2.4],[116.5409,-2.4019],[116.5486,-2.4021],[116.5543,-2.4086],[116.5564,-2.4087],[116.5777,-2.3301],[116.5805,-2.3193],[116.5869,-2.2606],[116.5934,-2.1953],[116.5883,-2.1745],[116.5781,-2.1612],[116.5711,-2.162],[116.5636,-2.1612],[116.5628,-2.1663],[116.5652,-2.1706],[116.5742,-2.1788],[116.5742,-2.1886],[116.5711,-2.1917],[116.5582,-2.2011],[116.5507,-2.205],[116.539,-2.2097],[116.5159,-2.2215],[116.51,-2.2258],[116.5045,-2.2324],[116.4975,-2.2234],[116.5374,-2.2007],[116.5527,-2.1847],[116.5499,-2.1718],[116.537,-2.169],[116.5194,-2.169],[116.5049,-2.1667],[116.4803,-2.1839],[116.4482,-2.2004],[116.4318,-2.207],[116.411,-2.2105],[116.4067,-2.2043],[116.4509,-2.1902],[116.4748,-2.1777],[116.4948,-2.1644],[116.5249,-2.1518],[116.5178,-2.1389],[116.518,-2.1213],[116.513,-2.1143],[116.4977,-2.1064],[116.4879,-2.1182],[116.4727,-2.1244],[116.455,-2.1334],[116.4296,-2.1287],[116.3971,-2.1291],[116.3917,-2.1256],[116.3893,-2.1135],[116.3697,-2.1131],[116.3611,-2.1107],[116.378,-2.0967],[116.3928,-2.081],[116.41,-2.0783],[116.4288,-2.0802],[116.4367,-2.0681],[116.4496,-2.0646],[116.4597,-2.0524],[116.4617,-2.0348],[116.457,-2.0341],[116.4611,-2.0286],[116.4631,-2.0184],[116.4607,-2.0035],[116.4588,-1.9973],[116.4525,-1.9503],[116.4541,-1.9315],[116.4574,-1.9124],[116.4578,-1.9045],[116.4554,-1.892],[116.4519,-1.885],[116.4449,-1.8748],[116.437,-1.8697],[116.428,-1.8662],[116.4269,-1.8576],[116.446,-1.8267],[116.4521,-1.8153],[116.4525,-1.7672],[116.4177,-1.7652],[116.4095,-1.7676],[116.3962,-1.7672],[116.384,-1.7602],[116.3692,-1.7602],[116.366,-1.7813],[116.3562,-1.7731],[116.3336,-1.7754],[116.3202,-1.784],[116.3007,-1.7926],[116.2811,-1.7997],[116.2623,-1.8102],[116.251,-1.8048],[116.2432,-1.7985],[116.2263,-1.7973],[116.2166,-1.7903],[116.2123,-1.7801],[116.2256,-1.7774],[116.2526,-1.7801],[116.2655,-1.7703],[116.2725,-1.7602],[116.2831,-1.7472],[116.2807,-1.7339],[116.2901,-1.7335],[116.2958,-1.7308],[116.3032,-1.7234],[116.3126,-1.7069],[116.3189,-1.7015],[116.3353,-1.6925],[116.3572,-1.6815],[116.3791,-1.6737],[116.3973,-1.669],[116.447,-1.6537],[116.4752,-1.6443],[116.492,-1.6412],[116.5132,-1.6349],[116.5421,-1.622],[116.5413,-1.6154],[116.5488,-1.6087],[116.5501,-1.603],[116.5443,-1.5957],[116.5195,-1.5904],[116.4948,-1.5816],[116.4718,-1.5745],[116.4452,-1.5656],[116.4169,-1.5532],[116.3992,-1.5497],[116.3868,-1.5444],[116.3797,-1.5267],[116.3744,-1.5019],[116.3638,-1.4701],[116.3603,-1.4446],[116.3582,-1.4362],[116.3561,-1.417],[116.3561,-1.408],[116.355,-1.3904],[116.3461,-1.3692],[116.3355,-1.3338],[116.3355,-1.2842],[116.3443,-1.2453],[116.3603,-1.2187],[116.3678,-1.2105],[116.3779,-1.1993],[116.3778,-1.1969],[116.3762,-1.1745],[116.3709,-1.1444],[116.3762,-1.132],[116.3859,-1.1222],[116.4045,-1.1054],[116.4169,-1.0913],[116.4275,-1.0718],[116.4439,-1.0588]]}},{"type":"Feature","properties":{"mhid":"1332:366","alt_name":"KABUPATEN KUTAI BARAT","latitude":-0.59417,"longitude":115.51575,"sample_value":712},"geometry":{"type":"LineString","coordinates":[[116.516,-0.8421],[116.5053,-0.8385],[116.4986,-0.8217],[116.5053,-0.8048],[116.5219,-0.775],[116.5178,-0.7727],[116.4989,-0.7664],[116.4784,-0.7532],[116.4445,-0.7268],[116.4229,-0.6932],[116.4055,-0.6649],[116.3886,-0.6329],[116.3702,-0.6029],[116.3503,-0.5716],[116.3414,-0.5355],[116.3361,-0.5],[116.3327,-0.4884],[116.3294,-0.4884],[116.3232,-0.4838],[116.3177,-0.4835],[116.3086,-0.4899],[116.3047,-0.4874],[116.3054,-0.4812],[116.3105,-0.4768],[116.3164,-0.4615],[116.3172,-0.4513],[116.3118,-0.4476],[116.299,-0.449],[116.2918,-0.4479],[116.2822,-0.443],[116.278,-0.4377],[116.2758,-0.4252],[116.2931,-0.3908],[116.2972,-0.386],[116.304,-0.3735],[116.3168,-0.3169],[116.32,-0.2998],[116.2689,-0.2923],[116.2548,-0.2899],[116.2463,-0.2864],[116.2353,-0.2806],[116.1917,-0.2538],[116.1812,-0.2461],[116.1654,-0.2296],[116.1437,-0.2113],[116.1284,-0.2014],[116.1179,-0.1967],[116.104,-0.1885],[116.0759,-0.1689],[116.0717,-0.1654],[116.0312,-0.1114],[115.9908,-0.0709],[115.9825,-0.0654],[115.9755,-0.0352],[115.973,-0.0283],[115.9843,-0.0083],[116.0061,0.0122],[116.0213,0.0285],[116.0271,0.0362],[116.03,0.0501],[116.0283,0.0594],[116.0106,0.0712],[115.9908,0.0911],[115.9503,0.1147],[115.9233,0.1383],[115.9165,0.1687],[115.9165,0.2058],[115.8963,0.2125],[115.8592,0.2058],[115.8205,0.1955],[115.8085,0.1923],[115.8072,0.1945],[115.7967,0.1849],[115.8054,0.1763],[115.8029,0.1664],[115.7918,0.1602],[115.7856,0.154],[115.777,0.1491],[115.7696,0.1491],[115.7609,0.154],[115.7535,0.1491],[115.7313,0.1479],[115.719,0.1479],[115.6992,0.154],[115.6856,0.1565],[115.6745,0.1454],[115.6523,0.1442],[115.6251,0.1503],[115.6152,0.1516],[115.5881,0.1429],[115.5782,0.1405],[115.5621,0.1405],[115.551,0.1392],[115.535,0.1392],[115.5165,0.1343],[115.5041,0.1355],[115.4979,0.1343],[115.4856,0.1343],[115.4782,0.1405],[115.472,0.138],[115.4658,0.1244],[115.451,0.1071],[115.451,0.0972],[115.4535,0.0886],[115.4424,0.0676],[115.4436,0.0516],[115.4411,0.0417],[115.4288,0.038],[115.4152,0.033],[115.4152,0.0256],[115.4053,0.0207],[115.3955,0.0195],[115.3819,0.0244],[115.3769,0.0318],[115.3745,0.0318],[115.3572,0.0133],[115.3522,0.0071],[115.3485,-0.0028],[115.3362,-0.0163],[115.3238,-0.0398],[115.3103,-0.0472],[115.3023,-0.0496],[115.3042,-0.0619],[115.3124,-0.0719],[115.318,-0.0859],[115.32,-0.0936],[115.3164,-0.1058],[115.3127,-0.1132],[115.3029,-0.1224],[115.296,-0.126],[115.2872,-0.1397],[115.2761,-0.1427],[115.2676,-0.1497],[115.2648,-0.1581],[115.2651,-0.1626],[115.2692,-0.1855],[115.267,-0.1938],[115.2575,-0.2058],[115.2505,-0.2162],[115.245,-0.2301],[115.2398,-0.2356],[115.2384,-0.2444],[115.2437,-0.2469],[115.2471,-0.251],[115.252,-0.2689],[115.2537,-0.2833],[115.2522,-0.2937],[115.2495,-0.2978],[115.2447,-0.2988],[115.2347,-0.2946],[115.2279,-0.2972],[115.2271,-0.306],[115.2305,-0.3245],[115.2348,-0.3457],[115.2373,-0.3543],[115.2383,-0.3629],[115.2372,-0.3749],[115.2394,-0.3815],[115.2435,-0.3831],[115.2543,-0.3825],[115.2593,-0.3878],[115.2601,-0.3932],[115.2589,-0.4292],[115.2569,-0.4341],[115.2457,-0.4419],[115.2447,-0.4481],[115.2465,-0.4515],[115.2571,-0.4559],[115.2624,-0.4612],[115.27,-0.4706],[115.3017,-0.5006],[115.3053,-0.5049],[115.3162,-0.5238],[115.3186,-0.5312],[115.3212,-0.5503],[115.3241,-0.5574],[115.3352,-0.5689],[115.3485,-0.5775],[115.3538,-0.5823],[115.3555,-0.5899],[115.3574,-0.6052],[115.3554,-0.6211],[115.3564,-0.6327],[115.3604,-0.653],[115.3626,-0.6613],[115.3684,-0.6909],[115.368,-0.7179],[115.3669,-0.7252],[115.367,-0.7495],[115.3735,-0.7715],[115.3747,-0.7842],[115.3766,-0.793],[115.3797,-0.8016],[115.3889,-0.8178],[115.3925,-0.8223],[115.4027,-0.8274],[115.4189,-0.8312],[115.4351,-0.8359],[115.4479,-0.8388],[115.4695,-0.8409],[115.4822,-0.8428],[115.4884,-0.8448],[115.4977,-0.85],[115.5052,-0.8557],[115.5132,-0.8646],[115.5336,-0.8831],[115.5519,-0.9132],[115.5579,-0.9236],[115.5658,-0.9331],[115.5851,-0.9497],[115.5986,-0.9572],[115.6118,-0.9662],[115.631,-0.9767],[115.6434,-0.9848],[115.6553,-0.9956],[115.6593,-1.0004],[115.6606,-1.0067],[115.6569,-1.0163],[115.6584,-1.0257],[115.6629,-1.034],[115.6698,-1.0523],[115.6753,-1.0598],[115.6801,-1.0589],[115.6866,-1.0554],[115.6926,-1.0549],[115.6996,-1.0585],[115.7105,-1.0683],[115.7214,-1.0811],[115.7281,-1.0864],[115.7374,-1.0878],[115.7422,-1.0898],[115.7443,-1.0931],[115.7461,-1.1023],[115.7466,-1.1131],[115.7489,-1.1226],[115.7536,-1.1314],[115.7587,-1.1361],[115.7661,-1.134],[115.7792,-1.1201],[115.786,-1.1158],[115.7965,-1.1121],[115.8032,-1.1163],[115.8134,-1.1055],[115.8293,-1.0966],[115.8391,-1.0954],[115.8474,-1.0903],[115.8634,-1.1024],[115.8822,-1.1071],[115.899,-1.1134],[115.9131,-1.1149],[115.9284,-1.1134],[115.9475,-1.1012],[115.9624,-1.0973],[115.9781,-1.0993],[115.9863,-1.1028],[115.9925,-1.1071],[116.0051,-1.1106],[116.0231,-1.1118],[116.0254,-1.1094],[116.0352,-1.1094],[116.0518,-1.1141],[116.0667,-1.1098],[116.078,-1.0981],[116.0938,-1.0858],[116.0966,-1.0878],[116.1089,-1.1179],[116.1089,-1.1409],[116.1213,-1.155],[116.139,-1.1532],[116.1532,-1.1373],[116.1656,-1.1267],[116.1815,-1.1179],[116.2191,-1.1179],[116.2252,-1.1094],[116.2346,-1.0931],[116.2541,-1.0524],[116.2645,-1.0461],[116.2735,-1.0453],[116.2927,-1.048],[116.312,-1.0484],[116.3241,-1.0429],[116.3357,-1.0331],[116.3537,-1.0007],[116.3612,-0.9932],[116.3762,-0.9851],[116.4027,-0.978],[116.4385,-0.974],[116.4386,-0.9708],[116.4386,-0.9708],[116.4399,-0.9656],[116.4523,-0.955],[116.4611,-0.9497],[116.4682,-0.9391],[116.4788,-0.9143],[116.4877,-0.8842],[116.4983,-0.8701],[116.5053,-0.8623],[116.5153,-0.8509],[116.5203,-0.8435],[116.516,-0.8421]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.4257,-0.871],[117.4208,-0.8654],[117.4166,-0.87],[117.4236,-0.8772],[117.4257,-0.8864],[117.4312,-0.8907],[117.4348,-0.8912],[117.4363,-0.884],[117.4333,-0.8749],[117.4355,-0.8728],[117.4319,-0.8673],[117.4257,-0.871]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.262,-0.8638],[117.2613,-0.8576],[117.2556,-0.8569],[117.255,-0.8734],[117.2557,-0.884],[117.2602,-0.8861],[117.263,-0.8846],[117.2623,-0.8749],[117.2634,-0.8686],[117.262,-0.8638]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.4862,-0.8273],[117.4835,-0.8228],[117.4693,-0.8111],[117.4701,-0.8174],[117.467,-0.8248],[117.4696,-0.8309],[117.4822,-0.8394],[117.4912,-0.8382],[117.4926,-0.8339],[117.4862,-0.8273]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.2752,-0.8097],[117.2672,-0.8125],[117.2633,-0.8225],[117.2621,-0.839],[117.2632,-0.8514],[117.2662,-0.8658],[117.2664,-0.8794],[117.2672,-0.8829],[117.2752,-0.8878],[117.2772,-0.8834],[117.2765,-0.8723],[117.2734,-0.8545],[117.2741,-0.8441],[117.2832,-0.8316],[117.2852,-0.8264],[117.2833,-0.822],[117.2781,-0.8174],[117.2775,-0.8113],[117.2752,-0.8097]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.4769,-0.8068],[117.4697,-0.8062],[117.4729,-0.8109],[117.4793,-0.816],[117.4828,-0.8152],[117.4769,-0.8068]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.3461,-0.7682],[117.3466,-0.7746],[117.3521,-0.7808],[117.3533,-0.7772],[117.3485,-0.769],[117.3461,-0.7682]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.4406,-0.78],[117.4317,-0.7721],[117.4213,-0.765],[117.4098,-0.755],[117.4053,-0.7539],[117.4044,-0.765],[117.4083,-0.7769],[117.4118,-0.7845],[117.415,-0.7858],[117.4192,-0.7821],[117.4248,-0.7802],[117.4314,-0.7818],[117.4367,-0.7886],[117.44,-0.7992],[117.4446,-0.806],[117.4493,-0.8071],[117.4543,-0.8112],[117.464,-0.8218],[117.4676,-0.8173],[117.4663,-0.8089],[117.4608,-0.8014],[117.4494,-0.7904],[117.4406,-0.78]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.4709,-0.7462],[117.4632,-0.7428],[117.4624,-0.7457],[117.4655,-0.7504],[117.4682,-0.7619],[117.4706,-0.7646],[117.4819,-0.7703],[117.4844,-0.7737],[117.4888,-0.7843],[117.4928,-0.79],[117.4991,-0.7944],[117.4996,-0.7968],[117.5087,-0.8073],[117.5139,-0.8109],[117.5208,-0.8122],[117.5244,-0.8095],[117.5303,-0.812],[117.5451,-0.8037],[117.5483,-0.8003],[117.5496,-0.7929],[117.5421,-0.7893],[117.5348,-0.7875],[117.5154,-0.7772],[117.5077,-0.7761],[117.509,-0.7726],[117.5171,-0.7647],[117.5144,-0.7602],[117.5021,-0.7565],[117.5013,-0.7513],[117.4962,-0.7491],[117.482,-0.7505],[117.4763,-0.7457],[117.4709,-0.7462]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.4639,-0.75],[117.462,-0.7477],[117.4422,-0.7416],[117.4376,-0.7455],[117.438,-0.7517],[117.441,-0.7555],[117.4544,-0.7664],[117.4662,-0.7835],[117.4815,-0.798],[117.4858,-0.8011],[117.4914,-0.8023],[117.493,-0.7975],[117.4858,-0.7837],[117.4822,-0.7724],[117.471,-0.7669],[117.4661,-0.7598],[117.4639,-0.75]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.3904,-0.7394],[117.3815,-0.7396],[117.3794,-0.7501],[117.3756,-0.7551],[117.3821,-0.7579],[117.3825,-0.7647],[117.38,-0.771],[117.3752,-0.7749],[117.3784,-0.7782],[117.3849,-0.7744],[117.3921,-0.7765],[117.3987,-0.7898],[117.4039,-0.8045],[117.4104,-0.8184],[117.4135,-0.8325],[117.4154,-0.8365],[117.4216,-0.8328],[117.427,-0.8316],[117.4354,-0.8218],[117.4399,-0.8143],[117.4351,-0.8045],[117.4319,-0.7867],[117.4243,-0.786],[117.4145,-0.7881],[117.4084,-0.7849],[117.4021,-0.7676],[117.4005,-0.7563],[117.3963,-0.7476],[117.3904,-0.7394]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.3309,-0.7466],[117.3317,-0.7373],[117.3286,-0.7283],[117.3263,-0.7295],[117.3309,-0.7466]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.5146,-0.6953],[117.5099,-0.6954],[117.5,-0.698],[117.4978,-0.7026],[117.5076,-0.7049],[117.5187,-0.7019],[117.5146,-0.6953]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.4025,-0.7015],[117.3876,-0.6948],[117.3853,-0.7023],[117.3801,-0.7086],[117.3791,-0.7132],[117.3833,-0.7211],[117.3956,-0.7323],[117.3986,-0.7332],[117.4185,-0.7562],[117.4304,-0.7643],[117.4362,-0.7672],[117.451,-0.7815],[117.4566,-0.7845],[117.4593,-0.7831],[117.4579,-0.7767],[117.455,-0.772],[117.4402,-0.7581],[117.4355,-0.7516],[117.4348,-0.7438],[117.4326,-0.7386],[117.4215,-0.74],[117.4181,-0.7365],[117.4224,-0.7306],[117.4239,-0.7385],[117.435,-0.7363],[117.4365,-0.7329],[117.4299,-0.7223],[117.4163,-0.7103],[117.4025,-0.7015]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.3647,-0.696],[117.3614,-0.6929],[117.3621,-0.6874],[117.3532,-0.6831],[117.3475,-0.6861],[117.3482,-0.6928],[117.3562,-0.6957],[117.3578,-0.7027],[117.3646,-0.705],[117.3618,-0.7126],[117.3632,-0.7187],[117.368,-0.7195],[117.3745,-0.7162],[117.3791,-0.6994],[117.3758,-0.6937],[117.3647,-0.696]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.3947,-0.6882],[117.3882,-0.6824],[117.3846,-0.6825],[117.3876,-0.6923],[117.4044,-0.7008],[117.4035,-0.696],[117.4079,-0.6952],[117.4039,-0.6888],[117.3994,-0.687],[117.3947,-0.6882]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.3288,-0.75],[117.3275,-0.7438],[117.3211,-0.7298],[117.3197,-0.7121],[117.318,-0.7063],[117.3181,-0.6958],[117.3151,-0.6861],[117.3099,-0.6783],[117.3068,-0.6774],[117.3036,-0.6887],[117.2982,-0.6995],[117.2958,-0.7092],[117.2952,-0.7172],[117.2909,-0.7282],[117.2912,-0.7491],[117.2967,-0.7648],[117.2977,-0.7721],[117.2956,-0.7774],[117.2909,-0.7829],[117.2917,-0.7977],[117.2988,-0.8024],[117.3009,-0.808],[117.3012,-0.818],[117.3061,-0.8345],[117.3129,-0.8364],[117.3147,-0.8346],[117.3277,-0.8337],[117.337,-0.8372],[117.3432,-0.8323],[117.338,-0.8224],[117.3272,-0.8089],[117.3168,-0.8022],[117.3145,-0.7945],[117.3219,-0.786],[117.3147,-0.7807],[117.3145,-0.7743],[117.3199,-0.77],[117.3148,-0.7639],[117.3144,-0.75],[117.3189,-0.75],[117.318,-0.7631],[117.3233,-0.7668],[117.3229,-0.7713],[117.3195,-0.7776],[117.3268,-0.7822],[117.3269,-0.7881],[117.3197,-0.7976],[117.3331,-0.8064],[117.3391,-0.8088],[117.3428,-0.8125],[117.3472,-0.8243],[117.3465,-0.835],[117.3393,-0.8416],[117.3163,-0.8491],[117.3117,-0.8539],[117.3105,-0.8575],[117.3149,-0.8782],[117.3187,-0.8817],[117.319,-0.8866],[117.3246,-0.8934],[117.3258,-0.8998],[117.3322,-0.9082],[117.3439,-0.9138],[117.3491,-0.9089],[117.3527,-0.9025],[117.3574,-0.8977],[117.3569,-0.8905],[117.3578,-0.8811],[117.3621,-0.8812],[117.3617,-0.8876],[117.3694,-0.8901],[117.3781,-0.8883],[117.3917,-0.8794],[117.3902,-0.8671],[117.3864,-0.8604],[117.3746,-0.8479],[117.3726,-0.8413],[117.3734,-0.8336],[117.3704,-0.8254],[117.3645,-0.8173],[117.3594,-0.8131],[117.353,-0.7961],[117.3485,-0.7877],[117.3413,-0.7817],[117.3349,-0.7713],[117.3289,-0.7665],[117.3288,-0.75]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.4535,-0.6786],[117.4514,-0.6758],[117.4415,-0.6685],[117.4374,-0.6635],[117.4343,-0.6642],[117.4311,-0.6775],[117.4275,-0.6819],[117.4225,-0.6837],[117.4121,-0.677],[117.4086,-0.6785],[117.4146,-0.6858],[117.4152,-0.6945],[117.4109,-0.6977],[117.4058,-0.6952],[117.4055,-0.7012],[117.422,-0.7088],[117.4358,-0.7261],[117.4438,-0.7389],[117.4489,-0.7423],[117.46,-0.7449],[117.4652,-0.7425],[117.47,-0.7451],[117.477,-0.7449],[117.4817,-0.7494],[117.4926,-0.7483],[117.5013,-0.7503],[117.5026,-0.7438],[117.4983,-0.7372],[117.5016,-0.7339],[117.5051,-0.7395],[117.5027,-0.7494],[117.5038,-0.7554],[117.5122,-0.7558],[117.5183,-0.7622],[117.5181,-0.7665],[117.5149,-0.7703],[117.518,-0.7742],[117.5242,-0.7746],[117.5465,-0.7833],[117.5498,-0.7837],[117.5564,-0.781],[117.5736,-0.7833],[117.5875,-0.7801],[117.5907,-0.7813],[117.6025,-0.7724],[117.6065,-0.7664],[117.606,-0.7477],[117.6071,-0.7389],[117.604,-0.7288],[117.6014,-0.7246],[117.5977,-0.7233],[117.587,-0.7259],[117.5797,-0.7234],[117.5738,-0.7245],[117.569,-0.722],[117.5611,-0.7231],[117.5562,-0.7217],[117.5435,-0.7221],[117.5383,-0.7234],[117.5271,-0.7306],[117.5175,-0.7335],[117.5074,-0.7327],[117.5,-0.7248],[117.4925,-0.7191],[117.4889,-0.7141],[117.4787,-0.7094],[117.4705,-0.7137],[117.465,-0.7083],[117.4651,-0.6968],[117.4535,-0.6851],[117.4535,-0.6786]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.4997,-0.6641],[117.4945,-0.6603],[117.4892,-0.6499],[117.4835,-0.65],[117.4869,-0.6612],[117.4817,-0.6663],[117.4795,-0.6727],[117.475,-0.6751],[117.4726,-0.6797],[117.4729,-0.6859],[117.4863,-0.692],[117.5,-0.6938],[117.5065,-0.6915],[117.5266,-0.6863],[117.5264,-0.6793],[117.5286,-0.6695],[117.5182,-0.6565],[117.5081,-0.6628],[117.4997,-0.6641]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.3474,-0.6454],[117.3369,-0.6375],[117.3299,-0.6345],[117.3229,-0.6332],[117.3212,-0.6392],[117.3236,-0.6413],[117.3246,-0.6537],[117.3289,-0.6594],[117.3377,-0.6552],[117.3389,-0.6586],[117.337,-0.6637],[117.3306,-0.6655],[117.3344,-0.6705],[117.3388,-0.6704],[117.3484,-0.6789],[117.3574,-0.6827],[117.3626,-0.6864],[117.3636,-0.694],[117.3671,-0.695],[117.3758,-0.6924],[117.384,-0.6962],[117.377,-0.6826],[117.3725,-0.6712],[117.368,-0.664],[117.3554,-0.6543],[117.3474,-0.6454]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.3656,-0.6533],[117.3601,-0.6489],[117.3608,-0.6462],[117.3662,-0.6434],[117.356,-0.6407],[117.353,-0.6345],[117.3476,-0.6334],[117.3572,-0.6482],[117.3666,-0.6581],[117.3746,-0.6686],[117.3832,-0.6773],[117.3934,-0.6855],[117.4027,-0.6869],[117.4085,-0.6944],[117.414,-0.6931],[117.4128,-0.6861],[117.4071,-0.679],[117.4081,-0.6761],[117.4186,-0.6762],[117.4199,-0.679],[117.4257,-0.6813],[117.4281,-0.6766],[117.4294,-0.6671],[117.4326,-0.6595],[117.4314,-0.6575],[117.4237,-0.6578],[117.4217,-0.6559],[117.4207,-0.6471],[117.412,-0.6489],[117.41,-0.6463],[117.4131,-0.6414],[117.4103,-0.6378],[117.395,-0.6305],[117.3803,-0.6344],[117.3745,-0.6312],[117.3721,-0.6343],[117.3727,-0.6385],[117.369,-0.6522],[117.3656,-0.6533]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.4782,-0.6494],[117.4808,-0.651],[117.4882,-0.6466],[117.4921,-0.6495],[117.4985,-0.6606],[117.505,-0.6597],[117.5077,-0.6541],[117.5124,-0.6487],[117.5094,-0.6417],[117.5003,-0.6416],[117.4976,-0.637],[117.4986,-0.6264],[117.489,-0.6274],[117.4779,-0.6256],[117.4619,-0.6265],[117.4587,-0.6315],[117.4662,-0.642],[117.4688,-0.6518],[117.4718,-0.6589],[117.4767,-0.6643],[117.4821,-0.664],[117.4844,-0.6593],[117.4782,-0.6494]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.3212,-0.6315],[117.3062,-0.6153],[117.3005,-0.6148],[117.3004,-0.6327],[117.3043,-0.6423],[117.3046,-0.6492],[117.3071,-0.6633],[117.311,-0.673],[117.3189,-0.6847],[117.32,-0.6878],[117.322,-0.7083],[117.3236,-0.7163],[117.3278,-0.7244],[117.3368,-0.7336],[117.3388,-0.7378],[117.3373,-0.7446],[117.332,-0.75],[117.3338,-0.7582],[117.338,-0.763],[117.3486,-0.7687],[117.3539,-0.7778],[117.3541,-0.7821],[117.3589,-0.7973],[117.364,-0.8074],[117.3764,-0.8185],[117.3823,-0.8275],[117.3857,-0.8405],[117.3891,-0.8459],[117.3959,-0.8514],[117.402,-0.8609],[117.4056,-0.8763],[117.4087,-0.8835],[117.416,-0.8862],[117.4232,-0.8807],[117.4224,-0.8765],[117.4156,-0.8724],[117.4157,-0.8692],[117.4239,-0.8617],[117.4272,-0.8683],[117.4313,-0.8666],[117.4357,-0.8707],[117.4369,-0.8783],[117.4399,-0.8825],[117.4352,-0.8858],[117.4362,-0.8892],[117.4422,-0.8892],[117.4458,-0.8853],[117.4466,-0.8804],[117.4429,-0.8732],[117.4365,-0.8641],[117.4343,-0.8538],[117.4334,-0.8438],[117.4211,-0.8437],[117.4163,-0.8426],[117.411,-0.8388],[117.4024,-0.8179],[117.3986,-0.804],[117.3929,-0.7892],[117.3908,-0.7792],[117.3866,-0.777],[117.3807,-0.7809],[117.374,-0.7812],[117.3712,-0.7774],[117.3711,-0.7726],[117.3777,-0.764],[117.3723,-0.7592],[117.3721,-0.7507],[117.3779,-0.7488],[117.3798,-0.7401],[117.3823,-0.7381],[117.3879,-0.7389],[117.3886,-0.7348],[117.3863,-0.7306],[117.375,-0.7182],[117.3666,-0.7209],[117.3614,-0.7176],[117.3602,-0.711],[117.3643,-0.7068],[117.3565,-0.7024],[117.3563,-0.6966],[117.3483,-0.6939],[117.3465,-0.6863],[117.3524,-0.6824],[117.3432,-0.6768],[117.3396,-0.6716],[117.3318,-0.671],[117.3284,-0.6661],[117.3366,-0.6632],[117.3372,-0.6559],[117.3289,-0.6601],[117.3243,-0.6544],[117.3236,-0.6434],[117.3201,-0.6398],[117.3212,-0.6315]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.4984,-0.6139],[117.4935,-0.6112],[117.4925,-0.6039],[117.4874,-0.6037],[117.4869,-0.6091],[117.4764,-0.6227],[117.4925,-0.6246],[117.4962,-0.6227],[117.5012,-0.6253],[117.5023,-0.6375],[117.5086,-0.6373],[117.5149,-0.6407],[117.5196,-0.6495],[117.5236,-0.6515],[117.5315,-0.6525],[117.5475,-0.6511],[117.5538,-0.6494],[117.5581,-0.6461],[117.5647,-0.6332],[117.5675,-0.6251],[117.5662,-0.6187],[117.5599,-0.616],[117.541,-0.6147],[117.5107,-0.6066],[117.5055,-0.6064],[117.5006,-0.6133],[117.4984,-0.6139]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.4991,-0.6133],[117.5021,-0.6081],[117.4972,-0.5979],[117.4934,-0.6026],[117.494,-0.6094],[117.4991,-0.6133]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.4829,-0.5967],[117.4785,-0.5903],[117.4754,-0.5994],[117.4656,-0.6016],[117.4737,-0.6084],[117.4702,-0.6183],[117.4779,-0.618],[117.4806,-0.6129],[117.4853,-0.6095],[117.4865,-0.6024],[117.4891,-0.6],[117.49,-0.5936],[117.4829,-0.5967]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.3718,-0.5982],[117.3718,-0.5891],[117.3684,-0.5859],[117.3544,-0.5944],[117.3436,-0.5992],[117.3382,-0.5998],[117.3449,-0.6085],[117.3488,-0.6058],[117.3515,-0.608],[117.3569,-0.6082],[117.3586,-0.6119],[117.3656,-0.6142],[117.3682,-0.61],[117.3677,-0.6046],[117.3748,-0.608],[117.3743,-0.6114],[117.37,-0.6155],[117.3753,-0.6226],[117.3814,-0.6197],[117.3859,-0.6247],[117.3869,-0.6306],[117.3933,-0.629],[117.3972,-0.6299],[117.4115,-0.6363],[117.4141,-0.6391],[117.4138,-0.6475],[117.42,-0.6447],[117.4241,-0.6498],[117.4244,-0.6559],[117.4332,-0.6544],[117.4413,-0.6579],[117.4421,-0.661],[117.4492,-0.6628],[117.4555,-0.6678],[117.4597,-0.6779],[117.4625,-0.6814],[117.4689,-0.6817],[117.4724,-0.6761],[117.4755,-0.666],[117.4699,-0.6592],[117.465,-0.6443],[117.4598,-0.636],[117.4434,-0.6328],[117.4361,-0.6332],[117.4316,-0.6284],[117.4243,-0.6306],[117.4205,-0.63],[117.4189,-0.6253],[117.4122,-0.6191],[117.4159,-0.6146],[117.4071,-0.6115],[117.4029,-0.6086],[117.395,-0.612],[117.3881,-0.6088],[117.3884,-0.6036],[117.3789,-0.5991],[117.3796,-0.5945],[117.3734,-0.593],[117.3718,-0.5982]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.4279,-0.5974],[117.4249,-0.5914],[117.4293,-0.5881],[117.4242,-0.5843],[117.4199,-0.5912],[117.4187,-0.5978],[117.4158,-0.5976],[117.4124,-0.5928],[117.4086,-0.5964],[117.4082,-0.6023],[117.4014,-0.6045],[117.4039,-0.6103],[117.4067,-0.6107],[117.4114,-0.6064],[117.4124,-0.6124],[117.4175,-0.6149],[117.4146,-0.6202],[117.4198,-0.6237],[117.4217,-0.6291],[117.4261,-0.628],[117.4284,-0.6218],[117.4334,-0.6232],[117.4352,-0.6291],[117.4387,-0.6312],[117.4439,-0.6285],[117.4482,-0.6216],[117.4492,-0.615],[117.4461,-0.6089],[117.4389,-0.6085],[117.4379,-0.605],[117.4328,-0.605],[117.4279,-0.5974]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.322,-0.5828],[117.3221,-0.5796],[117.3056,-0.5771],[117.2962,-0.5784],[117.285,-0.5826],[117.2941,-0.5972],[117.2996,-0.6022],[117.305,-0.6095],[117.3139,-0.6176],[117.3218,-0.6272],[117.3392,-0.6344],[117.3464,-0.6363],[117.3436,-0.6271],[117.3482,-0.628],[117.3528,-0.6329],[117.3575,-0.6409],[117.3674,-0.6434],[117.3611,-0.6467],[117.3609,-0.649],[117.3666,-0.6529],[117.3688,-0.6512],[117.3721,-0.6372],[117.3747,-0.6307],[117.381,-0.6341],[117.3855,-0.629],[117.382,-0.6211],[117.3767,-0.6241],[117.3697,-0.6167],[117.3606,-0.6135],[117.3572,-0.6085],[117.3453,-0.6081],[117.3424,-0.607],[117.3377,-0.5994],[117.3462,-0.5979],[117.3552,-0.5936],[117.3634,-0.5876],[117.3556,-0.5875],[117.3504,-0.5897],[117.3443,-0.5896],[117.3251,-0.5807],[117.322,-0.5828]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.3204,-0.5746],[117.3131,-0.5695],[117.3112,-0.5734],[117.3204,-0.5746]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.3746,-0.5834],[117.3784,-0.5853],[117.3738,-0.5921],[117.3822,-0.5909],[117.3861,-0.5918],[117.3898,-0.6014],[117.3924,-0.5956],[117.3958,-0.5993],[117.3956,-0.6037],[117.3902,-0.609],[117.3949,-0.6109],[117.3987,-0.6095],[117.4044,-0.6041],[117.4031,-0.5995],[117.4065,-0.5982],[117.4078,-0.5922],[117.4144,-0.593],[117.4169,-0.5976],[117.4227,-0.5835],[117.432,-0.5862],[117.4258,-0.5931],[117.435,-0.6042],[117.4389,-0.6034],[117.4413,-0.607],[117.4466,-0.607],[117.4491,-0.6098],[117.4507,-0.6203],[117.448,-0.628],[117.4555,-0.6286],[117.4631,-0.6237],[117.4698,-0.623],[117.4686,-0.6185],[117.4725,-0.6091],[117.4658,-0.6037],[117.463,-0.5968],[117.4645,-0.5937],[117.4705,-0.5961],[117.4754,-0.5946],[117.4725,-0.5892],[117.478,-0.588],[117.4806,-0.5902],[117.4903,-0.5884],[117.4929,-0.5905],[117.4998,-0.5892],[117.5002,-0.5824],[117.5032,-0.5728],[117.4985,-0.5687],[117.491,-0.5667],[117.4835,-0.5664],[117.4758,-0.5629],[117.475,-0.5522],[117.4719,-0.5502],[117.4658,-0.5559],[117.4579,-0.5547],[117.4537,-0.5554],[117.45,-0.5631],[117.4425,-0.5664],[117.4329,-0.5682],[117.417,-0.5649],[117.4051,-0.5676],[117.387,-0.575],[117.3746,-0.5834]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.409,-0.545],[117.408,-0.5427],[117.3947,-0.546],[117.3867,-0.5514],[117.3815,-0.5592],[117.3729,-0.567],[117.3667,-0.5703],[117.3525,-0.574],[117.3491,-0.5758],[117.3525,-0.5809],[117.362,-0.5836],[117.3662,-0.5824],[117.3744,-0.5762],[117.3812,-0.5727],[117.3857,-0.5721],[117.3947,-0.5676],[117.4074,-0.5588],[117.4165,-0.5541],[117.4193,-0.5505],[117.4155,-0.5464],[117.4126,-0.5505],[117.409,-0.545]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.413,-0.5491],[117.4147,-0.5459],[117.4126,-0.5409],[117.4092,-0.5423],[117.4093,-0.5491],[117.413,-0.5491]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.5469,-0.5081],[117.5386,-0.5116],[117.5386,-0.5181],[117.5308,-0.5288],[117.524,-0.5342],[117.5211,-0.5295],[117.5174,-0.528],[117.5108,-0.5288],[117.4996,-0.5255],[117.4928,-0.5275],[117.4858,-0.5263],[117.4813,-0.5285],[117.476,-0.5276],[117.4586,-0.5341],[117.4582,-0.5385],[117.4486,-0.535],[117.4419,-0.5443],[117.4381,-0.5473],[117.44,-0.5619],[117.4471,-0.5605],[117.454,-0.5529],[117.4653,-0.5533],[117.4701,-0.549],[117.4751,-0.5491],[117.4772,-0.5524],[117.4778,-0.56],[117.482,-0.5638],[117.4862,-0.5628],[117.4996,-0.5638],[117.5058,-0.5677],[117.5057,-0.5807],[117.5028,-0.591],[117.5063,-0.5983],[117.5152,-0.5994],[117.519,-0.586],[117.5275,-0.5795],[117.5333,-0.58],[117.5449,-0.5849],[117.5606,-0.5587],[117.5615,-0.5595],[117.5458,-0.5867],[117.5304,-0.5803],[117.5257,-0.5831],[117.5186,-0.5942],[117.5203,-0.5963],[117.5279,-0.5942],[117.5415,-0.5938],[117.5473,-0.5911],[117.5558,-0.5839],[117.5668,-0.5835],[117.5735,-0.5765],[117.5764,-0.5716],[117.5781,-0.5652],[117.5794,-0.5528],[117.5825,-0.5391],[117.5819,-0.5328],[117.5855,-0.5183],[117.5795,-0.5148],[117.5772,-0.519],[117.5676,-0.509],[117.5552,-0.5105],[117.5469,-0.5081]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.5324,-0.5224],[117.5367,-0.5179],[117.5362,-0.5136],[117.5385,-0.5093],[117.5371,-0.5063],[117.5284,-0.508],[117.522,-0.5104],[117.5098,-0.5134],[117.5006,-0.5205],[117.4994,-0.5244],[117.5034,-0.5266],[117.5145,-0.5279],[117.5213,-0.5277],[117.5239,-0.5315],[117.5273,-0.5305],[117.5324,-0.5224]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.5724,-0.5067],[117.572,-0.5015],[117.5664,-0.4988],[117.5609,-0.5016],[117.5527,-0.5029],[117.5492,-0.5068],[117.5542,-0.5089],[117.5724,-0.5067]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.4548,-0.4566],[117.455,-0.4519],[117.4523,-0.4477],[117.4446,-0.4513],[117.4428,-0.455],[117.4377,-0.4566],[117.4396,-0.4626],[117.4369,-0.4652],[117.4394,-0.4715],[117.4352,-0.4729],[117.4354,-0.4769],[117.4299,-0.4803],[117.4373,-0.4838],[117.4416,-0.4762],[117.4511,-0.4655],[117.4548,-0.4566]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.5611,-0.4564],[117.5658,-0.4514],[117.5635,-0.4487],[117.5538,-0.4425],[117.548,-0.4441],[117.5374,-0.4527],[117.5328,-0.4575],[117.5245,-0.4626],[117.5148,-0.4669],[117.5063,-0.469],[117.5059,-0.4719],[117.4981,-0.4715],[117.4913,-0.4796],[117.4897,-0.4854],[117.4858,-0.489],[117.4765,-0.4937],[117.4671,-0.5006],[117.462,-0.5],[117.4567,-0.5036],[117.4393,-0.5186],[117.4231,-0.5282],[117.4169,-0.5338],[117.4148,-0.5399],[117.4212,-0.5486],[117.4182,-0.5614],[117.4355,-0.5636],[117.4386,-0.5617],[117.439,-0.5541],[117.4367,-0.5426],[117.4429,-0.5432],[117.4479,-0.5339],[117.4544,-0.5352],[117.4653,-0.5294],[117.4732,-0.527],[117.4965,-0.5161],[117.5086,-0.5074],[117.509,-0.5033],[117.5032,-0.5029],[117.4998,-0.5084],[117.4963,-0.5071],[117.4937,-0.4995],[117.4855,-0.5009],[117.4845,-0.5088],[117.4796,-0.5102],[117.4844,-0.4999],[117.4935,-0.4988],[117.5016,-0.5017],[117.5106,-0.5028],[117.5121,-0.5077],[117.5235,-0.5022],[117.5327,-0.501],[117.5444,-0.4983],[117.5668,-0.492],[117.5762,-0.4925],[117.5827,-0.4904],[117.5864,-0.4861],[117.5967,-0.4791],[117.5902,-0.4745],[117.5924,-0.4688],[117.5912,-0.4644],[117.5803,-0.4659],[117.5719,-0.4644],[117.5691,-0.469],[117.5629,-0.4658],[117.559,-0.4701],[117.5508,-0.4695],[117.5492,-0.4635],[117.5525,-0.4627],[117.554,-0.4581],[117.5614,-0.4603],[117.5611,-0.4564]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.4995,-0.4589],[117.5099,-0.451],[117.5154,-0.4428],[117.5014,-0.4526],[117.4995,-0.4589]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.6222,-0.4197],[117.6134,-0.4153],[117.6073,-0.4106],[117.6038,-0.4112],[117.5902,-0.4174],[117.5845,-0.4237],[117.5674,-0.4328],[117.5575,-0.4401],[117.5581,-0.4443],[117.5663,-0.4502],[117.5655,-0.4543],[117.5618,-0.4557],[117.5599,-0.4627],[117.5555,-0.459],[117.5532,-0.4685],[117.5579,-0.4691],[117.5634,-0.4643],[117.5684,-0.4681],[117.5702,-0.4645],[117.581,-0.4647],[117.5915,-0.4628],[117.5946,-0.4662],[117.5923,-0.4753],[117.5993,-0.4756],[117.5967,-0.4879],[117.6064,-0.4736],[117.6128,-0.468],[117.6155,-0.4638],[117.6239,-0.4566],[117.6333,-0.444],[117.6349,-0.4372],[117.6349,-0.4302],[117.6296,-0.4202],[117.6222,-0.4197]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.5519,-0.4095],[117.5432,-0.412],[117.5349,-0.4207],[117.5311,-0.4263],[117.5285,-0.4358],[117.5337,-0.4331],[117.5501,-0.4175],[117.5533,-0.4122],[117.5519,-0.4095]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.5518,-0.3826],[117.5442,-0.3852],[117.5353,-0.3949],[117.5298,-0.3984],[117.5227,-0.4001],[117.5132,-0.3989],[117.5094,-0.4011],[117.5151,-0.4094],[117.5158,-0.4153],[117.5094,-0.4253],[117.5111,-0.4315],[117.5077,-0.4372],[117.5,-0.44],[117.4877,-0.4418],[117.4837,-0.4529],[117.4781,-0.457],[117.4732,-0.4638],[117.4726,-0.4706],[117.4697,-0.4747],[117.4656,-0.4752],[117.4636,-0.4788],[117.4652,-0.4836],[117.4609,-0.4855],[117.4572,-0.4903],[117.4514,-0.4942],[117.4554,-0.4981],[117.4699,-0.4906],[117.4826,-0.4798],[117.4865,-0.4734],[117.4905,-0.4636],[117.4988,-0.4525],[117.5153,-0.4414],[117.5264,-0.4296],[117.5334,-0.4182],[117.5432,-0.4078],[117.5538,-0.3934],[117.5553,-0.3895],[117.5518,-0.3826]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.5146,-0.3493],[117.509,-0.3468],[117.4983,-0.3511],[117.492,-0.3659],[117.486,-0.3762],[117.4859,-0.387],[117.4953,-0.3811],[117.5026,-0.3678],[117.51,-0.3605],[117.5146,-0.3493]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.5359,-0.3467],[117.5291,-0.3475],[117.5241,-0.3567],[117.5173,-0.3634],[117.5068,-0.3794],[117.4925,-0.3921],[117.4743,-0.411],[117.4686,-0.4201],[117.4667,-0.4257],[117.4586,-0.4613],[117.4575,-0.4639],[117.4416,-0.481],[117.4405,-0.4868],[117.4435,-0.5006],[117.4491,-0.4984],[117.4498,-0.4957],[117.4566,-0.4902],[117.4608,-0.4849],[117.4644,-0.4836],[117.4641,-0.4755],[117.4706,-0.4735],[117.4715,-0.4651],[117.4748,-0.4593],[117.483,-0.4519],[117.4854,-0.4427],[117.4887,-0.4405],[117.4989,-0.4394],[117.5068,-0.4363],[117.509,-0.4294],[117.5067,-0.4266],[117.5075,-0.4204],[117.5124,-0.4164],[117.5139,-0.4126],[117.5084,-0.4047],[117.5065,-0.3992],[117.5156,-0.3955],[117.5308,-0.3952],[117.533,-0.393],[117.5336,-0.3855],[117.5295,-0.3833],[117.5294,-0.3763],[117.5354,-0.3777],[117.5335,-0.3838],[117.5353,-0.3874],[117.5408,-0.3822],[117.5532,-0.3754],[117.5595,-0.3711],[117.5603,-0.3668],[117.5542,-0.3616],[117.5447,-0.3492],[117.5359,-0.3467]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.4892,-0.3291],[117.4778,-0.329],[117.4734,-0.331],[117.4668,-0.3379],[117.4604,-0.3476],[117.4583,-0.3536],[117.4628,-0.3585],[117.4656,-0.364],[117.4675,-0.3749],[117.4639,-0.3833],[117.4602,-0.3883],[117.4515,-0.3867],[117.4439,-0.381],[117.4371,-0.3809],[117.4393,-0.3904],[117.4349,-0.3966],[117.4309,-0.3974],[117.4341,-0.4047],[117.432,-0.4142],[117.4391,-0.4199],[117.4391,-0.424],[117.4341,-0.4291],[117.4262,-0.4293],[117.427,-0.4335],[117.4337,-0.4338],[117.4385,-0.438],[117.4437,-0.4366],[117.4446,-0.4407],[117.451,-0.4408],[117.4532,-0.438],[117.4558,-0.4242],[117.4721,-0.3973],[117.4804,-0.3797],[117.4857,-0.3656],[117.4941,-0.3457],[117.4924,-0.3411],[117.4918,-0.3291],[117.4892,-0.3291]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.3892,0.0225],[117.3702,0.022],[117.3709,0.0186],[117.3775,0.0117],[117.3849,0.0125],[117.3927,0.007],[117.3969,-0.0044],[117.3971,-0.0095],[117.4091,-0.0109],[117.4127,-0.0172],[117.4212,-0.0142],[117.4273,-0.0205],[117.4338,-0.021],[117.4361,-0.0186],[117.4401,-0.0311],[117.4361,-0.0346],[117.4433,-0.0422],[117.4483,-0.0427],[117.4489,-0.0465],[117.4539,-0.0478],[117.4578,-0.051],[117.4638,-0.0522],[117.4692,-0.0506],[117.4732,-0.0463],[117.478,-0.0485],[117.4805,-0.0427],[117.4854,-0.0395],[117.4913,-0.0392],[117.4941,-0.0422],[117.5015,-0.0383],[117.5082,-0.0317],[117.5123,-0.0322],[117.5177,-0.03],[117.5184,-0.0259],[117.5146,-0.0119],[117.511,-0.0049],[117.5083,-0.0036],[117.5038,0.0048],[117.5064,0.0176],[117.4574,0.0191],[117.4282,0.0197],[117.3898,0.0187],[117.3892,0.0225]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"LineString","coordinates":[[117.3698,0.0222],[117.3667,0.0276],[117.3612,0.0287],[117.3568,0.0265],[117.3387,0.034],[117.3345,0.0465],[117.3241,0.0479],[117.2864,0.0322],[117.262,0.0548],[117.2237,0.0778],[117.1952,0.0953],[117.1699,0.1054],[117.1528,0.122],[117.1478,0.1436],[117.151,0.1671],[117.1548,0.188],[117.1618,0.1968],[117.1708,0.232],[117.1837,0.2841],[117.1804,0.3232],[117.1703,0.3434],[117.1511,0.3641],[117.116,0.413],[117.0825,0.448],[117.0408,0.5012],[117.0078,0.5805],[116.9922,0.6137],[116.9779,0.6146],[116.9507,0.5966],[116.9346,0.5603],[116.9401,0.5405],[116.9471,0.5211],[116.9397,0.5032],[116.9312,0.492],[116.9299,0.4837],[116.9358,0.4649],[116.9393,0.4585],[116.9432,0.4425],[116.9467,0.4055],[116.9443,0.3855],[116.9441,0.3752],[116.9403,0.3695],[116.9357,0.3563],[116.9221,0.331],[116.9172,0.3254],[116.9141,0.3194],[116.906,0.3093],[116.8959,0.2947],[116.8879,0.2784],[116.8812,0.2688],[116.8767,0.2656],[116.8677,0.2501],[116.8622,0.2432],[116.8596,0.2369],[116.8524,0.2279],[116.8448,0.2169],[116.84,0.2134],[116.8325,0.2023],[116.8242,0.1925],[116.8183,0.1841],[116.7974,0.1616],[116.7932,0.1553],[116.7857,0.1478],[116.7789,0.1389],[116.7644,0.1223],[116.7571,0.1129],[116.7527,0.1089],[116.7499,0.104],[116.7392,0.0946],[116.7383,0.0882],[116.7395,0.0773],[116.7395,0.0621],[116.7414,0.0541],[116.7417,0.0442],[116.7384,0.0296],[116.7293,0.0207],[116.7192,0.0164],[116.7116,0.0161],[116.6846,0.0178],[116.6695,0.0175],[116.6457,0.0186],[116.6389,0.018],[116.6347,0.0195],[116.6232,0.0207],[116.6162,0.0197],[116.5979,0.0204],[116.5915,0.0217],[116.563,0.0238],[116.5468,0.0235],[116.5404,0.0244],[116.5262,0.0233],[116.5134,0.0243],[116.5054,0.023],[116.4916,0.0239],[116.4749,0.0272],[116.4747,0.0423],[116.4766,0.0565],[116.48,0.0673],[116.4821,0.0829],[116.4874,0.1049],[116.4905,0.1214],[116.4905,0.1424],[116.4894,0.1577],[116.4909,0.1692],[116.4932,0.2027],[116.4936,0.2241],[116.493,0.2688],[116.4887,0.2873],[116.4828,0.3028],[116.4772,0.316],[116.4715,0.3233],[116.466,0.3324],[116.4586,0.3412],[116.4532,0.3542],[116.4299,0.3646],[116.4029,0.3684],[116.3887,0.3723],[116.378,0.3806],[116.3711,0.384],[116.3574,0.3989],[116.349,0.4094],[116.3414,0.4176],[116.3307,0.4269],[116.3185,0.4339],[116.2845,0.4488],[116.2854,0.452],[116.2843,0.4744],[116.2856,0.4906],[116.2834,0.4971],[116.2754,0.5094],[116.271,0.5252],[116.2738,0.5575],[116.2845,0.568],[116.2953,0.5741],[116.2985,0.5779],[116.2998,0.587],[116.2955,0.5988],[116.2911,0.607],[116.2821,0.6195],[116.2658,0.6324],[116.2612,0.637],[116.2575,0.6444],[116.2416,0.6663],[116.2361,0.6798],[116.2329,0.7033],[116.225,0.7089],[116.2196,0.7092],[116.1974,0.7127],[116.1853,0.7154],[116.1644,0.7169],[116.1468,0.7212],[116.1412,0.7274],[116.141,0.7332],[116.1435,0.7423],[116.1416,0.752],[116.1387,0.7562],[116.1348,0.7577],[116.1158,0.7592],[116.1055,0.7624],[116.0978,0.7733],[116.0872,0.7834],[116.0657,0.8006],[116.0566,0.8049],[116.043,0.8068],[116.0314,0.8069],[116.0204,0.8106],[116.0092,0.8188],[116.0068,0.8228],[116.0064,0.8286],[116.0096,0.834],[116.0133,0.8351],[116.0274,0.8517],[116.0366,0.872],[116.0391,0.8868],[116.0588,0.8923],[116.0661,0.8991],[116.044,0.9446],[116.0426,0.9469],[116.049,0.9641],[116.0481,0.9853],[116.0454,0.9947],[116.0501,1.0011],[116.0661,1.0146],[116.0698,1.0331],[116.0629,1.0471],[116.0704,1.0622],[116.0711,1.0704],[116.0691,1.082],[116.0667,1.0865],[116.066,1.0931],[116.0714,1.0985],[116.0831,1.1036],[116.0971,1.1062],[116.107,1.1094],[116.123,1.1115],[116.132,1.1111],[116.1428,1.1254],[116.1463,1.1339],[116.1449,1.1567],[116.1429,1.1627],[116.1313,1.1795],[116.1293,1.1889],[116.1476,1.2173],[116.1484,1.2267],[116.1467,1.2357],[116.1347,1.2592],[116.1278,1.2778],[116.1288,1.2863],[116.1442,1.298],[116.1473,1.3257],[116.1571,1.3558],[116.1583,1.3865],[116.1454,1.4068],[116.1387,1.4234],[116.1485,1.4677],[116.1411,1.4775],[116.1135,1.4867],[116.0876,1.491],[116.0098,1.5282],[115.9976,1.5288],[115.9875,1.5323],[115.9774,1.5336],[115.9698,1.5304],[115.9636,1.5244],[115.9603,1.508],[115.9552,1.4924],[115.9502,1.489],[115.9354,1.4839],[115.9269,1.4802],[115.9113,1.4777],[115.8862,1.4541],[115.8633,1.4427],[115.8557,1.4377],[115.8513,1.4318],[115.8533,1.4218],[115.858,1.4071],[115.8516,1.3959],[115.8379,1.3832],[115.8357,1.3758],[115.821,1.3716],[115.8087,1.3749],[115.7857,1.3623],[115.7723,1.3592],[115.7651,1.3493],[115.7618,1.3382],[115.7437,1.3198],[115.7207,1.2888],[115.7126,1.2657],[115.6799,1.2743],[115.6461,1.2841],[115.6212,1.284],[115.6023,1.2779],[115.586,1.2791],[115.576,1.2737],[115.5659,1.2697],[115.5385,1.2625],[115.5043,1.2571],[115.5055,1.2482],[115.5025,1.2416],[115.4951,1.2308],[115.4889,1.2269],[115.4759,1.2138],[115.4767,1.2062],[115.4792,1.1996],[115.4852,1.1909],[115.4912,1.1845],[115.5035,1.1618],[115.509,1.1455],[115.5118,1.1352],[115.5174,1.1214],[115.5209,1.1037],[115.5222,1.0812],[115.5259,1.0578],[115.525,1.0257],[115.5202,0.9633],[115.5198,0.9531],[115.5166,0.9357],[115.5086,0.9119],[115.5031,0.8988],[115.4856,0.8664],[115.4782,0.8559],[115.4654,0.8344],[115.4628,0.823],[115.462,0.8075],[115.4636,0.783],[115.4661,0.7714],[115.474,0.762],[115.4812,0.7552],[115.4974,0.7442],[115.5086,0.7348],[115.5153,0.7264],[115.52,0.7182],[115.5367,0.6986],[115.5458,0.6866],[115.5564,0.6744],[115.5725,0.6543],[115.5787,0.6437],[115.5878,0.6347],[115.6001,0.626],[115.6105,0.6237],[115.6203,0.625],[115.6263,0.6202],[115.6387,0.6167],[115.6423,0.6169],[115.6533,0.6039],[115.65,0.5769],[115.6365,0.5567],[115.6537,0.5457],[115.6575,0.5442],[115.67,0.536],[115.6855,0.522],[115.7649,0.4488],[115.7781,0.4319],[115.7818,0.4259],[115.782,0.4046],[115.775,0.3736],[115.7727,0.3668],[115.7647,0.3512],[115.7626,0.3397],[115.76,0.3316],[115.7609,0.3185],[115.7708,0.3058],[115.7834,0.3011],[115.7881,0.2982],[115.8057,0.2603],[115.8161,0.2156],[115.8195,0.2037],[115.8205,0.1955],[115.8592,0.2058],[115.8963,0.2125],[115.9165,0.2058],[115.9165,0.1687],[115.9233,0.1383],[115.9503,0.1147],[115.9908,0.0911],[116.0106,0.0712],[116.0283,0.0594],[116.03,0.0501],[116.0271,0.0362],[116.0213,0.0285],[116.0061,0.0122],[115.9843,-0.0083],[115.973,-0.0283],[115.9755,-0.0352],[115.9825,-0.0654],[115.9908,-0.0709],[116.0312,-0.1114],[116.0717,-0.1654],[116.0759,-0.1689],[116.104,-0.1885],[116.1179,-0.1967],[116.1284,-0.2014],[116.1437,-0.2113],[116.1654,-0.2296],[116.1812,-0.2461],[116.1917,-0.2538],[116.2353,-0.2806],[116.2463,-0.2864],[116.2548,-0.2899],[116.2689,-0.2923],[116.32,-0.2998],[116.3168,-0.3169],[116.304,-0.3735],[116.2972,-0.386],[116.2931,-0.3908],[116.2758,-0.4252],[116.278,-0.4377],[116.2822,-0.443],[116.2918,-0.4479],[116.299,-0.449],[116.3118,-0.4476],[116.3172,-0.4513],[116.3164,-0.4615],[116.3105,-0.4768],[116.3054,-0.4812],[116.3047,-0.4874],[116.3086,-0.4899],[116.3177,-0.4835],[116.3232,-0.4838],[116.3294,-0.4884],[116.3327,-0.4884],[116.3361,-0.5],[116.3414,-0.5355],[116.3503,-0.5716],[116.3702,-0.6029],[116.3886,-0.6329],[116.4055,-0.6649],[116.4229,-0.6932],[116.4445,-0.7268],[116.4784,-0.7532],[116.4989,-0.7664],[116.5178,-0.7727],[116.5219,-0.775],[116.5053,-0.8048],[116.4986,-0.8217],[116.5053,-0.8385],[116.516,-0.8421],[116.516,-0.8421],[116.5244,-0.8387],[116.5331,-0.8377],[116.5401,-0.8385],[116.5581,-0.846],[116.5654,-0.8495],[116.5733,-0.8566],[116.5796,-0.8622],[116.6032,-0.879],[116.6303,-0.8821],[116.647,-0.8419],[116.6673,-0.8115],[116.6841,-0.8014],[116.6991,-0.7998],[116.7106,-0.7985],[116.7145,-0.7979],[116.7215,-0.8007],[116.7341,-0.8054],[116.7415,-0.8081],[116.7685,-0.8115],[116.8091,-0.8115],[116.8524,-0.8173],[116.8595,-0.8183],[116.8927,-0.8315],[116.8848,-0.8512],[116.8961,-0.8612],[116.8995,-0.8647],[116.9092,-0.8763],[116.9137,-0.8822],[116.925,-0.8936],[116.9377,-0.9047],[116.9479,-0.9159],[116.955,-0.9257],[116.9468,-0.9332],[116.921,-0.9627],[116.8999,-0.9722],[116.8892,-0.9787],[116.8791,-0.9883],[116.8747,-0.9954],[116.874,-1.0067],[116.8696,-1.0099],[116.8632,-1.0117],[116.8532,-1.0141],[116.8428,-1.0223],[116.8398,-1.0291],[116.841,-1.0315],[116.8388,-1.0368],[116.8379,-1.0426],[116.8372,-1.046],[116.8393,-1.049],[116.845,-1.049],[116.8465,-1.0532],[116.8553,-1.0551],[116.8606,-1.0585],[116.8678,-1.0593],[116.88,-1.0555],[116.8842,-1.0558],[116.8876,-1.0596],[116.8937,-1.0608],[116.9035,-1.065],[116.9039,-1.0714],[116.9081,-1.0809],[116.913,-1.0824],[116.9176,-1.0908],[116.9225,-1.0904],[116.9267,-1.0961],[116.9324,-1.098],[116.9289,-1.1056],[116.934,-1.1083],[116.9405,-1.1073],[116.9479,-1.1081],[116.9547,-1.1111],[116.9598,-1.1151],[116.9624,-1.1199],[116.9687,-1.122],[116.9724,-1.1254],[116.9855,-1.1284],[116.9951,-1.1316],[117.0017,-1.13],[117.0076,-1.1316],[117.018,-1.1365],[117.022,-1.1403],[117.0326,-1.1303],[117.0428,-1.1234],[117.0466,-1.1226],[117.0516,-1.1185],[117.055,-1.1129],[117.0652,-1.1055],[117.0677,-1.0972],[117.0707,-1.0956],[117.0768,-1.0878],[117.0785,-1.0832],[117.0983,-1.0581],[117.1005,-1.0492],[117.1065,-1.0414],[117.1101,-1.0331],[117.1165,-1.0258],[117.1174,-1.0201],[117.1301,-1.0067],[117.1353,-0.9998],[117.1409,-0.995],[117.1497,-0.9802],[117.1555,-0.974],[117.156,-0.9707],[117.1624,-0.9651],[117.1645,-0.9601],[117.1752,-0.9487],[117.1771,-0.9449],[117.1879,-0.9375],[117.2046,-0.9281],[117.2299,-0.9171],[117.2441,-0.912],[117.249,-0.9063],[117.2483,-0.9022],[117.2496,-0.8949],[117.25,-0.8665],[117.2513,-0.8453],[117.25,-0.8375],[117.2507,-0.8255],[117.2533,-0.8113],[117.2484,-0.8052],[117.2445,-0.8029],[117.2337,-0.8004],[117.2181,-0.8011],[117.2108,-0.8003],[117.2031,-0.7942],[117.197,-0.7949],[117.1907,-0.7926],[117.1855,-0.7854],[117.1805,-0.7825],[117.1839,-0.7789],[117.1918,-0.7895],[117.1965,-0.789],[117.2095,-0.792],[117.2178,-0.7971],[117.225,-0.7939],[117.2342,-0.7939],[117.2451,-0.7981],[117.2554,-0.8039],[117.2622,-0.8046],[117.2649,-0.8075],[117.2701,-0.8056],[117.2776,-0.7986],[117.2807,-0.7939],[117.2822,-0.7869],[117.2753,-0.7782],[117.2685,-0.7671],[117.2569,-0.7569],[117.2497,-0.7545],[117.2376,-0.7458],[117.2303,-0.7434],[117.2246,-0.7382],[117.2343,-0.7266],[117.2399,-0.7244],[117.2438,-0.7207],[117.2462,-0.7145],[117.251,-0.7096],[117.2585,-0.7078],[117.277,-0.7016],[117.2786,-0.698],[117.2863,-0.6936],[117.2892,-0.6904],[117.2887,-0.6853],[117.2936,-0.6808],[117.304,-0.6686],[117.3022,-0.648],[117.2965,-0.6199],[117.2913,-0.6064],[117.2856,-0.5977],[117.2828,-0.6008],[117.2727,-0.5992],[117.271,-0.602],[117.2702,-0.612],[117.2621,-0.6212],[117.2491,-0.6281],[117.2462,-0.6334],[117.235,-0.6368],[117.2309,-0.6397],[117.2312,-0.6435],[117.2354,-0.6517],[117.2322,-0.6602],[117.2229,-0.6684],[117.2013,-0.6702],[117.1935,-0.676],[117.1935,-0.6824],[117.1883,-0.6894],[117.1855,-0.6963],[117.1858,-0.7007],[117.1817,-0.7065],[117.161,-0.7045],[117.152,-0.6852],[117.1489,-0.6867],[117.1386,-0.6874],[117.1384,-0.6739],[117.1356,-0.6722],[117.1296,-0.6633],[117.1298,-0.6572],[117.1369,-0.651],[117.1399,-0.6411],[117.1392,-0.6336],[117.1421,-0.6194],[117.1236,-0.6057],[117.1201,-0.5991],[117.1151,-0.5979],[117.109,-0.5993],[117.1001,-0.5941],[117.0962,-0.5894],[117.0975,-0.5835],[117.0939,-0.5771],[117.0845,-0.5763],[117.0821,-0.5773],[117.0786,-0.5862],[117.0762,-0.5786],[117.0667,-0.5714],[117.0616,-0.5592],[117.0589,-0.55],[117.0545,-0.529],[117.0488,-0.5212],[117.0471,-0.5165],[117.0472,-0.5],[117.0491,-0.4859],[117.0553,-0.4636],[117.0646,-0.4418],[117.0687,-0.434],[117.0789,-0.4303],[117.0894,-0.4278],[117.1012,-0.4235],[117.1112,-0.418],[117.1202,-0.4118],[117.1271,-0.4052],[117.1334,-0.3942],[117.1376,-0.3828],[117.1439,-0.3514],[117.1464,-0.3488],[117.1559,-0.3439],[117.1698,-0.3384],[117.1761,-0.3326],[117.1829,-0.3233],[117.1889,-0.3174],[117.1964,-0.3133],[117.2039,-0.3124],[117.2116,-0.3143],[117.2207,-0.3206],[117.2398,-0.34],[117.2424,-0.3494],[117.2425,-0.3595],[117.2442,-0.3668],[117.2487,-0.3675],[117.2578,-0.3647],[117.2618,-0.3651],[117.2717,-0.359],[117.2793,-0.3592],[117.2884,-0.3628],[117.293,-0.3662],[117.2952,-0.3722],[117.2984,-0.3758],[117.2979,-0.3808],[117.3027,-0.3832],[117.3014,-0.3893],[117.3039,-0.3973],[117.3026,-0.4037],[117.2965,-0.4097],[117.2929,-0.4107],[117.2892,-0.4037],[117.2866,-0.41],[117.2788,-0.4197],[117.2838,-0.4296],[117.2851,-0.44],[117.2843,-0.4497],[117.28,-0.4628],[117.2694,-0.4726],[117.2628,-0.4775],[117.2609,-0.4874],[117.2595,-0.5202],[117.2603,-0.527],[117.2687,-0.5275],[117.2688,-0.5313],[117.2641,-0.5318],[117.2645,-0.5374],[117.2673,-0.5435],[117.2669,-0.5488],[117.2619,-0.5543],[117.2575,-0.5506],[117.2536,-0.5505],[117.2516,-0.5549],[117.2428,-0.5617],[117.2386,-0.5624],[117.2392,-0.5666],[117.2402,-0.5699],[117.2495,-0.5705],[117.2686,-0.5759],[117.281,-0.5775],[117.306,-0.5718],[117.3122,-0.5678],[117.3312,-0.579],[117.3359,-0.5801],[117.3483,-0.5804],[117.3479,-0.5751],[117.3539,-0.5726],[117.3646,-0.5702],[117.3755,-0.5639],[117.3805,-0.5589],[117.3843,-0.552],[117.3945,-0.5452],[117.411,-0.5398],[117.4156,-0.5302],[117.4243,-0.5219],[117.4326,-0.5103],[117.4386,-0.4958],[117.4367,-0.4847],[117.4309,-0.4827],[117.43,-0.477],[117.4352,-0.4756],[117.4389,-0.4707],[117.4362,-0.4639],[117.4359,-0.4581],[117.4412,-0.4553],[117.4442,-0.4503],[117.45,-0.4464],[117.4488,-0.4438],[117.439,-0.4396],[117.4342,-0.4351],[117.4249,-0.4343],[117.4249,-0.4287],[117.4283,-0.4266],[117.4355,-0.4269],[117.4379,-0.421],[117.4364,-0.4178],[117.431,-0.4156],[117.4304,-0.4112],[117.4324,-0.4059],[117.4281,-0.3988],[117.4294,-0.3947],[117.4373,-0.3902],[117.4347,-0.3855],[117.4361,-0.3803],[117.4414,-0.3786],[117.4501,-0.3816],[117.4551,-0.3867],[117.4596,-0.3863],[117.462,-0.3827],[117.4647,-0.3725],[117.4615,-0.3624],[117.4576,-0.3608],[117.4526,-0.3549],[117.4511,-0.3455],[117.452,-0.3396],[117.4466,-0.3221],[117.4475,-0.3151],[117.4517,-0.3033],[117.4416,-0.2968],[117.4278,-0.2776],[117.4236,-0.2684],[117.422,-0.2576],[117.4184,-0.25],[117.4151,-0.2295],[117.4204,-0.2126],[117.4278,-0.2068],[117.4373,-0.2076],[117.429,-0.2146],[117.4298,-0.2196],[117.4392,-0.2097],[117.4438,-0.2022],[117.4443,-0.1855],[117.4455,-0.1793],[117.4578,-0.152],[117.4591,-0.1456],[117.4652,-0.128],[117.468,-0.1227],[117.4706,-0.1108],[117.474,-0.1033],[117.4731,-0.0962],[117.4755,-0.0873],[117.4759,-0.0805],[117.4791,-0.0769],[117.4811,-0.0701],[117.4853,-0.0652],[117.4887,-0.0656],[117.4998,-0.0575],[117.5114,-0.0427],[117.5147,-0.0337],[117.5065,-0.0366],[117.5031,-0.0403],[117.4936,-0.0426],[117.4888,-0.0404],[117.4872,-0.0439],[117.4786,-0.0489],[117.4634,-0.0523],[117.4577,-0.0551],[117.4554,-0.0501],[117.4481,-0.0435],[117.4427,-0.0424],[117.435,-0.0358],[117.438,-0.0284],[117.4357,-0.0203],[117.4293,-0.0234],[117.4255,-0.0175],[117.4199,-0.0168],[117.4145,-0.018],[117.408,-0.0122],[117.4016,-0.0116],[117.3958,-0.007],[117.3964,-0.0032],[117.3912,0],[117.3913,0.0035],[117.3876,0.01],[117.3752,0.0144],[117.3706,0.0184],[117.3698,0.0222]]}},{"type":"Feature","properties":{"mhid":"1332:368","alt_name":"KABUPATEN KUTAI TIMUR","latitude":1.03769,"longitude":117.83112,"sample_value":177},"geometry":{"type":"LineString","coordinates":[[118.0131,0.7444],[118.0088,0.7459],[118.0047,0.7391],[117.9972,0.7352],[117.9977,0.7289],[118.0042,0.7162],[118.0138,0.7117],[118.0218,0.7225],[118.022,0.736],[118.0166,0.7458],[118.0131,0.7444]]}},{"type":"Feature","properties":{"mhid":"1332:368","alt_name":"KABUPATEN KUTAI TIMUR","latitude":1.03769,"longitude":117.83112,"sample_value":177},"geometry":{"type":"LineString","coordinates":[[118.4907,0.7674],[118.4892,0.7723],[118.4849,0.7728],[118.4837,0.7665],[118.4907,0.7674]]}},{"type":"Feature","properties":{"mhid":"1332:368","alt_name":"KABUPATEN KUTAI TIMUR","latitude":1.03769,"longitude":117.83112,"sample_value":177},"geometry":{"type":"LineString","coordinates":[[118.0461,0.7711],[118.046,0.7768],[118.0419,0.7827],[118.0389,0.7805],[118.0387,0.7751],[118.0426,0.771],[118.0461,0.7711]]}},{"type":"Feature","properties":{"mhid":"1332:368","alt_name":"KABUPATEN KUTAI TIMUR","latitude":1.03769,"longitude":117.83112,"sample_value":177},"geometry":{"type":"LineString","coordinates":[[118.0287,0.8822],[118.0272,0.8889],[118.018,0.8953],[118.0161,0.8906],[118.0234,0.882],[118.0287,0.8822]]}},{"type":"Feature","properties":{"mhid":"1332:368","alt_name":"KABUPATEN KUTAI TIMUR","latitude":1.03769,"longitude":117.83112,"sample_value":177},"geometry":{"type":"LineString","coordinates":[[118.0085,0.9001],[118.0098,0.9047],[118.0071,0.9154],[118.0079,0.9275],[117.9972,0.9341],[117.9931,0.9301],[117.9923,0.9221],[118.0028,0.899],[118.0085,0.9001]]}},{"type":"Feature","properties":{"mhid":"1332:368","alt_name":"KABUPATEN KUTAI TIMUR","latitude":1.03769,"longitude":117.83112,"sample_value":177},"geometry":{"type":"LineString","coordinates":[[118.0069,0.9635],[118.0036,0.9687],[118.0028,0.9741],[118.0051,0.9825],[118.0047,0.9875],[117.9986,0.9902],[118.0005,0.9799],[117.9972,0.9743],[117.9967,0.9693],[117.9988,0.9654],[118.0039,0.9618],[118.0069,0.9635]]}},{"type":"Feature","properties":{"mhid":"1332:368","alt_name":"KABUPATEN KUTAI TIMUR","latitude":1.03769,"longitude":117.83112,"sample_value":177},"geometry":{"type":"LineString","coordinates":[[117.9548,1.0459],[117.9483,1.0532],[117.9407,1.0567],[117.9367,1.0569],[117.9353,1.0502],[117.9383,1.0483],[117.9389,1.0426],[117.9463,1.0351],[117.9483,1.0231],[117.9507,1.0151],[117.954,1.0098],[117.9597,1.0057],[117.9656,0.9921],[117.9709,0.9839],[117.9749,0.9824],[117.9783,0.9745],[117.9842,0.9735],[117.9876,0.977],[117.9846,0.9878],[117.9797,0.9953],[117.9803,1.0008],[117.9746,1.0118],[117.9777,1.0163],[117.9746,1.0231],[117.9638,1.0359],[117.9609,1.0351],[117.956,1.0408],[117.9548,1.0459]]}},{"type":"Feature","properties":{"mhid":"1332:368","alt_name":"KABUPATEN KUTAI TIMUR","latitude":1.03769,"longitude":117.83112,"sample_value":177},"geometry":{"type":"LineString","coordinates":[[117.9188,1.0926],[117.9174,1.0977],[117.909,1.1074],[117.908,1.1035],[117.9138,1.0943],[117.9188,1.0926]]}},{"type":"Feature","properties":{"mhid":"1332:368","alt_name":"KABUPATEN KUTAI TIMUR","latitude":1.03769,"longitude":117.83112,"sample_value":177},"geometry":{"type":"LineString","coordinates":[[118.9847,1.03],[118.9774,1.0169],[118.9658,1.0104],[118.9412,1.0087],[118.9207,1.0165],[118.9068,1.0251],[118.892,1.0283],[118.882,1.0234],[118.8701,1.0156],[118.8544,1.0105],[118.828,1.0103],[118.8056,1.0039],[118.797,1.0085],[118.7917,1.0209],[118.787,1.0431],[118.7805,1.0824],[118.769,1.1038],[118.7591,1.107],[118.7427,1.107],[118.7099,1.1021],[118.6821,1.1021],[118.6684,1.1017],[118.6527,1.0956],[118.6329,1.0907],[118.6067,1.0962],[118.5846,1.1132],[118.5803,1.1366],[118.5902,1.212],[118.5853,1.2317],[118.5787,1.2448],[118.5607,1.2498],[118.5557,1.2416],[118.5541,1.2268],[118.5459,1.2186],[118.5331,1.2138],[118.5208,1.2203],[118.516,1.2239],[118.5057,1.2342],[118.4986,1.2438],[118.4856,1.2633],[118.4606,1.2777],[118.4442,1.2727],[118.4327,1.2547],[118.4212,1.253],[118.4114,1.2596],[118.4109,1.2685],[118.4032,1.2809],[118.3917,1.2809],[118.3802,1.2744],[118.3704,1.253],[118.3622,1.217],[118.3572,1.1923],[118.3507,1.1858],[118.3327,1.1897],[118.322,1.1981],[118.3081,1.2056],[118.2859,1.2047],[118.2689,1.2182],[118.2284,1.2542],[118.2117,1.2606],[118.1997,1.259],[118.1957,1.2473],[118.1973,1.226],[118.2069,1.2127],[118.2069,1.2016],[118.1891,1.1894],[118.176,1.1817],[118.1588,1.1685],[118.1251,1.1653],[118.1134,1.1675],[118.0489,1.1822],[118.0333,1.1882],[118.0136,1.2276],[117.9646,1.2749],[117.9594,1.2801],[117.9463,1.2883],[117.925,1.2916],[117.882,1.3207],[117.8546,1.345],[117.8569,1.3588],[117.8594,1.3638],[117.8692,1.3687],[117.8826,1.3771],[117.8944,1.3833],[117.8968,1.3911],[117.9037,1.4048],[117.9086,1.4261],[117.9136,1.4654],[117.9135,1.4935],[117.9053,1.5098],[117.8556,1.5533],[117.8413,1.5688],[117.8365,1.5874],[117.8364,1.6066],[117.8299,1.6247],[117.8153,1.6266],[117.805,1.6145],[117.7955,1.5991],[117.7954,1.5787],[117.7878,1.5742],[117.7744,1.5785],[117.7673,1.5881],[117.7493,1.6002],[117.7138,1.6081],[117.7183,1.6525],[117.7183,1.6804],[117.7064,1.6856],[117.6972,1.6797],[117.6937,1.6658],[117.683,1.6493],[117.6712,1.6207],[117.647,1.5984],[117.6375,1.598],[117.624,1.6025],[117.6125,1.6139],[117.5944,1.6205],[117.5745,1.6255],[117.5528,1.6123],[117.5404,1.5951],[117.5403,1.5729],[117.5354,1.527],[117.5224,1.5155],[117.5034,1.5111],[117.4911,1.5139],[117.4845,1.5237],[117.4726,1.5338],[117.4599,1.5434],[117.4494,1.5614],[117.4407,1.5815],[117.432,1.5893],[117.4238,1.591],[117.4098,1.5966],[117.3956,1.6075],[117.3846,1.6046],[117.3715,1.575],[117.3615,1.5631],[117.3484,1.5598],[117.3355,1.5489],[117.3287,1.5286],[117.3281,1.5144],[117.338,1.4979],[117.3435,1.4761],[117.3369,1.4371],[117.3188,1.3876],[117.2959,1.3679],[117.2828,1.3613],[117.2581,1.3629],[117.2076,1.3268],[117.1931,1.3166],[117.163,1.3055],[117.1485,1.3242],[117.1286,1.3444],[117.1209,1.3644],[117.1114,1.3723],[117.1,1.351],[117.0819,1.3502],[117.0343,1.3542],[117.006,1.3469],[116.9902,1.3531],[116.9925,1.3723],[116.9981,1.3899],[116.9891,1.4092],[116.9631,1.4177],[116.9712,1.4421],[116.9908,1.4761],[116.9862,1.4965],[116.9891,1.5336],[116.9352,1.561],[116.9239,1.5797],[116.8597,1.5943],[116.797,1.58],[116.7724,1.6051],[116.7565,1.6218],[116.7234,1.617],[116.6681,1.6142],[116.6031,1.6114],[116.5863,1.5986],[116.5757,1.592],[116.556,1.5862],[116.5442,1.5887],[116.5341,1.5994],[116.5341,1.6121],[116.5421,1.6287],[116.5313,1.6632],[116.5042,1.6757],[116.4767,1.7244],[116.4639,1.7237],[116.4537,1.7222],[116.4437,1.7244],[116.4349,1.72],[116.4261,1.7076],[116.4155,1.7116],[116.3986,1.7208],[116.3957,1.7285],[116.3973,1.7359],[116.3968,1.7494],[116.3925,1.7554],[116.3823,1.7623],[116.3734,1.7608],[116.365,1.7566],[116.359,1.7584],[116.3547,1.762],[116.3557,1.772],[116.35,1.7802],[116.3494,1.8032],[116.3448,1.8102],[116.3391,1.8138],[116.3271,1.8178],[116.3157,1.8291],[116.3089,1.8316],[116.2996,1.8267],[116.2591,1.8288],[116.2407,1.8334],[116.2291,1.8438],[116.2164,1.845],[116.2082,1.8392],[116.1845,1.8407],[116.176,1.8097],[116.1678,1.7885],[116.1665,1.7769],[116.1606,1.7693],[116.1592,1.7634],[116.1582,1.7482],[116.1536,1.735],[116.1491,1.7197],[116.1387,1.7062],[116.1282,1.6625],[116.1178,1.6589],[116.1055,1.665],[116.0912,1.6616],[116.071,1.6532],[116.0655,1.6438],[116.0664,1.6347],[116.0655,1.6293],[116.0581,1.6287],[116.0526,1.6263],[116.0497,1.6217],[116.0435,1.6168],[116.0359,1.6089],[116.0344,1.5994],[116.0422,1.5894],[116.0421,1.5818],[116.0393,1.557],[116.0335,1.5532],[116.0264,1.5532],[116.024,1.5496],[116.0226,1.5408],[116.014,1.5366],[116.0098,1.5282],[116.0876,1.491],[116.1135,1.4867],[116.1411,1.4775],[116.1485,1.4677],[116.1387,1.4234],[116.1454,1.4068],[116.1583,1.3865],[116.1571,1.3558],[116.1473,1.3257],[116.1442,1.298],[116.1288,1.2863],[116.1278,1.2778],[116.1347,1.2592],[116.1467,1.2357],[116.1484,1.2267],[116.1476,1.2173],[116.1293,1.1889],[116.1313,1.1795],[116.1429,1.1627],[116.1449,1.1567],[116.1463,1.1339],[116.1428,1.1254],[116.132,1.1111],[116.123,1.1115],[116.107,1.1094],[116.0971,1.1062],[116.0831,1.1036],[116.0714,1.0985],[116.066,1.0931],[116.0667,1.0865],[116.0691,1.082],[116.0711,1.0704],[116.0704,1.0622],[116.0629,1.0471],[116.0698,1.0331],[116.0661,1.0146],[116.0501,1.0011],[116.0454,0.9947],[116.0481,0.9853],[116.049,0.9641],[116.0426,0.9469],[116.044,0.9446],[116.0661,0.8991],[116.0588,0.8923],[116.0391,0.8868],[116.0366,0.872],[116.0274,0.8517],[116.0133,0.8351],[116.0096,0.834],[116.0064,0.8286],[116.0068,0.8228],[116.0092,0.8188],[116.0204,0.8106],[116.0314,0.8069],[116.043,0.8068],[116.0566,0.8049],[116.0657,0.8006],[116.0872,0.7834],[116.0978,0.7733],[116.1055,0.7624],[116.1158,0.7592],[116.1348,0.7577],[116.1387,0.7562],[116.1416,0.752],[116.1435,0.7423],[116.141,0.7332],[116.1412,0.7274],[116.1468,0.7212],[116.1644,0.7169],[116.1853,0.7154],[116.1974,0.7127],[116.2196,0.7092],[116.225,0.7089],[116.2329,0.7033],[116.2361,0.6798],[116.2416,0.6663],[116.2575,0.6444],[116.2612,0.637],[116.2658,0.6324],[116.2821,0.6195],[116.2911,0.607],[116.2955,0.5988],[116.2998,0.587],[116.2985,0.5779],[116.2953,0.5741],[116.2845,0.568],[116.2738,0.5575],[116.271,0.5252],[116.2754,0.5094],[116.2834,0.4971],[116.2856,0.4906],[116.2843,0.4744],[116.2854,0.452],[116.2845,0.4488],[116.3185,0.4339],[116.3307,0.4269],[116.3414,0.4176],[116.349,0.4094],[116.3574,0.3989],[116.3711,0.384],[116.378,0.3806],[116.3887,0.3723],[116.4029,0.3684],[116.4299,0.3646],[116.4532,0.3542],[116.4586,0.3412],[116.466,0.3324],[116.4715,0.3233],[116.4772,0.316],[116.4828,0.3028],[116.4887,0.2873],[116.493,0.2688],[116.4936,0.2241],[116.4932,0.2027],[116.4909,0.1692],[116.4894,0.1577],[116.4905,0.1424],[116.4905,0.1214],[116.4874,0.1049],[116.4821,0.0829],[116.48,0.0673],[116.4766,0.0565],[116.4747,0.0423],[116.4749,0.0272],[116.4916,0.0239],[116.5054,0.023],[116.5134,0.0243],[116.5262,0.0233],[116.5404,0.0244],[116.5468,0.0235],[116.563,0.0238],[116.5915,0.0217],[116.5979,0.0204],[116.6162,0.0197],[116.6232,0.0207],[116.6347,0.0195],[116.6389,0.018],[116.6457,0.0186],[116.6695,0.0175],[116.6846,0.0178],[116.7116,0.0161],[116.7192,0.0164],[116.7293,0.0207],[116.7384,0.0296],[116.7417,0.0442],[116.7414,0.0541],[116.7395,0.0621],[116.7395,0.0773],[116.7383,0.0882],[116.7392,0.0946],[116.7499,0.104],[116.7527,0.1089],[116.7571,0.1129],[116.7644,0.1223],[116.7789,0.1389],[116.7857,0.1478],[116.7932,0.1553],[116.7974,0.1616],[116.8183,0.1841],[116.8242,0.1925],[116.8325,0.2023],[116.84,0.2134],[116.8448,0.2169],[116.8524,0.2279],[116.8596,0.2369],[116.8622,0.2432],[116.8677,0.2501],[116.8767,0.2656],[116.8812,0.2688],[116.8879,0.2784],[116.8959,0.2947],[116.906,0.3093],[116.9141,0.3194],[116.9172,0.3254],[116.9221,0.331],[116.9357,0.3563],[116.9403,0.3695],[116.9441,0.3752],[116.9443,0.3855],[116.9467,0.4055],[116.9432,0.4425],[116.9393,0.4585],[116.9358,0.4649],[116.9299,0.4837],[116.9312,0.492],[116.9397,0.5032],[116.9471,0.5211],[116.9401,0.5405],[116.9346,0.5603],[116.9507,0.5966],[116.9779,0.6146],[116.9922,0.6137],[117.0078,0.5805],[117.0408,0.5012],[117.0825,0.448],[117.116,0.413],[117.1511,0.3641],[117.1703,0.3434],[117.1804,0.3232],[117.1837,0.2841],[117.1708,0.232],[117.1618,0.1968],[117.1548,0.188],[117.151,0.1671],[117.1478,0.1436],[117.1528,0.122],[117.1699,0.1054],[117.1952,0.0953],[117.2237,0.0778],[117.262,0.0548],[117.2864,0.0322],[117.3241,0.0479],[117.3345,0.0465],[117.3387,0.034],[117.3568,0.0265],[117.3612,0.0287],[117.3667,0.0276],[117.3698,0.0222],[117.3702,0.022],[117.3892,0.0225],[117.3897,0.0539],[117.3886,0.0617],[117.4016,0.0922],[117.4235,0.1013],[117.4309,0.1109],[117.4332,0.1211],[117.4403,0.1362],[117.4461,0.1574],[117.4498,0.1676],[117.4677,0.1754],[117.4691,0.1878],[117.4682,0.1993],[117.4797,0.1998],[117.4888,0.2018],[117.4927,0.1981],[117.5051,0.2069],[117.5047,0.2103],[117.5061,0.2139],[117.5087,0.215],[117.5163,0.2122],[117.5215,0.2132],[117.5219,0.2174],[117.5285,0.2222],[117.5276,0.2283],[117.5252,0.2311],[117.5268,0.2381],[117.5168,0.2451],[117.517,0.2475],[117.5244,0.2538],[117.5305,0.2563],[117.5275,0.2617],[117.5222,0.2645],[117.519,0.2787],[117.5248,0.2801],[117.5294,0.287],[117.5338,0.2895],[117.5289,0.2998],[117.5299,0.3075],[117.5271,0.3132],[117.53,0.3226],[117.5333,0.3246],[117.5366,0.3178],[117.544,0.3197],[117.5504,0.3293],[117.5531,0.3367],[117.5517,0.3515],[117.5535,0.3555],[117.5533,0.3631],[117.5552,0.3653],[117.5634,0.3854],[117.5671,0.393],[117.5643,0.4077],[117.5584,0.4083],[117.5582,0.4148],[117.5651,0.4175],[117.5641,0.4204],[117.5574,0.4191],[117.5535,0.4224],[117.5627,0.4251],[117.5676,0.4236],[117.5763,0.4136],[117.5734,0.4119],[117.5741,0.4065],[117.5849,0.4055],[117.5991,0.4156],[117.6029,0.4175],[117.6131,0.4343],[117.6133,0.4387],[117.6098,0.4445],[117.6058,0.4474],[117.6013,0.4669],[117.6011,0.4755],[117.6052,0.4895],[117.6077,0.4908],[117.6213,0.5056],[117.6285,0.5062],[117.6348,0.5161],[117.632,0.5236],[117.6444,0.5361],[117.6466,0.5464],[117.6505,0.5522],[117.649,0.5557],[117.6518,0.5613],[117.6613,0.5646],[117.6588,0.5805],[117.6663,0.5898],[117.6688,0.6077],[117.6753,0.6189],[117.687,0.6238],[117.7088,0.6262],[117.7115,0.628],[117.7145,0.6373],[117.7144,0.6428],[117.7107,0.6577],[117.7105,0.6871],[117.713,0.7004],[117.7234,0.7171],[117.7331,0.7254],[117.7422,0.7426],[117.7511,0.7563],[117.7704,0.7708],[117.7784,0.7743],[117.7973,0.7866],[117.7996,0.7893],[117.8135,0.7976],[117.8235,0.8024],[117.8373,0.8074],[117.8426,0.8079],[117.8528,0.8112],[117.8656,0.8121],[117.8692,0.8086],[117.8724,0.8104],[117.8716,0.8178],[117.8725,0.8236],[117.8803,0.8278],[117.8844,0.8283],[117.89,0.8317],[117.9011,0.8323],[117.9138,0.836],[117.9162,0.8355],[117.9215,0.824],[117.9208,0.8167],[117.9267,0.805],[117.9352,0.8027],[117.9422,0.798],[117.9591,0.7934],[117.9627,0.7825],[117.9676,0.7768],[117.9758,0.7725],[117.9812,0.777],[117.99,0.7749],[118.0122,0.7762],[118.0176,0.7791],[118.0245,0.7782],[118.0282,0.78],[118.0295,0.7847],[118.0276,0.791],[118.0298,0.7996],[118.022,0.8058],[118.0194,0.8158],[118.027,0.8287],[118.027,0.832],[118.0196,0.8495],[118.0206,0.8545],[118.0188,0.8656],[118.0117,0.8836],[117.9995,0.8924],[117.9887,0.9124],[117.9867,0.9196],[117.9783,0.9292],[117.9783,0.944],[117.9727,0.9484],[117.9687,0.9592],[117.9715,0.9804],[117.9639,0.9856],[117.9588,1.0054],[117.9511,1.0096],[117.9447,1.0216],[117.9447,1.0312],[117.9407,1.0364],[117.9295,1.0372],[117.9279,1.0436],[117.9243,1.048],[117.9335,1.0494],[117.9319,1.0537],[117.9255,1.0528],[117.9219,1.056],[117.9191,1.0641],[117.9037,1.0726],[117.9016,1.0801],[117.8968,1.0826],[117.8885,1.0895],[117.892,1.0957],[117.8914,1.106],[117.9019,1.1124],[117.9155,1.1052],[117.9249,1.1046],[117.9439,1.0896],[117.9507,1.0796],[117.9591,1.0748],[117.9663,1.0692],[117.9756,1.0659],[117.9843,1.0592],[117.9843,1.0484],[117.9871,1.0356],[117.9915,1.0292],[117.9959,1.02],[117.9935,1.0084],[117.9907,1],[117.9975,0.994],[118.0075,0.9876],[118.0046,0.9742],[118.0099,0.9648],[118.0079,0.9616],[118.0131,0.9536],[118.0215,0.9476],[118.0266,0.9518],[118.0327,0.9492],[118.0451,0.9472],[118.0503,0.9424],[118.0559,0.9352],[118.0555,0.9236],[118.0511,0.9132],[118.0612,0.9083],[118.0638,0.903],[118.087,0.8972],[118.0977,0.8934],[118.1162,0.8882],[118.1213,0.8885],[118.1348,0.8844],[118.152,0.8811],[118.1565,0.8786],[118.1697,0.8771],[118.1993,0.8701],[118.2047,0.8675],[118.2394,0.8623],[118.2634,0.8579],[118.3094,0.851],[118.3214,0.8479],[118.3386,0.841],[118.3412,0.8383],[118.3426,0.832],[118.3402,0.8287],[118.3393,0.8196],[118.3412,0.8149],[118.3462,0.8107],[118.3544,0.8068],[118.3689,0.8031],[118.382,0.8044],[118.39,0.8086],[118.4014,0.8169],[118.4059,0.8211],[118.4151,0.8197],[118.4167,0.8224],[118.4128,0.8284],[118.4157,0.8323],[118.4236,0.8361],[118.4378,0.834],[118.4444,0.8415],[118.4539,0.8401],[118.4561,0.8337],[118.4652,0.8311],[118.4813,0.8311],[118.4851,0.8273],[118.4955,0.8221],[118.5059,0.8213],[118.5173,0.8157],[118.5248,0.8135],[118.5359,0.8136],[118.5564,0.8151],[118.5687,0.8175],[118.5757,0.814],[118.5854,0.8139],[118.5868,0.8104],[118.6033,0.8212],[118.6083,0.826],[118.6089,0.8294],[118.6171,0.8349],[118.6209,0.8395],[118.6215,0.8433],[118.6302,0.843],[118.6314,0.8491],[118.6388,0.8447],[118.6527,0.8462],[118.6597,0.851],[118.6636,0.8556],[118.6703,0.8596],[118.6762,0.8586],[118.6832,0.8514],[118.6971,0.8444],[118.6978,0.842],[118.7047,0.8365],[118.7088,0.8303],[118.7063,0.8195],[118.7102,0.8146],[118.7139,0.8202],[118.7254,0.8239],[118.7366,0.8201],[118.7421,0.814],[118.7472,0.8123],[118.7545,0.8076],[118.7631,0.8059],[118.7811,0.8081],[118.7861,0.8064],[118.787,0.8115],[118.7956,0.8113],[118.7938,0.8062],[118.7959,0.8024],[118.8077,0.8131],[118.8078,0.8177],[118.8129,0.818],[118.8165,0.8206],[118.8139,0.825],[118.8178,0.83],[118.8213,0.8275],[118.8249,0.832],[118.8233,0.8356],[118.8265,0.8428],[118.8342,0.8466],[118.8453,0.8594],[118.8507,0.8669],[118.8494,0.8742],[118.8571,0.8771],[118.8617,0.8749],[118.8638,0.8791],[118.8835,0.8723],[118.8925,0.8745],[118.8955,0.877],[118.899,0.885],[118.9012,0.8954],[118.907,0.9034],[118.9113,0.9056],[118.916,0.9054],[118.9165,0.9093],[118.92,0.9128],[118.9275,0.9122],[118.9338,0.9162],[118.9459,0.9302],[118.9517,0.9336],[118.9552,0.9384],[118.9587,0.9389],[118.964,0.9431],[118.9706,0.9571],[118.9734,0.9667],[118.9815,0.9744],[118.9814,0.9789],[118.9895,0.9895],[118.9858,0.9943],[118.9813,1.0049],[118.9813,1.0116],[118.9888,1.0213],[118.9847,1.03]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[118.846,1.1133],[118.8446,1.1199],[118.8378,1.1205],[118.8363,1.1159],[118.846,1.1133]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[118.5337,1.3932],[118.5324,1.3877],[118.5393,1.3895],[118.5337,1.3932]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[118.4502,1.3947],[118.4463,1.3954],[118.4386,1.3932],[118.4412,1.3827],[118.4446,1.3802],[118.4521,1.386],[118.4502,1.3947]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[118.4766,1.4536],[118.4721,1.4534],[118.4668,1.4505],[118.4693,1.444],[118.4784,1.4384],[118.4806,1.4304],[118.4747,1.4309],[118.4663,1.425],[118.4696,1.4099],[118.4735,1.4016],[118.4789,1.3964],[118.4819,1.3908],[118.4881,1.3869],[118.496,1.3852],[118.4997,1.3811],[118.5047,1.3804],[118.5142,1.3849],[118.5243,1.3851],[118.5295,1.3875],[118.5285,1.3921],[118.5231,1.3943],[118.5202,1.3925],[118.5162,1.3964],[118.5159,1.4048],[118.5108,1.4068],[118.5106,1.4108],[118.4999,1.4115],[118.4939,1.4201],[118.4974,1.4265],[118.4924,1.4391],[118.4945,1.4436],[118.4865,1.4448],[118.481,1.4433],[118.4837,1.4505],[118.4793,1.4544],[118.4766,1.4536]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[118.4685,1.4662],[118.458,1.462],[118.4623,1.4505],[118.4659,1.4508],[118.4717,1.456],[118.4693,1.4596],[118.4685,1.4662]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[118.9448,1.7709],[118.9429,1.7735],[118.9315,1.7812],[118.9335,1.774],[118.9448,1.7709]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[117.8761,1.9724],[117.8731,1.9719],[117.8643,1.9655],[117.8565,1.9583],[117.849,1.9574],[117.8448,1.9545],[117.8432,1.9494],[117.8384,1.9505],[117.8367,1.954],[117.8292,1.9534],[117.8276,1.9561],[117.8196,1.9601],[117.8176,1.9555],[117.822,1.9506],[117.8273,1.9497],[117.8276,1.9396],[117.8265,1.9358],[117.831,1.9241],[117.8348,1.9198],[117.836,1.9117],[117.8425,1.9085],[117.8467,1.9],[117.8599,1.8928],[117.8697,1.9043],[117.8713,1.9169],[117.8706,1.9286],[117.871,1.9476],[117.8768,1.9718],[117.8761,1.9724]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[118.8174,1.9577],[118.8259,1.9628],[118.8304,1.9715],[118.8249,1.9713],[118.8188,1.9656],[118.8174,1.9577]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[117.8491,1.9857],[117.8458,1.989],[117.8447,1.9951],[117.8407,2.003],[117.8365,2.0083],[117.8306,2.0099],[117.8258,2.0075],[117.8242,2.0008],[117.8206,1.9965],[117.8216,1.9875],[117.8197,1.9858],[117.8119,1.9877],[117.8074,1.9843],[117.8137,1.9815],[117.8162,1.97],[117.8209,1.9657],[117.8244,1.9577],[117.8302,1.9539],[117.8369,1.9546],[117.8433,1.9505],[117.8443,1.9554],[117.8479,1.9586],[117.8573,1.9606],[117.8625,1.9668],[117.8584,1.9742],[117.8507,1.9825],[117.8491,1.9857]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[117.8829,2.0532],[117.8784,2.0563],[117.874,2.053],[117.8703,2.0469],[117.8632,2.0426],[117.8641,2.0369],[117.8588,2.0343],[117.8524,2.0379],[117.8444,2.0381],[117.8441,2.0272],[117.8459,2.0246],[117.8593,2.0241],[117.8698,2.0314],[117.8758,2.0331],[117.8839,2.0399],[117.8829,2.0532]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[117.8564,2.0778],[117.8479,2.0812],[117.8419,2.0854],[117.833,2.0953],[117.8293,2.0958],[117.8133,2.0899],[117.8102,2.0862],[117.8127,2.0814],[117.8192,2.0811],[117.8234,2.0787],[117.8241,2.0721],[117.8213,2.0664],[117.816,2.0599],[117.8054,2.0557],[117.8063,2.0467],[117.803,2.041],[117.8034,2.0362],[117.8017,2.0263],[117.8082,2.0268],[117.8119,2.0293],[117.826,2.0325],[117.8326,2.0354],[117.8427,2.0419],[117.8457,2.0397],[117.8555,2.0379],[117.8604,2.035],[117.8637,2.0374],[117.8625,2.0442],[117.8694,2.0469],[117.8783,2.0569],[117.8825,2.0564],[117.8853,2.0459],[117.8842,2.0412],[117.892,2.038],[117.9018,2.0414],[117.9062,2.04],[117.9107,2.0452],[117.9105,2.0524],[117.9057,2.0561],[117.8989,2.0559],[117.8894,2.0629],[117.8771,2.0699],[117.8564,2.0778]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[117.7776,2.0836],[117.778,2.092],[117.775,2.0969],[117.7713,2.099],[117.7655,2.099],[117.7552,2.0952],[117.7424,2.0867],[117.7356,2.0837],[117.7292,2.0841],[117.7242,2.0796],[117.7142,2.0795],[117.7124,2.0759],[117.7202,2.0682],[117.722,2.0621],[117.7179,2.0552],[117.7076,2.0524],[117.7055,2.0503],[117.7144,2.0326],[117.7165,2.0325],[117.7211,2.0392],[117.7241,2.0466],[117.7328,2.0521],[117.7415,2.0521],[117.7469,2.049],[117.7516,2.0429],[117.7545,2.0331],[117.7607,2.0258],[117.7696,2.022],[117.7847,2.022],[117.798,2.0281],[117.8012,2.0378],[117.7982,2.04],[117.7891,2.0345],[117.7858,2.0383],[117.7859,2.047],[117.7799,2.0509],[117.7761,2.0473],[117.7721,2.0479],[117.7705,2.052],[117.7639,2.049],[117.7609,2.0533],[117.7573,2.053],[117.7522,2.0561],[117.7511,2.0629],[117.7545,2.0665],[117.7562,2.0722],[117.7611,2.0732],[117.7665,2.0667],[117.769,2.066],[117.7788,2.073],[117.7794,2.0794],[117.7776,2.0836]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[117.8275,2.0962],[117.8307,2.0968],[117.8287,2.1037],[117.8258,2.107],[117.8123,2.1103],[117.7996,2.1108],[117.7956,2.1097],[117.7905,2.0994],[117.787,2.0971],[117.7762,2.0967],[117.7785,2.092],[117.7782,2.084],[117.78,2.0806],[117.7798,2.0727],[117.775,2.0727],[117.7738,2.0692],[117.7688,2.0651],[117.7635,2.0706],[117.7566,2.072],[117.7545,2.0654],[117.752,2.0635],[117.7521,2.0581],[117.7568,2.0544],[117.761,2.0543],[117.7639,2.05],[117.7708,2.0554],[117.7741,2.048],[117.7804,2.0525],[117.7864,2.0485],[117.7871,2.0377],[117.789,2.0359],[117.7973,2.0411],[117.8015,2.0419],[117.8053,2.0473],[117.8047,2.0538],[117.8063,2.0577],[117.815,2.0601],[117.8199,2.0654],[117.8237,2.0759],[117.8189,2.0803],[117.8135,2.0795],[117.8091,2.0846],[117.8098,2.0884],[117.8275,2.0962]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[117.7832,2.099],[117.7888,2.1023],[117.7892,2.1093],[117.784,2.1128],[117.7777,2.1195],[117.767,2.1183],[117.7715,2.1049],[117.7766,2.101],[117.7832,2.099]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[118.3315,2.1292],[118.3316,2.138],[118.3243,2.1382],[118.3233,2.1347],[118.3261,2.1309],[118.3315,2.1292]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[117.8975,2.0795],[117.9019,2.08],[117.9106,2.084],[117.9144,2.0888],[117.9045,2.0953],[117.898,2.1035],[117.8976,2.1099],[117.9,2.1232],[117.8924,2.1311],[117.8802,2.1394],[117.8645,2.1454],[117.8599,2.1417],[117.8565,2.1344],[117.8505,2.1286],[117.8388,2.1225],[117.8333,2.1167],[117.8321,2.1124],[117.8419,2.1018],[117.8514,2.0941],[117.8642,2.0861],[117.8722,2.0828],[117.8879,2.0797],[117.8975,2.0795]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[117.8826,2.1586],[117.8753,2.1578],[117.8746,2.1544],[117.8811,2.1546],[117.8826,2.1586]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[118.5229,2.1605],[118.5185,2.16],[118.5129,2.1568],[118.5107,2.1535],[118.5043,2.1345],[118.5165,2.1384],[118.5263,2.1381],[118.5396,2.1346],[118.5576,2.1175],[118.562,2.1205],[118.5587,2.1264],[118.546,2.1412],[118.538,2.1534],[118.5371,2.159],[118.5318,2.1605],[118.5229,2.1605]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[117.8038,2.1651],[117.8018,2.1766],[117.7965,2.1804],[117.7845,2.1821],[117.7796,2.1809],[117.7758,2.1714],[117.7679,2.1647],[117.7609,2.165],[117.7515,2.1691],[117.7394,2.1692],[117.7312,2.1681],[117.721,2.1636],[117.7135,2.1619],[117.7193,2.154],[117.7237,2.1505],[117.7279,2.1396],[117.7295,2.1307],[117.729,2.1225],[117.7261,2.1084],[117.7263,2.103],[117.7301,2.0893],[117.7339,2.086],[117.7416,2.093],[117.7496,2.0984],[117.7645,2.1036],[117.7711,2.1038],[117.7689,2.1079],[117.7662,2.1177],[117.7733,2.1223],[117.7796,2.121],[117.7879,2.1132],[117.7909,2.1133],[117.8024,2.1207],[117.8016,2.1269],[117.803,2.1386],[117.8042,2.1572],[117.8038,2.1651]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[117.7745,2.1723],[117.7768,2.1805],[117.7526,2.1844],[117.7411,2.1839],[117.7304,2.1818],[117.7204,2.1775],[117.7084,2.171],[117.7075,2.1691],[117.7147,2.1646],[117.7211,2.1648],[117.7296,2.1695],[117.7369,2.1715],[117.7537,2.17],[117.7633,2.1657],[117.7681,2.166],[117.7745,2.1723]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[117.8849,2.1894],[117.8703,2.1883],[117.8709,2.1857],[117.8782,2.1825],[117.8853,2.177],[117.8921,2.1682],[117.8972,2.167],[117.8954,2.1743],[117.8923,2.1802],[117.8899,2.1884],[117.8849,2.1894]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[117.8391,2.1904],[117.8287,2.1906],[117.8297,2.1834],[117.8385,2.1794],[117.8454,2.169],[117.8538,2.1656],[117.8664,2.1573],[117.8718,2.1575],[117.8834,2.1606],[117.8844,2.1625],[117.8818,2.1754],[117.8715,2.1794],[117.8652,2.1833],[117.8541,2.1873],[117.8391,2.1904]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[117.8745,2.1528],[117.8672,2.1542],[117.842,2.1696],[117.8399,2.1749],[117.8351,2.18],[117.8293,2.1821],[117.8271,2.1906],[117.8146,2.1918],[117.8112,2.1909],[117.8021,2.1838],[117.8017,2.1819],[117.8076,2.1697],[117.8086,2.1611],[117.8081,2.1491],[117.8091,2.1453],[117.8094,2.1325],[117.8106,2.1229],[117.8128,2.1207],[117.8297,2.1173],[117.844,2.1288],[117.8528,2.1331],[117.859,2.1449],[117.8666,2.1478],[117.8803,2.1426],[117.8935,2.1341],[117.9005,2.1276],[117.9041,2.1217],[117.9048,2.1166],[117.9014,2.1073],[117.9082,2.0993],[117.9131,2.0985],[117.9235,2.1035],[117.9331,2.1065],[117.9484,2.1139],[117.9553,2.118],[117.9574,2.1222],[117.9561,2.1289],[117.9466,2.135],[117.9386,2.1371],[117.9192,2.1407],[117.905,2.1462],[117.8903,2.1542],[117.8745,2.1528]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[117.9192,2.1574],[117.9255,2.1657],[117.927,2.1723],[117.923,2.1824],[117.9142,2.1952],[117.9055,2.2057],[117.9017,2.2036],[117.8997,2.1959],[117.8927,2.189],[117.8952,2.1826],[117.9054,2.1649],[117.9097,2.1604],[117.9162,2.1562],[117.9192,2.1574]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[118.5708,2.3102],[118.5686,2.3099],[118.5617,2.3007],[118.5616,2.2886],[118.5588,2.2761],[118.5622,2.271],[118.5613,2.2478],[118.566,2.2353],[118.5708,2.2293],[118.5771,2.2235],[118.578,2.22],[118.5863,2.2079],[118.5904,2.2047],[118.597,2.1936],[118.6052,2.1875],[118.6087,2.192],[118.6141,2.184],[118.6189,2.1798],[118.6252,2.1801],[118.6319,2.1754],[118.642,2.1715],[118.6366,2.1792],[118.6239,2.1859],[118.616,2.1932],[118.6106,2.1996],[118.6056,2.2076],[118.5999,2.2089],[118.5894,2.2162],[118.585,2.2229],[118.579,2.2356],[118.5765,2.2376],[118.5695,2.2525],[118.567,2.2596],[118.5673,2.2647],[118.5638,2.2733],[118.5654,2.2809],[118.5648,2.2886],[118.567,2.2924],[118.5667,2.2994],[118.5689,2.3032],[118.5724,2.3032],[118.5772,2.2997],[118.5857,2.2838],[118.5895,2.2806],[118.5917,2.2748],[118.6038,2.2662],[118.6129,2.2621],[118.6183,2.2576],[118.6215,2.2515],[118.6322,2.2483],[118.6367,2.2499],[118.6338,2.2547],[118.6224,2.2595],[118.6076,2.2691],[118.6031,2.2748],[118.5974,2.279],[118.5876,2.2914],[118.5829,2.2991],[118.5708,2.3102]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[118.2163,2.3515],[118.2179,2.3565],[118.2144,2.3623],[118.205,2.3725],[118.1995,2.3818],[118.1948,2.3793],[118.1941,2.3736],[118.1988,2.3682],[118.2028,2.3586],[118.2133,2.347],[118.2163,2.3515]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"LineString","coordinates":[[117.988,2.4341],[117.9793,2.4265],[117.9708,2.4246],[117.9646,2.4273],[117.9587,2.4269],[117.9558,2.4156],[117.9346,2.4036],[117.933,2.3978],[117.9356,2.3902],[117.9327,2.3841],[117.9197,2.3929],[117.9067,2.3979],[117.8928,2.3984],[117.8638,2.3929],[117.8399,2.3742],[117.8246,2.3537],[117.8244,2.3482],[117.8214,2.3451],[117.8215,2.3407],[117.8153,2.3329],[117.8116,2.3264],[117.8045,2.325],[117.7912,2.3252],[117.7854,2.3301],[117.7711,2.3301],[117.769,2.3336],[117.7645,2.3325],[117.759,2.3339],[117.7561,2.328],[117.7469,2.3268],[117.7443,2.334],[117.7391,2.3382],[117.7212,2.3463],[117.718,2.3547],[117.7151,2.3574],[117.7167,2.3619],[117.7152,2.3695],[117.7125,2.371],[117.7119,2.378],[117.7086,2.3916],[117.7013,2.4017],[117.6962,2.4051],[117.6879,2.4063],[117.6765,2.4258],[117.6697,2.4481],[117.6542,2.462],[117.6389,2.4799],[117.6276,2.5044],[117.6128,2.52],[117.6088,2.5227],[117.5948,2.5202],[117.588,2.5175],[117.5755,2.5041],[117.5696,2.5021],[117.5607,2.5093],[117.5573,2.5147],[117.547,2.5169],[117.5396,2.5214],[117.5129,2.5232],[117.5013,2.522],[117.4986,2.523],[117.4949,2.5324],[117.4794,2.5413],[117.4601,2.5473],[117.4444,2.563],[117.4335,2.5787],[117.4141,2.5981],[117.4008,2.6066],[117.3863,2.5981],[117.3629,2.599],[117.3368,2.6046],[117.3032,2.6046],[117.2789,2.5972],[117.2584,2.5822],[117.2435,2.5766],[117.2286,2.5785],[117.2006,2.5841],[117.1651,2.5878],[117.1465,2.5953],[117.1129,2.599],[117.0939,2.598],[117.07,2.5907],[117.0613,2.5813],[117.0526,2.5661],[117.0396,2.5415],[117.0338,2.5277],[117.0237,2.5212],[116.994,2.5176],[116.9418,2.5074],[116.9159,2.4901],[116.8939,2.4785],[116.8643,2.4716],[116.8458,2.4606],[116.8412,2.4507],[116.8325,2.4281],[116.8226,2.3986],[116.8081,2.3829],[116.796,2.3789],[116.7855,2.387],[116.7751,2.4391],[116.7444,2.5168],[116.7397,2.5272],[116.7328,2.5295],[116.7282,2.529],[116.7125,2.5174],[116.6737,2.4843],[116.6557,2.4687],[116.6331,2.4484],[116.6285,2.4287],[116.6181,2.4171],[116.6071,2.4177],[116.5908,2.427],[116.5763,2.4362],[116.57,2.4432],[116.5679,2.4513],[116.5646,2.4527],[116.5507,2.4551],[116.5448,2.4544],[116.5349,2.4479],[116.5246,2.4472],[116.517,2.451],[116.5002,2.4568],[116.4962,2.4558],[116.4911,2.4445],[116.494,2.4348],[116.4928,2.4307],[116.4955,2.4029],[116.4901,2.4013],[116.4882,2.3974],[116.4903,2.3896],[116.4964,2.3833],[116.5006,2.3819],[116.5029,2.3742],[116.4983,2.3572],[116.5058,2.3479],[116.4996,2.3424],[116.4974,2.3354],[116.4883,2.328],[116.4852,2.3223],[116.476,2.3166],[116.4747,2.3019],[116.4781,2.2936],[116.4759,2.2887],[116.4714,2.2846],[116.4656,2.2833],[116.4613,2.2795],[116.4573,2.2793],[116.4546,2.2831],[116.445,2.2866],[116.428,2.2891],[116.4201,2.3016],[116.417,2.3039],[116.4091,2.3016],[116.4009,2.2965],[116.3912,2.2975],[116.3513,2.2918],[116.3437,2.2888],[116.3345,2.2893],[116.3304,2.2847],[116.3192,2.2776],[116.311,2.2668],[116.3034,2.2602],[116.2998,2.249],[116.2952,2.2388],[116.2896,2.2352],[116.3004,2.2128],[116.3202,2.1947],[116.3407,2.1828],[116.3502,2.1662],[116.3328,2.1488],[116.3217,2.1338],[116.3107,2.122],[116.2925,2.1243],[116.2925,2.1054],[116.2767,2.1046],[116.2585,2.1084],[116.232,2.0983],[116.2216,2.0951],[116.2216,2.0796],[116.2178,2.0633],[116.2259,2.0551],[116.2309,2.0446],[116.2311,2.0281],[116.2298,2.0134],[116.2194,2.0024],[116.2067,1.9958],[116.201,1.992],[116.1954,1.9858],[116.1942,1.9728],[116.1964,1.9519],[116.1893,1.9366],[116.1854,1.9245],[116.1749,1.8973],[116.1772,1.8825],[116.1767,1.8662],[116.1857,1.8448],[116.1845,1.8407],[116.2082,1.8392],[116.2164,1.845],[116.2291,1.8438],[116.2407,1.8334],[116.2591,1.8288],[116.2996,1.8267],[116.3089,1.8316],[116.3157,1.8291],[116.3271,1.8178],[116.3391,1.8138],[116.3448,1.8102],[116.3494,1.8032],[116.35,1.7802],[116.3557,1.772],[116.3547,1.762],[116.359,1.7584],[116.365,1.7566],[116.3734,1.7608],[116.3823,1.7623],[116.3925,1.7554],[116.3968,1.7494],[116.3973,1.7359],[116.3957,1.7285],[116.3986,1.7208],[116.4155,1.7116],[116.4261,1.7076],[116.4349,1.72],[116.4437,1.7244],[116.4537,1.7222],[116.4639,1.7237],[116.4767,1.7244],[116.5042,1.6757],[116.5313,1.6632],[116.5421,1.6287],[116.5341,1.6121],[116.5341,1.5994],[116.5442,1.5887],[116.556,1.5862],[116.5757,1.592],[116.5863,1.5986],[116.6031,1.6114],[116.6681,1.6142],[116.7234,1.617],[116.7565,1.6218],[116.7724,1.6051],[116.797,1.58],[116.8597,1.5943],[116.9239,1.5797],[116.9352,1.561],[116.9891,1.5336],[116.9862,1.4965],[116.9908,1.4761],[116.9712,1.4421],[116.9631,1.4177],[116.9891,1.4092],[116.9981,1.3899],[116.9925,1.3723],[116.9902,1.3531],[117.006,1.3469],[117.0343,1.3542],[117.0819,1.3502],[117.1,1.351],[117.1114,1.3723],[117.1209,1.3644],[117.1286,1.3444],[117.1485,1.3242],[117.163,1.3055],[117.1931,1.3166],[117.2076,1.3268],[117.2581,1.3629],[117.2828,1.3613],[117.2959,1.3679],[117.3188,1.3876],[117.3369,1.4371],[117.3435,1.4761],[117.338,1.4979],[117.3281,1.5144],[117.3287,1.5286],[117.3355,1.5489],[117.3484,1.5598],[117.3615,1.5631],[117.3715,1.575],[117.3846,1.6046],[117.3956,1.6075],[117.4098,1.5966],[117.4238,1.591],[117.432,1.5893],[117.4407,1.5815],[117.4494,1.5614],[117.4599,1.5434],[117.4726,1.5338],[117.4845,1.5237],[117.4911,1.5139],[117.5034,1.5111],[117.5224,1.5155],[117.5354,1.527],[117.5403,1.5729],[117.5404,1.5951],[117.5528,1.6123],[117.5745,1.6255],[117.5944,1.6205],[117.6125,1.6139],[117.624,1.6025],[117.6375,1.598],[117.647,1.5984],[117.6712,1.6207],[117.683,1.6493],[117.6937,1.6658],[117.6972,1.6797],[117.7064,1.6856],[117.7183,1.6804],[117.7183,1.6525],[117.7138,1.6081],[117.7493,1.6002],[117.7673,1.5881],[117.7744,1.5785],[117.7878,1.5742],[117.7954,1.5787],[117.7955,1.5991],[117.805,1.6145],[117.8153,1.6266],[117.8299,1.6247],[117.8364,1.6066],[117.8365,1.5874],[117.8413,1.5688],[117.8556,1.5533],[117.9053,1.5098],[117.9135,1.4935],[117.9136,1.4654],[117.9086,1.4261],[117.9037,1.4048],[117.8968,1.3911],[117.8944,1.3833],[117.8826,1.3771],[117.8692,1.3687],[117.8594,1.3638],[117.8569,1.3588],[117.8546,1.345],[117.882,1.3207],[117.925,1.2916],[117.9463,1.2883],[117.9594,1.2801],[117.9646,1.2749],[118.0136,1.2276],[118.0333,1.1882],[118.0489,1.1822],[118.1134,1.1675],[118.1251,1.1653],[118.1588,1.1685],[118.176,1.1817],[118.1891,1.1894],[118.2069,1.2016],[118.2069,1.2127],[118.1973,1.226],[118.1957,1.2473],[118.1997,1.259],[118.2117,1.2606],[118.2284,1.2542],[118.2689,1.2182],[118.2859,1.2047],[118.3081,1.2056],[118.322,1.1981],[118.3327,1.1897],[118.3507,1.1858],[118.3572,1.1923],[118.3622,1.217],[118.3704,1.253],[118.3802,1.2744],[118.3917,1.2809],[118.4032,1.2809],[118.4109,1.2685],[118.4114,1.2596],[118.4212,1.253],[118.4327,1.2547],[118.4442,1.2727],[118.4606,1.2777],[118.4856,1.2633],[118.4986,1.2438],[118.5057,1.2342],[118.516,1.2239],[118.5208,1.2203],[118.5331,1.2138],[118.5459,1.2186],[118.5541,1.2268],[118.5557,1.2416],[118.5607,1.2498],[118.5787,1.2448],[118.5853,1.2317],[118.5902,1.212],[118.5803,1.1366],[118.5846,1.1132],[118.6067,1.0962],[118.6329,1.0907],[118.6527,1.0956],[118.6684,1.1017],[118.6821,1.1021],[118.7099,1.1021],[118.7427,1.107],[118.7591,1.107],[118.769,1.1038],[118.7805,1.0824],[118.787,1.0431],[118.7917,1.0209],[118.797,1.0085],[118.8056,1.0039],[118.828,1.0103],[118.8544,1.0105],[118.8701,1.0156],[118.882,1.0234],[118.892,1.0283],[118.9068,1.0251],[118.9207,1.0165],[118.9412,1.0087],[118.9658,1.0104],[118.9774,1.0169],[118.9847,1.03],[118.9807,1.038],[118.9736,1.0359],[118.9657,1.0376],[118.9585,1.0442],[118.9539,1.051],[118.9489,1.0536],[118.9461,1.0585],[118.9397,1.0595],[118.9327,1.0588],[118.9179,1.0649],[118.9084,1.0646],[118.8901,1.0668],[118.884,1.066],[118.8734,1.0678],[118.8682,1.0636],[118.8599,1.0529],[118.8541,1.0483],[118.8455,1.0469],[118.8399,1.0491],[118.8354,1.0536],[118.8366,1.058],[118.8328,1.0617],[118.8326,1.0656],[118.8367,1.0722],[118.8324,1.0769],[118.8279,1.0881],[118.8279,1.0939],[118.8305,1.0984],[118.8227,1.1051],[118.813,1.1099],[118.8121,1.1125],[118.8063,1.1158],[118.8044,1.1116],[118.7965,1.1157],[118.7977,1.1224],[118.7935,1.1226],[118.7817,1.1294],[118.7771,1.1336],[118.78,1.1406],[118.7871,1.1321],[118.795,1.1313],[118.7906,1.1372],[118.7869,1.1389],[118.7777,1.1531],[118.7682,1.1503],[118.7629,1.1525],[118.7572,1.1512],[118.7533,1.1523],[118.7495,1.1493],[118.7368,1.1508],[118.7357,1.154],[118.7311,1.1575],[118.7404,1.159],[118.7476,1.1577],[118.7571,1.1615],[118.7645,1.1617],[118.7691,1.1663],[118.7695,1.1826],[118.7676,1.1951],[118.7652,1.1996],[118.7547,1.212],[118.7421,1.2208],[118.7238,1.2355],[118.7177,1.242],[118.7115,1.2519],[118.7034,1.2553],[118.6969,1.2624],[118.6884,1.2638],[118.6824,1.2678],[118.6767,1.2743],[118.672,1.2775],[118.6656,1.2776],[118.6584,1.2823],[118.6489,1.295],[118.6446,1.2996],[118.6394,1.3017],[118.624,1.313],[118.6171,1.3161],[118.6107,1.3233],[118.6061,1.3238],[118.5895,1.3422],[118.5876,1.3458],[118.5817,1.3489],[118.5776,1.3542],[118.5729,1.3551],[118.5653,1.3621],[118.5605,1.3635],[118.5484,1.3603],[118.5298,1.3629],[118.5231,1.3613],[118.5162,1.3567],[118.5159,1.3628],[118.5177,1.368],[118.517,1.3749],[118.5105,1.3761],[118.5,1.3738],[118.4965,1.371],[118.4912,1.3699],[118.488,1.364],[118.4842,1.3649],[118.4844,1.3706],[118.4885,1.3729],[118.489,1.3792],[118.4852,1.3822],[118.4743,1.3827],[118.4669,1.3763],[118.4638,1.3692],[118.4627,1.3626],[118.4561,1.3681],[118.4608,1.3711],[118.4607,1.3764],[118.468,1.3846],[118.4688,1.3953],[118.46,1.3994],[118.4572,1.3911],[118.4495,1.3791],[118.4406,1.3786],[118.4343,1.38],[118.4352,1.389],[118.433,1.3989],[118.4299,1.3995],[118.4181,1.3934],[118.4081,1.4015],[118.419,1.4024],[118.4192,1.4068],[118.4222,1.4098],[118.4291,1.413],[118.4303,1.4229],[118.4252,1.4285],[118.4224,1.4342],[118.4107,1.4292],[118.4053,1.4249],[118.3915,1.4242],[118.3849,1.4341],[118.4004,1.4369],[118.4096,1.4373],[118.4158,1.4399],[118.4206,1.4487],[118.4207,1.4528],[118.4173,1.4607],[118.4097,1.4592],[118.4139,1.4688],[118.4143,1.474],[118.411,1.482],[118.3977,1.4857],[118.3931,1.485],[118.3823,1.4807],[118.3761,1.483],[118.3735,1.4862],[118.3785,1.4903],[118.3879,1.4928],[118.3841,1.4968],[118.3788,1.4942],[118.3756,1.5013],[118.3675,1.5027],[118.3672,1.506],[118.3597,1.5047],[118.353,1.509],[118.3419,1.5132],[118.3235,1.5238],[118.3189,1.5274],[118.3116,1.5304],[118.3055,1.531],[118.302,1.5364],[118.2858,1.5453],[118.2793,1.5436],[118.2749,1.545],[118.2739,1.5498],[118.2616,1.5537],[118.2581,1.5564],[118.2467,1.5583],[118.2463,1.5616],[118.2365,1.5686],[118.2288,1.5727],[118.2103,1.589],[118.2056,1.591],[118.1799,1.6061],[118.1754,1.6105],[118.1715,1.6194],[118.1633,1.6261],[118.147,1.632],[118.137,1.6327],[118.1319,1.6356],[118.1234,1.6427],[118.1073,1.66],[118.0916,1.6836],[118.0872,1.6886],[118.0813,1.6911],[118.0798,1.6975],[118.0727,1.709],[118.062,1.7171],[118.058,1.7214],[118.0529,1.7296],[118.0521,1.7355],[118.0573,1.7378],[118.0622,1.7437],[118.0647,1.7495],[118.0659,1.7587],[118.062,1.7692],[118.0481,1.7834],[118.0381,1.7872],[118.0273,1.7819],[118.0131,1.7825],[118.007,1.7836],[117.9884,1.7896],[117.9717,1.7924],[117.9666,1.7912],[117.96,1.7943],[117.9466,1.7979],[117.9292,1.8048],[117.9211,1.8126],[117.9112,1.8203],[117.9061,1.8275],[117.9019,1.836],[117.8979,1.8375],[117.8933,1.8455],[117.8904,1.854],[117.8876,1.8562],[117.8908,1.8697],[117.8898,1.8728],[117.8821,1.8756],[117.8709,1.881],[117.8642,1.8807],[117.8593,1.8822],[117.8515,1.8916],[117.8449,1.8937],[117.839,1.9055],[117.8331,1.91],[117.8321,1.9212],[117.8284,1.9238],[117.8246,1.9371],[117.8269,1.9402],[117.8261,1.9486],[117.8166,1.9474],[117.8157,1.9496],[117.8178,1.9596],[117.8203,1.9656],[117.8156,1.9695],[117.8157,1.9745],[117.8136,1.9803],[117.8076,1.9832],[117.808,1.9881],[117.8195,1.9865],[117.8208,1.9894],[117.819,1.9946],[117.8234,2.0023],[117.8242,2.0099],[117.8119,2.0118],[117.7982,2.0124],[117.7897,2.0137],[117.7841,2.0116],[117.7793,2.0129],[117.7669,2.013],[117.7537,2.0233],[117.7486,2.0255],[117.744,2.0301],[117.7421,2.0355],[117.7416,2.0432],[117.7369,2.0435],[117.7311,2.0358],[117.7214,2.0274],[117.7114,2.0261],[117.7053,2.0303],[117.7013,2.036],[117.7006,2.0424],[117.6956,2.0504],[117.6988,2.0578],[117.7055,2.0597],[117.7176,2.0592],[117.7177,2.0667],[117.7111,2.0736],[117.71,2.0789],[117.713,2.0822],[117.7246,2.0821],[117.7263,2.0839],[117.7194,2.1045],[117.7229,2.12],[117.7234,2.137],[117.7216,2.1444],[117.7187,2.1497],[117.7038,2.1655],[117.7009,2.1669],[117.6815,2.1718],[117.6829,2.1781],[117.6874,2.1803],[117.6968,2.1807],[117.7104,2.1836],[117.7201,2.188],[117.7413,2.1918],[117.7576,2.1915],[117.7717,2.1894],[117.7904,2.189],[117.8051,2.1989],[117.8186,2.2014],[117.833,2.1992],[117.8444,2.1988],[117.8608,2.1993],[117.8689,2.1989],[117.884,2.1966],[117.8922,2.1945],[117.8956,2.1958],[117.8984,2.2067],[117.9026,2.2094],[117.9083,2.2088],[117.9201,2.1975],[117.9339,2.18],[117.9438,2.1802],[117.9517,2.1825],[117.9629,2.1876],[117.9728,2.1891],[117.9795,2.1889],[117.9909,2.1948],[118.0009,2.1958],[118.0189,2.196],[118.0359,2.2106],[118.0417,2.218],[118.0547,2.2282],[118.0634,2.2379],[118.0648,2.2431],[118.0734,2.2455],[118.0782,2.2495],[118.0752,2.255],[118.077,2.2598],[118.0858,2.2654],[118.0933,2.2741],[118.0977,2.2851],[118.0962,2.2889],[118.0859,2.2922],[118.0889,2.297],[118.0927,2.2978],[118.094,2.3077],[118.0852,2.3242],[118.0779,2.3253],[118.0744,2.3366],[118.0718,2.3372],[118.0649,2.3464],[118.0662,2.3544],[118.0529,2.366],[118.0458,2.3763],[118.0389,2.3732],[118.0383,2.3623],[118.0349,2.3579],[118.0304,2.3561],[118.0221,2.3586],[118.023,2.3652],[118.0177,2.3718],[118.014,2.3741],[118.0155,2.3803],[118.0198,2.3895],[118.0057,2.4064],[117.9962,2.4142],[117.996,2.4186],[118.0003,2.4213],[117.9993,2.4318],[117.988,2.4341]]}},{"type":"Feature","properties":{"mhid":"1332:370","alt_name":"KABUPATEN PENAJAM PASER UTARA","latitude":-1.25,"longitude":116.83333,"sample_value":375},"geometry":{"type":"LineString","coordinates":[[116.5501,-1.603],[116.5522,-1.6056],[116.5586,-1.6022],[116.5607,-1.5967],[116.5599,-1.5901],[116.5572,-1.5876],[116.5542,-1.5703],[116.5547,-1.5664],[116.5533,-1.553],[116.5483,-1.5342],[116.542,-1.5207],[116.5388,-1.5171],[116.5313,-1.5143],[116.53,-1.5079],[116.5333,-1.4988],[116.5353,-1.4751],[116.5396,-1.4641],[116.5487,-1.4538],[116.5549,-1.4484],[116.5691,-1.4379],[116.5926,-1.4233],[116.6122,-1.4139],[116.6277,-1.4081],[116.6314,-1.4088],[116.6506,-1.4044],[116.66,-1.3993],[116.6796,-1.3923],[116.6905,-1.3899],[116.701,-1.3839],[116.7109,-1.3798],[116.7378,-1.3711],[116.7501,-1.3693],[116.7615,-1.3602],[116.7661,-1.353],[116.7615,-1.3345],[116.7578,-1.3303],[116.7632,-1.3237],[116.7633,-1.3138],[116.7811,-1.2952],[116.7856,-1.2929],[116.7845,-1.2835],[116.7962,-1.2398],[116.7919,-1.2358],[116.7664,-1.2121],[116.7663,-1.2106],[116.7726,-1.1943],[116.7753,-1.1876],[116.7687,-1.1698],[116.7682,-1.1686],[116.7569,-1.1385],[116.7453,-1.1322],[116.7326,-1.1255],[116.7237,-1.1207],[116.7232,-1.1199],[116.7162,-1.1098],[116.7283,-1.0917],[116.7303,-1.0882],[116.7303,-1.0834],[116.7278,-1.0779],[116.7268,-1.0756],[116.7295,-1.0669],[116.7395,-1.0738],[116.7418,-1.0717],[116.7514,-1.0721],[116.7516,-1.0721],[116.7587,-1.0758],[116.7602,-1.0742],[116.761,-1.0724],[116.7654,-1.0702],[116.7712,-1.0596],[116.7732,-1.0484],[116.7744,-1.0432],[116.7757,-1.0411],[116.7825,-1.0401],[116.7891,-1.0429],[116.7891,-1.0429],[116.7954,-1.0473],[116.7969,-1.0484],[116.8043,-1.0532],[116.8062,-1.0581],[116.8127,-1.0547],[116.8163,-1.0564],[116.8338,-1.0499],[116.8379,-1.0426],[116.8388,-1.0368],[116.841,-1.0315],[116.8398,-1.0291],[116.8428,-1.0223],[116.8532,-1.0141],[116.8632,-1.0117],[116.8699,-1.0096],[116.874,-1.0067],[116.8747,-0.9954],[116.8791,-0.9883],[116.8892,-0.9787],[116.8999,-0.9722],[116.921,-0.9627],[116.9468,-0.9332],[116.955,-0.9257],[116.9479,-0.9159],[116.9377,-0.9047],[116.925,-0.8936],[116.9137,-0.8822],[116.9092,-0.8763],[116.8995,-0.8647],[116.8961,-0.8612],[116.8848,-0.8512],[116.8926,-0.8315],[116.8595,-0.8183],[116.8524,-0.8173],[116.809,-0.8115],[116.7685,-0.8115],[116.7415,-0.8082],[116.7341,-0.8054],[116.7215,-0.8007],[116.7145,-0.798],[116.7106,-0.7985],[116.6991,-0.7998],[116.6842,-0.8014],[116.6673,-0.8115],[116.647,-0.8419],[116.6303,-0.8821],[116.6032,-0.879],[116.5796,-0.8622],[116.5733,-0.8566],[116.5653,-0.8494],[116.5581,-0.846],[116.5401,-0.8385],[116.5331,-0.8377],[116.5244,-0.8387],[116.516,-0.8421],[116.5203,-0.8435],[116.5153,-0.8509],[116.5053,-0.8623],[116.4983,-0.8701],[116.4877,-0.8842],[116.4788,-0.9143],[116.4682,-0.9391],[116.4611,-0.9497],[116.4523,-0.955],[116.4399,-0.9656],[116.4386,-0.9708],[116.4417,-0.9702],[116.4417,-0.9845],[116.4477,-1.0034],[116.4545,-1.025],[116.4542,-1.0266],[116.4541,-1.0435],[116.4439,-1.0588],[116.4275,-1.0718],[116.4169,-1.0913],[116.4045,-1.1055],[116.3859,-1.1222],[116.3762,-1.132],[116.3709,-1.1444],[116.3762,-1.1745],[116.3778,-1.1969],[116.378,-1.1993],[116.3678,-1.2105],[116.3603,-1.2187],[116.3443,-1.2453],[116.3355,-1.2842],[116.3355,-1.3338],[116.3461,-1.3692],[116.355,-1.3904],[116.3561,-1.408],[116.3567,-1.4187],[116.3603,-1.4446],[116.3638,-1.4701],[116.3744,-1.5019],[116.3797,-1.5267],[116.3868,-1.5444],[116.3992,-1.5497],[116.4169,-1.5532],[116.4452,-1.5656],[116.4718,-1.5745],[116.4948,-1.5816],[116.5195,-1.5904],[116.5443,-1.5957],[116.5501,-1.603]]}},{"type":"Feature","properties":{"mhid":"1332:371","alt_name":"KABUPATEN MAHAKAM HULU","latitude":0.37822,"longitude":115.38048,"sample_value":40},"geometry":{"type":"LineString","coordinates":[[114.5666,1.4277],[114.563,1.4302],[114.563,1.4339],[114.5509,1.4362],[114.5445,1.4358],[114.5338,1.4405],[114.5262,1.4425],[114.5221,1.4487],[114.5188,1.4493],[114.5158,1.4562],[114.5103,1.4628],[114.4964,1.4639],[114.4926,1.4682],[114.4846,1.4738],[114.4814,1.4726],[114.4744,1.4743],[114.4706,1.4788],[114.4655,1.4809],[114.4613,1.4861],[114.4541,1.487],[114.4472,1.4929],[114.4258,1.5047],[114.4152,1.5114],[114.4059,1.5127],[114.3962,1.5127],[114.3805,1.4953],[114.3671,1.4924],[114.3647,1.489],[114.358,1.4888],[114.3541,1.4904],[114.3432,1.4861],[114.336,1.4859],[114.331,1.4796],[114.3227,1.476],[114.3073,1.4715],[114.3036,1.4666],[114.2999,1.4587],[114.2939,1.4577],[114.2852,1.4535],[114.2698,1.4503],[114.2638,1.4521],[114.2479,1.4509],[114.2368,1.4447],[114.2371,1.4386],[114.2222,1.4244],[114.223,1.4168],[114.2131,1.4128],[114.2054,1.4109],[114.2011,1.4128],[114.1982,1.4073],[114.1913,1.406],[114.1841,1.3978],[114.1709,1.3972],[114.154,1.3879],[114.1495,1.3837],[114.1484,1.3802],[114.1529,1.3701],[114.1501,1.354],[114.1501,1.3455],[114.1515,1.3346],[114.154,1.3238],[114.1541,1.3103],[114.1499,1.3017],[114.1423,1.2954],[114.1432,1.2927],[114.1493,1.2904],[114.155,1.2853],[114.1553,1.2771],[114.1615,1.2684],[114.1616,1.2639],[114.1578,1.2607],[114.1507,1.2612],[114.145,1.2576],[114.1384,1.2494],[114.1347,1.2346],[114.1277,1.225],[114.1296,1.2192],[114.138,1.2149],[114.1411,1.2088],[114.1418,1.2005],[114.1355,1.1864],[114.1226,1.1705],[114.1199,1.1587],[114.115,1.1525],[114.1064,1.1492],[114.0999,1.1482],[114.0953,1.1492],[114.0923,1.153],[114.088,1.1633],[114.0852,1.165],[114.0787,1.1591],[114.0714,1.148],[114.0671,1.1464],[114.0565,1.1399],[114.0513,1.1351],[114.0447,1.1324],[114.0363,1.1389],[114.0344,1.1455],[114.0311,1.1489],[114.027,1.1482],[114.0118,1.1396],[114.0061,1.1456],[114.0005,1.1473],[113.9852,1.1443],[113.9822,1.1344],[113.9776,1.1269],[113.9704,1.1254],[113.9635,1.1199],[113.9573,1.1091],[113.9567,1.0963],[113.9476,1.0739],[113.9427,1.066],[113.9376,1.0627],[113.9258,1.0623],[113.9131,1.0635],[113.9028,1.0602],[113.896,1.0528],[113.8915,1.045],[113.8914,1.0353],[113.8929,1.0268],[113.8976,1.0178],[113.9051,1.0159],[113.9134,1.0119],[113.9199,1.0045],[113.9216,0.9919],[113.921,0.9874],[113.9075,0.9538],[113.8959,0.9495],[113.8805,0.9261],[113.8805,0.9197],[113.8824,0.9116],[113.878,0.8962],[113.8796,0.8892],[113.8908,0.8768],[113.9136,0.8577],[113.9269,0.8459],[113.9283,0.8406],[113.9262,0.8337],[113.9245,0.8213],[113.9155,0.8129],[113.8997,0.8012],[113.8943,0.7937],[113.8914,0.7862],[113.8901,0.7779],[113.8917,0.7605],[113.8986,0.749],[113.8983,0.7432],[113.8949,0.7369],[113.8766,0.7137],[113.8579,0.7111],[113.8485,0.707],[113.8439,0.7029],[113.8371,0.6869],[113.8367,0.6826],[113.843,0.662],[113.8464,0.6642],[113.8801,0.6604],[113.8825,0.6579],[113.8836,0.6459],[113.8856,0.6416],[113.8893,0.6412],[113.8958,0.6443],[113.9021,0.6532],[113.9122,0.6568],[113.923,0.6538],[113.9318,0.6539],[113.939,0.6582],[113.9502,0.6602],[113.9617,0.657],[113.9685,0.6592],[113.9739,0.6661],[113.9813,0.6672],[113.9858,0.6654],[114.0044,0.652],[114.0086,0.656],[114.0105,0.6625],[114.0157,0.6687],[114.0237,0.6711],[114.0323,0.6713],[114.0458,0.6744],[114.0522,0.6789],[114.0638,0.6914],[114.0754,0.6928],[114.081,0.6967],[114.0948,0.6956],[114.1045,0.6983],[114.1148,0.6953],[114.1307,0.6822],[114.1481,0.6749],[114.1536,0.666],[114.1554,0.656],[114.1631,0.6473],[114.17,0.6331],[114.1715,0.6284],[114.1711,0.6165],[114.1677,0.6123],[114.162,0.6097],[114.1528,0.6021],[114.1477,0.5939],[114.1487,0.5846],[114.154,0.5823],[114.1703,0.5805],[114.1813,0.5756],[114.1877,0.5678],[114.1888,0.5633],[114.1879,0.5549],[114.1942,0.5412],[114.2,0.5393],[114.2101,0.5327],[114.215,0.5339],[114.221,0.5299],[114.227,0.5316],[114.2369,0.5301],[114.2437,0.5351],[114.2501,0.5347],[114.2592,0.53],[114.2623,0.5314],[114.2662,0.5369],[114.2716,0.5395],[114.2791,0.5405],[114.2869,0.5393],[114.2911,0.5354],[114.2972,0.5382],[114.3031,0.5355],[114.311,0.5407],[114.3155,0.5413],[114.3227,0.5397],[114.3344,0.5356],[114.3522,0.5311],[114.3637,0.5222],[114.3719,0.5114],[114.3768,0.5067],[114.3806,0.5057],[114.3907,0.5056],[114.3942,0.5041],[114.4007,0.4969],[114.4111,0.4956],[114.4204,0.5001],[114.4299,0.5031],[114.4324,0.5068],[114.4327,0.515],[114.431,0.5296],[114.4245,0.5384],[114.4286,0.5452],[114.439,0.5497],[114.4524,0.5585],[114.4552,0.5666],[114.4602,0.5709],[114.4735,0.5666],[114.4831,0.5713],[114.4915,0.5728],[114.5001,0.5682],[114.5048,0.5637],[114.5184,0.5647],[114.5279,0.5764],[114.528,0.5817],[114.5348,0.5845],[114.5377,0.5916],[114.5413,0.5967],[114.5355,0.6073],[114.5345,0.614],[114.5356,0.6227],[114.5393,0.6301],[114.5415,0.6315],[114.5493,0.6293],[114.5583,0.631],[114.5612,0.6288],[114.5734,0.6314],[114.5786,0.6315],[114.5887,0.6261],[114.591,0.6279],[114.5936,0.6352],[114.6046,0.6468],[114.6087,0.647],[114.6162,0.6404],[114.6178,0.6504],[114.6211,0.6562],[114.6269,0.6608],[114.6325,0.6625],[114.6356,0.6717],[114.6391,0.6752],[114.6484,0.6802],[114.6518,0.6852],[114.6549,0.6942],[114.6565,0.7021],[114.6629,0.7075],[114.6764,0.7075],[114.6826,0.7109],[114.6878,0.7172],[114.7013,0.7283],[114.7057,0.7289],[114.7073,0.7249],[114.6993,0.7161],[114.6962,0.7089],[114.7123,0.7051],[114.7188,0.7069],[114.7365,0.7171],[114.7491,0.7306],[114.7555,0.7385],[114.765,0.7424],[114.7698,0.7367],[114.7758,0.732],[114.7841,0.7321],[114.7931,0.7385],[114.8081,0.7455],[114.8106,0.7497],[114.8266,0.7511],[114.8313,0.7409],[114.8432,0.7298],[114.8431,0.7234],[114.8457,0.7153],[114.8502,0.7113],[114.8688,0.7005],[114.8767,0.6994],[114.8814,0.7036],[114.8807,0.7082],[114.8704,0.7157],[114.8659,0.7201],[114.8644,0.7248],[114.8651,0.739],[114.8668,0.7419],[114.875,0.7466],[114.8791,0.7515],[114.8834,0.7602],[114.8898,0.7651],[114.903,0.7686],[114.9057,0.7714],[114.9108,0.7842],[114.9078,0.7909],[114.9115,0.7931],[114.9163,0.7898],[114.9222,0.7821],[114.9302,0.777],[114.9396,0.7771],[114.944,0.775],[114.9494,0.7663],[114.9578,0.7638],[114.964,0.7564],[114.9701,0.7529],[114.9797,0.7445],[114.9846,0.7349],[114.9863,0.7261],[114.9914,0.7169],[114.9922,0.7107],[114.9998,0.6741],[115.0027,0.6558],[115.0038,0.6441],[115.0085,0.6194],[115.0111,0.6111],[115.0171,0.5992],[115.0234,0.5899],[115.0327,0.5729],[115.0404,0.554],[115.0505,0.541],[115.0601,0.5302],[115.0687,0.522],[115.076,0.5111],[115.084,0.4968],[115.0884,0.4861],[115.0923,0.4722],[115.0954,0.4677],[115.1,0.4655],[115.1079,0.4512],[115.1208,0.4396],[115.1353,0.4298],[115.137,0.426],[115.137,0.4157],[115.1334,0.3907],[115.1287,0.3746],[115.1247,0.3694],[115.1108,0.3589],[115.0987,0.3506],[115.0936,0.3454],[115.0872,0.3362],[115.0821,0.3314],[115.0659,0.3246],[115.0528,0.3159],[115.0537,0.3078],[115.0523,0.3041],[115.0455,0.3002],[115.0399,0.3033],[115.0318,0.3174],[115.0236,0.3256],[115.0187,0.3266],[115.0096,0.3256],[114.9999,0.3209],[114.9901,0.3201],[114.9829,0.3246],[114.979,0.3254],[114.974,0.3236],[114.9657,0.3162],[114.9534,0.3129],[114.9514,0.3159],[114.954,0.3248],[114.9531,0.327],[114.9436,0.3308],[114.9304,0.3267],[114.9129,0.3189],[114.9017,0.3112],[114.89,0.3],[114.887,0.2927],[114.8887,0.2837],[114.8862,0.2769],[114.8826,0.274],[114.875,0.2717],[114.8719,0.2674],[114.8696,0.2571],[114.8643,0.2457],[114.8632,0.2364],[114.8609,0.2331],[114.8548,0.2305],[114.838,0.2283],[114.8298,0.2209],[114.8264,0.2065],[114.8276,0.2013],[114.8264,0.1964],[114.8228,0.1922],[114.8107,0.1818],[114.8026,0.1775],[114.8004,0.1736],[114.8022,0.1706],[114.8098,0.1659],[114.8111,0.1587],[114.8092,0.1529],[114.8003,0.1346],[114.793,0.125],[114.7909,0.1145],[114.7913,0.0935],[114.7939,0.0868],[114.8027,0.0778],[114.8072,0.071],[114.8172,0.0689],[114.8298,0.0782],[114.835,0.0773],[114.8477,0.0694],[114.8585,0.055],[114.8613,0.0547],[114.8691,0.0587],[114.8813,0.053],[114.8862,0.0456],[114.8902,0.0437],[114.8948,0.0386],[114.8951,0.0333],[114.8912,0.0261],[114.8895,0.0192],[114.8934,0.0021],[114.8971,-0.0052],[114.8996,-0.0151],[114.8972,-0.0294],[114.8975,-0.0354],[114.9018,-0.0498],[114.909,-0.0649],[114.9125,-0.0763],[114.9158,-0.083],[114.9215,-0.0904],[114.9238,-0.0966],[114.9261,-0.1079],[114.9245,-0.1214],[114.92,-0.1338],[114.9245,-0.1433],[114.927,-0.1515],[114.9325,-0.1612],[114.9332,-0.1658],[114.9318,-0.1741],[114.9288,-0.1822],[114.9296,-0.1861],[114.9336,-0.1889],[114.9415,-0.1886],[114.9477,-0.1904],[114.9531,-0.188],[114.9596,-0.1814],[114.9661,-0.1791],[114.9793,-0.1785],[114.987,-0.1729],[114.9917,-0.1751],[114.9943,-0.1788],[114.9904,-0.1819],[114.9918,-0.186],[115.0008,-0.1869],[115.011,-0.1857],[115.0193,-0.1863],[115.0269,-0.1852],[115.036,-0.1913],[115.0448,-0.1898],[115.0518,-0.1809],[115.0569,-0.1769],[115.0616,-0.1694],[115.0671,-0.1659],[115.0727,-0.1635],[115.0785,-0.1549],[115.0812,-0.1532],[115.0936,-0.1518],[115.1065,-0.1439],[115.1118,-0.1428],[115.1173,-0.1459],[115.1217,-0.1441],[115.1248,-0.1382],[115.1306,-0.1403],[115.1376,-0.1402],[115.1483,-0.1371],[115.1493,-0.1336],[115.1473,-0.1213],[115.1536,-0.1113],[115.155,-0.1039],[115.1597,-0.1002],[115.1702,-0.0973],[115.1774,-0.0911],[115.1855,-0.0868],[115.192,-0.0782],[115.196,-0.0761],[115.2095,-0.0768],[115.2152,-0.0747],[115.2274,-0.0729],[115.2316,-0.0703],[115.2404,-0.059],[115.246,-0.055],[115.2513,-0.0538],[115.2589,-0.0492],[115.2704,-0.0486],[115.279,-0.047],[115.2849,-0.0443],[115.2969,-0.0336],[115.3026,-0.0367],[115.3023,-0.0496],[115.3103,-0.0472],[115.3238,-0.0398],[115.3362,-0.0163],[115.3485,-0.0028],[115.3522,0.0071],[115.3572,0.0133],[115.3745,0.0318],[115.3769,0.0318],[115.3819,0.0244],[115.3955,0.0195],[115.4053,0.0207],[115.4152,0.0256],[115.4152,0.033],[115.4288,0.038],[115.4411,0.0417],[115.4436,0.0516],[115.4424,0.0676],[115.4535,0.0886],[115.451,0.0972],[115.451,0.1071],[115.4658,0.1244],[115.472,0.138],[115.4782,0.1405],[115.4856,0.1343],[115.4979,0.1343],[115.5041,0.1355],[115.5165,0.1343],[115.535,0.1392],[115.551,0.1392],[115.5621,0.1405],[115.5782,0.1405],[115.5881,0.1429],[115.6152,0.1516],[115.6251,0.1503],[115.6523,0.1442],[115.6745,0.1454],[115.6856,0.1565],[115.6992,0.154],[115.719,0.1479],[115.7313,0.1479],[115.7535,0.1491],[115.7609,0.154],[115.7696,0.1491],[115.777,0.1491],[115.7856,0.154],[115.7918,0.1602],[115.8029,0.1664],[115.8054,0.1763],[115.7967,0.1849],[115.8072,0.1945],[115.8085,0.1923],[115.8205,0.1955],[115.8195,0.2037],[115.8161,0.2156],[115.8057,0.2603],[115.7881,0.2982],[115.7834,0.3011],[115.7708,0.3058],[115.7609,0.3185],[115.76,0.3316],[115.7626,0.3397],[115.7647,0.3512],[115.7727,0.3668],[115.775,0.3736],[115.782,0.4046],[115.7818,0.4259],[115.7781,0.4319],[115.7649,0.4488],[115.6855,0.522],[115.67,0.536],[115.6575,0.5442],[115.6537,0.5457],[115.6365,0.5567],[115.65,0.5769],[115.6533,0.6039],[115.6423,0.6169],[115.6387,0.6167],[115.6263,0.6202],[115.6203,0.625],[115.6105,0.6237],[115.6001,0.626],[115.5878,0.6347],[115.5787,0.6437],[115.5725,0.6543],[115.5564,0.6744],[115.5458,0.6866],[115.5367,0.6986],[115.52,0.7182],[115.5153,0.7264],[115.5086,0.7348],[115.4974,0.7442],[115.4812,0.7552],[115.474,0.762],[115.4661,0.7714],[115.4636,0.783],[115.462,0.8075],[115.4628,0.823],[115.4654,0.8344],[115.4782,0.8559],[115.4856,0.8664],[115.5031,0.8988],[115.5086,0.9119],[115.5166,0.9357],[115.5198,0.9531],[115.5202,0.9633],[115.525,1.0257],[115.5259,1.0578],[115.5222,1.0812],[115.5209,1.1037],[115.5174,1.1214],[115.5118,1.1352],[115.509,1.1455],[115.5035,1.1618],[115.4912,1.1845],[115.4852,1.1909],[115.4792,1.1996],[115.4767,1.2062],[115.4759,1.2138],[115.4889,1.2269],[115.4951,1.2308],[115.5025,1.2416],[115.5055,1.2482],[115.5043,1.2571],[115.4917,1.2542],[115.4639,1.2394],[115.4364,1.2285],[115.4303,1.224],[115.4263,1.2185],[115.4212,1.2076],[115.4206,1.1982],[115.4175,1.1925],[115.4112,1.1931],[115.4082,1.1903],[115.4069,1.1848],[115.4063,1.1728],[115.4091,1.1658],[115.4154,1.1603],[115.4191,1.1482],[115.4182,1.144],[115.4103,1.14],[115.4084,1.137],[115.4109,1.1277],[115.4021,1.1171],[115.4015,1.1126],[115.3939,1.105],[115.383,1.1029],[115.3784,1.0995],[115.3772,1.0929],[115.3733,1.0814],[115.3709,1.0777],[115.3715,1.072],[115.3645,1.0659],[115.3579,1.0635],[115.3423,1.0607],[115.3246,1.0623],[115.3166,1.0594],[115.2996,1.0648],[115.2939,1.0497],[115.288,1.047],[115.2809,1.048],[115.2694,1.0463],[115.2657,1.0437],[115.2598,1.0475],[115.2524,1.0466],[115.241,1.0508],[115.2362,1.0551],[115.23,1.0582],[115.2241,1.0577],[115.2151,1.0602],[115.2003,1.0619],[115.1964,1.0642],[115.1855,1.0677],[115.1844,1.0748],[115.1868,1.0789],[115.1861,1.0827],[115.1898,1.0878],[115.1866,1.0932],[115.1861,1.0986],[115.1827,1.1026],[115.1779,1.1038],[115.1756,1.1137],[115.1735,1.116],[115.1473,1.1189],[115.142,1.116],[115.135,1.1226],[115.1229,1.1294],[115.1186,1.1294],[115.1112,1.1234],[115.1007,1.1206],[115.0933,1.1174],[115.0796,1.116],[115.0768,1.12],[115.0705,1.12],[115.0604,1.1228],[115.0455,1.116],[115.0401,1.1157],[115.0267,1.1203],[115.0156,1.1208],[115.01,1.1233],[115.0068,1.1273],[115.0016,1.1437],[115.0017,1.1496],[114.9994,1.1533],[114.9909,1.1538],[114.9891,1.1573],[114.9903,1.1664],[114.9891,1.169],[114.9903,1.1829],[114.9886,1.1863],[114.9795,1.1927],[114.9764,1.1937],[114.9647,1.1866],[114.9453,1.18],[114.9362,1.1786],[114.9325,1.1803],[114.9202,1.1951],[114.9078,1.2015],[114.8961,1.2094],[114.8851,1.2122],[114.8779,1.2088],[114.8702,1.1994],[114.8588,1.194],[114.8534,1.1761],[114.8543,1.1709],[114.8483,1.168],[114.8396,1.1725],[114.8289,1.1826],[114.8096,1.1931],[114.7966,1.2043],[114.7864,1.2154],[114.7774,1.2278],[114.7655,1.2367],[114.7575,1.2478],[114.7578,1.2548],[114.7503,1.2566],[114.733,1.2643],[114.7273,1.264],[114.7174,1.2728],[114.7159,1.2782],[114.7207,1.2906],[114.7202,1.2959],[114.7231,1.3003],[114.7256,1.3105],[114.7171,1.3245],[114.7145,1.3325],[114.7103,1.3359],[114.7041,1.337],[114.7015,1.3429],[114.6999,1.354],[114.6925,1.3588],[114.6885,1.3591],[114.6815,1.3528],[114.677,1.352],[114.6673,1.354],[114.6594,1.3571],[114.6546,1.3562],[114.6383,1.3588],[114.6337,1.3607],[114.6326,1.3639],[114.6177,1.3643],[114.607,1.3687],[114.6025,1.3819],[114.5996,1.3945],[114.5901,1.3952],[114.5797,1.3911],[114.5756,1.394],[114.5768,1.3991],[114.5746,1.408],[114.5754,1.4141],[114.5676,1.4221],[114.5666,1.4277]]}},{"type":"Feature","properties":{"mhid":"1332:372","alt_name":"KOTA BALIKPAPAN","latitude":-1.16667,"longitude":116.88333,"sample_value":912},"geometry":{"type":"LineString","coordinates":[[116.7891,-1.0429],[116.7825,-1.0401],[116.7757,-1.0411],[116.7744,-1.0432],[116.7732,-1.0484],[116.7712,-1.0596],[116.7654,-1.0702],[116.761,-1.0724],[116.7602,-1.0742],[116.7586,-1.0758],[116.7516,-1.0721],[116.7514,-1.0721],[116.7418,-1.0717],[116.7395,-1.0738],[116.7295,-1.0669],[116.7278,-1.0779],[116.7303,-1.0834],[116.7303,-1.0882],[116.7283,-1.0917],[116.7167,-1.1101],[116.7232,-1.1199],[116.7237,-1.1207],[116.7326,-1.1254],[116.7326,-1.1255],[116.7326,-1.1254],[116.7453,-1.1322],[116.7569,-1.1385],[116.7682,-1.1686],[116.7687,-1.1698],[116.7753,-1.1876],[116.7726,-1.1943],[116.7663,-1.2106],[116.7664,-1.2121],[116.7919,-1.2358],[116.8119,-1.2395],[116.8118,-1.2574],[116.8106,-1.264],[116.8051,-1.272],[116.8109,-1.2828],[116.8306,-1.2789],[116.842,-1.2789],[116.8484,-1.2763],[116.8727,-1.277],[116.8807,-1.2751],[116.8834,-1.277],[116.9066,-1.2683],[116.9077,-1.2641],[116.918,-1.2618],[116.9282,-1.2561],[116.9336,-1.2546],[116.9377,-1.2497],[116.9651,-1.2299],[116.9936,-1.2101],[117.0073,-1.1949],[117.0103,-1.187],[117.013,-1.1759],[117.0164,-1.171],[117.0172,-1.1664],[117.0164,-1.1546],[117.0225,-1.1413],[117.022,-1.1403],[117.018,-1.1365],[117.0076,-1.1316],[117.0017,-1.13],[116.9951,-1.1316],[116.9855,-1.1284],[116.9724,-1.1254],[116.9687,-1.122],[116.9624,-1.1199],[116.9598,-1.1151],[116.9547,-1.1111],[116.9479,-1.1081],[116.9405,-1.1073],[116.934,-1.1083],[116.9289,-1.1056],[116.9324,-1.098],[116.9267,-1.0961],[116.9225,-1.0904],[116.9176,-1.0908],[116.913,-1.0824],[116.9081,-1.0809],[116.9039,-1.0714],[116.9035,-1.065],[116.8937,-1.0608],[116.8876,-1.0596],[116.8842,-1.0558],[116.88,-1.0555],[116.8678,-1.0593],[116.8606,-1.0585],[116.8553,-1.0551],[116.8465,-1.0532],[116.845,-1.049],[116.8393,-1.049],[116.8372,-1.046],[116.8338,-1.0499],[116.8163,-1.0564],[116.8127,-1.0547],[116.8062,-1.0581],[116.8043,-1.0531],[116.7969,-1.0484],[116.7954,-1.0473],[116.7891,-1.0429],[116.7891,-1.0429]]}},{"type":"Feature","properties":{"mhid":"1332:373","alt_name":"KOTA SAMARINDA","latitude":-0.43333,"longitude":117.18333,"sample_value":465},"geometry":{"type":"LineString","coordinates":[[117.2392,-0.5666],[117.2386,-0.5624],[117.2428,-0.5617],[117.2516,-0.5549],[117.2536,-0.5505],[117.2575,-0.5506],[117.2619,-0.5543],[117.2669,-0.5488],[117.2673,-0.5435],[117.2645,-0.5374],[117.2641,-0.5318],[117.2688,-0.5313],[117.2687,-0.5275],[117.2603,-0.527],[117.2595,-0.5202],[117.2609,-0.4874],[117.2628,-0.4775],[117.2694,-0.4726],[117.28,-0.4628],[117.2843,-0.4497],[117.2851,-0.44],[117.2838,-0.4296],[117.2788,-0.4197],[117.2866,-0.41],[117.2892,-0.4037],[117.2929,-0.4107],[117.2965,-0.4097],[117.3026,-0.4037],[117.3039,-0.3973],[117.3014,-0.3893],[117.3027,-0.3832],[117.2979,-0.3808],[117.2984,-0.3758],[117.2952,-0.3722],[117.293,-0.3662],[117.2884,-0.3628],[117.2793,-0.3592],[117.2717,-0.359],[117.2618,-0.3651],[117.2578,-0.3647],[117.2487,-0.3675],[117.2442,-0.3668],[117.2425,-0.3595],[117.2424,-0.3494],[117.2398,-0.34],[117.2207,-0.3206],[117.2116,-0.3143],[117.2039,-0.3124],[117.1964,-0.3133],[117.1889,-0.3174],[117.1829,-0.3233],[117.1761,-0.3326],[117.1698,-0.3384],[117.1559,-0.3439],[117.1464,-0.3488],[117.1439,-0.3514],[117.1376,-0.3828],[117.1334,-0.3942],[117.1271,-0.4052],[117.1202,-0.4118],[117.1112,-0.418],[117.1012,-0.4235],[117.0894,-0.4278],[117.0789,-0.4303],[117.0687,-0.434],[117.0646,-0.4418],[117.0553,-0.4636],[117.0491,-0.4859],[117.0472,-0.5],[117.0471,-0.5165],[117.0488,-0.5212],[117.0545,-0.529],[117.0589,-0.55],[117.0616,-0.5592],[117.0667,-0.5714],[117.0762,-0.5786],[117.0786,-0.5862],[117.0821,-0.5773],[117.0845,-0.5763],[117.0939,-0.5771],[117.0975,-0.5835],[117.0962,-0.5894],[117.1001,-0.5941],[117.109,-0.5993],[117.1151,-0.5979],[117.1201,-0.5991],[117.1236,-0.6057],[117.1421,-0.6194],[117.1392,-0.6336],[117.1399,-0.6411],[117.1369,-0.651],[117.1298,-0.6572],[117.1296,-0.6633],[117.1356,-0.6722],[117.1384,-0.6739],[117.1386,-0.6874],[117.1489,-0.6867],[117.152,-0.6852],[117.161,-0.7045],[117.1817,-0.7065],[117.1858,-0.7007],[117.1855,-0.6963],[117.1883,-0.6894],[117.1935,-0.6824],[117.1935,-0.676],[117.2013,-0.6702],[117.2229,-0.6684],[117.2322,-0.6602],[117.2354,-0.6517],[117.2312,-0.6435],[117.2309,-0.6397],[117.235,-0.6368],[117.2462,-0.6334],[117.2491,-0.6281],[117.2621,-0.6212],[117.2702,-0.612],[117.271,-0.602],[117.2727,-0.5992],[117.2828,-0.6008],[117.2856,-0.5977],[117.283,-0.5899],[117.2736,-0.5819],[117.2643,-0.5778],[117.2519,-0.5744],[117.2411,-0.5739],[117.2392,-0.5666]]}},{"type":"Feature","properties":{"mhid":"1332:374","alt_name":"KOTA BONTANG","latitude":0.12526,"longitude":117.49603,"sample_value":344},"geometry":{"type":"LineString","coordinates":[[117.5314,0.0649],[117.5265,0.0683],[117.5142,0.0661],[117.5137,0.0618],[117.5231,0.061],[117.5314,0.0649]]}},{"type":"Feature","properties":{"mhid":"1332:374","alt_name":"KOTA BONTANG","latitude":0.12526,"longitude":117.49603,"sample_value":344},"geometry":{"type":"LineString","coordinates":[[117.4931,0.0641],[117.4937,0.0699],[117.4873,0.066],[117.4931,0.0641]]}},{"type":"Feature","properties":{"mhid":"1332:374","alt_name":"KOTA BONTANG","latitude":0.12526,"longitude":117.49603,"sample_value":344},"geometry":{"type":"LineString","coordinates":[[117.5064,0.0176],[117.5147,0.0173],[117.5171,0.0196],[117.5162,0.0261],[117.5119,0.0265],[117.5134,0.0347],[117.503,0.032],[117.499,0.0322],[117.4937,0.0249],[117.4898,0.0295],[117.4896,0.0411],[117.494,0.0414],[117.4953,0.0467],[117.5014,0.0495],[117.5097,0.0482],[117.5118,0.0568],[117.5071,0.0617],[117.4957,0.0581],[117.4913,0.0584],[117.4849,0.0612],[117.4846,0.0569],[117.479,0.0526],[117.4787,0.048],[117.4736,0.0429],[117.4722,0.0493],[117.4754,0.0543],[117.4735,0.0581],[117.4773,0.062],[117.4716,0.067],[117.4782,0.0734],[117.4759,0.0861],[117.4732,0.0894],[117.4669,0.0872],[117.4654,0.0961],[117.4759,0.0932],[117.4757,0.0899],[117.4786,0.0811],[117.4832,0.0812],[117.4856,0.0867],[117.4848,0.0927],[117.4787,0.0912],[117.4767,0.0933],[117.4803,0.1006],[117.4873,0.1022],[117.4932,0.0987],[117.4999,0.0983],[117.5007,0.1015],[117.4951,0.1052],[117.4872,0.1025],[117.4792,0.1082],[117.481,0.1104],[117.4873,0.106],[117.49,0.1146],[117.4966,0.1119],[117.5036,0.1107],[117.5079,0.1083],[117.5188,0.1224],[117.5228,0.1255],[117.5183,0.1327],[117.5192,0.1413],[117.5134,0.1422],[117.51,0.1483],[117.5111,0.1512],[117.5056,0.1572],[117.4952,0.1521],[117.4957,0.1586],[117.487,0.16],[117.4799,0.155],[117.4757,0.1639],[117.4773,0.1659],[117.4836,0.1641],[117.4897,0.1667],[117.4905,0.1706],[117.4858,0.1725],[117.4876,0.1767],[117.4928,0.1739],[117.5002,0.1738],[117.5046,0.1756],[117.5034,0.179],[117.4935,0.1801],[117.4919,0.1855],[117.4975,0.1887],[117.4994,0.195],[117.5082,0.1915],[117.5106,0.1955],[117.5177,0.1975],[117.5145,0.2012],[117.5055,0.2038],[117.5051,0.2069],[117.4927,0.1981],[117.4888,0.2018],[117.4797,0.1998],[117.4682,0.1993],[117.4691,0.1878],[117.4677,0.1754],[117.4498,0.1676],[117.4461,0.1574],[117.4403,0.1362],[117.4332,0.1211],[117.4309,0.1109],[117.4235,0.1013],[117.4016,0.0922],[117.3886,0.0617],[117.3897,0.0539],[117.3892,0.0225],[117.3898,0.0187],[117.4282,0.0197],[117.4574,0.0191],[117.5064,0.0176]]}},{"type":"Feature","properties":{"mhid":"1332:375","alt_name":"KABUPATEN MALINAU","latitude":2.45,"longitude":115.68333,"sample_value":953},"geometry":{"type":"LineString","coordinates":[[116.7612,3.6419],[116.7593,3.6445],[116.748,3.6513],[116.7432,3.6568],[116.738,3.6597],[116.7391,3.6633],[116.7383,3.6745],[116.7358,3.6779],[116.7307,3.6906],[116.7164,3.6996],[116.7054,3.6982],[116.6894,3.6991],[116.6614,3.7033],[116.6532,3.702],[116.6448,3.6995],[116.6283,3.6969],[116.6184,3.6929],[116.6085,3.6914],[116.5887,3.691],[116.5799,3.6929],[116.5762,3.7006],[116.5734,3.7201],[116.5699,3.7222],[116.5544,3.7216],[116.5465,3.7201],[116.5422,3.721],[116.5348,3.7258],[116.5268,3.7339],[116.5203,3.7432],[116.512,3.7482],[116.5031,3.7481],[116.4993,3.7432],[116.4887,3.7451],[116.4826,3.7566],[116.4771,3.7633],[116.4762,3.7682],[116.4778,3.7727],[116.478,3.7811],[116.4676,3.7943],[116.4664,3.8079],[116.4629,3.8126],[116.4578,3.8154],[116.4544,3.8194],[116.4508,3.8298],[116.4458,3.8369],[116.437,3.8457],[116.4354,3.854],[116.432,3.855],[116.4243,3.8651],[116.4208,3.8674],[116.4187,3.8755],[116.4199,3.8793],[116.418,3.8872],[116.4105,3.8923],[116.401,3.9161],[116.3948,3.9277],[116.3893,3.9318],[116.3848,3.9479],[116.3865,3.9688],[116.3833,3.9716],[116.3839,3.9827],[116.3921,3.9918],[116.3773,3.9956],[116.3697,3.9934],[116.3643,4.0001],[116.355,4.0083],[116.3532,4.0182],[116.3533,4.027],[116.3548,4.0338],[116.3511,4.037],[116.3423,4.0408],[116.3371,4.0443],[116.336,4.0505],[116.3311,4.057],[116.319,4.0629],[116.312,4.0589],[116.3081,4.0512],[116.3006,4.0487],[116.2936,4.0519],[116.2885,4.058],[116.2839,4.058],[116.2781,4.0522],[116.2774,4.0456],[116.2751,4.041],[116.2688,4.0401],[116.2618,4.0424],[116.2495,4.0431],[116.237,4.0468],[116.2355,4.0587],[116.2327,4.0659],[116.2228,4.0791],[116.2183,4.0803],[116.2064,4.0742],[116.1982,4.0747],[116.1851,4.0797],[116.1796,4.0864],[116.1697,4.0901],[116.1616,4.0913],[116.1675,4.1115],[116.1647,4.1125],[116.1473,4.1106],[116.1394,4.116],[116.1359,4.1151],[116.126,4.1209],[116.1162,4.1134],[116.1067,4.1119],[116.0949,4.1167],[116.0858,4.1179],[116.082,4.1109],[116.078,4.11],[116.0743,4.1062],[116.072,4.1002],[116.0613,4.0969],[116.0443,4.0841],[116.0387,4.0839],[116.0315,4.08],[116.0287,4.0818],[116.0243,4.0897],[116.0041,4.0896],[115.9896,4.0945],[115.9813,4.1024],[115.9759,4.1132],[115.9709,4.1179],[115.9658,4.1183],[115.9604,4.1078],[115.9582,4.0923],[115.9589,4.0717],[115.9633,4.0599],[115.965,4.0474],[115.9608,4.0369],[115.9608,4.0143],[115.9575,4.0043],[115.9517,3.9974],[115.9503,3.9877],[115.9506,3.9664],[115.9514,3.9602],[115.9467,3.957],[115.9398,3.9563],[115.9326,3.9512],[115.9301,3.944],[115.9221,3.9314],[115.92,3.9249],[115.9207,3.9148],[115.9236,3.9068],[115.9203,3.8942],[115.9268,3.8823],[115.9243,3.8776],[115.9135,3.8761],[115.9135,3.861],[115.9095,3.8483],[115.9091,3.8408],[115.9164,3.8368],[115.9236,3.8354],[115.9257,3.8267],[115.9229,3.8209],[115.9229,3.8043],[115.9268,3.7982],[115.9404,3.7921],[115.9476,3.7849],[115.9488,3.7772],[115.9478,3.7726],[115.9441,3.7679],[115.9438,3.7603],[115.9326,3.7567],[115.9279,3.7527],[115.9247,3.7264],[115.9214,3.7144],[115.9174,3.7065],[115.912,3.6899],[115.9142,3.6816],[115.9203,3.6755],[115.925,3.6646],[115.9337,3.6517],[115.9333,3.6426],[115.9355,3.6376],[115.9503,3.626],[115.9561,3.6203],[115.9517,3.608],[115.9524,3.5964],[115.9568,3.5863],[115.9589,3.5784],[115.9777,3.5526],[115.9681,3.5226],[115.9608,3.5153],[115.9488,3.5129],[115.938,3.5081],[115.9259,3.4997],[115.9115,3.4937],[115.9055,3.4877],[115.8971,3.4756],[115.8838,3.4696],[115.8562,3.4717],[115.8506,3.4864],[115.8451,3.4898],[115.8386,3.4916],[115.8316,3.4876],[115.826,3.4913],[115.8187,3.4935],[115.8119,3.4923],[115.8054,3.4895],[115.8054,3.4827],[115.8073,3.4704],[115.8008,3.4636],[115.79,3.4624],[115.779,3.4637],[115.7691,3.463],[115.7624,3.4474],[115.7563,3.4467],[115.7428,3.4478],[115.7291,3.4449],[115.7142,3.4377],[115.7083,3.4282],[115.7029,3.4163],[115.6999,3.4026],[115.691,3.4062],[115.6749,3.4276],[115.6601,3.4377],[115.6489,3.4366],[115.6497,3.4288],[115.6342,3.4136],[115.625,3.4089],[115.622,3.4095],[115.6216,3.4178],[115.6178,3.4205],[115.6138,3.4285],[115.6154,3.4324],[115.6137,3.4394],[115.6097,3.447],[115.604,3.4473],[115.6009,3.4429],[115.5974,3.4426],[115.5934,3.4483],[115.5851,3.4495],[115.5827,3.4401],[115.5782,3.4323],[115.5787,3.4193],[115.5726,3.4155],[115.5699,3.4078],[115.5638,3.4047],[115.5638,3.3976],[115.5607,3.3943],[115.5574,3.3829],[115.549,3.3753],[115.5433,3.3592],[115.5462,3.3466],[115.5444,3.342],[115.5479,3.335],[115.5475,3.3277],[115.5441,3.3283],[115.5394,3.3193],[115.5323,3.3186],[115.531,3.3078],[115.5318,3.3029],[115.5304,3.298],[115.5362,3.289],[115.5366,3.2831],[115.531,3.2815],[115.5267,3.2762],[115.5278,3.273],[115.525,3.263],[115.5234,3.2509],[115.5244,3.2411],[115.5293,3.2408],[115.5324,3.2346],[115.5338,3.2261],[115.5273,3.2249],[115.5198,3.2259],[115.5155,3.2227],[115.5186,3.2142],[115.5173,3.2027],[115.5214,3.1893],[115.5309,3.182],[115.5361,3.1832],[115.5426,3.1818],[115.5519,3.1732],[115.5595,3.1716],[115.5642,3.1614],[115.5609,3.1553],[115.562,3.1515],[115.5555,3.1489],[115.5499,3.1409],[115.5354,3.1431],[115.5295,3.1323],[115.5293,3.1234],[115.5266,3.117],[115.5178,3.1141],[115.5139,3.1074],[115.5149,3.1022],[115.5131,3.0955],[115.5105,3.093],[115.5125,3.0883],[115.5112,3.084],[115.5125,3.0756],[115.5158,3.0698],[115.517,3.0624],[115.5146,3.0547],[115.508,3.0484],[115.5057,3.0405],[115.5012,3.0392],[115.4974,3.0288],[115.495,3.0293],[115.489,3.0244],[115.486,3.0182],[115.4796,3.0186],[115.4741,3.0213],[115.4691,3.0215],[115.4683,3.0249],[115.4581,3.0258],[115.4532,3.0279],[115.4495,3.0242],[115.4404,3.024],[115.4378,3.0141],[115.4333,3.0135],[115.4265,3.0157],[115.422,3.0069],[115.4181,3.0031],[115.4178,2.9994],[115.4141,2.9954],[115.4078,2.9934],[115.4064,2.9882],[115.4028,2.9847],[115.3936,2.9796],[115.3896,2.9797],[115.3809,2.9827],[115.3772,2.9864],[115.3722,2.9808],[115.3628,2.982],[115.3499,2.9814],[115.3474,2.9772],[115.3399,2.9781],[115.3313,2.9753],[115.3256,2.9792],[115.3241,2.9893],[115.3262,2.994],[115.3238,2.9971],[115.3168,3.0173],[115.3085,3.0247],[115.3023,3.0271],[115.297,3.0326],[115.284,3.0368],[115.2767,3.0332],[115.2725,3.0239],[115.265,3.0149],[115.2574,2.9994],[115.2537,2.9972],[115.2537,2.9862],[115.2519,2.9815],[115.2481,2.9796],[115.2503,2.9742],[115.25,2.966],[115.2382,2.9633],[115.2352,2.9597],[115.229,2.9596],[115.2212,2.962],[115.2142,2.9586],[115.2108,2.9585],[115.2046,2.9508],[115.2001,2.9478],[115.1943,2.939],[115.1895,2.9337],[115.1818,2.9313],[115.1727,2.9312],[115.1644,2.9278],[115.1542,2.9173],[115.1531,2.913],[115.1486,2.9067],[115.1533,2.8982],[115.1505,2.8848],[115.1538,2.8803],[115.1526,2.8709],[115.1434,2.8693],[115.1405,2.8588],[115.1373,2.8535],[115.1288,2.8514],[115.125,2.847],[115.1249,2.8427],[115.1182,2.8365],[115.1009,2.8305],[115.0955,2.8244],[115.0969,2.818],[115.103,2.8175],[115.12,2.805],[115.1294,2.8021],[115.1346,2.8062],[115.1419,2.8057],[115.1546,2.7932],[115.1534,2.7884],[115.1472,2.783],[115.147,2.7806],[115.1409,2.7758],[115.1405,2.7623],[115.1441,2.7568],[115.1405,2.7475],[115.1316,2.7402],[115.1204,2.7291],[115.1037,2.7215],[115.1014,2.7179],[115.102,2.7137],[115.0986,2.7049],[115.0961,2.7018],[115.0967,2.6962],[115.1021,2.6958],[115.1065,2.6907],[115.1149,2.69],[115.1137,2.6849],[115.1102,2.6825],[115.1101,2.6775],[115.1131,2.6722],[115.1208,2.6549],[115.1209,2.6509],[115.115,2.6493],[115.1126,2.6447],[115.1133,2.6375],[115.1093,2.6347],[115.0994,2.6235],[115.0923,2.6234],[115.0882,2.6167],[115.0912,2.607],[115.0974,2.6045],[115.1012,2.6011],[115.1072,2.6003],[115.1093,2.5938],[115.1079,2.5889],[115.1155,2.5835],[115.122,2.5877],[115.1352,2.5849],[115.1401,2.5923],[115.1402,2.5983],[115.1522,2.6081],[115.1613,2.6064],[115.1687,2.6132],[115.172,2.61],[115.1772,2.6106],[115.1821,2.5979],[115.1929,2.5922],[115.1958,2.5816],[115.2007,2.5794],[115.2055,2.5737],[115.2122,2.5736],[115.211,2.5689],[115.2149,2.5679],[115.2186,2.5597],[115.2157,2.5528],[115.2218,2.5466],[115.2236,2.5426],[115.2358,2.536],[115.2446,2.539],[115.2483,2.5416],[115.2578,2.5404],[115.2581,2.5304],[115.2516,2.5234],[115.2471,2.5111],[115.2487,2.5076],[115.2435,2.5034],[115.2422,2.4986],[115.235,2.4925],[115.2304,2.4921],[115.2259,2.4862],[115.2179,2.482],[115.2098,2.479],[115.2062,2.4727],[115.2032,2.472],[115.1902,2.4823],[115.1852,2.4798],[115.1761,2.481],[115.1621,2.4768],[115.1515,2.4772],[115.1445,2.4759],[115.1407,2.471],[115.1354,2.4682],[115.1318,2.4612],[115.1307,2.4563],[115.1231,2.4545],[115.1205,2.4572],[115.1165,2.4546],[115.117,2.4484],[115.1129,2.4424],[115.103,2.4332],[115.1028,2.4288],[115.0987,2.424],[115.1009,2.416],[115.0992,2.4132],[115.1008,2.4061],[115.0975,2.4025],[115.0907,2.4019],[115.0857,2.4048],[115.076,2.4049],[115.0712,2.4077],[115.0675,2.4049],[115.0629,2.4073],[115.0504,2.4042],[115.0485,2.393],[115.0537,2.3871],[115.0479,2.3857],[115.045,2.3904],[115.0374,2.389],[115.0363,2.3838],[115.0292,2.3777],[115.0265,2.3663],[115.0214,2.3625],[115.015,2.3651],[115.0111,2.3631],[115.0066,2.3643],[115.0053,2.358],[115.0009,2.3541],[115.0002,2.3505],[114.9952,2.3486],[114.99,2.3498],[114.9788,2.3604],[114.9756,2.3612],[114.9746,2.3668],[114.9679,2.3674],[114.9633,2.3657],[114.9608,2.3586],[114.957,2.3567],[114.9573,2.3528],[114.9536,2.3489],[114.9538,2.3445],[114.9519,2.3329],[114.9481,2.3241],[114.9487,2.3153],[114.9504,2.3094],[114.9641,2.2979],[114.9669,2.292],[114.9653,2.2868],[114.9586,2.281],[114.9529,2.279],[114.9476,2.2815],[114.9381,2.2801],[114.9354,2.2745],[114.9295,2.2675],[114.9204,2.2601],[114.9172,2.2553],[114.9076,2.2533],[114.9032,2.2598],[114.8959,2.2588],[114.8936,2.2604],[114.8852,2.2598],[114.8735,2.2631],[114.8647,2.2616],[114.8548,2.2535],[114.8473,2.253],[114.8387,2.2496],[114.8339,2.2493],[114.8289,2.2453],[114.8236,2.2488],[114.8138,2.2512],[114.7984,2.2497],[114.7967,2.2447],[114.7997,2.2355],[114.7939,2.2295],[114.7882,2.2254],[114.7858,2.2141],[114.7858,2.2027],[114.7839,2.2001],[114.771,2.1954],[114.7631,2.1971],[114.7552,2.1947],[114.7496,2.195],[114.7402,2.1922],[114.738,2.1857],[114.741,2.181],[114.7387,2.1764],[114.7394,2.1698],[114.737,2.1678],[114.7338,2.1605],[114.7351,2.1539],[114.7325,2.1517],[114.7325,2.1461],[114.7359,2.1427],[114.7371,2.1337],[114.7413,2.1342],[114.7531,2.1394],[114.7582,2.1427],[114.7778,2.1452],[114.7823,2.1447],[114.7933,2.146],[114.7969,2.1436],[114.8028,2.1349],[114.8097,2.1351],[114.8186,2.1277],[114.8193,2.1156],[114.8157,2.1074],[114.8104,2.0981],[114.8053,2.0958],[114.7973,2.0878],[114.8014,2.0791],[114.8043,2.0781],[114.8075,2.0724],[114.809,2.0632],[114.7996,2.0613],[114.7945,2.0562],[114.7953,2.0442],[114.8015,2.0415],[114.8017,2.0368],[114.8051,2.0356],[114.8078,2.0241],[114.8118,2.0229],[114.8153,2.0272],[114.8267,2.0278],[114.8384,2.0358],[114.85,2.0414],[114.8592,2.0437],[114.8656,2.0357],[114.8697,2.0327],[114.8769,2.0327],[114.8855,2.0263],[114.8868,2.0209],[114.8834,2.0182],[114.8741,2.0156],[114.8723,2.0097],[114.8735,2.0057],[114.8737,1.9954],[114.8712,1.9922],[114.8688,1.9844],[114.863,1.9827],[114.8585,1.9755],[114.8528,1.9726],[114.8507,1.9647],[114.8523,1.9531],[114.8543,1.9494],[114.8524,1.9437],[114.8607,1.9368],[114.8638,1.9387],[114.8674,1.9347],[114.8676,1.9306],[114.8744,1.929],[114.8814,1.9199],[114.8826,1.9158],[114.8781,1.9121],[114.8706,1.9101],[114.8691,1.9035],[114.8664,1.9008],[114.8603,1.8998],[114.8556,1.8948],[114.8445,1.8945],[114.8409,1.8932],[114.8354,1.8951],[114.8194,1.8922],[114.8179,1.8782],[114.814,1.8774],[114.8061,1.8721],[114.804,1.8658],[114.7984,1.8602],[114.7996,1.853],[114.7918,1.8465],[114.7797,1.849],[114.7777,1.8507],[114.7711,1.85],[114.7681,1.8569],[114.7592,1.8604],[114.7581,1.8635],[114.7519,1.867],[114.7456,1.8689],[114.7357,1.8653],[114.7341,1.8604],[114.7295,1.8577],[114.7184,1.8559],[114.7189,1.8522],[114.727,1.8447],[114.7279,1.8338],[114.7204,1.8285],[114.7182,1.824],[114.7149,1.8247],[114.711,1.8187],[114.7065,1.8202],[114.7026,1.8144],[114.7027,1.811],[114.6975,1.8091],[114.6962,1.8062],[114.7089,1.7965],[114.709,1.7928],[114.7151,1.7841],[114.7145,1.7715],[114.7115,1.7685],[114.7065,1.7587],[114.711,1.7501],[114.7103,1.7373],[114.7127,1.7327],[114.7175,1.7297],[114.7189,1.7203],[114.7177,1.7133],[114.7115,1.7066],[114.7114,1.6998],[114.7133,1.696],[114.7137,1.6702],[114.7112,1.6638],[114.7105,1.6544],[114.7083,1.6444],[114.7081,1.6376],[114.7012,1.6361],[114.693,1.6325],[114.6898,1.628],[114.6901,1.6225],[114.6791,1.6084],[114.6759,1.6078],[114.6683,1.6006],[114.6554,1.5994],[114.6516,1.5895],[114.6376,1.5889],[114.6228,1.5782],[114.6157,1.5776],[114.6103,1.5741],[114.6092,1.5656],[114.6116,1.5588],[114.6058,1.551],[114.605,1.5416],[114.5999,1.5325],[114.6028,1.5281],[114.6094,1.5247],[114.6164,1.5159],[114.6121,1.5105],[114.6121,1.5061],[114.6055,1.5],[114.6072,1.4879],[114.6011,1.4856],[114.5916,1.4741],[114.5898,1.4647],[114.5898,1.458],[114.5879,1.4565],[114.5869,1.4474],[114.5848,1.4444],[114.5769,1.4435],[114.5723,1.4392],[114.5696,1.4296],[114.5666,1.4277],[114.5676,1.4221],[114.5754,1.4141],[114.5746,1.408],[114.5768,1.3991],[114.5756,1.394],[114.5797,1.3911],[114.5901,1.3952],[114.5996,1.3945],[114.6025,1.3819],[114.607,1.3687],[114.6177,1.3643],[114.6326,1.3639],[114.6337,1.3607],[114.6383,1.3588],[114.6546,1.3562],[114.6594,1.3571],[114.6673,1.354],[114.677,1.352],[114.6815,1.3528],[114.6885,1.3591],[114.6925,1.3588],[114.6999,1.354],[114.7015,1.3429],[114.7041,1.337],[114.7103,1.3359],[114.7145,1.3325],[114.7171,1.3245],[114.7256,1.3105],[114.7231,1.3003],[114.7202,1.2959],[114.7207,1.2906],[114.7159,1.2782],[114.7174,1.2728],[114.7273,1.264],[114.733,1.2643],[114.7503,1.2566],[114.7578,1.2548],[114.7575,1.2478],[114.7655,1.2367],[114.7774,1.2278],[114.7864,1.2154],[114.7966,1.2043],[114.8096,1.1931],[114.8289,1.1826],[114.8396,1.1725],[114.8483,1.168],[114.8543,1.1709],[114.8534,1.1761],[114.8588,1.194],[114.8702,1.1994],[114.8779,1.2088],[114.8851,1.2122],[114.8961,1.2094],[114.9078,1.2015],[114.9202,1.1951],[114.9325,1.1803],[114.9362,1.1786],[114.9453,1.18],[114.9647,1.1866],[114.9764,1.1937],[114.9795,1.1927],[114.9886,1.1863],[114.9903,1.1829],[114.9891,1.169],[114.9903,1.1664],[114.9891,1.1573],[114.9909,1.1538],[114.9994,1.1533],[115.0017,1.1496],[115.0016,1.1437],[115.0068,1.1273],[115.01,1.1233],[115.0156,1.1208],[115.0267,1.1203],[115.0401,1.1157],[115.0455,1.116],[115.0604,1.1228],[115.0705,1.12],[115.0768,1.12],[115.0796,1.116],[115.0933,1.1174],[115.1007,1.1206],[115.1112,1.1234],[115.1186,1.1294],[115.1229,1.1294],[115.135,1.1226],[115.142,1.116],[115.1473,1.1189],[115.1735,1.116],[115.1756,1.1137],[115.1779,1.1038],[115.1827,1.1026],[115.1861,1.0986],[115.1866,1.0932],[115.1898,1.0878],[115.1861,1.0827],[115.1868,1.0789],[115.1844,1.0748],[115.1855,1.0677],[115.1964,1.0642],[115.2003,1.0619],[115.2151,1.0602],[115.2241,1.0577],[115.23,1.0582],[115.2362,1.0551],[115.241,1.0508],[115.2524,1.0466],[115.2598,1.0475],[115.2657,1.0437],[115.2694,1.0463],[115.2809,1.048],[115.288,1.047],[115.2939,1.0497],[115.2996,1.0648],[115.3166,1.0594],[115.3246,1.0623],[115.3423,1.0607],[115.3579,1.0635],[115.3645,1.0659],[115.3715,1.072],[115.3709,1.0777],[115.3733,1.0814],[115.3772,1.0929],[115.3784,1.0995],[115.383,1.1029],[115.3939,1.105],[115.4015,1.1126],[115.4021,1.1171],[115.4109,1.1277],[115.4084,1.137],[115.4103,1.14],[115.4182,1.144],[115.4191,1.1482],[115.4154,1.1603],[115.4091,1.1658],[115.4063,1.1728],[115.4069,1.1848],[115.4082,1.1903],[115.4112,1.1931],[115.4175,1.1925],[115.4206,1.1982],[115.4212,1.2076],[115.4263,1.2185],[115.4303,1.224],[115.4364,1.2285],[115.4639,1.2394],[115.4917,1.2542],[115.5043,1.2571],[115.5385,1.2625],[115.5659,1.2697],[115.576,1.2737],[115.586,1.2791],[115.6023,1.2779],[115.6212,1.284],[115.6461,1.2841],[115.6799,1.2743],[115.7126,1.2657],[115.7207,1.2888],[115.7437,1.3198],[115.7618,1.3382],[115.7651,1.3493],[115.7723,1.3592],[115.7857,1.3623],[115.8087,1.3749],[115.821,1.3716],[115.8357,1.3758],[115.8379,1.3832],[115.8516,1.3959],[115.858,1.4071],[115.8533,1.4218],[115.8513,1.4318],[115.8557,1.4377],[115.8633,1.4427],[115.8862,1.4541],[115.9113,1.4777],[115.9269,1.4802],[115.9354,1.4839],[115.9502,1.489],[115.9552,1.4924],[115.9603,1.508],[115.9636,1.5244],[115.9698,1.5304],[115.9774,1.5336],[115.9875,1.5323],[115.9976,1.5288],[116.0098,1.5282],[116.014,1.5366],[116.0226,1.5408],[116.024,1.5496],[116.0264,1.5532],[116.0335,1.5532],[116.0393,1.557],[116.0421,1.5818],[116.0422,1.5894],[116.0344,1.5994],[116.0359,1.6089],[116.0435,1.6168],[116.0497,1.6217],[116.0526,1.6263],[116.0581,1.6287],[116.0655,1.6293],[116.0664,1.6347],[116.0655,1.6438],[116.071,1.6532],[116.0912,1.6616],[116.1055,1.665],[116.1178,1.6589],[116.1282,1.6625],[116.1387,1.7062],[116.1491,1.7197],[116.1536,1.735],[116.1582,1.7482],[116.1592,1.7634],[116.1606,1.7693],[116.1665,1.7769],[116.1678,1.7885],[116.176,1.8097],[116.1845,1.8407],[116.1857,1.8448],[116.1767,1.8662],[116.1772,1.8825],[116.1749,1.8973],[116.1854,1.9245],[116.1893,1.9366],[116.1964,1.9519],[116.1942,1.9728],[116.1954,1.9858],[116.201,1.992],[116.2067,1.9958],[116.2194,2.0024],[116.2298,2.0134],[116.2311,2.0281],[116.2309,2.0446],[116.2259,2.0551],[116.2178,2.0633],[116.2216,2.0796],[116.2216,2.0951],[116.232,2.0983],[116.2585,2.1084],[116.2397,2.1199],[116.2284,2.1333],[116.2088,2.1405],[116.1854,2.1466],[116.1695,2.1415],[116.157,2.1328],[116.1457,2.1523],[116.13,2.1676],[116.1103,2.1712],[116.0954,2.1705],[116.0798,2.1648],[116.0678,2.1549],[116.0522,2.1506],[116.0342,2.1734],[116.0174,2.1925],[115.9972,2.2285],[115.9904,2.2465],[115.9913,2.2534],[115.9893,2.2608],[115.9959,2.2668],[116.0024,2.2617],[116.0289,2.2534],[116.041,2.2631],[116.0531,2.283],[116.0538,2.2937],[116.0607,2.3034],[116.0597,2.3135],[116.0785,2.3342],[116.0894,2.351],[116.1101,2.3579],[116.105,2.3656],[116.1043,2.3745],[116.1057,2.3838],[116.1126,2.3914],[116.1269,2.3908],[116.1326,2.3917],[116.1473,2.4008],[116.1556,2.3988],[116.1612,2.4005],[116.1658,2.406],[116.1719,2.4013],[116.1823,2.4085],[116.1922,2.426],[116.1966,2.4409],[116.2268,2.4815],[116.2336,2.4886],[116.251,2.489],[116.2553,2.4799],[116.2665,2.4793],[116.2733,2.4892],[116.2881,2.5213],[116.2937,2.532],[116.2956,2.5419],[116.3012,2.545],[116.3043,2.5536],[116.3067,2.5654],[116.3148,2.5784],[116.3144,2.5916],[116.3235,2.597],[116.3216,2.6174],[116.3253,2.6298],[116.3241,2.6466],[116.3144,2.6643],[116.3241,2.68],[116.3253,2.6905],[116.3328,2.6992],[116.3451,2.7042],[116.3606,2.7129],[116.3656,2.7215],[116.3749,2.7333],[116.386,2.7438],[116.4021,2.7544],[116.4046,2.7649],[116.4108,2.7698],[116.4232,2.7742],[116.4306,2.7798],[116.43,2.7921],[116.4344,2.8076],[116.4436,2.8175],[116.4529,2.8231],[116.4938,2.8287],[116.4957,2.8355],[116.5056,2.8405],[116.526,2.8578],[116.5421,2.8702],[116.5691,2.8854],[116.5812,2.89],[116.583,2.9105],[116.5864,2.9173],[116.6015,2.9214],[116.6082,2.9262],[116.6104,2.9329],[116.6085,2.9483],[116.6159,2.9507],[116.6236,2.9564],[116.635,2.9703],[116.6392,2.9742],[116.6555,2.973],[116.6578,2.9761],[116.6611,3.0049],[116.6672,3.0074],[116.6791,3.0179],[116.6945,3.0232],[116.7131,3.0263],[116.7311,3.03],[116.7422,3.0356],[116.7451,3.0428],[116.7475,3.0552],[116.7479,3.0682],[116.7423,3.0831],[116.734,3.0969],[116.7245,3.1046],[116.7259,3.1132],[116.7369,3.1319],[116.7403,3.1468],[116.7442,3.153],[116.742,3.1702],[116.7449,3.1709],[116.7576,3.1681],[116.7687,3.1691],[116.7761,3.1765],[116.7861,3.1797],[116.795,3.1918],[116.8053,3.1996],[116.806,3.2063],[116.8053,3.2148],[116.8078,3.2236],[116.808,3.2314],[116.8036,3.2363],[116.8015,3.2571],[116.803,3.2605],[116.8062,3.2804],[116.8049,3.2881],[116.7994,3.2978],[116.7915,3.305],[116.791,3.3105],[116.7865,3.3222],[116.7781,3.3358],[116.7733,3.3478],[116.7752,3.3556],[116.7704,3.359],[116.7586,3.3737],[116.7533,3.3767],[116.7427,3.3859],[116.7359,3.3949],[116.7375,3.4064],[116.7354,3.4089],[116.7272,3.4107],[116.7172,3.4166],[116.7062,3.4264],[116.7033,3.43],[116.7078,3.4413],[116.7071,3.4516],[116.7019,3.4599],[116.6936,3.4698],[116.6954,3.4771],[116.7023,3.4808],[116.7056,3.4862],[116.7141,3.4895],[116.7206,3.4879],[116.7279,3.4934],[116.7266,3.5002],[116.7282,3.5076],[116.7311,3.5103],[116.729,3.5149],[116.7349,3.5181],[116.7346,3.5321],[116.7381,3.5376],[116.7431,3.5493],[116.737,3.5555],[116.7432,3.5627],[116.7441,3.5689],[116.7552,3.5742],[116.7537,3.5791],[116.759,3.5807],[116.7614,3.5879],[116.7639,3.5962],[116.7691,3.6048],[116.77,3.6109],[116.7666,3.6211],[116.7604,3.6261],[116.7634,3.6357],[116.7612,3.6419]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.6292,2.7978],[117.6298,2.7993],[117.6192,2.8084],[117.6118,2.8115],[117.6101,2.8096],[117.6128,2.8037],[117.6165,2.8011],[117.6292,2.7978]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.6492,2.8005],[117.6429,2.8088],[117.6366,2.8118],[117.6289,2.8092],[117.6343,2.8047],[117.6443,2.8009],[117.6492,2.8005]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.3717,2.8267],[117.3697,2.8309],[117.3654,2.8284],[117.3642,2.8164],[117.3699,2.816],[117.3737,2.823],[117.3717,2.8267]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.6921,2.8357],[117.7009,2.8394],[117.7001,2.8438],[117.6907,2.8512],[117.6804,2.85],[117.6742,2.8466],[117.6576,2.8352],[117.6493,2.8237],[117.6414,2.8152],[117.6476,2.8069],[117.6559,2.7985],[117.6775,2.7965],[117.6908,2.7989],[117.7006,2.8039],[117.71,2.8057],[117.7317,2.8057],[117.7352,2.8095],[117.7363,2.816],[117.7277,2.8267],[117.722,2.8261],[117.7195,2.8309],[117.7065,2.8368],[117.7009,2.8376],[117.6921,2.8357]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.5707,2.8485],[117.5688,2.855],[117.5722,2.8581],[117.5632,2.8644],[117.5608,2.8613],[117.5667,2.8509],[117.5707,2.8485]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.459,2.8897],[117.4524,2.8922],[117.4427,2.8884],[117.4359,2.8821],[117.4357,2.8747],[117.4397,2.8697],[117.4485,2.8682],[117.4545,2.8584],[117.4563,2.8525],[117.4616,2.8485],[117.4673,2.8524],[117.4641,2.857],[117.4653,2.8608],[117.4692,2.8624],[117.4734,2.8602],[117.4754,2.8549],[117.4801,2.8518],[117.4877,2.8516],[117.4958,2.8487],[117.5006,2.8442],[117.5012,2.8554],[117.5077,2.8564],[117.5113,2.8538],[117.5116,2.8496],[117.5082,2.8449],[117.5129,2.8439],[117.5151,2.8508],[117.5143,2.8568],[117.5189,2.8585],[117.5217,2.8706],[117.5216,2.876],[117.5169,2.8855],[117.5091,2.8884],[117.4983,2.8839],[117.4904,2.8826],[117.4828,2.8762],[117.4789,2.8714],[117.4744,2.8715],[117.4682,2.8835],[117.459,2.8897]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.5809,2.9033],[117.5738,2.9046],[117.5629,2.9085],[117.5464,2.908],[117.5436,2.8992],[117.5458,2.8915],[117.5509,2.8922],[117.5521,2.8873],[117.5594,2.8854],[117.5661,2.8868],[117.5709,2.8836],[117.5752,2.8844],[117.5793,2.8886],[117.5854,2.8887],[117.5922,2.8709],[117.5942,2.86],[117.5994,2.8604],[117.6191,2.8549],[117.6292,2.8494],[117.6346,2.8488],[117.6384,2.8566],[117.6473,2.8584],[117.657,2.8571],[117.6652,2.8532],[117.6748,2.8563],[117.684,2.8615],[117.7044,2.8594],[117.7086,2.8605],[117.716,2.8685],[117.7187,2.8898],[117.7126,2.8956],[117.6907,2.8945],[117.6715,2.895],[117.6534,2.8926],[117.6351,2.8964],[117.6186,2.9021],[117.6054,2.9042],[117.5874,2.9044],[117.5809,2.9033]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.5311,2.9043],[117.538,2.9072],[117.5384,2.9101],[117.5272,2.9117],[117.5174,2.91],[117.5188,2.9064],[117.5311,2.9043]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.571,2.913],[117.5744,2.9177],[117.5666,2.9186],[117.5611,2.9173],[117.5611,2.9127],[117.571,2.913]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.6055,2.9188],[117.6022,2.9228],[117.593,2.9188],[117.6055,2.9188]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.6918,2.9318],[117.6839,2.9345],[117.6625,2.9277],[117.6562,2.9267],[117.6474,2.9274],[117.6394,2.9267],[117.6179,2.922],[117.6056,2.9174],[117.589,2.9148],[117.581,2.9093],[117.5949,2.9064],[117.61,2.9078],[117.6152,2.9075],[117.6428,2.9019],[117.6588,2.9015],[117.6761,2.9043],[117.6965,2.9027],[117.7065,2.9045],[117.7113,2.9068],[117.7124,2.9137],[117.7035,2.93],[117.7012,2.9313],[117.6918,2.9318]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.5274,2.9036],[117.5195,2.9049],[117.5141,2.9104],[117.4911,2.9194],[117.4845,2.9231],[117.4731,2.9353],[117.4699,2.9354],[117.4585,2.931],[117.4564,2.928],[117.4545,2.9196],[117.4483,2.9154],[117.4507,2.9049],[117.4458,2.9018],[117.4402,2.9033],[117.4345,2.9074],[117.4266,2.9026],[117.4219,2.9034],[117.4142,2.9089],[117.4094,2.9047],[117.4156,2.9009],[117.4166,2.8933],[117.413,2.885],[117.4088,2.8834],[117.4005,2.8866],[117.4,2.8772],[117.3909,2.871],[117.3924,2.8682],[117.3895,2.8539],[117.3952,2.8567],[117.402,2.8568],[117.4096,2.8547],[117.412,2.8567],[117.4086,2.8688],[117.4121,2.8698],[117.418,2.8654],[117.4204,2.8576],[117.4318,2.8585],[117.4417,2.8675],[117.4351,2.8747],[117.4351,2.882],[117.4461,2.8911],[117.4535,2.8929],[117.4572,2.8923],[117.4689,2.8837],[117.4741,2.8726],[117.478,2.872],[117.4888,2.8829],[117.4968,2.8847],[117.5041,2.8885],[117.5119,2.8898],[117.5188,2.8852],[117.5232,2.8745],[117.5207,2.8601],[117.5231,2.8556],[117.5295,2.8534],[117.5389,2.8524],[117.5435,2.8427],[117.5466,2.8446],[117.5491,2.8591],[117.5513,2.8622],[117.5567,2.8641],[117.5581,2.8675],[117.5624,2.8676],[117.5645,2.8642],[117.5729,2.8604],[117.5694,2.8537],[117.5742,2.8462],[117.5803,2.8448],[117.5877,2.8408],[117.5943,2.8346],[117.61,2.8217],[117.6164,2.8193],[117.6261,2.8181],[117.6387,2.8194],[117.6425,2.8218],[117.6515,2.836],[117.6593,2.8421],[117.6601,2.8468],[117.6508,2.8537],[117.6431,2.8536],[117.6372,2.847],[117.6308,2.8459],[117.623,2.8486],[117.6132,2.8538],[117.6023,2.8549],[117.5951,2.8575],[117.5919,2.8618],[117.5899,2.8723],[117.5859,2.8867],[117.5803,2.8876],[117.5762,2.8835],[117.5686,2.8829],[117.5648,2.8861],[117.5575,2.8844],[117.552,2.8867],[117.5509,2.8909],[117.5456,2.8901],[117.5425,2.901],[117.544,2.9064],[117.539,2.9066],[117.5319,2.9034],[117.5274,2.9036]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.3704,2.9379],[117.3738,2.9419],[117.373,2.9461],[117.3669,2.9493],[117.3639,2.9417],[117.3704,2.9379]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.4466,2.9503],[117.4409,2.9526],[117.4395,2.9462],[117.4336,2.9475],[117.43,2.9503],[117.4281,2.9428],[117.4223,2.9412],[117.4174,2.9343],[117.4183,2.93],[117.4243,2.9223],[117.4276,2.9202],[117.4258,2.9136],[117.4202,2.9085],[117.4245,2.9047],[117.4324,2.9088],[117.4375,2.9087],[117.4423,2.9047],[117.4459,2.9046],[117.4481,2.9096],[117.4465,2.9153],[117.4536,2.9216],[117.4564,2.9345],[117.4484,2.9404],[117.4474,2.9469],[117.4531,2.9477],[117.4531,2.9538],[117.4466,2.9503]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.4626,2.9532],[117.4553,2.9552],[117.4564,2.9498],[117.4529,2.9467],[117.4483,2.9467],[117.4486,2.9412],[117.4558,2.9355],[117.4668,2.9394],[117.4739,2.9373],[117.4809,2.9298],[117.4938,2.9252],[117.4998,2.9183],[117.507,2.9156],[117.5155,2.915],[117.5237,2.916],[117.5405,2.9123],[117.5508,2.9134],[117.5659,2.9204],[117.5731,2.9266],[117.5798,2.928],[117.5808,2.9333],[117.5713,2.9355],[117.5708,2.9392],[117.5733,2.9452],[117.5627,2.9481],[117.559,2.9504],[117.5555,2.9464],[117.5512,2.9463],[117.5347,2.9422],[117.5315,2.9423],[117.5248,2.9375],[117.5202,2.9386],[117.505,2.939],[117.4977,2.9459],[117.4901,2.9459],[117.4878,2.9514],[117.4803,2.9544],[117.4626,2.9532]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.5119,2.9484],[117.5073,2.9515],[117.4961,2.9552],[117.4877,2.9536],[117.4889,2.9475],[117.4971,2.9472],[117.5047,2.9404],[117.5114,2.9392],[117.5154,2.9404],[117.5141,2.9471],[117.5119,2.9484]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.479,2.9586],[117.4872,2.9558],[117.4931,2.9602],[117.4815,2.9622],[117.479,2.9586]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.4535,2.9556],[117.4492,2.9597],[117.4308,2.9655],[117.4208,2.9657],[117.409,2.9629],[117.4067,2.9568],[117.3983,2.9546],[117.3954,2.9562],[117.3866,2.954],[117.3811,2.9549],[117.3765,2.9597],[117.3721,2.9598],[117.3692,2.9557],[117.3695,2.9493],[117.3738,2.9474],[117.3748,2.9398],[117.3681,2.9345],[117.3625,2.9375],[117.3621,2.9425],[117.3654,2.9478],[117.3622,2.954],[117.356,2.9547],[117.3514,2.9498],[117.3481,2.942],[117.3481,2.9346],[117.3455,2.9178],[117.3436,2.912],[117.3364,2.9017],[117.3275,2.8951],[117.3343,2.8911],[117.3382,2.8865],[117.3397,2.8818],[117.3388,2.8688],[117.3404,2.8635],[117.3466,2.8544],[117.3577,2.8452],[117.3598,2.8528],[117.3601,2.8599],[117.3621,2.8667],[117.3667,2.872],[117.3721,2.8743],[117.3882,2.8741],[117.3942,2.8764],[117.3972,2.8813],[117.3985,2.8872],[117.4013,2.89],[117.4081,2.8861],[117.4132,2.8892],[117.414,2.8988],[117.4075,2.9038],[117.4066,2.9063],[117.4121,2.9115],[117.4192,2.9096],[117.426,2.9155],[117.4264,2.9194],[117.422,2.9228],[117.4166,2.9304],[117.416,2.9357],[117.4241,2.9467],[117.4247,2.951],[117.4351,2.9537],[117.4352,2.9473],[117.4386,2.9471],[117.4407,2.954],[117.4437,2.9553],[117.4482,2.9514],[117.4535,2.9556]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.6661,2.9877],[117.6554,2.9873],[117.636,2.9784],[117.6319,2.9785],[117.6167,2.9818],[117.6123,2.9817],[117.6032,2.978],[117.6025,2.9755],[117.5964,2.9727],[117.5892,2.974],[117.5768,2.9617],[117.5637,2.9539],[117.5637,2.9491],[117.5746,2.9459],[117.5754,2.9432],[117.5719,2.9386],[117.5728,2.9361],[117.579,2.9355],[117.583,2.9322],[117.5827,2.9283],[117.5715,2.9237],[117.5721,2.9206],[117.5801,2.9208],[117.5982,2.9253],[117.617,2.926],[117.6435,2.9339],[117.6564,2.9346],[117.6659,2.9366],[117.6802,2.9416],[117.6914,2.9446],[117.6951,2.9477],[117.6953,2.9518],[117.6919,2.9557],[117.6828,2.9615],[117.6625,2.9629],[117.6594,2.9581],[117.6508,2.9513],[117.6506,2.9548],[117.655,2.9624],[117.6597,2.9661],[117.6671,2.9674],[117.6703,2.9694],[117.6713,2.9763],[117.6661,2.9877]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.5468,2.9575],[117.5599,2.9645],[117.5639,2.9686],[117.5636,2.9753],[117.5559,2.9868],[117.5464,2.9909],[117.5454,2.9876],[117.5495,2.9818],[117.5494,2.9776],[117.5424,2.9694],[117.5366,2.9581],[117.5313,2.9563],[117.5301,2.96],[117.5302,2.9693],[117.5205,2.9725],[117.5163,2.9777],[117.5136,2.9717],[117.5047,2.9699],[117.5023,2.9642],[117.5034,2.9614],[117.5149,2.9526],[117.521,2.9405],[117.524,2.9408],[117.5275,2.9454],[117.5468,2.9575]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.6357,2.9829],[117.6388,2.987],[117.636,2.9906],[117.6305,2.993],[117.6229,2.9915],[117.6233,2.9853],[117.6315,2.9825],[117.6357,2.9829]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.4563,2.9831],[117.4614,2.9864],[117.4626,2.9921],[117.4574,2.996],[117.4526,2.9909],[117.4507,2.9852],[117.4563,2.9831]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.4985,2.9961],[117.5078,3.0007],[117.5126,3.0065],[117.512,3.0097],[117.499,2.9984],[117.4985,2.9961]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.516,3.004],[117.5245,3.0089],[117.52,3.0104],[117.5149,3.0069],[117.516,3.004]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.479,2.9586],[117.4797,2.9622],[117.4851,2.9628],[117.499,2.961],[117.5048,2.9712],[117.5128,2.9722],[117.5118,2.9769],[117.5183,2.9775],[117.5224,2.9726],[117.5301,2.9711],[117.5323,2.967],[117.5315,2.9591],[117.5341,2.9577],[117.5393,2.967],[117.5402,2.9713],[117.5438,2.9729],[117.5475,2.9786],[117.5474,2.9815],[117.5425,2.9861],[117.5442,2.9922],[117.548,2.9931],[117.5573,2.9899],[117.5571,2.9984],[117.5589,3.0057],[117.5556,3.0107],[117.5424,3.0118],[117.5358,3.0106],[117.5239,3.0065],[117.5146,3.0008],[117.4996,2.9934],[117.4809,2.982],[117.4789,2.9703],[117.4763,2.9663],[117.4636,2.9683],[117.4556,2.966],[117.4501,2.9612],[117.4547,2.9567],[117.4695,2.9557],[117.479,2.9586]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.4933,2.9998],[117.4948,3.0038],[117.4884,3.0162],[117.4838,3.0161],[117.4834,3.0089],[117.4769,3.0009],[117.4732,2.9995],[117.4649,3.0033],[117.4602,3.0025],[117.459,2.9966],[117.4627,2.9939],[117.4636,2.9862],[117.457,2.9829],[117.456,2.9769],[117.4635,2.9732],[117.4649,2.9709],[117.4732,2.9679],[117.4773,2.9687],[117.4777,2.9792],[117.4816,2.9866],[117.4864,2.9883],[117.4906,2.9928],[117.4933,2.9998]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.5107,3.0143],[117.5032,3.0166],[117.5003,3.0194],[117.4946,3.0286],[117.4881,3.0289],[117.4876,3.0189],[117.4959,3.005],[117.4956,2.9967],[117.512,3.0121],[117.5107,3.0143]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.4107,3.0187],[117.4162,3.0231],[117.418,3.03],[117.412,3.0323],[117.4038,3.0398],[117.3972,3.0385],[117.4004,3.0309],[117.4074,3.019],[117.4107,3.0187]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.622,3.059],[117.602,3.0583],[117.5942,3.0564],[117.5743,3.0461],[117.5636,3.0487],[117.5552,3.0563],[117.5535,3.0556],[117.5552,3.0412],[117.5529,3.0346],[117.5482,3.0344],[117.5423,3.0395],[117.5374,3.0407],[117.5283,3.0388],[117.5229,3.0409],[117.5209,3.0384],[117.5208,3.0318],[117.5236,3.029],[117.5182,3.0204],[117.5198,3.0158],[117.5276,3.0159],[117.5411,3.0179],[117.5536,3.0163],[117.5589,3.013],[117.565,3.0057],[117.5668,2.9942],[117.5714,2.9831],[117.5768,2.9821],[117.5794,2.9865],[117.603,3.0097],[117.6025,3.0128],[117.5937,3.0162],[117.6075,3.0166],[117.6137,3.0154],[117.6197,3.0194],[117.6188,3.0257],[117.6231,3.0353],[117.6237,3.0411],[117.6159,3.0471],[117.6239,3.0468],[117.6276,3.0507],[117.622,3.059]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.4415,3.0553],[117.448,3.0572],[117.4462,3.0619],[117.4415,3.0553]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.5166,3.0582],[117.5113,3.0593],[117.5071,3.0644],[117.4995,3.0617],[117.4967,3.0582],[117.5027,3.0529],[117.5034,3.0497],[117.5005,3.0411],[117.488,3.0418],[117.4857,3.0374],[117.4882,3.0319],[117.4948,3.0316],[117.5016,3.0223],[117.5081,3.0179],[117.5126,3.0213],[117.5179,3.0216],[117.5215,3.0285],[117.5198,3.033],[117.52,3.0393],[117.5287,3.0552],[117.5275,3.0584],[117.5166,3.0582]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.53,3.0679],[117.5214,3.0681],[117.4884,3.0637],[117.4809,3.0604],[117.472,3.0579],[117.4627,3.0541],[117.4506,3.0543],[117.4451,3.0535],[117.4371,3.0425],[117.4197,3.0302],[117.4185,3.0249],[117.414,3.019],[117.4065,3.0186],[117.4013,3.0286],[117.3992,3.0215],[117.3958,3.0163],[117.3851,3.0098],[117.3789,3.0043],[117.3792,2.9908],[117.377,2.9869],[117.3693,2.978],[117.3677,2.9723],[117.3604,2.9629],[117.3592,2.9574],[117.3634,2.9556],[117.3738,2.9616],[117.3775,2.9606],[117.3819,2.9564],[117.3927,2.9577],[117.4036,2.9576],[117.4055,2.9627],[117.4089,2.9651],[117.4204,2.9684],[117.4304,2.9683],[117.4401,2.9652],[117.451,2.9657],[117.4632,2.9715],[117.4555,2.9758],[117.4556,2.9814],[117.4519,2.9829],[117.451,2.9896],[117.4553,2.9952],[117.4457,2.9988],[117.446,3.0008],[117.4562,2.9976],[117.4595,3.005],[117.4651,3.0053],[117.4743,3.0021],[117.4782,3.0053],[117.481,3.0116],[117.4811,3.0161],[117.4849,3.0226],[117.4875,3.0313],[117.4847,3.0377],[117.4885,3.0436],[117.4987,3.0412],[117.5026,3.0518],[117.4956,3.0593],[117.5026,3.0649],[117.509,3.0652],[117.5128,3.0604],[117.5182,3.0589],[117.5262,3.0602],[117.5298,3.056],[117.5251,3.0451],[117.5269,3.0411],[117.538,3.0424],[117.5425,3.0414],[117.5496,3.0364],[117.5531,3.0399],[117.5506,3.0541],[117.5514,3.0597],[117.5492,3.0642],[117.5431,3.0678],[117.53,3.0679]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.4423,3.0582],[117.4471,3.0643],[117.4415,3.0647],[117.4423,3.0582]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.5447,3.0731],[117.5371,3.0778],[117.5327,3.0762],[117.5332,3.0725],[117.5447,3.0731]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.5062,3.0769],[117.5018,3.0786],[117.4979,3.0718],[117.5045,3.0698],[117.5118,3.0713],[117.5134,3.0767],[117.5062,3.0769]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.4603,3.0807],[117.448,3.0783],[117.4456,3.0729],[117.4544,3.074],[117.4603,3.0807]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.6383,3.0702],[117.6389,3.0744],[117.6293,3.0832],[117.623,3.0818],[117.6248,3.0768],[117.6298,3.0706],[117.6383,3.0702]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.5699,3.0511],[117.5887,3.0607],[117.5958,3.0629],[117.6189,3.0668],[117.6219,3.0689],[117.6231,3.0743],[117.6046,3.0832],[117.5938,3.0811],[117.5782,3.0802],[117.5702,3.0789],[117.5644,3.0761],[117.5514,3.0719],[117.5552,3.0655],[117.5673,3.0521],[117.5699,3.0511]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.4933,3.0837],[117.4896,3.0864],[117.4824,3.0826],[117.4696,3.082],[117.4647,3.0794],[117.458,3.0729],[117.4493,3.0677],[117.4509,3.0581],[117.4569,3.057],[117.4658,3.0608],[117.4709,3.0598],[117.4775,3.0634],[117.4815,3.0685],[117.488,3.0735],[117.4953,3.0741],[117.4964,3.0769],[117.4933,3.0837]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.5918,3.0844],[117.6042,3.0868],[117.6072,3.0894],[117.6063,3.0938],[117.6028,3.0958],[117.5934,3.097],[117.5805,3.0933],[117.5733,3.0899],[117.5743,3.0837],[117.5918,3.0844]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.5476,3.0925],[117.5388,3.0944],[117.5296,3.0977],[117.5161,3.0972],[117.5055,3.0928],[117.4987,3.0838],[117.5005,3.08],[117.507,3.0782],[117.5126,3.0783],[117.5198,3.0748],[117.5371,3.0792],[117.5511,3.0765],[117.5578,3.0773],[117.5674,3.0819],[117.5699,3.0892],[117.564,3.0933],[117.5476,3.0925]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.5485,3.0957],[117.5521,3.1011],[117.5449,3.1026],[117.5371,3.1015],[117.5411,3.0961],[117.5485,3.0957]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.5068,3.1015],[117.4961,3.1019],[117.4899,3.0963],[117.495,3.0922],[117.4986,3.0927],[117.5082,3.1003],[117.5068,3.1015]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.3885,3.0902],[117.3871,3.0929],[117.3811,3.0939],[117.3788,3.0968],[117.3766,3.1101],[117.372,3.1137],[117.3642,3.1124],[117.3625,3.1082],[117.3651,3.0902],[117.3668,3.0886],[117.3738,3.0899],[117.383,3.0866],[117.3845,3.0809],[117.3792,3.0778],[117.3716,3.0801],[117.3686,3.0785],[117.368,3.0723],[117.3651,3.0672],[117.3589,3.0657],[117.3553,3.0675],[117.3527,3.0759],[117.349,3.0775],[117.3472,3.0712],[117.3524,3.0612],[117.3519,3.0533],[117.3561,3.048],[117.3708,3.0484],[117.3779,3.0443],[117.3809,3.0498],[117.3781,3.0558],[117.393,3.061],[117.3964,3.0675],[117.3946,3.0722],[117.3958,3.0773],[117.4029,3.0773],[117.3998,3.0846],[117.401,3.089],[117.392,3.0883],[117.3885,3.0902]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.5248,3.109],[117.5299,3.1144],[117.5196,3.1134],[117.5248,3.109]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.5754,3.0984],[117.5842,3.1029],[117.589,3.1072],[117.5863,3.1127],[117.5818,3.1149],[117.5745,3.1117],[117.5625,3.1088],[117.5597,3.1057],[117.567,3.0975],[117.5754,3.0984]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.4589,3.1122],[117.4607,3.1148],[117.4527,3.1219],[117.4442,3.1206],[117.4413,3.1171],[117.4314,3.1092],[117.426,3.1076],[117.418,3.1073],[117.4068,3.1096],[117.4014,3.1078],[117.3973,3.1012],[117.3897,3.0952],[117.3897,3.0919],[117.3942,3.0904],[117.4027,3.0904],[117.4025,3.0842],[117.4071,3.0772],[117.3964,3.073],[117.3981,3.0644],[117.3952,3.0601],[117.3849,3.0557],[117.3853,3.0503],[117.3825,3.0457],[117.3829,3.0418],[117.3882,3.0387],[117.3912,3.0312],[117.3872,3.0269],[117.3866,3.0218],[117.3895,3.0168],[117.3966,3.0232],[117.3981,3.0285],[117.3951,3.0381],[117.4013,3.0426],[117.4135,3.0356],[117.4238,3.0361],[117.4324,3.046],[117.4383,3.0568],[117.4387,3.0676],[117.4468,3.0813],[117.4659,3.0929],[117.4775,3.0955],[117.4785,3.1016],[117.4708,3.1098],[117.4627,3.1154],[117.4589,3.1122]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.6,3.1268],[117.5921,3.1266],[117.584,3.123],[117.5814,3.1199],[117.5921,3.1131],[117.5952,3.1089],[117.6019,3.1061],[117.616,3.1093],[117.6199,3.1139],[117.6194,3.1186],[117.6121,3.1243],[117.6,3.1268]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.2295,3.1765],[117.2337,3.1807],[117.2362,3.1908],[117.2279,3.1885],[117.2202,3.1818],[117.2267,3.1794],[117.2295,3.1765]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.3059,3.2303],[117.299,3.2317],[117.2839,3.2294],[117.2779,3.2305],[117.2704,3.2298],[117.2709,3.2257],[117.2781,3.2098],[117.2825,3.2055],[117.2893,3.207],[117.2943,3.2145],[117.299,3.2173],[117.3059,3.2303]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.3787,3.2757],[117.3828,3.2815],[117.3815,3.2849],[117.3759,3.2791],[117.3787,3.2757]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.4553,3.2774],[117.4568,3.2796],[117.466,3.2852],[117.4709,3.2934],[117.469,3.3026],[117.4666,3.3056],[117.461,3.3054],[117.4583,3.3027],[117.4514,3.2853],[117.4492,3.2818],[117.4438,3.2785],[117.4383,3.2772],[117.4167,3.278],[117.3992,3.2748],[117.3928,3.2762],[117.3841,3.2808],[117.3798,3.2764],[117.3813,3.2708],[117.386,3.2714],[117.3965,3.2654],[117.4018,3.2595],[117.4085,3.2496],[117.4143,3.2478],[117.4202,3.2506],[117.423,3.2499],[117.4288,3.254],[117.4327,3.2605],[117.4445,3.2722],[117.4553,3.2774]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.3758,3.2803],[117.3816,3.2866],[117.3827,3.2913],[117.388,3.2996],[117.3862,3.3083],[117.3798,3.309],[117.3752,3.299],[117.3687,3.294],[117.3655,3.2868],[117.3667,3.2804],[117.3629,3.2788],[117.3594,3.272],[117.3549,3.2713],[117.3563,3.2667],[117.3601,3.2646],[117.363,3.254],[117.366,3.2545],[117.3705,3.2649],[117.3793,3.2712],[117.3753,3.2743],[117.3758,3.2803]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.514,3.3115],[117.5056,3.3207],[117.492,3.3262],[117.4797,3.3281],[117.4639,3.332],[117.4567,3.335],[117.4471,3.3405],[117.4423,3.3406],[117.4356,3.3373],[117.4223,3.3263],[117.4147,3.3212],[117.4027,3.3169],[117.3963,3.313],[117.3915,3.3145],[117.3876,3.3182],[117.3841,3.3173],[117.3828,3.3125],[117.3895,3.3059],[117.39,3.2992],[117.3835,3.2866],[117.3859,3.281],[117.3961,3.2763],[117.4027,3.2764],[117.4134,3.2791],[117.4361,3.2786],[117.4447,3.2801],[117.4492,3.2846],[117.4533,3.2963],[117.4574,3.3051],[117.4624,3.3081],[117.4695,3.3055],[117.4736,3.2972],[117.471,3.2869],[117.4668,3.2824],[117.4571,3.2762],[117.4611,3.2723],[117.47,3.2754],[117.4824,3.2754],[117.4926,3.2774],[117.4989,3.2749],[117.5023,3.2768],[117.5078,3.2748],[117.5165,3.2757],[117.5206,3.2811],[117.5243,3.2925],[117.5218,3.3012],[117.514,3.3115]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.4943,3.4067],[117.4905,3.4075],[117.4743,3.407],[117.4676,3.406],[117.455,3.4063],[117.4493,3.4034],[117.4481,3.3981],[117.4502,3.3787],[117.4497,3.3613],[117.4516,3.3491],[117.4552,3.3476],[117.4812,3.3447],[117.4876,3.3409],[117.4974,3.3416],[117.5033,3.3495],[117.5052,3.3589],[117.5021,3.3711],[117.5019,3.3866],[117.4993,3.4022],[117.4943,3.4067]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.3312,3.3796],[117.3298,3.3681],[117.3278,3.361],[117.3242,3.3584],[117.3187,3.3579],[117.3039,3.3689],[117.3132,3.3665],[117.3215,3.3606],[117.3243,3.3629],[117.3262,3.3764],[117.3295,3.3922],[117.3274,3.4002],[117.3236,3.4029],[117.3132,3.4069],[117.3068,3.4077],[117.3011,3.4106],[117.2988,3.4211],[117.2954,3.4253],[117.2898,3.4264],[117.2839,3.4234],[117.2853,3.4138],[117.2843,3.4098],[117.2788,3.4031],[117.2836,3.3932],[117.2796,3.3851],[117.2755,3.3812],[117.2429,3.3132],[117.2351,3.3211],[117.2309,3.3322],[117.22,3.3374],[117.2056,3.3408],[117.1982,3.3319],[117.1947,3.3306],[117.184,3.336],[117.1867,3.3433],[117.1732,3.3566],[117.1663,3.3583],[117.1651,3.3529],[117.1577,3.3498],[117.1493,3.3564],[117.1454,3.3496],[117.1355,3.3463],[117.1324,3.3422],[117.1259,3.3457],[117.1163,3.348],[117.1119,3.3465],[117.1097,3.3492],[117.1136,3.3529],[117.1101,3.3624],[117.0987,3.3624],[117.095,3.3645],[117.093,3.371],[117.0921,3.3862],[117.0903,3.3868],[117.0834,3.3961],[117.0784,3.4008],[117.0739,3.3961],[117.0664,3.3969],[117.0614,3.4048],[117.0467,3.4071],[117.0416,3.405],[117.0342,3.4053],[117.0299,3.4026],[117.0194,3.3996],[117.0177,3.3954],[117.0115,3.392],[116.9975,3.3894],[116.9891,3.39],[116.9836,3.3922],[116.9762,3.3885],[116.9608,3.385],[116.9555,3.3909],[116.931,3.3979],[116.9241,3.3988],[116.9161,3.3979],[116.9119,3.3933],[116.907,3.3913],[116.9019,3.3957],[116.8904,3.3928],[116.8809,3.3949],[116.8518,3.3861],[116.8472,3.3893],[116.8409,3.391],[116.8355,3.3906],[116.8341,3.3868],[116.8293,3.3841],[116.8196,3.3859],[116.8082,3.3799],[116.8063,3.3753],[116.7959,3.3743],[116.7856,3.3685],[116.7777,3.3687],[116.7763,3.3803],[116.7724,3.3837],[116.7701,3.3806],[116.7612,3.3781],[116.7562,3.3851],[116.7533,3.3767],[116.7586,3.3737],[116.7704,3.359],[116.7752,3.3556],[116.7733,3.3478],[116.7781,3.3358],[116.7865,3.3222],[116.791,3.3105],[116.7915,3.305],[116.7994,3.2978],[116.8049,3.2881],[116.8062,3.2804],[116.803,3.2605],[116.8015,3.2571],[116.8036,3.2363],[116.808,3.2314],[116.8078,3.2236],[116.8053,3.2148],[116.806,3.2063],[116.8053,3.1996],[116.795,3.1918],[116.7861,3.1797],[116.7761,3.1765],[116.7687,3.1691],[116.7576,3.1681],[116.7449,3.1709],[116.742,3.1702],[116.7442,3.153],[116.7403,3.1468],[116.7369,3.1319],[116.7259,3.1132],[116.7245,3.1046],[116.734,3.0969],[116.7423,3.0831],[116.7479,3.0682],[116.7475,3.0552],[116.7451,3.0428],[116.7422,3.0356],[116.7311,3.03],[116.7131,3.0263],[116.6945,3.0232],[116.6791,3.0179],[116.6672,3.0074],[116.6611,3.0049],[116.6578,2.9761],[116.6555,2.973],[116.6392,2.9742],[116.635,2.9703],[116.6236,2.9564],[116.6159,2.9507],[116.6085,2.9483],[116.6104,2.9329],[116.6082,2.9262],[116.6015,2.9214],[116.5864,2.9173],[116.583,2.9105],[116.5812,2.89],[116.5691,2.8854],[116.5421,2.8702],[116.526,2.8578],[116.5056,2.8405],[116.4957,2.8355],[116.4938,2.8287],[116.4529,2.8231],[116.4436,2.8175],[116.4344,2.8076],[116.43,2.7921],[116.4306,2.7798],[116.4232,2.7742],[116.4108,2.7698],[116.4046,2.7649],[116.4021,2.7544],[116.386,2.7438],[116.3749,2.7333],[116.3656,2.7215],[116.3606,2.7129],[116.3451,2.7042],[116.3328,2.6992],[116.3253,2.6905],[116.3241,2.68],[116.3144,2.6643],[116.3241,2.6466],[116.3253,2.6298],[116.3216,2.6174],[116.3235,2.597],[116.3144,2.5916],[116.3148,2.5784],[116.3067,2.5654],[116.3043,2.5536],[116.3012,2.545],[116.2956,2.5419],[116.2937,2.532],[116.2881,2.5213],[116.2733,2.4892],[116.2665,2.4793],[116.2553,2.4799],[116.251,2.489],[116.2336,2.4886],[116.2268,2.4815],[116.1966,2.4409],[116.1922,2.426],[116.1823,2.4085],[116.1719,2.4013],[116.1658,2.406],[116.1612,2.4005],[116.1556,2.3988],[116.1473,2.4008],[116.1326,2.3917],[116.1269,2.3908],[116.1126,2.3914],[116.1057,2.3838],[116.1043,2.3745],[116.105,2.3656],[116.1101,2.3579],[116.0894,2.351],[116.0785,2.3342],[116.0597,2.3135],[116.0607,2.3034],[116.0538,2.2937],[116.0531,2.283],[116.041,2.2631],[116.0289,2.2534],[116.0024,2.2617],[115.9959,2.2668],[115.9893,2.2608],[115.9913,2.2534],[115.9904,2.2465],[115.9972,2.2285],[116.0174,2.1925],[116.0342,2.1734],[116.0522,2.1506],[116.0678,2.1549],[116.0798,2.1648],[116.0954,2.1705],[116.1103,2.1712],[116.13,2.1676],[116.1457,2.1523],[116.157,2.1328],[116.1695,2.1415],[116.1854,2.1466],[116.2088,2.1405],[116.2284,2.1333],[116.2397,2.1199],[116.2585,2.1084],[116.2767,2.1046],[116.2925,2.1054],[116.2925,2.1243],[116.3107,2.122],[116.3217,2.1338],[116.3328,2.1488],[116.3502,2.1662],[116.3407,2.1828],[116.3202,2.1947],[116.3004,2.2128],[116.2896,2.2352],[116.2952,2.2388],[116.2998,2.249],[116.3034,2.2602],[116.311,2.2668],[116.3192,2.2776],[116.3304,2.2847],[116.3345,2.2893],[116.3437,2.2888],[116.3513,2.2918],[116.3912,2.2975],[116.4009,2.2965],[116.4091,2.3016],[116.417,2.3039],[116.4201,2.3016],[116.428,2.2891],[116.445,2.2866],[116.4546,2.2831],[116.4573,2.2793],[116.4613,2.2795],[116.4656,2.2833],[116.4714,2.2846],[116.4759,2.2887],[116.4781,2.2936],[116.4747,2.3019],[116.476,2.3166],[116.4852,2.3223],[116.4883,2.328],[116.4974,2.3354],[116.4996,2.3424],[116.5058,2.3479],[116.4983,2.3572],[116.5029,2.3742],[116.5006,2.3819],[116.4964,2.3833],[116.4903,2.3896],[116.4882,2.3974],[116.4901,2.4013],[116.4955,2.4029],[116.4928,2.4307],[116.494,2.4348],[116.4911,2.4445],[116.4962,2.4558],[116.5002,2.4568],[116.517,2.451],[116.5246,2.4472],[116.5349,2.4479],[116.5448,2.4544],[116.5507,2.4551],[116.5646,2.4527],[116.5679,2.4513],[116.57,2.4432],[116.5763,2.4362],[116.5908,2.427],[116.6071,2.4177],[116.6181,2.4171],[116.6285,2.4287],[116.6331,2.4484],[116.6557,2.4687],[116.6737,2.4843],[116.7125,2.5174],[116.7282,2.529],[116.7328,2.5295],[116.7397,2.5272],[116.7444,2.5168],[116.7751,2.4391],[116.7855,2.387],[116.796,2.3789],[116.8081,2.3829],[116.8226,2.3986],[116.8325,2.4281],[116.8412,2.4507],[116.8458,2.4606],[116.8643,2.4716],[116.8939,2.4785],[116.9159,2.4901],[116.9418,2.5074],[116.994,2.5176],[117.0237,2.5212],[117.0338,2.5277],[117.0396,2.5415],[117.0526,2.5661],[117.0613,2.5813],[117.07,2.5907],[117.0939,2.598],[117.1129,2.599],[117.1465,2.5953],[117.1651,2.5878],[117.2006,2.5841],[117.2286,2.5785],[117.2435,2.5766],[117.2584,2.5822],[117.2789,2.5972],[117.3032,2.6046],[117.3368,2.6046],[117.3629,2.599],[117.3863,2.5981],[117.4008,2.6066],[117.4141,2.5981],[117.4335,2.5787],[117.4444,2.563],[117.4601,2.5473],[117.4794,2.5413],[117.4949,2.5324],[117.4986,2.523],[117.5013,2.522],[117.5129,2.5232],[117.5396,2.5214],[117.547,2.5169],[117.5573,2.5147],[117.5607,2.5093],[117.5696,2.5021],[117.5755,2.5041],[117.588,2.5175],[117.5948,2.5202],[117.6088,2.5227],[117.6128,2.52],[117.6276,2.5044],[117.6389,2.4799],[117.6542,2.462],[117.6697,2.4481],[117.6765,2.4258],[117.6879,2.4063],[117.6962,2.4051],[117.7013,2.4017],[117.7086,2.3916],[117.7119,2.378],[117.7125,2.371],[117.7152,2.3695],[117.7167,2.3619],[117.7151,2.3574],[117.718,2.3547],[117.7212,2.3463],[117.7391,2.3382],[117.7443,2.334],[117.7469,2.3268],[117.7561,2.328],[117.759,2.3339],[117.7645,2.3325],[117.769,2.3336],[117.7711,2.3301],[117.7854,2.3301],[117.7912,2.3252],[117.8045,2.325],[117.8116,2.3264],[117.8153,2.3329],[117.8215,2.3407],[117.8214,2.3451],[117.8244,2.3482],[117.8246,2.3537],[117.8399,2.3742],[117.8638,2.3929],[117.8928,2.3984],[117.9067,2.3979],[117.9197,2.3929],[117.9327,2.3841],[117.9356,2.3902],[117.933,2.3978],[117.9346,2.4036],[117.9558,2.4156],[117.9587,2.4269],[117.9646,2.4273],[117.9708,2.4246],[117.9793,2.4265],[117.988,2.4341],[117.9807,2.4362],[117.9663,2.444],[117.9599,2.449],[117.9477,2.4603],[117.9375,2.4709],[117.9258,2.4847],[117.9149,2.4995],[117.9008,2.5212],[117.8952,2.5262],[117.887,2.5373],[117.8811,2.541],[117.87,2.553],[117.8621,2.5593],[117.8418,2.5834],[117.8333,2.5926],[117.829,2.5947],[117.8167,2.6047],[117.8147,2.6046],[117.8091,2.6108],[117.7997,2.6242],[117.7937,2.6359],[117.7898,2.649],[117.7887,2.6691],[117.7907,2.6809],[117.7919,2.6936],[117.7909,2.7178],[117.7876,2.729],[117.7848,2.7434],[117.7829,2.7478],[117.7785,2.7485],[117.7708,2.746],[117.7503,2.7523],[117.744,2.7521],[117.7432,2.7588],[117.7346,2.7661],[117.7323,2.7695],[117.7242,2.7714],[117.6994,2.7812],[117.691,2.7835],[117.6873,2.782],[117.682,2.7833],[117.6769,2.7824],[117.6724,2.7858],[117.659,2.7891],[117.6445,2.7917],[117.6362,2.7914],[117.6255,2.7938],[117.6152,2.7952],[117.6098,2.8031],[117.6021,2.8094],[117.5994,2.8143],[117.5807,2.8388],[117.5696,2.8434],[117.5635,2.8426],[117.5532,2.8367],[117.5417,2.8254],[117.5403,2.8226],[117.5432,2.8153],[117.5441,2.8077],[117.5397,2.8049],[117.5201,2.8161],[117.5155,2.8233],[117.5081,2.8254],[117.4926,2.821],[117.4859,2.8169],[117.4817,2.819],[117.4841,2.8344],[117.4758,2.8402],[117.4691,2.8372],[117.464,2.8318],[117.4591,2.8313],[117.4477,2.8326],[117.4442,2.84],[117.4493,2.8434],[117.4486,2.8366],[117.4508,2.8325],[117.4635,2.8325],[117.4687,2.8381],[117.4774,2.8414],[117.4852,2.8358],[117.483,2.8185],[117.485,2.8178],[117.4958,2.8246],[117.507,2.8266],[117.5154,2.825],[117.5203,2.8183],[117.5288,2.8138],[117.5387,2.8072],[117.5429,2.8073],[117.5408,2.8169],[117.5388,2.8207],[117.5397,2.8254],[117.5544,2.84],[117.5665,2.8457],[117.5637,2.8495],[117.5609,2.8575],[117.5557,2.8615],[117.5507,2.855],[117.5497,2.8459],[117.5444,2.8407],[117.5407,2.8416],[117.5376,2.8512],[117.5243,2.8519],[117.518,2.8576],[117.5163,2.8569],[117.5163,2.848],[117.5141,2.8434],[117.5098,2.841],[117.5062,2.8443],[117.5103,2.8491],[117.5104,2.8532],[117.5038,2.8557],[117.5027,2.8482],[117.4977,2.845],[117.4879,2.8503],[117.4806,2.8483],[117.4763,2.8508],[117.4721,2.86],[117.4659,2.859],[117.4678,2.8541],[117.4671,2.8489],[117.4608,2.8472],[117.456,2.8499],[117.4495,2.8642],[117.4402,2.8644],[117.4305,2.8565],[117.4203,2.857],[117.4178,2.8585],[117.4174,2.8643],[117.4134,2.868],[117.4132,2.8572],[117.4104,2.8536],[117.3966,2.8566],[117.3912,2.8509],[117.3883,2.8532],[117.3911,2.8684],[117.3786,2.8724],[117.3688,2.8689],[117.3651,2.8642],[117.3612,2.8429],[117.3624,2.8322],[117.3646,2.8287],[117.3712,2.8402],[117.3705,2.8306],[117.3717,2.8276],[117.378,2.8268],[117.373,2.8206],[117.3701,2.814],[117.3634,2.8156],[117.3627,2.8091],[117.3599,2.8004],[117.3554,2.7969],[117.3512,2.7976],[117.3472,2.8046],[117.3473,2.8133],[117.3427,2.8112],[117.3412,2.8053],[117.3371,2.8022],[117.3334,2.803],[117.3314,2.8092],[117.3311,2.8213],[117.3267,2.8195],[117.321,2.8107],[117.3226,2.8056],[117.329,2.797],[117.3342,2.7874],[117.3349,2.7783],[117.3289,2.7754],[117.3245,2.7823],[117.3208,2.7799],[117.306,2.752],[117.3033,2.7497],[117.2978,2.7498],[117.2918,2.7531],[117.2861,2.7519],[117.2755,2.7433],[117.2717,2.7432],[117.2659,2.7465],[117.2642,2.7531],[117.2711,2.7618],[117.2621,2.7631],[117.2598,2.7596],[117.2596,2.7429],[117.2521,2.7438],[117.2342,2.7539],[117.2263,2.7527],[117.22,2.7472],[117.2097,2.7453],[117.204,2.7514],[117.205,2.7554],[117.1978,2.7599],[117.1974,2.7632],[117.2054,2.7743],[117.2005,2.7755],[117.1914,2.7679],[117.1831,2.7648],[117.1766,2.7652],[117.178,2.7595],[117.1812,2.7551],[117.179,2.7507],[117.1684,2.7495],[117.1644,2.7466],[117.157,2.7368],[117.1535,2.7347],[117.1553,2.7235],[117.1513,2.7188],[117.1482,2.7196],[117.1335,2.7281],[117.1274,2.7342],[117.1217,2.7423],[117.1162,2.7455],[117.1148,2.75],[117.1076,2.7552],[117.1039,2.7554],[117.1002,2.7596],[117.0913,2.7635],[117.0854,2.7619],[117.0879,2.7702],[117.0926,2.7733],[117.0925,2.7774],[117.0867,2.7835],[117.0773,2.7969],[117.0747,2.7963],[117.0677,2.7905],[117.0619,2.7898],[117.0522,2.7911],[117.0445,2.7878],[117.0311,2.7905],[117.0226,2.7945],[117.0088,2.7963],[116.9835,2.8012],[116.9791,2.8078],[116.9682,2.8174],[116.9623,2.8237],[116.9542,2.8257],[116.9498,2.8231],[116.9423,2.8252],[116.939,2.8306],[116.934,2.8317],[116.9281,2.8304],[116.9239,2.8319],[116.9182,2.8385],[116.9111,2.8354],[116.9064,2.8377],[116.9065,2.8488],[116.9036,2.8491],[116.8995,2.8437],[116.8943,2.8318],[116.8788,2.8073],[116.8712,2.7977],[116.8671,2.7904],[116.8542,2.7714],[116.8473,2.7625],[116.8408,2.7514],[116.833,2.743],[116.8299,2.7342],[116.8212,2.728],[116.8175,2.723],[116.8178,2.7351],[116.8218,2.7373],[116.8282,2.7349],[116.8287,2.7411],[116.8414,2.7563],[116.8639,2.7888],[116.8675,2.796],[116.8841,2.8192],[116.8943,2.8356],[116.8983,2.8458],[116.9021,2.851],[116.9075,2.8499],[116.9088,2.8372],[116.9165,2.8401],[116.9216,2.8383],[116.9286,2.8318],[116.9359,2.8333],[116.9403,2.8312],[116.9476,2.8242],[116.9543,2.8276],[116.964,2.8257],[116.9703,2.8168],[116.9787,2.8109],[116.9841,2.8032],[116.9877,2.8033],[116.9943,2.8001],[117.0068,2.7987],[117.015,2.7967],[117.0235,2.7963],[117.0341,2.7912],[117.0466,2.7894],[117.0535,2.793],[117.0632,2.7913],[117.0685,2.7931],[117.0742,2.7984],[117.0792,2.7979],[117.0874,2.7847],[117.0941,2.7799],[117.0934,2.7721],[117.0897,2.7694],[117.0909,2.765],[117.099,2.7628],[117.1017,2.7595],[117.1115,2.7559],[117.1142,2.7522],[117.1189,2.7503],[117.1269,2.7373],[117.1342,2.73],[117.1441,2.726],[117.1502,2.7204],[117.1531,2.7257],[117.1512,2.7299],[117.1514,2.7359],[117.1587,2.7424],[117.1644,2.7496],[117.1775,2.7524],[117.1793,2.7552],[117.1745,2.7619],[117.1766,2.7674],[117.1841,2.7681],[117.1939,2.7771],[117.208,2.778],[117.2074,2.7715],[117.2029,2.7679],[117.1994,2.7613],[117.2072,2.7576],[117.2058,2.7512],[117.2091,2.7476],[117.223,2.7512],[117.2271,2.7554],[117.2345,2.7555],[117.2466,2.7499],[117.2535,2.7456],[117.2579,2.7449],[117.2564,2.7548],[117.2573,2.7613],[117.2599,2.7651],[117.2665,2.765],[117.2727,2.7631],[117.2748,2.7603],[117.2671,2.7524],[117.2667,2.7483],[117.2749,2.7455],[117.2789,2.7507],[117.2846,2.7545],[117.2911,2.756],[117.2981,2.7521],[117.3044,2.7532],[117.3125,2.7702],[117.3214,2.7848],[117.3242,2.7848],[117.3278,2.7797],[117.3321,2.778],[117.3323,2.7848],[117.3294,2.7919],[117.3197,2.8057],[117.3194,2.8132],[117.3239,2.8212],[117.3285,2.8247],[117.3336,2.8202],[117.3346,2.8083],[117.3385,2.809],[117.3438,2.8174],[117.3485,2.8164],[117.3505,2.8062],[117.3531,2.8002],[117.3564,2.7994],[117.3591,2.8067],[117.3605,2.8177],[117.3597,2.8254],[117.3564,2.8382],[117.3538,2.8446],[117.3424,2.8561],[117.3389,2.8613],[117.3363,2.8687],[117.3374,2.8767],[117.3362,2.8846],[117.3324,2.89],[117.3235,2.8968],[117.3255,2.9003],[117.3315,2.9011],[117.3375,2.9062],[117.3418,2.9125],[117.3442,2.92],[117.3425,2.9325],[117.346,2.9448],[117.3543,2.9562],[117.3568,2.9625],[117.3645,2.9762],[117.3705,2.9836],[117.3708,2.9926],[117.374,2.9964],[117.3771,3.0057],[117.3853,3.0139],[117.3861,3.0289],[117.3894,3.0314],[117.3865,3.037],[117.3793,3.0409],[117.3777,3.0268],[117.37,3.0317],[117.3645,3.0333],[117.3695,3.0379],[117.3727,3.033],[117.3757,3.0329],[117.3776,3.0387],[117.3766,3.0424],[117.3715,3.0463],[117.3538,3.0468],[117.351,3.0507],[117.3501,3.0603],[117.3458,3.0694],[117.345,3.074],[117.3487,3.0791],[117.3534,3.0779],[117.3579,3.0681],[117.3633,3.068],[117.3651,3.0711],[117.3661,3.0796],[117.3696,3.0831],[117.3802,3.0804],[117.3823,3.0837],[117.3758,3.0878],[117.3681,3.0855],[117.3633,3.0883],[117.3611,3.0942],[117.3595,3.1054],[117.3622,3.1134],[117.3671,3.1166],[117.3745,3.1151],[117.3783,3.1112],[117.3805,3.1046],[117.3812,3.0974],[117.3859,3.096],[117.3945,3.1076],[117.399,3.1115],[117.406,3.1149],[117.4263,3.1131],[117.4359,3.1218],[117.4489,3.1279],[117.4622,3.127],[117.4657,3.1293],[117.4609,3.1418],[117.4542,3.15],[117.4487,3.1543],[117.4433,3.1621],[117.4261,3.1727],[117.4167,3.1724],[117.4011,3.1613],[117.3958,3.1551],[117.3936,3.1671],[117.3823,3.1726],[117.3689,3.1812],[117.3408,3.181],[117.3326,3.1755],[117.3256,3.1661],[117.3176,3.1585],[117.3124,3.1574],[117.3026,3.1587],[117.2932,3.1577],[117.2908,3.1559],[117.2871,3.1384],[117.2847,3.1391],[117.2882,3.156],[117.2803,3.1578],[117.2728,3.1578],[117.2696,3.1538],[117.2693,3.1411],[117.265,3.1514],[117.2676,3.1584],[117.2718,3.1609],[117.2861,3.1609],[117.2962,3.1616],[117.3155,3.1643],[117.3182,3.1663],[117.3186,3.1734],[117.3155,3.1847],[117.3127,3.1886],[117.3077,3.2068],[117.3016,3.208],[117.2935,3.2038],[117.2844,3.1961],[117.276,3.1871],[117.2671,3.1827],[117.2663,3.1808],[117.2543,3.1826],[117.2452,3.1885],[117.2385,3.1887],[117.2322,3.1764],[117.2279,3.1736],[117.2223,3.1736],[117.2128,3.18],[117.2153,3.184],[117.2334,3.1929],[117.238,3.1939],[117.2544,3.1895],[117.2638,3.1852],[117.2679,3.1863],[117.2776,3.1952],[117.2795,3.2047],[117.2744,3.2095],[117.271,3.2181],[117.2626,3.2318],[117.2512,3.2368],[117.2374,3.2413],[117.2302,3.2399],[117.2159,3.244],[117.2067,3.2512],[117.1896,3.2485],[117.1819,3.2495],[117.1762,3.2484],[117.1715,3.2525],[117.1596,3.2596],[117.1626,3.2605],[117.1705,3.2578],[117.1802,3.2578],[117.1863,3.2557],[117.1893,3.2529],[117.1943,3.2549],[117.2029,3.2558],[117.2243,3.2496],[117.2326,3.2487],[117.245,3.2495],[117.2551,3.252],[117.2651,3.2522],[117.2725,3.26],[117.2704,3.251],[117.2722,3.2426],[117.281,3.2375],[117.2865,3.237],[117.2947,3.2407],[117.3035,3.2414],[117.3092,3.2367],[117.3129,3.2239],[117.3155,3.2186],[117.3159,3.2137],[117.3213,3.2111],[117.3299,3.2113],[117.3344,3.2131],[117.3388,3.2208],[117.3476,3.2251],[117.3506,3.2233],[117.3613,3.226],[117.3731,3.2272],[117.3779,3.2296],[117.3845,3.2373],[117.3963,3.2578],[117.3873,3.2665],[117.3798,3.2676],[117.3734,3.2619],[117.3688,3.2526],[117.3609,3.2524],[117.3592,3.262],[117.3544,3.265],[117.3521,3.2693],[117.3599,3.2737],[117.3632,3.2807],[117.3665,3.2816],[117.3644,3.2876],[117.3674,3.2942],[117.3703,3.2963],[117.3739,3.3052],[117.383,3.3201],[117.3881,3.3228],[117.388,3.3264],[117.3915,3.3383],[117.3899,3.3453],[117.3752,3.3546],[117.3711,3.357],[117.3679,3.3662],[117.3715,3.3666],[117.3692,3.3733],[117.3664,3.3717],[117.3491,3.3687],[117.3442,3.3729],[117.3312,3.3796]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.568,3.5458],[117.5736,3.5488],[117.5689,3.552],[117.5625,3.5527],[117.5588,3.5488],[117.568,3.5458]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.4968,3.5452],[117.479,3.5484],[117.441,3.5503],[117.4241,3.5554],[117.4154,3.5564],[117.4126,3.5452],[117.4151,3.5416],[117.4287,3.5397],[117.4338,3.5377],[117.4416,3.5367],[117.4467,3.5308],[117.4461,3.5263],[117.4416,3.5203],[117.4412,3.5117],[117.4553,3.5152],[117.4629,3.5144],[117.4729,3.5109],[117.4782,3.5063],[117.4828,3.4993],[117.4884,3.4986],[117.5014,3.5063],[117.511,3.5049],[117.5188,3.4948],[117.5285,3.4883],[117.535,3.4903],[117.5401,3.4795],[117.5464,3.4712],[117.5697,3.4753],[117.5945,3.4743],[117.6055,3.4744],[117.6108,3.4772],[117.6149,3.485],[117.6118,3.4973],[117.6094,3.5],[117.5867,3.5107],[117.5754,3.5168],[117.5569,3.5241],[117.5467,3.5257],[117.5344,3.5293],[117.5069,3.5428],[117.4968,3.5452]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.8563,3.5731],[117.8583,3.5769],[117.8554,3.58],[117.8508,3.5755],[117.8563,3.5731]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.8713,3.4767],[117.8651,3.4813],[117.8633,3.4845],[117.8632,3.4927],[117.8587,3.4977],[117.8543,3.5104],[117.8547,3.5161],[117.8525,3.5286],[117.8497,3.5355],[117.8446,3.5386],[117.8372,3.5523],[117.8305,3.5571],[117.8238,3.5705],[117.8172,3.5747],[117.8005,3.5875],[117.7954,3.5826],[117.7877,3.5778],[117.774,3.5732],[117.7685,3.5696],[117.7604,3.5666],[117.7547,3.5611],[117.7522,3.5555],[117.7508,3.5449],[117.7511,3.5319],[117.7564,3.5242],[117.7593,3.5144],[117.771,3.5041],[117.7818,3.4992],[117.7853,3.495],[117.7983,3.4897],[117.8081,3.4805],[117.814,3.4762],[117.8199,3.4766],[117.8245,3.4744],[117.8327,3.4636],[117.8379,3.4586],[117.8414,3.458],[117.8452,3.4518],[117.8558,3.4504],[117.8658,3.4468],[117.87,3.4534],[117.8743,3.4675],[117.8713,3.4767]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.6141,3.5785],[117.5744,3.5865],[117.5607,3.5882],[117.5581,3.587],[117.553,3.579],[117.5483,3.5752],[117.5405,3.5747],[117.5344,3.5761],[117.522,3.5831],[117.5093,3.5862],[117.5056,3.5846],[117.5121,3.5766],[117.5312,3.5634],[117.5373,3.5607],[117.5475,3.56],[117.5593,3.5608],[117.5708,3.5586],[117.5819,3.555],[117.5888,3.5516],[117.5986,3.5453],[117.6069,3.5414],[117.6232,3.5373],[117.6378,3.5401],[117.6537,3.5424],[117.6591,3.5461],[117.6625,3.5505],[117.6628,3.5548],[117.6591,3.5557],[117.6508,3.5624],[117.6375,3.57],[117.6141,3.5785]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"LineString","coordinates":[[117.4944,3.5694],[117.496,3.5735],[117.4909,3.5769],[117.4624,3.5914],[117.4594,3.5863],[117.4664,3.5756],[117.4703,3.5731],[117.4944,3.5694]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.4173,3.362],[117.4193,3.3671],[117.4191,3.377],[117.4147,3.3759],[117.4173,3.362]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.424,3.3405],[117.4354,3.3491],[117.4385,3.3637],[117.4364,3.3733],[117.4393,3.3862],[117.4428,3.3948],[117.4431,3.4063],[117.44,3.4161],[117.4355,3.4187],[117.4195,3.4207],[117.3926,3.43],[117.3766,3.4384],[117.3668,3.441],[117.3659,3.4317],[117.3666,3.4228],[117.3692,3.4166],[117.3728,3.4142],[117.3931,3.4092],[117.3976,3.4073],[117.4081,3.4001],[117.4128,3.3948],[117.4209,3.3816],[117.4223,3.3769],[117.4216,3.367],[117.4157,3.3429],[117.4195,3.3395],[117.424,3.3405]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.3752,3.3546],[117.3906,3.3459],[117.3941,3.3411],[117.3909,3.3318],[117.39,3.3249],[117.3959,3.3217],[117.4102,3.3269],[117.4153,3.3362],[117.413,3.3422],[117.4126,3.3509],[117.4142,3.3617],[117.4127,3.3778],[117.4143,3.3868],[117.4131,3.3913],[117.3979,3.4039],[117.3871,3.4085],[117.3721,3.4107],[117.368,3.4144],[117.3648,3.4208],[117.3629,3.4278],[117.3618,3.4388],[117.3587,3.4465],[117.3501,3.4497],[117.3233,3.4508],[117.3142,3.4506],[117.3059,3.4487],[117.3035,3.4433],[117.3086,3.4309],[117.3127,3.4178],[117.315,3.4148],[117.3255,3.407],[117.3319,3.3982],[117.3332,3.3935],[117.3312,3.3796],[117.3442,3.3729],[117.3491,3.3687],[117.3664,3.3717],[117.3692,3.3733],[117.3715,3.3666],[117.3679,3.3662],[117.3711,3.357],[117.3752,3.3546]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.4162,3.444],[117.4108,3.4483],[117.398,3.4519],[117.4022,3.4468],[117.4162,3.444]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.4593,3.4392],[117.4571,3.4469],[117.4441,3.4531],[117.4278,3.4538],[117.4362,3.448],[117.4473,3.4424],[117.4593,3.4392]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.2919,3.4645],[117.2925,3.4669],[117.2827,3.4687],[117.284,3.4647],[117.2919,3.4645]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.3315,3.4819],[117.3241,3.4885],[117.3187,3.486],[117.3187,3.4828],[117.3315,3.4819]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.4099,3.5506],[117.412,3.5575],[117.4079,3.5605],[117.4038,3.5586],[117.4064,3.552],[117.4099,3.5506]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.3176,3.5728],[117.3323,3.58],[117.3282,3.5826],[117.3121,3.581],[117.3089,3.5752],[117.3145,3.5707],[117.3176,3.5728]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.3937,3.5845],[117.3945,3.5814],[117.402,3.5735],[117.4044,3.5681],[117.4082,3.5662],[117.4161,3.5663],[117.4156,3.575],[117.4135,3.5812],[117.4109,3.583],[117.3937,3.5845]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.4026,3.5686],[117.4022,3.5715],[117.3941,3.5809],[117.3925,3.5847],[117.381,3.5851],[117.3671,3.5805],[117.371,3.578],[117.4026,3.5686]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.2789,3.5875],[117.237,3.587],[117.2325,3.5845],[117.2189,3.5719],[117.2145,3.5616],[117.2076,3.5487],[117.202,3.542],[117.2011,3.5389],[117.2073,3.5289],[117.2199,3.5118],[117.2257,3.5013],[117.2318,3.4959],[117.2495,3.4916],[117.2598,3.4883],[117.2733,3.4857],[117.2955,3.4839],[117.3045,3.4852],[117.3232,3.4914],[117.3328,3.4879],[117.3463,3.4839],[117.3712,3.4731],[117.381,3.4696],[117.3953,3.4677],[117.4086,3.4667],[117.4169,3.4645],[117.4316,3.4586],[117.4448,3.4567],[117.4612,3.4505],[117.4655,3.4475],[117.476,3.4358],[117.4851,3.432],[117.4877,3.4384],[117.4871,3.4512],[117.4915,3.4575],[117.4989,3.4644],[117.5111,3.4721],[117.5146,3.4752],[117.5179,3.4819],[117.5086,3.4915],[117.5053,3.4972],[117.5004,3.4969],[117.4883,3.4915],[117.4823,3.4919],[117.4765,3.4958],[117.4727,3.5007],[117.4657,3.5068],[117.4552,3.5093],[117.4429,3.5036],[117.4355,3.508],[117.4343,3.5146],[117.4349,3.5232],[117.4372,3.5286],[117.431,3.5315],[117.4156,3.5344],[117.4083,3.5374],[117.3925,3.5386],[117.403,3.5423],[117.401,3.5469],[117.3949,3.5511],[117.3825,3.5557],[117.369,3.5634],[117.3602,3.5649],[117.3412,3.5655],[117.3335,3.5649],[117.3135,3.5603],[117.3056,3.5598],[117.2933,3.563],[117.2824,3.5721],[117.2788,3.5785],[117.2789,3.5875]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.4147,3.6046],[117.4034,3.6103],[117.3938,3.6136],[117.3852,3.613],[117.3697,3.6077],[117.36,3.6053],[117.3441,3.6037],[117.3242,3.6007],[117.3039,3.6015],[117.2935,3.5992],[117.2913,3.5971],[117.2959,3.5917],[117.299,3.5822],[117.3034,3.5788],[117.3084,3.5826],[117.3221,3.5859],[117.3419,3.5878],[117.3649,3.5887],[117.3823,3.59],[117.3988,3.5898],[117.4113,3.5875],[117.4176,3.5837],[117.426,3.5749],[117.4309,3.5658],[117.438,3.5616],[117.4448,3.5627],[117.4576,3.5669],[117.4602,3.569],[117.4581,3.5794],[117.4554,3.5822],[117.4147,3.6046]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.5447,3.5802],[117.5494,3.5855],[117.548,3.5897],[117.549,3.5991],[117.5463,3.6034],[117.5399,3.609],[117.5249,3.6148],[117.5208,3.6154],[117.515,3.6131],[117.5121,3.6091],[117.5109,3.6034],[117.5066,3.594],[117.5134,3.5915],[117.5263,3.5885],[117.5404,3.5809],[117.5447,3.5802]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.0421,3.6044],[117.0567,3.612],[117.0589,3.6186],[117.053,3.6171],[117.0427,3.6111],[117.0394,3.6064],[117.0421,3.6044]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.3446,3.6118],[117.3603,3.6139],[117.3715,3.6211],[117.3661,3.6232],[117.3584,3.6234],[117.3412,3.6222],[117.3236,3.6185],[117.3212,3.6128],[117.3267,3.6117],[117.3446,3.6118]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.1016,3.6149],[117.1067,3.6204],[117.1003,3.624],[117.093,3.6218],[117.0904,3.618],[117.0976,3.6148],[117.1016,3.6149]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[116.9098,3.6113],[116.9202,3.6139],[116.9243,3.6247],[116.924,3.6298],[116.9201,3.6345],[116.9086,3.6123],[116.9098,3.6113]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.3826,3.6323],[117.3779,3.6366],[117.3679,3.6335],[117.3705,3.6287],[117.3749,3.6289],[117.3826,3.6323]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[116.906,3.629],[116.9091,3.6329],[116.9062,3.6393],[116.9027,3.6348],[116.906,3.629]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.4827,3.6371],[117.4771,3.6466],[117.4747,3.6465],[117.4703,3.6396],[117.4658,3.637],[117.4614,3.6374],[117.4566,3.6335],[117.4368,3.6411],[117.4333,3.6379],[117.4333,3.6322],[117.4297,3.6244],[117.4322,3.6217],[117.4431,3.6164],[117.4594,3.6119],[117.4693,3.6084],[117.4907,3.5978],[117.4961,3.5982],[117.5028,3.6048],[117.5147,3.6227],[117.5182,3.6313],[117.517,3.6387],[117.5103,3.6346],[117.5052,3.6342],[117.4963,3.6376],[117.4891,3.6344],[117.4827,3.6371]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[116.9619,3.6244],[116.9646,3.627],[116.9703,3.6418],[116.9687,3.6531],[116.9623,3.6441],[116.9599,3.6328],[116.9599,3.6247],[116.9619,3.6244]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.502,3.6685],[117.4919,3.6682],[117.4896,3.6656],[117.4891,3.6555],[117.4976,3.6402],[117.5034,3.6389],[117.5078,3.6357],[117.5167,3.6411],[117.5213,3.6403],[117.5182,3.6525],[117.511,3.6609],[117.502,3.6685]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.2755,3.3812],[117.2819,3.3946],[117.2772,3.401],[117.2784,3.4062],[117.2834,3.413],[117.2815,3.4223],[117.2829,3.426],[117.2889,3.4287],[117.2973,3.427],[117.3015,3.4214],[117.3036,3.4118],[117.3088,3.4147],[117.3036,3.4224],[117.3002,3.4298],[117.2971,3.4423],[117.2994,3.4493],[117.3043,3.4543],[117.321,3.4593],[117.322,3.4622],[117.3132,3.4659],[117.304,3.4655],[117.289,3.4633],[117.2833,3.464],[117.2751,3.4688],[117.2534,3.4713],[117.2414,3.477],[117.2256,3.4885],[117.2211,3.4861],[117.222,3.4672],[117.2232,3.4561],[117.2292,3.4451],[117.2283,3.4378],[117.2241,3.4428],[117.2172,3.4372],[117.2014,3.4341],[117.1919,3.4291],[117.178,3.4252],[117.1712,3.4287],[117.1733,3.4156],[117.1725,3.4124],[117.1639,3.4123],[117.1614,3.417],[117.1657,3.4183],[117.1677,3.4139],[117.1714,3.4134],[117.1698,3.4294],[117.1732,3.4311],[117.1775,3.4269],[117.1813,3.4271],[117.1855,3.4307],[117.1847,3.4431],[117.1823,3.4464],[117.1748,3.4479],[117.1671,3.4476],[117.1624,3.4498],[117.1539,3.4575],[117.155,3.4587],[117.1649,3.4495],[117.1788,3.4495],[117.1844,3.4474],[117.1872,3.4414],[117.1872,3.4311],[117.1894,3.4304],[117.2049,3.4392],[117.2198,3.4424],[117.2212,3.4442],[117.214,3.4626],[117.2132,3.4678],[117.2144,3.481],[117.2177,3.4918],[117.2109,3.501],[117.2069,3.5165],[117.1958,3.5277],[117.1933,3.5391],[117.2004,3.5526],[117.2034,3.5615],[117.2086,3.5716],[117.2163,3.5808],[117.2257,3.5891],[117.2281,3.5964],[117.2269,3.6026],[117.2204,3.6091],[117.2073,3.6097],[117.19,3.6134],[117.1725,3.6195],[117.1659,3.6188],[117.1496,3.6192],[117.1367,3.6208],[117.1278,3.6207],[117.1012,3.6096],[117.0907,3.608],[117.0736,3.6115],[117.0672,3.609],[117.0486,3.5971],[117.0346,3.59],[117.0275,3.5872],[117.0141,3.5852],[117.0067,3.5857],[116.986,3.5898],[116.972,3.5896],[116.9651,3.5918],[116.9573,3.5979],[116.9532,3.6025],[116.9511,3.6086],[116.9498,3.6174],[116.9526,3.6356],[116.9565,3.6511],[116.9575,3.6598],[116.9573,3.6708],[116.9537,3.6835],[116.9493,3.6892],[116.944,3.6914],[116.9399,3.6892],[116.9297,3.6735],[116.9231,3.6667],[116.916,3.6616],[116.9168,3.6485],[116.9191,3.6404],[116.9244,3.6321],[116.9252,3.6253],[116.9211,3.6137],[116.9071,3.6104],[116.8982,3.6071],[116.8831,3.599],[116.8747,3.5933],[116.8645,3.5926],[116.8546,3.5961],[116.8472,3.6007],[116.8408,3.6063],[116.8358,3.6158],[116.8322,3.6202],[116.8241,3.6151],[116.8167,3.606],[116.8133,3.5959],[116.8105,3.573],[116.8092,3.5707],[116.8003,3.565],[116.7866,3.5659],[116.7757,3.5705],[116.7729,3.5741],[116.7658,3.5872],[116.7614,3.5879],[116.759,3.5807],[116.7537,3.5791],[116.7552,3.5742],[116.7441,3.5689],[116.7432,3.5627],[116.737,3.5555],[116.7431,3.5493],[116.7381,3.5376],[116.7346,3.5321],[116.7349,3.5181],[116.729,3.5149],[116.7311,3.5103],[116.7282,3.5076],[116.7266,3.5002],[116.7279,3.4934],[116.7206,3.4879],[116.7141,3.4895],[116.7056,3.4862],[116.7023,3.4808],[116.6954,3.4771],[116.6936,3.4698],[116.7019,3.4599],[116.7071,3.4516],[116.7078,3.4413],[116.7033,3.43],[116.7062,3.4264],[116.7172,3.4166],[116.7272,3.4107],[116.7354,3.4089],[116.7375,3.4064],[116.7359,3.3949],[116.7427,3.3859],[116.7533,3.3767],[116.7562,3.3851],[116.7612,3.3781],[116.7701,3.3806],[116.7724,3.3837],[116.7763,3.3803],[116.7777,3.3687],[116.7856,3.3685],[116.7959,3.3743],[116.8063,3.3753],[116.8082,3.3799],[116.8196,3.3859],[116.8293,3.3841],[116.8341,3.3868],[116.8355,3.3906],[116.8409,3.391],[116.8472,3.3893],[116.8518,3.3861],[116.8809,3.3949],[116.8904,3.3928],[116.9019,3.3957],[116.907,3.3913],[116.9119,3.3933],[116.9161,3.3979],[116.9241,3.3988],[116.931,3.3979],[116.9555,3.3909],[116.9608,3.385],[116.9762,3.3885],[116.9836,3.3922],[116.9891,3.39],[116.9975,3.3894],[117.0115,3.392],[117.0177,3.3954],[117.0194,3.3996],[117.0299,3.4026],[117.0342,3.4053],[117.0416,3.405],[117.0467,3.4071],[117.0614,3.4048],[117.0664,3.3969],[117.0739,3.3961],[117.0784,3.4008],[117.0834,3.3961],[117.0903,3.3868],[117.0921,3.3862],[117.093,3.371],[117.095,3.3645],[117.0987,3.3624],[117.1101,3.3624],[117.1136,3.3529],[117.1097,3.3492],[117.1119,3.3465],[117.1163,3.348],[117.1259,3.3457],[117.1324,3.3422],[117.1355,3.3463],[117.1454,3.3496],[117.1493,3.3564],[117.1577,3.3498],[117.1651,3.3529],[117.1663,3.3583],[117.1732,3.3566],[117.1867,3.3433],[117.184,3.336],[117.1947,3.3306],[117.1982,3.3319],[117.2056,3.3408],[117.22,3.3374],[117.2309,3.3322],[117.2351,3.3211],[117.2429,3.3132],[117.2755,3.3812]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.4896,3.6702],[117.4844,3.6648],[117.4763,3.6596],[117.4683,3.6564],[117.4496,3.6527],[117.3843,3.6454],[117.3293,3.6381],[117.3168,3.6368],[117.2969,3.6365],[117.2764,3.6418],[117.2566,3.6492],[117.2309,3.6606],[117.1964,3.6692],[117.1638,3.673],[117.1277,3.6762],[117.0932,3.6807],[117.0217,3.7014],[116.9561,3.7149],[116.9382,3.7148],[116.9118,3.7099],[116.8862,3.7034],[116.8477,3.6921],[116.8385,3.6863],[116.8357,3.6874],[116.8263,3.6852],[116.8239,3.6873],[116.8147,3.6883],[116.7942,3.6929],[116.7705,3.6953],[116.743,3.6811],[116.7612,3.6596],[116.7612,3.6419],[116.7634,3.6357],[116.7604,3.6261],[116.7666,3.6211],[116.77,3.6109],[116.7691,3.6048],[116.7639,3.5962],[116.772,3.5898],[116.7804,3.5765],[116.7892,3.5701],[116.7972,3.5692],[116.8048,3.5827],[116.8115,3.6169],[116.8161,3.6261],[116.8253,3.6323],[116.8322,3.6328],[116.84,3.6286],[116.8461,3.6218],[116.8536,3.6083],[116.8567,3.6048],[116.8612,3.6034],[116.8778,3.6063],[116.8901,3.6103],[116.8942,3.613],[116.8984,3.6224],[116.8982,3.6331],[116.9021,3.6507],[116.9083,3.6723],[116.9242,3.6841],[116.9368,3.6976],[116.9482,3.7022],[116.9602,3.7012],[116.9676,3.6972],[116.9731,3.6901],[116.9724,3.6804],[116.9731,3.6687],[116.9768,3.6599],[116.9765,3.6462],[116.9668,3.6185],[116.9661,3.6031],[116.9965,3.5987],[117.0065,3.5947],[117.0148,3.5945],[117.0217,3.5979],[117.038,3.6127],[117.0479,3.6196],[117.0663,3.631],[117.0818,3.6371],[117.0889,3.6378],[117.1059,3.636],[117.1203,3.6358],[117.1285,3.6367],[117.1433,3.6407],[117.1537,3.6442],[117.1702,3.6441],[117.1865,3.6393],[117.2063,3.632],[117.2121,3.6316],[117.2276,3.628],[117.256,3.6182],[117.2699,3.6178],[117.3033,3.6219],[117.3209,3.6236],[117.3454,3.6305],[117.3553,3.6326],[117.3735,3.639],[117.3802,3.6403],[117.3937,3.6398],[117.3994,3.6379],[117.4254,3.6256],[117.4287,3.6254],[117.432,3.6324],[117.4322,3.6386],[117.4367,3.6423],[117.4522,3.6368],[117.4558,3.6346],[117.4604,3.6381],[117.4674,3.6387],[117.4734,3.6477],[117.4785,3.6472],[117.4838,3.6374],[117.4879,3.6361],[117.496,3.6406],[117.4904,3.6499],[117.488,3.6569],[117.4896,3.6702]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.7445,3.6995],[117.7445,3.7056],[117.7404,3.7124],[117.7331,3.7179],[117.7315,3.7128],[117.7303,3.7013],[117.7277,3.6975],[117.7298,3.6937],[117.7282,3.6855],[117.7213,3.6785],[117.7155,3.6754],[117.7088,3.6686],[117.711,3.6488],[117.7184,3.6377],[117.7206,3.6385],[117.7305,3.6323],[117.7422,3.6364],[117.7502,3.6432],[117.7522,3.6491],[117.7641,3.6614],[117.7598,3.6643],[117.7607,3.6693],[117.7651,3.6696],[117.7688,3.6766],[117.7685,3.6821],[117.7655,3.6862],[117.7604,3.6894],[117.7531,3.6913],[117.7445,3.6995]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.7731,3.7436],[117.7696,3.7475],[117.7574,3.7513],[117.7536,3.7488],[117.7674,3.7444],[117.7731,3.7436]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.7843,3.7516],[117.7717,3.7539],[117.7499,3.7623],[117.7454,3.7623],[117.7431,3.7589],[117.7474,3.7555],[117.7626,3.7518],[117.7718,3.7485],[117.7817,3.7426],[117.7923,3.7409],[117.8006,3.7324],[117.807,3.7304],[117.8135,3.7335],[117.8155,3.7422],[117.8095,3.753],[117.7978,3.7538],[117.7843,3.7516]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.671,3.7747],[117.6646,3.7726],[117.6695,3.7686],[117.6777,3.7656],[117.6791,3.7628],[117.7011,3.7505],[117.7084,3.7484],[117.7123,3.7429],[117.725,3.7442],[117.7304,3.741],[117.7285,3.7316],[117.7311,3.729],[117.735,3.7202],[117.7428,3.715],[117.7477,3.7077],[117.7491,3.7011],[117.7542,3.6966],[117.758,3.6972],[117.7705,3.6922],[117.7797,3.6855],[117.7855,3.6884],[117.792,3.6887],[117.8035,3.697],[117.8162,3.7043],[117.8212,3.703],[117.8262,3.7045],[117.8242,3.7113],[117.8203,3.7138],[117.8144,3.7209],[117.8077,3.7224],[117.7381,3.7489],[117.7179,3.756],[117.7033,3.7602],[117.6873,3.766],[117.6752,3.7744],[117.671,3.7747]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"LineString","coordinates":[[117.5953,3.7798],[117.5988,3.7919],[117.5962,3.7949],[117.5923,3.793],[117.5807,3.7808],[117.5779,3.7791],[117.571,3.7792],[117.5594,3.7828],[117.5466,3.7759],[117.5317,3.766],[117.5274,3.7684],[117.5242,3.7736],[117.5191,3.774],[117.5049,3.765],[117.4984,3.7677],[117.4973,3.774],[117.4838,3.7651],[117.4782,3.7557],[117.4783,3.7505],[117.4852,3.7469],[117.4864,3.7421],[117.4834,3.7277],[117.4891,3.7268],[117.491,3.7216],[117.4858,3.7168],[117.4969,3.7088],[117.5019,3.7026],[117.5069,3.6937],[117.5106,3.6847],[117.5137,3.6808],[117.5239,3.6718],[117.5369,3.6633],[117.5556,3.6467],[117.5746,3.6355],[117.5882,3.6293],[117.6072,3.6252],[117.6486,3.6202],[117.6563,3.6167],[117.6664,3.6154],[117.6824,3.6248],[117.6993,3.6299],[117.7048,3.6294],[117.7147,3.6319],[117.716,3.6377],[117.7102,3.6502],[117.7081,3.6685],[117.7149,3.6753],[117.7145,3.6777],[117.7224,3.6799],[117.7277,3.6859],[117.7295,3.6921],[117.7273,3.696],[117.7307,3.7052],[117.7309,3.7127],[117.728,3.7144],[117.7314,3.7207],[117.7295,3.7261],[117.7259,3.729],[117.7115,3.7259],[117.7099,3.7273],[117.727,3.7325],[117.7293,3.7404],[117.7244,3.7432],[117.7126,3.742],[117.7087,3.7477],[117.7031,3.7491],[117.6791,3.762],[117.6773,3.7649],[117.6689,3.768],[117.6639,3.7729],[117.6737,3.7759],[117.6664,3.7834],[117.6599,3.7808],[117.6562,3.7714],[117.6496,3.7676],[117.6399,3.7706],[117.631,3.7761],[117.6236,3.7763],[117.6131,3.7723],[117.6055,3.7714],[117.5988,3.7734],[117.5953,3.7798]]}},{"type":"Feature","properties":{"mhid":"1332:378","alt_name":"KABUPATEN NUNUKAN","latitude":4.13333,"longitude":116.7,"sample_value":979},"geometry":{"type":"LineString","coordinates":[[117.4917,3.6807],[117.4906,3.6862],[117.4926,3.6949],[117.4907,3.7024],[117.485,3.7082],[117.4814,3.7086],[117.4706,3.7041],[117.4526,3.7],[117.4474,3.6975],[117.4413,3.6871],[117.4338,3.6843],[117.4296,3.6804],[117.4318,3.675],[117.4462,3.6746],[117.454,3.6796],[117.4617,3.6766],[117.4685,3.672],[117.4741,3.6785],[117.4779,3.6797],[117.4901,3.6776],[117.4917,3.6807]]}},{"type":"Feature","properties":{"mhid":"1332:378","alt_name":"KABUPATEN NUNUKAN","latitude":4.13333,"longitude":116.7,"sample_value":979},"geometry":{"type":"LineString","coordinates":[[117.8176,3.7698],[117.8144,3.7789],[117.8101,3.7813],[117.79,3.7836],[117.7817,3.7853],[117.78,3.7714],[117.7857,3.7701],[117.7892,3.7674],[117.7965,3.7581],[117.807,3.7593],[117.8166,3.7577],[117.8176,3.7698]]}},{"type":"Feature","properties":{"mhid":"1332:378","alt_name":"KABUPATEN NUNUKAN","latitude":4.13333,"longitude":116.7,"sample_value":979},"geometry":{"type":"LineString","coordinates":[[117.7418,3.7821],[117.7386,3.7829],[117.7388,3.7893],[117.732,3.7899],[117.7287,3.7829],[117.7231,3.7819],[117.7175,3.7851],[117.7139,3.7838],[117.7129,3.7796],[117.7087,3.7785],[117.7041,3.773],[117.7105,3.7711],[117.7249,3.7692],[117.7397,3.7662],[117.7527,3.7649],[117.7681,3.7602],[117.7779,3.7561],[117.785,3.7546],[117.7925,3.7587],[117.7856,3.7681],[117.7776,3.768],[117.773,3.7762],[117.7632,3.7765],[117.7658,3.7854],[117.7547,3.7849],[117.7517,3.7818],[117.7418,3.7821]]}},{"type":"Feature","properties":{"mhid":"1332:378","alt_name":"KABUPATEN NUNUKAN","latitude":4.13333,"longitude":116.7,"sample_value":979},"geometry":{"type":"LineString","coordinates":[[117.704,3.7814],[117.7007,3.7874],[117.6945,3.79],[117.6893,3.7903],[117.6802,3.7936],[117.681,3.7847],[117.6784,3.7808],[117.6939,3.7747],[117.7035,3.7731],[117.7071,3.7793],[117.697,3.7772],[117.6974,3.783],[117.704,3.7814]]}},{"type":"Feature","properties":{"mhid":"1332:378","alt_name":"KABUPATEN NUNUKAN","latitude":4.13333,"longitude":116.7,"sample_value":979},"geometry":{"type":"LineString","coordinates":[[117.7418,3.7821],[117.7508,3.7822],[117.7559,3.7857],[117.7648,3.7863],[117.7668,3.7813],[117.7638,3.7768],[117.7713,3.7773],[117.777,3.7715],[117.7797,3.7819],[117.7783,3.7859],[117.765,3.7931],[117.7556,3.7992],[117.7415,3.8017],[117.7353,3.8092],[117.7318,3.8107],[117.7268,3.8055],[117.7293,3.7961],[117.7245,3.7972],[117.7156,3.7963],[117.7157,3.792],[117.7127,3.7844],[117.7183,3.7853],[117.7264,3.7829],[117.732,3.7906],[117.7392,3.7897],[117.7391,3.7844],[117.7418,3.7821]]}},{"type":"Feature","properties":{"mhid":"1332:378","alt_name":"KABUPATEN NUNUKAN","latitude":4.13333,"longitude":116.7,"sample_value":979},"geometry":{"type":"LineString","coordinates":[[117.704,3.7814],[117.6975,3.7826],[117.6975,3.7777],[117.7048,3.7797],[117.7108,3.7793],[117.7136,3.7833],[117.7101,3.7864],[117.7151,3.792],[117.7139,3.795],[117.7191,3.7978],[117.7292,3.7971],[117.7259,3.8057],[117.7312,3.8115],[117.7257,3.817],[117.715,3.8166],[117.7097,3.8187],[117.7076,3.8147],[117.6948,3.8128],[117.6938,3.8072],[117.687,3.8055],[117.6862,3.802],[117.6922,3.7963],[117.6994,3.7946],[117.6991,3.7912],[117.704,3.7814]]}},{"type":"Feature","properties":{"mhid":"1332:378","alt_name":"KABUPATEN NUNUKAN","latitude":4.13333,"longitude":116.7,"sample_value":979},"geometry":{"type":"LineString","coordinates":[[117.7782,3.8441],[117.7727,3.8463],[117.7661,3.8532],[117.7624,3.8613],[117.7548,3.8689],[117.7317,3.8758],[117.7207,3.8748],[117.715,3.8694],[117.7113,3.8639],[117.7115,3.8581],[117.7247,3.8432],[117.7332,3.8412],[117.7376,3.8374],[117.7356,3.8248],[117.7362,3.8148],[117.7419,3.8075],[117.7473,3.8056],[117.7558,3.8048],[117.7607,3.8032],[117.7711,3.7963],[117.7832,3.79],[117.7927,3.7884],[117.8108,3.7891],[117.812,3.7874],[117.8228,3.7845],[117.8315,3.7854],[117.8335,3.7873],[117.8348,3.7943],[117.8286,3.8057],[117.8207,3.8144],[117.8093,3.822],[117.8076,3.8217],[117.7983,3.8287],[117.7924,3.8317],[117.788,3.8371],[117.7848,3.8366],[117.7782,3.8441]]}},{"type":"Feature","properties":{"mhid":"1332:378","alt_name":"KABUPATEN NUNUKAN","latitude":4.13333,"longitude":116.7,"sample_value":979},"geometry":{"type":"LineString","coordinates":[[117.6591,3.9433],[117.6525,3.9503],[117.6434,3.9527],[117.6395,3.9497],[117.6404,3.9467],[117.6565,3.941],[117.6591,3.9433]]}},{"type":"Feature","properties":{"mhid":"1332:378","alt_name":"KABUPATEN NUNUKAN","latitude":4.13333,"longitude":116.7,"sample_value":979},"geometry":{"type":"LineString","coordinates":[[117.655,3.9558],[117.647,3.958],[117.6446,3.9532],[117.6525,3.9514],[117.655,3.9558]]}},{"type":"Feature","properties":{"mhid":"1332:378","alt_name":"KABUPATEN NUNUKAN","latitude":4.13333,"longitude":116.7,"sample_value":979},"geometry":{"type":"LineString","coordinates":[[117.5228,4.028],[117.521,4.034],[117.5107,4.041],[117.5003,4.0528],[117.495,4.0517],[117.488,4.044],[117.4771,4.036],[117.4681,4.0329],[117.4619,4.0276],[117.4506,4.0137],[117.4443,4.007],[117.4444,4.0034],[117.4511,3.9931],[117.4567,3.9872],[117.4565,3.9816],[117.4592,3.9732],[117.4647,3.9655],[117.4663,3.9562],[117.4585,3.94],[117.4598,3.9314],[117.4635,3.9293],[117.4768,3.9258],[117.4922,3.9176],[117.4959,3.9168],[117.5037,3.918],[117.5172,3.9265],[117.5248,3.9296],[117.531,3.9299],[117.5484,3.9261],[117.5667,3.9178],[117.5754,3.91],[117.5906,3.8895],[117.5962,3.8855],[117.604,3.8826],[117.6214,3.8836],[117.6515,3.8894],[117.6688,3.8901],[117.6825,3.8869],[117.684,3.8943],[117.6871,3.9016],[117.6872,3.9055],[117.6837,3.9148],[117.675,3.9109],[117.6543,3.9108],[117.6383,3.9131],[117.6324,3.917],[117.6293,3.9167],[117.6237,3.9233],[117.6153,3.9251],[117.5983,3.934],[117.5936,3.94],[117.5828,3.9605],[117.5777,3.9693],[117.5723,3.968],[117.5551,3.9857],[117.5521,3.9916],[117.5487,4.0056],[117.548,4.013],[117.5437,4.0191],[117.5327,4.0302],[117.5228,4.028]]}},{"type":"Feature","properties":{"mhid":"1332:378","alt_name":"KABUPATEN NUNUKAN","latitude":4.13333,"longitude":116.7,"sample_value":979},"geometry":{"type":"LineString","coordinates":[[117.4971,4.0637],[117.4827,4.0627],[117.4782,4.0516],[117.4831,4.05],[117.4849,4.0542],[117.4971,4.0637]]}},{"type":"Feature","properties":{"mhid":"1332:378","alt_name":"KABUPATEN NUNUKAN","latitude":4.13333,"longitude":116.7,"sample_value":979},"geometry":{"type":"LineString","coordinates":[[117.5822,4.1451],[117.5731,4.1445],[117.5585,4.1409],[117.5485,4.1363],[117.5393,4.1223],[117.5353,4.1124],[117.5386,4.1033],[117.5472,4.1016],[117.5537,4.0985],[117.5638,4.1061],[117.5767,4.1202],[117.583,4.1297],[117.5891,4.1418],[117.5822,4.1451]]}},{"type":"Feature","properties":{"mhid":"1332:378","alt_name":"KABUPATEN NUNUKAN","latitude":4.13333,"longitude":116.7,"sample_value":979},"geometry":{"type":"LineString","coordinates":[[117.724,3.9898],[117.7241,3.9962],[117.7286,4.0149],[117.7375,4.0294],[117.7434,4.0343],[117.7474,4.0475],[117.7525,4.0587],[117.7514,4.062],[117.7426,4.0692],[117.7315,4.0768],[117.7264,4.0823],[117.7174,4.0896],[117.7116,4.0956],[117.6914,4.1208],[117.6693,4.1439],[117.6566,4.1472],[117.6449,4.1431],[117.6325,4.1367],[117.6178,4.121],[117.6034,4.0995],[117.5926,4.0874],[117.59,4.0794],[117.5944,4.0661],[117.5955,4.0486],[117.6001,4.0346],[117.6014,4.0282],[117.6021,4.0118],[117.6125,4.0012],[117.6258,3.9894],[117.6307,3.9888],[117.632,3.9859],[117.6385,3.9811],[117.6477,3.9774],[117.6537,3.9762],[117.662,3.969],[117.6685,3.9665],[117.6778,3.9675],[117.6915,3.9751],[117.7087,3.9821],[117.716,3.9839],[117.724,3.9898]]}},{"type":"Feature","properties":{"mhid":"1332:378","alt_name":"KABUPATEN NUNUKAN","latitude":4.13333,"longitude":116.7,"sample_value":979},"geometry":{"type":"LineString","coordinates":[[117.7129,4.1658],[117.6988,4.1658],[117.6864,4.1641],[117.6898,4.1606],[117.6971,4.1566],[117.7073,4.148],[117.7182,4.1366],[117.7289,4.1232],[117.7384,4.1162],[117.7449,4.1102],[117.7552,4.1052],[117.7687,4.0928],[117.7845,4.0845],[117.799,4.0752],[117.8036,4.0745],[117.8138,4.069],[117.8263,4.0571],[117.8323,4.054],[117.8417,4.0462],[117.8476,4.0389],[117.8553,4.0328],[117.863,4.0314],[117.8799,4.0352],[117.8952,4.0446],[117.9014,4.042],[117.9079,4.0436],[117.9123,4.0481],[117.9229,4.0617],[117.9227,4.0735],[117.918,4.0849],[117.9186,4.0971],[117.9239,4.12],[117.9239,4.128],[117.9209,4.1362],[117.9159,4.1429],[117.9074,4.1505],[117.901,4.1645],[117.8372,4.165],[117.8371,4.1646],[117.7629,4.1658],[117.7129,4.1658]]}},{"type":"Feature","properties":{"mhid":"1332:378","alt_name":"KABUPATEN NUNUKAN","latitude":4.13333,"longitude":116.7,"sample_value":979},"geometry":{"type":"LineString","coordinates":[[117.4896,3.6702],[117.4833,3.6745],[117.4779,3.6741],[117.4709,3.6681],[117.4617,3.6695],[117.4567,3.6754],[117.4531,3.6748],[117.4463,3.6704],[117.4286,3.6716],[117.4248,3.6749],[117.4249,3.6808],[117.4343,3.6913],[117.4374,3.6915],[117.4425,3.7011],[117.4455,3.7031],[117.4714,3.712],[117.479,3.7165],[117.4818,3.7199],[117.4877,3.7226],[117.481,3.7265],[117.4835,3.745],[117.4773,3.7489],[117.4761,3.7551],[117.4808,3.7646],[117.4931,3.7746],[117.4969,3.7759],[117.5002,3.7737],[117.4998,3.7681],[117.5026,3.7663],[117.5071,3.7681],[117.5117,3.7725],[117.5205,3.7767],[117.5258,3.7749],[117.5321,3.7682],[117.5489,3.7809],[117.5561,3.7852],[117.5629,3.7854],[117.5719,3.782],[117.5796,3.7826],[117.5912,3.7958],[117.5966,3.7973],[117.6007,3.7938],[117.6007,3.7872],[117.5985,3.7801],[117.5994,3.7757],[117.6116,3.7752],[117.6198,3.7806],[117.6333,3.7805],[117.6394,3.7782],[117.6489,3.7717],[117.6524,3.7737],[117.6573,3.7851],[117.6624,3.7878],[117.6668,3.7874],[117.6768,3.7819],[117.6799,3.7851],[117.6797,3.7938],[117.6824,3.796],[117.6891,3.791],[117.6951,3.7907],[117.6854,3.8021],[117.6854,3.8054],[117.693,3.8084],[117.6934,3.8126],[117.6971,3.8148],[117.7066,3.8155],[117.7087,3.8199],[117.7165,3.8178],[117.7271,3.8183],[117.7306,3.815],[117.7344,3.8355],[117.7228,3.8409],[117.7078,3.8568],[117.6934,3.8673],[117.6742,3.8775],[117.6685,3.8786],[117.6606,3.878],[117.6471,3.8752],[117.6199,3.8736],[117.6031,3.8752],[117.5927,3.8784],[117.5825,3.8849],[117.5783,3.8898],[117.5675,3.9072],[117.559,3.9148],[117.5449,3.9209],[117.5332,3.9245],[117.5258,3.9246],[117.5206,3.9227],[117.5098,3.9161],[117.5017,3.9133],[117.4894,3.9143],[117.4781,3.9213],[117.4647,3.9257],[117.4578,3.9291],[117.4565,3.9407],[117.4628,3.9516],[117.4643,3.9569],[117.4637,3.9623],[117.4607,3.9684],[117.4562,3.9706],[117.4571,3.9749],[117.4549,3.9863],[117.4482,3.9922],[117.4474,3.9956],[117.4393,4.0039],[117.4382,4.0138],[117.4411,4.0172],[117.4462,4.0296],[117.4492,4.0347],[117.456,4.0423],[117.4652,4.0487],[117.4677,4.0547],[117.4677,4.0613],[117.4738,4.0718],[117.4723,4.0791],[117.4667,4.0835],[117.4457,4.0891],[117.4347,4.093],[117.4248,4.0946],[117.4203,4.0995],[117.4172,4.1088],[117.4175,4.1131],[117.4235,4.1206],[117.4343,4.1269],[117.4433,4.1283],[117.4566,4.1224],[117.47,4.1173],[117.4812,4.1113],[117.4861,4.1108],[117.4915,4.1127],[117.4989,4.1073],[117.5088,4.1038],[117.5218,4.1014],[117.524,4.1038],[117.5315,4.1192],[117.5423,4.1361],[117.5499,4.1443],[117.5703,4.1518],[117.5887,4.1623],[117.593,4.1703],[117.5889,4.1742],[117.582,4.1779],[117.5723,4.1796],[117.5625,4.1765],[117.556,4.1705],[117.5473,4.1669],[117.5449,4.1611],[117.5388,4.1583],[117.5309,4.1583],[117.5265,4.1622],[117.5153,4.1663],[117.5093,4.1699],[117.4982,4.1721],[117.4938,4.171],[117.4901,4.1744],[117.4872,4.1734],[117.4836,4.1681],[117.4791,4.1685],[117.4723,4.1726],[117.466,4.1742],[117.4542,4.1862],[117.4434,4.1909],[117.4412,4.1952],[117.4425,4.2],[117.4368,4.2078],[117.4288,4.2123],[117.4277,4.2178],[117.4245,4.2219],[117.4294,4.2236],[117.4297,4.2297],[117.4242,4.233],[117.4128,4.2367],[117.41,4.2407],[117.4126,4.2459],[117.4123,4.25],[117.4074,4.2543],[117.4006,4.2557],[117.3959,4.2585],[117.3888,4.2572],[117.3836,4.2606],[117.3813,4.2659],[117.3759,4.2687],[117.3723,4.2768],[117.3726,4.2844],[117.3644,4.2854],[117.3545,4.2885],[117.3486,4.2889],[117.3407,4.2923],[117.3196,4.3037],[117.3176,4.3001],[117.3132,4.2997],[117.3093,4.3029],[117.3092,4.3074],[117.3063,4.3103],[117.2959,4.3095],[117.2911,4.3134],[117.286,4.3221],[117.2855,4.3326],[117.2741,4.3414],[117.2736,4.3452],[117.2654,4.3556],[117.2602,4.3594],[117.2572,4.3592],[117.2495,4.3647],[117.2499,4.3711],[117.2469,4.3734],[117.236,4.3687],[117.227,4.3694],[117.2251,4.3638],[117.2196,4.361],[117.2157,4.3548],[117.2133,4.3543],[117.2076,4.3423],[117.2001,4.3356],[117.1901,4.3383],[117.1773,4.3357],[117.1704,4.3366],[117.1659,4.3403],[117.1647,4.3441],[117.1568,4.3532],[117.1507,4.3535],[117.1433,4.351],[117.1443,4.3461],[117.1417,4.3432],[117.1353,4.3448],[117.1301,4.3425],[117.1197,4.34],[117.1155,4.3351],[117.1044,4.3332],[117.0945,4.3357],[117.0852,4.3334],[117.0799,4.3358],[117.0731,4.336],[117.0658,4.3385],[117.0625,4.3417],[117.0555,4.3417],[117.0493,4.3463],[117.0403,4.3456],[117.031,4.3404],[117.0219,4.3203],[117.0196,4.3189],[117.0062,4.3213],[117.0085,4.3423],[117.0079,4.3457],[117.0027,4.3464],[116.9941,4.3428],[116.9838,4.3408],[116.976,4.3434],[116.9722,4.339],[116.9672,4.3376],[116.9613,4.3458],[116.9582,4.3469],[116.9534,4.3571],[116.9466,4.3588],[116.9436,4.3573],[116.924,4.3617],[116.9218,4.3645],[116.917,4.365],[116.9106,4.3678],[116.9015,4.3663],[116.899,4.3614],[116.8896,4.3509],[116.884,4.3471],[116.8772,4.3474],[116.8716,4.3383],[116.8673,4.3367],[116.8616,4.3387],[116.8591,4.3363],[116.8501,4.3389],[116.8471,4.3296],[116.8434,4.3262],[116.8344,4.326],[116.8306,4.3312],[116.8255,4.3321],[116.8209,4.3367],[116.8182,4.3473],[116.8067,4.3506],[116.7973,4.3387],[116.791,4.3383],[116.7853,4.3416],[116.7831,4.3491],[116.784,4.3555],[116.777,4.3655],[116.7733,4.3673],[116.7701,4.3754],[116.7578,4.3832],[116.7535,4.3897],[116.7509,4.3898],[116.7474,4.3845],[116.7417,4.3827],[116.7396,4.366],[116.7353,4.3602],[116.7329,4.3527],[116.7276,4.3485],[116.7183,4.3458],[116.7098,4.3412],[116.7065,4.334],[116.7015,4.334],[116.6934,4.3402],[116.6856,4.3412],[116.681,4.3464],[116.6744,4.3503],[116.667,4.3518],[116.66,4.3488],[116.6568,4.339],[116.6534,4.337],[116.6478,4.3388],[116.639,4.3371],[116.6283,4.3369],[116.6249,4.3397],[116.6211,4.3371],[116.6179,4.3426],[116.62,4.3543],[116.6162,4.3637],[116.6154,4.3729],[116.6109,4.3779],[116.6042,4.3793],[116.5983,4.3739],[116.5874,4.3748],[116.5866,4.381],[116.5798,4.392],[116.5757,4.3965],[116.5723,4.4034],[116.5682,4.4069],[116.5652,4.4062],[116.5633,4.3957],[116.5636,4.3905],[116.5573,4.3872],[116.5483,4.3852],[116.5462,4.3797],[116.538,4.377],[116.5358,4.3726],[116.5322,4.355],[116.5302,4.349],[116.531,4.3451],[116.5385,4.3379],[116.5401,4.3305],[116.536,4.3212],[116.5313,4.3225],[116.5293,4.3259],[116.5226,4.3264],[116.5175,4.3245],[116.505,4.3254],[116.4999,4.3327],[116.4892,4.3346],[116.4864,4.3283],[116.4885,4.3219],[116.4823,4.3155],[116.483,4.3092],[116.4778,4.3019],[116.4706,4.3],[116.4621,4.2941],[116.4555,4.2966],[116.4493,4.2905],[116.4433,4.2882],[116.4382,4.2915],[116.4369,4.3071],[116.4371,4.3232],[116.4282,4.3296],[116.4242,4.3267],[116.4188,4.3267],[116.4184,4.3325],[116.4156,4.3367],[116.4075,4.3443],[116.4035,4.3591],[116.3977,4.3624],[116.3889,4.3587],[116.382,4.3628],[116.3818,4.3687],[116.3795,4.3747],[116.3656,4.379],[116.3621,4.3838],[116.3558,4.3886],[116.3494,4.3893],[116.3388,4.3848],[116.3289,4.3845],[116.322,4.3817],[116.3174,4.373],[116.3063,4.3684],[116.2933,4.372],[116.286,4.3667],[116.2798,4.3597],[116.275,4.3626],[116.2621,4.3614],[116.2578,4.367],[116.254,4.3755],[116.2342,4.377],[116.2247,4.3789],[116.2201,4.3816],[116.2099,4.379],[116.2046,4.3739],[116.2011,4.3732],[116.1988,4.3772],[116.1874,4.3809],[116.1797,4.3806],[116.1711,4.3846],[116.1704,4.3899],[116.1676,4.3912],[116.1615,4.3779],[116.1587,4.3655],[116.1565,4.3492],[116.1561,4.3402],[116.1544,4.3391],[116.1444,4.3394],[116.1402,4.3371],[116.1337,4.3304],[116.1287,4.33],[116.1185,4.3342],[116.1129,4.3333],[116.1103,4.3246],[116.105,4.3244],[116.1041,4.3215],[116.096,4.3153],[116.0918,4.3056],[116.0863,4.3034],[116.0864,4.2967],[116.0839,4.286],[116.0782,4.2771],[116.074,4.277],[116.0566,4.2828],[116.0494,4.29],[116.0418,4.291],[116.0342,4.295],[116.0318,4.2988],[116.0316,4.3069],[116.0334,4.3187],[116.0307,4.3222],[116.031,4.3286],[116.0269,4.3322],[116.0193,4.3331],[116.0134,4.336],[116.0065,4.3357],[116.0037,4.3433],[115.9999,4.3478],[115.9921,4.3493],[115.9888,4.3524],[115.985,4.351],[115.9782,4.3536],[115.9759,4.3576],[115.9628,4.3536],[115.9538,4.3593],[115.9462,4.3562],[115.9417,4.3568],[115.9364,4.3537],[115.9301,4.3536],[115.9219,4.3617],[115.9201,4.3671],[115.9151,4.371],[115.9152,4.3774],[115.9071,4.3924],[115.9001,4.3953],[115.8868,4.3915],[115.8778,4.3924],[115.8729,4.3855],[115.8697,4.3736],[115.8709,4.3692],[115.8693,4.3589],[115.8726,4.3541],[115.868,4.3473],[115.8641,4.3462],[115.865,4.3367],[115.8632,4.3337],[115.8649,4.3205],[115.864,4.3173],[115.8681,4.3084],[115.8687,4.3021],[115.8751,4.2953],[115.8695,4.2852],[115.8636,4.2854],[115.8612,4.281],[115.8539,4.2812],[115.8491,4.2785],[115.8492,4.2731],[115.8381,4.2653],[115.8267,4.2634],[115.8236,4.2604],[115.8281,4.2517],[115.8263,4.2484],[115.826,4.2412],[115.8287,4.2334],[115.8237,4.2311],[115.8173,4.2245],[115.8084,4.2259],[115.8016,4.2198],[115.7985,4.2251],[115.7957,4.2376],[115.7895,4.2403],[115.7761,4.2419],[115.7719,4.2441],[115.7664,4.2443],[115.7636,4.2335],[115.7592,4.2289],[115.7565,4.2178],[115.7504,4.211],[115.7456,4.2105],[115.7423,4.2135],[115.7319,4.2078],[115.7318,4.2018],[115.7286,4.1902],[115.7255,4.1891],[115.7187,4.1938],[115.7097,4.1925],[115.7028,4.1947],[115.6969,4.1856],[115.6964,4.1803],[115.6887,4.1746],[115.6874,4.1652],[115.6828,4.1605],[115.681,4.1486],[115.6826,4.1445],[115.6813,4.1372],[115.6836,4.1323],[115.6816,4.1287],[115.6757,4.1243],[115.6756,4.1151],[115.6741,4.1123],[115.6769,4.1079],[115.6774,4.1021],[115.6748,4.0972],[115.676,4.0855],[115.6732,4.0806],[115.6666,4.0634],[115.6636,4.0592],[115.6611,4.052],[115.6612,4.0476],[115.6584,4.0379],[115.6532,4.0334],[115.6526,4.0205],[115.6492,4.0083],[115.6484,4.0002],[115.6495,3.9962],[115.6437,3.9733],[115.6405,3.9701],[115.6405,3.9638],[115.6322,3.9573],[115.626,3.9445],[115.6162,3.937],[115.6084,3.9395],[115.5981,3.939],[115.5906,3.9431],[115.5846,3.9395],[115.5798,3.9402],[115.5778,3.935],[115.5668,3.9203],[115.5576,3.9174],[115.5691,3.9047],[115.5745,3.9007],[115.5761,3.8936],[115.5816,3.887],[115.5857,3.885],[115.592,3.8895],[115.5962,3.8879],[115.5962,3.8801],[115.6042,3.875],[115.6069,3.8775],[115.617,3.875],[115.6178,3.8612],[115.6146,3.8457],[115.6168,3.8414],[115.6138,3.8327],[115.6127,3.8235],[115.6066,3.8154],[115.6027,3.8002],[115.5946,3.7913],[115.5924,3.7836],[115.5895,3.7824],[115.5882,3.7758],[115.592,3.7712],[115.5851,3.7604],[115.5859,3.7558],[115.5783,3.75],[115.5774,3.7402],[115.5793,3.7356],[115.58,3.7279],[115.576,3.7243],[115.5735,3.7191],[115.5776,3.7151],[115.581,3.7065],[115.5823,3.6961],[115.5799,3.692],[115.5723,3.6839],[115.5713,3.6779],[115.5738,3.6702],[115.5721,3.6628],[115.5708,3.6459],[115.5771,3.6409],[115.5814,3.6335],[115.5766,3.6271],[115.5786,3.62],[115.5767,3.6075],[115.5777,3.6007],[115.5808,3.5947],[115.5878,3.5871],[115.5889,3.5787],[115.5962,3.5759],[115.6001,3.5765],[115.6065,3.5676],[115.6076,3.559],[115.6127,3.5463],[115.6118,3.5309],[115.6088,3.5238],[115.6089,3.517],[115.6123,3.5059],[115.6211,3.4966],[115.6249,3.4893],[115.6251,3.4849],[115.6281,3.4775],[115.6328,3.4773],[115.6348,3.4734],[115.6339,3.4645],[115.6374,3.4622],[115.6414,3.4512],[115.6509,3.4481],[115.6543,3.4416],[115.6601,3.4377],[115.6749,3.4276],[115.691,3.4062],[115.6999,3.4026],[115.7029,3.4163],[115.7083,3.4282],[115.7142,3.4377],[115.7291,3.4449],[115.7428,3.4478],[115.7563,3.4467],[115.7624,3.4474],[115.7691,3.463],[115.779,3.4637],[115.79,3.4624],[115.8008,3.4636],[115.8073,3.4704],[115.8054,3.4827],[115.8054,3.4895],[115.8119,3.4923],[115.8187,3.4935],[115.826,3.4913],[115.8316,3.4876],[115.8386,3.4916],[115.8451,3.4898],[115.8506,3.4864],[115.8562,3.4717],[115.8838,3.4696],[115.8971,3.4756],[115.9055,3.4877],[115.9115,3.4937],[115.9259,3.4997],[115.938,3.5081],[115.9488,3.5129],[115.9608,3.5153],[115.9681,3.5226],[115.9777,3.5526],[115.9589,3.5784],[115.9568,3.5863],[115.9524,3.5964],[115.9517,3.608],[115.9561,3.6203],[115.9503,3.626],[115.9355,3.6376],[115.9333,3.6426],[115.9337,3.6517],[115.925,3.6646],[115.9203,3.6755],[115.9142,3.6816],[115.912,3.6899],[115.9174,3.7065],[115.9214,3.7144],[115.9247,3.7264],[115.9279,3.7527],[115.9326,3.7567],[115.9438,3.7603],[115.9441,3.7679],[115.9478,3.7726],[115.9488,3.7772],[115.9476,3.7849],[115.9404,3.7921],[115.9268,3.7982],[115.9229,3.8043],[115.9229,3.8209],[115.9257,3.8267],[115.9236,3.8354],[115.9164,3.8368],[115.9091,3.8408],[115.9095,3.8483],[115.9135,3.861],[115.9135,3.8761],[115.9243,3.8776],[115.9268,3.8823],[115.9203,3.8942],[115.9236,3.9068],[115.9207,3.9148],[115.92,3.9249],[115.9221,3.9314],[115.9301,3.944],[115.9326,3.9512],[115.9398,3.9563],[115.9467,3.957],[115.9514,3.9602],[115.9506,3.9664],[115.9503,3.9877],[115.9517,3.9974],[115.9575,4.0043],[115.9608,4.0143],[115.9608,4.0369],[115.965,4.0474],[115.9633,4.0599],[115.9589,4.0717],[115.9582,4.0923],[115.9604,4.1078],[115.9658,4.1183],[115.9709,4.1179],[115.9759,4.1132],[115.9813,4.1024],[115.9896,4.0945],[116.0041,4.0896],[116.0243,4.0897],[116.0287,4.0818],[116.0315,4.08],[116.0387,4.0839],[116.0443,4.0841],[116.0613,4.0969],[116.072,4.1002],[116.0743,4.1062],[116.078,4.11],[116.082,4.1109],[116.0858,4.1179],[116.0949,4.1167],[116.1067,4.1119],[116.1162,4.1134],[116.126,4.1209],[116.1359,4.1151],[116.1394,4.116],[116.1473,4.1106],[116.1647,4.1125],[116.1675,4.1115],[116.1616,4.0913],[116.1697,4.0901],[116.1796,4.0864],[116.1851,4.0797],[116.1982,4.0747],[116.2064,4.0742],[116.2183,4.0803],[116.2228,4.0791],[116.2327,4.0659],[116.2355,4.0587],[116.237,4.0468],[116.2495,4.0431],[116.2618,4.0424],[116.2688,4.0401],[116.2751,4.041],[116.2774,4.0456],[116.2781,4.0522],[116.2839,4.058],[116.2885,4.058],[116.2936,4.0519],[116.3006,4.0487],[116.3081,4.0512],[116.312,4.0589],[116.319,4.0629],[116.3311,4.057],[116.336,4.0505],[116.3371,4.0443],[116.3423,4.0408],[116.3511,4.037],[116.3548,4.0338],[116.3533,4.027],[116.3532,4.0182],[116.355,4.0083],[116.3643,4.0001],[116.3697,3.9934],[116.3773,3.9956],[116.3921,3.9918],[116.3839,3.9827],[116.3833,3.9716],[116.3865,3.9688],[116.3848,3.9479],[116.3893,3.9318],[116.3948,3.9277],[116.401,3.9161],[116.4105,3.8923],[116.418,3.8872],[116.4199,3.8793],[116.4187,3.8755],[116.4208,3.8674],[116.4243,3.8651],[116.432,3.855],[116.4354,3.854],[116.437,3.8457],[116.4458,3.8369],[116.4508,3.8298],[116.4544,3.8194],[116.4578,3.8154],[116.4629,3.8126],[116.4664,3.8079],[116.4676,3.7943],[116.478,3.7811],[116.4778,3.7727],[116.4762,3.7682],[116.4771,3.7633],[116.4826,3.7566],[116.4887,3.7451],[116.4993,3.7432],[116.5031,3.7481],[116.512,3.7482],[116.5203,3.7432],[116.5268,3.7339],[116.5348,3.7258],[116.5422,3.721],[116.5465,3.7201],[116.5544,3.7216],[116.5699,3.7222],[116.5734,3.7201],[116.5762,3.7006],[116.5799,3.6929],[116.5887,3.691],[116.6085,3.6914],[116.6184,3.6929],[116.6283,3.6969],[116.6448,3.6995],[116.6532,3.702],[116.6614,3.7033],[116.6894,3.6991],[116.7054,3.6982],[116.7164,3.6996],[116.7307,3.6906],[116.7358,3.6779],[116.7383,3.6745],[116.7391,3.6633],[116.738,3.6597],[116.7432,3.6568],[116.748,3.6513],[116.7593,3.6445],[116.7612,3.6419],[116.7612,3.6596],[116.743,3.6811],[116.7705,3.6953],[116.7942,3.6929],[116.8147,3.6883],[116.8239,3.6873],[116.8263,3.6852],[116.8357,3.6874],[116.8385,3.6863],[116.8477,3.6921],[116.8862,3.7034],[116.9118,3.7099],[116.9382,3.7148],[116.9561,3.7149],[117.0217,3.7014],[117.0932,3.6807],[117.1277,3.6762],[117.1638,3.673],[117.1964,3.6692],[117.2309,3.6606],[117.2566,3.6492],[117.2764,3.6418],[117.2969,3.6365],[117.3168,3.6368],[117.3293,3.6381],[117.3843,3.6454],[117.4496,3.6527],[117.4683,3.6564],[117.4763,3.6596],[117.4844,3.6648],[117.4896,3.6702]]}},{"type":"Feature","properties":{"mhid":"1332:379","alt_name":"KOTA TARAKAN","latitude":3.36667,"longitude":117.6,"sample_value":807},"geometry":{"type":"LineString","coordinates":[[117.5265,3.3428],[117.5265,3.3481],[117.5211,3.3485],[117.5206,3.3429],[117.5265,3.3428]]}},{"type":"Feature","properties":{"mhid":"1332:379","alt_name":"KOTA TARAKAN","latitude":3.36667,"longitude":117.6,"sample_value":807},"geometry":{"type":"LineString","coordinates":[[117.6075,3.4348],[117.6016,3.4371],[117.5854,3.4352],[117.5719,3.4327],[117.5598,3.4336],[117.5556,3.4363],[117.5506,3.4357],[117.5373,3.4246],[117.535,3.419],[117.5213,3.4094],[117.521,3.405],[117.5163,3.4002],[117.5144,3.3868],[117.5147,3.3809],[117.5187,3.3675],[117.5313,3.3526],[117.5367,3.3438],[117.5409,3.3273],[117.5421,3.3255],[117.5532,3.319],[117.5666,3.309],[117.5794,3.2962],[117.5943,3.2795],[117.6021,3.2819],[117.6063,3.279],[117.6097,3.2797],[117.6119,3.2699],[117.6186,3.2531],[117.6287,3.2417],[117.6334,3.2392],[117.6419,3.2373],[117.6498,3.24],[117.6566,3.2501],[117.6566,3.267],[117.6576,3.2795],[117.6574,3.2904],[117.655,3.2908],[117.659,3.317],[117.6581,3.3293],[117.6591,3.335],[117.6618,3.3401],[117.6615,3.347],[117.665,3.3585],[117.6689,3.3619],[117.6679,3.3687],[117.6655,3.3696],[117.6661,3.3764],[117.6649,3.3823],[117.6671,3.391],[117.6691,3.3923],[117.6687,3.4032],[117.6648,3.4105],[117.652,3.4159],[117.6491,3.4157],[117.6348,3.4242],[117.6241,3.4315],[117.6183,3.4344],[117.6075,3.4348]]}},{"type":"Feature","properties":{"mhid":"1332:380","alt_name":"KABUPATEN BOLAANG MONGONDOW","latitude":0.75,"longitude":124.08333,"sample_value":260},"geometry":{"type":"LineString","coordinates":[[124.2982,1.0072],[124.2974,1.0097],[124.29,1.0045],[124.282,1.0008],[124.2724,0.9987],[124.2625,1.0001],[124.2583,1.0023],[124.2518,0.9999],[124.2434,0.9995],[124.2354,0.9927],[124.2283,0.9898],[124.219,0.9899],[124.2156,0.9929],[124.21,0.9876],[124.2032,0.9897],[124.191,0.9831],[124.1842,0.974],[124.1819,0.9685],[124.177,0.9633],[124.1757,0.9577],[124.1585,0.9455],[124.1477,0.9343],[124.1366,0.9279],[124.1236,0.9243],[124.1162,0.9214],[124.0984,0.9198],[124.0945,0.9229],[124.078,0.9231],[124.0716,0.9215],[124.0587,0.9146],[124.0463,0.9093],[124.0463,0.9074],[124.032,0.8984],[124.0162,0.8934],[124.0011,0.8855],[123.9742,0.8768],[123.9622,0.868],[123.9505,0.8627],[123.9319,0.8601],[123.9295,0.858],[123.9391,0.8522],[123.9433,0.8484],[123.9527,0.8508],[123.953,0.8458],[123.9629,0.8447],[123.9593,0.8371],[123.9513,0.8373],[123.9449,0.8391],[123.9422,0.8368],[123.9349,0.8356],[123.9339,0.8413],[123.9291,0.8399],[123.9167,0.8467],[123.9109,0.8469],[123.9,0.8452],[123.8966,0.8433],[123.8801,0.8389],[123.8713,0.8384],[123.858,0.8401],[123.8499,0.8448],[123.8414,0.8403],[123.8339,0.8399],[123.8187,0.842],[123.8118,0.8449],[123.8068,0.85],[123.7998,0.8534],[123.7916,0.8555],[123.7954,0.8491],[123.8038,0.8417],[123.8023,0.8354],[123.7958,0.8328],[123.7901,0.833],[123.7881,0.8299],[123.7827,0.8316],[123.775,0.8404],[123.7694,0.8375],[123.7645,0.8437],[123.7612,0.8524],[123.7582,0.8449],[123.7624,0.8404],[123.7629,0.8348],[123.7588,0.8345],[123.7525,0.8307],[123.7467,0.8351],[123.747,0.8403],[123.74,0.8446],[123.7371,0.8492],[123.7355,0.8567],[123.7367,0.8645],[123.7307,0.8629],[123.7224,0.8673],[123.7182,0.867],[123.717,0.871],[123.7132,0.874],[123.7081,0.8697],[123.707,0.8584],[123.7003,0.8586],[123.6967,0.8614],[123.6908,0.8598],[123.6866,0.8471],[123.6882,0.8367],[123.6851,0.8263],[123.6805,0.8204],[123.6801,0.8172],[123.6856,0.8061],[123.6863,0.7997],[123.6933,0.7877],[123.6923,0.7848],[123.6939,0.7784],[123.7014,0.7701],[123.7024,0.7624],[123.7068,0.7628],[123.7102,0.7594],[123.7084,0.7514],[123.7044,0.7484],[123.7034,0.7388],[123.7003,0.7318],[123.7074,0.731],[123.7138,0.725],[123.7183,0.7252],[123.7197,0.7176],[123.7222,0.713],[123.7273,0.7116],[123.7263,0.7043],[123.7292,0.6951],[123.7351,0.6917],[123.7402,0.6853],[123.7401,0.6776],[123.7375,0.6713],[123.7314,0.6674],[123.7283,0.6596],[123.7314,0.6542],[123.7257,0.6442],[123.7257,0.6379],[123.7171,0.6358],[123.7161,0.6325],[123.7089,0.6251],[123.7063,0.6186],[123.6984,0.6126],[123.6921,0.6112],[123.6781,0.6108],[123.6664,0.6171],[123.6537,0.6135],[123.6427,0.608],[123.6347,0.6012],[123.6343,0.588],[123.6422,0.5808],[123.6437,0.5735],[123.6492,0.5726],[123.6601,0.5666],[123.677,0.5651],[123.6825,0.5627],[123.7054,0.5671],[123.7096,0.5706],[123.7144,0.5624],[123.7136,0.5475],[123.7174,0.5366],[123.7204,0.5314],[123.7212,0.5259],[123.7161,0.5121],[123.7107,0.5036],[123.7008,0.4958],[123.6959,0.4878],[123.6918,0.4866],[123.6912,0.4745],[123.6957,0.464],[123.698,0.4619],[123.6986,0.456],[123.7074,0.4563],[123.7135,0.4667],[123.7183,0.4637],[123.7246,0.4646],[123.7274,0.4614],[123.7382,0.4652],[123.7412,0.4615],[123.7466,0.4608],[123.75,0.4571],[123.7606,0.4601],[123.767,0.4545],[123.7764,0.4548],[123.7801,0.4462],[123.7904,0.4427],[123.8019,0.4413],[123.8046,0.4439],[123.8124,0.4432],[123.8174,0.4452],[123.8266,0.4433],[123.8338,0.4519],[123.8394,0.4547],[123.8455,0.4546],[123.8601,0.4591],[123.869,0.4529],[123.8761,0.4533],[123.8822,0.4488],[123.8871,0.4484],[123.8913,0.4509],[123.8967,0.4489],[123.9055,0.4435],[123.9044,0.4376],[123.9105,0.4341],[123.9168,0.4332],[123.9218,0.4344],[123.9294,0.4316],[123.9334,0.4328],[123.9393,0.4411],[123.9476,0.4425],[123.9499,0.4474],[123.951,0.4559],[123.962,0.4607],[123.9745,0.4631],[123.9824,0.462],[123.9903,0.4634],[123.9923,0.468],[124.0017,0.4669],[124.0242,0.4769],[124.0235,0.483],[124.0262,0.486],[124.0326,0.4873],[124.0329,0.4925],[124.0377,0.4964],[124.0454,0.4967],[124.0475,0.5025],[124.0463,0.5085],[124.0493,0.5117],[124.0629,0.5185],[124.0742,0.5139],[124.08,0.5176],[124.0871,0.5175],[124.0956,0.5197],[124.1026,0.5262],[124.1069,0.5247],[124.1131,0.5273],[124.1158,0.5364],[124.122,0.5406],[124.1306,0.5447],[124.1327,0.5536],[124.1378,0.5533],[124.1387,0.5582],[124.1443,0.5595],[124.1509,0.5573],[124.1606,0.5617],[124.1667,0.5554],[124.1672,0.5506],[124.171,0.5459],[124.1779,0.5429],[124.1809,0.5392],[124.1764,0.5317],[124.1777,0.5259],[124.1837,0.528],[124.1946,0.5276],[124.198,0.5308],[124.2126,0.538],[124.2219,0.5398],[124.2303,0.5396],[124.2341,0.5414],[124.2458,0.5421],[124.2588,0.5452],[124.2664,0.5425],[124.274,0.5444],[124.2829,0.5558],[124.2907,0.5566],[124.298,0.5621],[124.3016,0.5729],[124.3105,0.5777],[124.3129,0.5813],[124.3201,0.583],[124.3222,0.5927],[124.3261,0.6002],[124.3304,0.6053],[124.3376,0.6169],[124.3353,0.6257],[124.3365,0.6338],[124.3391,0.6376],[124.3404,0.6481],[124.3436,0.6522],[124.3422,0.6604],[124.3478,0.6676],[124.3601,0.6767],[124.3605,0.6826],[124.3575,0.6917],[124.3548,0.6961],[124.3512,0.6976],[124.349,0.7086],[124.3385,0.71],[124.3326,0.7136],[124.3285,0.7102],[124.3248,0.704],[124.3184,0.701],[124.3063,0.6979],[124.3034,0.695],[124.2937,0.6943],[124.2951,0.6979],[124.2888,0.701],[124.2774,0.7094],[124.2733,0.7093],[124.2717,0.716],[124.2746,0.7286],[124.2781,0.7314],[124.2772,0.7372],[124.2745,0.7406],[124.2788,0.7455],[124.2862,0.7476],[124.2939,0.7525],[124.2996,0.7524],[124.3093,0.7559],[124.3075,0.7614],[124.3153,0.7646],[124.3219,0.7697],[124.3287,0.7698],[124.3358,0.7667],[124.3414,0.768],[124.3472,0.7663],[124.3448,0.7552],[124.3535,0.7547],[124.3644,0.7573],[124.3695,0.76],[124.3801,0.7618],[124.3831,0.7648],[124.3987,0.7689],[124.4044,0.7675],[124.4092,0.77],[124.417,0.7692],[124.4199,0.7806],[124.4231,0.7857],[124.4289,0.788],[124.4337,0.7925],[124.4322,0.7973],[124.4276,0.8026],[124.4191,0.8049],[124.4201,0.8126],[124.4287,0.8137],[124.4326,0.8166],[124.4365,0.826],[124.434,0.8331],[124.428,0.8367],[124.4242,0.8369],[124.4202,0.8432],[124.4152,0.8479],[124.4068,0.8517],[124.407,0.8591],[124.4013,0.8593],[124.3916,0.8619],[124.3898,0.864],[124.3824,0.8662],[124.379,0.8702],[124.3805,0.8788],[124.3787,0.8825],[124.3814,0.8892],[124.3786,0.9015],[124.3776,0.9131],[124.3704,0.9189],[124.3678,0.9226],[124.3679,0.9276],[124.3702,0.9324],[124.37,0.9379],[124.3725,0.9437],[124.3711,0.9486],[124.3753,0.9525],[124.3758,0.9575],[124.3705,0.9637],[124.3684,0.9613],[124.3621,0.9686],[124.3573,0.9763],[124.358,0.9818],[124.3558,0.9868],[124.3516,0.9861],[124.3421,0.9909],[124.3365,0.9884],[124.3315,0.9897],[124.3242,0.9983],[124.3202,1.0007],[124.3168,1.0081],[124.309,1.0051],[124.3043,1.0012],[124.2975,1.003],[124.2982,1.0072]]}},{"type":"Feature","properties":{"mhid":"1332:381","alt_name":"KABUPATEN MINAHASA","latitude":1.2537,"longitude":124.83,"sample_value":401},"geometry":{"type":"MultiLineString","coordinates":[[[124.8916,1.4584],[124.8852,1.4542],[124.8834,1.4618],[124.8728,1.4656],[124.8708,1.4602],[124.8708,1.4544],[124.8682,1.4482],[124.8636,1.4496],[124.8612,1.4461],[124.8612,1.4367],[124.8551,1.4373],[124.8507,1.4401],[124.8469,1.4369],[124.8345,1.4353],[124.8302,1.4312],[124.8162,1.4326],[124.8114,1.4364],[124.7952,1.4428],[124.787,1.4438],[124.7848,1.446],[124.7836,1.4547],[124.7843,1.4612],[124.778,1.4596],[124.7723,1.4608],[124.7662,1.4579],[124.7524,1.4539],[124.7449,1.4491],[124.7423,1.4443],[124.7412,1.4366],[124.7304,1.4322],[124.7256,1.4261],[124.7107,1.4197],[124.708,1.4194],[124.7071,1.4112],[124.703,1.4084],[124.6893,1.4091],[124.6851,1.4068],[124.6832,1.3998],[124.6799,1.3964],[124.6707,1.3943],[124.6646,1.3971],[124.6576,1.3944],[124.6471,1.4],[124.6395,1.3995],[124.6328,1.4088],[124.6284,1.4102],[124.6275,1.4154],[124.6237,1.4188],[124.615,1.4183],[124.6088,1.4153],[124.6049,1.41],[124.6054,1.4059],[124.603,1.4014],[124.5965,1.4012],[124.5893,1.3954],[124.5809,1.3983],[124.5741,1.3907],[124.576,1.3857],[124.568,1.3841],[124.5648,1.3783],[124.5676,1.3736],[124.5825,1.3572],[124.602,1.3516],[124.6118,1.3423],[124.6224,1.3361],[124.6371,1.3346],[124.6452,1.3384],[124.6581,1.3374],[124.6729,1.3312],[124.6857,1.3318],[124.6933,1.3294],[124.701,1.3307],[124.7055,1.3301],[124.7101,1.3267],[124.7177,1.3255],[124.723,1.3153],[124.7222,1.3109],[124.7252,1.3033],[124.7235,1.301],[124.7092,1.2954],[124.703,1.2901],[124.7048,1.2867],[124.7142,1.2751],[124.7244,1.2698],[124.7275,1.2615],[124.7311,1.2583],[124.7386,1.2588],[124.7578,1.2546],[124.7591,1.2521],[124.7551,1.245],[124.7553,1.2376],[124.7471,1.2307],[124.7456,1.2238],[124.7422,1.2194],[124.7416,1.2046],[124.7399,1.1945],[124.7324,1.1886],[124.7257,1.1876],[124.7332,1.1786],[124.7351,1.1668],[124.7396,1.1534],[124.7412,1.1459],[124.7442,1.143],[124.7393,1.1307],[124.7366,1.115],[124.74,1.1115],[124.7524,1.1034],[124.7585,1.0983],[124.7641,1.0986],[124.7699,1.0964],[124.7764,1.1008],[124.7828,1.1031],[124.7872,1.1104],[124.7979,1.1154],[124.8107,1.1142],[124.8156,1.1171],[124.8176,1.1146],[124.824,1.113],[124.8343,1.1212],[124.8381,1.1208],[124.8403,1.1162],[124.8472,1.11],[124.8601,1.0885],[124.8654,1.0756],[124.8715,1.0734],[124.8739,1.0701],[124.8759,1.0537],[124.8811,1.0463],[124.8872,1.0419],[124.8923,1.0347],[124.8972,1.0299],[124.9008,1.0293],[124.9031,1.0232],[124.9081,1.0175],[124.9116,1.0186],[124.918,1.0282],[124.9239,1.0304],[124.9335,1.0387],[124.9355,1.0438],[124.9401,1.0497],[124.9449,1.0519],[124.9517,1.0576],[124.954,1.0616],[124.9655,1.0681],[124.9691,1.0735],[124.9718,1.0744],[124.977,1.0806],[124.9831,1.0931],[124.9871,1.0956],[124.9954,1.1069],[124.9973,1.1077],[125.0121,1.1249],[125.0175,1.1367],[125.023,1.1416],[125.0232,1.1501],[125.0257,1.1567],[125.0288,1.1607],[125.032,1.1746],[125.0349,1.1788],[125.035,1.1875],[125.0384,1.1975],[125.0439,1.2101],[125.0471,1.2194],[125.0505,1.2377],[125.0529,1.2406],[125.0564,1.2559],[125.0571,1.2652],[125.0614,1.2753],[125.063,1.288],[125.0482,1.2905],[125.0358,1.2864],[125.0254,1.2883],[125.0225,1.2908],[125.0227,1.2973],[125.015,1.3025],[125.0094,1.3164],[125.0056,1.3209],[124.997,1.3281],[124.9936,1.3253],[124.9843,1.3131],[124.9819,1.3124],[124.9777,1.3039],[124.9734,1.299],[124.9699,1.3025],[124.9709,1.3057],[124.9689,1.3109],[124.9634,1.3132],[124.9623,1.3174],[124.9551,1.325],[124.9556,1.3283],[124.9464,1.3354],[124.9384,1.3392],[124.9372,1.3441],[124.9315,1.3482],[124.925,1.3481],[124.9225,1.3505],[124.9262,1.3568],[124.9286,1.3688],[124.9315,1.376],[124.927,1.3863],[124.9207,1.3971],[124.919,1.4114],[124.9151,1.4233],[124.9149,1.4433],[124.9091,1.4515],[124.9072,1.4568],[124.9004,1.4548],[124.8953,1.4583],[124.8916,1.4584]],[[124.8255,1.4043],[124.8311,1.4053],[124.8408,1.4016],[124.841,1.3981],[124.8371,1.3911],[124.8382,1.3812],[124.8448,1.3764],[124.8506,1.3689],[124.8609,1.3615],[124.8648,1.3519],[124.8786,1.3543],[124.8881,1.3582],[124.8921,1.3544],[124.8921,1.3489],[124.888,1.3438],[124.8877,1.3397],[124.883,1.3371],[124.8788,1.3293],[124.874,1.323],[124.8713,1.3169],[124.8706,1.3073],[124.8688,1.3027],[124.8638,1.2984],[124.8557,1.2944],[124.8592,1.2895],[124.856,1.2823],[124.8554,1.2678],[124.8542,1.2643],[124.8493,1.2593],[124.8397,1.257],[124.8345,1.2581],[124.8288,1.2538],[124.8238,1.2563],[124.8141,1.27],[124.8034,1.2718],[124.801,1.2767],[124.7955,1.2819],[124.7891,1.2825],[124.7822,1.2883],[124.7682,1.2897],[124.7611,1.2846],[124.7571,1.2789],[124.753,1.2797],[124.7442,1.2872],[124.7404,1.3136],[124.7437,1.3324],[124.7551,1.3443],[124.7688,1.3546],[124.7702,1.3679],[124.7776,1.3617],[124.7855,1.3658],[124.7913,1.3594],[124.7962,1.3567],[124.8057,1.3612],[124.8109,1.3722],[124.8115,1.3807],[124.8094,1.3871],[124.8116,1.3973],[124.8154,1.3983],[124.8207,1.4036],[124.8255,1.4043]],[[124.9029,1.2708],[124.9048,1.2753],[124.9138,1.2855],[124.9228,1.281],[124.93,1.2759],[124.9328,1.2697],[124.9338,1.2635],[124.932,1.2581],[124.931,1.2474],[124.9281,1.2398],[124.9194,1.2317],[124.9101,1.2249],[124.9119,1.22],[124.9074,1.2123],[124.9085,1.2099],[124.9037,1.1996],[124.9037,1.1839],[124.8989,1.1745],[124.8928,1.174],[124.8896,1.1756],[124.8878,1.1808],[124.8832,1.1878],[124.8785,1.1893],[124.8723,1.1949],[124.8632,1.1993],[124.8573,1.2039],[124.8573,1.2115],[124.8676,1.2331],[124.8737,1.2364],[124.879,1.2348],[124.8837,1.2399],[124.8899,1.2394],[124.8912,1.2447],[124.8967,1.2435],[124.901,1.2542],[124.9006,1.2651],[124.9029,1.2708]]]}},{"type":"Feature","properties":{"mhid":"1332:382","alt_name":"KABUPATEN KEPULAUAN SANGIHE","latitude":3.5,"longitude":125.55,"sample_value":593},"geometry":{"type":"LineString","coordinates":[[125.5044,3.0849],[125.5007,3.0912],[125.495,3.0803],[125.5011,3.0772],[125.5026,3.0727],[125.5001,3.0683],[125.5001,3.0629],[125.5046,3.0625],[125.5094,3.0712],[125.5105,3.0788],[125.5044,3.0849]]}},{"type":"Feature","properties":{"mhid":"1332:382","alt_name":"KABUPATEN KEPULAUAN SANGIHE","latitude":3.5,"longitude":125.55,"sample_value":593},"geometry":{"type":"LineString","coordinates":[[125.4529,3.1495],[125.4494,3.1489],[125.4469,3.143],[125.4527,3.1396],[125.457,3.1403],[125.4555,3.1475],[125.4529,3.1495]]}},{"type":"Feature","properties":{"mhid":"1332:382","alt_name":"KABUPATEN KEPULAUAN SANGIHE","latitude":3.5,"longitude":125.55,"sample_value":593},"geometry":{"type":"LineString","coordinates":[[125.5266,3.1913],[125.5242,3.1866],[125.5277,3.1762],[125.5209,3.1721],[125.5173,3.174],[125.5159,3.1828],[125.5113,3.1886],[125.5071,3.1844],[125.5084,3.1773],[125.5155,3.1737],[125.5112,3.171],[125.5069,3.1741],[125.4996,3.1728],[125.5002,3.1687],[125.5052,3.1622],[125.5162,3.1558],[125.5231,3.1565],[125.5254,3.1586],[125.5334,3.1601],[125.5347,3.166],[125.5378,3.169],[125.5378,3.1757],[125.5266,3.1913]]}},{"type":"Feature","properties":{"mhid":"1332:382","alt_name":"KABUPATEN KEPULAUAN SANGIHE","latitude":3.5,"longitude":125.55,"sample_value":593},"geometry":{"type":"LineString","coordinates":[[125.4605,3.255],[125.4495,3.253],[125.4483,3.2487],[125.448,3.2391],[125.4516,3.2344],[125.459,3.2322],[125.4686,3.2367],[125.4726,3.2441],[125.4689,3.2509],[125.4651,3.2543],[125.4605,3.255]]}},{"type":"Feature","properties":{"mhid":"1332:382","alt_name":"KABUPATEN KEPULAUAN SANGIHE","latitude":3.5,"longitude":125.55,"sample_value":593},"geometry":{"type":"LineString","coordinates":[[125.5803,3.3426],[125.5699,3.3403],[125.5674,3.3332],[125.5705,3.3321],[125.5734,3.3382],[125.5803,3.3426]]}},{"type":"Feature","properties":{"mhid":"1332:382","alt_name":"KABUPATEN KEPULAUAN SANGIHE","latitude":3.5,"longitude":125.55,"sample_value":593},"geometry":{"type":"LineString","coordinates":[[125.6162,3.366],[125.6119,3.3673],[125.608,3.3652],[125.6055,3.3527],[125.6077,3.3498],[125.6062,3.3445],[125.613,3.3411],[125.6155,3.342],[125.616,3.3494],[125.62,3.3523],[125.6214,3.3636],[125.6162,3.366]]}},{"type":"Feature","properties":{"mhid":"1332:382","alt_name":"KABUPATEN KEPULAUAN SANGIHE","latitude":3.5,"longitude":125.55,"sample_value":593},"geometry":{"type":"LineString","coordinates":[[125.6439,3.3799],[125.6385,3.3787],[125.6356,3.3733],[125.6389,3.371],[125.644,3.3733],[125.6417,3.3764],[125.6439,3.3799]]}},{"type":"Feature","properties":{"mhid":"1332:382","alt_name":"KABUPATEN KEPULAUAN SANGIHE","latitude":3.5,"longitude":125.55,"sample_value":593},"geometry":{"type":"LineString","coordinates":[[125.5714,3.4069],[125.5684,3.4138],[125.5638,3.4169],[125.559,3.4097],[125.5613,3.4059],[125.5607,3.4015],[125.5569,3.4005],[125.5564,3.3938],[125.5619,3.3929],[125.5723,3.3979],[125.5756,3.3946],[125.5789,3.3965],[125.5738,3.407],[125.5714,3.4069]]}},{"type":"Feature","properties":{"mhid":"1332:382","alt_name":"KABUPATEN KEPULAUAN SANGIHE","latitude":3.5,"longitude":125.55,"sample_value":593},"geometry":{"type":"LineString","coordinates":[[125.7114,3.475],[125.7051,3.4742],[125.7034,3.4712],[125.6917,3.4639],[125.6979,3.4562],[125.7035,3.4517],[125.7103,3.4651],[125.7114,3.475]]}},{"type":"Feature","properties":{"mhid":"1332:382","alt_name":"KABUPATEN KEPULAUAN SANGIHE","latitude":3.5,"longitude":125.55,"sample_value":593},"geometry":{"type":"LineString","coordinates":[[125.6565,3.5361],[125.6541,3.5312],[125.6563,3.5274],[125.6625,3.5304],[125.6611,3.5347],[125.6565,3.5361]]}},{"type":"Feature","properties":{"mhid":"1332:382","alt_name":"KABUPATEN KEPULAUAN SANGIHE","latitude":3.5,"longitude":125.55,"sample_value":593},"geometry":{"type":"LineString","coordinates":[[125.6429,3.5524],[125.6337,3.5518],[125.6324,3.5475],[125.6367,3.5452],[125.6342,3.5403],[125.6361,3.5376],[125.6422,3.5401],[125.6457,3.5442],[125.6429,3.5524]]}},{"type":"Feature","properties":{"mhid":"1332:382","alt_name":"KABUPATEN KEPULAUAN SANGIHE","latitude":3.5,"longitude":125.55,"sample_value":593},"geometry":{"type":"LineString","coordinates":[[125.4533,3.7356],[125.4466,3.737],[125.4392,3.7337],[125.4273,3.7344],[125.4176,3.7277],[125.4133,3.7221],[125.404,3.7189],[125.3981,3.7042],[125.3976,3.6933],[125.3987,3.6919],[125.3991,3.6815],[125.3976,3.6732],[125.3991,3.6684],[125.4024,3.6674],[125.4054,3.657],[125.4124,3.6498],[125.4137,3.6439],[125.4181,3.6397],[125.4259,3.6377],[125.4326,3.6279],[125.4423,3.6205],[125.4461,3.6199],[125.4653,3.6129],[125.4804,3.605],[125.4855,3.6056],[125.4887,3.6081],[125.5003,3.6099],[125.5039,3.6054],[125.5018,3.6016],[125.4951,3.5988],[125.4852,3.5968],[125.4824,3.5926],[125.4872,3.5833],[125.4863,3.578],[125.4913,3.5727],[125.4936,3.5784],[125.5027,3.5766],[125.504,3.5716],[125.508,3.5732],[125.5124,3.5653],[125.5073,3.5577],[125.5046,3.5578],[125.5006,3.5482],[125.4974,3.5469],[125.4956,3.5406],[125.4919,3.5339],[125.4918,3.5285],[125.4868,3.5253],[125.49,3.5212],[125.4898,3.5172],[125.4865,3.5118],[125.4884,3.5087],[125.4859,3.4822],[125.4905,3.474],[125.4863,3.4674],[125.494,3.4695],[125.4987,3.4676],[125.4976,3.4591],[125.5011,3.4538],[125.5026,3.4468],[125.5012,3.4391],[125.5047,3.4351],[125.5117,3.44],[125.5192,3.4402],[125.5254,3.4373],[125.5254,3.4326],[125.5204,3.4278],[125.5195,3.4245],[125.5237,3.4191],[125.5227,3.413],[125.5341,3.4125],[125.5384,3.417],[125.5419,3.411],[125.5447,3.41],[125.5491,3.4211],[125.5474,3.426],[125.548,3.4318],[125.5521,3.4322],[125.5552,3.4354],[125.5671,3.4381],[125.5632,3.4254],[125.5638,3.4201],[125.5666,3.4171],[125.5748,3.4157],[125.5813,3.4068],[125.5861,3.4045],[125.5863,3.4013],[125.5918,3.389],[125.5904,3.3804],[125.5845,3.3794],[125.5842,3.3749],[125.5951,3.3799],[125.6024,3.375],[125.6056,3.3708],[125.622,3.3725],[125.6197,3.3832],[125.6233,3.3833],[125.6305,3.3803],[125.6314,3.389],[125.6353,3.3893],[125.6352,3.3804],[125.6381,3.3793],[125.6448,3.3829],[125.6501,3.3896],[125.6576,3.3885],[125.6542,3.3989],[125.6625,3.401],[125.6643,3.4071],[125.6634,3.4141],[125.6708,3.4172],[125.675,3.4247],[125.6764,3.4375],[125.6723,3.4502],[125.6672,3.4516],[125.6682,3.4584],[125.6653,3.4663],[125.6656,3.4761],[125.6712,3.4804],[125.6694,3.4885],[125.6713,3.4928],[125.6685,3.4959],[125.6668,3.5034],[125.6559,3.5028],[125.6541,3.5112],[125.6552,3.5147],[125.6598,3.5157],[125.6623,3.5232],[125.6602,3.5243],[125.6539,3.5193],[125.6557,3.5168],[125.649,3.5123],[125.6448,3.5186],[125.6421,3.5119],[125.6439,3.5075],[125.6438,3.4972],[125.6574,3.4952],[125.6613,3.4893],[125.6575,3.4873],[125.6554,3.4936],[125.6471,3.4938],[125.6438,3.4911],[125.6404,3.4934],[125.637,3.5036],[125.6323,3.5088],[125.6317,3.5147],[125.6266,3.5157],[125.6222,3.5208],[125.6217,3.5242],[125.6165,3.5302],[125.6184,3.5339],[125.6138,3.5406],[125.6058,3.5474],[125.6014,3.5549],[125.5955,3.555],[125.5905,3.5522],[125.5869,3.5616],[125.589,3.5679],[125.5876,3.5741],[125.5831,3.5745],[125.5816,3.5804],[125.577,3.5791],[125.5715,3.5802],[125.5595,3.5778],[125.5624,3.5889],[125.573,3.5894],[125.5789,3.5977],[125.5749,3.6058],[125.5777,3.6074],[125.5863,3.6077],[125.5881,3.6125],[125.5838,3.6194],[125.5869,3.6227],[125.5833,3.6253],[125.5758,3.6265],[125.565,3.625],[125.5634,3.6316],[125.5696,3.6328],[125.5755,3.636],[125.5749,3.6424],[125.5694,3.6492],[125.5614,3.648],[125.5625,3.6542],[125.5576,3.6607],[125.5575,3.6652],[125.5527,3.671],[125.5478,3.6731],[125.5425,3.6791],[125.5427,3.684],[125.5364,3.6897],[125.5182,3.7123],[125.509,3.7211],[125.49,3.7294],[125.4806,3.7308],[125.4669,3.7312],[125.4588,3.735],[125.4533,3.7356]]}},{"type":"Feature","properties":{"mhid":"1332:382","alt_name":"KABUPATEN KEPULAUAN SANGIHE","latitude":3.5,"longitude":125.55,"sample_value":593},"geometry":{"type":"LineString","coordinates":[[125.5722,3.7699],[125.567,3.7693],[125.555,3.7536],[125.5568,3.7458],[125.562,3.7536],[125.5665,3.7489],[125.5702,3.7497],[125.5706,3.7541],[125.5751,3.7557],[125.583,3.7526],[125.5832,3.7595],[125.5759,3.77],[125.5722,3.7699]]}},{"type":"Feature","properties":{"mhid":"1332:382","alt_name":"KABUPATEN KEPULAUAN SANGIHE","latitude":3.5,"longitude":125.55,"sample_value":593},"geometry":{"type":"LineString","coordinates":[[125.6046,3.7926],[125.6007,3.7931],[125.5968,3.7897],[125.593,3.791],[125.588,3.7871],[125.5871,3.7788],[125.5889,3.7702],[125.5948,3.7694],[125.597,3.7765],[125.6011,3.7763],[125.6008,3.7816],[125.6048,3.7818],[125.606,3.7878],[125.6131,3.79],[125.618,3.7818],[125.6297,3.7848],[125.6311,3.789],[125.6232,3.793],[125.6081,3.791],[125.6046,3.7926]]}},{"type":"Feature","properties":{"mhid":"1332:382","alt_name":"KABUPATEN KEPULAUAN SANGIHE","latitude":3.5,"longitude":125.55,"sample_value":593},"geometry":{"type":"LineString","coordinates":[[125.3907,3.913],[125.3841,3.9121],[125.3874,3.9069],[125.3911,3.9078],[125.3907,3.913]]}},{"type":"Feature","properties":{"mhid":"1332:382","alt_name":"KABUPATEN KEPULAUAN SANGIHE","latitude":3.5,"longitude":125.55,"sample_value":593},"geometry":{"type":"LineString","coordinates":[[125.3201,4.2368],[125.3179,4.2322],[125.3244,4.2272],[125.3297,4.2271],[125.3321,4.2315],[125.327,4.2366],[125.3201,4.2368]]}},{"type":"Feature","properties":{"mhid":"1332:382","alt_name":"KABUPATEN KEPULAUAN SANGIHE","latitude":3.5,"longitude":125.55,"sample_value":593},"geometry":{"type":"LineString","coordinates":[[125.6933,4.4372],[125.6881,4.4339],[125.6919,4.4314],[125.6964,4.4326],[125.6933,4.4372]]}},{"type":"Feature","properties":{"mhid":"1332:382","alt_name":"KABUPATEN KEPULAUAN SANGIHE","latitude":3.5,"longitude":125.55,"sample_value":593},"geometry":{"type":"LineString","coordinates":[[125.4382,4.6514],[125.4381,4.6582],[125.4353,4.6627],[125.4338,4.6505],[125.4382,4.6514]]}},{"type":"Feature","properties":{"mhid":"1332:382","alt_name":"KABUPATEN KEPULAUAN SANGIHE","latitude":3.5,"longitude":125.55,"sample_value":593},"geometry":{"type":"LineString","coordinates":[[125.4912,4.745],[125.487,4.7411],[125.4777,4.7363],[125.4773,4.7295],[125.4833,4.7294],[125.4892,4.7355],[125.4917,4.7414],[125.4912,4.745]]}},{"type":"Feature","properties":{"mhid":"1332:383","alt_name":"KABUPATEN KEPULAUAN TALAUD","latitude":4.31178,"longitude":126.78085,"sample_value":553},"geometry":{"type":"LineString","coordinates":[[126.7806,3.8409],[126.7696,3.8496],[126.762,3.8545],[126.7525,3.8527],[126.7439,3.8429],[126.7428,3.8281],[126.7449,3.8117],[126.7529,3.7964],[126.7542,3.7861],[126.765,3.7778],[126.7644,3.7716],[126.7718,3.7604],[126.7753,3.7608],[126.7794,3.7566],[126.7837,3.7476],[126.7892,3.7433],[126.7944,3.7418],[126.8037,3.7427],[126.8133,3.7383],[126.822,3.7276],[126.8247,3.7286],[126.8357,3.7426],[126.84,3.7401],[126.8437,3.7427],[126.8458,3.7482],[126.8513,3.7526],[126.8507,3.7579],[126.8409,3.7749],[126.8392,3.7842],[126.8349,3.7939],[126.8287,3.7996],[126.8254,3.8057],[126.8185,3.8086],[126.8098,3.8247],[126.8031,3.8341],[126.7936,3.8356],[126.7891,3.8394],[126.7806,3.8409]]}},{"type":"Feature","properties":{"mhid":"1332:383","alt_name":"KABUPATEN KEPULAUAN TALAUD","latitude":4.31178,"longitude":126.78085,"sample_value":553},"geometry":{"type":"LineString","coordinates":[[126.7109,3.9464],[126.7088,3.944],[126.7148,3.9387],[126.7175,3.9452],[126.7109,3.9464]]}},{"type":"Feature","properties":{"mhid":"1332:383","alt_name":"KABUPATEN KEPULAUAN TALAUD","latitude":4.31178,"longitude":126.78085,"sample_value":553},"geometry":{"type":"LineString","coordinates":[[126.618,4.0435],[126.6123,4.0435],[126.6083,4.0395],[126.6163,4.0301],[126.6176,4.0208],[126.6141,4.0166],[126.6145,4.0069],[126.6121,4.0014],[126.6151,3.9981],[126.6206,3.9965],[126.6206,3.9904],[126.6134,3.9842],[126.6185,3.9835],[126.6224,3.9858],[126.6266,3.9849],[126.6308,3.9805],[126.6336,3.9706],[126.6371,3.9667],[126.635,3.9582],[126.6377,3.9508],[126.644,3.9471],[126.6506,3.9359],[126.6571,3.9398],[126.6598,3.939],[126.6647,3.9325],[126.6673,3.9316],[126.669,3.9257],[126.6699,3.9166],[126.6643,3.9075],[126.6657,3.8938],[126.6618,3.8835],[126.6635,3.8751],[126.6668,3.8735],[126.6704,3.8647],[126.6765,3.8548],[126.6752,3.8357],[126.677,3.8339],[126.6848,3.8205],[126.6827,3.8125],[126.6932,3.8097],[126.701,3.8117],[126.7053,3.8146],[126.7062,3.8188],[126.7016,3.8298],[126.693,3.8443],[126.6901,3.856],[126.6901,3.8611],[126.6859,3.8633],[126.6853,3.8694],[126.6889,3.8706],[126.6921,3.8679],[126.6975,3.8727],[126.7002,3.8726],[126.7066,3.8815],[126.7164,3.8874],[126.7226,3.8986],[126.7215,3.9032],[126.7229,3.9095],[126.7199,3.9195],[126.7149,3.9261],[126.7073,3.9313],[126.6993,3.9385],[126.6902,3.941],[126.6677,3.9582],[126.6647,3.959],[126.657,3.9683],[126.6532,3.9701],[126.6472,3.9767],[126.642,3.9904],[126.6435,3.9986],[126.6429,4.0163],[126.6407,4.0233],[126.6339,4.0304],[126.6218,4.0375],[126.618,4.0435]]}},{"type":"Feature","properties":{"mhid":"1332:383","alt_name":"KABUPATEN KEPULAUAN TALAUD","latitude":4.31178,"longitude":126.78085,"sample_value":553},"geometry":{"type":"LineString","coordinates":[[126.744,4.5457],[126.7372,4.5426],[126.7314,4.5346],[126.7297,4.5302],[126.7252,4.5247],[126.7203,4.51],[126.7217,4.5006],[126.7209,4.4964],[126.723,4.4915],[126.7289,4.4878],[126.7259,4.4842],[126.7257,4.4777],[126.7325,4.4694],[126.734,4.4617],[126.7267,4.4534],[126.7229,4.4516],[126.7183,4.4564],[126.7145,4.4499],[126.7185,4.4408],[126.7165,4.4343],[126.7105,4.4276],[126.7054,4.4291],[126.7058,4.4221],[126.7009,4.4194],[126.6993,4.4113],[126.7029,4.4055],[126.6993,4.4009],[126.6948,4.4],[126.693,4.3927],[126.698,4.3928],[126.6993,4.3821],[126.6956,4.3767],[126.6876,4.3752],[126.6854,4.3678],[126.6897,4.3588],[126.6841,4.3528],[126.6808,4.3419],[126.6802,4.3345],[126.6814,4.3312],[126.6874,4.328],[126.6992,4.3293],[126.7066,4.3241],[126.709,4.3168],[126.7063,4.3117],[126.7077,4.3073],[126.7137,4.3068],[126.7155,4.3026],[126.7133,4.289],[126.7108,4.2831],[126.7102,4.2746],[126.7172,4.2681],[126.7211,4.2663],[126.7327,4.2672],[126.7415,4.2623],[126.7471,4.2631],[126.7512,4.2552],[126.7577,4.2478],[126.7607,4.2473],[126.7685,4.25],[126.7767,4.2504],[126.7813,4.2488],[126.7907,4.2396],[126.7934,4.235],[126.7928,4.2307],[126.7884,4.2263],[126.7908,4.2199],[126.7912,4.2138],[126.78,4.2014],[126.7729,4.197],[126.7705,4.193],[126.7645,4.1878],[126.76,4.1816],[126.7565,4.1719],[126.7567,4.1691],[126.7495,4.1535],[126.7502,4.1421],[126.7445,4.1377],[126.7368,4.126],[126.7333,4.1165],[126.7333,4.1087],[126.7287,4.1041],[126.7219,4.101],[126.7215,4.0933],[126.7156,4.0913],[126.7129,4.0846],[126.7053,4.0859],[126.6987,4.0808],[126.6966,4.0761],[126.6919,4.0741],[126.6865,4.0741],[126.6812,4.0617],[126.6709,4.0476],[126.6675,4.0408],[126.6683,4.0349],[126.6662,4.0298],[126.6697,4.0191],[126.669,4.0145],[126.6711,4.0025],[126.6802,3.9936],[126.685,3.9925],[126.6966,4.0027],[126.7016,4.0045],[126.7118,4.0036],[126.7191,3.9988],[126.729,3.9968],[126.7309,3.995],[126.7438,3.9926],[126.755,3.9945],[126.7616,3.9943],[126.7718,4.0011],[126.7746,4.0092],[126.78,4.0065],[126.7832,4.0101],[126.7847,4.0171],[126.7914,4.0171],[126.7952,4.0237],[126.7946,4.0316],[126.8019,4.033],[126.8063,4.0299],[126.8092,4.0337],[126.8068,4.0394],[126.8025,4.0413],[126.8016,4.0552],[126.8039,4.0616],[126.803,4.0649],[126.8062,4.0682],[126.8077,4.0773],[126.8051,4.0832],[126.8083,4.0867],[126.8098,4.0922],[126.8084,4.0958],[126.8113,4.0986],[126.8121,4.1049],[126.8049,4.1074],[126.8034,4.1113],[126.8048,4.1243],[126.8007,4.1284],[126.801,4.133],[126.796,4.14],[126.7983,4.1439],[126.7975,4.1492],[126.8015,4.1516],[126.8013,4.1549],[126.808,4.1599],[126.808,4.1665],[126.818,4.1696],[126.8248,4.1793],[126.827,4.1852],[126.8318,4.1893],[126.8505,4.1983],[126.8574,4.2025],[126.8631,4.2093],[126.8696,4.215],[126.8715,4.2184],[126.8715,4.2258],[126.8678,4.2339],[126.8617,4.2347],[126.8592,4.2458],[126.8613,4.2503],[126.8745,4.2528],[126.8824,4.2602],[126.8936,4.2597],[126.8996,4.2622],[126.9028,4.2668],[126.9127,4.2704],[126.9097,4.2746],[126.9101,4.2797],[126.9027,4.2938],[126.8997,4.3018],[126.8941,4.3048],[126.8913,4.3129],[126.8876,4.313],[126.8847,4.3189],[126.8864,4.321],[126.8742,4.3328],[126.866,4.3435],[126.8565,4.3593],[126.8504,4.3754],[126.8489,4.385],[126.8494,4.3901],[126.8527,4.3932],[126.8512,4.4045],[126.8515,4.4113],[126.8569,4.4191],[126.867,4.4239],[126.8698,4.4309],[126.8662,4.4423],[126.8684,4.4559],[126.8668,4.4588],[126.8619,4.4586],[126.8569,4.4641],[126.8536,4.4656],[126.857,4.4822],[126.8556,4.4893],[126.8515,4.487],[126.843,4.4894],[126.8373,4.4877],[126.8297,4.4929],[126.8309,4.5014],[126.8287,4.5046],[126.8192,4.5109],[126.8158,4.5238],[126.8101,4.5256],[126.8084,4.5333],[126.7945,4.5322],[126.7898,4.5295],[126.7874,4.525],[126.7796,4.5262],[126.7744,4.5326],[126.7751,4.5389],[126.761,4.5434],[126.744,4.5457]]}},{"type":"Feature","properties":{"mhid":"1332:383","alt_name":"KABUPATEN KEPULAUAN TALAUD","latitude":4.31178,"longitude":126.78085,"sample_value":553},"geometry":{"type":"LineString","coordinates":[[127.1498,4.6162],[127.1466,4.6188],[127.1397,4.6149],[127.1274,4.6104],[127.1394,4.6074],[127.1449,4.609],[127.1498,4.6162]]}},{"type":"Feature","properties":{"mhid":"1332:383","alt_name":"KABUPATEN KEPULAUAN TALAUD","latitude":4.31178,"longitude":126.78085,"sample_value":553},"geometry":{"type":"LineString","coordinates":[[127.163,4.6276],[127.1578,4.6325],[127.1568,4.6235],[127.1624,4.6232],[127.163,4.6276]]}},{"type":"Feature","properties":{"mhid":"1332:383","alt_name":"KABUPATEN KEPULAUAN TALAUD","latitude":4.31178,"longitude":126.78085,"sample_value":553},"geometry":{"type":"LineString","coordinates":[[127.1401,4.7049],[127.1326,4.702],[127.1318,4.6931],[127.1409,4.6871],[127.1443,4.6911],[127.1443,4.7008],[127.1401,4.7049]]}},{"type":"Feature","properties":{"mhid":"1332:383","alt_name":"KABUPATEN KEPULAUAN TALAUD","latitude":4.31178,"longitude":126.78085,"sample_value":553},"geometry":{"type":"LineString","coordinates":[[127.0647,4.7414],[127.0614,4.7398],[127.0598,4.7354],[127.0554,4.7344],[127.056,4.7278],[127.0684,4.7185],[127.0756,4.7166],[127.0839,4.7181],[127.0884,4.7253],[127.0931,4.7284],[127.0926,4.7331],[127.0835,4.7355],[127.0797,4.7393],[127.0717,4.7393],[127.0647,4.7414]]}},{"type":"Feature","properties":{"mhid":"1332:383","alt_name":"KABUPATEN KEPULAUAN TALAUD","latitude":4.31178,"longitude":126.78085,"sample_value":553},"geometry":{"type":"LineString","coordinates":[[127.1329,4.7318],[127.1407,4.7367],[127.1459,4.748],[127.1461,4.7533],[127.1417,4.7694],[127.1369,4.7758],[127.1305,4.7777],[127.1166,4.7631],[127.1104,4.7464],[127.1126,4.7353],[127.1145,4.7319],[127.1249,4.7307],[127.1329,4.7318]]}},{"type":"Feature","properties":{"mhid":"1332:383","alt_name":"KABUPATEN KEPULAUAN TALAUD","latitude":4.31178,"longitude":126.78085,"sample_value":553},"geometry":{"type":"LineString","coordinates":[[127.0625,4.8073],[127.0594,4.8053],[127.0563,4.7978],[127.0577,4.7909],[127.0624,4.7916],[127.0655,4.7966],[127.0652,4.8046],[127.0625,4.8073]]}},{"type":"Feature","properties":{"mhid":"1332:383","alt_name":"KABUPATEN KEPULAUAN TALAUD","latitude":4.31178,"longitude":126.78085,"sample_value":553},"geometry":{"type":"LineString","coordinates":[[126.5884,5.5642],[126.5821,5.5654],[126.577,5.5576],[126.5772,5.5508],[126.581,5.548],[126.5894,5.5549],[126.5913,5.5617],[126.5884,5.5642]]}},{"type":"Feature","properties":{"mhid":"1332:384","alt_name":"KABUPATEN MINAHASA SELATAN","latitude":1.21291,"longitude":124.59708,"sample_value":119},"geometry":{"type":"LineString","coordinates":[[124.5081,1.2964],[124.5113,1.2983],[124.5112,1.3043],[124.5062,1.3052],[124.5039,1.2984],[124.5081,1.2964]]}},{"type":"Feature","properties":{"mhid":"1332:384","alt_name":"KABUPATEN MINAHASA SELATAN","latitude":1.21291,"longitude":124.59708,"sample_value":119},"geometry":{"type":"LineString","coordinates":[[124.7366,1.115],[124.7393,1.1307],[124.7442,1.143],[124.7412,1.1459],[124.7396,1.1534],[124.7351,1.1668],[124.7332,1.1786],[124.7257,1.1876],[124.7324,1.1886],[124.7399,1.1945],[124.7416,1.2046],[124.7422,1.2194],[124.7456,1.2238],[124.7471,1.2307],[124.7553,1.2376],[124.7551,1.245],[124.7591,1.2521],[124.7578,1.2546],[124.7386,1.2588],[124.7311,1.2583],[124.7275,1.2615],[124.7244,1.2698],[124.7142,1.2751],[124.7048,1.2867],[124.703,1.2901],[124.7092,1.2954],[124.7235,1.301],[124.7252,1.3033],[124.7222,1.3109],[124.723,1.3153],[124.7177,1.3255],[124.7101,1.3267],[124.7055,1.3301],[124.701,1.3307],[124.6933,1.3294],[124.6857,1.3318],[124.6729,1.3312],[124.6581,1.3374],[124.6452,1.3384],[124.6371,1.3346],[124.6224,1.3361],[124.6118,1.3423],[124.602,1.3516],[124.5825,1.3572],[124.5676,1.3736],[124.5648,1.3783],[124.5562,1.3785],[124.5509,1.3762],[124.5439,1.3663],[124.5404,1.3592],[124.5317,1.3525],[124.5292,1.3369],[124.5183,1.3288],[124.5169,1.3211],[124.5124,1.3158],[124.5152,1.3135],[124.5141,1.3055],[124.5158,1.3001],[124.5269,1.2938],[124.5348,1.2812],[124.547,1.2748],[124.55,1.2716],[124.5634,1.2724],[124.5647,1.2775],[124.5697,1.2786],[124.5734,1.2706],[124.5827,1.2704],[124.59,1.2677],[124.5944,1.2621],[124.6022,1.2578],[124.6106,1.255],[124.6129,1.2467],[124.6115,1.2356],[124.6059,1.2274],[124.5979,1.2209],[124.5903,1.209],[124.5848,1.1969],[124.5766,1.1886],[124.5707,1.1858],[124.5651,1.1849],[124.5561,1.1911],[124.5492,1.2017],[124.5484,1.2088],[124.5421,1.2133],[124.532,1.2128],[124.5279,1.2153],[124.5187,1.2106],[124.5171,1.2036],[124.5185,1.1974],[124.5211,1.1945],[124.5188,1.1899],[124.5089,1.1904],[124.5041,1.1886],[124.4979,1.1918],[124.4889,1.1848],[124.4726,1.1868],[124.4618,1.1898],[124.456,1.1869],[124.4452,1.189],[124.426,1.1896],[124.4222,1.1942],[124.4154,1.1957],[124.4076,1.1913],[124.4056,1.1852],[124.3959,1.1815],[124.393,1.179],[124.3875,1.1808],[124.3826,1.1767],[124.3762,1.1765],[124.3727,1.1734],[124.3637,1.1701],[124.3614,1.1666],[124.3549,1.1657],[124.3487,1.1622],[124.3419,1.1551],[124.3493,1.1462],[124.353,1.1395],[124.3571,1.1361],[124.3523,1.1333],[124.3473,1.1249],[124.3405,1.1211],[124.3387,1.1168],[124.3419,1.1142],[124.3393,1.0989],[124.3313,1.0892],[124.3285,1.0795],[124.3226,1.0793],[124.3196,1.0741],[124.3221,1.0687],[124.3149,1.0586],[124.3133,1.0526],[124.3158,1.0473],[124.3113,1.0422],[124.3062,1.0312],[124.3074,1.0232],[124.3044,1.0183],[124.2981,1.0133],[124.2982,1.0072],[124.2975,1.003],[124.3043,1.0012],[124.309,1.0051],[124.3168,1.0081],[124.3202,1.0007],[124.3242,0.9983],[124.3315,0.9897],[124.3365,0.9884],[124.3421,0.9909],[124.3516,0.9861],[124.3558,0.9868],[124.358,0.9818],[124.3573,0.9763],[124.3621,0.9686],[124.3684,0.9613],[124.3705,0.9637],[124.3758,0.9575],[124.3753,0.9525],[124.3711,0.9486],[124.3725,0.9437],[124.37,0.9379],[124.3702,0.9324],[124.3679,0.9276],[124.3678,0.9226],[124.3704,0.9189],[124.3776,0.9131],[124.3786,0.9015],[124.3814,0.8892],[124.3787,0.8825],[124.3805,0.8788],[124.379,0.8702],[124.3824,0.8662],[124.3898,0.864],[124.3916,0.8619],[124.4013,0.8593],[124.407,0.8591],[124.4068,0.8517],[124.4152,0.8479],[124.4202,0.8432],[124.4242,0.8369],[124.428,0.8367],[124.434,0.8331],[124.4365,0.826],[124.4326,0.8166],[124.4287,0.8137],[124.4201,0.8126],[124.4191,0.8049],[124.4276,0.8026],[124.4322,0.7973],[124.4337,0.7925],[124.4359,0.7867],[124.4386,0.7865],[124.4459,0.7783],[124.4468,0.7729],[124.453,0.7701],[124.4538,0.7731],[124.4625,0.7734],[124.4695,0.7633],[124.4717,0.7631],[124.4787,0.7687],[124.4812,0.7633],[124.4893,0.7665],[124.4898,0.7806],[124.4923,0.7892],[124.4883,0.7946],[124.4879,0.802],[124.4922,0.8087],[124.4972,0.8124],[124.4971,0.8206],[124.509,0.8245],[124.5146,0.8242],[124.5198,0.8307],[124.5224,0.8311],[124.5257,0.8412],[124.5328,0.8413],[124.5346,0.8472],[124.5412,0.8528],[124.5486,0.8537],[124.5542,0.8605],[124.5556,0.8654],[124.5601,0.8675],[124.5585,0.8776],[124.5612,0.8811],[124.5584,0.887],[124.5654,0.8937],[124.5716,0.9058],[124.5737,0.9126],[124.5778,0.9148],[124.5806,0.9348],[124.581,0.9389],[124.5777,0.9455],[124.5733,0.9586],[124.5726,0.9666],[124.5742,0.9735],[124.5716,0.9763],[124.573,0.9838],[124.5756,0.9851],[124.573,0.9907],[124.5728,0.9963],[124.5791,1.0053],[124.5751,1.0104],[124.5666,1.0117],[124.5641,1.018],[124.5599,1.0227],[124.5551,1.0312],[124.5539,1.037],[124.556,1.0405],[124.5617,1.0449],[124.5635,1.0489],[124.5586,1.0526],[124.5579,1.0595],[124.5526,1.0667],[124.55,1.0725],[124.5538,1.0735],[124.5514,1.0796],[124.553,1.0884],[124.5624,1.0957],[124.5689,1.0962],[124.5713,1.0941],[124.5742,1.106],[124.5798,1.1052],[124.5785,1.1007],[124.5812,1.0935],[124.5804,1.0881],[124.5875,1.0836],[124.5989,1.089],[124.6029,1.094],[124.6136,1.0946],[124.6255,1.101],[124.6295,1.0979],[124.6389,1.0977],[124.6492,1.101],[124.6542,1.1005],[124.6679,1.1021],[124.6725,1.1005],[124.6802,1.1003],[124.684,1.1025],[124.7024,1.11],[124.713,1.1111],[124.7255,1.1097],[124.7335,1.1116],[124.7366,1.115]]}},{"type":"Feature","properties":{"mhid":"1332:385","alt_name":"KABUPATEN MINAHASA UTARA","latitude":1.4025,"longitude":124.96,"sample_value":759},"geometry":{"type":"LineString","coordinates":[[125.0281,1.7062],[125.026,1.7083],[125.0207,1.7055],[125.0179,1.6933],[125.0252,1.6934],[125.0302,1.6894],[125.0318,1.6945],[125.0312,1.7009],[125.0281,1.7062]]}},{"type":"Feature","properties":{"mhid":"1332:385","alt_name":"KABUPATEN MINAHASA UTARA","latitude":1.4025,"longitude":124.96,"sample_value":759},"geometry":{"type":"LineString","coordinates":[[124.7738,1.7184],[124.771,1.7244],[124.7704,1.7363],[124.7667,1.7446],[124.7563,1.7394],[124.7518,1.7346],[124.7451,1.7227],[124.7365,1.7323],[124.7314,1.728],[124.7334,1.7144],[124.7441,1.7036],[124.7519,1.6986],[124.7648,1.6928],[124.7727,1.6928],[124.7801,1.697],[124.7797,1.7077],[124.7738,1.7184]]}},{"type":"Feature","properties":{"mhid":"1332:385","alt_name":"KABUPATEN MINAHASA UTARA","latitude":1.4025,"longitude":124.96,"sample_value":759},"geometry":{"type":"LineString","coordinates":[[125.1551,1.5957],[125.1524,1.5988],[125.1476,1.5997],[125.1433,1.607],[125.1432,1.6222],[125.1473,1.626],[125.1537,1.6257],[125.1506,1.6344],[125.1562,1.6394],[125.1594,1.6399],[125.165,1.6445],[125.1618,1.6519],[125.1634,1.6633],[125.176,1.6739],[125.1757,1.6841],[125.1671,1.6885],[125.161,1.6868],[125.1589,1.6816],[125.1493,1.6806],[125.1441,1.688],[125.1395,1.6822],[125.1385,1.677],[125.1345,1.6719],[125.1341,1.6678],[125.1239,1.6721],[125.1198,1.6722],[125.1114,1.6639],[125.1057,1.6647],[125.0927,1.6754],[125.0846,1.6753],[125.0785,1.6786],[125.0754,1.6769],[125.0718,1.6713],[125.0674,1.6713],[125.0592,1.6744],[125.0514,1.6826],[125.0463,1.6853],[125.0402,1.6841],[125.0392,1.6803],[125.0242,1.6862],[125.0167,1.6872],[125.0139,1.69],[125.0145,1.701],[125.0181,1.7094],[125.0178,1.7147],[125.0214,1.7216],[125.0263,1.7234],[125.0255,1.7337],[125.0148,1.7372],[125.0121,1.7358],[125.0053,1.7439],[124.9922,1.7516],[124.9795,1.7479],[124.9817,1.7388],[124.9761,1.7322],[124.9799,1.7263],[124.9854,1.7264],[124.9813,1.7193],[124.9742,1.7251],[124.9723,1.7297],[124.9663,1.7318],[124.9614,1.7263],[124.9654,1.7141],[124.9673,1.6995],[124.962,1.7001],[124.9541,1.6971],[124.9511,1.7009],[124.9479,1.6916],[124.9554,1.6875],[124.9612,1.6817],[124.9504,1.6826],[124.94,1.6862],[124.9406,1.6935],[124.9304,1.6842],[124.9304,1.6755],[124.927,1.6764],[124.9239,1.6724],[124.9241,1.6676],[124.9217,1.6634],[124.9125,1.6574],[124.9114,1.6534],[124.9019,1.6495],[124.8963,1.6389],[124.8932,1.6363],[124.888,1.6355],[124.881,1.6306],[124.8713,1.6206],[124.8723,1.6173],[124.868,1.614],[124.8674,1.6074],[124.8691,1.6031],[124.8659,1.5997],[124.8542,1.5983],[124.8503,1.5992],[124.8421,1.5969],[124.8383,1.5938],[124.8293,1.592],[124.8206,1.5825],[124.8299,1.5736],[124.8385,1.5669],[124.8452,1.5644],[124.8555,1.5709],[124.8594,1.5642],[124.8667,1.5709],[124.8716,1.5718],[124.8782,1.5753],[124.8825,1.5717],[124.8871,1.5742],[124.8896,1.569],[124.8964,1.5689],[124.8971,1.5745],[124.9026,1.5754],[124.91,1.5736],[124.911,1.5679],[124.9161,1.5661],[124.9226,1.5597],[124.9242,1.5654],[124.9281,1.5644],[124.9273,1.5373],[124.9228,1.5283],[124.9278,1.5176],[124.933,1.5133],[124.9312,1.5063],[124.9239,1.5053],[124.9179,1.5024],[124.9133,1.4977],[124.9045,1.4958],[124.9021,1.491],[124.8941,1.4847],[124.8917,1.4772],[124.8936,1.4637],[124.8916,1.4584],[124.8953,1.4583],[124.9004,1.4548],[124.9072,1.4568],[124.9091,1.4515],[124.9149,1.4433],[124.9151,1.4233],[124.919,1.4114],[124.9207,1.3971],[124.927,1.3863],[124.9315,1.376],[124.9286,1.3688],[124.9262,1.3568],[124.9225,1.3505],[124.925,1.3481],[124.9315,1.3482],[124.9372,1.3441],[124.9384,1.3392],[124.9464,1.3354],[124.9556,1.3283],[124.9551,1.325],[124.9623,1.3174],[124.9634,1.3132],[124.9689,1.3109],[124.9709,1.3057],[124.9699,1.3025],[124.9734,1.299],[124.9777,1.3039],[124.9819,1.3124],[124.9843,1.3131],[124.9936,1.3253],[124.997,1.3281],[125.0056,1.3209],[125.0094,1.3164],[125.015,1.3025],[125.0227,1.2973],[125.0225,1.2908],[125.0254,1.2883],[125.0358,1.2864],[125.0482,1.2905],[125.063,1.288],[125.0674,1.2952],[125.0677,1.3051],[125.0662,1.3106],[125.0612,1.3109],[125.0619,1.3205],[125.0656,1.3216],[125.0675,1.3298],[125.071,1.3299],[125.0734,1.3378],[125.0762,1.3404],[125.0757,1.3455],[125.0726,1.3527],[125.0781,1.3543],[125.0754,1.3615],[125.0775,1.3657],[125.0827,1.3703],[125.0903,1.373],[125.1,1.3825],[125.1014,1.3906],[125.1045,1.3968],[125.1008,1.403],[125.098,1.411],[125.0938,1.4184],[125.092,1.4259],[125.0921,1.4472],[125.0863,1.4464],[125.0789,1.4501],[125.0655,1.4449],[125.0543,1.4479],[125.0481,1.4526],[125.0307,1.4536],[125.0403,1.464],[125.0466,1.4761],[125.0579,1.4875],[125.0653,1.4971],[125.0772,1.5069],[125.0836,1.514],[125.0819,1.5257],[125.0771,1.5256],[125.0717,1.5364],[125.0841,1.5399],[125.0906,1.544],[125.0946,1.5493],[125.1048,1.5549],[125.1122,1.5607],[125.1215,1.5582],[125.128,1.559],[125.1374,1.5647],[125.146,1.5768],[125.148,1.5918],[125.1551,1.5957]]}},{"type":"Feature","properties":{"mhid":"1332:385","alt_name":"KABUPATEN MINAHASA UTARA","latitude":1.4025,"longitude":124.96,"sample_value":759},"geometry":{"type":"LineString","coordinates":[[124.7441,1.7433],[124.744,1.7499],[124.7397,1.753],[124.736,1.7499],[124.7345,1.7433],[124.7395,1.7335],[124.7432,1.7292],[124.748,1.732],[124.7491,1.7386],[124.7441,1.7433]]}},{"type":"Feature","properties":{"mhid":"1332:385","alt_name":"KABUPATEN MINAHASA UTARA","latitude":1.4025,"longitude":124.96,"sample_value":759},"geometry":{"type":"LineString","coordinates":[[124.7623,1.7425],[124.7634,1.747],[124.7581,1.7531],[124.7551,1.7458],[124.7586,1.7411],[124.7623,1.7425]]}},{"type":"Feature","properties":{"mhid":"1332:385","alt_name":"KABUPATEN MINAHASA UTARA","latitude":1.4025,"longitude":124.96,"sample_value":759},"geometry":{"type":"LineString","coordinates":[[125.0578,1.7814],[125.0533,1.7809],[125.0525,1.7731],[125.049,1.7641],[125.0525,1.7596],[125.0584,1.7664],[125.0592,1.7731],[125.057,1.7776],[125.0578,1.7814]]}},{"type":"Feature","properties":{"mhid":"1332:385","alt_name":"KABUPATEN MINAHASA UTARA","latitude":1.4025,"longitude":124.96,"sample_value":759},"geometry":{"type":"LineString","coordinates":[[124.7948,1.7943],[124.7892,1.7903],[124.7882,1.784],[124.7896,1.778],[124.798,1.7764],[124.796,1.785],[124.7984,1.793],[124.7948,1.7943]]}},{"type":"Feature","properties":{"mhid":"1332:385","alt_name":"KABUPATEN MINAHASA UTARA","latitude":1.4025,"longitude":124.96,"sample_value":759},"geometry":{"type":"LineString","coordinates":[[125.1006,1.8373],[125.0969,1.8412],[125.0908,1.8368],[125.093,1.8327],[125.0992,1.8318],[125.1006,1.8373]]}},{"type":"Feature","properties":{"mhid":"1332:385","alt_name":"KABUPATEN MINAHASA UTARA","latitude":1.4025,"longitude":124.96,"sample_value":759},"geometry":{"type":"LineString","coordinates":[[125.1348,1.8464],[125.1326,1.8463],[125.1307,1.8391],[125.1247,1.8333],[125.125,1.8252],[125.1309,1.8252],[125.1358,1.8222],[125.1225,1.8196],[125.1136,1.8163],[125.1148,1.8076],[125.1197,1.8],[125.1198,1.7969],[125.1268,1.7896],[125.1309,1.7821],[125.1323,1.775],[125.131,1.7683],[125.1331,1.7598],[125.1325,1.7531],[125.1342,1.7485],[125.14,1.7451],[125.1482,1.736],[125.1511,1.7412],[125.1488,1.7463],[125.1566,1.749],[125.1474,1.7528],[125.1471,1.7576],[125.1524,1.7612],[125.1549,1.7665],[125.1602,1.7697],[125.1647,1.7681],[125.1755,1.7688],[125.1861,1.7752],[125.1853,1.7803],[125.1881,1.782],[125.1854,1.7905],[125.1856,1.7997],[125.1802,1.8036],[125.1757,1.8048],[125.1721,1.8026],[125.1667,1.8026],[125.1604,1.8083],[125.158,1.8156],[125.15,1.8256],[125.1456,1.8285],[125.1436,1.8345],[125.1405,1.8375],[125.1348,1.8464]]}},{"type":"Feature","properties":{"mhid":"1332:385","alt_name":"KABUPATEN MINAHASA UTARA","latitude":1.4025,"longitude":124.96,"sample_value":759},"geometry":{"type":"LineString","coordinates":[[125.0979,1.8846],[125.0902,1.8841],[125.0869,1.8815],[125.0831,1.8728],[125.074,1.8612],[125.0645,1.8561],[125.0649,1.8469],[125.0636,1.843],[125.0556,1.8351],[125.0517,1.8242],[125.0514,1.8172],[125.0485,1.8092],[125.0509,1.8041],[125.0604,1.8067],[125.0638,1.8168],[125.0724,1.8277],[125.0806,1.8321],[125.0876,1.8393],[125.0887,1.8466],[125.0876,1.8519],[125.0915,1.8676],[125.0977,1.8765],[125.0979,1.8846]]}},{"type":"Feature","properties":{"mhid":"1332:386","alt_name":"KABUPATEN BOLAANG MONGONDOW UTARA","latitude":0.78527,"longitude":123.41766,"sample_value":830},"geometry":{"type":"LineString","coordinates":[[123.6967,0.8614],[123.6944,0.8653],[123.6818,0.8751],[123.6759,0.8771],[123.6634,0.8788],[123.646,0.885],[123.6149,0.8992],[123.5994,0.9035],[123.5811,0.9044],[123.5866,0.8979],[123.5829,0.8952],[123.5802,0.9018],[123.5755,0.9001],[123.5731,0.896],[123.5677,0.8926],[123.5531,0.8869],[123.5428,0.8861],[123.527,0.886],[123.5063,0.888],[123.4947,0.8902],[123.4737,0.8913],[123.4625,0.8939],[123.4544,0.8976],[123.45,0.9036],[123.4431,0.9042],[123.4326,0.9029],[123.4231,0.8997],[123.4256,0.8946],[123.4153,0.8916],[123.409,0.8989],[123.4101,0.9054],[123.4012,0.9151],[123.3969,0.9053],[123.3972,0.8989],[123.3885,0.8999],[123.3863,0.904],[123.3769,0.9092],[123.3729,0.9129],[123.3666,0.909],[123.3623,0.9083],[123.3564,0.9024],[123.3509,0.9048],[123.3486,0.9088],[123.3433,0.9074],[123.3398,0.9102],[123.3323,0.9086],[123.3229,0.9093],[123.3184,0.9073],[123.3159,0.9094],[123.3102,0.9092],[123.2823,0.912],[123.2709,0.9164],[123.2685,0.9242],[123.2617,0.9138],[123.2584,0.9164],[123.2581,0.9213],[123.2556,0.9253],[123.2557,0.9309],[123.2614,0.9336],[123.2525,0.9439],[123.2512,0.9499],[123.2546,0.953],[123.251,0.9583],[123.24,0.9564],[123.2417,0.9493],[123.2412,0.9438],[123.2373,0.9418],[123.2293,0.9456],[123.215,0.9465],[123.2129,0.9399],[123.2095,0.9413],[123.1963,0.9401],[123.1937,0.942],[123.1891,0.9496],[123.1843,0.9538],[123.1767,0.9512],[123.1677,0.9512],[123.1768,0.9394],[123.1757,0.9369],[123.1798,0.932],[123.1839,0.9305],[123.1887,0.9259],[123.192,0.9272],[123.1977,0.9204],[123.1876,0.9072],[123.1783,0.9016],[123.1709,0.9027],[123.1654,0.9021],[123.1581,0.9074],[123.151,0.9107],[123.1481,0.9152],[123.1488,0.9182],[123.1413,0.923],[123.1351,0.9227],[123.1177,0.9261],[123.1154,0.9241],[123.1133,0.915],[123.1154,0.9059],[123.1199,0.9037],[123.1196,0.895],[123.121,0.8899],[123.1267,0.8908],[123.1307,0.8839],[123.1426,0.8765],[123.1505,0.8767],[123.1517,0.871],[123.1657,0.8731],[123.167,0.8697],[123.1757,0.8684],[123.1775,0.8624],[123.1849,0.8607],[123.1919,0.8622],[123.1986,0.8563],[123.2061,0.8568],[123.2109,0.8496],[123.2199,0.8472],[123.2262,0.8428],[123.2289,0.8366],[123.233,0.8331],[123.2427,0.8311],[123.25,0.8194],[123.2605,0.8097],[123.2696,0.8037],[123.2675,0.796],[123.2742,0.7894],[123.2741,0.7867],[123.2698,0.7772],[123.2686,0.7681],[123.2649,0.7644],[123.2533,0.757],[123.2514,0.7536],[123.2477,0.7444],[123.2462,0.7332],[123.2491,0.7283],[123.2471,0.717],[123.252,0.7176],[123.2592,0.7103],[123.2736,0.6982],[123.2822,0.6991],[123.2876,0.6959],[123.2976,0.6959],[123.3024,0.698],[123.3171,0.6978],[123.3224,0.6985],[123.3238,0.6951],[123.3302,0.6872],[123.339,0.6835],[123.3422,0.6796],[123.3425,0.6756],[123.3484,0.6704],[123.349,0.6675],[123.3543,0.6631],[123.3545,0.6573],[123.3594,0.6514],[123.3635,0.6519],[123.3767,0.6452],[123.3831,0.6401],[123.3925,0.6397],[123.3991,0.6409],[123.4109,0.6405],[123.4234,0.6391],[123.4282,0.6414],[123.4413,0.6393],[123.455,0.6355],[123.4591,0.6361],[123.4625,0.6322],[123.4769,0.6297],[123.4862,0.6265],[123.491,0.623],[123.4922,0.6191],[123.4892,0.6119],[123.4878,0.6014],[123.4943,0.5964],[123.5034,0.5914],[123.5091,0.5844],[123.5207,0.5843],[123.5334,0.5769],[123.5374,0.5793],[123.5439,0.578],[123.5469,0.5756],[123.5562,0.5767],[123.561,0.5797],[123.566,0.5779],[123.5699,0.5823],[123.5833,0.5832],[123.5878,0.5868],[123.5906,0.5825],[123.5989,0.5752],[123.6011,0.57],[123.6091,0.5619],[123.6214,0.5615],[123.6315,0.5641],[123.6333,0.5675],[123.638,0.5688],[123.6437,0.5735],[123.6422,0.5808],[123.6343,0.588],[123.6347,0.6012],[123.6427,0.608],[123.6537,0.6135],[123.6664,0.6171],[123.6781,0.6108],[123.6921,0.6112],[123.6984,0.6126],[123.7063,0.6186],[123.7089,0.6251],[123.7161,0.6325],[123.7171,0.6358],[123.7257,0.6379],[123.7257,0.6442],[123.7314,0.6542],[123.7283,0.6596],[123.7314,0.6674],[123.7375,0.6713],[123.7401,0.6776],[123.7402,0.6853],[123.7351,0.6917],[123.7292,0.6951],[123.7263,0.7043],[123.7273,0.7116],[123.7222,0.713],[123.7197,0.7176],[123.7183,0.7252],[123.7138,0.725],[123.7074,0.731],[123.7003,0.7318],[123.7034,0.7388],[123.7044,0.7484],[123.7084,0.7514],[123.7102,0.7594],[123.7068,0.7628],[123.7024,0.7624],[123.7014,0.7701],[123.6939,0.7784],[123.6923,0.7848],[123.6933,0.7877],[123.6863,0.7997],[123.6856,0.8061],[123.6801,0.8172],[123.6805,0.8204],[123.6851,0.8263],[123.6882,0.8367],[123.6866,0.8471],[123.6908,0.8598],[123.6967,0.8614]]}},{"type":"Feature","properties":{"mhid":"1332:387","alt_name":"KABUPATEN SIAU TAGULANDANG BIARO","latitude":2.11728,"longitude":125.37512,"sample_value":304},"geometry":{"type":"LineString","coordinates":[[125.4088,2.1144],[125.4126,2.1257],[125.4111,2.1324],[125.406,2.1307],[125.4004,2.1188],[125.3911,2.1125],[125.3853,2.1162],[125.3823,2.1152],[125.3724,2.1244],[125.3705,2.1221],[125.365,2.1223],[125.3646,2.1286],[125.3544,2.125],[125.3533,2.1207],[125.3547,2.1142],[125.3604,2.1147],[125.3608,2.109],[125.3522,2.0995],[125.3445,2.1003],[125.343,2.0951],[125.338,2.0937],[125.3362,2.0879],[125.3372,2.0833],[125.341,2.0814],[125.3434,2.0716],[125.3514,2.0708],[125.3586,2.0725],[125.3624,2.0887],[125.3677,2.0899],[125.3723,2.0933],[125.3789,2.0908],[125.3821,2.0956],[125.3866,2.0959],[125.3923,2.1024],[125.3985,2.1049],[125.4036,2.101],[125.4064,2.1047],[125.4088,2.1144]]}},{"type":"Feature","properties":{"mhid":"1332:387","alt_name":"KABUPATEN SIAU TAGULANDANG BIARO","latitude":2.11728,"longitude":125.37512,"sample_value":304},"geometry":{"type":"LineString","coordinates":[[125.3787,2.3266],[125.3686,2.3256],[125.3605,2.3232],[125.3532,2.3187],[125.348,2.3107],[125.3428,2.305],[125.3439,2.3024],[125.3521,2.2967],[125.3544,2.293],[125.3652,2.2865],[125.37,2.2871],[125.3777,2.2907],[125.3862,2.3042],[125.3835,2.3087],[125.3816,2.3239],[125.3787,2.3266]]}},{"type":"Feature","properties":{"mhid":"1332:387","alt_name":"KABUPATEN SIAU TAGULANDANG BIARO","latitude":2.11728,"longitude":125.37512,"sample_value":304},"geometry":{"type":"LineString","coordinates":[[125.307,2.3534],[125.3029,2.3644],[125.2998,2.3647],[125.295,2.3594],[125.2952,2.3545],[125.2996,2.3482],[125.3066,2.3484],[125.307,2.3534]]}},{"type":"Feature","properties":{"mhid":"1332:387","alt_name":"KABUPATEN SIAU TAGULANDANG BIARO","latitude":2.11728,"longitude":125.37512,"sample_value":304},"geometry":{"type":"LineString","coordinates":[[125.4035,2.3669],[125.4012,2.3674],[125.3959,2.3812],[125.3913,2.3838],[125.3809,2.3793],[125.3762,2.3731],[125.373,2.3711],[125.3691,2.3624],[125.37,2.3559],[125.3724,2.3541],[125.3773,2.3458],[125.3866,2.3323],[125.3931,2.3287],[125.4008,2.3226],[125.4144,2.3195],[125.4236,2.3163],[125.4332,2.3158],[125.4399,2.3175],[125.4483,2.3245],[125.4479,2.3277],[125.4554,2.3307],[125.4574,2.3338],[125.4571,2.3395],[125.4665,2.3512],[125.46,2.3593],[125.4581,2.3659],[125.4476,2.3727],[125.4365,2.3759],[125.4372,2.3807],[125.4345,2.3829],[125.4214,2.3796],[125.4189,2.3704],[125.416,2.3678],[125.4103,2.3695],[125.4035,2.3669]]}},{"type":"Feature","properties":{"mhid":"1332:387","alt_name":"KABUPATEN SIAU TAGULANDANG BIARO","latitude":2.11728,"longitude":125.37512,"sample_value":304},"geometry":{"type":"LineString","coordinates":[[125.4845,2.6575],[125.4829,2.6537],[125.4882,2.6477],[125.4894,2.6532],[125.4854,2.6537],[125.4845,2.6575]]}},{"type":"Feature","properties":{"mhid":"1332:387","alt_name":"KABUPATEN SIAU TAGULANDANG BIARO","latitude":2.11728,"longitude":125.37512,"sample_value":304},"geometry":{"type":"LineString","coordinates":[[125.4649,2.6675],[125.4659,2.6715],[125.4614,2.6734],[125.4562,2.6669],[125.453,2.6703],[125.4491,2.6698],[125.456,2.6599],[125.4585,2.6488],[125.4487,2.6438],[125.4561,2.6391],[125.4626,2.6434],[125.4639,2.6483],[125.4703,2.6519],[125.4645,2.6574],[125.4649,2.6675]]}},{"type":"Feature","properties":{"mhid":"1332:387","alt_name":"KABUPATEN SIAU TAGULANDANG BIARO","latitude":2.11728,"longitude":125.37512,"sample_value":304},"geometry":{"type":"LineString","coordinates":[[125.4535,2.6761],[125.461,2.6794],[125.463,2.6891],[125.448,2.6843],[125.4503,2.6766],[125.4535,2.6761]]}},{"type":"Feature","properties":{"mhid":"1332:387","alt_name":"KABUPATEN SIAU TAGULANDANG BIARO","latitude":2.11728,"longitude":125.37512,"sample_value":304},"geometry":{"type":"LineString","coordinates":[[125.1811,2.7235],[125.1862,2.7289],[125.1869,2.7345],[125.1845,2.7398],[125.1776,2.7447],[125.1697,2.7403],[125.1682,2.7369],[125.1735,2.7296],[125.1751,2.7223],[125.1811,2.7235]]}},{"type":"Feature","properties":{"mhid":"1332:387","alt_name":"KABUPATEN SIAU TAGULANDANG BIARO","latitude":2.11728,"longitude":125.37512,"sample_value":304},"geometry":{"type":"LineString","coordinates":[[125.4216,2.8097],[125.4108,2.8112],[125.396,2.8095],[125.3926,2.8101],[125.3754,2.7973],[125.3733,2.791],[125.3698,2.7858],[125.3712,2.7741],[125.3697,2.7671],[125.3634,2.7545],[125.3595,2.7376],[125.3619,2.7259],[125.361,2.7147],[125.365,2.6983],[125.3731,2.678],[125.3737,2.6639],[125.3773,2.658],[125.3772,2.6499],[125.3821,2.6469],[125.3878,2.6409],[125.3985,2.6333],[125.4059,2.6314],[125.4157,2.6332],[125.4289,2.6446],[125.4319,2.6492],[125.4299,2.6539],[125.422,2.6632],[125.4033,2.6685],[125.3927,2.6825],[125.3937,2.6911],[125.3965,2.6932],[125.3966,2.6993],[125.4022,2.709],[125.4023,2.713],[125.4058,2.7252],[125.4097,2.7307],[125.4181,2.7312],[125.4314,2.7365],[125.4306,2.7402],[125.4352,2.7416],[125.4387,2.7472],[125.4469,2.7501],[125.4511,2.753],[125.4534,2.7573],[125.4558,2.7708],[125.4534,2.7819],[125.4499,2.7865],[125.4453,2.7887],[125.4421,2.7953],[125.4366,2.7972],[125.4371,2.8005],[125.4279,2.8078],[125.4216,2.8097]]}},{"type":"Feature","properties":{"mhid":"1332:388","alt_name":"KABUPATEN MINAHASA TENGGARA","latitude":1.05633,"longitude":124.7925,"sample_value":906},"geometry":{"type":"LineString","coordinates":[[124.7365,0.8579],[124.7227,0.853],[124.7233,0.8493],[124.7365,0.8579]]}},{"type":"Feature","properties":{"mhid":"1332:388","alt_name":"KABUPATEN MINAHASA TENGGARA","latitude":1.05633,"longitude":124.7925,"sample_value":906},"geometry":{"type":"LineString","coordinates":[[124.9042,0.9776],[124.899,0.9765],[124.9008,0.9717],[124.9048,0.97],[124.9121,0.9698],[124.9159,0.9715],[124.9166,0.9769],[124.9099,0.9755],[124.9042,0.9776]]}},{"type":"Feature","properties":{"mhid":"1332:388","alt_name":"KABUPATEN MINAHASA TENGGARA","latitude":1.05633,"longitude":124.7925,"sample_value":906},"geometry":{"type":"LineString","coordinates":[[124.9081,1.0175],[124.9031,1.0232],[124.9008,1.0293],[124.8972,1.0299],[124.8923,1.0347],[124.8872,1.0419],[124.8811,1.0463],[124.8759,1.0537],[124.8739,1.0701],[124.8715,1.0734],[124.8654,1.0756],[124.8601,1.0885],[124.8472,1.11],[124.8403,1.1162],[124.8381,1.1208],[124.8343,1.1212],[124.824,1.113],[124.8176,1.1146],[124.8156,1.1171],[124.8107,1.1142],[124.7979,1.1154],[124.7872,1.1104],[124.7828,1.1031],[124.7764,1.1008],[124.7699,1.0964],[124.7641,1.0986],[124.7585,1.0983],[124.7524,1.1034],[124.74,1.1115],[124.7366,1.115],[124.7335,1.1116],[124.7255,1.1097],[124.713,1.1111],[124.7024,1.11],[124.684,1.1025],[124.6802,1.1003],[124.6725,1.1005],[124.6679,1.1021],[124.6542,1.1005],[124.6492,1.101],[124.6389,1.0977],[124.6295,1.0979],[124.6255,1.101],[124.6136,1.0946],[124.6029,1.094],[124.5989,1.089],[124.5875,1.0836],[124.5804,1.0881],[124.5812,1.0935],[124.5785,1.1007],[124.5798,1.1052],[124.5742,1.106],[124.5713,1.0941],[124.5689,1.0962],[124.5624,1.0957],[124.553,1.0884],[124.5514,1.0796],[124.5538,1.0735],[124.55,1.0725],[124.5526,1.0667],[124.5579,1.0595],[124.5586,1.0526],[124.5635,1.0489],[124.5617,1.0449],[124.556,1.0405],[124.5539,1.037],[124.5551,1.0312],[124.5599,1.0227],[124.5641,1.018],[124.5666,1.0117],[124.5751,1.0104],[124.5791,1.0053],[124.5728,0.9963],[124.573,0.9907],[124.5756,0.9851],[124.573,0.9838],[124.5716,0.9763],[124.5742,0.9735],[124.5726,0.9666],[124.5733,0.9586],[124.5777,0.9455],[124.581,0.9389],[124.5806,0.9348],[124.5845,0.9326],[124.5887,0.9333],[124.591,0.9389],[124.613,0.9479],[124.619,0.9467],[124.6221,0.9489],[124.6292,0.9471],[124.6328,0.9477],[124.6454,0.9567],[124.6511,0.9564],[124.6524,0.9515],[124.647,0.9393],[124.648,0.928],[124.6522,0.9237],[124.6538,0.9132],[124.6586,0.9083],[124.6568,0.9019],[124.6609,0.8969],[124.6608,0.8902],[124.6646,0.8886],[124.6671,0.8812],[124.6709,0.8782],[124.6699,0.8746],[124.6734,0.8696],[124.6829,0.8726],[124.6881,0.8652],[124.6867,0.8607],[124.6946,0.8603],[124.6973,0.8551],[124.697,0.8502],[124.6994,0.844],[124.7032,0.8465],[124.7078,0.846],[124.7083,0.8426],[124.7157,0.8457],[124.7139,0.8492],[124.7094,0.847],[124.7068,0.8553],[124.7072,0.8624],[124.7125,0.8716],[124.7121,0.8746],[124.7149,0.8858],[124.7207,0.8946],[124.729,0.8955],[124.7338,0.8872],[124.7379,0.8873],[124.7438,0.8916],[124.7474,0.8963],[124.7521,0.8961],[124.7548,0.8924],[124.7584,0.8942],[124.7629,0.8889],[124.7669,0.8915],[124.7672,0.8952],[124.7707,0.9001],[124.7677,0.9055],[124.7697,0.9139],[124.7741,0.9166],[124.7779,0.913],[124.7836,0.9203],[124.7874,0.9231],[124.7821,0.9296],[124.7863,0.9327],[124.7862,0.9399],[124.7888,0.9442],[124.7941,0.9478],[124.8103,0.9538],[124.8157,0.9547],[124.8223,0.959],[124.8525,0.9678],[124.8621,0.9696],[124.8731,0.9697],[124.884,0.9709],[124.8828,0.9743],[124.8853,0.9791],[124.8838,0.985],[124.8885,0.9844],[124.8947,0.9809],[124.8919,1.003],[124.8975,1.0069],[124.9006,1.0116],[124.9081,1.0175]]}},{"type":"Feature","properties":{"mhid":"1332:389","alt_name":"KABUPATEN BOLAANG MONGONDOW SELATAN","latitude":0.40912,"longitude":123.75961,"sample_value":800},"geometry":{"type":"LineString","coordinates":[[124.4759,0.466],[124.4742,0.4718],[124.4696,0.4766],[124.4664,0.4773],[124.4671,0.4866],[124.4662,0.4938],[124.4691,0.4984],[124.4666,0.5025],[124.4641,0.5109],[124.4596,0.518],[124.4541,0.5184],[124.4476,0.5232],[124.4474,0.5285],[124.438,0.5351],[124.4373,0.5375],[124.4409,0.5473],[124.4415,0.5607],[124.4395,0.5669],[124.4343,0.5682],[124.4232,0.5644],[124.418,0.5652],[124.4114,0.57],[124.4025,0.5729],[124.4015,0.5769],[124.3873,0.5794],[124.3813,0.582],[124.3803,0.587],[124.3772,0.5913],[124.3746,0.5987],[124.3579,0.6037],[124.3497,0.609],[124.345,0.6087],[124.3405,0.6112],[124.3376,0.6169],[124.3304,0.6053],[124.3261,0.6002],[124.3222,0.5927],[124.3201,0.583],[124.3129,0.5813],[124.3105,0.5777],[124.3016,0.5729],[124.298,0.5621],[124.2907,0.5566],[124.2829,0.5558],[124.274,0.5444],[124.2664,0.5425],[124.2588,0.5452],[124.2458,0.5421],[124.2341,0.5414],[124.2303,0.5396],[124.2219,0.5398],[124.2126,0.538],[124.198,0.5308],[124.1946,0.5276],[124.1837,0.528],[124.1777,0.5259],[124.1764,0.5317],[124.1809,0.5392],[124.1779,0.5429],[124.171,0.5459],[124.1672,0.5506],[124.1667,0.5554],[124.1606,0.5617],[124.1509,0.5573],[124.1443,0.5595],[124.1387,0.5582],[124.1378,0.5533],[124.1327,0.5536],[124.1306,0.5447],[124.122,0.5406],[124.1158,0.5364],[124.1131,0.5273],[124.1069,0.5247],[124.1026,0.5262],[124.0956,0.5197],[124.0871,0.5175],[124.08,0.5176],[124.0742,0.5139],[124.0629,0.5185],[124.0493,0.5117],[124.0463,0.5085],[124.0475,0.5025],[124.0454,0.4967],[124.0377,0.4964],[124.0329,0.4925],[124.0326,0.4873],[124.0262,0.486],[124.0235,0.483],[124.0242,0.4769],[124.0017,0.4669],[123.9923,0.468],[123.9903,0.4634],[123.9824,0.462],[123.9745,0.4631],[123.962,0.4607],[123.951,0.4559],[123.9499,0.4474],[123.9476,0.4425],[123.9393,0.4411],[123.9334,0.4328],[123.9294,0.4316],[123.9218,0.4344],[123.9168,0.4332],[123.9105,0.4341],[123.9044,0.4376],[123.9055,0.4435],[123.8967,0.4489],[123.8913,0.4509],[123.8871,0.4484],[123.8822,0.4488],[123.8761,0.4533],[123.869,0.4529],[123.8601,0.4591],[123.8455,0.4546],[123.8394,0.4547],[123.8338,0.4519],[123.8266,0.4433],[123.8174,0.4452],[123.8124,0.4432],[123.8046,0.4439],[123.8019,0.4413],[123.7904,0.4427],[123.7801,0.4462],[123.7764,0.4548],[123.767,0.4545],[123.7606,0.4601],[123.75,0.4571],[123.7466,0.4608],[123.7412,0.4615],[123.7382,0.4652],[123.7274,0.4614],[123.7246,0.4646],[123.7183,0.4637],[123.7135,0.4667],[123.7074,0.4563],[123.6986,0.456],[123.698,0.4619],[123.6957,0.464],[123.6912,0.4745],[123.6918,0.4866],[123.6959,0.4878],[123.7008,0.4958],[123.7107,0.5036],[123.7161,0.5121],[123.7212,0.5259],[123.7204,0.5314],[123.7174,0.5366],[123.7136,0.5475],[123.7144,0.5624],[123.7096,0.5706],[123.7054,0.5671],[123.6825,0.5627],[123.677,0.5651],[123.6601,0.5666],[123.6492,0.5726],[123.6437,0.5735],[123.638,0.5688],[123.6333,0.5675],[123.6315,0.5641],[123.6214,0.5615],[123.6091,0.5619],[123.6011,0.57],[123.5989,0.5752],[123.5906,0.5825],[123.5878,0.5868],[123.5833,0.5832],[123.5699,0.5823],[123.566,0.5779],[123.561,0.5797],[123.5562,0.5767],[123.5469,0.5756],[123.5439,0.578],[123.5374,0.5793],[123.5334,0.5769],[123.5324,0.5731],[123.5335,0.5653],[123.5276,0.5449],[123.5292,0.5373],[123.5316,0.5335],[123.5442,0.5261],[123.5473,0.523],[123.5497,0.5142],[123.5523,0.5107],[123.5463,0.4977],[123.523,0.4904],[123.5248,0.4571],[123.5259,0.4536],[123.5394,0.4451],[123.5474,0.4429],[123.5499,0.433],[123.5417,0.428],[123.5348,0.4184],[123.5317,0.4107],[123.529,0.4075],[123.511,0.3963],[123.4979,0.3821],[123.496,0.3696],[123.4916,0.3657],[123.4937,0.3568],[123.4847,0.3561],[123.48,0.3528],[123.48,0.3469],[123.4837,0.3397],[123.481,0.3369],[123.4829,0.3254],[123.479,0.3189],[123.4817,0.3133],[123.4859,0.3146],[123.4907,0.3071],[123.4957,0.3066],[123.5064,0.3097],[123.5099,0.3137],[123.5148,0.3129],[123.5226,0.3143],[123.5255,0.318],[123.5364,0.3178],[123.545,0.3219],[123.5569,0.3222],[123.567,0.3199],[123.5745,0.3199],[123.5755,0.317],[123.5808,0.3149],[123.5856,0.3103],[123.5898,0.3089],[123.5965,0.3099],[123.6039,0.3081],[123.611,0.3093],[123.6125,0.3003],[123.6222,0.2935],[123.6295,0.2922],[123.6338,0.2946],[123.633,0.2992],[123.6376,0.3043],[123.6433,0.3033],[123.6468,0.3057],[123.6587,0.303],[123.6658,0.3044],[123.6733,0.2998],[123.6764,0.2955],[123.6798,0.2976],[123.6798,0.3032],[123.6868,0.3046],[123.6929,0.3078],[123.696,0.3118],[123.7087,0.3185],[123.719,0.3162],[123.7357,0.3237],[123.7408,0.3218],[123.7449,0.3176],[123.7524,0.3199],[123.765,0.3149],[123.771,0.3149],[123.7776,0.3124],[123.7882,0.3143],[123.7903,0.317],[123.7975,0.3173],[123.8013,0.3237],[123.8022,0.3305],[123.8082,0.3339],[123.8207,0.3362],[123.8237,0.3314],[123.8331,0.3334],[123.8382,0.3282],[123.8473,0.328],[123.8569,0.3307],[123.8681,0.33],[123.8761,0.336],[123.8808,0.3469],[123.8882,0.3479],[123.8924,0.3502],[123.8987,0.3483],[123.9059,0.3518],[123.9135,0.3458],[123.9218,0.3437],[123.9237,0.3493],[123.9222,0.3528],[123.9255,0.3557],[123.9327,0.3554],[123.9352,0.358],[123.9401,0.3523],[123.9461,0.3551],[123.9435,0.3617],[123.9488,0.3626],[123.9501,0.3573],[123.9606,0.3588],[123.9705,0.3569],[123.9768,0.3596],[123.9792,0.3653],[123.9783,0.3685],[123.9837,0.3719],[123.9973,0.3749],[124.0092,0.3745],[124.0246,0.3716],[124.0334,0.374],[124.0358,0.3685],[124.0402,0.3705],[124.0402,0.3741],[124.0455,0.3757],[124.0456,0.3694],[124.0526,0.3656],[124.0559,0.3692],[124.065,0.3702],[124.0675,0.3796],[124.0735,0.3797],[124.0758,0.3849],[124.08,0.3873],[124.0868,0.3873],[124.0972,0.3847],[124.1128,0.3862],[124.1222,0.3919],[124.1349,0.3929],[124.1435,0.3948],[124.1523,0.3937],[124.1578,0.391],[124.1649,0.3936],[124.1703,0.394],[124.1851,0.3925],[124.19,0.397],[124.1965,0.3965],[124.206,0.3936],[124.2123,0.3974],[124.2119,0.3907],[124.2161,0.3835],[124.2198,0.3827],[124.2207,0.3881],[124.2251,0.3951],[124.231,0.3915],[124.2322,0.3887],[124.2395,0.3967],[124.2437,0.3981],[124.2612,0.4008],[124.2783,0.402],[124.2816,0.4054],[124.2878,0.4064],[124.2867,0.4134],[124.2821,0.4128],[124.2746,0.4202],[124.2722,0.4289],[124.2777,0.4284],[124.2824,0.4228],[124.2893,0.4267],[124.2988,0.4278],[124.3039,0.4273],[124.3178,0.4175],[124.3216,0.4264],[124.3227,0.4375],[124.3218,0.4419],[124.3248,0.4462],[124.328,0.4432],[124.3313,0.444],[124.3355,0.4399],[124.3431,0.4416],[124.3404,0.4461],[124.3454,0.4503],[124.3529,0.4464],[124.3577,0.4501],[124.3575,0.4423],[124.3657,0.4449],[124.3698,0.4408],[124.3767,0.4449],[124.3849,0.4451],[124.3921,0.4488],[124.3993,0.4492],[124.4123,0.4545],[124.4251,0.4532],[124.4313,0.4492],[124.4312,0.4449],[124.439,0.4463],[124.4414,0.4483],[124.4474,0.4475],[124.4542,0.45],[124.4488,0.4563],[124.4465,0.4611],[124.45,0.466],[124.4574,0.4631],[124.4654,0.4656],[124.4669,0.4635],[124.4759,0.466]]}},{"type":"Feature","properties":{"mhid":"1332:390","alt_name":"KABUPATEN BOLAANG MONGONDOW TIMUR","latitude":0.72073,"longitude":124.50256,"sample_value":738},"geometry":{"type":"LineString","coordinates":[[124.6576,0.7811],[124.6556,0.7769],[124.6592,0.7695],[124.6623,0.773],[124.6576,0.7811]]}},{"type":"Feature","properties":{"mhid":"1332:390","alt_name":"KABUPATEN BOLAANG MONGONDOW TIMUR","latitude":0.72073,"longitude":124.50256,"sample_value":738},"geometry":{"type":"LineString","coordinates":[[124.685,0.8121],[124.6729,0.8086],[124.6786,0.8061],[124.6869,0.8081],[124.685,0.8121]]}},{"type":"Feature","properties":{"mhid":"1332:390","alt_name":"KABUPATEN BOLAANG MONGONDOW TIMUR","latitude":0.72073,"longitude":124.50256,"sample_value":738},"geometry":{"type":"LineString","coordinates":[[124.6994,0.844],[124.697,0.8502],[124.6973,0.8551],[124.6946,0.8603],[124.6867,0.8607],[124.6881,0.8652],[124.6829,0.8726],[124.6734,0.8696],[124.6699,0.8746],[124.6709,0.8782],[124.6671,0.8812],[124.6646,0.8886],[124.6608,0.8902],[124.6609,0.8969],[124.6568,0.9019],[124.6586,0.9083],[124.6538,0.9132],[124.6522,0.9237],[124.648,0.928],[124.647,0.9393],[124.6524,0.9515],[124.6511,0.9564],[124.6454,0.9567],[124.6328,0.9477],[124.6292,0.9471],[124.6221,0.9489],[124.619,0.9467],[124.613,0.9479],[124.591,0.9389],[124.5887,0.9333],[124.5845,0.9326],[124.5806,0.9348],[124.5778,0.9148],[124.5737,0.9126],[124.5716,0.9058],[124.5654,0.8937],[124.5584,0.887],[124.5612,0.8811],[124.5585,0.8776],[124.5601,0.8675],[124.5556,0.8654],[124.5542,0.8605],[124.5486,0.8537],[124.5412,0.8528],[124.5346,0.8472],[124.5328,0.8413],[124.5257,0.8412],[124.5224,0.8311],[124.5198,0.8307],[124.5146,0.8242],[124.509,0.8245],[124.4971,0.8206],[124.4972,0.8124],[124.4922,0.8087],[124.4879,0.802],[124.4883,0.7946],[124.4923,0.7892],[124.4898,0.7806],[124.4893,0.7665],[124.4812,0.7633],[124.4787,0.7687],[124.4717,0.7631],[124.4695,0.7633],[124.472,0.7587],[124.4639,0.7438],[124.4663,0.7399],[124.4655,0.7326],[124.4589,0.7318],[124.4558,0.7366],[124.4564,0.744],[124.4519,0.7578],[124.4538,0.7617],[124.453,0.7701],[124.4468,0.7729],[124.4459,0.7783],[124.4386,0.7865],[124.4359,0.7867],[124.4337,0.7925],[124.4289,0.788],[124.4231,0.7857],[124.4199,0.7806],[124.417,0.7692],[124.4092,0.77],[124.4044,0.7675],[124.3987,0.7689],[124.3831,0.7648],[124.3801,0.7618],[124.3695,0.76],[124.3644,0.7573],[124.3535,0.7547],[124.3501,0.7403],[124.3499,0.7335],[124.3449,0.7253],[124.3474,0.7187],[124.349,0.7086],[124.3512,0.6976],[124.3548,0.6961],[124.3575,0.6917],[124.3605,0.6826],[124.3601,0.6767],[124.3478,0.6676],[124.3422,0.6604],[124.3436,0.6522],[124.3404,0.6481],[124.3391,0.6376],[124.3365,0.6338],[124.3353,0.6257],[124.3376,0.6169],[124.3405,0.6112],[124.345,0.6087],[124.3497,0.609],[124.3579,0.6037],[124.3746,0.5987],[124.3772,0.5913],[124.3803,0.587],[124.3813,0.582],[124.3873,0.5794],[124.4015,0.5769],[124.4025,0.5729],[124.4114,0.57],[124.418,0.5652],[124.4232,0.5644],[124.4343,0.5682],[124.4395,0.5669],[124.4415,0.5607],[124.4409,0.5473],[124.4373,0.5375],[124.438,0.5351],[124.4474,0.5285],[124.4476,0.5232],[124.4541,0.5184],[124.4596,0.518],[124.4641,0.5109],[124.4666,0.5025],[124.4691,0.4984],[124.4662,0.4938],[124.4671,0.4866],[124.4664,0.4773],[124.4696,0.4766],[124.4742,0.4718],[124.4759,0.466],[124.483,0.4684],[124.4845,0.4766],[124.4805,0.4787],[124.4898,0.4868],[124.4911,0.4821],[124.4959,0.4752],[124.4924,0.4703],[124.4962,0.4662],[124.5017,0.4666],[124.5008,0.4731],[124.5119,0.4735],[124.5129,0.4774],[124.5081,0.4817],[124.5085,0.4868],[124.502,0.5059],[124.5003,0.5078],[124.5032,0.5149],[124.5003,0.5183],[124.4993,0.5246],[124.4904,0.5272],[124.4907,0.5355],[124.4944,0.5402],[124.4942,0.5475],[124.4972,0.5509],[124.5052,0.5517],[124.5106,0.5571],[124.5185,0.5624],[124.5207,0.5597],[124.5254,0.5633],[124.5243,0.5664],[124.528,0.5733],[124.5278,0.5784],[124.5356,0.5851],[124.5439,0.589],[124.5575,0.5908],[124.5617,0.5848],[124.5644,0.5768],[124.569,0.5791],[124.5683,0.6002],[124.5654,0.6138],[124.5601,0.6162],[124.5556,0.6231],[124.5474,0.6214],[124.5439,0.6248],[124.5482,0.632],[124.5523,0.6351],[124.5548,0.6497],[124.5607,0.6538],[124.5647,0.6648],[124.5714,0.6697],[124.5769,0.6714],[124.5798,0.679],[124.5764,0.6857],[124.5786,0.688],[124.5869,0.6872],[124.5877,0.683],[124.5948,0.6849],[124.598,0.6967],[124.5966,0.7034],[124.5987,0.7067],[124.6093,0.704],[124.6133,0.6998],[124.6177,0.7044],[124.6223,0.7039],[124.6226,0.7118],[124.6275,0.711],[124.6302,0.7245],[124.6263,0.7271],[124.6237,0.7331],[124.6233,0.7504],[124.6247,0.7655],[124.6282,0.773],[124.6392,0.7908],[124.6565,0.8072],[124.6595,0.8087],[124.6635,0.8168],[124.6696,0.8239],[124.6708,0.8287],[124.6837,0.8303],[124.6906,0.8372],[124.6973,0.8396],[124.6994,0.844]]}},{"type":"Feature","properties":{"mhid":"1332:391","alt_name":"KOTA MANADO","latitude":1.51667,"longitude":124.88333,"sample_value":840},"geometry":{"type":"LineString","coordinates":[[124.8916,1.4584],[124.8936,1.4637],[124.8917,1.4772],[124.8941,1.4847],[124.9021,1.491],[124.9045,1.4958],[124.9133,1.4977],[124.9179,1.5024],[124.9239,1.5053],[124.9312,1.5063],[124.933,1.5133],[124.9278,1.5176],[124.9228,1.5283],[124.9273,1.5373],[124.9281,1.5644],[124.9242,1.5654],[124.9226,1.5597],[124.9161,1.5661],[124.911,1.5679],[124.91,1.5736],[124.9026,1.5754],[124.8971,1.5745],[124.8964,1.5689],[124.8896,1.569],[124.8871,1.5742],[124.8825,1.5717],[124.8782,1.5753],[124.8716,1.5718],[124.8667,1.5709],[124.8594,1.5642],[124.8555,1.5709],[124.8452,1.5644],[124.8385,1.5669],[124.8299,1.5736],[124.8206,1.5825],[124.8085,1.5778],[124.8042,1.5711],[124.8059,1.5595],[124.8096,1.5539],[124.8136,1.5514],[124.8213,1.5439],[124.8237,1.5388],[124.8319,1.5359],[124.8367,1.5294],[124.8415,1.5269],[124.8448,1.5193],[124.845,1.5152],[124.8405,1.4988],[124.8334,1.4857],[124.8328,1.4758],[124.8311,1.47],[124.8256,1.464],[124.8174,1.4592],[124.8054,1.4602],[124.7934,1.46],[124.7843,1.4612],[124.7836,1.4547],[124.7848,1.446],[124.787,1.4438],[124.7952,1.4428],[124.8114,1.4364],[124.8162,1.4326],[124.8302,1.4312],[124.8345,1.4353],[124.8469,1.4369],[124.8507,1.4401],[124.8551,1.4373],[124.8612,1.4367],[124.8612,1.4461],[124.8636,1.4496],[124.8682,1.4482],[124.8708,1.4544],[124.8708,1.4602],[124.8728,1.4656],[124.8834,1.4618],[124.8852,1.4542],[124.8916,1.4584]]}},{"type":"Feature","properties":{"mhid":"1332:391","alt_name":"KOTA MANADO","latitude":1.51667,"longitude":124.88333,"sample_value":840},"geometry":{"type":"LineString","coordinates":[[124.7442,1.6335],[124.7388,1.6309],[124.7369,1.6274],[124.7358,1.6178],[124.7383,1.6162],[124.7471,1.6193],[124.7636,1.6205],[124.77,1.6126],[124.7709,1.6044],[124.776,1.5978],[124.7815,1.5954],[124.7807,1.6091],[124.7818,1.6124],[124.7775,1.624],[124.7741,1.6284],[124.7675,1.6267],[124.758,1.6271],[124.7442,1.6335]]}},{"type":"Feature","properties":{"mhid":"1332:391","alt_name":"KOTA MANADO","latitude":1.51667,"longitude":124.88333,"sample_value":840},"geometry":{"type":"LineString","coordinates":[[124.8009,1.6369],[124.7993,1.63],[124.8029,1.627],[124.8045,1.6324],[124.8009,1.6369]]}},{"type":"Feature","properties":{"mhid":"1332:391","alt_name":"KOTA MANADO","latitude":1.51667,"longitude":124.88333,"sample_value":840},"geometry":{"type":"LineString","coordinates":[[124.7025,1.6488],[124.6903,1.6469],[124.6843,1.6422],[124.6814,1.6312],[124.6835,1.6224],[124.6917,1.6179],[124.6975,1.6166],[124.711,1.6237],[124.716,1.6281],[124.7159,1.6398],[124.7126,1.6432],[124.7025,1.6488]]}},{"type":"Feature","properties":{"mhid":"1332:392","alt_name":"KOTA BITUNG","latitude":1.48333,"longitude":125.15,"sample_value":250},"geometry":{"type":"LineString","coordinates":[[125.2925,1.5492],[125.2886,1.5481],[125.2779,1.5269],[125.2798,1.5205],[125.2778,1.5165],[125.2717,1.5142],[125.2692,1.5052],[125.264,1.4983],[125.2642,1.4954],[125.2579,1.4888],[125.2562,1.4833],[125.2512,1.4802],[125.2488,1.471],[125.243,1.4679],[125.2434,1.4591],[125.2394,1.4503],[125.2384,1.4452],[125.2349,1.4435],[125.2328,1.4389],[125.2278,1.4374],[125.226,1.4398],[125.2093,1.4324],[125.2036,1.4333],[125.1978,1.4323],[125.1906,1.4283],[125.1856,1.4282],[125.1817,1.4222],[125.1826,1.419],[125.1778,1.4128],[125.1717,1.4084],[125.1771,1.4015],[125.1712,1.401],[125.1689,1.3965],[125.1733,1.3945],[125.1754,1.3907],[125.1807,1.3951],[125.1888,1.3995],[125.1945,1.3972],[125.1984,1.3987],[125.2016,1.4036],[125.2064,1.4049],[125.2104,1.3994],[125.2225,1.3978],[125.234,1.4013],[125.2347,1.4095],[125.2396,1.411],[125.244,1.4152],[125.2502,1.4146],[125.2525,1.4111],[125.2584,1.4138],[125.2564,1.4196],[125.2601,1.4275],[125.2635,1.4299],[125.2602,1.4351],[125.2621,1.4417],[125.2607,1.4455],[125.2644,1.4503],[125.2709,1.4654],[125.2739,1.4656],[125.275,1.4724],[125.2715,1.4759],[125.275,1.4792],[125.2792,1.4798],[125.2826,1.4861],[125.2819,1.4947],[125.2763,1.4987],[125.2748,1.5045],[125.2779,1.5071],[125.2774,1.5123],[125.284,1.5195],[125.2864,1.5276],[125.2922,1.5334],[125.2937,1.5466],[125.2925,1.5492]]}},{"type":"Feature","properties":{"mhid":"1332:392","alt_name":"KOTA BITUNG","latitude":1.48333,"longitude":125.15,"sample_value":250},"geometry":{"type":"LineString","coordinates":[[125.1045,1.3968],[125.1078,1.3933],[125.1134,1.3968],[125.1202,1.4032],[125.1241,1.4225],[125.1265,1.4283],[125.1413,1.4373],[125.1523,1.4397],[125.1714,1.4389],[125.1806,1.4405],[125.1919,1.4384],[125.1936,1.4411],[125.2079,1.4456],[125.2078,1.449],[125.2143,1.4581],[125.2263,1.4607],[125.2352,1.4697],[125.2334,1.4745],[125.2381,1.4841],[125.2367,1.4894],[125.2375,1.4954],[125.2415,1.4965],[125.2411,1.5034],[125.2455,1.5088],[125.2452,1.5147],[125.2387,1.5195],[125.2349,1.5291],[125.2279,1.5343],[125.2239,1.5356],[125.2034,1.5519],[125.1955,1.5553],[125.1899,1.556],[125.1753,1.5624],[125.1694,1.5663],[125.1589,1.5769],[125.1548,1.5833],[125.1551,1.5957],[125.148,1.5918],[125.146,1.5768],[125.1374,1.5647],[125.128,1.559],[125.1215,1.5582],[125.1122,1.5607],[125.1048,1.5549],[125.0946,1.5493],[125.0906,1.544],[125.0841,1.5399],[125.0717,1.5364],[125.0771,1.5256],[125.0819,1.5257],[125.0836,1.514],[125.0772,1.5069],[125.0653,1.4971],[125.0579,1.4875],[125.0466,1.4761],[125.0403,1.464],[125.0307,1.4536],[125.0481,1.4526],[125.0543,1.4479],[125.0655,1.4449],[125.0789,1.4501],[125.0863,1.4464],[125.0921,1.4472],[125.092,1.4259],[125.0938,1.4184],[125.098,1.411],[125.1008,1.403],[125.1045,1.3968]]}},{"type":"Feature","properties":{"mhid":"1332:393","alt_name":"KOTA TOMOHON","latitude":1.31307,"longitude":124.83404,"sample_value":501},"geometry":{"type":"LineString","coordinates":[[124.8255,1.4043],[124.8207,1.4036],[124.8154,1.3983],[124.8116,1.3973],[124.8094,1.3871],[124.8115,1.3807],[124.8109,1.3722],[124.8057,1.3612],[124.7962,1.3567],[124.7913,1.3594],[124.7855,1.3658],[124.7776,1.3617],[124.7702,1.3679],[124.7688,1.3546],[124.7551,1.3443],[124.7437,1.3324],[124.7404,1.3136],[124.7442,1.2872],[124.753,1.2797],[124.7571,1.2789],[124.7611,1.2846],[124.7682,1.2897],[124.7822,1.2883],[124.7891,1.2825],[124.7955,1.2819],[124.801,1.2767],[124.8034,1.2718],[124.8141,1.27],[124.8238,1.2563],[124.8288,1.2538],[124.8345,1.2581],[124.8397,1.257],[124.8493,1.2593],[124.8542,1.2643],[124.8554,1.2678],[124.856,1.2823],[124.8592,1.2895],[124.8557,1.2944],[124.8638,1.2984],[124.8688,1.3027],[124.8706,1.3073],[124.8713,1.3169],[124.874,1.323],[124.8788,1.3293],[124.883,1.3371],[124.8877,1.3397],[124.888,1.3438],[124.8921,1.3489],[124.8921,1.3544],[124.8881,1.3582],[124.8786,1.3543],[124.8648,1.3519],[124.8609,1.3615],[124.8506,1.3689],[124.8448,1.3764],[124.8382,1.3812],[124.8371,1.3911],[124.841,1.3981],[124.8408,1.4016],[124.8311,1.4053],[124.8255,1.4043]]}},{"type":"Feature","properties":{"mhid":"1332:394","alt_name":"KOTA KOTAMOBAGU","latitude":0.68915,"longitude":124.32678,"sample_value":354},"geometry":{"type":"LineString","coordinates":[[124.3535,0.7547],[124.3448,0.7552],[124.3472,0.7663],[124.3414,0.768],[124.3358,0.7667],[124.3287,0.7698],[124.3219,0.7697],[124.3153,0.7646],[124.3075,0.7614],[124.3093,0.7559],[124.2996,0.7524],[124.2939,0.7525],[124.2862,0.7476],[124.2788,0.7455],[124.2745,0.7406],[124.2772,0.7372],[124.2781,0.7314],[124.2746,0.7286],[124.2717,0.716],[124.2733,0.7093],[124.2774,0.7094],[124.2888,0.701],[124.2951,0.6979],[124.2937,0.6943],[124.3034,0.695],[124.3063,0.6979],[124.3184,0.701],[124.3248,0.704],[124.3285,0.7102],[124.3326,0.7136],[124.3385,0.71],[124.349,0.7086],[124.3474,0.7187],[124.3449,0.7253],[124.3499,0.7335],[124.3501,0.7403],[124.3535,0.7547]]}},{"type":"Feature","properties":{"mhid":"1332:396","alt_name":"KABUPATEN BANGGAI KEPULAUAN","latitude":-1.6424,"longitude":123.54881,"sample_value":104},"geometry":{"type":"LineString","coordinates":[[123.3216,-1.2184],[123.3244,-1.2103],[123.3262,-1.1966],[123.3252,-1.1885],[123.3176,-1.1759],[123.312,-1.1742],[123.304,-1.1771],[123.2886,-1.1891],[123.282,-1.1925],[123.279,-1.1961],[123.2789,-1.2056],[123.2749,-1.2158],[123.2767,-1.22],[123.2804,-1.222],[123.2819,-1.2309],[123.2846,-1.2353],[123.2946,-1.2695],[123.2942,-1.2749],[123.2969,-1.2811],[123.3008,-1.2837],[123.3053,-1.2804],[123.311,-1.2732],[123.3138,-1.2638],[123.3146,-1.2537],[123.3161,-1.2492],[123.315,-1.2376],[123.3159,-1.2326],[123.3216,-1.2184]]}},{"type":"Feature","properties":{"mhid":"1332:396","alt_name":"KABUPATEN BANGGAI KEPULAUAN","latitude":-1.6424,"longitude":123.54881,"sample_value":104},"geometry":{"type":"LineString","coordinates":[[123.1712,-1.149],[123.1644,-1.1511],[123.1617,-1.1827],[123.1589,-1.1905],[123.151,-1.198],[123.1474,-1.2057],[123.1482,-1.2098],[123.1432,-1.2106],[123.1391,-1.2081],[123.1385,-1.2035],[123.1317,-1.1904],[123.1205,-1.1792],[123.1107,-1.1648],[123.1074,-1.1614],[123.1028,-1.161],[123.0921,-1.1654],[123.0852,-1.1703],[123.0735,-1.1705],[123.0693,-1.173],[123.049,-1.1784],[123.0329,-1.1778],[123.0175,-1.1901],[123.0092,-1.1911],[123.0013,-1.1975],[122.9956,-1.1969],[122.9848,-1.2039],[122.9793,-1.2026],[122.9754,-1.2071],[122.9732,-1.2148],[122.9671,-1.2152],[122.9546,-1.1947],[122.9476,-1.1868],[122.9374,-1.1824],[122.9265,-1.184],[122.9201,-1.1813],[122.9119,-1.1803],[122.9052,-1.1825],[122.8994,-1.1901],[122.8988,-1.1988],[122.8894,-1.2097],[122.8848,-1.2115],[122.8821,-1.2151],[122.8824,-1.2268],[122.8758,-1.2359],[122.8748,-1.2405],[122.8716,-1.2423],[122.8711,-1.2495],[122.8626,-1.2587],[122.8573,-1.2598],[122.8532,-1.2639],[122.8405,-1.2723],[122.8363,-1.2732],[122.8247,-1.2879],[122.8249,-1.2938],[122.8205,-1.3042],[122.8157,-1.3078],[122.8133,-1.318],[122.8135,-1.3253],[122.8169,-1.3301],[122.8162,-1.3344],[122.8116,-1.3405],[122.8043,-1.3475],[122.8029,-1.3515],[122.8039,-1.3572],[122.7961,-1.3711],[122.7973,-1.3775],[122.7945,-1.3815],[122.7926,-1.4026],[122.791,-1.4082],[122.7903,-1.4181],[122.7915,-1.4242],[122.7941,-1.4267],[122.7936,-1.4389],[122.7879,-1.4462],[122.7914,-1.4518],[122.789,-1.4552],[122.7883,-1.4624],[122.7935,-1.4715],[122.7903,-1.4741],[122.7903,-1.4813],[122.799,-1.4919],[122.8084,-1.4847],[122.8135,-1.4856],[122.8159,-1.4883],[122.8196,-1.4828],[122.8225,-1.4917],[122.826,-1.4978],[122.8188,-1.5],[122.824,-1.5049],[122.8281,-1.5139],[122.8344,-1.5193],[122.8403,-1.5203],[122.8385,-1.5305],[122.8442,-1.5343],[122.8472,-1.5423],[122.853,-1.5524],[122.8543,-1.5603],[122.8495,-1.5675],[122.8491,-1.5782],[122.8575,-1.5827],[122.8628,-1.5867],[122.8687,-1.5957],[122.879,-1.6006],[122.89,-1.5999],[122.8944,-1.6008],[122.9068,-1.5996],[122.9172,-1.593],[122.9265,-1.5808],[122.9301,-1.5677],[122.9351,-1.5622],[122.9423,-1.5494],[122.948,-1.544],[122.956,-1.5423],[122.9582,-1.5464],[122.9638,-1.5463],[122.9673,-1.5389],[122.9749,-1.5326],[122.9788,-1.5253],[122.9837,-1.5238],[122.9863,-1.5188],[122.9909,-1.5144],[122.9988,-1.516],[122.9997,-1.5086],[123.0032,-1.5004],[123.0089,-1.5032],[123.0118,-1.4954],[123.0176,-1.4898],[123.0201,-1.4803],[123.0226,-1.4756],[123.0259,-1.461],[123.0282,-1.4588],[123.0296,-1.4426],[123.0354,-1.4382],[123.0368,-1.4334],[123.0372,-1.4212],[123.0431,-1.418],[123.0477,-1.4077],[123.0537,-1.3998],[123.0574,-1.3894],[123.0682,-1.3799],[123.0716,-1.3713],[123.0764,-1.3672],[123.0793,-1.3613],[123.0838,-1.3582],[123.0886,-1.3484],[123.0962,-1.346],[123.0967,-1.3413],[123.1037,-1.3317],[123.1084,-1.3213],[123.1102,-1.314],[123.1135,-1.3133],[123.1165,-1.303],[123.1197,-1.3025],[123.1195,-1.3122],[123.1219,-1.3186],[123.1299,-1.3132],[123.1327,-1.3096],[123.1334,-1.3045],[123.1373,-1.2994],[123.143,-1.297],[123.15,-1.2968],[123.1585,-1.3006],[123.1624,-1.3001],[123.1621,-1.3059],[123.1598,-1.3106],[123.1592,-1.3261],[123.1568,-1.3298],[123.1556,-1.3364],[123.156,-1.3439],[123.1583,-1.3533],[123.157,-1.3659],[123.16,-1.3831],[123.1659,-1.3865],[123.1687,-1.3982],[123.1638,-1.3999],[123.1647,-1.4076],[123.1672,-1.4095],[123.1672,-1.422],[123.1726,-1.4283],[123.1693,-1.4379],[123.1653,-1.4385],[123.1632,-1.4531],[123.1667,-1.4504],[123.1723,-1.4534],[123.174,-1.4587],[123.1729,-1.4642],[123.1759,-1.468],[123.1748,-1.4767],[123.178,-1.4814],[123.1783,-1.4876],[123.1761,-1.4988],[123.1805,-1.5006],[123.1849,-1.5125],[123.1825,-1.5197],[123.1778,-1.5225],[123.175,-1.5287],[123.1709,-1.5324],[123.1702,-1.536],[123.1609,-1.5411],[123.1532,-1.5421],[123.1439,-1.5474],[123.1432,-1.5511],[123.1303,-1.5621],[123.1282,-1.5681],[123.1184,-1.5646],[123.1074,-1.5666],[123.1064,-1.5722],[123.1017,-1.576],[123.1001,-1.5797],[123.0978,-1.5926],[123.1009,-1.6038],[123.1044,-1.601],[123.1093,-1.593],[123.1094,-1.6068],[123.1149,-1.6122],[123.1227,-1.6134],[123.1299,-1.612],[123.1325,-1.6075],[123.1388,-1.6112],[123.1414,-1.61],[123.1477,-1.6152],[123.1509,-1.6143],[123.1553,-1.6313],[123.1533,-1.6367],[123.1547,-1.6396],[123.1631,-1.64],[123.17,-1.6308],[123.1765,-1.6344],[123.182,-1.63],[123.1839,-1.6238],[123.1884,-1.6204],[123.1934,-1.6133],[123.1966,-1.6139],[123.2006,-1.6184],[123.2087,-1.6145],[123.2059,-1.6113],[123.216,-1.6043],[123.2202,-1.6045],[123.222,-1.6007],[123.2289,-1.5973],[123.2316,-1.6016],[123.2327,-1.6083],[123.2316,-1.6175],[123.2336,-1.6225],[123.2337,-1.6328],[123.2374,-1.645],[123.2433,-1.6483],[123.249,-1.645],[123.2553,-1.6383],[123.2577,-1.6324],[123.2572,-1.6272],[123.2603,-1.6262],[123.2566,-1.6145],[123.2582,-1.6091],[123.2546,-1.6031],[123.2499,-1.6002],[123.2471,-1.5959],[123.2388,-1.6012],[123.2358,-1.5956],[123.2441,-1.5868],[123.2437,-1.5822],[123.2456,-1.5766],[123.2403,-1.569],[123.2424,-1.5644],[123.2393,-1.5598],[123.2426,-1.55],[123.241,-1.5428],[123.244,-1.542],[123.2471,-1.5349],[123.2461,-1.5294],[123.2504,-1.5175],[123.2489,-1.5155],[123.247,-1.5058],[123.249,-1.4967],[123.2519,-1.4934],[123.2495,-1.4899],[123.2579,-1.4868],[123.2584,-1.4826],[123.2535,-1.4724],[123.2588,-1.467],[123.257,-1.4615],[123.2573,-1.4504],[123.2564,-1.4467],[123.2604,-1.4431],[123.2668,-1.4403],[123.2713,-1.4433],[123.2758,-1.443],[123.2824,-1.4368],[123.2836,-1.431],[123.2834,-1.4208],[123.2893,-1.4146],[123.2946,-1.4137],[123.2996,-1.4104],[123.3025,-1.4138],[123.3073,-1.4126],[123.3118,-1.4152],[123.3182,-1.4222],[123.322,-1.4199],[123.3212,-1.4362],[123.3254,-1.443],[123.3289,-1.4545],[123.3343,-1.4609],[123.341,-1.4657],[123.3412,-1.4699],[123.348,-1.4734],[123.354,-1.4702],[123.3554,-1.4734],[123.3526,-1.4833],[123.3544,-1.4921],[123.3538,-1.5007],[123.3555,-1.514],[123.354,-1.5187],[123.3543,-1.5256],[123.3577,-1.5259],[123.3612,-1.5177],[123.3616,-1.5127],[123.3652,-1.5005],[123.3711,-1.498],[123.3752,-1.4989],[123.3805,-1.5029],[123.3854,-1.5006],[123.3908,-1.5048],[123.3931,-1.5112],[123.3986,-1.5139],[123.4043,-1.5215],[123.4057,-1.5272],[123.4123,-1.5306],[123.4126,-1.521],[123.4255,-1.5154],[123.4367,-1.5199],[123.4384,-1.5168],[123.4377,-1.5068],[123.4433,-1.5064],[123.4443,-1.5103],[123.4502,-1.5159],[123.4562,-1.5177],[123.461,-1.5102],[123.4628,-1.5038],[123.468,-1.5017],[123.47,-1.4945],[123.4691,-1.4906],[123.4722,-1.4817],[123.4708,-1.4732],[123.4726,-1.4625],[123.4743,-1.461],[123.483,-1.4661],[123.4864,-1.47],[123.4973,-1.4667],[123.5023,-1.4608],[123.5092,-1.4593],[123.5133,-1.4546],[123.5188,-1.4453],[123.5215,-1.4376],[123.5242,-1.4339],[123.53,-1.413],[123.5363,-1.4038],[123.5379,-1.3977],[123.5368,-1.3878],[123.5396,-1.3839],[123.5396,-1.3775],[123.5344,-1.3634],[123.5405,-1.3529],[123.551,-1.3441],[123.5527,-1.3361],[123.557,-1.3317],[123.5586,-1.3192],[123.5575,-1.3154],[123.5596,-1.3091],[123.5574,-1.3072],[123.5575,-1.3002],[123.5556,-1.293],[123.5581,-1.289],[123.5593,-1.2814],[123.5533,-1.2769],[123.5499,-1.2785],[123.5405,-1.2747],[123.5303,-1.2736],[123.523,-1.2674],[123.5222,-1.2645],[123.516,-1.2632],[123.5093,-1.2666],[123.4963,-1.2702],[123.487,-1.2696],[123.4804,-1.2637],[123.473,-1.2498],[123.4679,-1.2482],[123.4585,-1.241],[123.4508,-1.2398],[123.4441,-1.2365],[123.4413,-1.2405],[123.4395,-1.2477],[123.44,-1.2559],[123.4446,-1.2612],[123.4455,-1.2671],[123.4313,-1.2699],[123.4213,-1.2638],[123.4187,-1.2557],[123.4149,-1.2551],[123.41,-1.2587],[123.4074,-1.2543],[123.4038,-1.2524],[123.4042,-1.2439],[123.4116,-1.2355],[123.4132,-1.2299],[123.4117,-1.2262],[123.4059,-1.2237],[123.403,-1.2323],[123.3983,-1.2351],[123.3917,-1.2292],[123.3903,-1.2237],[123.3811,-1.2206],[123.3726,-1.223],[123.3652,-1.2269],[123.3591,-1.2354],[123.3556,-1.2378],[123.3451,-1.253],[123.3378,-1.2592],[123.3306,-1.2672],[123.3271,-1.2733],[123.324,-1.282],[123.3237,-1.2904],[123.3212,-1.2958],[123.3139,-1.3041],[123.3018,-1.3079],[123.299,-1.3047],[123.2898,-1.3087],[123.291,-1.3136],[123.2857,-1.3209],[123.2818,-1.3224],[123.2792,-1.3292],[123.2822,-1.333],[123.2811,-1.3375],[123.2824,-1.3442],[123.2865,-1.3493],[123.2838,-1.3584],[123.2773,-1.3644],[123.2722,-1.3708],[123.2687,-1.3792],[123.2699,-1.382],[123.2591,-1.3899],[123.2493,-1.3898],[123.2466,-1.3909],[123.2441,-1.3983],[123.2385,-1.3975],[123.2365,-1.3928],[123.2301,-1.39],[123.2314,-1.3853],[123.2366,-1.3848],[123.2359,-1.3807],[123.2271,-1.3681],[123.2292,-1.3664],[123.2274,-1.3593],[123.2244,-1.3587],[123.2198,-1.3518],[123.2192,-1.3652],[123.2163,-1.3611],[123.2113,-1.3492],[123.2095,-1.3487],[123.2063,-1.3394],[123.2007,-1.3321],[123.1947,-1.3301],[123.1948,-1.3258],[123.1892,-1.319],[123.184,-1.3217],[123.186,-1.3067],[123.1924,-1.3012],[123.1955,-1.2966],[123.1977,-1.2885],[123.1961,-1.2703],[123.1886,-1.266],[123.1919,-1.26],[123.198,-1.2641],[123.2054,-1.2671],[123.2131,-1.2723],[123.2203,-1.2684],[123.2248,-1.2599],[123.226,-1.251],[123.2306,-1.2447],[123.2343,-1.2359],[123.2487,-1.2296],[123.246,-1.2245],[123.2331,-1.2176],[123.2226,-1.21],[123.2185,-1.2026],[123.2184,-1.1966],[123.2152,-1.1891],[123.2059,-1.1805],[123.1983,-1.169],[123.1936,-1.1537],[123.1882,-1.1503],[123.1712,-1.149]]}},{"type":"Feature","properties":{"mhid":"1332:397","alt_name":"KABUPATEN BANGGAI","latitude":-1.2835,"longitude":122.8892,"sample_value":90},"geometry":{"type":"LineString","coordinates":[[121.8489,-0.9686],[121.8522,-0.9631],[121.8425,-0.962],[121.8432,-0.9685],[121.8489,-0.9686]]}},{"type":"Feature","properties":{"mhid":"1332:397","alt_name":"KABUPATEN BANGGAI","latitude":-1.2835,"longitude":122.8892,"sample_value":90},"geometry":{"type":"LineString","coordinates":[[123.071,-0.8953],[123.0619,-0.8957],[123.0638,-0.8994],[123.0675,-0.8996],[123.071,-0.8953]]}},{"type":"Feature","properties":{"mhid":"1332:397","alt_name":"KABUPATEN BANGGAI","latitude":-1.2835,"longitude":122.8892,"sample_value":90},"geometry":{"type":"LineString","coordinates":[[122.7481,-0.6467],[122.754,-0.6435],[122.7553,-0.6401],[122.746,-0.6418],[122.7481,-0.6467]]}},{"type":"Feature","properties":{"mhid":"1332:397","alt_name":"KABUPATEN BANGGAI","latitude":-1.2835,"longitude":122.8892,"sample_value":90},"geometry":{"type":"LineString","coordinates":[[122.0637,-1.616],[122.0916,-1.6167],[122.1214,-1.6133],[122.1339,-1.6103],[122.1555,-1.608],[122.1706,-1.6076],[122.1967,-1.6087],[122.2124,-1.6049],[122.222,-1.6001],[122.2246,-1.5946],[122.2439,-1.5741],[122.2536,-1.5734],[122.26,-1.5684],[122.2684,-1.5596],[122.2787,-1.5567],[122.283,-1.5499],[122.2885,-1.5461],[122.304,-1.5329],[122.3062,-1.5326],[122.3164,-1.5261],[122.3236,-1.5231],[122.3348,-1.5214],[122.3411,-1.5222],[122.3487,-1.5189],[122.3589,-1.5169],[122.369,-1.5103],[122.3714,-1.5062],[122.3921,-1.493],[122.3961,-1.4866],[122.4037,-1.4772],[122.4107,-1.4655],[122.408,-1.4606],[122.4089,-1.4571],[122.416,-1.4506],[122.4152,-1.4464],[122.4183,-1.4406],[122.4298,-1.4292],[122.4469,-1.4176],[122.4574,-1.4111],[122.4721,-1.4037],[122.4844,-1.3909],[122.4897,-1.381],[122.4884,-1.3718],[122.4934,-1.3611],[122.5081,-1.3476],[122.5299,-1.3382],[122.5316,-1.3343],[122.5426,-1.3256],[122.5517,-1.3152],[122.56,-1.312],[122.563,-1.3064],[122.5649,-1.2942],[122.5684,-1.2923],[122.5699,-1.2858],[122.5672,-1.2756],[122.5613,-1.273],[122.5599,-1.2681],[122.5686,-1.262],[122.5868,-1.2538],[122.599,-1.2477],[122.6202,-1.2414],[122.6331,-1.2354],[122.6356,-1.2207],[122.6338,-1.2131],[122.6305,-1.2099],[122.6293,-1.2016],[122.6338,-1.1979],[122.6367,-1.1924],[122.6369,-1.1789],[122.6351,-1.1651],[122.6432,-1.1706],[122.6585,-1.1665],[122.6647,-1.1594],[122.6632,-1.1514],[122.6667,-1.1392],[122.6785,-1.1355],[122.6911,-1.1345],[122.6979,-1.1353],[122.7027,-1.138],[122.7081,-1.1384],[122.7151,-1.1343],[122.7151,-1.1194],[122.7139,-1.1148],[122.722,-1.102],[122.7284,-1.0864],[122.7356,-1.0777],[122.7438,-1.0719],[122.7499,-1.0621],[122.7668,-1.0491],[122.7742,-1.039],[122.7797,-1.0295],[122.7919,-1.0118],[122.7984,-1.0035],[122.7959,-0.9911],[122.7876,-0.9821],[122.7863,-0.977],[122.7893,-0.9678],[122.7926,-0.9656],[122.7928,-0.9603],[122.7908,-0.9555],[122.7924,-0.9489],[122.7965,-0.949],[122.8021,-0.9418],[122.8126,-0.9374],[122.8196,-0.9366],[122.8229,-0.9322],[122.8354,-0.9277],[122.8397,-0.9291],[122.852,-0.927],[122.8649,-0.9229],[122.8716,-0.9226],[122.8771,-0.9252],[122.881,-0.9299],[122.8898,-0.9296],[122.8992,-0.9266],[122.9057,-0.9203],[122.9286,-0.9171],[122.9364,-0.9129],[122.9489,-0.9115],[122.9581,-0.9087],[122.974,-0.9029],[122.982,-0.9009],[123.0011,-0.8996],[123.0075,-0.8941],[123.0076,-0.9011],[123.0248,-0.9091],[123.0377,-0.9094],[123.0416,-0.9062],[123.0362,-0.9001],[123.0288,-0.8967],[123.0265,-0.8871],[123.0327,-0.8835],[123.0379,-0.8785],[123.0386,-0.8869],[123.0372,-0.8943],[123.0436,-0.8994],[123.0544,-0.8993],[123.0597,-0.8963],[123.0593,-0.8919],[123.0614,-0.8851],[123.066,-0.8823],[123.0737,-0.8856],[123.0737,-0.879],[123.0708,-0.877],[123.06,-0.8769],[123.06,-0.8715],[123.0633,-0.8679],[123.0686,-0.8675],[123.0684,-0.8638],[123.0771,-0.8627],[123.0796,-0.8547],[123.0922,-0.8469],[123.0921,-0.844],[123.0961,-0.8381],[123.1002,-0.8355],[123.1099,-0.841],[123.1136,-0.8459],[123.1194,-0.8481],[123.1291,-0.856],[123.1347,-0.8663],[123.1359,-0.8704],[123.1471,-0.8812],[123.151,-0.886],[123.1468,-0.8878],[123.1478,-0.897],[123.1533,-0.8953],[123.1534,-0.8998],[123.1482,-0.902],[123.1448,-0.9007],[123.1442,-0.8958],[123.1358,-0.898],[123.1338,-0.9012],[123.1359,-0.9059],[123.141,-0.9109],[123.1388,-0.9226],[123.1394,-0.9264],[123.1452,-0.9306],[123.1481,-0.9371],[123.141,-0.9447],[123.1405,-0.9503],[123.1474,-0.9553],[123.1562,-0.9507],[123.1747,-0.9571],[123.1796,-0.9605],[123.1869,-0.9683],[123.1927,-0.9719],[123.2023,-0.9816],[123.2034,-0.9855],[123.208,-0.9905],[123.2226,-0.9971],[123.2322,-0.9989],[123.2457,-1.0084],[123.2508,-1.0218],[123.2494,-1.0226],[123.2575,-1.0364],[123.2651,-1.0424],[123.2717,-1.0443],[123.2797,-1.0434],[123.2885,-1.0481],[123.3083,-1.051],[123.3217,-1.0497],[123.3374,-1.0431],[123.3535,-1.033],[123.3589,-1.0248],[123.3652,-1.0193],[123.3738,-1.0091],[123.3762,-1.0029],[123.3772,-0.9933],[123.3796,-0.9862],[123.3773,-0.976],[123.3814,-0.9668],[123.3852,-0.9631],[123.3884,-0.9572],[123.3958,-0.9549],[123.3949,-0.9479],[123.3853,-0.9365],[123.3836,-0.9313],[123.3854,-0.9254],[123.3851,-0.9149],[123.3889,-0.9067],[123.3928,-0.9072],[123.3944,-0.9032],[123.3917,-0.8975],[123.3916,-0.8902],[123.3943,-0.8865],[123.3991,-0.8758],[123.405,-0.8745],[123.4046,-0.8683],[123.4077,-0.8586],[123.4188,-0.8492],[123.4235,-0.849],[123.4287,-0.8441],[123.4355,-0.8417],[123.4355,-0.8377],[123.4432,-0.8384],[123.4408,-0.8331],[123.4439,-0.829],[123.4398,-0.8243],[123.4344,-0.822],[123.4313,-0.8167],[123.4336,-0.8125],[123.4347,-0.7979],[123.4413,-0.7911],[123.4424,-0.7829],[123.4465,-0.7707],[123.4563,-0.7665],[123.452,-0.7629],[123.4522,-0.7589],[123.4461,-0.7527],[123.4447,-0.7451],[123.4327,-0.7478],[123.4276,-0.7466],[123.4274,-0.7399],[123.4329,-0.7371],[123.4358,-0.7331],[123.4381,-0.719],[123.4442,-0.7124],[123.4415,-0.7089],[123.4353,-0.7077],[123.431,-0.713],[123.4208,-0.718],[123.419,-0.7091],[123.4132,-0.7038],[123.4043,-0.699],[123.4017,-0.6935],[123.3953,-0.6909],[123.3945,-0.6861],[123.3906,-0.6778],[123.3836,-0.6686],[123.3873,-0.6617],[123.3977,-0.6587],[123.401,-0.6566],[123.4112,-0.6541],[123.4075,-0.6505],[123.4005,-0.6486],[123.3945,-0.6418],[123.3885,-0.6455],[123.3849,-0.6456],[123.3726,-0.6362],[123.354,-0.6311],[123.3494,-0.6249],[123.3418,-0.6224],[123.325,-0.6148],[123.3218,-0.6119],[123.3155,-0.6099],[123.3086,-0.6103],[123.2877,-0.5954],[123.2685,-0.5824],[123.2597,-0.5791],[123.2527,-0.582],[123.2447,-0.583],[123.2346,-0.5819],[123.2201,-0.5786],[123.2029,-0.5697],[123.1946,-0.5694],[123.1895,-0.5741],[123.1742,-0.5829],[123.1636,-0.5837],[123.1499,-0.5768],[123.1443,-0.5748],[123.1374,-0.576],[123.1127,-0.5699],[123.0993,-0.5744],[123.0976,-0.5767],[123.0897,-0.5769],[123.0892,-0.5728],[123.0833,-0.5701],[123.0778,-0.5714],[123.0736,-0.569],[123.0602,-0.5643],[123.057,-0.5643],[123.0501,-0.5686],[123.0498,-0.5742],[123.0532,-0.5783],[123.0514,-0.5833],[123.0425,-0.5948],[123.0356,-0.595],[123.0311,-0.5986],[123.0259,-0.5958],[123.0227,-0.5984],[123.0124,-0.6011],[123.0125,-0.605],[123.0063,-0.612],[122.9986,-0.6171],[122.9941,-0.6176],[122.9876,-0.6226],[122.9848,-0.6169],[122.9715,-0.6194],[122.9634,-0.6241],[122.9619,-0.6328],[122.9564,-0.6336],[122.9577,-0.6438],[122.9527,-0.6442],[122.9517,-0.6378],[122.9465,-0.6376],[122.9459,-0.6265],[122.9402,-0.6261],[122.938,-0.6212],[122.9281,-0.6183],[122.9243,-0.6205],[122.9234,-0.6259],[122.9203,-0.6264],[122.8996,-0.6248],[122.8968,-0.6269],[122.8928,-0.6354],[122.8869,-0.6357],[122.8791,-0.6385],[122.8746,-0.6351],[122.8736,-0.6292],[122.8605,-0.626],[122.852,-0.6288],[122.852,-0.6318],[122.8473,-0.6395],[122.842,-0.6415],[122.834,-0.6407],[122.8331,-0.6362],[122.8272,-0.6342],[122.8199,-0.6349],[122.8209,-0.6299],[122.8073,-0.6341],[122.8019,-0.641],[122.8021,-0.6493],[122.7966,-0.6548],[122.793,-0.6608],[122.786,-0.6645],[122.7814,-0.6695],[122.769,-0.6691],[122.7627,-0.6643],[122.7574,-0.6635],[122.7432,-0.6643],[122.7393,-0.6613],[122.7327,-0.663],[122.7258,-0.6608],[122.7272,-0.6663],[122.7319,-0.6761],[122.7426,-0.6766],[122.7476,-0.6789],[122.7497,-0.6837],[122.7643,-0.6928],[122.7667,-0.6965],[122.7782,-0.701],[122.7816,-0.7049],[122.7866,-0.7036],[122.7978,-0.7057],[122.801,-0.7081],[122.8083,-0.7073],[122.8153,-0.7035],[122.8282,-0.7054],[122.833,-0.7096],[122.8384,-0.7102],[122.8479,-0.709],[122.8499,-0.713],[122.8564,-0.7118],[122.8644,-0.7123],[122.8694,-0.7111],[122.8717,-0.7162],[122.88,-0.7172],[122.8871,-0.722],[122.8907,-0.7356],[122.8947,-0.7385],[122.902,-0.7341],[122.9055,-0.734],[122.908,-0.7387],[122.9184,-0.7384],[122.9251,-0.7367],[122.9387,-0.7372],[122.9446,-0.741],[122.9475,-0.736],[122.952,-0.7408],[122.9575,-0.7409],[122.9622,-0.7431],[122.9641,-0.7492],[122.9612,-0.7542],[122.9454,-0.7533],[122.9421,-0.7511],[122.9328,-0.7536],[122.9299,-0.7578],[122.9248,-0.759],[122.9235,-0.7634],[122.9176,-0.7661],[122.906,-0.7674],[122.904,-0.7687],[122.8915,-0.7689],[122.8787,-0.7711],[122.8772,-0.7743],[122.8706,-0.7756],[122.8677,-0.7741],[122.8632,-0.7761],[122.857,-0.7677],[122.8509,-0.7666],[122.8442,-0.7698],[122.8378,-0.7769],[122.8349,-0.7761],[122.8284,-0.7798],[122.8217,-0.7809],[122.8064,-0.7788],[122.8012,-0.7807],[122.7978,-0.7768],[122.7907,-0.776],[122.7846,-0.78],[122.7757,-0.7829],[122.7681,-0.7898],[122.7628,-0.7926],[122.7495,-0.8023],[122.7427,-0.8039],[122.7342,-0.8101],[122.728,-0.8127],[122.7204,-0.8106],[122.6961,-0.809],[122.6856,-0.8103],[122.6848,-0.8065],[122.6788,-0.8024],[122.6665,-0.8001],[122.6611,-0.7976],[122.6498,-0.79],[122.6524,-0.7859],[122.6466,-0.7829],[122.6402,-0.7772],[122.6331,-0.769],[122.6373,-0.766],[122.6257,-0.7642],[122.6197,-0.7652],[122.615,-0.7615],[122.6104,-0.7658],[122.6051,-0.768],[122.5993,-0.7732],[122.5895,-0.774],[122.5866,-0.7797],[122.5805,-0.7837],[122.5649,-0.7823],[122.56,-0.7796],[122.5519,-0.7798],[122.5469,-0.7822],[122.5402,-0.78],[122.5343,-0.7825],[122.529,-0.7817],[122.5248,-0.786],[122.5224,-0.7843],[122.5215,-0.7775],[122.5112,-0.7678],[122.504,-0.77],[122.4901,-0.7695],[122.4853,-0.7667],[122.4764,-0.7644],[122.4692,-0.7599],[122.4658,-0.7617],[122.4589,-0.7587],[122.4544,-0.7596],[122.4471,-0.7636],[122.4385,-0.7655],[122.432,-0.7736],[122.4241,-0.7792],[122.4141,-0.7833],[122.4063,-0.7817],[122.4031,-0.7837],[122.388,-0.7812],[122.3832,-0.7845],[122.3788,-0.7816],[122.3749,-0.7817],[122.3698,-0.7787],[122.364,-0.7786],[122.3603,-0.776],[122.3483,-0.7831],[122.3416,-0.7834],[122.3353,-0.777],[122.3306,-0.7771],[122.3222,-0.7837],[122.3163,-0.7862],[122.3104,-0.7926],[122.3048,-0.793],[122.2987,-0.7882],[122.2869,-0.79],[122.2834,-0.7862],[122.2729,-0.7882],[122.264,-0.7857],[122.2541,-0.7897],[122.2415,-0.7865],[122.235,-0.787],[122.2292,-0.785],[122.2221,-0.7874],[122.2202,-0.7898],[122.2117,-0.7922],[122.2029,-0.788],[122.1949,-0.7948],[122.1927,-0.8015],[122.1865,-0.812],[122.1753,-0.8078],[122.1721,-0.8085],[122.1646,-0.8139],[122.1585,-0.8141],[122.1551,-0.8265],[122.1571,-0.8328],[122.1631,-0.835],[122.1657,-0.838],[122.1616,-0.8466],[122.1523,-0.852],[122.1466,-0.8596],[122.1472,-0.8716],[122.1445,-0.8747],[122.1478,-0.8861],[122.1479,-0.8936],[122.1447,-0.9065],[122.1351,-0.9207],[122.1293,-0.9248],[122.1281,-0.9285],[122.1192,-0.9394],[122.1169,-0.9399],[122.1073,-0.9491],[122.0953,-0.9548],[122.0905,-0.9514],[122.0727,-0.9435],[122.064,-0.9457],[122.0581,-0.9405],[122.0515,-0.9434],[122.0424,-0.9391],[122.039,-0.9413],[122.0274,-0.9356],[122.0254,-0.9321],[122.0191,-0.9316],[122.0128,-0.9363],[122.0041,-0.9334],[121.9985,-0.9404],[121.9946,-0.9432],[121.9886,-0.9425],[121.986,-0.9479],[121.985,-0.9553],[121.9798,-0.9599],[121.9781,-0.9647],[121.9701,-0.9706],[121.9629,-0.9724],[121.9565,-0.9824],[121.9484,-0.985],[121.9424,-0.9887],[121.938,-0.9869],[121.9288,-0.9872],[121.9232,-0.9856],[121.9102,-0.989],[121.9041,-0.9838],[121.9005,-0.9787],[121.8945,-0.9746],[121.8818,-0.9745],[121.8737,-0.9719],[121.8637,-0.9668],[121.8563,-0.9688],[121.8525,-0.9794],[121.8518,-0.9897],[121.855,-0.9939],[121.8559,-1.0004],[121.8539,-1.0026],[121.8555,-1.0154],[121.8596,-1.0197],[121.8586,-1.0279],[121.8625,-1.0307],[121.8635,-1.0358],[121.8683,-1.0407],[121.8667,-1.046],[121.8687,-1.0543],[121.8721,-1.0551],[121.8713,-1.0625],[121.875,-1.0663],[121.8776,-1.0723],[121.8854,-1.0719],[121.8906,-1.0842],[121.8981,-1.0902],[121.9089,-1.0883],[121.9143,-1.0926],[121.9195,-1.0942],[121.9259,-1.1034],[121.9253,-1.1116],[121.9354,-1.1239],[121.9363,-1.1288],[121.9413,-1.1269],[121.9477,-1.1275],[121.9498,-1.1253],[121.9492,-1.1135],[121.9559,-1.1105],[121.9574,-1.115],[121.9636,-1.1193],[121.9781,-1.1231],[121.9819,-1.1222],[121.9905,-1.1274],[121.9943,-1.1256],[121.9969,-1.13],[122.0032,-1.1284],[122.0031,-1.1329],[122.0073,-1.133],[122.0062,-1.1423],[122.019,-1.1408],[122.026,-1.131],[122.031,-1.12],[122.0431,-1.14],[122.0545,-1.1762],[122.08,-1.208],[122.0789,-1.2131],[122.0811,-1.2184],[122.0927,-1.226],[122.0963,-1.2369],[122.0956,-1.2392],[122.1008,-1.249],[122.0972,-1.2668],[122.0891,-1.2823],[122.0848,-1.3002],[122.0618,-1.3205],[122.0481,-1.3326],[122.0444,-1.3392],[122.0416,-1.3466],[122.0371,-1.3512],[122.0339,-1.3503],[122.0276,-1.3416],[122.0231,-1.3387],[122.0152,-1.3389],[122.0119,-1.3362],[122.0074,-1.3385],[122.0082,-1.3426],[122.0141,-1.3457],[122.0232,-1.3494],[122.0288,-1.3538],[122.031,-1.3592],[122.0417,-1.3922],[122.0541,-1.4116],[122.0533,-1.4231],[122.0362,-1.4257],[122.0423,-1.4363],[122.0403,-1.4404],[122.0236,-1.4422],[122.0191,-1.4442],[122.0127,-1.4531],[122.0148,-1.4666],[122.0269,-1.4741],[122.0401,-1.4884],[122.0427,-1.4929],[122.0396,-1.5026],[122.0324,-1.5218],[122.0297,-1.5673],[122.0318,-1.5745],[122.0397,-1.5874],[122.0637,-1.616]]}},{"type":"Feature","properties":{"mhid":"1332:397","alt_name":"KABUPATEN BANGGAI","latitude":-1.2835,"longitude":122.8892,"sample_value":90},"geometry":{"type":"LineString","coordinates":[[122.6048,-0.4823],[122.6028,-0.4806],[122.5884,-0.4845],[122.5848,-0.4841],[122.5696,-0.493],[122.5631,-0.4907],[122.5545,-0.4923],[122.5464,-0.4915],[122.5365,-0.4929],[122.5304,-0.4923],[122.524,-0.4991],[122.5243,-0.5033],[122.5284,-0.5077],[122.5332,-0.507],[122.538,-0.5029],[122.5501,-0.5096],[122.5578,-0.5189],[122.5641,-0.5203],[122.5704,-0.514],[122.5803,-0.5107],[122.5848,-0.5044],[122.5918,-0.5055],[122.6006,-0.5052],[122.6072,-0.5029],[122.6164,-0.5027],[122.6168,-0.4985],[122.6121,-0.4946],[122.6048,-0.4823]]}},{"type":"Feature","properties":{"mhid":"1332:398","alt_name":"KABUPATEN MOROWALI","latitude":-1.89342,"longitude":121.25473,"sample_value":829},"geometry":{"type":"LineString","coordinates":[[123.1575,-3.5572],[123.1492,-3.5563],[123.1304,-3.5662],[123.1148,-3.5694],[123.0929,-3.5714],[123.0722,-3.5774],[123.0685,-3.5835],[123.0604,-3.5852],[123.0502,-3.5912],[123.0439,-3.5928],[123.0488,-3.6011],[123.0713,-3.6204],[123.0738,-3.6247],[123.078,-3.625],[123.0928,-3.6332],[123.0963,-3.6333],[123.1071,-3.6394],[123.1148,-3.6391],[123.1201,-3.6363],[123.1208,-3.6333],[123.1197,-3.615],[123.1253,-3.611],[123.1288,-3.6111],[123.1399,-3.6148],[123.1531,-3.6207],[123.1562,-3.6204],[123.1691,-3.6227],[123.1709,-3.6206],[123.1778,-3.6211],[123.1783,-3.6178],[123.1828,-3.6124],[123.1809,-3.6015],[123.1735,-3.5873],[123.1736,-3.5844],[123.1639,-3.5696],[123.1605,-3.5604],[123.1575,-3.5572]]}},{"type":"Feature","properties":{"mhid":"1332:398","alt_name":"KABUPATEN MOROWALI","latitude":-1.89342,"longitude":121.25473,"sample_value":829},"geometry":{"type":"LineString","coordinates":[[123.106,-3.5013],[123.1035,-3.4966],[123.095,-3.5052],[123.0914,-3.5054],[123.0861,-3.509],[123.0682,-3.5159],[123.06,-3.5133],[123.0592,-3.516],[123.0626,-3.5283],[123.0706,-3.5274],[123.0778,-3.5243],[123.0881,-3.5159],[123.1017,-3.5057],[123.106,-3.5013]]}},{"type":"Feature","properties":{"mhid":"1332:398","alt_name":"KABUPATEN MOROWALI","latitude":-1.89342,"longitude":121.25473,"sample_value":829},"geometry":{"type":"LineString","coordinates":[[122.3907,-3.344],[122.3935,-3.3529],[122.3965,-3.3517],[122.3964,-3.344],[122.3907,-3.344]]}},{"type":"Feature","properties":{"mhid":"1332:398","alt_name":"KABUPATEN MOROWALI","latitude":-1.89342,"longitude":121.25473,"sample_value":829},"geometry":{"type":"LineString","coordinates":[[122.4031,-3.3182],[122.3991,-3.3121],[122.3959,-3.317],[122.3977,-3.3221],[122.396,-3.3249],[122.4003,-3.3321],[122.4053,-3.3267],[122.4025,-3.3223],[122.4031,-3.3182]]}},{"type":"Feature","properties":{"mhid":"1332:398","alt_name":"KABUPATEN MOROWALI","latitude":-1.89342,"longitude":121.25473,"sample_value":829},"geometry":{"type":"LineString","coordinates":[[122.3927,-3.2778],[122.3896,-3.2776],[122.3838,-3.2829],[122.3841,-3.2922],[122.3902,-3.2921],[122.3924,-3.2865],[122.3927,-3.2778]]}},{"type":"Feature","properties":{"mhid":"1332:398","alt_name":"KABUPATEN MOROWALI","latitude":-1.89342,"longitude":121.25473,"sample_value":829},"geometry":{"type":"LineString","coordinates":[[122.4397,-3.2794],[122.4386,-3.2755],[122.4342,-3.2726],[122.4324,-3.2791],[122.4337,-3.2835],[122.4397,-3.2794]]}},{"type":"Feature","properties":{"mhid":"1332:398","alt_name":"KABUPATEN MOROWALI","latitude":-1.89342,"longitude":121.25473,"sample_value":829},"geometry":{"type":"LineString","coordinates":[[122.614,-3.1306],[122.6134,-3.1242],[122.6095,-3.125],[122.6087,-3.1309],[122.614,-3.1306]]}},{"type":"Feature","properties":{"mhid":"1332:398","alt_name":"KABUPATEN MOROWALI","latitude":-1.89342,"longitude":121.25473,"sample_value":829},"geometry":{"type":"LineString","coordinates":[[122.5267,-3.092],[122.5202,-3.0934],[122.5228,-3.0989],[122.527,-3.0991],[122.5294,-3.0953],[122.5267,-3.092]]}},{"type":"Feature","properties":{"mhid":"1332:398","alt_name":"KABUPATEN MOROWALI","latitude":-1.89342,"longitude":121.25473,"sample_value":829},"geometry":{"type":"LineString","coordinates":[[122.5334,-3.0795],[122.5307,-3.0802],[122.5286,-3.0878],[122.5347,-3.0891],[122.5334,-3.0795]]}},{"type":"Feature","properties":{"mhid":"1332:398","alt_name":"KABUPATEN MOROWALI","latitude":-1.89342,"longitude":121.25473,"sample_value":829},"geometry":{"type":"LineString","coordinates":[[122.47,-3.059],[122.4648,-3.0587],[122.4611,-3.0614],[122.4686,-3.0725],[122.4784,-3.0785],[122.4845,-3.0749],[122.4801,-3.0681],[122.4791,-3.0637],[122.4733,-3.0593],[122.47,-3.059]]}},{"type":"Feature","properties":{"mhid":"1332:398","alt_name":"KABUPATEN MOROWALI","latitude":-1.89342,"longitude":121.25473,"sample_value":829},"geometry":{"type":"LineString","coordinates":[[122.499,-3.0656],[122.4953,-3.065],[122.4899,-3.0585],[122.4852,-3.0634],[122.4894,-3.0693],[122.4857,-3.0813],[122.4956,-3.0871],[122.5091,-3.0881],[122.516,-3.0897],[122.5193,-3.0874],[122.5166,-3.0817],[122.5142,-3.071],[122.5142,-3.0643],[122.5082,-3.0599],[122.5028,-3.0604],[122.499,-3.0656]]}},{"type":"Feature","properties":{"mhid":"1332:398","alt_name":"KABUPATEN MOROWALI","latitude":-1.89342,"longitude":121.25473,"sample_value":829},"geometry":{"type":"LineString","coordinates":[[122.3869,-3.0601],[122.3888,-3.0516],[122.3796,-3.0553],[122.3869,-3.0601]]}},{"type":"Feature","properties":{"mhid":"1332:398","alt_name":"KABUPATEN MOROWALI","latitude":-1.89342,"longitude":121.25473,"sample_value":829},"geometry":{"type":"LineString","coordinates":[[122.3845,-3.0299],[122.3672,-3.0307],[122.358,-3.0358],[122.3579,-3.0401],[122.3608,-3.043],[122.3718,-3.0448],[122.3849,-3.0439],[122.3847,-3.0366],[122.3869,-3.033],[122.3845,-3.0299]]}},{"type":"Feature","properties":{"mhid":"1332:398","alt_name":"KABUPATEN MOROWALI","latitude":-1.89342,"longitude":121.25473,"sample_value":829},"geometry":{"type":"LineString","coordinates":[[122.4094,-3.0168],[122.406,-3.0172],[122.3984,-3.0232],[122.3919,-3.03],[122.3908,-3.0387],[122.3928,-3.0439],[122.3974,-3.0454],[122.3979,-3.0529],[122.4021,-3.0571],[122.4116,-3.0619],[122.421,-3.0601],[122.4268,-3.0542],[122.4258,-3.0498],[122.4209,-3.0428],[122.4117,-3.0359],[122.4128,-3.0295],[122.4028,-3.027],[122.4047,-3.0193],[122.4094,-3.0168]]}},{"type":"Feature","properties":{"mhid":"1332:398","alt_name":"KABUPATEN MOROWALI","latitude":-1.89342,"longitude":121.25473,"sample_value":829},"geometry":{"type":"LineString","coordinates":[[122.3273,-3.0001],[122.32,-2.9963],[122.3158,-3.0007],[122.3226,-3.0061],[122.3242,-3.0109],[122.331,-3.0171],[122.3359,-3.02],[122.3474,-3.0227],[122.3518,-3.0152],[122.3601,-3.0155],[122.3577,-3.0092],[122.3543,-3.0068],[122.3488,-3.0079],[122.3406,-3.0069],[122.3273,-3.0001]]}},{"type":"Feature","properties":{"mhid":"1332:398","alt_name":"KABUPATEN MOROWALI","latitude":-1.89342,"longitude":121.25473,"sample_value":829},"geometry":{"type":"LineString","coordinates":[[122.3107,-3.2729],[122.3139,-3.2722],[122.3167,-3.2663],[122.3172,-3.2592],[122.3213,-3.2543],[122.3234,-3.2413],[122.3257,-3.2353],[122.3319,-3.2363],[122.3389,-3.2317],[122.3424,-3.231],[122.3476,-3.2369],[122.3581,-3.2297],[122.3652,-3.2267],[122.3701,-3.2286],[122.3648,-3.233],[122.3685,-3.2402],[122.3567,-3.2505],[122.3592,-3.2552],[122.3667,-3.2543],[122.3686,-3.2471],[122.3746,-3.2474],[122.3756,-3.2545],[122.3863,-3.2551],[122.3985,-3.248],[122.3969,-3.243],[122.4011,-3.2396],[122.4058,-3.243],[122.4086,-3.2487],[122.4082,-3.2562],[122.4162,-3.2584],[122.4168,-3.2621],[122.4216,-3.2633],[122.4218,-3.2741],[122.4252,-3.2785],[122.4309,-3.2747],[122.4303,-3.2623],[122.4331,-3.2571],[122.4287,-3.2557],[122.4282,-3.2507],[122.4235,-3.2474],[122.431,-3.2453],[122.4334,-3.24],[122.4325,-3.2351],[122.428,-3.2266],[122.4255,-3.2106],[122.423,-3.2054],[122.4291,-3.2005],[122.4286,-3.1925],[122.4362,-3.1881],[122.4615,-3.1895],[122.4692,-3.1888],[122.4822,-3.1827],[122.4859,-3.1786],[122.4814,-3.174],[122.4736,-3.1687],[122.4716,-3.165],[122.4648,-3.1597],[122.4644,-3.1498],[122.4572,-3.1498],[122.4597,-3.1628],[122.4536,-3.1639],[122.4453,-3.1621],[122.4457,-3.1488],[122.4437,-3.142],[122.4328,-3.1406],[122.4258,-3.1336],[122.4284,-3.1309],[122.4266,-3.1269],[122.4222,-3.1263],[122.4074,-3.1304],[122.3946,-3.1366],[122.3953,-3.1394],[122.3854,-3.1404],[122.3802,-3.1448],[122.3714,-3.1416],[122.3684,-3.1361],[122.3585,-3.1288],[122.3519,-3.1156],[122.3488,-3.1036],[122.3364,-3.092],[122.3356,-3.0858],[122.3297,-3.0836],[122.3231,-3.0784],[122.3121,-3.0726],[122.3084,-3.0692],[122.3051,-3.0607],[122.2979,-3.0581],[122.2879,-3.0516],[122.2838,-3.0523],[122.2789,-3.0492],[122.2752,-3.0496],[122.2671,-3.0404],[122.2608,-3.0383],[122.2519,-3.0173],[122.2511,-3.0129],[122.254,-3.0102],[122.2618,-3.0076],[122.2689,-3.0011],[122.2758,-3.0022],[122.2785,-2.9996],[122.2806,-2.9894],[122.2899,-2.9793],[122.298,-2.968],[122.3005,-2.9624],[122.307,-2.9562],[122.3078,-2.9461],[122.3113,-2.9385],[122.319,-2.9276],[122.3207,-2.921],[122.3129,-2.9109],[122.307,-2.9068],[122.299,-2.8973],[122.2943,-2.8958],[122.2918,-2.892],[122.2846,-2.8905],[122.2783,-2.8864],[122.2718,-2.8862],[122.2646,-2.8898],[122.2592,-2.8872],[122.2513,-2.8891],[122.2541,-2.8808],[122.2503,-2.8776],[122.2449,-2.8796],[122.2313,-2.8874],[122.2262,-2.8869],[122.222,-2.8953],[122.2163,-2.9001],[122.2098,-2.8997],[122.2075,-2.8951],[122.207,-2.8876],[122.2045,-2.8827],[122.1985,-2.8827],[122.1913,-2.878],[122.1863,-2.8728],[122.1842,-2.8655],[122.1855,-2.8578],[122.1932,-2.8448],[122.1903,-2.8363],[122.1882,-2.8344],[122.1848,-2.8238],[122.178,-2.8183],[122.1726,-2.8225],[122.1607,-2.8162],[122.15,-2.7963],[122.1397,-2.7889],[122.1319,-2.7883],[122.1189,-2.7893],[122.1044,-2.7872],[122.094,-2.7894],[122.0856,-2.7887],[122.0833,-2.7835],[122.0769,-2.7766],[122.0733,-2.7745],[122.0695,-2.7658],[122.0647,-2.7641],[122.058,-2.7487],[122.047,-2.7404],[122.0292,-2.7248],[122.0202,-2.7213],[122.0191,-2.7228],[122.0101,-2.7181],[122.0067,-2.7061],[122.0067,-2.6949],[122.0081,-2.6826],[122.0101,-2.6751],[122.0199,-2.6692],[122.0254,-2.6703],[122.03,-2.6743],[122.0327,-2.6738],[122.0373,-2.6686],[122.0357,-2.6583],[122.031,-2.654],[122.0246,-2.6458],[122.0171,-2.6465],[122.0087,-2.6293],[122.0014,-2.6276],[122.0007,-2.6247],[122.0045,-2.6208],[121.9974,-2.6149],[121.9942,-2.6069],[121.9893,-2.599],[121.9874,-2.5922],[121.9881,-2.5875],[121.9859,-2.5843],[121.9865,-2.5773],[121.9782,-2.5585],[121.977,-2.5508],[121.9751,-2.5498],[121.9694,-2.5372],[121.969,-2.531],[121.9659,-2.5247],[121.9578,-2.5164],[121.9543,-2.5069],[121.9506,-2.5021],[121.9491,-2.4973],[121.9435,-2.4932],[121.9413,-2.4883],[121.9419,-2.4823],[121.9389,-2.4772],[121.9348,-2.4764],[121.928,-2.4634],[121.919,-2.4575],[121.9121,-2.448],[121.9112,-2.4381],[121.9057,-2.4301],[121.8972,-2.4253],[121.8947,-2.42],[121.8891,-2.4171],[121.8883,-2.413],[121.8836,-2.4113],[121.8762,-2.4048],[121.8746,-2.4008],[121.8759,-2.3933],[121.871,-2.3918],[121.8706,-2.383],[121.8649,-2.3747],[121.8635,-2.3698],[121.8565,-2.3628],[121.8548,-2.3554],[121.8424,-2.3489],[121.8404,-2.3456],[121.8395,-2.3356],[121.8371,-2.3335],[121.8369,-2.328],[121.8344,-2.3243],[121.8347,-2.3187],[121.8317,-2.3107],[121.8284,-2.3056],[121.8251,-2.2944],[121.8182,-2.2915],[121.8127,-2.2919],[121.797,-2.2893],[121.7944,-2.2874],[121.7872,-2.2778],[121.7784,-2.2712],[121.7761,-2.2618],[121.7718,-2.2554],[121.7683,-2.2553],[121.7569,-2.2496],[121.7552,-2.2403],[121.7499,-2.2386],[121.7435,-2.2322],[121.7428,-2.2266],[121.7381,-2.2205],[121.7299,-2.2153],[121.7264,-2.2014],[121.7196,-2.1955],[121.7121,-2.1947],[121.705,-2.1884],[121.6966,-2.1915],[121.6882,-2.1875],[121.6828,-2.1783],[121.6741,-2.1834],[121.6662,-2.1854],[121.657,-2.1859],[121.6503,-2.1846],[121.6471,-2.1877],[121.631,-2.1833],[121.6251,-2.1844],[121.6191,-2.1832],[121.614,-2.1865],[121.6064,-2.1851],[121.6002,-2.181],[121.5925,-2.1784],[121.5848,-2.1787],[121.5759,-2.1743],[121.5708,-2.1759],[121.5609,-2.1735],[121.5518,-2.1665],[121.5445,-2.1484],[121.54,-2.151],[121.5296,-2.1547],[121.5125,-2.1684],[121.506,-2.1716],[121.5016,-2.1805],[121.4924,-2.1831],[121.4852,-2.1914],[121.4846,-2.1994],[121.4859,-2.2159],[121.4878,-2.2252],[121.4879,-2.2333],[121.4913,-2.2432],[121.4935,-2.2457],[121.4909,-2.255],[121.4788,-2.2624],[121.4788,-2.273],[121.4767,-2.278],[121.4727,-2.2822],[121.4728,-2.289],[121.4684,-2.2919],[121.4593,-2.3029],[121.4614,-2.3083],[121.4673,-2.3098],[121.4659,-2.3163],[121.4619,-2.3185],[121.4599,-2.323],[121.4612,-2.3329],[121.4572,-2.3445],[121.4595,-2.3462],[121.4554,-2.3577],[121.4562,-2.3634],[121.4516,-2.3713],[121.4478,-2.3753],[121.4458,-2.3869],[121.4463,-2.3912],[121.4382,-2.3941],[121.4417,-2.3976],[121.4416,-2.4057],[121.4418,-2.4054],[121.4479,-2.4122],[121.4603,-2.4198],[121.4688,-2.4216],[121.49,-2.43],[121.4941,-2.4365],[121.4979,-2.4468],[121.5013,-2.4526],[121.5066,-2.4516],[121.5122,-2.4545],[121.516,-2.4599],[121.5272,-2.4618],[121.5302,-2.4666],[121.5455,-2.4719],[121.5496,-2.4802],[121.5568,-2.4861],[121.5615,-2.4916],[121.5736,-2.491],[121.5858,-2.4918],[121.5931,-2.4904],[121.606,-2.4857],[121.6115,-2.4848],[121.6175,-2.4858],[121.6295,-2.4924],[121.6363,-2.502],[121.6437,-2.5227],[121.6517,-2.5383],[121.6595,-2.5398],[121.6682,-2.537],[121.6829,-2.5427],[121.6866,-2.5409],[121.6873,-2.535],[121.6938,-2.5316],[121.7,-2.5344],[121.7054,-2.5401],[121.7255,-2.5712],[121.7363,-2.5901],[121.7556,-2.6105],[121.7679,-2.6191],[121.7759,-2.6258],[121.7799,-2.6311],[121.7797,-2.6355],[121.7784,-2.6423],[121.7806,-2.6492],[121.7887,-2.6545],[121.7904,-2.6592],[121.7891,-2.6677],[121.7771,-2.6876],[121.7671,-2.6941],[121.7603,-2.7005],[121.7577,-2.7051],[121.7556,-2.7199],[121.7544,-2.7344],[121.7431,-2.7494],[121.7401,-2.7571],[121.7242,-2.7658],[121.7216,-2.7709],[121.7227,-2.7748],[121.7231,-2.7841],[121.7246,-2.8054],[121.7222,-2.8106],[121.7157,-2.8169],[121.7094,-2.8182],[121.7061,-2.8159],[121.7001,-2.8145],[121.6873,-2.8206],[121.6797,-2.8279],[121.6699,-2.8425],[121.6712,-2.8504],[121.6715,-2.8515],[121.6715,-2.8586],[121.6737,-2.8705],[121.6805,-2.8736],[121.6883,-2.878],[121.6912,-2.8845],[121.6894,-2.8911],[121.6855,-2.9008],[121.6947,-2.9029],[121.7004,-2.9097],[121.7104,-2.9136],[121.7126,-2.9195],[121.7158,-2.9207],[121.7249,-2.9168],[121.7312,-2.9161],[121.7358,-2.9184],[121.7394,-2.921],[121.7405,-2.9238],[121.7529,-2.9238],[121.7606,-2.9281],[121.7666,-2.9335],[121.7712,-2.9429],[121.7777,-2.9456],[121.7906,-2.9442],[121.8041,-2.953],[121.819,-2.9591],[121.8259,-2.9693],[121.8318,-2.9707],[121.8423,-2.9707],[121.8462,-2.9679],[121.8511,-2.9673],[121.8577,-2.964],[121.8654,-2.9674],[121.8718,-2.9719],[121.8824,-2.9751],[121.8992,-2.9832],[121.9193,-2.9897],[121.9232,-2.9893],[121.9284,-2.9839],[121.9489,-2.9767],[121.959,-2.9763],[121.9697,-2.9727],[121.9812,-2.9662],[121.9952,-2.9611],[122.0073,-2.9575],[122.0161,-2.9574],[122.0223,-2.959],[122.0306,-2.9585],[122.0385,-2.9596],[122.0506,-2.9518],[122.0582,-2.9496],[122.0632,-2.9495],[122.0725,-2.9542],[122.0787,-2.9619],[122.079,-2.9621],[122.0838,-2.966],[122.0851,-2.9703],[122.0812,-2.978],[122.0866,-2.9924],[122.0918,-3.0005],[122.0982,-3.0077],[122.1076,-3.0134],[122.1307,-3.0221],[122.1417,-3.0219],[122.1621,-3.026],[122.1765,-3.03],[122.1809,-3.036],[122.1797,-3.0465],[122.1767,-3.0615],[122.1735,-3.0703],[122.1716,-3.0796],[122.1718,-3.084],[122.1782,-3.0908],[122.1912,-3.0985],[122.2075,-3.1136],[122.2116,-3.1184],[122.2192,-3.1312],[122.2291,-3.14],[122.235,-3.1404],[122.25,-3.1349],[122.2551,-3.1355],[122.2624,-3.1429],[122.2664,-3.1452],[122.2773,-3.1416],[122.2849,-3.1415],[122.2898,-3.1442],[122.2954,-3.1547],[122.3013,-3.1586],[122.3107,-3.162],[122.315,-3.1661],[122.3154,-3.1746],[122.3109,-3.1942],[122.3026,-3.2089],[122.2985,-3.2125],[122.2955,-3.2193],[122.2956,-3.2262],[122.3003,-3.2326],[122.302,-3.2377],[122.2979,-3.2452],[122.2953,-3.253],[122.3,-3.2627],[122.3107,-3.2729]]}},{"type":"Feature","properties":{"mhid":"1332:399","alt_name":"KABUPATEN POSO","latitude":-1.65,"longitude":120.5,"sample_value":724},"geometry":{"type":"LineString","coordinates":[[120.8905,-1.4133],[120.8852,-1.4138],[120.8831,-1.4099],[120.8777,-1.4117],[120.873,-1.4111],[120.866,-1.4138],[120.857,-1.4109],[120.8532,-1.4072],[120.8486,-1.407],[120.8412,-1.4016],[120.8375,-1.3956],[120.8391,-1.3901],[120.8363,-1.3724],[120.8403,-1.3673],[120.8403,-1.3581],[120.8373,-1.3559],[120.8303,-1.3565],[120.8192,-1.3534],[120.8146,-1.3559],[120.8095,-1.3562],[120.8027,-1.3506],[120.8002,-1.3558],[120.797,-1.3547],[120.7901,-1.3617],[120.7884,-1.3676],[120.7847,-1.3721],[120.7809,-1.3717],[120.775,-1.3683],[120.7684,-1.3685],[120.763,-1.3648],[120.7575,-1.3713],[120.7575,-1.377],[120.7535,-1.38],[120.7522,-1.3859],[120.7474,-1.3885],[120.7425,-1.3869],[120.7359,-1.3815],[120.7278,-1.3839],[120.7205,-1.3884],[120.7166,-1.3944],[120.7071,-1.3989],[120.7004,-1.4062],[120.6994,-1.4121],[120.6902,-1.4199],[120.6753,-1.4149],[120.6728,-1.4073],[120.6731,-1.3976],[120.6649,-1.3916],[120.6655,-1.3838],[120.6592,-1.3819],[120.655,-1.3747],[120.6504,-1.3721],[120.6439,-1.3652],[120.6428,-1.3609],[120.6471,-1.3545],[120.6462,-1.3493],[120.6474,-1.3425],[120.6467,-1.3296],[120.6414,-1.3214],[120.6404,-1.3136],[120.6321,-1.3042],[120.6238,-1.2989],[120.6223,-1.2948],[120.6122,-1.2849],[120.6062,-1.2838],[120.6038,-1.279],[120.5913,-1.2655],[120.5843,-1.2635],[120.5815,-1.2602],[120.5712,-1.2562],[120.5716,-1.2503],[120.5694,-1.2469],[120.5705,-1.2425],[120.5677,-1.2344],[120.565,-1.2318],[120.5665,-1.2262],[120.5708,-1.2193],[120.572,-1.2128],[120.5696,-1.2078],[120.5723,-1.205],[120.5722,-1.1984],[120.5764,-1.1981],[120.5774,-1.1944],[120.5841,-1.1913],[120.5869,-1.1862],[120.5876,-1.1809],[120.5915,-1.178],[120.593,-1.1669],[120.5918,-1.165],[120.5932,-1.1561],[120.5929,-1.1484],[120.5888,-1.1454],[120.5885,-1.1414],[120.5852,-1.1355],[120.5817,-1.1338],[120.582,-1.1247],[120.5878,-1.1245],[120.5872,-1.1204],[120.5832,-1.1186],[120.5864,-1.1138],[120.5852,-1.111],[120.5795,-1.1086],[120.5709,-1.1099],[120.5684,-1.1126],[120.5572,-1.1168],[120.5301,-1.1299],[120.5118,-1.1314],[120.5025,-1.1378],[120.4929,-1.142],[120.4896,-1.1417],[120.4656,-1.148],[120.4558,-1.1464],[120.4461,-1.1462],[120.4341,-1.1526],[120.4279,-1.1502],[120.3993,-1.1613],[120.3742,-1.1735],[120.3504,-1.1848],[120.3378,-1.1894],[120.3358,-1.189],[120.3282,-1.1868],[120.3236,-1.1939],[120.3155,-1.1901],[120.2994,-1.1959],[120.2979,-1.1987],[120.2898,-1.2017],[120.284,-1.2115],[120.2787,-1.2166],[120.2741,-1.2279],[120.2703,-1.2316],[120.26,-1.2302],[120.2483,-1.2308],[120.2374,-1.2276],[120.232,-1.2245],[120.2225,-1.2338],[120.2198,-1.2435],[120.2249,-1.2511],[120.2163,-1.2545],[120.209,-1.2636],[120.1932,-1.2694],[120.1858,-1.2735],[120.1906,-1.278],[120.1977,-1.2809],[120.2053,-1.2867],[120.2148,-1.2883],[120.2205,-1.2934],[120.2303,-1.2995],[120.2403,-1.311],[120.258,-1.3226],[120.2585,-1.3303],[120.2635,-1.3382],[120.2715,-1.3414],[120.277,-1.3468],[120.2825,-1.3585],[120.2879,-1.3645],[120.2865,-1.3709],[120.2876,-1.3794],[120.282,-1.3844],[120.2713,-1.3859],[120.2742,-1.39],[120.2755,-1.3955],[120.2791,-1.3984],[120.2777,-1.4069],[120.2687,-1.4149],[120.2604,-1.4158],[120.2538,-1.4118],[120.2501,-1.4129],[120.2461,-1.4185],[120.2395,-1.4381],[120.2314,-1.442],[120.2267,-1.446],[120.2237,-1.4537],[120.2192,-1.4562],[120.2142,-1.4532],[120.203,-1.4553],[120.1943,-1.45],[120.1872,-1.4516],[120.1818,-1.4483],[120.1748,-1.4565],[120.17,-1.4577],[120.1652,-1.4625],[120.1596,-1.4725],[120.1511,-1.479],[120.1429,-1.4935],[120.1371,-1.4958],[120.1356,-1.504],[120.1306,-1.5024],[120.1272,-1.5043],[120.1203,-1.516],[120.113,-1.5178],[120.1094,-1.5239],[120.1104,-1.5296],[120.1067,-1.5355],[120.1061,-1.543],[120.102,-1.5492],[120.0988,-1.5569],[120.1053,-1.563],[120.1134,-1.5622],[120.1179,-1.5641],[120.1231,-1.5589],[120.1345,-1.5571],[120.1385,-1.5597],[120.1397,-1.5653],[120.1439,-1.5749],[120.1408,-1.6041],[120.1446,-1.6083],[120.1456,-1.6188],[120.1396,-1.6272],[120.1369,-1.629],[120.1377,-1.6413],[120.1359,-1.6508],[120.1427,-1.6562],[120.1444,-1.6595],[120.1449,-1.6673],[120.1501,-1.6775],[120.1516,-1.6831],[120.1485,-1.6957],[120.1487,-1.6995],[120.1562,-1.7152],[120.1514,-1.7211],[120.1563,-1.7285],[120.1612,-1.7315],[120.1679,-1.7382],[120.1701,-1.7451],[120.1671,-1.7564],[120.1692,-1.7649],[120.1721,-1.771],[120.177,-1.777],[120.1763,-1.7832],[120.1608,-1.789],[120.1214,-1.7988],[120.1115,-1.7974],[120.1076,-1.8031],[120.108,-1.8127],[120.1042,-1.8212],[120.1006,-1.8236],[120.1044,-1.8289],[120.1119,-1.8337],[120.121,-1.8375],[120.1192,-1.844],[120.1237,-1.8458],[120.1276,-1.8515],[120.127,-1.8554],[120.1333,-1.8595],[120.1359,-1.865],[120.1353,-1.8706],[120.138,-1.8727],[120.1447,-1.8857],[120.144,-1.8879],[120.1313,-1.8964],[120.124,-1.9057],[120.1206,-1.9042],[120.1159,-1.8987],[120.1111,-1.8956],[120.1046,-1.8974],[120.1026,-1.9021],[120.1032,-1.9166],[120.0982,-1.9301],[120.098,-1.9368],[120.1015,-1.9435],[120.1002,-1.9501],[120.1009,-1.9588],[120.1065,-1.965],[120.099,-1.9857],[120.1108,-1.9922],[120.1134,-1.992],[120.114,-2.0055],[120.115,-2.009],[120.1194,-2.0124],[120.1291,-2.016],[120.1373,-2.0201],[120.146,-2.0226],[120.1519,-2.0226],[120.1642,-2.0296],[120.1747,-2.0319],[120.184,-2.0355],[120.2034,-2.0362],[120.2178,-2.0326],[120.2324,-2.0321],[120.2383,-2.029],[120.2706,-2.0283],[120.2824,-2.0326],[120.2916,-2.0402],[120.307,-2.0475],[120.3111,-2.0506],[120.3173,-2.0519],[120.3275,-2.0583],[120.3349,-2.0616],[120.3398,-2.0613],[120.3447,-2.0567],[120.3454,-2.049],[120.3493,-2.0301],[120.357,-2.019],[120.358,-2.0129],[120.3619,-2.0108],[120.3629,-1.9916],[120.367,-1.9816],[120.3721,-1.9629],[120.3754,-1.9611],[120.3793,-1.9534],[120.3795,-1.9452],[120.3888,-1.8975],[120.3908,-1.8952],[120.4034,-1.8955],[120.4085,-1.8973],[120.417,-1.9101],[120.4188,-1.9145],[120.4274,-1.9241],[120.4416,-1.9365],[120.4462,-1.9373],[120.4529,-1.945],[120.4587,-1.9501],[120.4641,-1.957],[120.4657,-1.9611],[120.4705,-1.9629],[120.4744,-1.9698],[120.4769,-1.9778],[120.4839,-1.9873],[120.4839,-2.0021],[120.4862,-2.0044],[120.5028,-2.0296],[120.5213,-2.051],[120.5315,-2.0624],[120.5398,-2.0703],[120.5408,-2.0747],[120.5782,-2.1162],[120.5803,-2.1226],[120.5864,-2.1295],[120.602,-2.1426],[120.6151,-2.1567],[120.6297,-2.1669],[120.6379,-2.1716],[120.6628,-2.1875],[120.6684,-2.1923],[120.6766,-2.1957],[120.6853,-2.2054],[120.6918,-2.2072],[120.7094,-2.2167],[120.7174,-2.2233],[120.7238,-2.2262],[120.7423,-2.2303],[120.7566,-2.239],[120.791,-2.2385],[120.7969,-2.2341],[120.805,-2.2253],[120.8377,-2.2186],[120.8421,-2.2184],[120.8425,-2.2113],[120.8415,-2.1832],[120.8387,-2.156],[120.8316,-2.1218],[120.8321,-2.1155],[120.83,-2.0964],[120.8311,-2.0879],[120.8381,-2.0506],[120.8405,-2.0396],[120.8438,-2.0306],[120.8626,-2.0041],[120.8732,-1.9919],[120.8798,-1.9822],[120.9153,-1.9355],[120.9188,-1.9338],[120.921,-1.9234],[120.9204,-1.9198],[120.9293,-1.9148],[120.9274,-1.9046],[120.9247,-1.9051],[120.9211,-1.8984],[120.9088,-1.8911],[120.9021,-1.89],[120.9009,-1.8834],[120.8957,-1.8782],[120.8955,-1.8705],[120.8884,-1.8578],[120.884,-1.8563],[120.8797,-1.8578],[120.8702,-1.8503],[120.8689,-1.8468],[120.8626,-1.8393],[120.8653,-1.8341],[120.8641,-1.8257],[120.8564,-1.8084],[120.8524,-1.792],[120.8496,-1.7855],[120.8407,-1.7739],[120.8353,-1.7619],[120.8341,-1.7507],[120.8474,-1.713],[120.8575,-1.6813],[120.8706,-1.6519],[120.8827,-1.625],[120.8902,-1.6243],[120.9093,-1.6249],[120.9194,-1.6243],[120.9295,-1.6249],[120.9503,-1.6232],[120.9619,-1.6237],[120.9607,-1.6217],[120.9309,-1.5826],[120.9146,-1.5708],[120.9134,-1.565],[120.9076,-1.55],[120.9054,-1.5393],[120.9023,-1.5384],[120.9007,-1.5276],[120.9007,-1.52],[120.8981,-1.5201],[120.8955,-1.4979],[120.8926,-1.4868],[120.8906,-1.4832],[120.89,-1.4501],[120.8913,-1.4411],[120.8898,-1.4285],[120.8936,-1.4248],[120.8888,-1.4211],[120.8905,-1.4133]]}},{"type":"Feature","properties":{"mhid":"1332:400","alt_name":"KABUPATEN DONGGALA","latitude":-0.58333,"longitude":119.85,"sample_value":229},"geometry":{"type":"LineString","coordinates":[[119.8054,-0.8027],[119.8035,-0.791],[119.7975,-0.7866],[119.7932,-0.7761],[119.788,-0.7698],[119.7919,-0.7643],[119.7868,-0.7587],[119.7879,-0.7555],[119.7831,-0.7515],[119.7797,-0.7455],[119.7789,-0.7388],[119.7758,-0.726],[119.7763,-0.7214],[119.7722,-0.7158],[119.769,-0.7034],[119.7653,-0.7055],[119.7606,-0.704],[119.7586,-0.7006],[119.7582,-0.6944],[119.7621,-0.6852],[119.7563,-0.6761],[119.7474,-0.6691],[119.7411,-0.6628],[119.7391,-0.6532],[119.7399,-0.6452],[119.7321,-0.6442],[119.7274,-0.6457],[119.7222,-0.6645],[119.7167,-0.6752],[119.7099,-0.6844],[119.6925,-0.691],[119.6889,-0.6939],[119.6896,-0.7003],[119.6792,-0.7049],[119.6714,-0.7024],[119.6645,-0.7138],[119.6611,-0.7168],[119.6656,-0.7213],[119.6747,-0.7209],[119.6796,-0.7293],[119.681,-0.7345],[119.6856,-0.742],[119.686,-0.749],[119.6815,-0.7583],[119.6841,-0.7629],[119.682,-0.7687],[119.6763,-0.7665],[119.6676,-0.7676],[119.6675,-0.7729],[119.6621,-0.7783],[119.6574,-0.7806],[119.6561,-0.7842],[119.659,-0.7893],[119.6576,-0.7978],[119.6635,-0.7976],[119.6634,-0.8011],[119.6569,-0.8047],[119.6517,-0.7941],[119.6573,-0.7878],[119.6533,-0.7838],[119.6449,-0.7896],[119.6412,-0.79],[119.6273,-0.797],[119.6221,-0.8028],[119.6212,-0.8199],[119.6176,-0.8297],[119.6141,-0.8342],[119.6074,-0.835],[119.5968,-0.8432],[119.5844,-0.8472],[119.5716,-0.8493],[119.5628,-0.8487],[119.5615,-0.8514],[119.5719,-0.8679],[119.5701,-0.8818],[119.5711,-0.8851],[119.5671,-0.8886],[119.5646,-0.8955],[119.5619,-0.8953],[119.5622,-0.908],[119.5633,-0.913],[119.5587,-0.9264],[119.5559,-0.9269],[119.5532,-0.9382],[119.5555,-0.9447],[119.5544,-0.9512],[119.555,-0.9642],[119.5596,-0.9777],[119.56,-0.9847],[119.5583,-0.9903],[119.5591,-0.9985],[119.5569,-1.0095],[119.5589,-1.0129],[119.5659,-1.0187],[119.5754,-1.0186],[119.5778,-1.0309],[119.574,-1.0384],[119.5773,-1.0456],[119.5725,-1.049],[119.5739,-1.0529],[119.5802,-1.0555],[119.5777,-1.0611],[119.5781,-1.068],[119.5836,-1.0866],[119.5892,-1.09],[119.5879,-1.0989],[119.5907,-1.103],[119.5905,-1.1149],[119.593,-1.1243],[119.5994,-1.1194],[119.6037,-1.1179],[119.6091,-1.1204],[119.6104,-1.1299],[119.6098,-1.1383],[119.6077,-1.1399],[119.6073,-1.1541],[119.6031,-1.1591],[119.6,-1.1591],[119.5952,-1.1551],[119.5877,-1.1521],[119.5722,-1.149],[119.5708,-1.1627],[119.5705,-1.1811],[119.5661,-1.1903],[119.5669,-1.1962],[119.5642,-1.202],[119.5608,-1.2016],[119.557,-1.2049],[119.5421,-1.2005],[119.5422,-1.223],[119.54,-1.2242],[119.5306,-1.2389],[119.524,-1.2515],[119.5186,-1.2565],[119.5072,-1.2731],[119.5038,-1.2765],[119.4935,-1.2834],[119.4857,-1.2868],[119.4791,-1.2913],[119.4733,-1.2978],[119.4745,-1.3037],[119.478,-1.3086],[119.4817,-1.3094],[119.4988,-1.3025],[119.5012,-1.2993],[119.5097,-1.2989],[119.5159,-1.3026],[119.5215,-1.2948],[119.5257,-1.2965],[119.5266,-1.3007],[119.5237,-1.3085],[119.5195,-1.3154],[119.5106,-1.313],[119.5002,-1.3202],[119.4919,-1.3218],[119.482,-1.322],[119.4781,-1.3188],[119.4713,-1.3169],[119.4643,-1.3186],[119.4561,-1.329],[119.4558,-1.335],[119.4488,-1.3396],[119.4474,-1.3428],[119.447,-1.355],[119.4485,-1.3609],[119.452,-1.3669],[119.4664,-1.3847],[119.4784,-1.3983],[119.4813,-1.3985],[119.4905,-1.3909],[119.4954,-1.3928],[119.5022,-1.3929],[119.5047,-1.3949],[119.5034,-1.4013],[119.509,-1.4038],[119.5098,-1.4082],[119.5131,-1.4114],[119.5187,-1.412],[119.5216,-1.4237],[119.5201,-1.4335],[119.5172,-1.4389],[119.5107,-1.4382],[119.5081,-1.4458],[119.5083,-1.4508],[119.5117,-1.4511],[119.5156,-1.4456],[119.5194,-1.4461],[119.5292,-1.4367],[119.532,-1.4294],[119.541,-1.4298],[119.5397,-1.424],[119.5453,-1.4225],[119.5487,-1.4266],[119.5491,-1.4331],[119.5569,-1.4315],[119.5619,-1.4276],[119.5689,-1.428],[119.5687,-1.4213],[119.5734,-1.4216],[119.5829,-1.4256],[119.5845,-1.4213],[119.582,-1.4104],[119.588,-1.4102],[119.5902,-1.4056],[119.589,-1.4026],[119.5922,-1.3965],[119.5957,-1.399],[119.6,-1.3977],[119.6016,-1.4027],[119.6075,-1.4026],[119.6099,-1.4061],[119.6144,-1.4019],[119.6233,-1.3971],[119.6283,-1.4059],[119.6327,-1.4006],[119.6437,-1.4062],[119.6468,-1.4135],[119.6517,-1.4168],[119.6552,-1.4229],[119.6631,-1.4223],[119.6653,-1.427],[119.6715,-1.4333],[119.6709,-1.4426],[119.6841,-1.4423],[119.685,-1.449],[119.6925,-1.4498],[119.697,-1.4525],[119.71,-1.434],[119.7174,-1.4326],[119.7215,-1.4288],[119.7279,-1.4203],[119.7405,-1.429],[119.7511,-1.4284],[119.7548,-1.4255],[119.7636,-1.4235],[119.7545,-1.404],[119.75,-1.3888],[119.7474,-1.3839],[119.7382,-1.3769],[119.7292,-1.3618],[119.728,-1.3475],[119.731,-1.3433],[119.7325,-1.3372],[119.7376,-1.3287],[119.7435,-1.3224],[119.7428,-1.3156],[119.7505,-1.2907],[119.7507,-1.2854],[119.7482,-1.2754],[119.7429,-1.2637],[119.7449,-1.2553],[119.7512,-1.241],[119.7557,-1.2377],[119.7676,-1.2331],[119.7694,-1.2268],[119.7665,-1.2194],[119.7702,-1.2165],[119.7747,-1.2097],[119.77,-1.198],[119.7774,-1.1937],[119.7797,-1.1895],[119.787,-1.1854],[119.7878,-1.1823],[119.7868,-1.1724],[119.7912,-1.1705],[119.7894,-1.1644],[119.7936,-1.1559],[119.7936,-1.1512],[119.7988,-1.1462],[119.8052,-1.1427],[119.8061,-1.1345],[119.7959,-1.1309],[119.7959,-1.1207],[119.799,-1.1017],[119.8017,-1.0971],[119.8042,-1.0886],[119.7965,-1.084],[119.7959,-1.079],[119.7907,-1.0771],[119.7847,-1.0675],[119.784,-1.0573],[119.7795,-1.0424],[119.7741,-1.0359],[119.7673,-1.03],[119.7612,-1.0269],[119.7603,-1.0192],[119.7578,-1.0132],[119.7504,-1.0073],[119.737,-1.0095],[119.7291,-1.0168],[119.7235,-1.0074],[119.7195,-1.005],[119.7121,-1.012],[119.7124,-1.0181],[119.704,-1.0197],[119.6829,-1.0145],[119.6747,-1.0082],[119.6715,-0.9985],[119.6652,-0.9947],[119.6626,-0.9901],[119.6572,-0.9878],[119.6505,-0.9883],[119.6506,-0.9799],[119.6479,-0.9695],[119.6502,-0.9632],[119.6508,-0.9566],[119.6543,-0.9512],[119.6609,-0.9511],[119.6656,-0.9481],[119.6725,-0.9409],[119.6894,-0.9383],[119.695,-0.9392],[119.7054,-0.9354],[119.7118,-0.9268],[119.7238,-0.9082],[119.731,-0.9005],[119.7338,-0.9063],[119.7422,-0.9172],[119.7456,-0.919],[119.7516,-0.9099],[119.7572,-0.9078],[119.7653,-0.9089],[119.7824,-0.9033],[119.7814,-0.8976],[119.7684,-0.8932],[119.7686,-0.887],[119.7665,-0.8823],[119.7671,-0.8715],[119.7701,-0.8685],[119.7705,-0.8612],[119.7652,-0.8534],[119.7666,-0.8445],[119.7597,-0.8362],[119.7653,-0.8297],[119.7782,-0.8215],[119.7892,-0.8203],[119.7966,-0.8173],[119.8016,-0.8114],[119.8054,-0.8027]]}},{"type":"Feature","properties":{"mhid":"1332:400","alt_name":"KABUPATEN DONGGALA","latitude":-0.58333,"longitude":119.85,"sample_value":229},"geometry":{"type":"LineString","coordinates":[[119.6223,0.093],[119.6182,0.0984],[119.6162,0.093],[119.6223,0.093]]}},{"type":"Feature","properties":{"mhid":"1332:400","alt_name":"KABUPATEN DONGGALA","latitude":-0.58333,"longitude":119.85,"sample_value":229},"geometry":{"type":"LineString","coordinates":[[119.9083,0.4844],[119.9071,0.4902],[119.8996,0.4945],[119.8914,0.4918],[119.8988,0.4825],[119.9043,0.4813],[119.9083,0.4844]]}},{"type":"Feature","properties":{"mhid":"1332:400","alt_name":"KABUPATEN DONGGALA","latitude":-0.58333,"longitude":119.85,"sample_value":229},"geometry":{"type":"LineString","coordinates":[[119.8592,0.5324],[119.855,0.531],[119.8535,0.5245],[119.8504,0.5208],[119.8497,0.5077],[119.8599,0.5158],[119.8683,0.5154],[119.8763,0.5185],[119.8784,0.5212],[119.8697,0.529],[119.8592,0.5324]]}},{"type":"Feature","properties":{"mhid":"1332:400","alt_name":"KABUPATEN DONGGALA","latitude":-0.58333,"longitude":119.85,"sample_value":229},"geometry":{"type":"LineString","coordinates":[[119.7952,0.581],[119.7917,0.5819],[119.7913,0.5761],[119.7941,0.574],[119.7984,0.5766],[119.7952,0.581]]}},{"type":"Feature","properties":{"mhid":"1332:400","alt_name":"KABUPATEN DONGGALA","latitude":-0.58333,"longitude":119.85,"sample_value":229},"geometry":{"type":"LineString","coordinates":[[120.1372,0.745],[120.1226,0.741],[120.1118,0.7429],[120.1037,0.7411],[120.0978,0.7471],[120.0945,0.7407],[120.0904,0.7387],[120.0817,0.739],[120.0766,0.7422],[120.0676,0.7369],[120.0592,0.7272],[120.0609,0.7176],[120.0553,0.713],[120.0504,0.7112],[120.0452,0.7117],[120.0407,0.7098],[120.038,0.6998],[120.0351,0.6946],[120.0341,0.6881],[120.0296,0.6856],[120.0282,0.6791],[120.0178,0.6731],[120.0141,0.6631],[120.0142,0.6518],[120.0173,0.6464],[120.0231,0.6254],[120.0283,0.6214],[120.0332,0.6095],[120.0344,0.6015],[120.0345,0.588],[120.0379,0.5713],[120.0371,0.5607],[120.0399,0.5463],[120.0439,0.5414],[120.0476,0.5295],[120.0463,0.5173],[120.0468,0.5137],[120.0397,0.5086],[120.0274,0.5029],[120.0191,0.4951],[120.0081,0.4873],[119.9989,0.4833],[119.989,0.4831],[119.9815,0.4813],[119.9681,0.4806],[119.9587,0.4763],[119.9509,0.4742],[119.9184,0.4774],[119.9112,0.4753],[119.9008,0.479],[119.9014,0.4722],[119.8999,0.4689],[119.8884,0.4637],[119.8821,0.4584],[119.8799,0.4492],[119.8782,0.4477],[119.8763,0.4367],[119.879,0.4302],[119.8843,0.4268],[119.8879,0.4192],[119.8882,0.3924],[119.8804,0.384],[119.8754,0.3822],[119.8724,0.3765],[119.8667,0.3717],[119.8572,0.3615],[119.8508,0.3563],[119.8483,0.3518],[119.8474,0.3376],[119.8452,0.3353],[119.8519,0.3259],[119.8581,0.3225],[119.8603,0.317],[119.8651,0.3098],[119.8658,0.3066],[119.8718,0.2946],[119.8752,0.2924],[119.8859,0.2951],[119.8932,0.2872],[119.8941,0.2704],[119.8975,0.2674],[119.8982,0.2459],[119.906,0.2324],[119.9044,0.2255],[119.9003,0.2189],[119.8871,0.211],[119.8762,0.2172],[119.8677,0.2182],[119.8636,0.2157],[119.8545,0.2144],[119.8481,0.2183],[119.8342,0.216],[119.8288,0.2244],[119.8292,0.2286],[119.8213,0.2343],[119.8132,0.234],[119.8089,0.2364],[119.8006,0.2346],[119.7882,0.2301],[119.7799,0.2249],[119.7705,0.2127],[119.7719,0.2023],[119.774,0.1965],[119.7778,0.1909],[119.7844,0.1872],[119.7887,0.183],[119.7956,0.1717],[119.8056,0.1643],[119.8137,0.1568],[119.8241,0.1522],[119.8295,0.1474],[119.8314,0.1405],[119.8386,0.1313],[119.8498,0.1264],[119.8509,0.1226],[119.8574,0.1151],[119.8593,0.107],[119.8644,0.108],[119.8681,0.1057],[119.8704,0.1004],[119.872,0.0893],[119.8771,0.0841],[119.8789,0.0771],[119.8781,0.0702],[119.8793,0.063],[119.8749,0.0431],[119.8811,0.0289],[119.8818,0.0205],[119.8857,-0.0012],[119.8833,-0.0176],[119.8808,-0.0274],[119.8778,-0.0334],[119.8714,-0.0424],[119.8708,-0.048],[119.8656,-0.0596],[119.8572,-0.0679],[119.8557,-0.072],[119.8506,-0.0787],[119.8431,-0.0914],[119.8418,-0.0982],[119.8364,-0.1046],[119.8281,-0.1105],[119.8224,-0.1165],[119.8174,-0.1127],[119.8043,-0.1078],[119.7984,-0.1066],[119.7908,-0.1083],[119.7828,-0.1123],[119.7774,-0.1111],[119.7724,-0.1039],[119.7747,-0.0946],[119.7743,-0.0907],[119.7696,-0.0779],[119.7617,-0.0718],[119.7523,-0.0725],[119.7461,-0.069],[119.7387,-0.0613],[119.7395,-0.0519],[119.7427,-0.0489],[119.7425,-0.0356],[119.7398,-0.0299],[119.7225,-0.0097],[119.7089,-0.0017],[119.7036,-0.0005],[119.6988,0.0032],[119.69,0.0043],[119.6713,0.0121],[119.6707,0.0163],[119.6652,0.0201],[119.6595,0.0173],[119.6622,0.0065],[119.6685,0.0021],[119.6731,0.0022],[119.6702,-0.007],[119.6642,-0.018],[119.6579,-0.0166],[119.6472,-0.0111],[119.6361,-0.0086],[119.6269,-0.0113],[119.6104,-0.0043],[119.6064,-0.0042],[119.6061,-0.0121],[119.6085,-0.0187],[119.6153,-0.0319],[119.6239,-0.0441],[119.6295,-0.0477],[119.6352,-0.0612],[119.6386,-0.0594],[119.6441,-0.0636],[119.6433,-0.0683],[119.6517,-0.0775],[119.6496,-0.0807],[119.6542,-0.0894],[119.6545,-0.0949],[119.6598,-0.0962],[119.6627,-0.1051],[119.6675,-0.1116],[119.6718,-0.115],[119.6862,-0.1206],[119.6926,-0.1259],[119.6961,-0.1309],[119.702,-0.1358],[119.7089,-0.1394],[119.7141,-0.1405],[119.7213,-0.1445],[119.7253,-0.1426],[119.7377,-0.143],[119.7414,-0.1405],[119.754,-0.138],[119.7662,-0.1291],[119.7717,-0.1291],[119.7804,-0.1242],[119.7879,-0.1258],[119.7938,-0.1218],[119.8016,-0.1241],[119.8057,-0.1288],[119.8103,-0.1367],[119.8107,-0.1416],[119.804,-0.1515],[119.7997,-0.1563],[119.8014,-0.1648],[119.8113,-0.1735],[119.8149,-0.1806],[119.8184,-0.1925],[119.8161,-0.2013],[119.812,-0.204],[119.8051,-0.213],[119.8043,-0.2256],[119.7997,-0.2341],[119.7965,-0.2456],[119.7952,-0.2554],[119.7935,-0.258],[119.7868,-0.2615],[119.7857,-0.2654],[119.7789,-0.2769],[119.7764,-0.2863],[119.7771,-0.2923],[119.7738,-0.3026],[119.7738,-0.3123],[119.7716,-0.3169],[119.7699,-0.3274],[119.7633,-0.3379],[119.7639,-0.3488],[119.7624,-0.3524],[119.7563,-0.3558],[119.752,-0.3647],[119.7529,-0.3739],[119.7608,-0.3847],[119.7634,-0.393],[119.7643,-0.4013],[119.7607,-0.4143],[119.7561,-0.4265],[119.7572,-0.4326],[119.7544,-0.4375],[119.7612,-0.4528],[119.7619,-0.4646],[119.7638,-0.476],[119.759,-0.4847],[119.7597,-0.4972],[119.7674,-0.5064],[119.769,-0.5147],[119.7674,-0.5175],[119.7708,-0.5287],[119.7766,-0.5313],[119.7802,-0.5429],[119.7829,-0.5478],[119.7898,-0.5739],[119.7899,-0.5929],[119.7888,-0.596],[119.7923,-0.6058],[119.8022,-0.6164],[119.8064,-0.6253],[119.8111,-0.628],[119.8108,-0.6332],[119.8061,-0.6428],[119.807,-0.6495],[119.8125,-0.6604],[119.8181,-0.6651],[119.8171,-0.6719],[119.8223,-0.6873],[119.8255,-0.69],[119.8354,-0.6927],[119.8437,-0.6968],[119.8501,-0.691],[119.8547,-0.6719],[119.8598,-0.669],[119.855,-0.6627],[119.8599,-0.6586],[119.8697,-0.6573],[119.8753,-0.6481],[119.8795,-0.6452],[119.8884,-0.6439],[119.892,-0.6388],[119.8986,-0.6358],[119.9044,-0.6348],[119.9086,-0.6365],[119.9139,-0.6351],[119.9236,-0.6367],[119.9283,-0.6354],[119.9262,-0.6425],[119.9199,-0.6505],[119.9096,-0.6571],[119.9018,-0.6648],[119.8863,-0.6752],[119.8747,-0.6818],[119.8717,-0.6889],[119.8719,-0.6951],[119.8882,-0.6966],[119.8976,-0.6982],[119.9124,-0.6993],[119.9259,-0.6966],[119.9387,-0.6891],[119.9548,-0.6807],[119.9536,-0.6883],[119.96,-0.6873],[119.9615,-0.6932],[119.9605,-0.6981],[119.9543,-0.7041],[119.9497,-0.7056],[119.9419,-0.7147],[119.9064,-0.7192],[119.8992,-0.7255],[119.8934,-0.729],[119.8852,-0.7268],[119.8828,-0.7317],[119.8784,-0.7329],[119.8781,-0.7392],[119.8878,-0.747],[119.8953,-0.7512],[119.8773,-0.7653],[119.8741,-0.7691],[119.8855,-0.7715],[119.8872,-0.778],[119.9036,-0.778],[119.9124,-0.7746],[119.914,-0.7829],[119.9165,-0.7891],[119.9211,-0.7928],[119.9273,-0.7921],[119.9341,-0.7968],[119.9397,-0.7986],[119.947,-0.7989],[119.9545,-0.7975],[119.9741,-0.8083],[119.9787,-0.804],[119.9839,-0.803],[119.9903,-0.7987],[119.9925,-0.7952],[120.0002,-0.7938],[120.0131,-0.7939],[120.0167,-0.796],[120.0196,-0.8012],[120.0258,-0.8086],[120.0275,-0.8178],[120.0342,-0.8333],[120.034,-0.8413],[120.0368,-0.848],[120.0417,-0.843],[120.0445,-0.8297],[120.0422,-0.8211],[120.0341,-0.8076],[120.0333,-0.7925],[120.025,-0.7843],[120.0233,-0.7809],[120.0259,-0.7744],[120.023,-0.7613],[120.0181,-0.7529],[120.0193,-0.7472],[120.0265,-0.747],[120.0272,-0.7437],[120.0241,-0.7373],[120.0246,-0.7305],[120.0193,-0.7215],[120.0205,-0.7083],[120.027,-0.7084],[120.0321,-0.7013],[120.0319,-0.6916],[120.0329,-0.6847],[120.0253,-0.6727],[120.0175,-0.6657],[120.0196,-0.6606],[120.0172,-0.6492],[120.0197,-0.6437],[120.0153,-0.6379],[120.0108,-0.6394],[120.0024,-0.6328],[120.0054,-0.6287],[120.0047,-0.625],[120.0071,-0.6208],[120.0077,-0.6127],[120.0034,-0.6061],[120.0023,-0.5941],[119.9996,-0.5895],[119.9913,-0.5874],[119.9881,-0.5836],[119.9879,-0.5775],[119.9813,-0.5736],[119.9765,-0.5678],[119.972,-0.5573],[119.9687,-0.5531],[119.9576,-0.5469],[119.9535,-0.5467],[119.954,-0.5401],[119.9515,-0.5294],[119.9436,-0.5167],[119.9376,-0.5145],[119.9313,-0.505],[119.9353,-0.4972],[119.9346,-0.4862],[119.9374,-0.4795],[119.938,-0.4675],[119.9411,-0.4603],[119.937,-0.4476],[119.9271,-0.4483],[119.9239,-0.4461],[119.9223,-0.4408],[119.9225,-0.4337],[119.9191,-0.427],[119.9204,-0.4185],[119.9184,-0.4132],[119.9256,-0.3987],[119.9252,-0.3921],[119.9183,-0.3773],[119.914,-0.3733],[119.9135,-0.3679],[119.9166,-0.363],[119.9138,-0.3557],[119.9143,-0.3518],[119.9206,-0.3482],[119.9291,-0.3362],[119.9269,-0.3289],[119.9298,-0.3225],[119.924,-0.3196],[119.9208,-0.3144],[119.9284,-0.3056],[119.9194,-0.2972],[119.9227,-0.2914],[119.9222,-0.2863],[119.9119,-0.2848],[119.9065,-0.2759],[119.905,-0.2701],[119.9169,-0.2638],[119.9224,-0.2588],[119.9211,-0.254],[119.9145,-0.2467],[119.9125,-0.2369],[119.9169,-0.2351],[119.9259,-0.2233],[119.9279,-0.2164],[119.9376,-0.2102],[119.933,-0.2074],[119.9288,-0.1949],[119.9291,-0.1892],[119.9238,-0.1723],[119.9137,-0.1687],[119.9141,-0.1643],[119.9109,-0.1613],[119.9078,-0.1519],[119.8999,-0.1403],[119.9011,-0.1341],[119.9087,-0.1302],[119.9132,-0.1238],[119.9151,-0.116],[119.9182,-0.1176],[119.9207,-0.1106],[119.9237,-0.1076],[119.9358,-0.1009],[119.9414,-0.086],[119.9433,-0.077],[119.9476,-0.0717],[119.9442,-0.0658],[119.9449,-0.061],[119.9427,-0.0495],[119.9428,-0.0428],[119.94,-0.0383],[119.9418,-0.0348],[119.94,-0.0256],[119.9441,-0.02],[119.9408,-0.0116],[119.9423,-0.0054],[119.9441,0.0103],[119.9454,0.0148],[119.9512,0.0176],[119.958,0.0354],[119.9574,0.0434],[119.9553,0.0458],[119.9538,0.0542],[119.9576,0.0623],[119.9602,0.0719],[119.9576,0.0738],[119.9614,0.0844],[119.9672,0.0883],[119.9699,0.0947],[119.9774,0.0969],[119.9858,0.0952],[119.9899,0.1065],[119.9998,0.1098],[120.0012,0.1118],[120.0015,0.1227],[120.0094,0.1246],[120.0188,0.1251],[120.0336,0.1272],[120.0378,0.1297],[120.0341,0.1332],[120.0364,0.1383],[120.046,0.1471],[120.0424,0.1521],[120.045,0.1595],[120.0436,0.1683],[120.045,0.1728],[120.052,0.179],[120.0524,0.1812],[120.0607,0.1817],[120.067,0.1807],[120.0701,0.1829],[120.0695,0.1904],[120.0803,0.1977],[120.0886,0.1973],[120.0922,0.1992],[120.0958,0.207],[120.0969,0.2207],[120.1006,0.2247],[120.0954,0.2282],[120.0928,0.2365],[120.0965,0.2444],[120.0902,0.25],[120.0882,0.2564],[120.0828,0.2644],[120.0827,0.2684],[120.0781,0.275],[120.0652,0.2747],[120.0597,0.2823],[120.0549,0.2854],[120.0587,0.293],[120.0553,0.2974],[120.057,0.3016],[120.0614,0.3044],[120.0616,0.3169],[120.0593,0.3201],[120.0592,0.3265],[120.0567,0.3345],[120.0623,0.3405],[120.0728,0.344],[120.0755,0.3479],[120.0736,0.3535],[120.0736,0.3615],[120.0781,0.3663],[120.0791,0.3798],[120.0839,0.3868],[120.0913,0.3915],[120.0965,0.3931],[120.103,0.3917],[120.1138,0.3952],[120.1211,0.4014],[120.1224,0.4078],[120.1266,0.408],[120.1287,0.4155],[120.1195,0.4203],[120.1139,0.4268],[120.1139,0.4294],[120.1189,0.439],[120.124,0.4441],[120.1274,0.4539],[120.1301,0.4584],[120.1367,0.46],[120.1436,0.4676],[120.1551,0.4679],[120.1593,0.4799],[120.1582,0.4927],[120.1608,0.4999],[120.1603,0.5175],[120.1611,0.5238],[120.1586,0.5309],[120.1606,0.533],[120.1745,0.5391],[120.1803,0.5463],[120.1799,0.5525],[120.1831,0.5623],[120.1876,0.5697],[120.1924,0.5728],[120.2031,0.5749],[120.2021,0.5793],[120.1959,0.5839],[120.1935,0.5908],[120.1927,0.5999],[120.1931,0.6157],[120.1925,0.6259],[120.1934,0.6384],[120.1962,0.6466],[120.1962,0.6589],[120.1989,0.6638],[120.1994,0.6836],[120.1963,0.701],[120.1888,0.7065],[120.1839,0.7076],[120.1783,0.7133],[120.1726,0.7148],[120.1653,0.7196],[120.1527,0.724],[120.1446,0.7307],[120.1372,0.745]]}},{"type":"Feature","properties":{"mhid":"1332:401","alt_name":"KABUPATEN TOLI-TOLI","latitude":1.30862,"longitude":120.88643,"sample_value":533},"geometry":{"type":"LineString","coordinates":[[120.2355,0.9698],[120.2378,0.9743],[120.2439,0.9769],[120.248,0.9865],[120.2408,0.9853],[120.2402,0.9814],[120.2359,0.9786],[120.2309,0.9728],[120.2355,0.9698]]}},{"type":"Feature","properties":{"mhid":"1332:401","alt_name":"KABUPATEN TOLI-TOLI","latitude":1.30862,"longitude":120.88643,"sample_value":533},"geometry":{"type":"LineString","coordinates":[[120.7348,0.9937],[120.7326,0.9981],[120.7277,1.0024],[120.7148,1.0015],[120.7036,0.9967],[120.7001,0.9918],[120.7069,0.9863],[120.7151,0.9871],[120.7227,0.9854],[120.728,0.99],[120.7348,0.9937]]}},{"type":"Feature","properties":{"mhid":"1332:401","alt_name":"KABUPATEN TOLI-TOLI","latitude":1.30862,"longitude":120.88643,"sample_value":533},"geometry":{"type":"LineString","coordinates":[[120.774,1.041],[120.7769,1.0453],[120.7715,1.0481],[120.7704,1.0424],[120.774,1.041]]}},{"type":"Feature","properties":{"mhid":"1332:401","alt_name":"KABUPATEN TOLI-TOLI","latitude":1.30862,"longitude":120.88643,"sample_value":533},"geometry":{"type":"LineString","coordinates":[[120.6208,1.0659],[120.6117,1.0694],[120.6048,1.0678],[120.5995,1.0641],[120.6023,1.0611],[120.608,1.0643],[120.6136,1.0584],[120.6147,1.0513],[120.6182,1.054],[120.6253,1.0469],[120.6272,1.049],[120.6346,1.0497],[120.6396,1.0481],[120.6408,1.0435],[120.6441,1.043],[120.6454,1.0378],[120.644,1.0332],[120.6523,1.0329],[120.6567,1.0233],[120.6618,1.0226],[120.665,1.0178],[120.6745,1.0158],[120.6648,1.0247],[120.6673,1.0341],[120.6655,1.0403],[120.6602,1.0431],[120.6574,1.0405],[120.6471,1.0417],[120.6459,1.046],[120.6371,1.0536],[120.6318,1.056],[120.6279,1.0625],[120.6208,1.0659]]}},{"type":"Feature","properties":{"mhid":"1332:401","alt_name":"KABUPATEN TOLI-TOLI","latitude":1.30862,"longitude":120.88643,"sample_value":533},"geometry":{"type":"LineString","coordinates":[[120.3986,1.0388],[120.3998,1.0435],[120.3988,1.0495],[120.4028,1.0558],[120.4026,1.064],[120.4003,1.0712],[120.3895,1.0779],[120.384,1.0777],[120.3777,1.0735],[120.3703,1.0591],[120.3677,1.0466],[120.3682,1.0386],[120.3658,1.0291],[120.368,1.0187],[120.3712,1.0133],[120.3758,1.0089],[120.3858,1.0067],[120.3926,1.0103],[120.3943,1.0189],[120.3971,1.0225],[120.395,1.0309],[120.3986,1.0337],[120.3986,1.0388]]}},{"type":"Feature","properties":{"mhid":"1332:401","alt_name":"KABUPATEN TOLI-TOLI","latitude":1.30862,"longitude":120.88643,"sample_value":533},"geometry":{"type":"LineString","coordinates":[[120.672,1.0707],[120.6755,1.0778],[120.6693,1.0764],[120.6677,1.0709],[120.672,1.0707]]}},{"type":"Feature","properties":{"mhid":"1332:401","alt_name":"KABUPATEN TOLI-TOLI","latitude":1.30862,"longitude":120.88643,"sample_value":533},"geometry":{"type":"LineString","coordinates":[[120.8074,1.2806],[120.8014,1.2841],[120.7999,1.2791],[120.8074,1.2806]]}},{"type":"Feature","properties":{"mhid":"1332:401","alt_name":"KABUPATEN TOLI-TOLI","latitude":1.30862,"longitude":120.88643,"sample_value":533},"geometry":{"type":"LineString","coordinates":[[121.1767,1.2605],[121.1775,1.2679],[121.1631,1.2776],[121.1556,1.2848],[121.1496,1.289],[121.1334,1.2984],[121.1001,1.3164],[121.0929,1.3149],[121.0796,1.3195],[121.0743,1.3099],[121.0701,1.3104],[121.0682,1.3054],[121.0627,1.3028],[121.0556,1.3051],[121.0527,1.3102],[121.0463,1.3102],[121.0459,1.3136],[121.0396,1.3128],[121.0392,1.3204],[121.0248,1.3229],[121.0255,1.3277],[121.0207,1.3294],[121.018,1.3253],[121.009,1.327],[120.999,1.3318],[120.9956,1.34],[120.9931,1.3357],[120.9829,1.3389],[120.9734,1.3443],[120.9647,1.3428],[120.9552,1.3466],[120.9422,1.3504],[120.9415,1.3482],[120.9311,1.3402],[120.9287,1.3341],[120.9217,1.3306],[120.9244,1.3281],[120.9301,1.3305],[120.9303,1.3251],[120.9283,1.3186],[120.9244,1.317],[120.9161,1.3195],[120.9087,1.3144],[120.911,1.3085],[120.8929,1.3065],[120.8944,1.3092],[120.9013,1.3092],[120.901,1.3135],[120.893,1.3127],[120.8888,1.3184],[120.8915,1.326],[120.8966,1.3228],[120.8986,1.3178],[120.9058,1.318],[120.9064,1.3223],[120.9001,1.3251],[120.8985,1.3288],[120.8994,1.3342],[120.9045,1.3397],[120.9116,1.3395],[120.9145,1.3431],[120.9089,1.354],[120.9034,1.3567],[120.8973,1.3506],[120.894,1.3513],[120.8951,1.3419],[120.8882,1.3353],[120.8887,1.3279],[120.8815,1.3226],[120.876,1.3226],[120.8649,1.3182],[120.8595,1.3184],[120.8494,1.3163],[120.8385,1.3126],[120.8328,1.3142],[120.8307,1.3197],[120.8229,1.3232],[120.8166,1.3232],[120.8093,1.3249],[120.8074,1.3192],[120.8093,1.3174],[120.8097,1.3083],[120.8114,1.2996],[120.8164,1.298],[120.8216,1.2939],[120.8188,1.2834],[120.8162,1.2805],[120.8112,1.281],[120.8084,1.2626],[120.8134,1.2583],[120.82,1.2567],[120.8168,1.2408],[120.8105,1.2231],[120.8106,1.2181],[120.8161,1.2123],[120.8194,1.2053],[120.8263,1.2057],[120.8257,1.2001],[120.8271,1.1913],[120.822,1.1718],[120.8145,1.1706],[120.8101,1.166],[120.7973,1.1579],[120.7924,1.1638],[120.7888,1.1616],[120.7884,1.1494],[120.7873,1.1454],[120.7898,1.1377],[120.7868,1.1299],[120.7842,1.1198],[120.777,1.1082],[120.7824,1.1038],[120.7891,1.1035],[120.7972,1.0891],[120.7985,1.081],[120.8008,1.075],[120.7971,1.0678],[120.7984,1.0618],[120.7958,1.0535],[120.8067,1.052],[120.8097,1.0479],[120.8094,1.0334],[120.8082,1.0291],[120.8032,1.0282],[120.7936,1.0304],[120.7851,1.0303],[120.7836,1.0275],[120.7753,1.0216],[120.7652,1.0129],[120.7585,1.0106],[120.7609,1.0058],[120.7549,1.0056],[120.7494,1.0013],[120.7479,0.9935],[120.7417,0.9908],[120.7383,0.9873],[120.7373,0.9802],[120.742,0.9746],[120.735,0.9741],[120.7344,0.9782],[120.73,0.9773],[120.7307,0.9686],[120.725,0.9712],[120.7247,0.9652],[120.7199,0.9629],[120.7213,0.9753],[120.7185,0.9771],[120.7119,0.9741],[120.7071,0.9744],[120.7035,0.981],[120.7036,0.9859],[120.697,0.9869],[120.6823,0.9754],[120.6787,0.9701],[120.6824,0.9683],[120.6878,0.9706],[120.6934,0.9645],[120.6926,0.9568],[120.6832,0.9618],[120.689,0.9535],[120.6794,0.952],[120.6751,0.9596],[120.6767,0.9646],[120.6702,0.9657],[120.668,0.9575],[120.6632,0.9529],[120.6677,0.9493],[120.6502,0.9411],[120.6446,0.9432],[120.6385,0.9384],[120.6347,0.9331],[120.6375,0.9247],[120.6381,0.919],[120.6348,0.9144],[120.6297,0.9105],[120.6231,0.9126],[120.6245,0.9058],[120.6219,0.9042],[120.6134,0.8826],[120.6107,0.8807],[120.6107,0.8755],[120.606,0.8759],[120.6033,0.8688],[120.605,0.8637],[120.6098,0.8615],[120.605,0.8519],[120.6063,0.8484],[120.6013,0.8444],[120.5979,0.8392],[120.6009,0.8344],[120.5999,0.8279],[120.603,0.8216],[120.6072,0.8247],[120.613,0.8209],[120.6055,0.8109],[120.6014,0.8094],[120.5972,0.8048],[120.6018,0.8021],[120.5976,0.7938],[120.5949,0.7961],[120.5906,0.7941],[120.5805,0.7797],[120.5761,0.7761],[120.5739,0.7696],[120.5761,0.7677],[120.5837,0.7668],[120.5852,0.7648],[120.5923,0.7643],[120.591,0.7581],[120.5969,0.7534],[120.5929,0.7493],[120.5744,0.7533],[120.569,0.7528],[120.5633,0.7548],[120.5524,0.7566],[120.5481,0.7552],[120.5465,0.7585],[120.555,0.7706],[120.5518,0.7779],[120.5454,0.7816],[120.537,0.7906],[120.5302,0.791],[120.5186,0.7934],[120.4955,0.7931],[120.4881,0.7903],[120.4823,0.786],[120.4774,0.7794],[120.4739,0.778],[120.458,0.7797],[120.4403,0.7847],[120.4328,0.7894],[120.4162,0.7929],[120.4044,0.7903],[120.3973,0.7922],[120.3874,0.8008],[120.384,0.8072],[120.3846,0.8132],[120.3806,0.8232],[120.3759,0.827],[120.374,0.8325],[120.3734,0.8437],[120.3757,0.864],[120.3723,0.8676],[120.3674,0.8646],[120.3675,0.8576],[120.365,0.8521],[120.3655,0.846],[120.3623,0.8427],[120.3653,0.8392],[120.3658,0.83],[120.3634,0.8283],[120.3569,0.8295],[120.3604,0.837],[120.3521,0.838],[120.35,0.8401],[120.3426,0.8415],[120.3287,0.8513],[120.3267,0.8604],[120.3311,0.8663],[120.3299,0.878],[120.3361,0.8846],[120.3389,0.8909],[120.3404,0.8991],[120.3379,0.9089],[120.3415,0.9189],[120.339,0.9263],[120.3418,0.9308],[120.3403,0.9401],[120.3467,0.9522],[120.3454,0.967],[120.348,0.9701],[120.3532,0.969],[120.355,0.9741],[120.3465,0.974],[120.3489,0.9789],[120.3541,0.9806],[120.3541,0.9842],[120.346,0.9849],[120.3364,0.9816],[120.3294,0.9838],[120.3242,0.9835],[120.3202,0.9856],[120.3138,0.9829],[120.3068,0.9815],[120.2974,0.9818],[120.2846,0.9861],[120.2809,0.9854],[120.2839,0.9791],[120.2779,0.9797],[120.2756,0.969],[120.2695,0.9692],[120.2636,0.9655],[120.2631,0.9612],[120.2544,0.9578],[120.2483,0.9602],[120.2472,0.9559],[120.2505,0.946],[120.2517,0.9351],[120.2498,0.9334],[120.2435,0.9222],[120.2403,0.9214],[120.2419,0.9064],[120.241,0.9005],[120.2369,0.8942],[120.2354,0.8816],[120.2399,0.8785],[120.2421,0.8651],[120.2429,0.8557],[120.2428,0.8409],[120.2458,0.8365],[120.2446,0.8193],[120.242,0.8155],[120.2416,0.81],[120.2381,0.8007],[120.2304,0.792],[120.2209,0.7853],[120.2154,0.7828],[120.2027,0.7728],[120.1921,0.7669],[120.1779,0.7566],[120.1647,0.7539],[120.157,0.7535],[120.1434,0.7488],[120.1381,0.7488],[120.1372,0.745],[120.1446,0.7307],[120.1527,0.724],[120.1653,0.7196],[120.1726,0.7148],[120.1783,0.7133],[120.1839,0.7076],[120.1888,0.7065],[120.1963,0.701],[120.1994,0.6836],[120.1989,0.6638],[120.1962,0.6589],[120.1962,0.6466],[120.1934,0.6384],[120.1925,0.6259],[120.1931,0.6157],[120.2102,0.6071],[120.2193,0.6049],[120.2296,0.608],[120.2404,0.6129],[120.2514,0.6203],[120.2607,0.6236],[120.2653,0.6236],[120.269,0.6303],[120.277,0.6315],[120.283,0.6306],[120.2864,0.6336],[120.287,0.6391],[120.2998,0.6426],[120.3007,0.6519],[120.3078,0.657],[120.3148,0.6599],[120.3298,0.6678],[120.3443,0.6683],[120.3498,0.673],[120.3517,0.677],[120.3557,0.6782],[120.3736,0.6753],[120.3801,0.671],[120.4083,0.6687],[120.412,0.6635],[120.4165,0.6615],[120.4304,0.6639],[120.4385,0.6638],[120.4414,0.6559],[120.4489,0.6428],[120.4592,0.6416],[120.4717,0.6443],[120.482,0.6434],[120.4844,0.6446],[120.4927,0.6416],[120.4955,0.6364],[120.5111,0.6343],[120.5166,0.6364],[120.5225,0.6333],[120.5276,0.6362],[120.5382,0.6351],[120.5409,0.632],[120.5434,0.6204],[120.541,0.6142],[120.5422,0.6064],[120.5452,0.5975],[120.5479,0.5953],[120.557,0.5947],[120.563,0.6055],[120.5703,0.6083],[120.576,0.6091],[120.5804,0.6053],[120.5897,0.6043],[120.5964,0.596],[120.6003,0.5954],[120.6073,0.6011],[120.6139,0.5997],[120.6153,0.5894],[120.6188,0.5871],[120.6263,0.5876],[120.6296,0.593],[120.6378,0.598],[120.6369,0.6058],[120.6424,0.6122],[120.6495,0.6168],[120.6565,0.6172],[120.6609,0.6156],[120.6613,0.6236],[120.6663,0.6279],[120.6659,0.6338],[120.6754,0.6458],[120.6852,0.6502],[120.6896,0.6556],[120.6969,0.6614],[120.7053,0.6616],[120.7064,0.6686],[120.7212,0.6646],[120.7316,0.6629],[120.7362,0.6608],[120.7444,0.6638],[120.7543,0.662],[120.7641,0.6699],[120.7756,0.6736],[120.7824,0.678],[120.7966,0.6792],[120.8146,0.6759],[120.8188,0.6788],[120.8194,0.6842],[120.8325,0.6907],[120.8385,0.6877],[120.848,0.6968],[120.85,0.7006],[120.8459,0.7025],[120.8679,0.7331],[120.8799,0.7508],[120.8911,0.7812],[120.8911,0.7867],[120.8948,0.7903],[120.9002,0.7926],[120.9126,0.7946],[120.9157,0.7976],[120.9163,0.8025],[120.9247,0.8111],[120.9301,0.8187],[120.9328,0.8193],[120.9333,0.827],[120.9505,0.8273],[120.9635,0.8364],[120.9712,0.8369],[120.978,0.8412],[120.9844,0.8427],[120.9907,0.842],[120.9959,0.8524],[121.0013,0.8604],[121.0064,0.8623],[121.0079,0.8686],[121.0072,0.8765],[121.0025,0.8806],[121.006,0.8871],[121.0053,0.892],[121.0125,0.9384],[121.0182,0.9691],[121.0204,0.9723],[121.019,0.9777],[121.0214,0.9826],[121.0194,0.9882],[121.0213,0.9951],[121.0269,1.0022],[121.0239,1.0148],[121.0148,1.016],[121.012,1.0242],[121.0068,1.0315],[121.0144,1.036],[121.0188,1.0363],[121.0264,1.0393],[121.035,1.0473],[121.0398,1.0485],[121.0414,1.0614],[121.0481,1.0698],[121.0504,1.0698],[121.0561,1.0782],[121.0653,1.0831],[121.0731,1.0837],[121.0793,1.0894],[121.089,1.0909],[121.0937,1.0932],[121.0895,1.0984],[121.0926,1.1076],[121.0906,1.1127],[121.0893,1.1225],[121.084,1.1272],[121.0824,1.1315],[121.0852,1.1347],[121.081,1.1427],[121.0802,1.1516],[121.0928,1.1673],[121.0928,1.1753],[121.0987,1.1762],[121.0983,1.1838],[121.1146,1.1917],[121.1214,1.1966],[121.1258,1.2033],[121.1293,1.2062],[121.1338,1.2049],[121.1379,1.2089],[121.1488,1.2259],[121.1481,1.2311],[121.151,1.2346],[121.1516,1.2422],[121.1613,1.2435],[121.1652,1.24],[121.1753,1.245],[121.1775,1.2488],[121.1767,1.2605]]}},{"type":"Feature","properties":{"mhid":"1332:401","alt_name":"KABUPATEN TOLI-TOLI","latitude":1.30862,"longitude":120.88643,"sample_value":533},"geometry":{"type":"LineString","coordinates":[[120.8892,1.3642],[120.89,1.3708],[120.8882,1.3739],[120.8835,1.3752],[120.879,1.3697],[120.878,1.3608],[120.8843,1.3581],[120.8892,1.3642]]}},{"type":"Feature","properties":{"mhid":"1332:402","alt_name":"KABUPATEN BUOL","latitude":0.75,"longitude":120.75,"sample_value":518},"geometry":{"type":"LineString","coordinates":[[121.9641,1.0523],[121.9721,1.058],[121.9764,1.0654],[121.9731,1.0721],[121.9695,1.0727],[121.97,1.0655],[121.9636,1.0568],[121.9641,1.0523]]}},{"type":"Feature","properties":{"mhid":"1332:402","alt_name":"KABUPATEN BUOL","latitude":0.75,"longitude":120.75,"sample_value":518},"geometry":{"type":"LineString","coordinates":[[121.8441,1.1207],[121.8425,1.1252],[121.835,1.1203],[121.8356,1.1178],[121.8425,1.1172],[121.8441,1.1207]]}},{"type":"Feature","properties":{"mhid":"1332:402","alt_name":"KABUPATEN BUOL","latitude":0.75,"longitude":120.75,"sample_value":518},"geometry":{"type":"LineString","coordinates":[[122.1955,1.0385],[122.1908,1.0418],[122.186,1.0482],[122.1868,1.0556],[122.1816,1.0527],[122.1821,1.0441],[122.1761,1.047],[122.1705,1.0455],[122.1681,1.0337],[122.1633,1.0333],[122.1596,1.0369],[122.1577,1.0428],[122.1523,1.0496],[122.1486,1.0462],[122.1413,1.0464],[122.1402,1.0524],[122.1301,1.0569],[122.1243,1.0536],[122.1245,1.0476],[122.1192,1.0476],[122.1172,1.0529],[122.1179,1.0569],[122.1085,1.0576],[122.104,1.0681],[122.0984,1.07],[122.093,1.0689],[122.088,1.0648],[122.0843,1.0659],[122.0747,1.0595],[122.0716,1.0646],[122.0634,1.0643],[122.0673,1.0697],[122.0672,1.0745],[122.0568,1.0734],[122.0598,1.0683],[122.0587,1.0643],[122.0533,1.0663],[122.0513,1.0624],[122.0506,1.0547],[122.0465,1.0531],[122.0417,1.0476],[122.0347,1.0469],[122.031,1.0432],[122.0283,1.0454],[122.0225,1.0407],[122.0154,1.0399],[122.0108,1.035],[122.0045,1.0371],[122.0018,1.0358],[122.001,1.0301],[121.994,1.028],[121.9868,1.0233],[121.9818,1.0234],[121.9745,1.0286],[121.9559,1.0379],[121.9527,1.0416],[121.9542,1.0494],[121.9584,1.0597],[121.9527,1.0563],[121.9504,1.0677],[121.9442,1.076],[121.9364,1.0778],[121.9336,1.0892],[121.9359,1.0972],[121.9321,1.102],[121.923,1.1013],[121.9164,1.0988],[121.9137,1.095],[121.9042,1.0918],[121.8924,1.0909],[121.8879,1.0875],[121.8888,1.0843],[121.8842,1.0809],[121.8792,1.0802],[121.8741,1.0819],[121.8686,1.0865],[121.8637,1.0888],[121.8552,1.0889],[121.8505,1.0926],[121.8424,1.088],[121.8358,1.0868],[121.8236,1.0921],[121.8206,1.0896],[121.819,1.0811],[121.8126,1.0822],[121.8089,1.0808],[121.7868,1.0829],[121.7838,1.0809],[121.7832,1.0763],[121.7791,1.0754],[121.7754,1.0781],[121.7668,1.0712],[121.7605,1.0704],[121.7523,1.0735],[121.7442,1.0724],[121.7403,1.065],[121.7356,1.0685],[121.7301,1.0767],[121.7262,1.0746],[121.7163,1.0807],[121.7096,1.0815],[121.7025,1.0742],[121.7001,1.0682],[121.7049,1.066],[121.7081,1.0597],[121.7079,1.0541],[121.7132,1.0405],[121.7072,1.0398],[121.7065,1.0461],[121.7083,1.0503],[121.7057,1.0541],[121.6977,1.0563],[121.6967,1.0638],[121.6913,1.0693],[121.6838,1.0718],[121.6835,1.0678],[121.6786,1.0654],[121.674,1.0684],[121.6693,1.0691],[121.6549,1.0651],[121.6498,1.0591],[121.6511,1.0536],[121.6561,1.0543],[121.6548,1.0407],[121.6505,1.041],[121.648,1.0453],[121.6481,1.053],[121.6433,1.0553],[121.6383,1.0555],[121.6324,1.0611],[121.6114,1.0618],[121.6055,1.0548],[121.5982,1.055],[121.5878,1.0578],[121.5839,1.0575],[121.5737,1.0633],[121.5603,1.0618],[121.5511,1.0654],[121.5274,1.0827],[121.5164,1.0865],[121.5121,1.0866],[121.5007,1.0946],[121.4893,1.1077],[121.4844,1.1096],[121.4833,1.113],[121.4577,1.1369],[121.4527,1.1427],[121.4483,1.1532],[121.4342,1.1634],[121.4233,1.1835],[121.4219,1.1929],[121.4287,1.1941],[121.4344,1.2076],[121.4355,1.2227],[121.4329,1.2284],[121.4266,1.2328],[121.4198,1.2313],[121.413,1.2323],[121.4163,1.2395],[121.4199,1.2432],[121.4318,1.2427],[121.4321,1.2394],[121.44,1.2407],[121.4468,1.2454],[121.4552,1.2495],[121.4627,1.2511],[121.4633,1.2561],[121.4722,1.2649],[121.47,1.2784],[121.4644,1.2836],[121.4705,1.2956],[121.4709,1.3016],[121.4664,1.3057],[121.452,1.3119],[121.4371,1.3094],[121.4289,1.2988],[121.4314,1.2943],[121.4259,1.2884],[121.4243,1.2837],[121.4099,1.2764],[121.4111,1.2682],[121.4045,1.2621],[121.3988,1.2603],[121.3887,1.2619],[121.3829,1.2605],[121.3796,1.2573],[121.3698,1.2556],[121.361,1.2497],[121.3538,1.2484],[121.3466,1.2523],[121.3438,1.2603],[121.3372,1.2624],[121.3352,1.2553],[121.3301,1.2531],[121.3183,1.254],[121.3109,1.2562],[121.3063,1.253],[121.3012,1.252],[121.2951,1.2419],[121.2834,1.2385],[121.2751,1.2406],[121.2731,1.2341],[121.2609,1.2311],[121.251,1.2313],[121.229,1.2383],[121.2127,1.2471],[121.203,1.2517],[121.1915,1.2594],[121.1843,1.2656],[121.1781,1.2631],[121.1767,1.2605],[121.1775,1.2488],[121.1753,1.245],[121.1652,1.24],[121.1613,1.2435],[121.1516,1.2422],[121.151,1.2346],[121.1481,1.2311],[121.1488,1.2259],[121.1379,1.2089],[121.1338,1.2049],[121.1293,1.2062],[121.1258,1.2033],[121.1214,1.1966],[121.1146,1.1917],[121.0983,1.1838],[121.0987,1.1762],[121.0928,1.1753],[121.0928,1.1673],[121.0802,1.1516],[121.081,1.1427],[121.0852,1.1347],[121.0824,1.1315],[121.084,1.1272],[121.0893,1.1225],[121.0906,1.1127],[121.0926,1.1076],[121.0895,1.0984],[121.0937,1.0932],[121.089,1.0909],[121.0793,1.0894],[121.0731,1.0837],[121.0653,1.0831],[121.0561,1.0782],[121.0504,1.0698],[121.0481,1.0698],[121.0414,1.0614],[121.0398,1.0485],[121.035,1.0473],[121.0264,1.0393],[121.0188,1.0363],[121.0144,1.036],[121.0068,1.0315],[121.012,1.0242],[121.0148,1.016],[121.0239,1.0148],[121.0269,1.0022],[121.0213,0.9951],[121.0194,0.9882],[121.0214,0.9826],[121.019,0.9777],[121.0204,0.9723],[121.0182,0.9691],[121.0125,0.9384],[121.0053,0.892],[121.006,0.8871],[121.0025,0.8806],[121.0072,0.8765],[121.0079,0.8686],[121.0064,0.8623],[121.0013,0.8604],[120.9959,0.8524],[120.9907,0.842],[120.9844,0.8427],[120.978,0.8412],[120.9712,0.8369],[120.9635,0.8364],[120.9505,0.8273],[120.9333,0.827],[120.9328,0.8193],[120.9301,0.8187],[120.9247,0.8111],[120.9163,0.8025],[120.9157,0.7976],[120.9126,0.7946],[120.9002,0.7926],[120.8948,0.7903],[120.8911,0.7867],[120.8911,0.7812],[120.8799,0.7508],[120.8679,0.7331],[120.8459,0.7025],[120.85,0.7006],[120.8592,0.7087],[120.8704,0.7046],[120.8738,0.7004],[120.8809,0.703],[120.8965,0.6964],[120.9094,0.6922],[120.9183,0.6913],[120.9333,0.6864],[120.954,0.6927],[120.9706,0.69],[120.9779,0.6949],[120.9913,0.6975],[121.0024,0.7012],[121.0106,0.708],[121.0182,0.7038],[121.0256,0.7032],[121.0359,0.6952],[121.0397,0.695],[121.0515,0.6906],[121.0572,0.6929],[121.0618,0.6977],[121.0626,0.7011],[121.0688,0.7004],[121.0777,0.697],[121.0903,0.6987],[121.0966,0.6984],[121.102,0.6947],[121.107,0.6946],[121.1083,0.6899],[121.1205,0.6867],[121.1261,0.6815],[121.1328,0.6805],[121.1372,0.6815],[121.1498,0.6814],[121.1584,0.6758],[121.1625,0.6766],[121.1612,0.6787],[121.1715,0.6835],[121.1743,0.693],[121.1786,0.7007],[121.1806,0.7138],[121.1874,0.7221],[121.1821,0.7432],[121.1856,0.75],[121.1864,0.7572],[121.1926,0.7669],[121.2009,0.7661],[121.2092,0.7684],[121.2136,0.7734],[121.2142,0.78],[121.217,0.7829],[121.2153,0.7915],[121.2336,0.797],[121.2375,0.8012],[121.2459,0.8012],[121.2521,0.7985],[121.2561,0.7988],[121.2702,0.7958],[121.2892,0.7982],[121.2927,0.7949],[121.3032,0.7955],[121.3149,0.7851],[121.3201,0.7855],[121.3253,0.7915],[121.3324,0.7946],[121.3371,0.795],[121.3455,0.7932],[121.3533,0.7953],[121.3541,0.799],[121.358,0.8012],[121.3634,0.801],[121.3645,0.8068],[121.3614,0.8149],[121.3505,0.8213],[121.3532,0.8331],[121.3519,0.8407],[121.3484,0.8433],[121.347,0.8483],[121.3499,0.8508],[121.3548,0.8502],[121.359,0.8534],[121.3663,0.8493],[121.375,0.8532],[121.3807,0.8527],[121.3843,0.8545],[121.3899,0.8508],[121.3944,0.851],[121.3998,0.8474],[121.4013,0.8434],[121.4112,0.8449],[121.4165,0.8479],[121.4201,0.8442],[121.4332,0.8444],[121.4372,0.847],[121.4538,0.8476],[121.4623,0.845],[121.4661,0.8474],[121.4766,0.8376],[121.4826,0.8397],[121.4937,0.8395],[121.5,0.8435],[121.5102,0.8478],[121.533,0.8537],[121.5357,0.8601],[121.5346,0.868],[121.5369,0.8759],[121.5478,0.8785],[121.5581,0.8778],[121.5632,0.8739],[121.5669,0.8746],[121.5728,0.8708],[121.5839,0.8716],[121.5879,0.8732],[121.5969,0.8724],[121.6039,0.8733],[121.6104,0.8822],[121.6233,0.8821],[121.6352,0.891],[121.6458,0.8952],[121.6546,0.8912],[121.659,0.8921],[121.6659,0.8987],[121.6734,0.9035],[121.6846,0.9005],[121.6913,0.9026],[121.6978,0.907],[121.7015,0.9071],[121.7052,0.9138],[121.7105,0.918],[121.7165,0.9192],[121.7287,0.9248],[121.7354,0.9297],[121.7449,0.9314],[121.7617,0.9322],[121.7666,0.935],[121.7739,0.9361],[121.7808,0.9396],[121.7856,0.9397],[121.7957,0.9488],[121.8064,0.951],[121.8119,0.9502],[121.8212,0.9616],[121.8294,0.9602],[121.8374,0.9738],[121.8489,0.9802],[121.8467,0.9858],[121.8507,0.9924],[121.8629,0.9908],[121.8676,0.9862],[121.8761,0.9831],[121.8788,0.98],[121.8832,0.9794],[121.8914,0.9735],[121.894,0.9688],[121.9021,0.9639],[121.9071,0.9549],[121.916,0.9418],[121.9183,0.933],[121.9222,0.9274],[121.932,0.9296],[121.9382,0.9278],[121.9442,0.9196],[121.9547,0.9077],[121.9649,0.9073],[121.9758,0.9042],[121.9825,0.9074],[121.9852,0.9105],[121.9865,0.9191],[121.9836,0.9217],[121.9837,0.9275],[121.9885,0.9354],[121.9945,0.9425],[121.9991,0.9425],[122.0077,0.9484],[122.01,0.952],[122.017,0.9546],[122.0179,0.9569],[122.0251,0.9603],[122.0303,0.9705],[122.0351,0.9762],[122.0423,0.9895],[122.0449,0.9891],[122.0566,0.997],[122.0595,0.9968],[122.071,1.0041],[122.0768,1.0064],[122.0844,0.9986],[122.0927,0.9998],[122.1013,1.0047],[122.1131,1.0131],[122.1216,1.0121],[122.1255,1.0182],[122.1363,1.0199],[122.1405,1.0185],[122.1489,1.0215],[122.1563,1.0256],[122.1606,1.0299],[122.1703,1.0278],[122.1753,1.0302],[122.1755,1.0363],[122.1873,1.0374],[122.1892,1.0393],[122.1955,1.0385]]}},{"type":"Feature","properties":{"mhid":"1332:403","alt_name":"KABUPATEN PARIGI MOUTONG","latitude":0.3368,"longitude":120.17841,"sample_value":492},"geometry":{"type":"LineString","coordinates":[[120.5778,-1.1008],[120.5655,-1.0937],[120.5602,-1.0924],[120.5605,-1.0885],[120.5563,-1.0777],[120.5464,-1.0648],[120.5401,-1.0614],[120.5401,-1.0552],[120.5329,-1.051],[120.5296,-1.0471],[120.534,-1.0432],[120.5316,-1.0337],[120.5241,-1.0217],[120.5167,-1.0159],[120.5081,-0.9975],[120.4918,-0.9953],[120.4894,-0.9913],[120.4851,-0.9892],[120.4809,-0.9923],[120.4724,-0.9906],[120.4712,-0.9938],[120.4601,-0.992],[120.4539,-0.9815],[120.4454,-0.9744],[120.4423,-0.9693],[120.4347,-0.9646],[120.4327,-0.9592],[120.431,-0.9438],[120.4207,-0.9304],[120.4117,-0.9242],[120.4065,-0.923],[120.4004,-0.9258],[120.3974,-0.9242],[120.393,-0.926],[120.3809,-0.9285],[120.3716,-0.9279],[120.3683,-0.9371],[120.3646,-0.9356],[120.3609,-0.9411],[120.3521,-0.9424],[120.3498,-0.9464],[120.3505,-0.9527],[120.3472,-0.956],[120.3421,-0.9556],[120.337,-0.9529],[120.3296,-0.9582],[120.3206,-0.9609],[120.3146,-0.9661],[120.3094,-0.9648],[120.3041,-0.9549],[120.3008,-0.9533],[120.2981,-0.9476],[120.2867,-0.941],[120.2832,-0.9334],[120.2837,-0.9248],[120.2793,-0.9158],[120.2725,-0.9079],[120.2632,-0.9002],[120.2472,-0.8908],[120.2421,-0.8844],[120.2417,-0.8742],[120.2357,-0.8697],[120.2309,-0.8587],[120.2273,-0.8531],[120.2189,-0.843],[120.2121,-0.8446],[120.2059,-0.8498],[120.1972,-0.8467],[120.1937,-0.8413],[120.1887,-0.839],[120.1867,-0.8347],[120.1837,-0.8213],[120.1799,-0.8135],[120.1785,-0.806],[120.1742,-0.7974],[120.1668,-0.7899],[120.1596,-0.7848],[120.1487,-0.7789],[120.1415,-0.7724],[120.1378,-0.7763],[120.1324,-0.7729],[120.1302,-0.7639],[120.1306,-0.7584],[120.1169,-0.7435],[120.1103,-0.7373],[120.108,-0.7314],[120.106,-0.7164],[120.1023,-0.7058],[120.0941,-0.7007],[120.0892,-0.6955],[120.0839,-0.6874],[120.0824,-0.6783],[120.0781,-0.6737],[120.0741,-0.6642],[120.0717,-0.6537],[120.0663,-0.6468],[120.0607,-0.6348],[120.0589,-0.6291],[120.061,-0.6266],[120.063,-0.6186],[120.0612,-0.6124],[120.0618,-0.6058],[120.0576,-0.5969],[120.0561,-0.5707],[120.0519,-0.5639],[120.0532,-0.5505],[120.0509,-0.5461],[120.0512,-0.5387],[120.0474,-0.5313],[120.052,-0.5216],[120.0531,-0.5117],[120.0502,-0.5048],[120.0495,-0.4996],[120.05,-0.4879],[120.0647,-0.4707],[120.0667,-0.4647],[120.0704,-0.4589],[120.0722,-0.4496],[120.0718,-0.4394],[120.0659,-0.4308],[120.0639,-0.4156],[120.0586,-0.4186],[120.0569,-0.4119],[120.0537,-0.4068],[120.0531,-0.3991],[120.0504,-0.397],[120.046,-0.3982],[120.0411,-0.391],[120.0391,-0.3829],[120.0426,-0.3726],[120.0346,-0.3635],[120.0312,-0.3468],[120.0337,-0.344],[120.0327,-0.319],[120.0334,-0.3153],[120.0307,-0.3042],[120.0282,-0.3007],[120.021,-0.2955],[120.0145,-0.2932],[120.0087,-0.2859],[120.0075,-0.2782],[120.0075,-0.2688],[120.0106,-0.2578],[120.0115,-0.2486],[120.0065,-0.2368],[120.0047,-0.2304],[120.0058,-0.2223],[120.0093,-0.2163],[120.0083,-0.2048],[120.0107,-0.1956],[120.0078,-0.1888],[120.0101,-0.1857],[120.0087,-0.1777],[120.0125,-0.1733],[120.0194,-0.1724],[120.0212,-0.1667],[120.0282,-0.1615],[120.0343,-0.1541],[120.0401,-0.1412],[120.0423,-0.1277],[120.0401,-0.1145],[120.0412,-0.1109],[120.0357,-0.1038],[120.0334,-0.0877],[120.0352,-0.0819],[120.0334,-0.0779],[120.0351,-0.0655],[120.0381,-0.0601],[120.0466,-0.0565],[120.0511,-0.0592],[120.0665,-0.0601],[120.0704,-0.0516],[120.079,-0.0469],[120.0883,-0.0404],[120.092,-0.0338],[120.095,-0.0314],[120.0966,-0.0206],[120.1002,-0.0162],[120.0987,-0.0115],[120.1016,-0.0074],[120.1027,0.0063],[120.1014,0.0139],[120.1033,0.0176],[120.0991,0.0261],[120.1022,0.0404],[120.1086,0.046],[120.1116,0.0561],[120.1113,0.0609],[120.1081,0.0667],[120.1079,0.0779],[120.1092,0.081],[120.106,0.0881],[120.106,0.0951],[120.1108,0.1005],[120.1137,0.1126],[120.122,0.1165],[120.1327,0.127],[120.1363,0.1395],[120.1334,0.1489],[120.1336,0.1537],[120.1288,0.1562],[120.124,0.162],[120.1244,0.1661],[120.129,0.1712],[120.1295,0.1776],[120.1339,0.1818],[120.1338,0.1861],[120.1363,0.1916],[120.1429,0.1977],[120.1462,0.2039],[120.1506,0.2072],[120.1583,0.2203],[120.1577,0.2266],[120.1593,0.2291],[120.1659,0.2304],[120.1667,0.2354],[120.1732,0.2375],[120.1748,0.2441],[120.1812,0.2479],[120.1829,0.2529],[120.1896,0.256],[120.1941,0.2605],[120.2001,0.2621],[120.2045,0.2683],[120.2103,0.2795],[120.2116,0.2848],[120.215,0.2898],[120.2148,0.2949],[120.2228,0.3012],[120.2233,0.3075],[120.2295,0.3119],[120.2294,0.3157],[120.2333,0.3239],[120.2407,0.3309],[120.2451,0.3383],[120.2427,0.3485],[120.252,0.3519],[120.2602,0.3619],[120.2625,0.3632],[120.27,0.3618],[120.2768,0.3684],[120.2777,0.3752],[120.2821,0.379],[120.2864,0.3802],[120.2923,0.392],[120.2916,0.4005],[120.2958,0.4059],[120.2988,0.4124],[120.3104,0.4243],[120.3237,0.428],[120.3308,0.4366],[120.3336,0.4375],[120.3429,0.4451],[120.3492,0.4475],[120.3522,0.4517],[120.3649,0.4567],[120.3739,0.4613],[120.3887,0.4634],[120.3915,0.467],[120.4101,0.4769],[120.415,0.4767],[120.419,0.472],[120.4259,0.4662],[120.4357,0.4658],[120.4456,0.4711],[120.4515,0.4804],[120.4565,0.4858],[120.4612,0.4935],[120.4742,0.4927],[120.479,0.4994],[120.4986,0.509],[120.5024,0.5091],[120.5073,0.5133],[120.5194,0.5124],[120.5286,0.5171],[120.5485,0.5103],[120.5545,0.5127],[120.5591,0.5126],[120.5702,0.5092],[120.5852,0.5143],[120.5882,0.5173],[120.5959,0.5195],[120.6003,0.5179],[120.6022,0.5209],[120.608,0.5215],[120.621,0.5199],[120.6324,0.5171],[120.6398,0.5175],[120.6441,0.5207],[120.6493,0.5201],[120.6551,0.5153],[120.6692,0.5096],[120.6816,0.5098],[120.6891,0.5111],[120.6954,0.5098],[120.6989,0.5068],[120.6984,0.5028],[120.709,0.4963],[120.7127,0.4898],[120.7253,0.4763],[120.7409,0.47],[120.749,0.4658],[120.7599,0.464],[120.7619,0.4602],[120.7668,0.4568],[120.7715,0.4565],[120.7796,0.4614],[120.7888,0.4598],[120.7931,0.4658],[120.8005,0.4717],[120.808,0.4699],[120.8109,0.4663],[120.807,0.4624],[120.8103,0.4565],[120.8088,0.4532],[120.8175,0.4472],[120.8238,0.4489],[120.8315,0.4412],[120.8378,0.4464],[120.8443,0.4461],[120.8544,0.4425],[120.8582,0.4357],[120.8614,0.4352],[120.867,0.4268],[120.8748,0.4206],[120.8793,0.4128],[120.8815,0.4121],[120.8973,0.3959],[120.9126,0.4011],[120.922,0.3995],[120.9323,0.4003],[120.9363,0.4057],[120.9487,0.4144],[120.9524,0.4155],[120.9573,0.4115],[120.9604,0.4153],[120.9669,0.418],[120.974,0.4171],[120.9787,0.4212],[120.9857,0.421],[120.9935,0.4276],[120.9959,0.4273],[121.0112,0.4344],[121.0218,0.4347],[121.023,0.4379],[121.0276,0.4403],[121.0362,0.4305],[121.0383,0.4258],[121.0437,0.4233],[121.0534,0.4133],[121.0614,0.409],[121.0662,0.4084],[121.0701,0.4022],[121.0808,0.3976],[121.0884,0.403],[121.0975,0.4075],[121.1023,0.4062],[121.1113,0.4011],[121.1226,0.4116],[121.1298,0.4103],[121.1461,0.4105],[121.1525,0.4113],[121.1618,0.4163],[121.1586,0.4249],[121.1618,0.4337],[121.1608,0.4364],[121.1672,0.4436],[121.171,0.4423],[121.1733,0.4467],[121.178,0.4457],[121.1777,0.4516],[121.1798,0.4556],[121.1844,0.4576],[121.1911,0.4635],[121.1978,0.4621],[121.2013,0.4576],[121.2082,0.4591],[121.2108,0.4571],[121.2179,0.4622],[121.2247,0.4616],[121.2303,0.4581],[121.2387,0.4625],[121.2448,0.4774],[121.2522,0.4851],[121.2583,0.4894],[121.2633,0.4894],[121.2685,0.4924],[121.2846,0.4928],[121.2918,0.4948],[121.3023,0.488],[121.3082,0.4863],[121.3184,0.4853],[121.334,0.477],[121.3374,0.4736],[121.3419,0.4788],[121.3424,0.4835],[121.3469,0.4852],[121.3516,0.4926],[121.3467,0.4946],[121.3437,0.501],[121.3442,0.5056],[121.339,0.506],[121.3337,0.5117],[121.3332,0.5217],[121.3354,0.5264],[121.3421,0.5266],[121.3477,0.5377],[121.344,0.547],[121.3502,0.5556],[121.3459,0.5631],[121.3371,0.5744],[121.3299,0.5745],[121.3264,0.5762],[121.3188,0.5768],[121.3123,0.5743],[121.3076,0.5686],[121.3027,0.5683],[121.3004,0.5753],[121.2949,0.5801],[121.2745,0.583],[121.2716,0.5866],[121.2618,0.5899],[121.2572,0.5951],[121.2483,0.6015],[121.2428,0.6005],[121.2394,0.6022],[121.2351,0.6082],[121.2311,0.6214],[121.2275,0.6292],[121.2314,0.6339],[121.2318,0.6415],[121.228,0.6454],[121.221,0.6391],[121.2164,0.6388],[121.2113,0.6411],[121.2026,0.6426],[121.1967,0.6419],[121.1944,0.6454],[121.1792,0.6551],[121.1733,0.6654],[121.1664,0.6687],[121.1625,0.6766],[121.1584,0.6758],[121.1498,0.6814],[121.1372,0.6815],[121.1328,0.6805],[121.1261,0.6815],[121.1205,0.6867],[121.1083,0.6899],[121.107,0.6946],[121.102,0.6947],[121.0966,0.6984],[121.0903,0.6987],[121.0777,0.697],[121.0688,0.7004],[121.0626,0.7011],[121.0618,0.6977],[121.0572,0.6929],[121.0515,0.6906],[121.0397,0.695],[121.0359,0.6952],[121.0256,0.7032],[121.0182,0.7038],[121.0106,0.708],[121.0024,0.7012],[120.9913,0.6975],[120.9779,0.6949],[120.9706,0.69],[120.954,0.6927],[120.9333,0.6864],[120.9183,0.6913],[120.9094,0.6922],[120.8965,0.6964],[120.8809,0.703],[120.8738,0.7004],[120.8704,0.7046],[120.8592,0.7087],[120.85,0.7006],[120.848,0.6968],[120.8385,0.6877],[120.8325,0.6907],[120.8194,0.6842],[120.8188,0.6788],[120.8146,0.6759],[120.7966,0.6792],[120.7824,0.678],[120.7756,0.6736],[120.7641,0.6699],[120.7543,0.662],[120.7444,0.6638],[120.7362,0.6608],[120.7316,0.6629],[120.7212,0.6646],[120.7064,0.6686],[120.7053,0.6616],[120.6969,0.6614],[120.6896,0.6556],[120.6852,0.6502],[120.6754,0.6458],[120.6659,0.6338],[120.6663,0.6279],[120.6613,0.6236],[120.6609,0.6156],[120.6565,0.6172],[120.6495,0.6168],[120.6424,0.6122],[120.6369,0.6058],[120.6378,0.598],[120.6296,0.593],[120.6263,0.5876],[120.6188,0.5871],[120.6153,0.5894],[120.6139,0.5997],[120.6073,0.6011],[120.6003,0.5954],[120.5964,0.596],[120.5897,0.6043],[120.5804,0.6053],[120.576,0.6091],[120.5703,0.6083],[120.563,0.6055],[120.557,0.5947],[120.5479,0.5953],[120.5452,0.5975],[120.5422,0.6064],[120.541,0.6142],[120.5434,0.6204],[120.5409,0.632],[120.5382,0.6351],[120.5276,0.6362],[120.5225,0.6333],[120.5166,0.6364],[120.5111,0.6343],[120.4955,0.6364],[120.4927,0.6416],[120.4844,0.6446],[120.482,0.6434],[120.4717,0.6443],[120.4592,0.6416],[120.4489,0.6428],[120.4414,0.6559],[120.4385,0.6638],[120.4304,0.6639],[120.4165,0.6615],[120.412,0.6635],[120.4083,0.6687],[120.3801,0.671],[120.3736,0.6753],[120.3557,0.6782],[120.3517,0.677],[120.3498,0.673],[120.3443,0.6683],[120.3298,0.6678],[120.3148,0.6599],[120.3078,0.657],[120.3007,0.6519],[120.2998,0.6426],[120.287,0.6391],[120.2864,0.6336],[120.283,0.6306],[120.277,0.6315],[120.269,0.6303],[120.2653,0.6236],[120.2607,0.6236],[120.2514,0.6203],[120.2404,0.6129],[120.2296,0.608],[120.2193,0.6049],[120.2102,0.6071],[120.1931,0.6157],[120.1927,0.5999],[120.1935,0.5908],[120.1959,0.5839],[120.2021,0.5793],[120.2031,0.5749],[120.1924,0.5728],[120.1876,0.5697],[120.1831,0.5623],[120.1799,0.5525],[120.1803,0.5463],[120.1745,0.5391],[120.1606,0.533],[120.1586,0.5309],[120.1611,0.5238],[120.1603,0.5175],[120.1608,0.4999],[120.1582,0.4927],[120.1593,0.4799],[120.1551,0.4679],[120.1436,0.4676],[120.1367,0.46],[120.1301,0.4584],[120.1274,0.4539],[120.124,0.4441],[120.1189,0.439],[120.1139,0.4294],[120.1139,0.4268],[120.1195,0.4203],[120.1287,0.4155],[120.1266,0.408],[120.1224,0.4078],[120.1211,0.4014],[120.1138,0.3952],[120.103,0.3917],[120.0965,0.3931],[120.0913,0.3915],[120.0839,0.3868],[120.0791,0.3798],[120.0781,0.3663],[120.0736,0.3615],[120.0736,0.3535],[120.0755,0.3479],[120.0728,0.344],[120.0623,0.3405],[120.0567,0.3345],[120.0592,0.3265],[120.0593,0.3201],[120.0616,0.3169],[120.0614,0.3044],[120.057,0.3016],[120.0553,0.2974],[120.0587,0.293],[120.0549,0.2854],[120.0597,0.2823],[120.0652,0.2747],[120.0781,0.275],[120.0827,0.2684],[120.0828,0.2644],[120.0882,0.2564],[120.0902,0.25],[120.0965,0.2444],[120.0928,0.2365],[120.0954,0.2282],[120.1006,0.2247],[120.0969,0.2207],[120.0958,0.207],[120.0922,0.1992],[120.0886,0.1973],[120.0803,0.1977],[120.0695,0.1904],[120.0701,0.1829],[120.067,0.1807],[120.0607,0.1817],[120.0524,0.1812],[120.052,0.179],[120.045,0.1728],[120.0436,0.1683],[120.045,0.1595],[120.0424,0.1521],[120.046,0.1471],[120.0364,0.1383],[120.0341,0.1332],[120.0378,0.1297],[120.0336,0.1272],[120.0188,0.1251],[120.0094,0.1246],[120.0015,0.1227],[120.0012,0.1118],[119.9998,0.1098],[119.9899,0.1065],[119.9858,0.0952],[119.9774,0.0969],[119.9699,0.0947],[119.9672,0.0883],[119.9614,0.0844],[119.9576,0.0738],[119.9602,0.0719],[119.9576,0.0623],[119.9538,0.0542],[119.9553,0.0458],[119.9574,0.0434],[119.958,0.0354],[119.9512,0.0176],[119.9454,0.0148],[119.9441,0.0103],[119.9423,-0.0054],[119.9408,-0.0116],[119.9441,-0.02],[119.94,-0.0256],[119.9418,-0.0348],[119.94,-0.0383],[119.9428,-0.0428],[119.9427,-0.0495],[119.9449,-0.061],[119.9442,-0.0658],[119.9476,-0.0717],[119.9433,-0.077],[119.9414,-0.086],[119.9358,-0.1009],[119.9237,-0.1076],[119.9207,-0.1106],[119.9182,-0.1176],[119.9151,-0.116],[119.9132,-0.1238],[119.9087,-0.1302],[119.9011,-0.1341],[119.8999,-0.1403],[119.9078,-0.1519],[119.9109,-0.1613],[119.9141,-0.1643],[119.9137,-0.1687],[119.9238,-0.1723],[119.9291,-0.1892],[119.9288,-0.1949],[119.933,-0.2074],[119.9376,-0.2102],[119.9279,-0.2164],[119.9259,-0.2233],[119.9169,-0.2351],[119.9125,-0.2369],[119.9145,-0.2467],[119.9211,-0.254],[119.9224,-0.2588],[119.9169,-0.2638],[119.905,-0.2701],[119.9065,-0.2759],[119.9119,-0.2848],[119.9222,-0.2863],[119.9227,-0.2914],[119.9194,-0.2972],[119.9284,-0.3056],[119.9208,-0.3144],[119.924,-0.3196],[119.9298,-0.3225],[119.9269,-0.3289],[119.9291,-0.3362],[119.9206,-0.3482],[119.9143,-0.3518],[119.9138,-0.3557],[119.9166,-0.363],[119.9135,-0.3679],[119.914,-0.3733],[119.9183,-0.3773],[119.9252,-0.3921],[119.9256,-0.3987],[119.9184,-0.4132],[119.9204,-0.4185],[119.9191,-0.427],[119.9225,-0.4337],[119.9223,-0.4408],[119.9239,-0.4461],[119.9271,-0.4483],[119.937,-0.4476],[119.9411,-0.4603],[119.938,-0.4675],[119.9374,-0.4795],[119.9346,-0.4862],[119.9353,-0.4972],[119.9313,-0.505],[119.9376,-0.5145],[119.9436,-0.5167],[119.9515,-0.5294],[119.954,-0.5401],[119.9535,-0.5467],[119.9576,-0.5469],[119.9687,-0.5531],[119.972,-0.5573],[119.9765,-0.5678],[119.9813,-0.5736],[119.9879,-0.5775],[119.9881,-0.5836],[119.9913,-0.5874],[119.9996,-0.5895],[120.0023,-0.5941],[120.0034,-0.6061],[120.0077,-0.6127],[120.0071,-0.6208],[120.0047,-0.625],[120.0054,-0.6287],[120.0024,-0.6328],[120.0108,-0.6394],[120.0153,-0.6379],[120.0197,-0.6437],[120.0172,-0.6492],[120.0196,-0.6606],[120.0175,-0.6657],[120.0253,-0.6727],[120.0329,-0.6847],[120.0319,-0.6916],[120.0321,-0.7013],[120.027,-0.7084],[120.0205,-0.7083],[120.0193,-0.7215],[120.0246,-0.7305],[120.0241,-0.7373],[120.0272,-0.7437],[120.0265,-0.747],[120.0193,-0.7472],[120.0181,-0.7529],[120.023,-0.7613],[120.0259,-0.7744],[120.0233,-0.7809],[120.025,-0.7843],[120.0333,-0.7925],[120.0341,-0.8076],[120.0422,-0.8211],[120.0445,-0.8297],[120.0417,-0.843],[120.0368,-0.848],[120.0341,-0.8571],[120.0389,-0.8684],[120.0334,-0.8724],[120.0313,-0.8806],[120.0233,-0.8827],[120.0314,-0.8927],[120.0362,-0.8928],[120.0469,-0.8973],[120.0511,-0.9018],[120.0653,-0.9097],[120.0697,-0.9105],[120.0721,-0.9148],[120.0682,-0.9204],[120.0697,-0.923],[120.0681,-0.9312],[120.069,-0.9379],[120.0666,-0.943],[120.0653,-0.954],[120.0604,-0.9602],[120.0573,-0.9665],[120.0662,-0.9699],[120.0691,-0.9747],[120.0733,-0.9773],[120.0744,-0.9851],[120.0788,-0.9903],[120.0761,-0.9975],[120.0777,-0.9996],[120.0736,-1.0083],[120.0803,-1.011],[120.0796,-1.0157],[120.0941,-1.0196],[120.0982,-1.0255],[120.1057,-1.0176],[120.114,-1.017],[120.1153,-1.0228],[120.1185,-1.024],[120.1194,-1.0322],[120.1289,-1.0444],[120.1348,-1.0446],[120.139,-1.0428],[120.1473,-1.0428],[120.1514,-1.045],[120.1513,-1.0493],[120.1583,-1.0525],[120.1663,-1.0477],[120.173,-1.0535],[120.18,-1.0613],[120.1838,-1.0639],[120.1922,-1.0646],[120.1961,-1.0626],[120.1984,-1.0546],[120.2027,-1.0543],[120.2099,-1.0618],[120.2189,-1.0654],[120.2186,-1.0731],[120.2266,-1.0814],[120.2307,-1.0921],[120.2255,-1.1004],[120.2245,-1.1046],[120.2272,-1.1119],[120.2252,-1.1159],[120.2283,-1.1256],[120.2326,-1.1298],[120.2392,-1.1331],[120.2478,-1.1324],[120.2561,-1.1353],[120.2611,-1.1423],[120.2672,-1.1518],[120.272,-1.1513],[120.2779,-1.1431],[120.2831,-1.1421],[120.2849,-1.1376],[120.2904,-1.1335],[120.2962,-1.133],[120.3062,-1.1356],[120.3124,-1.1343],[120.3187,-1.1363],[120.3269,-1.137],[120.3319,-1.1416],[120.3369,-1.1486],[120.3385,-1.1544],[120.3412,-1.1549],[120.3445,-1.1481],[120.349,-1.1445],[120.3576,-1.1472],[120.3535,-1.1552],[120.3456,-1.1632],[120.3414,-1.1736],[120.3411,-1.1843],[120.3421,-1.1869],[120.3358,-1.189],[120.3378,-1.1894],[120.3504,-1.1848],[120.3742,-1.1735],[120.3993,-1.1613],[120.4279,-1.1502],[120.4341,-1.1526],[120.4461,-1.1462],[120.4558,-1.1464],[120.4656,-1.148],[120.4896,-1.1417],[120.4929,-1.142],[120.5025,-1.1378],[120.5118,-1.1314],[120.5301,-1.1299],[120.5572,-1.1168],[120.5684,-1.1126],[120.5709,-1.1099],[120.5795,-1.1086],[120.5805,-1.1059],[120.5778,-1.1008]]}},{"type":"Feature","properties":{"mhid":"1332:404","alt_name":"KABUPATEN TOJO UNA-UNA","latitude":-1.2036,"longitude":121.48201,"sample_value":382},"geometry":{"type":"LineString","coordinates":[[121.8432,-0.9685],[121.8337,-0.9682],[121.8268,-0.9645],[121.8254,-0.9596],[121.8218,-0.9565],[121.8166,-0.9561],[121.8111,-0.9579],[121.8072,-0.9635],[121.7933,-0.9604],[121.7781,-0.9706],[121.7698,-0.9718],[121.7676,-0.9702],[121.7585,-0.9701],[121.7551,-0.966],[121.7502,-0.9651],[121.7339,-0.9569],[121.7298,-0.952],[121.7189,-0.9532],[121.7099,-0.9495],[121.7086,-0.9471],[121.7111,-0.9407],[121.7016,-0.9321],[121.6968,-0.9307],[121.6965,-0.9263],[121.6901,-0.9237],[121.6838,-0.926],[121.6799,-0.9212],[121.6696,-0.9225],[121.6659,-0.9208],[121.6643,-0.9154],[121.656,-0.9117],[121.6555,-0.9053],[121.6572,-0.898],[121.6566,-0.8909],[121.6631,-0.8718],[121.6636,-0.8652],[121.6678,-0.8546],[121.6629,-0.8471],[121.6652,-0.8391],[121.664,-0.8289],[121.6642,-0.8178],[121.6623,-0.811],[121.657,-0.808],[121.6533,-0.8024],[121.6508,-0.8048],[121.6392,-0.8072],[121.6336,-0.8071],[121.617,-0.8154],[121.6094,-0.8251],[121.606,-0.8273],[121.597,-0.8252],[121.5912,-0.8337],[121.6001,-0.8433],[121.6012,-0.8506],[121.5977,-0.8575],[121.5911,-0.8642],[121.5864,-0.8672],[121.5783,-0.8659],[121.5676,-0.8679],[121.562,-0.867],[121.5521,-0.8741],[121.5475,-0.8747],[121.5382,-0.8733],[121.5275,-0.8824],[121.5208,-0.8854],[121.5095,-0.8851],[121.5008,-0.8879],[121.4946,-0.893],[121.4923,-0.8993],[121.4871,-0.9005],[121.4805,-0.8997],[121.4739,-0.9098],[121.4736,-0.9175],[121.4716,-0.925],[121.4685,-0.9297],[121.4678,-0.9353],[121.465,-0.9403],[121.4576,-0.9454],[121.4593,-0.9473],[121.46,-0.955],[121.4568,-0.962],[121.4509,-0.9712],[121.4448,-0.9777],[121.4303,-0.9844],[121.4249,-0.9882],[121.4195,-0.989],[121.4083,-0.9963],[121.4062,-0.9989],[121.3963,-1.005],[121.3994,-1.0093],[121.3978,-1.0163],[121.3989,-1.0202],[121.3959,-1.0229],[121.3923,-1.035],[121.3872,-1.0385],[121.3822,-1.0351],[121.3717,-1.0405],[121.3682,-1.0409],[121.3601,-1.0475],[121.3518,-1.0522],[121.341,-1.0623],[121.3377,-1.0633],[121.3309,-1.0738],[121.3299,-1.0773],[121.3157,-1.0938],[121.3081,-1.0984],[121.3024,-1.1066],[121.3015,-1.1119],[121.2952,-1.116],[121.2963,-1.1232],[121.2943,-1.1337],[121.286,-1.1392],[121.2844,-1.1462],[121.2815,-1.1501],[121.2822,-1.1541],[121.2796,-1.1588],[121.2717,-1.1648],[121.2645,-1.1643],[121.2622,-1.169],[121.2545,-1.1748],[121.2501,-1.1835],[121.2487,-1.1901],[121.2445,-1.1937],[121.2389,-1.1923],[121.2328,-1.1943],[121.2293,-1.1999],[121.2227,-1.2025],[121.2208,-1.2089],[121.2243,-1.2132],[121.2166,-1.2205],[121.2168,-1.2234],[121.2118,-1.2322],[121.2042,-1.2366],[121.2043,-1.2456],[121.2082,-1.262],[121.2022,-1.2643],[121.1941,-1.2727],[121.1957,-1.279],[121.1928,-1.2873],[121.1945,-1.2946],[121.1886,-1.299],[121.1882,-1.3042],[121.1846,-1.3058],[121.1814,-1.3191],[121.182,-1.3255],[121.1798,-1.3292],[121.1739,-1.3324],[121.1681,-1.3383],[121.1664,-1.3439],[121.1619,-1.3479],[121.1636,-1.357],[121.1635,-1.3672],[121.1575,-1.3666],[121.1479,-1.375],[121.1413,-1.3779],[121.1355,-1.3846],[121.1321,-1.3943],[121.1327,-1.402],[121.1301,-1.4061],[121.1253,-1.4086],[121.125,-1.4156],[121.1212,-1.4209],[121.1124,-1.429],[121.1041,-1.4318],[121.1013,-1.4372],[121.0985,-1.4367],[121.0912,-1.4399],[121.0826,-1.4388],[121.0767,-1.4353],[121.0677,-1.4366],[121.0639,-1.4398],[121.0589,-1.44],[121.0536,-1.4352],[121.0478,-1.432],[121.0391,-1.4339],[121.0385,-1.4209],[121.0415,-1.4173],[121.0397,-1.4128],[121.0354,-1.4175],[121.0277,-1.4196],[121.0175,-1.4197],[121.0095,-1.4159],[121.0008,-1.4134],[120.9934,-1.4056],[120.9838,-1.3995],[120.9678,-1.4082],[120.9647,-1.4116],[120.9546,-1.413],[120.95,-1.4149],[120.9308,-1.4132],[120.9163,-1.417],[120.8905,-1.4133],[120.8888,-1.4211],[120.8936,-1.4248],[120.8898,-1.4285],[120.8913,-1.4411],[120.89,-1.4501],[120.8906,-1.4832],[120.8926,-1.4868],[120.8955,-1.4979],[120.8981,-1.5201],[120.9007,-1.52],[120.9007,-1.5276],[120.9023,-1.5384],[120.9054,-1.5393],[120.9076,-1.55],[120.9134,-1.565],[120.9146,-1.5708],[120.9309,-1.5826],[120.9607,-1.6217],[120.9619,-1.6237],[120.9712,-1.6237],[120.9826,-1.6225],[120.988,-1.6235],[121.0071,-1.6242],[121.0201,-1.6187],[121.0343,-1.6083],[121.0508,-1.5976],[121.0578,-1.5912],[121.0676,-1.5838],[121.0737,-1.5804],[121.0844,-1.578],[121.1258,-1.5728],[121.1435,-1.572],[121.1615,-1.5749],[121.1614,-1.5695],[121.1583,-1.5659],[121.1585,-1.5617],[121.1627,-1.5583],[121.1745,-1.5644],[121.1835,-1.5671],[121.1878,-1.5668],[121.1873,-1.5521],[121.1884,-1.5478],[121.1954,-1.5379],[121.2043,-1.5218],[121.211,-1.5121],[121.2163,-1.5173],[121.2233,-1.5144],[121.2273,-1.5084],[121.2257,-1.4995],[121.2573,-1.4755],[121.2655,-1.4722],[121.2751,-1.4713],[121.2978,-1.4729],[121.3521,-1.473],[121.3605,-1.4568],[121.3756,-1.4525],[121.4031,-1.4353],[121.4121,-1.427],[121.4331,-1.4049],[121.4659,-1.4049],[121.4662,-1.3988],[121.4748,-1.3774],[121.4783,-1.3751],[121.496,-1.3754],[121.5029,-1.3745],[121.5062,-1.3758],[121.5149,-1.3837],[121.5172,-1.3964],[121.5257,-1.4014],[121.5405,-1.4031],[121.5481,-1.406],[121.5536,-1.4102],[121.5706,-1.425],[121.5793,-1.4204],[121.5872,-1.4182],[121.5896,-1.4142],[121.6085,-1.4086],[121.6146,-1.4062],[121.6287,-1.3958],[121.6306,-1.3929],[121.6402,-1.3893],[121.6504,-1.3788],[121.6537,-1.377],[121.6601,-1.3676],[121.6637,-1.3644],[121.6759,-1.3643],[121.6817,-1.3654],[121.6909,-1.3625],[121.7063,-1.362],[121.7115,-1.3629],[121.7243,-1.3589],[121.7268,-1.3573],[121.7313,-1.3493],[121.746,-1.3359],[121.7497,-1.3338],[121.7623,-1.3328],[121.7696,-1.3298],[121.7788,-1.3305],[121.7953,-1.3269],[121.804,-1.324],[121.8139,-1.3138],[121.8217,-1.3085],[121.8279,-1.3064],[121.8306,-1.3124],[121.8344,-1.3135],[121.8401,-1.3112],[121.8494,-1.3159],[121.8582,-1.3149],[121.8692,-1.3154],[121.8695,-1.3083],[121.8735,-1.3041],[121.883,-1.3029],[121.8891,-1.307],[121.8985,-1.3011],[121.909,-1.3009],[121.912,-1.2964],[121.9168,-1.2956],[121.9227,-1.2996],[121.9299,-1.2959],[121.932,-1.2879],[121.9419,-1.2841],[121.9497,-1.2829],[121.9536,-1.2858],[121.9629,-1.2856],[121.9631,-1.289],[121.9679,-1.2911],[121.9642,-1.2954],[121.9627,-1.3066],[121.9608,-1.3075],[121.9618,-1.3149],[121.964,-1.3201],[121.962,-1.3277],[121.9675,-1.3332],[121.9745,-1.3341],[121.9723,-1.3391],[121.9728,-1.342],[121.98,-1.3478],[121.9868,-1.3506],[121.9875,-1.3508],[121.9957,-1.3521],[122.0019,-1.3544],[122.0064,-1.3477],[122.0083,-1.3427],[122.0082,-1.3426],[122.0074,-1.3385],[122.0119,-1.3362],[122.0152,-1.3389],[122.0231,-1.3387],[122.0276,-1.3416],[122.0339,-1.3503],[122.0371,-1.3512],[122.0416,-1.3466],[122.0444,-1.3392],[122.0497,-1.3294],[122.0618,-1.3205],[122.0848,-1.3002],[122.0891,-1.2823],[122.0972,-1.2668],[122.1008,-1.249],[122.0956,-1.2392],[122.0963,-1.2369],[122.0927,-1.226],[122.0811,-1.2184],[122.0789,-1.2131],[122.08,-1.208],[122.0545,-1.1762],[122.0431,-1.14],[122.031,-1.12],[122.026,-1.131],[122.019,-1.1408],[122.0062,-1.1423],[122.0073,-1.133],[122.0031,-1.1329],[122.0032,-1.1284],[121.9969,-1.13],[121.9943,-1.1256],[121.9905,-1.1274],[121.9819,-1.1222],[121.9781,-1.1231],[121.9636,-1.1193],[121.9574,-1.115],[121.9559,-1.1105],[121.9492,-1.1135],[121.9498,-1.1253],[121.9477,-1.1275],[121.9413,-1.1269],[121.9363,-1.1288],[121.9354,-1.1239],[121.9253,-1.1116],[121.9259,-1.1034],[121.9195,-1.0942],[121.9143,-1.0926],[121.9089,-1.0883],[121.8981,-1.0902],[121.8906,-1.0842],[121.8854,-1.0719],[121.8776,-1.0723],[121.875,-1.0663],[121.8713,-1.0625],[121.8721,-1.0551],[121.8687,-1.0543],[121.8667,-1.046],[121.8683,-1.0407],[121.8635,-1.0358],[121.8625,-1.0307],[121.8586,-1.0279],[121.8596,-1.0197],[121.8555,-1.0154],[121.8539,-1.0026],[121.8559,-1.0004],[121.855,-0.9939],[121.8518,-0.9897],[121.8525,-0.9794],[121.8563,-0.9688],[121.8489,-0.9686],[121.8432,-0.9685]]}},{"type":"Feature","properties":{"mhid":"1332:404","alt_name":"KABUPATEN TOJO UNA-UNA","latitude":-1.2036,"longitude":121.48201,"sample_value":382},"geometry":{"type":"LineString","coordinates":[[121.7725,-0.738],[121.7665,-0.7399],[121.761,-0.7382],[121.7582,-0.7442],[121.7637,-0.7514],[121.7696,-0.754],[121.7695,-0.745],[121.7725,-0.738]]}},{"type":"Feature","properties":{"mhid":"1332:404","alt_name":"KABUPATEN TOJO UNA-UNA","latitude":-1.2036,"longitude":121.48201,"sample_value":382},"geometry":{"type":"LineString","coordinates":[[121.6296,-0.5928],[121.6308,-0.5907],[121.6265,-0.5825],[121.6234,-0.5885],[121.6262,-0.5941],[121.6296,-0.5928]]}},{"type":"Feature","properties":{"mhid":"1332:404","alt_name":"KABUPATEN TOJO UNA-UNA","latitude":-1.2036,"longitude":121.48201,"sample_value":382},"geometry":{"type":"LineString","coordinates":[[121.8721,-0.5123],[121.8659,-0.5165],[121.861,-0.5239],[121.8617,-0.5271],[121.8692,-0.5305],[121.8736,-0.5302],[121.8738,-0.5202],[121.8721,-0.5123]]}},{"type":"Feature","properties":{"mhid":"1332:404","alt_name":"KABUPATEN TOJO UNA-UNA","latitude":-1.2036,"longitude":121.48201,"sample_value":382},"geometry":{"type":"LineString","coordinates":[[121.922,-0.4398],[121.9188,-0.4409],[121.9235,-0.4493],[121.9269,-0.4435],[121.922,-0.4398]]}},{"type":"Feature","properties":{"mhid":"1332:404","alt_name":"KABUPATEN TOJO UNA-UNA","latitude":-1.2036,"longitude":121.48201,"sample_value":382},"geometry":{"type":"LineString","coordinates":[[122.0786,-0.4163],[122.0705,-0.4188],[122.0745,-0.4243],[122.0783,-0.421],[122.0786,-0.4163]]}},{"type":"Feature","properties":{"mhid":"1332:404","alt_name":"KABUPATEN TOJO UNA-UNA","latitude":-1.2036,"longitude":121.48201,"sample_value":382},"geometry":{"type":"LineString","coordinates":[[121.8069,-0.4187],[121.7937,-0.4222],[121.7931,-0.428],[121.7968,-0.4309],[121.8008,-0.4251],[121.8056,-0.4241],[121.8069,-0.4187]]}},{"type":"Feature","properties":{"mhid":"1332:404","alt_name":"KABUPATEN TOJO UNA-UNA","latitude":-1.2036,"longitude":121.48201,"sample_value":382},"geometry":{"type":"LineString","coordinates":[[121.7923,-0.4174],[121.7952,-0.4164],[121.7957,-0.4105],[121.791,-0.4097],[121.7886,-0.4158],[121.7923,-0.4174]]}},{"type":"Feature","properties":{"mhid":"1332:404","alt_name":"KABUPATEN TOJO UNA-UNA","latitude":-1.2036,"longitude":121.48201,"sample_value":382},"geometry":{"type":"LineString","coordinates":[[121.8669,-0.4092],[121.8538,-0.411],[121.8504,-0.409],[121.8429,-0.4121],[121.8332,-0.4195],[121.8272,-0.427],[121.8156,-0.4356],[121.8091,-0.4366],[121.8032,-0.4421],[121.7949,-0.4418],[121.7911,-0.4448],[121.7894,-0.4371],[121.7833,-0.4449],[121.7796,-0.4344],[121.7786,-0.4231],[121.7762,-0.4193],[121.7716,-0.4218],[121.7644,-0.4212],[121.7555,-0.4261],[121.755,-0.4343],[121.7614,-0.4419],[121.763,-0.4508],[121.7622,-0.4556],[121.7689,-0.461],[121.7637,-0.464],[121.7603,-0.4627],[121.7574,-0.4575],[121.7572,-0.4533],[121.754,-0.449],[121.749,-0.4523],[121.7384,-0.4487],[121.7303,-0.4534],[121.7313,-0.456],[121.7287,-0.4642],[121.7232,-0.4688],[121.7209,-0.4732],[121.7154,-0.4735],[121.7049,-0.4693],[121.6988,-0.4708],[121.7021,-0.4814],[121.6955,-0.4769],[121.6924,-0.4797],[121.6916,-0.4865],[121.6939,-0.4892],[121.691,-0.4949],[121.6867,-0.4953],[121.6837,-0.5005],[121.6845,-0.5038],[121.6813,-0.5099],[121.6772,-0.5131],[121.6723,-0.5135],[121.6705,-0.5187],[121.6698,-0.5316],[121.6652,-0.5353],[121.6615,-0.533],[121.6562,-0.5396],[121.6497,-0.5419],[121.6536,-0.5481],[121.6591,-0.5515],[121.6597,-0.5583],[121.6545,-0.5673],[121.6583,-0.5772],[121.6676,-0.5746],[121.6703,-0.575],[121.6802,-0.5612],[121.6866,-0.5615],[121.6922,-0.5636],[121.7002,-0.5631],[121.7081,-0.5517],[121.7052,-0.5462],[121.7094,-0.5386],[121.7137,-0.5354],[121.7128,-0.5293],[121.715,-0.5261],[121.7213,-0.5251],[121.7261,-0.519],[121.7318,-0.5092],[121.73,-0.5009],[121.7353,-0.4964],[121.7412,-0.4954],[121.7473,-0.5122],[121.752,-0.5082],[121.7625,-0.502],[121.7691,-0.5016],[121.7725,-0.4984],[121.7759,-0.5036],[121.7813,-0.5033],[121.7842,-0.5003],[121.7944,-0.5057],[121.799,-0.5061],[121.8056,-0.5122],[121.8068,-0.516],[121.8148,-0.5148],[121.8255,-0.521],[121.8282,-0.5313],[121.8335,-0.5311],[121.8348,-0.5273],[121.8421,-0.5217],[121.8484,-0.5227],[121.8599,-0.5217],[121.8626,-0.5186],[121.8625,-0.5126],[121.8554,-0.5034],[121.8528,-0.505],[121.8455,-0.5048],[121.8363,-0.4952],[121.845,-0.4965],[121.8502,-0.4934],[121.8586,-0.4962],[121.8631,-0.496],[121.8732,-0.5126],[121.8752,-0.5221],[121.8779,-0.5269],[121.8724,-0.5347],[121.8743,-0.5364],[121.8861,-0.5397],[121.8923,-0.5343],[121.8985,-0.5313],[121.9002,-0.5271],[121.9058,-0.5282],[121.9108,-0.524],[121.912,-0.5207],[121.9178,-0.516],[121.9191,-0.5114],[121.9158,-0.5096],[121.9151,-0.5048],[121.9107,-0.4973],[121.9146,-0.4956],[121.9158,-0.4872],[121.9222,-0.4911],[121.9211,-0.4848],[121.916,-0.4816],[121.9223,-0.4766],[121.9177,-0.4711],[121.9139,-0.4546],[121.9176,-0.4426],[121.911,-0.4401],[121.9042,-0.4345],[121.9033,-0.4293],[121.8968,-0.4249],[121.8915,-0.4262],[121.8852,-0.4248],[121.8809,-0.4204],[121.8751,-0.42],[121.8717,-0.4131],[121.8669,-0.4092]]}},{"type":"Feature","properties":{"mhid":"1332:404","alt_name":"KABUPATEN TOJO UNA-UNA","latitude":-1.2036,"longitude":121.48201,"sample_value":382},"geometry":{"type":"LineString","coordinates":[[121.8179,-0.4081],[121.8262,-0.4003],[121.8269,-0.3966],[121.8137,-0.3903],[121.8148,-0.3955],[121.8123,-0.4018],[121.813,-0.4074],[121.8179,-0.4081]]}},{"type":"Feature","properties":{"mhid":"1332:404","alt_name":"KABUPATEN TOJO UNA-UNA","latitude":-1.2036,"longitude":121.48201,"sample_value":382},"geometry":{"type":"LineString","coordinates":[[121.8531,-0.3594],[121.8481,-0.3555],[121.8436,-0.3562],[121.8438,-0.3632],[121.8512,-0.3622],[121.8531,-0.3594]]}},{"type":"Feature","properties":{"mhid":"1332:404","alt_name":"KABUPATEN TOJO UNA-UNA","latitude":-1.2036,"longitude":121.48201,"sample_value":382},"geometry":{"type":"LineString","coordinates":[[121.8774,-0.35],[121.8676,-0.3533],[121.857,-0.3546],[121.8533,-0.3602],[121.8567,-0.364],[121.8669,-0.3622],[121.8712,-0.356],[121.8774,-0.35]]}},{"type":"Feature","properties":{"mhid":"1332:404","alt_name":"KABUPATEN TOJO UNA-UNA","latitude":-1.2036,"longitude":121.48201,"sample_value":382},"geometry":{"type":"LineString","coordinates":[[121.9483,-0.324],[121.9366,-0.325],[121.931,-0.3296],[121.9275,-0.3301],[121.9249,-0.3357],[121.9303,-0.339],[121.9323,-0.3448],[121.9378,-0.3418],[121.9458,-0.3421],[121.9462,-0.337],[121.9509,-0.3374],[121.9477,-0.3434],[121.9512,-0.3493],[121.958,-0.3474],[121.9623,-0.3539],[121.956,-0.3579],[121.9535,-0.3535],[121.949,-0.3535],[121.9414,-0.3623],[121.9387,-0.358],[121.9353,-0.3575],[121.9334,-0.3619],[121.935,-0.3666],[121.927,-0.3668],[121.9276,-0.3624],[121.9223,-0.36],[121.9263,-0.3556],[121.9216,-0.3503],[121.9152,-0.3503],[121.913,-0.3416],[121.9086,-0.3423],[121.9038,-0.3404],[121.9049,-0.3362],[121.8996,-0.3353],[121.8977,-0.341],[121.8886,-0.3411],[121.8814,-0.3457],[121.8796,-0.3496],[121.8724,-0.3579],[121.8757,-0.3604],[121.8833,-0.3579],[121.8843,-0.3606],[121.8791,-0.364],[121.8743,-0.365],[121.8719,-0.3715],[121.8688,-0.3671],[121.8622,-0.3694],[121.8591,-0.3784],[121.859,-0.3829],[121.8631,-0.3896],[121.8664,-0.3857],[121.8707,-0.3898],[121.8761,-0.3916],[121.8703,-0.3954],[121.8727,-0.3989],[121.8729,-0.4071],[121.8753,-0.4125],[121.8798,-0.4145],[121.8855,-0.4221],[121.8914,-0.4234],[121.8952,-0.4207],[121.901,-0.426],[121.9057,-0.4284],[121.9061,-0.4342],[121.9188,-0.4393],[121.9198,-0.4348],[121.9271,-0.4362],[121.9323,-0.431],[121.9372,-0.4316],[121.9425,-0.4261],[121.9484,-0.4294],[121.9481,-0.4231],[121.9553,-0.4185],[121.9692,-0.4182],[121.9796,-0.4245],[121.9817,-0.42],[121.993,-0.4248],[122.0009,-0.4212],[122.0059,-0.4161],[122.0062,-0.4062],[122.0094,-0.4085],[122.0113,-0.415],[122.0172,-0.4194],[122.025,-0.4152],[122.0294,-0.4152],[122.0307,-0.4203],[122.0415,-0.4261],[122.0462,-0.425],[122.055,-0.4188],[122.0587,-0.4129],[122.0553,-0.411],[122.0635,-0.4052],[122.0638,-0.3998],[122.0677,-0.3954],[122.0577,-0.3867],[122.0587,-0.3798],[122.0615,-0.3722],[122.0586,-0.3683],[122.0595,-0.364],[122.0584,-0.3531],[122.06,-0.3491],[122.0538,-0.3478],[122.0513,-0.3452],[122.0438,-0.3466],[122.0411,-0.3387],[122.0361,-0.3449],[122.0398,-0.3513],[122.039,-0.3596],[122.0306,-0.3581],[122.0258,-0.3522],[122.0195,-0.3576],[122.0227,-0.3591],[122.0226,-0.3668],[122.0181,-0.3703],[122.0114,-0.3687],[122.0094,-0.3606],[122.0051,-0.3601],[121.998,-0.3523],[121.9951,-0.355],[121.9892,-0.3535],[121.9862,-0.3548],[121.9831,-0.3508],[121.9896,-0.3469],[121.9914,-0.3429],[121.9818,-0.3428],[121.9745,-0.3467],[121.9729,-0.3349],[121.9692,-0.3267],[121.9635,-0.328],[121.9605,-0.3318],[121.9559,-0.327],[121.9483,-0.324]]}},{"type":"Feature","properties":{"mhid":"1332:404","alt_name":"KABUPATEN TOJO UNA-UNA","latitude":-1.2036,"longitude":121.48201,"sample_value":382},"geometry":{"type":"LineString","coordinates":[[121.9492,-0.3132],[121.9435,-0.3155],[121.9434,-0.3194],[121.9484,-0.3202],[121.9492,-0.3132]]}},{"type":"Feature","properties":{"mhid":"1332:404","alt_name":"KABUPATEN TOJO UNA-UNA","latitude":-1.2036,"longitude":121.48201,"sample_value":382},"geometry":{"type":"LineString","coordinates":[[122.2384,-0.3016],[122.2323,-0.3017],[122.2352,-0.3089],[122.2379,-0.3071],[122.2384,-0.3016]]}},{"type":"Feature","properties":{"mhid":"1332:404","alt_name":"KABUPATEN TOJO UNA-UNA","latitude":-1.2036,"longitude":121.48201,"sample_value":382},"geometry":{"type":"LineString","coordinates":[[122.0924,-0.275],[122.0907,-0.2708],[122.0864,-0.2766],[122.0808,-0.292],[122.087,-0.2908],[122.0857,-0.2984],[122.077,-0.3046],[122.0698,-0.3032],[122.0735,-0.3178],[122.0747,-0.3253],[122.0676,-0.3284],[122.0734,-0.3379],[122.0758,-0.3445],[122.0712,-0.3445],[122.0675,-0.3486],[122.0645,-0.3475],[122.0614,-0.3529],[122.062,-0.3642],[122.0667,-0.3781],[122.0643,-0.3807],[122.0693,-0.3868],[122.0672,-0.391],[122.0704,-0.3934],[122.0839,-0.3922],[122.0813,-0.3997],[122.0768,-0.4009],[122.0728,-0.3982],[122.0683,-0.3998],[122.0651,-0.4091],[122.0684,-0.4135],[122.0797,-0.4177],[122.0802,-0.4259],[122.0849,-0.4267],[122.0888,-0.4373],[122.0894,-0.4424],[122.0962,-0.4465],[122.0984,-0.4446],[122.0918,-0.4375],[122.0956,-0.4353],[122.0983,-0.4304],[122.1041,-0.4311],[122.1001,-0.4202],[122.0955,-0.4181],[122.0911,-0.4109],[122.0941,-0.4083],[122.0945,-0.3992],[122.0974,-0.3985],[122.1079,-0.4043],[122.1111,-0.4094],[122.1187,-0.4107],[122.1173,-0.4149],[122.1216,-0.4205],[122.1267,-0.4216],[122.1324,-0.4146],[122.1426,-0.4167],[122.1415,-0.4076],[122.1458,-0.4069],[122.1482,-0.4004],[122.154,-0.3972],[122.154,-0.3927],[122.1499,-0.3855],[122.1492,-0.373],[122.1476,-0.371],[122.1401,-0.3748],[122.1407,-0.3687],[122.1458,-0.3617],[122.1456,-0.3552],[122.1436,-0.3459],[122.1379,-0.3454],[122.1341,-0.3488],[122.1278,-0.3493],[122.1235,-0.3409],[122.1131,-0.3418],[122.1109,-0.339],[122.1146,-0.3284],[122.1098,-0.3293],[122.1065,-0.3249],[122.1107,-0.3178],[122.1083,-0.3055],[122.1019,-0.2972],[122.1023,-0.2902],[122.1003,-0.2854],[122.0958,-0.2818],[122.0924,-0.275]]}},{"type":"Feature","properties":{"mhid":"1332:404","alt_name":"KABUPATEN TOJO UNA-UNA","latitude":-1.2036,"longitude":121.48201,"sample_value":382},"geometry":{"type":"LineString","coordinates":[[122.1514,-0.2631],[122.1482,-0.2674],[122.1512,-0.2708],[122.1544,-0.2689],[122.1514,-0.2631]]}},{"type":"Feature","properties":{"mhid":"1332:404","alt_name":"KABUPATEN TOJO UNA-UNA","latitude":-1.2036,"longitude":121.48201,"sample_value":382},"geometry":{"type":"LineString","coordinates":[[122.1283,-0.2681],[122.1268,-0.2589],[122.1173,-0.2531],[122.1121,-0.2563],[122.1131,-0.2672],[122.1154,-0.2696],[122.1225,-0.2712],[122.1283,-0.2681]]}},{"type":"Feature","properties":{"mhid":"1332:404","alt_name":"KABUPATEN TOJO UNA-UNA","latitude":-1.2036,"longitude":121.48201,"sample_value":382},"geometry":{"type":"LineString","coordinates":[[122.0891,-0.2415],[122.0868,-0.241],[122.073,-0.2472],[122.0655,-0.2513],[122.0604,-0.2505],[122.0478,-0.2558],[122.0432,-0.2561],[122.0359,-0.2629],[122.0291,-0.2761],[122.0442,-0.2777],[122.0542,-0.2736],[122.0643,-0.267],[122.0691,-0.2617],[122.0767,-0.267],[122.0833,-0.2658],[122.0908,-0.2587],[122.094,-0.2539],[122.0953,-0.2478],[122.0891,-0.2415]]}},{"type":"Feature","properties":{"mhid":"1332:404","alt_name":"KABUPATEN TOJO UNA-UNA","latitude":-1.2036,"longitude":121.48201,"sample_value":382},"geometry":{"type":"LineString","coordinates":[[122.2163,-0.2625],[122.2175,-0.2545],[122.2149,-0.2496],[122.2102,-0.2496],[122.2023,-0.246],[122.1971,-0.2482],[122.1938,-0.2563],[122.1881,-0.2504],[122.1902,-0.2425],[122.1996,-0.2335],[122.2081,-0.22],[122.211,-0.2189],[122.2087,-0.2103],[122.2039,-0.2126],[122.1953,-0.2114],[122.1911,-0.2126],[122.1838,-0.2182],[122.1746,-0.2225],[122.164,-0.2325],[122.1561,-0.236],[122.1539,-0.2423],[122.1475,-0.2437],[122.1463,-0.249],[122.1504,-0.2519],[122.1559,-0.2609],[122.1649,-0.2566],[122.1659,-0.253],[122.1749,-0.2495],[122.1782,-0.2511],[122.1734,-0.2561],[122.1746,-0.2651],[122.1813,-0.2796],[122.1851,-0.2778],[122.1999,-0.2756],[122.2067,-0.2824],[122.2087,-0.2877],[122.2133,-0.2915],[122.2173,-0.2845],[122.2289,-0.282],[122.2317,-0.2831],[122.2396,-0.2806],[122.2344,-0.2887],[122.2296,-0.2932],[122.2351,-0.2949],[122.2408,-0.2903],[122.2451,-0.2922],[122.2452,-0.2821],[122.2478,-0.2783],[122.2463,-0.2748],[122.2403,-0.2729],[122.238,-0.2747],[122.2317,-0.2714],[122.2353,-0.265],[122.2332,-0.2584],[122.2298,-0.2563],[122.2208,-0.2626],[122.2163,-0.2625]]}},{"type":"Feature","properties":{"mhid":"1332:404","alt_name":"KABUPATEN TOJO UNA-UNA","latitude":-1.2036,"longitude":121.48201,"sample_value":382},"geometry":{"type":"LineString","coordinates":[[122.2426,-0.2072],[122.2401,-0.2059],[122.234,-0.2116],[122.2277,-0.2141],[122.2317,-0.2252],[122.231,-0.2301],[122.2328,-0.2378],[122.2433,-0.2464],[122.248,-0.2521],[122.2494,-0.2582],[122.2568,-0.2556],[122.2638,-0.2635],[122.2761,-0.2688],[122.281,-0.2679],[122.2802,-0.2598],[122.2842,-0.2569],[122.2905,-0.2689],[122.2999,-0.2621],[122.3025,-0.2693],[122.3078,-0.2746],[122.3108,-0.2742],[122.3191,-0.2816],[122.3223,-0.289],[122.3306,-0.2941],[122.3349,-0.2918],[122.3402,-0.2861],[122.3459,-0.291],[122.3424,-0.3006],[122.3445,-0.3051],[122.3434,-0.3109],[122.3452,-0.3163],[122.3498,-0.3239],[122.3556,-0.3265],[122.3589,-0.3333],[122.3581,-0.3406],[122.3645,-0.3508],[122.3789,-0.3646],[122.3838,-0.3628],[122.3814,-0.3562],[122.3829,-0.3475],[122.3713,-0.3357],[122.368,-0.329],[122.3741,-0.3151],[122.3787,-0.311],[122.3726,-0.3029],[122.3738,-0.3003],[122.3832,-0.2955],[122.3835,-0.2921],[122.3772,-0.2879],[122.3825,-0.2841],[122.3796,-0.2738],[122.3677,-0.273],[122.3582,-0.2661],[122.3552,-0.2606],[122.3565,-0.2566],[122.3475,-0.258],[122.3372,-0.2478],[122.3328,-0.248],[122.3205,-0.2441],[122.3183,-0.2409],[122.3102,-0.2353],[122.301,-0.2427],[122.2959,-0.2428],[122.2912,-0.2474],[122.2875,-0.2427],[122.2883,-0.2369],[122.2869,-0.2297],[122.2826,-0.2257],[122.2755,-0.2237],[122.2722,-0.2264],[122.2711,-0.2308],[122.262,-0.2361],[122.2605,-0.2303],[122.262,-0.2216],[122.2568,-0.2205],[122.2517,-0.222],[122.2478,-0.2192],[122.2488,-0.2154],[122.247,-0.2106],[122.2426,-0.2072]]}},{"type":"Feature","properties":{"mhid":"1332:404","alt_name":"KABUPATEN TOJO UNA-UNA","latitude":-1.2036,"longitude":121.48201,"sample_value":382},"geometry":{"type":"LineString","coordinates":[[121.6336,-0.1266],[121.6277,-0.1222],[121.625,-0.1267],[121.6167,-0.1276],[121.6083,-0.1313],[121.6042,-0.1283],[121.5948,-0.1349],[121.591,-0.1361],[121.5836,-0.1444],[121.5783,-0.1486],[121.5718,-0.1564],[121.5663,-0.1576],[121.5638,-0.1605],[121.5622,-0.1682],[121.5648,-0.18],[121.5745,-0.1912],[121.5782,-0.1985],[121.5849,-0.2045],[121.5919,-0.2071],[121.5926,-0.2107],[121.6032,-0.2141],[121.616,-0.2162],[121.6185,-0.2108],[121.6285,-0.2086],[121.6318,-0.2103],[121.6397,-0.2064],[121.6422,-0.2011],[121.6466,-0.1989],[121.6524,-0.1918],[121.6565,-0.182],[121.6575,-0.166],[121.6561,-0.1602],[121.6578,-0.1517],[121.6539,-0.1435],[121.6541,-0.1367],[121.6486,-0.129],[121.6424,-0.1261],[121.6363,-0.1279],[121.6336,-0.1266]]}},{"type":"Feature","properties":{"mhid":"1332:405","alt_name":"KABUPATEN SIGI","latitude":-1.385,"longitude":119.96694,"sample_value":706},"geometry":{"type":"LineString","coordinates":[[120.0233,-0.8827],[120.0169,-0.8898],[120.0173,-0.896],[120.0106,-0.8953],[120.009,-0.8989],[120.0034,-0.9026],[119.9959,-0.9042],[119.9765,-0.9132],[119.964,-0.9129],[119.9592,-0.9161],[119.948,-0.9131],[119.9293,-0.9208],[119.9372,-0.9409],[119.9332,-0.9439],[119.9233,-0.9442],[119.905,-0.9429],[119.8859,-0.932],[119.8815,-0.9323],[119.8806,-0.9266],[119.8759,-0.9226],[119.8622,-0.9253],[119.8626,-0.9321],[119.8474,-0.9359],[119.84,-0.9393],[119.8309,-0.9412],[119.8278,-0.9111],[119.8327,-0.9098],[119.8325,-0.9048],[119.8272,-0.9046],[119.8247,-0.8817],[119.8223,-0.8741],[119.8183,-0.8738],[119.8117,-0.8678],[119.8005,-0.8691],[119.796,-0.8713],[119.7863,-0.8832],[119.7823,-0.8903],[119.7814,-0.8976],[119.7824,-0.9033],[119.7653,-0.9089],[119.7572,-0.9078],[119.7516,-0.9099],[119.7456,-0.919],[119.7422,-0.9172],[119.7338,-0.9063],[119.731,-0.9005],[119.7238,-0.9082],[119.7118,-0.9268],[119.7054,-0.9354],[119.695,-0.9392],[119.6894,-0.9383],[119.6725,-0.9409],[119.6656,-0.9481],[119.6609,-0.9511],[119.6543,-0.9512],[119.6508,-0.9566],[119.6502,-0.9632],[119.6479,-0.9695],[119.6506,-0.9799],[119.6505,-0.9883],[119.6572,-0.9878],[119.6626,-0.9901],[119.6652,-0.9947],[119.6715,-0.9985],[119.6747,-1.0082],[119.6829,-1.0145],[119.704,-1.0197],[119.7124,-1.0181],[119.7121,-1.012],[119.7195,-1.005],[119.7235,-1.0074],[119.7291,-1.0168],[119.737,-1.0095],[119.7504,-1.0073],[119.7578,-1.0132],[119.7603,-1.0192],[119.7612,-1.0269],[119.7673,-1.03],[119.7741,-1.0359],[119.7795,-1.0424],[119.784,-1.0573],[119.7847,-1.0675],[119.7907,-1.0771],[119.7959,-1.079],[119.7965,-1.084],[119.8042,-1.0886],[119.8017,-1.0971],[119.799,-1.1017],[119.7959,-1.1207],[119.7959,-1.1309],[119.8061,-1.1345],[119.8052,-1.1427],[119.7988,-1.1462],[119.7936,-1.1512],[119.7936,-1.1559],[119.7894,-1.1644],[119.7912,-1.1705],[119.7868,-1.1724],[119.7878,-1.1823],[119.787,-1.1854],[119.7797,-1.1895],[119.7774,-1.1937],[119.77,-1.198],[119.7747,-1.2097],[119.7702,-1.2165],[119.7665,-1.2194],[119.7694,-1.2268],[119.7676,-1.2331],[119.7557,-1.2377],[119.7512,-1.241],[119.7449,-1.2553],[119.7429,-1.2637],[119.7482,-1.2754],[119.7507,-1.2854],[119.7505,-1.2907],[119.7428,-1.3156],[119.7435,-1.3224],[119.7376,-1.3287],[119.7325,-1.3372],[119.731,-1.3433],[119.728,-1.3475],[119.7292,-1.3618],[119.7382,-1.3769],[119.7474,-1.3839],[119.75,-1.3888],[119.7545,-1.404],[119.7636,-1.4235],[119.7548,-1.4255],[119.7511,-1.4284],[119.7405,-1.429],[119.7279,-1.4203],[119.7215,-1.4288],[119.7174,-1.4326],[119.71,-1.434],[119.697,-1.4525],[119.7006,-1.4578],[119.6926,-1.467],[119.6933,-1.4727],[119.6866,-1.4774],[119.6848,-1.4853],[119.6801,-1.4903],[119.6805,-1.4945],[119.6759,-1.5009],[119.6693,-1.5142],[119.6687,-1.5211],[119.6664,-1.5256],[119.6666,-1.5305],[119.6731,-1.5348],[119.671,-1.5431],[119.6782,-1.5506],[119.6849,-1.5533],[119.6889,-1.558],[119.692,-1.5648],[119.7013,-1.5661],[119.7041,-1.5737],[119.71,-1.5768],[119.7097,-1.5824],[119.7153,-1.5922],[119.7207,-1.5971],[119.7267,-1.5992],[119.728,-1.6023],[119.7329,-1.6043],[119.7356,-1.6134],[119.729,-1.622],[119.7288,-1.627],[119.7262,-1.635],[119.7291,-1.6449],[119.7362,-1.6434],[119.7502,-1.6431],[119.751,-1.6526],[119.7593,-1.6585],[119.7595,-1.6679],[119.7647,-1.6792],[119.7739,-1.6863],[119.7766,-1.6872],[119.7796,-1.693],[119.7794,-1.7003],[119.7769,-1.7037],[119.7765,-1.7091],[119.7875,-1.7189],[119.7899,-1.7189],[119.7943,-1.7246],[119.7925,-1.7303],[119.8,-1.7415],[119.8045,-1.7437],[119.809,-1.7413],[119.8146,-1.7493],[119.8146,-1.755],[119.8201,-1.7581],[119.8224,-1.763],[119.8269,-1.7674],[119.836,-1.7702],[119.8435,-1.7755],[119.8566,-1.77],[119.8614,-1.7724],[119.8677,-1.7718],[119.8713,-1.7809],[119.866,-1.7879],[119.8644,-1.7961],[119.8611,-1.7995],[119.8591,-1.8069],[119.8627,-1.8168],[119.858,-1.8226],[119.864,-1.8384],[119.8683,-1.8414],[119.8672,-1.8499],[119.8752,-1.8604],[119.8733,-1.8654],[119.8635,-1.8729],[119.8572,-1.8758],[119.8591,-1.8802],[119.8647,-1.8807],[119.8691,-1.8904],[119.8671,-1.8987],[119.8657,-1.9118],[119.8606,-1.9163],[119.8631,-1.9203],[119.8605,-1.928],[119.8623,-1.9338],[119.8708,-1.9382],[119.8687,-1.9452],[119.8658,-1.9492],[119.8674,-1.9522],[119.8646,-1.9573],[119.8647,-1.9642],[119.8676,-1.9675],[119.8676,-1.9847],[119.8704,-1.9998],[119.8682,-2.0082],[119.8703,-2.0181],[119.8734,-2.0211],[119.8682,-2.0275],[119.8716,-2.0345],[119.878,-2.037],[119.8827,-2.0449],[119.8911,-2.0497],[119.8941,-2.0493],[119.8968,-2.054],[119.901,-2.0554],[119.9091,-2.0534],[119.9147,-2.0448],[119.9207,-2.0337],[119.9283,-2.0371],[119.9366,-2.0352],[119.9399,-2.0303],[119.945,-2.0283],[119.9438,-2.0224],[119.9445,-2.0155],[119.9523,-2.0094],[119.955,-2.0043],[119.9638,-2.0003],[119.9641,-1.9927],[119.9658,-1.9837],[119.9689,-1.9767],[119.9728,-1.9748],[119.9849,-1.973],[119.9892,-1.9673],[119.9924,-1.9657],[120.01,-1.9644],[120.0152,-1.9697],[120.0208,-1.9677],[120.0303,-1.971],[120.0366,-1.9745],[120.0405,-1.9803],[120.0485,-1.983],[120.0535,-1.9822],[120.0853,-1.9797],[120.099,-1.9857],[120.1065,-1.965],[120.1009,-1.9588],[120.1002,-1.9501],[120.1015,-1.9435],[120.098,-1.9368],[120.0982,-1.9301],[120.1032,-1.9166],[120.1026,-1.9021],[120.1046,-1.8974],[120.1111,-1.8956],[120.1159,-1.8987],[120.1206,-1.9042],[120.124,-1.9057],[120.1313,-1.8964],[120.144,-1.8879],[120.1447,-1.8857],[120.138,-1.8727],[120.1353,-1.8706],[120.1359,-1.865],[120.1333,-1.8595],[120.127,-1.8554],[120.1276,-1.8515],[120.1237,-1.8458],[120.1192,-1.844],[120.121,-1.8375],[120.1119,-1.8337],[120.1044,-1.8289],[120.1006,-1.8236],[120.1042,-1.8212],[120.108,-1.8127],[120.1076,-1.8031],[120.1115,-1.7974],[120.1214,-1.7988],[120.1608,-1.789],[120.1763,-1.7832],[120.177,-1.777],[120.1721,-1.771],[120.1692,-1.7649],[120.1671,-1.7564],[120.1701,-1.7451],[120.1679,-1.7382],[120.1612,-1.7315],[120.1563,-1.7285],[120.1514,-1.7211],[120.1562,-1.7152],[120.1487,-1.6995],[120.1485,-1.6957],[120.1516,-1.6831],[120.1501,-1.6775],[120.1449,-1.6673],[120.1444,-1.6595],[120.1427,-1.6562],[120.1359,-1.6508],[120.1377,-1.6413],[120.1369,-1.629],[120.1396,-1.6272],[120.1456,-1.6188],[120.1446,-1.6083],[120.1408,-1.6041],[120.1439,-1.5749],[120.1397,-1.5653],[120.1385,-1.5597],[120.1345,-1.5571],[120.1231,-1.5589],[120.1179,-1.5641],[120.1134,-1.5622],[120.1053,-1.563],[120.0988,-1.5569],[120.102,-1.5492],[120.1061,-1.543],[120.1067,-1.5355],[120.1104,-1.5296],[120.1094,-1.5239],[120.113,-1.5178],[120.1203,-1.516],[120.1272,-1.5043],[120.1306,-1.5024],[120.1356,-1.504],[120.1371,-1.4958],[120.1429,-1.4935],[120.1511,-1.479],[120.1596,-1.4725],[120.1652,-1.4625],[120.17,-1.4577],[120.1748,-1.4565],[120.1818,-1.4483],[120.1872,-1.4516],[120.1943,-1.45],[120.203,-1.4553],[120.2142,-1.4532],[120.2192,-1.4562],[120.2237,-1.4537],[120.2267,-1.446],[120.2314,-1.442],[120.2395,-1.4381],[120.2461,-1.4185],[120.2501,-1.4129],[120.2538,-1.4118],[120.2604,-1.4158],[120.2687,-1.4149],[120.2777,-1.4069],[120.2791,-1.3984],[120.2755,-1.3955],[120.2742,-1.39],[120.2713,-1.3859],[120.282,-1.3844],[120.2876,-1.3794],[120.2865,-1.3709],[120.2879,-1.3645],[120.2825,-1.3585],[120.277,-1.3468],[120.2715,-1.3414],[120.2635,-1.3382],[120.2585,-1.3303],[120.258,-1.3226],[120.2403,-1.311],[120.2303,-1.2995],[120.2205,-1.2934],[120.2148,-1.2883],[120.2053,-1.2867],[120.1977,-1.2809],[120.1906,-1.278],[120.1858,-1.2735],[120.1932,-1.2694],[120.209,-1.2636],[120.2163,-1.2545],[120.2249,-1.2511],[120.2198,-1.2435],[120.2225,-1.2338],[120.232,-1.2245],[120.2374,-1.2276],[120.2483,-1.2308],[120.26,-1.2302],[120.2703,-1.2316],[120.2741,-1.2279],[120.2787,-1.2166],[120.284,-1.2115],[120.2898,-1.2017],[120.2979,-1.1987],[120.2994,-1.1959],[120.3155,-1.1901],[120.3236,-1.1939],[120.3282,-1.1868],[120.3358,-1.189],[120.3421,-1.1869],[120.3411,-1.1843],[120.3414,-1.1736],[120.3456,-1.1632],[120.3535,-1.1552],[120.3576,-1.1472],[120.349,-1.1445],[120.3445,-1.1481],[120.3412,-1.1549],[120.3385,-1.1544],[120.3369,-1.1486],[120.3319,-1.1416],[120.3269,-1.137],[120.3187,-1.1363],[120.3124,-1.1343],[120.3062,-1.1356],[120.2962,-1.133],[120.2904,-1.1335],[120.2849,-1.1376],[120.2831,-1.1421],[120.2779,-1.1431],[120.272,-1.1513],[120.2672,-1.1518],[120.2611,-1.1423],[120.2561,-1.1353],[120.2478,-1.1324],[120.2392,-1.1331],[120.2326,-1.1298],[120.2283,-1.1256],[120.2252,-1.1159],[120.2272,-1.1119],[120.2245,-1.1046],[120.2255,-1.1004],[120.2307,-1.0921],[120.2266,-1.0814],[120.2186,-1.0731],[120.2189,-1.0654],[120.2099,-1.0618],[120.2027,-1.0543],[120.1984,-1.0546],[120.1961,-1.0626],[120.1922,-1.0646],[120.1838,-1.0639],[120.18,-1.0613],[120.173,-1.0535],[120.1663,-1.0477],[120.1583,-1.0525],[120.1513,-1.0493],[120.1514,-1.045],[120.1473,-1.0428],[120.139,-1.0428],[120.1348,-1.0446],[120.1289,-1.0444],[120.1194,-1.0322],[120.1185,-1.024],[120.1153,-1.0228],[120.114,-1.017],[120.1057,-1.0176],[120.0982,-1.0255],[120.0941,-1.0196],[120.0796,-1.0157],[120.0803,-1.011],[120.0736,-1.0083],[120.0777,-0.9996],[120.0761,-0.9975],[120.0788,-0.9903],[120.0744,-0.9851],[120.0733,-0.9773],[120.0691,-0.9747],[120.0662,-0.9699],[120.0573,-0.9665],[120.0604,-0.9602],[120.0653,-0.954],[120.0666,-0.943],[120.069,-0.9379],[120.0681,-0.9312],[120.0697,-0.923],[120.0682,-0.9204],[120.0721,-0.9148],[120.0697,-0.9105],[120.0653,-0.9097],[120.0511,-0.9018],[120.0469,-0.8973],[120.0362,-0.8928],[120.0314,-0.8927],[120.0233,-0.8827]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.4667,-2.2084],[123.4631,-2.2164],[123.4483,-2.2219],[123.4434,-2.2217],[123.4384,-2.2246],[123.435,-2.2229],[123.4091,-2.234],[123.4081,-2.2285],[123.4019,-2.2187],[123.3983,-2.2087],[123.3964,-2.218],[123.3969,-2.224],[123.4006,-2.2302],[123.4012,-2.2358],[123.4043,-2.2413],[123.4118,-2.2415],[123.4212,-2.2382],[123.4363,-2.2305],[123.4516,-2.2261],[123.4671,-2.2189],[123.4716,-2.2133],[123.4715,-2.208],[123.4667,-2.2084]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.1471,-2.2235],[123.1519,-2.2182],[123.1564,-2.2103],[123.1603,-2.2071],[123.1608,-2.199],[123.1558,-2.1964],[123.1484,-2.202],[123.1447,-2.21],[123.1432,-2.2219],[123.1471,-2.2235]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.6681,-2.1629],[123.6642,-2.1607],[123.668,-2.1744],[123.6706,-2.1789],[123.6797,-2.1753],[123.6812,-2.1636],[123.6779,-2.1603],[123.6681,-2.1629]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.6366,-2.1256],[123.6315,-2.1279],[123.6354,-2.1333],[123.6399,-2.1329],[123.6398,-2.1289],[123.6366,-2.1256]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.4422,-2.1198],[123.44,-2.1265],[123.4418,-2.1283],[123.449,-2.1248],[123.4422,-2.1198]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.751,-2.103],[123.751,-2.1059],[123.7579,-2.1083],[123.7627,-2.1067],[123.7594,-2.1027],[123.7532,-2.1063],[123.751,-2.103]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.923,-2.0998],[123.9229,-2.1043],[123.9257,-2.1097],[123.9317,-2.1097],[123.9327,-2.1018],[123.923,-2.0998]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.5514,-2.0942],[123.5442,-2.0959],[123.543,-2.0999],[123.5505,-2.1026],[123.5539,-2.1059],[123.5614,-2.1056],[123.563,-2.1016],[123.56,-2.095],[123.5514,-2.0942]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.5948,-2.058],[123.5903,-2.0615],[123.5943,-2.0651],[123.5966,-2.0601],[123.5948,-2.058]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.7992,-2.0107],[123.7957,-2.0089],[123.7896,-2.0103],[123.7891,-2.0133],[123.7942,-2.0166],[123.7992,-2.0107]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.8631,-2.0088],[123.8597,-2.0103],[123.8568,-2.0164],[123.8557,-2.0268],[123.8529,-2.0362],[123.8495,-2.042],[123.8516,-2.0483],[123.8452,-2.0581],[123.8448,-2.0645],[123.8477,-2.0688],[123.8563,-2.0706],[123.8621,-2.0659],[123.8658,-2.0716],[123.8794,-2.0835],[123.8892,-2.0877],[123.8973,-2.0823],[123.8966,-2.0765],[123.8917,-2.068],[123.8896,-2.0622],[123.8821,-2.0496],[123.8786,-2.0371],[123.8809,-2.0348],[123.8799,-2.029],[123.8685,-2.0197],[123.8631,-2.0088]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.7674,-2.0075],[123.7647,-2.013],[123.7634,-2.0239],[123.7583,-2.0246],[123.7564,-2.0375],[123.7573,-2.0429],[123.7603,-2.0471],[123.761,-2.0525],[123.7639,-2.0571],[123.7805,-2.0427],[123.7792,-2.0381],[123.7841,-2.0304],[123.7835,-2.0206],[123.7767,-2.0129],[123.7708,-2.0109],[123.7674,-2.0075]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.901,-2.0038],[123.8996,-2.0024],[123.8896,-2.0079],[123.8932,-2.0116],[123.8891,-2.0155],[123.8894,-2.0189],[123.8948,-2.0237],[123.9012,-2.0187],[123.906,-2.007],[123.901,-2.0038]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.7862,-2.0013],[123.7784,-2.0021],[123.7782,-2.0056],[123.7845,-2.0046],[123.7862,-2.0013]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.4885,-1.9819],[123.4862,-1.9796],[123.4819,-1.982],[123.4768,-1.9962],[123.4827,-1.9969],[123.4829,-1.9888],[123.4878,-1.9888],[123.4885,-1.9819]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.4827,-1.9367],[123.4717,-1.9391],[123.4654,-1.9463],[123.4658,-1.9499],[123.4693,-1.953],[123.4758,-1.9531],[123.4781,-1.95],[123.4884,-1.9473],[123.4894,-1.9422],[123.4865,-1.9367],[123.4827,-1.9367]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.5372,-1.9126],[123.5317,-1.9151],[123.5285,-1.9238],[123.5315,-1.929],[123.5348,-1.9187],[123.5413,-1.9223],[123.5423,-1.9152],[123.5372,-1.9126]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.6418,-1.9092],[123.6394,-1.9047],[123.6348,-1.9081],[123.6356,-1.9117],[123.6418,-1.9092]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.7711,-1.9035],[123.7688,-1.9212],[123.7675,-1.9231],[123.7697,-1.9338],[123.7729,-1.9339],[123.772,-1.9274],[123.7767,-1.9218],[123.7732,-1.9104],[123.7745,-1.9068],[123.7711,-1.9035]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.7386,-1.946],[123.7386,-1.9398],[123.7363,-1.9358],[123.7363,-1.9275],[123.7386,-1.9259],[123.7386,-1.9157],[123.7367,-1.9105],[123.732,-1.9093],[123.7315,-1.8983],[123.7245,-1.8997],[123.7212,-1.9072],[123.7162,-1.9118],[123.7127,-1.9172],[123.7081,-1.9209],[123.7077,-1.9321],[123.7046,-1.9346],[123.7037,-1.9416],[123.6979,-1.9452],[123.699,-1.9582],[123.7025,-1.9618],[123.712,-1.9634],[123.7251,-1.9605],[123.7326,-1.9555],[123.7392,-1.9547],[123.7386,-1.946]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.6527,-1.9031],[123.6501,-1.8957],[123.6461,-1.9025],[123.6475,-1.9068],[123.6442,-1.9132],[123.6444,-1.9201],[123.6471,-1.9238],[123.6481,-1.9299],[123.6468,-1.9363],[123.6477,-1.954],[123.6457,-1.9566],[123.6479,-1.9613],[123.6586,-1.9663],[123.6636,-1.9633],[123.6638,-1.9578],[123.6607,-1.9499],[123.6592,-1.9416],[123.6555,-1.9318],[123.655,-1.9206],[123.6511,-1.9119],[123.6527,-1.9031]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.678,-1.8831],[123.6725,-1.8831],[123.6632,-1.891],[123.6664,-1.9073],[123.6707,-1.9104],[123.6708,-1.9137],[123.6762,-1.9176],[123.6764,-1.9263],[123.6797,-1.9295],[123.6862,-1.9262],[123.6864,-1.9202],[123.6887,-1.9142],[123.6841,-1.9105],[123.683,-1.9055],[123.6751,-1.8887],[123.678,-1.8831]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.7893,-1.8861],[123.7886,-1.8823],[123.7831,-1.8823],[123.7782,-1.8866],[123.776,-1.8922],[123.779,-1.9055],[123.7751,-1.9103],[123.7773,-1.9182],[123.7781,-1.9259],[123.7742,-1.9291],[123.7762,-1.9322],[123.7719,-1.9407],[123.773,-1.948],[123.7789,-1.9467],[123.7857,-1.9534],[123.7842,-1.9584],[123.784,-1.9667],[123.7854,-1.9784],[123.7849,-1.9829],[123.7922,-1.99],[123.7976,-2.0017],[123.8024,-2.007],[123.8116,-2.0135],[123.8185,-2.0214],[123.8229,-2.0216],[123.8273,-2.0256],[123.8275,-2.018],[123.8375,-2.0132],[123.8388,-2.0095],[123.8366,-1.9949],[123.8422,-1.9966],[123.8555,-2.0129],[123.8599,-2.0056],[123.8606,-1.9956],[123.8629,-1.9894],[123.8635,-1.9791],[123.8547,-1.9712],[123.8512,-1.9597],[123.8437,-1.9489],[123.8376,-1.9445],[123.8383,-1.9367],[123.8364,-1.9343],[123.8261,-1.9275],[123.8233,-1.9206],[123.8144,-1.9114],[123.8107,-1.91],[123.8076,-1.905],[123.8054,-1.8953],[123.8032,-1.8929],[123.7955,-1.8912],[123.7893,-1.8861]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.7651,-1.8662],[123.7606,-1.869],[123.7555,-1.876],[123.7567,-1.8822],[123.7592,-1.8848],[123.7709,-1.8844],[123.7699,-1.8782],[123.7651,-1.8662]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.6958,-1.8618],[123.6863,-1.8626],[123.6818,-1.8729],[123.6922,-1.8704],[123.6978,-1.881],[123.7005,-1.8903],[123.6964,-1.8946],[123.6944,-1.9081],[123.7034,-1.8961],[123.7042,-1.8913],[123.7011,-1.8811],[123.7008,-1.871],[123.6974,-1.8673],[123.6958,-1.8618]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[124.0091,-1.8168],[123.9997,-1.8109],[123.9945,-1.8128],[123.988,-1.8226],[123.9977,-1.8395],[124.0023,-1.8525],[124.003,-1.8597],[124.01,-1.8757],[124.0154,-1.8835],[124.0182,-1.8905],[124.0268,-1.8953],[124.0336,-1.892],[124.0338,-1.8878],[124.0312,-1.8772],[124.0314,-1.8724],[124.0276,-1.8626],[124.0277,-1.8595],[124.0239,-1.845],[124.0213,-1.8397],[124.014,-1.8301],[124.0078,-1.8276],[124.0054,-1.8297],[124.002,-1.822],[124.0091,-1.8168]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.1055,-1.7746],[123.1005,-1.7709],[123.0967,-1.7612],[123.0874,-1.7688],[123.0851,-1.7773],[123.0803,-1.7875],[123.0793,-1.7936],[123.075,-1.8022],[123.072,-1.8119],[123.0682,-1.8164],[123.0631,-1.8283],[123.0587,-1.8308],[123.0618,-1.8444],[123.0588,-1.8539],[123.0592,-1.8652],[123.0571,-1.8717],[123.0591,-1.883],[123.063,-1.8858],[123.0651,-1.8827],[123.0694,-1.8867],[123.0658,-1.8926],[123.0601,-1.8886],[123.0551,-1.8904],[123.0527,-1.8992],[123.0503,-1.9019],[123.0486,-1.9136],[123.052,-1.9215],[123.0618,-1.9262],[123.0724,-1.9213],[123.0768,-1.9209],[123.0857,-1.915],[123.0896,-1.909],[123.0911,-1.9002],[123.0983,-1.893],[123.0955,-1.8899],[123.1036,-1.8853],[123.1055,-1.882],[123.1055,-1.8754],[123.1088,-1.8758],[123.1214,-1.8698],[123.13,-1.8688],[123.1356,-1.8665],[123.1415,-1.8568],[123.142,-1.851],[123.1444,-1.8494],[123.1441,-1.843],[123.1465,-1.8391],[123.141,-1.8341],[123.1452,-1.832],[123.1472,-1.8208],[123.1491,-1.8172],[123.1419,-1.8027],[123.1446,-1.7991],[123.1375,-1.7983],[123.1272,-1.7939],[123.1302,-1.7849],[123.1301,-1.7798],[123.1262,-1.7754],[123.1219,-1.777],[123.1055,-1.7746]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[124.1737,-1.7444],[124.1681,-1.7371],[124.1586,-1.7353],[124.1511,-1.7355],[124.1433,-1.7415],[124.1404,-1.7459],[124.1404,-1.7504],[124.144,-1.751],[124.1451,-1.759],[124.1488,-1.7666],[124.1553,-1.7684],[124.157,-1.763],[124.1528,-1.7612],[124.1533,-1.7562],[124.1692,-1.7552],[124.1679,-1.7584],[124.1675,-1.7684],[124.1641,-1.7745],[124.16,-1.7779],[124.1551,-1.7755],[124.1542,-1.7703],[124.15,-1.7706],[124.1502,-1.7754],[124.1542,-1.7786],[124.1597,-1.7863],[124.1639,-1.7885],[124.1752,-1.777],[124.1795,-1.7741],[124.1815,-1.7679],[124.177,-1.7517],[124.1737,-1.7444]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.3768,-1.6724],[123.3692,-1.6739],[123.3661,-1.6729],[123.3535,-1.6792],[123.3435,-1.6906],[123.3351,-1.6948],[123.334,-1.6986],[123.3259,-1.7075],[123.3182,-1.7129],[123.3171,-1.7159],[123.3122,-1.718],[123.2943,-1.7433],[123.2895,-1.746],[123.2807,-1.7617],[123.2739,-1.7815],[123.2744,-1.7873],[123.2717,-1.7932],[123.2907,-1.7948],[123.3044,-1.7887],[123.3111,-1.7833],[123.3158,-1.7822],[123.3184,-1.7757],[123.3203,-1.7658],[123.3246,-1.7635],[123.3309,-1.7515],[123.3315,-1.7433],[123.3385,-1.7356],[123.3504,-1.7393],[123.3542,-1.7386],[123.3593,-1.7336],[123.3641,-1.7336],[123.3654,-1.7259],[123.3735,-1.7205],[123.3761,-1.724],[123.3832,-1.7213],[123.3859,-1.7185],[123.3863,-1.7062],[123.3859,-1.6898],[123.3828,-1.6788],[123.3797,-1.6726],[123.3768,-1.6724]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"LineString","coordinates":[[123.5319,-1.4778],[123.5293,-1.4779],[123.5232,-1.4828],[123.522,-1.4903],[123.5264,-1.4895],[123.5295,-1.4924],[123.5297,-1.4971],[123.5269,-1.5],[123.5283,-1.5084],[123.5239,-1.5114],[123.5179,-1.5092],[123.5133,-1.4986],[123.5068,-1.4967],[123.5041,-1.4989],[123.4994,-1.5076],[123.4986,-1.5124],[123.5003,-1.5187],[123.4997,-1.5276],[123.4948,-1.5331],[123.4906,-1.5327],[123.4839,-1.5358],[123.4789,-1.5481],[123.4794,-1.5513],[123.4778,-1.5715],[123.4799,-1.5836],[123.4825,-1.5833],[123.4835,-1.5769],[123.4937,-1.5809],[123.4989,-1.5871],[123.4969,-1.6057],[123.4905,-1.6031],[123.4845,-1.6063],[123.4849,-1.6143],[123.4796,-1.6152],[123.4785,-1.6228],[123.4856,-1.6306],[123.4814,-1.6432],[123.4753,-1.6415],[123.4734,-1.6544],[123.4763,-1.6592],[123.4762,-1.6646],[123.4799,-1.6664],[123.484,-1.6828],[123.4801,-1.6875],[123.4845,-1.6947],[123.4855,-1.7062],[123.489,-1.7068],[123.4883,-1.713],[123.5122,-1.723],[123.5108,-1.7176],[123.5154,-1.7109],[123.5146,-1.7052],[123.5204,-1.7035],[123.523,-1.711],[123.5327,-1.7168],[123.5366,-1.7255],[123.5465,-1.7236],[123.5548,-1.7175],[123.5585,-1.7191],[123.5644,-1.7272],[123.5685,-1.7283],[123.5762,-1.7258],[123.5799,-1.7113],[123.5892,-1.7157],[123.598,-1.7146],[123.6043,-1.7041],[123.6127,-1.6986],[123.6082,-1.6771],[123.6102,-1.6656],[123.6177,-1.6559],[123.6184,-1.65],[123.6115,-1.6451],[123.6038,-1.6318],[123.6069,-1.6305],[123.6122,-1.6367],[123.6173,-1.638],[123.6229,-1.6244],[123.6165,-1.6209],[123.6137,-1.6162],[123.6138,-1.6103],[123.6121,-1.6054],[123.6032,-1.6057],[123.5992,-1.6023],[123.597,-1.597],[123.5916,-1.594],[123.5881,-1.5982],[123.5938,-1.6005],[123.5891,-1.6069],[123.5856,-1.6038],[123.5803,-1.6062],[123.578,-1.6103],[123.5732,-1.6091],[123.5625,-1.6019],[123.5577,-1.5951],[123.5563,-1.589],[123.5576,-1.5864],[123.5573,-1.5779],[123.5554,-1.5737],[123.5545,-1.5652],[123.5557,-1.5602],[123.5592,-1.5577],[123.559,-1.5536],[123.5625,-1.5494],[123.5616,-1.5434],[123.5586,-1.5413],[123.5588,-1.536],[123.5531,-1.5282],[123.5504,-1.5202],[123.55,-1.5125],[123.547,-1.5097],[123.5456,-1.5037],[123.5478,-1.4955],[123.5441,-1.4883],[123.5342,-1.483],[123.5319,-1.4778]]}},{"type":"Feature","properties":{"mhid":"1332:407","alt_name":"KABUPATEN MOROWALI UTARA","latitude":-1.7207,"longitude":121.24649,"sample_value":836},"geometry":{"type":"LineString","coordinates":[[121.4817,-1.9311],[121.483,-1.9381],[121.4866,-1.943],[121.4888,-1.9382],[121.4856,-1.9313],[121.4817,-1.9311]]}},{"type":"Feature","properties":{"mhid":"1332:407","alt_name":"KABUPATEN MOROWALI UTARA","latitude":-1.7207,"longitude":121.24649,"sample_value":836},"geometry":{"type":"LineString","coordinates":[[121.4442,-1.9268],[121.4403,-1.9178],[121.4377,-1.9211],[121.4391,-1.9255],[121.4321,-1.9325],[121.4355,-1.9397],[121.4342,-1.9439],[121.4371,-1.9483],[121.4409,-1.9418],[121.4396,-1.936],[121.4432,-1.9336],[121.4442,-1.9268]]}},{"type":"Feature","properties":{"mhid":"1332:407","alt_name":"KABUPATEN MOROWALI UTARA","latitude":-1.7207,"longitude":121.24649,"sample_value":836},"geometry":{"type":"LineString","coordinates":[[121.3787,-1.9028],[121.3688,-1.9021],[121.3653,-1.9042],[121.367,-1.9092],[121.3634,-1.9166],[121.3676,-1.9176],[121.3787,-1.9028]]}},{"type":"Feature","properties":{"mhid":"1332:407","alt_name":"KABUPATEN MOROWALI UTARA","latitude":-1.7207,"longitude":121.24649,"sample_value":836},"geometry":{"type":"LineString","coordinates":[[121.9608,-1.3075],[121.9627,-1.3066],[121.9642,-1.2954],[121.9679,-1.2911],[121.9631,-1.289],[121.9629,-1.2856],[121.9536,-1.2858],[121.9497,-1.2829],[121.9419,-1.2841],[121.932,-1.2879],[121.9299,-1.2959],[121.9227,-1.2996],[121.9168,-1.2956],[121.912,-1.2964],[121.909,-1.3009],[121.8985,-1.3011],[121.8891,-1.307],[121.883,-1.3029],[121.8735,-1.3041],[121.8695,-1.3083],[121.8692,-1.3154],[121.8582,-1.3149],[121.8494,-1.3159],[121.8401,-1.3112],[121.8344,-1.3135],[121.8306,-1.3124],[121.8279,-1.3064],[121.8217,-1.3085],[121.8139,-1.3138],[121.804,-1.324],[121.7953,-1.3269],[121.7788,-1.3305],[121.7696,-1.3298],[121.7623,-1.3328],[121.7497,-1.3338],[121.746,-1.3359],[121.7313,-1.3493],[121.7268,-1.3573],[121.7243,-1.3589],[121.7115,-1.3629],[121.7063,-1.362],[121.6909,-1.3625],[121.6817,-1.3654],[121.6759,-1.3643],[121.6637,-1.3644],[121.6601,-1.3676],[121.6537,-1.377],[121.6504,-1.3788],[121.6402,-1.3893],[121.6306,-1.3929],[121.6287,-1.3958],[121.6146,-1.4062],[121.6085,-1.4086],[121.5896,-1.4142],[121.5872,-1.4182],[121.5793,-1.4204],[121.5706,-1.425],[121.5536,-1.4102],[121.5481,-1.406],[121.5405,-1.4031],[121.5257,-1.4014],[121.5172,-1.3964],[121.5149,-1.3837],[121.5062,-1.3758],[121.5029,-1.3745],[121.496,-1.3754],[121.4783,-1.3751],[121.4748,-1.3774],[121.4662,-1.3988],[121.4659,-1.4049],[121.4331,-1.4049],[121.4121,-1.427],[121.4031,-1.4353],[121.3756,-1.4525],[121.3605,-1.4568],[121.3521,-1.473],[121.2978,-1.4729],[121.2751,-1.4713],[121.2655,-1.4722],[121.2573,-1.4755],[121.2257,-1.4995],[121.2273,-1.5084],[121.2233,-1.5144],[121.2163,-1.5173],[121.211,-1.5121],[121.2043,-1.5218],[121.1954,-1.5379],[121.1884,-1.5478],[121.1873,-1.5521],[121.1878,-1.5668],[121.1835,-1.5671],[121.1745,-1.5644],[121.1627,-1.5583],[121.1585,-1.5617],[121.1583,-1.5659],[121.1614,-1.5695],[121.1615,-1.5749],[121.1435,-1.572],[121.1258,-1.5728],[121.0844,-1.578],[121.0737,-1.5804],[121.0676,-1.5838],[121.0578,-1.5912],[121.0508,-1.5976],[121.0343,-1.6083],[121.0201,-1.6187],[121.0071,-1.6242],[120.988,-1.6235],[120.9826,-1.6225],[120.9712,-1.6237],[120.9619,-1.6237],[120.9503,-1.6232],[120.9295,-1.6249],[120.9194,-1.6243],[120.9093,-1.6249],[120.8902,-1.6243],[120.8827,-1.625],[120.8706,-1.6519],[120.8575,-1.6813],[120.8474,-1.713],[120.8341,-1.7507],[120.8353,-1.7619],[120.8407,-1.7739],[120.8496,-1.7855],[120.8524,-1.792],[120.8564,-1.8084],[120.8641,-1.8257],[120.8653,-1.8341],[120.8626,-1.8393],[120.8689,-1.8468],[120.8702,-1.8503],[120.8797,-1.8578],[120.884,-1.8563],[120.8884,-1.8578],[120.8955,-1.8705],[120.8957,-1.8782],[120.9009,-1.8834],[120.9021,-1.89],[120.9088,-1.8911],[120.9211,-1.8984],[120.9247,-1.9051],[120.9274,-1.9046],[120.9293,-1.9148],[120.9204,-1.9198],[120.921,-1.9234],[120.9188,-1.9338],[120.9153,-1.9355],[120.8798,-1.9822],[120.8732,-1.9919],[120.8626,-2.0041],[120.8438,-2.0306],[120.8405,-2.0396],[120.8381,-2.0506],[120.8311,-2.0879],[120.83,-2.0964],[120.8321,-2.1155],[120.8316,-2.1218],[120.8387,-2.156],[120.8415,-2.1832],[120.8425,-2.2113],[120.8422,-2.2184],[120.8527,-2.2181],[120.8726,-2.219],[120.9365,-2.2282],[120.9606,-2.2337],[120.9742,-2.2387],[120.9909,-2.2441],[121.0031,-2.252],[121.0104,-2.2623],[121.03,-2.2713],[121.0344,-2.2755],[121.04,-2.2739],[121.0501,-2.2674],[121.0673,-2.2679],[121.0839,-2.2711],[121.097,-2.2747],[121.1051,-2.2792],[121.1127,-2.2909],[121.1312,-2.3094],[121.1415,-2.3218],[121.1465,-2.3353],[121.1505,-2.3416],[121.1601,-2.3487],[121.1656,-2.3547],[121.1749,-2.3688],[121.1827,-2.3755],[121.1932,-2.3744],[121.2064,-2.3713],[121.2222,-2.365],[121.229,-2.3614],[121.2322,-2.3618],[121.2406,-2.3666],[121.2739,-2.3724],[121.2957,-2.3771],[121.3008,-2.3788],[121.3187,-2.3888],[121.3308,-2.3912],[121.3583,-2.3989],[121.3824,-2.4049],[121.41,-2.4106],[121.4145,-2.407],[121.4231,-2.407],[121.4374,-2.4066],[121.4416,-2.4057],[121.4417,-2.3976],[121.4382,-2.3941],[121.4463,-2.3912],[121.4458,-2.3869],[121.4478,-2.3753],[121.4516,-2.3713],[121.4562,-2.3634],[121.4554,-2.3577],[121.4595,-2.3462],[121.4572,-2.3445],[121.4612,-2.3329],[121.4599,-2.323],[121.4619,-2.3185],[121.4659,-2.3163],[121.4673,-2.3098],[121.4614,-2.3083],[121.4593,-2.3029],[121.4684,-2.2919],[121.4728,-2.289],[121.4727,-2.2822],[121.4767,-2.278],[121.4788,-2.273],[121.4788,-2.2624],[121.4909,-2.255],[121.4935,-2.2457],[121.4913,-2.2432],[121.4879,-2.2333],[121.4878,-2.2252],[121.4859,-2.2159],[121.4846,-2.1994],[121.4852,-2.1914],[121.4924,-2.1831],[121.5016,-2.1805],[121.506,-2.1716],[121.5125,-2.1684],[121.5296,-2.1547],[121.54,-2.151],[121.5445,-2.1484],[121.5405,-2.1326],[121.5403,-2.1235],[121.5447,-2.1103],[121.54,-2.1068],[121.5372,-2.1003],[121.5356,-2.0789],[121.5314,-2.0697],[121.5307,-2.048],[121.5171,-2.0525],[121.5138,-2.0549],[121.5105,-2.0532],[121.5069,-2.048],[121.5027,-2.0488],[121.4973,-2.0463],[121.4933,-2.042],[121.4911,-2.0344],[121.4919,-2.0306],[121.4983,-2.026],[121.4924,-2.0237],[121.4874,-2.017],[121.4815,-2.0176],[121.475,-2.0163],[121.4719,-2.0129],[121.4678,-2.003],[121.464,-2.0008],[121.4551,-2.0008],[121.4495,-1.9957],[121.4475,-1.9892],[121.4438,-1.9882],[121.4386,-1.9773],[121.433,-1.9725],[121.4328,-1.9681],[121.4296,-1.9638],[121.4249,-1.9632],[121.4208,-1.9568],[121.4206,-1.9534],[121.4252,-1.9495],[121.4262,-1.9448],[121.4159,-1.9356],[121.4188,-1.9311],[121.4165,-1.9234],[121.4122,-1.9218],[121.4138,-1.918],[121.4127,-1.9113],[121.4074,-1.9067],[121.3983,-1.9098],[121.3937,-1.907],[121.3891,-1.9074],[121.382,-1.9155],[121.3774,-1.9156],[121.3798,-1.9301],[121.376,-1.9323],[121.3762,-1.9387],[121.3792,-1.9455],[121.3771,-1.9576],[121.3806,-1.9749],[121.3773,-1.982],[121.3622,-1.9827],[121.3542,-1.992],[121.3479,-2.0052],[121.3419,-2.0007],[121.3395,-1.9916],[121.3428,-1.9822],[121.3391,-1.9774],[121.3427,-1.9697],[121.3475,-1.9649],[121.3488,-1.96],[121.3475,-1.952],[121.3391,-1.9509],[121.3333,-1.9462],[121.3296,-1.9347],[121.3221,-1.9349],[121.3176,-1.9369],[121.3133,-1.9296],[121.3141,-1.9244],[121.3182,-1.9209],[121.3279,-1.919],[121.3305,-1.9116],[121.3277,-1.9088],[121.3309,-1.9027],[121.3465,-1.9],[121.3385,-1.8926],[121.3315,-1.8901],[121.3307,-1.8801],[121.3355,-1.8754],[121.3455,-1.8723],[121.3592,-1.8691],[121.3477,-1.8676],[121.344,-1.8605],[121.3515,-1.8583],[121.3499,-1.8503],[121.344,-1.8497],[121.341,-1.8543],[121.3363,-1.8543],[121.3283,-1.8622],[121.3246,-1.863],[121.3236,-1.8584],[121.3176,-1.856],[121.3167,-1.8535],[121.3047,-1.8564],[121.2949,-1.856],[121.2925,-1.845],[121.2889,-1.8425],[121.2898,-1.8344],[121.292,-1.8325],[121.2962,-1.8234],[121.2967,-1.8175],[121.2949,-1.8094],[121.2991,-1.8085],[121.3032,-1.7929],[121.3072,-1.7965],[121.3125,-1.7945],[121.318,-1.7847],[121.3206,-1.7837],[121.3195,-1.7767],[121.3156,-1.7756],[121.3108,-1.7701],[121.3219,-1.767],[121.3252,-1.773],[121.3295,-1.7734],[121.3343,-1.7771],[121.3367,-1.7724],[121.341,-1.7724],[121.3473,-1.778],[121.3504,-1.7868],[121.3579,-1.7908],[121.3624,-1.7892],[121.367,-1.7917],[121.3734,-1.8048],[121.3766,-1.8075],[121.3882,-1.8106],[121.3928,-1.8055],[121.4032,-1.8061],[121.4127,-1.8101],[121.4163,-1.8147],[121.4147,-1.8181],[121.4187,-1.822],[121.4218,-1.8175],[121.4222,-1.8123],[121.4339,-1.809],[121.4373,-1.8095],[121.4423,-1.8048],[121.4455,-1.8084],[121.4523,-1.8112],[121.4555,-1.8104],[121.4619,-1.8182],[121.4625,-1.8272],[121.4677,-1.8341],[121.4667,-1.84],[121.4619,-1.8401],[121.4579,-1.8427],[121.4547,-1.8485],[121.4543,-1.8542],[121.4493,-1.8586],[121.4485,-1.8672],[121.4515,-1.8676],[121.4601,-1.8649],[121.4685,-1.8568],[121.4667,-1.8697],[121.4615,-1.8789],[121.4697,-1.8755],[121.4731,-1.8756],[121.4775,-1.8715],[121.4833,-1.8702],[121.4879,-1.8766],[121.4861,-1.883],[121.4905,-1.8846],[121.4969,-1.8949],[121.5021,-1.8986],[121.5061,-1.898],[121.5109,-1.9059],[121.5263,-1.9114],[121.5299,-1.9168],[121.5355,-1.9153],[121.5397,-1.918],[121.5445,-1.9333],[121.5477,-1.9347],[121.5487,-1.9392],[121.5563,-1.9525],[121.5637,-1.9572],[121.5737,-1.959],[121.5785,-1.9552],[121.5873,-1.9534],[121.6015,-1.9524],[121.6155,-1.9541],[121.6261,-1.9604],[121.6313,-1.9577],[121.6453,-1.9581],[121.6531,-1.9552],[121.6577,-1.9552],[121.6617,-1.9513],[121.6697,-1.9476],[121.6767,-1.9466],[121.6835,-1.9389],[121.6903,-1.9276],[121.6981,-1.9247],[121.7009,-1.9215],[121.7065,-1.9219],[121.7121,-1.9248],[121.7125,-1.9201],[121.7187,-1.9055],[121.7303,-1.9018],[121.7317,-1.8944],[121.7393,-1.8915],[121.7439,-1.8875],[121.7443,-1.8814],[121.7497,-1.8758],[121.7563,-1.8637],[121.7633,-1.8546],[121.7651,-1.8458],[121.7685,-1.8375],[121.7671,-1.8354],[121.7687,-1.8263],[121.7733,-1.8164],[121.7791,-1.8083],[121.7793,-1.8012],[121.7822,-1.7928],[121.7853,-1.795],[121.7917,-1.7853],[121.7972,-1.7713],[121.8023,-1.7647],[121.8043,-1.7566],[121.8028,-1.7542],[121.803,-1.7382],[121.8076,-1.7308],[121.8118,-1.7283],[121.8178,-1.7285],[121.8242,-1.7267],[121.8267,-1.717],[121.8363,-1.7142],[121.8398,-1.7059],[121.8437,-1.7025],[121.8513,-1.6932],[121.8519,-1.6991],[121.8586,-1.7093],[121.8685,-1.7091],[121.8715,-1.7108],[121.8818,-1.7111],[121.8876,-1.7039],[121.8829,-1.699],[121.8723,-1.7039],[121.8645,-1.7063],[121.8649,-1.6996],[121.8623,-1.696],[121.8701,-1.6942],[121.8681,-1.6892],[121.8685,-1.682],[121.8631,-1.6845],[121.8606,-1.679],[121.863,-1.6708],[121.8674,-1.6766],[121.8745,-1.6779],[121.8831,-1.6888],[121.8863,-1.6875],[121.8862,-1.6806],[121.89,-1.6806],[121.8905,-1.6915],[121.8952,-1.6989],[121.9037,-1.7014],[121.9044,-1.6925],[121.9059,-1.6893],[121.9155,-1.688],[121.9203,-1.6832],[121.9269,-1.6821],[121.927,-1.6869],[121.9296,-1.6902],[121.9355,-1.6879],[121.9329,-1.6847],[121.9391,-1.6764],[121.9442,-1.6742],[121.9592,-1.6792],[121.965,-1.6707],[121.9764,-1.6637],[121.9821,-1.6565],[121.9944,-1.6527],[121.9981,-1.6458],[122.0044,-1.6408],[122.0062,-1.6352],[122.0126,-1.6299],[122.02,-1.6283],[122.0228,-1.6166],[122.0297,-1.6123],[122.0375,-1.6104],[122.0476,-1.6124],[122.0512,-1.6156],[122.0612,-1.6168],[122.0637,-1.616],[122.0397,-1.5874],[122.0318,-1.5745],[122.0297,-1.5673],[122.0324,-1.5218],[122.0396,-1.5026],[122.0427,-1.4929],[122.0401,-1.4884],[122.0269,-1.4741],[122.0148,-1.4666],[122.0127,-1.4531],[122.0191,-1.4442],[122.0236,-1.4422],[122.0403,-1.4404],[122.0423,-1.4363],[122.0362,-1.4257],[122.0533,-1.4231],[122.0541,-1.4116],[122.0417,-1.3922],[122.031,-1.3592],[122.0288,-1.3538],[122.0232,-1.3494],[122.0141,-1.3457],[122.0083,-1.3427],[122.0064,-1.3477],[122.0019,-1.3544],[121.9957,-1.3521],[121.9875,-1.3508],[121.9868,-1.3506],[121.98,-1.3479],[121.9728,-1.342],[121.9723,-1.3391],[121.9745,-1.3341],[121.9675,-1.3332],[121.962,-1.3277],[121.964,-1.3201],[121.9618,-1.3149],[121.9608,-1.3075]]}},{"type":"Feature","properties":{"mhid":"1332:408","alt_name":"KOTA PALU","latitude":-0.86972,"longitude":119.9,"sample_value":248},"geometry":{"type":"LineString","coordinates":[[120.0368,-0.848],[120.034,-0.8413],[120.0342,-0.8333],[120.0275,-0.8178],[120.0258,-0.8086],[120.0196,-0.8012],[120.0167,-0.796],[120.0131,-0.7939],[120.0002,-0.7938],[119.9925,-0.7952],[119.9903,-0.7987],[119.9839,-0.803],[119.9787,-0.804],[119.9741,-0.8083],[119.9545,-0.7975],[119.947,-0.7989],[119.9397,-0.7986],[119.9341,-0.7968],[119.9273,-0.7921],[119.9211,-0.7928],[119.9165,-0.7891],[119.914,-0.7829],[119.9124,-0.7746],[119.9036,-0.778],[119.8872,-0.778],[119.8855,-0.7715],[119.8741,-0.7691],[119.8773,-0.7653],[119.8953,-0.7512],[119.8878,-0.747],[119.8781,-0.7392],[119.8784,-0.7329],[119.8828,-0.7317],[119.8852,-0.7268],[119.8934,-0.729],[119.8992,-0.7255],[119.9064,-0.7192],[119.9419,-0.7147],[119.9497,-0.7056],[119.9543,-0.7041],[119.9605,-0.6981],[119.9615,-0.6932],[119.96,-0.6873],[119.9536,-0.6883],[119.9548,-0.6807],[119.9387,-0.6891],[119.9259,-0.6966],[119.9124,-0.6993],[119.8976,-0.6982],[119.8882,-0.6966],[119.8719,-0.6951],[119.8717,-0.6889],[119.8747,-0.6818],[119.8863,-0.6752],[119.9018,-0.6648],[119.9096,-0.6571],[119.9199,-0.6505],[119.9262,-0.6425],[119.9283,-0.6354],[119.9236,-0.6367],[119.9139,-0.6351],[119.9086,-0.6365],[119.9044,-0.6348],[119.8986,-0.6358],[119.892,-0.6388],[119.8884,-0.6439],[119.8795,-0.6452],[119.8753,-0.6481],[119.8697,-0.6573],[119.8599,-0.6586],[119.855,-0.6627],[119.8598,-0.669],[119.8547,-0.6719],[119.8501,-0.691],[119.8437,-0.6968],[119.8437,-0.701],[119.8495,-0.706],[119.8594,-0.7122],[119.8636,-0.7169],[119.8587,-0.7242],[119.8547,-0.7359],[119.8554,-0.7429],[119.8611,-0.7511],[119.8622,-0.7556],[119.859,-0.7645],[119.8587,-0.7741],[119.8613,-0.7853],[119.8721,-0.7972],[119.8789,-0.8022],[119.878,-0.8053],[119.8805,-0.8178],[119.8842,-0.8237],[119.881,-0.8292],[119.8821,-0.8352],[119.8812,-0.8484],[119.8793,-0.857],[119.88,-0.8633],[119.8744,-0.8688],[119.8737,-0.8766],[119.8712,-0.8831],[119.8649,-0.885],[119.8451,-0.8826],[119.8387,-0.8789],[119.8301,-0.8605],[119.8285,-0.8533],[119.8248,-0.8457],[119.8206,-0.8436],[119.816,-0.8382],[119.813,-0.8277],[119.8138,-0.8254],[119.8128,-0.8077],[119.8082,-0.8014],[119.8054,-0.8027],[119.8016,-0.8114],[119.7966,-0.8173],[119.7892,-0.8203],[119.7782,-0.8215],[119.7653,-0.8297],[119.7597,-0.8362],[119.7666,-0.8445],[119.7652,-0.8534],[119.7705,-0.8612],[119.7701,-0.8685],[119.7671,-0.8715],[119.7665,-0.8823],[119.7686,-0.887],[119.7684,-0.8932],[119.7814,-0.8976],[119.7823,-0.8903],[119.7863,-0.8832],[119.796,-0.8713],[119.8005,-0.8691],[119.8117,-0.8678],[119.8183,-0.8738],[119.8223,-0.8741],[119.8247,-0.8817],[119.8272,-0.9046],[119.8325,-0.9048],[119.8327,-0.9098],[119.8278,-0.9111],[119.8309,-0.9412],[119.84,-0.9393],[119.8474,-0.9359],[119.8626,-0.9321],[119.8622,-0.9253],[119.8759,-0.9226],[119.8806,-0.9266],[119.8815,-0.9323],[119.8859,-0.932],[119.905,-0.9429],[119.9233,-0.9442],[119.9332,-0.9439],[119.9372,-0.9409],[119.9293,-0.9208],[119.948,-0.9131],[119.9592,-0.9161],[119.964,-0.9129],[119.9765,-0.9132],[119.9959,-0.9042],[120.0034,-0.9026],[120.009,-0.8989],[120.0106,-0.8953],[120.0173,-0.896],[120.0169,-0.8898],[120.0233,-0.8827],[120.0313,-0.8806],[120.0334,-0.8724],[120.0389,-0.8684],[120.0341,-0.8571],[120.0368,-0.848]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[121.2101,-7.4963],[121.2133,-7.5084],[121.2178,-7.5006],[121.2173,-7.4972],[121.2101,-7.4963]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[121.7966,-7.4721],[121.792,-7.4725],[121.788,-7.4769],[121.7796,-7.476],[121.7764,-7.4784],[121.7557,-7.4858],[121.7471,-7.484],[121.7391,-7.4861],[121.7349,-7.4901],[121.7235,-7.4889],[121.7235,-7.4926],[121.7278,-7.4941],[121.7338,-7.4927],[121.7387,-7.4945],[121.7583,-7.4942],[121.7657,-7.4921],[121.7719,-7.489],[121.7799,-7.4879],[121.7835,-7.4891],[121.791,-7.4867],[121.8005,-7.4874],[121.8034,-7.4811],[121.7994,-7.4726],[121.7966,-7.4721]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[121.4212,-7.4502],[121.4154,-7.4504],[121.4129,-7.4572],[121.4159,-7.4623],[121.4248,-7.4659],[121.4286,-7.4622],[121.428,-7.4579],[121.4212,-7.4502]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[121.8184,-7.3308],[121.811,-7.3309],[121.7982,-7.3327],[121.7913,-7.3348],[121.7851,-7.3342],[121.7813,-7.3385],[121.7723,-7.3395],[121.7701,-7.3444],[121.7651,-7.3463],[121.7589,-7.345],[121.7538,-7.3533],[121.7541,-7.3739],[121.7532,-7.3775],[121.7475,-7.3789],[121.745,-7.3845],[121.7457,-7.3984],[121.7445,-7.4075],[121.7463,-7.4149],[121.7548,-7.423],[121.7595,-7.4219],[121.7637,-7.4236],[121.7718,-7.4241],[121.7837,-7.4201],[121.7891,-7.417],[121.8025,-7.4065],[121.8231,-7.3973],[121.8285,-7.3859],[121.8395,-7.372],[121.8382,-7.3702],[121.8386,-7.3473],[121.8293,-7.3344],[121.8215,-7.3307],[121.8184,-7.3308]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[121.0858,-7.3036],[121.0807,-7.3072],[121.0813,-7.3179],[121.0783,-7.3302],[121.0788,-7.3386],[121.0817,-7.3495],[121.0837,-7.3512],[121.0822,-7.3628],[121.0733,-7.3697],[121.0621,-7.3702],[121.061,-7.3728],[121.0707,-7.376],[121.0793,-7.3854],[121.0854,-7.3871],[121.0987,-7.3975],[121.1073,-7.3917],[121.1175,-7.3882],[121.1252,-7.3825],[121.1378,-7.3787],[121.1421,-7.3786],[121.1477,-7.3734],[121.1567,-7.3718],[121.1623,-7.3623],[121.1672,-7.3578],[121.1682,-7.3541],[121.1651,-7.3455],[121.1579,-7.3446],[121.1474,-7.3377],[121.1363,-7.3396],[121.1314,-7.3368],[121.129,-7.3328],[121.1293,-7.3243],[121.1261,-7.3209],[121.1159,-7.3163],[121.1068,-7.3187],[121.1028,-7.3163],[121.0994,-7.3072],[121.0948,-7.3041],[121.0858,-7.3036]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[121.7612,-7.2613],[121.7532,-7.2664],[121.7407,-7.2721],[121.7373,-7.2787],[121.7306,-7.2819],[121.7303,-7.2884],[121.7278,-7.2906],[121.7302,-7.295],[121.7371,-7.2918],[121.7485,-7.2899],[121.753,-7.287],[121.759,-7.2878],[121.7735,-7.2863],[121.7788,-7.2726],[121.7753,-7.2682],[121.7655,-7.2611],[121.7612,-7.2613]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[120.8209,-7.2593],[120.8141,-7.2594],[120.81,-7.2626],[120.8032,-7.2631],[120.7962,-7.2702],[120.7979,-7.2765],[120.8014,-7.277],[120.8064,-7.287],[120.8232,-7.2945],[120.8297,-7.2982],[120.8382,-7.2983],[120.8506,-7.2931],[120.855,-7.2937],[120.8658,-7.2989],[120.8736,-7.3053],[120.8886,-7.3081],[120.8911,-7.3096],[120.901,-7.3103],[120.9021,-7.3082],[120.9091,-7.3068],[120.9227,-7.3074],[120.931,-7.307],[120.9372,-7.3102],[120.9407,-7.3138],[120.9569,-7.3246],[120.9714,-7.3242],[120.9894,-7.3281],[121.0039,-7.3327],[121.0128,-7.3321],[121.0163,-7.3299],[121.0278,-7.3284],[121.0311,-7.3263],[121.0394,-7.3257],[121.0509,-7.3268],[121.053,-7.3171],[121.0605,-7.3072],[121.0637,-7.2994],[121.0591,-7.2975],[121.0474,-7.2979],[121.0397,-7.2946],[121.033,-7.2888],[121.0291,-7.2874],[121.0249,-7.2895],[121.0172,-7.2873],[121.0125,-7.2841],[121.0091,-7.2847],[121.0044,-7.2818],[120.9938,-7.2844],[120.9885,-7.282],[120.9803,-7.2811],[120.9638,-7.2814],[120.9611,-7.2782],[120.9505,-7.2831],[120.932,-7.284],[120.9269,-7.2828],[120.9191,-7.2845],[120.9132,-7.2791],[120.9085,-7.2786],[120.9014,-7.2731],[120.889,-7.2754],[120.8823,-7.2719],[120.8745,-7.2732],[120.8717,-7.2716],[120.8632,-7.2711],[120.8535,-7.2678],[120.8496,-7.2644],[120.8394,-7.2598],[120.8278,-7.2608],[120.8209,-7.2593]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[121.7543,-7.2224],[121.7496,-7.2225],[121.7467,-7.2264],[121.7385,-7.2297],[121.7466,-7.234],[121.7557,-7.2299],[121.7543,-7.2224]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[121.4793,-7.1533],[121.4806,-7.1499],[121.4762,-7.1457],[121.4731,-7.1473],[121.4729,-7.1519],[121.4793,-7.1533]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[120.5614,-7.0734],[120.5567,-7.0805],[120.5591,-7.0886],[120.5641,-7.0928],[120.5686,-7.0897],[120.5765,-7.0874],[120.5838,-7.0912],[120.5868,-7.0899],[120.5911,-7.0925],[120.5909,-7.0975],[120.5956,-7.1003],[120.6031,-7.0992],[120.6029,-7.0966],[120.6117,-7.0905],[120.613,-7.0816],[120.6088,-7.0801],[120.6039,-7.0815],[120.5956,-7.0811],[120.5895,-7.0829],[120.5824,-7.0772],[120.5706,-7.0763],[120.5642,-7.078],[120.5614,-7.0734]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[120.5491,-7.0558],[120.5426,-7.0573],[120.5372,-7.063],[120.541,-7.0683],[120.5474,-7.0688],[120.5515,-7.0671],[120.5508,-7.0592],[120.5491,-7.0558]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[120.6319,-7.0004],[120.6224,-7.0015],[120.6199,-7.0037],[120.6217,-7.0222],[120.6244,-7.0257],[120.6242,-7.0359],[120.6276,-7.0452],[120.6275,-7.0522],[120.6229,-7.0521],[120.6193,-7.0561],[120.6162,-7.0635],[120.6102,-7.069],[120.6103,-7.0721],[120.6048,-7.075],[120.6121,-7.079],[120.6178,-7.0802],[120.6204,-7.0867],[120.62,-7.097],[120.6236,-7.097],[120.6274,-7.0919],[120.6324,-7.0943],[120.6356,-7.0995],[120.634,-7.105],[120.6273,-7.105],[120.629,-7.1121],[120.6255,-7.1133],[120.6263,-7.1186],[120.6324,-7.1217],[120.6343,-7.127],[120.6505,-7.1353],[120.6538,-7.1357],[120.6594,-7.1444],[120.6651,-7.1436],[120.6674,-7.147],[120.6764,-7.1454],[120.6788,-7.142],[120.6764,-7.1351],[120.6688,-7.1288],[120.6578,-7.1294],[120.6535,-7.1262],[120.6629,-7.1209],[120.6704,-7.1213],[120.6731,-7.1235],[120.6807,-7.1225],[120.6894,-7.1266],[120.695,-7.1277],[120.7003,-7.133],[120.7099,-7.134],[120.7157,-7.1296],[120.7286,-7.1287],[120.735,-7.1331],[120.7451,-7.1286],[120.7538,-7.1303],[120.7538,-7.1334],[120.7588,-7.1353],[120.7601,-7.1319],[120.7673,-7.1354],[120.7706,-7.1246],[120.774,-7.1176],[120.7783,-7.1029],[120.7817,-7.1009],[120.7836,-7.0952],[120.7827,-7.0877],[120.7841,-7.0748],[120.7871,-7.0616],[120.7826,-7.0597],[120.777,-7.0654],[120.7763,-7.0694],[120.7697,-7.0751],[120.7598,-7.0791],[120.7488,-7.079],[120.7363,-7.0744],[120.7308,-7.0709],[120.7148,-7.0589],[120.7022,-7.0553],[120.6833,-7.0488],[120.6794,-7.0453],[120.673,-7.0426],[120.6668,-7.0349],[120.6603,-7.0238],[120.6585,-7.0191],[120.6513,-7.0127],[120.6414,-7.0095],[120.6402,-7.0059],[120.6319,-7.0004]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[120.5219,-6.9867],[120.5175,-6.9886],[120.5205,-6.9944],[120.5294,-7.0001],[120.5219,-6.9867]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[120.4444,-6.9492],[120.4392,-6.9515],[120.4338,-6.965],[120.4372,-6.9705],[120.4474,-6.9676],[120.4553,-6.9625],[120.4556,-6.9583],[120.4506,-6.9497],[120.4444,-6.9492]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[120.791,-6.7785],[120.7879,-6.7794],[120.7866,-6.7866],[120.7834,-6.7884],[120.7796,-6.799],[120.7817,-6.8111],[120.7914,-6.8194],[120.7936,-6.8411],[120.7939,-6.8635],[120.7994,-6.8631],[120.8016,-6.8499],[120.8079,-6.8443],[120.8125,-6.8362],[120.8137,-6.8305],[120.8102,-6.8244],[120.809,-6.8166],[120.8101,-6.8129],[120.8071,-6.8049],[120.8071,-6.7941],[120.7977,-6.7858],[120.791,-6.7785]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[120.9701,-6.7504],[120.9664,-6.7535],[120.9692,-6.7611],[120.972,-6.7514],[120.9701,-6.7504]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[121.1553,-6.7163],[121.1509,-6.7211],[121.1508,-6.724],[121.145,-6.7348],[121.1478,-6.7357],[121.1553,-6.7163]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[120.2746,-6.6769],[120.27,-6.681],[120.2698,-6.6963],[120.2725,-6.6997],[120.2781,-6.7002],[120.2829,-6.6915],[120.2811,-6.6796],[120.2746,-6.6769]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[120.4383,-6.6543],[120.43,-6.6587],[120.4294,-6.674],[120.4304,-6.6859],[120.4284,-6.6965],[120.4337,-6.6989],[120.4377,-6.6903],[120.4421,-6.6773],[120.4418,-6.6625],[120.4383,-6.6543]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[120.4363,-6.5807],[120.4277,-6.5861],[120.4248,-6.597],[120.4281,-6.6086],[120.4268,-6.6178],[120.4257,-6.64],[120.4323,-6.6398],[120.4338,-6.6421],[120.4403,-6.6442],[120.4423,-6.6413],[120.4439,-6.6228],[120.4396,-6.6105],[120.4419,-6.605],[120.4389,-6.5905],[120.4398,-6.5853],[120.4363,-6.5807]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[120.9997,-6.5446],[121.0004,-6.5329],[120.9972,-6.5355],[120.9971,-6.5397],[120.9997,-6.5446]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[121.0015,-6.4941],[120.9971,-6.4948],[120.9876,-6.4998],[120.9833,-6.5043],[120.9954,-6.5028],[121.0015,-6.4941]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[120.4338,-6.4648],[120.4301,-6.4695],[120.4256,-6.4708],[120.425,-6.4769],[120.4222,-6.4814],[120.4209,-6.4876],[120.428,-6.4893],[120.4325,-6.483],[120.4316,-6.4721],[120.4338,-6.4648]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[120.4515,-6.3415],[120.4485,-6.3443],[120.4521,-6.3487],[120.4547,-6.3452],[120.4515,-6.3415]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[120.4549,-6.3234],[120.4544,-6.3292],[120.4611,-6.3285],[120.4605,-6.3239],[120.4549,-6.3234]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[120.4554,-6.2913],[120.4517,-6.2914],[120.456,-6.3022],[120.4606,-6.3047],[120.4678,-6.2989],[120.4554,-6.2913]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[120.4294,-6.1058],[120.4255,-6.1082],[120.4222,-6.116],[120.4144,-6.115],[120.4125,-6.12],[120.4086,-6.1229],[120.4065,-6.1285],[120.4016,-6.1562],[120.4003,-6.1599],[120.3958,-6.1627],[120.3948,-6.1726],[120.3922,-6.1803],[120.3953,-6.1901],[120.3975,-6.2009],[120.4066,-6.202],[120.4108,-6.2073],[120.4149,-6.2087],[120.4203,-6.2069],[120.4268,-6.1969],[120.423,-6.1881],[120.4204,-6.1869],[120.4189,-6.181],[120.4218,-6.1734],[120.4173,-6.1581],[120.4165,-6.1386],[120.4199,-6.1341],[120.4214,-6.1287],[120.4195,-6.1233],[120.4268,-6.12],[120.4294,-6.1125],[120.4323,-6.1104],[120.4294,-6.1058]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[120.4474,-6.2113],[120.4478,-6.2151],[120.4454,-6.228],[120.4474,-6.2456],[120.4424,-6.2565],[120.4455,-6.2664],[120.4529,-6.2656],[120.4592,-6.2676],[120.466,-6.2679],[120.4722,-6.2706],[120.4753,-6.2767],[120.4796,-6.2784],[120.4814,-6.2848],[120.4797,-6.2912],[120.4747,-6.2986],[120.4718,-6.2999],[120.4774,-6.3082],[120.4761,-6.3213],[120.4732,-6.3275],[120.4719,-6.3407],[120.4719,-6.3517],[120.4747,-6.3686],[120.473,-6.3725],[120.4708,-6.3841],[120.4641,-6.3891],[120.4577,-6.3824],[120.4568,-6.3906],[120.46,-6.3942],[120.4608,-6.3993],[120.4648,-6.3977],[120.4702,-6.4013],[120.4599,-6.4047],[120.4611,-6.4129],[120.4685,-6.4304],[120.4736,-6.4372],[120.4756,-6.4574],[120.4776,-6.4621],[120.4779,-6.4706],[120.4797,-6.4767],[120.4791,-6.4808],[120.481,-6.4893],[120.4805,-6.494],[120.4857,-6.4968],[120.4863,-6.4903],[120.4911,-6.4798],[120.4927,-6.4687],[120.4961,-6.462],[120.5006,-6.457],[120.5025,-6.4485],[120.5095,-6.4453],[120.5099,-6.4427],[120.505,-6.4386],[120.5019,-6.4337],[120.4979,-6.4226],[120.5014,-6.4162],[120.4972,-6.4103],[120.4966,-6.4051],[120.4928,-6.4023],[120.498,-6.3938],[120.5029,-6.3943],[120.5064,-6.392],[120.5076,-6.3869],[120.5054,-6.3811],[120.5096,-6.3783],[120.5132,-6.3716],[120.5135,-6.3627],[120.5187,-6.3654],[120.5224,-6.3548],[120.5176,-6.3507],[120.5182,-6.3477],[120.525,-6.3479],[120.5271,-6.3455],[120.5211,-6.338],[120.5318,-6.3297],[120.5375,-6.3282],[120.5378,-6.3076],[120.5353,-6.2984],[120.5379,-6.2974],[120.539,-6.2905],[120.5373,-6.2832],[120.539,-6.2791],[120.5359,-6.2737],[120.5341,-6.2649],[120.5363,-6.2553],[120.5384,-6.2534],[120.5374,-6.2458],[120.53,-6.2452],[120.5302,-6.24],[120.5251,-6.2212],[120.5286,-6.2118],[120.5262,-6.208],[120.5298,-6.2044],[120.5314,-6.1945],[120.5286,-6.1885],[120.5318,-6.1791],[120.5365,-6.1718],[120.5384,-6.1647],[120.5388,-6.1569],[120.5452,-6.1475],[120.5465,-6.1371],[120.5484,-6.1354],[120.5481,-6.1288],[120.5409,-6.1252],[120.5509,-6.1227],[120.5502,-6.1185],[120.5443,-6.1113],[120.5449,-6.107],[120.5538,-6.1069],[120.5573,-6.0813],[120.5528,-6.0753],[120.5574,-6.0706],[120.5551,-6.0635],[120.5643,-6.0627],[120.5681,-6.0561],[120.5661,-6.0355],[120.5639,-6.0214],[120.5587,-6.002],[120.5582,-5.9914],[120.5522,-5.9813],[120.5536,-5.9746],[120.5511,-5.9681],[120.5493,-5.959],[120.5437,-5.9417],[120.5434,-5.9358],[120.5374,-5.9273],[120.5322,-5.9007],[120.5345,-5.8887],[120.5338,-5.875],[120.5303,-5.8641],[120.5273,-5.8591],[120.5261,-5.8529],[120.5273,-5.8461],[120.5302,-5.8441],[120.5246,-5.8347],[120.5189,-5.8375],[120.5159,-5.8362],[120.5108,-5.826],[120.5079,-5.8233],[120.5013,-5.8088],[120.5021,-5.8001],[120.5071,-5.7913],[120.5057,-5.7838],[120.4991,-5.7773],[120.4979,-5.7712],[120.4932,-5.7677],[120.4837,-5.7678],[120.4761,-5.7729],[120.4686,-5.7827],[120.4662,-5.788],[120.462,-5.7912],[120.4604,-5.8009],[120.459,-5.8235],[120.4572,-5.8268],[120.4562,-5.841],[120.4532,-5.846],[120.4525,-5.87],[120.4525,-5.8927],[120.4509,-5.9043],[120.4477,-5.9169],[120.4468,-5.9245],[120.4468,-5.9394],[120.4455,-5.9605],[120.4468,-5.9679],[120.4507,-5.9777],[120.4493,-5.9872],[120.4491,-6.0017],[120.4526,-6.0113],[120.4518,-6.018],[120.4491,-6.0252],[120.4482,-6.0375],[120.4528,-6.0475],[120.4533,-6.0544],[120.4505,-6.0612],[120.4541,-6.0742],[120.4611,-6.0861],[120.466,-6.0923],[120.4644,-6.1046],[120.4628,-6.1095],[120.457,-6.1163],[120.4561,-6.125],[120.4479,-6.1404],[120.4508,-6.1432],[120.447,-6.1622],[120.4334,-6.1669],[120.4302,-6.1698],[120.4326,-6.1766],[120.4265,-6.1799],[120.431,-6.1875],[120.4409,-6.1926],[120.4449,-6.1977],[120.4474,-6.2113]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"LineString","coordinates":[[120.4898,-5.7395],[120.479,-5.7389],[120.4735,-5.746],[120.4744,-5.7505],[120.4849,-5.7554],[120.4926,-5.7515],[120.4903,-5.7466],[120.4898,-5.7395]]}},{"type":"Feature","properties":{"mhid":"1332:410","alt_name":"KABUPATEN BULUKUMBA","latitude":-5.41667,"longitude":120.23333,"sample_value":337},"geometry":{"type":"LineString","coordinates":[[120.429,-5.6393],[120.425,-5.6403],[120.4208,-5.6478],[120.4211,-5.6545],[120.425,-5.6595],[120.4313,-5.6606],[120.442,-5.6517],[120.4455,-5.6467],[120.4427,-5.6416],[120.4353,-5.6422],[120.429,-5.6393]]}},{"type":"Feature","properties":{"mhid":"1332:410","alt_name":"KABUPATEN BULUKUMBA","latitude":-5.41667,"longitude":120.23333,"sample_value":337},"geometry":{"type":"LineString","coordinates":[[120.3342,-5.2877],[120.3256,-5.2908],[120.3212,-5.2902],[120.3187,-5.2948],[120.314,-5.2972],[120.3082,-5.2971],[120.3021,-5.3008],[120.3015,-5.2913],[120.2945,-5.2898],[120.2918,-5.2867],[120.2859,-5.2873],[120.2832,-5.2926],[120.2753,-5.2987],[120.2606,-5.2969],[120.2542,-5.3017],[120.2494,-5.3008],[120.2419,-5.2971],[120.23,-5.2967],[120.2227,-5.3025],[120.2117,-5.3027],[120.2035,-5.3004],[120.1964,-5.3056],[120.1897,-5.3065],[120.1791,-5.311],[120.1691,-5.3113],[120.1601,-5.3032],[120.1487,-5.2983],[120.1412,-5.2885],[120.1361,-5.2945],[120.1349,-5.3004],[120.1316,-5.3022],[120.1294,-5.3081],[120.1257,-5.3065],[120.1223,-5.3107],[120.1159,-5.3144],[120.1015,-5.3172],[120.098,-5.3168],[120.0965,-5.3225],[120.0895,-5.3211],[120.0816,-5.324],[120.0767,-5.3328],[120.0736,-5.3354],[120.0687,-5.3335],[120.0615,-5.3331],[120.0569,-5.3357],[120.0547,-5.3395],[120.0397,-5.347],[120.0329,-5.3394],[120.02,-5.3381],[120.0127,-5.3288],[120.0125,-5.3257],[120.0058,-5.3227],[119.9952,-5.3229],[119.9922,-5.327],[119.9798,-5.3337],[119.9691,-5.3415],[119.9588,-5.3431],[119.9551,-5.3512],[119.9551,-5.3552],[119.9597,-5.3556],[119.9634,-5.3621],[119.9696,-5.367],[119.9741,-5.3769],[119.9803,-5.3864],[119.9798,-5.3902],[119.9842,-5.3922],[119.9932,-5.3899],[119.9995,-5.3904],[120.0039,-5.3875],[120.0116,-5.387],[120.0158,-5.3899],[120.0246,-5.3911],[120.0288,-5.3951],[120.0344,-5.4068],[120.0298,-5.4102],[120.031,-5.413],[120.0389,-5.4198],[120.0432,-5.4286],[120.0466,-5.4309],[120.0505,-5.4371],[120.0563,-5.4391],[120.0527,-5.4442],[120.0532,-5.4484],[120.0607,-5.4528],[120.0677,-5.4553],[120.0759,-5.4705],[120.0835,-5.478],[120.084,-5.4803],[120.0912,-5.4908],[120.0902,-5.4961],[120.0922,-5.5039],[120.0947,-5.5075],[120.0973,-5.5224],[120.0995,-5.5393],[120.0975,-5.5466],[120.102,-5.5558],[120.0956,-5.5626],[120.0993,-5.5651],[120.1004,-5.5719],[120.0986,-5.5773],[120.1013,-5.5857],[120.1059,-5.5891],[120.1124,-5.5895],[120.1215,-5.5872],[120.1295,-5.5883],[120.1334,-5.5851],[120.1484,-5.5801],[120.1553,-5.573],[120.1706,-5.5647],[120.1744,-5.5642],[120.1858,-5.5667],[120.1903,-5.566],[120.1967,-5.5611],[120.2001,-5.5563],[120.2124,-5.5493],[120.2149,-5.5447],[120.2204,-5.5402],[120.2312,-5.5382],[120.2357,-5.5388],[120.2414,-5.5365],[120.2584,-5.536],[120.2763,-5.5377],[120.2891,-5.5321],[120.2984,-5.516],[120.3029,-5.5123],[120.3149,-5.5072],[120.3193,-5.5094],[120.3329,-5.5105],[120.3448,-5.5136],[120.3555,-5.5232],[120.3648,-5.5357],[120.3709,-5.5512],[120.3789,-5.5685],[120.3824,-5.5738],[120.3936,-5.5863],[120.4084,-5.5972],[120.4252,-5.608],[120.4354,-5.6118],[120.4425,-5.608],[120.4485,-5.6085],[120.4559,-5.6145],[120.4598,-5.6201],[120.4732,-5.6195],[120.4683,-5.6147],[120.4673,-5.6098],[120.4639,-5.608],[120.4623,-5.6016],[120.4616,-5.5919],[120.463,-5.5838],[120.4592,-5.5724],[120.448,-5.5681],[120.4451,-5.5544],[120.446,-5.5511],[120.4509,-5.5484],[120.4491,-5.5413],[120.4489,-5.5308],[120.4467,-5.5259],[120.4484,-5.5112],[120.4468,-5.5022],[120.4436,-5.495],[120.4435,-5.4898],[120.446,-5.4817],[120.4513,-5.4785],[120.4493,-5.4744],[120.4369,-5.4727],[120.4312,-5.4683],[120.428,-5.4686],[120.4241,-5.4649],[120.4226,-5.4591],[120.4249,-5.453],[120.4296,-5.4514],[120.4334,-5.4445],[120.4303,-5.4397],[120.4284,-5.4299],[120.4255,-5.4297],[120.4189,-5.4163],[120.413,-5.4074],[120.4123,-5.3965],[120.4027,-5.3784],[120.4033,-5.3703],[120.4005,-5.3658],[120.4012,-5.3614],[120.407,-5.358],[120.4055,-5.3459],[120.4034,-5.3396],[120.3974,-5.3405],[120.3866,-5.3377],[120.3834,-5.3336],[120.3759,-5.3328],[120.3745,-5.3274],[120.3702,-5.3225],[120.3641,-5.3218],[120.3589,-5.3161],[120.3533,-5.3138],[120.349,-5.3061],[120.3426,-5.3014],[120.3417,-5.2927],[120.3362,-5.2871],[120.3342,-5.2877]]}},{"type":"Feature","properties":{"mhid":"1332:411","alt_name":"KABUPATEN BANTAENG","latitude":-5.48333,"longitude":119.98333,"sample_value":856},"geometry":{"type":"LineString","coordinates":[[119.9551,-5.3552],[119.9388,-5.355],[119.9368,-5.3563],[119.9316,-5.3647],[119.9302,-5.3703],[119.932,-5.3771],[119.938,-5.3846],[119.9374,-5.3867],[119.9373,-5.4057],[119.9308,-5.4167],[119.9263,-5.4203],[119.9233,-5.4353],[119.9167,-5.4388],[119.9105,-5.4451],[119.9084,-5.4526],[119.9034,-5.4588],[119.8992,-5.4616],[119.8968,-5.476],[119.8873,-5.4835],[119.8795,-5.4909],[119.8795,-5.497],[119.8741,-5.5042],[119.8759,-5.5093],[119.8735,-5.519],[119.876,-5.5274],[119.857,-5.5183],[119.8547,-5.5211],[119.8593,-5.5248],[119.8625,-5.5307],[119.8614,-5.5405],[119.8576,-5.5478],[119.8563,-5.5543],[119.8683,-5.5538],[119.8744,-5.5566],[119.8801,-5.5566],[119.89,-5.5623],[119.8942,-5.5615],[119.8984,-5.5571],[119.902,-5.559],[119.9029,-5.564],[119.9061,-5.5642],[119.9087,-5.57],[119.9051,-5.5717],[119.9073,-5.5768],[119.9111,-5.5733],[119.9174,-5.5646],[119.9188,-5.559],[119.9268,-5.5491],[119.9302,-5.5465],[119.9379,-5.5443],[119.9435,-5.5459],[119.9498,-5.5522],[119.9539,-5.5538],[119.9649,-5.5542],[119.9716,-5.5575],[119.9823,-5.5608],[119.9923,-5.5591],[120.0036,-5.5614],[120.0158,-5.569],[120.0302,-5.5733],[120.036,-5.5738],[120.0476,-5.5789],[120.0531,-5.5783],[120.0594,-5.5828],[120.0628,-5.5827],[120.0762,-5.5857],[120.0836,-5.5883],[120.0906,-5.5842],[120.1013,-5.5857],[120.0986,-5.5773],[120.1004,-5.5719],[120.0993,-5.5651],[120.0956,-5.5626],[120.102,-5.5558],[120.0975,-5.5466],[120.0995,-5.5393],[120.0973,-5.5224],[120.0947,-5.5075],[120.0922,-5.5039],[120.0902,-5.4961],[120.0912,-5.4908],[120.084,-5.4803],[120.0835,-5.478],[120.0759,-5.4705],[120.0677,-5.4553],[120.0607,-5.4528],[120.0532,-5.4484],[120.0527,-5.4442],[120.0563,-5.4391],[120.0505,-5.4371],[120.0466,-5.4309],[120.0432,-5.4286],[120.0389,-5.4198],[120.031,-5.413],[120.0298,-5.4102],[120.0344,-5.4068],[120.0288,-5.3951],[120.0246,-5.3911],[120.0158,-5.3899],[120.0116,-5.387],[120.0039,-5.3875],[119.9995,-5.3904],[119.9932,-5.3899],[119.9842,-5.3922],[119.9798,-5.3902],[119.9803,-5.3864],[119.9741,-5.3769],[119.9696,-5.367],[119.9634,-5.3621],[119.9597,-5.3556],[119.9551,-5.3552]]}},{"type":"Feature","properties":{"mhid":"1332:412","alt_name":"KABUPATEN JENEPONTO","latitude":-5.63333,"longitude":119.73333,"sample_value":394},"geometry":{"type":"LineString","coordinates":[[119.9073,-5.5768],[119.9051,-5.5717],[119.9087,-5.57],[119.9061,-5.5642],[119.9029,-5.564],[119.902,-5.559],[119.8984,-5.5571],[119.8942,-5.5615],[119.89,-5.5623],[119.8801,-5.5566],[119.8744,-5.5566],[119.8683,-5.5538],[119.8563,-5.5543],[119.8576,-5.5478],[119.8614,-5.5405],[119.8625,-5.5307],[119.8593,-5.5248],[119.8547,-5.5211],[119.857,-5.5183],[119.876,-5.5274],[119.8735,-5.519],[119.8759,-5.5093],[119.8741,-5.5042],[119.8795,-5.497],[119.8795,-5.4909],[119.8873,-5.4835],[119.8968,-5.476],[119.8992,-5.4616],[119.9034,-5.4588],[119.9084,-5.4526],[119.9105,-5.4451],[119.9167,-5.4388],[119.9233,-5.4353],[119.9263,-5.4203],[119.9308,-5.4167],[119.9373,-5.4057],[119.9374,-5.3867],[119.9313,-5.3945],[119.9193,-5.4007],[119.9122,-5.4142],[119.9082,-5.4203],[119.8994,-5.4224],[119.8919,-5.4223],[119.883,-5.4271],[119.8728,-5.4344],[119.8569,-5.4519],[119.8523,-5.4612],[119.8487,-5.4626],[119.837,-5.4813],[119.8354,-5.4899],[119.833,-5.4961],[119.8317,-5.5049],[119.8266,-5.5106],[119.822,-5.5129],[119.8184,-5.5172],[119.8186,-5.5217],[119.8143,-5.5264],[119.8161,-5.535],[119.8099,-5.5343],[119.8085,-5.5398],[119.805,-5.5444],[119.8015,-5.5546],[119.7938,-5.5573],[119.7906,-5.5627],[119.7804,-5.5689],[119.7749,-5.5655],[119.7731,-5.5694],[119.7692,-5.5696],[119.7664,-5.5663],[119.755,-5.5676],[119.7477,-5.566],[119.7395,-5.5611],[119.7303,-5.5613],[119.7292,-5.5576],[119.7243,-5.5569],[119.7207,-5.5535],[119.7213,-5.5496],[119.7148,-5.5489],[119.7069,-5.5453],[119.7048,-5.5429],[119.701,-5.5313],[119.7047,-5.523],[119.7051,-5.5169],[119.7031,-5.5113],[119.7057,-5.5075],[119.6999,-5.5015],[119.6878,-5.5001],[119.6831,-5.5027],[119.6731,-5.5135],[119.6696,-5.5143],[119.6649,-5.5075],[119.6627,-5.4932],[119.6586,-5.487],[119.6623,-5.4841],[119.6643,-5.4788],[119.6545,-5.4731],[119.6515,-5.4692],[119.6419,-5.4707],[119.6312,-5.474],[119.6376,-5.4633],[119.6393,-5.458],[119.6481,-5.4536],[119.6453,-5.4495],[119.6446,-5.4439],[119.6409,-5.4375],[119.6391,-5.4308],[119.6362,-5.4312],[119.6322,-5.435],[119.6119,-5.4375],[119.6093,-5.4404],[119.5988,-5.4397],[119.5914,-5.4413],[119.5835,-5.4411],[119.573,-5.4467],[119.5562,-5.4403],[119.5509,-5.44],[119.5473,-5.4358],[119.542,-5.4335],[119.5373,-5.4351],[119.5304,-5.4317],[119.5287,-5.4368],[119.5248,-5.4401],[119.5232,-5.4464],[119.5062,-5.4564],[119.5102,-5.4697],[119.5175,-5.4753],[119.5216,-5.4846],[119.5093,-5.4913],[119.5015,-5.4922],[119.4963,-5.4885],[119.4907,-5.4924],[119.4874,-5.4918],[119.4863,-5.5],[119.4886,-5.5047],[119.4871,-5.5107],[119.5053,-5.5233],[119.5077,-5.527],[119.511,-5.5368],[119.5147,-5.5448],[119.5184,-5.5484],[119.5129,-5.5553],[119.5176,-5.5588],[119.5156,-5.5626],[119.5104,-5.5664],[119.5169,-5.5721],[119.5236,-5.5746],[119.525,-5.5786],[119.5308,-5.5809],[119.5346,-5.5863],[119.5412,-5.5838],[119.5469,-5.5866],[119.5521,-5.5937],[119.5553,-5.5936],[119.5577,-5.5983],[119.5635,-5.6],[119.5701,-5.6044],[119.5675,-5.609],[119.5629,-5.6115],[119.5575,-5.6051],[119.5557,-5.5946],[119.5505,-5.6036],[119.5501,-5.6133],[119.5449,-5.6198],[119.5467,-5.6228],[119.5458,-5.6341],[119.5472,-5.6381],[119.5573,-5.649],[119.5762,-5.6586],[119.5799,-5.6571],[119.5882,-5.6447],[119.587,-5.6358],[119.5882,-5.6199],[119.5832,-5.6201],[119.5851,-5.6147],[119.5893,-5.6125],[119.5937,-5.6179],[119.604,-5.6171],[119.6095,-5.6127],[119.6157,-5.6159],[119.6192,-5.6246],[119.628,-5.6247],[119.6379,-5.6294],[119.6505,-5.6285],[119.6531,-5.6363],[119.6586,-5.6442],[119.6599,-5.6482],[119.6568,-5.6545],[119.6517,-5.6535],[119.6477,-5.6575],[119.6405,-5.6602],[119.6397,-5.6641],[119.6408,-5.6721],[119.6491,-5.6818],[119.6589,-5.6836],[119.6658,-5.688],[119.6716,-5.694],[119.6797,-5.6965],[119.6867,-5.697],[119.692,-5.7],[119.7046,-5.7029],[119.7212,-5.7017],[119.7293,-5.7023],[119.7353,-5.7012],[119.7394,-5.6982],[119.7459,-5.7009],[119.7506,-5.7005],[119.7643,-5.703],[119.7715,-5.7019],[119.7892,-5.7019],[119.7943,-5.7007],[119.8082,-5.6904],[119.8223,-5.6732],[119.8288,-5.6722],[119.8346,-5.6732],[119.84,-5.6722],[119.85,-5.6652],[119.8545,-5.6567],[119.8437,-5.6452],[119.8439,-5.6416],[119.84,-5.6345],[119.8506,-5.6332],[119.8579,-5.636],[119.8626,-5.6335],[119.8607,-5.6268],[119.8662,-5.6175],[119.8668,-5.6089],[119.8749,-5.6138],[119.8798,-5.6038],[119.8881,-5.5958],[119.8954,-5.594],[119.8987,-5.5892],[119.9058,-5.583],[119.9073,-5.5768]]}},{"type":"Feature","properties":{"mhid":"1332:413","alt_name":"KABUPATEN TAKALAR","latitude":-5.41667,"longitude":119.51667,"sample_value":153},"geometry":{"type":"LineString","coordinates":[[119.2817,-5.4508],[119.2763,-5.4487],[119.2713,-5.4493],[119.2627,-5.4557],[119.2632,-5.4623],[119.2725,-5.4767],[119.2723,-5.484],[119.2774,-5.4936],[119.2767,-5.5007],[119.2697,-5.4993],[119.2672,-5.5023],[119.2593,-5.5032],[119.2566,-5.4991],[119.2598,-5.495],[119.2599,-5.4868],[119.2545,-5.4839],[119.2503,-5.4872],[119.248,-5.492],[119.2489,-5.4982],[119.2449,-5.5023],[119.2435,-5.5068],[119.2499,-5.5119],[119.2573,-5.514],[119.2547,-5.5219],[119.2605,-5.5266],[119.2682,-5.5263],[119.2684,-5.5342],[119.2729,-5.5364],[119.2856,-5.5345],[119.2901,-5.5311],[119.2967,-5.5316],[119.3081,-5.5258],[119.3103,-5.5208],[119.3171,-5.5155],[119.3199,-5.5107],[119.3205,-5.4952],[119.3187,-5.4886],[119.3203,-5.4756],[119.3171,-5.472],[119.315,-5.4628],[119.3031,-5.4537],[119.2945,-5.4491],[119.2817,-5.4508]]}},{"type":"Feature","properties":{"mhid":"1332:413","alt_name":"KABUPATEN TAKALAR","latitude":-5.41667,"longitude":119.51667,"sample_value":153},"geometry":{"type":"LineString","coordinates":[[119.2352,-5.443],[119.2276,-5.4439],[119.2225,-5.4535],[119.2214,-5.4581],[119.2225,-5.4676],[119.225,-5.47],[119.234,-5.4638],[119.2392,-5.4573],[119.2393,-5.4453],[119.2352,-5.443]]}},{"type":"Feature","properties":{"mhid":"1332:413","alt_name":"KABUPATEN TAKALAR","latitude":-5.41667,"longitude":119.51667,"sample_value":153},"geometry":{"type":"LineString","coordinates":[[119.2297,-5.4342],[119.2222,-5.434],[119.2163,-5.4403],[119.2214,-5.4442],[119.2297,-5.4342]]}},{"type":"Feature","properties":{"mhid":"1332:413","alt_name":"KABUPATEN TAKALAR","latitude":-5.41667,"longitude":119.51667,"sample_value":153},"geometry":{"type":"LineString","coordinates":[[119.1917,-5.4017],[119.1966,-5.3983],[119.1963,-5.3926],[119.1906,-5.3962],[119.1917,-5.4017]]}},{"type":"Feature","properties":{"mhid":"1332:413","alt_name":"KABUPATEN TAKALAR","latitude":-5.41667,"longitude":119.51667,"sample_value":153},"geometry":{"type":"LineString","coordinates":[[119.3417,-5.3297],[119.3446,-5.3253],[119.3412,-5.3206],[119.336,-5.3227],[119.3417,-5.3297]]}},{"type":"Feature","properties":{"mhid":"1332:413","alt_name":"KABUPATEN TAKALAR","latitude":-5.41667,"longitude":119.51667,"sample_value":153},"geometry":{"type":"MultiLineString","coordinates":[[[119.4013,-5.2333],[119.3918,-5.2261],[119.3921,-5.2175],[119.3837,-5.2144],[119.3828,-5.2319],[119.3803,-5.24],[119.3769,-5.2665],[119.3704,-5.2962],[119.3646,-5.313],[119.3599,-5.3204],[119.354,-5.3273],[119.3571,-5.3328],[119.3604,-5.3451],[119.3606,-5.354],[119.3588,-5.3742],[119.3583,-5.3864],[119.359,-5.4],[119.3606,-5.4109],[119.3631,-5.4189],[119.3665,-5.4243],[119.3731,-5.4296],[119.3801,-5.4462],[119.3849,-5.4493],[119.3911,-5.4559],[119.396,-5.4573],[119.4017,-5.4656],[119.4026,-5.4717],[119.4065,-5.4749],[119.4108,-5.4833],[119.4151,-5.4878],[119.4146,-5.4925],[119.4222,-5.4966],[119.4293,-5.5069],[119.4342,-5.5196],[119.4358,-5.5296],[119.4358,-5.538],[119.4246,-5.5471],[119.4198,-5.5464],[119.4179,-5.5604],[119.4241,-5.569],[119.4241,-5.5749],[119.4329,-5.586],[119.4393,-5.5916],[119.4399,-5.5964],[119.4494,-5.6001],[119.4536,-5.6006],[119.4598,-5.6063],[119.4677,-5.6074],[119.4842,-5.6055],[119.489,-5.604],[119.483,-5.5956],[119.4815,-5.59],[119.475,-5.5931],[119.4687,-5.5911],[119.4703,-5.5868],[119.465,-5.5854],[119.4597,-5.5809],[119.4612,-5.5753],[119.4725,-5.5681],[119.4745,-5.5643],[119.4949,-5.5585],[119.5031,-5.5579],[119.5053,-5.5521],[119.5032,-5.5498],[119.5064,-5.5417],[119.511,-5.5368],[119.5077,-5.527],[119.5053,-5.5233],[119.4871,-5.5107],[119.4886,-5.5047],[119.4863,-5.5],[119.4874,-5.4918],[119.4907,-5.4924],[119.4963,-5.4885],[119.5015,-5.4922],[119.5093,-5.4913],[119.5216,-5.4846],[119.5175,-5.4753],[119.5102,-5.4697],[119.5062,-5.4564],[119.5232,-5.4464],[119.5248,-5.4401],[119.5287,-5.4368],[119.5304,-5.4317],[119.5373,-5.4351],[119.542,-5.4335],[119.5473,-5.4358],[119.5509,-5.44],[119.5562,-5.4403],[119.573,-5.4467],[119.5835,-5.4411],[119.5914,-5.4413],[119.5988,-5.4397],[119.6093,-5.4404],[119.6119,-5.4375],[119.6322,-5.435],[119.6362,-5.4312],[119.6376,-5.4254],[119.6299,-5.4246],[119.6307,-5.4207],[119.6374,-5.4138],[119.6415,-5.4143],[119.6454,-5.4071],[119.647,-5.3968],[119.6437,-5.3927],[119.642,-5.3871],[119.6375,-5.3849],[119.6372,-5.3812],[119.6326,-5.376],[119.6235,-5.3737],[119.6177,-5.3678],[119.6171,-5.3624],[119.6192,-5.3562],[119.6155,-5.3479],[119.6046,-5.3401],[119.599,-5.3268],[119.5933,-5.3215],[119.5948,-5.3167],[119.5855,-5.3019],[119.5856,-5.2951],[119.5902,-5.2962],[119.5933,-5.2934],[119.5847,-5.2894],[119.5823,-5.2922],[119.5773,-5.2899],[119.566,-5.2924],[119.561,-5.2909],[119.5532,-5.2957],[119.5488,-5.2954],[119.5433,-5.3013],[119.5418,-5.3063],[119.5378,-5.3057],[119.5311,-5.3016],[119.5286,-5.2982],[119.5208,-5.3015],[119.5117,-5.3099],[119.5022,-5.3125],[119.5055,-5.317],[119.5045,-5.3209],[119.5004,-5.3232],[119.4922,-5.3156],[119.4852,-5.3159],[119.4825,-5.3117],[119.4785,-5.314],[119.4704,-5.3151],[119.4632,-5.3228],[119.4592,-5.3206],[119.4558,-5.3227],[119.4563,-5.3298],[119.4593,-5.331],[119.4691,-5.3259],[119.4737,-5.3261],[119.4755,-5.3302],[119.4677,-5.3358],[119.4658,-5.3421],[119.4621,-5.3458],[119.4617,-5.3505],[119.4577,-5.3553],[119.4498,-5.3561],[119.4475,-5.3654],[119.4574,-5.3711],[119.4552,-5.3763],[119.4474,-5.3831],[119.4424,-5.3847],[119.4397,-5.3879],[119.44,-5.3956],[119.4331,-5.3941],[119.4265,-5.398],[119.43,-5.4043],[119.4277,-5.4132],[119.4236,-5.417],[119.4239,-5.4227],[119.4282,-5.4265],[119.4333,-5.4282],[119.4354,-5.4316],[119.4327,-5.4384],[119.4286,-5.4396],[119.4194,-5.4388],[119.4198,-5.4333],[119.4171,-5.4197],[119.4214,-5.4103],[119.4098,-5.4109],[119.4075,-5.4083],[119.4008,-5.4082],[119.399,-5.4138],[119.394,-5.4167],[119.3906,-5.4136],[119.3809,-5.4156],[119.3789,-5.4239],[119.3705,-5.4254],[119.3639,-5.417],[119.3632,-5.4089],[119.3696,-5.4009],[119.3725,-5.3919],[119.3774,-5.3895],[119.383,-5.3894],[119.392,-5.3866],[119.3937,-5.3816],[119.3896,-5.3766],[119.3884,-5.3719],[119.3913,-5.3681],[119.3954,-5.3677],[119.4007,-5.361],[119.4062,-5.3513],[119.4017,-5.3486],[119.4002,-5.3428],[119.406,-5.3304],[119.3983,-5.3267],[119.3941,-5.3228],[119.3926,-5.3112],[119.3905,-5.3057],[119.3826,-5.3028],[119.3778,-5.2971],[119.3767,-5.2897],[119.3802,-5.2818],[119.3851,-5.2781],[119.3868,-5.2688],[119.3981,-5.2602],[119.3995,-5.2565],[119.4073,-5.2532],[119.4092,-5.2484],[119.4035,-5.2442],[119.404,-5.235],[119.4013,-5.2333]],[[119.4261,-5.4523],[119.4294,-5.4523],[119.4313,-5.4586],[119.4254,-5.4601],[119.4234,-5.4638],[119.4191,-5.4563],[119.4201,-5.4529],[119.4261,-5.4523]]]}},{"type":"Feature","properties":{"mhid":"1332:414","alt_name":"KABUPATEN GOWA","latitude":-5.31667,"longitude":119.75,"sample_value":74},"geometry":{"type":"LineString","coordinates":[[119.4261,-5.4523],[119.4201,-5.4529],[119.4191,-5.4563],[119.4234,-5.4638],[119.4254,-5.4601],[119.4313,-5.4586],[119.4294,-5.4523],[119.4261,-5.4523]]}},{"type":"Feature","properties":{"mhid":"1332:414","alt_name":"KABUPATEN GOWA","latitude":-5.31667,"longitude":119.75,"sample_value":74},"geometry":{"type":"LineString","coordinates":[[119.9705,-5.1395],[119.9635,-5.139],[119.9583,-5.1345],[119.9536,-5.1348],[119.9376,-5.1293],[119.9317,-5.1338],[119.922,-5.1324],[119.9114,-5.1222],[119.9101,-5.1181],[119.899,-5.1117],[119.8967,-5.1032],[119.8934,-5.0967],[119.8879,-5.0934],[119.8844,-5.0938],[119.8802,-5.0907],[119.8701,-5.0931],[119.8641,-5.0919],[119.859,-5.1091],[119.8627,-5.1139],[119.869,-5.1176],[119.8706,-5.1211],[119.866,-5.1294],[119.8646,-5.1347],[119.858,-5.1421],[119.858,-5.1501],[119.8625,-5.1542],[119.8632,-5.1613],[119.8578,-5.1682],[119.8449,-5.1766],[119.8428,-5.1838],[119.8352,-5.1915],[119.8223,-5.198],[119.8154,-5.2037],[119.806,-5.2035],[119.8025,-5.2083],[119.7974,-5.2115],[119.7891,-5.2107],[119.7857,-5.2081],[119.7803,-5.2087],[119.7753,-5.2069],[119.7733,-5.1997],[119.7678,-5.1968],[119.7635,-5.1891],[119.7572,-5.1874],[119.7492,-5.1825],[119.732,-5.1829],[119.7205,-5.1822],[119.7134,-5.1791],[119.7076,-5.1782],[119.6998,-5.1723],[119.688,-5.1678],[119.6745,-5.1684],[119.6648,-5.1659],[119.6561,-5.1691],[119.6507,-5.1774],[119.6434,-5.1776],[119.6416,-5.1722],[119.6291,-5.1734],[119.6259,-5.1692],[119.6274,-5.161],[119.6084,-5.1593],[119.6037,-5.1535],[119.5992,-5.1528],[119.5909,-5.1565],[119.5921,-5.1625],[119.5905,-5.1665],[119.5813,-5.1722],[119.579,-5.171],[119.5717,-5.1749],[119.5567,-5.166],[119.5455,-5.1641],[119.528,-5.1655],[119.5192,-5.1656],[119.5188,-5.1691],[119.5125,-5.1764],[119.5163,-5.1824],[119.5154,-5.1914],[119.5134,-5.1947],[119.5003,-5.1926],[119.4925,-5.1899],[119.4866,-5.1909],[119.4834,-5.1872],[119.4753,-5.1832],[119.4668,-5.1776],[119.4632,-5.1784],[119.4611,-5.1946],[119.4456,-5.1887],[119.4414,-5.1886],[119.4391,-5.1924],[119.4326,-5.1897],[119.4218,-5.1946],[119.4128,-5.191],[119.408,-5.1827],[119.4019,-5.1869],[119.3965,-5.1865],[119.3962,-5.1909],[119.3907,-5.1932],[119.3907,-5.1968],[119.3971,-5.2],[119.4003,-5.1992],[119.4096,-5.2031],[119.4111,-5.2077],[119.4076,-5.2104],[119.4047,-5.2178],[119.4052,-5.2251],[119.4013,-5.2333],[119.404,-5.235],[119.4035,-5.2442],[119.4092,-5.2484],[119.4073,-5.2532],[119.3995,-5.2565],[119.3981,-5.2602],[119.3868,-5.2688],[119.3851,-5.2781],[119.3802,-5.2818],[119.3767,-5.2897],[119.3778,-5.2971],[119.3826,-5.3028],[119.3905,-5.3057],[119.3926,-5.3112],[119.3941,-5.3228],[119.3983,-5.3267],[119.406,-5.3304],[119.4002,-5.3428],[119.4017,-5.3486],[119.4062,-5.3513],[119.4007,-5.361],[119.3954,-5.3677],[119.3913,-5.3681],[119.3884,-5.3719],[119.3896,-5.3766],[119.3937,-5.3816],[119.392,-5.3866],[119.383,-5.3894],[119.3774,-5.3895],[119.3725,-5.3919],[119.3696,-5.4009],[119.3632,-5.4089],[119.3639,-5.417],[119.3705,-5.4254],[119.3789,-5.4239],[119.3809,-5.4156],[119.3906,-5.4136],[119.394,-5.4167],[119.399,-5.4138],[119.4008,-5.4082],[119.4075,-5.4083],[119.4098,-5.4109],[119.4214,-5.4103],[119.4171,-5.4197],[119.4198,-5.4333],[119.4194,-5.4388],[119.4286,-5.4396],[119.4327,-5.4384],[119.4354,-5.4316],[119.4333,-5.4282],[119.4282,-5.4265],[119.4239,-5.4227],[119.4236,-5.417],[119.4277,-5.4132],[119.43,-5.4043],[119.4265,-5.398],[119.4331,-5.3941],[119.44,-5.3956],[119.4397,-5.3879],[119.4424,-5.3847],[119.4474,-5.3831],[119.4552,-5.3763],[119.4574,-5.3711],[119.4475,-5.3654],[119.4498,-5.3561],[119.4577,-5.3553],[119.4617,-5.3505],[119.4621,-5.3458],[119.4658,-5.3421],[119.4677,-5.3358],[119.4755,-5.3302],[119.4737,-5.3261],[119.4691,-5.3259],[119.4593,-5.331],[119.4563,-5.3298],[119.4558,-5.3227],[119.4592,-5.3206],[119.4632,-5.3228],[119.4704,-5.3151],[119.4785,-5.314],[119.4825,-5.3117],[119.4852,-5.3159],[119.4922,-5.3156],[119.5004,-5.3232],[119.5045,-5.3209],[119.5055,-5.317],[119.5022,-5.3125],[119.5117,-5.3099],[119.5208,-5.3015],[119.5286,-5.2982],[119.5311,-5.3016],[119.5378,-5.3057],[119.5418,-5.3063],[119.5433,-5.3013],[119.5488,-5.2954],[119.5532,-5.2957],[119.561,-5.2909],[119.566,-5.2924],[119.5773,-5.2899],[119.5823,-5.2922],[119.5847,-5.2894],[119.5933,-5.2934],[119.5902,-5.2962],[119.5856,-5.2951],[119.5855,-5.3019],[119.5948,-5.3167],[119.5933,-5.3215],[119.599,-5.3268],[119.6046,-5.3401],[119.6155,-5.3479],[119.6192,-5.3562],[119.6171,-5.3624],[119.6177,-5.3678],[119.6235,-5.3737],[119.6326,-5.376],[119.6372,-5.3812],[119.6375,-5.3849],[119.642,-5.3871],[119.6437,-5.3927],[119.647,-5.3968],[119.6454,-5.4071],[119.6415,-5.4143],[119.6374,-5.4138],[119.6307,-5.4207],[119.6299,-5.4246],[119.6376,-5.4254],[119.6362,-5.4312],[119.6391,-5.4308],[119.6409,-5.4375],[119.6446,-5.4439],[119.6453,-5.4495],[119.6481,-5.4536],[119.6393,-5.458],[119.6376,-5.4633],[119.6312,-5.474],[119.6419,-5.4707],[119.6515,-5.4692],[119.6545,-5.4731],[119.6643,-5.4788],[119.6623,-5.4841],[119.6586,-5.487],[119.6627,-5.4932],[119.6649,-5.5075],[119.6696,-5.5143],[119.6731,-5.5135],[119.6831,-5.5027],[119.6878,-5.5001],[119.6999,-5.5015],[119.7057,-5.5075],[119.7031,-5.5113],[119.7051,-5.5169],[119.7047,-5.523],[119.701,-5.5313],[119.7048,-5.5429],[119.7069,-5.5453],[119.7148,-5.5489],[119.7213,-5.5496],[119.7207,-5.5535],[119.7243,-5.5569],[119.7292,-5.5576],[119.7303,-5.5613],[119.7395,-5.5611],[119.7477,-5.566],[119.755,-5.5676],[119.7664,-5.5663],[119.7692,-5.5696],[119.7731,-5.5694],[119.7749,-5.5655],[119.7804,-5.5689],[119.7906,-5.5627],[119.7938,-5.5573],[119.8015,-5.5546],[119.805,-5.5444],[119.8085,-5.5398],[119.8099,-5.5343],[119.8161,-5.535],[119.8143,-5.5264],[119.8186,-5.5217],[119.8184,-5.5172],[119.822,-5.5129],[119.8266,-5.5106],[119.8317,-5.5049],[119.833,-5.4961],[119.8354,-5.4899],[119.837,-5.4813],[119.8487,-5.4626],[119.8523,-5.4612],[119.8569,-5.4519],[119.8728,-5.4344],[119.883,-5.4271],[119.8919,-5.4223],[119.8994,-5.4224],[119.9082,-5.4203],[119.9122,-5.4142],[119.9193,-5.4007],[119.9313,-5.3945],[119.9374,-5.3867],[119.938,-5.3846],[119.932,-5.3771],[119.9302,-5.3703],[119.9316,-5.3647],[119.9368,-5.3563],[119.9332,-5.353],[119.9289,-5.3392],[119.9376,-5.3251],[119.9407,-5.3175],[119.9445,-5.3138],[119.9453,-5.3071],[119.9561,-5.2883],[119.9741,-5.277],[119.9731,-5.2705],[119.9765,-5.2661],[119.976,-5.257],[119.9807,-5.2476],[119.9862,-5.2439],[119.9873,-5.2396],[119.9916,-5.2371],[119.998,-5.23],[119.9963,-5.2249],[119.9972,-5.2189],[119.9931,-5.2162],[119.9918,-5.2063],[119.9963,-5.2038],[119.9965,-5.1998],[120.0032,-5.2004],[120.0111,-5.1978],[120.0141,-5.1997],[120.0268,-5.1973],[120.0312,-5.1856],[120.0215,-5.1826],[120.0203,-5.1766],[120.0093,-5.1708],[120.0035,-5.1654],[119.9973,-5.1652],[119.99,-5.1674],[119.985,-5.1672],[119.9768,-5.1636],[119.9722,-5.1577],[119.9749,-5.1505],[119.9727,-5.142],[119.9705,-5.1395]]}},{"type":"Feature","properties":{"mhid":"1332:415","alt_name":"KABUPATEN SINJAI","latitude":-5.21667,"longitude":120.15,"sample_value":975},"geometry":{"type":"LineString","coordinates":[[120.3921,-5.1259],[120.3965,-5.1223],[120.3911,-5.116],[120.3876,-5.122],[120.3921,-5.1259]]}},{"type":"Feature","properties":{"mhid":"1332:415","alt_name":"KABUPATEN SINJAI","latitude":-5.21667,"longitude":120.15,"sample_value":975},"geometry":{"type":"LineString","coordinates":[[120.2868,-5.1126],[120.2725,-5.1073],[120.2651,-5.1013],[120.2634,-5.1056],[120.2657,-5.1136],[120.2624,-5.1166],[120.2581,-5.1147],[120.248,-5.0932],[120.2421,-5.0931],[120.2317,-5.0875],[120.232,-5.0921],[120.2284,-5.0961],[120.2253,-5.0926],[120.2207,-5.0939],[120.2211,-5.0973],[120.2153,-5.1001],[120.2082,-5.1],[120.2017,-5.0964],[120.1975,-5.0898],[120.1908,-5.0759],[120.1809,-5.0692],[120.1746,-5.0762],[120.1623,-5.0752],[120.1617,-5.0662],[120.159,-5.0629],[120.1526,-5.0655],[120.1519,-5.0595],[120.1421,-5.0595],[120.1337,-5.0496],[120.1317,-5.0444],[120.1246,-5.0459],[120.1212,-5.0561],[120.1092,-5.0631],[120.1093,-5.0671],[120.1064,-5.0712],[120.097,-5.0758],[120.0844,-5.0754],[120.0799,-5.0827],[120.0772,-5.0838],[120.0765,-5.0905],[120.0727,-5.0926],[120.072,-5.0987],[120.064,-5.1008],[120.0651,-5.1049],[120.061,-5.1108],[120.0609,-5.1226],[120.0523,-5.1269],[120.0392,-5.1263],[120.0351,-5.1287],[120.028,-5.1277],[120.018,-5.1316],[120.0166,-5.1266],[120.0111,-5.1226],[120,-5.1327],[119.9946,-5.1302],[119.9877,-5.1303],[119.9823,-5.123],[119.9757,-5.1293],[119.9706,-5.1319],[119.9705,-5.1395],[119.9727,-5.142],[119.9749,-5.1505],[119.9722,-5.1577],[119.9768,-5.1636],[119.985,-5.1672],[119.99,-5.1674],[119.9973,-5.1652],[120.0035,-5.1654],[120.0093,-5.1708],[120.0203,-5.1766],[120.0215,-5.1826],[120.0312,-5.1856],[120.0268,-5.1973],[120.0141,-5.1997],[120.0111,-5.1978],[120.0032,-5.2004],[119.9965,-5.1998],[119.9963,-5.2038],[119.9918,-5.2063],[119.9931,-5.2162],[119.9972,-5.2189],[119.9963,-5.2249],[119.998,-5.23],[119.9916,-5.2371],[119.9873,-5.2396],[119.9862,-5.2439],[119.9807,-5.2476],[119.976,-5.257],[119.9765,-5.2661],[119.9731,-5.2705],[119.9741,-5.277],[119.9561,-5.2883],[119.9453,-5.3071],[119.9445,-5.3138],[119.9407,-5.3175],[119.9376,-5.3251],[119.9289,-5.3392],[119.9332,-5.353],[119.9368,-5.3563],[119.9388,-5.355],[119.9551,-5.3552],[119.9551,-5.3512],[119.9588,-5.3431],[119.9691,-5.3415],[119.9798,-5.3337],[119.9922,-5.327],[119.9952,-5.3229],[120.0058,-5.3227],[120.0125,-5.3257],[120.0127,-5.3288],[120.02,-5.3381],[120.0329,-5.3394],[120.0397,-5.347],[120.0547,-5.3395],[120.0569,-5.3357],[120.0615,-5.3331],[120.0687,-5.3335],[120.0736,-5.3354],[120.0767,-5.3328],[120.0816,-5.324],[120.0895,-5.3211],[120.0965,-5.3225],[120.098,-5.3168],[120.1015,-5.3172],[120.1159,-5.3144],[120.1223,-5.3107],[120.1257,-5.3065],[120.1294,-5.3081],[120.1316,-5.3022],[120.1349,-5.3004],[120.1361,-5.2945],[120.1412,-5.2885],[120.1487,-5.2983],[120.1601,-5.3032],[120.1691,-5.3113],[120.1791,-5.311],[120.1897,-5.3065],[120.1964,-5.3056],[120.2035,-5.3004],[120.2117,-5.3027],[120.2227,-5.3025],[120.23,-5.2967],[120.2419,-5.2971],[120.2494,-5.3008],[120.2542,-5.3017],[120.2606,-5.2969],[120.2753,-5.2987],[120.2832,-5.2926],[120.2859,-5.2873],[120.2918,-5.2867],[120.2945,-5.2898],[120.3015,-5.2913],[120.3021,-5.3008],[120.3082,-5.2971],[120.314,-5.2972],[120.3187,-5.2948],[120.3212,-5.2902],[120.3256,-5.2908],[120.3342,-5.2877],[120.3307,-5.2757],[120.3273,-5.2694],[120.3278,-5.2654],[120.3244,-5.2511],[120.3178,-5.2369],[120.314,-5.2329],[120.3149,-5.2278],[120.3121,-5.2235],[120.3112,-5.217],[120.3025,-5.2071],[120.2962,-5.2034],[120.2838,-5.1836],[120.2812,-5.1756],[120.2778,-5.1715],[120.2773,-5.1604],[120.2742,-5.1492],[120.2709,-5.1425],[120.284,-5.1235],[120.2866,-5.1221],[120.2896,-5.1149],[120.2868,-5.1126]]}},{"type":"Feature","properties":{"mhid":"1332:415","alt_name":"KABUPATEN SINJAI","latitude":-5.21667,"longitude":120.15,"sample_value":975},"geometry":{"type":"LineString","coordinates":[[120.4244,-5.0493],[120.423,-5.0444],[120.4199,-5.0431],[120.416,-5.0494],[120.4122,-5.0525],[120.4204,-5.0551],[120.4251,-5.0539],[120.4244,-5.0493]]}},{"type":"Feature","properties":{"mhid":"1332:416","alt_name":"KABUPATEN MAROS","latitude":-5.05,"longitude":119.71667,"sample_value":458},"geometry":{"type":"LineString","coordinates":[[119.8641,-5.0919],[119.861,-5.0896],[119.8558,-5.0796],[119.8542,-5.0707],[119.8514,-5.064],[119.8468,-5.0591],[119.8461,-5.0497],[119.8474,-5.0458],[119.8539,-5.0401],[119.8562,-5.0336],[119.8629,-5.0326],[119.8702,-5.0236],[119.8706,-5.0187],[119.878,-5.0122],[119.885,-5],[119.8838,-4.9931],[119.8884,-4.9785],[119.8872,-4.9693],[119.8842,-4.9637],[119.8853,-4.9587],[119.8896,-4.9524],[119.8932,-4.944],[119.8964,-4.9447],[119.8956,-4.9358],[119.898,-4.9337],[119.8946,-4.9275],[119.9002,-4.9166],[119.9057,-4.9133],[119.9121,-4.9069],[119.9166,-4.9073],[119.9249,-4.8941],[119.9287,-4.8936],[119.9336,-4.8869],[119.9345,-4.8824],[119.9327,-4.8743],[119.9177,-4.8673],[119.921,-4.8574],[119.9303,-4.8489],[119.9311,-4.846],[119.9363,-4.8434],[119.9391,-4.8393],[119.9432,-4.828],[119.9434,-4.8239],[119.9465,-4.8179],[119.9443,-4.8136],[119.9444,-4.8084],[119.9504,-4.7953],[119.9531,-4.7928],[119.9694,-4.7886],[119.9727,-4.78],[119.9679,-4.775],[119.9627,-4.7726],[119.9554,-4.7663],[119.9446,-4.7603],[119.9372,-4.7586],[119.9281,-4.7517],[119.9231,-4.7437],[119.9126,-4.7352],[119.9112,-4.7324],[119.8998,-4.7316],[119.8965,-4.7274],[119.8898,-4.7251],[119.8846,-4.7188],[119.879,-4.7295],[119.8721,-4.7341],[119.8665,-4.7436],[119.8602,-4.7411],[119.8525,-4.7429],[119.8442,-4.7428],[119.8379,-4.7488],[119.826,-4.7568],[119.8171,-4.7619],[119.8116,-4.7684],[119.8133,-4.7796],[119.8113,-4.7836],[119.8128,-4.7943],[119.8066,-4.8088],[119.8104,-4.82],[119.8102,-4.8236],[119.8056,-4.831],[119.8051,-4.8429],[119.802,-4.8456],[119.8011,-4.8549],[119.7975,-4.8629],[119.7937,-4.8679],[119.7983,-4.8714],[119.7976,-4.8747],[119.8042,-4.8842],[119.8046,-4.8891],[119.8003,-4.9068],[119.8003,-4.9134],[119.8052,-4.9232],[119.8027,-4.9267],[119.7975,-4.924],[119.7934,-4.9269],[119.7882,-4.9265],[119.782,-4.9313],[119.7789,-4.9406],[119.7741,-4.9428],[119.7529,-4.9372],[119.7503,-4.931],[119.7467,-4.929],[119.7259,-4.9381],[119.7209,-4.9416],[119.7155,-4.9412],[119.7051,-4.945],[119.6979,-4.9458],[119.683,-4.9503],[119.6788,-4.9526],[119.6689,-4.9508],[119.6685,-4.9394],[119.6702,-4.9325],[119.6635,-4.9267],[119.6614,-4.9232],[119.6566,-4.922],[119.6511,-4.924],[119.6409,-4.916],[119.6423,-4.9058],[119.6277,-4.902],[119.6199,-4.894],[119.6119,-4.8879],[119.6021,-4.8904],[119.6028,-4.8954],[119.598,-4.9055],[119.595,-4.9047],[119.5867,-4.8969],[119.5856,-4.9036],[119.581,-4.9052],[119.575,-4.9048],[119.5706,-4.9026],[119.5638,-4.8922],[119.5576,-4.8938],[119.5542,-4.89],[119.5428,-4.8925],[119.5372,-4.8904],[119.53,-4.8923],[119.5279,-4.8867],[119.5199,-4.8835],[119.5137,-4.8869],[119.5123,-4.8929],[119.5208,-4.9051],[119.5237,-4.9154],[119.5243,-4.924],[119.5175,-4.9429],[119.5142,-4.9468],[119.5096,-4.9473],[119.5027,-4.9563],[119.4975,-4.9694],[119.4899,-4.9835],[119.487,-4.9833],[119.4791,-4.9896],[119.4769,-4.994],[119.4772,-5.0025],[119.4761,-5.014],[119.4735,-5.0161],[119.4709,-5.0234],[119.4664,-5.026],[119.4677,-5.0343],[119.4759,-5.0331],[119.4783,-5.0464],[119.478,-5.059],[119.484,-5.0593],[119.4871,-5.0654],[119.4951,-5.0652],[119.5018,-5.0695],[119.514,-5.067],[119.5161,-5.0623],[119.5277,-5.064],[119.5326,-5.0719],[119.5368,-5.0754],[119.5412,-5.0848],[119.5374,-5.0937],[119.5428,-5.1115],[119.5403,-5.1168],[119.539,-5.1253],[119.5361,-5.1308],[119.5283,-5.1324],[119.5266,-5.1384],[119.5213,-5.1434],[119.521,-5.1474],[119.5165,-5.1506],[119.51,-5.147],[119.5075,-5.1512],[119.5023,-5.1465],[119.4989,-5.151],[119.4982,-5.1557],[119.502,-5.162],[119.5135,-5.1621],[119.5192,-5.1656],[119.528,-5.1655],[119.5455,-5.1641],[119.5567,-5.166],[119.5717,-5.1749],[119.579,-5.171],[119.5813,-5.1722],[119.5905,-5.1665],[119.5921,-5.1625],[119.5909,-5.1565],[119.5992,-5.1528],[119.6037,-5.1535],[119.6084,-5.1593],[119.6274,-5.161],[119.6259,-5.1692],[119.6291,-5.1734],[119.6416,-5.1722],[119.6434,-5.1776],[119.6507,-5.1774],[119.6561,-5.1691],[119.6648,-5.1659],[119.6745,-5.1684],[119.688,-5.1678],[119.6998,-5.1723],[119.7076,-5.1782],[119.7134,-5.1791],[119.7205,-5.1822],[119.732,-5.1829],[119.7492,-5.1825],[119.7572,-5.1874],[119.7635,-5.1891],[119.7678,-5.1968],[119.7733,-5.1997],[119.7753,-5.2069],[119.7803,-5.2087],[119.7857,-5.2081],[119.7891,-5.2107],[119.7974,-5.2115],[119.8025,-5.2083],[119.806,-5.2035],[119.8154,-5.2037],[119.8223,-5.198],[119.8352,-5.1915],[119.8428,-5.1838],[119.8449,-5.1766],[119.8578,-5.1682],[119.8632,-5.1613],[119.8625,-5.1542],[119.858,-5.1501],[119.858,-5.1421],[119.8646,-5.1347],[119.866,-5.1294],[119.8706,-5.1211],[119.869,-5.1176],[119.8627,-5.1139],[119.859,-5.1091],[119.8641,-5.0919]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[117.4451,-7.575],[117.4427,-7.5751],[117.4409,-7.5824],[117.4446,-7.5871],[117.4502,-7.5896],[117.454,-7.5885],[117.4532,-7.5833],[117.4451,-7.575]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[117.2882,-7.5251],[117.284,-7.5259],[117.2796,-7.5313],[117.2797,-7.5342],[117.2842,-7.5389],[117.2983,-7.5384],[117.3125,-7.5386],[117.3207,-7.5372],[117.3265,-7.5349],[117.3332,-7.528],[117.3216,-7.5293],[117.3062,-7.5287],[117.2955,-7.5258],[117.2882,-7.5251]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[117.4434,-7.5121],[117.4377,-7.5127],[117.4243,-7.5178],[117.4301,-7.5378],[117.4378,-7.5343],[117.4443,-7.5137],[117.4434,-7.5121]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[117.1844,-7.4926],[117.1805,-7.4934],[117.1762,-7.4992],[117.1752,-7.5061],[117.1779,-7.5084],[117.1838,-7.5046],[117.1972,-7.5016],[117.1844,-7.4926]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[117.4812,-7.4808],[117.478,-7.4809],[117.475,-7.4855],[117.4761,-7.4936],[117.4805,-7.4977],[117.4856,-7.4951],[117.4856,-7.4849],[117.4812,-7.4808]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[117.5928,-7.4049],[117.5926,-7.4017],[117.586,-7.3984],[117.5863,-7.403],[117.5928,-7.4049]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[117.8119,-7.3964],[117.8106,-7.3939],[117.8037,-7.3921],[117.8022,-7.3997],[117.8074,-7.4035],[117.8174,-7.4037],[117.8119,-7.3964]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[117.7487,-7.3627],[117.7428,-7.3657],[117.7432,-7.3743],[117.749,-7.3739],[117.7505,-7.3713],[117.7506,-7.364],[117.7487,-7.3627]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[118.1113,-7.2973],[118.1035,-7.306],[118.1112,-7.3091],[118.1139,-7.3058],[118.1137,-7.3008],[118.1113,-7.2973]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[118.4056,-7.1775],[118.3948,-7.183],[118.3958,-7.1863],[118.3866,-7.1911],[118.3817,-7.1913],[118.3795,-7.1944],[118.3735,-7.1957],[118.3688,-7.1942],[118.3685,-7.2002],[118.38,-7.1958],[118.3845,-7.1975],[118.3888,-7.1944],[118.3979,-7.192],[118.4047,-7.1845],[118.4084,-7.1826],[118.4056,-7.1775]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[118.1776,-7.0731],[118.1745,-7.0732],[118.1674,-7.0833],[118.1591,-7.0908],[118.1653,-7.0912],[118.169,-7.0897],[118.1729,-7.0799],[118.1776,-7.0731]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[118.6543,-7.0709],[118.6533,-7.0629],[118.6487,-7.0645],[118.6484,-7.0688],[118.6543,-7.0709]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[117.9945,-7.068],[117.9983,-7.0637],[117.9951,-7.0613],[117.9901,-7.0669],[117.9945,-7.068]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[118.9058,-6.8876],[118.9111,-6.8847],[118.9099,-6.8819],[118.9037,-6.8838],[118.9058,-6.8876]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[119.1348,-6.8596],[119.1293,-6.8658],[119.1295,-6.8681],[119.1355,-6.8747],[119.1388,-6.8631],[119.1348,-6.8596]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[118.9644,-6.8649],[118.9669,-6.8634],[118.9686,-6.8568],[118.9658,-6.8531],[118.9616,-6.8553],[118.9621,-6.8624],[118.9644,-6.8649]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[119.1143,-6.8368],[119.1089,-6.8379],[119.0995,-6.8458],[119.0966,-6.852],[119.0946,-6.8612],[119.0968,-6.8676],[119.1012,-6.869],[119.1049,-6.8653],[119.1152,-6.8599],[119.1222,-6.859],[119.1222,-6.8476],[119.1249,-6.8437],[119.1196,-6.8403],[119.1125,-6.844],[119.1109,-6.8386],[119.1143,-6.8368]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[119.1946,-6.8181],[119.1876,-6.8243],[119.1857,-6.8184],[119.1801,-6.8242],[119.1749,-6.8255],[119.1686,-6.8366],[119.1691,-6.8427],[119.1745,-6.8415],[119.1781,-6.8345],[119.182,-6.8301],[119.1921,-6.822],[119.1946,-6.8181]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[118.2782,-6.683],[118.2768,-6.6834],[118.2735,-6.6934],[118.2762,-6.6945],[118.2782,-6.683]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[118.9308,-6.6454],[118.9268,-6.6486],[118.9274,-6.6548],[118.931,-6.6573],[118.9328,-6.6503],[118.9308,-6.6454]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[118.8877,-6.6053],[118.8834,-6.6054],[118.8851,-6.6119],[118.889,-6.6103],[118.8877,-6.6053]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[118.8685,-6.6001],[118.8685,-6.5939],[118.8602,-6.587],[118.8549,-6.5918],[118.8576,-6.5949],[118.8685,-6.6001]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[118.8345,-6.57],[118.8304,-6.5687],[118.825,-6.5713],[118.8266,-6.5756],[118.8319,-6.5808],[118.8391,-6.5838],[118.8421,-6.5785],[118.8404,-6.5738],[118.8345,-6.57]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[118.4526,-5.4999],[118.4496,-5.5047],[118.4525,-5.5116],[118.4566,-5.5118],[118.4571,-5.5028],[118.4526,-5.4999]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[118.6313,-5.487],[118.6283,-5.4888],[118.6273,-5.4941],[118.6303,-5.5023],[118.633,-5.502],[118.6344,-5.489],[118.6313,-5.487]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[118.431,-5.414],[118.4361,-5.4094],[118.4344,-5.4001],[118.4284,-5.3948],[118.4243,-5.399],[118.4259,-5.4039],[118.4251,-5.4134],[118.431,-5.414]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[117.9278,-5.3529],[117.9217,-5.3529],[117.9205,-5.3561],[117.9223,-5.3616],[117.924,-5.3726],[117.9274,-5.3893],[117.9308,-5.3965],[117.9365,-5.4043],[117.9447,-5.4078],[117.9505,-5.4057],[117.9536,-5.3931],[117.9506,-5.3824],[117.9352,-5.3607],[117.934,-5.3569],[117.9278,-5.3529]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[117.8902,-5.2955],[117.8936,-5.2826],[117.8954,-5.2706],[117.8986,-5.2614],[117.8938,-5.2459],[117.8929,-5.2381],[117.8881,-5.2343],[117.8866,-5.2384],[117.8857,-5.2521],[117.8907,-5.2632],[117.8889,-5.2746],[117.8879,-5.2915],[117.8902,-5.2955]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[117.6555,-5.2221],[117.6652,-5.2125],[117.6809,-5.1994],[117.6816,-5.1964],[117.6783,-5.1903],[117.6695,-5.1806],[117.6632,-5.1762],[117.6596,-5.1758],[117.6541,-5.184],[117.6541,-5.1906],[117.6605,-5.2017],[117.6593,-5.2089],[117.6551,-5.2176],[117.6555,-5.2221]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[117.8834,-5.1679],[117.8793,-5.17],[117.8777,-5.1736],[117.8792,-5.1778],[117.8849,-5.1788],[117.8903,-5.1716],[117.8834,-5.1679]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[118.1459,-5.1141],[118.1411,-5.1282],[118.1487,-5.1302],[118.155,-5.1346],[118.155,-5.1291],[118.1492,-5.1159],[118.1459,-5.1141]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[117.0508,-5.0906],[117.0469,-5.0892],[117.0461,-5.0967],[117.054,-5.1016],[117.0585,-5.1015],[117.0621,-5.0981],[117.0524,-5.0902],[117.0508,-5.0906]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[117.9158,-5.0487],[117.9137,-5.0559],[117.9164,-5.0568],[117.9211,-5.0519],[117.9158,-5.0487]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[117.0393,-5.0534],[117.0422,-5.0497],[117.0423,-5.0425],[117.0391,-5.0414],[117.0393,-5.0534]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[117.0716,-5.0177],[117.0684,-5.0218],[117.073,-5.025],[117.0753,-5.019],[117.0716,-5.0177]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[119.4754,-4.7015],[119.469,-4.7047],[119.4688,-4.7085],[119.4732,-4.7116],[119.4771,-4.7066],[119.4754,-4.7015]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[119.4503,-4.7081],[119.4599,-4.6969],[119.4571,-4.6967],[119.4481,-4.7042],[119.4503,-4.7081]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"LineString","coordinates":[[119.6968,-4.788],[119.692,-4.7829],[119.6904,-4.7745],[119.6833,-4.7715],[119.6821,-4.7685],[119.6896,-4.7587],[119.6936,-4.7587],[119.6951,-4.7548],[119.6913,-4.7499],[119.6902,-4.7397],[119.6922,-4.7215],[119.6894,-4.7192],[119.6808,-4.7182],[119.6747,-4.721],[119.6679,-4.7191],[119.6594,-4.7234],[119.6558,-4.7148],[119.6552,-4.7058],[119.6586,-4.7029],[119.6588,-4.6967],[119.6568,-4.69],[119.6534,-4.6853],[119.6561,-4.6746],[119.662,-4.6666],[119.6643,-4.6613],[119.6625,-4.6559],[119.6595,-4.6546],[119.647,-4.6446],[119.6447,-4.6413],[119.6456,-4.6353],[119.6357,-4.6172],[119.6373,-4.613],[119.6348,-4.6017],[119.6321,-4.5996],[119.6306,-4.5907],[119.6308,-4.5847],[119.6275,-4.5826],[119.6246,-4.5755],[119.6197,-4.57],[119.6201,-4.5678],[119.6121,-4.5616],[119.6024,-4.5589],[119.598,-4.5558],[119.5944,-4.5565],[119.5961,-4.5611],[119.5939,-4.5707],[119.5872,-4.5869],[119.5796,-4.5966],[119.5726,-4.6023],[119.5627,-4.6226],[119.5587,-4.6288],[119.5532,-4.6337],[119.5511,-4.6448],[119.5468,-4.6526],[119.5411,-4.6597],[119.525,-4.6763],[119.5214,-4.6903],[119.5181,-4.6953],[119.516,-4.7058],[119.5179,-4.7087],[119.5172,-4.7156],[119.5099,-4.7228],[119.5009,-4.7245],[119.4968,-4.7308],[119.4923,-4.7329],[119.4896,-4.7413],[119.4823,-4.7515],[119.4837,-4.7563],[119.4882,-4.7596],[119.4915,-4.7656],[119.493,-4.7724],[119.4927,-4.7787],[119.4948,-4.7937],[119.4933,-4.7997],[119.498,-4.8073],[119.4979,-4.817],[119.5015,-4.8244],[119.4978,-4.8311],[119.5013,-4.843],[119.5002,-4.8479],[119.5049,-4.8554],[119.5057,-4.8648],[119.5092,-4.8709],[119.5129,-4.8726],[119.5199,-4.8814],[119.5199,-4.8835],[119.5279,-4.8867],[119.53,-4.8923],[119.5372,-4.8904],[119.5428,-4.8925],[119.5542,-4.89],[119.5576,-4.8938],[119.5638,-4.8922],[119.5706,-4.9026],[119.575,-4.9048],[119.581,-4.9052],[119.5856,-4.9036],[119.5867,-4.8969],[119.595,-4.9047],[119.598,-4.9055],[119.6028,-4.8954],[119.6021,-4.8904],[119.6119,-4.8879],[119.6199,-4.894],[119.6277,-4.902],[119.6423,-4.9058],[119.6409,-4.916],[119.6511,-4.924],[119.6566,-4.922],[119.6614,-4.9232],[119.6635,-4.9267],[119.6702,-4.9325],[119.6685,-4.9394],[119.6689,-4.9508],[119.6788,-4.9526],[119.683,-4.9503],[119.6979,-4.9458],[119.7051,-4.945],[119.7155,-4.9412],[119.7209,-4.9416],[119.7259,-4.9381],[119.7467,-4.929],[119.7503,-4.931],[119.7529,-4.9372],[119.7741,-4.9428],[119.7789,-4.9406],[119.782,-4.9313],[119.7882,-4.9265],[119.7934,-4.9269],[119.7975,-4.924],[119.8027,-4.9267],[119.8052,-4.9232],[119.8003,-4.9134],[119.8003,-4.9068],[119.8046,-4.8891],[119.8042,-4.8842],[119.7976,-4.8747],[119.7983,-4.8714],[119.7937,-4.8679],[119.7975,-4.8629],[119.8011,-4.8549],[119.802,-4.8456],[119.8051,-4.8429],[119.8056,-4.831],[119.8102,-4.8236],[119.8104,-4.82],[119.8066,-4.8088],[119.8034,-4.8096],[119.789,-4.8088],[119.7848,-4.8061],[119.7817,-4.8124],[119.7733,-4.8219],[119.7665,-4.8231],[119.7629,-4.8132],[119.7637,-4.8081],[119.7596,-4.8049],[119.7533,-4.8031],[119.7427,-4.8068],[119.7283,-4.8171],[119.7268,-4.8229],[119.7207,-4.8214],[119.7159,-4.8178],[119.7131,-4.8114],[119.6985,-4.7992],[119.6964,-4.7918],[119.6968,-4.788]]}},{"type":"Feature","properties":{"mhid":"1332:418","alt_name":"KABUPATEN BARRU","latitude":-4.43333,"longitude":119.68333,"sample_value":141},"geometry":{"type":"LineString","coordinates":[[119.6059,-4.3404],[119.6037,-4.3375],[119.5994,-4.3381],[119.598,-4.3436],[119.5998,-4.3462],[119.5975,-4.3568],[119.6002,-4.3572],[119.6032,-4.349],[119.602,-4.3423],[119.6059,-4.3404]]}},{"type":"Feature","properties":{"mhid":"1332:418","alt_name":"KABUPATEN BARRU","latitude":-4.43333,"longitude":119.68333,"sample_value":141},"geometry":{"type":"LineString","coordinates":[[119.6203,-4.0671],[119.6185,-4.0715],[119.6097,-4.0772],[119.606,-4.0844],[119.6085,-4.0869],[119.6154,-4.0868],[119.6164,-4.0914],[119.613,-4.0955],[119.6082,-4.0953],[119.6064,-4.1028],[119.6076,-4.107],[119.6163,-4.1074],[119.6197,-4.1137],[119.6205,-4.1316],[119.6177,-4.139],[119.614,-4.1435],[119.6149,-4.146],[119.622,-4.152],[119.6359,-4.1608],[119.6383,-4.1689],[119.6382,-4.1741],[119.6359,-4.1799],[119.6254,-4.1816],[119.6286,-4.1924],[119.626,-4.1991],[119.6194,-4.2048],[119.6185,-4.2104],[119.6088,-4.2164],[119.6098,-4.2205],[119.6168,-4.2179],[119.6197,-4.2263],[119.6262,-4.2292],[119.6259,-4.2347],[119.623,-4.2382],[119.6146,-4.2398],[119.6071,-4.2359],[119.6038,-4.238],[119.5984,-4.2351],[119.5954,-4.2384],[119.5962,-4.2481],[119.5993,-4.2516],[119.6078,-4.2553],[119.6106,-4.2582],[119.6107,-4.2626],[119.6067,-4.2654],[119.6156,-4.2768],[119.6199,-4.2807],[119.6252,-4.2911],[119.6268,-4.297],[119.6313,-4.2956],[119.635,-4.3009],[119.635,-4.3057],[119.6316,-4.3077],[119.6319,-4.3117],[119.6358,-4.3151],[119.6364,-4.3193],[119.6303,-4.3311],[119.6214,-4.3376],[119.6224,-4.3484],[119.6291,-4.3486],[119.6286,-4.3534],[119.625,-4.3556],[119.6269,-4.3624],[119.6162,-4.371],[119.6149,-4.3773],[119.6092,-4.3841],[119.6086,-4.3892],[119.6058,-4.3942],[119.6048,-4.4011],[119.6014,-4.4097],[119.597,-4.4163],[119.597,-4.4218],[119.6009,-4.4259],[119.5971,-4.441],[119.5992,-4.4439],[119.5966,-4.451],[119.6,-4.463],[119.5997,-4.4744],[119.5915,-4.4999],[119.5885,-4.5121],[119.5812,-4.529],[119.5858,-4.5345],[119.5907,-4.5429],[119.592,-4.5526],[119.5944,-4.5565],[119.598,-4.5558],[119.6024,-4.5589],[119.6121,-4.5616],[119.6201,-4.5678],[119.6197,-4.57],[119.6246,-4.5755],[119.6275,-4.5826],[119.6308,-4.5847],[119.6306,-4.5907],[119.6321,-4.5996],[119.6348,-4.6017],[119.6373,-4.613],[119.6357,-4.6172],[119.6456,-4.6353],[119.6447,-4.6413],[119.647,-4.6446],[119.6595,-4.6546],[119.6625,-4.6559],[119.6643,-4.6613],[119.662,-4.6666],[119.6561,-4.6746],[119.6534,-4.6853],[119.6568,-4.69],[119.6588,-4.6967],[119.6586,-4.7029],[119.6552,-4.7058],[119.6558,-4.7148],[119.6594,-4.7234],[119.6679,-4.7191],[119.6747,-4.721],[119.6808,-4.7182],[119.6894,-4.7192],[119.6922,-4.7215],[119.6902,-4.7397],[119.6913,-4.7499],[119.6951,-4.7548],[119.6936,-4.7587],[119.6896,-4.7587],[119.6821,-4.7685],[119.6833,-4.7715],[119.6904,-4.7745],[119.692,-4.7829],[119.6968,-4.788],[119.6989,-4.7893],[119.7064,-4.7875],[119.7214,-4.7886],[119.7241,-4.7875],[119.7297,-4.799],[119.7387,-4.7956],[119.7488,-4.7966],[119.7493,-4.7911],[119.7592,-4.7887],[119.7543,-4.7812],[119.7556,-4.7759],[119.7635,-4.7699],[119.766,-4.7613],[119.7698,-4.7551],[119.7867,-4.7531],[119.7902,-4.7611],[119.7952,-4.7648],[119.7998,-4.7653],[119.8053,-4.7625],[119.8079,-4.7572],[119.8207,-4.7444],[119.8224,-4.7385],[119.821,-4.7301],[119.8223,-4.7202],[119.8172,-4.7144],[119.8147,-4.7064],[119.8067,-4.7001],[119.7974,-4.6962],[119.7886,-4.6898],[119.7771,-4.6872],[119.7722,-4.6889],[119.7664,-4.6858],[119.76,-4.6848],[119.7583,-4.6798],[119.7608,-4.666],[119.7563,-4.6569],[119.7574,-4.6481],[119.7542,-4.6411],[119.7576,-4.6323],[119.7576,-4.6268],[119.7634,-4.6243],[119.7653,-4.616],[119.7721,-4.6145],[119.7854,-4.6061],[119.7885,-4.6059],[119.7894,-4.5999],[119.795,-4.5985],[119.7977,-4.5957],[119.7989,-4.5852],[119.8004,-4.5816],[119.8002,-4.5734],[119.798,-4.566],[119.7991,-4.5626],[119.8062,-4.5545],[119.8076,-4.5505],[119.8063,-4.5366],[119.8071,-4.5302],[119.8048,-4.5269],[119.7986,-4.5227],[119.7956,-4.5176],[119.7886,-4.5107],[119.7875,-4.5012],[119.784,-4.4961],[119.7721,-4.4881],[119.7647,-4.4889],[119.7568,-4.4782],[119.755,-4.4725],[119.755,-4.4622],[119.7519,-4.4496],[119.754,-4.4388],[119.7539,-4.4237],[119.7565,-4.4207],[119.7547,-4.4162],[119.7557,-4.4037],[119.7533,-4.4007],[119.7498,-4.3868],[119.7524,-4.3785],[119.7496,-4.3683],[119.7498,-4.3642],[119.756,-4.3475],[119.7554,-4.3383],[119.7538,-4.3316],[119.755,-4.3203],[119.7538,-4.3152],[119.7535,-4.2944],[119.7551,-4.2893],[119.7536,-4.2829],[119.7474,-4.2788],[119.7422,-4.2785],[119.7415,-4.2754],[119.7455,-4.2703],[119.7444,-4.2641],[119.7369,-4.261],[119.7285,-4.2525],[119.7167,-4.2494],[119.7152,-4.247],[119.7159,-4.2393],[119.7144,-4.2355],[119.7069,-4.2297],[119.7104,-4.2278],[119.7167,-4.221],[119.721,-4.2135],[119.7269,-4.2106],[119.7372,-4.2101],[119.7421,-4.2077],[119.749,-4.2093],[119.7564,-4.2065],[119.7548,-4.2002],[119.755,-4.1925],[119.7443,-4.1888],[119.7359,-4.1837],[119.73,-4.1709],[119.7337,-4.1622],[119.7309,-4.1511],[119.7309,-4.1473],[119.7355,-4.1411],[119.7433,-4.1405],[119.7469,-4.1371],[119.7494,-4.129],[119.7443,-4.121],[119.7379,-4.1144],[119.7343,-4.1083],[119.7289,-4.1046],[119.7199,-4.096],[119.7181,-4.0909],[119.7187,-4.0863],[119.7125,-4.0812],[119.7072,-4.0793],[119.7004,-4.0766],[119.6809,-4.076],[119.6765,-4.0735],[119.6696,-4.0723],[119.6527,-4.0761],[119.6405,-4.0769],[119.6346,-4.0741],[119.6293,-4.0742],[119.6262,-4.0703],[119.6203,-4.0671]]}},{"type":"Feature","properties":{"mhid":"1332:419","alt_name":"KABUPATEN BONE","latitude":-4.7,"longitude":120.13333,"sample_value":80},"geometry":{"type":"LineString","coordinates":[[120.4218,-4.5874],[120.4224,-4.58],[120.4184,-4.5795],[120.4157,-4.5839],[120.4173,-4.5878],[120.4218,-4.5874]]}},{"type":"Feature","properties":{"mhid":"1332:419","alt_name":"KABUPATEN BONE","latitude":-4.7,"longitude":120.13333,"sample_value":80},"geometry":{"type":"LineString","coordinates":[[120.4816,-4.5361],[120.4815,-4.533],[120.4754,-4.5309],[120.4793,-4.5427],[120.4816,-4.5361]]}},{"type":"Feature","properties":{"mhid":"1332:419","alt_name":"KABUPATEN BONE","latitude":-4.7,"longitude":120.13333,"sample_value":80},"geometry":{"type":"LineString","coordinates":[[120.4581,-4.5424],[120.4617,-4.5403],[120.4629,-4.5347],[120.462,-4.5298],[120.4555,-4.529],[120.447,-4.5371],[120.4487,-4.5421],[120.4581,-4.5424]]}},{"type":"Feature","properties":{"mhid":"1332:419","alt_name":"KABUPATEN BONE","latitude":-4.7,"longitude":120.13333,"sample_value":80},"geometry":{"type":"LineString","coordinates":[[120.4286,-4.5007],[120.4228,-4.5012],[120.422,-4.509],[120.4233,-4.5182],[120.4301,-4.5186],[120.4396,-4.5081],[120.4484,-4.506],[120.4416,-4.5009],[120.4286,-4.5007]]}},{"type":"Feature","properties":{"mhid":"1332:419","alt_name":"KABUPATEN BONE","latitude":-4.7,"longitude":120.13333,"sample_value":80},"geometry":{"type":"LineString","coordinates":[[120.3667,-4.2228],[120.3572,-4.2224],[120.3503,-4.2267],[120.3509,-4.2299],[120.3407,-4.2344],[120.3357,-4.2397],[120.3194,-4.2388],[120.3123,-4.241],[120.3034,-4.2466],[120.2983,-4.248],[120.2922,-4.2444],[120.2834,-4.2466],[120.2785,-4.25],[120.2746,-4.2564],[120.2652,-4.2673],[120.2601,-4.2702],[120.25,-4.2727],[120.2444,-4.2696],[120.2397,-4.2695],[120.2335,-4.2611],[120.2342,-4.2551],[120.2317,-4.2472],[120.2318,-4.2422],[120.2242,-4.2352],[120.2184,-4.2375],[120.2058,-4.2368],[120.1923,-4.2369],[120.1844,-4.2316],[120.1778,-4.23],[120.1734,-4.2265],[120.1651,-4.226],[120.1624,-4.2278],[120.1507,-4.2247],[120.1485,-4.2228],[120.142,-4.2249],[120.1381,-4.2198],[120.1306,-4.2258],[120.1243,-4.2284],[120.1208,-4.2419],[120.1107,-4.2482],[120.0999,-4.2522],[120.0894,-4.2484],[120.0835,-4.2491],[120.0763,-4.2474],[120.0733,-4.2571],[120.0739,-4.2648],[120.071,-4.2712],[120.0732,-4.2851],[120.0827,-4.2901],[120.0828,-4.2949],[120.0794,-4.2978],[120.0772,-4.3042],[120.0847,-4.3126],[120.085,-4.3239],[120.0784,-4.3318],[120.0767,-4.3368],[120.0786,-4.3429],[120.0777,-4.3479],[120.0874,-4.3497],[120.0957,-4.3621],[120.0929,-4.3788],[120.0962,-4.3849],[120.0947,-4.3921],[120.0911,-4.3953],[120.0799,-4.4015],[120.0679,-4.4026],[120.0611,-4.3998],[120.054,-4.3995],[120.0493,-4.402],[120.0527,-4.4142],[120.0554,-4.4195],[120.0639,-4.4308],[120.0642,-4.4366],[120.062,-4.4401],[120.0625,-4.4488],[120.06,-4.4532],[120.058,-4.4624],[120.0597,-4.4705],[120.0587,-4.4817],[120.0605,-4.4857],[120.0583,-4.4938],[120.0582,-4.5],[120.0495,-4.5033],[120.0469,-4.5061],[120.0419,-4.516],[120.0376,-4.5209],[120.0309,-4.5234],[120.0185,-4.5242],[120.0136,-4.5264],[120,-4.5231],[119.995,-4.5208],[119.9864,-4.5261],[119.9845,-4.5334],[119.9773,-4.5381],[119.9733,-4.5362],[119.9708,-4.5318],[119.9551,-4.534],[119.9441,-4.533],[119.9388,-4.5338],[119.931,-4.53],[119.9284,-4.5305],[119.9214,-4.5255],[119.9191,-4.5262],[119.9105,-4.5196],[119.9037,-4.5162],[119.8995,-4.516],[119.8938,-4.522],[119.8809,-4.5281],[119.8753,-4.5325],[119.866,-4.5283],[119.8583,-4.5299],[119.8563,-4.5366],[119.8502,-4.532],[119.8436,-4.532],[119.8363,-4.5296],[119.826,-4.5289],[119.8186,-4.5274],[119.8127,-4.5304],[119.8114,-4.5343],[119.8063,-4.5366],[119.8076,-4.5505],[119.8062,-4.5545],[119.7991,-4.5626],[119.798,-4.566],[119.8002,-4.5734],[119.8004,-4.5816],[119.7989,-4.5852],[119.7977,-4.5957],[119.795,-4.5985],[119.7894,-4.5999],[119.7885,-4.6059],[119.7854,-4.6061],[119.7721,-4.6145],[119.7653,-4.616],[119.7634,-4.6243],[119.7576,-4.6268],[119.7576,-4.6323],[119.7542,-4.6411],[119.7574,-4.6481],[119.7563,-4.6569],[119.7608,-4.666],[119.7583,-4.6798],[119.76,-4.6848],[119.7664,-4.6858],[119.7722,-4.6889],[119.7771,-4.6872],[119.7886,-4.6898],[119.7974,-4.6962],[119.8067,-4.7001],[119.8147,-4.7064],[119.8172,-4.7144],[119.8223,-4.7202],[119.821,-4.7301],[119.8224,-4.7385],[119.8207,-4.7444],[119.8079,-4.7572],[119.8053,-4.7625],[119.7998,-4.7653],[119.7952,-4.7648],[119.7902,-4.7611],[119.7867,-4.7531],[119.7698,-4.7551],[119.766,-4.7613],[119.7635,-4.7699],[119.7556,-4.7759],[119.7543,-4.7812],[119.7592,-4.7887],[119.7493,-4.7911],[119.7488,-4.7966],[119.7387,-4.7956],[119.7297,-4.799],[119.7241,-4.7875],[119.7214,-4.7886],[119.7064,-4.7875],[119.6989,-4.7893],[119.6968,-4.788],[119.6964,-4.7918],[119.6985,-4.7992],[119.7131,-4.8114],[119.7159,-4.8178],[119.7207,-4.8214],[119.7268,-4.8229],[119.7283,-4.8171],[119.7427,-4.8068],[119.7533,-4.8031],[119.7596,-4.8049],[119.7637,-4.8081],[119.7629,-4.8132],[119.7665,-4.8231],[119.7733,-4.8219],[119.7817,-4.8124],[119.7848,-4.8061],[119.789,-4.8088],[119.8034,-4.8096],[119.8066,-4.8088],[119.8128,-4.7943],[119.8113,-4.7836],[119.8133,-4.7796],[119.8116,-4.7684],[119.8171,-4.7619],[119.826,-4.7568],[119.8379,-4.7488],[119.8442,-4.7428],[119.8525,-4.7429],[119.8602,-4.7411],[119.8665,-4.7436],[119.8721,-4.7341],[119.879,-4.7295],[119.8846,-4.7188],[119.8898,-4.7251],[119.8965,-4.7274],[119.8998,-4.7316],[119.9112,-4.7324],[119.9126,-4.7352],[119.9231,-4.7437],[119.9281,-4.7517],[119.9372,-4.7586],[119.9446,-4.7603],[119.9554,-4.7663],[119.9627,-4.7726],[119.9679,-4.775],[119.9727,-4.78],[119.9694,-4.7886],[119.9531,-4.7928],[119.9504,-4.7953],[119.9444,-4.8084],[119.9443,-4.8136],[119.9465,-4.8179],[119.9434,-4.8239],[119.9432,-4.828],[119.9391,-4.8393],[119.9363,-4.8434],[119.9311,-4.846],[119.9303,-4.8489],[119.921,-4.8574],[119.9177,-4.8673],[119.9327,-4.8743],[119.9345,-4.8824],[119.9336,-4.8869],[119.9287,-4.8936],[119.9249,-4.8941],[119.9166,-4.9073],[119.9121,-4.9069],[119.9057,-4.9133],[119.9002,-4.9166],[119.8946,-4.9275],[119.898,-4.9337],[119.8956,-4.9358],[119.8964,-4.9447],[119.8932,-4.944],[119.8896,-4.9524],[119.8853,-4.9587],[119.8842,-4.9637],[119.8872,-4.9693],[119.8884,-4.9785],[119.8838,-4.9931],[119.885,-5],[119.878,-5.0122],[119.8706,-5.0187],[119.8702,-5.0236],[119.8629,-5.0326],[119.8562,-5.0336],[119.8539,-5.0401],[119.8474,-5.0458],[119.8461,-5.0497],[119.8468,-5.0591],[119.8514,-5.064],[119.8542,-5.0707],[119.8558,-5.0796],[119.861,-5.0896],[119.8641,-5.0919],[119.8701,-5.0931],[119.8802,-5.0907],[119.8844,-5.0938],[119.8879,-5.0934],[119.8934,-5.0967],[119.8967,-5.1032],[119.899,-5.1117],[119.9101,-5.1181],[119.9114,-5.1222],[119.922,-5.1324],[119.9317,-5.1338],[119.9376,-5.1293],[119.9536,-5.1348],[119.9583,-5.1345],[119.9635,-5.139],[119.9705,-5.1395],[119.9706,-5.1319],[119.9757,-5.1293],[119.9823,-5.123],[119.9877,-5.1303],[119.9946,-5.1302],[120,-5.1327],[120.0111,-5.1226],[120.0166,-5.1266],[120.018,-5.1316],[120.028,-5.1277],[120.0351,-5.1287],[120.0392,-5.1263],[120.0523,-5.1269],[120.0609,-5.1226],[120.061,-5.1108],[120.0651,-5.1049],[120.064,-5.1008],[120.072,-5.0987],[120.0727,-5.0926],[120.0765,-5.0905],[120.0772,-5.0838],[120.0799,-5.0827],[120.0844,-5.0754],[120.097,-5.0758],[120.1064,-5.0712],[120.1093,-5.0671],[120.1092,-5.0631],[120.1212,-5.0561],[120.1246,-5.0459],[120.1317,-5.0444],[120.1337,-5.0496],[120.1421,-5.0595],[120.1519,-5.0595],[120.1526,-5.0655],[120.159,-5.0629],[120.1617,-5.0662],[120.1623,-5.0752],[120.1746,-5.0762],[120.1809,-5.0692],[120.1908,-5.0759],[120.1975,-5.0898],[120.2017,-5.0964],[120.2082,-5.1],[120.2153,-5.1001],[120.2211,-5.0973],[120.2207,-5.0939],[120.2253,-5.0926],[120.2284,-5.0961],[120.232,-5.0921],[120.2317,-5.0875],[120.2421,-5.0931],[120.248,-5.0932],[120.2581,-5.1147],[120.2624,-5.1166],[120.2657,-5.1136],[120.2634,-5.1056],[120.2651,-5.1013],[120.2725,-5.1073],[120.2868,-5.1126],[120.2889,-5.0979],[120.2879,-5.0918],[120.2916,-5.0792],[120.2899,-5.071],[120.2906,-5.0645],[120.2976,-5.0577],[120.3003,-5.0492],[120.2983,-5.0444],[120.2893,-5.0439],[120.2928,-5.039],[120.2916,-5.0336],[120.294,-5.0312],[120.2978,-5.0207],[120.2973,-5.0147],[120.3009,-5.0106],[120.3043,-5.0029],[120.3085,-5.0009],[120.3034,-4.9902],[120.305,-4.9861],[120.3005,-4.9809],[120.3009,-4.973],[120.3055,-4.972],[120.3052,-4.9677],[120.298,-4.9566],[120.2969,-4.949],[120.2981,-4.9445],[120.3061,-4.9447],[120.3105,-4.9392],[120.307,-4.9305],[120.3024,-4.9309],[120.299,-4.9284],[120.2952,-4.9214],[120.2981,-4.9142],[120.3019,-4.9123],[120.3082,-4.9143],[120.3136,-4.9095],[120.3119,-4.9004],[120.3069,-4.9],[120.3074,-4.8944],[120.3031,-4.8843],[120.3036,-4.88],[120.3087,-4.8661],[120.3181,-4.8558],[120.3204,-4.8517],[120.337,-4.8417],[120.344,-4.839],[120.3555,-4.8401],[120.3608,-4.8441],[120.3658,-4.8452],[120.3741,-4.8431],[120.3833,-4.8379],[120.3826,-4.8294],[120.3801,-4.8231],[120.3821,-4.8214],[120.3813,-4.8121],[120.3795,-4.8067],[120.3843,-4.8024],[120.3869,-4.7921],[120.3839,-4.7847],[120.3839,-4.7777],[120.3856,-4.7679],[120.3939,-4.7561],[120.3949,-4.746],[120.3985,-4.7403],[120.4012,-4.728],[120.3983,-4.7185],[120.3987,-4.7141],[120.402,-4.7059],[120.4092,-4.6952],[120.4145,-4.6903],[120.4252,-4.6839],[120.4405,-4.6689],[120.4483,-4.659],[120.4514,-4.657],[120.4498,-4.6515],[120.4422,-4.6486],[120.4405,-4.6351],[120.4362,-4.6268],[120.4255,-4.6193],[120.419,-4.6179],[120.4084,-4.6125],[120.3996,-4.6061],[120.3971,-4.5972],[120.3926,-4.5853],[120.3875,-4.5676],[120.3838,-4.5613],[120.3839,-4.5548],[120.3867,-4.5502],[120.3845,-4.5331],[120.3848,-4.5277],[120.3805,-4.5228],[120.3776,-4.5115],[120.3822,-4.504],[120.3829,-4.4991],[120.3879,-4.4902],[120.3929,-4.4876],[120.3987,-4.4913],[120.4018,-4.4818],[120.3969,-4.469],[120.3859,-4.4675],[120.3835,-4.4623],[120.3779,-4.4603],[120.3721,-4.452],[120.3716,-4.4461],[120.3678,-4.4458],[120.3496,-4.4286],[120.3469,-4.4183],[120.3481,-4.4111],[120.3475,-4.4039],[120.3528,-4.4023],[120.3584,-4.3948],[120.3636,-4.3818],[120.3605,-4.3746],[120.363,-4.3694],[120.3693,-4.3736],[120.3774,-4.3663],[120.3814,-4.359],[120.3901,-4.3477],[120.3931,-4.3379],[120.3922,-4.3247],[120.3877,-4.3133],[120.3845,-4.3113],[120.378,-4.3037],[120.3727,-4.2995],[120.367,-4.2997],[120.365,-4.294],[120.3659,-4.2629],[120.3678,-4.2558],[120.3712,-4.25],[120.3727,-4.2334],[120.3667,-4.2228]]}},{"type":"Feature","properties":{"mhid":"1332:420","alt_name":"KABUPATEN SOPPENG","latitude":-4.3842,"longitude":119.89,"sample_value":433},"geometry":{"type":"LineString","coordinates":[[119.8922,-4.1078],[119.8866,-4.1121],[119.88,-4.1112],[119.8649,-4.106],[119.849,-4.0984],[119.8422,-4.103],[119.8314,-4.1074],[119.8268,-4.106],[119.807,-4.1117],[119.8057,-4.1163],[119.8087,-4.1298],[119.8058,-4.1316],[119.8005,-4.1309],[119.7941,-4.1238],[119.7875,-4.1255],[119.7825,-4.1235],[119.7788,-4.131],[119.7691,-4.1331],[119.7648,-4.1278],[119.7604,-4.1292],[119.7494,-4.129],[119.7469,-4.1371],[119.7433,-4.1405],[119.7355,-4.1411],[119.7309,-4.1473],[119.7309,-4.1511],[119.7337,-4.1622],[119.73,-4.1709],[119.7359,-4.1837],[119.7443,-4.1888],[119.755,-4.1925],[119.7548,-4.2002],[119.7564,-4.2065],[119.749,-4.2093],[119.7421,-4.2077],[119.7372,-4.2101],[119.7269,-4.2106],[119.721,-4.2135],[119.7167,-4.221],[119.7104,-4.2278],[119.7069,-4.2297],[119.7144,-4.2355],[119.7159,-4.2393],[119.7152,-4.247],[119.7167,-4.2494],[119.7285,-4.2525],[119.7369,-4.261],[119.7444,-4.2641],[119.7455,-4.2703],[119.7415,-4.2754],[119.7422,-4.2785],[119.7474,-4.2788],[119.7536,-4.2829],[119.7551,-4.2893],[119.7535,-4.2944],[119.7538,-4.3152],[119.755,-4.3203],[119.7538,-4.3316],[119.7554,-4.3383],[119.756,-4.3475],[119.7498,-4.3642],[119.7496,-4.3683],[119.7524,-4.3785],[119.7498,-4.3868],[119.7533,-4.4007],[119.7557,-4.4037],[119.7547,-4.4162],[119.7565,-4.4207],[119.7539,-4.4237],[119.754,-4.4388],[119.7519,-4.4496],[119.755,-4.4622],[119.755,-4.4725],[119.7568,-4.4782],[119.7647,-4.4889],[119.7721,-4.4881],[119.784,-4.4961],[119.7875,-4.5012],[119.7886,-4.5107],[119.7956,-4.5176],[119.7986,-4.5227],[119.8048,-4.5269],[119.8071,-4.5302],[119.8063,-4.5366],[119.8114,-4.5343],[119.8127,-4.5304],[119.8186,-4.5274],[119.826,-4.5289],[119.8363,-4.5296],[119.8436,-4.532],[119.8502,-4.532],[119.8563,-4.5366],[119.8583,-4.5299],[119.866,-4.5283],[119.8753,-4.5325],[119.8809,-4.5281],[119.8938,-4.522],[119.8995,-4.516],[119.9037,-4.5162],[119.9105,-4.5196],[119.9191,-4.5262],[119.9214,-4.5255],[119.9284,-4.5305],[119.931,-4.53],[119.9388,-4.5338],[119.9441,-4.533],[119.9551,-4.534],[119.9708,-4.5318],[119.9733,-4.5362],[119.9773,-4.5381],[119.9845,-4.5334],[119.9864,-4.5261],[119.995,-4.5208],[120,-4.5231],[120.0136,-4.5264],[120.0185,-4.5242],[120.0309,-4.5234],[120.0376,-4.5209],[120.0419,-4.516],[120.0469,-4.5061],[120.0495,-4.5033],[120.0582,-4.5],[120.0583,-4.4938],[120.0605,-4.4857],[120.0587,-4.4817],[120.0597,-4.4705],[120.058,-4.4624],[120.06,-4.4532],[120.0625,-4.4488],[120.062,-4.4401],[120.0642,-4.4366],[120.0639,-4.4308],[120.0554,-4.4195],[120.0527,-4.4142],[120.0493,-4.402],[120.054,-4.3995],[120.0611,-4.3998],[120.0679,-4.4026],[120.0799,-4.4015],[120.0911,-4.3953],[120.0947,-4.3921],[120.0962,-4.3849],[120.0929,-4.3788],[120.0957,-4.3621],[120.0874,-4.3497],[120.0777,-4.3479],[120.0786,-4.3429],[120.0767,-4.3368],[120.0784,-4.3318],[120.085,-4.3239],[120.0847,-4.3126],[120.0772,-4.3042],[120.0794,-4.2978],[120.0828,-4.2949],[120.0827,-4.2901],[120.0732,-4.2851],[120.0651,-4.285],[120.0547,-4.2865],[120.0441,-4.2863],[120.0401,-4.2819],[120.0398,-4.2754],[120.042,-4.2686],[120.0393,-4.2614],[120.0341,-4.2636],[120.0184,-4.2672],[120.0082,-4.2687],[120.0058,-4.2649],[119.9934,-4.2668],[119.9779,-4.2669],[119.9711,-4.2715],[119.964,-4.2736],[119.9607,-4.2722],[119.9573,-4.2625],[119.9577,-4.2585],[119.9514,-4.2566],[119.9381,-4.2558],[119.9345,-4.2505],[119.9346,-4.2426],[119.9374,-4.2373],[119.9365,-4.232],[119.9382,-4.2279],[119.9384,-4.2193],[119.9365,-4.2151],[119.9356,-4.2064],[119.9432,-4.2016],[119.9485,-4.1871],[119.9485,-4.1816],[119.9444,-4.1818],[119.9412,-4.186],[119.9387,-4.1804],[119.931,-4.1807],[119.9268,-4.1845],[119.922,-4.1804],[119.9204,-4.175],[119.9212,-4.168],[119.9174,-4.1627],[119.921,-4.1547],[119.925,-4.1532],[119.9267,-4.1476],[119.9322,-4.1414],[119.9305,-4.1317],[119.9201,-4.1264],[119.9224,-4.123],[119.9147,-4.119],[119.9096,-4.1183],[119.9051,-4.1129],[119.901,-4.1172],[119.8985,-4.1115],[119.8937,-4.1109],[119.8922,-4.1078]]}},{"type":"Feature","properties":{"mhid":"1332:421","alt_name":"KABUPATEN WAJO","latitude":-4,"longitude":120.16667,"sample_value":994},"geometry":{"type":"LineString","coordinates":[[120.412,-3.6636],[120.4081,-3.6664],[120.402,-3.6615],[120.3948,-3.6624],[120.3869,-3.6586],[120.3842,-3.6589],[120.3613,-3.6549],[120.3593,-3.6528],[120.3515,-3.6524],[120.3437,-3.65],[120.3333,-3.6529],[120.3281,-3.6499],[120.3244,-3.6517],[120.3292,-3.6623],[120.3297,-3.6695],[120.3317,-3.6751],[120.3311,-3.6795],[120.3144,-3.6903],[120.3111,-3.6942],[120.31,-3.7013],[120.3052,-3.7096],[120.3014,-3.7103],[120.2984,-3.7164],[120.292,-3.7197],[120.2854,-3.7208],[120.2747,-3.7175],[120.2666,-3.7225],[120.2604,-3.7207],[120.2567,-3.716],[120.2515,-3.7161],[120.2407,-3.7075],[120.2318,-3.7153],[120.229,-3.7226],[120.2257,-3.7262],[120.2129,-3.7301],[120.2105,-3.7347],[120.209,-3.7448],[120.2068,-3.752],[120.2018,-3.758],[120.2015,-3.7612],[120.1952,-3.7678],[120.1933,-3.7734],[120.1902,-3.7751],[120.1801,-3.7734],[120.1656,-3.7692],[120.1591,-3.7694],[120.1512,-3.7724],[120.146,-3.7785],[120.1513,-3.7851],[120.1481,-3.7915],[120.1536,-3.7956],[120.1455,-3.8021],[120.1457,-3.809],[120.1435,-3.8153],[120.1393,-3.8176],[120.1417,-3.8246],[120.1397,-3.8299],[120.1312,-3.8325],[120.129,-3.8385],[120.1301,-3.8462],[120.1167,-3.8521],[120.1126,-3.8482],[120.1116,-3.8411],[120.1026,-3.84],[120.102,-3.8435],[120.0958,-3.8446],[120.093,-3.8431],[120.0882,-3.8449],[120.0871,-3.8484],[120.0794,-3.8485],[120.076,-3.8527],[120.0726,-3.8517],[120.0648,-3.8554],[120.059,-3.8544],[120.0572,-3.8621],[120.0491,-3.8688],[120.0499,-3.8763],[120.0488,-3.8806],[120.0523,-3.8841],[120.0423,-3.9125],[120.0398,-3.916],[120.0297,-3.9234],[120.0258,-3.9275],[120.0224,-3.9363],[120.0161,-3.938],[120.0066,-3.9363],[120.0086,-3.9283],[120.0057,-3.9255],[119.9921,-3.9295],[119.9841,-3.9349],[119.9629,-3.9375],[119.9535,-3.9348],[119.9523,-3.9389],[119.9408,-3.9349],[119.9396,-3.9288],[119.9297,-3.9318],[119.9178,-3.9322],[119.9183,-3.9362],[119.9145,-3.9431],[119.9151,-3.9482],[119.9115,-3.9628],[119.9051,-3.9687],[119.9057,-3.9823],[119.9047,-3.9854],[119.8971,-3.9942],[119.8926,-4.0016],[119.8867,-4.019],[119.8937,-4.028],[119.8953,-4.0431],[119.9021,-4.0534],[119.9,-4.0615],[119.9051,-4.0669],[119.8946,-4.076],[119.8907,-4.086],[119.8914,-4.0945],[119.89,-4.1002],[119.8922,-4.1078],[119.8937,-4.1109],[119.8985,-4.1115],[119.901,-4.1172],[119.9051,-4.1129],[119.9096,-4.1183],[119.9147,-4.119],[119.9224,-4.123],[119.9201,-4.1264],[119.9305,-4.1317],[119.9322,-4.1414],[119.9267,-4.1476],[119.925,-4.1532],[119.921,-4.1547],[119.9174,-4.1627],[119.9212,-4.168],[119.9204,-4.175],[119.922,-4.1804],[119.9268,-4.1845],[119.931,-4.1807],[119.9387,-4.1804],[119.9412,-4.186],[119.9444,-4.1818],[119.9485,-4.1816],[119.9485,-4.1871],[119.9432,-4.2016],[119.9356,-4.2064],[119.9365,-4.2151],[119.9384,-4.2193],[119.9382,-4.2279],[119.9365,-4.232],[119.9374,-4.2373],[119.9346,-4.2426],[119.9345,-4.2505],[119.9381,-4.2558],[119.9514,-4.2566],[119.9577,-4.2585],[119.9573,-4.2625],[119.9607,-4.2722],[119.964,-4.2736],[119.9711,-4.2715],[119.9779,-4.2669],[119.9934,-4.2668],[120.0058,-4.2649],[120.0082,-4.2687],[120.0184,-4.2672],[120.0341,-4.2636],[120.0393,-4.2614],[120.042,-4.2686],[120.0398,-4.2754],[120.0401,-4.2819],[120.0441,-4.2863],[120.0547,-4.2865],[120.0651,-4.285],[120.0732,-4.2851],[120.071,-4.2712],[120.0739,-4.2648],[120.0733,-4.2571],[120.0763,-4.2474],[120.0835,-4.2491],[120.0894,-4.2484],[120.0999,-4.2522],[120.1107,-4.2482],[120.1208,-4.2419],[120.1243,-4.2284],[120.1306,-4.2258],[120.1381,-4.2198],[120.142,-4.2249],[120.1485,-4.2228],[120.1507,-4.2247],[120.1624,-4.2278],[120.1651,-4.226],[120.1734,-4.2265],[120.1778,-4.23],[120.1844,-4.2316],[120.1923,-4.2369],[120.2058,-4.2368],[120.2184,-4.2375],[120.2242,-4.2352],[120.2318,-4.2422],[120.2317,-4.2472],[120.2342,-4.2551],[120.2335,-4.2611],[120.2397,-4.2695],[120.2444,-4.2696],[120.25,-4.2727],[120.2601,-4.2702],[120.2652,-4.2673],[120.2746,-4.2564],[120.2785,-4.25],[120.2834,-4.2466],[120.2922,-4.2444],[120.2983,-4.248],[120.3034,-4.2466],[120.3123,-4.241],[120.3194,-4.2388],[120.3357,-4.2397],[120.3407,-4.2344],[120.3509,-4.2299],[120.3503,-4.2267],[120.3572,-4.2224],[120.3667,-4.2228],[120.3672,-4.2177],[120.375,-4.2047],[120.3764,-4.198],[120.3767,-4.1894],[120.381,-4.1797],[120.3804,-4.1686],[120.3739,-4.1532],[120.3728,-4.144],[120.3629,-4.1414],[120.3539,-4.1333],[120.3476,-4.1322],[120.3449,-4.1284],[120.3455,-4.1239],[120.3431,-4.1163],[120.3389,-4.1093],[120.3332,-4.1103],[120.3304,-4.1036],[120.332,-4.0958],[120.3377,-4.0928],[120.3489,-4.0741],[120.3484,-4.0697],[120.3559,-4.0649],[120.3557,-4.0545],[120.3576,-4.0491],[120.3539,-4.0411],[120.3553,-4.0364],[120.3539,-4.0321],[120.3569,-4.0257],[120.361,-4.0215],[120.3589,-4.0182],[120.3526,-4.0146],[120.3489,-4.01],[120.3463,-4.0012],[120.3422,-3.9962],[120.3504,-3.9863],[120.3531,-3.9732],[120.3446,-3.9596],[120.3411,-3.9522],[120.3362,-3.9351],[120.3399,-3.9241],[120.3446,-3.9011],[120.3452,-3.891],[120.3567,-3.8661],[120.3625,-3.8483],[120.3652,-3.8497],[120.3741,-3.8397],[120.3776,-3.8292],[120.3835,-3.8183],[120.3898,-3.8041],[120.3944,-3.7969],[120.4003,-3.7907],[120.4011,-3.7861],[120.4098,-3.7749],[120.4317,-3.7548],[120.4386,-3.7469],[120.4408,-3.7424],[120.4409,-3.728],[120.4385,-3.7253],[120.4384,-3.7155],[120.4363,-3.7057],[120.4381,-3.6914],[120.4369,-3.6868],[120.4297,-3.6827],[120.4177,-3.6785],[120.4163,-3.6729],[120.412,-3.6636]]}},{"type":"Feature","properties":{"mhid":"1332:422","alt_name":"KABUPATEN SIDENRENG RAPPANG","latitude":-3.85,"longitude":119.96667,"sample_value":329},"geometry":{"type":"LineString","coordinates":[[119.6641,-3.9613],[119.6707,-3.973],[119.6829,-3.9858],[119.6866,-3.994],[119.6919,-3.9942],[119.6918,-3.9999],[119.6888,-4.0092],[119.6919,-4.0142],[119.6974,-4.0182],[119.7005,-4.0304],[119.698,-4.0343],[119.698,-4.0514],[119.7065,-4.0606],[119.7076,-4.0683],[119.71,-4.0722],[119.7149,-4.0723],[119.7146,-4.0768],[119.7072,-4.0793],[119.7125,-4.0812],[119.7187,-4.0863],[119.7181,-4.0909],[119.7199,-4.096],[119.7289,-4.1046],[119.7343,-4.1083],[119.7379,-4.1144],[119.7443,-4.121],[119.7494,-4.129],[119.7604,-4.1292],[119.7648,-4.1278],[119.7691,-4.1331],[119.7788,-4.131],[119.7825,-4.1235],[119.7875,-4.1255],[119.7941,-4.1238],[119.8005,-4.1309],[119.8058,-4.1316],[119.8087,-4.1298],[119.8057,-4.1163],[119.807,-4.1117],[119.8268,-4.106],[119.8314,-4.1074],[119.8422,-4.103],[119.849,-4.0984],[119.8649,-4.106],[119.88,-4.1112],[119.8866,-4.1121],[119.8922,-4.1078],[119.89,-4.1002],[119.8914,-4.0945],[119.8907,-4.086],[119.8946,-4.076],[119.9051,-4.0669],[119.9,-4.0615],[119.9021,-4.0534],[119.8953,-4.0431],[119.8937,-4.028],[119.8867,-4.019],[119.8926,-4.0016],[119.8971,-3.9942],[119.9047,-3.9854],[119.9057,-3.9823],[119.9051,-3.9687],[119.9115,-3.9628],[119.9151,-3.9482],[119.9145,-3.9431],[119.9183,-3.9362],[119.9178,-3.9322],[119.9297,-3.9318],[119.9396,-3.9288],[119.9408,-3.9349],[119.9523,-3.9389],[119.9535,-3.9348],[119.9629,-3.9375],[119.9841,-3.9349],[119.9921,-3.9295],[120.0057,-3.9255],[120.0086,-3.9283],[120.0066,-3.9363],[120.0161,-3.938],[120.0224,-3.9363],[120.0258,-3.9275],[120.0297,-3.9234],[120.0398,-3.916],[120.0423,-3.9125],[120.0523,-3.8841],[120.0488,-3.8806],[120.0499,-3.8763],[120.0491,-3.8688],[120.0572,-3.8621],[120.059,-3.8544],[120.0648,-3.8554],[120.0726,-3.8517],[120.076,-3.8527],[120.0794,-3.8485],[120.0871,-3.8484],[120.0882,-3.8449],[120.093,-3.8431],[120.0958,-3.8446],[120.102,-3.8435],[120.1026,-3.84],[120.1116,-3.8411],[120.1126,-3.8482],[120.1167,-3.8521],[120.1301,-3.8462],[120.129,-3.8385],[120.1312,-3.8325],[120.1397,-3.8299],[120.1417,-3.8246],[120.1393,-3.8176],[120.1435,-3.8153],[120.1457,-3.809],[120.1455,-3.8021],[120.1536,-3.7956],[120.1481,-3.7915],[120.1513,-3.7851],[120.146,-3.7785],[120.1512,-3.7724],[120.1591,-3.7694],[120.1656,-3.7692],[120.1801,-3.7734],[120.1902,-3.7751],[120.1933,-3.7734],[120.1952,-3.7678],[120.2015,-3.7612],[120.2018,-3.758],[120.2068,-3.752],[120.209,-3.7448],[120.2105,-3.7347],[120.2129,-3.7301],[120.2257,-3.7262],[120.229,-3.7226],[120.2318,-3.7153],[120.2407,-3.7075],[120.2515,-3.7161],[120.2567,-3.716],[120.2604,-3.7207],[120.2666,-3.7225],[120.2747,-3.7175],[120.2854,-3.7208],[120.292,-3.7197],[120.2984,-3.7164],[120.3014,-3.7103],[120.3052,-3.7096],[120.31,-3.7013],[120.3111,-3.6942],[120.3144,-3.6903],[120.3311,-3.6795],[120.3317,-3.6751],[120.3297,-3.6695],[120.3292,-3.6623],[120.3244,-3.6517],[120.3218,-3.6497],[120.309,-3.6487],[120.3017,-3.6472],[120.2872,-3.6378],[120.2828,-3.6329],[120.2796,-3.6327],[120.2702,-3.6277],[120.2682,-3.6203],[120.2534,-3.6102],[120.2509,-3.6097],[120.2428,-3.6009],[120.2307,-3.5924],[120.2209,-3.5914],[120.2076,-3.5944],[120.2058,-3.5862],[120.1995,-3.5848],[120.1964,-3.5815],[120.192,-3.5664],[120.1929,-3.5618],[120.1926,-3.551],[120.189,-3.5449],[120.1879,-3.5396],[120.1821,-3.5344],[120.1821,-3.5241],[120.1795,-3.52],[120.179,-3.5068],[120.1706,-3.498],[120.1629,-3.4984],[120.1575,-3.501],[120.1495,-3.5023],[120.1454,-3.5004],[120.1358,-3.5008],[120.1332,-3.4972],[120.1251,-3.491],[120.117,-3.4866],[120.1026,-3.4877],[120.0961,-3.4831],[120.0973,-3.4979],[120.0949,-3.5027],[120.0889,-3.5076],[120.0767,-3.5088],[120.0734,-3.515],[120.068,-3.5303],[120.0609,-3.5365],[120.0522,-3.5368],[120.0438,-3.5386],[120.0413,-3.5415],[120.0407,-3.5527],[120.0388,-3.5588],[120.031,-3.5705],[120.0272,-3.5783],[120.0198,-3.5963],[120.0169,-3.606],[120.0129,-3.613],[120.0055,-3.6234],[119.9993,-3.6274],[119.9915,-3.6293],[119.9957,-3.6453],[119.9929,-3.652],[119.9918,-3.6609],[119.9878,-3.6619],[119.9808,-3.6608],[119.9787,-3.6691],[119.9725,-3.6656],[119.951,-3.6601],[119.9498,-3.6658],[119.9452,-3.6705],[119.9406,-3.6717],[119.937,-3.676],[119.9271,-3.6792],[119.923,-3.6852],[119.9236,-3.6905],[119.9217,-3.6935],[119.9249,-3.7007],[119.9304,-3.7023],[119.9327,-3.7092],[119.9365,-3.7125],[119.9349,-3.7173],[119.9387,-3.7229],[119.9381,-3.7357],[119.9407,-3.7385],[119.9407,-3.7519],[119.9439,-3.7576],[119.9401,-3.759],[119.9455,-3.7712],[119.9502,-3.7793],[119.9539,-3.7811],[119.9578,-3.7786],[119.9635,-3.7813],[119.9661,-3.786],[119.9681,-3.7948],[119.9633,-3.7948],[119.9593,-3.8],[119.9503,-3.8024],[119.9438,-3.8096],[119.9363,-3.8024],[119.9281,-3.8152],[119.9239,-3.8148],[119.9172,-3.8106],[119.9072,-3.8171],[119.9028,-3.8229],[119.8994,-3.8239],[119.8942,-3.8176],[119.8862,-3.817],[119.8775,-3.8193],[119.8687,-3.8163],[119.8607,-3.8108],[119.8599,-3.8058],[119.8547,-3.8029],[119.8498,-3.7978],[119.8498,-3.7947],[119.8451,-3.7893],[119.8438,-3.7789],[119.8374,-3.7733],[119.8225,-3.7679],[119.82,-3.7519],[119.816,-3.7454],[119.8056,-3.7403],[119.8022,-3.735],[119.8031,-3.7314],[119.7973,-3.7263],[119.7949,-3.7223],[119.7889,-3.7215],[119.7824,-3.719],[119.7857,-3.7288],[119.7825,-3.731],[119.778,-3.7379],[119.7654,-3.7416],[119.7622,-3.7449],[119.757,-3.7448],[119.7542,-3.7539],[119.7502,-3.7603],[119.7583,-3.7646],[119.7504,-3.775],[119.7458,-3.784],[119.7479,-3.7882],[119.7561,-3.7986],[119.7535,-3.7991],[119.7451,-3.8175],[119.7421,-3.8285],[119.7383,-3.838],[119.7401,-3.8433],[119.7366,-3.8467],[119.7341,-3.8571],[119.7285,-3.8605],[119.7254,-3.879],[119.7266,-3.8847],[119.7232,-3.8885],[119.7246,-3.895],[119.7193,-3.9053],[119.7127,-3.9108],[119.7095,-3.911],[119.7036,-3.9063],[119.6931,-3.9207],[119.6933,-3.9262],[119.6821,-3.9367],[119.6743,-3.9486],[119.6641,-3.9613]]}},{"type":"Feature","properties":{"mhid":"1332:423","alt_name":"KABUPATEN PINRANG","latitude":-3.61667,"longitude":119.6,"sample_value":811},"geometry":{"type":"LineString","coordinates":[[119.6902,-3.3601],[119.6795,-3.3664],[119.6748,-3.3662],[119.6575,-3.3596],[119.65,-3.36],[119.6483,-3.3569],[119.6479,-3.3494],[119.6504,-3.3427],[119.6422,-3.3355],[119.6427,-3.3314],[119.6466,-3.3279],[119.6432,-3.3175],[119.6354,-3.3158],[119.6275,-3.307],[119.62,-3.3022],[119.6171,-3.2979],[119.6151,-3.2877],[119.6052,-3.2852],[119.6028,-3.2825],[119.5936,-3.2867],[119.5826,-3.2885],[119.5722,-3.2855],[119.5685,-3.2764],[119.5609,-3.2708],[119.5553,-3.2702],[119.5442,-3.273],[119.5412,-3.2748],[119.5345,-3.2737],[119.5287,-3.2749],[119.52,-3.2804],[119.5172,-3.2923],[119.514,-3.2971],[119.5055,-3.2975],[119.5014,-3.2948],[119.4926,-3.2818],[119.472,-3.2744],[119.4627,-3.2642],[119.4571,-3.2632],[119.4476,-3.2594],[119.4436,-3.2548],[119.4382,-3.2546],[119.4336,-3.2578],[119.4322,-3.2677],[119.4361,-3.2776],[119.4368,-3.2886],[119.4348,-3.2946],[119.4398,-3.3029],[119.4378,-3.3116],[119.4346,-3.317],[119.4378,-3.3195],[119.4406,-3.3259],[119.4442,-3.3293],[119.4449,-3.3342],[119.4402,-3.3383],[119.4365,-3.3399],[119.4312,-3.3392],[119.4309,-3.3468],[119.4382,-3.3518],[119.45,-3.3554],[119.4549,-3.3662],[119.4632,-3.3731],[119.4652,-3.3787],[119.4592,-3.3834],[119.46,-3.387],[119.4649,-3.3893],[119.4667,-3.3974],[119.4671,-3.4065],[119.4727,-3.4122],[119.4703,-3.425],[119.4721,-3.4304],[119.4688,-3.4333],[119.4763,-3.4495],[119.4785,-3.4505],[119.4767,-3.4592],[119.49,-3.4735],[119.4924,-3.4746],[119.4911,-3.4841],[119.488,-3.4839],[119.4847,-3.4885],[119.4844,-3.4926],[119.4741,-3.5029],[119.4873,-3.5148],[119.4963,-3.5258],[119.5,-3.532],[119.5046,-3.5366],[119.5106,-3.549],[119.5132,-3.5578],[119.5133,-3.5639],[119.5109,-3.57],[119.5122,-3.5813],[119.511,-3.5953],[119.5053,-3.5994],[119.4971,-3.6003],[119.4938,-3.6044],[119.4871,-3.6187],[119.4819,-3.6313],[119.475,-3.6336],[119.4732,-3.6361],[119.4581,-3.6418],[119.4564,-3.653],[119.4566,-3.6588],[119.4524,-3.6701],[119.4503,-3.6805],[119.4543,-3.6876],[119.4499,-3.6924],[119.4532,-3.7102],[119.4524,-3.7137],[119.4599,-3.7263],[119.4807,-3.7495],[119.4906,-3.773],[119.4919,-3.7784],[119.4969,-3.7903],[119.5025,-3.7996],[119.5073,-3.8113],[119.5114,-3.8236],[119.5288,-3.878],[119.535,-3.8934],[119.5489,-3.9179],[119.5548,-3.9227],[119.5587,-3.9319],[119.5624,-3.9359],[119.5723,-3.9516],[119.5793,-3.987],[119.5792,-3.995],[119.5804,-4.0061],[119.5822,-4.0099],[119.5811,-4.0157],[119.5826,-4.0255],[119.5859,-4.0378],[119.5961,-4.0435],[119.5993,-4.0419],[119.599,-4.0377],[119.5933,-4.0334],[119.5931,-4.0245],[119.5947,-4.0214],[119.6009,-4.0187],[119.6027,-4.0137],[119.6144,-4.0042],[119.5943,-4.0057],[119.5916,-4.0027],[119.5892,-3.9955],[119.5867,-3.9786],[119.5873,-3.9742],[119.592,-3.9713],[119.6083,-3.9775],[119.6093,-3.9824],[119.6129,-3.9835],[119.6181,-3.978],[119.6302,-3.9685],[119.6356,-3.9754],[119.6357,-3.9824],[119.6404,-3.9799],[119.6452,-3.9739],[119.6514,-3.9729],[119.6579,-3.966],[119.6641,-3.9613],[119.6743,-3.9486],[119.6821,-3.9367],[119.6933,-3.9262],[119.6931,-3.9207],[119.7036,-3.9063],[119.7095,-3.911],[119.7127,-3.9108],[119.7193,-3.9053],[119.7246,-3.895],[119.7232,-3.8885],[119.7266,-3.8847],[119.7254,-3.879],[119.7285,-3.8605],[119.7341,-3.8571],[119.7366,-3.8467],[119.7401,-3.8433],[119.7383,-3.838],[119.7421,-3.8285],[119.7451,-3.8175],[119.7535,-3.7991],[119.7561,-3.7986],[119.7479,-3.7882],[119.7458,-3.784],[119.7504,-3.775],[119.7583,-3.7646],[119.7502,-3.7603],[119.7542,-3.7539],[119.757,-3.7448],[119.7622,-3.7449],[119.7654,-3.7416],[119.778,-3.7379],[119.7825,-3.731],[119.7857,-3.7288],[119.7824,-3.719],[119.7789,-3.7178],[119.7752,-3.7125],[119.7593,-3.699],[119.7595,-3.6762],[119.7616,-3.6739],[119.7576,-3.6687],[119.7477,-3.6677],[119.7397,-3.6619],[119.7324,-3.6536],[119.7226,-3.6463],[119.7227,-3.6361],[119.7207,-3.6325],[119.7231,-3.6268],[119.7232,-3.6198],[119.7223,-3.593],[119.7198,-3.5751],[119.7202,-3.5656],[119.7188,-3.556],[119.716,-3.5461],[119.7077,-3.5387],[119.7068,-3.5321],[119.7024,-3.5216],[119.6996,-3.5119],[119.7019,-3.5035],[119.7001,-3.4951],[119.7001,-3.4806],[119.7022,-3.4761],[119.7016,-3.4707],[119.6893,-3.4603],[119.6883,-3.4521],[119.6857,-3.4457],[119.6925,-3.4484],[119.6952,-3.4432],[119.6933,-3.4306],[119.6973,-3.4274],[119.6988,-3.4169],[119.697,-3.413],[119.6973,-3.4036],[119.6949,-3.3947],[119.6986,-3.3846],[119.694,-3.3799],[119.6932,-3.3655],[119.6902,-3.3601]]}},{"type":"Feature","properties":{"mhid":"1332:424","alt_name":"KABUPATEN ENREKANG","latitude":-3.5,"longitude":119.86667,"sample_value":121},"geometry":{"type":"LineString","coordinates":[[120.0339,-3.3737],[120.0277,-3.3711],[120.0327,-3.3635],[120.0252,-3.3625],[120.02,-3.3586],[120.0165,-3.3516],[120.0166,-3.3475],[120.012,-3.3395],[120.0083,-3.3389],[120.002,-3.3339],[120.0032,-3.3255],[120.0058,-3.3182],[119.9991,-3.3048],[119.9958,-3.3022],[119.9891,-3.3092],[119.9781,-3.2977],[119.9714,-3.2974],[119.9672,-3.2924],[119.9642,-3.2939],[119.9553,-3.2924],[119.9504,-3.2971],[119.9443,-3.2936],[119.9427,-3.2901],[119.9369,-3.2848],[119.9327,-3.2845],[119.9261,-3.2775],[119.9256,-3.2728],[119.9225,-3.2654],[119.9114,-3.2631],[119.9066,-3.2597],[119.8994,-3.2615],[119.8859,-3.2579],[119.8811,-3.2584],[119.8773,-3.2642],[119.8763,-3.269],[119.8713,-3.2694],[119.871,-3.2745],[119.861,-3.2702],[119.8568,-3.274],[119.8534,-3.2809],[119.8504,-3.2795],[119.8423,-3.2709],[119.8426,-3.2615],[119.8405,-3.256],[119.8335,-3.2537],[119.831,-3.2487],[119.8157,-3.2454],[119.8003,-3.2474],[119.7945,-3.2469],[119.7873,-3.2437],[119.7838,-3.2403],[119.7801,-3.2405],[119.7748,-3.2467],[119.7739,-3.2552],[119.7756,-3.2651],[119.7739,-3.2702],[119.77,-3.2743],[119.7371,-3.2824],[119.7228,-3.2913],[119.7166,-3.2985],[119.7134,-3.3135],[119.7177,-3.3205],[119.7223,-3.3247],[119.7233,-3.3318],[119.7172,-3.3405],[119.7213,-3.3525],[119.7169,-3.3532],[119.7127,-3.3505],[119.7037,-3.3492],[119.695,-3.3504],[119.6902,-3.3601],[119.6932,-3.3655],[119.694,-3.3799],[119.6986,-3.3846],[119.6949,-3.3947],[119.6973,-3.4036],[119.697,-3.413],[119.6988,-3.4169],[119.6973,-3.4274],[119.6933,-3.4306],[119.6952,-3.4432],[119.6925,-3.4484],[119.6857,-3.4457],[119.6883,-3.4521],[119.6893,-3.4603],[119.7016,-3.4707],[119.7022,-3.4761],[119.7001,-3.4806],[119.7001,-3.4951],[119.7019,-3.5035],[119.6996,-3.5119],[119.7024,-3.5216],[119.7068,-3.5321],[119.7077,-3.5387],[119.716,-3.5461],[119.7188,-3.556],[119.7202,-3.5656],[119.7198,-3.5751],[119.7223,-3.593],[119.7232,-3.6198],[119.7231,-3.6268],[119.7207,-3.6325],[119.7227,-3.6361],[119.7226,-3.6463],[119.7324,-3.6536],[119.7397,-3.6619],[119.7477,-3.6677],[119.7576,-3.6687],[119.7616,-3.6739],[119.7595,-3.6762],[119.7593,-3.699],[119.7752,-3.7125],[119.7789,-3.7178],[119.7824,-3.719],[119.7889,-3.7215],[119.7949,-3.7223],[119.7973,-3.7263],[119.8031,-3.7314],[119.8022,-3.735],[119.8056,-3.7403],[119.816,-3.7454],[119.82,-3.7519],[119.8225,-3.7679],[119.8374,-3.7733],[119.8438,-3.7789],[119.8451,-3.7893],[119.8498,-3.7947],[119.8498,-3.7978],[119.8547,-3.8029],[119.8599,-3.8058],[119.8607,-3.8108],[119.8687,-3.8163],[119.8775,-3.8193],[119.8862,-3.817],[119.8942,-3.8176],[119.8994,-3.8239],[119.9028,-3.8229],[119.9072,-3.8171],[119.9172,-3.8106],[119.9239,-3.8148],[119.9281,-3.8152],[119.9363,-3.8024],[119.9438,-3.8096],[119.9503,-3.8024],[119.9593,-3.8],[119.9633,-3.7948],[119.9681,-3.7948],[119.9661,-3.786],[119.9635,-3.7813],[119.9578,-3.7786],[119.9539,-3.7811],[119.9502,-3.7793],[119.9455,-3.7712],[119.9401,-3.759],[119.9439,-3.7576],[119.9407,-3.7519],[119.9407,-3.7385],[119.9381,-3.7357],[119.9387,-3.7229],[119.9349,-3.7173],[119.9365,-3.7125],[119.9327,-3.7092],[119.9304,-3.7023],[119.9249,-3.7007],[119.9217,-3.6935],[119.9236,-3.6905],[119.923,-3.6852],[119.9271,-3.6792],[119.937,-3.676],[119.9406,-3.6717],[119.9452,-3.6705],[119.9498,-3.6658],[119.951,-3.6601],[119.9725,-3.6656],[119.9787,-3.6691],[119.9808,-3.6608],[119.9878,-3.6619],[119.9918,-3.6609],[119.9929,-3.652],[119.9957,-3.6453],[119.9915,-3.6293],[119.9993,-3.6274],[120.0055,-3.6234],[120.0129,-3.613],[120.0169,-3.606],[120.0198,-3.5963],[120.0272,-3.5783],[120.031,-3.5705],[120.0388,-3.5588],[120.0407,-3.5527],[120.0413,-3.5415],[120.0438,-3.5386],[120.0522,-3.5368],[120.0609,-3.5365],[120.068,-3.5303],[120.0734,-3.515],[120.0767,-3.5088],[120.0889,-3.5076],[120.0949,-3.5027],[120.0973,-3.4979],[120.0961,-3.4831],[120.0983,-3.4753],[120.0915,-3.4708],[120.0824,-3.4565],[120.0756,-3.448],[120.0724,-3.4473],[120.066,-3.438],[120.0597,-3.4144],[120.053,-3.4045],[120.0431,-3.4053],[120.0318,-3.4034],[120.0288,-3.3945],[120.026,-3.3907],[120.0181,-3.3869],[120.0213,-3.3785],[120.0281,-3.3775],[120.0339,-3.3737]]}},{"type":"Feature","properties":{"mhid":"1332:425","alt_name":"KABUPATEN LUWU","latitude":-2.5577,"longitude":121.3242,"sample_value":903},"geometry":{"type":"LineString","coordinates":[[120.0829,-3.0311],[120.079,-3.0318],[120.0744,-3.0294],[120.0663,-3.0348],[120.0688,-3.048],[120.0659,-3.0508],[120.0592,-3.0513],[120.0489,-3.0544],[120.0451,-3.0649],[120.0415,-3.0674],[120.0385,-3.0654],[120.0288,-3.0686],[120.0212,-3.0812],[120.02,-3.0915],[120.0214,-3.0971],[120.0168,-3.1121],[120.0158,-3.1209],[120.0074,-3.1261],[120.0059,-3.1303],[120.005,-3.1442],[120.0007,-3.1505],[119.9996,-3.1588],[120.0028,-3.1618],[120.0076,-3.1726],[120.0057,-3.1765],[119.9963,-3.1732],[119.9921,-3.1797],[119.9856,-3.184],[119.9851,-3.1872],[119.9862,-3.1962],[119.9895,-3.1987],[119.9917,-3.2046],[119.991,-3.2125],[119.9867,-3.2189],[119.9802,-3.2245],[119.9797,-3.2404],[119.9822,-3.2504],[119.9899,-3.2555],[119.9949,-3.2556],[119.9973,-3.2643],[120.0013,-3.2679],[120.0053,-3.2685],[120.013,-3.2721],[120.0216,-3.278],[120.0248,-3.2816],[120.025,-3.2899],[120.0278,-3.2943],[120.0295,-3.3058],[120.0308,-3.3081],[120.0299,-3.3203],[120.0341,-3.3296],[120.0355,-3.3368],[120.04,-3.3467],[120.0434,-3.3515],[120.0438,-3.3587],[120.04,-3.3718],[120.0339,-3.3737],[120.0281,-3.3775],[120.0213,-3.3785],[120.0181,-3.3869],[120.026,-3.3907],[120.0288,-3.3945],[120.0318,-3.4034],[120.0431,-3.4053],[120.053,-3.4045],[120.0597,-3.4144],[120.066,-3.438],[120.0724,-3.4473],[120.0756,-3.448],[120.0824,-3.4565],[120.0915,-3.4708],[120.0983,-3.4753],[120.0961,-3.4831],[120.1026,-3.4877],[120.117,-3.4866],[120.1251,-3.491],[120.1332,-3.4972],[120.1358,-3.5008],[120.1454,-3.5004],[120.1495,-3.5023],[120.1575,-3.501],[120.1629,-3.4984],[120.1706,-3.498],[120.179,-3.5068],[120.1795,-3.52],[120.1821,-3.5241],[120.1821,-3.5344],[120.1879,-3.5396],[120.189,-3.5449],[120.1926,-3.551],[120.1929,-3.5618],[120.192,-3.5664],[120.1964,-3.5815],[120.1995,-3.5848],[120.2058,-3.5862],[120.2076,-3.5944],[120.2209,-3.5914],[120.2307,-3.5924],[120.2428,-3.6009],[120.2509,-3.6097],[120.2534,-3.6102],[120.2682,-3.6203],[120.2702,-3.6277],[120.2796,-3.6327],[120.2828,-3.6329],[120.2872,-3.6378],[120.3017,-3.6472],[120.309,-3.6487],[120.3218,-3.6497],[120.3244,-3.6517],[120.3281,-3.6499],[120.3333,-3.6529],[120.3437,-3.65],[120.3515,-3.6524],[120.3593,-3.6528],[120.3613,-3.6549],[120.3842,-3.6589],[120.3869,-3.6586],[120.3948,-3.6624],[120.402,-3.6615],[120.4081,-3.6664],[120.412,-3.6636],[120.4152,-3.6598],[120.4115,-3.6526],[120.4117,-3.6412],[120.4134,-3.6367],[120.4178,-3.6322],[120.4182,-3.6265],[120.4156,-3.6198],[120.4189,-3.6133],[120.4197,-3.604],[120.4186,-3.5857],[120.4169,-3.5779],[120.4165,-3.5696],[120.4129,-3.5644],[120.4055,-3.561],[120.4051,-3.5556],[120.4007,-3.5511],[120.3998,-3.5343],[120.4021,-3.5315],[120.3966,-3.5278],[120.3922,-3.5271],[120.3868,-3.5217],[120.3872,-3.517],[120.3853,-3.5122],[120.3812,-3.5087],[120.3796,-3.4983],[120.3853,-3.4955],[120.3914,-3.4881],[120.3894,-3.4807],[120.3909,-3.4757],[120.3894,-3.4723],[120.391,-3.4483],[120.3894,-3.4456],[120.3958,-3.4414],[120.4044,-3.432],[120.4031,-3.4195],[120.4036,-3.4143],[120.403,-3.3983],[120.4014,-3.3941],[120.4021,-3.388],[120.3976,-3.3843],[120.4003,-3.3754],[120.399,-3.3669],[120.4018,-3.3547],[120.4013,-3.3489],[120.4043,-3.3417],[120.4038,-3.3359],[120.3977,-3.3213],[120.3981,-3.3118],[120.4066,-3.3057],[120.4063,-3.2976],[120.4017,-3.2941],[120.3989,-3.2888],[120.4037,-3.28],[120.4083,-3.2758],[120.4134,-3.275],[120.4193,-3.2702],[120.4209,-3.2651],[120.416,-3.2572],[120.4182,-3.2498],[120.4163,-3.2486],[120.4113,-3.2552],[120.4112,-3.2587],[120.4057,-3.2608],[120.3951,-3.2568],[120.3894,-3.2508],[120.3886,-3.2446],[120.3858,-3.2408],[120.3879,-3.229],[120.3825,-3.2236],[120.3811,-3.219],[120.3834,-3.2119],[120.3793,-3.2024],[120.3722,-3.1992],[120.3679,-3.2],[120.3656,-3.1968],[120.355,-3.1963],[120.3387,-3.1873],[120.3281,-3.1846],[120.3262,-3.1856],[120.3199,-3.1816],[120.3091,-3.1777],[120.304,-3.1779],[120.2987,-3.1754],[120.29,-3.168],[120.2784,-3.1669],[120.2746,-3.1655],[120.2716,-3.1682],[120.2656,-3.1665],[120.2556,-3.16],[120.2527,-3.1518],[120.2517,-3.1424],[120.2591,-3.1309],[120.2603,-3.1258],[120.2594,-3.11],[120.2626,-3.0878],[120.2625,-3.0825],[120.2586,-3.0688],[120.2589,-3.0656],[120.2543,-3.059],[120.2528,-3.0513],[120.248,-3.0493],[120.2396,-3.0501],[120.233,-3.0476],[120.2295,-3.0433],[120.2222,-3.0517],[120.216,-3.0567],[120.2047,-3.0593],[120.1903,-3.0549],[120.1855,-3.0554],[120.1779,-3.0537],[120.1656,-3.0573],[120.1637,-3.0688],[120.1602,-3.0718],[120.1503,-3.0728],[120.1485,-3.081],[120.1378,-3.0867],[120.1351,-3.0812],[120.1267,-3.0756],[120.1235,-3.0691],[120.1175,-3.0652],[120.1144,-3.0587],[120.1095,-3.0536],[120.1,-3.0474],[120.0974,-3.0412],[120.0931,-3.0357],[120.0871,-3.0343],[120.0829,-3.0311]]}},{"type":"Feature","properties":{"mhid":"1332:425","alt_name":"KABUPATEN LUWU","latitude":-2.5577,"longitude":121.3242,"sample_value":903},"geometry":{"type":"LineString","coordinates":[[120.2875,-2.9105],[120.2826,-2.9048],[120.2829,-2.9016],[120.2765,-2.8993],[120.2672,-2.8942],[120.267,-2.8914],[120.2725,-2.8886],[120.273,-2.8786],[120.2765,-2.8664],[120.2719,-2.8608],[120.2677,-2.8511],[120.2611,-2.8483],[120.2613,-2.8422],[120.2556,-2.8383],[120.2553,-2.8333],[120.2598,-2.8234],[120.2503,-2.8238],[120.2447,-2.8204],[120.2455,-2.816],[120.2377,-2.8143],[120.2313,-2.8107],[120.2314,-2.8083],[120.2187,-2.7938],[120.2168,-2.7892],[120.2121,-2.7897],[120.2026,-2.7802],[120.2014,-2.7772],[120.1957,-2.7726],[120.192,-2.7671],[120.1868,-2.7672],[120.1824,-2.7639],[120.179,-2.7557],[120.1738,-2.7498],[120.1723,-2.7387],[120.1681,-2.7341],[120.157,-2.7312],[120.1596,-2.7263],[120.1451,-2.7192],[120.139,-2.7126],[120.1393,-2.7093],[120.1356,-2.7051],[120.1309,-2.7031],[120.136,-2.6979],[120.1398,-2.6903],[120.138,-2.6811],[120.1298,-2.6737],[120.1241,-2.6744],[120.1113,-2.6718],[120.1019,-2.6659],[120.094,-2.6748],[120.0884,-2.688],[120.0822,-2.6954],[120.0719,-2.6974],[120.0648,-2.6907],[120.0603,-2.6905],[120.0574,-2.694],[120.0501,-2.6971],[120.047,-2.7006],[120.0343,-2.7007],[120.0253,-2.698],[120.0131,-2.6979],[119.995,-2.7012],[119.9876,-2.708],[119.9603,-2.7169],[119.9454,-2.7184],[119.9317,-2.7266],[119.9269,-2.7283],[119.9191,-2.7243],[119.9124,-2.7227],[119.9018,-2.7264],[119.899,-2.7336],[119.8769,-2.7373],[119.8721,-2.7407],[119.8723,-2.7501],[119.8743,-2.7544],[119.8832,-2.7647],[119.8871,-2.7663],[119.898,-2.7757],[119.9024,-2.7748],[119.9082,-2.7784],[119.9209,-2.778],[119.9261,-2.7817],[119.9324,-2.7794],[119.9413,-2.7807],[119.9505,-2.8004],[119.9567,-2.8014],[119.9602,-2.8064],[119.9597,-2.8149],[119.9517,-2.8302],[119.9538,-2.8348],[119.9542,-2.8442],[119.9629,-2.8561],[119.9698,-2.86],[119.983,-2.8602],[119.9899,-2.87],[119.991,-2.8768],[119.9962,-2.8819],[120.0029,-2.8914],[120.0025,-2.8989],[120.0046,-2.9019],[120.0121,-2.905],[120.0149,-2.908],[120.024,-2.9105],[120.034,-2.9189],[120.0431,-2.9229],[120.0462,-2.9282],[120.0432,-2.9381],[120.0447,-2.9453],[120.0483,-2.954],[120.0558,-2.9532],[120.0608,-2.9487],[120.0705,-2.9353],[120.0758,-2.9341],[120.0796,-2.9309],[120.086,-2.9297],[120.0943,-2.9178],[120.0979,-2.9184],[120.1161,-2.911],[120.1269,-2.9084],[120.1315,-2.9052],[120.14,-2.9033],[120.1433,-2.8964],[120.1474,-2.8971],[120.1518,-2.8934],[120.1613,-2.8885],[120.1709,-2.8868],[120.1802,-2.8916],[120.1851,-2.8904],[120.1928,-2.8916],[120.1995,-2.8902],[120.2083,-2.8946],[120.2165,-2.8959],[120.2187,-2.9005],[120.2177,-2.9093],[120.2157,-2.9132],[120.219,-2.9239],[120.2249,-2.9275],[120.2308,-2.9381],[120.2269,-2.9398],[120.2245,-2.9473],[120.2298,-2.9526],[120.2384,-2.9475],[120.2516,-2.9437],[120.2555,-2.9459],[120.263,-2.9398],[120.266,-2.9338],[120.2713,-2.934],[120.2859,-2.9212],[120.2879,-2.9158],[120.2875,-2.9105]]}},{"type":"Feature","properties":{"mhid":"1332:426","alt_name":"KABUPATEN TANA TORAJA","latitude":-3.0024,"longitude":119.79655,"sample_value":530},"geometry":{"type":"LineString","coordinates":[[119.6884,-2.753],[119.6809,-2.7562],[119.6686,-2.7551],[119.6648,-2.7535],[119.6496,-2.7541],[119.6448,-2.7517],[119.6359,-2.7516],[119.6302,-2.7545],[119.6239,-2.7508],[119.6139,-2.7491],[119.6113,-2.7425],[119.6061,-2.7402],[119.5977,-2.7425],[119.5872,-2.7434],[119.5834,-2.7476],[119.5784,-2.752],[119.5784,-2.7576],[119.5846,-2.7628],[119.5835,-2.766],[119.5753,-2.7713],[119.5732,-2.7752],[119.5712,-2.7866],[119.5651,-2.8064],[119.5615,-2.8132],[119.5667,-2.8216],[119.5632,-2.8306],[119.5614,-2.8508],[119.5627,-2.8539],[119.5679,-2.858],[119.5691,-2.867],[119.5672,-2.8736],[119.5634,-2.8797],[119.556,-2.8854],[119.5509,-2.8971],[119.5552,-2.9063],[119.5543,-2.9134],[119.5569,-2.9213],[119.5691,-2.9274],[119.5692,-2.9367],[119.5733,-2.9422],[119.5767,-2.9518],[119.5723,-2.9716],[119.5692,-2.974],[119.5651,-2.9953],[119.5713,-3.0046],[119.577,-3.0183],[119.5766,-3.0265],[119.5802,-3.0349],[119.5852,-3.0355],[119.5867,-3.0475],[119.589,-3.053],[119.5939,-3.0581],[119.5948,-3.0633],[119.5989,-3.0656],[119.6069,-3.0666],[119.6111,-3.074],[119.6191,-3.0792],[119.6211,-3.088],[119.6274,-3.0967],[119.6278,-3.1024],[119.6321,-3.11],[119.6316,-3.1246],[119.6307,-3.1284],[119.6144,-3.1246],[119.6099,-3.1202],[119.6055,-3.1198],[119.5999,-3.1267],[119.5963,-3.1281],[119.5863,-3.1254],[119.582,-3.1297],[119.5735,-3.1315],[119.5683,-3.1293],[119.5635,-3.1303],[119.5592,-3.1341],[119.5436,-3.1388],[119.5369,-3.1391],[119.5321,-3.1432],[119.5255,-3.1513],[119.5158,-3.1676],[119.5156,-3.1717],[119.5035,-3.1778],[119.4896,-3.1827],[119.4849,-3.1869],[119.4782,-3.1904],[119.4713,-3.1911],[119.4639,-3.1886],[119.4585,-3.1823],[119.4476,-3.1844],[119.4386,-3.1836],[119.4309,-3.1728],[119.4247,-3.1777],[119.4163,-3.1825],[119.4093,-3.1847],[119.3993,-3.1921],[119.3961,-3.1969],[119.392,-3.1983],[119.3831,-3.1957],[119.3723,-3.1965],[119.3703,-3.1993],[119.3732,-3.2126],[119.3792,-3.2183],[119.3908,-3.2324],[119.4004,-3.2388],[119.4074,-3.2414],[119.4212,-3.249],[119.4223,-3.2526],[119.4306,-3.2632],[119.4322,-3.2677],[119.4336,-3.2578],[119.4382,-3.2546],[119.4436,-3.2548],[119.4476,-3.2594],[119.4571,-3.2632],[119.4627,-3.2642],[119.472,-3.2744],[119.4926,-3.2818],[119.5014,-3.2948],[119.5055,-3.2975],[119.514,-3.2971],[119.5172,-3.2923],[119.52,-3.2804],[119.5287,-3.2749],[119.5345,-3.2737],[119.5412,-3.2748],[119.5442,-3.273],[119.5553,-3.2702],[119.5609,-3.2708],[119.5685,-3.2764],[119.5722,-3.2855],[119.5826,-3.2885],[119.5936,-3.2867],[119.6028,-3.2825],[119.6052,-3.2852],[119.6151,-3.2877],[119.6171,-3.2979],[119.62,-3.3022],[119.6275,-3.307],[119.6354,-3.3158],[119.6432,-3.3175],[119.6466,-3.3279],[119.6427,-3.3314],[119.6422,-3.3355],[119.6504,-3.3427],[119.6479,-3.3494],[119.6483,-3.3569],[119.65,-3.36],[119.6575,-3.3596],[119.6748,-3.3662],[119.6795,-3.3664],[119.6902,-3.3601],[119.695,-3.3504],[119.7037,-3.3492],[119.7127,-3.3505],[119.7169,-3.3532],[119.7213,-3.3525],[119.7172,-3.3405],[119.7233,-3.3318],[119.7223,-3.3247],[119.7177,-3.3205],[119.7134,-3.3135],[119.7166,-3.2985],[119.7228,-3.2913],[119.7371,-3.2824],[119.77,-3.2743],[119.7739,-3.2702],[119.7756,-3.2651],[119.7739,-3.2552],[119.7748,-3.2467],[119.7801,-3.2405],[119.7838,-3.2403],[119.7873,-3.2437],[119.7945,-3.2469],[119.8003,-3.2474],[119.8157,-3.2454],[119.831,-3.2487],[119.8335,-3.2537],[119.8405,-3.256],[119.8426,-3.2615],[119.8423,-3.2709],[119.8504,-3.2795],[119.8534,-3.2809],[119.8568,-3.274],[119.861,-3.2702],[119.871,-3.2745],[119.8713,-3.2694],[119.8763,-3.269],[119.8773,-3.2642],[119.8811,-3.2584],[119.8859,-3.2579],[119.8994,-3.2615],[119.9066,-3.2597],[119.9114,-3.2631],[119.9225,-3.2654],[119.9256,-3.2728],[119.9261,-3.2775],[119.9327,-3.2845],[119.9369,-3.2848],[119.9427,-3.2901],[119.9443,-3.2936],[119.9504,-3.2971],[119.9553,-3.2924],[119.9642,-3.2939],[119.9672,-3.2924],[119.9714,-3.2974],[119.9781,-3.2977],[119.9891,-3.3092],[119.9958,-3.3022],[119.9991,-3.3048],[120.0058,-3.3182],[120.0032,-3.3255],[120.002,-3.3339],[120.0083,-3.3389],[120.012,-3.3395],[120.0166,-3.3475],[120.0165,-3.3516],[120.02,-3.3586],[120.0252,-3.3625],[120.0327,-3.3635],[120.0277,-3.3711],[120.0339,-3.3737],[120.04,-3.3718],[120.0438,-3.3587],[120.0434,-3.3515],[120.04,-3.3467],[120.0355,-3.3368],[120.0341,-3.3296],[120.0299,-3.3203],[120.0308,-3.3081],[120.0295,-3.3058],[120.0278,-3.2943],[120.025,-3.2899],[120.0248,-3.2816],[120.0216,-3.278],[120.013,-3.2721],[120.0053,-3.2685],[120.0013,-3.2679],[119.9973,-3.2643],[119.9949,-3.2556],[119.9899,-3.2555],[119.9822,-3.2504],[119.9797,-3.2404],[119.9802,-3.2245],[119.9867,-3.2189],[119.991,-3.2125],[119.9917,-3.2046],[119.9895,-3.1987],[119.9862,-3.1962],[119.9851,-3.1872],[119.978,-3.1859],[119.9684,-3.1808],[119.9662,-3.1774],[119.9571,-3.1723],[119.9593,-3.1633],[119.9576,-3.1583],[119.9585,-3.149],[119.964,-3.1467],[119.9765,-3.1294],[119.9748,-3.1236],[119.9655,-3.1067],[119.9633,-3.1008],[119.9628,-3.092],[119.9692,-3.0733],[119.967,-3.0635],[119.9636,-3.0639],[119.9507,-3.0719],[119.9331,-3.0656],[119.9313,-3.0581],[119.9265,-3.0485],[119.9234,-3.0455],[119.9145,-3.046],[119.9016,-3.0444],[119.8944,-3.0449],[119.8921,-3.0421],[119.8916,-3.0364],[119.895,-3.0334],[119.8953,-3.0269],[119.8929,-3.0211],[119.8897,-3.0232],[119.8849,-3.0221],[119.8821,-3.0252],[119.8763,-3.0254],[119.8735,-3.0304],[119.8696,-3.0307],[119.8702,-3.0368],[119.8632,-3.0416],[119.8518,-3.0444],[119.8488,-3.038],[119.848,-3.0306],[119.8481,-3.0173],[119.8467,-3.0131],[119.8394,-3.0012],[119.8371,-3.0007],[119.8342,-3.0068],[119.8312,-3.0171],[119.8251,-3.0269],[119.8224,-3.0294],[119.804,-3.0294],[119.8008,-3.0186],[119.8011,-3.0142],[119.7966,-3.0071],[119.7944,-2.9994],[119.7942,-2.9899],[119.7912,-2.9788],[119.7873,-2.9729],[119.7935,-2.9673],[119.7997,-2.9664],[119.7991,-2.9623],[119.7933,-2.9572],[119.7901,-2.948],[119.7843,-2.9393],[119.7835,-2.9336],[119.7721,-2.9381],[119.7596,-2.9376],[119.7542,-2.9359],[119.7461,-2.9361],[119.7363,-2.9415],[119.7331,-2.9526],[119.7257,-2.9513],[119.7174,-2.9464],[119.7122,-2.9452],[119.7059,-2.929],[119.706,-2.9212],[119.7016,-2.9095],[119.6943,-2.9009],[119.6878,-2.8809],[119.6874,-2.8736],[119.6933,-2.8681],[119.6961,-2.8609],[119.6965,-2.8537],[119.6948,-2.8448],[119.6916,-2.8374],[119.6924,-2.8279],[119.6888,-2.811],[119.684,-2.7949],[119.6814,-2.7931],[119.6793,-2.7843],[119.6804,-2.7776],[119.6748,-2.7704],[119.6808,-2.7624],[119.6851,-2.7594],[119.6884,-2.753]]}},{"type":"Feature","properties":{"mhid":"1332:427","alt_name":"KABUPATEN LUWU UTARA","latitude":-2.6,"longitude":120.25,"sample_value":707},"geometry":{"type":"LineString","coordinates":[[120.6558,-2.6665],[120.6503,-2.6573],[120.6494,-2.6519],[120.6459,-2.6504],[120.6454,-2.6404],[120.6428,-2.6399],[120.6347,-2.6213],[120.6369,-2.6147],[120.6368,-2.6098],[120.6332,-2.6064],[120.6381,-2.6028],[120.6394,-2.5986],[120.636,-2.5921],[120.6283,-2.586],[120.6207,-2.585],[120.6192,-2.5795],[120.621,-2.5754],[120.6164,-2.5726],[120.6118,-2.5655],[120.6127,-2.5594],[120.6088,-2.5566],[120.6082,-2.5473],[120.6047,-2.5399],[120.5986,-2.5359],[120.597,-2.5299],[120.5978,-2.5232],[120.5903,-2.5152],[120.5918,-2.5104],[120.5856,-2.4929],[120.5809,-2.4883],[120.581,-2.4839],[120.574,-2.4661],[120.5748,-2.4582],[120.5728,-2.456],[120.5667,-2.4552],[120.5633,-2.4477],[120.56,-2.444],[120.5552,-2.4429],[120.5454,-2.433],[120.5424,-2.4284],[120.5432,-2.4171],[120.5452,-2.4101],[120.544,-2.4008],[120.5446,-2.3964],[120.5391,-2.3944],[120.5316,-2.3813],[120.5226,-2.3798],[120.5276,-2.3663],[120.5335,-2.3557],[120.5305,-2.3316],[120.5273,-2.3258],[120.5169,-2.322],[120.5123,-2.3171],[120.5089,-2.3023],[120.4983,-2.2861],[120.4952,-2.2833],[120.4832,-2.28],[120.4742,-2.2625],[120.4717,-2.254],[120.472,-2.2471],[120.4754,-2.2406],[120.4863,-2.2319],[120.4886,-2.2241],[120.487,-2.2198],[120.4897,-2.209],[120.4945,-2.2082],[120.5008,-2.205],[120.5062,-2.1908],[120.5081,-2.1807],[120.5089,-2.1701],[120.5074,-2.1654],[120.5122,-2.1534],[120.5183,-2.1478],[120.519,-2.1431],[120.5151,-2.1262],[120.5128,-2.098],[120.5187,-2.09],[120.5155,-2.0824],[120.5107,-2.0784],[120.5082,-2.0695],[120.5123,-2.0604],[120.5213,-2.051],[120.5028,-2.0296],[120.4862,-2.0044],[120.4839,-2.0021],[120.4839,-1.9873],[120.4769,-1.9778],[120.4744,-1.9698],[120.4705,-1.9629],[120.4657,-1.9611],[120.4641,-1.957],[120.4587,-1.9501],[120.4529,-1.945],[120.4462,-1.9373],[120.4416,-1.9365],[120.4274,-1.9241],[120.4188,-1.9145],[120.417,-1.9101],[120.4085,-1.8973],[120.4034,-1.8955],[120.3908,-1.8952],[120.3888,-1.8975],[120.3795,-1.9452],[120.3793,-1.9534],[120.3754,-1.9611],[120.3721,-1.9629],[120.367,-1.9816],[120.3629,-1.9916],[120.3619,-2.0108],[120.358,-2.0129],[120.357,-2.019],[120.3493,-2.0301],[120.3454,-2.049],[120.3447,-2.0567],[120.3398,-2.0613],[120.3349,-2.0616],[120.3275,-2.0583],[120.3173,-2.0519],[120.3111,-2.0506],[120.307,-2.0475],[120.2916,-2.0402],[120.2824,-2.0326],[120.2706,-2.0283],[120.2383,-2.029],[120.2324,-2.0321],[120.2178,-2.0326],[120.2034,-2.0362],[120.184,-2.0355],[120.1747,-2.0319],[120.1642,-2.0296],[120.1519,-2.0226],[120.146,-2.0226],[120.1373,-2.0201],[120.1291,-2.016],[120.1194,-2.0124],[120.115,-2.009],[120.114,-2.0055],[120.1134,-1.992],[120.1108,-1.9922],[120.099,-1.9857],[120.0853,-1.9797],[120.0535,-1.9822],[120.0485,-1.983],[120.0405,-1.9803],[120.0366,-1.9745],[120.0303,-1.971],[120.0208,-1.9677],[120.0152,-1.9697],[120.01,-1.9644],[119.9924,-1.9657],[119.9892,-1.9673],[119.9849,-1.973],[119.9728,-1.9748],[119.9689,-1.9767],[119.9658,-1.9837],[119.9641,-1.9927],[119.9638,-2.0003],[119.955,-2.0043],[119.9523,-2.0094],[119.9445,-2.0155],[119.9438,-2.0224],[119.945,-2.0283],[119.9399,-2.0303],[119.9366,-2.0352],[119.9283,-2.0371],[119.9207,-2.0337],[119.9147,-2.0448],[119.9091,-2.0534],[119.901,-2.0554],[119.8968,-2.054],[119.8941,-2.0493],[119.8911,-2.0497],[119.8827,-2.0449],[119.878,-2.037],[119.8716,-2.0345],[119.8682,-2.0275],[119.8734,-2.0211],[119.8703,-2.0181],[119.8658,-2.0208],[119.8624,-2.0271],[119.8615,-2.0327],[119.8547,-2.0354],[119.8515,-2.0418],[119.8423,-2.0459],[119.8392,-2.0446],[119.8288,-2.0467],[119.8254,-2.0489],[119.8177,-2.06],[119.8176,-2.0662],[119.8208,-2.0736],[119.8193,-2.0809],[119.8161,-2.0839],[119.8174,-2.0936],[119.8142,-2.1019],[119.81,-2.1035],[119.8037,-2.1122],[119.7931,-2.1085],[119.7895,-2.1098],[119.782,-2.1166],[119.7699,-2.121],[119.7661,-2.1249],[119.7665,-2.13],[119.7626,-2.1367],[119.7619,-2.1454],[119.7534,-2.152],[119.7516,-2.1549],[119.7432,-2.1543],[119.7383,-2.1616],[119.7293,-2.1663],[119.7271,-2.1716],[119.727,-2.1774],[119.7185,-2.1838],[119.7075,-2.1943],[119.7066,-2.1977],[119.7005,-2.2014],[119.6955,-2.2069],[119.6907,-2.2091],[119.6848,-2.208],[119.6743,-2.2103],[119.6682,-2.2161],[119.6596,-2.2304],[119.6562,-2.2342],[119.6445,-2.2397],[119.6376,-2.2402],[119.6326,-2.2425],[119.6293,-2.2528],[119.6324,-2.2609],[119.6324,-2.2652],[119.6362,-2.2798],[119.6347,-2.2842],[119.6286,-2.2942],[119.6429,-2.3098],[119.6435,-2.3135],[119.65,-2.3158],[119.6507,-2.3205],[119.6551,-2.3263],[119.6635,-2.3271],[119.6665,-2.3315],[119.6703,-2.3329],[119.6736,-2.3394],[119.6814,-2.3386],[119.6884,-2.3335],[119.6928,-2.3365],[119.6945,-2.3421],[119.6902,-2.3521],[119.6936,-2.3571],[119.6999,-2.371],[119.7144,-2.3924],[119.7198,-2.4043],[119.719,-2.4095],[119.7126,-2.4245],[119.6969,-2.4454],[119.6943,-2.4606],[119.695,-2.4639],[119.7005,-2.4738],[119.7212,-2.4877],[119.7266,-2.4923],[119.7313,-2.5003],[119.7311,-2.5077],[119.7283,-2.5217],[119.7265,-2.5268],[119.714,-2.5476],[119.711,-2.5545],[119.7095,-2.5665],[119.7161,-2.5759],[119.74,-2.5911],[119.7499,-2.6043],[119.7606,-2.6171],[119.7646,-2.6186],[119.7825,-2.6278],[119.79,-2.6332],[119.797,-2.6405],[119.8061,-2.6304],[119.8227,-2.627],[119.8393,-2.6113],[119.8476,-2.6118],[119.8536,-2.6207],[119.8548,-2.6275],[119.8538,-2.6326],[119.8582,-2.6395],[119.8584,-2.6452],[119.8558,-2.6519],[119.8562,-2.6556],[119.8537,-2.6652],[119.8552,-2.6697],[119.8527,-2.6764],[119.8538,-2.6826],[119.8527,-2.6996],[119.859,-2.7045],[119.8606,-2.7118],[119.867,-2.7228],[119.8721,-2.7407],[119.8769,-2.7373],[119.899,-2.7336],[119.9018,-2.7264],[119.9124,-2.7227],[119.9191,-2.7243],[119.9269,-2.7283],[119.9317,-2.7266],[119.9454,-2.7184],[119.9603,-2.7169],[119.9876,-2.708],[119.995,-2.7012],[120.0131,-2.6979],[120.0253,-2.698],[120.0343,-2.7007],[120.047,-2.7006],[120.0501,-2.6971],[120.0574,-2.694],[120.0603,-2.6905],[120.0648,-2.6907],[120.0719,-2.6974],[120.0822,-2.6954],[120.0884,-2.688],[120.094,-2.6748],[120.1019,-2.6659],[120.1113,-2.6718],[120.1241,-2.6744],[120.1298,-2.6737],[120.138,-2.6811],[120.1398,-2.6903],[120.136,-2.6979],[120.1309,-2.7031],[120.1356,-2.7051],[120.1393,-2.7093],[120.139,-2.7126],[120.1451,-2.7192],[120.1596,-2.7263],[120.157,-2.7312],[120.1681,-2.7341],[120.1723,-2.7387],[120.1738,-2.7498],[120.179,-2.7557],[120.1824,-2.7639],[120.1868,-2.7672],[120.192,-2.7671],[120.1957,-2.7726],[120.2014,-2.7772],[120.2026,-2.7802],[120.2121,-2.7897],[120.2168,-2.7892],[120.2187,-2.7938],[120.2314,-2.8083],[120.2313,-2.8107],[120.2377,-2.8143],[120.2455,-2.816],[120.2447,-2.8204],[120.2503,-2.8238],[120.2598,-2.8234],[120.2553,-2.8333],[120.2556,-2.8383],[120.2613,-2.8422],[120.2611,-2.8483],[120.2677,-2.8511],[120.2719,-2.8608],[120.2765,-2.8664],[120.273,-2.8786],[120.2725,-2.8886],[120.267,-2.8914],[120.2672,-2.8942],[120.2765,-2.8993],[120.2829,-2.9016],[120.2826,-2.9048],[120.2875,-2.9105],[120.2933,-2.9173],[120.2964,-2.9167],[120.2997,-2.9092],[120.3029,-2.9065],[120.3077,-2.9088],[120.3244,-2.9025],[120.3247,-2.9],[120.3313,-2.896],[120.3351,-2.8865],[120.3433,-2.8798],[120.347,-2.8737],[120.3464,-2.8702],[120.3574,-2.8642],[120.3623,-2.8661],[120.3712,-2.8624],[120.376,-2.8616],[120.3902,-2.8535],[120.3968,-2.8514],[120.3997,-2.8476],[120.4044,-2.8464],[120.4094,-2.8428],[120.4168,-2.8431],[120.4254,-2.8368],[120.4277,-2.8374],[120.4315,-2.8321],[120.4365,-2.8319],[120.4443,-2.8285],[120.4554,-2.8219],[120.4556,-2.8199],[120.462,-2.8136],[120.4673,-2.8116],[120.4668,-2.8081],[120.4723,-2.8069],[120.4781,-2.8025],[120.4809,-2.7965],[120.4838,-2.7958],[120.4855,-2.7906],[120.4894,-2.7886],[120.4882,-2.7832],[120.4921,-2.7802],[120.4987,-2.7787],[120.5021,-2.7726],[120.5089,-2.7738],[120.518,-2.7697],[120.5236,-2.761],[120.5275,-2.7595],[120.5327,-2.7537],[120.5363,-2.7529],[120.5407,-2.7469],[120.5407,-2.7388],[120.5577,-2.7298],[120.5642,-2.7255],[120.5641,-2.721],[120.571,-2.7148],[120.5695,-2.7083],[120.5732,-2.7052],[120.5746,-2.699],[120.5703,-2.6951],[120.57,-2.6897],[120.5718,-2.6859],[120.5776,-2.6865],[120.5831,-2.6845],[120.5873,-2.6856],[120.5927,-2.6842],[120.5998,-2.6796],[120.6082,-2.6785],[120.6112,-2.6814],[120.6155,-2.6811],[120.6236,-2.6837],[120.6335,-2.6821],[120.65,-2.6682],[120.6558,-2.6665]]}},{"type":"Feature","properties":{"mhid":"1332:428","alt_name":"KABUPATEN LUWU TIMUR","latitude":-2.50957,"longitude":120.3978,"sample_value":48},"geometry":{"type":"LineString","coordinates":[[121.7797,-2.6355],[121.7799,-2.6311],[121.7759,-2.6258],[121.7679,-2.6191],[121.7556,-2.6105],[121.7363,-2.5901],[121.7255,-2.5712],[121.7054,-2.5401],[121.7,-2.5344],[121.6938,-2.5316],[121.6873,-2.535],[121.6866,-2.5409],[121.6829,-2.5427],[121.6682,-2.537],[121.6595,-2.5398],[121.6517,-2.5383],[121.6437,-2.5227],[121.6363,-2.502],[121.6295,-2.4924],[121.6175,-2.4858],[121.6115,-2.4848],[121.606,-2.4857],[121.5931,-2.4904],[121.5858,-2.4918],[121.5736,-2.491],[121.5615,-2.4916],[121.5568,-2.4861],[121.5496,-2.4802],[121.5455,-2.4719],[121.5302,-2.4666],[121.5272,-2.4618],[121.516,-2.4599],[121.5122,-2.4545],[121.5066,-2.4516],[121.5013,-2.4526],[121.4979,-2.4468],[121.4941,-2.4365],[121.49,-2.43],[121.4688,-2.4216],[121.4603,-2.4198],[121.4479,-2.4122],[121.4418,-2.4054],[121.4374,-2.4066],[121.4231,-2.407],[121.4144,-2.4071],[121.41,-2.4106],[121.3824,-2.4049],[121.3583,-2.3989],[121.3308,-2.3912],[121.3187,-2.3888],[121.3008,-2.3788],[121.2957,-2.3771],[121.2739,-2.3724],[121.2406,-2.3666],[121.2322,-2.3618],[121.229,-2.3614],[121.2222,-2.365],[121.2064,-2.3713],[121.1932,-2.3744],[121.1827,-2.3755],[121.1749,-2.3688],[121.1656,-2.3547],[121.1601,-2.3487],[121.1505,-2.3416],[121.1465,-2.3353],[121.1415,-2.3218],[121.1312,-2.3094],[121.1127,-2.2909],[121.1051,-2.2792],[121.097,-2.2747],[121.0839,-2.2711],[121.0673,-2.2679],[121.0501,-2.2674],[121.04,-2.2739],[121.0344,-2.2755],[121.03,-2.2713],[121.0104,-2.2623],[121.0031,-2.252],[120.9909,-2.2441],[120.9742,-2.2387],[120.9606,-2.2337],[120.9365,-2.2282],[120.8726,-2.219],[120.8527,-2.2181],[120.8422,-2.2184],[120.8421,-2.2184],[120.8377,-2.2186],[120.805,-2.2253],[120.7969,-2.2341],[120.791,-2.2385],[120.7566,-2.239],[120.7423,-2.2303],[120.7238,-2.2262],[120.7174,-2.2233],[120.7094,-2.2167],[120.6918,-2.2072],[120.6853,-2.2054],[120.6766,-2.1957],[120.6684,-2.1923],[120.6628,-2.1875],[120.6379,-2.1716],[120.6297,-2.1669],[120.6151,-2.1567],[120.602,-2.1426],[120.5864,-2.1295],[120.5803,-2.1226],[120.5782,-2.1162],[120.5408,-2.0747],[120.5398,-2.0703],[120.5315,-2.0624],[120.5213,-2.051],[120.5123,-2.0604],[120.5082,-2.0695],[120.5107,-2.0784],[120.5155,-2.0824],[120.5187,-2.09],[120.5128,-2.098],[120.5151,-2.1262],[120.519,-2.1431],[120.5183,-2.1478],[120.5122,-2.1534],[120.5074,-2.1654],[120.5089,-2.1701],[120.5081,-2.1807],[120.5062,-2.1908],[120.5008,-2.205],[120.4945,-2.2082],[120.4897,-2.209],[120.487,-2.2198],[120.4886,-2.2241],[120.4863,-2.2319],[120.4754,-2.2406],[120.472,-2.2471],[120.4717,-2.254],[120.4742,-2.2625],[120.4832,-2.28],[120.4952,-2.2833],[120.4983,-2.2861],[120.5089,-2.3023],[120.5123,-2.3171],[120.5169,-2.322],[120.5273,-2.3258],[120.5305,-2.3316],[120.5335,-2.3557],[120.5276,-2.3663],[120.5226,-2.3798],[120.5316,-2.3813],[120.5391,-2.3944],[120.5446,-2.3964],[120.544,-2.4008],[120.5452,-2.4101],[120.5432,-2.4171],[120.5424,-2.4284],[120.5454,-2.433],[120.5552,-2.4429],[120.56,-2.444],[120.5633,-2.4477],[120.5667,-2.4552],[120.5728,-2.456],[120.5748,-2.4582],[120.574,-2.4661],[120.581,-2.4839],[120.5809,-2.4883],[120.5856,-2.4929],[120.5918,-2.5104],[120.5903,-2.5152],[120.5978,-2.5232],[120.597,-2.5299],[120.5986,-2.5359],[120.6047,-2.5399],[120.6082,-2.5473],[120.6088,-2.5566],[120.6127,-2.5594],[120.6118,-2.5655],[120.6164,-2.5726],[120.621,-2.5754],[120.6192,-2.5795],[120.6207,-2.585],[120.6283,-2.586],[120.636,-2.5921],[120.6394,-2.5986],[120.6381,-2.6028],[120.6332,-2.6064],[120.6368,-2.6098],[120.6369,-2.6147],[120.6347,-2.6213],[120.6428,-2.6399],[120.6454,-2.6404],[120.6459,-2.6504],[120.6494,-2.6519],[120.6503,-2.6573],[120.6558,-2.6665],[120.6621,-2.6626],[120.6669,-2.6521],[120.6727,-2.6491],[120.6727,-2.6458],[120.6811,-2.6457],[120.6859,-2.643],[120.6915,-2.6435],[120.7124,-2.6421],[120.7186,-2.6373],[120.7289,-2.6358],[120.7398,-2.6359],[120.7461,-2.6371],[120.7474,-2.6303],[120.7506,-2.6224],[120.7554,-2.6201],[120.7726,-2.6194],[120.7824,-2.6272],[120.787,-2.6271],[120.7915,-2.6234],[120.7961,-2.624],[120.8017,-2.62],[120.8092,-2.6188],[120.8173,-2.6196],[120.8269,-2.6288],[120.8272,-2.6371],[120.8373,-2.6409],[120.8407,-2.6501],[120.8547,-2.6566],[120.863,-2.6569],[120.8673,-2.6547],[120.8677,-2.6456],[120.8746,-2.645],[120.8917,-2.642],[120.9009,-2.6482],[120.9051,-2.6558],[120.9067,-2.6624],[120.913,-2.6611],[120.9148,-2.6649],[120.9198,-2.6641],[120.9257,-2.6601],[120.9477,-2.6607],[120.9488,-2.665],[120.9545,-2.6686],[120.9571,-2.6675],[120.9623,-2.6702],[120.9705,-2.6706],[120.9735,-2.668],[120.9786,-2.6676],[120.9896,-2.6723],[120.9941,-2.6784],[120.9977,-2.6793],[121.0019,-2.6761],[121.0043,-2.6788],[121.0107,-2.6772],[121.0137,-2.6731],[121.0195,-2.6729],[121.0219,-2.6677],[121.0189,-2.6576],[121.0206,-2.6511],[121.0294,-2.654],[121.0312,-2.6598],[121.0431,-2.6562],[121.0446,-2.6543],[121.0544,-2.6584],[121.0488,-2.662],[121.0374,-2.6637],[121.0343,-2.6777],[121.037,-2.6943],[121.0501,-2.6981],[121.0568,-2.6933],[121.0629,-2.6935],[121.0688,-2.6977],[121.0794,-2.6988],[121.0846,-2.7043],[121.0875,-2.7152],[121.096,-2.7156],[121.0942,-2.7232],[121.085,-2.7329],[121.0861,-2.7404],[121.0827,-2.7444],[121.0766,-2.7461],[121.069,-2.7429],[121.0628,-2.7487],[121.0647,-2.7518],[121.0651,-2.7644],[121.0602,-2.7706],[121.0491,-2.773],[121.0482,-2.7777],[121.0365,-2.7769],[121.0373,-2.7719],[121.0317,-2.773],[121.0299,-2.7811],[121.0262,-2.7834],[121.0262,-2.789],[121.0206,-2.7924],[121.0216,-2.8039],[121.0172,-2.8086],[121.0132,-2.8048],[121.0077,-2.804],[121.0067,-2.8082],[121.0032,-2.8096],[121.0035,-2.814],[121.0007,-2.8166],[120.9937,-2.8185],[120.9908,-2.8159],[120.985,-2.8162],[120.9778,-2.8062],[120.9747,-2.8087],[120.9784,-2.8231],[120.9822,-2.8223],[120.9883,-2.8313],[121,-2.8262],[121.0169,-2.8213],[121.0194,-2.8198],[121.028,-2.807],[121.0295,-2.7962],[121.0371,-2.7915],[121.0448,-2.7926],[121.0541,-2.7914],[121.0614,-2.787],[121.0687,-2.7875],[121.0791,-2.7796],[121.0841,-2.7798],[121.108,-2.7867],[121.1214,-2.7913],[121.133,-2.7978],[121.145,-2.8082],[121.154,-2.8152],[121.1663,-2.8148],[121.1727,-2.8181],[121.177,-2.8306],[121.1809,-2.8355],[121.1858,-2.8372],[121.1948,-2.8518],[121.2024,-2.8573],[121.2093,-2.8538],[121.2115,-2.8576],[121.2179,-2.8539],[121.222,-2.857],[121.2241,-2.8447],[121.2301,-2.8446],[121.2332,-2.8419],[121.2308,-2.8372],[121.2352,-2.8288],[121.2413,-2.8253],[121.2557,-2.8235],[121.2737,-2.8204],[121.2835,-2.8172],[121.2933,-2.8084],[121.3016,-2.8057],[121.3093,-2.8057],[121.3192,-2.8083],[121.3326,-2.834],[121.3364,-2.8441],[121.3391,-2.8557],[121.3438,-2.8674],[121.35,-2.8781],[121.3551,-2.89],[121.3577,-2.8993],[121.3577,-2.9039],[121.3522,-2.9114],[121.3369,-2.925],[121.329,-2.9352],[121.3295,-2.9399],[121.3375,-2.9485],[121.3406,-2.9532],[121.3468,-2.9665],[121.3526,-2.9726],[121.3578,-2.9747],[121.3622,-2.9761],[121.3743,-2.9772],[121.3872,-2.9834],[121.4076,-3],[121.4138,-3.003],[121.4242,-3.0049],[121.4401,-3.0067],[121.4574,-3.0132],[121.4608,-3.0109],[121.4643,-3.0004],[121.4919,-2.9782],[121.4991,-2.9741],[121.5083,-2.9738],[121.518,-2.9681],[121.5254,-2.9621],[121.5302,-2.9567],[121.5402,-2.9408],[121.5447,-2.9249],[121.5471,-2.9217],[121.5575,-2.9195],[121.5658,-2.9222],[121.5704,-2.9175],[121.5745,-2.9171],[121.5888,-2.911],[121.5969,-2.905],[121.6009,-2.9035],[121.6168,-2.9057],[121.6199,-2.9048],[121.6298,-2.8972],[121.6378,-2.8941],[121.6428,-2.8944],[121.6504,-2.8976],[121.6586,-2.8988],[121.6678,-2.8969],[121.6754,-2.9004],[121.6855,-2.9008],[121.6894,-2.8911],[121.6912,-2.8845],[121.6883,-2.878],[121.6805,-2.8736],[121.6737,-2.8705],[121.6715,-2.8586],[121.6715,-2.8515],[121.6712,-2.8504],[121.6699,-2.8425],[121.6797,-2.8279],[121.6873,-2.8206],[121.7001,-2.8145],[121.7061,-2.8159],[121.7094,-2.8182],[121.7157,-2.8169],[121.7222,-2.8106],[121.7246,-2.8054],[121.7231,-2.7841],[121.7227,-2.7748],[121.7216,-2.7709],[121.7242,-2.7658],[121.7401,-2.7571],[121.7431,-2.7494],[121.7544,-2.7344],[121.7556,-2.7199],[121.7577,-2.7051],[121.7603,-2.7005],[121.7671,-2.6941],[121.7771,-2.6876],[121.7891,-2.6677],[121.7904,-2.6592],[121.7887,-2.6545],[121.7806,-2.6492],[121.7784,-2.6423],[121.7797,-2.6355]]}},{"type":"Feature","properties":{"mhid":"1332:429","alt_name":"KABUPATEN TORAJA UTARA","latitude":-2.92738,"longitude":119.79218,"sample_value":198},"geometry":{"type":"LineString","coordinates":[[119.8721,-2.7407],[119.867,-2.7228],[119.8606,-2.7118],[119.859,-2.7045],[119.8527,-2.6996],[119.8538,-2.6826],[119.8527,-2.6764],[119.8552,-2.6697],[119.8537,-2.6652],[119.8562,-2.6556],[119.8558,-2.6519],[119.8584,-2.6452],[119.8582,-2.6395],[119.8538,-2.6326],[119.8548,-2.6275],[119.8536,-2.6207],[119.8476,-2.6118],[119.8393,-2.6113],[119.8227,-2.627],[119.8061,-2.6304],[119.797,-2.6405],[119.7938,-2.6426],[119.7872,-2.6507],[119.7842,-2.6523],[119.7761,-2.6623],[119.7662,-2.6636],[119.7525,-2.671],[119.7573,-2.6809],[119.7556,-2.6852],[119.748,-2.6886],[119.7492,-2.6922],[119.7462,-2.6954],[119.7485,-2.6993],[119.7494,-2.7059],[119.7485,-2.7115],[119.7455,-2.7153],[119.7296,-2.7185],[119.7234,-2.727],[119.7133,-2.7297],[119.7078,-2.7324],[119.6997,-2.7428],[119.6959,-2.7449],[119.6931,-2.7495],[119.6884,-2.753],[119.6851,-2.7594],[119.6808,-2.7624],[119.6748,-2.7704],[119.6804,-2.7776],[119.6793,-2.7843],[119.6814,-2.7931],[119.684,-2.7949],[119.6888,-2.811],[119.6924,-2.8279],[119.6916,-2.8374],[119.6948,-2.8448],[119.6965,-2.8537],[119.6961,-2.8609],[119.6933,-2.8681],[119.6874,-2.8736],[119.6878,-2.8809],[119.6943,-2.9009],[119.7016,-2.9095],[119.706,-2.9212],[119.7059,-2.929],[119.7122,-2.9452],[119.7174,-2.9464],[119.7257,-2.9513],[119.7331,-2.9526],[119.7363,-2.9415],[119.7461,-2.9361],[119.7542,-2.9359],[119.7596,-2.9376],[119.7721,-2.9381],[119.7835,-2.9336],[119.7843,-2.9393],[119.7901,-2.948],[119.7933,-2.9572],[119.7991,-2.9623],[119.7997,-2.9664],[119.7935,-2.9673],[119.7873,-2.9729],[119.7912,-2.9788],[119.7942,-2.9899],[119.7944,-2.9994],[119.7966,-3.0071],[119.8011,-3.0142],[119.8008,-3.0186],[119.804,-3.0294],[119.8224,-3.0294],[119.8251,-3.0269],[119.8312,-3.0171],[119.8342,-3.0068],[119.8371,-3.0007],[119.8394,-3.0012],[119.8467,-3.0131],[119.8481,-3.0173],[119.848,-3.0306],[119.8488,-3.038],[119.8518,-3.0444],[119.8632,-3.0416],[119.8702,-3.0368],[119.8696,-3.0307],[119.8735,-3.0304],[119.8763,-3.0254],[119.8821,-3.0252],[119.8849,-3.0221],[119.8897,-3.0232],[119.8929,-3.0211],[119.8953,-3.0269],[119.895,-3.0334],[119.8916,-3.0364],[119.8921,-3.0421],[119.8944,-3.0449],[119.9016,-3.0444],[119.9145,-3.046],[119.9234,-3.0455],[119.9265,-3.0485],[119.9313,-3.0581],[119.9331,-3.0656],[119.9507,-3.0719],[119.9636,-3.0639],[119.967,-3.0635],[119.9692,-3.0733],[119.9628,-3.092],[119.9633,-3.1008],[119.9655,-3.1067],[119.9748,-3.1236],[119.9765,-3.1294],[119.964,-3.1467],[119.9585,-3.149],[119.9576,-3.1583],[119.9593,-3.1633],[119.9571,-3.1723],[119.9662,-3.1774],[119.9684,-3.1808],[119.978,-3.1859],[119.9851,-3.1872],[119.9856,-3.184],[119.9921,-3.1797],[119.9963,-3.1732],[120.0057,-3.1765],[120.0076,-3.1726],[120.0028,-3.1618],[119.9996,-3.1588],[120.0007,-3.1505],[120.005,-3.1442],[120.0059,-3.1303],[120.0074,-3.1261],[120.0158,-3.1209],[120.0168,-3.1121],[120.0214,-3.0971],[120.02,-3.0915],[120.0212,-3.0812],[120.0288,-3.0686],[120.0385,-3.0654],[120.0415,-3.0674],[120.0451,-3.0649],[120.0489,-3.0544],[120.0592,-3.0513],[120.0659,-3.0508],[120.0688,-3.048],[120.0663,-3.0348],[120.0744,-3.0294],[120.079,-3.0318],[120.0829,-3.0311],[120.086,-3.0217],[120.0831,-3.0111],[120.0843,-3.0064],[120.0774,-3.002],[120.0718,-3.001],[120.0636,-2.9939],[120.0624,-2.9903],[120.0562,-2.9877],[120.0526,-2.9828],[120.0585,-2.9713],[120.0571,-2.9643],[120.0515,-2.961],[120.0483,-2.954],[120.0447,-2.9453],[120.0432,-2.9381],[120.0462,-2.9282],[120.0431,-2.9229],[120.034,-2.9189],[120.024,-2.9105],[120.0149,-2.908],[120.0121,-2.905],[120.0046,-2.9019],[120.0025,-2.8989],[120.0029,-2.8914],[119.9962,-2.8819],[119.991,-2.8768],[119.9899,-2.87],[119.983,-2.8602],[119.9698,-2.86],[119.9629,-2.8561],[119.9542,-2.8442],[119.9538,-2.8348],[119.9517,-2.8302],[119.9597,-2.8149],[119.9602,-2.8064],[119.9567,-2.8014],[119.9505,-2.8004],[119.9413,-2.7807],[119.9324,-2.7794],[119.9261,-2.7817],[119.9209,-2.778],[119.9082,-2.7784],[119.9024,-2.7748],[119.898,-2.7757],[119.8871,-2.7663],[119.8832,-2.7647],[119.8743,-2.7544],[119.8723,-2.7501],[119.8721,-2.7407]]}},{"type":"Feature","properties":{"mhid":"1332:430","alt_name":"KOTA MAKASSAR","latitude":-5.15,"longitude":119.45,"sample_value":369},"geometry":{"type":"LineString","coordinates":[[119.2879,-5.1026],[119.2836,-5.1065],[119.2861,-5.1103],[119.2895,-5.1054],[119.2879,-5.1026]]}},{"type":"Feature","properties":{"mhid":"1332:430","alt_name":"KOTA MAKASSAR","latitude":-5.15,"longitude":119.45,"sample_value":369},"geometry":{"type":"LineString","coordinates":[[119.4031,-5.0868],[119.4006,-5.1003],[119.4042,-5.1016],[119.4059,-5.0872],[119.4031,-5.0868]]}},{"type":"Feature","properties":{"mhid":"1332:430","alt_name":"KOTA MAKASSAR","latitude":-5.15,"longitude":119.45,"sample_value":369},"geometry":{"type":"LineString","coordinates":[[119.318,-5.0894],[119.3223,-5.0796],[119.318,-5.0767],[119.3153,-5.0843],[119.318,-5.0894]]}},{"type":"Feature","properties":{"mhid":"1332:430","alt_name":"KOTA MAKASSAR","latitude":-5.15,"longitude":119.45,"sample_value":369},"geometry":{"type":"LineString","coordinates":[[119.4102,-5.0776],[119.4061,-5.0768],[119.4045,-5.0833],[119.4119,-5.0811],[119.4102,-5.0776]]}},{"type":"Feature","properties":{"mhid":"1332:430","alt_name":"KOTA MAKASSAR","latitude":-5.15,"longitude":119.45,"sample_value":369},"geometry":{"type":"LineString","coordinates":[[119.4048,-5.0751],[119.4091,-5.0702],[119.4052,-5.066],[119.4029,-5.0683],[119.4048,-5.0751]]}},{"type":"Feature","properties":{"mhid":"1332:430","alt_name":"KOTA MAKASSAR","latitude":-5.15,"longitude":119.45,"sample_value":369},"geometry":{"type":"LineString","coordinates":[[119.5192,-5.1656],[119.5135,-5.1621],[119.502,-5.162],[119.4982,-5.1557],[119.4989,-5.151],[119.5023,-5.1465],[119.5075,-5.1512],[119.51,-5.147],[119.5165,-5.1506],[119.521,-5.1474],[119.5213,-5.1434],[119.5266,-5.1384],[119.5283,-5.1324],[119.5361,-5.1308],[119.539,-5.1253],[119.5403,-5.1168],[119.5428,-5.1115],[119.5374,-5.0937],[119.5412,-5.0848],[119.5368,-5.0754],[119.5326,-5.0719],[119.5277,-5.064],[119.5161,-5.0623],[119.514,-5.067],[119.5018,-5.0695],[119.4951,-5.0652],[119.4871,-5.0654],[119.484,-5.0593],[119.478,-5.059],[119.4711,-5.0654],[119.466,-5.0774],[119.4627,-5.0815],[119.4483,-5.0865],[119.4498,-5.0896],[119.4496,-5.0964],[119.4537,-5.1005],[119.4479,-5.1027],[119.4427,-5.1021],[119.4338,-5.1052],[119.4308,-5.1043],[119.4256,-5.1068],[119.4219,-5.1115],[119.4135,-5.1119],[119.4091,-5.1137],[119.4065,-5.1256],[119.4017,-5.133],[119.4038,-5.134],[119.4077,-5.1452],[119.402,-5.1535],[119.3984,-5.1523],[119.3929,-5.1586],[119.3875,-5.1617],[119.3871,-5.1836],[119.3827,-5.1884],[119.3792,-5.1952],[119.3835,-5.2082],[119.3837,-5.2144],[119.3921,-5.2175],[119.3918,-5.2261],[119.4013,-5.2333],[119.4052,-5.2251],[119.4047,-5.2178],[119.4076,-5.2104],[119.4111,-5.2077],[119.4096,-5.2031],[119.4003,-5.1992],[119.3971,-5.2],[119.3907,-5.1968],[119.3907,-5.1932],[119.3962,-5.1909],[119.3965,-5.1865],[119.4019,-5.1869],[119.408,-5.1827],[119.4128,-5.191],[119.4218,-5.1946],[119.4326,-5.1897],[119.4391,-5.1924],[119.4414,-5.1886],[119.4456,-5.1887],[119.4611,-5.1946],[119.4632,-5.1784],[119.4668,-5.1776],[119.4753,-5.1832],[119.4834,-5.1872],[119.4866,-5.1909],[119.4925,-5.1899],[119.5003,-5.1926],[119.5134,-5.1947],[119.5154,-5.1914],[119.5163,-5.1824],[119.5125,-5.1764],[119.5188,-5.1691],[119.5192,-5.1656]]}},{"type":"Feature","properties":{"mhid":"1332:430","alt_name":"KOTA MAKASSAR","latitude":-5.15,"longitude":119.45,"sample_value":369},"geometry":{"type":"LineString","coordinates":[[119.4288,-5.0584],[119.4307,-5.0561],[119.4267,-5.0505],[119.4223,-5.0522],[119.4243,-5.0585],[119.4288,-5.0584]]}},{"type":"Feature","properties":{"mhid":"1332:430","alt_name":"KOTA MAKASSAR","latitude":-5.15,"longitude":119.45,"sample_value":369},"geometry":{"type":"LineString","coordinates":[[119.3313,-5.0499],[119.332,-5.0462],[119.3291,-5.0416],[119.3239,-5.0417],[119.3237,-5.0475],[119.3258,-5.0548],[119.3303,-5.0547],[119.3313,-5.0499]]}},{"type":"Feature","properties":{"mhid":"1332:430","alt_name":"KOTA MAKASSAR","latitude":-5.15,"longitude":119.45,"sample_value":369},"geometry":{"type":"LineString","coordinates":[[119.2766,-5.0321],[119.2744,-5.0365],[119.277,-5.0418],[119.2805,-5.0359],[119.2766,-5.0321]]}},{"type":"Feature","properties":{"mhid":"1332:430","alt_name":"KOTA MAKASSAR","latitude":-5.15,"longitude":119.45,"sample_value":369},"geometry":{"type":"LineString","coordinates":[[119.3246,-5.0057],[119.3227,-5.0144],[119.3277,-5.0208],[119.3268,-5.009],[119.3246,-5.0057]]}},{"type":"Feature","properties":{"mhid":"1332:431","alt_name":"KOTA PARE-PARE","latitude":-4.03333,"longitude":119.65,"sample_value":116},"geometry":{"type":"LineString","coordinates":[[119.6641,-3.9613],[119.6579,-3.966],[119.6514,-3.9729],[119.6452,-3.9739],[119.6404,-3.9799],[119.6357,-3.9824],[119.6323,-3.997],[119.6303,-4.0018],[119.6219,-4.0061],[119.6199,-4.0148],[119.6242,-4.0251],[119.6259,-4.0383],[119.6231,-4.0476],[119.6172,-4.0525],[119.6224,-4.0572],[119.6231,-4.0609],[119.6203,-4.0671],[119.6262,-4.0703],[119.6293,-4.0742],[119.6346,-4.0741],[119.6405,-4.0769],[119.6527,-4.0761],[119.6696,-4.0723],[119.6765,-4.0735],[119.6809,-4.076],[119.7004,-4.0766],[119.7072,-4.0793],[119.7146,-4.0768],[119.7149,-4.0723],[119.71,-4.0722],[119.7076,-4.0683],[119.7065,-4.0606],[119.698,-4.0514],[119.698,-4.0343],[119.7005,-4.0304],[119.6974,-4.0182],[119.6919,-4.0142],[119.6888,-4.0092],[119.6918,-3.9999],[119.6919,-3.9942],[119.6866,-3.994],[119.6829,-3.9858],[119.6707,-3.973],[119.6641,-3.9613]]}},{"type":"Feature","properties":{"mhid":"1332:432","alt_name":"KOTA PALOPO","latitude":-2.97841,"longitude":120.11078,"sample_value":519},"geometry":{"type":"LineString","coordinates":[[120.2298,-2.9526],[120.2245,-2.9473],[120.2269,-2.9398],[120.2308,-2.9381],[120.2249,-2.9275],[120.219,-2.9239],[120.2157,-2.9132],[120.2177,-2.9093],[120.2187,-2.9005],[120.2165,-2.8959],[120.2083,-2.8946],[120.1995,-2.8902],[120.1928,-2.8916],[120.1851,-2.8904],[120.1802,-2.8916],[120.1709,-2.8868],[120.1613,-2.8885],[120.1518,-2.8934],[120.1474,-2.8971],[120.1433,-2.8964],[120.14,-2.9033],[120.1315,-2.9052],[120.1269,-2.9084],[120.1161,-2.911],[120.0979,-2.9184],[120.0943,-2.9178],[120.086,-2.9297],[120.0796,-2.9309],[120.0758,-2.9341],[120.0705,-2.9353],[120.0608,-2.9487],[120.0558,-2.9532],[120.0483,-2.954],[120.0515,-2.961],[120.0571,-2.9643],[120.0585,-2.9713],[120.0526,-2.9828],[120.0562,-2.9877],[120.0624,-2.9903],[120.0636,-2.9939],[120.0718,-3.001],[120.0774,-3.002],[120.0843,-3.0064],[120.0831,-3.0111],[120.086,-3.0217],[120.0829,-3.0311],[120.0871,-3.0343],[120.0931,-3.0357],[120.0974,-3.0412],[120.1,-3.0474],[120.1095,-3.0536],[120.1144,-3.0587],[120.1175,-3.0652],[120.1235,-3.0691],[120.1267,-3.0756],[120.1351,-3.0812],[120.1378,-3.0867],[120.1485,-3.081],[120.1503,-3.0728],[120.1602,-3.0718],[120.1637,-3.0688],[120.1656,-3.0573],[120.1779,-3.0537],[120.1855,-3.0554],[120.1903,-3.0549],[120.2047,-3.0593],[120.216,-3.0567],[120.2222,-3.0517],[120.2295,-3.0433],[120.2257,-3.0267],[120.2224,-3.0207],[120.2236,-3.0174],[120.2224,-3.0102],[120.2174,-3.0013],[120.211,-2.9974],[120.2122,-2.9937],[120.2036,-2.9899],[120.1977,-2.9838],[120.1907,-2.9803],[120.1896,-2.9686],[120.1939,-2.9621],[120.199,-2.9608],[120.199,-2.9577],[120.207,-2.9571],[120.2113,-2.9547],[120.2146,-2.9567],[120.223,-2.9548],[120.2275,-2.9562],[120.2298,-2.9526]]}},{"type":"Feature","properties":{"mhid":"1332:433","alt_name":"KABUPATEN BUTON","latitude":-5.31667,"longitude":122.58333,"sample_value":201},"geometry":{"type":"LineString","coordinates":[[122.6801,-6.1741],[122.6738,-6.1742],[122.673,-6.1772],[122.6765,-6.1812],[122.6761,-6.1877],[122.6791,-6.192],[122.6924,-6.2014],[122.6984,-6.2068],[122.7076,-6.2061],[122.7164,-6.2115],[122.7204,-6.2095],[122.7332,-6.2108],[122.7369,-6.2081],[122.7373,-6.203],[122.7277,-6.2015],[122.7216,-6.1994],[122.7172,-6.1951],[122.7099,-6.1911],[122.6998,-6.1804],[122.6945,-6.1775],[122.6848,-6.1771],[122.6801,-6.1741]]}},{"type":"Feature","properties":{"mhid":"1332:433","alt_name":"KABUPATEN BUTON","latitude":-5.31667,"longitude":122.58333,"sample_value":201},"geometry":{"type":"LineString","coordinates":[[122.5107,-5.624],[122.5081,-5.6241],[122.5033,-5.6306],[122.506,-5.6369],[122.5059,-5.6463],[122.5022,-5.6495],[122.4947,-5.6514],[122.4946,-5.6551],[122.4892,-5.665],[122.481,-5.6729],[122.4767,-5.6731],[122.4697,-5.6804],[122.4638,-5.6797],[122.457,-5.6851],[122.4572,-5.6924],[122.466,-5.6926],[122.4724,-5.6901],[122.4781,-5.6907],[122.4873,-5.6976],[122.4919,-5.6995],[122.5047,-5.6985],[122.5205,-5.6938],[122.5298,-5.6949],[122.5363,-5.6926],[122.5424,-5.688],[122.5506,-5.6777],[122.5544,-5.6711],[122.5569,-5.653],[122.5552,-5.6471],[122.5435,-5.627],[122.5361,-5.6304],[122.5216,-5.6283],[122.5169,-5.6247],[122.5107,-5.624]]}},{"type":"Feature","properties":{"mhid":"1332:433","alt_name":"KABUPATEN BUTON","latitude":-5.31667,"longitude":122.58333,"sample_value":201},"geometry":{"type":"LineString","coordinates":[[122.5132,-5.5885],[122.5039,-5.5925],[122.5008,-5.5962],[122.5041,-5.6018],[122.5098,-5.6019],[122.5142,-5.5953],[122.5132,-5.5885]]}},{"type":"Feature","properties":{"mhid":"1332:433","alt_name":"KABUPATEN BUTON","latitude":-5.31667,"longitude":122.58333,"sample_value":201},"geometry":{"type":"LineString","coordinates":[[122.5246,-5.5006],[122.5204,-5.4998],[122.5018,-5.5071],[122.4868,-5.5122],[122.4826,-5.5144],[122.4777,-5.5224],[122.4755,-5.5292],[122.4716,-5.5307],[122.47,-5.5378],[122.4735,-5.5478],[122.4822,-5.5548],[122.4867,-5.5616],[122.5013,-5.5633],[122.506,-5.5616],[122.5089,-5.5572],[122.5084,-5.5515],[122.5117,-5.5404],[122.5097,-5.5364],[122.5116,-5.5326],[122.5107,-5.5253],[122.5181,-5.5167],[122.5205,-5.507],[122.5246,-5.5006]]}},{"type":"Feature","properties":{"mhid":"1332:433","alt_name":"KABUPATEN BUTON","latitude":-5.31667,"longitude":122.58333,"sample_value":201},"geometry":{"type":"LineString","coordinates":[[122.0529,-5.4913],[122.0467,-5.4906],[122.0403,-5.4952],[122.0385,-5.4987],[122.0307,-5.5014],[122.0255,-5.5052],[122.0174,-5.507],[122.0127,-5.5132],[121.9935,-5.5221],[122.0013,-5.5231],[122.0093,-5.5218],[122.017,-5.5189],[122.0271,-5.5194],[122.0422,-5.5093],[122.0519,-5.5037],[122.058,-5.4987],[122.0574,-5.4926],[122.0529,-5.4913]]}},{"type":"Feature","properties":{"mhid":"1332:433","alt_name":"KABUPATEN BUTON","latitude":-5.31667,"longitude":122.58333,"sample_value":201},"geometry":{"type":"LineString","coordinates":[[122.076,-5.4734],[122.0732,-5.4771],[122.0753,-5.4812],[122.0706,-5.4873],[122.0766,-5.4871],[122.0818,-5.4933],[122.0855,-5.4941],[122.092,-5.4855],[122.087,-5.4741],[122.076,-5.4734]]}},{"type":"Feature","properties":{"mhid":"1332:433","alt_name":"KABUPATEN BUTON","latitude":-5.31667,"longitude":122.58333,"sample_value":201},"geometry":{"type":"LineString","coordinates":[[122.0446,-5.4013],[122.0266,-5.4013],[122.009,-5.4021],[122.009,-5.4031],[121.979,-5.4047],[121.9549,-5.4047],[121.9528,-5.4175],[121.9527,-5.4564],[121.9501,-5.4675],[121.9462,-5.4736],[121.9457,-5.4832],[121.9507,-5.484],[121.9505,-5.4893],[121.9482,-5.4934],[121.9557,-5.4957],[121.9531,-5.4862],[121.9547,-5.4806],[121.9606,-5.4774],[121.969,-5.4774],[121.9712,-5.4758],[121.9786,-5.4766],[121.9893,-5.4728],[121.995,-5.4735],[121.9986,-5.4666],[122.0043,-5.4689],[122.0111,-5.4687],[122.0117,-5.4736],[122.0147,-5.4763],[122.019,-5.4741],[122.0308,-5.4751],[122.0362,-5.4707],[122.0417,-5.4637],[122.0499,-5.4607],[122.0466,-5.4547],[122.0434,-5.4379],[122.046,-5.4272],[122.046,-5.422],[122.0438,-5.4169],[122.0484,-5.4144],[122.0446,-5.4013]]}},{"type":"Feature","properties":{"mhid":"1332:433","alt_name":"KABUPATEN BUTON","latitude":-5.31667,"longitude":122.58333,"sample_value":201},"geometry":{"type":"LineString","coordinates":[[122.6848,-5.2942],[122.6906,-5.2917],[122.6986,-5.2839],[122.7021,-5.2737],[122.7019,-5.2666],[122.7031,-5.2578],[122.706,-5.2549],[122.7124,-5.2424],[122.7089,-5.2421],[122.7043,-5.2489],[122.7002,-5.2525],[122.6985,-5.2594],[122.6947,-5.2682],[122.69,-5.2756],[122.6854,-5.2801],[122.6802,-5.2896],[122.6805,-5.2939],[122.6848,-5.2942]]}},{"type":"Feature","properties":{"mhid":"1332:433","alt_name":"KABUPATEN BUTON","latitude":-5.31667,"longitude":122.58333,"sample_value":201},"geometry":{"type":"LineString","coordinates":[[122.7261,-5.2111],[122.7384,-5.1968],[122.7359,-5.1892],[122.7303,-5.1957],[122.7215,-5.2033],[122.717,-5.2124],[122.7261,-5.2111]]}},{"type":"Feature","properties":{"mhid":"1332:433","alt_name":"KABUPATEN BUTON","latitude":-5.31667,"longitude":122.58333,"sample_value":201},"geometry":{"type":"LineString","coordinates":[[122.3165,-5.142],[122.3105,-5.1441],[122.3067,-5.1492],[122.3099,-5.1522],[122.312,-5.1592],[122.3102,-5.165],[122.3151,-5.1715],[122.3156,-5.1866],[122.3087,-5.1947],[122.3037,-5.1972],[122.3031,-5.2012],[122.3057,-5.2048],[122.3057,-5.2174],[122.3137,-5.225],[122.3152,-5.229],[122.3154,-5.2371],[122.3085,-5.2489],[122.3063,-5.257],[122.3035,-5.2606],[122.2919,-5.2795],[122.2873,-5.2816],[122.2852,-5.2864],[122.2749,-5.2964],[122.2735,-5.3026],[122.2682,-5.3143],[122.2659,-5.3267],[122.2657,-5.3395],[122.2668,-5.3445],[122.2663,-5.3549],[122.2696,-5.3634],[122.2669,-5.37],[122.2668,-5.3754],[122.2694,-5.384],[122.2789,-5.3946],[122.2922,-5.3943],[122.2971,-5.3962],[122.3144,-5.396],[122.3262,-5.3967],[122.3415,-5.3935],[122.3483,-5.3931],[122.3651,-5.389],[122.3715,-5.3821],[122.376,-5.3799],[122.382,-5.3678],[122.3824,-5.3601],[122.3756,-5.3536],[122.3707,-5.3403],[122.3735,-5.3305],[122.3773,-5.3246],[122.3846,-5.3206],[122.3923,-5.3204],[122.397,-5.3133],[122.4029,-5.3169],[122.4123,-5.3151],[122.4273,-5.3139],[122.4348,-5.3183],[122.4258,-5.3194],[122.4187,-5.3224],[122.4073,-5.323],[122.3896,-5.3271],[122.3849,-5.3269],[122.3824,-5.3327],[122.3838,-5.3397],[122.3891,-5.3476],[122.3911,-5.3571],[122.3941,-5.3646],[122.3938,-5.3683],[122.3978,-5.3764],[122.3978,-5.3844],[122.4069,-5.3982],[122.4157,-5.4024],[122.4215,-5.4011],[122.4316,-5.4035],[122.433,-5.4018],[122.4418,-5.4035],[122.4459,-5.406],[122.4516,-5.4028],[122.4606,-5.404],[122.4654,-5.4024],[122.47,-5.3982],[122.4691,-5.3945],[122.4741,-5.3864],[122.4718,-5.3726],[122.4675,-5.3661],[122.4704,-5.361],[122.4734,-5.3664],[122.4788,-5.3663],[122.4818,-5.3719],[122.4858,-5.3701],[122.4867,-5.3625],[122.4931,-5.3507],[122.4972,-5.3484],[122.496,-5.3427],[122.4986,-5.3392],[122.4948,-5.33],[122.4859,-5.3233],[122.4799,-5.3124],[122.4808,-5.3016],[122.4865,-5.2964],[122.4928,-5.2954],[122.5016,-5.2897],[122.5107,-5.2885],[122.5128,-5.2843],[122.5195,-5.2793],[122.5231,-5.2788],[122.5241,-5.2732],[122.5281,-5.2675],[122.5378,-5.2606],[122.5408,-5.2676],[122.5379,-5.2728],[122.5346,-5.2736],[122.53,-5.2785],[122.5305,-5.2847],[122.527,-5.2878],[122.5241,-5.2949],[122.5241,-5.3034],[122.5206,-5.3109],[122.5232,-5.3166],[122.5328,-5.3206],[122.5388,-5.3253],[122.5381,-5.338],[122.5354,-5.3418],[122.5331,-5.3519],[122.5315,-5.3636],[122.5273,-5.3707],[122.5266,-5.3806],[122.5246,-5.3836],[122.5249,-5.395],[122.523,-5.3994],[122.5177,-5.4005],[122.5124,-5.4062],[122.5133,-5.4097],[122.5204,-5.4213],[122.5182,-5.4266],[122.5197,-5.4368],[122.5274,-5.44],[122.5446,-5.4412],[122.5517,-5.4349],[122.5559,-5.4218],[122.5665,-5.4114],[122.5758,-5.4166],[122.5875,-5.4296],[122.5909,-5.4356],[122.5958,-5.4338],[122.6003,-5.4274],[122.5958,-5.4248],[122.5941,-5.4165],[122.5976,-5.4156],[122.6031,-5.4035],[122.5965,-5.3975],[122.5932,-5.3908],[122.5931,-5.371],[122.5954,-5.3617],[122.6027,-5.3546],[122.6095,-5.3525],[122.6159,-5.3466],[122.6221,-5.3471],[122.6187,-5.3545],[122.6165,-5.3688],[122.6194,-5.3718],[122.6309,-5.3609],[122.6401,-5.3562],[122.6413,-5.3532],[122.6416,-5.3403],[122.6436,-5.3339],[122.6438,-5.3241],[122.642,-5.3081],[122.6449,-5.3026],[122.6465,-5.2954],[122.6454,-5.2819],[122.6413,-5.2677],[122.6379,-5.2624],[122.6237,-5.2504],[122.6168,-5.2492],[122.6013,-5.25],[122.5876,-5.2538],[122.5846,-5.2561],[122.5802,-5.2551],[122.5773,-5.2475],[122.585,-5.2407],[122.5912,-5.2312],[122.5989,-5.2261],[122.6033,-5.2249],[122.6173,-5.2177],[122.6231,-5.2107],[122.6263,-5.2038],[122.617,-5.2095],[122.6112,-5.2083],[122.6077,-5.2129],[122.5982,-5.2128],[122.5727,-5.2162],[122.5619,-5.217],[122.5385,-5.2033],[122.5241,-5.1934],[122.5208,-5.192],[122.5161,-5.1939],[122.5156,-5.2011],[122.5102,-5.2099],[122.5133,-5.2161],[122.5045,-5.225],[122.487,-5.225],[122.4682,-5.2274],[122.4587,-5.2267],[122.4506,-5.2279],[122.4411,-5.2272],[122.4043,-5.21],[122.3845,-5.1968],[122.3764,-5.1923],[122.3766,-5.187],[122.3678,-5.1792],[122.3615,-5.1789],[122.3638,-5.1739],[122.3583,-5.1688],[122.3579,-5.1628],[122.3542,-5.1514],[122.3428,-5.1457],[122.3356,-5.1474],[122.3167,-5.1454],[122.3165,-5.142]]}},{"type":"Feature","properties":{"mhid":"1332:433","alt_name":"KABUPATEN BUTON","latitude":-5.31667,"longitude":122.58333,"sample_value":201},"geometry":{"type":"LineString","coordinates":[[122.5736,-5.5382],[122.5783,-5.5485],[122.5794,-5.5687],[122.5819,-5.5751],[122.588,-5.5795],[122.5894,-5.5857],[122.5928,-5.5927],[122.5948,-5.603],[122.5998,-5.6123],[122.6038,-5.622],[122.6128,-5.6331],[122.6127,-5.6431],[122.6149,-5.6471],[122.6139,-5.6519],[122.6101,-5.6548],[122.6175,-5.6633],[122.6253,-5.6751],[122.6249,-5.6801],[122.6346,-5.6936],[122.6436,-5.6985],[122.6492,-5.6993],[122.6627,-5.6935],[122.6725,-5.6831],[122.6915,-5.6504],[122.6961,-5.6396],[122.7015,-5.6321],[122.7057,-5.6298],[122.7073,-5.6235],[122.712,-5.6194],[122.7202,-5.6214],[122.7227,-5.6288],[122.7198,-5.6398],[122.7158,-5.6487],[122.7122,-5.6594],[122.71,-5.6735],[122.7101,-5.6786],[122.7156,-5.6856],[122.7255,-5.6919],[122.7289,-5.6883],[122.7262,-5.6813],[122.7269,-5.6741],[122.7337,-5.6697],[122.7348,-5.6645],[122.7395,-5.6595],[122.7402,-5.652],[122.742,-5.6496],[122.7435,-5.6399],[122.7568,-5.6399],[122.76,-5.6425],[122.7617,-5.6507],[122.7597,-5.6559],[122.7672,-5.6615],[122.773,-5.664],[122.7721,-5.6771],[122.7643,-5.6836],[122.7581,-5.6872],[122.7535,-5.6934],[122.7555,-5.6969],[122.7779,-5.7038],[122.7864,-5.7025],[122.7929,-5.6989],[122.803,-5.696],[122.8101,-5.6745],[122.8144,-5.665],[122.8215,-5.6517],[122.8362,-5.6374],[122.8393,-5.6315],[122.8492,-5.6206],[122.8583,-5.6134],[122.8627,-5.6071],[122.8635,-5.6],[122.8728,-5.5872],[122.887,-5.5769],[122.8893,-5.5709],[122.8937,-5.5647],[122.8929,-5.5589],[122.8983,-5.552],[122.8964,-5.5438],[122.8981,-5.5252],[122.8973,-5.5178],[122.8927,-5.514],[122.8838,-5.5104],[122.8777,-5.5061],[122.8725,-5.5086],[122.8623,-5.5228],[122.8523,-5.5267],[122.8466,-5.5264],[122.8447,-5.5199],[122.8443,-5.5088],[122.8465,-5.5017],[122.8464,-5.4957],[122.8485,-5.4861],[122.8543,-5.4788],[122.8582,-5.471],[122.862,-5.4687],[122.8641,-5.4642],[122.8722,-5.455],[122.8826,-5.448],[122.8889,-5.4427],[122.8952,-5.4392],[122.9143,-5.4397],[122.9231,-5.437],[122.9299,-5.4314],[122.9393,-5.4258],[122.9429,-5.4223],[122.9466,-5.4141],[122.953,-5.4102],[122.9612,-5.4084],[122.9718,-5.3952],[122.9774,-5.3939],[122.9851,-5.3953],[122.9898,-5.3989],[122.9958,-5.3997],[123.0019,-5.4081],[123.0012,-5.4116],[123.0041,-5.4217],[123.0101,-5.4342],[123.0138,-5.4382],[123.0152,-5.4437],[123.0248,-5.4415],[123.0352,-5.4371],[123.0382,-5.4346],[123.0601,-5.4224],[123.0696,-5.4198],[123.0781,-5.416],[123.0827,-5.416],[123.1016,-5.4082],[123.1137,-5.4006],[123.1238,-5.4012],[123.1311,-5.3988],[123.1357,-5.3959],[123.1404,-5.3894],[123.1419,-5.3832],[123.1532,-5.3737],[123.1575,-5.3685],[123.1587,-5.3638],[123.1657,-5.3605],[123.1727,-5.3591],[123.1784,-5.3493],[123.1939,-5.3333],[123.1957,-5.3256],[123.2033,-5.3113],[123.2146,-5.3059],[123.2184,-5.301],[123.2243,-5.2796],[123.2214,-5.2733],[123.2154,-5.2703],[123.2085,-5.2701],[123.2023,-5.2724],[123.1981,-5.2606],[123.1941,-5.2574],[123.1893,-5.2567],[123.1848,-5.2494],[123.1756,-5.2462],[123.1619,-5.2492],[123.1507,-5.2474],[123.1473,-5.2407],[123.1419,-5.2394],[123.1403,-5.2321],[123.1325,-5.2233],[123.1286,-5.2169],[123.1175,-5.207],[123.1094,-5.2042],[123.1072,-5.2088],[123.1007,-5.2109],[123.1057,-5.202],[123.1068,-5.1946],[123.1043,-5.1889],[123.0981,-5.1836],[123.0948,-5.1836],[123.0889,-5.1765],[123.0826,-5.173],[123.0766,-5.1773],[123.0692,-5.1861],[123.0662,-5.1917],[123.0594,-5.192],[123.0585,-5.1839],[123.0635,-5.179],[123.0691,-5.1671],[123.0679,-5.1606],[123.0599,-5.1524],[123.0532,-5.151],[123.0499,-5.1471],[123.0396,-5.1381],[123.0332,-5.1355],[123.0282,-5.1358],[123.0197,-5.1406],[123.0084,-5.1448],[123.0046,-5.1476],[122.9936,-5.16],[122.9835,-5.173],[122.9788,-5.1806],[122.97,-5.1896],[122.9674,-5.1947],[122.9692,-5.199],[122.9632,-5.1994],[122.9606,-5.2053],[122.9553,-5.2084],[122.9558,-5.2161],[122.9523,-5.2172],[122.9441,-5.2161],[122.9439,-5.2129],[122.9366,-5.209],[122.9342,-5.205],[122.9336,-5.1971],[122.9311,-5.1886],[122.9239,-5.1817],[122.9207,-5.1825],[122.921,-5.1745],[122.9284,-5.1721],[122.9376,-5.1664],[122.9428,-5.1611],[122.9489,-5.1483],[122.9417,-5.1452],[122.9283,-5.1422],[122.9194,-5.1361],[122.9133,-5.1302],[122.9006,-5.1197],[122.8884,-5.1228],[122.8686,-5.1214],[122.8609,-5.1176],[122.8513,-5.1185],[122.8425,-5.1154],[122.839,-5.1088],[122.8276,-5.0958],[122.8232,-5.0909],[122.8214,-5.0836],[122.815,-5.0787],[122.801,-5.079],[122.7932,-5.0766],[122.7888,-5.0789],[122.7872,-5.0836],[122.7881,-5.0896],[122.7856,-5.099],[122.7892,-5.1038],[122.7865,-5.1088],[122.7751,-5.1096],[122.7711,-5.1121],[122.7689,-5.1203],[122.7666,-5.1221],[122.7619,-5.1335],[122.7443,-5.1606],[122.7375,-5.1704],[122.7404,-5.1795],[122.7446,-5.1782],[122.7495,-5.1733],[122.7524,-5.1733],[122.7541,-5.1792],[122.7583,-5.1876],[122.7485,-5.2072],[122.7472,-5.2199],[122.755,-5.229],[122.7609,-5.2251],[122.7638,-5.2173],[122.7713,-5.203],[122.7735,-5.2017],[122.7843,-5.1857],[122.7888,-5.1834],[122.7937,-5.1857],[122.7999,-5.1919],[122.8067,-5.2026],[122.8086,-5.2108],[122.8067,-5.2215],[122.7973,-5.2382],[122.7922,-5.2429],[122.7821,-5.2444],[122.7709,-5.2541],[122.7576,-5.2554],[122.753,-5.2535],[122.7475,-5.2458],[122.7524,-5.2417],[122.7488,-5.2382],[122.7424,-5.2435],[122.7374,-5.2408],[122.7326,-5.242],[122.7258,-5.2484],[122.7188,-5.26],[122.7155,-5.2606],[122.7089,-5.2716],[122.7084,-5.2778],[122.7056,-5.2857],[122.7007,-5.2915],[122.697,-5.3014],[122.6933,-5.3063],[122.6921,-5.3109],[122.6861,-5.321],[122.6952,-5.3282],[122.7006,-5.328],[122.707,-5.3315],[122.7113,-5.3319],[122.7201,-5.3289],[122.726,-5.3299],[122.7277,-5.3392],[122.7261,-5.3524],[122.7294,-5.3573],[122.7367,-5.3566],[122.7394,-5.3598],[122.743,-5.3583],[122.7486,-5.3612],[122.7502,-5.3646],[122.7586,-5.3747],[122.7615,-5.3841],[122.7633,-5.4048],[122.7688,-5.4094],[122.7698,-5.4125],[122.7629,-5.4183],[122.76,-5.4228],[122.7622,-5.4281],[122.7546,-5.4499],[122.7492,-5.4513],[122.7533,-5.4595],[122.7498,-5.4618],[122.7462,-5.4676],[122.7462,-5.4723],[122.7432,-5.4739],[122.7427,-5.4818],[122.7403,-5.4834],[122.7404,-5.4901],[122.7341,-5.4936],[122.7259,-5.4952],[122.6931,-5.4942],[122.6817,-5.4947],[122.6694,-5.4965],[122.6646,-5.5042],[122.6567,-5.5082],[122.6451,-5.5113],[122.6424,-5.5134],[122.6337,-5.5133],[122.6317,-5.5094],[122.6184,-5.5099],[122.6145,-5.5128],[122.6103,-5.5203],[122.6012,-5.5271],[122.5879,-5.5314],[122.5816,-5.5353],[122.5736,-5.5382]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.7906,-4.9649],[122.7866,-4.9654],[122.7861,-4.9743],[122.7884,-4.9787],[122.7946,-4.9773],[122.7947,-4.9664],[122.7906,-4.9649]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.3551,-4.942],[122.3544,-4.9326],[122.3524,-4.9313],[122.343,-4.9312],[122.3414,-4.9327],[122.3402,-4.9434],[122.3513,-4.9446],[122.3551,-4.942]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.8047,-4.936],[122.8004,-4.9306],[122.7967,-4.9321],[122.7928,-4.9391],[122.8048,-4.9379],[122.8047,-4.936]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.333,-4.932],[122.3387,-4.9305],[122.3442,-4.9269],[122.3466,-4.9223],[122.3464,-4.9175],[122.3421,-4.9145],[122.3322,-4.9136],[122.3296,-4.9147],[122.3234,-4.9223],[122.3212,-4.9274],[122.3229,-4.9302],[122.333,-4.932]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.1807,-4.9115],[122.1761,-4.9103],[122.1682,-4.9189],[122.1726,-4.9207],[122.1807,-4.9115]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.817,-4.9034],[122.8122,-4.9051],[122.8136,-4.9152],[122.8172,-4.914],[122.817,-4.9034]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.2656,-4.8706],[122.265,-4.867],[122.2583,-4.8708],[122.257,-4.8746],[122.2625,-4.8752],[122.2656,-4.8706]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.2849,-4.8418],[122.2815,-4.8344],[122.2761,-4.8362],[122.2823,-4.8436],[122.2849,-4.8418]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.3583,-4.7304],[122.3489,-4.7296],[122.3482,-4.7364],[122.3522,-4.7398],[122.3583,-4.7304]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.4061,-4.7262],[122.3992,-4.7266],[122.3995,-4.7323],[122.4049,-4.7309],[122.4061,-4.7262]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.4175,-4.7301],[122.4175,-4.7273],[122.4106,-4.7261],[122.4109,-4.7322],[122.4175,-4.7301]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.4691,-4.7243],[122.4681,-4.7202],[122.4608,-4.7231],[122.4641,-4.7288],[122.4691,-4.7243]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.4648,-4.7091],[122.4613,-4.7063],[122.4607,-4.6965],[122.453,-4.7011],[122.4508,-4.709],[122.454,-4.7129],[122.4641,-4.7108],[122.4648,-4.7091]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.3838,-4.7022],[122.3883,-4.7013],[122.3895,-4.6956],[122.3812,-4.6971],[122.3838,-4.7022]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.4163,-4.7066],[122.4234,-4.6995],[122.426,-4.6948],[122.4221,-4.6925],[122.4079,-4.7039],[122.4073,-4.7084],[122.4125,-4.7097],[122.4163,-4.7066]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.3028,-4.7162],[122.3096,-4.7077],[122.316,-4.6973],[122.3177,-4.6912],[122.3157,-4.6876],[122.3078,-4.6852],[122.2964,-4.694],[122.2936,-4.6987],[122.2925,-4.7071],[122.296,-4.7132],[122.3028,-4.7162]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.4117,-4.6927],[122.4175,-4.6879],[122.4168,-4.6848],[122.4107,-4.6857],[122.408,-4.6888],[122.4117,-4.6927]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.3351,-4.683],[122.3276,-4.6882],[122.3282,-4.6945],[122.3342,-4.6891],[122.3351,-4.683]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.4382,-4.6781],[122.4322,-4.6778],[122.4269,-4.6836],[122.4285,-4.6886],[122.4373,-4.6871],[122.4394,-4.6804],[122.4382,-4.6781]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.4299,-4.6778],[122.4349,-4.6743],[122.4333,-4.6689],[122.4267,-4.6736],[122.4299,-4.6778]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.3475,-4.7128],[122.3479,-4.71],[122.3551,-4.7025],[122.3642,-4.6965],[122.3676,-4.6895],[122.3709,-4.6863],[122.3792,-4.6742],[122.3807,-4.6682],[122.3771,-4.6643],[122.3698,-4.6647],[122.3645,-4.6683],[122.3472,-4.6849],[122.3307,-4.7074],[122.3238,-4.7226],[122.3298,-4.7253],[122.3392,-4.7171],[122.3475,-4.7128]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.3045,-4.6595],[122.309,-4.6542],[122.309,-4.6458],[122.3046,-4.6487],[122.3028,-4.6534],[122.3045,-4.6595]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.3519,-4.636],[122.345,-4.6368],[122.3443,-4.6424],[122.3402,-4.6501],[122.3413,-4.656],[122.3492,-4.6552],[122.3546,-4.6514],[122.3578,-4.6436],[122.3564,-4.6372],[122.3519,-4.636]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.3367,-4.634],[122.3421,-4.6277],[122.3472,-4.6268],[122.3491,-4.6229],[122.344,-4.6219],[122.3377,-4.6294],[122.3177,-4.6437],[122.3155,-4.6466],[122.3155,-4.6575],[122.3228,-4.6565],[122.328,-4.6513],[122.3318,-4.641],[122.3331,-4.6345],[122.3367,-4.634]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.3336,-4.6253],[122.3387,-4.6173],[122.3331,-4.6183],[122.331,-4.6224],[122.3336,-4.6253]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.3208,-4.6263],[122.3252,-4.6238],[122.3313,-4.6124],[122.3224,-4.6118],[122.3152,-4.6134],[122.3139,-4.6219],[122.3208,-4.6263]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.6263,-5.2038],[122.6265,-5.1943],[122.6228,-5.1924],[122.5996,-5.2007],[122.5913,-5.1988],[122.5868,-5.1916],[122.5854,-5.1863],[122.5877,-5.181],[122.5887,-5.16],[122.5946,-5.1528],[122.5982,-5.144],[122.6028,-5.1372],[122.6093,-5.1299],[122.6201,-5.1097],[122.6165,-5.1047],[122.6119,-5.1039],[122.6108,-5.0996],[122.6278,-5.0708],[122.6368,-5.0591],[122.6417,-5.0568],[122.6525,-5.0483],[122.6604,-5.0476],[122.6673,-5.0439],[122.6792,-5.0348],[122.6844,-5.0292],[122.6898,-5.0178],[122.6949,-5.0156],[122.6967,-5.01],[122.7036,-5.0071],[122.7044,-5.0022],[122.7089,-4.9988],[122.712,-4.9938],[122.7153,-4.9817],[122.7213,-4.9647],[122.7317,-4.9647],[122.7298,-4.9584],[122.754,-4.9664],[122.7601,-4.9711],[122.7635,-4.9638],[122.7572,-4.957],[122.757,-4.9513],[122.7616,-4.9443],[122.7607,-4.9323],[122.7561,-4.9291],[122.7568,-4.9259],[122.7629,-4.9293],[122.7624,-4.9188],[122.7601,-4.916],[122.7567,-4.9048],[122.7634,-4.9005],[122.7646,-4.8952],[122.759,-4.892],[122.7542,-4.881],[122.7441,-4.8873],[122.7362,-4.8821],[122.7378,-4.8767],[122.7324,-4.8718],[122.7376,-4.8662],[122.7339,-4.8631],[122.7342,-4.8594],[122.7285,-4.8561],[122.7253,-4.8476],[122.7261,-4.8426],[122.7295,-4.8418],[122.7283,-4.8338],[122.7374,-4.8114],[122.737,-4.8083],[122.7443,-4.7919],[122.7397,-4.7835],[122.7409,-4.7773],[122.7379,-4.7747],[122.7382,-4.7671],[122.7356,-4.7638],[122.7374,-4.7578],[122.7412,-4.7561],[122.7419,-4.7458],[122.7405,-4.7414],[122.7347,-4.7386],[122.7308,-4.7332],[122.7302,-4.718],[122.7241,-4.7056],[122.7242,-4.7012],[122.7181,-4.6946],[122.7153,-4.6826],[122.7166,-4.6805],[122.7247,-4.6803],[122.7318,-4.684],[122.7341,-4.683],[122.7351,-4.6751],[122.7376,-4.6741],[122.7385,-4.6683],[122.7341,-4.6613],[122.7399,-4.6495],[122.7356,-4.6431],[122.7214,-4.6341],[122.7193,-4.6317],[122.7033,-4.6214],[122.693,-4.6158],[122.6866,-4.6144],[122.6823,-4.6112],[122.677,-4.612],[122.6695,-4.6105],[122.6646,-4.6123],[122.6606,-4.6235],[122.6555,-4.6211],[122.6484,-4.6204],[122.6458,-4.6247],[122.6407,-4.6264],[122.6344,-4.6232],[122.6321,-4.6243],[122.6264,-4.6316],[122.6187,-4.6303],[122.6186,-4.6335],[122.5984,-4.632],[122.5932,-4.6436],[122.5962,-4.6505],[122.5961,-4.6547],[122.5899,-4.6618],[122.5846,-4.6697],[122.5648,-4.6796],[122.5592,-4.69],[122.5553,-4.6936],[122.5523,-4.6915],[122.5466,-4.6913],[122.5452,-4.6883],[122.5291,-4.6972],[122.5339,-4.7053],[122.5231,-4.7084],[122.5201,-4.7118],[122.5121,-4.7133],[122.5051,-4.7166],[122.4999,-4.7216],[122.4817,-4.7258],[122.4797,-4.7231],[122.4745,-4.7274],[122.4741,-4.7377],[122.4672,-4.7395],[122.4596,-4.7443],[122.4502,-4.7414],[122.4432,-4.7431],[122.43,-4.7382],[122.415,-4.7431],[122.4072,-4.7491],[122.4014,-4.7458],[122.392,-4.7477],[122.3819,-4.7458],[122.3736,-4.7406],[122.3661,-4.7544],[122.3628,-4.7563],[122.3604,-4.7642],[122.3572,-4.7658],[122.3541,-4.7788],[122.3474,-4.7895],[122.3418,-4.795],[122.3403,-4.8023],[122.3315,-4.8156],[122.321,-4.8268],[122.318,-4.8325],[122.325,-4.8514],[122.325,-4.8546],[122.3325,-4.8648],[122.3376,-4.8753],[122.3385,-4.8798],[122.3377,-4.8904],[122.3438,-4.8998],[122.3454,-4.91],[122.3503,-4.9194],[122.3495,-4.9239],[122.3583,-4.9327],[122.3622,-4.9454],[122.3692,-4.9458],[122.3742,-4.9502],[122.3777,-4.9583],[122.38,-4.9683],[122.3756,-4.9761],[122.3824,-4.9813],[122.3805,-4.9861],[122.3836,-4.9928],[122.3801,-4.9972],[122.3797,-5.0229],[122.3787,-5.0283],[122.3733,-5.0355],[122.3729,-5.0398],[122.3768,-5.0423],[122.384,-5.0521],[122.3819,-5.0606],[122.3827,-5.0695],[122.3924,-5.0722],[122.3846,-5.0856],[122.3814,-5.088],[122.3675,-5.0909],[122.3615,-5.0967],[122.3534,-5.1009],[122.347,-5.1024],[122.3386,-5.0995],[122.3271,-5.1044],[122.3223,-5.1128],[122.3181,-5.1247],[122.3177,-5.1395],[122.3165,-5.142],[122.3167,-5.1454],[122.3356,-5.1474],[122.3428,-5.1457],[122.3542,-5.1514],[122.3579,-5.1628],[122.3583,-5.1688],[122.3638,-5.1739],[122.3615,-5.1789],[122.3678,-5.1792],[122.3766,-5.187],[122.3764,-5.1923],[122.3845,-5.1968],[122.4043,-5.21],[122.4411,-5.2272],[122.4506,-5.2279],[122.4587,-5.2267],[122.4682,-5.2274],[122.487,-5.225],[122.5045,-5.225],[122.5133,-5.2161],[122.5102,-5.2099],[122.5156,-5.2011],[122.5161,-5.1939],[122.5208,-5.192],[122.5241,-5.1934],[122.5385,-5.2033],[122.5619,-5.217],[122.5727,-5.2162],[122.5982,-5.2128],[122.6077,-5.2129],[122.6112,-5.2083],[122.617,-5.2095],[122.6263,-5.2038]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.8276,-5.0958],[122.843,-5.0799],[122.8483,-5.0772],[122.8492,-5.0728],[122.8554,-5.055],[122.8607,-5.0497],[122.8687,-5.0488],[122.8785,-5.0266],[122.89,-4.9724],[122.8918,-4.9475],[122.9078,-4.904],[122.9131,-4.8916],[122.922,-4.8729],[122.9247,-4.8578],[122.9238,-4.8374],[122.9158,-4.8045],[122.9185,-4.7477],[122.9185,-4.7343],[122.9194,-4.7228],[122.922,-4.7032],[122.9247,-4.673],[122.9282,-4.649],[122.9266,-4.6458],[122.926,-4.6369],[122.928,-4.6279],[122.9287,-4.6123],[122.9247,-4.6126],[122.849,-4.6093],[122.8478,-4.6179],[122.8444,-4.6269],[122.8451,-4.631],[122.8416,-4.6496],[122.8336,-4.6593],[122.831,-4.666],[122.8317,-4.6704],[122.8284,-4.6784],[122.8324,-4.6814],[122.8352,-4.6905],[122.8408,-4.6948],[122.8395,-4.7016],[122.8407,-4.7126],[122.844,-4.7166],[122.8453,-4.7237],[122.8413,-4.7308],[122.8412,-4.74],[122.8481,-4.7531],[122.8475,-4.7583],[122.8503,-4.768],[122.8542,-4.7725],[122.8573,-4.7795],[122.8523,-4.7938],[122.8461,-4.8004],[122.8455,-4.8115],[122.8431,-4.8215],[122.8432,-4.8259],[122.8387,-4.8352],[122.8323,-4.8384],[122.8226,-4.833],[122.8164,-4.831],[122.8185,-4.8383],[122.8128,-4.8513],[122.8133,-4.8541],[122.8078,-4.8613],[122.8066,-4.8689],[122.822,-4.8804],[122.8286,-4.8891],[122.8314,-4.8974],[122.832,-4.9131],[122.8315,-4.9214],[122.823,-4.9209],[122.8203,-4.9258],[122.8201,-4.9324],[122.8149,-4.9422],[122.8157,-4.9506],[122.8133,-4.9541],[122.8123,-4.962],[122.8144,-4.9671],[122.8127,-4.9809],[122.8074,-4.9854],[122.7958,-4.9869],[122.7899,-4.9917],[122.7889,-4.9955],[122.7807,-5.0036],[122.7733,-5.0077],[122.7666,-5.0078],[122.7635,-5.015],[122.7588,-5.0184],[122.7521,-5.0322],[122.7483,-5.0369],[122.7412,-5.0391],[122.739,-5.0524],[122.7442,-5.0539],[122.7509,-5.0422],[122.7541,-5.0392],[122.761,-5.0387],[122.7618,-5.041],[122.7921,-5.0184],[122.7987,-5.0219],[122.8025,-5.0266],[122.7991,-5.0312],[122.8031,-5.0398],[122.8029,-5.0436],[122.7996,-5.0511],[122.7962,-5.0546],[122.7949,-5.0603],[122.7889,-5.0673],[122.7818,-5.0718],[122.7741,-5.0784],[122.7605,-5.0951],[122.7602,-5.104],[122.7577,-5.1081],[122.7584,-5.1118],[122.7645,-5.1112],[122.7697,-5.1025],[122.7768,-5.0942],[122.7839,-5.0885],[122.7872,-5.0836],[122.7888,-5.0789],[122.7932,-5.0766],[122.801,-5.079],[122.815,-5.0787],[122.8214,-5.0836],[122.8232,-5.0909],[122.8276,-5.0958]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.7098,-4.5907],[122.7072,-4.5936],[122.7178,-4.6011],[122.7266,-4.6007],[122.7209,-4.5955],[122.7143,-4.5938],[122.7098,-4.5907]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.6895,-4.567],[122.6845,-4.5659],[122.6824,-4.5715],[122.6825,-4.5773],[122.6898,-4.5802],[122.6928,-4.5777],[122.6928,-4.5726],[122.6895,-4.567]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.3238,-4.5635],[122.3298,-4.5579],[122.3292,-4.552],[122.3208,-4.5556],[122.3185,-4.5639],[122.3238,-4.5635]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.2945,-4.5601],[122.2976,-4.5542],[122.2945,-4.5443],[122.29,-4.548],[122.2892,-4.5528],[122.2925,-4.56],[122.2945,-4.5601]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"LineString","coordinates":[[122.7163,-4.519],[122.7136,-4.5222],[122.7067,-4.5203],[122.701,-4.5202],[122.6899,-4.5317],[122.6866,-4.5387],[122.6884,-4.547],[122.694,-4.5571],[122.6999,-4.5625],[122.7087,-4.5648],[122.7081,-4.5594],[122.7117,-4.5547],[122.7082,-4.5484],[122.7111,-4.5476],[122.7144,-4.5513],[122.7152,-4.5556],[122.7228,-4.5583],[122.7276,-4.5677],[122.7306,-4.5638],[122.7359,-4.5687],[122.737,-4.5757],[122.7435,-4.5714],[122.7401,-4.5684],[122.7372,-4.5615],[122.7368,-4.5536],[122.742,-4.5488],[122.7344,-4.545],[122.7279,-4.5448],[122.7279,-4.5402],[122.7339,-4.5397],[122.7388,-4.5374],[122.7409,-4.5324],[122.7305,-4.5228],[122.7214,-4.5183],[122.7163,-4.519]]}},{"type":"Feature","properties":{"mhid":"1332:435","alt_name":"KABUPATEN KONAWE","latitude":-3.91717,"longitude":122.08823,"sample_value":341},"geometry":{"type":"LineString","coordinates":[[123.021,-3.9804],[123.0129,-3.9778],[123.0078,-3.9893],[122.9967,-4.0038],[122.9984,-4.0079],[122.9969,-4.0155],[122.9942,-4.0203],[122.9868,-4.026],[122.984,-4.0233],[122.9746,-4.0351],[122.9717,-4.0426],[122.9717,-4.049],[122.97,-4.0542],[122.9653,-4.0553],[122.9584,-4.0548],[122.948,-4.0507],[122.9417,-4.0507],[122.9463,-4.0588],[122.944,-4.0635],[122.9353,-4.0658],[122.9353,-4.0704],[122.9393,-4.0737],[122.9394,-4.0785],[122.9446,-4.082],[122.9446,-4.0866],[122.9365,-4.0919],[122.9405,-4.1058],[122.9428,-4.1098],[122.9467,-4.1219],[122.9525,-4.1276],[122.9532,-4.1348],[122.9554,-4.1399],[122.9618,-4.1447],[122.965,-4.1523],[122.9707,-4.1553],[122.9749,-4.166],[122.9813,-4.1685],[122.9832,-4.1753],[122.9904,-4.1932],[122.9893,-4.1986],[122.9938,-4.2033],[123.0024,-4.2019],[123.0092,-4.204],[123.0204,-4.2135],[123.0254,-4.2213],[123.0297,-4.2228],[123.0399,-4.23],[123.0447,-4.2312],[123.0483,-4.2362],[123.0568,-4.2392],[123.0603,-4.2437],[123.0703,-4.2482],[123.0878,-4.2507],[123.0985,-4.2529],[123.1019,-4.2561],[123.1101,-4.2597],[123.1208,-4.2607],[123.1292,-4.2566],[123.1361,-4.2559],[123.1395,-4.2513],[123.1522,-4.24],[123.1554,-4.2251],[123.1584,-4.2186],[123.1654,-4.2078],[123.1711,-4.2029],[123.1803,-4.2005],[123.1844,-4.1979],[123.1875,-4.1926],[123.1856,-4.1871],[123.1906,-4.1836],[123.1959,-4.1856],[123.1991,-4.18],[123.202,-4.1787],[123.2071,-4.1724],[123.2072,-4.1641],[123.2096,-4.158],[123.2136,-4.153],[123.2213,-4.1526],[123.2206,-4.147],[123.231,-4.1457],[123.2394,-4.1371],[123.2477,-4.1239],[123.2526,-4.1106],[123.2507,-4.1008],[123.2548,-4.0933],[123.2576,-4.0929],[123.2573,-4.0762],[123.2544,-4.0665],[123.2516,-4.0622],[123.2384,-4.049],[123.2314,-4.0397],[123.2254,-4.0353],[123.2251,-4.0262],[123.2196,-4.0247],[123.2168,-4.0213],[123.1985,-4.0147],[123.1916,-4.0101],[123.1841,-4.0082],[123.1822,-4.0101],[123.164,-4.0081],[123.1524,-4.012],[123.1468,-4.0117],[123.1421,-4.0088],[123.1365,-4.0091],[123.129,-4.0162],[123.1252,-4.0183],[123.1046,-4.02],[123.0951,-4.023],[123.0867,-4.022],[123.0798,-4.0187],[123.0677,-4.0063],[123.0599,-4.0045],[123.0516,-3.9978],[123.0466,-3.9972],[123.0383,-3.9907],[123.0301,-3.9826],[123.021,-3.9804]]}},{"type":"Feature","properties":{"mhid":"1332:435","alt_name":"KABUPATEN KONAWE","latitude":-3.91717,"longitude":122.08823,"sample_value":341},"geometry":{"type":"LineString","coordinates":[[122.6974,-3.913],[122.6943,-3.9084],[122.6898,-3.9096],[122.6796,-3.9151],[122.6932,-3.919],[122.6981,-3.9191],[122.6974,-3.913]]}},{"type":"Feature","properties":{"mhid":"1332:435","alt_name":"KABUPATEN KONAWE","latitude":-3.91717,"longitude":122.08823,"sample_value":341},"geometry":{"type":"LineString","coordinates":[[122.7128,-3.8913],[122.7012,-3.8924],[122.697,-3.8968],[122.6976,-3.8995],[122.7055,-3.9101],[122.7132,-3.9107],[122.7229,-3.9046],[122.7264,-3.9001],[122.7264,-3.8961],[122.7199,-3.8919],[122.7128,-3.8913]]}},{"type":"Feature","properties":{"mhid":"1332:435","alt_name":"KABUPATEN KONAWE","latitude":-3.91717,"longitude":122.08823,"sample_value":341},"geometry":{"type":"LineString","coordinates":[[122.717,-3.8899],[122.7177,-3.884],[122.712,-3.8813],[122.7077,-3.884],[122.7082,-3.8895],[122.717,-3.8899]]}},{"type":"Feature","properties":{"mhid":"1332:435","alt_name":"KABUPATEN KONAWE","latitude":-3.91717,"longitude":122.08823,"sample_value":341},"geometry":{"type":"LineString","coordinates":[[122.3437,-3.8752],[122.3362,-3.8771],[122.3305,-3.8705],[122.3196,-3.87],[122.314,-3.8686],[122.3121,-3.8629],[122.3107,-3.8372],[122.3064,-3.8311],[122.2975,-3.8258],[122.2843,-3.8168],[122.2814,-3.813],[122.2791,-3.8045],[122.2767,-3.7898],[122.2767,-3.7774],[122.2692,-3.7694],[122.2338,-3.7489],[122.2125,-3.7442],[122.2031,-3.7442],[122.1965,-3.7484],[122.1898,-3.7565],[122.1875,-3.7626],[122.1813,-3.7679],[122.1771,-3.7683],[122.1658,-3.7555],[122.1558,-3.7508],[122.1525,-3.7474],[122.1516,-3.737],[122.1493,-3.7327],[122.1455,-3.7213],[122.1375,-3.7218],[122.1313,-3.7256],[122.1261,-3.7265],[122.1157,-3.7208],[122.1049,-3.7165],[122.0808,-3.717],[122.0718,-3.7084],[122.065,-3.7006],[122.0581,-3.698],[122.0539,-3.689],[122.053,-3.6771],[122.0468,-3.6719],[122.0426,-3.6629],[122.045,-3.6534],[122.0554,-3.6425],[122.0417,-3.6197],[122.0308,-3.6168],[122.0148,-3.6069],[122.0063,-3.5959],[121.9945,-3.5874],[121.9704,-3.5769],[121.9298,-3.5666],[121.9201,-3.5624],[121.9058,-3.5621],[121.8894,-3.5693],[121.8822,-3.5697],[121.8652,-3.564],[121.8557,-3.5588],[121.8491,-3.5606],[121.8401,-3.5649],[121.8264,-3.5668],[121.8178,-3.5697],[121.8063,-3.5784],[121.7942,-3.5828],[121.7875,-3.5732],[121.7795,-3.5644],[121.7748,-3.556],[121.773,-3.5466],[121.7754,-3.5365],[121.7654,-3.5127],[121.766,-3.4991],[121.7684,-3.4902],[121.7636,-3.4825],[121.7483,-3.4819],[121.7418,-3.4866],[121.7259,-3.4896],[121.7005,-3.483],[121.6698,-3.4705],[121.6622,-3.4652],[121.6586,-3.4569],[121.6596,-3.4492],[121.6634,-3.4426],[121.6711,-3.4355],[121.6717,-3.4266],[121.6628,-3.4189],[121.6398,-3.4189],[121.6262,-3.423],[121.6186,-3.4236],[121.5996,-3.4108],[121.5543,-3.3861],[121.5466,-3.3928],[121.5313,-3.3993],[121.5126,-3.4381],[121.5033,-3.4495],[121.5209,-3.4704],[121.5253,-3.4796],[121.528,-3.4998],[121.5336,-3.5116],[121.5308,-3.5331],[121.5332,-3.542],[121.5462,-3.5618],[121.5602,-3.5868],[121.566,-3.6003],[121.5759,-3.6338],[121.583,-3.65],[121.5877,-3.6568],[121.612,-3.6814],[121.6122,-3.6905],[121.6079,-3.6999],[121.613,-3.716],[121.6157,-3.729],[121.6198,-3.7367],[121.631,-3.7385],[121.6352,-3.7348],[121.6409,-3.738],[121.6523,-3.7334],[121.6573,-3.7338],[121.6622,-3.7299],[121.6661,-3.7328],[121.6732,-3.7345],[121.673,-3.7369],[121.68,-3.7388],[121.6816,-3.7426],[121.6789,-3.7532],[121.683,-3.7515],[121.6843,-3.7587],[121.6924,-3.7607],[121.6954,-3.7652],[121.7006,-3.7778],[121.7063,-3.7753],[121.7115,-3.7756],[121.7159,-3.7716],[121.7265,-3.7656],[121.7283,-3.769],[121.7376,-3.7687],[121.7417,-3.7652],[121.7483,-3.7665],[121.7491,-3.764],[121.756,-3.7592],[121.7651,-3.7557],[121.7712,-3.7496],[121.7701,-3.7445],[121.7792,-3.7356],[121.7855,-3.7336],[121.7912,-3.7268],[121.798,-3.7266],[121.7989,-3.7294],[121.8079,-3.7299],[121.8107,-3.7338],[121.8157,-3.7339],[121.819,-3.7315],[121.8242,-3.735],[121.8308,-3.7327],[121.8391,-3.7373],[121.8455,-3.7433],[121.8573,-3.7494],[121.8645,-3.7565],[121.8554,-3.7747],[121.8554,-3.7836],[121.8627,-3.7925],[121.8735,-3.7979],[121.8823,-3.8065],[121.8868,-3.8081],[121.8947,-3.8138],[121.9027,-3.8172],[121.9076,-3.8221],[121.9185,-3.8267],[121.9236,-3.8303],[121.9306,-3.8318],[121.9333,-3.8385],[121.9388,-3.8473],[121.9434,-3.8515],[121.9614,-3.8772],[121.9657,-3.8869],[121.9696,-3.901],[121.967,-3.9326],[121.9667,-3.9446],[121.9636,-3.9566],[121.9592,-3.978],[121.9557,-3.9865],[121.9539,-3.9968],[121.953,-4.012],[121.9555,-4.0423],[121.9579,-4.056],[121.9615,-4.0721],[121.9644,-4.0802],[121.9725,-4.0919],[121.9878,-4.1062],[121.9944,-4.1317],[121.9999,-4.1293],[122.0099,-4.1282],[122.0105,-4.1264],[122.021,-4.1235],[122.0304,-4.1229],[122.0392,-4.1258],[122.0416,-4.1241],[122.0515,-4.1217],[122.0591,-4.117],[122.0627,-4.1188],[122.0691,-4.1153],[122.0744,-4.1153],[122.0839,-4.118],[122.0912,-4.1143],[122.0925,-4.1106],[122.0914,-4.1053],[122.0931,-4.1022],[122.1049,-4.1012],[122.1113,-4.0941],[122.1171,-4.093],[122.1338,-4.0855],[122.1372,-4.0825],[122.1448,-4.0798],[122.156,-4.0713],[122.1698,-4.0686],[122.1791,-4.0642],[122.1796,-4.0597],[122.1764,-4.0518],[122.1807,-4.0414],[122.1888,-4.0385],[122.1871,-4.036],[122.1924,-4.0325],[122.1947,-4.0286],[122.204,-4.0196],[122.2123,-4.0203],[122.2119,-4.0127],[122.2186,-4.0089],[122.2223,-4.005],[122.2278,-4.0067],[122.2302,-4.0028],[122.2352,-4.0011],[122.2368,-4.0046],[122.242,-4.0067],[122.2453,-4.0047],[122.2592,-4.0014],[122.2642,-4.0058],[122.2711,-4.0006],[122.272,-3.9943],[122.2687,-3.9909],[122.2677,-3.9864],[122.274,-3.9834],[122.2763,-3.9898],[122.2749,-3.9939],[122.2786,-3.996],[122.2783,-3.9997],[122.2842,-4.0053],[122.295,-4.0069],[122.292,-4.0197],[122.294,-4.0231],[122.2986,-4.0246],[122.2981,-4.0185],[122.3048,-4.0149],[122.3028,-4.0092],[122.3071,-4.0074],[122.3106,-4.0023],[122.3136,-4.0135],[122.3133,-4.022],[122.3164,-4.0223],[122.3198,-4.0167],[122.326,-4.0209],[122.3291,-4.0171],[122.333,-4.0165],[122.336,-4.0129],[122.3405,-4.0169],[122.3385,-4.0217],[122.3466,-4.0256],[122.3546,-4.0252],[122.3561,-4.0213],[122.3517,-4.0195],[122.3502,-4.0112],[122.3515,-4.0077],[122.3591,-4.0059],[122.3591,-3.9994],[122.363,-3.9966],[122.372,-4.0019],[122.3789,-4.0024],[122.3929,-4.0052],[122.4077,-4.0072],[122.4213,-4.0104],[122.4269,-4.0081],[122.4404,-4.0081],[122.4523,-3.9664],[122.4518,-3.9403],[122.4686,-3.9188],[122.4812,-3.9091],[122.5067,-3.9091],[122.5225,-3.9346],[122.5359,-3.9392],[122.5389,-3.9411],[122.5486,-3.9419],[122.571,-3.9399],[122.5807,-3.9396],[122.5942,-3.9411],[122.6052,-3.9445],[122.6172,-3.9492],[122.6242,-3.9492],[122.6271,-3.9459],[122.625,-3.9422],[122.628,-3.9383],[122.6338,-3.9384],[122.6478,-3.9345],[122.6452,-3.9311],[122.6468,-3.9245],[122.6605,-3.9276],[122.6645,-3.9252],[122.6671,-3.9174],[122.6637,-3.9122],[122.6653,-3.8965],[122.6563,-3.895],[122.6467,-3.8916],[122.6316,-3.8912],[122.6255,-3.8927],[122.6214,-3.8885],[122.6134,-3.8908],[122.6108,-3.896],[122.6052,-3.8931],[122.5975,-3.8933],[122.5962,-3.8952],[122.5874,-3.8941],[122.5763,-3.8975],[122.5766,-3.902],[122.5691,-3.904],[122.5696,-3.8996],[122.5611,-3.9002],[122.5593,-3.9025],[122.542,-3.898],[122.5395,-3.8936],[122.5335,-3.8998],[122.5309,-3.8956],[122.5247,-3.895],[122.5171,-3.8891],[122.5151,-3.886],[122.5071,-3.882],[122.506,-3.8753],[122.508,-3.8694],[122.5058,-3.8634],[122.5086,-3.8599],[122.5061,-3.8543],[122.4982,-3.8463],[122.4905,-3.8349],[122.4802,-3.8214],[122.4754,-3.8221],[122.4688,-3.8201],[122.4595,-3.8193],[122.4595,-3.835],[122.4529,-3.8369],[122.4472,-3.8335],[122.4396,-3.8397],[122.4321,-3.8383],[122.4292,-3.8454],[122.4235,-3.8485],[122.4292,-3.8577],[122.4269,-3.861],[122.4163,-3.8621],[122.4141,-3.8672],[122.3996,-3.8675],[122.399,-3.8641],[122.3847,-3.8661],[122.3638,-3.8648],[122.357,-3.8643],[122.3437,-3.8752]]}},{"type":"Feature","properties":{"mhid":"1332:435","alt_name":"KABUPATEN KONAWE","latitude":-3.91717,"longitude":122.08823,"sample_value":341},"geometry":{"type":"LineString","coordinates":[[121.6855,-2.9008],[121.6754,-2.9004],[121.6678,-2.8969],[121.6586,-2.8988],[121.6504,-2.8976],[121.6428,-2.8944],[121.6378,-2.8941],[121.6298,-2.8972],[121.6199,-2.9048],[121.6168,-2.9057],[121.6009,-2.9035],[121.5969,-2.905],[121.5888,-2.911],[121.5745,-2.9171],[121.5704,-2.9175],[121.5658,-2.9222],[121.5575,-2.9195],[121.5471,-2.9217],[121.5447,-2.9249],[121.5402,-2.9408],[121.5302,-2.9567],[121.5254,-2.9621],[121.518,-2.9681],[121.5083,-2.9738],[121.4991,-2.9741],[121.4919,-2.9782],[121.4643,-3.0004],[121.4608,-3.0109],[121.4574,-3.0132],[121.4401,-3.0067],[121.4242,-3.0049],[121.4138,-3.003],[121.4076,-3],[121.3872,-2.9834],[121.3743,-2.9772],[121.3622,-2.9761],[121.3578,-2.9747],[121.3699,-3.0099],[121.3687,-3.0152],[121.3629,-3.0256],[121.3606,-3.044],[121.3613,-3.0521],[121.3668,-3.0595],[121.3817,-3.0709],[121.3889,-3.0859],[121.3885,-3.0976],[121.3927,-3.1012],[121.4024,-3.1044],[121.4093,-3.1054],[121.412,-3.1097],[121.4118,-3.1194],[121.4139,-3.1258],[121.4164,-3.1421],[121.4212,-3.1495],[121.4329,-3.1556],[121.4367,-3.1587],[121.442,-3.1684],[121.4401,-3.1776],[121.4389,-3.1937],[121.4368,-3.2032],[121.4356,-3.2204],[121.4302,-3.2479],[121.4313,-3.2733],[121.4882,-3.2403],[121.5035,-3.2244],[121.5217,-3.2244],[121.5537,-3.2027],[121.564,-3.1879],[121.5799,-3.1741],[121.5914,-3.1604],[121.6119,-3.1662],[121.6244,-3.1639],[121.6335,-3.1605],[121.6495,-3.1673],[121.6597,-3.1823],[121.6688,-3.1926],[121.6779,-3.2006],[121.6722,-3.2189],[121.6881,-3.2281],[121.707,-3.233],[121.735,-3.2447],[121.7474,-3.2339],[121.7559,-3.2401],[121.7645,-3.25],[121.7759,-3.2431],[121.7907,-3.2431],[121.8124,-3.2351],[121.8283,-3.226],[121.8428,-3.2098],[121.8419,-3.2053],[121.9406,-3.1041],[122.068,-2.9742],[122.079,-2.9621],[122.0787,-2.9619],[122.0725,-2.9542],[122.0632,-2.9495],[122.0582,-2.9496],[122.0506,-2.9518],[122.0385,-2.9596],[122.0306,-2.9585],[122.0223,-2.959],[122.0161,-2.9574],[122.0073,-2.9575],[121.9952,-2.9611],[121.9812,-2.9662],[121.9697,-2.9727],[121.959,-2.9763],[121.9489,-2.9767],[121.9284,-2.9839],[121.9232,-2.9893],[121.9193,-2.9897],[121.8992,-2.9832],[121.8824,-2.9751],[121.8718,-2.9719],[121.8654,-2.9674],[121.8577,-2.964],[121.8511,-2.9673],[121.8462,-2.9679],[121.8423,-2.9707],[121.8318,-2.9707],[121.8259,-2.9693],[121.819,-2.9591],[121.8041,-2.953],[121.7906,-2.9442],[121.7777,-2.9456],[121.7712,-2.9429],[121.7666,-2.9335],[121.7606,-2.9281],[121.7529,-2.9238],[121.7405,-2.9238],[121.7394,-2.921],[121.7358,-2.9184],[121.7312,-2.9161],[121.7249,-2.9168],[121.7158,-2.9207],[121.7126,-2.9195],[121.7104,-2.9136],[121.7004,-2.9097],[121.6947,-2.9029],[121.6855,-2.9008]]}},{"type":"Feature","properties":{"mhid":"1332:436","alt_name":"KABUPATEN KOLAKA","latitude":-4.08333,"longitude":121.66667,"sample_value":165},"geometry":{"type":"LineString","coordinates":[[121.4914,-4.1943],[121.4824,-4.1944],[121.4793,-4.1959],[121.4692,-4.2087],[121.4723,-4.2144],[121.4706,-4.2188],[121.4728,-4.2249],[121.4806,-4.2158],[121.482,-4.2046],[121.4951,-4.2026],[121.4914,-4.1943]]}},{"type":"Feature","properties":{"mhid":"1332:436","alt_name":"KABUPATEN KOLAKA","latitude":-4.08333,"longitude":121.66667,"sample_value":165},"geometry":{"type":"LineString","coordinates":[[121.4775,-4.112],[121.4782,-4.122],[121.4821,-4.1191],[121.4775,-4.112]]}},{"type":"Feature","properties":{"mhid":"1332:436","alt_name":"KABUPATEN KOLAKA","latitude":-4.08333,"longitude":121.66667,"sample_value":165},"geometry":{"type":"LineString","coordinates":[[121.4483,-4.107],[121.4455,-4.1127],[121.4407,-4.1167],[121.4336,-4.1164],[121.4293,-4.1135],[121.4228,-4.1144],[121.4158,-4.1111],[121.4163,-4.1042],[121.4202,-4.0974],[121.4224,-4.0873],[121.4171,-4.0855],[121.4149,-4.0889],[121.4126,-4.0986],[121.4134,-4.1045],[121.4116,-4.1076],[121.4046,-4.1136],[121.3991,-4.1101],[121.3926,-4.1109],[121.3891,-4.1038],[121.3832,-4.1045],[121.3845,-4.1162],[121.3887,-4.1247],[121.396,-4.1249],[121.4014,-4.1286],[121.4025,-4.1368],[121.4013,-4.1432],[121.4006,-4.144],[121.4013,-4.1432],[121.4006,-4.144],[121.3991,-4.1475],[121.3937,-4.1497],[121.3942,-4.1636],[121.4026,-4.161],[121.4108,-4.1561],[121.4188,-4.1556],[121.4257,-4.1582],[121.4291,-4.1625],[121.4278,-4.1689],[121.4405,-4.168],[121.4452,-4.1605],[121.4376,-4.1585],[121.4378,-4.1514],[121.4339,-4.1485],[121.4345,-4.1443],[121.4297,-4.1363],[121.4303,-4.1296],[121.4352,-4.1279],[121.4423,-4.1286],[121.4514,-4.1313],[121.4535,-4.1345],[121.4596,-4.1374],[121.4611,-4.1332],[121.4563,-4.1215],[121.4591,-4.1169],[121.4669,-4.1182],[121.4713,-4.1103],[121.4644,-4.1042],[121.459,-4.1027],[121.4561,-4.1052],[121.4495,-4.1053],[121.4483,-4.107],[121.4495,-4.1053],[121.4483,-4.107]]}},{"type":"Feature","properties":{"mhid":"1332:436","alt_name":"KABUPATEN KOLAKA","latitude":-4.08333,"longitude":121.66667,"sample_value":165},"geometry":{"type":"LineString","coordinates":[[121.3336,-4.0855],[121.3373,-4.0844],[121.3375,-4.0773],[121.3339,-4.0768],[121.3317,-4.0834],[121.3336,-4.0855]]}},{"type":"Feature","properties":{"mhid":"1332:436","alt_name":"KABUPATEN KOLAKA","latitude":-4.08333,"longitude":121.66667,"sample_value":165},"geometry":{"type":"LineString","coordinates":[[121.3693,-4.0799],[121.3674,-4.0746],[121.3631,-4.0852],[121.3554,-4.0884],[121.3549,-4.0913],[121.3614,-4.0945],[121.3642,-4.0983],[121.3696,-4.1012],[121.3737,-4.1007],[121.3783,-4.1028],[121.378,-4.0952],[121.3696,-4.0874],[121.3693,-4.0799]]}},{"type":"Feature","properties":{"mhid":"1332:436","alt_name":"KABUPATEN KOLAKA","latitude":-4.08333,"longitude":121.66667,"sample_value":165},"geometry":{"type":"LineString","coordinates":[[121.7943,-4.3536],[121.7956,-4.353],[121.7906,-4.3383],[121.7766,-4.2936],[121.7671,-4.2845],[121.7597,-4.2742],[121.7517,-4.2692],[121.7391,-4.2671],[121.7382,-4.2596],[121.7354,-4.2569],[121.7374,-4.2464],[121.7479,-4.2425],[121.7491,-4.2314],[121.7509,-4.227],[121.7517,-4.2003],[121.7726,-4.1767],[121.7758,-4.1724],[121.7787,-4.1627],[121.7782,-4.1422],[121.773,-4.1132],[121.7733,-4.1023],[121.772,-4.0954],[121.7694,-4.0927],[121.7688,-4.0795],[121.767,-4.0661],[121.7636,-4.0468],[121.7582,-4.0382],[121.7408,-4.0192],[121.7198,-3.9976],[121.7067,-3.994],[121.6976,-3.9926],[121.6918,-3.9893],[121.6776,-3.9767],[121.6755,-3.9684],[121.6765,-3.963],[121.6855,-3.9578],[121.6965,-3.9558],[121.6992,-3.9482],[121.6939,-3.9363],[121.6807,-3.9195],[121.6734,-3.9122],[121.6715,-3.9065],[121.6661,-3.9017],[121.6592,-3.9056],[121.654,-3.9016],[121.639,-3.9015],[121.6316,-3.8993],[121.6241,-3.8937],[121.6224,-3.8909],[121.6165,-3.8728],[121.6111,-3.8644],[121.6094,-3.8543],[121.6099,-3.8463],[121.6075,-3.8283],[121.6027,-3.8205],[121.5866,-3.8101],[121.5711,-3.8008],[121.5582,-3.7895],[121.5499,-3.781],[121.5407,-3.765],[121.5351,-3.7581],[121.527,-3.7542],[121.5236,-3.7478],[121.5048,-3.7355],[121.4865,-3.7266],[121.4748,-3.7229],[121.4605,-3.7206],[121.4564,-3.7164],[121.4524,-3.7153],[121.4402,-3.7092],[121.4317,-3.703],[121.4287,-3.6941],[121.4295,-3.6754],[121.4332,-3.648],[121.4341,-3.6381],[121.4321,-3.6262],[121.4284,-3.6199],[121.4197,-3.613],[121.4087,-3.6117],[121.3918,-3.6173],[121.3702,-3.6306],[121.3613,-3.6381],[121.3503,-3.6486],[121.3389,-3.662],[121.3356,-3.6674],[121.3439,-3.6756],[121.3441,-3.6853],[121.3369,-3.6926],[121.329,-3.6942],[121.3154,-3.6946],[121.2988,-3.6924],[121.2899,-3.6899],[121.2826,-3.6852],[121.2685,-3.674],[121.26,-3.6681],[121.2529,-3.6593],[121.2378,-3.6676],[121.2315,-3.6701],[121.223,-3.6761],[121.1854,-3.6918],[121.1614,-3.7038],[121.1141,-3.7422],[121.1063,-3.7461],[121.1094,-3.7515],[121.1166,-3.7584],[121.1212,-3.7606],[121.1449,-3.782],[121.1546,-3.7929],[121.1606,-3.801],[121.1635,-3.8076],[121.1661,-3.8191],[121.1683,-3.8244],[121.1802,-3.8295],[121.1936,-3.8294],[121.2076,-3.8235],[121.2156,-3.8227],[121.24,-3.8255],[121.2455,-3.8294],[121.2511,-3.837],[121.255,-3.8471],[121.259,-3.8515],[121.2582,-3.8557],[121.2519,-3.8622],[121.2455,-3.8654],[121.239,-3.866],[121.2341,-3.8708],[121.2429,-3.8716],[121.2468,-3.878],[121.2528,-3.8759],[121.2564,-3.8769],[121.2618,-3.8829],[121.2611,-3.887],[121.2539,-3.8906],[121.2489,-3.8999],[121.2422,-3.9061],[121.2424,-3.9132],[121.2495,-3.9142],[121.2549,-3.9106],[121.2651,-3.9111],[121.2666,-3.9056],[121.2703,-3.9007],[121.2705,-3.8966],[121.2751,-3.8956],[121.2734,-3.8893],[121.2812,-3.8898],[121.2809,-3.8845],[121.2913,-3.8861],[121.3003,-3.8901],[121.3043,-3.8996],[121.3133,-3.9142],[121.3173,-3.9321],[121.316,-3.9388],[121.3193,-3.9465],[121.3239,-3.9477],[121.3267,-3.9539],[121.3341,-3.9657],[121.3391,-3.9818],[121.3443,-3.9825],[121.3457,-3.9891],[121.3618,-3.9972],[121.371,-4.0037],[121.4015,-4.0004],[121.4078,-3.9973],[121.4139,-3.9988],[121.4237,-4.0062],[121.4275,-4.0065],[121.4373,-4.0151],[121.4436,-4.0219],[121.4522,-4.0239],[121.4548,-4.019],[121.4518,-4.0097],[121.4567,-4.0079],[121.4589,-4.0102],[121.48,-4.0172],[121.4859,-4.016],[121.4998,-4.0189],[121.5059,-4.0178],[121.5133,-4.0233],[121.5225,-4.0249],[121.5301,-4.0278],[121.5327,-4.0317],[121.5359,-4.0311],[121.5431,-4.0356],[121.5485,-4.0375],[121.5534,-4.0434],[121.5582,-4.0408],[121.5658,-4.0402],[121.5771,-4.0504],[121.5798,-4.0493],[121.5883,-4.0515],[121.5892,-4.0575],[121.5917,-4.0619],[121.602,-4.0634],[121.6097,-4.0671],[121.6081,-4.0725],[121.611,-4.0757],[121.6066,-4.0902],[121.6064,-4.104],[121.6081,-4.1102],[121.6131,-4.1175],[121.6152,-4.1234],[121.6173,-4.1365],[121.6173,-4.151],[121.6086,-4.1642],[121.6096,-4.1719],[121.6054,-4.1816],[121.6018,-4.1793],[121.5911,-4.1806],[121.5983,-4.1875],[121.5938,-4.1958],[121.5863,-4.2001],[121.5835,-4.2088],[121.5836,-4.2224],[121.5824,-4.2254],[121.5841,-4.2312],[121.5796,-4.2453],[121.5757,-4.2472],[121.5713,-4.2554],[121.5656,-4.262],[121.5592,-4.2649],[121.5478,-4.2662],[121.5401,-4.256],[121.5448,-4.2518],[121.5464,-4.2479],[121.5449,-4.2439],[121.5405,-4.2463],[121.5386,-4.2427],[121.5332,-4.24],[121.5269,-4.244],[121.5265,-4.2511],[121.5302,-4.253],[121.5327,-4.2643],[121.526,-4.2659],[121.5297,-4.2703],[121.533,-4.2815],[121.5297,-4.2915],[121.5231,-4.3072],[121.5237,-4.3177],[121.5216,-4.3215],[121.5161,-4.3425],[121.5173,-4.3721],[121.521,-4.3857],[121.5225,-4.388],[121.5205,-4.3948],[121.5242,-4.4002],[121.5219,-4.4037],[121.5181,-4.4228],[121.5164,-4.4417],[121.5128,-4.4486],[121.512,-4.4566],[121.4983,-4.4898],[121.4943,-4.5039],[121.4842,-4.5356],[121.475,-4.5509],[121.4766,-4.5607],[121.4768,-4.5746],[121.4737,-4.5846],[121.4701,-4.5864],[121.4707,-4.5912],[121.4786,-4.591],[121.4908,-4.5916],[121.494,-4.5897],[121.4978,-4.5838],[121.5035,-4.5837],[121.5096,-4.5866],[121.5202,-4.5816],[121.5292,-4.5809],[121.5276,-4.5766],[121.5402,-4.5724],[121.5435,-4.5746],[121.5536,-4.5716],[121.5624,-4.5712],[121.5659,-4.5777],[121.5725,-4.5769],[121.5783,-4.5706],[121.5812,-4.5778],[121.5878,-4.5758],[121.5947,-4.5769],[121.6,-4.5721],[121.6042,-4.5709],[121.6135,-4.5726],[121.62,-4.5631],[121.6269,-4.561],[121.6343,-4.563],[121.637,-4.5655],[121.6497,-4.5661],[121.656,-4.5642],[121.6609,-4.5652],[121.6629,-4.5582],[121.6699,-4.5532],[121.6772,-4.5522],[121.6812,-4.5479],[121.6838,-4.5496],[121.6904,-4.545],[121.6957,-4.545],[121.699,-4.5397],[121.71,-4.5329],[121.7103,-4.5269],[121.7172,-4.5266],[121.7199,-4.523],[121.7235,-4.5235],[121.7236,-4.5134],[121.7191,-4.5141],[121.7204,-4.4999],[121.7255,-4.4971],[121.7238,-4.4941],[121.7286,-4.4912],[121.731,-4.4929],[121.7371,-4.4915],[121.7372,-4.487],[121.7469,-4.4843],[121.7531,-4.4761],[121.7502,-4.4714],[121.7566,-4.4661],[121.7595,-4.4675],[121.7642,-4.4642],[121.7676,-4.4655],[121.7828,-4.4498],[121.7872,-4.4488],[121.789,-4.4444],[121.7886,-4.4392],[121.7937,-4.4382],[121.7928,-4.4314],[121.7976,-4.4308],[121.7979,-4.4245],[121.8055,-4.4207],[121.8038,-4.4156],[121.8023,-4.4071],[121.7995,-4.4026],[121.7988,-4.3971],[121.8052,-4.3836],[121.8031,-4.3797],[121.7943,-4.3536]]}},{"type":"Feature","properties":{"mhid":"1332:437","alt_name":"KABUPATEN KONAWE SELATAN","latitude":-4.19191,"longitude":122.44854,"sample_value":447},"geometry":{"type":"LineString","coordinates":[[122.4404,-4.0081],[122.4269,-4.0081],[122.4213,-4.0104],[122.4077,-4.0072],[122.3929,-4.0052],[122.3789,-4.0024],[122.372,-4.0019],[122.363,-3.9966],[122.3591,-3.9994],[122.3591,-4.0059],[122.3515,-4.0077],[122.3502,-4.0112],[122.3517,-4.0195],[122.3561,-4.0213],[122.3546,-4.0252],[122.3466,-4.0256],[122.3385,-4.0217],[122.3405,-4.0169],[122.336,-4.0129],[122.333,-4.0165],[122.3291,-4.0171],[122.326,-4.0209],[122.3198,-4.0167],[122.3164,-4.0223],[122.3133,-4.022],[122.3136,-4.0135],[122.3106,-4.0023],[122.3071,-4.0074],[122.3028,-4.0092],[122.3048,-4.0149],[122.2981,-4.0185],[122.2986,-4.0246],[122.294,-4.0231],[122.292,-4.0197],[122.295,-4.0069],[122.2842,-4.0053],[122.2783,-3.9997],[122.2786,-3.996],[122.2749,-3.9939],[122.2763,-3.9898],[122.274,-3.9834],[122.2677,-3.9864],[122.2687,-3.9909],[122.272,-3.9943],[122.2711,-4.0006],[122.2642,-4.0058],[122.2592,-4.0014],[122.2453,-4.0047],[122.242,-4.0067],[122.2368,-4.0046],[122.2352,-4.0011],[122.2302,-4.0028],[122.2278,-4.0067],[122.2223,-4.005],[122.2186,-4.0089],[122.2119,-4.0127],[122.2123,-4.0203],[122.204,-4.0196],[122.1947,-4.0286],[122.1924,-4.0325],[122.1871,-4.036],[122.1888,-4.0385],[122.1807,-4.0414],[122.1764,-4.0518],[122.1796,-4.0597],[122.1791,-4.0642],[122.1698,-4.0686],[122.156,-4.0713],[122.1448,-4.0798],[122.1372,-4.0825],[122.1338,-4.0855],[122.1171,-4.093],[122.1113,-4.0941],[122.1049,-4.1012],[122.0931,-4.1022],[122.0914,-4.1053],[122.0925,-4.1106],[122.0912,-4.1143],[122.0839,-4.118],[122.0744,-4.1153],[122.0691,-4.1153],[122.0627,-4.1188],[122.0591,-4.117],[122.0515,-4.1217],[122.0416,-4.1241],[122.0392,-4.1258],[122.0304,-4.1229],[122.021,-4.1235],[122.0105,-4.1264],[122.0099,-4.1282],[121.9999,-4.1293],[121.9944,-4.1317],[122.0112,-4.183],[122.014,-4.1929],[122.0148,-4.2018],[122.0141,-4.2314],[122.0114,-4.2612],[122.0107,-4.2772],[122.0112,-4.3127],[122.0109,-4.3563],[122.0071,-4.3669],[122.0038,-4.3691],[121.9893,-4.3723],[121.9799,-4.3735],[121.9766,-4.3789],[121.9535,-4.3783],[121.9449,-4.3787],[121.9246,-4.378],[121.9077,-4.3779],[121.9577,-4.4048],[122,-4.4283],[122.0116,-4.4386],[122.0195,-4.4436],[122.0319,-4.4551],[122.0338,-4.4583],[122.05,-4.4726],[122.0511,-4.4778],[122.0482,-4.4842],[122.0515,-4.4875],[122.0574,-4.4887],[122.0597,-4.4924],[122.0656,-4.4909],[122.0674,-4.4931],[122.0782,-4.4935],[122.0827,-4.4961],[122.0931,-4.4953],[122.0938,-4.5002],[122.0999,-4.5058],[122.1072,-4.5098],[122.1058,-4.5155],[122.1067,-4.5241],[122.1038,-4.5282],[122.1081,-4.5341],[122.113,-4.5361],[122.1212,-4.5369],[122.1245,-4.5312],[122.1314,-4.5317],[122.1398,-4.5345],[122.1478,-4.5343],[122.1525,-4.5308],[122.161,-4.5296],[122.1648,-4.5206],[122.1736,-4.5185],[122.1819,-4.5096],[122.19,-4.504],[122.1912,-4.4989],[122.1948,-4.5005],[122.2058,-4.4854],[122.2169,-4.4828],[122.2205,-4.4794],[122.2264,-4.483],[122.2377,-4.4871],[122.2513,-4.4853],[122.2535,-4.493],[122.2607,-4.493],[122.2657,-4.4892],[122.2702,-4.4894],[122.2873,-4.4846],[122.2991,-4.4822],[122.3093,-4.4755],[122.3241,-4.4751],[122.3329,-4.4736],[122.3417,-4.4747],[122.3449,-4.4719],[122.3447,-4.4654],[122.3492,-4.4681],[122.3639,-4.4657],[122.3698,-4.4615],[122.3745,-4.4602],[122.3762,-4.457],[122.3811,-4.4576],[122.3895,-4.4556],[122.3936,-4.4511],[122.3988,-4.448],[122.4015,-4.4435],[122.4016,-4.4391],[122.4086,-4.4407],[122.4146,-4.4339],[122.4191,-4.4331],[122.4233,-4.4353],[122.4298,-4.4345],[122.4358,-4.4459],[122.4359,-4.4376],[122.4408,-4.4354],[122.4452,-4.4364],[122.4441,-4.4436],[122.4503,-4.4487],[122.4545,-4.4474],[122.4533,-4.4408],[122.4556,-4.4368],[122.4626,-4.4398],[122.4678,-4.4373],[122.4679,-4.4426],[122.4721,-4.4431],[122.4704,-4.4524],[122.4774,-4.4491],[122.4837,-4.4513],[122.4864,-4.4486],[122.4894,-4.4556],[122.4938,-4.4526],[122.4947,-4.4481],[122.5009,-4.4494],[122.5037,-4.4542],[122.5072,-4.4509],[122.5066,-4.4449],[122.5111,-4.4427],[122.5201,-4.4431],[122.5273,-4.4351],[122.5326,-4.427],[122.5375,-4.4251],[122.5399,-4.4276],[122.5436,-4.4208],[122.5522,-4.4228],[122.5634,-4.4174],[122.5639,-4.4087],[122.5659,-4.4024],[122.5746,-4.3988],[122.5788,-4.3996],[122.5846,-4.3967],[122.5951,-4.3969],[122.5981,-4.4021],[122.6021,-4.4053],[122.6127,-4.4085],[122.63,-4.4238],[122.6331,-4.4293],[122.6426,-4.4392],[122.6586,-4.449],[122.6642,-4.455],[122.6616,-4.4581],[122.6623,-4.4629],[122.6674,-4.4672],[122.6643,-4.4767],[122.6646,-4.4915],[122.667,-4.5013],[122.6717,-4.5079],[122.6803,-4.5074],[122.6837,-4.5046],[122.6878,-4.5048],[122.6948,-4.5017],[122.6927,-4.4992],[122.6867,-4.4979],[122.6766,-4.4834],[122.6811,-4.4742],[122.6851,-4.4754],[122.6896,-4.4705],[122.6936,-4.47],[122.7013,-4.4726],[122.7063,-4.4762],[122.7056,-4.4799],[122.7089,-4.4833],[122.7058,-4.4887],[122.7107,-4.4986],[122.7143,-4.5014],[122.7212,-4.5013],[122.7402,-4.5097],[122.7476,-4.5074],[122.76,-4.4888],[122.7626,-4.4732],[122.7621,-4.4634],[122.7634,-4.4584],[122.7638,-4.4476],[122.7605,-4.4438],[122.7621,-4.4378],[122.7572,-4.4268],[122.7534,-4.4258],[122.7506,-4.4289],[122.7463,-4.4285],[122.7435,-4.4323],[122.734,-4.4269],[122.7298,-4.4212],[122.7241,-4.4206],[122.7251,-4.4165],[122.712,-4.4076],[122.7067,-4.4073],[122.7005,-4.4012],[122.7029,-4.3941],[122.6984,-4.3916],[122.6959,-4.3875],[122.6946,-4.3793],[122.6849,-4.3685],[122.6805,-4.3681],[122.6771,-4.3648],[122.667,-4.3615],[122.6629,-4.3558],[122.6629,-4.3472],[122.6599,-4.3386],[122.6617,-4.3358],[122.6711,-4.3281],[122.6821,-4.3262],[122.6894,-4.3309],[122.6962,-4.3316],[122.6964,-4.3363],[122.7001,-4.3408],[122.7039,-4.3388],[122.7106,-4.3477],[122.7172,-4.3536],[122.7172,-4.3576],[122.7217,-4.3652],[122.7264,-4.3691],[122.7342,-4.3652],[122.7371,-4.3736],[122.743,-4.3828],[122.7528,-4.388],[122.7636,-4.4001],[122.7683,-4.4036],[122.7699,-4.4088],[122.7755,-4.4093],[122.7796,-4.4133],[122.7859,-4.4152],[122.7892,-4.4191],[122.8011,-4.4255],[122.8098,-4.4277],[122.8157,-4.4312],[122.8151,-4.4372],[122.8206,-4.4428],[122.8299,-4.4479],[122.8357,-4.4488],[122.8392,-4.4415],[122.8375,-4.4396],[122.8455,-4.4265],[122.8465,-4.4192],[122.8594,-4.4182],[122.8697,-4.4134],[122.8695,-4.4175],[122.8765,-4.4183],[122.8808,-4.4112],[122.8856,-4.4076],[122.8918,-4.3978],[122.8908,-4.3924],[122.8963,-4.3857],[122.8972,-4.3807],[122.901,-4.3796],[122.9017,-4.3721],[122.8974,-4.3713],[122.8968,-4.3645],[122.8944,-4.362],[122.8968,-4.3523],[122.9006,-4.3508],[122.8999,-4.3468],[122.8948,-4.34],[122.896,-4.332],[122.9012,-4.3293],[122.9038,-4.3252],[122.9036,-4.3207],[122.8983,-4.3213],[122.8894,-4.3181],[122.8856,-4.3117],[122.8843,-4.2978],[122.8812,-4.2953],[122.8849,-4.2918],[122.8862,-4.2797],[122.8908,-4.2777],[122.8909,-4.2724],[122.8878,-4.27],[122.8939,-4.2541],[122.8978,-4.2506],[122.9023,-4.2513],[122.9064,-4.2425],[122.9048,-4.2377],[122.9065,-4.2295],[122.8946,-4.2219],[122.8929,-4.2075],[122.8981,-4.2044],[122.8971,-4.2009],[122.8998,-4.1957],[122.8971,-4.1876],[122.8918,-4.1794],[122.8899,-4.1714],[122.8915,-4.1644],[122.8885,-4.1579],[122.8867,-4.1457],[122.8881,-4.1399],[122.8832,-4.1324],[122.885,-4.1268],[122.8821,-4.1222],[122.873,-4.1161],[122.8707,-4.1094],[122.8691,-4.0995],[122.8602,-4.093],[122.8553,-4.0849],[122.8534,-4.076],[122.8499,-4.0697],[122.8362,-4.0586],[122.8308,-4.055],[122.8246,-4.0581],[122.816,-4.0576],[122.8111,-4.0618],[122.7997,-4.0595],[122.7945,-4.0555],[122.7899,-4.0611],[122.7804,-4.06],[122.7752,-4.0566],[122.7656,-4.0563],[122.7611,-4.0652],[122.7683,-4.0686],[122.7688,-4.0765],[122.7711,-4.0799],[122.7758,-4.0814],[122.7773,-4.0894],[122.7882,-4.0966],[122.793,-4.0963],[122.7931,-4.0926],[122.8012,-4.0958],[122.8043,-4.1036],[122.8087,-4.1081],[122.8079,-4.1146],[122.8133,-4.1125],[122.817,-4.109],[122.8237,-4.1102],[122.8209,-4.1156],[122.8277,-4.1199],[122.8313,-4.1205],[122.8348,-4.1249],[122.834,-4.1305],[122.8301,-4.1363],[122.8328,-4.145],[122.8357,-4.1498],[122.8323,-4.154],[122.8268,-4.1506],[122.8225,-4.1455],[122.8172,-4.1452],[122.8173,-4.1407],[122.8121,-4.1401],[122.8098,-4.1482],[122.8032,-4.1503],[122.7997,-4.1561],[122.7932,-4.1519],[122.7896,-4.1536],[122.7746,-4.1516],[122.7661,-4.1571],[122.7599,-4.1541],[122.7561,-4.1569],[122.7489,-4.1527],[122.7502,-4.1485],[122.746,-4.1424],[122.7424,-4.1444],[122.7365,-4.1422],[122.7351,-4.1486],[122.727,-4.1457],[122.7319,-4.1412],[122.7287,-4.1375],[122.7255,-4.1422],[122.7211,-4.1408],[122.7198,-4.1325],[122.715,-4.1313],[122.7121,-4.1378],[122.7021,-4.134],[122.6976,-4.1355],[122.7011,-4.1411],[122.704,-4.1414],[122.7083,-4.1459],[122.7069,-4.1506],[122.7095,-4.1565],[122.7138,-4.1581],[122.7146,-4.1626],[122.7113,-4.165],[122.7013,-4.1585],[122.6953,-4.1567],[122.6804,-4.1591],[122.6774,-4.1558],[122.6731,-4.1469],[122.6687,-4.1445],[122.6679,-4.1405],[122.6631,-4.1331],[122.6689,-4.1271],[122.6644,-4.1264],[122.6629,-4.1174],[122.6647,-4.1],[122.6609,-4.0956],[122.6594,-4.0876],[122.6573,-4.0844],[122.6527,-4.0864],[122.6509,-4.0834],[122.651,-4.0721],[122.6522,-4.0642],[122.6492,-4.0579],[122.6546,-4.0555],[122.6567,-4.048],[122.6615,-4.0451],[122.6648,-4.048],[122.6699,-4.0422],[122.6726,-4.0366],[122.666,-4.036],[122.6652,-4.0295],[122.6604,-4.0204],[122.662,-4.0162],[122.659,-4.0125],[122.6588,-4.0079],[122.6511,-4.0027],[122.6478,-4.0072],[122.6361,-4.0185],[122.6182,-4.0239],[122.6145,-4.0283],[122.601,-4.0634],[122.5963,-4.0764],[122.5892,-4.084],[122.5805,-4.0839],[122.5747,-4.0799],[122.5751,-4.0705],[122.5716,-4.0692],[122.5507,-4.0768],[122.5487,-4.0766],[122.532,-4.0858],[122.5279,-4.0913],[122.5109,-4.0856],[122.5067,-4.0824],[122.5141,-4.0681],[122.5,-4.0713],[122.4871,-4.0522],[122.4816,-4.0544],[122.4756,-4.044],[122.4701,-4.0323],[122.4629,-4.0275],[122.4486,-4.0241],[122.4405,-4.0183],[122.4404,-4.0081]]}},{"type":"Feature","properties":{"mhid":"1332:438","alt_name":"KABUPATEN BOMBANA","latitude":-4.6257,"longitude":121.81641,"sample_value":94},"geometry":{"type":"LineString","coordinates":[[122.0586,-5.385],[122.0619,-5.3796],[122.0639,-5.3668],[122.0594,-5.3641],[122.0576,-5.3676],[122.0546,-5.3803],[122.0586,-5.385]]}},{"type":"Feature","properties":{"mhid":"1332:438","alt_name":"KABUPATEN BOMBANA","latitude":-4.6257,"longitude":121.81641,"sample_value":94},"geometry":{"type":"LineString","coordinates":[[121.8431,-5.3564],[121.844,-5.353],[121.8419,-5.3481],[121.8371,-5.345],[121.835,-5.3495],[121.8402,-5.3558],[121.8431,-5.3564]]}},{"type":"Feature","properties":{"mhid":"1332:438","alt_name":"KABUPATEN BOMBANA","latitude":-4.6257,"longitude":121.81641,"sample_value":94},"geometry":{"type":"LineString","coordinates":[[122.0667,-5.3041],[122.0696,-5.3005],[122.069,-5.2948],[122.0724,-5.2921],[122.0711,-5.2862],[122.0657,-5.2903],[122.0601,-5.2965],[122.0586,-5.3044],[122.0631,-5.3076],[122.0667,-5.3041]]}},{"type":"Feature","properties":{"mhid":"1332:438","alt_name":"KABUPATEN BOMBANA","latitude":-4.6257,"longitude":121.81641,"sample_value":94},"geometry":{"type":"LineString","coordinates":[[121.8195,-5.1582],[121.8142,-5.1541],[121.8125,-5.1578],[121.8148,-5.1617],[121.8195,-5.1582]]}},{"type":"Feature","properties":{"mhid":"1332:438","alt_name":"KABUPATEN BOMBANA","latitude":-4.6257,"longitude":121.81641,"sample_value":94},"geometry":{"type":"LineString","coordinates":[[121.8197,-5.1405],[121.8173,-5.1463],[121.8223,-5.147],[121.8197,-5.1405]]}},{"type":"Feature","properties":{"mhid":"1332:438","alt_name":"KABUPATEN BOMBANA","latitude":-4.6257,"longitude":121.81641,"sample_value":94},"geometry":{"type":"LineString","coordinates":[[121.8366,-5.1477],[121.8437,-5.1357],[121.8425,-5.1291],[121.8403,-5.1281],[121.8385,-5.1208],[121.8344,-5.1208],[121.8306,-5.13],[121.8255,-5.1373],[121.8237,-5.1452],[121.8238,-5.1523],[121.836,-5.1515],[121.8366,-5.1477]]}},{"type":"Feature","properties":{"mhid":"1332:438","alt_name":"KABUPATEN BOMBANA","latitude":-4.6257,"longitude":121.81641,"sample_value":94},"geometry":{"type":"LineString","coordinates":[[122.0446,-5.4013],[122.0451,-5.399],[122.0433,-5.3837],[122.0442,-5.3747],[122.0411,-5.3706],[122.037,-5.3696],[122.0396,-5.3622],[122.0377,-5.3566],[122.0377,-5.3506],[122.0347,-5.3497],[122.0331,-5.3449],[122.0377,-5.3371],[122.0356,-5.3323],[122.0403,-5.3244],[122.0509,-5.3159],[122.0506,-5.3065],[122.0519,-5.3027],[122.0511,-5.2901],[122.0486,-5.2838],[122.0511,-5.2746],[122.0507,-5.2653],[122.0428,-5.259],[122.0436,-5.2532],[122.0327,-5.2414],[122.0403,-5.241],[122.0486,-5.2444],[122.0503,-5.2402],[122.0612,-5.2356],[122.0725,-5.2339],[122.0725,-5.231],[122.0671,-5.228],[122.0629,-5.215],[122.0629,-5.2083],[122.0583,-5.2041],[122.0541,-5.1974],[122.0575,-5.1865],[122.0496,-5.1814],[122.0496,-5.1776],[122.0454,-5.1747],[122.0421,-5.1696],[122.0429,-5.1654],[122.0349,-5.1604],[122.0358,-5.1537],[122.0337,-5.1495],[122.022,-5.1507],[122.0207,-5.1549],[122.0151,-5.1557],[122.0094,-5.1505],[122.0099,-5.1609],[122.0128,-5.1603],[122.0168,-5.1644],[122.0151,-5.1672],[122.0088,-5.1678],[121.999,-5.162],[121.9938,-5.1603],[121.9892,-5.1545],[121.9898,-5.1493],[121.9869,-5.1453],[121.9881,-5.1413],[121.9829,-5.1366],[121.9824,-5.1314],[121.9852,-5.1291],[121.9812,-5.1245],[121.9755,-5.1228],[121.9778,-5.1113],[121.9772,-5.1026],[121.983,-5.0968],[121.9842,-5.0905],[121.979,-5.0888],[121.979,-5.083],[121.9744,-5.079],[121.975,-5.0703],[121.9669,-5.0622],[121.9566,-5.0599],[121.9531,-5.0628],[121.9457,-5.0639],[121.9434,-5.0685],[121.937,-5.0743],[121.9387,-5.0772],[121.933,-5.0824],[121.9324,-5.0922],[121.9376,-5.1048],[121.937,-5.1106],[121.9301,-5.1097],[121.9256,-5.1024],[121.9158,-5.0971],[121.9128,-5.0984],[121.9094,-5.0934],[121.9033,-5.0901],[121.8954,-5.0894],[121.8938,-5.0787],[121.8951,-5.0723],[121.9,-5.0683],[121.8985,-5.0585],[121.8927,-5.0557],[121.8884,-5.056],[121.8758,-5.0652],[121.8716,-5.0716],[121.8624,-5.0762],[121.8557,-5.0839],[121.8495,-5.0961],[121.8547,-5.0992],[121.8568,-5.1065],[121.8599,-5.1047],[121.8645,-5.1059],[121.8712,-5.105],[121.8727,-5.109],[121.8681,-5.1124],[121.8684,-5.1206],[121.8645,-5.1191],[121.8596,-5.1093],[121.8532,-5.1072],[121.8515,-5.0972],[121.8452,-5.1026],[121.8397,-5.1103],[121.8398,-5.1156],[121.8447,-5.1218],[121.8534,-5.1264],[121.8559,-5.1246],[121.8635,-5.128],[121.866,-5.1307],[121.8678,-5.1387],[121.8724,-5.1375],[121.8797,-5.1433],[121.8809,-5.1553],[121.8726,-5.1513],[121.8687,-5.158],[121.8626,-5.1568],[121.8595,-5.1592],[121.8511,-5.1483],[121.8409,-5.1464],[121.8413,-5.1503],[121.8284,-5.1621],[121.8227,-5.1689],[121.8204,-5.1771],[121.8238,-5.186],[121.8277,-5.1898],[121.8333,-5.1873],[121.8381,-5.1914],[121.8317,-5.1951],[121.8317,-5.2023],[121.8133,-5.203],[121.8079,-5.2068],[121.8122,-5.2159],[121.8124,-5.2271],[121.8081,-5.2361],[121.8074,-5.2448],[121.803,-5.2548],[121.7948,-5.2622],[121.7933,-5.2738],[121.7944,-5.2775],[121.8027,-5.285],[121.8072,-5.2863],[121.8147,-5.2923],[121.8222,-5.2933],[121.8235,-5.2976],[121.8215,-5.3048],[121.8228,-5.3116],[121.8271,-5.3165],[121.8303,-5.3237],[121.8378,-5.3349],[121.8417,-5.3362],[121.8453,-5.3444],[121.8547,-5.3506],[121.8596,-5.3607],[121.8576,-5.3653],[121.8635,-5.3692],[121.87,-5.3784],[121.8729,-5.3853],[121.8908,-5.3951],[121.8908,-5.399],[121.897,-5.3994],[121.9026,-5.4036],[121.9107,-5.4046],[121.916,-5.401],[121.9212,-5.4014],[121.9221,-5.4056],[121.9208,-5.4128],[121.9218,-5.42],[121.927,-5.4256],[121.9325,-5.4285],[121.9404,-5.4393],[121.9462,-5.4547],[121.9446,-5.456],[121.9426,-5.4668],[121.9452,-5.4679],[121.9462,-5.4736],[121.9501,-5.4675],[121.9527,-5.4564],[121.9528,-5.4175],[121.9549,-5.4047],[121.979,-5.4047],[122.009,-5.4031],[122.009,-5.4021],[122.0266,-5.4013],[122.0446,-5.4013]]}},{"type":"Feature","properties":{"mhid":"1332:438","alt_name":"KABUPATEN BOMBANA","latitude":-4.6257,"longitude":121.81641,"sample_value":94},"geometry":{"type":"LineString","coordinates":[[122.0509,-4.8804],[122.0482,-4.8864],[122.0513,-4.8891],[122.055,-4.8829],[122.0509,-4.8804]]}},{"type":"Feature","properties":{"mhid":"1332:438","alt_name":"KABUPATEN BOMBANA","latitude":-4.6257,"longitude":121.81641,"sample_value":94},"geometry":{"type":"LineString","coordinates":[[122.1403,-4.8171],[122.1322,-4.8172],[122.1281,-4.8207],[122.1207,-4.8201],[122.1206,-4.8321],[122.1243,-4.8285],[122.1359,-4.8271],[122.1359,-4.8206],[122.1403,-4.8171]]}},{"type":"Feature","properties":{"mhid":"1332:438","alt_name":"KABUPATEN BOMBANA","latitude":-4.6257,"longitude":121.81641,"sample_value":94},"geometry":{"type":"LineString","coordinates":[[122.151,-4.8085],[122.1472,-4.8108],[122.1459,-4.8172],[122.1523,-4.8149],[122.151,-4.8085]]}},{"type":"Feature","properties":{"mhid":"1332:438","alt_name":"KABUPATEN BOMBANA","latitude":-4.6257,"longitude":121.81641,"sample_value":94},"geometry":{"type":"LineString","coordinates":[[121.9077,-4.3779],[121.8822,-4.3775],[121.8479,-4.3969],[121.8065,-4.4049],[121.8038,-4.4156],[121.8055,-4.4207],[121.7979,-4.4245],[121.7976,-4.4308],[121.7928,-4.4314],[121.7937,-4.4382],[121.7886,-4.4392],[121.789,-4.4444],[121.7872,-4.4488],[121.7828,-4.4498],[121.7676,-4.4655],[121.7642,-4.4642],[121.7595,-4.4675],[121.7566,-4.4661],[121.7502,-4.4714],[121.7531,-4.4761],[121.7469,-4.4843],[121.7372,-4.487],[121.7371,-4.4915],[121.731,-4.4929],[121.7286,-4.4912],[121.7238,-4.4941],[121.7255,-4.4971],[121.7204,-4.4999],[121.7191,-4.5141],[121.7236,-4.5134],[121.7235,-4.5235],[121.7199,-4.523],[121.7172,-4.5266],[121.7103,-4.5269],[121.71,-4.5329],[121.699,-4.5397],[121.6957,-4.545],[121.6904,-4.545],[121.6838,-4.5496],[121.6812,-4.5479],[121.6772,-4.5522],[121.6699,-4.5532],[121.6629,-4.5582],[121.6609,-4.5652],[121.656,-4.5642],[121.6497,-4.5661],[121.637,-4.5655],[121.6343,-4.563],[121.6269,-4.561],[121.62,-4.5631],[121.6135,-4.5726],[121.6042,-4.5709],[121.6,-4.5721],[121.5947,-4.5769],[121.5878,-4.5758],[121.5812,-4.5778],[121.5783,-4.5706],[121.5725,-4.5769],[121.5659,-4.5777],[121.5624,-4.5712],[121.5536,-4.5716],[121.5435,-4.5746],[121.5402,-4.5724],[121.5276,-4.5766],[121.5292,-4.5809],[121.5202,-4.5816],[121.5096,-4.5866],[121.5035,-4.5837],[121.4978,-4.5838],[121.494,-4.5897],[121.482,-4.5936],[121.4786,-4.591],[121.4707,-4.5912],[121.4715,-4.6066],[121.4676,-4.6076],[121.4629,-4.6123],[121.4649,-4.6196],[121.4695,-4.6196],[121.4688,-4.6395],[121.4668,-4.6428],[121.4694,-4.6568],[121.4684,-4.6734],[121.4651,-4.6827],[121.4694,-4.6916],[121.481,-4.6917],[121.4886,-4.696],[121.4935,-4.696],[121.4978,-4.7023],[121.4928,-4.7023],[121.4955,-4.7136],[121.5018,-4.714],[121.508,-4.7123],[121.5064,-4.718],[121.508,-4.721],[121.5074,-4.7273],[121.505,-4.7326],[121.5198,-4.7396],[121.5198,-4.7444],[121.5267,-4.7532],[121.533,-4.7538],[121.536,-4.7571],[121.5378,-4.7638],[121.549,-4.7735],[121.5586,-4.7735],[121.567,-4.7795],[121.5721,-4.7789],[121.5778,-4.7847],[121.5869,-4.7898],[121.6013,-4.7884],[121.6164,-4.7956],[121.62,-4.7948],[121.6194,-4.7878],[121.6225,-4.7778],[121.6293,-4.778],[121.6303,-4.7835],[121.6271,-4.7887],[121.6296,-4.7956],[121.6353,-4.799],[121.6305,-4.8019],[121.6385,-4.8124],[121.6484,-4.8075],[121.6637,-4.8113],[121.6642,-4.8193],[121.6731,-4.8319],[121.6781,-4.8366],[121.6774,-4.8441],[121.6837,-4.8515],[121.6887,-4.8501],[121.6991,-4.8557],[121.7095,-4.855],[121.716,-4.8525],[121.725,-4.8466],[121.7345,-4.837],[121.741,-4.8372],[121.7479,-4.84],[121.7499,-4.8428],[121.7592,-4.8442],[121.7679,-4.8382],[121.779,-4.8379],[121.7805,-4.8437],[121.7854,-4.8441],[121.7885,-4.8372],[121.8015,-4.8343],[121.8156,-4.8359],[121.8223,-4.8385],[121.8315,-4.8473],[121.835,-4.8533],[121.8506,-4.8597],[121.8618,-4.8682],[121.8654,-4.8677],[121.8737,-4.8739],[121.8956,-4.8808],[121.9045,-4.8825],[121.9158,-4.8805],[121.9269,-4.8826],[121.9341,-4.8825],[121.9415,-4.8874],[121.9551,-4.8882],[121.966,-4.8916],[121.9722,-4.8916],[121.9773,-4.8945],[121.9783,-4.8981],[121.9837,-4.9015],[121.9867,-4.8969],[121.9918,-4.8934],[121.9973,-4.892],[122.0017,-4.886],[122.0064,-4.886],[122.0054,-4.8922],[122.0028,-4.8983],[122.0071,-4.8981],[122.0113,-4.8938],[122.0201,-4.893],[122.023,-4.8887],[122.02,-4.8811],[122.0243,-4.8768],[122.0253,-4.8709],[122.0298,-4.87],[122.0332,-4.8737],[122.0432,-4.8743],[122.0443,-4.8671],[122.0543,-4.8586],[122.066,-4.853],[122.0675,-4.8498],[122.0741,-4.8517],[122.0738,-4.8447],[122.0792,-4.8371],[122.0887,-4.8301],[122.0915,-4.8252],[122.1021,-4.8235],[122.1017,-4.8211],[122.1083,-4.8179],[122.1071,-4.8118],[122.1028,-4.8132],[122.0939,-4.8082],[122.0944,-4.8008],[122.0914,-4.7971],[122.0855,-4.7964],[122.076,-4.7921],[122.0685,-4.786],[122.0677,-4.7812],[122.0643,-4.7762],[122.0584,-4.7752],[122.0497,-4.7708],[122.0444,-4.7639],[122.0407,-4.7561],[122.0404,-4.7456],[122.0376,-4.7355],[122.0342,-4.7284],[122.0317,-4.718],[122.0327,-4.7139],[122.0326,-4.695],[122.0312,-4.6923],[122.0332,-4.6815],[122.0341,-4.6691],[122.0326,-4.6546],[122.0382,-4.6509],[122.0456,-4.6385],[122.0515,-4.6265],[122.0496,-4.6213],[122.0551,-4.6191],[122.0608,-4.613],[122.0676,-4.5949],[122.0666,-4.5873],[122.071,-4.5822],[122.0694,-4.5783],[122.0725,-4.5762],[122.077,-4.5668],[122.0837,-4.5559],[122.0844,-4.5505],[122.0876,-4.5478],[122.0895,-4.5426],[122.0966,-4.5432],[122.1065,-4.5403],[122.1081,-4.5341],[122.1038,-4.5282],[122.1067,-4.5241],[122.1058,-4.5155],[122.1072,-4.5098],[122.0999,-4.5058],[122.0938,-4.5002],[122.0931,-4.4953],[122.0827,-4.4961],[122.0782,-4.4935],[122.0674,-4.4931],[122.0656,-4.4909],[122.0597,-4.4924],[122.0574,-4.4887],[122.0515,-4.4875],[122.0482,-4.4842],[122.0511,-4.4778],[122.05,-4.4726],[122.0338,-4.4583],[122.0319,-4.4551],[122.0195,-4.4436],[122.0116,-4.4386],[122,-4.4283],[121.9577,-4.4048],[121.9077,-4.3779]]}},{"type":"Feature","properties":{"mhid":"1332:439","alt_name":"KABUPATEN WAKATOBI","latitude":-5.31934,"longitude":123.5948,"sample_value":709},"geometry":{"type":"LineString","coordinates":[[124.6108,-6.1324],[124.6207,-6.12],[124.6213,-6.1131],[124.6157,-6.1107],[124.6081,-6.1164],[124.6056,-6.1293],[124.6108,-6.1324]]}},{"type":"Feature","properties":{"mhid":"1332:439","alt_name":"KABUPATEN WAKATOBI","latitude":-5.31934,"longitude":123.5948,"sample_value":709},"geometry":{"type":"LineString","coordinates":[[123.994,-5.876],[123.9896,-5.8777],[123.9866,-5.8856],[123.9802,-5.8963],[123.9795,-5.902],[123.9818,-5.9137],[123.974,-5.9256],[123.9729,-5.9361],[123.9825,-5.9493],[123.9836,-5.9571],[123.989,-5.9674],[124.0109,-5.9747],[124.0207,-5.9792],[124.0355,-5.9784],[124.0456,-5.9764],[124.051,-5.9768],[124.0581,-5.98],[124.0617,-5.9879],[124.0608,-6.0064],[124.059,-6.0109],[124.0515,-6.0214],[124.0514,-6.0284],[124.0552,-6.04],[124.0598,-6.0414],[124.073,-6.0358],[124.0777,-6.0357],[124.0852,-6.0308],[124.089,-6.0264],[124.0915,-6.0205],[124.0911,-6.0117],[124.0882,-6.0009],[124.0744,-5.9755],[124.0682,-5.956],[124.0573,-5.9308],[124.051,-5.9118],[124.0466,-5.9053],[124.0389,-5.9018],[124.0232,-5.8892],[124.0143,-5.887],[123.9976,-5.8767],[123.994,-5.876]]}},{"type":"Feature","properties":{"mhid":"1332:439","alt_name":"KABUPATEN WAKATOBI","latitude":-5.31934,"longitude":123.5948,"sample_value":709},"geometry":{"type":"LineString","coordinates":[[123.9094,-5.802],[123.905,-5.8053],[123.9183,-5.8154],[123.9219,-5.8171],[123.9369,-5.8182],[123.941,-5.8231],[123.9462,-5.8215],[123.946,-5.8149],[123.9496,-5.8069],[123.9461,-5.8055],[123.9397,-5.8071],[123.9302,-5.8051],[123.9261,-5.8054],[123.9155,-5.8024],[123.9094,-5.802]]}},{"type":"Feature","properties":{"mhid":"1332:439","alt_name":"KABUPATEN WAKATOBI","latitude":-5.31934,"longitude":123.5948,"sample_value":709},"geometry":{"type":"LineString","coordinates":[[123.9109,-5.7752],[123.914,-5.7707],[123.906,-5.7621],[123.9012,-5.76],[123.8977,-5.7612],[123.8958,-5.7697],[123.8985,-5.7765],[123.9095,-5.7773],[123.9109,-5.7752]]}},{"type":"Feature","properties":{"mhid":"1332:439","alt_name":"KABUPATEN WAKATOBI","latitude":-5.31934,"longitude":123.5948,"sample_value":709},"geometry":{"type":"LineString","coordinates":[[123.8785,-5.7696],[123.8762,-5.7675],[123.8757,-5.7601],[123.8713,-5.7518],[123.8695,-5.7521],[123.8711,-5.765],[123.868,-5.7722],[123.8698,-5.774],[123.8785,-5.7696]]}},{"type":"Feature","properties":{"mhid":"1332:439","alt_name":"KABUPATEN WAKATOBI","latitude":-5.31934,"longitude":123.5948,"sample_value":709},"geometry":{"type":"LineString","coordinates":[[123.9131,-5.7194],[123.9081,-5.7183],[123.898,-5.7272],[123.8954,-5.7379],[123.8971,-5.743],[123.901,-5.7476],[123.903,-5.7532],[123.907,-5.7548],[123.91,-5.7623],[123.9217,-5.7731],[123.9305,-5.7772],[123.9513,-5.7817],[123.9636,-5.7801],[123.9759,-5.786],[123.986,-5.7868],[123.9911,-5.7819],[123.9941,-5.771],[124.0069,-5.763],[124.009,-5.7583],[124.0058,-5.7555],[123.9941,-5.753],[123.9888,-5.7502],[123.9783,-5.7422],[123.9667,-5.7307],[123.9585,-5.7268],[123.9396,-5.7216],[123.933,-5.7212],[123.9236,-5.7188],[123.9131,-5.7194]]}},{"type":"Feature","properties":{"mhid":"1332:439","alt_name":"KABUPATEN WAKATOBI","latitude":-5.31934,"longitude":123.5948,"sample_value":709},"geometry":{"type":"LineString","coordinates":[[124.0663,-5.6352],[124.0592,-5.624],[124.0547,-5.6225],[124.0486,-5.6248],[124.0482,-5.6294],[124.0573,-5.6354],[124.0527,-5.6375],[124.0471,-5.6362],[124.0498,-5.6455],[124.0581,-5.6522],[124.0732,-5.6715],[124.0796,-5.6759],[124.0866,-5.6733],[124.0888,-5.6656],[124.087,-5.6585],[124.0791,-5.6494],[124.0729,-5.6469],[124.0663,-5.6352]]}},{"type":"Feature","properties":{"mhid":"1332:439","alt_name":"KABUPATEN WAKATOBI","latitude":-5.31934,"longitude":123.5948,"sample_value":709},"geometry":{"type":"LineString","coordinates":[[124.0136,-5.6227],[124.0118,-5.6281],[124.0171,-5.6307],[124.0251,-5.6289],[124.0304,-5.6263],[124.0278,-5.6218],[124.0225,-5.6236],[124.0136,-5.6227]]}},{"type":"Feature","properties":{"mhid":"1332:439","alt_name":"KABUPATEN WAKATOBI","latitude":-5.31934,"longitude":123.5948,"sample_value":709},"geometry":{"type":"LineString","coordinates":[[123.8183,-5.5823],[123.8184,-5.5912],[123.8199,-5.5991],[123.823,-5.5964],[123.8251,-5.5845],[123.8183,-5.5823]]}},{"type":"Feature","properties":{"mhid":"1332:439","alt_name":"KABUPATEN WAKATOBI","latitude":-5.31934,"longitude":123.5948,"sample_value":709},"geometry":{"type":"LineString","coordinates":[[123.8357,-5.5483],[123.8259,-5.5499],[123.8284,-5.5549],[123.834,-5.5578],[123.8305,-5.5612],[123.8302,-5.5701],[123.8335,-5.577],[123.8309,-5.5811],[123.8333,-5.586],[123.8385,-5.5877],[123.8453,-5.5875],[123.8538,-5.5897],[123.8649,-5.5944],[123.8728,-5.5925],[123.8777,-5.585],[123.8841,-5.5841],[123.8842,-5.5739],[123.8809,-5.5707],[123.8696,-5.5647],[123.8649,-5.5685],[123.8583,-5.5652],[123.8588,-5.5593],[123.8495,-5.5574],[123.8479,-5.5525],[123.8427,-5.5514],[123.8383,-5.5544],[123.8357,-5.5483]]}},{"type":"Feature","properties":{"mhid":"1332:439","alt_name":"KABUPATEN WAKATOBI","latitude":-5.31934,"longitude":123.5948,"sample_value":709},"geometry":{"type":"LineString","coordinates":[[123.8693,-5.5332],[123.8647,-5.5333],[123.8595,-5.54],[123.8517,-5.5451],[123.8519,-5.5527],[123.8613,-5.5569],[123.8683,-5.5549],[123.871,-5.5481],[123.8674,-5.5463],[123.8697,-5.542],[123.8712,-5.5338],[123.8693,-5.5332]]}},{"type":"Feature","properties":{"mhid":"1332:439","alt_name":"KABUPATEN WAKATOBI","latitude":-5.31934,"longitude":123.5948,"sample_value":709},"geometry":{"type":"LineString","coordinates":[[123.7108,-5.5233],[123.7151,-5.5185],[123.7155,-5.512],[123.713,-5.5076],[123.7039,-5.5066],[123.7044,-5.51],[123.6985,-5.5136],[123.695,-5.5204],[123.699,-5.5248],[123.7039,-5.5259],[123.7108,-5.5233]]}},{"type":"Feature","properties":{"mhid":"1332:439","alt_name":"KABUPATEN WAKATOBI","latitude":-5.31934,"longitude":123.5948,"sample_value":709},"geometry":{"type":"LineString","coordinates":[[123.759,-5.4874],[123.757,-5.4848],[123.752,-5.4884],[123.741,-5.4863],[123.7402,-5.489],[123.751,-5.4962],[123.755,-5.493],[123.759,-5.4974],[123.759,-5.4874]]}},{"type":"Feature","properties":{"mhid":"1332:439","alt_name":"KABUPATEN WAKATOBI","latitude":-5.31934,"longitude":123.5948,"sample_value":709},"geometry":{"type":"LineString","coordinates":[[123.7091,-5.4755],[123.7059,-5.4742],[123.6916,-5.472],[123.6921,-5.4748],[123.6984,-5.4803],[123.72,-5.5165],[123.755,-5.5436],[123.7621,-5.5526],[123.7619,-5.5585],[123.7709,-5.5666],[123.7758,-5.5783],[123.779,-5.5817],[123.7834,-5.5917],[123.7862,-5.5939],[123.7948,-5.5958],[123.803,-5.5952],[123.815,-5.6017],[123.82,-5.602],[123.818,-5.5897],[123.8136,-5.5866],[123.8105,-5.5793],[123.813,-5.5756],[123.8208,-5.5724],[123.8266,-5.5716],[123.8277,-5.568],[123.8271,-5.5594],[123.822,-5.5599],[123.812,-5.5585],[123.806,-5.5469],[123.7898,-5.5341],[123.7845,-5.5284],[123.7824,-5.5241],[123.778,-5.5209],[123.7752,-5.5142],[123.7709,-5.5108],[123.7686,-5.5047],[123.7592,-5.5021],[123.7568,-5.4974],[123.7474,-5.4959],[123.7373,-5.49],[123.7344,-5.4817],[123.726,-5.478],[123.7176,-5.4799],[123.7091,-5.4755]]}},{"type":"Feature","properties":{"mhid":"1332:439","alt_name":"KABUPATEN WAKATOBI","latitude":-5.31934,"longitude":123.5948,"sample_value":709},"geometry":{"type":"LineString","coordinates":[[123.7728,-5.4578],[123.7617,-5.4589],[123.7602,-5.4748],[123.762,-5.4769],[123.773,-5.4701],[123.7778,-5.4721],[123.7805,-5.4757],[123.7862,-5.4752],[123.7802,-5.4673],[123.7778,-5.4671],[123.7728,-5.4578]]}},{"type":"Feature","properties":{"mhid":"1332:439","alt_name":"KABUPATEN WAKATOBI","latitude":-5.31934,"longitude":123.5948,"sample_value":709},"geometry":{"type":"LineString","coordinates":[[123.6195,-5.4051],[123.6133,-5.4022],[123.6111,-5.4066],[123.5981,-5.4063],[123.5857,-5.4098],[123.588,-5.4155],[123.5996,-5.4231],[123.6102,-5.4287],[123.6202,-5.4316],[123.6294,-5.4355],[123.6384,-5.4331],[123.643,-5.4265],[123.6437,-5.4219],[123.6384,-5.418],[123.6321,-5.4165],[123.6243,-5.4084],[123.6195,-5.4051]]}},{"type":"Feature","properties":{"mhid":"1332:439","alt_name":"KABUPATEN WAKATOBI","latitude":-5.31934,"longitude":123.5948,"sample_value":709},"geometry":{"type":"LineString","coordinates":[[123.6024,-5.3999],[123.5987,-5.3925],[123.5924,-5.3933],[123.5909,-5.4014],[123.6024,-5.3999]]}},{"type":"Feature","properties":{"mhid":"1332:439","alt_name":"KABUPATEN WAKATOBI","latitude":-5.31934,"longitude":123.5948,"sample_value":709},"geometry":{"type":"LineString","coordinates":[[123.6382,-5.3936],[123.6418,-5.3855],[123.6397,-5.3838],[123.6307,-5.3872],[123.6302,-5.3919],[123.6382,-5.3936]]}},{"type":"Feature","properties":{"mhid":"1332:439","alt_name":"KABUPATEN WAKATOBI","latitude":-5.31934,"longitude":123.5948,"sample_value":709},"geometry":{"type":"LineString","coordinates":[[123.5372,-5.3492],[123.535,-5.3456],[123.529,-5.3484],[123.532,-5.3556],[123.539,-5.3524],[123.5372,-5.3492]]}},{"type":"Feature","properties":{"mhid":"1332:439","alt_name":"KABUPATEN WAKATOBI","latitude":-5.31934,"longitude":123.5948,"sample_value":709},"geometry":{"type":"LineString","coordinates":[[123.4804,-5.3303],[123.4765,-5.3268],[123.4673,-5.3256],[123.463,-5.3303],[123.4692,-5.3448],[123.4737,-5.3495],[123.4746,-5.3538],[123.48,-5.3597],[123.4889,-5.3632],[123.4957,-5.364],[123.5037,-5.3681],[123.5043,-5.3702],[123.5198,-5.3738],[123.5272,-5.3805],[123.5352,-5.3813],[123.5413,-5.3779],[123.5398,-5.3735],[123.5309,-5.3756],[123.5283,-5.3716],[123.5292,-5.3676],[123.525,-5.3631],[123.5208,-5.3626],[123.512,-5.3552],[123.5093,-5.3545],[123.4998,-5.3444],[123.5013,-5.3407],[123.4961,-5.3357],[123.4849,-5.3311],[123.4804,-5.3303]]}},{"type":"Feature","properties":{"mhid":"1332:439","alt_name":"KABUPATEN WAKATOBI","latitude":-5.31934,"longitude":123.5948,"sample_value":709},"geometry":{"type":"LineString","coordinates":[[124.3358,-5.325],[124.3294,-5.3262],[124.3348,-5.3405],[124.3475,-5.3521],[124.3533,-5.352],[124.3559,-5.3482],[124.3534,-5.3378],[124.3408,-5.3268],[124.3358,-5.325]]}},{"type":"Feature","properties":{"mhid":"1332:439","alt_name":"KABUPATEN WAKATOBI","latitude":-5.31934,"longitude":123.5948,"sample_value":709},"geometry":{"type":"LineString","coordinates":[[123.6629,-5.3076],[123.6657,-5.3061],[123.667,-5.2993],[123.6653,-5.2899],[123.6605,-5.29],[123.6608,-5.3064],[123.6629,-5.3076]]}},{"type":"Feature","properties":{"mhid":"1332:439","alt_name":"KABUPATEN WAKATOBI","latitude":-5.31934,"longitude":123.5948,"sample_value":709},"geometry":{"type":"LineString","coordinates":[[123.5755,-5.2472],[123.5714,-5.2467],[123.5634,-5.2489],[123.5565,-5.2493],[123.544,-5.2475],[123.532,-5.2478],[123.5263,-5.2511],[123.521,-5.2569],[123.5192,-5.2675],[123.5274,-5.2925],[123.5274,-5.3028],[123.5296,-5.317],[123.5378,-5.328],[123.5404,-5.3419],[123.5463,-5.3509],[123.5517,-5.3538],[123.559,-5.3596],[123.5711,-5.3718],[123.5814,-5.3835],[123.5937,-5.3863],[123.5964,-5.3883],[123.6057,-5.3872],[123.6104,-5.3815],[123.6162,-5.3853],[123.6197,-5.3848],[123.631,-5.3766],[123.6376,-5.3741],[123.6421,-5.369],[123.6426,-5.3648],[123.6386,-5.3522],[123.6385,-5.3398],[123.6454,-5.322],[123.6478,-5.3126],[123.6494,-5.2966],[123.6447,-5.2878],[123.6376,-5.2822],[123.6285,-5.2724],[123.609,-5.2627],[123.5886,-5.2489],[123.5835,-5.247],[123.5755,-5.2472]]}},{"type":"Feature","properties":{"mhid":"1332:440","alt_name":"KABUPATEN KOLAKA UTARA","latitude":-3.10452,"longitude":121.12427,"sample_value":95},"geometry":{"type":"LineString","coordinates":[[121.3578,-2.9747],[121.3526,-2.9726],[121.3468,-2.9665],[121.3406,-2.9532],[121.3375,-2.9485],[121.3295,-2.9399],[121.329,-2.9352],[121.3369,-2.925],[121.3522,-2.9114],[121.3577,-2.9039],[121.3577,-2.8993],[121.3551,-2.89],[121.35,-2.8781],[121.3438,-2.8674],[121.3391,-2.8557],[121.3364,-2.8441],[121.3326,-2.834],[121.3192,-2.8083],[121.3093,-2.8057],[121.3016,-2.8057],[121.2933,-2.8084],[121.2835,-2.8172],[121.2737,-2.8204],[121.2557,-2.8235],[121.2413,-2.8253],[121.2352,-2.8288],[121.2308,-2.8372],[121.2332,-2.8419],[121.2301,-2.8446],[121.2241,-2.8447],[121.222,-2.857],[121.2179,-2.8539],[121.2115,-2.8576],[121.2093,-2.8538],[121.2024,-2.8573],[121.1948,-2.8518],[121.1858,-2.8372],[121.1809,-2.8355],[121.177,-2.8306],[121.1727,-2.8181],[121.1663,-2.8148],[121.154,-2.8152],[121.145,-2.8082],[121.133,-2.7978],[121.1214,-2.7913],[121.108,-2.7867],[121.0841,-2.7798],[121.0791,-2.7796],[121.0687,-2.7875],[121.0614,-2.787],[121.0541,-2.7914],[121.0448,-2.7926],[121.0371,-2.7915],[121.0295,-2.7962],[121.028,-2.807],[121.0194,-2.8198],[121.0169,-2.8213],[121,-2.8262],[120.9883,-2.8313],[120.9872,-2.8399],[120.9891,-2.8455],[120.9927,-2.8484],[120.9954,-2.8569],[120.9969,-2.8684],[121.0007,-2.87],[121.0036,-2.8665],[121.0112,-2.8702],[121.009,-2.8631],[121.0043,-2.8614],[121.0009,-2.8546],[120.997,-2.8534],[120.9937,-2.8486],[120.9917,-2.8408],[120.9946,-2.8363],[121.0011,-2.8389],[121.0083,-2.837],[121.0088,-2.8421],[121.0155,-2.8377],[121.0212,-2.8409],[121.0205,-2.8464],[121.0246,-2.8457],[121.0267,-2.8497],[121.0323,-2.8409],[121.0327,-2.8359],[121.0356,-2.8316],[121.036,-2.8266],[121.0329,-2.8233],[121.0324,-2.8157],[121.0369,-2.8072],[121.0399,-2.8223],[121.0439,-2.8242],[121.0457,-2.8305],[121.0437,-2.8333],[121.0437,-2.8482],[121.0452,-2.8523],[121.047,-2.8675],[121.0532,-2.8681],[121.0612,-2.8762],[121.0669,-2.8729],[121.0669,-2.8667],[121.0641,-2.8597],[121.0666,-2.8535],[121.0747,-2.8562],[121.0788,-2.8664],[121.0759,-2.8778],[121.0755,-2.887],[121.0722,-2.8904],[121.0746,-2.8968],[121.0802,-2.8964],[121.0787,-2.906],[121.0871,-2.9171],[121.0906,-2.9235],[121.0897,-2.9276],[121.0854,-2.93],[121.0862,-2.945],[121.0816,-2.9553],[121.082,-2.9602],[121.0853,-2.9643],[121.081,-2.9717],[121.0743,-2.9648],[121.0669,-2.9627],[121.0643,-2.9649],[121.0683,-2.9793],[121.0742,-2.981],[121.0743,-2.9879],[121.0774,-2.9948],[121.085,-2.9984],[121.0903,-2.9986],[121.0867,-3.0049],[121.0849,-3.0126],[121.079,-3.0081],[121.0746,-3.0104],[121.077,-3.0148],[121.0761,-3.0244],[121.0739,-3.0317],[121.0679,-3.0327],[121.0614,-3.0296],[121.0565,-3.0221],[121.0515,-3.0264],[121.0502,-3.0342],[121.0432,-3.0364],[121.0442,-3.0494],[121.0493,-3.0548],[121.056,-3.0573],[121.0594,-3.0694],[121.056,-3.0764],[121.0578,-3.0894],[121.0561,-3.1001],[121.053,-3.1015],[121.0504,-3.1083],[121.0564,-3.1207],[121.061,-3.1447],[121.0556,-3.1518],[121.0568,-3.1648],[121.0558,-3.1681],[121.0559,-3.1845],[121.0568,-3.1883],[121.0607,-3.1922],[121.0605,-3.1954],[121.0691,-3.2049],[121.0626,-3.2076],[121.0504,-3.1991],[121.0332,-3.2066],[121.03,-3.2123],[121.0299,-3.217],[121.0256,-3.2214],[121.0222,-3.2297],[121.0204,-3.2447],[121.0134,-3.2476],[121.0074,-3.2473],[121.0015,-3.2509],[120.9881,-3.2562],[120.9839,-3.2564],[120.9756,-3.2601],[120.9703,-3.2675],[120.968,-3.278],[120.9646,-3.2835],[120.9568,-3.2918],[120.9549,-3.298],[120.9585,-3.303],[120.9568,-3.3119],[120.9578,-3.3269],[120.9564,-3.3305],[120.9494,-3.3316],[120.937,-3.3355],[120.9306,-3.3419],[120.9297,-3.3457],[120.9248,-3.351],[120.9194,-3.3538],[120.913,-3.3699],[120.8943,-3.3873],[120.8939,-3.3918],[120.8958,-3.4032],[120.8887,-3.4096],[120.8887,-3.4125],[120.8806,-3.4177],[120.8748,-3.4189],[120.8657,-3.4282],[120.8645,-3.4389],[120.8672,-3.4453],[120.8674,-3.4501],[120.8706,-3.4563],[120.8692,-3.4633],[120.8713,-3.4725],[120.8709,-3.477],[120.8733,-3.4852],[120.8731,-3.494],[120.8779,-3.5061],[120.876,-3.5103],[120.8813,-3.5202],[120.8802,-3.5309],[120.8836,-3.5385],[120.8882,-3.5433],[120.8929,-3.5444],[120.9061,-3.5591],[120.9088,-3.5684],[120.8984,-3.566],[120.9032,-3.5717],[120.905,-3.5764],[120.9175,-3.5825],[120.9242,-3.5929],[120.9362,-3.5992],[120.9355,-3.6046],[120.9421,-3.6069],[120.9457,-3.6128],[120.9437,-3.6196],[120.9479,-3.6227],[120.9559,-3.6239],[120.9626,-3.6281],[120.9714,-3.6355],[120.9751,-3.6402],[120.9813,-3.6431],[120.9926,-3.6542],[121.0063,-3.6756],[121.0168,-3.6823],[121.0235,-3.683],[121.0235,-3.6865],[121.0307,-3.6927],[121.0358,-3.6931],[121.0411,-3.6969],[121.0494,-3.6964],[121.0576,-3.701],[121.063,-3.7014],[121.0684,-3.7049],[121.0714,-3.7119],[121.0825,-3.7147],[121.089,-3.7222],[121.0919,-3.7298],[121.0967,-3.7327],[121.1,-3.7448],[121.1063,-3.7461],[121.1141,-3.7422],[121.1637,-3.7019],[121.1857,-3.691],[121.223,-3.6752],[121.2315,-3.6692],[121.2377,-3.6667],[121.2528,-3.6585],[121.2497,-3.6534],[121.2459,-3.6348],[121.2437,-3.6179],[121.2372,-3.6041],[121.2331,-3.6008],[121.2224,-3.5966],[121.2163,-3.5888],[121.2118,-3.5791],[121.2019,-3.5701],[121.1936,-3.569],[121.1861,-3.5633],[121.1825,-3.5569],[121.1777,-3.5517],[121.1743,-3.5435],[121.1712,-3.5413],[121.164,-3.5404],[121.1571,-3.5361],[121.1549,-3.5311],[121.1549,-3.5261],[121.1516,-3.5221],[121.1542,-3.516],[121.1503,-3.5097],[121.1506,-3.5053],[121.1439,-3.505],[121.1374,-3.5024],[121.1276,-3.4945],[121.1223,-3.489],[121.1215,-3.4852],[121.1266,-3.4807],[121.1225,-3.4707],[121.1241,-3.4677],[121.1318,-3.4686],[121.1334,-3.4635],[121.1371,-3.4602],[121.1447,-3.4598],[121.1473,-3.455],[121.1497,-3.4456],[121.1535,-3.442],[121.1552,-3.4361],[121.1345,-3.4218],[121.1326,-3.4162],[121.123,-3.411],[121.1295,-3.4001],[121.1335,-3.3991],[121.1332,-3.3944],[121.1356,-3.3889],[121.1321,-3.3835],[121.1316,-3.3789],[121.1341,-3.3658],[121.1421,-3.3653],[121.1428,-3.3595],[121.1511,-3.3441],[121.1578,-3.3397],[121.1575,-3.3314],[121.152,-3.3286],[121.1584,-3.3246],[121.1579,-3.3188],[121.1591,-3.3047],[121.1576,-3.2975],[121.1607,-3.2926],[121.1697,-3.2966],[121.1746,-3.2928],[121.1858,-3.2745],[121.1918,-3.2732],[121.1918,-3.2704],[121.221,-3.2545],[121.2202,-3.2457],[121.2233,-3.2378],[121.2236,-3.2331],[121.2279,-3.2281],[121.2533,-3.2254],[121.266,-3.2252],[121.2747,-3.2261],[121.2785,-3.2311],[121.2804,-3.2374],[121.2829,-3.2526],[121.2854,-3.2621],[121.2923,-3.2792],[121.3023,-3.3001],[121.3105,-3.3108],[121.318,-3.3222],[121.3293,-3.3361],[121.3374,-3.3513],[121.3456,-3.3615],[121.355,-3.3691],[121.3613,-3.3773],[121.3789,-3.3868],[121.3883,-3.3894],[121.411,-3.39],[121.4311,-3.3894],[121.4618,-3.3863],[121.441,-3.3509],[121.4299,-3.3334],[121.4278,-3.3265],[121.4308,-3.2978],[121.4313,-3.2733],[121.4302,-3.2479],[121.4356,-3.2204],[121.4368,-3.2032],[121.4389,-3.1937],[121.4401,-3.1776],[121.442,-3.1684],[121.4367,-3.1587],[121.4329,-3.1556],[121.4212,-3.1495],[121.4164,-3.1421],[121.4139,-3.1258],[121.4118,-3.1194],[121.412,-3.1097],[121.4093,-3.1054],[121.4024,-3.1044],[121.3927,-3.1012],[121.3885,-3.0976],[121.3889,-3.0859],[121.3817,-3.0709],[121.3668,-3.0595],[121.3613,-3.0521],[121.3606,-3.044],[121.3629,-3.0256],[121.3687,-3.0152],[121.3699,-3.0099],[121.3578,-2.9747]]}},{"type":"Feature","properties":{"mhid":"1332:441","alt_name":"KABUPATEN BUTON UTARA","latitude":-5.01457,"longitude":122.93015,"sample_value":792},"geometry":{"type":"LineString","coordinates":[[123.0516,-4.8117],[123.0561,-4.8067],[123.0509,-4.8024],[123.0487,-4.8092],[123.0516,-4.8117]]}},{"type":"Feature","properties":{"mhid":"1332:441","alt_name":"KABUPATEN BUTON UTARA","latitude":-5.01457,"longitude":122.93015,"sample_value":792},"geometry":{"type":"LineString","coordinates":[[123.0847,-4.7967],[123.0799,-4.794],[123.0762,-4.7968],[123.0742,-4.8057],[123.0665,-4.8009],[123.0594,-4.8056],[123.0516,-4.8132],[123.0447,-4.8145],[123.0462,-4.8198],[123.0497,-4.821],[123.0594,-4.8178],[123.0562,-4.8267],[123.0504,-4.8283],[123.0473,-4.8257],[123.0398,-4.8232],[123.0346,-4.8257],[123.0342,-4.833],[123.0402,-4.8334],[123.0521,-4.8409],[123.054,-4.8472],[123.0585,-4.8481],[123.0617,-4.8421],[123.0715,-4.844],[123.075,-4.8461],[123.083,-4.8473],[123.0845,-4.8535],[123.0935,-4.8527],[123.0968,-4.8495],[123.0954,-4.8451],[123.0908,-4.8387],[123.0962,-4.8358],[123.1016,-4.8397],[123.0975,-4.848],[123.1063,-4.8493],[123.113,-4.8471],[123.1181,-4.828],[123.1186,-4.8208],[123.1173,-4.8144],[123.1181,-4.7999],[123.1159,-4.797],[123.111,-4.7988],[123.1017,-4.7982],[123.091,-4.7949],[123.0847,-4.7967]]}},{"type":"Feature","properties":{"mhid":"1332:441","alt_name":"KABUPATEN BUTON UTARA","latitude":-5.01457,"longitude":122.93015,"sample_value":792},"geometry":{"type":"LineString","coordinates":[[123.1156,-4.7884],[123.1071,-4.7895],[123.1016,-4.7933],[123.1101,-4.7966],[123.1174,-4.7931],[123.1156,-4.7884]]}},{"type":"Feature","properties":{"mhid":"1332:441","alt_name":"KABUPATEN BUTON UTARA","latitude":-5.01457,"longitude":122.93015,"sample_value":792},"geometry":{"type":"LineString","coordinates":[[123.04,-4.7705],[123.037,-4.772],[123.0397,-4.7777],[123.0455,-4.7779],[123.0448,-4.7737],[123.04,-4.7705]]}},{"type":"Feature","properties":{"mhid":"1332:441","alt_name":"KABUPATEN BUTON UTARA","latitude":-5.01457,"longitude":122.93015,"sample_value":792},"geometry":{"type":"LineString","coordinates":[[123.1198,-4.7727],[123.1153,-4.7684],[123.1114,-4.7767],[123.113,-4.7812],[123.1174,-4.7826],[123.1249,-4.7755],[123.1198,-4.7727]]}},{"type":"Feature","properties":{"mhid":"1332:441","alt_name":"KABUPATEN BUTON UTARA","latitude":-5.01457,"longitude":122.93015,"sample_value":792},"geometry":{"type":"LineString","coordinates":[[123.1398,-4.7702],[123.1354,-4.7725],[123.145,-4.7761],[123.155,-4.7753],[123.1398,-4.7702]]}},{"type":"Feature","properties":{"mhid":"1332:441","alt_name":"KABUPATEN BUTON UTARA","latitude":-5.01457,"longitude":122.93015,"sample_value":792},"geometry":{"type":"LineString","coordinates":[[123.0471,-4.7742],[123.0459,-4.7691],[123.038,-4.7596],[123.0378,-4.7678],[123.042,-4.7722],[123.0471,-4.7742]]}},{"type":"Feature","properties":{"mhid":"1332:441","alt_name":"KABUPATEN BUTON UTARA","latitude":-5.01457,"longitude":122.93015,"sample_value":792},"geometry":{"type":"LineString","coordinates":[[123.0375,-4.7669],[123.0369,-4.759],[123.0328,-4.7542],[123.0296,-4.7658],[123.0318,-4.7696],[123.0375,-4.7669]]}},{"type":"Feature","properties":{"mhid":"1332:441","alt_name":"KABUPATEN BUTON UTARA","latitude":-5.01457,"longitude":122.93015,"sample_value":792},"geometry":{"type":"LineString","coordinates":[[123.1145,-4.7426],[123.1097,-4.7433],[123.1102,-4.75],[123.1196,-4.7648],[123.1226,-4.7652],[123.1262,-4.7595],[123.1204,-4.7548],[123.1211,-4.7491],[123.1145,-4.7426]]}},{"type":"Feature","properties":{"mhid":"1332:441","alt_name":"KABUPATEN BUTON UTARA","latitude":-5.01457,"longitude":122.93015,"sample_value":792},"geometry":{"type":"LineString","coordinates":[[123.1278,-4.7281],[123.1219,-4.7409],[123.1296,-4.7465],[123.1348,-4.7453],[123.1349,-4.7357],[123.1278,-4.7281]]}},{"type":"Feature","properties":{"mhid":"1332:441","alt_name":"KABUPATEN BUTON UTARA","latitude":-5.01457,"longitude":122.93015,"sample_value":792},"geometry":{"type":"LineString","coordinates":[[123.1876,-4.6684],[123.1791,-4.6687],[123.179,-4.6742],[123.1832,-4.6753],[123.1876,-4.6684]]}},{"type":"Feature","properties":{"mhid":"1332:441","alt_name":"KABUPATEN BUTON UTARA","latitude":-5.01457,"longitude":122.93015,"sample_value":792},"geometry":{"type":"LineString","coordinates":[[123.1979,-4.6485],[123.2013,-4.6426],[123.2004,-4.6374],[123.1964,-4.6376],[123.1979,-4.6485]]}},{"type":"Feature","properties":{"mhid":"1332:441","alt_name":"KABUPATEN BUTON UTARA","latitude":-5.01457,"longitude":122.93015,"sample_value":792},"geometry":{"type":"LineString","coordinates":[[122.9489,-5.1483],[122.951,-5.1437],[122.9652,-5.1318],[122.9673,-5.1224],[122.9733,-5.1154],[122.9702,-5.0931],[122.9686,-5.0896],[122.972,-5.0868],[122.9752,-5.0711],[122.9792,-5.0605],[122.9783,-5.0544],[122.9726,-5.0478],[122.9716,-5.039],[122.9688,-5.0329],[122.9685,-5.0269],[122.9612,-5.0264],[122.9554,-5.0291],[122.9521,-5.0251],[122.9516,-5.0188],[122.9557,-5.0172],[122.9549,-5.0018],[122.958,-4.9948],[122.9636,-4.9679],[122.969,-4.9518],[122.9775,-4.9515],[122.9837,-4.9438],[122.9894,-4.9427],[123.0002,-4.9376],[123.0025,-4.9314],[123.002,-4.9256],[123.0084,-4.909],[123.0077,-4.8883],[123.006,-4.8853],[123.0068,-4.8781],[123.0047,-4.8667],[123.0025,-4.8626],[123.0036,-4.8537],[123.0002,-4.845],[122.9948,-4.837],[122.9938,-4.827],[123.0057,-4.8239],[123.0062,-4.8175],[123.0101,-4.8144],[123.0356,-4.8058],[123.04,-4.8011],[123.0366,-4.7955],[123.0368,-4.7887],[123.0332,-4.7791],[123.0324,-4.7739],[123.0253,-4.7678],[123.0283,-4.7633],[123.0306,-4.7499],[123.0327,-4.746],[123.039,-4.7551],[123.0532,-4.7652],[123.0574,-4.7652],[123.0615,-4.755],[123.0651,-4.7529],[123.0689,-4.7558],[123.0758,-4.7562],[123.0779,-4.7511],[123.0819,-4.7541],[123.0813,-4.7665],[123.0761,-4.7731],[123.0792,-4.776],[123.0746,-4.7834],[123.0773,-4.7913],[123.0832,-4.7921],[123.0906,-4.7913],[123.0929,-4.7943],[123.1002,-4.7946],[123.1036,-4.7912],[123.1049,-4.7842],[123.1095,-4.77],[123.1075,-4.7632],[123.102,-4.7616],[123.1019,-4.7486],[123.1033,-4.7352],[123.11,-4.7281],[123.1142,-4.7305],[123.1144,-4.7231],[123.1061,-4.7138],[123.1083,-4.7063],[123.1124,-4.7047],[123.1144,-4.696],[123.1192,-4.7015],[123.1201,-4.7052],[123.1167,-4.7078],[123.1213,-4.7159],[123.1243,-4.7146],[123.128,-4.7199],[123.1394,-4.723],[123.1429,-4.729],[123.1491,-4.7325],[123.1494,-4.739],[123.1394,-4.7481],[123.1404,-4.7509],[123.1324,-4.7552],[123.144,-4.7572],[123.1549,-4.7601],[123.1626,-4.7636],[123.1605,-4.7698],[123.1634,-4.7724],[123.1763,-4.7723],[123.1742,-4.7761],[123.1698,-4.7786],[123.1689,-4.7923],[123.1711,-4.7969],[123.1722,-4.8093],[123.1723,-4.8276],[123.1736,-4.8368],[123.1832,-4.8505],[123.1909,-4.8568],[123.2008,-4.8613],[123.2051,-4.8669],[123.2104,-4.8648],[123.2131,-4.8586],[123.2138,-4.8404],[123.2133,-4.8245],[123.2084,-4.82],[123.2073,-4.815],[123.2068,-4.8031],[123.2052,-4.7893],[123.2022,-4.7766],[123.2051,-4.7677],[123.2077,-4.7524],[123.207,-4.7353],[123.2098,-4.7304],[123.2091,-4.7259],[123.2114,-4.7208],[123.2122,-4.7133],[123.2111,-4.7019],[123.2094,-4.6959],[123.2055,-4.6688],[123.1997,-4.6566],[123.1954,-4.6596],[123.1985,-4.6686],[123.198,-4.6767],[123.2014,-4.688],[123.1989,-4.6921],[123.1952,-4.6905],[123.1932,-4.6854],[123.1892,-4.6858],[123.1882,-4.6718],[123.1832,-4.6756],[123.1777,-4.6731],[123.1763,-4.6629],[123.1773,-4.6607],[123.1863,-4.6581],[123.1863,-4.6533],[123.1836,-4.6502],[123.1827,-4.6416],[123.1879,-4.6457],[123.192,-4.6427],[123.1845,-4.6345],[123.1893,-4.6279],[123.1931,-4.629],[123.1915,-4.6208],[123.1969,-4.6191],[123.2052,-4.623],[123.2088,-4.6155],[123.2082,-4.6119],[123.2007,-4.6073],[123.1987,-4.5988],[123.1905,-4.5869],[123.1916,-4.5819],[123.1843,-4.5707],[123.1791,-4.5595],[123.1796,-4.5561],[123.1704,-4.5431],[123.1618,-4.5399],[123.1561,-4.5232],[123.1488,-4.5174],[123.1459,-4.5133],[123.1463,-4.5059],[123.1405,-4.4982],[123.1415,-4.4862],[123.1388,-4.4822],[123.1308,-4.4842],[123.125,-4.4767],[123.1183,-4.4751],[123.1137,-4.4763],[123.1079,-4.474],[123.109,-4.471],[123.107,-4.4627],[123.0983,-4.4565],[123.0936,-4.4604],[123.0862,-4.4583],[123.0788,-4.4583],[123.0766,-4.4566],[123.0783,-4.4436],[123.0735,-4.4398],[123.0734,-4.4364],[123.0684,-4.4313],[123.0607,-4.4327],[123.057,-4.4302],[123.0522,-4.4301],[123.0451,-4.4247],[123.045,-4.4194],[123.0515,-4.4136],[123.0619,-4.4084],[123.0679,-4.4117],[123.0785,-4.4018],[123.0827,-4.3862],[123.0811,-4.3803],[123.078,-4.3763],[123.0805,-4.3735],[123.0798,-4.3671],[123.0728,-4.3668],[123.0691,-4.3706],[123.0628,-4.3713],[123.0598,-4.3739],[123.0566,-4.3697],[123.0421,-4.3695],[123.0385,-4.3739],[123.032,-4.3779],[123.0267,-4.3787],[123.0176,-4.3849],[123.016,-4.3889],[123.0114,-4.3936],[123.0036,-4.3948],[122.9982,-4.3982],[122.9933,-4.3944],[122.9894,-4.3976],[122.9874,-4.403],[122.9756,-4.4135],[122.9669,-4.4148],[122.9607,-4.4202],[122.9552,-4.4217],[122.9505,-4.4251],[122.945,-4.4319],[122.9464,-4.4356],[122.9361,-4.4441],[122.9268,-4.4482],[122.9226,-4.454],[122.9162,-4.4559],[122.908,-4.4603],[122.9054,-4.465],[122.9053,-4.4711],[122.9004,-4.477],[122.8987,-4.482],[122.89,-4.4907],[122.8896,-4.4972],[122.8798,-4.5038],[122.8805,-4.5163],[122.8674,-4.526],[122.8686,-4.5322],[122.8669,-4.5505],[122.8637,-4.5549],[122.857,-4.5688],[122.8543,-4.5718],[122.8487,-4.5896],[122.848,-4.6044],[122.849,-4.6093],[122.9247,-4.6126],[122.9287,-4.6123],[122.928,-4.6279],[122.926,-4.6369],[122.9266,-4.6458],[122.9282,-4.649],[122.9247,-4.673],[122.922,-4.7032],[122.9194,-4.7228],[122.9185,-4.7343],[122.9185,-4.7477],[122.9158,-4.8045],[122.9238,-4.8374],[122.9247,-4.8578],[122.922,-4.8729],[122.9131,-4.8916],[122.9078,-4.904],[122.8918,-4.9475],[122.89,-4.9724],[122.8785,-5.0266],[122.8687,-5.0488],[122.8607,-5.0497],[122.8554,-5.055],[122.8492,-5.0728],[122.8483,-5.0772],[122.843,-5.0799],[122.8276,-5.0958],[122.839,-5.1088],[122.8425,-5.1154],[122.8513,-5.1185],[122.8609,-5.1176],[122.8686,-5.1214],[122.8884,-5.1228],[122.9006,-5.1197],[122.9133,-5.1302],[122.9194,-5.1361],[122.9283,-5.1422],[122.9417,-5.1452],[122.9489,-5.1483]]}},{"type":"Feature","properties":{"mhid":"1332:442","alt_name":"KABUPATEN KONAWE UTARA","latitude":-3.41552,"longitude":121.99081,"sample_value":32},"geometry":{"type":"LineString","coordinates":[[122.2825,-3.5587],[122.2785,-3.557],[122.2715,-3.5589],[122.2785,-3.5624],[122.2825,-3.5587]]}},{"type":"Feature","properties":{"mhid":"1332:442","alt_name":"KABUPATEN KONAWE UTARA","latitude":-3.41552,"longitude":121.99081,"sample_value":32},"geometry":{"type":"LineString","coordinates":[[122.3258,-3.5305],[122.306,-3.5306],[122.2937,-3.5333],[122.2948,-3.5378],[122.2914,-3.5431],[122.2906,-3.5477],[122.2861,-3.5497],[122.2813,-3.5635],[122.2754,-3.5668],[122.2803,-3.5791],[122.2795,-3.5861],[122.2821,-3.5909],[122.2875,-3.5884],[122.2888,-3.5798],[122.297,-3.5787],[122.3051,-3.5757],[122.3162,-3.5815],[122.3262,-3.5832],[122.3323,-3.5831],[122.3498,-3.5746],[122.3645,-3.576],[122.3645,-3.5706],[122.3531,-3.569],[122.3391,-3.5646],[122.3342,-3.5619],[122.3357,-3.5506],[122.334,-3.5469],[122.346,-3.547],[122.3457,-3.5409],[122.3356,-3.5388],[122.3333,-3.5345],[122.3291,-3.5348],[122.3258,-3.5305]]}},{"type":"Feature","properties":{"mhid":"1332:442","alt_name":"KABUPATEN KONAWE UTARA","latitude":-3.41552,"longitude":121.99081,"sample_value":32},"geometry":{"type":"LineString","coordinates":[[122.4001,-3.4652],[122.399,-3.4593],[122.3932,-3.463],[122.4001,-3.4652]]}},{"type":"Feature","properties":{"mhid":"1332:442","alt_name":"KABUPATEN KONAWE UTARA","latitude":-3.41552,"longitude":121.99081,"sample_value":32},"geometry":{"type":"LineString","coordinates":[[122.4418,-3.4441],[122.4234,-3.4281],[122.4184,-3.4167],[122.4163,-3.3994],[122.4124,-3.3953],[122.403,-3.4009],[122.4034,-3.4105],[122.4016,-3.4143],[122.4032,-3.4204],[122.402,-3.4272],[122.398,-3.4353],[122.3978,-3.4428],[122.4055,-3.4499],[122.4067,-3.4555],[122.4053,-3.4659],[122.4083,-3.4711],[122.4104,-3.48],[122.4158,-3.4817],[122.4214,-3.4909],[122.425,-3.4942],[122.4266,-3.5005],[122.4315,-3.506],[122.4409,-3.5064],[122.4448,-3.504],[122.4508,-3.5034],[122.4511,-3.4995],[122.4457,-3.4905],[122.4407,-3.4853],[122.4379,-3.4795],[122.4424,-3.4775],[122.4476,-3.4856],[122.4532,-3.4874],[122.4565,-3.4856],[122.4583,-3.479],[122.4674,-3.4765],[122.4662,-3.4653],[122.4543,-3.4561],[122.4525,-3.4508],[122.448,-3.4514],[122.4418,-3.4441]]}},{"type":"Feature","properties":{"mhid":"1332:442","alt_name":"KABUPATEN KONAWE UTARA","latitude":-3.41552,"longitude":121.99081,"sample_value":32},"geometry":{"type":"LineString","coordinates":[[122.4688,-3.8201],[122.473,-3.8188],[122.4704,-3.8086],[122.4574,-3.7948],[122.4495,-3.7783],[122.4466,-3.7682],[122.4435,-3.7501],[122.433,-3.7458],[122.4267,-3.7464],[122.4207,-3.7515],[122.402,-3.7499],[122.3938,-3.7381],[122.3922,-3.7289],[122.3873,-3.7303],[122.383,-3.7393],[122.3677,-3.7506],[122.3625,-3.753],[122.3583,-3.7519],[122.35,-3.7472],[122.3482,-3.7442],[122.3408,-3.7446],[122.3321,-3.7339],[122.3299,-3.7359],[122.3253,-3.733],[122.3255,-3.7263],[122.3196,-3.7207],[122.3164,-3.7198],[122.3121,-3.7099],[122.3062,-3.7081],[122.3039,-3.7049],[122.3046,-3.6975],[122.3015,-3.6924],[122.2929,-3.6855],[122.2883,-3.6865],[122.2842,-3.6841],[122.2765,-3.6834],[122.2697,-3.6806],[122.2662,-3.6771],[122.2643,-3.6708],[122.2579,-3.6683],[122.2539,-3.6642],[122.2466,-3.6646],[122.2469,-3.6555],[122.2359,-3.6502],[122.2291,-3.6453],[122.2192,-3.6319],[122.2123,-3.6279],[122.2064,-3.6217],[122.2016,-3.6116],[122.1963,-3.6084],[122.1958,-3.5916],[122.1975,-3.5836],[122.1974,-3.57],[122.2,-3.565],[122.2063,-3.5667],[122.2117,-3.5626],[122.2185,-3.5625],[122.2257,-3.5648],[122.2312,-3.565],[122.2323,-3.5624],[122.2402,-3.5608],[122.243,-3.5635],[122.25,-3.564],[122.2601,-3.5569],[122.2694,-3.5538],[122.2706,-3.5378],[122.2677,-3.537],[122.2556,-3.5383],[122.2652,-3.5312],[122.2742,-3.5357],[122.275,-3.5396],[122.2724,-3.5457],[122.275,-3.5531],[122.2785,-3.5526],[122.2798,-3.5479],[122.2773,-3.5415],[122.278,-3.5202],[122.2803,-3.5026],[122.2837,-3.4929],[122.2822,-3.4874],[122.2734,-3.4854],[122.2816,-3.4808],[122.287,-3.4922],[122.2951,-3.4792],[122.2956,-3.4748],[122.2992,-3.4683],[122.2979,-3.4643],[122.2932,-3.4621],[122.2914,-3.4517],[122.2839,-3.45],[122.2838,-3.4447],[122.2755,-3.4346],[122.2678,-3.4352],[122.262,-3.4273],[122.258,-3.4242],[122.2617,-3.4155],[122.2554,-3.4175],[122.2489,-3.4156],[122.247,-3.4093],[122.2437,-3.4078],[122.2395,-3.3996],[122.238,-3.3933],[122.2391,-3.3887],[122.252,-3.3881],[122.2521,-3.3935],[122.2587,-3.3979],[122.2651,-3.398],[122.2637,-3.3932],[122.267,-3.3881],[122.2643,-3.3833],[122.268,-3.3796],[122.2742,-3.3806],[122.2751,-3.3739],[122.2773,-3.371],[122.2774,-3.3645],[122.2849,-3.3689],[122.2937,-3.368],[122.294,-3.3742],[122.3032,-3.3796],[122.3101,-3.3847],[122.3144,-3.3826],[122.316,-3.3771],[122.321,-3.374],[122.3282,-3.3733],[122.3282,-3.3766],[122.3229,-3.3813],[122.3297,-3.3868],[122.3301,-3.3908],[122.3267,-3.3946],[122.3275,-3.4024],[122.3194,-3.4078],[122.3243,-3.4104],[122.3256,-3.4147],[122.3224,-3.4181],[122.315,-3.4204],[122.3159,-3.4265],[122.3212,-3.4234],[122.3267,-3.4261],[122.3342,-3.414],[122.344,-3.4079],[122.3497,-3.4098],[122.35,-3.4174],[122.3584,-3.4171],[122.3591,-3.4196],[122.3553,-3.4295],[122.3603,-3.4346],[122.3572,-3.4388],[122.3633,-3.4398],[122.3603,-3.4451],[122.3641,-3.4516],[122.356,-3.4588],[122.3592,-3.4644],[122.3641,-3.4604],[122.3701,-3.4621],[122.3765,-3.4579],[122.3811,-3.4615],[122.3832,-3.4575],[122.3833,-3.4511],[122.3793,-3.4491],[122.3818,-3.4351],[122.3874,-3.4246],[122.3868,-3.4185],[122.3896,-3.4136],[122.3903,-3.4053],[122.3846,-3.4003],[122.3789,-3.3927],[122.3749,-3.39],[122.3762,-3.384],[122.3719,-3.3793],[122.3676,-3.3821],[122.3603,-3.3802],[122.3539,-3.3851],[122.3489,-3.3797],[122.3447,-3.3788],[122.3402,-3.3739],[122.3379,-3.3646],[122.331,-3.3652],[122.3239,-3.3626],[122.3204,-3.3694],[122.3119,-3.3695],[122.3102,-3.3658],[122.305,-3.3642],[122.3014,-3.3604],[122.2932,-3.3594],[122.2934,-3.3518],[122.2954,-3.3488],[122.2923,-3.3447],[122.2892,-3.3321],[122.2915,-3.3257],[122.291,-3.316],[122.2923,-3.3122],[122.2839,-3.3082],[122.2868,-3.3062],[122.2953,-3.2944],[122.2981,-3.2939],[122.3039,-3.2822],[122.3078,-3.2791],[122.3107,-3.2729],[122.3,-3.2627],[122.2953,-3.253],[122.2979,-3.2452],[122.302,-3.2377],[122.3003,-3.2326],[122.2956,-3.2262],[122.2955,-3.2193],[122.2985,-3.2125],[122.3026,-3.2089],[122.3109,-3.1942],[122.3154,-3.1746],[122.315,-3.1661],[122.3107,-3.162],[122.3013,-3.1586],[122.2954,-3.1547],[122.2898,-3.1442],[122.2849,-3.1415],[122.2773,-3.1416],[122.2664,-3.1452],[122.2624,-3.1429],[122.2551,-3.1355],[122.25,-3.1349],[122.235,-3.1404],[122.2291,-3.14],[122.2192,-3.1312],[122.2116,-3.1184],[122.2075,-3.1136],[122.1912,-3.0985],[122.1782,-3.0908],[122.1718,-3.084],[122.1716,-3.0796],[122.1735,-3.0703],[122.1767,-3.0615],[122.1797,-3.0465],[122.1809,-3.036],[122.1765,-3.03],[122.1621,-3.026],[122.1417,-3.0219],[122.1307,-3.0221],[122.1076,-3.0134],[122.0982,-3.0077],[122.0918,-3.0005],[122.0866,-2.9924],[122.0812,-2.978],[122.0851,-2.9703],[122.0838,-2.966],[122.079,-2.9621],[122.079,-2.9621],[122.068,-2.9742],[121.9406,-3.1041],[121.8419,-3.2053],[121.8428,-3.2098],[121.8283,-3.226],[121.8124,-3.2351],[121.7907,-3.2431],[121.7759,-3.2431],[121.7645,-3.25],[121.7559,-3.2401],[121.7474,-3.2339],[121.735,-3.2447],[121.707,-3.233],[121.6881,-3.2281],[121.6722,-3.2189],[121.6779,-3.2006],[121.6688,-3.1926],[121.6597,-3.1823],[121.6495,-3.1673],[121.6335,-3.1605],[121.6244,-3.1639],[121.6119,-3.1662],[121.5914,-3.1604],[121.5799,-3.1741],[121.564,-3.1879],[121.5537,-3.2027],[121.5217,-3.2244],[121.5035,-3.2244],[121.4882,-3.2403],[121.4313,-3.2733],[121.4308,-3.2978],[121.4278,-3.3265],[121.4299,-3.3334],[121.441,-3.3509],[121.4618,-3.3863],[121.4758,-3.4117],[121.4873,-3.4278],[121.4974,-3.4432],[121.5033,-3.4495],[121.5126,-3.4381],[121.5313,-3.3993],[121.5466,-3.3928],[121.5543,-3.3861],[121.5996,-3.4108],[121.6186,-3.4236],[121.6262,-3.423],[121.6398,-3.4189],[121.6628,-3.4189],[121.6717,-3.4266],[121.6711,-3.4355],[121.6634,-3.4426],[121.6596,-3.4492],[121.6586,-3.4569],[121.6622,-3.4652],[121.6698,-3.4705],[121.7005,-3.483],[121.7259,-3.4896],[121.7418,-3.4866],[121.7483,-3.4819],[121.7636,-3.4825],[121.7684,-3.4902],[121.766,-3.4991],[121.7654,-3.5127],[121.7754,-3.5365],[121.773,-3.5466],[121.7748,-3.556],[121.7795,-3.5644],[121.7875,-3.5732],[121.7942,-3.5828],[121.8063,-3.5784],[121.8178,-3.5697],[121.8264,-3.5668],[121.8401,-3.5649],[121.8491,-3.5606],[121.8557,-3.5588],[121.8652,-3.564],[121.8822,-3.5697],[121.8894,-3.5693],[121.9058,-3.5621],[121.9201,-3.5624],[121.9298,-3.5666],[121.9704,-3.5769],[121.9945,-3.5874],[122.0063,-3.5959],[122.0148,-3.6069],[122.0308,-3.6168],[122.0417,-3.6197],[122.0554,-3.6425],[122.045,-3.6534],[122.0426,-3.6629],[122.0468,-3.6719],[122.053,-3.6771],[122.0539,-3.689],[122.0581,-3.698],[122.065,-3.7006],[122.0718,-3.7084],[122.0808,-3.717],[122.1049,-3.7165],[122.1157,-3.7208],[122.1261,-3.7265],[122.1313,-3.7256],[122.1375,-3.7218],[122.1455,-3.7213],[122.1493,-3.7327],[122.1516,-3.737],[122.1525,-3.7474],[122.1558,-3.7508],[122.1658,-3.7555],[122.1771,-3.7683],[122.1813,-3.7679],[122.1875,-3.7626],[122.1898,-3.7565],[122.1965,-3.7484],[122.2031,-3.7442],[122.2125,-3.7442],[122.2338,-3.7489],[122.2692,-3.7694],[122.2767,-3.7774],[122.2767,-3.7898],[122.2791,-3.8045],[122.2814,-3.813],[122.2843,-3.8168],[122.2975,-3.8258],[122.3064,-3.8311],[122.3107,-3.8372],[122.3121,-3.8629],[122.314,-3.8686],[122.3196,-3.87],[122.3305,-3.8705],[122.3362,-3.8771],[122.3437,-3.8752],[122.3569,-3.8643],[122.3638,-3.8648],[122.3847,-3.8661],[122.399,-3.8641],[122.3996,-3.8675],[122.4141,-3.8672],[122.4163,-3.8621],[122.4269,-3.861],[122.4292,-3.8577],[122.4235,-3.8485],[122.4292,-3.8454],[122.4321,-3.8383],[122.4396,-3.8397],[122.4472,-3.8335],[122.4529,-3.8369],[122.4595,-3.835],[122.4595,-3.8193],[122.4688,-3.8201]]}},{"type":"Feature","properties":{"mhid":"1332:443","alt_name":"KABUPATEN KOLAKA TIMUR","latitude":-4.01807,"longitude":121.86172,"sample_value":878},"geometry":{"type":"LineString","coordinates":[[121.4618,-3.3863],[121.4311,-3.3894],[121.411,-3.39],[121.3883,-3.3894],[121.3789,-3.3868],[121.3613,-3.3773],[121.355,-3.3691],[121.3456,-3.3615],[121.3374,-3.3513],[121.3293,-3.3361],[121.318,-3.3222],[121.3105,-3.3108],[121.3023,-3.3001],[121.2923,-3.2792],[121.2854,-3.2621],[121.2829,-3.2526],[121.2804,-3.2374],[121.2785,-3.2311],[121.2747,-3.2261],[121.266,-3.2252],[121.2533,-3.2254],[121.2279,-3.2281],[121.2236,-3.2331],[121.2233,-3.2378],[121.2202,-3.2457],[121.221,-3.2545],[121.1918,-3.2704],[121.1918,-3.2732],[121.1858,-3.2745],[121.1746,-3.2928],[121.1697,-3.2966],[121.1607,-3.2926],[121.1576,-3.2975],[121.1591,-3.3047],[121.1579,-3.3188],[121.1584,-3.3246],[121.152,-3.3286],[121.1575,-3.3314],[121.1578,-3.3397],[121.1511,-3.3441],[121.1428,-3.3595],[121.1421,-3.3653],[121.1341,-3.3658],[121.1316,-3.3789],[121.1321,-3.3835],[121.1356,-3.3889],[121.1332,-3.3944],[121.1335,-3.3991],[121.1295,-3.4001],[121.123,-3.411],[121.1326,-3.4162],[121.1345,-3.4218],[121.1552,-3.4361],[121.1535,-3.442],[121.1497,-3.4456],[121.1473,-3.455],[121.1447,-3.4598],[121.1371,-3.4602],[121.1334,-3.4635],[121.1318,-3.4686],[121.1241,-3.4677],[121.1225,-3.4707],[121.1266,-3.4807],[121.1215,-3.4852],[121.1223,-3.489],[121.1276,-3.4945],[121.1374,-3.5024],[121.1439,-3.505],[121.1506,-3.5053],[121.1503,-3.5097],[121.1542,-3.516],[121.1516,-3.5221],[121.1549,-3.5261],[121.1549,-3.5311],[121.1571,-3.5361],[121.164,-3.5404],[121.1712,-3.5413],[121.1743,-3.5435],[121.1777,-3.5517],[121.1825,-3.5569],[121.1861,-3.5633],[121.1936,-3.569],[121.2019,-3.5701],[121.2118,-3.5791],[121.2163,-3.5888],[121.2224,-3.5966],[121.2331,-3.6008],[121.2372,-3.6041],[121.2437,-3.6179],[121.2459,-3.6348],[121.2497,-3.6534],[121.2528,-3.6585],[121.2598,-3.6672],[121.2684,-3.6732],[121.2824,-3.6844],[121.2897,-3.6891],[121.2986,-3.6916],[121.3151,-3.6938],[121.3286,-3.6935],[121.3365,-3.6919],[121.3436,-3.6846],[121.3434,-3.6748],[121.3352,-3.6667],[121.3385,-3.6612],[121.3498,-3.6478],[121.3608,-3.6373],[121.3696,-3.6298],[121.391,-3.6165],[121.4079,-3.6109],[121.4189,-3.6122],[121.4275,-3.6191],[121.4312,-3.6255],[121.4332,-3.6373],[121.4323,-3.6473],[121.4287,-3.6747],[121.4279,-3.6935],[121.4309,-3.7024],[121.4394,-3.7085],[121.4515,-3.7147],[121.4555,-3.7158],[121.4597,-3.7201],[121.4738,-3.7223],[121.4856,-3.726],[121.5038,-3.735],[121.5225,-3.7473],[121.5259,-3.7538],[121.534,-3.7576],[121.5396,-3.7645],[121.5487,-3.7806],[121.5571,-3.7891],[121.5699,-3.8005],[121.5854,-3.8098],[121.6015,-3.8202],[121.6062,-3.828],[121.6086,-3.846],[121.6082,-3.8541],[121.6099,-3.8642],[121.6152,-3.8726],[121.6212,-3.8907],[121.6229,-3.8936],[121.6303,-3.8992],[121.6377,-3.9013],[121.6526,-3.9015],[121.6578,-3.9055],[121.6647,-3.9016],[121.6701,-3.9064],[121.672,-3.9121],[121.6793,-3.9194],[121.6924,-3.9363],[121.6977,-3.9482],[121.6951,-3.9558],[121.6841,-3.9578],[121.6752,-3.963],[121.6741,-3.9684],[121.6763,-3.9768],[121.6904,-3.9894],[121.6962,-3.9926],[121.7053,-3.9941],[121.7184,-3.9977],[121.7393,-4.0193],[121.7576,-4.0393],[121.7621,-4.047],[121.7655,-4.0664],[121.7673,-4.0798],[121.7679,-4.0931],[121.7705,-4.0957],[121.7718,-4.1027],[121.7716,-4.1135],[121.7768,-4.1427],[121.7773,-4.1631],[121.7744,-4.1728],[121.7712,-4.1772],[121.7504,-4.2008],[121.7497,-4.2276],[121.7479,-4.232],[121.7467,-4.2431],[121.7363,-4.247],[121.7343,-4.2575],[121.7371,-4.2602],[121.7379,-4.2677],[121.7506,-4.2698],[121.7585,-4.2749],[121.7659,-4.2852],[121.7755,-4.2943],[121.7894,-4.3391],[121.7943,-4.3536],[121.8031,-4.3797],[121.8044,-4.3836],[121.7977,-4.398],[121.7984,-4.4036],[121.8038,-4.4156],[121.8065,-4.4049],[121.8479,-4.3969],[121.8822,-4.3775],[121.9077,-4.3779],[121.9246,-4.378],[121.9449,-4.3787],[121.9535,-4.3783],[121.9766,-4.3789],[121.9799,-4.3735],[121.9893,-4.3723],[122.0038,-4.3691],[122.0071,-4.3669],[122.0109,-4.3563],[122.0112,-4.3127],[122.0107,-4.2772],[122.0114,-4.2612],[122.0141,-4.2314],[122.0148,-4.2018],[122.014,-4.1929],[122.0112,-4.183],[121.9944,-4.1317],[121.9878,-4.1062],[121.9725,-4.0919],[121.9644,-4.0802],[121.9615,-4.0721],[121.9579,-4.056],[121.9555,-4.0423],[121.953,-4.012],[121.9539,-3.9968],[121.9557,-3.9865],[121.9592,-3.978],[121.9636,-3.9566],[121.9667,-3.9446],[121.967,-3.9326],[121.9696,-3.901],[121.9657,-3.8869],[121.9614,-3.8772],[121.9434,-3.8515],[121.9388,-3.8473],[121.9333,-3.8385],[121.9306,-3.8318],[121.9236,-3.8303],[121.9185,-3.8267],[121.9076,-3.8221],[121.9027,-3.8172],[121.8947,-3.8138],[121.8868,-3.8081],[121.8823,-3.8065],[121.8735,-3.7979],[121.8627,-3.7925],[121.8554,-3.7836],[121.8554,-3.7747],[121.8645,-3.7565],[121.8573,-3.7494],[121.8455,-3.7433],[121.8391,-3.7373],[121.8308,-3.7327],[121.8242,-3.735],[121.819,-3.7315],[121.8157,-3.7339],[121.8107,-3.7338],[121.8079,-3.7299],[121.7989,-3.7294],[121.798,-3.7266],[121.7912,-3.7268],[121.7855,-3.7336],[121.7792,-3.7356],[121.7701,-3.7445],[121.7712,-3.7496],[121.7651,-3.7557],[121.756,-3.7592],[121.7491,-3.764],[121.7483,-3.7665],[121.7417,-3.7652],[121.7376,-3.7687],[121.7283,-3.769],[121.7265,-3.7656],[121.7159,-3.7716],[121.7115,-3.7756],[121.7063,-3.7753],[121.7006,-3.7778],[121.6954,-3.7652],[121.6924,-3.7607],[121.6843,-3.7587],[121.683,-3.7515],[121.6789,-3.7532],[121.6816,-3.7426],[121.68,-3.7388],[121.673,-3.7369],[121.6732,-3.7345],[121.6661,-3.7328],[121.6622,-3.7299],[121.6573,-3.7338],[121.6523,-3.7334],[121.6409,-3.738],[121.6352,-3.7348],[121.631,-3.7385],[121.6198,-3.7367],[121.6157,-3.729],[121.613,-3.716],[121.6079,-3.6999],[121.6122,-3.6905],[121.612,-3.6814],[121.5877,-3.6568],[121.583,-3.65],[121.5759,-3.6338],[121.566,-3.6003],[121.5602,-3.5868],[121.5462,-3.5618],[121.5332,-3.542],[121.5308,-3.5331],[121.5336,-3.5116],[121.528,-3.4998],[121.5253,-3.4796],[121.5209,-3.4704],[121.5033,-3.4495],[121.4974,-3.4432],[121.4873,-3.4278],[121.4758,-3.4117],[121.4618,-3.3863]]}},{"type":"Feature","properties":{"mhid":"1332:444","alt_name":"KOTA KENDARI","latitude":-3.98333,"longitude":122.5,"sample_value":698},"geometry":{"type":"LineString","coordinates":[[122.6044,-3.9758],[122.5996,-3.9835],[122.6065,-3.9832],[122.6111,-3.9876],[122.6111,-3.9921],[122.6182,-3.9907],[122.6176,-3.9857],[122.6136,-3.9836],[122.6114,-3.9775],[122.6044,-3.9758]]}},{"type":"Feature","properties":{"mhid":"1332:444","alt_name":"KOTA KENDARI","latitude":-3.98333,"longitude":122.5,"sample_value":698},"geometry":{"type":"LineString","coordinates":[[122.6242,-3.9492],[122.6172,-3.9492],[122.6052,-3.9445],[122.5942,-3.9411],[122.5807,-3.9396],[122.571,-3.9399],[122.5486,-3.9419],[122.5389,-3.9411],[122.5359,-3.9392],[122.5225,-3.9346],[122.5067,-3.9091],[122.4812,-3.9091],[122.4686,-3.9188],[122.4518,-3.9403],[122.4523,-3.9664],[122.4404,-4.0081],[122.4405,-4.0183],[122.4486,-4.0241],[122.4629,-4.0275],[122.4701,-4.0323],[122.4756,-4.044],[122.4816,-4.0544],[122.4871,-4.0522],[122.5,-4.0713],[122.5141,-4.0681],[122.5067,-4.0824],[122.5109,-4.0856],[122.5279,-4.0913],[122.532,-4.0858],[122.5487,-4.0766],[122.5507,-4.0768],[122.5716,-4.0692],[122.5751,-4.0705],[122.5747,-4.0799],[122.5805,-4.0839],[122.5892,-4.084],[122.5963,-4.0764],[122.601,-4.0634],[122.6145,-4.0283],[122.6182,-4.0239],[122.6361,-4.0185],[122.6478,-4.0072],[122.6511,-4.0027],[122.637,-4.0033],[122.6276,-4.0011],[122.6192,-4.0029],[122.6158,-3.9973],[122.6101,-3.9938],[122.6047,-3.9853],[122.5997,-3.9846],[122.5923,-3.9792],[122.5839,-3.9801],[122.5749,-3.9835],[122.5661,-3.9832],[122.5549,-3.9875],[122.5529,-3.9928],[122.5471,-3.9898],[122.5357,-3.9889],[122.5371,-3.9842],[122.53,-3.97],[122.5405,-3.9661],[122.5563,-3.9669],[122.5748,-3.9712],[122.5813,-3.9715],[122.5938,-3.9777],[122.5992,-3.9791],[122.6045,-3.9709],[122.6086,-3.971],[122.6109,-3.967],[122.6088,-3.9628],[122.6202,-3.962],[122.6261,-3.9559],[122.6242,-3.9492]]}},{"type":"Feature","properties":{"mhid":"1332:351","alt_name":"KOTA PALANGKA RAYA","latitude":-1.76979,"longitude":113.73126,"sample_value":263},"geometry":{"type":"LineString","coordinates":[[113.8272,-1.6311],[113.8202,-1.6316],[113.7991,-1.6301],[113.7577,-1.6235],[113.7371,-1.6243],[113.7044,-1.6306],[113.6762,-1.6405],[113.667,-1.6445],[113.6002,-1.6553],[113.5885,-1.6535],[113.5833,-1.6507],[113.5768,-1.6435],[113.5671,-1.6371],[113.5629,-1.637],[113.5521,-1.6419],[113.5333,-1.6563],[113.5191,-1.6709],[113.5073,-1.6702],[113.5019,-1.6672],[113.4921,-1.6575],[113.4844,-1.6704],[113.482,-1.6849],[113.4838,-1.6941],[113.4976,-1.7194],[113.4988,-1.7377],[113.4968,-1.7456],[113.4886,-1.7617],[113.4895,-1.7862],[113.5061,-1.8234],[113.5335,-1.8486],[113.5719,-1.8998],[113.5935,-1.9186],[113.614,-1.9504],[113.6178,-1.9798],[113.623,-1.991],[113.6559,-2.0373],[113.683,-2.0665],[113.6946,-2.0868],[113.6996,-2.158],[113.6965,-2.1951],[113.6954,-2.2337],[113.6969,-2.2574],[113.7062,-2.2849],[113.7188,-2.3016],[113.7326,-2.312],[113.7529,-2.3332],[113.7639,-2.3567],[113.7673,-2.3695],[113.7666,-2.3885],[113.7632,-2.3988],[113.9413,-2.3983],[113.9676,-2.3917],[113.9747,-2.3909],[113.996,-2.3912],[114.0079,-2.3941],[114.0271,-2.3967],[114.0292,-2.3911],[114.026,-2.3741],[114.0276,-2.3343],[114.0302,-2.2922],[114.0706,-2.2635],[114.0849,-2.2511],[114.1008,-2.2119],[114.1068,-2.1981],[114.0773,-2.1877],[114.0618,-2.1854],[114.0398,-2.1753],[114.0218,-2.1716],[114.0027,-2.1693],[113.9791,-2.1677],[113.9499,-2.1643],[113.9378,-2.1637],[113.9352,-2.1574],[113.9271,-2.1428],[113.8787,-2.0746],[113.8617,-2.0495],[113.8473,-2.0273],[113.8383,-2.0163],[113.831,-2.0043],[113.8194,-1.9789],[113.8149,-1.9555],[113.8221,-1.8953],[113.8237,-1.8696],[113.8228,-1.8404],[113.8213,-1.8173],[113.8184,-1.7889],[113.8076,-1.7551],[113.8048,-1.7408],[113.8053,-1.725],[113.807,-1.7065],[113.8168,-1.6686],[113.8272,-1.6311]]}},{"type":"Feature","properties":{"mhid":"1332:352","alt_name":"KABUPATEN TANAH LAUT","latitude":-3.88333,"longitude":114.86667,"sample_value":578},"geometry":{"type":"LineString","coordinates":[[114.92,-3.5959],[114.9176,-3.5964],[114.9081,-3.5881],[114.9059,-3.581],[114.8986,-3.5758],[114.894,-3.5742],[114.8968,-3.5677],[114.8922,-3.5638],[114.8919,-3.5573],[114.8898,-3.551],[114.8834,-3.5499],[114.8773,-3.5577],[114.8692,-3.5548],[114.8692,-3.55],[114.8628,-3.5508],[114.853,-3.5489],[114.8455,-3.5452],[114.8398,-3.5397],[114.8364,-3.5392],[114.8325,-3.5328],[114.8319,-3.5232],[114.8236,-3.5224],[114.8032,-3.5228],[114.7944,-3.521],[114.7892,-3.5186],[114.7859,-3.5143],[114.7755,-3.5118],[114.7683,-3.5113],[114.7618,-3.5093],[114.7355,-3.51],[114.7293,-3.5114],[114.7159,-3.5116],[114.7044,-3.5135],[114.6824,-3.5178],[114.6668,-3.5217],[114.6569,-3.523],[114.6206,-3.5308],[114.6113,-3.5343],[114.6051,-3.5329],[114.5822,-3.5333],[114.556,-3.5377],[114.5489,-3.5381],[114.5306,-3.5408],[114.5166,-3.5443],[114.5212,-3.548],[114.5278,-3.5486],[114.54,-3.5527],[114.552,-3.5577],[114.5554,-3.5578],[114.564,-3.5689],[114.571,-3.5745],[114.5741,-3.5798],[114.5872,-3.5957],[114.599,-3.614],[114.6067,-3.6288],[114.6144,-3.6484],[114.6205,-3.6736],[114.6226,-3.6965],[114.6225,-3.7126],[114.6211,-3.7242],[114.6149,-3.7341],[114.6106,-3.7442],[114.6087,-3.7592],[114.607,-3.7836],[114.6072,-3.7958],[114.6039,-3.801],[114.6036,-3.8217],[114.6044,-3.829],[114.6082,-3.8458],[114.6085,-3.8534],[114.6121,-3.8635],[114.6095,-3.8698],[114.6107,-3.8912],[114.6167,-3.9167],[114.6174,-3.924],[114.6209,-3.937],[114.6208,-3.9399],[114.6289,-3.9701],[114.628,-3.9775],[114.631,-3.9883],[114.6347,-4.0054],[114.6389,-4.0334],[114.6383,-4.052],[114.6362,-4.0631],[114.6254,-4.0667],[114.6282,-4.0738],[114.6263,-4.0793],[114.6289,-4.0868],[114.629,-4.1088],[114.6285,-4.1299],[114.6293,-4.1529],[114.6263,-4.1569],[114.619,-4.161],[114.6222,-4.1657],[114.6319,-4.1727],[114.6512,-4.1783],[114.659,-4.1794],[114.683,-4.1792],[114.7076,-4.1719],[114.7281,-4.1627],[114.7467,-4.1529],[114.7518,-4.1491],[114.7608,-4.1449],[114.7707,-4.1387],[114.8033,-4.1197],[114.8201,-4.1124],[114.8397,-4.1017],[114.8602,-4.0917],[114.8735,-4.0842],[114.8881,-4.0778],[114.8986,-4.0714],[114.906,-4.0692],[114.9245,-4.0611],[114.9587,-4.0416],[114.9709,-4.034],[115.0238,-4.0061],[115.0518,-3.9941],[115.0674,-3.9879],[115.0797,-3.9816],[115.0975,-3.976],[115.1119,-3.9722],[115.1211,-3.9706],[115.1251,-3.9673],[115.1307,-3.9655],[115.1384,-3.9611],[115.1506,-3.9555],[115.1951,-3.934],[115.2264,-3.921],[115.2434,-3.9157],[115.2498,-3.9152],[115.2522,-3.912],[115.2596,-3.9094],[115.2656,-3.9048],[115.2768,-3.901],[115.295,-3.8934],[115.3241,-3.8823],[115.332,-3.8786],[115.3409,-3.8761],[115.3508,-3.8719],[115.3744,-3.8638],[115.3775,-3.8589],[115.3763,-3.8553],[115.3683,-3.8537],[115.3667,-3.8465],[115.3691,-3.8399],[115.3715,-3.8391],[115.372,-3.8322],[115.3689,-3.8263],[115.3689,-3.821],[115.3648,-3.816],[115.3553,-3.8136],[115.3489,-3.8019],[115.3458,-3.7928],[115.3461,-3.788],[115.3436,-3.7817],[115.3402,-3.7788],[115.3174,-3.7364],[115.3124,-3.72],[115.3003,-3.7104],[115.2967,-3.7038],[115.2911,-3.6984],[115.2799,-3.6793],[115.2724,-3.6644],[115.2648,-3.6453],[115.2615,-3.6332],[115.2474,-3.5962],[115.2371,-3.6036],[115.2193,-3.6076],[115.197,-3.6078],[115.1884,-3.6102],[115.1717,-3.6202],[115.1535,-3.6338],[115.1496,-3.6351],[115.1221,-3.6343],[115.1149,-3.6385],[115.0991,-3.6523],[115.0899,-3.6643],[115.0834,-3.6691],[115.0322,-3.687],[115.0117,-3.693],[115.0019,-3.7016],[114.9989,-3.7028],[114.9834,-3.7002],[114.9772,-3.7123],[114.9699,-3.7233],[114.9655,-3.7275],[114.9568,-3.7307],[114.9503,-3.7306],[114.9405,-3.7274],[114.9368,-3.7226],[114.9349,-3.7109],[114.9345,-3.7022],[114.9353,-3.6879],[114.9449,-3.6677],[114.9682,-3.6389],[114.9681,-3.6284],[114.9643,-3.6219],[114.9573,-3.6142],[114.9304,-3.6098],[114.9187,-3.6099],[114.917,-3.6065],[114.92,-3.5959]]}},{"type":"Feature","properties":{"mhid":"1332:445","alt_name":"KOTA BAUBAU","latitude":-5.477,"longitude":122.6166,"sample_value":467},"geometry":{"type":"LineString","coordinates":[[122.6312,-5.4189],[122.6255,-5.4201],[122.624,-5.4228],[122.6226,-5.4322],[122.6236,-5.4374],[122.6277,-5.4357],[122.6309,-5.4301],[122.6312,-5.4189]]}},{"type":"Feature","properties":{"mhid":"1332:445","alt_name":"KOTA BAUBAU","latitude":-5.477,"longitude":122.6166,"sample_value":467},"geometry":{"type":"LineString","coordinates":[[122.6861,-5.321],[122.6811,-5.322],[122.6743,-5.3162],[122.6686,-5.3213],[122.6544,-5.3242],[122.6482,-5.3358],[122.6485,-5.3421],[122.6458,-5.3463],[122.6483,-5.3574],[122.6419,-5.3645],[122.6301,-5.3871],[122.6208,-5.3983],[122.6186,-5.406],[122.631,-5.4083],[122.6377,-5.4081],[122.6433,-5.4152],[122.6487,-5.4248],[122.6502,-5.4365],[122.6395,-5.4524],[122.6341,-5.4572],[122.6275,-5.4597],[122.6212,-5.4576],[122.6139,-5.4571],[122.606,-5.4539],[122.6037,-5.4556],[122.596,-5.4553],[122.5921,-5.4579],[122.5863,-5.4672],[122.5779,-5.4721],[122.5726,-5.478],[122.5652,-5.4813],[122.5602,-5.4969],[122.5571,-5.5011],[122.5591,-5.5059],[122.5563,-5.5151],[122.5571,-5.5191],[122.5667,-5.5228],[122.5699,-5.5259],[122.5736,-5.5382],[122.5816,-5.5353],[122.5879,-5.5314],[122.6012,-5.5271],[122.6103,-5.5203],[122.6145,-5.5128],[122.6184,-5.5099],[122.6317,-5.5094],[122.6337,-5.5133],[122.6424,-5.5134],[122.6451,-5.5113],[122.6567,-5.5082],[122.6646,-5.5042],[122.6694,-5.4965],[122.6817,-5.4947],[122.6931,-5.4942],[122.7259,-5.4952],[122.7341,-5.4936],[122.7404,-5.4901],[122.7403,-5.4834],[122.7427,-5.4818],[122.7432,-5.4739],[122.7462,-5.4723],[122.7462,-5.4676],[122.7498,-5.4618],[122.7533,-5.4595],[122.7492,-5.4513],[122.7546,-5.4499],[122.7622,-5.4281],[122.76,-5.4228],[122.7629,-5.4183],[122.7698,-5.4125],[122.7688,-5.4094],[122.7633,-5.4048],[122.7615,-5.3841],[122.7586,-5.3747],[122.7502,-5.3646],[122.7486,-5.3612],[122.743,-5.3583],[122.7394,-5.3598],[122.7367,-5.3566],[122.7294,-5.3573],[122.7261,-5.3524],[122.7277,-5.3392],[122.726,-5.3299],[122.7201,-5.3289],[122.7113,-5.3319],[122.707,-5.3315],[122.7006,-5.328],[122.6952,-5.3282],[122.6861,-5.321]]}},{"type":"Feature","properties":{"mhid":"1332:446","alt_name":"KABUPATEN BOALEMO","latitude":0.62689,"longitude":122.3568,"sample_value":464},"geometry":{"type":"LineString","coordinates":[[122.5295,0.501],[122.5255,0.4981],[122.5234,0.4918],[122.529,0.4886],[122.5333,0.4903],[122.5356,0.4971],[122.5295,0.501]]}},{"type":"Feature","properties":{"mhid":"1332:446","alt_name":"KABUPATEN BOALEMO","latitude":0.62689,"longitude":122.3568,"sample_value":464},"geometry":{"type":"LineString","coordinates":[[122.4453,0.5018],[122.44,0.5002],[122.4429,0.4945],[122.4496,0.4944],[122.4497,0.5017],[122.4453,0.5018]]}},{"type":"Feature","properties":{"mhid":"1332:446","alt_name":"KABUPATEN BOALEMO","latitude":0.62689,"longitude":122.3568,"sample_value":464},"geometry":{"type":"LineString","coordinates":[[122.2482,0.9139],[122.2412,0.9113],[122.2353,0.9116],[122.2294,0.9096],[122.2267,0.905],[122.2152,0.9019],[122.2108,0.8979],[122.2015,0.9],[122.1882,0.9065],[122.1834,0.9112],[122.1685,0.9137],[122.1627,0.911],[122.1596,0.9062],[122.1556,0.9054],[122.1453,0.9084],[122.1433,0.9133],[122.1401,0.9142],[122.1358,0.9081],[122.1296,0.9043],[122.1176,0.9091],[122.1154,0.9122],[122.1164,0.9196],[122.1106,0.9218],[122.109,0.929],[122.1055,0.9335],[122.1014,0.9299],[122.0937,0.9205],[122.0857,0.926],[122.0829,0.9235],[122.0826,0.9134],[122.0801,0.9087],[122.079,0.9003],[122.0807,0.8976],[122.0875,0.8938],[122.088,0.8763],[122.0822,0.8599],[122.0825,0.8458],[122.0817,0.8436],[122.0858,0.8372],[122.0899,0.8229],[122.1025,0.8222],[122.115,0.8187],[122.1159,0.7859],[122.1207,0.7282],[122.1227,0.7141],[122.1248,0.6829],[122.1296,0.6598],[122.1326,0.6347],[122.1324,0.6202],[122.1332,0.6015],[122.1345,0.5955],[122.1309,0.5848],[122.1292,0.5676],[122.13,0.5574],[122.1248,0.5469],[122.1187,0.5428],[122.1211,0.5233],[122.1218,0.5076],[122.1195,0.4962],[122.1247,0.4924],[122.1281,0.4925],[122.1361,0.4873],[122.1449,0.4832],[122.1476,0.4803],[122.1476,0.4712],[122.1587,0.4696],[122.1631,0.4709],[122.1686,0.47],[122.1804,0.4772],[122.1883,0.478],[122.1915,0.4797],[122.1979,0.4743],[122.2045,0.475],[122.2181,0.4837],[122.2224,0.4844],[122.2273,0.482],[122.2331,0.486],[122.2361,0.4832],[122.248,0.4824],[122.2569,0.4851],[122.2611,0.4793],[122.2686,0.4743],[122.2811,0.4751],[122.2831,0.4791],[122.2906,0.4782],[122.2935,0.4808],[122.2898,0.4855],[122.2996,0.484],[122.3042,0.4902],[122.3126,0.4946],[122.3174,0.4948],[122.3172,0.5017],[122.3218,0.4991],[122.3229,0.4935],[122.3269,0.4927],[122.3294,0.5041],[122.3343,0.5012],[122.3384,0.494],[122.3524,0.4966],[122.3477,0.502],[122.3505,0.5063],[122.3562,0.5104],[122.3594,0.5059],[122.3663,0.5031],[122.3701,0.5062],[122.3744,0.5131],[122.3813,0.517],[122.3823,0.5139],[122.3882,0.5133],[122.3899,0.5199],[122.3963,0.5194],[122.4062,0.5169],[122.4058,0.5093],[122.4138,0.5115],[122.4168,0.5086],[122.4126,0.5057],[122.413,0.5022],[122.419,0.5024],[122.4227,0.5057],[122.4284,0.5049],[122.4359,0.4999],[122.4384,0.5041],[122.4442,0.5074],[122.4424,0.5133],[122.4478,0.5172],[122.45,0.5073],[122.4579,0.5062],[122.4686,0.5063],[122.468,0.5012],[122.4764,0.5037],[122.4815,0.5012],[122.4956,0.5018],[122.4962,0.5079],[122.5018,0.5057],[122.5071,0.5087],[122.5082,0.5038],[122.5124,0.4982],[122.5175,0.4973],[122.5129,0.5093],[122.5148,0.5111],[122.5203,0.5017],[122.5238,0.5053],[122.5287,0.5063],[122.535,0.5032],[122.5441,0.5078],[122.5446,0.5046],[122.54,0.4942],[122.5457,0.4898],[122.552,0.4906],[122.5565,0.4961],[122.5577,0.5004],[122.552,0.5113],[122.5581,0.5113],[122.5659,0.5137],[122.5653,0.5077],[122.5597,0.5019],[122.5651,0.495],[122.5734,0.4927],[122.5903,0.4974],[122.5945,0.5027],[122.5931,0.5084],[122.603,0.5065],[122.5969,0.4998],[122.5931,0.4979],[122.5937,0.4941],[122.601,0.4937],[122.6092,0.4871],[122.6179,0.4893],[122.6248,0.4862],[122.6306,0.4871],[122.6389,0.4822],[122.6436,0.4758],[122.6534,0.4854],[122.6554,0.4948],[122.6506,0.5019],[122.6516,0.5078],[122.6482,0.5111],[122.6495,0.5179],[122.6438,0.5277],[122.6377,0.5306],[122.6359,0.5348],[122.6297,0.5332],[122.6284,0.5396],[122.6336,0.5479],[122.6315,0.5542],[122.633,0.5613],[122.6386,0.5635],[122.63,0.5839],[122.6306,0.5891],[122.6222,0.5927],[122.6216,0.5972],[122.6172,0.5963],[122.6168,0.601],[122.6118,0.6065],[122.6099,0.6114],[122.6098,0.6188],[122.6076,0.6242],[122.603,0.6307],[122.6024,0.6364],[122.5991,0.6392],[122.6005,0.647],[122.5952,0.6527],[122.5881,0.6534],[122.5782,0.6621],[122.572,0.6587],[122.5685,0.6606],[122.5694,0.6692],[122.5644,0.6713],[122.5663,0.6761],[122.5558,0.6838],[122.5504,0.6926],[122.5447,0.6923],[122.5452,0.6999],[122.537,0.702],[122.5344,0.7002],[122.5255,0.7042],[122.5213,0.7046],[122.5212,0.7088],[122.5087,0.7086],[122.5059,0.71],[122.504,0.7158],[122.4982,0.7248],[122.4975,0.7294],[122.5016,0.7357],[122.4929,0.7364],[122.4891,0.7351],[122.4806,0.7376],[122.4819,0.7428],[122.4741,0.7463],[122.4653,0.7587],[122.4619,0.7565],[122.457,0.7572],[122.4523,0.7539],[122.4472,0.7567],[122.4482,0.7612],[122.443,0.7659],[122.4351,0.7583],[122.4293,0.7552],[122.4279,0.76],[122.4193,0.7572],[122.4156,0.762],[122.409,0.764],[122.406,0.7609],[122.3954,0.765],[122.3934,0.7691],[122.3858,0.7729],[122.3749,0.7807],[122.3624,0.7835],[122.352,0.7888],[122.3503,0.7917],[122.3428,0.7926],[122.3404,0.7951],[122.3334,0.7937],[122.3163,0.7964],[122.3054,0.7916],[122.303,0.787],[122.2974,0.7859],[122.282,0.7861],[122.2683,0.7843],[122.2647,0.7893],[122.2578,0.7942],[122.2546,0.7945],[122.2501,0.7984],[122.2469,0.8126],[122.2479,0.8208],[122.2538,0.8247],[122.2507,0.8315],[122.2563,0.8404],[122.2612,0.8457],[122.2527,0.8491],[122.2481,0.8527],[122.2483,0.8555],[122.2553,0.8634],[122.2517,0.8684],[122.2482,0.9139]]}},{"type":"Feature","properties":{"mhid":"1332:447","alt_name":"KABUPATEN GORONTALO","latitude":0.5728,"longitude":122.2337,"sample_value":625},"geometry":{"type":"LineString","coordinates":[[123.0427,0.4963],[123.0437,0.5012],[123.0389,0.5133],[123.0031,0.5412],[123,0.5412],[122.9958,0.548],[123.0043,0.5541],[123.0082,0.5503],[123.0112,0.5515],[123.0239,0.5479],[123.0308,0.5479],[123.0296,0.5525],[123.0252,0.555],[123.0245,0.5588],[123.0308,0.5652],[123.0345,0.5669],[123.0376,0.5716],[123.0438,0.5741],[123.0529,0.5858],[123.0645,0.5884],[123.0619,0.5898],[123.064,0.5975],[123.0587,0.601],[123.0634,0.6126],[123.0457,0.6203],[123.0366,0.6282],[123.043,0.6343],[123.051,0.6466],[123.0561,0.6531],[123.0597,0.664],[123.0647,0.6715],[123.071,0.675],[123.0757,0.693],[123.0807,0.6955],[123.0778,0.7023],[123.0782,0.708],[123.0765,0.7155],[123.0792,0.7191],[123.0763,0.7218],[123.0793,0.7285],[123.0738,0.7423],[123.0766,0.7457],[123.077,0.7554],[123.074,0.7589],[123.0757,0.7719],[123.0735,0.7752],[123.0663,0.7769],[123.0642,0.7838],[123.0678,0.7875],[123.0678,0.7932],[123.0701,0.7981],[123.07,0.8031],[123.0646,0.8006],[123.0558,0.7936],[123.0465,0.7908],[123.0377,0.7825],[123.0258,0.782],[123.0224,0.783],[123.0161,0.791],[123.0097,0.7896],[123.0061,0.7761],[123.0053,0.7703],[123.0012,0.7661],[122.9966,0.7665],[122.9929,0.7614],[122.9879,0.7602],[122.9833,0.7549],[122.9814,0.7451],[122.9775,0.7421],[122.9807,0.7379],[122.9796,0.732],[122.9836,0.7304],[122.976,0.7209],[122.9702,0.7191],[122.9692,0.7156],[122.9434,0.7102],[122.9352,0.7137],[122.9277,0.7085],[122.9288,0.7023],[122.9259,0.6937],[122.9174,0.6893],[122.9117,0.6948],[122.9064,0.6958],[122.9005,0.6995],[122.9025,0.7018],[122.9034,0.7112],[122.8993,0.7125],[122.9037,0.7227],[122.9058,0.7247],[122.907,0.7354],[122.9051,0.7387],[122.9055,0.7472],[122.9012,0.7555],[122.9018,0.7584],[122.894,0.7617],[122.8819,0.7619],[122.8766,0.7649],[122.8644,0.7629],[122.8608,0.7633],[122.8482,0.7607],[122.8434,0.7623],[122.8305,0.755],[122.8266,0.7548],[122.8189,0.751],[122.8082,0.7526],[122.8032,0.7505],[122.797,0.7612],[122.7923,0.7601],[122.7906,0.7564],[122.7805,0.7583],[122.776,0.7561],[122.7711,0.7666],[122.7651,0.7635],[122.7592,0.7675],[122.7526,0.7738],[122.7475,0.7722],[122.7411,0.7764],[122.7331,0.779],[122.7221,0.7812],[122.7179,0.7847],[122.7193,0.7886],[122.7104,0.7907],[122.7065,0.7942],[122.7078,0.7974],[122.7015,0.7989],[122.699,0.8096],[122.6954,0.8109],[122.6842,0.8209],[122.6761,0.8234],[122.6678,0.8308],[122.6639,0.8291],[122.6595,0.8342],[122.6542,0.8377],[122.65,0.8368],[122.6487,0.844],[122.6449,0.8484],[122.6331,0.8473],[122.6209,0.8525],[122.6057,0.8511],[122.6021,0.8549],[122.5939,0.8757],[122.5439,0.8763],[122.524,0.8762],[122.5158,0.8827],[122.4857,0.8825],[122.4818,0.8811],[122.4795,0.8771],[122.4668,0.8788],[122.4569,0.8851],[122.4472,0.8891],[122.4348,0.889],[122.4303,0.8846],[122.4238,0.8853],[122.4154,0.8844],[122.4069,0.8892],[122.3978,0.8981],[122.3922,0.8996],[122.3884,0.8984],[122.3766,0.8994],[122.3695,0.9042],[122.357,0.907],[122.3541,0.9106],[122.3539,0.9162],[122.3508,0.9217],[122.3343,0.921],[122.3295,0.9197],[122.3248,0.9207],[122.3181,0.929],[122.3075,0.9284],[122.305,0.9269],[122.2979,0.9155],[122.2594,0.9272],[122.2535,0.925],[122.2537,0.9213],[122.2482,0.9139],[122.2517,0.8684],[122.2553,0.8634],[122.2483,0.8555],[122.2481,0.8527],[122.2527,0.8491],[122.2612,0.8457],[122.2563,0.8404],[122.2507,0.8315],[122.2538,0.8247],[122.2479,0.8208],[122.2469,0.8126],[122.2501,0.7984],[122.2546,0.7945],[122.2578,0.7942],[122.2647,0.7893],[122.2683,0.7843],[122.282,0.7861],[122.2974,0.7859],[122.303,0.787],[122.3054,0.7916],[122.3163,0.7964],[122.3334,0.7937],[122.3404,0.7951],[122.3428,0.7926],[122.3503,0.7917],[122.352,0.7888],[122.3624,0.7835],[122.3749,0.7807],[122.3858,0.7729],[122.3934,0.7691],[122.3954,0.765],[122.406,0.7609],[122.409,0.764],[122.4156,0.762],[122.4193,0.7572],[122.4279,0.76],[122.4293,0.7552],[122.4351,0.7583],[122.443,0.7659],[122.4482,0.7612],[122.4472,0.7567],[122.4523,0.7539],[122.457,0.7572],[122.4619,0.7565],[122.4653,0.7587],[122.4741,0.7463],[122.4819,0.7428],[122.4806,0.7376],[122.4891,0.7351],[122.4929,0.7364],[122.5016,0.7357],[122.4975,0.7294],[122.4982,0.7248],[122.504,0.7158],[122.5059,0.71],[122.5087,0.7086],[122.5212,0.7088],[122.5213,0.7046],[122.5255,0.7042],[122.5344,0.7002],[122.537,0.702],[122.5452,0.6999],[122.5447,0.6923],[122.5504,0.6926],[122.5558,0.6838],[122.5663,0.6761],[122.5644,0.6713],[122.5694,0.6692],[122.5685,0.6606],[122.572,0.6587],[122.5782,0.6621],[122.5881,0.6534],[122.5952,0.6527],[122.6005,0.647],[122.5991,0.6392],[122.6024,0.6364],[122.603,0.6307],[122.6076,0.6242],[122.6098,0.6188],[122.6099,0.6114],[122.6118,0.6065],[122.6168,0.601],[122.6172,0.5963],[122.6216,0.5972],[122.6222,0.5927],[122.6306,0.5891],[122.63,0.5839],[122.6386,0.5635],[122.633,0.5613],[122.6315,0.5542],[122.6336,0.5479],[122.6284,0.5396],[122.6297,0.5332],[122.6359,0.5348],[122.6377,0.5306],[122.6438,0.5277],[122.6495,0.5179],[122.6519,0.5157],[122.6607,0.5155],[122.6638,0.5133],[122.6749,0.5128],[122.6772,0.5072],[122.6854,0.5038],[122.6876,0.4988],[122.6851,0.4927],[122.6903,0.4916],[122.6918,0.4737],[122.697,0.4759],[122.701,0.4819],[122.7045,0.4787],[122.7087,0.4811],[122.7194,0.4829],[122.724,0.4853],[122.7261,0.4825],[122.7327,0.4837],[122.7374,0.4861],[122.7417,0.4824],[122.7459,0.4816],[122.7491,0.4842],[122.7623,0.4851],[122.7702,0.4836],[122.7817,0.4937],[122.8042,0.4949],[122.8097,0.4944],[122.8121,0.4899],[122.816,0.4891],[122.8234,0.495],[122.8315,0.4942],[122.8355,0.4923],[122.842,0.4939],[122.866,0.4915],[122.8812,0.4888],[122.8882,0.4859],[122.8955,0.4912],[122.9005,0.4928],[122.9074,0.4926],[122.9124,0.4874],[122.9164,0.4875],[122.9164,0.4922],[122.9274,0.4865],[122.9333,0.4866],[122.9585,0.4928],[122.9664,0.4929],[122.974,0.4905],[122.9784,0.4869],[122.989,0.4852],[122.9947,0.4896],[122.9997,0.4956],[123.0025,0.49],[123.0137,0.4936],[123.0193,0.497],[123.0274,0.4913],[123.0293,0.4954],[123.0354,0.4982],[123.0427,0.4963]]}},{"type":"Feature","properties":{"mhid":"1332:448","alt_name":"KABUPATEN POHUWATO","latitude":0.7098,"longitude":121.59582,"sample_value":239},"geometry":{"type":"LineString","coordinates":[[121.8536,0.4309],[121.8512,0.4355],[121.8476,0.4341],[121.8469,0.4302],[121.8536,0.4309]]}},{"type":"Feature","properties":{"mhid":"1332:448","alt_name":"KABUPATEN POHUWATO","latitude":0.7098,"longitude":121.59582,"sample_value":239},"geometry":{"type":"LineString","coordinates":[[121.5644,0.4858],[121.5593,0.4871],[121.5531,0.4818],[121.5596,0.4765],[121.5653,0.4788],[121.5644,0.4858]]}},{"type":"Feature","properties":{"mhid":"1332:448","alt_name":"KABUPATEN POHUWATO","latitude":0.7098,"longitude":121.59582,"sample_value":239},"geometry":{"type":"LineString","coordinates":[[121.6255,0.4898],[121.6208,0.4895],[121.6181,0.485],[121.6216,0.4822],[121.6299,0.4834],[121.6255,0.4898]]}},{"type":"Feature","properties":{"mhid":"1332:448","alt_name":"KABUPATEN POHUWATO","latitude":0.7098,"longitude":121.59582,"sample_value":239},"geometry":{"type":"LineString","coordinates":[[121.519,0.4904],[121.515,0.4864],[121.5219,0.4807],[121.526,0.4842],[121.5244,0.488],[121.519,0.4904]]}},{"type":"Feature","properties":{"mhid":"1332:448","alt_name":"KABUPATEN POHUWATO","latitude":0.7098,"longitude":121.59582,"sample_value":239},"geometry":{"type":"LineString","coordinates":[[121.7034,0.4849],[121.7095,0.4886],[121.7072,0.4933],[121.7066,0.4996],[121.7003,0.5086],[121.6922,0.5133],[121.6835,0.5098],[121.6799,0.4999],[121.6828,0.4934],[121.6873,0.488],[121.6938,0.4852],[121.7034,0.4849]]}},{"type":"Feature","properties":{"mhid":"1332:448","alt_name":"KABUPATEN POHUWATO","latitude":0.7098,"longitude":121.59582,"sample_value":239},"geometry":{"type":"LineString","coordinates":[[121.6786,0.5071],[121.6816,0.5117],[121.6771,0.5157],[121.6744,0.5152],[121.6726,0.5087],[121.6786,0.5071]]}},{"type":"Feature","properties":{"mhid":"1332:448","alt_name":"KABUPATEN POHUWATO","latitude":0.7098,"longitude":121.59582,"sample_value":239},"geometry":{"type":"LineString","coordinates":[[121.9825,0.9074],[121.9758,0.9042],[121.9649,0.9073],[121.9547,0.9077],[121.9442,0.9196],[121.9382,0.9278],[121.932,0.9296],[121.9222,0.9274],[121.9183,0.933],[121.916,0.9418],[121.9071,0.9549],[121.9021,0.9639],[121.894,0.9688],[121.8914,0.9735],[121.8832,0.9794],[121.8788,0.98],[121.8761,0.9831],[121.8676,0.9862],[121.8629,0.9908],[121.8507,0.9924],[121.8467,0.9858],[121.8489,0.9802],[121.8374,0.9738],[121.8294,0.9602],[121.8212,0.9616],[121.8119,0.9502],[121.8064,0.951],[121.7957,0.9488],[121.7856,0.9397],[121.7808,0.9396],[121.7739,0.9361],[121.7666,0.935],[121.7617,0.9322],[121.7449,0.9314],[121.7354,0.9297],[121.7287,0.9248],[121.7165,0.9192],[121.7105,0.918],[121.7052,0.9138],[121.7015,0.9071],[121.6978,0.907],[121.6913,0.9026],[121.6846,0.9005],[121.6734,0.9035],[121.6659,0.8987],[121.659,0.8921],[121.6546,0.8912],[121.6458,0.8952],[121.6352,0.891],[121.6233,0.8821],[121.6104,0.8822],[121.6039,0.8733],[121.5969,0.8724],[121.5879,0.8732],[121.5839,0.8716],[121.5728,0.8708],[121.5669,0.8746],[121.5632,0.8739],[121.5581,0.8778],[121.5478,0.8785],[121.5369,0.8759],[121.5346,0.868],[121.5357,0.8601],[121.533,0.8537],[121.5102,0.8478],[121.5,0.8435],[121.4937,0.8395],[121.4826,0.8397],[121.4766,0.8376],[121.4661,0.8474],[121.4623,0.845],[121.4538,0.8476],[121.4372,0.847],[121.4332,0.8444],[121.4201,0.8442],[121.4165,0.8479],[121.4112,0.8449],[121.4013,0.8434],[121.3998,0.8474],[121.3944,0.851],[121.3899,0.8508],[121.3843,0.8545],[121.3807,0.8527],[121.375,0.8532],[121.3663,0.8493],[121.359,0.8534],[121.3548,0.8502],[121.3499,0.8508],[121.347,0.8483],[121.3484,0.8433],[121.3519,0.8407],[121.3532,0.8331],[121.3505,0.8213],[121.3614,0.8149],[121.3645,0.8068],[121.3634,0.801],[121.358,0.8012],[121.3541,0.799],[121.3533,0.7953],[121.3455,0.7932],[121.3371,0.795],[121.3324,0.7946],[121.3253,0.7915],[121.3201,0.7855],[121.3149,0.7851],[121.3032,0.7955],[121.2927,0.7949],[121.2892,0.7982],[121.2702,0.7958],[121.2561,0.7988],[121.2521,0.7985],[121.2459,0.8012],[121.2375,0.8012],[121.2336,0.797],[121.2153,0.7915],[121.217,0.7829],[121.2142,0.78],[121.2136,0.7734],[121.2092,0.7684],[121.2009,0.7661],[121.1926,0.7669],[121.1864,0.7572],[121.1856,0.75],[121.1821,0.7432],[121.1874,0.7221],[121.1806,0.7138],[121.1786,0.7007],[121.1743,0.693],[121.1715,0.6835],[121.1612,0.6787],[121.1625,0.6766],[121.1664,0.6687],[121.1733,0.6654],[121.1792,0.6551],[121.1944,0.6454],[121.1967,0.6419],[121.2026,0.6426],[121.2113,0.6411],[121.2164,0.6388],[121.221,0.6391],[121.228,0.6454],[121.2318,0.6415],[121.2314,0.6339],[121.2275,0.6292],[121.2311,0.6214],[121.2351,0.6082],[121.2394,0.6022],[121.2428,0.6005],[121.2483,0.6015],[121.2572,0.5951],[121.2618,0.5899],[121.2716,0.5866],[121.2745,0.583],[121.2949,0.5801],[121.3004,0.5753],[121.3027,0.5683],[121.3076,0.5686],[121.3123,0.5743],[121.3188,0.5768],[121.3264,0.5762],[121.3299,0.5745],[121.3371,0.5744],[121.3459,0.5631],[121.3502,0.5556],[121.344,0.547],[121.3477,0.5377],[121.3421,0.5266],[121.3354,0.5264],[121.3332,0.5217],[121.3337,0.5117],[121.339,0.506],[121.3442,0.5056],[121.3437,0.501],[121.3467,0.4946],[121.3516,0.4926],[121.3469,0.4852],[121.3424,0.4835],[121.3419,0.4788],[121.3374,0.4736],[121.351,0.4761],[121.3614,0.471],[121.3723,0.4767],[121.3812,0.477],[121.3908,0.4823],[121.3915,0.4782],[121.3983,0.4791],[121.3988,0.4824],[121.4064,0.4868],[121.4038,0.479],[121.407,0.4747],[121.4118,0.4756],[121.4128,0.4865],[121.4226,0.4831],[121.427,0.4841],[121.4278,0.4897],[121.4319,0.4902],[121.4332,0.4954],[121.4407,0.5009],[121.442,0.4967],[121.4369,0.4923],[121.4376,0.4868],[121.4335,0.4823],[121.4392,0.4777],[121.4419,0.4725],[121.4422,0.4673],[121.4492,0.4668],[121.4565,0.4731],[121.4615,0.474],[121.4708,0.4811],[121.4777,0.4845],[121.4888,0.4829],[121.4938,0.4789],[121.5027,0.4891],[121.5069,0.4866],[121.5105,0.4891],[121.5137,0.4951],[121.5183,0.4955],[121.5201,0.5035],[121.5154,0.5136],[121.5194,0.5194],[121.5173,0.5234],[121.5131,0.5256],[121.515,0.533],[121.5212,0.5336],[121.5212,0.5423],[121.5246,0.5455],[121.5261,0.5511],[121.5346,0.5466],[121.5413,0.5443],[121.5441,0.5457],[121.5493,0.5419],[121.5536,0.5425],[121.5553,0.5375],[121.5596,0.5376],[121.5676,0.5332],[121.5739,0.5325],[121.5778,0.5365],[121.5929,0.5374],[121.5969,0.5341],[121.5982,0.529],[121.6025,0.5277],[121.6075,0.5355],[121.6033,0.5378],[121.6018,0.5472],[121.6075,0.5447],[121.6135,0.5476],[121.6189,0.5482],[121.6201,0.5436],[121.6171,0.538],[121.6175,0.5243],[121.621,0.5229],[121.6259,0.5247],[121.6225,0.5359],[121.6318,0.5335],[121.6364,0.5246],[121.6418,0.5253],[121.6423,0.5301],[121.635,0.5377],[121.6372,0.5442],[121.6401,0.5416],[121.6407,0.5366],[121.647,0.5361],[121.6517,0.533],[121.6525,0.5394],[121.6609,0.531],[121.666,0.5293],[121.6665,0.5229],[121.6722,0.5198],[121.6789,0.5208],[121.6897,0.5151],[121.6938,0.5199],[121.7023,0.5223],[121.704,0.5192],[121.7124,0.519],[121.7116,0.5229],[121.7173,0.5239],[121.7212,0.5205],[121.7137,0.512],[121.7192,0.505],[121.7262,0.502],[121.7308,0.4979],[121.7344,0.4914],[121.749,0.4701],[121.7547,0.4647],[121.7539,0.4614],[121.7654,0.4473],[121.7734,0.4404],[121.7909,0.4307],[121.8012,0.4168],[121.8044,0.4091],[121.8112,0.4188],[121.8157,0.4225],[121.8342,0.4233],[121.842,0.4274],[121.8472,0.4346],[121.852,0.4376],[121.857,0.4321],[121.8629,0.4365],[121.8662,0.4369],[121.8684,0.4419],[121.8765,0.4392],[121.8783,0.4369],[121.8903,0.4396],[121.8916,0.4414],[121.9041,0.4443],[121.9135,0.4425],[121.9177,0.4469],[121.9263,0.4449],[121.9322,0.4465],[121.9358,0.4443],[121.9424,0.448],[121.9535,0.4508],[121.963,0.4521],[121.9713,0.4592],[121.9771,0.457],[121.9782,0.4527],[121.9838,0.4551],[121.9859,0.4603],[121.9999,0.4594],[122.0045,0.4642],[122.0108,0.4646],[122.017,0.4679],[122.0268,0.4672],[122.0469,0.4766],[122.0645,0.4794],[122.0816,0.4766],[122.0912,0.4844],[122.0985,0.4842],[122.1036,0.4877],[122.1106,0.4855],[122.1169,0.4885],[122.1138,0.4966],[122.1195,0.4962],[122.1218,0.5076],[122.1211,0.5233],[122.1187,0.5428],[122.1248,0.5469],[122.13,0.5574],[122.1292,0.5676],[122.1309,0.5848],[122.1345,0.5955],[122.1332,0.6015],[122.1324,0.6202],[122.1326,0.6347],[122.1296,0.6598],[122.1248,0.6829],[122.1227,0.7141],[122.1207,0.7282],[122.1159,0.7859],[122.115,0.8187],[122.1025,0.8222],[122.0899,0.8229],[122.0858,0.8372],[122.0817,0.8436],[122.0825,0.8458],[122.0822,0.8599],[122.088,0.8763],[122.0875,0.8938],[122.0807,0.8976],[122.079,0.9003],[122.0665,0.9013],[122.0538,0.9001],[122.0438,0.8946],[122.0381,0.8868],[122.0314,0.8852],[122.0211,0.8867],[122.0134,0.8912],[122.0031,0.89],[121.998,0.8911],[121.9903,0.8966],[121.9825,0.9074]]}},{"type":"Feature","properties":{"mhid":"1332:449","alt_name":"KABUPATEN BONE BOLANGO","latitude":0.50296,"longitude":123.27501,"sample_value":752},"geometry":{"type":"LineString","coordinates":[[123.2514,0.7536],[123.2428,0.754],[123.2349,0.758],[123.2287,0.7641],[123.2242,0.7614],[123.2148,0.7622],[123.2081,0.7567],[123.2024,0.7572],[123.191,0.753],[123.1879,0.755],[123.1753,0.7564],[123.1666,0.754],[123.1641,0.7567],[123.1616,0.7655],[123.1599,0.776],[123.1492,0.77],[123.1438,0.7713],[123.1346,0.7672],[123.1307,0.7724],[123.1258,0.7739],[123.1285,0.7844],[123.1232,0.7888],[123.1176,0.7891],[123.1107,0.7928],[123.1042,0.7939],[123.0943,0.7984],[123.0898,0.8036],[123.0847,0.8058],[123.0742,0.8058],[123.07,0.8031],[123.0701,0.7981],[123.0678,0.7932],[123.0678,0.7875],[123.0642,0.7838],[123.0663,0.7769],[123.0735,0.7752],[123.0757,0.7719],[123.074,0.7589],[123.077,0.7554],[123.0766,0.7457],[123.0738,0.7423],[123.0793,0.7285],[123.0763,0.7218],[123.0792,0.7191],[123.0765,0.7155],[123.0782,0.708],[123.0778,0.7023],[123.0807,0.6955],[123.0757,0.693],[123.071,0.675],[123.0647,0.6715],[123.0597,0.664],[123.0561,0.6531],[123.051,0.6466],[123.043,0.6343],[123.0366,0.6282],[123.0457,0.6203],[123.0634,0.6126],[123.0587,0.601],[123.064,0.5975],[123.0619,0.5898],[123.0645,0.5884],[123.0728,0.5849],[123.0854,0.5811],[123.091,0.5803],[123.09,0.5658],[123.0876,0.5548],[123.0892,0.5529],[123.0838,0.5422],[123.0795,0.5295],[123.0792,0.523],[123.0814,0.517],[123.087,0.5089],[123.0958,0.5074],[123.099,0.5045],[123.0945,0.4859],[123.0917,0.4826],[123.0874,0.4803],[123.0963,0.4757],[123.0998,0.4754],[123.1064,0.4676],[123.1141,0.4621],[123.1167,0.4586],[123.1217,0.456],[123.121,0.4524],[123.1262,0.4471],[123.127,0.4417],[123.132,0.4405],[123.1321,0.4347],[123.1401,0.4232],[123.1454,0.423],[123.1444,0.4155],[123.1509,0.4145],[123.1519,0.409],[123.1622,0.3998],[123.1746,0.3983],[123.1767,0.3994],[123.1946,0.394],[123.2076,0.3777],[123.2165,0.3729],[123.217,0.3666],[123.2229,0.3609],[123.2249,0.3538],[123.2283,0.3486],[123.2406,0.345],[123.2462,0.3417],[123.2537,0.3334],[123.2614,0.3309],[123.2674,0.3248],[123.2676,0.3224],[123.2765,0.3241],[123.2826,0.3173],[123.2925,0.3159],[123.2961,0.3204],[123.3008,0.3158],[123.3139,0.3133],[123.3276,0.3128],[123.3388,0.3075],[123.3452,0.306],[123.3543,0.3094],[123.3584,0.3144],[123.361,0.3127],[123.371,0.3118],[123.3814,0.3123],[123.3985,0.3153],[123.4095,0.3136],[123.4154,0.3113],[123.4292,0.3162],[123.4337,0.3161],[123.438,0.3186],[123.4438,0.3275],[123.4605,0.3371],[123.4637,0.3331],[123.4632,0.3296],[123.469,0.3229],[123.4764,0.3166],[123.479,0.3189],[123.4829,0.3254],[123.481,0.3369],[123.4837,0.3397],[123.48,0.3469],[123.48,0.3528],[123.4847,0.3561],[123.4937,0.3568],[123.4916,0.3657],[123.496,0.3696],[123.4979,0.3821],[123.511,0.3963],[123.529,0.4075],[123.5317,0.4107],[123.5348,0.4184],[123.5417,0.428],[123.5499,0.433],[123.5474,0.4429],[123.5394,0.4451],[123.5259,0.4536],[123.5248,0.4571],[123.523,0.4904],[123.5463,0.4977],[123.5523,0.5107],[123.5497,0.5142],[123.5473,0.523],[123.5442,0.5261],[123.5316,0.5335],[123.5292,0.5373],[123.5276,0.5449],[123.5335,0.5653],[123.5324,0.5731],[123.5334,0.5769],[123.5207,0.5843],[123.5091,0.5844],[123.5034,0.5914],[123.4943,0.5964],[123.4878,0.6014],[123.4892,0.6119],[123.4922,0.6191],[123.491,0.623],[123.4862,0.6265],[123.4769,0.6297],[123.4625,0.6322],[123.4591,0.6361],[123.455,0.6355],[123.4413,0.6393],[123.4282,0.6414],[123.4234,0.6391],[123.4109,0.6405],[123.3991,0.6409],[123.3925,0.6397],[123.3831,0.6401],[123.3767,0.6452],[123.3635,0.6519],[123.3594,0.6514],[123.3545,0.6573],[123.3543,0.6631],[123.349,0.6675],[123.3484,0.6704],[123.3425,0.6756],[123.3422,0.6796],[123.339,0.6835],[123.3302,0.6872],[123.3238,0.6951],[123.3224,0.6985],[123.3171,0.6978],[123.3024,0.698],[123.2976,0.6959],[123.2876,0.6959],[123.2822,0.6991],[123.2736,0.6982],[123.2592,0.7103],[123.252,0.7176],[123.2471,0.717],[123.2491,0.7283],[123.2462,0.7332],[123.2477,0.7444],[123.2514,0.7536]]}},{"type":"Feature","properties":{"mhid":"1332:450","alt_name":"KABUPATEN GORONTALO UTARA","latitude":0.77,"longitude":122.31667,"sample_value":188},"geometry":{"type":"LineString","coordinates":[[122.8588,0.8991],[122.8542,0.8984],[122.8562,0.8939],[122.8631,0.8916],[122.8745,0.8929],[122.8778,0.8923],[122.8828,0.8859],[122.883,0.8782],[122.8785,0.8701],[122.8783,0.8641],[122.881,0.8604],[122.8865,0.8581],[122.8911,0.8537],[122.895,0.8538],[122.8952,0.859],[122.8983,0.8611],[122.8977,0.8679],[122.8897,0.8741],[122.8929,0.8861],[122.8912,0.8896],[122.8857,0.8904],[122.8834,0.8963],[122.877,0.8973],[122.8689,0.894],[122.8652,0.8985],[122.8588,0.8991]]}},{"type":"Feature","properties":{"mhid":"1332:450","alt_name":"KABUPATEN GORONTALO UTARA","latitude":0.77,"longitude":122.31667,"sample_value":188},"geometry":{"type":"LineString","coordinates":[[122.7706,0.9133],[122.7668,0.9107],[122.7587,0.9105],[122.7561,0.9057],[122.7659,0.8977],[122.7706,0.8926],[122.7749,0.8915],[122.7786,0.8851],[122.7841,0.8818],[122.7856,0.8765],[122.7902,0.8738],[122.7971,0.877],[122.7989,0.874],[122.8071,0.8751],[122.8057,0.8834],[122.8075,0.8869],[122.8124,0.8905],[122.8062,0.8942],[122.8032,0.8912],[122.7976,0.8929],[122.7954,0.8979],[122.7922,0.896],[122.7894,0.9025],[122.7847,0.9035],[122.7783,0.8989],[122.776,0.9004],[122.7753,0.9111],[122.7706,0.9133]]}},{"type":"Feature","properties":{"mhid":"1332:450","alt_name":"KABUPATEN GORONTALO UTARA","latitude":0.77,"longitude":122.31667,"sample_value":188},"geometry":{"type":"LineString","coordinates":[[122.6624,1.003],[122.6535,0.9983],[122.6548,0.9927],[122.6588,0.9926],[122.6652,0.9872],[122.6661,1.0006],[122.6624,1.003]]}},{"type":"Feature","properties":{"mhid":"1332:450","alt_name":"KABUPATEN GORONTALO UTARA","latitude":0.77,"longitude":122.31667,"sample_value":188},"geometry":{"type":"LineString","coordinates":[[123.1154,0.9241],[123.1141,0.9261],[123.0997,0.9276],[123.0953,0.9303],[123.0937,0.923],[123.0984,0.9208],[123.0965,0.9133],[123.0855,0.9101],[123.084,0.9144],[123.0806,0.9152],[123.0816,0.9208],[123.0853,0.9227],[123.0851,0.9299],[123.076,0.9225],[123.0754,0.9172],[123.0674,0.9166],[123.0643,0.9218],[123.0601,0.9191],[123.0568,0.9227],[123.0529,0.9332],[123.0484,0.9354],[123.047,0.9395],[123.0419,0.939],[123.0399,0.9334],[123.0359,0.9323],[123.0204,0.9339],[123.015,0.9381],[123.0118,0.9442],[123.0038,0.9431],[122.9975,0.944],[122.9971,0.9485],[123.0002,0.9539],[122.9943,0.9619],[122.9862,0.9679],[122.9763,0.9658],[122.97,0.9672],[122.9623,0.9648],[122.9547,0.9638],[122.945,0.9648],[122.939,0.9592],[122.9427,0.9524],[122.9398,0.9444],[122.9463,0.9398],[122.9545,0.9381],[122.9567,0.9363],[122.9688,0.9383],[122.976,0.9408],[122.9751,0.9364],[122.9664,0.9329],[122.962,0.9271],[122.9459,0.9128],[122.9506,0.9055],[122.9485,0.9014],[122.9511,0.8982],[122.9468,0.8952],[122.9448,0.8904],[122.9402,0.8923],[122.9352,0.889],[122.924,0.8755],[122.9269,0.8724],[122.9262,0.8683],[122.9214,0.8674],[122.9211,0.8606],[122.9099,0.8561],[122.905,0.8525],[122.9008,0.8525],[122.8936,0.8429],[122.8885,0.8416],[122.8801,0.8312],[122.871,0.8264],[122.8636,0.8282],[122.8597,0.8267],[122.858,0.8203],[122.8605,0.8141],[122.8587,0.8085],[122.8517,0.8093],[122.8496,0.8027],[122.8447,0.8024],[122.8407,0.8119],[122.8427,0.8146],[122.8397,0.8218],[122.836,0.8194],[122.8299,0.8198],[122.8254,0.8274],[122.8262,0.8323],[122.8237,0.8392],[122.8172,0.8312],[122.813,0.836],[122.8114,0.841],[122.8083,0.8421],[122.8054,0.8363],[122.7961,0.8348],[122.7945,0.842],[122.7912,0.8475],[122.8004,0.8454],[122.7997,0.8518],[122.7938,0.8601],[122.7881,0.8609],[122.7893,0.8648],[122.7722,0.8796],[122.7668,0.8737],[122.7692,0.8664],[122.7667,0.8624],[122.7633,0.8621],[122.7598,0.8661],[122.7563,0.8646],[122.7516,0.8697],[122.7525,0.8748],[122.7482,0.8748],[122.7419,0.8802],[122.7378,0.8802],[122.7322,0.8705],[122.7274,0.8738],[122.7225,0.8706],[122.7211,0.8668],[122.7132,0.8674],[122.7137,0.8753],[122.7157,0.8815],[122.7201,0.8864],[122.7123,0.892],[122.7064,0.8881],[122.6993,0.8892],[122.6945,0.8958],[122.6893,0.894],[122.6827,0.8997],[122.6811,0.9082],[122.679,0.9126],[122.6743,0.915],[122.6714,0.9232],[122.6689,0.9256],[122.6638,0.935],[122.6585,0.9337],[122.6577,0.9403],[122.6506,0.9479],[122.6395,0.9421],[122.634,0.9506],[122.6278,0.9539],[122.6225,0.9541],[122.623,0.9626],[122.6188,0.9613],[122.6149,0.9545],[122.6163,0.9519],[122.6146,0.9458],[122.6097,0.9447],[122.6023,0.9525],[122.5945,0.9544],[122.5867,0.953],[122.5719,0.9598],[122.5639,0.9592],[122.5508,0.9671],[122.5505,0.9704],[122.5432,0.9714],[122.5388,0.9696],[122.5268,0.9756],[122.5176,0.9791],[122.512,0.98],[122.5051,0.9853],[122.494,0.9874],[122.4875,0.9909],[122.4879,0.9937],[122.4838,0.9997],[122.4765,0.9995],[122.4701,1.0103],[122.4703,1.0147],[122.4618,1.0177],[122.4643,1.022],[122.4579,1.0286],[122.4523,1.0319],[122.447,1.0301],[122.4409,1.0238],[122.4397,1.0202],[122.4449,1.0172],[122.4407,1.0134],[122.4451,0.9992],[122.4404,0.9984],[122.4362,0.9943],[122.429,0.9943],[122.4204,0.9913],[122.411,0.9938],[122.4102,0.9993],[122.406,1.0039],[122.4011,1.0047],[122.4013,1.0082],[122.3931,1.0138],[122.3894,1.0032],[122.3833,1.0044],[122.3772,0.9993],[122.3745,0.9948],[122.3702,0.9934],[122.3619,0.9962],[122.3623,1.0018],[122.3589,1.0052],[122.3594,1.0099],[122.3501,1.0143],[122.3502,1.0213],[122.3461,1.0217],[122.3377,1.0283],[122.3359,1.0315],[122.3364,1.0409],[122.3289,1.0371],[122.3297,1.0303],[122.3281,1.0261],[122.3308,1.0222],[122.3257,1.0194],[122.3194,1.0203],[122.3162,1.017],[122.3175,1.0135],[122.3153,1.0057],[122.3103,1.0069],[122.3026,1.0033],[122.297,1.0081],[122.2907,1.0051],[122.2846,1.0045],[122.2714,1.0096],[122.2682,1.0128],[122.2621,1.0126],[122.255,1.0028],[122.2485,1.0032],[122.2481,1.0065],[122.2419,1.0101],[122.2382,1.0053],[122.2385,0.9971],[122.236,0.9939],[122.2272,0.993],[122.2221,0.9983],[122.2213,1.0081],[122.2235,1.0114],[122.2284,1.013],[122.2223,1.0253],[122.2177,1.0209],[122.213,1.0192],[122.2092,1.0206],[122.1997,1.0272],[122.1937,1.0358],[122.1955,1.0385],[122.1892,1.0393],[122.1873,1.0374],[122.1755,1.0363],[122.1753,1.0302],[122.1703,1.0278],[122.1606,1.0299],[122.1563,1.0256],[122.1489,1.0215],[122.1405,1.0185],[122.1363,1.0199],[122.1255,1.0182],[122.1216,1.0121],[122.1131,1.0131],[122.1013,1.0047],[122.0927,0.9998],[122.0844,0.9986],[122.0768,1.0064],[122.071,1.0041],[122.0595,0.9968],[122.0566,0.997],[122.0449,0.9891],[122.0423,0.9895],[122.0351,0.9762],[122.0303,0.9705],[122.0251,0.9603],[122.0179,0.9569],[122.017,0.9546],[122.01,0.952],[122.0077,0.9484],[121.9991,0.9425],[121.9945,0.9425],[121.9885,0.9354],[121.9837,0.9275],[121.9836,0.9217],[121.9865,0.9191],[121.9852,0.9105],[121.9825,0.9074],[121.9903,0.8966],[121.998,0.8911],[122.0031,0.89],[122.0134,0.8912],[122.0211,0.8867],[122.0314,0.8852],[122.0381,0.8868],[122.0438,0.8946],[122.0538,0.9001],[122.0665,0.9013],[122.079,0.9003],[122.0801,0.9087],[122.0826,0.9134],[122.0829,0.9235],[122.0857,0.926],[122.0937,0.9205],[122.1014,0.9299],[122.1055,0.9335],[122.109,0.929],[122.1106,0.9218],[122.1164,0.9196],[122.1154,0.9122],[122.1176,0.9091],[122.1296,0.9043],[122.1358,0.9081],[122.1401,0.9142],[122.1433,0.9133],[122.1453,0.9084],[122.1556,0.9054],[122.1596,0.9062],[122.1627,0.911],[122.1685,0.9137],[122.1834,0.9112],[122.1882,0.9065],[122.2015,0.9],[122.2108,0.8979],[122.2152,0.9019],[122.2267,0.905],[122.2294,0.9096],[122.2353,0.9116],[122.2412,0.9113],[122.2482,0.9139],[122.2537,0.9213],[122.2535,0.925],[122.2594,0.9272],[122.2979,0.9155],[122.305,0.9269],[122.3075,0.9284],[122.3181,0.929],[122.3248,0.9207],[122.3295,0.9197],[122.3343,0.921],[122.3508,0.9217],[122.3539,0.9162],[122.3541,0.9106],[122.357,0.907],[122.3695,0.9042],[122.3766,0.8994],[122.3884,0.8984],[122.3922,0.8996],[122.3978,0.8981],[122.4069,0.8892],[122.4154,0.8844],[122.4238,0.8853],[122.4303,0.8846],[122.4348,0.889],[122.4472,0.8891],[122.4569,0.8851],[122.4668,0.8788],[122.4795,0.8771],[122.4818,0.8811],[122.4857,0.8825],[122.5158,0.8827],[122.524,0.8762],[122.5439,0.8763],[122.5939,0.8757],[122.6021,0.8549],[122.6057,0.8511],[122.6209,0.8525],[122.6331,0.8473],[122.6449,0.8484],[122.6487,0.844],[122.65,0.8368],[122.6542,0.8377],[122.6595,0.8342],[122.6639,0.8291],[122.6678,0.8308],[122.6761,0.8234],[122.6842,0.8209],[122.6954,0.8109],[122.699,0.8096],[122.7015,0.7989],[122.7078,0.7974],[122.7065,0.7942],[122.7104,0.7907],[122.7193,0.7886],[122.7179,0.7847],[122.7221,0.7812],[122.7331,0.779],[122.7411,0.7764],[122.7475,0.7722],[122.7526,0.7738],[122.7592,0.7675],[122.7651,0.7635],[122.7711,0.7666],[122.776,0.7561],[122.7805,0.7583],[122.7906,0.7564],[122.7923,0.7601],[122.797,0.7612],[122.8032,0.7505],[122.8082,0.7526],[122.8189,0.751],[122.8266,0.7548],[122.8305,0.755],[122.8434,0.7623],[122.8482,0.7607],[122.8608,0.7633],[122.8644,0.7629],[122.8766,0.7649],[122.8819,0.7619],[122.894,0.7617],[122.9018,0.7584],[122.9012,0.7555],[122.9055,0.7472],[122.9051,0.7387],[122.907,0.7354],[122.9058,0.7247],[122.9037,0.7227],[122.8993,0.7125],[122.9034,0.7112],[122.9025,0.7018],[122.9005,0.6995],[122.9064,0.6958],[122.9117,0.6948],[122.9174,0.6893],[122.9259,0.6937],[122.9288,0.7023],[122.9277,0.7085],[122.9352,0.7137],[122.9434,0.7102],[122.9692,0.7156],[122.9702,0.7191],[122.976,0.7209],[122.9836,0.7304],[122.9796,0.732],[122.9807,0.7379],[122.9775,0.7421],[122.9814,0.7451],[122.9833,0.7549],[122.9879,0.7602],[122.9929,0.7614],[122.9966,0.7665],[123.0012,0.7661],[123.0053,0.7703],[123.0061,0.7761],[123.0097,0.7896],[123.0161,0.791],[123.0224,0.783],[123.0258,0.782],[123.0377,0.7825],[123.0465,0.7908],[123.0558,0.7936],[123.0646,0.8006],[123.07,0.8031],[123.0742,0.8058],[123.0847,0.8058],[123.0898,0.8036],[123.0943,0.7984],[123.1042,0.7939],[123.1107,0.7928],[123.1176,0.7891],[123.1232,0.7888],[123.1285,0.7844],[123.1258,0.7739],[123.1307,0.7724],[123.1346,0.7672],[123.1438,0.7713],[123.1492,0.77],[123.1599,0.776],[123.1616,0.7655],[123.1641,0.7567],[123.1666,0.754],[123.1753,0.7564],[123.1879,0.755],[123.191,0.753],[123.2024,0.7572],[123.2081,0.7567],[123.2148,0.7622],[123.2242,0.7614],[123.2287,0.7641],[123.2349,0.758],[123.2428,0.754],[123.2514,0.7536],[123.2533,0.757],[123.2649,0.7644],[123.2686,0.7681],[123.2698,0.7772],[123.2741,0.7867],[123.2742,0.7894],[123.2675,0.796],[123.2696,0.8037],[123.2605,0.8097],[123.25,0.8194],[123.2427,0.8311],[123.233,0.8331],[123.2289,0.8366],[123.2262,0.8428],[123.2199,0.8472],[123.2109,0.8496],[123.2061,0.8568],[123.1986,0.8563],[123.1919,0.8622],[123.1849,0.8607],[123.1775,0.8624],[123.1757,0.8684],[123.167,0.8697],[123.1657,0.8731],[123.1517,0.871],[123.1505,0.8767],[123.1426,0.8765],[123.1307,0.8839],[123.1267,0.8908],[123.121,0.8899],[123.1196,0.895],[123.1199,0.9037],[123.1154,0.9059],[123.1133,0.915],[123.1154,0.9241]]}},{"type":"Feature","properties":{"mhid":"1332:451","alt_name":"KOTA GORONTALO","latitude":0.53333,"longitude":123.1,"sample_value":86},"geometry":{"type":"LineString","coordinates":[[123.0645,0.5884],[123.0529,0.5858],[123.0438,0.5741],[123.0376,0.5716],[123.0345,0.5669],[123.0308,0.5652],[123.0245,0.5588],[123.0252,0.555],[123.0296,0.5525],[123.0308,0.5479],[123.0239,0.5479],[123.0112,0.5515],[123.0082,0.5503],[123.0043,0.5541],[122.9958,0.548],[123,0.5412],[123.0031,0.5412],[123.0389,0.5133],[123.0437,0.5012],[123.0427,0.4963],[123.0491,0.4933],[123.0487,0.5005],[123.0513,0.5038],[123.0586,0.507],[123.0627,0.5058],[123.0689,0.4978],[123.0739,0.4936],[123.0783,0.4922],[123.0785,0.4886],[123.0855,0.4865],[123.0874,0.4803],[123.0917,0.4826],[123.0945,0.4859],[123.099,0.5045],[123.0958,0.5074],[123.087,0.5089],[123.0814,0.517],[123.0792,0.523],[123.0795,0.5295],[123.0838,0.5422],[123.0892,0.5529],[123.0876,0.5548],[123.09,0.5658],[123.091,0.5803],[123.0854,0.5811],[123.0728,0.5849],[123.0645,0.5884]]}},{"type":"Feature","properties":{"mhid":"1332:452","alt_name":"KABUPATEN MAJENE","latitude":-3.15,"longitude":118.86667,"sample_value":562},"geometry":{"type":"LineString","coordinates":[[119.0272,-2.9637],[119.0075,-2.955],[119.0051,-2.9463],[119.0006,-2.9384],[118.9965,-2.9342],[118.9942,-2.9275],[118.9814,-2.9276],[118.9769,-2.923],[118.969,-2.9265],[118.9629,-2.9239],[118.9565,-2.9275],[118.9488,-2.9226],[118.945,-2.9158],[118.9369,-2.918],[118.9329,-2.9223],[118.917,-2.9283],[118.8937,-2.9328],[118.8842,-2.9303],[118.8838,-2.9264],[118.8783,-2.9227],[118.876,-2.9231],[118.8751,-2.9339],[118.8711,-2.9438],[118.8688,-2.9462],[118.8697,-2.9558],[118.857,-2.9785],[118.8497,-2.9875],[118.8481,-2.9918],[118.8489,-3.0024],[118.8477,-3.0075],[118.8505,-3.0111],[118.8549,-3.0114],[118.8571,-3.0195],[118.8606,-3.0217],[118.8592,-3.0279],[118.8607,-3.0318],[118.8518,-3.05],[118.8485,-3.0533],[118.8443,-3.0644],[118.8396,-3.0814],[118.8313,-3.0854],[118.8296,-3.0883],[118.8245,-3.089],[118.8196,-3.086],[118.8162,-3.0865],[118.8128,-3.083],[118.8084,-3.0827],[118.8046,-3.0797],[118.8019,-3.0717],[118.7963,-3.0719],[118.7969,-3.081],[118.7923,-3.0844],[118.7886,-3.0836],[118.7859,-3.0794],[118.7804,-3.079],[118.7776,-3.0836],[118.7784,-3.0893],[118.7764,-3.0927],[118.7763,-3.1043],[118.7776,-3.1101],[118.7816,-3.1189],[118.7804,-3.1212],[118.789,-3.135],[118.799,-3.1439],[118.808,-3.1476],[118.8129,-3.1544],[118.8164,-3.1556],[118.8166,-3.1598],[118.8202,-3.1636],[118.8267,-3.1651],[118.8298,-3.1705],[118.8294,-3.1805],[118.8324,-3.1858],[118.8338,-3.1923],[118.8365,-3.1955],[118.8365,-3.2017],[118.8402,-3.2098],[118.838,-3.2194],[118.8337,-3.2226],[118.8342,-3.2258],[118.8286,-3.2322],[118.8348,-3.2462],[118.8343,-3.2524],[118.836,-3.2597],[118.8406,-3.2627],[118.8438,-3.2757],[118.8464,-3.2827],[118.8512,-3.2861],[118.8523,-3.2943],[118.8564,-3.2963],[118.8573,-3.3056],[118.8535,-3.3122],[118.8474,-3.3132],[118.8435,-3.3197],[118.8416,-3.3329],[118.8443,-3.3396],[118.8513,-3.3425],[118.8514,-3.3456],[118.8449,-3.3536],[118.8445,-3.3634],[118.8482,-3.3708],[118.8443,-3.3772],[118.8457,-3.3806],[118.8499,-3.3827],[118.849,-3.3891],[118.8594,-3.3999],[118.8683,-3.4173],[118.87,-3.4272],[118.8783,-3.4408],[118.8794,-3.4478],[118.8782,-3.4561],[118.8774,-3.4722],[118.8873,-3.4855],[118.8926,-3.4839],[118.8951,-3.487],[118.8951,-3.4929],[118.8931,-3.4978],[118.8946,-3.5026],[118.8998,-3.5097],[118.9013,-3.5153],[118.9062,-3.5252],[118.9097,-3.5284],[118.9152,-3.5372],[118.9217,-3.5401],[118.9268,-3.5489],[118.9278,-3.5585],[118.9326,-3.563],[118.9351,-3.569],[118.9426,-3.5688],[118.9455,-3.5642],[118.9448,-3.5577],[118.95,-3.5495],[118.9591,-3.5506],[118.9678,-3.5449],[118.9781,-3.5493],[118.9805,-3.5566],[118.9935,-3.5648],[119.0012,-3.5618],[118.9953,-3.5552],[118.9967,-3.5466],[119.0057,-3.533],[119.0013,-3.5279],[118.9987,-3.5206],[118.9947,-3.52],[118.9939,-3.5108],[118.9874,-3.5003],[118.9845,-3.4973],[118.9764,-3.4992],[118.9726,-3.4996],[118.9686,-3.4952],[118.9659,-3.4938],[118.9609,-3.4758],[118.9524,-3.4651],[118.9501,-3.4517],[118.9405,-3.4376],[118.9245,-3.4196],[118.9158,-3.4091],[118.9154,-3.4063],[118.9196,-3.3995],[118.9179,-3.3921],[118.9192,-3.3715],[118.9145,-3.3671],[118.9114,-3.3466],[118.9069,-3.3352],[118.9051,-3.3275],[118.9101,-3.3117],[118.9129,-3.3075],[118.92,-3.3024],[118.9212,-3.2974],[118.9194,-3.2886],[118.9155,-3.2782],[118.9091,-3.2435],[118.9087,-3.2392],[118.9135,-3.2267],[118.9132,-3.2221],[118.9064,-3.2146],[118.8981,-3.1977],[118.8988,-3.1896],[118.9033,-3.1783],[118.9109,-3.1695],[118.9236,-3.1639],[118.9435,-3.1579],[118.9535,-3.1587],[118.9523,-3.1503],[118.9542,-3.1427],[118.9533,-3.1387],[118.9491,-3.1361],[118.9532,-3.1271],[118.9506,-3.1233],[118.9516,-3.1171],[118.9461,-3.1059],[118.9504,-3.1001],[118.9555,-3.0885],[118.9588,-3.0864],[118.9726,-3.0918],[118.9839,-3.0925],[119.0086,-3.0872],[119.0412,-3.086],[119.0468,-3.0876],[119.0483,-3.0904],[119.0648,-3.1049],[119.0671,-3.0999],[119.0683,-3.0878],[119.0639,-3.0852],[119.0669,-3.078],[119.0625,-3.074],[119.0658,-3.0684],[119.0635,-3.0609],[119.0589,-3.0563],[119.0595,-3.0497],[119.0629,-3.0464],[119.0726,-3.0421],[119.0755,-3.0394],[119.0786,-3.0309],[119.0833,-3.0281],[119.0815,-3.016],[119.0823,-3.0128],[119.09,-3.0078],[119.0939,-3.0072],[119.0968,-3.0036],[119.095,-2.9999],[119.0695,-2.9939],[119.0676,-2.9869],[119.0522,-2.9804],[119.0349,-2.9681],[119.0272,-2.9637]]}},{"type":"Feature","properties":{"mhid":"1332:453","alt_name":"KABUPATEN POLEWALI MANDAR","latitude":-3.3,"longitude":119.16667,"sample_value":487},"geometry":{"type":"LineString","coordinates":[[119.3712,-3.4673],[119.3627,-3.4712],[119.3638,-3.4839],[119.3719,-3.4841],[119.3735,-3.4808],[119.3697,-3.4766],[119.3717,-3.4721],[119.3712,-3.4673]]}},{"type":"Feature","properties":{"mhid":"1332:453","alt_name":"KABUPATEN POLEWALI MANDAR","latitude":-3.3,"longitude":119.16667,"sample_value":487},"geometry":{"type":"LineString","coordinates":[[119.4185,-3.4691],[119.4147,-3.4672],[119.4081,-3.4743],[119.4167,-3.4757],[119.4185,-3.4691]]}},{"type":"Feature","properties":{"mhid":"1332:453","alt_name":"KABUPATEN POLEWALI MANDAR","latitude":-3.3,"longitude":119.16667,"sample_value":487},"geometry":{"type":"LineString","coordinates":[[119.3907,-3.4649],[119.3891,-3.4698],[119.3931,-3.4768],[119.395,-3.4763],[119.3946,-3.4664],[119.3907,-3.4649]]}},{"type":"Feature","properties":{"mhid":"1332:453","alt_name":"KABUPATEN POLEWALI MANDAR","latitude":-3.3,"longitude":119.16667,"sample_value":487},"geometry":{"type":"LineString","coordinates":[[119.4402,-3.3383],[119.438,-3.3323],[119.4356,-3.3312],[119.4327,-3.3227],[119.4229,-3.3182],[119.4119,-3.3197],[119.4091,-3.3146],[119.4016,-3.3064],[119.3863,-3.3029],[119.3784,-3.2997],[119.3723,-3.2954],[119.366,-3.2931],[119.3604,-3.2931],[119.3536,-3.2895],[119.3453,-3.289],[119.3345,-3.2792],[119.3234,-3.2742],[119.3168,-3.2668],[119.31,-3.2636],[119.3046,-3.2634],[119.3015,-3.2575],[119.2952,-3.2527],[119.2906,-3.2397],[119.2894,-3.2327],[119.2928,-3.2226],[119.289,-3.2092],[119.2889,-3.2013],[119.2798,-3.1854],[119.2688,-3.1779],[119.2647,-3.1765],[119.2562,-3.1658],[119.2522,-3.1438],[119.2538,-3.1356],[119.2538,-3.1265],[119.2442,-3.1137],[119.2267,-3.0936],[119.2239,-3.0876],[119.2238,-3.0724],[119.2141,-3.074],[119.2105,-3.0789],[119.2003,-3.0858],[119.1918,-3.0899],[119.1809,-3.0988],[119.1767,-3.1053],[119.1694,-3.1054],[119.1611,-3.1129],[119.148,-3.1173],[119.1345,-3.1057],[119.1304,-3.0972],[119.123,-3.0941],[119.1109,-3.0927],[119.1074,-3.097],[119.0979,-3.1054],[119.0924,-3.1039],[119.0881,-3.1051],[119.0812,-3.1131],[119.0743,-3.112],[119.07,-3.1069],[119.0648,-3.1049],[119.0483,-3.0904],[119.0468,-3.0876],[119.0412,-3.086],[119.0086,-3.0872],[118.9839,-3.0925],[118.9726,-3.0918],[118.9588,-3.0864],[118.9555,-3.0885],[118.9504,-3.1001],[118.9461,-3.1059],[118.9516,-3.1171],[118.9506,-3.1233],[118.9532,-3.1271],[118.9491,-3.1361],[118.9533,-3.1387],[118.9542,-3.1427],[118.9523,-3.1503],[118.9535,-3.1587],[118.9435,-3.1579],[118.9236,-3.1639],[118.9109,-3.1695],[118.9033,-3.1783],[118.8988,-3.1896],[118.8981,-3.1977],[118.9064,-3.2146],[118.9132,-3.2221],[118.9135,-3.2267],[118.9087,-3.2392],[118.9091,-3.2435],[118.9155,-3.2782],[118.9194,-3.2886],[118.9212,-3.2974],[118.92,-3.3024],[118.9129,-3.3075],[118.9101,-3.3117],[118.9051,-3.3275],[118.9069,-3.3352],[118.9114,-3.3466],[118.9145,-3.3671],[118.9192,-3.3715],[118.9179,-3.3921],[118.9196,-3.3995],[118.9154,-3.4063],[118.9158,-3.4091],[118.9245,-3.4196],[118.9405,-3.4376],[118.9501,-3.4517],[118.9524,-3.4651],[118.9609,-3.4758],[118.9659,-3.4938],[118.9686,-3.4952],[118.9726,-3.4996],[118.9764,-3.4992],[118.9826,-3.4957],[118.9845,-3.4973],[118.9874,-3.5003],[118.9939,-3.5108],[118.9947,-3.52],[118.9987,-3.5206],[119.0013,-3.5279],[119.0057,-3.533],[119.0184,-3.5203],[119.0207,-3.5164],[119.03,-3.5137],[119.0375,-3.5163],[119.0416,-3.5155],[119.0467,-3.5112],[119.0571,-3.5051],[119.0647,-3.5025],[119.0786,-3.5049],[119.0883,-3.5089],[119.1018,-3.5128],[119.1069,-3.5165],[119.1191,-3.5126],[119.125,-3.5015],[119.1356,-3.4941],[119.1543,-3.4913],[119.1643,-3.4883],[119.1736,-3.4888],[119.1854,-3.4919],[119.197,-3.4938],[119.2169,-3.4866],[119.2229,-3.4854],[119.2354,-3.486],[119.2403,-3.4808],[119.2421,-3.4724],[119.246,-3.4663],[119.2636,-3.457],[119.2823,-3.4533],[119.2894,-3.4462],[119.2781,-3.4487],[119.2787,-3.4411],[119.2836,-3.4312],[119.288,-3.4292],[119.2929,-3.4311],[119.3003,-3.4258],[119.3071,-3.4252],[119.317,-3.4277],[119.3304,-3.4346],[119.3346,-3.4323],[119.3441,-3.4344],[119.3499,-3.4399],[119.3556,-3.4421],[119.3616,-3.4496],[119.3671,-3.4533],[119.3681,-3.4577],[119.374,-3.4634],[119.3785,-3.4578],[119.3775,-3.4538],[119.3872,-3.45],[119.3896,-3.457],[119.3958,-3.4561],[119.4012,-3.4586],[119.4046,-3.464],[119.4114,-3.4667],[119.4167,-3.4638],[119.4158,-3.461],[119.4224,-3.4575],[119.4269,-3.4593],[119.4273,-3.4719],[119.4307,-3.4745],[119.4361,-3.4743],[119.4398,-3.4783],[119.445,-3.4763],[119.4534,-3.4789],[119.4615,-3.4861],[119.4741,-3.5029],[119.4844,-3.4926],[119.4847,-3.4885],[119.488,-3.4839],[119.4911,-3.4841],[119.4924,-3.4746],[119.49,-3.4735],[119.4767,-3.4592],[119.4785,-3.4505],[119.4763,-3.4495],[119.4688,-3.4333],[119.4721,-3.4304],[119.4703,-3.425],[119.4727,-3.4122],[119.4671,-3.4065],[119.4667,-3.3974],[119.4649,-3.3893],[119.46,-3.387],[119.4592,-3.3834],[119.4652,-3.3787],[119.4632,-3.3731],[119.4549,-3.3662],[119.45,-3.3554],[119.4382,-3.3518],[119.4309,-3.3468],[119.4312,-3.3392],[119.4365,-3.3399],[119.4402,-3.3383]]}},{"type":"Feature","properties":{"mhid":"1332:454","alt_name":"KABUPATEN MAMASA","latitude":-2.96492,"longitude":119.30631,"sample_value":61},"geometry":{"type":"LineString","coordinates":[[119.5834,-2.7476],[119.5681,-2.7382],[119.5693,-2.7323],[119.5528,-2.7285],[119.5448,-2.7319],[119.5405,-2.736],[119.5328,-2.7374],[119.5258,-2.7422],[119.5094,-2.7389],[119.5007,-2.7426],[119.4924,-2.7393],[119.4849,-2.7405],[119.4789,-2.7463],[119.4797,-2.7501],[119.4477,-2.7676],[119.4418,-2.7672],[119.4219,-2.7806],[119.4141,-2.7823],[119.4096,-2.7818],[119.3947,-2.769],[119.3884,-2.7662],[119.3758,-2.7464],[119.3711,-2.7481],[119.3493,-2.7441],[119.3428,-2.7412],[119.3353,-2.7357],[119.3279,-2.7371],[119.3141,-2.7302],[119.3102,-2.731],[119.3051,-2.729],[119.3024,-2.7228],[119.3028,-2.7184],[119.2982,-2.7084],[119.2829,-2.7074],[119.2735,-2.7099],[119.271,-2.7081],[119.2648,-2.7105],[119.2539,-2.7129],[119.2517,-2.7111],[119.2379,-2.7134],[119.232,-2.7124],[119.2292,-2.7084],[119.2186,-2.6994],[119.2184,-2.6914],[119.2095,-2.6839],[119.2075,-2.6778],[119.2007,-2.6691],[119.1936,-2.6627],[119.1873,-2.6604],[119.1811,-2.6602],[119.1783,-2.6626],[119.1729,-2.6604],[119.1643,-2.6623],[119.1612,-2.6709],[119.152,-2.6718],[119.1477,-2.6685],[119.1434,-2.6685],[119.1386,-2.6617],[119.1376,-2.6545],[119.1308,-2.6587],[119.1255,-2.659],[119.1229,-2.6568],[119.117,-2.6623],[119.112,-2.6635],[119.1015,-2.6705],[119.097,-2.6792],[119.0856,-2.6881],[119.0828,-2.6922],[119.0808,-2.7024],[119.0762,-2.7002],[119.0696,-2.7017],[119.0638,-2.7052],[119.061,-2.7048],[119.0545,-2.7182],[119.0524,-2.7196],[119.0447,-2.7367],[119.0417,-2.7404],[119.0424,-2.7442],[119.0397,-2.7514],[119.0286,-2.7495],[119.0246,-2.7504],[119.0231,-2.7596],[119.0184,-2.7631],[119.0193,-2.7669],[119.0138,-2.7727],[119.0134,-2.779],[119.0251,-2.8061],[119.0211,-2.8129],[119.0227,-2.8166],[119.023,-2.826],[119.0216,-2.8399],[119.0156,-2.8525],[119.0108,-2.854],[119.0155,-2.8639],[119.0138,-2.8709],[119.0225,-2.879],[119.0252,-2.8841],[119.0226,-2.894],[119.0248,-2.9094],[119.0313,-2.9205],[119.0337,-2.9287],[119.0296,-2.9333],[119.0291,-2.9446],[119.0267,-2.9508],[119.0257,-2.9606],[119.0272,-2.9637],[119.0349,-2.9681],[119.0522,-2.9804],[119.0676,-2.9869],[119.0695,-2.9939],[119.095,-2.9999],[119.0968,-3.0036],[119.0939,-3.0072],[119.09,-3.0078],[119.0823,-3.0128],[119.0815,-3.016],[119.0833,-3.0281],[119.0786,-3.0309],[119.0755,-3.0394],[119.0726,-3.0421],[119.0629,-3.0464],[119.0595,-3.0497],[119.0589,-3.0563],[119.0635,-3.0609],[119.0658,-3.0684],[119.0625,-3.074],[119.0669,-3.078],[119.0639,-3.0852],[119.0683,-3.0878],[119.0671,-3.0999],[119.0648,-3.1049],[119.07,-3.1069],[119.0743,-3.112],[119.0812,-3.1131],[119.0881,-3.1051],[119.0924,-3.1039],[119.0979,-3.1054],[119.1074,-3.097],[119.1109,-3.0927],[119.123,-3.0941],[119.1304,-3.0972],[119.1345,-3.1057],[119.148,-3.1173],[119.1611,-3.1129],[119.1694,-3.1054],[119.1767,-3.1053],[119.1809,-3.0988],[119.1918,-3.0899],[119.2003,-3.0858],[119.2105,-3.0789],[119.2141,-3.074],[119.2238,-3.0724],[119.2239,-3.0876],[119.2267,-3.0936],[119.2442,-3.1137],[119.2538,-3.1265],[119.2538,-3.1356],[119.2522,-3.1438],[119.2562,-3.1658],[119.2647,-3.1765],[119.2688,-3.1779],[119.2798,-3.1854],[119.2889,-3.2013],[119.289,-3.2092],[119.2928,-3.2226],[119.2894,-3.2327],[119.2906,-3.2397],[119.2952,-3.2527],[119.3015,-3.2575],[119.3046,-3.2634],[119.31,-3.2636],[119.3168,-3.2668],[119.3234,-3.2742],[119.3345,-3.2792],[119.3453,-3.289],[119.3536,-3.2895],[119.3604,-3.2931],[119.366,-3.2931],[119.3723,-3.2954],[119.3784,-3.2997],[119.3863,-3.3029],[119.4016,-3.3064],[119.4091,-3.3146],[119.4119,-3.3197],[119.4229,-3.3182],[119.4327,-3.3227],[119.4356,-3.3312],[119.438,-3.3323],[119.4402,-3.3383],[119.4449,-3.3342],[119.4442,-3.3293],[119.4406,-3.3259],[119.4378,-3.3195],[119.4346,-3.317],[119.4378,-3.3116],[119.4398,-3.3029],[119.4348,-3.2946],[119.4368,-3.2886],[119.4361,-3.2776],[119.4322,-3.2677],[119.4306,-3.2632],[119.4223,-3.2526],[119.4212,-3.249],[119.4074,-3.2414],[119.4004,-3.2388],[119.3908,-3.2324],[119.3792,-3.2183],[119.3732,-3.2126],[119.3703,-3.1993],[119.3723,-3.1965],[119.3831,-3.1957],[119.392,-3.1983],[119.3961,-3.1969],[119.3993,-3.1921],[119.4093,-3.1847],[119.4163,-3.1825],[119.4247,-3.1777],[119.4309,-3.1728],[119.4386,-3.1836],[119.4476,-3.1844],[119.4585,-3.1823],[119.4639,-3.1886],[119.4713,-3.1911],[119.4782,-3.1904],[119.4849,-3.1869],[119.4896,-3.1827],[119.5035,-3.1778],[119.5156,-3.1717],[119.5158,-3.1676],[119.5255,-3.1513],[119.5321,-3.1432],[119.5369,-3.1391],[119.5436,-3.1388],[119.5592,-3.1341],[119.5635,-3.1303],[119.5683,-3.1293],[119.5735,-3.1315],[119.582,-3.1297],[119.5863,-3.1254],[119.5963,-3.1281],[119.5999,-3.1267],[119.6055,-3.1198],[119.6099,-3.1202],[119.6144,-3.1246],[119.6307,-3.1284],[119.6316,-3.1246],[119.6321,-3.11],[119.6278,-3.1024],[119.6274,-3.0967],[119.6211,-3.088],[119.6191,-3.0792],[119.6111,-3.074],[119.6069,-3.0666],[119.5989,-3.0656],[119.5948,-3.0633],[119.5939,-3.0581],[119.589,-3.053],[119.5867,-3.0475],[119.5852,-3.0355],[119.5802,-3.0349],[119.5766,-3.0265],[119.577,-3.0183],[119.5713,-3.0046],[119.5651,-2.9953],[119.5692,-2.974],[119.5723,-2.9716],[119.5767,-2.9518],[119.5733,-2.9422],[119.5692,-2.9367],[119.5691,-2.9274],[119.5569,-2.9213],[119.5543,-2.9134],[119.5552,-2.9063],[119.5509,-2.8971],[119.556,-2.8854],[119.5634,-2.8797],[119.5672,-2.8736],[119.5691,-2.867],[119.5679,-2.858],[119.5627,-2.8539],[119.5614,-2.8508],[119.5632,-2.8306],[119.5667,-2.8216],[119.5615,-2.8132],[119.5651,-2.8064],[119.5712,-2.7866],[119.5732,-2.7752],[119.5753,-2.7713],[119.5835,-2.766],[119.5846,-2.7628],[119.5784,-2.7576],[119.5784,-2.752],[119.5834,-2.7476]]}},{"type":"Feature","properties":{"mhid":"1332:455","alt_name":"KABUPATEN MAMUJU","latitude":-2.5,"longitude":119.41667,"sample_value":168},"geometry":{"type":"LineString","coordinates":[[118.8906,-2.6515],[118.8945,-2.6426],[118.8953,-2.6337],[118.8969,-2.6296],[118.8925,-2.6135],[118.8871,-2.6164],[118.8794,-2.6225],[118.8783,-2.631],[118.8799,-2.6342],[118.8791,-2.6411],[118.8854,-2.6515],[118.8906,-2.6515]]}},{"type":"Feature","properties":{"mhid":"1332:455","alt_name":"KABUPATEN MAMUJU","latitude":-2.5,"longitude":119.41667,"sample_value":168},"geometry":{"type":"LineString","coordinates":[[117.3807,-2.2721],[117.3798,-2.2666],[117.3743,-2.2648],[117.3708,-2.2694],[117.3735,-2.2756],[117.3798,-2.2765],[117.3807,-2.2721]]}},{"type":"Feature","properties":{"mhid":"1332:455","alt_name":"KABUPATEN MAMUJU","latitude":-2.5,"longitude":119.41667,"sample_value":168},"geometry":{"type":"LineString","coordinates":[[117.3177,-2.2687],[117.3204,-2.257],[117.315,-2.2551],[117.3105,-2.2587],[117.3068,-2.2651],[117.3123,-2.2714],[117.3177,-2.2687]]}},{"type":"Feature","properties":{"mhid":"1332:455","alt_name":"KABUPATEN MAMUJU","latitude":-2.5,"longitude":119.41667,"sample_value":168},"geometry":{"type":"LineString","coordinates":[[119.6743,-2.2103],[119.6516,-2.1977],[119.6524,-2.1911],[119.6472,-2.183],[119.639,-2.1737],[119.6389,-2.1529],[119.6374,-2.1469],[119.6323,-2.1455],[119.6096,-2.1488],[119.5934,-2.1479],[119.5345,-2.1458],[119.5206,-2.1443],[119.5143,-2.1448],[119.5084,-2.1481],[119.5043,-2.1458],[119.4992,-2.1464],[119.4871,-2.1405],[119.4783,-2.1398],[119.4774,-2.1425],[119.4708,-2.1452],[119.4667,-2.1548],[119.4657,-2.1606],[119.4553,-2.1705],[119.4487,-2.1725],[119.4425,-2.1762],[119.4401,-2.186],[119.436,-2.1913],[119.4292,-2.1936],[119.421,-2.1882],[119.4105,-2.1873],[119.3979,-2.1934],[119.3954,-2.1917],[119.3912,-2.196],[119.3781,-2.1932],[119.3686,-2.1945],[119.3673,-2.2018],[119.3637,-2.2022],[119.3574,-2.2082],[119.3535,-2.2041],[119.3472,-2.2024],[119.3446,-2.2055],[119.3332,-2.2025],[119.3293,-2.2058],[119.326,-2.2121],[119.3225,-2.2115],[119.3185,-2.2172],[119.3175,-2.2219],[119.3121,-2.2267],[119.3081,-2.2264],[119.3046,-2.2227],[119.2968,-2.2271],[119.2906,-2.2225],[119.2864,-2.2246],[119.2822,-2.2322],[119.276,-2.2407],[119.2688,-2.2438],[119.2616,-2.2424],[119.2622,-2.2473],[119.2592,-2.2523],[119.2537,-2.2533],[119.252,-2.2634],[119.2332,-2.2683],[119.2319,-2.2754],[119.2281,-2.2785],[119.2262,-2.2836],[119.2043,-2.2906],[119.2059,-2.3015],[119.1982,-2.3139],[119.1939,-2.3056],[119.1762,-2.3079],[119.1732,-2.303],[119.1682,-2.3023],[119.1623,-2.3053],[119.1568,-2.299],[119.1502,-2.3018],[119.1475,-2.3089],[119.1446,-2.3073],[119.1456,-2.2999],[119.1421,-2.2981],[119.1338,-2.3077],[119.1226,-2.3141],[119.1222,-2.3225],[119.1231,-2.3303],[119.1269,-2.3395],[119.1317,-2.3484],[119.1341,-2.3564],[119.1347,-2.3629],[119.1389,-2.373],[119.1421,-2.3905],[119.1387,-2.4148],[119.1352,-2.4205],[119.1368,-2.4419],[119.1361,-2.4491],[119.1292,-2.4638],[119.1346,-2.4643],[119.1432,-2.4589],[119.1464,-2.4627],[119.1404,-2.474],[119.1323,-2.4763],[119.1277,-2.4756],[119.1252,-2.482],[119.122,-2.4813],[119.1048,-2.4851],[119.1021,-2.4887],[119.0756,-2.4946],[119.0662,-2.498],[119.055,-2.5039],[119.0408,-2.5084],[119.0402,-2.512],[119.034,-2.5244],[119.0323,-2.5396],[119.0338,-2.5511],[119.0336,-2.5593],[119.0346,-2.569],[119.031,-2.5814],[119.0222,-2.5875],[119.0169,-2.5893],[119.0114,-2.5881],[119.0079,-2.5911],[119.0105,-2.5995],[119.0022,-2.6043],[118.9982,-2.6052],[118.9992,-2.6111],[118.9965,-2.6174],[118.9925,-2.6205],[118.9885,-2.6205],[118.9806,-2.6292],[118.9746,-2.6273],[118.967,-2.6278],[118.9669,-2.6321],[118.9595,-2.6408],[118.947,-2.6384],[118.9424,-2.6397],[118.934,-2.6481],[118.9327,-2.6511],[118.9257,-2.6507],[118.9244,-2.6595],[118.9126,-2.6637],[118.912,-2.6667],[118.9039,-2.6684],[118.8943,-2.6672],[118.8839,-2.6766],[118.8738,-2.6808],[118.868,-2.6792],[118.867,-2.6731],[118.8595,-2.6692],[118.8553,-2.6608],[118.848,-2.658],[118.8437,-2.6527],[118.8401,-2.643],[118.8303,-2.6294],[118.8267,-2.6267],[118.8218,-2.6201],[118.8159,-2.6221],[118.8117,-2.6337],[118.8111,-2.642],[118.8052,-2.6502],[118.8002,-2.6535],[118.796,-2.6591],[118.7932,-2.6658],[118.788,-2.6686],[118.7776,-2.6845],[118.7784,-2.7027],[118.7735,-2.7144],[118.7742,-2.7214],[118.7769,-2.7223],[118.7773,-2.7293],[118.7798,-2.7369],[118.7842,-2.7428],[118.7813,-2.7484],[118.7746,-2.7503],[118.7655,-2.7473],[118.7625,-2.7489],[118.7578,-2.7637],[118.7589,-2.767],[118.7558,-2.7798],[118.7582,-2.7907],[118.758,-2.8005],[118.7656,-2.8049],[118.7725,-2.8114],[118.773,-2.8206],[118.7714,-2.8296],[118.7689,-2.835],[118.7697,-2.8446],[118.7674,-2.8536],[118.77,-2.8673],[118.7902,-2.861],[118.8002,-2.8569],[118.804,-2.853],[118.8097,-2.8514],[118.8227,-2.853],[118.8304,-2.8573],[118.8347,-2.8568],[118.8415,-2.8508],[118.8512,-2.8522],[118.8631,-2.861],[118.8799,-2.879],[118.886,-2.8873],[118.8877,-2.9022],[118.8862,-2.9108],[118.8814,-2.9152],[118.8783,-2.9227],[118.8838,-2.9264],[118.8842,-2.9303],[118.8937,-2.9328],[118.917,-2.9283],[118.9329,-2.9223],[118.9369,-2.918],[118.945,-2.9158],[118.9488,-2.9226],[118.9565,-2.9275],[118.9629,-2.9239],[118.969,-2.9265],[118.9769,-2.923],[118.9814,-2.9276],[118.9942,-2.9275],[118.9965,-2.9342],[119.0006,-2.9384],[119.0051,-2.9463],[119.0075,-2.955],[119.0272,-2.9637],[119.0257,-2.9606],[119.0267,-2.9508],[119.0291,-2.9446],[119.0296,-2.9333],[119.0337,-2.9287],[119.0313,-2.9205],[119.0248,-2.9094],[119.0226,-2.894],[119.0252,-2.8841],[119.0225,-2.879],[119.0138,-2.8709],[119.0155,-2.8639],[119.0108,-2.854],[119.0156,-2.8525],[119.0216,-2.8399],[119.023,-2.826],[119.0227,-2.8166],[119.0211,-2.8129],[119.0251,-2.8061],[119.0134,-2.779],[119.0138,-2.7727],[119.0193,-2.7669],[119.0184,-2.7631],[119.0231,-2.7596],[119.0246,-2.7504],[119.0286,-2.7495],[119.0397,-2.7514],[119.0424,-2.7442],[119.0417,-2.7404],[119.0447,-2.7367],[119.0524,-2.7196],[119.0545,-2.7182],[119.061,-2.7048],[119.0638,-2.7052],[119.0696,-2.7017],[119.0762,-2.7002],[119.0808,-2.7024],[119.0828,-2.6922],[119.0856,-2.6881],[119.097,-2.6792],[119.1015,-2.6705],[119.112,-2.6635],[119.117,-2.6623],[119.1229,-2.6568],[119.1255,-2.659],[119.1308,-2.6587],[119.1376,-2.6545],[119.1386,-2.6617],[119.1434,-2.6685],[119.1477,-2.6685],[119.152,-2.6718],[119.1612,-2.6709],[119.1643,-2.6623],[119.1729,-2.6604],[119.1783,-2.6626],[119.1811,-2.6602],[119.1873,-2.6604],[119.1936,-2.6627],[119.2007,-2.6691],[119.2075,-2.6778],[119.2095,-2.6839],[119.2184,-2.6914],[119.2186,-2.6994],[119.2292,-2.7084],[119.232,-2.7124],[119.2379,-2.7134],[119.2517,-2.7111],[119.2539,-2.7129],[119.2648,-2.7105],[119.271,-2.7081],[119.2735,-2.7099],[119.2829,-2.7074],[119.2982,-2.7084],[119.3028,-2.7184],[119.3024,-2.7228],[119.3051,-2.729],[119.3102,-2.731],[119.3141,-2.7302],[119.3279,-2.7371],[119.3353,-2.7357],[119.3428,-2.7412],[119.3493,-2.7441],[119.3711,-2.7481],[119.3758,-2.7464],[119.3884,-2.7662],[119.3947,-2.769],[119.4096,-2.7818],[119.4141,-2.7823],[119.4219,-2.7806],[119.4418,-2.7672],[119.4477,-2.7676],[119.4797,-2.7501],[119.4789,-2.7463],[119.4849,-2.7405],[119.4924,-2.7393],[119.5007,-2.7426],[119.5094,-2.7389],[119.5258,-2.7422],[119.5328,-2.7374],[119.5405,-2.736],[119.5448,-2.7319],[119.5528,-2.7285],[119.5693,-2.7323],[119.5681,-2.7382],[119.5834,-2.7476],[119.5872,-2.7434],[119.5977,-2.7425],[119.6061,-2.7402],[119.6113,-2.7425],[119.6139,-2.7491],[119.6239,-2.7508],[119.6302,-2.7545],[119.6359,-2.7516],[119.6448,-2.7517],[119.6496,-2.7541],[119.6648,-2.7535],[119.6686,-2.7551],[119.6809,-2.7562],[119.6884,-2.753],[119.6931,-2.7495],[119.6959,-2.7449],[119.6997,-2.7428],[119.7078,-2.7324],[119.7133,-2.7297],[119.7234,-2.727],[119.7296,-2.7185],[119.7455,-2.7153],[119.7485,-2.7115],[119.7494,-2.7059],[119.7485,-2.6993],[119.7462,-2.6954],[119.7492,-2.6922],[119.748,-2.6886],[119.7556,-2.6852],[119.7573,-2.6809],[119.7525,-2.671],[119.7662,-2.6636],[119.7761,-2.6623],[119.7842,-2.6523],[119.7872,-2.6507],[119.7938,-2.6426],[119.797,-2.6405],[119.79,-2.6332],[119.7825,-2.6278],[119.7646,-2.6186],[119.7606,-2.6171],[119.7499,-2.6043],[119.74,-2.5911],[119.7161,-2.5759],[119.7095,-2.5665],[119.711,-2.5545],[119.714,-2.5476],[119.7265,-2.5268],[119.7283,-2.5217],[119.7311,-2.5077],[119.7313,-2.5003],[119.7266,-2.4923],[119.7212,-2.4877],[119.7005,-2.4738],[119.695,-2.4639],[119.6943,-2.4606],[119.6969,-2.4454],[119.7126,-2.4245],[119.719,-2.4095],[119.7198,-2.4043],[119.7144,-2.3924],[119.6999,-2.371],[119.6936,-2.3571],[119.6902,-2.3521],[119.6945,-2.3421],[119.6928,-2.3365],[119.6884,-2.3335],[119.6814,-2.3386],[119.6736,-2.3394],[119.6703,-2.3329],[119.6665,-2.3315],[119.6635,-2.3271],[119.6551,-2.3263],[119.6507,-2.3205],[119.65,-2.3158],[119.6435,-2.3135],[119.6429,-2.3098],[119.6286,-2.2942],[119.6347,-2.2842],[119.6362,-2.2798],[119.6324,-2.2652],[119.6324,-2.2609],[119.6293,-2.2528],[119.6326,-2.2425],[119.6376,-2.2402],[119.6445,-2.2397],[119.6562,-2.2342],[119.6596,-2.2304],[119.6682,-2.2161],[119.6743,-2.2103]]}},{"type":"Feature","properties":{"mhid":"1332:455","alt_name":"KABUPATEN MAMUJU","latitude":-2.5,"longitude":119.41667,"sample_value":168},"geometry":{"type":"LineString","coordinates":[[117.3942,-2.1015],[117.3888,-2.0969],[117.3834,-2.0969],[117.3816,-2.1015],[117.3852,-2.1068],[117.3906,-2.1069],[117.3942,-2.1015]]}},{"type":"Feature","properties":{"mhid":"1332:455","alt_name":"KABUPATEN MAMUJU","latitude":-2.5,"longitude":119.41667,"sample_value":168},"geometry":{"type":"LineString","coordinates":[[117.6267,-2.0982],[117.6285,-2.0954],[117.6285,-2.0891],[117.624,-2.0864],[117.6212,-2.0918],[117.6221,-2.099],[117.6267,-2.0982]]}},{"type":"Feature","properties":{"mhid":"1332:455","alt_name":"KABUPATEN MAMUJU","latitude":-2.5,"longitude":119.41667,"sample_value":168},"geometry":{"type":"LineString","coordinates":[[117.0812,-2.0509],[117.0695,-2.0533],[117.0696,-2.0612],[117.071,-2.0702],[117.0795,-2.0772],[117.0869,-2.0732],[117.0876,-2.0589],[117.0812,-2.0509]]}},{"type":"Feature","properties":{"mhid":"1332:455","alt_name":"KABUPATEN MAMUJU","latitude":-2.5,"longitude":119.41667,"sample_value":168},"geometry":{"type":"LineString","coordinates":[[117.2717,-2.0575],[117.2699,-2.0503],[117.2654,-2.0475],[117.2609,-2.053],[117.2636,-2.0611],[117.2672,-2.0629],[117.2717,-2.0575]]}},{"type":"Feature","properties":{"mhid":"1332:455","alt_name":"KABUPATEN MAMUJU","latitude":-2.5,"longitude":119.41667,"sample_value":168},"geometry":{"type":"LineString","coordinates":[[117.3525,-2.064],[117.3561,-2.0577],[117.3535,-2.0414],[117.3463,-2.0414],[117.3427,-2.0477],[117.3435,-2.0568],[117.3489,-2.0649],[117.3525,-2.064]]}},{"type":"Feature","properties":{"mhid":"1332:455","alt_name":"KABUPATEN MAMUJU","latitude":-2.5,"longitude":119.41667,"sample_value":168},"geometry":{"type":"LineString","coordinates":[[117.3075,-2.0445],[117.3094,-2.0372],[117.3049,-2.0345],[117.2985,-2.0363],[117.2977,-2.0417],[117.3013,-2.0472],[117.3075,-2.0445]]}},{"type":"Feature","properties":{"mhid":"1332:455","alt_name":"KABUPATEN MAMUJU","latitude":-2.5,"longitude":119.41667,"sample_value":168},"geometry":{"type":"LineString","coordinates":[[117.3388,-2.005],[117.335,-1.9952],[117.3259,-1.9962],[117.327,-2.0022],[117.3308,-2.0064],[117.3388,-2.005]]}},{"type":"Feature","properties":{"mhid":"1332:455","alt_name":"KABUPATEN MAMUJU","latitude":-2.5,"longitude":119.41667,"sample_value":168},"geometry":{"type":"LineString","coordinates":[[117.2632,-1.9937],[117.26,-1.9856],[117.2471,-1.9868],[117.2452,-1.9944],[117.2478,-1.9976],[117.2609,-1.9992],[117.2632,-1.9937]]}},{"type":"Feature","properties":{"mhid":"1332:455","alt_name":"KABUPATEN MAMUJU","latitude":-2.5,"longitude":119.41667,"sample_value":168},"geometry":{"type":"LineString","coordinates":[[117.1454,-1.9771],[117.1463,-1.9699],[117.1427,-1.9672],[117.1382,-1.9681],[117.1363,-1.9752],[117.1397,-1.9813],[117.1454,-1.9771]]}},{"type":"Feature","properties":{"mhid":"1332:455","alt_name":"KABUPATEN MAMUJU","latitude":-2.5,"longitude":119.41667,"sample_value":168},"geometry":{"type":"LineString","coordinates":[[117.3048,-1.9463],[117.3084,-1.9409],[117.303,-1.9346],[117.2994,-1.9399],[117.3012,-1.9463],[117.3048,-1.9463]]}},{"type":"Feature","properties":{"mhid":"1332:455","alt_name":"KABUPATEN MAMUJU","latitude":-2.5,"longitude":119.41667,"sample_value":168},"geometry":{"type":"LineString","coordinates":[[117.2532,-1.9066],[117.2551,-1.9012],[117.2542,-1.894],[117.2515,-1.8903],[117.2461,-1.8921],[117.2434,-1.8984],[117.2487,-1.9074],[117.2532,-1.9066]]}},{"type":"Feature","properties":{"mhid":"1332:456","alt_name":"KABUPATEN MAMUJU UTARA","latitude":-1.51639,"longitude":119.42139,"sample_value":219},"geometry":{"type":"LineString","coordinates":[[119.5615,-0.8514],[119.5478,-0.8643],[119.5436,-0.8646],[119.544,-0.8692],[119.5419,-0.8734],[119.5365,-0.8784],[119.536,-0.8855],[119.5321,-0.8894],[119.5303,-0.8951],[119.5266,-0.8961],[119.5257,-0.9049],[119.5226,-0.9121],[119.5231,-0.9219],[119.5216,-0.9342],[119.517,-0.9449],[119.5086,-0.952],[119.5055,-0.9579],[119.5039,-0.9722],[119.498,-0.985],[119.4899,-0.9932],[119.4809,-0.9985],[119.4738,-1.0206],[119.4715,-1.0366],[119.4689,-1.0425],[119.4688,-1.0512],[119.4673,-1.0599],[119.4606,-1.0738],[119.4543,-1.0805],[119.4453,-1.0969],[119.44,-1.1034],[119.4336,-1.1064],[119.4221,-1.1073],[119.4223,-1.1131],[119.4149,-1.1226],[119.4088,-1.1218],[119.4098,-1.1277],[119.4023,-1.1269],[119.3979,-1.131],[119.3963,-1.1372],[119.3911,-1.1405],[119.3854,-1.1391],[119.3791,-1.1596],[119.3752,-1.1587],[119.3685,-1.165],[119.3678,-1.1704],[119.3591,-1.1739],[119.3513,-1.1724],[119.3497,-1.1692],[119.3418,-1.1664],[119.3394,-1.1689],[119.338,-1.185],[119.3352,-1.1899],[119.3338,-1.1973],[119.3301,-1.204],[119.3287,-1.2117],[119.3258,-1.2191],[119.3226,-1.2197],[119.3196,-1.2333],[119.3142,-1.2444],[119.3115,-1.2566],[119.3028,-1.2735],[119.3172,-1.2956],[119.3213,-1.2978],[119.3236,-1.3103],[119.3259,-1.3149],[119.3318,-1.3428],[119.3324,-1.3495],[119.325,-1.3597],[119.2971,-1.3817],[119.2905,-1.3923],[119.2898,-1.4042],[119.2878,-1.4109],[119.2915,-1.4137],[119.2927,-1.4207],[119.2912,-1.436],[119.2881,-1.45],[119.2916,-1.4601],[119.294,-1.4718],[119.2994,-1.4879],[119.3005,-1.4948],[119.3065,-1.5102],[119.3107,-1.5344],[119.3195,-1.5515],[119.3251,-1.5673],[119.3264,-1.573],[119.3255,-1.59],[119.324,-1.5964],[119.316,-1.608],[119.3027,-1.6106],[119.3026,-1.6238],[119.3091,-1.6256],[119.3099,-1.6301],[119.3042,-1.6348],[119.3039,-1.6402],[119.306,-1.6428],[119.2928,-1.6455],[119.2904,-1.6477],[119.2946,-1.6548],[119.2939,-1.6588],[119.2865,-1.6563],[119.2842,-1.6634],[119.2873,-1.6763],[119.2866,-1.6823],[119.2819,-1.6843],[119.2818,-1.6911],[119.2954,-1.6984],[119.3009,-1.7068],[119.3024,-1.7217],[119.3068,-1.7411],[119.3125,-1.7576],[119.3154,-1.7724],[119.3126,-1.7873],[119.3142,-1.7904],[119.3112,-1.7963],[119.3159,-1.7999],[119.3221,-1.802],[119.3311,-1.8148],[119.3375,-1.8194],[119.341,-1.8184],[119.3439,-1.8104],[119.3402,-1.8049],[119.3437,-1.7921],[119.349,-1.7819],[119.3538,-1.7765],[119.3519,-1.7729],[119.3647,-1.7695],[119.3698,-1.7628],[119.3749,-1.7591],[119.3753,-1.7563],[119.3807,-1.7535],[119.385,-1.7567],[119.3905,-1.756],[119.3919,-1.7524],[119.3973,-1.75],[119.4025,-1.7498],[119.4036,-1.746],[119.4094,-1.7414],[119.4147,-1.7422],[119.4133,-1.7319],[119.4221,-1.7359],[119.4287,-1.7357],[119.4347,-1.7324],[119.4374,-1.7287],[119.4449,-1.7315],[119.4469,-1.7377],[119.447,-1.7434],[119.4502,-1.7445],[119.4485,-1.7523],[119.4536,-1.7558],[119.4598,-1.7577],[119.467,-1.7628],[119.4701,-1.76],[119.4735,-1.7629],[119.4742,-1.7673],[119.4792,-1.7717],[119.4862,-1.7714],[119.4911,-1.7791],[119.4966,-1.7789],[119.5091,-1.7863],[119.5115,-1.7934],[119.5238,-1.791],[119.5304,-1.7932],[119.5336,-1.7982],[119.5445,-1.8027],[119.5549,-1.8026],[119.5593,-1.806],[119.5715,-1.8118],[119.5774,-1.8128],[119.5864,-1.8161],[119.594,-1.8094],[119.6042,-1.8139],[119.6086,-1.8139],[119.6184,-1.8194],[119.6321,-1.8216],[119.6352,-1.8285],[119.6443,-1.8329],[119.6624,-1.8373],[119.6736,-1.8319],[119.6757,-1.8283],[119.6846,-1.8329],[119.6892,-1.8328],[119.6993,-1.8351],[119.7038,-1.8375],[119.7083,-1.8307],[119.7248,-1.8195],[119.7386,-1.8148],[119.7408,-1.8159],[119.7474,-1.8115],[119.7564,-1.8081],[119.7687,-1.8047],[119.7777,-1.8046],[119.7821,-1.8059],[119.7899,-1.8001],[119.7954,-1.799],[119.7988,-1.7944],[119.808,-1.7944],[119.8123,-1.7922],[119.818,-1.7921],[119.8279,-1.8046],[119.8393,-1.8034],[119.8437,-1.8012],[119.8448,-1.7956],[119.8492,-1.7921],[119.8514,-1.7866],[119.8561,-1.7854],[119.864,-1.7809],[119.8713,-1.7809],[119.8677,-1.7718],[119.8614,-1.7724],[119.8566,-1.77],[119.8435,-1.7755],[119.836,-1.7702],[119.8269,-1.7674],[119.8224,-1.763],[119.8201,-1.7581],[119.8146,-1.755],[119.8146,-1.7493],[119.809,-1.7413],[119.8045,-1.7437],[119.8,-1.7415],[119.7925,-1.7303],[119.7943,-1.7246],[119.7899,-1.7189],[119.7875,-1.7189],[119.7765,-1.7091],[119.7769,-1.7037],[119.7794,-1.7003],[119.7796,-1.693],[119.7766,-1.6872],[119.7739,-1.6863],[119.7647,-1.6792],[119.7595,-1.6679],[119.7593,-1.6585],[119.751,-1.6526],[119.7502,-1.6431],[119.7362,-1.6434],[119.7291,-1.6449],[119.7262,-1.635],[119.7288,-1.627],[119.729,-1.622],[119.7356,-1.6134],[119.7329,-1.6043],[119.728,-1.6023],[119.7267,-1.5992],[119.7207,-1.5971],[119.7153,-1.5922],[119.7097,-1.5824],[119.71,-1.5768],[119.7041,-1.5737],[119.7013,-1.5661],[119.692,-1.5648],[119.6889,-1.558],[119.6849,-1.5533],[119.6782,-1.5506],[119.671,-1.5431],[119.6731,-1.5348],[119.6666,-1.5305],[119.6664,-1.5256],[119.6687,-1.5211],[119.6693,-1.5142],[119.6759,-1.5009],[119.6805,-1.4945],[119.6801,-1.4903],[119.6848,-1.4853],[119.6866,-1.4774],[119.6933,-1.4727],[119.6926,-1.467],[119.7006,-1.4578],[119.697,-1.4525],[119.6925,-1.4498],[119.685,-1.449],[119.6841,-1.4423],[119.6709,-1.4426],[119.6715,-1.4333],[119.6653,-1.427],[119.6631,-1.4223],[119.6552,-1.4229],[119.6517,-1.4168],[119.6468,-1.4135],[119.6437,-1.4062],[119.6327,-1.4006],[119.6283,-1.4059],[119.6233,-1.3971],[119.6144,-1.4019],[119.6099,-1.4061],[119.6075,-1.4026],[119.6016,-1.4027],[119.6,-1.3977],[119.5957,-1.399],[119.5922,-1.3965],[119.589,-1.4026],[119.5902,-1.4056],[119.588,-1.4102],[119.582,-1.4104],[119.5845,-1.4213],[119.5829,-1.4256],[119.5734,-1.4216],[119.5687,-1.4213],[119.5689,-1.428],[119.5619,-1.4276],[119.5569,-1.4315],[119.5491,-1.4331],[119.5487,-1.4266],[119.5453,-1.4225],[119.5397,-1.424],[119.541,-1.4298],[119.532,-1.4294],[119.5292,-1.4367],[119.5194,-1.4461],[119.5156,-1.4456],[119.5117,-1.4511],[119.5083,-1.4508],[119.5081,-1.4458],[119.5107,-1.4382],[119.5172,-1.4389],[119.5201,-1.4335],[119.5216,-1.4237],[119.5187,-1.412],[119.5131,-1.4114],[119.5098,-1.4082],[119.509,-1.4038],[119.5034,-1.4013],[119.5047,-1.3949],[119.5022,-1.3929],[119.4954,-1.3928],[119.4905,-1.3909],[119.4813,-1.3985],[119.4784,-1.3983],[119.4664,-1.3847],[119.452,-1.3669],[119.4485,-1.3609],[119.447,-1.355],[119.4474,-1.3428],[119.4488,-1.3396],[119.4558,-1.335],[119.4561,-1.329],[119.4643,-1.3186],[119.4713,-1.3169],[119.4781,-1.3188],[119.482,-1.322],[119.4919,-1.3218],[119.5002,-1.3202],[119.5106,-1.313],[119.5195,-1.3154],[119.5237,-1.3085],[119.5266,-1.3007],[119.5257,-1.2965],[119.5215,-1.2948],[119.5159,-1.3026],[119.5097,-1.2989],[119.5012,-1.2993],[119.4988,-1.3025],[119.4817,-1.3094],[119.478,-1.3086],[119.4745,-1.3037],[119.4733,-1.2978],[119.4791,-1.2913],[119.4857,-1.2868],[119.4935,-1.2834],[119.5038,-1.2765],[119.5072,-1.2731],[119.5186,-1.2565],[119.524,-1.2515],[119.5306,-1.2389],[119.54,-1.2242],[119.5422,-1.223],[119.5421,-1.2005],[119.557,-1.2049],[119.5608,-1.2016],[119.5642,-1.202],[119.5669,-1.1962],[119.5661,-1.1903],[119.5705,-1.1811],[119.5708,-1.1627],[119.5722,-1.149],[119.5877,-1.1521],[119.5952,-1.1551],[119.6,-1.1591],[119.6031,-1.1591],[119.6073,-1.1541],[119.6077,-1.1399],[119.6098,-1.1383],[119.6104,-1.1299],[119.6091,-1.1204],[119.6037,-1.1179],[119.5994,-1.1194],[119.593,-1.1243],[119.5905,-1.1149],[119.5907,-1.103],[119.5879,-1.0989],[119.5892,-1.09],[119.5836,-1.0866],[119.5781,-1.068],[119.5777,-1.0611],[119.5802,-1.0555],[119.5739,-1.0529],[119.5725,-1.049],[119.5773,-1.0456],[119.574,-1.0384],[119.5778,-1.0309],[119.5754,-1.0186],[119.5659,-1.0187],[119.5589,-1.0129],[119.5569,-1.0095],[119.5591,-0.9985],[119.5583,-0.9903],[119.56,-0.9847],[119.5596,-0.9777],[119.555,-0.9642],[119.5544,-0.9512],[119.5555,-0.9447],[119.5532,-0.9382],[119.5559,-0.9269],[119.5587,-0.9264],[119.5633,-0.913],[119.5622,-0.908],[119.5619,-0.8953],[119.5646,-0.8955],[119.5671,-0.8886],[119.5711,-0.8851],[119.5701,-0.8818],[119.5719,-0.8679],[119.5615,-0.8514]]}},{"type":"Feature","properties":{"mhid":"1332:457","alt_name":"KABUPATEN MAMUJU TENGAH","latitude":-2.8212,"longitude":119.2662,"sample_value":579},"geometry":{"type":"LineString","coordinates":[[119.3273,-1.9351],[119.3247,-1.9353],[119.3233,-1.9414],[119.3243,-1.9452],[119.3343,-1.9429],[119.3354,-1.9378],[119.3312,-1.9379],[119.3273,-1.9351]]}},{"type":"Feature","properties":{"mhid":"1332:457","alt_name":"KABUPATEN MAMUJU TENGAH","latitude":-2.8212,"longitude":119.2662,"sample_value":579},"geometry":{"type":"LineString","coordinates":[[119.8713,-1.7809],[119.864,-1.7809],[119.8561,-1.7854],[119.8514,-1.7866],[119.8492,-1.7921],[119.8448,-1.7956],[119.8437,-1.8012],[119.8393,-1.8034],[119.8279,-1.8046],[119.818,-1.7921],[119.8123,-1.7922],[119.808,-1.7944],[119.7988,-1.7944],[119.7954,-1.799],[119.7899,-1.8001],[119.7821,-1.8059],[119.7777,-1.8046],[119.7687,-1.8047],[119.7564,-1.8081],[119.7474,-1.8115],[119.7408,-1.8159],[119.7386,-1.8148],[119.7248,-1.8195],[119.7083,-1.8307],[119.7038,-1.8375],[119.6993,-1.8351],[119.6892,-1.8328],[119.6846,-1.8329],[119.6757,-1.8283],[119.6736,-1.8319],[119.6624,-1.8373],[119.6443,-1.8329],[119.6352,-1.8285],[119.6321,-1.8216],[119.6184,-1.8194],[119.6086,-1.8139],[119.6042,-1.8139],[119.594,-1.8094],[119.5864,-1.8161],[119.5774,-1.8128],[119.5715,-1.8118],[119.5593,-1.806],[119.5549,-1.8026],[119.5445,-1.8027],[119.5336,-1.7982],[119.5304,-1.7932],[119.5238,-1.791],[119.5115,-1.7934],[119.5091,-1.7863],[119.4966,-1.7789],[119.4911,-1.7791],[119.4862,-1.7714],[119.4792,-1.7717],[119.4742,-1.7673],[119.4735,-1.7629],[119.4701,-1.76],[119.467,-1.7628],[119.4598,-1.7577],[119.4536,-1.7558],[119.4485,-1.7523],[119.4502,-1.7445],[119.447,-1.7434],[119.4469,-1.7377],[119.4449,-1.7315],[119.4374,-1.7287],[119.4347,-1.7324],[119.4287,-1.7357],[119.4221,-1.7359],[119.4133,-1.7319],[119.4147,-1.7422],[119.4094,-1.7414],[119.4036,-1.746],[119.4025,-1.7498],[119.3973,-1.75],[119.3919,-1.7524],[119.3905,-1.756],[119.385,-1.7567],[119.3807,-1.7535],[119.3753,-1.7563],[119.3749,-1.7591],[119.3698,-1.7628],[119.3647,-1.7695],[119.3519,-1.7729],[119.3538,-1.7765],[119.349,-1.7819],[119.3437,-1.7921],[119.3402,-1.8049],[119.3439,-1.8104],[119.3422,-1.8136],[119.3521,-1.8176],[119.3553,-1.8214],[119.3591,-1.831],[119.359,-1.8367],[119.3642,-1.8564],[119.3628,-1.8615],[119.358,-1.8625],[119.3512,-1.8707],[119.3507,-1.8838],[119.3535,-1.897],[119.3515,-1.9021],[119.3449,-1.9086],[119.3355,-1.914],[119.3387,-1.9192],[119.3343,-1.9262],[119.3363,-1.9303],[119.3405,-1.9305],[119.3415,-1.9347],[119.3384,-1.937],[119.3339,-1.9517],[119.3327,-1.9602],[119.3309,-1.9637],[119.3234,-1.9641],[119.3192,-1.9583],[119.3184,-1.9534],[119.3047,-1.9599],[119.2965,-1.9598],[119.2938,-1.9525],[119.2857,-1.9543],[119.2797,-1.9595],[119.2622,-1.9706],[119.2532,-1.9723],[119.2416,-1.9808],[119.2328,-1.9855],[119.2272,-1.9867],[119.2229,-1.9927],[119.2185,-1.9929],[119.2127,-1.9978],[119.2137,-2.0019],[119.2233,-2.0131],[119.2156,-2.0206],[119.2098,-2.0282],[119.2099,-2.0366],[119.2052,-2.054],[119.2045,-2.0634],[119.1972,-2.0779],[119.1953,-2.0846],[119.1956,-2.09],[119.1925,-2.0966],[119.1971,-2.0976],[119.2004,-2.1069],[119.1981,-2.112],[119.1896,-2.12],[119.1895,-2.1254],[119.1918,-2.1292],[119.1892,-2.1361],[119.1859,-2.1365],[119.1887,-2.1482],[119.1879,-2.1525],[119.1811,-2.1528],[119.1716,-2.1568],[119.1659,-2.1611],[119.1597,-2.1702],[119.1597,-2.1771],[119.1546,-2.1885],[119.1479,-2.1946],[119.1454,-2.2005],[119.1484,-2.2156],[119.152,-2.23],[119.1522,-2.2394],[119.1486,-2.2471],[119.1457,-2.2498],[119.1375,-2.2617],[119.1302,-2.2768],[119.1284,-2.2888],[119.1286,-2.2959],[119.1338,-2.3077],[119.1421,-2.2981],[119.1456,-2.2999],[119.1446,-2.3073],[119.1475,-2.3089],[119.1502,-2.3018],[119.1568,-2.299],[119.1623,-2.3053],[119.1682,-2.3023],[119.1732,-2.303],[119.1762,-2.3079],[119.1939,-2.3056],[119.1982,-2.3139],[119.2059,-2.3015],[119.2043,-2.2906],[119.2262,-2.2836],[119.2281,-2.2785],[119.2319,-2.2754],[119.2332,-2.2683],[119.252,-2.2634],[119.2537,-2.2533],[119.2592,-2.2523],[119.2622,-2.2473],[119.2616,-2.2424],[119.2688,-2.2438],[119.276,-2.2407],[119.2822,-2.2322],[119.2864,-2.2246],[119.2906,-2.2225],[119.2968,-2.2271],[119.3046,-2.2227],[119.3081,-2.2264],[119.3121,-2.2267],[119.3175,-2.2219],[119.3185,-2.2172],[119.3225,-2.2115],[119.326,-2.2121],[119.3293,-2.2058],[119.3332,-2.2025],[119.3446,-2.2055],[119.3472,-2.2024],[119.3535,-2.2041],[119.3574,-2.2082],[119.3637,-2.2022],[119.3673,-2.2018],[119.3686,-2.1945],[119.3781,-2.1932],[119.3912,-2.196],[119.3954,-2.1917],[119.3979,-2.1934],[119.4105,-2.1873],[119.421,-2.1882],[119.4292,-2.1936],[119.436,-2.1913],[119.4401,-2.186],[119.4425,-2.1762],[119.4487,-2.1725],[119.4553,-2.1705],[119.4657,-2.1606],[119.4667,-2.1548],[119.4708,-2.1452],[119.4774,-2.1425],[119.4783,-2.1398],[119.4871,-2.1405],[119.4992,-2.1464],[119.5043,-2.1458],[119.5084,-2.1481],[119.5143,-2.1448],[119.5206,-2.1443],[119.5345,-2.1458],[119.5934,-2.1479],[119.6096,-2.1488],[119.6323,-2.1455],[119.6374,-2.1469],[119.6389,-2.1529],[119.639,-2.1737],[119.6472,-2.183],[119.6524,-2.1911],[119.6516,-2.1977],[119.6743,-2.2103],[119.6848,-2.208],[119.6907,-2.2091],[119.6955,-2.2069],[119.7005,-2.2014],[119.7066,-2.1977],[119.7075,-2.1943],[119.7185,-2.1838],[119.727,-2.1774],[119.7271,-2.1716],[119.7293,-2.1663],[119.7383,-2.1616],[119.7432,-2.1543],[119.7516,-2.1549],[119.7534,-2.152],[119.7619,-2.1454],[119.7626,-2.1367],[119.7665,-2.13],[119.7661,-2.1249],[119.7699,-2.121],[119.782,-2.1166],[119.7895,-2.1098],[119.7931,-2.1085],[119.8037,-2.1122],[119.81,-2.1035],[119.8142,-2.1019],[119.8174,-2.0936],[119.8161,-2.0839],[119.8193,-2.0809],[119.8208,-2.0736],[119.8176,-2.0662],[119.8177,-2.06],[119.8254,-2.0489],[119.8288,-2.0467],[119.8392,-2.0446],[119.8423,-2.0459],[119.8515,-2.0418],[119.8547,-2.0354],[119.8615,-2.0327],[119.8624,-2.0271],[119.8658,-2.0208],[119.8703,-2.0181],[119.8682,-2.0082],[119.8704,-1.9998],[119.8676,-1.9847],[119.8676,-1.9675],[119.8647,-1.9642],[119.8646,-1.9573],[119.8674,-1.9522],[119.8658,-1.9492],[119.8687,-1.9452],[119.8708,-1.9382],[119.8623,-1.9338],[119.8605,-1.928],[119.8631,-1.9203],[119.8606,-1.9163],[119.8657,-1.9118],[119.8671,-1.8987],[119.8691,-1.8904],[119.8647,-1.8807],[119.8591,-1.8802],[119.8572,-1.8758],[119.8635,-1.8729],[119.8733,-1.8654],[119.8752,-1.8604],[119.8672,-1.8499],[119.8683,-1.8414],[119.864,-1.8384],[119.858,-1.8226],[119.8627,-1.8168],[119.8591,-1.8069],[119.8611,-1.7995],[119.8644,-1.7961],[119.866,-1.7879],[119.8713,-1.7809]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.0912,-8.0844],[131.0912,-8.0775],[131.0866,-8.0752],[131.0834,-8.0801],[131.0821,-8.0857],[131.0912,-8.0844]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.049,-8.0902],[131.0418,-8.0859],[131.0348,-8.0726],[131.0313,-8.0717],[131.0166,-8.0751],[131.0113,-8.0813],[131.0013,-8.0879],[130.9987,-8.0934],[130.9904,-8.1059],[130.9871,-8.1095],[130.9852,-8.1213],[130.9873,-8.1236],[130.9975,-8.1259],[131.0044,-8.1257],[131.0046,-8.1298],[131.0002,-8.1378],[130.9916,-8.1394],[130.9877,-8.1434],[130.9815,-8.1417],[130.9801,-8.1341],[130.9748,-8.1315],[130.965,-8.1321],[130.9503,-8.1363],[130.9451,-8.1362],[130.94,-8.1315],[130.938,-8.1216],[130.9311,-8.127],[130.9251,-8.1301],[130.9182,-8.1373],[130.915,-8.1513],[130.9176,-8.1569],[130.9199,-8.1696],[130.9231,-8.1792],[130.9277,-8.184],[130.9306,-8.1927],[130.9273,-8.2032],[130.9238,-8.2084],[130.9107,-8.214],[130.901,-8.2151],[130.898,-8.2137],[130.8899,-8.2137],[130.8864,-8.2121],[130.875,-8.2156],[130.8652,-8.2219],[130.8532,-8.2356],[130.8312,-8.2523],[130.8234,-8.2527],[130.8223,-8.2568],[130.8141,-8.268],[130.8078,-8.2751],[130.8015,-8.2787],[130.7984,-8.2867],[130.8014,-8.2903],[130.7992,-8.2945],[130.7955,-8.294],[130.7897,-8.3029],[130.7873,-8.3107],[130.7816,-8.3154],[130.7714,-8.3181],[130.7648,-8.3233],[130.7584,-8.3322],[130.7603,-8.3373],[130.7713,-8.3411],[130.7755,-8.3404],[130.7849,-8.3323],[130.7946,-8.3403],[130.8121,-8.3382],[130.8201,-8.3363],[130.8198,-8.3303],[130.8295,-8.3158],[130.8359,-8.3146],[130.8491,-8.3066],[130.8541,-8.3049],[130.8639,-8.2989],[130.8777,-8.2957],[130.8822,-8.2938],[130.8866,-8.2895],[130.8922,-8.2877],[130.9011,-8.2805],[130.8948,-8.2674],[130.895,-8.2594],[130.8853,-8.257],[130.8842,-8.252],[130.8921,-8.2395],[130.9078,-8.2337],[130.9247,-8.2245],[130.9301,-8.2235],[130.943,-8.2243],[130.9526,-8.223],[130.9705,-8.2232],[130.9726,-8.2259],[130.9832,-8.2305],[130.9897,-8.2287],[131.0014,-8.2189],[131.0036,-8.2206],[131.0196,-8.2075],[131.0217,-8.2023],[131.0275,-8.2032],[131.0331,-8.2021],[131.0406,-8.1949],[131.0506,-8.1983],[131.0551,-8.1983],[131.0624,-8.192],[131.0688,-8.1884],[131.0782,-8.1804],[131.089,-8.1741],[131.0935,-8.1763],[131.1054,-8.1698],[131.1092,-8.1654],[131.1148,-8.1626],[131.119,-8.1637],[131.127,-8.1576],[131.1283,-8.1587],[131.1387,-8.1527],[131.143,-8.1517],[131.1521,-8.1435],[131.154,-8.1403],[131.1601,-8.1356],[131.1674,-8.1268],[131.1705,-8.1204],[131.1677,-8.1096],[131.1538,-8.1086],[131.1485,-8.1071],[131.141,-8.1074],[131.1351,-8.1094],[131.128,-8.1079],[131.1147,-8.1179],[131.1136,-8.1244],[131.1091,-8.13],[131.0961,-8.1377],[131.0946,-8.1406],[131.081,-8.15],[131.074,-8.1522],[131.0702,-8.1554],[131.0672,-8.1543],[131.0685,-8.143],[131.0819,-8.1317],[131.083,-8.127],[131.0885,-8.1212],[131.0865,-8.1182],[131.0814,-8.1041],[131.0693,-8.1006],[131.0609,-8.0919],[131.0534,-8.0899],[131.049,-8.0902]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.2127,-8.046],[131.209,-8.045],[131.2047,-8.0482],[131.2,-8.0568],[131.1962,-8.0701],[131.1951,-8.0775],[131.2026,-8.0739],[131.2099,-8.0669],[131.214,-8.0586],[131.2167,-8.0494],[131.2127,-8.046]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.2836,-8.0265],[131.2786,-8.0362],[131.2772,-8.0441],[131.2726,-8.0493],[131.2813,-8.055],[131.2862,-8.0509],[131.2853,-8.0477],[131.2919,-8.0337],[131.2836,-8.0265]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.1068,-8.038],[131.1069,-8.0323],[131.1041,-8.0295],[131.0963,-8.0271],[131.0976,-8.0178],[131.0972,-8.012],[131.0918,-8.0103],[131.088,-8.0066],[131.0824,-8.0076],[131.0849,-8.013],[131.0828,-8.0156],[131.082,-8.0299],[131.0861,-8.0405],[131.0876,-8.0399],[131.0975,-8.0469],[131.1004,-8.0467],[131.1051,-8.0424],[131.1068,-8.038]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.2564,-7.9925],[131.2576,-7.9904],[131.2558,-7.9834],[131.2516,-7.9862],[131.2535,-7.9935],[131.2564,-7.9925]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.4587,-7.839],[131.4495,-7.8412],[131.4508,-7.845],[131.4566,-7.8444],[131.4587,-7.839]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.4328,-7.8361],[131.4329,-7.8405],[131.4407,-7.8463],[131.4447,-7.8458],[131.442,-7.8388],[131.4375,-7.8359],[131.4328,-7.8361]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.0177,-7.7447],[131.0122,-7.7448],[131.01,-7.7477],[131.0082,-7.7558],[131.0122,-7.7576],[131.0177,-7.7447]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[130.9563,-7.7405],[130.9496,-7.7433],[130.9498,-7.7531],[130.9562,-7.7587],[130.9596,-7.7587],[130.9613,-7.747],[130.96,-7.7424],[130.9563,-7.7405]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.0987,-7.7349],[131.1016,-7.7308],[131.0973,-7.7276],[131.0934,-7.7208],[131.0889,-7.7264],[131.0856,-7.7356],[131.082,-7.7366],[131.0751,-7.7447],[131.0729,-7.7497],[131.0684,-7.7505],[131.0711,-7.7587],[131.0789,-7.7642],[131.0848,-7.7635],[131.0914,-7.7513],[131.0907,-7.7444],[131.0856,-7.7415],[131.0856,-7.7371],[131.0966,-7.7466],[131.0987,-7.7349]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.1062,-7.7154],[131.0953,-7.7162],[131.1007,-7.7232],[131.102,-7.7189],[131.1062,-7.7154]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.0553,-7.6448],[131.0503,-7.6466],[131.0476,-7.6502],[131.0493,-7.6545],[131.0544,-7.6535],[131.0568,-7.6469],[131.0553,-7.6448]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[130.9477,-7.6417],[130.9524,-7.6396],[130.9517,-7.6362],[130.9469,-7.6345],[130.9445,-7.6374],[130.9477,-7.6417]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.1018,-7.6317],[131.0952,-7.6311],[131.0964,-7.6387],[131.0892,-7.638],[131.0759,-7.6407],[131.0666,-7.6416],[131.0627,-7.6431],[131.0562,-7.6545],[131.0484,-7.6587],[131.0456,-7.6515],[131.0335,-7.6593],[131.0299,-7.6632],[131.0153,-7.6701],[131.0114,-7.6701],[130.9852,-7.6763],[130.9799,-7.6755],[130.9729,-7.6766],[130.9672,-7.6863],[130.9652,-7.6873],[130.971,-7.6975],[130.9678,-7.7192],[130.9677,-7.7246],[130.9709,-7.7294],[130.9706,-7.7342],[130.974,-7.7379],[130.9775,-7.7375],[130.9874,-7.7319],[130.9942,-7.7368],[131.0042,-7.7325],[131.0084,-7.727],[131.0123,-7.7261],[131.0169,-7.7219],[131.0213,-7.7213],[131.0247,-7.724],[131.0362,-7.7223],[131.0444,-7.7196],[131.045,-7.7147],[131.038,-7.7127],[131.0356,-7.7097],[131.0294,-7.7066],[131.0304,-7.6999],[131.0362,-7.6974],[131.0387,-7.6932],[131.0368,-7.6847],[131.0437,-7.6825],[131.0523,-7.6783],[131.0637,-7.6768],[131.0582,-7.6817],[131.0623,-7.6905],[131.0573,-7.6995],[131.0737,-7.7026],[131.0838,-7.7016],[131.0898,-7.6991],[131.0958,-7.6944],[131.1,-7.6893],[131.1045,-7.6904],[131.1079,-7.6817],[131.1144,-7.6734],[131.1154,-7.6702],[131.1129,-7.6641],[131.1162,-7.6589],[131.1152,-7.6532],[131.1227,-7.6346],[131.1143,-7.6332],[131.1046,-7.6331],[131.1018,-7.6317]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[130.9809,-7.5198],[130.9791,-7.517],[130.9719,-7.5295],[130.9659,-7.5345],[130.9656,-7.5369],[130.9789,-7.5436],[130.9847,-7.5442],[130.9843,-7.537],[130.9927,-7.5286],[130.9913,-7.5244],[130.9873,-7.5226],[130.9866,-7.5191],[130.9809,-7.5198]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.1556,-7.5164],[131.1508,-7.5209],[131.1558,-7.5259],[131.162,-7.5218],[131.1583,-7.5167],[131.1556,-7.5164]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.1378,-7.5106],[131.134,-7.5099],[131.1266,-7.5154],[131.1246,-7.5256],[131.1332,-7.5367],[131.1525,-7.5382],[131.1548,-7.531],[131.1494,-7.5244],[131.1484,-7.518],[131.1403,-7.5106],[131.1378,-7.5106]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[130.9954,-7.5033],[130.9944,-7.5127],[131.0005,-7.5166],[131.0028,-7.5119],[130.9999,-7.507],[130.9954,-7.5033]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[130.8499,-7.4923],[130.8449,-7.4922],[130.8494,-7.4985],[130.8417,-7.4988],[130.8361,-7.5033],[130.8365,-7.5125],[130.8386,-7.5183],[130.8367,-7.5311],[130.8372,-7.5356],[130.8417,-7.5419],[130.8359,-7.5418],[130.8313,-7.5534],[130.843,-7.5612],[130.8524,-7.5624],[130.8566,-7.5646],[130.8719,-7.5643],[130.8812,-7.5701],[130.8844,-7.5739],[130.8936,-7.5759],[130.9016,-7.5736],[130.9111,-7.5735],[130.9177,-7.5686],[130.928,-7.5672],[130.928,-7.5642],[130.942,-7.5481],[130.943,-7.5427],[130.9476,-7.5454],[130.95,-7.553],[130.9527,-7.553],[130.9712,-7.5624],[130.9807,-7.5586],[130.9801,-7.5549],[130.9746,-7.5534],[130.9636,-7.545],[130.9592,-7.5465],[130.9551,-7.5452],[130.9528,-7.5395],[130.9614,-7.5321],[130.9661,-7.5326],[130.9709,-7.5289],[130.9743,-7.5239],[130.9753,-7.5177],[130.9664,-7.5155],[130.9701,-7.5114],[130.9731,-7.515],[130.9804,-7.5136],[130.9825,-7.5103],[130.9755,-7.5045],[130.9646,-7.5046],[130.9579,-7.5093],[130.9573,-7.5167],[130.9521,-7.5218],[130.9495,-7.5207],[130.9433,-7.5234],[130.9351,-7.5234],[130.9344,-7.5205],[130.9268,-7.5185],[130.9138,-7.519],[130.905,-7.5147],[130.8941,-7.5134],[130.8922,-7.5116],[130.8761,-7.5098],[130.8743,-7.5047],[130.8636,-7.5036],[130.8591,-7.5],[130.8543,-7.5007],[130.8499,-7.4923]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[130.8116,-7.4762],[130.8154,-7.4872],[130.8207,-7.4938],[130.829,-7.4943],[130.8233,-7.481],[130.8158,-7.4768],[130.8116,-7.4762]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.1979,-7.4177],[131.191,-7.4182],[131.1879,-7.4216],[131.1919,-7.4259],[131.1946,-7.4202],[131.1979,-7.4177]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.1543,-7.3982],[131.1377,-7.3993],[131.1258,-7.4014],[131.1025,-7.4098],[131.0819,-7.4127],[131.0798,-7.4165],[131.0732,-7.4141],[131.0696,-7.4153],[131.0582,-7.4146],[131.0475,-7.4153],[131.0343,-7.4192],[131.0291,-7.4197],[131.0207,-7.4161],[131.011,-7.4185],[131.0056,-7.4178],[130.9923,-7.4235],[130.9876,-7.423],[130.9819,-7.425],[130.9734,-7.4322],[130.9722,-7.4382],[130.9645,-7.4557],[130.9659,-7.4644],[130.964,-7.4803],[130.9661,-7.4886],[130.9729,-7.4938],[130.976,-7.4943],[130.9831,-7.4916],[130.9914,-7.497],[130.9954,-7.4971],[130.9989,-7.5001],[131.0028,-7.4987],[131.0052,-7.4936],[131.0244,-7.4966],[131.0343,-7.4885],[131.0421,-7.4892],[131.0419,-7.4822],[131.0493,-7.4789],[131.0539,-7.4791],[131.0539,-7.4858],[131.0568,-7.4919],[131.0555,-7.4951],[131.0438,-7.4959],[131.0348,-7.5009],[131.0338,-7.5111],[131.0386,-7.5101],[131.0439,-7.5151],[131.0552,-7.5191],[131.0581,-7.5173],[131.0605,-7.5092],[131.0653,-7.5029],[131.0715,-7.4995],[131.0725,-7.4927],[131.0795,-7.4883],[131.0808,-7.4829],[131.0864,-7.484],[131.09,-7.4821],[131.0926,-7.4749],[131.0986,-7.4732],[131.0994,-7.469],[131.1121,-7.4694],[131.1142,-7.4587],[131.1193,-7.4593],[131.1231,-7.4624],[131.1281,-7.4607],[131.1291,-7.4484],[131.1338,-7.4452],[131.1327,-7.4391],[131.1382,-7.4386],[131.1444,-7.4318],[131.1439,-7.4269],[131.1527,-7.4264],[131.1618,-7.419],[131.1625,-7.4114],[131.1543,-7.3982]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.1722,-7.4053],[131.1789,-7.398],[131.1782,-7.3916],[131.1703,-7.3922],[131.1672,-7.3975],[131.1674,-7.4035],[131.1722,-7.4053]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.3225,-7.3849],[131.3169,-7.3854],[131.3135,-7.3936],[131.3125,-7.403],[131.3184,-7.41],[131.3234,-7.4115],[131.3251,-7.4074],[131.3232,-7.3997],[131.3249,-7.3939],[131.3225,-7.3849]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.2586,-7.3101],[131.2569,-7.3054],[131.2592,-7.3019],[131.2533,-7.2988],[131.2451,-7.3044],[131.2439,-7.3076],[131.2389,-7.3108],[131.2428,-7.3185],[131.2397,-7.3249],[131.2421,-7.3274],[131.2387,-7.3319],[131.2384,-7.3364],[131.2284,-7.334],[131.2249,-7.3284],[131.2204,-7.3299],[131.2239,-7.3465],[131.2216,-7.3489],[131.2094,-7.3468],[131.2052,-7.3497],[131.2044,-7.3541],[131.2131,-7.3583],[131.2152,-7.3628],[131.2221,-7.3609],[131.2276,-7.3636],[131.2333,-7.3696],[131.2389,-7.3663],[131.2482,-7.3664],[131.2534,-7.3686],[131.2609,-7.374],[131.2662,-7.375],[131.2719,-7.37],[131.2635,-7.3663],[131.2568,-7.3583],[131.2592,-7.3527],[131.2636,-7.3533],[131.2664,-7.3502],[131.2699,-7.3404],[131.275,-7.3378],[131.28,-7.3424],[131.2898,-7.3355],[131.2995,-7.3347],[131.2961,-7.3268],[131.2888,-7.3218],[131.2867,-7.3188],[131.282,-7.3206],[131.2866,-7.3259],[131.2836,-7.3308],[131.2713,-7.3251],[131.2673,-7.3176],[131.2627,-7.3162],[131.2586,-7.3101]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.3827,-7.2782],[131.3775,-7.2839],[131.3785,-7.2871],[131.3854,-7.2857],[131.3872,-7.2827],[131.3827,-7.2782]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.401,-7.2472],[131.3923,-7.2498],[131.3977,-7.2533],[131.4051,-7.2508],[131.401,-7.2472]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.4694,-7.2297],[131.4672,-7.2287],[131.4582,-7.2305],[131.4524,-7.2352],[131.4557,-7.2408],[131.4608,-7.2436],[131.4692,-7.2424],[131.4704,-7.2387],[131.4694,-7.2297]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.3959,-7.2143],[131.3917,-7.2042],[131.3917,-7.2002],[131.3878,-7.1963],[131.3842,-7.1974],[131.3823,-7.2028],[131.3858,-7.2119],[131.3813,-7.2159],[131.3791,-7.2215],[131.3729,-7.2236],[131.3696,-7.2222],[131.3618,-7.2263],[131.3632,-7.2295],[131.3724,-7.2351],[131.3793,-7.2366],[131.3821,-7.232],[131.3868,-7.2295],[131.393,-7.2218],[131.3988,-7.2213],[131.3985,-7.2321],[131.4042,-7.2325],[131.4041,-7.2259],[131.3959,-7.2143]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.4868,-7.1626],[131.4857,-7.1597],[131.4729,-7.1648],[131.4699,-7.1677],[131.467,-7.1749],[131.4696,-7.1803],[131.4624,-7.1861],[131.4505,-7.1936],[131.4541,-7.1992],[131.4581,-7.1987],[131.465,-7.2057],[131.4774,-7.2088],[131.487,-7.2054],[131.4899,-7.1938],[131.4861,-7.1895],[131.4863,-7.1815],[131.488,-7.1715],[131.4898,-7.1703],[131.4868,-7.1626]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.4803,-7.1235],[131.4825,-7.118],[131.4772,-7.1158],[131.4753,-7.1231],[131.4803,-7.1235]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.655,-7.1215],[131.6546,-7.1169],[131.6467,-7.1138],[131.6378,-7.1149],[131.6206,-7.1232],[131.6033,-7.1219],[131.5998,-7.1252],[131.5971,-7.123],[131.5825,-7.1215],[131.5783,-7.1258],[131.572,-7.1272],[131.5676,-7.1418],[131.5479,-7.1433],[131.5448,-7.1421],[131.5406,-7.1361],[131.5308,-7.1397],[131.5222,-7.1507],[131.5175,-7.1621],[131.5167,-7.1757],[131.5183,-7.1818],[131.5277,-7.1855],[131.5278,-7.188],[131.52,-7.1913],[131.5212,-7.195],[131.5285,-7.1973],[131.5303,-7.217],[131.5359,-7.2203],[131.5351,-7.2235],[131.5289,-7.2238],[131.53,-7.2294],[131.5222,-7.2333],[131.5101,-7.2316],[131.5029,-7.2359],[131.5,-7.2301],[131.4939,-7.227],[131.4848,-7.2285],[131.4789,-7.232],[131.4812,-7.2351],[131.4719,-7.2371],[131.4714,-7.2435],[131.4667,-7.2475],[131.4646,-7.2525],[131.4704,-7.2534],[131.4706,-7.2569],[131.4664,-7.2622],[131.4586,-7.2617],[131.4565,-7.2682],[131.4533,-7.2712],[131.4516,-7.2799],[131.4525,-7.2851],[131.447,-7.2841],[131.4432,-7.2775],[131.4396,-7.2914],[131.4325,-7.3],[131.4363,-7.3088],[131.4299,-7.3111],[131.4344,-7.321],[131.4341,-7.3249],[131.44,-7.3255],[131.4421,-7.3353],[131.446,-7.3361],[131.4488,-7.3425],[131.4438,-7.3453],[131.4386,-7.341],[131.43,-7.3432],[131.4275,-7.3426],[131.4242,-7.3342],[131.4151,-7.3412],[131.4118,-7.3389],[131.4113,-7.3345],[131.4053,-7.3324],[131.3998,-7.3331],[131.3837,-7.3409],[131.3797,-7.3467],[131.392,-7.3529],[131.3908,-7.355],[131.3819,-7.3571],[131.3783,-7.3603],[131.3786,-7.3667],[131.3749,-7.3666],[131.3711,-7.3626],[131.3656,-7.3668],[131.3702,-7.3711],[131.3722,-7.3786],[131.3811,-7.3849],[131.3807,-7.3892],[131.3755,-7.3952],[131.3639,-7.3974],[131.3599,-7.3955],[131.356,-7.3896],[131.3532,-7.3906],[131.355,-7.3996],[131.3494,-7.4055],[131.3472,-7.4133],[131.3506,-7.4189],[131.3518,-7.4239],[131.3428,-7.4403],[131.3347,-7.4409],[131.328,-7.4361],[131.3243,-7.4285],[131.3229,-7.4224],[131.3242,-7.4179],[131.3197,-7.4141],[131.3119,-7.4172],[131.311,-7.4251],[131.3026,-7.4347],[131.2975,-7.4295],[131.2877,-7.4339],[131.2845,-7.4382],[131.2777,-7.4406],[131.2764,-7.4501],[131.2712,-7.4519],[131.2681,-7.4473],[131.2653,-7.4497],[131.2597,-7.4495],[131.2513,-7.457],[131.2478,-7.4642],[131.2413,-7.4675],[131.2344,-7.4749],[131.231,-7.4831],[131.2266,-7.4859],[131.2281,-7.4902],[131.2275,-7.5011],[131.2236,-7.5247],[131.2169,-7.5408],[131.2079,-7.5569],[131.2017,-7.5592],[131.1948,-7.5739],[131.187,-7.583],[131.1833,-7.5915],[131.1846,-7.5932],[131.1925,-7.5861],[131.1924,-7.5928],[131.1828,-7.5992],[131.1799,-7.6088],[131.1725,-7.6415],[131.1766,-7.6497],[131.1691,-7.6518],[131.1642,-7.6565],[131.1584,-7.6642],[131.1604,-7.6687],[131.1671,-7.6698],[131.1761,-7.6774],[131.1803,-7.6821],[131.1805,-7.6918],[131.1866,-7.6989],[131.2001,-7.6992],[131.2069,-7.6964],[131.2144,-7.6987],[131.2225,-7.7062],[131.2361,-7.7068],[131.2394,-7.7115],[131.2384,-7.7197],[131.2437,-7.7228],[131.2386,-7.7261],[131.2318,-7.717],[131.2284,-7.7166],[131.2158,-7.7189],[131.2083,-7.7211],[131.1933,-7.721],[131.1889,-7.7201],[131.1783,-7.7219],[131.1703,-7.7205],[131.1661,-7.713],[131.1569,-7.7044],[131.149,-7.7009],[131.1408,-7.6921],[131.1374,-7.6816],[131.1322,-7.6763],[131.1261,-7.6769],[131.1208,-7.6847],[131.1114,-7.6954],[131.1081,-7.7014],[131.1068,-7.7125],[131.1088,-7.7297],[131.1063,-7.7392],[131.1152,-7.7332],[131.1183,-7.7353],[131.1185,-7.7467],[131.1133,-7.7498],[131.1176,-7.7533],[131.1229,-7.7509],[131.1287,-7.7452],[131.1361,-7.7435],[131.1384,-7.7403],[131.1458,-7.7403],[131.147,-7.7436],[131.1439,-7.7545],[131.1408,-7.7569],[131.1342,-7.7546],[131.131,-7.7613],[131.1323,-7.7653],[131.1382,-7.7651],[131.1361,-7.7704],[131.1247,-7.7713],[131.1176,-7.7744],[131.1128,-7.7805],[131.1197,-7.7875],[131.1182,-7.7912],[131.1229,-7.7945],[131.1291,-7.7896],[131.1339,-7.7893],[131.1464,-7.7995],[131.1467,-7.8216],[131.1419,-7.8291],[131.1354,-7.8323],[131.1246,-7.8333],[131.1216,-7.8322],[131.1189,-7.8267],[131.1124,-7.8195],[131.1026,-7.8222],[131.1003,-7.8278],[131.0876,-7.8376],[131.0846,-7.8421],[131.0835,-7.8511],[131.0808,-7.8595],[131.0825,-7.8707],[131.0873,-7.8791],[131.0941,-7.8817],[131.0965,-7.8865],[131.1021,-7.8882],[131.1025,-7.8796],[131.1003,-7.875],[131.1041,-7.8688],[131.1067,-7.8758],[131.1058,-7.8816],[131.1086,-7.8902],[131.1148,-7.8903],[131.119,-7.893],[131.1192,-7.8985],[131.1215,-7.9033],[131.1205,-7.912],[131.1168,-7.9246],[131.1154,-7.9345],[131.1094,-7.9479],[131.1066,-7.9501],[131.1029,-7.9599],[131.1029,-7.9657],[131.1057,-7.9721],[131.1037,-7.986],[131.1096,-7.9929],[131.1236,-7.9943],[131.1346,-7.9968],[131.1423,-7.997],[131.148,-7.9923],[131.1569,-7.9897],[131.1694,-7.9888],[131.1774,-7.9915],[131.1832,-7.988],[131.1874,-7.988],[131.202,-7.996],[131.2132,-7.9993],[131.2233,-7.9981],[131.2286,-8.0024],[131.2364,-7.9984],[131.2426,-7.9876],[131.2508,-7.982],[131.2574,-7.9748],[131.2603,-7.9689],[131.2729,-7.9555],[131.275,-7.9482],[131.2705,-7.9415],[131.2709,-7.9358],[131.2742,-7.9302],[131.283,-7.9208],[131.2921,-7.9183],[131.2947,-7.9145],[131.2939,-7.9104],[131.2986,-7.9071],[131.304,-7.9156],[131.2993,-7.9259],[131.2981,-7.9323],[131.3054,-7.9362],[131.3073,-7.9403],[131.3056,-7.9436],[131.309,-7.9552],[131.3065,-7.9609],[131.3012,-7.9684],[131.2966,-7.9771],[131.2967,-7.9797],[131.2916,-7.9879],[131.289,-7.9949],[131.2909,-8.0049],[131.2958,-8.0132],[131.2936,-8.0207],[131.2952,-8.0228],[131.3007,-8.0154],[131.303,-8.0155],[131.3091,-8.0078],[131.3184,-8.0021],[131.3241,-7.9932],[131.3248,-7.9877],[131.331,-7.9834],[131.3369,-7.9847],[131.341,-7.9833],[131.3418,-7.9714],[131.332,-7.9529],[131.3337,-7.9463],[131.3374,-7.9444],[131.3427,-7.9452],[131.3486,-7.9371],[131.3529,-7.9278],[131.3441,-7.929],[131.3302,-7.936],[131.3264,-7.9317],[131.3272,-7.9286],[131.3364,-7.9184],[131.3414,-7.9068],[131.3444,-7.9033],[131.3505,-7.9021],[131.3662,-7.9041],[131.37,-7.9022],[131.3771,-7.8949],[131.3781,-7.8893],[131.3693,-7.8868],[131.364,-7.8885],[131.36,-7.8831],[131.3599,-7.8763],[131.3646,-7.8669],[131.3743,-7.8625],[131.3762,-7.8545],[131.3837,-7.8458],[131.3947,-7.8379],[131.4055,-7.8354],[131.4122,-7.8364],[131.4166,-7.8354],[131.4172,-7.8276],[131.4196,-7.823],[131.4261,-7.819],[131.433,-7.8107],[131.4405,-7.811],[131.4458,-7.8083],[131.452,-7.8089],[131.4619,-7.8067],[131.4643,-7.8001],[131.4623,-7.797],[131.4596,-7.786],[131.4518,-7.7756],[131.4543,-7.7713],[131.464,-7.7694],[131.4654,-7.7763],[131.4754,-7.7807],[131.4809,-7.7783],[131.4808,-7.7698],[131.4785,-7.7663],[131.4822,-7.7616],[131.485,-7.749],[131.4784,-7.7428],[131.4775,-7.7393],[131.4796,-7.7342],[131.4828,-7.7321],[131.486,-7.7255],[131.4949,-7.7241],[131.4976,-7.7281],[131.5102,-7.728],[131.5143,-7.7236],[131.5196,-7.7223],[131.5194,-7.7272],[131.5296,-7.7263],[131.5349,-7.7196],[131.5423,-7.7177],[131.5449,-7.7205],[131.5503,-7.7195],[131.554,-7.716],[131.5535,-7.7121],[131.5605,-7.7071],[131.5638,-7.6982],[131.5631,-7.6936],[131.5702,-7.6865],[131.5725,-7.6806],[131.5794,-7.673],[131.5822,-7.668],[131.5882,-7.6645],[131.5834,-7.6609],[131.5862,-7.6566],[131.5918,-7.6554],[131.5982,-7.6484],[131.6,-7.6416],[131.6074,-7.643],[131.61,-7.6481],[131.6191,-7.6449],[131.624,-7.6299],[131.629,-7.6206],[131.6312,-7.6132],[131.6295,-7.6082],[131.6298,-7.6024],[131.6364,-7.5938],[131.6355,-7.5874],[131.6412,-7.5833],[131.6432,-7.5751],[131.6468,-7.5697],[131.6482,-7.5626],[131.6458,-7.5574],[131.6474,-7.5536],[131.656,-7.5458],[131.6568,-7.5411],[131.6554,-7.535],[131.6585,-7.5287],[131.6604,-7.5192],[131.6644,-7.5096],[131.6564,-7.5041],[131.6482,-7.5042],[131.6494,-7.4949],[131.6563,-7.4916],[131.6591,-7.4957],[131.6661,-7.4949],[131.6693,-7.4877],[131.6644,-7.4836],[131.6646,-7.4779],[131.6695,-7.471],[131.6741,-7.4562],[131.6665,-7.4523],[131.6675,-7.4453],[131.6713,-7.4424],[131.679,-7.4399],[131.6816,-7.4374],[131.6915,-7.432],[131.7003,-7.4287],[131.7033,-7.4231],[131.7037,-7.4173],[131.6983,-7.4143],[131.6949,-7.4203],[131.6911,-7.4185],[131.6836,-7.4233],[131.6784,-7.4232],[131.6762,-7.4269],[131.6675,-7.4329],[131.6651,-7.4299],[131.6643,-7.424],[131.6666,-7.4185],[131.6638,-7.4157],[131.659,-7.4226],[131.656,-7.4178],[131.6551,-7.4118],[131.6599,-7.4045],[131.6583,-7.3987],[131.6513,-7.3991],[131.6442,-7.3977],[131.6442,-7.3926],[131.6475,-7.3867],[131.6577,-7.3846],[131.6648,-7.3867],[131.6737,-7.384],[131.6769,-7.3799],[131.676,-7.3624],[131.6689,-7.3598],[131.6596,-7.3625],[131.6545,-7.3618],[131.6565,-7.3492],[131.6479,-7.3481],[131.6494,-7.3386],[131.6549,-7.3298],[131.6543,-7.3262],[131.649,-7.3229],[131.6459,-7.3065],[131.6365,-7.3032],[131.6345,-7.2876],[131.6363,-7.2821],[131.6344,-7.2731],[131.6281,-7.2616],[131.6296,-7.2508],[131.6316,-7.2484],[131.6433,-7.2463],[131.6482,-7.2417],[131.6499,-7.2363],[131.649,-7.2286],[131.6526,-7.2251],[131.669,-7.2209],[131.6713,-7.2217],[131.674,-7.2281],[131.6867,-7.226],[131.6983,-7.2296],[131.7082,-7.2263],[131.717,-7.221],[131.7269,-7.2205],[131.7385,-7.2173],[131.7414,-7.2152],[131.7453,-7.2083],[131.7454,-7.2048],[131.741,-7.2005],[131.7339,-7.1968],[131.7303,-7.1924],[131.7174,-7.1861],[131.7153,-7.1818],[131.7171,-7.176],[131.7253,-7.1756],[131.7194,-7.171],[131.7169,-7.1618],[131.7122,-7.1579],[131.7078,-7.1571],[131.6948,-7.1577],[131.6891,-7.1597],[131.6898,-7.1533],[131.7048,-7.149],[131.7082,-7.1377],[131.6991,-7.1346],[131.6894,-7.1364],[131.6735,-7.1521],[131.6748,-7.1592],[131.6801,-7.1622],[131.6775,-7.1681],[131.6717,-7.1683],[131.6616,-7.1713],[131.6548,-7.1721],[131.6498,-7.1745],[131.64,-7.1745],[131.6367,-7.1692],[131.6419,-7.1586],[131.6505,-7.1538],[131.6547,-7.1444],[131.6548,-7.137],[131.6563,-7.1318],[131.6542,-7.1243],[131.655,-7.1215]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.9133,-7.1008],[131.908,-7.1081],[131.8985,-7.1086],[131.8838,-7.1052],[131.8741,-7.106],[131.8655,-7.1056],[131.8461,-7.1113],[131.836,-7.1111],[131.8269,-7.1138],[131.8216,-7.1128],[131.8107,-7.113],[131.8096,-7.1116],[131.801,-7.1132],[131.7895,-7.1139],[131.7773,-7.1162],[131.7588,-7.1165],[131.7515,-7.1134],[131.737,-7.1174],[131.7215,-7.1275],[131.7153,-7.1352],[131.7158,-7.141],[131.7109,-7.1521],[131.7146,-7.1578],[131.7188,-7.1584],[131.7218,-7.1621],[131.722,-7.1679],[131.7241,-7.1723],[131.7361,-7.1685],[131.7454,-7.1686],[131.7546,-7.1775],[131.7586,-7.1782],[131.763,-7.1752],[131.7626,-7.1684],[131.7697,-7.1625],[131.7791,-7.1613],[131.7834,-7.1636],[131.797,-7.1654],[131.8029,-7.1704],[131.8071,-7.1601],[131.8143,-7.1578],[131.8401,-7.1597],[131.8426,-7.1585],[131.8521,-7.1596],[131.8681,-7.1635],[131.8784,-7.1711],[131.89,-7.1725],[131.8946,-7.1747],[131.899,-7.1799],[131.9003,-7.1936],[131.8992,-7.2032],[131.906,-7.2175],[131.9093,-7.2193],[131.911,-7.2249],[131.9177,-7.2247],[131.9187,-7.2268],[131.926,-7.2249],[131.9299,-7.2272],[131.9361,-7.2357],[131.9357,-7.2392],[131.9406,-7.2404],[131.9476,-7.2398],[131.9492,-7.2454],[131.9535,-7.247],[131.9683,-7.2416],[131.9733,-7.2371],[131.978,-7.2257],[131.9764,-7.2225],[131.9781,-7.2152],[131.982,-7.2141],[131.9846,-7.2089],[131.9835,-7.2051],[131.9748,-7.2061],[131.9716,-7.2002],[131.9754,-7.1927],[131.9752,-7.1835],[131.9712,-7.1719],[131.9665,-7.1691],[131.9558,-7.1657],[131.9545,-7.1595],[131.9496,-7.1501],[131.9415,-7.1424],[131.9368,-7.1353],[131.9334,-7.1205],[131.9279,-7.1118],[131.9236,-7.1075],[131.9133,-7.1008]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.4469,-7.1324],[131.4475,-7.1228],[131.4542,-7.1196],[131.4523,-7.0975],[131.4448,-7.0926],[131.4367,-7.099],[131.4354,-7.1142],[131.4317,-7.12],[131.4318,-7.1316],[131.4338,-7.1371],[131.4455,-7.1363],[131.4469,-7.1324]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.4476,-7.0838],[131.4447,-7.0743],[131.44,-7.0678],[131.4302,-7.0652],[131.4313,-7.0704],[131.4308,-7.0785],[131.4355,-7.0877],[131.4437,-7.0875],[131.4476,-7.0838]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.9148,-7.0765],[131.9249,-7.075],[131.934,-7.0694],[131.9455,-7.058],[131.9576,-7.0486],[131.96,-7.0446],[131.9629,-7.033],[131.966,-7.0242],[131.9771,-7.0067],[131.9813,-7.0024],[131.986,-7.0007],[132.005,-6.984],[132.0027,-6.9818],[131.9963,-6.9818],[131.9782,-6.9919],[131.9679,-6.9984],[131.9621,-7.0047],[131.9531,-7.0126],[131.9449,-7.026],[131.9368,-7.03],[131.9246,-7.0391],[131.9127,-7.0452],[131.9059,-7.0534],[131.9034,-7.0608],[131.9072,-7.0745],[131.9148,-7.0765]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.5823,-6.9755],[131.5754,-6.9713],[131.5743,-6.9759],[131.5782,-6.9822],[131.5835,-6.9791],[131.5823,-6.9755]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.5131,-6.8705],[131.5057,-6.8659],[131.4837,-6.8649],[131.4815,-6.8694],[131.4779,-6.8712],[131.4739,-6.8697],[131.4679,-6.8781],[131.4679,-6.892],[131.4659,-6.8985],[131.4575,-6.9093],[131.4586,-6.9157],[131.4669,-6.9183],[131.4709,-6.9173],[131.4788,-6.9222],[131.4876,-6.9149],[131.494,-6.9062],[131.497,-6.8982],[131.5065,-6.8936],[131.5098,-6.8878],[131.5141,-6.8772],[131.5131,-6.8705]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.5357,-6.8084],[131.5267,-6.8101],[131.5253,-6.8126],[131.5179,-6.813],[131.5121,-6.8201],[131.5076,-6.8283],[131.52,-6.8301],[131.5264,-6.8282],[131.5326,-6.8192],[131.5357,-6.8084]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.6049,-6.6766],[131.6024,-6.6751],[131.5913,-6.6737],[131.5797,-6.669],[131.5744,-6.669],[131.5668,-6.6779],[131.564,-6.678],[131.559,-6.6855],[131.5586,-6.6927],[131.5616,-6.6945],[131.5635,-6.7031],[131.5547,-6.7135],[131.5503,-6.7125],[131.542,-6.7199],[131.534,-6.7302],[131.5265,-6.7427],[131.5218,-6.7428],[131.5186,-6.7483],[131.5138,-6.7641],[131.5173,-6.7669],[131.5172,-6.7718],[131.5223,-6.7785],[131.5215,-6.7833],[131.5233,-6.7898],[131.5215,-6.7924],[131.5272,-6.8026],[131.5336,-6.8016],[131.5359,-6.7958],[131.543,-6.7968],[131.549,-6.79],[131.5597,-6.7823],[131.5606,-6.7891],[131.5728,-6.7836],[131.5822,-6.7758],[131.5852,-6.771],[131.5869,-6.7611],[131.5915,-6.7566],[131.5827,-6.7521],[131.5742,-6.7575],[131.5625,-6.7553],[131.5578,-6.7519],[131.5585,-6.7452],[131.5552,-6.743],[131.5608,-6.7297],[131.5619,-6.724],[131.5666,-6.7175],[131.5749,-6.7103],[131.5854,-6.7169],[131.5852,-6.7218],[131.5917,-6.7249],[131.5937,-6.7293],[131.599,-6.7279],[131.5971,-6.7221],[131.6066,-6.7108],[131.611,-6.7076],[131.6177,-6.7059],[131.6222,-6.6943],[131.6208,-6.6877],[131.6208,-6.6798],[131.6172,-6.6769],[131.6049,-6.6766]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"LineString","coordinates":[[131.5934,-6.6595],[131.5939,-6.6561],[131.5881,-6.6539],[131.5889,-6.6601],[131.5934,-6.6595]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"LineString","coordinates":[[132.487,-6.0126],[132.4835,-6.0085],[132.4868,-5.9959],[132.4819,-5.9894],[132.4752,-6.005],[132.4763,-6.0109],[132.4743,-6.0149],[132.4693,-6.0181],[132.4661,-6.0143],[132.4568,-6.0097],[132.4501,-6.0128],[132.4457,-6.0098],[132.4429,-6.0116],[132.4428,-6.0185],[132.4468,-6.0242],[132.4485,-6.0336],[132.4552,-6.0384],[132.4631,-6.0341],[132.4735,-6.0324],[132.4768,-6.0274],[132.4862,-6.0186],[132.487,-6.0126]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"LineString","coordinates":[[132.5462,-5.9186],[132.5496,-5.9155],[132.5521,-5.9078],[132.5516,-5.9024],[132.5478,-5.8996],[132.5452,-5.8867],[132.5477,-5.8844],[132.5478,-5.8793],[132.5424,-5.8745],[132.5372,-5.877],[132.5294,-5.8908],[132.528,-5.8948],[132.5309,-5.9118],[132.535,-5.9192],[132.5394,-5.9214],[132.5462,-5.9186]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"LineString","coordinates":[[132.5637,-5.871],[132.5661,-5.8705],[132.5711,-5.8608],[132.5647,-5.8576],[132.5601,-5.8532],[132.5554,-5.8415],[132.54,-5.8384],[132.5365,-5.8395],[132.5347,-5.8475],[132.539,-5.8575],[132.5569,-5.8711],[132.5637,-5.871]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"LineString","coordinates":[[132.6148,-5.8587],[132.6195,-5.8583],[132.623,-5.8518],[132.6223,-5.8476],[132.6172,-5.8429],[132.616,-5.8352],[132.6091,-5.8337],[132.6063,-5.8395],[132.6004,-5.8439],[132.5995,-5.849],[132.6044,-5.8583],[132.6093,-5.8596],[132.6148,-5.8587]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"LineString","coordinates":[[132.5817,-5.8172],[132.5769,-5.817],[132.5762,-5.8206],[132.5808,-5.8264],[132.5909,-5.8314],[132.5946,-5.8378],[132.5981,-5.8395],[132.6033,-5.8335],[132.6071,-5.8313],[132.5941,-5.8178],[132.5817,-5.8172]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"LineString","coordinates":[[132.6058,-5.8217],[132.608,-5.8167],[132.604,-5.8089],[132.5992,-5.8124],[132.6017,-5.8206],[132.6058,-5.8217]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"LineString","coordinates":[[132.6346,-5.8126],[132.6343,-5.8047],[132.6323,-5.7912],[132.6257,-5.7955],[132.625,-5.8002],[132.6302,-5.813],[132.6346,-5.8126]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"LineString","coordinates":[[132.5697,-5.7867],[132.573,-5.7813],[132.5648,-5.7795],[132.563,-5.7852],[132.5697,-5.7867]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"LineString","coordinates":[[132.6424,-5.788],[132.6434,-5.7812],[132.641,-5.7765],[132.6377,-5.7826],[132.6377,-5.7865],[132.6424,-5.788]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"LineString","coordinates":[[132.6945,-5.8121],[132.7011,-5.8086],[132.702,-5.7978],[132.699,-5.7905],[132.6958,-5.7785],[132.691,-5.7698],[132.6911,-5.7513],[132.6807,-5.7485],[132.6757,-5.7441],[132.6738,-5.7525],[132.6746,-5.7621],[132.672,-5.7655],[132.669,-5.7757],[132.6697,-5.7841],[132.6758,-5.7918],[132.6772,-5.7973],[132.683,-5.8005],[132.6889,-5.8056],[132.6889,-5.8129],[132.6945,-5.8121]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"LineString","coordinates":[[132.6633,-5.739],[132.6534,-5.7407],[132.6504,-5.7485],[132.657,-5.7542],[132.659,-5.7471],[132.6633,-5.739]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"LineString","coordinates":[[132.5624,-5.7259],[132.5552,-5.7289],[132.5604,-5.7366],[132.5632,-5.737],[132.5665,-5.7325],[132.5624,-5.7259]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"LineString","coordinates":[[132.7991,-5.7259],[132.7954,-5.723],[132.7908,-5.7258],[132.7854,-5.7247],[132.7844,-5.728],[132.7904,-5.7289],[132.7925,-5.7318],[132.7915,-5.7365],[132.7995,-5.7543],[132.7945,-5.7609],[132.7985,-5.7671],[132.8034,-5.7687],[132.8035,-5.7619],[132.8009,-5.7487],[132.8019,-5.7299],[132.7991,-5.7259]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"LineString","coordinates":[[132.5779,-5.7135],[132.5646,-5.7105],[132.5599,-5.7066],[132.5565,-5.7135],[132.5624,-5.7135],[132.5667,-5.7176],[132.5717,-5.7188],[132.5779,-5.7135]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"LineString","coordinates":[[132.7628,-5.7166],[132.7659,-5.7131],[132.7653,-5.7041],[132.7612,-5.7003],[132.7579,-5.7002],[132.7542,-5.704],[132.759,-5.7111],[132.7586,-5.7153],[132.7628,-5.7166]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"LineString","coordinates":[[132.6205,-5.707],[132.6247,-5.7014],[132.6212,-5.6967],[132.6155,-5.6961],[132.6126,-5.7008],[132.6146,-5.7065],[132.6205,-5.707]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"LineString","coordinates":[[132.7797,-5.6978],[132.7752,-5.6953],[132.7721,-5.6911],[132.7669,-5.6907],[132.7661,-5.6956],[132.7713,-5.7004],[132.7763,-5.7015],[132.7797,-5.6978]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"LineString","coordinates":[[132.9966,-5.6432],[132.996,-5.633],[132.994,-5.6292],[132.99,-5.6324],[132.9901,-5.6424],[132.993,-5.6467],[132.9966,-5.6432]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"LineString","coordinates":[[132.9839,-5.635],[132.9786,-5.6262],[132.9744,-5.6363],[132.9794,-5.6374],[132.9839,-5.635]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"LineString","coordinates":[[132.5981,-5.636],[132.5997,-5.6312],[132.597,-5.627],[132.5822,-5.6244],[132.5813,-5.6262],[132.5929,-5.6364],[132.5981,-5.636]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"LineString","coordinates":[[132.7111,-5.6226],[132.7116,-5.6101],[132.7096,-5.6059],[132.7103,-5.5955],[132.7117,-5.5918],[132.6999,-5.5953],[132.6854,-5.6041],[132.6796,-5.6111],[132.6797,-5.6219],[132.6747,-5.6297],[132.6646,-5.6302],[132.6598,-5.6272],[132.6539,-5.6179],[132.6434,-5.6138],[132.6314,-5.6142],[132.6254,-5.6117],[132.6156,-5.5961],[132.6108,-5.5939],[132.6124,-5.6062],[132.6207,-5.6156],[132.6259,-5.6186],[132.6283,-5.6249],[132.636,-5.6375],[132.6374,-5.6456],[132.6377,-5.6562],[132.6348,-5.6654],[132.634,-5.6724],[132.6395,-5.6733],[132.6465,-5.6776],[132.6478,-5.6705],[132.6507,-5.6717],[132.6544,-5.6856],[132.6538,-5.6956],[132.6496,-5.7013],[132.6478,-5.7066],[132.6488,-5.7122],[132.6528,-5.7163],[132.6578,-5.7167],[132.6601,-5.7132],[132.6721,-5.7218],[132.6774,-5.727],[132.6801,-5.7372],[132.6885,-5.7441],[132.696,-5.7516],[132.6987,-5.7568],[132.6994,-5.7725],[132.7012,-5.7754],[132.7012,-5.7841],[132.7056,-5.8034],[132.7081,-5.8108],[132.6972,-5.8125],[132.6987,-5.8325],[132.6957,-5.8393],[132.6931,-5.8409],[132.6851,-5.8412],[132.6812,-5.846],[132.6797,-5.8562],[132.6812,-5.8696],[132.6779,-5.8761],[132.6735,-5.9014],[132.6796,-5.9074],[132.6872,-5.9042],[132.6979,-5.9023],[132.7039,-5.9084],[132.7063,-5.9148],[132.7061,-5.9204],[132.7018,-5.9264],[132.7001,-5.9358],[132.7031,-5.9469],[132.7088,-5.9454],[132.7133,-5.9374],[132.7218,-5.9324],[132.7256,-5.9249],[132.7243,-5.9135],[132.722,-5.9064],[132.7227,-5.8917],[132.7281,-5.8934],[132.7304,-5.9029],[132.725,-5.92],[132.7268,-5.9248],[132.7229,-5.9387],[132.7207,-5.9434],[132.7221,-5.9502],[132.7248,-5.9525],[132.7338,-5.9528],[132.7505,-5.9481],[132.7568,-5.9432],[132.7607,-5.9424],[132.7696,-5.9457],[132.7763,-5.9445],[132.7831,-5.9396],[132.7828,-5.9291],[132.7878,-5.9251],[132.7883,-5.9133],[132.7909,-5.9069],[132.7926,-5.8888],[132.7976,-5.8784],[132.7979,-5.8667],[132.8043,-5.8585],[132.8154,-5.8499],[132.8125,-5.8402],[132.8109,-5.8238],[132.8112,-5.8102],[132.8103,-5.8043],[132.8066,-5.7964],[132.8044,-5.7881],[132.7992,-5.7847],[132.7938,-5.7839],[132.7899,-5.7753],[132.7862,-5.7779],[132.7813,-5.7777],[132.7798,-5.7821],[132.7746,-5.7868],[132.7741,-5.793],[132.7773,-5.8041],[132.7746,-5.8131],[132.7712,-5.8106],[132.7712,-5.8026],[132.7686,-5.783],[132.769,-5.7752],[132.7762,-5.7839],[132.7797,-5.7791],[132.7721,-5.766],[132.7717,-5.7588],[132.7746,-5.7522],[132.7728,-5.7422],[132.7743,-5.736],[132.7792,-5.7315],[132.7752,-5.7196],[132.7673,-5.7165],[132.7601,-5.7187],[132.7605,-5.7261],[132.7656,-5.7458],[132.7618,-5.7443],[132.7588,-5.7328],[132.7529,-5.7265],[132.7473,-5.7146],[132.7467,-5.7033],[132.7433,-5.6939],[132.7383,-5.692],[132.7403,-5.6822],[132.7377,-5.6741],[132.7435,-5.6574],[132.7425,-5.6463],[132.7292,-5.6478],[132.725,-5.6516],[132.724,-5.657],[132.7191,-5.6612],[132.7172,-5.6576],[132.7112,-5.6586],[132.7085,-5.6565],[132.7022,-5.6568],[132.6968,-5.6593],[132.694,-5.6575],[132.6933,-5.6508],[132.6957,-5.645],[132.6945,-5.6388],[132.6976,-5.6354],[132.6982,-5.631],[132.7032,-5.6276],[132.7059,-5.632],[132.7034,-5.6393],[132.7041,-5.6444],[132.7014,-5.652],[132.7067,-5.6511],[132.7101,-5.6538],[132.7133,-5.6425],[132.7091,-5.628],[132.7111,-5.6226]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"LineString","coordinates":[[132.5881,-5.5737],[132.5919,-5.572],[132.592,-5.566],[132.5844,-5.5646],[132.5828,-5.5678],[132.5881,-5.5737]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"LineString","coordinates":[[132.5693,-5.5683],[132.562,-5.56],[132.5578,-5.5627],[132.5616,-5.5691],[132.5693,-5.5683]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"LineString","coordinates":[[132.9577,-5.755],[132.9603,-5.7485],[132.9611,-5.739],[132.9652,-5.7363],[132.9686,-5.731],[132.976,-5.7258],[132.9831,-5.7144],[132.9865,-5.7105],[132.9985,-5.6934],[133.0032,-5.6851],[133.0047,-5.6791],[133.0211,-5.66],[133.0393,-5.6427],[133.0431,-5.6408],[133.0562,-5.6296],[133.0624,-5.6259],[133.0727,-5.6269],[133.0783,-5.625],[133.0837,-5.619],[133.0879,-5.6105],[133.0979,-5.5965],[133.1014,-5.587],[133.1062,-5.5785],[133.1089,-5.5692],[133.1148,-5.5629],[133.1172,-5.5442],[133.1206,-5.5289],[133.1258,-5.5126],[133.1289,-5.4942],[133.1333,-5.4869],[133.1386,-5.4623],[133.1412,-5.4561],[133.1437,-5.4357],[133.1433,-5.4285],[133.1482,-5.424],[133.1499,-5.4064],[133.1498,-5.3983],[133.1556,-5.372],[133.1587,-5.3621],[133.1601,-5.3527],[133.173,-5.3374],[133.1754,-5.3425],[133.1793,-5.3409],[133.1814,-5.3368],[133.1809,-5.3302],[133.1833,-5.3167],[133.1825,-5.3083],[133.1755,-5.3015],[133.1701,-5.2926],[133.1606,-5.2861],[133.1566,-5.2853],[133.1531,-5.2795],[133.1459,-5.2839],[133.1455,-5.2754],[133.147,-5.2707],[133.1435,-5.2688],[133.1331,-5.2751],[133.1295,-5.2786],[133.1272,-5.2848],[133.1235,-5.289],[133.1196,-5.2891],[133.1169,-5.2785],[133.115,-5.2757],[133.1099,-5.2784],[133.1101,-5.2822],[133.1041,-5.2915],[133.0985,-5.3151],[133.0935,-5.3206],[133.0919,-5.3301],[133.0874,-5.3389],[133.0865,-5.3437],[133.0884,-5.3476],[133.0847,-5.363],[133.0814,-5.3706],[133.0758,-5.3776],[133.0674,-5.3846],[133.0659,-5.3916],[133.0672,-5.4083],[133.0658,-5.4143],[133.0599,-5.4199],[133.054,-5.438],[133.0532,-5.4433],[133.0484,-5.4525],[133.0498,-5.4612],[133.0459,-5.4679],[133.0449,-5.4848],[133.0385,-5.4942],[133.0387,-5.5143],[133.0358,-5.5261],[133.0293,-5.5313],[133.0324,-5.5379],[133.0262,-5.5417],[133.0212,-5.5515],[133.0218,-5.5587],[133.0143,-5.574],[133.0129,-5.5827],[133.0101,-5.5859],[133.0085,-5.5944],[133.0138,-5.6082],[133.0066,-5.6115],[133.0041,-5.6171],[133.0045,-5.6283],[133.0013,-5.6366],[133.0009,-5.6475],[132.9981,-5.6498],[132.9892,-5.6486],[132.9846,-5.6547],[132.9779,-5.6568],[132.9734,-5.6534],[132.9729,-5.6459],[132.976,-5.6412],[132.9713,-5.6397],[132.9601,-5.6507],[132.9606,-5.6583],[132.9512,-5.667],[132.9535,-5.6717],[132.9503,-5.675],[132.9439,-5.6771],[132.9398,-5.684],[132.9413,-5.6926],[132.943,-5.6943],[132.9376,-5.7084],[132.9394,-5.7114],[132.9383,-5.7211],[132.9409,-5.7271],[132.9357,-5.734],[132.9383,-5.7421],[132.9367,-5.7472],[132.9294,-5.752],[132.9276,-5.7598],[132.9357,-5.7688],[132.9352,-5.7764],[132.925,-5.7789],[132.9228,-5.785],[132.9155,-5.7922],[132.9125,-5.7928],[132.909,-5.7993],[132.9035,-5.8047],[132.9099,-5.8071],[132.9103,-5.8105],[132.9068,-5.8202],[132.9005,-5.8232],[132.8984,-5.8301],[132.8853,-5.8362],[132.8821,-5.8404],[132.8875,-5.852],[132.8932,-5.8542],[132.8889,-5.8599],[132.8862,-5.8566],[132.8802,-5.8604],[132.8798,-5.8688],[132.8738,-5.8799],[132.8826,-5.8864],[132.8886,-5.892],[132.8867,-5.8951],[132.8872,-5.9033],[132.8834,-5.9039],[132.8803,-5.901],[132.8711,-5.8997],[132.8688,-5.9026],[132.8694,-5.9092],[132.8726,-5.9156],[132.8723,-5.9219],[132.8686,-5.926],[132.8702,-5.9348],[132.8692,-5.9394],[132.8618,-5.9546],[132.8577,-5.9647],[132.8512,-5.9779],[132.8463,-6.0003],[132.8457,-6.0053],[132.8497,-6.0065],[132.8554,-5.9949],[132.8563,-5.9835],[132.8668,-5.9718],[132.8687,-5.9651],[132.8736,-5.9598],[132.8803,-5.9558],[132.8937,-5.9545],[132.8988,-5.95],[132.9034,-5.9362],[132.9024,-5.9293],[132.9091,-5.9238],[132.908,-5.9172],[132.9125,-5.9155],[132.9128,-5.9078],[132.9177,-5.9051],[132.9198,-5.8997],[132.9268,-5.8996],[132.9297,-5.8843],[132.9422,-5.8825],[132.951,-5.8766],[132.9537,-5.8729],[132.9539,-5.8661],[132.9567,-5.8595],[132.9607,-5.8547],[132.9557,-5.8466],[132.9568,-5.8414],[132.9529,-5.8403],[132.9497,-5.8364],[132.9492,-5.8302],[132.9444,-5.8286],[132.9436,-5.8189],[132.9488,-5.8063],[132.9526,-5.7872],[132.9519,-5.7773],[132.9542,-5.7664],[132.9577,-5.755]]}},{"type":"Feature","properties":{"mhid":"1332:460","alt_name":"KABUPATEN MALUKU TENGAH","latitude":-3.29167,"longitude":128.9675,"sample_value":384},"geometry":{"type":"LineString","coordinates":[[130.0444,-4.6032],[130.0475,-4.5949],[130.0459,-4.592],[130.0479,-4.586],[130.0435,-4.5809],[130.037,-4.5795],[130.0349,-4.5845],[130.0308,-4.5872],[130.0315,-4.595],[130.034,-4.6025],[130.0419,-4.6054],[130.0444,-4.6032]]}},{"type":"Feature","properties":{"mhid":"1332:460","alt_name":"KABUPATEN MALUKU TENGAH","latitude":-3.29167,"longitude":128.9675,"sample_value":384},"geometry":{"type":"LineString","coordinates":[[129.6924,-4.5557],[129.6942,-4.553],[129.6937,-4.5427],[129.6826,-4.5489],[129.6772,-4.5558],[129.6664,-4.5612],[129.6705,-4.5655],[129.6821,-4.5645],[129.6858,-4.5626],[129.6924,-4.5557]]}},{"type":"Feature","properties":{"mhid":"1332:460","alt_name":"KABUPATEN MALUKU TENGAH","latitude":-3.29167,"longitude":128.9675,"sample_value":384},"geometry":{"type":"LineString","coordinates":[[129.7663,-4.5183],[129.7633,-4.521],[129.7731,-4.5382],[129.7816,-4.5326],[129.7841,-4.5232],[129.7811,-4.5204],[129.7737,-4.5183],[129.7663,-4.5183]]}},{"type":"Feature","properties":{"mhid":"1332:460","alt_name":"KABUPATEN MALUKU TENGAH","latitude":-3.29167,"longitude":128.9675,"sample_value":384},"geometry":{"type":"LineString","coordinates":[[129.9499,-4.5555],[129.9575,-4.5497],[129.9573,-4.5468],[129.951,-4.5367],[129.9555,-4.5318],[129.9502,-4.5298],[129.9458,-4.5229],[129.9443,-4.5135],[129.9399,-4.5122],[129.9415,-4.5238],[129.9346,-4.5339],[129.933,-4.538],[129.9281,-4.5426],[129.9164,-4.5471],[129.9056,-4.5496],[129.8978,-4.5453],[129.8815,-4.5474],[129.8747,-4.5433],[129.8629,-4.5465],[129.8608,-4.5563],[129.8649,-4.563],[129.8687,-4.5647],[129.8743,-4.5565],[129.8832,-4.5528],[129.8858,-4.561],[129.8907,-4.5575],[129.8964,-4.5596],[129.9017,-4.5582],[129.9067,-4.5651],[129.9133,-4.5664],[129.9135,-4.5705],[129.9183,-4.5716],[129.9207,-4.5686],[129.9284,-4.5688],[129.9358,-4.5705],[129.9368,-4.5656],[129.9414,-4.5664],[129.9458,-4.5623],[129.952,-4.561],[129.9499,-4.5555]]}},{"type":"Feature","properties":{"mhid":"1332:460","alt_name":"KABUPATEN MALUKU TENGAH","latitude":-3.29167,"longitude":128.9675,"sample_value":384},"geometry":{"type":"LineString","coordinates":[[129.8782,-4.5051],[129.8748,-4.5082],[129.8667,-4.5229],[129.868,-4.5298],[129.8775,-4.5345],[129.8907,-4.5353],[129.8898,-4.5266],[129.8912,-4.516],[129.8799,-4.5098],[129.8782,-4.5051]]}},{"type":"Feature","properties":{"mhid":"1332:460","alt_name":"KABUPATEN MALUKU TENGAH","latitude":-3.29167,"longitude":128.9675,"sample_value":384},"geometry":{"type":"LineString","coordinates":[[129.8957,-4.5038],[129.8963,-4.5116],[129.9001,-4.5162],[129.8962,-4.5289],[129.9035,-4.5306],[129.9071,-4.5282],[129.9091,-4.5174],[129.9069,-4.5067],[129.9006,-4.5032],[129.8957,-4.5038]]}},{"type":"Feature","properties":{"mhid":"1332:460","alt_name":"KABUPATEN MALUKU TENGAH","latitude":-3.29167,"longitude":128.9675,"sample_value":384},"geometry":{"type":"LineString","coordinates":[[127.9107,-3.6486],[127.905,-3.6509],[127.9081,-3.6545],[127.9107,-3.6486]]}},{"type":"Feature","properties":{"mhid":"1332:460","alt_name":"KABUPATEN MALUKU TENGAH","latitude":-3.29167,"longitude":128.9675,"sample_value":384},"geometry":{"type":"LineString","coordinates":[[128.7809,-3.6473],[128.7723,-3.6395],[128.7689,-3.649],[128.7652,-3.6454],[128.7578,-3.6494],[128.7584,-3.6648],[128.7629,-3.681],[128.7615,-3.6892],[128.7664,-3.6935],[128.7812,-3.6918],[128.7833,-3.6949],[128.7957,-3.6906],[128.805,-3.6864],[128.8114,-3.6753],[128.8095,-3.6719],[128.8091,-3.6632],[128.806,-3.6526],[128.8004,-3.6438],[128.7976,-3.6447],[128.7923,-3.6414],[128.7876,-3.6496],[128.7848,-3.6512],[128.7809,-3.6473]]}},{"type":"Feature","properties":{"mhid":"1332:460","alt_name":"KABUPATEN MALUKU TENGAH","latitude":-3.29167,"longitude":128.9675,"sample_value":384},"geometry":{"type":"LineString","coordinates":[[128.613,-3.656],[128.6133,-3.6504],[128.6101,-3.6412],[128.6079,-3.6309],[128.603,-3.6339],[128.6052,-3.6414],[128.6042,-3.6457],[128.609,-3.6561],[128.613,-3.656]]}},{"type":"Feature","properties":{"mhid":"1332:460","alt_name":"KABUPATEN MALUKU TENGAH","latitude":-3.29167,"longitude":128.9675,"sample_value":384},"geometry":{"type":"LineString","coordinates":[[128.4567,-3.513],[128.447,-3.5104],[128.4432,-3.5151],[128.4393,-3.5164],[128.4319,-3.5222],[128.4256,-3.5223],[128.4207,-3.5252],[128.4149,-3.5322],[128.4133,-3.5393],[128.417,-3.5416],[128.418,-3.5469],[128.4214,-3.55],[128.4193,-3.5551],[128.4241,-3.566],[128.4183,-3.577],[128.4104,-3.5874],[128.4112,-3.5912],[128.4168,-3.6001],[128.4167,-3.6099],[128.4112,-3.618],[128.3998,-3.6281],[128.4034,-3.6347],[128.4171,-3.6352],[128.4288,-3.6297],[128.4368,-3.6297],[128.4402,-3.6315],[128.4504,-3.6217],[128.4567,-3.6226],[128.4657,-3.614],[128.4735,-3.6169],[128.4917,-3.6207],[128.4979,-3.6242],[128.5019,-3.6151],[128.5091,-3.6152],[128.5081,-3.6092],[128.5146,-3.6066],[128.5198,-3.6146],[128.5241,-3.6175],[128.5334,-3.6164],[128.5422,-3.6138],[128.5439,-3.6099],[128.5427,-3.6048],[128.5523,-3.6],[128.5624,-3.6012],[128.5671,-3.5938],[128.5742,-3.588],[128.5765,-3.5847],[128.5701,-3.5663],[128.558,-3.5501],[128.556,-3.5437],[128.5505,-3.5384],[128.5458,-3.5382],[128.5395,-3.5407],[128.5299,-3.5364],[128.5242,-3.5278],[128.5129,-3.5207],[128.5043,-3.517],[128.5008,-3.5138],[128.4948,-3.5144],[128.4896,-3.5183],[128.4801,-3.5185],[128.4762,-3.5164],[128.4694,-3.5164],[128.4603,-3.5123],[128.4567,-3.513]]}},{"type":"Feature","properties":{"mhid":"1332:460","alt_name":"KABUPATEN MALUKU TENGAH","latitude":-3.29167,"longitude":128.9675,"sample_value":384},"geometry":{"type":"LineString","coordinates":[[128.5821,-3.4943],[128.572,-3.4946],[128.5656,-3.4986],[128.5577,-3.5086],[128.5541,-3.5154],[128.5543,-3.5299],[128.572,-3.5484],[128.5786,-3.55],[128.591,-3.5508],[128.5968,-3.5553],[128.6046,-3.5724],[128.6079,-3.5773],[128.6183,-3.5852],[128.626,-3.5848],[128.6251,-3.5891],[128.6212,-3.5916],[128.6129,-3.5906],[128.6074,-3.5884],[128.6081,-3.5952],[128.6124,-3.599],[128.6214,-3.6006],[128.6269,-3.6045],[128.6285,-3.6132],[128.6327,-3.6204],[128.6426,-3.6316],[128.6496,-3.6298],[128.6571,-3.623],[128.6644,-3.6095],[128.6658,-3.6033],[128.6642,-3.5976],[128.666,-3.5911],[128.6612,-3.5903],[128.6543,-3.5847],[128.6509,-3.5768],[128.6548,-3.5735],[128.6585,-3.576],[128.663,-3.5739],[128.6667,-3.5765],[128.6757,-3.5765],[128.6895,-3.5844],[128.6974,-3.5904],[128.7028,-3.5931],[128.7084,-3.6033],[128.7193,-3.6094],[128.7229,-3.6201],[128.727,-3.6225],[128.7316,-3.6211],[128.736,-3.6154],[128.7385,-3.6006],[128.735,-3.5811],[128.7359,-3.5735],[128.7329,-3.5691],[128.7333,-3.5617],[128.7356,-3.5537],[128.7312,-3.5417],[128.7325,-3.5392],[128.7267,-3.532],[128.7294,-3.5243],[128.7303,-3.5126],[128.7178,-3.5023],[128.7156,-3.4981],[128.6938,-3.494],[128.6886,-3.507],[128.6886,-3.5159],[128.6867,-3.5219],[128.6866,-3.5308],[128.6897,-3.5364],[128.6837,-3.5438],[128.6736,-3.5395],[128.6566,-3.529],[128.6373,-3.5289],[128.637,-3.52],[128.6267,-3.5164],[128.6198,-3.5075],[128.61,-3.5032],[128.606,-3.498],[128.6004,-3.4962],[128.595,-3.4984],[128.5821,-3.4943]]}},{"type":"Feature","properties":{"mhid":"1332:460","alt_name":"KABUPATEN MALUKU TENGAH","latitude":-3.29167,"longitude":128.9675,"sample_value":384},"geometry":{"type":"LineString","coordinates":[[128.2717,-3.6185],[128.2804,-3.6186],[128.2838,-3.6235],[128.2927,-3.6216],[128.3022,-3.6245],[128.3071,-3.6275],[128.3102,-3.6325],[128.3221,-3.6326],[128.3324,-3.6344],[128.3388,-3.6369],[128.3474,-3.6364],[128.3538,-3.6336],[128.356,-3.6289],[128.3558,-3.6181],[128.3539,-3.6155],[128.3574,-3.6104],[128.3564,-3.6041],[128.3455,-3.5918],[128.3409,-3.5896],[128.3328,-3.5889],[128.3294,-3.5868],[128.3265,-3.5798],[128.3251,-3.5706],[128.3218,-3.5653],[128.3281,-3.5561],[128.3443,-3.5444],[128.3485,-3.5387],[128.3536,-3.527],[128.3529,-3.5224],[128.3489,-3.5163],[128.3441,-3.5057],[128.3397,-3.5023],[128.3286,-3.5022],[128.3198,-3.5067],[128.3135,-3.5053],[128.3075,-3.4989],[128.3041,-3.4987],[128.2935,-3.4909],[128.2849,-3.4907],[128.279,-3.4936],[128.2723,-3.4923],[128.2648,-3.4955],[128.2582,-3.4949],[128.2491,-3.5002],[128.2449,-3.5047],[128.23,-3.5149],[128.2241,-3.5181],[128.2127,-3.5341],[128.2013,-3.543],[128.1917,-3.5564],[128.1834,-3.5627],[128.1801,-3.5678],[128.1787,-3.5732],[128.1807,-3.5791],[128.1787,-3.5829],[128.1679,-3.5877],[128.1588,-3.5875],[128.1501,-3.5896],[128.1457,-3.589],[128.1384,-3.5906],[128.135,-3.5864],[128.1245,-3.5852],[128.12,-3.5868],[128.1092,-3.5871],[128.1046,-3.5843],[128.0964,-3.5867],[128.0908,-3.5814],[128.0834,-3.5827],[128.0791,-3.5896],[128.0702,-3.5886],[128.0652,-3.5909],[128.0608,-3.5891],[128.0515,-3.5898],[128.0488,-3.5919],[128.0412,-3.5937],[128.0347,-3.593],[128.03,-3.5909],[128.0255,-3.5931],[128.0196,-3.6058],[128.0155,-3.6092],[128.0103,-3.6105],[128.0041,-3.6173],[127.9992,-3.6188],[127.9913,-3.6294],[127.9861,-3.6296],[127.9797,-3.636],[127.9637,-3.6446],[127.9635,-3.6526],[127.958,-3.6571],[127.9533,-3.6649],[127.9486,-3.6667],[127.9449,-3.6723],[127.9356,-3.6761],[127.9284,-3.6809],[127.9214,-3.6918],[127.9251,-3.7033],[127.9235,-3.7093],[127.92,-3.7153],[127.9168,-3.7152],[127.9212,-3.7306],[127.927,-3.7398],[127.9332,-3.7455],[127.9358,-3.7582],[127.9394,-3.7606],[127.9396,-3.7679],[127.9416,-3.7726],[127.9533,-3.7772],[127.9592,-3.7741],[127.9651,-3.7729],[127.9698,-3.7776],[127.9795,-3.7804],[127.9909,-3.778],[127.9958,-3.7798],[127.9998,-3.7781],[128.0114,-3.7658],[128.014,-3.7669],[128.0203,-3.7597],[128.0238,-3.7491],[128.0345,-3.741],[128.0385,-3.7342],[128.0467,-3.7319],[128.0518,-3.7288],[128.0577,-3.7275],[128.0635,-3.7215],[128.068,-3.7203],[128.0763,-3.7219],[128.0828,-3.7127],[128.0774,-3.7063],[128.0704,-3.7067],[128.0614,-3.6979],[128.0554,-3.697],[128.0505,-3.6936],[128.045,-3.6939],[128.0359,-3.6863],[128.0322,-3.6776],[128.0328,-3.6738],[128.0284,-3.6658],[128.0339,-3.662],[128.0389,-3.6531],[128.0394,-3.6484],[128.0443,-3.6434],[128.0495,-3.6427],[128.0537,-3.6466],[128.0606,-3.648],[128.0618,-3.6511],[128.0684,-3.6485],[128.0732,-3.6486],[128.0785,-3.6447],[128.08,-3.6412],[128.0865,-3.6392],[128.0962,-3.6331],[128.1041,-3.6319],[128.1075,-3.6352],[128.1182,-3.6338],[128.123,-3.631],[128.128,-3.6328],[128.1359,-3.6294],[128.1398,-3.6248],[128.1491,-3.6248],[128.1531,-3.6236],[128.1667,-3.623],[128.1714,-3.6239],[128.1834,-3.6233],[128.1859,-3.6287],[128.1888,-3.6293],[128.1934,-3.6247],[128.1954,-3.6196],[128.193,-3.6144],[128.1949,-3.6071],[128.2017,-3.5988],[128.2066,-3.5994],[128.2079,-3.5905],[128.2126,-3.5865],[128.2156,-3.5867],[128.2186,-3.5794],[128.2259,-3.5782],[128.232,-3.5816],[128.2351,-3.5754],[128.2386,-3.573],[128.2473,-3.578],[128.2501,-3.582],[128.2633,-3.5944],[128.2703,-3.5994],[128.2679,-3.6102],[128.2681,-3.616],[128.2717,-3.6185]]}},{"type":"Feature","properties":{"mhid":"1332:460","alt_name":"KABUPATEN MALUKU TENGAH","latitude":-3.29167,"longitude":128.9675,"sample_value":384},"geometry":{"type":"LineString","coordinates":[[129.1752,-2.9182],[129.1734,-2.916],[129.1687,-2.9213],[129.1798,-2.924],[129.1806,-2.9179],[129.1752,-2.9182]]}},{"type":"Feature","properties":{"mhid":"1332:460","alt_name":"KABUPATEN MALUKU TENGAH","latitude":-3.29167,"longitude":128.9675,"sample_value":384},"geometry":{"type":"LineString","coordinates":[[129.2149,-2.9017],[129.2126,-2.9009],[129.2052,-2.9031],[129.2081,-2.9062],[129.2149,-2.9017]]}},{"type":"Feature","properties":{"mhid":"1332:460","alt_name":"KABUPATEN MALUKU TENGAH","latitude":-3.29167,"longitude":128.9675,"sample_value":384},"geometry":{"type":"LineString","coordinates":[[129.0782,-2.8911],[129.0743,-2.8892],[129.07,-2.8918],[129.071,-2.9019],[129.0748,-2.9049],[129.0823,-2.8963],[129.0782,-2.8911]]}},{"type":"Feature","properties":{"mhid":"1332:460","alt_name":"KABUPATEN MALUKU TENGAH","latitude":-3.29167,"longitude":128.9675,"sample_value":384},"geometry":{"type":"LineString","coordinates":[[130.1102,-2.9966],[130.1001,-2.9951],[130.0902,-2.9988],[130.0723,-3.0045],[130.0465,-3.0053],[130.0349,-3.0037],[130.0263,-3],[130.0222,-2.9967],[130.0144,-2.9823],[130.0117,-2.9792],[130.0039,-2.9839],[129.9984,-2.984],[129.9883,-2.9789],[129.9787,-2.9774],[129.9675,-2.9716],[129.9598,-2.9691],[129.9497,-2.9592],[129.9403,-2.958],[129.9325,-2.9534],[129.921,-2.949],[129.9095,-2.9424],[129.9058,-2.9345],[129.9019,-2.9142],[129.8929,-2.9134],[129.8812,-2.9155],[129.8851,-2.9217],[129.891,-2.922],[129.8881,-2.9319],[129.8824,-2.9343],[129.877,-2.9298],[129.8786,-2.923],[129.8769,-2.9202],[129.8716,-2.9209],[129.8666,-2.9146],[129.8709,-2.9141],[129.8742,-2.9094],[129.8791,-2.9116],[129.8806,-2.9041],[129.8841,-2.9021],[129.8788,-2.896],[129.8672,-2.8954],[129.8588,-2.8962],[129.8427,-2.9032],[129.8359,-2.9084],[129.8181,-2.9143],[129.805,-2.9082],[129.8031,-2.9036],[129.7927,-2.89],[129.7897,-2.8682],[129.7823,-2.8638],[129.7712,-2.8638],[129.7605,-2.8618],[129.7547,-2.856],[129.7501,-2.8559],[129.732,-2.8492],[129.7224,-2.8424],[129.7192,-2.8419],[129.7088,-2.8344],[129.6947,-2.8353],[129.686,-2.8346],[129.6782,-2.8317],[129.6697,-2.8253],[129.6565,-2.826],[129.6489,-2.8288],[129.6445,-2.8288],[129.6354,-2.8264],[129.6284,-2.8212],[129.6261,-2.8113],[129.6228,-2.8049],[129.619,-2.803],[129.6133,-2.8032],[129.6051,-2.8066],[129.5912,-2.8097],[129.5803,-2.809],[129.5587,-2.8038],[129.5469,-2.7999],[129.5421,-2.7956],[129.5403,-2.791],[129.5431,-2.7852],[129.5404,-2.7818],[129.5287,-2.7727],[129.5253,-2.7733],[129.5249,-2.7838],[129.5232,-2.7946],[129.5213,-2.7982],[129.514,-2.7954],[129.5135,-2.7885],[129.5006,-2.7922],[129.4986,-2.7947],[129.4927,-2.7935],[129.4889,-2.7903],[129.4807,-2.7862],[129.4699,-2.7842],[129.4634,-2.7863],[129.455,-2.787],[129.4347,-2.7825],[129.4264,-2.7879],[129.4172,-2.7909],[129.4097,-2.7896],[129.4027,-2.7865],[129.3928,-2.7882],[129.3843,-2.7877],[129.3765,-2.7897],[129.3642,-2.8034],[129.3682,-2.8103],[129.3734,-2.8138],[129.3736,-2.818],[129.3682,-2.8285],[129.3613,-2.8361],[129.3523,-2.8514],[129.3461,-2.8589],[129.3357,-2.8664],[129.3233,-2.8721],[129.306,-2.8776],[129.3004,-2.8831],[129.2857,-2.8908],[129.2854,-2.8926],[129.262,-2.9055],[129.2469,-2.9108],[129.2351,-2.9187],[129.2233,-2.922],[129.218,-2.9278],[129.2163,-2.9351],[129.2098,-2.9429],[129.2165,-2.9507],[129.2126,-2.954],[129.2093,-2.9483],[129.2052,-2.9473],[129.1998,-2.9382],[129.2051,-2.9322],[129.2014,-2.9288],[129.1962,-2.9328],[129.1904,-2.9238],[129.1867,-2.9216],[129.1821,-2.9286],[129.1757,-2.9311],[129.1738,-2.935],[129.1751,-2.9398],[129.1864,-2.951],[129.1892,-2.9521],[129.1914,-2.9584],[129.1835,-2.9574],[129.1799,-2.9585],[129.1642,-2.9516],[129.1553,-2.9491],[129.147,-2.9538],[129.1413,-2.9584],[129.1327,-2.9683],[129.1287,-2.9689],[129.1283,-2.9638],[129.1205,-2.9624],[129.1165,-2.9561],[129.1099,-2.9515],[129.1008,-2.9481],[129.0831,-2.9392],[129.0827,-2.9319],[129.0804,-2.9276],[129.0826,-2.9217],[129.0767,-2.9163],[129.0721,-2.906],[129.0678,-2.9066],[129.0675,-2.9017],[129.064,-2.8954],[129.0724,-2.8789],[129.0695,-2.8703],[129.0726,-2.8589],[129.0783,-2.8551],[129.0769,-2.8502],[129.0721,-2.8463],[129.0706,-2.8383],[129.0712,-2.8305],[129.0698,-2.82],[129.066,-2.8085],[129.0594,-2.804],[129.0535,-2.7956],[129.0463,-2.7946],[129.0328,-2.7962],[129.0151,-2.806],[129.001,-2.8204],[128.9903,-2.8248],[128.9852,-2.8295],[128.9767,-2.8305],[128.9699,-2.8361],[128.9573,-2.842],[128.9363,-2.8463],[128.9255,-2.8505],[128.9079,-2.8534],[128.8911,-2.8537],[128.8756,-2.8565],[128.8675,-2.8603],[128.8364,-2.867],[128.8268,-2.8662],[128.8112,-2.8666],[128.8059,-2.8676],[128.7868,-2.8637],[128.7806,-2.8605],[128.7556,-2.8509],[128.7536,-2.8512],[128.753,-2.8638],[128.754,-2.8685],[128.7511,-2.878],[128.7564,-2.8829],[128.7551,-2.8878],[128.7503,-2.8912],[128.7523,-2.8997],[128.7506,-2.9037],[128.7529,-2.9114],[128.7562,-2.9138],[128.7556,-2.9177],[128.7584,-2.9229],[128.7549,-2.9253],[128.7607,-2.9308],[128.7619,-2.9507],[128.7582,-2.9528],[128.754,-2.9583],[128.7544,-2.9652],[128.7499,-2.9683],[128.7442,-2.9669],[128.7451,-2.9749],[128.7431,-2.9806],[128.7464,-2.991],[128.7517,-3.0006],[128.7488,-3.0023],[128.7484,-3.0096],[128.751,-3.0177],[128.7523,-3.032],[128.7584,-3.0442],[128.7757,-3.0428],[128.7992,-3.1241],[128.8264,-3.2148],[128.8296,-3.2256],[128.8301,-3.2316],[128.8364,-3.2408],[128.8439,-3.2395],[128.8454,-3.2341],[128.852,-3.227],[128.8589,-3.2117],[128.8704,-3.2075],[128.8853,-3.2037],[128.9014,-3.2042],[128.9195,-3.2088],[128.9335,-3.2101],[128.9458,-3.2169],[128.9504,-3.2215],[128.958,-3.223],[128.9658,-3.226],[128.9675,-3.2339],[128.9665,-3.2456],[128.9709,-3.2636],[128.971,-3.2727],[128.9693,-3.2746],[128.9695,-3.2823],[128.9665,-3.2904],[128.9587,-3.2956],[128.9533,-3.2958],[128.9521,-3.2992],[128.9445,-3.3052],[128.9402,-3.3071],[128.9349,-3.3152],[128.9284,-3.3218],[128.9263,-3.3257],[128.927,-3.3348],[128.9199,-3.3381],[128.9125,-3.3282],[128.9131,-3.3356],[128.9286,-3.3527],[128.9363,-3.3574],[128.9469,-3.3573],[128.9515,-3.3553],[128.9625,-3.3621],[128.972,-3.3601],[128.9779,-3.361],[128.9836,-3.3571],[128.9917,-3.3545],[128.9999,-3.3559],[129.0086,-3.3545],[129.0155,-3.3521],[129.0227,-3.3541],[129.0342,-3.3482],[129.0442,-3.3488],[129.0601,-3.352],[129.0649,-3.3502],[129.0819,-3.3416],[129.0855,-3.3415],[129.095,-3.3479],[129.1026,-3.3473],[129.1077,-3.352],[129.1108,-3.3506],[129.1201,-3.3525],[129.1251,-3.3592],[129.1331,-3.3646],[129.1382,-3.3614],[129.1472,-3.3616],[129.1543,-3.3685],[129.1663,-3.3696],[129.1736,-3.3744],[129.1796,-3.3826],[129.1911,-3.3898],[129.203,-3.3895],[129.2076,-3.3924],[129.2117,-3.3926],[129.2162,-3.3961],[129.2214,-3.3957],[129.226,-3.4003],[129.2313,-3.4015],[129.2399,-3.401],[129.2483,-3.4065],[129.2562,-3.4085],[129.2607,-3.4065],[129.2747,-3.4113],[129.2845,-3.4124],[129.2885,-3.4142],[129.3087,-3.4108],[129.3179,-3.4151],[129.3218,-3.4151],[129.3275,-3.4121],[129.3309,-3.4127],[129.3353,-3.4172],[129.3408,-3.4163],[129.3464,-3.4125],[129.3559,-3.4102],[129.362,-3.4146],[129.367,-3.4146],[129.3708,-3.412],[129.3761,-3.4126],[129.3883,-3.4177],[129.3948,-3.4161],[129.3985,-3.4181],[129.4045,-3.417],[129.4155,-3.4208],[129.4175,-3.4246],[129.428,-3.4275],[129.4318,-3.4319],[129.4402,-3.4314],[129.4533,-3.4358],[129.4759,-3.4477],[129.4797,-3.4551],[129.4872,-3.4579],[129.4952,-3.4569],[129.5004,-3.4614],[129.5054,-3.4617],[129.5212,-3.4677],[129.5253,-3.4675],[129.5289,-3.4703],[129.5384,-3.4719],[129.5488,-3.47],[129.5538,-3.4681],[129.5608,-3.4591],[129.5625,-3.453],[129.568,-3.4477],[129.5672,-3.4394],[129.5693,-3.4304],[129.5645,-3.4165],[129.566,-3.4129],[129.5634,-3.4088],[129.5597,-3.3964],[129.5517,-3.3876],[129.551,-3.3826],[129.5442,-3.3759],[129.5421,-3.3779],[129.5345,-3.3685],[129.5315,-3.3625],[129.5314,-3.3578],[129.5264,-3.3555],[129.5141,-3.338],[129.5092,-3.3343],[129.5052,-3.3291],[129.4975,-3.3271],[129.4987,-3.3206],[129.5103,-3.3059],[129.5197,-3.2996],[129.5245,-3.2979],[129.5372,-3.3022],[129.5411,-3.3058],[129.5486,-3.3091],[129.5623,-3.3044],[129.5711,-3.3044],[129.5876,-3.3103],[129.5925,-3.3131],[129.5994,-3.3105],[129.6068,-3.3159],[129.6163,-3.3165],[129.6283,-3.3118],[129.6332,-3.3117],[129.6403,-3.3159],[129.645,-3.3158],[129.6529,-3.3181],[129.6645,-3.3175],[129.6714,-3.3225],[129.6787,-3.3236],[129.6875,-3.3224],[129.6947,-3.32],[129.708,-3.3174],[129.7289,-3.3148],[129.7362,-3.3172],[129.7443,-3.3264],[129.7628,-3.3321],[129.7736,-3.3281],[129.7819,-3.3288],[129.7965,-3.3233],[129.8073,-3.3216],[129.8175,-3.3235],[129.8224,-3.3306],[129.84,-3.3308],[129.8463,-3.3343],[129.8552,-3.336],[129.8562,-3.3219],[129.867,-3.3131],[129.8738,-3.3063],[129.8763,-3.2977],[129.8798,-3.2949],[129.8837,-3.2865],[129.8828,-3.2783],[129.8844,-3.2693],[129.8948,-3.2611],[129.8997,-3.2593],[129.9031,-3.2386],[129.9058,-3.2334],[129.9002,-3.2217],[129.9107,-3.2092],[129.9142,-3.1986],[129.9134,-3.1825],[129.9152,-3.1773],[129.9127,-3.1679],[129.9271,-3.1638],[129.9563,-3.1701],[130.0202,-3.1825],[130.0442,-3.1815],[130.0582,-3.1922],[130.0686,-3.1924],[130.0782,-3.1951],[130.0847,-3.2085],[130.0957,-3.1926],[130.0961,-3.1777],[130.0933,-3.1704],[130.0966,-3.1519],[130.1058,-3.1399],[130.1063,-3.122],[130.1034,-3.1178],[130.1057,-3.0907],[130.101,-3.082],[130.1034,-3.0802],[130.1032,-3.0746],[130.1006,-3.0693],[130.1029,-3.0603],[130.102,-3.0468],[130.1057,-3.0373],[130.1043,-3.0239],[130.1069,-3.0221],[130.104,-3.0147],[130.108,-3.0121],[130.1097,-3.0078],[130.1102,-2.9966]]}},{"type":"Feature","properties":{"mhid":"1332:460","alt_name":"KABUPATEN MALUKU TENGAH","latitude":-3.29167,"longitude":128.9675,"sample_value":384},"geometry":{"type":"LineString","coordinates":[[129.0232,-2.7542],[129.0272,-2.7476],[129.0233,-2.7435],[129.0191,-2.746],[129.0206,-2.7528],[129.0232,-2.7542]]}},{"type":"Feature","properties":{"mhid":"1332:460","alt_name":"KABUPATEN MALUKU TENGAH","latitude":-3.29167,"longitude":128.9675,"sample_value":384},"geometry":{"type":"LineString","coordinates":[[128.9952,-2.7319],[128.9931,-2.7265],[128.9851,-2.7266],[128.9785,-2.7342],[128.977,-2.7441],[128.9879,-2.7423],[128.9905,-2.7363],[128.9952,-2.7319]]}},{"type":"Feature","properties":{"mhid":"1332:461","alt_name":"KABUPATEN BURU","latitude":-3.32767,"longitude":126.68413,"sample_value":390},"geometry":{"type":"LineString","coordinates":[[127.2387,-3.6336],[127.2404,-3.6267],[127.2398,-3.6159],[127.243,-3.6138],[127.2441,-3.6054],[127.2515,-3.5923],[127.2486,-3.5784],[127.2459,-3.5755],[127.2453,-3.5651],[127.2487,-3.5561],[127.2464,-3.5501],[127.2508,-3.5444],[127.2517,-3.5294],[127.2495,-3.5254],[127.2506,-3.5213],[127.2489,-3.492],[127.2505,-3.4812],[127.2504,-3.4672],[127.2485,-3.4501],[127.2508,-3.4467],[127.2504,-3.4369],[127.2544,-3.4299],[127.2526,-3.4272],[127.253,-3.4178],[127.2553,-3.4117],[127.2684,-3.3964],[127.2689,-3.3894],[127.2586,-3.3731],[127.2516,-3.373],[127.246,-3.3706],[127.2436,-3.3668],[127.2328,-3.3632],[127.2239,-3.3618],[127.2199,-3.3571],[127.204,-3.3584],[127.1822,-3.3559],[127.1784,-3.3515],[127.1795,-3.347],[127.1734,-3.3418],[127.1688,-3.3412],[127.1638,-3.3354],[127.1555,-3.3391],[127.1399,-3.3534],[127.141,-3.3621],[127.139,-3.3695],[127.1397,-3.3736],[127.1348,-3.379],[127.1314,-3.3788],[127.1246,-3.3827],[127.1203,-3.3832],[127.1072,-3.3806],[127.0974,-3.3763],[127.0923,-3.3721],[127.0856,-3.3721],[127.0758,-3.3738],[127.072,-3.3643],[127.0687,-3.346],[127.0722,-3.3413],[127.0687,-3.3378],[127.072,-3.3331],[127.0701,-3.3224],[127.0553,-3.329],[127.0528,-3.3366],[127.0429,-3.3288],[127.0442,-3.3201],[127.0416,-3.3158],[127.0437,-3.3129],[127.0406,-3.3004],[127.0399,-3.2907],[127.033,-3.2719],[127.0348,-3.2638],[127.0439,-3.2653],[127.0561,-3.2618],[127.062,-3.2663],[127.0642,-3.2626],[127.0687,-3.2625],[127.0722,-3.2599],[127.0789,-3.2647],[127.0823,-3.2643],[127.0886,-3.2696],[127.0954,-3.2773],[127.0949,-3.2831],[127.0991,-3.2847],[127.1037,-3.2819],[127.1118,-3.2796],[127.1168,-3.2804],[127.1221,-3.2745],[127.1196,-3.2718],[127.1197,-3.2646],[127.1135,-3.2607],[127.1113,-3.2525],[127.1113,-3.2336],[127.1063,-3.225],[127.1019,-3.2233],[127.0906,-3.211],[127.0835,-3.2053],[127.0795,-3.2039],[127.0726,-3.1957],[127.0597,-3.1834],[127.0487,-3.1758],[127.044,-3.175],[127.0375,-3.1708],[127.0296,-3.1726],[127.0269,-3.1668],[127.0184,-3.1576],[126.9906,-3.1427],[126.9837,-3.1379],[126.9783,-3.1391],[126.9656,-3.1377],[126.9576,-3.1378],[126.9502,-3.1409],[126.9357,-3.1434],[126.9274,-3.1418],[126.9238,-3.1397],[126.9118,-3.1244],[126.9073,-3.1223],[126.9005,-3.127],[126.8911,-3.1274],[126.8857,-3.1233],[126.8837,-3.1123],[126.8815,-3.1073],[126.8719,-3.1011],[126.868,-3.0963],[126.8594,-3.0908],[126.85,-3.0895],[126.8357,-3.0838],[126.8346,-3.0816],[126.8199,-3.0713],[126.8115,-3.0671],[126.806,-3.0662],[126.8003,-3.0626],[126.7896,-3.0592],[126.7746,-3.0572],[126.7696,-3.0608],[126.7575,-3.0597],[126.7544,-3.0607],[126.7401,-3.0597],[126.7302,-3.0577],[126.7255,-3.0581],[126.711,-3.0561],[126.7051,-3.0574],[126.7,-3.0602],[126.6974,-3.0666],[126.6921,-3.0668],[126.6807,-3.0616],[126.6783,-3.0691],[126.6703,-3.0702],[126.6588,-3.0696],[126.6525,-3.0716],[126.6396,-3.0702],[126.6104,-3.0679],[126.598,-3.0639],[126.5892,-3.0681],[126.5683,-3.072],[126.552,-3.0723],[126.5161,-3.0711],[126.5065,-3.0761],[126.5021,-3.0772],[126.4881,-3.0776],[126.4793,-3.0796],[126.4736,-3.0831],[126.4638,-3.0846],[126.4544,-3.0828],[126.4371,-3.0838],[126.4272,-3.0816],[126.4234,-3.0792],[126.4184,-3.0812],[126.4041,-3.081],[126.3927,-3.0881],[126.3891,-3.0933],[126.379,-3.0952],[126.3641,-3.094],[126.3572,-3.0973],[126.3392,-3.1013],[126.3256,-3.1001],[126.3055,-3.0939],[126.2996,-3.0934],[126.2925,-3.098],[126.2845,-3.1078],[126.2728,-3.1151],[126.2631,-3.1305],[126.2592,-3.1327],[126.2492,-3.1312],[126.2341,-3.1325],[126.2275,-3.1378],[126.2216,-3.1531],[126.221,-3.1587],[126.2224,-3.1675],[126.226,-3.1722],[126.2281,-3.1781],[126.2223,-3.1835],[126.2153,-3.1826],[126.2034,-3.1859],[126.1893,-3.1853],[126.1631,-3.1759],[126.1588,-3.1715],[126.15,-3.1693],[126.1368,-3.1631],[126.1256,-3.1522],[126.1215,-3.1564],[126.1126,-3.1572],[126.1179,-3.182],[126.1229,-3.2029],[126.13,-3.2261],[126.1326,-3.2598],[126.1326,-3.2647],[126.1284,-3.282],[126.1242,-3.2953],[126.1331,-3.302],[126.18,-3.3196],[126.2286,-3.3367],[126.2331,-3.3381],[126.3256,-3.3612],[126.381,-3.3846],[126.4622,-3.4118],[126.5098,-3.4355],[126.5842,-3.4508],[126.7266,-3.4801],[126.8162,-3.4999],[126.9019,-3.5188],[126.9792,-3.5425],[127.0386,-3.5604],[127.1456,-3.5931],[127.1959,-3.6093],[127.2387,-3.6336]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.502,-7.0696],[134.497,-7.0647],[134.4909,-7.0624],[134.4847,-7.0655],[134.4856,-7.0711],[134.4759,-7.0858],[134.4814,-7.0882],[134.4918,-7.0887],[134.4948,-7.0916],[134.502,-7.0901],[134.5111,-7.0927],[134.5212,-7.0976],[134.5236,-7.0966],[134.5252,-7.0863],[134.5324,-7.0834],[134.5339,-7.0794],[134.5326,-7.0724],[134.5262,-7.066],[134.5145,-7.0641],[134.502,-7.0696]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.685,-7.0226],[134.6868,-7.0158],[134.6831,-7.0123],[134.6836,-7.0079],[134.6778,-7.0036],[134.6742,-7.0055],[134.6699,-7.0113],[134.6697,-7.0162],[134.6736,-7.0226],[134.6827,-7.0248],[134.685,-7.0226]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.5121,-6.9301],[134.5064,-6.9335],[134.5025,-6.9317],[134.491,-6.9369],[134.4892,-6.9404],[134.4899,-6.9517],[134.4926,-6.9539],[134.5119,-6.951],[134.5161,-6.9531],[134.5254,-6.9508],[134.5261,-6.9473],[134.5206,-6.9457],[134.5147,-6.9397],[134.5121,-6.9301]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.5441,-6.9052],[134.5409,-6.9057],[134.5277,-6.915],[134.522,-6.9076],[134.5207,-6.9162],[134.5297,-6.9193],[134.542,-6.9111],[134.5486,-6.9107],[134.5441,-6.9052]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7032,-6.8704],[134.6993,-6.8641],[134.6952,-6.8626],[134.6933,-6.857],[134.6868,-6.8594],[134.6887,-6.8626],[134.6968,-6.8682],[134.6984,-6.872],[134.7153,-6.876],[134.7459,-6.8759],[134.7514,-6.8725],[134.7527,-6.8674],[134.7481,-6.8606],[134.743,-6.8701],[134.7304,-6.8675],[134.724,-6.8697],[134.7204,-6.8653],[134.716,-6.8653],[134.7093,-6.8695],[134.7032,-6.8704]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.759,-6.8641],[134.7601,-6.8537],[134.7553,-6.8529],[134.759,-6.8641]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.6824,-6.8537],[134.6805,-6.8469],[134.6765,-6.8453],[134.6639,-6.8435],[134.661,-6.8461],[134.6627,-6.8497],[134.6602,-6.8537],[134.6511,-6.8579],[134.6462,-6.8542],[134.6398,-6.8571],[134.6363,-6.8537],[134.6326,-6.855],[134.6351,-6.8648],[134.6333,-6.8687],[134.6261,-6.8717],[134.6229,-6.8776],[134.6048,-6.8847],[134.6001,-6.8797],[134.5906,-6.8747],[134.5867,-6.8765],[134.5852,-6.8833],[134.5957,-6.8936],[134.6054,-6.9009],[134.6126,-6.8996],[134.6275,-6.885],[134.644,-6.8695],[134.6564,-6.8637],[134.6593,-6.8595],[134.6656,-6.8573],[134.6782,-6.8561],[134.6824,-6.8537]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.5429,-6.7498],[134.5337,-6.7476],[134.531,-6.7513],[134.523,-6.7509],[134.5197,-6.7523],[134.5169,-6.7592],[134.5224,-6.7609],[134.5119,-6.7703],[134.5094,-6.7783],[134.5133,-6.7833],[134.5228,-6.7831],[134.5345,-6.7772],[134.5356,-6.7739],[134.543,-6.7677],[134.5444,-6.7639],[134.553,-6.7579],[134.5534,-6.752],[134.5429,-6.7498]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.4441,-6.7263],[134.4473,-6.7241],[134.4472,-6.7197],[134.4394,-6.719],[134.4393,-6.7223],[134.4441,-6.7263]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.5115,-6.7165],[134.5069,-6.7159],[134.5018,-6.7198],[134.4938,-6.7191],[134.4919,-6.7263],[134.4882,-6.7301],[134.4874,-6.7344],[134.4784,-6.7427],[134.4748,-6.7563],[134.476,-6.7607],[134.4864,-6.7628],[134.492,-6.7556],[134.4953,-6.755],[134.5094,-6.7565],[134.5175,-6.7529],[134.5182,-6.751],[134.5287,-6.7495],[134.5283,-6.737],[134.5272,-6.7344],[134.5124,-6.7304],[134.511,-6.7278],[134.5136,-6.7209],[134.5115,-6.7165]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.4948,-6.6947],[134.4957,-6.6832],[134.4931,-6.6812],[134.4853,-6.6865],[134.4801,-6.6946],[134.4737,-6.6987],[134.4808,-6.7058],[134.482,-6.7097],[134.487,-6.7063],[134.4948,-6.6947]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.5281,-6.6901],[134.5239,-6.6754],[134.5185,-6.6716],[134.5165,-6.6669],[134.5086,-6.6606],[134.5037,-6.667],[134.5015,-6.6737],[134.5019,-6.6875],[134.4937,-6.6991],[134.4909,-6.7047],[134.4982,-6.7045],[134.5081,-6.7113],[134.5101,-6.7112],[134.522,-6.6968],[134.5264,-6.6941],[134.5281,-6.6901]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.6019,-6.6146],[134.5966,-6.6055],[134.5886,-6.6059],[134.5873,-6.615],[134.583,-6.6194],[134.5868,-6.6222],[134.5891,-6.629],[134.5936,-6.6285],[134.5952,-6.6248],[134.6009,-6.6191],[134.6019,-6.6146]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7755,-6.6027],[134.7706,-6.6016],[134.7592,-6.6055],[134.7555,-6.608],[134.7563,-6.6141],[134.7628,-6.6218],[134.7623,-6.6333],[134.7645,-6.6349],[134.7713,-6.6332],[134.7827,-6.6417],[134.7874,-6.6406],[134.7907,-6.6373],[134.7968,-6.6352],[134.7947,-6.6274],[134.79,-6.6249],[134.7895,-6.6207],[134.7855,-6.6203],[134.7809,-6.6139],[134.7755,-6.6027]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7875,-6.6026],[134.7831,-6.5964],[134.7802,-6.6018],[134.7875,-6.6026]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7313,-6.584],[134.7295,-6.5881],[134.7379,-6.5952],[134.7356,-6.5857],[134.7313,-6.584]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7347,-6.5996],[134.7292,-6.5966],[134.728,-6.5853],[134.7168,-6.5802],[134.7095,-6.5783],[134.7031,-6.5787],[134.6994,-6.5806],[134.6911,-6.5896],[134.6868,-6.592],[134.6833,-6.6049],[134.6808,-6.6207],[134.6794,-6.6248],[134.6727,-6.6301],[134.6762,-6.6352],[134.6761,-6.6412],[134.6735,-6.6472],[134.6743,-6.6508],[134.6719,-6.6603],[134.6726,-6.6623],[134.6661,-6.6759],[134.6517,-6.697],[134.6426,-6.7055],[134.6333,-6.707],[134.6275,-6.7103],[134.6263,-6.7157],[134.6283,-6.7194],[134.6361,-6.7216],[134.6337,-6.7344],[134.6307,-6.7421],[134.6233,-6.7516],[134.6246,-6.759],[134.6278,-6.7574],[134.6353,-6.7571],[134.6414,-6.759],[134.6499,-6.7715],[134.6509,-6.7774],[134.6538,-6.7795],[134.6611,-6.7761],[134.6653,-6.7763],[134.6735,-6.7821],[134.6761,-6.7792],[134.6849,-6.7753],[134.687,-6.7639],[134.6927,-6.7557],[134.6949,-6.7454],[134.7019,-6.7365],[134.7063,-6.7355],[134.7112,-6.7301],[134.7106,-6.7216],[134.7137,-6.7156],[134.7254,-6.7051],[134.7381,-6.7014],[134.7387,-6.6983],[134.7362,-6.6875],[134.7386,-6.6821],[134.7376,-6.6711],[134.7404,-6.6676],[134.7384,-6.6602],[134.7391,-6.6474],[134.7449,-6.6384],[134.7567,-6.6307],[134.7611,-6.6238],[134.755,-6.616],[134.7524,-6.6092],[134.7402,-6.6002],[134.7347,-6.5996]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7312,-6.5675],[134.7351,-6.5607],[134.7327,-6.5564],[134.7241,-6.5519],[134.7226,-6.5449],[134.7171,-6.5473],[134.7073,-6.5574],[134.703,-6.5595],[134.7109,-6.5668],[134.726,-6.5712],[134.7312,-6.5675]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.589,-6.5179],[134.5825,-6.5085],[134.5784,-6.5074],[134.572,-6.5129],[134.5646,-6.5132],[134.5588,-6.5185],[134.5524,-6.5293],[134.5497,-6.5385],[134.5577,-6.5413],[134.5597,-6.5442],[134.5776,-6.5457],[134.5806,-6.5397],[134.5899,-6.53],[134.5961,-6.5184],[134.589,-6.5179]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7676,-6.4939],[134.7719,-6.4892],[134.7639,-6.4873],[134.7591,-6.4905],[134.7554,-6.4953],[134.7578,-6.4977],[134.7671,-6.4963],[134.7676,-6.4939]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.8281,-6.4822],[134.8211,-6.4803],[134.8177,-6.4823],[134.8111,-6.4919],[134.7954,-6.5088],[134.7897,-6.509],[134.7872,-6.5113],[134.7814,-6.5107],[134.7793,-6.5078],[134.7735,-6.5113],[134.7757,-6.5197],[134.7748,-6.5249],[134.7778,-6.5313],[134.7787,-6.5386],[134.7772,-6.5426],[134.7781,-6.5498],[134.7927,-6.5478],[134.8026,-6.5485],[134.8101,-6.5591],[134.8133,-6.5618],[134.8229,-6.5458],[134.8244,-6.5383],[134.8298,-6.5317],[134.8292,-6.529],[134.8357,-6.5153],[134.8487,-6.4999],[134.8508,-6.4935],[134.8493,-6.4902],[134.8408,-6.4903],[134.833,-6.4822],[134.8281,-6.4822]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.5839,-6.4741],[134.5752,-6.4754],[134.5688,-6.4794],[134.5593,-6.4827],[134.5542,-6.4864],[134.5313,-6.4789],[134.5273,-6.4822],[134.5258,-6.4885],[134.528,-6.4971],[134.5204,-6.5094],[134.5202,-6.5147],[134.5164,-6.5185],[134.5141,-6.5287],[134.5235,-6.5308],[134.531,-6.5281],[134.5385,-6.5349],[134.5483,-6.5354],[134.5511,-6.5315],[134.5536,-6.5229],[134.5604,-6.515],[134.5649,-6.5115],[134.5709,-6.5114],[134.5755,-6.5076],[134.5822,-6.496],[134.5822,-6.4833],[134.5839,-6.4741]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.1837,-6.4625],[134.1725,-6.4628],[134.1733,-6.4692],[134.1837,-6.4645],[134.1837,-6.4625]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.6285,-6.4971],[134.6336,-6.4802],[134.6408,-6.4683],[134.6434,-6.4622],[134.6421,-6.4535],[134.6359,-6.4486],[134.6272,-6.4497],[134.62,-6.4638],[134.6155,-6.4658],[134.6045,-6.4673],[134.5977,-6.47],[134.5899,-6.4748],[134.5869,-6.4782],[134.5853,-6.4957],[134.5795,-6.5042],[134.5855,-6.5108],[134.589,-6.5167],[134.5942,-6.5177],[134.5981,-6.516],[134.603,-6.5094],[134.6141,-6.5018],[134.6208,-6.5041],[134.6263,-6.5023],[134.6285,-6.4971]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7257,-6.4872],[134.7298,-6.4822],[134.7306,-6.4737],[134.712,-6.4552],[134.7047,-6.4508],[134.6938,-6.4426],[134.6854,-6.4435],[134.6684,-6.455],[134.6607,-6.4616],[134.6571,-6.4692],[134.6504,-6.4735],[134.642,-6.4753],[134.6381,-6.4862],[134.6392,-6.4961],[134.6407,-6.4983],[134.6487,-6.4972],[134.6563,-6.5016],[134.6602,-6.5095],[134.6623,-6.5164],[134.6654,-6.5207],[134.6674,-6.5306],[134.6676,-6.5436],[134.6662,-6.5491],[134.6679,-6.5572],[134.6756,-6.562],[134.683,-6.5635],[134.6875,-6.5604],[134.7016,-6.5579],[134.7102,-6.5519],[134.714,-6.5473],[134.7219,-6.5426],[134.7251,-6.5439],[134.7311,-6.5529],[134.7369,-6.554],[134.7458,-6.5515],[134.7507,-6.5463],[134.7513,-6.5397],[134.7562,-6.5384],[134.7635,-6.5327],[134.7651,-6.5278],[134.7617,-6.5213],[134.7576,-6.5181],[134.7564,-6.51],[134.7509,-6.5049],[134.7461,-6.4954],[134.7463,-6.4873],[134.7407,-6.4855],[134.7399,-6.4816],[134.7324,-6.4742],[134.7311,-6.4828],[134.7257,-6.4872]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7718,-6.4187],[134.7653,-6.4193],[134.763,-6.4299],[134.7693,-6.4314],[134.7744,-6.4239],[134.7718,-6.4187]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7639,-6.407],[134.759,-6.4127],[134.7632,-6.4162],[134.7687,-6.412],[134.7639,-6.407]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7766,-6.4164],[134.7872,-6.3983],[134.7867,-6.395],[134.7794,-6.3889],[134.7789,-6.3835],[134.7745,-6.3796],[134.7741,-6.3747],[134.7776,-6.3724],[134.7776,-6.3664],[134.7689,-6.3677],[134.7701,-6.3745],[134.7689,-6.3804],[134.7653,-6.3869],[134.7653,-6.4028],[134.771,-6.4157],[134.7766,-6.4164]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7461,-6.4324],[134.7471,-6.4247],[134.7539,-6.4176],[134.7529,-6.4097],[134.7554,-6.3931],[134.7557,-6.3701],[134.7547,-6.3596],[134.7524,-6.3585],[134.744,-6.3651],[134.7421,-6.3694],[134.7376,-6.3738],[134.7321,-6.3819],[134.7329,-6.3942],[134.7324,-6.406],[134.7298,-6.4106],[134.7284,-6.4236],[134.735,-6.426],[134.7409,-6.4324],[134.7461,-6.4324]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.3544,-6.3524],[134.3469,-6.3604],[134.3508,-6.3655],[134.3597,-6.3627],[134.3632,-6.357],[134.3598,-6.353],[134.3544,-6.3524]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.3395,-6.3522],[134.3338,-6.3523],[134.3303,-6.3603],[134.3314,-6.366],[134.3345,-6.3672],[134.341,-6.3612],[134.3452,-6.3535],[134.3395,-6.3522]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.3683,-6.3784],[134.3738,-6.3776],[134.3769,-6.3673],[134.3741,-6.3567],[134.3681,-6.3491],[134.3639,-6.3473],[134.3621,-6.3511],[134.3651,-6.3563],[134.3615,-6.3642],[134.3645,-6.3781],[134.3683,-6.3784]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.6027,-6.4037],[134.6024,-6.3983],[134.599,-6.3941],[134.599,-6.3883],[134.5963,-6.3847],[134.5816,-6.3798],[134.5774,-6.3733],[134.5539,-6.3639],[134.5438,-6.3617],[134.5411,-6.3525],[134.5378,-6.347],[134.533,-6.3453],[134.5215,-6.3683],[134.5175,-6.3715],[134.5164,-6.3871],[134.5187,-6.3975],[134.5148,-6.4073],[134.5085,-6.4138],[134.5049,-6.4208],[134.4958,-6.4334],[134.4895,-6.4359],[134.4851,-6.4439],[134.4836,-6.4539],[134.4775,-6.4508],[134.4749,-6.4548],[134.4713,-6.4555],[134.4733,-6.4681],[134.4811,-6.4806],[134.4808,-6.4879],[134.485,-6.4906],[134.4938,-6.4899],[134.5036,-6.4953],[134.5084,-6.5041],[134.5062,-6.5128],[134.5094,-6.5165],[134.5197,-6.5145],[134.5198,-6.5096],[134.5274,-6.4968],[134.5252,-6.4891],[134.5261,-6.4834],[134.5311,-6.4785],[134.5388,-6.4803],[134.5446,-6.4831],[134.5551,-6.4845],[134.5603,-6.4806],[134.5745,-6.4735],[134.584,-6.4697],[134.5907,-6.4643],[134.6002,-6.4593],[134.6029,-6.4517],[134.6074,-6.4458],[134.612,-6.4316],[134.609,-6.4228],[134.6023,-6.4185],[134.6007,-6.4143],[134.6027,-6.4037]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.3317,-6.3423],[134.3284,-6.343],[134.328,-6.3478],[134.3335,-6.3469],[134.3317,-6.3423]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.5377,-6.336],[134.5363,-6.3331],[134.5302,-6.329],[134.5232,-6.3275],[134.5235,-6.3331],[134.5268,-6.3358],[134.5377,-6.336]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.349,-6.3428],[134.3542,-6.3366],[134.3569,-6.3262],[134.3507,-6.3194],[134.3405,-6.317],[134.3407,-6.3235],[134.3386,-6.3278],[134.338,-6.3376],[134.3435,-6.3428],[134.349,-6.3428]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.3261,-6.3458],[134.323,-6.3394],[134.3205,-6.3252],[134.3218,-6.3244],[134.3162,-6.3085],[134.312,-6.3076],[134.3013,-6.3189],[134.2967,-6.3271],[134.2958,-6.3311],[134.2974,-6.3435],[134.2949,-6.3462],[134.3012,-6.3548],[134.3057,-6.3544],[134.3099,-6.3508],[134.3136,-6.351],[134.317,-6.3612],[134.325,-6.3624],[134.3272,-6.3605],[134.3285,-6.3525],[134.3261,-6.3458]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.5441,-6.3313],[134.5396,-6.3247],[134.5385,-6.3203],[134.5444,-6.3047],[134.5414,-6.3044],[134.5294,-6.3149],[134.5235,-6.3235],[134.5239,-6.3256],[134.5349,-6.3284],[134.5417,-6.3331],[134.5441,-6.3313]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7109,-6.3032],[134.7069,-6.2999],[134.701,-6.3025],[134.707,-6.3087],[134.7155,-6.3132],[134.7237,-6.3107],[134.7174,-6.3079],[134.7109,-6.3032]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.8331,-6.3107],[134.8338,-6.3073],[134.8313,-6.299],[134.8261,-6.2954],[134.822,-6.2966],[134.7987,-6.3189],[134.7868,-6.3339],[134.7866,-6.3413],[134.7894,-6.3504],[134.7976,-6.3549],[134.8064,-6.3516],[134.8156,-6.3387],[134.8167,-6.3341],[134.8255,-6.3264],[134.8312,-6.3164],[134.8331,-6.3107]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.8694,-6.2821],[134.8626,-6.2834],[134.8517,-6.2829],[134.853,-6.2901],[134.847,-6.3049],[134.8444,-6.3217],[134.8444,-6.3279],[134.8404,-6.3265],[134.8388,-6.3316],[134.8285,-6.3391],[134.8206,-6.3531],[134.8128,-6.3637],[134.7996,-6.3797],[134.7974,-6.3901],[134.8004,-6.406],[134.8062,-6.4102],[134.8045,-6.4183],[134.8068,-6.4287],[134.8067,-6.435],[134.8035,-6.4365],[134.8019,-6.4497],[134.8086,-6.46],[134.8197,-6.4628],[134.8242,-6.4661],[134.8448,-6.4765],[134.8503,-6.4661],[134.8568,-6.4476],[134.8521,-6.4456],[134.853,-6.4385],[134.8573,-6.4279],[134.8601,-6.4236],[134.8685,-6.4026],[134.8689,-6.3973],[134.873,-6.3892],[134.8799,-6.3789],[134.8935,-6.3639],[134.8956,-6.3569],[134.9003,-6.3529],[134.9021,-6.349],[134.9019,-6.3422],[134.9047,-6.3316],[134.9086,-6.3213],[134.9072,-6.3122],[134.9019,-6.3045],[134.8985,-6.2955],[134.8927,-6.2879],[134.8866,-6.2844],[134.8796,-6.2871],[134.875,-6.2871],[134.8694,-6.2821]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.3148,-6.2802],[134.3081,-6.2795],[134.3033,-6.2836],[134.3075,-6.2866],[134.3125,-6.2982],[134.3189,-6.3051],[134.3174,-6.3088],[134.3208,-6.3148],[134.326,-6.3152],[134.3355,-6.3213],[134.3313,-6.3049],[134.3276,-6.3011],[134.3261,-6.2965],[134.3213,-6.291],[134.3148,-6.2802]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.453,-6.2737],[134.4495,-6.2739],[134.4397,-6.2841],[134.4335,-6.2865],[134.4211,-6.2855],[134.4064,-6.2951],[134.3962,-6.3117],[134.4002,-6.3126],[134.3989,-6.3174],[134.4011,-6.3251],[134.3985,-6.3256],[134.3945,-6.317],[134.389,-6.3122],[134.386,-6.3154],[134.3823,-6.3143],[134.3791,-6.3187],[134.3744,-6.3199],[134.37,-6.3269],[134.3653,-6.3314],[134.366,-6.3351],[134.3638,-6.3463],[134.3683,-6.3488],[134.3747,-6.3564],[134.3776,-6.3677],[134.3761,-6.374],[134.372,-6.3814],[134.3713,-6.3866],[134.3677,-6.3911],[134.3685,-6.3972],[134.3761,-6.4003],[134.3825,-6.4007],[134.3988,-6.3956],[134.4073,-6.3974],[134.4157,-6.4057],[134.4215,-6.4095],[134.4276,-6.4203],[134.4309,-6.428],[134.4376,-6.4365],[134.4487,-6.4479],[134.4578,-6.4475],[134.4639,-6.444],[134.4771,-6.4494],[134.483,-6.4462],[134.488,-6.4348],[134.4948,-6.4327],[134.5172,-6.3977],[134.5135,-6.3875],[134.5161,-6.3814],[134.5149,-6.3753],[134.5167,-6.3705],[134.5204,-6.3689],[134.5282,-6.3529],[134.5333,-6.3389],[134.5252,-6.3366],[134.5206,-6.3284],[134.5146,-6.3225],[134.5093,-6.3106],[134.5034,-6.303],[134.498,-6.2995],[134.4832,-6.3021],[134.4765,-6.2998],[134.4736,-6.297],[134.461,-6.2752],[134.453,-6.2737]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.22,-6.2073],[134.2164,-6.1965],[134.2111,-6.1948],[134.208,-6.1977],[134.2051,-6.2044],[134.2086,-6.2089],[134.2166,-6.2124],[134.22,-6.2073]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.8749,-6.1962],[134.8739,-6.1907],[134.8672,-6.1883],[134.8632,-6.185],[134.86,-6.1867],[134.8628,-6.1919],[134.8615,-6.2019],[134.8582,-6.2055],[134.8517,-6.2089],[134.8582,-6.22],[134.8628,-6.2197],[134.8681,-6.2155],[134.8694,-6.2054],[134.8749,-6.1962]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.1214,-6.1616],[134.1165,-6.1593],[134.1086,-6.161],[134.0958,-6.1651],[134.0953,-6.1723],[134.0992,-6.1855],[134.1051,-6.2019],[134.1083,-6.2171],[134.1128,-6.2305],[134.1182,-6.235],[134.1143,-6.24],[134.1146,-6.2436],[134.1211,-6.2486],[134.1232,-6.2531],[134.1279,-6.2691],[134.1309,-6.2912],[134.134,-6.3042],[134.1364,-6.3084],[134.1338,-6.3126],[134.1335,-6.3258],[134.132,-6.3407],[134.1273,-6.3645],[134.1252,-6.3701],[134.1177,-6.3801],[134.1156,-6.3845],[134.1167,-6.4104],[134.1157,-6.4164],[134.1227,-6.4312],[134.1293,-6.4413],[134.1318,-6.4488],[134.1377,-6.4526],[134.1379,-6.4626],[134.1481,-6.4612],[134.1498,-6.4594],[134.1604,-6.4586],[134.1704,-6.4522],[134.1773,-6.4466],[134.183,-6.4451],[134.1899,-6.4365],[134.1906,-6.4328],[134.196,-6.43],[134.2091,-6.4333],[134.2016,-6.4435],[134.1956,-6.4454],[134.188,-6.4517],[134.1833,-6.4525],[134.1846,-6.4603],[134.1899,-6.4625],[134.1964,-6.4563],[134.1965,-6.453],[134.2026,-6.4514],[134.2151,-6.4443],[134.2168,-6.4505],[134.2153,-6.4545],[134.2087,-6.4588],[134.2054,-6.4566],[134.2001,-6.4564],[134.1954,-6.4659],[134.2013,-6.4754],[134.2049,-6.4751],[134.2137,-6.488],[134.223,-6.4959],[134.223,-6.4993],[134.2185,-6.5036],[134.2225,-6.5098],[134.2317,-6.51],[134.2296,-6.5159],[134.2244,-6.5178],[134.2192,-6.5255],[134.2137,-6.5299],[134.2124,-6.5351],[134.214,-6.5431],[134.2213,-6.5529],[134.2257,-6.5568],[134.2322,-6.5656],[134.2343,-6.575],[134.2339,-6.5923],[134.2362,-6.5965],[134.2361,-6.6104],[134.2384,-6.6123],[134.2489,-6.6133],[134.2522,-6.6185],[134.2537,-6.6282],[134.2587,-6.6359],[134.2709,-6.6404],[134.2771,-6.6394],[134.2795,-6.6419],[134.2794,-6.6494],[134.2748,-6.646],[134.2752,-6.643],[134.2612,-6.6411],[134.2532,-6.6367],[134.2526,-6.63],[134.2491,-6.625],[134.2493,-6.6177],[134.2476,-6.615],[134.2371,-6.6137],[134.2311,-6.6038],[134.2316,-6.5915],[134.2306,-6.5878],[134.2321,-6.5791],[134.2306,-6.5723],[134.2253,-6.561],[134.2203,-6.5582],[134.2169,-6.5525],[134.2092,-6.5448],[134.2068,-6.5381],[134.2085,-6.5363],[134.2087,-6.5208],[134.2133,-6.5141],[134.2088,-6.5027],[134.2042,-6.4957],[134.2003,-6.4849],[134.1964,-6.4844],[134.1923,-6.4868],[134.1824,-6.4957],[134.182,-6.4869],[134.1787,-6.4812],[134.1695,-6.4781],[134.1682,-6.48],[134.1561,-6.4858],[134.1558,-6.4892],[134.151,-6.4895],[134.1442,-6.4831],[134.1355,-6.4809],[134.1292,-6.4709],[134.1321,-6.4676],[134.1296,-6.4606],[134.1246,-6.4519],[134.1186,-6.4471],[134.1144,-6.4509],[134.1111,-6.4574],[134.1064,-6.4613],[134.1007,-6.485],[134.0991,-6.4867],[134.097,-6.5007],[134.0966,-6.5281],[134.0944,-6.5495],[134.0937,-6.5755],[134.0916,-6.596],[134.0916,-6.6093],[134.09,-6.6285],[134.0891,-6.645],[134.0863,-6.6466],[134.0833,-6.6728],[134.0818,-6.6948],[134.079,-6.7005],[134.0773,-6.7117],[134.0717,-6.7193],[134.0693,-6.733],[134.0644,-6.7386],[134.058,-6.7571],[134.0535,-6.7591],[134.0511,-6.7744],[134.0563,-6.7836],[134.0599,-6.7977],[134.0619,-6.7999],[134.0666,-6.8146],[134.0704,-6.829],[134.0861,-6.8373],[134.0913,-6.8476],[134.0967,-6.8497],[134.104,-6.8485],[134.1091,-6.8452],[134.1164,-6.8445],[134.1238,-6.8456],[134.134,-6.8523],[134.1391,-6.8571],[134.1429,-6.8633],[134.1472,-6.866],[134.1528,-6.864],[134.1524,-6.8585],[134.1474,-6.8511],[134.1505,-6.8468],[134.1541,-6.8463],[134.1675,-6.8505],[134.1794,-6.8472],[134.1842,-6.8488],[134.1896,-6.8465],[134.1899,-6.8382],[134.194,-6.8394],[134.193,-6.8459],[134.1882,-6.8501],[134.1802,-6.8493],[134.1686,-6.8517],[134.1541,-6.8487],[134.1495,-6.8525],[134.1536,-6.8579],[134.1543,-6.8625],[134.1505,-6.8689],[134.1559,-6.8764],[134.1676,-6.8987],[134.1728,-6.9113],[134.1689,-6.9148],[134.1792,-6.9227],[134.1864,-6.9234],[134.194,-6.9293],[134.1999,-6.9405],[134.2047,-6.9347],[134.206,-6.9308],[134.201,-6.9282],[134.2027,-6.9197],[134.2086,-6.9127],[134.2161,-6.9069],[134.2357,-6.8959],[134.264,-6.8833],[134.2667,-6.8814],[134.2753,-6.8793],[134.2931,-6.8724],[134.2989,-6.8681],[134.3089,-6.8674],[134.323,-6.8643],[134.3326,-6.8601],[134.3359,-6.8553],[134.3379,-6.8483],[134.3494,-6.8382],[134.3654,-6.8211],[134.3745,-6.82],[134.3777,-6.8167],[134.3784,-6.81],[134.3731,-6.8094],[134.3606,-6.8044],[134.3647,-6.7985],[134.3647,-6.7894],[134.3669,-6.7804],[134.3719,-6.7714],[134.3818,-6.7628],[134.3937,-6.7618],[134.4019,-6.7556],[134.4015,-6.7474],[134.3918,-6.7452],[134.3922,-6.7367],[134.3904,-6.7312],[134.3942,-6.7297],[134.4007,-6.732],[134.4072,-6.726],[134.4104,-6.7206],[134.4178,-6.7159],[134.4228,-6.7173],[134.4239,-6.7131],[134.4332,-6.7074],[134.438,-6.7074],[134.4413,-6.7003],[134.4472,-6.6955],[134.4514,-6.695],[134.4573,-6.6907],[134.4546,-6.685],[134.4471,-6.6836],[134.4418,-6.6805],[134.4335,-6.6796],[134.4287,-6.6726],[134.429,-6.6676],[134.4337,-6.6685],[134.4339,-6.6744],[134.4377,-6.674],[134.4362,-6.6629],[134.4326,-6.6579],[134.4273,-6.6561],[134.4246,-6.6497],[134.4309,-6.6503],[134.439,-6.6547],[134.4476,-6.6632],[134.4449,-6.668],[134.4473,-6.6717],[134.4577,-6.674],[134.463,-6.6731],[134.4687,-6.6619],[134.481,-6.6648],[134.4871,-6.6627],[134.4939,-6.657],[134.4955,-6.6499],[134.4941,-6.6453],[134.4997,-6.6449],[134.5014,-6.6391],[134.5003,-6.6328],[134.4975,-6.6291],[134.5026,-6.6182],[134.5091,-6.6171],[134.5136,-6.6132],[134.5166,-6.6071],[134.5237,-6.6097],[134.5286,-6.5999],[134.5286,-6.5938],[134.5315,-6.5836],[134.5262,-6.5757],[134.5212,-6.5758],[134.5193,-6.5807],[134.5088,-6.5812],[134.5036,-6.5867],[134.4988,-6.5842],[134.4839,-6.5816],[134.4843,-6.5734],[134.4798,-6.5702],[134.4894,-6.5648],[134.4969,-6.5525],[134.4948,-6.5488],[134.4879,-6.5542],[134.476,-6.5482],[134.4747,-6.5448],[134.4815,-6.53],[134.4816,-6.5257],[134.485,-6.5246],[134.4897,-6.5307],[134.4987,-6.528],[134.5043,-6.5229],[134.5007,-6.5085],[134.4963,-6.5064],[134.4936,-6.4958],[134.4796,-6.4903],[134.4777,-6.4863],[134.4794,-6.4799],[134.4745,-6.4732],[134.4686,-6.453],[134.4655,-6.4507],[134.4533,-6.4515],[134.4484,-6.4494],[134.4371,-6.4387],[134.4302,-6.4301],[134.423,-6.4153],[134.4197,-6.4105],[134.4144,-6.4073],[134.4094,-6.4004],[134.4049,-6.3976],[134.3959,-6.397],[134.3903,-6.4008],[134.3777,-6.4034],[134.3662,-6.3988],[134.3668,-6.3934],[134.3602,-6.3852],[134.3615,-6.3819],[134.3526,-6.378],[134.3491,-6.3804],[134.3517,-6.3866],[134.3509,-6.3964],[134.3441,-6.3984],[134.3388,-6.3969],[134.3394,-6.3886],[134.3352,-6.3825],[134.331,-6.3793],[134.3252,-6.3783],[134.3215,-6.3721],[134.3147,-6.3669],[134.3134,-6.3589],[134.3113,-6.3549],[134.3047,-6.3562],[134.3007,-6.3596],[134.2937,-6.3476],[134.2957,-6.3433],[134.2938,-6.3406],[134.2941,-6.3337],[134.2975,-6.3202],[134.3053,-6.3118],[134.3099,-6.3034],[134.3038,-6.2932],[134.3004,-6.2897],[134.2954,-6.2893],[134.2879,-6.2925],[134.2875,-6.2881],[134.2793,-6.2807],[134.2724,-6.267],[134.2671,-6.2613],[134.2501,-6.2597],[134.2474,-6.2496],[134.2338,-6.2306],[134.2277,-6.2245],[134.2184,-6.2194],[134.2122,-6.2185],[134.2033,-6.2247],[134.1992,-6.2166],[134.1907,-6.2139],[134.1825,-6.2147],[134.1777,-6.2126],[134.167,-6.2106],[134.1567,-6.2064],[134.1492,-6.2013],[134.1424,-6.1917],[134.1419,-6.1855],[134.1362,-6.1768],[134.1379,-6.1719],[134.1338,-6.1675],[134.1273,-6.168],[134.1214,-6.1616]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.8888,-6.1383],[134.8778,-6.1433],[134.8723,-6.1545],[134.8736,-6.1595],[134.8766,-6.1602],[134.8828,-6.1572],[134.8867,-6.1595],[134.8884,-6.1487],[134.8888,-6.1383]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.2875,-6.1342],[134.2869,-6.1287],[134.2821,-6.1231],[134.274,-6.1188],[134.2708,-6.1199],[134.2642,-6.1264],[134.2667,-6.133],[134.2659,-6.1367],[134.2709,-6.1419],[134.2764,-6.1421],[134.2809,-6.1451],[134.2855,-6.1393],[134.2875,-6.1342]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7922,-6.093],[134.7876,-6.0931],[134.7909,-6.1009],[134.7948,-6.1006],[134.7945,-6.0948],[134.7922,-6.093]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.8973,-6.0782],[134.8953,-6.0737],[134.8909,-6.0724],[134.8839,-6.0728],[134.8849,-6.0785],[134.8933,-6.0802],[134.8973,-6.0782]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.1513,-6.0038],[134.1394,-6.0143],[134.1253,-6.0343],[134.1234,-6.0385],[134.121,-6.051],[134.1239,-6.0659],[134.1216,-6.0743],[134.1219,-6.0811],[134.1162,-6.0877],[134.1135,-6.0982],[134.1135,-6.1074],[134.119,-6.1131],[134.1265,-6.126],[134.1327,-6.1324],[134.1453,-6.148],[134.1487,-6.1467],[134.1483,-6.1403],[134.1508,-6.1352],[134.1547,-6.1354],[134.1601,-6.1285],[134.1689,-6.13],[134.1798,-6.1213],[134.1847,-6.1206],[134.1913,-6.1255],[134.1998,-6.1275],[134.1987,-6.134],[134.2003,-6.1423],[134.1942,-6.1464],[134.1881,-6.1481],[134.1867,-6.1568],[134.1699,-6.1649],[134.1625,-6.1777],[134.1612,-6.1859],[134.1677,-6.1981],[134.1849,-6.2046],[134.1945,-6.2044],[134.2022,-6.203],[134.2073,-6.1941],[134.2154,-6.1906],[134.2212,-6.197],[134.2246,-6.2037],[134.2284,-6.2028],[134.2342,-6.2203],[134.2421,-6.2343],[134.2536,-6.2452],[134.2735,-6.2606],[134.2822,-6.2771],[134.2882,-6.2841],[134.2968,-6.2853],[134.2984,-6.2829],[134.3073,-6.278],[134.3146,-6.2764],[134.3174,-6.2825],[134.3264,-6.2885],[134.3354,-6.3014],[134.3363,-6.3109],[134.3389,-6.314],[134.3431,-6.3144],[134.3562,-6.3188],[134.3636,-6.3241],[134.368,-6.3237],[134.3726,-6.3182],[134.3714,-6.3132],[134.3775,-6.3091],[134.3862,-6.3113],[134.3932,-6.3061],[134.4089,-6.2901],[134.4171,-6.2856],[134.4228,-6.281],[134.426,-6.2832],[134.4391,-6.2794],[134.4484,-6.2707],[134.4385,-6.2721],[134.4253,-6.264],[134.4155,-6.2628],[134.4046,-6.2637],[134.3932,-6.2609],[134.3913,-6.2524],[134.3921,-6.2465],[134.3899,-6.2437],[134.3845,-6.2422],[134.3813,-6.2385],[134.3746,-6.2353],[134.3711,-6.2298],[134.3669,-6.2264],[134.3571,-6.2233],[134.3413,-6.2277],[134.3366,-6.2243],[134.3303,-6.2147],[134.3265,-6.207],[134.3112,-6.1867],[134.3104,-6.1754],[134.3065,-6.1716],[134.2989,-6.1685],[134.29,-6.161],[134.283,-6.1587],[134.2793,-6.1591],[134.2742,-6.1641],[134.2678,-6.1588],[134.2702,-6.1486],[134.2671,-6.1448],[134.254,-6.1431],[134.245,-6.1406],[134.244,-6.1343],[134.2394,-6.1344],[134.2334,-6.1268],[134.2333,-6.1193],[134.2388,-6.1161],[134.2406,-6.1116],[134.2419,-6.1012],[134.2458,-6.092],[134.2493,-6.0877],[134.257,-6.0846],[134.2643,-6.0746],[134.2696,-6.0715],[134.2797,-6.0627],[134.2791,-6.0592],[134.2744,-6.0541],[134.2673,-6.0572],[134.2619,-6.0628],[134.2598,-6.0681],[134.249,-6.0723],[134.2446,-6.0717],[134.2411,-6.0646],[134.2297,-6.0554],[134.2288,-6.0443],[134.2322,-6.0381],[134.2325,-6.0266],[134.227,-6.0224],[134.2277,-6.0163],[134.2226,-6.0156],[134.2118,-6.0168],[134.2034,-6.0205],[134.1976,-6.0182],[134.1934,-6.0235],[134.196,-6.0328],[134.1917,-6.0361],[134.1758,-6.0343],[134.1697,-6.0383],[134.1615,-6.0374],[134.1563,-6.0305],[134.1552,-6.0262],[134.1565,-6.0179],[134.1595,-6.0113],[134.1513,-6.0038]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.6851,-5.9579],[134.6794,-5.9579],[134.6814,-5.9636],[134.6851,-5.9579]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.8624,-5.9534],[134.8554,-5.9504],[134.8533,-5.9551],[134.8552,-5.962],[134.8608,-5.963],[134.8643,-5.9614],[134.8624,-5.9534]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7476,-5.95],[134.7398,-5.95],[134.7408,-5.9542],[134.7462,-5.9574],[134.7483,-5.9549],[134.7476,-5.95]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.5694,-5.9353],[134.5613,-5.9302],[134.5548,-5.9234],[134.5366,-5.9185],[134.5308,-5.9214],[134.5195,-5.9309],[134.5143,-5.94],[134.5078,-5.9466],[134.5004,-5.9522],[134.4957,-5.9537],[134.4874,-5.9606],[134.4744,-5.9606],[134.4696,-5.9582],[134.4669,-5.967],[134.4674,-5.974],[134.4623,-5.9814],[134.4562,-5.9856],[134.4505,-5.9953],[134.4417,-6.0054],[134.4391,-6.0147],[134.433,-6.0188],[134.418,-6.0249],[134.4035,-6.0244],[134.3962,-6.0216],[134.3898,-6.022],[134.3816,-6.0188],[134.3813,-6.0233],[134.375,-6.0218],[134.3644,-6.0309],[134.3582,-6.0408],[134.3534,-6.0413],[134.3481,-6.046],[134.3464,-6.0369],[134.3427,-6.0326],[134.3296,-6.0243],[134.3261,-6.0229],[134.3116,-6.026],[134.2946,-6.0373],[134.2916,-6.0408],[134.2842,-6.0446],[134.2794,-6.0497],[134.2852,-6.0578],[134.29,-6.0709],[134.282,-6.0766],[134.2783,-6.0775],[134.2731,-6.0833],[134.2698,-6.094],[134.2712,-6.1007],[134.2708,-6.1091],[134.2726,-6.1155],[134.2875,-6.1248],[134.2885,-6.1314],[134.2866,-6.142],[134.2833,-6.1469],[134.2945,-6.1553],[134.2975,-6.162],[134.3117,-6.173],[134.3148,-6.1791],[134.316,-6.1876],[134.319,-6.1932],[134.3323,-6.209],[134.3377,-6.2127],[134.3412,-6.2185],[134.3489,-6.2176],[134.3686,-6.2243],[134.3731,-6.2297],[134.3817,-6.2352],[134.384,-6.2289],[134.3883,-6.2315],[134.3914,-6.237],[134.3968,-6.2549],[134.4,-6.2578],[134.4086,-6.2594],[134.4246,-6.2599],[134.432,-6.2657],[134.4412,-6.2685],[134.4383,-6.2596],[134.4463,-6.2639],[134.4542,-6.2648],[134.4598,-6.259],[134.462,-6.2603],[134.4576,-6.2672],[134.4623,-6.2718],[134.4761,-6.2955],[134.4834,-6.2977],[134.4882,-6.2963],[134.4941,-6.2904],[134.4999,-6.2926],[134.5048,-6.2966],[134.5112,-6.3127],[134.5209,-6.3239],[134.5239,-6.3214],[134.5283,-6.3142],[134.5454,-6.3008],[134.5472,-6.3016],[134.54,-6.32],[134.5451,-6.3307],[134.541,-6.3356],[134.5415,-6.3403],[134.5457,-6.3495],[134.553,-6.3527],[134.5693,-6.3557],[134.5771,-6.35],[134.5917,-6.3533],[134.6126,-6.3703],[134.6229,-6.3733],[134.6269,-6.37],[134.6288,-6.3573],[134.6344,-6.359],[134.6557,-6.3461],[134.6615,-6.3463],[134.6687,-6.3444],[134.6776,-6.3446],[134.6868,-6.3392],[134.7046,-6.3244],[134.7091,-6.3184],[134.7091,-6.3118],[134.7057,-6.3106],[134.6983,-6.3121],[134.6948,-6.3062],[134.6997,-6.3026],[134.7074,-6.2993],[134.7186,-6.3076],[134.7257,-6.3054],[134.729,-6.3014],[134.7378,-6.2799],[134.7414,-6.2675],[134.7344,-6.2623],[134.7384,-6.2598],[134.7427,-6.2609],[134.7446,-6.2559],[134.7517,-6.2449],[134.7474,-6.2401],[134.7534,-6.2373],[134.7583,-6.2256],[134.7593,-6.2186],[134.7648,-6.2059],[134.7637,-6.1987],[134.7606,-6.193],[134.7603,-6.1881],[134.7648,-6.1797],[134.7677,-6.1778],[134.769,-6.1654],[134.7661,-6.1568],[134.762,-6.1549],[134.7452,-6.1622],[134.7305,-6.1694],[134.7229,-6.1697],[134.7198,-6.1714],[134.7035,-6.1881],[134.6944,-6.1938],[134.6922,-6.1916],[134.7027,-6.1847],[134.7065,-6.1779],[134.7122,-6.1745],[134.7133,-6.1701],[134.7102,-6.1657],[134.715,-6.1624],[134.7178,-6.1638],[134.7205,-6.157],[134.724,-6.1605],[134.7289,-6.1601],[134.7385,-6.1559],[134.7485,-6.1457],[134.7618,-6.1388],[134.7654,-6.1312],[134.7632,-6.1267],[134.7691,-6.1212],[134.7771,-6.1076],[134.7763,-6.1055],[134.7828,-6.0948],[134.7817,-6.0892],[134.7729,-6.0837],[134.7735,-6.0757],[134.7644,-6.0676],[134.7584,-6.0643],[134.7539,-6.0544],[134.755,-6.0476],[134.7476,-6.0428],[134.7427,-6.0439],[134.741,-6.0332],[134.727,-6.023],[134.7186,-6.0307],[134.7115,-6.0334],[134.7089,-6.0313],[134.718,-6.0275],[134.7221,-6.0211],[134.7149,-6.0105],[134.7078,-6.0078],[134.6882,-5.9905],[134.6748,-5.9814],[134.6642,-5.9757],[134.6634,-5.9697],[134.6579,-5.9625],[134.6531,-5.96],[134.6588,-5.9562],[134.6612,-5.9513],[134.66,-5.9473],[134.6557,-5.9436],[134.6486,-5.9431],[134.6423,-5.9406],[134.636,-5.9362],[134.6314,-5.9365],[134.6232,-5.9417],[134.6155,-5.9444],[134.6081,-5.9425],[134.6024,-5.9463],[134.5882,-5.9658],[134.5854,-5.9658],[134.5975,-5.9488],[134.5968,-5.9425],[134.5878,-5.9383],[134.5792,-5.9368],[134.5732,-5.938],[134.5694,-5.9353]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.1805,-5.9195],[134.1718,-5.9178],[134.1683,-5.9142],[134.165,-5.9183],[134.1667,-5.9223],[134.174,-5.9229],[134.1805,-5.9195]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.6348,-5.929],[134.629,-5.9229],[134.6269,-5.9182],[134.6319,-5.9121],[134.6272,-5.9081],[134.6244,-5.9099],[134.6219,-5.917],[134.6118,-5.9336],[134.6186,-5.9379],[134.6348,-5.929]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7705,-5.9188],[134.7709,-5.9158],[134.7658,-5.9083],[134.7631,-5.911],[134.7657,-5.9164],[134.7705,-5.9188]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7805,-5.9075],[134.788,-5.9063],[134.7908,-5.8998],[134.7881,-5.8941],[134.7848,-5.8931],[134.7769,-5.8959],[134.7739,-5.9012],[134.7737,-5.9071],[134.7766,-5.9095],[134.7805,-5.9075]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.6513,-5.8946],[134.6492,-5.8912],[134.6506,-5.8837],[134.6485,-5.8747],[134.6415,-5.871],[134.6294,-5.8779],[134.6229,-5.8865],[134.6107,-5.8955],[134.6018,-5.9117],[134.5931,-5.9203],[134.5877,-5.9336],[134.6034,-5.9398],[134.6085,-5.9359],[134.6247,-5.907],[134.6283,-5.9068],[134.6323,-5.911],[134.6349,-5.91],[134.6513,-5.8946]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.8035,-5.8744],[134.7998,-5.8707],[134.7938,-5.8727],[134.783,-5.8812],[134.7824,-5.8862],[134.7845,-5.8902],[134.7896,-5.8936],[134.793,-5.8923],[134.7943,-5.8867],[134.8035,-5.8744]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7711,-5.8732],[134.762,-5.8686],[134.7578,-5.86],[134.7515,-5.8582],[134.7458,-5.8624],[134.7422,-5.8745],[134.7368,-5.8836],[134.7282,-5.8896],[134.7272,-5.8961],[134.7352,-5.9024],[134.7377,-5.9074],[134.7421,-5.9053],[134.7464,-5.8985],[134.7514,-5.9027],[134.7565,-5.8978],[134.7596,-5.897],[134.765,-5.8922],[134.7709,-5.8902],[134.7727,-5.8859],[134.769,-5.881],[134.7711,-5.8732]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7689,-5.8656],[134.7659,-5.8614],[134.7662,-5.8571],[134.7693,-5.851],[134.7609,-5.8481],[134.7527,-5.8525],[134.7522,-5.8572],[134.759,-5.8598],[134.7657,-5.8658],[134.7689,-5.8656]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7507,-5.844],[134.7425,-5.8423],[134.7371,-5.8387],[134.7277,-5.835],[134.7199,-5.8331],[134.7058,-5.8317],[134.703,-5.8329],[134.6982,-5.8422],[134.6931,-5.8425],[134.6881,-5.8458],[134.6819,-5.8449],[134.6726,-5.8463],[134.6729,-5.8497],[134.6694,-5.8527],[134.6595,-5.8562],[134.6486,-5.865],[134.6462,-5.8696],[134.6503,-5.8741],[134.6514,-5.8849],[134.6497,-5.8905],[134.6522,-5.8956],[134.6451,-5.9018],[134.6281,-5.9181],[134.6363,-5.9285],[134.6462,-5.9294],[134.6581,-5.9349],[134.6621,-5.9311],[134.6737,-5.9409],[134.6781,-5.9524],[134.6834,-5.9562],[134.6917,-5.9587],[134.6935,-5.9641],[134.6992,-5.9717],[134.7092,-5.9765],[134.7279,-5.9778],[134.7334,-5.9792],[134.7355,-5.9747],[134.741,-5.9703],[134.7427,-5.9632],[134.7385,-5.9601],[134.7333,-5.9531],[134.7355,-5.95],[134.733,-5.9417],[134.7394,-5.9412],[134.7427,-5.9345],[134.7353,-5.9328],[134.728,-5.9272],[134.7246,-5.9281],[134.7199,-5.9214],[134.7169,-5.9205],[134.7094,-5.9107],[134.7123,-5.908],[134.7097,-5.8999],[134.713,-5.8985],[134.7109,-5.8907],[134.7174,-5.891],[134.7226,-5.8847],[134.7302,-5.8879],[134.7387,-5.8808],[134.7415,-5.8749],[134.7462,-5.8606],[134.751,-5.8568],[134.7509,-5.8541],[134.7557,-5.8488],[134.7507,-5.844]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.3065,-5.8297],[134.3026,-5.8328],[134.3031,-5.844],[134.309,-5.845],[134.3129,-5.8437],[134.3112,-5.8374],[134.306,-5.8322],[134.3065,-5.8297]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.6987,-5.8394],[134.7015,-5.8323],[134.7053,-5.8279],[134.6991,-5.827],[134.6943,-5.8325],[134.6889,-5.836],[134.6922,-5.8416],[134.6987,-5.8394]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.8075,-5.8078],[134.8031,-5.8086],[134.8013,-5.8163],[134.8051,-5.8184],[134.814,-5.8193],[134.8135,-5.8154],[134.8075,-5.8078]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7879,-5.8068],[134.7796,-5.8057],[134.7737,-5.8088],[134.7724,-5.813],[134.7671,-5.817],[134.7671,-5.8218],[134.7807,-5.8231],[134.7904,-5.8209],[134.7954,-5.8216],[134.8006,-5.817],[134.8009,-5.8102],[134.7943,-5.81],[134.7879,-5.8068]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7774,-5.796],[134.7787,-5.7897],[134.7765,-5.7868],[134.7704,-5.79],[134.7686,-5.7928],[134.774,-5.7964],[134.7774,-5.796]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7576,-5.8021],[134.7588,-5.7964],[134.7535,-5.7938],[134.7505,-5.7853],[134.7462,-5.7888],[134.7422,-5.7964],[134.7429,-5.8033],[134.7465,-5.808],[134.7528,-5.803],[134.7576,-5.8021]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7911,-5.7767],[134.784,-5.7742],[134.7776,-5.7832],[134.7784,-5.7861],[134.7871,-5.791],[134.793,-5.7902],[134.796,-5.7861],[134.7947,-5.7794],[134.7911,-5.7767]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.3231,-5.7719],[134.3197,-5.7702],[134.3134,-5.7751],[134.3208,-5.7787],[134.3231,-5.7719]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.785,-5.7702],[134.7908,-5.7671],[134.7879,-5.7624],[134.7842,-5.7635],[134.785,-5.7702]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.1977,-5.7512],[134.1955,-5.7512],[134.1927,-5.761],[134.1943,-5.7684],[134.1909,-5.785],[134.1886,-5.8091],[134.1867,-5.8185],[134.1874,-5.8241],[134.1916,-5.8307],[134.1997,-5.8341],[134.2068,-5.8356],[134.2218,-5.8251],[134.2277,-5.8246],[134.2401,-5.8289],[134.2482,-5.8243],[134.251,-5.82],[134.2505,-5.8153],[134.2444,-5.8149],[134.241,-5.8095],[134.2447,-5.802],[134.2513,-5.793],[134.2524,-5.7821],[134.2495,-5.7719],[134.2403,-5.7625],[134.2381,-5.7565],[134.232,-5.7599],[134.2132,-5.755],[134.2005,-5.7508],[134.1977,-5.7512]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.8101,-5.734],[134.8075,-5.7312],[134.8001,-5.7283],[134.7947,-5.7276],[134.7897,-5.7296],[134.7849,-5.7389],[134.7826,-5.7538],[134.7916,-5.7553],[134.7978,-5.7516],[134.8033,-5.7512],[134.8143,-5.7405],[134.8101,-5.734]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7178,-5.7469],[134.7007,-5.7387],[134.695,-5.7306],[134.6793,-5.726],[134.668,-5.7248],[134.6637,-5.7262],[134.6571,-5.7373],[134.6558,-5.7455],[134.6623,-5.7498],[134.669,-5.7506],[134.6716,-5.7604],[134.6769,-5.7703],[134.6829,-5.7701],[134.6915,-5.7774],[134.69,-5.7847],[134.6921,-5.797],[134.6963,-5.8026],[134.7061,-5.8102],[134.7142,-5.8132],[134.7175,-5.8124],[134.7218,-5.8067],[134.7265,-5.8099],[134.7352,-5.8062],[134.7351,-5.8028],[134.7399,-5.8004],[134.7395,-5.7959],[134.7455,-5.7905],[134.7472,-5.7854],[134.7428,-5.7802],[134.7456,-5.7749],[134.7448,-5.7665],[134.7421,-5.7627],[134.7409,-5.7469],[134.7417,-5.7418],[134.7347,-5.7374],[134.7308,-5.7384],[134.7278,-5.7466],[134.7205,-5.7489],[134.7178,-5.7469]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.3386,-5.695],[134.3313,-5.6932],[134.3314,-5.698],[134.338,-5.7037],[134.3448,-5.6995],[134.3455,-5.6942],[134.3386,-5.695]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7716,-5.6753],[134.7598,-5.6762],[134.7596,-5.6823],[134.7676,-5.6852],[134.772,-5.6791],[134.7716,-5.6753]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.8044,-5.6072],[134.8051,-5.6026],[134.8007,-5.601],[134.7986,-5.6061],[134.8044,-5.6072]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7008,-5.5735],[134.6993,-5.5768],[134.703,-5.5799],[134.7087,-5.5777],[134.7077,-5.5738],[134.7008,-5.5735]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.5523,-5.5607],[134.5474,-5.569],[134.5306,-5.573],[134.5294,-5.5824],[134.5339,-5.587],[134.5332,-5.5955],[134.5358,-5.5999],[134.5351,-5.6099],[134.5356,-5.6271],[134.5407,-5.6347],[134.5436,-5.6359],[134.5472,-5.6442],[134.5473,-5.6494],[134.5612,-5.6498],[134.5696,-5.6536],[134.5728,-5.6531],[134.5728,-5.6643],[134.579,-5.6771],[134.5827,-5.6788],[134.5891,-5.6849],[134.5931,-5.6932],[134.5941,-5.6989],[134.599,-5.7024],[134.6026,-5.7085],[134.6085,-5.7129],[134.6105,-5.7188],[134.6162,-5.7227],[134.6238,-5.7133],[134.6311,-5.7112],[134.6396,-5.7118],[134.6474,-5.7239],[134.6507,-5.7256],[134.6538,-5.7216],[134.6609,-5.7246],[134.6664,-5.7236],[134.6782,-5.7249],[134.6914,-5.7248],[134.6979,-5.7265],[134.7015,-5.731],[134.6996,-5.7349],[134.7041,-5.7388],[134.7166,-5.7415],[134.7222,-5.7344],[134.7245,-5.7268],[134.7303,-5.718],[134.7313,-5.7081],[134.735,-5.7015],[134.7301,-5.698],[134.7318,-5.6932],[134.7295,-5.686],[134.732,-5.6823],[134.7333,-5.6753],[134.7451,-5.672],[134.75,-5.6732],[134.7519,-5.6693],[134.7591,-5.6684],[134.764,-5.6656],[134.764,-5.6581],[134.7568,-5.6537],[134.7633,-5.6475],[134.7592,-5.6424],[134.7545,-5.6331],[134.7483,-5.6254],[134.7477,-5.6194],[134.7434,-5.6156],[134.7396,-5.6172],[134.7351,-5.6247],[134.7297,-5.6131],[134.7166,-5.6121],[134.7185,-5.6024],[134.7126,-5.5975],[134.7095,-5.5987],[134.6944,-5.5994],[134.6982,-5.5889],[134.6888,-5.5858],[134.6867,-5.5816],[134.6812,-5.5828],[134.68,-5.5862],[134.6608,-5.5875],[134.6594,-5.5828],[134.6518,-5.5808],[134.6518,-5.5761],[134.6417,-5.5778],[134.639,-5.5826],[134.6346,-5.5847],[134.6296,-5.5816],[134.6244,-5.5843],[134.6213,-5.5833],[134.6085,-5.5741],[134.6071,-5.5693],[134.6001,-5.5684],[134.5949,-5.5755],[134.5929,-5.5688],[134.5877,-5.5728],[134.5824,-5.5716],[134.5812,-5.5688],[134.5742,-5.5716],[134.5645,-5.5683],[134.5616,-5.5647],[134.5523,-5.5607]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.3276,-5.5632],[134.3231,-5.56],[134.3172,-5.561],[134.3107,-5.5642],[134.304,-5.5637],[134.2968,-5.5782],[134.2935,-5.5866],[134.2907,-5.5888],[134.2886,-5.5969],[134.2839,-5.6029],[134.2822,-5.6077],[134.2655,-5.6128],[134.2631,-5.6118],[134.2568,-5.6149],[134.2515,-5.6104],[134.2436,-5.6225],[134.246,-5.6293],[134.2619,-5.6369],[134.2679,-5.6438],[134.2764,-5.6456],[134.2852,-5.6384],[134.2891,-5.6263],[134.2941,-5.6218],[134.311,-5.6128],[134.3215,-5.6121],[134.3279,-5.6101],[134.3373,-5.6016],[134.3408,-5.597],[134.3426,-5.5877],[134.3462,-5.582],[134.3477,-5.5745],[134.3418,-5.5671],[134.3375,-5.5677],[134.3276,-5.5632]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.7151,-5.5512],[134.713,-5.5487],[134.7016,-5.5508],[134.7053,-5.5565],[134.7008,-5.5606],[134.7008,-5.5676],[134.6988,-5.5725],[134.7041,-5.5725],[134.7107,-5.5648],[134.7147,-5.5572],[134.7151,-5.5512]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.6991,-5.5358],[134.6909,-5.536],[134.6897,-5.5404],[134.6913,-5.5448],[134.6986,-5.5471],[134.7024,-5.5419],[134.6991,-5.5358]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.4689,-5.5635],[134.4637,-5.5601],[134.4589,-5.5471],[134.4562,-5.5438],[134.4561,-5.538],[134.4597,-5.5319],[134.4568,-5.5288],[134.4527,-5.5306],[134.4491,-5.5361],[134.4466,-5.5441],[134.4516,-5.5512],[134.4452,-5.5682],[134.4445,-5.5784],[134.4367,-5.5793],[134.4343,-5.5817],[134.432,-5.59],[134.427,-5.59],[134.4283,-5.595],[134.4315,-5.5973],[134.4276,-5.6072],[134.4244,-5.6111],[134.4239,-5.6195],[134.4181,-5.6264],[134.4184,-5.6292],[134.4117,-5.6439],[134.3957,-5.6544],[134.3754,-5.6699],[134.3649,-5.6764],[134.3561,-5.6841],[134.3525,-5.6903],[134.3517,-5.6972],[134.3623,-5.7038],[134.3591,-5.706],[134.3641,-5.711],[134.3609,-5.7161],[134.3476,-5.7226],[134.3438,-5.7273],[134.334,-5.7261],[134.3293,-5.7196],[134.3222,-5.7153],[134.3203,-5.7166],[134.3152,-5.7099],[134.3142,-5.704],[134.3109,-5.7049],[134.3049,-5.7029],[134.3023,-5.6988],[134.2912,-5.6891],[134.2804,-5.687],[134.2788,-5.6824],[134.2738,-5.6828],[134.2629,-5.6784],[134.261,-5.6753],[134.2541,-5.6702],[134.251,-5.6621],[134.2375,-5.6706],[134.2296,-5.6816],[134.2223,-5.6958],[134.2199,-5.6967],[134.2114,-5.7165],[134.2178,-5.7269],[134.2291,-5.7363],[134.2362,-5.7446],[134.2397,-5.747],[134.2448,-5.7463],[134.2594,-5.7584],[134.2691,-5.7574],[134.2848,-5.752],[134.2918,-5.7572],[134.3016,-5.7554],[134.3036,-5.7517],[134.3078,-5.7569],[134.3069,-5.7654],[134.3184,-5.7654],[134.3237,-5.7642],[134.3315,-5.7656],[134.3365,-5.7707],[134.3345,-5.7779],[134.3268,-5.7799],[134.3273,-5.786],[134.3257,-5.7908],[134.3276,-5.7953],[134.3343,-5.7977],[134.3425,-5.7922],[134.3535,-5.7793],[134.3648,-5.7681],[134.3709,-5.7704],[134.3905,-5.7873],[134.3969,-5.7895],[134.4087,-5.7856],[134.4025,-5.7923],[134.3967,-5.7933],[134.3881,-5.7981],[134.3746,-5.7988],[134.378,-5.8047],[134.3745,-5.8081],[134.3698,-5.821],[134.3606,-5.8193],[134.3621,-5.8238],[134.3582,-5.8277],[134.3606,-5.8307],[134.3701,-5.8305],[134.3745,-5.8365],[134.3718,-5.8408],[134.3715,-5.8475],[134.3608,-5.8464],[134.3544,-5.849],[134.3474,-5.8461],[134.3467,-5.8493],[134.3414,-5.8511],[134.3333,-5.8576],[134.331,-5.8621],[134.3393,-5.8685],[134.3363,-5.8818],[134.3302,-5.8868],[134.3158,-5.8917],[134.3062,-5.8991],[134.2996,-5.8971],[134.2972,-5.9029],[134.2969,-5.9094],[134.2943,-5.9131],[134.2938,-5.9188],[134.2969,-5.9257],[134.302,-5.925],[134.3112,-5.928],[134.3137,-5.9366],[134.3159,-5.9393],[134.3251,-5.9396],[134.3289,-5.9409],[134.333,-5.9491],[134.332,-5.9543],[134.3291,-5.9569],[134.3262,-5.9691],[134.3216,-5.9822],[134.3163,-5.9938],[134.3082,-6.0074],[134.3052,-6.0079],[134.3008,-6.0174],[134.304,-6.0197],[134.3077,-6.0181],[134.3112,-6.0215],[134.3206,-6.0173],[134.3319,-6.0204],[134.3418,-6.026],[134.3445,-6.0245],[134.3488,-6.0325],[134.3535,-6.0349],[134.3589,-6.0308],[134.3706,-6.0194],[134.3799,-6.0158],[134.3856,-6.0166],[134.3884,-6.0196],[134.4005,-6.0204],[134.4026,-6.0218],[134.418,-6.0228],[134.4337,-6.0163],[134.4378,-6.0113],[134.4385,-6.0056],[134.4501,-5.9919],[134.4512,-5.9872],[134.4621,-5.979],[134.4662,-5.9709],[134.4651,-5.9652],[134.4685,-5.9563],[134.4864,-5.9594],[134.4938,-5.9535],[134.5056,-5.9465],[134.5124,-5.9372],[134.5162,-5.9299],[134.5259,-5.9232],[134.5315,-5.9179],[134.5386,-5.916],[134.5555,-5.9211],[134.5629,-5.9294],[134.5729,-5.9324],[134.5802,-5.9325],[134.585,-5.9299],[134.591,-5.92],[134.5957,-5.9138],[134.6041,-5.9055],[134.6071,-5.8955],[134.6174,-5.8869],[134.6253,-5.8787],[134.6348,-5.8721],[134.6435,-5.869],[134.6467,-5.8643],[134.655,-5.8571],[134.6713,-5.85],[134.6717,-5.8455],[134.676,-5.8439],[134.6848,-5.8431],[134.6892,-5.8392],[134.6875,-5.8354],[134.6994,-5.8254],[134.7054,-5.8251],[134.7108,-5.8204],[134.7132,-5.8158],[134.7075,-5.813],[134.699,-5.8067],[134.6902,-5.797],[134.6881,-5.7822],[134.6889,-5.7764],[134.6819,-5.7716],[134.6755,-5.7713],[134.6705,-5.7625],[134.6686,-5.7539],[134.6621,-5.7521],[134.6541,-5.7471],[134.6562,-5.7426],[134.6546,-5.7379],[134.6603,-5.7269],[134.6553,-5.7243],[134.6501,-5.7281],[134.6431,-5.7217],[134.6406,-5.7156],[134.6363,-5.7129],[134.6324,-5.7151],[134.6254,-5.7148],[134.619,-5.7241],[134.616,-5.7256],[134.6093,-5.7191],[134.6066,-5.7132],[134.6016,-5.7102],[134.5991,-5.7054],[134.5946,-5.7023],[134.5887,-5.6864],[134.5767,-5.6771],[134.5729,-5.6704],[134.5714,-5.6635],[134.5726,-5.6562],[134.5637,-5.6522],[134.5547,-5.6506],[134.5464,-5.6507],[134.5444,-5.6391],[134.5402,-5.6364],[134.5335,-5.6268],[134.5336,-5.6123],[134.5346,-5.6041],[134.5314,-5.5929],[134.5322,-5.5878],[134.5268,-5.582],[134.5286,-5.5709],[134.5272,-5.5641],[134.5216,-5.5569],[134.5165,-5.5645],[134.5111,-5.5639],[134.504,-5.5546],[134.5023,-5.5462],[134.5045,-5.5333],[134.4946,-5.5336],[134.4904,-5.5413],[134.4873,-5.5523],[134.4806,-5.5628],[134.4689,-5.5635]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.4856,-5.5258],[134.4847,-5.5166],[134.4783,-5.5191],[134.4763,-5.525],[134.4812,-5.5325],[134.4856,-5.5297],[134.4856,-5.5258]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.5019,-5.5098],[134.497,-5.5099],[134.4955,-5.5144],[134.4992,-5.5241],[134.5086,-5.5236],[134.5142,-5.5179],[134.508,-5.5125],[134.5019,-5.5098]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.5051,-5.4921],[134.501,-5.4902],[134.4957,-5.4919],[134.4903,-5.4876],[134.4859,-5.4909],[134.4858,-5.4973],[134.4907,-5.5052],[134.4992,-5.5052],[134.4991,-5.5017],[134.5051,-5.4921]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.2737,-5.5359],[134.2778,-5.5299],[134.2858,-5.5229],[134.2861,-5.517],[134.2825,-5.5001],[134.2763,-5.4878],[134.2708,-5.4836],[134.2625,-5.486],[134.2536,-5.4872],[134.2521,-5.4979],[134.2496,-5.5056],[134.2544,-5.5101],[134.2568,-5.5301],[134.2534,-5.5429],[134.2539,-5.5533],[134.2562,-5.5541],[134.264,-5.5442],[134.2668,-5.539],[134.2737,-5.5359]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.6867,-5.4767],[134.69,-5.4711],[134.6879,-5.4656],[134.6834,-5.4655],[134.6831,-5.4731],[134.6867,-5.4767]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.6794,-5.4762],[134.6824,-5.4636],[134.675,-5.464],[134.6727,-5.4717],[134.6739,-5.477],[134.6794,-5.4762]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.6691,-5.4746],[134.6742,-5.4654],[134.6661,-5.4559],[134.6644,-5.448],[134.6622,-5.4453],[134.655,-5.442],[134.6515,-5.4425],[134.6501,-5.4471],[134.656,-5.4544],[134.6554,-5.4608],[134.6626,-5.4691],[134.6644,-5.4739],[134.6691,-5.4746]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.4918,-5.4284],[134.4925,-5.4223],[134.4853,-5.4284],[134.4786,-5.4315],[134.4741,-5.4382],[134.4662,-5.4424],[134.4609,-5.4502],[134.4606,-5.4584],[134.4626,-5.4614],[134.4692,-5.4598],[134.4707,-5.4571],[134.4771,-5.4551],[134.4891,-5.4404],[134.489,-5.4347],[134.4918,-5.4284]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.5051,-5.4921],[134.5,-5.5017],[134.5007,-5.5058],[134.5042,-5.509],[134.5123,-5.5102],[134.5182,-5.5177],[134.5121,-5.5231],[134.5156,-5.5291],[134.5098,-5.5367],[134.5061,-5.5454],[134.5059,-5.5539],[134.5138,-5.5619],[134.5206,-5.5553],[134.5236,-5.5556],[134.5332,-5.5681],[134.5433,-5.5676],[134.5459,-5.5658],[134.5486,-5.5594],[134.553,-5.5574],[134.5553,-5.5605],[134.5659,-5.5638],[134.5716,-5.5631],[134.5707,-5.5692],[134.574,-5.5696],[134.581,-5.5667],[134.5852,-5.5703],[134.5924,-5.5672],[134.5972,-5.5694],[134.5991,-5.565],[134.6115,-5.569],[134.6128,-5.574],[134.6205,-5.5808],[134.6306,-5.5802],[134.6372,-5.581],[134.6389,-5.5724],[134.6491,-5.573],[134.6494,-5.5667],[134.6475,-5.5559],[134.6559,-5.5584],[134.6559,-5.5664],[134.6602,-5.5707],[134.6629,-5.5671],[134.672,-5.5718],[134.6769,-5.5727],[134.6817,-5.571],[134.684,-5.5614],[134.6881,-5.5621],[134.6872,-5.5695],[134.6918,-5.5715],[134.6964,-5.5704],[134.699,-5.5662],[134.6882,-5.5563],[134.6845,-5.5499],[134.6769,-5.5457],[134.6738,-5.5384],[134.6776,-5.535],[134.6837,-5.5351],[134.688,-5.5373],[134.7017,-5.5349],[134.6996,-5.5305],[134.7055,-5.516],[134.6991,-5.512],[134.6913,-5.5112],[134.6802,-5.5056],[134.6803,-5.5006],[134.6756,-5.4904],[134.6664,-5.4817],[134.6623,-5.4829],[134.6607,-5.4885],[134.6608,-5.4946],[134.6538,-5.492],[134.6536,-5.4802],[134.6483,-5.4701],[134.6508,-5.4672],[134.6514,-5.451],[134.6482,-5.4475],[134.6475,-5.4392],[134.6378,-5.4326],[134.631,-5.4302],[134.6283,-5.4275],[134.6132,-5.4209],[134.608,-5.422],[134.6118,-5.43],[134.6086,-5.4307],[134.6048,-5.425],[134.5982,-5.4224],[134.6017,-5.4185],[134.5975,-5.4143],[134.5911,-5.4162],[134.5894,-5.4234],[134.5856,-5.417],[134.578,-5.4196],[134.5716,-5.4187],[134.5647,-5.4274],[134.5668,-5.4402],[134.5611,-5.4352],[134.5546,-5.4361],[134.558,-5.4432],[134.5464,-5.4363],[134.5357,-5.4341],[134.5305,-5.4265],[134.5218,-5.4259],[134.514,-5.4214],[134.5019,-5.4192],[134.4947,-5.4256],[134.4908,-5.4324],[134.4926,-5.4363],[134.4942,-5.4469],[134.4964,-5.4473],[134.5029,-5.4544],[134.5,-5.4755],[134.4958,-5.4763],[134.4914,-5.4805],[134.4913,-5.4848],[134.4977,-5.4888],[134.5029,-5.4878],[134.5073,-5.4848],[134.5137,-5.485],[134.5163,-5.4799],[134.5226,-5.4817],[134.5212,-5.486],[134.5149,-5.4888],[134.5062,-5.4894],[134.5051,-5.4921]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.6462,-5.4197],[134.6457,-5.4081],[134.6427,-5.4106],[134.6429,-5.4198],[134.6462,-5.4197]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.6266,-5.4122],[134.6302,-5.4107],[134.623,-5.4004],[134.6182,-5.4028],[134.6162,-5.4063],[134.6218,-5.411],[134.6266,-5.4122]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.5953,-5.3993],[134.5935,-5.3957],[134.5866,-5.3936],[134.5781,-5.3999],[134.5827,-5.4035],[134.5921,-5.405],[134.5953,-5.3993]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.6819,-5.3896],[134.6767,-5.3876],[134.6724,-5.3921],[134.6794,-5.3951],[134.6819,-5.3896]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.6616,-5.3879],[134.6567,-5.3866],[134.6504,-5.3876],[134.6487,-5.3923],[134.6509,-5.402],[134.6538,-5.407],[134.6589,-5.4089],[134.6637,-5.3911],[134.6616,-5.3879]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.6236,-5.3947],[134.6251,-5.3906],[134.6211,-5.3865],[134.6152,-5.3907],[134.6217,-5.396],[134.6236,-5.3947]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.6122,-5.3884],[134.6129,-5.3833],[134.6078,-5.382],[134.6059,-5.3863],[134.5925,-5.3932],[134.5968,-5.3984],[134.5959,-5.4011],[134.6031,-5.4061],[134.6114,-5.4081],[134.6169,-5.3999],[134.6204,-5.3977],[134.6122,-5.3884]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.6046,-5.3852],[134.6038,-5.3819],[134.5967,-5.3806],[134.5887,-5.3877],[134.5919,-5.391],[134.6046,-5.3852]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.6079,-5.3749],[134.6095,-5.3693],[134.6066,-5.3682],[134.6044,-5.3736],[134.6079,-5.3749]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.4774,-5.3762],[134.4675,-5.3686],[134.4666,-5.374],[134.4683,-5.3772],[134.4774,-5.3762]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.587,-5.3559],[134.5802,-5.3593],[134.5766,-5.3635],[134.5756,-5.37],[134.5717,-5.3765],[134.5621,-5.3861],[134.5612,-5.3898],[134.5647,-5.3951],[134.5761,-5.3941],[134.5827,-5.3895],[134.5829,-5.3867],[134.5911,-5.3802],[134.5938,-5.3737],[134.6027,-5.3707],[134.6054,-5.3678],[134.6009,-5.3571],[134.587,-5.3559]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.5376,-5.3342],[134.524,-5.3302],[134.5155,-5.3329],[134.5107,-5.3393],[134.5099,-5.3432],[134.5125,-5.3462],[134.5183,-5.3375],[134.5261,-5.3342],[134.5376,-5.3342]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"LineString","coordinates":[[134.6031,-5.3499],[134.5994,-5.3385],[134.5934,-5.3336],[134.5895,-5.3287],[134.5792,-5.3274],[134.5705,-5.3245],[134.56,-5.3287],[134.5523,-5.3358],[134.545,-5.3478],[134.5322,-5.3508],[134.5266,-5.3591],[134.5145,-5.3628],[134.5063,-5.3685],[134.5047,-5.3752],[134.5061,-5.3777],[134.5026,-5.3817],[134.5022,-5.386],[134.5076,-5.3884],[134.5091,-5.3921],[134.5164,-5.3964],[134.5264,-5.4054],[134.5333,-5.4098],[134.5396,-5.4115],[134.5433,-5.409],[134.5476,-5.4006],[134.5523,-5.3974],[134.5582,-5.3973],[134.5586,-5.3856],[134.5665,-5.3768],[134.5664,-5.3725],[134.5745,-5.3608],[134.5843,-5.3529],[134.591,-5.3547],[134.5976,-5.3549],[134.6031,-5.3499]]}},{"type":"Feature","properties":{"mhid":"1332:463","alt_name":"KABUPATEN SERAM BAGIAN BARAT","latitude":-3.1027,"longitude":128.42996,"sample_value":788},"geometry":{"type":"LineString","coordinates":[[127.5886,-3.355],[127.5853,-3.3561],[127.5865,-3.3616],[127.5912,-3.36],[127.5886,-3.355]]}},{"type":"Feature","properties":{"mhid":"1332:463","alt_name":"KABUPATEN SERAM BAGIAN BARAT","latitude":-3.1027,"longitude":128.42996,"sample_value":788},"geometry":{"type":"LineString","coordinates":[[128.1499,-3.2991],[128.1481,-3.2993],[128.1392,-3.3084],[128.1438,-3.3107],[128.1477,-3.3015],[128.1499,-3.2991]]}},{"type":"Feature","properties":{"mhid":"1332:463","alt_name":"KABUPATEN SERAM BAGIAN BARAT","latitude":-3.1027,"longitude":128.42996,"sample_value":788},"geometry":{"type":"LineString","coordinates":[[127.5729,-3.2558],[127.566,-3.2576],[127.5636,-3.2653],[127.5582,-3.2657],[127.5573,-3.2621],[127.5516,-3.2595],[127.5458,-3.2602],[127.541,-3.2647],[127.5385,-3.2631],[127.5293,-3.266],[127.5252,-3.2596],[127.523,-3.2636],[127.5279,-3.2705],[127.5264,-3.2802],[127.5174,-3.2842],[127.5141,-3.288],[127.5062,-3.2894],[127.4876,-3.2981],[127.4891,-3.3045],[127.4943,-3.3146],[127.4999,-3.3186],[127.5058,-3.3301],[127.5302,-3.3372],[127.5488,-3.3379],[127.5642,-3.3395],[127.5734,-3.3428],[127.5818,-3.3443],[127.5882,-3.3479],[127.6004,-3.3483],[127.6037,-3.3512],[127.6058,-3.3595],[127.6133,-3.3675],[127.6175,-3.3692],[127.6298,-3.3673],[127.6399,-3.3712],[127.6479,-3.3699],[127.6574,-3.3659],[127.6596,-3.3625],[127.6588,-3.3558],[127.6557,-3.3521],[127.6459,-3.3481],[127.6366,-3.3396],[127.6317,-3.3278],[127.6323,-3.3182],[127.6252,-3.307],[127.6227,-3.305],[127.6149,-3.3078],[127.6115,-3.3015],[127.6071,-3.2978],[127.6075,-3.2951],[127.6037,-3.2893],[127.5964,-3.286],[127.5917,-3.2777],[127.5841,-3.2752],[127.581,-3.2693],[127.5748,-3.2617],[127.5729,-3.2558]]}},{"type":"Feature","properties":{"mhid":"1332:463","alt_name":"KABUPATEN SERAM BAGIAN BARAT","latitude":-3.1027,"longitude":128.42996,"sample_value":788},"geometry":{"type":"LineString","coordinates":[[127.5484,-3.2463],[127.5444,-3.248],[127.5421,-3.2537],[127.5488,-3.2567],[127.5582,-3.2574],[127.564,-3.2548],[127.563,-3.2513],[127.5484,-3.2463]]}},{"type":"Feature","properties":{"mhid":"1332:463","alt_name":"KABUPATEN SERAM BAGIAN BARAT","latitude":-3.1027,"longitude":128.42996,"sample_value":788},"geometry":{"type":"LineString","coordinates":[[128.1723,-3.2238],[128.1703,-3.2156],[128.1611,-3.2271],[128.1552,-3.231],[128.1576,-3.2331],[128.1633,-3.229],[128.1678,-3.2301],[128.1727,-3.2274],[128.1723,-3.2238]]}},{"type":"Feature","properties":{"mhid":"1332:463","alt_name":"KABUPATEN SERAM BAGIAN BARAT","latitude":-3.1027,"longitude":128.42996,"sample_value":788},"geometry":{"type":"LineString","coordinates":[[127.82,-3.1517],[127.8059,-3.1512],[127.7957,-3.1527],[127.7853,-3.1518],[127.7763,-3.1534],[127.7764,-3.1578],[127.7812,-3.1657],[127.7869,-3.1625],[127.7924,-3.1648],[127.7989,-3.1644],[127.8042,-3.1711],[127.8127,-3.1684],[127.8109,-3.1623],[127.8043,-3.1565],[127.8152,-3.1571],[127.8192,-3.1626],[127.8274,-3.1613],[127.8351,-3.1558],[127.8337,-3.1537],[127.82,-3.1517]]}},{"type":"Feature","properties":{"mhid":"1332:463","alt_name":"KABUPATEN SERAM BAGIAN BARAT","latitude":-3.1027,"longitude":128.42996,"sample_value":788},"geometry":{"type":"LineString","coordinates":[[127.7612,-3.1512],[127.7543,-3.1517],[127.7482,-3.1538],[127.7437,-3.1572],[127.7382,-3.1588],[127.7343,-3.1565],[127.7247,-3.1598],[127.7099,-3.1679],[127.7053,-3.1739],[127.6996,-3.1772],[127.6906,-3.1842],[127.6835,-3.194],[127.6707,-3.1979],[127.658,-3.2057],[127.6533,-3.2104],[127.6414,-3.2196],[127.638,-3.2241],[127.6413,-3.2287],[127.6497,-3.2304],[127.6556,-3.2332],[127.6592,-3.2389],[127.6726,-3.2472],[127.6767,-3.2523],[127.6845,-3.2545],[127.7004,-3.2568],[127.7081,-3.2604],[127.7259,-3.258],[127.7377,-3.2544],[127.7501,-3.2482],[127.7621,-3.2487],[127.7671,-3.2504],[127.7746,-3.249],[127.7821,-3.2519],[127.7894,-3.2568],[127.7947,-3.2534],[127.7957,-3.2472],[127.7929,-3.2421],[127.7919,-3.2353],[127.8003,-3.2237],[127.7988,-3.2085],[127.8007,-3.2045],[127.7992,-3.1979],[127.7943,-3.1928],[127.7944,-3.1893],[127.7905,-3.1864],[127.7921,-3.1823],[127.7977,-3.1847],[127.7995,-3.1812],[127.7914,-3.1754],[127.786,-3.1745],[127.7842,-3.1711],[127.78,-3.1703],[127.7726,-3.1572],[127.7673,-3.1566],[127.7612,-3.1512]]}},{"type":"Feature","properties":{"mhid":"1332:463","alt_name":"KABUPATEN SERAM BAGIAN BARAT","latitude":-3.1027,"longitude":128.42996,"sample_value":788},"geometry":{"type":"LineString","coordinates":[[128.0599,-2.996],[128.0542,-2.9949],[128.0502,-2.9997],[128.0474,-3.0144],[128.0509,-3.0187],[128.0555,-3.0167],[128.0582,-3.0092],[128.0599,-2.996]]}},{"type":"Feature","properties":{"mhid":"1332:463","alt_name":"KABUPATEN SERAM BAGIAN BARAT","latitude":-3.1027,"longitude":128.42996,"sample_value":788},"geometry":{"type":"LineString","coordinates":[[127.9223,-2.9242],[127.9134,-2.9283],[127.9033,-2.9301],[127.8971,-2.9339],[127.8862,-2.9465],[127.8797,-2.9505],[127.8784,-2.9567],[127.8911,-2.9573],[127.8975,-2.9512],[127.9034,-2.9491],[127.9098,-2.9489],[127.911,-2.9443],[127.9195,-2.9394],[127.9249,-2.9279],[127.9223,-2.9242]]}},{"type":"Feature","properties":{"mhid":"1332:463","alt_name":"KABUPATEN SERAM BAGIAN BARAT","latitude":-3.1027,"longitude":128.42996,"sample_value":788},"geometry":{"type":"LineString","coordinates":[[127.9251,-2.9119],[127.9203,-2.9122],[127.9131,-2.9154],[127.9135,-2.9204],[127.9185,-2.9222],[127.9226,-2.9199],[127.9266,-2.9215],[127.9328,-2.9276],[127.9379,-2.9289],[127.9414,-2.9372],[127.9412,-2.941],[127.9362,-2.9404],[127.9242,-2.9351],[127.9234,-2.9393],[127.9152,-2.9476],[127.9089,-2.9526],[127.9037,-2.9524],[127.9024,-2.9556],[127.8941,-2.9599],[127.8884,-2.961],[127.8843,-2.9592],[127.8791,-2.9606],[127.877,-2.9655],[127.8788,-2.9698],[127.8771,-2.9745],[127.8708,-2.9808],[127.8702,-2.9878],[127.8677,-2.994],[127.8694,-3.0034],[127.8528,-3.0175],[127.8448,-3.0167],[127.8386,-3.0262],[127.831,-3.0309],[127.8422,-3.0327],[127.8463,-3.0381],[127.853,-3.0356],[127.8582,-3.0365],[127.8634,-3.0399],[127.8752,-3.0358],[127.8791,-3.038],[127.8884,-3.0385],[127.8918,-3.0409],[127.8977,-3.0408],[127.9017,-3.0386],[127.9145,-3.0386],[127.9265,-3.0323],[127.9292,-3.0276],[127.9406,-3.0203],[127.9536,-3.0101],[127.9637,-2.998],[127.9657,-2.9937],[127.9702,-2.9754],[127.9718,-2.9725],[127.9876,-2.9597],[127.9943,-2.9514],[128.0017,-2.9459],[128.0038,-2.9424],[128.0022,-2.9348],[127.9975,-2.9292],[127.9915,-2.9242],[127.9709,-2.9226],[127.9589,-2.9258],[127.9457,-2.9244],[127.9348,-2.9195],[127.9251,-2.9119]]}},{"type":"Feature","properties":{"mhid":"1332:463","alt_name":"KABUPATEN SERAM BAGIAN BARAT","latitude":-3.1027,"longitude":128.42996,"sample_value":788},"geometry":{"type":"MultiLineString","coordinates":[[[128.7536,-2.8512],[128.7447,-2.8539],[128.7375,-2.8547],[128.7314,-2.8584],[128.7225,-2.8606],[128.714,-2.8614],[128.7006,-2.8608],[128.6913,-2.8579],[128.6759,-2.8489],[128.6702,-2.8416],[128.6639,-2.8396],[128.6547,-2.8412],[128.6412,-2.8504],[128.6294,-2.853],[128.6186,-2.8542],[128.6132,-2.8513],[128.5994,-2.8509],[128.5707,-2.854],[128.5637,-2.8538],[128.5566,-2.8517],[128.5505,-2.8515],[128.5403,-2.847],[128.5292,-2.8367],[128.5249,-2.8352],[128.5141,-2.836],[128.5084,-2.834],[128.5005,-2.8368],[128.482,-2.8491],[128.4712,-2.852],[128.4662,-2.8522],[128.4532,-2.8467],[128.4418,-2.846],[128.4319,-2.8481],[128.4206,-2.8572],[128.4147,-2.8634],[128.4021,-2.8697],[128.3899,-2.8702],[128.3805,-2.8718],[128.3748,-2.8708],[128.3658,-2.8656],[128.3555,-2.861],[128.3498,-2.8598],[128.3458,-2.8621],[128.3396,-2.8627],[128.3366,-2.8607],[128.3283,-2.8626],[128.3151,-2.8635],[128.3026,-2.8656],[128.2951,-2.8649],[128.2874,-2.8623],[128.2782,-2.865],[128.2703,-2.8691],[128.2621,-2.8676],[128.2573,-2.865],[128.254,-2.8577],[128.2481,-2.8571],[128.2384,-2.8539],[128.2332,-2.855],[128.2299,-2.8578],[128.225,-2.8572],[128.2206,-2.8605],[128.2113,-2.8589],[128.2086,-2.8628],[128.2034,-2.862],[128.193,-2.8628],[128.1862,-2.8662],[128.1778,-2.8646],[128.1696,-2.8654],[128.1664,-2.8635],[128.1615,-2.8653],[128.1619,-2.8708],[128.1665,-2.8792],[128.1639,-2.8838],[128.1583,-2.8843],[128.1477,-2.8878],[128.1474,-2.8936],[128.142,-2.8988],[128.1294,-2.9048],[128.1284,-2.9113],[128.1321,-2.9175],[128.142,-2.9221],[128.1404,-2.928],[128.1346,-2.9361],[128.1266,-2.9439],[128.122,-2.9503],[128.1124,-2.9586],[128.0998,-2.9595],[128.0922,-2.9612],[128.0816,-2.9607],[128.0761,-2.9653],[128.0713,-2.9728],[128.0723,-2.9782],[128.0766,-2.9856],[128.0812,-2.9873],[128.0957,-2.9841],[128.1013,-2.9814],[128.1049,-2.977],[128.1126,-2.9717],[128.1173,-2.9704],[128.1197,-2.9754],[128.1177,-2.9846],[128.1191,-2.9925],[128.1224,-2.9959],[128.1222,-2.9996],[128.11,-3.0083],[128.1016,-3.0127],[128.0935,-3.0154],[128.0873,-3.0202],[128.0944,-3.0257],[128.0949,-3.0301],[128.0921,-3.034],[128.0914,-3.0413],[128.097,-3.0488],[128.1029,-3.054],[128.1081,-3.049],[128.1099,-3.0541],[128.1147,-3.0574],[128.1143,-3.065],[128.1107,-3.067],[128.1053,-3.0661],[128.1003,-3.0702],[128.0865,-3.0678],[128.0759,-3.071],[128.0706,-3.0738],[128.058,-3.07],[128.0472,-3.0738],[128.0382,-3.0737],[128.0324,-3.0779],[128.0265,-3.0744],[128.0209,-3.0776],[128.0172,-3.0743],[128.0106,-3.0751],[128.0055,-3.073],[128.0035,-3.079],[127.9996,-3.0707],[127.9902,-3.0792],[127.987,-3.0806],[127.9829,-3.0912],[127.9777,-3.0951],[127.9768,-3.1051],[127.9715,-3.1042],[127.9675,-3.1078],[127.9634,-3.104],[127.9592,-3.1082],[127.9533,-3.1084],[127.9434,-3.1127],[127.9455,-3.1277],[127.933,-3.133],[127.93,-3.1386],[127.9238,-3.1442],[127.9094,-3.1522],[127.905,-3.1535],[127.8983,-3.1579],[127.8944,-3.1582],[127.8916,-3.155],[127.887,-3.1543],[127.8806,-3.1509],[127.8732,-3.1551],[127.8584,-3.1589],[127.8465,-3.1548],[127.8393,-3.1557],[127.8376,-3.1583],[127.8398,-3.1639],[127.854,-3.174],[127.8657,-3.1793],[127.8722,-3.1896],[127.8738,-3.1939],[127.8742,-3.2086],[127.8725,-3.2126],[127.8727,-3.2213],[127.8747,-3.2239],[127.8738,-3.2305],[127.8771,-3.2436],[127.881,-3.2478],[127.888,-3.2583],[127.8874,-3.2678],[127.8885,-3.2715],[127.9014,-3.2835],[127.9103,-3.2885],[127.9181,-3.2949],[127.9242,-3.304],[127.924,-3.3085],[127.9302,-3.3183],[127.9331,-3.3349],[127.9391,-3.3438],[127.9433,-3.3523],[127.9437,-3.357],[127.9404,-3.3719],[127.9425,-3.3796],[127.938,-3.3891],[127.9297,-3.396],[127.9298,-3.3989],[127.9234,-3.4116],[127.9193,-3.4151],[127.9202,-3.4208],[127.9189,-3.4284],[127.9156,-3.4386],[127.9155,-3.4442],[127.9127,-3.451],[127.9051,-3.4614],[127.9024,-3.468],[127.8988,-3.4845],[127.8953,-3.4904],[127.8969,-3.4931],[127.9125,-3.4924],[127.9214,-3.4931],[127.9265,-3.4751],[127.9325,-3.4658],[127.9376,-3.4613],[127.9458,-3.4576],[127.9548,-3.4571],[127.9595,-3.4498],[127.9626,-3.4474],[127.9697,-3.4357],[127.9702,-3.4296],[127.9729,-3.4228],[127.9726,-3.4149],[127.9776,-3.4053],[127.9788,-3.3971],[127.9838,-3.3878],[127.9864,-3.3803],[127.9921,-3.3753],[127.998,-3.379],[128.0102,-3.3828],[128.0178,-3.3801],[128.023,-3.3741],[128.0272,-3.3738],[128.0297,-3.3703],[128.0311,-3.3591],[128.0424,-3.3531],[128.0519,-3.3461],[128.0552,-3.3406],[128.0564,-3.3293],[128.0551,-3.3268],[128.0579,-3.3151],[128.0618,-3.3059],[128.0619,-3.3001],[128.0595,-3.2949],[128.0618,-3.2913],[128.0633,-3.2833],[128.0586,-3.2767],[128.0587,-3.2716],[128.0614,-3.2683],[128.0636,-3.2605],[128.0607,-3.2556],[128.0672,-3.2442],[128.0674,-3.2331],[128.0693,-3.2294],[128.0683,-3.2209],[128.0694,-3.2166],[128.0673,-3.2098],[128.0708,-3.2059],[128.0727,-3.1959],[128.072,-3.1923],[128.0769,-3.1875],[128.0764,-3.1825],[128.0789,-3.1789],[128.0828,-3.1661],[128.0837,-3.1451],[128.0869,-3.1406],[128.0905,-3.1315],[128.1006,-3.1272],[128.1087,-3.1201],[128.115,-3.1114],[128.1183,-3.1102],[128.1219,-3.1049],[128.1245,-3.0977],[128.1292,-3.0953],[128.1347,-3.088],[128.1408,-3.0866],[128.1472,-3.0783],[128.1474,-3.075],[128.1528,-3.0728],[128.1549,-3.0694],[128.16,-3.0675],[128.1835,-3.0649],[128.1884,-3.0691],[128.1947,-3.0688],[128.1992,-3.0753],[128.1998,-3.0834],[128.1985,-3.0954],[128.2006,-3.1033],[128.1974,-3.1113],[128.2016,-3.1214],[128.2018,-3.1266],[128.199,-3.1323],[128.1951,-3.1356],[128.1956,-3.1399],[128.189,-3.1478],[128.1844,-3.149],[128.1798,-3.1453],[128.1727,-3.1442],[128.171,-3.1542],[128.1688,-3.1563],[128.1729,-3.164],[128.1654,-3.1659],[128.161,-3.161],[128.1596,-3.166],[128.161,-3.17],[128.1652,-3.1737],[128.1647,-3.1823],[128.1708,-3.1869],[128.1603,-3.2001],[128.1698,-3.2046],[128.1706,-3.2121],[128.1769,-3.22],[128.1792,-3.2278],[128.1833,-3.231],[128.1874,-3.2302],[128.1867,-3.2255],[128.1943,-3.2214],[128.1969,-3.2161],[128.2027,-3.2158],[128.1991,-3.2071],[128.1998,-3.204],[128.2071,-3.2099],[128.2143,-3.2114],[128.2184,-3.2168],[128.2232,-3.2175],[128.2228,-3.2106],[128.2254,-3.2095],[128.23,-3.2154],[128.2356,-3.2157],[128.2428,-3.2095],[128.2414,-3.2048],[128.2449,-3.2022],[128.2496,-3.2039],[128.2489,-3.2079],[128.258,-3.2079],[128.2636,-3.2039],[128.268,-3.2029],[128.2708,-3.2055],[128.269,-3.2109],[128.2717,-3.2166],[128.2797,-3.2179],[128.2835,-3.2222],[128.292,-3.2261],[128.3018,-3.2465],[128.2996,-3.2601],[128.3005,-3.2651],[128.3123,-3.2736],[128.3132,-3.2796],[128.3168,-3.2831],[128.318,-3.2939],[128.323,-3.2986],[128.3281,-3.3079],[128.3299,-3.3162],[128.3327,-3.3208],[128.334,-3.3305],[128.3406,-3.3343],[128.3494,-3.3431],[128.3516,-3.3495],[128.3567,-3.3548],[128.3669,-3.359],[128.3706,-3.3635],[128.3746,-3.3723],[128.3788,-3.3753],[128.3798,-3.3826],[128.3893,-3.3891],[128.3957,-3.3954],[128.3969,-3.4041],[128.4019,-3.4114],[128.4023,-3.4209],[128.4052,-3.4286],[128.4129,-3.4348],[128.4235,-3.4384],[128.4314,-3.4437],[128.4334,-3.4478],[128.4373,-3.4497],[128.444,-3.4489],[128.4526,-3.4527],[128.4587,-3.4575],[128.4729,-3.4592],[128.4912,-3.4538],[128.5005,-3.4595],[128.5181,-3.4574],[128.5226,-3.4583],[128.5282,-3.4541],[128.5356,-3.4519],[128.5385,-3.4486],[128.5542,-3.4434],[128.5639,-3.443],[128.568,-3.4388],[128.5746,-3.4393],[128.5858,-3.4326],[128.5911,-3.4276],[128.5955,-3.4263],[128.6049,-3.4296],[128.6112,-3.4282],[128.6186,-3.4294],[128.6227,-3.4338],[128.6331,-3.4345],[128.6501,-3.4336],[128.6607,-3.4341],[128.6695,-3.4321],[128.6744,-3.4334],[128.6821,-3.4282],[128.6917,-3.4184],[128.6979,-3.4145],[128.6986,-3.4109],[128.695,-3.4074],[128.6844,-3.4004],[128.6729,-3.3943],[128.6703,-3.3902],[128.674,-3.3813],[128.6716,-3.3733],[128.6754,-3.3652],[128.6886,-3.3514],[128.6926,-3.3509],[128.705,-3.3347],[128.7117,-3.3272],[128.7179,-3.3187],[128.7241,-3.3126],[128.7364,-3.3025],[128.7503,-3.2925],[128.7547,-3.2904],[128.7647,-3.283],[128.7717,-3.2728],[128.7795,-3.2651],[128.787,-3.2606],[128.7987,-3.2575],[128.8364,-3.2408],[128.8301,-3.2316],[128.8296,-3.2256],[128.8264,-3.2148],[128.7992,-3.1241],[128.7757,-3.0428],[128.7584,-3.0442],[128.7523,-3.032],[128.751,-3.0177],[128.7484,-3.0096],[128.7488,-3.0023],[128.7517,-3.0006],[128.7464,-2.991],[128.7431,-2.9806],[128.7451,-2.9749],[128.7442,-2.9669],[128.7499,-2.9683],[128.7544,-2.9652],[128.754,-2.9583],[128.7582,-2.9528],[128.7619,-2.9507],[128.7607,-2.9308],[128.7549,-2.9253],[128.7584,-2.9229],[128.7556,-2.9177],[128.7562,-2.9138],[128.7529,-2.9114],[128.7506,-2.9037],[128.7523,-2.8997],[128.7503,-2.8912],[128.7551,-2.8878],[128.7564,-2.8829],[128.7511,-2.878],[128.754,-2.8685],[128.753,-2.8638],[128.7536,-2.8512]],[[128.71,-3.0492],[128.7793,-3.2119],[128.741,-3.1261],[128.7086,-3.0495],[128.71,-3.0492]]]}},{"type":"Feature","properties":{"mhid":"1332:463","alt_name":"KABUPATEN SERAM BAGIAN BARAT","latitude":-3.1027,"longitude":128.42996,"sample_value":788},"geometry":{"type":"LineString","coordinates":[[128.7125,-1.5088],[128.7101,-1.5072],[128.7046,-1.5114],[128.7058,-1.5155],[128.7099,-1.5183],[128.7157,-1.5159],[128.715,-1.5105],[128.7125,-1.5088]]}},{"type":"Feature","properties":{"mhid":"1332:463","alt_name":"KABUPATEN SERAM BAGIAN BARAT","latitude":-3.1027,"longitude":128.42996,"sample_value":788},"geometry":{"type":"LineString","coordinates":[[128.732,-1.5213],[128.7367,-1.5188],[128.737,-1.5101],[128.7343,-1.5059],[128.7264,-1.5056],[128.7237,-1.5086],[128.7227,-1.514],[128.7251,-1.5207],[128.732,-1.5213]]}},{"type":"Feature","properties":{"mhid":"1332:463","alt_name":"KABUPATEN SERAM BAGIAN BARAT","latitude":-3.1027,"longitude":128.42996,"sample_value":788},"geometry":{"type":"LineString","coordinates":[[128.6344,-1.5128],[128.6387,-1.5124],[128.6461,-1.5081],[128.6472,-1.5031],[128.6411,-1.4983],[128.635,-1.5001],[128.6297,-1.5061],[128.631,-1.512],[128.6344,-1.5128]]}},{"type":"Feature","properties":{"mhid":"1332:463","alt_name":"KABUPATEN SERAM BAGIAN BARAT","latitude":-3.1027,"longitude":128.42996,"sample_value":788},"geometry":{"type":"LineString","coordinates":[[128.6526,-1.4923],[128.6629,-1.4861],[128.6602,-1.4817],[128.6524,-1.4854],[128.6501,-1.4886],[128.6526,-1.4923]]}},{"type":"Feature","properties":{"mhid":"1332:463","alt_name":"KABUPATEN SERAM BAGIAN BARAT","latitude":-3.1027,"longitude":128.42996,"sample_value":788},"geometry":{"type":"LineString","coordinates":[[128.9279,-1.3806],[128.9257,-1.3788],[128.9202,-1.3807],[128.915,-1.3801],[128.9111,-1.3882],[128.9119,-1.3932],[128.9163,-1.3984],[128.9205,-1.3986],[128.9295,-1.3903],[128.9309,-1.3855],[128.9279,-1.3806]]}},{"type":"Feature","properties":{"mhid":"1332:464","alt_name":"KABUPATEN SERAM BAGIAN TIMUR","latitude":-3.39851,"longitude":130.39166,"sample_value":23},"geometry":{"type":"LineString","coordinates":[[131.7468,-4.7848],[131.7485,-4.7703],[131.7504,-4.7611],[131.7534,-4.7574],[131.7596,-4.7535],[131.7645,-4.7478],[131.7666,-4.7367],[131.7645,-4.7312],[131.7595,-4.7246],[131.7407,-4.7073],[131.7384,-4.7043],[131.7282,-4.7001],[131.7219,-4.7104],[131.7301,-4.7197],[131.7286,-4.7241],[131.7282,-4.741],[131.727,-4.7467],[131.7295,-4.7583],[131.7323,-4.7635],[131.7359,-4.7764],[131.7356,-4.7803],[131.7427,-4.785],[131.7468,-4.7848]]}},{"type":"Feature","properties":{"mhid":"1332:464","alt_name":"KABUPATEN SERAM BAGIAN TIMUR","latitude":-3.39851,"longitude":130.39166,"sample_value":23},"geometry":{"type":"LineString","coordinates":[[131.6959,-4.5903],[131.6901,-4.5869],[131.689,-4.5931],[131.6942,-4.5985],[131.7026,-4.6],[131.7043,-4.5984],[131.6977,-4.5905],[131.6959,-4.5903]]}},{"type":"Feature","properties":{"mhid":"1332:464","alt_name":"KABUPATEN SERAM BAGIAN TIMUR","latitude":-3.39851,"longitude":130.39166,"sample_value":23},"geometry":{"type":"LineString","coordinates":[[131.6351,-4.4456],[131.6318,-4.4383],[131.6234,-4.4354],[131.6111,-4.4238],[131.6082,-4.4271],[131.612,-4.4343],[131.6136,-4.4403],[131.6168,-4.4439],[131.6268,-4.4476],[131.6312,-4.4511],[131.6273,-4.455],[131.6244,-4.4545],[131.6336,-4.4712],[131.6377,-4.4809],[131.6373,-4.4848],[131.6446,-4.4955],[131.6482,-4.4986],[131.6537,-4.5195],[131.6517,-4.5322],[131.654,-4.5357],[131.6603,-4.5382],[131.6659,-4.5358],[131.6745,-4.5362],[131.6833,-4.5396],[131.6876,-4.5282],[131.6845,-4.5246],[131.686,-4.5145],[131.6851,-4.5104],[131.6752,-4.5011],[131.6751,-4.4941],[131.6728,-4.4892],[131.6583,-4.4692],[131.6539,-4.4673],[131.6506,-4.4605],[131.6407,-4.4522],[131.6351,-4.4456]]}},{"type":"Feature","properties":{"mhid":"1332:464","alt_name":"KABUPATEN SERAM BAGIAN TIMUR","latitude":-3.39851,"longitude":130.39166,"sample_value":23},"geometry":{"type":"LineString","coordinates":[[131.5838,-4.3788],[131.5795,-4.38],[131.5829,-4.3852],[131.5849,-4.3943],[131.5907,-4.4042],[131.5919,-4.4085],[131.5994,-4.4151],[131.6044,-4.4171],[131.6133,-4.4139],[131.6155,-4.4078],[131.6016,-4.4014],[131.5897,-4.3913],[131.5838,-4.3788]]}},{"type":"Feature","properties":{"mhid":"1332:464","alt_name":"KABUPATEN SERAM BAGIAN TIMUR","latitude":-3.39851,"longitude":130.39166,"sample_value":23},"geometry":{"type":"LineString","coordinates":[[131.3813,-4.1281],[131.3812,-4.1263],[131.3508,-4.112],[131.3365,-4.0995],[131.3024,-4.0744],[131.292,-4.0727],[131.2841,-4.0686],[131.2747,-4.0771],[131.2725,-4.0856],[131.272,-4.0932],[131.2756,-4.0977],[131.2828,-4.1021],[131.2851,-4.1073],[131.2913,-4.1098],[131.2971,-4.1142],[131.3033,-4.1227],[131.3101,-4.1268],[131.3172,-4.1295],[131.3266,-4.1308],[131.3369,-4.1308],[131.3512,-4.1465],[131.3589,-4.146],[131.3647,-4.1442],[131.3714,-4.1474],[131.3727,-4.1612],[131.3781,-4.1729],[131.3821,-4.176],[131.3951,-4.1733],[131.4,-4.1711],[131.4041,-4.1626],[131.4023,-4.1572],[131.396,-4.1469],[131.3871,-4.1371],[131.3817,-4.1335],[131.3813,-4.1281]]}},{"type":"Feature","properties":{"mhid":"1332:464","alt_name":"KABUPATEN SERAM BAGIAN TIMUR","latitude":-3.39851,"longitude":130.39166,"sample_value":23},"geometry":{"type":"LineString","coordinates":[[131.246,-4.0507],[131.2393,-4.0386],[131.2438,-4.0198],[131.246,-4.0077],[131.246,-4.0005],[131.2429,-3.992],[131.236,-3.99],[131.2304,-3.9857],[131.216,-3.9781],[131.2071,-3.9759],[131.2013,-3.979],[131.1995,-3.9916],[131.2062,-3.9969],[131.2089,-4.0086],[131.2165,-4.0162],[131.2183,-4.0242],[131.2165,-4.0311],[131.2263,-4.0478],[131.2344,-4.0529],[131.2416,-4.0533],[131.246,-4.0507]]}},{"type":"Feature","properties":{"mhid":"1332:464","alt_name":"KABUPATEN SERAM BAGIAN TIMUR","latitude":-3.39851,"longitude":130.39166,"sample_value":23},"geometry":{"type":"LineString","coordinates":[[131.4139,-3.9463],[131.4093,-3.9444],[131.4033,-3.9443],[131.3854,-3.9524],[131.3784,-3.9573],[131.3673,-3.9614],[131.3634,-3.9639],[131.3637,-3.9672],[131.3754,-3.9893],[131.3777,-3.9959],[131.3858,-4.0074],[131.3916,-4.0196],[131.3991,-4.041],[131.4056,-4.0533],[131.409,-4.0511],[131.413,-4.056],[131.413,-4.061],[131.417,-4.069],[131.4264,-4.0757],[131.4407,-4.0703],[131.4484,-4.0636],[131.4466,-4.0578],[131.4408,-4.0502],[131.439,-4.0448],[131.4408,-4.039],[131.4417,-4.03],[131.4354,-4.0148],[131.4309,-3.9837],[131.4242,-3.9777],[131.4221,-3.9704],[131.4174,-3.9611],[131.4177,-3.9476],[131.4139,-3.9463]]}},{"type":"Feature","properties":{"mhid":"1332:464","alt_name":"KABUPATEN SERAM BAGIAN TIMUR","latitude":-3.39851,"longitude":130.39166,"sample_value":23},"geometry":{"type":"LineString","coordinates":[[130.9018,-3.8776],[130.8951,-3.8799],[130.8945,-3.8845],[130.8987,-3.8868],[130.9018,-3.8776]]}},{"type":"Feature","properties":{"mhid":"1332:464","alt_name":"KABUPATEN SERAM BAGIAN TIMUR","latitude":-3.39851,"longitude":130.39166,"sample_value":23},"geometry":{"type":"LineString","coordinates":[[130.9367,-3.8674],[130.9334,-3.8673],[130.9285,-3.8743],[130.9199,-3.8764],[130.9169,-3.8862],[130.9101,-3.8937],[130.9133,-3.8987],[130.9173,-3.9011],[130.9233,-3.8962],[130.9303,-3.8944],[130.9369,-3.8949],[130.954,-3.8873],[130.9567,-3.8815],[130.949,-3.8823],[130.9479,-3.8746],[130.9421,-3.8743],[130.9387,-3.8806],[130.9325,-3.8767],[130.9323,-3.8715],[130.9367,-3.8674]]}},{"type":"Feature","properties":{"mhid":"1332:464","alt_name":"KABUPATEN SERAM BAGIAN TIMUR","latitude":-3.39851,"longitude":130.39166,"sample_value":23},"geometry":{"type":"LineString","coordinates":[[130.8033,-3.8541],[130.7954,-3.8546],[130.7923,-3.8614],[130.807,-3.8695],[130.8155,-3.8727],[130.8229,-3.8719],[130.8251,-3.8696],[130.822,-3.8538],[130.8154,-3.8548],[130.8033,-3.8541]]}},{"type":"Feature","properties":{"mhid":"1332:464","alt_name":"KABUPATEN SERAM BAGIAN TIMUR","latitude":-3.39851,"longitude":130.39166,"sample_value":23},"geometry":{"type":"LineString","coordinates":[[130.799,-3.3331],[130.8034,-3.3294],[130.8057,-3.3216],[130.801,-3.3169],[130.7993,-3.3072],[130.7906,-3.3045],[130.7809,-3.2971],[130.7759,-3.2978],[130.7668,-3.3055],[130.7625,-3.3146],[130.7659,-3.322],[130.785,-3.3345],[130.799,-3.3331]]}},{"type":"Feature","properties":{"mhid":"1332:464","alt_name":"KABUPATEN SERAM BAGIAN TIMUR","latitude":-3.39851,"longitude":130.39166,"sample_value":23},"geometry":{"type":"LineString","coordinates":[[129.867,-3.3131],[129.8595,-3.321],[129.8564,-3.3299],[129.8593,-3.3378],[129.8645,-3.337],[129.8851,-3.3433],[129.8939,-3.3398],[129.9075,-3.3385],[129.9181,-3.3389],[129.9295,-3.3409],[129.9378,-3.3481],[129.9469,-3.3525],[129.9517,-3.3533],[129.9606,-3.3606],[129.962,-3.367],[129.9697,-3.3765],[129.9708,-3.381],[129.9691,-3.3894],[129.9705,-3.398],[129.9726,-3.3985],[129.975,-3.4088],[129.9747,-3.4127],[129.9709,-3.4266],[129.9812,-3.4343],[129.9892,-3.4418],[129.9977,-3.4572],[129.9998,-3.4595],[130.0053,-3.4708],[130.0088,-3.4724],[130.0132,-3.4806],[130.0171,-3.4836],[130.023,-3.4833],[130.0359,-3.4855],[130.04,-3.4895],[130.0456,-3.4895],[130.0644,-3.4916],[130.0721,-3.4948],[130.0813,-3.4957],[130.0884,-3.5002],[130.0976,-3.5006],[130.1049,-3.5053],[130.1092,-3.5064],[130.1205,-3.5162],[130.1226,-3.5234],[130.1317,-3.532],[130.14,-3.5338],[130.153,-3.5398],[130.1644,-3.5406],[130.1729,-3.5436],[130.1774,-3.549],[130.1815,-3.5511],[130.1991,-3.5546],[130.2159,-3.5635],[130.2305,-3.5668],[130.2454,-3.5675],[130.2553,-3.5756],[130.2741,-3.5787],[130.2787,-3.5803],[130.2853,-3.5851],[130.2953,-3.5861],[130.3037,-3.5936],[130.3132,-3.5953],[130.3241,-3.6013],[130.3244,-3.6088],[130.3293,-3.6116],[130.3409,-3.6113],[130.347,-3.6152],[130.3535,-3.6212],[130.3619,-3.6187],[130.3745,-3.6191],[130.385,-3.6241],[130.3952,-3.6247],[130.4035,-3.6281],[130.4035,-3.6323],[130.419,-3.6366],[130.4382,-3.647],[130.4432,-3.6507],[130.448,-3.6565],[130.4563,-3.6698],[130.4634,-3.6758],[130.4692,-3.6865],[130.4651,-3.6909],[130.4659,-3.6934],[130.479,-3.7017],[130.4953,-3.7039],[130.5029,-3.7099],[130.5186,-3.7139],[130.5339,-3.7157],[130.5511,-3.7189],[130.5674,-3.7256],[130.5751,-3.7327],[130.574,-3.7378],[130.5764,-3.7399],[130.576,-3.7471],[130.5856,-3.7486],[130.5903,-3.7532],[130.5992,-3.7577],[130.6007,-3.7631],[130.6062,-3.7657],[130.6121,-3.7708],[130.6164,-3.7834],[130.6115,-3.7878],[130.6123,-3.7909],[130.6214,-3.797],[130.6272,-3.797],[130.6326,-3.793],[130.6358,-3.7978],[130.6475,-3.8036],[130.654,-3.8097],[130.6636,-3.8072],[130.674,-3.8066],[130.6884,-3.8083],[130.6953,-3.8137],[130.6992,-3.8205],[130.7026,-3.8232],[130.7146,-3.8293],[130.7188,-3.8302],[130.7346,-3.8262],[130.744,-3.8259],[130.7468,-3.8285],[130.7508,-3.8377],[130.7563,-3.8396],[130.7652,-3.8317],[130.7676,-3.8318],[130.7757,-3.8416],[130.7774,-3.8467],[130.7759,-3.8517],[130.794,-3.8539],[130.7987,-3.851],[130.8033,-3.8506],[130.8139,-3.8538],[130.82,-3.8529],[130.8246,-3.8547],[130.8253,-3.8635],[130.8289,-3.8762],[130.839,-3.8776],[130.8441,-3.8833],[130.8533,-3.8823],[130.8593,-3.8803],[130.8629,-3.8719],[130.8473,-3.8533],[130.839,-3.849],[130.831,-3.8377],[130.8317,-3.8284],[130.837,-3.8172],[130.836,-3.8144],[130.8374,-3.8069],[130.8362,-3.8012],[130.8393,-3.7924],[130.8425,-3.7873],[130.8393,-3.778],[130.8393,-3.7731],[130.8416,-3.7632],[130.8385,-3.7486],[130.8407,-3.7409],[130.8394,-3.7306],[130.8364,-3.7219],[130.8323,-3.7016],[130.8353,-3.6925],[130.8366,-3.6841],[130.8197,-3.6908],[130.8306,-3.652],[130.8346,-3.6473],[130.8404,-3.6511],[130.8514,-3.6432],[130.8617,-3.6399],[130.8726,-3.6292],[130.8764,-3.6232],[130.8793,-3.6157],[130.8813,-3.5956],[130.8795,-3.5886],[130.8764,-3.5842],[130.873,-3.5734],[130.8651,-3.5656],[130.8578,-3.5529],[130.8543,-3.5497],[130.847,-3.5468],[130.8412,-3.5405],[130.8331,-3.5374],[130.8328,-3.5321],[130.8267,-3.5303],[130.8203,-3.5217],[130.8172,-3.506],[130.8056,-3.4983],[130.8023,-3.4903],[130.8023,-3.4796],[130.8417,-3.4673],[130.8372,-3.4551],[130.8229,-3.4421],[130.8141,-3.4285],[130.8047,-3.4067],[130.7697,-3.4027],[130.7489,-3.4018],[130.7424,-3.4047],[130.7353,-3.4008],[130.7312,-3.4032],[130.7234,-3.4012],[130.7143,-3.4032],[130.7061,-3.4032],[130.6987,-3.3974],[130.687,-3.4017],[130.6821,-3.405],[130.6736,-3.406],[130.6628,-3.4013],[130.6598,-3.3968],[130.66,-3.3931],[130.6531,-3.3853],[130.6507,-3.3805],[130.6474,-3.3798],[130.6433,-3.3742],[130.6429,-3.3594],[130.6327,-3.3403],[130.6305,-3.3301],[130.6307,-3.3227],[130.6294,-3.3147],[130.6322,-3.3018],[130.6386,-3.2862],[130.6367,-3.2755],[130.6295,-3.2629],[130.6293,-3.2564],[130.6312,-3.2453],[130.6303,-3.2371],[130.623,-3.2295],[130.6128,-3.2123],[130.6132,-3.1999],[130.6143,-3.196],[130.6122,-3.1861],[130.608,-3.1827],[130.6051,-3.1673],[130.6039,-3.1561],[130.6051,-3.1511],[130.601,-3.1467],[130.5962,-3.1444],[130.5857,-3.1353],[130.5789,-3.1251],[130.5759,-3.1226],[130.5646,-3.1204],[130.5544,-3.1128],[130.5481,-3.1061],[130.5393,-3.1071],[130.5353,-3.1046],[130.5298,-3.0982],[130.5039,-3.1006],[130.5006,-3.1034],[130.4972,-3.0976],[130.4876,-3.0955],[130.4852,-3.0891],[130.4836,-3.0799],[130.4774,-3.0749],[130.4588,-3.0624],[130.4544,-3.0641],[130.4448,-3.06],[130.4424,-3.0517],[130.4415,-3.0367],[130.4387,-3.0327],[130.4124,-3.02],[130.3986,-3.0062],[130.3866,-2.992],[130.3857,-2.9892],[130.3701,-2.99],[130.3625,-2.9818],[130.3518,-2.9749],[130.3403,-2.9763],[130.3357,-2.9734],[130.3189,-2.9708],[130.3127,-2.9691],[130.3081,-2.973],[130.2968,-2.9764],[130.2767,-2.9758],[130.2576,-2.9809],[130.255,-2.9831],[130.2426,-2.9892],[130.2364,-2.9936],[130.2297,-2.9958],[130.2264,-2.9985],[130.2101,-3.0082],[130.1936,-3.0109],[130.1858,-3.0087],[130.179,-3.0017],[130.1775,-2.9918],[130.1562,-2.9862],[130.15,-2.9862],[130.14,-2.9932],[130.1268,-2.9977],[130.1172,-2.9958],[130.1102,-2.9966],[130.1097,-3.0078],[130.108,-3.0121],[130.104,-3.0147],[130.1069,-3.0221],[130.1043,-3.0239],[130.1057,-3.0373],[130.102,-3.0468],[130.1029,-3.0603],[130.1006,-3.0693],[130.1032,-3.0746],[130.1034,-3.0802],[130.101,-3.082],[130.1057,-3.0907],[130.1034,-3.1178],[130.1063,-3.122],[130.1058,-3.1399],[130.0966,-3.1519],[130.0933,-3.1704],[130.0961,-3.1777],[130.0957,-3.1926],[130.0847,-3.2085],[130.0782,-3.1951],[130.0686,-3.1924],[130.0582,-3.1922],[130.0442,-3.1815],[130.0202,-3.1825],[129.9563,-3.1701],[129.9271,-3.1638],[129.9127,-3.1679],[129.9152,-3.1773],[129.9134,-3.1825],[129.9142,-3.1986],[129.9107,-3.2092],[129.9002,-3.2217],[129.9058,-3.2334],[129.9031,-3.2386],[129.8997,-3.2593],[129.8948,-3.2611],[129.8844,-3.2693],[129.8828,-3.2783],[129.8837,-3.2865],[129.8798,-3.2949],[129.8763,-3.2977],[129.8738,-3.3063],[129.867,-3.3131]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[128.2182,-8.2147],[128.212,-8.2077],[128.198,-8.2034],[128.1918,-8.2004],[128.1851,-8.2016],[128.1759,-8.2071],[128.159,-8.2108],[128.1479,-8.2159],[128.1365,-8.2153],[128.1221,-8.2166],[128.1082,-8.213],[128.0927,-8.206],[128.0923,-8.2213],[128.0891,-8.2284],[128.0756,-8.246],[128.0737,-8.2532],[128.0743,-8.2581],[128.078,-8.2639],[128.0872,-8.2692],[128.1027,-8.2701],[128.1157,-8.2751],[128.1325,-8.2765],[128.1488,-8.2815],[128.17,-8.2796],[128.1894,-8.2808],[128.2059,-8.2797],[128.2283,-8.2748],[128.2313,-8.2693],[128.2267,-8.2567],[128.2258,-8.2478],[128.2215,-8.2362],[128.2197,-8.2209],[128.2182,-8.2147]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[128.865,-8.1762],[128.8627,-8.175],[128.8415,-8.1819],[128.8298,-8.1841],[128.8226,-8.1885],[128.8222,-8.1941],[128.8252,-8.1963],[128.8564,-8.2131],[128.8601,-8.2178],[128.8653,-8.2207],[128.8777,-8.2223],[128.8906,-8.2261],[128.8952,-8.2302],[128.9051,-8.2314],[128.9067,-8.2333],[128.921,-8.2349],[128.9277,-8.2364],[128.9403,-8.2353],[128.94,-8.2305],[128.9326,-8.2206],[128.9338,-8.2173],[128.9389,-8.2152],[128.9451,-8.216],[128.9513,-8.215],[128.958,-8.218],[128.9625,-8.2228],[128.9658,-8.2232],[128.9793,-8.235],[128.9913,-8.2391],[129.0051,-8.2481],[129.019,-8.2488],[129.0204,-8.2402],[129.0247,-8.2347],[129.029,-8.2344],[129.0325,-8.2283],[129.033,-8.2108],[129.0287,-8.2033],[129.0236,-8.2035],[129.0168,-8.2007],[129.0086,-8.1991],[128.993,-8.1943],[128.981,-8.186],[128.9766,-8.1842],[128.9634,-8.1752],[128.9563,-8.176],[128.9342,-8.1802],[128.9139,-8.1797],[128.9117,-8.1777],[128.8882,-8.1759],[128.879,-8.1767],[128.8763,-8.1756],[128.865,-8.1762]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[128.683,-8.1688],[128.6806,-8.1667],[128.6762,-8.1699],[128.6814,-8.1786],[128.6865,-8.1808],[128.6872,-8.1877],[128.7059,-8.192],[128.711,-8.1875],[128.7129,-8.1812],[128.7059,-8.1804],[128.6972,-8.1763],[128.6912,-8.1693],[128.683,-8.1688]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[128.7615,-8.1659],[128.761,-8.1685],[128.7707,-8.1696],[128.7741,-8.1732],[128.7726,-8.1761],[128.7763,-8.1845],[128.7789,-8.186],[128.7768,-8.1943],[128.7783,-8.1981],[128.7894,-8.1963],[128.7917,-8.1874],[128.7888,-8.1819],[128.7829,-8.1813],[128.7799,-8.1719],[128.781,-8.1641],[128.7765,-8.1635],[128.7689,-8.1666],[128.7615,-8.1659]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[127.7353,-8.2138],[127.7409,-8.21],[127.7449,-8.2054],[127.7483,-8.1935],[127.7451,-8.1839],[127.74,-8.1784],[127.7246,-8.1723],[127.7151,-8.1653],[127.7008,-8.1615],[127.6938,-8.1562],[127.686,-8.1541],[127.6816,-8.1545],[127.6632,-8.1617],[127.6532,-8.1707],[127.6401,-8.1764],[127.6238,-8.1921],[127.6001,-8.2068],[127.5943,-8.212],[127.5936,-8.2172],[127.611,-8.2235],[127.6225,-8.2246],[127.6238,-8.2276],[127.6239,-8.2368],[127.6299,-8.2395],[127.6434,-8.2376],[127.6511,-8.2386],[127.6597,-8.2365],[127.6672,-8.2321],[127.6764,-8.2291],[127.6855,-8.2229],[127.6926,-8.2215],[127.7114,-8.2144],[127.7202,-8.2186],[127.7296,-8.2171],[127.7353,-8.2138]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[127.7911,-8.1067],[127.7821,-8.1048],[127.7689,-8.1084],[127.7596,-8.1088],[127.7546,-8.1104],[127.7513,-8.1149],[127.758,-8.1254],[127.7687,-8.131],[127.7753,-8.1405],[127.7762,-8.1456],[127.777,-8.1667],[127.7803,-8.1784],[127.7858,-8.1863],[127.7998,-8.1965],[127.814,-8.2032],[127.8291,-8.2052],[127.8402,-8.2074],[127.8499,-8.2143],[127.8573,-8.2181],[127.867,-8.2203],[127.8841,-8.2198],[127.8975,-8.2164],[127.9116,-8.2185],[127.9307,-8.2197],[127.9399,-8.2238],[127.9485,-8.2328],[127.9503,-8.2402],[127.9496,-8.2442],[127.9548,-8.25],[127.9656,-8.2504],[127.9818,-8.2534],[127.99,-8.2585],[127.9983,-8.2616],[128.0301,-8.2626],[128.0378,-8.2618],[128.0431,-8.2558],[128.0425,-8.2464],[128.0437,-8.2327],[128.0478,-8.2265],[128.0554,-8.2216],[128.0615,-8.2191],[128.0642,-8.2141],[128.0635,-8.2023],[128.0655,-8.1989],[128.0719,-8.1937],[128.0922,-8.1846],[128.1094,-8.1753],[128.1205,-8.1661],[128.1211,-8.1627],[128.1184,-8.1558],[128.0988,-8.1422],[128.0868,-8.1398],[128.0786,-8.1401],[128.0654,-8.1456],[128.0602,-8.1466],[128.0317,-8.1477],[128.0138,-8.1469],[127.9923,-8.1423],[127.9682,-8.1443],[127.9578,-8.147],[127.9444,-8.1445],[127.9342,-8.1458],[127.9287,-8.1439],[127.92,-8.1326],[127.9163,-8.1307],[127.8975,-8.1313],[127.8847,-8.1281],[127.8717,-8.1201],[127.8672,-8.1192],[127.855,-8.1209],[127.8441,-8.1201],[127.8267,-8.1125],[127.8135,-8.1114],[127.8038,-8.1053],[127.7951,-8.1074],[127.7911,-8.1067]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[129.8276,-8.2119],[129.8319,-8.2072],[129.8443,-8.1974],[129.8489,-8.1833],[129.857,-8.1755],[129.8711,-8.1547],[129.875,-8.1511],[129.8858,-8.145],[129.8917,-8.1402],[129.9009,-8.1376],[129.9123,-8.1279],[129.9192,-8.1149],[129.9203,-8.1083],[129.9169,-8.0979],[129.914,-8.0974],[129.9053,-8.1001],[129.8889,-8.1178],[129.8817,-8.1223],[129.8697,-8.1256],[129.8574,-8.1315],[129.8496,-8.1378],[129.846,-8.1444],[129.842,-8.1452],[129.8289,-8.16],[129.8265,-8.1664],[129.8251,-8.1802],[129.8234,-8.1852],[129.8165,-8.1949],[129.8056,-8.2044],[129.8044,-8.212],[129.8084,-8.2169],[129.813,-8.214],[129.8215,-8.2162],[129.8276,-8.2119]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[125.749,-7.9669],[125.7427,-7.9639],[125.7427,-7.9711],[125.741,-7.9751],[125.744,-7.9776],[125.7487,-7.9757],[125.7444,-7.9709],[125.749,-7.9669]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[125.742,-7.9794],[125.7374,-7.9738],[125.7318,-7.9632],[125.7258,-7.9652],[125.7238,-7.9694],[125.7244,-7.975],[125.7194,-7.9767],[125.7247,-7.983],[125.7257,-7.9957],[125.7227,-8.0043],[125.7244,-8.0146],[125.7264,-8.0186],[125.7272,-8.0332],[125.7257,-8.0452],[125.7286,-8.0553],[125.731,-8.0549],[125.7365,-8.0444],[125.739,-8.0428],[125.7426,-8.0348],[125.7495,-8.0231],[125.7536,-8.021],[125.7547,-8.015],[125.7579,-8.0126],[125.755,-8.0036],[125.7571,-7.9945],[125.7532,-7.9891],[125.7458,-7.9863],[125.742,-7.9794]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[127.1865,-7.9528],[127.182,-7.9543],[127.1806,-7.9578],[127.176,-7.9608],[127.174,-7.9646],[127.1677,-7.9667],[127.1632,-7.9703],[127.1604,-7.9766],[127.1641,-7.9842],[127.1655,-7.9951],[127.1693,-8.0054],[127.1647,-8.0147],[127.1651,-8.0185],[127.1716,-8.0224],[127.1859,-8.026],[127.1929,-8.0228],[127.2025,-8.023],[127.2092,-8.0255],[127.2214,-8.0227],[127.2248,-8.0249],[127.2287,-8.0224],[127.2281,-8.0142],[127.2207,-8.0082],[127.2187,-8.0011],[127.2201,-7.976],[127.2183,-7.9703],[127.2153,-7.9677],[127.2158,-7.9602],[127.2121,-7.9545],[127.2061,-7.9559],[127.1995,-7.9535],[127.1908,-7.9544],[127.1865,-7.9528]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[125.7407,-7.9491],[125.7432,-7.9467],[125.7446,-7.9353],[125.7441,-7.9239],[125.7396,-7.9243],[125.7348,-7.9347],[125.7333,-7.943],[125.736,-7.949],[125.7407,-7.9491]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[129.5381,-7.8687],[129.5307,-7.8666],[129.5262,-7.8576],[129.5205,-7.8532],[129.513,-7.8503],[129.5063,-7.8557],[129.5061,-7.8588],[129.5117,-7.87],[129.5167,-7.8708],[129.5197,-7.8786],[129.5137,-7.8842],[129.5122,-7.8889],[129.5159,-7.9056],[129.5105,-7.9226],[129.5102,-7.93],[129.5117,-7.9378],[129.5164,-7.9466],[129.5271,-7.9561],[129.5324,-7.9594],[129.5389,-7.9597],[129.5448,-7.9539],[129.5594,-7.9358],[129.5611,-7.9248],[129.5675,-7.916],[129.5641,-7.9091],[129.5629,-7.9032],[129.5604,-7.9007],[129.551,-7.8978],[129.546,-7.893],[129.545,-7.8888],[129.5493,-7.8825],[129.5427,-7.8709],[129.5381,-7.8687]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[129.6869,-7.7963],[129.6837,-7.794],[129.6764,-7.7922],[129.6647,-7.7933],[129.6421,-7.7993],[129.6311,-7.8045],[129.62,-7.8073],[129.6113,-7.8125],[129.5917,-7.8283],[129.5856,-7.8358],[129.582,-7.8458],[129.5835,-7.8564],[129.5898,-7.8709],[129.5897,-7.8742],[129.5834,-7.8799],[129.5804,-7.885],[129.5799,-7.8936],[129.5772,-7.8995],[129.5769,-7.9048],[129.5806,-7.912],[129.5857,-7.9147],[129.5958,-7.9176],[129.5979,-7.9194],[129.6011,-7.9362],[129.6064,-7.9382],[129.6115,-7.9431],[129.6189,-7.9532],[129.6198,-7.9564],[129.6327,-7.9724],[129.6373,-7.9747],[129.6444,-7.9752],[129.6483,-7.9784],[129.6519,-7.9859],[129.6618,-8.0005],[129.6636,-8.0065],[129.6695,-8.0168],[129.6849,-8.0323],[129.6951,-8.0361],[129.7019,-8.0449],[129.7131,-8.0474],[129.7204,-8.0525],[129.7295,-8.0549],[129.7422,-8.0551],[129.7515,-8.0601],[129.7552,-8.0602],[129.7651,-8.0555],[129.7743,-8.0522],[129.7882,-8.05],[129.7937,-8.0398],[129.7936,-8.0337],[129.7978,-8.0184],[129.8047,-8.0078],[129.8101,-8.0033],[129.8149,-7.9954],[129.8168,-7.9886],[129.817,-7.9806],[129.8228,-7.9685],[129.8298,-7.9617],[129.8381,-7.9496],[129.8472,-7.9456],[129.8565,-7.9323],[129.8614,-7.9231],[129.8629,-7.917],[129.8622,-7.908],[129.8591,-7.9],[129.8542,-7.9014],[129.8471,-7.8955],[129.8411,-7.8923],[129.8382,-7.8789],[129.8384,-7.8695],[129.837,-7.862],[129.8428,-7.8555],[129.8481,-7.8555],[129.853,-7.8499],[129.8496,-7.8454],[129.8409,-7.8448],[129.8325,-7.8363],[129.822,-7.8304],[129.814,-7.8225],[129.8021,-7.8196],[129.7953,-7.8197],[129.7891,-7.8182],[129.7803,-7.8181],[129.7754,-7.8195],[129.7637,-7.8173],[129.7456,-7.8107],[129.7299,-7.8027],[129.7191,-7.7996],[129.701,-7.7962],[129.6869,-7.7963]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[130.0452,-7.7652],[130.0341,-7.7614],[130.0284,-7.7722],[130.0243,-7.7752],[130.0308,-7.7788],[130.0348,-7.7787],[130.0471,-7.7746],[130.0541,-7.7762],[130.0596,-7.7847],[130.0643,-7.7877],[130.0705,-7.7961],[130.0739,-7.799],[130.083,-7.7954],[130.088,-7.7794],[130.0886,-7.7731],[130.0669,-7.7619],[130.059,-7.7624],[130.0499,-7.7655],[130.0452,-7.7652]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[130.0151,-7.7356],[130.0115,-7.726],[130.0092,-7.7166],[129.9966,-7.7027],[129.9901,-7.7033],[129.9841,-7.7076],[129.9795,-7.7144],[129.9834,-7.722],[129.9838,-7.7337],[129.9862,-7.7376],[129.9961,-7.7379],[129.9964,-7.7475],[130.0063,-7.7526],[130.0171,-7.7534],[130.0215,-7.7499],[130.0151,-7.7356]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[125.9281,-7.6595],[125.9097,-7.6697],[125.9091,-7.674],[125.9139,-7.678],[125.9202,-7.6779],[125.9305,-7.6734],[125.9334,-7.6704],[125.9327,-7.6654],[125.9281,-7.6595]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[127.4372,-7.6401],[127.4319,-7.6382],[127.4344,-7.6452],[127.443,-7.6434],[127.4428,-7.6384],[127.4372,-7.6401]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[126.6412,-7.5731],[126.6423,-7.565],[126.638,-7.5595],[126.6276,-7.5573],[126.6223,-7.5575],[126.6161,-7.5599],[126.6116,-7.5642],[126.6051,-7.567],[126.5999,-7.5734],[126.5943,-7.5715],[126.5876,-7.5726],[126.5834,-7.5756],[126.578,-7.5754],[126.5746,-7.5727],[126.567,-7.5726],[126.5584,-7.5762],[126.5505,-7.5734],[126.5431,-7.5729],[126.5379,-7.5771],[126.534,-7.5772],[126.5271,-7.5841],[126.5206,-7.5856],[126.5168,-7.5847],[126.5121,-7.5886],[126.5066,-7.5905],[126.5016,-7.5863],[126.4962,-7.5901],[126.487,-7.5898],[126.4817,-7.588],[126.473,-7.5936],[126.4712,-7.6027],[126.465,-7.6145],[126.4541,-7.6244],[126.4405,-7.6306],[126.432,-7.6304],[126.4193,-7.6319],[126.4159,-7.6235],[126.4111,-7.6244],[126.4044,-7.6298],[126.3997,-7.6364],[126.3962,-7.6372],[126.3816,-7.6367],[126.3805,-7.6389],[126.3812,-7.655],[126.3757,-7.6633],[126.3623,-7.6748],[126.3551,-7.6742],[126.3492,-7.676],[126.3438,-7.6809],[126.3403,-7.6816],[126.3305,-7.6941],[126.3205,-7.6952],[126.316,-7.6935],[126.299,-7.6928],[126.2921,-7.6953],[126.2864,-7.6953],[126.2798,-7.6898],[126.2682,-7.6894],[126.2624,-7.6923],[126.2516,-7.6864],[126.2464,-7.6888],[126.2424,-7.687],[126.2368,-7.692],[126.2269,-7.6976],[126.2209,-7.7043],[126.2051,-7.7132],[126.1944,-7.7248],[126.1881,-7.7275],[126.177,-7.727],[126.1701,-7.7229],[126.1604,-7.7211],[126.1544,-7.722],[126.1508,-7.725],[126.1399,-7.7211],[126.1312,-7.7169],[126.1277,-7.7178],[126.1217,-7.7156],[126.1198,-7.7119],[126.1091,-7.711],[126.1067,-7.7071],[126.0983,-7.7079],[126.0972,-7.7052],[126.0906,-7.7028],[126.0832,-7.7078],[126.0673,-7.7049],[126.0644,-7.6991],[126.0579,-7.6953],[126.0469,-7.6932],[126.0352,-7.698],[126.0311,-7.6934],[126.0261,-7.6927],[126.0229,-7.6818],[126.0158,-7.6742],[126.0107,-7.6796],[126.0034,-7.6816],[125.9967,-7.6764],[125.9926,-7.6658],[125.9884,-7.6581],[125.9749,-7.6535],[125.9642,-7.6616],[125.9559,-7.6641],[125.9518,-7.6619],[125.9478,-7.6631],[125.9435,-7.6679],[125.9349,-7.681],[125.9353,-7.6908],[125.9321,-7.6949],[125.9315,-7.6997],[125.9259,-7.7089],[125.9219,-7.7178],[125.9176,-7.7225],[125.9172,-7.7263],[125.9111,-7.7353],[125.9148,-7.738],[125.9146,-7.7442],[125.897,-7.7492],[125.8904,-7.7561],[125.8793,-7.7602],[125.8739,-7.7643],[125.8634,-7.7646],[125.8609,-7.7738],[125.8576,-7.7776],[125.8591,-7.7806],[125.865,-7.7833],[125.8707,-7.7889],[125.8742,-7.7952],[125.8728,-7.8034],[125.8706,-7.8061],[125.87,-7.8127],[125.8628,-7.8141],[125.8591,-7.819],[125.8557,-7.8194],[125.8418,-7.8332],[125.8378,-7.8331],[125.8323,-7.8393],[125.8265,-7.8424],[125.8273,-7.8504],[125.8221,-7.8521],[125.8151,-7.8488],[125.8093,-7.8534],[125.8041,-7.8598],[125.8098,-7.8696],[125.8107,-7.8754],[125.8141,-7.8793],[125.813,-7.8834],[125.8161,-7.89],[125.8155,-7.8953],[125.8229,-7.9026],[125.8237,-7.914],[125.8207,-7.9197],[125.8191,-7.9395],[125.8168,-7.9498],[125.8072,-7.9671],[125.8003,-7.9766],[125.7882,-7.9868],[125.7857,-7.9934],[125.7834,-8.0041],[125.7923,-8.0138],[125.8008,-8.0116],[125.8019,-8.002],[125.8062,-7.9964],[125.8123,-7.9916],[125.8239,-7.9892],[125.8363,-7.9831],[125.8453,-7.9822],[125.852,-7.9761],[125.8573,-7.9769],[125.8645,-7.9745],[125.8665,-7.9672],[125.8696,-7.9624],[125.8806,-7.9533],[125.882,-7.9504],[125.8948,-7.9462],[125.9021,-7.9457],[125.9068,-7.941],[125.9221,-7.9405],[125.9242,-7.9342],[125.9316,-7.9281],[125.9333,-7.9238],[125.939,-7.9215],[125.9415,-7.9162],[125.945,-7.9141],[125.9515,-7.9139],[125.9527,-7.9167],[125.9586,-7.9153],[125.967,-7.9184],[125.9804,-7.9186],[125.9838,-7.9125],[125.9881,-7.9087],[125.9952,-7.9064],[125.9993,-7.9067],[126.0117,-7.9019],[126.0205,-7.9018],[126.0254,-7.9001],[126.0283,-7.8963],[126.0402,-7.8948],[126.0559,-7.8917],[126.0624,-7.8885],[126.0704,-7.8879],[126.0736,-7.8897],[126.0865,-7.8889],[126.0999,-7.8921],[126.1041,-7.8948],[126.1242,-7.8936],[126.1271,-7.8917],[126.1329,-7.8925],[126.142,-7.8999],[126.1498,-7.9001],[126.1656,-7.9123],[126.1671,-7.9174],[126.1738,-7.926],[126.1849,-7.9259],[126.19,-7.927],[126.1954,-7.9258],[126.2032,-7.9262],[126.2176,-7.9288],[126.2253,-7.9292],[126.2363,-7.9267],[126.2449,-7.9228],[126.2519,-7.9211],[126.2632,-7.9215],[126.2742,-7.919],[126.2875,-7.9179],[126.2945,-7.9231],[126.3081,-7.9193],[126.3121,-7.9167],[126.3222,-7.9168],[126.3337,-7.915],[126.3474,-7.9237],[126.3575,-7.9255],[126.3687,-7.9345],[126.3748,-7.9348],[126.3833,-7.9327],[126.3896,-7.9363],[126.3966,-7.9351],[126.406,-7.9289],[126.4224,-7.9317],[126.4254,-7.9308],[126.4317,-7.9379],[126.4345,-7.9389],[126.4439,-7.9479],[126.4603,-7.9655],[126.4633,-7.9703],[126.4681,-7.9743],[126.4778,-7.9701],[126.4847,-7.959],[126.494,-7.946],[126.4975,-7.936],[126.5028,-7.9268],[126.5014,-7.9211],[126.5067,-7.9178],[126.5018,-7.9057],[126.5061,-7.897],[126.5111,-7.89],[126.5167,-7.8855],[126.5249,-7.8581],[126.5276,-7.8557],[126.5406,-7.8516],[126.549,-7.8344],[126.5526,-7.824],[126.5646,-7.8172],[126.5725,-7.814],[126.5825,-7.8135],[126.5851,-7.8081],[126.5882,-7.806],[126.597,-7.8074],[126.6018,-7.7997],[126.608,-7.793],[126.6192,-7.7916],[126.6233,-7.7884],[126.6262,-7.7831],[126.6313,-7.7832],[126.6419,-7.7788],[126.6487,-7.7781],[126.6547,-7.7755],[126.6647,-7.778],[126.6694,-7.772],[126.6769,-7.7673],[126.6806,-7.7629],[126.686,-7.7627],[126.6964,-7.7564],[126.7,-7.7514],[126.706,-7.7527],[126.7116,-7.7517],[126.7154,-7.7469],[126.7241,-7.7419],[126.7371,-7.7458],[126.7492,-7.7437],[126.7558,-7.7456],[126.7584,-7.749],[126.7674,-7.7495],[126.7865,-7.7474],[126.7926,-7.7456],[126.804,-7.7452],[126.8188,-7.7555],[126.8282,-7.7527],[126.8331,-7.7458],[126.8435,-7.737],[126.8375,-7.7199],[126.8353,-7.7168],[126.8296,-7.6998],[126.8237,-7.6883],[126.8115,-7.6823],[126.8116,-7.6756],[126.8189,-7.662],[126.8162,-7.6574],[126.8116,-7.6563],[126.8025,-7.661],[126.7942,-7.6601],[126.7854,-7.6626],[126.7793,-7.6593],[126.7725,-7.6594],[126.764,-7.6575],[126.7535,-7.657],[126.749,-7.6601],[126.7407,-7.6598],[126.7372,-7.6637],[126.731,-7.6665],[126.724,-7.6642],[126.7228,-7.6594],[126.7181,-7.654],[126.7172,-7.6457],[126.7103,-7.6405],[126.7033,-7.6421],[126.6981,-7.6387],[126.695,-7.6339],[126.693,-7.6243],[126.6865,-7.6202],[126.6747,-7.622],[126.6694,-7.6197],[126.6675,-7.6147],[126.6551,-7.6108],[126.6531,-7.6075],[126.6439,-7.6057],[126.6387,-7.5977],[126.6367,-7.5838],[126.6405,-7.5779],[126.6412,-7.5731]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[127.5905,-7.5524],[127.5872,-7.5526],[127.5833,-7.5595],[127.5829,-7.5632],[127.5945,-7.5886],[127.5967,-7.5949],[127.5963,-7.5996],[127.5991,-7.6079],[127.5977,-7.6155],[127.5955,-7.6197],[127.5993,-7.6287],[127.6027,-7.6269],[127.6076,-7.6209],[127.6191,-7.6125],[127.6147,-7.6085],[127.6189,-7.6051],[127.619,-7.6002],[127.6134,-7.5974],[127.6093,-7.6014],[127.6054,-7.5969],[127.6055,-7.5854],[127.6004,-7.5776],[127.5951,-7.565],[127.5942,-7.5565],[127.5905,-7.5524]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[129.6963,-7.5597],[129.6865,-7.5574],[129.6763,-7.5474],[129.6689,-7.5358],[129.6643,-7.5322],[129.6596,-7.5333],[129.6573,-7.5413],[129.6519,-7.5518],[129.653,-7.5578],[129.6587,-7.5634],[129.6654,-7.5664],[129.6778,-7.5699],[129.6854,-7.5796],[129.6936,-7.5746],[129.7027,-7.5744],[129.7098,-7.5783],[129.7158,-7.5671],[129.7207,-7.5611],[129.7177,-7.5553],[129.7131,-7.5533],[129.709,-7.5539],[129.703,-7.5592],[129.6963,-7.5597]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[127.5418,-7.5244],[127.5346,-7.5298],[127.5336,-7.5403],[127.5385,-7.5427],[127.543,-7.5389],[127.5405,-7.5284],[127.5418,-7.5244]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[127.295,-7.5096],[127.2848,-7.5127],[127.2777,-7.5189],[127.28,-7.5221],[127.2921,-7.5305],[127.2974,-7.5303],[127.3028,-7.5166],[127.3019,-7.5114],[127.295,-7.5096]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[127.381,-7.4998],[127.3763,-7.4972],[127.3715,-7.5008],[127.3673,-7.5163],[127.3634,-7.5228],[127.3617,-7.5308],[127.3634,-7.5391],[127.364,-7.5493],[127.3665,-7.5551],[127.3659,-7.5634],[127.3672,-7.5737],[127.3769,-7.5859],[127.3773,-7.5932],[127.373,-7.5969],[127.3692,-7.5963],[127.3563,-7.5989],[127.3489,-7.6017],[127.3431,-7.6071],[127.3409,-7.6145],[127.3362,-7.6151],[127.3346,-7.6193],[127.333,-7.6375],[127.3393,-7.6421],[127.3472,-7.6572],[127.3616,-7.6586],[127.3753,-7.664],[127.3824,-7.6594],[127.3876,-7.6598],[127.393,-7.6581],[127.4023,-7.6499],[127.4061,-7.6444],[127.4079,-7.6381],[127.4116,-7.6325],[127.4097,-7.6278],[127.4112,-7.6103],[127.4153,-7.6053],[127.4198,-7.6086],[127.4403,-7.606],[127.4429,-7.6084],[127.447,-7.6045],[127.4596,-7.5998],[127.4643,-7.5971],[127.4696,-7.5971],[127.4747,-7.59],[127.4833,-7.5823],[127.4827,-7.5779],[127.4853,-7.5716],[127.4847,-7.5678],[127.4892,-7.56],[127.4878,-7.5533],[127.4845,-7.5463],[127.4857,-7.5341],[127.4883,-7.5289],[127.4835,-7.5272],[127.4795,-7.522],[127.4705,-7.5228],[127.4695,-7.5274],[127.4634,-7.5331],[127.4603,-7.5341],[127.451,-7.5305],[127.4452,-7.5295],[127.4401,-7.5263],[127.4322,-7.5169],[127.4209,-7.5172],[127.4152,-7.5111],[127.4132,-7.504],[127.4103,-7.5031],[127.4075,-7.5085],[127.4026,-7.5109],[127.4005,-7.5165],[127.3957,-7.5134],[127.3896,-7.5143],[127.3881,-7.5117],[127.3977,-7.5042],[127.3979,-7.5006],[127.3912,-7.4969],[127.381,-7.4998]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[128.5587,-7.3693],[128.5525,-7.3792],[128.5564,-7.3892],[128.5634,-7.3886],[128.5673,-7.3762],[128.5654,-7.3716],[128.5587,-7.3693]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[128.5653,-7.3094],[128.5691,-7.3052],[128.5679,-7.3004],[128.5619,-7.2961],[128.5591,-7.3003],[128.5539,-7.3127],[128.5582,-7.3247],[128.5624,-7.3228],[128.5622,-7.3161],[128.5653,-7.3094]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"LineString","coordinates":[[128.6166,-7.0707],[128.6143,-7.0683],[128.6046,-7.0655],[128.6,-7.0691],[128.592,-7.0712],[128.5892,-7.0696],[128.5806,-7.0769],[128.5762,-7.0824],[128.5666,-7.0916],[128.5429,-7.1114],[128.5376,-7.1171],[128.5262,-7.1272],[128.52,-7.1342],[128.517,-7.1409],[128.5179,-7.1481],[128.5216,-7.1542],[128.5326,-7.1664],[128.5374,-7.1693],[128.5437,-7.168],[128.549,-7.1639],[128.5534,-7.1637],[128.5578,-7.1683],[128.558,-7.1716],[128.5625,-7.1742],[128.5657,-7.1795],[128.5711,-7.1782],[128.5779,-7.1826],[128.5922,-7.1975],[128.6043,-7.2067],[128.6221,-7.2171],[128.6302,-7.2201],[128.6447,-7.2224],[128.6505,-7.2206],[128.6558,-7.2113],[128.6557,-7.2054],[128.6611,-7.1959],[128.6652,-7.193],[128.6665,-7.1889],[128.6715,-7.1847],[128.6771,-7.1767],[128.688,-7.1655],[128.6853,-7.1635],[128.6767,-7.1686],[128.6717,-7.1679],[128.6664,-7.1641],[128.6637,-7.1597],[128.6541,-7.1501],[128.6526,-7.1475],[128.6536,-7.1409],[128.6599,-7.1421],[128.6613,-7.1459],[128.669,-7.146],[128.673,-7.1429],[128.6817,-7.141],[128.6879,-7.1365],[128.6913,-7.1314],[128.6957,-7.1281],[128.6985,-7.1169],[128.696,-7.1136],[128.6962,-7.1084],[128.6863,-7.1024],[128.6765,-7.0997],[128.6755,-7.0974],[128.6614,-7.0959],[128.6582,-7.1003],[128.6499,-7.0977],[128.6433,-7.0864],[128.6366,-7.0804],[128.6319,-7.0795],[128.6255,-7.0732],[128.6183,-7.0726],[128.6166,-7.0707]]}},{"type":"Feature","properties":{"mhid":"1332:466","alt_name":"KABUPATEN BURU SELATAN","latitude":-3.52187,"longitude":126.59271,"sample_value":328},"geometry":{"type":"LineString","coordinates":[[127.185,-4.0263],[127.1958,-4.0228],[127.2147,-4.0138],[127.2309,-4.0048],[127.2534,-3.9913],[127.2646,-3.988],[127.2799,-3.9861],[127.2946,-3.9855],[127.3048,-3.9824],[127.3396,-3.9679],[127.3506,-3.9649],[127.3691,-3.957],[127.3798,-3.9415],[127.3803,-3.9294],[127.3764,-3.9196],[127.3589,-3.9014],[127.3371,-3.8866],[127.3137,-3.8841],[127.2996,-3.8837],[127.2601,-3.898],[127.233,-3.9099],[127.2235,-3.9205],[127.2122,-3.9299],[127.2025,-3.9447],[127.2005,-3.9544],[127.1977,-3.962],[127.1736,-3.9925],[127.1676,-4.0019],[127.1667,-4.0146],[127.1677,-4.0246],[127.1766,-4.0289],[127.185,-4.0263]]}},{"type":"Feature","properties":{"mhid":"1332:466","alt_name":"KABUPATEN BURU SELATAN","latitude":-3.52187,"longitude":126.59271,"sample_value":328},"geometry":{"type":"LineString","coordinates":[[125.9983,-3.2513],[126.0058,-3.242],[126.0046,-3.2327],[126.0058,-3.2246],[126.008,-3.223],[126.0068,-3.2165],[126.0017,-3.2236],[125.9984,-3.226],[125.9952,-3.2497],[125.9983,-3.2513]]}},{"type":"Feature","properties":{"mhid":"1332:466","alt_name":"KABUPATEN BURU SELATAN","latitude":-3.52187,"longitude":126.59271,"sample_value":328},"geometry":{"type":"LineString","coordinates":[[127.2387,-3.6336],[127.1959,-3.6093],[127.1456,-3.5931],[127.0386,-3.5604],[126.9792,-3.5425],[126.9019,-3.5188],[126.8162,-3.4999],[126.7266,-3.4801],[126.5842,-3.4508],[126.5098,-3.4355],[126.4622,-3.4118],[126.381,-3.3846],[126.3256,-3.3612],[126.2331,-3.3381],[126.2286,-3.3367],[126.18,-3.3196],[126.1331,-3.302],[126.1242,-3.2953],[126.1284,-3.282],[126.1326,-3.2647],[126.1326,-3.2598],[126.13,-3.2261],[126.1229,-3.2029],[126.1179,-3.182],[126.1126,-3.1572],[126.1215,-3.1564],[126.1256,-3.1522],[126.1203,-3.1467],[126.1181,-3.1409],[126.1119,-3.1363],[126.1094,-3.1201],[126.1012,-3.1129],[126.0927,-3.1118],[126.0887,-3.1139],[126.0871,-3.1199],[126.0822,-3.1283],[126.0743,-3.1325],[126.0648,-3.1428],[126.053,-3.1487],[126.0465,-3.1494],[126.0422,-3.1558],[126.0352,-3.1594],[126.0224,-3.1727],[126.0178,-3.173],[126.016,-3.1842],[126.0175,-3.1886],[126.0128,-3.1906],[126.0118,-3.1948],[126.0152,-3.1999],[126.0172,-3.2099],[126.0152,-3.2116],[126.0145,-3.2221],[126.0159,-3.2258],[126.0151,-3.2331],[126.0172,-3.2392],[126.0102,-3.2426],[126.0078,-3.2456],[126.0076,-3.2581],[126.0054,-3.2609],[126.0061,-3.2741],[126.01,-3.2773],[126.009,-3.2855],[126.0101,-3.2915],[126.006,-3.2993],[126.0124,-3.3052],[126.006,-3.3122],[126.0079,-3.3247],[126.0177,-3.3315],[126.0164,-3.3386],[126.0103,-3.3444],[126.0068,-3.3588],[126.0111,-3.369],[126.018,-3.3719],[126.022,-3.3838],[126.0359,-3.3962],[126.04,-3.398],[126.0383,-3.402],[126.0398,-3.4067],[126.0374,-3.4213],[126.0383,-3.4259],[126.045,-3.4371],[126.0452,-3.4414],[126.0544,-3.4511],[126.0545,-3.4539],[126.0599,-3.4586],[126.0645,-3.4602],[126.0736,-3.4778],[126.0833,-3.483],[126.0891,-3.4828],[126.1045,-3.4914],[126.1067,-3.4957],[126.1155,-3.4972],[126.1252,-3.5018],[126.1278,-3.5081],[126.1331,-3.5093],[126.1367,-3.5132],[126.1366,-3.5178],[126.1475,-3.523],[126.1512,-3.5259],[126.1534,-3.5347],[126.1609,-3.541],[126.1617,-3.5476],[126.164,-3.5519],[126.1658,-3.5653],[126.1637,-3.572],[126.1631,-3.5808],[126.1669,-3.5857],[126.1669,-3.5917],[126.1718,-3.5971],[126.1779,-3.6075],[126.183,-3.6142],[126.1935,-3.6196],[126.1967,-3.6241],[126.2095,-3.6216],[126.2222,-3.6182],[126.2289,-3.6181],[126.2354,-3.6207],[126.2419,-3.6267],[126.2522,-3.631],[126.2547,-3.635],[126.2649,-3.6416],[126.2692,-3.6512],[126.2764,-3.655],[126.2802,-3.6602],[126.2805,-3.6642],[126.2886,-3.6655],[126.2981,-3.6698],[126.3018,-3.6701],[126.3102,-3.6746],[126.3267,-3.6765],[126.3358,-3.68],[126.3424,-3.6857],[126.3462,-3.6915],[126.3492,-3.7018],[126.3532,-3.7034],[126.3599,-3.7033],[126.372,-3.7047],[126.3735,-3.7083],[126.3854,-3.7179],[126.3999,-3.7204],[126.4109,-3.7268],[126.4141,-3.7331],[126.426,-3.7384],[126.4318,-3.7396],[126.4377,-3.7438],[126.4432,-3.7501],[126.4499,-3.7511],[126.452,-3.747],[126.4554,-3.7477],[126.4554,-3.7575],[126.4666,-3.7614],[126.4705,-3.765],[126.4843,-3.7664],[126.4869,-3.7722],[126.4899,-3.7705],[126.4958,-3.7741],[126.4977,-3.7791],[126.5059,-3.7817],[126.5133,-3.7792],[126.5183,-3.7831],[126.5217,-3.782],[126.5224,-3.7889],[126.5152,-3.7915],[126.5148,-3.795],[126.5241,-3.7959],[126.5316,-3.7953],[126.5363,-3.7925],[126.5528,-3.7906],[126.5585,-3.7937],[126.5611,-3.7923],[126.5662,-3.7967],[126.587,-3.8044],[126.5884,-3.8087],[126.5932,-3.8118],[126.5974,-3.8084],[126.6047,-3.8132],[126.6051,-3.8194],[126.6097,-3.821],[126.6129,-3.817],[126.6187,-3.8221],[126.6241,-3.8231],[126.6339,-3.8213],[126.639,-3.8233],[126.6444,-3.8306],[126.65,-3.832],[126.6585,-3.8397],[126.665,-3.8408],[126.6696,-3.8434],[126.6724,-3.8486],[126.6741,-3.8556],[126.6873,-3.8614],[126.6944,-3.8617],[126.705,-3.8551],[126.7063,-3.8511],[126.7217,-3.8457],[126.7284,-3.8461],[126.7357,-3.8502],[126.7356,-3.8559],[126.7382,-3.8571],[126.7439,-3.8494],[126.7755,-3.8261],[126.7869,-3.8183],[126.8003,-3.8102],[126.8118,-3.8043],[126.8173,-3.8038],[126.8377,-3.7951],[126.848,-3.7899],[126.8533,-3.79],[126.8652,-3.785],[126.8736,-3.7841],[126.8846,-3.7903],[126.8921,-3.7897],[126.8982,-3.7836],[126.9031,-3.7805],[126.921,-3.7745],[126.9235,-3.7766],[126.9364,-3.7736],[126.9441,-3.77],[126.9477,-3.7721],[126.9552,-3.7705],[126.9594,-3.7627],[126.9582,-3.7576],[126.9731,-3.745],[126.9839,-3.7443],[126.9936,-3.7308],[126.9952,-3.7265],[126.9993,-3.7229],[127.0155,-3.7131],[127.0252,-3.706],[127.0503,-3.6895],[127.0658,-3.6856],[127.0711,-3.683],[127.0902,-3.6826],[127.0951,-3.6833],[127.1002,-3.6815],[127.1141,-3.6673],[127.1237,-3.6637],[127.1307,-3.6641],[127.1363,-3.6612],[127.1448,-3.6619],[127.1477,-3.6653],[127.162,-3.6666],[127.1663,-3.67],[127.1749,-3.6741],[127.1871,-3.6742],[127.1899,-3.6763],[127.1996,-3.6735],[127.2034,-3.6688],[127.2098,-3.6645],[127.2151,-3.6632],[127.2185,-3.66],[127.2266,-3.6469],[127.2333,-3.6435],[127.2343,-3.6369],[127.2387,-3.6336]]}},{"type":"Feature","properties":{"mhid":"1332:467","alt_name":"KOTA AMBON","latitude":-3.7,"longitude":128.18333,"sample_value":857},"geometry":{"type":"LineString","coordinates":[[128.2717,-3.6185],[128.2681,-3.616],[128.2679,-3.6102],[128.2703,-3.5994],[128.2633,-3.5944],[128.2501,-3.582],[128.2473,-3.578],[128.2386,-3.573],[128.2351,-3.5754],[128.232,-3.5816],[128.2259,-3.5782],[128.2186,-3.5794],[128.2156,-3.5867],[128.2126,-3.5865],[128.2079,-3.5905],[128.2066,-3.5994],[128.2017,-3.5988],[128.1949,-3.6071],[128.193,-3.6144],[128.1954,-3.6196],[128.1934,-3.6247],[128.1888,-3.6293],[128.1859,-3.6287],[128.1834,-3.6233],[128.1714,-3.6239],[128.1667,-3.623],[128.1531,-3.6236],[128.1491,-3.6248],[128.1398,-3.6248],[128.1359,-3.6294],[128.128,-3.6328],[128.123,-3.631],[128.1182,-3.6338],[128.1075,-3.6352],[128.1041,-3.6319],[128.0962,-3.6331],[128.0865,-3.6392],[128.08,-3.6412],[128.0785,-3.6447],[128.0732,-3.6486],[128.0684,-3.6485],[128.0618,-3.6511],[128.0606,-3.648],[128.0537,-3.6466],[128.0495,-3.6427],[128.0443,-3.6434],[128.0394,-3.6484],[128.0389,-3.6531],[128.0339,-3.662],[128.0284,-3.6658],[128.0328,-3.6738],[128.0322,-3.6776],[128.0359,-3.6863],[128.045,-3.6939],[128.0505,-3.6936],[128.0554,-3.697],[128.0614,-3.6979],[128.0704,-3.7067],[128.0774,-3.7063],[128.0828,-3.7127],[128.0859,-3.7156],[128.0876,-3.7215],[128.0923,-3.7171],[128.0996,-3.7137],[128.1061,-3.6961],[128.1173,-3.686],[128.1229,-3.6863],[128.1399,-3.6769],[128.1424,-3.6742],[128.1573,-3.6665],[128.1666,-3.6658],[128.1778,-3.6611],[128.1859,-3.6634],[128.1952,-3.6611],[128.1996,-3.6582],[128.1989,-3.6536],[128.1945,-3.6494],[128.1931,-3.6448],[128.1947,-3.6413],[128.2044,-3.6379],[128.2094,-3.634],[128.2151,-3.6332],[128.2228,-3.6341],[128.2309,-3.6307],[128.2325,-3.6281],[128.2394,-3.6302],[128.245,-3.6384],[128.2337,-3.6451],[128.2322,-3.65],[128.2244,-3.6551],[128.216,-3.6544],[128.21,-3.6577],[128.2032,-3.6635],[128.2001,-3.6634],[128.1945,-3.6721],[128.1904,-3.6741],[128.1864,-3.6835],[128.179,-3.6925],[128.1748,-3.695],[128.172,-3.7017],[128.1687,-3.7036],[128.1636,-3.7011],[128.1573,-3.7049],[128.15,-3.7145],[128.1472,-3.7221],[128.1369,-3.7337],[128.1332,-3.742],[128.1302,-3.7457],[128.1318,-3.7521],[128.1299,-3.756],[128.1231,-3.763],[128.109,-3.7687],[128.1048,-3.7714],[128.0914,-3.7861],[128.0896,-3.7925],[128.0968,-3.7936],[128.1083,-3.7862],[128.1133,-3.7848],[128.116,-3.7815],[128.1228,-3.78],[128.1277,-3.7769],[128.1369,-3.7741],[128.1491,-3.7724],[128.1527,-3.77],[128.1521,-3.7624],[128.1561,-3.7522],[128.16,-3.7496],[128.1694,-3.7499],[128.1827,-3.7442],[128.1866,-3.7469],[128.1909,-3.7454],[128.1937,-3.7507],[128.2116,-3.7485],[128.2153,-3.7463],[128.2199,-3.7486],[128.2321,-3.7463],[128.2329,-3.7442],[128.2416,-3.7428],[128.2434,-3.7384],[128.2513,-3.7372],[128.2543,-3.7327],[128.2648,-3.7299],[128.2638,-3.7262],[128.2666,-3.7158],[128.2723,-3.7118],[128.2701,-3.7058],[128.2755,-3.7012],[128.2889,-3.6965],[128.2987,-3.6965],[128.3012,-3.6907],[128.3014,-3.6799],[128.2988,-3.6704],[128.2962,-3.665],[128.2851,-3.6524],[128.2748,-3.6445],[128.2669,-3.641],[128.2622,-3.6337],[128.257,-3.6292],[128.2614,-3.6186],[128.2717,-3.6185]]}},{"type":"Feature","properties":{"mhid":"1332:468","alt_name":"KOTA TUAL","latitude":-5.64301,"longitude":132.74934,"sample_value":679},"geometry":{"type":"LineString","coordinates":[[132.1897,-5.7681],[132.1971,-5.7627],[132.2005,-5.7583],[132.2012,-5.7505],[132.2004,-5.7309],[132.2006,-5.7195],[132.1963,-5.7174],[132.1905,-5.7176],[132.1768,-5.7258],[132.171,-5.7338],[132.1707,-5.7403],[132.1747,-5.7565],[132.1828,-5.7674],[132.1897,-5.7681]]}},{"type":"Feature","properties":{"mhid":"1332:468","alt_name":"KOTA TUAL","latitude":-5.64301,"longitude":132.74934,"sample_value":679},"geometry":{"type":"LineString","coordinates":[[132.2705,-5.7115],[132.2753,-5.6933],[132.2709,-5.6948],[132.2672,-5.7029],[132.2666,-5.7113],[132.2705,-5.7115]]}},{"type":"Feature","properties":{"mhid":"1332:468","alt_name":"KOTA TUAL","latitude":-5.64301,"longitude":132.74934,"sample_value":679},"geometry":{"type":"LineString","coordinates":[[132.7536,-5.6646],[132.7509,-5.6689],[132.7525,-5.6736],[132.7571,-5.6773],[132.7618,-5.6694],[132.7583,-5.6643],[132.7536,-5.6646]]}},{"type":"Feature","properties":{"mhid":"1332:468","alt_name":"KOTA TUAL","latitude":-5.64301,"longitude":132.74934,"sample_value":679},"geometry":{"type":"LineString","coordinates":[[131.9234,-5.6507],[131.9262,-5.6448],[131.9232,-5.6371],[131.9229,-5.6311],[131.9203,-5.6276],[131.9163,-5.6285],[131.9117,-5.6388],[131.9132,-5.6446],[131.9177,-5.6539],[131.9212,-5.6545],[131.9234,-5.6507]]}},{"type":"Feature","properties":{"mhid":"1332:468","alt_name":"KOTA TUAL","latitude":-5.64301,"longitude":132.74934,"sample_value":679},"geometry":{"type":"LineString","coordinates":[[132.7256,-5.623],[132.7203,-5.6238],[132.7157,-5.6274],[132.7204,-5.6355],[132.7291,-5.6392],[132.735,-5.6464],[132.7377,-5.6425],[132.7288,-5.6336],[132.7254,-5.6313],[132.7256,-5.623]]}},{"type":"Feature","properties":{"mhid":"1332:468","alt_name":"KOTA TUAL","latitude":-5.64301,"longitude":132.74934,"sample_value":679},"geometry":{"type":"LineString","coordinates":[[132.2505,-5.6289],[132.2519,-5.627],[132.2476,-5.6202],[132.243,-5.6253],[132.2466,-5.6296],[132.2505,-5.6289]]}},{"type":"Feature","properties":{"mhid":"1332:468","alt_name":"KOTA TUAL","latitude":-5.64301,"longitude":132.74934,"sample_value":679},"geometry":{"type":"LineString","coordinates":[[132.3367,-5.6096],[132.3317,-5.6062],[132.3255,-5.6043],[132.3206,-5.6002],[132.3154,-5.6047],[132.3152,-5.6099],[132.3184,-5.6106],[132.3279,-5.6199],[132.3344,-5.6193],[132.337,-5.6159],[132.3367,-5.6096]]}},{"type":"Feature","properties":{"mhid":"1332:468","alt_name":"KOTA TUAL","latitude":-5.64301,"longitude":132.74934,"sample_value":679},"geometry":{"type":"LineString","coordinates":[[132.2775,-5.586],[132.2727,-5.5846],[132.2645,-5.5868],[132.2576,-5.585],[132.2558,-5.5894],[132.2613,-5.6024],[132.2666,-5.6044],[132.2768,-5.6],[132.2825,-5.6011],[132.286,-5.6051],[132.2836,-5.6103],[132.2863,-5.6193],[132.2871,-5.6313],[132.2864,-5.6371],[132.2903,-5.6495],[132.2932,-5.6559],[132.2955,-5.6568],[132.3007,-5.6513],[132.3072,-5.6482],[132.3119,-5.6415],[132.3194,-5.6344],[132.3204,-5.6294],[132.3126,-5.6144],[132.3104,-5.6118],[132.3024,-5.6179],[132.2997,-5.6154],[132.3039,-5.6104],[132.3039,-5.6068],[132.3076,-5.5961],[132.2998,-5.595],[132.2902,-5.5995],[132.2829,-5.5988],[132.2804,-5.595],[132.2775,-5.586]]}},{"type":"Feature","properties":{"mhid":"1332:468","alt_name":"KOTA TUAL","latitude":-5.64301,"longitude":132.74934,"sample_value":679},"geometry":{"type":"LineString","coordinates":[[132.6923,-5.5904],[132.6918,-5.5854],[132.6872,-5.5833],[132.68,-5.5871],[132.6798,-5.59],[132.6741,-5.5923],[132.6742,-5.6011],[132.679,-5.6028],[132.6839,-5.594],[132.6889,-5.5942],[132.6923,-5.5904]]}},{"type":"Feature","properties":{"mhid":"1332:468","alt_name":"KOTA TUAL","latitude":-5.64301,"longitude":132.74934,"sample_value":679},"geometry":{"type":"LineString","coordinates":[[132.7342,-5.5857],[132.7316,-5.5813],[132.7305,-5.5711],[132.7244,-5.5687],[132.7125,-5.5783],[132.7114,-5.5832],[132.7141,-5.5875],[132.7192,-5.5871],[132.7279,-5.5924],[132.7329,-5.5907],[132.7342,-5.5857]]}},{"type":"Feature","properties":{"mhid":"1332:468","alt_name":"KOTA TUAL","latitude":-5.64301,"longitude":132.74934,"sample_value":679},"geometry":{"type":"LineString","coordinates":[[131.9282,-5.5796],[131.9297,-5.5749],[131.9277,-5.569],[131.9197,-5.5702],[131.9176,-5.5772],[131.9231,-5.5825],[131.9282,-5.5796]]}},{"type":"Feature","properties":{"mhid":"1332:468","alt_name":"KOTA TUAL","latitude":-5.64301,"longitude":132.74934,"sample_value":679},"geometry":{"type":"LineString","coordinates":[[132.0121,-5.5903],[132.0127,-5.5853],[132.0073,-5.5656],[132.0024,-5.5653],[131.9985,-5.5745],[131.9936,-5.5821],[131.9923,-5.5894],[131.9931,-5.5955],[131.9966,-5.6001],[132.0089,-5.6023],[132.0121,-5.5903]]}},{"type":"Feature","properties":{"mhid":"1332:468","alt_name":"KOTA TUAL","latitude":-5.64301,"longitude":132.74934,"sample_value":679},"geometry":{"type":"LineString","coordinates":[[132.7565,-5.5529],[132.7534,-5.5523],[132.7514,-5.557],[132.7563,-5.558],[132.7565,-5.5529]]}},{"type":"Feature","properties":{"mhid":"1332:468","alt_name":"KOTA TUAL","latitude":-5.64301,"longitude":132.74934,"sample_value":679},"geometry":{"type":"LineString","coordinates":[[132.7408,-5.541],[132.7366,-5.5382],[132.7309,-5.5402],[132.7216,-5.5406],[132.7135,-5.5423],[132.7046,-5.5413],[132.6978,-5.5488],[132.6907,-5.5443],[132.6863,-5.5466],[132.6852,-5.5507],[132.6951,-5.5577],[132.6995,-5.5641],[132.7071,-5.565],[132.721,-5.5597],[132.7314,-5.5639],[132.7359,-5.5628],[132.7389,-5.5595],[132.7459,-5.5586],[132.7485,-5.5562],[132.7512,-5.5482],[132.7486,-5.5438],[132.7408,-5.541]]}},{"type":"Feature","properties":{"mhid":"1332:468","alt_name":"KOTA TUAL","latitude":-5.64301,"longitude":132.74934,"sample_value":679},"geometry":{"type":"LineString","coordinates":[[132.793,-5.5776],[132.7912,-5.5738],[132.7954,-5.556],[132.7982,-5.5538],[132.7985,-5.5434],[132.8007,-5.5309],[132.7947,-5.5283],[132.7881,-5.533],[132.7789,-5.5483],[132.7737,-5.5549],[132.7684,-5.5669],[132.762,-5.5751],[132.7529,-5.5833],[132.751,-5.5872],[132.7504,-5.5939],[132.7513,-5.6034],[132.7494,-5.6087],[132.7459,-5.612],[132.7416,-5.6116],[132.7432,-5.629],[132.7418,-5.6402],[132.7486,-5.6552],[132.7541,-5.6538],[132.7572,-5.6599],[132.7609,-5.6555],[132.7568,-5.6449],[132.7609,-5.6394],[132.7676,-5.6472],[132.7661,-5.6521],[132.7678,-5.6548],[132.761,-5.6578],[132.7567,-5.6616],[132.7634,-5.668],[132.7619,-5.6718],[132.7671,-5.683],[132.7727,-5.688],[132.7786,-5.6858],[132.7871,-5.6779],[132.7903,-5.6725],[132.7893,-5.6618],[132.7929,-5.653],[132.7969,-5.6539],[132.7945,-5.666],[132.7995,-5.6755],[132.7908,-5.6866],[132.791,-5.6902],[132.7961,-5.694],[132.7993,-5.694],[132.8142,-5.6827],[132.8149,-5.6758],[132.8114,-5.6665],[132.8099,-5.6539],[132.8074,-5.6466],[132.8006,-5.6339],[132.7998,-5.6252],[132.7972,-5.6149],[132.7983,-5.6079],[132.8019,-5.6032],[132.8062,-5.5859],[132.8166,-5.5537],[132.8163,-5.5497],[132.8094,-5.5537],[132.8058,-5.5594],[132.7996,-5.5732],[132.793,-5.5776]]}},{"type":"Feature","properties":{"mhid":"1332:468","alt_name":"KOTA TUAL","latitude":-5.64301,"longitude":132.74934,"sample_value":679},"geometry":{"type":"LineString","coordinates":[[132.3294,-5.5329],[132.3226,-5.5296],[132.3181,-5.5231],[132.3114,-5.5238],[132.3033,-5.5313],[132.3033,-5.5373],[132.3087,-5.5442],[132.313,-5.5469],[132.3168,-5.5534],[132.321,-5.5644],[132.317,-5.5686],[132.3221,-5.574],[132.3247,-5.5815],[132.3343,-5.5861],[132.3427,-5.5837],[132.357,-5.5777],[132.3597,-5.5672],[132.3624,-5.5621],[132.3707,-5.5556],[132.3782,-5.5551],[132.3792,-5.5377],[132.3763,-5.534],[132.3739,-5.543],[132.37,-5.5442],[132.3593,-5.5532],[132.3493,-5.5525],[132.344,-5.5486],[132.3427,-5.5375],[132.3434,-5.5331],[132.3294,-5.5329]]}},{"type":"Feature","properties":{"mhid":"1332:468","alt_name":"KOTA TUAL","latitude":-5.64301,"longitude":132.74934,"sample_value":679},"geometry":{"type":"LineString","coordinates":[[132.7339,-5.5175],[132.7425,-5.5099],[132.7413,-5.5038],[132.7367,-5.501],[132.7314,-5.5028],[132.7297,-5.5061],[132.7309,-5.519],[132.7339,-5.5175]]}},{"type":"Feature","properties":{"mhid":"1332:468","alt_name":"KOTA TUAL","latitude":-5.64301,"longitude":132.74934,"sample_value":679},"geometry":{"type":"LineString","coordinates":[[132.7525,-5.5148],[132.759,-5.5074],[132.7612,-5.4986],[132.7644,-5.4923],[132.7639,-5.4867],[132.7596,-5.4867],[132.7531,-5.4917],[132.7496,-5.497],[132.7449,-5.509],[132.7474,-5.5152],[132.7525,-5.5148]]}},{"type":"Feature","properties":{"mhid":"1332:468","alt_name":"KOTA TUAL","latitude":-5.64301,"longitude":132.74934,"sample_value":679},"geometry":{"type":"LineString","coordinates":[[132.0218,-5.3131],[132.0184,-5.3107],[132.0153,-5.3054],[132.0126,-5.305],[132.0067,-5.3091],[131.9979,-5.313],[131.9909,-5.3123],[131.981,-5.3246],[131.978,-5.3259],[131.9695,-5.3374],[131.966,-5.3548],[131.9619,-5.3652],[131.9604,-5.3729],[131.965,-5.3804],[131.9726,-5.3893],[131.9748,-5.3897],[131.9835,-5.3806],[131.9879,-5.3783],[131.9993,-5.3764],[132.0048,-5.3723],[132.0095,-5.3714],[132.0106,-5.3626],[132.0138,-5.354],[132.0207,-5.3418],[132.0231,-5.3243],[132.0218,-5.3131]]}},{"type":"Feature","properties":{"mhid":"1332:468","alt_name":"KOTA TUAL","latitude":-5.64301,"longitude":132.74934,"sample_value":679},"geometry":{"type":"LineString","coordinates":[[132.0259,-5.1678],[132.0247,-5.1586],[132.0227,-5.1587],[132.016,-5.172],[132.012,-5.1763],[132.0142,-5.1836],[132.0187,-5.1871],[132.0249,-5.1867],[132.0267,-5.1771],[132.0259,-5.1678]]}},{"type":"Feature","properties":{"mhid":"1332:469","alt_name":"KABUPATEN HALMAHERA BARAT","latitude":1.41709,"longitude":127.55264,"sample_value":874},"geometry":{"type":"LineString","coordinates":[[127.5475,0.8732],[127.5452,0.8707],[127.5491,0.8648],[127.5536,0.8649],[127.5475,0.8732]]}},{"type":"Feature","properties":{"mhid":"1332:469","alt_name":"KABUPATEN HALMAHERA BARAT","latitude":1.41709,"longitude":127.55264,"sample_value":874},"geometry":{"type":"LineString","coordinates":[[127.5243,0.8786],[127.5224,0.8831],[127.5172,0.8803],[127.5219,0.877],[127.5243,0.8786]]}},{"type":"Feature","properties":{"mhid":"1332:469","alt_name":"KABUPATEN HALMAHERA BARAT","latitude":1.41709,"longitude":127.55264,"sample_value":874},"geometry":{"type":"LineString","coordinates":[[127.5028,0.8831],[127.4978,0.8748],[127.4978,0.8689],[127.5002,0.866],[127.5044,0.8701],[127.5038,0.8755],[127.5068,0.8796],[127.5028,0.8831]]}},{"type":"Feature","properties":{"mhid":"1332:469","alt_name":"KABUPATEN HALMAHERA BARAT","latitude":1.41709,"longitude":127.55264,"sample_value":874},"geometry":{"type":"LineString","coordinates":[[127.4893,1.6733],[127.4855,1.6745],[127.481,1.6716],[127.4826,1.6671],[127.4797,1.6615],[127.4878,1.6565],[127.4879,1.6684],[127.4893,1.6733]]}},{"type":"Feature","properties":{"mhid":"1332:469","alt_name":"KABUPATEN HALMAHERA BARAT","latitude":1.41709,"longitude":127.55264,"sample_value":874},"geometry":{"type":"LineString","coordinates":[[127.5414,1.6839],[127.5344,1.6768],[127.5338,1.6737],[127.5456,1.6699],[127.547,1.6741],[127.5453,1.6794],[127.5414,1.6839]]}},{"type":"Feature","properties":{"mhid":"1332:469","alt_name":"KABUPATEN HALMAHERA BARAT","latitude":1.41709,"longitude":127.55264,"sample_value":874},"geometry":{"type":"LineString","coordinates":[[127.5254,1.7204],[127.5237,1.7132],[127.5182,1.705],[127.5151,1.696],[127.5119,1.695],[127.5117,1.6861],[127.5033,1.6789],[127.5011,1.6708],[127.504,1.6702],[127.5059,1.6765],[127.5115,1.6793],[127.5172,1.6799],[127.5223,1.6876],[127.5274,1.6838],[127.5328,1.6861],[127.5352,1.6893],[127.5366,1.7004],[127.5322,1.7091],[127.5326,1.7163],[127.5273,1.717],[127.5254,1.7204]]}},{"type":"Feature","properties":{"mhid":"1332:469","alt_name":"KABUPATEN HALMAHERA BARAT","latitude":1.41709,"longitude":127.55264,"sample_value":874},"geometry":{"type":"LineString","coordinates":[[127.7094,0.8212],[127.6945,0.8184],[127.6758,0.8308],[127.6654,0.8395],[127.6585,0.8485],[127.6444,0.8645],[127.6397,0.8717],[127.6325,0.8783],[127.6212,0.896],[127.6056,0.9158],[127.5949,0.967],[127.5982,0.9867],[127.6062,1.0067],[127.6184,1.0278],[127.6149,1.0278],[127.6096,1.0346],[127.6046,1.0487],[127.6023,1.062],[127.602,1.0704],[127.6037,1.073],[127.6102,1.0757],[127.6145,1.0824],[127.6107,1.0868],[127.6132,1.0915],[127.6088,1.0933],[127.6037,1.1076],[127.6104,1.1101],[127.6137,1.117],[127.6254,1.1164],[127.6259,1.1255],[127.6223,1.1369],[127.6199,1.1404],[127.6273,1.1532],[127.6274,1.1592],[127.633,1.1663],[127.6398,1.168],[127.6439,1.1711],[127.6437,1.1771],[127.6377,1.1826],[127.6398,1.1958],[127.6393,1.2015],[127.6362,1.208],[127.6372,1.2147],[127.6359,1.2198],[127.6286,1.23],[127.6241,1.2387],[127.6291,1.2451],[127.6274,1.2481],[127.6378,1.2523],[127.6427,1.2504],[127.6473,1.2524],[127.6473,1.2637],[127.6494,1.271],[127.6455,1.2728],[127.6381,1.2717],[127.6345,1.2746],[127.6359,1.286],[127.6391,1.2903],[127.6401,1.2973],[127.6375,1.3044],[127.6366,1.3216],[127.6404,1.32],[127.6404,1.3278],[127.6435,1.3338],[127.652,1.327],[127.6566,1.3323],[127.6575,1.3366],[127.6559,1.3415],[127.6597,1.3458],[127.661,1.3545],[127.6632,1.3589],[127.6623,1.3648],[127.6668,1.3663],[127.6754,1.3753],[127.6758,1.3784],[127.6716,1.3836],[127.6687,1.3916],[127.6613,1.3966],[127.6571,1.4111],[127.6597,1.4226],[127.6669,1.4281],[127.6739,1.4318],[127.6763,1.4386],[127.6802,1.443],[127.6751,1.4489],[127.6731,1.4567],[127.67,1.46],[127.6705,1.4639],[127.6766,1.4655],[127.6807,1.4689],[127.6879,1.4673],[127.6939,1.4685],[127.6973,1.4723],[127.7022,1.4724],[127.7057,1.4778],[127.7058,1.4839],[127.7113,1.4941],[127.7141,1.4964],[127.7121,1.5095],[127.721,1.5145],[127.7186,1.5183],[127.7197,1.522],[127.7251,1.5258],[127.7255,1.5318],[127.7297,1.5396],[127.7261,1.5505],[127.7259,1.5592],[127.7285,1.5731],[127.7267,1.5811],[127.7269,1.5925],[127.7349,1.6023],[127.7304,1.6061],[127.7311,1.6135],[127.7288,1.6186],[127.7317,1.6258],[127.7305,1.631],[127.7236,1.6349],[127.7183,1.6423],[127.7195,1.6554],[127.7131,1.6616],[127.7127,1.6774],[127.7142,1.6827],[127.7071,1.6926],[127.7037,1.7013],[127.705,1.7112],[127.7031,1.7147],[127.7074,1.7191],[127.7107,1.7281],[127.7093,1.7328],[127.7134,1.7441],[127.7109,1.752],[127.7142,1.7627],[127.7177,1.765],[127.718,1.7779],[127.7218,1.7826],[127.7192,1.7881],[127.7321,1.7994],[127.7321,1.8064],[127.7359,1.8149],[127.7384,1.8159],[127.7412,1.8219],[127.7405,1.8304],[127.7424,1.8355],[127.7488,1.8461],[127.7487,1.8491],[127.7438,1.8553],[127.753,1.8645],[127.756,1.86],[127.765,1.8655],[127.7597,1.8745],[127.7595,1.8817],[127.7613,1.887],[127.7715,1.8959],[127.7717,1.9013],[127.7797,1.9063],[127.7864,1.9074],[127.7835,1.9115],[127.7818,1.9277],[127.7793,1.9346],[127.775,1.9416],[127.7736,1.9486],[127.7713,1.9495],[127.7681,1.9593],[127.7636,1.9615],[127.7571,1.9616],[127.7535,1.9589],[127.7542,1.9461],[127.7485,1.9465],[127.7429,1.9548],[127.7439,1.9589],[127.7374,1.9611],[127.7311,1.9572],[127.7273,1.9524],[127.7207,1.9501],[127.7147,1.9453],[127.712,1.9467],[127.7053,1.9408],[127.6956,1.9294],[127.6957,1.9235],[127.6895,1.9177],[127.6883,1.9137],[127.6837,1.9086],[127.674,1.9036],[127.6755,1.8959],[127.6791,1.8935],[127.6753,1.8862],[127.6691,1.8873],[127.6654,1.8836],[127.6663,1.8792],[127.6619,1.8774],[127.6654,1.8727],[127.6627,1.8676],[127.657,1.8624],[127.6577,1.8581],[127.6557,1.852],[127.6421,1.8366],[127.646,1.8342],[127.6466,1.8247],[127.6443,1.8217],[127.6384,1.8207],[127.6266,1.8055],[127.6229,1.8019],[127.6228,1.798],[127.614,1.7957],[127.612,1.7914],[127.614,1.7838],[127.6019,1.7756],[127.5961,1.7693],[127.5898,1.7707],[127.586,1.768],[127.5837,1.7617],[127.5759,1.7599],[127.5723,1.751],[127.5728,1.7452],[127.5706,1.7398],[127.5757,1.7335],[127.5717,1.731],[127.5748,1.7237],[127.5692,1.7235],[127.5586,1.7154],[127.5669,1.7058],[127.5692,1.6995],[127.5735,1.6953],[127.5796,1.6939],[127.5838,1.6874],[127.5803,1.6848],[127.5816,1.6735],[127.58,1.6703],[127.5806,1.6616],[127.5778,1.658],[127.5728,1.6604],[127.569,1.6555],[127.5649,1.6604],[127.563,1.6502],[127.5611,1.6457],[127.5541,1.6403],[127.5526,1.6491],[127.5558,1.6514],[127.5596,1.6641],[127.5549,1.6632],[127.549,1.6647],[127.5494,1.6503],[127.5411,1.6487],[127.5427,1.6374],[127.5481,1.6341],[127.5503,1.628],[127.5496,1.6243],[127.5454,1.6221],[127.5517,1.6174],[127.5526,1.6084],[127.5512,1.5959],[127.5441,1.5803],[127.5381,1.5821],[127.5377,1.5868],[127.5315,1.5847],[127.5231,1.574],[127.5163,1.569],[127.5167,1.5638],[127.5124,1.5605],[127.5108,1.5549],[127.5188,1.5555],[127.5203,1.5504],[127.5264,1.5521],[127.5291,1.5502],[127.525,1.5344],[127.5289,1.5256],[127.5315,1.5158],[127.5298,1.5134],[127.5355,1.5061],[127.5356,1.4892],[127.5315,1.4696],[127.5275,1.4555],[127.5254,1.4514],[127.5199,1.4315],[127.5152,1.4238],[127.5066,1.4144],[127.4954,1.4046],[127.4859,1.3922],[127.4865,1.3874],[127.4849,1.3639],[127.485,1.3566],[127.4826,1.3503],[127.4721,1.3388],[127.468,1.3231],[127.4643,1.3174],[127.4577,1.3142],[127.4546,1.3078],[127.448,1.3035],[127.4431,1.298],[127.4419,1.2937],[127.4349,1.2825],[127.4311,1.2716],[127.4247,1.2664],[127.4241,1.2616],[127.4176,1.251],[127.4173,1.2435],[127.4077,1.2337],[127.4057,1.2287],[127.409,1.2206],[127.4074,1.2081],[127.402,1.1981],[127.3992,1.1954],[127.4053,1.1901],[127.4112,1.1818],[127.4099,1.1782],[127.4154,1.176],[127.4182,1.1715],[127.4173,1.1675],[127.426,1.1587],[127.429,1.1582],[127.4314,1.1481],[127.4313,1.1407],[127.4281,1.1317],[127.4269,1.1193],[127.4244,1.113],[127.4197,1.1075],[127.4178,1.1024],[127.406,1.0931],[127.4048,1.0889],[127.4,1.0842],[127.3974,1.0711],[127.3973,1.0606],[127.3999,1.0548],[127.4107,1.0494],[127.4113,1.046],[127.4001,1.0426],[127.4064,1.0393],[127.4098,1.0406],[127.4148,1.039],[127.4175,1.0334],[127.4242,1.0323],[127.4286,1.0413],[127.4243,1.0465],[127.4276,1.0507],[127.4347,1.0459],[127.4462,1.0513],[127.4559,1.052],[127.4589,1.0554],[127.4655,1.0576],[127.4682,1.0611],[127.4793,1.0644],[127.4822,1.0588],[127.4863,1.0605],[127.4947,1.0554],[127.5006,1.0462],[127.4992,1.0372],[127.4965,1.0274],[127.4966,1.0212],[127.4945,1.0147],[127.4792,1.0159],[127.4736,1.0053],[127.4801,1.0017],[127.4807,0.9934],[127.4901,0.9959],[127.4957,0.9953],[127.4958,0.9903],[127.5008,0.9897],[127.5062,0.9782],[127.5118,0.9724],[127.5108,0.9683],[127.5125,0.9618],[127.5125,0.9533],[127.5076,0.9507],[127.5042,0.9437],[127.4986,0.9387],[127.4972,0.9318],[127.4919,0.9281],[127.49,0.9203],[127.4926,0.9152],[127.4927,0.9076],[127.4911,0.9036],[127.4935,0.899],[127.4917,0.8936],[127.4966,0.8867],[127.502,0.8844],[127.5069,0.8885],[127.5137,0.8874],[127.5184,0.8887],[127.5262,0.8852],[127.5267,0.8773],[127.5365,0.8831],[127.537,0.8776],[127.5342,0.8728],[127.5382,0.867],[127.531,0.8621],[127.5277,0.8581],[127.5389,0.8598],[127.5433,0.8615],[127.5454,0.8682],[127.5431,0.8728],[127.5463,0.8762],[127.5514,0.8731],[127.5592,0.8756],[127.5624,0.8715],[127.5611,0.8633],[127.5661,0.8665],[127.5704,0.8651],[127.5797,0.8668],[127.5822,0.8635],[127.5882,0.861],[127.5926,0.8615],[127.5958,0.8648],[127.6035,0.8653],[127.6051,0.862],[127.6096,0.8615],[127.6135,0.8539],[127.6185,0.8539],[127.6181,0.8624],[127.6278,0.8611],[127.6247,0.856],[127.6269,0.8543],[127.6273,0.8476],[127.6336,0.851],[127.639,0.852],[127.6338,0.8386],[127.6394,0.8354],[127.636,0.8291],[127.6383,0.8235],[127.6382,0.8173],[127.6361,0.8101],[127.6333,0.8067],[127.6218,0.8023],[127.6183,0.7902],[127.6243,0.785],[127.621,0.782],[127.6216,0.7784],[127.6289,0.7773],[127.6361,0.7696],[127.6412,0.7685],[127.648,0.7695],[127.6482,0.7743],[127.6528,0.7759],[127.663,0.7755],[127.6631,0.7721],[127.672,0.7713],[127.6821,0.7587],[127.6869,0.7588],[127.6923,0.7563],[127.7003,0.7563],[127.7026,0.7627],[127.7135,0.7614],[127.7168,0.765],[127.728,0.7589],[127.7314,0.7592],[127.7308,0.7607],[127.7349,0.775],[127.7283,0.7773],[127.7225,0.7818],[127.7193,0.7884],[127.7211,0.8043],[127.7146,0.8095],[127.7094,0.8212]]}},{"type":"Feature","properties":{"mhid":"1332:470","alt_name":"KABUPATEN HALMAHERA TENGAH","latitude":0.48056,"longitude":128.25,"sample_value":326},"geometry":{"type":"LineString","coordinates":[[129.4225,-0.0788],[129.4122,-0.0855],[129.4108,-0.0927],[129.4174,-0.1039],[129.4261,-0.111],[129.4319,-0.1182],[129.4346,-0.1161],[129.4339,-0.1036],[129.4355,-0.0999],[129.432,-0.0907],[129.4259,-0.102],[129.4255,-0.0953],[129.4267,-0.088],[129.4215,-0.081],[129.4225,-0.0788]]}},{"type":"Feature","properties":{"mhid":"1332:470","alt_name":"KABUPATEN HALMAHERA TENGAH","latitude":0.48056,"longitude":128.25,"sample_value":326},"geometry":{"type":"LineString","coordinates":[[129.6304,-0.0312],[129.6266,-0.0284],[129.6137,-0.0141],[129.6032,-0.0044],[129.5962,-0.0018],[129.5904,-0.0029],[129.5836,-0.0104],[129.5847,-0.0323],[129.5875,-0.0447],[129.5962,-0.0533],[129.5972,-0.0561],[129.6078,-0.0648],[129.6148,-0.0684],[129.6198,-0.0685],[129.6228,-0.0657],[129.6228,-0.0588],[129.6321,-0.0585],[129.6305,-0.0525],[129.6268,-0.048],[129.6194,-0.0452],[129.6154,-0.041],[129.6162,-0.037],[129.6222,-0.0373],[129.6257,-0.0347],[129.6284,-0.0388],[129.6268,-0.0429],[129.6342,-0.0505],[129.6449,-0.0562],[129.6474,-0.0632],[129.6427,-0.0706],[129.6504,-0.072],[129.6564,-0.0668],[129.6569,-0.0556],[129.6503,-0.0456],[129.6304,-0.0312]]}},{"type":"Feature","properties":{"mhid":"1332:470","alt_name":"KABUPATEN HALMAHERA TENGAH","latitude":0.48056,"longitude":128.25,"sample_value":326},"geometry":{"type":"LineString","coordinates":[[129.6289,0.0064],[129.638,0.0099],[129.636,0.0179],[129.6296,0.0234],[129.625,0.0223],[129.6245,0.0164],[129.6266,0.0067],[129.6289,0.0064]]}},{"type":"Feature","properties":{"mhid":"1332:470","alt_name":"KABUPATEN HALMAHERA TENGAH","latitude":0.48056,"longitude":128.25,"sample_value":326},"geometry":{"type":"LineString","coordinates":[[129.3139,0.0355],[129.2867,0.051],[129.28,0.0482],[129.2793,0.0429],[129.2814,0.0383],[129.2903,0.0284],[129.297,0.0312],[129.3111,0.0259],[129.3298,0.0228],[129.3415,0.0143],[129.3475,0.0055],[129.3541,0.0025],[129.3604,-0.004],[129.3624,-0.0031],[129.3711,-0.0152],[129.3802,-0.0293],[129.3811,-0.0363],[129.3849,-0.0422],[129.382,-0.0524],[129.3879,-0.06],[129.3817,-0.0676],[129.3831,-0.0729],[129.3924,-0.0746],[129.4022,-0.0707],[129.4145,-0.0713],[129.4264,-0.0758],[129.4343,-0.0849],[129.4385,-0.0873],[129.455,-0.092],[129.4605,-0.0917],[129.4606,-0.0961],[129.4633,-0.1005],[129.471,-0.1067],[129.4757,-0.1139],[129.4793,-0.1237],[129.4738,-0.1281],[129.4693,-0.1384],[129.4763,-0.1432],[129.4811,-0.1404],[129.4856,-0.1419],[129.4881,-0.1471],[129.497,-0.1501],[129.4989,-0.1549],[129.5062,-0.1603],[129.5152,-0.162],[129.5129,-0.1688],[129.5091,-0.172],[129.5108,-0.1817],[129.5141,-0.1851],[129.5197,-0.1863],[129.52,-0.1975],[129.5275,-0.2051],[129.5311,-0.2068],[129.5365,-0.213],[129.546,-0.2146],[129.5508,-0.2101],[129.5472,-0.2016],[129.5533,-0.2044],[129.5624,-0.2124],[129.5598,-0.2008],[129.5643,-0.1972],[129.5729,-0.2002],[129.5754,-0.199],[129.5753,-0.1919],[129.5724,-0.1785],[129.5672,-0.1656],[129.5642,-0.1612],[129.5547,-0.1431],[129.5503,-0.1376],[129.5471,-0.1302],[129.5407,-0.125],[129.5361,-0.1235],[129.5325,-0.1189],[129.521,-0.1135],[129.512,-0.1079],[129.5054,-0.101],[129.4905,-0.0937],[129.4729,-0.0867],[129.4696,-0.0827],[129.4677,-0.0771],[129.462,-0.0688],[129.4581,-0.0655],[129.4344,-0.054],[129.4242,-0.0416],[129.4128,-0.0249],[129.4014,-0.0132],[129.383,-0.0033],[129.3674,0.0059],[129.3552,0.0122],[129.3475,0.0189],[129.3379,0.0256],[129.327,0.0305],[129.3139,0.0355]]}},{"type":"Feature","properties":{"mhid":"1332:470","alt_name":"KABUPATEN HALMAHERA TENGAH","latitude":0.48056,"longitude":128.25,"sample_value":326},"geometry":{"type":"LineString","coordinates":[[128.94,0.1925],[128.9451,0.1835],[128.9515,0.1779],[128.9607,0.1741],[128.9643,0.1745],[128.9709,0.1677],[128.9775,0.1692],[128.9678,0.1756],[128.9615,0.1822],[128.9566,0.1836],[128.9452,0.1914],[128.94,0.1925]]}},{"type":"Feature","properties":{"mhid":"1332:470","alt_name":"KABUPATEN HALMAHERA TENGAH","latitude":0.48056,"longitude":128.25,"sample_value":326},"geometry":{"type":"LineString","coordinates":[[128.8672,0.479],[128.8616,0.4746],[128.8646,0.4654],[128.8692,0.4581],[128.8744,0.4565],[128.8742,0.465],[128.8714,0.475],[128.8672,0.479]]}},{"type":"Feature","properties":{"mhid":"1332:470","alt_name":"KABUPATEN HALMAHERA TENGAH","latitude":0.48056,"longitude":128.25,"sample_value":326},"geometry":{"type":"LineString","coordinates":[[128.8106,0.5657],[128.8059,0.5616],[128.806,0.554],[128.8159,0.5314],[128.8296,0.5102],[128.8516,0.496],[128.8574,0.4899],[128.8615,0.4905],[128.8627,0.497],[128.8559,0.5067],[128.8537,0.5161],[128.8462,0.5284],[128.8376,0.5397],[128.8292,0.5522],[128.8224,0.5589],[128.8106,0.5657]]}},{"type":"Feature","properties":{"mhid":"1332:470","alt_name":"KABUPATEN HALMAHERA TENGAH","latitude":0.48056,"longitude":128.25,"sample_value":326},"geometry":{"type":"LineString","coordinates":[[128.6791,0.5061],[128.6756,0.5112],[128.6706,0.5062],[128.6671,0.5062],[128.6571,0.51],[128.6507,0.5142],[128.6477,0.5141],[128.642,0.5097],[128.6396,0.5037],[128.6388,0.4925],[128.6344,0.487],[128.6262,0.4856],[128.6287,0.4806],[128.6194,0.4707],[128.6183,0.4676],[128.619,0.457],[128.6233,0.4469],[128.6184,0.4416],[128.6055,0.4385],[128.592,0.4379],[128.584,0.4338],[128.5799,0.4329],[128.5789,0.424],[128.5739,0.4194],[128.5656,0.4182],[128.5619,0.416],[128.5589,0.4222],[128.5435,0.4225],[128.5391,0.4316],[128.5336,0.4318],[128.5296,0.4353],[128.5127,0.4429],[128.5097,0.4429],[128.5085,0.4503],[128.5023,0.4552],[128.503,0.4623],[128.5015,0.4684],[128.5046,0.4765],[128.5022,0.4794],[128.4962,0.4785],[128.4905,0.4729],[128.4877,0.479],[128.4893,0.4842],[128.4837,0.4898],[128.4671,0.4954],[128.4604,0.491],[128.4583,0.4956],[128.447,0.5019],[128.4419,0.5012],[128.4384,0.5046],[128.428,0.5021],[128.4221,0.5041],[128.4098,0.503],[128.4073,0.5053],[128.4027,0.5023],[128.3994,0.509],[128.3927,0.5068],[128.3815,0.509],[128.375,0.5123],[128.365,0.513],[128.3585,0.5106],[128.3528,0.5134],[128.3516,0.516],[128.3417,0.5232],[128.3382,0.5297],[128.3376,0.5363],[128.3288,0.5391],[128.3263,0.5425],[128.3181,0.5478],[128.3164,0.5546],[128.2873,0.554],[128.2784,0.5481],[128.2712,0.5497],[128.2668,0.5666],[128.2629,0.5709],[128.2511,0.5698],[128.2423,0.5771],[128.2412,0.5818],[128.237,0.5866],[128.2249,0.5943],[128.2181,0.5951],[128.2142,0.5994],[128.2056,0.6014],[128.2011,0.5977],[128.1891,0.5966],[128.1783,0.59],[128.1719,0.5926],[128.169,0.5897],[128.1581,0.5909],[128.1525,0.5953],[128.1448,0.5947],[128.1415,0.5912],[128.1354,0.5891],[128.1279,0.591],[128.1201,0.5943],[128.117,0.5911],[128.1104,0.5983],[128.1072,0.5997],[128.1052,0.6051],[128.0997,0.6064],[128.0949,0.6028],[128.0899,0.6103],[128.0843,0.6147],[128.0716,0.6163],[128.066,0.616],[128.0653,0.6227],[128.0659,0.6357],[128.0646,0.6393],[128.057,0.6428],[128.0496,0.6381],[128.0449,0.638],[128.0386,0.6449],[128.0243,0.6436],[128.0187,0.6501],[128.0089,0.6501],[128.0045,0.6553],[127.9953,0.6567],[127.9879,0.6504],[127.9848,0.6446],[127.9782,0.638],[127.973,0.6389],[127.9631,0.6338],[127.96,0.6362],[127.9518,0.6301],[127.9413,0.6303],[127.9393,0.6344],[127.9349,0.6347],[127.9286,0.6256],[127.9241,0.6274],[127.9139,0.6286],[127.9033,0.6276],[127.8888,0.6306],[127.8804,0.6298],[127.875,0.6322],[127.8634,0.6306],[127.8642,0.6267],[127.857,0.6229],[127.8537,0.6177],[127.8465,0.6199],[127.8433,0.6182],[127.829,0.6227],[127.8255,0.6304],[127.8267,0.6382],[127.8167,0.6438],[127.8084,0.646],[127.8031,0.6414],[127.7989,0.6408],[127.7921,0.6426],[127.7909,0.6383],[127.7919,0.6313],[127.7978,0.6232],[127.8068,0.6186],[127.8099,0.6145],[127.8089,0.6089],[127.8111,0.6042],[127.8098,0.5991],[127.8211,0.5916],[127.8252,0.5825],[127.8284,0.5807],[127.8315,0.5721],[127.8291,0.5693],[127.8228,0.5673],[127.8214,0.5565],[127.8247,0.5522],[127.826,0.5427],[127.8197,0.5376],[127.8159,0.5372],[127.8135,0.5325],[127.8066,0.5261],[127.8123,0.5217],[127.8116,0.5154],[127.8055,0.5122],[127.8036,0.5081],[127.8061,0.5036],[127.805,0.4965],[127.806,0.4901],[127.8014,0.4849],[127.7963,0.4817],[127.7926,0.4868],[127.7845,0.4883],[127.7777,0.4835],[127.7756,0.4767],[127.7772,0.4732],[127.7762,0.4668],[127.773,0.4591],[127.7687,0.4546],[127.7692,0.451],[127.7736,0.4482],[127.7747,0.4373],[127.7723,0.4325],[127.7724,0.4276],[127.775,0.4189],[127.7751,0.4129],[127.7786,0.4084],[127.7899,0.3977],[127.7891,0.3914],[127.7985,0.3857],[127.7997,0.3816],[127.8034,0.3807],[127.8065,0.3737],[127.801,0.367],[127.8007,0.3619],[127.8071,0.343],[127.8067,0.3382],[127.8039,0.3353],[127.7986,0.3174],[127.7995,0.3109],[127.8022,0.3078],[127.802,0.301],[127.8121,0.2843],[127.8173,0.2796],[127.8195,0.2726],[127.8116,0.2696],[127.8076,0.2572],[127.7973,0.25],[127.7991,0.2406],[127.8056,0.2338],[127.814,0.23],[127.8119,0.2239],[127.8171,0.2157],[127.8235,0.2096],[127.8222,0.2017],[127.8095,0.1959],[127.8048,0.1904],[127.8025,0.1832],[127.7954,0.1735],[127.794,0.1674],[127.7877,0.1546],[127.7886,0.1522],[127.7914,0.1499],[127.8083,0.1502],[127.8148,0.1448],[127.8173,0.1361],[127.8243,0.1254],[127.8308,0.1247],[127.8381,0.1283],[127.8444,0.1345],[127.8517,0.1363],[127.854,0.1334],[127.8588,0.1341],[127.8633,0.1322],[127.8696,0.1324],[127.8724,0.1305],[127.8776,0.1318],[127.888,0.1445],[127.8946,0.1477],[127.8946,0.1667],[127.8976,0.1763],[127.9097,0.1754],[127.9216,0.1767],[127.9187,0.1848],[127.9219,0.187],[127.9199,0.1943],[127.9207,0.2043],[127.924,0.2152],[127.9222,0.2193],[127.9207,0.2299],[127.9185,0.2357],[127.9181,0.242],[127.9135,0.2499],[127.9171,0.2602],[127.9154,0.2706],[127.9181,0.2747],[127.9071,0.2814],[127.8963,0.2852],[127.8885,0.2854],[127.8803,0.295],[127.8758,0.2954],[127.872,0.3058],[127.874,0.3125],[127.8727,0.3167],[127.8758,0.3253],[127.881,0.3325],[127.8797,0.3469],[127.8836,0.3519],[127.8841,0.3575],[127.8903,0.3592],[127.8967,0.3644],[127.9037,0.363],[127.9052,0.3714],[127.9043,0.3749],[127.8986,0.3802],[127.8988,0.3859],[127.9031,0.3872],[127.9067,0.3948],[127.9101,0.3968],[127.9108,0.4038],[127.9065,0.4122],[127.9084,0.416],[127.9007,0.4275],[127.9031,0.4359],[127.9096,0.4427],[127.912,0.4481],[127.9215,0.459],[127.9264,0.4593],[127.9284,0.4641],[127.934,0.4647],[127.9385,0.4682],[127.9519,0.4667],[127.9566,0.4682],[127.969,0.482],[127.9745,0.4809],[127.9796,0.4732],[127.9857,0.4792],[127.9906,0.4755],[127.9979,0.4736],[128.0072,0.4754],[128.0132,0.4716],[128.0235,0.4758],[128.0285,0.4737],[128.0361,0.4778],[128.0423,0.4781],[128.0513,0.4721],[128.0651,0.4691],[128.069,0.4707],[128.0726,0.4757],[128.0803,0.4765],[128.0857,0.4689],[128.0883,0.4618],[128.0942,0.4605],[128.1004,0.4618],[128.1076,0.4588],[128.1117,0.455],[128.1216,0.454],[128.1259,0.4579],[128.1405,0.4639],[128.1482,0.4612],[128.1569,0.4566],[128.1579,0.4518],[128.1673,0.4571],[128.1739,0.4545],[128.1722,0.4513],[128.1726,0.4456],[128.1755,0.4405],[128.1816,0.4415],[128.1843,0.4385],[128.1777,0.431],[128.1817,0.4283],[128.1939,0.4315],[128.2019,0.4295],[128.2066,0.4228],[128.2179,0.4206],[128.2219,0.4136],[128.2318,0.4111],[128.2364,0.4141],[128.2363,0.4224],[128.2411,0.4187],[128.2434,0.4119],[128.2492,0.4081],[128.253,0.4082],[128.2609,0.4042],[128.2648,0.4046],[128.2736,0.4029],[128.2813,0.3967],[128.2867,0.3963],[128.2902,0.3989],[128.298,0.4002],[128.3029,0.3984],[128.3112,0.3982],[128.3147,0.3967],[128.3345,0.4042],[128.3407,0.4049],[128.3474,0.4034],[128.3557,0.3992],[128.3658,0.4029],[128.3732,0.4036],[128.3776,0.406],[128.3838,0.4063],[128.3926,0.4033],[128.3991,0.396],[128.4052,0.3936],[128.4216,0.3929],[128.4237,0.3948],[128.4334,0.3975],[128.4416,0.4033],[128.4498,0.4033],[128.463,0.3982],[128.4682,0.392],[128.4791,0.3929],[128.4844,0.3908],[128.4867,0.3864],[128.4868,0.3789],[128.4916,0.3759],[128.4964,0.3684],[128.5006,0.3591],[128.5011,0.3544],[128.506,0.3543],[128.5075,0.3503],[128.5126,0.3479],[128.5177,0.3428],[128.5275,0.3419],[128.5347,0.3399],[128.5443,0.3296],[128.5521,0.3275],[128.5604,0.3178],[128.5683,0.3197],[128.575,0.3188],[128.5937,0.3184],[128.5981,0.3196],[128.6057,0.3171],[128.6191,0.3157],[128.624,0.313],[128.6292,0.3135],[128.6365,0.3117],[128.6483,0.307],[128.6514,0.3027],[128.6567,0.3008],[128.6633,0.3014],[128.6752,0.2952],[128.6864,0.2967],[128.6967,0.2971],[128.7003,0.2951],[128.7136,0.2917],[128.7208,0.286],[128.7311,0.2827],[128.7452,0.2812],[128.7548,0.282],[128.7705,0.2766],[128.7745,0.2771],[128.7853,0.2725],[128.7916,0.272],[128.8015,0.2679],[128.8064,0.2682],[128.8151,0.264],[128.8214,0.2631],[128.8294,0.2589],[128.8386,0.259],[128.8429,0.2614],[128.8458,0.26],[128.8511,0.2503],[128.8493,0.2482],[128.8563,0.2337],[128.8658,0.2231],[128.8769,0.22],[128.8882,0.2103],[128.8931,0.2114],[128.8941,0.2166],[128.8757,0.2278],[128.8683,0.2415],[128.8685,0.2501],[128.8655,0.2649],[128.8587,0.275],[128.8485,0.2838],[128.8374,0.2917],[128.8277,0.2961],[128.8182,0.2989],[128.8058,0.3067],[128.8021,0.3107],[128.7919,0.3147],[128.7896,0.314],[128.7793,0.3184],[128.7707,0.3188],[128.7629,0.316],[128.7517,0.3189],[128.7458,0.3193],[128.7414,0.3237],[128.7333,0.3247],[128.7158,0.3316],[128.7089,0.3305],[128.7063,0.3277],[128.6995,0.3298],[128.694,0.3295],[128.6783,0.3363],[128.6732,0.341],[128.6689,0.3474],[128.6661,0.3607],[128.6698,0.3649],[128.6777,0.3795],[128.6795,0.3916],[128.6837,0.3974],[128.6869,0.4045],[128.6849,0.4113],[128.6857,0.4185],[128.6826,0.4263],[128.6823,0.4325],[128.6885,0.4442],[128.6879,0.4563],[128.6867,0.4623],[128.6805,0.4767],[128.6715,0.4882],[128.6684,0.4907],[128.6791,0.5061]]}},{"type":"Feature","properties":{"mhid":"1332:471","alt_name":"KABUPATEN KEPULAUAN SULA","latitude":-1.8646,"longitude":125.69046,"sample_value":839},"geometry":{"type":"LineString","coordinates":[[125.9151,-1.9805],[125.9147,-1.9741],[125.9083,-1.9753],[125.9029,-1.9829],[125.8997,-1.9828],[125.8977,-1.9885],[125.8971,-1.9959],[125.8897,-1.9997],[125.8801,-2.019],[125.8754,-2.0211],[125.8719,-2.0255],[125.8684,-2.0329],[125.8646,-2.0446],[125.8607,-2.052],[125.8579,-2.0602],[125.8575,-2.0824],[125.8559,-2.0918],[125.8596,-2.096],[125.863,-2.1057],[125.8743,-2.1229],[125.8747,-2.1265],[125.8807,-2.1386],[125.8817,-2.1486],[125.8807,-2.1521],[125.8864,-2.1695],[125.8871,-2.1779],[125.883,-2.189],[125.8796,-2.194],[125.8787,-2.206],[125.8803,-2.2126],[125.8869,-2.2237],[125.8969,-2.236],[125.9053,-2.2429],[125.9121,-2.2555],[125.9183,-2.2649],[125.922,-2.2673],[125.9271,-2.2763],[125.9302,-2.2866],[125.9347,-2.2908],[125.9459,-2.3038],[125.9546,-2.318],[125.9586,-2.326],[125.959,-2.3361],[125.9616,-2.3437],[125.9595,-2.3629],[125.9616,-2.3656],[125.9612,-2.3756],[125.9635,-2.3866],[125.9666,-2.3963],[125.973,-2.4029],[125.9739,-2.4127],[125.9785,-2.4218],[125.9905,-2.4399],[125.9959,-2.445],[126.0056,-2.4519],[126.037,-2.47],[126.0425,-2.4755],[126.0495,-2.4773],[126.0581,-2.4704],[126.0706,-2.451],[126.073,-2.4446],[126.0729,-2.4222],[126.0694,-2.4129],[126.0656,-2.408],[126.0592,-2.3922],[126.0489,-2.3748],[126.047,-2.3683],[126.0392,-2.3595],[126.0399,-2.3543],[126.0387,-2.3476],[126.0355,-2.3404],[126.0326,-2.3377],[126.0324,-2.3322],[126.0214,-2.3132],[126.0206,-2.3014],[126.0142,-2.2883],[126.0058,-2.2673],[126,-2.2601],[126,-2.2546],[125.9886,-2.2376],[125.9818,-2.2261],[125.973,-2.2029],[125.9673,-2.194],[125.9635,-2.1843],[125.9579,-2.1601],[125.9571,-2.1452],[125.9594,-2.1344],[125.959,-2.129],[125.9625,-2.1129],[125.9714,-2.0907],[125.9775,-2.078],[125.9781,-2.0733],[125.9831,-2.0655],[125.9825,-2.0547],[125.9881,-2.0534],[125.9928,-2.0454],[125.9913,-2.0399],[125.993,-2.0299],[125.9873,-2.0155],[125.9767,-2.008],[125.9751,-2.0038],[125.9711,-2.0048],[125.9691,-1.9997],[125.9594,-1.9955],[125.9571,-1.992],[125.9487,-1.9876],[125.9441,-1.98],[125.9384,-1.9777],[125.9284,-1.982],[125.9207,-1.9766],[125.9151,-1.9805]]}},{"type":"Feature","properties":{"mhid":"1332:471","alt_name":"KABUPATEN KEPULAUAN SULA","latitude":-1.8646,"longitude":125.69046,"sample_value":839},"geometry":{"type":"LineString","coordinates":[[125.8077,-1.9138],[125.8027,-1.9138],[125.7979,-1.9176],[125.7981,-1.9218],[125.806,-1.9173],[125.8077,-1.9138]]}},{"type":"Feature","properties":{"mhid":"1332:471","alt_name":"KABUPATEN KEPULAUAN SULA","latitude":-1.8646,"longitude":125.69046,"sample_value":839},"geometry":{"type":"LineString","coordinates":[[125.4185,-1.8845],[125.412,-1.8908],[125.4151,-1.8962],[125.4215,-1.8859],[125.4185,-1.8845]]}},{"type":"Feature","properties":{"mhid":"1332:471","alt_name":"KABUPATEN KEPULAUAN SULA","latitude":-1.8646,"longitude":125.69046,"sample_value":839},"geometry":{"type":"LineString","coordinates":[[125.3844,-1.8787],[125.3824,-1.8808],[125.3756,-1.8814],[125.3722,-1.8897],[125.386,-1.8919],[125.3887,-1.889],[125.3844,-1.8787]]}},{"type":"Feature","properties":{"mhid":"1332:471","alt_name":"KABUPATEN KEPULAUAN SULA","latitude":-1.8646,"longitude":125.69046,"sample_value":839},"geometry":{"type":"LineString","coordinates":[[126.4572,-1.8007],[126.4484,-1.8026],[126.4406,-1.8014],[126.4324,-1.8091],[126.4217,-1.8125],[126.4052,-1.8131],[126.3902,-1.8164],[126.3819,-1.8157],[126.3745,-1.8218],[126.351,-1.8249],[126.3514,-1.828],[126.3561,-1.8294],[126.3714,-1.8279],[126.3783,-1.8263],[126.3775,-1.8309],[126.3831,-1.83],[126.3823,-1.8364],[126.3868,-1.8372],[126.3951,-1.836],[126.4003,-1.8318],[126.4125,-1.8282],[126.4171,-1.8281],[126.4319,-1.8304],[126.4404,-1.8353],[126.4519,-1.8381],[126.4593,-1.8381],[126.4694,-1.8366],[126.4797,-1.8331],[126.4825,-1.8297],[126.4844,-1.8196],[126.466,-1.821],[126.4641,-1.8183],[126.4705,-1.8147],[126.47,-1.8089],[126.4731,-1.8056],[126.4659,-1.8039],[126.4534,-1.8073],[126.4572,-1.8007]]}},{"type":"Feature","properties":{"mhid":"1332:471","alt_name":"KABUPATEN KEPULAUAN SULA","latitude":-1.8646,"longitude":125.69046,"sample_value":839},"geometry":{"type":"LineString","coordinates":[[125.4049,-1.7753],[125.3942,-1.7772],[125.3892,-1.7833],[125.3867,-1.7796],[125.3757,-1.7773],[125.3666,-1.7791],[125.3633,-1.7857],[125.3569,-1.7932],[125.3567,-1.7967],[125.3659,-1.7968],[125.3735,-1.7986],[125.3763,-1.8021],[125.3757,-1.8071],[125.3703,-1.807],[125.3646,-1.8102],[125.3554,-1.8083],[125.3541,-1.8039],[125.3473,-1.8058],[125.347,-1.8109],[125.3423,-1.8124],[125.3377,-1.8226],[125.3312,-1.827],[125.3283,-1.8312],[125.3296,-1.8392],[125.3296,-1.8586],[125.3316,-1.8647],[125.3329,-1.8757],[125.3405,-1.8816],[125.3445,-1.888],[125.3579,-1.8869],[125.3628,-1.8775],[125.3629,-1.8727],[125.3656,-1.8687],[125.365,-1.8646],[125.3675,-1.8603],[125.3656,-1.8531],[125.3688,-1.8463],[125.3746,-1.8483],[125.3727,-1.8548],[125.3742,-1.8624],[125.3804,-1.863],[125.3841,-1.866],[125.3938,-1.8649],[125.3972,-1.8664],[125.3957,-1.8726],[125.3999,-1.874],[125.4013,-1.869],[125.4057,-1.8694],[125.4055,-1.8738],[125.4121,-1.8799],[125.4152,-1.8761],[125.4199,-1.8778],[125.4221,-1.883],[125.4294,-1.8838],[125.4338,-1.8859],[125.4366,-1.8914],[125.4366,-1.8981],[125.4388,-1.9007],[125.4351,-1.9077],[125.4331,-1.9158],[125.4407,-1.9274],[125.4387,-1.9299],[125.4287,-1.9367],[125.4191,-1.9448],[125.4188,-1.9484],[125.4244,-1.9494],[125.4356,-1.9486],[125.4371,-1.9463],[125.4509,-1.9464],[125.4594,-1.9431],[125.4626,-1.9435],[125.4744,-1.94],[125.4862,-1.9384],[125.489,-1.9347],[125.4942,-1.9343],[125.4979,-1.9363],[125.5078,-1.9473],[125.516,-1.9491],[125.5294,-1.9482],[125.538,-1.9434],[125.5552,-1.9395],[125.5622,-1.9355],[125.5706,-1.9357],[125.5785,-1.9289],[125.5934,-1.9303],[125.6,-1.9283],[125.6123,-1.9289],[125.6248,-1.9308],[125.6562,-1.9312],[125.6794,-1.9309],[125.6906,-1.9288],[125.7247,-1.9296],[125.7279,-1.9302],[125.741,-1.9294],[125.7463,-1.9269],[125.7608,-1.9288],[125.7651,-1.9246],[125.7654,-1.921],[125.7736,-1.9225],[125.7818,-1.929],[125.7872,-1.9167],[125.7922,-1.913],[125.8011,-1.9139],[125.8067,-1.9087],[125.8186,-1.9023],[125.8392,-1.8963],[125.8438,-1.8958],[125.858,-1.9008],[125.866,-1.9068],[125.8808,-1.9145],[125.8866,-1.9208],[125.8948,-1.9265],[125.9044,-1.9357],[125.9176,-1.939],[125.9219,-1.9381],[125.9331,-1.9317],[125.9473,-1.9214],[125.958,-1.9179],[125.9683,-1.9192],[125.9798,-1.918],[125.9891,-1.9146],[125.9954,-1.9109],[126.0036,-1.908],[126.01,-1.9073],[126.0156,-1.9047],[126.0274,-1.8963],[126.0327,-1.8946],[126.0385,-1.8954],[126.0485,-1.8889],[126.0586,-1.8849],[126.0665,-1.8831],[126.0799,-1.8829],[126.0892,-1.8789],[126.0979,-1.8786],[126.1048,-1.8816],[126.1207,-1.886],[126.1243,-1.888],[126.1341,-1.8892],[126.1378,-1.8911],[126.1512,-1.8888],[126.1564,-1.886],[126.1607,-1.8864],[126.1775,-1.8783],[126.1868,-1.8763],[126.1964,-1.8694],[126.2079,-1.8674],[126.2189,-1.8706],[126.227,-1.8752],[126.2303,-1.8796],[126.237,-1.8786],[126.2457,-1.8795],[126.2522,-1.8757],[126.2589,-1.8693],[126.2641,-1.8662],[126.2742,-1.8577],[126.2781,-1.8565],[126.2893,-1.8559],[126.2954,-1.8537],[126.3032,-1.8477],[126.3118,-1.8471],[126.3202,-1.8437],[126.3233,-1.8404],[126.326,-1.8328],[126.3396,-1.8186],[126.3455,-1.8199],[126.3482,-1.8151],[126.344,-1.8114],[126.3278,-1.8119],[126.3246,-1.8174],[126.3166,-1.8186],[126.3151,-1.824],[126.3057,-1.8285],[126.3019,-1.8232],[126.2976,-1.8219],[126.293,-1.8266],[126.2881,-1.826],[126.2863,-1.8216],[126.2768,-1.8217],[126.2669,-1.8157],[126.2619,-1.8177],[126.2524,-1.8188],[126.2496,-1.8172],[126.2232,-1.8181],[126.2055,-1.8142],[126.2037,-1.8082],[126.1967,-1.8048],[126.1763,-1.8096],[126.1616,-1.8085],[126.1599,-1.8066],[126.1499,-1.8085],[126.1446,-1.8106],[126.1277,-1.8112],[126.1054,-1.8092],[126.0888,-1.8086],[126.0666,-1.8036],[126.0525,-1.8025],[126.0318,-1.8],[126.01,-1.7988],[125.9996,-1.7978],[125.9963,-1.7991],[125.9861,-1.7977],[125.9662,-1.7971],[125.9571,-1.7957],[125.953,-1.7977],[125.939,-1.7966],[125.9239,-1.7942],[125.9127,-1.7932],[125.9072,-1.7972],[125.8941,-1.7963],[125.885,-1.7947],[125.882,-1.8015],[125.8774,-1.8009],[125.8754,-1.8065],[125.8638,-1.8061],[125.8584,-1.8026],[125.8537,-1.8025],[125.8493,-1.8067],[125.8423,-1.8023],[125.8359,-1.8043],[125.8323,-1.8024],[125.8258,-1.8046],[125.8229,-1.8101],[125.8154,-1.8112],[125.801,-1.8093],[125.7972,-1.8065],[125.7842,-1.8052],[125.786,-1.7995],[125.7795,-1.7984],[125.7814,-1.8064],[125.7712,-1.8126],[125.7706,-1.8067],[125.7665,-1.8055],[125.7624,-1.8083],[125.7551,-1.8072],[125.7535,-1.815],[125.7488,-1.8138],[125.7487,-1.8065],[125.7432,-1.8075],[125.7426,-1.8108],[125.7334,-1.8153],[125.7301,-1.8156],[125.7318,-1.8232],[125.724,-1.8287],[125.7227,-1.8224],[125.7192,-1.8226],[125.7171,-1.8168],[125.7139,-1.8163],[125.7045,-1.8195],[125.6973,-1.8299],[125.6924,-1.829],[125.6887,-1.8223],[125.6815,-1.8253],[125.6675,-1.8256],[125.6506,-1.823],[125.6471,-1.8214],[125.6419,-1.8287],[125.6313,-1.8292],[125.6293,-1.8227],[125.625,-1.818],[125.6228,-1.8122],[125.6184,-1.8147],[125.6176,-1.8191],[125.6128,-1.8208],[125.6034,-1.8191],[125.6022,-1.8132],[125.5971,-1.8078],[125.5932,-1.814],[125.585,-1.8089],[125.5663,-1.8043],[125.5621,-1.8022],[125.5541,-1.8038],[125.5504,-1.8015],[125.543,-1.8102],[125.5404,-1.8015],[125.544,-1.7933],[125.5403,-1.7861],[125.536,-1.7887],[125.5297,-1.7955],[125.5261,-1.7975],[125.5271,-1.8037],[125.5227,-1.8039],[125.5199,-1.8005],[125.5153,-1.8059],[125.517,-1.8101],[125.514,-1.8125],[125.5095,-1.8081],[125.5062,-1.8138],[125.5035,-1.8127],[125.5019,-1.8213],[125.4968,-1.8169],[125.4985,-1.8117],[125.496,-1.8079],[125.4902,-1.8193],[125.4862,-1.8143],[125.4837,-1.8037],[125.4809,-1.8017],[125.4752,-1.8029],[125.4736,-1.7996],[125.479,-1.7971],[125.4829,-1.7906],[125.4883,-1.7848],[125.4814,-1.7787],[125.4749,-1.7814],[125.4705,-1.7786],[125.4659,-1.7796],[125.4574,-1.7776],[125.4541,-1.7815],[125.4523,-1.7897],[125.4532,-1.7928],[125.4501,-1.7998],[125.4433,-1.7972],[125.4344,-1.8039],[125.43,-1.8056],[125.4285,-1.8095],[125.4205,-1.8069],[125.4197,-1.7993],[125.4128,-1.7971],[125.4117,-1.7864],[125.4094,-1.7821],[125.4099,-1.7775],[125.4049,-1.7753]]}},{"type":"Feature","properties":{"mhid":"1332:471","alt_name":"KABUPATEN KEPULAUAN SULA","latitude":-1.8646,"longitude":125.69046,"sample_value":839},"geometry":{"type":"LineString","coordinates":[[125.4221,-1.767],[125.4171,-1.7696],[125.4203,-1.7747],[125.4254,-1.7691],[125.4221,-1.767]]}},{"type":"Feature","properties":{"mhid":"1332:471","alt_name":"KABUPATEN KEPULAUAN SULA","latitude":-1.8646,"longitude":125.69046,"sample_value":839},"geometry":{"type":"LineString","coordinates":[[125.5413,-1.7556],[125.5383,-1.7555],[125.5314,-1.7608],[125.5284,-1.7677],[125.5259,-1.7617],[125.5219,-1.7604],[125.5167,-1.7657],[125.5156,-1.7699],[125.5074,-1.775],[125.5088,-1.7793],[125.5139,-1.7794],[125.5186,-1.7764],[125.5224,-1.7766],[125.5274,-1.7725],[125.5324,-1.7722],[125.538,-1.7809],[125.546,-1.7808],[125.5528,-1.7772],[125.5521,-1.7744],[125.547,-1.772],[125.5429,-1.766],[125.5428,-1.7561],[125.5413,-1.7556]]}},{"type":"Feature","properties":{"mhid":"1332:471","alt_name":"KABUPATEN KEPULAUAN SULA","latitude":-1.8646,"longitude":125.69046,"sample_value":839},"geometry":{"type":"LineString","coordinates":[[125.6952,-1.7622],[125.7013,-1.7569],[125.6964,-1.752],[125.6887,-1.7525],[125.6877,-1.7553],[125.6952,-1.7622]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.6346,-1.8209],[127.6175,-1.8238],[127.6129,-1.8223],[127.6018,-1.8226],[127.5859,-1.8315],[127.5805,-1.831],[127.579,-1.8355],[127.5739,-1.8387],[127.5719,-1.8434],[127.5727,-1.8497],[127.5721,-1.8658],[127.5776,-1.8668],[127.5826,-1.862],[127.5937,-1.8567],[127.5934,-1.8473],[127.601,-1.8461],[127.6178,-1.8492],[127.6196,-1.8515],[127.6289,-1.85],[127.6347,-1.847],[127.6396,-1.8422],[127.6452,-1.8289],[127.6412,-1.822],[127.6346,-1.8209]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.103,-1.5613],[128.0885,-1.5624],[128.0842,-1.5672],[128.0844,-1.5722],[128.0889,-1.5761],[128.095,-1.5778],[128.0988,-1.5737],[128.0977,-1.5643],[128.103,-1.5613]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.068,-1.5388],[128.0666,-1.5367],[128.0594,-1.5369],[128.0586,-1.544],[128.0666,-1.5436],[128.068,-1.5388]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.0817,-1.5348],[128.0824,-1.5401],[128.0925,-1.5404],[128.0929,-1.5381],[128.0817,-1.5348]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.0387,-1.5263],[128.0316,-1.5294],[128.0375,-1.536],[128.0421,-1.5387],[128.0467,-1.5376],[128.0468,-1.5308],[128.0445,-1.5278],[128.0387,-1.5263]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.9922,-1.4879],[127.9863,-1.4866],[127.9856,-1.4936],[127.9887,-1.5004],[127.9939,-1.505],[127.9986,-1.5038],[127.9987,-1.5004],[127.9922,-1.4879]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.3974,-1.4906],[127.3963,-1.484],[127.3915,-1.4834],[127.3851,-1.4917],[127.3813,-1.4942],[127.3815,-1.5027],[127.3781,-1.5065],[127.3793,-1.5126],[127.3772,-1.5168],[127.3779,-1.522],[127.3958,-1.5241],[127.3992,-1.5161],[127.3965,-1.5115],[127.3976,-1.5066],[127.4036,-1.5106],[127.404,-1.5029],[127.4099,-1.4976],[127.4073,-1.4932],[127.3974,-1.4906]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.8686,-1.4313],[127.8719,-1.4255],[127.877,-1.4249],[127.8781,-1.4199],[127.8742,-1.4177],[127.8694,-1.4192],[127.8647,-1.4272],[127.8686,-1.4313]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.3952,-1.3799],[127.3969,-1.377],[127.3931,-1.3739],[127.3907,-1.3796],[127.3952,-1.3799]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.3608,-1.3644],[127.3576,-1.3739],[127.3543,-1.3767],[127.3484,-1.3768],[127.3507,-1.3702],[127.3481,-1.366],[127.3426,-1.3646],[127.3403,-1.3681],[127.3418,-1.3735],[127.3381,-1.3749],[127.337,-1.3789],[127.3411,-1.3849],[127.3378,-1.3878],[127.3304,-1.3802],[127.3273,-1.3814],[127.3255,-1.376],[127.3272,-1.3666],[127.3207,-1.3659],[127.3154,-1.3814],[127.3208,-1.3891],[127.315,-1.3965],[127.3054,-1.3964],[127.2999,-1.4011],[127.2991,-1.4044],[127.2919,-1.4044],[127.2845,-1.4062],[127.2845,-1.4114],[127.281,-1.414],[127.2927,-1.427],[127.2964,-1.434],[127.3032,-1.4351],[127.312,-1.4349],[127.3176,-1.4374],[127.3196,-1.4421],[127.3239,-1.4451],[127.3245,-1.451],[127.3275,-1.4543],[127.3309,-1.4463],[127.3378,-1.4411],[127.3407,-1.4349],[127.3438,-1.433],[127.3509,-1.4336],[127.3553,-1.428],[127.3632,-1.4258],[127.3754,-1.4259],[127.3774,-1.4229],[127.3825,-1.4209],[127.3944,-1.4126],[127.3935,-1.4089],[127.3986,-1.4064],[127.3996,-1.4007],[127.3926,-1.3926],[127.3924,-1.3876],[127.381,-1.3891],[127.3723,-1.3834],[127.3732,-1.3792],[127.3828,-1.3801],[127.3842,-1.3731],[127.3813,-1.3687],[127.377,-1.3682],[127.3675,-1.3776],[127.3641,-1.3751],[127.3641,-1.3704],[127.3608,-1.3644]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.642,-1.3302],[127.6344,-1.3351],[127.6291,-1.3401],[127.6262,-1.3468],[127.6175,-1.3527],[127.6118,-1.3546],[127.6082,-1.3538],[127.6026,-1.3567],[127.5899,-1.3598],[127.5883,-1.362],[127.5813,-1.3635],[127.5787,-1.3674],[127.5769,-1.3747],[127.5695,-1.3752],[127.561,-1.3793],[127.5591,-1.389],[127.5514,-1.3922],[127.5479,-1.3975],[127.5342,-1.4087],[127.5294,-1.407],[127.5214,-1.4131],[127.5213,-1.4168],[127.5132,-1.4181],[127.5133,-1.4253],[127.5164,-1.4292],[127.5172,-1.4345],[127.5078,-1.4337],[127.505,-1.4396],[127.5058,-1.4452],[127.5084,-1.4484],[127.5055,-1.4526],[127.4993,-1.453],[127.4937,-1.4497],[127.4918,-1.4446],[127.4865,-1.4462],[127.4821,-1.4406],[127.4635,-1.4371],[127.4597,-1.4383],[127.4488,-1.4326],[127.4457,-1.4266],[127.4372,-1.4262],[127.4348,-1.4222],[127.4358,-1.4184],[127.4407,-1.4175],[127.4473,-1.4136],[127.4406,-1.409],[127.4379,-1.4145],[127.4326,-1.4114],[127.4237,-1.4178],[127.4143,-1.4195],[127.4196,-1.4274],[127.423,-1.4248],[127.4315,-1.4265],[127.433,-1.4371],[127.4367,-1.4375],[127.442,-1.4344],[127.4396,-1.4454],[127.4327,-1.4532],[127.4339,-1.4564],[127.4281,-1.4578],[127.4279,-1.4646],[127.4297,-1.469],[127.4196,-1.4718],[127.416,-1.4797],[127.4188,-1.4815],[127.4165,-1.4887],[127.4204,-1.496],[127.4244,-1.495],[127.4284,-1.4984],[127.4247,-1.5025],[127.4179,-1.5067],[127.4176,-1.51],[127.4131,-1.5153],[127.4101,-1.5219],[127.4064,-1.5248],[127.408,-1.5299],[127.4053,-1.5315],[127.4036,-1.5374],[127.411,-1.546],[127.4099,-1.5573],[127.4122,-1.5626],[127.412,-1.568],[127.4074,-1.5863],[127.4001,-1.6061],[127.396,-1.6129],[127.3916,-1.6164],[127.3956,-1.6225],[127.4033,-1.6426],[127.4036,-1.6523],[127.4079,-1.657],[127.4084,-1.6617],[127.4123,-1.6642],[127.4171,-1.6636],[127.4207,-1.6585],[127.4261,-1.6709],[127.4317,-1.6755],[127.4336,-1.6793],[127.4441,-1.6854],[127.4498,-1.6874],[127.4588,-1.6926],[127.4741,-1.6987],[127.4827,-1.7033],[127.4913,-1.7107],[127.4962,-1.7172],[127.4965,-1.7224],[127.4994,-1.725],[127.5052,-1.7259],[127.5224,-1.7251],[127.5304,-1.7257],[127.5546,-1.7339],[127.5664,-1.7357],[127.5726,-1.7338],[127.5832,-1.7332],[127.5968,-1.7381],[127.6044,-1.7353],[127.6089,-1.7288],[127.609,-1.7248],[127.6126,-1.7199],[127.6175,-1.7176],[127.6214,-1.7209],[127.627,-1.719],[127.6436,-1.7292],[127.6531,-1.7306],[127.6616,-1.7279],[127.6692,-1.722],[127.6704,-1.711],[127.6779,-1.7041],[127.6843,-1.7053],[127.6919,-1.7036],[127.6978,-1.696],[127.7063,-1.6897],[127.7163,-1.6869],[127.7244,-1.6867],[127.7295,-1.6879],[127.7344,-1.6952],[127.7426,-1.6938],[127.7473,-1.6877],[127.7568,-1.687],[127.7638,-1.6898],[127.7743,-1.6892],[127.7836,-1.6937],[127.7919,-1.6962],[127.7978,-1.6957],[127.8131,-1.6992],[127.817,-1.7009],[127.8303,-1.6978],[127.8357,-1.6941],[127.8438,-1.6941],[127.8491,-1.6982],[127.8537,-1.6982],[127.865,-1.6935],[127.8708,-1.6929],[127.8776,-1.6892],[127.8823,-1.6851],[127.8872,-1.6832],[127.8938,-1.6833],[127.9026,-1.6855],[127.9057,-1.6844],[127.9132,-1.6876],[127.9196,-1.6878],[127.9416,-1.6923],[127.9505,-1.6959],[127.9614,-1.6955],[127.9672,-1.6977],[127.9765,-1.698],[127.9857,-1.701],[127.9999,-1.7091],[128.0039,-1.7128],[128.0087,-1.7205],[128.0136,-1.7218],[128.0244,-1.7273],[128.0291,-1.7223],[128.0392,-1.7179],[128.0514,-1.7179],[128.0569,-1.7192],[128.0646,-1.7191],[128.0718,-1.716],[128.0809,-1.7166],[128.087,-1.7224],[128.0936,-1.72],[128.1018,-1.7142],[128.1108,-1.7018],[128.123,-1.698],[128.1311,-1.6925],[128.142,-1.6887],[128.1472,-1.6884],[128.156,-1.6844],[128.1595,-1.6766],[128.1661,-1.6511],[128.1681,-1.6404],[128.1683,-1.6332],[128.1663,-1.6195],[128.1637,-1.6122],[128.1585,-1.6048],[128.1524,-1.5993],[128.1495,-1.5941],[128.1405,-1.5881],[128.126,-1.5704],[128.1212,-1.5657],[128.1109,-1.5605],[128.1061,-1.5678],[128.1042,-1.5734],[128.0994,-1.5791],[128.096,-1.5785],[128.0897,-1.584],[128.0838,-1.5815],[128.0806,-1.5771],[128.0779,-1.5815],[128.0725,-1.5791],[128.0746,-1.5752],[128.0813,-1.5743],[128.0799,-1.5681],[128.0764,-1.5652],[128.0707,-1.5643],[128.0599,-1.5666],[128.056,-1.5598],[128.0533,-1.5597],[128.051,-1.5527],[128.0455,-1.5504],[128.0457,-1.5458],[128.0411,-1.544],[128.0381,-1.5401],[128.0202,-1.5263],[128.0109,-1.5145],[128.0034,-1.5102],[127.9986,-1.5095],[127.9969,-1.5122],[127.9915,-1.5122],[127.9903,-1.5047],[127.9813,-1.4938],[127.9824,-1.4918],[127.9783,-1.484],[127.9673,-1.4773],[127.9578,-1.4747],[127.9552,-1.4726],[127.9514,-1.4652],[127.935,-1.4486],[127.9305,-1.446],[127.9151,-1.4399],[127.8988,-1.432],[127.8941,-1.4267],[127.8876,-1.4255],[127.8782,-1.4393],[127.8696,-1.4354],[127.86,-1.4351],[127.8578,-1.4377],[127.8459,-1.4381],[127.8426,-1.435],[127.8368,-1.4347],[127.8358,-1.4304],[127.8397,-1.4291],[127.8397,-1.4254],[127.8317,-1.4236],[127.8244,-1.4171],[127.8208,-1.4175],[127.817,-1.414],[127.8096,-1.4167],[127.8012,-1.4134],[127.7917,-1.3898],[127.7893,-1.3887],[127.794,-1.3808],[127.7931,-1.3731],[127.7888,-1.3706],[127.7803,-1.373],[127.7743,-1.3661],[127.7673,-1.3635],[127.7623,-1.3587],[127.7603,-1.3525],[127.7578,-1.3519],[127.7501,-1.3569],[127.7452,-1.3529],[127.7376,-1.3503],[127.7321,-1.3434],[127.7236,-1.3431],[127.7137,-1.3376],[127.7067,-1.3354],[127.698,-1.3424],[127.7016,-1.3438],[127.7024,-1.3523],[127.693,-1.3506],[127.6893,-1.3479],[127.6829,-1.3465],[127.6803,-1.3433],[127.6801,-1.3377],[127.6739,-1.3313],[127.6685,-1.3325],[127.6658,-1.3401],[127.6692,-1.3452],[127.6606,-1.3462],[127.6565,-1.3431],[127.6541,-1.3338],[127.6513,-1.331],[127.642,-1.3302]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.3982,-1.3125],[127.3926,-1.3119],[127.3761,-1.3162],[127.3769,-1.3216],[127.3847,-1.3276],[127.3931,-1.3278],[127.3933,-1.3243],[127.4017,-1.3212],[127.3995,-1.3278],[127.4087,-1.3296],[127.4071,-1.326],[127.4108,-1.3228],[127.4151,-1.3238],[127.4129,-1.3323],[127.4218,-1.332],[127.4346,-1.3185],[127.4173,-1.3155],[127.4138,-1.3131],[127.4058,-1.3121],[127.3982,-1.3125]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.5583,-1.1791],[127.5538,-1.1747],[127.5476,-1.171],[127.5391,-1.1793],[127.5281,-1.1765],[127.5191,-1.1784],[127.5122,-1.1771],[127.5097,-1.1791],[127.5094,-1.1922],[127.5104,-1.1992],[127.5057,-1.207],[127.4945,-1.212],[127.4849,-1.2136],[127.4796,-1.2174],[127.4703,-1.2344],[127.4652,-1.2413],[127.4654,-1.251],[127.4699,-1.2553],[127.4849,-1.2605],[127.4884,-1.2703],[127.4926,-1.2716],[127.4996,-1.2697],[127.5107,-1.2694],[127.5162,-1.2676],[127.5262,-1.2575],[127.5277,-1.2528],[127.5337,-1.2495],[127.5464,-1.2501],[127.553,-1.249],[127.565,-1.2491],[127.5722,-1.2523],[127.5787,-1.2525],[127.5845,-1.2565],[127.5957,-1.2581],[127.6138,-1.2637],[127.6173,-1.2673],[127.6259,-1.2729],[127.6293,-1.2777],[127.6378,-1.2827],[127.644,-1.2839],[127.6587,-1.284],[127.6709,-1.2919],[127.6759,-1.2929],[127.6761,-1.2878],[127.6691,-1.2865],[127.6759,-1.2814],[127.6806,-1.2835],[127.6886,-1.2846],[127.6945,-1.268],[127.6974,-1.2565],[127.6964,-1.2443],[127.6943,-1.2394],[127.6964,-1.2292],[127.6943,-1.226],[127.6883,-1.2264],[127.6705,-1.223],[127.6607,-1.2251],[127.6539,-1.224],[127.6492,-1.2212],[127.6415,-1.2214],[127.6345,-1.2183],[127.6251,-1.212],[127.6091,-1.2074],[127.5989,-1.2104],[127.5932,-1.2018],[127.5859,-1.2023],[127.5818,-1.1983],[127.5774,-1.1969],[127.5691,-1.1904],[127.5651,-1.1886],[127.5626,-1.1822],[127.5583,-1.1791]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.435,-1.1528],[128.4331,-1.1494],[128.427,-1.1457],[128.422,-1.1524],[128.4102,-1.1534],[128.4096,-1.1568],[128.4172,-1.16],[128.4259,-1.1554],[128.4347,-1.1566],[128.435,-1.1528]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.426,-1.1484],[127.4197,-1.1408],[127.4134,-1.1368],[127.4077,-1.1369],[127.4039,-1.1401],[127.3969,-1.1429],[127.397,-1.1497],[127.4028,-1.1501],[127.4058,-1.1548],[127.4059,-1.1598],[127.4092,-1.1628],[127.4087,-1.1778],[127.4075,-1.1827],[127.4087,-1.2003],[127.4123,-1.2024],[127.4134,-1.207],[127.4193,-1.2153],[127.4242,-1.2203],[127.4321,-1.2201],[127.4396,-1.2143],[127.4441,-1.2012],[127.4439,-1.1861],[127.4351,-1.1772],[127.4322,-1.1688],[127.4319,-1.1597],[127.426,-1.1484]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.3799,-1.1338],[128.3675,-1.1308],[128.3638,-1.1351],[128.375,-1.1411],[128.3877,-1.1434],[128.4031,-1.1556],[128.4055,-1.15],[128.3846,-1.1392],[128.3799,-1.1338]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.4015,-1.122],[128.3907,-1.1222],[128.3871,-1.1255],[128.3924,-1.1365],[128.3998,-1.138],[128.4016,-1.1352],[128.4033,-1.1255],[128.4015,-1.122]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.3404,-1.1087],[128.3328,-1.1087],[128.3291,-1.112],[128.3297,-1.1155],[128.3462,-1.1216],[128.3479,-1.1192],[128.3469,-1.1123],[128.3404,-1.1087]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.3442,-1.1031],[128.3419,-1.1011],[128.3356,-1.1051],[128.3426,-1.1076],[128.3442,-1.1031]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.3418,-1.0966],[128.3368,-1.0955],[128.3342,-1.0988],[128.338,-1.1023],[128.3418,-1.0966]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.3765,-1.0775],[128.3708,-1.0733],[128.36,-1.0737],[128.3541,-1.0769],[128.3437,-1.089],[128.3444,-1.0932],[128.3497,-1.0946],[128.3559,-1.0931],[128.3576,-1.0986],[128.3562,-1.1034],[128.3613,-1.1067],[128.3601,-1.1188],[128.369,-1.1221],[128.3767,-1.1206],[128.3822,-1.1125],[128.3879,-1.1076],[128.3945,-1.106],[128.3979,-1.101],[128.4023,-1.0994],[128.4075,-1.1013],[128.4125,-1.0993],[128.4196,-1.1038],[128.4234,-1.1023],[128.4306,-1.1082],[128.4249,-1.1135],[128.4272,-1.1172],[128.4331,-1.1182],[128.44,-1.1229],[128.4481,-1.1237],[128.4509,-1.1303],[128.4536,-1.1304],[128.4544,-1.1242],[128.4475,-1.121],[128.4413,-1.1201],[128.4372,-1.1176],[128.4333,-1.1093],[128.4207,-1.0952],[128.4138,-1.0926],[128.4112,-1.0877],[128.4009,-1.0836],[128.395,-1.0826],[128.3811,-1.0767],[128.3765,-1.0775]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.2332,-1.0477],[128.2316,-1.038],[128.226,-1.0397],[128.2287,-1.0604],[128.231,-1.0646],[128.2382,-1.0683],[128.2436,-1.0653],[128.2352,-1.0623],[128.2337,-1.0546],[128.2354,-1.0507],[128.2403,-1.0461],[128.2458,-1.0478],[128.2485,-1.0533],[128.2519,-1.0488],[128.2505,-1.0443],[128.2388,-1.0401],[128.2332,-1.0477]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.3452,-1.0358],[128.3403,-1.0386],[128.3347,-1.0393],[128.3371,-1.0507],[128.3403,-1.0543],[128.345,-1.0555],[128.3517,-1.0537],[128.3605,-1.0443],[128.3583,-1.0417],[128.3466,-1.0353],[128.3452,-1.0358]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.1793,-1.038],[128.1782,-1.0334],[128.1742,-1.033],[128.176,-1.0396],[128.1793,-1.038]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.3591,-0.9548],[128.3583,-0.9481],[128.3536,-0.9506],[128.3591,-0.9548]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.3201,-0.9382],[128.3157,-0.9377],[128.3131,-0.9442],[128.3079,-0.945],[128.3058,-0.9555],[128.3088,-0.9586],[128.3082,-0.9661],[128.3223,-0.9706],[128.3266,-0.9696],[128.3299,-0.9729],[128.3391,-0.9742],[128.3396,-0.9817],[128.3372,-0.984],[128.3338,-0.9944],[128.3362,-0.9993],[128.3342,-1.0054],[128.3344,-1.012],[128.3295,-1.0143],[128.3345,-1.0226],[128.3398,-1.0226],[128.348,-1.0317],[128.3602,-1.0375],[128.3633,-1.0413],[128.3771,-1.0375],[128.3874,-1.0391],[128.3991,-1.0389],[128.4048,-1.0363],[128.414,-1.0288],[128.4198,-1.0207],[128.4202,-1.0151],[128.417,-1.0026],[128.409,-0.9957],[128.4051,-0.9901],[128.3956,-0.9899],[128.3865,-0.9937],[128.3855,-0.9987],[128.3795,-0.9981],[128.3737,-0.9955],[128.374,-0.9931],[128.368,-0.9899],[128.3648,-0.986],[128.3552,-0.9802],[128.3569,-0.976],[128.3529,-0.971],[128.3478,-0.969],[128.3455,-0.9653],[128.3398,-0.9655],[128.3337,-0.9611],[128.3395,-0.9556],[128.3355,-0.9512],[128.3381,-0.9485],[128.3348,-0.9449],[128.3231,-0.9384],[128.3201,-0.9382]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.1211,-0.8476],[128.1232,-0.8436],[128.1198,-0.8414],[128.1163,-0.8433],[128.1129,-0.8523],[128.1151,-0.8556],[128.1222,-0.8528],[128.1211,-0.8476]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.0952,-0.8383],[128.0853,-0.8389],[128.081,-0.8451],[128.0811,-0.8527],[128.0869,-0.8562],[128.0899,-0.8549],[128.1033,-0.8617],[128.1057,-0.8572],[128.1117,-0.8528],[128.1072,-0.8489],[128.1039,-0.849],[128.1022,-0.8439],[128.0982,-0.844],[128.0952,-0.8383]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.1345,-0.8047],[128.1372,-0.8106],[128.1407,-0.8082],[128.151,-0.8078],[128.1486,-0.8044],[128.1416,-0.8062],[128.1345,-0.8047]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.1572,-0.7936],[128.1518,-0.796],[128.1548,-0.7997],[128.1595,-0.7976],[128.1572,-0.7936]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.1625,-0.7512],[127.1599,-0.7557],[127.1626,-0.7589],[127.1736,-0.7627],[127.175,-0.7674],[127.181,-0.7687],[127.1736,-0.7591],[127.1691,-0.7581],[127.1625,-0.7512]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.3236,-0.6556],[127.316,-0.6476],[127.3158,-0.6438],[127.308,-0.6316],[127.3015,-0.6341],[127.3027,-0.646],[127.3107,-0.6506],[127.316,-0.6584],[127.3224,-0.6624],[127.3236,-0.6556]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.5932,-0.628],[128.5906,-0.6308],[128.5838,-0.6322],[128.5865,-0.6367],[128.5971,-0.6423],[128.5935,-0.6466],[128.5952,-0.6542],[128.6034,-0.6515],[128.6071,-0.6464],[128.6063,-0.6402],[128.5976,-0.6286],[128.5932,-0.628]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.3287,-0.6246],[127.3278,-0.6208],[127.323,-0.6187],[127.3144,-0.6192],[127.309,-0.6248],[127.3133,-0.6312],[127.3169,-0.6399],[127.3204,-0.6432],[127.3238,-0.6497],[127.3279,-0.6519],[127.3314,-0.6581],[127.3346,-0.6556],[127.3309,-0.6459],[127.3298,-0.6383],[127.3308,-0.631],[127.3287,-0.6246]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.2442,-0.6033],[127.2302,-0.6053],[127.2232,-0.6037],[127.2182,-0.605],[127.2137,-0.6117],[127.2073,-0.6174],[127.1947,-0.6144],[127.1926,-0.6177],[127.1959,-0.6204],[127.2023,-0.6326],[127.2059,-0.6348],[127.2102,-0.6337],[127.217,-0.638],[127.2161,-0.6484],[127.21,-0.6511],[127.207,-0.6652],[127.2131,-0.6702],[127.2065,-0.6761],[127.2014,-0.6729],[127.1942,-0.6765],[127.1932,-0.6855],[127.191,-0.6925],[127.1865,-0.6964],[127.1795,-0.6981],[127.1736,-0.7078],[127.1686,-0.7074],[127.17,-0.713],[127.1751,-0.7159],[127.1676,-0.7183],[127.1694,-0.728],[127.1691,-0.7362],[127.1645,-0.7486],[127.1699,-0.7512],[127.1808,-0.7663],[127.1945,-0.7745],[127.1996,-0.7755],[127.2002,-0.7789],[127.2096,-0.7806],[127.2274,-0.7796],[127.2312,-0.7704],[127.2418,-0.7658],[127.2572,-0.7705],[127.2664,-0.7768],[127.2721,-0.7775],[127.2785,-0.7814],[127.2803,-0.7871],[127.2901,-0.7966],[127.2965,-0.7993],[127.3086,-0.7976],[127.3164,-0.7948],[127.3345,-0.786],[127.3275,-0.7762],[127.3269,-0.7722],[127.3183,-0.7629],[127.3121,-0.7536],[127.3033,-0.7461],[127.3022,-0.7417],[127.2945,-0.7313],[127.2957,-0.7158],[127.2951,-0.7103],[127.291,-0.7084],[127.2972,-0.7044],[127.3,-0.6923],[127.2931,-0.6922],[127.2951,-0.687],[127.3031,-0.6891],[127.3044,-0.6862],[127.3017,-0.6808],[127.2955,-0.6786],[127.2903,-0.6741],[127.289,-0.6692],[127.274,-0.6627],[127.27,-0.6644],[127.264,-0.662],[127.2643,-0.6549],[127.259,-0.6501],[127.2531,-0.6485],[127.2507,-0.6392],[127.2473,-0.6357],[127.2487,-0.6269],[127.254,-0.6291],[127.2655,-0.6276],[127.2713,-0.6218],[127.2686,-0.6161],[127.258,-0.6078],[127.2583,-0.6057],[127.2496,-0.6031],[127.2442,-0.6033]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.3379,-0.6124],[127.3389,-0.6055],[127.3361,-0.6006],[127.3314,-0.6008],[127.3243,-0.6068],[127.3312,-0.6118],[127.334,-0.617],[127.3372,-0.631],[127.3354,-0.6405],[127.3366,-0.6454],[127.3407,-0.6458],[127.3481,-0.6585],[127.3576,-0.6616],[127.3618,-0.6609],[127.3656,-0.6653],[127.3689,-0.6653],[127.3751,-0.6616],[127.3745,-0.6556],[127.3685,-0.6521],[127.372,-0.6496],[127.3764,-0.6527],[127.3789,-0.6588],[127.3775,-0.6678],[127.3803,-0.6675],[127.3859,-0.6627],[127.3844,-0.6566],[127.3988,-0.6555],[127.4097,-0.66],[127.4149,-0.6564],[127.4128,-0.652],[127.4156,-0.6443],[127.4149,-0.6374],[127.4081,-0.6368],[127.4017,-0.629],[127.4004,-0.6233],[127.3926,-0.6194],[127.3807,-0.6093],[127.3764,-0.6088],[127.3701,-0.6127],[127.3659,-0.6173],[127.3582,-0.6168],[127.3544,-0.6138],[127.3421,-0.6119],[127.3379,-0.6124]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.4994,-0.5925],[128.4949,-0.5986],[128.5016,-0.6077],[128.5164,-0.6162],[128.5166,-0.6101],[128.5139,-0.6047],[128.4994,-0.5925]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.3929,-0.5992],[127.3886,-0.5922],[127.3825,-0.5953],[127.3851,-0.6058],[127.3882,-0.6064],[127.3949,-0.6028],[127.3929,-0.5992]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.4145,-0.5975],[128.4103,-0.5964],[128.4103,-0.604],[128.4197,-0.5985],[128.4145,-0.5975]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.4783,-0.5833],[128.4746,-0.5879],[128.4771,-0.5917],[128.4848,-0.5926],[128.4881,-0.5882],[128.4783,-0.5833]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.6123,-0.5781],[127.6098,-0.5759],[127.6044,-0.5784],[127.6067,-0.5854],[127.6142,-0.5827],[127.6123,-0.5781]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.3484,-0.5665],[128.3463,-0.5668],[128.3386,-0.5729],[128.3303,-0.5756],[128.3335,-0.5795],[128.3424,-0.5791],[128.3478,-0.5834],[128.3545,-0.5816],[128.3616,-0.5752],[128.3574,-0.5701],[128.3537,-0.5754],[128.3492,-0.5771],[128.3436,-0.5742],[128.3426,-0.5706],[128.3484,-0.5665]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.4121,-0.5595],[128.4093,-0.5583],[128.4054,-0.5613],[128.4093,-0.5681],[128.4126,-0.5671],[128.4172,-0.57],[128.4253,-0.5788],[128.4295,-0.5787],[128.4264,-0.5917],[128.4335,-0.5891],[128.4384,-0.5829],[128.4418,-0.574],[128.4399,-0.5702],[128.4309,-0.5693],[128.4206,-0.5651],[128.4121,-0.5595]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.3312,-0.5476],[128.326,-0.5476],[128.3156,-0.5503],[128.3172,-0.5544],[128.3249,-0.5559],[128.3345,-0.5561],[128.3398,-0.5549],[128.3375,-0.5507],[128.3312,-0.5476]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.2351,-0.5373],[127.2337,-0.5328],[127.2289,-0.5369],[127.2302,-0.5434],[127.2241,-0.5445],[127.2248,-0.548],[127.2338,-0.547],[127.2402,-0.5527],[127.243,-0.5466],[127.2485,-0.5437],[127.2351,-0.5373]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.2805,-0.5326],[127.2773,-0.5331],[127.277,-0.5388],[127.2804,-0.5409],[127.2841,-0.5343],[127.2805,-0.5326]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[128.3759,-0.5321],[128.371,-0.5276],[128.3662,-0.5276],[128.3574,-0.5351],[128.346,-0.5392],[128.3358,-0.5462],[128.3426,-0.5521],[128.3484,-0.5523],[128.3528,-0.5501],[128.3623,-0.5494],[128.3694,-0.5578],[128.3782,-0.5591],[128.3806,-0.5543],[128.3721,-0.5546],[128.3677,-0.5497],[128.3543,-0.5465],[128.3611,-0.5394],[128.3659,-0.5373],[128.3744,-0.5446],[128.3869,-0.5517],[128.3978,-0.5561],[128.4045,-0.5618],[128.4098,-0.5551],[128.404,-0.5525],[128.4014,-0.5475],[128.3914,-0.5438],[128.3818,-0.5381],[128.3759,-0.5321]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.2613,-0.5021],[127.2587,-0.503],[127.2528,-0.5118],[127.2556,-0.5154],[127.2604,-0.5142],[127.2642,-0.5156],[127.2655,-0.5195],[127.2611,-0.5249],[127.2673,-0.5317],[127.2732,-0.5288],[127.2702,-0.5258],[127.2671,-0.5166],[127.2668,-0.5095],[127.268,-0.5018],[127.2613,-0.5021]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.2875,-0.4887],[127.2795,-0.4918],[127.2739,-0.4974],[127.274,-0.5079],[127.2799,-0.5091],[127.2822,-0.5169],[127.287,-0.5255],[127.2907,-0.5229],[127.2964,-0.5146],[127.2944,-0.5062],[127.2875,-0.5014],[127.2928,-0.4994],[127.2958,-0.4934],[127.2912,-0.493],[127.2875,-0.4887]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.2691,-0.4795],[127.2637,-0.4831],[127.2698,-0.4856],[127.2751,-0.482],[127.2691,-0.4795]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.7111,-0.4546],[127.7042,-0.452],[127.704,-0.4562],[127.7111,-0.4546]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.7285,-0.4116],[127.7253,-0.4128],[127.7282,-0.4217],[127.734,-0.4296],[127.7401,-0.4312],[127.7399,-0.4252],[127.7353,-0.4202],[127.7334,-0.4158],[127.7285,-0.4116]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.433,-0.3509],[127.4243,-0.353],[127.4246,-0.3583],[127.4311,-0.3594],[127.4335,-0.3551],[127.433,-0.3509]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.2919,-0.3342],[127.2875,-0.334],[127.2833,-0.34],[127.2811,-0.3475],[127.2902,-0.3496],[127.2977,-0.3441],[127.2991,-0.3413],[127.2947,-0.335],[127.2919,-0.3342]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.7446,-0.3269],[127.7426,-0.3292],[127.7438,-0.3385],[127.7409,-0.3388],[127.7372,-0.3435],[127.7362,-0.3486],[127.7387,-0.3539],[127.7388,-0.37],[127.7349,-0.3759],[127.7331,-0.383],[127.7276,-0.3897],[127.7255,-0.3955],[127.7298,-0.3967],[127.7369,-0.3904],[127.7402,-0.3822],[127.7439,-0.3824],[127.7484,-0.3766],[127.7534,-0.377],[127.7573,-0.3751],[127.7587,-0.3698],[127.7516,-0.3603],[127.7564,-0.3554],[127.7506,-0.3466],[127.7485,-0.3407],[127.7503,-0.3336],[127.7478,-0.3274],[127.7446,-0.3269]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.4073,-0.3404],[127.4061,-0.3386],[127.4103,-0.326],[127.4097,-0.3208],[127.4056,-0.3194],[127.4002,-0.3222],[127.3989,-0.3264],[127.3997,-0.3358],[127.4042,-0.3406],[127.4073,-0.3404]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.5251,-0.3018],[127.5207,-0.3016],[127.5155,-0.3097],[127.5148,-0.3178],[127.5187,-0.3205],[127.5138,-0.3263],[127.5015,-0.3334],[127.4975,-0.3384],[127.4925,-0.3416],[127.4861,-0.3395],[127.4841,-0.3481],[127.4879,-0.3537],[127.4824,-0.355],[127.4824,-0.3599],[127.476,-0.3641],[127.4785,-0.3721],[127.475,-0.3761],[127.4793,-0.3842],[127.4782,-0.3891],[127.4744,-0.3919],[127.469,-0.4019],[127.4634,-0.4014],[127.4603,-0.4038],[127.4546,-0.4028],[127.4525,-0.4057],[127.4577,-0.4088],[127.4571,-0.4165],[127.4509,-0.4189],[127.4371,-0.4126],[127.4317,-0.4074],[127.4276,-0.4071],[127.4238,-0.3997],[127.4176,-0.3933],[127.418,-0.388],[127.415,-0.384],[127.4163,-0.3808],[127.4117,-0.3755],[127.4148,-0.3669],[127.412,-0.3637],[127.4125,-0.3584],[127.4073,-0.352],[127.4028,-0.3507],[127.4027,-0.3449],[127.3973,-0.3437],[127.3937,-0.3456],[127.3858,-0.3343],[127.3863,-0.3322],[127.3802,-0.3254],[127.3745,-0.3238],[127.3725,-0.317],[127.3653,-0.3178],[127.36,-0.3229],[127.3571,-0.3303],[127.3474,-0.3358],[127.3407,-0.3349],[127.3366,-0.3386],[127.3322,-0.3346],[127.321,-0.33],[127.3205,-0.3419],[127.3247,-0.3454],[127.3351,-0.3625],[127.3352,-0.3695],[127.3377,-0.3763],[127.3383,-0.3843],[127.3307,-0.3967],[127.3323,-0.3988],[127.3315,-0.4062],[127.3272,-0.4118],[127.3246,-0.4181],[127.3187,-0.4239],[127.3188,-0.4285],[127.3122,-0.4338],[127.3032,-0.4323],[127.2952,-0.4377],[127.2953,-0.4434],[127.2931,-0.4537],[127.2911,-0.4573],[127.2922,-0.4668],[127.2912,-0.471],[127.2951,-0.4766],[127.2952,-0.4817],[127.3005,-0.4846],[127.3021,-0.4882],[127.3086,-0.4961],[127.3071,-0.5037],[127.3048,-0.5054],[127.307,-0.5133],[127.31,-0.5167],[127.316,-0.5167],[127.3178,-0.5208],[127.3255,-0.5293],[127.3313,-0.5299],[127.3395,-0.5401],[127.3465,-0.5393],[127.3444,-0.5478],[127.3532,-0.5599],[127.3596,-0.5621],[127.3601,-0.5716],[127.3589,-0.5778],[127.3689,-0.5842],[127.3777,-0.5921],[127.3835,-0.5865],[127.3898,-0.5883],[127.3949,-0.596],[127.399,-0.5979],[127.4007,-0.6046],[127.4095,-0.6162],[127.4125,-0.619],[127.4163,-0.6154],[127.4148,-0.6094],[127.4212,-0.6075],[127.4293,-0.6102],[127.4309,-0.621],[127.4422,-0.6258],[127.4483,-0.6274],[127.4514,-0.6302],[127.4579,-0.6318],[127.4594,-0.6256],[127.4652,-0.6295],[127.4716,-0.6273],[127.4805,-0.6308],[127.4799,-0.6391],[127.4781,-0.6452],[127.4784,-0.6595],[127.4739,-0.6703],[127.4661,-0.678],[127.4611,-0.6891],[127.4553,-0.6919],[127.4531,-0.697],[127.4506,-0.7092],[127.4485,-0.7136],[127.4429,-0.7332],[127.4421,-0.7396],[127.4435,-0.7507],[127.4482,-0.7608],[127.4478,-0.7695],[127.453,-0.7794],[127.4604,-0.7886],[127.4597,-0.7933],[127.463,-0.8139],[127.4678,-0.8146],[127.4728,-0.8182],[127.4745,-0.8236],[127.4787,-0.8217],[127.4916,-0.8128],[127.4955,-0.8093],[127.4996,-0.8015],[127.5058,-0.7987],[127.5214,-0.796],[127.5279,-0.7929],[127.5322,-0.7891],[127.5397,-0.7866],[127.5464,-0.7859],[127.5548,-0.778],[127.5623,-0.777],[127.5662,-0.7735],[127.5738,-0.7701],[127.5933,-0.7689],[127.6119,-0.7624],[127.6217,-0.7509],[127.6246,-0.7443],[127.6301,-0.741],[127.6359,-0.7418],[127.6442,-0.7463],[127.6522,-0.7488],[127.6545,-0.7572],[127.6629,-0.7731],[127.665,-0.7754],[127.6646,-0.7813],[127.6552,-0.7923],[127.6597,-0.7964],[127.6581,-0.8012],[127.6621,-0.807],[127.6575,-0.8079],[127.6584,-0.8126],[127.6659,-0.8186],[127.666,-0.8222],[127.6705,-0.824],[127.6761,-0.82],[127.6822,-0.8219],[127.6849,-0.8261],[127.686,-0.833],[127.6821,-0.8368],[127.6881,-0.8426],[127.695,-0.8456],[127.7018,-0.8452],[127.708,-0.8492],[127.7131,-0.8505],[127.7178,-0.8546],[127.7241,-0.8528],[127.7298,-0.8494],[127.7361,-0.8537],[127.7487,-0.8579],[127.7524,-0.8624],[127.7434,-0.8645],[127.7381,-0.8614],[127.7347,-0.8645],[127.7315,-0.8633],[127.7279,-0.8665],[127.7322,-0.8712],[127.7489,-0.8692],[127.7526,-0.8699],[127.7583,-0.8659],[127.7637,-0.8663],[127.77,-0.8694],[127.7702,-0.8637],[127.7805,-0.859],[127.7892,-0.8642],[127.7969,-0.858],[127.8066,-0.856],[127.8088,-0.8567],[127.8189,-0.8511],[127.8272,-0.8549],[127.831,-0.8512],[127.8306,-0.8469],[127.8335,-0.8434],[127.8411,-0.8444],[127.8462,-0.8395],[127.8444,-0.8371],[127.847,-0.8319],[127.851,-0.8315],[127.8518,-0.8271],[127.858,-0.8251],[127.8704,-0.8269],[127.8717,-0.8211],[127.8803,-0.8114],[127.8762,-0.805],[127.8794,-0.796],[127.8838,-0.796],[127.8887,-0.8001],[127.8972,-0.7993],[127.8988,-0.7946],[127.8861,-0.7889],[127.8807,-0.7825],[127.879,-0.7767],[127.882,-0.7758],[127.8926,-0.7806],[127.9019,-0.7824],[127.905,-0.7799],[127.9024,-0.7763],[127.9014,-0.7693],[127.8966,-0.7695],[127.8908,-0.7638],[127.8921,-0.7598],[127.8825,-0.7514],[127.8771,-0.7597],[127.8722,-0.751],[127.876,-0.7393],[127.8764,-0.7312],[127.87,-0.73],[127.8696,-0.7251],[127.8733,-0.7199],[127.8633,-0.7093],[127.8568,-0.708],[127.8555,-0.7131],[127.8514,-0.7093],[127.8445,-0.7092],[127.844,-0.7056],[127.8374,-0.7007],[127.8257,-0.6986],[127.8179,-0.6901],[127.8056,-0.6839],[127.7973,-0.6786],[127.7892,-0.6828],[127.7847,-0.6796],[127.7747,-0.6821],[127.7668,-0.6872],[127.7649,-0.6919],[127.7607,-0.6934],[127.7544,-0.6918],[127.7437,-0.6861],[127.7377,-0.6866],[127.7305,-0.6918],[127.7221,-0.6922],[127.7143,-0.6908],[127.7086,-0.6947],[127.7051,-0.6992],[127.6993,-0.701],[127.6974,-0.705],[127.6914,-0.71],[127.6839,-0.7116],[127.6719,-0.71],[127.6684,-0.7054],[127.6555,-0.6929],[127.6523,-0.6839],[127.649,-0.6818],[127.6514,-0.6701],[127.6467,-0.6647],[127.652,-0.6602],[127.6554,-0.6469],[127.6514,-0.6443],[127.6466,-0.6382],[127.647,-0.6291],[127.6413,-0.6271],[127.6344,-0.6294],[127.626,-0.6286],[127.623,-0.6303],[127.6127,-0.6312],[127.6063,-0.6288],[127.6005,-0.6201],[127.5976,-0.6193],[127.6005,-0.6096],[127.5968,-0.5949],[127.6014,-0.5856],[127.6021,-0.5755],[127.6109,-0.5744],[127.6139,-0.5693],[127.6189,-0.566],[127.6248,-0.5575],[127.6294,-0.5487],[127.6358,-0.5417],[127.6376,-0.537],[127.6452,-0.5305],[127.6477,-0.5301],[127.654,-0.5223],[127.6603,-0.5208],[127.6639,-0.5171],[127.6646,-0.5106],[127.6722,-0.5007],[127.6757,-0.4991],[127.6743,-0.4873],[127.6776,-0.4809],[127.6843,-0.4753],[127.6866,-0.471],[127.6903,-0.4694],[127.6926,-0.4564],[127.6845,-0.4552],[127.6798,-0.4506],[127.6795,-0.446],[127.6605,-0.4403],[127.6579,-0.4381],[127.6589,-0.433],[127.6572,-0.426],[127.65,-0.423],[127.6522,-0.4177],[127.6479,-0.4138],[127.6399,-0.4105],[127.6357,-0.4115],[127.6282,-0.4104],[127.6269,-0.4149],[127.6212,-0.4161],[127.6177,-0.4134],[127.6206,-0.4064],[127.615,-0.4022],[127.6163,-0.3976],[127.6145,-0.3909],[127.6157,-0.3858],[127.6083,-0.3725],[127.6017,-0.3709],[127.599,-0.3761],[127.5938,-0.3745],[127.5957,-0.3701],[127.5932,-0.3655],[127.5927,-0.3587],[127.588,-0.356],[127.5871,-0.3505],[127.5788,-0.3473],[127.5766,-0.3416],[127.5811,-0.3377],[127.5814,-0.3336],[127.5728,-0.3236],[127.5696,-0.3221],[127.5689,-0.3155],[127.5564,-0.3147],[127.5471,-0.3152],[127.54,-0.3133],[127.5313,-0.3034],[127.5251,-0.3018]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.548,-0.299],[127.5424,-0.3001],[127.5463,-0.3096],[127.5496,-0.3109],[127.5647,-0.3114],[127.5671,-0.304],[127.5633,-0.3004],[127.548,-0.299]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.0616,-0.2757],[127.0576,-0.2786],[127.0559,-0.2846],[127.0574,-0.2909],[127.0614,-0.2938],[127.0672,-0.2943],[127.0693,-0.2911],[127.0669,-0.2833],[127.0613,-0.285],[127.0631,-0.2785],[127.0616,-0.2757]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.2406,-0.2457],[127.2223,-0.2572],[127.2168,-0.2585],[127.2064,-0.2548],[127.1997,-0.2573],[127.1949,-0.2541],[127.1892,-0.2552],[127.1821,-0.2625],[127.1752,-0.2643],[127.1615,-0.2575],[127.1573,-0.2644],[127.1509,-0.2623],[127.1476,-0.2588],[127.1379,-0.2741],[127.1322,-0.2748],[127.1243,-0.2796],[127.1186,-0.2859],[127.1093,-0.2836],[127.1086,-0.2872],[127.1117,-0.2917],[127.1167,-0.2878],[127.1218,-0.293],[127.1196,-0.2989],[127.115,-0.3031],[127.123,-0.3076],[127.13,-0.3057],[127.1359,-0.3076],[127.1398,-0.3135],[127.1372,-0.316],[127.1394,-0.3216],[127.1334,-0.3235],[127.1293,-0.3369],[127.1359,-0.3417],[127.1333,-0.3579],[127.1355,-0.3608],[127.1313,-0.3679],[127.1272,-0.371],[127.1216,-0.3704],[127.1202,-0.3781],[127.1169,-0.3822],[127.1158,-0.3875],[127.1193,-0.3918],[127.1169,-0.3983],[127.1204,-0.4132],[127.1145,-0.4148],[127.1137,-0.4193],[127.1033,-0.4153],[127.1031,-0.4197],[127.1062,-0.4239],[127.1226,-0.4279],[127.126,-0.4372],[127.1226,-0.4421],[127.1288,-0.449],[127.1331,-0.45],[127.1507,-0.4624],[127.1482,-0.4667],[127.1527,-0.4684],[127.1545,-0.4741],[127.1489,-0.4765],[127.1385,-0.4748],[127.1209,-0.4732],[127.1203,-0.4798],[127.1174,-0.4868],[127.1205,-0.4943],[127.1199,-0.4998],[127.1294,-0.4974],[127.1375,-0.5018],[127.1331,-0.5049],[127.1252,-0.5066],[127.1229,-0.5097],[127.1275,-0.5174],[127.1336,-0.5146],[127.1365,-0.5173],[127.1382,-0.5228],[127.1482,-0.5265],[127.1509,-0.5241],[127.1551,-0.5266],[127.1604,-0.527],[127.1652,-0.5306],[127.172,-0.5305],[127.1711,-0.5256],[127.1756,-0.5235],[127.1795,-0.5243],[127.2008,-0.5195],[127.2081,-0.5147],[127.2153,-0.5183],[127.2212,-0.5148],[127.2237,-0.5112],[127.2287,-0.5122],[127.2314,-0.5051],[127.226,-0.496],[127.2338,-0.492],[127.2439,-0.4939],[127.2475,-0.4959],[127.257,-0.4947],[127.2631,-0.4925],[127.2648,-0.4876],[127.259,-0.4836],[127.2596,-0.4697],[127.2656,-0.467],[127.2655,-0.4644],[127.2778,-0.4564],[127.2788,-0.4513],[127.2754,-0.4469],[127.2761,-0.444],[127.273,-0.4382],[127.2674,-0.4314],[127.2658,-0.4215],[127.2672,-0.4181],[127.2625,-0.4124],[127.2634,-0.4062],[127.2747,-0.3988],[127.2869,-0.3996],[127.2873,-0.3907],[127.2841,-0.3882],[127.284,-0.3828],[127.2881,-0.3742],[127.2846,-0.3686],[127.2794,-0.3635],[127.2729,-0.355],[127.2661,-0.3502],[127.27,-0.3392],[127.2636,-0.3336],[127.2604,-0.3372],[127.2545,-0.3385],[127.2523,-0.3219],[127.2537,-0.3113],[127.2608,-0.305],[127.2613,-0.3005],[127.2583,-0.2987],[127.2571,-0.292],[127.27,-0.2889],[127.281,-0.2905],[127.2831,-0.2942],[127.2927,-0.2909],[127.2995,-0.2873],[127.3034,-0.2868],[127.303,-0.2813],[127.3059,-0.2802],[127.3053,-0.2703],[127.3004,-0.2686],[127.2929,-0.2705],[127.2895,-0.2762],[127.2823,-0.2806],[127.272,-0.2806],[127.2641,-0.2773],[127.2612,-0.2796],[127.2581,-0.2726],[127.2516,-0.2639],[127.2494,-0.2553],[127.2409,-0.2528],[127.2457,-0.2474],[127.2406,-0.2457]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.0614,-0.2284],[127.0565,-0.2313],[127.0553,-0.2371],[127.0524,-0.2416],[127.0463,-0.2406],[127.0432,-0.2419],[127.0441,-0.2499],[127.0396,-0.2552],[127.0429,-0.2584],[127.0432,-0.2647],[127.0473,-0.2699],[127.0427,-0.2749],[127.0391,-0.274],[127.039,-0.2622],[127.033,-0.2601],[127.0284,-0.2562],[127.0226,-0.2614],[127.0276,-0.2687],[127.0322,-0.27],[127.0327,-0.2756],[127.0278,-0.2804],[127.0363,-0.2874],[127.0433,-0.2804],[127.0518,-0.2806],[127.0563,-0.2743],[127.0638,-0.2733],[127.0693,-0.2708],[127.0828,-0.262],[127.091,-0.2589],[127.0897,-0.2515],[127.0903,-0.2447],[127.0842,-0.2385],[127.0822,-0.2423],[127.0777,-0.2405],[127.0736,-0.2334],[127.0614,-0.2284]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.3129,-0.2283],[127.3083,-0.2265],[127.3004,-0.2283],[127.299,-0.2305],[127.3029,-0.2388],[127.3069,-0.2422],[127.3093,-0.2354],[127.3151,-0.2366],[127.3161,-0.233],[127.3129,-0.2283]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.1355,-0.1779],[127.1281,-0.1785],[127.1249,-0.1858],[127.1222,-0.1868],[127.1129,-0.2018],[127.1127,-0.2075],[127.1096,-0.213],[127.1052,-0.2164],[127.094,-0.2116],[127.0891,-0.2233],[127.088,-0.231],[127.0931,-0.2277],[127.0974,-0.2287],[127.0979,-0.2343],[127.0963,-0.2391],[127.0925,-0.2402],[127.0946,-0.2461],[127.0912,-0.2512],[127.0922,-0.2544],[127.109,-0.2522],[127.1141,-0.243],[127.1217,-0.2407],[127.1267,-0.2353],[127.1323,-0.2241],[127.1307,-0.2148],[127.1317,-0.2117],[127.1274,-0.2051],[127.1336,-0.2041],[127.1413,-0.1977],[127.1434,-0.1931],[127.1507,-0.1869],[127.1448,-0.1803],[127.1355,-0.1779]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.4427,-0.0865],[127.4378,-0.0829],[127.4342,-0.0864],[127.4391,-0.0894],[127.443,-0.0943],[127.447,-0.0936],[127.4477,-0.0887],[127.4427,-0.0865]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.4264,-0.0853],[127.427,-0.0811],[127.4239,-0.0764],[127.42,-0.0798],[127.4232,-0.0855],[127.4264,-0.0853]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.269,-0.0718],[127.2566,-0.0778],[127.2499,-0.0777],[127.2488,-0.0833],[127.2403,-0.0781],[127.2351,-0.0855],[127.2365,-0.0886],[127.2298,-0.0918],[127.2293,-0.1009],[127.2207,-0.1055],[127.2118,-0.1152],[127.2079,-0.1167],[127.1997,-0.115],[127.1983,-0.1203],[127.2064,-0.1244],[127.2202,-0.1377],[127.2251,-0.1366],[127.2326,-0.1398],[127.2352,-0.1351],[127.2408,-0.134],[127.2466,-0.1272],[127.2545,-0.1245],[127.2614,-0.126],[127.2664,-0.115],[127.2682,-0.096],[127.2743,-0.0837],[127.269,-0.0718]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.4287,-0.0606],[127.4208,-0.0589],[127.4193,-0.0622],[127.421,-0.0696],[127.4332,-0.0749],[127.4376,-0.0729],[127.4378,-0.0686],[127.4347,-0.0631],[127.4287,-0.0606]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.4717,-0.0441],[127.4692,-0.0409],[127.4647,-0.0473],[127.4635,-0.057],[127.4687,-0.0593],[127.4681,-0.0519],[127.4724,-0.0472],[127.4717,-0.0441]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.1987,-0.0318],[127.194,-0.0266],[127.1911,-0.0286],[127.1954,-0.0348],[127.1987,-0.0318]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.2519,-0.0246],[127.2435,-0.0273],[127.2443,-0.033],[127.2484,-0.0333],[127.251,-0.0301],[127.2519,-0.0246]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.4178,-0.0175],[127.4136,-0.0177],[127.4126,-0.027],[127.4089,-0.0365],[127.4071,-0.0458],[127.4066,-0.0546],[127.4027,-0.0722],[127.4042,-0.0818],[127.4031,-0.0886],[127.4106,-0.1043],[127.4134,-0.1008],[127.4108,-0.0962],[127.412,-0.0871],[127.4161,-0.0824],[127.4154,-0.0741],[127.4166,-0.0721],[127.4166,-0.0558],[127.4213,-0.0565],[127.4227,-0.0521],[127.4284,-0.0479],[127.4295,-0.0427],[127.4262,-0.0382],[127.4234,-0.0282],[127.4243,-0.0223],[127.4212,-0.0165],[127.4178,-0.0175]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.1751,-0.0124],[127.1676,-0.0136],[127.1649,-0.017],[127.1739,-0.022],[127.1745,-0.0193],[127.1837,-0.0175],[127.1938,-0.019],[127.1915,-0.0135],[127.1751,-0.0124]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.4297,-0.0187],[127.4311,-0.0168],[127.4259,-0.0119],[127.4231,-0.0139],[127.4253,-0.0189],[127.4297,-0.0187]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.4277,0.0091],[127.4223,0.0074],[127.4174,-0.0009],[127.4231,-0.0069],[127.4257,-0.0033],[127.4259,0.002],[127.4298,0.0053],[127.4277,0.0091]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.2259,0.0365],[127.2218,0.0366],[127.217,0.0312],[127.2197,0.025],[127.2231,0.0249],[127.2265,0.0211],[127.2303,0.0243],[127.2259,0.0365]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.4365,0.1304],[127.4296,0.1347],[127.4243,0.1313],[127.4251,0.122],[127.4237,0.1075],[127.4151,0.0955],[127.4151,0.0842],[127.4125,0.0753],[127.4115,0.068],[127.4136,0.056],[127.409,0.04],[127.4094,0.0321],[127.4069,0.0227],[127.4041,0.0195],[127.405,0.0105],[127.4104,0.0089],[127.414,0.0109],[127.4231,0.023],[127.4302,0.0221],[127.4366,0.0108],[127.442,0.0101],[127.4427,0.0053],[127.4394,0.0032],[127.4324,-0.0058],[127.4397,-0.0127],[127.4418,-0.0175],[127.4464,-0.0217],[127.4537,-0.0317],[127.4554,-0.0379],[127.4589,-0.0407],[127.4679,-0.0403],[127.465,-0.0153],[127.4654,-0.0015],[127.4596,0.0022],[127.4575,0.0074],[127.4605,0.0179],[127.4601,0.0237],[127.4694,0.0324],[127.4697,0.0347],[127.46,0.0472],[127.4586,0.053],[127.4651,0.0595],[127.4656,0.0737],[127.4598,0.0731],[127.4546,0.0692],[127.4491,0.0696],[127.4461,0.0763],[127.4437,0.0861],[127.4431,0.0977],[127.4407,0.102],[127.4418,0.1146],[127.4436,0.1178],[127.453,0.1263],[127.4584,0.1298],[127.4565,0.1331],[127.4365,0.1304]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.215,0.1436],[127.2094,0.1419],[127.208,0.1383],[127.2128,0.1335],[127.2198,0.1326],[127.2228,0.1368],[127.2205,0.1425],[127.215,0.1436]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.1247,0.1433],[127.1183,0.1486],[127.1118,0.1439],[127.113,0.1334],[127.1196,0.129],[127.1252,0.128],[127.1278,0.1308],[127.1353,0.128],[127.135,0.1365],[127.1289,0.1426],[127.1247,0.1433]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.433,0.1447],[127.4335,0.1507],[127.4297,0.1526],[127.429,0.1447],[127.433,0.1447]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.1553,0.162],[127.1462,0.1586],[127.1449,0.1513],[127.1469,0.1501],[127.1538,0.157],[127.1553,0.162]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.6997,-0.01],[127.7009,-0.0181],[127.6943,-0.0286],[127.6975,-0.041],[127.6981,-0.053],[127.6967,-0.0603],[127.6984,-0.076],[127.6969,-0.0903],[127.6998,-0.0999],[127.6972,-0.1036],[127.6893,-0.109],[127.69,-0.1167],[127.6859,-0.1262],[127.6876,-0.1338],[127.6862,-0.1406],[127.6825,-0.1469],[127.6804,-0.1534],[127.6814,-0.1583],[127.6758,-0.1669],[127.6759,-0.1735],[127.6679,-0.1878],[127.6691,-0.1941],[127.6668,-0.2029],[127.6611,-0.2085],[127.6617,-0.2171],[127.6646,-0.2228],[127.671,-0.2228],[127.6754,-0.2356],[127.6795,-0.2389],[127.6801,-0.2429],[127.6893,-0.2476],[127.6896,-0.2534],[127.6871,-0.2613],[127.6868,-0.2697],[127.6937,-0.2724],[127.7025,-0.2776],[127.7048,-0.2769],[127.7116,-0.2858],[127.7138,-0.291],[127.7227,-0.2964],[127.7311,-0.3032],[127.7348,-0.3034],[127.7455,-0.3075],[127.7474,-0.3139],[127.751,-0.3141],[127.7503,-0.3198],[127.7561,-0.3204],[127.7669,-0.3258],[127.7795,-0.3286],[127.7858,-0.329],[127.7888,-0.336],[127.7988,-0.3397],[127.804,-0.34],[127.8112,-0.3368],[127.8172,-0.3373],[127.8256,-0.3433],[127.8265,-0.3474],[127.833,-0.3519],[127.8377,-0.3517],[127.8449,-0.3561],[127.8457,-0.3605],[127.8505,-0.3641],[127.8586,-0.3639],[127.8644,-0.366],[127.8687,-0.3803],[127.8758,-0.382],[127.8766,-0.3865],[127.8812,-0.3896],[127.8807,-0.3979],[127.8836,-0.4104],[127.8908,-0.422],[127.8951,-0.4243],[127.8957,-0.4304],[127.9003,-0.4344],[127.9003,-0.4423],[127.9052,-0.4461],[127.9061,-0.4736],[127.9135,-0.4816],[127.9191,-0.4841],[127.9197,-0.4869],[127.9262,-0.4952],[127.9319,-0.4954],[127.9336,-0.5007],[127.9384,-0.5036],[127.9412,-0.511],[127.9412,-0.5158],[127.9459,-0.5233],[127.9466,-0.5305],[127.9509,-0.5336],[127.9507,-0.5391],[127.9535,-0.5409],[127.9553,-0.5593],[127.9602,-0.5704],[127.9648,-0.5782],[127.969,-0.5802],[127.9704,-0.5846],[127.9749,-0.5869],[127.9752,-0.5943],[127.9807,-0.603],[127.9882,-0.6113],[127.9892,-0.6175],[127.9925,-0.6261],[127.9957,-0.6305],[127.9937,-0.6356],[127.9929,-0.6441],[127.9939,-0.6476],[127.9982,-0.6515],[127.9964,-0.6569],[128.0021,-0.6613],[128.0024,-0.6676],[128.0091,-0.6724],[128.012,-0.6786],[128.0179,-0.6824],[128.0196,-0.6864],[128.0303,-0.6928],[128.0354,-0.699],[128.0435,-0.702],[128.0531,-0.7071],[128.0614,-0.7129],[128.0652,-0.7177],[128.0691,-0.7181],[128.0776,-0.7218],[128.086,-0.7229],[128.1033,-0.7307],[128.1178,-0.7364],[128.1321,-0.738],[128.1476,-0.745],[128.1517,-0.7491],[128.1552,-0.7479],[128.1635,-0.7511],[128.1665,-0.7502],[128.1775,-0.7564],[128.1892,-0.7615],[128.1999,-0.7624],[128.21,-0.7673],[128.2169,-0.7724],[128.2309,-0.7688],[128.24,-0.7699],[128.2389,-0.7726],[128.2303,-0.7709],[128.227,-0.7732],[128.2298,-0.7795],[128.2335,-0.7836],[128.2412,-0.788],[128.2453,-0.7876],[128.2483,-0.7935],[128.2532,-0.7986],[128.2569,-0.7978],[128.2585,-0.8044],[128.2675,-0.8173],[128.2676,-0.8209],[128.2739,-0.8271],[128.2799,-0.826],[128.2828,-0.8329],[128.2822,-0.8383],[128.2791,-0.8386],[128.2692,-0.831],[128.2538,-0.8216],[128.2482,-0.8203],[128.2419,-0.8223],[128.2407,-0.826],[128.2295,-0.8284],[128.2255,-0.8327],[128.2257,-0.8393],[128.2285,-0.8452],[128.2428,-0.8559],[128.2528,-0.861],[128.2603,-0.8633],[128.262,-0.8667],[128.2686,-0.8672],[128.2772,-0.8696],[128.2806,-0.8754],[128.2905,-0.8811],[128.3059,-0.8803],[128.3119,-0.8742],[128.3142,-0.8643],[128.3171,-0.8643],[128.3236,-0.8684],[128.3284,-0.8742],[128.3349,-0.8786],[128.3408,-0.8809],[128.3467,-0.8868],[128.3522,-0.8895],[128.3541,-0.8839],[128.3615,-0.8795],[128.3686,-0.8808],[128.3741,-0.8785],[128.3951,-0.8827],[128.4058,-0.8892],[128.4095,-0.8937],[128.4206,-0.8962],[128.4243,-0.9014],[128.4385,-0.9031],[128.4443,-0.9068],[128.4509,-0.9142],[128.4569,-0.9103],[128.4559,-0.9022],[128.4506,-0.8962],[128.4379,-0.8861],[128.4355,-0.8821],[128.4301,-0.8785],[128.4187,-0.8757],[128.382,-0.8534],[128.3735,-0.8463],[128.3635,-0.8361],[128.3524,-0.8206],[128.3435,-0.8128],[128.3353,-0.8101],[128.3244,-0.8017],[128.3197,-0.795],[128.311,-0.7902],[128.3079,-0.7862],[128.3073,-0.7772],[128.3035,-0.7701],[128.2982,-0.7641],[128.2862,-0.754],[128.2765,-0.7479],[128.2656,-0.7422],[128.2554,-0.7324],[128.2481,-0.7299],[128.238,-0.7213],[128.2338,-0.7205],[128.2339,-0.7166],[128.2297,-0.7142],[128.2257,-0.7087],[128.2219,-0.7073],[128.2097,-0.6918],[128.2098,-0.6813],[128.205,-0.6775],[128.1985,-0.67],[128.1933,-0.6586],[128.1922,-0.6536],[128.1891,-0.6505],[128.1858,-0.6365],[128.1859,-0.6296],[128.18,-0.6236],[128.1683,-0.6075],[128.1545,-0.5863],[128.1494,-0.5746],[128.1339,-0.5517],[128.1262,-0.5387],[128.1206,-0.5356],[128.1104,-0.5181],[128.1048,-0.5117],[128.1026,-0.512],[128.0963,-0.501],[128.0852,-0.4787],[128.0833,-0.4673],[128.0794,-0.4577],[128.0651,-0.4383],[128.0645,-0.4264],[128.0601,-0.4245],[128.0564,-0.4176],[128.0516,-0.4193],[128.0477,-0.4129],[128.0382,-0.3812],[128.0312,-0.3647],[128.0229,-0.34],[128.016,-0.3226],[128.0119,-0.3212],[128.0058,-0.3122],[128.0026,-0.3013],[127.9983,-0.2933],[127.9914,-0.2853],[127.9864,-0.273],[127.9826,-0.2658],[127.9809,-0.2524],[127.979,-0.2486],[127.9775,-0.2315],[127.9719,-0.2119],[127.9715,-0.1998],[127.97,-0.1972],[127.9683,-0.1783],[127.9655,-0.1636],[127.9582,-0.1508],[127.953,-0.1386],[127.9488,-0.1263],[127.9462,-0.111],[127.9382,-0.0972],[127.932,-0.0846],[127.927,-0.0799],[127.9153,-0.0621],[127.9111,-0.0569],[127.9085,-0.0476],[127.9071,-0.0383],[127.9037,-0.0311],[127.9029,-0.0257],[127.8951,-0.0193],[127.8927,-0.014],[127.8897,0.0007],[127.8887,0.0224],[127.8876,0.0313],[127.8909,0.045],[127.8942,0.0493],[127.8929,0.0561],[127.8903,0.0573],[127.8951,0.0665],[127.891,0.0687],[127.8872,0.0775],[127.888,0.0832],[127.8913,0.0895],[127.8983,0.0988],[127.9056,0.1059],[127.9098,0.1042],[127.9253,0.1081],[127.9257,0.1211],[127.9239,0.1346],[127.9248,0.1437],[127.9229,0.1512],[127.9228,0.1615],[127.9215,0.1662],[127.9216,0.1767],[127.9097,0.1754],[127.8976,0.1763],[127.8946,0.1667],[127.8946,0.1477],[127.888,0.1445],[127.8776,0.1318],[127.8724,0.1305],[127.8696,0.1324],[127.8633,0.1322],[127.8588,0.1341],[127.854,0.1334],[127.8517,0.1363],[127.8444,0.1345],[127.8381,0.1283],[127.8308,0.1247],[127.8243,0.1254],[127.8173,0.1361],[127.8148,0.1448],[127.8083,0.1502],[127.7914,0.1499],[127.7886,0.1522],[127.7891,0.1407],[127.791,0.1351],[127.7888,0.126],[127.792,0.12],[127.7906,0.1089],[127.792,0.0991],[127.7898,0.0932],[127.79,0.0875],[127.7969,0.0817],[127.7942,0.0745],[127.7958,0.0657],[127.7951,0.0607],[127.7966,0.054],[127.8019,0.0491],[127.8068,0.047],[127.8074,0.0424],[127.8143,0.0384],[127.8173,0.0319],[127.8102,0.0181],[127.8024,0.0215],[127.7953,0.0124],[127.7917,0.0118],[127.7862,0.0056],[127.7703,0.0041],[127.7686,0.0082],[127.7677,0.0177],[127.7681,0.0255],[127.7585,0.0213],[127.7532,0.0202],[127.7481,0.0235],[127.7402,0.021],[127.7375,0.0182],[127.7355,0.0091],[127.7328,0.0048],[127.7178,0.0013],[127.7139,0.0033],[127.7109,-0.0002],[127.7108,-0.0067],[127.6997,-0.01]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"LineString","coordinates":[[127.4172,0.3746],[127.4017,0.3725],[127.3982,0.3697],[127.3874,0.3679],[127.3815,0.3646],[127.3736,0.3623],[127.3707,0.3586],[127.3645,0.356],[127.3592,0.3491],[127.3458,0.3357],[127.3433,0.328],[127.348,0.3132],[127.3537,0.3045],[127.3617,0.2972],[127.3645,0.2962],[127.374,0.2857],[127.3847,0.2775],[127.3946,0.2751],[127.4066,0.2786],[127.4137,0.2792],[127.4198,0.2832],[127.4299,0.2916],[127.4299,0.3012],[127.4327,0.3064],[127.4384,0.3115],[127.4435,0.3243],[127.4387,0.331],[127.4429,0.3366],[127.4392,0.3435],[127.4369,0.3511],[127.4253,0.3628],[127.4172,0.3746]]}},{"type":"Feature","properties":{"mhid":"1332:473","alt_name":"KABUPATEN HALMAHERA UTARA","latitude":1.73194,"longitude":128.00778,"sample_value":641},"geometry":{"type":"LineString","coordinates":[[128.0242,1.2998],[128.022,1.2996],[128.0139,1.2912],[128.0083,1.2884],[128.0068,1.2811],[128.0178,1.2822],[128.0215,1.2882],[128.028,1.2955],[128.0242,1.2998]]}},{"type":"Feature","properties":{"mhid":"1332:473","alt_name":"KABUPATEN HALMAHERA UTARA","latitude":1.73194,"longitude":128.00778,"sample_value":641},"geometry":{"type":"LineString","coordinates":[[128.0472,1.5574],[128.0426,1.5623],[128.0411,1.5581],[128.0472,1.5574]]}},{"type":"Feature","properties":{"mhid":"1332:473","alt_name":"KABUPATEN HALMAHERA UTARA","latitude":1.73194,"longitude":128.00778,"sample_value":641},"geometry":{"type":"LineString","coordinates":[[128.0587,1.572],[128.052,1.581],[128.0495,1.5821],[128.0469,1.5753],[128.0495,1.5664],[128.0521,1.5632],[128.0509,1.557],[128.0567,1.5547],[128.0674,1.5647],[128.0666,1.5669],[128.0587,1.572]]}},{"type":"Feature","properties":{"mhid":"1332:473","alt_name":"KABUPATEN HALMAHERA UTARA","latitude":1.73194,"longitude":128.00778,"sample_value":641},"geometry":{"type":"LineString","coordinates":[[128.0518,1.6779],[128.0481,1.6728],[128.0563,1.6695],[128.0541,1.6773],[128.0518,1.6779]]}},{"type":"Feature","properties":{"mhid":"1332:473","alt_name":"KABUPATEN HALMAHERA UTARA","latitude":1.73194,"longitude":128.00778,"sample_value":641},"geometry":{"type":"LineString","coordinates":[[128.0262,1.7324],[128.0227,1.7333],[128.0208,1.7276],[128.0273,1.7261],[128.0262,1.7324]]}},{"type":"Feature","properties":{"mhid":"1332:473","alt_name":"KABUPATEN HALMAHERA UTARA","latitude":1.73194,"longitude":128.00778,"sample_value":641},"geometry":{"type":"LineString","coordinates":[[128.0727,1.729],[128.0715,1.7348],[128.0727,1.7432],[128.0637,1.7416],[128.0621,1.7347],[128.0664,1.7251],[128.0676,1.7162],[128.0702,1.7148],[128.0749,1.7175],[128.0727,1.729]]}},{"type":"Feature","properties":{"mhid":"1332:473","alt_name":"KABUPATEN HALMAHERA UTARA","latitude":1.73194,"longitude":128.00778,"sample_value":641},"geometry":{"type":"LineString","coordinates":[[128.0401,1.7544],[128.041,1.749],[128.0514,1.7408],[128.0529,1.7462],[128.05,1.7527],[128.0401,1.7544]]}},{"type":"Feature","properties":{"mhid":"1332:473","alt_name":"KABUPATEN HALMAHERA UTARA","latitude":1.73194,"longitude":128.00778,"sample_value":641},"geometry":{"type":"LineString","coordinates":[[128.0087,1.7873],[128.0062,1.7907],[127.9982,1.7967],[127.9958,1.791],[128.0039,1.7825],[128.0037,1.778],[128.0107,1.7693],[128.0168,1.7676],[128.0195,1.7717],[128.0114,1.7824],[128.0087,1.7873]]}},{"type":"Feature","properties":{"mhid":"1332:473","alt_name":"KABUPATEN HALMAHERA UTARA","latitude":1.73194,"longitude":128.00778,"sample_value":641},"geometry":{"type":"LineString","coordinates":[[127.7743,2.1287],[127.7666,2.1217],[127.7681,2.1148],[127.7746,2.1147],[127.7753,2.1105],[127.7844,2.1087],[127.7857,2.1142],[127.7836,2.1173],[127.786,2.1218],[127.7743,2.1287]]}},{"type":"Feature","properties":{"mhid":"1332:473","alt_name":"KABUPATEN HALMAHERA UTARA","latitude":1.73194,"longitude":128.00778,"sample_value":641},"geometry":{"type":"LineString","coordinates":[[127.7226,2.1932],[127.723,2.1862],[127.7257,2.1816],[127.7322,2.1762],[127.742,2.1706],[127.7448,2.1705],[127.7613,2.1633],[127.762,2.1596],[127.7663,2.1554],[127.7721,2.1525],[127.7755,2.1624],[127.7755,2.1672],[127.7694,2.17],[127.7672,2.1762],[127.7645,2.179],[127.7644,2.1843],[127.7553,2.185],[127.751,2.1905],[127.7437,2.1912],[127.742,2.1839],[127.7385,2.1888],[127.7226,2.1932]]}},{"type":"Feature","properties":{"mhid":"1332:473","alt_name":"KABUPATEN HALMAHERA UTARA","latitude":1.73194,"longitude":128.00778,"sample_value":641},"geometry":{"type":"LineString","coordinates":[[127.7663,2.2106],[127.7562,2.2036],[127.7617,2.2022],[127.7686,2.1978],[127.7745,2.2031],[127.7738,2.2079],[127.7663,2.2106]]}},{"type":"Feature","properties":{"mhid":"1332:473","alt_name":"KABUPATEN HALMAHERA UTARA","latitude":1.73194,"longitude":128.00778,"sample_value":641},"geometry":{"type":"LineString","coordinates":[[127.6939,0.8789],[127.6806,0.8769],[127.6753,0.8836],[127.6693,0.8805],[127.6673,0.8739],[127.6756,0.8729],[127.6803,0.8682],[127.67,0.8651],[127.6615,0.872],[127.6591,0.8715],[127.6528,0.8762],[127.6646,0.881],[127.6637,0.8847],[127.6589,0.8886],[127.6573,0.8955],[127.6534,0.8975],[127.6537,0.9057],[127.6482,0.9124],[127.6498,0.9171],[127.6342,0.9151],[127.6313,0.9228],[127.6384,0.9295],[127.6389,0.9345],[127.6361,0.9371],[127.6382,0.9413],[127.6314,0.9422],[127.6301,0.9501],[127.632,0.9517],[127.6298,0.9654],[127.6262,0.9723],[127.6314,0.9763],[127.6295,0.9841],[127.635,0.9906],[127.6406,0.9923],[127.6487,1.0022],[127.647,1.0084],[127.652,1.018],[127.6551,1.0269],[127.6673,1.0305],[127.6742,1.036],[127.684,1.0372],[127.6864,1.039],[127.6991,1.0387],[127.7095,1.0422],[127.7219,1.0505],[127.7237,1.0533],[127.7353,1.0619],[127.7455,1.0628],[127.7585,1.0688],[127.7625,1.0777],[127.771,1.0871],[127.7747,1.0881],[127.7859,1.0988],[127.7883,1.0993],[127.7938,1.1087],[127.7976,1.109],[127.8007,1.1055],[127.8048,1.1094],[127.805,1.115],[127.8086,1.1215],[127.8154,1.1298],[127.8155,1.1343],[127.8241,1.1423],[127.8252,1.1469],[127.8309,1.1484],[127.8463,1.1483],[127.8477,1.1532],[127.8563,1.1532],[127.875,1.1497],[127.8804,1.1537],[127.8882,1.1501],[127.8961,1.1521],[127.9034,1.1502],[127.9024,1.1722],[127.9081,1.185],[127.9146,1.1972],[127.914,1.2064],[127.9151,1.2191],[127.9194,1.2276],[127.9271,1.2349],[127.9318,1.2342],[127.935,1.237],[127.945,1.242],[127.947,1.2521],[127.9522,1.2603],[127.958,1.2603],[127.9618,1.2625],[127.9685,1.2727],[127.9725,1.2758],[127.9742,1.2821],[127.9709,1.2877],[127.9728,1.2981],[127.9787,1.3072],[127.9848,1.3097],[127.9889,1.3072],[127.9994,1.3076],[128.0096,1.3122],[128.0102,1.3154],[128.0054,1.3226],[128.0009,1.3253],[127.9941,1.3319],[127.992,1.3393],[127.9929,1.3432],[127.99,1.3572],[127.9879,1.3633],[127.9893,1.3719],[127.9888,1.3786],[127.9949,1.392],[128.0007,1.3957],[128.0121,1.3945],[128.0147,1.3999],[128.0225,1.4016],[128.0241,1.4114],[128.0115,1.4214],[128.0096,1.4257],[128.0125,1.4303],[128.0144,1.4385],[128.0189,1.4472],[128.0219,1.4658],[128.0242,1.4686],[128.023,1.489],[128.0269,1.5049],[128.0265,1.5128],[128.0284,1.5143],[128.0353,1.5304],[128.03,1.5453],[128.0246,1.5482],[128.0246,1.551],[128.0305,1.5527],[128.0345,1.5593],[128.0314,1.5647],[128.0355,1.5655],[128.036,1.5707],[128.0331,1.5759],[128.0374,1.583],[128.0344,1.5894],[128.0268,1.5926],[128.0264,1.5859],[128.0232,1.5862],[128.0172,1.5933],[128.0097,1.5947],[128.0071,1.5981],[128.0034,1.5962],[127.9985,1.6006],[128.0003,1.6066],[127.9916,1.6077],[127.9877,1.6147],[127.9885,1.6219],[127.9907,1.6247],[127.9971,1.6218],[127.9998,1.624],[127.9971,1.6346],[127.9986,1.6391],[127.9961,1.6416],[127.9968,1.6502],[127.9955,1.6551],[127.9913,1.6625],[127.9935,1.6682],[127.9967,1.6706],[128.0011,1.6693],[128.0073,1.6772],[128.0109,1.6833],[128.0205,1.6876],[128.0219,1.6914],[128.022,1.7036],[128.0168,1.7136],[128.0148,1.7217],[128.0098,1.7326],[128.0119,1.7375],[128.0052,1.7418],[127.9973,1.7511],[127.9917,1.7624],[127.9891,1.7615],[127.98,1.7675],[127.9743,1.7673],[127.9669,1.7712],[127.9607,1.7687],[127.9563,1.7779],[127.9565,1.7874],[127.9525,1.7936],[127.9486,1.7923],[127.944,1.7946],[127.9346,1.8054],[127.9287,1.8097],[127.92,1.8076],[127.9164,1.8053],[127.9091,1.804],[127.8984,1.7975],[127.8883,1.797],[127.8837,1.7996],[127.8836,1.807],[127.8782,1.8031],[127.8701,1.8098],[127.8627,1.8052],[127.8551,1.814],[127.8585,1.8179],[127.8572,1.8214],[127.8485,1.8196],[127.8458,1.8236],[127.8432,1.8345],[127.8417,1.8482],[127.8451,1.8514],[127.8533,1.8667],[127.8509,1.875],[127.8495,1.8896],[127.8497,1.9021],[127.8484,1.9095],[127.8516,1.9241],[127.8534,1.9269],[127.8616,1.9305],[127.8669,1.9347],[127.8734,1.9374],[127.8746,1.9404],[127.8839,1.9498],[127.8921,1.9542],[127.899,1.9547],[127.9197,1.9609],[127.9256,1.9673],[127.9294,1.9789],[127.9353,1.9816],[127.9388,1.985],[127.948,1.9881],[127.9516,1.9909],[127.9514,2.0038],[127.9534,2.0104],[127.9515,2.0186],[127.9481,2.0247],[127.9508,2.0287],[127.9547,2.0404],[127.9624,2.0479],[127.9659,2.0495],[127.9702,2.0633],[127.9733,2.066],[127.9794,2.0678],[127.9909,2.08],[127.9973,2.0855],[128.0013,2.092],[128.0138,2.1018],[128.0243,2.1137],[128.0325,2.1245],[128.0347,2.1323],[128.0451,2.1467],[128.053,2.1559],[128.0551,2.1616],[128.0638,2.1707],[128.067,2.1802],[128.069,2.1918],[128.0665,2.1982],[128.0536,2.201],[128.0191,2.1964],[128.0084,2.1913],[127.9972,2.1878],[127.9853,2.1805],[127.9799,2.184],[127.9816,2.188],[127.9805,2.1976],[127.9786,2.2004],[127.9773,2.2086],[127.97,2.2147],[127.9566,2.2216],[127.9565,2.2144],[127.9599,2.2099],[127.9608,2.2033],[127.9581,2.1951],[127.9487,2.1909],[127.9425,2.1858],[127.9371,2.1854],[127.9334,2.1814],[127.9305,2.1751],[127.9279,2.1611],[127.9208,2.1574],[127.9119,2.1582],[127.9101,2.1557],[127.9101,2.1481],[127.9048,2.1445],[127.903,2.138],[127.899,2.134],[127.8903,2.1329],[127.8865,2.1282],[127.8852,2.122],[127.8808,2.1207],[127.8708,2.1131],[127.8687,2.1079],[127.8628,2.1039],[127.8537,2.1029],[127.8505,2.1004],[127.8502,2.096],[127.8388,2.0922],[127.8372,2.083],[127.8291,2.0754],[127.8249,2.0686],[127.8166,2.0654],[127.8139,2.0561],[127.8066,2.0511],[127.8031,2.042],[127.7979,2.0389],[127.7967,2.0346],[127.7922,2.0278],[127.7881,2.0244],[127.7884,2.017],[127.7856,2.0093],[127.7745,1.999],[127.7711,1.9982],[127.7627,1.9885],[127.763,1.9856],[127.7579,1.9784],[127.7541,1.9775],[127.7498,1.9687],[127.7449,1.9678],[127.7439,1.9589],[127.7429,1.9548],[127.7485,1.9465],[127.7542,1.9461],[127.7535,1.9589],[127.7571,1.9616],[127.7636,1.9615],[127.7681,1.9593],[127.7713,1.9495],[127.7736,1.9486],[127.775,1.9416],[127.7793,1.9346],[127.7818,1.9277],[127.7835,1.9115],[127.7864,1.9074],[127.7797,1.9063],[127.7717,1.9013],[127.7715,1.8959],[127.7613,1.887],[127.7595,1.8817],[127.7597,1.8745],[127.765,1.8655],[127.756,1.86],[127.753,1.8645],[127.7438,1.8553],[127.7487,1.8491],[127.7488,1.8461],[127.7424,1.8355],[127.7405,1.8304],[127.7412,1.8219],[127.7384,1.8159],[127.7359,1.8149],[127.7321,1.8064],[127.7321,1.7994],[127.7192,1.7881],[127.7218,1.7826],[127.718,1.7779],[127.7177,1.765],[127.7142,1.7627],[127.7109,1.752],[127.7134,1.7441],[127.7093,1.7328],[127.7107,1.7281],[127.7074,1.7191],[127.7031,1.7147],[127.705,1.7112],[127.7037,1.7013],[127.7071,1.6926],[127.7142,1.6827],[127.7127,1.6774],[127.7131,1.6616],[127.7195,1.6554],[127.7183,1.6423],[127.7236,1.6349],[127.7305,1.631],[127.7317,1.6258],[127.7288,1.6186],[127.7311,1.6135],[127.7304,1.6061],[127.7349,1.6023],[127.7269,1.5925],[127.7267,1.5811],[127.7285,1.5731],[127.7259,1.5592],[127.7261,1.5505],[127.7297,1.5396],[127.7255,1.5318],[127.7251,1.5258],[127.7197,1.522],[127.7186,1.5183],[127.721,1.5145],[127.7121,1.5095],[127.7141,1.4964],[127.7113,1.4941],[127.7058,1.4839],[127.7057,1.4778],[127.7022,1.4724],[127.6973,1.4723],[127.6939,1.4685],[127.6879,1.4673],[127.6807,1.4689],[127.6766,1.4655],[127.6705,1.4639],[127.67,1.46],[127.6731,1.4567],[127.6751,1.4489],[127.6802,1.443],[127.6763,1.4386],[127.6739,1.4318],[127.6669,1.4281],[127.6597,1.4226],[127.6571,1.4111],[127.6613,1.3966],[127.6687,1.3916],[127.6716,1.3836],[127.6758,1.3784],[127.6754,1.3753],[127.6668,1.3663],[127.6623,1.3648],[127.6632,1.3589],[127.661,1.3545],[127.6597,1.3458],[127.6559,1.3415],[127.6575,1.3366],[127.6566,1.3323],[127.652,1.327],[127.6435,1.3338],[127.6404,1.3278],[127.6404,1.32],[127.6366,1.3216],[127.6375,1.3044],[127.6401,1.2973],[127.6391,1.2903],[127.6359,1.286],[127.6345,1.2746],[127.6381,1.2717],[127.6455,1.2728],[127.6494,1.271],[127.6473,1.2637],[127.6473,1.2524],[127.6427,1.2504],[127.6378,1.2523],[127.6274,1.2481],[127.6291,1.2451],[127.6241,1.2387],[127.6286,1.23],[127.6359,1.2198],[127.6372,1.2147],[127.6362,1.208],[127.6393,1.2015],[127.6398,1.1958],[127.6377,1.1826],[127.6437,1.1771],[127.6439,1.1711],[127.6398,1.168],[127.633,1.1663],[127.6274,1.1592],[127.6273,1.1532],[127.6199,1.1404],[127.6223,1.1369],[127.6259,1.1255],[127.6254,1.1164],[127.6137,1.117],[127.6104,1.1101],[127.6037,1.1076],[127.6088,1.0933],[127.6132,1.0915],[127.6107,1.0868],[127.6145,1.0824],[127.6102,1.0757],[127.6037,1.073],[127.602,1.0704],[127.6023,1.062],[127.6046,1.0487],[127.6096,1.0346],[127.6149,1.0278],[127.6184,1.0278],[127.6062,1.0067],[127.5982,0.9867],[127.5949,0.967],[127.6056,0.9158],[127.6212,0.896],[127.6325,0.8783],[127.6397,0.8717],[127.6444,0.8645],[127.6585,0.8485],[127.6654,0.8395],[127.6758,0.8308],[127.6945,0.8184],[127.7094,0.8212],[127.7068,0.8291],[127.6968,0.8341],[127.6982,0.8449],[127.6953,0.8531],[127.6952,0.8604],[127.6913,0.8648],[127.6917,0.8746],[127.6939,0.8789]]}},{"type":"Feature","properties":{"mhid":"1332:473","alt_name":"KABUPATEN HALMAHERA UTARA","latitude":1.73194,"longitude":128.00778,"sample_value":641},"geometry":{"type":"LineString","coordinates":[[127.7783,2.2945],[127.7752,2.2939],[127.774,2.2888],[127.7704,2.2833],[127.7641,2.2768],[127.763,2.2725],[127.7579,2.2669],[127.7569,2.2634],[127.7607,2.2574],[127.7652,2.2556],[127.7697,2.2564],[127.7713,2.246],[127.7737,2.2407],[127.7717,2.2318],[127.773,2.2197],[127.7925,2.2169],[127.7961,2.2242],[127.804,2.2229],[127.8136,2.2269],[127.817,2.2302],[127.8184,2.2377],[127.8234,2.2436],[127.8193,2.2487],[127.8193,2.2541],[127.8243,2.2604],[127.8252,2.2699],[127.8151,2.2723],[127.8132,2.2714],[127.8021,2.2722],[127.7964,2.275],[127.7897,2.2743],[127.7792,2.2755],[127.7778,2.2775],[127.7812,2.2853],[127.7808,2.2911],[127.7783,2.2945]]}},{"type":"Feature","properties":{"mhid":"1332:474","alt_name":"KABUPATEN HALMAHERA TIMUR","latitude":1.33517,"longitude":128.48627,"sample_value":362},"geometry":{"type":"LineString","coordinates":[[128.6563,0.5593],[128.6498,0.5568],[128.6553,0.5538],[128.6563,0.5593]]}},{"type":"Feature","properties":{"mhid":"1332:474","alt_name":"KABUPATEN HALMAHERA TIMUR","latitude":1.33517,"longitude":128.48627,"sample_value":362},"geometry":{"type":"LineString","coordinates":[[128.6289,0.5671],[128.6198,0.5666],[128.6209,0.5613],[128.6309,0.56],[128.6289,0.5671]]}},{"type":"Feature","properties":{"mhid":"1332:474","alt_name":"KABUPATEN HALMAHERA TIMUR","latitude":1.33517,"longitude":128.48627,"sample_value":362},"geometry":{"type":"LineString","coordinates":[[128.648,0.575],[128.6414,0.5753],[128.6358,0.5701],[128.6388,0.5636],[128.6482,0.5616],[128.656,0.5635],[128.6624,0.5628],[128.6673,0.5688],[128.6631,0.5746],[128.6569,0.5754],[128.6506,0.5731],[128.648,0.575]]}},{"type":"Feature","properties":{"mhid":"1332:474","alt_name":"KABUPATEN HALMAHERA TIMUR","latitude":1.33517,"longitude":128.48627,"sample_value":362},"geometry":{"type":"LineString","coordinates":[[128.6398,0.6338],[128.6326,0.6311],[128.6368,0.625],[128.6444,0.6217],[128.6483,0.623],[128.6398,0.6338]]}},{"type":"Feature","properties":{"mhid":"1332:474","alt_name":"KABUPATEN HALMAHERA TIMUR","latitude":1.33517,"longitude":128.48627,"sample_value":362},"geometry":{"type":"LineString","coordinates":[[128.522,0.6243],[128.5292,0.6287],[128.5403,0.6333],[128.5403,0.6378],[128.5328,0.6388],[128.5199,0.6293],[128.522,0.6243]]}},{"type":"Feature","properties":{"mhid":"1332:474","alt_name":"KABUPATEN HALMAHERA TIMUR","latitude":1.33517,"longitude":128.48627,"sample_value":362},"geometry":{"type":"LineString","coordinates":[[128.3208,0.8432],[128.3192,0.8395],[128.3213,0.8338],[128.322,0.8262],[128.3268,0.8245],[128.3325,0.8313],[128.3301,0.8361],[128.325,0.8383],[128.3208,0.8432]]}},{"type":"Feature","properties":{"mhid":"1332:474","alt_name":"KABUPATEN HALMAHERA TIMUR","latitude":1.33517,"longitude":128.48627,"sample_value":362},"geometry":{"type":"LineString","coordinates":[[127.9298,0.9954],[127.9266,0.9913],[127.9311,0.9893],[127.9333,0.9925],[127.9298,0.9954]]}},{"type":"Feature","properties":{"mhid":"1332:474","alt_name":"KABUPATEN HALMAHERA TIMUR","latitude":1.33517,"longitude":128.48627,"sample_value":362},"geometry":{"type":"LineString","coordinates":[[128.6791,0.5061],[128.6813,0.5078],[128.6878,0.5197],[128.6897,0.5292],[128.684,0.5437],[128.6789,0.5499],[128.6637,0.5484],[128.6587,0.5443],[128.6534,0.5441],[128.6471,0.5476],[128.6479,0.5509],[128.6445,0.554],[128.6373,0.5533],[128.6303,0.5567],[128.6235,0.5582],[128.6189,0.5551],[128.6131,0.5556],[128.6087,0.559],[128.5847,0.562],[128.572,0.5616],[128.5578,0.5689],[128.5476,0.5772],[128.5338,0.584],[128.5233,0.5917],[128.5186,0.5889],[128.5135,0.5923],[128.5005,0.595],[128.4957,0.5944],[128.4901,0.5966],[128.4833,0.5969],[128.4773,0.6004],[128.471,0.607],[128.4534,0.6186],[128.4403,0.6292],[128.4302,0.6333],[128.4165,0.634],[128.4019,0.6401],[128.3969,0.6407],[128.3879,0.6447],[128.3819,0.6437],[128.3838,0.64],[128.38,0.6352],[128.3777,0.6401],[128.3669,0.6438],[128.3654,0.6401],[128.3519,0.6425],[128.3521,0.6476],[128.3591,0.6502],[128.3555,0.6557],[128.3481,0.656],[128.346,0.6544],[128.3378,0.6588],[128.3321,0.6572],[128.3284,0.6534],[128.3197,0.6554],[128.3124,0.6602],[128.3104,0.6658],[128.3025,0.6823],[128.2956,0.6946],[128.2954,0.7012],[128.2899,0.7023],[128.2798,0.715],[128.2666,0.7294],[128.2611,0.7376],[128.2542,0.7415],[128.2497,0.7388],[128.2479,0.7346],[128.2489,0.7286],[128.2362,0.7384],[128.2341,0.7442],[128.2225,0.7544],[128.2184,0.756],[128.2113,0.7683],[128.2094,0.7784],[128.199,0.7882],[128.2033,0.7957],[128.2053,0.8073],[128.2163,0.8078],[128.2198,0.8124],[128.2398,0.8161],[128.2409,0.8201],[128.2472,0.8282],[128.2458,0.8341],[128.2501,0.8404],[128.2608,0.8379],[128.264,0.8345],[128.2685,0.8338],[128.2732,0.8272],[128.2822,0.8202],[128.2865,0.82],[128.2914,0.8234],[128.2954,0.8182],[128.3116,0.8157],[128.3132,0.8183],[128.3136,0.8266],[128.3102,0.831],[128.2986,0.8287],[128.2948,0.8334],[128.3018,0.8394],[128.2984,0.8441],[128.2927,0.8441],[128.2911,0.8477],[128.2843,0.8504],[128.2813,0.8533],[128.2821,0.8623],[128.2801,0.8668],[128.2884,0.876],[128.2954,0.88],[128.2991,0.8886],[128.3036,0.8931],[128.312,0.8949],[128.3177,0.8978],[128.3242,0.9039],[128.3303,0.9069],[128.3347,0.9119],[128.3486,0.909],[128.3559,0.9132],[128.3632,0.9123],[128.3728,0.9139],[128.3838,0.9109],[128.3861,0.9117],[128.3897,0.9182],[128.3939,0.9215],[128.4057,0.9206],[128.4128,0.9298],[128.4194,0.9315],[128.4244,0.9294],[128.4355,0.9287],[128.4417,0.9296],[128.447,0.9325],[128.4559,0.9443],[128.4685,0.9528],[128.48,0.9566],[128.4842,0.9592],[128.4918,0.9609],[128.5009,0.9694],[128.5096,0.9728],[128.5196,0.9705],[128.5227,0.9686],[128.5329,0.9706],[128.5394,0.976],[128.548,0.9913],[128.5522,0.996],[128.5591,0.9992],[128.5757,1.0105],[128.5915,1.0254],[128.605,1.0355],[128.6103,1.0424],[128.6192,1.047],[128.6269,1.0465],[128.6302,1.0422],[128.6335,1.0446],[128.6418,1.0468],[128.6482,1.0553],[128.6596,1.0561],[128.6711,1.0622],[128.6762,1.0618],[128.6834,1.0679],[128.6886,1.0669],[128.6967,1.0632],[128.7009,1.0678],[128.6981,1.0755],[128.6933,1.0782],[128.6889,1.0908],[128.6891,1.1053],[128.6922,1.1097],[128.6953,1.1211],[128.6947,1.1376],[128.6966,1.141],[128.6956,1.1485],[128.6922,1.1558],[128.6906,1.1793],[128.693,1.1849],[128.6911,1.1889],[128.6911,1.1989],[128.6944,1.2012],[128.6944,1.2071],[128.7018,1.2283],[128.7021,1.234],[128.7106,1.2443],[128.7194,1.2477],[128.7204,1.2565],[128.717,1.2584],[128.7121,1.2653],[128.7097,1.2799],[128.7096,1.2866],[128.7125,1.2933],[128.7226,1.3019],[128.7285,1.2999],[128.7353,1.3037],[128.7387,1.3086],[128.7391,1.3171],[128.7426,1.3227],[128.7468,1.3324],[128.7442,1.3353],[128.7477,1.3462],[128.746,1.3555],[128.7423,1.3639],[128.7421,1.371],[128.7448,1.3766],[128.7485,1.3802],[128.7526,1.3812],[128.7584,1.3911],[128.7568,1.3985],[128.7503,1.4002],[128.7428,1.3972],[128.733,1.4001],[128.7228,1.4075],[128.7123,1.4182],[128.6922,1.4476],[128.6868,1.4602],[128.6861,1.4701],[128.6818,1.4866],[128.681,1.4947],[128.6828,1.5039],[128.6873,1.5086],[128.6966,1.5043],[128.6977,1.5258],[128.6968,1.5362],[128.7022,1.5356],[128.7091,1.5385],[128.7122,1.5365],[128.7176,1.5292],[128.722,1.5273],[128.7315,1.5345],[128.7311,1.5403],[128.7276,1.5408],[128.724,1.551],[128.7236,1.5575],[128.7263,1.5638],[128.723,1.5724],[128.7179,1.5748],[128.6989,1.579],[128.6983,1.5824],[128.683,1.5825],[128.6767,1.5886],[128.6671,1.5894],[128.6587,1.5849],[128.6526,1.5836],[128.6486,1.5809],[128.6401,1.5789],[128.6368,1.5825],[128.6267,1.5826],[128.6199,1.5794],[128.6131,1.5742],[128.6078,1.5729],[128.6022,1.5694],[128.5935,1.5687],[128.5855,1.5711],[128.5758,1.5694],[128.5664,1.5691],[128.5637,1.5704],[128.5517,1.566],[128.542,1.5587],[128.5432,1.5492],[128.5387,1.5435],[128.5257,1.5367],[128.5137,1.533],[128.5065,1.5318],[128.5032,1.5405],[128.4973,1.5433],[128.4937,1.5495],[128.4823,1.5481],[128.4693,1.5514],[128.4648,1.5494],[128.4569,1.5428],[128.4479,1.5403],[128.4327,1.5345],[128.4241,1.5294],[128.4152,1.5268],[128.4114,1.5206],[128.4085,1.5214],[128.397,1.5151],[128.3826,1.5047],[128.371,1.5015],[128.3672,1.4985],[128.3593,1.484],[128.3594,1.4759],[128.3542,1.4721],[128.3523,1.4684],[128.346,1.4649],[128.3451,1.46],[128.3298,1.4542],[128.3167,1.4469],[128.3106,1.4398],[128.3031,1.4372],[128.3,1.4338],[128.2793,1.4294],[128.2702,1.4253],[128.2669,1.4252],[128.2568,1.4199],[128.2504,1.4217],[128.2444,1.42],[128.24,1.4151],[128.2237,1.4022],[128.2189,1.3938],[128.2005,1.3934],[128.1923,1.3898],[128.1667,1.3664],[128.1565,1.3539],[128.1483,1.3396],[128.1415,1.3212],[128.1361,1.3101],[128.1274,1.3025],[128.1226,1.2962],[128.1199,1.2903],[128.1107,1.287],[128.1046,1.2895],[128.0939,1.285],[128.0866,1.2616],[128.0865,1.2533],[128.0885,1.2467],[128.0926,1.2425],[128.1028,1.2386],[128.1107,1.2485],[128.1189,1.2475],[128.1317,1.2519],[128.1358,1.2511],[128.1461,1.2536],[128.1569,1.2518],[128.1622,1.2485],[128.1714,1.2477],[128.1802,1.2423],[128.1936,1.2152],[128.1978,1.2105],[128.2009,1.2],[128.2006,1.1959],[128.195,1.1895],[128.1983,1.1824],[128.1969,1.1721],[128.1946,1.1647],[128.19,1.1587],[128.1816,1.1565],[128.1788,1.1527],[128.178,1.1456],[128.175,1.136],[128.1705,1.1292],[128.1661,1.1248],[128.1502,1.1243],[128.1472,1.121],[128.1372,1.1222],[128.1346,1.1253],[128.1288,1.1279],[128.1229,1.1266],[128.1136,1.1219],[128.1068,1.121],[128.0995,1.1259],[128.092,1.1256],[128.0886,1.1209],[128.0831,1.1241],[128.0702,1.1233],[128.0626,1.1165],[128.0525,1.1161],[128.0443,1.1139],[128.0347,1.1143],[128.0329,1.1162],[128.0215,1.1111],[128.0225,1.1084],[128.0182,1.1041],[128.0107,1.1022],[128.0071,1.0983],[127.9954,1.0925],[127.9879,1.0908],[127.9812,1.0871],[127.9811,1.0784],[127.9757,1.0685],[127.977,1.0613],[127.9661,1.0499],[127.9632,1.0453],[127.9636,1.0386],[127.9605,1.0347],[127.9559,1.0328],[127.9553,1.0273],[127.9524,1.0189],[127.9477,1.0171],[127.9432,1.0122],[127.9401,1.0055],[127.9331,1.0046],[127.9353,0.9971],[127.9343,0.9917],[127.937,0.9853],[127.9364,0.9777],[127.934,0.9727],[127.929,0.9667],[127.9253,0.9655],[127.9256,0.9587],[127.9293,0.9433],[127.9307,0.9222],[127.9325,0.9145],[127.9306,0.9058],[127.9302,0.8976],[127.9327,0.895],[127.934,0.8875],[127.9309,0.8768],[127.9245,0.874],[127.9149,0.8661],[127.9104,0.8584],[127.9025,0.8539],[127.8928,0.8544],[127.8878,0.8504],[127.8882,0.8425],[127.8833,0.8293],[127.8757,0.8262],[127.8714,0.8266],[127.8684,0.821],[127.8619,0.8184],[127.8539,0.8131],[127.8521,0.8101],[127.8439,0.8049],[127.8315,0.8052],[127.8286,0.8017],[127.8206,0.8006],[127.8193,0.7989],[127.8,0.7974],[127.7959,0.7978],[127.7797,0.8073],[127.7714,0.8047],[127.7614,0.8053],[127.754,0.8075],[127.7521,0.8144],[127.7466,0.8142],[127.7343,0.8243],[127.7361,0.8318],[127.7355,0.8375],[127.7314,0.8371],[127.7268,0.8444],[127.7246,0.842],[127.713,0.8514],[127.7088,0.8516],[127.7031,0.8618],[127.7026,0.869],[127.7006,0.8749],[127.6939,0.8789],[127.6917,0.8746],[127.6913,0.8648],[127.6952,0.8604],[127.6953,0.8531],[127.6982,0.8449],[127.6968,0.8341],[127.7068,0.8291],[127.7094,0.8212],[127.7146,0.8095],[127.7211,0.8043],[127.7193,0.7884],[127.7225,0.7818],[127.7283,0.7773],[127.7349,0.775],[127.7308,0.7607],[127.7314,0.7592],[127.7359,0.7558],[127.75,0.7577],[127.7579,0.7506],[127.7573,0.7425],[127.7625,0.7351],[127.7673,0.7303],[127.766,0.7216],[127.7673,0.7195],[127.7669,0.711],[127.768,0.7071],[127.7753,0.6989],[127.7827,0.6931],[127.7809,0.6842],[127.7822,0.6723],[127.7854,0.6656],[127.7886,0.6624],[127.7877,0.6574],[127.7925,0.6469],[127.7921,0.6426],[127.7989,0.6408],[127.8031,0.6414],[127.8084,0.646],[127.8167,0.6438],[127.8267,0.6382],[127.8255,0.6304],[127.829,0.6227],[127.8433,0.6182],[127.8465,0.6199],[127.8537,0.6177],[127.857,0.6229],[127.8642,0.6267],[127.8634,0.6306],[127.875,0.6322],[127.8804,0.6298],[127.8888,0.6306],[127.9033,0.6276],[127.9139,0.6286],[127.9241,0.6274],[127.9286,0.6256],[127.9349,0.6347],[127.9393,0.6344],[127.9413,0.6303],[127.9518,0.6301],[127.96,0.6362],[127.9631,0.6338],[127.973,0.6389],[127.9782,0.638],[127.9848,0.6446],[127.9879,0.6504],[127.9953,0.6567],[128.0045,0.6553],[128.0089,0.6501],[128.0187,0.6501],[128.0243,0.6436],[128.0386,0.6449],[128.0449,0.638],[128.0496,0.6381],[128.057,0.6428],[128.0646,0.6393],[128.0659,0.6357],[128.0653,0.6227],[128.066,0.616],[128.0716,0.6163],[128.0843,0.6147],[128.0899,0.6103],[128.0949,0.6028],[128.0997,0.6064],[128.1052,0.6051],[128.1072,0.5997],[128.1104,0.5983],[128.117,0.5911],[128.1201,0.5943],[128.1279,0.591],[128.1354,0.5891],[128.1415,0.5912],[128.1448,0.5947],[128.1525,0.5953],[128.1581,0.5909],[128.169,0.5897],[128.1719,0.5926],[128.1783,0.59],[128.1891,0.5966],[128.2011,0.5977],[128.2056,0.6014],[128.2142,0.5994],[128.2181,0.5951],[128.2249,0.5943],[128.237,0.5866],[128.2412,0.5818],[128.2423,0.5771],[128.2511,0.5698],[128.2629,0.5709],[128.2668,0.5666],[128.2712,0.5497],[128.2784,0.5481],[128.2873,0.554],[128.3164,0.5546],[128.3181,0.5478],[128.3263,0.5425],[128.3288,0.5391],[128.3376,0.5363],[128.3382,0.5297],[128.3417,0.5232],[128.3516,0.516],[128.3528,0.5134],[128.3585,0.5106],[128.365,0.513],[128.375,0.5123],[128.3815,0.509],[128.3927,0.5068],[128.3994,0.509],[128.4027,0.5023],[128.4073,0.5053],[128.4098,0.503],[128.4221,0.5041],[128.428,0.5021],[128.4384,0.5046],[128.4419,0.5012],[128.447,0.5019],[128.4583,0.4956],[128.4604,0.491],[128.4671,0.4954],[128.4837,0.4898],[128.4893,0.4842],[128.4877,0.479],[128.4905,0.4729],[128.4962,0.4785],[128.5022,0.4794],[128.5046,0.4765],[128.5015,0.4684],[128.503,0.4623],[128.5023,0.4552],[128.5085,0.4503],[128.5097,0.4429],[128.5127,0.4429],[128.5296,0.4353],[128.5336,0.4318],[128.5391,0.4316],[128.5435,0.4225],[128.5589,0.4222],[128.5619,0.416],[128.5656,0.4182],[128.5739,0.4194],[128.5789,0.424],[128.5799,0.4329],[128.584,0.4338],[128.592,0.4379],[128.6055,0.4385],[128.6184,0.4416],[128.6233,0.4469],[128.619,0.457],[128.6183,0.4676],[128.6194,0.4707],[128.6287,0.4806],[128.6262,0.4856],[128.6344,0.487],[128.6388,0.4925],[128.6396,0.5037],[128.642,0.5097],[128.6477,0.5141],[128.6507,0.5142],[128.6571,0.51],[128.6671,0.5062],[128.6706,0.5062],[128.6756,0.5112],[128.6791,0.5061]]}},{"type":"Feature","properties":{"mhid":"1332:475","alt_name":"KABUPATEN PULAU MOROTAI","latitude":2.19924,"longitude":128.40546,"sample_value":371},"geometry":{"type":"LineString","coordinates":[[128.2694,2.0551],[128.2681,2.0526],[128.2706,2.0448],[128.2737,2.0463],[128.2694,2.0551]]}},{"type":"Feature","properties":{"mhid":"1332:475","alt_name":"KABUPATEN PULAU MOROTAI","latitude":2.19924,"longitude":128.40546,"sample_value":371},"geometry":{"type":"LineString","coordinates":[[128.1841,2.0942],[128.186,2.0882],[128.1949,2.0857],[128.1929,2.0911],[128.1841,2.0942]]}},{"type":"Feature","properties":{"mhid":"1332:475","alt_name":"KABUPATEN PULAU MOROTAI","latitude":2.19924,"longitude":128.40546,"sample_value":371},"geometry":{"type":"LineString","coordinates":[[128.2262,2.1157],[128.2269,2.1217],[128.2227,2.1217],[128.2231,2.1171],[128.2262,2.1157]]}},{"type":"Feature","properties":{"mhid":"1332:475","alt_name":"KABUPATEN PULAU MOROTAI","latitude":2.19924,"longitude":128.40546,"sample_value":371},"geometry":{"type":"LineString","coordinates":[[128.1944,2.1272],[128.1878,2.1263],[128.1929,2.1218],[128.1944,2.1272]]}},{"type":"Feature","properties":{"mhid":"1332:475","alt_name":"KABUPATEN PULAU MOROTAI","latitude":2.19924,"longitude":128.40546,"sample_value":371},"geometry":{"type":"LineString","coordinates":[[128.2259,2.1405],[128.2216,2.1387],[128.222,2.1291],[128.2267,2.1272],[128.2323,2.1327],[128.2259,2.1405]]}},{"type":"Feature","properties":{"mhid":"1332:475","alt_name":"KABUPATEN PULAU MOROTAI","latitude":2.19924,"longitude":128.40546,"sample_value":371},"geometry":{"type":"LineString","coordinates":[[128.2118,2.192],[128.2143,2.1972],[128.2129,2.206],[128.2107,2.2094],[128.2055,2.2029],[128.2058,2.1966],[128.2077,2.1929],[128.2118,2.192]]}},{"type":"Feature","properties":{"mhid":"1332:475","alt_name":"KABUPATEN PULAU MOROTAI","latitude":2.19924,"longitude":128.40546,"sample_value":371},"geometry":{"type":"LineString","coordinates":[[128.1827,2.3663],[128.1768,2.3768],[128.1787,2.3809],[128.1784,2.3871],[128.1741,2.3928],[128.1717,2.4036],[128.1665,2.4127],[128.1618,2.4112],[128.1548,2.4066],[128.1495,2.3972],[128.1435,2.3894],[128.1412,2.3822],[128.1451,2.3755],[128.1416,2.3663],[128.1379,2.3656],[128.1322,2.3554],[128.1319,2.3486],[128.137,2.3457],[128.1352,2.3409],[128.1277,2.3386],[128.1249,2.3335],[128.1264,2.3266],[128.1311,2.3223],[128.1297,2.3159],[128.139,2.2995],[128.1437,2.2953],[128.1515,2.2919],[128.1584,2.2914],[128.1612,2.2877],[128.1718,2.2911],[128.1784,2.2908],[128.1853,2.2999],[128.188,2.3065],[128.1855,2.3104],[128.1818,2.3093],[128.1768,2.3147],[128.1794,2.3188],[128.18,2.3262],[128.178,2.3309],[128.1822,2.3392],[128.1805,2.3477],[128.1836,2.3622],[128.1827,2.3663]]}},{"type":"Feature","properties":{"mhid":"1332:475","alt_name":"KABUPATEN PULAU MOROTAI","latitude":2.19924,"longitude":128.40546,"sample_value":371},"geometry":{"type":"LineString","coordinates":[[128.5937,2.6125],[128.5936,2.6154],[128.5892,2.6245],[128.5826,2.6344],[128.5768,2.6402],[128.5692,2.6453],[128.5658,2.6455],[128.5602,2.6419],[128.5485,2.6276],[128.5436,2.6169],[128.5464,2.6068],[128.5353,2.5912],[128.5308,2.5874],[128.5305,2.5807],[128.5261,2.577],[128.5202,2.5761],[128.5116,2.581],[128.5066,2.5799],[128.5028,2.5763],[128.499,2.5789],[128.4964,2.5842],[128.4902,2.5865],[128.4867,2.59],[128.4839,2.5853],[128.4783,2.5933],[128.4749,2.5869],[128.4694,2.5897],[128.4679,2.5965],[128.4611,2.5954],[128.4557,2.585],[128.448,2.5811],[128.4473,2.5713],[128.4397,2.5674],[128.4354,2.5718],[128.4297,2.5681],[128.4303,2.5656],[128.4267,2.5567],[128.4268,2.5528],[128.4202,2.5501],[128.4198,2.5449],[128.4165,2.5422],[128.4159,2.5344],[128.4086,2.526],[128.4043,2.5289],[128.3974,2.5258],[128.3855,2.5185],[128.38,2.518],[128.3805,2.5145],[128.3759,2.5118],[128.3733,2.5062],[128.3646,2.5083],[128.3569,2.5031],[128.3533,2.4976],[128.3493,2.4945],[128.3501,2.4879],[128.3367,2.4811],[128.3338,2.4736],[128.3301,2.4742],[128.3229,2.4711],[128.3214,2.4649],[128.3172,2.4632],[128.3129,2.4584],[128.3054,2.4462],[128.2975,2.4429],[128.2964,2.4389],[128.299,2.4354],[128.2941,2.4297],[128.2973,2.4227],[128.2959,2.4188],[128.2983,2.4114],[128.2917,2.3975],[128.287,2.3901],[128.2862,2.384],[128.2884,2.3806],[128.2843,2.3717],[128.2759,2.3633],[128.276,2.3603],[128.2661,2.3505],[128.2626,2.3424],[128.2518,2.3353],[128.2487,2.3308],[128.2491,2.3268],[128.2429,2.3221],[128.2415,2.3185],[128.2322,2.3162],[128.2315,2.312],[128.2258,2.3083],[128.2201,2.3069],[128.2132,2.302],[128.2113,2.2974],[128.203,2.2907],[128.197,2.2788],[128.2019,2.2773],[128.2093,2.2776],[128.2134,2.2799],[128.2224,2.2771],[128.2265,2.2661],[128.2308,2.2585],[128.2339,2.2584],[128.2354,2.2517],[128.2462,2.2499],[128.2464,2.2439],[128.2497,2.2379],[128.246,2.2348],[128.2441,2.2207],[128.2452,2.2151],[128.24,2.2047],[128.2477,2.197],[128.2493,2.1897],[128.2469,2.1695],[128.2436,2.1631],[128.2444,2.1509],[128.2481,2.138],[128.2466,2.1336],[128.246,2.1237],[128.2507,2.1174],[128.2494,2.1109],[128.2544,2.1021],[128.2534,2.0937],[128.2685,2.0829],[128.2789,2.0876],[128.2858,2.0768],[128.2845,2.0702],[128.2913,2.0618],[128.2932,2.0544],[128.2908,2.051],[128.2918,2.0456],[128.2876,2.0372],[128.2876,2.0301],[128.2838,2.0197],[128.2792,2.012],[128.2759,2.0021],[128.2706,1.9976],[128.2633,1.9855],[128.2691,1.9859],[128.277,1.9929],[128.2788,1.9964],[128.2925,2.0093],[128.2943,2.0132],[128.2931,2.023],[128.2935,2.0307],[128.3007,2.036],[128.3071,2.0343],[128.3267,2.035],[128.3337,2.0378],[128.3457,2.0376],[128.3613,2.0444],[128.3727,2.0469],[128.3801,2.0507],[128.4006,2.0572],[128.4134,2.0573],[128.4257,2.0583],[128.433,2.0609],[128.4464,2.0613],[128.4551,2.0558],[128.4672,2.0555],[128.4707,2.0545],[128.4789,2.0569],[128.4823,2.0614],[128.4888,2.0624],[128.4946,2.0578],[128.5061,2.0595],[128.5219,2.0688],[128.526,2.0813],[128.5304,2.081],[128.5354,2.0843],[128.5422,2.0909],[128.5448,2.1001],[128.5494,2.1041],[128.5605,2.1059],[128.5686,2.1038],[128.574,2.107],[128.5795,2.1164],[128.5794,2.1274],[128.575,2.1363],[128.5797,2.1457],[128.5843,2.1491],[128.5872,2.1618],[128.594,2.1681],[128.5931,2.1741],[128.599,2.185],[128.602,2.1876],[128.6021,2.1925],[128.605,2.1961],[128.6097,2.1968],[128.6117,2.2011],[128.6171,2.206],[128.623,2.2139],[128.6234,2.2202],[128.622,2.2308],[128.6253,2.2382],[128.6253,2.2422],[128.6301,2.26],[128.6367,2.2722],[128.6411,2.277],[128.6442,2.2877],[128.6487,2.2943],[128.6478,2.3003],[128.6539,2.3117],[128.6492,2.3152],[128.6433,2.3248],[128.6413,2.3334],[128.6451,2.34],[128.6449,2.3459],[128.6472,2.3517],[128.6474,2.3592],[128.6498,2.3675],[128.6574,2.3769],[128.664,2.3779],[128.6655,2.3815],[128.6637,2.3912],[128.6688,2.3986],[128.6732,2.3988],[128.684,2.4066],[128.6881,2.4116],[128.6884,2.4171],[128.6939,2.4224],[128.6929,2.4276],[128.687,2.4315],[128.6917,2.4403],[128.6923,2.4444],[128.6874,2.4561],[128.6927,2.46],[128.6926,2.4732],[128.6905,2.4898],[128.6877,2.5023],[128.6796,2.5059],[128.677,2.5053],[128.6733,2.4986],[128.6697,2.5001],[128.6699,2.5043],[128.6617,2.5149],[128.6612,2.5217],[128.6584,2.5252],[128.6535,2.5267],[128.6516,2.5238],[128.6444,2.5337],[128.6365,2.5309],[128.6317,2.5368],[128.636,2.5433],[128.6322,2.5509],[128.6304,2.5639],[128.6248,2.5618],[128.6137,2.5672],[128.6076,2.5757],[128.6082,2.5804],[128.6114,2.581],[128.6018,2.6025],[128.5937,2.6125]]}},{"type":"Feature","properties":{"mhid":"1332:476","alt_name":"KABUPATEN PULAU TALIABU","latitude":-1.84578,"longitude":124.78992,"sample_value":417},"geometry":{"type":"LineString","coordinates":[[124.3922,-2.0329],[124.3856,-2.035],[124.3786,-2.0391],[124.3736,-2.0468],[124.373,-2.0549],[124.3754,-2.0605],[124.3856,-2.068],[124.3887,-2.0735],[124.3944,-2.0633],[124.3885,-2.0612],[124.3911,-2.0536],[124.395,-2.0538],[124.3955,-2.0582],[124.3992,-2.0588],[124.4026,-2.0559],[124.4049,-2.0441],[124.3976,-2.0364],[124.3922,-2.0329]]}},{"type":"Feature","properties":{"mhid":"1332:476","alt_name":"KABUPATEN PULAU TALIABU","latitude":-1.84578,"longitude":124.78992,"sample_value":417},"geometry":{"type":"LineString","coordinates":[[124.4862,-2.0215],[124.497,-2.016],[124.4926,-2.0138],[124.4862,-2.0215]]}},{"type":"Feature","properties":{"mhid":"1332:476","alt_name":"KABUPATEN PULAU TALIABU","latitude":-1.84578,"longitude":124.78992,"sample_value":417},"geometry":{"type":"LineString","coordinates":[[124.3335,-1.966],[124.3288,-1.9685],[124.3224,-1.9694],[124.3193,-1.9725],[124.3138,-1.9733],[124.3103,-1.976],[124.3119,-1.9813],[124.316,-1.987],[124.3134,-1.9907],[124.3077,-1.9879],[124.3039,-1.9972],[124.3052,-2.0053],[124.3092,-2.0012],[124.315,-1.9983],[124.3183,-2.0027],[124.3145,-2.0079],[124.3144,-2.0111],[124.3214,-2.014],[124.3303,-2.016],[124.3345,-2.0208],[124.3449,-2.0242],[124.3517,-2.0286],[124.36,-2.0432],[124.3667,-2.0389],[124.3632,-2.0338],[124.3667,-2.0303],[124.3677,-2.0209],[124.3653,-2.0158],[124.3694,-2.0132],[124.3678,-2.0069],[124.3694,-1.9993],[124.3753,-1.9906],[124.3703,-1.9864],[124.3705,-1.9777],[124.3668,-1.9725],[124.36,-1.9704],[124.3554,-1.9726],[124.3517,-1.9689],[124.3429,-1.969],[124.3428,-1.9738],[124.3372,-1.9742],[124.3375,-1.9694],[124.3335,-1.966]]}},{"type":"Feature","properties":{"mhid":"1332:476","alt_name":"KABUPATEN PULAU TALIABU","latitude":-1.84578,"longitude":124.78992,"sample_value":417},"geometry":{"type":"LineString","coordinates":[[124.3386,-1.899],[124.3353,-1.8951],[124.3324,-1.8979],[124.3361,-1.9029],[124.3386,-1.899]]}},{"type":"Feature","properties":{"mhid":"1332:476","alt_name":"KABUPATEN PULAU TALIABU","latitude":-1.84578,"longitude":124.78992,"sample_value":417},"geometry":{"type":"LineString","coordinates":[[124.3145,-1.7857],[124.3107,-1.7879],[124.3106,-1.7949],[124.3159,-1.7922],[124.3145,-1.7857]]}},{"type":"Feature","properties":{"mhid":"1332:476","alt_name":"KABUPATEN PULAU TALIABU","latitude":-1.84578,"longitude":124.78992,"sample_value":417},"geometry":{"type":"LineString","coordinates":[[124.3481,-1.7596],[124.345,-1.7574],[124.3422,-1.7629],[124.3415,-1.7722],[124.3446,-1.7783],[124.3489,-1.776],[124.3501,-1.7704],[124.3481,-1.7596]]}},{"type":"Feature","properties":{"mhid":"1332:476","alt_name":"KABUPATEN PULAU TALIABU","latitude":-1.84578,"longitude":124.78992,"sample_value":417},"geometry":{"type":"LineString","coordinates":[[124.2929,-1.7448],[124.285,-1.7514],[124.2835,-1.7594],[124.2914,-1.7752],[124.2987,-1.78],[124.3047,-1.7801],[124.3087,-1.7859],[124.314,-1.7839],[124.3127,-1.7779],[124.3064,-1.7686],[124.302,-1.7668],[124.3037,-1.762],[124.2975,-1.7554],[124.2896,-1.7535],[124.2887,-1.7507],[124.2929,-1.7448]]}},{"type":"Feature","properties":{"mhid":"1332:476","alt_name":"KABUPATEN PULAU TALIABU","latitude":-1.84578,"longitude":124.78992,"sample_value":417},"geometry":{"type":"LineString","coordinates":[[124.369,-1.7362],[124.3633,-1.7388],[124.3661,-1.7419],[124.369,-1.7362]]}},{"type":"Feature","properties":{"mhid":"1332:476","alt_name":"KABUPATEN PULAU TALIABU","latitude":-1.84578,"longitude":124.78992,"sample_value":417},"geometry":{"type":"LineString","coordinates":[[124.3159,-1.7186],[124.3112,-1.7233],[124.314,-1.7363],[124.3181,-1.7433],[124.3215,-1.7408],[124.3186,-1.7286],[124.3197,-1.7226],[124.3159,-1.7186]]}},{"type":"Feature","properties":{"mhid":"1332:476","alt_name":"KABUPATEN PULAU TALIABU","latitude":-1.84578,"longitude":124.78992,"sample_value":417},"geometry":{"type":"LineString","coordinates":[[124.3396,-1.7134],[124.3401,-1.7102],[124.3363,-1.7052],[124.3313,-1.7106],[124.3305,-1.7171],[124.3339,-1.7227],[124.3396,-1.7134]]}},{"type":"Feature","properties":{"mhid":"1332:476","alt_name":"KABUPATEN PULAU TALIABU","latitude":-1.84578,"longitude":124.78992,"sample_value":417},"geometry":{"type":"LineString","coordinates":[[124.3444,-1.7125],[124.3449,-1.7074],[124.3502,-1.7036],[124.3509,-1.6973],[124.3483,-1.693],[124.3446,-1.6948],[124.341,-1.7031],[124.3444,-1.7125]]}},{"type":"Feature","properties":{"mhid":"1332:476","alt_name":"KABUPATEN PULAU TALIABU","latitude":-1.84578,"longitude":124.78992,"sample_value":417},"geometry":{"type":"LineString","coordinates":[[124.9649,-1.6636],[124.953,-1.6641],[124.9497,-1.6662],[124.9541,-1.6719],[124.9568,-1.6691],[124.9686,-1.6674],[124.9649,-1.6636]]}},{"type":"Feature","properties":{"mhid":"1332:476","alt_name":"KABUPATEN PULAU TALIABU","latitude":-1.84578,"longitude":124.78992,"sample_value":417},"geometry":{"type":"LineString","coordinates":[[124.8958,-1.6588],[124.8885,-1.6582],[124.889,-1.6633],[124.8958,-1.6588]]}},{"type":"Feature","properties":{"mhid":"1332:476","alt_name":"KABUPATEN PULAU TALIABU","latitude":-1.84578,"longitude":124.78992,"sample_value":417},"geometry":{"type":"LineString","coordinates":[[124.9953,-1.6567],[124.9924,-1.6571],[124.9912,-1.6623],[124.9981,-1.6676],[124.9995,-1.6703],[125.0069,-1.6673],[125.0224,-1.6655],[125.019,-1.6625],[125.0057,-1.6591],[124.9994,-1.6595],[124.9953,-1.6567]]}},{"type":"Feature","properties":{"mhid":"1332:476","alt_name":"KABUPATEN PULAU TALIABU","latitude":-1.84578,"longitude":124.78992,"sample_value":417},"geometry":{"type":"LineString","coordinates":[[124.5314,-1.6305],[124.5271,-1.6305],[124.523,-1.6347],[124.5116,-1.6353],[124.5085,-1.6413],[124.5103,-1.6494],[124.5072,-1.653],[124.501,-1.6558],[124.4899,-1.6588],[124.4667,-1.6631],[124.4477,-1.6633],[124.4387,-1.6647],[124.4225,-1.6648],[124.4006,-1.6601],[124.3921,-1.6659],[124.3853,-1.6748],[124.3793,-1.6763],[124.3729,-1.6849],[124.3721,-1.6883],[124.3628,-1.7022],[124.3611,-1.7077],[124.3611,-1.7145],[124.366,-1.7114],[124.3685,-1.7198],[124.3671,-1.7302],[124.3714,-1.7339],[124.3719,-1.7422],[124.3653,-1.7453],[124.3621,-1.7513],[124.3644,-1.7538],[124.3632,-1.76],[124.3602,-1.7625],[124.3605,-1.7702],[124.3577,-1.7721],[124.3541,-1.781],[124.3482,-1.788],[124.3465,-1.8053],[124.3448,-1.8117],[124.3422,-1.8148],[124.3445,-1.8226],[124.3424,-1.8255],[124.342,-1.8315],[124.3449,-1.835],[124.3449,-1.8448],[124.3405,-1.867],[124.3414,-1.874],[124.3402,-1.8797],[124.3369,-1.8824],[124.3369,-1.8906],[124.3414,-1.8985],[124.3424,-1.9056],[124.3488,-1.9112],[124.3531,-1.9219],[124.3608,-1.9293],[124.3685,-1.9333],[124.3701,-1.9383],[124.3787,-1.9416],[124.3824,-1.9479],[124.3827,-1.9568],[124.3915,-1.9689],[124.3951,-1.9771],[124.3953,-1.9834],[124.3977,-1.9898],[124.3966,-2.0013],[124.3921,-2.0193],[124.3969,-2.0231],[124.3972,-2.0295],[124.405,-2.0316],[124.414,-2.0238],[124.4197,-2.0229],[124.4262,-2.0259],[124.445,-2.024],[124.4511,-2.0244],[124.4647,-2.0181],[124.4711,-2.0177],[124.4802,-2.0217],[124.4822,-2.0249],[124.4922,-2.0123],[124.4946,-2.0035],[124.4998,-1.9966],[124.5071,-1.9915],[124.5117,-1.9904],[124.5156,-1.984],[124.5215,-1.9809],[124.5279,-1.9845],[124.5331,-1.9845],[124.5387,-1.9887],[124.5459,-1.9859],[124.5565,-1.9937],[124.5624,-1.9923],[124.5638,-1.9972],[124.5567,-1.9977],[124.5494,-2.0023],[124.5311,-2.0067],[124.5283,-1.9948],[124.5198,-1.9906],[124.5155,-1.9918],[124.5098,-2.0007],[124.5009,-1.9998],[124.4977,-2.0019],[124.4932,-2.0095],[124.4939,-2.0132],[124.5019,-2.012],[124.5084,-2.014],[124.5131,-2.0137],[124.5243,-2.0183],[124.5456,-2.0104],[124.5696,-2.0044],[124.5834,-2.0027],[124.6115,-1.9927],[124.6332,-1.9879],[124.6518,-1.9799],[124.6717,-1.9744],[124.6788,-1.976],[124.6868,-1.9718],[124.6935,-1.9704],[124.6928,-1.9653],[124.6967,-1.9582],[124.7023,-1.953],[124.7118,-1.9479],[124.7324,-1.94],[124.7389,-1.9391],[124.7552,-1.9329],[124.7634,-1.9278],[124.7676,-1.9204],[124.7741,-1.9158],[124.7886,-1.9102],[124.8122,-1.9025],[124.8246,-1.8996],[124.8359,-1.899],[124.8412,-1.8958],[124.8481,-1.8938],[124.8617,-1.8916],[124.8754,-1.9035],[124.8767,-1.9103],[124.8908,-1.9266],[124.9028,-1.928],[124.9119,-1.9259],[124.9194,-1.9258],[124.9216,-1.9283],[124.9272,-1.9267],[124.9353,-1.9285],[124.9547,-1.9302],[124.9573,-1.9273],[124.9618,-1.9315],[124.9722,-1.9328],[124.9739,-1.9362],[124.9802,-1.9409],[124.9884,-1.937],[124.9897,-1.9319],[124.9946,-1.9318],[124.9991,-1.9408],[125.0088,-1.9436],[125.0138,-1.9422],[125.0176,-1.9382],[125.0213,-1.9281],[125.0199,-1.9115],[125.0132,-1.9052],[125.0156,-1.8978],[125.0261,-1.8914],[125.0349,-1.8888],[125.0559,-1.8854],[125.0593,-1.8854],[125.0641,-1.8894],[125.0707,-1.8906],[125.0816,-1.8896],[125.0896,-1.8931],[125.0923,-1.8981],[125.1009,-1.9],[125.1072,-1.8976],[125.1131,-1.8926],[125.1147,-1.8885],[125.1197,-1.883],[125.1251,-1.8813],[125.1271,-1.8775],[125.1501,-1.8741],[125.1622,-1.8754],[125.1686,-1.875],[125.1729,-1.8806],[125.1779,-1.8842],[125.1888,-1.8852],[125.1961,-1.881],[125.2022,-1.8807],[125.209,-1.8826],[125.2137,-1.8806],[125.2245,-1.88],[125.2292,-1.8785],[125.228,-1.8739],[125.2334,-1.8721],[125.2347,-1.8772],[125.2389,-1.8818],[125.2527,-1.8832],[125.2581,-1.8854],[125.2685,-1.8856],[125.2744,-1.8846],[125.2807,-1.8874],[125.2944,-1.8907],[125.3034,-1.8895],[125.3086,-1.8933],[125.3148,-1.8935],[125.3246,-1.888],[125.3272,-1.8849],[125.3231,-1.8756],[125.3224,-1.8635],[125.3194,-1.8586],[125.3153,-1.8457],[125.3174,-1.8327],[125.3149,-1.8267],[125.3166,-1.8231],[125.3182,-1.8097],[125.324,-1.7982],[125.322,-1.7855],[125.3163,-1.781],[125.3097,-1.7793],[125.3052,-1.7808],[125.2992,-1.7787],[125.2947,-1.7801],[125.2865,-1.7866],[125.2796,-1.795],[125.2732,-1.797],[125.2697,-1.7906],[125.2697,-1.7847],[125.2775,-1.7817],[125.2898,-1.774],[125.2955,-1.7671],[125.2972,-1.7568],[125.2949,-1.7502],[125.298,-1.7422],[125.2962,-1.7351],[125.2876,-1.7305],[125.272,-1.7265],[125.2623,-1.7262],[125.2564,-1.7235],[125.2482,-1.724],[125.2428,-1.7229],[125.2364,-1.7281],[125.2329,-1.7385],[125.2283,-1.74],[125.2252,-1.7356],[125.2217,-1.7363],[125.2214,-1.7432],[125.2228,-1.7481],[125.2268,-1.7521],[125.2295,-1.7604],[125.2287,-1.7659],[125.2253,-1.7666],[125.222,-1.7801],[125.2182,-1.7784],[125.2136,-1.7924],[125.2078,-1.7929],[125.1978,-1.7916],[125.1849,-1.7857],[125.1803,-1.7813],[125.1814,-1.7779],[125.1859,-1.7766],[125.1872,-1.7684],[125.191,-1.7661],[125.1947,-1.753],[125.1936,-1.7465],[125.198,-1.7429],[125.1996,-1.7333],[125.206,-1.7281],[125.2021,-1.7222],[125.1978,-1.7201],[125.1948,-1.7134],[125.1916,-1.7115],[125.1851,-1.7165],[125.1808,-1.7147],[125.1807,-1.7029],[125.1741,-1.6987],[125.1716,-1.701],[125.1638,-1.6952],[125.1614,-1.7008],[125.1512,-1.7075],[125.1418,-1.7097],[125.1393,-1.7065],[125.1436,-1.7008],[125.1427,-1.695],[125.1387,-1.6917],[125.1371,-1.6874],[125.1285,-1.6838],[125.1109,-1.6882],[125.1077,-1.6912],[125.1063,-1.7069],[125.1086,-1.7095],[125.1087,-1.7177],[125.1063,-1.7239],[125.1027,-1.7267],[125.1076,-1.7353],[125.1051,-1.7423],[125.0974,-1.7442],[125.0934,-1.7411],[125.0894,-1.742],[125.0893,-1.7469],[125.0969,-1.7508],[125.1043,-1.7531],[125.1052,-1.7583],[125.1013,-1.7611],[125.096,-1.7608],[125.0906,-1.7569],[125.0825,-1.7594],[125.0793,-1.7577],[125.0773,-1.7635],[125.0724,-1.7724],[125.0687,-1.7715],[125.0689,-1.7533],[125.0675,-1.7493],[125.0631,-1.7497],[125.0627,-1.7444],[125.0571,-1.7472],[125.0601,-1.7576],[125.0593,-1.7656],[125.057,-1.7682],[125.0508,-1.7689],[125.0478,-1.7714],[125.0424,-1.7664],[125.041,-1.7604],[125.0342,-1.7562],[125.0227,-1.7602],[125.0186,-1.7574],[125.0141,-1.7463],[125.0238,-1.7285],[125.0182,-1.7253],[125.0178,-1.7207],[125.004,-1.7273],[124.9977,-1.7244],[125.0016,-1.7205],[125.0023,-1.7164],[124.9979,-1.7132],[124.9773,-1.7156],[124.977,-1.7108],[124.9835,-1.7091],[124.9781,-1.7045],[124.9718,-1.7049],[124.9679,-1.7032],[124.9649,-1.706],[124.9586,-1.695],[124.9485,-1.6986],[124.95,-1.7053],[124.9447,-1.7027],[124.9414,-1.6973],[124.9333,-1.699],[124.9316,-1.705],[124.922,-1.7047],[124.9127,-1.6998],[124.9089,-1.7033],[124.904,-1.7037],[124.902,-1.7083],[124.8983,-1.7087],[124.8941,-1.7051],[124.8941,-1.701],[124.8866,-1.6993],[124.8806,-1.6951],[124.8769,-1.6866],[124.8662,-1.6823],[124.8573,-1.6821],[124.8522,-1.6834],[124.8398,-1.6838],[124.8327,-1.683],[124.8264,-1.6807],[124.8247,-1.6768],[124.8193,-1.677],[124.8163,-1.6746],[124.8059,-1.6731],[124.8022,-1.6752],[124.802,-1.6813],[124.7878,-1.6784],[124.783,-1.6744],[124.781,-1.6667],[124.7778,-1.6651],[124.7686,-1.6703],[124.7634,-1.671],[124.7508,-1.6707],[124.7454,-1.6658],[124.738,-1.6641],[124.7356,-1.662],[124.7286,-1.6618],[124.7128,-1.654],[124.7085,-1.6568],[124.6958,-1.6525],[124.6882,-1.6513],[124.6813,-1.6476],[124.6715,-1.6439],[124.6492,-1.6422],[124.6444,-1.6401],[124.6363,-1.6404],[124.6281,-1.6393],[124.6248,-1.6408],[124.6134,-1.6385],[124.6048,-1.6386],[124.597,-1.6452],[124.5894,-1.6407],[124.5785,-1.6471],[124.5698,-1.6454],[124.5642,-1.6409],[124.5571,-1.6384],[124.5463,-1.6428],[124.541,-1.6422],[124.537,-1.6458],[124.5322,-1.6588],[124.5278,-1.6651],[124.5231,-1.6636],[124.5212,-1.6555],[124.524,-1.6491],[124.5252,-1.6368],[124.5314,-1.6326],[124.5314,-1.6305]]}},{"type":"Feature","properties":{"mhid":"1332:476","alt_name":"KABUPATEN PULAU TALIABU","latitude":-1.84578,"longitude":124.78992,"sample_value":417},"geometry":{"type":"LineString","coordinates":[[124.4921,-1.6286],[124.4871,-1.6293],[124.4859,-1.633],[124.4889,-1.6368],[124.4921,-1.6286]]}},{"type":"Feature","properties":{"mhid":"1332:476","alt_name":"KABUPATEN PULAU TALIABU","latitude":-1.84578,"longitude":124.78992,"sample_value":417},"geometry":{"type":"LineString","coordinates":[[124.4739,-1.5777],[124.4723,-1.5837],[124.4741,-1.5881],[124.4785,-1.5927],[124.4785,-1.6028],[124.4832,-1.5974],[124.4827,-1.5923],[124.4848,-1.5893],[124.4807,-1.5803],[124.4739,-1.5777]]}},{"type":"Feature","properties":{"mhid":"1332:477","alt_name":"KOTA TERNATE","latitude":0.89618,"longitude":127.31016,"sample_value":31},"geometry":{"type":"LineString","coordinates":[[127.4056,0.481],[127.395,0.4774],[127.3857,0.4707],[127.3859,0.4666],[127.3817,0.4543],[127.3832,0.448],[127.3881,0.4399],[127.3917,0.4394],[127.4005,0.4328],[127.4145,0.434],[127.4199,0.4327],[127.4266,0.4357],[127.4288,0.4397],[127.4387,0.4469],[127.4392,0.4521],[127.4346,0.4564],[127.4335,0.4631],[127.4243,0.4728],[127.4213,0.4736],[127.4191,0.4784],[127.4153,0.4804],[127.4056,0.481]]}},{"type":"Feature","properties":{"mhid":"1332:477","alt_name":"KOTA TERNATE","latitude":0.89618,"longitude":127.31016,"sample_value":31},"geometry":{"type":"LineString","coordinates":[[127.3278,0.867],[127.3246,0.867],[127.3178,0.8573],[127.3184,0.8537],[127.3135,0.8476],[127.3022,0.8412],[127.3002,0.8317],[127.2947,0.8211],[127.2936,0.8084],[127.2951,0.8053],[127.2937,0.7968],[127.294,0.791],[127.2981,0.7866],[127.3019,0.7783],[127.3027,0.7726],[127.3056,0.7657],[127.3133,0.7579],[127.3238,0.7545],[127.3308,0.7552],[127.3381,0.7532],[127.3507,0.7589],[127.3568,0.7604],[127.3648,0.7593],[127.3706,0.7602],[127.3773,0.7657],[127.3788,0.7716],[127.3865,0.777],[127.3886,0.7852],[127.3911,0.7894],[127.3882,0.7993],[127.3887,0.8136],[127.3902,0.8169],[127.3886,0.8289],[127.3864,0.8333],[127.3772,0.8408],[127.3674,0.845],[127.3633,0.8487],[127.3528,0.8541],[127.3418,0.8632],[127.3368,0.8623],[127.3278,0.867]]}},{"type":"Feature","properties":{"mhid":"1332:477","alt_name":"KOTA TERNATE","latitude":0.89618,"longitude":127.31016,"sample_value":31},"geometry":{"type":"LineString","coordinates":[[127.3153,0.9132],[127.3112,0.9095],[127.3104,0.9044],[127.3054,0.9026],[127.3029,0.898],[127.3058,0.8958],[127.3071,0.8906],[127.3142,0.8827],[127.3182,0.8813],[127.3249,0.8841],[127.3314,0.892],[127.3299,0.9008],[127.3262,0.9048],[127.3183,0.9082],[127.3153,0.9132]]}},{"type":"Feature","properties":{"mhid":"1332:477","alt_name":"KOTA TERNATE","latitude":0.89618,"longitude":127.31016,"sample_value":31},"geometry":{"type":"LineString","coordinates":[[126.1354,0.9814],[126.1288,0.9812],[126.1292,0.9752],[126.1369,0.9716],[126.1395,0.9649],[126.1506,0.9571],[126.1547,0.9561],[126.162,0.9578],[126.1615,0.9611],[126.1506,0.9646],[126.1454,0.9711],[126.1563,0.9737],[126.1525,0.9765],[126.1354,0.9814]]}},{"type":"Feature","properties":{"mhid":"1332:477","alt_name":"KOTA TERNATE","latitude":0.89618,"longitude":127.31016,"sample_value":31},"geometry":{"type":"LineString","coordinates":[[126.3855,1.3481],[126.3815,1.3531],[126.3744,1.3474],[126.3698,1.3468],[126.3647,1.3422],[126.3577,1.331],[126.3568,1.3219],[126.3583,1.3187],[126.3648,1.3195],[126.3766,1.3118],[126.3771,1.3067],[126.3837,1.3004],[126.3861,1.2927],[126.3938,1.2849],[126.3978,1.285],[126.3975,1.2956],[126.3996,1.3008],[126.399,1.3166],[126.415,1.3272],[126.4165,1.3327],[126.4121,1.3381],[126.3959,1.3409],[126.3855,1.3481]]}},{"type":"Feature","properties":{"mhid":"1332:478","alt_name":"KOTA TIDORE KEPULAUAN","latitude":0.60962,"longitude":127.56981,"sample_value":636},"geometry":{"type":"LineString","coordinates":[[127.3949,0.5852],[127.3874,0.5788],[127.3847,0.5722],[127.3795,0.5646],[127.3802,0.5604],[127.3859,0.5648],[127.3905,0.5619],[127.3977,0.5638],[127.4011,0.5676],[127.4057,0.5678],[127.411,0.5738],[127.4105,0.581],[127.4082,0.5845],[127.3949,0.5852]]}},{"type":"Feature","properties":{"mhid":"1332:478","alt_name":"KOTA TIDORE KEPULAUAN","latitude":0.60962,"longitude":127.56981,"sample_value":636},"geometry":{"type":"LineString","coordinates":[[127.3686,0.7413],[127.3639,0.7369],[127.3623,0.7323],[127.3664,0.7252],[127.37,0.7235],[127.3756,0.7254],[127.3791,0.7292],[127.3789,0.7357],[127.374,0.7405],[127.3686,0.7413]]}},{"type":"Feature","properties":{"mhid":"1332:478","alt_name":"KOTA TIDORE KEPULAUAN","latitude":0.60962,"longitude":127.56981,"sample_value":636},"geometry":{"type":"LineString","coordinates":[[127.4066,0.7577],[127.3992,0.7573],[127.3946,0.7518],[127.3894,0.7522],[127.3855,0.7477],[127.3866,0.738],[127.3843,0.7343],[127.3866,0.7253],[127.3797,0.7131],[127.3787,0.7056],[127.3733,0.6982],[127.3682,0.6936],[127.3651,0.6826],[127.362,0.6783],[127.3649,0.6607],[127.3652,0.6522],[127.3678,0.6442],[127.3725,0.6393],[127.3786,0.6302],[127.3881,0.6254],[127.402,0.6219],[127.4124,0.6223],[127.4238,0.6261],[127.4318,0.6322],[127.4321,0.6359],[127.4403,0.6437],[127.4429,0.6489],[127.4477,0.654],[127.4508,0.6648],[127.4563,0.6726],[127.4567,0.6784],[127.4542,0.6832],[127.4575,0.7072],[127.4604,0.7159],[127.4554,0.7217],[127.455,0.7316],[127.4513,0.7361],[127.4515,0.7406],[127.4492,0.7453],[127.4272,0.7489],[127.42,0.7522],[127.4084,0.7481],[127.4053,0.7528],[127.4066,0.7577]]}},{"type":"Feature","properties":{"mhid":"1332:478","alt_name":"KOTA TIDORE KEPULAUAN","latitude":0.60962,"longitude":127.56981,"sample_value":636},"geometry":{"type":"LineString","coordinates":[[127.7314,0.7592],[127.728,0.7589],[127.7168,0.765],[127.7135,0.7614],[127.7026,0.7627],[127.7003,0.7563],[127.6923,0.7563],[127.6869,0.7588],[127.6821,0.7587],[127.672,0.7713],[127.6631,0.7721],[127.663,0.7755],[127.6528,0.7759],[127.6482,0.7743],[127.648,0.7695],[127.6412,0.7685],[127.6361,0.7696],[127.6289,0.7773],[127.6216,0.7784],[127.621,0.782],[127.6243,0.785],[127.6183,0.7902],[127.6153,0.7828],[127.6108,0.7799],[127.6024,0.7791],[127.5989,0.7727],[127.6041,0.7639],[127.6019,0.7575],[127.5926,0.7572],[127.5819,0.7541],[127.5746,0.7537],[127.5701,0.7493],[127.5576,0.7408],[127.5485,0.7313],[127.5473,0.7288],[127.5501,0.7206],[127.5484,0.7134],[127.548,0.7029],[127.552,0.6949],[127.5512,0.6824],[127.5455,0.6663],[127.5455,0.6607],[127.5402,0.6549],[127.5414,0.6454],[127.5409,0.6318],[127.5342,0.6231],[127.5295,0.6129],[127.5303,0.6032],[127.5348,0.5888],[127.5368,0.574],[127.5351,0.5673],[127.5277,0.5584],[127.5273,0.5528],[127.5344,0.5435],[127.5377,0.5407],[127.5394,0.5342],[127.5433,0.5296],[127.5478,0.5286],[127.5596,0.5207],[127.5631,0.5107],[127.5651,0.4945],[127.5677,0.4909],[127.5671,0.4758],[127.5696,0.4726],[127.5682,0.469],[127.5698,0.4532],[127.5747,0.4506],[127.576,0.443],[127.5726,0.4355],[127.575,0.4325],[127.573,0.4288],[127.5809,0.4287],[127.5831,0.421],[127.5789,0.4184],[127.5847,0.4091],[127.5941,0.4078],[127.5947,0.4022],[127.6006,0.403],[127.6051,0.3979],[127.6115,0.3986],[127.6222,0.3961],[127.6229,0.3863],[127.6216,0.3801],[127.6182,0.3762],[127.619,0.3683],[127.621,0.3611],[127.625,0.3591],[127.6351,0.3571],[127.6382,0.3589],[127.6436,0.3572],[127.6484,0.3579],[127.6517,0.3555],[127.6573,0.3448],[127.6614,0.3422],[127.6654,0.3459],[127.6702,0.3464],[127.6774,0.3495],[127.6861,0.3483],[127.6959,0.3458],[127.7026,0.3502],[127.7095,0.3529],[127.7103,0.3504],[127.7167,0.3478],[127.721,0.3423],[127.7263,0.3313],[127.7284,0.3246],[127.7317,0.3192],[127.7343,0.311],[127.734,0.302],[127.7279,0.2873],[127.7235,0.273],[127.7162,0.2649],[127.7173,0.2571],[127.7148,0.2424],[127.7121,0.2354],[127.7083,0.2298],[127.7066,0.2208],[127.7087,0.214],[127.7068,0.2073],[127.7003,0.199],[127.7014,0.1952],[127.697,0.1876],[127.6944,0.1683],[127.696,0.1596],[127.6922,0.1447],[127.694,0.1402],[127.6986,0.1376],[127.7014,0.1297],[127.7017,0.1248],[127.6996,0.1206],[127.6902,0.112],[127.6894,0.1032],[127.692,0.1002],[127.7046,0.1009],[127.7075,0.1039],[127.7127,0.1022],[127.7117,0.0961],[127.7139,0.0876],[127.7169,0.0845],[127.7169,0.0783],[127.7209,0.0756],[127.7219,0.0694],[127.7206,0.0603],[127.7175,0.0512],[127.7168,0.0449],[127.7104,0.0352],[127.7081,0.0278],[127.7001,0.0177],[127.6975,0.0084],[127.6972,-0.0026],[127.6997,-0.01],[127.7108,-0.0067],[127.7109,-0.0002],[127.7139,0.0033],[127.7178,0.0013],[127.7328,0.0048],[127.7355,0.0091],[127.7375,0.0182],[127.7402,0.021],[127.7481,0.0235],[127.7532,0.0202],[127.7585,0.0213],[127.7681,0.0255],[127.7677,0.0177],[127.7686,0.0082],[127.7703,0.0041],[127.7862,0.0056],[127.7917,0.0118],[127.7953,0.0124],[127.8024,0.0215],[127.8102,0.0181],[127.8173,0.0319],[127.8143,0.0384],[127.8074,0.0424],[127.8068,0.047],[127.8019,0.0491],[127.7966,0.054],[127.7951,0.0607],[127.7958,0.0657],[127.7942,0.0745],[127.7969,0.0817],[127.79,0.0875],[127.7898,0.0932],[127.792,0.0991],[127.7906,0.1089],[127.792,0.12],[127.7888,0.126],[127.791,0.1351],[127.7891,0.1407],[127.7886,0.1522],[127.7877,0.1546],[127.794,0.1674],[127.7954,0.1735],[127.8025,0.1832],[127.8048,0.1904],[127.8095,0.1959],[127.8222,0.2017],[127.8235,0.2096],[127.8171,0.2157],[127.8119,0.2239],[127.814,0.23],[127.8056,0.2338],[127.7991,0.2406],[127.7973,0.25],[127.8076,0.2572],[127.8116,0.2696],[127.8195,0.2726],[127.8173,0.2796],[127.8121,0.2843],[127.802,0.301],[127.8022,0.3078],[127.7995,0.3109],[127.7986,0.3174],[127.8039,0.3353],[127.8067,0.3382],[127.8071,0.343],[127.8007,0.3619],[127.801,0.367],[127.8065,0.3737],[127.8034,0.3807],[127.7997,0.3816],[127.7985,0.3857],[127.7891,0.3914],[127.7899,0.3977],[127.7786,0.4084],[127.7751,0.4129],[127.775,0.4189],[127.7724,0.4276],[127.7723,0.4325],[127.7747,0.4373],[127.7736,0.4482],[127.7692,0.451],[127.7687,0.4546],[127.773,0.4591],[127.7762,0.4668],[127.7772,0.4732],[127.7756,0.4767],[127.7777,0.4835],[127.7845,0.4883],[127.7926,0.4868],[127.7963,0.4817],[127.8014,0.4849],[127.806,0.4901],[127.805,0.4965],[127.8061,0.5036],[127.8036,0.5081],[127.8055,0.5122],[127.8116,0.5154],[127.8123,0.5217],[127.8066,0.5261],[127.8135,0.5325],[127.8159,0.5372],[127.8197,0.5376],[127.826,0.5427],[127.8247,0.5522],[127.8214,0.5565],[127.8228,0.5673],[127.8291,0.5693],[127.8315,0.5721],[127.8284,0.5807],[127.8252,0.5825],[127.8211,0.5916],[127.8098,0.5991],[127.8111,0.6042],[127.8089,0.6089],[127.8099,0.6145],[127.8068,0.6186],[127.7978,0.6232],[127.7919,0.6313],[127.7909,0.6383],[127.7921,0.6426],[127.7925,0.6469],[127.7877,0.6574],[127.7886,0.6624],[127.7854,0.6656],[127.7822,0.6723],[127.7809,0.6842],[127.7827,0.6931],[127.7753,0.6989],[127.768,0.7071],[127.7669,0.711],[127.7673,0.7195],[127.766,0.7216],[127.7673,0.7303],[127.7625,0.7351],[127.7573,0.7425],[127.7579,0.7506],[127.75,0.7577],[127.7359,0.7558],[127.7314,0.7592]]}},{"type":"Feature","properties":{"mhid":"1332:479","alt_name":"KABUPATEN FAK-FAK","latitude":-2.92641,"longitude":132.29608,"sample_value":605},"geometry":{"type":"LineString","coordinates":[[132.7662,-3.5395],[132.7663,-3.5326],[132.7687,-3.5276],[132.7694,-3.513],[132.7652,-3.51],[132.7643,-3.5011],[132.7555,-3.5039],[132.7533,-3.5111],[132.7527,-3.5195],[132.7543,-3.5247],[132.7528,-3.5314],[132.7581,-3.5385],[132.7643,-3.5412],[132.7662,-3.5395]]}},{"type":"Feature","properties":{"mhid":"1332:479","alt_name":"KABUPATEN FAK-FAK","latitude":-2.92641,"longitude":132.29608,"sample_value":605},"geometry":{"type":"LineString","coordinates":[[132.7668,-3.4843],[132.7686,-3.4795],[132.7613,-3.4684],[132.7618,-3.4592],[132.755,-3.4605],[132.7537,-3.4674],[132.7495,-3.4772],[132.7527,-3.4817],[132.7523,-3.4862],[132.7572,-3.486],[132.7625,-3.4888],[132.7668,-3.4843]]}},{"type":"Feature","properties":{"mhid":"1332:479","alt_name":"KABUPATEN FAK-FAK","latitude":-2.92641,"longitude":132.29608,"sample_value":605},"geometry":{"type":"LineString","coordinates":[[132.6511,-3.4041],[132.6455,-3.4075],[132.6407,-3.4069],[132.6376,-3.41],[132.634,-3.4092],[132.6296,-3.42],[132.6324,-3.4278],[132.6388,-3.4353],[132.6512,-3.4402],[132.6655,-3.4474],[132.6679,-3.4472],[132.674,-3.4528],[132.679,-3.4537],[132.6833,-3.4568],[132.6811,-3.4652],[132.6773,-3.4672],[132.6786,-3.4745],[132.6775,-3.4795],[132.6808,-3.4851],[132.6801,-3.4956],[132.6891,-3.5002],[132.6973,-3.5101],[132.6973,-3.5152],[132.7037,-3.5177],[132.7148,-3.5161],[132.7229,-3.5123],[132.7274,-3.5008],[132.725,-3.4923],[132.7253,-3.4852],[132.7152,-3.4684],[132.711,-3.4668],[132.7075,-3.4591],[132.6943,-3.4546],[132.692,-3.456],[132.6885,-3.4486],[132.6871,-3.4398],[132.69,-3.4361],[132.6846,-3.4262],[132.6661,-3.4103],[132.6511,-3.4041]]}},{"type":"Feature","properties":{"mhid":"1332:479","alt_name":"KABUPATEN FAK-FAK","latitude":-2.92641,"longitude":132.29608,"sample_value":605},"geometry":{"type":"LineString","coordinates":[[132.8127,-3.3164],[132.8141,-3.3091],[132.8091,-3.3033],[132.8049,-3.3072],[132.8058,-3.3162],[132.8127,-3.3164]]}},{"type":"Feature","properties":{"mhid":"1332:479","alt_name":"KABUPATEN FAK-FAK","latitude":-2.92641,"longitude":132.29608,"sample_value":605},"geometry":{"type":"LineString","coordinates":[[132.4495,-3.1029],[132.4406,-3.1022],[132.4487,-3.1136],[132.4515,-3.1146],[132.4542,-3.1211],[132.4584,-3.1221],[132.4596,-3.1267],[132.4653,-3.1272],[132.4731,-3.1332],[132.4767,-3.1308],[132.4787,-3.1368],[132.4848,-3.1378],[132.4893,-3.1359],[132.4937,-3.1395],[132.5021,-3.139],[132.5077,-3.1405],[132.519,-3.1413],[132.5303,-3.148],[132.5333,-3.1521],[132.5405,-3.1543],[132.5444,-3.1503],[132.5462,-3.1419],[132.5341,-3.138],[132.5333,-3.1358],[132.5257,-3.132],[132.5188,-3.1258],[132.5074,-3.1214],[132.5041,-3.1176],[132.5001,-3.1197],[132.4959,-3.1151],[132.4892,-3.1154],[132.4777,-3.1124],[132.472,-3.1067],[132.4681,-3.1054],[132.4598,-3.1059],[132.4555,-3.1033],[132.4495,-3.1029]]}},{"type":"Feature","properties":{"mhid":"1332:479","alt_name":"KABUPATEN FAK-FAK","latitude":-2.92641,"longitude":132.29608,"sample_value":605},"geometry":{"type":"LineString","coordinates":[[132.1378,-2.9715],[132.1314,-2.9695],[132.1135,-2.9728],[132.1139,-2.9756],[132.1222,-2.974],[132.1325,-2.9745],[132.1378,-2.9715]]}},{"type":"Feature","properties":{"mhid":"1332:479","alt_name":"KABUPATEN FAK-FAK","latitude":-2.92641,"longitude":132.29608,"sample_value":605},"geometry":{"type":"LineString","coordinates":[[132.1843,-2.9762],[132.1784,-2.9693],[132.1718,-2.9721],[132.1781,-2.9768],[132.1808,-2.9822],[132.1852,-2.9835],[132.1946,-2.9802],[132.199,-2.9831],[132.204,-2.9809],[132.2104,-2.9813],[132.2195,-2.9862],[132.2241,-2.9815],[132.2418,-2.9835],[132.2463,-2.9812],[132.2593,-2.9855],[132.2683,-2.9845],[132.2716,-2.9862],[132.287,-2.9882],[132.2926,-2.9912],[132.3015,-2.9897],[132.3135,-2.9941],[132.3151,-2.9919],[132.3123,-2.9854],[132.3025,-2.9826],[132.2988,-2.9861],[132.2909,-2.9801],[132.2831,-2.9824],[132.2782,-2.9805],[132.2678,-2.9816],[132.2677,-2.9753],[132.2647,-2.9749],[132.2547,-2.9775],[132.2515,-2.9722],[132.2281,-2.9744],[132.2224,-2.9735],[132.198,-2.9783],[132.1908,-2.9754],[132.1843,-2.9762]]}},{"type":"Feature","properties":{"mhid":"1332:479","alt_name":"KABUPATEN FAK-FAK","latitude":-2.92641,"longitude":132.29608,"sample_value":605},"geometry":{"type":"LineString","coordinates":[[132.0029,-2.944],[132.0003,-2.9498],[132.006,-2.9489],[132.0137,-2.9509],[132.0149,-2.9487],[132.0107,-2.9435],[132.0055,-2.9454],[132.0029,-2.944]]}},{"type":"Feature","properties":{"mhid":"1332:479","alt_name":"KABUPATEN FAK-FAK","latitude":-2.92641,"longitude":132.29608,"sample_value":605},"geometry":{"type":"LineString","coordinates":[[132.0758,-2.7024],[132.0847,-2.6945],[132.0857,-2.6875],[132.0827,-2.6826],[132.0738,-2.6826],[132.06,-2.6875],[132.054,-2.6945],[132.056,-2.7024],[132.0659,-2.7053],[132.0758,-2.7024]]}},{"type":"Feature","properties":{"mhid":"1332:479","alt_name":"KABUPATEN FAK-FAK","latitude":-2.92641,"longitude":132.29608,"sample_value":605},"geometry":{"type":"LineString","coordinates":[[132.561,-2.6429],[132.5455,-2.6437],[132.5396,-2.6498],[132.5522,-2.6551],[132.5653,-2.6563],[132.5652,-2.6518],[132.5732,-2.6517],[132.5657,-2.644],[132.561,-2.6429]]}},{"type":"Feature","properties":{"mhid":"1332:479","alt_name":"KABUPATEN FAK-FAK","latitude":-2.92641,"longitude":132.29608,"sample_value":605},"geometry":{"type":"LineString","coordinates":[[132.4827,-2.6335],[132.4755,-2.6321],[132.4726,-2.6282],[132.4673,-2.6269],[132.4641,-2.6318],[132.4585,-2.6352],[132.4585,-2.6397],[132.4638,-2.6395],[132.4694,-2.6524],[132.4624,-2.6509],[132.4644,-2.646],[132.4578,-2.6465],[132.4535,-2.6485],[132.4596,-2.6627],[132.4638,-2.6685],[132.4737,-2.6695],[132.4783,-2.6668],[132.4814,-2.6623],[132.4865,-2.6604],[132.4991,-2.66],[132.5064,-2.6566],[132.5115,-2.6502],[132.5102,-2.6394],[132.5037,-2.6367],[132.5001,-2.6319],[132.4956,-2.6347],[132.4874,-2.6328],[132.4827,-2.6335]]}},{"type":"Feature","properties":{"mhid":"1332:479","alt_name":"KABUPATEN FAK-FAK","latitude":-2.92641,"longitude":132.29608,"sample_value":605},"geometry":{"type":"LineString","coordinates":[[132.4126,-2.6095],[132.411,-2.6033],[132.4067,-2.6045],[132.4053,-2.6091],[132.4126,-2.6095]]}},{"type":"Feature","properties":{"mhid":"1332:479","alt_name":"KABUPATEN FAK-FAK","latitude":-2.92641,"longitude":132.29608,"sample_value":605},"geometry":{"type":"LineString","coordinates":[[133.6783,-3.0043],[133.6726,-2.9967],[133.6444,-2.9649],[133.5965,-2.9365],[133.4997,-2.8568],[133.4383,-2.8269],[133.383,-2.792],[133.3692,-2.7782],[133.2836,-2.7127],[133.1958,-2.6442],[133.1449,-2.6017],[133.0506,-2.5213],[133.0407,-2.515],[133.0243,-2.5333],[133.011,-2.5508],[133.0082,-2.5573],[132.9973,-2.57],[132.9838,-2.5874],[132.9761,-2.5987],[132.9564,-2.6207],[132.9435,-2.6315],[132.9384,-2.6376],[132.9346,-2.6454],[132.9309,-2.6479],[132.9277,-2.6543],[132.9051,-2.6785],[132.8895,-2.694],[132.8764,-2.7052],[132.8715,-2.7111],[132.8598,-2.7226],[132.8458,-2.7341],[132.8281,-2.7518],[132.8101,-2.7642],[132.8101,-2.7682],[132.8063,-2.7723],[132.7964,-2.7741],[132.792,-2.7769],[132.7946,-2.7837],[132.7922,-2.7861],[132.7847,-2.785],[132.7787,-2.7867],[132.7723,-2.7836],[132.7641,-2.7914],[132.7482,-2.8049],[132.7348,-2.8077],[132.7307,-2.8069],[132.7269,-2.8027],[132.7169,-2.8001],[132.7063,-2.7933],[132.7046,-2.7903],[132.7053,-2.7843],[132.7003,-2.7859],[132.6973,-2.7893],[132.6935,-2.789],[132.6873,-2.7776],[132.6826,-2.7789],[132.6803,-2.775],[132.6671,-2.7673],[132.6697,-2.7631],[132.6627,-2.7586],[132.6634,-2.754],[132.6544,-2.7464],[132.6541,-2.743],[132.6481,-2.7408],[132.6395,-2.7345],[132.6436,-2.7321],[132.6418,-2.7284],[132.6336,-2.726],[132.6266,-2.7258],[132.6232,-2.7229],[132.6223,-2.7176],[132.6154,-2.7124],[132.6137,-2.7147],[132.6052,-2.709],[132.5991,-2.7087],[132.5976,-2.7039],[132.5926,-2.697],[132.5889,-2.6954],[132.5842,-2.6973],[132.5713,-2.6904],[132.5643,-2.6897],[132.5543,-2.693],[132.5461,-2.694],[132.536,-2.6859],[132.5241,-2.6813],[132.5166,-2.6821],[132.5135,-2.686],[132.5055,-2.6841],[132.5011,-2.6806],[132.493,-2.685],[132.4884,-2.6834],[132.4817,-2.686],[132.4816,-2.6932],[132.4775,-2.6904],[132.4713,-2.6935],[132.4805,-2.7017],[132.492,-2.7069],[132.494,-2.713],[132.4796,-2.7117],[132.4667,-2.7129],[132.4633,-2.7202],[132.4591,-2.7246],[132.4556,-2.7333],[132.4477,-2.7358],[132.4411,-2.7398],[132.4356,-2.74],[132.436,-2.7352],[132.443,-2.7292],[132.4474,-2.7274],[132.4499,-2.7192],[132.4574,-2.7125],[132.4533,-2.7089],[132.4484,-2.7072],[132.4445,-2.7087],[132.4425,-2.705],[132.4341,-2.7026],[132.4298,-2.7044],[132.4203,-2.6978],[132.4261,-2.6959],[132.4292,-2.6907],[132.436,-2.6917],[132.4406,-2.6902],[132.4402,-2.6796],[132.4355,-2.6806],[132.4263,-2.6779],[132.4218,-2.6802],[132.4193,-2.6851],[132.4111,-2.6826],[132.4074,-2.6867],[132.3997,-2.6876],[132.3951,-2.6896],[132.3891,-2.6851],[132.3785,-2.6836],[132.3769,-2.682],[132.3648,-2.677],[132.363,-2.6729],[132.3566,-2.6682],[132.349,-2.6701],[132.3431,-2.6655],[132.3326,-2.6667],[132.3298,-2.6628],[132.3184,-2.6611],[132.3046,-2.6635],[132.2972,-2.6619],[132.2795,-2.6606],[132.2756,-2.662],[132.2695,-2.66],[132.2556,-2.663],[132.2484,-2.6609],[132.2428,-2.6612],[132.2404,-2.6576],[132.2302,-2.6554],[132.2239,-2.6561],[132.2224,-2.6582],[132.2159,-2.6556],[132.2045,-2.6587],[132.198,-2.6559],[132.1851,-2.6603],[132.183,-2.6645],[132.1856,-2.6697],[132.1694,-2.6617],[132.1646,-2.6645],[132.1545,-2.6652],[132.1504,-2.6676],[132.143,-2.6664],[132.1383,-2.6718],[132.132,-2.6761],[132.1126,-2.6918],[132.1134,-2.6971],[132.1195,-2.7003],[132.1248,-2.6972],[132.1294,-2.6916],[132.1352,-2.6883],[132.1484,-2.6906],[132.1618,-2.6964],[132.1795,-2.6992],[132.1841,-2.6988],[132.1953,-2.7013],[132.2047,-2.7009],[132.2079,-2.7027],[132.1998,-2.7072],[132.1898,-2.7072],[132.1776,-2.7084],[132.1724,-2.71],[132.1695,-2.7138],[132.1658,-2.7111],[132.1501,-2.7175],[132.1498,-2.7217],[132.1462,-2.7238],[132.1416,-2.7232],[132.141,-2.7178],[132.1342,-2.7161],[132.1374,-2.7104],[132.1279,-2.713],[132.1257,-2.726],[132.1228,-2.7272],[132.1166,-2.7192],[132.1103,-2.7189],[132.1062,-2.7113],[132.102,-2.709],[132.0962,-2.7104],[132.0993,-2.719],[132.0911,-2.7161],[132.0895,-2.7218],[132.0978,-2.7298],[132.1037,-2.73],[132.1087,-2.7322],[132.1094,-2.7354],[132.1075,-2.7434],[132.1008,-2.7398],[132.0982,-2.7439],[132.0982,-2.7487],[132.0845,-2.7429],[132.0836,-2.7354],[132.0872,-2.7308],[132.0826,-2.7269],[132.0714,-2.729],[132.0679,-2.7347],[132.0721,-2.7431],[132.0698,-2.7502],[132.0597,-2.7514],[132.0561,-2.744],[132.0586,-2.7341],[132.0514,-2.7317],[132.0457,-2.7371],[132.0416,-2.7351],[132.0405,-2.7396],[132.0314,-2.7448],[132.0251,-2.7392],[132.0161,-2.7449],[132.0086,-2.7536],[131.9996,-2.7584],[131.999,-2.7616],[132.0003,-2.7758],[132.0038,-2.7814],[132.0122,-2.7799],[132.0254,-2.7798],[132.0279,-2.7733],[132.0339,-2.7714],[132.0399,-2.7722],[132.0463,-2.777],[132.0511,-2.7788],[132.052,-2.7838],[132.0576,-2.7865],[132.0683,-2.789],[132.056,-2.7922],[132.0582,-2.7981],[132.0511,-2.7959],[132.0509,-2.8014],[132.0485,-2.8081],[132.0372,-2.8138],[132.0281,-2.8122],[132.0249,-2.8149],[132.0197,-2.8128],[132.0174,-2.8153],[132.0171,-2.8225],[132.0075,-2.8192],[132.0059,-2.8246],[132.0022,-2.8291],[132.0123,-2.837],[132.0158,-2.8357],[132.0213,-2.837],[132.0236,-2.8398],[132.0287,-2.8393],[132.0334,-2.8409],[132.0317,-2.8451],[132.0228,-2.8541],[132.0253,-2.8585],[132.0249,-2.8631],[132.0317,-2.8758],[132.0274,-2.8791],[132.0233,-2.878],[132.021,-2.8814],[132.0163,-2.8812],[132.0042,-2.8778],[132.0016,-2.8785],[131.9996,-2.8888],[132.0022,-2.8991],[132.0052,-2.8924],[132.0144,-2.8939],[132.0167,-2.8968],[132.019,-2.9052],[132.0244,-2.9055],[132.0284,-2.9024],[132.0328,-2.9032],[132.0337,-2.917],[132.0387,-2.9245],[132.0443,-2.9274],[132.0487,-2.9236],[132.0448,-2.9182],[132.052,-2.9141],[132.0544,-2.9067],[132.0535,-2.8985],[132.0593,-2.8905],[132.0646,-2.9104],[132.0684,-2.9142],[132.0803,-2.9195],[132.0752,-2.9373],[132.078,-2.9444],[132.0794,-2.952],[132.0839,-2.9555],[132.0866,-2.9631],[132.1011,-2.9596],[132.104,-2.9552],[132.111,-2.9537],[132.1188,-2.954],[132.1129,-2.9406],[132.1199,-2.9364],[132.1286,-2.9409],[132.1325,-2.945],[132.1399,-2.9436],[132.1458,-2.946],[132.151,-2.9439],[132.1492,-2.9372],[132.1549,-2.9354],[132.1555,-2.9307],[132.1629,-2.9357],[132.1699,-2.9314],[132.1787,-2.9341],[132.1866,-2.9318],[132.1844,-2.9223],[132.1901,-2.9261],[132.1945,-2.9262],[132.2004,-2.9332],[132.2024,-2.9335],[132.2082,-2.9279],[132.2061,-2.9212],[132.2073,-2.9114],[132.2114,-2.918],[132.2171,-2.9209],[132.2202,-2.9265],[132.2373,-2.9254],[132.2495,-2.9274],[132.2617,-2.9276],[132.2662,-2.9292],[132.2709,-2.934],[132.2858,-2.9313],[132.2932,-2.9347],[132.3012,-2.9363],[132.3027,-2.9346],[132.3112,-2.9347],[132.3149,-2.9382],[132.3205,-2.9404],[132.3234,-2.9449],[132.3333,-2.9471],[132.3357,-2.9431],[132.3428,-2.9425],[132.3402,-2.9498],[132.346,-2.9525],[132.3469,-2.9472],[132.3535,-2.941],[132.355,-2.951],[132.3603,-2.9544],[132.3492,-2.9555],[132.347,-2.9612],[132.3519,-2.9689],[132.3595,-2.9679],[132.3664,-2.9719],[132.3689,-2.9779],[132.3723,-2.9769],[132.3804,-2.9805],[132.3862,-2.9851],[132.3925,-2.985],[132.393,-2.9891],[132.4069,-2.9917],[132.4143,-2.9952],[132.4225,-2.9969],[132.419,-3.0025],[132.4212,-3.0051],[132.4274,-3.0051],[132.4339,-3.01],[132.4361,-3.0093],[132.4408,-3.0155],[132.4437,-3.0164],[132.4522,-3.0234],[132.4565,-3.024],[132.4617,-3.0288],[132.4705,-3.0346],[132.473,-3.0393],[132.4787,-3.0384],[132.4811,-3.0426],[132.4892,-3.0509],[132.4941,-3.0517],[132.4983,-3.0556],[132.5016,-3.063],[132.5092,-3.065],[132.5112,-3.072],[132.5172,-3.0765],[132.5171,-3.0809],[132.5242,-3.0846],[132.5262,-3.084],[132.5368,-3.0962],[132.5426,-3.0979],[132.5444,-3.101],[132.5603,-3.1115],[132.569,-3.1241],[132.5726,-3.1329],[132.5771,-3.1374],[132.5697,-3.1395],[132.5655,-3.1362],[132.5556,-3.137],[132.5542,-3.1458],[132.5575,-3.1501],[132.5589,-3.157],[132.5775,-3.1663],[132.5795,-3.1628],[132.5845,-3.1671],[132.5937,-3.1709],[132.6025,-3.1689],[132.6004,-3.1802],[132.6078,-3.1804],[132.6142,-3.185],[132.6217,-3.1856],[132.6259,-3.1818],[132.6361,-3.1832],[132.6356,-3.1879],[132.6407,-3.1883],[132.6435,-3.1945],[132.6474,-3.1985],[132.6488,-3.2031],[132.6495,-3.2125],[132.6422,-3.2186],[132.6416,-3.2238],[132.6308,-3.2242],[132.6268,-3.2263],[132.617,-3.2238],[132.6117,-3.2248],[132.5977,-3.225],[132.5999,-3.2367],[132.611,-3.2456],[132.621,-3.2517],[132.6254,-3.2572],[132.6267,-3.2618],[132.6375,-3.2676],[132.6437,-3.2741],[132.6389,-3.2767],[132.6424,-3.2826],[132.6474,-3.287],[132.6512,-3.2949],[132.6532,-3.3037],[132.6566,-3.3087],[132.6612,-3.3097],[132.6617,-3.3157],[132.6665,-3.3185],[132.6684,-3.3224],[132.6722,-3.3216],[132.6791,-3.3288],[132.6929,-3.3322],[132.7014,-3.3356],[132.7097,-3.3425],[132.7201,-3.3455],[132.725,-3.3421],[132.7332,-3.3416],[132.7353,-3.3272],[132.7379,-3.3172],[132.7357,-3.3132],[132.7356,-3.3004],[132.7314,-3.2879],[132.7348,-3.2855],[132.7411,-3.2864],[132.7473,-3.2824],[132.7544,-3.2839],[132.7618,-3.2745],[132.7674,-3.2704],[132.7772,-3.2669],[132.7769,-3.2721],[132.7798,-3.276],[132.7853,-3.2747],[132.7894,-3.2799],[132.7981,-3.2797],[132.7987,-3.2762],[132.7896,-3.2735],[132.7924,-3.2697],[132.7975,-3.2688],[132.8105,-3.2722],[132.8086,-3.2791],[132.812,-3.283],[132.81,-3.287],[132.8055,-3.2854],[132.8106,-3.2957],[132.8133,-3.2988],[132.8206,-3.2998],[132.825,-3.3019],[132.8266,-3.3061],[132.8403,-3.309],[132.846,-3.3092],[132.8436,-3.3139],[132.8389,-3.3122],[132.834,-3.3163],[132.8357,-3.323],[132.8334,-3.3271],[132.8343,-3.332],[132.8311,-3.3379],[132.8278,-3.331],[132.8235,-3.3334],[132.8209,-3.3398],[132.82,-3.3501],[132.8101,-3.3544],[132.8038,-3.3653],[132.8067,-3.3784],[132.8046,-3.3816],[132.8086,-3.387],[132.8142,-3.391],[132.8157,-3.3942],[132.8177,-3.4077],[132.8221,-3.4143],[132.8199,-3.4178],[132.8232,-3.4335],[132.8212,-3.4374],[132.8246,-3.44],[132.8197,-3.4514],[132.8201,-3.4539],[132.8253,-3.4602],[132.8331,-3.4662],[132.8391,-3.4684],[132.8457,-3.4783],[132.8521,-3.4793],[132.8585,-3.4831],[132.869,-3.4827],[132.8709,-3.4743],[132.8756,-3.4708],[132.8817,-3.4695],[132.8917,-3.4709],[132.9001,-3.469],[132.9007,-3.4718],[132.8945,-3.4751],[132.8893,-3.4862],[132.8883,-3.4915],[132.8958,-3.4954],[132.8961,-3.5013],[132.8934,-3.5058],[132.895,-3.5137],[132.9,-3.5173],[132.9012,-3.5263],[132.9067,-3.5317],[132.9095,-3.5368],[132.9153,-3.5411],[132.92,-3.5409],[132.925,-3.5447],[132.9128,-3.5468],[132.9126,-3.5535],[132.9158,-3.5577],[132.9226,-3.5573],[132.9252,-3.5534],[132.9453,-3.5585],[132.9456,-3.5614],[132.9376,-3.5648],[132.9327,-3.5687],[132.9249,-3.5819],[132.9219,-3.5838],[132.9127,-3.5833],[132.9099,-3.5848],[132.9068,-3.5944],[132.8996,-3.6065],[132.901,-3.611],[132.8984,-3.621],[132.9034,-3.6367],[132.9056,-3.6409],[132.8961,-3.6507],[132.8893,-3.6518],[132.881,-3.6479],[132.8768,-3.65],[132.8652,-3.6512],[132.8589,-3.6489],[132.8539,-3.6505],[132.8459,-3.6462],[132.8428,-3.6476],[132.832,-3.6436],[132.8252,-3.6459],[132.8215,-3.644],[132.8055,-3.642],[132.7987,-3.644],[132.7805,-3.6439],[132.7714,-3.6424],[132.7671,-3.6386],[132.7538,-3.6327],[132.7474,-3.6337],[132.7437,-3.636],[132.7351,-3.6383],[132.731,-3.6425],[132.7337,-3.6634],[132.7339,-3.6688],[132.7381,-3.688],[132.7363,-3.6926],[132.7425,-3.6994],[132.7475,-3.7099],[132.7471,-3.7124],[132.7539,-3.7193],[132.7585,-3.7293],[132.763,-3.7538],[132.7682,-3.7593],[132.7682,-3.7642],[132.7725,-3.7686],[132.7758,-3.7652],[132.7795,-3.7711],[132.7789,-3.7788],[132.7823,-3.7828],[132.7826,-3.7886],[132.7877,-3.7964],[132.7874,-3.8016],[132.7895,-3.808],[132.7904,-3.8206],[132.7882,-3.826],[132.793,-3.8346],[132.799,-3.8379],[132.804,-3.852],[132.8008,-3.8537],[132.8057,-3.8597],[132.8073,-3.8647],[132.8114,-3.8687],[132.8121,-3.8766],[132.8186,-3.8867],[132.8259,-3.8916],[132.8451,-3.8748],[132.8523,-3.8674],[132.8659,-3.8512],[132.8818,-3.8312],[132.9055,-3.8078],[132.9285,-3.787],[132.9366,-3.7787],[132.9467,-3.7699],[132.9617,-3.7537],[132.9696,-3.7438],[132.9927,-3.72],[133.0227,-3.6938],[133.0345,-3.6826],[133.054,-3.6624],[133.061,-3.6544],[133.0713,-3.6442],[133.0929,-3.6214],[133.1078,-3.6047],[133.1234,-3.5883],[133.129,-3.5786],[133.1373,-3.5679],[133.1454,-3.5547],[133.1679,-3.5253],[133.1779,-3.5106],[133.1883,-3.4973],[133.1979,-3.4826],[133.2115,-3.4645],[133.2204,-3.4513],[133.2338,-3.4392],[133.2488,-3.4193],[133.254,-3.4114],[133.2686,-3.3962],[133.2807,-3.3802],[133.2941,-3.3639],[133.3182,-3.3399],[133.3296,-3.3268],[133.3372,-3.32],[133.3491,-3.305],[133.3548,-3.2988],[133.3643,-3.2913],[133.3736,-3.2804],[133.3848,-3.2728],[133.3956,-3.2645],[133.4053,-3.2525],[133.4159,-3.2412],[133.4231,-3.2309],[133.4321,-3.2198],[133.4498,-3.2022],[133.4614,-3.1961],[133.4819,-3.1741],[133.488,-3.1692],[133.5039,-3.1516],[133.5219,-3.1348],[133.5343,-3.1256],[133.5396,-3.1205],[133.5495,-3.1133],[133.5637,-3.0987],[133.5761,-3.0904],[133.5863,-3.0808],[133.6024,-3.0674],[133.609,-3.0632],[133.6205,-3.0507],[133.6409,-3.0356],[133.6548,-3.0228],[133.6669,-3.0147],[133.6783,-3.0043]]}},{"type":"Feature","properties":{"mhid":"1332:480","alt_name":"KABUPATEN KAIMANA","latitude":-3.66093,"longitude":133.77451,"sample_value":25},"geometry":{"type":"LineString","coordinates":[[133.2214,-4.1118],[133.2162,-4.1061],[133.2136,-4.1013],[133.2069,-4.0981],[133.1991,-4.1024],[133.1985,-4.1051],[133.2025,-4.11],[133.2035,-4.1158],[133.2019,-4.1219],[133.1966,-4.1335],[133.1982,-4.1362],[133.1942,-4.1431],[133.1914,-4.1527],[133.1948,-4.1575],[133.1992,-4.1551],[133.2044,-4.158],[133.2064,-4.1624],[133.2073,-4.1702],[133.2039,-4.1783],[133.2067,-4.182],[133.2203,-4.1857],[133.2275,-4.1921],[133.2292,-4.1994],[133.2288,-4.2072],[133.2386,-4.2095],[133.2568,-4.2127],[133.2611,-4.2166],[133.2684,-4.2323],[133.2693,-4.2361],[133.2741,-4.2394],[133.2787,-4.2449],[133.2785,-4.2475],[133.2732,-4.2542],[133.2793,-4.2567],[133.2881,-4.2518],[133.2958,-4.2532],[133.3007,-4.2507],[133.3059,-4.2508],[133.3127,-4.2547],[133.3279,-4.2543],[133.3374,-4.2424],[133.3469,-4.2353],[133.3492,-4.2235],[133.3492,-4.2164],[133.3421,-4.2045],[133.3273,-4.1999],[133.3114,-4.1981],[133.3035,-4.194],[133.2883,-4.1882],[133.2785,-4.1796],[133.273,-4.1708],[133.2704,-4.1597],[133.2616,-4.1604],[133.2553,-4.152],[133.2484,-4.1467],[133.2474,-4.14],[133.24,-4.1422],[133.2332,-4.1398],[133.2314,-4.1354],[133.2327,-4.1119],[133.2295,-4.1109],[133.2244,-4.1131],[133.2214,-4.1118]]}},{"type":"Feature","properties":{"mhid":"1332:480","alt_name":"KABUPATEN KAIMANA","latitude":-3.66093,"longitude":133.77451,"sample_value":25},"geometry":{"type":"LineString","coordinates":[[134.2622,-4.0369],[134.2649,-4.0319],[134.2617,-4.0282],[134.2599,-4.0168],[134.2561,-4.012],[134.2407,-4.0002],[134.2302,-3.9967],[134.2287,-3.9988],[134.2267,-4.0102],[134.2311,-4.0138],[134.2298,-4.0192],[134.2311,-4.0267],[134.2353,-4.0341],[134.2441,-4.0379],[134.2518,-4.038],[134.257,-4.0398],[134.2622,-4.0369]]}},{"type":"Feature","properties":{"mhid":"1332:480","alt_name":"KABUPATEN KAIMANA","latitude":-3.66093,"longitude":133.77451,"sample_value":25},"geometry":{"type":"LineString","coordinates":[[134.3908,-3.9846],[134.3826,-3.9851],[134.3797,-3.9905],[134.3822,-3.9949],[134.3808,-3.9988],[134.3808,-4.0073],[134.3833,-4.0134],[134.3795,-4.0152],[134.3797,-4.0194],[134.3697,-4.0197],[134.369,-4.0251],[134.3637,-4.0271],[134.3677,-4.0314],[134.374,-4.0299],[134.3825,-4.0329],[134.3933,-4.0289],[134.4046,-4.0296],[134.4118,-4.0284],[134.4193,-4.0242],[134.4264,-4.0236],[134.4324,-4.0252],[134.4413,-4.0198],[134.4411,-4.0147],[134.4282,-4.0115],[134.4265,-4.0046],[134.4193,-4.002],[134.4137,-4.0027],[134.4138,-3.9972],[134.4106,-3.9943],[134.402,-3.9915],[134.3929,-3.9905],[134.3908,-3.9846]]}},{"type":"Feature","properties":{"mhid":"1332:480","alt_name":"KABUPATEN KAIMANA","latitude":-3.66093,"longitude":133.77451,"sample_value":25},"geometry":{"type":"LineString","coordinates":[[134.9006,-3.9457],[134.9044,-3.9445],[134.904,-3.9391],[134.8975,-3.9383],[134.8931,-3.9452],[134.9006,-3.9457]]}},{"type":"Feature","properties":{"mhid":"1332:480","alt_name":"KABUPATEN KAIMANA","latitude":-3.66093,"longitude":133.77451,"sample_value":25},"geometry":{"type":"LineString","coordinates":[[134.6959,-3.9356],[134.6808,-3.9341],[134.6754,-3.9369],[134.6758,-3.944],[134.6843,-3.9479],[134.6866,-3.9524],[134.6842,-3.9566],[134.6874,-3.9602],[134.7028,-3.9561],[134.7098,-3.9518],[134.7316,-3.949],[134.7316,-3.9448],[134.7242,-3.9404],[134.7094,-3.9355],[134.6959,-3.9356]]}},{"type":"Feature","properties":{"mhid":"1332:480","alt_name":"KABUPATEN KAIMANA","latitude":-3.66093,"longitude":133.77451,"sample_value":25},"geometry":{"type":"LineString","coordinates":[[134.1009,-3.9143],[134.0919,-3.9143],[134.0806,-3.9186],[134.0716,-3.9174],[134.0675,-3.9204],[134.0551,-3.9173],[134.0518,-3.9232],[134.0608,-3.9285],[134.0644,-3.935],[134.0652,-3.94],[134.0699,-3.939],[134.074,-3.9435],[134.0749,-3.9502],[134.0738,-3.9596],[134.0787,-3.9715],[134.0855,-3.9813],[134.0918,-3.9833],[134.0933,-3.9873],[134.0994,-3.9887],[134.1079,-3.9867],[134.1133,-3.9921],[134.1184,-3.9947],[134.1266,-3.9964],[134.1337,-3.994],[134.1365,-3.9981],[134.1405,-3.9961],[134.1433,-3.9994],[134.1508,-3.9995],[134.155,-4.0034],[134.162,-4.0057],[134.1688,-4.0055],[134.1664,-4.0114],[134.1673,-4.0146],[134.1765,-4.0149],[134.1865,-4.0211],[134.1968,-4.0221],[134.1953,-4.028],[134.2025,-4.0297],[134.2051,-4.0284],[134.2057,-4.0228],[134.21,-4.0223],[134.2043,-4.0127],[134.2005,-4.0159],[134.1932,-4.0127],[134.1876,-4.0077],[134.1813,-4.008],[134.1778,-4.0039],[134.1788,-4.0003],[134.1749,-3.9938],[134.1696,-3.9932],[134.1662,-3.9797],[134.1681,-3.9754],[134.1635,-3.9739],[134.1623,-3.9792],[134.1549,-3.9713],[134.1507,-3.969],[134.1473,-3.9593],[134.1397,-3.9551],[134.1225,-3.9394],[134.1214,-3.9353],[134.1066,-3.9233],[134.1029,-3.9243],[134.0995,-3.9205],[134.1009,-3.9143]]}},{"type":"Feature","properties":{"mhid":"1332:480","alt_name":"KABUPATEN KAIMANA","latitude":-3.66093,"longitude":133.77451,"sample_value":25},"geometry":{"type":"LineString","coordinates":[[133.934,-3.8871],[133.9377,-3.883],[133.9361,-3.8771],[133.9313,-3.8792],[133.9292,-3.8852],[133.934,-3.8871]]}},{"type":"Feature","properties":{"mhid":"1332:480","alt_name":"KABUPATEN KAIMANA","latitude":-3.66093,"longitude":133.77451,"sample_value":25},"geometry":{"type":"LineString","coordinates":[[134.0375,-3.8564],[134.04,-3.8522],[134.0374,-3.8497],[134.0298,-3.8533],[134.0237,-3.8586],[134.0144,-3.8571],[134.0143,-3.8662],[134.0208,-3.8655],[134.0235,-3.8692],[134.0328,-3.8667],[134.0375,-3.8564]]}},{"type":"Feature","properties":{"mhid":"1332:480","alt_name":"KABUPATEN KAIMANA","latitude":-3.66093,"longitude":133.77451,"sample_value":25},"geometry":{"type":"LineString","coordinates":[[134.0321,-3.8166],[134.0271,-3.8126],[134.0227,-3.8182],[134.0283,-3.8215],[134.0209,-3.8248],[134.0204,-3.8185],[134.0121,-3.8221],[134.0025,-3.8215],[134.0013,-3.8287],[134.0057,-3.8335],[134.0007,-3.8417],[134.0003,-3.8462],[134.0023,-3.8535],[134.0089,-3.8496],[134.0164,-3.8492],[134.0329,-3.8447],[134.0374,-3.8455],[134.0435,-3.8435],[134.0484,-3.836],[134.0511,-3.8272],[134.0444,-3.823],[134.0369,-3.8162],[134.0321,-3.8166]]}},{"type":"Feature","properties":{"mhid":"1332:480","alt_name":"KABUPATEN KAIMANA","latitude":-3.66093,"longitude":133.77451,"sample_value":25},"geometry":{"type":"LineString","coordinates":[[133.889,-3.7307],[133.8896,-3.7254],[133.8836,-3.7223],[133.8745,-3.7215],[133.8698,-3.7316],[133.8726,-3.7479],[133.8787,-3.765],[133.8812,-3.7735],[133.8845,-3.7769],[133.8869,-3.7835],[133.8868,-3.7999],[133.891,-3.807],[133.8913,-3.8105],[133.8949,-3.8148],[133.8965,-3.8284],[133.9016,-3.8402],[133.9081,-3.849],[133.9162,-3.8556],[133.9193,-3.8632],[133.9226,-3.8677],[133.9213,-3.8751],[133.926,-3.8786],[133.9282,-3.8742],[133.9263,-3.8703],[133.9303,-3.8639],[133.932,-3.8582],[133.9295,-3.854],[133.9293,-3.8462],[133.923,-3.8476],[133.9267,-3.8366],[133.9216,-3.8224],[133.9135,-3.8081],[133.9083,-3.8056],[133.9101,-3.8021],[133.9075,-3.7985],[133.9062,-3.7916],[133.9037,-3.7874],[133.9043,-3.7788],[133.9012,-3.7609],[133.8992,-3.7583],[133.9015,-3.7538],[133.9015,-3.7469],[133.8966,-3.7347],[133.889,-3.7307]]}},{"type":"Feature","properties":{"mhid":"1332:480","alt_name":"KABUPATEN KAIMANA","latitude":-3.66093,"longitude":133.77451,"sample_value":25},"geometry":{"type":"LineString","coordinates":[[133.6369,-3.4699],[133.633,-3.4652],[133.6293,-3.471],[133.6355,-3.4737],[133.6369,-3.4699]]}},{"type":"Feature","properties":{"mhid":"1332:480","alt_name":"KABUPATEN KAIMANA","latitude":-3.66093,"longitude":133.77451,"sample_value":25},"geometry":{"type":"LineString","coordinates":[[133.6748,-3.4406],[133.68,-3.4389],[133.678,-3.434],[133.6707,-3.4373],[133.6748,-3.4406]]}},{"type":"Feature","properties":{"mhid":"1332:480","alt_name":"KABUPATEN KAIMANA","latitude":-3.66093,"longitude":133.77451,"sample_value":25},"geometry":{"type":"LineString","coordinates":[[133.6171,-3.4236],[133.6139,-3.4231],[133.6108,-3.4313],[133.6015,-3.4345],[133.6042,-3.439],[133.6108,-3.4403],[133.6135,-3.4432],[133.6135,-3.4487],[133.6249,-3.4567],[133.6288,-3.4481],[133.6286,-3.4429],[133.6339,-3.436],[133.6307,-3.4272],[133.6221,-3.4238],[133.6171,-3.4236]]}},{"type":"Feature","properties":{"mhid":"1332:480","alt_name":"KABUPATEN KAIMANA","latitude":-3.66093,"longitude":133.77451,"sample_value":25},"geometry":{"type":"LineString","coordinates":[[133.7741,-3.0549],[133.7726,-3.0589],[133.7673,-3.0634],[133.7666,-3.0741],[133.7674,-3.0797],[133.7713,-3.0814],[133.7771,-3.0944],[133.7783,-3.0995],[133.7827,-3.1039],[133.7922,-3.1027],[133.8009,-3.1104],[133.7989,-3.1021],[133.8,-3.093],[133.7977,-3.0863],[133.7928,-3.0813],[133.7894,-3.0752],[133.7857,-3.0611],[133.783,-3.0557],[133.7741,-3.0549]]}},{"type":"Feature","properties":{"mhid":"1332:480","alt_name":"KABUPATEN KAIMANA","latitude":-3.66093,"longitude":133.77451,"sample_value":25},"geometry":{"type":"LineString","coordinates":[[134.1726,-2.8523],[134.1333,-2.84],[134.0741,-2.8688],[133.9889,-2.9047],[133.9168,-2.9351],[133.8652,-2.9554],[133.8095,-2.9827],[133.7916,-2.993],[133.7756,-2.9999],[133.7696,-3.0056],[133.7608,-3.0063],[133.752,-3.0094],[133.713,-3.0136],[133.6783,-3.0043],[133.6669,-3.0147],[133.6548,-3.0228],[133.6409,-3.0356],[133.6205,-3.0507],[133.609,-3.0632],[133.6024,-3.0674],[133.5863,-3.0808],[133.5761,-3.0904],[133.5637,-3.0987],[133.5495,-3.1133],[133.5396,-3.1205],[133.5343,-3.1256],[133.5219,-3.1348],[133.5039,-3.1516],[133.488,-3.1692],[133.4819,-3.1741],[133.4614,-3.1961],[133.4498,-3.2022],[133.4321,-3.2198],[133.4231,-3.2309],[133.4159,-3.2412],[133.4053,-3.2525],[133.3956,-3.2645],[133.3848,-3.2728],[133.3736,-3.2804],[133.3643,-3.2913],[133.3548,-3.2988],[133.3491,-3.305],[133.3372,-3.32],[133.3296,-3.3268],[133.3182,-3.3399],[133.2941,-3.3639],[133.2807,-3.3802],[133.2686,-3.3962],[133.254,-3.4114],[133.2488,-3.4193],[133.2338,-3.4392],[133.2204,-3.4513],[133.2115,-3.4645],[133.1979,-3.4826],[133.1883,-3.4973],[133.1779,-3.5106],[133.1679,-3.5253],[133.1454,-3.5547],[133.1373,-3.5679],[133.129,-3.5786],[133.1234,-3.5883],[133.1078,-3.6047],[133.0929,-3.6214],[133.0713,-3.6442],[133.061,-3.6544],[133.054,-3.6624],[133.0345,-3.6826],[133.0227,-3.6938],[132.9927,-3.72],[132.9696,-3.7438],[132.9617,-3.7537],[132.9467,-3.7699],[132.9366,-3.7787],[132.9285,-3.787],[132.9055,-3.8078],[132.8818,-3.8312],[132.8659,-3.8512],[132.8523,-3.8674],[132.8451,-3.8748],[132.8259,-3.8916],[132.8274,-3.8972],[132.8344,-3.9086],[132.8344,-3.9151],[132.8394,-3.924],[132.8458,-3.9285],[132.8497,-3.933],[132.8456,-3.9359],[132.8512,-3.9505],[132.8528,-3.9634],[132.8491,-3.9629],[132.8461,-3.9565],[132.8354,-3.9468],[132.8319,-3.946],[132.8329,-3.9388],[132.8297,-3.9326],[132.8218,-3.9276],[132.8172,-3.9293],[132.8121,-3.9395],[132.812,-3.9457],[132.8148,-3.9528],[132.823,-3.9648],[132.8315,-3.9684],[132.8317,-3.9613],[132.8374,-3.9599],[132.8423,-3.9656],[132.8473,-3.9664],[132.8483,-3.9701],[132.8451,-3.973],[132.8453,-3.9998],[132.848,-4.008],[132.8493,-4.0198],[132.8528,-4.0241],[132.8619,-4.0282],[132.8668,-4.0326],[132.8665,-4.0379],[132.8683,-4.0459],[132.8749,-4.0497],[132.8771,-4.0568],[132.8764,-4.0636],[132.8729,-4.0706],[132.8738,-4.0768],[132.8712,-4.0778],[132.8667,-4.0844],[132.8655,-4.0895],[132.8707,-4.091],[132.8772,-4.0994],[132.8897,-4.1019],[132.895,-4.1116],[132.9022,-4.1099],[132.9082,-4.1108],[132.9116,-4.1143],[132.9233,-4.1093],[132.9279,-4.1126],[132.9346,-4.1144],[132.9368,-4.1182],[132.9435,-4.1235],[132.9464,-4.1216],[132.9512,-4.1082],[132.949,-4.0998],[132.9634,-4.0915],[132.9614,-4.0885],[132.9642,-4.0804],[132.9684,-4.0793],[132.9736,-4.0721],[132.9776,-4.0701],[132.9844,-4.0705],[133.0012,-4.0608],[133.017,-4.0614],[133.0238,-4.0645],[133.0293,-4.065],[133.0442,-4.0719],[133.0523,-4.0728],[133.0647,-4.0761],[133.0763,-4.0743],[133.083,-4.0723],[133.0983,-4.0752],[133.1091,-4.0752],[133.1258,-4.0786],[133.1377,-4.0792],[133.146,-4.0767],[133.1535,-4.0722],[133.1568,-4.0687],[133.1622,-4.0575],[133.1647,-4.0556],[133.1706,-4.0424],[133.1775,-4.0359],[133.2,-4.0292],[133.2084,-4.0242],[133.2189,-4.0142],[133.2219,-4.0094],[133.2225,-4.0032],[133.2271,-4.0022],[133.2314,-3.9984],[133.2474,-3.996],[133.2616,-3.996],[133.2687,-3.9984],[133.2758,-4.0055],[133.2853,-4.0078],[133.2995,-4.0102],[133.3208,-4.0102],[133.3336,-4.0015],[133.339,-3.9894],[133.355,-3.9758],[133.3627,-3.9663],[133.3638,-3.9609],[133.3739,-3.9503],[133.3877,-3.9335],[133.4069,-3.912],[133.411,-3.9062],[133.4088,-3.9019],[133.409,-3.8932],[133.4129,-3.8869],[133.4193,-3.8824],[133.4091,-3.8813],[133.3943,-3.8864],[133.3794,-3.8827],[133.3665,-3.8765],[133.3581,-3.8703],[133.3393,-3.8627],[133.3524,-3.8642],[133.3624,-3.8684],[133.3708,-3.8751],[133.3775,-3.8775],[133.3908,-3.8805],[133.3975,-3.88],[133.4037,-3.8765],[133.4174,-3.8767],[133.4268,-3.8794],[133.4364,-3.8741],[133.4417,-3.8664],[133.4488,-3.8683],[133.4548,-3.8648],[133.4631,-3.8644],[133.466,-3.8584],[133.4627,-3.8475],[133.4617,-3.8405],[133.459,-3.8364],[133.4594,-3.8276],[133.4555,-3.8225],[133.4429,-3.8112],[133.439,-3.8091],[133.4288,-3.8074],[133.4219,-3.8036],[133.4176,-3.7986],[133.4155,-3.7878],[133.4154,-3.7732],[133.4137,-3.7682],[133.4041,-3.7599],[133.4008,-3.7557],[133.399,-3.7449],[133.4006,-3.7354],[133.4066,-3.723],[133.4125,-3.7142],[133.4123,-3.7063],[133.4164,-3.6975],[133.437,-3.6895],[133.4538,-3.6793],[133.4598,-3.6744],[133.4705,-3.6637],[133.4764,-3.6558],[133.4819,-3.6433],[133.4893,-3.6333],[133.4955,-3.6279],[133.4799,-3.6067],[133.4913,-3.5957],[133.499,-3.5904],[133.5003,-3.5869],[133.4929,-3.5731],[133.4931,-3.5687],[133.4892,-3.5614],[133.484,-3.5633],[133.4745,-3.564],[133.4689,-3.5609],[133.4645,-3.5551],[133.455,-3.5484],[133.4187,-3.5512],[133.3938,-3.5457],[133.3513,-3.5528],[133.3424,-3.5427],[133.3079,-3.5427],[133.2881,-3.5394],[133.2847,-3.5322],[133.2965,-3.5373],[133.3033,-3.5373],[133.3113,-3.5394],[133.329,-3.5394],[133.3328,-3.5374],[133.3378,-3.5402],[133.3437,-3.5385],[133.3509,-3.544],[133.3542,-3.5491],[133.3618,-3.5482],[133.3803,-3.544],[133.3905,-3.54],[133.4077,-3.5453],[133.4486,-3.5453],[133.433,-3.5343],[133.4221,-3.5297],[133.3985,-3.5073],[133.4178,-3.509],[133.4351,-3.5116],[133.4393,-3.5196],[133.4456,-3.5234],[133.4511,-3.5352],[133.4589,-3.5466],[133.4732,-3.5527],[133.4782,-3.5599],[133.4864,-3.557],[133.4916,-3.5577],[133.4953,-3.5646],[133.5005,-3.5622],[133.5092,-3.5605],[133.5009,-3.5501],[133.4992,-3.5414],[133.5029,-3.5349],[133.5068,-3.5328],[133.5146,-3.5315],[133.515,-3.5354],[133.5053,-3.5393],[133.5033,-3.5479],[133.5109,-3.5549],[133.514,-3.5609],[133.5127,-3.5646],[133.4983,-3.5703],[133.4975,-3.5742],[133.5016,-3.5757],[133.5061,-3.5807],[133.5085,-3.5876],[133.5081,-3.5945],[133.5003,-3.6077],[133.496,-3.6218],[133.5082,-3.6179],[133.5209,-3.6095],[133.526,-3.6071],[133.5335,-3.5971],[133.5391,-3.5967],[133.5522,-3.589],[133.555,-3.5856],[133.5604,-3.5838],[133.5669,-3.5838],[133.5775,-3.5781],[133.5873,-3.5744],[133.5896,-3.5689],[133.5908,-3.5599],[133.5936,-3.5497],[133.6018,-3.5352],[133.6022,-3.5313],[133.5979,-3.5221],[133.5912,-3.5135],[133.5855,-3.5093],[133.5783,-3.497],[133.5701,-3.4856],[133.5616,-3.4753],[133.5558,-3.4603],[133.5496,-3.4548],[133.5349,-3.4501],[133.5209,-3.4442],[133.4965,-3.4302],[133.4939,-3.4266],[133.4932,-3.4213],[133.4784,-3.4226],[133.473,-3.4217],[133.4702,-3.4188],[133.4702,-3.4085],[133.4787,-3.4202],[133.4847,-3.4199],[133.4968,-3.4173],[133.4999,-3.4231],[133.5063,-3.4301],[133.5169,-3.4368],[133.5222,-3.4389],[133.5392,-3.4421],[133.5463,-3.4427],[133.5534,-3.4408],[133.5594,-3.4324],[133.5494,-3.4216],[133.548,-3.4125],[133.5574,-3.4162],[133.5605,-3.4207],[133.5623,-3.4269],[133.5665,-3.4323],[133.579,-3.4302],[133.5872,-3.4311],[133.59,-3.4259],[133.6008,-3.4249],[133.6092,-3.421],[133.6106,-3.4151],[133.6131,-3.4144],[133.6203,-3.4176],[133.6305,-3.4164],[133.6359,-3.4183],[133.6427,-3.4151],[133.6494,-3.4072],[133.6598,-3.3919],[133.666,-3.3811],[133.6688,-3.3713],[133.6672,-3.3573],[133.6712,-3.3437],[133.6687,-3.3329],[133.6631,-3.3339],[133.6623,-3.3281],[133.6676,-3.3215],[133.6652,-3.3113],[133.6716,-3.3069],[133.6677,-3.2966],[133.6628,-3.2792],[133.661,-3.2576],[133.6617,-3.2529],[133.656,-3.236],[133.6597,-3.2319],[133.6616,-3.2264],[133.6655,-3.2228],[133.6748,-3.219],[133.6775,-3.2146],[133.6767,-3.211],[133.6718,-3.2086],[133.6712,-3.202],[133.6668,-3.1905],[133.6696,-3.1823],[133.6696,-3.1758],[133.6649,-3.1747],[133.6644,-3.1689],[133.6578,-3.1627],[133.6592,-3.1542],[133.6627,-3.1498],[133.66,-3.1435],[133.6611,-3.1364],[133.6573,-3.128],[133.6578,-3.1228],[133.6688,-3.1211],[133.6731,-3.1255],[133.6772,-3.1203],[133.6828,-3.1029],[133.6918,-3.0974],[133.6985,-3.0878],[133.7055,-3.082],[133.7116,-3.0721],[133.7214,-3.0603],[133.7258,-3.0505],[133.7301,-3.0438],[133.7357,-3.0382],[133.7429,-3.0338],[133.7567,-3.0344],[133.7605,-3.0306],[133.7614,-3.0262],[133.7656,-3.0237],[133.7714,-3.0231],[133.7818,-3.0278],[133.7885,-3.0262],[133.8015,-3.0291],[133.7996,-3.0234],[133.8007,-3.0142],[133.8116,-3.0073],[133.8245,-3.0047],[133.8384,-2.9953],[133.8455,-2.9894],[133.8486,-2.9794],[133.856,-2.9727],[133.8622,-2.965],[133.8611,-2.9735],[133.8618,-2.9818],[133.8636,-2.9873],[133.8666,-3.0051],[133.8713,-3.014],[133.8761,-3.0192],[133.8721,-3.0224],[133.8682,-3.0285],[133.8752,-3.0389],[133.8832,-3.0474],[133.8895,-3.0628],[133.8958,-3.0749],[133.9053,-3.0847],[133.9039,-3.0872],[133.895,-3.0814],[133.8851,-3.0636],[133.8812,-3.0602],[133.8704,-3.0586],[133.8639,-3.048],[133.8629,-3.0368],[133.853,-3.025],[133.8449,-3.0236],[133.8422,-3.0249],[133.8344,-3.0367],[133.8357,-3.0502],[133.8348,-3.0642],[133.8384,-3.0762],[133.8392,-3.0827],[133.8353,-3.0934],[133.8283,-3.0975],[133.8257,-3.1041],[133.8203,-3.1073],[133.813,-3.1089],[133.8144,-3.1138],[133.8107,-3.1207],[133.8022,-3.1231],[133.7993,-3.122],[133.7962,-3.1166],[133.7908,-3.1182],[133.7875,-3.1155],[133.78,-3.1166],[133.7785,-3.1282],[133.7828,-3.1353],[133.7841,-3.1461],[133.7803,-3.1524],[133.7814,-3.1566],[133.778,-3.1625],[133.7777,-3.1701],[133.7795,-3.1727],[133.7748,-3.1779],[133.7627,-3.1789],[133.7534,-3.1768],[133.7457,-3.1731],[133.7302,-3.1763],[133.7234,-3.1817],[133.7126,-3.1787],[133.7088,-3.1739],[133.7058,-3.1743],[133.7041,-3.18],[133.7096,-3.1904],[133.7099,-3.2001],[133.7078,-3.2146],[133.7042,-3.218],[133.6979,-3.2199],[133.6871,-3.219],[133.6802,-3.228],[133.6754,-3.2313],[133.672,-3.2448],[133.6733,-3.2574],[133.6734,-3.2707],[133.6771,-3.288],[133.6784,-3.3022],[133.6808,-3.311],[133.6821,-3.3222],[133.6777,-3.3266],[133.6847,-3.3471],[133.6848,-3.3521],[133.6884,-3.3544],[133.6879,-3.3604],[133.6912,-3.3715],[133.6924,-3.3798],[133.6987,-3.3955],[133.7033,-3.4056],[133.7012,-3.4138],[133.6959,-3.4173],[133.6907,-3.4236],[133.6861,-3.4319],[133.6839,-3.4389],[133.6717,-3.4452],[133.6691,-3.4493],[133.6611,-3.4531],[133.6566,-3.4533],[133.646,-3.4513],[133.6422,-3.4525],[133.6428,-3.4588],[133.6412,-3.4628],[133.6406,-3.4736],[133.6354,-3.4775],[133.6302,-3.4776],[133.6283,-3.4822],[133.6312,-3.4895],[133.6438,-3.5021],[133.6486,-3.4997],[133.6538,-3.5044],[133.6536,-3.5107],[133.6559,-3.5185],[133.6626,-3.516],[133.661,-3.5274],[133.6686,-3.5352],[133.6763,-3.5391],[133.6729,-3.5458],[133.6782,-3.5486],[133.6902,-3.5626],[133.6922,-3.5776],[133.6965,-3.5797],[133.7003,-3.5787],[133.6973,-3.5874],[133.7015,-3.592],[133.7064,-3.59],[133.7064,-3.5973],[133.7089,-3.6043],[133.7128,-3.6104],[133.7114,-3.6202],[133.7086,-3.6255],[133.6992,-3.6397],[133.6986,-3.6624],[133.6945,-3.6724],[133.6956,-3.6747],[133.7065,-3.676],[133.7156,-3.668],[133.7218,-3.6667],[133.7305,-3.6623],[133.736,-3.6553],[133.7409,-3.6523],[133.7509,-3.6494],[133.7552,-3.6496],[133.7589,-3.6533],[133.7646,-3.6628],[133.766,-3.673],[133.7714,-3.673],[133.7746,-3.6776],[133.776,-3.6853],[133.785,-3.6944],[133.7868,-3.6991],[133.7929,-3.7027],[133.7954,-3.7066],[133.8021,-3.7087],[133.8036,-3.7137],[133.8141,-3.7248],[133.8179,-3.7307],[133.8209,-3.7297],[133.8232,-3.7185],[133.8225,-3.7131],[133.8176,-3.6985],[133.8115,-3.6919],[133.8043,-3.6777],[133.8003,-3.6676],[133.7962,-3.6519],[133.7932,-3.6461],[133.7897,-3.6434],[133.7906,-3.6328],[133.7892,-3.6182],[133.7921,-3.6062],[133.7959,-3.6029],[133.8038,-3.5916],[133.8083,-3.5879],[133.8122,-3.581],[133.8181,-3.576],[133.8224,-3.5688],[133.8326,-3.5637],[133.8368,-3.5602],[133.8414,-3.562],[133.8433,-3.5697],[133.8424,-3.578],[133.8446,-3.586],[133.8447,-3.5936],[133.8463,-3.6038],[133.8431,-3.6086],[133.8417,-3.6148],[133.8442,-3.623],[133.8468,-3.6384],[133.8498,-3.6433],[133.8617,-3.653],[133.8661,-3.6604],[133.8797,-3.6686],[133.8871,-3.6721],[133.8869,-3.6773],[133.892,-3.686],[133.8958,-3.6873],[133.9044,-3.6938],[133.9105,-3.7036],[133.9122,-3.7203],[133.9156,-3.7223],[133.9143,-3.7272],[133.9165,-3.7331],[133.9191,-3.7479],[133.922,-3.749],[133.9298,-3.7576],[133.9321,-3.7547],[133.9366,-3.7551],[133.9361,-3.7604],[133.9462,-3.7763],[133.9337,-3.7698],[133.929,-3.7619],[133.9213,-3.7557],[133.9175,-3.767],[133.9164,-3.7741],[133.9165,-3.7846],[133.924,-3.8027],[133.9301,-3.8157],[133.9343,-3.8167],[133.933,-3.8227],[133.9371,-3.834],[133.9415,-3.8415],[133.9486,-3.8506],[133.9588,-3.856],[133.9596,-3.8598],[133.9645,-3.8639],[133.9731,-3.8593],[133.9686,-3.8559],[133.9677,-3.8497],[133.9726,-3.8489],[133.9779,-3.8448],[133.9816,-3.8466],[133.9832,-3.8363],[133.9872,-3.8277],[133.9919,-3.8243],[133.9946,-3.8295],[134.0009,-3.819],[134.0073,-3.8099],[134.0127,-3.8076],[134.016,-3.8041],[134.0212,-3.8028],[134.0297,-3.793],[134.0378,-3.7903],[134.0432,-3.7852],[134.0481,-3.7872],[134.0527,-3.7956],[134.0518,-3.7981],[134.0527,-3.8105],[134.0629,-3.8222],[134.0651,-3.8235],[134.073,-3.8226],[134.0757,-3.8186],[134.0821,-3.8153],[134.0902,-3.8085],[134.0926,-3.8038],[134.1,-3.8019],[134.1084,-3.7962],[134.114,-3.7955],[134.1208,-3.7916],[134.1181,-3.7875],[134.1173,-3.7793],[134.1134,-3.7798],[134.1113,-3.7748],[134.1033,-3.7699],[134.1085,-3.7627],[134.1139,-3.7524],[134.1228,-3.7509],[134.126,-3.7543],[134.1246,-3.7597],[134.1275,-3.7639],[134.1336,-3.763],[134.133,-3.7581],[134.1352,-3.7505],[134.1401,-3.7461],[134.1367,-3.7428],[134.1225,-3.7362],[134.1153,-3.7243],[134.1038,-3.7201],[134.1023,-3.716],[134.0926,-3.7147],[134.0823,-3.7056],[134.0755,-3.7015],[134.0588,-3.6726],[134.0577,-3.6676],[134.0686,-3.6519],[134.0704,-3.628],[134.072,-3.628],[134.0704,-3.6528],[134.0677,-3.6549],[134.0597,-3.6671],[134.0594,-3.6691],[134.0762,-3.6999],[134.0831,-3.7042],[134.0932,-3.7136],[134.1029,-3.7153],[134.105,-3.7198],[134.1158,-3.7236],[134.123,-3.7358],[134.136,-3.7416],[134.1382,-3.7442],[134.145,-3.7473],[134.1452,-3.7571],[134.1487,-3.7621],[134.1531,-3.7616],[134.1543,-3.7679],[134.1581,-3.7722],[134.1625,-3.7732],[134.1663,-3.7812],[134.1714,-3.7746],[134.175,-3.7772],[134.1723,-3.7903],[134.1784,-3.7925],[134.174,-3.7963],[134.175,-3.8037],[134.1782,-3.8073],[134.1791,-3.8135],[134.184,-3.8209],[134.1819,-3.828],[134.1881,-3.8252],[134.1946,-3.8311],[134.1927,-3.8334],[134.1832,-3.838],[134.1758,-3.8462],[134.1701,-3.8499],[134.1659,-3.855],[134.1541,-3.8623],[134.1498,-3.8707],[134.1426,-3.8757],[134.1356,-3.8755],[134.1271,-3.8823],[134.1186,-3.8851],[134.1052,-3.8954],[134.1067,-3.8988],[134.1115,-3.8959],[134.1102,-3.9061],[134.1159,-3.9016],[134.1202,-3.9036],[134.1261,-3.9039],[134.1324,-3.901],[134.136,-3.8948],[134.1462,-3.8949],[134.154,-3.8965],[134.1611,-3.9046],[134.1702,-3.8958],[134.1708,-3.9074],[134.1737,-3.9109],[134.1688,-3.9168],[134.1751,-3.9268],[134.1754,-3.9323],[134.1817,-3.9381],[134.183,-3.9434],[134.1881,-3.9496],[134.1938,-3.9541],[134.1984,-3.9609],[134.203,-3.9625],[134.219,-3.9726],[134.2267,-3.9742],[134.2315,-3.9775],[134.2432,-3.9806],[134.2452,-3.9766],[134.2398,-3.9667],[134.2447,-3.9683],[134.2547,-3.9797],[134.2619,-3.9856],[134.2626,-3.9899],[134.2755,-3.9982],[134.2802,-4.0031],[134.2827,-4.0095],[134.2921,-4.024],[134.2894,-4.0321],[134.292,-4.0376],[134.2908,-4.0415],[134.3027,-4.0465],[134.3106,-4.0459],[134.3176,-4.0428],[134.3209,-4.0385],[134.3251,-4.0296],[134.3296,-4.0253],[134.3273,-4.0206],[134.3352,-4.0184],[134.326,-4.0064],[134.3222,-4.0043],[134.3256,-4.0001],[134.3236,-3.9951],[134.319,-3.9922],[134.3116,-3.9841],[134.3095,-3.979],[134.3004,-3.9688],[134.301,-3.9651],[134.2941,-3.9581],[134.2893,-3.9577],[134.279,-3.9482],[134.2749,-3.9494],[134.2706,-3.9388],[134.2715,-3.9324],[134.2793,-3.9346],[134.2839,-3.9336],[134.2927,-3.9403],[134.2975,-3.9416],[134.3056,-3.9482],[134.3097,-3.9563],[134.3235,-3.9633],[134.3272,-3.9618],[134.3364,-3.9652],[134.3443,-3.9644],[134.3481,-3.9625],[134.3532,-3.964],[134.353,-3.9589],[134.3578,-3.9546],[134.3605,-3.9445],[134.3547,-3.9396],[134.3517,-3.9333],[134.3496,-3.9157],[134.3564,-3.9168],[134.3623,-3.9151],[134.3531,-3.9075],[134.3406,-3.8992],[134.338,-3.8957],[134.3294,-3.8924],[134.3268,-3.8841],[134.3286,-3.8807],[134.3352,-3.8775],[134.3437,-3.8808],[134.3469,-3.8839],[134.35,-3.8913],[134.3554,-3.8952],[134.3722,-3.9013],[134.3792,-3.9054],[134.3826,-3.909],[134.3892,-3.9102],[134.3927,-3.913],[134.4034,-3.9183],[134.4107,-3.9203],[134.4113,-3.916],[134.4181,-3.9144],[134.421,-3.9168],[134.4276,-3.9181],[134.4337,-3.9152],[134.4405,-3.9167],[134.446,-3.9255],[134.4464,-3.9298],[134.455,-3.9313],[134.454,-3.9385],[134.4561,-3.9459],[134.4664,-3.9497],[134.4658,-3.9553],[134.4772,-3.9657],[134.4781,-3.9743],[134.4753,-3.9821],[134.4692,-3.9824],[134.4635,-3.9796],[134.452,-3.9761],[134.4498,-3.9795],[134.4527,-3.9837],[134.4571,-3.984],[134.461,-3.9893],[134.4675,-3.992],[134.4704,-3.9981],[134.474,-4.0021],[134.4835,-4.0045],[134.487,-4.0089],[134.4969,-4.0129],[134.5039,-4.0136],[134.5024,-4.0173],[134.5037,-4.0221],[134.496,-4.025],[134.5055,-4.0367],[134.5111,-4.0414],[134.5192,-4.0361],[134.5269,-4.0372],[134.5322,-4.0363],[134.5372,-4.0302],[134.5416,-4.0272],[134.5431,-4.0315],[134.5474,-4.03],[134.5482,-4.0211],[134.5569,-4.0082],[134.5667,-4.0058],[134.5736,-3.9971],[134.5813,-3.9951],[134.5871,-3.9996],[134.6055,-3.9962],[134.6125,-3.9871],[134.6148,-3.9812],[134.6146,-3.9747],[134.6111,-3.9692],[134.6125,-3.9664],[134.6176,-3.9652],[134.6197,-3.9616],[134.6254,-3.9599],[134.6226,-3.9551],[134.6266,-3.948],[134.6377,-3.9431],[134.6454,-3.9444],[134.657,-3.9369],[134.6647,-3.9345],[134.6595,-3.9295],[134.6513,-3.9274],[134.6555,-3.9212],[134.6755,-3.9174],[134.682,-3.9201],[134.6871,-3.9196],[134.6922,-3.916],[134.6978,-3.9176],[134.705,-3.9169],[134.711,-3.9203],[134.7273,-3.9323],[134.7361,-3.9361],[134.7425,-3.928],[134.7476,-3.9185],[134.7555,-3.9138],[134.7598,-3.9127],[134.7681,-3.9139],[134.781,-3.9183],[134.7896,-3.9227],[134.7979,-3.9297],[134.8051,-3.9328],[134.821,-3.9347],[134.8263,-3.9367],[134.8406,-3.9363],[134.8476,-3.9392],[134.8573,-3.9373],[134.8606,-3.9383],[134.8675,-3.9444],[134.8737,-3.9475],[134.8824,-3.9403],[134.883,-3.9304],[134.8871,-3.9296],[134.891,-3.9331],[134.8995,-3.9358],[134.9083,-3.9364],[134.9205,-3.9307],[134.9284,-3.9317],[134.9264,-3.9358],[134.9198,-3.9334],[134.9141,-3.9406],[134.9074,-3.9446],[134.9048,-3.9523],[134.9099,-3.9597],[134.9224,-3.9584],[134.9302,-3.9528],[134.9418,-3.9499],[134.9505,-3.9505],[134.9573,-3.9442],[134.9688,-3.9506],[134.9679,-3.9575],[134.9641,-3.9608],[134.9574,-3.9619],[134.9449,-3.966],[134.9428,-3.9687],[134.9475,-3.9746],[134.9459,-3.9788],[134.9422,-3.9777],[134.9294,-3.9779],[134.9206,-3.9826],[134.913,-3.978],[134.9037,-3.9779],[134.8902,-3.9722],[134.8838,-3.9738],[134.8671,-3.9727],[134.864,-3.9769],[134.862,-3.9673],[134.8582,-3.9646],[134.8596,-3.9597],[134.8579,-3.9496],[134.8359,-3.9496],[134.8323,-3.9506],[134.8266,-3.9471],[134.8128,-3.9446],[134.8053,-3.9393],[134.7973,-3.9375],[134.7861,-3.9367],[134.7614,-3.9304],[134.7562,-3.9321],[134.7501,-3.9399],[134.742,-3.9425],[134.7339,-3.9506],[134.7242,-3.9565],[134.7198,-3.9537],[134.6949,-3.9624],[134.6903,-3.9662],[134.6827,-3.9657],[134.6779,-3.9759],[134.6725,-3.9791],[134.6576,-3.9799],[134.657,-3.9827],[134.6606,-3.9876],[134.6666,-4.0014],[134.6684,-4.01],[134.6675,-4.0189],[134.664,-4.0243],[134.6633,-4.0338],[134.6652,-4.0363],[134.6733,-4.0395],[134.6714,-4.0423],[134.6767,-4.0461],[134.6819,-4.0534],[134.6958,-4.0554],[134.7073,-4.0532],[134.7189,-4.0564],[134.7151,-4.061],[134.7101,-4.0619],[134.7014,-4.0678],[134.686,-4.0667],[134.6795,-4.0734],[134.6672,-4.0774],[134.6484,-4.082],[134.6429,-4.0879],[134.6352,-4.0922],[134.6341,-4.1025],[134.6289,-4.1126],[134.6231,-4.1163],[134.6237,-4.1195],[134.6305,-4.1206],[134.6465,-4.1341],[134.6507,-4.1349],[134.6614,-4.1344],[134.6726,-4.139],[134.6825,-4.1403],[134.6998,-4.1403],[134.7063,-4.1378],[134.7115,-4.1514],[134.7162,-4.1603],[134.7151,-4.1639],[134.7207,-4.1739],[134.7224,-4.1866],[134.7194,-4.1983],[134.7275,-4.2011],[134.7336,-4.1979],[134.7366,-4.2007],[134.7344,-4.2053],[134.7374,-4.2074],[134.7433,-4.2076],[134.7484,-4.2047],[134.7594,-4.2065],[134.768,-4.216],[134.7731,-4.2281],[134.7845,-4.2341],[134.7869,-4.2364],[134.7959,-4.2382],[134.7995,-4.2364],[134.8096,-4.2457],[134.8096,-4.2518],[134.8158,-4.2532],[134.8174,-4.2504],[134.8255,-4.2549],[134.8309,-4.2554],[134.8477,-4.25],[134.857,-4.2537],[134.8636,-4.2513],[134.8703,-4.2512],[134.8783,-4.2408],[134.8899,-4.2215],[134.8999,-4.2095],[134.9232,-4.1831],[134.951,-4.1566],[134.9794,-4.1302],[135.0021,-4.1058],[135.0331,-4.0656],[135.0473,-4.0453],[135.0668,-4.016],[135.0866,-3.9842],[135.1141,-3.9417],[135.1388,-3.9055],[135.1771,-3.8515],[135.2029,-3.8199],[135.2254,-3.7914],[135.258,-3.7519],[135.2414,-3.7481],[135.2144,-3.7405],[135.1636,-3.7268],[135.1173,-3.7031],[135.0445,-3.6754],[135.0006,-3.6607],[134.8887,-3.631],[134.8208,-3.6069],[134.7483,-3.5797],[134.6359,-3.5426],[134.5669,-3.5199],[134.5252,-3.5058],[134.4874,-3.4899],[134.413,-3.4741],[134.3852,-3.4621],[134.3356,-3.4362],[134.2839,-3.4141],[134.2514,-3.4022],[134.2243,-3.35],[134.2376,-3.3108],[134.2565,-3.2825],[134.2795,-3.2402],[134.3231,-3.1848],[134.2926,-3.1377],[134.2335,-3.0432],[134.2048,-2.9504],[134.1931,-2.9029],[134.1772,-2.8607],[134.1726,-2.8523]]}},{"type":"Feature","properties":{"mhid":"1332:481","alt_name":"KABUPATEN TELUK WONDAMA","latitude":-2.7,"longitude":134.5,"sample_value":930},"geometry":{"type":"LineString","coordinates":[[134.4828,-2.8596],[134.4837,-2.8573],[134.4797,-2.8523],[134.475,-2.8581],[134.4799,-2.8625],[134.4828,-2.8596]]}},{"type":"Feature","properties":{"mhid":"1332:481","alt_name":"KABUPATEN TELUK WONDAMA","latitude":-2.7,"longitude":134.5,"sample_value":930},"geometry":{"type":"LineString","coordinates":[[134.3833,-2.5312],[134.3783,-2.5232],[134.3721,-2.5262],[134.3705,-2.532],[134.373,-2.5417],[134.3702,-2.5509],[134.3747,-2.5535],[134.3795,-2.5676],[134.3851,-2.5771],[134.3899,-2.5787],[134.3926,-2.5756],[134.3961,-2.5613],[134.3943,-2.5517],[134.3941,-2.5426],[134.39,-2.532],[134.3833,-2.5312]]}},{"type":"Feature","properties":{"mhid":"1332:481","alt_name":"KABUPATEN TELUK WONDAMA","latitude":-2.7,"longitude":134.5,"sample_value":930},"geometry":{"type":"LineString","coordinates":[[134.3089,-2.5006],[134.3086,-2.4956],[134.306,-2.4894],[134.3018,-2.4854],[134.3034,-2.4977],[134.3089,-2.5006]]}},{"type":"Feature","properties":{"mhid":"1332:481","alt_name":"KABUPATEN TELUK WONDAMA","latitude":-2.7,"longitude":134.5,"sample_value":930},"geometry":{"type":"LineString","coordinates":[[134.5234,-2.4582],[134.5213,-2.4528],[134.5171,-2.4567],[134.5234,-2.4582]]}},{"type":"Feature","properties":{"mhid":"1332:481","alt_name":"KABUPATEN TELUK WONDAMA","latitude":-2.7,"longitude":134.5,"sample_value":930},"geometry":{"type":"LineString","coordinates":[[134.5221,-2.4343],[134.5175,-2.4385],[134.5222,-2.4406],[134.5276,-2.4374],[134.5221,-2.4343]]}},{"type":"Feature","properties":{"mhid":"1332:481","alt_name":"KABUPATEN TELUK WONDAMA","latitude":-2.7,"longitude":134.5,"sample_value":930},"geometry":{"type":"LineString","coordinates":[[134.5056,-2.3457],[134.5018,-2.3462],[134.5009,-2.3524],[134.5102,-2.3548],[134.5214,-2.3533],[134.5241,-2.3556],[134.5276,-2.352],[134.5184,-2.3448],[134.5056,-2.3457]]}},{"type":"Feature","properties":{"mhid":"1332:481","alt_name":"KABUPATEN TELUK WONDAMA","latitude":-2.7,"longitude":134.5,"sample_value":930},"geometry":{"type":"LineString","coordinates":[[134.5267,-2.3128],[134.5318,-2.3107],[134.5317,-2.3062],[134.5256,-2.3017],[134.5184,-2.3009],[134.521,-2.3086],[134.5267,-2.3128]]}},{"type":"Feature","properties":{"mhid":"1332:481","alt_name":"KABUPATEN TELUK WONDAMA","latitude":-2.7,"longitude":134.5,"sample_value":930},"geometry":{"type":"LineString","coordinates":[[134.4717,-2.3287],[134.4766,-2.3164],[134.4863,-2.3116],[134.491,-2.3074],[134.4915,-2.3013],[134.4861,-2.2982],[134.4823,-2.2986],[134.466,-2.3107],[134.4618,-2.3179],[134.4627,-2.3258],[134.4717,-2.3287]]}},{"type":"Feature","properties":{"mhid":"1332:481","alt_name":"KABUPATEN TELUK WONDAMA","latitude":-2.7,"longitude":134.5,"sample_value":930},"geometry":{"type":"LineString","coordinates":[[134.5728,-2.3524],[134.5759,-2.3421],[134.5728,-2.3341],[134.5738,-2.3282],[134.5768,-2.3225],[134.5762,-2.3173],[134.5693,-2.3112],[134.57,-2.3036],[134.5733,-2.2949],[134.5706,-2.2848],[134.5628,-2.2836],[134.5617,-2.2884],[134.5645,-2.2955],[134.5601,-2.3062],[134.563,-2.3183],[134.56,-2.3259],[134.553,-2.3306],[134.5512,-2.3334],[134.5542,-2.3376],[134.5649,-2.3387],[134.5684,-2.3433],[134.5687,-2.3471],[134.5654,-2.3531],[134.5597,-2.3533],[134.5623,-2.3638],[134.558,-2.3712],[134.5509,-2.3689],[134.5443,-2.3693],[134.5367,-2.3671],[134.5294,-2.3698],[134.5237,-2.3667],[134.5114,-2.3671],[134.5043,-2.362],[134.5026,-2.3687],[134.5049,-2.3714],[134.504,-2.3768],[134.5072,-2.3784],[134.5108,-2.3837],[134.5205,-2.3859],[134.52,-2.3882],[134.5098,-2.3874],[134.5073,-2.3892],[134.5078,-2.3959],[134.5103,-2.4007],[134.5147,-2.4045],[134.5245,-2.4032],[134.5294,-2.4049],[134.5291,-2.4104],[134.5337,-2.4152],[134.5464,-2.4132],[134.5583,-2.4156],[134.5603,-2.4194],[134.5509,-2.4224],[134.5459,-2.4217],[134.5423,-2.4267],[134.5349,-2.4267],[134.5314,-2.4306],[134.5338,-2.4331],[134.5413,-2.4343],[134.5461,-2.4381],[134.552,-2.4373],[134.5642,-2.4436],[134.5683,-2.4353],[134.5739,-2.4352],[134.5771,-2.4311],[134.5762,-2.4196],[134.5673,-2.4168],[134.5608,-2.411],[134.5612,-2.4047],[134.5642,-2.4036],[134.5734,-2.4054],[134.5745,-2.3992],[134.5792,-2.3983],[134.5833,-2.4024],[134.5875,-2.4007],[134.5885,-2.3938],[134.5863,-2.3845],[134.5782,-2.3838],[134.5784,-2.3778],[134.5764,-2.3711],[134.5721,-2.3633],[134.5728,-2.3524]]}},{"type":"Feature","properties":{"mhid":"1332:481","alt_name":"KABUPATEN TELUK WONDAMA","latitude":-2.7,"longitude":134.5,"sample_value":930},"geometry":{"type":"LineString","coordinates":[[134.4783,-2.2413],[134.4818,-2.2334],[134.4872,-2.2243],[134.4947,-2.2165],[134.4951,-2.2139],[134.4855,-2.2035],[134.4819,-2.2053],[134.4777,-2.2126],[134.4777,-2.2255],[134.4735,-2.2328],[134.472,-2.242],[134.4753,-2.2443],[134.4783,-2.2413]]}},{"type":"Feature","properties":{"mhid":"1332:481","alt_name":"KABUPATEN TELUK WONDAMA","latitude":-2.7,"longitude":134.5,"sample_value":930},"geometry":{"type":"LineString","coordinates":[[134.7463,-2.16],[134.7471,-2.1557],[134.7391,-2.1479],[134.7368,-2.1486],[134.7402,-2.1568],[134.7463,-2.16]]}},{"type":"Feature","properties":{"mhid":"1332:481","alt_name":"KABUPATEN TELUK WONDAMA","latitude":-2.7,"longitude":134.5,"sample_value":930},"geometry":{"type":"LineString","coordinates":[[134.7288,-2.0836],[134.7287,-2.0742],[134.723,-2.0735],[134.7229,-2.0827],[134.7288,-2.0836]]}},{"type":"Feature","properties":{"mhid":"1332:481","alt_name":"KABUPATEN TELUK WONDAMA","latitude":-2.7,"longitude":134.5,"sample_value":930},"geometry":{"type":"LineString","coordinates":[[134.7408,-2.0526],[134.7455,-2.0488],[134.7465,-2.0415],[134.7446,-2.0302],[134.7407,-2.0252],[134.7407,-2.0186],[134.7365,-2.0174],[134.7253,-2.026],[134.7297,-2.0352],[134.7319,-2.0464],[134.7369,-2.0519],[134.7408,-2.0526]]}},{"type":"Feature","properties":{"mhid":"1332:481","alt_name":"KABUPATEN TELUK WONDAMA","latitude":-2.7,"longitude":134.5,"sample_value":930},"geometry":{"type":"LineString","coordinates":[[134.1591,-2.0247],[134.1581,-2.0159],[134.1541,-2.007],[134.1496,-2.0185],[134.1486,-2.0296],[134.1514,-2.034],[134.148,-2.0368],[134.151,-2.0498],[134.1564,-2.0545],[134.158,-2.0501],[134.156,-2.042],[134.1569,-2.037],[134.1553,-2.032],[134.1563,-2.0269],[134.1591,-2.0247]]}},{"type":"Feature","properties":{"mhid":"1332:481","alt_name":"KABUPATEN TELUK WONDAMA","latitude":-2.7,"longitude":134.5,"sample_value":930},"geometry":{"type":"LineString","coordinates":[[134.4129,-2.0425],[134.4073,-2.0357],[134.4075,-2.0221],[134.4052,-2.0149],[134.406,-2.0081],[134.4047,-2.0001],[134.3893,-1.9932],[134.3789,-1.9918],[134.3735,-1.9922],[134.3618,-1.9981],[134.3559,-2.01],[134.3479,-2.0208],[134.3441,-2.0283],[134.3424,-2.0386],[134.3384,-2.0463],[134.3261,-2.0625],[134.319,-2.0694],[134.3158,-2.0756],[134.3146,-2.0833],[134.3196,-2.0869],[134.3239,-2.0861],[134.3278,-2.0882],[134.3251,-2.095],[134.3224,-2.0949],[134.3173,-2.089],[134.311,-2.0931],[134.3109,-2.0993],[134.3172,-2.0985],[134.3336,-2.1062],[134.3364,-2.1136],[134.334,-2.1231],[134.3345,-2.1347],[134.3377,-2.142],[134.3407,-2.1456],[134.3401,-2.1514],[134.3468,-2.1659],[134.3511,-2.167],[134.3537,-2.1582],[134.3612,-2.1549],[134.3708,-2.1403],[134.3728,-2.1305],[134.3811,-2.1185],[134.3798,-2.1057],[134.3838,-2.1028],[134.389,-2.1032],[134.3917,-2.0962],[134.3862,-2.0923],[134.383,-2.0862],[134.3842,-2.082],[134.3918,-2.0767],[134.4012,-2.0764],[134.4051,-2.0728],[134.3971,-2.0661],[134.4027,-2.0548],[134.407,-2.044],[134.4129,-2.0425]]}},{"type":"Feature","properties":{"mhid":"1332:481","alt_name":"KABUPATEN TELUK WONDAMA","latitude":-2.7,"longitude":134.5,"sample_value":930},"geometry":{"type":"LineString","coordinates":[[134.1369,-1.8961],[134.1393,-1.8911],[134.1368,-1.8833],[134.1328,-1.8863],[134.1369,-1.8961]]}},{"type":"Feature","properties":{"mhid":"1332:481","alt_name":"KABUPATEN TELUK WONDAMA","latitude":-2.7,"longitude":134.5,"sample_value":930},"geometry":{"type":"LineString","coordinates":[[134.5988,-2.4893],[134.575,-2.4794],[134.5705,-2.4764],[134.5698,-2.4726],[134.5719,-2.4646],[134.5666,-2.4591],[134.5593,-2.4574],[134.5565,-2.4584],[134.5307,-2.452],[134.5339,-2.4628],[134.5416,-2.4656],[134.5503,-2.4723],[134.5456,-2.4751],[134.5378,-2.471],[134.5256,-2.4699],[134.5211,-2.4673],[134.5159,-2.4697],[134.5129,-2.4737],[134.5159,-2.4793],[134.5226,-2.476],[134.5315,-2.4804],[134.5354,-2.4811],[134.5455,-2.4777],[134.5564,-2.4782],[134.5613,-2.4813],[134.5695,-2.4827],[134.5653,-2.489],[134.5571,-2.4855],[134.551,-2.4851],[134.5474,-2.4897],[134.5531,-2.4926],[134.5473,-2.4952],[134.5404,-2.4896],[134.5332,-2.4871],[134.517,-2.4855],[134.5119,-2.4861],[134.4964,-2.4999],[134.4857,-2.5126],[134.4896,-2.5169],[134.4828,-2.5197],[134.4753,-2.5246],[134.4701,-2.5322],[134.4642,-2.5491],[134.4622,-2.5517],[134.4631,-2.5575],[134.4594,-2.5685],[134.4586,-2.5769],[134.4596,-2.594],[134.4637,-2.5997],[134.4702,-2.6022],[134.4725,-2.6068],[134.4739,-2.6141],[134.4688,-2.619],[134.4693,-2.6273],[134.4726,-2.6351],[134.4721,-2.642],[134.4755,-2.6484],[134.4846,-2.6571],[134.4916,-2.6596],[134.4935,-2.6626],[134.4957,-2.6779],[134.4904,-2.686],[134.4923,-2.6917],[134.4973,-2.6976],[134.498,-2.7008],[134.4951,-2.7098],[134.4946,-2.7154],[134.4981,-2.7249],[134.5071,-2.7333],[134.5082,-2.7388],[134.5023,-2.7538],[134.5041,-2.7636],[134.5059,-2.7669],[134.5137,-2.7725],[134.5126,-2.7791],[134.5136,-2.7853],[134.521,-2.7974],[134.52,-2.8054],[134.517,-2.8136],[134.5175,-2.8203],[134.5142,-2.8291],[134.5089,-2.8374],[134.4981,-2.8469],[134.5,-2.8495],[134.4941,-2.8539],[134.4901,-2.8517],[134.4876,-2.8545],[134.4962,-2.8638],[134.4948,-2.8673],[134.4894,-2.8637],[134.4848,-2.863],[134.4788,-2.8669],[134.4637,-2.8686],[134.4556,-2.8671],[134.4523,-2.8576],[134.4439,-2.8496],[134.4469,-2.8472],[134.4492,-2.8377],[134.4476,-2.8335],[134.4493,-2.8231],[134.4467,-2.8179],[134.4521,-2.811],[134.4407,-2.8091],[134.4344,-2.7987],[134.4246,-2.7942],[134.4248,-2.7837],[134.4229,-2.779],[134.4153,-2.7736],[134.4085,-2.7726],[134.4074,-2.7704],[134.4113,-2.7599],[134.4108,-2.7496],[134.4043,-2.7377],[134.4045,-2.7327],[134.4084,-2.723],[134.4063,-2.7201],[134.4,-2.7237],[134.3966,-2.7136],[134.3911,-2.7062],[134.3821,-2.6985],[134.3884,-2.6964],[134.3797,-2.6764],[134.3724,-2.6772],[134.3687,-2.6721],[134.3668,-2.6651],[134.3674,-2.661],[134.3744,-2.6544],[134.3755,-2.6475],[134.367,-2.6485],[134.3611,-2.6431],[134.3574,-2.6359],[134.3509,-2.6297],[134.3508,-2.627],[134.3603,-2.6254],[134.3605,-2.6211],[134.3542,-2.618],[134.3506,-2.6134],[134.3498,-2.6087],[134.3417,-2.6075],[134.3417,-2.6007],[134.3367,-2.5935],[134.3351,-2.5883],[134.3273,-2.587],[134.3232,-2.5905],[134.3192,-2.5879],[134.3204,-2.5833],[134.3334,-2.5841],[134.3417,-2.5787],[134.3329,-2.5701],[134.3331,-2.5613],[134.3385,-2.5594],[134.3408,-2.5551],[134.3332,-2.55],[134.3204,-2.5474],[134.3173,-2.5385],[134.3216,-2.5323],[134.321,-2.5289],[134.3164,-2.5228],[134.3098,-2.5188],[134.3015,-2.5214],[134.304,-2.5163],[134.3106,-2.516],[134.3149,-2.5127],[134.3196,-2.514],[134.3195,-2.5092],[134.315,-2.5097],[134.3083,-2.5077],[134.2987,-2.5072],[134.2967,-2.4967],[134.2907,-2.496],[134.2906,-2.4896],[134.2804,-2.4847],[134.2804,-2.4803],[134.2722,-2.4784],[134.2756,-2.4742],[134.2766,-2.469],[134.2687,-2.4598],[134.2681,-2.452],[134.2605,-2.4552],[134.2586,-2.446],[134.2626,-2.4399],[134.2624,-2.4356],[134.2538,-2.4303],[134.2501,-2.4334],[134.2485,-2.4428],[134.2448,-2.4429],[134.2403,-2.434],[134.2307,-2.426],[134.2227,-2.4237],[134.2156,-2.4238],[134.2145,-2.4189],[134.2079,-2.4073],[134.203,-2.403],[134.2059,-2.398],[134.2024,-2.3942],[134.2054,-2.3848],[134.2025,-2.3833],[134.1968,-2.3889],[134.1965,-2.3819],[134.1934,-2.3769],[134.1931,-2.3688],[134.1875,-2.3645],[134.1874,-2.3602],[134.1824,-2.3608],[134.1764,-2.3554],[134.1744,-2.3402],[134.1751,-2.3328],[134.1742,-2.3233],[134.1633,-2.3125],[134.16,-2.3007],[134.1572,-2.2966],[134.1587,-2.2894],[134.1548,-2.2781],[134.1582,-2.2718],[134.1577,-2.2668],[134.1525,-2.259],[134.1529,-2.253],[134.1513,-2.2449],[134.1467,-2.2419],[134.1396,-2.2415],[134.1396,-2.234],[134.1377,-2.2292],[134.1467,-2.2283],[134.1475,-2.225],[134.1404,-2.223],[134.1368,-2.2174],[134.1422,-2.2159],[134.1486,-2.2063],[134.1496,-2.1995],[134.147,-2.1936],[134.147,-2.1884],[134.144,-2.1807],[134.1478,-2.1759],[134.1447,-2.1629],[134.1454,-2.1587],[134.1413,-2.1566],[134.1321,-2.1572],[134.1279,-2.1601],[134.1312,-2.1674],[134.1235,-2.1693],[134.1197,-2.1582],[134.1184,-2.1437],[134.1146,-2.1287],[134.1167,-2.1143],[134.115,-2.1096],[134.108,-2.1036],[134.1083,-2.0985],[134.1147,-2.0988],[134.1043,-2.0742],[134.1072,-2.0615],[134.1042,-2.0529],[134.1073,-2.0502],[134.1098,-2.0442],[134.1177,-2.0402],[134.1214,-2.0398],[134.1212,-2.0286],[134.1251,-2.0264],[134.128,-2.0326],[134.1317,-2.0309],[134.1303,-2.02],[134.1313,-2.0174],[134.1389,-2.0103],[134.1424,-2.0027],[134.1416,-1.9909],[134.1401,-1.983],[134.1363,-1.9764],[134.1384,-1.9664],[134.143,-1.966],[134.1463,-1.972],[134.1518,-1.9705],[134.1528,-1.9634],[134.1416,-1.9606],[134.1384,-1.9638],[134.1345,-1.9568],[134.1362,-1.9483],[134.1339,-1.9383],[134.133,-1.9276],[134.1278,-1.9135],[134.1241,-1.9001],[134.121,-1.8853],[134.1226,-1.8715],[134.1216,-1.8643],[134.118,-1.8637],[134.114,-1.8684],[134.1074,-1.8678],[134.1064,-1.8632],[134.1017,-1.8621],[134.1068,-1.8498],[134.1024,-1.8436],[134.0998,-1.8362],[134.1027,-1.8156],[134.0991,-1.8046],[134.1013,-1.7992],[134.0975,-1.7935],[134.0968,-1.7885],[134.0997,-1.7781],[134.0985,-1.7732],[134.1001,-1.7669],[134.0929,-1.7682],[134.0845,-1.7697],[134.0707,-1.7693],[134.0651,-1.7701],[134.0448,-1.7685],[134.0054,-1.7711],[134.0033,-1.7715],[134.0051,-1.825],[134.0058,-1.825],[134.0058,-1.862],[134.003,-1.8621],[134.0031,-1.8861],[134.0046,-1.91],[134.0188,-2.0049],[134.0202,-2.0046],[134.0242,-2.0216],[134.0246,-2.0327],[134.0239,-2.0393],[134.0263,-2.0493],[134.029,-2.0731],[134.0358,-2.1046],[134.0393,-2.1323],[134.042,-2.1584],[134.0439,-2.1708],[134.0451,-2.1901],[134.0475,-2.1969],[134.052,-2.2392],[134.0512,-2.246],[134.0518,-2.2644],[134.0539,-2.2781],[134.0547,-2.2918],[134.0566,-2.3056],[134.057,-2.3158],[134.0588,-2.3284],[134.0622,-2.343],[134.0645,-2.3728],[134.0688,-2.3979],[134.0706,-2.4132],[134.0741,-2.4274],[134.0724,-2.4446],[134.0722,-2.455],[134.0733,-2.4666],[134.0716,-2.4802],[134.0713,-2.5094],[134.0729,-2.5336],[134.075,-2.5561],[134.0747,-2.5663],[134.076,-2.5745],[134.0792,-2.5859],[134.0806,-2.5947],[134.0837,-2.6033],[134.0917,-2.617],[134.0965,-2.6376],[134.103,-2.6505],[134.105,-2.6565],[134.1127,-2.6719],[134.117,-2.6777],[134.122,-2.688],[134.129,-2.7052],[134.1322,-2.718],[134.1337,-2.7301],[134.1423,-2.7516],[134.143,-2.7593],[134.1457,-2.7686],[134.155,-2.7897],[134.1594,-2.8018],[134.1629,-2.8153],[134.171,-2.8358],[134.1735,-2.8468],[134.1726,-2.8523],[134.1772,-2.8607],[134.1931,-2.9029],[134.2048,-2.9504],[134.2335,-3.0432],[134.2926,-3.1377],[134.3231,-3.1848],[134.2795,-3.2402],[134.2565,-3.2825],[134.2376,-3.3108],[134.2243,-3.35],[134.2514,-3.4022],[134.2839,-3.4141],[134.3356,-3.4362],[134.3852,-3.4621],[134.413,-3.4741],[134.4874,-3.4899],[134.5252,-3.5058],[134.5669,-3.5199],[134.6359,-3.5426],[134.7268,-3.4086],[134.7259,-3.3638],[134.7035,-3.3455],[134.6982,-3.3004],[134.6859,-3.1973],[134.6692,-3.0622],[134.6572,-2.9617],[134.6426,-2.8448],[134.6329,-2.7656],[134.6244,-2.6997],[134.6217,-2.6739],[134.6139,-2.6157],[134.5988,-2.4893]]}},{"type":"Feature","properties":{"mhid":"1332:481","alt_name":"KABUPATEN TELUK WONDAMA","latitude":-2.7,"longitude":134.5,"sample_value":930},"geometry":{"type":"LineString","coordinates":[[134.2347,-1.7424],[134.23,-1.7376],[134.2217,-1.7341],[134.221,-1.74],[134.2106,-1.7391],[134.2088,-1.7432],[134.2047,-1.7379],[134.2023,-1.7382],[134.2025,-1.7544],[134.2013,-1.7574],[134.1951,-1.7634],[134.1894,-1.7741],[134.1818,-1.7861],[134.18,-1.796],[134.1736,-1.8049],[134.1677,-1.8097],[134.159,-1.8195],[134.1541,-1.8206],[134.1503,-1.824],[134.1481,-1.8291],[134.1467,-1.8432],[134.1466,-1.8524],[134.1496,-1.8595],[134.1499,-1.8678],[134.1469,-1.8802],[134.1474,-1.8879],[134.1426,-1.8962],[134.1475,-1.9011],[134.1368,-1.903],[134.1353,-1.9084],[134.138,-1.9136],[134.1445,-1.9094],[134.1483,-1.9113],[134.1505,-1.907],[134.1575,-1.9199],[134.1594,-1.9347],[134.1641,-1.9421],[134.165,-1.9498],[134.1673,-1.9507],[134.172,-1.9444],[134.1695,-1.9337],[134.1704,-1.9287],[134.1748,-1.9194],[134.1747,-1.9159],[134.1819,-1.9108],[134.1851,-1.9003],[134.191,-1.9044],[134.1942,-1.898],[134.1996,-1.8764],[134.2107,-1.8371],[134.2148,-1.8295],[134.2111,-1.8179],[134.2068,-1.8099],[134.2034,-1.8116],[134.2016,-1.8242],[134.1967,-1.8267],[134.1989,-1.8073],[134.1952,-1.8013],[134.1952,-1.7934],[134.2043,-1.7835],[134.2086,-1.7835],[134.209,-1.7994],[134.215,-1.7967],[134.2215,-1.7892],[134.2268,-1.7771],[134.231,-1.7763],[134.234,-1.7635],[134.2383,-1.7546],[134.2385,-1.7447],[134.2347,-1.7424]]}},{"type":"Feature","properties":{"mhid":"1332:482","alt_name":"KABUPATEN TELUK BINTUNI","latitude":-1.88037,"longitude":133.33105,"sample_value":268},"geometry":{"type":"LineString","coordinates":[[133.6173,-2.5438],[133.619,-2.5371],[133.6082,-2.5367],[133.5992,-2.5412],[133.5858,-2.5547],[133.5836,-2.5646],[133.5885,-2.5643],[133.6018,-2.5538],[133.6052,-2.5533],[133.6098,-2.5477],[133.6084,-2.5447],[133.6173,-2.5438]]}},{"type":"Feature","properties":{"mhid":"1332:482","alt_name":"KABUPATEN TELUK BINTUNI","latitude":-1.88037,"longitude":133.33105,"sample_value":268},"geometry":{"type":"LineString","coordinates":[[133.6259,-2.4933],[133.6194,-2.4939],[133.6145,-2.5015],[133.614,-2.5059],[133.6195,-2.5119],[133.6313,-2.5188],[133.6367,-2.5245],[133.6403,-2.521],[133.6398,-2.5143],[133.6357,-2.5028],[133.6354,-2.4983],[133.6322,-2.4933],[133.6259,-2.4933]]}},{"type":"Feature","properties":{"mhid":"1332:482","alt_name":"KABUPATEN TELUK BINTUNI","latitude":-1.88037,"longitude":133.33105,"sample_value":268},"geometry":{"type":"LineString","coordinates":[[133.6616,-2.4923],[133.6582,-2.4928],[133.6529,-2.4981],[133.6524,-2.5097],[133.6558,-2.5179],[133.6602,-2.5237],[133.68,-2.5425],[133.6906,-2.5435],[133.695,-2.5387],[133.695,-2.5295],[133.6911,-2.5227],[133.6824,-2.5005],[133.6708,-2.4923],[133.6616,-2.4923]]}},{"type":"Feature","properties":{"mhid":"1332:482","alt_name":"KABUPATEN TELUK BINTUNI","latitude":-1.88037,"longitude":133.33105,"sample_value":268},"geometry":{"type":"LineString","coordinates":[[133.44,-2.4855],[133.435,-2.4824],[133.4303,-2.4833],[133.4269,-2.4896],[133.4312,-2.5018],[133.4334,-2.5029],[133.4417,-2.4988],[133.4483,-2.498],[133.4501,-2.4922],[133.4488,-2.4875],[133.44,-2.4855]]}},{"type":"Feature","properties":{"mhid":"1332:482","alt_name":"KABUPATEN TELUK BINTUNI","latitude":-1.88037,"longitude":133.33105,"sample_value":268},"geometry":{"type":"LineString","coordinates":[[133.3397,-2.4232],[133.3312,-2.4252],[133.3217,-2.4398],[133.3252,-2.4468],[133.3337,-2.4539],[133.3427,-2.4642],[133.3439,-2.4748],[133.35,-2.4777],[133.3544,-2.4819],[133.3621,-2.4856],[133.3732,-2.4963],[133.3759,-2.4967],[133.3784,-2.4863],[133.3774,-2.4761],[133.3702,-2.4564],[133.3686,-2.4488],[133.3532,-2.4342],[133.352,-2.4313],[133.3397,-2.4232]]}},{"type":"Feature","properties":{"mhid":"1332:482","alt_name":"KABUPATEN TELUK BINTUNI","latitude":-1.88037,"longitude":133.33105,"sample_value":268},"geometry":{"type":"LineString","coordinates":[[133.4879,-2.4016],[133.486,-2.3989],[133.4815,-2.4027],[133.4772,-2.3993],[133.467,-2.3986],[133.459,-2.4082],[133.4589,-2.4128],[133.4713,-2.43],[133.4769,-2.4338],[133.487,-2.4322],[133.488,-2.4344],[133.4815,-2.4392],[133.4817,-2.4461],[133.4862,-2.4534],[133.4915,-2.465],[133.494,-2.4682],[133.5018,-2.4698],[133.5064,-2.4749],[133.5112,-2.477],[133.5161,-2.4755],[133.5321,-2.4858],[133.5361,-2.4907],[133.5387,-2.4989],[133.5515,-2.5057],[133.5644,-2.5096],[133.5701,-2.509],[133.5753,-2.5046],[133.5806,-2.4964],[133.5894,-2.4885],[133.5944,-2.4858],[133.5872,-2.4625],[133.5818,-2.4543],[133.5789,-2.4473],[133.574,-2.4435],[133.5673,-2.4467],[133.5551,-2.4436],[133.5475,-2.4399],[133.5389,-2.433],[133.5313,-2.4353],[133.5263,-2.4325],[133.5256,-2.4296],[133.5193,-2.4231],[133.5051,-2.4137],[133.4998,-2.4121],[133.4923,-2.4076],[133.4879,-2.4016]]}},{"type":"Feature","properties":{"mhid":"1332:482","alt_name":"KABUPATEN TELUK BINTUNI","latitude":-1.88037,"longitude":133.33105,"sample_value":268},"geometry":{"type":"LineString","coordinates":[[133.6329,-2.2342],[133.6281,-2.2301],[133.6232,-2.2236],[133.615,-2.221],[133.61,-2.2331],[133.614,-2.2389],[133.6219,-2.2365],[133.6312,-2.236],[133.6329,-2.2342]]}},{"type":"Feature","properties":{"mhid":"1332:482","alt_name":"KABUPATEN TELUK BINTUNI","latitude":-1.88037,"longitude":133.33105,"sample_value":268},"geometry":{"type":"LineString","coordinates":[[133.7633,-2.2454],[133.7715,-2.2245],[133.7721,-2.2182],[133.7626,-2.2151],[133.7377,-2.2268],[133.7321,-2.2301],[133.7109,-2.247],[133.7005,-2.2528],[133.6905,-2.2547],[133.6864,-2.263],[133.6912,-2.2669],[133.7073,-2.2595],[133.7185,-2.2559],[133.7281,-2.2485],[133.7332,-2.2465],[133.7485,-2.247],[133.7576,-2.2511],[133.7633,-2.2454]]}},{"type":"Feature","properties":{"mhid":"1332:482","alt_name":"KABUPATEN TELUK BINTUNI","latitude":-1.88037,"longitude":133.33105,"sample_value":268},"geometry":{"type":"LineString","coordinates":[[133.76,-2.1831],[133.7467,-2.1802],[133.7371,-2.176],[133.7319,-2.1788],[133.73,-2.1855],[133.7293,-2.1966],[133.7234,-2.2067],[133.7111,-2.2168],[133.706,-2.2196],[133.6987,-2.2201],[133.6894,-2.2226],[133.6866,-2.2245],[133.6862,-2.2317],[133.6921,-2.2341],[133.6994,-2.2411],[133.7079,-2.2402],[133.727,-2.2235],[133.7419,-2.2145],[133.7477,-2.2093],[133.7525,-2.207],[133.7608,-2.2066],[133.7732,-2.1909],[133.7787,-2.1828],[133.7772,-2.1793],[133.7667,-2.1827],[133.76,-2.1831]]}},{"type":"Feature","properties":{"mhid":"1332:482","alt_name":"KABUPATEN TELUK BINTUNI","latitude":-1.88037,"longitude":133.33105,"sample_value":268},"geometry":{"type":"LineString","coordinates":[[133.8746,-2.1607],[133.8669,-2.1616],[133.8559,-2.1614],[133.8528,-2.167],[133.8642,-2.1776],[133.8756,-2.1628],[133.8746,-2.1607]]}},{"type":"Feature","properties":{"mhid":"1332:482","alt_name":"KABUPATEN TELUK BINTUNI","latitude":-1.88037,"longitude":133.33105,"sample_value":268},"geometry":{"type":"LineString","coordinates":[[133.8112,-2.1993],[133.8365,-2.1959],[133.8475,-2.1936],[133.853,-2.1913],[133.8568,-2.1848],[133.8559,-2.1801],[133.8501,-2.1686],[133.8501,-2.1607],[133.8524,-2.1586],[133.8595,-2.1581],[133.8698,-2.1551],[133.8725,-2.151],[133.8589,-2.1472],[133.8501,-2.1457],[133.8389,-2.1469],[133.8273,-2.1538],[133.8086,-2.1698],[133.7946,-2.1802],[133.7895,-2.19],[133.7901,-2.1958],[133.8005,-2.1991],[133.8112,-2.1993]]}},{"type":"Feature","properties":{"mhid":"1332:482","alt_name":"KABUPATEN TELUK BINTUNI","latitude":-1.88037,"longitude":133.33105,"sample_value":268},"geometry":{"type":"LineString","coordinates":[[133.899,-2.1347],[133.9121,-2.1329],[133.928,-2.1187],[133.9243,-2.1118],[133.9145,-2.1078],[133.8959,-2.1113],[133.8911,-2.1142],[133.8898,-2.1232],[133.8929,-2.1337],[133.899,-2.1347]]}},{"type":"Feature","properties":{"mhid":"1332:482","alt_name":"KABUPATEN TELUK BINTUNI","latitude":-1.88037,"longitude":133.33105,"sample_value":268},"geometry":{"type":"LineString","coordinates":[[133.8826,-2.1406],[133.8862,-2.1338],[133.8857,-2.1199],[133.8863,-2.1133],[133.8764,-2.1099],[133.8668,-2.1021],[133.8601,-2.1009],[133.8573,-2.1027],[133.8549,-2.1089],[133.8542,-2.1164],[133.8515,-2.125],[133.8524,-2.1305],[133.8672,-2.1351],[133.88,-2.1417],[133.8826,-2.1406]]}},{"type":"Feature","properties":{"mhid":"1332:482","alt_name":"KABUPATEN TELUK BINTUNI","latitude":-1.88037,"longitude":133.33105,"sample_value":268},"geometry":{"type":"LineString","coordinates":[[133.9332,-2.1142],[133.9363,-2.1082],[133.936,-2.0965],[133.9344,-2.0949],[133.9257,-2.1026],[133.931,-2.1088],[133.9332,-2.1142]]}},{"type":"Feature","properties":{"mhid":"1332:482","alt_name":"KABUPATEN TELUK BINTUNI","latitude":-1.88037,"longitude":133.33105,"sample_value":268},"geometry":{"type":"LineString","coordinates":[[133.8393,-1.7783],[133.843,-1.7595],[133.8482,-1.7479],[133.8556,-1.729],[133.8624,-1.7152],[133.862,-1.7062],[133.8661,-1.7032],[133.8688,-1.6916],[133.8701,-1.6762],[133.8728,-1.6634],[133.8729,-1.6572],[133.8694,-1.6289],[133.8663,-1.5967],[133.8547,-1.6],[133.842,-1.6008],[133.8143,-1.6004],[133.8052,-1.5977],[133.7948,-1.5975],[133.7596,-1.5946],[133.7459,-1.5952],[133.7204,-1.5949],[133.6838,-1.594],[133.6662,-1.5925],[133.6523,-1.5881],[133.6538,-1.5859],[133.6616,-1.5552],[133.6642,-1.5427],[133.6658,-1.5105],[133.6659,-1.4814],[133.6639,-1.46],[133.6605,-1.4308],[133.6597,-1.4102],[133.6607,-1.4081],[133.6617,-1.3953],[133.6629,-1.3641],[133.6629,-1.3631],[133.6444,-1.3589],[133.615,-1.3527],[133.5721,-1.338],[133.5416,-1.3305],[133.5262,-1.3257],[133.5123,-1.3229],[133.5029,-1.3201],[133.4698,-1.3131],[133.4571,-1.31],[133.4266,-1.3014],[133.41,-1.2983],[133.4012,-1.2978],[133.3869,-1.293],[133.3675,-1.2858],[133.3344,-1.2754],[133.3199,-1.272],[133.3017,-1.2693],[133.2932,-1.2661],[133.2662,-1.2647],[133.2492,-1.2624],[133.2342,-1.2578],[133.1933,-1.2495],[133.1752,-1.2461],[133.1612,-1.2425],[133.1104,-1.2309],[133.0992,-1.2289],[133.0721,-1.2252],[133.0321,-1.2205],[133.0054,-1.2156],[132.9882,-1.2105],[132.9693,-1.2078],[132.9474,-1.2004],[132.8992,-1.1935],[132.864,-1.1878],[132.8557,-1.1855],[132.8209,-1.1794],[132.8057,-1.176],[132.7944,-1.1721],[132.78,-1.1717],[132.7464,-1.1701],[132.7319,-1.1687],[132.7126,-1.1628],[132.7088,-1.1605],[132.7227,-1.184],[132.7233,-1.1967],[132.7199,-1.219],[132.672,-1.2955],[132.6328,-1.3619],[132.6096,-1.3953],[132.5999,-1.4146],[132.5952,-1.436],[132.5836,-1.5067],[132.5681,-1.5941],[132.5499,-1.6508],[132.5245,-1.7052],[132.5167,-1.7334],[132.5082,-1.7527],[132.4967,-1.7814],[132.4872,-1.8051],[132.475,-1.8577],[132.4745,-1.8848],[132.4713,-1.9126],[132.473,-1.9744],[132.4844,-2.0579],[132.5055,-2.1238],[132.5416,-2.1899],[132.5602,-2.1894],[132.5671,-2.1899],[132.5771,-2.1881],[132.5911,-2.1895],[132.5973,-2.1943],[132.6106,-2.2075],[132.6179,-2.2198],[132.6248,-2.2382],[132.6254,-2.2449],[132.623,-2.2555],[132.6257,-2.2615],[132.6295,-2.2587],[132.6291,-2.2677],[132.6354,-2.2765],[132.6507,-2.286],[132.6642,-2.2866],[132.6763,-2.2892],[132.6843,-2.2924],[132.699,-2.2934],[132.7126,-2.2987],[132.7189,-2.2986],[132.7243,-2.2939],[132.7285,-2.2847],[132.7375,-2.2727],[132.7486,-2.2662],[132.7529,-2.2647],[132.7649,-2.2567],[132.7867,-2.2485],[132.8093,-2.2422],[132.8186,-2.2409],[132.8427,-2.2402],[132.8557,-2.2425],[132.8729,-2.2501],[132.8827,-2.2601],[132.8879,-2.2699],[132.8923,-2.2736],[132.8974,-2.2749],[132.9012,-2.2783],[132.9079,-2.28],[132.9212,-2.2797],[132.9414,-2.2777],[132.9539,-2.282],[132.955,-2.2848],[132.9641,-2.2924],[132.9678,-2.2924],[132.9729,-2.2885],[132.9803,-2.286],[132.9865,-2.279],[132.993,-2.2743],[133.0034,-2.2701],[133.0207,-2.2478],[133.0244,-2.2446],[133.0393,-2.2365],[133.0568,-2.2318],[133.0682,-2.2303],[133.0802,-2.2317],[133.0899,-2.2317],[133.0979,-2.2331],[133.1009,-2.2292],[133.1187,-2.226],[133.1241,-2.222],[133.1268,-2.2175],[133.1385,-2.2094],[133.1544,-2.1995],[133.1618,-2.1965],[133.1798,-2.194],[133.1947,-2.1942],[133.2084,-2.1971],[133.224,-2.1992],[133.2228,-2.2057],[133.2278,-2.209],[133.2309,-2.215],[133.2335,-2.2148],[133.2501,-2.2034],[133.2569,-2.2031],[133.2736,-2.1998],[133.2841,-2.1924],[133.2884,-2.1931],[133.2909,-2.2019],[133.2967,-2.2072],[133.3054,-2.212],[133.3145,-2.2144],[133.3263,-2.2134],[133.3361,-2.2142],[133.3479,-2.2115],[133.3597,-2.2111],[133.3703,-2.2093],[133.3814,-2.2045],[133.3952,-2.2093],[133.4016,-2.2073],[133.4136,-2.2072],[133.4181,-2.2143],[133.4258,-2.2184],[133.4275,-2.2232],[133.4318,-2.2263],[133.4405,-2.2276],[133.4696,-2.2268],[133.4803,-2.2306],[133.4902,-2.2279],[133.5082,-2.2305],[133.5168,-2.228],[133.5209,-2.2306],[133.5228,-2.235],[133.5279,-2.2373],[133.5338,-2.237],[133.5378,-2.2346],[133.5437,-2.2344],[133.5491,-2.2318],[133.56,-2.2289],[133.5728,-2.2206],[133.5778,-2.2142],[133.5788,-2.2059],[133.5771,-2.2017],[133.58,-2.1935],[133.5856,-2.1847],[133.5954,-2.1762],[133.6019,-2.1773],[133.6055,-2.1819],[133.5963,-2.1841],[133.5887,-2.1921],[133.5868,-2.2112],[133.5915,-2.2223],[133.5985,-2.2268],[133.6055,-2.2234],[133.6097,-2.2179],[133.615,-2.2161],[133.6233,-2.2168],[133.6285,-2.2203],[133.6356,-2.2325],[133.6419,-2.2314],[133.6484,-2.2275],[133.6519,-2.2236],[133.6574,-2.2217],[133.6646,-2.2111],[133.6698,-2.2101],[133.674,-2.2027],[133.6836,-2.197],[133.692,-2.1972],[133.6996,-2.199],[133.7067,-2.1993],[133.7124,-2.1944],[133.7181,-2.1791],[133.7245,-2.1702],[133.7328,-2.1649],[133.7292,-2.1613],[133.7312,-2.1562],[133.7355,-2.1602],[133.744,-2.165],[133.7581,-2.1691],[133.7644,-2.17],[133.7737,-2.1677],[133.7855,-2.1601],[133.7917,-2.1515],[133.7978,-2.1506],[133.813,-2.1449],[133.8275,-2.1405],[133.8344,-2.1358],[133.8376,-2.1317],[133.8415,-2.1187],[133.8451,-2.1114],[133.8488,-2.1076],[133.8514,-2.1014],[133.8579,-2.0972],[133.8635,-2.0955],[133.8739,-2.0989],[133.8883,-2.1092],[133.9002,-2.1055],[133.9069,-2.1013],[133.9198,-2.1035],[133.9333,-2.09],[133.9395,-2.0924],[133.9423,-2.1031],[133.9422,-2.1071],[133.9365,-2.1158],[133.9263,-2.1249],[133.9156,-2.136],[133.9145,-2.1434],[133.9003,-2.1435],[133.8935,-2.1447],[133.8889,-2.1484],[133.8862,-2.1567],[133.8841,-2.1695],[133.8802,-2.1719],[133.8764,-2.1846],[133.8664,-2.2002],[133.8387,-2.2114],[133.8173,-2.2185],[133.8135,-2.2233],[133.8042,-2.2255],[133.785,-2.2336],[133.7795,-2.2398],[133.7831,-2.2532],[133.7901,-2.265],[133.7937,-2.2655],[133.8036,-2.2747],[133.8077,-2.2765],[133.8141,-2.2832],[133.8291,-2.2919],[133.8371,-2.2928],[133.8556,-2.2876],[133.8615,-2.2804],[133.8654,-2.2812],[133.8712,-2.2783],[133.8808,-2.2857],[133.8821,-2.2912],[133.8875,-2.2964],[133.8946,-2.2981],[133.9053,-2.2969],[133.9168,-2.2987],[133.9292,-2.3024],[133.9367,-2.2991],[133.9399,-2.2895],[133.9411,-2.2778],[133.9367,-2.2746],[133.9379,-2.2712],[133.9455,-2.2639],[133.9487,-2.2505],[133.9483,-2.2407],[133.945,-2.2355],[133.9433,-2.2161],[133.9472,-2.2099],[133.9474,-2.1878],[133.9506,-2.1833],[133.9513,-2.1758],[133.9547,-2.1739],[133.9557,-2.1831],[133.9523,-2.1969],[133.9536,-2.1993],[133.9524,-2.2068],[133.9541,-2.22],[133.9616,-2.2296],[133.9646,-2.2379],[133.9605,-2.2443],[133.9613,-2.2516],[133.9593,-2.2554],[133.9568,-2.2667],[133.9547,-2.2806],[133.9485,-2.2983],[133.9431,-2.3051],[133.9372,-2.3071],[133.9205,-2.3081],[133.8979,-2.3108],[133.8785,-2.3112],[133.8664,-2.317],[133.8629,-2.321],[133.8607,-2.3331],[133.8616,-2.3356],[133.8702,-2.3462],[133.8741,-2.3537],[133.8746,-2.3612],[133.8802,-2.3671],[133.8898,-2.3678],[133.89,-2.3728],[133.899,-2.3778],[133.9059,-2.379],[133.9119,-2.3825],[133.9246,-2.384],[133.9336,-2.3861],[133.9404,-2.3848],[133.9546,-2.3857],[133.9677,-2.3834],[133.9912,-2.3855],[133.9974,-2.3882],[133.997,-2.3942],[133.9833,-2.3914],[133.9752,-2.3922],[133.9664,-2.397],[133.9586,-2.3976],[133.9523,-2.3949],[133.9408,-2.3972],[133.9275,-2.397],[133.9217,-2.3943],[133.9125,-2.3934],[133.903,-2.3911],[133.8913,-2.3919],[133.886,-2.3875],[133.8775,-2.3861],[133.8602,-2.3912],[133.856,-2.3961],[133.8555,-2.3994],[133.8482,-2.4067],[133.8351,-2.4125],[133.8268,-2.4128],[133.8213,-2.416],[133.8078,-2.4174],[133.797,-2.4207],[133.7824,-2.4207],[133.772,-2.4233],[133.7568,-2.422],[133.7518,-2.4262],[133.746,-2.4266],[133.742,-2.432],[133.7408,-2.4414],[133.7417,-2.446],[133.7502,-2.4406],[133.7503,-2.444],[133.7425,-2.4493],[133.7457,-2.4553],[133.7543,-2.4652],[133.756,-2.4709],[133.761,-2.4746],[133.7668,-2.4765],[133.7724,-2.4814],[133.7782,-2.4818],[133.781,-2.4785],[133.785,-2.4826],[133.7906,-2.4806],[133.7923,-2.4771],[133.7999,-2.486],[133.798,-2.4912],[133.8018,-2.4981],[133.8027,-2.5036],[133.8017,-2.5104],[133.7971,-2.5169],[133.7925,-2.517],[133.7848,-2.5147],[133.7709,-2.5143],[133.7514,-2.5097],[133.7412,-2.5041],[133.7302,-2.502],[133.7097,-2.5017],[133.7054,-2.5055],[133.704,-2.5129],[133.7077,-2.5339],[133.7047,-2.5448],[133.7063,-2.5573],[133.7088,-2.5596],[133.7025,-2.5672],[133.6981,-2.5686],[133.6889,-2.5679],[133.6735,-2.5553],[133.6695,-2.5498],[133.6627,-2.547],[133.6566,-2.5381],[133.6529,-2.5357],[133.6445,-2.5344],[133.63,-2.5378],[133.6116,-2.5504],[133.6017,-2.5608],[133.5918,-2.568],[133.5838,-2.5682],[133.58,-2.5661],[133.5732,-2.5528],[133.564,-2.5578],[133.5545,-2.5552],[133.5488,-2.5499],[133.5451,-2.551],[133.5433,-2.5564],[133.5364,-2.5622],[133.5337,-2.5698],[133.5292,-2.5779],[133.5246,-2.5801],[133.5201,-2.5785],[133.5137,-2.5648],[133.5086,-2.5577],[133.5028,-2.5436],[133.4967,-2.538],[133.494,-2.5296],[133.4945,-2.5262],[133.4896,-2.5125],[133.4843,-2.507],[133.4793,-2.5079],[133.4728,-2.5137],[133.4699,-2.5233],[133.4722,-2.5386],[133.4762,-2.5519],[133.4681,-2.558],[133.4592,-2.5598],[133.4463,-2.5543],[133.4359,-2.5473],[133.4372,-2.5445],[133.4493,-2.5528],[133.4562,-2.5554],[133.4596,-2.5526],[133.4585,-2.5428],[133.4602,-2.538],[133.4592,-2.5325],[133.4517,-2.511],[133.4498,-2.5039],[133.4418,-2.5039],[133.431,-2.5067],[133.4274,-2.5173],[133.4229,-2.5214],[133.4168,-2.5321],[133.4109,-2.5362],[133.4096,-2.5393],[133.411,-2.5454],[133.4082,-2.5494],[133.3875,-2.5476],[133.389,-2.5309],[133.3885,-2.5227],[133.3848,-2.5141],[133.3786,-2.5071],[133.3729,-2.504],[133.3601,-2.492],[133.3468,-2.4844],[133.3332,-2.4684],[133.3279,-2.4603],[133.3203,-2.4516],[133.3109,-2.4445],[133.2961,-2.4402],[133.2905,-2.4355],[133.2669,-2.4289],[133.2612,-2.4255],[133.2527,-2.4245],[133.2475,-2.4185],[133.2416,-2.4165],[133.2256,-2.4134],[133.2161,-2.4138],[133.2131,-2.4161],[133.2092,-2.4237],[133.1983,-2.4312],[133.1905,-2.4326],[133.1723,-2.4316],[133.1627,-2.4355],[133.1549,-2.4375],[133.1497,-2.4366],[133.1401,-2.4382],[133.1291,-2.4383],[133.1165,-2.4509],[133.1043,-2.4612],[133.0991,-2.4597],[133.0948,-2.4611],[133.0763,-2.4782],[133.06,-2.4864],[133.0531,-2.4918],[133.047,-2.4989],[133.0401,-2.5134],[133.0506,-2.5213],[133.1449,-2.6017],[133.1958,-2.6442],[133.2836,-2.7127],[133.3692,-2.7782],[133.383,-2.792],[133.4383,-2.8269],[133.4997,-2.8568],[133.5965,-2.9365],[133.6444,-2.9649],[133.6726,-2.9967],[133.6783,-3.0043],[133.713,-3.0136],[133.752,-3.0094],[133.7608,-3.0063],[133.7696,-3.0056],[133.7756,-2.9999],[133.7916,-2.993],[133.8095,-2.9827],[133.8652,-2.9554],[133.9168,-2.9351],[133.9889,-2.9047],[134.0741,-2.8688],[134.1333,-2.84],[134.1726,-2.8523],[134.1735,-2.8468],[134.171,-2.8358],[134.1629,-2.8153],[134.1594,-2.8018],[134.155,-2.7897],[134.1457,-2.7686],[134.143,-2.7593],[134.1423,-2.7516],[134.1337,-2.7301],[134.1322,-2.718],[134.129,-2.7052],[134.122,-2.688],[134.117,-2.6777],[134.1127,-2.6719],[134.105,-2.6565],[134.103,-2.6505],[134.0965,-2.6376],[134.0917,-2.617],[134.0837,-2.6033],[134.0806,-2.5947],[134.0792,-2.5859],[134.076,-2.5745],[134.0747,-2.5663],[134.075,-2.5561],[134.0729,-2.5336],[134.0713,-2.5094],[134.0716,-2.4802],[134.0733,-2.4666],[134.0722,-2.455],[134.0724,-2.4446],[134.0741,-2.4274],[134.0706,-2.4132],[134.0688,-2.3979],[134.0645,-2.3728],[134.0622,-2.343],[134.0588,-2.3284],[134.057,-2.3158],[134.0566,-2.3056],[134.0547,-2.2918],[134.0539,-2.2781],[134.0518,-2.2644],[134.0512,-2.246],[134.052,-2.2392],[134.0475,-2.1969],[134.0451,-2.1901],[134.0439,-2.1708],[134.042,-2.1584],[134.0393,-2.1323],[134.0358,-2.1046],[134.029,-2.0731],[134.0263,-2.0493],[134.0239,-2.0393],[134.0246,-2.0327],[134.0242,-2.0216],[134.0202,-2.0046],[134.0188,-2.0049],[134.0081,-2.0075],[133.9697,-2.0134],[133.9549,-2.0154],[133.9209,-2.0177],[133.8924,-2.0221],[133.8822,-2.0226],[133.8748,-2.0034],[133.8717,-1.9919],[133.8714,-1.9836],[133.8736,-1.9673],[133.8718,-1.9535],[133.8681,-1.9414],[133.8587,-1.9187],[133.8542,-1.9069],[133.8458,-1.8793],[133.8417,-1.8697],[133.839,-1.8532],[133.8373,-1.8296],[133.8386,-1.8189],[133.8359,-1.807],[133.836,-1.7944],[133.8393,-1.7783]]}},{"type":"Feature","properties":{"mhid":"1332:483","alt_name":"KABUPATEN MANOKWARI","latitude":-0.9,"longitude":133.75,"sample_value":408},"geometry":{"type":"LineString","coordinates":[[134.0033,-1.7715],[133.9766,-1.7757],[133.9729,-1.7745],[133.9572,-1.7775],[133.9449,-1.7777],[133.9142,-1.7805],[133.8986,-1.7811],[133.8805,-1.7793],[133.8615,-1.7785],[133.8516,-1.7791],[133.8393,-1.7783],[133.836,-1.7944],[133.8359,-1.807],[133.8386,-1.8189],[133.8373,-1.8296],[133.839,-1.8532],[133.8417,-1.8697],[133.8458,-1.8793],[133.8542,-1.9069],[133.8587,-1.9187],[133.8681,-1.9414],[133.8718,-1.9535],[133.8736,-1.9673],[133.8714,-1.9836],[133.8717,-1.9919],[133.8748,-2.0034],[133.8822,-2.0226],[133.8924,-2.0221],[133.9209,-2.0177],[133.9549,-2.0154],[133.9697,-2.0134],[134.0081,-2.0075],[134.0188,-2.0049],[134.0046,-1.91],[134.0031,-1.8861],[134.003,-1.8621],[134.0058,-1.862],[134.0058,-1.825],[134.0051,-1.825],[134.0033,-1.7715]]}},{"type":"Feature","properties":{"mhid":"1332:483","alt_name":"KABUPATEN MANOKWARI","latitude":-0.9,"longitude":133.75,"sample_value":408},"geometry":{"type":"LineString","coordinates":[[134.1937,-1.1999],[134.1876,-1.2056],[134.1857,-1.2112],[134.1779,-1.2175],[134.1832,-1.2225],[134.1754,-1.2333],[134.1851,-1.2375],[134.1905,-1.23],[134.2035,-1.2241],[134.2034,-1.2128],[134.2006,-1.207],[134.1937,-1.1999]]}},{"type":"Feature","properties":{"mhid":"1332:483","alt_name":"KABUPATEN MANOKWARI","latitude":-0.9,"longitude":133.75,"sample_value":408},"geometry":{"type":"LineString","coordinates":[[134.0988,-0.8885],[134.0917,-0.8916],[134.0911,-0.8993],[134.0958,-0.9019],[134.1037,-0.917],[134.1051,-0.9223],[134.1093,-0.9217],[134.1124,-0.9161],[134.1107,-0.9115],[134.1067,-0.9089],[134.1068,-0.9013],[134.1036,-0.8905],[134.0988,-0.8885]]}},{"type":"Feature","properties":{"mhid":"1332:483","alt_name":"KABUPATEN MANOKWARI","latitude":-0.9,"longitude":133.75,"sample_value":408},"geometry":{"type":"LineString","coordinates":[[134.1859,-1.1919],[134.1765,-1.1887],[134.1695,-1.183],[134.1598,-1.1788],[134.1451,-1.1645],[134.1371,-1.1552],[134.133,-1.1484],[134.1286,-1.1473],[134.1057,-1.1264],[134.1039,-1.1234],[134.1051,-1.1153],[134.1046,-1.1078],[134.0991,-1.0977],[134.0943,-1.0929],[134.0872,-1.0882],[134.082,-1.0824],[134.0719,-1.0642],[134.0726,-1.0532],[134.0746,-1.0481],[134.075,-1.0389],[134.0734,-1.0271],[134.0709,-1.0211],[134.0652,-1.0144],[134.0599,-1.0122],[134.0499,-1.0043],[134.0459,-1.0027],[134.0388,-0.9931],[134.0367,-0.9852],[134.0251,-0.9788],[134.0149,-0.9659],[134.0103,-0.9572],[134.0102,-0.9475],[134.012,-0.9419],[134.0208,-0.9291],[134.0229,-0.9281],[134.0389,-0.9282],[134.043,-0.9268],[134.0455,-0.9187],[134.0424,-0.9119],[134.0399,-0.9108],[134.0403,-0.9041],[134.0446,-0.9017],[134.0496,-0.9022],[134.0541,-0.8965],[134.0549,-0.8911],[134.0503,-0.8809],[134.0501,-0.8693],[134.0547,-0.8675],[134.0644,-0.8763],[134.0697,-0.8755],[134.0693,-0.8684],[134.0709,-0.8656],[134.0758,-0.8693],[134.0788,-0.8737],[134.0893,-0.8788],[134.0992,-0.8781],[134.1006,-0.8736],[134.1053,-0.8731],[134.1088,-0.87],[134.1136,-0.8716],[134.1164,-0.8788],[134.1247,-0.8799],[134.1289,-0.877],[134.1357,-0.8694],[134.1367,-0.8639],[134.1338,-0.8618],[134.1305,-0.8647],[134.1264,-0.8622],[134.1258,-0.8559],[134.12,-0.8532],[134.1054,-0.8419],[134.0956,-0.8333],[134.0851,-0.8222],[134.0792,-0.8142],[134.0595,-0.8094],[134.0413,-0.8032],[134.0322,-0.797],[134.0277,-0.7897],[134.0146,-0.7817],[134.0039,-0.7726],[133.9896,-0.7555],[133.9833,-0.7448],[133.9827,-0.7384],[133.9857,-0.732],[133.9776,-0.7259],[133.9734,-0.7198],[133.969,-0.7232],[133.965,-0.7232],[133.9575,-0.7172],[133.9502,-0.7138],[133.9412,-0.7166],[133.936,-0.7293],[133.9337,-0.7326],[133.9285,-0.7328],[133.9222,-0.7215],[133.9143,-0.7202],[133.9082,-0.7224],[133.9041,-0.7274],[133.8961,-0.725],[133.8924,-0.7184],[133.8815,-0.7141],[133.8767,-0.7138],[133.871,-0.7157],[133.8651,-0.7199],[133.8666,-0.7249],[133.8577,-0.7311],[133.8533,-0.7306],[133.8495,-0.7328],[133.8384,-0.7329],[133.8326,-0.7351],[133.818,-0.747],[133.8073,-0.7461],[133.7987,-0.7378],[133.7974,-0.7272],[133.7953,-0.7249],[133.789,-0.7251],[133.7826,-0.7271],[133.7776,-0.7224],[133.7774,-0.7294],[133.7729,-0.7302],[133.7591,-0.7273],[133.7615,-0.7223],[133.7544,-0.7178],[133.7496,-0.7185],[133.744,-0.7216],[133.74,-0.7183],[133.734,-0.7196],[133.731,-0.7234],[133.7366,-0.7261],[133.7383,-0.7292],[133.7356,-0.7371],[133.7278,-0.7469],[133.7196,-0.7507],[133.7168,-0.7492],[133.6815,-0.7414],[133.6608,-0.7378],[133.6522,-0.7373],[133.641,-0.7351],[133.6339,-0.7354],[133.6281,-0.7376],[133.6055,-0.7346],[133.5829,-0.7267],[133.5777,-0.7207],[133.5654,-0.7216],[133.5647,-0.7239],[133.569,-0.7298],[133.5683,-0.7378],[133.5503,-0.7456],[133.5379,-0.7474],[133.5285,-0.7478],[133.5086,-0.7443],[133.5066,-0.7477],[133.5007,-0.7543],[133.4957,-0.7637],[133.4837,-0.7736],[133.4732,-0.8103],[133.4714,-0.8406],[133.4697,-0.8608],[133.4701,-0.8838],[133.4798,-0.8841],[133.4881,-0.8874],[133.4898,-0.8881],[133.5128,-0.8901],[133.5498,-0.8951],[133.6158,-0.9051],[133.6268,-0.9051],[133.6488,-0.9061],[133.6827,-0.9161],[133.7017,-0.9241],[133.7177,-0.9281],[133.7427,-0.9291],[133.7687,-0.9361],[133.7927,-0.9401],[133.8247,-0.9471],[133.8277,-0.9561],[133.8297,-0.9851],[133.8297,-0.9914],[133.8349,-0.9914],[133.8525,-0.9881],[133.8665,-0.9877],[133.885,-0.984],[133.8932,-0.984],[133.9084,-0.9865],[133.9191,-0.9865],[133.9232,-0.9889],[133.9289,-0.9951],[133.9408,-1.0197],[133.9507,-1.0341],[133.9581,-1.0374],[133.9848,-1.0386],[134.0053,-1.0386],[134.0078,-1.0485],[134.009,-1.062],[134.0098,-1.0834],[134.0115,-1.0974],[134.0144,-1.1097],[134.0147,-1.1256],[134.0182,-1.1341],[134.0714,-1.1814],[134.0505,-1.2015],[134.0502,-1.2086],[134.0526,-1.2183],[134.0575,-1.2307],[134.0601,-1.2478],[134.0666,-1.2599],[134.0788,-1.2736],[134.087,-1.2883],[134.0902,-1.2845],[134.0971,-1.2805],[134.1102,-1.2661],[134.121,-1.253],[134.1256,-1.2504],[134.1413,-1.236],[134.1485,-1.2262],[134.1587,-1.2163],[134.1685,-1.2055],[134.1731,-1.2016],[134.1829,-1.1957],[134.1859,-1.1919]]}},{"type":"Feature","properties":{"mhid":"1332:484","alt_name":"KABUPATEN SORONG SELATAN","latitude":-1.50495,"longitude":132.28638,"sample_value":999},"geometry":{"type":"LineString","coordinates":[[131.9379,-1.0612],[131.9121,-1.0575],[131.8877,-1.0523],[131.8758,-1.052],[131.884,-1.0749],[131.8011,-1.1358],[131.827,-1.1657],[131.8426,-1.1718],[131.8501,-1.1809],[131.8557,-1.1897],[131.8723,-1.2235],[131.8964,-1.2632],[131.8909,-1.2865],[131.8896,-1.3099],[131.8886,-1.3177],[131.8852,-1.3228],[131.8737,-1.3341],[131.8493,-1.3497],[131.8463,-1.3522],[131.838,-1.3442],[131.8308,-1.3482],[131.8308,-1.3532],[131.836,-1.3627],[131.8355,-1.3657],[131.8302,-1.374],[131.8288,-1.3859],[131.8245,-1.3923],[131.8248,-1.3981],[131.8275,-1.4101],[131.8323,-1.4163],[131.8373,-1.4206],[131.8415,-1.4271],[131.8446,-1.4367],[131.8573,-1.4385],[131.8624,-1.4382],[131.8731,-1.4399],[131.8596,-1.4881],[131.8128,-1.5111],[131.7664,-1.4992],[131.7474,-1.4807],[131.739,-1.453],[131.7645,-1.4157],[131.7577,-1.4089],[131.7457,-1.4163],[131.7344,-1.4361],[131.7297,-1.4595],[131.724,-1.4806],[131.7138,-1.4957],[131.711,-1.4981],[131.6916,-1.5248],[131.6744,-1.5422],[131.6756,-1.5465],[131.6795,-1.5476],[131.6975,-1.5551],[131.6983,-1.5586],[131.7063,-1.5698],[131.7154,-1.5793],[131.728,-1.5851],[131.7469,-1.5807],[131.7601,-1.5753],[131.7672,-1.5742],[131.7719,-1.5762],[131.7793,-1.5843],[131.7858,-1.595],[131.7875,-1.6015],[131.7914,-1.6074],[131.8022,-1.6142],[131.8115,-1.6146],[131.82,-1.6099],[131.8271,-1.6009],[131.8321,-1.5984],[131.8363,-1.5931],[131.8371,-1.5885],[131.8416,-1.5874],[131.8456,-1.5838],[131.8517,-1.5833],[131.8549,-1.5807],[131.8629,-1.5799],[131.8728,-1.5836],[131.8793,-1.5845],[131.8919,-1.58],[131.9061,-1.5688],[131.916,-1.5632],[131.9247,-1.5573],[131.9362,-1.555],[131.9412,-1.5554],[131.9489,-1.5582],[131.9574,-1.5596],[131.9543,-1.565],[131.9467,-1.5681],[131.9362,-1.5746],[131.9241,-1.5791],[131.9047,-1.5951],[131.895,-1.6112],[131.8912,-1.6192],[131.8844,-1.637],[131.8851,-1.6502],[131.8883,-1.656],[131.8894,-1.6616],[131.8931,-1.6677],[131.8988,-1.6702],[131.9014,-1.6736],[131.9004,-1.6815],[131.9024,-1.6952],[131.9102,-1.7191],[131.9139,-1.7222],[131.9188,-1.7222],[131.9318,-1.7151],[131.9438,-1.7134],[131.9489,-1.7143],[131.9533,-1.7064],[131.9662,-1.7083],[131.9806,-1.7039],[131.9855,-1.7008],[131.9898,-1.6938],[131.9897,-1.6849],[131.993,-1.6783],[132.0004,-1.6704],[132.0044,-1.6708],[132.0062,-1.6791],[132.0064,-1.6898],[132.0102,-1.6989],[132.0164,-1.6983],[132.0266,-1.7026],[132.0364,-1.7114],[132.0412,-1.7171],[132.0352,-1.7217],[132.0304,-1.7223],[132.0257,-1.7196],[132.0161,-1.7334],[132.0139,-1.7409],[132.0068,-1.7494],[132.0004,-1.7506],[132.0001,-1.7445],[131.9951,-1.7441],[131.9907,-1.7506],[131.9816,-1.7578],[131.9722,-1.7688],[131.9623,-1.7742],[131.958,-1.7789],[131.96,-1.7899],[131.9556,-1.7903],[131.9457,-1.7945],[131.934,-1.8014],[131.927,-1.8086],[131.9243,-1.8139],[131.9469,-1.8433],[131.9501,-1.8447],[131.9538,-1.8411],[131.9563,-1.8307],[131.9625,-1.8353],[131.9608,-1.84],[131.9522,-1.8482],[131.9373,-1.8568],[131.9333,-1.8604],[131.9264,-1.8636],[131.9267,-1.8713],[131.9303,-1.8749],[131.9323,-1.8842],[131.938,-1.8923],[131.9418,-1.8959],[131.9562,-1.9184],[131.9596,-1.9222],[131.9684,-1.9251],[131.9839,-1.9222],[131.9913,-1.9276],[131.9849,-1.9383],[131.9857,-1.948],[131.9835,-1.9536],[131.9765,-1.9602],[131.9718,-1.9603],[131.9689,-1.964],[131.971,-1.9684],[131.9791,-1.9769],[131.9924,-1.9841],[131.997,-1.9858],[132.0026,-1.9903],[132.0108,-1.9882],[132.0224,-2.0002],[132.0252,-2.0096],[132.0339,-2.0184],[132.0417,-2.0233],[132.0614,-2.0156],[132.0702,-2.0162],[132.0771,-2.0123],[132.0832,-2.0169],[132.0901,-2.0175],[132.096,-2.0198],[132.0934,-2.0268],[132.0893,-2.0259],[132.0816,-2.0311],[132.0821,-2.0387],[132.0774,-2.0385],[132.0665,-2.0465],[132.0569,-2.0524],[132.0506,-2.0492],[132.0452,-2.054],[132.0422,-2.0542],[132.0386,-2.0697],[132.0419,-2.0743],[132.0448,-2.0736],[132.0428,-2.0671],[132.0486,-2.0654],[132.0473,-2.0729],[132.0523,-2.0786],[132.0605,-2.0841],[132.0677,-2.0865],[132.0661,-2.0923],[132.0869,-2.1056],[132.0934,-2.113],[132.1016,-2.1161],[132.1102,-2.1232],[132.1161,-2.1261],[132.1231,-2.1329],[132.134,-2.135],[132.1378,-2.1387],[132.1397,-2.1434],[132.1443,-2.1472],[132.1542,-2.1481],[132.1614,-2.147],[132.1815,-2.1468],[132.1874,-2.153],[132.1904,-2.1584],[132.199,-2.1645],[132.2205,-2.1751],[132.2529,-2.204],[132.2613,-2.2151],[132.2714,-2.2318],[132.2881,-2.2557],[132.3038,-2.2729],[132.316,-2.2801],[132.3269,-2.2728],[132.3443,-2.2715],[132.3494,-2.2696],[132.3674,-2.2691],[132.3783,-2.2648],[132.3945,-2.2545],[132.4045,-2.2511],[132.4141,-2.2434],[132.4282,-2.2357],[132.4393,-2.2323],[132.4486,-2.228],[132.4539,-2.2233],[132.4598,-2.2229],[132.4662,-2.2185],[132.4848,-2.209],[132.4966,-2.204],[132.5091,-2.2005],[132.5124,-2.1976],[132.5184,-2.1975],[132.5416,-2.1899],[132.5055,-2.1238],[132.4844,-2.0579],[132.473,-1.9744],[132.4713,-1.9126],[132.4745,-1.8848],[132.475,-1.8577],[132.4872,-1.8051],[132.4967,-1.7814],[132.4931,-1.7647],[132.4635,-1.7382],[132.4385,-1.7039],[132.4339,-1.6697],[132.4136,-1.6276],[132.3934,-1.6105],[132.3701,-1.5958],[132.3725,-1.587],[132.3337,-1.5557],[132.3218,-1.5427],[132.3055,-1.5476],[132.3069,-1.535],[132.3068,-1.5289],[132.3095,-1.5207],[132.3107,-1.5063],[132.3061,-1.4925],[132.3066,-1.4878],[132.2891,-1.469],[132.2746,-1.463],[132.2662,-1.4522],[132.2446,-1.4377],[132.2367,-1.4341],[132.2173,-1.4407],[132.2095,-1.4412],[132.2022,-1.4443],[132.1847,-1.4366],[132.1794,-1.4368],[132.1701,-1.4349],[132.1688,-1.4324],[132.1309,-1.4307],[132.1015,-1.4283],[132.1057,-1.4094],[132.1212,-1.3618],[132.0975,-1.3489],[132.0781,-1.3454],[132.035,-1.3188],[132.0172,-1.3048],[132.0134,-1.3034],[132.0126,-1.2867],[132.0208,-1.2785],[132.0217,-1.2598],[132.0176,-1.2483],[132.013,-1.2418],[132.0182,-1.2402],[132.0382,-1.2389],[132.0725,-1.2256],[132.0696,-1.1912],[132.07,-1.17],[132.0543,-1.1356],[132.0254,-1.0677],[132.0156,-1.0664],[131.9888,-1.0646],[131.9791,-1.0633],[131.9549,-1.0626],[131.9491,-1.0611],[131.9379,-1.0612]]}},{"type":"Feature","properties":{"mhid":"1332:485","alt_name":"KABUPATEN SORONG","latitude":-1.16667,"longitude":131.5,"sample_value":217},"geometry":{"type":"LineString","coordinates":[[131.3,-1.5333],[131.2893,-1.5327],[131.2783,-1.5343],[131.2703,-1.542],[131.275,-1.5449],[131.2849,-1.5448],[131.288,-1.5462],[131.2966,-1.5454],[131.2998,-1.5473],[131.3096,-1.5471],[131.3127,-1.5456],[131.3099,-1.5402],[131.3034,-1.5368],[131.3,-1.5333]]}},{"type":"Feature","properties":{"mhid":"1332:485","alt_name":"KABUPATEN SORONG","latitude":-1.16667,"longitude":131.5,"sample_value":217},"geometry":{"type":"LineString","coordinates":[[131.018,-1.3111],[131.023,-1.3038],[131.0246,-1.2982],[131.0195,-1.2957],[131.0146,-1.296],[131.0108,-1.2997],[131.0157,-1.3097],[131.018,-1.3111]]}},{"type":"Feature","properties":{"mhid":"1332:485","alt_name":"KABUPATEN SORONG","latitude":-1.16667,"longitude":131.5,"sample_value":217},"geometry":{"type":"LineString","coordinates":[[131.0237,-1.1955],[131.0147,-1.1882],[131.007,-1.1839],[130.9986,-1.1812],[130.9932,-1.1812],[130.9794,-1.1835],[130.9626,-1.1751],[130.9592,-1.1744],[130.9505,-1.1775],[130.9461,-1.1775],[130.9404,-1.1812],[130.9317,-1.1825],[130.9219,-1.1926],[130.9181,-1.2014],[130.913,-1.2009],[130.9027,-1.1974],[130.8918,-1.1971],[130.8853,-1.2012],[130.8734,-1.1983],[130.868,-1.1987],[130.8613,-1.2027],[130.8532,-1.2027],[130.8478,-1.2059],[130.8375,-1.2034],[130.8355,-1.1975],[130.831,-1.1906],[130.8219,-1.1868],[130.8156,-1.1791],[130.8084,-1.1774],[130.7938,-1.1706],[130.7801,-1.1661],[130.772,-1.1679],[130.7671,-1.1667],[130.7569,-1.1671],[130.7427,-1.1724],[130.7399,-1.1747],[130.734,-1.1844],[130.7342,-1.187],[130.7342,-1.1885],[130.745,-1.191],[130.7484,-1.1965],[130.7471,-1.2068],[130.7442,-1.2126],[130.7427,-1.2197],[130.7437,-1.225],[130.7499,-1.2436],[130.7606,-1.251],[130.7663,-1.2594],[130.7698,-1.2597],[130.7783,-1.2547],[130.7836,-1.2532],[130.7889,-1.2549],[130.7925,-1.2592],[130.7994,-1.2596],[130.8104,-1.2677],[130.8133,-1.2726],[130.8234,-1.2773],[130.8245,-1.2807],[130.8319,-1.289],[130.8421,-1.2955],[130.8623,-1.3037],[130.8736,-1.3114],[130.8829,-1.3138],[130.8881,-1.3176],[130.8987,-1.3228],[130.9099,-1.3264],[130.9239,-1.3289],[130.9305,-1.3316],[130.936,-1.3422],[130.947,-1.3535],[130.9597,-1.3607],[130.9677,-1.3631],[130.9794,-1.3553],[130.9868,-1.3422],[130.9892,-1.3303],[130.9952,-1.3183],[130.9999,-1.3126],[131.0016,-1.3038],[131.0066,-1.2937],[131.0137,-1.2853],[131.0164,-1.2696],[131.0184,-1.2645],[131.0345,-1.2628],[131.0396,-1.2571],[131.0433,-1.2433],[131.0426,-1.2356],[131.0399,-1.2252],[131.0345,-1.2171],[131.0305,-1.208],[131.0298,-1.2023],[131.0237,-1.1955]]}},{"type":"Feature","properties":{"mhid":"1332:485","alt_name":"KABUPATEN SORONG","latitude":-1.16667,"longitude":131.5,"sample_value":217},"geometry":{"type":"LineString","coordinates":[[131.2355,-1.0556],[131.2276,-1.056],[131.2237,-1.0625],[131.225,-1.0666],[131.2185,-1.0765],[131.2199,-1.0815],[131.2268,-1.0826],[131.2286,-1.0762],[131.234,-1.0643],[131.2355,-1.0556]]}},{"type":"Feature","properties":{"mhid":"1332:485","alt_name":"KABUPATEN SORONG","latitude":-1.16667,"longitude":131.5,"sample_value":217},"geometry":{"type":"LineString","coordinates":[[131.2442,-1.0145],[131.239,-1.0136],[131.2358,-1.0155],[131.2298,-1.0145],[131.2286,-1.0218],[131.2351,-1.023],[131.2444,-1.0204],[131.2442,-1.0145]]}},{"type":"Feature","properties":{"mhid":"1332:485","alt_name":"KABUPATEN SORONG","latitude":-1.16667,"longitude":131.5,"sample_value":217},"geometry":{"type":"LineString","coordinates":[[131.9379,-1.0612],[131.9419,-1.0521],[131.9719,-1.0505],[132.125,-0.9911],[132.1533,-0.9356],[132.1467,-0.9289],[132.1373,-0.9243],[132.1437,-0.9001],[132.1513,-0.8956],[132.156,-0.8909],[132.1794,-0.8795],[132.1109,-0.8315],[132.0593,-0.7775],[132.0336,-0.7807],[132.0283,-0.7557],[132.0294,-0.7413],[132.0337,-0.7237],[132.0501,-0.7189],[132.0563,-0.7141],[132.1027,-0.683],[132.124,-0.6752],[132.1359,-0.6549],[132.0985,-0.6432],[132.0415,-0.5826],[132.0207,-0.5503],[132.0214,-0.55],[131.9835,-0.5649],[131.97,-0.5789],[131.9491,-0.6018],[131.9347,-0.6089],[131.9234,-0.6192],[131.9136,-0.6249],[131.9101,-0.6345],[131.9112,-0.6467],[131.9009,-0.6575],[131.8984,-0.6612],[131.8931,-0.6625],[131.8911,-0.6677],[131.8847,-0.6779],[131.8775,-0.6795],[131.8691,-0.6841],[131.8623,-0.6858],[131.8552,-0.6901],[131.8509,-0.6947],[131.8391,-0.7036],[131.8273,-0.7111],[131.8176,-0.7154],[131.802,-0.7149],[131.7771,-0.7204],[131.7467,-0.723],[131.74,-0.7265],[131.7312,-0.7284],[131.7097,-0.7313],[131.6943,-0.739],[131.6867,-0.7415],[131.6648,-0.7433],[131.6479,-0.7411],[131.6245,-0.7398],[131.6155,-0.7411],[131.6024,-0.7442],[131.5887,-0.7497],[131.5837,-0.7485],[131.5794,-0.751],[131.575,-0.7595],[131.564,-0.7655],[131.5469,-0.7709],[131.5374,-0.7685],[131.5264,-0.7719],[131.517,-0.7687],[131.5247,-0.7637],[131.5325,-0.761],[131.5375,-0.7571],[131.5419,-0.7505],[131.5402,-0.7421],[131.5369,-0.7372],[131.533,-0.7355],[131.5219,-0.7355],[131.512,-0.7388],[131.4987,-0.7394],[131.4926,-0.7421],[131.4779,-0.7517],[131.4679,-0.7556],[131.4518,-0.7557],[131.4433,-0.7609],[131.4288,-0.7655],[131.4126,-0.7652],[131.4095,-0.7776],[131.4074,-0.7798],[131.3998,-0.7823],[131.4014,-0.795],[131.3973,-0.8015],[131.3976,-0.808],[131.4046,-0.8094],[131.4063,-0.8148],[131.4025,-0.8233],[131.3916,-0.8248],[131.3921,-0.8314],[131.3947,-0.8383],[131.4017,-0.8424],[131.4052,-0.8504],[131.3968,-0.8565],[131.403,-0.8612],[131.4076,-0.8597],[131.4149,-0.8649],[131.4191,-0.8762],[131.4186,-0.8873],[131.4222,-0.8926],[131.4216,-0.9002],[131.4246,-0.9052],[131.4236,-0.9083],[131.4296,-0.913],[131.4313,-0.9214],[131.429,-0.928],[131.4336,-0.9374],[131.4332,-0.9438],[131.4268,-0.9475],[131.4246,-0.9461],[131.4175,-0.9513],[131.4102,-0.955],[131.4049,-0.9555],[131.3938,-0.9529],[131.3673,-0.9523],[131.3616,-0.9507],[131.3553,-0.952],[131.3463,-0.9507],[131.3407,-0.9467],[131.3317,-0.9476],[131.3268,-0.945],[131.3177,-0.9443],[131.3155,-0.9458],[131.3107,-0.9418],[131.3022,-0.9389],[131.2968,-0.9321],[131.2846,-0.934],[131.2804,-0.9316],[131.27,-0.9338],[131.2741,-0.9428],[131.2747,-0.948],[131.2707,-0.9515],[131.267,-0.9686],[131.2767,-0.9776],[131.2732,-0.9811],[131.2649,-0.9804],[131.2663,-0.9874],[131.2727,-0.9873],[131.2767,-0.9935],[131.2749,-0.9987],[131.2681,-0.9994],[131.2582,-1.0029],[131.2536,-1.0142],[131.2413,-1.0387],[131.2414,-1.0561],[131.2366,-1.0664],[131.2299,-1.0752],[131.2289,-1.0846],[131.2352,-1.0887],[131.2322,-1.1017],[131.2213,-1.1161],[131.2192,-1.124],[131.2133,-1.1327],[131.2115,-1.1425],[131.2144,-1.1509],[131.2044,-1.161],[131.1994,-1.175],[131.1737,-1.2295],[131.1466,-1.2373],[131.1416,-1.2432],[131.1365,-1.2457],[131.1292,-1.246],[131.1255,-1.2483],[131.1094,-1.2488],[131.1058,-1.2474],[131.0947,-1.2471],[131.0835,-1.2401],[131.077,-1.2446],[131.0679,-1.2488],[131.0629,-1.2531],[131.055,-1.2562],[131.0457,-1.2655],[131.038,-1.2821],[131.0369,-1.2875],[131.031,-1.2923],[131.0273,-1.2996],[131.0296,-1.3146],[131.0176,-1.3264],[131.0114,-1.3303],[131.0077,-1.3533],[131.0044,-1.3626],[131.0019,-1.3645],[130.9982,-1.3719],[130.9985,-1.3751],[130.9955,-1.3862],[130.9914,-1.39],[130.9823,-1.3915],[130.983,-1.3946],[130.97,-1.3977],[130.9641,-1.4013],[130.9635,-1.4102],[130.9552,-1.4139],[130.951,-1.4233],[130.9348,-1.429],[130.9337,-1.44],[130.94,-1.4468],[130.9484,-1.4525],[130.9547,-1.4525],[130.9735,-1.4546],[130.9782,-1.4583],[130.9933,-1.4646],[130.997,-1.4635],[131.0074,-1.4635],[131.0215,-1.4614],[131.0414,-1.4599],[131.0618,-1.4557],[131.0707,-1.4557],[131.0764,-1.4588],[131.0837,-1.4572],[131.0858,-1.4541],[131.0931,-1.4489],[131.1046,-1.4552],[131.114,-1.4588],[131.1198,-1.4646],[131.1329,-1.4687],[131.1491,-1.4693],[131.1637,-1.4687],[131.1747,-1.4816],[131.1878,-1.4909],[131.2004,-1.5153],[131.198,-1.5286],[131.2114,-1.5365],[131.2373,-1.5278],[131.2489,-1.5146],[131.2644,-1.5118],[131.2926,-1.5035],[131.3047,-1.4969],[131.3158,-1.4919],[131.3274,-1.4786],[131.3368,-1.4626],[131.339,-1.4543],[131.3374,-1.4526],[131.3346,-1.4432],[131.3128,-1.4119],[131.3186,-1.4134],[131.3252,-1.41],[131.3285,-1.3929],[131.3339,-1.391],[131.3422,-1.3841],[131.3462,-1.3768],[131.3457,-1.3691],[131.3506,-1.3642],[131.36,-1.3658],[131.3643,-1.3689],[131.3645,-1.3861],[131.3691,-1.4024],[131.372,-1.4087],[131.3778,-1.4139],[131.3857,-1.4099],[131.3917,-1.4126],[131.3928,-1.4225],[131.402,-1.4316],[131.4118,-1.432],[131.4198,-1.4293],[131.4247,-1.421],[131.4274,-1.4278],[131.4304,-1.4301],[131.4217,-1.435],[131.4088,-1.4392],[131.4001,-1.4453],[131.394,-1.4464],[131.3852,-1.4506],[131.3811,-1.451],[131.3796,-1.4593],[131.3852,-1.4669],[131.4008,-1.4809],[131.4149,-1.4889],[131.4266,-1.4946],[131.4342,-1.5037],[131.4395,-1.5087],[131.4437,-1.5151],[131.4487,-1.5151],[131.4665,-1.5094],[131.473,-1.5056],[131.4798,-1.4969],[131.4869,-1.4862],[131.5807,-1.5336],[131.6609,-1.5609],[131.6795,-1.5476],[131.6756,-1.5465],[131.6744,-1.5422],[131.6916,-1.5248],[131.711,-1.4981],[131.7138,-1.4957],[131.724,-1.4806],[131.7297,-1.4595],[131.7344,-1.4361],[131.7457,-1.4163],[131.7577,-1.4089],[131.7645,-1.4157],[131.739,-1.453],[131.7474,-1.4807],[131.7664,-1.4992],[131.8128,-1.5111],[131.8596,-1.4881],[131.8731,-1.4399],[131.8624,-1.4382],[131.8573,-1.4385],[131.8446,-1.4367],[131.8415,-1.4271],[131.8373,-1.4206],[131.8323,-1.4163],[131.8275,-1.4101],[131.8248,-1.3981],[131.8245,-1.3923],[131.8288,-1.3859],[131.8302,-1.374],[131.8355,-1.3657],[131.836,-1.3627],[131.8308,-1.3532],[131.8308,-1.3482],[131.838,-1.3442],[131.8463,-1.3522],[131.8493,-1.3497],[131.8737,-1.3341],[131.8852,-1.3228],[131.8886,-1.3177],[131.8896,-1.3099],[131.8909,-1.2865],[131.8964,-1.2632],[131.8723,-1.2235],[131.8557,-1.1897],[131.8501,-1.1809],[131.8426,-1.1718],[131.827,-1.1657],[131.8011,-1.1358],[131.884,-1.0749],[131.8758,-1.052],[131.8877,-1.0523],[131.9121,-1.0575],[131.9379,-1.0612]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.5001,-2.2285],[130.4916,-2.2292],[130.494,-2.2334],[130.5001,-2.2345],[130.5001,-2.2285]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.2542,-2.2268],[130.2455,-2.2283],[130.2463,-2.2327],[130.2531,-2.2339],[130.2595,-2.2323],[130.2666,-2.2366],[130.2702,-2.2349],[130.27,-2.2291],[130.2618,-2.2269],[130.2542,-2.2268]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.4034,-2.2103],[130.3982,-2.2171],[130.4052,-2.2206],[130.4143,-2.2195],[130.4251,-2.2221],[130.4317,-2.221],[130.439,-2.2231],[130.4426,-2.2186],[130.4459,-2.2254],[130.4504,-2.2272],[130.4675,-2.2278],[130.4716,-2.2303],[130.4752,-2.2245],[130.4647,-2.2234],[130.4536,-2.2186],[130.4392,-2.2157],[130.4286,-2.2119],[130.4186,-2.2114],[130.4109,-2.2136],[130.4034,-2.2103]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.2349,-2.1835],[130.2239,-2.1835],[130.2159,-2.1846],[130.2194,-2.1905],[130.2235,-2.189],[130.2264,-2.1931],[130.2368,-2.1925],[130.2402,-2.1881],[130.2435,-2.1885],[130.2456,-2.1929],[130.239,-2.1958],[130.2364,-2.1991],[130.2294,-2.2003],[130.223,-2.1974],[130.2187,-2.1996],[130.2296,-2.2051],[130.2353,-2.2093],[130.2414,-2.2109],[130.2473,-2.2154],[130.2515,-2.2125],[130.2605,-2.2145],[130.2655,-2.2127],[130.2634,-2.2012],[130.2662,-2.1992],[130.2761,-2.2004],[130.2796,-2.198],[130.2832,-2.2009],[130.2898,-2.2015],[130.2947,-2.1978],[130.2937,-2.1926],[130.2847,-2.1918],[130.2832,-2.1903],[130.2737,-2.1918],[130.265,-2.1879],[130.2575,-2.1885],[130.2401,-2.1859],[130.2349,-2.1835]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.4573,-2.1679],[130.4484,-2.1692],[130.4487,-2.1731],[130.4573,-2.1679]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.4622,-2.1434],[130.4466,-2.1441],[130.4478,-2.1474],[130.454,-2.1462],[130.4575,-2.1483],[130.4641,-2.1476],[130.4622,-2.1434]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.4516,-2.1271],[130.4422,-2.1214],[130.4402,-2.1244],[130.4449,-2.1327],[130.4533,-2.1366],[130.4599,-2.1368],[130.4679,-2.1406],[130.4719,-2.1401],[130.4762,-2.1345],[130.468,-2.1329],[130.4649,-2.1338],[130.4622,-2.1295],[130.4583,-2.1314],[130.4557,-2.1277],[130.4516,-2.1271]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.2741,-2.1233],[130.2734,-2.1202],[130.2675,-2.1214],[130.2614,-2.1257],[130.2632,-2.129],[130.2707,-2.1273],[130.2741,-2.1233]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.3927,-2.1151],[130.383,-2.1153],[130.372,-2.1172],[130.3634,-2.1169],[130.3534,-2.1193],[130.3447,-2.1224],[130.3387,-2.1262],[130.3379,-2.1297],[130.3427,-2.136],[130.3505,-2.1356],[130.3627,-2.1318],[130.3704,-2.1317],[130.3863,-2.1292],[130.3923,-2.1271],[130.3967,-2.1225],[130.3969,-2.1178],[130.3927,-2.1151]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.2971,-2.1371],[130.301,-2.1303],[130.3087,-2.1257],[130.3175,-2.1158],[130.312,-2.1105],[130.3042,-2.1124],[130.2998,-2.1168],[130.2931,-2.1191],[130.2881,-2.1257],[130.2894,-2.1346],[130.2914,-2.1371],[130.2971,-2.1371]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.3962,-2.0791],[130.3942,-2.0836],[130.3954,-2.0875],[130.3997,-2.0881],[130.4062,-2.0809],[130.4005,-2.0788],[130.3962,-2.0791]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.4292,-2.0706],[130.4215,-2.0665],[130.4211,-2.0712],[130.4166,-2.0699],[130.4134,-2.0728],[130.4089,-2.0705],[130.4037,-2.0712],[130.4075,-2.077],[130.4068,-2.0816],[130.4162,-2.0798],[130.4193,-2.0762],[130.4292,-2.0706]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.148,-2.0689],[130.1437,-2.0674],[130.1424,-2.0761],[130.1514,-2.0749],[130.1535,-2.0704],[130.148,-2.0689]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.4599,-2.0621],[130.4553,-2.0637],[130.4524,-2.0608],[130.449,-2.0675],[130.4438,-2.0655],[130.4395,-2.0677],[130.4375,-2.0624],[130.4329,-2.0684],[130.4378,-2.0718],[130.4464,-2.0734],[130.451,-2.0716],[130.4557,-2.0722],[130.4591,-2.0691],[130.4655,-2.0668],[130.4599,-2.0621]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.4278,-2.06],[130.4287,-2.0557],[130.4226,-2.0567],[130.4207,-2.0634],[130.427,-2.0668],[130.4316,-2.0647],[130.4278,-2.06]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.3628,-2.0584],[130.3673,-2.0548],[130.3574,-2.0513],[130.3542,-2.0567],[130.3603,-2.0593],[130.3628,-2.0584]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.3988,-2.0454],[130.3974,-2.0384],[130.3906,-2.0468],[130.3988,-2.0454]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.3758,-2.0429],[130.3773,-2.036],[130.373,-2.0354],[130.3725,-2.0402],[130.3758,-2.0429]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.5617,-1.9877],[130.557,-1.9895],[130.5492,-1.9888],[130.5487,-1.9959],[130.5558,-1.998],[130.5625,-1.9976],[130.5736,-2.0027],[130.5788,-2.0018],[130.5884,-2.0053],[130.5965,-2.003],[130.6001,-1.9984],[130.5922,-1.9944],[130.5875,-1.9948],[130.5836,-1.9979],[130.5804,-1.9924],[130.5696,-1.9932],[130.5617,-1.9877]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.4795,-1.9867],[130.4831,-1.9804],[130.4806,-1.9761],[130.477,-1.9868],[130.4795,-1.9867]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.4593,-1.9682],[130.4565,-1.971],[130.4509,-1.9691],[130.456,-1.965],[130.4539,-1.9615],[130.4442,-1.9666],[130.444,-1.9741],[130.4483,-1.9819],[130.4534,-1.9844],[130.4624,-1.9832],[130.4593,-1.9682]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.3763,-1.9344],[130.3713,-1.9339],[130.3686,-1.9383],[130.3754,-1.9398],[130.3763,-1.9344]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.4591,-1.8963],[130.451,-1.8967],[130.4513,-1.9033],[130.4629,-1.9043],[130.466,-1.8981],[130.4591,-1.8963]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.722,-1.8596],[129.726,-1.8524],[129.7219,-1.8518],[129.7187,-1.8558],[129.722,-1.8596]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.6457,-1.7857],[129.6446,-1.7747],[129.6401,-1.765],[129.6349,-1.7676],[129.6312,-1.7812],[129.6306,-1.7867],[129.6258,-1.7846],[129.6241,-1.7891],[129.6281,-1.7978],[129.6327,-1.7999],[129.6358,-1.8127],[129.641,-1.8175],[129.6443,-1.8276],[129.6499,-1.8291],[129.6545,-1.8246],[129.6529,-1.8079],[129.6544,-1.8005],[129.65,-1.7928],[129.6487,-1.787],[129.6457,-1.7857]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.6563,-1.7752],[129.6559,-1.7687],[129.6536,-1.7646],[129.6498,-1.7631],[129.6475,-1.7673],[129.6495,-1.7731],[129.6563,-1.7752]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.6245,-1.7829],[129.6275,-1.7741],[129.6198,-1.7632],[129.6152,-1.763],[129.6102,-1.7665],[129.6095,-1.7713],[129.615,-1.7766],[129.6209,-1.7842],[129.6245,-1.7829]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.7068,-1.7663],[129.7073,-1.7566],[129.7043,-1.7551],[129.7012,-1.7628],[129.7068,-1.7663]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.6933,-1.7754],[129.6942,-1.7644],[129.6927,-1.7569],[129.6887,-1.748],[129.6858,-1.7476],[129.6842,-1.7558],[129.6862,-1.7659],[129.69,-1.7753],[129.6933,-1.7754]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.9363,-1.7099],[129.9397,-1.7078],[129.9404,-1.7025],[129.9353,-1.7033],[129.9306,-1.7086],[129.9363,-1.7099]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.235,-1.7024],[130.2393,-1.6974],[130.2344,-1.6962],[130.2271,-1.6974],[130.2258,-1.7015],[130.235,-1.7024]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.264,-1.7005],[130.2649,-1.6955],[130.2602,-1.6948],[130.2505,-1.6987],[130.249,-1.7022],[130.2557,-1.706],[130.2608,-1.7042],[130.264,-1.7005]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.7716,-1.7016],[129.764,-1.6896],[129.7593,-1.6921],[129.763,-1.6962],[129.7654,-1.707],[129.7705,-1.7093],[129.7735,-1.7065],[129.775,-1.715],[129.78,-1.7128],[129.7782,-1.701],[129.7748,-1.6968],[129.7716,-1.7016]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.264,-1.7005],[130.2635,-1.709],[130.2666,-1.7123],[130.2541,-1.7235],[130.2458,-1.7225],[130.2422,-1.7185],[130.2356,-1.7188],[130.2331,-1.723],[130.2265,-1.7219],[130.2246,-1.7192],[130.2103,-1.7196],[130.2007,-1.7137],[130.1912,-1.7125],[130.1738,-1.7151],[130.1615,-1.7142],[130.1556,-1.7157],[130.1352,-1.713],[130.1275,-1.7147],[130.1259,-1.7092],[130.1212,-1.7076],[130.1094,-1.71],[130.1124,-1.7168],[130.1035,-1.7178],[130.0968,-1.7205],[130.0937,-1.724],[130.0786,-1.7216],[130.0705,-1.7218],[130.0663,-1.7192],[130.059,-1.7181],[130.049,-1.7206],[130.0429,-1.7263],[130.0267,-1.7351],[130.0061,-1.7363],[129.9973,-1.7407],[129.988,-1.7473],[129.9792,-1.7592],[129.9731,-1.762],[129.9675,-1.7611],[129.9656,-1.7565],[129.9617,-1.7572],[129.9603,-1.7629],[129.9471,-1.7695],[129.9392,-1.7675],[129.9325,-1.7696],[129.9216,-1.7753],[129.9162,-1.7768],[129.9002,-1.7761],[129.8934,-1.7804],[129.8874,-1.793],[129.88,-1.7993],[129.8687,-1.8035],[129.8629,-1.81],[129.8579,-1.8134],[129.8469,-1.8165],[129.84,-1.8203],[129.8191,-1.8218],[129.8102,-1.8325],[129.806,-1.8267],[129.8007,-1.8267],[129.7832,-1.8364],[129.7737,-1.8387],[129.7653,-1.8369],[129.7502,-1.8411],[129.7383,-1.8466],[129.7325,-1.8519],[129.7238,-1.864],[129.7233,-1.8693],[129.7179,-1.872],[129.7222,-1.882],[129.7247,-1.8839],[129.7314,-1.8821],[129.7373,-1.8859],[129.7357,-1.8892],[129.7302,-1.8871],[129.7242,-1.8899],[129.7398,-1.9004],[129.7457,-1.9019],[129.752,-1.9006],[129.7558,-1.9022],[129.7633,-1.9106],[129.7695,-1.9137],[129.7781,-1.9202],[129.779,-1.9245],[129.7861,-1.9302],[129.7938,-1.9272],[129.8054,-1.9301],[129.8078,-1.9341],[129.814,-1.9328],[129.8139,-1.9381],[129.8286,-1.9494],[129.8366,-1.9575],[129.8446,-1.9612],[129.851,-1.9621],[129.8518,-1.9671],[129.8573,-1.9707],[129.8622,-1.97],[129.877,-1.9766],[129.8882,-1.9788],[129.8963,-1.9794],[129.8983,-1.9827],[129.9026,-1.9801],[129.909,-1.9888],[129.9168,-1.9883],[129.9184,-1.9932],[129.9288,-1.996],[129.9415,-1.9931],[129.9447,-1.9988],[129.9426,-2.0093],[129.9553,-2.0111],[129.9603,-2.0159],[129.965,-2.0145],[129.9768,-2.0061],[129.9788,-2.0025],[129.9885,-2.0112],[129.9839,-2.0158],[129.9861,-2.0178],[129.9917,-2.0131],[129.9947,-2.0126],[130.0006,-2.0166],[130.0031,-2.0128],[130.018,-2.0085],[130.0196,-2.0099],[130.0131,-2.0171],[130.006,-2.0207],[130.0096,-2.024],[130.0178,-2.0236],[130.0285,-2.0172],[130.035,-2.0169],[130.033,-2.0227],[130.0368,-2.0272],[130.0412,-2.0259],[130.0429,-2.0185],[130.0483,-2.0147],[130.0482,-2.0259],[130.0533,-2.0171],[130.0545,-2.0233],[130.0626,-2.0269],[130.068,-2.0262],[130.0699,-2.0213],[130.0768,-2.0192],[130.0831,-2.0199],[130.0933,-2.0171],[130.0924,-2.0206],[130.0877,-2.0227],[130.0878,-2.0306],[130.0939,-2.029],[130.1004,-2.0347],[130.1083,-2.037],[130.1021,-2.042],[130.0975,-2.0403],[130.0905,-2.0404],[130.0908,-2.0465],[130.0951,-2.0465],[130.0981,-2.0506],[130.1039,-2.0507],[130.1078,-2.0469],[130.1098,-2.0512],[130.1157,-2.0539],[130.1157,-2.0595],[130.1222,-2.0617],[130.1273,-2.0568],[130.1344,-2.057],[130.1378,-2.0546],[130.1419,-2.0576],[130.1507,-2.0555],[130.1553,-2.0563],[130.1612,-2.0536],[130.1688,-2.0551],[130.1806,-2.0599],[130.1754,-2.0652],[130.1865,-2.0629],[130.1905,-2.06],[130.1962,-2.0601],[130.2007,-2.0627],[130.2135,-2.0567],[130.2194,-2.057],[130.2257,-2.0541],[130.2344,-2.0538],[130.2364,-2.0556],[130.2445,-2.053],[130.2537,-2.0535],[130.2603,-2.0483],[130.2635,-2.044],[130.2619,-2.0361],[130.2694,-2.0273],[130.2615,-2.0222],[130.2516,-2.0096],[130.2646,-2.0156],[130.2725,-2.0168],[130.2704,-2.0113],[130.264,-2.0058],[130.2644,-2.0007],[130.2708,-2.007],[130.2759,-2.0102],[130.2853,-2.0133],[130.293,-2.0095],[130.2867,-2.0007],[130.2899,-1.9999],[130.2924,-2.0045],[130.2975,-2.005],[130.2996,-2.0007],[130.3048,-2.0001],[130.3064,-1.9916],[130.31,-1.9861],[130.3166,-1.9791],[130.3198,-1.974],[130.322,-1.9657],[130.3283,-1.9655],[130.333,-1.9626],[130.3382,-1.9543],[130.3431,-1.9518],[130.346,-1.9551],[130.3379,-1.9594],[130.3355,-1.9662],[130.3392,-1.9717],[130.3303,-1.9695],[130.3248,-1.9698],[130.3217,-1.9785],[130.3257,-1.9817],[130.3356,-1.9797],[130.3362,-1.9867],[130.345,-1.986],[130.3586,-1.992],[130.3717,-1.9969],[130.3743,-2.0005],[130.3731,-2.005],[130.376,-2.012],[130.378,-2.0128],[130.3862,-2.0086],[130.3911,-2.0114],[130.3927,-2.0148],[130.3825,-2.0237],[130.3768,-2.0245],[130.3733,-2.0269],[130.3662,-2.0265],[130.3626,-2.0301],[130.3633,-2.0384],[130.3685,-2.0355],[130.373,-2.0309],[130.3759,-2.0333],[130.3819,-2.0322],[130.3892,-2.0361],[130.4023,-2.0285],[130.4044,-2.0239],[130.4105,-2.0228],[130.4156,-2.0253],[130.4249,-2.0243],[130.4272,-2.0204],[130.433,-2.0187],[130.4346,-2.0211],[130.4408,-2.0193],[130.4536,-2.0096],[130.4633,-2.0087],[130.4647,-2.0132],[130.4696,-2.0132],[130.4678,-2.0066],[130.4603,-2.0033],[130.4569,-2.006],[130.4509,-2.0036],[130.4377,-2.0113],[130.4374,-2.0048],[130.4333,-2.0044],[130.4323,-2.0131],[130.428,-2.0124],[130.4284,-2.0043],[130.4148,-2.0046],[130.4135,-1.9983],[130.4038,-1.9941],[130.3971,-1.9856],[130.3908,-1.982],[130.3828,-1.9801],[130.3883,-1.9765],[130.396,-1.976],[130.4028,-1.9716],[130.4087,-1.9731],[130.4048,-1.9774],[130.4107,-1.9858],[130.4185,-1.9828],[130.4187,-1.987],[130.423,-1.9874],[130.4338,-1.9802],[130.4393,-1.9788],[130.4414,-1.9742],[130.4406,-1.9687],[130.4423,-1.9638],[130.4392,-1.9611],[130.4441,-1.9568],[130.4429,-1.9534],[130.4377,-1.955],[130.4278,-1.9705],[130.4295,-1.9606],[130.4327,-1.9534],[130.4321,-1.9511],[130.4256,-1.9482],[130.4172,-1.9481],[130.4124,-1.9526],[130.4079,-1.9499],[130.3954,-1.9509],[130.3878,-1.9503],[130.3827,-1.946],[130.3771,-1.9471],[130.3705,-1.9422],[130.3633,-1.9503],[130.3573,-1.9484],[130.3593,-1.944],[130.3657,-1.9405],[130.3672,-1.9343],[130.3647,-1.93],[130.3601,-1.9324],[130.3546,-1.9326],[130.3488,-1.9229],[130.338,-1.9197],[130.3374,-1.9161],[130.3424,-1.9123],[130.3505,-1.9155],[130.3584,-1.9099],[130.3686,-1.9005],[130.3728,-1.8997],[130.3749,-1.9032],[130.3806,-1.8945],[130.3868,-1.8887],[130.3916,-1.8884],[130.3967,-1.8914],[130.4042,-1.8922],[130.4102,-1.8859],[130.4079,-1.8799],[130.415,-1.8762],[130.4154,-1.8735],[130.4075,-1.862],[130.4105,-1.8595],[130.4079,-1.8555],[130.4134,-1.8512],[130.4204,-1.8542],[130.4253,-1.8578],[130.4283,-1.8565],[130.4334,-1.8467],[130.4346,-1.8384],[130.4371,-1.8325],[130.4469,-1.8304],[130.4542,-1.8302],[130.4542,-1.8278],[130.4395,-1.821],[130.4224,-1.7999],[130.4186,-1.7937],[130.4172,-1.7864],[130.4182,-1.7758],[130.4146,-1.7721],[130.4086,-1.7693],[130.3987,-1.7608],[130.3794,-1.7519],[130.3735,-1.7548],[130.3673,-1.7466],[130.361,-1.7416],[130.3556,-1.7344],[130.3473,-1.726],[130.3457,-1.7215],[130.3519,-1.7156],[130.3595,-1.7161],[130.3637,-1.7147],[130.3668,-1.7099],[130.3654,-1.704],[130.3717,-1.6989],[130.3762,-1.6914],[130.3783,-1.6822],[130.3753,-1.6748],[130.3631,-1.6688],[130.3564,-1.6683],[130.3456,-1.664],[130.3423,-1.6644],[130.3355,-1.6701],[130.3283,-1.6795],[130.3009,-1.6861],[130.2925,-1.6893],[130.277,-1.6897],[130.2699,-1.6921],[130.264,-1.7005]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.8708,-1.6679],[129.8678,-1.6626],[129.8652,-1.6683],[129.8708,-1.6679]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.8528,-1.655],[129.8507,-1.6576],[129.8566,-1.6613],[129.8636,-1.6618],[129.8624,-1.6553],[129.8528,-1.655]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.2076,-1.6387],[130.2027,-1.6366],[130.1973,-1.6377],[130.1973,-1.6414],[130.2077,-1.6416],[130.2076,-1.6387]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.9091,-1.639],[129.9166,-1.6342],[129.9176,-1.6244],[129.9102,-1.6217],[129.906,-1.6162],[129.9018,-1.6206],[129.9031,-1.6257],[129.9021,-1.631],[129.9062,-1.6405],[129.9091,-1.639]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.3078,-1.6157],[130.3106,-1.6104],[130.305,-1.6099],[130.3007,-1.613],[130.3036,-1.6169],[130.3078,-1.6157]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.3268,-1.6082],[130.3233,-1.603],[130.3202,-1.6068],[130.3268,-1.6082]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.2343,-1.4759],[130.2384,-1.4695],[130.2447,-1.4668],[130.259,-1.4651],[130.2675,-1.4594],[130.2686,-1.4555],[130.2641,-1.4541],[130.2626,-1.4505],[130.2427,-1.4565],[130.2277,-1.4591],[130.2156,-1.4652],[130.2062,-1.4716],[130.2067,-1.4779],[130.2147,-1.4807],[130.2343,-1.4759]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.1011,-1.4476],[130.1042,-1.4436],[130.1011,-1.4408],[130.0965,-1.4435],[130.097,-1.4493],[130.1011,-1.4476]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.1483,-1.4363],[130.1525,-1.4337],[130.1512,-1.427],[130.1452,-1.4306],[130.1444,-1.4361],[130.1483,-1.4363]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.1192,-1.4361],[130.1202,-1.4286],[130.1189,-1.4264],[130.1125,-1.4303],[130.1166,-1.4366],[130.1192,-1.4361]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.3139,-1.4221],[130.3112,-1.4252],[130.3246,-1.4301],[130.3261,-1.4253],[130.3208,-1.4223],[130.3139,-1.4221]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.287,-1.4293],[130.2882,-1.4202],[130.2822,-1.4245],[130.2816,-1.4288],[130.287,-1.4293]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.2264,-1.3591],[130.2288,-1.3553],[130.2344,-1.3538],[130.2322,-1.3502],[130.2203,-1.3554],[130.2192,-1.3598],[130.2264,-1.3591]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.7192,-1.2664],[129.7214,-1.261],[129.7166,-1.2609],[129.7129,-1.265],[129.7191,-1.27],[129.7289,-1.2688],[129.7301,-1.2655],[129.7276,-1.2613],[129.7219,-1.2677],[129.7192,-1.2664]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.7571,-1.2621],[129.7642,-1.2597],[129.7672,-1.2551],[129.763,-1.2519],[129.7578,-1.2511],[129.7506,-1.2549],[129.7516,-1.2611],[129.7571,-1.2621]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.6652,-1.2517],[129.6617,-1.2502],[129.6557,-1.2547],[129.6554,-1.2596],[129.6581,-1.2617],[129.6672,-1.2603],[129.6686,-1.2532],[129.6652,-1.2517]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.7092,-1.2247],[129.711,-1.2198],[129.707,-1.2179],[129.7033,-1.2229],[129.7092,-1.2247]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.6557,-1.224],[129.6573,-1.2198],[129.6524,-1.2144],[129.6479,-1.2158],[129.6486,-1.2226],[129.6557,-1.224]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.7408,-1.2155],[129.7337,-1.209],[129.73,-1.2103],[129.7306,-1.2168],[129.7389,-1.2172],[129.7408,-1.2155]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.8175,-1.2147],[129.8286,-1.2102],[129.8261,-1.2073],[129.8152,-1.2109],[129.8091,-1.2113],[129.7994,-1.2149],[129.794,-1.2137],[129.7942,-1.2191],[129.804,-1.2158],[129.8175,-1.2147]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.7771,-1.2178],[129.7863,-1.2106],[129.7845,-1.2052],[129.7749,-1.209],[129.7706,-1.212],[129.7686,-1.2165],[129.7734,-1.2187],[129.7771,-1.2178]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.7129,-1.1999],[129.7177,-1.1953],[129.7151,-1.1903],[129.706,-1.1943],[129.7082,-1.1996],[129.7129,-1.1999]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.6575,-1.2023],[129.6583,-1.1936],[129.6563,-1.1896],[129.6517,-1.1878],[129.6492,-1.193],[129.6507,-1.2003],[129.6575,-1.2023]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.3905,-1.1779],[129.3878,-1.1813],[129.3947,-1.1838],[129.3964,-1.1871],[129.4032,-1.1849],[129.4008,-1.1798],[129.3905,-1.1779]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.6773,-1.1772],[129.6758,-1.1714],[129.6724,-1.1729],[129.6733,-1.179],[129.6784,-1.1877],[129.6835,-1.1898],[129.6914,-1.1902],[129.6939,-1.1872],[129.6915,-1.1823],[129.6858,-1.1794],[129.6773,-1.1772]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.4638,-1.1846],[129.4737,-1.1792],[129.481,-1.1732],[129.4805,-1.1686],[129.4698,-1.1606],[129.4671,-1.1558],[129.4537,-1.1581],[129.4472,-1.1634],[129.4453,-1.1687],[129.4481,-1.1779],[129.4562,-1.1846],[129.4638,-1.1846]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[131.0537,-1.1903],[131.0574,-1.1872],[131.0607,-1.1728],[131.0581,-1.1637],[131.0578,-1.1557],[131.0534,-1.1543],[131.0476,-1.1659],[131.0484,-1.1752],[131.0537,-1.1903]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.357,-1.1536],[129.3569,-1.1597],[129.3589,-1.1652],[129.3543,-1.1703],[129.3567,-1.1738],[129.3638,-1.1761],[129.3692,-1.1745],[129.3749,-1.177],[129.3799,-1.1751],[129.3809,-1.1713],[129.3782,-1.1668],[129.3789,-1.1617],[129.3766,-1.1568],[129.3654,-1.1522],[129.357,-1.1536]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.4262,-1.1493],[129.4227,-1.1491],[129.4263,-1.1577],[129.4316,-1.1513],[129.4262,-1.1493]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.357,-1.1536],[129.3526,-1.1477],[129.3431,-1.1446],[129.3326,-1.1462],[129.3177,-1.1473],[129.3098,-1.1531],[129.3077,-1.1571],[129.3191,-1.159],[129.3253,-1.1632],[129.3301,-1.1647],[129.3334,-1.16],[129.3406,-1.1604],[129.3504,-1.1539],[129.357,-1.1536]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.7485,-1.1433],[129.7473,-1.1411],[129.7402,-1.1446],[129.7289,-1.1436],[129.7218,-1.1469],[129.7112,-1.1481],[129.7072,-1.1501],[129.7,-1.157],[129.6886,-1.1617],[129.6759,-1.1639],[129.6782,-1.1709],[129.6843,-1.1709],[129.6862,-1.1658],[129.6924,-1.1697],[129.6909,-1.1761],[129.6955,-1.1831],[129.7083,-1.1889],[129.7161,-1.1855],[129.7207,-1.1803],[129.7332,-1.1709],[129.7381,-1.1623],[129.7453,-1.1542],[129.7482,-1.1491],[129.7485,-1.1433]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.8877,-1.1413],[129.8851,-1.1368],[129.8795,-1.1339],[129.8679,-1.1313],[129.8637,-1.1318],[129.8509,-1.1443],[129.8435,-1.1446],[129.8371,-1.1431],[129.8307,-1.1455],[129.8281,-1.1495],[129.8165,-1.1483],[129.8107,-1.1487],[129.8013,-1.1523],[129.791,-1.1543],[129.7783,-1.1592],[129.765,-1.1594],[129.7516,-1.1645],[129.7471,-1.1679],[129.7398,-1.1762],[129.7343,-1.184],[129.7337,-1.1908],[129.7359,-1.1969],[129.7412,-1.206],[129.747,-1.2092],[129.7559,-1.2089],[129.7681,-1.2024],[129.7817,-1.1979],[129.7875,-1.1947],[129.7945,-1.1928],[129.8038,-1.1962],[129.8108,-1.1961],[129.8109,-1.2005],[129.8167,-1.2022],[129.8282,-1.199],[129.8355,-1.2009],[129.84,-1.2004],[129.8508,-1.1961],[129.8696,-1.1906],[129.8861,-1.1826],[129.8955,-1.1825],[129.8952,-1.1882],[129.8825,-1.1994],[129.8729,-1.2024],[129.8711,-1.206],[129.8738,-1.2106],[129.8678,-1.2134],[129.8652,-1.2081],[129.8657,-1.2012],[129.8607,-1.2001],[129.8523,-1.2048],[129.8504,-1.2098],[129.8442,-1.2108],[129.8389,-1.216],[129.8284,-1.2194],[129.8196,-1.2301],[129.8205,-1.235],[129.83,-1.2381],[129.8389,-1.2286],[129.8437,-1.2278],[129.8502,-1.2306],[129.872,-1.2224],[129.8824,-1.2163],[129.8972,-1.2022],[129.9052,-1.1963],[129.919,-1.1845],[129.9267,-1.1767],[129.9306,-1.1756],[129.9235,-1.1916],[129.9232,-1.2007],[129.932,-1.204],[129.9346,-1.2],[129.9388,-1.1879],[129.9442,-1.1831],[129.9599,-1.179],[129.9641,-1.1764],[129.9666,-1.167],[129.9736,-1.1691],[129.9782,-1.1622],[129.9761,-1.1576],[129.9704,-1.1563],[129.9506,-1.1552],[129.9299,-1.1521],[129.9173,-1.1481],[129.9086,-1.1503],[129.8945,-1.1489],[129.8909,-1.1472],[129.8877,-1.1413]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.8514,-1.1397],[129.8552,-1.1335],[129.8532,-1.1298],[129.8414,-1.1383],[129.8514,-1.1397]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[131.0699,-1.1455],[131.0733,-1.135],[131.0726,-1.1295],[131.0676,-1.1327],[131.0652,-1.1386],[131.0666,-1.1457],[131.0699,-1.1455]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.7705,-1.1467],[129.7682,-1.143],[129.7759,-1.1417],[129.7808,-1.1369],[129.7791,-1.1282],[129.7706,-1.1272],[129.7666,-1.131],[129.7608,-1.1336],[129.7564,-1.1381],[129.757,-1.1455],[129.7648,-1.1488],[129.7705,-1.1467]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[131.0816,-1.0789],[131.0839,-1.0836],[131.091,-1.0832],[131.0903,-1.0775],[131.0816,-1.0789]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[131.1645,-1.0798],[131.1689,-1.0736],[131.1723,-1.0625],[131.1609,-1.0718],[131.159,-1.0813],[131.1645,-1.0798]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[131.1587,-1.0351],[131.1534,-1.0397],[131.1549,-1.0438],[131.1534,-1.0551],[131.1507,-1.0605],[131.154,-1.064],[131.1553,-1.0715],[131.1609,-1.0689],[131.1662,-1.0616],[131.1671,-1.05],[131.1642,-1.0437],[131.164,-1.0367],[131.1587,-1.0351]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[131.0816,-1.0789],[131.0851,-1.0752],[131.0943,-1.0743],[131.0948,-1.0794],[131.105,-1.0809],[131.1091,-1.0741],[131.1018,-1.0711],[131.0976,-1.0634],[131.1026,-1.0645],[131.1091,-1.0692],[131.1126,-1.0656],[131.1172,-1.0692],[131.1205,-1.0744],[131.1297,-1.0689],[131.1291,-1.0591],[131.1335,-1.0584],[131.139,-1.0538],[131.136,-1.0436],[131.1291,-1.0528],[131.1205,-1.0491],[131.1298,-1.0448],[131.1309,-1.0366],[131.1289,-1.0269],[131.1318,-1.0221],[131.1373,-1.0239],[131.1432,-1.0213],[131.1472,-1.0159],[131.144,-1.0072],[131.1431,-0.9956],[131.1389,-0.9939],[131.1322,-0.997],[131.13,-0.9953],[131.1191,-0.9986],[131.1084,-0.9978],[131.0937,-1.0001],[131.0903,-1.0048],[131.0903,-1.0199],[131.0885,-1.0246],[131.0824,-1.0282],[131.0845,-1.0344],[131.0805,-1.0432],[131.0756,-1.0509],[131.0774,-1.0702],[131.0763,-1.0762],[131.0816,-1.0789]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.6605,-0.9507],[130.6616,-0.9474],[130.6572,-0.9421],[130.6467,-0.9381],[130.6384,-0.938],[130.636,-0.9395],[130.6374,-0.9471],[130.6483,-0.9512],[130.6605,-0.9507]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[131.095,-0.9522],[131.0967,-0.9465],[131.1038,-0.9435],[131.1079,-0.9402],[131.1083,-0.9363],[131.1003,-0.9394],[131.0942,-0.9461],[131.095,-0.9522]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[131.1162,-0.9304],[131.1238,-0.9226],[131.1263,-0.9169],[131.1171,-0.9198],[131.114,-0.9235],[131.1135,-0.9296],[131.1162,-0.9304]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[131.0237,-1.1955],[131.0313,-1.1955],[131.0402,-1.1898],[131.0441,-1.1848],[131.0417,-1.1693],[131.0449,-1.154],[131.0497,-1.141],[131.052,-1.1233],[131.0565,-1.1148],[131.0612,-1.1112],[131.0653,-1.1039],[131.0671,-1.0971],[131.0655,-1.0887],[131.0659,-1.0829],[131.0717,-1.0703],[131.0725,-1.0606],[131.0717,-1.0417],[131.0769,-1.0305],[131.0771,-1.0222],[131.0824,-1.0074],[131.0788,-1.0036],[131.0706,-1.0092],[131.0621,-1.0073],[131.0599,-1.0001],[131.0633,-0.9972],[131.0627,-0.9899],[131.0656,-0.9809],[131.0733,-0.9809],[131.077,-0.9788],[131.0787,-0.9685],[131.0757,-0.9664],[131.0706,-0.9675],[131.0653,-0.9635],[131.0584,-0.963],[131.0555,-0.9594],[131.0568,-0.95],[131.0505,-0.944],[131.0527,-0.9383],[131.0477,-0.9287],[131.0401,-0.9275],[131.0391,-0.9221],[131.0304,-0.9124],[131.0243,-0.9121],[131.0134,-0.9197],[130.994,-0.9258],[130.9905,-0.9256],[130.9831,-0.9192],[130.9764,-0.9245],[130.9694,-0.9262],[130.967,-0.9343],[130.962,-0.9371],[130.9549,-0.9325],[130.9502,-0.9337],[130.9468,-0.9391],[130.9359,-0.9426],[130.9237,-0.9303],[130.9225,-0.9249],[130.9243,-0.9208],[130.9187,-0.9134],[130.9205,-0.9048],[130.9249,-0.8981],[130.925,-0.8935],[130.9185,-0.8903],[130.9158,-0.8961],[130.9084,-0.8949],[130.9026,-0.8986],[130.8974,-0.8956],[130.8955,-0.8907],[130.8844,-0.897],[130.8667,-0.895],[130.8622,-0.8966],[130.858,-0.9054],[130.8504,-0.9026],[130.8484,-0.8977],[130.8437,-0.8972],[130.8379,-0.9014],[130.8342,-0.8979],[130.8259,-0.9077],[130.8186,-0.9108],[130.8121,-0.9087],[130.8034,-0.9146],[130.7988,-0.9146],[130.7946,-0.9208],[130.7905,-0.9307],[130.7848,-0.9305],[130.7825,-0.9263],[130.7783,-0.929],[130.7729,-0.9292],[130.7632,-0.9319],[130.7553,-0.9318],[130.7511,-0.9297],[130.7403,-0.9303],[130.7201,-0.9435],[130.7074,-0.9427],[130.7028,-0.9438],[130.6914,-0.9511],[130.6825,-0.9535],[130.6611,-0.9546],[130.6537,-0.9544],[130.6462,-0.956],[130.6434,-0.9604],[130.636,-0.9602],[130.636,-0.9673],[130.6397,-0.9726],[130.6358,-0.9753],[130.635,-0.9795],[130.6371,-0.9842],[130.6449,-0.9943],[130.6499,-0.9966],[130.6543,-1.002],[130.6621,-1.0081],[130.6738,-1.0116],[130.6768,-1.0142],[130.6794,-1.0234],[130.6853,-1.0265],[130.6913,-1.0422],[130.6975,-1.0514],[130.7055,-1.0533],[130.7079,-1.0603],[130.7016,-1.0646],[130.703,-1.0699],[130.7146,-1.0754],[130.7185,-1.0799],[130.7154,-1.0857],[130.7194,-1.0903],[130.7172,-1.0967],[130.7141,-1.0984],[130.7077,-1.0979],[130.6924,-1.0944],[130.6788,-1.1106],[130.6976,-1.1226],[130.6946,-1.1316],[130.7036,-1.1353],[130.7078,-1.141],[130.7258,-1.1534],[130.7363,-1.1635],[130.7344,-1.1736],[130.7277,-1.1819],[130.7295,-1.1853],[130.7342,-1.187],[130.734,-1.1844],[130.7399,-1.1747],[130.7427,-1.1724],[130.7569,-1.1671],[130.7671,-1.1667],[130.772,-1.1679],[130.7801,-1.1661],[130.7938,-1.1706],[130.8084,-1.1774],[130.8156,-1.1791],[130.8219,-1.1868],[130.831,-1.1906],[130.8355,-1.1975],[130.8375,-1.2034],[130.8478,-1.2059],[130.8532,-1.2027],[130.8613,-1.2027],[130.868,-1.1987],[130.8734,-1.1983],[130.8853,-1.2012],[130.8918,-1.1971],[130.9027,-1.1974],[130.913,-1.2009],[130.9181,-1.2014],[130.9219,-1.1926],[130.9317,-1.1825],[130.9404,-1.1812],[130.9461,-1.1775],[130.9505,-1.1775],[130.9592,-1.1744],[130.9626,-1.1751],[130.9794,-1.1835],[130.9932,-1.1812],[130.9986,-1.1812],[131.007,-1.1839],[131.0147,-1.1882],[131.0237,-1.1955]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[131.0291,-0.8943],[131.0326,-0.8886],[131.0275,-0.8845],[131.0255,-0.8926],[131.0291,-0.8943]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.7641,-0.8486],[129.76,-0.8453],[129.7592,-0.8615],[129.7641,-0.8486]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.9026,-0.8469],[129.8993,-0.8373],[129.8933,-0.8354],[129.8906,-0.8422],[129.894,-0.8463],[129.9008,-0.8494],[129.9026,-0.8469]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.8995,-0.8209],[130.9069,-0.8143],[130.9061,-0.8125],[130.8967,-0.8138],[130.892,-0.8192],[130.8995,-0.8209]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.5261,-0.8019],[130.5209,-0.7977],[130.5084,-0.8033],[130.5123,-0.8123],[130.509,-0.8172],[130.5139,-0.8204],[130.5223,-0.8283],[130.537,-0.8279],[130.5422,-0.8228],[130.5444,-0.8101],[130.5487,-0.8035],[130.5472,-0.7969],[130.5384,-0.7988],[130.5333,-0.7982],[130.5289,-0.8033],[130.5261,-0.8019]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.7107,-0.7935],[130.7067,-0.7855],[130.7024,-0.7826],[130.6997,-0.7953],[130.7021,-0.796],[130.7107,-0.7935]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.7907,-0.7742],[129.7844,-0.7691],[129.7768,-0.7703],[129.7772,-0.775],[129.7838,-0.7757],[129.7882,-0.7789],[129.7907,-0.7742]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.7449,-0.7851],[130.7427,-0.7769],[130.7476,-0.77],[130.7444,-0.768],[130.7347,-0.7789],[130.7369,-0.7824],[130.7333,-0.7863],[130.729,-0.782],[130.7301,-0.777],[130.7239,-0.7724],[130.7157,-0.7739],[130.7178,-0.7776],[130.7186,-0.7853],[130.7219,-0.7888],[130.7256,-0.7968],[130.7301,-0.7987],[130.7352,-0.7937],[130.7406,-0.7927],[130.7425,-0.7866],[130.7449,-0.7851]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.7866,-0.7561],[130.7812,-0.7572],[130.7717,-0.7543],[130.7693,-0.7603],[130.7733,-0.7641],[130.7717,-0.7674],[130.764,-0.7745],[130.7572,-0.7702],[130.7564,-0.7779],[130.7608,-0.7826],[130.765,-0.7924],[130.7659,-0.7992],[130.7732,-0.8015],[130.7791,-0.7929],[130.7761,-0.7907],[130.7816,-0.7849],[130.7767,-0.7828],[130.7776,-0.7782],[130.7715,-0.7775],[130.7744,-0.7718],[130.7822,-0.7694],[130.7821,-0.7629],[130.7867,-0.7613],[130.7866,-0.7561]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.8112,-0.7668],[130.8137,-0.7619],[130.8076,-0.7549],[130.8001,-0.7537],[130.796,-0.7587],[130.8006,-0.7636],[130.795,-0.7718],[130.7984,-0.7755],[130.8073,-0.7734],[130.8101,-0.7778],[130.8128,-0.7858],[130.8091,-0.7885],[130.8133,-0.7929],[130.806,-0.796],[130.8134,-0.8018],[130.8145,-0.8106],[130.8167,-0.8125],[130.8189,-0.8201],[130.8141,-0.8198],[130.8111,-0.8071],[130.8071,-0.8033],[130.8009,-0.8043],[130.7962,-0.8092],[130.796,-0.8131],[130.7883,-0.8201],[130.7862,-0.8139],[130.7903,-0.8136],[130.7915,-0.8018],[130.7961,-0.7966],[130.7935,-0.7947],[130.7867,-0.799],[130.7823,-0.8051],[130.7727,-0.8066],[130.77,-0.8149],[130.7665,-0.819],[130.7632,-0.8176],[130.7588,-0.8123],[130.7549,-0.8103],[130.7452,-0.8111],[130.7331,-0.8212],[130.7295,-0.8168],[130.7243,-0.815],[130.7192,-0.8156],[130.7198,-0.8268],[130.7138,-0.831],[130.703,-0.8299],[130.7068,-0.8243],[130.7069,-0.8183],[130.7121,-0.8129],[130.6986,-0.8076],[130.6956,-0.8111],[130.6778,-0.806],[130.6737,-0.7996],[130.6699,-0.8101],[130.6825,-0.814],[130.6862,-0.8198],[130.6848,-0.8228],[130.6771,-0.8239],[130.6704,-0.8198],[130.6629,-0.8203],[130.665,-0.8274],[130.6599,-0.8271],[130.6568,-0.8208],[130.6483,-0.8219],[130.6401,-0.818],[130.6403,-0.8122],[130.6461,-0.8151],[130.6466,-0.8046],[130.6375,-0.8041],[130.6336,-0.8015],[130.6358,-0.7943],[130.6315,-0.7923],[130.6241,-0.7974],[130.6262,-0.8026],[130.6191,-0.8089],[130.6196,-0.8148],[130.6121,-0.8185],[130.6053,-0.8157],[130.6018,-0.821],[130.5974,-0.8244],[130.589,-0.8279],[130.5851,-0.8326],[130.5776,-0.8303],[130.5781,-0.8259],[130.5839,-0.8238],[130.5835,-0.8188],[130.5865,-0.8111],[130.5832,-0.8086],[130.5724,-0.8091],[130.5744,-0.8],[130.5729,-0.7971],[130.5666,-0.7941],[130.5622,-0.7958],[130.5586,-0.8068],[130.558,-0.8132],[130.5625,-0.8146],[130.5652,-0.8195],[130.5625,-0.8242],[130.5581,-0.8219],[130.5529,-0.8218],[130.5482,-0.827],[130.5513,-0.8325],[130.5496,-0.837],[130.5427,-0.8409],[130.5296,-0.8389],[130.5246,-0.836],[130.5182,-0.8349],[130.5139,-0.8321],[130.5045,-0.8335],[130.5002,-0.8297],[130.4916,-0.8298],[130.4848,-0.8327],[130.4792,-0.8203],[130.4944,-0.8083],[130.5002,-0.798],[130.4879,-0.7926],[130.4809,-0.7914],[130.4759,-0.793],[130.47,-0.7992],[130.4749,-0.8022],[130.4723,-0.811],[130.4762,-0.82],[130.4698,-0.822],[130.4614,-0.82],[130.4588,-0.8153],[130.4585,-0.8096],[130.4611,-0.8026],[130.4534,-0.8041],[130.4508,-0.8075],[130.4509,-0.8132],[130.4466,-0.8289],[130.4461,-0.8371],[130.4536,-0.8432],[130.4528,-0.849],[130.455,-0.8546],[130.4492,-0.8621],[130.4478,-0.8668],[130.4423,-0.8656],[130.4373,-0.8593],[130.4325,-0.8644],[130.4367,-0.8679],[130.4371,-0.8746],[130.4463,-0.879],[130.4557,-0.8807],[130.4575,-0.8774],[130.4619,-0.8786],[130.4661,-0.8823],[130.4519,-0.8898],[130.4494,-0.8954],[130.4451,-0.8965],[130.4357,-0.894],[130.4311,-0.895],[130.4254,-0.8912],[130.4235,-0.893],[130.4231,-0.9007],[130.4171,-0.9061],[130.4149,-0.9057],[130.4106,-0.8975],[130.4081,-0.8999],[130.4063,-0.9113],[130.4026,-0.9156],[130.3897,-0.923],[130.394,-0.9246],[130.4013,-0.9246],[130.402,-0.9206],[130.4088,-0.9194],[130.415,-0.9222],[130.4218,-0.9114],[130.4298,-0.9135],[130.4339,-0.9089],[130.4434,-0.9058],[130.4478,-0.9021],[130.4531,-0.9005],[130.458,-0.901],[130.463,-0.9039],[130.4641,-0.9079],[130.4599,-0.914],[130.4709,-0.9201],[130.4728,-0.9157],[130.4661,-0.9032],[130.468,-0.8979],[130.4729,-0.8996],[130.477,-0.9052],[130.4848,-0.9082],[130.4896,-0.905],[130.4957,-0.9059],[130.5002,-0.9015],[130.505,-0.9022],[130.515,-0.8971],[130.5235,-0.9031],[130.5185,-0.9086],[130.5125,-0.9116],[130.5068,-0.9174],[130.5088,-0.92],[130.5156,-0.9144],[130.5217,-0.9115],[130.5282,-0.9121],[130.53,-0.9165],[130.5343,-0.9184],[130.5429,-0.9149],[130.5466,-0.9058],[130.552,-0.9077],[130.5583,-0.9157],[130.5616,-0.9153],[130.5683,-0.9108],[130.5739,-0.9115],[130.5796,-0.9145],[130.5842,-0.9092],[130.5882,-0.9124],[130.5947,-0.9131],[130.6035,-0.9098],[130.6106,-0.9115],[130.6251,-0.9089],[130.6342,-0.9039],[130.6388,-0.9058],[130.6466,-0.9058],[130.6508,-0.9031],[130.6589,-0.9012],[130.6611,-0.8992],[130.6756,-0.8995],[130.683,-0.8939],[130.6944,-0.8881],[130.7012,-0.8872],[130.7103,-0.8888],[130.7258,-0.8821],[130.7335,-0.8759],[130.7377,-0.8786],[130.7468,-0.882],[130.7493,-0.8777],[130.755,-0.8728],[130.7593,-0.8739],[130.765,-0.8723],[130.7681,-0.8755],[130.7753,-0.8758],[130.7927,-0.8719],[130.7982,-0.8689],[130.8012,-0.8609],[130.8094,-0.8641],[130.8173,-0.8686],[130.8234,-0.8642],[130.827,-0.8649],[130.8478,-0.8595],[130.8461,-0.8505],[130.843,-0.8492],[130.8439,-0.8434],[130.8519,-0.8534],[130.8586,-0.8533],[130.8624,-0.8465],[130.8621,-0.8401],[130.8641,-0.834],[130.8711,-0.8358],[130.8681,-0.8431],[130.872,-0.8476],[130.8785,-0.8424],[130.8813,-0.8381],[130.8874,-0.8397],[130.8966,-0.8346],[130.8968,-0.8303],[130.8883,-0.8272],[130.8803,-0.8302],[130.8737,-0.8286],[130.8705,-0.8296],[130.8634,-0.8225],[130.867,-0.8184],[130.8648,-0.8154],[130.8607,-0.8185],[130.8547,-0.8139],[130.8604,-0.8102],[130.8682,-0.8092],[130.8702,-0.8014],[130.8775,-0.7973],[130.8824,-0.7994],[130.8844,-0.7946],[130.8891,-0.7917],[130.893,-0.7974],[130.8977,-0.8008],[130.9028,-0.801],[130.9051,-0.7973],[130.9155,-0.7986],[130.9178,-0.7973],[130.92,-0.7896],[130.9254,-0.7847],[130.9184,-0.7741],[130.9131,-0.7832],[130.9115,-0.779],[130.899,-0.7774],[130.896,-0.7739],[130.8972,-0.7663],[130.8906,-0.7639],[130.8857,-0.7732],[130.8836,-0.7658],[130.8789,-0.7675],[130.8745,-0.7725],[130.8689,-0.7728],[130.8673,-0.7656],[130.8636,-0.7666],[130.8581,-0.7728],[130.8512,-0.7709],[130.8484,-0.7676],[130.8442,-0.7802],[130.8511,-0.785],[130.8537,-0.7921],[130.8658,-0.794],[130.8611,-0.8001],[130.8629,-0.8044],[130.8564,-0.8059],[130.854,-0.7989],[130.8472,-0.794],[130.8467,-0.7894],[130.8418,-0.7906],[130.8427,-0.7756],[130.8422,-0.769],[130.8392,-0.7667],[130.832,-0.7711],[130.8334,-0.781],[130.8322,-0.7849],[130.8282,-0.7876],[130.829,-0.7789],[130.8247,-0.7821],[130.8218,-0.7787],[130.8175,-0.7808],[130.8089,-0.7713],[130.8112,-0.7668]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.1281,-0.7514],[130.1382,-0.7454],[130.1459,-0.7426],[130.1515,-0.7421],[130.1535,-0.7387],[130.1503,-0.731],[130.1452,-0.7291],[130.1345,-0.7334],[130.1304,-0.7372],[130.1274,-0.7443],[130.1238,-0.7485],[130.1281,-0.7514]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.2339,-0.7252],[130.2276,-0.7264],[130.2168,-0.7265],[130.2128,-0.7308],[130.2124,-0.7354],[130.2142,-0.7428],[130.2177,-0.7475],[130.2202,-0.742],[130.2263,-0.736],[130.2345,-0.7339],[130.2339,-0.7252]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.2616,-0.7016],[130.2671,-0.7003],[130.2681,-0.6961],[130.2614,-0.6916],[130.2562,-0.6949],[130.2538,-0.6996],[130.2558,-0.7019],[130.2616,-0.7016]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.2325,-0.7003],[130.2415,-0.6987],[130.2461,-0.6966],[130.2476,-0.6917],[130.2407,-0.6878],[130.232,-0.69],[130.2261,-0.6961],[130.2262,-0.701],[130.2325,-0.7003]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.28,-0.693],[130.2796,-0.6853],[130.2757,-0.6854],[130.2758,-0.6916],[130.28,-0.693]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.2902,-0.6805],[130.2949,-0.6759],[130.2928,-0.6728],[130.2863,-0.6762],[130.2902,-0.6805]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.2529,-0.6819],[130.2549,-0.6749],[130.2497,-0.6702],[130.2443,-0.6737],[130.2441,-0.6777],[130.2507,-0.6835],[130.2529,-0.6819]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.3132,-0.6541],[130.3144,-0.6515],[130.3055,-0.645],[130.3006,-0.644],[130.2867,-0.6489],[130.2854,-0.6536],[130.2788,-0.6553],[130.2755,-0.6522],[130.2698,-0.6544],[130.2656,-0.6669],[130.2685,-0.6705],[130.2756,-0.6712],[130.2894,-0.6665],[130.2896,-0.6619],[130.3003,-0.6601],[130.3132,-0.6541]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.304,-0.5968],[130.302,-0.5907],[130.2987,-0.5937],[130.304,-0.5968]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.2777,-0.5886],[130.2755,-0.5976],[130.2761,-0.6024],[130.2824,-0.6072],[130.2869,-0.6013],[130.2876,-0.5964],[130.2816,-0.5928],[130.2777,-0.5886]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.6502,-0.5784],[130.6426,-0.5787],[130.6333,-0.5836],[130.6185,-0.5856],[130.6099,-0.5884],[130.6007,-0.59],[130.5976,-0.5917],[130.594,-0.5976],[130.5737,-0.6093],[130.5698,-0.6109],[130.5615,-0.6087],[130.5516,-0.6181],[130.5507,-0.6231],[130.5549,-0.6264],[130.5621,-0.6268],[130.5675,-0.6235],[130.5817,-0.6193],[130.5945,-0.6079],[130.5995,-0.601],[130.6031,-0.599],[130.6161,-0.5979],[130.6363,-0.5936],[130.6423,-0.589],[130.6568,-0.5861],[130.6553,-0.5814],[130.6502,-0.5784]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.6753,-0.5751],[130.6845,-0.5709],[130.6821,-0.5659],[130.6627,-0.5735],[130.6712,-0.5774],[130.6753,-0.5751]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.2777,-0.5886],[130.2744,-0.5838],[130.276,-0.5767],[130.2689,-0.5689],[130.2714,-0.5642],[130.2677,-0.5607],[130.2601,-0.5567],[130.2515,-0.5476],[130.2534,-0.5568],[130.26,-0.5643],[130.2679,-0.5765],[130.2631,-0.5815],[130.2706,-0.5867],[130.2777,-0.5886]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.3501,-0.4866],[130.3416,-0.4871],[130.3495,-0.492],[130.3566,-0.4891],[130.3501,-0.4866]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.806,-0.4868],[130.8116,-0.4837],[130.8173,-0.4786],[130.8175,-0.4751],[130.814,-0.472],[130.8102,-0.4727],[130.8025,-0.4773],[130.7992,-0.4825],[130.8005,-0.4866],[130.806,-0.4868]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.4416,-0.4475],[130.4338,-0.4462],[130.4311,-0.4532],[130.4347,-0.4568],[130.4394,-0.4558],[130.4375,-0.4515],[130.4444,-0.4523],[130.4416,-0.4475]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.6902,-0.4163],[130.6839,-0.4165],[130.6789,-0.4204],[130.68,-0.4239],[130.6864,-0.4234],[130.6909,-0.4208],[130.6902,-0.4163]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[129.8907,-0.4074],[129.8825,-0.406],[129.8781,-0.4091],[129.8751,-0.4158],[129.8705,-0.4192],[129.8603,-0.4242],[129.8554,-0.4239],[129.8513,-0.4268],[129.8473,-0.4343],[129.8443,-0.4369],[129.8458,-0.4412],[129.845,-0.4463],[129.8418,-0.4513],[129.8416,-0.461],[129.8489,-0.4746],[129.8495,-0.4786],[129.8569,-0.485],[129.8595,-0.4899],[129.8621,-0.4998],[129.866,-0.5051],[129.8716,-0.5069],[129.879,-0.5016],[129.8876,-0.4987],[129.8884,-0.4941],[129.8972,-0.4864],[129.8973,-0.4812],[129.9029,-0.478],[129.9042,-0.4733],[129.9035,-0.4625],[129.8995,-0.4498],[129.9029,-0.4473],[129.9102,-0.4526],[129.9151,-0.4533],[129.9134,-0.4373],[129.9173,-0.4335],[129.9202,-0.4248],[129.9192,-0.4196],[129.9122,-0.4099],[129.9078,-0.4072],[129.902,-0.4064],[129.8907,-0.4074]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.6171,-0.4146],[130.6176,-0.4075],[130.6145,-0.405],[130.6074,-0.4045],[130.6034,-0.4088],[130.6074,-0.4154],[130.6126,-0.4276],[130.6042,-0.4282],[130.5997,-0.4267],[130.597,-0.4228],[130.5904,-0.4209],[130.5852,-0.4249],[130.5703,-0.4332],[130.5618,-0.4341],[130.5574,-0.4377],[130.5504,-0.4408],[130.549,-0.4459],[130.5552,-0.4538],[130.5549,-0.4566],[130.5489,-0.4606],[130.5464,-0.466],[130.5404,-0.4686],[130.5359,-0.4674],[130.5246,-0.4759],[130.5193,-0.4782],[130.5127,-0.4774],[130.5138,-0.4733],[130.5047,-0.4632],[130.5062,-0.4584],[130.503,-0.4559],[130.5057,-0.4517],[130.4965,-0.4463],[130.4916,-0.4453],[130.4873,-0.4402],[130.4828,-0.4399],[130.4756,-0.447],[130.4706,-0.4484],[130.4654,-0.4531],[130.4709,-0.4581],[130.4752,-0.4579],[130.4809,-0.4653],[130.4799,-0.4685],[130.4752,-0.469],[130.4678,-0.4726],[130.4619,-0.4691],[130.4596,-0.4652],[130.4553,-0.4674],[130.461,-0.4755],[130.46,-0.4804],[130.4633,-0.4829],[130.4609,-0.4901],[130.4634,-0.4937],[130.4714,-0.4956],[130.5029,-0.4923],[130.5081,-0.4968],[130.5027,-0.5046],[130.4964,-0.5054],[130.4845,-0.5087],[130.4782,-0.5129],[130.4678,-0.517],[130.4527,-0.5182],[130.4564,-0.5232],[130.4578,-0.5303],[130.4633,-0.5316],[130.4645,-0.5277],[130.4686,-0.5286],[130.4768,-0.5268],[130.4838,-0.5209],[130.4963,-0.5188],[130.5002,-0.5214],[130.5072,-0.5164],[130.5152,-0.5178],[130.5201,-0.5203],[130.526,-0.5175],[130.53,-0.5133],[130.5332,-0.518],[130.541,-0.5209],[130.5413,-0.5154],[130.5465,-0.5147],[130.5466,-0.5082],[130.5612,-0.5016],[130.5648,-0.4888],[130.56,-0.482],[130.5595,-0.4775],[130.5642,-0.473],[130.5718,-0.4712],[130.5766,-0.4723],[130.5783,-0.4763],[130.5926,-0.4749],[130.5952,-0.4781],[130.5989,-0.4899],[130.6051,-0.49],[130.6112,-0.4923],[130.6094,-0.4963],[130.601,-0.4952],[130.6021,-0.5016],[130.592,-0.4994],[130.5908,-0.5023],[130.5959,-0.5082],[130.5964,-0.513],[130.5906,-0.5156],[130.5924,-0.5241],[130.5901,-0.5273],[130.5921,-0.5332],[130.5833,-0.5314],[130.575,-0.5346],[130.5718,-0.5333],[130.5715,-0.5286],[130.5674,-0.5293],[130.5663,-0.5371],[130.5715,-0.5459],[130.5738,-0.5472],[130.5895,-0.5446],[130.6055,-0.5368],[130.6265,-0.5334],[130.6316,-0.5314],[130.6371,-0.5254],[130.6514,-0.5226],[130.6539,-0.5176],[130.6591,-0.5179],[130.6655,-0.5061],[130.6683,-0.506],[130.6738,-0.4997],[130.6694,-0.4967],[130.6627,-0.4985],[130.6633,-0.4928],[130.6725,-0.4886],[130.6747,-0.482],[130.6792,-0.4737],[130.6833,-0.4704],[130.6879,-0.4712],[130.6893,-0.4631],[130.6942,-0.4548],[130.6912,-0.4488],[130.6877,-0.4473],[130.6813,-0.4478],[130.6783,-0.4444],[130.6796,-0.4407],[130.6723,-0.4412],[130.6644,-0.4439],[130.6629,-0.4423],[130.6658,-0.4354],[130.663,-0.4287],[130.65,-0.4215],[130.645,-0.4174],[130.6377,-0.4158],[130.6309,-0.4165],[130.6278,-0.4136],[130.6171,-0.4146]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.2581,-0.3919],[130.2605,-0.3876],[130.2542,-0.3863],[130.2534,-0.3916],[130.2581,-0.3919]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.27,-0.3772],[130.2701,-0.3716],[130.2637,-0.3735],[130.2655,-0.3772],[130.27,-0.3772]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.2947,-0.3706],[130.2841,-0.3679],[130.278,-0.3692],[130.2825,-0.3738],[130.2874,-0.3718],[130.2921,-0.3731],[130.2947,-0.3706]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.382,-0.3566],[130.3851,-0.3505],[130.3808,-0.3488],[130.379,-0.3541],[130.382,-0.3566]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.2362,-0.321],[130.2344,-0.3247],[130.2421,-0.3279],[130.2451,-0.3237],[130.2428,-0.3206],[130.2362,-0.321]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.2062,-0.333],[130.1946,-0.3291],[130.1819,-0.3206],[130.1733,-0.319],[130.1705,-0.3233],[130.1795,-0.3335],[130.1876,-0.3372],[130.1912,-0.335],[130.1969,-0.3358],[130.1988,-0.3401],[130.1958,-0.3422],[130.2015,-0.3481],[130.2133,-0.3506],[130.2202,-0.348],[130.2175,-0.3437],[130.2191,-0.3334],[130.2155,-0.3299],[130.2062,-0.333]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.3799,-0.3183],[130.3723,-0.3175],[130.3694,-0.3258],[130.3727,-0.3298],[130.3756,-0.3264],[130.3743,-0.3204],[130.3804,-0.3236],[130.3799,-0.3183]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.3545,-0.3152],[130.345,-0.3145],[130.345,-0.3197],[130.3496,-0.3218],[130.356,-0.3183],[130.3545,-0.3152]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.1313,-0.3112],[130.1247,-0.3131],[130.124,-0.3192],[130.1307,-0.3234],[130.136,-0.3303],[130.1374,-0.335],[130.1427,-0.3316],[130.1429,-0.3218],[130.1387,-0.3123],[130.1313,-0.3112]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.6628,-0.3097],[130.6579,-0.3134],[130.6649,-0.3163],[130.6587,-0.3205],[130.656,-0.3196],[130.6521,-0.3247],[130.6556,-0.3265],[130.6554,-0.3305],[130.6635,-0.3349],[130.6662,-0.3325],[130.6661,-0.3272],[130.6721,-0.3265],[130.6743,-0.3204],[130.6698,-0.3185],[130.6726,-0.3111],[130.6628,-0.3097]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.4887,-0.3061],[130.4861,-0.3027],[130.4793,-0.3064],[130.4821,-0.3115],[130.4809,-0.3153],[130.4767,-0.3158],[130.4784,-0.3253],[130.4852,-0.3288],[130.4864,-0.3333],[130.4986,-0.3337],[130.5099,-0.3322],[130.5162,-0.328],[130.5143,-0.322],[130.5094,-0.3215],[130.5112,-0.3168],[130.5118,-0.3094],[130.505,-0.3087],[130.5022,-0.3119],[130.4956,-0.3056],[130.4887,-0.3061]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.8519,-0.3019],[130.8456,-0.305],[130.846,-0.3126],[130.8489,-0.3164],[130.8608,-0.3193],[130.8668,-0.3168],[130.8789,-0.3178],[130.8839,-0.3228],[130.8933,-0.3196],[130.886,-0.3111],[130.8777,-0.3056],[130.8669,-0.303],[130.8519,-0.3019]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.3673,-0.3067],[130.3646,-0.2989],[130.3604,-0.3044],[130.3673,-0.3067]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.1886,-0.2974],[130.1814,-0.2841],[130.1775,-0.2831],[130.1758,-0.287],[130.1794,-0.2898],[130.181,-0.2971],[130.1886,-0.2974]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.2233,-0.2915],[130.221,-0.2806],[130.2165,-0.2794],[130.2039,-0.2829],[130.1958,-0.2841],[130.1925,-0.2887],[130.1958,-0.3004],[130.191,-0.3023],[130.1901,-0.3053],[130.1927,-0.3108],[130.1986,-0.3158],[130.2029,-0.3136],[130.2079,-0.3197],[130.2132,-0.3223],[130.2221,-0.3222],[130.2293,-0.3124],[130.233,-0.305],[130.2283,-0.3005],[130.2209,-0.3014],[130.2239,-0.296],[130.2233,-0.2915]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.335,-0.1981],[130.3293,-0.1985],[130.3198,-0.2085],[130.3152,-0.2106],[130.308,-0.2107],[130.3069,-0.2138],[130.3151,-0.2172],[130.3221,-0.2171],[130.3273,-0.214],[130.3335,-0.2064],[130.3405,-0.2032],[130.335,-0.1981]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.2467,-0.2001],[130.2429,-0.1942],[130.2365,-0.1952],[130.2446,-0.2002],[130.2467,-0.2001]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.3513,-0.1827],[130.3452,-0.186],[130.3484,-0.1922],[130.354,-0.1883],[130.3595,-0.1878],[130.3608,-0.1838],[130.3513,-0.1827]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.2614,-0.1824],[130.2566,-0.184],[130.2515,-0.1827],[130.2448,-0.1833],[130.2422,-0.1873],[130.2462,-0.1908],[130.2585,-0.1974],[130.2606,-0.1935],[130.2698,-0.1944],[130.2743,-0.1963],[130.2846,-0.1955],[130.2826,-0.1903],[130.2785,-0.1902],[130.2778,-0.186],[130.2711,-0.1824],[130.2678,-0.1845],[130.2614,-0.1824]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.2265,-0.1695],[130.222,-0.1698],[130.2108,-0.175],[130.2011,-0.178],[130.1996,-0.1798],[130.2065,-0.1869],[130.2264,-0.189],[130.2286,-0.1856],[130.2351,-0.1845],[130.2308,-0.1741],[130.2265,-0.1695]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.2608,-0.1737],[130.2608,-0.1659],[130.258,-0.1622],[130.2467,-0.1538],[130.2388,-0.153],[130.2395,-0.1565],[130.2485,-0.1597],[130.2469,-0.164],[130.2372,-0.165],[130.2363,-0.1675],[130.2387,-0.175],[130.2384,-0.1798],[130.2546,-0.1808],[130.2573,-0.1756],[130.2608,-0.1737]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.6879,-0.1335],[130.6851,-0.1322],[130.6727,-0.1362],[130.6682,-0.1362],[130.661,-0.1421],[130.662,-0.1463],[130.669,-0.1482],[130.6782,-0.1416],[130.686,-0.1408],[130.6895,-0.1389],[130.6879,-0.1335]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.641,-0.1146],[130.6445,-0.1222],[130.6518,-0.123],[130.6605,-0.1164],[130.6542,-0.1149],[130.6456,-0.1165],[130.641,-0.1146]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.2556,-0.1109],[130.252,-0.1076],[130.2486,-0.112],[130.2444,-0.1119],[130.2448,-0.1198],[130.2507,-0.1247],[130.2592,-0.1211],[130.2601,-0.1185],[130.2556,-0.1109]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.1814,-0.1057],[130.1834,-0.099],[130.1783,-0.0935],[130.1734,-0.0919],[130.1709,-0.0946],[130.1745,-0.0989],[130.1768,-0.1064],[130.1814,-0.1057]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.6658,-0.0935],[130.6644,-0.0892],[130.6592,-0.0885],[130.6575,-0.0931],[130.6612,-0.0958],[130.6658,-0.0935]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.3544,-0.0746],[130.3481,-0.0681],[130.346,-0.0719],[130.3507,-0.0754],[130.3544,-0.0746]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.0551,-0.0709],[130.0506,-0.0675],[130.0427,-0.0728],[130.0302,-0.0724],[130.0257,-0.074],[130.0188,-0.072],[130.0063,-0.0711],[130.0049,-0.0738],[130.0123,-0.0759],[130.0238,-0.0764],[130.0481,-0.0762],[130.053,-0.0798],[130.0565,-0.0764],[130.0551,-0.0709]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.4897,-0.0566],[130.4861,-0.0531],[130.4812,-0.0568],[130.4891,-0.0587],[130.4897,-0.0566]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[131.0785,-0.0506],[131.0761,-0.0399],[131.0713,-0.0384],[131.0619,-0.0455],[131.0644,-0.0502],[131.0778,-0.0533],[131.0785,-0.0506]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.5105,-0.0319],[130.5019,-0.0312],[130.4968,-0.0338],[130.4864,-0.0317],[130.4887,-0.0357],[130.4937,-0.0379],[130.5001,-0.038],[130.5057,-0.0402],[130.5133,-0.039],[130.5105,-0.0319]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.9391,-0.0194],[130.9348,-0.0214],[130.9377,-0.0266],[130.9454,-0.0355],[130.9465,-0.0293],[130.9525,-0.0285],[130.9515,-0.0245],[130.9391,-0.0194]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.641,-0.1146],[130.6429,-0.1075],[130.648,-0.1054],[130.646,-0.1005],[130.6417,-0.1043],[130.6319,-0.1028],[130.6224,-0.1064],[130.6147,-0.1056],[130.6124,-0.1031],[130.6157,-0.0957],[130.6108,-0.0949],[130.6082,-0.0995],[130.603,-0.0978],[130.5998,-0.0918],[130.6098,-0.0847],[130.6109,-0.0796],[130.6229,-0.0818],[130.6255,-0.0874],[130.6379,-0.0944],[130.6392,-0.0876],[130.6457,-0.0867],[130.6496,-0.0837],[130.6523,-0.0869],[130.6577,-0.0842],[130.6568,-0.0777],[130.6599,-0.076],[130.6691,-0.0791],[130.6776,-0.08],[130.6776,-0.0774],[130.6916,-0.0763],[130.6949,-0.0777],[130.6961,-0.082],[130.6929,-0.0874],[130.6828,-0.0904],[130.6753,-0.0944],[130.6807,-0.0992],[130.6822,-0.0958],[130.6977,-0.0974],[130.702,-0.0943],[130.7067,-0.0986],[130.7099,-0.1085],[130.7095,-0.1178],[130.7116,-0.1252],[130.7174,-0.1364],[130.7253,-0.1428],[130.7275,-0.1481],[130.735,-0.1508],[130.74,-0.156],[130.7453,-0.1546],[130.75,-0.1581],[130.7509,-0.1618],[130.7556,-0.1611],[130.7614,-0.1575],[130.7626,-0.1621],[130.7722,-0.1593],[130.7779,-0.1706],[130.7819,-0.1722],[130.7832,-0.176],[130.7793,-0.1823],[130.7857,-0.1852],[130.7896,-0.1952],[130.7898,-0.2027],[130.7879,-0.2073],[130.7897,-0.2153],[130.7843,-0.225],[130.784,-0.2299],[130.7919,-0.2363],[130.7911,-0.2409],[130.794,-0.2479],[130.7987,-0.2451],[130.8028,-0.2472],[130.8106,-0.2468],[130.8153,-0.2485],[130.8217,-0.247],[130.8295,-0.2485],[130.8351,-0.2522],[130.8416,-0.2498],[130.848,-0.2451],[130.8549,-0.2432],[130.8555,-0.2386],[130.8613,-0.2399],[130.8779,-0.2545],[130.8806,-0.259],[130.8815,-0.2672],[130.8885,-0.2707],[130.8944,-0.2785],[130.8972,-0.29],[130.8948,-0.2917],[130.8947,-0.2974],[130.901,-0.3022],[130.8976,-0.3086],[130.9019,-0.3095],[130.9166,-0.3077],[130.9213,-0.3139],[130.9221,-0.3226],[130.9243,-0.3256],[130.9322,-0.3296],[130.9358,-0.3389],[130.9348,-0.3454],[130.9403,-0.3522],[130.95,-0.3552],[130.9555,-0.3585],[130.9654,-0.3596],[130.9709,-0.3575],[130.9819,-0.3655],[130.9855,-0.3695],[130.9886,-0.3662],[130.9944,-0.364],[130.9889,-0.3536],[130.9932,-0.3453],[130.9969,-0.3444],[131.0088,-0.3471],[131.0124,-0.3515],[131.0206,-0.3578],[131.0191,-0.3649],[131.0289,-0.3623],[131.0267,-0.3547],[131.0331,-0.3504],[131.0341,-0.3451],[131.0416,-0.3488],[131.0421,-0.3541],[131.0551,-0.3485],[131.0588,-0.3413],[131.06,-0.3351],[131.0647,-0.3343],[131.0691,-0.3272],[131.0785,-0.3271],[131.0823,-0.3218],[131.0945,-0.3183],[131.097,-0.3143],[131.1014,-0.3179],[131.0982,-0.3233],[131.0978,-0.3283],[131.1141,-0.3294],[131.1236,-0.3349],[131.1277,-0.3321],[131.1315,-0.3339],[131.1425,-0.3341],[131.1529,-0.3353],[131.1653,-0.3408],[131.1764,-0.3423],[131.1914,-0.3506],[131.1989,-0.3644],[131.1996,-0.3709],[131.2046,-0.3694],[131.2215,-0.3738],[131.2373,-0.386],[131.2441,-0.3871],[131.2491,-0.3852],[131.2542,-0.379],[131.2522,-0.37],[131.2491,-0.3626],[131.2435,-0.3554],[131.243,-0.3482],[131.2463,-0.3459],[131.2511,-0.3493],[131.2602,-0.3495],[131.2679,-0.3525],[131.276,-0.3497],[131.2784,-0.3444],[131.2839,-0.3422],[131.2802,-0.335],[131.291,-0.3248],[131.2986,-0.3259],[131.3,-0.3192],[131.3049,-0.3166],[131.3037,-0.3131],[131.3051,-0.3071],[131.3112,-0.3032],[131.3166,-0.3035],[131.3217,-0.3066],[131.3256,-0.3012],[131.3336,-0.3013],[131.3369,-0.2981],[131.3367,-0.2891],[131.3282,-0.2809],[131.3102,-0.2713],[131.2987,-0.2602],[131.293,-0.2472],[131.2931,-0.2421],[131.2908,-0.2358],[131.2921,-0.2313],[131.2906,-0.2251],[131.2971,-0.2254],[131.2996,-0.2235],[131.3038,-0.2148],[131.3107,-0.2131],[131.3104,-0.2063],[131.3121,-0.2044],[131.3056,-0.199],[131.3026,-0.1942],[131.3074,-0.1896],[131.3052,-0.1853],[131.295,-0.174],[131.2926,-0.1651],[131.2832,-0.1664],[131.2753,-0.1582],[131.2596,-0.1547],[131.2572,-0.1526],[131.2552,-0.1429],[131.2484,-0.1403],[131.2401,-0.1457],[131.2348,-0.151],[131.2296,-0.1479],[131.2231,-0.1387],[131.2183,-0.1408],[131.213,-0.1407],[131.2083,-0.1428],[131.2003,-0.1349],[131.1968,-0.1333],[131.1904,-0.1345],[131.1881,-0.1287],[131.1898,-0.1216],[131.1889,-0.1168],[131.1777,-0.1084],[131.1756,-0.1028],[131.1712,-0.1015],[131.1647,-0.1043],[131.1604,-0.0995],[131.1536,-0.0956],[131.1541,-0.0912],[131.1509,-0.0858],[131.1385,-0.0832],[131.1346,-0.0799],[131.1244,-0.0777],[131.119,-0.0798],[131.1047,-0.0806],[131.0947,-0.0747],[131.0908,-0.0757],[131.0839,-0.0682],[131.0762,-0.0683],[131.0726,-0.0756],[131.0693,-0.0728],[131.0582,-0.069],[131.0524,-0.0706],[131.0432,-0.0656],[131.033,-0.0662],[131.0313,-0.0609],[131.0445,-0.0604],[131.0503,-0.0561],[131.0522,-0.05],[131.0512,-0.0405],[131.045,-0.0261],[131.0404,-0.0269],[131.0358,-0.0369],[131.0277,-0.0408],[131.0192,-0.0378],[131.0152,-0.044],[131.0032,-0.0491],[130.989,-0.0478],[130.9779,-0.0407],[130.9741,-0.0449],[130.9808,-0.0522],[130.9818,-0.0559],[130.9798,-0.0619],[130.9767,-0.0635],[130.9675,-0.0618],[130.9634,-0.0657],[130.9622,-0.056],[130.9635,-0.0509],[130.9557,-0.0456],[130.9524,-0.0401],[130.948,-0.0397],[130.9464,-0.0452],[130.9384,-0.0441],[130.9266,-0.0389],[130.9216,-0.0351],[130.9135,-0.0337],[130.9097,-0.0296],[130.9034,-0.0301],[130.9,-0.0272],[130.8938,-0.0265],[130.8877,-0.0225],[130.8831,-0.0234],[130.8813,-0.0204],[130.8745,-0.0172],[130.868,-0.0162],[130.8404,-0.0138],[130.8306,-0.0115],[130.823,-0.017],[130.8187,-0.0109],[130.8096,-0.008],[130.7973,-0.0117],[130.7938,-0.0081],[130.7863,-0.0088],[130.781,-0.012],[130.7719,-0.0154],[130.7696,-0.0114],[130.7597,-0.016],[130.7582,-0.0184],[130.7503,-0.0186],[130.7524,-0.0231],[130.7495,-0.0259],[130.7434,-0.0242],[130.7361,-0.0265],[130.737,-0.0363],[130.745,-0.0367],[130.7513,-0.0392],[130.7647,-0.0372],[130.7727,-0.0384],[130.7811,-0.0445],[130.7775,-0.0511],[130.7718,-0.0522],[130.7679,-0.0495],[130.7637,-0.0546],[130.7542,-0.0541],[130.7513,-0.0506],[130.7473,-0.051],[130.7454,-0.056],[130.7357,-0.0489],[130.7342,-0.0517],[130.7272,-0.0559],[130.7223,-0.051],[130.7142,-0.0529],[130.7084,-0.0562],[130.7066,-0.0614],[130.7027,-0.0562],[130.7108,-0.0478],[130.7249,-0.0408],[130.7279,-0.0368],[130.7238,-0.035],[130.7223,-0.0313],[130.7095,-0.0283],[130.7066,-0.0306],[130.7021,-0.0378],[130.6956,-0.0355],[130.6934,-0.0405],[130.6883,-0.0434],[130.6828,-0.0394],[130.6675,-0.0452],[130.6654,-0.05],[130.6606,-0.0464],[130.6508,-0.0486],[130.6485,-0.0502],[130.6507,-0.0568],[130.6454,-0.0607],[130.6423,-0.0539],[130.6355,-0.0563],[130.6293,-0.053],[130.6252,-0.0553],[130.6279,-0.0587],[130.6252,-0.0622],[130.6175,-0.0614],[130.6171,-0.0562],[130.6098,-0.0504],[130.6034,-0.0492],[130.5937,-0.0523],[130.5936,-0.0467],[130.5887,-0.0458],[130.5862,-0.0417],[130.5814,-0.0457],[130.5747,-0.0471],[130.5788,-0.0562],[130.5753,-0.0584],[130.5704,-0.0517],[130.5679,-0.0523],[130.5646,-0.0446],[130.5688,-0.0397],[130.5641,-0.0363],[130.5569,-0.0342],[130.559,-0.0431],[130.5575,-0.0485],[130.5637,-0.0529],[130.5638,-0.0598],[130.5679,-0.0689],[130.5664,-0.073],[130.5608,-0.0727],[130.5556,-0.0646],[130.5354,-0.0552],[130.5354,-0.058],[130.5475,-0.0693],[130.5401,-0.0744],[130.5341,-0.0697],[130.5306,-0.072],[130.5286,-0.065],[130.525,-0.0617],[130.5264,-0.0544],[130.5175,-0.0552],[130.5137,-0.0488],[130.5081,-0.0458],[130.4981,-0.0452],[130.4935,-0.0465],[130.4953,-0.0509],[130.5001,-0.0513],[130.5056,-0.0579],[130.5124,-0.0639],[130.5027,-0.0644],[130.5001,-0.0625],[130.4895,-0.0652],[130.4906,-0.0714],[130.4878,-0.0781],[130.4827,-0.078],[130.4722,-0.0709],[130.4602,-0.0739],[130.4639,-0.0781],[130.4647,-0.0827],[130.4608,-0.0857],[130.45,-0.083],[130.4435,-0.0867],[130.4434,-0.0937],[130.4393,-0.0928],[130.4359,-0.0966],[130.4319,-0.0893],[130.4263,-0.0839],[130.4223,-0.077],[130.4143,-0.0864],[130.4234,-0.0871],[130.4263,-0.0921],[130.4221,-0.1033],[130.4162,-0.1009],[130.41,-0.1031],[130.4046,-0.1014],[130.407,-0.1088],[130.4009,-0.1141],[130.3887,-0.1112],[130.3873,-0.1071],[130.3937,-0.0985],[130.3948,-0.0888],[130.3887,-0.0838],[130.3924,-0.0758],[130.3842,-0.0744],[130.3791,-0.0794],[130.3725,-0.0798],[130.3681,-0.0741],[130.3576,-0.0745],[130.3583,-0.0776],[130.3675,-0.0779],[130.3695,-0.0833],[130.352,-0.0807],[130.3499,-0.0854],[130.3511,-0.09],[130.3554,-0.0912],[130.3555,-0.095],[130.3591,-0.0977],[130.3649,-0.0967],[130.3691,-0.0999],[130.3658,-0.107],[130.3709,-0.1163],[130.3678,-0.1209],[130.3598,-0.1236],[130.356,-0.1293],[130.3494,-0.1343],[130.3445,-0.1286],[130.3443,-0.1185],[130.3385,-0.1142],[130.3368,-0.1104],[130.3451,-0.1036],[130.3412,-0.0995],[130.3407,-0.0946],[130.3436,-0.0878],[130.3392,-0.0833],[130.34,-0.0786],[130.3356,-0.0784],[130.3326,-0.0871],[130.3353,-0.0936],[130.3303,-0.0935],[130.3294,-0.0968],[130.3351,-0.1023],[130.3348,-0.1069],[130.3295,-0.1082],[130.321,-0.105],[130.3156,-0.1094],[130.3083,-0.1084],[130.3047,-0.1025],[130.2958,-0.1034],[130.2874,-0.0943],[130.2808,-0.0966],[130.2861,-0.1008],[130.286,-0.1056],[130.2813,-0.1105],[130.272,-0.1126],[130.2674,-0.1114],[130.2687,-0.1187],[130.2751,-0.1211],[130.2793,-0.1267],[130.2794,-0.1347],[130.2724,-0.1309],[130.2706,-0.1321],[130.2694,-0.142],[130.2721,-0.1491],[130.2821,-0.1509],[130.2844,-0.1543],[130.2937,-0.1513],[130.2949,-0.1566],[130.2935,-0.1616],[130.297,-0.1663],[130.2898,-0.1682],[130.2881,-0.1722],[130.2928,-0.1777],[130.3017,-0.1782],[130.3066,-0.1802],[130.316,-0.1806],[130.3335,-0.1914],[130.3411,-0.1934],[130.3438,-0.1891],[130.3379,-0.1822],[130.3368,-0.1775],[130.3388,-0.1708],[130.3353,-0.1619],[130.3305,-0.1579],[130.3255,-0.1572],[130.3203,-0.1533],[130.3186,-0.1479],[130.3207,-0.1427],[130.3276,-0.1421],[130.3303,-0.1457],[130.3394,-0.1486],[130.3465,-0.155],[130.3494,-0.1593],[130.3549,-0.1528],[130.355,-0.1486],[130.3514,-0.1449],[130.3533,-0.1387],[130.3582,-0.1394],[130.3619,-0.1422],[130.3649,-0.1549],[130.3683,-0.1582],[130.3647,-0.1621],[130.3723,-0.1722],[130.3785,-0.1717],[130.3734,-0.1624],[130.376,-0.1602],[130.3803,-0.1627],[130.3824,-0.167],[130.3898,-0.1696],[130.4008,-0.1603],[130.4087,-0.1628],[130.4071,-0.1537],[130.4021,-0.1505],[130.4028,-0.1466],[130.4003,-0.1416],[130.3925,-0.1407],[130.3901,-0.1364],[130.3888,-0.1293],[130.3953,-0.1277],[130.3999,-0.1302],[130.4134,-0.1328],[130.4166,-0.1366],[130.4151,-0.1416],[130.4111,-0.1453],[130.4091,-0.1516],[130.4151,-0.1603],[130.414,-0.1674],[130.4091,-0.1692],[130.3845,-0.174],[130.3748,-0.1771],[130.3685,-0.1778],[130.3665,-0.1837],[130.3737,-0.1869],[130.3778,-0.1856],[130.3817,-0.1881],[130.3902,-0.1824],[130.4039,-0.1815],[130.4114,-0.1785],[130.4173,-0.1782],[130.4198,-0.183],[130.4296,-0.1873],[130.4311,-0.1918],[130.4375,-0.194],[130.4404,-0.1977],[130.435,-0.1993],[130.431,-0.1973],[130.4243,-0.2033],[130.4163,-0.204],[130.4131,-0.2087],[130.4056,-0.2082],[130.3974,-0.2156],[130.4018,-0.2177],[130.3997,-0.2215],[130.4,-0.2276],[130.3926,-0.2255],[130.3901,-0.2313],[130.3856,-0.2316],[130.3749,-0.2349],[130.3717,-0.2399],[130.3669,-0.2419],[130.361,-0.2414],[130.3596,-0.2331],[130.3712,-0.237],[130.372,-0.2313],[130.3656,-0.2248],[130.3631,-0.2138],[130.3671,-0.2139],[130.3636,-0.2071],[130.3568,-0.2041],[130.3485,-0.2057],[130.343,-0.205],[130.3323,-0.2115],[130.3292,-0.2216],[130.3254,-0.2196],[130.3149,-0.2207],[130.3064,-0.2185],[130.3029,-0.2218],[130.2936,-0.2185],[130.2859,-0.2212],[130.2739,-0.2186],[130.2655,-0.2206],[130.2585,-0.2242],[130.2569,-0.2218],[130.2604,-0.2176],[130.2549,-0.2131],[130.2418,-0.2075],[130.2285,-0.2057],[130.2151,-0.2054],[130.2085,-0.2114],[130.211,-0.2186],[130.2265,-0.2246],[130.2365,-0.2262],[130.242,-0.2289],[130.2545,-0.2299],[130.2616,-0.2285],[130.2741,-0.2288],[130.2796,-0.2302],[130.2815,-0.2367],[130.3034,-0.2489],[130.3075,-0.253],[130.3098,-0.2583],[130.3089,-0.2654],[130.3057,-0.2707],[130.3043,-0.2765],[130.3076,-0.2775],[130.3129,-0.274],[130.3134,-0.2668],[130.3202,-0.2661],[130.3169,-0.2743],[130.3195,-0.2751],[130.33,-0.2645],[130.3331,-0.2587],[130.3434,-0.2611],[130.3471,-0.2584],[130.3514,-0.2598],[130.3538,-0.2643],[130.3532,-0.2696],[130.3606,-0.2687],[130.3651,-0.2696],[130.3689,-0.2821],[130.3777,-0.2827],[130.3826,-0.2793],[130.3766,-0.2734],[130.3691,-0.2738],[130.3671,-0.2656],[130.3699,-0.2648],[130.384,-0.2667],[130.3824,-0.2715],[130.391,-0.2738],[130.4012,-0.2711],[130.4107,-0.2634],[130.4226,-0.2638],[130.43,-0.2746],[130.434,-0.2764],[130.4344,-0.2833],[130.4296,-0.2863],[130.4238,-0.2855],[130.4214,-0.2891],[130.4263,-0.2921],[130.4312,-0.2904],[130.4398,-0.292],[130.4454,-0.2772],[130.4564,-0.2633],[130.4659,-0.2619],[130.4729,-0.2635],[130.4751,-0.2673],[130.4798,-0.2631],[130.4895,-0.2597],[130.4971,-0.2548],[130.5095,-0.2481],[130.5175,-0.2513],[130.5234,-0.2584],[130.5242,-0.2644],[130.5215,-0.2661],[130.5193,-0.2734],[130.5153,-0.277],[130.5153,-0.2824],[130.5119,-0.285],[130.5116,-0.2962],[130.5094,-0.3011],[130.5142,-0.3081],[130.5163,-0.3153],[130.5229,-0.3129],[130.5284,-0.3132],[130.5335,-0.3115],[130.538,-0.3129],[130.5346,-0.3176],[130.5364,-0.3239],[130.5407,-0.3326],[130.5388,-0.3472],[130.5404,-0.3566],[130.5399,-0.3623],[130.5419,-0.3663],[130.5421,-0.3829],[130.5391,-0.3927],[130.5433,-0.3914],[130.5485,-0.3866],[130.5512,-0.4014],[130.5484,-0.4062],[130.5472,-0.4163],[130.5442,-0.4233],[130.536,-0.4315],[130.5376,-0.4369],[130.5422,-0.4349],[130.5484,-0.4389],[130.5578,-0.4339],[130.5593,-0.4309],[130.5593,-0.4183],[130.5662,-0.411],[130.5655,-0.4081],[130.5717,-0.4007],[130.5759,-0.3999],[130.5777,-0.3931],[130.5851,-0.3868],[130.5811,-0.3823],[130.5813,-0.3766],[130.5846,-0.3717],[130.5831,-0.3691],[130.5753,-0.3673],[130.5703,-0.3725],[130.5656,-0.3718],[130.5626,-0.3741],[130.5546,-0.3763],[130.5566,-0.3708],[130.557,-0.3635],[130.5613,-0.3602],[130.5671,-0.3591],[130.5694,-0.3534],[130.5686,-0.3476],[130.5742,-0.3412],[130.5764,-0.3365],[130.568,-0.3281],[130.5684,-0.3253],[130.5758,-0.3238],[130.5834,-0.3245],[130.6002,-0.3167],[130.6038,-0.3186],[130.6068,-0.3109],[130.612,-0.3155],[130.6181,-0.3118],[130.6265,-0.3126],[130.629,-0.3093],[130.6326,-0.3168],[130.6399,-0.3104],[130.6444,-0.311],[130.6569,-0.3078],[130.6602,-0.3041],[130.6679,-0.3029],[130.6695,-0.298],[130.6748,-0.2953],[130.6795,-0.2962],[130.6811,-0.3031],[130.6908,-0.3045],[130.6956,-0.3097],[130.6921,-0.3156],[130.6954,-0.3245],[130.7018,-0.3302],[130.6966,-0.3309],[130.6936,-0.3356],[130.6871,-0.3365],[130.6831,-0.339],[130.6751,-0.3388],[130.6692,-0.3422],[130.6768,-0.347],[130.6811,-0.3455],[130.6845,-0.3489],[130.685,-0.3536],[130.6905,-0.3575],[130.6927,-0.3647],[130.6998,-0.3816],[130.7006,-0.386],[130.6962,-0.3964],[130.7033,-0.4008],[130.7045,-0.4055],[130.7033,-0.4113],[130.7074,-0.422],[130.712,-0.4301],[130.7158,-0.4331],[130.7165,-0.4383],[130.7236,-0.4463],[130.7363,-0.4464],[130.7478,-0.4498],[130.7567,-0.4505],[130.7656,-0.4498],[130.7664,-0.4435],[130.7717,-0.4421],[130.7741,-0.4453],[130.781,-0.4471],[130.7899,-0.4513],[130.796,-0.4461],[130.7984,-0.4404],[130.8047,-0.4423],[130.8094,-0.4469],[130.8196,-0.4389],[130.8322,-0.4382],[130.8393,-0.4328],[130.8471,-0.4289],[130.864,-0.4282],[130.8681,-0.4309],[130.8731,-0.4306],[130.8753,-0.4237],[130.8801,-0.4196],[130.8803,-0.4151],[130.8886,-0.4134],[130.8909,-0.4092],[130.8951,-0.4116],[130.9002,-0.41],[130.9052,-0.4035],[130.9083,-0.4063],[130.9135,-0.4044],[130.9237,-0.3938],[130.9308,-0.3932],[130.9311,-0.3892],[130.9239,-0.3851],[130.9206,-0.3791],[130.9221,-0.3752],[130.9162,-0.3712],[130.9232,-0.3663],[130.9257,-0.3699],[130.9306,-0.3699],[130.9347,-0.3742],[130.941,-0.3652],[130.9397,-0.3594],[130.9303,-0.3558],[130.9268,-0.3478],[130.9264,-0.3386],[130.9203,-0.333],[130.9165,-0.3276],[130.9155,-0.3143],[130.9025,-0.3144],[130.8936,-0.3242],[130.8842,-0.3252],[130.8789,-0.3207],[130.873,-0.3201],[130.8611,-0.3214],[130.8472,-0.3183],[130.8432,-0.3128],[130.8442,-0.3075],[130.8425,-0.3022],[130.8359,-0.2995],[130.8214,-0.2961],[130.8175,-0.2985],[130.8064,-0.3023],[130.8067,-0.3068],[130.8133,-0.3089],[130.8146,-0.3134],[130.8107,-0.3192],[130.8063,-0.3175],[130.8009,-0.3125],[130.7971,-0.3145],[130.791,-0.3123],[130.7874,-0.3059],[130.7836,-0.3022],[130.779,-0.3083],[130.7785,-0.2993],[130.775,-0.2981],[130.7655,-0.3009],[130.7602,-0.2937],[130.7486,-0.2971],[130.7441,-0.2951],[130.7393,-0.2959],[130.7367,-0.2994],[130.7319,-0.3002],[130.7261,-0.2978],[130.7258,-0.2938],[130.7323,-0.2904],[130.7319,-0.2883],[130.7387,-0.2839],[130.7318,-0.2775],[130.7266,-0.2706],[130.7202,-0.2526],[130.7161,-0.25],[130.7187,-0.2461],[130.7152,-0.2441],[130.7167,-0.2399],[130.7044,-0.2291],[130.6936,-0.2138],[130.6912,-0.2026],[130.6822,-0.193],[130.6765,-0.1886],[130.6703,-0.1748],[130.6657,-0.1719],[130.6557,-0.1619],[130.6525,-0.1551],[130.6473,-0.1519],[130.6353,-0.1488],[130.6306,-0.1498],[130.6257,-0.148],[130.6216,-0.1501],[130.614,-0.1469],[130.6179,-0.1438],[130.6257,-0.1452],[130.6287,-0.1427],[130.6264,-0.1387],[130.6267,-0.133],[130.62,-0.1266],[130.6126,-0.1242],[130.6228,-0.1168],[130.6332,-0.1166],[130.6364,-0.113],[130.641,-0.1146]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.1101,-0.0041],[130.0963,0.0083],[130.0867,0.0102],[130.0821,-0.0027],[130.0944,-0.013],[130.095,-0.0212],[130.1034,-0.0274],[130.105,-0.0319],[130.1024,-0.0391],[130.0901,-0.0403],[130.0938,-0.0522],[130.0888,-0.0518],[130.0882,-0.0557],[130.0924,-0.0595],[130.0896,-0.0685],[130.0978,-0.0728],[130.1042,-0.0716],[130.107,-0.0856],[130.1059,-0.0918],[130.1077,-0.0952],[130.1135,-0.0978],[130.1145,-0.093],[130.1182,-0.0915],[130.1234,-0.1013],[130.1307,-0.101],[130.1332,-0.0973],[130.1385,-0.0952],[130.1422,-0.0911],[130.1444,-0.0846],[130.1441,-0.0793],[130.1465,-0.0755],[130.1555,-0.071],[130.1552,-0.0678],[130.1494,-0.0652],[130.1465,-0.0607],[130.1477,-0.0467],[130.1417,-0.0489],[130.136,-0.0486],[130.13,-0.041],[130.1251,-0.0376],[130.1234,-0.0439],[130.1087,-0.0373],[130.1091,-0.0348],[130.1153,-0.0328],[130.1156,-0.0286],[130.1213,-0.0273],[130.1285,-0.0284],[130.1329,-0.0308],[130.1337,-0.0245],[130.1361,-0.0202],[130.1318,-0.0185],[130.1219,-0.0194],[130.1142,-0.0165],[130.1113,-0.0128],[130.1057,-0.0104],[130.1058,-0.0066],[130.1101,-0.0041]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.9297,-0.0087],[130.9498,-0.0002],[130.9613,0.0076],[130.9623,0.0133],[130.959,0.0172],[130.9472,0.0181],[130.9399,0.021],[130.9332,0.0206],[130.9254,0.0166],[130.9206,0.0093],[130.9206,-0.0002],[130.9178,-0.0039],[130.9174,-0.0093],[130.9246,-0.0117],[130.9297,-0.0087]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[130.8759,0.0282],[130.8675,0.0326],[130.8634,0.0247],[130.8671,0.0155],[130.8824,0.0101],[130.8893,0.0108],[130.8968,0.0206],[130.8968,0.0264],[130.891,0.0314],[130.8838,0.0307],[130.8792,0.0276],[130.8759,0.0282]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[131.0734,0.3775],[131.0685,0.3855],[131.0643,0.3898],[131.0487,0.3997],[131.0445,0.399],[131.0385,0.3949],[131.0315,0.3829],[131.036,0.3765],[131.0444,0.3754],[131.0516,0.3767],[131.0554,0.3738],[131.0481,0.3685],[131.0461,0.365],[131.0506,0.3583],[131.0544,0.358],[131.0648,0.3525],[131.0755,0.3531],[131.078,0.3545],[131.0802,0.3632],[131.0734,0.3775]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[131.1422,0.3868],[131.1474,0.3918],[131.1436,0.4069],[131.1395,0.4127],[131.1353,0.4137],[131.1315,0.3999],[131.1324,0.3944],[131.1367,0.3875],[131.1422,0.3868]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[131.1806,0.482],[131.1835,0.4851],[131.1786,0.4946],[131.167,0.5039],[131.1599,0.5159],[131.1554,0.5191],[131.1476,0.5202],[131.1444,0.5162],[131.145,0.5099],[131.149,0.5014],[131.157,0.4914],[131.1632,0.487],[131.1717,0.4829],[131.1806,0.482]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"LineString","coordinates":[[131.2225,0.5562],[131.224,0.5609],[131.2221,0.5682],[131.2114,0.5726],[131.2013,0.5782],[131.187,0.5822],[131.1836,0.5813],[131.1792,0.5763],[131.1824,0.5692],[131.1914,0.5648],[131.2065,0.561],[131.2167,0.5548],[131.2225,0.5562]]}},{"type":"Feature","properties":{"mhid":"1332:487","alt_name":"KABUPATEN TAMBRAUW","latitude":-0.60515,"longitude":132.48962,"sample_value":300},"geometry":{"type":"LineString","coordinates":[[133.5066,-0.7477],[133.5083,-0.7435],[133.4969,-0.7413],[133.4844,-0.7404],[133.4729,-0.741],[133.463,-0.74],[133.4525,-0.7404],[133.4329,-0.7379],[133.4222,-0.7376],[133.4183,-0.7364],[133.4133,-0.7378],[133.3953,-0.7407],[133.3895,-0.7397],[133.3785,-0.7286],[133.371,-0.7235],[133.3499,-0.7149],[133.3312,-0.705],[133.3215,-0.6986],[133.3139,-0.6882],[133.3042,-0.6765],[133.295,-0.6669],[133.29,-0.6606],[133.2805,-0.6562],[133.2722,-0.6506],[133.2497,-0.6275],[133.2471,-0.6189],[133.2387,-0.612],[133.237,-0.6086],[133.228,-0.603],[133.2259,-0.6003],[133.2186,-0.5985],[133.1902,-0.5895],[133.1792,-0.5848],[133.1736,-0.5806],[133.1721,-0.5775],[133.1628,-0.5722],[133.1583,-0.567],[133.1593,-0.5536],[133.1516,-0.5462],[133.1447,-0.5436],[133.1335,-0.5438],[133.1273,-0.545],[133.1228,-0.5532],[133.1121,-0.5514],[133.1078,-0.5483],[133.0961,-0.5455],[133.087,-0.5382],[133.0816,-0.5284],[133.0815,-0.5172],[133.0699,-0.516],[133.0592,-0.5194],[133.0514,-0.5189],[133.047,-0.5155],[133.0415,-0.5205],[133.0372,-0.5212],[133.0308,-0.5194],[133.0242,-0.515],[133.0162,-0.5274],[133.012,-0.5178],[133.007,-0.502],[132.9995,-0.4916],[133.0024,-0.4816],[132.9851,-0.4807],[132.9714,-0.476],[132.9618,-0.4739],[132.9681,-0.4585],[132.9697,-0.4523],[132.962,-0.4405],[132.9562,-0.4393],[132.9457,-0.4429],[132.9255,-0.4522],[132.9051,-0.4474],[132.8943,-0.4486],[132.887,-0.4462],[132.8801,-0.4478],[132.8617,-0.4375],[132.8292,-0.4247],[132.8112,-0.4155],[132.8017,-0.4135],[132.7883,-0.4066],[132.7751,-0.3968],[132.7694,-0.3974],[132.7564,-0.3831],[132.7485,-0.3877],[132.7277,-0.3789],[132.7137,-0.3738],[132.7095,-0.3622],[132.7099,-0.3569],[132.7019,-0.3589],[132.6914,-0.3664],[132.6757,-0.3654],[132.6585,-0.3613],[132.6473,-0.3571],[132.6399,-0.3603],[132.6199,-0.3571],[132.6009,-0.3552],[132.5819,-0.3566],[132.526,-0.3537],[132.5033,-0.3584],[132.4631,-0.3494],[132.4305,-0.3437],[132.4092,-0.3447],[132.3823,-0.3636],[132.3625,-0.3598],[132.3585,-0.3684],[132.3441,-0.3776],[132.3209,-0.3819],[132.2892,-0.3811],[132.2686,-0.3767],[132.2575,-0.3795],[132.2563,-0.3946],[132.2442,-0.4005],[132.1931,-0.4092],[132.1622,-0.425],[132.1453,-0.446],[132.1272,-0.4536],[132.1043,-0.4639],[132.0786,-0.4829],[132.0711,-0.4921],[132.0731,-0.4983],[132.0738,-0.5062],[132.0728,-0.5151],[132.0591,-0.5364],[132.0214,-0.55],[132.0207,-0.5503],[132.0415,-0.5826],[132.0985,-0.6432],[132.1359,-0.6549],[132.124,-0.6752],[132.1027,-0.683],[132.0563,-0.7141],[132.0501,-0.7189],[132.0337,-0.7237],[132.0294,-0.7413],[132.0283,-0.7557],[132.0336,-0.7807],[132.0593,-0.7775],[132.1109,-0.8315],[132.1794,-0.8795],[132.156,-0.8909],[132.1513,-0.8956],[132.1437,-0.9001],[132.1373,-0.9243],[132.1467,-0.9289],[132.1533,-0.9356],[132.125,-0.9911],[131.9719,-1.0505],[131.9419,-1.0521],[131.9379,-1.0612],[131.9491,-1.0611],[131.9549,-1.0626],[131.9791,-1.0633],[131.9888,-1.0646],[132.0156,-1.0664],[132.0254,-1.0677],[132.0328,-1.0685],[132.0513,-1.0678],[132.0919,-1.0698],[132.1143,-1.067],[132.1215,-1.0678],[132.1378,-1.0671],[132.1601,-1.0683],[132.1828,-1.067],[132.2039,-1.0688],[132.2255,-1.0716],[132.2276,-1.0695],[132.2347,-1.0714],[132.2546,-1.0743],[132.2635,-1.075],[132.2797,-1.0739],[132.292,-1.0755],[132.3034,-1.0756],[132.3112,-1.0769],[132.3256,-1.0746],[132.3307,-1.0747],[132.3442,-1.0795],[132.36,-1.0827],[132.3671,-1.0832],[132.3814,-1.0873],[132.419,-1.089],[132.4296,-1.0888],[132.4389,-1.0917],[132.4468,-1.0915],[132.4528,-1.0884],[132.4761,-1.0938],[132.4872,-1.0944],[132.4927,-1.1165],[132.5057,-1.1265],[132.5813,-1.1332],[132.5812,-1.1344],[132.6099,-1.1374],[132.676,-1.1455],[132.7088,-1.1605],[132.7126,-1.1628],[132.7319,-1.1687],[132.7464,-1.1701],[132.78,-1.1717],[132.7944,-1.1721],[132.8057,-1.176],[132.8209,-1.1794],[132.8557,-1.1855],[132.864,-1.1878],[132.8992,-1.1935],[132.9474,-1.2004],[132.9693,-1.2078],[132.9882,-1.2105],[133.0054,-1.2156],[133.0321,-1.2205],[133.0721,-1.2252],[133.0992,-1.2289],[133.1104,-1.2309],[133.1612,-1.2425],[133.1752,-1.2461],[133.1933,-1.2495],[133.2342,-1.2578],[133.2492,-1.2624],[133.2662,-1.2647],[133.2932,-1.2661],[133.3017,-1.2693],[133.3199,-1.272],[133.3344,-1.2754],[133.3434,-1.2575],[133.3482,-1.2413],[133.3606,-1.2061],[133.3673,-1.1947],[133.3882,-1.1661],[133.4054,-1.1451],[133.4139,-1.1299],[133.4206,-1.1156],[133.4444,-1.0861],[133.4558,-1.0699],[133.4635,-1.0546],[133.4644,-1.0442],[133.4692,-1.0308],[133.4692,-1.0185],[133.5038,-1.0051],[133.5167,-0.9986],[133.5167,-0.9743],[133.5113,-0.9643],[133.4976,-0.9225],[133.4881,-0.8874],[133.4798,-0.8841],[133.4701,-0.8838],[133.4697,-0.8608],[133.4714,-0.8406],[133.4732,-0.8103],[133.4837,-0.7736],[133.4957,-0.7637],[133.5007,-0.7543],[133.5066,-0.7477]]}},{"type":"Feature","properties":{"mhid":"1332:488","alt_name":"KABUPATEN MAYBRAT","latitude":-1.2155,"longitude":132.35092,"sample_value":945},"geometry":{"type":"LineString","coordinates":[[132.7088,-1.1605],[132.676,-1.1455],[132.6099,-1.1374],[132.5812,-1.1344],[132.5813,-1.1332],[132.5057,-1.1265],[132.4927,-1.1165],[132.4872,-1.0944],[132.4761,-1.0938],[132.4528,-1.0884],[132.4468,-1.0915],[132.4389,-1.0917],[132.4296,-1.0888],[132.419,-1.089],[132.3814,-1.0873],[132.3671,-1.0832],[132.36,-1.0827],[132.3442,-1.0795],[132.3307,-1.0747],[132.3256,-1.0746],[132.3112,-1.0769],[132.3034,-1.0756],[132.292,-1.0755],[132.2797,-1.0739],[132.2635,-1.075],[132.2546,-1.0743],[132.2347,-1.0714],[132.2276,-1.0695],[132.2255,-1.0716],[132.2039,-1.0688],[132.1828,-1.067],[132.1601,-1.0683],[132.1378,-1.0671],[132.1215,-1.0678],[132.1143,-1.067],[132.0919,-1.0698],[132.0513,-1.0678],[132.0328,-1.0685],[132.0254,-1.0677],[132.0543,-1.1356],[132.07,-1.17],[132.0696,-1.1912],[132.0725,-1.2256],[132.0382,-1.2389],[132.0182,-1.2402],[132.013,-1.2418],[132.0176,-1.2483],[132.0217,-1.2598],[132.0208,-1.2785],[132.0126,-1.2867],[132.0134,-1.3034],[132.0172,-1.3048],[132.035,-1.3188],[132.0781,-1.3454],[132.0975,-1.3489],[132.1212,-1.3618],[132.1057,-1.4094],[132.1015,-1.4283],[132.1309,-1.4307],[132.1688,-1.4324],[132.1701,-1.4349],[132.1794,-1.4368],[132.1847,-1.4366],[132.2022,-1.4443],[132.2095,-1.4412],[132.2173,-1.4407],[132.2367,-1.4341],[132.2446,-1.4377],[132.2662,-1.4522],[132.2746,-1.463],[132.2891,-1.469],[132.3066,-1.4878],[132.3061,-1.4925],[132.3107,-1.5063],[132.3095,-1.5207],[132.3068,-1.5289],[132.3069,-1.535],[132.3055,-1.5476],[132.3218,-1.5427],[132.3337,-1.5557],[132.3725,-1.587],[132.3701,-1.5958],[132.3934,-1.6105],[132.4136,-1.6276],[132.4339,-1.6697],[132.4385,-1.7039],[132.4635,-1.7382],[132.4931,-1.7647],[132.4967,-1.7814],[132.5082,-1.7527],[132.5167,-1.7334],[132.5245,-1.7052],[132.5499,-1.6508],[132.5681,-1.5941],[132.5836,-1.5067],[132.5952,-1.436],[132.5999,-1.4146],[132.6096,-1.3953],[132.6328,-1.3619],[132.672,-1.2955],[132.7199,-1.219],[132.7233,-1.1967],[132.7227,-1.184],[132.7088,-1.1605]]}},{"type":"Feature","properties":{"mhid":"1332:489","alt_name":"KABUPATEN MANOKWARI SELATAN","latitude":-1.0798,"longitude":133.96729,"sample_value":460},"geometry":{"type":"LineString","coordinates":[[134.2035,-1.2241],[134.1905,-1.23],[134.1851,-1.2375],[134.1754,-1.2333],[134.1832,-1.2225],[134.1779,-1.2175],[134.1857,-1.2112],[134.1876,-1.2056],[134.1937,-1.1999],[134.1926,-1.1972],[134.1859,-1.1919],[134.1829,-1.1957],[134.1731,-1.2016],[134.1685,-1.2055],[134.1587,-1.2163],[134.1485,-1.2262],[134.1413,-1.236],[134.1256,-1.2504],[134.121,-1.253],[134.1102,-1.2661],[134.0971,-1.2805],[134.0902,-1.2845],[134.087,-1.2883],[134.0899,-1.292],[134.0958,-1.3051],[134.0978,-1.3133],[134.1046,-1.3238],[134.1073,-1.3326],[134.0922,-1.3483],[134.0797,-1.3627],[134.0696,-1.3781],[134.0611,-1.3876],[134.0614,-1.4099],[134.0608,-1.4115],[134.0404,-1.4407],[134.0242,-1.4345],[134.004,-1.4284],[133.9896,-1.422],[133.9775,-1.4366],[133.9563,-1.4491],[133.9511,-1.4554],[133.9364,-1.4651],[133.9215,-1.4769],[133.9141,-1.4877],[133.9076,-1.4932],[133.8911,-1.5042],[133.8806,-1.5141],[133.8762,-1.5152],[133.8295,-1.4762],[133.7997,-1.4464],[133.773,-1.4279],[133.7571,-1.4058],[133.7407,-1.3899],[133.7207,-1.3781],[133.6858,-1.3668],[133.6629,-1.3641],[133.6617,-1.3953],[133.6607,-1.4081],[133.6597,-1.4102],[133.6605,-1.4308],[133.6639,-1.46],[133.6659,-1.4814],[133.6658,-1.5105],[133.6642,-1.5427],[133.6616,-1.5552],[133.6538,-1.5859],[133.6523,-1.5881],[133.6662,-1.5925],[133.6838,-1.594],[133.7204,-1.5949],[133.7459,-1.5952],[133.7596,-1.5946],[133.7948,-1.5975],[133.8052,-1.5977],[133.8143,-1.6004],[133.842,-1.6008],[133.8547,-1.6],[133.8663,-1.5967],[133.8694,-1.6289],[133.8729,-1.6572],[133.8728,-1.6634],[133.8701,-1.6762],[133.8688,-1.6916],[133.8661,-1.7032],[133.862,-1.7062],[133.8624,-1.7152],[133.8556,-1.729],[133.8482,-1.7479],[133.843,-1.7595],[133.8393,-1.7783],[133.836,-1.7944],[133.8359,-1.807],[133.8386,-1.8189],[133.8373,-1.8296],[133.839,-1.8532],[133.8417,-1.8697],[133.8458,-1.8793],[133.8542,-1.9069],[133.8587,-1.9187],[133.8681,-1.9414],[133.8718,-1.9535],[133.8736,-1.9673],[133.8714,-1.9836],[133.8717,-1.9919],[133.8748,-2.0034],[133.8822,-2.0226],[133.8924,-2.0221],[133.9209,-2.0177],[133.9549,-2.0154],[133.9697,-2.0134],[134.0081,-2.0075],[134.0188,-2.0049],[134.0046,-1.91],[134.0031,-1.8861],[134.003,-1.8621],[134.0058,-1.862],[134.0058,-1.825],[134.0051,-1.825],[134.0033,-1.7715],[134.0054,-1.7711],[134.0448,-1.7685],[134.0651,-1.7701],[134.0707,-1.7693],[134.0845,-1.7697],[134.0929,-1.7682],[134.0891,-1.7067],[134.0807,-1.6636],[134.0808,-1.6598],[134.0752,-1.658],[134.0707,-1.6586],[134.0705,-1.6533],[134.0754,-1.6492],[134.0881,-1.6465],[134.0941,-1.641],[134.1,-1.6401],[134.1016,-1.6351],[134.1062,-1.6384],[134.117,-1.6387],[134.1234,-1.6334],[134.1323,-1.6205],[134.1383,-1.6073],[134.1446,-1.5975],[134.1659,-1.582],[134.1765,-1.5683],[134.1835,-1.5622],[134.1881,-1.5597],[134.1906,-1.5559],[134.1885,-1.5519],[134.1903,-1.5438],[134.1957,-1.5435],[134.1991,-1.5343],[134.201,-1.5223],[134.2078,-1.5118],[134.2112,-1.5041],[134.2113,-1.4954],[134.2042,-1.4805],[134.1982,-1.4642],[134.1987,-1.4538],[134.2007,-1.4489],[134.2113,-1.4334],[134.2124,-1.4301],[134.2128,-1.4159],[134.2141,-1.4094],[134.2226,-1.3926],[134.2291,-1.3759],[134.2409,-1.3584],[134.2467,-1.3526],[134.2529,-1.3504],[134.2642,-1.3407],[134.2695,-1.3416],[134.274,-1.3498],[134.2793,-1.3476],[134.2797,-1.3425],[134.2773,-1.3333],[134.2638,-1.323],[134.2559,-1.3181],[134.2493,-1.3111],[134.2467,-1.3055],[134.2456,-1.2966],[134.2464,-1.2919],[134.2348,-1.2779],[134.2291,-1.2689],[134.2245,-1.2637],[134.2146,-1.2446],[134.2077,-1.2348],[134.2035,-1.2241]]}},{"type":"Feature","properties":{"mhid":"1332:490","alt_name":"KABUPATEN PEGUNUNGAN ARFAK","latitude":-0.93523,"longitude":133.89587,"sample_value":909},"geometry":{"type":"LineString","coordinates":[[134.0057,-0.9966],[134.0092,-0.9909],[134.0033,-0.9892],[134.0009,-0.9974],[134.0057,-0.9966]]}},{"type":"Feature","properties":{"mhid":"1332:490","alt_name":"KABUPATEN PEGUNUNGAN ARFAK","latitude":-0.93523,"longitude":133.89587,"sample_value":909},"geometry":{"type":"LineString","coordinates":[[133.9728,-0.9592],[133.9664,-0.9525],[133.9638,-0.957],[133.9685,-0.9626],[133.9728,-0.9592]]}},{"type":"Feature","properties":{"mhid":"1332:490","alt_name":"KABUPATEN PEGUNUNGAN ARFAK","latitude":-0.93523,"longitude":133.89587,"sample_value":909},"geometry":{"type":"LineString","coordinates":[[134.087,-1.2883],[134.0788,-1.2736],[134.0666,-1.2599],[134.0601,-1.2478],[134.0575,-1.2307],[134.0526,-1.2183],[134.0502,-1.2086],[134.0505,-1.2015],[134.0714,-1.1814],[134.0182,-1.1341],[134.0147,-1.1256],[134.0144,-1.1097],[134.0115,-1.0974],[134.0098,-1.0834],[134.009,-1.062],[134.0078,-1.0485],[134.0053,-1.0386],[133.9848,-1.0386],[133.9581,-1.0374],[133.9507,-1.0341],[133.9408,-1.0197],[133.9289,-0.9951],[133.9232,-0.9889],[133.9191,-0.9865],[133.9084,-0.9865],[133.8932,-0.984],[133.885,-0.984],[133.8665,-0.9877],[133.8525,-0.9881],[133.8349,-0.9914],[133.8297,-0.9914],[133.8297,-0.9851],[133.8277,-0.9561],[133.8247,-0.9471],[133.7927,-0.9401],[133.7687,-0.9361],[133.7427,-0.9291],[133.7177,-0.9281],[133.7017,-0.9241],[133.6827,-0.9161],[133.6488,-0.9061],[133.6268,-0.9051],[133.6158,-0.9051],[133.5498,-0.8951],[133.5128,-0.8901],[133.4898,-0.8881],[133.4881,-0.8874],[133.4976,-0.9225],[133.5113,-0.9643],[133.5167,-0.9743],[133.5167,-0.9986],[133.5038,-1.0051],[133.4692,-1.0185],[133.4692,-1.0308],[133.4644,-1.0442],[133.4635,-1.0546],[133.4558,-1.0699],[133.4444,-1.0861],[133.4206,-1.1156],[133.4139,-1.1299],[133.4054,-1.1451],[133.3882,-1.1661],[133.3673,-1.1947],[133.3606,-1.2061],[133.3482,-1.2413],[133.3434,-1.2575],[133.3344,-1.2754],[133.3675,-1.2858],[133.3869,-1.293],[133.4012,-1.2978],[133.41,-1.2983],[133.4266,-1.3014],[133.4571,-1.31],[133.4698,-1.3131],[133.5029,-1.3201],[133.5123,-1.3229],[133.5262,-1.3257],[133.5416,-1.3305],[133.5721,-1.338],[133.615,-1.3527],[133.6444,-1.3589],[133.6629,-1.3631],[133.6629,-1.3641],[133.6858,-1.3668],[133.7207,-1.3781],[133.7407,-1.3899],[133.7571,-1.4058],[133.773,-1.4279],[133.7997,-1.4464],[133.8295,-1.4762],[133.8762,-1.5152],[133.8806,-1.5141],[133.8911,-1.5042],[133.9076,-1.4932],[133.9141,-1.4877],[133.9215,-1.4769],[133.9364,-1.4651],[133.9511,-1.4554],[133.9563,-1.4491],[133.9775,-1.4366],[133.9896,-1.422],[134.004,-1.4284],[134.0242,-1.4345],[134.0404,-1.4407],[134.0608,-1.4115],[134.0614,-1.4099],[134.0611,-1.3876],[134.0696,-1.3781],[134.0797,-1.3627],[134.0922,-1.3483],[134.1073,-1.3326],[134.1046,-1.3238],[134.0978,-1.3133],[134.0958,-1.3051],[134.0899,-1.292],[134.087,-1.2883]]}},{"type":"Feature","properties":{"mhid":"1332:490","alt_name":"KABUPATEN PEGUNUNGAN ARFAK","latitude":-0.93523,"longitude":133.89587,"sample_value":909},"geometry":{"type":"LineString","coordinates":[[134.032,-0.8703],[134.0339,-0.8658],[134.0267,-0.8611],[134.0253,-0.8685],[134.032,-0.8703]]}},{"type":"Feature","properties":{"mhid":"1332:491","alt_name":"KOTA SORONG","latitude":-0.86507,"longitude":131.25153,"sample_value":763},"geometry":{"type":"LineString","coordinates":[[131.2564,-0.9241],[131.2519,-0.9306],[131.2527,-0.9337],[131.2625,-0.9354],[131.2564,-0.9241]]}},{"type":"Feature","properties":{"mhid":"1332:491","alt_name":"KOTA SORONG","latitude":-0.86507,"longitude":131.25153,"sample_value":763},"geometry":{"type":"LineString","coordinates":[[131.2373,-0.884],[131.2309,-0.8884],[131.2353,-0.8908],[131.2413,-0.8872],[131.2373,-0.884]]}},{"type":"Feature","properties":{"mhid":"1332:491","alt_name":"KOTA SORONG","latitude":-0.86507,"longitude":131.25153,"sample_value":763},"geometry":{"type":"LineString","coordinates":[[131.2059,-0.8826],[131.1968,-0.8854],[131.1888,-0.8926],[131.185,-0.8973],[131.1922,-0.8986],[131.1994,-0.8945],[131.2045,-0.8952],[131.2101,-0.8875],[131.2105,-0.8836],[131.2059,-0.8826]]}},{"type":"Feature","properties":{"mhid":"1332:491","alt_name":"KOTA SORONG","latitude":-0.86507,"longitude":131.25153,"sample_value":763},"geometry":{"type":"LineString","coordinates":[[131.2144,-0.834],[131.2082,-0.8372],[131.2172,-0.8416],[131.2144,-0.834]]}},{"type":"Feature","properties":{"mhid":"1332:491","alt_name":"KOTA SORONG","latitude":-0.86507,"longitude":131.25153,"sample_value":763},"geometry":{"type":"LineString","coordinates":[[131.3998,-0.7823],[131.3967,-0.7766],[131.392,-0.7784],[131.384,-0.7792],[131.3757,-0.7835],[131.3686,-0.7817],[131.3574,-0.7822],[131.3454,-0.7862],[131.3297,-0.7889],[131.3269,-0.7963],[131.3151,-0.7974],[131.3043,-0.803],[131.2982,-0.8028],[131.2941,-0.8057],[131.2826,-0.8054],[131.2743,-0.81],[131.2695,-0.8094],[131.2586,-0.8133],[131.2545,-0.8164],[131.2487,-0.8168],[131.2432,-0.82],[131.2328,-0.8165],[131.2249,-0.8221],[131.2304,-0.8304],[131.2356,-0.8306],[131.2395,-0.8379],[131.2415,-0.8387],[131.2453,-0.8465],[131.2439,-0.8506],[131.2457,-0.8545],[131.247,-0.8632],[131.2453,-0.878],[131.2522,-0.8776],[131.2577,-0.8813],[131.2622,-0.8824],[131.2631,-0.8859],[131.2694,-0.8893],[131.2711,-0.8946],[131.2802,-0.8979],[131.2859,-0.8969],[131.2882,-0.9003],[131.2863,-0.9059],[131.2885,-0.9111],[131.2948,-0.9135],[131.295,-0.9179],[131.2856,-0.9137],[131.2767,-0.9217],[131.2703,-0.9195],[131.2679,-0.9219],[131.2678,-0.9321],[131.27,-0.9338],[131.2804,-0.9316],[131.2846,-0.934],[131.2968,-0.9321],[131.3022,-0.9389],[131.3107,-0.9418],[131.3155,-0.9458],[131.3177,-0.9443],[131.3268,-0.945],[131.3317,-0.9476],[131.3407,-0.9467],[131.3463,-0.9507],[131.3553,-0.952],[131.3616,-0.9507],[131.3673,-0.9523],[131.3938,-0.9529],[131.4049,-0.9555],[131.4102,-0.955],[131.4175,-0.9513],[131.4246,-0.9461],[131.4268,-0.9475],[131.4332,-0.9438],[131.4336,-0.9374],[131.429,-0.928],[131.4313,-0.9214],[131.4296,-0.913],[131.4236,-0.9083],[131.4246,-0.9052],[131.4216,-0.9002],[131.4222,-0.8926],[131.4186,-0.8873],[131.4191,-0.8762],[131.4149,-0.8649],[131.4076,-0.8597],[131.403,-0.8612],[131.3968,-0.8565],[131.4052,-0.8504],[131.4017,-0.8424],[131.3947,-0.8383],[131.3921,-0.8314],[131.3916,-0.8248],[131.4025,-0.8233],[131.4063,-0.8148],[131.4046,-0.8094],[131.3976,-0.808],[131.3973,-0.8015],[131.4014,-0.795],[131.3998,-0.7823]]}},{"type":"Feature","properties":{"mhid":"1332:492","alt_name":"KABUPATEN MERAUKE","latitude":-7.66667,"longitude":139.66667,"sample_value":660},"geometry":{"type":"LineString","coordinates":[[138.9676,-8.3601],[138.9621,-8.3534],[138.9561,-8.3485],[138.9452,-8.3439],[138.9363,-8.3338],[138.926,-8.3241],[138.9207,-8.3292],[138.9186,-8.3393],[138.9187,-8.3448],[138.9238,-8.3588],[138.929,-8.3625],[138.9327,-8.3628],[138.9409,-8.3684],[138.9537,-8.3717],[138.964,-8.3697],[138.9674,-8.3676],[138.97,-8.3625],[138.9676,-8.3601]]}},{"type":"Feature","properties":{"mhid":"1332:492","alt_name":"KABUPATEN MERAUKE","latitude":-7.66667,"longitude":139.66667,"sample_value":660},"geometry":{"type":"LineString","coordinates":[[138.9568,-8.3326],[138.9528,-8.3317],[138.9442,-8.327],[138.9322,-8.3146],[138.9302,-8.3208],[138.9413,-8.3331],[138.9526,-8.3417],[138.9623,-8.3441],[138.9728,-8.3407],[138.9787,-8.3363],[138.9772,-8.3343],[138.9645,-8.3324],[138.9568,-8.3326]]}},{"type":"Feature","properties":{"mhid":"1332:492","alt_name":"KABUPATEN MERAUKE","latitude":-7.66667,"longitude":139.66667,"sample_value":660},"geometry":{"type":"LineString","coordinates":[[138.5828,-8.298],[138.5859,-8.2928],[138.5788,-8.2919],[138.5721,-8.2937],[138.5638,-8.2986],[138.5564,-8.3116],[138.5542,-8.32],[138.5565,-8.3265],[138.5672,-8.3206],[138.5694,-8.3093],[138.5719,-8.3051],[138.5828,-8.298]]}},{"type":"Feature","properties":{"mhid":"1332:492","alt_name":"KABUPATEN MERAUKE","latitude":-7.66667,"longitude":139.66667,"sample_value":660},"geometry":{"type":"LineString","coordinates":[[138.99,-8.2876],[138.9795,-8.2881],[138.9753,-8.2921],[138.9679,-8.2927],[138.9543,-8.2958],[138.9452,-8.3013],[138.9366,-8.3052],[138.9359,-8.3123],[138.9441,-8.3225],[138.9519,-8.3275],[138.958,-8.3295],[138.9717,-8.3299],[138.9766,-8.3281],[138.9792,-8.3235],[138.9885,-8.3174],[138.9908,-8.3146],[139.0011,-8.295],[138.9987,-8.2892],[138.99,-8.2876]]}},{"type":"Feature","properties":{"mhid":"1332:492","alt_name":"KABUPATEN MERAUKE","latitude":-7.66667,"longitude":139.66667,"sample_value":660},"geometry":{"type":"LineString","coordinates":[[138.8898,-8.2917],[138.882,-8.2895],[138.8708,-8.2841],[138.8611,-8.2869],[138.8547,-8.2916],[138.853,-8.2963],[138.8547,-8.3035],[138.8496,-8.3057],[138.8483,-8.3099],[138.8528,-8.3165],[138.8524,-8.325],[138.8496,-8.3293],[138.8518,-8.3412],[138.8499,-8.345],[138.8527,-8.3527],[138.8486,-8.357],[138.851,-8.3606],[138.8483,-8.3653],[138.8451,-8.3807],[138.8416,-8.3811],[138.8392,-8.3854],[138.8205,-8.3857],[138.8045,-8.3819],[138.8035,-8.3846],[138.812,-8.3876],[138.8275,-8.3891],[138.8405,-8.389],[138.8544,-8.3911],[138.8671,-8.3909],[138.8743,-8.3893],[138.883,-8.3893],[138.8937,-8.3878],[138.9014,-8.3847],[138.9066,-8.3796],[138.91,-8.3735],[138.9146,-8.3598],[138.9121,-8.3454],[138.9148,-8.3196],[138.9169,-8.3084],[138.9141,-8.297],[138.901,-8.2884],[138.8952,-8.2919],[138.8898,-8.2917]]}},{"type":"Feature","properties":{"mhid":"1332:492","alt_name":"KABUPATEN MERAUKE","latitude":-7.66667,"longitude":139.66667,"sample_value":660},"geometry":{"type":"LineString","coordinates":[[138.8763,-8.2728],[138.8593,-8.2668],[138.856,-8.2695],[138.8626,-8.2734],[138.8754,-8.2831],[138.8825,-8.2877],[138.8909,-8.2897],[138.8952,-8.289],[138.901,-8.2802],[138.8958,-8.2718],[138.8902,-8.2689],[138.8763,-8.2728]]}},{"type":"Feature","properties":{"mhid":"1332:492","alt_name":"KABUPATEN MERAUKE","latitude":-7.66667,"longitude":139.66667,"sample_value":660},"geometry":{"type":"LineString","coordinates":[[138.9977,-8.2841],[138.9986,-8.2782],[138.9967,-8.2739],[138.9956,-8.2648],[138.9869,-8.2677],[138.9788,-8.2759],[138.9807,-8.2878],[138.9851,-8.2868],[138.9955,-8.2879],[138.9977,-8.2841]]}},{"type":"Feature","properties":{"mhid":"1332:492","alt_name":"KABUPATEN MERAUKE","latitude":-7.66667,"longitude":139.66667,"sample_value":660},"geometry":{"type":"LineString","coordinates":[[138.8559,-8.2686],[138.8583,-8.2663],[138.8488,-8.2569],[138.8463,-8.2583],[138.85,-8.2648],[138.8559,-8.2686]]}},{"type":"Feature","properties":{"mhid":"1332:492","alt_name":"KABUPATEN MERAUKE","latitude":-7.66667,"longitude":139.66667,"sample_value":660},"geometry":{"type":"LineString","coordinates":[[138.9961,-8.235],[138.9939,-8.2296],[138.9868,-8.2343],[138.979,-8.236],[138.9709,-8.2394],[138.9676,-8.2425],[138.964,-8.2545],[138.9586,-8.2606],[138.9468,-8.2638],[138.9414,-8.2678],[138.937,-8.2755],[138.9325,-8.2782],[138.9241,-8.2792],[138.9292,-8.2902],[138.9338,-8.3028],[138.937,-8.3033],[138.9541,-8.2947],[138.9676,-8.2919],[138.9734,-8.2917],[138.9793,-8.2874],[138.9782,-8.2758],[138.9831,-8.2701],[138.9947,-8.2623],[138.9915,-8.2564],[138.99,-8.2422],[138.9967,-8.2381],[138.9961,-8.235]]}},{"type":"Feature","properties":{"mhid":"1332:492","alt_name":"KABUPATEN MERAUKE","latitude":-7.66667,"longitude":139.66667,"sample_value":660},"geometry":{"type":"LineString","coordinates":[[138.6472,-8.2348],[138.6514,-8.2336],[138.6577,-8.2241],[138.6556,-8.2204],[138.6441,-8.2279],[138.6439,-8.2318],[138.6472,-8.2348]]}},{"type":"Feature","properties":{"mhid":"1332:492","alt_name":"KABUPATEN MERAUKE","latitude":-7.66667,"longitude":139.66667,"sample_value":660},"geometry":{"type":"LineString","coordinates":[[138.8814,-8.271],[138.8908,-8.2661],[138.8869,-8.2547],[138.8867,-8.2386],[138.8824,-8.236],[138.8712,-8.2248],[138.8689,-8.2211],[138.8523,-8.2056],[138.849,-8.2078],[138.848,-8.2427],[138.8481,-8.2527],[138.8502,-8.2563],[138.8612,-8.266],[138.8734,-8.2708],[138.8814,-8.271]]}},{"type":"Feature","properties":{"mhid":"1332:492","alt_name":"KABUPATEN MERAUKE","latitude":-7.66667,"longitude":139.66667,"sample_value":660},"geometry":{"type":"LineString","coordinates":[[138.7102,-8.1642],[138.7146,-8.1601],[138.7076,-8.1542],[138.6958,-8.1536],[138.6939,-8.1575],[138.6993,-8.1614],[138.7065,-8.1645],[138.7102,-8.1642]]}},{"type":"Feature","properties":{"mhid":"1332:492","alt_name":"KABUPATEN MERAUKE","latitude":-7.66667,"longitude":139.66667,"sample_value":660},"geometry":{"type":"LineString","coordinates":[[138.7501,-8.1527],[138.7581,-8.1456],[138.7553,-8.1439],[138.7493,-8.151],[138.7501,-8.1527]]}},{"type":"Feature","properties":{"mhid":"1332:492","alt_name":"KABUPATEN MERAUKE","latitude":-7.66667,"longitude":139.66667,"sample_value":660},"geometry":{"type":"LineString","coordinates":[[138.8189,-8.1505],[138.8229,-8.1479],[138.8155,-8.138],[138.8019,-8.1454],[138.7944,-8.1481],[138.7775,-8.1501],[138.7701,-8.1524],[138.7556,-8.1624],[138.7449,-8.1657],[138.7307,-8.1661],[138.7107,-8.1711],[138.6969,-8.1709],[138.6883,-8.1682],[138.6784,-8.1715],[138.6772,-8.1821],[138.6734,-8.2039],[138.6718,-8.2173],[138.6657,-8.2315],[138.6618,-8.2372],[138.6449,-8.2524],[138.6376,-8.2577],[138.6225,-8.2658],[138.6049,-8.2797],[138.5936,-8.2869],[138.5862,-8.2902],[138.5848,-8.2969],[138.5729,-8.3054],[138.5704,-8.3083],[138.5689,-8.3181],[138.5652,-8.3238],[138.5556,-8.3287],[138.552,-8.3348],[138.56,-8.3485],[138.5673,-8.3556],[138.578,-8.3586],[138.5895,-8.3604],[138.599,-8.3633],[138.6164,-8.3664],[138.6178,-8.3647],[138.6297,-8.3678],[138.64,-8.3676],[138.6516,-8.369],[138.6549,-8.3709],[138.6622,-8.3712],[138.6725,-8.369],[138.6797,-8.3712],[138.6866,-8.376],[138.6989,-8.3771],[138.7048,-8.3785],[138.7093,-8.3815],[138.727,-8.3851],[138.7411,-8.3865],[138.751,-8.3866],[138.7743,-8.3844],[138.7919,-8.3815],[138.7976,-8.3792],[138.8168,-8.3831],[138.8224,-8.3849],[138.8394,-8.3844],[138.8412,-8.3728],[138.8466,-8.3722],[138.8477,-8.3652],[138.8506,-8.361],[138.8484,-8.3577],[138.8524,-8.3497],[138.8498,-8.3462],[138.8514,-8.342],[138.8493,-8.3282],[138.8515,-8.3267],[138.8523,-8.3152],[138.8478,-8.3099],[138.8499,-8.305],[138.8538,-8.3039],[138.8527,-8.2945],[138.859,-8.2875],[138.8705,-8.2835],[138.8677,-8.2805],[138.858,-8.2742],[138.8469,-8.2643],[138.8439,-8.2581],[138.8426,-8.248],[138.8448,-8.2229],[138.8449,-8.2117],[138.8462,-8.1989],[138.8412,-8.1789],[138.8392,-8.1741],[138.8278,-8.1579],[138.8223,-8.1489],[138.8189,-8.1505]]}},{"type":"Feature","properties":{"mhid":"1332:492","alt_name":"KABUPATEN MERAUKE","latitude":-7.66667,"longitude":139.66667,"sample_value":660},"geometry":{"type":"LineString","coordinates":[[138.917,-7.8968],[138.938,-7.8867],[138.9371,-7.8825],[138.9247,-7.8868],[138.9177,-7.8921],[138.917,-7.8968]]}},{"type":"Feature","properties":{"mhid":"1332:492","alt_name":"KABUPATEN MERAUKE","latitude":-7.66667,"longitude":139.66667,"sample_value":660},"geometry":{"type":"LineString","coordinates":[[138.673,-7.3662],[138.6651,-7.3682],[138.6526,-7.3693],[138.6422,-7.3721],[138.6382,-7.3695],[138.6249,-7.3704],[138.5938,-7.3786],[138.5873,-7.3794],[138.5634,-7.3856],[138.5378,-7.3887],[138.5331,-7.3901],[138.5162,-7.391],[138.4909,-7.3935],[138.4753,-7.3959],[138.4598,-7.399],[138.445,-7.4001],[138.4444,-7.4012],[138.4308,-7.4022],[138.4127,-7.4054],[138.3958,-7.4089],[138.3732,-7.4146],[138.3638,-7.4157],[138.3566,-7.4195],[138.3386,-7.424],[138.3191,-7.4306],[138.3083,-7.4329],[138.3013,-7.4365],[138.2881,-7.4398],[138.2853,-7.4424],[138.265,-7.4506],[138.2565,-7.4548],[138.2456,-7.459],[138.2369,-7.4634],[138.2268,-7.4665],[138.2161,-7.4718],[138.2049,-7.4803],[138.1944,-7.4847],[138.1815,-7.4946],[138.171,-7.4992],[138.1612,-7.5074],[138.1574,-7.5086],[138.1389,-7.5225],[138.1196,-7.5361],[138.1145,-7.5433],[138.109,-7.5451],[138.108,-7.5492],[138.1001,-7.553],[138.0971,-7.5599],[138.0895,-7.5666],[138.0863,-7.5747],[138.077,-7.5755],[138.0739,-7.5821],[138.0623,-7.5898],[138.051,-7.5993],[138.0374,-7.6135],[138.0289,-7.6234],[138.0212,-7.6352],[138.0074,-7.6529],[138.0029,-7.6599],[137.9905,-7.6762],[137.976,-7.7017],[137.9717,-7.7178],[137.9712,-7.729],[137.9678,-7.7348],[137.9577,-7.7353],[137.9541,-7.7413],[137.9489,-7.7419],[137.9421,-7.747],[137.9328,-7.7555],[137.9268,-7.7625],[137.919,-7.7739],[137.9144,-7.7773],[137.9102,-7.7849],[137.9069,-7.7868],[137.9024,-7.7968],[137.8948,-7.8088],[137.8936,-7.8144],[137.8887,-7.8201],[137.8831,-7.8301],[137.877,-7.8463],[137.8733,-7.8472],[137.8687,-7.8528],[137.8663,-7.8635],[137.8599,-7.8704],[137.8587,-7.8812],[137.8499,-7.8899],[137.8489,-7.8961],[137.8364,-7.9153],[137.8361,-7.9185],[137.8399,-7.9237],[137.8345,-7.9242],[137.829,-7.9331],[137.8293,-7.9381],[137.825,-7.9416],[137.8174,-7.9536],[137.8198,-7.9568],[137.814,-7.9662],[137.8127,-7.9722],[137.8093,-7.9761],[137.8048,-7.9857],[137.8047,-7.9894],[137.8001,-8.0004],[137.7984,-8.012],[137.8022,-8.0249],[137.8096,-8.0329],[137.8144,-8.0337],[137.8157,-8.0383],[137.8035,-8.0448],[137.797,-8.0461],[137.7961,-8.0488],[137.7856,-8.0519],[137.7782,-8.0598],[137.7778,-8.063],[137.7721,-8.0654],[137.7666,-8.0704],[137.7639,-8.0771],[137.7636,-8.0852],[137.7602,-8.0861],[137.7536,-8.0929],[137.7521,-8.1012],[137.745,-8.1061],[137.7406,-8.116],[137.733,-8.1267],[137.7276,-8.1331],[137.7287,-8.1363],[137.721,-8.1446],[137.7137,-8.1644],[137.7065,-8.1722],[137.7072,-8.176],[137.7038,-8.1798],[137.7036,-8.1852],[137.6988,-8.1957],[137.696,-8.2057],[137.6918,-8.2127],[137.6893,-8.2248],[137.684,-8.236],[137.6833,-8.244],[137.6799,-8.2543],[137.6781,-8.2679],[137.6755,-8.272],[137.6749,-8.2787],[137.6715,-8.2844],[137.6712,-8.2928],[137.6674,-8.2996],[137.6643,-8.3148],[137.6604,-8.3434],[137.6615,-8.346],[137.6555,-8.3676],[137.6515,-8.3763],[137.6471,-8.3904],[137.6434,-8.4082],[137.6431,-8.413],[137.6403,-8.4176],[137.6403,-8.4233],[137.6427,-8.4309],[137.6508,-8.4419],[137.6551,-8.4461],[137.6622,-8.4469],[137.6642,-8.4404],[137.6727,-8.437],[137.684,-8.429],[137.6906,-8.4193],[137.6966,-8.4214],[137.7113,-8.4147],[137.7364,-8.4057],[137.752,-8.4023],[137.8006,-8.3932],[137.8332,-8.3888],[137.8571,-8.3849],[137.8631,-8.382],[137.8705,-8.3726],[137.8745,-8.3738],[137.8755,-8.3789],[137.88,-8.3812],[137.8925,-8.3828],[137.9133,-8.3838],[137.9371,-8.3835],[137.9725,-8.3847],[137.9797,-8.3845],[137.9925,-8.3824],[138.0033,-8.3853],[138.0491,-8.3867],[138.0537,-8.3858],[138.069,-8.3863],[138.0766,-8.3874],[138.0888,-8.3859],[138.0953,-8.3836],[138.1012,-8.3857],[138.1159,-8.3864],[138.1334,-8.3841],[138.1414,-8.3844],[138.1483,-8.386],[138.155,-8.3849],[138.1665,-8.3851],[138.1786,-8.3842],[138.1882,-8.3852],[138.1924,-8.3827],[138.1979,-8.3841],[138.2054,-8.3831],[138.2227,-8.3784],[138.228,-8.3805],[138.2286,-8.3845],[138.2399,-8.3874],[138.2457,-8.3875],[138.2565,-8.3912],[138.2639,-8.3919],[138.2634,-8.3993],[138.2616,-8.4058],[138.2625,-8.4131],[138.2653,-8.4194],[138.2728,-8.4222],[138.2811,-8.4234],[138.3033,-8.4249],[138.341,-8.4197],[138.3676,-8.4131],[138.3878,-8.4066],[138.409,-8.3987],[138.4278,-8.3899],[138.4412,-8.3847],[138.4523,-8.3761],[138.466,-8.3671],[138.4836,-8.3529],[138.4945,-8.3426],[138.5008,-8.3295],[138.4991,-8.3203],[138.5009,-8.316],[138.5188,-8.311],[138.5271,-8.307],[138.5347,-8.305],[138.5537,-8.2873],[138.5676,-8.2773],[138.6003,-8.2587],[138.6151,-8.2495],[138.6194,-8.2428],[138.6314,-8.2316],[138.6496,-8.2097],[138.653,-8.2047],[138.6598,-8.1745],[138.6662,-8.1627],[138.675,-8.1529],[138.6832,-8.1472],[138.6937,-8.1461],[138.711,-8.1464],[138.7211,-8.1489],[138.7327,-8.1537],[138.7457,-8.1506],[138.7508,-8.1474],[138.755,-8.1423],[138.762,-8.1436],[138.7789,-8.1393],[138.7944,-8.1395],[138.801,-8.1365],[138.8109,-8.1145],[138.81,-8.1037],[138.8112,-8.0981],[138.8164,-8.0898],[138.8257,-8.0801],[138.8345,-8.0752],[138.8525,-8.0697],[138.8598,-8.0687],[138.8743,-8.0705],[138.8849,-8.0734],[138.9029,-8.0766],[138.9127,-8.0763],[138.9144,-8.071],[138.9127,-8.0615],[138.9103,-8.0588],[138.9027,-8.0562],[138.8978,-8.0522],[138.8915,-8.043],[138.8891,-8.0367],[138.8887,-8.0293],[138.8898,-8.021],[138.8935,-8.0116],[138.8999,-8.0007],[138.9021,-7.9912],[138.9024,-7.9696],[138.8975,-7.9518],[138.892,-7.9358],[138.8904,-7.9208],[138.8921,-7.9126],[138.8979,-7.9013],[138.9095,-7.8898],[138.9194,-7.8827],[138.9316,-7.8755],[138.954,-7.8699],[138.9778,-7.8626],[138.984,-7.8596],[138.9943,-7.8497],[138.9978,-7.8413],[138.9997,-7.8309],[138.9974,-7.8105],[138.9926,-7.7918],[138.9902,-7.7787],[138.9905,-7.7608],[138.9951,-7.7454],[139.0022,-7.7287],[139.0235,-7.702],[139.0319,-7.69],[139.0333,-7.6863],[139.0339,-7.6742],[139.0328,-7.6572],[139.0363,-7.6404],[139.0412,-7.6282],[139.0482,-7.6166],[139.0532,-7.6103],[139.0665,-7.5977],[139.0788,-7.5897],[139.0832,-7.5848],[139.0876,-7.5739],[139.0815,-7.569],[139.0759,-7.5671],[139.0685,-7.5674],[139.0517,-7.5653],[139.0373,-7.5627],[139.024,-7.5578],[139.0002,-7.5596],[138.9934,-7.559],[138.9748,-7.5553],[138.9644,-7.5526],[138.9556,-7.5516],[138.9347,-7.5435],[138.9288,-7.5382],[138.9257,-7.5379],[138.9238,-7.5322],[138.9133,-7.5238],[138.9043,-7.5129],[138.893,-7.4964],[138.8859,-7.4822],[138.8747,-7.4527],[138.8663,-7.4389],[138.844,-7.4159],[138.823,-7.3997],[138.8111,-7.3921],[138.7961,-7.3848],[138.7789,-7.3777],[138.7727,-7.3778],[138.7638,-7.3742],[138.7451,-7.3706],[138.7305,-7.3717],[138.7239,-7.3698],[138.7106,-7.3691],[138.7037,-7.3709],[138.6963,-7.3687],[138.684,-7.3673],[138.6784,-7.3686],[138.673,-7.3662]]}},{"type":"Feature","properties":{"mhid":"1332:492","alt_name":"KABUPATEN MERAUKE","latitude":-7.66667,"longitude":139.66667,"sample_value":660},"geometry":{"type":"LineString","coordinates":[[138.6673,-7.2142],[138.6748,-7.2236],[138.6904,-7.2327],[138.7023,-7.2366],[138.7113,-7.2382],[138.7262,-7.2448],[138.7312,-7.2494],[138.7449,-7.2557],[138.7535,-7.2575],[138.7715,-7.2629],[138.7929,-7.2817],[138.7991,-7.2902],[138.8187,-7.2998],[138.8272,-7.3026],[138.8324,-7.3026],[138.8407,-7.3068],[138.8553,-7.3105],[138.87,-7.3213],[138.8814,-7.3332],[138.8838,-7.3343],[138.8981,-7.3523],[138.9086,-7.3722],[138.9137,-7.3853],[138.9197,-7.3948],[138.9219,-7.4023],[138.9225,-7.4097],[138.9326,-7.4353],[138.9371,-7.4483],[138.9406,-7.4631],[138.9429,-7.4691],[138.9455,-7.4821],[138.9582,-7.5115],[138.9629,-7.5177],[138.9709,-7.522],[138.9816,-7.5215],[139.0014,-7.5168],[139.0218,-7.5149],[139.0416,-7.5145],[139.0523,-7.5163],[139.0797,-7.5263],[139.0922,-7.533],[139.1,-7.5399],[139.1062,-7.5497],[139.1091,-7.5619],[139.1139,-7.5678],[139.1126,-7.5735],[139.1098,-7.5751],[139.1084,-7.6],[139.0956,-7.6081],[139.0871,-7.6157],[139.0727,-7.6262],[139.0661,-7.6347],[139.0619,-7.6438],[139.0584,-7.6563],[139.0562,-7.6894],[139.0546,-7.6965],[139.0504,-7.7061],[139.0387,-7.7202],[139.0298,-7.7319],[139.0184,-7.7506],[139.0146,-7.7654],[139.0141,-7.7769],[139.0161,-7.7908],[139.0224,-7.8114],[139.0243,-7.8202],[139.0251,-7.834],[139.0239,-7.8403],[139.0184,-7.854],[139.0101,-7.8626],[138.9921,-7.874],[138.9741,-7.8828],[138.9592,-7.891],[138.935,-7.8998],[138.9238,-7.9068],[138.9165,-7.9144],[138.9133,-7.92],[138.909,-7.9317],[138.912,-7.9394],[138.9197,-7.9535],[138.9222,-7.9614],[138.9225,-7.9765],[138.9201,-7.9862],[138.9072,-8.0146],[138.9034,-8.026],[138.9046,-8.0338],[138.9092,-8.0388],[138.9213,-8.0495],[138.9275,-8.0613],[138.9277,-8.0687],[138.9241,-8.0768],[138.9202,-8.0818],[138.908,-8.0876],[138.8836,-8.088],[138.8765,-8.0866],[138.8621,-8.0897],[138.8557,-8.0929],[138.8432,-8.1016],[138.8381,-8.1082],[138.835,-8.1163],[138.8336,-8.1262],[138.8344,-8.1352],[138.837,-8.1429],[138.8428,-8.1512],[138.8488,-8.1624],[138.8555,-8.1847],[138.8594,-8.1905],[138.8726,-8.2055],[138.8794,-8.2162],[138.884,-8.2215],[138.8901,-8.2259],[138.9,-8.2364],[138.9043,-8.2457],[138.9073,-8.2611],[138.9148,-8.2717],[138.9217,-8.2768],[138.932,-8.2769],[138.9357,-8.2757],[138.9386,-8.2698],[138.9448,-8.2637],[138.9612,-8.2584],[138.9634,-8.2545],[138.9664,-8.244],[138.9704,-8.239],[138.9774,-8.2358],[138.9879,-8.2332],[138.9931,-8.2284],[138.9887,-8.2233],[138.9809,-8.221],[138.9775,-8.2156],[138.9698,-8.2065],[138.9719,-8.2031],[138.9765,-8.202],[138.9886,-8.2023],[138.9912,-8.1975],[138.9995,-8.1915],[139.0076,-8.1892],[139.0238,-8.1774],[139.0273,-8.1729],[139.0303,-8.1731],[139.0466,-8.165],[139.0681,-8.153],[139.0707,-8.1466],[139.0655,-8.1415],[139.0671,-8.1361],[139.0836,-8.1372],[139.0966,-8.1337],[139.1149,-8.1265],[139.133,-8.1202],[139.1708,-8.1098],[139.1892,-8.1027],[139.1942,-8.1021],[139.2052,-8.0979],[139.2238,-8.0949],[139.2278,-8.0983],[139.2303,-8.1113],[139.2328,-8.1153],[139.2327,-8.1198],[139.2397,-8.1272],[139.2423,-8.1348],[139.2493,-8.1406],[139.2514,-8.1448],[139.2509,-8.1499],[139.2564,-8.1561],[139.271,-8.1669],[139.2782,-8.1768],[139.2817,-8.1782],[139.3013,-8.1796],[139.3074,-8.184],[139.3091,-8.1896],[139.3182,-8.1981],[139.3287,-8.2008],[139.3398,-8.2059],[139.3596,-8.2037],[139.3768,-8.2036],[139.4037,-8.2002],[139.4184,-8.1991],[139.4238,-8.198],[139.449,-8.1949],[139.4566,-8.1935],[139.4891,-8.1765],[139.496,-8.1743],[139.5013,-8.1746],[139.5084,-8.1785],[139.5214,-8.1711],[139.5343,-8.1647],[139.5802,-8.1442],[139.5858,-8.14],[139.5808,-8.1371],[139.5844,-8.1299],[139.5974,-8.1289],[139.6104,-8.1256],[139.6263,-8.1205],[139.6448,-8.1153],[139.6673,-8.1105],[139.7061,-8.1044],[139.7116,-8.0988],[139.7187,-8.0998],[139.7398,-8.0988],[139.779,-8.0993],[139.8185,-8.1022],[139.8362,-8.1008],[139.8527,-8.1019],[139.8546,-8.1051],[139.8594,-8.1061],[139.8827,-8.1088],[139.89,-8.108],[139.9118,-8.1074],[139.9223,-8.106],[139.9268,-8.1072],[139.9377,-8.1042],[139.9416,-8.1021],[139.9552,-8.1133],[139.9571,-8.1244],[139.9566,-8.135],[139.9597,-8.1475],[139.9637,-8.1565],[139.9753,-8.1763],[139.9938,-8.2001],[140.0167,-8.2213],[140.0448,-8.2457],[140.0504,-8.2513],[140.0603,-8.259],[140.0971,-8.2845],[140.1123,-8.2947],[140.1271,-8.3032],[140.1459,-8.3174],[140.1565,-8.3274],[140.1699,-8.3371],[140.1799,-8.3427],[140.1949,-8.3485],[140.2286,-8.3575],[140.2271,-8.3692],[140.232,-8.3782],[140.2429,-8.3913],[140.2608,-8.4097],[140.2886,-8.4344],[140.3133,-8.4547],[140.3313,-8.4675],[140.3374,-8.4709],[140.3461,-8.4701],[140.3555,-8.4748],[140.3613,-8.4832],[140.3649,-8.4938],[140.3749,-8.508],[140.3845,-8.5181],[140.4054,-8.5369],[140.4274,-8.5546],[140.4359,-8.5657],[140.4612,-8.588],[140.4774,-8.5988],[140.4919,-8.6079],[140.4984,-8.6105],[140.5029,-8.6163],[140.5088,-8.627],[140.5106,-8.6361],[140.5144,-8.647],[140.5181,-8.6534],[140.518,-8.6586],[140.5243,-8.6734],[140.5293,-8.6876],[140.5403,-8.7034],[140.5453,-8.7089],[140.5608,-8.729],[140.5661,-8.7371],[140.5785,-8.7528],[140.5868,-8.7653],[140.6,-8.7941],[140.6159,-8.8133],[140.651,-8.8473],[140.6613,-8.8559],[140.6662,-8.8613],[140.6794,-8.8738],[140.6871,-8.8797],[140.7048,-8.8902],[140.7104,-8.8947],[140.7221,-8.9084],[140.7265,-8.9092],[140.7314,-8.9165],[140.7389,-8.9236],[140.7476,-8.93],[140.7608,-8.9437],[140.7707,-8.9531],[140.7896,-8.9736],[140.7909,-8.9766],[140.8044,-8.9939],[140.8083,-9.0002],[140.8128,-9.0045],[140.8197,-9.0158],[140.8357,-9.0322],[140.8434,-9.0389],[140.8483,-9.0412],[140.8606,-9.0504],[140.8723,-9.0606],[140.8765,-9.0658],[140.8863,-9.0747],[140.8928,-9.082],[140.8931,-9.0851],[140.8998,-9.0897],[140.9131,-9.0919],[140.9222,-9.0917],[140.9358,-9.0939],[140.9394,-9.0967],[140.9624,-9.1029],[140.9669,-9.1061],[140.9775,-9.1076],[140.9905,-9.1131],[141,-9.1182],[141.019,-9.1204],[141.0191,-8.8004],[141.0191,-8.6551],[141.0191,-8.5276],[141.0191,-8.2988],[141.0192,-8.0928],[141.0192,-8.0161],[141.0192,-7.7654],[141.0193,-7.5723],[141.0193,-7.3692],[141.0193,-7.329],[141.0194,-6.8899],[141,-6.8899],[140.9988,-6.9003],[140.9943,-6.9043],[140.9889,-6.9048],[140.9801,-6.9019],[140.9754,-6.8962],[140.9724,-6.8903],[140.9664,-6.8917],[140.9599,-6.8967],[140.9592,-6.9062],[140.9562,-6.912],[140.9526,-6.9104],[140.951,-6.9031],[140.943,-6.8973],[140.9384,-6.891],[140.9399,-6.8868],[140.9479,-6.8776],[140.9519,-6.8714],[140.9542,-6.8645],[140.953,-6.8576],[140.9488,-6.8586],[140.9477,-6.8648],[140.9433,-6.8726],[140.9384,-6.8744],[140.9224,-6.8708],[140.9145,-6.8731],[140.9122,-6.864],[140.9079,-6.8583],[140.9004,-6.8512],[140.8958,-6.8441],[140.8963,-6.8401],[140.904,-6.8409],[140.9081,-6.8373],[140.9127,-6.8294],[140.9176,-6.8263],[140.9179,-6.8203],[140.9156,-6.8147],[140.911,-6.8085],[140.9072,-6.8064],[140.9003,-6.8079],[140.8899,-6.8136],[140.8858,-6.8119],[140.8851,-6.8027],[140.8816,-6.8002],[140.8723,-6.7973],[140.8695,-6.7929],[140.8759,-6.7873],[140.8782,-6.7831],[140.8772,-6.7702],[140.8817,-6.7673],[140.8886,-6.7672],[140.8933,-6.7649],[140.8998,-6.7551],[140.8994,-6.7526],[140.893,-6.7526],[140.8895,-6.7496],[140.8868,-6.7396],[140.8753,-6.7329],[140.863,-6.7305],[140.8521,-6.726],[140.8465,-6.7223],[140.8452,-6.7188],[140.8522,-6.71],[140.8517,-6.6961],[140.8449,-6.6836],[140.8484,-6.68],[140.8623,-6.6827],[140.8667,-6.6808],[140.8698,-6.6747],[140.8606,-6.6665],[140.861,-6.659],[140.8701,-6.6553],[140.8727,-6.652],[140.8614,-6.6502],[140.8557,-6.6467],[140.8557,-6.6403],[140.8666,-6.6347],[140.8734,-6.6299],[140.876,-6.6221],[140.8701,-6.6184],[140.8528,-6.6194],[140.8483,-6.6182],[140.7816,-6.6728],[140.6944,-6.7443],[140.6081,-6.815],[140.5347,-6.8752],[140.4263,-6.9641],[140.3008,-7.067],[140.0902,-7.2395],[140.0578,-7.2661],[139.9858,-7.3252],[139.9102,-7.3871],[139.8287,-7.4539],[139.695,-7.4263],[139.53,-7.3922],[139.4001,-7.3654],[139.1954,-7.3232],[138.6673,-7.2142]]}},{"type":"Feature","properties":{"mhid":"1332:493","alt_name":"KABUPATEN JAYAWIJAYA","latitude":-4.08333,"longitude":139.08333,"sample_value":425},"geometry":{"type":"LineString","coordinates":[[138.9778,-3.9225],[138.9639,-3.9119],[138.9426,-3.9035],[138.919,-3.8998],[138.906,-3.8767],[138.8945,-3.8596],[138.8999,-3.8427],[138.8981,-3.8228],[138.9017,-3.8035],[138.9068,-3.7976],[138.8905,-3.7949],[138.8713,-3.7865],[138.8603,-3.7841],[138.8456,-3.7759],[138.8236,-3.7662],[138.8049,-3.7596],[138.7843,-3.8232],[138.7571,-3.8106],[138.7377,-3.7971],[138.7136,-3.7877],[138.6797,-3.7856],[138.6422,-3.781],[138.6241,-3.7812],[138.6113,-3.7843],[138.6076,-3.7952],[138.6073,-3.803],[138.6034,-3.8282],[138.6018,-3.8456],[138.6096,-3.848],[138.6444,-3.8444],[138.6582,-3.8426],[138.6804,-3.8432],[138.6957,-3.8482],[138.7067,-3.8493],[138.7178,-3.8489],[138.7178,-3.8547],[138.7084,-3.8876],[138.726,-3.8989],[138.728,-3.9118],[138.7043,-3.9459],[138.6898,-3.9598],[138.6773,-3.9687],[138.661,-4.0058],[138.648,-4.0274],[138.6337,-4.0774],[138.6147,-4.0963],[138.6042,-4.1195],[138.5995,-4.1409],[138.64,-4.1382],[138.6804,-4.149],[138.7263,-4.1733],[138.7046,-4.1928],[138.6603,-4.2444],[138.6286,-4.2878],[138.61,-4.3287],[138.6086,-4.3517],[138.5939,-4.3789],[138.5927,-4.4016],[138.6007,-4.4367],[138.6166,-4.4674],[138.6234,-4.4855],[138.7202,-4.4716],[138.7166,-4.4574],[138.7147,-4.4422],[138.7092,-4.3285],[138.8391,-4.2666],[138.8985,-4.2525],[139.0142,-4.2048],[139.0479,-4.1929],[139.1116,-4.1752],[139.1616,-4.1623],[139.1834,-4.1574],[139.2294,-4.1461],[139.2826,-4.1324],[139.3261,-4.1244],[139.3511,-4.1187],[139.3624,-4.1139],[139.3489,-4.0889],[139.3278,-4.0731],[139.3053,-4.0585],[139.2908,-4.048],[139.2473,-4.0124],[139.2052,-4.0098],[139.1471,-4.0184],[139.0252,-4.0434],[139.0215,-4.0334],[139.0049,-3.9944],[138.9917,-3.967],[138.9801,-3.9406],[138.9778,-3.9225]]}},{"type":"Feature","properties":{"mhid":"1332:494","alt_name":"KABUPATEN JAYAPURA","latitude":-3,"longitude":139.95,"sample_value":699},"geometry":{"type":"LineString","coordinates":[[140.6528,-2.4762],[140.6486,-2.4712],[140.6499,-2.4669],[140.6438,-2.4638],[140.6412,-2.4668],[140.6347,-2.4685],[140.631,-2.4647],[140.633,-2.4549],[140.6298,-2.4528],[140.6266,-2.4557],[140.6227,-2.4517],[140.617,-2.4491],[140.6155,-2.4448],[140.609,-2.4403],[140.6009,-2.4492],[140.5983,-2.4549],[140.5835,-2.4526],[140.579,-2.4461],[140.5703,-2.451],[140.5599,-2.4501],[140.5592,-2.4398],[140.5554,-2.4395],[140.5515,-2.4454],[140.5469,-2.4446],[140.5447,-2.4486],[140.5377,-2.4449],[140.5383,-2.4387],[140.5298,-2.4381],[140.5299,-2.4342],[140.5271,-2.4282],[140.5223,-2.4283],[140.5188,-2.4315],[140.5131,-2.4297],[140.5079,-2.4331],[140.5021,-2.4402],[140.5008,-2.4439],[140.496,-2.4433],[140.4913,-2.4395],[140.4877,-2.4396],[140.4855,-2.4332],[140.4793,-2.4288],[140.4674,-2.4297],[140.466,-2.4322],[140.4562,-2.4297],[140.4449,-2.4206],[140.436,-2.4179],[140.4341,-2.4134],[140.4278,-2.4162],[140.423,-2.4144],[140.4128,-2.4138],[140.4123,-2.4111],[140.4037,-2.4075],[140.3946,-2.4069],[140.3922,-2.403],[140.386,-2.3997],[140.3728,-2.399],[140.3663,-2.4027],[140.3553,-2.4013],[140.3483,-2.3953],[140.344,-2.3974],[140.3432,-2.4032],[140.3489,-2.4105],[140.3533,-2.403],[140.3564,-2.403],[140.36,-2.4086],[140.3602,-2.4145],[140.3758,-2.4301],[140.3684,-2.4458],[140.3732,-2.4497],[140.3695,-2.4603],[140.3648,-2.457],[140.3597,-2.4562],[140.359,-2.4496],[140.3528,-2.4491],[140.3531,-2.455],[140.3472,-2.4624],[140.3398,-2.4625],[140.3356,-2.4649],[140.3342,-2.4586],[140.3393,-2.4556],[140.3389,-2.4514],[140.3352,-2.4483],[140.3278,-2.4509],[140.3194,-2.4483],[140.3147,-2.4451],[140.3125,-2.4402],[140.3006,-2.4437],[140.2943,-2.4397],[140.2961,-2.4324],[140.2897,-2.4256],[140.2802,-2.4262],[140.2755,-2.422],[140.272,-2.4234],[140.2693,-2.42],[140.2661,-2.4236],[140.2614,-2.4196],[140.2579,-2.4108],[140.2532,-2.4046],[140.253,-2.4014],[140.2451,-2.4],[140.2444,-2.4045],[140.2334,-2.4033],[140.229,-2.4052],[140.224,-2.4132],[140.21,-2.4089],[140.2029,-2.4019],[140.1992,-2.3939],[140.191,-2.3869],[140.1893,-2.3803],[140.183,-2.3783],[140.1786,-2.3749],[140.1671,-2.3753],[140.1618,-2.3712],[140.1564,-2.3719],[140.1525,-2.37],[140.152,-2.3656],[140.1554,-2.3641],[140.1575,-2.3578],[140.155,-2.355],[140.1478,-2.358],[140.1461,-2.3545],[140.1497,-2.3517],[140.1508,-2.3454],[140.1552,-2.339],[140.1545,-2.3266],[140.1514,-2.3234],[140.1393,-2.3268],[140.1472,-2.3348],[140.1468,-2.3406],[140.1404,-2.3471],[140.1328,-2.3464],[140.1165,-2.3355],[140.111,-2.3286],[140.1141,-2.325],[140.1151,-2.3202],[140.1112,-2.3192],[140.0994,-2.3238],[140.0882,-2.3271],[140.0823,-2.3309],[140.0797,-2.3385],[140.08,-2.3491],[140.0698,-2.3563],[140.0583,-2.3597],[140.0369,-2.3597],[140.0247,-2.359],[140.0138,-2.3604],[140.001,-2.3605],[139.9998,-2.3622],[140.0017,-2.368],[140.0008,-2.3714],[139.994,-2.3802],[139.9892,-2.3848],[139.9849,-2.3958],[139.9832,-2.4028],[139.9852,-2.4134],[139.9887,-2.4212],[139.9836,-2.4299],[139.9677,-2.4289],[139.9577,-2.4271],[139.9325,-2.4243],[139.9202,-2.4234],[139.9012,-2.4207],[139.8828,-2.4189],[139.8481,-2.4144],[139.8272,-2.4123],[139.812,-2.4103],[139.7893,-2.4082],[139.7723,-2.4062],[139.7467,-2.4023],[139.7433,-2.4048],[139.7283,-2.4069],[139.6916,-2.4144],[139.6786,-2.4175],[139.6639,-2.4203],[139.6496,-2.4237],[139.6208,-2.4293],[139.616,-2.4311],[139.6083,-2.4316],[139.5983,-2.4345],[139.5924,-2.4341],[139.5856,-2.4366],[139.5711,-2.44],[139.5657,-2.44],[139.5602,-2.442],[139.5495,-2.4438],[139.5452,-2.4457],[139.5373,-2.4454],[139.5309,-2.4479],[139.5203,-2.4504],[139.5085,-2.452],[139.5019,-2.4541],[139.4681,-2.4602],[139.4627,-2.4622],[139.4549,-2.4629],[139.4483,-2.4653],[139.4409,-2.4656],[139.4227,-2.4706],[139.4257,-2.4956],[139.4268,-2.5112],[139.4314,-2.5362],[139.4307,-2.5568],[139.4323,-2.5632],[139.4323,-2.5752],[139.4332,-2.5913],[139.4348,-2.5931],[139.4373,-2.6301],[139.4393,-2.6358],[139.4395,-2.6464],[139.4427,-2.6637],[139.4432,-2.6793],[139.4459,-2.6979],[139.4502,-2.7358],[139.4525,-2.7499],[139.457,-2.7889],[139.4645,-2.844],[139.4672,-2.8722],[139.4706,-2.8969],[139.4736,-2.9314],[139.4772,-2.9484],[139.4772,-2.96],[139.4788,-2.9702],[139.4799,-2.9869],[139.486,-3.03],[139.4876,-3.0511],[139.4926,-3.096],[139.4949,-3.1114],[139.497,-3.1201],[139.5011,-3.1276],[139.5106,-3.1343],[139.5083,-3.1397],[139.5031,-3.1413],[139.5023,-3.1457],[139.5044,-3.149],[139.5005,-3.1515],[139.4997,-3.159],[139.4857,-3.1695],[139.4771,-3.1683],[139.4786,-3.173],[139.4828,-3.178],[139.4798,-3.1886],[139.4829,-3.1937],[139.4824,-3.2],[139.4914,-3.2057],[139.4878,-3.2134],[139.4905,-3.2176],[139.4872,-3.224],[139.4868,-3.2348],[139.4922,-3.2366],[139.4875,-3.2444],[139.4902,-3.2461],[139.4932,-3.2534],[139.4916,-3.2549],[139.4991,-3.2636],[139.4953,-3.2677],[139.4966,-3.2727],[139.4965,-3.2834],[139.5004,-3.291],[139.5045,-3.2912],[139.5049,-3.3028],[139.5102,-3.3004],[139.5127,-3.3071],[139.5106,-3.3117],[139.5059,-3.315],[139.5023,-3.3261],[139.4987,-3.334],[139.4955,-3.337],[139.4971,-3.3461],[139.4939,-3.3541],[139.4959,-3.3571],[139.4922,-3.3622],[139.4889,-3.3744],[139.4823,-3.3797],[139.4824,-3.3876],[139.4782,-3.3871],[139.4753,-3.3925],[139.4697,-3.3988],[139.4721,-3.4089],[139.4744,-3.4143],[139.4666,-3.4136],[139.459,-3.419],[139.456,-3.4228],[139.4484,-3.4221],[139.447,-3.4268],[139.4434,-3.4289],[139.444,-3.4344],[139.448,-3.4459],[139.4543,-3.4464],[139.4594,-3.4485],[139.4626,-3.453],[139.4613,-3.4584],[139.4732,-3.4567],[139.4782,-3.4597],[139.4857,-3.4717],[139.4871,-3.4795],[139.4816,-3.4857],[139.474,-3.4878],[139.4691,-3.4913],[139.4669,-3.4984],[139.4705,-3.5076],[139.4726,-3.517],[139.477,-3.5196],[139.4841,-3.5149],[139.4841,-3.5102],[139.4813,-3.5016],[139.4826,-3.497],[139.4869,-3.4911],[139.4954,-3.4875],[139.503,-3.4912],[139.5058,-3.4972],[139.5026,-3.5117],[139.5059,-3.5189],[139.5164,-3.5236],[139.5301,-3.5276],[139.5365,-3.5333],[139.5448,-3.537],[139.5511,-3.5369],[139.5612,-3.5326],[139.5648,-3.5266],[139.5775,-3.51],[139.5836,-3.5043],[139.5968,-3.4974],[139.602,-3.4964],[139.6085,-3.498],[139.612,-3.5019],[139.6151,-3.5084],[139.6132,-3.514],[139.6089,-3.518],[139.6019,-3.5215],[139.594,-3.5235],[139.5883,-3.5271],[139.5855,-3.5325],[139.5866,-3.5386],[139.5906,-3.5457],[139.5958,-3.5501],[139.6107,-3.545],[139.6167,-3.5514],[139.6252,-3.5549],[139.6317,-3.5538],[139.6391,-3.5479],[139.6448,-3.5369],[139.6527,-3.5287],[139.6605,-3.5276],[139.6657,-3.5353],[139.6665,-3.5471],[139.6738,-3.5542],[139.6819,-3.5494],[139.6747,-3.5353],[139.6761,-3.5291],[139.6825,-3.5267],[139.6876,-3.5289],[139.6979,-3.5404],[139.7032,-3.5411],[139.7071,-3.5358],[139.7089,-3.5283],[139.713,-3.5223],[139.7177,-3.5206],[139.7231,-3.525],[139.7259,-3.5393],[139.7316,-3.5453],[139.742,-3.5401],[139.7455,-3.5457],[139.7389,-3.5505],[139.7504,-3.5537],[139.7537,-3.5566],[139.7523,-3.5673],[139.7602,-3.5605],[139.7657,-3.5582],[139.7718,-3.562],[139.7847,-3.5666],[139.804,-3.5645],[139.8073,-3.5674],[139.8057,-3.5754],[139.8003,-3.5803],[139.8015,-3.5844],[139.809,-3.5845],[139.8149,-3.5785],[139.8225,-3.5758],[139.8304,-3.5783],[139.8359,-3.5848],[139.8448,-3.5888],[139.8553,-3.583],[139.8623,-3.5831],[139.8697,-3.5893],[139.8728,-3.5954],[139.8801,-3.6049],[139.8823,-3.6061],[139.8873,-3.6143],[139.8892,-3.6201],[139.8939,-3.6205],[139.9023,-3.616],[139.907,-3.6163],[139.9173,-3.624],[139.925,-3.6244],[139.9341,-3.6222],[139.9386,-3.6199],[139.94,-3.6149],[139.9452,-3.6129],[139.9611,-3.6092],[139.9697,-3.6124],[139.9713,-3.6206],[139.9666,-3.6222],[139.9592,-3.6316],[139.9581,-3.639],[139.9621,-3.6417],[139.9709,-3.6412],[139.9799,-3.6539],[139.9856,-3.657],[139.9919,-3.657],[139.9994,-3.6526],[140.0038,-3.6517],[140.0111,-3.6388],[140.0212,-3.6369],[140.0315,-3.6451],[140.0344,-3.6487],[140.0315,-3.6547],[140.0329,-3.6596],[140.0411,-3.6708],[140.0496,-3.6659],[140.0567,-3.6552],[140.0655,-3.6483],[140.0718,-3.6567],[140.0757,-3.6577],[140.0749,-3.6645],[140.0762,-3.6705],[140.0826,-3.6747],[140.0856,-3.6801],[140.09,-3.6831],[140.0992,-3.6771],[140.1025,-3.6806],[140.1175,-3.6831],[140.1182,-3.6873],[140.1272,-3.6954],[140.1343,-3.6958],[140.1418,-3.6949],[140.1543,-3.6959],[140.159,-3.6994],[140.1593,-3.7034],[140.1634,-3.707],[140.1945,-3.7101],[140.2197,-3.7152],[140.2357,-3.7193],[140.2469,-3.7213],[140.2649,-3.7268],[140.2979,-3.7349],[140.3152,-3.7395],[140.321,-3.7427],[140.3241,-3.7476],[140.3191,-3.7508],[140.3243,-3.7533],[140.3334,-3.7473],[140.3458,-3.745],[140.3521,-3.7383],[140.3635,-3.7441],[140.3697,-3.7429],[140.3751,-3.7437],[140.3819,-3.7373],[140.3877,-3.7283],[140.385,-3.7198],[140.3742,-3.716],[140.3759,-3.7128],[140.3613,-3.7089],[140.3589,-3.6977],[140.365,-3.6936],[140.3664,-3.6893],[140.3645,-3.6827],[140.3549,-3.6859],[140.3548,-3.6896],[140.348,-3.6935],[140.3428,-3.6874],[140.3497,-3.6862],[140.351,-3.6789],[140.3465,-3.6712],[140.3486,-3.6691],[140.3562,-3.6716],[140.3605,-3.6682],[140.366,-3.6669],[140.3636,-3.662],[140.3675,-3.6598],[140.3724,-3.6636],[140.3771,-3.658],[140.3743,-3.6554],[140.3752,-3.6495],[140.3782,-3.646],[140.386,-3.6418],[140.389,-3.638],[140.3902,-3.6309],[140.397,-3.631],[140.3938,-3.6233],[140.3882,-3.6197],[140.3867,-3.614],[140.3813,-3.6046],[140.3888,-3.5963],[140.3842,-3.5905],[140.3775,-3.5859],[140.381,-3.5818],[140.3824,-3.5726],[140.3785,-3.5693],[140.3781,-3.5632],[140.3855,-3.558],[140.3856,-3.554],[140.3809,-3.5534],[140.3755,-3.5472],[140.3722,-3.5394],[140.3681,-3.5412],[140.365,-3.5324],[140.3622,-3.5289],[140.3653,-3.525],[140.369,-3.5327],[140.3731,-3.5299],[140.3687,-3.5242],[140.3754,-3.5234],[140.3791,-3.5168],[140.3785,-3.5132],[140.3641,-3.5155],[140.3627,-3.5081],[140.3712,-3.5085],[140.3702,-3.5012],[140.3662,-3.4939],[140.3581,-3.4959],[140.3505,-3.5008],[140.3534,-3.4911],[140.3471,-3.4947],[140.3436,-3.489],[140.3375,-3.4875],[140.3385,-3.4821],[140.3447,-3.4823],[140.3467,-3.4777],[140.3535,-3.4746],[140.3547,-3.468],[140.3619,-3.4643],[140.3635,-3.4555],[140.3661,-3.4539],[140.3679,-3.4466],[140.3649,-3.4358],[140.3623,-3.4323],[140.3619,-3.4188],[140.3578,-3.4173],[140.3544,-3.4208],[140.3498,-3.4191],[140.351,-3.4145],[140.3562,-3.4165],[140.3568,-3.4078],[140.3528,-3.3959],[140.3601,-3.3921],[140.3597,-3.3859],[140.3535,-3.3883],[140.3499,-3.3819],[140.3533,-3.3784],[140.3609,-3.3813],[140.3655,-3.38],[140.3701,-3.3751],[140.3707,-3.3683],[140.3631,-3.3702],[140.3613,-3.3662],[140.3649,-3.3599],[140.3634,-3.3527],[140.3554,-3.3584],[140.3444,-3.3598],[140.3467,-3.3561],[140.3425,-3.3516],[140.3501,-3.3487],[140.352,-3.3436],[140.351,-3.3379],[140.3463,-3.3427],[140.3418,-3.3421],[140.3426,-3.3318],[140.3377,-3.3365],[140.3315,-3.3362],[140.3252,-3.3299],[140.3229,-3.3202],[140.3196,-3.3233],[140.3101,-3.3226],[140.3144,-3.3174],[140.309,-3.3142],[140.3061,-3.307],[140.3084,-3.3041],[140.313,-3.3034],[140.317,-3.2989],[140.3166,-3.2926],[140.3201,-3.2862],[140.3242,-3.2724],[140.3203,-3.2629],[140.3219,-3.2548],[140.3284,-3.2493],[140.3314,-3.2445],[140.3338,-3.2337],[140.3332,-3.2199],[140.3375,-3.2078],[140.3333,-3.2021],[140.329,-3.2041],[140.3252,-3.2026],[140.3219,-3.1952],[140.3189,-3.194],[140.3244,-3.1825],[140.3253,-3.1773],[140.3312,-3.1771],[140.3347,-3.1749],[140.3392,-3.1779],[140.3482,-3.1706],[140.3572,-3.1665],[140.3641,-3.162],[140.3675,-3.1577],[140.3675,-3.1512],[140.3613,-3.1421],[140.36,-3.1316],[140.3568,-3.1257],[140.3638,-3],[140.3615,-2.8743],[140.3603,-2.8049],[140.3671,-2.7959],[140.3749,-2.7871],[140.3886,-2.7701],[140.4378,-2.7759],[140.4467,-2.7796],[140.4482,-2.7748],[140.4459,-2.771],[140.4541,-2.768],[140.4633,-2.7572],[140.4693,-2.7584],[140.4695,-2.7527],[140.4771,-2.7509],[140.4886,-2.7522],[140.4944,-2.7613],[140.4982,-2.7624],[140.4983,-2.7678],[140.5015,-2.7729],[140.5064,-2.7752],[140.5136,-2.7756],[140.5169,-2.7719],[140.5266,-2.7739],[140.5294,-2.7784],[140.5363,-2.7773],[140.5376,-2.773],[140.5494,-2.7726],[140.5507,-2.7673],[140.5551,-2.768],[140.5615,-2.7659],[140.5672,-2.7607],[140.5744,-2.7631],[140.5864,-2.7602],[140.5878,-2.7646],[140.5933,-2.7637],[140.5967,-2.7713],[140.6018,-2.7701],[140.6133,-2.776],[140.6233,-2.771],[140.6195,-2.7647],[140.6255,-2.7588],[140.6327,-2.7592],[140.6277,-2.7515],[140.6217,-2.7483],[140.6202,-2.7433],[140.6227,-2.7377],[140.6226,-2.732],[140.6287,-2.7302],[140.6296,-2.7245],[140.6238,-2.72],[140.6269,-2.7152],[140.6322,-2.7161],[140.6313,-2.7114],[140.6266,-2.7042],[140.6235,-2.6621],[140.6211,-2.6149],[140.6141,-2.6125],[140.6173,-2.5998],[140.6228,-2.5935],[140.6238,-2.5851],[140.6263,-2.5833],[140.6255,-2.5668],[140.622,-2.5668],[140.6233,-2.5565],[140.6249,-2.5316],[140.6353,-2.5103],[140.6379,-2.5066],[140.6426,-2.4947],[140.6528,-2.4762]]}},{"type":"Feature","properties":{"mhid":"1332:495","alt_name":"KABUPATEN NABIRE","latitude":-3.54016,"longitude":135.55511,"sample_value":286},"geometry":{"type":"LineString","coordinates":[[135.5891,-3.0964],[135.5876,-3.0946],[135.5811,-3.1003],[135.5835,-3.1049],[135.589,-3.1032],[135.5891,-3.0964]]}},{"type":"Feature","properties":{"mhid":"1332:495","alt_name":"KABUPATEN NABIRE","latitude":-3.54016,"longitude":135.55511,"sample_value":286},"geometry":{"type":"LineString","coordinates":[[135.5912,-3.0799],[135.5934,-3.0787],[135.5906,-3.0719],[135.5852,-3.0779],[135.576,-3.0831],[135.5722,-3.0888],[135.5772,-3.0923],[135.5835,-3.0909],[135.5833,-3.0866],[135.59,-3.0824],[135.5912,-3.0799]]}},{"type":"Feature","properties":{"mhid":"1332:495","alt_name":"KABUPATEN NABIRE","latitude":-3.54016,"longitude":135.55511,"sample_value":286},"geometry":{"type":"LineString","coordinates":[[135.613,-3.0701],[135.6172,-3.08],[135.6132,-3.0963],[135.6196,-3.0973],[135.6213,-3.0921],[135.6249,-3.0882],[135.6252,-3.0768],[135.6202,-3.0755],[135.613,-3.0701]]}},{"type":"Feature","properties":{"mhid":"1332:495","alt_name":"KABUPATEN NABIRE","latitude":-3.54016,"longitude":135.55511,"sample_value":286},"geometry":{"type":"LineString","coordinates":[[135.7988,-3.0328],[135.792,-3.0339],[135.7853,-3.0366],[135.781,-3.0403],[135.7699,-3.0455],[135.7704,-3.052],[135.7731,-3.0577],[135.7794,-3.0576],[135.7919,-3.0475],[135.7892,-3.0453],[135.7944,-3.0366],[135.7988,-3.0328]]}},{"type":"Feature","properties":{"mhid":"1332:495","alt_name":"KABUPATEN NABIRE","latitude":-3.54016,"longitude":135.55511,"sample_value":286},"geometry":{"type":"LineString","coordinates":[[134.8347,-3.0211],[134.8292,-3.0268],[134.837,-3.0318],[134.8313,-3.0412],[134.8398,-3.0484],[134.8445,-3.0445],[134.8439,-3.0403],[134.8407,-3.037],[134.8407,-3.0333],[134.8357,-3.0274],[134.8347,-3.0211]]}},{"type":"Feature","properties":{"mhid":"1332:495","alt_name":"KABUPATEN NABIRE","latitude":-3.54016,"longitude":135.55511,"sample_value":286},"geometry":{"type":"LineString","coordinates":[[135.7719,-2.9359],[135.7633,-2.9385],[135.7554,-2.9363],[135.753,-2.9396],[135.7468,-2.9418],[135.7381,-2.9379],[135.7301,-2.943],[135.7252,-2.9476],[135.7236,-2.9549],[135.7141,-2.9553],[135.7078,-2.9631],[135.7102,-2.9732],[135.718,-2.9752],[135.7217,-2.9813],[135.7315,-2.9827],[135.7368,-2.9795],[135.7414,-2.973],[135.7429,-2.9684],[135.7497,-2.9684],[135.7568,-2.9648],[135.7569,-2.9597],[135.7661,-2.9561],[135.7699,-2.9594],[135.7742,-2.9585],[135.7799,-2.9534],[135.7789,-2.9508],[135.7823,-2.9458],[135.7929,-2.9439],[135.7995,-2.9459],[135.8068,-2.9424],[135.8004,-2.9378],[135.793,-2.9413],[135.7868,-2.94],[135.7826,-2.9373],[135.7751,-2.9374],[135.7719,-2.9359]]}},{"type":"Feature","properties":{"mhid":"1332:495","alt_name":"KABUPATEN NABIRE","latitude":-3.54016,"longitude":135.55511,"sample_value":286},"geometry":{"type":"LineString","coordinates":[[135.7297,-2.9116],[135.7247,-2.912],[135.7007,-2.9215],[135.6851,-2.9283],[135.6744,-2.9384],[135.6727,-2.9428],[135.6778,-2.9444],[135.6877,-2.9421],[135.7021,-2.9353],[135.7176,-2.9297],[135.7265,-2.9236],[135.7331,-2.9209],[135.7357,-2.9154],[135.7297,-2.9116]]}},{"type":"Feature","properties":{"mhid":"1332:495","alt_name":"KABUPATEN NABIRE","latitude":-3.54016,"longitude":135.55511,"sample_value":286},"geometry":{"type":"LineString","coordinates":[[135.909,-2.8807],[135.9062,-2.8766],[135.9013,-2.8781],[135.9035,-2.885],[135.9082,-2.8877],[135.909,-2.8807]]}},{"type":"Feature","properties":{"mhid":"1332:495","alt_name":"KABUPATEN NABIRE","latitude":-3.54016,"longitude":135.55511,"sample_value":286},"geometry":{"type":"LineString","coordinates":[[134.8222,-2.6835],[134.8183,-2.6821],[134.8082,-2.685],[134.8067,-2.6902],[134.8074,-2.6974],[134.8021,-2.708],[134.8028,-2.7102],[134.8148,-2.7176],[134.8266,-2.7221],[134.8373,-2.7248],[134.8427,-2.7232],[134.8629,-2.7087],[134.8638,-2.7043],[134.8515,-2.694],[134.8509,-2.6905],[134.8439,-2.6879],[134.8374,-2.6882],[134.8343,-2.6858],[134.8222,-2.6835]]}},{"type":"Feature","properties":{"mhid":"1332:495","alt_name":"KABUPATEN NABIRE","latitude":-3.54016,"longitude":135.55511,"sample_value":286},"geometry":{"type":"LineString","coordinates":[[136.0128,-2.7178],[135.9939,-2.7405],[135.9918,-2.7457],[135.9859,-2.748],[135.9763,-2.7591],[135.9749,-2.7649],[135.967,-2.7642],[135.954,-2.7779],[135.9485,-2.7789],[135.9461,-2.7858],[135.95,-2.7868],[135.9603,-2.7949],[135.9555,-2.7982],[135.9536,-2.8045],[135.9544,-2.8079],[135.9507,-2.8188],[135.9463,-2.8254],[135.9456,-2.8311],[135.9358,-2.849],[135.9322,-2.8543],[135.9221,-2.8637],[135.9177,-2.866],[135.9127,-2.866],[135.9058,-2.8682],[135.9052,-2.8703],[135.9102,-2.8785],[135.9098,-2.8933],[135.9131,-2.8971],[135.9166,-2.8963],[135.9195,-2.8898],[135.9253,-2.8839],[135.9315,-2.8892],[135.9328,-2.9026],[135.9349,-2.9047],[135.9328,-2.9096],[135.9353,-2.9219],[135.9313,-2.9245],[135.932,-2.9359],[135.9248,-2.9509],[135.9248,-2.9576],[135.9122,-2.971],[135.9109,-2.9751],[135.9052,-2.978],[135.8929,-2.9745],[135.8921,-2.9803],[135.8936,-2.9833],[135.8925,-2.9898],[135.8853,-2.9857],[135.8812,-2.985],[135.8795,-2.9917],[135.8749,-2.9921],[135.8692,-2.9898],[135.8631,-2.9928],[135.8658,-2.998],[135.8563,-3.0039],[135.8505,-3.0042],[135.838,-3.0087],[135.8376,-3.0112],[135.8257,-3.0151],[135.823,-3.023],[135.8228,-3.0279],[135.8188,-3.0309],[135.8174,-3.0389],[135.8055,-3.0457],[135.7935,-3.0535],[135.782,-3.0571],[135.7773,-3.061],[135.7739,-3.0612],[135.7643,-3.0509],[135.7575,-3.05],[135.7525,-3.0517],[135.7442,-3.0584],[135.7335,-3.0647],[135.7282,-3.0713],[135.7297,-3.0749],[135.7395,-3.0764],[135.742,-3.0794],[135.7598,-3.0835],[135.767,-3.087],[135.7644,-3.0903],[135.7654,-3.097],[135.7596,-3.1004],[135.7584,-3.1074],[135.7522,-3.1151],[135.7418,-3.1216],[135.7184,-3.1274],[135.7,-3.1502],[135.6932,-3.1537],[135.6897,-3.1533],[135.684,-3.1573],[135.6716,-3.1585],[135.6682,-3.1607],[135.6592,-3.1625],[135.656,-3.1656],[135.6485,-3.1686],[135.6441,-3.1632],[135.6395,-3.1637],[135.6362,-3.1681],[135.6311,-3.1689],[135.6221,-3.175],[135.6194,-3.1789],[135.6117,-3.1802],[135.6014,-3.1933],[135.5958,-3.1951],[135.5906,-3.202],[135.5864,-3.213],[135.5809,-3.2241],[135.5805,-3.2276],[135.584,-3.2337],[135.582,-3.2372],[135.5753,-3.2384],[135.5727,-3.2342],[135.5678,-3.2427],[135.5611,-3.2499],[135.5542,-3.2626],[135.5623,-3.2657],[135.5661,-3.2695],[135.5623,-3.2766],[135.5604,-3.2849],[135.5615,-3.2877],[135.5593,-3.298],[135.5562,-3.3025],[135.5504,-3.3071],[135.5399,-3.3127],[135.5387,-3.3186],[135.5352,-3.3239],[135.5226,-3.3358],[135.5104,-3.3453],[135.5053,-3.355],[135.5002,-3.3588],[135.4883,-3.3631],[135.4798,-3.369],[135.4721,-3.3726],[135.4565,-3.3767],[135.4442,-3.3746],[135.4204,-3.3659],[135.4128,-3.3675],[135.3976,-3.3755],[135.386,-3.3802],[135.3594,-3.3857],[135.3482,-3.3893],[135.3436,-3.3948],[135.3358,-3.3961],[135.3287,-3.3954],[135.3241,-3.3897],[135.3115,-3.3866],[135.299,-3.3862],[135.272,-3.3826],[135.2576,-3.3799],[135.2396,-3.3758],[135.2317,-3.3754],[135.2176,-3.3771],[135.2085,-3.381],[135.1977,-3.3806],[135.1851,-3.3783],[135.1721,-3.3747],[135.1674,-3.3709],[135.1597,-3.3716],[135.1511,-3.3708],[135.1317,-3.3806],[135.1248,-3.3792],[135.1164,-3.382],[135.1119,-3.3815],[135.1067,-3.376],[135.1035,-3.3766],[135.0971,-3.3693],[135.0983,-3.3649],[135.09,-3.348],[135.0874,-3.3451],[135.0698,-3.3346],[135.059,-3.3354],[135.0528,-3.3301],[135.0484,-3.3294],[135.045,-3.3331],[135.042,-3.3321],[135.0341,-3.3363],[135.0224,-3.3402],[135.0105,-3.3391],[135.001,-3.3364],[134.9951,-3.3326],[134.9845,-3.3278],[134.9805,-3.3216],[134.9723,-3.3159],[134.9679,-3.3096],[134.9615,-3.3031],[134.9595,-3.2966],[134.9554,-3.2952],[134.9452,-3.2843],[134.9453,-3.277],[134.9496,-3.2715],[134.9531,-3.2705],[134.9496,-3.2624],[134.9549,-3.2526],[134.9524,-3.248],[134.9569,-3.246],[134.9634,-3.2476],[134.9629,-3.2431],[134.9649,-3.2325],[134.9603,-3.2252],[134.9515,-3.2214],[134.9568,-3.2352],[134.958,-3.242],[134.9556,-3.2449],[134.9471,-3.2474],[134.9399,-3.2458],[134.9342,-3.241],[134.9256,-3.2375],[134.9235,-3.2423],[134.917,-3.2475],[134.9274,-3.2557],[134.9303,-3.2611],[134.9386,-3.2698],[134.934,-3.2717],[134.929,-3.2699],[134.9247,-3.2637],[134.902,-3.2584],[134.8871,-3.258],[134.8785,-3.2503],[134.8775,-3.2466],[134.8709,-3.2516],[134.8638,-3.252],[134.8608,-3.2499],[134.8623,-3.2449],[134.8601,-3.2422],[134.8631,-3.2321],[134.8689,-3.2321],[134.8733,-3.2255],[134.8696,-3.2232],[134.8703,-3.2165],[134.8736,-3.2133],[134.873,-3.2071],[134.8679,-3.2033],[134.8653,-3.2075],[134.867,-3.2137],[134.8613,-3.2231],[134.8554,-3.218],[134.8553,-3.2079],[134.8511,-3.2065],[134.8508,-3.1911],[134.8633,-3.1857],[134.8629,-3.1745],[134.8657,-3.1679],[134.8622,-3.1588],[134.8523,-3.149],[134.8427,-3.1437],[134.8328,-3.1285],[134.8295,-3.1254],[134.8238,-3.1347],[134.8171,-3.1342],[134.8128,-3.136],[134.8108,-3.1329],[134.8037,-3.1361],[134.8,-3.1314],[134.8027,-3.1246],[134.8079,-3.1243],[134.8092,-3.1124],[134.8138,-3.103],[134.8111,-3.091],[134.8125,-3.0828],[134.8208,-3.0789],[134.8181,-3.0703],[134.8154,-3.069],[134.8103,-3.0623],[134.8141,-3.0608],[134.8111,-3.056],[134.8174,-3.0524],[134.8143,-3.0465],[134.8148,-3.0435],[134.811,-3.0378],[134.8139,-3.0207],[134.8177,-3.0177],[134.8189,-3.0121],[134.8271,-3.0142],[134.8339,-3.0063],[134.8447,-3.0039],[134.8472,-3.0012],[134.8529,-2.9999],[134.8501,-2.9948],[134.8488,-2.9877],[134.8448,-2.9871],[134.8406,-2.9817],[134.841,-2.9785],[134.8316,-2.9677],[134.8332,-2.9597],[134.8497,-2.9539],[134.8463,-2.9458],[134.8427,-2.944],[134.8422,-2.9376],[134.8458,-2.9346],[134.848,-2.9267],[134.845,-2.9227],[134.8491,-2.9146],[134.8467,-2.9062],[134.8462,-2.8988],[134.843,-2.8939],[134.8391,-2.8927],[134.8307,-2.88],[134.8263,-2.8822],[134.8269,-2.8881],[134.8248,-2.8921],[134.8259,-2.9055],[134.8304,-2.9053],[134.8331,-2.9104],[134.8317,-2.9131],[134.8239,-2.9179],[134.8181,-2.9142],[134.8085,-2.9113],[134.8058,-2.9206],[134.8059,-2.9314],[134.8093,-2.9333],[134.8208,-2.9361],[134.8186,-2.9398],[134.8106,-2.9427],[134.8065,-2.9419],[134.8049,-2.9466],[134.7977,-2.9509],[134.7864,-2.9428],[134.7815,-2.9441],[134.778,-2.9425],[134.7754,-2.9508],[134.777,-2.9623],[134.7787,-2.9662],[134.777,-2.9767],[134.7771,-2.9855],[134.7691,-2.9907],[134.7582,-2.9929],[134.7511,-2.9928],[134.7471,-2.9896],[134.7397,-2.9904],[134.7347,-2.9834],[134.7297,-2.9804],[134.7123,-2.9761],[134.7006,-2.9744],[134.6912,-2.9695],[134.6885,-2.9648],[134.691,-2.9595],[134.6949,-2.9469],[134.69,-2.9324],[134.6807,-2.9264],[134.677,-2.9214],[134.681,-2.9107],[134.691,-2.9076],[134.6912,-2.8962],[134.6867,-2.893],[134.6822,-2.8874],[134.6787,-2.8798],[134.6685,-2.8659],[134.6658,-2.8583],[134.6665,-2.8556],[134.6614,-2.8248],[134.6622,-2.8155],[134.667,-2.8131],[134.6698,-2.8085],[134.6692,-2.8027],[134.6653,-2.7913],[134.6652,-2.7847],[134.6579,-2.775],[134.6576,-2.768],[134.6618,-2.757],[134.6586,-2.7427],[134.6601,-2.7327],[134.6589,-2.728],[134.6601,-2.7204],[134.6569,-2.7004],[134.6601,-2.6945],[134.6557,-2.6802],[134.6563,-2.6722],[134.6581,-2.6681],[134.6581,-2.6537],[134.6607,-2.6514],[134.6589,-2.6329],[134.6628,-2.6244],[134.661,-2.6206],[134.6628,-2.6132],[134.6584,-2.603],[134.6604,-2.5956],[134.6569,-2.5871],[134.6572,-2.5777],[134.6539,-2.5742],[134.6542,-2.5636],[134.6525,-2.5516],[134.6531,-2.5484],[134.6516,-2.531],[134.6478,-2.5272],[134.6478,-2.5222],[134.6428,-2.5164],[134.6425,-2.5049],[134.632,-2.4974],[134.6301,-2.4937],[134.6301,-2.4864],[134.6352,-2.4846],[134.6338,-2.48],[134.6297,-2.4777],[134.6223,-2.4795],[134.6209,-2.4878],[134.6145,-2.4891],[134.5988,-2.4893],[134.6139,-2.6157],[134.6217,-2.6739],[134.6244,-2.6997],[134.6329,-2.7656],[134.6426,-2.8448],[134.6572,-2.9617],[134.6692,-3.0622],[134.6859,-3.1973],[134.6982,-3.3004],[134.7035,-3.3455],[134.7259,-3.3638],[134.7268,-3.4086],[134.6359,-3.5426],[134.7483,-3.5797],[134.8208,-3.6069],[134.8887,-3.631],[135.0006,-3.6607],[135.0445,-3.6754],[135.1173,-3.7031],[135.1636,-3.7268],[135.2144,-3.7405],[135.2414,-3.7481],[135.258,-3.7519],[135.2254,-3.7914],[135.2029,-3.8199],[135.282,-3.8398],[135.3264,-3.8527],[135.3773,-3.8663],[135.3988,-3.8671],[135.4067,-3.862],[135.4275,-3.8649],[135.439,-3.8678],[135.4476,-3.8656],[135.4619,-3.8671],[135.4877,-3.8821],[135.5035,-3.8929],[135.5114,-3.9],[135.5243,-3.9079],[135.5393,-3.9222],[135.5479,-3.9323],[135.5594,-3.9351],[135.5794,-3.9344],[135.5902,-3.9258],[135.5988,-3.9165],[135.6002,-3.9072],[135.6224,-3.9036],[135.631,-3.8979],[135.6475,-3.8907],[135.6626,-3.885],[135.6834,-3.8699],[135.692,-3.8656],[135.6991,-3.8685],[135.7079,-3.8668],[135.7165,-3.8686],[135.7234,-3.8646],[135.736,-3.8651],[135.7469,-3.86],[135.7543,-3.8628],[135.7629,-3.8605],[135.7807,-3.86],[135.7904,-3.8588],[135.7939,-3.8531],[135.7996,-3.8508],[135.8076,-3.8433],[135.8134,-3.8422],[135.818,-3.8393],[135.8277,-3.8399],[135.8386,-3.8382],[135.8478,-3.8387],[135.861,-3.841],[135.8661,-3.8405],[135.8644,-3.8319],[135.8719,-3.8301],[135.8816,-3.8164],[135.885,-3.794],[135.885,-3.7831],[135.8954,-3.7854],[135.904,-3.7837],[135.9091,-3.7797],[135.92,-3.778],[135.9412,-3.7768],[135.9487,-3.7751],[135.9538,-3.7694],[135.9665,-3.7665],[135.9848,-3.7699],[135.9923,-3.7677],[136.0009,-3.7625],[136.0072,-3.7533],[136.0209,-3.735],[136.0284,-3.7304],[136.0444,-3.7247],[136.0565,-3.7227],[136.0459,-3.7167],[136.0322,-3.7109],[136.0157,-3.6913],[136.0111,-3.677],[136.0126,-3.6697],[136.0098,-3.6655],[136.0118,-3.6596],[136.0035,-3.6434],[136.0009,-3.6289],[135.9965,-3.6269],[135.985,-3.6176],[135.9839,-3.6139],[135.9747,-3.5996],[135.973,-3.591],[135.9606,-3.5709],[135.9606,-3.5648],[135.9627,-3.5598],[135.9722,-3.5502],[136.0015,-3.5351],[136.0444,-3.5149],[136.1245,-3.4796],[136.1845,-3.4519],[136.2309,-3.4317],[136.2662,-3.4171],[136.2995,-3.4025],[136.3313,-3.3843],[136.3444,-3.3774],[136.3752,-3.3611],[136.3873,-3.3541],[136.392,-3.3522],[136.3916,-3.3444],[136.3931,-3.3392],[136.3944,-3.3132],[136.3911,-3.3078],[136.3939,-3.3003],[136.3931,-3.287],[136.3912,-3.2792],[136.3809,-3.2657],[136.3801,-3.2571],[136.378,-3.2526],[136.3771,-3.2446],[136.3791,-3.2356],[136.3746,-3.2247],[136.3643,-3.2071],[136.3562,-3.2008],[136.3576,-3.1941],[136.356,-3.1865],[136.3447,-3.1774],[136.3306,-3.1736],[136.3239,-3.1689],[136.3208,-3.1642],[136.3203,-3.1578],[136.3235,-3.1509],[136.3202,-3.1432],[136.3159,-3.1385],[136.3144,-3.1327],[136.319,-3.1325],[136.3197,-3.1259],[136.3252,-3.115],[136.3354,-3.1],[136.3365,-3.088],[136.3303,-3.0797],[136.3331,-3.0757],[136.3294,-3.0668],[136.3319,-3.0586],[136.3351,-3.055],[136.3338,-3.0515],[136.3251,-3.0532],[136.3288,-3.0472],[136.3266,-3.0412],[136.3291,-3.0344],[136.3238,-3.0319],[136.3226,-3.0189],[136.3182,-3.0128],[136.3128,-3.0114],[136.3065,-3.0037],[136.311,-3.0011],[136.306,-2.9964],[136.3032,-2.9906],[136.2975,-2.9851],[136.2994,-2.9815],[136.2975,-2.9724],[136.3003,-2.9696],[136.3048,-2.9541],[136.308,-2.9492],[136.3133,-2.948],[136.3198,-2.9362],[136.3059,-2.9298],[136.3034,-2.9189],[136.2972,-2.9205],[136.2967,-2.9162],[136.3002,-2.9122],[136.2947,-2.9103],[136.2924,-2.9146],[136.2885,-2.9093],[136.2941,-2.9066],[136.2962,-2.9008],[136.2889,-2.9005],[136.288,-2.8977],[136.2929,-2.892],[136.2898,-2.8882],[136.2945,-2.8798],[136.2869,-2.8792],[136.283,-2.8839],[136.2782,-2.8807],[136.2844,-2.8749],[136.2839,-2.8712],[136.2785,-2.8709],[136.2775,-2.876],[136.2722,-2.883],[136.2722,-2.8862],[136.2661,-2.8864],[136.2642,-2.8836],[136.2657,-2.8789],[136.2721,-2.8792],[136.2732,-2.8757],[136.2657,-2.8715],[136.2607,-2.8661],[136.2632,-2.8609],[136.261,-2.8545],[136.2508,-2.8549],[136.248,-2.8507],[136.2441,-2.85],[136.2428,-2.8542],[136.2511,-2.8591],[136.2486,-2.8632],[136.2402,-2.859],[136.2393,-2.8536],[136.246,-2.8433],[136.2511,-2.8447],[136.2524,-2.8405],[136.2435,-2.8406],[136.2394,-2.8351],[136.2352,-2.8406],[136.2294,-2.8414],[136.2284,-2.8368],[136.234,-2.8336],[136.2329,-2.8297],[136.2288,-2.8287],[136.225,-2.8326],[136.2214,-2.8303],[136.2237,-2.8264],[136.2282,-2.8242],[136.2182,-2.8166],[136.2158,-2.81],[136.2173,-2.806],[136.2103,-2.8067],[136.2083,-2.8052],[136.2017,-2.8083],[136.2043,-2.8004],[136.1966,-2.801],[136.1918,-2.798],[136.1871,-2.8001],[136.1889,-2.8077],[136.1825,-2.8096],[136.1788,-2.8047],[136.1797,-2.7996],[136.1842,-2.7958],[136.18,-2.7918],[136.1746,-2.7963],[136.1684,-2.7969],[136.1628,-2.7996],[136.1605,-2.7878],[136.1515,-2.7927],[136.1484,-2.785],[136.1434,-2.7834],[136.1421,-2.7898],[136.1379,-2.7866],[136.1465,-2.7792],[136.1461,-2.7748],[136.1402,-2.7714],[136.1337,-2.7754],[136.13,-2.7722],[136.1299,-2.7663],[136.1353,-2.7605],[136.1356,-2.7521],[136.1279,-2.7543],[136.1188,-2.7535],[136.114,-2.7598],[136.1075,-2.7543],[136.1038,-2.7531],[136.0981,-2.7547],[136.0952,-2.7607],[136.0905,-2.764],[136.075,-2.7668],[136.0624,-2.7672],[136.0562,-2.7665],[136.0514,-2.7638],[136.0476,-2.7576],[136.0437,-2.746],[136.0378,-2.7437],[136.0322,-2.7436],[136.0277,-2.7463],[136.0206,-2.7423],[136.0179,-2.733],[136.0147,-2.7279],[136.0182,-2.7214],[136.0128,-2.7178]]}},{"type":"Feature","properties":{"mhid":"1332:496","alt_name":"KABUPATEN KEPULAUAN YAPEN","latitude":-1.78773,"longitude":136.27716,"sample_value":306},"geometry":{"type":"LineString","coordinates":[[136.3974,-1.9038],[136.3896,-1.907],[136.3847,-1.9131],[136.3861,-1.9186],[136.3914,-1.9199],[136.4032,-1.9173],[136.4084,-1.9101],[136.405,-1.9067],[136.3974,-1.9038]]}},{"type":"Feature","properties":{"mhid":"1332:496","alt_name":"KABUPATEN KEPULAUAN YAPEN","latitude":-1.78773,"longitude":136.27716,"sample_value":306},"geometry":{"type":"LineString","coordinates":[[136.3316,-1.9064],[136.3271,-1.9053],[136.3253,-1.9095],[136.3288,-1.9152],[136.3288,-1.9197],[136.3347,-1.9241],[136.3421,-1.9314],[136.3374,-1.9325],[136.3327,-1.9286],[136.3295,-1.9326],[136.3388,-1.9417],[136.3441,-1.9525],[136.3491,-1.9537],[136.356,-1.9612],[136.3595,-1.9586],[136.3565,-1.9495],[136.3598,-1.9476],[136.3633,-1.9506],[136.3671,-1.9423],[136.364,-1.9328],[136.3596,-1.9345],[136.3598,-1.9247],[136.3553,-1.9132],[136.3579,-1.9074],[136.3522,-1.905],[136.3479,-1.9101],[136.3479,-1.9131],[136.3428,-1.9173],[136.3374,-1.9148],[136.3356,-1.9062],[136.3316,-1.9064]]}},{"type":"Feature","properties":{"mhid":"1332:496","alt_name":"KABUPATEN KEPULAUAN YAPEN","latitude":-1.78773,"longitude":136.27716,"sample_value":306},"geometry":{"type":"LineString","coordinates":[[136.3301,-1.8922],[136.325,-1.8925],[136.3236,-1.8961],[136.325,-1.9019],[136.3342,-1.9019],[136.3311,-1.8972],[136.3301,-1.8922]]}},{"type":"Feature","properties":{"mhid":"1332:496","alt_name":"KABUPATEN KEPULAUAN YAPEN","latitude":-1.78773,"longitude":136.27716,"sample_value":306},"geometry":{"type":"LineString","coordinates":[[135.813,-1.897],[135.8161,-1.8946],[135.8103,-1.8912],[135.8089,-1.8964],[135.813,-1.897]]}},{"type":"Feature","properties":{"mhid":"1332:496","alt_name":"KABUPATEN KEPULAUAN YAPEN","latitude":-1.78773,"longitude":136.27716,"sample_value":306},"geometry":{"type":"LineString","coordinates":[[136.2828,-1.8891],[136.2791,-1.8966],[136.2846,-1.8995],[136.283,-1.9058],[136.2874,-1.9205],[136.2891,-1.9324],[136.2923,-1.9386],[136.2954,-1.9384],[136.3002,-1.9318],[136.3008,-1.9237],[136.2954,-1.9165],[136.2915,-1.9149],[136.2955,-1.9046],[136.2943,-1.8979],[136.2848,-1.8952],[136.2891,-1.8893],[136.2828,-1.8891]]}},{"type":"Feature","properties":{"mhid":"1332:496","alt_name":"KABUPATEN KEPULAUAN YAPEN","latitude":-1.78773,"longitude":136.27716,"sample_value":306},"geometry":{"type":"LineString","coordinates":[[136.3641,-1.8871],[136.3604,-1.8876],[136.3624,-1.8956],[136.3584,-1.8993],[136.3666,-1.9019],[136.371,-1.8992],[136.3658,-1.8873],[136.3641,-1.8871]]}},{"type":"Feature","properties":{"mhid":"1332:496","alt_name":"KABUPATEN KEPULAUAN YAPEN","latitude":-1.78773,"longitude":136.27716,"sample_value":306},"geometry":{"type":"LineString","coordinates":[[136.3502,-1.8729],[136.3437,-1.8756],[136.3494,-1.879],[136.3551,-1.8767],[136.3502,-1.8729]]}},{"type":"Feature","properties":{"mhid":"1332:496","alt_name":"KABUPATEN KEPULAUAN YAPEN","latitude":-1.78773,"longitude":136.27716,"sample_value":306},"geometry":{"type":"LineString","coordinates":[[137.0235,-1.8307],[137.0165,-1.831],[137.0055,-1.8332],[136.9985,-1.8358],[136.9904,-1.8371],[136.9826,-1.837],[136.9737,-1.8347],[136.9688,-1.8363],[136.9652,-1.8346],[136.956,-1.8333],[136.9504,-1.8365],[136.9545,-1.8423],[136.968,-1.8449],[136.9737,-1.8474],[136.988,-1.8504],[136.9899,-1.846],[137.0036,-1.8536],[137.0073,-1.8535],[137.0132,-1.8576],[137.0167,-1.8554],[137.023,-1.8592],[137.0354,-1.8627],[137.0394,-1.8626],[137.0466,-1.8697],[137.055,-1.8687],[137.057,-1.8639],[137.0536,-1.8566],[137.045,-1.8455],[137.0363,-1.8398],[137.0334,-1.8345],[137.0235,-1.8307]]}},{"type":"Feature","properties":{"mhid":"1332:496","alt_name":"KABUPATEN KEPULAUAN YAPEN","latitude":-1.78773,"longitude":136.27716,"sample_value":306},"geometry":{"type":"LineString","coordinates":[[135.9373,-1.7961],[135.9324,-1.7961],[135.9303,-1.7994],[135.9347,-1.8043],[135.9376,-1.7996],[135.9373,-1.7961]]}},{"type":"Feature","properties":{"mhid":"1332:496","alt_name":"KABUPATEN KEPULAUAN YAPEN","latitude":-1.78773,"longitude":136.27716,"sample_value":306},"geometry":{"type":"LineString","coordinates":[[135.8129,-1.785],[135.8023,-1.7855],[135.799,-1.7889],[135.7981,-1.7942],[135.7952,-1.7989],[135.7962,-1.8124],[135.8011,-1.812],[135.8023,-1.8159],[135.8073,-1.8168],[135.8122,-1.8123],[135.8168,-1.8101],[135.8253,-1.8003],[135.8221,-1.7946],[135.8178,-1.7943],[135.8179,-1.7895],[135.8129,-1.785]]}},{"type":"Feature","properties":{"mhid":"1332:496","alt_name":"KABUPATEN KEPULAUAN YAPEN","latitude":-1.78773,"longitude":136.27716,"sample_value":306},"geometry":{"type":"LineString","coordinates":[[135.788,-1.7608],[135.7823,-1.7616],[135.7705,-1.7601],[135.7716,-1.7655],[135.7658,-1.7714],[135.7686,-1.775],[135.7793,-1.7703],[135.7891,-1.7688],[135.7866,-1.7642],[135.788,-1.7608]]}},{"type":"Feature","properties":{"mhid":"1332:496","alt_name":"KABUPATEN KEPULAUAN YAPEN","latitude":-1.78773,"longitude":136.27716,"sample_value":306},"geometry":{"type":"LineString","coordinates":[[135.8088,-1.7403],[135.801,-1.7473],[135.8009,-1.7514],[135.8075,-1.7505],[135.8088,-1.7403]]}},{"type":"Feature","properties":{"mhid":"1332:496","alt_name":"KABUPATEN KEPULAUAN YAPEN","latitude":-1.78773,"longitude":136.27716,"sample_value":306},"geometry":{"type":"LineString","coordinates":[[135.4754,-1.5991],[135.4593,-1.6015],[135.4543,-1.5994],[135.4456,-1.6023],[135.4335,-1.6031],[135.4216,-1.6014],[135.4104,-1.6018],[135.4154,-1.6077],[135.4301,-1.6101],[135.4325,-1.6118],[135.4437,-1.6128],[135.4441,-1.6225],[135.4423,-1.6248],[135.4443,-1.6368],[135.4489,-1.6429],[135.4596,-1.6331],[135.4647,-1.6358],[135.4695,-1.6425],[135.4698,-1.6473],[135.4666,-1.6516],[135.4702,-1.6573],[135.4763,-1.6593],[135.4703,-1.6662],[135.4745,-1.6727],[135.4746,-1.6804],[135.4815,-1.6806],[135.4938,-1.6761],[135.4946,-1.6796],[135.5004,-1.6796],[135.5108,-1.6866],[135.5126,-1.6819],[135.5075,-1.679],[135.5081,-1.6742],[135.5133,-1.674],[135.5129,-1.6698],[135.5194,-1.6622],[135.526,-1.6647],[135.5284,-1.6676],[135.52,-1.6774],[135.5199,-1.6838],[135.5241,-1.6852],[135.5277,-1.6801],[135.5356,-1.6778],[135.5449,-1.6767],[135.5444,-1.6708],[135.5493,-1.6651],[135.5617,-1.6679],[135.5627,-1.6722],[135.5667,-1.6721],[135.5701,-1.6766],[135.5755,-1.6742],[135.5768,-1.6845],[135.5798,-1.6868],[135.5816,-1.6799],[135.5934,-1.6839],[135.5969,-1.6807],[135.6037,-1.6825],[135.6077,-1.6811],[135.6102,-1.6845],[135.6197,-1.6842],[135.6198,-1.6884],[135.6136,-1.6913],[135.6172,-1.6963],[135.6285,-1.6967],[135.6356,-1.6877],[135.6408,-1.6841],[135.6444,-1.6854],[135.6513,-1.684],[135.6561,-1.6864],[135.6497,-1.6903],[135.6512,-1.6962],[135.6642,-1.6956],[135.6686,-1.6976],[135.6682,-1.7021],[135.673,-1.7066],[135.6794,-1.7019],[135.6896,-1.7019],[135.6954,-1.7062],[135.6978,-1.7035],[135.6951,-1.6989],[135.6978,-1.6955],[135.702,-1.6959],[135.7098,-1.6902],[135.7128,-1.6902],[135.7159,-1.6947],[135.7221,-1.6961],[135.7247,-1.6919],[135.7323,-1.688],[135.7351,-1.7007],[135.7348,-1.7072],[135.7514,-1.721],[135.7574,-1.7232],[135.758,-1.7185],[135.7615,-1.7147],[135.7614,-1.7067],[135.7667,-1.7117],[135.7759,-1.7173],[135.7853,-1.7158],[135.7886,-1.7207],[135.7852,-1.7278],[135.7768,-1.7269],[135.7787,-1.7328],[135.7766,-1.736],[135.7716,-1.7319],[135.7619,-1.7455],[135.7673,-1.745],[135.7763,-1.7419],[135.7836,-1.7432],[135.7857,-1.7391],[135.7925,-1.7371],[135.7998,-1.7402],[135.8011,-1.7365],[135.8071,-1.733],[135.8109,-1.735],[135.8213,-1.7349],[135.8232,-1.739],[135.8203,-1.7471],[135.8264,-1.748],[135.8269,-1.7525],[135.8357,-1.7576],[135.8407,-1.7486],[135.8459,-1.7463],[135.8499,-1.7524],[135.853,-1.7533],[135.8536,-1.758],[135.8577,-1.7597],[135.8581,-1.7674],[135.8638,-1.7655],[135.8694,-1.7606],[135.8693,-1.756],[135.8652,-1.7523],[135.8615,-1.7539],[135.8525,-1.7457],[135.8552,-1.7395],[135.8692,-1.7404],[135.8705,-1.7437],[135.8832,-1.7503],[135.8848,-1.753],[135.8856,-1.7612],[135.8922,-1.763],[135.8908,-1.7679],[135.8952,-1.7718],[135.8974,-1.777],[135.8994,-1.7881],[135.9054,-1.7863],[135.9081,-1.7813],[135.913,-1.7782],[135.9118,-1.7739],[135.9062,-1.7703],[135.9041,-1.7649],[135.9,-1.7608],[135.9041,-1.757],[135.9124,-1.7552],[135.9172,-1.7658],[135.9196,-1.7686],[135.9239,-1.7655],[135.9388,-1.7854],[135.9394,-1.7918],[135.9452,-1.7867],[135.9581,-1.7961],[135.9659,-1.7978],[135.9714,-1.8027],[135.978,-1.8167],[135.9933,-1.8207],[136.0097,-1.8206],[136.0171,-1.8237],[136.0252,-1.8192],[136.0347,-1.8239],[136.0383,-1.8299],[136.0486,-1.8312],[136.0546,-1.8378],[136.0604,-1.8398],[136.0659,-1.8467],[136.0716,-1.8498],[136.0751,-1.8498],[136.0905,-1.8444],[136.1032,-1.8442],[136.1103,-1.8472],[136.1175,-1.8531],[136.1439,-1.8529],[136.1546,-1.8577],[136.1584,-1.8618],[136.1682,-1.8674],[136.1745,-1.8737],[136.1793,-1.8688],[136.1901,-1.8744],[136.1985,-1.8651],[136.1991,-1.8702],[136.2027,-1.8698],[136.2043,-1.8753],[136.2094,-1.8798],[136.2135,-1.8749],[136.2176,-1.8747],[136.2249,-1.8816],[136.2268,-1.8869],[136.2244,-1.8946],[136.2222,-1.897],[136.2236,-1.9057],[136.2274,-1.9051],[136.2302,-1.8991],[136.2352,-1.8933],[136.241,-1.8902],[136.2429,-1.8868],[136.2495,-1.8859],[136.2543,-1.891],[136.2523,-1.8962],[136.2595,-1.9107],[136.2618,-1.9096],[136.2626,-1.9028],[136.2659,-1.9028],[136.2648,-1.8931],[136.2715,-1.8901],[136.2756,-1.8828],[136.2845,-1.8811],[136.2912,-1.8821],[136.2915,-1.8778],[136.2972,-1.871],[136.3044,-1.8691],[136.3134,-1.8628],[136.3231,-1.867],[136.3282,-1.8648],[136.3318,-1.8655],[136.3365,-1.8622],[136.3435,-1.8606],[136.3446,-1.8659],[136.3511,-1.8661],[136.3608,-1.8683],[136.3666,-1.8765],[136.3664,-1.8798],[136.3731,-1.8825],[136.3807,-1.8804],[136.3793,-1.8773],[136.3879,-1.8725],[136.3952,-1.8844],[136.4003,-1.8878],[136.4005,-1.8807],[136.4071,-1.8833],[136.4118,-1.8787],[136.4111,-1.8735],[136.4178,-1.8747],[136.4236,-1.8781],[136.4253,-1.8844],[136.4366,-1.8892],[136.4419,-1.8891],[136.4496,-1.8832],[136.4596,-1.8917],[136.4672,-1.8952],[136.4711,-1.8863],[136.4735,-1.8836],[136.4806,-1.8843],[136.4849,-1.8793],[136.4949,-1.8823],[136.4981,-1.8798],[136.5027,-1.881],[136.5042,-1.8851],[136.5113,-1.89],[136.5124,-1.8931],[136.5191,-1.8924],[136.531,-1.895],[136.5323,-1.8981],[136.5468,-1.8965],[136.5444,-1.8927],[136.5385,-1.8924],[136.531,-1.8853],[136.5328,-1.8827],[136.5243,-1.8777],[136.5202,-1.871],[136.5161,-1.8692],[136.509,-1.8595],[136.5028,-1.858],[136.5029,-1.8495],[136.5099,-1.8487],[136.5107,-1.8513],[136.5168,-1.8576],[136.5282,-1.8637],[136.5347,-1.8693],[136.5376,-1.8696],[136.5449,-1.8655],[136.5503,-1.8703],[136.5617,-1.8683],[136.5658,-1.8648],[136.5724,-1.8627],[136.5746,-1.8648],[136.5899,-1.8638],[136.5951,-1.865],[136.6004,-1.8636],[136.6065,-1.8659],[136.6175,-1.8625],[136.6212,-1.8631],[136.6283,-1.8695],[136.6282,-1.8731],[136.636,-1.8714],[136.6387,-1.8688],[136.6436,-1.8703],[136.6477,-1.8679],[136.6517,-1.8619],[136.6548,-1.8613],[136.6548,-1.8562],[136.6579,-1.8538],[136.6686,-1.8521],[136.6715,-1.8466],[136.6786,-1.8398],[136.6832,-1.8384],[136.686,-1.8346],[136.6897,-1.8346],[136.6877,-1.8412],[136.6935,-1.8419],[136.699,-1.8452],[136.7068,-1.8434],[136.7121,-1.834],[136.7053,-1.8278],[136.6995,-1.8279],[136.7041,-1.8223],[136.7182,-1.816],[136.7241,-1.8152],[136.73,-1.8191],[136.7364,-1.8195],[136.7395,-1.822],[136.748,-1.8241],[136.7616,-1.8256],[136.7651,-1.8212],[136.7732,-1.8174],[136.7822,-1.816],[136.7863,-1.813],[136.7922,-1.812],[136.8014,-1.8128],[136.8101,-1.8196],[136.8287,-1.8242],[136.8311,-1.8225],[136.8415,-1.8246],[136.8492,-1.8274],[136.8531,-1.8199],[136.8612,-1.8152],[136.8693,-1.8144],[136.8715,-1.8115],[136.8738,-1.801],[136.8825,-1.7974],[136.8953,-1.7977],[136.9031,-1.7943],[136.9038,-1.7922],[136.8978,-1.7864],[136.8916,-1.7846],[136.8869,-1.7807],[136.8816,-1.7788],[136.8745,-1.779],[136.8611,-1.7753],[136.8487,-1.7701],[136.8324,-1.762],[136.8068,-1.7504],[136.7984,-1.7459],[136.7946,-1.7423],[136.7888,-1.7401],[136.7871,-1.7426],[136.7776,-1.742],[136.7726,-1.7475],[136.76,-1.7463],[136.7475,-1.7435],[136.7313,-1.7379],[136.7289,-1.7363],[136.7138,-1.732],[136.7115,-1.7335],[136.7046,-1.7309],[136.6936,-1.7318],[136.6821,-1.7285],[136.6787,-1.7292],[136.6683,-1.7263],[136.6672,-1.7286],[136.651,-1.7294],[136.6371,-1.7251],[136.6335,-1.7265],[136.6263,-1.7249],[136.6132,-1.7274],[136.6022,-1.7276],[136.5896,-1.7261],[136.5877,-1.7292],[136.5696,-1.7256],[136.5582,-1.7217],[136.5532,-1.7227],[136.5451,-1.7215],[136.5276,-1.7151],[136.5059,-1.711],[136.4985,-1.7057],[136.4925,-1.7075],[136.4771,-1.7054],[136.4718,-1.7059],[136.4611,-1.7042],[136.4462,-1.6982],[136.446,-1.7058],[136.4347,-1.7127],[136.4289,-1.7143],[136.4199,-1.7144],[136.4082,-1.7203],[136.4013,-1.7205],[136.3933,-1.7182],[136.3902,-1.7199],[136.379,-1.7163],[136.3686,-1.7171],[136.3595,-1.7135],[136.3538,-1.7097],[136.3519,-1.7059],[136.3428,-1.7066],[136.3252,-1.7039],[136.3181,-1.6994],[136.3157,-1.6946],[136.3044,-1.6871],[136.2969,-1.6856],[136.2934,-1.6872],[136.2868,-1.6856],[136.2815,-1.6791],[136.2685,-1.6782],[136.2654,-1.6752],[136.2545,-1.6725],[136.2483,-1.6727],[136.2317,-1.6696],[136.2249,-1.6665],[136.2188,-1.6617],[136.2109,-1.6521],[136.2033,-1.6484],[136.1829,-1.6556],[136.1723,-1.6533],[136.1586,-1.6543],[136.1497,-1.6526],[136.1414,-1.649],[136.1292,-1.6535],[136.1191,-1.6533],[136.1084,-1.6511],[136.0971,-1.6525],[136.0911,-1.6493],[136.0753,-1.6503],[136.0637,-1.6579],[136.0516,-1.6595],[136.0454,-1.6551],[136.0404,-1.6553],[136.0293,-1.6533],[136.0274,-1.6506],[136.0148,-1.6473],[136.0117,-1.6492],[136.0064,-1.6467],[136.0034,-1.6512],[135.9984,-1.6538],[135.9905,-1.6519],[135.9889,-1.6471],[135.9818,-1.6459],[135.9736,-1.6539],[135.9691,-1.6547],[135.9616,-1.6517],[135.9617,-1.6438],[135.9523,-1.6409],[135.9469,-1.6451],[135.9426,-1.6417],[135.9389,-1.6429],[135.9325,-1.6401],[135.9238,-1.6412],[135.9144,-1.6353],[135.9048,-1.6366],[135.9001,-1.636],[135.8907,-1.6378],[135.8898,-1.6416],[135.8792,-1.6398],[135.8784,-1.645],[135.8722,-1.6456],[135.8717,-1.6527],[135.8693,-1.6545],[135.8704,-1.6609],[135.8645,-1.6597],[135.8557,-1.6546],[135.8517,-1.6619],[135.8456,-1.6557],[135.8442,-1.658],[135.8367,-1.6577],[135.8411,-1.6531],[135.8381,-1.6502],[135.8366,-1.6452],[135.8437,-1.6403],[135.8351,-1.6393],[135.8285,-1.643],[135.8201,-1.6382],[135.8121,-1.6384],[135.7974,-1.6317],[135.7914,-1.6312],[135.7851,-1.6263],[135.7802,-1.6276],[135.7663,-1.6262],[135.7527,-1.6295],[135.7412,-1.6263],[135.738,-1.6291],[135.7375,-1.6341],[135.7285,-1.6358],[135.7261,-1.6308],[135.72,-1.6264],[135.7141,-1.6271],[135.7079,-1.6258],[135.7023,-1.6269],[135.7033,-1.632],[135.6964,-1.6309],[135.6924,-1.6345],[135.6921,-1.6239],[135.6893,-1.6202],[135.6764,-1.6199],[135.6709,-1.6232],[135.6579,-1.6226],[135.6543,-1.6191],[135.6408,-1.6266],[135.622,-1.6253],[135.6175,-1.621],[135.6096,-1.6218],[135.6042,-1.6201],[135.5978,-1.6213],[135.5938,-1.6163],[135.5814,-1.6136],[135.5806,-1.6106],[135.5719,-1.6151],[135.5666,-1.6111],[135.5609,-1.612],[135.5578,-1.6147],[135.5499,-1.6119],[135.5463,-1.6142],[135.541,-1.6116],[135.533,-1.6111],[135.5293,-1.6083],[135.5246,-1.6114],[135.52,-1.6085],[135.5052,-1.608],[135.495,-1.6085],[135.4781,-1.5991],[135.4754,-1.5991]]}},{"type":"Feature","properties":{"mhid":"1332:496","alt_name":"KABUPATEN KEPULAUAN YAPEN","latitude":-1.78773,"longitude":136.27716,"sample_value":306},"geometry":{"type":"LineString","coordinates":[[135.8304,-1.5208],[135.8274,-1.5258],[135.8341,-1.5273],[135.8361,-1.5248],[135.8304,-1.5208]]}},{"type":"Feature","properties":{"mhid":"1332:496","alt_name":"KABUPATEN KEPULAUAN YAPEN","latitude":-1.78773,"longitude":136.27716,"sample_value":306},"geometry":{"type":"LineString","coordinates":[[135.3391,-1.5097],[135.3371,-1.5135],[135.3423,-1.5148],[135.3487,-1.5139],[135.3487,-1.51],[135.3391,-1.5097]]}},{"type":"Feature","properties":{"mhid":"1332:496","alt_name":"KABUPATEN KEPULAUAN YAPEN","latitude":-1.78773,"longitude":136.27716,"sample_value":306},"geometry":{"type":"LineString","coordinates":[[135.3704,-1.4977],[135.3628,-1.5002],[135.3641,-1.5071],[135.3694,-1.5065],[135.3713,-1.5035],[135.3704,-1.4977]]}},{"type":"Feature","properties":{"mhid":"1332:496","alt_name":"KABUPATEN KEPULAUAN YAPEN","latitude":-1.78773,"longitude":136.27716,"sample_value":306},"geometry":{"type":"LineString","coordinates":[[135.3532,-1.4816],[135.3477,-1.4829],[135.3501,-1.4884],[135.3556,-1.4865],[135.3532,-1.4816]]}},{"type":"Feature","properties":{"mhid":"1332:496","alt_name":"KABUPATEN KEPULAUAN YAPEN","latitude":-1.78773,"longitude":136.27716,"sample_value":306},"geometry":{"type":"LineString","coordinates":[[135.1196,-1.4656],[135.1136,-1.4661],[135.1115,-1.4715],[135.1141,-1.4742],[135.1137,-1.4793],[135.1097,-1.4822],[135.104,-1.4831],[135.0954,-1.489],[135.0957,-1.497],[135.0914,-1.5009],[135.0992,-1.5083],[135.1061,-1.507],[135.1151,-1.4998],[135.129,-1.509],[135.1369,-1.5042],[135.1435,-1.5122],[135.1455,-1.5125],[135.1528,-1.5194],[135.1575,-1.521],[135.1639,-1.5203],[135.1664,-1.5181],[135.173,-1.5233],[135.1785,-1.5212],[135.1758,-1.5142],[135.1769,-1.5109],[135.1865,-1.5124],[135.1937,-1.5183],[135.1963,-1.5165],[135.2034,-1.5175],[135.2096,-1.5241],[135.2133,-1.5206],[135.2197,-1.5223],[135.2234,-1.5194],[135.2352,-1.5194],[135.2426,-1.5216],[135.245,-1.5286],[135.2497,-1.5294],[135.2617,-1.5267],[135.2791,-1.5165],[135.2864,-1.5209],[135.2892,-1.5187],[135.2986,-1.5194],[135.3055,-1.5161],[135.3089,-1.5126],[135.3137,-1.5138],[135.321,-1.5091],[135.3256,-1.5093],[135.3251,-1.5015],[135.3283,-1.5012],[135.3363,-1.4926],[135.3344,-1.485],[135.3206,-1.4944],[135.3155,-1.494],[135.3109,-1.496],[135.3089,-1.4903],[135.3038,-1.4873],[135.2972,-1.4856],[135.2989,-1.4789],[135.2976,-1.4748],[135.2827,-1.4822],[135.2792,-1.4818],[135.274,-1.4889],[135.2704,-1.4821],[135.2597,-1.4824],[135.2604,-1.489],[135.2636,-1.4928],[135.2637,-1.4968],[135.2604,-1.5025],[135.2615,-1.5068],[135.2578,-1.5141],[135.2595,-1.5181],[135.2535,-1.5218],[135.2494,-1.5195],[135.2474,-1.5139],[135.251,-1.5082],[135.2487,-1.5047],[135.2427,-1.5049],[135.2418,-1.5022],[135.2464,-1.4953],[135.2492,-1.4937],[135.246,-1.4846],[135.2375,-1.4843],[135.2319,-1.4862],[135.2315,-1.4891],[135.2256,-1.4952],[135.2308,-1.5008],[135.2215,-1.5078],[135.2151,-1.5019],[135.2076,-1.5042],[135.2065,-1.4943],[135.2144,-1.4898],[135.217,-1.4898],[135.2171,-1.4815],[135.2186,-1.4776],[135.2157,-1.4744],[135.2099,-1.4768],[135.2068,-1.4762],[135.1929,-1.4799],[135.1806,-1.4878],[135.1791,-1.4784],[135.1746,-1.4779],[135.1711,-1.4815],[135.1643,-1.4784],[135.1606,-1.4877],[135.1537,-1.4899],[135.1476,-1.4797],[135.1462,-1.4747],[135.1369,-1.4716],[135.1344,-1.4778],[135.131,-1.4733],[135.1267,-1.4782],[135.1212,-1.4767],[135.1249,-1.4722],[135.1196,-1.4656]]}},{"type":"Feature","properties":{"mhid":"1332:497","alt_name":"KABUPATEN BIAK NUMFOR","latitude":-1.03333,"longitude":136,"sample_value":963},"geometry":{"type":"LineString","coordinates":[[136.2105,-1.3128],[136.2112,-1.3103],[136.2073,-1.306],[136.2048,-1.3092],[136.2105,-1.3128]]}},{"type":"Feature","properties":{"mhid":"1332:497","alt_name":"KABUPATEN BIAK NUMFOR","latitude":-1.03333,"longitude":136,"sample_value":963},"geometry":{"type":"LineString","coordinates":[[136.6057,-1.322],[136.6074,-1.3078],[136.6037,-1.3079],[136.6006,-1.3184],[136.6057,-1.322]]}},{"type":"Feature","properties":{"mhid":"1332:497","alt_name":"KABUPATEN BIAK NUMFOR","latitude":-1.03333,"longitude":136,"sample_value":963},"geometry":{"type":"LineString","coordinates":[[136.6786,-1.2928],[136.6773,-1.2907],[136.6702,-1.2941],[136.6721,-1.2986],[136.6784,-1.2954],[136.6786,-1.2928]]}},{"type":"Feature","properties":{"mhid":"1332:497","alt_name":"KABUPATEN BIAK NUMFOR","latitude":-1.03333,"longitude":136,"sample_value":963},"geometry":{"type":"LineString","coordinates":[[136.3153,-1.2864],[136.3234,-1.2813],[136.3199,-1.2768],[136.3172,-1.28],[136.3153,-1.2864]]}},{"type":"Feature","properties":{"mhid":"1332:497","alt_name":"KABUPATEN BIAK NUMFOR","latitude":-1.03333,"longitude":136,"sample_value":963},"geometry":{"type":"LineString","coordinates":[[136.5933,-1.2699],[136.5894,-1.2769],[136.5919,-1.2834],[136.5964,-1.2896],[136.6001,-1.2921],[136.6048,-1.2879],[136.6107,-1.276],[136.6032,-1.2717],[136.5933,-1.2699]]}},{"type":"Feature","properties":{"mhid":"1332:497","alt_name":"KABUPATEN BIAK NUMFOR","latitude":-1.03333,"longitude":136,"sample_value":963},"geometry":{"type":"LineString","coordinates":[[136.6752,-1.2606],[136.6679,-1.2632],[136.6641,-1.2686],[136.6647,-1.2722],[136.6713,-1.2725],[136.6717,-1.2692],[136.6781,-1.2632],[136.6752,-1.2606]]}},{"type":"Feature","properties":{"mhid":"1332:497","alt_name":"KABUPATEN BIAK NUMFOR","latitude":-1.03333,"longitude":136,"sample_value":963},"geometry":{"type":"LineString","coordinates":[[136.3746,-1.2493],[136.3676,-1.2475],[136.3769,-1.26],[136.3773,-1.2538],[136.3746,-1.2493]]}},{"type":"Feature","properties":{"mhid":"1332:497","alt_name":"KABUPATEN BIAK NUMFOR","latitude":-1.03333,"longitude":136,"sample_value":963},"geometry":{"type":"LineString","coordinates":[[136.2254,-1.2301],[136.2164,-1.2293],[136.1991,-1.2341],[136.188,-1.247],[136.1947,-1.2548],[136.201,-1.2586],[136.2049,-1.2571],[136.2269,-1.2394],[136.2309,-1.2331],[136.2254,-1.2301]]}},{"type":"Feature","properties":{"mhid":"1332:497","alt_name":"KABUPATEN BIAK NUMFOR","latitude":-1.03333,"longitude":136,"sample_value":963},"geometry":{"type":"LineString","coordinates":[[136.6036,-1.229],[136.6,-1.2306],[136.5949,-1.2365],[136.5958,-1.2474],[136.5983,-1.2522],[136.6045,-1.2549],[136.6138,-1.2522],[136.6173,-1.2442],[136.6167,-1.2372],[136.6142,-1.2324],[136.6103,-1.2295],[136.6036,-1.229]]}},{"type":"Feature","properties":{"mhid":"1332:497","alt_name":"KABUPATEN BIAK NUMFOR","latitude":-1.03333,"longitude":136,"sample_value":963},"geometry":{"type":"LineString","coordinates":[[136.5205,-1.2278],[136.5102,-1.2289],[136.5048,-1.231],[136.5002,-1.2306],[136.503,-1.2399],[136.514,-1.2415],[136.5237,-1.2446],[136.5383,-1.243],[136.5398,-1.2408],[136.5377,-1.2351],[136.5278,-1.229],[136.5205,-1.2278]]}},{"type":"Feature","properties":{"mhid":"1332:497","alt_name":"KABUPATEN BIAK NUMFOR","latitude":-1.03333,"longitude":136,"sample_value":963},"geometry":{"type":"LineString","coordinates":[[136.3237,-1.2177],[136.3122,-1.2202],[136.2979,-1.229],[136.292,-1.235],[136.2966,-1.2418],[136.3001,-1.2443],[136.3055,-1.242],[136.309,-1.2357],[136.3233,-1.2299],[136.3341,-1.2277],[136.3382,-1.2334],[136.3403,-1.2307],[136.3414,-1.2234],[136.337,-1.2197],[136.3237,-1.2177]]}},{"type":"Feature","properties":{"mhid":"1332:497","alt_name":"KABUPATEN BIAK NUMFOR","latitude":-1.03333,"longitude":136,"sample_value":963},"geometry":{"type":"LineString","coordinates":[[136.7014,-1.2247],[136.7052,-1.2237],[136.7088,-1.2187],[136.7084,-1.2155],[136.7026,-1.2125],[136.6948,-1.2148],[136.694,-1.2201],[136.697,-1.2243],[136.7014,-1.2247]]}},{"type":"Feature","properties":{"mhid":"1332:497","alt_name":"KABUPATEN BIAK NUMFOR","latitude":-1.03333,"longitude":136,"sample_value":963},"geometry":{"type":"LineString","coordinates":[[136.4441,-1.2017],[136.4369,-1.2026],[136.4301,-1.2123],[136.4306,-1.2149],[136.442,-1.2263],[136.4458,-1.2334],[136.4494,-1.2284],[136.4506,-1.2203],[136.4486,-1.2127],[136.4441,-1.2017]]}},{"type":"Feature","properties":{"mhid":"1332:497","alt_name":"KABUPATEN BIAK NUMFOR","latitude":-1.03333,"longitude":136,"sample_value":963},"geometry":{"type":"LineString","coordinates":[[136.6002,-1.191],[136.5972,-1.1895],[136.5867,-1.1909],[136.5776,-1.196],[136.5761,-1.2002],[136.5813,-1.201],[136.5847,-1.2062],[136.5845,-1.2145],[136.5869,-1.2215],[136.5905,-1.2275],[136.5955,-1.2281],[136.6129,-1.223],[136.6148,-1.2163],[136.6138,-1.2104],[136.6099,-1.2001],[136.6061,-1.1947],[136.6002,-1.191]]}},{"type":"Feature","properties":{"mhid":"1332:497","alt_name":"KABUPATEN BIAK NUMFOR","latitude":-1.03333,"longitude":136,"sample_value":963},"geometry":{"type":"LineString","coordinates":[[136.6098,-1.137],[136.6012,-1.1348],[136.6026,-1.1388],[136.5972,-1.1608],[136.5931,-1.1637],[136.5999,-1.1728],[136.6051,-1.1744],[136.6144,-1.1629],[136.6131,-1.1603],[136.6161,-1.1533],[136.62,-1.1535],[136.6178,-1.1435],[136.6098,-1.137]]}},{"type":"Feature","properties":{"mhid":"1332:497","alt_name":"KABUPATEN BIAK NUMFOR","latitude":-1.03333,"longitude":136,"sample_value":963},"geometry":{"type":"LineString","coordinates":[[134.9463,-1.0286],[134.9442,-1.0242],[134.9393,-1.0286],[134.9428,-1.0377],[134.9461,-1.0372],[134.9492,-1.0322],[134.9463,-1.0286]]}},{"type":"Feature","properties":{"mhid":"1332:497","alt_name":"KABUPATEN BIAK NUMFOR","latitude":-1.03333,"longitude":136,"sample_value":963},"geometry":{"type":"LineString","coordinates":[[134.9535,-1.0242],[134.9549,-1.0183],[134.9525,-1.0142],[134.9487,-1.014],[134.9451,-1.0229],[134.95,-1.0263],[134.9535,-1.0242]]}},{"type":"Feature","properties":{"mhid":"1332:497","alt_name":"KABUPATEN BIAK NUMFOR","latitude":-1.03333,"longitude":136,"sample_value":963},"geometry":{"type":"LineString","coordinates":[[134.857,-0.9311],[134.8458,-0.9329],[134.8435,-0.9316],[134.8293,-0.9442],[134.8202,-0.9473],[134.8109,-0.9533],[134.8062,-0.9587],[134.8063,-0.9654],[134.8047,-0.9695],[134.799,-0.976],[134.7926,-0.9811],[134.7955,-0.9842],[134.8064,-0.9829],[134.8074,-0.9845],[134.7971,-0.9902],[134.8001,-0.996],[134.8009,-1.0026],[134.7959,-1.0071],[134.7987,-1.0151],[134.795,-1.0238],[134.7967,-1.0285],[134.795,-1.0323],[134.7991,-1.039],[134.8054,-1.0422],[134.8128,-1.0522],[134.8142,-1.0565],[134.8188,-1.0607],[134.8197,-1.0643],[134.824,-1.0665],[134.8231,-1.0701],[134.8254,-1.0818],[134.8287,-1.0863],[134.835,-1.0823],[134.8442,-1.087],[134.8392,-1.0939],[134.8368,-1.1065],[134.842,-1.1077],[134.8448,-1.1108],[134.8507,-1.1128],[134.857,-1.1228],[134.8542,-1.132],[134.8586,-1.1325],[134.8644,-1.1301],[134.8713,-1.1338],[134.8747,-1.1331],[134.881,-1.1356],[134.8861,-1.1404],[134.8966,-1.14],[134.9207,-1.1324],[134.94,-1.1305],[134.9436,-1.1284],[134.9515,-1.128],[134.9529,-1.1233],[134.9626,-1.1099],[134.965,-1.1019],[134.9686,-1.097],[134.9732,-1.0945],[134.9723,-1.0896],[134.9788,-1.0754],[134.9823,-1.0729],[134.9818,-1.0666],[134.9789,-1.0627],[134.9785,-1.0528],[134.9821,-1.0462],[134.9805,-1.0372],[134.986,-1.0358],[134.9809,-1.0121],[134.9726,-1.0111],[134.9619,-1.02],[134.9591,-1.0201],[134.954,-1.0267],[134.9529,-1.0334],[134.96,-1.0389],[134.9603,-1.049],[134.9491,-1.0565],[134.9424,-1.0585],[134.939,-1.0624],[134.9396,-1.0722],[134.9274,-1.0751],[134.9208,-1.0702],[134.9203,-1.0658],[134.9232,-1.0636],[134.9227,-1.0552],[134.9275,-1.0443],[134.9366,-1.0472],[134.9403,-1.044],[134.9412,-1.0368],[134.9388,-1.034],[134.9369,-1.0269],[134.9373,-1.0203],[134.9402,-1.0151],[134.9393,-1.0111],[134.9482,-1.0017],[134.9465,-0.9936],[134.9478,-0.9883],[134.9449,-0.9776],[134.9452,-0.9722],[134.9405,-0.9653],[134.9331,-0.961],[134.9284,-0.9552],[134.9216,-0.9518],[134.9173,-0.9516],[134.9101,-0.9458],[134.9012,-0.9413],[134.8946,-0.9397],[134.8844,-0.9351],[134.8689,-0.933],[134.8626,-0.9332],[134.857,-0.9311]]}},{"type":"Feature","properties":{"mhid":"1332:497","alt_name":"KABUPATEN BIAK NUMFOR","latitude":-1.03333,"longitude":136,"sample_value":963},"geometry":{"type":"LineString","coordinates":[[135.7087,-0.8032],[135.7142,-0.8064],[135.7203,-0.8046],[135.7248,-0.8015],[135.7416,-0.8106],[135.742,-0.8162],[135.7527,-0.8363],[135.7554,-0.8374],[135.7563,-0.8447],[135.7619,-0.8577],[135.7668,-0.864],[135.7661,-0.8706],[135.7685,-0.8784],[135.766,-0.8858],[135.7671,-0.8935],[135.7695,-0.8955],[135.7697,-0.9009],[135.7749,-0.9035],[135.7771,-0.9097],[135.7763,-0.9226],[135.7822,-0.9297],[135.7828,-0.9361],[135.7881,-0.9377],[135.7877,-0.9462],[135.7895,-0.9564],[135.7876,-0.9651],[135.7919,-0.968],[135.7938,-0.9739],[135.7927,-0.9778],[135.7961,-0.9863],[135.7986,-0.9881],[135.8008,-0.998],[135.8101,-1.0082],[135.8173,-1.0138],[135.8235,-1.0254],[135.8255,-1.0318],[135.8226,-1.0387],[135.823,-1.0453],[135.8202,-1.0612],[135.8224,-1.0652],[135.8229,-1.0744],[135.8211,-1.0753],[135.8205,-1.0853],[135.8181,-1.0892],[135.8023,-1.0928],[135.802,-1.0973],[135.8116,-1.1149],[135.8179,-1.117],[135.8187,-1.1219],[135.8227,-1.128],[135.8233,-1.1318],[135.827,-1.1359],[135.8327,-1.1388],[135.8421,-1.1474],[135.8543,-1.1612],[135.8578,-1.1666],[135.8642,-1.1681],[135.8732,-1.1729],[135.8879,-1.1747],[135.8965,-1.1772],[135.906,-1.178],[135.9077,-1.1671],[135.9166,-1.1586],[135.9224,-1.1583],[135.9329,-1.1537],[135.9354,-1.1492],[135.9451,-1.1463],[135.9527,-1.1473],[135.9549,-1.1491],[135.9655,-1.1486],[135.9722,-1.1466],[135.9783,-1.1473],[135.9828,-1.1443],[135.989,-1.1447],[136.0002,-1.1423],[136.0053,-1.1439],[136.0182,-1.1448],[136.0218,-1.1472],[136.0283,-1.1463],[136.0351,-1.1472],[136.0439,-1.1552],[136.0494,-1.1569],[136.0492,-1.167],[136.0512,-1.1723],[136.0559,-1.1773],[136.0769,-1.1863],[136.0792,-1.1851],[136.085,-1.1879],[136.1067,-1.1935],[136.1269,-1.1972],[136.1357,-1.1998],[136.145,-1.1998],[136.1553,-1.1947],[136.1626,-1.1854],[136.1738,-1.1814],[136.179,-1.1813],[136.2031,-1.1758],[136.2034,-1.1738],[136.224,-1.171],[136.2371,-1.1716],[136.2432,-1.1703],[136.2552,-1.1646],[136.2601,-1.1613],[136.2686,-1.1606],[136.2744,-1.1576],[136.2823,-1.1503],[136.289,-1.1492],[136.3056,-1.1419],[136.3147,-1.1404],[136.3264,-1.1335],[136.3438,-1.1185],[136.3546,-1.1111],[136.3596,-1.0964],[136.3665,-1.091],[136.3803,-1.0899],[136.3842,-1.0855],[136.3872,-1.0793],[136.3863,-1.0733],[136.3704,-1.0662],[136.3604,-1.0634],[136.3532,-1.0667],[136.3451,-1.0662],[136.3408,-1.0705],[136.3322,-1.0759],[136.3237,-1.0741],[136.3163,-1.0675],[136.3141,-1.0629],[136.3028,-1.06],[136.2963,-1.055],[136.2934,-1.0496],[136.2919,-1.0425],[136.2916,-1.0321],[136.2759,-1.0215],[136.2691,-1.022],[136.2571,-1.0175],[136.2506,-1.0214],[136.2482,-1.0259],[136.237,-1.0295],[136.2241,-1.0289],[136.2081,-1.0315],[136.2007,-1.0362],[136.1952,-1.0421],[136.1892,-1.0449],[136.1746,-1.0453],[136.161,-1.0348],[136.1588,-1.0279],[136.158,-1.0183],[136.1587,-1.0073],[136.1565,-1.0053],[136.1522,-0.9963],[136.1443,-0.9915],[136.1373,-0.9911],[136.1326,-0.9861],[136.1192,-0.9756],[136.1125,-0.9729],[136.101,-0.9631],[136.0983,-0.9592],[136.0944,-0.9481],[136.0954,-0.9414],[136.0981,-0.9351],[136.0944,-0.9222],[136.0915,-0.9172],[136.0773,-0.9129],[136.0709,-0.904],[136.0703,-0.8964],[136.0601,-0.887],[136.0532,-0.8895],[136.0498,-0.8927],[136.0475,-0.9002],[136.0439,-0.8992],[136.0397,-0.8941],[136.0462,-0.8838],[136.0451,-0.8808],[136.0468,-0.8709],[136.0516,-0.8592],[136.051,-0.8563],[136.0421,-0.8554],[136.0387,-0.8594],[136.0356,-0.8592],[136.0389,-0.8476],[136.0367,-0.843],[136.0267,-0.836],[136.0099,-0.8315],[136.0002,-0.8229],[135.9934,-0.8208],[135.9836,-0.8146],[135.9733,-0.8123],[135.9629,-0.8041],[135.9609,-0.8005],[135.9475,-0.7956],[135.9428,-0.7882],[135.9367,-0.786],[135.9305,-0.7901],[135.9251,-0.7904],[135.9198,-0.7836],[135.9177,-0.7755],[135.9126,-0.7705],[135.9084,-0.7566],[135.8941,-0.7433],[135.8885,-0.7325],[135.8777,-0.7238],[135.8728,-0.7159],[135.8656,-0.7067],[135.854,-0.7002],[135.8468,-0.6989],[135.8407,-0.6958],[135.8332,-0.6939],[135.8268,-0.6904],[135.8217,-0.6898],[135.8112,-0.6853],[135.8036,-0.6868],[135.8035,-0.7408],[135.7388,-0.7945],[135.7087,-0.8032]]}},{"type":"Feature","properties":{"mhid":"1332:498","alt_name":"KABUPATEN PANIAI","latitude":-3.9,"longitude":136.60001,"sample_value":157},"geometry":{"type":"LineString","coordinates":[[137.189,-3.909],[137.168,-3.9082],[137.0998,-3.9066],[137.0285,-3.9066],[136.8997,-3.9066],[136.7988,-3.9057],[136.7267,-3.905],[136.7267,-3.8431],[136.706,-3.824],[136.6298,-3.7447],[136.5377,-3.6605],[136.5139,-3.6319],[136.4425,-3.5256],[136.3901,-3.4414],[136.3444,-3.3774],[136.3313,-3.3843],[136.2995,-3.4025],[136.2662,-3.4171],[136.2309,-3.4317],[136.1845,-3.4519],[136.1245,-3.4796],[136.0444,-3.5149],[136.0015,-3.5351],[135.9722,-3.5502],[135.9627,-3.5598],[135.9606,-3.5648],[135.9606,-3.5709],[135.973,-3.591],[135.9747,-3.5996],[135.9839,-3.6139],[135.985,-3.6176],[135.9965,-3.6269],[136.0009,-3.6289],[136.0035,-3.6434],[136.0118,-3.6596],[136.0098,-3.6655],[136.0126,-3.6697],[136.0111,-3.677],[136.0157,-3.6913],[136.0322,-3.7109],[136.0459,-3.7167],[136.0565,-3.7227],[136.0695,-3.7272],[136.0819,-3.7353],[136.0922,-3.7515],[136.104,-3.7749],[136.1091,-3.7882],[136.1194,-3.808],[136.1326,-3.8263],[136.1495,-3.855],[136.1619,-3.8792],[136.1906,-3.9291],[136.2045,-3.935],[136.2273,-3.9519],[136.2273,-3.9922],[136.2767,-3.9937],[136.307,-3.998],[136.3516,-4.0022],[136.4013,-4.0081],[136.4804,-4.0123],[136.4939,-4.0156],[136.5326,-4.0156],[136.5856,-4.0207],[136.6226,-4.0232],[136.647,-4.0257],[136.6607,-4.0351],[136.6785,-4.0414],[136.6862,-4.0555],[136.6887,-4.0861],[136.6938,-4.1078],[136.7307,-4.1265],[136.8241,-4.1382],[136.9719,-4.1254],[137.048,-4.0732],[137.1245,-4.0207],[137.204,-4.0237],[137.2012,-3.9643],[137.1995,-3.9383],[137.1904,-3.9117],[137.189,-3.909]]}},{"type":"Feature","properties":{"mhid":"1332:499","alt_name":"KABUPATEN PUNCAK JAYA","latitude":-3.67241,"longitude":137.43896,"sample_value":34},"geometry":{"type":"LineString","coordinates":[[138.0322,-3.2424],[138.0154,-3.2352],[138.0098,-3.2245],[138.0132,-3.22],[138.0194,-3.2172],[138.0194,-3.1993],[138.0138,-3.1904],[138.007,-3.1848],[138.0067,-3.1651],[138.0096,-3.1605],[138.0099,-3.1554],[138.0071,-3.1533],[137.9967,-3.154],[137.9952,-3.1465],[137.9909,-3.1454],[137.9873,-3.1483],[137.9841,-3.1458],[137.9848,-3.1411],[137.9743,-3.1345],[137.9531,-3.1274],[137.8825,-3.1168],[137.8248,-3.1203],[137.7342,-3.118],[137.6659,-3.1133],[137.6177,-3.1121],[137.6016,-3.1305],[137.581,-3.1476],[137.5349,-3.1783],[137.5024,-3.1988],[137.4734,-3.2262],[137.4358,-3.2535],[137.4136,-3.2757],[137.3852,-3.3071],[137.4117,-3.3265],[137.4411,-3.3559],[137.4579,-3.3917],[137.4705,-3.4232],[137.4748,-3.4547],[137.4958,-3.4863],[137.5231,-3.501],[137.5715,-3.5283],[137.6156,-3.5767],[137.6536,-3.6023],[137.6773,-3.6034],[137.7225,-3.6023],[137.7272,-3.6067],[137.7455,-3.6104],[137.7545,-3.617],[137.7665,-3.6296],[137.7689,-3.6362],[137.7776,-3.6494],[137.779,-3.6561],[137.7852,-3.6665],[137.7871,-3.6736],[137.7999,-3.6841],[137.8179,-3.6945],[137.8327,-3.6983],[137.8431,-3.7021],[137.864,-3.696],[137.8871,-3.6852],[137.8914,-3.7045],[137.8904,-3.7401],[137.8914,-3.7713],[137.899,-3.7993],[137.913,-3.8294],[137.9393,-3.8584],[137.952,-3.8668],[137.9782,-3.8514],[138.0091,-3.8396],[138.0503,-3.8337],[138.1253,-3.8322],[138.1856,-3.8381],[138.2253,-3.8278],[138.2695,-3.8131],[138.2959,-3.7837],[138.3046,-3.7729],[138.2962,-3.7554],[138.2907,-3.7422],[138.2823,-3.7325],[138.2769,-3.7223],[138.2733,-3.7108],[138.2667,-3.7012],[138.2624,-3.6898],[138.2588,-3.6747],[138.2552,-3.6651],[138.2522,-3.6518],[138.245,-3.6289],[138.2363,-3.6167],[138.2019,-3.6091],[138.1833,-3.6091],[138.1681,-3.6002],[138.1511,-3.5822],[138.1372,-3.5693],[138.1086,-3.5575],[138.0967,-3.5506],[138.0849,-3.5407],[138.0711,-3.5229],[138.073,-3.5041],[138.0681,-3.4972],[138.0543,-3.4913],[138.045,-3.4901],[138.0366,-3.4859],[138.0391,-3.4697],[138.0285,-3.4495],[138.0302,-3.4363],[138.03,-3.4218],[138.0285,-3.4131],[138.029,-3.3962],[138.0266,-3.3818],[138.0201,-3.3801],[138.019,-3.372],[138.0145,-3.3556],[138.021,-3.3357],[138.0164,-3.3097],[138.0201,-3.2919],[138.0306,-3.2788],[138.0359,-3.2663],[138.0342,-3.2571],[138.032,-3.2545],[138.0322,-3.2424]]}},{"type":"Feature","properties":{"mhid":"1332:500","alt_name":"KABUPATEN MIMIKA","latitude":-4.54357,"longitude":136.56555,"sample_value":126},"geometry":{"type":"LineString","coordinates":[[137.5128,-5.1768],[137.5098,-5.1708],[137.5038,-5.1782],[137.4974,-5.1828],[137.4968,-5.1868],[137.508,-5.1975],[137.5097,-5.1943],[137.5094,-5.1852],[137.5081,-5.1776],[137.5128,-5.1768]]}},{"type":"Feature","properties":{"mhid":"1332:500","alt_name":"KABUPATEN MIMIKA","latitude":-4.54357,"longitude":136.56555,"sample_value":126},"geometry":{"type":"LineString","coordinates":[[137.1837,-5.0287],[137.1796,-5.0315],[137.1845,-5.038],[137.1922,-5.043],[137.1922,-5.036],[137.1895,-5.0319],[137.1837,-5.0287]]}},{"type":"Feature","properties":{"mhid":"1332:500","alt_name":"KABUPATEN MIMIKA","latitude":-4.54357,"longitude":136.56555,"sample_value":126},"geometry":{"type":"LineString","coordinates":[[136.8046,-4.8991],[136.8038,-4.9022],[136.8165,-4.9106],[136.8158,-4.9066],[136.8046,-4.8991]]}},{"type":"Feature","properties":{"mhid":"1332:500","alt_name":"KABUPATEN MIMIKA","latitude":-4.54357,"longitude":136.56555,"sample_value":126},"geometry":{"type":"LineString","coordinates":[[136.795,-4.8919],[136.7906,-4.8929],[136.7907,-4.8969],[136.7983,-4.9009],[136.803,-4.8983],[136.795,-4.8919]]}},{"type":"Feature","properties":{"mhid":"1332:500","alt_name":"KABUPATEN MIMIKA","latitude":-4.54357,"longitude":136.56555,"sample_value":126},"geometry":{"type":"LineString","coordinates":[[137.6784,-4.1723],[137.5936,-4.1684],[137.4867,-4.1634],[137.4502,-4.1651],[137.3205,-4.161],[137.2914,-4.032],[137.204,-4.0237],[137.1245,-4.0207],[137.048,-4.0732],[136.9719,-4.1254],[136.8241,-4.1382],[136.7307,-4.1265],[136.7263,-4.1464],[136.7147,-4.1673],[136.703,-4.1894],[136.6706,-4.2176],[136.6218,-4.2176],[136.5822,-4.2126],[136.5452,-4.2134],[136.5082,-4.2117],[136.489,-4.2128],[136.4897,-4.2172],[136.5,-4.2246],[136.5062,-4.2336],[136.5079,-4.2543],[136.5182,-4.268],[136.5242,-4.2717],[136.524,-4.2775],[136.5263,-4.2832],[136.5258,-4.2881],[136.5302,-4.292],[136.5359,-4.2918],[136.5367,-4.2948],[136.5302,-4.2993],[136.5308,-4.3039],[136.5221,-4.3099],[136.5178,-4.3065],[136.5151,-4.3106],[136.5087,-4.3102],[136.5058,-4.3131],[136.4985,-4.314],[136.4907,-4.3126],[136.4859,-4.3169],[136.4749,-4.3152],[136.4703,-4.3162],[136.4613,-4.3105],[136.4595,-4.315],[136.4498,-4.3096],[136.4462,-4.3089],[136.4437,-4.3137],[136.4276,-4.3192],[136.4254,-4.3159],[136.4264,-4.3083],[136.4255,-4.3019],[136.4275,-4.299],[136.425,-4.2937],[136.4098,-4.2969],[136.4062,-4.2961],[136.3969,-4.2996],[136.3922,-4.2997],[136.385,-4.2957],[136.3799,-4.2893],[136.3657,-4.2962],[136.3422,-4.2964],[136.3379,-4.2915],[136.3312,-4.2736],[136.3235,-4.2711],[136.308,-4.2718],[136.294,-4.2643],[136.2782,-4.2635],[136.271,-4.2594],[136.2654,-4.262],[136.2655,-4.2744],[136.2637,-4.2844],[136.2615,-4.2876],[136.2514,-4.2956],[136.2465,-4.2949],[136.2418,-4.2909],[136.2294,-4.274],[136.2169,-4.2634],[136.2063,-4.2585],[136.1861,-4.2429],[136.1744,-4.2388],[136.1561,-4.2377],[136.1494,-4.2387],[136.1398,-4.2424],[136.1323,-4.2496],[136.123,-4.2566],[136.1189,-4.2575],[136.0946,-4.2543],[136.0817,-4.2628],[136.0747,-4.2624],[136.0692,-4.2717],[136.0635,-4.2726],[136.0527,-4.2651],[136.0533,-4.2604],[136.0363,-4.259],[136.0321,-4.263],[136.0228,-4.2602],[136.0139,-4.2594],[136.0097,-4.2614],[136.0065,-4.257],[135.9995,-4.2541],[135.994,-4.2545],[135.9898,-4.2524],[135.9867,-4.256],[135.9821,-4.2545],[135.9689,-4.2392],[135.9632,-4.2312],[135.9572,-4.2279],[135.9493,-4.2266],[135.9321,-4.2268],[135.9174,-4.2278],[135.9067,-4.2312],[135.902,-4.2308],[135.8889,-4.2269],[135.8774,-4.2284],[135.8605,-4.2288],[135.8381,-4.2268],[135.833,-4.2277],[135.8135,-4.2256],[135.7993,-4.2229],[135.7957,-4.2209],[135.7861,-4.2089],[135.7825,-4.2076],[135.7751,-4.2081],[135.7521,-4.2142],[135.746,-4.2135],[135.7392,-4.2102],[135.7248,-4.2078],[135.7105,-4.2044],[135.7019,-4.2005],[135.6918,-4.1914],[135.6823,-4.1907],[135.6754,-4.1939],[135.6712,-4.203],[135.657,-4.2122],[135.6488,-4.2161],[135.6406,-4.2175],[135.6178,-4.2189],[135.6112,-4.2164],[135.6019,-4.2092],[135.5963,-4.2064],[135.5865,-4.2079],[135.5676,-4.2082],[135.5436,-4.2058],[135.5345,-4.2041],[135.5082,-4.2018],[135.4959,-4.2015],[135.4682,-4.195],[135.4513,-4.1917],[135.4413,-4.1925],[135.4277,-4.1818],[135.4224,-4.1765],[135.3982,-4.1608],[135.3762,-4.1593],[135.3665,-4.1576],[135.3628,-4.1588],[135.3564,-4.1692],[135.3455,-4.1755],[135.3355,-4.1779],[135.3257,-4.1702],[135.3196,-4.1688],[135.3138,-4.1655],[135.2985,-4.1602],[135.2985,-4.156],[135.2906,-4.1563],[135.2407,-4.1547],[135.1893,-4.1526],[135.1645,-4.1526],[135.114,-4.1504],[135.0659,-4.1491],[135.0631,-4.1445],[135.0607,-4.1259],[135.056,-4.0971],[135.0507,-4.0689],[135.0473,-4.0453],[135.0331,-4.0656],[135.0021,-4.1058],[134.9794,-4.1302],[134.951,-4.1566],[134.9232,-4.1831],[134.8999,-4.2095],[134.8899,-4.2215],[134.8783,-4.2408],[134.8703,-4.2512],[134.8857,-4.2518],[134.8951,-4.2557],[134.9046,-4.2636],[134.9117,-4.2666],[134.9257,-4.2808],[134.9326,-4.2912],[134.932,-4.2962],[134.9283,-4.2984],[134.9302,-4.3032],[134.9353,-4.3086],[134.9443,-4.3157],[134.9552,-4.323],[134.9625,-4.327],[134.9795,-4.3322],[134.9976,-4.3411],[135.0117,-4.3504],[135.0223,-4.3456],[135.0216,-4.3544],[135.028,-4.3579],[135.0368,-4.3672],[135.0384,-4.3737],[135.0432,-4.3766],[135.0521,-4.3779],[135.0586,-4.3768],[135.0595,-4.3731],[135.0646,-4.3737],[135.0702,-4.3773],[135.0728,-4.3872],[135.0647,-4.3843],[135.0626,-4.3872],[135.0848,-4.4001],[135.097,-4.4087],[135.112,-4.4084],[135.1176,-4.4138],[135.1288,-4.4213],[135.1354,-4.4224],[135.1376,-4.4252],[135.1516,-4.4324],[135.1638,-4.4401],[135.1769,-4.4467],[135.192,-4.4559],[135.1988,-4.4632],[135.2035,-4.4623],[135.2075,-4.4657],[135.2257,-4.4627],[135.2468,-4.4573],[135.2779,-4.4475],[135.2902,-4.4447],[135.3051,-4.4428],[135.3262,-4.4423],[135.3386,-4.445],[135.3449,-4.4402],[135.3455,-4.4375],[135.356,-4.4394],[135.3737,-4.4369],[135.3977,-4.4355],[135.4053,-4.436],[135.4113,-4.4334],[135.4158,-4.4362],[135.439,-4.4369],[135.4678,-4.4395],[135.4993,-4.4439],[135.5202,-4.4483],[135.5599,-4.4585],[135.5713,-4.4608],[135.5856,-4.4656],[135.5907,-4.4702],[135.5955,-4.4725],[135.6034,-4.4738],[135.6315,-4.476],[135.6348,-4.4781],[135.6578,-4.4813],[135.6633,-4.4805],[135.6668,-4.4831],[135.6832,-4.4865],[135.7005,-4.4893],[135.7087,-4.4949],[135.7178,-4.4936],[135.7185,-4.4973],[135.7272,-4.4968],[135.7392,-4.4946],[135.7458,-4.4883],[135.7542,-4.4897],[135.7726,-4.4875],[135.7814,-4.487],[135.789,-4.484],[135.7931,-4.4851],[135.8262,-4.4843],[135.8688,-4.4851],[135.905,-4.487],[135.9224,-4.4914],[135.9303,-4.4945],[135.948,-4.5059],[135.954,-4.5152],[135.9588,-4.5271],[135.9615,-4.5294],[135.9677,-4.5265],[135.9736,-4.532],[135.9824,-4.5371],[135.9873,-4.5451],[136.0056,-4.5527],[136.0175,-4.5601],[136.0301,-4.5702],[136.0378,-4.5784],[136.0452,-4.5796],[136.0491,-4.5845],[136.0569,-4.5887],[136.0654,-4.5878],[136.0735,-4.5899],[136.0784,-4.594],[136.0894,-4.5987],[136.094,-4.6023],[136.1003,-4.6121],[136.1114,-4.6213],[136.1203,-4.619],[136.1291,-4.6206],[136.1332,-4.6227],[136.1399,-4.631],[136.1437,-4.6324],[136.1581,-4.634],[136.1774,-4.6396],[136.1909,-4.6452],[136.2006,-4.6516],[136.2078,-4.6576],[136.2106,-4.6528],[136.2158,-4.6503],[136.225,-4.6527],[136.2287,-4.6552],[136.2289,-4.6605],[136.2376,-4.6638],[136.2571,-4.663],[136.2762,-4.6682],[136.2854,-4.6676],[136.2926,-4.6732],[136.2958,-4.6735],[136.299,-4.668],[136.3072,-4.6602],[136.3111,-4.6588],[136.3215,-4.6636],[136.3237,-4.6662],[136.3341,-4.668],[136.3544,-4.6744],[136.3592,-4.678],[136.3665,-4.6801],[136.3679,-4.6825],[136.3903,-4.694],[136.3947,-4.6998],[136.3987,-4.702],[136.4034,-4.7014],[136.4136,-4.7081],[136.4193,-4.716],[136.4271,-4.7216],[136.437,-4.7316],[136.4412,-4.733],[136.444,-4.7392],[136.4499,-4.739],[136.4526,-4.7349],[136.4629,-4.7363],[136.465,-4.7397],[136.4711,-4.7416],[136.482,-4.7427],[136.4866,-4.7418],[136.489,-4.7453],[136.496,-4.7479],[136.4976,-4.7527],[136.5116,-4.762],[136.5181,-4.7709],[136.5217,-4.7718],[136.5286,-4.7705],[136.5343,-4.7727],[136.5356,-4.7787],[136.5327,-4.7828],[136.546,-4.7904],[136.5554,-4.789],[136.5635,-4.7917],[136.5689,-4.7983],[136.5903,-4.807],[136.5981,-4.8095],[136.6241,-4.8233],[136.6364,-4.8285],[136.6431,-4.8332],[136.6553,-4.8346],[136.6667,-4.8387],[136.6739,-4.8425],[136.678,-4.8466],[136.6896,-4.8451],[136.6961,-4.8408],[136.7047,-4.8495],[136.7201,-4.856],[136.727,-4.8635],[136.7348,-4.8694],[136.7422,-4.8721],[136.752,-4.8728],[136.7543,-4.8639],[136.7624,-4.8612],[136.7692,-4.8629],[136.7736,-4.8675],[136.7796,-4.8672],[136.7854,-4.8636],[136.7919,-4.8677],[136.7932,-4.8765],[136.7897,-4.8826],[136.7902,-4.8879],[136.7933,-4.8885],[136.7977,-4.8938],[136.8057,-4.8966],[136.8214,-4.9072],[136.8267,-4.909],[136.8314,-4.9136],[136.84,-4.9058],[136.8443,-4.9068],[136.8468,-4.9044],[136.8619,-4.8986],[136.8684,-4.8991],[136.8763,-4.8901],[136.8839,-4.89],[136.8907,-4.8874],[136.8996,-4.8809],[136.9053,-4.8742],[136.9109,-4.874],[136.917,-4.8685],[136.9179,-4.8593],[136.9233,-4.856],[136.93,-4.8667],[136.9295,-4.8766],[136.9245,-4.89],[136.9251,-4.8969],[136.9335,-4.9044],[136.9476,-4.9109],[136.9532,-4.9163],[136.9583,-4.9186],[136.9647,-4.9238],[136.9669,-4.9283],[136.9762,-4.939],[136.9795,-4.9383],[136.9844,-4.9322],[136.994,-4.9356],[137.0046,-4.9369],[137.0136,-4.9327],[137.0249,-4.9231],[137.034,-4.9213],[137.0423,-4.9241],[137.0471,-4.9209],[137.0599,-4.9189],[137.065,-4.9266],[137.0643,-4.9307],[137.0578,-4.9392],[137.0678,-4.9507],[137.0767,-4.9572],[137.083,-4.966],[137.0919,-4.9737],[137.1082,-4.9742],[137.1124,-4.9673],[137.1138,-4.9609],[137.1228,-4.962],[137.1255,-4.9666],[137.1316,-4.9699],[137.138,-4.9709],[137.1509,-4.9745],[137.1558,-4.9834],[137.1706,-4.9967],[137.1752,-5.0059],[137.1836,-5.0086],[137.1873,-4.9978],[137.1978,-4.9976],[137.2035,-4.9933],[137.2105,-4.982],[137.2154,-4.9808],[137.2289,-4.9844],[137.2471,-5.0003],[137.2551,-5.009],[137.2734,-5.02],[137.2815,-5.0238],[137.2875,-5.0236],[137.2895,-5.0142],[137.2946,-5.0116],[137.3065,-5.0128],[137.3263,-5.0272],[137.3328,-5.0355],[137.3344,-5.0416],[137.3372,-5.0451],[137.3375,-5.0516],[137.3403,-5.0579],[137.3542,-5.0708],[137.364,-5.081],[137.3652,-5.0849],[137.3721,-5.0884],[137.3782,-5.0937],[137.3843,-5.0972],[137.3954,-5.1081],[137.4106,-5.1094],[137.4148,-5.1147],[137.4176,-5.1238],[137.4211,-5.1252],[137.4326,-5.1176],[137.4388,-5.0986],[137.444,-5.0973],[137.4485,-5.0985],[137.4603,-5.1097],[137.4696,-5.113],[137.4746,-5.1163],[137.4785,-5.126],[137.4963,-5.1454],[137.5078,-5.1442],[137.5144,-5.1418],[137.5212,-5.1338],[137.5331,-5.1343],[137.5408,-5.1368],[137.5492,-5.1421],[137.5532,-5.1428],[137.5548,-5.1469],[137.5597,-5.1439],[137.5767,-5.1359],[137.5869,-5.1355],[137.5977,-5.1369],[137.606,-5.139],[137.614,-5.1383],[137.6203,-5.1362],[137.6297,-5.1299],[137.6311,-5.1223],[137.6266,-5.1164],[137.6175,-5.1129],[137.6064,-5.1069],[137.6018,-5.1014],[137.6011,-5.0951],[137.6022,-5.0871],[137.6067,-5.0829],[137.6186,-5.078],[137.628,-5.0784],[137.637,-5.07],[137.6412,-5.062],[137.6426,-5.0543],[137.6503,-5.0488],[137.6534,-5.0408],[137.6601,-5.0373],[137.6793,-5.0329],[137.7059,-5.0225],[137.731,-5.0078],[137.7634,-4.9901],[137.7915,-4.9709],[137.8151,-4.9443],[137.8136,-4.8941],[137.7767,-4.8646],[137.7369,-4.8336],[137.6882,-4.8189],[137.6513,-4.7908],[137.6144,-4.7303],[137.5775,-4.6521],[137.5686,-4.6152],[137.5789,-4.5842],[137.5967,-4.5724],[137.6144,-4.5488],[137.6276,-4.5222],[137.6498,-4.4912],[137.6645,-4.4735],[137.668,-4.4336],[137.6704,-4.3737],[137.6754,-4.246],[137.6784,-4.1723]]}},{"type":"Feature","properties":{"mhid":"1332:501","alt_name":"KABUPATEN BOVEN DIGOEL","latitude":-5.70519,"longitude":140.36349,"sample_value":981},"geometry":{"type":"LineString","coordinates":[[140.8483,-6.6182],[140.8439,-6.6161],[140.8403,-6.6107],[140.8442,-6.6086],[140.8507,-6.6094],[140.8613,-6.607],[140.8706,-6.6036],[140.8791,-6.5934],[140.8862,-6.5924],[140.8889,-6.5959],[140.8873,-6.604],[140.8902,-6.6043],[140.8946,-6.5973],[140.9008,-6.594],[140.9053,-6.5896],[140.9103,-6.578],[140.9096,-6.5703],[140.9056,-6.5684],[140.8992,-6.5707],[140.8926,-6.5756],[140.8896,-6.5756],[140.8859,-6.5715],[140.8866,-6.5654],[140.8894,-6.5606],[140.8962,-6.5584],[140.9072,-6.5582],[140.9123,-6.5552],[140.9179,-6.557],[140.9252,-6.5612],[140.9336,-6.5631],[140.9352,-6.5569],[140.9242,-6.5551],[140.9208,-6.5502],[140.9276,-6.5424],[140.9289,-6.538],[140.9263,-6.5272],[140.9191,-6.5155],[140.9191,-6.5048],[140.9252,-6.4934],[140.9287,-6.4913],[140.9478,-6.4916],[140.9573,-6.4894],[140.9585,-6.4849],[140.9529,-6.4833],[140.9467,-6.4793],[140.9452,-6.4743],[140.9465,-6.4688],[140.9374,-6.4711],[140.9302,-6.471],[140.9259,-6.4692],[140.9219,-6.4636],[140.9218,-6.4589],[140.9247,-6.4553],[140.9344,-6.4529],[140.9384,-6.4473],[140.9349,-6.4433],[140.9242,-6.4415],[140.917,-6.4358],[140.9151,-6.4308],[140.9177,-6.4193],[140.9247,-6.4159],[140.9282,-6.4169],[140.9367,-6.4281],[140.9467,-6.4365],[140.9514,-6.4345],[140.9553,-6.4267],[140.956,-6.4204],[140.9536,-6.4186],[140.9475,-6.4192],[140.9419,-6.4171],[140.9413,-6.4113],[140.9523,-6.4065],[140.9572,-6.3998],[140.9667,-6.395],[140.9773,-6.3937],[140.9812,-6.3897],[140.9806,-6.3861],[140.9708,-6.3833],[140.9619,-6.3837],[140.9512,-6.3907],[140.9444,-6.3892],[140.9408,-6.384],[140.9405,-6.3781],[140.9454,-6.3695],[140.9524,-6.3718],[140.9617,-6.3714],[140.977,-6.3651],[140.974,-6.3615],[140.9656,-6.3593],[140.9611,-6.3566],[140.9593,-6.3489],[140.966,-6.3477],[140.9671,-6.3408],[140.9606,-6.3356],[140.9582,-6.3308],[140.9582,-6.3258],[140.9607,-6.3225],[140.9736,-6.3258],[140.9866,-6.3191],[140.9948,-6.3188],[141,-6.3203],[141,-6.2148],[141,-6.0667],[141,-5.9439],[141,-5.7839],[141,-5.7073],[141,-5.586],[141,-5.4997],[141,-5.2947],[140.9997,-5.2947],[140.9169,-5.2814],[140.7644,-5.2582],[140.6948,-5.2483],[140.5561,-5.229],[140.3909,-5.206],[140.2307,-5.1836],[140.1471,-5.169],[140.0981,-5.1604],[139.9914,-5.1323],[139.9057,-5.1096],[139.7931,-5.0799],[139.6444,-5.0411],[139.6936,-5.199],[139.705,-5.2354],[139.7266,-5.4384],[139.727,-5.5931],[139.7274,-5.7165],[139.7449,-5.7751],[139.7919,-5.9319],[139.8221,-6.0328],[139.8697,-6.1915],[139.8496,-6.1929],[139.8351,-6.195],[139.8254,-6.2067],[139.8226,-6.222],[139.8226,-6.2385],[139.8247,-6.2579],[139.833,-6.2697],[139.8565,-6.2814],[139.8586,-6.2869],[139.8558,-6.2952],[139.8538,-6.3063],[139.8544,-6.3125],[139.8544,-6.3201],[139.8544,-6.3243],[139.8482,-6.3402],[139.8427,-6.3457],[139.8365,-6.354],[139.8233,-6.3658],[139.815,-6.3754],[139.8005,-6.3893],[139.7881,-6.4176],[140.0724,-6.4331],[140.0702,-6.5583],[140.0684,-6.6589],[140.0663,-6.7795],[140.0648,-6.868],[140.0628,-6.9801],[140.0599,-7.1472],[140.0578,-7.2661],[140.0902,-7.2395],[140.3008,-7.067],[140.4263,-6.9641],[140.5347,-6.8752],[140.6081,-6.815],[140.6944,-6.7443],[140.7816,-6.6728],[140.8483,-6.6182]]}},{"type":"Feature","properties":{"mhid":"1332:502","alt_name":"KABUPATEN MAPPI","latitude":-6.49971,"longitude":139.34441,"sample_value":372},"geometry":{"type":"LineString","coordinates":[[138.7967,-7.1629],[138.8056,-7.1598],[138.7964,-7.1537],[138.7853,-7.1487],[138.7787,-7.151],[138.781,-7.1577],[138.7887,-7.1634],[138.7967,-7.1629]]}},{"type":"Feature","properties":{"mhid":"1332:502","alt_name":"KABUPATEN MAPPI","latitude":-6.49971,"longitude":139.34441,"sample_value":372},"geometry":{"type":"LineString","coordinates":[[138.7164,-7.1167],[138.7114,-7.1194],[138.7085,-7.1262],[138.7066,-7.1373],[138.7072,-7.1418],[138.7129,-7.15],[138.7161,-7.1565],[138.7229,-7.1612],[138.7319,-7.1644],[138.7478,-7.1676],[138.7635,-7.1671],[138.7702,-7.1645],[138.7582,-7.1443],[138.7394,-7.1303],[138.7292,-7.1237],[138.7164,-7.1167]]}},{"type":"Feature","properties":{"mhid":"1332:502","alt_name":"KABUPATEN MAPPI","latitude":-6.49971,"longitude":139.34441,"sample_value":372},"geometry":{"type":"LineString","coordinates":[[140.0578,-7.2661],[140.0599,-7.1472],[140.0628,-6.9801],[140.0648,-6.868],[140.0663,-6.7795],[140.0684,-6.6589],[140.0702,-6.5583],[140.0724,-6.4331],[139.7881,-6.4176],[139.8005,-6.3893],[139.815,-6.3754],[139.8233,-6.3658],[139.8365,-6.354],[139.8427,-6.3457],[139.8482,-6.3402],[139.8544,-6.3243],[139.8544,-6.3201],[139.8544,-6.3125],[139.8538,-6.3063],[139.8558,-6.2952],[139.8586,-6.2869],[139.8565,-6.2814],[139.833,-6.2697],[139.8247,-6.2579],[139.8226,-6.2385],[139.8226,-6.222],[139.8254,-6.2067],[139.8351,-6.195],[139.8496,-6.1929],[139.8697,-6.1915],[139.8221,-6.0328],[139.7919,-5.9319],[139.7449,-5.7751],[139.7274,-5.7165],[139.727,-5.5931],[139.7266,-5.4384],[139.705,-5.2354],[139.6936,-5.199],[139.6444,-5.0411],[139.5447,-5.1721],[139.4536,-5.2918],[139.3689,-5.403],[139.2967,-5.4979],[139.259,-5.5474],[139.1481,-5.609],[139.0306,-5.6742],[138.9431,-5.7228],[138.9408,-5.8085],[138.9381,-5.9044],[138.9356,-5.9992],[138.9311,-6.1624],[138.9282,-6.2695],[138.9241,-6.4202],[138.9163,-6.4187],[138.9109,-6.4296],[138.9033,-6.433],[138.887,-6.4464],[138.882,-6.4534],[138.8761,-6.4568],[138.8706,-6.4656],[138.8622,-6.4706],[138.8613,-6.4725],[138.8508,-6.4811],[138.8406,-6.4822],[138.8357,-6.4803],[138.8277,-6.4801],[138.819,-6.4815],[138.8132,-6.4863],[138.8086,-6.4802],[138.7918,-6.4782],[138.781,-6.4807],[138.7683,-6.494],[138.7607,-6.5048],[138.7525,-6.5124],[138.7455,-6.5149],[138.7284,-6.513],[138.6999,-6.508],[138.6822,-6.5143],[138.672,-6.5207],[138.6644,-6.546],[138.6511,-6.553],[138.6414,-6.5668],[138.6498,-6.5745],[138.661,-6.5739],[138.666,-6.5787],[138.6669,-6.59],[138.6713,-6.5927],[138.6753,-6.6014],[138.683,-6.6081],[138.6936,-6.6096],[138.6963,-6.6182],[138.6947,-6.6263],[138.6806,-6.6369],[138.6751,-6.6398],[138.6703,-6.6487],[138.6697,-6.6528],[138.6662,-6.6543],[138.6657,-6.659],[138.6686,-6.6616],[138.6685,-6.6658],[138.671,-6.6715],[138.6695,-6.6804],[138.6695,-6.6911],[138.6729,-6.7047],[138.6723,-6.7195],[138.6735,-6.7243],[138.6641,-6.7314],[138.6507,-6.7352],[138.6392,-6.7325],[138.6364,-6.7297],[138.6251,-6.7322],[138.6205,-6.7362],[138.6176,-6.7361],[138.6119,-6.7472],[138.6106,-6.752],[138.6139,-6.7679],[138.6212,-6.7826],[138.6275,-6.7897],[138.6378,-6.8034],[138.6478,-6.812],[138.6542,-6.8159],[138.6616,-6.8184],[138.6665,-6.8234],[138.6699,-6.8301],[138.6728,-6.8326],[138.6716,-6.8373],[138.6678,-6.842],[138.6677,-6.8461],[138.6741,-6.8572],[138.6766,-6.8672],[138.6709,-6.8797],[138.6667,-6.883],[138.6519,-6.8869],[138.6401,-6.8836],[138.6284,-6.8762],[138.6182,-6.8822],[138.6127,-6.8842],[138.6078,-6.8885],[138.6003,-6.8906],[138.5894,-6.897],[138.5867,-6.8973],[138.5775,-6.9029],[138.5707,-6.9118],[138.5655,-6.9211],[138.5653,-6.9308],[138.5609,-6.9347],[138.5669,-6.9463],[138.5723,-6.9509],[138.5727,-6.9572],[138.5855,-6.979],[138.5885,-6.9825],[138.5964,-6.9956],[138.6061,-7.0047],[138.6161,-7.0128],[138.6329,-7.0199],[138.6404,-7.025],[138.6462,-7.0266],[138.6535,-7.0338],[138.6635,-7.0382],[138.6768,-7.0508],[138.6815,-7.0528],[138.6919,-7.0653],[138.7005,-7.0713],[138.7091,-7.0759],[138.734,-7.0952],[138.7472,-7.1077],[138.7605,-7.1168],[138.7747,-7.1247],[138.8,-7.133],[138.8146,-7.1397],[138.8184,-7.1421],[138.8294,-7.1464],[138.8538,-7.1583],[138.8567,-7.1721],[138.8554,-7.1805],[138.843,-7.2],[138.8331,-7.2062],[138.8202,-7.2074],[138.7977,-7.2083],[138.7672,-7.2085],[138.7396,-7.2065],[138.7227,-7.204],[138.6866,-7.1978],[138.6774,-7.1956],[138.6731,-7.1979],[138.6671,-7.2085],[138.6673,-7.2142],[139.1954,-7.3232],[139.4001,-7.3654],[139.53,-7.3922],[139.695,-7.4263],[139.8287,-7.4539],[139.9102,-7.3871],[139.9858,-7.3252],[140.0578,-7.2661]]}},{"type":"Feature","properties":{"mhid":"1332:503","alt_name":"KABUPATEN ASMAT","latitude":-5.3795,"longitude":138.46344,"sample_value":739},"geometry":{"type":"LineString","coordinates":[[137.7324,-5.2844],[137.7294,-5.2815],[137.7247,-5.2863],[137.7202,-5.2865],[137.723,-5.2929],[137.7262,-5.2933],[137.7348,-5.2901],[137.7363,-5.2864],[137.7324,-5.2844]]}},{"type":"Feature","properties":{"mhid":"1332:503","alt_name":"KABUPATEN ASMAT","latitude":-5.3795,"longitude":138.46344,"sample_value":739},"geometry":{"type":"LineString","coordinates":[[138.869,-4.7277],[138.8249,-4.7283],[138.718,-4.7409],[138.643,-4.7397],[138.5832,-4.7262],[138.4577,-4.7013],[138.3412,-4.6781],[138.1835,-4.6415],[138.1372,-4.6307],[138.1116,-4.6282],[137.9662,-4.5984],[137.9126,-4.6063],[137.8699,-4.6063],[137.7509,-4.6276],[137.6674,-4.64],[137.5775,-4.6521],[137.6144,-4.7303],[137.6513,-4.7908],[137.6882,-4.8189],[137.7369,-4.8336],[137.7767,-4.8646],[137.8136,-4.8941],[137.8151,-4.9443],[137.7915,-4.9709],[137.7634,-4.9901],[137.731,-5.0078],[137.7059,-5.0225],[137.6793,-5.0329],[137.6601,-5.0373],[137.6534,-5.0408],[137.6503,-5.0488],[137.6426,-5.0543],[137.6412,-5.062],[137.637,-5.07],[137.628,-5.0784],[137.6186,-5.078],[137.6067,-5.0829],[137.6022,-5.0871],[137.6011,-5.0951],[137.6018,-5.1014],[137.6064,-5.1069],[137.6175,-5.1129],[137.6266,-5.1164],[137.6311,-5.1223],[137.6297,-5.1299],[137.6203,-5.1362],[137.614,-5.1383],[137.606,-5.139],[137.5977,-5.1369],[137.5869,-5.1355],[137.5767,-5.1359],[137.5597,-5.1439],[137.5548,-5.1469],[137.5561,-5.1569],[137.5506,-5.1681],[137.5556,-5.1746],[137.5615,-5.1793],[137.5773,-5.1869],[137.5808,-5.1852],[137.5838,-5.1888],[137.5943,-5.1926],[137.6024,-5.1968],[137.6146,-5.1981],[137.6196,-5.2029],[137.6391,-5.2144],[137.6439,-5.2147],[137.653,-5.2078],[137.6601,-5.2105],[137.6629,-5.2131],[137.6729,-5.2173],[137.683,-5.2199],[137.684,-5.2254],[137.6814,-5.2383],[137.6892,-5.2438],[137.7136,-5.2721],[137.7186,-5.2764],[137.7247,-5.2793],[137.7323,-5.2806],[137.741,-5.2906],[137.7434,-5.2974],[137.7437,-5.3048],[137.7419,-5.3087],[137.7328,-5.318],[137.7274,-5.3261],[137.7239,-5.3344],[137.7211,-5.3471],[137.7211,-5.3535],[137.7248,-5.3609],[137.7307,-5.3692],[137.736,-5.3727],[137.7444,-5.3744],[137.7482,-5.3709],[137.762,-5.361],[137.7684,-5.3594],[137.7749,-5.3645],[137.7961,-5.37],[137.8001,-5.3734],[137.8027,-5.3783],[137.8098,-5.3796],[137.817,-5.3763],[137.8257,-5.3757],[137.8346,-5.3725],[137.8392,-5.3746],[137.8442,-5.3725],[137.8528,-5.3658],[137.8549,-5.3606],[137.8577,-5.3593],[137.8739,-5.3571],[137.8785,-5.3662],[137.8916,-5.3699],[137.8961,-5.3835],[137.9067,-5.3954],[137.9193,-5.4079],[137.9258,-5.4111],[137.9374,-5.428],[137.9548,-5.4478],[137.9612,-5.4524],[137.966,-5.4588],[137.9738,-5.4662],[137.9818,-5.4758],[137.9877,-5.4804],[138.0069,-5.4981],[138.0164,-5.5032],[138.0269,-5.5044],[138.0344,-5.5024],[138.0418,-5.5019],[138.0472,-5.503],[138.0545,-5.5081],[138.0595,-5.5151],[138.0629,-5.5175],[138.068,-5.5176],[138.0759,-5.5205],[138.0842,-5.5253],[138.0841,-5.531],[138.0737,-5.5529],[138.0649,-5.5562],[138.0593,-5.5631],[138.0537,-5.5769],[138.0514,-5.5767],[138.0478,-5.5944],[138.0449,-5.6028],[138.0432,-5.62],[138.0453,-5.6316],[138.0452,-5.6365],[138.0481,-5.6445],[138.0468,-5.6486],[138.0504,-5.6558],[138.0495,-5.6664],[138.0504,-5.6759],[138.0534,-5.681],[138.0539,-5.6879],[138.0576,-5.6962],[138.0665,-5.7034],[138.0641,-5.709],[138.0639,-5.7175],[138.0682,-5.728],[138.0727,-5.7313],[138.0756,-5.737],[138.0887,-5.7449],[138.0898,-5.7414],[138.0958,-5.7331],[138.1242,-5.7231],[138.1303,-5.7197],[138.1408,-5.7187],[138.1517,-5.7193],[138.1653,-5.7218],[138.1705,-5.7246],[138.174,-5.7286],[138.1761,-5.7392],[138.1748,-5.744],[138.1594,-5.7536],[138.1561,-5.7672],[138.1564,-5.7756],[138.1599,-5.7926],[138.1624,-5.798],[138.1629,-5.8036],[138.1659,-5.8098],[138.1746,-5.8193],[138.1794,-5.8215],[138.1913,-5.8246],[138.1988,-5.8252],[138.2187,-5.825],[138.2308,-5.8241],[138.2332,-5.826],[138.2435,-5.8275],[138.2725,-5.8371],[138.2781,-5.8415],[138.2804,-5.8483],[138.2791,-5.859],[138.2766,-5.8619],[138.2605,-5.864],[138.2563,-5.8673],[138.2521,-5.8756],[138.2503,-5.8897],[138.2506,-5.9079],[138.2532,-5.9199],[138.2556,-5.9242],[138.2713,-5.9384],[138.2795,-5.9427],[138.2812,-5.9496],[138.2854,-5.954],[138.291,-5.9642],[138.3019,-5.9802],[138.3139,-6.0027],[138.3204,-6.0203],[138.3309,-6.0422],[138.3426,-6.0646],[138.3493,-6.0724],[138.3479,-6.0797],[138.3494,-6.0895],[138.3561,-6.1036],[138.366,-6.1205],[138.3724,-6.1281],[138.3826,-6.1456],[138.3881,-6.1576],[138.3931,-6.163],[138.3951,-6.1706],[138.3876,-6.176],[138.3842,-6.1822],[138.3829,-6.1951],[138.3851,-6.2075],[138.3907,-6.2302],[138.3977,-6.2507],[138.4017,-6.2558],[138.4024,-6.2662],[138.4107,-6.2937],[138.4168,-6.3034],[138.4314,-6.3226],[138.427,-6.3309],[138.4205,-6.3398],[138.4217,-6.3462],[138.4312,-6.3615],[138.4475,-6.3769],[138.4618,-6.3921],[138.4716,-6.4001],[138.4742,-6.4033],[138.4865,-6.4101],[138.4893,-6.4162],[138.4941,-6.4208],[138.5175,-6.4385],[138.5185,-6.4403],[138.5311,-6.4494],[138.5343,-6.4537],[138.5433,-6.4607],[138.5552,-6.4725],[138.5734,-6.4879],[138.5759,-6.4884],[138.5797,-6.4943],[138.5959,-6.5118],[138.5972,-6.5122],[138.6124,-6.5324],[138.6177,-6.5384],[138.6292,-6.555],[138.6373,-6.5638],[138.6414,-6.5668],[138.6511,-6.553],[138.6644,-6.546],[138.672,-6.5207],[138.6822,-6.5143],[138.6999,-6.508],[138.7284,-6.513],[138.7455,-6.5149],[138.7525,-6.5124],[138.7607,-6.5048],[138.7683,-6.494],[138.781,-6.4807],[138.7918,-6.4782],[138.8086,-6.4802],[138.8132,-6.4863],[138.819,-6.4815],[138.8277,-6.4801],[138.8357,-6.4803],[138.8406,-6.4822],[138.8508,-6.4811],[138.8613,-6.4725],[138.8622,-6.4706],[138.8706,-6.4656],[138.8761,-6.4568],[138.882,-6.4534],[138.887,-6.4464],[138.9033,-6.433],[138.9109,-6.4296],[138.9163,-6.4187],[138.9241,-6.4202],[138.9282,-6.2695],[138.9311,-6.1624],[138.9356,-5.9992],[138.9381,-5.9044],[138.9408,-5.8085],[138.9431,-5.7228],[139.0306,-5.6742],[139.1481,-5.609],[139.259,-5.5474],[139.2967,-5.4979],[139.3689,-5.403],[139.4536,-5.2918],[139.5447,-5.1721],[139.6444,-5.0411],[139.5114,-5.0063],[139.4432,-4.9839],[139.3042,-4.9383],[139.209,-4.8754],[139.1343,-4.8261],[139.0296,-4.7374],[138.9498,-4.7265],[138.869,-4.7277]]}},{"type":"Feature","properties":{"mhid":"1332:504","alt_name":"KABUPATEN YAHUKIMO","latitude":-4.60403,"longitude":139.58405,"sample_value":265},"geometry":{"type":"LineString","coordinates":[[140.1343,-3.6958],[140.1272,-3.6954],[140.1182,-3.6873],[140.1175,-3.6831],[140.1025,-3.6806],[140.0992,-3.6771],[140.09,-3.6831],[140.0856,-3.6801],[140.0826,-3.6747],[140.0762,-3.6705],[140.0749,-3.6645],[140.0757,-3.6577],[140.0718,-3.6567],[140.0655,-3.6483],[140.0567,-3.6552],[140.0496,-3.6659],[140.0411,-3.6708],[140.0329,-3.6596],[140.0315,-3.6547],[140.0344,-3.6487],[140.0315,-3.6451],[140.0212,-3.6369],[140.0111,-3.6388],[140.0038,-3.6517],[139.9994,-3.6526],[139.9919,-3.657],[139.9856,-3.657],[139.9799,-3.6539],[139.9709,-3.6412],[139.9621,-3.6417],[139.9581,-3.639],[139.9592,-3.6316],[139.9666,-3.6222],[139.9713,-3.6206],[139.9697,-3.6124],[139.9611,-3.6092],[139.9452,-3.6129],[139.94,-3.6149],[139.9386,-3.6199],[139.9341,-3.6222],[139.925,-3.6244],[139.9173,-3.624],[139.907,-3.6163],[139.9023,-3.616],[139.8939,-3.6205],[139.8932,-3.6224],[139.8395,-3.7196],[139.7839,-3.8204],[139.7285,-3.9206],[139.6847,-4],[139.6319,-4.037],[139.5655,-4.063],[139.5337,-4.0687],[139.4942,-4.0803],[139.484,-4.0855],[139.3842,-4.1099],[139.3624,-4.1139],[139.3511,-4.1187],[139.3261,-4.1244],[139.2826,-4.1324],[139.2294,-4.1461],[139.1834,-4.1574],[139.1616,-4.1623],[139.1116,-4.1752],[139.0479,-4.1929],[139.0142,-4.2048],[138.8985,-4.2525],[138.8391,-4.2666],[138.845,-4.4046],[138.845,-4.4332],[138.847,-4.4536],[138.847,-4.4689],[138.849,-4.4862],[138.849,-4.4995],[138.8465,-4.5133],[138.846,-4.5209],[138.8409,-4.5322],[138.8337,-4.5424],[138.8337,-4.5567],[138.8521,-4.5842],[138.8572,-4.5995],[138.8572,-4.6158],[138.8582,-4.6383],[138.8654,-4.6638],[138.869,-4.7277],[138.9498,-4.7265],[139.0296,-4.7374],[139.1343,-4.8261],[139.209,-4.8754],[139.3042,-4.9383],[139.4432,-4.9839],[139.5114,-5.0063],[139.6444,-5.0411],[139.7931,-5.0799],[139.9057,-5.1096],[139.9914,-5.1323],[140.0981,-5.1604],[140.1471,-5.169],[140.1539,-5.1059],[140.1528,-5.066],[140.1468,-5.0617],[140.1391,-5.0584],[140.1399,-5.0544],[140.1329,-5.0505],[140.1314,-5.0537],[140.1222,-5.0544],[140.1181,-5.051],[140.1124,-5.0515],[140.1123,-5.0573],[140.1079,-5.0607],[140.0974,-5.0607],[140.0863,-5.0594],[140.0754,-5.0545],[140.0804,-5.0475],[140.0869,-5.0413],[140.0988,-5.0382],[140.1056,-5.031],[140.1156,-5.0236],[140.1255,-5.0122],[140.1275,-5.0072],[140.1359,-4.9992],[140.1434,-4.9953],[140.1659,-4.9794],[140.1855,-4.976],[140.2111,-4.9709],[140.2341,-4.9623],[140.2512,-4.9521],[140.2529,-4.9359],[140.2486,-4.9231],[140.2495,-4.8984],[140.2418,-4.8865],[140.235,-4.8643],[140.2341,-4.8421],[140.2392,-4.8302],[140.2358,-4.8157],[140.2273,-4.7995],[140.2282,-4.7893],[140.2256,-4.7697],[140.2268,-4.7452],[140.2204,-4.7325],[140.2129,-4.7058],[140.2108,-4.6866],[140.2012,-4.6717],[140.1628,-4.661],[140.1436,-4.6515],[140.1191,-4.6387],[140.1042,-4.6291],[140.048,-4.5702],[140.0194,-4.5416],[139.9841,-4.509],[139.9678,-4.4886],[139.9569,-4.456],[139.9623,-4.4178],[139.9746,-4.369],[139.9841,-4.3119],[139.9936,-4.2765],[139.9922,-4.2344],[139.9895,-4.1814],[139.991,-4.1505],[139.986,-4.1467],[139.9843,-4.1423],[139.9857,-4.132],[139.9885,-4.1289],[139.9815,-4.1271],[139.9798,-4.1208],[139.9747,-4.1162],[139.9788,-4.114],[139.9871,-4.1043],[139.9855,-4.0983],[139.9793,-4.0889],[139.9798,-4.0849],[139.9847,-4.0805],[139.9885,-4.0677],[139.9891,-4.0609],[139.9991,-4.0538],[140.0097,-4.0506],[140.0149,-4.0451],[140.0157,-4.0415],[140.0213,-4.0392],[140.0226,-4.0331],[140.026,-4.0295],[140.0349,-4.0259],[140.037,-4.0226],[140.0425,-4.025],[140.0477,-4.0199],[140.0578,-4.0173],[140.0669,-4.0183],[140.0746,-4.0164],[140.0898,-4.0161],[140.0924,-4.011],[140.0851,-4.0093],[140.073,-3.9996],[140.0719,-3.9975],[140.0649,-4.0001],[140.0547,-3.9971],[140.0513,-4.0004],[140.047,-3.9984],[140.0416,-3.9928],[140.04,-3.9886],[140.0344,-3.9856],[140.0387,-3.98],[140.0394,-3.974],[140.042,-3.9677],[140.0481,-3.9621],[140.0521,-3.954],[140.0557,-3.9511],[140.0564,-3.9463],[140.0612,-3.9399],[140.0672,-3.9391],[140.0719,-3.9417],[140.0946,-3.9503],[140.0978,-3.9495],[140.1061,-3.9366],[140.1065,-3.9321],[140.1033,-3.9242],[140.1039,-3.9098],[140.1149,-3.9048],[140.1206,-3.8994],[140.1328,-3.8949],[140.1417,-3.8948],[140.1465,-3.888],[140.145,-3.8796],[140.1474,-3.8719],[140.1468,-3.868],[140.1416,-3.8599],[140.1345,-3.8527],[140.135,-3.8475],[140.1399,-3.8493],[140.1448,-3.8474],[140.1488,-3.8422],[140.1536,-3.84],[140.153,-3.8343],[140.1594,-3.8297],[140.1615,-3.822],[140.1609,-3.8141],[140.1563,-3.81],[140.1498,-3.8079],[140.151,-3.799],[140.1483,-3.7938],[140.1499,-3.7878],[140.1432,-3.7862],[140.1385,-3.7813],[140.1399,-3.7751],[140.1361,-3.7733],[140.135,-3.766],[140.1482,-3.7687],[140.153,-3.7714],[140.1583,-3.7706],[140.1608,-3.7643],[140.1517,-3.7626],[140.1325,-3.7503],[140.1321,-3.7449],[140.1344,-3.74],[140.1396,-3.7377],[140.1359,-3.73],[140.1304,-3.726],[140.1256,-3.7156],[140.1311,-3.7147],[140.1305,-3.7021],[140.1362,-3.7016],[140.1343,-3.6958]]}},{"type":"Feature","properties":{"mhid":"1332:505","alt_name":"KABUPATEN PEGUNUNGAN BINTANG","latitude":-4.52167,"longitude":140.29541,"sample_value":895},"geometry":{"type":"LineString","coordinates":[[140.3819,-3.7373],[140.3751,-3.7437],[140.3697,-3.7429],[140.3635,-3.7441],[140.3521,-3.7383],[140.3458,-3.745],[140.3334,-3.7473],[140.3243,-3.7533],[140.3191,-3.7508],[140.3241,-3.7476],[140.321,-3.7427],[140.3152,-3.7395],[140.2979,-3.7349],[140.2649,-3.7268],[140.2469,-3.7213],[140.2357,-3.7193],[140.2197,-3.7152],[140.1945,-3.7101],[140.1634,-3.707],[140.1593,-3.7034],[140.159,-3.6994],[140.1543,-3.6959],[140.1418,-3.6949],[140.1343,-3.6958],[140.1362,-3.7016],[140.1305,-3.7021],[140.1311,-3.7147],[140.1256,-3.7156],[140.1304,-3.726],[140.1359,-3.73],[140.1396,-3.7377],[140.1344,-3.74],[140.1321,-3.7449],[140.1325,-3.7503],[140.1517,-3.7626],[140.1608,-3.7643],[140.1583,-3.7706],[140.153,-3.7714],[140.1482,-3.7687],[140.135,-3.766],[140.1361,-3.7733],[140.1399,-3.7751],[140.1385,-3.7813],[140.1432,-3.7862],[140.1499,-3.7878],[140.1483,-3.7938],[140.151,-3.799],[140.1498,-3.8079],[140.1563,-3.81],[140.1609,-3.8141],[140.1615,-3.822],[140.1594,-3.8297],[140.153,-3.8343],[140.1536,-3.84],[140.1488,-3.8422],[140.1448,-3.8474],[140.1399,-3.8493],[140.135,-3.8475],[140.1345,-3.8527],[140.1416,-3.8599],[140.1468,-3.868],[140.1474,-3.8719],[140.145,-3.8796],[140.1465,-3.888],[140.1417,-3.8948],[140.1328,-3.8949],[140.1206,-3.8994],[140.1149,-3.9048],[140.1039,-3.9098],[140.1033,-3.9242],[140.1065,-3.9321],[140.1061,-3.9366],[140.0978,-3.9495],[140.0946,-3.9503],[140.0719,-3.9417],[140.0672,-3.9391],[140.0612,-3.9399],[140.0564,-3.9463],[140.0557,-3.9511],[140.0521,-3.954],[140.0481,-3.9621],[140.042,-3.9677],[140.0394,-3.974],[140.0387,-3.98],[140.0344,-3.9856],[140.04,-3.9886],[140.0416,-3.9928],[140.047,-3.9984],[140.0513,-4.0004],[140.0547,-3.9971],[140.0649,-4.0001],[140.0719,-3.9975],[140.073,-3.9996],[140.0851,-4.0093],[140.0924,-4.011],[140.0898,-4.0161],[140.0746,-4.0164],[140.0669,-4.0183],[140.0578,-4.0173],[140.0477,-4.0199],[140.0425,-4.025],[140.037,-4.0226],[140.0349,-4.0259],[140.026,-4.0295],[140.0226,-4.0331],[140.0213,-4.0392],[140.0157,-4.0415],[140.0149,-4.0451],[140.0097,-4.0506],[139.9991,-4.0538],[139.9891,-4.0609],[139.9885,-4.0677],[139.9847,-4.0805],[139.9798,-4.0849],[139.9793,-4.0889],[139.9855,-4.0983],[139.9871,-4.1043],[139.9788,-4.114],[139.9747,-4.1162],[139.9798,-4.1208],[139.9815,-4.1271],[139.9885,-4.1289],[139.9857,-4.132],[139.9843,-4.1423],[139.986,-4.1467],[139.991,-4.1505],[139.9895,-4.1814],[139.9922,-4.2344],[139.9936,-4.2765],[139.9841,-4.3119],[139.9746,-4.369],[139.9623,-4.4178],[139.9569,-4.456],[139.9678,-4.4886],[139.9841,-4.509],[140.0194,-4.5416],[140.048,-4.5702],[140.1042,-4.6291],[140.1191,-4.6387],[140.1436,-4.6515],[140.1628,-4.661],[140.2012,-4.6717],[140.2108,-4.6866],[140.2129,-4.7058],[140.2204,-4.7325],[140.2268,-4.7452],[140.2256,-4.7697],[140.2282,-4.7893],[140.2273,-4.7995],[140.2358,-4.8157],[140.2392,-4.8302],[140.2341,-4.8421],[140.235,-4.8643],[140.2418,-4.8865],[140.2495,-4.8984],[140.2486,-4.9231],[140.2529,-4.9359],[140.2512,-4.9521],[140.2341,-4.9623],[140.2111,-4.9709],[140.1855,-4.976],[140.1659,-4.9794],[140.1434,-4.9953],[140.1359,-4.9992],[140.1275,-5.0072],[140.1255,-5.0122],[140.1156,-5.0236],[140.1056,-5.031],[140.0988,-5.0382],[140.0869,-5.0413],[140.0804,-5.0475],[140.0754,-5.0545],[140.0863,-5.0594],[140.0974,-5.0607],[140.1079,-5.0607],[140.1123,-5.0573],[140.1124,-5.0515],[140.1181,-5.051],[140.1222,-5.0544],[140.1314,-5.0537],[140.1329,-5.0505],[140.1399,-5.0544],[140.1391,-5.0584],[140.1468,-5.0617],[140.1528,-5.066],[140.1539,-5.1059],[140.1471,-5.169],[140.2307,-5.1836],[140.3909,-5.206],[140.5561,-5.229],[140.6948,-5.2483],[140.7644,-5.2582],[140.9169,-5.2814],[140.9997,-5.2947],[141,-5.2829],[141,-5.1682],[141,-5.0832],[141,-4.9921],[141,-4.9111],[141,-4.7923],[141,-4.6442],[141,-4.5143],[141,-4.3722],[141,-4.2051],[141,-4.0838],[141,-3.9315],[140.9996,-3.9312],[140.9964,-3.9292],[140.9979,-3.9247],[140.9962,-3.9217],[140.9894,-3.9258],[140.9861,-3.9228],[140.9829,-3.9153],[140.9782,-3.9182],[140.973,-3.9189],[140.9712,-3.9232],[140.9665,-3.9237],[140.9617,-3.914],[140.9579,-3.9141],[140.9523,-3.9176],[140.943,-3.914],[140.936,-3.9171],[140.9325,-3.9267],[140.928,-3.9282],[140.925,-3.925],[140.9174,-3.9221],[140.9158,-3.927],[140.9177,-3.9388],[140.9195,-3.9444],[140.9119,-3.9463],[140.9087,-3.9381],[140.9035,-3.9364],[140.9014,-3.9392],[140.8957,-3.9388],[140.8868,-3.9412],[140.8851,-3.9387],[140.8861,-3.9305],[140.8811,-3.9319],[140.8801,-3.9381],[140.8759,-3.9385],[140.8731,-3.9353],[140.8681,-3.9362],[140.8649,-3.9334],[140.8606,-3.9338],[140.8346,-3.9404],[140.7887,-3.9404],[140.7788,-3.9384],[140.7753,-3.9337],[140.7688,-3.931],[140.7689,-3.9258],[140.7606,-3.927],[140.7594,-3.932],[140.755,-3.9355],[140.7486,-3.9285],[140.7393,-3.9242],[140.7414,-3.9178],[140.7327,-3.9158],[140.7283,-3.9134],[140.7152,-3.9164],[140.7022,-3.9101],[140.6969,-3.9125],[140.6818,-3.9072],[140.6761,-3.9083],[140.6512,-3.9156],[140.6448,-3.9217],[140.6399,-3.9236],[140.6398,-3.9315],[140.6371,-3.9335],[140.6288,-3.9334],[140.6151,-3.9377],[140.6088,-3.9447],[140.5965,-3.9419],[140.5945,-3.9389],[140.5872,-3.9373],[140.5902,-3.933],[140.5951,-3.9306],[140.5934,-3.9256],[140.5824,-3.9291],[140.5772,-3.9282],[140.5603,-3.9214],[140.5578,-3.9169],[140.5487,-3.917],[140.542,-3.9127],[140.5349,-3.9177],[140.5254,-3.918],[140.5239,-3.9138],[140.5169,-3.9149],[140.5144,-3.9072],[140.4975,-3.9085],[140.4941,-3.912],[140.5003,-3.914],[140.5002,-3.9223],[140.4946,-3.9256],[140.4856,-3.9282],[140.4879,-3.9214],[140.4844,-3.9187],[140.479,-3.9178],[140.4786,-3.9106],[140.4634,-3.9102],[140.4561,-3.8975],[140.4533,-3.8969],[140.4483,-3.9032],[140.4461,-3.9102],[140.4425,-3.9078],[140.4353,-3.9102],[140.4254,-3.9071],[140.4198,-3.9097],[140.417,-3.9177],[140.4109,-3.918],[140.4057,-3.9159],[140.4057,-3.9117],[140.4116,-3.9137],[140.4138,-3.9109],[140.4045,-3.9032],[140.4047,-3.8963],[140.4064,-3.893],[140.4133,-3.9004],[140.4181,-3.899],[140.4178,-3.893],[140.414,-3.8859],[140.4158,-3.8777],[140.4209,-3.8719],[140.4237,-3.8638],[140.4277,-3.8618],[140.431,-3.856],[140.4308,-3.8505],[140.4265,-3.851],[140.4167,-3.8467],[140.4157,-3.8404],[140.4202,-3.8354],[140.4203,-3.8252],[140.4168,-3.818],[140.4107,-3.8223],[140.405,-3.8148],[140.3999,-3.8112],[140.4113,-3.8071],[140.4176,-3.8027],[140.4174,-3.7988],[140.4105,-3.7927],[140.4033,-3.7884],[140.405,-3.7841],[140.4089,-3.7849],[140.4124,-3.7807],[140.4078,-3.7747],[140.3978,-3.7703],[140.4021,-3.7662],[140.4086,-3.7564],[140.3983,-3.7459],[140.4034,-3.7435],[140.4042,-3.7387],[140.3943,-3.7394],[140.3837,-3.7363],[140.3819,-3.7373]]}},{"type":"Feature","properties":{"mhid":"1332:513","alt_name":"KABUPATEN LANNY JAYA","latitude":-3.91244,"longitude":138.28766,"sample_value":100},"geometry":{"type":"LineString","coordinates":[[138.6094,-3.7226],[138.5658,-3.7255],[138.5339,-3.7235],[138.505,-3.7255],[138.494,-3.7325],[138.4731,-3.7434],[138.4522,-3.7474],[138.4283,-3.7554],[138.4064,-3.7534],[138.3933,-3.7831],[138.334,-3.7736],[138.3046,-3.7729],[138.2959,-3.7837],[138.2695,-3.8131],[138.2253,-3.8278],[138.1856,-3.8381],[138.1253,-3.8322],[138.0503,-3.8337],[138.0091,-3.8396],[137.9782,-3.8514],[137.952,-3.8668],[137.9488,-3.8852],[137.9488,-3.944],[137.9371,-3.9617],[137.9194,-3.9661],[137.8988,-3.969],[137.8709,-3.9764],[137.84,-3.9749],[137.8135,-3.9793],[137.7841,-3.9955],[137.7576,-4.0131],[137.7356,-4.0352],[137.715,-4.0573],[137.7047,-4.0852],[137.6959,-4.119],[137.6784,-4.1723],[137.7008,-4.1603],[137.7401,-4.1445],[137.7584,-4.1419],[137.7924,-4.1341],[137.816,-4.1315],[137.8422,-4.1498],[137.8657,-4.155],[137.8945,-4.1472],[137.9338,-4.1445],[138.0045,-4.1367],[138.0699,-4.1341],[138.1249,-4.1341],[138.1612,-4.1371],[138.2374,-4.1548],[138.2941,-4.1884],[138.3295,-4.192],[138.3774,-4.1831],[138.4146,-4.1814],[138.4589,-4.1902],[138.505,-4.1884],[138.5546,-4.192],[138.5812,-4.1831],[138.5954,-4.1601],[138.5995,-4.1409],[138.6042,-4.1195],[138.6147,-4.0963],[138.6337,-4.0774],[138.648,-4.0274],[138.661,-4.0058],[138.6773,-3.9687],[138.6898,-3.9598],[138.7043,-3.9459],[138.728,-3.9118],[138.726,-3.8989],[138.7084,-3.8876],[138.7178,-3.8547],[138.7178,-3.8489],[138.7067,-3.8493],[138.6957,-3.8482],[138.6804,-3.8432],[138.6582,-3.8426],[138.6444,-3.8444],[138.6096,-3.848],[138.6018,-3.8456],[138.6034,-3.8282],[138.6073,-3.803],[138.6076,-3.7952],[138.6113,-3.7843],[138.6096,-3.7746],[138.6079,-3.7526],[138.6078,-3.7264],[138.6094,-3.7226]]}},{"type":"Feature","properties":{"mhid":"1332:506","alt_name":"KABUPATEN TOLIKARA","latitude":-3.42661,"longitude":137.41699,"sample_value":696},"geometry":{"type":"LineString","coordinates":[[138.7925,-3.3471],[138.7597,-3.3154],[138.7301,-3.2858],[138.6879,-3.2889],[138.6466,-3.309],[138.6107,-3.3217],[138.5627,-3.3375],[138.5225,-3.3346],[138.4977,-3.3316],[138.4696,-3.325],[138.4449,-3.3266],[138.4069,-3.3299],[138.3805,-3.3184],[138.3656,-3.2903],[138.3573,-3.2622],[138.3392,-3.216],[138.3272,-3.1944],[138.2748,-3.1978],[138.2153,-3.2077],[138.1773,-3.2308],[138.1723,-3.2364],[138.1677,-3.2661],[138.1617,-3.2781],[138.1557,-3.2824],[138.1458,-3.2863],[138.1335,-3.2836],[138.1279,-3.2724],[138.1104,-3.2626],[138.0992,-3.2626],[138.0873,-3.264],[138.0761,-3.2626],[138.0684,-3.2549],[138.0663,-3.2451],[138.0579,-3.2416],[138.0481,-3.2416],[138.0412,-3.2464],[138.0322,-3.2424],[138.032,-3.2545],[138.0342,-3.2571],[138.0359,-3.2663],[138.0306,-3.2788],[138.0201,-3.2919],[138.0164,-3.3097],[138.021,-3.3357],[138.0145,-3.3556],[138.019,-3.372],[138.0201,-3.3801],[138.0266,-3.3818],[138.029,-3.3962],[138.0285,-3.4131],[138.03,-3.4218],[138.0302,-3.4363],[138.0285,-3.4495],[138.0391,-3.4697],[138.0366,-3.4859],[138.045,-3.4901],[138.0543,-3.4913],[138.0681,-3.4972],[138.073,-3.5041],[138.0711,-3.5229],[138.0849,-3.5407],[138.0967,-3.5506],[138.1086,-3.5575],[138.1372,-3.5693],[138.1511,-3.5822],[138.1681,-3.6002],[138.1833,-3.6091],[138.2019,-3.6091],[138.2363,-3.6167],[138.245,-3.6289],[138.2522,-3.6518],[138.2552,-3.6651],[138.2588,-3.6747],[138.2624,-3.6898],[138.2667,-3.7012],[138.2733,-3.7108],[138.2769,-3.7223],[138.2823,-3.7325],[138.2907,-3.7422],[138.2962,-3.7554],[138.3046,-3.7729],[138.334,-3.7736],[138.3933,-3.7831],[138.4064,-3.7534],[138.4283,-3.7554],[138.4522,-3.7474],[138.4731,-3.7434],[138.494,-3.7325],[138.505,-3.7255],[138.5339,-3.7235],[138.5658,-3.7255],[138.6094,-3.7226],[138.6371,-3.7233],[138.6522,-3.7225],[138.6594,-3.708],[138.696,-3.7032],[138.7401,-3.6558],[138.7501,-3.6466],[138.7593,-3.6424],[138.757,-3.6097],[138.7555,-3.5634],[138.757,-3.5047],[138.7663,-3.4522],[138.7863,-3.4059],[138.7832,-3.3843],[138.7802,-3.3673],[138.7925,-3.3471]]}},{"type":"Feature","properties":{"mhid":"1332:507","alt_name":"KABUPATEN SARMI","latitude":-2.41667,"longitude":139.08333,"sample_value":271},"geometry":{"type":"LineString","coordinates":[[139.5144,-2.1338],[139.5139,-2.128],[139.5082,-2.125],[139.5061,-2.1271],[139.507,-2.1328],[139.5128,-2.1392],[139.5144,-2.1338]]}},{"type":"Feature","properties":{"mhid":"1332:507","alt_name":"KABUPATEN SARMI","latitude":-2.41667,"longitude":139.08333,"sample_value":271},"geometry":{"type":"LineString","coordinates":[[139.4733,-2.1236],[139.4787,-2.1206],[139.4783,-2.1147],[139.4741,-2.1143],[139.4714,-2.1212],[139.4733,-2.1236]]}},{"type":"Feature","properties":{"mhid":"1332:507","alt_name":"KABUPATEN SARMI","latitude":-2.41667,"longitude":139.08333,"sample_value":271},"geometry":{"type":"LineString","coordinates":[[139.4585,-2.1198],[139.4604,-2.1135],[139.4546,-2.1136],[139.4529,-2.1192],[139.4585,-2.1198]]}},{"type":"Feature","properties":{"mhid":"1332:507","alt_name":"KABUPATEN SARMI","latitude":-2.41667,"longitude":139.08333,"sample_value":271},"geometry":{"type":"LineString","coordinates":[[139.2473,-2.0044],[139.2471,-2.015],[139.2511,-2.0149],[139.2532,-2.0073],[139.2473,-2.0044]]}},{"type":"Feature","properties":{"mhid":"1332:507","alt_name":"KABUPATEN SARMI","latitude":-2.41667,"longitude":139.08333,"sample_value":271},"geometry":{"type":"LineString","coordinates":[[139.1358,-1.9995],[139.132,-2.0097],[139.1367,-2.0111],[139.1393,-2.004],[139.1358,-1.9995]]}},{"type":"Feature","properties":{"mhid":"1332:507","alt_name":"KABUPATEN SARMI","latitude":-2.41667,"longitude":139.08333,"sample_value":271},"geometry":{"type":"LineString","coordinates":[[139.0247,-1.9342],[139.0235,-1.933],[139.014,-1.936],[139.0108,-1.9339],[139.0049,-1.9346],[139.0063,-1.9393],[139.0131,-1.9438],[139.0196,-1.9425],[139.0247,-1.9392],[139.0247,-1.9342]]}},{"type":"Feature","properties":{"mhid":"1332:507","alt_name":"KABUPATEN SARMI","latitude":-2.41667,"longitude":139.08333,"sample_value":271},"geometry":{"type":"LineString","coordinates":[[138.801,-1.6638],[138.7941,-1.6667],[138.7899,-1.6753],[138.7954,-1.686],[138.7959,-1.6911],[138.7938,-1.6976],[138.7943,-1.7023],[138.7986,-1.7064],[138.8009,-1.7013],[138.8,-1.6963],[138.8053,-1.6792],[138.8025,-1.673],[138.801,-1.6638]]}},{"type":"Feature","properties":{"mhid":"1332:507","alt_name":"KABUPATEN SARMI","latitude":-2.41667,"longitude":139.08333,"sample_value":271},"geometry":{"type":"LineString","coordinates":[[139.9998,-2.3622],[139.9924,-2.3613],[139.9818,-2.3619],[139.9568,-2.3658],[139.9319,-2.3681],[139.9108,-2.3716],[139.8837,-2.3749],[139.8756,-2.3753],[139.844,-2.3747],[139.8217,-2.3749],[139.817,-2.3768],[139.8086,-2.3775],[139.8035,-2.3765],[139.798,-2.3727],[139.789,-2.3688],[139.7747,-2.3643],[139.7668,-2.3628],[139.7492,-2.3558],[139.7163,-2.3389],[139.7049,-2.3326],[139.6888,-2.3193],[139.6791,-2.3133],[139.6633,-2.302],[139.6394,-2.2882],[139.629,-2.2873],[139.6199,-2.2852],[139.6163,-2.2859],[139.6131,-2.2825],[139.5969,-2.278],[139.581,-2.2717],[139.5621,-2.2613],[139.5358,-2.2485],[139.5284,-2.2441],[139.5155,-2.2345],[139.4932,-2.2214],[139.477,-2.2101],[139.4622,-2.199],[139.4475,-2.1896],[139.4341,-2.1824],[139.3833,-2.1582],[139.3653,-2.1487],[139.3576,-2.1456],[139.3321,-2.1388],[139.3085,-2.1321],[139.279,-2.1219],[139.25,-2.11],[139.2467,-2.1072],[139.2306,-2.0976],[139.2196,-2.09],[139.1996,-2.0775],[139.1907,-2.0711],[139.1772,-2.0645],[139.1671,-2.0609],[139.1532,-2.0541],[139.1461,-2.0499],[139.1328,-2.0397],[139.125,-2.0316],[139.1144,-2.0278],[139.1013,-2.0246],[139.0652,-2.0124],[139.044,-2.0035],[139.0309,-1.9974],[139.0007,-1.9761],[138.9922,-1.9728],[138.9746,-1.9697],[138.9717,-1.9709],[138.9531,-1.9664],[138.943,-1.9632],[138.9307,-1.9602],[138.9268,-1.9605],[138.9207,-1.9578],[138.9054,-1.9542],[138.9049,-1.9573],[138.8965,-1.9552],[138.8867,-1.9601],[138.8768,-1.9693],[138.8718,-1.9691],[138.8639,-1.9657],[138.8476,-1.9564],[138.8358,-1.9486],[138.8214,-1.9413],[138.7986,-1.9283],[138.7884,-1.9181],[138.7857,-1.9119],[138.7808,-1.9073],[138.7783,-1.9001],[138.7753,-1.8957],[138.7661,-1.8908],[138.7574,-1.8806],[138.7561,-1.8748],[138.7507,-1.8698],[138.7475,-1.8647],[138.7486,-1.8567],[138.7537,-1.8554],[138.7517,-1.8473],[138.7477,-1.853],[138.7381,-1.8535],[138.7219,-1.8429],[138.7156,-1.8375],[138.7019,-1.824],[138.6818,-1.803],[138.6633,-1.7921],[138.649,-1.7859],[138.6296,-1.7805],[138.5871,-1.7718],[138.5611,-1.7674],[138.5328,-1.7617],[138.4904,-1.7526],[138.4559,-1.7439],[138.4219,-1.7338],[138.4207,-1.7339],[138.373,-1.7202],[138.3445,-1.7108],[138.3204,-1.7015],[138.2993,-1.6928],[138.2731,-1.6811],[138.262,-1.6749],[138.2474,-1.6684],[138.2348,-1.661],[138.2088,-1.6486],[138.1779,-1.6321],[138.1704,-1.6309],[138.1681,-1.6346],[138.1681,-1.6482],[138.1698,-1.657],[138.1749,-1.6738],[138.1724,-1.6834],[138.1671,-1.6811],[138.1646,-1.6857],[138.1701,-1.6898],[138.1616,-1.6904],[138.162,-1.6969],[138.1603,-1.7019],[138.1656,-1.7099],[138.1747,-1.7145],[138.1733,-1.7175],[138.1655,-1.7209],[138.169,-1.7259],[138.1657,-1.7311],[138.1699,-1.7319],[138.1714,-1.739],[138.1742,-1.7416],[138.1737,-1.7459],[138.1696,-1.748],[138.1681,-1.7575],[138.1646,-1.7633],[138.158,-1.7657],[138.1554,-1.7716],[138.1588,-1.7766],[138.1568,-1.7829],[138.1651,-1.7837],[138.1647,-1.7889],[138.1593,-1.787],[138.1561,-1.7893],[138.1592,-1.7935],[138.1604,-1.8015],[138.1581,-1.8084],[138.1512,-1.8046],[138.1477,-1.8083],[138.1508,-1.8127],[138.1442,-1.8157],[138.1444,-1.8268],[138.1311,-1.8537],[138.1286,-1.8881],[138.1353,-1.9074],[138.1353,-1.9258],[138.137,-1.9401],[138.1504,-1.9543],[138.1797,-1.9652],[138.2032,-1.9711],[138.2183,-1.9769],[138.2322,-1.9799],[138.2361,-1.9823],[138.238,-1.9905],[138.2421,-1.9914],[138.2509,-1.9991],[138.2542,-1.9972],[138.253,-1.9901],[138.2578,-1.9885],[138.2601,-1.9904],[138.2558,-1.9953],[138.2565,-1.9983],[138.2625,-2.0005],[138.2606,-2.0047],[138.2613,-2.0102],[138.2571,-2.0163],[138.2618,-2.0219],[138.2607,-2.0268],[138.2537,-2.0235],[138.2524,-2.0317],[138.2583,-2.0335],[138.2598,-2.038],[138.2534,-2.0413],[138.2555,-2.0448],[138.2598,-2.0419],[138.2627,-2.0429],[138.263,-2.0495],[138.2657,-2.0513],[138.2806,-2.0495],[138.2861,-2.0451],[138.2882,-2.0502],[138.2835,-2.0514],[138.2826,-2.0555],[138.2857,-2.0594],[138.2893,-2.0592],[138.2929,-2.0551],[138.3015,-2.0618],[138.3054,-2.067],[138.3107,-2.0688],[138.3066,-2.0772],[138.3015,-2.076],[138.2941,-2.0779],[138.2924,-2.0814],[138.2957,-2.0859],[138.3027,-2.0815],[138.3083,-2.088],[138.313,-2.0865],[138.3183,-2.0884],[138.3145,-2.0933],[138.3144,-2.098],[138.3177,-2.1055],[138.3256,-2.1087],[138.3257,-2.1124],[138.3203,-2.1118],[138.3125,-2.1165],[138.3132,-2.1204],[138.3262,-2.1176],[138.3275,-2.1265],[138.3334,-2.1259],[138.3439,-2.1326],[138.3398,-2.1347],[138.3357,-2.1307],[138.3326,-2.1331],[138.3374,-2.14],[138.3405,-2.1412],[138.3472,-2.1375],[138.352,-2.1424],[138.3458,-2.1435],[138.3437,-2.1458],[138.345,-2.1553],[138.3515,-2.1557],[138.3588,-2.158],[138.3565,-2.164],[138.3522,-2.1577],[138.3494,-2.1603],[138.3527,-2.1656],[138.35,-2.1671],[138.345,-2.164],[138.3422,-2.1662],[138.3484,-2.1702],[138.3475,-2.1766],[138.3523,-2.1769],[138.353,-2.1709],[138.3585,-2.1719],[138.3568,-2.1794],[138.3609,-2.1792],[138.3653,-2.1756],[138.3688,-2.1852],[138.3726,-2.1897],[138.375,-2.1841],[138.3803,-2.1832],[138.3796,-2.1772],[138.3836,-2.1779],[138.3845,-2.1839],[138.3911,-2.1855],[138.3923,-2.1901],[138.3986,-2.1903],[138.3966,-2.1836],[138.3978,-2.1797],[138.4019,-2.1799],[138.4034,-2.1848],[138.4029,-2.1902],[138.4063,-2.192],[138.4076,-2.1999],[138.4174,-2.2038],[138.4284,-2.1975],[138.4339,-2.207],[138.4399,-2.2102],[138.4441,-2.2042],[138.4462,-2.2095],[138.4402,-2.2132],[138.4499,-2.2148],[138.4522,-2.217],[138.463,-2.2172],[138.473,-2.221],[138.4689,-2.2277],[138.4702,-2.2303],[138.4828,-2.2305],[138.4906,-2.2356],[138.4912,-2.239],[138.4982,-2.2389],[138.5051,-2.2452],[138.5115,-2.245],[138.5185,-2.2477],[138.5162,-2.2599],[138.5285,-2.2613],[138.5309,-2.2662],[138.536,-2.2676],[138.5397,-2.264],[138.5479,-2.2657],[138.5511,-2.2703],[138.5572,-2.2661],[138.5598,-2.2705],[138.5709,-2.2654],[138.5734,-2.2694],[138.5843,-2.2687],[138.5879,-2.2663],[138.5961,-2.2658],[138.5988,-2.2619],[138.6039,-2.2662],[138.6201,-2.2755],[138.6222,-2.2893],[138.6299,-2.3011],[138.6637,-2.3466],[138.6668,-2.3511],[138.6815,-2.3694],[138.7145,-2.4124],[138.7224,-2.4217],[138.7214,-2.4283],[138.7215,-2.4386],[138.7268,-2.4499],[138.727,-2.4589],[138.7209,-2.4624],[138.7222,-2.47],[138.7207,-2.479],[138.7117,-2.4936],[138.6619,-2.5768],[138.6357,-2.6197],[138.6212,-2.6459],[138.6705,-2.6738],[138.6956,-2.6863],[138.7665,-2.7208],[138.8081,-2.7431],[138.8765,-2.7788],[138.9027,-2.7931],[138.9514,-2.818],[138.9745,-2.8306],[139.065,-2.8784],[139.0859,-2.8891],[139.1115,-2.9028],[139.1136,-2.9085],[139.1096,-2.9204],[139.1033,-2.9249],[139.1151,-2.9257],[139.1145,-2.9315],[139.12,-2.9323],[139.1241,-2.9267],[139.1268,-2.9289],[139.1262,-2.9333],[139.138,-2.9415],[139.1398,-2.9499],[139.1454,-2.9563],[139.1396,-2.9593],[139.1421,-2.9735],[139.139,-2.9831],[139.1325,-2.9857],[139.1367,-2.9892],[139.1322,-2.9937],[139.1293,-2.9874],[139.1192,-2.9893],[139.1174,-2.9921],[139.1227,-2.9954],[139.1262,-3.0034],[139.1259,-3.0187],[139.1231,-3.0308],[139.1138,-3.0451],[139.1059,-3.0541],[139.0916,-3.0743],[139.0876,-3.073],[139.0736,-3.0784],[139.0693,-3.0822],[139.0699,-3.0875],[139.0643,-3.086],[139.0605,-3.0888],[139.0604,-3.0932],[139.0568,-3.0984],[139.0531,-3.098],[139.0498,-3.1085],[139.0427,-3.1212],[139.0387,-3.123],[139.0355,-3.1293],[139.0285,-3.1335],[139.0322,-3.1422],[139.0252,-3.1438],[139.022,-3.1429],[139.0209,-3.1492],[139.0225,-3.1514],[139.0226,-3.1606],[139.0209,-3.1707],[139.0228,-3.1771],[139.0166,-3.1835],[139.0144,-3.1894],[139.0031,-3.1906],[139.0011,-3.1935],[139.0032,-3.2036],[139.0061,-3.2071],[139.0043,-3.2124],[139.0068,-3.2281],[139.0146,-3.2313],[139.0123,-3.2339],[139.0122,-3.2419],[139.0094,-3.2445],[139.0124,-3.2496],[139.0218,-3.2574],[139.0175,-3.2624],[139.0156,-3.2734],[139.0174,-3.2806],[139.0205,-3.2822],[139.0336,-3.2824],[139.0382,-3.2937],[139.0484,-3.2923],[139.0515,-3.2836],[139.0588,-3.2765],[139.0721,-3.2749],[139.0888,-3.2806],[139.0983,-3.2955],[139.0975,-3.308],[139.0836,-3.311],[139.0826,-3.3005],[139.0836,-3.2877],[139.0743,-3.2873],[139.0673,-3.2965],[139.069,-3.3094],[139.0757,-3.3253],[139.0762,-3.336],[139.0891,-3.3341],[139.1001,-3.3287],[139.1046,-3.3382],[139.1044,-3.355],[139.1072,-3.3719],[139.1062,-3.3799],[139.1121,-3.3885],[139.1252,-3.3838],[139.1269,-3.3699],[139.1214,-3.3639],[139.1276,-3.3554],[139.1404,-3.3617],[139.1479,-3.3691],[139.1455,-3.3779],[139.1483,-3.3898],[139.1472,-3.4004],[139.1404,-3.4093],[139.1382,-3.4192],[139.1462,-3.4268],[139.1572,-3.4299],[139.1675,-3.4311],[139.1818,-3.4233],[139.1876,-3.4266],[139.1946,-3.4478],[139.2036,-3.4469],[139.2134,-3.4399],[139.2321,-3.4329],[139.2411,-3.4244],[139.251,-3.4168],[139.2658,-3.4164],[139.2729,-3.4206],[139.2716,-3.4277],[139.258,-3.4278],[139.2509,-3.4338],[139.2503,-3.4451],[139.2554,-3.4547],[139.2614,-3.4478],[139.2709,-3.4397],[139.2793,-3.4676],[139.2938,-3.4699],[139.3068,-3.4708],[139.312,-3.463],[139.3179,-3.451],[139.3284,-3.446],[139.3375,-3.4557],[139.3335,-3.4652],[139.3323,-3.4744],[139.3379,-3.4849],[139.3507,-3.4818],[139.371,-3.4753],[139.3801,-3.4638],[139.3615,-3.4491],[139.3661,-3.4362],[139.3741,-3.4345],[139.3897,-3.4435],[139.4085,-3.4437],[139.426,-3.4463],[139.4364,-3.463],[139.45,-3.4616],[139.4572,-3.4596],[139.4613,-3.4584],[139.4626,-3.453],[139.4594,-3.4485],[139.4543,-3.4464],[139.448,-3.4459],[139.444,-3.4344],[139.4434,-3.4289],[139.447,-3.4268],[139.4484,-3.4221],[139.456,-3.4228],[139.459,-3.419],[139.4666,-3.4136],[139.4744,-3.4143],[139.4721,-3.4089],[139.4697,-3.3988],[139.4753,-3.3925],[139.4782,-3.3871],[139.4824,-3.3876],[139.4823,-3.3797],[139.4889,-3.3744],[139.4922,-3.3622],[139.4959,-3.3571],[139.4939,-3.3541],[139.4971,-3.3461],[139.4955,-3.337],[139.4987,-3.334],[139.5023,-3.3261],[139.5059,-3.315],[139.5106,-3.3117],[139.5127,-3.3071],[139.5102,-3.3004],[139.5049,-3.3028],[139.5045,-3.2912],[139.5004,-3.291],[139.4965,-3.2834],[139.4966,-3.2727],[139.4953,-3.2677],[139.4991,-3.2636],[139.4916,-3.2549],[139.4932,-3.2534],[139.4902,-3.2461],[139.4875,-3.2444],[139.4922,-3.2366],[139.4868,-3.2348],[139.4872,-3.224],[139.4905,-3.2176],[139.4878,-3.2134],[139.4914,-3.2057],[139.4824,-3.2],[139.4829,-3.1937],[139.4798,-3.1886],[139.4828,-3.178],[139.4786,-3.173],[139.4771,-3.1683],[139.4857,-3.1695],[139.4997,-3.159],[139.5005,-3.1515],[139.5044,-3.149],[139.5023,-3.1457],[139.5031,-3.1413],[139.5083,-3.1397],[139.5106,-3.1343],[139.5011,-3.1276],[139.497,-3.1201],[139.4949,-3.1114],[139.4926,-3.096],[139.4876,-3.0511],[139.486,-3.03],[139.4799,-2.9869],[139.4788,-2.9702],[139.4772,-2.96],[139.4772,-2.9484],[139.4736,-2.9314],[139.4706,-2.8969],[139.4672,-2.8722],[139.4645,-2.844],[139.457,-2.7889],[139.4525,-2.7499],[139.4502,-2.7358],[139.4459,-2.6979],[139.4432,-2.6793],[139.4427,-2.6637],[139.4395,-2.6464],[139.4393,-2.6358],[139.4373,-2.6301],[139.4348,-2.5931],[139.4332,-2.5913],[139.4323,-2.5752],[139.4323,-2.5632],[139.4307,-2.5568],[139.4314,-2.5362],[139.4268,-2.5112],[139.4257,-2.4956],[139.4227,-2.4706],[139.4409,-2.4656],[139.4483,-2.4653],[139.4549,-2.4629],[139.4627,-2.4622],[139.4681,-2.4602],[139.5019,-2.4541],[139.5085,-2.452],[139.5203,-2.4504],[139.5309,-2.4479],[139.5373,-2.4454],[139.5452,-2.4457],[139.5495,-2.4438],[139.5602,-2.442],[139.5657,-2.44],[139.5711,-2.44],[139.5856,-2.4366],[139.5924,-2.4341],[139.5983,-2.4345],[139.6083,-2.4316],[139.616,-2.4311],[139.6208,-2.4293],[139.6496,-2.4237],[139.6639,-2.4203],[139.6786,-2.4175],[139.6916,-2.4144],[139.7283,-2.4069],[139.7433,-2.4048],[139.7467,-2.4023],[139.7723,-2.4062],[139.7893,-2.4082],[139.812,-2.4103],[139.8272,-2.4123],[139.8481,-2.4144],[139.8828,-2.4189],[139.9012,-2.4207],[139.9202,-2.4234],[139.9325,-2.4243],[139.9577,-2.4271],[139.9677,-2.4289],[139.9836,-2.4299],[139.9887,-2.4212],[139.9852,-2.4134],[139.9832,-2.4028],[139.9849,-2.3958],[139.9892,-2.3848],[139.994,-2.3802],[140.0008,-2.3714],[140.0017,-2.368],[139.9998,-2.3622]]}},{"type":"Feature","properties":{"mhid":"1332:507","alt_name":"KABUPATEN SARMI","latitude":-2.41667,"longitude":139.08333,"sample_value":271},"geometry":{"type":"LineString","coordinates":[[138.7323,-1.5916],[138.7283,-1.5874],[138.7175,-1.58],[138.7093,-1.5965],[138.7093,-1.6054],[138.7161,-1.6125],[138.7183,-1.6184],[138.7253,-1.6217],[138.7358,-1.6243],[138.748,-1.6247],[138.7503,-1.6196],[138.7463,-1.6169],[138.7458,-1.607],[138.7398,-1.5967],[138.7323,-1.5916]]}},{"type":"Feature","properties":{"mhid":"1332:508","alt_name":"KABUPATEN KEEROM","latitude":-3.3,"longitude":140.61667,"sample_value":655},"geometry":{"type":"LineString","coordinates":[[141,-2.8289],[140.9849,-2.8185],[140.9653,-2.8064],[140.9379,-2.7907],[140.8809,-2.7669],[140.8245,-2.7342],[140.7759,-2.7219],[140.7584,-2.7189],[140.7433,-2.7135],[140.7299,-2.7072],[140.717,-2.7061],[140.7073,-2.707],[140.6989,-2.7143],[140.6895,-2.7205],[140.664,-2.7256],[140.6334,-2.7225],[140.6322,-2.7161],[140.6269,-2.7152],[140.6238,-2.72],[140.6296,-2.7245],[140.6287,-2.7302],[140.6226,-2.732],[140.6227,-2.7377],[140.6202,-2.7433],[140.6217,-2.7483],[140.6277,-2.7515],[140.6327,-2.7592],[140.6255,-2.7588],[140.6195,-2.7647],[140.6233,-2.771],[140.6133,-2.776],[140.6018,-2.7701],[140.5967,-2.7713],[140.5933,-2.7637],[140.5878,-2.7646],[140.5864,-2.7602],[140.5744,-2.7631],[140.5672,-2.7607],[140.5615,-2.7659],[140.5551,-2.768],[140.5507,-2.7673],[140.5494,-2.7726],[140.5376,-2.773],[140.5363,-2.7773],[140.5294,-2.7784],[140.5266,-2.7739],[140.5169,-2.7719],[140.5136,-2.7756],[140.5064,-2.7752],[140.5015,-2.7729],[140.4983,-2.7678],[140.4982,-2.7624],[140.4944,-2.7613],[140.4886,-2.7522],[140.4771,-2.7509],[140.4695,-2.7527],[140.4693,-2.7584],[140.4633,-2.7572],[140.4541,-2.768],[140.4459,-2.771],[140.4482,-2.7748],[140.4467,-2.7796],[140.4378,-2.7759],[140.3886,-2.7701],[140.3749,-2.7871],[140.3671,-2.7959],[140.3603,-2.8049],[140.3615,-2.8743],[140.3638,-3],[140.3568,-3.1257],[140.36,-3.1316],[140.3613,-3.1421],[140.3675,-3.1512],[140.3675,-3.1577],[140.3641,-3.162],[140.3572,-3.1665],[140.3482,-3.1706],[140.3392,-3.1779],[140.3347,-3.1749],[140.3312,-3.1771],[140.3253,-3.1773],[140.3244,-3.1825],[140.3189,-3.194],[140.3219,-3.1952],[140.3252,-3.2026],[140.329,-3.2041],[140.3333,-3.2021],[140.3375,-3.2078],[140.3332,-3.2199],[140.3338,-3.2337],[140.3314,-3.2445],[140.3284,-3.2493],[140.3219,-3.2548],[140.3203,-3.2629],[140.3242,-3.2724],[140.3201,-3.2862],[140.3166,-3.2926],[140.317,-3.2989],[140.313,-3.3034],[140.3084,-3.3041],[140.3061,-3.307],[140.309,-3.3142],[140.3144,-3.3174],[140.3101,-3.3226],[140.3196,-3.3233],[140.3229,-3.3202],[140.3252,-3.3299],[140.3315,-3.3362],[140.3377,-3.3365],[140.3426,-3.3318],[140.3418,-3.3421],[140.3463,-3.3427],[140.351,-3.3379],[140.352,-3.3436],[140.3501,-3.3487],[140.3425,-3.3516],[140.3467,-3.3561],[140.3444,-3.3598],[140.3554,-3.3584],[140.3634,-3.3527],[140.3649,-3.3599],[140.3613,-3.3662],[140.3631,-3.3702],[140.3707,-3.3683],[140.3701,-3.3751],[140.3655,-3.38],[140.3609,-3.3813],[140.3533,-3.3784],[140.3499,-3.3819],[140.3535,-3.3883],[140.3597,-3.3859],[140.3601,-3.3921],[140.3528,-3.3959],[140.3568,-3.4078],[140.3562,-3.4165],[140.351,-3.4145],[140.3498,-3.4191],[140.3544,-3.4208],[140.3578,-3.4173],[140.3619,-3.4188],[140.3623,-3.4323],[140.3649,-3.4358],[140.3679,-3.4466],[140.3661,-3.4539],[140.3635,-3.4555],[140.3619,-3.4643],[140.3547,-3.468],[140.3535,-3.4746],[140.3467,-3.4777],[140.3447,-3.4823],[140.3385,-3.4821],[140.3375,-3.4875],[140.3436,-3.489],[140.3471,-3.4947],[140.3534,-3.4911],[140.3505,-3.5008],[140.3581,-3.4959],[140.3662,-3.4939],[140.3702,-3.5012],[140.3712,-3.5085],[140.3627,-3.5081],[140.3641,-3.5155],[140.3785,-3.5132],[140.3791,-3.5168],[140.3754,-3.5234],[140.3687,-3.5242],[140.3731,-3.5299],[140.369,-3.5327],[140.3653,-3.525],[140.3622,-3.5289],[140.365,-3.5324],[140.3681,-3.5412],[140.3722,-3.5394],[140.3755,-3.5472],[140.3809,-3.5534],[140.3856,-3.554],[140.3855,-3.558],[140.3781,-3.5632],[140.3785,-3.5693],[140.3824,-3.5726],[140.381,-3.5818],[140.3775,-3.5859],[140.3842,-3.5905],[140.3888,-3.5963],[140.3813,-3.6046],[140.3867,-3.614],[140.3882,-3.6197],[140.3938,-3.6233],[140.397,-3.631],[140.3902,-3.6309],[140.389,-3.638],[140.386,-3.6418],[140.3782,-3.646],[140.3752,-3.6495],[140.3743,-3.6554],[140.3771,-3.658],[140.3724,-3.6636],[140.3675,-3.6598],[140.3636,-3.662],[140.366,-3.6669],[140.3605,-3.6682],[140.3562,-3.6716],[140.3486,-3.6691],[140.3465,-3.6712],[140.351,-3.6789],[140.3497,-3.6862],[140.3428,-3.6874],[140.348,-3.6935],[140.3548,-3.6896],[140.3549,-3.6859],[140.3645,-3.6827],[140.3664,-3.6893],[140.365,-3.6936],[140.3589,-3.6977],[140.3613,-3.7089],[140.3759,-3.7128],[140.3742,-3.716],[140.385,-3.7198],[140.3877,-3.7283],[140.3819,-3.7373],[140.3837,-3.7363],[140.3943,-3.7394],[140.4042,-3.7387],[140.4034,-3.7435],[140.3983,-3.7459],[140.4086,-3.7564],[140.4021,-3.7662],[140.3978,-3.7703],[140.4078,-3.7747],[140.4124,-3.7807],[140.4089,-3.7849],[140.405,-3.7841],[140.4033,-3.7884],[140.4105,-3.7927],[140.4174,-3.7988],[140.4176,-3.8027],[140.4113,-3.8071],[140.3999,-3.8112],[140.405,-3.8148],[140.4107,-3.8223],[140.4168,-3.818],[140.4203,-3.8252],[140.4202,-3.8354],[140.4157,-3.8404],[140.4167,-3.8467],[140.4265,-3.851],[140.4308,-3.8505],[140.431,-3.856],[140.4277,-3.8618],[140.4237,-3.8638],[140.4209,-3.8719],[140.4158,-3.8777],[140.414,-3.8859],[140.4178,-3.893],[140.4181,-3.899],[140.4133,-3.9004],[140.4064,-3.893],[140.4047,-3.8963],[140.4045,-3.9032],[140.4138,-3.9109],[140.4116,-3.9137],[140.4057,-3.9117],[140.4057,-3.9159],[140.4109,-3.918],[140.417,-3.9177],[140.4198,-3.9097],[140.4254,-3.9071],[140.4353,-3.9102],[140.4425,-3.9078],[140.4461,-3.9102],[140.4483,-3.9032],[140.4533,-3.8969],[140.4561,-3.8975],[140.4634,-3.9102],[140.4786,-3.9106],[140.479,-3.9178],[140.4844,-3.9187],[140.4879,-3.9214],[140.4856,-3.9282],[140.4946,-3.9256],[140.5002,-3.9223],[140.5003,-3.914],[140.4941,-3.912],[140.4975,-3.9085],[140.5144,-3.9072],[140.5169,-3.9149],[140.5239,-3.9138],[140.5254,-3.918],[140.5349,-3.9177],[140.542,-3.9127],[140.5487,-3.917],[140.5578,-3.9169],[140.5603,-3.9214],[140.5772,-3.9282],[140.5824,-3.9291],[140.5934,-3.9256],[140.5951,-3.9306],[140.5902,-3.933],[140.5872,-3.9373],[140.5945,-3.9389],[140.5965,-3.9419],[140.6088,-3.9447],[140.6151,-3.9377],[140.6288,-3.9334],[140.6371,-3.9335],[140.6398,-3.9315],[140.6399,-3.9236],[140.6448,-3.9217],[140.6512,-3.9156],[140.6761,-3.9083],[140.6818,-3.9072],[140.6969,-3.9125],[140.7022,-3.9101],[140.7152,-3.9164],[140.7283,-3.9134],[140.7327,-3.9158],[140.7414,-3.9178],[140.7393,-3.9242],[140.7486,-3.9285],[140.755,-3.9355],[140.7594,-3.932],[140.7606,-3.927],[140.7689,-3.9258],[140.7688,-3.931],[140.7753,-3.9337],[140.7788,-3.9384],[140.7887,-3.9404],[140.8346,-3.9404],[140.8606,-3.9338],[140.8649,-3.9334],[140.8681,-3.9362],[140.8731,-3.9353],[140.8759,-3.9385],[140.8801,-3.9381],[140.8811,-3.9319],[140.8861,-3.9305],[140.8851,-3.9387],[140.8868,-3.9412],[140.8957,-3.9388],[140.9014,-3.9392],[140.9035,-3.9364],[140.9087,-3.9381],[140.9119,-3.9463],[140.9195,-3.9444],[140.9177,-3.9388],[140.9158,-3.927],[140.9174,-3.9221],[140.925,-3.925],[140.928,-3.9282],[140.9325,-3.9267],[140.936,-3.9171],[140.943,-3.914],[140.9523,-3.9176],[140.9579,-3.9141],[140.9617,-3.914],[140.9665,-3.9237],[140.9712,-3.9232],[140.973,-3.9189],[140.9782,-3.9182],[140.9829,-3.9153],[140.9861,-3.9228],[140.9894,-3.9258],[140.9962,-3.9217],[140.9979,-3.9247],[140.9964,-3.9292],[140.9996,-3.9312],[140.9985,-3.9139],[141,-3.914],[141,-3.7555],[141,-3.6582],[141,-3.573],[141,-3.4276],[141,-3.3068],[141,-3.2348],[141,-3.1256],[141,-3.0208],[141,-2.9133],[141,-2.8289]]}},{"type":"Feature","properties":{"mhid":"1332:509","alt_name":"KABUPATEN WAROPEN","latitude":-2.286,"longitude":137.01837,"sample_value":767},"geometry":{"type":"LineString","coordinates":[[136.7602,-2.2548],[136.7573,-2.2492],[136.7534,-2.2478],[136.7505,-2.2522],[136.7539,-2.2549],[136.7602,-2.2548]]}},{"type":"Feature","properties":{"mhid":"1332:509","alt_name":"KABUPATEN WAROPEN","latitude":-2.286,"longitude":137.01837,"sample_value":767},"geometry":{"type":"LineString","coordinates":[[136.2697,-2.2229],[136.2688,-2.2202],[136.2577,-2.216],[136.2518,-2.2234],[136.249,-2.2302],[136.2553,-2.2331],[136.2664,-2.2287],[136.2697,-2.2229]]}},{"type":"Feature","properties":{"mhid":"1332:509","alt_name":"KABUPATEN WAROPEN","latitude":-2.286,"longitude":137.01837,"sample_value":767},"geometry":{"type":"LineString","coordinates":[[136.807,-2.1763],[136.8046,-2.1784],[136.8133,-2.1859],[136.8168,-2.1931],[136.8162,-2.2034],[136.8171,-2.2083],[136.8138,-2.2154],[136.8136,-2.2212],[136.8076,-2.2184],[136.8013,-2.2205],[136.7933,-2.2109],[136.7918,-2.2146],[136.7853,-2.221],[136.7798,-2.23],[136.7747,-2.2319],[136.772,-2.2297],[136.7651,-2.2308],[136.7552,-2.2378],[136.7535,-2.2419],[136.7549,-2.247],[136.7601,-2.2497],[136.7616,-2.2556],[136.7569,-2.2578],[136.7545,-2.2627],[136.7471,-2.265],[136.7467,-2.2582],[136.7413,-2.2471],[136.7388,-2.2472],[136.7312,-2.2427],[136.7229,-2.2348],[136.7117,-2.2279],[136.7048,-2.2275],[136.7017,-2.2358],[136.6903,-2.2453],[136.6853,-2.247],[136.6828,-2.2522],[136.6741,-2.2581],[136.6733,-2.2611],[136.6662,-2.258],[136.6545,-2.257],[136.6475,-2.2516],[136.6447,-2.2472],[136.6372,-2.2465],[136.6336,-2.2513],[136.6286,-2.2477],[136.6235,-2.2471],[136.6147,-2.2507],[136.6102,-2.2487],[136.6059,-2.2531],[136.6001,-2.2529],[136.5957,-2.2453],[136.5956,-2.2376],[136.5867,-2.2375],[136.5826,-2.2357],[136.5791,-2.2295],[136.5759,-2.2189],[136.5769,-2.2144],[136.5807,-2.2108],[136.5801,-2.2068],[136.5835,-2.1996],[136.5895,-2.194],[136.588,-2.1901],[136.5795,-2.1921],[136.5775,-2.1959],[136.5723,-2.1996],[136.5713,-2.2058],[136.5615,-2.2081],[136.5548,-2.2116],[136.5469,-2.2187],[136.5442,-2.2234],[136.5385,-2.22],[136.5298,-2.2116],[136.5266,-2.2105],[136.5267,-2.2024],[136.5211,-2.2016],[136.5183,-2.191],[136.5128,-2.192],[136.5102,-2.1904],[136.5019,-2.1999],[136.4964,-2.1993],[136.4877,-2.2048],[136.48,-2.2042],[136.4729,-2.2081],[136.4708,-2.2069],[136.4611,-2.2092],[136.4586,-2.2132],[136.4489,-2.2072],[136.4414,-2.2052],[136.4316,-2.2055],[136.4253,-2.2044],[136.4178,-2.2072],[136.4133,-2.211],[136.4056,-2.2123],[136.4026,-2.2155],[136.3936,-2.219],[136.3898,-2.2254],[136.3823,-2.233],[136.3703,-2.2384],[136.3642,-2.2464],[136.3652,-2.2494],[136.3585,-2.2563],[136.3545,-2.2581],[136.3442,-2.2597],[136.3398,-2.2632],[136.3392,-2.2703],[136.3359,-2.2768],[136.3336,-2.2777],[136.3329,-2.2881],[136.3368,-2.2947],[136.3405,-2.325],[136.3402,-2.3384],[136.3415,-2.3413],[136.3392,-2.3574],[136.3373,-2.3628],[136.3422,-2.3683],[136.3423,-2.373],[136.3345,-2.3754],[136.3283,-2.3815],[136.3213,-2.3929],[136.3154,-2.3992],[136.3043,-2.403],[136.2987,-2.4064],[136.2959,-2.4112],[136.2972,-2.4173],[136.2957,-2.4252],[136.2916,-2.4374],[136.2857,-2.4488],[136.2878,-2.4518],[136.2795,-2.4629],[136.2796,-2.4709],[136.2878,-2.4739],[136.2894,-2.4798],[136.2888,-2.4847],[136.2822,-2.4788],[136.2828,-2.4906],[136.2821,-2.5001],[136.2791,-2.5145],[136.2718,-2.5334],[136.2662,-2.5453],[136.26,-2.5568],[136.26,-2.5593],[136.2541,-2.5619],[136.2424,-2.5852],[136.2373,-2.5934],[136.2244,-2.6112],[136.2204,-2.6139],[136.2147,-2.6206],[136.2039,-2.6267],[136.1967,-2.6269],[136.1951,-2.6304],[136.1895,-2.6326],[136.1875,-2.6372],[136.1815,-2.6401],[136.1768,-2.6363],[136.1701,-2.6404],[136.1577,-2.6436],[136.1533,-2.6472],[136.1466,-2.6502],[136.1384,-2.6449],[136.1351,-2.6457],[136.1326,-2.6506],[136.126,-2.6574],[136.1234,-2.6617],[136.1089,-2.6685],[136.0959,-2.6689],[136.0838,-2.6715],[136.0643,-2.672],[136.0582,-2.6682],[136.0554,-2.6786],[136.0489,-2.6808],[136.0463,-2.6874],[136.0378,-2.6953],[136.0286,-2.6916],[136.0179,-2.6928],[136.0163,-2.6991],[136.0103,-2.7052],[136.0091,-2.7085],[136.0137,-2.7159],[136.0128,-2.7178],[136.0182,-2.7214],[136.0147,-2.7279],[136.0179,-2.733],[136.0206,-2.7423],[136.0277,-2.7463],[136.0322,-2.7436],[136.0378,-2.7437],[136.0437,-2.746],[136.0476,-2.7576],[136.0514,-2.7638],[136.0562,-2.7665],[136.0624,-2.7672],[136.075,-2.7668],[136.0905,-2.764],[136.0952,-2.7607],[136.0981,-2.7547],[136.1038,-2.7531],[136.1075,-2.7543],[136.114,-2.7598],[136.1188,-2.7535],[136.1279,-2.7543],[136.1356,-2.7521],[136.1353,-2.7605],[136.1299,-2.7663],[136.13,-2.7722],[136.1337,-2.7754],[136.1402,-2.7714],[136.1461,-2.7748],[136.1465,-2.7792],[136.1379,-2.7866],[136.1421,-2.7898],[136.1434,-2.7834],[136.1484,-2.785],[136.1515,-2.7927],[136.1605,-2.7878],[136.1628,-2.7996],[136.1684,-2.7969],[136.1746,-2.7963],[136.18,-2.7918],[136.1842,-2.7958],[136.1797,-2.7996],[136.1788,-2.8047],[136.1825,-2.8096],[136.1889,-2.8077],[136.1871,-2.8001],[136.1918,-2.798],[136.1966,-2.801],[136.2043,-2.8004],[136.2017,-2.8083],[136.2083,-2.8052],[136.2103,-2.8067],[136.2173,-2.806],[136.2158,-2.81],[136.2182,-2.8166],[136.2282,-2.8242],[136.2237,-2.8264],[136.2214,-2.8303],[136.225,-2.8326],[136.2288,-2.8287],[136.2329,-2.8297],[136.234,-2.8336],[136.2284,-2.8368],[136.2294,-2.8414],[136.2352,-2.8406],[136.2394,-2.8351],[136.2435,-2.8406],[136.2524,-2.8405],[136.2511,-2.8447],[136.246,-2.8433],[136.2393,-2.8536],[136.2402,-2.859],[136.2486,-2.8632],[136.2511,-2.8591],[136.2428,-2.8542],[136.2441,-2.85],[136.248,-2.8507],[136.2508,-2.8549],[136.261,-2.8545],[136.2632,-2.8609],[136.2607,-2.8661],[136.2657,-2.8715],[136.2732,-2.8757],[136.2721,-2.8792],[136.2657,-2.8789],[136.2642,-2.8836],[136.2661,-2.8864],[136.2722,-2.8862],[136.2722,-2.883],[136.2775,-2.876],[136.2785,-2.8709],[136.2839,-2.8712],[136.2844,-2.8749],[136.2782,-2.8807],[136.283,-2.8839],[136.2869,-2.8792],[136.2945,-2.8798],[136.2898,-2.8882],[136.2929,-2.892],[136.288,-2.8977],[136.2889,-2.9005],[136.2962,-2.9008],[136.2941,-2.9066],[136.2885,-2.9093],[136.2924,-2.9146],[136.2947,-2.9103],[136.3002,-2.9122],[136.3081,-2.9094],[136.3128,-2.9142],[136.3174,-2.9106],[136.3226,-2.9145],[136.3258,-2.9204],[136.3316,-2.9257],[136.3344,-2.9302],[136.3342,-2.9366],[136.3361,-2.9396],[136.3415,-2.9419],[136.345,-2.9398],[136.3507,-2.9411],[136.3532,-2.9463],[136.3533,-2.9534],[136.3477,-2.9578],[136.3445,-2.9634],[136.3453,-2.9668],[136.3431,-2.9801],[136.3479,-2.9844],[136.348,-2.9903],[136.341,-2.9952],[136.3412,-3.007],[136.3485,-3.0087],[136.3459,-3.0125],[136.3463,-3.0184],[136.3513,-3.0206],[136.3545,-3.0258],[136.3541,-3.0303],[136.36,-3.0338],[136.365,-3.0421],[136.3713,-3.0468],[136.3766,-3.047],[136.3848,-3.0496],[136.3916,-3.0563],[136.3981,-3.0603],[136.4011,-3.0671],[136.4082,-3.0725],[136.4169,-3.0735],[136.4246,-3.0759],[136.4349,-3.0853],[136.4341,-3.0916],[136.4318,-3.0969],[136.4338,-3.1038],[136.4416,-3.1125],[136.4439,-3.1196],[136.4406,-3.1263],[136.4401,-3.1357],[136.4416,-3.138],[136.4412,-3.1571],[136.4435,-3.1634],[136.4491,-3.1717],[136.4454,-3.1776],[136.4507,-3.1776],[136.4559,-3.1893],[136.4655,-3.1939],[136.4685,-3.197],[136.469,-3.2043],[136.482,-3.2181],[136.4834,-3.224],[136.4869,-3.2268],[136.4984,-3.2281],[136.5094,-3.2326],[136.5147,-3.2326],[136.5237,-3.2305],[136.5315,-3.2305],[136.5372,-3.2269],[136.5463,-3.2304],[136.5546,-3.2381],[136.5619,-3.2406],[136.5649,-3.2494],[136.5688,-3.2507],[136.5811,-3.2483],[136.5845,-3.2459],[136.5885,-3.2472],[136.5975,-3.2464],[136.6049,-3.239],[136.609,-3.2367],[136.6191,-3.2362],[136.6255,-3.2372],[136.6322,-3.2406],[136.6431,-3.2487],[136.6444,-3.2561],[136.6465,-3.2579],[136.6643,-3.2589],[136.6701,-3.2581],[136.6816,-3.2621],[136.6849,-3.2661],[136.6908,-3.2683],[136.6975,-3.2636],[136.7067,-3.2684],[136.7138,-3.2693],[136.7201,-3.2745],[136.7233,-3.28],[136.7315,-3.2823],[136.7376,-3.281],[136.7462,-3.2823],[136.7686,-3.2754],[136.7714,-3.2732],[136.7756,-3.2779],[136.7819,-3.2765],[136.7817,-3.2731],[136.7868,-3.2666],[136.8011,-3.2657],[136.8121,-3.2772],[136.8206,-3.2814],[136.8297,-3.2811],[136.8338,-3.27],[136.8391,-3.2688],[136.8419,-3.2652],[136.85,-3.2616],[136.8524,-3.2564],[136.8599,-3.2546],[136.8644,-3.251],[136.869,-3.2524],[136.8741,-3.2422],[136.8816,-3.2414],[136.883,-3.2345],[136.8899,-3.2296],[136.8892,-3.2229],[136.8934,-3.2231],[136.8983,-3.2192],[136.9001,-3.2154],[136.8975,-3.2128],[136.8967,-3.2048],[136.8986,-3.1997],[136.8974,-3.1939],[136.9015,-3.1928],[136.9017,-3.2033],[136.9079,-3.2032],[136.9095,-3.1921],[136.9251,-3.1861],[136.9277,-3.1916],[136.9347,-3.1875],[136.9389,-3.1869],[136.9479,-3.1953],[136.9531,-3.1892],[136.9591,-3.1891],[136.9625,-3.1966],[136.9669,-3.1978],[136.9707,-3.1864],[136.9755,-3.1861],[136.9783,-3.1914],[136.9825,-3.1818],[136.9873,-3.1756],[136.9927,-3.174],[136.9945,-3.1822],[136.9997,-3.1839],[137.0021,-3.1769],[137.0055,-3.1748],[137.0093,-3.1783],[137.0045,-3.1833],[137.0051,-3.1894],[137.0093,-3.1884],[137.0129,-3.1831],[137.0225,-3.1822],[137.0325,-3.1852],[137.0419,-3.1827],[137.0441,-3.1792],[137.0431,-3.1698],[137.0499,-3.1686],[137.0519,-3.1764],[137.0637,-3.1755],[137.0717,-3.1795],[137.0885,-3.1715],[137.0917,-3.1635],[137.0921,-3.157],[137.0975,-3.1556],[137.1029,-3.1573],[137.1071,-3.154],[137.1073,-3.1469],[137.1053,-3.1404],[137.1157,-3.1301],[137.1271,-3.1227],[137.1279,-3.1322],[137.1343,-3.1352],[137.1425,-3.1347],[137.1509,-3.1312],[137.1607,-3.1332],[137.1653,-3.1256],[137.1755,-3.1262],[137.1819,-3.1218],[137.1823,-3.1139],[137.1871,-3.1064],[137.1741,-3.0895],[137.1625,-3.0816],[137.1517,-3.0777],[137.2095,-3.0573],[137.2277,-3.0465],[137.2493,-3.0313],[137.2611,-3.0152],[137.2935,-3.0034],[137.3237,-2.9883],[137.3637,-2.9699],[137.3804,-2.9658],[137.3771,-2.958],[137.3813,-2.9528],[137.3751,-2.9497],[137.3795,-2.9444],[137.3793,-2.9328],[137.3721,-2.9377],[137.3673,-2.9372],[137.3657,-2.925],[137.3707,-2.9234],[137.3685,-2.9188],[137.3693,-2.9135],[137.3563,-2.9095],[137.3547,-2.9038],[137.3627,-2.9019],[137.3593,-2.8957],[137.3579,-2.8773],[137.3511,-2.8755],[137.3535,-2.87],[137.3499,-2.8647],[137.3447,-2.8681],[137.3447,-2.8586],[137.3413,-2.86],[137.3331,-2.8557],[137.3299,-2.8518],[137.3231,-2.8531],[137.3191,-2.8478],[137.3039,-2.8463],[137.2849,-2.8431],[137.2755,-2.8366],[137.2691,-2.8241],[137.2685,-2.8094],[137.2669,-2.7963],[137.2718,-2.7931],[137.2727,-2.7886],[137.2721,-2.7772],[137.2647,-2.7713],[137.2492,-2.7611],[137.2709,-2.7359],[137.2792,-2.724],[137.2873,-2.7191],[137.2861,-2.7146],[137.2787,-2.7075],[137.2688,-2.7005],[137.2634,-2.6929],[137.2603,-2.6805],[137.2628,-2.675],[137.2613,-2.6668],[137.263,-2.6634],[137.2646,-2.653],[137.2606,-2.6381],[137.2674,-2.6331],[137.2654,-2.6244],[137.2607,-2.6164],[137.2622,-2.6107],[137.2541,-2.6045],[137.2517,-2.5911],[137.2407,-2.581],[137.2369,-2.5794],[137.2371,-2.5743],[137.2283,-2.5752],[137.2236,-2.5776],[137.2225,-2.573],[137.2172,-2.5733],[137.1931,-2.5637],[137.1907,-2.5555],[137.1809,-2.5493],[137.1778,-2.5498],[137.1714,-2.5457],[137.1677,-2.5393],[137.1586,-2.5393],[137.149,-2.5353],[137.1489,-2.531],[137.1456,-2.5263],[137.1429,-2.5271],[137.1371,-2.5178],[137.131,-2.5205],[137.1285,-2.5185],[137.1207,-2.5175],[137.1134,-2.512],[137.11,-2.511],[137.1137,-2.5048],[137.1084,-2.5019],[137.1012,-2.4922],[137.0966,-2.4911],[137.0932,-2.4879],[137.0897,-2.489],[137.0867,-2.4832],[137.0798,-2.4821],[137.075,-2.4856],[137.0694,-2.4801],[137.0644,-2.4799],[137.0586,-2.4743],[137.0583,-2.4701],[137.054,-2.4636],[137.0482,-2.4605],[137.0422,-2.4609],[137.0349,-2.458],[137.0346,-2.453],[137.0391,-2.4481],[137.0404,-2.4418],[137.0348,-2.4403],[137.0364,-2.4346],[137.0351,-2.4278],[137.0315,-2.4264],[137.0308,-2.4183],[137.0258,-2.418],[137.0199,-2.4239],[137.013,-2.4199],[137.0066,-2.4204],[137.0023,-2.4256],[136.9975,-2.4229],[136.995,-2.4189],[136.9878,-2.4222],[136.9843,-2.418],[136.9743,-2.4261],[136.9672,-2.4234],[136.9635,-2.4205],[136.9666,-2.4169],[136.9562,-2.4101],[136.9538,-2.4035],[136.9444,-2.3948],[136.9407,-2.3979],[136.9341,-2.3929],[136.9221,-2.3877],[136.9132,-2.3854],[136.9079,-2.3795],[136.9117,-2.3731],[136.91,-2.3614],[136.914,-2.3603],[136.9157,-2.3564],[136.9205,-2.3582],[136.9249,-2.3624],[136.9288,-2.3626],[136.9317,-2.359],[136.9278,-2.3562],[136.9272,-2.3492],[136.9336,-2.347],[136.9374,-2.3495],[136.9381,-2.34],[136.9314,-2.3381],[136.9261,-2.335],[136.9213,-2.3389],[136.9192,-2.334],[136.9151,-2.3319],[136.9185,-2.328],[136.9143,-2.3192],[136.9206,-2.3098],[136.9223,-2.3007],[136.9187,-2.2954],[136.9138,-2.2943],[136.9094,-2.2982],[136.9029,-2.2942],[136.9059,-2.2896],[136.9038,-2.2853],[136.91,-2.2827],[136.9103,-2.2774],[136.9066,-2.2765],[136.903,-2.2686],[136.8916,-2.2713],[136.8918,-2.2653],[136.8886,-2.2603],[136.8895,-2.2548],[136.8849,-2.2537],[136.8855,-2.2498],[136.8782,-2.2481],[136.8779,-2.2434],[136.8667,-2.2334],[136.8653,-2.2227],[136.8595,-2.2239],[136.8522,-2.2232],[136.8506,-2.2202],[136.8412,-2.2197],[136.8364,-2.2138],[136.8257,-2.2036],[136.8272,-2.1945],[136.8226,-2.1904],[136.8226,-2.1864],[136.807,-2.1763]]}},{"type":"Feature","properties":{"mhid":"1332:510","alt_name":"KABUPATEN SUPIORI","latitude":-0.73881,"longitude":135.61111,"sample_value":407},"geometry":{"type":"LineString","coordinates":[[135.5006,-0.9423],[135.4989,-0.9397],[135.4926,-0.9422],[135.4964,-0.9531],[135.4961,-0.962],[135.4984,-0.9654],[135.5083,-0.9678],[135.5124,-0.9613],[135.5061,-0.9581],[135.5027,-0.9519],[135.5006,-0.9423]]}},{"type":"Feature","properties":{"mhid":"1332:510","alt_name":"KABUPATEN SUPIORI","latitude":-0.73881,"longitude":135.61111,"sample_value":407},"geometry":{"type":"LineString","coordinates":[[135.5082,-0.8313],[135.5053,-0.8283],[135.5016,-0.8333],[135.506,-0.8354],[135.5082,-0.8313]]}},{"type":"Feature","properties":{"mhid":"1332:510","alt_name":"KABUPATEN SUPIORI","latitude":-0.73881,"longitude":135.61111,"sample_value":407},"geometry":{"type":"LineString","coordinates":[[135.5263,-0.6423],[135.5241,-0.6509],[135.5273,-0.6556],[135.5317,-0.6536],[135.5342,-0.6491],[135.5299,-0.6436],[135.5263,-0.6423]]}},{"type":"Feature","properties":{"mhid":"1332:510","alt_name":"KABUPATEN SUPIORI","latitude":-0.73881,"longitude":135.61111,"sample_value":407},"geometry":{"type":"LineString","coordinates":[[135.4858,-0.6285],[135.4815,-0.6298],[135.4866,-0.6388],[135.4898,-0.6341],[135.4858,-0.6285]]}},{"type":"Feature","properties":{"mhid":"1332:510","alt_name":"KABUPATEN SUPIORI","latitude":-0.73881,"longitude":135.61111,"sample_value":407},"geometry":{"type":"LineString","coordinates":[[135.8036,-0.6868],[135.7994,-0.6932],[135.7989,-0.6978],[135.7946,-0.7026],[135.7886,-0.7065],[135.7888,-0.711],[135.779,-0.7215],[135.7707,-0.7215],[135.7668,-0.7228],[135.764,-0.7314],[135.758,-0.7375],[135.7475,-0.7401],[135.7369,-0.7327],[135.7335,-0.7282],[135.7327,-0.723],[135.7284,-0.7178],[135.7283,-0.7126],[135.7187,-0.7087],[135.7142,-0.7085],[135.7099,-0.7118],[135.7033,-0.7123],[135.7009,-0.719],[135.6957,-0.723],[135.688,-0.7217],[135.6829,-0.7174],[135.6803,-0.7129],[135.6839,-0.7056],[135.6798,-0.6958],[135.6804,-0.693],[135.6741,-0.683],[135.6689,-0.6787],[135.6603,-0.6783],[135.6599,-0.6704],[135.6557,-0.6678],[135.6426,-0.6625],[135.637,-0.6633],[135.6329,-0.6663],[135.6315,-0.6721],[135.6212,-0.6697],[135.6189,-0.6745],[135.6148,-0.6771],[135.6159,-0.6813],[135.6017,-0.6936],[135.6008,-0.6972],[135.5953,-0.7027],[135.5937,-0.7008],[135.5948,-0.6928],[135.5985,-0.6879],[135.5987,-0.681],[135.596,-0.6769],[135.5969,-0.6664],[135.5837,-0.6633],[135.5794,-0.6656],[135.5661,-0.664],[135.5589,-0.6573],[135.5512,-0.6586],[135.5476,-0.6642],[135.5377,-0.6671],[135.5348,-0.6745],[135.5318,-0.6717],[135.5313,-0.6654],[135.5257,-0.662],[135.5169,-0.6607],[135.5121,-0.6629],[135.5106,-0.6595],[135.5045,-0.6543],[135.4957,-0.652],[135.4895,-0.6543],[135.4898,-0.6587],[135.4823,-0.6621],[135.4729,-0.6529],[135.4634,-0.6463],[135.4597,-0.646],[135.4467,-0.6582],[135.4433,-0.6532],[135.4487,-0.6509],[135.4504,-0.6449],[135.4472,-0.6414],[135.441,-0.6447],[135.4338,-0.6429],[135.4291,-0.6506],[135.4256,-0.65],[135.4175,-0.653],[135.4107,-0.6504],[135.4104,-0.6461],[135.3998,-0.6356],[135.3942,-0.6217],[135.3849,-0.621],[135.375,-0.628],[135.369,-0.6282],[135.3639,-0.6303],[135.3616,-0.639],[135.3633,-0.6451],[135.3717,-0.6555],[135.3727,-0.6665],[135.3787,-0.6719],[135.3874,-0.6756],[135.3856,-0.682],[135.3939,-0.6916],[135.3911,-0.6976],[135.3849,-0.6993],[135.3929,-0.7154],[135.3937,-0.7229],[135.4041,-0.7281],[135.4077,-0.7382],[135.4121,-0.7435],[135.4159,-0.7442],[135.4222,-0.7545],[135.4274,-0.758],[135.4282,-0.7611],[135.4347,-0.7679],[135.4449,-0.7717],[135.4537,-0.7831],[135.4567,-0.7817],[135.4646,-0.7863],[135.4651,-0.7908],[135.4687,-0.7945],[135.4741,-0.796],[135.4782,-0.8002],[135.4902,-0.8052],[135.4886,-0.809],[135.4826,-0.812],[135.4842,-0.8156],[135.4896,-0.8159],[135.5003,-0.8245],[135.5105,-0.829],[135.5072,-0.835],[135.5083,-0.8457],[135.5137,-0.8531],[135.5182,-0.8554],[135.5234,-0.8553],[135.5319,-0.8585],[135.5331,-0.8636],[135.5368,-0.8664],[135.5372,-0.8714],[135.5422,-0.8693],[135.5413,-0.8624],[135.5451,-0.8512],[135.5438,-0.842],[135.5419,-0.8384],[135.5377,-0.838],[135.5278,-0.8315],[135.5235,-0.8227],[135.5202,-0.8187],[135.5223,-0.8155],[135.5235,-0.8066],[135.5198,-0.8023],[135.5185,-0.7967],[135.5129,-0.7894],[135.5044,-0.7883],[135.4983,-0.8032],[135.4995,-0.8103],[135.4919,-0.8031],[135.4897,-0.7973],[135.4917,-0.7927],[135.4841,-0.7874],[135.4783,-0.7799],[135.4814,-0.776],[135.4803,-0.7731],[135.4716,-0.7645],[135.4712,-0.76],[135.4676,-0.7579],[135.4677,-0.7491],[135.4704,-0.7469],[135.4777,-0.7451],[135.4829,-0.7486],[135.4812,-0.7568],[135.4817,-0.7612],[135.4862,-0.7691],[135.4995,-0.7727],[135.5028,-0.7765],[135.5092,-0.7796],[135.5289,-0.7829],[135.5334,-0.7898],[135.5386,-0.7936],[135.5399,-0.7983],[135.5437,-0.8018],[135.5521,-0.802],[135.5559,-0.8043],[135.5587,-0.8118],[135.5641,-0.816],[135.5652,-0.8218],[135.5716,-0.8268],[135.5727,-0.8298],[135.5781,-0.8335],[135.5924,-0.8399],[135.5943,-0.8426],[135.6058,-0.8508],[135.6119,-0.8536],[135.6196,-0.8672],[135.6257,-0.8763],[135.6383,-0.8812],[135.6428,-0.8871],[135.6508,-0.8793],[135.6554,-0.8723],[135.6672,-0.8624],[135.6726,-0.849],[135.6763,-0.8478],[135.6795,-0.8406],[135.6839,-0.8401],[135.6862,-0.8295],[135.6912,-0.8272],[135.6977,-0.8174],[135.6989,-0.8067],[135.7012,-0.7997],[135.7067,-0.7989],[135.7123,-0.789],[135.7206,-0.7842],[135.7229,-0.7857],[135.7235,-0.7933],[135.7206,-0.797],[135.7087,-0.8032],[135.7388,-0.7945],[135.8035,-0.7408],[135.8036,-0.6868]]}},{"type":"Feature","properties":{"mhid":"1332:510","alt_name":"KABUPATEN SUPIORI","latitude":-0.73881,"longitude":135.61111,"sample_value":407},"geometry":{"type":"LineString","coordinates":[[135.2782,-0.4069],[135.2781,-0.4044],[135.2718,-0.3936],[135.2688,-0.3921],[135.2665,-0.3994],[135.2635,-0.4019],[135.2622,-0.4086],[135.2706,-0.4102],[135.2782,-0.4069]]}},{"type":"Feature","properties":{"mhid":"1332:510","alt_name":"KABUPATEN SUPIORI","latitude":-0.73881,"longitude":135.61111,"sample_value":407},"geometry":{"type":"LineString","coordinates":[[134.3026,0.8086],[134.3005,0.8134],[134.3008,0.8203],[134.3063,0.8375],[134.3039,0.8444],[134.2988,0.8348],[134.2964,0.8241],[134.297,0.8048],[134.3005,0.8044],[134.3026,0.8086]]}},{"type":"Feature","properties":{"mhid":"1332:510","alt_name":"KABUPATEN SUPIORI","latitude":-0.73881,"longitude":135.61111,"sample_value":407},"geometry":{"type":"LineString","coordinates":[[134.3318,0.9095],[134.3412,0.9182],[134.3377,0.9302],[134.3356,0.9216],[134.3294,0.9199],[134.3246,0.9161],[134.3229,0.9071],[134.3263,0.9051],[134.3318,0.9095]]}},{"type":"Feature","properties":{"mhid":"1332:511","alt_name":"KABUPATEN MAMBERAMO RAYA","latitude":-2.23561,"longitude":137.78229,"sample_value":240},"geometry":{"type":"LineString","coordinates":[[137.1741,-2.0033],[137.1718,-2.0048],[137.1729,-2.0106],[137.1792,-2.0127],[137.1879,-2.0195],[137.1977,-2.0181],[137.1965,-2.0134],[137.1877,-2.0098],[137.1772,-2.0036],[137.1741,-2.0033]]}},{"type":"Feature","properties":{"mhid":"1332:511","alt_name":"KABUPATEN MAMBERAMO RAYA","latitude":-2.23561,"longitude":137.78229,"sample_value":240},"geometry":{"type":"LineString","coordinates":[[137.2036,-1.9846],[137.1985,-1.9802],[137.1961,-1.9841],[137.2036,-1.9846]]}},{"type":"Feature","properties":{"mhid":"1332:511","alt_name":"KABUPATEN MAMBERAMO RAYA","latitude":-2.23561,"longitude":137.78229,"sample_value":240},"geometry":{"type":"LineString","coordinates":[[137.2088,-1.9849],[137.2142,-1.9812],[137.2076,-1.9795],[137.1986,-1.9706],[137.1958,-1.9744],[137.2007,-1.9772],[137.2088,-1.9849]]}},{"type":"Feature","properties":{"mhid":"1332:511","alt_name":"KABUPATEN MAMBERAMO RAYA","latitude":-2.23561,"longitude":137.78229,"sample_value":240},"geometry":{"type":"LineString","coordinates":[[137.1923,-1.9685],[137.1934,-1.9652],[137.1879,-1.9632],[137.1873,-1.9684],[137.1923,-1.9685]]}},{"type":"Feature","properties":{"mhid":"1332:511","alt_name":"KABUPATEN MAMBERAMO RAYA","latitude":-2.23561,"longitude":137.78229,"sample_value":240},"geometry":{"type":"LineString","coordinates":[[137.0895,-1.8565],[137.0871,-1.8718],[137.0883,-1.8882],[137.0924,-1.8941],[137.097,-1.8905],[137.1052,-1.8809],[137.1107,-1.8783],[137.1118,-1.8751],[137.1045,-1.8703],[137.1003,-1.8619],[137.0975,-1.8594],[137.0895,-1.8565]]}},{"type":"Feature","properties":{"mhid":"1332:511","alt_name":"KABUPATEN MAMBERAMO RAYA","latitude":-2.23561,"longitude":137.78229,"sample_value":240},"geometry":{"type":"LineString","coordinates":[[138.1704,-1.6309],[138.153,-1.6291],[138.1401,-1.6269],[138.1246,-1.6234],[138.0992,-1.6154],[138.0824,-1.6084],[138.0676,-1.601],[138.0492,-1.5897],[138.0238,-1.5712],[138.0119,-1.5606],[138.0041,-1.5496],[137.9942,-1.5379],[137.9905,-1.5319],[137.9868,-1.5297],[137.9803,-1.5291],[137.9765,-1.5323],[137.9718,-1.5321],[137.9676,-1.5278],[137.966,-1.5155],[137.953,-1.5061],[137.9539,-1.4983],[137.95,-1.4893],[137.9433,-1.4777],[137.9375,-1.47],[137.9319,-1.458],[137.9211,-1.4609],[137.9091,-1.4693],[137.9018,-1.4719],[137.8964,-1.4709],[137.8903,-1.4641],[137.8629,-1.4647],[137.8601,-1.4636],[137.8484,-1.4643],[137.8389,-1.462],[137.8159,-1.4672],[137.811,-1.4667],[137.7975,-1.4698],[137.7904,-1.4764],[137.7795,-1.4791],[137.7769,-1.482],[137.7724,-1.4821],[137.7645,-1.4774],[137.7578,-1.4779],[137.7501,-1.4765],[137.7436,-1.4769],[137.7407,-1.4792],[137.743,-1.4935],[137.7382,-1.4978],[137.732,-1.4942],[137.7242,-1.4943],[137.7043,-1.4986],[137.6814,-1.5049],[137.6696,-1.5113],[137.6576,-1.515],[137.6462,-1.5215],[137.6419,-1.5286],[137.6369,-1.5293],[137.6269,-1.5346],[137.6109,-1.5451],[137.5941,-1.5511],[137.5878,-1.5561],[137.5813,-1.5548],[137.5761,-1.5586],[137.5366,-1.5733],[137.5313,-1.5781],[137.5049,-1.5883],[137.4849,-1.5941],[137.4767,-1.5976],[137.4761,-1.6033],[137.4678,-1.6088],[137.4626,-1.6139],[137.4496,-1.6213],[137.4462,-1.6269],[137.4296,-1.634],[137.4225,-1.6394],[137.41,-1.6465],[137.403,-1.6515],[137.4026,-1.655],[137.3969,-1.6581],[137.3732,-1.6686],[137.3636,-1.6756],[137.3434,-1.6832],[137.3346,-1.6874],[137.33,-1.6917],[137.329,-1.6976],[137.3228,-1.702],[137.3157,-1.7008],[137.3102,-1.698],[137.3017,-1.7062],[137.2858,-1.7153],[137.2692,-1.7255],[137.2467,-1.7358],[137.2426,-1.7414],[137.2463,-1.7465],[137.2416,-1.7514],[137.2334,-1.7504],[137.2168,-1.7462],[137.2036,-1.7468],[137.1885,-1.7523],[137.1651,-1.7633],[137.1545,-1.7699],[137.1534,-1.7745],[137.149,-1.7767],[137.1433,-1.7758],[137.1403,-1.772],[137.1363,-1.7716],[137.1245,-1.7757],[137.1163,-1.7829],[137.1023,-1.7931],[137.0975,-1.8002],[137.0948,-1.8072],[137.092,-1.8276],[137.0913,-1.8418],[137.0892,-1.8516],[137.0912,-1.8553],[137.0989,-1.859],[137.1071,-1.867],[137.1072,-1.8705],[137.1162,-1.8752],[137.1221,-1.8802],[137.1239,-1.888],[137.1288,-1.8966],[137.1335,-1.8974],[137.1372,-1.8939],[137.1415,-1.8961],[137.1474,-1.9059],[137.1498,-1.9153],[137.1561,-1.9318],[137.1591,-1.9303],[137.1708,-1.9344],[137.1733,-1.9387],[137.1776,-1.9396],[137.1815,-1.9363],[137.192,-1.9458],[137.1932,-1.9598],[137.2033,-1.9663],[137.2022,-1.9711],[137.2086,-1.9777],[137.2155,-1.9788],[137.2164,-1.9825],[137.2117,-1.9884],[137.207,-1.9904],[137.2029,-1.988],[137.1947,-1.9874],[137.1897,-2.0005],[137.1997,-2.0087],[137.2038,-2.0142],[137.2058,-2.0196],[137.2116,-2.0248],[137.2122,-2.0325],[137.2163,-2.039],[137.2267,-2.0424],[137.2305,-2.0419],[137.2315,-2.0486],[137.2267,-2.0557],[137.2196,-2.0597],[137.2057,-2.0641],[137.2051,-2.0683],[137.2017,-2.0702],[137.1954,-2.0667],[137.1937,-2.0711],[137.1871,-2.0791],[137.1782,-2.081],[137.1648,-2.0927],[137.1604,-2.0938],[137.1545,-2.1031],[137.1504,-2.1026],[137.1417,-2.0981],[137.1321,-2.1009],[137.1288,-2.0996],[137.1219,-2.1018],[137.1198,-2.108],[137.114,-2.1083],[137.1087,-2.111],[137.0982,-2.1103],[137.092,-2.1077],[137.092,-2.1032],[137.0856,-2.1006],[137.0769,-2.1035],[137.071,-2.1029],[137.0667,-2.0999],[137.058,-2.0984],[137.0558,-2.1025],[137.0488,-2.1026],[137.0443,-2.1043],[137.039,-2.1135],[137.0253,-2.1155],[137.0212,-2.118],[137.0147,-2.1183],[137.0056,-2.1258],[137.0001,-2.1291],[136.9913,-2.1281],[136.9829,-2.1298],[136.9769,-2.1327],[136.9624,-2.1286],[136.9587,-2.1255],[136.9514,-2.127],[136.9423,-2.1217],[136.938,-2.1293],[136.9411,-2.1321],[136.9424,-2.1406],[136.9398,-2.1455],[136.9312,-2.1516],[136.9254,-2.1504],[136.9183,-2.1629],[136.9156,-2.1652],[136.9154,-2.1699],[136.9119,-2.1742],[136.9122,-2.1778],[136.9081,-2.1798],[136.9041,-2.1773],[136.8916,-2.1765],[136.8908,-2.1737],[136.884,-2.1771],[136.8745,-2.1756],[136.8648,-2.1839],[136.8627,-2.1817],[136.856,-2.1836],[136.8528,-2.1898],[136.8456,-2.1904],[136.8418,-2.1956],[136.8361,-2.1948],[136.8348,-2.1826],[136.8375,-2.1747],[136.8327,-2.1733],[136.8292,-2.1761],[136.8223,-2.1769],[136.8116,-2.1744],[136.807,-2.1763],[136.8226,-2.1864],[136.8226,-2.1904],[136.8272,-2.1945],[136.8257,-2.2036],[136.8364,-2.2138],[136.8412,-2.2197],[136.8506,-2.2202],[136.8522,-2.2232],[136.8595,-2.2239],[136.8653,-2.2227],[136.8667,-2.2334],[136.8779,-2.2434],[136.8782,-2.2481],[136.8855,-2.2498],[136.8849,-2.2537],[136.8895,-2.2548],[136.8886,-2.2603],[136.8918,-2.2653],[136.8916,-2.2713],[136.903,-2.2686],[136.9066,-2.2765],[136.9103,-2.2774],[136.91,-2.2827],[136.9038,-2.2853],[136.9059,-2.2896],[136.9029,-2.2942],[136.9094,-2.2982],[136.9138,-2.2943],[136.9187,-2.2954],[136.9223,-2.3007],[136.9206,-2.3098],[136.9143,-2.3192],[136.9185,-2.328],[136.9151,-2.3319],[136.9192,-2.334],[136.9213,-2.3389],[136.9261,-2.335],[136.9314,-2.3381],[136.9381,-2.34],[136.9374,-2.3495],[136.9336,-2.347],[136.9272,-2.3492],[136.9278,-2.3562],[136.9317,-2.359],[136.9288,-2.3626],[136.9249,-2.3624],[136.9205,-2.3582],[136.9157,-2.3564],[136.914,-2.3603],[136.91,-2.3614],[136.9117,-2.3731],[136.9079,-2.3795],[136.9132,-2.3854],[136.9221,-2.3877],[136.9341,-2.3929],[136.9407,-2.3979],[136.9444,-2.3948],[136.9538,-2.4035],[136.9562,-2.4101],[136.9666,-2.4169],[136.9635,-2.4205],[136.9672,-2.4234],[136.9743,-2.4261],[136.9843,-2.418],[136.9878,-2.4222],[136.995,-2.4189],[136.9975,-2.4229],[137.0023,-2.4256],[137.0066,-2.4204],[137.013,-2.4199],[137.0199,-2.4239],[137.0258,-2.418],[137.0308,-2.4183],[137.0315,-2.4264],[137.0351,-2.4278],[137.0364,-2.4346],[137.0348,-2.4403],[137.0404,-2.4418],[137.0391,-2.4481],[137.0346,-2.453],[137.0349,-2.458],[137.0422,-2.4609],[137.0482,-2.4605],[137.054,-2.4636],[137.0583,-2.4701],[137.0586,-2.4743],[137.0644,-2.4799],[137.0694,-2.4801],[137.075,-2.4856],[137.0798,-2.4821],[137.0867,-2.4832],[137.0897,-2.489],[137.0932,-2.4879],[137.0966,-2.4911],[137.1012,-2.4922],[137.1084,-2.5019],[137.1137,-2.5048],[137.11,-2.511],[137.1134,-2.512],[137.1207,-2.5175],[137.1285,-2.5185],[137.131,-2.5205],[137.1371,-2.5178],[137.1429,-2.5271],[137.1456,-2.5263],[137.1489,-2.531],[137.149,-2.5353],[137.1586,-2.5393],[137.1677,-2.5393],[137.1714,-2.5457],[137.1778,-2.5498],[137.1809,-2.5493],[137.1907,-2.5555],[137.1931,-2.5637],[137.2172,-2.5733],[137.2225,-2.573],[137.2236,-2.5776],[137.2283,-2.5752],[137.2371,-2.5743],[137.2369,-2.5794],[137.2407,-2.581],[137.2517,-2.5911],[137.2541,-2.6045],[137.2622,-2.6107],[137.2607,-2.6164],[137.2654,-2.6244],[137.2674,-2.6331],[137.2606,-2.6381],[137.2646,-2.653],[137.263,-2.6634],[137.2613,-2.6668],[137.2628,-2.675],[137.2603,-2.6805],[137.2634,-2.6929],[137.2688,-2.7005],[137.2787,-2.7075],[137.2861,-2.7146],[137.2873,-2.7191],[137.2792,-2.724],[137.2709,-2.7359],[137.2492,-2.7611],[137.2647,-2.7713],[137.2721,-2.7772],[137.2727,-2.7886],[137.2718,-2.7931],[137.2669,-2.7963],[137.2685,-2.8094],[137.2691,-2.8241],[137.2755,-2.8366],[137.2849,-2.8431],[137.3039,-2.8463],[137.3191,-2.8478],[137.3231,-2.8531],[137.3299,-2.8518],[137.3331,-2.8557],[137.3413,-2.86],[137.3447,-2.8586],[137.3447,-2.8681],[137.3499,-2.8647],[137.3535,-2.87],[137.3511,-2.8755],[137.3579,-2.8773],[137.3593,-2.8957],[137.3627,-2.9019],[137.3547,-2.9038],[137.3563,-2.9095],[137.3693,-2.9135],[137.3685,-2.9188],[137.3707,-2.9234],[137.3657,-2.925],[137.3673,-2.9372],[137.3721,-2.9377],[137.3793,-2.9328],[137.3795,-2.9444],[137.3751,-2.9497],[137.3813,-2.9528],[137.3771,-2.958],[137.3804,-2.9658],[137.3857,-2.9649],[137.3861,-2.9712],[137.3891,-2.9741],[137.3903,-2.9791],[137.3954,-2.983],[137.4079,-2.9885],[137.4164,-2.9895],[137.4222,-3.0076],[137.4247,-3.0051],[137.4317,-3.0064],[137.4307,-3.0093],[137.4208,-3.0129],[137.4262,-3.0168],[137.4319,-3.0158],[137.4339,-3.021],[137.4394,-3.0252],[137.4388,-3.0322],[137.4448,-3.0415],[137.4484,-3.0396],[137.4539,-3.048],[137.4623,-3.0521],[137.4656,-3.0506],[137.4681,-3.0452],[137.4729,-3.0502],[137.479,-3.0451],[137.4833,-3.0442],[137.4874,-3.0505],[137.4923,-3.046],[137.4951,-3.0548],[137.5016,-3.0511],[137.5068,-3.0531],[137.5124,-3.0574],[137.5248,-3.0585],[137.5312,-3.0539],[137.5394,-3.0517],[137.5434,-3.0527],[137.5581,-3.0515],[137.5628,-3.0539],[137.5688,-3.0642],[137.5766,-3.0673],[137.5815,-3.0656],[137.5953,-3.0886],[137.6177,-3.1121],[137.6659,-3.1133],[137.7342,-3.118],[137.8248,-3.1203],[137.8825,-3.1168],[137.9531,-3.1274],[137.9743,-3.1345],[137.9848,-3.1411],[137.9841,-3.1458],[137.9873,-3.1483],[137.9909,-3.1454],[137.9952,-3.1465],[137.9967,-3.154],[138.0071,-3.1533],[138.0099,-3.1554],[138.0096,-3.1605],[138.0067,-3.1651],[138.007,-3.1848],[138.0138,-3.1904],[138.0194,-3.1993],[138.0194,-3.2172],[138.0132,-3.22],[138.0098,-3.2245],[138.0154,-3.2352],[138.0322,-3.2424],[138.0412,-3.2464],[138.0481,-3.2416],[138.0579,-3.2416],[138.0663,-3.2451],[138.0684,-3.2549],[138.0761,-3.2626],[138.0873,-3.264],[138.0992,-3.2626],[138.1104,-3.2626],[138.1279,-3.2724],[138.1335,-3.2836],[138.1458,-3.2863],[138.1557,-3.2824],[138.1617,-3.2781],[138.1677,-3.2661],[138.1723,-3.2364],[138.1773,-3.2308],[138.2153,-3.2077],[138.2748,-3.1978],[138.3272,-3.1944],[138.3392,-3.216],[138.3573,-3.2622],[138.3656,-3.2903],[138.3805,-3.3184],[138.4069,-3.3299],[138.4449,-3.3266],[138.4696,-3.325],[138.4977,-3.3316],[138.5225,-3.3346],[138.5627,-3.3375],[138.6107,-3.3217],[138.6466,-3.309],[138.6879,-3.2889],[138.7301,-3.2858],[138.7597,-3.3154],[138.7925,-3.3471],[138.8221,-3.3798],[138.8549,-3.4179],[138.8841,-3.4293],[138.9163,-3.4209],[138.9304,-3.4195],[138.9661,-3.3999],[138.9899,-3.3901],[139.0053,-3.3817],[139.048,-3.3929],[139.0648,-3.3634],[139.0762,-3.336],[139.0757,-3.3253],[139.069,-3.3094],[139.0673,-3.2965],[139.0743,-3.2873],[139.0836,-3.2877],[139.0826,-3.3005],[139.0836,-3.311],[139.0975,-3.308],[139.0983,-3.2955],[139.0888,-3.2806],[139.0721,-3.2749],[139.0588,-3.2765],[139.0515,-3.2836],[139.0484,-3.2923],[139.0382,-3.2937],[139.0336,-3.2824],[139.0205,-3.2822],[139.0174,-3.2806],[139.0156,-3.2734],[139.0175,-3.2624],[139.0218,-3.2574],[139.0124,-3.2496],[139.0094,-3.2445],[139.0122,-3.2419],[139.0123,-3.2339],[139.0146,-3.2313],[139.0068,-3.2281],[139.0043,-3.2124],[139.0061,-3.2071],[139.0032,-3.2036],[139.0011,-3.1935],[139.0031,-3.1906],[139.0144,-3.1894],[139.0166,-3.1835],[139.0228,-3.1771],[139.0209,-3.1707],[139.0226,-3.1606],[139.0225,-3.1514],[139.0209,-3.1492],[139.022,-3.1429],[139.0252,-3.1438],[139.0322,-3.1422],[139.0285,-3.1335],[139.0355,-3.1293],[139.0387,-3.123],[139.0427,-3.1212],[139.0498,-3.1085],[139.0531,-3.098],[139.0568,-3.0984],[139.0604,-3.0932],[139.0605,-3.0888],[139.0643,-3.086],[139.0699,-3.0875],[139.0693,-3.0822],[139.0736,-3.0784],[139.0876,-3.073],[139.0916,-3.0743],[139.1059,-3.0541],[139.1138,-3.0451],[139.1231,-3.0308],[139.1259,-3.0187],[139.1262,-3.0034],[139.1227,-2.9954],[139.1174,-2.9921],[139.1192,-2.9893],[139.1293,-2.9874],[139.1322,-2.9937],[139.1367,-2.9892],[139.1325,-2.9857],[139.139,-2.9831],[139.1421,-2.9735],[139.1396,-2.9593],[139.1454,-2.9563],[139.1398,-2.9499],[139.138,-2.9415],[139.1262,-2.9333],[139.1268,-2.9289],[139.1241,-2.9267],[139.12,-2.9323],[139.1145,-2.9315],[139.1151,-2.9257],[139.1033,-2.9249],[139.1096,-2.9204],[139.1136,-2.9085],[139.1115,-2.9028],[139.0859,-2.8891],[139.065,-2.8784],[138.9745,-2.8306],[138.9514,-2.818],[138.9027,-2.7931],[138.8765,-2.7788],[138.8081,-2.7431],[138.7665,-2.7208],[138.6956,-2.6863],[138.6705,-2.6738],[138.6212,-2.6459],[138.6357,-2.6197],[138.6619,-2.5768],[138.7117,-2.4936],[138.7207,-2.479],[138.7222,-2.47],[138.7209,-2.4624],[138.727,-2.4589],[138.7268,-2.4499],[138.7215,-2.4386],[138.7214,-2.4283],[138.7224,-2.4217],[138.7145,-2.4124],[138.6815,-2.3694],[138.6668,-2.3511],[138.6637,-2.3466],[138.6299,-2.3011],[138.6222,-2.2893],[138.6201,-2.2755],[138.6039,-2.2662],[138.5988,-2.2619],[138.5961,-2.2658],[138.5879,-2.2663],[138.5843,-2.2687],[138.5734,-2.2694],[138.5709,-2.2654],[138.5598,-2.2705],[138.5572,-2.2661],[138.5511,-2.2703],[138.5479,-2.2657],[138.5397,-2.264],[138.536,-2.2676],[138.5309,-2.2662],[138.5285,-2.2613],[138.5162,-2.2599],[138.5185,-2.2477],[138.5115,-2.245],[138.5051,-2.2452],[138.4982,-2.2389],[138.4912,-2.239],[138.4906,-2.2356],[138.4828,-2.2305],[138.4702,-2.2303],[138.4689,-2.2277],[138.473,-2.221],[138.463,-2.2172],[138.4522,-2.217],[138.4499,-2.2148],[138.4402,-2.2132],[138.4462,-2.2095],[138.4441,-2.2042],[138.4399,-2.2102],[138.4339,-2.207],[138.4284,-2.1975],[138.4174,-2.2038],[138.4076,-2.1999],[138.4063,-2.192],[138.4029,-2.1902],[138.4034,-2.1848],[138.4019,-2.1799],[138.3978,-2.1797],[138.3966,-2.1836],[138.3986,-2.1903],[138.3923,-2.1901],[138.3911,-2.1855],[138.3845,-2.1839],[138.3836,-2.1779],[138.3796,-2.1772],[138.3803,-2.1832],[138.375,-2.1841],[138.3726,-2.1897],[138.3688,-2.1852],[138.3653,-2.1756],[138.3609,-2.1792],[138.3568,-2.1794],[138.3585,-2.1719],[138.353,-2.1709],[138.3523,-2.1769],[138.3475,-2.1766],[138.3484,-2.1702],[138.3422,-2.1662],[138.345,-2.164],[138.35,-2.1671],[138.3527,-2.1656],[138.3494,-2.1603],[138.3522,-2.1577],[138.3565,-2.164],[138.3588,-2.158],[138.3515,-2.1557],[138.345,-2.1553],[138.3437,-2.1458],[138.3458,-2.1435],[138.352,-2.1424],[138.3472,-2.1375],[138.3405,-2.1412],[138.3374,-2.14],[138.3326,-2.1331],[138.3357,-2.1307],[138.3398,-2.1347],[138.3439,-2.1326],[138.3334,-2.1259],[138.3275,-2.1265],[138.3262,-2.1176],[138.3132,-2.1204],[138.3125,-2.1165],[138.3203,-2.1118],[138.3257,-2.1124],[138.3256,-2.1087],[138.3177,-2.1055],[138.3144,-2.098],[138.3145,-2.0933],[138.3183,-2.0884],[138.313,-2.0865],[138.3083,-2.088],[138.3027,-2.0815],[138.2957,-2.0859],[138.2924,-2.0814],[138.2941,-2.0779],[138.3015,-2.076],[138.3066,-2.0772],[138.3107,-2.0688],[138.3054,-2.067],[138.3015,-2.0618],[138.2929,-2.0551],[138.2893,-2.0592],[138.2857,-2.0594],[138.2826,-2.0555],[138.2835,-2.0514],[138.2882,-2.0502],[138.2861,-2.0451],[138.2806,-2.0495],[138.2657,-2.0513],[138.263,-2.0495],[138.2627,-2.0429],[138.2598,-2.0419],[138.2555,-2.0448],[138.2534,-2.0413],[138.2598,-2.038],[138.2583,-2.0335],[138.2524,-2.0317],[138.2537,-2.0235],[138.2607,-2.0268],[138.2618,-2.0219],[138.2571,-2.0163],[138.2613,-2.0102],[138.2606,-2.0047],[138.2625,-2.0005],[138.2565,-1.9983],[138.2558,-1.9953],[138.2601,-1.9904],[138.2578,-1.9885],[138.253,-1.9901],[138.2542,-1.9972],[138.2509,-1.9991],[138.2421,-1.9914],[138.238,-1.9905],[138.2361,-1.9823],[138.2322,-1.9799],[138.2183,-1.9769],[138.2032,-1.9711],[138.1797,-1.9652],[138.1504,-1.9543],[138.137,-1.9401],[138.1353,-1.9258],[138.1353,-1.9074],[138.1286,-1.8881],[138.1311,-1.8537],[138.1444,-1.8268],[138.1442,-1.8157],[138.1508,-1.8127],[138.1477,-1.8083],[138.1512,-1.8046],[138.1581,-1.8084],[138.1604,-1.8015],[138.1592,-1.7935],[138.1561,-1.7893],[138.1593,-1.787],[138.1647,-1.7889],[138.1651,-1.7837],[138.1568,-1.7829],[138.1588,-1.7766],[138.1554,-1.7716],[138.158,-1.7657],[138.1646,-1.7633],[138.1681,-1.7575],[138.1696,-1.748],[138.1737,-1.7459],[138.1742,-1.7416],[138.1714,-1.739],[138.1699,-1.7319],[138.1657,-1.7311],[138.169,-1.7259],[138.1655,-1.7209],[138.1733,-1.7175],[138.1747,-1.7145],[138.1656,-1.7099],[138.1603,-1.7019],[138.162,-1.6969],[138.1616,-1.6904],[138.1701,-1.6898],[138.1646,-1.6857],[138.1671,-1.6811],[138.1724,-1.6834],[138.1749,-1.6738],[138.1698,-1.657],[138.1681,-1.6482],[138.1681,-1.6346],[138.1704,-1.6309]]}},{"type":"Feature","properties":{"mhid":"1332:512","alt_name":"KABUPATEN NDUGA","latitude":-4.45093,"longitude":138.10089,"sample_value":284},"geometry":{"type":"LineString","coordinates":[[138.5995,-4.1409],[138.5954,-4.1601],[138.5812,-4.1831],[138.5546,-4.192],[138.505,-4.1884],[138.4589,-4.1902],[138.4146,-4.1814],[138.3774,-4.1831],[138.3295,-4.192],[138.2941,-4.1884],[138.2374,-4.1548],[138.1612,-4.1371],[138.1249,-4.1341],[138.0699,-4.1341],[138.0045,-4.1367],[137.9338,-4.1445],[137.8945,-4.1472],[137.8657,-4.155],[137.8422,-4.1498],[137.816,-4.1315],[137.7924,-4.1341],[137.7584,-4.1419],[137.7401,-4.1445],[137.7008,-4.1603],[137.6784,-4.1723],[137.6754,-4.246],[137.6715,-4.345],[137.668,-4.4336],[137.6645,-4.4735],[137.6498,-4.4912],[137.6276,-4.5222],[137.6144,-4.5488],[137.5967,-4.5724],[137.5789,-4.5842],[137.5686,-4.6152],[137.5775,-4.6521],[137.6674,-4.64],[137.7509,-4.6276],[137.8699,-4.6063],[137.9126,-4.6063],[137.9662,-4.5984],[138.1116,-4.6282],[138.1372,-4.6307],[138.2587,-4.6589],[138.3412,-4.6781],[138.4577,-4.7013],[138.5832,-4.7262],[138.643,-4.7397],[138.718,-4.7409],[138.8249,-4.7283],[138.869,-4.7277],[138.8654,-4.6638],[138.8582,-4.6383],[138.8572,-4.6158],[138.8572,-4.5995],[138.8521,-4.5842],[138.8337,-4.5567],[138.8337,-4.5424],[138.8409,-4.5322],[138.846,-4.5209],[138.8465,-4.5133],[138.849,-4.4995],[138.849,-4.4862],[138.847,-4.4689],[138.847,-4.4536],[138.845,-4.4332],[138.845,-4.4046],[138.8391,-4.2666],[138.7092,-4.3285],[138.7147,-4.4422],[138.7166,-4.4574],[138.7202,-4.4716],[138.6234,-4.4855],[138.6166,-4.4674],[138.6007,-4.4367],[138.5927,-4.4016],[138.5939,-4.3789],[138.6086,-4.3517],[138.61,-4.3287],[138.6286,-4.2878],[138.6603,-4.2444],[138.7046,-4.1928],[138.7263,-4.1733],[138.6804,-4.149],[138.64,-4.1382],[138.5995,-4.1409]]}},{"type":"Feature","properties":{"mhid":"1332:518","alt_name":"KABUPATEN INTAN JAYA","latitude":-3.41016,"longitude":136.70837,"sample_value":53},"geometry":{"type":"LineString","coordinates":[[136.8816,-3.2414],[136.8741,-3.2422],[136.869,-3.2524],[136.8644,-3.251],[136.8599,-3.2546],[136.8524,-3.2564],[136.85,-3.2616],[136.8419,-3.2652],[136.8391,-3.2688],[136.8338,-3.27],[136.8297,-3.2811],[136.8206,-3.2814],[136.8121,-3.2772],[136.8011,-3.2657],[136.7868,-3.2666],[136.7817,-3.2731],[136.7819,-3.2765],[136.7756,-3.2779],[136.7714,-3.2732],[136.7686,-3.2754],[136.7462,-3.2823],[136.7376,-3.281],[136.7315,-3.2823],[136.7233,-3.28],[136.7201,-3.2745],[136.7138,-3.2693],[136.7067,-3.2684],[136.6975,-3.2636],[136.6908,-3.2683],[136.6849,-3.2661],[136.6816,-3.2621],[136.6701,-3.2581],[136.6643,-3.2589],[136.6465,-3.2579],[136.6444,-3.2561],[136.6431,-3.2487],[136.6322,-3.2406],[136.6255,-3.2372],[136.6191,-3.2362],[136.609,-3.2367],[136.6049,-3.239],[136.5975,-3.2464],[136.5885,-3.2472],[136.5845,-3.2459],[136.5811,-3.2483],[136.5688,-3.2507],[136.5649,-3.2494],[136.5619,-3.2406],[136.5546,-3.2381],[136.5463,-3.2304],[136.5372,-3.2269],[136.5315,-3.2305],[136.5237,-3.2305],[136.5147,-3.2326],[136.5094,-3.2326],[136.4984,-3.2281],[136.4869,-3.2268],[136.4834,-3.224],[136.482,-3.2181],[136.469,-3.2043],[136.4685,-3.197],[136.4655,-3.1939],[136.4559,-3.1893],[136.4507,-3.1776],[136.4454,-3.1776],[136.4491,-3.1717],[136.4435,-3.1634],[136.4412,-3.1571],[136.4416,-3.138],[136.4401,-3.1357],[136.4406,-3.1263],[136.4439,-3.1196],[136.4416,-3.1125],[136.4338,-3.1038],[136.4318,-3.0969],[136.4341,-3.0916],[136.4349,-3.0853],[136.4246,-3.0759],[136.4169,-3.0735],[136.4082,-3.0725],[136.4011,-3.0671],[136.3981,-3.0603],[136.3916,-3.0563],[136.3848,-3.0496],[136.3766,-3.047],[136.3713,-3.0468],[136.365,-3.0421],[136.36,-3.0338],[136.3541,-3.0303],[136.3545,-3.0258],[136.3513,-3.0206],[136.3463,-3.0184],[136.3459,-3.0125],[136.3485,-3.0087],[136.3412,-3.007],[136.341,-2.9952],[136.348,-2.9903],[136.3479,-2.9844],[136.3431,-2.9801],[136.3453,-2.9668],[136.3445,-2.9634],[136.3477,-2.9578],[136.3533,-2.9534],[136.3532,-2.9463],[136.3507,-2.9411],[136.345,-2.9398],[136.3415,-2.9419],[136.3361,-2.9396],[136.3342,-2.9366],[136.3344,-2.9302],[136.3316,-2.9257],[136.3258,-2.9204],[136.3226,-2.9145],[136.3174,-2.9106],[136.3128,-2.9142],[136.3081,-2.9094],[136.3002,-2.9122],[136.2967,-2.9162],[136.2972,-2.9205],[136.3034,-2.9189],[136.3059,-2.9298],[136.3198,-2.9362],[136.3133,-2.948],[136.308,-2.9492],[136.3048,-2.9541],[136.3003,-2.9696],[136.2975,-2.9724],[136.2994,-2.9815],[136.2975,-2.9851],[136.3032,-2.9906],[136.306,-2.9964],[136.311,-3.0011],[136.3065,-3.0037],[136.3128,-3.0114],[136.3182,-3.0128],[136.3226,-3.0189],[136.3238,-3.0319],[136.3291,-3.0344],[136.3266,-3.0412],[136.3288,-3.0472],[136.3251,-3.0532],[136.3338,-3.0515],[136.3351,-3.055],[136.3319,-3.0586],[136.3294,-3.0668],[136.3331,-3.0757],[136.3303,-3.0797],[136.3365,-3.088],[136.3354,-3.1],[136.3252,-3.115],[136.3197,-3.1259],[136.319,-3.1325],[136.3144,-3.1327],[136.3159,-3.1385],[136.3202,-3.1432],[136.3235,-3.1509],[136.3203,-3.1578],[136.3208,-3.1642],[136.3239,-3.1689],[136.3306,-3.1736],[136.3447,-3.1774],[136.356,-3.1865],[136.3576,-3.1941],[136.3562,-3.2008],[136.3643,-3.2071],[136.3746,-3.2247],[136.3791,-3.2356],[136.3771,-3.2446],[136.378,-3.2526],[136.3801,-3.2571],[136.3809,-3.2657],[136.3912,-3.2792],[136.3931,-3.287],[136.3939,-3.3003],[136.3911,-3.3078],[136.3944,-3.3132],[136.3931,-3.3392],[136.3916,-3.3444],[136.392,-3.3522],[136.3873,-3.3541],[136.3752,-3.3611],[136.3444,-3.3774],[136.3901,-3.4414],[136.4425,-3.5256],[136.5139,-3.6319],[136.5377,-3.6605],[136.6298,-3.7447],[136.706,-3.824],[136.7267,-3.8431],[136.7267,-3.905],[136.7988,-3.9057],[136.8997,-3.9066],[137.0285,-3.9066],[137.0998,-3.9066],[137.168,-3.9082],[137.189,-3.909],[137.1721,-3.8768],[137.1439,-3.8436],[137.1264,-3.8179],[137.1148,-3.7888],[137.1056,-3.7514],[137.109,-3.7206],[137.1272,-3.6733],[137.1347,-3.6417],[137.1444,-3.5976],[137.1055,-3.5862],[137.0795,-3.5911],[137.0503,-3.57],[137.0244,-3.5521],[137.026,-3.5164],[137.0244,-3.5018],[137.0033,-3.4921],[136.9838,-3.4856],[136.9789,-3.4499],[136.9789,-3.4174],[136.9562,-3.4126],[136.9529,-3.3996],[136.9513,-3.3639],[136.9497,-3.3363],[136.9286,-3.3184],[136.9156,-3.3087],[136.9026,-3.2827],[136.888,-3.2551],[136.8816,-3.2414]]}},{"type":"Feature","properties":{"mhid":"1332:519","alt_name":"KABUPATEN DEIYAI","latitude":-3.94737,"longitude":135.95032,"sample_value":521},"geometry":{"type":"LineString","coordinates":[[136.7307,-4.1265],[136.6938,-4.1078],[136.6887,-4.0861],[136.6862,-4.0555],[136.6785,-4.0414],[136.6607,-4.0351],[136.647,-4.0257],[136.6226,-4.0232],[136.5856,-4.0207],[136.5326,-4.0156],[136.4939,-4.0156],[136.4804,-4.0123],[136.4013,-4.0081],[136.3516,-4.0022],[136.307,-3.998],[136.2767,-3.9937],[136.2273,-3.9922],[136.2221,-3.9981],[136.2132,-4.0052],[136.2061,-4.0141],[136.1926,-4.0278],[136.1799,-4.0196],[136.1696,-4.0178],[136.1608,-4.0175],[136.1514,-4.0184],[136.122,-4.0317],[136.1029,-4.0513],[136.1008,-4.0589],[136.0941,-4.0654],[136.0906,-4.0879],[136.0876,-4.1383],[136.0905,-4.176],[136.0886,-4.1916],[136.0857,-4.2248],[136.0901,-4.2434],[136.0946,-4.2543],[136.1189,-4.2575],[136.123,-4.2566],[136.1323,-4.2496],[136.1398,-4.2424],[136.1494,-4.2387],[136.1561,-4.2377],[136.1744,-4.2388],[136.1861,-4.2429],[136.2063,-4.2585],[136.2169,-4.2634],[136.2294,-4.274],[136.2418,-4.2909],[136.2465,-4.2949],[136.2514,-4.2956],[136.2615,-4.2876],[136.2637,-4.2844],[136.2655,-4.2744],[136.2654,-4.262],[136.271,-4.2594],[136.2782,-4.2635],[136.294,-4.2643],[136.308,-4.2718],[136.3235,-4.2711],[136.3312,-4.2736],[136.3379,-4.2915],[136.3422,-4.2964],[136.3657,-4.2962],[136.3799,-4.2893],[136.385,-4.2957],[136.3922,-4.2997],[136.3969,-4.2996],[136.4062,-4.2961],[136.4098,-4.2969],[136.425,-4.2937],[136.4275,-4.299],[136.4255,-4.3019],[136.4264,-4.3083],[136.4254,-4.3159],[136.4276,-4.3192],[136.4437,-4.3137],[136.4462,-4.3089],[136.4498,-4.3096],[136.4595,-4.315],[136.4613,-4.3105],[136.4703,-4.3162],[136.4749,-4.3152],[136.4859,-4.3169],[136.4907,-4.3126],[136.4985,-4.314],[136.5058,-4.3131],[136.5087,-4.3102],[136.5151,-4.3106],[136.5178,-4.3065],[136.5221,-4.3099],[136.5308,-4.3039],[136.5302,-4.2993],[136.5367,-4.2948],[136.5359,-4.2918],[136.5302,-4.292],[136.5258,-4.2881],[136.5263,-4.2832],[136.524,-4.2775],[136.5242,-4.2717],[136.5182,-4.268],[136.5079,-4.2543],[136.5062,-4.2336],[136.5,-4.2246],[136.4897,-4.2172],[136.489,-4.2128],[136.5082,-4.2117],[136.5452,-4.2134],[136.5822,-4.2126],[136.6218,-4.2176],[136.6706,-4.2176],[136.703,-4.1894],[136.7147,-4.1673],[136.7263,-4.1464],[136.7307,-4.1265]]}},{"type":"Feature","properties":{"mhid":"1332:520","alt_name":"KOTA JAYAPURA","latitude":-2.64647,"longitude":140.77779,"sample_value":996},"geometry":{"type":"LineString","coordinates":[[141,-2.8289],[140.9999,-2.713],[141,-2.6043],[140.9909,-2.6047],[140.9724,-2.6077],[140.9616,-2.6067],[140.9578,-2.6102],[140.9512,-2.6126],[140.9352,-2.6152],[140.9266,-2.6107],[140.9218,-2.6157],[140.9225,-2.6219],[140.9152,-2.6235],[140.9084,-2.6202],[140.8871,-2.6152],[140.8718,-2.6141],[140.8518,-2.6113],[140.8147,-2.607],[140.8024,-2.6041],[140.7964,-2.5983],[140.7913,-2.596],[140.7859,-2.6018],[140.7832,-2.6014],[140.779,-2.6082],[140.7847,-2.6078],[140.7881,-2.6111],[140.7876,-2.6191],[140.784,-2.6236],[140.7744,-2.6283],[140.7615,-2.6284],[140.7542,-2.6266],[140.7366,-2.6188],[140.724,-2.6094],[140.7126,-2.597],[140.7114,-2.6027],[140.7196,-2.6062],[140.7241,-2.6128],[140.7279,-2.6137],[140.7328,-2.6188],[140.7375,-2.6274],[140.7348,-2.6326],[140.7267,-2.6337],[140.7197,-2.6291],[140.7133,-2.63],[140.7,-2.6258],[140.6973,-2.6221],[140.7007,-2.6187],[140.6912,-2.617],[140.687,-2.6145],[140.6906,-2.6052],[140.6944,-2.6011],[140.6897,-2.5949],[140.6936,-2.5906],[140.701,-2.5866],[140.6998,-2.5791],[140.7047,-2.579],[140.7038,-2.5862],[140.7069,-2.5908],[140.7132,-2.5899],[140.7091,-2.5775],[140.7094,-2.5712],[140.7164,-2.5637],[140.7201,-2.5565],[140.7178,-2.5533],[140.7183,-2.5474],[140.7134,-2.5442],[140.7077,-2.5439],[140.7067,-2.5387],[140.7116,-2.5391],[140.72,-2.5343],[140.7252,-2.535],[140.7251,-2.5287],[140.7279,-2.5237],[140.7325,-2.5249],[140.7385,-2.5311],[140.7376,-2.5346],[140.7425,-2.5367],[140.7472,-2.5339],[140.7417,-2.5276],[140.7422,-2.5221],[140.7382,-2.5134],[140.7332,-2.5095],[140.7324,-2.5062],[140.7267,-2.4982],[140.7205,-2.4957],[140.7102,-2.487],[140.704,-2.4836],[140.7001,-2.484],[140.694,-2.4782],[140.6877,-2.4803],[140.6834,-2.4781],[140.6775,-2.4816],[140.6733,-2.48],[140.6725,-2.476],[140.6627,-2.474],[140.656,-2.4771],[140.6528,-2.4762],[140.6426,-2.4947],[140.6379,-2.5066],[140.6353,-2.5103],[140.6249,-2.5316],[140.6233,-2.5565],[140.622,-2.5668],[140.6255,-2.5668],[140.6263,-2.5833],[140.6238,-2.5851],[140.6228,-2.5935],[140.6173,-2.5998],[140.6141,-2.6125],[140.6211,-2.6149],[140.6235,-2.6621],[140.6266,-2.7042],[140.6313,-2.7114],[140.6322,-2.7161],[140.6334,-2.7225],[140.664,-2.7256],[140.6895,-2.7205],[140.6989,-2.7143],[140.7073,-2.707],[140.717,-2.7061],[140.7299,-2.7072],[140.7433,-2.7135],[140.7584,-2.7189],[140.7759,-2.7219],[140.8245,-2.7342],[140.8809,-2.7669],[140.9379,-2.7907],[140.9653,-2.8064],[140.9849,-2.8185],[141,-2.8289]]}},{"type":"Feature","properties":{"mhid":"1332:514","alt_name":"KABUPATEN MAMBERAMO TENGAH","latitude":-2.46064,"longitude":138.45245,"sample_value":630},"geometry":{"type":"LineString","coordinates":[[139.4572,-3.4596],[139.45,-3.4616],[139.4364,-3.463],[139.426,-3.4463],[139.4085,-3.4437],[139.3897,-3.4435],[139.3741,-3.4345],[139.3661,-3.4362],[139.3615,-3.4491],[139.3801,-3.4638],[139.371,-3.4753],[139.3507,-3.4818],[139.3379,-3.4849],[139.3323,-3.4744],[139.3335,-3.4652],[139.3375,-3.4557],[139.3284,-3.446],[139.3179,-3.451],[139.312,-3.463],[139.3068,-3.4708],[139.2938,-3.4699],[139.2793,-3.4676],[139.2709,-3.4397],[139.2614,-3.4478],[139.2554,-3.4547],[139.2503,-3.4451],[139.2509,-3.4338],[139.258,-3.4278],[139.2716,-3.4277],[139.2729,-3.4206],[139.2658,-3.4164],[139.251,-3.4168],[139.2411,-3.4244],[139.2321,-3.4329],[139.2134,-3.4399],[139.2036,-3.4469],[139.1946,-3.4478],[139.1876,-3.4266],[139.1818,-3.4233],[139.1675,-3.4311],[139.1572,-3.4299],[139.1462,-3.4268],[139.1382,-3.4192],[139.1404,-3.4093],[139.1472,-3.4004],[139.1483,-3.3898],[139.1455,-3.3779],[139.1479,-3.3691],[139.1404,-3.3617],[139.1276,-3.3554],[139.1214,-3.3639],[139.1269,-3.3699],[139.1252,-3.3838],[139.1121,-3.3885],[139.1062,-3.3799],[139.1072,-3.3719],[139.1044,-3.355],[139.1046,-3.3382],[139.1001,-3.3287],[139.0891,-3.3341],[139.0762,-3.336],[139.0648,-3.3634],[139.048,-3.3929],[139.0053,-3.3817],[138.9899,-3.3901],[138.9661,-3.3999],[138.9304,-3.4195],[138.9163,-3.4209],[138.8841,-3.4293],[138.8549,-3.4179],[138.8221,-3.3798],[138.7925,-3.3471],[138.7802,-3.3673],[138.7832,-3.3843],[138.7863,-3.4059],[138.7663,-3.4522],[138.757,-3.5047],[138.7555,-3.5634],[138.757,-3.6097],[138.7593,-3.6424],[138.7501,-3.6466],[138.7401,-3.6558],[138.696,-3.7032],[138.6594,-3.708],[138.6522,-3.7225],[138.6371,-3.7233],[138.6094,-3.7226],[138.6078,-3.7264],[138.6079,-3.7526],[138.6096,-3.7746],[138.6113,-3.7843],[138.6241,-3.7812],[138.6422,-3.781],[138.6797,-3.7856],[138.7136,-3.7877],[138.7377,-3.7971],[138.7571,-3.8106],[138.7843,-3.8232],[138.8049,-3.7596],[138.8236,-3.7662],[138.8456,-3.7759],[138.8603,-3.7841],[138.8713,-3.7865],[138.8905,-3.7949],[138.9068,-3.7976],[138.9017,-3.8035],[138.8981,-3.8228],[138.8999,-3.8427],[138.8945,-3.8596],[138.906,-3.8767],[138.919,-3.8998],[138.9426,-3.9035],[138.9639,-3.9119],[138.9778,-3.9225],[139.0479,-3.8971],[139.0384,-3.8671],[139.034,-3.8418],[139.0348,-3.8158],[139.0413,-3.7912],[139.044,-3.7784],[139.0527,-3.7843],[139.0639,-3.7849],[139.0763,-3.7803],[139.0921,-3.7728],[139.0999,-3.7672],[139.1077,-3.7682],[139.121,-3.756],[139.1337,-3.7489],[139.1421,-3.747],[139.1496,-3.7439],[139.1629,-3.7424],[139.1862,-3.743],[139.199,-3.7464],[139.2046,-3.7508],[139.2142,-3.7536],[139.2272,-3.7598],[139.2444,-3.761],[139.2609,-3.7587],[139.2665,-3.7532],[139.2761,-3.7476],[139.2793,-3.7371],[139.2766,-3.7201],[139.2761,-3.7077],[139.2793,-3.6962],[139.283,-3.6902],[139.2766,-3.6697],[139.2862,-3.6694],[139.3027,-3.6734],[139.3089,-3.6778],[139.3297,-3.6852],[139.3316,-3.6694],[139.3356,-3.6563],[139.3456,-3.6495],[139.3496,-3.6452],[139.3639,-3.6352],[139.3915,-3.6063],[139.4064,-3.5743],[139.4151,-3.5647],[139.4238,-3.5467],[139.4304,-3.5281],[139.4434,-3.5007],[139.4543,-3.4746],[139.4572,-3.4596]]}},{"type":"Feature","properties":{"mhid":"1332:515","alt_name":"KABUPATEN YALIMO","latitude":-3.86037,"longitude":138.47305,"sample_value":332},"geometry":{"type":"LineString","coordinates":[[139.8939,-3.6205],[139.8892,-3.6201],[139.8873,-3.6143],[139.8823,-3.6061],[139.8801,-3.6049],[139.8728,-3.5954],[139.8697,-3.5893],[139.8623,-3.5831],[139.8553,-3.583],[139.8448,-3.5888],[139.8359,-3.5848],[139.8304,-3.5783],[139.8225,-3.5758],[139.8149,-3.5785],[139.809,-3.5845],[139.8015,-3.5844],[139.8003,-3.5803],[139.8057,-3.5754],[139.8073,-3.5674],[139.804,-3.5645],[139.7847,-3.5666],[139.7718,-3.562],[139.7657,-3.5582],[139.7602,-3.5605],[139.7523,-3.5673],[139.7537,-3.5566],[139.7504,-3.5537],[139.7389,-3.5505],[139.7455,-3.5457],[139.742,-3.5401],[139.7316,-3.5453],[139.7259,-3.5393],[139.7231,-3.525],[139.7177,-3.5206],[139.713,-3.5223],[139.7089,-3.5283],[139.7071,-3.5358],[139.7032,-3.5411],[139.6979,-3.5404],[139.6876,-3.5289],[139.6825,-3.5267],[139.6761,-3.5291],[139.6747,-3.5353],[139.6819,-3.5494],[139.6738,-3.5542],[139.6665,-3.5471],[139.6657,-3.5353],[139.6605,-3.5276],[139.6527,-3.5287],[139.6448,-3.5369],[139.6391,-3.5479],[139.6317,-3.5538],[139.6252,-3.5549],[139.6167,-3.5514],[139.6107,-3.545],[139.5958,-3.5501],[139.5906,-3.5457],[139.5866,-3.5386],[139.5855,-3.5325],[139.5883,-3.5271],[139.594,-3.5235],[139.6019,-3.5215],[139.6089,-3.518],[139.6132,-3.514],[139.6151,-3.5084],[139.612,-3.5019],[139.6085,-3.498],[139.602,-3.4964],[139.5968,-3.4974],[139.5836,-3.5043],[139.5775,-3.51],[139.5648,-3.5266],[139.5612,-3.5326],[139.5511,-3.5369],[139.5448,-3.537],[139.5365,-3.5333],[139.5301,-3.5276],[139.5164,-3.5236],[139.5059,-3.5189],[139.5026,-3.5117],[139.5058,-3.4972],[139.503,-3.4912],[139.4954,-3.4875],[139.4869,-3.4911],[139.4826,-3.497],[139.4813,-3.5016],[139.4841,-3.5102],[139.4841,-3.5149],[139.477,-3.5196],[139.4726,-3.517],[139.4705,-3.5076],[139.4669,-3.4984],[139.4691,-3.4913],[139.474,-3.4878],[139.4816,-3.4857],[139.4871,-3.4795],[139.4857,-3.4717],[139.4782,-3.4597],[139.4732,-3.4567],[139.4613,-3.4584],[139.4572,-3.4596],[139.4543,-3.4746],[139.4434,-3.5007],[139.4304,-3.5281],[139.4238,-3.5467],[139.4151,-3.5647],[139.4064,-3.5743],[139.3915,-3.6063],[139.3639,-3.6352],[139.3496,-3.6452],[139.3456,-3.6495],[139.3356,-3.6563],[139.3316,-3.6694],[139.3297,-3.6852],[139.3089,-3.6778],[139.3027,-3.6734],[139.2862,-3.6694],[139.2766,-3.6697],[139.283,-3.6902],[139.2793,-3.6962],[139.2761,-3.7077],[139.2766,-3.7201],[139.2793,-3.7371],[139.2761,-3.7476],[139.2665,-3.7532],[139.2609,-3.7587],[139.2444,-3.761],[139.2272,-3.7598],[139.2142,-3.7536],[139.2046,-3.7508],[139.199,-3.7464],[139.1862,-3.743],[139.1629,-3.7424],[139.1496,-3.7439],[139.1421,-3.747],[139.1337,-3.7489],[139.121,-3.756],[139.1077,-3.7682],[139.0999,-3.7672],[139.0921,-3.7728],[139.0763,-3.7803],[139.0639,-3.7849],[139.0527,-3.7843],[139.044,-3.7784],[139.0413,-3.7912],[139.0348,-3.8158],[139.034,-3.8418],[139.0384,-3.8671],[139.0479,-3.8971],[138.9778,-3.9225],[138.9801,-3.9406],[138.9917,-3.967],[139.0049,-3.9944],[139.0215,-4.0334],[139.0252,-4.0434],[139.1471,-4.0184],[139.2052,-4.0098],[139.2473,-4.0124],[139.2908,-4.048],[139.3053,-4.0585],[139.3278,-4.0731],[139.3489,-4.0889],[139.3624,-4.1139],[139.3842,-4.1099],[139.484,-4.0855],[139.4942,-4.0803],[139.5337,-4.0687],[139.5655,-4.063],[139.6319,-4.037],[139.6847,-4],[139.7285,-3.9206],[139.7839,-3.8204],[139.8395,-3.7196],[139.8932,-3.6224],[139.8939,-3.6205]]}},{"type":"Feature","properties":{"mhid":"1332:516","alt_name":"KABUPATEN PUNCAK","latitude":-4.14204,"longitude":137.09702,"sample_value":255},"geometry":{"type":"LineString","coordinates":[[137.6177,-3.1121],[137.5953,-3.0886],[137.5815,-3.0656],[137.5766,-3.0673],[137.5688,-3.0642],[137.5628,-3.0539],[137.5581,-3.0515],[137.5434,-3.0527],[137.5394,-3.0517],[137.5312,-3.0539],[137.5248,-3.0585],[137.5124,-3.0574],[137.5068,-3.0531],[137.5016,-3.0511],[137.4951,-3.0548],[137.4923,-3.046],[137.4874,-3.0505],[137.4833,-3.0442],[137.479,-3.0451],[137.4729,-3.0502],[137.4681,-3.0452],[137.4656,-3.0506],[137.4623,-3.0521],[137.4539,-3.048],[137.4484,-3.0396],[137.4448,-3.0415],[137.4388,-3.0322],[137.4394,-3.0252],[137.4339,-3.021],[137.4319,-3.0158],[137.4262,-3.0168],[137.4208,-3.0129],[137.4307,-3.0093],[137.4317,-3.0064],[137.4247,-3.0051],[137.4222,-3.0076],[137.4164,-2.9895],[137.4079,-2.9885],[137.3954,-2.983],[137.3903,-2.9791],[137.3891,-2.9741],[137.3861,-2.9712],[137.3857,-2.9649],[137.3804,-2.9658],[137.3637,-2.9699],[137.3237,-2.9883],[137.2935,-3.0034],[137.2611,-3.0152],[137.2493,-3.0313],[137.2277,-3.0465],[137.2095,-3.0573],[137.1517,-3.0777],[137.1625,-3.0816],[137.1741,-3.0895],[137.1871,-3.1064],[137.1823,-3.1139],[137.1819,-3.1218],[137.1755,-3.1262],[137.1653,-3.1256],[137.1607,-3.1332],[137.1509,-3.1312],[137.1425,-3.1347],[137.1343,-3.1352],[137.1279,-3.1322],[137.1271,-3.1227],[137.1157,-3.1301],[137.1053,-3.1404],[137.1073,-3.1469],[137.1071,-3.154],[137.1029,-3.1573],[137.0975,-3.1556],[137.0921,-3.157],[137.0917,-3.1635],[137.0885,-3.1715],[137.0717,-3.1795],[137.0637,-3.1755],[137.0519,-3.1764],[137.0499,-3.1686],[137.0431,-3.1698],[137.0441,-3.1792],[137.0419,-3.1827],[137.0325,-3.1852],[137.0225,-3.1822],[137.0129,-3.1831],[137.0093,-3.1884],[137.0051,-3.1894],[137.0045,-3.1833],[137.0093,-3.1783],[137.0055,-3.1748],[137.0021,-3.1769],[136.9997,-3.1839],[136.9945,-3.1822],[136.9927,-3.174],[136.9873,-3.1756],[136.9825,-3.1818],[136.9783,-3.1914],[136.9755,-3.1861],[136.9707,-3.1864],[136.9669,-3.1978],[136.9625,-3.1966],[136.9591,-3.1891],[136.9531,-3.1892],[136.9479,-3.1953],[136.9389,-3.1869],[136.9347,-3.1875],[136.9277,-3.1916],[136.9251,-3.1861],[136.9095,-3.1921],[136.9079,-3.2032],[136.9017,-3.2033],[136.9015,-3.1928],[136.8974,-3.1939],[136.8986,-3.1997],[136.8967,-3.2048],[136.8975,-3.2128],[136.9001,-3.2154],[136.8983,-3.2192],[136.8934,-3.2231],[136.8892,-3.2229],[136.8899,-3.2296],[136.883,-3.2345],[136.8816,-3.2414],[136.888,-3.2551],[136.9026,-3.2827],[136.9156,-3.3087],[136.9286,-3.3184],[136.9497,-3.3363],[136.9513,-3.3639],[136.9529,-3.3996],[136.9562,-3.4126],[136.9789,-3.4174],[136.9789,-3.4499],[136.9838,-3.4856],[137.0033,-3.4921],[137.0244,-3.5018],[137.026,-3.5164],[137.0244,-3.5521],[137.0503,-3.57],[137.0795,-3.5911],[137.1055,-3.5862],[137.1444,-3.5976],[137.1347,-3.6417],[137.1272,-3.6733],[137.109,-3.7206],[137.1056,-3.7514],[137.1148,-3.7888],[137.1264,-3.8179],[137.1439,-3.8436],[137.1721,-3.8768],[137.189,-3.909],[137.1904,-3.9117],[137.1995,-3.9383],[137.2012,-3.9643],[137.204,-4.0237],[137.2914,-4.032],[137.3205,-4.161],[137.4502,-4.1651],[137.4867,-4.1634],[137.5936,-4.1684],[137.6784,-4.1723],[137.6959,-4.119],[137.7047,-4.0852],[137.715,-4.0573],[137.7356,-4.0352],[137.7576,-4.0131],[137.7841,-3.9955],[137.8135,-3.9793],[137.84,-3.9749],[137.8709,-3.9764],[137.8988,-3.969],[137.9194,-3.9661],[137.9371,-3.9617],[137.9488,-3.944],[137.9488,-3.8852],[137.952,-3.8668],[137.9393,-3.8584],[137.913,-3.8294],[137.899,-3.7993],[137.8914,-3.7713],[137.8904,-3.7401],[137.8914,-3.7045],[137.8871,-3.6852],[137.864,-3.696],[137.8431,-3.7021],[137.8327,-3.6983],[137.8179,-3.6945],[137.7999,-3.6841],[137.7871,-3.6736],[137.7852,-3.6665],[137.779,-3.6561],[137.7776,-3.6494],[137.7689,-3.6362],[137.7665,-3.6296],[137.7545,-3.617],[137.7455,-3.6104],[137.7272,-3.6067],[137.7225,-3.6023],[137.6773,-3.6034],[137.6536,-3.6023],[137.6156,-3.5767],[137.5715,-3.5283],[137.5231,-3.501],[137.4958,-3.4863],[137.4748,-3.4547],[137.4705,-3.4232],[137.4579,-3.3917],[137.4411,-3.3559],[137.4117,-3.3265],[137.3852,-3.3071],[137.4136,-3.2757],[137.4358,-3.2535],[137.4734,-3.2262],[137.5024,-3.1988],[137.5349,-3.1783],[137.581,-3.1476],[137.6016,-3.1305],[137.6177,-3.1121]]}},{"type":"Feature","properties":{"mhid":"1332:517","alt_name":"KABUPATEN DOGIYAI","latitude":-4.03186,"longitude":135.43945,"sample_value":312},"geometry":{"type":"LineString","coordinates":[[136.2273,-3.9922],[136.2273,-3.9519],[136.2045,-3.935],[136.1906,-3.9291],[136.1619,-3.8792],[136.1495,-3.855],[136.1326,-3.8263],[136.1194,-3.808],[136.1091,-3.7882],[136.104,-3.7749],[136.0922,-3.7515],[136.0819,-3.7353],[136.0695,-3.7272],[136.0565,-3.7227],[136.0444,-3.7247],[136.0284,-3.7304],[136.0209,-3.735],[136.0072,-3.7533],[136.0009,-3.7625],[135.9923,-3.7677],[135.9848,-3.7699],[135.9665,-3.7665],[135.9538,-3.7694],[135.9487,-3.7751],[135.9412,-3.7768],[135.92,-3.778],[135.9091,-3.7797],[135.904,-3.7837],[135.8954,-3.7854],[135.885,-3.7831],[135.885,-3.794],[135.8816,-3.8164],[135.8719,-3.8301],[135.8644,-3.8319],[135.8661,-3.8405],[135.861,-3.841],[135.8478,-3.8387],[135.8386,-3.8382],[135.8277,-3.8399],[135.818,-3.8393],[135.8134,-3.8422],[135.8076,-3.8433],[135.7996,-3.8508],[135.7939,-3.8531],[135.7904,-3.8588],[135.7807,-3.86],[135.7629,-3.8605],[135.7543,-3.8628],[135.7469,-3.86],[135.736,-3.8651],[135.7234,-3.8646],[135.7165,-3.8686],[135.7079,-3.8668],[135.6991,-3.8685],[135.692,-3.8656],[135.6834,-3.8699],[135.6626,-3.885],[135.6475,-3.8907],[135.631,-3.8979],[135.6224,-3.9036],[135.6002,-3.9072],[135.5988,-3.9165],[135.5902,-3.9258],[135.5794,-3.9344],[135.5594,-3.9351],[135.5479,-3.9323],[135.5393,-3.9222],[135.5243,-3.9079],[135.5114,-3.9],[135.5035,-3.8929],[135.4877,-3.8821],[135.4619,-3.8671],[135.4476,-3.8656],[135.439,-3.8678],[135.4275,-3.8649],[135.4067,-3.862],[135.3988,-3.8671],[135.3773,-3.8663],[135.3264,-3.8527],[135.282,-3.8398],[135.2029,-3.8199],[135.1771,-3.8515],[135.1388,-3.9055],[135.1141,-3.9417],[135.0866,-3.9842],[135.0668,-4.016],[135.0473,-4.0453],[135.0507,-4.0689],[135.056,-4.0971],[135.0607,-4.1259],[135.0631,-4.1445],[135.0659,-4.1491],[135.114,-4.1504],[135.1645,-4.1526],[135.1893,-4.1526],[135.2407,-4.1547],[135.2906,-4.1563],[135.2985,-4.156],[135.2985,-4.1602],[135.3138,-4.1655],[135.3196,-4.1688],[135.3257,-4.1702],[135.3355,-4.1779],[135.3455,-4.1755],[135.3564,-4.1692],[135.3628,-4.1588],[135.3665,-4.1576],[135.3762,-4.1593],[135.3982,-4.1608],[135.4224,-4.1765],[135.4277,-4.1818],[135.4413,-4.1925],[135.4513,-4.1917],[135.4682,-4.195],[135.4959,-4.2015],[135.5082,-4.2018],[135.5345,-4.2041],[135.5436,-4.2058],[135.5676,-4.2082],[135.5865,-4.2079],[135.5963,-4.2064],[135.6019,-4.2092],[135.6112,-4.2164],[135.6178,-4.2189],[135.6406,-4.2175],[135.6488,-4.2161],[135.657,-4.2122],[135.6712,-4.203],[135.6754,-4.1939],[135.6823,-4.1907],[135.6918,-4.1914],[135.7019,-4.2005],[135.7105,-4.2044],[135.7248,-4.2078],[135.7392,-4.2102],[135.746,-4.2135],[135.7521,-4.2142],[135.7751,-4.2081],[135.7825,-4.2076],[135.7861,-4.2089],[135.7957,-4.2209],[135.7993,-4.2229],[135.8135,-4.2256],[135.833,-4.2277],[135.8381,-4.2268],[135.8605,-4.2288],[135.8774,-4.2284],[135.8889,-4.2269],[135.902,-4.2308],[135.9067,-4.2312],[135.9174,-4.2278],[135.9321,-4.2268],[135.9493,-4.2266],[135.9572,-4.2279],[135.9632,-4.2312],[135.9689,-4.2392],[135.9821,-4.2545],[135.9867,-4.256],[135.9898,-4.2524],[135.994,-4.2545],[135.9995,-4.2541],[136.0065,-4.257],[136.0097,-4.2614],[136.0139,-4.2594],[136.0228,-4.2602],[136.0321,-4.263],[136.0363,-4.259],[136.0533,-4.2604],[136.0527,-4.2651],[136.0635,-4.2726],[136.0692,-4.2717],[136.0747,-4.2624],[136.0817,-4.2628],[136.0946,-4.2543],[136.0901,-4.2434],[136.0857,-4.2248],[136.0886,-4.1916],[136.0905,-4.176],[136.0876,-4.1383],[136.0906,-4.0879],[136.0941,-4.0654],[136.1008,-4.0589],[136.1029,-4.0513],[136.122,-4.0317],[136.1514,-4.0184],[136.1608,-4.0175],[136.1696,-4.0178],[136.1799,-4.0196],[136.1926,-4.0278],[136.2061,-4.0141],[136.2132,-4.0052],[136.2221,-3.9981],[136.2273,-3.9922]]}},{"type":"Feature","properties":{"mhid":"7414","alt_name":"KABUPATEN BUTON TENGAH","latitude":-5.31667,"longitude":122.33333,"sample_value":875},"geometry":{"type":"LineString","coordinates":[[122.0493,-5.4899],[122.0464,-5.4908],[122.0355,-5.501],[122.0281,-5.5046],[122.021,-5.5059],[122.0163,-5.5084],[122.012,-5.5144],[122.0053,-5.5166],[122,-5.52],[122.0034,-5.5227],[122.0157,-5.5193],[122.0292,-5.5189],[122.0385,-5.5107],[122.0473,-5.506],[122.0566,-5.4993],[122.0614,-5.4933],[122.0493,-5.4899]]}},{"type":"Feature","properties":{"mhid":"7414","alt_name":"KABUPATEN BUTON TENGAH","latitude":-5.31667,"longitude":122.33333,"sample_value":875},"geometry":{"type":"LineString","coordinates":[[122.0838,-5.4733],[122.0744,-5.4732],[122.0734,-5.4759],[122.0776,-5.487],[122.0816,-5.4924],[122.0867,-5.4933],[122.092,-5.4865],[122.0874,-5.4745],[122.0838,-5.4733]]}},{"type":"Feature","properties":{"mhid":"7414","alt_name":"KABUPATEN BUTON TENGAH","latitude":-5.31667,"longitude":122.33333,"sample_value":875},"geometry":{"type":"LineString","coordinates":[[121.9531,-5.4125],[121.9423,-5.4123],[121.9393,-5.419],[121.9401,-5.4255],[121.9327,-5.4289],[121.9404,-5.4377],[121.9466,-5.455],[121.9442,-5.4606],[121.9472,-5.4737],[121.945,-5.4785],[121.9466,-5.4839],[121.9517,-5.4869],[121.9536,-5.4821],[121.9636,-5.4768],[121.9659,-5.478],[121.9725,-5.4758],[121.9774,-5.4764],[121.9893,-5.473],[121.9951,-5.473],[121.9955,-5.4686],[121.9994,-5.4663],[122.0024,-5.4688],[122.0101,-5.4673],[122.0111,-5.4722],[122.0151,-5.4756],[122.0212,-5.4737],[122.0305,-5.4746],[122.0339,-5.4729],[122.0392,-5.4663],[122.0472,-5.46],[122.0449,-5.4489],[122.043,-5.4346],[122.0458,-5.4288],[122.0433,-5.4248],[122.0458,-5.4221],[122.044,-5.4147],[122.0487,-5.4139],[121.9531,-5.4125]]}},{"type":"Feature","properties":{"mhid":"7414","alt_name":"KABUPATEN BUTON TENGAH","latitude":-5.31667,"longitude":122.33333,"sample_value":875},"geometry":{"type":"LineString","coordinates":[[122.487,-5.225],[122.4771,-5.2262],[122.4633,-5.2325],[122.4495,-5.2347],[122.4187,-5.2167],[122.4074,-5.2098],[122.4075,-5.1916],[122.3773,-5.1915],[122.3748,-5.1845],[122.3677,-5.1795],[122.3617,-5.1782],[122.3633,-5.1735],[122.3579,-5.1688],[122.3575,-5.1631],[122.3514,-5.1522],[122.3447,-5.1505],[122.342,-5.1456],[122.3375,-5.1482],[122.3246,-5.146],[122.3211,-5.1468],[122.3191,-5.1428],[122.3116,-5.144],[122.3072,-5.151],[122.3106,-5.1526],[122.3124,-5.1598],[122.3103,-5.1656],[122.3153,-5.1712],[122.3156,-5.1874],[122.309,-5.195],[122.3039,-5.1969],[122.3064,-5.2072],[122.3061,-5.2163],[122.3153,-5.2277],[122.3158,-5.2383],[122.3071,-5.2549],[122.3065,-5.2573],[122.2921,-5.2793],[122.2825,-5.2899],[122.276,-5.2954],[122.2697,-5.31],[122.2662,-5.3267],[122.2661,-5.3554],[122.2697,-5.3637],[122.2667,-5.3736],[122.2683,-5.3827],[122.2733,-5.3889],[122.2794,-5.3937],[122.2845,-5.395],[122.291,-5.3943],[122.2975,-5.3962],[122.3171,-5.396],[122.3247,-5.3967],[122.3358,-5.3956],[122.3428,-5.3935],[122.361,-5.3907],[122.3651,-5.3889],[122.3714,-5.3822],[122.3759,-5.3799],[122.3817,-5.3678],[122.3823,-5.3608],[122.3733,-5.3503],[122.3703,-5.3408],[122.3729,-5.3317],[122.3779,-5.3238],[122.385,-5.3207],[122.3908,-5.3209],[122.3968,-5.3133],[122.4044,-5.3165],[122.4298,-5.3135],[122.4441,-5.3135],[122.443,-5.3164],[122.4237,-5.3203],[122.4198,-5.3222],[122.4092,-5.3233],[122.3901,-5.3273],[122.3854,-5.3276],[122.3828,-5.3334],[122.3837,-5.34],[122.3897,-5.3497],[122.393,-5.3611],[122.3949,-5.3723],[122.3979,-5.377],[122.398,-5.3846],[122.4045,-5.3953],[122.4087,-5.3997],[122.4157,-5.4025],[122.427,-5.401],[122.4307,-5.403],[122.4358,-5.4011],[122.4457,-5.4064],[122.4507,-5.4032],[122.463,-5.4032],[122.4699,-5.3982],[122.4685,-5.3942],[122.4722,-5.3903],[122.4737,-5.3858],[122.4711,-5.3726],[122.467,-5.3658],[122.4702,-5.3609],[122.4732,-5.366],[122.478,-5.3662],[122.4827,-5.3737],[122.4864,-5.3664],[122.486,-5.3628],[122.4931,-5.3502],[122.4977,-5.3469],[122.4954,-5.3438],[122.4964,-5.3346],[122.4885,-5.3248],[122.4845,-5.3228],[122.4803,-5.3163],[122.4787,-5.3076],[122.4797,-5.2998],[122.4903,-5.2942],[122.5047,-5.2886],[122.5111,-5.2877],[122.5115,-5.2841],[122.5243,-5.2765],[122.5233,-5.2737],[122.5275,-5.268],[122.536,-5.261],[122.5412,-5.2631],[122.5414,-5.2674],[122.53,-5.279],[122.5311,-5.2823],[122.5241,-5.2945],[122.5249,-5.3009],[122.5216,-5.3099],[122.5217,-5.3149],[122.5321,-5.3202],[122.5387,-5.325],[122.5398,-5.3323],[122.536,-5.3409],[122.5309,-5.3646],[122.5277,-5.3704],[122.5245,-5.385],[122.5248,-5.3962],[122.5221,-5.4008],[122.5146,-5.4027],[122.5126,-5.4065],[122.5205,-5.4209],[122.5187,-5.4277],[122.5211,-5.4382],[122.5275,-5.4401],[122.5333,-5.4393],[122.5443,-5.4411],[122.5519,-5.4346],[122.556,-5.4251],[122.5659,-5.4112],[122.5707,-5.4122],[122.5836,-5.4248],[122.59,-5.4338],[122.5953,-5.4341],[122.5996,-5.4281],[122.5943,-5.422],[122.5937,-5.4156],[122.597,-5.4159],[122.6031,-5.407],[122.6022,-5.4024],[122.5976,-5.3991],[122.5929,-5.3889],[122.5927,-5.3714],[122.5947,-5.3643],[122.5995,-5.357],[122.6104,-5.3517],[122.6167,-5.3456],[122.6194,-5.3476],[122.6169,-5.3639],[122.6172,-5.3705],[122.6205,-5.3714],[122.6323,-5.3596],[122.6387,-5.3571],[122.641,-5.3535],[122.6413,-5.3395],[122.643,-5.3359],[122.6437,-5.3247],[122.6419,-5.3089],[122.6461,-5.2952],[122.6447,-5.2777],[122.6392,-5.2637],[122.6339,-5.2585],[122.6221,-5.25],[122.6031,-5.25],[122.5987,-5.2519],[122.581,-5.2557],[122.577,-5.2477],[122.5858,-5.24],[122.5925,-5.2303],[122.6026,-5.2237],[122.5682,-5.2279],[122.5614,-5.2278],[122.5509,-5.2102],[122.5401,-5.2041],[122.5377,-5.2064],[122.5306,-5.1977],[122.5273,-5.1955],[122.5231,-5.1974],[122.5159,-5.1968],[122.5156,-5.2011],[122.5102,-5.2099],[122.5133,-5.2161],[122.5045,-5.225],[122.487,-5.225]]}},{"type":"Feature","properties":{"mhid":"7415","alt_name":"KABUPATEN BUTON SELATAN","latitude":-5.56667,"longitude":122.7,"sample_value":259},"geometry":{"type":"LineString","coordinates":[[122.6897,-6.1795],[122.6864,-6.1785],[122.6739,-6.1821],[122.6708,-6.187],[122.6785,-6.1942],[122.6819,-6.2026],[122.6951,-6.2112],[122.7014,-6.2101],[122.7117,-6.213],[122.7203,-6.2114],[122.7201,-6.2082],[122.716,-6.2053],[122.6964,-6.198],[122.6927,-6.1941],[122.6901,-6.1874],[122.6897,-6.1795]]}},{"type":"Feature","properties":{"mhid":"7415","alt_name":"KABUPATEN BUTON SELATAN","latitude":-5.56667,"longitude":122.7,"sample_value":259},"geometry":{"type":"LineString","coordinates":[[122.5105,-5.6249],[122.5075,-5.6249],[122.5031,-5.6313],[122.5065,-5.6416],[122.5052,-5.6479],[122.5023,-5.6508],[122.497,-5.651],[122.4909,-5.6603],[122.4897,-5.6667],[122.4849,-5.6689],[122.4808,-5.6735],[122.4767,-5.6736],[122.4686,-5.681],[122.4633,-5.6802],[122.4562,-5.6871],[122.4572,-5.6933],[122.4645,-5.6929],[122.4735,-5.6902],[122.4829,-5.6937],[122.4884,-5.6983],[122.4951,-5.6996],[122.5126,-5.6968],[122.5188,-5.6943],[122.5266,-5.6952],[122.5331,-5.6944],[122.5435,-5.6868],[122.5471,-5.6822],[122.5536,-5.6709],[122.5557,-5.6614],[122.5559,-5.6503],[122.5512,-5.6402],[122.5467,-5.6343],[122.5441,-5.6279],[122.5343,-5.631],[122.5214,-5.629],[122.5166,-5.6252],[122.5105,-5.6249]]}},{"type":"Feature","properties":{"mhid":"7415","alt_name":"KABUPATEN BUTON SELATAN","latitude":-5.56667,"longitude":122.7,"sample_value":259},"geometry":{"type":"LineString","coordinates":[[122.5126,-5.5896],[122.501,-5.5965],[122.506,-5.5997],[122.512,-5.5971],[122.514,-5.5944],[122.5126,-5.5896]]}},{"type":"Feature","properties":{"mhid":"7415","alt_name":"KABUPATEN BUTON SELATAN","latitude":-5.56667,"longitude":122.7,"sample_value":259},"geometry":{"type":"LineString","coordinates":[[122.5246,-5.5013],[122.5209,-5.5002],[122.5173,-5.5026],[122.5102,-5.504],[122.5018,-5.5081],[122.4888,-5.5119],[122.4826,-5.5151],[122.4784,-5.5215],[122.4759,-5.5291],[122.4712,-5.5315],[122.4701,-5.5396],[122.4731,-5.5482],[122.4813,-5.5542],[122.4853,-5.5603],[122.4884,-5.5623],[122.5,-5.5634],[122.5041,-5.5628],[122.5078,-5.5588],[122.5082,-5.5504],[122.5111,-5.5409],[122.5091,-5.5363],[122.511,-5.5325],[122.5108,-5.5254],[122.5166,-5.5202],[122.5208,-5.5068],[122.5246,-5.5013]]}},{"type":"Feature","properties":{"mhid":"7415","alt_name":"KABUPATEN BUTON SELATAN","latitude":-5.56667,"longitude":122.7,"sample_value":259},"geometry":{"type":"LineString","coordinates":[[122.6184,-5.5099],[122.6159,-5.5111],[122.6084,-5.5228],[122.6031,-5.5265],[122.589,-5.5312],[122.5812,-5.5359],[122.5742,-5.5381],[122.5778,-5.547],[122.5794,-5.5692],[122.5821,-5.5751],[122.5862,-5.5788],[122.5919,-5.5911],[122.5946,-5.6022],[122.604,-5.622],[122.6103,-5.629],[122.6138,-5.636],[122.6125,-5.6406],[122.6143,-5.6447],[122.6142,-5.6511],[122.6106,-5.6532],[122.6113,-5.6573],[122.6198,-5.6664],[122.6253,-5.6752],[122.625,-5.6795],[122.6277,-5.6847],[122.6365,-5.6948],[122.6432,-5.6983],[122.6489,-5.6987],[122.6611,-5.6944],[122.6665,-5.6901],[122.6729,-5.6821],[122.6771,-5.6738],[122.6811,-5.6685],[122.6837,-5.6618],[122.7,-5.6328],[122.7061,-5.6285],[122.7086,-5.6212],[122.7125,-5.6192],[122.7199,-5.6208],[122.7227,-5.6281],[122.7209,-5.6369],[122.7147,-5.6512],[122.7117,-5.6616],[122.71,-5.6739],[122.7107,-5.6776],[122.7175,-5.6841],[122.7213,-5.6857],[122.7259,-5.691],[122.7288,-5.6876],[122.7261,-5.6804],[122.7271,-5.6736],[122.7328,-5.6709],[122.7345,-5.6648],[122.7395,-5.6588],[122.7402,-5.6523],[122.7453,-5.6396],[122.7522,-5.639],[122.7589,-5.6438],[122.7572,-5.6555],[122.7648,-5.6609],[122.7658,-5.6668],[122.7614,-5.6725],[122.7596,-5.6822],[122.7537,-5.6906],[122.7541,-5.6944],[122.7661,-5.7004],[122.7753,-5.7024],[122.7849,-5.7015],[122.7995,-5.6971],[122.8027,-5.6947],[122.8061,-5.6884],[122.8062,-5.6833],[122.8102,-5.6716],[122.8154,-5.6639],[122.821,-5.6533],[122.8178,-5.6456],[122.7995,-5.6279],[122.7941,-5.616],[122.7914,-5.6041],[122.7883,-5.5805],[122.7892,-5.5429],[122.79,-5.5289],[122.7884,-5.5215],[122.7829,-5.5208],[122.7764,-5.5144],[122.7777,-5.5024],[122.7803,-5.4961],[122.7772,-5.4916],[122.7394,-5.4901],[122.735,-5.4935],[122.7233,-5.4968],[122.706,-5.4952],[122.6719,-5.496],[122.6694,-5.4965],[122.6616,-5.5088],[122.6589,-5.5066],[122.6416,-5.5125],[122.6354,-5.5136],[122.6309,-5.5093],[122.6184,-5.5099]]}},{"type":"Feature","properties":{"mhid":"7412","alt_name":"KABUPATEN KONAWE KEPULAUAN","latitude":-4.11656,"longitude":123.10181,"sample_value":241},"geometry":{"type":"LineString","coordinates":[[123.0134,-3.9781],[123.0093,-3.9878],[123.0011,-3.9975],[122.9976,-4.0041],[122.9993,-4.0058],[122.9971,-4.0157],[122.9805,-4.0332],[122.9787,-4.0392],[122.9758,-4.0423],[122.9748,-4.0497],[122.9719,-4.0568],[122.9659,-4.0591],[122.9603,-4.0584],[122.9463,-4.0544],[122.9486,-4.0604],[122.946,-4.0682],[122.9372,-4.0694],[122.9417,-4.0765],[122.9427,-4.0815],[122.9463,-4.0822],[122.9471,-4.0888],[122.9393,-4.0949],[122.9416,-4.1041],[122.9438,-4.1068],[122.9487,-4.123],[122.954,-4.1279],[122.9558,-4.1383],[122.9579,-4.1423],[122.963,-4.1442],[122.9669,-4.1523],[122.9737,-4.1561],[122.9767,-4.1603],[122.9753,-4.1641],[122.9822,-4.168],[122.9845,-4.1726],[122.9866,-4.1842],[122.9919,-4.1934],[122.9902,-4.1993],[122.996,-4.2028],[123.0047,-4.2018],[123.0128,-4.2061],[123.0223,-4.2147],[123.027,-4.2218],[123.0294,-4.2221],[123.0396,-4.229],[123.045,-4.2306],[123.0484,-4.2356],[123.0563,-4.2382],[123.0617,-4.2441],[123.0745,-4.2489],[123.0856,-4.2506],[123.093,-4.2503],[123.099,-4.2521],[123.1036,-4.2568],[123.1098,-4.2595],[123.1176,-4.2608],[123.1239,-4.2599],[123.1299,-4.2557],[123.1355,-4.2558],[123.1436,-4.2468],[123.1463,-4.246],[123.1521,-4.2394],[123.1548,-4.2324],[123.1557,-4.2255],[123.1585,-4.2196],[123.1665,-4.2063],[123.176,-4.2001],[123.1826,-4.1996],[123.1864,-4.1938],[123.1856,-4.1858],[123.1904,-4.1828],[123.1952,-4.1859],[123.2068,-4.1715],[123.2071,-4.1639],[123.2125,-4.1536],[123.2205,-4.154],[123.221,-4.1471],[123.2316,-4.1441],[123.2367,-4.1392],[123.239,-4.1344],[123.2443,-4.1289],[123.2513,-4.1146],[123.2532,-4.1086],[123.2504,-4.1017],[123.2551,-4.093],[123.2588,-4.0923],[123.2571,-4.0833],[123.2581,-4.0816],[123.254,-4.0655],[123.2502,-4.0598],[123.2418,-4.0554],[123.2407,-4.0517],[123.2336,-4.043],[123.2271,-4.0404],[123.2251,-4.0286],[123.2205,-4.0236],[123.2118,-4.0189],[123.1999,-4.0169],[123.1856,-4.0097],[123.1812,-4.0104],[123.1653,-4.0078],[123.1566,-4.011],[123.1493,-4.0122],[123.1404,-4.0085],[123.1325,-4.0119],[123.1266,-4.0187],[123.1205,-4.0201],[123.1049,-4.0202],[123.0963,-4.0237],[123.0884,-4.0224],[123.0814,-4.0193],[123.0704,-4.0082],[123.0551,-4.0013],[123.0514,-3.9974],[123.0478,-3.9977],[123.0358,-3.9882],[123.0299,-3.9822],[123.0134,-3.9781]]}},{"type":"Feature","properties":{"mhid":"7413","alt_name":"KABUPATEN MUNA BARAT","latitude":-4.83333,"longitude":122.48333,"sample_value":858},"geometry":{"type":"LineString","coordinates":[[122.3347,-4.9136],[122.3311,-4.9145],[122.327,-4.9226],[122.3267,-4.9311],[122.3342,-4.9329],[122.3394,-4.9295],[122.3423,-4.9227],[122.3402,-4.9147],[122.3347,-4.9136]]}},{"type":"Feature","properties":{"mhid":"7413","alt_name":"KABUPATEN MUNA BARAT","latitude":-4.83333,"longitude":122.48333,"sample_value":858},"geometry":{"type":"LineString","coordinates":[[122.2642,-4.8748],[122.2723,-4.8705],[122.2694,-4.8669],[122.2635,-4.8688],[122.2642,-4.8748]]}},{"type":"Feature","properties":{"mhid":"7413","alt_name":"KABUPATEN MUNA BARAT","latitude":-4.83333,"longitude":122.48333,"sample_value":858},"geometry":{"type":"LineString","coordinates":[[122.3585,-4.7304],[122.3491,-4.7296],[122.3484,-4.7364],[122.3524,-4.7398],[122.3585,-4.7304]]}},{"type":"Feature","properties":{"mhid":"7413","alt_name":"KABUPATEN MUNA BARAT","latitude":-4.83333,"longitude":122.48333,"sample_value":858},"geometry":{"type":"LineString","coordinates":[[122.3027,-4.7163],[122.3104,-4.7066],[122.3162,-4.6973],[122.3179,-4.6913],[122.3159,-4.6877],[122.308,-4.6853],[122.2966,-4.694],[122.2938,-4.6988],[122.2927,-4.7071],[122.2962,-4.7133],[122.3027,-4.7163]]}},{"type":"Feature","properties":{"mhid":"7413","alt_name":"KABUPATEN MUNA BARAT","latitude":-4.83333,"longitude":122.48333,"sample_value":858},"geometry":{"type":"LineString","coordinates":[[122.3284,-4.6945],[122.3344,-4.6891],[122.3331,-4.6835],[122.3281,-4.6878],[122.3284,-4.6945]]}},{"type":"Feature","properties":{"mhid":"7413","alt_name":"KABUPATEN MUNA BARAT","latitude":-4.83333,"longitude":122.48333,"sample_value":858},"geometry":{"type":"LineString","coordinates":[[122.3477,-4.7128],[122.3508,-4.7061],[122.3644,-4.6965],[122.3678,-4.6896],[122.3794,-4.6743],[122.3809,-4.6683],[122.3773,-4.6644],[122.37,-4.6647],[122.3646,-4.6683],[122.3474,-4.6849],[122.3309,-4.7075],[122.324,-4.7227],[122.3298,-4.7254],[122.3394,-4.7172],[122.3477,-4.7128]]}},{"type":"Feature","properties":{"mhid":"7413","alt_name":"KABUPATEN MUNA BARAT","latitude":-4.83333,"longitude":122.48333,"sample_value":858},"geometry":{"type":"LineString","coordinates":[[122.2986,-4.6675],[122.3034,-4.6596],[122.3034,-4.6512],[122.299,-4.6541],[122.2972,-4.6588],[122.2966,-4.667],[122.2986,-4.6675]]}},{"type":"Feature","properties":{"mhid":"7413","alt_name":"KABUPATEN MUNA BARAT","latitude":-4.83333,"longitude":122.48333,"sample_value":858},"geometry":{"type":"LineString","coordinates":[[122.3557,-4.636],[122.3468,-4.6371],[122.3458,-4.6451],[122.3405,-4.6554],[122.3415,-4.6635],[122.3449,-4.6652],[122.3515,-4.6633],[122.3569,-4.6597],[122.3608,-4.6542],[122.3632,-4.6468],[122.3635,-4.641],[122.3614,-4.6377],[122.3557,-4.636]]}},{"type":"Feature","properties":{"mhid":"7413","alt_name":"KABUPATEN MUNA BARAT","latitude":-4.83333,"longitude":122.48333,"sample_value":858},"geometry":{"type":"LineString","coordinates":[[122.6268,-4.642],[122.6154,-4.6393],[122.6141,-4.6431],[122.6072,-4.6431],[122.5991,-4.6404],[122.5937,-4.6429],[122.5964,-4.6506],[122.5963,-4.6548],[122.5901,-4.6619],[122.5845,-4.6701],[122.5739,-4.6763],[122.5661,-4.6786],[122.5594,-4.6901],[122.5555,-4.6937],[122.5443,-4.6965],[122.5416,-4.7012],[122.5373,-4.7044],[122.5209,-4.7123],[122.5058,-4.7162],[122.5001,-4.7216],[122.4866,-4.7261],[122.477,-4.7248],[122.4747,-4.73],[122.477,-4.7384],[122.4672,-4.7401],[122.4597,-4.7443],[122.4503,-4.7415],[122.4434,-4.7431],[122.4302,-4.7383],[122.4147,-4.7436],[122.4095,-4.7499],[122.4002,-4.7456],[122.3922,-4.7478],[122.3814,-4.7458],[122.3738,-4.7406],[122.3724,-4.745],[122.3663,-4.7544],[122.3623,-4.7576],[122.3606,-4.7642],[122.3573,-4.7659],[122.3543,-4.7789],[122.3476,-4.7895],[122.342,-4.7951],[122.3421,-4.799],[122.3326,-4.8146],[122.3188,-4.8308],[122.3181,-4.8355],[122.3252,-4.8514],[122.3252,-4.8546],[122.3326,-4.8645],[122.338,-4.8759],[122.3388,-4.881],[122.3379,-4.8904],[122.3439,-4.8998],[122.3455,-4.9097],[122.3504,-4.9194],[122.3496,-4.924],[122.3534,-4.9281],[122.3599,-4.9302],[122.3591,-4.9254],[122.3639,-4.922],[122.3668,-4.9148],[122.3748,-4.916],[122.3804,-4.9074],[122.3949,-4.9103],[122.3999,-4.9121],[122.4039,-4.9086],[122.4136,-4.9087],[122.4237,-4.9043],[122.4356,-4.9044],[122.4471,-4.9087],[122.4517,-4.9084],[122.4566,-4.9123],[122.4609,-4.9114],[122.4616,-4.9185],[122.5015,-4.9368],[122.5202,-4.9462],[122.5245,-4.9434],[122.5334,-4.9455],[122.5372,-4.9482],[122.5391,-4.9538],[122.5463,-4.9569],[122.5491,-4.954],[122.554,-4.9595],[122.5762,-4.9646],[122.5782,-4.9676],[122.5851,-4.9686],[122.5916,-4.9722],[122.5923,-4.9646],[122.6008,-4.9503],[122.6091,-4.94],[122.6181,-4.9319],[122.6214,-4.9257],[122.6245,-4.9167],[122.6453,-4.887],[122.6304,-4.8782],[122.621,-4.8703],[122.6186,-4.8634],[122.6147,-4.8618],[122.6065,-4.8496],[122.5977,-4.8474],[122.5954,-4.8392],[122.588,-4.8344],[122.5798,-4.8332],[122.5756,-4.8288],[122.5727,-4.8222],[122.5711,-4.8134],[122.5645,-4.8069],[122.5629,-4.7935],[122.5633,-4.7872],[122.5702,-4.7814],[122.5758,-4.7788],[122.5785,-4.7725],[122.5876,-4.7668],[122.5909,-4.7633],[122.5955,-4.7647],[122.5995,-4.7606],[122.6109,-4.7608],[122.6131,-4.7539],[122.6092,-4.7519],[122.6088,-4.7467],[122.6173,-4.7472],[122.6216,-4.7444],[122.6265,-4.7449],[122.6322,-4.748],[122.6297,-4.7386],[122.631,-4.7325],[122.6338,-4.7309],[122.6349,-4.7244],[122.6392,-4.7164],[122.6442,-4.7123],[122.6401,-4.7073],[122.6429,-4.7043],[122.6369,-4.6956],[122.6431,-4.6899],[122.6405,-4.6861],[122.6403,-4.6787],[122.6373,-4.6795],[122.6315,-4.6733],[122.6324,-4.6703],[122.6285,-4.6586],[122.6324,-4.6503],[122.6283,-4.647],[122.6268,-4.642]]}},{"type":"Feature","properties":{"mhid":"7413","alt_name":"KABUPATEN MUNA BARAT","latitude":-4.83333,"longitude":122.48333,"sample_value":858},"geometry":{"type":"LineString","coordinates":[[122.337,-4.6352],[122.3388,-4.6307],[122.3433,-4.6273],[122.3491,-4.6263],[122.3512,-4.6217],[122.3454,-4.6206],[122.3384,-4.6293],[122.3145,-4.6477],[122.3136,-4.6623],[122.3217,-4.6611],[122.3251,-4.655],[122.3276,-4.655],[122.3319,-4.6429],[122.3348,-4.6415],[122.3332,-4.6354],[122.337,-4.6352]]}},{"type":"Feature","properties":{"mhid":"7413","alt_name":"KABUPATEN MUNA BARAT","latitude":-4.83333,"longitude":122.48333,"sample_value":858},"geometry":{"type":"LineString","coordinates":[[122.331,-4.6101],[122.3141,-4.61],[122.3111,-4.6146],[122.3109,-4.6218],[122.3164,-4.6267],[122.3241,-4.6245],[122.331,-4.6101]]}},{"type":"Feature","properties":{"mhid":"7413","alt_name":"KABUPATEN MUNA BARAT","latitude":-4.83333,"longitude":122.48333,"sample_value":858},"geometry":{"type":"LineString","coordinates":[[122.3321,-4.5774],[122.3284,-4.5757],[122.3212,-4.5813],[122.3292,-4.5841],[122.3321,-4.5774]]}},{"type":"Feature","properties":{"mhid":"1332:2","alt_name":"KABUPATEN ACEH SINGKIL","latitude":2.41667,"longitude":97.91667,"sample_value":618},"geometry":{"type":"LineString","coordinates":[[97.3863,1.9868],[97.3808,1.9814],[97.3838,1.9772],[97.3884,1.9827],[97.3863,1.9868]]}},{"type":"Feature","properties":{"mhid":"1332:2","alt_name":"KABUPATEN ACEH SINGKIL","latitude":2.41667,"longitude":97.91667,"sample_value":618},"geometry":{"type":"LineString","coordinates":[[97.3887,2.0435],[97.3863,2.0383],[97.3905,2.0363],[97.3929,2.0407],[97.3887,2.0435]]}},{"type":"Feature","properties":{"mhid":"1332:2","alt_name":"KABUPATEN ACEH SINGKIL","latitude":2.41667,"longitude":97.91667,"sample_value":618},"geometry":{"type":"LineString","coordinates":[[97.3494,2.0666],[97.3419,2.0654],[97.3394,2.0599],[97.3415,2.053],[97.3388,2.0466],[97.3311,2.0441],[97.3282,2.0406],[97.3318,2.0368],[97.3397,2.0343],[97.3458,2.0399],[97.3455,2.0608],[97.3494,2.0666]]}},{"type":"Feature","properties":{"mhid":"1332:2","alt_name":"KABUPATEN ACEH SINGKIL","latitude":2.41667,"longitude":97.91667,"sample_value":618},"geometry":{"type":"LineString","coordinates":[[97.3554,2.0638],[97.3583,2.0651],[97.3585,2.0703],[97.3534,2.0761],[97.3507,2.0732],[97.3521,2.0666],[97.3554,2.0638]]}},{"type":"Feature","properties":{"mhid":"1332:2","alt_name":"KABUPATEN ACEH SINGKIL","latitude":2.41667,"longitude":97.91667,"sample_value":618},"geometry":{"type":"LineString","coordinates":[[98.1798,2.0988],[98.1738,2.096],[98.1796,2.0916],[98.1815,2.096],[98.1798,2.0988]]}},{"type":"Feature","properties":{"mhid":"1332:2","alt_name":"KABUPATEN ACEH SINGKIL","latitude":2.41667,"longitude":97.91667,"sample_value":618},"geometry":{"type":"LineString","coordinates":[[97.1131,2.1142],[97.1046,2.1115],[97.0981,2.1132],[97.0941,2.1087],[97.0941,2.1011],[97.0988,2.0929],[97.0952,2.0883],[97.0875,2.0901],[97.0806,2.0888],[97.0784,2.0863],[97.0793,2.0813],[97.0776,2.0761],[97.0822,2.0675],[97.08,2.0634],[97.0857,2.0611],[97.0909,2.0553],[97.0919,2.0483],[97.0964,2.0429],[97.098,2.0331],[97.1088,2.0194],[97.1125,2.017],[97.1146,2.0045],[97.123,2.0061],[97.1268,2.0081],[97.1283,2.0132],[97.1211,2.0263],[97.1189,2.0379],[97.1251,2.0456],[97.1298,2.0493],[97.1349,2.0458],[97.1398,2.0471],[97.1453,2.0516],[97.1523,2.0545],[97.153,2.063],[97.156,2.0669],[97.1615,2.0696],[97.1598,2.0755],[97.1543,2.0794],[97.1533,2.0871],[97.1474,2.0946],[97.1423,2.0969],[97.136,2.1031],[97.1326,2.1037],[97.1294,2.1083],[97.1213,2.1121],[97.1131,2.1142]]}},{"type":"Feature","properties":{"mhid":"1332:2","alt_name":"KABUPATEN ACEH SINGKIL","latitude":2.41667,"longitude":97.91667,"sample_value":618},"geometry":{"type":"LineString","coordinates":[[97.4425,2.1842],[97.4407,2.19],[97.4339,2.1833],[97.4294,2.1808],[97.432,2.1683],[97.431,2.1643],[97.4405,2.1588],[97.4387,2.1673],[97.4395,2.1747],[97.4379,2.18],[97.4425,2.1842]]}},{"type":"Feature","properties":{"mhid":"1332:2","alt_name":"KABUPATEN ACEH SINGKIL","latitude":2.41667,"longitude":97.91667,"sample_value":618},"geometry":{"type":"LineString","coordinates":[[97.3144,2.1939],[97.3064,2.1922],[97.3058,2.1876],[97.3079,2.1831],[97.3136,2.1821],[97.3115,2.1895],[97.3144,2.1939]]}},{"type":"Feature","properties":{"mhid":"1332:2","alt_name":"KABUPATEN ACEH SINGKIL","latitude":2.41667,"longitude":97.91667,"sample_value":618},"geometry":{"type":"LineString","coordinates":[[97.3176,2.2074],[97.3168,2.203],[97.3187,2.1983],[97.3224,2.1984],[97.3244,2.2022],[97.3176,2.2074]]}},{"type":"Feature","properties":{"mhid":"1332:2","alt_name":"KABUPATEN ACEH SINGKIL","latitude":2.41667,"longitude":97.91667,"sample_value":618},"geometry":{"type":"LineString","coordinates":[[97.1691,2.2358],[97.1652,2.2344],[97.1626,2.2304],[97.1612,2.2236],[97.1529,2.2257],[97.1451,2.2221],[97.1356,2.2254],[97.1249,2.2267],[97.12,2.2252],[97.1175,2.2201],[97.1132,2.2157],[97.1166,2.2081],[97.127,2.1986],[97.1392,2.2028],[97.1499,2.2006],[97.1531,2.1989],[97.1625,2.1905],[97.1701,2.188],[97.1741,2.1786],[97.1775,2.1803],[97.1812,2.1779],[97.1888,2.1808],[97.1945,2.1844],[97.2001,2.1843],[97.2108,2.1805],[97.2153,2.1752],[97.2151,2.1676],[97.2181,2.1584],[97.2241,2.1573],[97.2323,2.1685],[97.2356,2.1658],[97.2312,2.155],[97.2311,2.1495],[97.2335,2.1477],[97.2414,2.1479],[97.246,2.1427],[97.2523,2.144],[97.2553,2.1395],[97.262,2.134],[97.2622,2.1243],[97.2599,2.12],[97.2641,2.1126],[97.2665,2.1061],[97.2726,2.1067],[97.2814,2.1015],[97.2868,2.0971],[97.2913,2.0912],[97.296,2.0821],[97.3046,2.0753],[97.3044,2.0687],[97.3062,2.0631],[97.3106,2.0653],[97.3115,2.0588],[97.3293,2.055],[97.3296,2.0609],[97.333,2.0615],[97.3377,2.0585],[97.3419,2.0686],[97.3405,2.0721],[97.347,2.075],[97.3474,2.0798],[97.3426,2.0878],[97.3472,2.0882],[97.3478,2.0837],[97.3537,2.0816],[97.3573,2.0862],[97.3571,2.0904],[97.353,2.0937],[97.3587,2.0981],[97.3559,2.1036],[97.3504,2.1086],[97.3487,2.1143],[97.3389,2.1123],[97.3342,2.1178],[97.3392,2.1256],[97.3452,2.1253],[97.3437,2.1307],[97.3384,2.1353],[97.344,2.1371],[97.3414,2.1487],[97.3381,2.1519],[97.332,2.1536],[97.3323,2.1638],[97.3237,2.1617],[97.3188,2.1646],[97.329,2.1677],[97.3293,2.1746],[97.3193,2.1776],[97.3142,2.1781],[97.3108,2.1754],[97.3041,2.1826],[97.3031,2.1892],[97.2926,2.2008],[97.2924,2.205],[97.2974,2.2044],[97.3004,2.2072],[97.3021,2.2175],[97.2998,2.2283],[97.2943,2.2298],[97.2882,2.2255],[97.277,2.2246],[97.274,2.2264],[97.2724,2.2315],[97.2682,2.2329],[97.2604,2.2328],[97.2562,2.236],[97.2436,2.2327],[97.2362,2.235],[97.2291,2.2296],[97.2258,2.2207],[97.2304,2.2185],[97.2304,2.2144],[97.2258,2.2079],[97.2196,2.2039],[97.2141,2.2092],[97.2108,2.2051],[97.2044,2.2114],[97.2008,2.2117],[97.1956,2.2047],[97.1928,2.2038],[97.1924,2.2114],[97.1896,2.2151],[97.1905,2.2216],[97.1893,2.2258],[97.1835,2.2222],[97.1803,2.2251],[97.1799,2.2327],[97.1691,2.2358]]}},{"type":"Feature","properties":{"mhid":"1332:2","alt_name":"KABUPATEN ACEH SINGKIL","latitude":2.41667,"longitude":97.91667,"sample_value":618},"geometry":{"type":"LineString","coordinates":[[97.224,2.235],[97.2203,2.2401],[97.2139,2.2393],[97.2206,2.2243],[97.2235,2.2234],[97.2259,2.2284],[97.224,2.235]]}},{"type":"Feature","properties":{"mhid":"1332:2","alt_name":"KABUPATEN ACEH SINGKIL","latitude":2.41667,"longitude":97.91667,"sample_value":618},"geometry":{"type":"LineString","coordinates":[[97.2457,2.2642],[97.2452,2.2559],[97.2502,2.2572],[97.2457,2.2642]]}},{"type":"Feature","properties":{"mhid":"1332:2","alt_name":"KABUPATEN ACEH SINGKIL","latitude":2.41667,"longitude":97.91667,"sample_value":618},"geometry":{"type":"LineString","coordinates":[[97.2635,2.2856],[97.2654,2.278],[97.2684,2.2781],[97.2734,2.2741],[97.2791,2.2727],[97.282,2.2772],[97.2715,2.2839],[97.2635,2.2856]]}},{"type":"Feature","properties":{"mhid":"1332:2","alt_name":"KABUPATEN ACEH SINGKIL","latitude":2.41667,"longitude":97.91667,"sample_value":618},"geometry":{"type":"LineString","coordinates":[[97.2482,2.2932],[97.247,2.2902],[97.25,2.2841],[97.2552,2.2782],[97.2591,2.2805],[97.2575,2.2857],[97.2482,2.2932]]}},{"type":"Feature","properties":{"mhid":"1332:2","alt_name":"KABUPATEN ACEH SINGKIL","latitude":2.41667,"longitude":97.91667,"sample_value":618},"geometry":{"type":"LineString","coordinates":[[97.2481,2.3057],[97.2428,2.3052],[97.2423,2.301],[97.2468,2.2991],[97.2481,2.3057]]}},{"type":"Feature","properties":{"mhid":"1332:2","alt_name":"KABUPATEN ACEH SINGKIL","latitude":2.41667,"longitude":97.91667,"sample_value":618},"geometry":{"type":"LineString","coordinates":[[97.3109,2.3103],[97.3079,2.3073],[97.3066,2.2985],[97.3115,2.2929],[97.3157,2.2945],[97.3146,2.2992],[97.3155,2.3073],[97.3109,2.3103]]}},{"type":"Feature","properties":{"mhid":"1332:2","alt_name":"KABUPATEN ACEH SINGKIL","latitude":2.41667,"longitude":97.91667,"sample_value":618},"geometry":{"type":"LineString","coordinates":[[97.4048,2.3134],[97.4024,2.3095],[97.4064,2.3032],[97.4085,2.2952],[97.4124,2.2956],[97.4048,2.3134]]}},{"type":"Feature","properties":{"mhid":"1332:2","alt_name":"KABUPATEN ACEH SINGKIL","latitude":2.41667,"longitude":97.91667,"sample_value":618},"geometry":{"type":"LineString","coordinates":[[97.2276,2.3237],[97.2188,2.32],[97.2235,2.3175],[97.2284,2.3195],[97.2276,2.3237]]}},{"type":"Feature","properties":{"mhid":"1332:2","alt_name":"KABUPATEN ACEH SINGKIL","latitude":2.41667,"longitude":97.91667,"sample_value":618},"geometry":{"type":"LineString","coordinates":[[97.3814,2.3624],[97.3781,2.3598],[97.3802,2.339],[97.3841,2.3338],[97.3895,2.335],[97.3861,2.3422],[97.39,2.345],[97.3969,2.3389],[97.406,2.3281],[97.4106,2.315],[97.4166,2.3062],[97.4209,2.3073],[97.4188,2.3176],[97.4127,2.336],[97.4091,2.3428],[97.4015,2.3483],[97.3922,2.3583],[97.3814,2.3624]]}},{"type":"Feature","properties":{"mhid":"1332:2","alt_name":"KABUPATEN ACEH SINGKIL","latitude":2.41667,"longitude":97.91667,"sample_value":618},"geometry":{"type":"LineString","coordinates":[[98.0159,2.5819],[98.0041,2.5826],[97.9945,2.5817],[97.9683,2.5759],[97.9592,2.5731],[97.9375,2.5712],[97.9138,2.5696],[97.9077,2.5674],[97.9055,2.5629],[97.899,2.5644],[97.8552,2.5643],[97.8552,2.5275],[97.8651,2.5275],[97.8651,2.4986],[97.8407,2.4998],[97.7911,2.5001],[97.7884,2.4953],[97.7708,2.4719],[97.75,2.4425],[97.742,2.4343],[97.733,2.4236],[97.725,2.4176],[97.71,2.4091],[97.6868,2.4027],[97.6655,2.3951],[97.6691,2.3905],[97.6854,2.374],[97.6934,2.3667],[97.7053,2.3533],[97.7165,2.3378],[97.7207,2.3301],[97.7359,2.3136],[97.7381,2.3097],[97.7395,2.3012],[97.7419,2.2979],[97.7551,2.2744],[97.7603,2.2674],[97.7676,2.261],[97.7719,2.255],[97.7759,2.2451],[97.7818,2.2399],[97.7832,2.2358],[97.7873,2.2346],[97.7941,2.2419],[97.796,2.2457],[97.7936,2.2537],[97.795,2.2658],[97.7999,2.2719],[97.8063,2.2698],[97.8301,2.266],[97.835,2.264],[97.8414,2.259],[97.8521,2.2551],[97.8646,2.2489],[97.8608,2.2553],[97.8573,2.254],[97.8569,2.2604],[97.8632,2.268],[97.8686,2.2717],[97.887,2.2763],[97.894,2.2798],[97.8986,2.2787],[97.8927,2.2729],[97.8928,2.2672],[97.8904,2.2645],[97.8882,2.2561],[97.8796,2.2518],[97.8757,2.2485],[97.8694,2.25],[97.8694,2.2458],[97.8816,2.2435],[97.8888,2.2464],[97.8968,2.2525],[97.8996,2.2595],[97.9036,2.2645],[97.9135,2.2718],[97.9261,2.2728],[97.9355,2.2703],[97.9484,2.271],[97.9543,2.2691],[97.9733,2.2612],[97.983,2.2562],[98.006,2.2415],[98.0138,2.2371],[98.028,2.2314],[98.0519,2.2185],[98.0638,2.2137],[98.105,2.1906],[98.114,2.184],[98.1247,2.1731],[98.1316,2.1648],[98.1788,2.2399],[98.1749,2.2507],[98.1783,2.2535],[98.1818,2.2597],[98.1884,2.2962],[98.1975,2.3114],[98.1842,2.3306],[98.163,2.3825],[98.1525,2.4109],[98.1475,2.4233],[98.1368,2.4309],[98.1089,2.4661],[98.1043,2.4746],[98.1009,2.4885],[98.0893,2.4959],[98.0833,2.5104],[98.0814,2.5219],[98.0815,2.5342],[98.0827,2.5417],[98.0817,2.5494],[98.0827,2.5565],[98.0776,2.5625],[98.0789,2.5662],[98.0771,2.5747],[98.046,2.5782],[98.0193,2.582],[98.0159,2.5819]]}}]} \ No newline at end of file diff --git a/sigap-website/public/geojson/garis_pantai.geojson b/sigap-website/public/geojson/garis_pantai.geojson new file mode 100644 index 0000000..578ce99 --- /dev/null +++ b/sigap-website/public/geojson/garis_pantai.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","name":"test","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"features":[{"type":"Feature","properties":{"mhid":"1332:1","alt_name":"KABUPATEN SIMEULUE","latitude":2.61667,"longitude":96.08333,"sample_value":479},"geometry":{"type":"MultiLineString","coordinates":[[[96.6651,2.1202],[96.6484,2.123],[96.64,2.1189],[96.6278,2.121],[96.6219,2.1183],[96.6146,2.1128],[96.6105,2.1037],[96.6107,2.0955],[96.6158,2.0938],[96.6123,2.0885],[96.6119,2.0826],[96.6153,2.0746],[96.6228,2.0663],[96.6357,2.0583],[96.6398,2.0592],[96.6441,2.056],[96.6484,2.0563],[96.6597,2.067],[96.6631,2.0663],[96.6693,2.0721],[96.6756,2.0728],[96.6869,2.0857],[96.687,2.091],[96.6813,2.0974],[96.6808,2.1021],[96.6768,2.1117],[96.6651,2.1202]],[[96.6482,2.1694],[96.6434,2.1732],[96.6424,2.1771],[96.6346,2.1864],[96.6251,2.1879],[96.6123,2.1847],[96.6083,2.182],[96.6096,2.1748],[96.6175,2.1683],[96.6246,2.1584],[96.6332,2.1509],[96.6433,2.1486],[96.6516,2.1493],[96.6579,2.1558],[96.662,2.1666],[96.6574,2.1691],[96.6482,2.1694]],[[96.1991,2.3586],[96.1944,2.359],[96.1913,2.3514],[96.1971,2.3483],[96.2059,2.355],[96.205,2.3583],[96.1991,2.3586]],[[96.259,2.3597],[96.2618,2.3623],[96.258,2.3663],[96.2555,2.3741],[96.2501,2.3665],[96.2386,2.3606],[96.2306,2.3595],[96.2256,2.3609],[96.2207,2.3566],[96.2254,2.3503],[96.2353,2.3445],[96.249,2.3455],[96.255,2.3493],[96.2571,2.3582],[96.259,2.3597]],[[96.4939,2.4359],[96.4893,2.4377],[96.4868,2.428],[96.4819,2.4275],[96.4974,2.4164],[96.5049,2.4169],[96.5097,2.4151],[96.5154,2.4213],[96.517,2.4259],[96.507,2.4327],[96.4992,2.4335],[96.4939,2.4359]],[[96.4823,2.4384],[96.4774,2.4402],[96.4757,2.4366],[96.4814,2.4331],[96.4823,2.4384]],[[96.3817,2.5246],[96.378,2.5274],[96.3724,2.5221],[96.3669,2.5261],[96.363,2.5202],[96.3739,2.5136],[96.3773,2.5156],[96.382,2.5134],[96.3881,2.5145],[96.3874,2.5182],[96.3807,2.5146],[96.3773,2.5215],[96.3817,2.5246]],[[95.9355,2.5424],[95.9322,2.5449],[95.9267,2.5418],[95.9262,2.5387],[95.9188,2.5361],[95.9166,2.5249],[95.9254,2.5235],[95.9358,2.5229],[95.9382,2.5242],[95.9505,2.523],[95.9576,2.5234],[95.9584,2.5307],[95.9496,2.534],[95.9437,2.5396],[95.9399,2.5388],[95.9355,2.5424]],[[96.2159,2.6497],[96.2182,2.654],[96.2128,2.6556],[96.212,2.6511],[96.2159,2.6497]],[[96.3772,2.6552],[96.3671,2.6585],[96.3654,2.6639],[96.3559,2.6604],[96.3525,2.6571],[96.354,2.6541],[96.3609,2.6538],[96.3698,2.6502],[96.3754,2.646],[96.3822,2.6438],[96.3876,2.646],[96.396,2.6446],[96.3956,2.6487],[96.387,2.6554],[96.3772,2.6552]],[[96.162,2.6687],[96.152,2.6681],[96.157,2.6628],[96.162,2.6687]],[[95.7452,2.7127],[95.7456,2.7181],[95.7405,2.7197],[95.7378,2.7139],[95.7328,2.7123],[95.7242,2.7127],[95.7218,2.715],[95.7146,2.7132],[95.7177,2.7075],[95.7221,2.7035],[95.7312,2.7018],[95.7399,2.7029],[95.7428,2.7052],[95.7452,2.7127]],[[96.1158,2.7462],[96.1136,2.7508],[96.1087,2.7515],[96.1065,2.7473],[96.1158,2.7462]],[[95.7699,2.8339],[95.763,2.8354],[95.7635,2.8289],[95.7677,2.828],[95.7699,2.8339]],[[96.4281,2.4775],[96.4252,2.4774],[96.4209,2.484],[96.4175,2.4855],[96.4139,2.4905],[96.4115,2.4973],[96.4112,2.5047],[96.409,2.5112],[96.4021,2.5111],[96.4018,2.5068],[96.4073,2.5051],[96.4059,2.4987],[96.4016,2.4911],[96.4013,2.4869],[96.4036,2.4797],[96.3997,2.4761],[96.4047,2.4738],[96.4072,2.4606],[96.4025,2.4555],[96.3927,2.4621],[96.3889,2.4619],[96.3855,2.4651],[96.3887,2.4686],[96.3819,2.4718],[96.3846,2.4777],[96.3799,2.4835],[96.3769,2.4834],[96.3709,2.4934],[96.3666,2.4966],[96.3636,2.5049],[96.3638,2.5099],[96.3662,2.5141],[96.362,2.5206],[96.3593,2.5181],[96.3532,2.5177],[96.349,2.5221],[96.3466,2.5192],[96.3427,2.5224],[96.3444,2.5272],[96.3428,2.5316],[96.3443,2.5397],[96.3486,2.5442],[96.3391,2.5522],[96.333,2.5502],[96.3262,2.5544],[96.3241,2.5589],[96.313,2.5618],[96.3097,2.5586],[96.2941,2.5631],[96.2901,2.567],[96.2804,2.5738],[96.2731,2.573],[96.2659,2.5772],[96.2583,2.5838],[96.2529,2.5857],[96.2472,2.5991],[96.2399,2.6076],[96.2411,2.6154],[96.2389,2.62],[96.2337,2.6221],[96.2273,2.6204],[96.2208,2.6219],[96.2261,2.6269],[96.2196,2.6282],[96.2192,2.6335],[96.2121,2.6368],[96.2101,2.6353],[96.2053,2.6418],[96.1954,2.6492],[96.1849,2.6531],[96.1862,2.6593],[96.1802,2.668],[96.1767,2.6681],[96.1639,2.6721],[96.1654,2.6764],[96.1631,2.6793],[96.1588,2.6768],[96.1639,2.6703],[96.1713,2.6668],[96.1812,2.656],[96.1839,2.6511],[96.1817,2.6449],[96.1816,2.6387],[96.1847,2.6318],[96.1929,2.6202],[96.1915,2.6172],[96.1864,2.6206],[96.1821,2.6156],[96.1783,2.6196],[96.1757,2.626],[96.1715,2.6299],[96.1673,2.6367],[96.1616,2.6333],[96.1602,2.6394],[96.1544,2.641],[96.1535,2.6465],[96.148,2.6398],[96.1454,2.6433],[96.1482,2.6469],[96.1416,2.6485],[96.1322,2.649],[96.127,2.6481],[96.1265,2.6416],[96.1197,2.6363],[96.1139,2.6373],[96.1054,2.6408],[96.0999,2.6506],[96.1057,2.6533],[96.1012,2.6568],[96.104,2.6598],[96.1015,2.6714],[96.0938,2.6736],[96.0928,2.6768],[96.1005,2.6763],[96.1,2.6792],[96.105,2.6855],[96.1136,2.6923],[96.121,2.6925],[96.1184,2.6873],[96.1214,2.6849],[96.1295,2.6825],[96.1346,2.6834],[96.1401,2.6892],[96.1517,2.6889],[96.1475,2.6939],[96.145,2.7006],[96.1477,2.7038],[96.1467,2.713],[96.1416,2.7101],[96.1321,2.7026],[96.1273,2.7057],[96.1219,2.7061],[96.12,2.7115],[96.1159,2.7119],[96.1119,2.7219],[96.1129,2.73],[96.1259,2.7238],[96.1275,2.7283],[96.1229,2.7305],[96.1187,2.7374],[96.1082,2.7413],[96.1055,2.7413],[96.0985,2.7466],[96.0903,2.7501],[96.0892,2.7451],[96.0907,2.7395],[96.0888,2.7349],[96.0842,2.7324],[96.0819,2.736],[96.0815,2.7445],[96.0868,2.7497],[96.0864,2.7554],[96.0835,2.7586],[96.0787,2.7568],[96.0703,2.7594],[96.0556,2.7614],[96.0481,2.7599],[96.0388,2.7604],[96.0267,2.7575],[96.0085,2.766],[96.0057,2.7691],[96.0067,2.7728],[96.0052,2.7788],[95.9973,2.786],[95.9912,2.7853],[95.9808,2.7893],[95.9774,2.7937],[95.9748,2.8007],[95.9746,2.8107],[95.9723,2.8127],[95.9601,2.8119],[95.9568,2.8136],[95.9551,2.8199],[95.9507,2.8217],[95.944,2.8204],[95.9372,2.825],[95.9326,2.8236],[95.9308,2.8279],[95.926,2.8306],[95.923,2.8364],[95.9148,2.8453],[95.9123,2.8448],[95.9095,2.8361],[95.9091,2.8305],[95.9006,2.8312],[95.9024,2.8277],[95.8991,2.8237],[95.8937,2.8294],[95.8904,2.8275],[95.886,2.8323],[95.8854,2.8442],[95.8738,2.8466],[95.8701,2.8518],[95.8671,2.8593],[95.8784,2.8653],[95.8782,2.871],[95.8815,2.8729],[95.8913,2.8645],[95.8947,2.8587],[95.9035,2.8564],[95.9066,2.8494],[95.9116,2.8498],[95.9109,2.8559],[95.9132,2.8604],[95.9122,2.8675],[95.9163,2.8693],[95.9104,2.8787],[95.9062,2.8877],[95.9034,2.8964],[95.8942,2.8995],[95.8913,2.9019],[95.8816,2.9033],[95.8782,2.9056],[95.8746,2.9122],[95.8691,2.9144],[95.8617,2.91],[95.854,2.9141],[95.8323,2.9119],[95.8314,2.8982],[95.827,2.9042],[95.8222,2.9064],[95.8165,2.9141],[95.8111,2.915],[95.8041,2.9122],[95.8013,2.9218],[95.8053,2.9218],[95.8051,2.9298],[95.8014,2.9316],[95.7951,2.9285],[95.7899,2.93],[95.784,2.9256],[95.7809,2.9162],[95.7808,2.9096],[95.7749,2.9059],[95.7702,2.9076],[95.7704,2.9017],[95.7677,2.8975],[95.7691,2.8863],[95.7637,2.8805],[95.7675,2.8722],[95.7677,2.8632],[95.7634,2.8575],[95.7658,2.8519],[95.7648,2.8484],[95.7715,2.8479],[95.7789,2.8451],[95.7817,2.8421],[95.7906,2.8369],[95.7907,2.8306],[95.7817,2.832],[95.7782,2.8272],[95.7663,2.8263],[95.7613,2.8242],[95.7538,2.8293],[95.7452,2.8305],[95.7396,2.8279],[95.733,2.8318],[95.7185,2.8254],[95.717,2.8215],[95.7188,2.8164],[95.7157,2.8087],[95.7103,2.8049],[95.7062,2.7963],[95.7072,2.7924],[95.7026,2.7851],[95.6952,2.7799],[95.6921,2.7726],[95.6999,2.7633],[95.6979,2.7561],[95.7012,2.7491],[95.7069,2.75],[95.7127,2.7481],[95.7209,2.7594],[95.7262,2.7601],[95.7343,2.7528],[95.7315,2.7493],[95.7218,2.7464],[95.7237,2.7392],[95.7294,2.7388],[95.742,2.7356],[95.7495,2.7307],[95.7507,2.7258],[95.7492,2.7221],[95.7544,2.7183],[95.7623,2.7152],[95.765,2.7089],[95.7563,2.7034],[95.7546,2.6999],[95.76,2.6929],[95.7702,2.6871],[95.7723,2.6878],[95.782,2.682],[95.7906,2.6687],[95.7926,2.6638],[95.7938,2.6554],[95.7918,2.6506],[95.7887,2.6499],[95.7882,2.6399],[95.7957,2.6304],[95.8035,2.6294],[95.8042,2.6403],[95.8092,2.6381],[95.8126,2.6445],[95.8211,2.6464],[95.8276,2.6428],[95.829,2.6357],[95.8317,2.63],[95.837,2.623],[95.8405,2.6241],[95.842,2.6348],[95.8456,2.6376],[95.8522,2.6384],[95.8616,2.6375],[95.8733,2.6277],[95.8862,2.6224],[95.8898,2.618],[95.8842,2.6105],[95.8848,2.604],[95.8964,2.5981],[95.902,2.6011],[95.9071,2.5973],[95.9109,2.6001],[95.9175,2.5987],[95.9183,2.592],[95.9266,2.5829],[95.9437,2.5725],[95.9542,2.57],[95.9585,2.5768],[95.9658,2.5779],[95.963,2.5814],[95.9696,2.586],[95.9799,2.5878],[95.9842,2.5839],[95.9882,2.5851],[95.9936,2.58],[95.9923,2.5707],[95.9963,2.5658],[96.0004,2.5748],[96.0014,2.5806],[96.005,2.5885],[96.0099,2.5907],[96.0154,2.5896],[96.0169,2.5856],[96.0267,2.5831],[96.043,2.5808],[96.0492,2.5774],[96.0498,2.574],[96.0575,2.5637],[96.0614,2.5684],[96.0679,2.5703],[96.0754,2.5696],[96.0844,2.5639],[96.0833,2.5583],[96.0867,2.5542],[96.095,2.5517],[96.1057,2.5457],[96.1191,2.5395],[96.1267,2.5265],[96.1284,2.5202],[96.1393,2.5135],[96.1447,2.5137],[96.1469,2.5176],[96.1606,2.5119],[96.1637,2.5086],[96.164,2.4996],[96.1694,2.4909],[96.1767,2.4895],[96.1814,2.4846],[96.1866,2.4885],[96.1937,2.483],[96.1991,2.4755],[96.2003,2.4715],[96.2066,2.4705],[96.2173,2.4643],[96.2267,2.449],[96.2256,2.4452],[96.2289,2.4415],[96.2353,2.4402],[96.2422,2.4416],[96.2523,2.4352],[96.2617,2.4314],[96.2725,2.4291],[96.2813,2.4293],[96.2864,2.4276],[96.2972,2.4259],[96.3094,2.4222],[96.3153,2.4168],[96.3185,2.406],[96.3145,2.4035],[96.3134,2.3855],[96.3172,2.3865],[96.3197,2.3833],[96.3331,2.391],[96.3355,2.387],[96.334,2.3719],[96.3215,2.3622],[96.3166,2.3628],[96.3141,2.3595],[96.3181,2.3537],[96.3264,2.3496],[96.334,2.3505],[96.3411,2.3456],[96.3447,2.3412],[96.3535,2.339],[96.3605,2.3408],[96.3652,2.3368],[96.3727,2.3401],[96.373,2.3464],[96.3772,2.3486],[96.3873,2.349],[96.3945,2.3402],[96.4071,2.3321],[96.4159,2.3299],[96.4234,2.3302],[96.4363,2.3277],[96.4443,2.329],[96.4544,2.3335],[96.4571,2.3375],[96.4641,2.3426],[96.47,2.34],[96.4819,2.345],[96.4857,2.3536],[96.4916,2.3566],[96.4923,2.3598],[96.4987,2.3632],[96.4987,2.3689],[96.4968,2.374],[96.4924,2.3759],[96.4899,2.39],[96.4852,2.3917],[96.4779,2.3967],[96.4785,2.4021],[96.4819,2.4025],[96.4869,2.4104],[96.4808,2.4198],[96.4772,2.4193],[96.4787,2.4263],[96.4757,2.4303],[96.4686,2.4265],[96.466,2.4366],[96.4713,2.4492],[96.4673,2.4604],[96.4615,2.4625],[96.4555,2.4674],[96.4572,2.4711],[96.4538,2.4761],[96.4463,2.4778],[96.4436,2.4814],[96.4349,2.4887],[96.4277,2.4918],[96.4271,2.4855],[96.4301,2.4813],[96.4281,2.4775]],[[95.4018,2.9669],[95.4064,2.9759],[95.4021,2.9777],[95.3967,2.9875],[95.3908,2.9894],[95.3891,2.9866],[95.3949,2.978],[95.3973,2.9676],[95.4018,2.9669]],[[95.405,3.0135],[95.4112,3.0167],[95.4099,3.0207],[95.4036,3.0181],[95.405,3.0135]]]}},{"type":"Feature","properties":{"mhid":"1332:4","alt_name":"KABUPATEN ACEH SELATAN","latitude":3.16667,"longitude":97.41667,"sample_value":541},"geometry":{"type":"MultiLineString","coordinates":[[[97.3172,3.0752],[97.3129,3.0818],[97.3092,3.0803],[97.3106,3.0758],[97.3172,3.0752]],[[96.942,3.5746],[96.9403,3.5696],[96.9706,3.558],[96.9809,3.5565],[96.9931,3.5511],[96.9934,3.547],[96.9997,3.5453],[97.0012,3.5383],[97.0046,3.5309],[97.017,3.5205],[97.0179,3.5081],[97.0248,3.4997],[97.0288,3.4964],[97.0378,3.4838],[97.0457,3.4747],[97.0463,3.4711],[97.052,3.4616],[97.0496,3.4583],[97.0517,3.455],[97.0576,3.4561],[97.058,3.4457],[97.0627,3.4434],[97.0632,3.4391],[97.0605,3.4359],[97.062,3.4302],[97.0708,3.427],[97.0695,3.4189],[97.0753,3.4133],[97.0846,3.4005],[97.0843,3.395],[97.0929,3.387],[97.106,3.3679],[97.1095,3.36],[97.1186,3.3562],[97.1225,3.3482],[97.1206,3.3408],[97.1214,3.3323],[97.1267,3.3261],[97.126,3.3212],[97.1284,3.3177],[97.1343,3.317],[97.1402,3.3127],[97.1456,3.3051],[97.1503,3.2915],[97.1577,3.2837],[97.1582,3.273],[97.1651,3.2701],[97.167,3.2612],[97.1719,3.2551],[97.1769,3.2516],[97.1815,3.256],[97.1944,3.259],[97.1955,3.253],[97.2017,3.2491],[97.2061,3.2511],[97.2124,3.2497],[97.2171,3.2451],[97.2217,3.2434],[97.2205,3.2379],[97.2236,3.2322],[97.2321,3.2325],[97.2363,3.236],[97.2446,3.236],[97.2576,3.2206],[97.264,3.2105],[97.2712,3.1939],[97.2758,3.186],[97.2779,3.1773],[97.2814,3.1688],[97.2835,3.158],[97.2876,3.1481],[97.2902,3.1346],[97.2975,3.1143],[97.3007,3.1163],[97.3091,3.1098],[97.3024,3.1029],[97.3038,3.0965],[97.3086,3.0824],[97.3143,3.0826],[97.3178,3.0779],[97.3174,3.0744],[97.3111,3.0738],[97.3196,3.0589],[97.319,3.0548],[97.3369,3.0324],[97.3597,3.0015],[97.3697,2.9886],[97.393,2.9631],[97.4251,2.9343],[97.4473,2.9232],[97.4569,2.9234],[97.4774,2.9216],[97.4867,2.9202],[97.4989,2.9127],[97.5046,2.9059],[97.5054,2.9025],[97.5131,2.9027],[97.5144,2.8996],[97.5221,2.8895],[97.5307,2.8861],[97.5345,2.883],[97.5429,2.8824],[97.5492,2.8881],[97.5558,2.8889],[97.563,2.8862],[97.5758,2.8882],[97.5822,2.8864],[97.5925,2.8772],[97.5988,2.8678],[97.6041,2.8578],[97.6112,2.8413],[97.615,2.8293],[97.6178,2.8119],[97.6241,2.787],[97.6341,2.7522],[97.6399,2.7219],[97.6423,2.7129],[97.6438,2.7001],[97.6479,2.6783],[97.6501,2.6621],[97.6511,2.6387],[97.6545,2.5894],[97.6544,2.5749],[97.6552,2.5642],[97.6551,2.5459],[97.6565,2.5313],[97.6567,2.52],[97.6553,2.4728],[97.6573,2.4512],[97.6592,2.4176],[97.6611,2.4019],[97.6639,2.3944],[97.6698,2.396]]]}},{"type":"Feature","properties":{"mhid":"1332:5","alt_name":"KABUPATEN ACEH TENGGARA","latitude":3.36667,"longitude":97.7,"sample_value":882},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:6","alt_name":"KABUPATEN ACEH TIMUR","latitude":4.63333,"longitude":97.63333,"sample_value":869},"geometry":{"type":"MultiLineString","coordinates":[[[97.9757,4.5563],[97.9706,4.5592],[97.9779,4.5627],[97.9819,4.5677],[97.9858,4.5763],[97.9948,4.587],[97.9994,4.5945],[98.0027,4.5964],[98.0072,4.6028],[98.012,4.6052],[98.0177,4.6018],[98.0177,4.6092],[98.0129,4.6167],[98.0066,4.6217],[97.9985,4.6251],[97.9939,4.6299],[97.9967,4.6396],[97.9904,4.6426],[97.9862,4.6428],[97.9797,4.6529],[97.975,4.654],[97.9719,4.6626],[97.9645,4.6644],[97.9624,4.6748],[97.9675,4.6775],[97.975,4.6687],[97.9764,4.6739],[97.9665,4.6977],[97.9624,4.7123],[97.9607,4.7328],[97.9552,4.7389],[97.9544,4.7436],[97.9571,4.7464],[97.9535,4.7569],[97.9487,4.7629],[97.9461,4.7692],[97.9462,4.7781],[97.9361,4.8034],[97.9355,4.8067],[97.9307,4.8156],[97.9224,4.8392],[97.9192,4.85],[97.9069,4.8819],[97.9059,4.8892],[97.8971,4.8885],[97.8802,4.89],[97.8724,4.8922],[97.862,4.8968],[97.8493,4.904],[97.8441,4.9091],[97.8229,4.9233],[97.8073,4.9349],[97.7792,4.9595],[97.7762,4.9643],[97.7514,4.9857],[97.7362,4.9984],[97.7357,4.9999],[97.716,5.0158],[97.6742,5.0515],[97.6721,5.0554],[97.6552,5.0685],[97.6447,5.0822],[97.6443,5.0882],[97.6554,5.0811],[97.6569,5.0837],[97.6547,5.0954],[97.6538,5.1131],[97.6524,5.1184],[97.6367,5.1287],[97.6274,5.1292],[97.6136,5.1318],[97.6033,5.1371],[97.5909,5.1445],[97.593,5.1468],[97.5823,5.1614],[97.577,5.1661],[97.5704,5.1751],[97.5696,5.1827],[97.5653,5.1888],[97.5427,5.2078],[97.5542,5.2107],[97.5547,5.2134],[97.5418,5.2216],[97.5254,5.2344],[97.5136,5.2424],[97.4977,5.2501],[97.4841,5.246],[97.4838,5.2437]]]}},{"type":"Feature","properties":{"mhid":"1332:7","alt_name":"KABUPATEN ACEH TENGAH","latitude":4.51,"longitude":96.855,"sample_value":871},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:8","alt_name":"KABUPATEN ACEH BARAT","latitude":4.45,"longitude":96.16667,"sample_value":22},"geometry":{"type":"MultiLineString","coordinates":[[[95.8769,4.3675],[95.9029,4.3407],[95.917,4.3239],[95.9404,4.2982],[95.9584,4.2757],[95.9768,4.2551],[95.9862,4.2475],[95.9944,4.2389],[96.0026,4.2285],[96.0131,4.2181],[96.0222,4.2053],[96.0222,4.1979],[96.0274,4.195],[96.0331,4.1991],[96.033,4.2022],[96.0373,4.2067],[96.0464,4.2088],[96.0554,4.2052],[96.0691,4.1954],[96.0864,4.1783],[96.1003,4.1613],[96.1143,4.1476],[96.1228,4.1384],[96.1269,4.1305],[96.1332,4.1319],[96.1306,4.1367],[96.1344,4.1407],[96.1424,4.1423],[96.1523,4.1395],[96.1747,4.1216],[96.192,4.1073]]]}},{"type":"Feature","properties":{"mhid":"1332:9","alt_name":"KABUPATEN ACEH BESAR","latitude":5.38333,"longitude":95.51667,"sample_value":227},"geometry":{"type":"MultiLineString","coordinates":[[[95.1766,5.5562],[95.177,5.5607],[95.1669,5.5635],[95.1631,5.5583],[95.1535,5.5553],[95.1529,5.5525],[95.1645,5.5496],[95.17,5.5497],[95.1766,5.5562]],[[95.202,5.583],[95.1943,5.5809],[95.1837,5.5758],[95.1834,5.5737],[95.1982,5.5767],[95.2044,5.5787],[95.202,5.583]],[[95.0788,5.6441],[95.0752,5.6435],[95.0661,5.6377],[95.0601,5.6387],[95.0523,5.6298],[95.0513,5.6225],[95.0545,5.6211],[95.0606,5.6221],[95.0612,5.6247],[95.0672,5.6269],[95.0757,5.6337],[95.0805,5.6333],[95.0864,5.6406],[95.0788,5.6441]],[[95.7457,5.569],[95.7386,5.5728],[95.7181,5.5787],[95.7081,5.5787],[95.7023,5.5812],[95.689,5.5835],[95.6803,5.588],[95.6658,5.594],[95.646,5.6051],[95.6315,5.6164],[95.6212,5.6185],[95.6157,5.6232],[95.6163,5.6256],[95.6102,5.628],[95.599,5.6259],[95.5922,5.6229],[95.584,5.6172],[95.5783,5.618],[95.5677,5.6167],[95.5606,5.6143],[95.549,5.6135],[95.5429,5.6154],[95.5393,5.6102],[95.5289,5.6121],[95.5305,5.5997],[95.5222,5.5954],[95.5059,5.5992],[95.4989,5.6031],[95.492,5.6091],[95.4837,5.6194],[95.4739,5.6338],[95.465,5.6448],[95.4555,5.6519],[95.4499,5.6525],[95.4409,5.6562],[95.4306,5.6562],[95.4194,5.6498],[95.4157,5.6497],[95.4037,5.6388],[95.3977,5.6322],[95.3901,5.6216],[95.3855,5.621],[95.3818,5.6179],[95.367,5.6103],[95.3669,5.6087]],[[95.2776,5.5559],[95.269,5.5512],[95.2621,5.5499],[95.2511,5.5523],[95.2461,5.5558],[95.236,5.5576],[95.2355,5.564],[95.2389,5.5709],[95.2281,5.5756],[95.2264,5.5706],[95.2203,5.5695],[95.217,5.5663],[95.2147,5.5596],[95.2164,5.5578],[95.2096,5.544],[95.2092,5.5407],[95.2028,5.5371],[95.1938,5.5273],[95.1963,5.522],[95.1994,5.5207],[95.2093,5.5084],[95.2096,5.5037],[95.2179,5.4982],[95.2265,5.4987],[95.23,5.4902],[95.2267,5.4853],[95.233,5.4816],[95.236,5.4732],[95.2402,5.4691],[95.2436,5.4595],[95.2442,5.452],[95.2426,5.4456],[95.2393,5.4428],[95.2381,5.4373],[95.2323,5.4332],[95.2336,5.4288],[95.2391,5.4287],[95.2476,5.4141],[95.2508,5.4021],[95.2524,5.3841],[95.252,5.3741],[95.2496,5.3669],[95.2446,5.3656],[95.2405,5.3495],[95.2417,5.3401],[95.236,5.3421],[95.2341,5.3448],[95.2344,5.3548],[95.2277,5.359],[95.2282,5.3515],[95.2258,5.3414],[95.2326,5.3315],[95.2378,5.33],[95.2391,5.3261],[95.2362,5.3189],[95.2304,5.3144],[95.2218,5.3202],[95.2233,5.3128],[95.2173,5.3108],[95.2153,5.3066],[95.217,5.2983],[95.22,5.2907],[95.2184,5.2836],[95.2154,5.2817],[95.2148,5.2758],[95.2197,5.2709],[95.2231,5.2778],[95.2313,5.2849],[95.2393,5.2823],[95.2467,5.2724],[95.2478,5.2659],[95.2396,5.2617],[95.2365,5.2629],[95.2336,5.2556],[95.2398,5.2564],[95.2438,5.2542],[95.2497,5.2475],[95.2526,5.2402],[95.2535,5.2311],[95.2519,5.2266],[95.2473,5.223],[95.2541,5.2213],[95.2608,5.2136],[95.2709,5.1972],[95.2733,5.1996],[95.2834,5.1969],[95.2912,5.1901],[95.3076,5.1684],[95.3068,5.1673]],[[95.1481,5.6615],[95.1404,5.6602],[95.1379,5.6581],[95.1439,5.6481],[95.1449,5.6346],[95.1375,5.6293],[95.1251,5.6225],[95.1189,5.6149],[95.1215,5.6072],[95.1275,5.5944],[95.1328,5.5974],[95.1377,5.6066],[95.1439,5.606],[95.1459,5.6025],[95.1444,5.5973],[95.1458,5.5931],[95.1503,5.5953],[95.1557,5.5945],[95.1669,5.6016],[95.1675,5.6057],[95.1766,5.6083],[95.1859,5.6085],[95.1837,5.6172],[95.1791,5.621],[95.1735,5.6222],[95.1705,5.6255],[95.1708,5.631],[95.1635,5.6381],[95.16,5.6385],[95.1573,5.6429],[95.1594,5.6483],[95.157,5.6592],[95.1481,5.6615]],[[95.059,5.7506],[95.0445,5.7498],[95.0395,5.7474],[95.0373,5.7505],[95.0318,5.7495],[95.0298,5.7422],[95.022,5.738],[95.0167,5.7335],[95.0111,5.7243],[95.0167,5.7187],[95.0232,5.7233],[95.0321,5.726],[95.0335,5.7292],[95.0381,5.7301],[95.0449,5.7367],[95.0475,5.7357],[95.049,5.7279],[95.0471,5.7223],[95.0593,5.72],[95.0607,5.7138],[95.0589,5.712],[95.0472,5.7107],[95.0412,5.7077],[95.0415,5.6967],[95.0493,5.697],[95.0543,5.6916],[95.0592,5.6886],[95.0596,5.6803],[95.049,5.6752],[95.0529,5.6715],[95.0615,5.6707],[95.0663,5.6718],[95.0698,5.6661],[95.0653,5.6582],[95.0586,5.6543],[95.0592,5.6481],[95.0653,5.6518],[95.0777,5.6567],[95.078,5.6634],[95.0801,5.6679],[95.1019,5.6687],[95.1105,5.6671],[95.1179,5.6722],[95.1357,5.6674],[95.1386,5.6641],[95.143,5.6665],[95.1378,5.6741],[95.1327,5.6859],[95.1284,5.6861],[95.1283,5.6902],[95.1189,5.6891],[95.1139,5.6948],[95.108,5.6952],[95.1117,5.7007],[95.1115,5.7044],[95.1082,5.7092],[95.0962,5.7145],[95.0961,5.7174],[95.0914,5.7204],[95.0905,5.7243],[95.0852,5.724],[95.0838,5.7204],[95.0796,5.7201],[95.0731,5.7225],[95.0725,5.7304],[95.0638,5.735],[95.0638,5.7404],[95.0681,5.744],[95.0628,5.7465],[95.059,5.7506]]]}},{"type":"Feature","properties":{"mhid":"1332:10","alt_name":"KABUPATEN PIDIE","latitude":5.08,"longitude":96.11,"sample_value":789},"geometry":{"type":"MultiLineString","coordinates":[[[96.105,5.2859],[96.1026,5.2879],[96.086,5.2899],[96.0769,5.2939],[96.0683,5.3014],[96.0576,5.3149],[96.0563,5.321],[96.0341,5.3352],[96.0259,5.3419],[96.0038,5.3563],[95.9968,5.362],[95.9799,5.3744],[95.9639,5.3892],[95.9499,5.3971],[95.9382,5.4076],[95.9328,5.4063],[95.9285,5.4106],[95.9284,5.4151],[95.9212,5.4208],[95.9124,5.4303],[95.8964,5.4503],[95.8898,5.4612],[95.8921,5.4856],[95.8886,5.4989],[95.8853,5.5046],[95.8795,5.509],[95.869,5.5147],[95.8521,5.5195],[95.8299,5.5333],[95.8283,5.5355],[95.818,5.5358],[95.7998,5.5422],[95.7934,5.5456],[95.7785,5.5508],[95.7681,5.5589],[95.7514,5.5658],[95.7457,5.569]]]}},{"type":"Feature","properties":{"mhid":"1332:11","alt_name":"KABUPATEN BIREUEN","latitude":5.08333,"longitude":96.58333,"sample_value":149},"geometry":{"type":"MultiLineString","coordinates":[[[96.9061,5.2505],[96.8996,5.2518],[96.8937,5.2494],[96.8821,5.2481],[96.8743,5.2497],[96.8664,5.2544],[96.8647,5.2584],[96.8661,5.2625],[96.8639,5.2673],[96.8585,5.2725],[96.8447,5.2769],[96.8296,5.2759],[96.8102,5.2727],[96.798,5.2686],[96.7903,5.2642],[96.7796,5.2594],[96.7437,5.2512],[96.7382,5.2512],[96.7228,5.247],[96.6826,5.2301],[96.6596,5.22],[96.6365,5.2135],[96.6289,5.2121],[96.6053,5.2105],[96.5906,5.2118],[96.582,5.2107],[96.5689,5.2063],[96.5563,5.2029],[96.5346,5.1993],[96.5191,5.199],[96.5128,5.1996],[96.493,5.2079],[96.4867,5.2124],[96.4824,5.2275],[96.4722,5.2382],[96.4654,5.2352],[96.4451,5.2232],[96.4207,5.2132],[96.4039,5.2089],[96.3955,5.2099],[96.3635,5.2211],[96.3512,5.2257]]]}},{"type":"Feature","properties":{"mhid":"1332:12","alt_name":"KABUPATEN ACEH UTARA","latitude":4.97,"longitude":97.14,"sample_value":500},"geometry":{"type":"MultiLineString","coordinates":[[[97.0456,5.2408],[97.0383,5.2379],[97.0288,5.2444],[97.0331,5.2502],[97.0115,5.2555],[96.9931,5.2606],[96.9755,5.2626],[96.9592,5.2614],[96.9462,5.2588],[96.9213,5.2521],[96.9061,5.2505]],[[97.4838,5.2437],[97.4769,5.2419],[97.4538,5.2323],[97.4443,5.2288],[97.4035,5.2152],[97.3858,5.2082],[97.3662,5.1995],[97.3574,5.1962],[97.3263,5.187],[97.3232,5.1898],[97.315,5.1869],[97.2914,5.1735],[97.2816,5.1692],[97.2764,5.169],[97.2699,5.1661],[97.2673,5.1693],[97.2632,5.1678],[97.2506,5.1588],[97.2423,5.1541],[97.2252,5.1513],[97.21,5.1443],[97.2021,5.1424],[97.1898,5.1414],[97.1771,5.1413]]]}},{"type":"Feature","properties":{"mhid":"1332:13","alt_name":"KABUPATEN ACEH BARAT DAYA","latitude":3.83333,"longitude":96.88333,"sample_value":685},"geometry":{"type":"MultiLineString","coordinates":[[[96.6237,3.739],[96.6361,3.7441],[96.6538,3.7462],[96.6689,3.7473],[96.6795,3.7465],[96.6867,3.7444],[96.6978,3.7431],[96.7084,3.7445],[96.718,3.747],[96.7244,3.7471],[96.7375,3.7435],[96.744,3.7441],[96.7518,3.7399],[96.7708,3.7394],[96.7779,3.7375],[96.788,3.7299],[96.7935,3.7245],[96.7979,3.7239],[96.805,3.7258],[96.8104,3.7227],[96.8119,3.7172],[96.8191,3.7164],[96.8266,3.7127],[96.8345,3.707],[96.8439,3.705],[96.8566,3.6996],[96.8656,3.6931],[96.8793,3.6775],[96.8903,3.655],[96.896,3.6382],[96.8967,3.6238],[96.8951,3.6203],[96.9049,3.601],[96.9105,3.5976],[96.9142,3.5935],[96.9343,3.5782],[96.942,3.5746]]]}},{"type":"Feature","properties":{"mhid":"1332:14","alt_name":"KABUPATEN GAYO LUES","latitude":3.95,"longitude":97.39,"sample_value":527},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:15","alt_name":"KABUPATEN ACEH TAMIANG","latitude":4.25,"longitude":97.96667,"sample_value":385},"geometry":{"type":"MultiLineString","coordinates":[[[98.2511,4.2904],[98.2544,4.2894],[98.259,4.2965],[98.2665,4.3125],[98.2678,4.3171],[98.272,4.3236],[98.2785,4.3278],[98.2793,4.3322],[98.278,4.3409],[98.2785,4.3471],[98.283,4.3486],[98.282,4.3639],[98.2792,4.3694],[98.2771,4.3893],[98.2756,4.3957],[98.2807,4.3977],[98.2862,4.3962],[98.2873,4.3994],[98.285,4.4185],[98.2745,4.4263],[98.2649,4.4316],[98.2512,4.4454],[98.2475,4.4425],[98.2404,4.4398],[98.2345,4.4428],[98.2311,4.448],[98.2349,4.4531],[98.2374,4.4602],[98.2269,4.4646],[98.2241,4.4683],[98.2099,4.4775],[98.1995,4.4814],[98.1861,4.4779],[98.187,4.4845],[98.1791,4.4896],[98.1786,4.4951],[98.1707,4.5023],[98.1537,4.5105],[98.1444,4.5117],[98.137,4.516],[98.1208,4.523],[98.1146,4.5233],[98.1102,4.5214],[98.0946,4.5232],[98.0933,4.521],[98.0845,4.5236],[98.0825,4.5127],[98.0787,4.5125]]]}},{"type":"Feature","properties":{"mhid":"1332:16","alt_name":"KABUPATEN NAGAN RAYA","latitude":4.16667,"longitude":96.51667,"sample_value":590},"geometry":{"type":"MultiLineString","coordinates":[[[96.192,4.1073],[96.1894,4.1054],[96.2173,4.0777],[96.2354,4.0572],[96.2406,4.0555],[96.2442,4.0495],[96.247,4.0413],[96.2656,4.0211],[96.284,3.9988],[96.2959,3.9827],[96.3314,3.9293],[96.3526,3.8977],[96.3586,3.888],[96.3739,3.8661],[96.3852,3.8493],[96.3871,3.8579],[96.392,3.8532],[96.3879,3.8485],[96.4217,3.8147],[96.4495,3.7883],[96.4782,3.7642],[96.4967,3.7495],[96.5159,3.737],[96.5243,3.7332],[96.5365,3.7298],[96.5443,3.7291],[96.5573,3.7299],[96.5794,3.7331],[96.5963,3.7331],[96.6182,3.7346],[96.6237,3.739]]]}},{"type":"Feature","properties":{"mhid":"1332:17","alt_name":"KABUPATEN ACEH JAYA","latitude":4.86,"longitude":95.64,"sample_value":851},"geometry":{"type":"MultiLineString","coordinates":[[[95.4513,4.773],[95.4494,4.7773],[95.4427,4.7763],[95.4451,4.7724],[95.4513,4.773]],[[95.3773,4.8771],[95.3722,4.8783],[95.3665,4.8761],[95.3663,4.8724],[95.3744,4.8615],[95.3838,4.8586],[95.3902,4.8682],[95.3906,4.8733],[95.3851,4.8781],[95.3773,4.8771]],[[95.3068,5.1673],[95.3087,5.1621],[95.3072,5.1472],[95.3041,5.1365],[95.3065,5.1319],[95.3097,5.1314],[95.3058,5.1238],[95.2958,5.1189],[95.2916,5.1203],[95.2866,5.1193],[95.2814,5.115],[95.2844,5.1115],[95.2914,5.1095],[95.2983,5.1158],[95.3021,5.1161],[95.3041,5.1091],[95.3117,5.1028],[95.3119,5.0986],[95.3158,5.0936],[95.3201,5.0929],[95.3196,5.0846],[95.316,5.0803],[95.3256,5.067],[95.3303,5.0592],[95.3324,5.0506],[95.3363,5.0487],[95.3397,5.0515],[95.3496,5.0471],[95.3549,5.0401],[95.3624,5.0388],[95.3666,5.0322],[95.3686,5.0222],[95.3658,5.0125],[95.3607,5.0114],[95.3554,5.0066],[95.358,4.9984],[95.3646,5.0002],[95.369,4.9957],[95.3712,4.986],[95.3749,4.9815],[95.3741,4.9758],[95.3802,4.9719],[95.3816,4.9689],[95.3808,4.9617],[95.3765,4.9582],[95.374,4.9525],[95.3688,4.949],[95.3715,4.9388],[95.3759,4.9327],[95.3792,4.9202],[95.3865,4.9204],[95.3898,4.9148],[95.3918,4.9046],[95.394,4.9009],[95.4024,4.8942],[95.3994,4.8912],[95.3948,4.8796],[95.3969,4.8717],[95.4045,4.8659],[95.4111,4.8578],[95.4168,4.8557],[95.4225,4.8453],[95.4267,4.8342],[95.4249,4.8271],[95.4181,4.8244],[95.4132,4.8255],[95.4132,4.8205],[95.4236,4.8177],[95.4275,4.8095],[95.4369,4.8074],[95.4449,4.8084],[95.4518,4.7994],[95.454,4.7898],[95.4527,4.7828],[95.4607,4.7795],[95.473,4.7703],[95.4873,4.7566],[95.4977,4.7435],[95.4995,4.7371],[95.5061,4.7301],[95.5132,4.719],[95.5137,4.7136],[95.5104,4.7103],[95.5103,4.7064],[95.5227,4.697],[95.5275,4.6919],[95.5329,4.6836],[95.5332,4.6741],[95.5406,4.6739],[95.539,4.6679],[95.5404,4.665],[95.5385,4.6587],[95.5436,4.6593],[95.5514,4.6563],[95.5549,4.6581],[95.562,4.6694],[95.568,4.668],[95.5722,4.6623],[95.5801,4.6623],[95.5844,4.659],[95.5842,4.648],[95.5725,4.6443],[95.5739,4.6369],[95.5655,4.6354],[95.5703,4.63],[95.5734,4.6314],[95.5813,4.6273],[95.5824,4.6349],[95.5875,4.6357],[95.5969,4.6314],[95.6071,4.6253],[95.6222,4.6129],[95.6351,4.5989],[95.6422,4.5923],[95.656,4.582],[95.6643,4.5766],[95.6741,4.5689],[95.6825,4.5578],[95.6925,4.5507],[95.7071,4.5376],[95.7146,4.5287],[95.7198,4.526],[95.7292,4.5184],[95.7523,4.4967],[95.7629,4.4924],[95.78,4.4726],[95.7859,4.4671],[95.8769,4.3675]]]}},{"type":"Feature","properties":{"mhid":"1332:18","alt_name":"KABUPATEN BENER MERIAH","latitude":4.73015,"longitude":96.86156,"sample_value":946},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:19","alt_name":"KABUPATEN PIDIE JAYA","latitude":5.15,"longitude":96.21667,"sample_value":511},"geometry":{"type":"MultiLineString","coordinates":[[[96.3512,5.2257],[96.3241,5.2312],[96.318,5.2332],[96.2996,5.2429],[96.2908,5.2463],[96.2734,5.2562],[96.2575,5.2632],[96.2415,5.2631],[96.2123,5.2588],[96.1965,5.259],[96.1883,5.2603],[96.1702,5.2652],[96.153,5.2726],[96.1454,5.2769],[96.1235,5.2808],[96.105,5.2859]]]}},{"type":"Feature","properties":{"mhid":"1332:20","alt_name":"KOTA BANDA ACEH","latitude":5.54167,"longitude":95.33333,"sample_value":694},"geometry":{"type":"MultiLineString","coordinates":[[[95.3669,5.6087],[95.3628,5.6089],[95.3528,5.6068],[95.3471,5.6067],[95.3245,5.5929],[95.3153,5.5836],[95.3137,5.5837],[95.2958,5.5678],[95.2776,5.5559]]]}},{"type":"Feature","properties":{"mhid":"1332:21","alt_name":"KOTA SABANG","latitude":5.82164,"longitude":95.31086,"sample_value":309},"geometry":{"type":"MultiLineString","coordinates":[[[95.2193,5.9069],[95.2162,5.9056],[95.2176,5.8967],[95.2149,5.8903],[95.2218,5.8712],[95.2266,5.8693],[95.2279,5.8661],[95.2366,5.857],[95.2392,5.8496],[95.2482,5.8494],[95.2564,5.8437],[95.2612,5.8326],[95.2601,5.825],[95.2637,5.8202],[95.2666,5.8071],[95.273,5.7987],[95.2745,5.7942],[95.2816,5.7839],[95.2873,5.7799],[95.29,5.7817],[95.3043,5.7801],[95.3126,5.7773],[95.3184,5.7737],[95.3248,5.7739],[95.3297,5.772],[95.338,5.7789],[95.3425,5.786],[95.3438,5.7936],[95.3466,5.7963],[95.3458,5.8007],[95.3485,5.805],[95.3447,5.8166],[95.3458,5.8262],[95.3512,5.828],[95.3553,5.8263],[95.361,5.8182],[95.367,5.8117],[95.3719,5.8039],[95.3756,5.8049],[95.3772,5.8125],[95.3777,5.8297],[95.3733,5.8434],[95.373,5.8485],[95.369,5.8525],[95.3644,5.8536],[95.3555,5.8645],[95.3533,5.8694],[95.3539,5.8779],[95.3498,5.8856],[95.3435,5.8893],[95.3335,5.8982],[95.3281,5.9008],[95.3209,5.9002],[95.3102,5.894],[95.3099,5.8902],[95.3147,5.8849],[95.3195,5.8898],[95.3243,5.8858],[95.3238,5.8822],[95.3164,5.8706],[95.3122,5.8688],[95.3059,5.8698],[95.3014,5.8726],[95.3011,5.8631],[95.304,5.8406],[95.2881,5.8407],[95.2859,5.8465],[95.2767,5.8483],[95.2684,5.8577],[95.2641,5.8599],[95.263,5.8666],[95.2689,5.8699],[95.2644,5.8728],[95.2574,5.8721],[95.252,5.8814],[95.2451,5.8822],[95.2402,5.8872],[95.2419,5.8911],[95.2353,5.8976],[95.2245,5.906],[95.2193,5.9069]],[[95.1179,6.0769],[95.1136,6.0755],[95.1176,6.0708],[95.121,6.0726],[95.1179,6.0769]]]}},{"type":"Feature","properties":{"mhid":"1332:22","alt_name":"KOTA LANGSA","latitude":4.47,"longitude":97.93,"sample_value":202},"geometry":{"type":"MultiLineString","coordinates":[[[98.0418,4.5345],[98.0488,4.5363],[98.0476,4.5404],[98.0417,4.5436],[98.0383,4.5388],[98.0418,4.5345]],[[98.0787,4.5125],[98.0792,4.5175],[98.0765,4.5247],[98.0807,4.5244],[98.085,4.5307],[98.0818,4.5365],[98.0763,4.5399],[98.0626,4.5511],[98.0621,4.545],[98.0572,4.5406],[98.055,4.5359],[98.035,4.528],[98.0349,4.5326],[98.038,4.5443],[98.0326,4.5412],[98.0254,4.5397],[98.0235,4.5355],[98.0174,4.5364],[97.9998,4.53],[97.9945,4.5315],[97.9883,4.531],[97.9825,4.5344],[97.9855,4.537],[97.9844,4.5443],[97.9757,4.5563]]]}},{"type":"Feature","properties":{"mhid":"1332:25","alt_name":"KABUPATEN NIAS","latitude":1.03333,"longitude":97.76667,"sample_value":65},"geometry":{"type":"MultiLineString","coordinates":[[[97.9017,0.8847],[97.9039,0.8965],[97.9114,0.909],[97.9217,0.923],[97.9463,0.9536],[97.9472,0.958],[97.9448,0.9688],[97.9398,0.9794],[97.9297,0.9921],[97.9192,1.0257],[97.9107,1.0355],[97.9091,1.039],[97.8961,1.0547],[97.8885,1.0545],[97.8815,1.0511],[97.8727,1.0523],[97.8643,1.0582],[97.8494,1.0722],[97.844,1.0806],[97.844,1.0911],[97.8396,1.0941],[97.8356,1.0923],[97.8323,1.0956],[97.8289,1.1091],[97.816,1.1327],[97.8117,1.1392],[97.8005,1.1505],[97.7927,1.153],[97.7757,1.1504],[97.7694,1.1513],[97.7649,1.154],[97.7506,1.1689],[97.7405,1.1665],[97.7332,1.166],[97.7233,1.1687],[97.7151,1.1741],[97.7054,1.1735],[97.6962,1.1749],[97.6902,1.1785]]]}},{"type":"Feature","properties":{"mhid":"1332:26","alt_name":"KABUPATEN MANDAILING NATAL","latitude":0.78378,"longitude":99.25495,"sample_value":926},"geometry":{"type":"MultiLineString","coordinates":[[[99.1062,0.3654],[99.1045,0.3737],[99.1005,0.3717],[99.0958,0.3657],[99.0908,0.3659],[99.0896,0.3617],[99.0978,0.3629],[99.1035,0.3621],[99.1062,0.3654]],[[98.8267,1.2681],[98.8281,1.2719],[98.8255,1.2773],[98.8211,1.2795],[98.8149,1.2765],[98.8127,1.2699],[98.8145,1.2665],[98.8219,1.2657],[98.8267,1.2681]],[[98.844,1.2973],[98.8429,1.2883],[98.8441,1.2779],[98.8571,1.2531],[98.8591,1.2473],[98.8679,1.2313],[98.8692,1.227],[98.8677,1.2206],[98.8638,1.2179],[98.8739,1.1966],[98.8814,1.1833],[98.901,1.146],[98.9083,1.1294],[98.9129,1.1165],[98.9177,1.098],[98.9252,1.061],[98.9255,1.0534],[98.9279,1.0442],[98.9357,1.0227],[98.9439,1.0044],[98.9564,0.9694],[98.9637,0.952],[98.9729,0.9239],[98.9767,0.8951],[98.9815,0.8831],[98.9819,0.8711],[98.9849,0.8611],[98.9855,0.8525],[98.9829,0.8477],[98.9773,0.8451],[98.9761,0.8405],[98.9807,0.8359],[98.9841,0.8359],[98.9901,0.8323],[98.9933,0.8225],[98.9955,0.8205],[99.0001,0.8239],[99.0063,0.8235],[99.0087,0.8263],[99.0129,0.8237],[99.0137,0.8187],[99.0193,0.8145],[99.0225,0.7995],[99.0329,0.7901],[99.0365,0.7849],[99.0455,0.7603],[99.0483,0.7605],[99.0579,0.7393],[99.0599,0.7285],[99.0605,0.7197],[99.059,0.7127],[99.0566,0.71],[99.0593,0.705],[99.0621,0.6902],[99.0579,0.6855],[99.0563,0.679],[99.0525,0.6743],[99.0486,0.6723],[99.0606,0.6682],[99.066,0.6595],[99.0576,0.6552],[99.0552,0.6512],[99.0591,0.6474],[99.0579,0.6392],[99.0533,0.6412],[99.0494,0.6454],[99.0451,0.6399],[99.0499,0.6226],[99.0598,0.6214],[99.061,0.6258],[99.0652,0.6321],[99.0753,0.6293],[99.0751,0.6218],[99.0792,0.6196],[99.0843,0.6203],[99.0872,0.6179],[99.0977,0.6031],[99.1013,0.595],[99.107,0.5767],[99.1098,0.5639],[99.1093,0.5497],[99.1052,0.5325],[99.0984,0.5288],[99.0915,0.5315],[99.0886,0.5291],[99.0902,0.5248],[99.0949,0.5195],[99.0916,0.5111],[99.0954,0.5031],[99.1015,0.5033],[99.1033,0.5075],[99.1139,0.5116],[99.12,0.4965],[99.1188,0.4929],[99.1238,0.4889],[99.1297,0.4774],[99.1368,0.4506],[99.1396,0.4281],[99.1396,0.4172],[99.1371,0.3997],[99.1351,0.3949],[99.1353,0.3853],[99.1337,0.3775],[99.1199,0.3629],[99.1207,0.3531],[99.1089,0.3459],[99.1149,0.3445],[99.1149,0.3419],[99.1199,0.3377],[99.1225,0.3387],[99.1285,0.3331],[99.1335,0.3331],[99.1365,0.3307],[99.1467,0.3323],[99.1503,0.3269],[99.1575,0.3085],[99.1605,0.2909],[99.1605,0.2745],[99.1587,0.2679],[99.1527,0.2633],[99.1469,0.2645],[99.1403,0.2627],[99.1371,0.2577],[99.1373,0.2535],[99.1421,0.2499],[99.1511,0.2491],[99.1591,0.245],[99.169,0.233],[99.1734,0.2427],[99.1734,0.248],[99.178,0.2548],[99.1843,0.2604],[99.1873,0.2661],[99.1926,0.2698]]]}},{"type":"Feature","properties":{"mhid":"1332:27","alt_name":"KABUPATEN TAPANULI SELATAN","latitude":1.51667,"longitude":99.25,"sample_value":454},"geometry":{"type":"MultiLineString","coordinates":[[[98.7797,1.4316],[98.7851,1.4206],[98.7887,1.416],[98.8104,1.3934],[98.8235,1.3766],[98.8353,1.3582],[98.8398,1.3483],[98.8463,1.3287],[98.8504,1.325],[98.8544,1.3149],[98.8539,1.3076],[98.8499,1.3024],[98.8424,1.3013],[98.844,1.2973]]]}},{"type":"Feature","properties":{"mhid":"1332:28","alt_name":"KABUPATEN TAPANULI TENGAH","latitude":1.9,"longitude":98.66667,"sample_value":47},"geometry":{"type":"MultiLineString","coordinates":[[[98.4896,1.6884],[98.4928,1.6964],[98.4821,1.7034],[98.456,1.702],[98.4415,1.6696],[98.4439,1.6513],[98.4602,1.6372],[98.4742,1.6396],[98.4924,1.6311],[98.5003,1.6241],[98.5162,1.6241],[98.5325,1.6297],[98.5381,1.6335],[98.5484,1.6307],[98.5512,1.625],[98.5512,1.6204],[98.5638,1.6152],[98.5684,1.6185],[98.5731,1.6189],[98.5782,1.6147],[98.5796,1.6227],[98.5848,1.6246],[98.5983,1.6213],[98.6053,1.6114],[98.6109,1.6133],[98.6104,1.6185],[98.6057,1.6307],[98.6006,1.6335],[98.6006,1.6382],[98.5862,1.6457],[98.5861,1.6574],[98.5899,1.6626],[98.5871,1.6659],[98.5806,1.6607],[98.5792,1.6556],[98.5801,1.6504],[98.5764,1.6476],[98.5708,1.6481],[98.5661,1.6504],[98.5717,1.6654],[98.5717,1.6706],[98.5647,1.6711],[98.56,1.6781],[98.5549,1.6739],[98.5502,1.6795],[98.5479,1.6739],[98.547,1.6654],[98.539,1.6546],[98.5432,1.6518],[98.5344,1.641],[98.5283,1.6443],[98.5255,1.649],[98.5106,1.648],[98.505,1.6494],[98.504,1.6565],[98.497,1.6532],[98.4919,1.656],[98.4938,1.6598],[98.4933,1.6654],[98.4975,1.6701],[98.497,1.6771],[98.5012,1.6762],[98.5054,1.6814],[98.4994,1.6842],[98.4961,1.6823],[98.4896,1.6823],[98.4896,1.6884]],[[98.1804,2.0915],[98.1831,2.0948],[98.1789,2.0981],[98.1748,2.0922],[98.1804,2.0915]],[[98.1305,2.166],[98.1571,2.1452],[98.1621,2.142],[98.1701,2.1326],[98.1781,2.1255],[98.1852,2.1171],[98.1899,2.114],[98.2088,2.106],[98.2236,2.0968],[98.2348,2.0867],[98.2431,2.0756],[98.2555,2.0695],[98.2651,2.059],[98.2716,2.0456],[98.2722,2.0389],[98.265,2.0291],[98.2661,2.0267],[98.2733,2.0286],[98.2776,2.0274],[98.2804,2.0305],[98.2777,2.0365],[98.2814,2.0421],[98.287,2.0435],[98.3037,2.0371],[98.3079,2.0334],[98.3126,2.0345],[98.3126,2.0396],[98.3183,2.0446],[98.3285,2.0422],[98.3364,2.0457],[98.3433,2.045],[98.3545,2.0372],[98.3645,2.0262],[98.3687,2.0181],[98.3631,2.01],[98.357,2.0033],[98.3646,2.0048],[98.3741,2.0162],[98.3807,2.0146],[98.3925,2.0047],[98.3967,2.0076],[98.4025,2.0083],[98.4076,2.0066],[98.4166,2.0061],[98.4221,2.009],[98.4329,2.0066],[98.447,1.9997],[98.4615,1.9883],[98.4773,1.974],[98.4827,1.9711],[98.4906,1.9633],[98.5001,1.9508],[98.5002,1.9427],[98.5022,1.9407],[98.5077,1.9421],[98.5125,1.9394],[98.5168,1.9328],[98.5248,1.926],[98.5316,1.9164],[98.5432,1.9071],[98.5532,1.8912],[98.5582,1.886],[98.561,1.8809],[98.562,1.8688],[98.5712,1.8623],[98.5744,1.8648],[98.5823,1.8619],[98.591,1.8542],[98.5948,1.8475],[98.5995,1.8457],[98.6069,1.8392],[98.6213,1.8192],[98.6405,1.7988],[98.6537,1.7805],[98.6629,1.7637],[98.6671,1.7548],[98.6725,1.746],[98.6792,1.7385],[98.6851,1.7345],[98.7016,1.7289],[98.7167,1.7213],[98.7193,1.7214],[98.7232,1.7158],[98.7278,1.7184],[98.736,1.7204],[98.7394,1.7317],[98.7287,1.7315],[98.7287,1.7354],[98.733,1.7478],[98.7326,1.7526],[98.7289,1.7572],[98.728,1.7659],[98.7217,1.7571],[98.7179,1.7538],[98.7095,1.7631],[98.7023,1.7692],[98.6882,1.768],[98.685,1.772],[98.6817,1.7716],[98.681,1.7668],[98.675,1.7693],[98.6713,1.773],[98.6819,1.7745],[98.6979,1.7709],[98.6989,1.777],[98.7071,1.7856],[98.7246,1.7796],[98.7278,1.7745],[98.7385,1.7779],[98.7424,1.7817],[98.7459,1.7723],[98.7526,1.7643],[98.7589,1.7648],[98.7683,1.7607],[98.7687,1.7564]],[[98.7962,1.7216],[98.7891,1.7194],[98.7849,1.7225],[98.7804,1.7159],[98.7808,1.7121],[98.7843,1.7095],[98.7817,1.7009],[98.785,1.7005],[98.7869,1.6907],[98.7948,1.6828],[98.8017,1.6854],[98.8075,1.6892],[98.8114,1.6892],[98.8254,1.6778],[98.8283,1.6677],[98.8279,1.6641],[98.8208,1.6597],[98.829,1.659],[98.8381,1.6477],[98.84,1.6417],[98.8401,1.6291],[98.833,1.6272],[98.8277,1.6151],[98.8231,1.6083],[98.8206,1.6009],[98.8134,1.6034],[98.807,1.6035],[98.8023,1.6004],[98.7997,1.5956],[98.7995,1.5878],[98.7955,1.5835],[98.7992,1.5784],[98.8075,1.5782],[98.809,1.5716],[98.8073,1.5679],[98.7944,1.5705],[98.7906,1.5733],[98.7892,1.5799],[98.7826,1.5809],[98.781,1.5754],[98.7747,1.5697],[98.7724,1.5646],[98.7751,1.5577],[98.7735,1.5509],[98.7692,1.5438],[98.7697,1.5364],[98.7663,1.5285],[98.759,1.5304],[98.7525,1.5376],[98.748,1.5409],[98.7417,1.5526],[98.7414,1.5572],[98.7311,1.5682],[98.723,1.568],[98.7191,1.5711],[98.712,1.5644],[98.7182,1.5532],[98.7252,1.5484],[98.7291,1.5314],[98.7332,1.5242],[98.7377,1.5217],[98.7445,1.5103],[98.7595,1.5018],[98.7618,1.4998],[98.7664,1.4907],[98.7755,1.4642],[98.7768,1.4511],[98.776,1.4458],[98.7797,1.4316]]]}},{"type":"Feature","properties":{"mhid":"1332:29","alt_name":"KABUPATEN TAPANULI UTARA","latitude":2.0028,"longitude":99.0707,"sample_value":710},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:30","alt_name":"KABUPATEN TOBA SAMOSIR","latitude":2.39793,"longitude":99.21678,"sample_value":183},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:31","alt_name":"KABUPATEN LABUHAN BATU","latitude":2.26667,"longitude":100.1,"sample_value":525},"geometry":{"type":"MultiLineString","coordinates":[[[100.1253,2.5481],[100.1238,2.5589],[100.1243,2.5707],[100.1213,2.5825],[100.1192,2.6001],[100.1187,2.6174],[100.119,2.6398],[100.1153,2.6368],[100.1132,2.625],[100.1141,2.6092],[100.1131,2.6027],[100.1154,2.5768],[100.1162,2.5601],[100.118,2.5511],[100.1253,2.5481]],[[100.3228,2.5452],[100.321,2.5511],[100.3006,2.567],[100.2958,2.5679],[100.2945,2.5726],[100.286,2.576],[100.2754,2.5905],[100.272,2.5979],[100.2702,2.6135],[100.2669,2.6145],[100.2629,2.6192],[100.2573,2.6211],[100.2483,2.6279],[100.2352,2.6425],[100.2294,2.6603],[100.2295,2.6646],[100.2225,2.6786],[100.2241,2.6859],[100.221,2.6933],[100.2201,2.7052],[100.2118,2.7087],[100.203,2.7097],[100.1959,2.7119],[100.1853,2.7117],[100.1709,2.7095],[100.1597,2.7043],[100.1476,2.6959],[100.1354,2.6836],[100.1236,2.6618],[100.1227,2.6589],[100.1225,2.6425],[100.1212,2.625],[100.1215,2.6147],[100.1231,2.606],[100.1263,2.5968],[100.129,2.5813],[100.1319,2.5728],[100.1366,2.5433],[100.1132,2.5458],[100.1045,2.5457],[100.0943,2.6153],[100.1001,2.6745],[100.0963,2.6861],[100.0907,2.6955],[100.0812,2.7046],[100.0764,2.7131],[100.07,2.7184],[100.0596,2.7302],[100.0492,2.7358],[100.0492,2.7328]]]}},{"type":"Feature","properties":{"mhid":"1332:32","alt_name":"KABUPATEN ASAHAN","latitude":2.78333,"longitude":99.55,"sample_value":191},"geometry":{"type":"MultiLineString","coordinates":[[[99.9847,2.8527],[99.9868,2.8554],[99.9868,2.8639],[99.9885,2.8745],[99.9874,2.8832],[99.9885,2.9018],[99.9903,2.9125],[99.9949,2.9332],[99.9953,2.9386],[99.9935,2.9455],[99.9929,2.9539],[99.99,2.9579],[99.9824,2.9576],[99.9822,2.953],[99.9787,2.9425],[99.9759,2.9502],[99.9603,2.9571],[99.9563,2.9613],[99.9504,2.9631],[99.9345,2.9738],[99.9211,2.9855],[99.9151,2.992],[99.9084,3.0014],[99.9063,3.0024],[99.8942,3.0239],[99.8945,3.0266],[99.8908,3.0376],[99.8804,3.0354],[99.8691,3.029],[99.86,3.0353],[99.8563,3.0413],[99.8491,3.0487],[99.8347,3.059],[99.8168,3.0773],[99.8105,3.0869],[99.8065,3.0895],[99.8003,3.0979],[99.7975,3.0996],[99.7947,3.1062],[99.7859,3.1146],[99.7816,3.125],[99.7777,3.1254],[99.7679,3.1367],[99.762,3.1492],[99.7578,3.1692],[99.7523,3.1708]]]}},{"type":"Feature","properties":{"mhid":"1332:33","alt_name":"KABUPATEN SIMALUNGUN","latitude":2.9,"longitude":99,"sample_value":961},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:34","alt_name":"KABUPATEN DAIRI","latitude":2.86667,"longitude":98.23333,"sample_value":340},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:35","alt_name":"KABUPATEN KARO","latitude":3.11667,"longitude":98.3,"sample_value":795},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:36","alt_name":"KABUPATEN DELI SERDANG","latitude":3.41667,"longitude":98.66667,"sample_value":379},"geometry":{"type":"MultiLineString","coordinates":[[[98.7047,3.7905],[98.7052,3.7954],[98.7088,3.7999],[98.7041,3.8084],[98.7009,3.8199],[98.701,3.8253],[98.6979,3.837],[98.6969,3.8621],[98.6986,3.8674],[98.696,3.8715],[98.6977,3.8744],[98.6907,3.8854],[98.686,3.8901],[98.6823,3.8983],[98.6725,3.9083],[98.669,3.9096],[98.665,3.9042],[98.6608,3.9078]],[[98.9425,3.6749],[98.9299,3.6781],[98.9233,3.6822],[98.9119,3.6808],[98.9076,3.6787],[98.9,3.6811],[98.8903,3.6817],[98.8665,3.689],[98.8472,3.6989],[98.8387,3.7014],[98.8308,3.7019],[98.8239,3.7068],[98.7981,3.717],[98.7882,3.7183],[98.7823,3.7229],[98.7722,3.734],[98.7633,3.7506],[98.7596,3.7599],[98.7499,3.7649],[98.7393,3.7691],[98.7309,3.7694],[98.7253,3.7732],[98.7189,3.7717],[98.716,3.7677],[98.707,3.7726]]]}},{"type":"Feature","properties":{"mhid":"1332:37","alt_name":"KABUPATEN LANGKAT","latitude":3.71667,"longitude":98.21667,"sample_value":902},"geometry":{"type":"MultiLineString","coordinates":[[[98.5699,3.9423],[98.5652,3.9468],[98.5583,3.9391],[98.568,3.9397],[98.5699,3.9423]],[[98.2025,4.1308],[98.1928,4.1285],[98.1849,4.1185],[98.1842,4.1143],[98.1964,4.1161],[98.1996,4.1206],[98.2034,4.1191],[98.2052,4.1271],[98.2025,4.1308]],[[98.2042,4.1374],[98.2021,4.1374],[98.196,4.1315],[98.2031,4.1314],[98.2042,4.1374]],[[98.178,4.1281],[98.1858,4.1398],[98.1833,4.1432],[98.1793,4.1411],[98.1751,4.1324],[98.178,4.1281]],[[98.2619,4.1761],[98.256,4.176],[98.2506,4.174],[98.243,4.1752],[98.2443,4.1693],[98.2358,4.1567],[98.2351,4.1507],[98.2326,4.147],[98.2353,4.1435],[98.2445,4.1409],[98.2526,4.1333],[98.2595,4.1335],[98.2625,4.139],[98.2712,4.1409],[98.2723,4.1432],[98.2704,4.1505],[98.2744,4.16],[98.2748,4.1667],[98.2731,4.1716],[98.2619,4.1761]],[[98.6608,3.9078],[98.658,3.9118],[98.6478,3.9136],[98.6365,3.9178],[98.6299,3.9176],[98.6241,3.9126],[98.6186,3.9151],[98.6109,3.9135],[98.5997,3.9161],[98.598,3.9198],[98.5911,3.9236],[98.583,3.9243],[98.5798,3.9272],[98.5795,3.9329],[98.5716,3.9396],[98.5573,3.9385],[98.5551,3.9441],[98.5585,3.9498],[98.5547,3.9637],[98.5578,3.9686],[98.5515,3.9831],[98.5448,3.9832],[98.5406,3.9889],[98.5381,3.9955],[98.5425,4.0077],[98.5362,4.0128],[98.5303,4.0153],[98.5201,4.0167],[98.5185,4.0195],[98.5119,4.0189],[98.5085,4.0155],[98.5023,4.0177],[98.4959,4.0169],[98.4922,4.0123],[98.4886,4.012],[98.4864,4.0197],[98.4921,4.0288],[98.489,4.0313],[98.4779,4.0364],[98.4728,4.0363],[98.4627,4.04],[98.4501,4.0411],[98.4454,4.0393],[98.4378,4.0421],[98.4344,4.0411],[98.4294,4.0468],[98.4233,4.0507],[98.4023,4.0707],[98.3948,4.0757],[98.3886,4.0778],[98.3829,4.0752],[98.3704,4.0733],[98.36,4.0755],[98.3548,4.0781],[98.3487,4.0778],[98.3409,4.0756],[98.3277,4.0748],[98.3174,4.073],[98.3113,4.0686],[98.3072,4.0902],[98.2984,4.1063],[98.2818,4.1146],[98.2754,4.1202],[98.2648,4.1236],[98.2567,4.1247],[98.2492,4.1304],[98.2428,4.1298],[98.2363,4.1312],[98.2277,4.1286],[98.2204,4.1277],[98.207,4.1198],[98.2048,4.1141],[98.1994,4.1077],[98.1947,4.1121],[98.188,4.1116],[98.1812,4.1072],[98.1725,4.0957],[98.1678,4.0867],[98.1611,4.0834],[98.1641,4.0935],[98.1691,4.0997],[98.1736,4.1138],[98.1748,4.1228],[98.1737,4.1333],[98.178,4.1444],[98.1739,4.148],[98.1574,4.1529],[98.1702,4.1574],[98.1684,4.1603],[98.1821,4.1673],[98.1843,4.1741],[98.1966,4.1735],[98.2052,4.1779],[98.206,4.1797],[98.2161,4.1819],[98.2227,4.1818],[98.2365,4.1868],[98.2382,4.1913],[98.2448,4.1864],[98.2544,4.2032],[98.2507,4.2058],[98.2469,4.2222],[98.2462,4.2342],[98.2485,4.2437],[98.2491,4.253],[98.2437,4.2707],[98.2469,4.2768],[98.2512,4.2792],[98.2511,4.2904]]]}},{"type":"Feature","properties":{"mhid":"1332:38","alt_name":"KABUPATEN NIAS SELATAN","latitude":0.77,"longitude":97.75,"sample_value":55},"geometry":{"type":"MultiLineString","coordinates":[[[98.5018,-0.5947],[98.4938,-0.6014],[98.4886,-0.6097],[98.4897,-0.6192],[98.4993,-0.6294],[98.5064,-0.6352],[98.5178,-0.6388],[98.5209,-0.6355],[98.5209,-0.6202],[98.5138,-0.611],[98.5138,-0.605],[98.5118,-0.6003],[98.5061,-0.5958],[98.5018,-0.5947]],[[98.5209,-0.5016],[98.525,-0.4967],[98.5213,-0.493],[98.5177,-0.4962],[98.5171,-0.5018],[98.5209,-0.5016]],[[98.5786,-0.3274],[98.5708,-0.3304],[98.5707,-0.3339],[98.5778,-0.3351],[98.5786,-0.3274]],[[98.3899,-0.2759],[98.3881,-0.2671],[98.3893,-0.2638],[98.3829,-0.2601],[98.3809,-0.262],[98.3814,-0.2694],[98.3865,-0.2755],[98.3899,-0.2759]],[[98.4286,-0.2494],[98.4219,-0.2421],[98.4168,-0.2407],[98.4134,-0.2428],[98.4163,-0.2509],[98.4244,-0.2576],[98.4231,-0.2632],[98.4288,-0.268],[98.4302,-0.278],[98.4351,-0.2826],[98.4401,-0.2839],[98.4414,-0.2884],[98.4408,-0.3008],[98.439,-0.3049],[98.4338,-0.3068],[98.4315,-0.3127],[98.4283,-0.3114],[98.4236,-0.3168],[98.418,-0.3178],[98.4136,-0.3127],[98.4086,-0.3136],[98.4058,-0.3206],[98.3998,-0.3231],[98.3956,-0.3291],[98.3947,-0.3374],[98.3883,-0.3389],[98.3839,-0.3426],[98.384,-0.3493],[98.3816,-0.353],[98.3825,-0.3696],[98.3801,-0.374],[98.3726,-0.3805],[98.3744,-0.3891],[98.3743,-0.3992],[98.378,-0.408],[98.3781,-0.4432],[98.3761,-0.4579],[98.3704,-0.4673],[98.3649,-0.4653],[98.3549,-0.4706],[98.3559,-0.4759],[98.3522,-0.4801],[98.355,-0.4881],[98.3512,-0.4976],[98.345,-0.4968],[98.3468,-0.5039],[98.345,-0.5099],[98.3491,-0.514],[98.3452,-0.5189],[98.3365,-0.5227],[98.3266,-0.522],[98.3236,-0.512],[98.3203,-0.5076],[98.3161,-0.5125],[98.3011,-0.5146],[98.2884,-0.524],[98.2986,-0.5301],[98.3024,-0.5307],[98.3137,-0.5293],[98.321,-0.53],[98.3314,-0.5355],[98.3348,-0.5397],[98.349,-0.5423],[98.3521,-0.5456],[98.3594,-0.5457],[98.3641,-0.5491],[98.3797,-0.5574],[98.3872,-0.5599],[98.3977,-0.5654],[98.4108,-0.5796],[98.4148,-0.5859],[98.4145,-0.5959],[98.4201,-0.5974],[98.4257,-0.5918],[98.4256,-0.5764],[98.4237,-0.57],[98.4163,-0.5677],[98.4156,-0.5653],[98.417,-0.5543],[98.4236,-0.5443],[98.4374,-0.538],[98.4463,-0.5393],[98.4497,-0.545],[98.4617,-0.5414],[98.4681,-0.5322],[98.4741,-0.5324],[98.4796,-0.5387],[98.4793,-0.5435],[98.4732,-0.5519],[98.4697,-0.5607],[98.4686,-0.5699],[98.4696,-0.5741],[98.4784,-0.5674],[98.4851,-0.5573],[98.4851,-0.5531],[98.4885,-0.5506],[98.4923,-0.5525],[98.4892,-0.559],[98.488,-0.5686],[98.4927,-0.5725],[98.4979,-0.568],[98.5073,-0.5521],[98.5063,-0.5423],[98.5004,-0.5383],[98.4968,-0.532],[98.4841,-0.5202],[98.4812,-0.5156],[98.4854,-0.5075],[98.4899,-0.5069],[98.4972,-0.5024],[98.4981,-0.4999],[98.5057,-0.4939],[98.5052,-0.4821],[98.5086,-0.4783],[98.5069,-0.4675],[98.5045,-0.4645],[98.5031,-0.4554],[98.5033,-0.4483],[98.5086,-0.439],[98.5077,-0.4336],[98.5049,-0.43],[98.5076,-0.4254],[98.5107,-0.4261],[98.5113,-0.4195],[98.5144,-0.4142],[98.5127,-0.408],[98.5075,-0.4044],[98.5,-0.3973],[98.5041,-0.3905],[98.5058,-0.3966],[98.5137,-0.3903],[98.5174,-0.3846],[98.5222,-0.3804],[98.5181,-0.3776],[98.5244,-0.372],[98.5214,-0.366],[98.5224,-0.3599],[98.5157,-0.3483],[98.5073,-0.3451],[98.5061,-0.3397],[98.5013,-0.3369],[98.4993,-0.3226],[98.492,-0.3141],[98.4934,-0.3101],[98.4906,-0.3014],[98.484,-0.2948],[98.4789,-0.2919],[98.4736,-0.286],[98.4721,-0.2814],[98.4671,-0.2786],[98.4655,-0.2737],[98.4622,-0.2716],[98.4582,-0.2644],[98.4509,-0.2618],[98.4512,-0.254],[98.4474,-0.2475],[98.4416,-0.2455],[98.4286,-0.2494]],[[98.5275,-0.1478],[98.527,-0.1421],[98.5147,-0.137],[98.518,-0.1427],[98.5223,-0.1464],[98.5275,-0.1478]],[[98.1896,-0.1429],[98.1963,-0.1355],[98.2033,-0.1322],[98.2078,-0.122],[98.2058,-0.1117],[98.199,-0.1069],[98.1849,-0.1156],[98.1823,-0.118],[98.1832,-0.1322],[98.1857,-0.1417],[98.1896,-0.1429]],[[98.2284,-0.1093],[98.2287,-0.104],[98.2259,-0.1008],[98.2213,-0.101],[98.2196,-0.1056],[98.2237,-0.111],[98.2284,-0.1093]],[[98.4853,-0.1214],[98.486,-0.1116],[98.4788,-0.1037],[98.4759,-0.0989],[98.4708,-0.1014],[98.4699,-0.1065],[98.472,-0.1108],[98.4775,-0.1137],[98.4794,-0.1205],[98.4853,-0.1214]],[[98.4929,-0.112],[98.4933,-0.1086],[98.4876,-0.0985],[98.4861,-0.1029],[98.4885,-0.1096],[98.4929,-0.112]],[[98.2871,-0.0982],[98.2812,-0.0996],[98.2811,-0.1053],[98.2854,-0.1098],[98.2893,-0.1014],[98.2871,-0.0982]],[[98.3115,-0.0955],[98.3027,-0.0965],[98.3015,-0.1028],[98.3046,-0.1086],[98.3042,-0.1119],[98.3086,-0.1166],[98.3159,-0.1166],[98.3216,-0.1131],[98.3166,-0.1049],[98.3162,-0.0971],[98.3115,-0.0955]],[[98.2638,-0.1005],[98.2651,-0.0937],[98.259,-0.0949],[98.2601,-0.1009],[98.2638,-0.1005]],[[98.3378,-0.0986],[98.3367,-0.0955],[98.3291,-0.0913],[98.3248,-0.0935],[98.3233,-0.0988],[98.3183,-0.1035],[98.3223,-0.1131],[98.3194,-0.1172],[98.3203,-0.1253],[98.3261,-0.1324],[98.3363,-0.137],[98.3429,-0.1383],[98.341,-0.1302],[98.3356,-0.1266],[98.3369,-0.1215],[98.3343,-0.1069],[98.3378,-0.0986]],[[98.3123,-0.0925],[98.3107,-0.0896],[98.3046,-0.0887],[98.3038,-0.0947],[98.3103,-0.0946],[98.3123,-0.0925]],[[97.8898,-0.0621],[97.8751,-0.0617],[97.872,-0.0627],[97.8638,-0.0612],[97.8578,-0.0622],[97.8408,-0.0628],[97.8371,-0.0642],[97.8377,-0.0696],[97.845,-0.0781],[97.8503,-0.08],[97.8545,-0.0891],[97.8633,-0.0929],[97.867,-0.0919],[97.8762,-0.0961],[97.8777,-0.1005],[97.8833,-0.1046],[97.8885,-0.1062],[97.8988,-0.1006],[97.8992,-0.0931],[97.8922,-0.081],[97.8898,-0.0621]],[[98.3126,-0.0464],[98.3119,-0.0526],[98.3173,-0.0579],[98.3179,-0.0645],[98.3134,-0.0667],[98.3036,-0.0594],[98.2992,-0.0588],[98.2958,-0.0644],[98.2955,-0.0697],[98.2978,-0.0726],[98.3041,-0.0725],[98.3083,-0.0781],[98.3162,-0.0801],[98.3248,-0.0903],[98.3322,-0.0906],[98.3481,-0.0973],[98.3493,-0.0936],[98.3536,-0.0921],[98.3568,-0.0878],[98.3519,-0.0828],[98.3454,-0.081],[98.3468,-0.0738],[98.3443,-0.0689],[98.3368,-0.0683],[98.3336,-0.0716],[98.3309,-0.0661],[98.3317,-0.0597],[98.3262,-0.0629],[98.3242,-0.0614],[98.3275,-0.0534],[98.3126,-0.0464]],[[98.2834,-0.0535],[98.2845,-0.0489],[98.2817,-0.0436],[98.2768,-0.0389],[98.2746,-0.0334],[98.2699,-0.0332],[98.2642,-0.0396],[98.2663,-0.0442],[98.2631,-0.058],[98.267,-0.0685],[98.2762,-0.077],[98.282,-0.0865],[98.2822,-0.0931],[98.2858,-0.0933],[98.2908,-0.08],[98.2873,-0.0649],[98.2834,-0.0535]],[[98.5253,-0.0313],[98.5275,-0.0383],[98.5263,-0.0564],[98.5289,-0.057],[98.5339,-0.0626],[98.5445,-0.0713],[98.5458,-0.0617],[98.5392,-0.0609],[98.5355,-0.0558],[98.5326,-0.0383],[98.5294,-0.0323],[98.5253,-0.0313]],[[98.5064,-0.0509],[98.5025,-0.0379],[98.4984,-0.0316],[98.492,-0.0282],[98.4863,-0.0357],[98.4879,-0.0404],[98.4885,-0.0494],[98.4933,-0.0649],[98.4997,-0.0707],[98.5029,-0.0682],[98.5041,-0.0519],[98.5064,-0.0509]],[[98.386,0.0064],[98.3812,0.0078],[98.3768,0.0025],[98.3705,-0.0001],[98.3598,0.0019],[98.3535,0.0061],[98.3412,0.0022],[98.3337,-0.0022],[98.3291,-0.0083],[98.3247,-0.0092],[98.3212,-0.0142],[98.3039,-0.0147],[98.2952,-0.0181],[98.2982,-0.0236],[98.3055,-0.0236],[98.313,-0.0258],[98.319,-0.0321],[98.3268,-0.0305],[98.327,-0.0354],[98.331,-0.0365],[98.3384,-0.035],[98.3424,-0.0361],[98.3511,-0.0435],[98.3516,-0.0474],[98.3623,-0.0587],[98.3622,-0.0647],[98.3649,-0.0687],[98.3667,-0.0761],[98.3699,-0.0814],[98.3699,-0.0857],[98.3747,-0.0934],[98.3769,-0.0999],[98.3675,-0.1039],[98.3681,-0.1078],[98.3745,-0.1153],[98.3783,-0.1165],[98.3882,-0.1265],[98.3895,-0.1371],[98.3933,-0.1402],[98.3986,-0.1414],[98.4016,-0.1506],[98.4081,-0.1538],[98.414,-0.1607],[98.4139,-0.1675],[98.4199,-0.168],[98.4229,-0.1707],[98.4255,-0.1768],[98.4237,-0.1844],[98.4305,-0.1841],[98.4335,-0.1862],[98.4357,-0.1931],[98.4307,-0.1973],[98.4313,-0.2022],[98.4363,-0.2116],[98.4439,-0.2191],[98.4495,-0.2226],[98.4493,-0.2265],[98.4645,-0.2433],[98.4703,-0.2506],[98.4735,-0.2601],[98.4855,-0.2755],[98.5012,-0.2931],[98.506,-0.2963],[98.5054,-0.3043],[98.5035,-0.3083],[98.5097,-0.3134],[98.5101,-0.3191],[98.5136,-0.3223],[98.5201,-0.3228],[98.5247,-0.3307],[98.5249,-0.3373],[98.5317,-0.3494],[98.536,-0.3529],[98.538,-0.3636],[98.5423,-0.3671],[98.544,-0.3753],[98.548,-0.3828],[98.549,-0.3901],[98.5539,-0.392],[98.5591,-0.3884],[98.5585,-0.3796],[98.5442,-0.3644],[98.5447,-0.3528],[98.5415,-0.3481],[98.5461,-0.3421],[98.5496,-0.3416],[98.5532,-0.3325],[98.5589,-0.3307],[98.5662,-0.3317],[98.5697,-0.3242],[98.5665,-0.3145],[98.5716,-0.3051],[98.5734,-0.2971],[98.5723,-0.2905],[98.5732,-0.2798],[98.5677,-0.2767],[98.5658,-0.2705],[98.5613,-0.2665],[98.559,-0.2587],[98.5541,-0.2567],[98.5532,-0.253],[98.5451,-0.2447],[98.543,-0.2447],[98.5265,-0.2317],[98.5209,-0.2314],[98.5165,-0.2291],[98.5139,-0.2253],[98.5093,-0.2236],[98.5081,-0.215],[98.5043,-0.2149],[98.4979,-0.2108],[98.4933,-0.2096],[98.4967,-0.1998],[98.4959,-0.189],[98.4903,-0.1819],[98.4866,-0.18],[98.4855,-0.1734],[98.4825,-0.1707],[98.4851,-0.1607],[98.4786,-0.1576],[98.4771,-0.1472],[98.4813,-0.1415],[98.4863,-0.1391],[98.4872,-0.1354],[98.4796,-0.1351],[98.4844,-0.1297],[98.4838,-0.1231],[98.4779,-0.1205],[98.477,-0.1147],[98.471,-0.1117],[98.4684,-0.1042],[98.4707,-0.0945],[98.4666,-0.0891],[98.4577,-0.0843],[98.4542,-0.0781],[98.4461,-0.0738],[98.4439,-0.0679],[98.4457,-0.0659],[98.443,-0.0587],[98.4374,-0.0541],[98.4376,-0.0508],[98.4318,-0.0436],[98.4242,-0.0365],[98.4152,-0.0214],[98.418,-0.0094],[98.418,-0.0048],[98.4153,0.0021],[98.4105,0.0007],[98.407,-0.0039],[98.403,-0.0054],[98.3959,-0.0143],[98.3948,-0.0074],[98.391,-0.0047],[98.392,0.0045],[98.386,0.0064]],[[98.2346,0.0072],[98.2286,0.009],[98.2214,0.0068],[98.2169,0.002],[98.2172,-0.0076],[98.2214,-0.0092],[98.23,0.0003],[98.2329,0.0017],[98.2346,0.0072]],[[98.2491,-0.0008],[98.2524,0.0029],[98.2638,0.0081],[98.2661,0.0114],[98.261,0.0148],[98.2542,0.0124],[98.2451,0.0027],[98.2491,-0.0008]],[[98.2357,0.0512],[98.2403,0.0545],[98.2387,0.0603],[98.2278,0.0638],[98.2293,0.0554],[98.2357,0.0512]],[[98.6303,0.0652],[98.639,0.0686],[98.6399,0.0721],[98.6349,0.0736],[98.6293,0.0688],[98.6303,0.0652]],[[98.6127,0.1813],[98.6087,0.1798],[98.6005,0.1798],[98.595,0.1764],[98.5817,0.1736],[98.576,0.1759],[98.5666,0.1736],[98.5604,0.1686],[98.5552,0.1615],[98.5512,0.1615],[98.5487,0.1571],[98.5369,0.1474],[98.5281,0.1448],[98.5253,0.1408],[98.5263,0.133],[98.531,0.1265],[98.5304,0.1168],[98.5326,0.1134],[98.5325,0.1085],[98.5371,0.1012],[98.5426,0.1014],[98.5469,0.0993],[98.5489,0.0951],[98.5557,0.0907],[98.5583,0.0909],[98.5638,0.0963],[98.576,0.0957],[98.5798,0.0932],[98.5862,0.0939],[98.5891,0.0897],[98.596,0.0895],[98.6024,0.0935],[98.6066,0.0898],[98.611,0.0894],[98.6163,0.0839],[98.624,0.0842],[98.6342,0.0795],[98.6432,0.0818],[98.654,0.0732],[98.6653,0.0737],[98.6671,0.0769],[98.6734,0.081],[98.679,0.0763],[98.6855,0.0791],[98.6911,0.0752],[98.6989,0.0762],[98.7039,0.0795],[98.7146,0.0784],[98.718,0.0767],[98.7264,0.076],[98.7315,0.0721],[98.7429,0.0767],[98.7546,0.0738],[98.7577,0.0774],[98.7672,0.0804],[98.77,0.0834],[98.7687,0.0885],[98.78,0.0958],[98.7887,0.0962],[98.7967,0.089],[98.8007,0.0913],[98.8087,0.0895],[98.8139,0.0924],[98.8184,0.0918],[98.8236,0.0852],[98.8324,0.0807],[98.854,0.0807],[98.8481,0.0843],[98.8462,0.0912],[98.8538,0.0977],[98.8524,0.1068],[98.8547,0.1135],[98.8505,0.1229],[98.846,0.1272],[98.8423,0.1346],[98.8302,0.1421],[98.8207,0.1532],[98.8132,0.1581],[98.8116,0.1606],[98.8015,0.1666],[98.8004,0.1703],[98.7941,0.1724],[98.7895,0.1667],[98.7788,0.1702],[98.7769,0.1739],[98.7712,0.1718],[98.762,0.1642],[98.762,0.1619],[98.7546,0.1608],[98.754,0.156],[98.7422,0.165],[98.7377,0.1644],[98.7317,0.1595],[98.7202,0.1578],[98.7131,0.1608],[98.7134,0.1685],[98.7088,0.1783],[98.7036,0.1756],[98.6923,0.1731],[98.6847,0.1729],[98.6819,0.1685],[98.6756,0.17],[98.6722,0.1727],[98.6626,0.1724],[98.6582,0.1757],[98.651,0.1747],[98.646,0.1763],[98.6351,0.1764],[98.6199,0.174],[98.6168,0.1792],[98.6127,0.1813]],[[97.5448,0.8872],[97.5475,0.888],[97.5534,0.8845],[97.5578,0.8787],[97.5563,0.8701],[97.5578,0.867],[97.5659,0.8621],[97.5777,0.8564],[97.5895,0.8486],[97.6026,0.8384],[97.6039,0.83],[97.6033,0.8254],[97.6077,0.8163],[97.6139,0.8151],[97.6207,0.8109],[97.6317,0.8002],[97.6338,0.7936],[97.6294,0.7896],[97.6388,0.7797],[97.6402,0.7658],[97.6355,0.7609],[97.6368,0.7586],[97.6452,0.759],[97.6476,0.7531],[97.6535,0.7459],[97.6553,0.7382],[97.6499,0.7333],[97.6559,0.7252],[97.6522,0.7141],[97.6586,0.7132],[97.6661,0.701],[97.6681,0.6869],[97.6634,0.6839],[97.6619,0.6756],[97.6665,0.6698],[97.6669,0.6629],[97.6709,0.659],[97.6755,0.6519],[97.6805,0.641],[97.6838,0.6384],[97.6912,0.6277],[97.6956,0.6172],[97.695,0.604],[97.6905,0.5981],[97.684,0.5985],[97.6829,0.5926],[97.6838,0.5849],[97.6949,0.5762],[97.7015,0.5649],[97.7101,0.5613],[97.7227,0.567],[97.7283,0.5668],[97.7322,0.5706],[97.7325,0.5782],[97.7397,0.5811],[97.745,0.5764],[97.745,0.5721],[97.7475,0.5671],[97.7409,0.5595],[97.744,0.5537],[97.7477,0.5555],[97.7537,0.5539],[97.7672,0.5579],[97.7719,0.5657],[97.771,0.5713],[97.7761,0.5794],[97.779,0.5803],[97.7855,0.5773],[97.7868,0.5679],[97.7814,0.5682],[97.7789,0.5638],[97.782,0.5527],[97.7853,0.5526],[97.7891,0.5568],[97.7899,0.5614],[97.7936,0.5617],[97.7947,0.5517],[97.8016,0.5596],[97.8045,0.5592],[97.8067,0.5521],[97.8143,0.5456],[97.8203,0.5434],[97.8277,0.5447],[97.8182,0.5583],[97.8224,0.5679],[97.8297,0.5648],[97.8294,0.5598],[97.8378,0.5596],[97.8366,0.57],[97.8447,0.5737],[97.8527,0.5883],[97.8604,0.5949],[97.8688,0.599],[97.8786,0.6012],[97.8852,0.6072],[97.8919,0.621],[97.8979,0.6231],[97.9002,0.63],[97.8952,0.6385],[97.896,0.6442],[97.893,0.6544],[97.8932,0.6632],[97.8959,0.6662],[97.8939,0.6769],[97.8961,0.681],[97.8981,0.6916],[97.8936,0.7015],[97.8932,0.7051],[97.8963,0.7093],[97.8975,0.715],[97.8914,0.7248],[97.8942,0.7366],[97.8884,0.7391],[97.8878,0.7465],[97.8915,0.7505],[97.8934,0.7582],[97.8904,0.7619],[97.8906,0.766],[97.8964,0.7769],[97.9119,0.7986],[97.9115,0.8026],[97.9076,0.8047],[97.9097,0.8153],[97.9047,0.8172],[97.8949,0.8265],[97.8981,0.8352],[97.8944,0.8422],[97.8977,0.8502],[97.8949,0.8572],[97.9039,0.8778],[97.9017,0.8847]]]}},{"type":"Feature","properties":{"mhid":"1332:39","alt_name":"KABUPATEN HUMBANG HASUNDUTAN","latitude":2.26551,"longitude":98.50376,"sample_value":775},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:40","alt_name":"KABUPATEN PAKPAK BHARAT","latitude":2.56667,"longitude":98.28333,"sample_value":44},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:41","alt_name":"KABUPATEN SAMOSIR","latitude":2.64025,"longitude":98.71525,"sample_value":156},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:42","alt_name":"KABUPATEN SERDANG BEDAGAI","latitude":3.36667,"longitude":99.03333,"sample_value":189},"geometry":{"type":"MultiLineString","coordinates":[[[99.3153,3.444],[99.3034,3.453],[99.3005,3.4514],[99.2967,3.4595],[99.2905,3.4649],[99.2831,3.4626],[99.2704,3.4676],[99.2623,3.475],[99.2575,3.4827],[99.2545,3.4852],[99.2481,3.4966],[99.2399,3.4996],[99.2396,3.5067],[99.2261,3.519],[99.2085,3.5303],[99.1663,3.554],[99.157,3.5582],[99.1445,3.5626],[99.1375,3.5629],[99.1248,3.567],[99.1162,3.5737],[99.1099,3.577],[99.1053,3.5816],[99.0811,3.6002],[99.0711,3.6093],[99.0637,3.6131],[99.0544,3.6194],[99.0379,3.624],[99.0228,3.6297],[99.0128,3.6352],[99.0124,3.6371],[98.9898,3.653],[98.9828,3.6562],[98.9638,3.6615],[98.9537,3.6697],[98.9516,3.673],[98.9425,3.6749]]]}},{"type":"Feature","properties":{"mhid":"1332:43","alt_name":"KABUPATEN BATU BARA","latitude":3.16166,"longitude":99.52652,"sample_value":812},"geometry":{"type":"MultiLineString","coordinates":[[[99.7523,3.1708],[99.7401,3.1733],[99.7285,3.1796],[99.7046,3.1978],[99.6882,3.2068],[99.6786,3.2094],[99.673,3.2076],[99.6667,3.2124],[99.6581,3.2136],[99.6431,3.2169],[99.6055,3.2274],[99.5962,3.2327],[99.5917,3.2337],[99.5879,3.2295],[99.5821,3.2326],[99.571,3.2336],[99.5587,3.2387],[99.5476,3.245],[99.5403,3.2509],[99.5345,3.2617],[99.5282,3.2684],[99.5179,3.2769],[99.5137,3.2817],[99.5116,3.2871],[99.5124,3.2916],[99.5051,3.2975],[99.5011,3.3024],[99.4984,3.3101],[99.4941,3.3143],[99.4865,3.3175],[99.4871,3.3199],[99.4852,3.3331],[99.4879,3.3415],[99.484,3.3479],[99.4733,3.3486],[99.4641,3.3521],[99.4548,3.358],[99.4523,3.3628],[99.4445,3.3705],[99.4361,3.3761],[99.4251,3.3807],[99.4217,3.3849],[99.4126,3.3852],[99.3902,3.3939],[99.368,3.3996],[99.3653,3.4027],[99.3559,3.409],[99.3465,3.4189],[99.3398,3.4237],[99.3317,3.4247],[99.3173,3.4371],[99.3153,3.444]]]}},{"type":"Feature","properties":{"mhid":"1332:47","alt_name":"KABUPATEN LABUHAN BATU UTARA","latitude":2.33349,"longitude":99.63776,"sample_value":238},"geometry":{"type":"MultiLineString","coordinates":[[[100.0492,2.7328],[100.0452,2.7377],[100.0344,2.7392],[100.0192,2.7334],[100.0061,2.7223],[99.9973,2.7092],[99.9905,2.6965],[99.9889,2.6789],[99.9876,2.6752],[99.9803,2.6721],[99.975,2.6715],[99.9688,2.674],[99.9633,2.6783],[99.9532,2.6912],[99.9512,2.6974],[99.956,2.714],[99.9602,2.7227],[99.9661,2.73],[99.9717,2.7342],[99.9779,2.7441],[99.9863,2.7473],[99.9909,2.7546],[99.9922,2.769],[99.9916,2.7798],[99.9939,2.7884],[99.9938,2.8166],[99.9948,2.8317],[99.9923,2.8337],[99.9888,2.8448],[99.9893,2.8509],[99.9847,2.8527]]]}},{"type":"Feature","properties":{"mhid":"1332:48","alt_name":"KABUPATEN NIAS UTARA","latitude":1.33037,"longitude":97.31964,"sample_value":818},"geometry":{"type":"MultiLineString","coordinates":[[[97.0965,1.2153],[97.0991,1.2081],[97.0991,1.2031],[97.0935,1.1993],[97.0987,1.1913],[97.1043,1.1965],[97.1023,1.2059],[97.0983,1.2151],[97.0965,1.2153]],[[97.0897,1.2333],[97.0823,1.2311],[97.0827,1.2231],[97.0803,1.2163],[97.0815,1.2095],[97.0859,1.2089],[97.0841,1.2151],[97.0863,1.2217],[97.0927,1.2321],[97.0897,1.2333]],[[97.1117,1.3589],[97.1013,1.3597],[97.1011,1.3535],[97.1063,1.3525],[97.1117,1.3589]],[[97.2587,1.4655],[97.2535,1.4643],[97.2511,1.4615],[97.2433,1.4637],[97.2369,1.4623],[97.2325,1.4559],[97.2335,1.4511],[97.2415,1.4555],[97.2427,1.4597],[97.2535,1.4601],[97.2597,1.4631],[97.2587,1.4655]],[[97.5213,1.4234],[97.5138,1.4307],[97.5104,1.4365],[97.5094,1.4445],[97.5075,1.4464],[97.4968,1.4484],[97.4932,1.4553],[97.4938,1.4595],[97.4884,1.4735],[97.4826,1.4794],[97.4726,1.4795],[97.4678,1.4731],[97.4555,1.4702],[97.4441,1.4722],[97.4395,1.4744],[97.4351,1.4823],[97.4328,1.4907],[97.4325,1.4999],[97.4268,1.5093],[97.424,1.5112],[97.4223,1.5178],[97.4135,1.5225],[97.4106,1.5161],[97.4114,1.505],[97.406,1.4998],[97.3952,1.4994],[97.3912,1.5039],[97.387,1.5046],[97.3866,1.5097],[97.3827,1.5135],[97.376,1.5108],[97.374,1.5155],[97.3785,1.5207],[97.3722,1.5259],[97.37,1.5302],[97.3534,1.5411],[97.3464,1.5406],[97.34,1.5369],[97.3361,1.5323],[97.3347,1.5232],[97.3427,1.5112],[97.3506,1.505],[97.3516,1.4973],[97.3486,1.4933],[97.349,1.4894],[97.3458,1.4819],[97.3397,1.4744],[97.3342,1.4714],[97.3305,1.4738],[97.319,1.461],[97.3081,1.4532],[97.2906,1.4465],[97.2876,1.4345],[97.2839,1.4257],[97.2755,1.4185],[97.2679,1.4161],[97.2607,1.4197],[97.2527,1.4117],[97.2429,1.4089],[97.2371,1.4095],[97.2283,1.4123],[97.2225,1.4061],[97.2127,1.4021],[97.202,1.4013],[97.2007,1.4061],[97.193,1.4098],[97.1941,1.4186],[97.1842,1.4154],[97.1776,1.4095],[97.1792,1.406],[97.1837,1.4072],[97.1838,1.3991],[97.18,1.3964],[97.178,1.4004],[97.1724,1.3955],[97.1701,1.4015],[97.1737,1.4049],[97.1729,1.408],[97.1632,1.4117],[97.1588,1.4188],[97.1493,1.4221],[97.1456,1.4257],[97.1337,1.4313],[97.1283,1.4249],[97.1241,1.4273],[97.1221,1.4229],[97.1135,1.4183],[97.1035,1.4215],[97.0907,1.4209],[97.0851,1.4181],[97.0823,1.4217],[97.0731,1.4177],[97.0681,1.4135],[97.0591,1.4125],[97.0621,1.4047],[97.0671,1.4009],[97.0693,1.3947],[97.0731,1.3903],[97.0775,1.3909],[97.0807,1.4043],[97.0833,1.4077],[97.0907,1.4083],[97.0975,1.4073],[97.1119,1.3989],[97.1265,1.3851],[97.1343,1.3803],[97.1401,1.3738],[97.1493,1.3678],[97.1553,1.3614],[97.1548,1.3591],[97.1603,1.3541],[97.167,1.3459],[97.1693,1.3379],[97.1758,1.3316],[97.1779,1.3278],[97.1836,1.3229],[97.1858,1.3162],[97.1908,1.311],[97.1921,1.3032],[97.1961,1.2925],[97.199,1.2926],[97.2058,1.287],[97.2087,1.2825],[97.2097,1.2759],[97.2121,1.2725],[97.2209,1.2729],[97.2305,1.2669],[97.2351,1.2583],[97.2387,1.2605],[97.2449,1.2612],[97.2503,1.2576],[97.2472,1.2501],[97.2552,1.2487],[97.2622,1.2424],[97.2639,1.2345],[97.2612,1.2292],[97.2562,1.2281],[97.2587,1.2231],[97.258,1.2162],[97.2611,1.2136],[97.2655,1.214],[97.267,1.2171],[97.2731,1.2161],[97.2854,1.2044],[97.2871,1.2009],[97.2853,1.194],[97.2921,1.1931],[97.3005,1.1808],[97.3008,1.1763],[97.298,1.1728],[97.3032,1.1694],[97.3066,1.1702],[97.3121,1.1679],[97.323,1.155],[97.3356,1.1352],[97.3444,1.1169],[97.3645,1.0875],[97.3695,1.0788]]]}},{"type":"Feature","properties":{"mhid":"1332:49","alt_name":"KABUPATEN NIAS BARAT","latitude":1.05966,"longitude":97.58606,"sample_value":855},"geometry":{"type":"MultiLineString","coordinates":[[[97.3462,0.8431],[97.3414,0.8427],[97.3358,0.8386],[97.3322,0.8313],[97.3337,0.826],[97.3383,0.8214],[97.3452,0.8174],[97.3493,0.8128],[97.3592,0.8111],[97.3616,0.815],[97.3572,0.8308],[97.3507,0.8331],[97.3512,0.8392],[97.3462,0.8431]],[[97.3799,0.8435],[97.3757,0.8393],[97.3793,0.8353],[97.3837,0.8357],[97.3839,0.8401],[97.3799,0.8435]],[[97.3225,0.8591],[97.3171,0.8599],[97.3103,0.8581],[97.3085,0.8545],[97.3121,0.8483],[97.3216,0.845],[97.3284,0.845],[97.333,0.8483],[97.3329,0.851],[97.3225,0.8591]],[[97.3769,0.8585],[97.3727,0.8627],[97.3653,0.8575],[97.3637,0.8521],[97.3695,0.8465],[97.3741,0.8481],[97.3813,0.8471],[97.3841,0.8517],[97.3849,0.8579],[97.3769,0.8585]],[[97.2869,0.8703],[97.2829,0.8673],[97.2865,0.8637],[97.2921,0.8671],[97.2869,0.8703]],[[97.3493,0.8742],[97.342,0.8735],[97.3353,0.8703],[97.3296,0.8633],[97.3319,0.8573],[97.3357,0.8572],[97.3488,0.8672],[97.3554,0.8688],[97.3493,0.8742]],[[97.2737,0.9153],[97.2679,0.9149],[97.2653,0.9125],[97.2667,0.9067],[97.2701,0.9047],[97.2793,0.8961],[97.2849,0.8975],[97.2845,0.9007],[97.2787,0.9077],[97.2783,0.9115],[97.2737,0.9153]],[[97.4303,0.9367],[97.4273,0.9367],[97.4247,0.9323],[97.4299,0.9303],[97.4303,0.9367]],[[97.3695,1.0788],[97.3725,1.0712],[97.3766,1.0649],[97.3782,1.0596],[97.3882,1.038],[97.3924,1.0249],[97.3976,1.015],[97.3991,1.0041],[97.4063,0.982],[97.4094,0.9686],[97.4105,0.9543],[97.4097,0.9487],[97.4051,0.9467],[97.4061,0.9399],[97.4105,0.9399],[97.4103,0.9451],[97.4171,0.9499],[97.4257,0.9483],[97.4312,0.9427],[97.4423,0.9438],[97.4542,0.9433],[97.47,0.9406],[97.4839,0.9391],[97.4915,0.9315],[97.4982,0.9305],[97.51,0.9218],[97.5114,0.9172],[97.5068,0.9128],[97.5075,0.9089],[97.5132,0.9057],[97.5158,0.9073],[97.5211,0.9053],[97.5341,0.8948],[97.541,0.893],[97.5448,0.8872]]]}},{"type":"Feature","properties":{"mhid":"1332:81","alt_name":"KABUPATEN INDRAGIRI HILIR","latitude":-0.33333,"longitude":103.16667,"sample_value":928},"geometry":{"type":"MultiLineString","coordinates":[[[103.3419,-0.642],[103.3392,-0.6418],[103.3338,-0.6461],[103.3319,-0.6509],[103.3248,-0.6596],[103.3162,-0.6664],[103.2786,-0.6738],[103.2696,-0.6761],[103.2628,-0.6792],[103.2541,-0.6811],[103.2407,-0.6812],[103.2355,-0.685],[103.2441,-0.6937],[103.254,-0.6975],[103.2737,-0.697],[103.2874,-0.7019],[103.3021,-0.7001],[103.3166,-0.6953],[103.3237,-0.6922],[103.3481,-0.6927],[103.3601,-0.6915],[103.3721,-0.6886],[103.3809,-0.6886],[103.3971,-0.6929],[103.4098,-0.685],[103.4145,-0.6796],[103.4209,-0.6664],[103.4186,-0.658],[103.4051,-0.6495],[103.3969,-0.6468],[103.3763,-0.6514],[103.3719,-0.6517],[103.3589,-0.6474],[103.3546,-0.6451],[103.3419,-0.642]],[[103.4293,-0.6063],[103.4268,-0.6038],[103.4196,-0.6032],[103.4038,-0.6057],[103.3921,-0.6112],[103.3761,-0.6109],[103.3626,-0.62],[103.3547,-0.6282],[103.3455,-0.6267],[103.3401,-0.6299],[103.3359,-0.6361]],[[103.3359,-0.6361],[103.3356,-0.6365],[103.3357,-0.6365]],[[103.3357,-0.6365],[103.3583,-0.6415],[103.3682,-0.646],[103.3754,-0.6465],[103.3868,-0.6422],[103.4042,-0.6373],[103.4134,-0.6365],[103.4215,-0.6308],[103.428,-0.6221],[103.4302,-0.613],[103.4293,-0.6063]],[[103.3677,-0.3744],[103.3524,-0.3686],[103.3308,-0.3567],[103.3192,-0.3616],[103.315,-0.3673],[103.3124,-0.3754],[103.3083,-0.3796],[103.3103,-0.3867],[103.3214,-0.3958],[103.3333,-0.3994],[103.336,-0.4033],[103.3355,-0.412],[103.3289,-0.4333],[103.3348,-0.4357],[103.3525,-0.4323],[103.3602,-0.4301],[103.3666,-0.4298],[103.3717,-0.432],[103.3764,-0.4371],[103.3787,-0.4422],[103.3818,-0.4608],[103.3852,-0.4741],[103.3921,-0.4949],[103.3922,-0.5002],[103.3951,-0.5106],[103.3989,-0.5154],[103.4125,-0.5197],[103.42,-0.5211],[103.4296,-0.517],[103.4443,-0.5132],[103.4559,-0.5055],[103.4619,-0.5057],[103.4678,-0.504],[103.4722,-0.5058],[103.4827,-0.5072],[103.4842,-0.5095],[103.5081,-0.5156],[103.5165,-0.5123],[103.5185,-0.5134],[103.5298,-0.5103],[103.5381,-0.5062],[103.5487,-0.4979],[103.5521,-0.4928],[103.5568,-0.4903],[103.5782,-0.4673],[103.6002,-0.4405],[103.6044,-0.4326],[103.6051,-0.4261],[103.6014,-0.4139],[103.5856,-0.3996],[103.5759,-0.3957],[103.5618,-0.3953],[103.5494,-0.3986],[103.5401,-0.3992],[103.5341,-0.397],[103.5274,-0.3916],[103.5239,-0.3871],[103.5179,-0.3725],[103.5113,-0.3688],[103.4747,-0.3805],[103.463,-0.3806],[103.4548,-0.3772],[103.4463,-0.3705],[103.4264,-0.3762],[103.4028,-0.3785],[103.3927,-0.3787],[103.3677,-0.3744]],[[103.3073,-0.252],[103.2935,-0.2486],[103.2805,-0.2441],[103.273,-0.2445],[103.2686,-0.2472],[103.2585,-0.2621],[103.2519,-0.2684],[103.2331,-0.2776],[103.2343,-0.28],[103.2467,-0.2834],[103.2514,-0.2897],[103.2633,-0.2923],[103.2705,-0.296],[103.2853,-0.3114],[103.2928,-0.3175],[103.3081,-0.3222],[103.322,-0.3303],[103.3362,-0.345],[103.3414,-0.3486],[103.3522,-0.3535],[103.3644,-0.3575],[103.376,-0.3591],[103.4078,-0.3575],[103.4264,-0.3582],[103.4372,-0.3553],[103.447,-0.3472],[103.4522,-0.3405],[103.4568,-0.3298],[103.4588,-0.322],[103.4593,-0.3132],[103.4439,-0.3045],[103.438,-0.3019],[103.4274,-0.3034],[103.4214,-0.3031],[103.4084,-0.2948],[103.4038,-0.2932],[103.3942,-0.2929],[103.3809,-0.2967],[103.3683,-0.29],[103.3616,-0.2848],[103.3565,-0.2841],[103.3482,-0.2846]],[[103.3482,-0.2846],[103.3469,-0.2847]],[[103.3469,-0.2847],[103.3445,-0.2848],[103.3444,-0.2796],[103.3498,-0.2721],[103.3524,-0.2651],[103.3503,-0.2605],[103.3432,-0.251],[103.3338,-0.2522],[103.3177,-0.2525],[103.3073,-0.252]],[[103.5699,-0.2209],[103.5546,-0.2161],[103.5387,-0.2183],[103.5323,-0.2224],[103.5267,-0.2283],[103.5118,-0.2471],[103.4748,-0.298],[103.4703,-0.3068],[103.4624,-0.334],[103.456,-0.3459],[103.4511,-0.3586],[103.4538,-0.365],[103.4631,-0.3728],[103.4685,-0.3732],[103.476,-0.3714],[103.5062,-0.3606],[103.5125,-0.3602],[103.5209,-0.3631],[103.5294,-0.374],[103.5353,-0.3853],[103.5427,-0.3878],[103.5627,-0.3833],[103.5794,-0.3839],[103.5835,-0.3853],[103.5963,-0.3949],[103.601,-0.3935],[103.6041,-0.3956],[103.614,-0.3919],[103.6267,-0.3886],[103.639,-0.3827],[103.6594,-0.3708],[103.6648,-0.366],[103.6725,-0.3642],[103.69,-0.3581],[103.694,-0.3547],[103.6989,-0.3552],[103.7156,-0.3504],[103.727,-0.349],[103.7394,-0.3461],[103.7516,-0.346],[103.7637,-0.3449],[103.7767,-0.3472],[103.7834,-0.3458],[103.7862,-0.3405],[103.7738,-0.3184],[103.7676,-0.3093],[103.7592,-0.2999],[103.742,-0.2858],[103.7361,-0.2817],[103.726,-0.2729],[103.717,-0.2624],[103.708,-0.2558],[103.6914,-0.2588],[103.6728,-0.2548],[103.6566,-0.2468],[103.6483,-0.2405],[103.644,-0.2352],[103.6421,-0.2284],[103.637,-0.2266],[103.6141,-0.2266],[103.6042,-0.2245],[103.5918,-0.2245],[103.5792,-0.2203],[103.5699,-0.2209]],[[103.4715,-0.2833],[103.4813,-0.2699],[103.4943,-0.2488],[103.5109,-0.2249],[103.52,-0.2125],[103.5222,-0.2083],[103.5177,-0.2028],[103.5125,-0.2003],[103.4994,-0.2043],[103.4793,-0.2063],[103.463,-0.2114],[103.4482,-0.2143],[103.4326,-0.2242],[103.424,-0.2311],[103.4072,-0.2394],[103.3817,-0.2447],[103.3563,-0.2476],[103.3445,-0.2508],[103.3529,-0.2635],[103.352,-0.2704],[103.3458,-0.2796],[103.3469,-0.2847]],[[103.3469,-0.2847],[103.347,-0.2849],[103.3482,-0.2846]],[[103.3482,-0.2846],[103.3527,-0.2834],[103.3616,-0.2835],[103.3686,-0.2887],[103.3792,-0.2946],[103.3826,-0.2948],[103.3928,-0.291],[103.4053,-0.2917],[103.4119,-0.2946],[103.4229,-0.3011],[103.4338,-0.2996],[103.4446,-0.301],[103.4588,-0.3102],[103.4606,-0.3097],[103.4642,-0.2974],[103.4715,-0.2833]],[[103.5559,-0.1748],[103.5431,-0.175],[103.532,-0.1765],[103.511,-0.1816],[103.4988,-0.1876],[103.4793,-0.1999],[103.4856,-0.2014],[103.4967,-0.2002],[103.5136,-0.1968],[103.5235,-0.2022],[103.5326,-0.2046],[103.5674,-0.194],[103.5692,-0.1875],[103.5675,-0.1797],[103.5621,-0.1756],[103.5559,-0.1748]],[[103.517,-0.1041],[103.5192,-0.1022],[103.5144,-0.0947],[103.5086,-0.0916],[103.5044,-0.0864],[103.4992,-0.086],[103.4925,-0.0887],[103.4898,-0.0964],[103.4836,-0.1026],[103.475,-0.1055],[103.4802,-0.1099],[103.4925,-0.1177],[103.4978,-0.1194],[103.5039,-0.119],[103.5054,-0.1163],[103.5054,-0.1045],[103.517,-0.1041]],[[103.5818,-0.0774],[103.5781,-0.0732],[103.5653,-0.0779],[103.5482,-0.078],[103.5409,-0.0834],[103.5273,-0.0879],[103.5167,-0.0941],[103.5213,-0.1026],[103.5155,-0.1063],[103.5067,-0.1058],[103.5066,-0.119],[103.519,-0.12],[103.5316,-0.1229],[103.5478,-0.1195],[103.5601,-0.115],[103.5854,-0.102],[103.591,-0.0972],[103.5937,-0.0903],[103.5868,-0.0855],[103.5818,-0.0774]],[[103.477,-0.0498],[103.4678,-0.0437],[103.4678,-0.049],[103.4652,-0.0563],[103.4694,-0.0576],[103.4736,-0.0534],[103.4775,-0.0532],[103.4824,-0.0582],[103.4847,-0.0698],[103.4827,-0.0763],[103.4892,-0.0806],[103.4915,-0.0848],[103.4979,-0.0826],[103.5058,-0.0839],[103.5165,-0.0906],[103.5286,-0.0816],[103.5238,-0.0776],[103.5193,-0.0784],[103.5115,-0.0829],[103.5065,-0.083],[103.5002,-0.0775],[103.5001,-0.0702],[103.487,-0.0619],[103.4809,-0.0533],[103.477,-0.0498]],[[103.6699,-0.0496],[103.6787,-0.0443],[103.6825,-0.0389],[103.6738,-0.0314],[103.664,-0.0212],[103.6384,-0.0145],[103.637,-0.0174],[103.6422,-0.0241],[103.6437,-0.032],[103.6491,-0.0441],[103.654,-0.046],[103.6567,-0.0501],[103.667,-0.0525],[103.6699,-0.0496]],[[103.6419,-0.0304],[103.6401,-0.0219],[103.6348,-0.0173],[103.63,-0.0167],[103.6147,-0.008],[103.6091,-0.0128],[103.601,-0.0177],[103.603,-0.0229],[103.6078,-0.0241],[103.6163,-0.0313],[103.6189,-0.0385],[103.6283,-0.0463],[103.6387,-0.0505],[103.6481,-0.0488],[103.6419,-0.0304]],[[103.5879,0.408],[103.5913,0.4125],[103.5911,0.4165],[103.5803,0.4323],[103.5651,0.4438],[103.556,0.448],[103.5455,0.4503],[103.5391,0.4476],[103.5408,0.4429],[103.5463,0.4364],[103.559,0.4252],[103.5675,0.4188],[103.5856,0.4078],[103.5879,0.408]],[[103.4424,-0.7396],[103.4373,-0.7375],[103.4355,-0.734],[103.4281,-0.7333],[103.4195,-0.7301],[103.4347,-0.7201],[103.4369,-0.7137],[103.4324,-0.7096],[103.423,-0.7056],[103.4025,-0.7054],[103.3936,-0.7032],[103.3758,-0.6951],[103.3673,-0.6953],[103.3596,-0.6973],[103.3289,-0.6976],[103.3201,-0.6989],[103.3139,-0.702],[103.2951,-0.7055],[103.2878,-0.7056],[103.2734,-0.7007],[103.2688,-0.6999],[103.2587,-0.7017],[103.2535,-0.7011],[103.2444,-0.6974],[103.2374,-0.6922],[103.2298,-0.6889],[103.2266,-0.6852],[103.2356,-0.6806],[103.2418,-0.6791],[103.2593,-0.6778],[103.2725,-0.6725],[103.2864,-0.6702],[103.2996,-0.6657],[103.3134,-0.6637],[103.3219,-0.6565],[103.3288,-0.6455],[103.3349,-0.6392],[103.3357,-0.6365]],[[103.3357,-0.6365],[103.3359,-0.6361]],[[103.3359,-0.6361],[103.3375,-0.631],[103.3444,-0.6261],[103.3537,-0.6272],[103.3694,-0.6125],[103.374,-0.6097],[103.3899,-0.6095],[103.406,-0.6031],[103.4159,-0.6012],[103.4211,-0.5977],[103.4266,-0.5912],[103.4316,-0.5812],[103.4345,-0.5686],[103.437,-0.5528],[103.4361,-0.5433],[103.4342,-0.5385],[103.4289,-0.5312],[103.4208,-0.5288],[103.4125,-0.528],[103.4044,-0.5252],[103.3948,-0.5199],[103.3904,-0.5159],[103.3871,-0.5074],[103.3871,-0.5019],[103.3774,-0.4803],[103.3748,-0.4676],[103.3726,-0.4391],[103.3704,-0.4352],[103.3642,-0.4344],[103.3516,-0.4393],[103.341,-0.4414],[103.3337,-0.4414],[103.3241,-0.4386],[103.3342,-0.4098],[103.334,-0.4047],[103.3313,-0.4013],[103.3216,-0.3989],[103.3091,-0.389],[103.3057,-0.382],[103.3067,-0.3786],[103.3127,-0.3695],[103.3158,-0.3612],[103.3242,-0.3564],[103.3263,-0.3527],[103.3189,-0.3449],[103.3012,-0.336],[103.2826,-0.3258],[103.2757,-0.3202],[103.2647,-0.3073],[103.2618,-0.3054],[103.2502,-0.3044],[103.246,-0.305],[103.2448,-0.288],[103.2434,-0.2864],[103.2318,-0.284],[103.2279,-0.2799],[103.2268,-0.2714],[103.2466,-0.2639],[103.2531,-0.2567],[103.262,-0.2439],[103.2695,-0.2384],[103.2774,-0.2362],[103.2879,-0.2381],[103.3094,-0.2437],[103.319,-0.2437],[103.3381,-0.241],[103.3562,-0.2364],[103.385,-0.2313],[103.3968,-0.2275],[103.4047,-0.2227],[103.4335,-0.1982],[103.4555,-0.1842],[103.462,-0.1756],[103.4712,-0.172],[103.4835,-0.1642],[103.4948,-0.1579],[103.5019,-0.1458],[103.4975,-0.134],[103.4939,-0.1316],[103.483,-0.1273],[103.4711,-0.12],[103.4731,-0.1111],[103.4709,-0.1074],[103.4721,-0.1038],[103.4799,-0.1017],[103.4854,-0.0976],[103.4882,-0.0935],[103.4889,-0.0867],[103.4875,-0.0825],[103.481,-0.0787],[103.4802,-0.073],[103.4827,-0.0698],[103.4813,-0.0617],[103.4779,-0.0557],[103.4706,-0.0594],[103.4654,-0.0598],[103.4631,-0.0556],[103.4656,-0.0486],[103.4617,-0.0457],[103.4687,-0.041],[103.4812,-0.0494],[103.4878,-0.0575],[103.5015,-0.067],[103.5042,-0.0701],[103.5042,-0.0784],[103.5098,-0.079],[103.518,-0.0744],[103.5231,-0.0737],[103.529,-0.0753],[103.5359,-0.0802],[103.5428,-0.0744],[103.5481,-0.0726],[103.5637,-0.0707],[103.5754,-0.0624],[103.5833,-0.061],[103.5864,-0.0563],[103.5931,-0.0502],[103.5967,-0.0428],[103.5956,-0.0357],[103.5926,-0.0323],[103.5857,-0.0317],[103.578,-0.0365],[103.5704,-0.0356],[103.5776,-0.0288],[103.5887,-0.0213],[103.5992,-0.0172],[103.6157,-0.006],[103.6241,-0.0107],[103.6338,-0.0145],[103.6398,-0.0129],[103.6647,-0.0187],[103.6702,-0.0173],[103.6793,-0.0219],[103.6905,-0.0231],[103.6924,-0.0215],[103.7048,-0.0222],[103.7141,-0.0198],[103.7402,-0.0152],[103.748,-0.0115],[103.7542,-0.0123],[103.7619,-0.0098],[103.7799,-0.0092],[103.7999,-0.0118],[103.8101,-0.011],[103.8141,-0.0058],[103.8146,-0.0002],[103.8043,0.025],[103.7957,0.0401],[103.7882,0.0557],[103.7823,0.0724],[103.7798,0.0853],[103.7755,0.1014],[103.7754,0.1106],[103.7734,0.122],[103.7713,0.1285],[103.7692,0.1507],[103.7679,0.152],[103.7684,0.1611],[103.7673,0.1651],[103.7665,0.1854],[103.757,0.219],[103.7427,0.2508],[103.7337,0.2667],[103.7151,0.2967],[103.7065,0.3058],[103.6927,0.3145],[103.6786,0.3261],[103.6733,0.3271],[103.6509,0.3388],[103.6374,0.343],[103.6262,0.3449],[103.6205,0.3447],[103.6139,0.3466],[103.6029,0.3584],[103.5996,0.3685],[103.592,0.3852],[103.5879,0.392],[103.5778,0.4013],[103.5666,0.4083],[103.5552,0.4178],[103.5345,0.4397],[103.5108,0.4492],[103.4967,0.4566],[103.4956,0.4607],[103.4889,0.4619],[103.4722,0.479],[103.4586,0.4911],[103.4529,0.4932],[103.4394,0.5029],[103.4382,0.5069],[103.4318,0.5086],[103.4274,0.5143],[103.4151,0.5232],[103.4071,0.527],[103.3925,0.5318],[103.3748,0.5354],[103.3573,0.5374],[103.3561,0.5309],[103.3466,0.5109]]]}},{"type":"Feature","properties":{"mhid":"1332:82","alt_name":"KABUPATEN PELALAWAN","latitude":0.20822,"longitude":102.18607,"sample_value":11},"geometry":{"type":"MultiLineString","coordinates":[[[102.8564,0.2586],[102.8736,0.2659],[102.8821,0.2705],[102.8882,0.2762],[102.9009,0.2854],[102.9066,0.2908],[102.917,0.2966],[102.9453,0.3069],[102.9457,0.315],[102.943,0.3226],[102.9346,0.3246],[102.9292,0.3211],[102.9189,0.3165],[102.9089,0.3108],[102.8951,0.3046],[102.8529,0.2881],[102.8399,0.2847],[102.8291,0.2778],[102.8265,0.272],[102.8265,0.264],[102.8322,0.259],[102.8445,0.2567],[102.8564,0.2586]],[[102.9649,0.3203],[102.9703,0.3246],[102.9822,0.3292],[102.9941,0.3368],[102.9964,0.3418],[102.9929,0.346],[102.9895,0.3533],[102.9864,0.356],[102.9787,0.356],[102.9741,0.3499],[102.9684,0.3453],[102.9603,0.3418],[102.9534,0.3372],[102.945,0.3272],[102.9484,0.3234],[102.9492,0.3169],[102.9523,0.3161],[102.9649,0.3203]],[[102.9444,0.3286],[102.951,0.3369],[102.9606,0.343],[102.9656,0.3448],[102.9716,0.3491],[102.9777,0.3569],[102.9731,0.3609],[102.9636,0.3603],[102.9531,0.3553],[102.9425,0.3476],[102.9382,0.3425],[102.9364,0.3324],[102.9375,0.3286],[102.9419,0.3267],[102.9444,0.3286]],[[103.0734,0.5436],[103.0691,0.5512],[103.048,0.5753],[103.043,0.5789],[103.0559,0.5578],[103.0668,0.5449],[103.0711,0.5386],[103.0734,0.5436]],[[103.0709,0.5654],[103.0761,0.5757],[103.079,0.5777],[103.0842,0.5901],[103.0794,0.6056],[103.0704,0.6188],[103.0597,0.6391],[103.0554,0.6548],[103.0514,0.6598],[103.0428,0.6615],[103.0342,0.6608],[103.0328,0.6545],[103.0274,0.6424],[103.0326,0.6306],[103.0394,0.6236],[103.0447,0.6159],[103.0507,0.6044],[103.0611,0.5798],[103.0647,0.5674],[103.0709,0.5654]],[[103.1088,0.6384],[103.1147,0.6496],[103.1148,0.6538],[103.1097,0.6684],[103.1007,0.6635],[103.0961,0.6591],[103.0933,0.6505],[103.1043,0.6308],[103.1088,0.6384]],[[102.9754,0.6694],[102.9709,0.6744],[102.9664,0.6727],[102.9718,0.6684],[102.9754,0.6694]],[[103.2254,0.5229],[103.232,0.5247],[103.2504,0.5252],[103.2849,0.5284],[103.2963,0.544],[103.3009,0.5546],[103.3001,0.5801],[103.3021,0.6015],[103.2984,0.6154],[103.2918,0.6324],[103.2786,0.6574],[103.2728,0.6652],[103.2507,0.6853],[103.2368,0.6956],[103.2232,0.701],[103.2074,0.7023],[103.1912,0.7004],[103.1657,0.6886],[103.1556,0.679],[103.1495,0.6667],[103.1487,0.6596],[103.1489,0.6335],[103.1469,0.6307],[103.1445,0.6091],[103.1458,0.6042],[103.1386,0.5791],[103.1384,0.5637],[103.1396,0.5573],[103.1383,0.5535],[103.1437,0.5339],[103.1508,0.52],[103.1612,0.5044],[103.1655,0.4996],[103.1715,0.4983],[103.1834,0.5061],[103.1875,0.5112],[103.2004,0.5169],[103.2041,0.5195],[103.2174,0.5206],[103.2254,0.5229]],[[103.3466,0.5109],[103.356,0.531],[103.3573,0.5374],[103.3471,0.5409],[103.3392,0.5427],[103.3315,0.5473],[103.3256,0.5344],[103.3195,0.5251],[103.3091,0.5154],[103.3028,0.5118],[103.2901,0.5078],[103.281,0.5073],[103.2647,0.5092],[103.2549,0.5046],[103.2484,0.4993],[103.2337,0.4914],[103.2222,0.4871],[103.2167,0.4863],[103.2119,0.4835],[103.2059,0.477],[103.2019,0.467],[103.1992,0.4522],[103.1948,0.4424],[103.1888,0.4318],[103.1675,0.4072],[103.1438,0.3928],[103.1345,0.3915],[103.1222,0.3915],[103.1154,0.389],[103.1091,0.3885],[103.0968,0.3843],[103.087,0.383],[103.0705,0.3767],[103.0633,0.372],[103.057,0.3699],[103.0413,0.3585],[103.0328,0.3538],[103.0176,0.3415],[103.0138,0.3394],[103.0049,0.3275],[102.9981,0.3225],[102.986,0.3151],[102.9746,0.3104],[102.9547,0.3011],[102.9471,0.2968],[102.9339,0.293],[102.9233,0.2879],[102.9064,0.2782],[102.8967,0.2702],[102.8789,0.2621],[102.8611,0.2507],[102.8505,0.2452],[102.8424,0.2443],[102.834,0.2477],[102.8238,0.2553],[102.8072,0.2616],[102.7942,0.2935],[102.8133,0.3019],[102.8208,0.3038],[102.8421,0.3152],[102.8581,0.3171],[102.8803,0.327],[102.8862,0.3306],[102.9,0.336],[102.9132,0.343],[102.9242,0.3549],[102.9392,0.3694],[102.9548,0.3807],[102.9613,0.3827],[102.9852,0.3939],[102.9921,0.3957],[103.0068,0.4019],[103.0252,0.4146],[103.0337,0.4218],[103.0391,0.424],[103.0548,0.4345],[103.0669,0.4383],[103.0764,0.4446],[103.0846,0.4472],[103.0999,0.4535],[103.1119,0.4573],[103.1214,0.463],[103.1208,0.477],[103.1126,0.4973],[103.1056,0.5087],[103.0967,0.5163],[103.0859,0.5303],[103.0777,0.5366],[103.0732,0.5341],[103.0618,0.5449],[103.0542,0.5563],[103.0447,0.569],[103.0428,0.5766],[103.0376,0.5876],[103.0276,0.6008],[103.0152,0.6113],[102.9895,0.6348],[102.9618,0.6561],[102.9109,0.7166],[102.9043,0.7222],[102.9007,0.721]]]}},{"type":"Feature","properties":{"mhid":"1332:83","alt_name":"KABUPATEN SIAK","latitude":0.97453,"longitude":102.01355,"sample_value":854},"geometry":{"type":"MultiLineString","coordinates":[[[102.9007,0.721],[102.8934,0.7282],[102.877,0.7339],[102.869,0.736],[102.8496,0.7388],[102.842,0.739],[102.8181,0.7366],[102.7995,0.7335],[102.7879,0.7309],[102.7765,0.7304],[102.7631,0.732],[102.743,0.7387],[102.7296,0.7454],[102.719,0.7476],[102.7185,0.7503],[102.6952,0.7549],[102.6795,0.7555],[102.6645,0.7549],[102.6567,0.7522],[102.6396,0.7507],[102.638,0.7487],[102.6243,0.7421],[102.6154,0.7411],[102.6077,0.7384],[102.5871,0.7364],[102.5671,0.7387],[102.557,0.7414],[102.5459,0.7458],[102.5249,0.7457],[102.5077,0.7487],[102.4994,0.753],[102.4876,0.761],[102.4693,0.7771],[102.4604,0.7799],[102.4572,0.783],[102.4399,0.7911],[102.4203,0.8016],[102.4109,0.8081],[102.4012,0.8172],[102.3891,0.8337],[102.3772,0.8511],[102.3625,0.8693],[102.3593,0.8715],[102.3495,0.8819],[102.339,0.9001],[102.3255,0.9124],[102.3207,0.9153],[102.3093,0.9249],[102.2973,0.9376],[102.2886,0.94],[102.2687,0.9517],[102.2627,0.9562],[102.2517,0.9668],[102.2441,0.9765],[102.2385,0.9822],[102.2259,1.0001],[102.2229,1.0074],[102.2195,1.0249],[102.214,1.0372],[102.2079,1.0483],[102.207,1.0522],[102.196,1.0751],[102.192,1.0872],[102.1915,1.1044],[102.1951,1.1252],[102.1994,1.1415],[102.2047,1.1585],[102.2072,1.1694],[102.2083,1.1906],[102.2023,1.2066],[102.1957,1.2172],[102.1922,1.221],[102.1794,1.2304],[102.1728,1.2276],[102.1734,1.2132],[102.1718,1.2057],[102.162,1.1908]]]}},{"type":"Feature","properties":{"mhid":"1332:86","alt_name":"KABUPATEN BENGKALIS","latitude":0.9838,"longitude":102.5096,"sample_value":777},"geometry":{"type":"MultiLineString","coordinates":[[[102.0308,1.6078],[102.0102,1.6051],[102.0015,1.5979],[102.001,1.5925],[101.9982,1.5838],[102.0012,1.5791],[102.0084,1.5763],[102.0116,1.5707],[102.0182,1.5521],[102.0258,1.5399],[102.0338,1.5302],[102.0402,1.525],[102.0478,1.5171],[102.0592,1.5039],[102.069,1.4948],[102.0737,1.4919],[102.0839,1.4829],[102.1095,1.4644],[102.1257,1.4558],[102.1454,1.4479],[102.179,1.4387],[102.1941,1.4354],[102.2217,1.4322],[102.2401,1.4322],[102.2601,1.4348],[102.2729,1.4354],[102.2811,1.4342],[102.2898,1.4311],[102.2982,1.4261],[102.3201,1.4029],[102.3382,1.3892],[102.3541,1.3692],[102.3667,1.3584],[102.3746,1.3494],[102.3824,1.3385],[102.3975,1.3236],[102.4039,1.3189],[102.4228,1.3076],[102.432,1.3001],[102.4511,1.2857],[102.463,1.2784],[102.4787,1.2672],[102.4962,1.2526],[102.5047,1.2511],[102.5082,1.2554],[102.5086,1.2624],[102.5067,1.2854],[102.5042,1.307],[102.4986,1.3322],[102.4959,1.3692],[102.4941,1.3768],[102.4935,1.4063],[102.4952,1.4182],[102.4952,1.4326],[102.4866,1.4405],[102.489,1.4434],[102.4915,1.4535],[102.4965,1.4654],[102.496,1.4696],[102.4863,1.4798],[102.4817,1.4883],[102.4733,1.5012],[102.4676,1.5113],[102.4636,1.5162],[102.4584,1.5195],[102.452,1.5208],[102.4255,1.5289],[102.4077,1.5357],[102.3915,1.5394],[102.375,1.5418],[102.3684,1.5443],[102.3612,1.5448],[102.3551,1.547],[102.3401,1.5491],[102.3358,1.5517],[102.33,1.5512],[102.3272,1.5487],[102.3087,1.551],[102.3002,1.5543],[102.2814,1.5533],[102.2642,1.5604],[102.2619,1.5636],[102.2407,1.5625],[102.2346,1.5634],[102.2285,1.5676],[102.2215,1.5665],[102.1985,1.5676],[102.1847,1.5692],[102.1598,1.5752],[102.1477,1.5793],[102.1274,1.585],[102.092,1.5974],[102.0713,1.6032],[102.0459,1.6074],[102.0308,1.6078]],[[102.162,1.1908],[102.1597,1.1951],[102.1601,1.1994],[102.1643,1.2113],[102.1641,1.2318],[102.1595,1.246],[102.1532,1.2615],[102.1518,1.2691],[102.1507,1.2946],[102.1529,1.3069],[102.1551,1.3256],[102.1573,1.3317],[102.1586,1.3431],[102.1592,1.3606],[102.1533,1.3728],[102.1485,1.3778],[102.1384,1.381],[102.1255,1.3889],[102.117,1.3898],[102.1082,1.3924],[102.1004,1.3978],[102.0899,1.4017],[102.0803,1.4092],[102.0755,1.4113],[102.0658,1.4195],[102.0584,1.4227],[102.0429,1.434],[102.0383,1.4399],[102.0209,1.4499],[102.017,1.4533],[102.0053,1.4584],[102.0019,1.4651],[101.9957,1.471],[101.974,1.4868],[101.9631,1.4958],[101.9579,1.4986],[101.9536,1.5038],[101.9465,1.508],[101.9426,1.513],[101.9308,1.523],[101.9248,1.529],[101.9161,1.5338],[101.9047,1.5421],[101.8916,1.5492],[101.8837,1.5554],[101.8733,1.5615],[101.8689,1.566],[101.8613,1.5709],[101.8503,1.5795],[101.8318,1.5958],[101.8214,1.606],[101.8193,1.6093],[101.8099,1.6177],[101.8068,1.6222],[101.7838,1.6423],[101.7619,1.6594],[101.7422,1.6683],[101.726,1.672]],[[101.4186,1.7455],[101.4199,1.7533],[101.4185,1.7643],[101.4151,1.7648],[101.4175,1.7562],[101.4163,1.7462],[101.4186,1.7455]],[[101.3809,1.7648],[101.3815,1.7736],[101.3801,1.7841],[101.3819,1.7978],[101.3801,1.8046],[101.3771,1.8049],[101.3719,1.7998],[101.3716,1.786],[101.3724,1.7796],[101.3759,1.7689],[101.3809,1.7648]],[[101.407,1.7603],[101.4112,1.7659],[101.4121,1.797],[101.4097,1.8099],[101.4046,1.827],[101.3981,1.8277],[101.3938,1.8212],[101.3941,1.8007],[101.3933,1.7947],[101.3947,1.785],[101.3981,1.7737],[101.407,1.7603]],[[101.3615,1.8888],[101.3538,1.8884],[101.3534,1.8842],[101.3566,1.879],[101.3659,1.8709],[101.3695,1.8715],[101.3687,1.8783],[101.3649,1.8857],[101.3615,1.8888]],[[101.556,2.0942],[101.5557,2.0992],[101.5497,2.0991],[101.5453,2.096],[101.5509,2.0892],[101.556,2.0942]],[[101.635,2.1149],[101.6418,2.1178],[101.6413,2.1223],[101.6366,2.1208],[101.635,2.1149]],[[101.6552,2.1249],[101.6464,2.1178],[101.6434,2.1172],[101.6347,2.1115],[101.6209,2.1057],[101.6116,2.1036],[101.6006,2.098],[101.5944,2.092],[101.5888,2.0889],[101.5859,2.0853],[101.5832,2.0747],[101.5734,2.0689],[101.5641,2.0477],[101.5639,2.0436],[101.5562,2.047],[101.5465,2.0399],[101.5396,2.0394],[101.5283,2.0367],[101.5214,2.0305],[101.5163,2.0409],[101.5081,2.0494],[101.4775,2.0643],[101.4706,2.0645],[101.462,2.0624],[101.4411,2.0536],[101.4325,2.0476],[101.4095,2.0257],[101.4056,2.02],[101.4037,2.0132],[101.3978,2.0051],[101.3968,1.9954],[101.3997,1.9881],[101.3982,1.9735],[101.3978,1.9498],[101.393,1.9366],[101.3939,1.9314],[101.3909,1.921],[101.3867,1.913],[101.3831,1.9107],[101.3838,1.9063],[101.3901,1.891],[101.3977,1.8774],[101.4069,1.8626],[101.415,1.8431],[101.4187,1.8291],[101.4248,1.8003],[101.4263,1.7884],[101.4285,1.7794],[101.436,1.7682],[101.4398,1.7606],[101.4465,1.7397],[101.4534,1.7296],[101.4533,1.7263],[101.458,1.7239],[101.4793,1.7194],[101.5028,1.7111],[101.5113,1.7094],[101.5244,1.7038],[101.5398,1.7005],[101.5598,1.6951],[101.5752,1.6948],[101.5776,1.6936],[101.5935,1.6925],[101.6092,1.6881],[101.6173,1.6888],[101.625,1.6956],[101.6369,1.7039],[101.6411,1.7106],[101.6538,1.7147],[101.6568,1.7177],[101.6658,1.7227],[101.6724,1.7306],[101.68,1.7344],[101.684,1.7327],[101.6914,1.7359],[101.6971,1.7398],[101.7019,1.7396],[101.7082,1.7428],[101.7185,1.757],[101.7317,1.7626],[101.7352,1.7707],[101.7376,1.7797],[101.7411,1.7974],[101.7441,1.8226],[101.7466,1.8478],[101.748,1.8661],[101.7513,1.8827],[101.7549,1.8944],[101.7599,1.8997],[101.7743,1.9177],[101.7778,1.9265],[101.7769,1.9306],[101.785,1.9372],[101.7853,1.9443],[101.7795,1.9803],[101.7765,1.9886],[101.7536,2.0194],[101.7397,2.0402],[101.7325,2.0449],[101.7276,2.0424],[101.7234,2.0434],[101.7212,2.0482],[101.7154,2.067],[101.7156,2.0791],[101.7108,2.0898],[101.704,2.0968],[101.689,2.1068],[101.6552,2.1249]],[[101.6354,2.1178],[101.6366,2.1251],[101.6313,2.123],[101.6255,2.1172],[101.6311,2.1141],[101.6354,2.1178]]]}},{"type":"Feature","properties":{"mhid":"1332:87","alt_name":"KABUPATEN ROKAN HILIR","latitude":2.16599,"longitude":100.82514,"sample_value":914},"geometry":{"type":"MultiLineString","coordinates":[[[100.8754,2.0012],[100.8851,2.0049],[100.8834,2.024],[100.8805,2.0333],[100.8722,2.0441],[100.8648,2.0508],[100.8538,2.0634],[100.843,2.0736],[100.825,2.0876],[100.8108,2.0964],[100.8063,2.098],[100.7986,2.0973],[100.7969,2.0954],[100.7985,2.0893],[100.8047,2.0799],[100.8063,2.074],[100.8188,2.0583],[100.8305,2.0418],[100.8504,2.0198],[100.8573,2.0149],[100.8669,2.0041],[100.8754,2.0012]],[[100.6504,2.2129],[100.6485,2.2205],[100.643,2.2252],[100.6382,2.2314],[100.6321,2.2321],[100.632,2.2194],[100.6363,2.212],[100.6351,2.2076],[100.6384,2.1927],[100.6422,2.1868],[100.6494,2.1789],[100.6514,2.175],[100.6686,2.1668],[100.6749,2.1602],[100.6848,2.1595],[100.6849,2.1642],[100.6797,2.1698],[100.6738,2.1842],[100.6728,2.1922],[100.6634,2.1984],[100.6612,2.2026],[100.6504,2.2129]],[[100.7861,2.1221],[100.7849,2.1334],[100.7796,2.1473],[100.7777,2.1634],[100.778,2.1782],[100.7771,2.1826],[100.7722,2.1875],[100.7659,2.1968],[100.7654,2.2011],[100.7613,2.2083],[100.7577,2.2201],[100.7564,2.2314],[100.7515,2.2543],[100.7469,2.2593],[100.7343,2.2568],[100.7226,2.251],[100.7134,2.2363],[100.7088,2.2153],[100.7109,2.2049],[100.7159,2.1931],[100.7192,2.1776],[100.731,2.1546],[100.7414,2.1412],[100.7494,2.1382],[100.76,2.1325],[100.764,2.1322],[100.7861,2.1221]],[[100.7701,2.231],[100.7731,2.2352],[100.7827,2.2448],[100.7898,2.2543],[100.7996,2.2698],[100.7967,2.2763],[100.793,2.2768],[100.7813,2.2707],[100.7698,2.2591],[100.766,2.2474],[100.7649,2.2371],[100.7664,2.2274],[100.7701,2.231]],[[101.0262,2.3096],[101.0127,2.3094],[100.9998,2.3068],[100.988,2.3066],[100.9824,2.3053],[100.9827,2.2998],[100.9891,2.3001],[100.9933,2.3023],[101.0017,2.3022],[101.0204,2.2992],[101.0308,2.3006],[101.0374,2.3079],[101.029,2.3079],[101.0262,2.3096]],[[101.0618,2.2753],[101.0602,2.2812],[101.0564,2.2842],[101.0522,2.2912],[101.0466,2.2929],[101.0373,2.2932],[101.0275,2.2908],[101.0186,2.2919],[100.9877,2.2932],[100.969,2.2989],[100.9513,2.3037],[100.9273,2.3056],[100.9098,2.3051],[100.8967,2.3054],[100.8869,2.3033],[100.8709,2.3012],[100.8423,2.2989],[100.8352,2.2987],[100.8267,2.2958],[100.819,2.2909],[100.8131,2.2843],[100.8084,2.2768],[100.8069,2.272],[100.8026,2.2667],[100.7966,2.2541],[100.792,2.2512],[100.7905,2.2467],[100.7861,2.2444],[100.7677,2.2235],[100.7678,2.2123],[100.7716,2.2001],[100.7801,2.1859],[100.7813,2.1772],[100.7784,2.162],[100.779,2.1567],[100.7883,2.1286],[100.7934,2.1158],[100.8204,2.0969],[100.8296,2.0916],[100.8482,2.077],[100.8552,2.07],[100.8668,2.0561],[100.8796,2.044],[100.8849,2.035],[100.8892,2.0202],[100.8886,1.9976],[100.8908,1.9723],[100.8929,1.9636],[100.8831,1.9611],[100.8744,1.9826],[100.8511,2.0082],[100.8443,2.0125],[100.8247,2.0331],[100.8087,2.0517],[100.7989,2.0612],[100.7843,2.0777],[100.7717,2.0864],[100.7582,2.0912],[100.749,2.0924],[100.7177,2.0999],[100.6959,2.1135],[100.6864,2.1202],[100.6722,2.1243],[100.6521,2.1266],[100.6261,2.13],[100.609,2.134],[100.605,2.1342],[100.5971,2.1377],[100.5852,2.1344],[100.5814,2.1401],[100.5757,2.1446],[100.5674,2.1449],[100.5668,2.1482],[100.5582,2.1569],[100.5579,2.1599],[100.5523,2.1599],[100.5493,2.1548],[100.5428,2.1503],[100.5425,2.156],[100.5469,2.1602],[100.5454,2.1692],[100.5353,2.1759],[100.5348,2.1801],[100.5282,2.1837],[100.5252,2.1832],[100.5206,2.1901],[100.5068,2.199],[100.4953,2.2006],[100.4907,2.2021],[100.4907,2.2056],[100.4761,2.201],[100.4719,2.2049],[100.4761,2.2103],[100.4815,2.2072],[100.4819,2.2134],[100.4715,2.2219],[100.4665,2.2223],[100.4638,2.2311],[100.4489,2.2439],[100.4431,2.2512],[100.4351,2.2567],[100.429,2.2691],[100.4273,2.2762],[100.4198,2.2795],[100.4158,2.2849],[100.4154,2.2885],[100.4064,2.3001],[100.3956,2.3092],[100.387,2.3089],[100.3927,2.3139],[100.3924,2.3187],[100.3881,2.3252],[100.3859,2.3317],[100.378,2.3462],[100.3798,2.3546],[100.3751,2.3564],[100.3766,2.3716],[100.3668,2.3796],[100.3612,2.3858],[100.3602,2.4032],[100.3584,2.4111],[100.3541,2.4147],[100.3499,2.4211],[100.3484,2.4257],[100.3467,2.4433],[100.3421,2.4539],[100.3407,2.4631],[100.3413,2.474],[100.3316,2.4913],[100.3286,2.502],[100.3311,2.5058],[100.3315,2.5136],[100.33,2.5298],[100.3272,2.5425],[100.3228,2.5452]]]}},{"type":"Feature","properties":{"mhid":"1332:88","alt_name":"KABUPATEN KEPULAUAN MERANTI","latitude":0.97488,"longitude":102.69539,"sample_value":36},"geometry":{"type":"MultiLineString","coordinates":[[[102.9044,0.7678],[102.9019,0.77],[102.8872,0.7742],[102.8979,0.7666],[102.9044,0.7678]],[[103.0908,0.7172],[103.101,0.719],[103.1095,0.7252],[103.1156,0.7385],[103.1125,0.7623],[103.1137,0.7668],[103.1114,0.7794],[103.1125,0.7827],[103.1094,0.7894],[103.1099,0.7948],[103.1055,0.7986],[103.096,0.7995],[103.0929,0.7978],[103.0846,0.7877],[103.0809,0.7784],[103.0789,0.7549],[103.0754,0.7405],[103.0764,0.7357],[103.0824,0.7227],[103.0878,0.7175],[103.0908,0.7172]],[[103.0844,0.7968],[103.0913,0.8028],[103.0976,0.805],[103.1075,0.8057],[103.1101,0.8132],[103.1057,0.819],[103.0881,0.8211],[103.0756,0.8242],[103.0737,0.8218],[103.0786,0.8067],[103.0819,0.7989],[103.0844,0.7968]],[[103.2187,0.8635],[103.2111,0.8689],[103.2089,0.8642],[103.2187,0.8635]],[[102.9882,0.6955],[102.9945,0.6891],[103.0176,0.6856],[103.0227,0.6861],[103.0267,0.6891],[103.0315,0.6977],[103.0494,0.7203],[103.0494,0.7411],[103.0501,0.7549],[103.056,0.7771],[103.0565,0.7812],[103.0551,0.7968],[103.051,0.8074],[103.0493,0.8206],[103.0471,0.8243],[103.035,0.8343],[103.0194,0.8454],[102.9952,0.8609],[102.9859,0.8657],[102.9613,0.8769],[102.9441,0.8879],[102.9351,0.8956],[102.9265,0.9043],[102.9156,0.9229],[102.9048,0.932],[102.899,0.9357],[102.8859,0.9473],[102.8751,0.9543],[102.8619,0.9591],[102.8523,0.9615],[102.8222,0.9732],[102.8087,0.9759],[102.797,0.9803],[102.7881,0.9888],[102.7813,1.0021],[102.7706,1.0067],[102.7583,1.0095],[102.754,0.9997],[102.7499,0.9975],[102.7471,0.9999],[102.7492,1.008],[102.7453,1.0176],[102.7401,1.0212],[102.7279,1.0215],[102.716,1.0165],[102.6933,1.0106],[102.6731,1.0021],[102.6584,0.9951],[102.6493,0.992],[102.6347,0.9906],[102.6208,0.9937],[102.609,1.0001],[102.6085,1.0033],[102.5915,1.0021],[102.5847,0.9986],[102.5765,0.9909],[102.5677,0.978],[102.5568,0.9697],[102.5376,0.9653],[102.5219,0.9572],[102.5107,0.9479],[102.4992,0.9435],[102.4883,0.9319],[102.4819,0.929],[102.4746,0.9281],[102.4674,0.9292],[102.452,0.9363],[102.4419,0.936],[102.4397,0.9345],[102.4365,0.9257],[102.4326,0.9188],[102.4208,0.9052],[102.4181,0.8992],[102.4124,0.8937],[102.4089,0.8878],[102.4079,0.8771],[102.4111,0.8576],[102.4123,0.8549],[102.4286,0.8334],[102.4372,0.8252],[102.4447,0.8199],[102.4567,0.813],[102.4802,0.8024],[102.5011,0.7905],[102.5178,0.7831],[102.5391,0.7758],[102.5477,0.7722],[102.5611,0.7686],[102.5789,0.7661],[102.5924,0.7668],[102.6013,0.769],[102.62,0.7786],[102.6384,0.7849],[102.6552,0.789],[102.6846,0.7913],[102.7082,0.7918],[102.7217,0.7912],[102.7364,0.7893],[102.7623,0.7883],[102.776,0.7886],[102.8496,0.7942],[102.8662,0.7914],[102.8871,0.7822],[102.9026,0.778],[102.9184,0.7743],[102.9275,0.7693],[102.9339,0.7629],[102.9391,0.7553],[102.9456,0.7487],[102.9521,0.7404],[102.9652,0.7285],[102.9728,0.7197],[102.9788,0.7087],[102.981,0.7029],[102.9882,0.6955]],[[102.5333,1.1286],[102.5258,1.1278],[102.5232,1.1253],[102.5126,1.1261],[102.497,1.1255],[102.4841,1.128],[102.4813,1.1262],[102.4775,1.1197],[102.4697,1.0994],[102.4613,1.0823],[102.4592,1.0722],[102.4607,1.0615],[102.467,1.0464],[102.4793,1.0226],[102.4833,1.0117],[102.4869,0.9903],[102.4896,0.9781],[102.497,0.9595],[102.4997,0.9503],[102.5,0.945],[102.5101,0.9486],[102.5216,0.958],[102.5294,0.9628],[102.5378,0.9663],[102.5549,0.9701],[102.5601,0.9727],[102.5692,0.9809],[102.5761,0.9919],[102.5842,0.9994],[102.5899,1.0027],[102.6082,1.0053],[102.6035,1.0161],[102.6025,1.0252],[102.6078,1.0372],[102.6136,1.0426],[102.6142,1.0477],[102.6057,1.0533],[102.5995,1.0631],[102.5954,1.0656],[102.5856,1.0758],[102.572,1.0883],[102.5702,1.0925],[102.5613,1.1001],[102.5599,1.0999],[102.5492,1.1094],[102.5452,1.1214],[102.5396,1.1269],[102.5333,1.1286]],[[102.7709,1.1584],[102.7596,1.159],[102.7475,1.1576],[102.7354,1.1539],[102.7182,1.1439],[102.7037,1.1321],[102.6877,1.1179],[102.6771,1.1026],[102.6707,1.091],[102.6671,1.0804],[102.6677,1.0759],[102.6644,1.0562],[102.6564,1.0345],[102.6515,1.029],[102.6418,1.024],[102.6294,1.0217],[102.6228,1.019],[102.6246,1.011],[102.6292,1.0074],[102.6343,1.0061],[102.6436,1.0069],[102.6555,1.0125],[102.6873,1.026],[102.6933,1.0272],[102.7282,1.0392],[102.7441,1.0384],[102.7501,1.0352],[102.7548,1.03],[102.768,1.0218],[102.775,1.0195],[102.7814,1.0203],[102.7871,1.0293],[102.7931,1.0339],[102.7991,1.0356],[102.8091,1.0344],[102.8119,1.0359],[102.8144,1.0448],[102.8183,1.049],[102.8208,1.0479],[102.8186,1.0375],[102.8165,1.033],[102.8096,1.0292],[102.7993,1.0306],[102.7941,1.0292],[102.7906,1.0252],[102.7901,1.0203],[102.7947,1.0113],[102.7976,1.0024],[102.8058,0.9918],[102.8097,0.9897],[102.8287,0.9862],[102.8443,0.979],[102.8588,0.9746],[102.865,0.9742],[102.8849,0.9666],[102.8992,0.9566],[102.9198,0.9443],[102.9238,0.9386],[102.9348,0.9299],[102.941,0.9201],[102.9476,0.9121],[102.9554,0.9054],[102.9625,0.9023],[102.9849,0.8937],[103.027,0.8681],[103.0281,0.8665],[103.0402,0.8611],[103.0539,0.8514],[103.0633,0.8422],[103.0697,0.8335],[103.0757,0.8307],[103.0923,0.8279],[103.1021,0.8271],[103.1235,0.8309],[103.1372,0.8373],[103.1464,0.8405],[103.1539,0.848],[103.1548,0.8582],[103.1574,0.8627],[103.1546,0.8722],[103.1601,0.8857],[103.1522,0.8982],[103.1427,0.9079],[103.1369,0.9163],[103.1274,0.9242],[103.1187,0.9357],[103.1197,0.9398],[103.1093,0.9466],[103.0979,0.9604],[103.0917,0.9706],[103.0873,0.9801],[103.0788,0.9874],[103.0776,0.9907],[103.0689,1.0007],[103.0461,1.022],[103.0431,1.0262],[103.0315,1.0382],[103.0088,1.0649],[103.0052,1.0703],[102.9831,1.0889],[102.9722,1.0962],[102.9631,1.0975],[102.9533,1.1003],[102.9294,1.1095],[102.8923,1.1258],[102.8849,1.1277],[102.8739,1.1326],[102.8607,1.136],[102.8516,1.1394],[102.8435,1.1412],[102.8329,1.1449],[102.8244,1.1452],[102.8118,1.1499],[102.8063,1.1504],[102.7911,1.1545],[102.7901,1.1556],[102.7709,1.1584]],[[102.292,1.412],[102.2796,1.4172],[102.2691,1.4183],[102.2567,1.414],[102.2433,1.412],[102.2305,1.4119],[102.2157,1.4142],[102.2103,1.4084],[102.2096,1.4013],[102.2142,1.3909],[102.2245,1.3732],[102.2275,1.3665],[102.229,1.3472],[102.2275,1.3295],[102.223,1.3171],[102.2164,1.3026],[102.212,1.296],[102.2059,1.2819],[102.2062,1.2757],[102.2101,1.2669],[102.2179,1.2532],[102.2228,1.2472],[102.2253,1.2412],[102.233,1.2324],[102.2358,1.2259],[102.241,1.208],[102.2447,1.1989],[102.248,1.1862],[102.2497,1.1714],[102.2474,1.1488],[102.2433,1.1364],[102.2424,1.1281],[102.2376,1.114],[102.2367,1.1007],[102.2422,1.0855],[102.2544,1.0589],[102.2591,1.0464],[102.265,1.0338],[102.2684,1.0235],[102.2759,1.0054],[102.2832,0.9966],[102.2945,0.9872],[102.3041,0.9806],[102.3182,0.9719],[102.3303,0.9632],[102.3392,0.954],[102.3482,0.9426],[102.3643,0.9268],[102.3795,0.9156],[102.3908,0.9127],[102.3982,0.9156],[102.418,0.9208],[102.4212,0.9249],[102.4267,0.9379],[102.4312,0.9436],[102.4397,0.9488],[102.4496,0.9495],[102.4694,0.9416],[102.4773,0.9405],[102.4814,0.9426],[102.4835,0.9522],[102.4812,0.961],[102.4769,0.9704],[102.4725,0.9855],[102.4688,1.0074],[102.4667,1.0129],[102.4551,1.0327],[102.4444,1.0545],[102.4396,1.0628],[102.4386,1.0706],[102.4424,1.0804],[102.4458,1.0934],[102.4517,1.1074],[102.4501,1.1129],[102.4538,1.1207],[102.458,1.1253],[102.4606,1.1313],[102.4596,1.1376],[102.4637,1.1583],[102.4684,1.1675],[102.4764,1.1785],[102.4799,1.1891],[102.4859,1.2004],[102.4864,1.2074],[102.4852,1.2155],[102.4862,1.2302],[102.485,1.2382],[102.4813,1.2436],[102.4739,1.249],[102.4668,1.2567],[102.4455,1.2725],[102.4226,1.2933],[102.3991,1.3069],[102.3719,1.3282],[102.3594,1.3452],[102.3441,1.3603],[102.3305,1.3718],[102.3208,1.3812],[102.3029,1.4023],[102.292,1.412]]]}},{"type":"Feature","properties":{"mhid":"1332:90","alt_name":"KOTA DUMAI","latitude":1.61592,"longitude":101.4917,"sample_value":125},"geometry":{"type":"MultiLineString","coordinates":[[[101.726,1.672],[101.7113,1.6713],[101.6941,1.6668],[101.678,1.6664],[101.6643,1.6653],[101.6609,1.6619],[101.6452,1.659],[101.6333,1.6543],[101.6257,1.6483],[101.6202,1.6466],[101.6101,1.6408],[101.6019,1.6387],[101.5869,1.6374],[101.5715,1.6367],[101.5672,1.6379],[101.5572,1.6381],[101.5555,1.6396],[101.5416,1.6425],[101.5312,1.646],[101.5067,1.6603],[101.5029,1.6652],[101.4974,1.6668],[101.495,1.673],[101.4908,1.6775],[101.4869,1.6785],[101.4814,1.6828],[101.4679,1.6866],[101.4399,1.6876],[101.4315,1.6892],[101.4158,1.6956],[101.4099,1.699],[101.3935,1.7132],[101.3874,1.7203],[101.3808,1.734],[101.3778,1.7372],[101.3647,1.7593],[101.3575,1.7782],[101.3562,1.7854],[101.3562,1.7947],[101.3588,1.812],[101.3623,1.8223],[101.3638,1.8316],[101.3543,1.8435],[101.3501,1.8562],[101.3482,1.8676],[101.3412,1.886],[101.337,1.8917],[101.3354,1.9031],[101.3322,1.9114],[101.3328,1.9153],[101.3307,1.9201],[101.3287,1.936],[101.3271,1.9382],[101.328,1.9454],[101.3268,1.9579],[101.325,1.9675],[101.323,1.9703],[101.3232,1.9775],[101.3215,1.9824],[101.3231,1.9979],[101.3181,2.0058],[101.3072,2.036],[101.305,2.0411],[101.2941,2.0514],[101.2848,2.0574],[101.2781,2.0661],[101.2732,2.0749],[101.2683,2.0814],[101.2416,2.0916],[101.216,2.105],[101.201,2.1156],[101.1872,2.1231],[101.1693,2.1372],[101.1518,2.1546],[101.1324,2.171],[101.1208,2.182],[101.0961,2.2031],[101.0882,2.2068],[101.0764,2.2183],[101.073,2.2231],[101.0682,2.2374],[101.0646,2.2452],[101.0602,2.2486],[101.0578,2.2585],[101.0586,2.2682],[101.0618,2.2753]]]}},{"type":"Feature","properties":{"mhid":"1332:91","alt_name":"KABUPATEN KERINCI","latitude":-2.03333,"longitude":101.53333,"sample_value":154},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:96","alt_name":"KABUPATEN TANJUNG JABUNG TIMUR","latitude":-1.13198,"longitude":103.61755,"sample_value":766},"geometry":{"type":"MultiLineString","coordinates":[[[104.498,-1.6729],[104.4944,-1.6628],[104.488,-1.6574],[104.483,-1.6474],[104.4699,-1.6271],[104.4668,-1.6154],[104.4575,-1.5854],[104.4563,-1.5772],[104.4534,-1.5726],[104.4523,-1.5667],[104.4523,-1.551],[104.4483,-1.5368],[104.4426,-1.5211],[104.44,-1.5158],[104.4384,-1.4848],[104.4433,-1.458],[104.4499,-1.4338],[104.458,-1.4258],[104.4574,-1.403],[104.4503,-1.3875],[104.4552,-1.3629],[104.4561,-1.3333],[104.4394,-1.3128],[104.443,-1.3128],[104.4394,-1.3034],[104.4325,-1.294],[104.4222,-1.2783],[104.4009,-1.2381],[104.3928,-1.2166],[104.3897,-1.1983],[104.3926,-1.179],[104.4036,-1.1798],[104.4046,-1.1667],[104.4088,-1.159],[104.4055,-1.1402],[104.4061,-1.1265],[104.4005,-1.1012],[104.399,-1.0898],[104.3913,-1.0664],[104.3843,-1.051],[104.3701,-1.0267],[104.3641,-1.0188],[104.3596,-1.0179],[104.3561,-1.0273],[104.347,-1.0357],[104.3377,-1.043],[104.3277,-1.0443],[104.3258,-1.0411],[104.3194,-1.0438],[104.3128,-1.0438],[104.2992,-1.0482],[104.2876,-1.0478],[104.2803,-1.0428],[104.2716,-1.0436],[104.266,-1.0425],[104.25,-1.0331],[104.2142,-1.0337],[104.2051,-1.0315],[104.1927,-1.0356],[104.1803,-1.0363],[104.1728,-1.0501],[104.1597,-1.0481],[104.1502,-1.0488],[104.148,-1.0504],[104.1346,-1.0505],[104.1279,-1.0485],[104.1301,-1.0431],[104.1143,-1.0377],[104.1086,-1.0316],[104.0997,-1.029],[104.0852,-1.028],[104.0616,-1.0169],[104.0553,-1.0124],[104.0463,-1.0087],[104.0397,-1.0093],[104.0309,-1.0017],[104.0214,-0.9991],[103.9739,-0.9917],[103.966,-0.9914],[103.9608,-0.9929],[103.9563,-0.9962],[103.9519,-0.9925],[103.9409,-0.9907],[103.926,-0.9872],[103.9192,-0.9835],[103.9085,-0.9819],[103.9008,-0.9845],[103.8941,-0.9903],[103.8807,-0.9966],[103.8725,-0.9991],[103.8693,-0.9963],[103.8573,-1.0035],[103.8369,-1.0101],[103.8087,-1.0143],[103.809,-1.0086],[103.8055,-0.9969],[103.8033,-0.9944],[103.7919,-0.9914],[103.7813,-0.9922],[103.7771,-0.9915],[103.7565,-0.9916],[103.7491,-0.9923],[103.7504,-0.9848],[103.749,-0.9823],[103.7293,-0.9598],[103.7117,-0.9511],[103.7001,-0.9493],[103.6891,-0.9508],[103.6865,-0.9471],[103.6794,-0.9488],[103.6759,-0.9517],[103.6692,-0.9376],[103.6582,-0.9279],[103.6428,-0.9217],[103.6388,-0.9177],[103.63,-0.9138],[103.6267,-0.9092],[103.6059,-0.8911],[103.5977,-0.8829],[103.593,-0.876],[103.5884,-0.8729],[103.5827,-0.8778],[103.5795,-0.8741],[103.5741,-0.8752]]]}},{"type":"Feature","properties":{"mhid":"1332:97","alt_name":"KABUPATEN TANJUNG JABUNG BARAT","latitude":-1.1544,"longitude":103.24402,"sample_value":768},"geometry":{"type":"MultiLineString","coordinates":[[[103.5741,-0.8752],[103.5716,-0.8701],[103.5642,-0.8628],[103.5524,-0.857],[103.5559,-0.8546],[103.5591,-0.8442],[103.5576,-0.835],[103.5502,-0.814],[103.5461,-0.8084],[103.5418,-0.8068],[103.518,-0.8007],[103.4884,-0.7966],[103.4894,-0.7875],[103.489,-0.7767],[103.4868,-0.7644],[103.4773,-0.7476],[103.4632,-0.7356],[103.4557,-0.7333],[103.4469,-0.7341],[103.4424,-0.7396]]]}},{"type":"Feature","properties":{"mhid":"1332:236","alt_name":"KABUPATEN PACITAN","latitude":-8.13333,"longitude":111.16667,"sample_value":676},"geometry":{"type":"MultiLineString","coordinates":[[[110.9087,-8.211],[110.9131,-8.2125],[110.9181,-8.2188],[110.9237,-8.2193],[110.9292,-8.2232],[110.9328,-8.2215],[110.9434,-8.2262],[110.9458,-8.2238],[110.9558,-8.2265],[110.9611,-8.2298],[110.9596,-8.2337],[110.9728,-8.237],[110.975,-8.2401],[110.9816,-8.2401],[110.9861,-8.2418],[110.9982,-8.2524],[111.0018,-8.2484],[111.0071,-8.2474],[111.0206,-8.2497],[111.0268,-8.2529],[111.0268,-8.2564],[111.0348,-8.2558],[111.0377,-8.2526],[111.0606,-8.2507],[111.0658,-8.2474],[111.0699,-8.2479],[111.0765,-8.2459],[111.075,-8.2393],[111.0781,-8.2341],[111.075,-8.2319],[111.0747,-8.225],[111.0813,-8.2212],[111.089,-8.2206],[111.096,-8.2226],[111.1022,-8.229],[111.103,-8.2353],[111.0976,-8.2373],[111.1013,-8.2419],[111.0987,-8.2458],[111.1045,-8.2523],[111.1103,-8.257],[111.1148,-8.2539],[111.1199,-8.2533],[111.1318,-8.2622],[111.1378,-8.2628],[111.1379,-8.2675],[111.1322,-8.2732],[111.1377,-8.2766],[111.1457,-8.2792],[111.1595,-8.2784],[111.1705,-8.2806],[111.1768,-8.2731],[111.1856,-8.2751],[111.1905,-8.2783],[111.1975,-8.276],[111.1989,-8.2682],[111.2155,-8.2655],[111.2282,-8.2658],[111.2277,-8.2598],[111.2358,-8.2591],[111.2367,-8.2565],[111.2452,-8.2533],[111.2548,-8.253],[111.2577,-8.249],[111.2691,-8.25],[111.2747,-8.2522],[111.281,-8.2576],[111.281,-8.2645],[111.279,-8.2695],[111.2838,-8.2713],[111.288,-8.2699],[111.2878,-8.2603],[111.2958,-8.2634],[111.2962,-8.2591],[111.3032,-8.2573],[111.3128,-8.2614],[111.3118,-8.2675],[111.3199,-8.2697],[111.3265,-8.2735],[111.3325,-8.2639],[111.3374,-8.2623],[111.3492,-8.2645],[111.3504,-8.2689],[111.358,-8.2702],[111.361,-8.2637],[111.3675,-8.2609],[111.3752,-8.2654],[111.3775,-8.2744],[111.3809,-8.2761],[111.3859,-8.2746],[111.3986,-8.2777],[111.4037,-8.2708]]]}},{"type":"Feature","properties":{"mhid":"1332:238","alt_name":"KABUPATEN TRENGGALEK","latitude":-8.16667,"longitude":111.61667,"sample_value":870},"geometry":{"type":"MultiLineString","coordinates":[[[111.4037,-8.2708],[111.4075,-8.2735],[111.4102,-8.2785],[111.4157,-8.2764],[111.4157,-8.2673],[111.4222,-8.2589],[111.4313,-8.2597],[111.4415,-8.2671],[111.4502,-8.2717],[111.454,-8.2786],[111.4507,-8.2817],[111.4536,-8.2853],[111.4449,-8.2939],[111.4489,-8.2959],[111.445,-8.3025],[111.4493,-8.309],[111.4578,-8.3107],[111.4558,-8.317],[111.4614,-8.3186],[111.4639,-8.3226],[111.4695,-8.3137],[111.4784,-8.3061],[111.4832,-8.3091],[111.4817,-8.3194],[111.4874,-8.3173],[111.4899,-8.3141],[111.4945,-8.3153],[111.4965,-8.324],[111.5029,-8.3223],[111.5095,-8.3267],[111.5142,-8.3338],[111.5194,-8.332],[111.5268,-8.332],[111.538,-8.3269],[111.5307,-8.3222],[111.5313,-8.3177],[111.5373,-8.314],[111.5459,-8.3128],[111.5463,-8.308],[111.5518,-8.3064],[111.5612,-8.3081],[111.5683,-8.3121],[111.5731,-8.3187],[111.5712,-8.3259],[111.5679,-8.3279],[111.5748,-8.3333],[111.5766,-8.3296],[111.5873,-8.335],[111.5902,-8.3312],[111.5901,-8.3261],[111.5962,-8.3221],[111.6027,-8.325],[111.6014,-8.329],[111.6052,-8.3397],[111.6111,-8.3351],[111.6073,-8.3308],[111.612,-8.3216],[111.617,-8.3205],[111.628,-8.3249],[111.6289,-8.3311],[111.6269,-8.3351],[111.6324,-8.3369],[111.6339,-8.3416],[111.6288,-8.3446],[111.6266,-8.3509],[111.6307,-8.3522],[111.6337,-8.3483],[111.641,-8.3511],[111.6472,-8.352],[111.6502,-8.3587],[111.6517,-8.3663],[111.6562,-8.3647],[111.6575,-8.3573],[111.6675,-8.3562],[111.6701,-8.3625],[111.6701,-8.3671],[111.6751,-8.3718],[111.6851,-8.3724],[111.6875,-8.3679],[111.6926,-8.3702],[111.6933,-8.3753],[111.6965,-8.379],[111.7038,-8.374],[111.7033,-8.3681],[111.71,-8.3672],[111.7145,-8.3725],[111.7237,-8.3683],[111.7152,-8.3585],[111.7135,-8.3516],[111.7079,-8.3505],[111.704,-8.3461],[111.6986,-8.3454],[111.6893,-8.3372],[111.6894,-8.3308],[111.6957,-8.3222],[111.713,-8.3227],[111.7154,-8.3149],[111.7132,-8.3079],[111.7072,-8.3034],[111.7082,-8.2979],[111.713,-8.2911],[111.7248,-8.2871],[111.7298,-8.2879],[111.7348,-8.2918],[111.7375,-8.2962],[111.7454,-8.3049],[111.7485,-8.3132],[111.7415,-8.3223],[111.74,-8.3315],[111.7471,-8.3349],[111.7488,-8.3406],[111.7537,-8.3401],[111.7577,-8.335],[111.7606,-8.3355],[111.77,-8.3284],[111.7766,-8.3256],[111.7739,-8.3194],[111.7703,-8.3188],[111.7689,-8.3103],[111.7751,-8.3056],[111.7683,-8.2947],[111.7736,-8.2942],[111.774,-8.2891]]]}},{"type":"Feature","properties":{"mhid":"1332:239","alt_name":"KABUPATEN TULUNGAGUNG","latitude":-8.11667,"longitude":111.91667,"sample_value":574},"geometry":{"type":"MultiLineString","coordinates":[[[111.774,-8.2891],[111.7689,-8.2863],[111.7741,-8.283],[111.7776,-8.2741],[111.7701,-8.2703],[111.7724,-8.2605],[111.7767,-8.2567],[111.7855,-8.257],[111.795,-8.2558],[111.8003,-8.2582],[111.8057,-8.267],[111.8084,-8.2646],[111.8141,-8.2688],[111.8143,-8.2726],[111.8218,-8.2705],[111.8285,-8.2738],[111.829,-8.278],[111.8324,-8.2813],[111.8403,-8.2817],[111.8417,-8.2719],[111.8387,-8.2652],[111.8416,-8.2619],[111.8484,-8.2641],[111.8523,-8.2691],[111.8585,-8.269],[111.8631,-8.2707],[111.8628,-8.2752],[111.8682,-8.2772],[111.8689,-8.2842],[111.8732,-8.2847],[111.8734,-8.2892],[111.8853,-8.2932],[111.891,-8.2983],[111.9058,-8.3034],[111.9112,-8.2973],[111.9152,-8.2977],[111.925,-8.3045],[111.9378,-8.3064],[111.9418,-8.3004],[111.9429,-8.294],[111.9364,-8.2932],[111.9376,-8.2845],[111.9414,-8.2803],[111.9476,-8.2776],[111.9674,-8.2801],[111.978,-8.284],[111.985,-8.2915],[111.9932,-8.2972],[112.002,-8.2986],[112.0202,-8.304],[112.0281,-8.3126]]]}},{"type":"Feature","properties":{"mhid":"1332:240","alt_name":"KABUPATEN BLITAR","latitude":-8.13333,"longitude":112.25,"sample_value":434},"geometry":{"type":"MultiLineString","coordinates":[[[112.0281,-8.3126],[112.0298,-8.3179],[112.0342,-8.3197],[112.0537,-8.3175],[112.0613,-8.3198],[112.0654,-8.3226],[112.0677,-8.3194],[112.0753,-8.3171],[112.0827,-8.3183],[112.0894,-8.3152],[112.0978,-8.3182],[112.1077,-8.3174],[112.1098,-8.3127],[112.1152,-8.3167],[112.1232,-8.3161],[112.1258,-8.3237],[112.132,-8.3246],[112.1351,-8.3187],[112.1435,-8.3158],[112.1451,-8.3189],[112.1511,-8.3228],[112.1542,-8.3282],[112.165,-8.3263],[112.1696,-8.3206],[112.1737,-8.3213],[112.1779,-8.3255],[112.1874,-8.3233],[112.194,-8.3269],[112.199,-8.327],[112.2028,-8.3248],[112.2124,-8.3289],[112.2192,-8.327],[112.2227,-8.332],[112.2183,-8.3412],[112.2342,-8.3459],[112.2359,-8.3439],[112.2413,-8.3472],[112.2444,-8.3445],[112.2548,-8.3432],[112.2634,-8.3505],[112.2716,-8.3445],[112.2722,-8.3398],[112.2823,-8.3364],[112.2866,-8.332],[112.2964,-8.3315],[112.3002,-8.3363],[112.3047,-8.3349],[112.3147,-8.3422],[112.3182,-8.342],[112.3194,-8.3338],[112.3285,-8.331],[112.3342,-8.333],[112.3391,-8.3431],[112.3471,-8.3414],[112.3499,-8.3442],[112.3463,-8.35],[112.349,-8.3519],[112.3527,-8.3486],[112.359,-8.3485]]]}},{"type":"Feature","properties":{"mhid":"1332:242","alt_name":"KABUPATEN MALANG","latitude":-8.16667,"longitude":112.66667,"sample_value":773},"geometry":{"type":"MultiLineString","coordinates":[[[112.6988,-8.4299],[112.6918,-8.431],[112.6802,-8.4415],[112.6787,-8.4454],[112.6796,-8.4526],[112.6895,-8.4532],[112.6923,-8.4568],[112.7021,-8.4633],[112.7125,-8.4587],[112.7115,-8.4495],[112.7122,-8.4342],[112.7021,-8.4299],[112.6988,-8.4299]],[[112.359,-8.3485],[112.3652,-8.3534],[112.3655,-8.3574],[112.3695,-8.3683],[112.3734,-8.3759],[112.3798,-8.3765],[112.3889,-8.3752],[112.3941,-8.3759],[112.396,-8.3812],[112.4026,-8.38],[112.4123,-8.3801],[112.4241,-8.3835],[112.4259,-8.388],[112.4295,-8.3898],[112.4347,-8.389],[112.4398,-8.3953],[112.4443,-8.397],[112.4531,-8.3948],[112.4538,-8.3969],[112.4644,-8.3967],[112.4705,-8.3942],[112.4836,-8.3968],[112.4944,-8.4011],[112.5083,-8.4],[112.5102,-8.3952],[112.521,-8.3978],[112.5252,-8.4035],[112.5452,-8.4036],[112.5478,-8.4058],[112.5528,-8.402],[112.5726,-8.4076],[112.578,-8.4128],[112.5867,-8.4177],[112.5958,-8.4168],[112.6103,-8.4215],[112.6148,-8.4266],[112.6139,-8.4304],[112.618,-8.4343],[112.6243,-8.4288],[112.6324,-8.4298],[112.64,-8.4349],[112.6425,-8.4424],[112.6493,-8.447],[112.656,-8.4471],[112.6676,-8.4411],[112.6705,-8.4454],[112.6798,-8.4369],[112.6913,-8.428],[112.7015,-8.4254],[112.7044,-8.4204],[112.7089,-8.4178],[112.7206,-8.4199],[112.7257,-8.4173],[112.7294,-8.4201],[112.7368,-8.4161],[112.7431,-8.4187],[112.7529,-8.413],[112.7592,-8.4113],[112.7691,-8.4053],[112.7678,-8.393],[112.7714,-8.3864],[112.7814,-8.3858],[112.7855,-8.3916],[112.7831,-8.3979],[112.7877,-8.3987],[112.7917,-8.4039],[112.7988,-8.4062],[112.8043,-8.3982],[112.8107,-8.4009],[112.8147,-8.3997],[112.8196,-8.3919],[112.8161,-8.3879],[112.8173,-8.3799],[112.8211,-8.3726],[112.8264,-8.3729],[112.8338,-8.3693],[112.8374,-8.3747],[112.8378,-8.3824],[112.8425,-8.383],[112.8446,-8.3767],[112.8481,-8.3773],[112.8459,-8.3878],[112.8497,-8.3879],[112.8485,-8.3933],[112.8437,-8.4006],[112.8481,-8.405],[112.8538,-8.4015],[112.8597,-8.4005],[112.8643,-8.3944],[112.8687,-8.3995],[112.8686,-8.4072],[112.8718,-8.4087],[112.8766,-8.4071],[112.8792,-8.4035],[112.8852,-8.4002],[112.8976,-8.3997],[112.8978,-8.3942],[112.8933,-8.3889],[112.8961,-8.3807],[112.9001,-8.3793],[112.9067,-8.3812],[112.9053,-8.3908],[112.9117,-8.3909],[112.9109,-8.3989],[112.9159,-8.3979],[112.9152,-8.3943],[112.9232,-8.3913],[112.9249,-8.3881],[112.9316,-8.3887],[112.9307,-8.3834],[112.9381,-8.3817],[112.9399,-8.3724],[112.9456,-8.3698],[112.9457,-8.3642],[112.9509,-8.3573],[112.9596,-8.3532]]]}},{"type":"Feature","properties":{"mhid":"1332:243","alt_name":"KABUPATEN LUMAJANG","latitude":-8.11667,"longitude":113.15,"sample_value":722},"geometry":{"type":"MultiLineString","coordinates":[[[112.9596,-8.3532],[112.964,-8.3458],[112.9657,-8.3407],[112.9703,-8.3332],[112.9794,-8.3252],[112.9866,-8.3214],[113.0111,-8.3109],[113.0332,-8.3045],[113.0383,-8.3018],[113.0503,-8.2978],[113.0655,-8.2974],[113.0716,-8.2887],[113.0776,-8.2859],[113.0927,-8.2867],[113.108,-8.2905],[113.1233,-8.2912],[113.1437,-8.2872],[113.1472,-8.2847],[113.1615,-8.282],[113.1828,-8.2804],[113.2064,-8.2803],[113.2276,-8.2825],[113.2463,-8.2854],[113.2614,-8.289],[113.2824,-8.2962],[113.3034,-8.3075]]]}},{"type":"Feature","properties":{"mhid":"1332:244","alt_name":"KABUPATEN JEMBER","latitude":-8.25,"longitude":113.65,"sample_value":496},"geometry":{"type":"MultiLineString","coordinates":[[[113.301,-8.4472],[113.2959,-8.4441],[113.2904,-8.4457],[113.2933,-8.4496],[113.2904,-8.4578],[113.2824,-8.4634],[113.2743,-8.4634],[113.2679,-8.4678],[113.2689,-8.4702],[113.2629,-8.4853],[113.2637,-8.4889],[113.2696,-8.49],[113.268,-8.497],[113.2787,-8.499],[113.2843,-8.4984],[113.2885,-8.5037],[113.2955,-8.5073],[113.2985,-8.5025],[113.3057,-8.5088],[113.3117,-8.5047],[113.3156,-8.5066],[113.3234,-8.5031],[113.3311,-8.5035],[113.3409,-8.5006],[113.3473,-8.5035],[113.3583,-8.5009],[113.3636,-8.5017],[113.383,-8.4959],[113.3895,-8.4961],[113.3945,-8.4938],[113.3986,-8.4966],[113.4028,-8.4931],[113.4077,-8.4928],[113.41,-8.4841],[113.4103,-8.4759],[113.4151,-8.4752],[113.4195,-8.4705],[113.4162,-8.4682],[113.4058,-8.4658],[113.4003,-8.4579],[113.3966,-8.4552],[113.382,-8.4587],[113.3783,-8.4567],[113.3708,-8.4585],[113.3675,-8.4547],[113.3588,-8.4529],[113.3528,-8.4493],[113.3477,-8.4556],[113.3435,-8.458],[113.34,-8.454],[113.3355,-8.453],[113.3318,-8.4485],[113.3255,-8.4526],[113.3137,-8.4521],[113.3093,-8.4496],[113.3027,-8.4494],[113.301,-8.4472]],[[113.3034,-8.3075],[113.3109,-8.3109],[113.3302,-8.3234],[113.3378,-8.3292],[113.3584,-8.3503],[113.3647,-8.3577],[113.3723,-8.3693],[113.3863,-8.3983],[113.3923,-8.4],[113.4029,-8.3929],[113.4064,-8.3888],[113.41,-8.3887],[113.4221,-8.3821],[113.4356,-8.3787],[113.4494,-8.3782],[113.4592,-8.3794],[113.4736,-8.3841],[113.4757,-8.3976],[113.4795,-8.4105],[113.4848,-8.4163],[113.4942,-8.4134],[113.4982,-8.4177],[113.5031,-8.4185],[113.5073,-8.422],[113.5118,-8.4215],[113.5272,-8.4306],[113.533,-8.4293],[113.5491,-8.4303],[113.5534,-8.4316],[113.5578,-8.4267],[113.5657,-8.4248],[113.5741,-8.4271],[113.5816,-8.4335],[113.5806,-8.4384],[113.587,-8.4425],[113.5921,-8.4367],[113.6019,-8.4363],[113.6214,-8.4448],[113.6265,-8.4491],[113.6247,-8.4535],[113.6279,-8.4562],[113.6382,-8.455],[113.6404,-8.4576],[113.642,-8.4653],[113.6377,-8.4682],[113.6362,-8.4724],[113.6381,-8.476],[113.6448,-8.478],[113.6484,-8.4813],[113.6489,-8.4867],[113.645,-8.4894],[113.6462,-8.495],[113.6563,-8.4941],[113.6607,-8.4984],[113.6691,-8.4982],[113.6701,-8.495],[113.6759,-8.4917],[113.681,-8.4936],[113.685,-8.4921],[113.6863,-8.5033],[113.6905,-8.5053],[113.6951,-8.5002],[113.6948,-8.4959],[113.7031,-8.4908],[113.7004,-8.4863],[113.7046,-8.4819],[113.7111,-8.4823],[113.7171,-8.4853],[113.7218,-8.4972],[113.7197,-8.5035],[113.7132,-8.5148],[113.712,-8.5285],[113.7161,-8.5273],[113.72,-8.5191],[113.7316,-8.5154],[113.7338,-8.5174],[113.7329,-8.5234],[113.7376,-8.5261],[113.7444,-8.5217],[113.7538,-8.5198],[113.7612,-8.5156],[113.7596,-8.5122],[113.7547,-8.5104],[113.7578,-8.5034],[113.7647,-8.5012],[113.7671,-8.5048],[113.7865,-8.4929],[113.7895,-8.4896],[113.7961,-8.4898],[113.8068,-8.4951],[113.8115,-8.4989],[113.8107,-8.505],[113.8066,-8.5061],[113.8056,-8.5099],[113.8104,-8.5142],[113.8066,-8.5175],[113.8097,-8.5343],[113.8143,-8.5337],[113.8157,-8.5373],[113.8097,-8.548],[113.807,-8.5476],[113.8068,-8.5554],[113.8146,-8.5588],[113.8159,-8.5555],[113.8162,-8.5457],[113.8203,-8.5449],[113.8256,-8.5411],[113.8252,-8.5381],[113.8288,-8.5277],[113.8348,-8.5282],[113.8383,-8.5355],[113.834,-8.5411],[113.8368,-8.5474],[113.8371,-8.554]]]}},{"type":"Feature","properties":{"mhid":"1332:245","alt_name":"KABUPATEN BANYUWANGI","latitude":-8.33333,"longitude":114.2,"sample_value":423},"geometry":{"type":"MultiLineString","coordinates":[[[113.8371,-8.554],[113.8433,-8.5546],[113.8508,-8.5524],[113.8548,-8.5532],[113.8571,-8.5595],[113.8631,-8.5618],[113.8673,-8.5609],[113.8718,-8.5571],[113.8934,-8.5647],[113.9,-8.5707],[113.8999,-8.5751],[113.9086,-8.5798],[113.914,-8.5778],[113.918,-8.5741],[113.9227,-8.5743],[113.9259,-8.5691],[113.9234,-8.5649],[113.9252,-8.561],[113.9296,-8.5614],[113.932,-8.5663],[113.9374,-8.5652],[113.9349,-8.5607],[113.9421,-8.5582],[113.946,-8.5592],[113.9566,-8.5656],[113.963,-8.5721],[113.9665,-8.5777],[113.9688,-8.5849],[113.9686,-8.5899],[113.9656,-8.5968],[113.958,-8.5992],[113.9534,-8.5954],[113.9471,-8.6],[113.9505,-8.6049],[113.9567,-8.6088],[113.9563,-8.6136],[113.9614,-8.6173],[113.9689,-8.6138],[113.9712,-8.6084],[113.9787,-8.6091],[113.9822,-8.6065],[113.9887,-8.6054],[113.9899,-8.5992],[113.995,-8.6061],[113.9979,-8.6027],[113.996,-8.5942],[114.0041,-8.59],[114.0152,-8.5904],[114.0259,-8.5952],[114.0292,-8.6009],[114.0318,-8.615],[114.0301,-8.6212],[114.0318,-8.6229],[114.0313,-8.6302],[114.0349,-8.6341],[114.0424,-8.6353],[114.048,-8.6386],[114.0476,-8.646],[114.0525,-8.6445],[114.0499,-8.6392],[114.0591,-8.6327],[114.0593,-8.6272],[114.0648,-8.6253],[114.0783,-8.6251],[114.0824,-8.629],[114.0856,-8.6281],[114.085,-8.6216],[114.0903,-8.6161],[114.0973,-8.6158],[114.1125,-8.6187],[114.1192,-8.6188],[114.1346,-8.621],[114.1442,-8.6232],[114.1616,-8.6283],[114.177,-8.6345],[114.1835,-8.6388],[114.1967,-8.6409],[114.2016,-8.6408],[114.2097,-8.6453],[114.2206,-8.6454],[114.227,-8.626],[114.2299,-8.6206],[114.2254,-8.6123],[114.2326,-8.6025],[114.2479,-8.6003],[114.2645,-8.604],[114.2714,-8.6078],[114.283,-8.6121],[114.294,-8.6148],[114.3084,-8.6195],[114.3203,-8.6248],[114.3331,-8.6326],[114.3507,-8.6463],[114.3637,-8.6613],[114.37,-8.6707],[114.3732,-8.678],[114.3746,-8.691],[114.3775,-8.6991],[114.3764,-8.7055],[114.3711,-8.7188],[114.3624,-8.7261],[114.3485,-8.7328],[114.3442,-8.7336],[114.3423,-8.7392],[114.3452,-8.7429],[114.3537,-8.7459],[114.3712,-8.7494],[114.3816,-8.749],[114.3917,-8.7523],[114.4074,-8.7517],[114.4189,-8.7492],[114.4249,-8.7511],[114.4455,-8.7528],[114.4706,-8.7597],[114.478,-8.7605],[114.4834,-8.7649],[114.4918,-8.7685],[114.4979,-8.7728],[114.5051,-8.7755],[114.5245,-8.7794],[114.539,-8.7802],[114.5482,-8.778],[114.5541,-8.7755],[114.5689,-8.7728],[114.5758,-8.7699],[114.5881,-8.762],[114.5955,-8.7513],[114.5958,-8.7408],[114.604,-8.7243],[114.6044,-8.7143],[114.5975,-8.7047],[114.5975,-8.7012],[114.5886,-8.6873],[114.5751,-8.6714],[114.5707,-8.6613],[114.5616,-8.6558],[114.5543,-8.6568],[114.5461,-8.6593],[114.5367,-8.6563],[114.5312,-8.6561],[114.5241,-8.6517],[114.5185,-8.6516],[114.5132,-8.6493],[114.5066,-8.64],[114.5052,-8.6356],[114.4964,-8.6347],[114.4884,-8.6297],[114.4809,-8.6179],[114.4727,-8.6177],[114.4653,-8.625],[114.464,-8.6296],[114.4579,-8.6385],[114.4504,-8.6395],[114.4419,-8.6343],[114.4387,-8.6295],[114.4392,-8.6246],[114.4325,-8.613],[114.4231,-8.6047],[114.4207,-8.5982],[114.4178,-8.5844],[114.4101,-8.5741],[114.407,-8.5529],[114.4035,-8.5482],[114.4014,-8.5418],[114.4018,-8.5339],[114.4055,-8.5234],[114.4086,-8.5206],[114.4096,-8.5156],[114.4045,-8.5006],[114.3997,-8.4984],[114.3975,-8.4951],[114.3964,-8.488],[114.3974,-8.4758],[114.3994,-8.4635],[114.399,-8.459],[114.3954,-8.4533],[114.389,-8.4478],[114.3831,-8.4474],[114.383,-8.4563],[114.3856,-8.4614],[114.3862,-8.4725],[114.3881,-8.4814],[114.3849,-8.4929],[114.3855,-8.5041],[114.3832,-8.514],[114.379,-8.5219],[114.3757,-8.5329],[114.3721,-8.5359],[114.3645,-8.5373],[114.3565,-8.5351],[114.3533,-8.5325],[114.3502,-8.525],[114.3511,-8.5196],[114.3572,-8.5116],[114.357,-8.5054],[114.3616,-8.5],[114.3639,-8.4906],[114.3634,-8.4834],[114.36,-8.4751],[114.3542,-8.4673],[114.3564,-8.4649],[114.3544,-8.4571],[114.3482,-8.4523],[114.342,-8.439],[114.3403,-8.4317],[114.34,-8.4232],[114.3414,-8.4152],[114.3457,-8.4036],[114.3487,-8.3827],[114.3521,-8.3735],[114.3513,-8.3614],[114.3531,-8.3533],[114.3596,-8.3391],[114.3606,-8.3343],[114.3578,-8.3301],[114.3584,-8.3246],[114.3642,-8.3124],[114.365,-8.3089],[114.3634,-8.2987],[114.3654,-8.2902],[114.3661,-8.2802],[114.3759,-8.2598],[114.3864,-8.241],[114.3902,-8.2361],[114.3898,-8.2263],[114.3858,-8.2173],[114.386,-8.2091],[114.383,-8.2046],[114.3826,-8.1969],[114.386,-8.1869],[114.394,-8.1718],[114.3956,-8.1614],[114.4018,-8.1502],[114.4003,-8.1388],[114.4015,-8.1346],[114.3981,-8.1245],[114.4007,-8.117],[114.4066,-8.1119],[114.4102,-8.1023],[114.4152,-8.093],[114.4176,-8.0856],[114.4174,-8.0811],[114.4264,-8.069],[114.4299,-8.0658],[114.4313,-8.0563],[114.429,-8.0451],[114.43,-8.0408],[114.4339,-8.0366],[114.4346,-8.0317],[114.4257,-8.0195],[114.4257,-8.0143],[114.4302,-7.9972],[114.4292,-7.9914],[114.4253,-7.9826],[114.4253,-7.9702],[114.4228,-7.9613],[114.4231,-7.9498],[114.4244,-7.9443],[114.4238,-7.9355]]]}},{"type":"Feature","properties":{"mhid":"1332:247","alt_name":"KABUPATEN SITUBONDO","latitude":-7.71667,"longitude":114.05,"sample_value":67},"geometry":{"type":"MultiLineString","coordinates":[[[114.4238,-7.9355],[114.4212,-7.9264],[114.4235,-7.9169],[114.428,-7.9136],[114.437,-7.9102],[114.4392,-7.9038],[114.4441,-7.8991],[114.4635,-7.8901],[114.464,-7.8803],[114.4619,-7.8758],[114.4625,-7.8711],[114.4597,-7.8624],[114.4636,-7.8608],[114.4656,-7.8562],[114.4641,-7.8517],[114.4645,-7.8452],[114.4677,-7.8341],[114.4649,-7.8239],[114.4628,-7.8212],[114.4585,-7.8089],[114.4479,-7.7957],[114.4442,-7.7962],[114.4428,-7.7916],[114.4369,-7.7879],[114.4295,-7.7888],[114.4278,-7.7863],[114.4174,-7.7791],[114.4078,-7.7742],[114.4029,-7.7699],[114.3945,-7.7714],[114.3874,-7.7638],[114.3811,-7.7608],[114.3814,-7.7553],[114.3741,-7.7489],[114.3649,-7.7479],[114.359,-7.7499],[114.3568,-7.7545],[114.3503,-7.7535],[114.3456,-7.7556],[114.3382,-7.7559],[114.3282,-7.7583],[114.3181,-7.7556],[114.3098,-7.7463],[114.3046,-7.7459],[114.2967,-7.7482],[114.2918,-7.7466],[114.286,-7.7403],[114.2835,-7.7356],[114.2689,-7.7239],[114.259,-7.7183],[114.2509,-7.7095],[114.2456,-7.7012],[114.2418,-7.6985],[114.2368,-7.6981],[114.2296,-7.703],[114.2181,-7.7127],[114.2085,-7.7179],[114.2024,-7.7158],[114.1953,-7.7079],[114.189,-7.7122],[114.1777,-7.7143],[114.1658,-7.7152],[114.151,-7.714],[114.1406,-7.7145],[114.1339,-7.7134],[114.1237,-7.7072],[114.1192,-7.7093],[114.1067,-7.7065],[114.1009,-7.7015],[114.0956,-7.6891],[114.0893,-7.6809],[114.0843,-7.6716],[114.0694,-7.6373],[114.0599,-7.6229],[114.0458,-7.6086],[114.0437,-7.6135],[114.0358,-7.6093],[114.0302,-7.6086],[114.0156,-7.6219],[114.0045,-7.6348],[113.9961,-7.6367],[113.9902,-7.6402],[113.9811,-7.6495],[113.9731,-7.6509],[113.9685,-7.656],[113.9672,-7.6607],[113.9605,-7.6697],[113.9561,-7.6774],[113.9518,-7.6807],[113.948,-7.6768],[113.9432,-7.6754],[113.9397,-7.677],[113.9359,-7.6835],[113.9371,-7.6899],[113.9359,-7.6936],[113.931,-7.7001],[113.9215,-7.701],[113.9129,-7.6966],[113.9043,-7.699],[113.8959,-7.6964],[113.8894,-7.6923],[113.8862,-7.6878],[113.8788,-7.6881],[113.867,-7.6819],[113.8581,-7.6851],[113.8414,-7.6845],[113.8311,-7.6884],[113.8269,-7.6953],[113.8171,-7.6994],[113.8112,-7.7117],[113.7982,-7.7257],[113.7888,-7.7317],[113.7823,-7.7337],[113.7745,-7.7327],[113.7633,-7.7378],[113.7559,-7.7373],[113.7233,-7.721],[113.7153,-7.7124],[113.7131,-7.7078],[113.7084,-7.7096],[113.6941,-7.7218],[113.6828,-7.7287],[113.6739,-7.7304],[113.6701,-7.7349],[113.6655,-7.737],[113.6571,-7.7336],[113.6524,-7.7302],[113.6473,-7.7236],[113.6436,-7.7256],[113.6349,-7.7222],[113.6252,-7.7227],[113.6187,-7.72],[113.6128,-7.7226],[113.5978,-7.7171],[113.5979,-7.7153]]]}},{"type":"Feature","properties":{"mhid":"1332:248","alt_name":"KABUPATEN PROBOLINGGO","latitude":-7.86667,"longitude":113.31667,"sample_value":169},"geometry":{"type":"MultiLineString","coordinates":[[[113.5979,-7.7153],[113.5829,-7.7114],[113.5785,-7.7083],[113.5701,-7.7124],[113.5626,-7.7142],[113.5541,-7.7124],[113.5504,-7.7136],[113.5431,-7.7125],[113.5382,-7.71],[113.5331,-7.7106],[113.5256,-7.7082],[113.5191,-7.7043],[113.5009,-7.6984],[113.4886,-7.6977],[113.4848,-7.6985],[113.4774,-7.7042],[113.4712,-7.7065],[113.4702,-7.7135],[113.4574,-7.7233],[113.4508,-7.7256],[113.4388,-7.7342],[113.431,-7.7355],[113.4187,-7.7343],[113.4115,-7.7345],[113.4008,-7.7405],[113.3975,-7.7381],[113.3871,-7.7437],[113.3828,-7.7391],[113.3791,-7.7382],[113.3743,-7.7426],[113.3727,-7.7502],[113.3678,-7.7547],[113.3608,-7.7576],[113.3466,-7.7687],[113.3456,-7.771],[113.333,-7.7748],[113.3241,-7.7761],[113.3185,-7.7741],[113.3169,-7.7682],[113.3081,-7.7675],[113.3012,-7.7694],[113.2906,-7.7765],[113.288,-7.7833],[113.2804,-7.7837],[113.2735,-7.7792],[113.2651,-7.7657],[113.2579,-7.7561],[113.2552,-7.7501],[113.255,-7.7426],[113.2506,-7.7425],[113.2483,-7.7455],[113.2372,-7.7403]],[[113.1787,-7.7476],[113.1785,-7.7403],[113.1742,-7.736],[113.1728,-7.7276],[113.1675,-7.728],[113.1677,-7.7334],[113.1704,-7.7375],[113.163,-7.7421],[113.1512,-7.7411],[113.1469,-7.736],[113.1431,-7.7288],[113.1401,-7.726],[113.1289,-7.7242],[113.1162,-7.7257],[113.11,-7.7222],[113.1036,-7.7164],[113.0959,-7.7061]],[[113.2616,-7.6763],[113.2474,-7.6782],[113.2508,-7.6814],[113.2605,-7.6795],[113.2616,-7.6763]]]}},{"type":"Feature","properties":{"mhid":"1332:249","alt_name":"KABUPATEN PASURUAN","latitude":-7.73333,"longitude":112.83333,"sample_value":174},"geometry":{"type":"MultiLineString","coordinates":[[[113.0959,-7.7061],[113.0938,-7.7035],[113.0867,-7.7021],[113.0769,-7.6904],[113.0635,-7.6688],[113.0503,-7.6575],[113.0416,-7.6531],[113.0287,-7.6493],[113.0197,-7.6496],[113.0142,-7.6524],[113.0027,-7.6543],[112.9925,-7.6575],[112.9848,-7.6565],[112.979,-7.6537],[112.9689,-7.6465],[112.9657,-7.6405],[112.9611,-7.6365],[112.9595,-7.6295],[112.9564,-7.6281],[112.9498,-7.6359]],[[112.9028,-7.6258],[112.8951,-7.62],[112.8894,-7.6171],[112.8804,-7.606],[112.8732,-7.5883],[112.8702,-7.5849],[112.8604,-7.5851],[112.8508,-7.5819],[112.8448,-7.5779],[112.8373,-7.5665]]]}},{"type":"Feature","properties":{"mhid":"1332:250","alt_name":"KABUPATEN SIDOARJO","latitude":-7.45,"longitude":112.7,"sample_value":761},"geometry":{"type":"MultiLineString","coordinates":[[[112.8373,-7.5665],[112.8468,-7.5757],[112.8604,-7.5762],[112.8684,-7.5691],[112.8722,-7.5569],[112.8718,-7.5516],[112.8663,-7.5475],[112.8725,-7.5354],[112.8722,-7.5309],[112.867,-7.5265],[112.8672,-7.522],[112.8645,-7.5183],[112.856,-7.5183],[112.843,-7.5127],[112.8374,-7.5118],[112.831,-7.5009],[112.823,-7.4934],[112.8194,-7.4859],[112.8129,-7.4785],[112.8177,-7.4736],[112.8251,-7.4732],[112.8342,-7.4766],[112.8376,-7.4706],[112.8345,-7.4434],[112.8341,-7.4299],[112.8325,-7.4201],[112.8333,-7.4075],[112.8367,-7.3883],[112.8349,-7.3824],[112.8367,-7.3786],[112.8427,-7.3337],[112.8391,-7.3303],[112.8327,-7.3343],[112.828,-7.3434],[112.8259,-7.3432]]]}},{"type":"Feature","properties":{"mhid":"1332:23","alt_name":"KOTA LHOKSEUMAWE","latitude":5.13333,"longitude":97.06667,"sample_value":558},"geometry":{"type":"MultiLineString","coordinates":[[[97.1771,5.1413],[97.1702,5.143],[97.146,5.153],[97.1424,5.1569],[97.1422,5.1604],[97.1377,5.1691],[97.1385,5.1719],[97.1437,5.1743],[97.1459,5.1695],[97.1506,5.1678],[97.154,5.1747],[97.1514,5.1875],[97.1452,5.1972],[97.1404,5.2012],[97.1187,5.2119],[97.1171,5.2175],[97.1086,5.2208],[97.1067,5.2118],[97.097,5.2182],[97.0975,5.2228],[97.1042,5.2213],[97.1046,5.2247],[97.0935,5.2266],[97.0815,5.2313],[97.0687,5.2349],[97.0614,5.2354],[97.0518,5.238],[97.0456,5.2408]]]}},{"type":"Feature","properties":{"mhid":"1332:24","alt_name":"KOTA SUBULUSSALAM","latitude":2.75,"longitude":97.93333,"sample_value":513},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:50","alt_name":"KOTA SIBOLGA","latitude":1.73333,"longitude":98.8,"sample_value":560},"geometry":{"type":"MultiLineString","coordinates":[[[98.7683,1.7156],[98.76,1.7129],[98.7619,1.706],[98.7688,1.7077],[98.7683,1.7156]],[[98.7687,1.7564],[98.769,1.7447],[98.7731,1.7428],[98.7768,1.7366],[98.7852,1.7283],[98.7884,1.7297],[98.7962,1.7216]]]}},{"type":"Feature","properties":{"mhid":"1332:54","alt_name":"KOTA MEDAN","latitude":3.65,"longitude":98.66667,"sample_value":389},"geometry":{"type":"MultiLineString","coordinates":[[[98.707,3.7726],[98.7131,3.7795],[98.7198,3.7919],[98.7179,3.7975],[98.7123,3.7922],[98.7047,3.7905]]]}},{"type":"Feature","properties":{"mhid":"1332:57","alt_name":"KOTA GUNUNGSITOLI","latitude":1.32731,"longitude":97.55018,"sample_value":24},"geometry":{"type":"MultiLineString","coordinates":[[[97.6902,1.1785],[97.6818,1.1899],[97.6797,1.1979],[97.6795,1.2107],[97.6754,1.2205],[97.6603,1.2321],[97.6518,1.2376],[97.65,1.2439],[97.6398,1.2562],[97.64,1.2614],[97.6357,1.2709],[97.6299,1.2785],[97.6258,1.2858],[97.6197,1.2907],[97.6132,1.2918],[97.6095,1.297],[97.609,1.304],[97.6114,1.3074],[97.6093,1.3123],[97.6017,1.3201],[97.5992,1.3289],[97.5922,1.337],[97.5879,1.3384],[97.5836,1.3432],[97.5784,1.3461],[97.5733,1.3551],[97.5685,1.3612],[97.563,1.3658],[97.5617,1.3717],[97.5585,1.3763],[97.5491,1.3785],[97.5463,1.385],[97.542,1.3894],[97.5413,1.4147],[97.5381,1.4216],[97.526,1.4219],[97.5213,1.4234]]]}},{"type":"Feature","properties":{"mhid":"1332:59","alt_name":"KABUPATEN KEPULAUAN MENTAWAI","latitude":1.98917,"longitude":99.51889,"sample_value":805},"geometry":{"type":"MultiLineString","coordinates":[[[100.3368,-3.2836],[100.3313,-3.2834],[100.3302,-3.2878],[100.3335,-3.2931],[100.3467,-3.2946],[100.3487,-3.2901],[100.3416,-3.2837],[100.3368,-3.2836]],[[100.4463,-3.2704],[100.4441,-3.262],[100.4376,-3.2599],[100.4411,-3.2704],[100.4463,-3.2704]],[[100.5696,-3.2751],[100.5726,-3.2719],[100.5722,-3.2618],[100.57,-3.2572],[100.5664,-3.2588],[100.5654,-3.2712],[100.5696,-3.2751]],[[100.531,-3.2507],[100.5336,-3.2468],[100.5325,-3.2386],[100.5296,-3.2374],[100.5269,-3.2434],[100.5274,-3.2482],[100.531,-3.2507]],[[100.4135,-3.2248],[100.4156,-3.2325],[100.4233,-3.2372],[100.4252,-3.2348],[100.4223,-3.2261],[100.4155,-3.2224],[100.4135,-3.2248]],[[100.4929,-3.2303],[100.4945,-3.2283],[100.4922,-3.218],[100.4838,-3.2109],[100.4815,-3.214],[100.4835,-3.2193],[100.4929,-3.2303]],[[100.4633,-3.209],[100.4591,-3.2093],[100.4611,-3.2183],[100.466,-3.2228],[100.4694,-3.2219],[100.4633,-3.209]],[[100.2993,-3.208],[100.2936,-3.2086],[100.2946,-3.2133],[100.299,-3.216],[100.3016,-3.2143],[100.2993,-3.208]],[[100.4014,-3.2023],[100.3957,-3.2034],[100.3989,-3.2121],[100.399,-3.2162],[100.4061,-3.2199],[100.4099,-3.2186],[100.4122,-3.2127],[100.4086,-3.203],[100.4014,-3.2023]],[[100.4917,-3.1412],[100.489,-3.1415],[100.4859,-3.1483],[100.485,-3.1594],[100.4881,-3.1645],[100.4839,-3.1713],[100.4891,-3.1742],[100.4915,-3.1844],[100.4963,-3.187],[100.5034,-3.1991],[100.508,-3.201],[100.5145,-3.1956],[100.5195,-3.1953],[100.5287,-3.2002],[100.5318,-3.1977],[100.5289,-3.1935],[100.5245,-3.1938],[100.5201,-3.1903],[100.5179,-3.1832],[100.5095,-3.1805],[100.5071,-3.1781],[100.5092,-3.1725],[100.5003,-3.1635],[100.5027,-3.1581],[100.5007,-3.1469],[100.4941,-3.1413],[100.4917,-3.1412]],[[100.3046,-3.1224],[100.2954,-3.1221],[100.2957,-3.1259],[100.299,-3.1293],[100.3029,-3.1381],[100.3066,-3.1395],[100.3098,-3.1357],[100.311,-3.1284],[100.3046,-3.1224]],[[100.4713,-3.0826],[100.4701,-3.0884],[100.4748,-3.091],[100.4766,-3.0881],[100.4713,-3.0826]],[[100.1747,-3.0537],[100.1719,-3.0543],[100.1703,-3.062],[100.1766,-3.0686],[100.181,-3.0755],[100.1891,-3.0774],[100.1973,-3.0676],[100.1963,-3.063],[100.191,-3.0579],[100.186,-3.058],[100.182,-3.055],[100.1747,-3.0537]],[[100.1617,-3.0064],[100.1602,-3.0101],[100.1681,-3.0116],[100.1671,-3.0077],[100.1617,-3.0064]],[[100.1542,-3.0108],[100.1466,-3.0061],[100.1445,-3.0083],[100.145,-3.0169],[100.1486,-3.0252],[100.1529,-3.0275],[100.1565,-3.021],[100.1566,-3.011],[100.1542,-3.0108]],[[100.179,-2.8849],[100.1726,-2.8896],[100.1753,-2.894],[100.1818,-2.8905],[100.179,-2.8849]],[[100.1676,-2.8747],[100.1624,-2.8714],[100.1597,-2.8785],[100.1655,-2.8842],[100.1697,-2.8831],[100.1676,-2.8747]],[[100.1445,-2.8468],[100.1399,-2.8475],[100.1303,-2.8545],[100.1328,-2.8583],[100.1415,-2.8601],[100.1468,-2.8629],[100.1511,-2.8598],[100.1503,-2.8521],[100.1445,-2.8468]],[[100.1713,-2.8297],[100.176,-2.8265],[100.1746,-2.8218],[100.168,-2.8227],[100.1677,-2.8277],[100.1713,-2.8297]],[[100.2706,-2.8181],[100.2658,-2.8193],[100.2643,-2.8235],[100.2668,-2.8273],[100.2722,-2.8246],[100.2735,-2.8198],[100.2706,-2.8181]],[[100.1675,-2.8208],[100.1691,-2.817],[100.1672,-2.8107],[100.1628,-2.816],[100.1675,-2.8208]],[[100.2268,-2.785],[100.2238,-2.7825],[100.2208,-2.7881],[100.2171,-2.7856],[100.204,-2.7869],[100.2011,-2.7853],[100.1971,-2.7882],[100.1991,-2.7921],[100.1935,-2.7945],[100.1888,-2.7922],[100.1819,-2.7939],[100.1775,-2.7974],[100.1755,-2.8025],[100.1756,-2.811],[100.1829,-2.825],[100.1842,-2.8364],[100.1789,-2.8401],[100.1836,-2.8443],[100.1829,-2.8499],[100.1887,-2.8527],[100.1948,-2.8769],[100.1927,-2.8814],[100.1962,-2.8855],[100.1959,-2.8947],[100.1901,-2.9052],[100.1952,-2.9121],[100.1997,-2.9232],[100.2014,-2.932],[100.2007,-2.9392],[100.1934,-2.9472],[100.1935,-2.9511],[100.1901,-2.9562],[100.1842,-2.9543],[100.1805,-2.9657],[100.1901,-2.9705],[100.1913,-2.9753],[100.1896,-2.9846],[100.1865,-2.989],[100.1941,-2.9969],[100.1992,-2.9945],[100.2016,-2.9977],[100.2006,-3.0021],[100.2049,-3.003],[100.205,-3.0088],[100.2119,-3.012],[100.2111,-3.018],[100.2171,-3.0233],[100.22,-3.0212],[100.2234,-3.0249],[100.2188,-3.0277],[100.223,-3.036],[100.2299,-3.0358],[100.228,-3.0484],[100.2314,-3.0571],[100.2352,-3.0564],[100.2379,-3.0513],[100.2414,-3.0501],[100.2459,-3.0438],[100.2521,-3.0461],[100.2558,-3.0522],[100.2556,-3.0558],[100.2494,-3.0575],[100.2481,-3.0623],[100.2586,-3.0598],[100.2618,-3.0635],[100.2621,-3.0677],[100.2494,-3.0734],[100.2464,-3.0739],[100.2462,-3.0796],[100.2516,-3.0825],[100.2598,-3.0896],[100.2679,-3.0901],[100.2672,-3.0807],[100.2746,-3.0766],[100.2812,-3.0777],[100.283,-3.0804],[100.2908,-3.0802],[100.3011,-3.0879],[100.3073,-3.0956],[100.3118,-3.1032],[100.3117,-3.1065],[100.3071,-3.1094],[100.3076,-3.1141],[100.3119,-3.1187],[100.3231,-3.1192],[100.3217,-3.1254],[100.3315,-3.131],[100.3316,-3.1401],[100.3346,-3.1438],[100.3335,-3.1487],[100.3345,-3.1559],[100.339,-3.1579],[100.3393,-3.1632],[100.3359,-3.1662],[100.3262,-3.1688],[100.3244,-3.1713],[100.3272,-3.1758],[100.3292,-3.1833],[100.3378,-3.1938],[100.3386,-3.1999],[100.3428,-3.202],[100.3477,-3.2098],[100.3525,-3.2125],[100.3568,-3.2213],[100.363,-3.2221],[100.3685,-3.2265],[100.3677,-3.2291],[100.359,-3.2279],[100.3554,-3.2311],[100.3468,-3.2283],[100.3442,-3.2293],[100.3397,-3.2235],[100.3381,-3.2163],[100.3288,-3.2079],[100.3239,-3.2104],[100.3275,-3.2185],[100.3254,-3.2246],[100.3262,-3.2299],[100.3339,-3.2321],[100.3367,-3.2468],[100.3426,-3.2483],[100.3445,-3.2454],[100.3521,-3.2435],[100.3583,-3.2448],[100.3744,-3.2518],[100.3821,-3.2581],[100.381,-3.2638],[100.3774,-3.2648],[100.379,-3.2742],[100.3809,-3.2771],[100.3777,-3.284],[100.3822,-3.2892],[100.395,-3.2974],[100.3989,-3.297],[100.4058,-3.2998],[100.4105,-3.3051],[100.417,-3.308],[100.4209,-3.3149],[100.4206,-3.3223],[100.4243,-3.3268],[100.4333,-3.3321],[100.4397,-3.3441],[100.4448,-3.3472],[100.4587,-3.35],[100.4722,-3.3483],[100.4726,-3.3433],[100.4771,-3.3417],[100.4785,-3.3359],[100.4694,-3.3248],[100.4713,-3.3172],[100.4683,-3.312],[100.4568,-3.3061],[100.4565,-3.2999],[100.452,-3.2949],[100.4464,-3.2849],[100.4387,-3.28],[100.4327,-3.28],[100.4311,-3.272],[100.4321,-3.2675],[100.4296,-3.2585],[100.4249,-3.2539],[100.415,-3.2491],[100.4118,-3.2446],[100.4063,-3.2318],[100.4019,-3.2254],[100.3979,-3.2248],[100.3974,-3.2186],[100.3932,-3.2148],[100.3927,-3.2085],[100.3888,-3.202],[100.3897,-3.1955],[100.3806,-3.1867],[100.3819,-3.1852],[100.3894,-3.1905],[100.3914,-3.1967],[100.3973,-3.1991],[100.4097,-3.1935],[100.4057,-3.1906],[100.4038,-3.1841],[100.3987,-3.1764],[100.3927,-3.1726],[100.385,-3.1733],[100.3774,-3.1687],[100.3638,-3.1687],[100.3662,-3.1631],[100.3703,-3.1623],[100.3767,-3.1643],[100.3834,-3.1575],[100.3878,-3.156],[100.3924,-3.1508],[100.4004,-3.1559],[100.407,-3.1535],[100.4153,-3.155],[100.4184,-3.1524],[100.4249,-3.1539],[100.4266,-3.1434],[100.4302,-3.1475],[100.439,-3.1511],[100.4435,-3.1512],[100.4489,-3.1453],[100.4534,-3.1473],[100.4685,-3.1452],[100.4718,-3.1395],[100.4726,-3.1292],[100.4705,-3.1252],[100.4656,-3.1226],[100.4579,-3.1208],[100.4566,-3.1107],[100.4574,-3.1079],[100.4626,-3.1068],[100.4592,-3.1002],[100.4611,-3.0944],[100.4637,-3.0762],[100.4629,-3.0723],[100.4682,-3.0679],[100.4688,-3.0639],[100.4652,-3.0574],[100.4677,-3.0531],[100.4664,-3.0475],[100.4684,-3.0437],[100.4637,-3.0411],[100.4624,-3.0496],[100.4576,-3.0511],[100.4543,-3.0451],[100.4504,-3.0437],[100.4526,-3.0386],[100.4461,-3.0225],[100.4484,-3.0205],[100.4531,-3.0286],[100.4587,-3.0228],[100.4581,-3.031],[100.4634,-3.0331],[100.4651,-3.0254],[100.4605,-3.0198],[100.4546,-3.0101],[100.4435,-3.0066],[100.4402,-3.0069],[100.4278,-3.0011],[100.4252,-2.998],[100.4284,-2.9932],[100.4263,-2.9882],[100.4198,-2.9823],[100.4211,-2.9737],[100.416,-2.9695],[100.4045,-2.9663],[100.3945,-2.9571],[100.3923,-2.949],[100.3865,-2.9457],[100.3825,-2.9343],[100.3717,-2.9272],[100.3654,-2.9174],[100.3591,-2.9132],[100.3565,-2.9089],[100.3549,-2.9016],[100.3495,-2.8985],[100.3467,-2.8945],[100.3413,-2.8942],[100.3348,-2.8865],[100.3286,-2.8812],[100.3222,-2.8802],[100.3155,-2.8757],[100.3101,-2.874],[100.3086,-2.8705],[100.2992,-2.8603],[100.2935,-2.8513],[100.2883,-2.8542],[100.2839,-2.8534],[100.2854,-2.8483],[100.284,-2.8443],[100.278,-2.8446],[100.2667,-2.8425],[100.2672,-2.838],[100.2709,-2.8363],[100.2644,-2.8296],[100.2623,-2.8182],[100.2521,-2.8108],[100.2499,-2.8069],[100.2525,-2.7984],[100.2442,-2.7969],[100.2413,-2.7896],[100.2351,-2.7836],[100.2268,-2.785]],[[99.9841,-2.747],[99.9791,-2.7498],[99.981,-2.7569],[99.987,-2.7534],[99.9841,-2.747]],[[99.9939,-2.5025],[99.9852,-2.5059],[99.9749,-2.5083],[99.9718,-2.5144],[99.975,-2.5312],[99.9715,-2.5332],[99.9747,-2.5373],[99.9746,-2.542],[99.9699,-2.5537],[99.973,-2.5598],[99.9738,-2.567],[99.9714,-2.5694],[99.9611,-2.5704],[99.9602,-2.5725],[99.9635,-2.5813],[99.9708,-2.5891],[99.981,-2.5953],[99.9843,-2.6033],[99.9873,-2.606],[99.9887,-2.6112],[99.9876,-2.6216],[99.9819,-2.6252],[99.9781,-2.6226],[99.9748,-2.6268],[99.9767,-2.6326],[99.985,-2.6347],[99.9895,-2.6398],[99.994,-2.65],[99.9925,-2.6543],[99.9986,-2.6643],[100.0054,-2.6666],[100.0095,-2.674],[100.012,-2.6865],[100.008,-2.6954],[99.9989,-2.6969],[100.0023,-2.7059],[100.0018,-2.7123],[100.0031,-2.7192],[100.0095,-2.7272],[100.0047,-2.729],[100.0057,-2.7342],[100.0117,-2.7386],[100.0105,-2.7433],[100.0023,-2.7445],[99.995,-2.7511],[99.9956,-2.758],[99.989,-2.7648],[99.9921,-2.7694],[99.9835,-2.7707],[99.9813,-2.7756],[99.9771,-2.7793],[99.9732,-2.7853],[99.978,-2.7876],[99.9835,-2.7819],[99.9826,-2.779],[99.9855,-2.7738],[99.994,-2.7766],[99.9944,-2.7813],[99.9894,-2.7869],[99.9929,-2.7935],[99.9986,-2.7977],[100.0089,-2.8031],[100.0097,-2.808],[100.0158,-2.8102],[100.0167,-2.8183],[100.0141,-2.8272],[100.0088,-2.8304],[100.0045,-2.8304],[99.9988,-2.8271],[99.9956,-2.8289],[99.9972,-2.8338],[100.0073,-2.8442],[100.0126,-2.8481],[100.0193,-2.8509],[100.0278,-2.8497],[100.033,-2.8463],[100.0369,-2.8472],[100.0408,-2.8513],[100.0426,-2.8409],[100.0376,-2.8303],[100.0397,-2.8211],[100.0475,-2.8156],[100.0575,-2.8178],[100.0746,-2.842],[100.0812,-2.8387],[100.0816,-2.8312],[100.0865,-2.8343],[100.0918,-2.8297],[100.094,-2.8334],[100.1033,-2.8367],[100.1182,-2.8378],[100.1247,-2.8341],[100.1291,-2.8373],[100.133,-2.8326],[100.1425,-2.8406],[100.1474,-2.838],[100.1458,-2.8309],[100.1408,-2.8228],[100.1381,-2.8141],[100.1413,-2.8081],[100.1563,-2.8009],[100.1587,-2.7981],[100.17,-2.7912],[100.1866,-2.7833],[100.19,-2.7854],[100.1951,-2.7816],[100.1954,-2.7759],[100.1997,-2.7751],[100.2085,-2.7789],[100.2167,-2.7753],[100.218,-2.7688],[100.2168,-2.7648],[100.2181,-2.7567],[100.2216,-2.7514],[100.2183,-2.737],[100.2123,-2.7254],[100.2065,-2.7223],[100.2026,-2.7168],[100.2007,-2.7105],[100.1994,-2.6994],[100.1945,-2.695],[100.1841,-2.6756],[100.1805,-2.667],[100.1773,-2.6552],[100.1721,-2.6477],[100.1669,-2.6443],[100.1479,-2.639],[100.1438,-2.636],[100.1414,-2.6314],[100.1313,-2.6261],[100.125,-2.619],[100.1165,-2.6145],[100.1116,-2.6089],[100.1089,-2.603],[100.0996,-2.5946],[100.099,-2.5893],[100.09,-2.5905],[100.0822,-2.5841],[100.0766,-2.583],[100.0709,-2.5799],[100.0564,-2.5657],[100.0524,-2.5636],[100.0441,-2.5517],[100.041,-2.5453],[100.0354,-2.5431],[100.0317,-2.5327],[100.0271,-2.5263],[100.0185,-2.5207],[100.0176,-2.5182],[100.0098,-2.5143],[99.9985,-2.5028],[99.9939,-2.5025]],[[99.7175,-2.3567],[99.7124,-2.3583],[99.7109,-2.3614],[99.7125,-2.3672],[99.7102,-2.3747],[99.722,-2.384],[99.725,-2.3837],[99.7285,-2.3788],[99.7336,-2.3814],[99.7324,-2.3882],[99.7355,-2.3938],[99.74,-2.3921],[99.743,-2.387],[99.7491,-2.3849],[99.7449,-2.379],[99.7397,-2.3852],[99.7353,-2.3816],[99.7389,-2.3762],[99.7386,-2.3705],[99.7305,-2.3607],[99.7236,-2.3571],[99.7175,-2.3567]],[[99.5423,-2.223],[99.5446,-2.2215],[99.5442,-2.2127],[99.5378,-2.2135],[99.5373,-2.2207],[99.5423,-2.223]],[[99.5279,-2.1287],[99.5287,-2.1341],[99.539,-2.1319],[99.5359,-2.1283],[99.5279,-2.1287]],[[99.5927,-2.031],[99.5882,-2.0252],[99.5805,-2.0343],[99.5727,-2.0374],[99.569,-2.0373],[99.5586,-2.0458],[99.5579,-2.0517],[99.5665,-2.059],[99.5643,-2.0654],[99.5593,-2.0657],[99.5556,-2.0693],[99.5472,-2.0705],[99.547,-2.0792],[99.5495,-2.0848],[99.5525,-2.0965],[99.5508,-2.1042],[99.5533,-2.1111],[99.5577,-2.1187],[99.566,-2.1224],[99.5635,-2.1304],[99.5668,-2.1398],[99.5732,-2.1456],[99.5694,-2.1534],[99.5666,-2.1544],[99.5571,-2.1518],[99.5547,-2.1484],[99.5424,-2.1443],[99.5374,-2.144],[99.5313,-2.1472],[99.5284,-2.153],[99.5317,-2.1612],[99.5315,-2.1674],[99.5358,-2.1745],[99.5365,-2.1796],[99.5441,-2.1843],[99.5481,-2.1916],[99.5503,-2.2072],[99.5599,-2.2173],[99.5724,-2.2236],[99.5748,-2.23],[99.572,-2.235],[99.5749,-2.2426],[99.5792,-2.2401],[99.584,-2.231],[99.5844,-2.2239],[99.5918,-2.2226],[99.5977,-2.2279],[99.5956,-2.2342],[99.5927,-2.2365],[99.5944,-2.2452],[99.5921,-2.2491],[99.5951,-2.252],[99.6008,-2.2444],[99.6064,-2.2427],[99.6107,-2.2484],[99.6103,-2.253],[99.6065,-2.2562],[99.599,-2.258],[99.5975,-2.2641],[99.5987,-2.2707],[99.6015,-2.2764],[99.6012,-2.2841],[99.6065,-2.2864],[99.6077,-2.2903],[99.6124,-2.2929],[99.6161,-2.2919],[99.6209,-2.2843],[99.6225,-2.2746],[99.6262,-2.2727],[99.6318,-2.2818],[99.6289,-2.2858],[99.6322,-2.2903],[99.638,-2.2874],[99.6413,-2.2816],[99.6461,-2.2812],[99.6566,-2.2832],[99.6775,-2.2908],[99.6848,-2.2961],[99.6852,-2.3002],[99.6937,-2.3008],[99.6994,-2.3086],[99.7067,-2.3108],[99.7069,-2.3164],[99.7102,-2.327],[99.7136,-2.3297],[99.7221,-2.3328],[99.7296,-2.333],[99.7382,-2.3452],[99.7457,-2.3477],[99.7555,-2.3432],[99.7654,-2.341],[99.777,-2.3422],[99.7884,-2.3468],[99.7893,-2.3519],[99.793,-2.356],[99.7907,-2.3619],[99.7958,-2.3692],[99.8025,-2.3673],[99.8117,-2.3704],[99.818,-2.3651],[99.8229,-2.3691],[99.8268,-2.3636],[99.8322,-2.3623],[99.8406,-2.3662],[99.8403,-2.3748],[99.8421,-2.3787],[99.8397,-2.3852],[99.8399,-2.3894],[99.8451,-2.3986],[99.8515,-2.4021],[99.8601,-2.4028],[99.8633,-2.3981],[99.864,-2.3895],[99.8617,-2.3788],[99.8576,-2.3773],[99.8549,-2.3722],[99.8509,-2.3559],[99.8452,-2.3498],[99.8443,-2.3444],[99.8477,-2.3394],[99.8461,-2.3348],[99.8387,-2.3343],[99.8349,-2.3301],[99.8316,-2.3203],[99.8242,-2.3081],[99.8198,-2.3043],[99.8126,-2.3022],[99.8144,-2.2973],[99.8072,-2.2945],[99.8005,-2.289],[99.7912,-2.2909],[99.7885,-2.2934],[99.7825,-2.2825],[99.7846,-2.2782],[99.7847,-2.2704],[99.7799,-2.2643],[99.7807,-2.2551],[99.7683,-2.2452],[99.7592,-2.2399],[99.7513,-2.2319],[99.7451,-2.2178],[99.7454,-2.213],[99.7401,-2.2122],[99.7365,-2.2079],[99.7356,-2.2017],[99.7332,-2.1985],[99.7329,-2.1897],[99.7281,-2.1881],[99.7206,-2.1824],[99.7249,-2.1736],[99.7208,-2.1676],[99.7173,-2.1594],[99.7115,-2.1523],[99.7117,-2.1449],[99.7101,-2.1315],[99.7069,-2.1154],[99.7043,-2.1116],[99.7066,-2.1],[99.7031,-2.0948],[99.7044,-2.0908],[99.7015,-2.0847],[99.6943,-2.0872],[99.6946,-2.0836],[99.691,-2.0758],[99.688,-2.0759],[99.6826,-2.0718],[99.6738,-2.0697],[99.6645,-2.063],[99.6632,-2.059],[99.6552,-2.0557],[99.6522,-2.0475],[99.6456,-2.0458],[99.6374,-2.0507],[99.6355,-2.045],[99.6413,-2.0418],[99.6397,-2.037],[99.6329,-2.0365],[99.621,-2.0399],[99.6166,-2.04],[99.6161,-2.0347],[99.6264,-2.0337],[99.6261,-2.0288],[99.6184,-2.0296],[99.6106,-2.0327],[99.6013,-2.0318],[99.599,-2.0287],[99.5927,-2.031]],[[99.5646,-2.0045],[99.5583,-2.0021],[99.5541,-2.0058],[99.5482,-2.0081],[99.5522,-2.0165],[99.5557,-2.0204],[99.562,-2.0213],[99.5643,-2.0194],[99.5758,-2.0238],[99.5724,-2.0171],[99.5731,-2.0121],[99.5712,-2.0072],[99.5646,-2.0045]],[[99.5789,-1.9935],[99.5777,-1.9904],[99.5727,-1.9883],[99.5692,-1.9891],[99.5647,-1.9938],[99.5636,-1.9995],[99.5657,-2.0015],[99.5722,-1.9976],[99.5779,-2.0036],[99.5799,-2.0003],[99.5789,-1.9935]],[[99.5819,-1.9685],[99.5779,-1.9686],[99.5764,-1.9729],[99.5823,-1.9841],[99.5879,-1.9891],[99.5867,-1.992],[99.5929,-1.9938],[99.5983,-1.9935],[99.6045,-1.9973],[99.607,-1.9937],[99.6057,-1.9901],[99.6003,-1.9847],[99.5907,-1.9727],[99.5819,-1.9685]],[[99.3043,-1.8997],[99.296,-1.9001],[99.2926,-1.9102],[99.2934,-1.9198],[99.2971,-1.9279],[99.3039,-1.9308],[99.3096,-1.9309],[99.3159,-1.9247],[99.3132,-1.916],[99.3062,-1.9094],[99.3063,-1.9026],[99.3043,-1.8997]],[[99.2804,-1.8714],[99.2758,-1.8745],[99.2822,-1.8801],[99.29,-1.8794],[99.288,-1.8727],[99.2804,-1.8714]],[[99.0912,-1.8602],[99.0802,-1.8613],[99.077,-1.8661],[99.0814,-1.8678],[99.0906,-1.8664],[99.0952,-1.8626],[99.0912,-1.8602]],[[99.3113,-1.8444],[99.3041,-1.8506],[99.3029,-1.8548],[99.3152,-1.8559],[99.3206,-1.8517],[99.3173,-1.8467],[99.3113,-1.8444]],[[99.1488,-1.8368],[99.1464,-1.833],[99.1417,-1.8367],[99.1487,-1.8412],[99.1488,-1.8368]],[[99.047,-1.8156],[99.049,-1.809],[99.0448,-1.8056],[99.0425,-1.8102],[99.047,-1.8156]],[[99.2601,-1.7917],[99.2615,-1.7959],[99.2665,-1.8015],[99.2692,-1.8074],[99.2695,-1.8125],[99.2667,-1.8172],[99.2581,-1.8255],[99.257,-1.8293],[99.2508,-1.8387],[99.2467,-1.84],[99.2455,-1.8438],[99.2408,-1.8464],[99.2419,-1.851],[99.2464,-1.8496],[99.2519,-1.8451],[99.2595,-1.8449],[99.2641,-1.8394],[99.2713,-1.8376],[99.2815,-1.841],[99.2944,-1.8341],[99.2944,-1.8274],[99.2908,-1.8239],[99.2919,-1.8188],[99.2885,-1.8123],[99.2911,-1.808],[99.289,-1.8054],[99.2799,-1.8013],[99.2726,-1.7955],[99.2678,-1.7968],[99.2644,-1.7931],[99.2601,-1.7917]],[[99.2539,-1.7146],[99.2568,-1.7236],[99.2596,-1.7234],[99.2586,-1.716],[99.2539,-1.7146]],[[99.1766,-1.4813],[99.1737,-1.473],[99.1695,-1.4808],[99.1716,-1.4858],[99.1766,-1.4813]],[[99.1127,-1.3541],[99.111,-1.3646],[99.1202,-1.3666],[99.1218,-1.3603],[99.1127,-1.3541]],[[98.8993,-0.9059],[98.8949,-0.9074],[98.8842,-0.9214],[98.8734,-0.9272],[98.8683,-0.9316],[98.8571,-0.9354],[98.8248,-0.9395],[98.8199,-0.9426],[98.8148,-0.948],[98.8019,-0.9553],[98.7956,-0.9569],[98.7802,-0.9575],[98.7748,-0.9555],[98.7678,-0.9574],[98.7564,-0.9588],[98.7413,-0.959],[98.7301,-0.9545],[98.7246,-0.9457],[98.721,-0.9439],[98.7144,-0.9459],[98.7116,-0.945],[98.7029,-0.9529],[98.6892,-0.9592],[98.6848,-0.9594],[98.6792,-0.9659],[98.6751,-0.9733],[98.6687,-0.9786],[98.6645,-0.9804],[98.6644,-0.9943],[98.6625,-0.999],[98.6628,-1.0043],[98.6608,-1.0093],[98.6611,-1.0275],[98.6602,-1.0358],[98.662,-1.0575],[98.6582,-1.0803],[98.6564,-1.0823],[98.6568,-1.0884],[98.6518,-1.105],[98.6466,-1.1096],[98.6411,-1.1096],[98.6381,-1.1383],[98.6336,-1.1487],[98.6278,-1.1498],[98.6276,-1.1563],[98.6235,-1.1612],[98.6228,-1.1682],[98.6189,-1.1728],[98.6157,-1.1831],[98.6127,-1.1872],[98.6072,-1.1909],[98.6014,-1.1914],[98.5967,-1.1989],[98.5977,-1.2063],[98.6032,-1.2167],[98.6023,-1.2213],[98.6046,-1.2277],[98.6273,-1.2493],[98.6355,-1.2587],[98.6418,-1.2759],[98.6411,-1.2807],[98.6371,-1.2868],[98.6523,-1.3078],[98.654,-1.3136],[98.6657,-1.3269],[98.67,-1.3304],[98.6865,-1.35],[98.6937,-1.3599],[98.6984,-1.3699],[98.7028,-1.3751],[98.7084,-1.3848],[98.7251,-1.4037],[98.7336,-1.418],[98.7366,-1.4215],[98.7448,-1.4379],[98.7466,-1.4454],[98.7558,-1.4559],[98.7646,-1.4676],[98.7665,-1.4732],[98.7772,-1.4867],[98.7957,-1.5069],[98.8038,-1.5181],[98.8053,-1.5225],[98.8034,-1.5291],[98.8068,-1.5376],[98.8116,-1.5423],[98.8169,-1.5506],[98.8179,-1.5554],[98.8236,-1.566],[98.8317,-1.5759],[98.8363,-1.5838],[98.838,-1.5979],[98.8348,-1.6068],[98.8252,-1.6148],[98.8306,-1.621],[98.854,-1.6381],[98.8593,-1.6425],[98.8653,-1.6504],[98.8683,-1.6634],[98.8702,-1.6653],[98.8744,-1.6753],[98.8796,-1.6804],[98.9175,-1.7021],[98.9251,-1.7051],[98.9281,-1.7083],[98.9532,-1.7231],[98.9722,-1.7349],[98.9939,-1.7502],[99.0053,-1.7563],[99.0118,-1.7626],[99.0186,-1.765],[99.0402,-1.7759],[99.0551,-1.7863],[99.0691,-1.7898],[99.0779,-1.7939],[99.0804,-1.7967],[99.089,-1.7997],[99.0963,-1.8037],[99.1062,-1.8067],[99.1084,-1.8124],[99.1156,-1.807],[99.1232,-1.8064],[99.1255,-1.8086],[99.1332,-1.8071],[99.1399,-1.8042],[99.1445,-1.8007],[99.1423,-1.7946],[99.1466,-1.7875],[99.1544,-1.7814],[99.1573,-1.7822],[99.1673,-1.7795],[99.1851,-1.7794],[99.2078,-1.7816],[99.2201,-1.7836],[99.2282,-1.786],[99.2335,-1.7954],[99.2411,-1.7968],[99.2444,-1.7932],[99.2471,-1.7867],[99.2474,-1.778],[99.2517,-1.7761],[99.261,-1.779],[99.2629,-1.772],[99.2568,-1.7664],[99.2567,-1.7622],[99.2539,-1.7586],[99.2488,-1.7569],[99.2464,-1.7499],[99.2406,-1.7377],[99.2465,-1.7321],[99.2418,-1.7275],[99.242,-1.7212],[99.2384,-1.7121],[99.2401,-1.7063],[99.24,-1.6986],[99.2344,-1.6928],[99.229,-1.6835],[99.2255,-1.6804],[99.2222,-1.6689],[99.2216,-1.6633],[99.2297,-1.6688],[99.2348,-1.6846],[99.2407,-1.6764],[99.2364,-1.6669],[99.225,-1.6499],[99.2198,-1.6491],[99.2168,-1.641],[99.2108,-1.6377],[99.2047,-1.645],[99.1998,-1.6434],[99.202,-1.638],[99.2082,-1.6343],[99.2107,-1.6251],[99.2168,-1.6247],[99.2208,-1.6265],[99.2281,-1.6374],[99.2285,-1.6422],[99.231,-1.6459],[99.2381,-1.6601],[99.2383,-1.6641],[99.2433,-1.6743],[99.2441,-1.6804],[99.2416,-1.683],[99.2466,-1.6862],[99.2519,-1.6929],[99.2536,-1.6993],[99.2511,-1.7047],[99.255,-1.7128],[99.2638,-1.7178],[99.2651,-1.724],[99.2619,-1.7315],[99.2624,-1.7367],[99.2755,-1.7459],[99.2758,-1.751],[99.2801,-1.7523],[99.2921,-1.7505],[99.2877,-1.7435],[99.2901,-1.7346],[99.2861,-1.7272],[99.2927,-1.726],[99.296,-1.7231],[99.3009,-1.7229],[99.3023,-1.7188],[99.2926,-1.7113],[99.2922,-1.7082],[99.2978,-1.7008],[99.2916,-1.6873],[99.2981,-1.6881],[99.3042,-1.6863],[99.3019,-1.6826],[99.2942,-1.6798],[99.2922,-1.6771],[99.2924,-1.67],[99.2907,-1.6666],[99.2859,-1.6639],[99.2851,-1.6699],[99.2872,-1.6783],[99.2848,-1.6817],[99.2786,-1.678],[99.2773,-1.6746],[99.2796,-1.6687],[99.2758,-1.6648],[99.2793,-1.6616],[99.2868,-1.6588],[99.2891,-1.6519],[99.2812,-1.6441],[99.2752,-1.6447],[99.2755,-1.6413],[99.2807,-1.6408],[99.2817,-1.6357],[99.2872,-1.6386],[99.287,-1.6324],[99.2804,-1.6284],[99.2778,-1.6217],[99.2744,-1.6196],[99.2701,-1.6104],[99.2621,-1.6004],[99.2574,-1.5998],[99.2547,-1.5966],[99.2479,-1.6038],[99.2375,-1.6062],[99.2306,-1.6091],[99.222,-1.6057],[99.2159,-1.5967],[99.2138,-1.5858],[99.2102,-1.5789],[99.205,-1.5774],[99.2002,-1.5804],[99.1966,-1.577],[99.1977,-1.5738],[99.1939,-1.5665],[99.203,-1.5542],[99.2066,-1.5548],[99.2084,-1.5486],[99.1934,-1.5433],[99.2022,-1.5389],[99.2053,-1.534],[99.2067,-1.5269],[99.2004,-1.515],[99.196,-1.5116],[99.1931,-1.5127],[99.1923,-1.5182],[99.1853,-1.519],[99.1831,-1.5096],[99.1802,-1.5037],[99.1751,-1.5056],[99.1713,-1.5033],[99.1682,-1.4963],[99.1625,-1.4951],[99.16,-1.4905],[99.1536,-1.4882],[99.1447,-1.4791],[99.1401,-1.4724],[99.131,-1.4636],[99.1327,-1.46],[99.1239,-1.454],[99.1151,-1.4415],[99.123,-1.4399],[99.1248,-1.4445],[99.139,-1.4547],[99.1431,-1.4597],[99.1492,-1.4594],[99.1544,-1.462],[99.1576,-1.4659],[99.1682,-1.4715],[99.1702,-1.4678],[99.1648,-1.4578],[99.1617,-1.4559],[99.1635,-1.4503],[99.1605,-1.4493],[99.1612,-1.4439],[99.1657,-1.4441],[99.1692,-1.4398],[99.1663,-1.4307],[99.1597,-1.4214],[99.1533,-1.416],[99.1531,-1.4108],[99.1488,-1.4014],[99.1415,-1.3972],[99.1339,-1.4054],[99.1324,-1.4018],[99.134,-1.3953],[99.1327,-1.39],[99.129,-1.3861],[99.1222,-1.3837],[99.1149,-1.3877],[99.117,-1.3781],[99.1114,-1.3797],[99.1086,-1.3784],[99.1077,-1.3704],[99.0991,-1.3653],[99.0959,-1.3442],[99.0901,-1.3334],[99.0902,-1.3203],[99.0917,-1.316],[99.0873,-1.3076],[99.0841,-1.3054],[99.0813,-1.2946],[99.0772,-1.2902],[99.0724,-1.2915],[99.0734,-1.2969],[99.0641,-1.2976],[99.0561,-1.296],[99.0539,-1.2928],[99.0586,-1.29],[99.0634,-1.2903],[99.0629,-1.2857],[99.0586,-1.2853],[99.0591,-1.2809],[99.0543,-1.2752],[99.0652,-1.2752],[99.0667,-1.2727],[99.066,-1.2664],[99.0686,-1.2582],[99.0685,-1.2529],[99.0577,-1.2425],[99.0573,-1.2336],[99.0531,-1.2283],[99.0393,-1.2299],[99.0304,-1.2273],[99.0326,-1.2241],[99.0244,-1.221],[99.028,-1.2154],[99.0282,-1.2115],[99.0328,-1.2107],[99.0362,-1.2131],[99.0412,-1.2087],[99.0415,-1.2056],[99.0377,-1.1989],[99.0339,-1.1951],[99.0339,-1.1896],[99.0315,-1.1828],[99.0244,-1.1776],[99.0199,-1.1721],[99.0156,-1.1715],[99.0105,-1.1664],[99.0075,-1.1609],[99.0068,-1.1544],[99.0033,-1.1473],[99.0033,-1.1412],[99.0006,-1.1384],[98.9991,-1.1293],[99.0015,-1.1136],[98.9862,-1.1052],[98.9721,-1.0957],[98.9644,-1.0859],[98.958,-1.0759],[98.9555,-1.0822],[98.9578,-1.0912],[98.95,-1.09],[98.9549,-1.0838],[98.9467,-1.0812],[98.9469,-1.068],[98.9405,-1.069],[98.9394,-1.0587],[98.9401,-1.0517],[98.9367,-1.0425],[98.937,-1.0312],[98.934,-1.0242],[98.931,-1.0235],[98.9286,-1.0174],[98.9226,-1.0109],[98.9202,-1.0045],[98.9172,-1.0015],[98.9178,-0.9923],[98.922,-0.9875],[98.9268,-0.9881],[98.9318,-0.9937],[98.9351,-1.0019],[98.9439,-1.0157],[98.952,-1.0118],[98.9491,-1.0058],[98.944,-1.0055],[98.9433,-0.9966],[98.9455,-0.9867],[98.945,-0.982],[98.9421,-0.9783],[98.9369,-0.9673],[98.9359,-0.9629],[98.9321,-0.9592],[98.936,-0.9531],[98.9349,-0.9454],[98.9305,-0.934],[98.9275,-0.931],[98.9231,-0.9317],[98.9213,-0.9377],[98.91,-0.9425],[98.9073,-0.9457],[98.8987,-0.9417],[98.8971,-0.9352],[98.9015,-0.927],[98.9063,-0.9312],[98.9091,-0.9368],[98.9116,-0.9261],[98.91,-0.9207],[98.9126,-0.9146],[98.9098,-0.9089],[98.8993,-0.9059]]]}},{"type":"Feature","properties":{"mhid":"1332:60","alt_name":"KABUPATEN PESISIR SELATAN","latitude":-1.58333,"longitude":100.85,"sample_value":139},"geometry":{"type":"MultiLineString","coordinates":[[[100.4896,-1.3884],[100.4877,-1.397],[100.4915,-1.3986],[100.4924,-1.3933],[100.4896,-1.3884]],[[100.4742,-1.3302],[100.4774,-1.3211],[100.4719,-1.3217],[100.4742,-1.3302]],[[100.3395,-1.188],[100.3339,-1.1901],[100.3294,-1.197],[100.3284,-1.2055],[100.3354,-1.2081],[100.3405,-1.1985],[100.3378,-1.1916],[100.3395,-1.188]],[[100.3924,-1.1881],[100.3845,-1.1879],[100.3806,-1.1922],[100.3821,-1.1989],[100.3805,-1.2062],[100.3773,-1.2088],[100.3761,-1.2173],[100.3772,-1.223],[100.3807,-1.2267],[100.3835,-1.223],[100.3897,-1.2233],[100.3971,-1.2285],[100.4014,-1.2207],[100.3991,-1.2136],[100.4005,-1.2077],[100.3981,-1.2015],[100.389,-1.21],[100.3877,-1.205],[100.3909,-1.1963],[100.3895,-1.193],[100.3924,-1.1881]],[[100.3635,-1.1432],[100.3619,-1.1466],[100.3615,-1.1551],[100.3629,-1.1569],[100.3794,-1.1455],[100.3817,-1.1466],[100.3849,-1.1567],[100.3797,-1.1633],[100.3833,-1.1733],[100.3858,-1.1834],[100.395,-1.1789],[100.4003,-1.1817],[100.4014,-1.1869],[100.3989,-1.1903],[100.4019,-1.1937],[100.4107,-1.1977],[100.4164,-1.1985],[100.4197,-1.197],[100.4287,-1.1968],[100.4314,-1.2024],[100.4262,-1.2073],[100.4276,-1.2131],[100.4265,-1.2167],[100.4289,-1.2213],[100.4236,-1.2228],[100.4223,-1.2264],[100.4263,-1.2292],[100.436,-1.2316],[100.4312,-1.2385],[100.4313,-1.2421],[100.4349,-1.2451],[100.431,-1.2501],[100.4325,-1.2543],[100.4297,-1.2565],[100.4237,-1.2547],[100.4192,-1.2427],[100.4188,-1.2383],[100.4145,-1.2384],[100.4103,-1.2358],[100.4068,-1.2368],[100.4048,-1.2421],[100.4041,-1.2511],[100.4059,-1.254],[100.405,-1.2593],[100.4011,-1.2668],[100.4008,-1.2707],[100.4076,-1.2704],[100.4127,-1.2736],[100.416,-1.2687],[100.4191,-1.2684],[100.4223,-1.2773],[100.4295,-1.2724],[100.4395,-1.269],[100.4424,-1.2618],[100.4467,-1.2586],[100.4521,-1.2581],[100.46,-1.2639],[100.4639,-1.2728],[100.4742,-1.2827],[100.4833,-1.2901],[100.4889,-1.2978],[100.4957,-1.3022],[100.5184,-1.3111],[100.5416,-1.3096],[100.5517,-1.3165],[100.5631,-1.3293],[100.5681,-1.3368],[100.5685,-1.3407],[100.5632,-1.3467],[100.5646,-1.3524],[100.5684,-1.3497],[100.573,-1.3523],[100.5746,-1.3575],[100.569,-1.3675],[100.5648,-1.3645],[100.5606,-1.3712],[100.5621,-1.3741],[100.5683,-1.373],[100.5753,-1.3692],[100.5799,-1.3726],[100.5797,-1.3796],[100.5863,-1.3819],[100.5874,-1.3897],[100.5919,-1.392],[100.5918,-1.3962],[100.5838,-1.3943],[100.5736,-1.3942],[100.5644,-1.3981],[100.5614,-1.4045],[100.5581,-1.4069],[100.562,-1.4138],[100.5685,-1.4118],[100.573,-1.4173],[100.5821,-1.4161],[100.5841,-1.4213],[100.5735,-1.4324],[100.5723,-1.4359],[100.5679,-1.4394],[100.564,-1.438],[100.5617,-1.4416],[100.5714,-1.4534],[100.575,-1.4605],[100.5772,-1.4612],[100.5906,-1.4759],[100.5945,-1.4818],[100.5978,-1.4902],[100.6025,-1.4899],[100.61,-1.4923],[100.6126,-1.4948],[100.6181,-1.495],[100.6233,-1.5013],[100.6235,-1.5105],[100.6196,-1.5198],[100.6193,-1.5272],[100.6282,-1.5461],[100.6359,-1.5595],[100.6369,-1.5744],[100.6353,-1.5832],[100.6397,-1.5908],[100.6409,-1.6003],[100.6369,-1.6058],[100.6436,-1.6166],[100.644,-1.6212],[100.6563,-1.6305],[100.6652,-1.6385],[100.6805,-1.6542],[100.6887,-1.6648],[100.6939,-1.6748],[100.6992,-1.6825],[100.7044,-1.6954],[100.7072,-1.6998],[100.7214,-1.7165],[100.7418,-1.7427],[100.7541,-1.7609],[100.7611,-1.7755],[100.7677,-1.7864],[100.7704,-1.7941],[100.7786,-1.8059],[100.7869,-1.8203],[100.7944,-1.827],[100.8117,-1.8446],[100.8234,-1.8575],[100.839,-1.8787],[100.8558,-1.9079],[100.8607,-1.9182],[100.8668,-1.9357],[100.8691,-1.9516],[100.8722,-1.9683],[100.8684,-1.9752],[100.8698,-1.9843],[100.8728,-1.9924],[100.8734,-2],[100.8792,-2.0241],[100.8805,-2.0417],[100.8791,-2.0549],[100.8723,-2.0822],[100.8678,-2.0942],[100.8615,-2.1036],[100.8464,-2.1221],[100.8304,-2.1346],[100.8243,-2.1412],[100.8214,-2.1479],[100.8207,-2.1583],[100.822,-2.169],[100.8253,-2.178],[100.8371,-2.196],[100.8488,-2.2127],[100.8624,-2.2295],[100.8701,-2.2374],[100.8751,-2.2451],[100.8783,-2.2562],[100.8789,-2.2708],[100.8778,-2.273],[100.8793,-2.2826],[100.882,-2.2904],[100.8845,-2.3023],[100.8884,-2.3115],[100.8887,-2.3215],[100.8918,-2.3281],[100.9017,-2.3384],[100.9129,-2.3486],[100.9305,-2.3685],[100.939,-2.3773],[100.9548,-2.3925],[100.98,-2.4192],[100.9895,-2.4279],[100.9943,-2.4352],[101.0062,-2.4492],[101.0096,-2.4542],[101.0228,-2.4784]]]}},{"type":"Feature","properties":{"mhid":"1332:61","alt_name":"KABUPATEN SOLOK","latitude":-0.96667,"longitude":100.81667,"sample_value":99},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:63","alt_name":"KABUPATEN TANAH DATAR","latitude":-0.4555,"longitude":100.5771,"sample_value":762},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:64","alt_name":"KABUPATEN PADANG PARIAMAN","latitude":-0.6,"longitude":100.28333,"sample_value":422},"geometry":{"type":"MultiLineString","coordinates":[[[99.9626,-0.4326],[99.9618,-0.4342],[99.9709,-0.4424],[99.9833,-0.4568],[99.9961,-0.4649],[100.0057,-0.4739],[100.0164,-0.4828],[100.0411,-0.5056],[100.0535,-0.5189],[100.0622,-0.5303],[100.0773,-0.5451],[100.0848,-0.5557],[100.0908,-0.568]],[[100.1593,-0.6757],[100.1685,-0.6854],[100.1836,-0.7001],[100.1866,-0.7039],[100.2012,-0.7179],[100.2174,-0.7303],[100.2362,-0.7495],[100.2573,-0.7693],[100.2726,-0.7876],[100.2874,-0.8082],[100.2917,-0.8163]]]}},{"type":"Feature","properties":{"mhid":"1332:65","alt_name":"KABUPATEN AGAM","latitude":-0.25,"longitude":100.16667,"sample_value":793},"geometry":{"type":"MultiLineString","coordinates":[[[99.7679,-0.1709],[99.7773,-0.1818],[99.7898,-0.2027],[99.7982,-0.2192],[99.8051,-0.239],[99.8021,-0.2557],[99.804,-0.2639],[99.8089,-0.2797],[99.8196,-0.3006],[99.8343,-0.3113],[99.8484,-0.3184],[99.8584,-0.3242],[99.8746,-0.3353],[99.8851,-0.3442],[99.905,-0.3645],[99.9116,-0.3736],[99.9156,-0.3811],[99.9184,-0.392],[99.9178,-0.3967],[99.9137,-0.399],[99.9321,-0.4096],[99.9467,-0.4193],[99.9626,-0.4326]]]}},{"type":"Feature","properties":{"mhid":"1332:70","alt_name":"KABUPATEN PASAMAN BARAT","latitude":0.28152,"longitude":99.51965,"sample_value":823},"geometry":{"type":"MultiLineString","coordinates":[[[99.3112,0.195],[99.3054,0.1924],[99.3022,0.1869],[99.3045,0.1816],[99.312,0.1846],[99.313,0.1929],[99.3112,0.195]],[[99.2872,0.2279],[99.2851,0.226]],[[99.2851,0.226],[99.2835,0.2246]],[[99.2835,0.2246],[99.2816,0.223],[99.2797,0.2192],[99.2822,0.2138],[99.2922,0.2092],[99.2956,0.214],[99.2942,0.2219],[99.2912,0.227],[99.2872,0.2279]],[[99.1926,0.2698],[99.184,0.2542],[99.178,0.2518],[99.1745,0.246],[99.1747,0.2408],[99.1673,0.2284],[99.1696,0.2273],[99.1753,0.2311],[99.1813,0.2412],[99.1771,0.2432],[99.178,0.2477],[99.1812,0.2519],[99.1881,0.254],[99.1916,0.2524],[99.1933,0.2421],[99.1924,0.2353],[99.2035,0.2335],[99.2049,0.2254],[99.2088,0.2181],[99.2151,0.2156],[99.2165,0.2125],[99.2213,0.2105],[99.2326,0.2154],[99.2383,0.21],[99.241,0.2161],[99.2436,0.2168],[99.2539,0.2109],[99.2577,0.2109],[99.2587,0.2058],[99.2621,0.2026],[99.2655,0.2202],[99.2682,0.2229],[99.2735,0.2216],[99.2835,0.2246]],[[99.2835,0.2246],[99.285,0.2251],[99.2851,0.226]],[[99.2851,0.226],[99.2852,0.2283],[99.2976,0.2291],[99.304,0.2353],[99.3144,0.2378],[99.3368,0.2375],[99.3578,0.2301],[99.3618,0.2266],[99.3586,0.22],[99.3589,0.2158],[99.3652,0.2151],[99.3722,0.212],[99.3775,0.2073],[99.3759,0.1965],[99.3717,0.1944],[99.3739,0.1909],[99.378,0.1906],[99.3825,0.1867],[99.3865,0.1885],[99.3924,0.1865],[99.3896,0.1788],[99.3895,0.1712],[99.3919,0.1599],[99.3983,0.1512],[99.4054,0.1512],[99.4109,0.153],[99.4188,0.151],[99.4233,0.1471],[99.4334,0.147],[99.4518,0.1415],[99.4779,0.1328],[99.4944,0.124],[99.5092,0.1186],[99.5381,0.1043],[99.5728,0.088],[99.6171,0.0659],[99.6536,0.0418],[99.6668,0.0294],[99.683,0.0133],[99.6854,0.0074],[99.6911,0.0048],[99.6912,0.0022],[99.7078,-0.0085],[99.7298,-0.0205],[99.7403,-0.0294],[99.7493,-0.0398],[99.7557,-0.0492],[99.7623,-0.0633],[99.7635,-0.07],[99.7596,-0.0767],[99.7575,-0.0834],[99.7576,-0.0942],[99.7589,-0.1008],[99.7587,-0.1157],[99.7543,-0.1249],[99.7486,-0.1339],[99.746,-0.1455],[99.7564,-0.1552],[99.7679,-0.1709]]]}},{"type":"Feature","properties":{"mhid":"1332:71","alt_name":"KOTA PADANG","latitude":-0.98333,"longitude":100.45,"sample_value":972},"geometry":{"type":"MultiLineString","coordinates":[[[100.3559,-1.1229],[100.3506,-1.1234],[100.3486,-1.1306],[100.3538,-1.1291],[100.3559,-1.1229]],[[100.2917,-0.8163],[100.2926,-0.8205],[100.3097,-0.8335],[100.3209,-0.8453],[100.3314,-0.8606],[100.3327,-0.8659],[100.3403,-0.8798],[100.3434,-0.8881],[100.3446,-0.9049],[100.3422,-0.9066],[100.3454,-0.9116],[100.35,-0.9242],[100.3497,-0.9319],[100.3512,-0.9391],[100.353,-0.9576],[100.3524,-0.962],[100.3471,-0.9644],[100.3512,-0.9683],[100.3541,-0.9739],[100.3594,-0.9781],[100.3581,-0.9876],[100.3655,-0.9962],[100.3633,-1.0011],[100.3661,-1.0051],[100.371,-0.9987],[100.3757,-0.9954],[100.3824,-0.9931],[100.3862,-0.9983],[100.387,-1.0043],[100.3907,-1.0102],[100.387,-1.0247],[100.3794,-1.0339],[100.3778,-1.0382],[100.3805,-1.0436],[100.3854,-1.0432],[100.3877,-1.0391],[100.3925,-1.0362],[100.3961,-1.0296],[100.4017,-1.0315],[100.4019,-1.0367],[100.407,-1.0366],[100.4108,-1.039],[100.4126,-1.045],[100.41,-1.0523],[100.4138,-1.0608],[100.4114,-1.0672],[100.4121,-1.0703],[100.4064,-1.0742],[100.3934,-1.0679],[100.3897,-1.0748],[100.3871,-1.0666],[100.3764,-1.0642],[100.3747,-1.0714],[100.3655,-1.0784],[100.365,-1.0843],[100.3685,-1.0913],[100.3724,-1.0958],[100.3725,-1.1017],[100.38,-1.1081],[100.3844,-1.114],[100.3836,-1.1272],[100.3801,-1.1229],[100.3739,-1.1189],[100.373,-1.1234],[100.3674,-1.125],[100.3624,-1.1238],[100.3592,-1.1312],[100.3641,-1.1316],[100.3658,-1.1381],[100.3635,-1.1432]]]}},{"type":"Feature","properties":{"mhid":"1332:131","alt_name":"KABUPATEN TANGGAMUS","latitude":-5.38508,"longitude":104.62349,"sample_value":450},"geometry":{"type":"MultiLineString","coordinates":[[[104.8357,-5.7904],[104.8291,-5.7891],[104.8135,-5.7807],[104.8074,-5.7719],[104.7986,-5.7649],[104.7896,-5.763],[104.7828,-5.7656],[104.7818,-5.7686],[104.7836,-5.7813],[104.792,-5.7836],[104.7965,-5.7962],[104.8032,-5.8003],[104.8088,-5.8119],[104.8121,-5.8151],[104.8135,-5.8238],[104.8213,-5.824],[104.8283,-5.8289],[104.8347,-5.8278],[104.8449,-5.8343],[104.8508,-5.8401],[104.8548,-5.8402],[104.8584,-5.8329],[104.8524,-5.827],[104.8545,-5.8222],[104.853,-5.8063],[104.8494,-5.7999],[104.8433,-5.7986],[104.8357,-5.7904]],[[104.659,-5.9368],[104.668,-5.9355],[104.7031,-5.9337],[104.7144,-5.9346],[104.7245,-5.9341],[104.7306,-5.9307],[104.733,-5.9274],[104.7279,-5.9229],[104.7265,-5.9154],[104.7283,-5.9116],[104.7189,-5.8983],[104.7129,-5.8927],[104.7097,-5.8868],[104.7037,-5.8843],[104.6982,-5.8776],[104.6991,-5.8693],[104.7015,-5.8615],[104.7108,-5.8471],[104.7105,-5.8311],[104.7026,-5.8269],[104.7015,-5.8224],[104.6984,-5.82],[104.697,-5.8124],[104.6906,-5.8088],[104.6915,-5.8059],[104.6859,-5.8021],[104.6836,-5.798],[104.6831,-5.791],[104.6789,-5.7866],[104.6751,-5.7862],[104.6734,-5.7808],[104.6692,-5.775],[104.6644,-5.7722],[104.6606,-5.7651],[104.6587,-5.7577],[104.6526,-5.7522],[104.6501,-5.752],[104.645,-5.7424],[104.6433,-5.7333],[104.6461,-5.7288],[104.6553,-5.7264],[104.6535,-5.7224],[104.648,-5.6994],[104.6432,-5.6945],[104.6395,-5.6857],[104.63,-5.6731],[104.6246,-5.6684],[104.6189,-5.6598],[104.6168,-5.6589],[104.6117,-5.6506],[104.6001,-5.6383],[104.5937,-5.6325],[104.5893,-5.626],[104.5811,-5.6191],[104.5641,-5.6018],[104.565,-5.5992],[104.5607,-5.589],[104.556,-5.5837],[104.5547,-5.5733],[104.5489,-5.5647],[104.546,-5.5546],[104.5409,-5.5529],[104.5304,-5.5444],[104.5342,-5.5362],[104.5512,-5.5216],[104.5522,-5.518],[104.5582,-5.5128],[104.5656,-5.5092],[104.5674,-5.5064],[104.5745,-5.5067],[104.5893,-5.5005],[104.5945,-5.4972],[104.6012,-5.4976],[104.6092,-5.4937],[104.6083,-5.4991],[104.6168,-5.4979],[104.6246,-5.5036],[104.6315,-5.5027],[104.6398,-5.5069],[104.653,-5.5111],[104.6665,-5.5112],[104.6818,-5.5124],[104.6907,-5.5147],[104.7071,-5.5211],[104.7163,-5.5297],[104.7188,-5.5354],[104.7258,-5.5467],[104.7282,-5.5473],[104.7293,-5.5594],[104.7383,-5.5594],[104.7418,-5.564],[104.7476,-5.5661],[104.7506,-5.5691],[104.7509,-5.5739],[104.7585,-5.5762],[104.7612,-5.5799],[104.7675,-5.593],[104.7723,-5.6006],[104.7767,-5.6045],[104.7896,-5.6101],[104.7979,-5.6119],[104.801,-5.6103],[104.8055,-5.6147],[104.8098,-5.6142],[104.8209,-5.6207],[104.8287,-5.6214],[104.8314,-5.6286],[104.841,-5.6358],[104.8515,-5.6375],[104.8661,-5.6451],[104.8737,-5.6481],[104.876,-5.6506],[104.8757,-5.6576],[104.8798,-5.6619],[104.8859,-5.6596],[104.8849,-5.6656],[104.89,-5.6665],[104.9015,-5.6656],[104.9057,-5.6614],[104.9128,-5.6637],[104.926,-5.6642],[104.9289,-5.6677],[104.9202,-5.6714],[104.9128,-5.6697],[104.906,-5.676],[104.9124,-5.6771],[104.9153,-5.6866],[104.9213,-5.6875],[104.922,-5.6925],[104.9327,-5.7002],[104.9408,-5.7028],[104.9451,-5.6969],[104.9509,-5.6935],[104.9562,-5.7024],[104.9579,-5.712],[104.9605,-5.7173],[104.9664,-5.7184],[104.9725,-5.7137],[104.9746,-5.717],[104.9831,-5.7118],[104.988,-5.7188],[104.9926,-5.7172],[105.0025,-5.7199],[105.006,-5.7171],[105.0151,-5.7227],[105.0151,-5.7277],[105.0218,-5.7243],[105.0269,-5.7278],[105.0251,-5.732],[105.0211,-5.7332],[105.0222,-5.746],[105.0288,-5.7526],[105.0329,-5.748],[105.0404,-5.749],[105.0402,-5.7543],[105.05,-5.7444],[105.0542,-5.7439],[105.0549,-5.7491],[105.0582,-5.7514],[105.0632,-5.763],[105.0658,-5.7639],[105.0709,-5.7546],[105.0802,-5.7527],[105.0942,-5.7579],[105.0889,-5.7616],[105.0908,-5.7643],[105.0888,-5.7736],[105.095,-5.7739],[105.0969,-5.7715],[105.1055,-5.7705],[105.1044,-5.7758],[105.0985,-5.7783],[105.0976,-5.7836],[105.0914,-5.7915],[105.0925,-5.7968],[105.104,-5.7863],[105.105,-5.783],[105.1168,-5.7754],[105.1228,-5.7774],[105.1232,-5.7808],[105.1275,-5.7846],[105.1254,-5.7942],[105.1277,-5.7987],[105.131,-5.798],[105.1315,-5.7934],[105.1388,-5.7967],[105.1474,-5.8074],[105.1523,-5.8086],[105.1623,-5.8078],[105.1659,-5.8028],[105.1721,-5.8004]]]}},{"type":"Feature","properties":{"mhid":"1332:132","alt_name":"KABUPATEN LAMPUNG SELATAN","latitude":-5.4531,"longitude":104.9877,"sample_value":860},"geometry":{"type":"MultiLineString","coordinates":[[[105.4489,-6.1365],[105.4451,-6.1331],[105.4354,-6.1442],[105.4294,-6.1462],[105.4206,-6.1451],[105.4198,-6.156],[105.4282,-6.1646],[105.4391,-6.1672],[105.449,-6.1686],[105.4595,-6.161],[105.4642,-6.1526],[105.4609,-6.1454],[105.46,-6.1389],[105.4569,-6.1352],[105.4489,-6.1365]],[[105.4245,-6.1113],[105.4288,-6.1062],[105.4348,-6.1038],[105.4297,-6.0949],[105.4248,-6.0943],[105.4231,-6.0903],[105.4176,-6.0928],[105.4158,-6.102],[105.422,-6.1112],[105.4245,-6.1113]],[[105.4514,-6.0801],[105.452,-6.0925],[105.4533,-6.097],[105.4508,-6.1028],[105.4509,-6.1068],[105.4553,-6.1089],[105.4574,-6.1015],[105.4608,-6.098],[105.4654,-6.088],[105.4554,-6.0836],[105.4514,-6.0801]],[[105.3626,-6.113],[105.365,-6.1128],[105.3706,-6.1071],[105.382,-6.1026],[105.385,-6.0977],[105.3916,-6.0949],[105.3962,-6.0913],[105.4003,-6.0846],[105.4005,-6.0777],[105.4025,-6.0731],[105.3847,-6.0783],[105.3765,-6.0851],[105.3759,-6.0884],[105.3715,-6.0913],[105.3666,-6.1002],[105.3578,-6.1072],[105.3626,-6.113]],[[105.502,-5.9233],[105.4958,-5.9211],[105.4901,-5.9217],[105.4773,-5.9261],[105.4748,-5.9311],[105.4677,-5.9364],[105.4673,-5.9407],[105.464,-5.9464],[105.4633,-5.9565],[105.4657,-5.9578],[105.4675,-5.9643],[105.4797,-5.9693],[105.4819,-5.9725],[105.4873,-5.9729],[105.5013,-5.9689],[105.5078,-5.9624],[105.5128,-5.9549],[105.5168,-5.9464],[105.5118,-5.9368],[105.5122,-5.9298],[105.5067,-5.9233],[105.502,-5.9233]],[[105.7883,-5.8839],[105.7789,-5.8836],[105.7831,-5.8902],[105.7888,-5.8914],[105.7883,-5.8839]],[[105.4543,-5.889],[105.4573,-5.8865],[105.4549,-5.8814],[105.4517,-5.8852],[105.4543,-5.889]],[[105.7681,-5.8837],[105.7626,-5.8822],[105.7566,-5.8839],[105.749,-5.9016],[105.7568,-5.8997],[105.7579,-5.895],[105.7624,-5.8895],[105.7662,-5.8894],[105.7681,-5.8837]],[[105.7865,-5.8509],[105.7781,-5.8536],[105.7732,-5.8616],[105.7755,-5.8651],[105.7824,-5.8656],[105.7898,-5.8599],[105.7923,-5.8494],[105.7865,-5.8509]],[[105.5275,-5.8491],[105.5235,-5.8489],[105.5223,-5.8576],[105.5186,-5.8617],[105.514,-5.861],[105.5122,-5.8564],[105.5055,-5.857],[105.5019,-5.8654],[105.5051,-5.873],[105.5,-5.8742],[105.4974,-5.8772],[105.492,-5.8773],[105.4927,-5.8837],[105.5016,-5.8873],[105.5034,-5.891],[105.5023,-5.8993],[105.5078,-5.9005],[105.5298,-5.8934],[105.5309,-5.8831],[105.5346,-5.877],[105.5322,-5.8745],[105.5357,-5.8708],[105.5435,-5.8678],[105.5427,-5.8623],[105.5356,-5.8632],[105.5291,-5.8612],[105.5309,-5.8558],[105.5349,-5.8512],[105.5331,-5.8468],[105.5275,-5.8491]],[[105.3471,-5.5219],[105.3489,-5.5256],[105.3578,-5.5324],[105.36,-5.5368],[105.3643,-5.541],[105.3687,-5.5504],[105.3693,-5.5616],[105.3771,-5.5699],[105.3801,-5.5783],[105.3808,-5.5844],[105.3874,-5.5918],[105.3905,-5.5988],[105.4037,-5.6089],[105.4096,-5.6216],[105.4118,-5.6243],[105.4201,-5.6271],[105.4304,-5.6327],[105.4364,-5.6347],[105.4378,-5.6374],[105.4453,-5.6366],[105.4471,-5.6425],[105.4539,-5.6484],[105.4609,-5.6503],[105.4658,-5.6476],[105.4699,-5.648],[105.4706,-5.6575],[105.4788,-5.6598],[105.4968,-5.6697],[105.5024,-5.6691],[105.5069,-5.6747],[105.5179,-5.6856],[105.5166,-5.6899],[105.5225,-5.6963],[105.5276,-5.6961],[105.5307,-5.6929],[105.5311,-5.6867],[105.5349,-5.6716],[105.5418,-5.6681],[105.5448,-5.6687],[105.5453,-5.6743],[105.5506,-5.6761],[105.5542,-5.6692],[105.5584,-5.6681],[105.5619,-5.6726],[105.5603,-5.676],[105.5584,-5.688],[105.5554,-5.6933],[105.5545,-5.6993],[105.5593,-5.7016],[105.5617,-5.7077],[105.5749,-5.7183],[105.586,-5.7303],[105.5891,-5.736],[105.5895,-5.7409],[105.5859,-5.748],[105.5867,-5.7521],[105.5848,-5.7581],[105.5798,-5.7668],[105.5813,-5.7789],[105.5791,-5.7831],[105.5796,-5.7903],[105.5841,-5.7941],[105.5845,-5.8062],[105.595,-5.8156],[105.595,-5.8199],[105.6031,-5.8273],[105.6041,-5.8312],[105.6143,-5.8356],[105.6275,-5.8358],[105.6351,-5.8398],[105.6458,-5.8369],[105.6491,-5.8385],[105.656,-5.8357],[105.6629,-5.8389],[105.6756,-5.8387],[105.6811,-5.8465],[105.6871,-5.8497],[105.6938,-5.8476],[105.7046,-5.8489],[105.7149,-5.859],[105.7127,-5.8653],[105.7148,-5.8758],[105.7177,-5.8803],[105.7175,-5.8956],[105.7157,-5.9066],[105.7188,-5.908],[105.7215,-5.9036],[105.7251,-5.9042],[105.7299,-5.8998],[105.7374,-5.8813],[105.7472,-5.875],[105.7515,-5.8739],[105.7576,-5.8673],[105.7603,-5.8577],[105.7693,-5.8482],[105.7701,-5.8447],[105.7795,-5.8364],[105.7775,-5.8308],[105.7782,-5.8234],[105.7821,-5.823],[105.7841,-5.8141],[105.7835,-5.8077],[105.7901,-5.8082],[105.7931,-5.797],[105.7967,-5.7935],[105.7938,-5.789],[105.7937,-5.7796],[105.7958,-5.7752],[105.7964,-5.7643],[105.8002,-5.7518],[105.7993,-5.7445],[105.7932,-5.7345],[105.792,-5.7236],[105.7923,-5.7163],[105.796,-5.7047],[105.7991,-5.6985],[105.8073,-5.6891],[105.81,-5.6824],[105.8104,-5.6719],[105.8159,-5.6533],[105.8164,-5.645],[105.8201,-5.6183],[105.8261,-5.6011],[105.829,-5.5899],[105.8271,-5.5813],[105.8195,-5.5792],[105.8168,-5.576]]]}},{"type":"Feature","properties":{"mhid":"1332:133","alt_name":"KABUPATEN LAMPUNG TIMUR","latitude":-5.10273,"longitude":105.68003,"sample_value":737},"geometry":{"type":"MultiLineString","coordinates":[[[105.8168,-5.576],[105.8202,-5.5702],[105.8149,-5.5525],[105.8142,-5.5392],[105.8155,-5.5293],[105.8194,-5.5129],[105.8252,-5.5044],[105.8246,-5.4921],[105.8249,-5.4729],[105.824,-5.4543],[105.8226,-5.4386],[105.821,-5.404],[105.8192,-5.38],[105.8201,-5.362],[105.8195,-5.3538],[105.8196,-5.3336],[105.8208,-5.3219],[105.8271,-5.3015],[105.8365,-5.2875],[105.8522,-5.2727],[105.8551,-5.2714],[105.8623,-5.2605],[105.8638,-5.2499],[105.8615,-5.212],[105.8609,-5.1904],[105.8611,-5.1747],[105.8621,-5.1501],[105.8602,-5.1366],[105.8588,-5.1212],[105.8591,-5.1017],[105.8569,-5.0736],[105.8587,-5.062],[105.8584,-5.0519],[105.8592,-5.0379],[105.8603,-5.0325],[105.8646,-4.9986],[105.8684,-4.9818],[105.8741,-4.9637],[105.8812,-4.9544],[105.8982,-4.9441],[105.902,-4.9371],[105.9011,-4.9251],[105.8974,-4.9154],[105.8927,-4.906],[105.8878,-4.8997],[105.883,-4.8961],[105.8774,-4.8882],[105.8716,-4.8752],[105.8666,-4.8578],[105.8635,-4.8384],[105.8615,-4.8148],[105.8613,-4.7901],[105.8631,-4.7679],[105.8661,-4.7475],[105.8718,-4.7244],[105.8771,-4.711],[105.8824,-4.7026],[105.8826,-4.6991],[105.8771,-4.6893],[105.8758,-4.683]]]}},{"type":"Feature","properties":{"mhid":"1332:137","alt_name":"KABUPATEN TULANGBAWANG","latitude":-4.20604,"longitude":105.57999,"sample_value":619},"geometry":{"type":"MultiLineString","coordinates":[[[105.8758,-4.683],[105.8811,-4.6806],[105.8869,-4.6831],[105.8985,-4.6849],[105.9009,-4.6823],[105.9045,-4.6706],[105.9094,-4.6595],[105.9169,-4.6467],[105.9164,-4.6427],[105.9077,-4.6342],[105.9032,-4.634],[105.902,-4.6283],[105.8954,-4.6254],[105.8909,-4.6191],[105.8878,-4.6123],[105.885,-4.6011],[105.8845,-4.5901],[105.8858,-4.5825],[105.8918,-4.565],[105.8995,-4.5552],[105.9048,-4.5519],[105.9013,-4.5301],[105.8991,-4.513],[105.8986,-4.4994],[105.8992,-4.489],[105.9013,-4.4723],[105.9064,-4.454],[105.9126,-4.4413],[105.9131,-4.437],[105.905,-4.4341],[105.8941,-4.4368],[105.8916,-4.4404],[105.8805,-4.4302],[105.8749,-4.4215],[105.8654,-4.4105],[105.8526,-4.4068],[105.8512,-4.4036],[105.8576,-4.3936],[105.8597,-4.386],[105.8588,-4.3779],[105.8538,-4.372],[105.85,-4.3708],[105.8377,-4.3621],[105.8298,-4.3536],[105.8253,-4.3431],[105.8204,-4.3211],[105.8186,-4.3051],[105.8183,-4.2946],[105.8197,-4.2292],[105.822,-4.2147],[105.8271,-4.1903],[105.827,-4.1868],[105.8227,-4.1762],[105.8193,-4.1621],[105.8214,-4.1583],[105.8186,-4.1416]]]}},{"type":"Feature","properties":{"mhid":"1332:138","alt_name":"KABUPATEN PESAWARAN","latitude":-5.4298,"longitude":105.17899,"sample_value":745},"geometry":{"type":"MultiLineString","coordinates":[[[105.3182,-5.8232],[105.3111,-5.8266],[105.3137,-5.8302],[105.3219,-5.8282],[105.3182,-5.8232]],[[105.3475,-5.8215],[105.3435,-5.8157],[105.3417,-5.8216],[105.3475,-5.8215]],[[105.2913,-5.7982],[105.2821,-5.7989],[105.284,-5.8033],[105.2791,-5.8128],[105.2724,-5.8152],[105.269,-5.8089],[105.2641,-5.8151],[105.2592,-5.8187],[105.2531,-5.821],[105.2457,-5.8165],[105.2425,-5.8212],[105.2329,-5.8268],[105.2346,-5.8346],[105.2487,-5.8328],[105.2556,-5.8335],[105.2575,-5.836],[105.2733,-5.8347],[105.2805,-5.8398],[105.2853,-5.8381],[105.2902,-5.8324],[105.2882,-5.8285],[105.2957,-5.8175],[105.3031,-5.8202],[105.3082,-5.8144],[105.307,-5.8103],[105.301,-5.8048],[105.2975,-5.799],[105.2945,-5.8022],[105.2913,-5.7982]],[[105.3136,-5.7901],[105.3063,-5.7936],[105.3142,-5.7982],[105.3171,-5.8059],[105.3223,-5.8057],[105.322,-5.8115],[105.3266,-5.8165],[105.3248,-5.821],[105.3284,-5.8225],[105.3328,-5.8204],[105.3298,-5.812],[105.3305,-5.8062],[105.32,-5.801],[105.3172,-5.7952],[105.3178,-5.7908],[105.3136,-5.7901]],[[105.2158,-5.7289],[105.2073,-5.7298],[105.2047,-5.735],[105.2104,-5.7356],[105.2153,-5.7323],[105.2158,-5.7289]],[[105.2189,-5.6629],[105.2169,-5.661],[105.2092,-5.6651],[105.2066,-5.6727],[105.2088,-5.6753],[105.2076,-5.6851],[105.217,-5.6847],[105.2153,-5.6886],[105.228,-5.6855],[105.2302,-5.6803],[105.2279,-5.6733],[105.2343,-5.6715],[105.235,-5.6679],[105.2321,-5.6635],[105.2249,-5.662],[105.2189,-5.6629]],[[105.2238,-5.6169],[105.2131,-5.6221],[105.2121,-5.6239],[105.2135,-5.6348],[105.2198,-5.6373],[105.2302,-5.6354],[105.2339,-5.6404],[105.24,-5.6415],[105.2409,-5.6362],[105.2324,-5.6303],[105.2238,-5.6169]],[[105.2809,-5.5622],[105.2697,-5.5622],[105.2705,-5.5721],[105.2759,-5.5732],[105.2809,-5.5622]],[[105.1721,-5.8004],[105.1798,-5.8006],[105.1863,-5.8039],[105.1957,-5.801],[105.1933,-5.7979],[105.1964,-5.7886],[105.2022,-5.7858],[105.2101,-5.7842],[105.2131,-5.7878],[105.2197,-5.7897],[105.2199,-5.7817],[105.2111,-5.7702],[105.2055,-5.7665],[105.2038,-5.773],[105.1895,-5.7696],[105.1853,-5.7719],[105.178,-5.7708],[105.1764,-5.7781],[105.1734,-5.778],[105.167,-5.7716],[105.1622,-5.7695],[105.1661,-5.7619],[105.1633,-5.7576],[105.1565,-5.7554],[105.1546,-5.749],[105.161,-5.7415],[105.1711,-5.7372],[105.1728,-5.7308],[105.1764,-5.7244],[105.1804,-5.7212],[105.1845,-5.723],[105.1878,-5.7194],[105.195,-5.7194],[105.1991,-5.7143],[105.2033,-5.7157],[105.2034,-5.722],[105.2101,-5.7249],[105.2159,-5.7225],[105.2186,-5.7181],[105.2134,-5.7073],[105.2036,-5.7078],[105.2055,-5.7037],[105.2001,-5.7031],[105.1953,-5.7049],[105.1925,-5.701],[105.1935,-5.6943],[105.1895,-5.6906],[105.1865,-5.6916],[105.1848,-5.6853],[105.1895,-5.6836],[105.1909,-5.68],[105.1873,-5.6747],[105.1826,-5.6713],[105.1779,-5.6703],[105.1826,-5.6639],[105.1898,-5.6631],[105.1947,-5.658],[105.2064,-5.6535],[105.2089,-5.6483],[105.2056,-5.643],[105.191,-5.6484],[105.1863,-5.6422],[105.1919,-5.636],[105.187,-5.6343],[105.188,-5.6282],[105.1846,-5.6242],[105.1844,-5.6202],[105.1805,-5.6171],[105.1768,-5.6186],[105.1729,-5.6114],[105.167,-5.6063],[105.1672,-5.6007],[105.1723,-5.6],[105.1768,-5.5929],[105.1773,-5.5877],[105.1914,-5.5873],[105.1942,-5.584],[105.2036,-5.5766],[105.2167,-5.5817],[105.225,-5.5872],[105.2357,-5.5916],[105.2399,-5.5865],[105.2442,-5.5879],[105.2452,-5.5775],[105.2476,-5.5716],[105.2411,-5.5712],[105.2386,-5.565],[105.242,-5.5639],[105.2448,-5.5574],[105.2487,-5.5634],[105.2525,-5.5622],[105.2535,-5.5513],[105.2614,-5.5447],[105.2535,-5.5441],[105.2525,-5.547],[105.2447,-5.547],[105.2447,-5.5415],[105.2494,-5.5357],[105.2503,-5.5286],[105.2456,-5.5235],[105.2429,-5.5183],[105.2491,-5.514],[105.255,-5.5258],[105.2601,-5.5208],[105.265,-5.5211],[105.2637,-5.5142],[105.2573,-5.5092],[105.2529,-5.489]]]}},{"type":"Feature","properties":{"mhid":"1332:142","alt_name":"KABUPATEN PESISIR BARAT","latitude":-5.19323,"longitude":103.93976,"sample_value":628},"geometry":{"type":"MultiLineString","coordinates":[[[103.8507,-5.1258],[103.8539,-5.1198],[103.8518,-5.1151],[103.8477,-5.1155],[103.8393,-5.1195],[103.8389,-5.1223],[103.8469,-5.1261],[103.8507,-5.1258]],[[103.6419,-4.9373],[103.6438,-4.944],[103.6473,-4.9479],[103.6531,-4.9509],[103.6569,-4.956],[103.6592,-4.9647],[103.6555,-4.9715],[103.6525,-4.9738],[103.6526,-4.9864],[103.6603,-4.9907],[103.666,-4.9918],[103.6703,-4.9905],[103.6737,-4.9838],[103.6831,-4.9728],[103.6863,-4.9668],[103.698,-4.9605],[103.7097,-4.9612],[103.7163,-4.9679],[103.7186,-4.9682],[103.7266,-4.9743],[103.7388,-4.9812],[103.7466,-4.9903],[103.7485,-4.998],[103.7481,-5.0044],[103.7454,-5.007],[103.7492,-5.0126],[103.7484,-5.0171],[103.7417,-5.0205],[103.7388,-5.0236],[103.7461,-5.0419],[103.7514,-5.0462],[103.7561,-5.0469],[103.7641,-5.0443],[103.7684,-5.0412],[103.7694,-5.0339],[103.7729,-5.0298],[103.7828,-5.0319],[103.7871,-5.0343],[103.7878,-5.0403],[103.7918,-5.0449],[103.7966,-5.0452],[103.8057,-5.0489],[103.815,-5.0512],[103.8267,-5.0584],[103.8382,-5.0669],[103.8433,-5.0758],[103.8437,-5.0826],[103.852,-5.092],[103.8542,-5.0986],[103.8632,-5.1018],[103.8671,-5.1107],[103.8765,-5.1128],[103.8813,-5.1126],[103.8865,-5.1175],[103.8941,-5.1163],[103.9001,-5.1217],[103.9123,-5.1281],[103.9198,-5.1376],[103.9305,-5.1497],[103.9347,-5.1605],[103.937,-5.1728],[103.9346,-5.1831],[103.9301,-5.1923],[103.9196,-5.2037],[103.9066,-5.2082],[103.9034,-5.2115],[103.9015,-5.2228],[103.9048,-5.23],[103.9143,-5.2372],[103.9206,-5.2339],[103.9403,-5.2356],[103.9546,-5.244],[103.9682,-5.2492],[103.9772,-5.2518],[103.987,-5.257],[104.0027,-5.2739],[104.0074,-5.2818],[104.0084,-5.2925],[104.0013,-5.2998],[104.001,-5.302],[103.9923,-5.3099],[103.9965,-5.3201],[104.006,-5.3255],[104.0136,-5.3252],[104.0203,-5.3282],[104.0275,-5.334],[104.031,-5.3395],[104.032,-5.3453],[104.0281,-5.3497],[104.0262,-5.3572],[104.0306,-5.3639],[104.0428,-5.3683],[104.047,-5.3718],[104.0547,-5.3756],[104.063,-5.3894],[104.0637,-5.3941],[104.0685,-5.3988],[104.0691,-5.4077],[104.0758,-5.4075],[104.0913,-5.4162],[104.1084,-5.4291],[104.1076,-5.4319],[104.1113,-5.4373],[104.112,-5.4465],[104.1207,-5.4574],[104.1294,-5.4598],[104.1489,-5.4677],[104.1648,-5.4762],[104.1771,-5.4813],[104.1902,-5.49],[104.2115,-5.5073],[104.2147,-5.512],[104.2145,-5.5259],[104.2192,-5.5249],[104.2378,-5.5318],[104.2388,-5.5335],[104.2561,-5.5428],[104.2717,-5.5519],[104.2874,-5.5654],[104.2974,-5.5757],[104.2992,-5.5751],[104.3119,-5.5911],[104.3185,-5.6031],[104.3208,-5.6141],[104.3187,-5.624],[104.3141,-5.6297],[104.3081,-5.6335],[104.2983,-5.6355],[104.301,-5.6408],[104.3068,-5.6429],[104.3267,-5.6543],[104.3459,-5.6621],[104.3478,-5.6639],[104.3655,-5.6722],[104.3801,-5.6798],[104.3838,-5.6846],[104.4076,-5.7013],[104.4214,-5.7124],[104.4235,-5.7177],[104.4234,-5.724],[104.4209,-5.7252],[104.438,-5.7407],[104.4445,-5.7455],[104.4481,-5.7507],[104.4482,-5.756],[104.4531,-5.7642],[104.4579,-5.7669],[104.4723,-5.7795],[104.4828,-5.7898],[104.4886,-5.7993],[104.4977,-5.8072],[104.5069,-5.8135],[104.518,-5.8235],[104.5391,-5.8385],[104.5566,-5.8569],[104.5653,-5.8672],[104.5708,-5.8751],[104.5763,-5.8923],[104.5765,-5.8985],[104.5739,-5.9072],[104.5689,-5.9133],[104.5602,-5.9145],[104.5593,-5.9082],[104.5539,-5.91],[104.5526,-5.9193],[104.5549,-5.9259],[104.5603,-5.928],[104.5662,-5.9269],[104.5678,-5.9311],[104.5799,-5.9387],[104.5833,-5.9428],[104.5874,-5.9427],[104.592,-5.9379],[104.6112,-5.9379],[104.6287,-5.9386],[104.6429,-5.9386],[104.659,-5.9368]]]}},{"type":"Feature","properties":{"mhid":"1332:143","alt_name":"KOTA BANDAR LAMPUNG","latitude":-5.41667,"longitude":105.25,"sample_value":282},"geometry":{"type":"MultiLineString","coordinates":[[[105.2529,-5.489],[105.2535,-5.4812],[105.2504,-5.4715],[105.2528,-5.4684],[105.2548,-5.4612],[105.2616,-5.4585],[105.268,-5.4533],[105.2705,-5.4488],[105.277,-5.4471],[105.2817,-5.4476],[105.2898,-5.445],[105.2971,-5.4491],[105.3038,-5.4508],[105.3102,-5.4567],[105.3165,-5.4672],[105.3201,-5.4692],[105.3163,-5.4769],[105.3235,-5.4839],[105.3254,-5.4906],[105.3241,-5.4992],[105.3268,-5.4997],[105.3315,-5.505],[105.3349,-5.5055],[105.3377,-5.5096],[105.3426,-5.5127],[105.3471,-5.5219]]]}},{"type":"Feature","properties":{"mhid":"1332:258","alt_name":"KABUPATEN TUBAN","latitude":-6.96667,"longitude":111.9,"sample_value":677},"geometry":{"type":"MultiLineString","coordinates":[[[112.1709,-6.8995],[112.1599,-6.8989],[112.1513,-6.8968],[112.1459,-6.8975],[112.1455,-6.9011],[112.1306,-6.9024],[112.1233,-6.9021],[112.1052,-6.8949],[112.1032,-6.8965],[112.0876,-6.894],[112.0814,-6.8962],[112.0778,-6.8943],[112.072,-6.8949],[112.0606,-6.8911],[112.0528,-6.8867],[112.0471,-6.8819],[112.036,-6.8703],[112.0262,-6.8577],[112.0133,-6.8395],[112.0082,-6.829],[112.0064,-6.8179],[112.002,-6.8139],[111.9955,-6.8045],[111.9873,-6.7954],[111.9851,-6.7853],[111.9801,-6.7732],[111.9726,-6.7674],[111.9593,-6.7634],[111.9472,-6.7639],[111.9357,-6.7695],[111.9328,-6.7729],[111.9248,-6.7779],[111.9139,-6.7828],[111.8905,-6.7917],[111.874,-6.7966],[111.8616,-6.799],[111.8432,-6.8006],[111.8336,-6.8005],[111.8111,-6.7945],[111.805,-6.7918],[111.7852,-6.78],[111.7735,-6.7813],[111.7742,-6.7776],[111.7658,-6.7715],[111.7609,-6.7747],[111.7511,-6.7705],[111.7415,-6.7703],[111.7287,-6.7717],[111.7132,-6.7674],[111.6914,-6.7538]]]}},{"type":"Feature","properties":{"mhid":"1332:259","alt_name":"KABUPATEN LAMONGAN","latitude":-7.13333,"longitude":112.31667,"sample_value":97},"geometry":{"type":"MultiLineString","coordinates":[[[112.4539,-6.8833],[112.453,-6.879],[112.4489,-6.8788]],[[112.4406,-6.8749],[112.4358,-6.869],[112.4295,-6.8672],[112.4185,-6.8658],[112.4141,-6.8642],[112.4097,-6.8662],[112.4064,-6.8717],[112.3897,-6.8759],[112.3735,-6.8744],[112.3668,-6.8687],[112.3577,-6.8638],[112.3528,-6.8689],[112.3414,-6.8697],[112.3371,-6.8661],[112.3293,-6.8631],[112.3234,-6.8647],[112.3155,-6.8707],[112.2982,-6.8743],[112.2848,-6.8694],[112.2708,-6.8775],[112.2575,-6.8771],[112.2471,-6.8786],[112.2448,-6.873],[112.24,-6.8718],[112.2234,-6.8728],[112.2168,-6.8744],[112.2148,-6.88],[112.1953,-6.8863],[112.1909,-6.8885],[112.1834,-6.8889],[112.1811,-6.8917],[112.175,-6.8933],[112.1709,-6.8995]]]}},{"type":"Feature","properties":{"mhid":"1332:260","alt_name":"KABUPATEN GRESIK","latitude":-7.1933,"longitude":112.553,"sample_value":545},"geometry":{"type":"MultiLineString","coordinates":[[[112.6615,-7.193],[112.6657,-7.1891],[112.6675,-7.1801],[112.6652,-7.1739],[112.6623,-7.1581],[112.6579,-7.151],[112.6517,-7.1493],[112.6486,-7.145],[112.6347,-7.1377],[112.6282,-7.1353],[112.6232,-7.1204],[112.6248,-7.1126],[112.6286,-7.1078],[112.6244,-7.1039],[112.6179,-7.1042],[112.6162,-7.1016],[112.6314,-7.1029],[112.6341,-7.099],[112.6326,-7.0924],[112.6315,-7.0768],[112.6376,-7.066],[112.644,-7.0618],[112.6496,-7.0611],[112.6543,-7.0554],[112.653,-7.0494],[112.6541,-7.0443],[112.6504,-7.0357],[112.6492,-7.0297],[112.6525,-7.0214],[112.6489,-7.0172],[112.6464,-7.0062],[112.6409,-6.9925],[112.6221,-6.983],[112.6206,-6.9793],[112.6147,-6.9737],[112.6077,-6.961],[112.6019,-6.9562],[112.5981,-6.9561],[112.5937,-6.9392],[112.5954,-6.9296],[112.599,-6.9228],[112.5981,-6.9075],[112.5942,-6.9005],[112.59,-6.9012],[112.5874,-6.906],[112.5833,-6.8992],[112.5778,-6.8953],[112.5732,-6.8947],[112.5637,-6.8751],[112.5601,-6.8665],[112.559,-6.8604],[112.5529,-6.8527],[112.5502,-6.8451],[112.5458,-6.8503],[112.5479,-6.8594],[112.5454,-6.8603],[112.5435,-6.8661],[112.5369,-6.8684],[112.5345,-6.8752],[112.5477,-6.8765],[112.5551,-6.8875],[112.5548,-6.895],[112.5499,-6.8996],[112.5488,-6.9065],[112.5429,-6.9093],[112.5291,-6.9082],[112.5257,-6.907],[112.5057,-6.9072],[112.4922,-6.9033],[112.487,-6.9041],[112.4753,-6.8998],[112.4691,-6.8926],[112.4633,-6.8911],[112.4539,-6.8833]],[[112.4489,-6.8788],[112.4406,-6.8749]],[[112.5858,-5.7753],[112.5879,-5.7685],[112.5818,-5.7712],[112.5858,-5.7753]],[[112.6047,-5.7584],[112.606,-5.751],[112.6025,-5.746],[112.6016,-5.7555],[112.6047,-5.7584]],[[112.7034,-5.7347],[112.6946,-5.7284],[112.6903,-5.7267],[112.6886,-5.7192],[112.6805,-5.7197],[112.6754,-5.7248],[112.6764,-5.7329],[112.6704,-5.7386],[112.6581,-5.7321],[112.6481,-5.7313],[112.6369,-5.7379],[112.6325,-5.7449],[112.6267,-5.7494],[112.6155,-5.7514],[112.6114,-5.7572],[112.612,-5.7706],[112.6083,-5.7739],[112.6025,-5.7743],[112.5992,-5.7704],[112.5898,-5.7745],[112.5899,-5.7788],[112.5873,-5.7833],[112.5863,-5.7902],[112.5805,-5.79],[112.584,-5.7959],[112.5821,-5.8057],[112.577,-5.8077],[112.5706,-5.8059],[112.569,-5.8099],[112.573,-5.8131],[112.5798,-5.8132],[112.5752,-5.8293],[112.5848,-5.8316],[112.5836,-5.8376],[112.5774,-5.8404],[112.5808,-5.8444],[112.5876,-5.847],[112.5914,-5.8555],[112.597,-5.8534],[112.6072,-5.8561],[112.6219,-5.8544],[112.6234,-5.8589],[112.6199,-5.8663],[112.6223,-5.8693],[112.6283,-5.8558],[112.628,-5.8469],[112.6312,-5.8435],[112.639,-5.8443],[112.6489,-5.8488],[112.6517,-5.8514],[112.6578,-5.8525],[112.6638,-5.85],[112.6699,-5.8543],[112.6789,-5.8515],[112.6838,-5.8527],[112.6848,-5.8604],[112.6829,-5.8653],[112.6893,-5.8649],[112.6883,-5.8539],[112.694,-5.8504],[112.6991,-5.8517],[112.7057,-5.8458],[112.7136,-5.8446],[112.7194,-5.8386],[112.7221,-5.833],[112.7273,-5.8341],[112.7328,-5.8315],[112.7326,-5.8243],[112.7276,-5.8187],[112.733,-5.8042],[112.7389,-5.7915],[112.7425,-5.79],[112.7397,-5.7815],[112.7325,-5.7769],[112.7329,-5.7719],[112.7368,-5.7672],[112.7328,-5.7636],[112.7252,-5.7603],[112.7278,-5.7403],[112.7175,-5.7357],[112.7034,-5.7347]]]}},{"type":"Feature","properties":{"mhid":"1332:261","alt_name":"KABUPATEN BANGKALAN","latitude":-7.05,"longitude":112.93333,"sample_value":236},"geometry":{"type":"MultiLineString","coordinates":[[[113.1245,-6.894],[113.1213,-6.8901],[113.1158,-6.8948],[113.1086,-6.8935],[113.1085,-6.8887],[113.104,-6.8893],[113.0888,-6.8889],[113.0763,-6.8847],[113.0637,-6.882],[113.0536,-6.885],[113.0437,-6.8803],[113.0326,-6.8799],[113.0289,-6.8834],[113.0108,-6.8808],[113.0044,-6.8825],[112.9998,-6.8816],[112.9942,-6.8854],[112.9914,-6.8839],[112.9869,-6.8869],[112.9785,-6.8856],[112.9695,-6.8888],[112.9662,-6.887],[112.9596,-6.8891],[112.9513,-6.8871],[112.9442,-6.8895],[112.9383,-6.8889],[112.9329,-6.8914],[112.9255,-6.8899],[112.9215,-6.8937],[112.9033,-6.8935],[112.8933,-6.8908],[112.8866,-6.8918],[112.878,-6.8913],[112.879,-6.8966],[112.8753,-6.898],[112.8676,-6.8919],[112.8635,-6.8919],[112.8493,-6.8967],[112.8479,-6.9099],[112.8407,-6.9165],[112.8351,-6.9153],[112.8326,-6.9071],[112.829,-6.9057],[112.8223,-6.9127],[112.8292,-6.9206],[112.8265,-6.9275],[112.8283,-6.9307],[112.8175,-6.9463],[112.809,-6.9559],[112.804,-6.9639],[112.7987,-6.9695],[112.7906,-6.9747],[112.7928,-6.9784],[112.7885,-6.9844],[112.7758,-6.9965],[112.7672,-7.0028],[112.757,-7.0077],[112.7463,-7.0168],[112.7406,-7.0182],[112.7359,-7.0259],[112.7229,-7.0387],[112.7163,-7.0384],[112.7106,-7.0404],[112.7032,-7.0384],[112.6976,-7.0339],[112.6893,-7.0313],[112.6828,-7.0318],[112.6774,-7.0441],[112.6765,-7.0569],[112.6736,-7.0596],[112.6753,-7.0664],[112.6734,-7.0735],[112.6777,-7.0766],[112.6826,-7.0838],[112.6894,-7.0973],[112.6954,-7.0943],[112.7015,-7.0938],[112.7058,-7.0962],[112.7038,-7.1133],[112.6991,-7.1297],[112.6918,-7.1477],[112.6914,-7.1542],[112.695,-7.1567],[112.7034,-7.1659],[112.7243,-7.1741],[112.7287,-7.1705],[112.7401,-7.1713],[112.7459,-7.1704],[112.7404,-7.1653],[112.7515,-7.1536],[112.7529,-7.1512],[112.7652,-7.1522],[112.7645,-7.1556],[112.7683,-7.1626],[112.7766,-7.1595],[112.7908,-7.1605],[112.7994,-7.1577],[112.8053,-7.1589],[112.8129,-7.1584],[112.8239,-7.1613],[112.8309,-7.1616],[112.8398,-7.1643],[112.8526,-7.1654],[112.8587,-7.1631],[112.8648,-7.1627],[112.8783,-7.1684],[112.8857,-7.1726],[112.8912,-7.178],[112.9019,-7.1806],[112.9055,-7.1798],[112.9112,-7.1822],[112.9132,-7.1851],[112.9184,-7.1831],[112.9261,-7.1863],[112.9469,-7.1932],[112.9519,-7.1926],[112.9648,-7.1997],[112.9762,-7.1989],[112.9876,-7.2011],[112.9959,-7.2044],[112.9976,-7.2088],[113.0013,-7.2094],[113.0078,-7.2063],[113.0138,-7.2055],[113.0168,-7.2079],[113.0291,-7.2114],[113.0404,-7.2129]]]}},{"type":"Feature","properties":{"mhid":"1332:262","alt_name":"KABUPATEN SAMPANG","latitude":-7.05,"longitude":113.25,"sample_value":920},"geometry":{"type":"MultiLineString","coordinates":[[[113.2061,-7.3067],[113.2027,-7.3103],[113.2126,-7.3134],[113.2204,-7.3141],[113.2241,-7.3099],[113.2192,-7.3083],[113.2061,-7.3067]],[[113.4834,-6.8971],[113.4672,-6.8935],[113.4523,-6.8919],[113.4489,-6.8901],[113.44,-6.8889],[113.4305,-6.8898],[113.4195,-6.888],[113.4135,-6.8894],[113.4071,-6.8879],[113.3932,-6.8896],[113.3854,-6.8882],[113.3793,-6.8896],[113.3757,-6.8883],[113.3625,-6.8885],[113.3526,-6.8899],[113.3473,-6.8885],[113.3235,-6.8881],[113.3142,-6.8907],[113.312,-6.8928],[113.3014,-6.8915],[113.2951,-6.889],[113.2817,-6.8919],[113.2763,-6.8901],[113.2587,-6.8895],[113.2451,-6.8922],[113.2339,-6.8906],[113.2271,-6.8908],[113.2181,-6.8946],[113.1987,-6.8979],[113.1897,-6.8939],[113.1867,-6.8946],[113.1741,-6.8934],[113.1691,-6.8913],[113.162,-6.895],[113.1562,-6.8953],[113.15,-6.8915],[113.1417,-6.8921],[113.1365,-6.8944],[113.1293,-6.8916],[113.1245,-6.894]],[[113.0404,-7.2129],[113.0459,-7.2156],[113.0509,-7.2158],[113.0623,-7.2191],[113.0728,-7.2232],[113.0809,-7.2234],[113.092,-7.2277],[113.1081,-7.2282],[113.1328,-7.2231],[113.1426,-7.2247],[113.149,-7.2239],[113.1498,-7.2165],[113.1444,-7.2131],[113.1471,-7.2103],[113.1561,-7.2063],[113.1626,-7.2097],[113.1655,-7.2148],[113.167,-7.2231],[113.1698,-7.2275],[113.1863,-7.2257],[113.197,-7.2229],[113.2132,-7.2214],[113.2185,-7.2202],[113.2368,-7.2215],[113.2609,-7.2249],[113.2683,-7.2214],[113.2747,-7.2154],[113.2938,-7.2177],[113.2995,-7.2168],[113.3076,-7.2184],[113.3178,-7.2186],[113.3268,-7.2135],[113.3383,-7.2156],[113.355,-7.2156],[113.3789,-7.2164],[113.3935,-7.2176]]]}},{"type":"Feature","properties":{"mhid":"1332:263","alt_name":"KABUPATEN PAMEKASAN","latitude":-7.06667,"longitude":113.5,"sample_value":129},"geometry":{"type":"MultiLineString","coordinates":[[[113.5021,-7.2406],[113.4997,-7.2456],[113.5054,-7.2526],[113.5099,-7.254],[113.5137,-7.2526],[113.509,-7.2453]],[[113.509,-7.2453],[113.5085,-7.2446],[113.5082,-7.2444]],[[113.5082,-7.2444],[113.5021,-7.2406]],[[113.6391,-6.8876],[113.6243,-6.8903],[113.6126,-6.8888],[113.5895,-6.8889],[113.5719,-6.8931],[113.564,-6.8925],[113.552,-6.8938],[113.5332,-6.8944],[113.525,-6.8955],[113.5151,-6.8953],[113.5047,-6.8975],[113.4834,-6.8971]],[[113.3935,-7.2176],[113.407,-7.2184],[113.4107,-7.2177],[113.4278,-7.2228],[113.4354,-7.2205],[113.4433,-7.2207],[113.4598,-7.2227],[113.4684,-7.2211],[113.4771,-7.2243],[113.4967,-7.2267],[113.505,-7.2315],[113.5114,-7.2402],[113.5067,-7.2427],[113.5082,-7.2444]],[[113.5082,-7.2444],[113.509,-7.2453]],[[113.509,-7.2453],[113.5152,-7.2525],[113.5209,-7.249],[113.5377,-7.236],[113.5466,-7.2336],[113.5495,-7.2306],[113.5596,-7.2135],[113.5598,-7.2063],[113.5564,-7.2026],[113.5636,-7.1972],[113.5662,-7.1926],[113.5662,-7.1821],[113.5703,-7.1798],[113.5732,-7.1705],[113.5731,-7.1634],[113.5767,-7.1596],[113.5858,-7.1463],[113.5893,-7.139],[113.6023,-7.1289],[113.602,-7.1277]]]}},{"type":"Feature","properties":{"mhid":"1332:77","alt_name":"KOTA PARIAMAN","latitude":-0.62682,"longitude":100.12047,"sample_value":226},"geometry":{"type":"MultiLineString","coordinates":[[[100.0908,-0.568],[100.097,-0.5813],[100.1028,-0.5892],[100.1131,-0.6092],[100.1157,-0.6157],[100.1156,-0.6279],[100.1212,-0.6349],[100.1277,-0.6459],[100.1431,-0.6591],[100.1593,-0.6757]]]}},{"type":"Feature","properties":{"mhid":"1332:217","alt_name":"KABUPATEN KENDAL","latitude":-7.0256,"longitude":110.1685,"sample_value":573},"geometry":{"type":"MultiLineString","coordinates":[[[110.3142,-6.9377],[110.3052,-6.9341],[110.3062,-6.9287],[110.3006,-6.9285],[110.2878,-6.9209],[110.2786,-6.9178],[110.2562,-6.9125],[110.2463,-6.9036],[110.2418,-6.8971],[110.2395,-6.8893],[110.2309,-6.8863],[110.2263,-6.8799],[110.2188,-6.8636],[110.2188,-6.8605],[110.2098,-6.8574],[110.2019,-6.8562],[110.1977,-6.8511],[110.1875,-6.851],[110.1753,-6.8474],[110.171,-6.8446],[110.1578,-6.85],[110.1651,-6.8599],[110.1615,-6.8632],[110.1317,-6.8808],[110.1101,-6.8889],[110.0974,-6.8923],[110.0722,-6.9007],[110.0502,-6.9054],[110.0424,-6.9045],[110.0414,-6.9067],[110.0342,-6.908],[110.03,-6.9124]]]}},{"type":"Feature","properties":{"mhid":"1332:218","alt_name":"KABUPATEN BATANG","latitude":-7.03333,"longitude":109.88333,"sample_value":258},"geometry":{"type":"MultiLineString","coordinates":[[[110.03,-6.9124],[110.0283,-6.9108],[110.0134,-6.9177],[110.0016,-6.9218],[109.9876,-6.9237],[109.9753,-6.9237],[109.9661,-6.9223],[109.9628,-6.9197],[109.95,-6.9195],[109.9479,-6.9169],[109.9337,-6.9155],[109.9267,-6.9121],[109.9192,-6.9152],[109.9093,-6.9178],[109.8918,-6.918],[109.8677,-6.9147],[109.8477,-6.9079],[109.8208,-6.904],[109.806,-6.8981],[109.7997,-6.8922],[109.786,-6.8891],[109.7711,-6.8868],[109.7586,-6.8833],[109.7504,-6.8792],[109.7404,-6.8776],[109.7144,-6.8686]]]}},{"type":"Feature","properties":{"mhid":"1332:219","alt_name":"KABUPATEN PEKALONGAN","latitude":-7.0319,"longitude":109.624,"sample_value":610},"geometry":{"type":"MultiLineString","coordinates":[[[109.6659,-6.8517],[109.6606,-6.8486],[109.6579,-6.8502],[109.6528,-6.848],[109.6451,-6.8482],[109.6355,-6.8465],[109.6275,-6.8434],[109.6171,-6.8408],[109.6114,-6.8414],[109.5979,-6.8408],[109.5959,-6.8418]]]}},{"type":"Feature","properties":{"mhid":"1332:220","alt_name":"KABUPATEN PEMALANG","latitude":-7.03333,"longitude":109.4,"sample_value":923},"geometry":{"type":"MultiLineString","coordinates":[[[109.5959,-6.8418],[109.5943,-6.8402],[109.5809,-6.8385],[109.5692,-6.835],[109.5618,-6.8291],[109.5444,-6.8121],[109.543,-6.8071],[109.5352,-6.7956],[109.5263,-6.789],[109.5254,-6.7827],[109.5284,-6.7808],[109.5226,-6.7749],[109.5185,-6.7819],[109.5193,-6.7907],[109.512,-6.7902],[109.5065,-6.7853],[109.5032,-6.7925],[109.493,-6.8036],[109.4925,-6.8067],[109.4681,-6.8242],[109.4538,-6.8329],[109.4362,-6.8425],[109.4265,-6.8465],[109.4124,-6.8504],[109.3913,-6.859],[109.3791,-6.8615],[109.3644,-6.8636],[109.3503,-6.8626]]]}},{"type":"Feature","properties":{"mhid":"1332:221","alt_name":"KABUPATEN TEGAL","latitude":-7.03333,"longitude":109.16667,"sample_value":918},"geometry":{"type":"MultiLineString","coordinates":[[[109.3503,-6.8626],[109.3398,-6.8625],[109.3225,-6.8688],[109.3033,-6.8726],[109.2835,-6.8737],[109.2631,-6.8725],[109.2543,-6.8712],[109.2378,-6.8667],[109.2284,-6.8628],[109.2082,-6.863],[109.1899,-6.861],[109.1807,-6.857],[109.1627,-6.8428],[109.1616,-6.8438]]]}},{"type":"Feature","properties":{"mhid":"1332:222","alt_name":"KABUPATEN BREBES","latitude":-7.05,"longitude":108.9,"sample_value":83},"geometry":{"type":"MultiLineString","coordinates":[[[109.1022,-6.8399],[109.0911,-6.8313],[109.0819,-6.8214],[109.0764,-6.8083],[109.0768,-6.8034],[109.075,-6.7917],[109.0728,-6.7893],[109.0667,-6.7912],[109.0628,-6.788],[109.0632,-6.7832],[109.0607,-6.7787],[109.0638,-6.7684],[109.053,-6.7801],[109.0452,-6.7825],[109.0382,-6.7768],[109.0356,-6.7727],[109.0316,-6.7751],[109.0254,-6.7848],[109.0206,-6.7823],[109.0152,-6.7841],[109.0127,-6.792],[109.0083,-6.7934],[109.0054,-6.7977],[109.0008,-6.7993],[108.995,-6.7977],[108.9897,-6.8089],[108.9796,-6.8064],[108.9727,-6.8062],[108.9748,-6.8148],[108.9728,-6.8199],[108.9596,-6.8282],[108.9495,-6.8309],[108.9364,-6.8288],[108.9191,-6.817],[108.9114,-6.8141],[108.8872,-6.8117],[108.8739,-6.8063],[108.8704,-6.8092],[108.8673,-6.8072],[108.864,-6.8001],[108.8572,-6.7948],[108.8539,-6.795],[108.8476,-6.7884],[108.8452,-6.7778],[108.8482,-6.7728],[108.8444,-6.7646],[108.8378,-6.7709],[108.8331,-6.7692],[108.8322,-6.7644],[108.8338,-6.758]]]}},{"type":"Feature","properties":{"mhid":"1332:226","alt_name":"KOTA SEMARANG","latitude":-7.03333,"longitude":110.38333,"sample_value":859},"geometry":{"type":"MultiLineString","coordinates":[[[110.4632,-6.9315],[110.4567,-6.9354],[110.443,-6.9383],[110.4417,-6.9464],[110.4368,-6.9433],[110.4291,-6.9444],[110.4243,-6.9388],[110.4234,-6.9497],[110.4195,-6.9509],[110.4194,-6.9443],[110.409,-6.9472],[110.4054,-6.9508],[110.4015,-6.9515],[110.398,-6.9476],[110.3932,-6.9456],[110.3867,-6.9498],[110.3768,-6.9509],[110.3743,-6.9541],[110.3624,-6.9545],[110.3403,-6.948],[110.3199,-6.939],[110.3142,-6.9377]]]}},{"type":"Feature","properties":{"mhid":"1332:227","alt_name":"KOTA PEKALONGAN","latitude":-6.9,"longitude":109.68333,"sample_value":594},"geometry":{"type":"MultiLineString","coordinates":[[[109.7144,-6.8686],[109.7137,-6.8671],[109.6973,-6.86],[109.6822,-6.8584],[109.6705,-6.8545],[109.6659,-6.8517]]]}},{"type":"Feature","properties":{"mhid":"1332:228","alt_name":"KOTA TEGAL","latitude":-6.8686,"longitude":109.1129,"sample_value":845},"geometry":{"type":"MultiLineString","coordinates":[[[109.1616,-6.8438],[109.1584,-6.8438],[109.1518,-6.8474],[109.1387,-6.8467],[109.1351,-6.8488],[109.1212,-6.8472],[109.1037,-6.8395],[109.1022,-6.8399]]]}},{"type":"Feature","properties":{"mhid":"1332:231","alt_name":"KABUPATEN KULON PROGO","latitude":-7.645,"longitude":110.02694,"sample_value":107},"geometry":{"type":"MultiLineString","coordinates":[[[110.0197,-7.8917],[110.0314,-7.8994],[110.0299,-7.9016],[110.0432,-7.9058],[110.0687,-7.9163],[110.0768,-7.919],[110.0938,-7.9262],[110.1276,-7.9424],[110.129,-7.9439],[110.1428,-7.9503],[110.1506,-7.9527],[110.1664,-7.9606],[110.1837,-7.9711],[110.2022,-7.9834],[110.2054,-7.9839]]]}},{"type":"Feature","properties":{"mhid":"1332:232","alt_name":"KABUPATEN BANTUL","latitude":-7.9,"longitude":110.36667,"sample_value":969},"geometry":{"type":"MultiLineString","coordinates":[[[110.2054,-7.9839],[110.2114,-7.9867],[110.2367,-7.9951],[110.2551,-8.0025],[110.2795,-8.0111],[110.2973,-8.0151],[110.3197,-8.0215],[110.3401,-8.0281]]]}},{"type":"Feature","properties":{"mhid":"1332:233","alt_name":"KABUPATEN GUNUNG KIDUL","latitude":-7.98333,"longitude":110.61667,"sample_value":517},"geometry":{"type":"MultiLineString","coordinates":[[[110.3401,-8.0281],[110.3444,-8.0302],[110.3497,-8.0425],[110.3595,-8.0569],[110.368,-8.061],[110.3752,-8.0716],[110.3872,-8.0723],[110.3969,-8.0781],[110.4024,-8.078],[110.4149,-8.0828],[110.4187,-8.0867],[110.4245,-8.087],[110.4347,-8.0935],[110.4341,-8.0987],[110.4389,-8.1007],[110.4503,-8.1005],[110.4675,-8.1104],[110.477,-8.1099],[110.4859,-8.1123],[110.4938,-8.1176],[110.5002,-8.1183],[110.5103,-8.1214],[110.5172,-8.1252],[110.5206,-8.1255],[110.5262,-8.1304],[110.5356,-8.1313],[110.5446,-8.1349],[110.547,-8.1325],[110.5535,-8.1334],[110.5677,-8.1375],[110.5794,-8.1382],[110.585,-8.1447],[110.5908,-8.1474],[110.6,-8.1452],[110.607,-8.147],[110.6161,-8.1535],[110.6251,-8.1585],[110.6367,-8.1621],[110.6443,-8.1686],[110.6496,-8.1691],[110.654,-8.1732],[110.6598,-8.1734],[110.6637,-8.1767],[110.6677,-8.1764],[110.6791,-8.183],[110.6884,-8.1846],[110.6909,-8.1873],[110.7002,-8.1865],[110.7023,-8.1845],[110.7087,-8.1839],[110.7099,-8.1928],[110.7061,-8.1954],[110.7062,-8.1996],[110.71,-8.2007],[110.7129,-8.1974],[110.7181,-8.1995],[110.7273,-8.1967],[110.7315,-8.1926],[110.7379,-8.1924],[110.7485,-8.1969],[110.7538,-8.1953],[110.7638,-8.1952],[110.7748,-8.1968],[110.7822,-8.1959],[110.7866,-8.1927],[110.7898,-8.1941],[110.7973,-8.1912],[110.7995,-8.1979],[110.8055,-8.1994],[110.8186,-8.2],[110.8289,-8.204],[110.8298,-8.2014]]]}},{"type":"Feature","properties":{"mhid":"1332:103","alt_name":"KABUPATEN OGAN KOMERING ILIR","latitude":-3.36667,"longitude":105.36667,"sample_value":512},"geometry":{"type":"MultiLineString","coordinates":[[[106.1645,-3.2964],[106.1617,-3.2988],[106.1732,-3.31],[106.1822,-3.3153],[106.1871,-3.3167],[106.1887,-3.3116],[106.1771,-3.3009],[106.1683,-3.2969],[106.1645,-3.2964]],[[105.8186,-4.1416],[105.8214,-4.1482],[105.824,-4.1579],[105.8362,-4.1701],[105.8476,-4.1653],[105.851,-4.1575],[105.8517,-4.1488],[105.8472,-4.1191],[105.8627,-4.0526],[105.8644,-4.0411],[105.8717,-4.0181],[105.8722,-4.0121],[105.8776,-4.0009],[105.8849,-3.9794],[105.8885,-3.9785],[105.8931,-3.9678],[105.8968,-3.9632],[105.9143,-3.9364],[105.9256,-3.9209],[105.9375,-3.8977],[105.9432,-3.8856],[105.9446,-3.8784],[105.9543,-3.8595],[105.9604,-3.8395],[105.9605,-3.8231],[105.9561,-3.8146],[105.9485,-3.8045],[105.9363,-3.7903],[105.925,-3.7751],[105.9132,-3.7677],[105.9069,-3.7613],[105.88,-3.7444],[105.8651,-3.7378],[105.8536,-3.7442],[105.8503,-3.7493],[105.8465,-3.7449],[105.8386,-3.725],[105.8296,-3.7118],[105.8237,-3.6927],[105.823,-3.6705],[105.8199,-3.639],[105.821,-3.6298],[105.8268,-3.6033],[105.8295,-3.5857],[105.8336,-3.5676],[105.8417,-3.5481],[105.8479,-3.5236],[105.867,-3.4807],[105.8733,-3.4637],[105.8841,-3.4387],[105.8908,-3.4246],[105.8997,-3.4248],[105.9087,-3.4136],[105.9232,-3.39],[105.9324,-3.3782],[105.935,-3.3677],[105.939,-3.3625],[105.9331,-3.3608],[105.9455,-3.3561],[105.9544,-3.3422],[105.9561,-3.3364],[105.9615,-3.3385],[105.9772,-3.3231],[105.9855,-3.3158],[105.9873,-3.3115],[105.9932,-3.312],[106.0025,-3.3053],[106.0234,-3.2891],[106.0379,-3.2786],[106.0562,-3.2759],[106.0673,-3.2712],[106.0669,-3.2654],[106.0765,-3.2643],[106.0876,-3.2561],[106.0961,-3.2408],[106.0981,-3.2282],[106.0921,-3.201],[106.0893,-3.1917],[106.0719,-3.1464],[106.0691,-3.1373],[106.0641,-3.1319],[106.0601,-3.1188],[106.0672,-3.1148],[106.0628,-3.1109],[106.0614,-3.0939],[106.0693,-3.0795],[106.0706,-3.0756],[106.0706,-3.0651],[106.068,-3.0507],[106.064,-3.035],[106.064,-3.0298],[106.06,-3.0127],[106.0513,-2.9871],[105.999,-2.9678],[105.9888,-2.9709],[105.9789,-2.9532],[105.9716,-2.9539],[105.9634,-2.953],[105.9597,-2.9618],[105.9459,-2.9619],[105.9518,-2.9683],[105.9281,-2.967],[105.9017,-2.9736],[105.8806,-2.9671],[105.8645,-2.9524],[105.8512,-2.9415],[105.8318,-2.9291],[105.8169,-2.9083],[105.8106,-2.8988],[105.8041,-2.8807],[105.7982,-2.8769],[105.8027,-2.8532],[105.8014,-2.8401],[105.8027,-2.827],[105.8001,-2.8179],[105.804,-2.8021],[105.8066,-2.7877],[105.8066,-2.7642],[105.804,-2.7498],[105.804,-2.734],[105.8026,-2.717],[105.8,-2.7026],[105.7967,-2.6922],[105.7869,-2.6896],[105.7826,-2.6813],[105.7709,-2.6825],[105.7497,-2.6894],[105.7364,-2.689],[105.7011,-2.6851],[105.6889,-2.6821],[105.6777,-2.6756],[105.6721,-2.6739],[105.6674,-2.6695],[105.6574,-2.6648],[105.6406,-2.6466],[105.6329,-2.6409],[105.6203,-2.6188],[105.6156,-2.6054],[105.6126,-2.6023],[105.6087,-2.5941],[105.6074,-2.5854],[105.6065,-2.5685],[105.6043,-2.5576],[105.6046,-2.5409],[105.6034,-2.5386],[105.6067,-2.5133],[105.6101,-2.5039],[105.6158,-2.48],[105.6261,-2.4627],[105.6278,-2.4541],[105.6317,-2.4454],[105.6337,-2.4341],[105.6324,-2.4263],[105.6333,-2.4176],[105.6316,-2.408],[105.626,-2.3952],[105.6192,-2.3888],[105.6128,-2.3912],[105.612,-2.3942],[105.602,-2.4032],[105.5972,-2.4065],[105.5817,-2.4149],[105.5695,-2.4183],[105.5637,-2.417]]]}},{"type":"Feature","properties":{"mhid":"1332:108","alt_name":"KABUPATEN BANYU ASIN","latitude":-2.88333,"longitude":104.38306,"sample_value":270},"geometry":{"type":"MultiLineString","coordinates":[[[104.9282,-2.3999],[104.9286,-2.3668],[104.9282,-2.3584],[104.9262,-2.3542],[104.9162,-2.3596],[104.913,-2.3657],[104.9174,-2.3799],[104.9245,-2.3989],[104.9282,-2.3999]],[[104.7659,-2.3471],[104.7701,-2.3313],[104.7728,-2.3166],[104.7691,-2.3128],[104.7659,-2.3182],[104.7551,-2.3436],[104.7567,-2.3525],[104.7659,-2.3471]],[[104.6456,-1.9181],[104.6444,-1.9142],[104.6351,-1.9066],[104.6264,-1.8979],[104.6174,-1.8869],[104.6028,-1.8744],[104.5878,-1.8642],[104.5535,-1.8493],[104.5465,-1.8487],[104.5393,-1.8537],[104.5384,-1.8586],[104.5382,-1.8739],[104.5336,-1.883],[104.5293,-1.8965],[104.5244,-1.9077],[104.5235,-1.9159],[104.5199,-1.9202],[104.5081,-1.9231],[104.5024,-1.9353],[104.504,-1.948],[104.5066,-1.9546],[104.5132,-1.9637],[104.5229,-1.9703],[104.5346,-1.9725],[104.5416,-1.9751],[104.547,-1.9815],[104.5582,-1.9857],[104.5731,-1.9934],[104.584,-1.9941],[104.5966,-1.9926],[104.6076,-1.9897],[104.6103,-1.9877],[104.6134,-1.98],[104.6197,-1.9767],[104.6167,-1.9643],[104.6111,-1.9578],[104.6097,-1.9534],[104.6198,-1.9461],[104.6239,-1.941],[104.6282,-1.9327],[104.6436,-1.9253],[104.6456,-1.9181]],[[104.6056,-1.8059],[104.6064,-1.8022],[104.6043,-1.7968],[104.5976,-1.7871],[104.5945,-1.7842],[104.5936,-1.7722],[104.588,-1.7588],[104.5884,-1.7501],[104.5918,-1.7376],[104.5917,-1.7318],[104.5853,-1.7262],[104.5752,-1.7264],[104.57,-1.7283],[104.5674,-1.7317],[104.5646,-1.7401],[104.5624,-1.7518],[104.5611,-1.7667],[104.5541,-1.7834],[104.5485,-1.7984],[104.5493,-1.8054],[104.5609,-1.808],[104.576,-1.807],[104.5974,-1.8114],[104.6028,-1.8097],[104.6056,-1.8059]],[[105.5637,-2.417],[105.5684,-2.4111],[105.5679,-2.4028],[105.5531,-2.3982],[105.5111,-2.3908],[105.4903,-2.3834],[105.4713,-2.3797],[105.4484,-2.3876],[105.4307,-2.3888],[105.4034,-2.387],[105.4001,-2.3824],[105.39,-2.3826],[105.3786,-2.3811],[105.3727,-2.3792],[105.3604,-2.3774],[105.346,-2.378],[105.3378,-2.3764],[105.3322,-2.3737],[105.3227,-2.3747],[105.3148,-2.3743],[105.3038,-2.3714],[105.2972,-2.3718],[105.2921,-2.3679],[105.2856,-2.3652],[105.2762,-2.3662],[105.2761,-2.3616],[105.2669,-2.3579],[105.2627,-2.3543],[105.2521,-2.352],[105.2326,-2.3427],[105.2259,-2.3364],[105.2214,-2.3303],[105.2109,-2.3261],[105.2048,-2.3261],[105.1742,-2.3396],[105.1595,-2.3469],[105.1322,-2.3692],[105.1209,-2.3738],[105.1103,-2.369],[105.1083,-2.3667],[105.1022,-2.3671],[105.0901,-2.3629],[105.081,-2.3617],[105.079,-2.3632],[105.0669,-2.3631],[105.0601,-2.3663],[105.0573,-2.374],[105.0507,-2.3754],[105.0459,-2.3736],[105.0289,-2.3506],[105.0214,-2.3445],[105.0041,-2.3338],[105.0008,-2.335],[104.9907,-2.3336],[104.9827,-2.3336],[104.9632,-2.3313],[104.9541,-2.3323],[104.9263,-2.3408],[104.9329,-2.3664],[104.9321,-2.3819],[104.9343,-2.3937],[104.9334,-2.4054],[104.937,-2.4237],[104.9414,-2.439],[104.9338,-2.44],[104.9312,-2.4358],[104.9251,-2.421],[104.9184,-2.4087],[104.9198,-2.4032],[104.9136,-2.3865],[104.9062,-2.3758],[104.9024,-2.3727],[104.9016,-2.3642],[104.9085,-2.3577],[104.9144,-2.3396],[104.9181,-2.3212],[104.9188,-2.3056],[104.9183,-2.2915],[104.9171,-2.2873],[104.9131,-2.2823],[104.9089,-2.2804],[104.8991,-2.2793],[104.8916,-2.282],[104.8719,-2.2846],[104.8588,-2.2839],[104.8529,-2.2857],[104.8444,-2.2857],[104.8435,-2.2904],[104.8392,-2.2983],[104.8387,-2.3116],[104.8416,-2.3172],[104.843,-2.3289],[104.8397,-2.3359],[104.8243,-2.3547],[104.814,-2.3662],[104.7889,-2.3826],[104.7745,-2.39],[104.7554,-2.391],[104.7521,-2.4004],[104.7532,-2.4062],[104.7523,-2.4119],[104.7555,-2.4273],[104.7573,-2.4546],[104.7559,-2.4708],[104.7503,-2.499],[104.7469,-2.5097],[104.7385,-2.5556],[104.7374,-2.5672],[104.7385,-2.5712],[104.7338,-2.5859],[104.7269,-2.5962],[104.7224,-2.584],[104.7254,-2.5789],[104.727,-2.5617],[104.7235,-2.5436],[104.7202,-2.5319],[104.7215,-2.5218],[104.7234,-2.5157],[104.7315,-2.4995],[104.7395,-2.4777],[104.7431,-2.4657],[104.743,-2.4508],[104.7402,-2.4375],[104.7337,-2.421],[104.7301,-2.4006],[104.73,-2.3799],[104.7233,-2.3739],[104.7123,-2.3695],[104.7097,-2.3594],[104.7072,-2.3544],[104.6995,-2.3522],[104.6969,-2.353],[104.6974,-2.342],[104.709,-2.3414],[104.7255,-2.3512],[104.7387,-2.3572],[104.7473,-2.3552],[104.7515,-2.3439],[104.7626,-2.3237],[104.7766,-2.2922],[104.8123,-2.2619],[104.8309,-2.2468],[104.8341,-2.2503],[104.8412,-2.25],[104.8517,-2.238],[104.8627,-2.2274],[104.8711,-2.2182],[104.8807,-2.2122],[104.8958,-2.2003],[104.905,-2.1893],[104.905,-2.1696],[104.9024,-2.1448],[104.9039,-2.1371],[104.9006,-2.1166],[104.8924,-2.085],[104.8863,-2.067],[104.8784,-2.0484],[104.8746,-2.042],[104.8549,-2.0156],[104.8444,-2.005],[104.8381,-2.0015],[104.8186,-1.9981],[104.8032,-1.9976],[104.787,-1.9942],[104.7648,-1.9912],[104.7458,-1.9904],[104.7336,-1.9887],[104.7172,-1.9883],[104.7143,-1.9896],[104.7087,-1.9962],[104.7007,-1.9976],[104.6934,-2.0016],[104.6915,-2.0055],[104.69,-2.0158],[104.6893,-2.0291],[104.6904,-2.0431],[104.6894,-2.052],[104.6874,-2.055],[104.6773,-2.0584],[104.6729,-2.0574],[104.6658,-2.0515],[104.6587,-2.0514],[104.6467,-2.0531],[104.6375,-2.0568],[104.6343,-2.0598],[104.6328,-2.0667],[104.6349,-2.0728],[104.6417,-2.0868],[104.6375,-2.092],[104.6316,-2.0936],[104.6298,-2.0983],[104.6315,-2.106],[104.6273,-2.1126],[104.623,-2.1144],[104.6068,-2.1141],[104.5955,-2.1054],[104.5988,-2.1014],[104.6091,-2.1084],[104.6174,-2.1094],[104.6245,-2.1087],[104.6241,-2.0987],[104.6253,-2.092],[104.6351,-2.0808],[104.6269,-2.0668],[104.6276,-2.0582],[104.6304,-2.0551],[104.6462,-2.0462],[104.6518,-2.0455],[104.6596,-2.0467],[104.6694,-2.0454],[104.6786,-2.0501],[104.682,-2.0498],[104.6821,-2.043],[104.6726,-2.0195],[104.6716,-2.0105],[104.6729,-2.0044],[104.6768,-1.9997],[104.6831,-1.9961],[104.6869,-1.987],[104.6858,-1.983],[104.67,-1.9718],[104.6615,-1.9602],[104.6573,-1.9592],[104.6484,-1.9611],[104.6407,-1.9648],[104.6294,-1.9726],[104.6266,-1.9845],[104.6163,-1.996],[104.6057,-2.0004],[104.5944,-2.0028],[104.5839,-1.9999],[104.5793,-2.0005],[104.5739,-1.9988],[104.5665,-1.9936],[104.5621,-1.993],[104.5578,-1.9893],[104.5421,-1.9838],[104.5362,-1.9757],[104.5239,-1.9752],[104.5199,-1.9734],[104.5062,-1.9621],[104.4998,-1.9461],[104.4991,-1.9356],[104.4954,-1.9202],[104.4916,-1.9113],[104.4868,-1.9073],[104.4765,-1.9065],[104.4701,-1.9105],[104.4678,-1.9206],[104.4701,-1.9457],[104.4715,-1.9544],[104.4755,-1.9581],[104.4725,-1.9616],[104.4683,-1.9541],[104.4686,-1.9484],[104.4646,-1.93],[104.4663,-1.9148],[104.4648,-1.9064],[104.4659,-1.9004],[104.4686,-1.896],[104.4681,-1.8835],[104.4716,-1.8807],[104.4735,-1.8756],[104.4724,-1.8716],[104.464,-1.8653],[104.466,-1.8563],[104.4701,-1.8534],[104.4743,-1.8472],[104.4797,-1.8456],[104.4857,-1.84],[104.4858,-1.8245],[104.4912,-1.8218],[104.4936,-1.8162],[104.4993,-1.8086],[104.5025,-1.8084],[104.5069,-1.8046],[104.5086,-1.7989],[104.514,-1.8006],[104.5272,-1.7977],[104.5324,-1.7939],[104.5374,-1.7879],[104.5399,-1.7826],[104.5403,-1.7773],[104.5391,-1.7648],[104.5373,-1.7555],[104.5376,-1.7485],[104.5411,-1.7393],[104.5406,-1.7267],[104.5386,-1.718],[104.536,-1.7134],[104.5278,-1.7083],[104.5297,-1.7008],[104.5284,-1.6953],[104.5176,-1.6771],[104.5144,-1.6735],[104.5054,-1.6708],[104.498,-1.6729]]]}},{"type":"Feature","properties":{"mhid":"1332:109","alt_name":"KABUPATEN OGAN KOMERING ULU SELATAN","latitude":-4.65728,"longitude":104.00659,"sample_value":480},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:120","alt_name":"KABUPATEN BENGKULU SELATAN","latitude":-4.35,"longitude":103.03333,"sample_value":867},"geometry":{"type":"MultiLineString","coordinates":[[[102.8001,-4.3599],[102.8029,-4.3636],[102.8055,-4.3717],[102.8149,-4.3803],[102.8157,-4.3827],[102.8235,-4.3878],[102.8262,-4.3912],[102.8491,-4.4073],[102.8528,-4.4115],[102.8711,-4.4278],[102.8866,-4.4442],[102.9,-4.4661],[102.9015,-4.4738],[102.8979,-4.4801],[102.8983,-4.4873],[102.9045,-4.492],[102.9135,-4.4938],[102.9275,-4.4985],[102.943,-4.5021],[102.9542,-4.5055],[102.9771,-4.5107],[103.0042,-4.5201],[103.016,-4.5253],[103.019,-4.5286],[103.0366,-4.5342],[103.0466,-4.5398],[103.0573,-4.5471],[103.0655,-4.5562],[103.0702,-4.5591]]]}},{"type":"Feature","properties":{"mhid":"1332:122","alt_name":"KABUPATEN BENGKULU UTARA","latitude":-3.33333,"longitude":102.05,"sample_value":944},"geometry":{"type":"MultiLineString","coordinates":[[[102.1619,-5.2761],[102.1552,-5.2852],[102.1446,-5.2828],[102.1264,-5.293],[102.1263,-5.3148],[102.148,-5.3363],[102.1826,-5.3524],[102.2354,-5.3741],[102.2548,-5.3842],[102.2554,-5.3836],[102.2941,-5.4026],[102.3185,-5.4113],[102.3272,-5.42],[102.3527,-5.4425],[102.3788,-5.4405],[102.3812,-5.4256],[102.3741,-5.4206],[102.3671,-5.4172],[102.368,-5.4103],[102.3757,-5.408],[102.3807,-5.3883],[102.3759,-5.3697],[102.3545,-5.357],[102.3306,-5.3507],[102.3115,-5.347],[102.3054,-5.3452],[102.2908,-5.3385],[102.2635,-5.3219],[102.2552,-5.3161],[102.238,-5.3124],[102.2087,-5.3037],[102.1866,-5.2885],[102.1619,-5.2761]],[[101.5758,-3.1846],[101.5894,-3.2057],[101.597,-3.2189],[101.6026,-3.2239],[101.6142,-3.238],[101.6257,-3.2486],[101.6476,-3.2647],[101.6623,-3.2735],[101.6691,-3.28],[101.6905,-3.2937],[101.6986,-3.2982],[101.7054,-3.3063],[101.7188,-3.3165],[101.7337,-3.3258],[101.7428,-3.3344],[101.7522,-3.3405],[101.7622,-3.3483],[101.7749,-3.3564],[101.7837,-3.361],[101.8042,-3.3769],[101.8146,-3.3825],[101.8216,-3.3881],[101.8405,-3.3998],[101.8604,-3.41],[101.8827,-3.4225],[101.9021,-3.4327],[101.91,-3.4386],[101.9119,-3.449],[101.923,-3.4575],[101.9259,-3.4612],[101.9222,-3.4731],[101.9259,-3.4787],[101.9538,-3.4916],[101.964,-3.495],[101.9761,-3.5015],[101.9949,-3.5106],[102.0151,-3.522],[102.0315,-3.53],[102.0477,-3.5386],[102.0755,-3.5523],[102.0965,-3.5664],[102.1112,-3.5783],[102.1119,-3.5827],[102.1188,-3.5865],[102.1306,-3.5913],[102.1376,-3.6008],[102.1694,-3.6243],[102.1744,-3.6295],[102.1901,-3.64],[102.2055,-3.6537]]]}},{"type":"Feature","properties":{"mhid":"1332:123","alt_name":"KABUPATEN KAUR","latitude":-4.78179,"longitude":103.36109,"sample_value":413},"geometry":{"type":"MultiLineString","coordinates":[[[103.0702,-4.5591],[103.086,-4.5651],[103.1074,-4.5753],[103.1197,-4.5796],[103.1262,-4.5893],[103.1337,-4.5914],[103.1471,-4.5972],[103.1544,-4.6018],[103.1628,-4.612],[103.1833,-4.6278],[103.1999,-4.6371],[103.204,-4.642],[103.2093,-4.6455],[103.212,-4.6502],[103.2226,-4.6554],[103.2281,-4.6613],[103.2409,-4.6726],[103.2445,-4.6737],[103.2507,-4.6809],[103.2523,-4.6862],[103.2573,-4.6912],[103.2568,-4.6954],[103.2617,-4.6994],[103.2731,-4.7051],[103.2784,-4.7056],[103.2854,-4.7122],[103.2841,-4.7209],[103.2867,-4.7281],[103.2899,-4.7315],[103.295,-4.7403],[103.2994,-4.7444],[103.3033,-4.7454],[103.3112,-4.7504],[103.3171,-4.7572],[103.3207,-4.7663],[103.3205,-4.7709],[103.3114,-4.7782],[103.3114,-4.7855],[103.3222,-4.8018],[103.3276,-4.8077],[103.3351,-4.8112],[103.3448,-4.8122],[103.3469,-4.8109],[103.3472,-4.8027],[103.3512,-4.7991],[103.3574,-4.7966],[103.3661,-4.7961],[103.3759,-4.7987],[103.3821,-4.8024],[103.3825,-4.8053],[103.3887,-4.8111],[103.3936,-4.8117],[103.4025,-4.8171],[103.4075,-4.8299],[103.4119,-4.834],[103.4148,-4.84],[103.4066,-4.8488],[103.4059,-4.8559],[103.4105,-4.8622],[103.4263,-4.8721],[103.4312,-4.8725],[103.4366,-4.8641],[103.4436,-4.8618],[103.4588,-4.8628],[103.471,-4.8653],[103.4805,-4.8703],[103.4974,-4.8738],[103.5089,-4.8802],[103.5198,-4.8852],[103.5276,-4.8927],[103.5278,-4.8973],[103.5337,-4.9078],[103.5354,-4.9156],[103.5443,-4.9163],[103.5484,-4.9208],[103.5563,-4.9209],[103.5617,-4.9259],[103.5773,-4.9238],[103.5811,-4.9222],[103.5914,-4.9228],[103.6116,-4.9244],[103.6186,-4.9266],[103.6236,-4.9267],[103.626,-4.9294],[103.6308,-4.9307],[103.6333,-4.9306],[103.638,-4.9325],[103.6409,-4.9345],[103.6418,-4.937]]]}},{"type":"Feature","properties":{"mhid":"1332:124","alt_name":"KABUPATEN SELUMA","latitude":-3.96644,"longitude":102.47429,"sample_value":273},"geometry":{"type":"MultiLineString","coordinates":[[[102.2691,-3.9237],[102.2778,-3.937],[102.2788,-3.94],[102.2782,-3.95],[102.2768,-3.955],[102.2807,-3.9642],[102.285,-3.9662],[102.2972,-3.9803],[102.3321,-4.0098],[102.3474,-4.0213],[102.3983,-4.0586],[102.4083,-4.0655],[102.4128,-4.0697],[102.4321,-4.0835],[102.4512,-4.0946],[102.4699,-4.1075],[102.4845,-4.1191],[102.4942,-4.1258],[102.509,-4.1374],[102.53,-4.1523],[102.5307,-4.1519],[102.5516,-4.1686],[102.6198,-4.2204],[102.634,-4.2307],[102.6558,-4.2454],[102.6778,-4.2637],[102.6924,-4.2736],[102.7082,-4.2852],[102.7219,-4.2992],[102.7254,-4.3053],[102.7399,-4.3198],[102.7464,-4.3248],[102.767,-4.3354],[102.7742,-4.341],[102.7948,-4.3537],[102.8001,-4.3599]]]}},{"type":"Feature","properties":{"mhid":"1332:125","alt_name":"KABUPATEN MUKOMUKO","latitude":-3.07438,"longitude":101.54766,"sample_value":662},"geometry":{"type":"MultiLineString","coordinates":[[[101.0228,-2.4784],[101.0285,-2.4932],[101.0342,-2.4986],[101.0474,-2.5083],[101.0533,-2.5142],[101.0617,-2.5245],[101.0702,-2.5331],[101.071,-2.5357],[101.0802,-2.5454],[101.0933,-2.5616],[101.1009,-2.573],[101.1092,-2.5827],[101.1149,-2.5958],[101.1277,-2.6109],[101.1371,-2.6231],[101.1422,-2.6284],[101.1633,-2.6429],[101.1801,-2.6523],[101.218,-2.67],[101.2373,-2.6785],[101.2621,-2.692],[101.2896,-2.7095],[101.3045,-2.7218],[101.3205,-2.7376],[101.3229,-2.7407],[101.3246,-2.7485],[101.3243,-2.7548],[101.3306,-2.7635],[101.3411,-2.7811],[101.3453,-2.7897],[101.3624,-2.8306],[101.3717,-2.8502],[101.3772,-2.8656],[101.3913,-2.8992],[101.3976,-2.9121],[101.4038,-2.9273],[101.4158,-2.9428],[101.4362,-2.9653],[101.4535,-2.9837],[101.4781,-3.0109],[101.4803,-3.0143],[101.4865,-3.0308],[101.4889,-3.0405],[101.4881,-3.0527],[101.5058,-3.0697],[101.5149,-3.0803],[101.5255,-3.1014],[101.5244,-3.1067],[101.5205,-3.113],[101.5207,-3.1158],[101.5355,-3.1336],[101.5452,-3.1418],[101.5464,-3.1456],[101.5541,-3.154],[101.5592,-3.164],[101.5758,-3.1846]]]}},{"type":"Feature","properties":{"mhid":"1332:128","alt_name":"KABUPATEN BENGKULU TENGAH","latitude":-3.20679,"longitude":102.12616,"sample_value":485},"geometry":{"type":"MultiLineString","coordinates":[[[102.2055,-3.6537],[102.2139,-3.6593],[102.2226,-3.6673],[102.2289,-3.676],[102.2349,-3.6823],[102.2436,-3.6963],[102.2451,-3.7059],[102.236,-3.7114],[102.233,-3.7155],[102.2375,-3.7224],[102.2455,-3.7308],[102.2501,-3.7384]]]}},{"type":"Feature","properties":{"mhid":"1332:129","alt_name":"KOTA BENGKULU","latitude":-3.81667,"longitude":102.31667,"sample_value":502},"geometry":{"type":"MultiLineString","coordinates":[[[102.2501,-3.7384],[102.2586,-3.7545],[102.2623,-3.7677],[102.2612,-3.7805],[102.2563,-3.7854],[102.2517,-3.7843],[102.2473,-3.787],[102.2476,-3.7926],[102.2537,-3.8015],[102.2674,-3.8138],[102.2723,-3.8193],[102.2781,-3.8295],[102.2873,-3.839],[102.2926,-3.8463],[102.3013,-3.8659],[102.3031,-3.8829],[102.3012,-3.89],[102.2988,-3.8933],[102.2876,-3.9018],[102.2817,-3.9008],[102.2755,-3.897],[102.2724,-3.9057],[102.2656,-3.9121],[102.2651,-3.916],[102.2691,-3.9237]]]}},{"type":"Feature","properties":{"mhid":"1332:146","alt_name":"KABUPATEN BANGKA","latitude":-1.91667,"longitude":105.93333,"sample_value":243},"geometry":{"type":"MultiLineString","coordinates":[[[105.8169,-1.8049],[105.8132,-1.7958],[105.8083,-1.7949],[105.8053,-1.8003],[105.8058,-1.8054],[105.8093,-1.8065],[105.8169,-1.8049]],[[105.7592,-2.1438],[105.759,-2.1509],[105.7712,-2.1581],[105.7747,-2.1576],[105.7809,-2.1605],[105.7899,-2.173],[105.793,-2.1807],[105.7941,-2.1951],[105.7864,-2.2107],[105.7875,-2.2173],[105.7929,-2.2281],[105.7905,-2.2292],[105.786,-2.2364],[105.7862,-2.2428],[105.7884,-2.2538],[105.7961,-2.2633],[105.7988,-2.27],[105.8037,-2.2727],[105.8102,-2.2819],[105.812,-2.2961],[105.8229,-2.3038],[105.8256,-2.3084],[105.8258,-2.3185],[105.8246,-2.3291],[105.8206,-2.3379],[105.8133,-2.3432],[105.8056,-2.3614],[105.8024,-2.3634],[105.806,-2.3701]],[[106.1513,-2.0826],[106.158,-2.088],[106.1623,-2.076],[106.1635,-2.0679],[106.1623,-2.0591],[106.1589,-2.044],[106.1583,-2.0348],[106.1548,-2.026],[106.1554,-2.0206],[106.1501,-1.9942],[106.153,-1.9771],[106.1559,-1.9664],[106.1556,-1.9596],[106.1622,-1.9534],[106.1642,-1.9322],[106.1657,-1.9301],[106.1669,-1.9202],[106.1729,-1.9193],[106.174,-1.9136],[106.1841,-1.9075],[106.186,-1.9028],[106.1858,-1.8956],[106.1759,-1.8873],[106.1722,-1.8738],[106.1624,-1.8704],[106.158,-1.8708],[106.1505,-1.8681],[106.1412,-1.8595],[106.1348,-1.8551],[106.1282,-1.8424],[106.1218,-1.8326],[106.1189,-1.8217],[106.1191,-1.8146],[106.1282,-1.8043],[106.1257,-1.8012],[106.1141,-1.7983],[106.1025,-1.7894],[106.0971,-1.7819],[106.0873,-1.7759],[106.0897,-1.7711],[106.0905,-1.7627],[106.0939,-1.7574],[106.0817,-1.7559],[106.0733,-1.748],[106.0691,-1.7383],[106.0641,-1.7294],[106.0617,-1.717],[106.058,-1.7131],[106.0413,-1.7002],[106.0343,-1.691],[106.0302,-1.6827],[106.024,-1.6666],[106.021,-1.6525],[106.0223,-1.6358],[106.0278,-1.6201],[106.0329,-1.6144],[106.0391,-1.6161],[106.0441,-1.6135],[106.048,-1.6178],[106.053,-1.6197],[106.0516,-1.6063],[106.048,-1.6007],[106.0382,-1.5971],[106.032,-1.5931],[106.0283,-1.5876],[106.0222,-1.587],[106.018,-1.5816],[106.0106,-1.578],[106.0054,-1.5689],[106.0016,-1.5697],[105.9985,-1.5667],[105.988,-1.5623],[105.9862,-1.5572],[105.98,-1.553],[105.9736,-1.5508],[105.9659,-1.5573],[105.9572,-1.5567],[105.9521,-1.5597],[105.9317,-1.552],[105.9217,-1.5458],[105.9174,-1.5417],[105.9113,-1.5386],[105.9095,-1.5335],[105.9126,-1.5229],[105.9203,-1.5219],[105.921,-1.5091],[105.9163,-1.502],[105.9111,-1.5064],[105.8998,-1.5056],[105.8884,-1.5019],[105.8832,-1.5022],[105.8878,-1.5117],[105.8799,-1.5196],[105.8719,-1.5218],[105.8534,-1.5234],[105.8455,-1.5224],[105.8321,-1.5261],[105.826,-1.5289],[105.8147,-1.5315],[105.7933,-1.5325],[105.757,-1.5323],[105.7381,-1.5308],[105.7228,-1.5284],[105.7045,-1.5284],[105.7026,-1.5308],[105.7195,-1.5426],[105.7222,-1.5501],[105.7204,-1.5616],[105.7227,-1.5635],[105.7195,-1.5791],[105.7197,-1.5834],[105.7237,-1.5866],[105.7318,-1.5986],[105.7336,-1.6036],[105.7396,-1.6087],[105.7417,-1.6206],[105.7359,-1.6247],[105.7331,-1.6316],[105.7384,-1.6355],[105.7446,-1.6341],[105.7532,-1.6373],[105.7595,-1.6477],[105.7664,-1.6502],[105.7593,-1.6531],[105.7615,-1.6606],[105.7574,-1.6761],[105.7535,-1.6816],[105.7422,-1.6834],[105.74,-1.6865],[105.7431,-1.6945],[105.7485,-1.6998],[105.7466,-1.7032],[105.7528,-1.7158],[105.7542,-1.7276],[105.7643,-1.7364],[105.7707,-1.7376],[105.7742,-1.7423],[105.779,-1.744],[105.7781,-1.7481],[105.7822,-1.7497],[105.787,-1.7546],[105.7922,-1.7623],[105.7928,-1.7707],[105.7952,-1.7803],[105.7996,-1.7841],[105.8152,-1.79],[105.8261,-1.8033],[105.825,-1.8069],[105.8129,-1.807],[105.8172,-1.8114],[105.8094,-1.8142],[105.8026,-1.8108],[105.8013,-1.8082],[105.7881,-1.8083],[105.7847,-1.8064],[105.7799,-1.7985],[105.7797,-1.7916],[105.7825,-1.7861],[105.7808,-1.7831],[105.779,-1.7735],[105.7758,-1.7682],[105.7707,-1.767],[105.7566,-1.7749],[105.7457,-1.7778],[105.7442,-1.7823]]]}},{"type":"Feature","properties":{"mhid":"1332:147","alt_name":"KABUPATEN BELITUNG","latitude":-2.86667,"longitude":107.7,"sample_value":339},"geometry":{"type":"MultiLineString","coordinates":[[[107.5657,-3.237],[107.5625,-3.2442],[107.5689,-3.2434],[107.5657,-3.237]],[[107.5234,-3.1924],[107.5172,-3.1978],[107.5183,-3.2097],[107.5196,-3.2378],[107.5165,-3.2455],[107.5177,-3.2531],[107.5245,-3.2527],[107.5256,-3.2459],[107.5304,-3.2464],[107.5306,-3.239],[107.5362,-3.2399],[107.5426,-3.2335],[107.5449,-3.2278],[107.5442,-3.2217],[107.5483,-3.215],[107.5515,-3.2016],[107.537,-3.2003],[107.5268,-3.1927],[107.5234,-3.1924]],[[107.8512,-3.1036],[107.8497,-3.0981],[107.8399,-3.1039],[107.8397,-3.1099],[107.8436,-3.1103],[107.848,-3.1162],[107.8512,-3.1232],[107.8562,-3.127],[107.8579,-3.1246],[107.8565,-3.1117],[107.8613,-3.1103],[107.8628,-3.1072],[107.856,-3.101],[107.8512,-3.1036]],[[107.561,-3.0548],[107.5617,-3.0482],[107.5579,-3.04],[107.555,-3.0412],[107.5577,-3.0533],[107.561,-3.0548]],[[107.4995,-3.0257],[107.4943,-3.0308],[107.4904,-3.0274],[107.4873,-3.0312],[107.4874,-3.0458],[107.4938,-3.0524],[107.4987,-3.0486],[107.5035,-3.0412],[107.5043,-3.0355],[107.4995,-3.0257]],[[107.1728,-3.0311],[107.1753,-3.0268],[107.1709,-3.0249],[107.1662,-3.0268],[107.166,-3.032],[107.1728,-3.0311]],[[107.5493,-3.0335],[107.5417,-3.0264],[107.542,-3.0323],[107.5474,-3.0397],[107.5493,-3.0335]],[[107.5085,-3.022],[107.51,-3.0177],[107.5063,-3.0026],[107.4997,-2.9993],[107.4984,-3.0059],[107.5025,-3.0128],[107.5035,-3.0174],[107.5085,-3.022]],[[107.2347,-2.9867],[107.2283,-2.9875],[107.2264,-2.9909],[107.2291,-2.9967],[107.2343,-2.9977],[107.2355,-2.9938],[107.2407,-2.9904],[107.2419,-2.9869],[107.2347,-2.9867]],[[107.1312,-2.9882],[107.1351,-2.9836],[107.1303,-2.9807],[107.1312,-2.9882]],[[107.5079,-2.9861],[107.5037,-2.9724],[107.4995,-2.9711],[107.5018,-2.9874],[107.5037,-2.9913],[107.5028,-2.9975],[107.5094,-2.9972],[107.5073,-2.9911],[107.5079,-2.9861]],[[107.5321,-2.968],[107.5199,-2.9706],[107.5161,-2.9743],[107.5176,-2.984],[107.5193,-2.9873],[107.5188,-2.9962],[107.5258,-3.0053],[107.5297,-2.9981],[107.5297,-2.9945],[107.5336,-2.9861],[107.5314,-2.9784],[107.5321,-2.968]],[[107.5151,-2.9621],[107.5139,-2.9677],[107.5165,-2.9704],[107.53,-2.9666],[107.5223,-2.9621],[107.5151,-2.9621]],[[107.5166,-2.9341],[107.5133,-2.938],[107.5175,-2.9474],[107.5258,-2.9517],[107.5304,-2.947],[107.5274,-2.9392],[107.5193,-2.9338],[107.5166,-2.9341]],[[107.469,-2.9254],[107.4646,-2.9231],[107.4487,-2.9288],[107.4358,-2.9345],[107.4323,-2.9389],[107.4266,-2.9506],[107.4254,-2.955],[107.4284,-2.9601],[107.428,-2.9706],[107.4336,-2.9741],[107.4323,-2.9793],[107.4365,-2.9841],[107.4448,-2.9848],[107.4561,-2.9789],[107.4577,-2.9726],[107.4603,-2.9728],[107.4646,-2.9672],[107.4643,-2.9567],[107.4621,-2.9536],[107.469,-2.9458],[107.4718,-2.9452],[107.469,-2.9254]],[[107.4877,-2.9303],[107.4887,-2.9214],[107.4847,-2.9209],[107.4793,-2.9329],[107.4807,-2.9409],[107.4837,-2.9443],[107.4877,-2.9303]],[[107.5063,-2.8433],[107.5016,-2.843],[107.4986,-2.8496],[107.4946,-2.8506],[107.4935,-2.8545],[107.4869,-2.8613],[107.4831,-2.8634],[107.4874,-2.8725],[107.4908,-2.8766],[107.4943,-2.8759],[107.4969,-2.862],[107.5024,-2.8569],[107.5063,-2.8433]],[[107.4898,-2.8204],[107.4843,-2.8209],[107.4781,-2.8249],[107.4811,-2.838],[107.4867,-2.8443],[107.4935,-2.828],[107.5007,-2.8251],[107.4988,-2.822],[107.4898,-2.8204]],[[107.4643,-2.8216],[107.4581,-2.8201],[107.4556,-2.8269],[107.4468,-2.8284],[107.4378,-2.8257],[107.4282,-2.8257],[107.4204,-2.8274],[107.412,-2.8345],[107.3999,-2.8377],[107.3949,-2.8442],[107.3882,-2.8495],[107.3807,-2.8476],[107.378,-2.8551],[107.371,-2.8643],[107.378,-2.876],[107.3765,-2.8824],[107.3689,-2.8847],[107.3647,-2.8807],[107.3564,-2.878],[107.3484,-2.8774],[107.3387,-2.8807],[107.3404,-2.8849],[107.3467,-2.8877],[107.3551,-2.8881],[107.355,-2.8935],[107.3574,-2.8987],[107.365,-2.9078],[107.3713,-2.9098],[107.3807,-2.9165],[107.3832,-2.9163],[107.3895,-2.9244],[107.3932,-2.9315],[107.3974,-2.9329],[107.4058,-2.9417],[107.4137,-2.9445],[107.4208,-2.9365],[107.4227,-2.9312],[107.4154,-2.9253],[107.4111,-2.9243],[107.4103,-2.9195],[107.4172,-2.9185],[107.4172,-2.9258],[107.4293,-2.9298],[107.4305,-2.9255],[107.4356,-2.9207],[107.4393,-2.9221],[107.4467,-2.9171],[107.455,-2.9159],[107.4635,-2.9121],[107.4686,-2.9081],[107.4718,-2.9006],[107.472,-2.8963],[107.4763,-2.8901],[107.4759,-2.8845],[107.4731,-2.8797],[107.4753,-2.8746],[107.4772,-2.8594],[107.4858,-2.8519],[107.4855,-2.8476],[107.4796,-2.8469],[107.479,-2.8424],[107.4756,-2.8386],[107.4721,-2.8256],[107.4683,-2.8217],[107.4643,-2.8216]],[[107.4168,-2.7911],[107.4039,-2.7971],[107.3978,-2.7963],[107.3872,-2.7975],[107.3823,-2.8009],[107.3888,-2.805],[107.3944,-2.804],[107.3991,-2.8052],[107.4021,-2.8095],[107.3985,-2.8178],[107.3917,-2.816],[107.3795,-2.8166],[107.372,-2.8194],[107.3712,-2.8231],[107.3813,-2.8264],[107.3909,-2.8327],[107.4007,-2.834],[107.4118,-2.8291],[107.4128,-2.8276],[107.4325,-2.82],[107.4355,-2.816],[107.43,-2.8051],[107.4247,-2.8047],[107.4213,-2.7995],[107.4218,-2.7954],[107.4168,-2.7911]],[[107.8621,-2.5399],[107.8598,-2.538],[107.8552,-2.5429],[107.8574,-2.548],[107.8644,-2.5488],[107.8704,-2.5443],[107.8706,-2.5393],[107.8621,-2.5399]],[[107.9379,-2.5698],[107.938,-2.5661],[107.9294,-2.5651],[107.9286,-2.5608],[107.9234,-2.5608],[107.9204,-2.5644],[107.9204,-2.5713],[107.9148,-2.571],[107.908,-2.5755],[107.9029,-2.5747],[107.8964,-2.567],[107.8837,-2.5675],[107.8687,-2.5598],[107.8588,-2.5578],[107.8518,-2.558],[107.8422,-2.5554],[107.8385,-2.5561],[107.8281,-2.55],[107.8258,-2.5434],[107.8268,-2.5397],[107.8325,-2.5371],[107.8334,-2.5317],[107.8154,-2.5288],[107.8126,-2.5351],[107.8044,-2.5406],[107.7968,-2.5436],[107.7961,-2.5457],[107.7839,-2.5488],[107.7788,-2.549],[107.7767,-2.552],[107.7639,-2.5572],[107.7498,-2.5575],[107.7403,-2.5558],[107.7329,-2.5568],[107.7274,-2.555],[107.7287,-2.5513],[107.7202,-2.5477],[107.7132,-2.5501],[107.7046,-2.5589],[107.6978,-2.5615],[107.6928,-2.561],[107.6879,-2.5641],[107.6762,-2.5631],[107.6674,-2.5559],[107.6642,-2.5582],[107.658,-2.559],[107.6584,-2.5619],[107.6551,-2.5678],[107.652,-2.568],[107.6513,-2.5748],[107.6482,-2.5786],[107.6437,-2.5881],[107.6363,-2.593],[107.6284,-2.5947],[107.6278,-2.6051],[107.633,-2.6058],[107.6409,-2.6151],[107.6451,-2.6183],[107.6455,-2.6279],[107.64,-2.6345],[107.6424,-2.6399],[107.6405,-2.6447],[107.6364,-2.6479],[107.631,-2.6488],[107.6308,-2.6574],[107.6284,-2.6651],[107.6308,-2.6722],[107.6296,-2.6772],[107.6255,-2.6839],[107.6253,-2.689],[107.6213,-2.6895],[107.6179,-2.6944],[107.6132,-2.7065],[107.6221,-2.7064],[107.6244,-2.7084],[107.6288,-2.7168],[107.6293,-2.7233],[107.6259,-2.7379],[107.6258,-2.7444],[107.6323,-2.7441],[107.6413,-2.7469],[107.6269,-2.7508],[107.6257,-2.7546],[107.6102,-2.7647],[107.6144,-2.769],[107.609,-2.7727],[107.6019,-2.7798],[107.596,-2.7881],[107.5966,-2.7927],[107.5875,-2.7917],[107.5811,-2.7966],[107.5836,-2.7991],[107.5923,-2.8016],[107.5988,-2.8147],[107.5996,-2.826],[107.5975,-2.8349],[107.5944,-2.8356],[107.5967,-2.844],[107.5961,-2.8535],[107.5977,-2.8583],[107.5888,-2.8705],[107.5833,-2.8752],[107.5759,-2.8838],[107.5657,-2.8902],[107.5487,-2.8981],[107.5469,-2.9022],[107.537,-2.9138],[107.5286,-2.921],[107.5327,-2.9343],[107.5383,-2.9324],[107.5472,-2.9345],[107.5507,-2.9284],[107.5596,-2.9248],[107.5667,-2.9263],[107.5745,-2.9186],[107.5874,-2.912],[107.615,-2.9128],[107.6087,-2.9284],[107.6052,-2.9281],[107.6002,-2.932],[107.5987,-2.9406],[107.5948,-2.9499],[107.598,-2.9556],[107.5912,-2.9622],[107.5905,-2.9688],[107.5857,-2.9784],[107.5807,-2.984],[107.5685,-2.9836],[107.5644,-2.9886],[107.5607,-2.9966],[107.5608,-3.0002],[107.5648,-3.0043],[107.566,-3.0098],[107.5651,-3.0147],[107.568,-3.0186],[107.5688,-3.0305],[107.5772,-3.0444],[107.5804,-3.0458],[107.5801,-3.0503],[107.585,-3.0708],[107.583,-3.0769],[107.5825,-3.0857],[107.5868,-3.0912],[107.5923,-3.095],[107.5932,-3.1033],[107.5986,-3.1074],[107.606,-3.1061],[107.6109,-3.117],[107.6197,-3.1224],[107.6224,-3.1279],[107.6268,-3.1289],[107.6269,-3.1391],[107.6298,-3.1446],[107.627,-3.1517],[107.6129,-3.1674],[107.6068,-3.1731],[107.6048,-3.1809],[107.5921,-3.1969],[107.5883,-3.1985],[107.5856,-3.2036],[107.5923,-3.2105],[107.5959,-3.2179],[107.5957,-3.2239],[107.6006,-3.226],[107.608,-3.2321],[107.6079,-3.2385],[107.6157,-3.2377],[107.6236,-3.234],[107.632,-3.2355],[107.6361,-3.2387],[107.6451,-3.2324],[107.656,-3.2284],[107.6603,-3.2202],[107.6689,-3.2106],[107.6743,-3.2072],[107.6827,-3.2038],[107.6887,-3.204],[107.6973,-3.1974],[107.7087,-3.1926],[107.7162,-3.191],[107.7294,-3.1905],[107.7404,-3.1916],[107.7436,-3.195],[107.7499,-3.1923],[107.7569,-3.1941],[107.7593,-3.192],[107.7665,-3.1918],[107.7681,-3.1876],[107.7754,-3.1824],[107.7795,-3.1835],[107.7826,-3.1788],[107.7876,-3.1749],[107.7962,-3.177],[107.8003,-3.175],[107.8127,-3.1659],[107.8203,-3.1656],[107.8283,-3.1674],[107.8354,-3.1583],[107.8328,-3.1496],[107.8336,-3.1383],[107.8396,-3.1372],[107.8367,-3.1294],[107.8411,-3.1238],[107.8489,-3.122],[107.8457,-3.114],[107.8428,-3.1122],[107.8328,-3.1105],[107.8333,-3.1027],[107.8294,-3.1023],[107.8225,-3.093],[107.8165,-3.0904],[107.8161,-3.0846],[107.8226,-3.0817],[107.8385,-3.069],[107.8444,-3.061],[107.8488,-3.0574],[107.8488,-3.0529]]]}},{"type":"Feature","properties":{"mhid":"1332:148","alt_name":"KABUPATEN BANGKA BARAT","latitude":-1.95839,"longitude":105.53741,"sample_value":876},"geometry":{"type":"MultiLineString","coordinates":[[[105.7442,-1.7823],[105.7378,-1.7837],[105.7327,-1.7829],[105.7182,-1.7841],[105.7029,-1.783],[105.6944,-1.7814],[105.6836,-1.769],[105.6724,-1.7642],[105.6684,-1.7612],[105.6662,-1.7552],[105.6629,-1.7511],[105.661,-1.7454],[105.6545,-1.7452],[105.6546,-1.7402],[105.6579,-1.7364],[105.657,-1.7313],[105.6528,-1.7259],[105.651,-1.7164],[105.6534,-1.7132],[105.6599,-1.7144],[105.6691,-1.7003],[105.6809,-1.6911],[105.6827,-1.6873],[105.6968,-1.6768],[105.7015,-1.6686],[105.7054,-1.6642],[105.7123,-1.6604],[105.7179,-1.6495],[105.719,-1.6441],[105.7038,-1.6512],[105.6976,-1.653],[105.6722,-1.6544],[105.6521,-1.6506],[105.6491,-1.6463],[105.6397,-1.6414],[105.6365,-1.6322],[105.6286,-1.6275],[105.6288,-1.6222],[105.6218,-1.611],[105.622,-1.5986],[105.6189,-1.5938],[105.6201,-1.589],[105.6175,-1.5842],[105.6125,-1.5798],[105.6147,-1.5742],[105.6113,-1.5715],[105.6098,-1.5622],[105.6024,-1.5556],[105.5999,-1.5442],[105.604,-1.5342],[105.6038,-1.5294],[105.599,-1.5272],[105.5941,-1.5279],[105.5885,-1.5326],[105.5815,-1.5346],[105.5758,-1.5347],[105.5654,-1.5311],[105.5613,-1.5322],[105.5636,-1.537],[105.5632,-1.5448],[105.5548,-1.5558],[105.5356,-1.5648],[105.5219,-1.567],[105.5034,-1.5635],[105.4988,-1.5602],[105.4928,-1.5642],[105.4837,-1.5641],[105.4685,-1.5608],[105.4655,-1.565],[105.461,-1.5632],[105.4557,-1.5703],[105.4575,-1.5724],[105.4494,-1.5796],[105.4486,-1.5825],[105.4354,-1.5955],[105.4299,-1.5978],[105.4245,-1.6047],[105.4196,-1.6071],[105.3979,-1.6092],[105.3932,-1.6057],[105.389,-1.6066],[105.393,-1.612],[105.3902,-1.6221],[105.3925,-1.6261],[105.3892,-1.6355],[105.3827,-1.6421],[105.3675,-1.6468],[105.3579,-1.6522],[105.3502,-1.6477],[105.3449,-1.6475],[105.3437,-1.6525],[105.3467,-1.6564],[105.3409,-1.6579],[105.3395,-1.6651],[105.3437,-1.6708],[105.3488,-1.6724],[105.3547,-1.6717],[105.3598,-1.6741],[105.3596,-1.6814],[105.3568,-1.6861],[105.3505,-1.6863],[105.345,-1.6933],[105.3278,-1.699],[105.3334,-1.7014],[105.3362,-1.7049],[105.34,-1.7006],[105.3502,-1.7077],[105.3537,-1.7122],[105.3727,-1.718],[105.3801,-1.7246],[105.3872,-1.7347],[105.3872,-1.7443],[105.39,-1.7517],[105.3981,-1.763],[105.3972,-1.7723],[105.3946,-1.7813],[105.3885,-1.7968],[105.3819,-1.807],[105.3687,-1.8247],[105.3616,-1.8313],[105.3347,-1.8529],[105.3253,-1.8582],[105.3212,-1.8623],[105.3041,-1.8704],[105.296,-1.8727],[105.285,-1.8825],[105.2642,-1.8959],[105.2514,-1.8992],[105.2411,-1.8996],[105.2301,-1.9084],[105.2221,-1.9129],[105.2086,-1.9168],[105.1947,-1.9181],[105.1906,-1.9171],[105.1814,-1.9243],[105.162,-1.9293],[105.1522,-1.9476],[105.1491,-1.9497],[105.1249,-1.9589],[105.125,-1.9656],[105.1294,-1.9685],[105.1329,-1.9754],[105.1295,-1.9853],[105.1272,-1.9881],[105.1266,-1.9973],[105.1166,-2.0093],[105.1081,-2.0238],[105.1208,-2.0358],[105.1211,-2.0444],[105.1233,-2.0498],[105.1255,-2.0602],[105.1247,-2.0708],[105.1316,-2.0856],[105.1413,-2.0772],[105.1509,-2.0714],[105.1559,-2.0703],[105.162,-2.072],[105.1693,-2.0701],[105.1785,-2.0751],[105.1927,-2.0725],[105.1954,-2.0732],[105.2167,-2.0668],[105.2287,-2.0662],[105.2477,-2.0756],[105.2576,-2.0858],[105.2587,-2.091],[105.2633,-2.0958],[105.2635,-2.0986],[105.2696,-2.1103],[105.2763,-2.1187],[105.2792,-2.1264],[105.2836,-2.1309],[105.2887,-2.1402],[105.293,-2.1507],[105.3029,-2.1535],[105.307,-2.1487],[105.314,-2.137],[105.3293,-2.1254],[105.3376,-2.1262],[105.3418,-2.1281],[105.3457,-2.1232],[105.3558,-2.1194],[105.3699,-2.123],[105.3725,-2.1251],[105.3837,-2.1299],[105.3964,-2.1261],[105.4066,-2.1205],[105.4189,-2.1182],[105.4304,-2.1239],[105.4364,-2.1334],[105.4441,-2.129],[105.4467,-2.125],[105.4583,-2.1138],[105.4657,-2.1082],[105.47,-2.1036],[105.4853,-2.0947],[105.5007,-2.0874],[105.5128,-2.0834],[105.5166,-2.0856],[105.5251,-2.0871],[105.5343,-2.0814],[105.5471,-2.0866],[105.5474,-2.0849],[105.572,-2.094],[105.5798,-2.0993],[105.5839,-2.1067],[105.5882,-2.1117],[105.5874,-2.118],[105.5901,-2.1227],[105.6232,-2.1184],[105.6338,-2.1196],[105.646,-2.1167],[105.6492,-2.1188],[105.6555,-2.1181],[105.6657,-2.1243],[105.6734,-2.1235],[105.6803,-2.1297],[105.6914,-2.1262],[105.7002,-2.1277],[105.7036,-2.1255],[105.719,-2.125],[105.7324,-2.128],[105.7432,-2.1337],[105.7513,-2.1409],[105.7592,-2.1438]]]}},{"type":"Feature","properties":{"mhid":"1332:149","alt_name":"KABUPATEN BANGKA TENGAH","latitude":-2.33989,"longitude":106.1142,"sample_value":576},"geometry":{"type":"MultiLineString","coordinates":[[[105.7897,-2.4003],[105.7854,-2.3985],[105.7824,-2.4015],[105.786,-2.4045],[105.7882,-2.4171],[105.7907,-2.4182],[105.801,-2.4165],[105.8026,-2.406],[105.7958,-2.4014],[105.7897,-2.4003]],[[106.2751,-2.1494],[106.2697,-2.1498],[106.2663,-2.1531],[106.2666,-2.1567],[106.2719,-2.1593],[106.2789,-2.1526],[106.2751,-2.1494]],[[105.806,-2.3701],[105.8184,-2.381],[105.8267,-2.3934],[105.8332,-2.411],[105.8383,-2.4152],[105.8507,-2.4193],[105.8617,-2.4243],[105.8685,-2.4284],[105.8743,-2.4291],[105.8786,-2.4244],[105.8808,-2.4277],[105.8978,-2.4359],[105.9128,-2.4444],[105.9197,-2.4513],[105.9207,-2.4543],[105.927,-2.4593],[105.9282,-2.4638],[105.9329,-2.47]],[[106.6615,-2.7158],[106.6631,-2.7148],[106.6707,-2.7031],[106.6741,-2.6936],[106.6841,-2.6792],[106.6897,-2.6683],[106.6985,-2.662],[106.6994,-2.6566],[106.7044,-2.6495],[106.7086,-2.6464],[106.7077,-2.6434],[106.7137,-2.638],[106.7207,-2.6341],[106.7232,-2.6307],[106.7275,-2.6298],[106.7335,-2.6212],[106.7468,-2.6084],[106.7612,-2.5989],[106.7648,-2.5985],[106.7731,-2.6077],[106.7766,-2.6022],[106.7847,-2.5937],[106.7883,-2.5872],[106.8036,-2.5801],[106.8122,-2.578],[106.8182,-2.5785],[106.8232,-2.5838],[106.8243,-2.5882],[106.8332,-2.5886],[106.8376,-2.5874],[106.8431,-2.5814],[106.8424,-2.5718],[106.8359,-2.5713],[106.8152,-2.5669],[106.7763,-2.5605],[106.7668,-2.5583],[106.7551,-2.5568],[106.7144,-2.5472],[106.6983,-2.5423],[106.666,-2.5377],[106.6436,-2.5354],[106.5834,-2.524],[106.5654,-2.5202],[106.5425,-2.5133],[106.518,-2.5079],[106.4984,-2.5042],[106.4792,-2.4969],[106.4627,-2.4835],[106.4453,-2.4728],[106.4365,-2.4775],[106.4221,-2.4804],[106.4134,-2.4799],[106.405,-2.4773],[106.4011,-2.4787],[106.3936,-2.478],[106.3768,-2.4742],[106.3559,-2.4656],[106.3412,-2.4568],[106.3273,-2.4446],[106.3193,-2.435],[106.3126,-2.4294],[106.3067,-2.422],[106.3016,-2.4227],[106.2914,-2.4101],[106.2795,-2.3917],[106.2591,-2.3543],[106.2515,-2.344],[106.2459,-2.3383],[106.2396,-2.3297],[106.2361,-2.3228],[106.2351,-2.3174],[106.2322,-2.3152],[106.2315,-2.308],[106.2262,-2.2999],[106.2253,-2.2915],[106.2256,-2.278],[106.2225,-2.2692],[106.2245,-2.2634],[106.2282,-2.2602],[106.2238,-2.2524],[106.2144,-2.2429],[106.2118,-2.233],[106.2062,-2.2224],[106.2056,-2.2028],[106.2038,-2.1963],[106.1994,-2.1899],[106.1984,-2.1852],[106.192,-2.1791],[106.1885,-2.1698],[106.1927,-2.1633],[106.1847,-2.1613],[106.1807,-2.1539],[106.1743,-2.155]]]}},{"type":"Feature","properties":{"mhid":"1332:150","alt_name":"KABUPATEN BANGKA SELATAN","latitude":-2.66803,"longitude":106.01257,"sample_value":72},"geometry":{"type":"MultiLineString","coordinates":[[[106.6989,-2.9784],[106.6943,-2.9878],[106.6976,-2.9939],[106.7027,-2.9954],[106.7092,-2.9931],[106.7134,-2.982],[106.709,-2.9792],[106.6989,-2.9784]],[[106.6955,-2.9606],[106.6917,-2.9596],[106.6895,-2.9631],[106.6915,-2.9663],[106.6959,-2.9645],[106.6955,-2.9606]],[[106.6737,-2.9586],[106.6665,-2.9599],[106.6714,-2.9678],[106.678,-2.9681],[106.679,-2.9623],[106.6737,-2.9586]],[[106.8215,-2.8966],[106.8099,-2.8879],[106.8039,-2.8863],[106.7981,-2.8888],[106.7913,-2.897],[106.7884,-2.9054],[106.7779,-2.9093],[106.7698,-2.9083],[106.7653,-2.9158],[106.7471,-2.9245],[106.7325,-2.9254],[106.7299,-2.9285],[106.7319,-2.9371],[106.7296,-2.9448],[106.7243,-2.9477],[106.7241,-2.9543],[106.7177,-2.9594],[106.7115,-2.9622],[106.7095,-2.9671],[106.7136,-2.9699],[106.7179,-2.9698],[106.7247,-2.9751],[106.7281,-2.9758],[106.7463,-2.9853],[106.7572,-2.9889],[106.7677,-2.9954],[106.775,-2.9983],[106.7814,-3.0057],[106.786,-3.0087],[106.791,-3.0179],[106.8012,-3.0203],[106.8076,-3.025],[106.8113,-3.0232],[106.8165,-3.0241],[106.8234,-3.0317],[106.8299,-3.0286],[106.8376,-3.03],[106.8416,-3.0289],[106.8486,-3.0301],[106.8564,-3.039],[106.8615,-3.035],[106.8685,-3.0315],[106.8718,-3.033],[106.8917,-3.0288],[106.8808,-3.0215],[106.8803,-3.0068],[106.8886,-2.9929],[106.8948,-2.9866],[106.8958,-2.9831],[106.9058,-2.9678],[106.9103,-2.9507],[106.9104,-2.9443],[106.9062,-2.9416],[106.9001,-2.9349],[106.8939,-2.9304],[106.877,-2.9304],[106.8678,-2.9262],[106.859,-2.9245],[106.8473,-2.919],[106.8406,-2.9147],[106.8328,-2.9061],[106.8339,-2.9036],[106.8215,-2.8966]],[[106.7688,-2.8835],[106.7602,-2.8862],[106.7609,-2.8955],[106.7648,-2.8975],[106.7694,-2.896],[106.7765,-2.8889],[106.777,-2.8846],[106.7688,-2.8835]],[[106.7365,-2.8674],[106.7334,-2.8719],[106.7351,-2.8795],[106.731,-2.8842],[106.7209,-2.8881],[106.7182,-2.8933],[106.7213,-2.9023],[106.7274,-2.9046],[106.7348,-2.9042],[106.7441,-2.8926],[106.7488,-2.8816],[106.7452,-2.8764],[106.7401,-2.8761],[106.7399,-2.8707],[106.7365,-2.8674]],[[106.8439,-2.844],[106.8365,-2.843],[106.8317,-2.8459],[106.8289,-2.8502],[106.8324,-2.8533],[106.8407,-2.8552],[106.843,-2.8578],[106.8511,-2.8593],[106.8543,-2.858],[106.8535,-2.8509],[106.8547,-2.846],[106.8526,-2.8432],[106.8439,-2.844]],[[106.7966,-2.8378],[106.7877,-2.833],[106.7814,-2.8432],[106.7887,-2.8417],[106.799,-2.8424],[106.7966,-2.8378]],[[107.061,-2.8389],[107.0649,-2.8297],[107.0613,-2.8216],[107.0555,-2.8195],[107.0487,-2.8279],[107.0462,-2.8379],[107.0409,-2.8395],[107.0382,-2.8449],[107.0386,-2.8507],[107.0311,-2.8548],[107.0294,-2.8598],[107.0294,-2.8664],[107.0259,-2.8683],[107.0249,-2.8743],[107.0195,-2.8776],[107.023,-2.8831],[107.0327,-2.8862],[107.0378,-2.8952],[107.0432,-2.9014],[107.05,-2.9047],[107.0528,-2.908],[107.0574,-2.9093],[107.0667,-2.9079],[107.0796,-2.9084],[107.0842,-2.9118],[107.0866,-2.9103],[107.0856,-2.902],[107.087,-2.8932],[107.0903,-2.8836],[107.0933,-2.8817],[107.0946,-2.8703],[107.0916,-2.863],[107.0904,-2.8564],[107.0738,-2.8409],[107.0625,-2.8414],[107.061,-2.8389]],[[105.9329,-2.47],[105.9329,-2.4744],[105.9355,-2.4807],[105.9363,-2.4899],[105.9387,-2.4954],[105.9358,-2.5066],[105.9366,-2.512],[105.9346,-2.5234],[105.9382,-2.5307],[105.9301,-2.5354],[105.926,-2.541],[105.9169,-2.5453],[105.9134,-2.556],[105.9121,-2.564],[105.9038,-2.582],[105.898,-2.589],[105.8913,-2.5879],[105.8914,-2.5937],[105.8987,-2.6048],[105.8972,-2.614],[105.8874,-2.6384],[105.8869,-2.6446],[105.8918,-2.6469],[105.898,-2.6605],[105.9005,-2.6608],[105.9028,-2.6671],[105.903,-2.683],[105.9055,-2.6874],[105.9072,-2.6984],[105.9117,-2.7026],[105.9157,-2.7099],[105.9195,-2.724],[105.9169,-2.7291],[105.9183,-2.7412],[105.9266,-2.7528],[105.9285,-2.754],[105.933,-2.7636],[105.9489,-2.7756],[105.9534,-2.7825],[105.9556,-2.792],[105.9496,-2.8087],[105.9502,-2.8211],[105.9538,-2.8212],[105.9637,-2.816],[105.9691,-2.8148],[105.9777,-2.8155],[105.9941,-2.822],[106.0096,-2.8256],[106.02,-2.8269],[106.0318,-2.8324],[106.0369,-2.8332],[106.0473,-2.831],[106.0597,-2.8305],[106.0715,-2.8343],[106.0818,-2.835],[106.0983,-2.8392],[106.1203,-2.8495],[106.1287,-2.8559],[106.1366,-2.8638],[106.1409,-2.8745],[106.1539,-2.8743],[106.1626,-2.8725],[106.1813,-2.8715],[106.1867,-2.8739],[106.1952,-2.8757],[106.1984,-2.8803],[106.2101,-2.8829],[106.218,-2.8861],[106.2243,-2.8907],[106.2319,-2.8991],[106.238,-2.9013],[106.2434,-2.8988],[106.2629,-2.8995],[106.2797,-2.9032],[106.2877,-2.9074],[106.2953,-2.9164],[106.3011,-2.9206],[106.3098,-2.9244],[106.3207,-2.9328],[106.3276,-2.9436],[106.3312,-2.9538],[106.3293,-2.959],[106.33,-2.9638],[106.3375,-2.9673],[106.3465,-2.9676],[106.3524,-2.9707],[106.3737,-2.9684],[106.3777,-2.9709],[106.3851,-2.9724],[106.3864,-2.9668],[106.4055,-2.9664],[106.417,-2.9684],[106.428,-2.9738],[106.4377,-2.9864],[106.4391,-2.9938],[106.4428,-3.0004],[106.445,-3.0117],[106.4485,-3.0152],[106.4544,-3.0171],[106.4631,-3.0221],[106.4752,-3.0308],[106.4827,-3.0379],[106.4935,-3.053],[106.4936,-3.0562],[106.4975,-3.0615],[106.4992,-3.069],[106.4979,-3.0767],[106.495,-3.0786],[106.4962,-3.0831],[106.4912,-3.0878],[106.4921,-3.0927],[106.4959,-3.0975],[106.5002,-3.0995],[106.5021,-3.1047],[106.5096,-3.1073],[106.5114,-3.1124],[106.5194,-3.1122],[106.5356,-3.1022],[106.5397,-3.1011],[106.5459,-3.1029],[106.5457,-3.1067],[106.5508,-3.1096],[106.5544,-3.1061],[106.5513,-3.1016],[106.5504,-3.0963],[106.5539,-3.0921],[106.5661,-3.0835],[106.5785,-3.0786],[106.588,-3.0773],[106.5981,-3.0777],[106.6058,-3.0841],[106.6165,-3.0866],[106.6287,-3.0817],[106.6369,-3.0815],[106.6456,-3.0833],[106.6523,-3.0861],[106.6568,-3.0916],[106.6579,-3.1014],[106.664,-3.1011],[106.676,-3.093],[106.6861,-3.0895],[106.6917,-3.0925],[106.7004,-3.0943],[106.7052,-3.0978],[106.7143,-3.0869],[106.7201,-3.083],[106.7283,-3.0816],[106.7292,-3.0833],[106.739,-3.0859],[106.7366,-3.0778],[106.7329,-3.0735],[106.7343,-3.0683],[106.7394,-3.0633],[106.7433,-3.0565],[106.7355,-3.0498],[106.7293,-3.0321],[106.7338,-3.0245],[106.7445,-3.0131],[106.7425,-3.0082],[106.7389,-3.005],[106.735,-3.0058],[106.7072,-3.0053],[106.6948,-3.003],[106.6905,-3],[106.681,-2.9895],[106.6775,-2.9839],[106.676,-2.9756],[106.6682,-2.9782],[106.6613,-2.9779],[106.6535,-2.9755],[106.6361,-2.9739],[106.6293,-2.9704],[106.6286,-2.9634],[106.6211,-2.9609],[106.6182,-2.9651],[106.6144,-2.965],[106.6039,-2.9595],[106.5993,-2.9548],[106.5948,-2.9476],[106.5915,-2.9339],[106.5907,-2.917],[106.5929,-2.9001],[106.5951,-2.8906],[106.6007,-2.8763],[106.6002,-2.8694],[106.6023,-2.8623],[106.6178,-2.834],[106.6232,-2.8159],[106.6315,-2.7924],[106.6345,-2.7865],[106.6414,-2.7676],[106.6466,-2.7585],[106.6459,-2.7547],[106.6524,-2.7427],[106.6566,-2.7316],[106.6615,-2.7158]]]}},{"type":"Feature","properties":{"mhid":"1332:151","alt_name":"KABUPATEN BELITUNG TIMUR","latitude":-2.9627,"longitude":108.15216,"sample_value":548},"geometry":{"type":"MultiLineString","coordinates":[[[108.4441,-3.3278],[108.4407,-3.324],[108.438,-3.3305],[108.4427,-3.3398],[108.446,-3.3398],[108.447,-3.3322],[108.4441,-3.3278]],[[108.4139,-3.312],[108.4156,-3.3058],[108.4135,-3.3014],[108.4088,-3.3072],[108.4061,-3.3139],[108.4104,-3.3161],[108.4139,-3.312]],[[108.3953,-3.2918],[108.397,-3.2857],[108.3915,-3.2851],[108.3801,-3.2998],[108.3814,-3.303],[108.3867,-3.3046],[108.3928,-3.3009],[108.3953,-3.2918]],[[108.3876,-3.2426],[108.3837,-3.239],[108.3742,-3.2456],[108.3734,-3.2497],[108.3778,-3.2587],[108.382,-3.262],[108.389,-3.2588],[108.3928,-3.2531],[108.389,-3.2483],[108.3876,-3.2426]],[[108.3953,-3.2419],[108.3909,-3.2379],[108.3893,-3.2465],[108.3935,-3.247],[108.3953,-3.2419]],[[108.2017,-3.2196],[108.1938,-3.2196],[108.1874,-3.2257],[108.1926,-3.2295],[108.198,-3.228],[108.2017,-3.2196]],[[108.2868,-3.208],[108.2827,-3.2081],[108.2758,-3.2125],[108.2736,-3.221],[108.2769,-3.2252],[108.2812,-3.2247],[108.2869,-3.2189],[108.2893,-3.2102],[108.2868,-3.208]],[[108.2062,-3.1989],[108.1972,-3.2024],[108.1861,-3.2112],[108.1893,-3.2139],[108.1958,-3.2092],[108.2002,-3.2079],[108.2067,-3.2021],[108.2062,-3.1989]],[[108.2064,-3.1699],[108.1969,-3.1736],[108.1978,-3.1765],[108.2045,-3.1773],[108.2088,-3.1753],[108.2064,-3.1699]],[[108.1909,-3.1663],[108.1855,-3.1667],[108.1785,-3.1751],[108.1786,-3.1787],[108.1834,-3.1794],[108.1872,-3.1751],[108.1953,-3.1698],[108.1909,-3.1663]],[[108.2163,-3.1426],[108.2125,-3.1437],[108.2107,-3.1494],[108.2169,-3.1489],[108.2163,-3.1426]],[[107.8921,-3.128],[107.8937,-3.1246],[107.8926,-3.1186],[107.8874,-3.1224],[107.8921,-3.128]],[[108.2984,-3.0589],[108.2973,-3.0683],[108.3013,-3.0665],[108.301,-3.0591],[108.2984,-3.0589]],[[108.2545,-3.0453],[108.2432,-3.0494],[108.2413,-3.0556],[108.2348,-3.0644],[108.2384,-3.074],[108.2452,-3.0775],[108.2535,-3.0679],[108.2554,-3.0587],[108.2663,-3.0584],[108.2728,-3.0543],[108.2685,-3.0491],[108.2603,-3.0455],[108.2545,-3.0453]],[[108.4142,-2.7859],[108.4119,-2.7876],[108.4154,-2.7938],[108.42,-2.7923],[108.4142,-2.7859]],[[108.417,-2.6825],[108.4128,-2.6815],[108.4121,-2.6866],[108.4185,-2.693],[108.4213,-2.6869],[108.417,-2.6825]],[[108.0267,-2.6514],[108.0214,-2.6535]],[[108.0214,-2.6535],[108.0213,-2.6535],[108.0213,-2.6536]],[[108.0213,-2.6536],[108.0192,-2.6656],[108.0249,-2.6608],[108.0289,-2.6548],[108.0267,-2.6514]],[[108.4929,-2.6279],[108.4924,-2.6329],[108.4958,-2.6384],[108.4991,-2.6344],[108.4929,-2.6279]],[[108.7297,-2.5819],[108.7271,-2.5822],[108.726,-2.5885],[108.7275,-2.5931],[108.7332,-2.5983],[108.7408,-2.5975],[108.7423,-2.5945],[108.7324,-2.582],[108.7297,-2.5819]],[[107.8488,-3.0529],[107.8489,-3.0607],[107.8599,-3.0585],[107.8651,-3.0682],[107.8634,-3.0717],[107.8668,-3.0743],[107.8725,-3.0739],[107.8758,-3.0798],[107.8789,-3.0817],[107.8835,-3.08],[107.8893,-3.082],[107.8891,-3.0897],[107.899,-3.0971],[107.8953,-3.1053],[107.8889,-3.1048],[107.8827,-3.1101],[107.8866,-3.1179],[107.8942,-3.1182],[107.904,-3.1152],[107.9135,-3.1195],[107.9182,-3.1231],[107.9235,-3.1317],[107.9337,-3.1324],[107.933,-3.1377],[107.9302,-3.1416],[107.9323,-3.1499],[107.9404,-3.1511],[107.9512,-3.1589],[107.9594,-3.1619],[107.9637,-3.169],[107.9633,-3.1728],[107.9705,-3.1809],[107.9735,-3.1941],[107.9721,-3.2],[107.9692,-3.2025],[107.9697,-3.21],[107.9671,-3.2153],[107.9668,-3.2367],[107.9656,-3.2423],[107.967,-3.2468],[107.9756,-3.255],[107.9746,-3.2609],[107.9832,-3.2719],[107.9913,-3.2682],[107.9904,-3.261],[107.9954,-3.2589],[107.9964,-3.255],[108.0075,-3.2469],[108.0115,-3.2476],[108.0144,-3.2435],[108.0228,-3.2431],[108.03,-3.2447],[108.0364,-3.2432],[108.0416,-3.2457],[108.0475,-3.2405],[108.0605,-3.2394],[108.0696,-3.2451],[108.0804,-3.2465],[108.0834,-3.243],[108.0806,-3.239],[108.0808,-3.2347],[108.0837,-3.2288],[108.0841,-3.2232],[108.0871,-3.22],[108.0867,-3.2079],[108.0836,-3.2046],[108.0788,-3.2032],[108.0724,-3.1974],[108.0692,-3.188],[108.0724,-3.182],[108.0771,-3.1784],[108.0795,-3.1706],[108.0861,-3.1675],[108.0997,-3.1665],[108.1081,-3.169],[108.1127,-3.1736],[108.1312,-3.1748],[108.1387,-3.174],[108.1481,-3.1708],[108.1525,-3.1721],[108.1575,-3.1661],[108.1617,-3.1651],[108.1709,-3.1604],[108.1768,-3.1525],[108.1832,-3.1468],[108.1854,-3.1428],[108.1915,-3.143],[108.2042,-3.147],[108.2087,-3.1453],[108.2053,-3.1348],[108.2007,-3.1305],[108.1907,-3.1285],[108.1856,-3.131],[108.182,-3.1277],[108.1799,-3.1201],[108.1842,-3.1086],[108.1886,-3.1061],[108.1927,-3.101],[108.193,-3.0969],[108.2,-3.0822],[108.2091,-3.0696],[108.2105,-3.0638],[108.2165,-3.0571],[108.2173,-3.0541],[108.2157,-3.0402],[108.2159,-3.0357],[108.2125,-3.0337],[108.2079,-3.0169],[108.2101,-3.008],[108.2211,-2.9855],[108.2252,-2.9808],[108.2297,-2.9785],[108.2364,-2.9689],[108.2472,-2.9559],[108.2441,-2.9398],[108.2452,-2.9327],[108.2495,-2.9196],[108.2535,-2.9123],[108.2638,-2.8981],[108.273,-2.8902],[108.2839,-2.8838],[108.2902,-2.8814],[108.2935,-2.8755],[108.2967,-2.8627],[108.2981,-2.849],[108.2965,-2.8468],[108.2935,-2.8316],[108.2902,-2.8223],[108.2844,-2.8129],[108.2823,-2.8045],[108.2784,-2.7963],[108.2769,-2.7903],[108.2721,-2.7798],[108.2662,-2.7706],[108.2673,-2.7589],[108.2711,-2.7568],[108.2708,-2.7518],[108.2615,-2.7434],[108.2509,-2.7423],[108.2481,-2.7402],[108.2454,-2.7338],[108.2418,-2.7315],[108.2398,-2.7257],[108.2312,-2.7199],[108.2257,-2.7139],[108.2234,-2.714],[108.2185,-2.7063],[108.2188,-2.703],[108.2083,-2.7015],[108.2018,-2.6897],[108.1921,-2.6909],[108.1933,-2.6863],[108.1918,-2.6796],[108.1856,-2.6767],[108.1842,-2.6792],[108.1782,-2.6774],[108.1791,-2.6746],[108.1755,-2.6703],[108.1709,-2.669],[108.1702,-2.6761],[108.1667,-2.6865],[108.1612,-2.6829],[108.1625,-2.6765],[108.1495,-2.6724],[108.1513,-2.6688],[108.1536,-2.6568],[108.155,-2.6542],[108.1501,-2.6499],[108.142,-2.6503],[108.1378,-2.6472],[108.14,-2.6427],[108.1388,-2.639],[108.1283,-2.6341],[108.1282,-2.6298],[108.1212,-2.6289],[108.1134,-2.6317],[108.1111,-2.6267],[108.1108,-2.6211],[108.1048,-2.6149],[108.0971,-2.6136],[108.0936,-2.6077],[108.0872,-2.6046],[108.0867,-2.5989],[108.0778,-2.6069],[108.0688,-2.6055],[108.0681,-2.6015],[108.0578,-2.6062],[108.0432,-2.5985],[108.0411,-2.6021],[108.0447,-2.606],[108.0442,-2.6102],[108.0379,-2.6099],[108.0374,-2.6179],[108.0399,-2.6225],[108.0386,-2.6254],[108.04,-2.6365],[108.0378,-2.6433],[108.0334,-2.6438],[108.0296,-2.6569],[108.0265,-2.6612],[108.0189,-2.667],[108.017,-2.6646],[108.0195,-2.6553],[108.0213,-2.6536]],[[108.0213,-2.6536],[108.0214,-2.6535]],[[108.0214,-2.6535],[108.0255,-2.6495],[108.0291,-2.642],[108.0238,-2.6422],[108.0216,-2.6375],[108.0211,-2.6308],[108.0141,-2.6236],[108.0124,-2.6195],[108.0073,-2.6207],[108.0029,-2.6189],[108.0104,-2.6054],[108.0132,-2.5958],[108.0093,-2.5917],[108.0083,-2.5851],[108.0036,-2.5803],[107.9986,-2.5793],[107.9974,-2.5764],[107.9904,-2.5729],[107.9865,-2.5753],[107.9778,-2.5723],[107.9712,-2.5747],[107.9579,-2.5779],[107.952,-2.5699],[107.9433,-2.5719],[107.9379,-2.5698]],[[108.565,-2.5649],[108.5612,-2.5669],[108.5656,-2.5734],[108.5652,-2.5801],[108.5702,-2.5806],[108.5716,-2.5757],[108.5708,-2.5705],[108.565,-2.5649]],[[108.5459,-2.4935],[108.5427,-2.4936],[108.5357,-2.5018],[108.5351,-2.5054],[108.5369,-2.5133],[108.5424,-2.5128],[108.5484,-2.5085],[108.5468,-2.5033],[108.5479,-2.4974],[108.5459,-2.4935]]]}},{"type":"Feature","properties":{"mhid":"1332:152","alt_name":"KOTA PANGKAL PINANG","latitude":-2.13333,"longitude":106.13333,"sample_value":136},"geometry":{"type":"MultiLineString","coordinates":[[[106.1743,-2.155],[106.1775,-2.1485],[106.1759,-2.1397],[106.1787,-2.1288],[106.1676,-2.1045],[106.1635,-2.0987],[106.1654,-2.0932],[106.1618,-2.0917],[106.1513,-2.0826]]]}},{"type":"Feature","properties":{"mhid":"1332:153","alt_name":"KABUPATEN KARIMUN","latitude":0.80764,"longitude":103.41911,"sample_value":448},"geometry":{"type":"MultiLineString","coordinates":[[[103.6306,0.4975],[103.6241,0.4883],[103.6255,0.4842],[103.6295,0.4845],[103.6352,0.4905],[103.6306,0.4975]],[[103.6367,0.507],[103.6299,0.5061],[103.6348,0.4982],[103.638,0.4994],[103.6394,0.5041],[103.6367,0.507]],[[103.6286,0.5099],[103.6332,0.5125],[103.6213,0.5219],[103.6239,0.5144],[103.6286,0.5099]],[[103.6362,0.532],[103.631,0.5328],[103.625,0.5305],[103.6216,0.5312],[103.6203,0.5257],[103.6298,0.5174],[103.6351,0.5153],[103.637,0.5207],[103.6362,0.532]],[[103.5661,0.5472],[103.5577,0.5432],[103.5604,0.5379],[103.5671,0.5379],[103.5695,0.5445],[103.5661,0.5472]],[[103.6268,0.5361],[103.6289,0.543],[103.6254,0.5486],[103.623,0.5445],[103.6235,0.5377],[103.6268,0.5361]],[[103.7814,0.5404],[103.7761,0.5485],[103.7731,0.5451],[103.7764,0.5394],[103.7814,0.5404]],[[103.5989,0.5309],[103.595,0.5317],[103.5884,0.5389],[103.5859,0.5463],[103.5831,0.5488],[103.5783,0.5579],[103.5753,0.5571],[103.5696,0.5511],[103.5761,0.5363],[103.5886,0.528],[103.5947,0.5183],[103.5971,0.5029],[103.5969,0.4959],[103.5985,0.4904],[103.6045,0.4908],[103.6076,0.4957],[103.6115,0.4967],[103.6193,0.495],[103.6243,0.5048],[103.6202,0.5106],[103.6104,0.5148],[103.6053,0.5201],[103.5989,0.5309]],[[103.6575,0.5712],[103.6528,0.5682],[103.6583,0.5603],[103.6605,0.5524],[103.6664,0.5549],[103.6674,0.5621],[103.6641,0.5672],[103.6575,0.5712]],[[103.6492,0.5701],[103.651,0.5743],[103.6458,0.5774],[103.6458,0.5718],[103.6492,0.5701]],[[103.5356,0.5935],[103.531,0.5987],[103.5259,0.589],[103.5316,0.5851],[103.5353,0.5874],[103.5356,0.5935]],[[103.7073,0.6121],[103.7052,0.6065],[103.715,0.6047],[103.7141,0.6094],[103.7073,0.6121]],[[103.6407,0.6246],[103.636,0.6256],[103.633,0.6214],[103.6382,0.6158],[103.6458,0.6123],[103.6517,0.6112],[103.6616,0.611],[103.6636,0.6164],[103.6542,0.6178],[103.6514,0.6218],[103.6462,0.6213],[103.6407,0.6246]],[[103.6386,0.6356],[103.6298,0.6353],[103.6311,0.631],[103.6366,0.6315],[103.641,0.6283],[103.6426,0.6321],[103.6386,0.6356]],[[103.6774,0.6348],[103.6727,0.6362],[103.6739,0.6226],[103.6711,0.6176],[103.6775,0.6124],[103.6828,0.6131],[103.69,0.6093],[103.6938,0.611],[103.6996,0.609],[103.7015,0.6131],[103.7071,0.6151],[103.7051,0.6197],[103.6982,0.6233],[103.6942,0.6275],[103.6774,0.6348]],[[103.5813,0.6547],[103.5778,0.6623],[103.5718,0.6621],[103.5738,0.6557],[103.5813,0.6547]],[[103.5723,0.6795],[103.5677,0.6797],[103.5677,0.6754],[103.5721,0.6695],[103.5825,0.6694],[103.5831,0.6736],[103.575,0.68],[103.5723,0.6795]],[[103.521,0.6909],[103.5,0.6893],[103.4923,0.6854],[103.4865,0.6785],[103.4823,0.6715],[103.4765,0.6589],[103.4709,0.6443],[103.4638,0.6352],[103.465,0.6314],[103.4624,0.6219],[103.4717,0.6218],[103.475,0.6205],[103.4798,0.6239],[103.4914,0.6262],[103.4973,0.6373],[103.5118,0.6576],[103.5156,0.6655],[103.5163,0.6754],[103.5179,0.6814],[103.5226,0.6883],[103.521,0.6909]],[[103.5865,0.6777],[103.5904,0.6822],[103.5897,0.6852],[103.5922,0.691],[103.5853,0.6974],[103.5808,0.6954],[103.5779,0.6866],[103.5805,0.6815],[103.5865,0.6777]],[[103.5094,0.7026],[103.5026,0.7062],[103.4975,0.6977],[103.4964,0.6919],[103.5093,0.6937],[103.5167,0.6939],[103.5164,0.6987],[103.5124,0.7029],[103.5094,0.7026]],[[103.745,0.7362],[103.7366,0.7329],[103.7299,0.7325],[103.7186,0.7299],[103.7122,0.7255],[103.7039,0.7278],[103.6954,0.7275],[103.6921,0.7205],[103.6951,0.714],[103.6939,0.7102],[103.706,0.6984],[103.7211,0.689],[103.7275,0.6929],[103.7346,0.69],[103.7377,0.687],[103.7424,0.6874],[103.7347,0.7003],[103.7325,0.7121],[103.7345,0.717],[103.7397,0.7192],[103.744,0.7274],[103.7476,0.729],[103.7497,0.7359],[103.745,0.7362]],[[103.6567,0.7403],[103.6569,0.7368],[103.6662,0.7295],[103.6644,0.7258],[103.6741,0.7126],[103.6798,0.7168],[103.679,0.7207],[103.6821,0.7236],[103.6882,0.7235],[103.6843,0.7307],[103.6764,0.7356],[103.6661,0.7388],[103.6567,0.7403]],[[103.568,0.726],[103.5684,0.7341],[103.5719,0.7357],[103.568,0.7419],[103.5594,0.7485],[103.5571,0.7458],[103.561,0.7396],[103.5657,0.7266],[103.568,0.726]],[[103.9726,0.7534],[103.9689,0.7547],[103.9638,0.7525],[103.9636,0.7473],[103.9744,0.7503],[103.9726,0.7534]],[[103.7356,0.7565],[103.7306,0.7578],[103.7242,0.7542],[103.7252,0.7505],[103.7296,0.7491],[103.7388,0.7514],[103.7356,0.7565]],[[103.6801,0.7609],[103.6785,0.7684],[103.67,0.7606],[103.6755,0.7584],[103.6801,0.7609]],[[103.9654,0.7675],[103.9653,0.776],[103.9613,0.7734],[103.9572,0.7674],[103.9511,0.7634],[103.9555,0.7614],[103.9654,0.7675]],[[103.8675,0.7816],[103.8611,0.7907],[103.8585,0.7886],[103.8675,0.7816]],[[103.5401,0.7937],[103.5342,0.7934],[103.5344,0.7872],[103.5312,0.7815],[103.5306,0.7766],[103.532,0.7607],[103.5422,0.7552],[103.546,0.7594],[103.5444,0.7678],[103.5489,0.7702],[103.5534,0.7794],[103.5539,0.7851],[103.5501,0.7923],[103.5458,0.7946],[103.5401,0.7937]],[[103.7101,0.7982],[103.7111,0.7907],[103.7162,0.7881],[103.7183,0.7928],[103.7101,0.7982]],[[103.844,0.7842],[103.8384,0.7913],[103.8356,0.8017],[103.8317,0.7921],[103.8338,0.784],[103.844,0.7842]],[[103.5315,0.8094],[103.532,0.812],[103.5266,0.8148],[103.5246,0.8114],[103.5315,0.8094]],[[103.4734,0.8134],[103.4717,0.8172],[103.4666,0.8206],[103.4536,0.8225],[103.4533,0.8182],[103.4639,0.8159],[103.4676,0.8129],[103.4734,0.8134]],[[103.4471,0.8223],[103.451,0.8236],[103.4501,0.8278],[103.4451,0.8285],[103.4408,0.8264],[103.4471,0.8223]],[[103.521,0.8272],[103.5162,0.8318],[103.5155,0.8262],[103.521,0.8272]],[[103.6675,0.83],[103.6646,0.8312],[103.6608,0.8268],[103.6684,0.8176],[103.6746,0.8042],[103.6815,0.7927],[103.6885,0.7835],[103.7015,0.7607],[103.7014,0.758],[103.7063,0.7529],[103.7139,0.7523],[103.7163,0.7565],[103.7274,0.7586],[103.7289,0.7657],[103.7262,0.7698],[103.7186,0.775],[103.7087,0.7879],[103.7068,0.7921],[103.7045,0.8031],[103.6937,0.8057],[103.6837,0.8095],[103.6781,0.8133],[103.6675,0.83]],[[103.917,0.8174],[103.9146,0.819],[103.9084,0.8322],[103.9061,0.8285],[103.9064,0.8195],[103.896,0.8023],[103.8881,0.7975],[103.8882,0.7935],[103.8931,0.7902],[103.8991,0.7895],[103.9045,0.7817],[103.9112,0.7828],[103.9155,0.7778],[103.9157,0.773],[103.9126,0.771],[103.9176,0.7641],[103.916,0.7579],[103.9191,0.7547],[103.9256,0.7579],[103.9255,0.7631],[103.9333,0.7673],[103.9364,0.776],[103.9407,0.7791],[103.9389,0.7829],[103.941,0.7872],[103.9367,0.7948],[103.9367,0.7975],[103.9285,0.8109],[103.9232,0.8156],[103.917,0.8174]],[[103.6568,0.8333],[103.66,0.8363],[103.6538,0.8448],[103.6515,0.8411],[103.6568,0.8333]],[[103.5016,0.8445],[103.5011,0.851],[103.496,0.8501],[103.4992,0.844],[103.5016,0.8445]],[[103.7006,0.8587],[103.6952,0.8584],[103.6932,0.8554],[103.6957,0.8388],[103.6974,0.8367],[103.7044,0.8399],[103.7006,0.8587]],[[103.6763,0.8549],[103.6722,0.8627],[103.662,0.8692],[103.6678,0.86],[103.6767,0.8491],[103.6822,0.8386],[103.683,0.8312],[103.6895,0.8248],[103.6941,0.8256],[103.6896,0.8316],[103.6763,0.8549]],[[103.7704,0.8824],[103.7672,0.8811],[103.7723,0.8749],[103.7756,0.8796],[103.7704,0.8824]],[[103.489,0.8477],[103.4718,0.8567],[103.4594,0.8555],[103.4531,0.8563],[103.4453,0.863],[103.434,0.8687],[103.4322,0.8716],[103.4211,0.8763],[103.412,0.885],[103.4144,0.8756],[103.4118,0.8691],[103.4146,0.8572],[103.4127,0.85],[103.4168,0.8453],[103.4339,0.8327],[103.4388,0.8301],[103.4473,0.8311],[103.456,0.8291],[103.4609,0.8247],[103.4676,0.8255],[103.4787,0.818],[103.4843,0.8081],[103.4874,0.8001],[103.4954,0.7913],[103.4991,0.7908],[103.5058,0.7825],[103.5154,0.7768],[103.5265,0.7662],[103.5287,0.7704],[103.5271,0.7786],[103.5332,0.7874],[103.5318,0.7906],[103.5315,0.8008],[103.5252,0.8086],[103.5224,0.8099],[103.5196,0.8156],[103.5106,0.8221],[103.5036,0.8298],[103.4996,0.8379],[103.494,0.845],[103.489,0.8477]],[[103.7025,0.8746],[103.7021,0.8847],[103.6983,0.8825],[103.7025,0.8746]],[[103.7534,0.8816],[103.7492,0.8862],[103.7294,0.8811],[103.7253,0.8818],[103.7244,0.8744],[103.7182,0.8734],[103.721,0.8657],[103.7214,0.855],[103.7228,0.8504],[103.7339,0.8384],[103.7379,0.8277],[103.7423,0.8228],[103.7527,0.8155],[103.7598,0.8043],[103.7652,0.7996],[103.7722,0.7957],[103.7841,0.7934],[103.7904,0.7855],[103.7967,0.7822],[103.801,0.7775],[103.808,0.7773],[103.8202,0.7724],[103.823,0.7665],[103.8226,0.7593],[103.8205,0.7514],[103.8305,0.7522],[103.8301,0.7565],[103.834,0.7607],[103.8351,0.7722],[103.8346,0.7799],[103.8312,0.7931],[103.8354,0.8043],[103.8349,0.8117],[103.8285,0.8157],[103.8193,0.8272],[103.8112,0.8427],[103.8068,0.8481],[103.7955,0.8557],[103.7926,0.8607],[103.7852,0.8697],[103.7789,0.874],[103.7717,0.8732],[103.7655,0.8805],[103.7581,0.8798],[103.7534,0.8816]],[[103.3783,0.8949],[103.376,0.8968],[103.3704,0.8937],[103.3718,0.8848],[103.3704,0.876],[103.3667,0.8704],[103.3686,0.864],[103.3661,0.8565],[103.359,0.846],[103.3539,0.8439],[103.3532,0.8362],[103.3504,0.8334],[103.3518,0.8262],[103.3514,0.8178],[103.347,0.8066],[103.3424,0.8007],[103.3452,0.794],[103.3496,0.7875],[103.3507,0.7685],[103.3516,0.7657],[103.3516,0.7405],[103.3529,0.7394],[103.3598,0.7252],[103.3656,0.7174],[103.3678,0.7122],[103.377,0.7006],[103.3859,0.6924],[103.3963,0.6798],[103.4013,0.6707],[103.4004,0.6631],[103.4016,0.659],[103.4001,0.6497],[103.407,0.6477],[103.4118,0.6491],[103.4292,0.6405],[103.4349,0.6365],[103.4477,0.6385],[103.4573,0.6376],[103.46,0.6402],[103.4671,0.6533],[103.476,0.6724],[103.4918,0.6965],[103.5017,0.7161],[103.5043,0.7184],[103.5074,0.7332],[103.513,0.7445],[103.5129,0.7551],[103.5091,0.7627],[103.5011,0.7722],[103.486,0.7937],[103.48,0.7996],[103.4725,0.8092],[103.4642,0.8145],[103.4593,0.8149],[103.4472,0.8195],[103.438,0.8249],[103.4291,0.8325],[103.4108,0.8457],[103.4067,0.8592],[103.4098,0.8643],[103.4083,0.8699],[103.4087,0.8766],[103.4037,0.8832],[103.4004,0.8801],[103.396,0.8849],[103.389,0.89],[103.3783,0.8949]],[[103.8225,0.8917],[103.8142,0.8969],[103.8093,0.8905],[103.816,0.8797],[103.8207,0.8632],[103.8271,0.8511],[103.8324,0.8432],[103.8405,0.8341],[103.8558,0.8212],[103.8664,0.8171],[103.8725,0.8078],[103.8791,0.8007],[103.8896,0.7996],[103.8941,0.8018],[103.8983,0.8097],[103.9038,0.8163],[103.9054,0.836],[103.9054,0.8454],[103.9024,0.8496],[103.8925,0.8595],[103.8728,0.874],[103.8688,0.875],[103.8629,0.8811],[103.8551,0.8801],[103.8473,0.8824],[103.8364,0.8841],[103.8311,0.888],[103.8225,0.8917]],[[103.7527,0.9012],[103.7456,0.8994],[103.745,0.894],[103.7486,0.8916],[103.7535,0.8842],[103.7656,0.883],[103.7666,0.8881],[103.7601,0.8956],[103.7527,0.9012]],[[103.798,0.9036],[103.7953,0.9072],[103.7906,0.9022],[103.7961,0.8975],[103.8005,0.899],[103.798,0.9036]],[[103.3584,0.9123],[103.3575,0.9057],[103.3629,0.9081],[103.3584,0.9123]],[[103.3415,0.9144],[103.3363,0.9153],[103.3363,0.9104],[103.333,0.9051],[103.3343,0.8989],[103.3402,0.8954],[103.3439,0.9122],[103.3415,0.9144]],[[103.4376,0.9254],[103.435,0.9247],[103.4286,0.9162],[103.4238,0.9122],[103.4174,0.9106],[103.412,0.9114],[103.4052,0.9069],[103.4053,0.9029],[103.4102,0.8925],[103.4197,0.8823],[103.4238,0.8819],[103.4255,0.8777],[103.4337,0.8723],[103.4354,0.8693],[103.4485,0.8635],[103.4518,0.8604],[103.4586,0.8575],[103.473,0.8582],[103.48,0.8553],[103.4877,0.8556],[103.4871,0.8626],[103.4838,0.8684],[103.4831,0.8812],[103.4784,0.8963],[103.479,0.9068],[103.4755,0.9139],[103.4604,0.9219],[103.4494,0.9217],[103.4376,0.9254]],[[103.5273,0.8677],[103.5284,0.871],[103.5269,0.8788],[103.5169,0.8988],[103.5112,0.906],[103.5107,0.9101],[103.5057,0.9165],[103.4897,0.9261],[103.4866,0.916],[103.4863,0.899],[103.4953,0.8738],[103.5025,0.8622],[103.5122,0.8602],[103.5173,0.8661],[103.5273,0.8677]],[[103.4403,0.9383],[103.4391,0.9358],[103.4419,0.9275],[103.4441,0.9248],[103.4503,0.9233],[103.4589,0.9239],[103.4609,0.9296],[103.4576,0.9338],[103.4467,0.9358],[103.4403,0.9383]],[[103.4174,0.9499],[103.4172,0.946],[103.4109,0.939],[103.4152,0.9329],[103.4151,0.9281],[103.4123,0.9202],[103.4182,0.9136],[103.4235,0.9145],[103.4293,0.9193],[103.4336,0.9261],[103.4394,0.9317],[103.4345,0.9398],[103.4287,0.9454],[103.4216,0.9471],[103.4174,0.9499]],[[103.4937,0.9448],[103.4938,0.9501],[103.4897,0.95],[103.4903,0.9426],[103.4937,0.9448]],[[103.4451,0.9617],[103.437,0.9614],[103.43,0.9543],[103.4382,0.9413],[103.4481,0.9363],[103.4565,0.9357],[103.4618,0.9298],[103.4637,0.9249],[103.4757,0.92],[103.4784,0.9244],[103.4757,0.9396],[103.4769,0.9432],[103.4635,0.959],[103.4558,0.9573],[103.4451,0.9617]],[[103.3581,0.962],[103.3573,0.9565],[103.3616,0.9513],[103.3651,0.9565],[103.362,0.9608],[103.3581,0.962]],[[103.3901,0.9883],[103.3791,0.9951],[103.3716,0.9922],[103.3749,0.9876],[103.3781,0.9877],[103.3887,0.9831],[103.3901,0.9883]],[[103.2889,1.0876],[103.2924,1.0969],[103.2886,1.1006],[103.2863,1.0939],[103.2889,1.0876]],[[103.375,1.1367],[103.3728,1.1258],[103.3675,1.1242],[103.3618,1.1321],[103.3511,1.1347],[103.3484,1.1302],[103.3502,1.1272],[103.3424,1.1223],[103.3398,1.1169],[103.3345,1.1182],[103.3326,1.1124],[103.3274,1.1109],[103.3286,1.1051],[103.3268,1.0972],[103.3194,1.0872],[103.3115,1.0871],[103.3101,1.0765],[103.3123,1.0722],[103.3188,1.0716],[103.3219,1.067],[103.3203,1.0639],[103.3148,1.0603],[103.3116,1.0544],[103.3173,1.0438],[103.3198,1.044],[103.3206,1.037],[103.3278,1.0357],[103.3314,1.0287],[103.3294,1.0207],[103.3311,1.0175],[103.3376,1.0181],[103.3449,1.0164],[103.3517,1.0129],[103.3503,1.0051],[103.3552,1.0042],[103.3575,1.008],[103.3611,1.0067],[103.3677,1.0107],[103.3764,1.0099],[103.3836,1.0079],[103.3884,1.0033],[103.3941,0.9926],[103.4068,0.9911],[103.4206,0.9937],[103.4263,0.9927],[103.4384,0.988],[103.4464,0.9953],[103.4436,1.0006],[103.4323,1.0133],[103.4305,1.0178],[103.4314,1.0234],[103.4254,1.026],[103.4255,1.0314],[103.421,1.0394],[103.4228,1.0467],[103.412,1.0458],[103.4105,1.0492],[103.4038,1.0522],[103.4,1.0518],[103.3985,1.0582],[103.39,1.0649],[103.3897,1.0704],[103.3828,1.0834],[103.3812,1.0897],[103.3827,1.0932],[103.38,1.0963],[103.3805,1.1106],[103.3835,1.1159],[103.3902,1.1197],[103.3818,1.1334],[103.375,1.1367]],[[103.301,1.1418],[103.3013,1.1323],[103.2954,1.1272],[103.2991,1.1242],[103.2939,1.1184],[103.2991,1.1137],[103.3059,1.115],[103.3084,1.1197],[103.3101,1.1317],[103.3075,1.1341],[103.3087,1.1396],[103.3015,1.1391],[103.301,1.1418]],[[103.3901,1.1651],[103.3812,1.1602],[103.3808,1.1526],[103.3827,1.1456],[103.3907,1.137],[103.3952,1.1298],[103.4006,1.1315],[103.4067,1.129],[103.4101,1.1301],[103.4107,1.1392],[103.4049,1.1495],[103.3953,1.1562],[103.395,1.1611],[103.3901,1.1651]]]}},{"type":"Feature","properties":{"mhid":"1332:154","alt_name":"KABUPATEN BINTAN","latitude":0.95,"longitude":104.61944,"sample_value":580},"geometry":{"type":"MultiLineString","coordinates":[[[107.3991,0.5068],[107.4033,0.511],[107.4144,0.5153],[107.4144,0.5196],[107.4042,0.5196],[107.3948,0.5231],[107.3889,0.5128],[107.3957,0.5059],[107.3991,0.5068]],[[107.3872,0.5282],[107.3761,0.5282],[107.3769,0.5239],[107.3846,0.5205],[107.3872,0.5282]],[[107.1359,0.5859],[107.1328,0.589],[107.1287,0.5876],[107.1237,0.5815],[107.1353,0.5799],[107.1359,0.5859]],[[107.0943,0.6066],[107.088,0.5997],[107.0883,0.5955],[107.0946,0.5993],[107.0971,0.6051],[107.0943,0.6066]],[[106.9757,0.6093],[106.9742,0.6035],[106.9787,0.6],[106.9829,0.6028],[106.9811,0.6091],[106.9757,0.6093]],[[107.0198,0.6364],[107.0182,0.6405],[107.0201,0.6451],[107.0155,0.649],[107.0129,0.6467],[107.016,0.6428],[107.0154,0.6376],[107.0108,0.6301],[107.0107,0.6262],[107.015,0.6224],[107.0204,0.6217],[107.0236,0.6327],[107.0198,0.6364]],[[107.2347,0.6905],[107.2304,0.6956],[107.2287,0.6879],[107.2346,0.6862],[107.2347,0.6905]],[[104.6203,0.7201],[104.6193,0.7201]],[[104.6193,0.7201],[104.6138,0.7201],[104.612,0.7154],[104.5967,0.7056],[104.6032,0.6993],[104.6201,0.6979],[104.6217,0.7061],[104.6258,0.7106],[104.619,0.7174],[104.6196,0.7187]],[[104.6196,0.7187],[104.6203,0.7201]],[[104.659,0.7531],[104.6469,0.75],[104.6397,0.7441],[104.6328,0.7441],[104.629,0.7459],[104.6171,0.7382],[104.6166,0.7357],[104.611,0.7314],[104.6132,0.7211],[104.6189,0.7226],[104.6193,0.7201]],[[104.6193,0.7201],[104.6196,0.7187]],[[104.6196,0.7187],[104.6199,0.717],[104.6246,0.7133],[104.6308,0.7175],[104.6309,0.7211],[104.6357,0.7239],[104.6377,0.7281],[104.6443,0.7328],[104.6469,0.739],[104.6535,0.7459],[104.6611,0.7515],[104.659,0.7531]],[[104.7187,0.7583],[104.7138,0.7524],[104.7164,0.7443],[104.7158,0.7387],[104.7209,0.7363],[104.7258,0.7311],[104.7275,0.7265],[104.7346,0.7174],[104.7381,0.7193],[104.7434,0.7187],[104.745,0.7212],[104.7536,0.7265],[104.7594,0.7314],[104.7582,0.7416],[104.759,0.7466],[104.7489,0.7457],[104.742,0.7488],[104.7358,0.7492],[104.7266,0.7535],[104.7187,0.7583]],[[104.693,0.7627],[104.6892,0.7601],[104.6943,0.7425],[104.6973,0.7377],[104.7012,0.7376],[104.7083,0.7419],[104.7123,0.7414],[104.7155,0.7445],[104.713,0.7532],[104.7152,0.759],[104.7087,0.7617],[104.704,0.7613],[104.693,0.7627]],[[104.594,0.7937],[104.5873,0.7924],[104.5867,0.79],[104.5898,0.7767],[104.579,0.7692],[104.5789,0.7591],[104.5825,0.7527],[104.5901,0.7528],[104.5979,0.7574],[104.6026,0.763],[104.6207,0.777],[104.6273,0.7793],[104.6354,0.7867],[104.6311,0.792],[104.6236,0.7855],[104.6129,0.7873],[104.6061,0.7912],[104.6023,0.7908],[104.594,0.7937]],[[104.6997,0.7925],[104.6911,0.7883],[104.6883,0.7815],[104.6854,0.7791],[104.687,0.7746],[104.6919,0.7694],[104.7034,0.7644],[104.7099,0.7646],[104.722,0.7611],[104.7364,0.7531],[104.7484,0.752],[104.7537,0.758],[104.7525,0.7721],[104.7491,0.7772],[104.7489,0.7824],[104.7466,0.7876],[104.7376,0.7915],[104.7203,0.7905],[104.7171,0.7878],[104.7074,0.7917],[104.6997,0.7925]],[[104.5477,0.7971],[104.5406,0.794],[104.5354,0.785],[104.5225,0.783],[104.5154,0.7769],[104.5096,0.7735],[104.507,0.762],[104.5109,0.7491],[104.5214,0.7616],[104.5306,0.765],[104.5423,0.772],[104.5526,0.775],[104.5625,0.7753],[104.5792,0.7713],[104.5846,0.7742],[104.588,0.7781],[104.585,0.7866],[104.5671,0.7957],[104.5631,0.7939],[104.5538,0.7929],[104.5512,0.7911],[104.5477,0.7971]],[[104.5775,0.798],[104.5768,0.7932],[104.5801,0.7912],[104.5838,0.7955],[104.5775,0.798]],[[104.622,0.7983],[104.6158,0.7917],[104.6232,0.7899],[104.6256,0.7962],[104.622,0.7983]],[[104.6116,0.8009],[104.6063,0.7989],[104.6065,0.796],[104.6112,0.7938],[104.6163,0.7991],[104.6116,0.8009]],[[104.5572,0.8032],[104.5528,0.7975],[104.5594,0.7957],[104.5664,0.7996],[104.5649,0.8017],[104.5572,0.8032]],[[104.7475,0.8018],[104.7415,0.7998],[104.7409,0.794],[104.7488,0.7969],[104.7475,0.8018]],[[104.645,0.8093],[104.6381,0.805],[104.6353,0.8015],[104.6386,0.7989],[104.6458,0.8012],[104.645,0.8093]],[[104.6209,0.8166],[104.6268,0.8257],[104.626,0.8355],[104.6177,0.8359],[104.6093,0.815],[104.6182,0.8139],[104.6209,0.8166]],[[104.623,0.8446],[104.622,0.8457],[104.6124,0.8422],[104.617,0.838],[104.6254,0.8412],[104.623,0.8446]],[[104.3621,0.8484],[104.3535,0.8447],[104.3585,0.8408],[104.3605,0.835],[104.3571,0.8243],[104.3572,0.8213],[104.3519,0.8158],[104.3591,0.8142],[104.3655,0.8198],[104.3642,0.8233],[104.3659,0.8291],[104.364,0.8346],[104.3636,0.8429],[104.3621,0.8484]],[[104.6238,0.8494],[104.6248,0.8556],[104.6226,0.8604],[104.6149,0.851],[104.6137,0.8457],[104.6171,0.8449],[104.6238,0.8494]],[[104.6505,0.8667],[104.6481,0.8682],[104.6411,0.8617],[104.6396,0.8558],[104.6324,0.845],[104.6372,0.8369],[104.6355,0.8242],[104.6324,0.8218],[104.6306,0.8146],[104.6233,0.8128],[104.6208,0.8084],[104.6248,0.8045],[104.6346,0.8039],[104.6365,0.8086],[104.6524,0.8136],[104.6578,0.8188],[104.665,0.8217],[104.6649,0.8265],[104.6618,0.8294],[104.6612,0.8388],[104.6627,0.8478],[104.6582,0.8568],[104.655,0.8581],[104.6505,0.8667]],[[104.6662,0.8856],[104.668,0.8946],[104.6626,0.8912],[104.6662,0.8856]],[[107.5465,0.8873],[107.5441,0.8964],[107.5398,0.8921],[107.5392,0.8805],[107.5398,0.8722],[107.5434,0.8676],[107.547,0.8686],[107.5478,0.8772],[107.5494,0.8802],[107.5465,0.8873]],[[104.6875,0.8965],[104.677,0.8952],[104.6737,0.8922],[104.6719,0.8848],[104.6656,0.8696],[104.6615,0.866],[104.6625,0.858],[104.6673,0.8522],[104.6726,0.8511],[104.6768,0.845],[104.6822,0.8487],[104.6875,0.8492],[104.6917,0.8474],[104.6958,0.8495],[104.6901,0.8591],[104.6954,0.8619],[104.694,0.8653],[104.6952,0.8739],[104.6947,0.885],[104.6988,0.886],[104.6928,0.8937],[104.6875,0.8965]],[[104.6313,0.8947],[104.6245,0.897],[104.6208,0.8897],[104.6171,0.8716],[104.6184,0.8649],[104.623,0.8627],[104.6284,0.8541],[104.6323,0.8587],[104.633,0.8625],[104.6381,0.8656],[104.6445,0.8731],[104.6554,0.8785],[104.6611,0.8791],[104.6591,0.8854],[104.6582,0.8937],[104.6508,0.895],[104.647,0.8926],[104.6383,0.8929],[104.6313,0.8947]],[[104.9223,0.937],[104.9195,0.9364],[104.9228,0.9289],[104.927,0.9361],[104.9223,0.937]],[[104.7406,0.9432],[104.7317,0.9432],[104.7302,0.94],[104.7334,0.9335],[104.7378,0.9281],[104.7461,0.9246],[104.7492,0.9214],[104.7554,0.9197],[104.7545,0.9279],[104.752,0.9328],[104.746,0.94],[104.7406,0.9432]],[[107.5045,0.9516],[107.4955,0.9436],[107.5028,0.9331],[107.5043,0.9397],[107.5094,0.9414],[107.5089,0.9474],[107.5045,0.9516]],[[107.4821,0.9661],[107.4763,0.9551],[107.4769,0.9495],[107.4803,0.9466],[107.486,0.9487],[107.4869,0.9545],[107.4816,0.9616],[107.4821,0.9661]],[[107.4176,0.9679],[107.4147,0.9688],[107.4111,0.9599],[107.4121,0.9558],[107.4226,0.9502],[107.4235,0.9635],[107.4176,0.9679]],[[107.4931,0.9659],[107.4884,0.9692],[107.4875,0.96],[107.4907,0.9557],[107.4943,0.9626],[107.4931,0.9659]],[[107.399,0.9681],[107.3992,0.9744],[107.3943,0.9743],[107.3953,0.9696],[107.399,0.9681]],[[107.432,0.9756],[107.4288,0.9754],[107.4269,0.9656],[107.4281,0.9563],[107.4318,0.948],[107.442,0.9459],[107.443,0.9369],[107.4395,0.9347],[107.4433,0.9304],[107.4482,0.9302],[107.4561,0.9204],[107.4611,0.9234],[107.4637,0.922],[107.4692,0.9249],[107.4694,0.9285],[107.4654,0.9319],[107.4656,0.9375],[107.4681,0.9449],[107.4779,0.9434],[107.4737,0.9492],[107.475,0.9575],[107.4723,0.96],[107.4733,0.9663],[107.4622,0.9758],[107.4541,0.9694],[107.449,0.9704],[107.4482,0.966],[107.432,0.9756]],[[107.4155,0.9918],[107.4094,0.9915],[107.4063,0.9888],[107.4006,0.9881],[107.4042,0.9789],[107.4083,0.9773],[107.4114,0.9836],[107.4168,0.984],[107.418,0.9893],[107.4155,0.9918]],[[104.2438,0.9963],[104.2372,0.994],[104.231,0.9827],[104.2402,0.9802],[104.243,0.976],[104.2582,0.9745],[104.2627,0.9805],[104.2623,0.9869],[104.2588,0.9882],[104.2569,0.9927],[104.2507,0.9962],[104.2438,0.9963]],[[107.3928,1.0115],[107.3882,1.0086],[107.389,0.9983],[107.3874,0.9949],[107.3884,0.9899],[107.3928,0.9894],[107.3952,0.999],[107.3928,1.0115]],[[107.3835,1.0111],[107.3797,1.0125],[107.3772,1.0054],[107.3828,1.0055],[107.3835,1.0111]],[[104.393,1.0156],[104.3839,1.0158],[104.3795,1.0084],[104.3789,1.0036],[104.3647,0.9918],[104.3668,0.9894],[104.3737,0.9898],[104.3872,0.9928],[104.3969,0.997],[104.3924,1.0025],[104.393,1.0156]],[[107.3684,1.023],[107.3629,1.0233],[107.361,1.0163],[107.3567,1.0118],[107.3633,1.0099],[107.367,1.0062],[107.3733,1.0151],[107.3736,1.0203],[107.3684,1.023]],[[107.5379,1.0266],[107.533,1.0264],[107.5299,1.0216],[107.5327,1.0146],[107.5295,1.0094],[107.5319,0.9938],[107.5377,0.9855],[107.5465,0.9809],[107.5606,0.9913],[107.5658,0.9971],[107.5696,0.9889],[107.5647,0.9829],[107.5634,0.9776],[107.5561,0.9692],[107.5572,0.9653],[107.5525,0.9622],[107.5477,0.9521],[107.5534,0.9476],[107.5612,0.9518],[107.5698,0.9624],[107.5711,0.9686],[107.5818,0.9775],[107.5857,0.9748],[107.5876,0.9791],[107.5865,0.9838],[107.5942,0.9903],[107.6006,0.9878],[107.6033,0.9902],[107.6013,0.9997],[107.5938,1.0018],[107.5904,1.0085],[107.5749,1.0157],[107.5602,1.0171],[107.5536,1.0226],[107.5454,1.022],[107.5409,1.0231],[107.5379,1.0266]],[[104.7884,1.0276],[104.7834,1.0255],[104.7824,1.0197],[104.7868,1.0161],[104.7834,1.0108],[104.7885,1.0037],[104.7969,1.0009],[104.8026,1.0037],[104.8059,0.9998],[104.8034,0.9957],[104.8049,0.9893],[104.8108,0.9879],[104.8213,0.9806],[104.8245,0.9808],[104.8262,0.9725],[104.8218,0.9678],[104.814,0.963],[104.8224,0.9572],[104.8257,0.9565],[104.8382,0.9608],[104.8431,0.9649],[104.8463,0.9704],[104.8477,0.9783],[104.8542,0.9839],[104.8486,0.9872],[104.8436,0.9971],[104.8436,1.0005],[104.8499,1.01],[104.8476,1.0138],[104.8412,1.0128],[104.8359,1.016],[104.8292,1.0146],[104.8155,1.019],[104.8057,1.0175],[104.8002,1.0199],[104.7884,1.0276]],[[104.2195,1.0487],[104.2212,1.0389],[104.225,1.0412],[104.2216,1.0483],[104.2195,1.0487]],[[107.5018,1.05],[107.4977,1.0446],[107.5041,1.0361],[107.5136,1.0393],[107.52,1.0471],[107.5128,1.0465],[107.5018,1.05]],[[107.4886,1.0553],[107.4841,1.0531],[107.4871,1.048],[107.4911,1.0452],[107.4948,1.0462],[107.4955,1.0505],[107.4935,1.0544],[107.4886,1.0553]],[[104.6711,1.0721],[104.6723,1.0706],[104.6729,1.0575],[104.6785,1.052],[104.6773,1.0623],[104.6779,1.0671],[104.6741,1.0717],[104.6711,1.0721]],[[107.4357,1.0849],[107.4385,1.0909],[107.4347,1.0938],[107.4311,1.0903],[107.4312,1.0861],[107.4357,1.0849]],[[107.4133,1.102],[107.4061,1.1104],[107.4033,1.112],[107.3993,1.1034],[107.3931,1.1016],[107.3931,1.0973],[107.3899,1.0942],[107.3909,1.0892],[107.4056,1.0909],[107.4142,1.094],[107.4179,1.1008],[107.4133,1.102]],[[106.8939,1.1876],[106.8949,1.1907],[106.889,1.1948],[106.8866,1.189],[106.8939,1.1876]],[[104.5137,0.8436],[104.5162,0.8345],[104.522,0.8256],[104.5316,0.8258],[104.5367,0.8235],[104.5413,0.8237],[104.5433,0.8205],[104.5536,0.8212],[104.5554,0.8145],[104.5759,0.8122],[104.5826,0.8141],[104.5876,0.8103],[104.5931,0.8103],[104.608,0.8264],[104.6112,0.8333],[104.61,0.8399],[104.6113,0.8524],[104.611,0.8595],[104.6138,0.8654],[104.612,0.8776],[104.6148,0.8907],[104.6197,0.8989],[104.6289,0.9058],[104.6384,0.9048],[104.6505,0.9066],[104.6551,0.9092],[104.6599,0.9194],[104.6555,0.9261],[104.6564,0.9358],[104.6599,0.9404],[104.6561,0.9433],[104.6424,0.9481],[104.6464,0.9598],[104.6448,0.9689],[104.6394,0.9779],[104.6353,0.9891],[104.6418,0.9921],[104.6471,0.9998],[104.651,1.0104],[104.6516,1.0161],[104.6576,1.0323],[104.6558,1.0395],[104.6575,1.0455],[104.6507,1.0521],[104.6523,1.0626],[104.6448,1.071],[104.6381,1.0831],[104.636,1.0955],[104.6327,1.0999],[104.6349,1.1052],[104.6313,1.1106],[104.6206,1.1185],[104.6141,1.1189],[104.602,1.1254],[104.5962,1.1268],[104.5968,1.1317],[104.5929,1.1338],[104.5893,1.1408],[104.5847,1.1439],[104.5817,1.1527],[104.5778,1.1554],[104.5779,1.1612],[104.5803,1.1661],[104.578,1.1746],[104.5784,1.1841],[104.5767,1.1911],[104.5812,1.2023],[104.5883,1.2084],[104.5834,1.2137],[104.5831,1.2192],[104.5862,1.2256],[104.5839,1.2297],[104.5791,1.2264],[104.5719,1.2292],[104.5639,1.2296],[104.5568,1.2273],[104.5507,1.2237],[104.5451,1.217],[104.547,1.2106],[104.5463,1.2033],[104.5504,1.1997],[104.5407,1.1966],[104.5359,1.1877],[104.5363,1.1827],[104.5291,1.1771],[104.5114,1.1738],[104.4995,1.1706],[104.4962,1.1739],[104.4783,1.1745],[104.4676,1.1767],[104.4645,1.1791],[104.4646,1.184],[104.457,1.1852],[104.455,1.1835],[104.4371,1.1881],[104.4169,1.1975],[104.402,1.2024],[104.3964,1.2006],[104.3934,1.2045],[104.3877,1.1978],[104.3794,1.1967],[104.3759,1.1916],[104.3815,1.1829],[104.3747,1.1789],[104.3651,1.1783],[104.3585,1.1811],[104.3529,1.1877],[104.3498,1.1851],[104.3439,1.1896],[104.3368,1.1819],[104.3306,1.1791],[104.3233,1.1792],[104.3184,1.1811],[104.3109,1.1786],[104.3138,1.1743],[104.317,1.175],[104.322,1.1655],[104.3306,1.1639],[104.3249,1.1579],[104.3286,1.15],[104.329,1.146],[104.3328,1.143],[104.3302,1.1383],[104.324,1.136],[104.3119,1.1378],[104.3056,1.1375],[104.2962,1.1325],[104.2779,1.1263],[104.2695,1.1241],[104.2403,1.1196],[104.24,1.1106],[104.2308,1.104],[104.228,1.0985],[104.2236,1.0947],[104.2166,1.0837],[104.2156,1.0753],[104.2125,1.0742],[104.2146,1.0648],[104.2223,1.0587],[104.226,1.0537],[104.2306,1.0514],[104.2332,1.0462],[104.2315,1.0426],[104.2359,1.0389],[104.2345,1.0341],[104.2284,1.0298],[104.2278,1.0182],[104.2314,1.0155],[104.2361,1.0158],[104.2467,1.0071],[104.2569,1.0012],[104.2635,0.9997],[104.2845,1.0013],[104.2918,1.0004],[104.3036,1.0008],[104.3111,0.9982],[104.3169,0.9924],[104.3199,0.9913],[104.3333,0.9923],[104.3377,1.0085],[104.3358,1.0125],[104.3368,1.0202],[104.3405,1.0259],[104.3455,1.0201],[104.3553,1.0204],[104.3634,1.0173],[104.3738,1.0103],[104.3811,1.0122],[104.3799,1.0176],[104.3815,1.0206],[104.3877,1.0225],[104.3962,1.0279],[104.3994,1.0338],[104.4039,1.0343],[104.4035,1.0398],[104.4055,1.0435],[104.402,1.0463],[104.4025,1.0504],[104.4058,1.0533],[104.4164,1.0556],[104.4146,1.0449],[104.4163,1.04],[104.4239,1.0426],[104.4261,1.0516],[104.4344,1.0531],[104.4385,1.0512],[104.4464,1.0544],[104.4546,1.0511],[104.463,1.0427],[104.4725,1.0303],[104.4763,1.0269],[104.48,1.027],[104.4865,1.034],[104.4888,1.0333],[104.486,1.0248],[104.4864,1.018],[104.4815,1.0144],[104.4721,1.0182],[104.468,1.0218],[104.4634,1.0228],[104.4491,1.0122],[104.4449,1.0161],[104.4425,1.0091],[104.4446,1.0056],[104.4413,1.0014],[104.4414,0.9958],[104.4516,0.9897],[104.4529,0.9846],[104.4675,0.9856],[104.4738,0.9787]]]}},{"type":"Feature","properties":{"mhid":"1332:155","alt_name":"KABUPATEN NATUNA","latitude":4.71417,"longitude":107.97639,"sample_value":355},"geometry":{"type":"MultiLineString","coordinates":[[[108.9507,2.5009],[108.9453,2.5007],[108.9399,2.4968],[108.9397,2.4935],[108.9449,2.483],[108.9502,2.4794],[108.9556,2.4818],[108.9548,2.4859],[108.9567,2.4912],[108.9562,2.4982],[108.9507,2.5009]],[[108.9861,2.5064],[108.9831,2.5054],[108.9904,2.4889],[108.994,2.4895],[108.9979,2.4938],[108.9935,2.4953],[108.9933,2.5004],[108.9887,2.4994],[108.9861,2.5064]],[[109.1458,2.5467],[109.1425,2.5465],[109.1368,2.5409],[109.1384,2.5349],[109.1441,2.54],[109.1458,2.5467]],[[108.9979,2.5586],[108.9952,2.5605],[108.9888,2.5547],[108.976,2.5554],[108.977,2.5501],[108.9756,2.5434],[108.977,2.5378],[108.9766,2.5314],[108.9798,2.5294],[108.9797,2.521],[108.9881,2.5226],[108.992,2.5255],[108.9997,2.5262],[109.0038,2.5313],[109.0074,2.5318],[109.0119,2.5262],[109.0217,2.5221],[109.0235,2.5161],[109.0322,2.5161],[109.0166,2.5068],[109.0106,2.5048],[109.0069,2.4991],[109.0093,2.4965],[109.0066,2.4906],[109.0146,2.4831],[109.0194,2.4811],[109.0296,2.4821],[109.0445,2.4894],[109.0468,2.4936],[109.0543,2.4952],[109.0502,2.5025],[109.0553,2.5028],[109.0622,2.4993],[109.0634,2.4968],[109.0703,2.4974],[109.0796,2.4945],[109.0834,2.4893],[109.087,2.4915],[109.0936,2.5003],[109.0969,2.4978],[109.1046,2.5019],[109.1146,2.5046],[109.1175,2.5105],[109.1172,2.5223],[109.115,2.5273],[109.1015,2.5281],[109.0915,2.527],[109.0835,2.525],[109.0792,2.5208],[109.0559,2.5255],[109.048,2.528],[109.0351,2.5334],[109.0267,2.5382],[109.0222,2.5434],[109.0196,2.554],[109.0074,2.56],[108.9979,2.5586]],[[109.164,2.5921],[109.1616,2.5962],[109.157,2.5981],[109.1547,2.5924],[109.1569,2.5833],[109.1626,2.5857],[109.164,2.5921]],[[108.568,2.6566],[108.5714,2.6603],[108.5732,2.6663],[108.5786,2.6785],[108.5816,2.6819],[108.5836,2.6878],[108.5833,2.6941],[108.5856,2.6974],[108.5826,2.7031],[108.5773,2.6986],[108.5688,2.6845],[108.5653,2.6589],[108.568,2.6566]],[[108.8818,2.6981],[108.8855,2.7006],[108.8815,2.706],[108.877,2.7055],[108.877,2.6999],[108.8818,2.6981]],[[108.9224,2.7673],[108.9184,2.7586],[108.9075,2.7494],[108.9032,2.7412],[108.8891,2.7336],[108.8853,2.7299],[108.887,2.7266],[108.8914,2.7261],[108.8989,2.7324],[108.9048,2.7348],[108.9115,2.7337],[108.9134,2.7364],[108.914,2.7434],[108.919,2.7486],[108.9239,2.7496],[108.9291,2.7557],[108.9295,2.7604],[108.9224,2.7673]],[[108.7235,2.8971],[108.729,2.9067],[108.73,2.9146],[108.7268,2.9172],[108.7225,2.9135],[108.7188,2.901],[108.7235,2.8971]],[[108.8683,3.0098],[108.8645,3.0118],[108.8593,3.0081],[108.8496,3.0058],[108.8464,3.0023],[108.8427,3.0024],[108.8379,2.9953],[108.8389,2.9914],[108.8355,2.9864],[108.8369,2.9632],[108.8364,2.9499],[108.8273,2.9344],[108.8061,2.9171],[108.8035,2.9168],[108.7941,2.9095],[108.7901,2.9049],[108.7899,2.8994],[108.7864,2.8955],[108.7812,2.8956],[108.7744,2.8924],[108.7761,2.8852],[108.7758,2.8779],[108.7845,2.8715],[108.7867,2.8651],[108.7918,2.8596],[108.8018,2.8549],[108.8077,2.8534],[108.8146,2.8454],[108.82,2.8431],[108.8248,2.8431],[108.8289,2.8455],[108.846,2.8496],[108.8513,2.8558],[108.8625,2.8772],[108.867,2.8797],[108.8793,2.8809],[108.8852,2.8798],[108.8772,2.8899],[108.8817,2.9045],[108.8854,2.9086],[108.8776,2.9156],[108.8781,2.9203],[108.8815,2.9256],[108.8861,2.9362],[108.8783,2.9438],[108.8851,2.9443],[108.887,2.9485],[108.8865,2.9613],[108.8885,2.9699],[108.8886,2.9891],[108.8903,2.9978],[108.8887,3.0036],[108.8781,3.0087],[108.8733,3.0078],[108.8683,3.0098]],[[107.7868,3.0205],[107.7714,3.0189],[107.7496,3.0076],[107.7527,3.0015],[107.7514,2.9958],[107.7543,2.9878],[107.7534,2.9779],[107.7576,2.9719],[107.7621,2.9752],[107.7781,2.9765],[107.7836,2.9791],[107.7899,2.9774],[107.7958,2.9805],[107.8014,2.9814],[107.8132,2.98],[107.8125,2.9846],[107.8083,2.9914],[107.8068,3.0053],[107.8043,3.0118],[107.7973,3.0174],[107.7868,3.0205]],[[108.8412,3.0546],[108.8391,3.0508],[108.84,3.0464],[108.8355,3.043],[108.8451,3.0372],[108.8475,3.0312],[108.8511,3.0289],[108.8523,3.0235],[108.8504,3.0147],[108.859,3.0136],[108.8656,3.0144],[108.8705,3.0216],[108.8695,3.0258],[108.8645,3.0316],[108.8683,3.0389],[108.8681,3.0432],[108.8592,3.0466],[108.8545,3.0501],[108.8441,3.0521],[108.8412,3.0546]],[[108.087,3.5827],[108.0827,3.5828],[108.0796,3.5769],[108.0845,3.5739],[108.0898,3.5785],[108.087,3.5827]],[[108.0455,3.5886],[108.0418,3.5839],[108.0349,3.5781],[108.0326,3.5738],[108.034,3.5687],[108.0383,3.5608],[108.0446,3.5568],[108.0484,3.561],[108.0468,3.5748],[108.0503,3.5855],[108.0455,3.5886]],[[108.0419,3.5994],[108.0417,3.6088],[108.0384,3.6062],[108.0378,3.6018],[108.0419,3.5994]],[[108.1037,3.6367],[108.095,3.6353],[108.0895,3.6227],[108.09,3.6159],[108.0859,3.612],[108.0783,3.6145],[108.0753,3.6108],[108.0741,3.6056],[108.0707,3.6023],[108.0693,3.5945],[108.0663,3.5886],[108.0695,3.5829],[108.0801,3.5844],[108.0788,3.5881],[108.0846,3.597],[108.0885,3.5973],[108.0945,3.5931],[108.099,3.5919],[108.1026,3.5864],[108.1058,3.5875],[108.1068,3.5927],[108.1032,3.6015],[108.1086,3.6055],[108.1144,3.6042],[108.1212,3.6069],[108.1219,3.6137],[108.1251,3.6229],[108.1152,3.6322],[108.1037,3.6367]],[[108.0546,3.6688],[108.0487,3.6678],[108.0449,3.6642],[108.05,3.6559],[108.0534,3.6441],[108.0503,3.6383],[108.0535,3.6342],[108.057,3.6372],[108.0631,3.6347],[108.0673,3.6355],[108.0757,3.6328],[108.0821,3.634],[108.0849,3.6381],[108.086,3.6459],[108.083,3.6532],[108.0747,3.6635],[108.071,3.6663],[108.063,3.6651],[108.0546,3.6688]],[[108.0865,3.6932],[108.074,3.6908],[108.0812,3.6825],[108.0865,3.6889],[108.0865,3.6932]],[[108.1158,3.7666],[108.1168,3.7698],[108.1128,3.7726],[108.1109,3.767],[108.1158,3.7666]],[[108.0022,3.8181],[107.9946,3.8142],[107.9996,3.8106],[108.0044,3.8127],[108.0063,3.8078],[108.0112,3.8072],[108.0158,3.8033],[108.0127,3.7971],[108.0165,3.7924],[108.0173,3.7869],[108.0133,3.7852],[108.0119,3.7814],[108.0141,3.7781],[108.0242,3.7762],[108.028,3.7795],[108.0346,3.7752],[108.0328,3.7667],[108.0345,3.7637],[108.0404,3.7675],[108.0397,3.7746],[108.0373,3.7768],[108.0375,3.7841],[108.033,3.7823],[108.0291,3.7893],[108.0317,3.8001],[108.0283,3.8075],[108.0177,3.8157],[108.0142,3.8144],[108.0077,3.8153],[108.0022,3.8181]],[[107.8982,3.9134],[107.8951,3.9119],[107.8957,3.9021],[107.8944,3.8937],[107.9027,3.8871],[107.9036,3.8839],[107.9117,3.8819],[107.9194,3.8895],[107.9197,3.9028],[107.9121,3.9082],[107.9035,3.9095],[107.8982,3.9134]],[[107.8612,4.1584],[107.8539,4.1501],[107.8531,4.1409],[107.8462,4.1392],[107.8446,4.1311],[107.846,4.1221],[107.8408,4.1195],[107.8439,4.1165],[107.8481,4.1189],[107.852,4.1153],[107.8625,4.126],[107.8631,4.1288],[107.8603,4.1372],[107.8627,4.1459],[107.8666,4.1482],[107.8689,4.1556],[107.8612,4.1584]],[[108.2273,4.217],[108.226,4.2227],[108.2194,4.2301],[108.2076,4.2259],[108.2038,4.2209],[108.198,4.1996],[108.1936,4.1925],[108.1876,4.1891],[108.1855,4.1836],[108.1821,4.1816],[108.1809,4.1774],[108.1731,4.1706],[108.1728,4.1635],[108.1646,4.1567],[108.158,4.1498],[108.1507,4.1453],[108.1456,4.1369],[108.1341,4.1343],[108.1241,4.1225],[108.1194,4.1184],[108.1064,4.1099],[108.1043,4.1066],[108.0971,4.1042],[108.0941,4.1069],[108.0893,4.1031],[108.0884,4.0982],[108.0838,4.0921],[108.0792,4.0757],[108.0739,4.0674],[108.0703,4.0673],[108.0628,4.0628],[108.059,4.0557],[108.0554,4.0546],[108.0464,4.0552],[108.0349,4.0575],[108.0323,4.0546],[108.0261,4.0532],[108.0215,4.0466],[108.0212,4.0373],[108.0164,4.033],[108.0141,4.0271],[107.9923,4.0168],[107.9737,4.0143],[107.9676,4.0064],[107.9623,4.0043],[107.9641,3.9993],[107.9703,3.9976],[107.9764,4.0008],[107.9825,3.9992],[107.9873,3.9919],[107.9868,3.9856],[107.9925,3.9835],[107.9942,3.9786],[107.9897,3.9648],[107.9928,3.9624],[107.9915,3.9581],[107.9871,3.9542],[107.9892,3.9516],[107.9885,3.9449],[107.9934,3.9352],[107.9983,3.9282],[108.0044,3.923],[108.011,3.9196],[108.0098,3.9161],[108.0159,3.9105],[108.0257,3.9093],[108.0308,3.8983],[108.0308,3.8934],[108.0246,3.8904],[108.0178,3.8836],[108.0212,3.8764],[108.0247,3.8774],[108.0329,3.8684],[108.0392,3.8646],[108.0472,3.8619],[108.0525,3.8495],[108.0581,3.8444],[108.0629,3.8343],[108.073,3.8329],[108.0764,3.8347],[108.0859,3.8332],[108.09,3.8294],[108.0926,3.8207],[108.1008,3.821],[108.1066,3.8252],[108.1178,3.826],[108.1249,3.8227],[108.1325,3.8159],[108.1351,3.8166],[108.146,3.8138],[108.1543,3.8043],[108.1622,3.8034],[108.1694,3.8076],[108.1732,3.8043],[108.1825,3.8027],[108.1854,3.8055],[108.1992,3.8007],[108.2073,3.8019],[108.2155,3.7922],[108.2234,3.7887],[108.2269,3.7913],[108.2294,3.7989],[108.2306,3.8104],[108.226,3.8205],[108.2305,3.8211],[108.2363,3.8107],[108.2362,3.8038],[108.233,3.7885],[108.2285,3.7891],[108.2235,3.7848],[108.2267,3.7775],[108.243,3.7709],[108.253,3.7621],[108.2513,3.7576],[108.255,3.7517],[108.257,3.7442],[108.2603,3.738],[108.265,3.7377],[108.2711,3.7239],[108.2749,3.7202],[108.2768,3.7123],[108.272,3.7107],[108.265,3.7178],[108.2646,3.7227],[108.2603,3.7299],[108.2503,3.734],[108.2376,3.7464],[108.2199,3.7594],[108.217,3.7667],[108.2133,3.7707],[108.2078,3.7735],[108.2046,3.778],[108.1884,3.7834],[108.1863,3.7804],[108.1757,3.775],[108.1735,3.7682],[108.1671,3.7654],[108.1547,3.7651],[108.1495,3.7603],[108.1515,3.7547],[108.1471,3.7443],[108.1413,3.7513],[108.1344,3.7495],[108.131,3.7458],[108.1251,3.7462],[108.118,3.7439],[108.1153,3.7391],[108.1167,3.7327],[108.1209,3.7276],[108.1208,3.724],[108.1131,3.7227],[108.1125,3.7165],[108.11,3.7086],[108.1068,3.7048],[108.1011,3.6943],[108.0935,3.6915],[108.0921,3.6836],[108.0896,3.6805],[108.093,3.6773],[108.0981,3.6787],[108.1039,3.6756],[108.1141,3.6723],[108.1174,3.6685],[108.1245,3.6706],[108.1304,3.6635],[108.1389,3.6631],[108.1437,3.6645],[108.1491,3.6469],[108.1488,3.6426],[108.153,3.6321],[108.1562,3.6299],[108.1643,3.6379],[108.1697,3.6408],[108.1724,3.6398],[108.1766,3.6432],[108.1854,3.6412],[108.1895,3.6441],[108.1903,3.6511],[108.1963,3.657],[108.2019,3.6594],[108.2098,3.6598],[108.2155,3.6585],[108.225,3.6639],[108.2338,3.6634],[108.2398,3.6644],[108.2535,3.663],[108.2611,3.6608],[108.2759,3.6652],[108.2797,3.6643],[108.2854,3.6598],[108.2954,3.6573],[108.2997,3.6619],[108.3018,3.6678],[108.3054,3.6702],[108.3043,3.6768],[108.3068,3.698],[108.305,3.7028],[108.3047,3.7171],[108.3054,3.7215],[108.3097,3.7308],[108.3152,3.7389],[108.3192,3.7426],[108.3255,3.7453],[108.3295,3.7493],[108.3302,3.7565],[108.3321,3.7606],[108.3383,3.7662],[108.3431,3.7675],[108.3509,3.7651],[108.3544,3.7667],[108.3585,3.7758],[108.3623,3.7778],[108.3683,3.7849],[108.3782,3.7873],[108.3826,3.7924],[108.3864,3.7931],[108.3868,3.801],[108.3894,3.8018],[108.3906,3.8131],[108.3939,3.8224],[108.3969,3.8276],[108.3941,3.8329],[108.3955,3.8466],[108.4009,3.8535],[108.3989,3.8612],[108.4004,3.8659],[108.4073,3.876],[108.4087,3.8843],[108.4075,3.8866],[108.4015,3.8847],[108.3968,3.8799],[108.3892,3.8675],[108.3867,3.8678],[108.3817,3.8583],[108.3798,3.8665],[108.3825,3.869],[108.3778,3.8729],[108.3787,3.8789],[108.3736,3.8833],[108.3726,3.8867],[108.3663,3.8933],[108.3617,3.8929],[108.3586,3.8874],[108.3629,3.8817],[108.3608,3.8751],[108.3558,3.8745],[108.355,3.8829],[108.3575,3.8903],[108.3544,3.8975],[108.3635,3.8991],[108.3703,3.904],[108.3733,3.9003],[108.3801,3.8967],[108.3897,3.8956],[108.3943,3.913],[108.3938,3.917],[108.3821,3.928],[108.382,3.9316],[108.3933,3.9449],[108.3967,3.956],[108.401,3.9559],[108.4027,3.9658],[108.3997,3.9684],[108.3941,3.9681],[108.3882,3.9738],[108.3802,3.9796],[108.377,3.985],[108.3623,3.9921],[108.3576,3.9931],[108.3537,3.9965],[108.3455,4.0002],[108.3444,4.0073],[108.3469,4.0133],[108.3459,4.0158],[108.3373,4.0223],[108.3309,4.0259],[108.3254,4.0318],[108.3165,4.0382],[108.3051,4.0495],[108.2957,4.0542],[108.2926,4.0606],[108.2967,4.07],[108.2981,4.0805],[108.2999,4.0842],[108.2974,4.0876],[108.2902,4.0832],[108.28,4.0843],[108.2694,4.0892],[108.2623,4.0937],[108.2534,4.1033],[108.2535,4.1075],[108.2498,4.11],[108.2464,4.1177],[108.2347,4.1269],[108.2306,4.1363],[108.2287,4.1474],[108.232,4.1537],[108.2304,4.1562],[108.2285,4.1724],[108.2287,4.1777],[108.2244,4.1844],[108.2289,4.2],[108.2334,4.2021],[108.2349,4.2073],[108.241,4.2117],[108.2414,4.2186],[108.2367,4.2198],[108.2319,4.2172],[108.2273,4.217]],[[108.2096,4.2655],[108.1997,4.2634],[108.1982,4.2603],[108.1999,4.2551],[108.1928,4.246],[108.198,4.2464],[108.2028,4.2546],[108.2027,4.2581],[108.2096,4.2655]],[[107.7318,4.5201],[107.7235,4.52],[107.7245,4.513],[107.7316,4.5118],[107.7318,4.5201]],[[108.0074,4.7746],[108.0006,4.7748],[107.9922,4.7694],[107.9916,4.7598],[107.9893,4.7544],[107.9764,4.7424],[107.972,4.7321],[107.971,4.7263],[107.9671,4.7187],[107.9583,4.7078],[107.9493,4.701],[107.9427,4.6978],[107.9372,4.6972],[107.9273,4.6932],[107.927,4.6843],[107.9285,4.6804],[107.9451,4.6749],[107.9487,4.6758],[107.9648,4.6686],[107.9672,4.6741],[107.977,4.6806],[107.9778,4.6884],[107.9816,4.691],[107.9862,4.7003],[107.9898,4.7121],[107.9891,4.7168],[107.9922,4.7235],[107.9944,4.7329],[108.0001,4.7453],[108.0031,4.7492],[108.0076,4.76],[108.0083,4.7661],[108.0074,4.7746]],[[108.0219,4.794],[108.0166,4.7976],[108.0106,4.7929],[108.0064,4.7862],[108.0094,4.7804],[108.0219,4.794]]]}},{"type":"Feature","properties":{"mhid":"1332:156","alt_name":"KABUPATEN LINGGA","latitude":0.2,"longitude":104.61667,"sample_value":571},"geometry":{"type":"MultiLineString","coordinates":[[[105.2628,-1.2001],[105.2609,-1.2002],[105.264,-1.2137],[105.271,-1.2162],[105.2729,-1.2138],[105.2628,-1.2001]],[[105.283,-1.1472],[105.2805,-1.144],[105.2754,-1.1463],[105.2836,-1.1502],[105.2896,-1.159],[105.297,-1.1635],[105.2999,-1.1692],[105.3046,-1.1724],[105.3117,-1.1698],[105.3109,-1.167],[105.2987,-1.1584],[105.2886,-1.1491],[105.283,-1.1472]],[[105.6938,-0.9418],[105.6959,-0.9353],[105.6906,-0.9364],[105.6938,-0.9418]],[[105.838,-0.8703],[105.838,-0.8648],[105.8294,-0.8659],[105.8283,-0.8692],[105.8326,-0.8713],[105.838,-0.8703]],[[104.9333,-0.7844],[104.9351,-0.7757],[104.9305,-0.7736],[104.929,-0.7838],[104.9333,-0.7844]],[[104.4812,-0.6974],[104.4777,-0.6966],[104.4771,-0.7097],[104.4823,-0.7077],[104.4812,-0.6974]],[[104.4657,-0.683],[104.4624,-0.686],[104.4653,-0.6892],[104.4648,-0.6934],[104.4701,-0.6932],[104.4657,-0.683]],[[104.2353,-0.6535],[104.233,-0.659],[104.2418,-0.6625],[104.2427,-0.657],[104.2375,-0.657],[104.2353,-0.6535]],[[104.1957,-0.3928],[104.1895,-0.3946],[104.1925,-0.3999],[104.1917,-0.406],[104.1969,-0.407],[104.1981,-0.4162],[104.1955,-0.4216],[104.2005,-0.4262],[104.2109,-0.4249],[104.212,-0.4291],[104.224,-0.4276],[104.2245,-0.4205],[104.2228,-0.4163],[104.2263,-0.4122],[104.2249,-0.4061],[104.2291,-0.4055],[104.2323,-0.4012],[104.2245,-0.3932],[104.22,-0.3972],[104.2155,-0.3985],[104.2139,-0.3934],[104.2068,-0.3947],[104.2029,-0.3919],[104.1957,-0.3928]],[[104.1669,-0.3693],[104.162,-0.3709],[104.1627,-0.3766],[104.1666,-0.3847],[104.1751,-0.3899],[104.1791,-0.3835],[104.177,-0.3784],[104.1713,-0.375],[104.1668,-0.3743],[104.1669,-0.3693]],[[104.1895,-0.3631],[104.1866,-0.3608],[104.178,-0.3706],[104.1737,-0.3663],[104.1717,-0.3713],[104.1765,-0.3752],[104.1857,-0.3886],[104.1884,-0.3862],[104.1963,-0.3881],[104.2017,-0.3833],[104.2069,-0.3837],[104.211,-0.3889],[104.2147,-0.3855],[104.2209,-0.3904],[104.2278,-0.3876],[104.2322,-0.388],[104.2344,-0.3832],[104.2333,-0.3775],[104.2295,-0.3738],[104.2341,-0.3695],[104.2296,-0.3644],[104.222,-0.3683],[104.2099,-0.3685],[104.2057,-0.3725],[104.2038,-0.3687],[104.2,-0.3683],[104.1895,-0.3631]],[[104.4335,-0.3569],[104.4332,-0.3524],[104.4276,-0.3497],[104.4256,-0.3574],[104.4335,-0.3569]],[[104.2703,-0.3425],[104.2663,-0.3424],[104.2615,-0.3466],[104.2589,-0.354],[104.2583,-0.362],[104.2666,-0.3635],[104.2718,-0.3583],[104.2728,-0.3516],[104.2698,-0.3473],[104.2703,-0.3425]],[[104.1694,-0.343],[104.1565,-0.338],[104.1544,-0.3416],[104.1485,-0.3467],[104.1427,-0.3488],[104.1442,-0.3594],[104.147,-0.3619],[104.1577,-0.3647],[104.1641,-0.3608],[104.1634,-0.3547],[104.1669,-0.3541],[104.1729,-0.3566],[104.1772,-0.3518],[104.1739,-0.3443],[104.1694,-0.343]],[[104.4853,-0.3399],[104.4826,-0.3354],[104.4781,-0.3349],[104.4734,-0.3383],[104.4671,-0.3402],[104.4618,-0.3401],[104.4517,-0.3435],[104.4487,-0.3375],[104.4409,-0.3395],[104.4369,-0.3441],[104.4371,-0.3503],[104.4347,-0.3562],[104.4276,-0.3592],[104.4258,-0.3656],[104.4312,-0.3678],[104.432,-0.381],[104.4262,-0.388],[104.4221,-0.3884],[104.4187,-0.3952],[104.4145,-0.4004],[104.4018,-0.4068],[104.3845,-0.4127],[104.3795,-0.4055],[104.3752,-0.4035],[104.3652,-0.4077],[104.3583,-0.4055],[104.3506,-0.3968],[104.3495,-0.3898],[104.3409,-0.3945],[104.3442,-0.4077],[104.3378,-0.4155],[104.34,-0.4228],[104.3462,-0.4349],[104.3426,-0.444],[104.3391,-0.4395],[104.3311,-0.4408],[104.3288,-0.4339],[104.3236,-0.4311],[104.3224,-0.4227],[104.3195,-0.419],[104.3135,-0.417],[104.3167,-0.4068],[104.323,-0.3978],[104.3281,-0.3936],[104.3342,-0.3919],[104.3375,-0.3885],[104.3345,-0.3804],[104.3369,-0.3783],[104.3356,-0.3735],[104.3308,-0.3647],[104.3274,-0.3619],[104.3288,-0.3518],[104.323,-0.3465],[104.3181,-0.3505],[104.3208,-0.3571],[104.3185,-0.3657],[104.3179,-0.3737],[104.3143,-0.3767],[104.3116,-0.3841],[104.3118,-0.3883],[104.3074,-0.3917],[104.2929,-0.3968],[104.2773,-0.3962],[104.2761,-0.4006],[104.2772,-0.4072],[104.2731,-0.4147],[104.2748,-0.4214],[104.2674,-0.4289],[104.2693,-0.432],[104.2688,-0.4415],[104.2629,-0.4499],[104.263,-0.4559],[104.2579,-0.458],[104.2625,-0.4648],[104.2589,-0.4685],[104.2593,-0.4762],[104.2553,-0.4781],[104.2512,-0.4768],[104.2488,-0.4898],[104.2539,-0.4947],[104.2647,-0.5022],[104.2715,-0.5095],[104.2777,-0.5121],[104.281,-0.5168],[104.287,-0.5215],[104.2991,-0.5346],[104.3095,-0.5404],[104.3169,-0.5369],[104.3196,-0.5402],[104.3228,-0.5502],[104.3237,-0.557],[104.3263,-0.5621],[104.3272,-0.5712],[104.3317,-0.5758],[104.3315,-0.5815],[104.3381,-0.6122],[104.3421,-0.6149],[104.3439,-0.6259],[104.3418,-0.632],[104.342,-0.6406],[104.3441,-0.6474],[104.3424,-0.6565],[104.3462,-0.6595],[104.3474,-0.6657],[104.3541,-0.6706],[104.3593,-0.6826],[104.367,-0.6822],[104.3806,-0.6745],[104.382,-0.6715],[104.3891,-0.667],[104.3875,-0.6617],[104.3831,-0.6555],[104.3873,-0.6419],[104.3958,-0.6292],[104.393,-0.6242],[104.3944,-0.6109],[104.3977,-0.6012],[104.4073,-0.5944],[104.4146,-0.5913],[104.4235,-0.59],[104.4304,-0.5836],[104.4402,-0.5868],[104.4449,-0.5942],[104.4497,-0.6083],[104.4548,-0.6198],[104.4572,-0.6223],[104.4649,-0.6235],[104.472,-0.6284],[104.4744,-0.6371],[104.4845,-0.6403],[104.4922,-0.6449],[104.5021,-0.645],[104.5052,-0.6423],[104.5076,-0.6234],[104.5083,-0.6132],[104.5069,-0.6048],[104.5098,-0.5926],[104.5168,-0.574],[104.5235,-0.5637],[104.5284,-0.5588],[104.5299,-0.5517],[104.5351,-0.5392],[104.547,-0.5221],[104.5594,-0.5073],[104.5652,-0.5018],[104.5743,-0.4959],[104.5807,-0.494],[104.5853,-0.4967],[104.5928,-0.4917],[104.5925,-0.4852],[104.5965,-0.479],[104.6002,-0.4693],[104.5967,-0.458],[104.5928,-0.4567],[104.5861,-0.4511],[104.5804,-0.4507],[104.5743,-0.4458],[104.57,-0.4382],[104.567,-0.4269],[104.5638,-0.4204],[104.5593,-0.4184],[104.5569,-0.4113],[104.5524,-0.4094],[104.5436,-0.3964],[104.5411,-0.3914],[104.5392,-0.3784],[104.5391,-0.371],[104.5284,-0.3631],[104.5229,-0.3614],[104.5166,-0.3639],[104.5058,-0.3629],[104.4861,-0.3508],[104.4851,-0.3468],[104.481,-0.3439],[104.4853,-0.3399]],[[104.2338,-0.331],[104.228,-0.3308],[104.2241,-0.3355],[104.2246,-0.339],[104.2214,-0.3425],[104.229,-0.3493],[104.2368,-0.3506],[104.2387,-0.3428],[104.2388,-0.3347],[104.2338,-0.331]],[[104.1247,-0.3048],[104.1197,-0.3035],[104.1177,-0.3057],[104.1192,-0.3123],[104.1247,-0.3048]],[[104.4716,-0.2774],[104.4599,-0.2812],[104.4579,-0.2833],[104.4483,-0.283],[104.4278,-0.2895],[104.4252,-0.2874],[104.4101,-0.2839],[104.4069,-0.2805],[104.3989,-0.2859],[104.3918,-0.2853],[104.3883,-0.2969],[104.3929,-0.3065],[104.3965,-0.3052],[104.4061,-0.3098],[104.4152,-0.3218],[104.4205,-0.324],[104.4252,-0.3229],[104.4323,-0.3237],[104.445,-0.3229],[104.4544,-0.3244],[104.4607,-0.3283],[104.4615,-0.3194],[104.4648,-0.316],[104.4709,-0.3195],[104.4774,-0.3197],[104.4855,-0.3175],[104.486,-0.3129],[104.492,-0.306],[104.4839,-0.2937],[104.4832,-0.2828],[104.4762,-0.278],[104.4716,-0.2774]],[[104.4555,-0.1567],[104.4543,-0.1503],[104.4493,-0.1528],[104.4489,-0.1589],[104.4555,-0.1567]],[[104.9172,-0.1258],[104.9161,-0.136],[104.9144,-0.14],[104.9233,-0.1388],[104.9249,-0.1326],[104.9172,-0.1258]],[[104.7627,-0.149],[104.7609,-0.1421],[104.7547,-0.137],[104.7552,-0.1335],[104.7505,-0.129],[104.749,-0.1232],[104.7447,-0.1143],[104.7422,-0.1125],[104.7299,-0.0957],[104.7293,-0.1038],[104.7333,-0.1112],[104.7422,-0.1331],[104.7439,-0.1388],[104.7539,-0.1444],[104.757,-0.1517],[104.7627,-0.149]],[[104.8442,-0.0708],[104.8458,-0.062],[104.8435,-0.0585],[104.8394,-0.0578],[104.8355,-0.0534],[104.8318,-0.0525],[104.8303,-0.0567],[104.834,-0.0604],[104.8365,-0.0673],[104.8442,-0.0708]],[[104.703,-0.0571],[104.7017,-0.0539],[104.6951,-0.0508],[104.6955,-0.0609],[104.7012,-0.0684],[104.7105,-0.0725],[104.7217,-0.0841],[104.7281,-0.0862],[104.7201,-0.0763],[104.7199,-0.0741],[104.7108,-0.0659],[104.709,-0.0589],[104.703,-0.0571]],[[104.8455,-0.0407],[104.8433,-0.0356],[104.8393,-0.0406],[104.8336,-0.0425],[104.8377,-0.0531],[104.8431,-0.0554],[104.8464,-0.0632],[104.8496,-0.065],[104.859,-0.0663],[104.8606,-0.0688],[104.867,-0.0715],[104.8684,-0.075],[104.8772,-0.0774],[104.8695,-0.0635],[104.8583,-0.0592],[104.8584,-0.0554],[104.8506,-0.0476],[104.8455,-0.0407]],[[104.83,-0.0136],[104.8258,-0.0155],[104.826,-0.0204],[104.8301,-0.0213],[104.83,-0.0136]],[[104.6734,-0.0272],[104.6618,-0.013],[104.6612,-0.0191],[104.6669,-0.0257],[104.6734,-0.0272]],[[104.5068,0.0077],[104.5026,0.0003],[104.507,-0.0041],[104.5122,0.0001],[104.5068,0.0077]],[[104.5341,0.0243],[104.5315,0.0192],[104.5241,0.0172],[104.5178,0.0133],[104.5136,0.0134],[104.5198,0.0015],[104.526,-0.0003],[104.5382,0.003],[104.5454,0.0067],[104.5404,0.0169],[104.5363,0.0184],[104.5341,0.0243]],[[104.5827,0.0053],[104.5712,0.0146],[104.5648,0.0183],[104.558,0.0242],[104.5537,0.0295],[104.5486,0.0292],[104.5478,0.0179],[104.5495,0.0124],[104.5529,0.009],[104.5543,0.003],[104.5421,-0.0029],[104.5361,-0.0111],[104.527,-0.0124],[104.5184,-0.0055],[104.5134,-0.0087],[104.5058,-0.0064],[104.5022,-0.0105],[104.4975,-0.0114],[104.4962,-0.0213],[104.5011,-0.0229],[104.5021,-0.0306],[104.5012,-0.0404],[104.5019,-0.0464],[104.4994,-0.0517],[104.5092,-0.0555],[104.5102,-0.0606],[104.508,-0.0641],[104.5107,-0.068],[104.51,-0.0765],[104.508,-0.0828],[104.508,-0.0898],[104.5096,-0.1004],[104.5087,-0.1128],[104.5059,-0.1286],[104.5033,-0.132],[104.49,-0.1358],[104.4834,-0.135],[104.4805,-0.1386],[104.4727,-0.1359],[104.4674,-0.1417],[104.4706,-0.1461],[104.4769,-0.1509],[104.4765,-0.1552],[104.4709,-0.1621],[104.4638,-0.1599],[104.4623,-0.1573],[104.4518,-0.1605],[104.4565,-0.1659],[104.4511,-0.1679],[104.4523,-0.1756],[104.4478,-0.1827],[104.4412,-0.1776],[104.4272,-0.1834],[104.4259,-0.1884],[104.4264,-0.1997],[104.4295,-0.2027],[104.4283,-0.2064],[104.4308,-0.2105],[104.4243,-0.2236],[104.4284,-0.2306],[104.4295,-0.2369],[104.4345,-0.2358],[104.4423,-0.2396],[104.4436,-0.2432],[104.4478,-0.2457],[104.4528,-0.2439],[104.4631,-0.247],[104.4705,-0.2413],[104.482,-0.2431],[104.4899,-0.2409],[104.4993,-0.2423],[104.5039,-0.246],[104.5052,-0.2519],[104.5025,-0.256],[104.5022,-0.2616],[104.505,-0.2628],[104.505,-0.2683],[104.5186,-0.2752],[104.5241,-0.2745],[104.5309,-0.2691],[104.5406,-0.2593],[104.5572,-0.2499],[104.5607,-0.2436],[104.5703,-0.2401],[104.5813,-0.242],[104.5855,-0.2451],[104.5939,-0.2466],[104.5998,-0.2498],[104.5999,-0.2444],[104.603,-0.2415],[104.6163,-0.2374],[104.6305,-0.2299],[104.6332,-0.2259],[104.648,-0.2173],[104.6679,-0.21],[104.6828,-0.2062],[104.6995,-0.2047],[104.7072,-0.2076],[104.7241,-0.2186],[104.7364,-0.2326],[104.7375,-0.2295],[104.7434,-0.2295],[104.7473,-0.233],[104.7538,-0.2347],[104.7532,-0.2543],[104.7634,-0.2593],[104.766,-0.2628],[104.7712,-0.264],[104.7757,-0.2597],[104.7828,-0.2598],[104.7889,-0.2619],[104.7922,-0.2654],[104.7941,-0.2725],[104.7895,-0.277],[104.7919,-0.281],[104.798,-0.2834],[104.804,-0.2839],[104.8095,-0.2883],[104.8153,-0.2963],[104.8195,-0.2905],[104.8246,-0.2916],[104.8286,-0.2983],[104.8259,-0.3041],[104.8316,-0.3106],[104.8413,-0.3164],[104.8501,-0.3229],[104.8528,-0.317],[104.8592,-0.3138],[104.8654,-0.3135],[104.8746,-0.3176],[104.8799,-0.3214],[104.8814,-0.3258],[104.8869,-0.3246],[104.8932,-0.3264],[104.8974,-0.3249],[104.9032,-0.3257],[104.9081,-0.329],[104.9132,-0.337],[104.9169,-0.3369],[104.9213,-0.3301],[104.9269,-0.3245],[104.9125,-0.32],[104.9079,-0.3138],[104.9034,-0.3108],[104.9043,-0.3022],[104.9,-0.2982],[104.9006,-0.2889],[104.9056,-0.2874],[104.9122,-0.2826],[104.9163,-0.2779],[104.9236,-0.2773],[104.9368,-0.2798],[104.945,-0.2869],[104.9481,-0.2882],[104.9519,-0.2944],[104.9553,-0.293],[104.964,-0.293],[104.97,-0.2972],[104.9734,-0.2969],[104.9822,-0.3002],[104.9828,-0.3073],[104.9853,-0.3091],[104.9908,-0.3079],[104.9981,-0.3036],[104.9975,-0.2991],[104.9936,-0.2894],[104.9985,-0.2849],[104.9991,-0.2805],[104.9911,-0.2757],[104.9842,-0.2785],[104.9797,-0.2819],[104.9735,-0.279],[104.9664,-0.2802],[104.9591,-0.2761],[104.9537,-0.275],[104.9445,-0.2695],[104.9254,-0.2545],[104.9124,-0.2416],[104.8966,-0.2296],[104.887,-0.2179],[104.879,-0.1959],[104.8718,-0.1925],[104.8666,-0.1886],[104.8602,-0.1776],[104.8589,-0.1722],[104.8466,-0.1545],[104.8425,-0.1524],[104.8345,-0.1407],[104.8269,-0.1337],[104.8246,-0.1429],[104.819,-0.1513],[104.8137,-0.1547],[104.8164,-0.1648],[104.8146,-0.1714],[104.8164,-0.1858],[104.8237,-0.1904],[104.825,-0.1968],[104.8211,-0.2011],[104.8108,-0.2062],[104.8033,-0.2073],[104.7905,-0.2069],[104.7864,-0.2045],[104.7821,-0.1985],[104.7781,-0.1956],[104.7694,-0.1975],[104.7573,-0.1956],[104.7508,-0.1898],[104.7438,-0.1814],[104.7399,-0.1715],[104.7371,-0.1676],[104.736,-0.1549],[104.7365,-0.1487],[104.7341,-0.1409],[104.7284,-0.1366],[104.7194,-0.1347],[104.7166,-0.1328],[104.7082,-0.1196],[104.7015,-0.114],[104.696,-0.0988],[104.6866,-0.087],[104.6829,-0.0836],[104.6805,-0.0871],[104.6704,-0.0852],[104.6613,-0.0933],[104.6686,-0.1094],[104.6649,-0.113],[104.6613,-0.1127],[104.6562,-0.1059],[104.65,-0.1041],[104.6421,-0.096],[104.6362,-0.0966],[104.6334,-0.0948],[104.6263,-0.0817],[104.6281,-0.0764],[104.6309,-0.0758],[104.6382,-0.0798],[104.6389,-0.0832],[104.651,-0.0879],[104.657,-0.0854],[104.6622,-0.0852],[104.6691,-0.0814],[104.6686,-0.0755],[104.6603,-0.0638],[104.6546,-0.0525],[104.6423,-0.0434],[104.6427,-0.0406],[104.6382,-0.0346],[104.6323,-0.0346],[104.6267,-0.0312],[104.6207,-0.0231],[104.6077,-0.012],[104.6019,-0.0081],[104.5952,-0.0013],[104.5827,0.0053]],[[104.5186,0.0418],[104.5123,0.0385],[104.5144,0.0313],[104.522,0.0372],[104.5186,0.0418]],[[104.6592,0.0324],[104.6592,0.0335],[104.6477,0.0465],[104.6455,0.0454],[104.6518,0.0375],[104.6592,0.0324]],[[104.5169,0.0466],[104.5142,0.0505],[104.5094,0.0497],[104.5076,0.0466],[104.4973,0.044],[104.492,0.0398],[104.4902,0.0349],[104.4971,0.0262],[104.5058,0.0321],[104.5131,0.0444],[104.5169,0.0466]],[[104.5284,0.0528],[104.5249,0.0543],[104.5215,0.0507],[104.5296,0.038],[104.5336,0.0348],[104.5429,0.0368],[104.5404,0.0423],[104.5284,0.0528]],[[104.7797,0.0432],[104.7755,0.0464],[104.772,0.0531],[104.7725,0.0567],[104.7684,0.0631],[104.7653,0.0631],[104.7657,0.0457],[104.7557,0.0431],[104.7398,0.0472],[104.735,0.0433],[104.7397,0.0324],[104.7532,0.0303],[104.7623,0.0351],[104.7725,0.0334],[104.7784,0.031],[104.7844,0.0316],[104.7797,0.0432]],[[104.5008,0.0609],[104.4946,0.0627],[104.4949,0.0578],[104.4988,0.0493],[104.5079,0.0504],[104.5084,0.0526],[104.5035,0.0599],[104.5008,0.0609]],[[104.5224,0.0532],[104.5254,0.0564],[104.5204,0.0633],[104.5102,0.0696],[104.5089,0.0634],[104.5161,0.0551],[104.5224,0.0532]],[[104.7495,0.0866],[104.7393,0.0853],[104.7392,0.0775],[104.7436,0.0751],[104.7495,0.0756],[104.7469,0.0824],[104.7495,0.0866]],[[104.5005,0.0727],[104.4994,0.0793],[104.4876,0.092],[104.4814,0.0897],[104.4826,0.0838],[104.4987,0.0722],[104.5005,0.0727]],[[104.5616,0.0724],[104.5589,0.0802],[104.5531,0.087],[104.5464,0.0926],[104.5421,0.1003],[104.5389,0.1032],[104.5341,0.1002],[104.5343,0.0959],[104.5411,0.0919],[104.5463,0.0846],[104.5524,0.0804],[104.5586,0.0738],[104.5616,0.0724]],[[104.5267,0.1072],[104.521,0.1068],[104.5215,0.1028],[104.5254,0.1017],[104.5267,0.1072]],[[104.4883,0.1255],[104.4907,0.1168],[104.4958,0.1145],[104.4954,0.1199],[104.4919,0.1247],[104.4883,0.1255]],[[104.2297,0.1369],[104.222,0.1353],[104.2339,0.1306],[104.2358,0.1336],[104.2297,0.1369]],[[104.4785,0.096],[104.4795,0.1028],[104.4781,0.1078],[104.4702,0.1145],[104.4639,0.1232],[104.4554,0.1371],[104.4498,0.1386],[104.446,0.1267],[104.4514,0.1236],[104.4544,0.1168],[104.4601,0.115],[104.4657,0.1057],[104.4706,0.1006],[104.4785,0.096]],[[104.5454,0.1392],[104.5445,0.1359],[104.5505,0.1303],[104.5525,0.132],[104.5454,0.1392]],[[104.4804,0.1407],[104.4755,0.136],[104.4773,0.1301],[104.4802,0.131],[104.4824,0.1362],[104.4804,0.1407]],[[104.5054,0.1376],[104.4976,0.1464],[104.4936,0.1468],[104.4894,0.1422],[104.4899,0.1354],[104.496,0.1274],[104.5025,0.1254],[104.5081,0.1209],[104.5106,0.1135],[104.515,0.1091],[104.5162,0.116],[104.5201,0.1148],[104.5177,0.124],[104.5098,0.1288],[104.5084,0.1364],[104.5054,0.1376]],[[104.2051,0.1433],[104.2059,0.1488],[104.2003,0.1473],[104.2051,0.1433]],[[104.4897,0.1435],[104.4928,0.1481],[104.4896,0.1509],[104.4841,0.1472],[104.4842,0.1428],[104.4897,0.1435]],[[104.471,0.144],[104.4708,0.1478],[104.4663,0.1532],[104.4644,0.1503],[104.4675,0.1444],[104.471,0.144]],[[104.4391,0.1455],[104.4421,0.1498],[104.4302,0.1595],[104.4241,0.1571],[104.4391,0.1455]],[[104.4065,0.1557],[104.4068,0.1591],[104.4026,0.162],[104.3987,0.1576],[104.4012,0.1501],[104.3968,0.1444],[104.4022,0.1349],[104.4026,0.1308],[104.4082,0.1224],[104.4106,0.1248],[104.4192,0.1207],[104.4151,0.1185],[104.4131,0.1144],[104.418,0.1125],[104.4271,0.1005],[104.4224,0.0995],[104.4172,0.1015],[104.403,0.1151],[104.3981,0.1125],[104.3929,0.1122],[104.3818,0.1237],[104.378,0.1238],[104.3861,0.114],[104.3935,0.1011],[104.4005,0.0917],[104.4079,0.0937],[104.4111,0.0905],[104.4276,0.0696],[104.436,0.0652],[104.4406,0.0581],[104.4437,0.0497],[104.4501,0.0432],[104.4631,0.0319],[104.4668,0.0261],[104.4692,0.0271],[104.4769,0.0207],[104.4808,0.0154],[104.4872,0.0163],[104.4949,0.0144],[104.4943,0.0203],[104.4912,0.0259],[104.486,0.0303],[104.4844,0.0391],[104.4765,0.0342],[104.4773,0.043],[104.472,0.0458],[104.4692,0.0504],[104.4654,0.0512],[104.4627,0.0563],[104.4747,0.0549],[104.4739,0.0507],[104.4879,0.0453],[104.4882,0.0502],[104.4922,0.0585],[104.4895,0.0627],[104.4934,0.0658],[104.4911,0.0734],[104.4805,0.079],[104.4785,0.0856],[104.4753,0.0898],[104.474,0.0963],[104.4659,0.1025],[104.4568,0.1128],[104.4503,0.1153],[104.4418,0.1282],[104.4376,0.1311],[104.4314,0.1379],[104.4262,0.1405],[104.4235,0.1461],[104.4181,0.1462],[104.4171,0.151],[104.4065,0.1557]],[[104.4984,0.159],[104.5016,0.1608],[104.4985,0.1663],[104.494,0.1659],[104.4946,0.159],[104.4984,0.159]],[[104.4789,0.162],[104.4718,0.1673],[104.4654,0.1662],[104.4652,0.1603],[104.4697,0.1611],[104.476,0.1584],[104.4789,0.162]],[[104.2878,0.1616],[104.2817,0.1637],[104.2777,0.1697],[104.2756,0.166],[104.2761,0.1613],[104.2795,0.1604],[104.2806,0.1557],[104.2884,0.1514],[104.2935,0.1503],[104.2923,0.1586],[104.2878,0.1616]],[[104.4852,0.1727],[104.4773,0.1728],[104.4736,0.1684],[104.4764,0.1643],[104.4835,0.1682],[104.4852,0.1727]],[[104.4523,0.1643],[104.4523,0.1725],[104.447,0.1707],[104.4477,0.1657],[104.4523,0.1643]],[[104.3315,0.1333],[104.3273,0.1392],[104.3187,0.1483],[104.3128,0.1521],[104.3079,0.1585],[104.2985,0.1674],[104.2919,0.1758],[104.2897,0.1738],[104.2956,0.1652],[104.2993,0.156],[104.2998,0.1486],[104.2953,0.1466],[104.2929,0.1419],[104.2976,0.1397],[104.2968,0.1365],[104.3015,0.1325],[104.302,0.1266],[104.3076,0.1283],[104.3106,0.1332],[104.3155,0.1315],[104.3187,0.1226],[104.3231,0.1137],[104.3239,0.1085],[104.3327,0.1053],[104.3361,0.106],[104.3374,0.1214],[104.3369,0.1293],[104.3315,0.1333]],[[104.4961,0.1688],[104.4889,0.1766],[104.4887,0.1698],[104.4961,0.1688]],[[104.1888,0.1695],[104.1826,0.1753],[104.1826,0.1677],[104.1886,0.1656],[104.1888,0.1695]],[[104.2539,0.1696],[104.2566,0.1726],[104.2536,0.1793],[104.2486,0.1729],[104.2539,0.1696]],[[104.4504,0.1791],[104.4513,0.1832],[104.4473,0.188],[104.4429,0.1853],[104.4504,0.1791]],[[104.3642,0.1619],[104.3654,0.1647],[104.3623,0.1717],[104.3553,0.1779],[104.3506,0.1894],[104.346,0.1861],[104.3459,0.1803],[104.3528,0.1719],[104.3603,0.1577],[104.3694,0.1471],[104.3767,0.134],[104.3835,0.1299],[104.3917,0.1164],[104.3976,0.121],[104.3922,0.1354],[104.3835,0.1426],[104.3877,0.144],[104.3807,0.1568],[104.3745,0.1647],[104.3642,0.1619]],[[104.3635,0.1873],[104.363,0.1843],[104.3671,0.1776],[104.37,0.1845],[104.3635,0.1873]],[[104.2315,0.2006],[104.2272,0.1973],[104.2233,0.1971],[104.2141,0.1921],[104.2166,0.1872],[104.2133,0.1843],[104.2123,0.1795],[104.207,0.1777],[104.2069,0.1739],[104.2,0.1719],[104.2007,0.1667],[104.2056,0.1666],[104.2101,0.1632],[104.2156,0.1656],[104.2194,0.1642],[104.2255,0.1552],[104.2297,0.1554],[104.2299,0.1612],[104.2395,0.1677],[104.241,0.1716],[104.2414,0.1808],[104.2359,0.1898],[104.2375,0.1947],[104.2347,0.2001],[104.2315,0.2006]],[[104.3324,0.2076],[104.3315,0.2031],[104.3372,0.1895],[104.3372,0.1859],[104.3407,0.1777],[104.3434,0.1787],[104.3422,0.1848],[104.3375,0.1949],[104.3363,0.2009],[104.3324,0.2076]],[[104.4145,0.2113],[104.4158,0.2146],[104.4105,0.2183],[104.4069,0.2139],[104.4104,0.211],[104.4145,0.2113]],[[104.4809,0.2238],[104.4769,0.2225],[104.4814,0.2153],[104.486,0.2134],[104.4925,0.2051],[104.4988,0.2018],[104.5042,0.2012],[104.496,0.2126],[104.4911,0.214],[104.4864,0.22],[104.4809,0.2238]],[[104.4713,0.2238],[104.4611,0.232],[104.4595,0.2307],[104.4713,0.2238]],[[104.525,0.2356],[104.5252,0.239],[104.5206,0.2416],[104.5178,0.2461],[104.5128,0.247],[104.5135,0.2407],[104.5167,0.2371],[104.523,0.224],[104.5249,0.2183],[104.5211,0.2172],[104.5161,0.2193],[104.5156,0.2252],[104.5071,0.2287],[104.4985,0.2389],[104.4887,0.2457],[104.4852,0.2433],[104.4838,0.238],[104.4786,0.2423],[104.4759,0.2382],[104.4796,0.2334],[104.4882,0.2263],[104.4934,0.2168],[104.5027,0.211],[104.5085,0.2035],[104.5161,0.1993],[104.5181,0.1955],[104.5292,0.1886],[104.5254,0.185],[104.5196,0.1908],[104.5112,0.1948],[104.5061,0.1908],[104.5179,0.1781],[104.5243,0.1696],[104.5266,0.1644],[104.5307,0.1603],[104.5363,0.1516],[104.5427,0.1461],[104.5495,0.1543],[104.5501,0.1602],[104.5463,0.1601],[104.5436,0.1651],[104.5452,0.1682],[104.5511,0.1643],[104.554,0.1597],[104.5538,0.1543],[104.5569,0.146],[104.568,0.1405],[104.5603,0.1394],[104.5549,0.1414],[104.5493,0.1495],[104.5463,0.1465],[104.5459,0.1412],[104.5522,0.1346],[104.5555,0.1283],[104.5543,0.126],[104.5622,0.1182],[104.5752,0.107],[104.583,0.1019],[104.587,0.0976],[104.5919,0.0961],[104.5962,0.0896],[104.6024,0.0844],[104.6154,0.079],[104.6184,0.081],[104.6138,0.0874],[104.6253,0.0881],[104.6294,0.0795],[104.6214,0.0752],[104.6376,0.0615],[104.6448,0.0524],[104.6498,0.0507],[104.6576,0.0405],[104.6716,0.0286],[104.683,0.021],[104.6963,0.0158],[104.7015,0.0182],[104.7017,0.0221],[104.7098,0.0379],[104.7035,0.0479],[104.6966,0.0503],[104.6892,0.0508],[104.676,0.0653],[104.6712,0.0665],[104.6637,0.0738],[104.6591,0.0812],[104.6503,0.0931],[104.637,0.1064],[104.6309,0.1115],[104.6219,0.1244],[104.617,0.1297],[104.6096,0.1399],[104.6083,0.1456],[104.6049,0.1509],[104.594,0.1603],[104.5917,0.1613],[104.5854,0.1715],[104.5738,0.1819],[104.5688,0.1895],[104.5565,0.2035],[104.5449,0.2125],[104.5405,0.2194],[104.5329,0.2267],[104.5282,0.2337],[104.525,0.2356]],[[104.4449,0.2479],[104.4408,0.245],[104.4502,0.2391],[104.4477,0.2346],[104.4552,0.2334],[104.464,0.2365],[104.4562,0.2453],[104.4449,0.2479]],[[104.5029,0.2559],[104.5036,0.2521],[104.5085,0.2479],[104.5113,0.2513],[104.5075,0.2559],[104.5029,0.2559]],[[104.3543,0.2664],[104.3484,0.2658],[104.35,0.261],[104.3581,0.2568],[104.3588,0.2625],[104.3543,0.2664]],[[104.4922,0.2659],[104.4904,0.263],[104.4941,0.2598],[104.5029,0.2595],[104.4922,0.2659]],[[104.3757,0.2697],[104.3732,0.2678],[104.3728,0.2554],[104.3771,0.2597],[104.3785,0.2678],[104.3757,0.2697]],[[104.3538,0.2742],[104.3507,0.2733],[104.3624,0.2615],[104.3667,0.2634],[104.3653,0.2687],[104.3605,0.2695],[104.3538,0.2742]],[[104.3307,0.2808],[104.3297,0.2783],[104.3437,0.2669],[104.3481,0.2671],[104.3488,0.2726],[104.3462,0.2762],[104.3427,0.2753],[104.3307,0.2808]],[[104.4313,0.2897],[104.4257,0.2901],[104.4192,0.2855],[104.4185,0.2814],[104.4242,0.2786],[104.4319,0.2831],[104.4313,0.2897]],[[104.4081,0.2868],[104.4076,0.2907],[104.4025,0.2908],[104.4031,0.2858],[104.4081,0.2868]],[[104.3384,0.2898],[104.3317,0.2929],[104.3299,0.29],[104.332,0.2847],[104.3356,0.2837],[104.3424,0.2768],[104.3472,0.2814],[104.3451,0.2883],[104.3384,0.2898]],[[104.4215,0.2957],[104.4147,0.2953],[104.4127,0.2878],[104.419,0.2892],[104.4215,0.2957]],[[104.4404,0.3075],[104.4372,0.304],[104.4446,0.3],[104.4456,0.3038],[104.4404,0.3075]],[[104.3481,0.312],[104.3427,0.3166],[104.3373,0.3188],[104.3324,0.3239],[104.3254,0.3273],[104.3231,0.3164],[104.3285,0.3059],[104.3357,0.2998],[104.3404,0.302],[104.3434,0.2943],[104.3549,0.2891],[104.352,0.2855],[104.3546,0.2789],[104.3649,0.2738],[104.3675,0.2799],[104.3753,0.2796],[104.3811,0.2773],[104.3864,0.2785],[104.3839,0.2826],[104.3825,0.2902],[104.3794,0.2895],[104.3767,0.2939],[104.3732,0.2924],[104.3727,0.3007],[104.3691,0.3007],[104.3684,0.3062],[104.3627,0.3059],[104.3481,0.312]],[[104.3153,0.3399],[104.3125,0.3448],[104.3025,0.3463],[104.3034,0.3393],[104.3084,0.3294],[104.3083,0.3222],[104.302,0.3153],[104.3018,0.3094],[104.3094,0.3087],[104.3121,0.3128],[104.3163,0.3116],[104.3209,0.3138],[104.3194,0.3176],[104.3206,0.3224],[104.3239,0.3251],[104.3218,0.3366],[104.3153,0.3399]],[[104.5574,0.3483],[104.5511,0.3465],[104.5524,0.339],[104.5559,0.3345],[104.5592,0.339],[104.5663,0.3422],[104.5574,0.3483]],[[104.4722,0.3607],[104.467,0.366],[104.4616,0.3611],[104.4575,0.3533],[104.4603,0.3485],[104.4635,0.3479],[104.4759,0.3515],[104.4792,0.3489],[104.4876,0.3494],[104.4817,0.3574],[104.4722,0.3607]],[[104.4239,0.369],[104.4221,0.3655],[104.4299,0.3604],[104.4308,0.3693],[104.4239,0.369]],[[104.2561,0.3753],[104.2535,0.3722],[104.258,0.3686],[104.2639,0.3686],[104.2561,0.3753]],[[104.332,0.3761],[104.328,0.3727],[104.3289,0.3672],[104.3332,0.3619],[104.348,0.3491],[104.3546,0.3447],[104.3463,0.344],[104.3386,0.3408],[104.3389,0.3357],[104.3542,0.3137],[104.3589,0.3123],[104.3654,0.3141],[104.3661,0.3097],[104.3702,0.3101],[104.3791,0.3137],[104.3782,0.3062],[104.3791,0.3006],[104.3892,0.3004],[104.3906,0.2896],[104.3936,0.2893],[104.3972,0.2959],[104.3997,0.292],[104.4111,0.2938],[104.42,0.2978],[104.4181,0.3011],[104.4137,0.3011],[104.4101,0.3091],[104.4076,0.3078],[104.3974,0.313],[104.4034,0.3163],[104.4084,0.3135],[104.4164,0.3117],[104.4226,0.3079],[104.4251,0.3089],[104.4342,0.3074],[104.4325,0.3126],[104.4229,0.319],[104.4218,0.3278],[104.4166,0.3315],[104.4044,0.334],[104.395,0.3374],[104.3889,0.3438],[104.38,0.3483],[104.3728,0.3506],[104.3687,0.3553],[104.3515,0.3647],[104.3431,0.3677],[104.341,0.3711],[104.3356,0.3717],[104.332,0.3761]],[[104.3272,0.3753],[104.3228,0.3754],[104.3188,0.3721],[104.3239,0.369],[104.3272,0.3753]],[[104.4688,0.3831],[104.4632,0.3803],[104.4721,0.3745],[104.4774,0.3662],[104.4842,0.3659],[104.4842,0.3705],[104.4783,0.3754],[104.4726,0.3782],[104.4688,0.3831]],[[104.4313,0.3844],[104.4248,0.3849],[104.4135,0.3826],[104.4092,0.3786],[104.4107,0.3739],[104.4159,0.372],[104.4182,0.3759],[104.4247,0.3755],[104.4264,0.3776],[104.4328,0.3727],[104.4357,0.3744],[104.4313,0.3844]],[[104.3201,0.3846],[104.307,0.3843],[104.3081,0.3815],[104.3138,0.3789],[104.3162,0.3735],[104.3211,0.3757],[104.3201,0.3846]],[[104.4382,0.4024],[104.4358,0.3994],[104.441,0.3945],[104.4423,0.3904],[104.4473,0.3913],[104.4569,0.3903],[104.4563,0.394],[104.4517,0.4009],[104.4466,0.4029],[104.4382,0.4024]],[[104.5167,0.4304],[104.5117,0.4286],[104.5172,0.4161],[104.5173,0.4108],[104.5218,0.4009],[104.5216,0.3983],[104.5266,0.3815],[104.526,0.3719],[104.532,0.3611],[104.5372,0.365],[104.5338,0.3721],[104.5345,0.3759],[104.5318,0.387],[104.5343,0.3895],[104.5307,0.3947],[104.5293,0.4052],[104.5345,0.409],[104.5383,0.4149],[104.5425,0.4152],[104.5474,0.4108],[104.5598,0.4091],[104.5616,0.4141],[104.556,0.4133],[104.5528,0.4162],[104.5503,0.4224],[104.5434,0.4215],[104.5346,0.425],[104.531,0.4236],[104.5228,0.4239],[104.5173,0.4278],[104.5167,0.4304]],[[104.4154,0.4475],[104.4141,0.4513],[104.4082,0.4474],[104.4001,0.4459],[104.3934,0.4475],[104.3903,0.4438],[104.3938,0.4368],[104.3991,0.4411],[104.4081,0.4442],[104.4148,0.4435],[104.4154,0.4475]],[[104.3862,0.4525],[104.3829,0.4556],[104.3805,0.4483],[104.3774,0.4452],[104.3803,0.4392],[104.3851,0.4381],[104.3897,0.4442],[104.39,0.4522],[104.3862,0.4525]],[[104.4036,0.456],[104.3995,0.4563],[104.3982,0.4499],[104.4042,0.4495],[104.4091,0.4516],[104.4072,0.4554],[104.4036,0.456]],[[104.4073,0.4738],[104.3984,0.4723],[104.4034,0.4626],[104.409,0.4667],[104.4144,0.4623],[104.4201,0.46],[104.4259,0.4595],[104.425,0.4654],[104.4189,0.4701],[104.4119,0.4704],[104.4073,0.4738]],[[104.4496,0.4789],[104.4428,0.481],[104.4401,0.4785],[104.4556,0.4678],[104.4567,0.4776],[104.4496,0.4789]],[[104.3847,0.4969],[104.3855,0.4892],[104.3813,0.4857],[104.3746,0.4842],[104.3716,0.4803],[104.3828,0.4799],[104.3856,0.4846],[104.391,0.4878],[104.3903,0.4928],[104.3847,0.4969]],[[104.4113,0.51],[104.4089,0.5063],[104.4129,0.4997],[104.4163,0.5003],[104.4171,0.505],[104.4113,0.51]]]}},{"type":"Feature","properties":{"mhid":"1332:157","alt_name":"KABUPATEN KEPULAUAN ANAMBAS","latitude":3,"longitude":106,"sample_value":936},"geometry":{"type":"MultiLineString","coordinates":[[[105.883,2.3647],[105.8782,2.3622],[105.8781,2.3582],[105.8834,2.3559],[105.8863,2.3597],[105.883,2.3647]],[[106.0509,2.5151],[106.0492,2.5251],[106.04,2.5155],[106.0488,2.5134],[106.0509,2.5151]],[[106.2817,2.6201],[106.2787,2.6154],[106.2732,2.6136],[106.2748,2.6068],[106.2797,2.6114],[106.2825,2.617],[106.2817,2.6201]],[[106.2667,2.7258],[106.2607,2.7254],[106.2596,2.7222],[106.2527,2.7212],[106.2521,2.7155],[106.2564,2.7122],[106.2635,2.7158],[106.2667,2.7258]],[[106.1703,2.761],[106.1697,2.758],[106.1758,2.7458],[106.1803,2.7458],[106.1869,2.7433],[106.1932,2.7462],[106.1919,2.7526],[106.1856,2.7579],[106.1808,2.7569],[106.1782,2.7593],[106.1703,2.761]],[[106.0175,2.7909],[106.0139,2.7891],[106.0159,2.784],[106.0212,2.7837],[106.0204,2.7887],[106.0175,2.7909]],[[106.2095,2.8089],[106.2003,2.812],[106.1957,2.8104],[106.1934,2.8027],[106.1972,2.7967],[106.2025,2.7939],[106.2002,2.7898],[106.2162,2.7834],[106.2233,2.7666],[106.2209,2.764],[106.2146,2.7642],[106.2006,2.7615],[106.2023,2.7576],[106.2074,2.7588],[106.2139,2.7559],[106.2175,2.751],[106.2183,2.7459],[106.2257,2.7443],[106.2258,2.7385],[106.2334,2.7343],[106.238,2.7338],[106.2416,2.7273],[106.2467,2.7245],[106.248,2.7305],[106.2416,2.7384],[106.2478,2.7431],[106.2489,2.7536],[106.255,2.756],[106.2515,2.7615],[106.2441,2.7601],[106.2391,2.7612],[106.2394,2.765],[106.2476,2.7696],[106.2459,2.7768],[106.2366,2.7793],[106.2309,2.7869],[106.2269,2.7897],[106.2311,2.7939],[106.2304,2.7965],[106.2228,2.8001],[106.2271,2.8042],[106.226,2.8073],[106.2207,2.8063],[106.2167,2.8083],[106.2095,2.8089]],[[106.1184,2.8465],[106.1209,2.8418],[106.1243,2.844],[106.1222,2.8477],[106.1184,2.8465]],[[105.7924,2.8843],[105.7875,2.8842],[105.7852,2.8802],[105.79,2.877],[105.7924,2.8843]],[[105.6836,2.9239],[105.6786,2.9192],[105.6842,2.9122],[105.6881,2.9099],[105.691,2.915],[105.6951,2.917],[105.6898,2.9239],[105.6836,2.9239]],[[106.1294,2.938],[106.1254,2.9397],[106.1204,2.9379],[106.1145,2.9324],[106.1126,2.9274],[106.1145,2.9253],[106.1316,2.9284],[106.1372,2.9182],[106.1496,2.9193],[106.1504,2.9218],[106.1455,2.9305],[106.134,2.9374],[106.1294,2.938]],[[106.1831,2.9579],[106.1803,2.9587],[106.175,2.9525],[106.1802,2.9446],[106.1836,2.9458],[106.1883,2.9423],[106.1929,2.9506],[106.186,2.9508],[106.1831,2.9579]],[[106.1642,2.9737],[106.1607,2.9666],[106.1565,2.9658],[106.155,2.9602],[106.1574,2.9574],[106.1649,2.954],[106.1683,2.9559],[106.1696,2.961],[106.1682,2.9675],[106.1642,2.9737]],[[105.6932,2.9777],[105.6898,2.9761],[105.6916,2.9698],[105.6993,2.9696],[105.6986,2.9625],[105.7054,2.9592],[105.7085,2.9642],[105.7024,2.9747],[105.6983,2.9729],[105.6932,2.9777]],[[106.2512,3.0038],[106.2431,3.0028],[106.2394,2.9971],[106.2431,2.9946],[106.2455,2.9984],[106.2495,2.9984],[106.2512,3.0038]],[[106.1464,3.006],[106.1421,3.0046],[106.1367,2.9966],[106.1362,2.9906],[106.1382,2.9879],[106.1366,2.9806],[106.1417,2.9771],[106.1436,2.9891],[106.1495,2.9949],[106.149,3.0023],[106.1464,3.006]],[[105.8053,3.0086],[105.8022,3.0059],[105.8054,3.0019],[105.8125,2.9997],[105.8141,3.0042],[105.8053,3.0086]],[[106.4076,3.0372],[106.4068,3.032],[106.399,3.0379],[106.3976,3.0322],[106.3935,3.03],[106.3985,3.0198],[106.405,3.0207],[106.4067,3.0144],[106.4102,3.0167],[106.4161,3.0319],[106.4111,3.0303],[106.4113,3.0373],[106.4076,3.0372]],[[106.3856,3.0392],[106.3813,3.0383],[106.3802,3.0325],[106.3829,3.0259],[106.3877,3.0268],[106.387,3.0369],[106.3856,3.0392]],[[105.955,3.0342],[105.9548,3.0458],[105.9511,3.0419],[105.9505,3.0376],[105.9462,3.0288],[105.9517,3.0259],[105.9563,3.0324],[105.955,3.0342]],[[106.3932,3.0464],[106.3897,3.0443],[106.39,3.0396],[106.3945,3.0368],[106.3947,3.045],[106.3932,3.0464]],[[106.2225,3.0401],[106.2238,3.0483],[106.2186,3.0485],[106.2225,3.0401]],[[105.6985,3.0634],[105.6915,3.0586],[105.6966,3.0493],[105.696,3.0448],[105.706,3.0359],[105.7043,3.0309],[105.6963,3.03],[105.6951,3.0255],[105.6981,3.0185],[105.6962,3.0139],[105.6922,3.0124],[105.6928,3.0064],[105.6895,3.0053],[105.6847,3.0105],[105.6802,3.0124],[105.6758,3.0086],[105.6838,3.0001],[105.6901,2.9969],[105.6967,2.9965],[105.7063,2.9878],[105.711,2.9872],[105.7133,2.9835],[105.7125,2.9766],[105.7068,2.9773],[105.7087,2.9663],[105.7148,2.9639],[105.7153,2.9587],[105.7132,2.9523],[105.7079,2.953],[105.7078,2.9483],[105.7046,2.9434],[105.7076,2.9393],[105.7049,2.9326],[105.699,2.9352],[105.6963,2.9308],[105.7067,2.9287],[105.7041,2.9182],[105.6992,2.916],[105.6987,2.9121],[105.7018,2.9084],[105.7002,2.9021],[105.6962,2.8972],[105.6967,2.8894],[105.6997,2.8887],[105.703,2.8819],[105.6928,2.8819],[105.6933,2.8726],[105.6963,2.8729],[105.6937,2.8643],[105.6975,2.8579],[105.693,2.8555],[105.7043,2.8415],[105.7032,2.8384],[105.7202,2.83],[105.7203,2.8268],[105.725,2.8209],[105.7257,2.8175],[105.7331,2.8154],[105.7393,2.8242],[105.7387,2.8308],[105.7426,2.8298],[105.7465,2.8189],[105.75,2.8223],[105.7478,2.8262],[105.7517,2.83],[105.7576,2.827],[105.76,2.8352],[105.7658,2.8357],[105.7698,2.834],[105.7693,2.8431],[105.7657,2.8504],[105.7619,2.8493],[105.7566,2.8528],[105.7554,2.8568],[105.75,2.8548],[105.7456,2.8556],[105.7398,2.8516],[105.7356,2.8546],[105.735,2.8604],[105.7317,2.8648],[105.7279,2.8663],[105.7247,2.8729],[105.7313,2.8765],[105.7319,2.8801],[105.7368,2.8793],[105.7377,2.8747],[105.7416,2.8683],[105.7475,2.8676],[105.7553,2.8735],[105.7612,2.8716],[105.7676,2.8722],[105.7699,2.8748],[105.7726,2.8836],[105.767,2.8904],[105.7661,2.8946],[105.7703,2.8982],[105.7753,2.8956],[105.7833,2.8972],[105.7871,2.9032],[105.7934,2.8939],[105.798,2.8925],[105.8004,2.8882],[105.8085,2.8874],[105.817,2.8884],[105.8214,2.8911],[105.8169,2.8975],[105.8117,2.9019],[105.7957,2.9088],[105.8027,2.9102],[105.8105,2.9066],[105.8184,2.9089],[105.8226,2.9075],[105.8285,2.9112],[105.8218,2.9169],[105.8217,2.9258],[105.8147,2.9286],[105.8153,2.9377],[105.8136,2.9444],[105.8175,2.949],[105.8188,2.954],[105.8244,2.9583],[105.819,2.9684],[105.8289,2.9697],[105.8348,2.9593],[105.8447,2.9586],[105.8475,2.9642],[105.8427,2.9665],[105.8426,2.9723],[105.8474,2.9781],[105.8413,2.9784],[105.8411,2.9815],[105.8508,2.9868],[105.8441,2.9908],[105.8412,2.9901],[105.8323,2.9928],[105.8272,2.989],[105.8149,2.992],[105.8092,2.9902],[105.8046,2.992],[105.8007,2.9961],[105.7966,2.9911],[105.7893,2.9888],[105.7874,2.9831],[105.7901,2.9802],[105.7887,2.9744],[105.7837,2.9716],[105.7797,2.9731],[105.776,2.9794],[105.7699,2.982],[105.7621,2.9803],[105.7612,2.9753],[105.7548,2.9685],[105.7492,2.9695],[105.7406,2.9743],[105.7339,2.9807],[105.7264,2.9908],[105.7252,2.9968],[105.7335,3.0075],[105.7369,3.0094],[105.7379,3.0158],[105.7344,3.0195],[105.7344,3.0255],[105.7394,3.0297],[105.7345,3.0389],[105.7355,3.0454],[105.7274,3.0464],[105.7274,3.0373],[105.7224,3.0331],[105.7148,3.0323],[105.7137,3.0414],[105.7146,3.0462],[105.7057,3.0604],[105.6985,3.0634]],[[105.983,3.0874],[105.9812,3.0879],[105.971,3.0776],[105.967,3.0708],[105.9693,3.0644],[105.9687,3.0587],[105.9701,3.0524],[105.9685,3.043],[105.964,3.0405],[105.9682,3.0366],[105.9681,3.0294],[105.9746,3.0286],[105.9766,3.0196],[105.9805,3.0193],[105.9865,3.0295],[105.9803,3.0374],[105.9829,3.0435],[105.9886,3.0469],[105.9832,3.0552],[105.9894,3.0711],[105.9879,3.0767],[105.9847,3.0806],[105.9856,3.0846],[105.983,3.0874]],[[105.9547,3.0916],[105.9476,3.0914],[105.9473,3.0854],[105.9497,3.0817],[105.948,3.0739],[105.9555,3.0712],[105.9581,3.0768],[105.9555,3.0843],[105.9547,3.0916]],[[105.9712,3.092],[105.9631,3.0839],[105.9659,3.081],[105.974,3.0878],[105.9712,3.092]],[[105.5886,3.0931],[105.5845,3.0918],[105.5885,3.0843],[105.5931,3.0818],[105.598,3.0821],[105.6057,3.0788],[105.6096,3.0825],[105.6024,3.0885],[105.5962,3.0916],[105.5886,3.0931]],[[106.3567,3.0916],[106.3523,3.0912],[106.351,3.0841],[106.3481,3.0797],[106.3445,3.0792],[106.3419,3.0663],[106.3438,3.058],[106.3435,3.0518],[106.3482,3.0499],[106.3517,3.0532],[106.3554,3.0598],[106.3534,3.064],[106.3553,3.0672],[106.3532,3.0754],[106.3567,3.0809],[106.3586,3.0889],[106.3567,3.0916]],[[106.3356,3.0847],[106.3357,3.0892],[106.331,3.0928],[106.3308,3.0825],[106.3269,3.0798],[106.3273,3.0755],[106.3374,3.0793],[106.3356,3.0847]],[[105.9562,3.101],[105.9525,3.1018],[105.948,3.098],[105.9582,3.0938],[105.9624,3.0965],[105.9622,3.1014],[105.9562,3.101]],[[105.7015,3.0998],[105.6974,3.0954],[105.6996,3.0928],[105.7044,3.0813],[105.7122,3.0746],[105.7239,3.0868],[105.7263,3.0868],[105.731,3.0813],[105.7358,3.0857],[105.7335,3.0912],[105.7287,3.0948],[105.7236,3.0927],[105.7169,3.0994],[105.7147,3.0982],[105.7015,3.0998]],[[105.6859,3.1178],[105.6789,3.1149],[105.6735,3.1172],[105.6759,3.1073],[105.6795,3.1049],[105.6822,3.1073],[105.6898,3.1043],[105.6925,3.1089],[105.692,3.1132],[105.6859,3.1178]],[[105.6538,3.1195],[105.6441,3.1184],[105.6417,3.115],[105.6424,3.1105],[105.6461,3.1033],[105.6433,3.1005],[105.644,3.0935],[105.6505,3.0923],[105.6539,3.0974],[105.6581,3.0983],[105.6639,3.0968],[105.6722,3.0917],[105.676,3.0927],[105.6722,3.0998],[105.6628,3.1032],[105.6639,3.1106],[105.6538,3.1195]],[[106.4045,3.1213],[106.4017,3.1195],[106.3966,3.1121],[106.399,3.1067],[106.4021,3.1092],[106.4012,3.1134],[106.4045,3.1213]],[[106.4495,3.1283],[106.4449,3.1263],[106.4469,3.1229],[106.451,3.1256],[106.4545,3.1204],[106.4569,3.1233],[106.4495,3.1283]],[[106.1195,3.1338],[106.1137,3.1409],[106.1103,3.1273],[106.1137,3.1182],[106.1232,3.1179],[106.1263,3.1193],[106.1228,3.1316],[106.1195,3.1338]],[[106.1094,3.1378],[106.1124,3.1417],[106.1087,3.1437],[106.1026,3.1385],[106.1073,3.1352],[106.1094,3.1378]],[[106.4175,3.1547],[106.4093,3.1481],[106.4081,3.1441],[106.4036,3.14],[106.4031,3.1357],[106.4112,3.1315],[106.4136,3.1346],[106.4185,3.131],[106.4221,3.1372],[106.4252,3.1336],[106.4342,3.1329],[106.4377,3.1361],[106.4357,3.1424],[106.4304,3.1499],[106.4249,3.1499],[106.4215,3.1463],[106.4175,3.1547]],[[106.3955,3.1548],[106.3922,3.1515],[106.3876,3.1514],[106.3814,3.144],[106.3814,3.1383],[106.3933,3.1362],[106.3958,3.1405],[106.3928,3.1453],[106.3955,3.1548]],[[106.0877,3.1584],[106.0832,3.1568],[106.0752,3.149],[106.0768,3.1469],[106.0835,3.1489],[106.0852,3.1469],[106.0814,3.1405],[106.0797,3.134],[106.0823,3.1251],[106.0911,3.124],[106.0989,3.136],[106.0989,3.1415],[106.0956,3.1422],[106.0921,3.1533],[106.0879,3.152],[106.0877,3.1584]],[[106.4078,3.1599],[106.3992,3.1551],[106.3972,3.1512],[106.4017,3.1466],[106.4086,3.1514],[106.4094,3.1579],[106.4078,3.1599]],[[106.3157,3.1595],[106.3175,3.1641],[106.3166,3.1695],[106.3086,3.159],[106.3071,3.1511],[106.3008,3.1496],[106.3015,3.1416],[106.2985,3.1389],[106.2948,3.1421],[106.2925,3.1381],[106.2922,3.1316],[106.2867,3.1294],[106.2852,3.1227],[106.2887,3.113],[106.2968,3.1045],[106.3026,3.1202],[106.3087,3.117],[106.3103,3.1128],[106.3086,3.1052],[106.3103,3.1014],[106.3054,3.0958],[106.3063,3.0882],[106.3086,3.0865],[106.3152,3.0891],[106.3173,3.0995],[106.3201,3.1019],[106.321,3.1135],[106.3301,3.1149],[106.3295,3.1197],[106.3386,3.1204],[106.3419,3.1251],[106.3421,3.1343],[106.3407,3.1404],[106.3365,3.1472],[106.329,3.149],[106.3337,3.1545],[106.3272,3.1572],[106.3273,3.149],[106.3241,3.1449],[106.3199,3.1429],[106.3164,3.1361],[106.3117,3.1351],[106.3104,3.1437],[106.3128,3.1506],[106.3123,3.1549],[106.3157,3.1595]],[[106.307,3.1751],[106.3025,3.179],[106.2975,3.1716],[106.3025,3.1655],[106.3067,3.1705],[106.307,3.1751]],[[106.3683,3.1905],[106.3648,3.1852],[106.3658,3.1723],[106.3621,3.1702],[106.3631,3.1623],[106.3677,3.1635],[106.365,3.169],[106.3698,3.1769],[106.3702,3.1819],[106.3683,3.1905]],[[106.4441,3.1931],[106.4331,3.1895],[106.4339,3.1841],[106.439,3.1842],[106.4385,3.1799],[106.433,3.1745],[106.4353,3.1677],[106.44,3.1717],[106.4407,3.1776],[106.4454,3.1761],[106.4464,3.1868],[106.4417,3.1871],[106.4441,3.1931]],[[106.3055,3.1998],[106.2956,3.1994],[106.293,3.197],[106.2914,3.1902],[106.2965,3.1861],[106.3015,3.196],[106.3055,3.1998]],[[106.4867,3.2113],[106.48,3.2077],[106.4775,3.1928],[106.4841,3.1947],[106.4925,3.1939],[106.4985,3.1841],[106.501,3.1921],[106.4962,3.1904],[106.5012,3.2017],[106.4983,3.2058],[106.4936,3.2046],[106.4905,3.1997],[106.4872,3.2003],[106.4867,3.2113]],[[106.3051,3.2342],[106.3012,3.2344],[106.2993,3.2302],[106.2953,3.2314],[106.2929,3.2287],[106.2942,3.2225],[106.2979,3.2162],[106.3003,3.2217],[106.3086,3.2291],[106.3051,3.2342]],[[106.2352,3.2291],[106.2297,3.2308],[106.2215,3.2288],[106.2223,3.2237],[106.2196,3.2187],[106.2153,3.2188],[106.2106,3.2273],[106.2075,3.2298],[106.2043,3.2253],[106.2011,3.232],[106.1971,3.2324],[106.1962,3.2249],[106.1973,3.2198],[106.2015,3.2138],[106.2032,3.2068],[106.2023,3.2033],[106.2071,3.1956],[106.2082,3.1893],[106.2067,3.1855],[106.2092,3.1688],[106.2062,3.163],[106.207,3.1533],[106.2043,3.1462],[106.2041,3.1387],[106.2065,3.131],[106.2098,3.1268],[106.211,3.1214],[106.2164,3.1206],[106.2215,3.1313],[106.2238,3.1306],[106.2239,3.1217],[106.2225,3.116],[106.2229,3.1087],[106.228,3.1078],[106.2374,3.0976],[106.2391,3.1046],[106.2428,3.1059],[106.2443,3.1012],[106.2495,3.1087],[106.2497,3.1144],[106.2536,3.1157],[106.26,3.1117],[106.2613,3.1001],[106.2593,3.0963],[106.2655,3.0921],[106.2718,3.0994],[106.275,3.0936],[106.2728,3.089],[106.2734,3.0803],[106.2783,3.0802],[106.2822,3.0875],[106.2861,3.1],[106.2859,3.1123],[106.2772,3.1149],[106.2749,3.1201],[106.2797,3.138],[106.2838,3.1399],[106.2854,3.1481],[106.2881,3.1504],[106.2915,3.161],[106.2893,3.1758],[106.2876,3.1805],[106.2818,3.1711],[106.2764,3.1707],[106.2733,3.1736],[106.2757,3.181],[106.2824,3.1819],[106.2821,3.1872],[106.2781,3.195],[106.2722,3.1976],[106.2619,3.2062],[106.2577,3.2077],[106.2581,3.2152],[106.2485,3.2234],[106.2454,3.2237],[106.2406,3.2188],[106.2352,3.2291]],[[106.4528,3.2513],[106.4482,3.2471],[106.4425,3.2463],[106.4378,3.2406],[106.4441,3.2353],[106.4448,3.2323],[106.4518,3.2322],[106.451,3.2291],[106.4566,3.226],[106.4583,3.2308],[106.4531,3.2371],[106.4516,3.2425],[106.4528,3.2513]],[[106.3008,3.2741],[106.2978,3.2761],[106.2972,3.2631],[106.2985,3.2597],[106.2939,3.2444],[106.2984,3.2378],[106.303,3.248],[106.3055,3.2609],[106.3008,3.2741]],[[106.3058,3.2841],[106.3017,3.2852],[106.3016,3.2787],[106.3054,3.2691],[106.3075,3.2716],[106.3058,3.2841]],[[106.4172,3.301],[106.4135,3.2987],[106.4112,3.2914],[106.4118,3.2863],[106.4063,3.2783],[106.4154,3.2719],[106.4188,3.2795],[106.4172,3.2817],[106.4194,3.2892],[106.4155,3.2944],[106.4172,3.301]],[[106.2018,3.3061],[106.1952,3.3024],[106.1924,3.2955],[106.1947,3.2911],[106.1983,3.2891],[106.2017,3.2918],[106.2009,3.3012],[106.2018,3.3061]],[[106.4089,3.308],[106.4009,3.3048],[106.3967,3.3098],[106.393,3.3056],[106.392,3.2971],[106.3985,3.2921],[106.4024,3.2979],[106.4114,3.2995],[106.4129,3.3067],[106.4089,3.308]],[[106.3073,3.3206],[106.3041,3.3192],[106.3028,3.3075],[106.3065,3.3048],[106.3088,3.3094],[106.3073,3.3206]],[[106.0475,3.3378],[106.0427,3.3345],[106.0489,3.3288],[106.0529,3.33],[106.0519,3.3366],[106.0475,3.3378]],[[106.3037,3.3378],[106.3067,3.3473],[106.3049,3.3581],[106.3016,3.3545],[106.3011,3.344],[106.3037,3.3378]],[[106.3157,3.3657],[106.3138,3.3602],[106.3155,3.3558],[106.3196,3.3583],[106.3157,3.3657]],[[106.3513,3.3805],[106.3465,3.3812],[106.3464,3.3768],[106.3497,3.3723],[106.3513,3.3805]],[[106.4558,3.3822],[106.4503,3.3814],[106.4459,3.3784],[106.4513,3.3706],[106.4554,3.378],[106.4558,3.3822]],[[106.2863,3.3848],[106.281,3.3849],[106.2765,3.3822],[106.2709,3.3826],[106.2673,3.3748],[106.2699,3.3695],[106.2685,3.3651],[106.2646,3.3626],[106.2664,3.3561],[106.2707,3.3562],[106.2636,3.3407],[106.2509,3.3518],[106.2456,3.3465],[106.2422,3.3389],[106.2409,3.3296],[106.2412,3.3238],[106.2384,3.3206],[106.2349,3.3026],[106.2391,3.3009],[106.2384,3.2934],[106.2458,3.2906],[106.2443,3.286],[106.2397,3.2816],[106.2372,3.2757],[106.2406,3.2679],[106.2361,3.2634],[106.2326,3.2661],[106.2276,3.2614],[106.2316,3.2558],[106.2348,3.256],[106.2401,3.2517],[106.2431,3.2425],[106.2497,3.2386],[106.2605,3.2349],[106.2658,3.23],[106.2719,3.2304],[106.2736,3.2339],[106.282,3.2273],[106.2847,3.2322],[106.2812,3.2478],[106.2785,3.2532],[106.2732,3.2514],[106.2658,3.2582],[106.2679,3.2631],[106.2644,3.2696],[106.2647,3.2879],[106.2615,3.2903],[106.2657,3.2945],[106.2728,3.2879],[106.2764,3.2757],[106.2797,3.2746],[106.2778,3.2666],[106.2803,3.2566],[106.2853,3.2507],[106.2894,3.2518],[106.2929,3.2607],[106.2927,3.2636],[106.2959,3.2764],[106.2945,3.2852],[106.2929,3.2869],[106.2904,3.3078],[106.2956,3.3136],[106.2949,3.3197],[106.2979,3.3296],[106.2972,3.3405],[106.2921,3.3463],[106.2962,3.3533],[106.3023,3.358],[106.3051,3.364],[106.3078,3.3653],[106.3057,3.375],[106.3029,3.38],[106.2959,3.3821],[106.2931,3.3846],[106.2892,3.3822],[106.2863,3.3848]],[[106.2317,3.3852],[106.2279,3.3844],[106.2272,3.3791],[106.2323,3.3796],[106.2317,3.3852]],[[106.2279,3.3943],[106.2245,3.3949],[106.2142,3.39],[106.2048,3.3826],[106.2001,3.3763],[106.2006,3.3687],[106.2048,3.3665],[106.2043,3.359],[106.2053,3.3528],[106.2025,3.3472],[106.1948,3.3469],[106.1869,3.3445],[106.1823,3.339],[106.1792,3.3394],[106.1719,3.3317],[106.175,3.3237],[106.1761,3.3159],[106.1815,3.3134],[106.1821,3.3084],[106.1851,3.306],[106.1851,3.3019],[106.1909,3.3007],[106.1955,3.3054],[106.1978,3.3145],[106.2007,3.3193],[106.2012,3.3256],[106.2059,3.3215],[106.2037,3.3129],[106.2102,3.2993],[106.2204,3.3006],[106.2214,3.3069],[106.2264,3.3113],[106.2273,3.3196],[106.2362,3.334],[106.2393,3.3439],[106.2323,3.352],[106.2278,3.3453],[106.2238,3.3456],[106.2256,3.3515],[106.2226,3.3588],[106.2153,3.3623],[106.22,3.3656],[106.2214,3.37],[106.2184,3.3724],[106.219,3.3767],[106.2245,3.3872],[106.2282,3.3883],[106.2279,3.3943]],[[106.4413,3.3947],[106.4376,3.3899],[106.4355,3.381],[106.4279,3.3759],[106.4347,3.3747],[106.442,3.3793],[106.4413,3.3947]],[[106.1522,3.3961],[106.1531,3.4021],[106.1489,3.4049],[106.1453,3.4001],[106.1492,3.3958],[106.1522,3.3961]],[[106.2782,3.4025],[106.2684,3.398],[106.2766,3.3881],[106.2861,3.3873],[106.2918,3.3905],[106.2806,3.4026],[106.2782,3.4025]],[[106.3447,3.4173],[106.3417,3.4169],[106.3407,3.4119],[106.331,3.4064],[106.3334,3.4026],[106.3327,3.3961],[106.3343,3.3905],[106.3308,3.3832],[106.3287,3.375],[106.3316,3.369],[106.3271,3.358],[106.321,3.3489],[106.3182,3.3477],[106.317,3.3421],[106.3238,3.337],[106.3204,3.3306],[106.3165,3.3299],[106.319,3.3231],[106.3217,3.3244],[106.3256,3.3333],[106.3255,3.3389],[106.331,3.3352],[106.3322,3.3439],[106.3343,3.344],[106.3384,3.3517],[106.3388,3.3605],[106.3375,3.3645],[106.3404,3.3691],[106.342,3.3844],[106.34,3.3936],[106.3431,3.4025],[106.3436,3.4086],[106.3466,3.4145],[106.3447,3.4173]]]}},{"type":"Feature","properties":{"mhid":"1332:158","alt_name":"KOTA BATAM","latitude":1.05211,"longitude":104.02851,"sample_value":908},"geometry":{"type":"MultiLineString","coordinates":[[[104.2648,0.5017],[104.258,0.5019],[104.2634,0.4952],[104.2661,0.4958],[104.2727,0.484],[104.2752,0.487],[104.2731,0.492],[104.2648,0.5017]],[[104.284,0.5269],[104.2822,0.5178],[104.2847,0.5151],[104.2848,0.5071],[104.2872,0.5019],[104.2866,0.4924],[104.2875,0.4871],[104.2937,0.4777],[104.2958,0.4799],[104.2933,0.4879],[104.2917,0.5057],[104.2895,0.5088],[104.2909,0.5203],[104.284,0.5269]],[[104.2241,0.5568],[104.2202,0.5481],[104.22,0.5408],[104.2222,0.5397],[104.2243,0.533],[104.2321,0.5357],[104.2389,0.5308],[104.2334,0.5482],[104.2333,0.5548],[104.2285,0.5544],[104.2241,0.5568]],[[104.2394,0.5582],[104.2363,0.562],[104.2316,0.5566],[104.2372,0.5547],[104.2394,0.5582]],[[104.2198,0.5621],[104.2177,0.5673],[104.2134,0.5672],[104.2085,0.5609],[104.2102,0.5575],[104.2197,0.5595],[104.2198,0.5621]],[[104.214,0.5705],[104.2086,0.575],[104.2081,0.5696],[104.214,0.5705]],[[104.1981,0.6087],[104.1944,0.609],[104.1933,0.5986],[104.1861,0.5911],[104.1852,0.5882],[104.187,0.574],[104.189,0.5694],[104.1908,0.5587],[104.1904,0.5532],[104.1947,0.5532],[104.1946,0.5595],[104.202,0.5644],[104.204,0.5731],[104.2071,0.5756],[104.2151,0.573],[104.2202,0.5744],[104.2279,0.5731],[104.2253,0.5793],[104.2167,0.5908],[104.2084,0.5953],[104.2023,0.5948],[104.2021,0.6015],[104.1981,0.6087]],[[104.0856,0.643],[104.0823,0.6418],[104.0821,0.6324],[104.0851,0.6283],[104.0854,0.6209],[104.0824,0.6165],[104.0862,0.6084],[104.0898,0.6171],[104.0968,0.6178],[104.1027,0.6228],[104.097,0.6287],[104.0939,0.63],[104.0888,0.6409],[104.0856,0.643]],[[104.3347,0.6778],[104.3305,0.6751],[104.3352,0.6707],[104.3418,0.6703],[104.3408,0.6753],[104.3347,0.6778]],[[104.3187,0.6849],[104.3178,0.6793],[104.3094,0.6751],[104.3085,0.669],[104.3125,0.6618],[104.3217,0.6639],[104.33,0.6637],[104.3257,0.6684],[104.3269,0.6743],[104.3261,0.6798],[104.3187,0.6849]],[[104.294,0.6891],[104.2921,0.6912],[104.2862,0.6901],[104.2854,0.6864],[104.2786,0.6884],[104.271,0.6829],[104.2768,0.6782],[104.2796,0.6738],[104.2846,0.6712],[104.2964,0.6746],[104.2976,0.6836],[104.3008,0.6862],[104.2975,0.6902],[104.294,0.6891]],[[104.3133,0.7002],[104.3093,0.6977],[104.3141,0.6936],[104.3204,0.6854],[104.3288,0.681],[104.3363,0.6823],[104.3358,0.687],[104.3269,0.6875],[104.3227,0.6916],[104.3243,0.6955],[104.3211,0.6988],[104.3133,0.7002]],[[104.2142,0.7189],[104.2104,0.7171],[104.2105,0.7104],[104.2131,0.7049],[104.2127,0.7004],[104.2182,0.6978],[104.2203,0.6866],[104.2224,0.6833],[104.2264,0.6876],[104.2311,0.6822],[104.2342,0.6757],[104.2351,0.6698],[104.2439,0.6705],[104.2473,0.6675],[104.2498,0.654],[104.2535,0.6467],[104.257,0.6442],[104.2588,0.6389],[104.2625,0.6381],[104.2657,0.6265],[104.2756,0.6229],[104.2812,0.6168],[104.2854,0.6171],[104.2872,0.6249],[104.2847,0.6301],[104.289,0.6318],[104.2887,0.639],[104.2852,0.6497],[104.2865,0.6561],[104.2817,0.6623],[104.2817,0.6678],[104.279,0.6719],[104.2689,0.6772],[104.2601,0.6883],[104.2594,0.6837],[104.2607,0.6769],[104.2513,0.6828],[104.2491,0.6866],[104.2424,0.6888],[104.238,0.6934],[104.2338,0.7002],[104.2213,0.7154],[104.2142,0.7189]],[[104.309,0.7631],[104.299,0.7568],[104.3033,0.7541],[104.314,0.7527],[104.3159,0.7491],[104.3245,0.7531],[104.3322,0.7517],[104.3475,0.7454],[104.3532,0.7391],[104.3566,0.7403],[104.3572,0.7482],[104.3508,0.7514],[104.3381,0.7545],[104.3328,0.7573],[104.3193,0.7598],[104.309,0.7631]],[[104.2027,0.7949],[104.199,0.7906],[104.2025,0.7807],[104.2046,0.7829],[104.2117,0.7823],[104.2096,0.7893],[104.2101,0.7934],[104.2027,0.7949]],[[104.2173,0.7985],[104.2145,0.7948],[104.2215,0.7934],[104.2229,0.7975],[104.2173,0.7985]],[[104.2617,0.8009],[104.2509,0.8006],[104.2463,0.7954],[104.2457,0.7924],[104.2399,0.79],[104.2309,0.7899],[104.2224,0.7861],[104.2162,0.7862],[104.212,0.7816],[104.205,0.7825],[104.1931,0.7871],[104.1882,0.781],[104.1868,0.7768],[104.1798,0.7771],[104.1734,0.7828],[104.1709,0.7794],[104.1737,0.7721],[104.1818,0.7645],[104.1873,0.7538],[104.1896,0.7517],[104.189,0.7363],[104.1988,0.7243],[104.2004,0.7283],[104.2109,0.7193],[104.2196,0.7222],[104.2303,0.7116],[104.2383,0.6998],[104.2421,0.6964],[104.2525,0.6924],[104.2594,0.6918],[104.2623,0.6981],[104.26,0.7028],[104.2678,0.7059],[104.2727,0.7013],[104.2794,0.7088],[104.2847,0.7076],[104.2873,0.7097],[104.2985,0.7066],[104.3058,0.7084],[104.2928,0.7175],[104.2868,0.7206],[104.2839,0.729],[104.2789,0.7312],[104.2734,0.73],[104.271,0.7355],[104.2674,0.7372],[104.2646,0.7426],[104.2608,0.7548],[104.258,0.7693],[104.2611,0.7738],[104.2676,0.7744],[104.2648,0.7797],[104.2695,0.7836],[104.27,0.7885],[104.2755,0.7895],[104.2766,0.7967],[104.2664,0.7954],[104.2608,0.7973],[104.2617,0.8009]],[[104.1509,0.7899],[104.1475,0.8031],[104.1482,0.8107],[104.1452,0.8175],[104.1419,0.8185],[104.1433,0.8063],[104.1471,0.7956],[104.1509,0.7899]],[[104.1856,0.8776],[104.1859,0.8845],[104.1805,0.8801],[104.1856,0.8776]],[[103.9531,0.9047],[103.9518,0.8999],[103.9578,0.8928],[103.9599,0.8932],[103.9582,0.9041],[103.9531,0.9047]],[[104.05,0.9203],[104.0477,0.9211],[104.0418,0.9144],[104.0442,0.9102],[104.0383,0.9022],[104.0364,0.8926],[104.0427,0.897],[104.0467,0.8971],[104.0494,0.9038],[104.0505,0.9119],[104.0554,0.9186],[104.05,0.9203]],[[104.2116,0.9233],[104.2041,0.9222],[104.2022,0.9163],[104.199,0.917],[104.1933,0.9022],[104.202,0.9029],[104.2065,0.9045],[104.2139,0.9159],[104.2116,0.9233]],[[103.9508,0.9234],[103.9472,0.9223],[103.9475,0.9152],[103.9524,0.9059],[103.9648,0.908],[103.9651,0.9182],[103.9591,0.9219],[103.9508,0.9234]],[[104.1834,0.9317],[104.1827,0.937],[104.171,0.9378],[104.1585,0.9262],[104.1586,0.9149],[104.1625,0.9107],[104.1673,0.9146],[104.1756,0.9131],[104.1791,0.9168],[104.1884,0.9192],[104.191,0.9306],[104.1834,0.9317]],[[103.8939,0.9362],[103.8922,0.9404],[103.8876,0.9397],[103.8867,0.9363],[103.8939,0.9362]],[[103.7743,0.9469],[103.7707,0.943],[103.7764,0.9354],[103.7771,0.9413],[103.7743,0.9469]],[[104.1679,0.9609],[104.1569,0.9572],[104.1492,0.9579],[104.144,0.9544],[104.1483,0.9415],[104.1518,0.9343],[104.1595,0.9339],[104.1674,0.9428],[104.1751,0.9431],[104.1826,0.9418],[104.1891,0.9457],[104.1935,0.9433],[104.1977,0.9484],[104.1824,0.9537],[104.1679,0.9609]],[[104.1193,0.958],[104.1085,0.958],[104.1056,0.9608],[104.0986,0.9596],[104.0942,0.9544],[104.0885,0.9531],[104.0786,0.9426],[104.083,0.9372],[104.0874,0.9361],[104.0949,0.9257],[104.0918,0.9138],[104.0908,0.8983],[104.0936,0.8898],[104.0941,0.8711],[104.0976,0.8713],[104.1004,0.8798],[104.1162,0.8772],[104.1187,0.8756],[104.1192,0.8669],[104.1222,0.864],[104.1278,0.8663],[104.138,0.8629],[104.1478,0.8539],[104.1511,0.8362],[104.1541,0.8321],[104.1576,0.8236],[104.1549,0.8171],[104.1608,0.8136],[104.1648,0.7915],[104.1687,0.7865],[104.181,0.783],[104.1847,0.788],[104.1896,0.7897],[104.2,0.7974],[104.1997,0.8028],[104.2032,0.8056],[104.2086,0.8059],[104.213,0.8034],[104.218,0.8049],[104.2312,0.8128],[104.2311,0.8166],[104.2455,0.8208],[104.2452,0.8297],[104.2468,0.8344],[104.2523,0.8357],[104.2604,0.8403],[104.2649,0.8597],[104.2574,0.8662],[104.249,0.8648],[104.2441,0.8618],[104.2403,0.8619],[104.2391,0.8692],[104.2331,0.8759],[104.2288,0.8755],[104.2242,0.88],[104.2199,0.8787],[104.2086,0.8818],[104.2011,0.8805],[104.1885,0.873],[104.1813,0.8781],[104.1734,0.8749],[104.1672,0.8669],[104.1655,0.87],[104.1652,0.8779],[104.1689,0.8851],[104.1696,0.8922],[104.1672,0.8932],[104.1681,0.8991],[104.1656,0.905],[104.1606,0.9002],[104.1572,0.902],[104.1532,0.8984],[104.1514,0.9065],[104.1572,0.908],[104.1557,0.9124],[104.1563,0.9222],[104.1545,0.9272],[104.1477,0.9282],[104.1434,0.9337],[104.1436,0.9379],[104.1389,0.9415],[104.1324,0.9417],[104.1316,0.9374],[104.1256,0.9357],[104.1272,0.948],[104.126,0.9526],[104.121,0.951],[104.1193,0.958]],[[103.9703,0.9647],[103.9663,0.9604],[103.9676,0.9543],[103.9716,0.9508],[103.9747,0.9536],[103.973,0.9613],[103.9703,0.9647]],[[103.8442,0.9657],[103.8425,0.9613],[103.8459,0.959],[103.8503,0.9624],[103.8442,0.9657]],[[103.9944,0.9662],[103.9921,0.958],[103.9974,0.9565],[103.9974,0.962],[103.9944,0.9662]],[[103.7884,0.967],[103.7806,0.9646],[103.7836,0.9609],[103.7938,0.9581],[103.7927,0.9643],[103.7884,0.967]],[[103.8059,0.9711],[103.8014,0.9708],[103.7993,0.967],[103.8029,0.9607],[103.8075,0.9664],[103.8059,0.9711]],[[104.0843,0.9718],[104.0843,0.9682],[104.0923,0.9569],[104.0955,0.9588],[104.0929,0.9699],[104.09,0.969],[104.0843,0.9718]],[[104.062,0.9677],[104.0491,0.9666],[104.0452,0.962],[104.0463,0.9543],[104.0441,0.9496],[104.0466,0.9448],[104.0452,0.939],[104.0474,0.9315],[104.0548,0.9326],[104.0575,0.9245],[104.0638,0.9214],[104.0673,0.9173],[104.071,0.9173],[104.0747,0.9284],[104.0779,0.9319],[104.0773,0.9361],[104.0738,0.9428],[104.08,0.949],[104.0784,0.9543],[104.074,0.957],[104.0689,0.9627],[104.0634,0.961],[104.062,0.9677]],[[104.1546,0.9702],[104.1457,0.9747],[104.1462,0.9646],[104.1491,0.9595],[104.1551,0.9575],[104.1656,0.9605],[104.1695,0.965],[104.1742,0.9677],[104.1726,0.9729],[104.1685,0.9732],[104.1546,0.9702]],[[103.9818,0.9759],[103.9797,0.9734],[103.9807,0.9656],[103.9857,0.9609],[103.9886,0.946],[103.9944,0.9476],[103.991,0.9581],[103.9926,0.9632],[103.9862,0.9743],[103.9818,0.9759]],[[104.0558,0.977],[104.0514,0.9743],[104.0501,0.9683],[104.0567,0.9681],[104.0558,0.977]],[[103.7729,0.9791],[103.7672,0.979],[103.7663,0.9755],[103.7729,0.9694],[103.7763,0.9723],[103.7729,0.9791]],[[104.0766,0.9824],[104.0704,0.9801],[104.0791,0.9754],[104.0802,0.9777],[104.0766,0.9824]],[[104.1113,0.9833],[104.1079,0.9778],[104.1037,0.9755],[104.107,0.9696],[104.1196,0.9652],[104.1214,0.9669],[104.1139,0.9743],[104.1146,0.9772],[104.1113,0.9833]],[[104.1185,0.9958],[104.1162,0.9922],[104.1198,0.9879],[104.1287,0.9871],[104.1269,0.9957],[104.1185,0.9958]],[[104.1416,0.9983],[104.1415,0.9914],[104.1465,0.985],[104.1486,0.9903],[104.1416,0.9983]],[[103.9522,0.9982],[103.9482,0.9989],[103.9494,0.9913],[103.9584,0.9865],[103.9669,0.9777],[103.9667,0.9753],[103.9747,0.9735],[103.978,0.9819],[103.9718,0.9852],[103.9664,0.9911],[103.9589,0.9959],[103.9522,0.9982]],[[103.8272,0.9953],[103.829,0.9993],[103.8262,1.0023],[103.8229,0.9989],[103.8272,0.9953]],[[103.9934,1.0094],[103.9913,1.0119],[103.9836,1.0081],[103.9842,1.0021],[103.9895,1.0006],[103.9935,1.0017],[103.9934,1.0094]],[[103.7598,1.015],[103.755,1.0161],[103.755,1.0068],[103.7584,1.0038],[103.7622,1.0105],[103.7598,1.015]],[[104.1154,1.0169],[104.1084,1.0187],[104.1013,1.0135],[104.1001,1.0048],[104.107,1.0044],[104.1154,1.0169]],[[103.8908,1.0106],[103.8908,1.0153],[103.8869,1.0226],[103.8849,1.0168],[103.8908,1.0106]],[[104.0994,1.024],[104.0952,1.0207],[104.0924,1.0131],[104.0967,1.0067],[104.0984,1.0156],[104.1046,1.0216],[104.0994,1.024]],[[104.084,1.026],[104.0814,1.0207],[104.087,1.0181],[104.0868,1.0249],[104.084,1.026]],[[104.1808,1.0245],[104.1755,1.0241],[104.1701,1.0203],[104.166,1.0139],[104.1595,1.0178],[104.156,1.016],[104.1521,1.0082],[104.1557,1.006],[104.1544,1.0002],[104.1609,0.9956],[104.1717,0.9954],[104.1772,1.0021],[104.1792,1.0077],[104.184,1.0142],[104.1808,1.0245]],[[104.1366,1.0348],[104.1358,1.0316],[104.129,1.0292],[104.1323,1.0256],[104.1386,1.0307],[104.1366,1.0348]],[[103.8726,1.0341],[103.8683,1.0377],[103.8617,1.0334],[103.8534,1.0338],[103.8539,1.0274],[103.8484,1.0233],[103.8597,1.0103],[103.855,1.0108],[103.847,1.0144],[103.8397,1.0151],[103.834,1.0173],[103.8316,1.0112],[103.8334,1.0067],[103.8334,0.993],[103.8322,0.9856],[103.8329,0.9775],[103.839,0.9712],[103.8484,0.967],[103.8681,0.9544],[103.8783,0.9521],[103.8837,0.9483],[103.8872,0.9431],[103.8922,0.9421],[103.8968,0.9377],[103.9114,0.9343],[103.92,0.9269],[103.9285,0.9212],[103.9395,0.9109],[103.9435,0.9102],[103.9454,0.9146],[103.9417,0.9182],[103.9417,0.9227],[103.9467,0.9289],[103.9553,0.9303],[103.9619,0.9347],[103.965,0.9433],[103.9678,0.9575],[103.9659,0.9612],[103.9678,0.9658],[103.9605,0.9765],[103.9572,0.9784],[103.9476,0.9877],[103.9425,0.9909],[103.9379,0.9972],[103.9309,0.9974],[103.9256,1.0063],[103.9182,1.009],[103.9121,1.005],[103.9087,1.0062],[103.9015,0.9992],[103.8882,1.0096],[103.8837,1.0157],[103.8784,1.0144],[103.8838,1.0249],[103.8839,1.028],[103.8798,1.0335],[103.8726,1.0341]],[[103.904,1.031],[103.9018,1.0357],[103.8966,1.0385],[103.8944,1.0363],[103.8946,1.0308],[103.8901,1.032],[103.8868,1.0296],[103.8875,1.0246],[103.8915,1.0165],[103.8927,1.011],[103.9015,1.0033],[103.904,1.0029],[103.9088,1.0083],[103.9133,1.0078],[103.9152,1.0113],[103.92,1.0117],[103.9171,1.0173],[103.9105,1.0195],[103.9065,1.0228],[103.904,1.031]],[[103.877,1.0458],[103.8794,1.0362],[103.8828,1.0327],[103.89,1.0335],[103.8903,1.0408],[103.8853,1.0393],[103.8804,1.0457],[103.877,1.0458]],[[103.7765,1.0492],[103.7691,1.0483],[103.7709,1.0333],[103.7667,1.0308],[103.7543,1.0337],[103.7493,1.0301],[103.7507,1.0263],[103.755,1.0257],[103.7593,1.0201],[103.7613,1.0142],[103.7664,1.0101],[103.7668,1.0026],[103.772,0.9997],[103.776,0.9937],[103.7746,0.9888],[103.7778,0.9863],[103.7826,0.9779],[103.7895,0.9735],[103.7924,0.9734],[103.7959,0.9689],[103.8055,0.9726],[103.8012,0.9776],[103.7999,0.9849],[103.8002,0.992],[103.7968,0.9974],[103.798,1.0048],[103.7969,1.0108],[103.7986,1.0152],[103.7996,1.0247],[103.7966,1.0275],[103.7957,1.0373],[103.7882,1.0446],[103.7881,1.0391],[103.7795,1.0434],[103.7765,1.0492]],[[103.8312,1.0524],[103.8188,1.0491],[103.824,1.0438],[103.8313,1.0446],[103.8312,1.0524]],[[104.0867,1.053],[104.0816,1.0559],[104.0796,1.05],[104.0867,1.053]],[[103.8174,1.0557],[103.8123,1.0535],[103.8127,1.0493],[103.8187,1.0525],[103.8174,1.0557]],[[103.8978,1.0615],[103.8926,1.0592],[103.8941,1.0475],[103.8928,1.0403],[103.9008,1.0392],[103.8989,1.0458],[103.9006,1.055],[103.8978,1.0615]],[[104.1682,1.0659],[104.1645,1.0657],[104.1611,1.0573],[104.1646,1.0482],[104.1577,1.0424],[104.1637,1.0408],[104.1636,1.035],[104.1608,1.0302],[104.1674,1.022],[104.1744,1.0261],[104.1757,1.03],[104.1815,1.0354],[104.1811,1.0416],[104.1842,1.0499],[104.1809,1.0528],[104.1739,1.0646],[104.1682,1.0659]],[[103.8178,1.0675],[103.8127,1.0634],[103.8197,1.0559],[103.8245,1.0609],[103.8178,1.0675]],[[103.8489,1.0682],[103.8481,1.0725],[103.8389,1.0657],[103.8329,1.0629],[103.8369,1.0519],[103.8354,1.0404],[103.838,1.0361],[103.8368,1.0312],[103.8398,1.0278],[103.8465,1.029],[103.8457,1.0364],[103.8576,1.0396],[103.8613,1.0422],[103.865,1.0388],[103.8739,1.0443],[103.8744,1.0483],[103.879,1.0477],[103.882,1.0524],[103.8789,1.0571],[103.8728,1.0607],[103.8695,1.06],[103.8673,1.0646],[103.8624,1.0652],[103.8555,1.0734],[103.8489,1.0682]],[[103.829,1.0769],[103.8205,1.0764],[103.8181,1.0707],[103.8223,1.0669],[103.8266,1.0668],[103.8268,1.0728],[103.829,1.0769]],[[103.865,1.0778],[103.861,1.0823],[103.8587,1.0764],[103.8598,1.0695],[103.871,1.0651],[103.865,1.0778]],[[103.8714,1.092],[103.8693,1.0961],[103.8626,1.095],[103.866,1.0894],[103.8704,1.0882],[103.8714,1.092]],[[103.8027,1.1011],[103.7945,1.1092],[103.7913,1.1093],[103.7934,1.0955],[103.8007,1.0853],[103.8111,1.0844],[103.8151,1.0892],[103.811,1.0956],[103.8027,1.1011]],[[103.9148,1.1198],[103.9099,1.1109],[103.9034,1.1093],[103.9001,1.1052],[103.9028,1.101],[103.9085,1.1016],[103.9208,1.1062],[103.9196,1.1159],[103.9148,1.1198]],[[103.8738,1.144],[103.8764,1.147],[103.8743,1.1547],[103.869,1.1523],[103.8696,1.1466],[103.8738,1.144]],[[103.8892,1.1579],[103.8872,1.1587],[103.8809,1.1523],[103.8809,1.149],[103.8745,1.1433],[103.8785,1.1408],[103.8818,1.1431],[103.8868,1.1423],[103.8926,1.144],[103.896,1.1501],[103.8928,1.1562],[103.8892,1.1579]],[[103.8813,1.1621],[103.8778,1.1635],[103.8751,1.1577],[103.8793,1.1554],[103.8823,1.158],[103.8813,1.1621]],[[103.8976,1.1652],[103.898,1.157],[103.9054,1.1558],[103.8976,1.1652]],[[104.1139,1.1964],[104.106,1.201],[104.0987,1.2002],[104.0949,1.1939],[104.0869,1.1959],[104.0839,1.1922],[104.074,1.1875],[104.0696,1.178],[104.0693,1.1658],[104.0706,1.1624],[104.0832,1.1569],[104.0893,1.153],[104.0905,1.1469],[104.0885,1.1413],[104.0839,1.1469],[104.079,1.1444],[104.0773,1.1369],[104.0836,1.1287],[104.0737,1.1239],[104.0718,1.131],[104.0647,1.1323],[104.0544,1.1315],[104.0544,1.1397],[104.0519,1.1406],[104.0512,1.1496],[104.0575,1.1523],[104.0592,1.1602],[104.0524,1.1592],[104.0486,1.1633],[104.0483,1.1698],[104.0453,1.1736],[104.0407,1.1736],[104.0338,1.1777],[104.0278,1.178],[104.0248,1.1818],[104.0271,1.1847],[104.0238,1.1892],[104.0118,1.1899],[104.0059,1.1868],[103.9982,1.179],[103.9986,1.1676],[103.9968,1.1651],[103.9972,1.1571],[103.9956,1.1539],[104.0001,1.15],[103.992,1.1487],[103.9926,1.1453],[103.9901,1.139],[103.9928,1.1329],[103.9919,1.1295],[103.987,1.1288],[103.9819,1.131],[103.9784,1.1373],[103.9702,1.1344],[103.9673,1.139],[103.9613,1.1424],[103.9571,1.1385],[103.9519,1.1401],[103.9476,1.1455],[103.9441,1.1443],[103.9417,1.1399],[103.936,1.1389],[103.931,1.1414],[103.9217,1.1431],[103.9187,1.14],[103.9204,1.1342],[103.9254,1.124],[103.9299,1.1238],[103.9332,1.121],[103.9367,1.1106],[103.9335,1.109],[103.9296,1.1113],[103.9285,1.0996],[103.9327,1.0959],[103.9376,1.0841],[103.9324,1.0804],[103.9286,1.0738],[103.9239,1.0708],[103.9168,1.0783],[103.9177,1.0838],[103.9138,1.0836],[103.9101,1.0872],[103.9123,1.0905],[103.909,1.0961],[103.8991,1.0957],[103.8895,1.0938],[103.893,1.0834],[103.905,1.0681],[103.9092,1.0563],[103.9102,1.0403],[103.9128,1.036],[103.92,1.0295],[103.927,1.0253],[103.937,1.016],[103.9411,1.0092],[103.9538,1.0083],[103.9599,1.005],[103.9635,1.0052],[103.9718,1.0101],[103.9807,1.0082],[103.9891,1.0132],[103.9911,1.0173],[103.9969,1.0125],[103.9998,1.0043],[104.0041,1.0011],[104.0111,0.9876],[104.0169,0.9851],[104.0224,0.987],[104.0246,0.9825],[104.034,0.9802],[104.0382,0.9806],[104.0426,0.9858],[104.0409,0.9912],[104.048,0.9993],[104.0622,0.9852],[104.0671,0.9828],[104.0721,0.9915],[104.0721,0.9958],[104.0759,0.9984],[104.0839,0.9853],[104.0908,0.9848],[104.0971,0.9827],[104.0906,0.9984],[104.0824,1.0083],[104.0826,1.0177],[104.0797,1.0226],[104.0815,1.0262],[104.0877,1.0287],[104.096,1.0267],[104.1008,1.029],[104.1016,1.0379],[104.1041,1.0428],[104.1121,1.0329],[104.1174,1.0384],[104.1199,1.0344],[104.1278,1.0322],[104.1318,1.0328],[104.1367,1.0389],[104.1387,1.0457],[104.1395,1.0538],[104.1371,1.0582],[104.1351,1.0667],[104.137,1.0751],[104.1359,1.0782],[104.1409,1.1006],[104.1494,1.1102],[104.1488,1.1166],[104.1539,1.1324],[104.1544,1.1377],[104.1491,1.1409],[104.1497,1.1445],[104.142,1.1468],[104.146,1.1505],[104.1479,1.1594],[104.1472,1.1649],[104.1485,1.1711],[104.1356,1.1791],[104.1243,1.1896],[104.1139,1.1964]],[[104.0401,1.0924],[104.0439,1.088],[104.0546,1.0805],[104.0596,1.081],[104.063,1.0754],[104.0743,1.0757],[104.0747,1.0818],[104.0794,1.0803],[104.0769,1.075],[104.0783,1.0695],[104.0846,1.0707],[104.0914,1.0643],[104.0964,1.0636],[104.0986,1.0682],[104.1047,1.0705],[104.1034,1.0621],[104.1079,1.0521],[104.1063,1.0441],[104.0988,1.042],[104.0978,1.0442],[104.0866,1.0397],[104.086,1.0472],[104.0785,1.0478],[104.072,1.0507],[104.0696,1.0445],[104.0697,1.0395],[104.0667,1.0338],[104.061,1.0318],[104.0579,1.0392],[104.063,1.0436],[104.0569,1.0504],[104.0535,1.059],[104.0541,1.0618],[104.0591,1.0667],[104.0546,1.0694],[104.0511,1.0655],[104.0464,1.068],[104.0435,1.0728],[104.0392,1.0732],[104.0362,1.0797],[104.0397,1.0835],[104.0385,1.0913],[104.0401,1.0924]]]}},{"type":"Feature","properties":{"mhid":"1332:159","alt_name":"KOTA TANJUNG PINANG","latitude":0.91683,"longitude":104.44329,"sample_value":478},"geometry":{"type":"MultiLineString","coordinates":[[[104.4593,0.8849],[104.4522,0.8874],[104.448,0.8832],[104.4399,0.8837],[104.437,0.8814],[104.4272,0.8786],[104.4186,0.8781],[104.4189,0.8756],[104.4249,0.8735],[104.4289,0.8668],[104.4382,0.8708],[104.4449,0.8673],[104.447,0.869],[104.4556,0.865],[104.4605,0.8588],[104.466,0.8588],[104.4682,0.8666],[104.4757,0.867],[104.4839,0.8703],[104.4833,0.8737],[104.469,0.8782],[104.4674,0.882],[104.4593,0.8849]],[[104.4206,0.9319],[104.409,0.9298],[104.4084,0.9264],[104.4193,0.9239],[104.4269,0.9266],[104.4206,0.9319]],[[104.3473,0.9521],[104.338,0.9556],[104.338,0.9507],[104.3473,0.9521]],[[104.4102,0.9595],[104.4034,0.9601],[104.4044,0.9545],[104.4102,0.9595]],[[104.4738,0.9787],[104.4695,0.9818],[104.4644,0.9826],[104.4626,0.98],[104.4457,0.9792],[104.4364,0.9763],[104.429,0.9777],[104.4264,0.975],[104.4149,0.9782],[104.4124,0.967],[104.4206,0.9523],[104.4262,0.9535],[104.4325,0.9458],[104.4368,0.9431],[104.4415,0.9434],[104.4446,0.9372],[104.4536,0.9359],[104.4569,0.9381],[104.4693,0.9368],[104.4769,0.9292],[104.4642,0.9323],[104.4574,0.9297],[104.4533,0.9297],[104.4424,0.9344],[104.4381,0.9261],[104.44,0.9174],[104.4379,0.9155],[104.4391,0.9059],[104.4478,0.9047],[104.4512,0.8979],[104.4562,0.9011],[104.4589,0.8978],[104.4708,0.8951],[104.4721,0.8917],[104.4798,0.884],[104.4839,0.8764],[104.4978,0.8728],[104.5007,0.8781],[104.5041,0.873],[104.4972,0.8703],[104.4913,0.872],[104.4872,0.8683],[104.4786,0.8653],[104.477,0.8538],[104.4779,0.8487],[104.4838,0.8477],[104.4885,0.8507],[104.4949,0.8478],[104.4988,0.8404],[104.5082,0.8408],[104.5137,0.8436]]]}},{"type":"Feature","properties":{"mhid":"1332:160","alt_name":"KABUPATEN KEPULAUAN SERIBU","latitude":-5.5985,"longitude":106.55271,"sample_value":320},"geometry":{"type":"MultiLineString","coordinates":[[[106.6919,-5.9708],[106.6896,-5.9749],[106.6949,-5.9781],[106.6952,-5.972],[106.6919,-5.9708]],[[106.6299,-5.8538],[106.615,-5.8564],[106.6157,-5.8605],[106.6299,-5.8538]]]}},{"type":"Feature","properties":{"mhid":"1332:165","alt_name":"KOTA JAKARTA UTARA","latitude":-6.1339,"longitude":106.8823,"sample_value":827},"geometry":{"type":"MultiLineString","coordinates":[[[106.969,-6.0907],[106.959,-6.0938],[106.9188,-6.0991],[106.8842,-6.0964],[106.8791,-6.095],[106.8763,-6.102],[106.8634,-6.1121],[106.8538,-6.1184],[106.8383,-6.1214],[106.8294,-6.1201],[106.8288,-6.1173],[106.8233,-6.1173],[106.8172,-6.1149],[106.8165,-6.1199],[106.8096,-6.1202],[106.8044,-6.1019],[106.8006,-6.1084],[106.796,-6.1089],[106.797,-6.0941],[106.7904,-6.0936],[106.7896,-6.1007],[106.7903,-6.108],[106.7825,-6.1086],[106.7716,-6.1049],[106.766,-6.101],[106.7627,-6.1036],[106.7573,-6.1039],[106.7469,-6.0999],[106.7399,-6.1018],[106.733,-6.0982],[106.724,-6.0895],[106.7186,-6.0919]]]}},{"type":"Feature","properties":{"mhid":"1332:167","alt_name":"KABUPATEN SUKABUMI","latitude":-7.06667,"longitude":106.7,"sample_value":542},"geometry":{"type":"MultiLineString","coordinates":[[[106.3969,-6.978],[106.3999,-6.9765],[106.4126,-6.9755],[106.4155,-6.9709],[106.4141,-6.9666],[106.42,-6.9606],[106.4293,-6.9582],[106.4345,-6.958],[106.4414,-6.9525],[106.452,-6.9544],[106.4568,-6.957],[106.4604,-6.9551],[106.4732,-6.9617],[106.478,-6.9631],[106.4862,-6.9604],[106.4968,-6.9632],[106.4998,-6.962],[106.5103,-6.9644],[106.5255,-6.9735],[106.533,-6.9809],[106.54,-6.9824],[106.5436,-6.9882],[106.5407,-6.991],[106.5421,-6.9978],[106.5394,-7.0059],[106.5402,-7.0222],[106.5429,-7.0271],[106.5438,-7.033],[106.5414,-7.043],[106.5455,-7.0551],[106.5402,-7.0589],[106.5391,-7.0675],[106.536,-7.0735],[106.5297,-7.0789],[106.5216,-7.0895],[106.5162,-7.0937],[106.5112,-7.0948],[106.4846,-7.1038],[106.4815,-7.1121],[106.4749,-7.1155],[106.4693,-7.1203],[106.4657,-7.1274],[106.4571,-7.1291],[106.4575,-7.1338],[106.4491,-7.1527],[106.456,-7.1607],[106.4582,-7.1668],[106.4656,-7.1707],[106.4663,-7.1741],[106.4637,-7.1803],[106.4539,-7.1866],[106.448,-7.186],[106.4452,-7.1901],[106.4397,-7.1906],[106.4384,-7.1858],[106.4239,-7.1904],[106.4139,-7.1868],[106.4072,-7.1883],[106.4006,-7.1867],[106.3994,-7.1935],[106.3957,-7.1986],[106.3991,-7.2018],[106.3975,-7.2092],[106.3949,-7.2118],[106.3898,-7.2112],[106.3887,-7.218],[106.3905,-7.2291],[106.3861,-7.2363],[106.3807,-7.2392],[106.3784,-7.2427],[106.3848,-7.2635],[106.3805,-7.2736],[106.3706,-7.2794],[106.3715,-7.2843],[106.3775,-7.2927],[106.3776,-7.2983],[106.3731,-7.3034],[106.3727,-7.3079],[106.3785,-7.3154],[106.3813,-7.321],[106.3811,-7.3273],[106.3876,-7.3246],[106.3992,-7.3229],[106.3987,-7.3319],[106.4008,-7.3383],[106.3997,-7.343],[106.4027,-7.3469],[106.4037,-7.3575],[106.3995,-7.37],[106.4049,-7.374],[106.4076,-7.3676],[106.4162,-7.3627],[106.427,-7.3595],[106.4444,-7.361],[106.4494,-7.366],[106.4609,-7.3683],[106.4677,-7.3715],[106.4695,-7.3704],[106.4774,-7.3724],[106.4942,-7.3796],[106.4963,-7.3857],[106.505,-7.3933],[106.5147,-7.3984],[106.526,-7.4084],[106.5332,-7.4086],[106.5453,-7.4134],[106.5563,-7.4151],[106.5625,-7.4175],[106.5759,-7.4182],[106.5821,-7.4133],[106.6005,-7.4108],[106.6106,-7.4114],[106.6217,-7.4097],[106.6294,-7.4099],[106.6331,-7.4185],[106.6542,-7.4218],[106.6763,-7.4243],[106.6817,-7.4244],[106.7306,-7.4299],[106.7328,-7.4356],[106.7398,-7.4373],[106.7548,-7.4372],[106.7736,-7.4409],[106.7804,-7.4403],[106.7917,-7.4326],[106.7934,-7.4274],[106.7932,-7.4211]]]}},{"type":"Feature","properties":{"mhid":"1332:168","alt_name":"KABUPATEN CIANJUR","latitude":-6.7725,"longitude":107.08306,"sample_value":819},"geometry":{"type":"MultiLineString","coordinates":[[[106.7932,-7.4211],[106.7946,-7.4323],[106.7935,-7.4361],[106.8001,-7.4368],[106.8191,-7.4345],[106.8409,-7.4337],[106.8619,-7.4345],[106.8678,-7.4314],[106.8803,-7.4348],[106.9404,-7.4402],[106.9568,-7.4426],[106.9679,-7.443],[106.9908,-7.4454],[107.0058,-7.4479],[107.0174,-7.4487],[107.0416,-7.4491],[107.0622,-7.4521],[107.0726,-7.4522],[107.086,-7.4533],[107.109,-7.4579],[107.1138,-7.4594],[107.1276,-7.4613],[107.1549,-7.4675],[107.1649,-7.4693],[107.1743,-7.4725],[107.2036,-7.4791],[107.2388,-7.4877],[107.248,-7.4892],[107.2619,-7.4902],[107.2908,-7.4944],[107.3116,-7.4942],[107.3301,-7.4956],[107.3454,-7.4993],[107.3574,-7.5],[107.373,-7.4986],[107.3832,-7.4993],[107.3891,-7.4985],[107.3928,-7.4951],[107.3997,-7.4958],[107.4068,-7.5028],[107.4231,-7.5056]]]}},{"type":"Feature","properties":{"mhid":"1332:170","alt_name":"KABUPATEN GARUT","latitude":-7.38333,"longitude":107.76667,"sample_value":507},"geometry":{"type":"MultiLineString","coordinates":[[[107.4231,-7.5056],[107.4275,-7.5067],[107.4416,-7.5072],[107.4531,-7.5106],[107.4575,-7.514],[107.4713,-7.5175],[107.4774,-7.5222],[107.4772,-7.5275],[107.4808,-7.5306],[107.4807,-7.5378],[107.4843,-7.539],[107.4921,-7.5352],[107.4988,-7.5356],[107.5072,-7.5404],[107.521,-7.5421],[107.526,-7.5468],[107.529,-7.547],[107.5372,-7.5531],[107.5402,-7.552],[107.5577,-7.5572],[107.5763,-7.5654],[107.596,-7.5691],[107.6061,-7.5741],[107.6124,-7.5827],[107.6177,-7.5834],[107.6241,-7.59],[107.6229,-7.5951],[107.6266,-7.599],[107.6332,-7.6011],[107.6356,-7.5993],[107.6416,-7.6042],[107.6548,-7.6113],[107.6644,-7.6191],[107.6692,-7.6217],[107.683,-7.6382],[107.6832,-7.6441],[107.6872,-7.649],[107.6889,-7.6575],[107.686,-7.6616],[107.6901,-7.6682],[107.694,-7.6692],[107.7069,-7.6678],[107.7087,-7.6665],[107.7209,-7.6668],[107.7537,-7.6738],[107.7614,-7.6748],[107.7758,-7.6786],[107.7856,-7.68],[107.8133,-7.6909],[107.8267,-7.6987],[107.8349,-7.7062],[107.8376,-7.7137],[107.8344,-7.722],[107.8364,-7.7276],[107.8469,-7.7368],[107.8504,-7.7344],[107.8558,-7.7373],[107.8644,-7.7394],[107.8892,-7.7394],[107.8935,-7.7354],[107.9001,-7.7395],[107.9034,-7.7359],[107.9072,-7.7365],[107.9097,-7.7317]]]}},{"type":"Feature","properties":{"mhid":"1332:171","alt_name":"KABUPATEN TASIKMALAYA","latitude":-7.5,"longitude":108.13333,"sample_value":451},"geometry":{"type":"MultiLineString","coordinates":[[[107.9097,-7.7317],[107.9289,-7.7321],[107.9442,-7.734],[107.9629,-7.7382],[108.0097,-7.7475],[108.0229,-7.7516],[108.0378,-7.7541],[108.0472,-7.7576],[108.0645,-7.7677],[108.068,-7.7665],[108.0781,-7.7692],[108.0824,-7.7727],[108.0888,-7.7713],[108.1135,-7.777],[108.1311,-7.7831],[108.1455,-7.7858],[108.1735,-7.7898],[108.1942,-7.7939],[108.2451,-7.8021],[108.2519,-7.8039],[108.2942,-7.8108],[108.2996,-7.8149],[108.3023,-7.8115],[108.3102,-7.812],[108.3219,-7.8157],[108.3279,-7.8144],[108.3405,-7.8166]]]}},{"type":"Feature","properties":{"mhid":"1332:174","alt_name":"KABUPATEN CIREBON","latitude":-6.8,"longitude":108.56667,"sample_value":366},"geometry":{"type":"MultiLineString","coordinates":[[[108.5607,-6.6924],[108.5627,-6.6909],[108.5582,-6.6729],[108.5576,-6.6555],[108.5588,-6.6514],[108.5579,-6.6443],[108.5528,-6.6269],[108.5527,-6.6231],[108.5459,-6.603],[108.5433,-6.5908],[108.5431,-6.5724],[108.5437,-6.5672],[108.5475,-6.5592],[108.5446,-6.5403],[108.546,-6.5356],[108.5381,-6.5164]],[[108.8338,-6.758],[108.8254,-6.7505],[108.823,-6.7513],[108.8153,-6.7485],[108.8119,-6.7426],[108.8126,-6.7371],[108.8046,-6.7383],[108.7958,-6.7426],[108.8035,-6.7497],[108.8075,-6.7493],[108.8101,-6.7578],[108.8054,-6.7624],[108.8087,-6.7641],[108.8053,-6.7769],[108.8076,-6.781],[108.8061,-6.7856],[108.8003,-6.7912],[108.7915,-6.795],[108.7849,-6.8],[108.7627,-6.8118],[108.7549,-6.8129],[108.7499,-6.8158],[108.7404,-6.8133],[108.731,-6.8074],[108.7258,-6.8079],[108.7166,-6.8108],[108.7046,-6.8097],[108.6898,-6.8036],[108.6854,-6.8],[108.6793,-6.791],[108.6767,-6.7831],[108.6763,-6.7759],[108.6806,-6.7707],[108.6782,-6.7636],[108.6749,-6.7603],[108.6694,-6.7585],[108.6675,-6.7604],[108.66,-6.7588],[108.6532,-6.7533],[108.6503,-6.7549],[108.6505,-6.7599],[108.6372,-6.7695],[108.6294,-6.7719],[108.6262,-6.7714],[108.6177,-6.7657],[108.6117,-6.7685],[108.6014,-6.7621],[108.5952,-6.7534],[108.5949,-6.7454]]]}},{"type":"Feature","properties":{"mhid":"1332:177","alt_name":"KABUPATEN INDRAMAYU","latitude":-6.45,"longitude":108.16667,"sample_value":59},"geometry":{"type":"MultiLineString","coordinates":[[[108.5381,-6.5164],[108.5356,-6.4985],[108.5395,-6.4836],[108.513,-6.4722],[108.5015,-6.4666],[108.4818,-6.4555],[108.4727,-6.4496],[108.4552,-6.435],[108.4492,-6.4311],[108.432,-6.4137],[108.4193,-6.3991],[108.4071,-6.3843],[108.3928,-6.3613],[108.3854,-6.3562],[108.3779,-6.3429],[108.3735,-6.3319],[108.3673,-6.3111],[108.3673,-6.302],[108.3712,-6.296],[108.3749,-6.296],[108.3712,-6.2886],[108.3639,-6.2663],[108.36,-6.2455],[108.3451,-6.2448],[108.3407,-6.2463],[108.3419,-6.2502],[108.3413,-6.2592],[108.339,-6.2644],[108.3389,-6.2727],[108.3347,-6.2747],[108.3269,-6.2681],[108.3285,-6.2642],[108.3134,-6.2559],[108.3102,-6.2534],[108.2998,-6.2488],[108.2882,-6.2455],[108.2777,-6.2491],[108.2673,-6.2489],[108.2531,-6.2455],[108.2382,-6.2382],[108.24,-6.2436],[108.2352,-6.2448],[108.2298,-6.2419],[108.2247,-6.2489],[108.2198,-6.2496],[108.2157,-6.2375],[108.2119,-6.2396],[108.2072,-6.2384],[108.2047,-6.2325],[108.1997,-6.2296],[108.1963,-6.2306],[108.1893,-6.2294],[108.1885,-6.2338],[108.1972,-6.237],[108.2029,-6.2418],[108.2035,-6.2488],[108.2055,-6.2521],[108.2071,-6.2616],[108.2127,-6.2651],[108.2063,-6.2685],[108.2057,-6.2731],[108.2016,-6.2771],[108.1944,-6.279],[108.1918,-6.2818],[108.1935,-6.2913],[108.19,-6.2956],[108.1811,-6.2944],[108.1683,-6.3067],[108.1641,-6.3073],[108.158,-6.3118],[108.1501,-6.3154],[108.1368,-6.3187],[108.1344,-6.3213],[108.133,-6.3298],[108.1299,-6.3344],[108.1186,-6.3335],[108.1074,-6.334],[108.1032,-6.331],[108.1029,-6.3273],[108.0981,-6.3254],[108.0914,-6.3255],[108.0875,-6.3204],[108.0772,-6.3194],[108.0659,-6.3169],[108.0459,-6.3106],[108.0331,-6.3034],[108.0287,-6.3027],[108.0069,-6.288],[107.9994,-6.2843],[107.9919,-6.2791],[107.9749,-6.2712],[107.9686,-6.2669],[107.9614,-6.2638],[107.9484,-6.2568],[107.9363,-6.2528],[107.9307,-6.2523],[107.9212,-6.2488],[107.9198,-6.2502]]]}},{"type":"Feature","properties":{"mhid":"1332:178","alt_name":"KABUPATEN SUBANG","latitude":-6.50833,"longitude":107.7025,"sample_value":822},"geometry":{"type":"MultiLineString","coordinates":[[[107.9198,-6.2502],[107.9122,-6.2482],[107.9035,-6.243],[107.8899,-6.2375],[107.8896,-6.2324],[107.8953,-6.2281],[107.8947,-6.2243],[107.8883,-6.2205],[107.8864,-6.2133],[107.8904,-6.2087],[107.9015,-6.2147],[107.9023,-6.2086],[107.8964,-6.2038],[107.8988,-6.198],[107.8962,-6.1918],[107.8889,-6.1925],[107.888,-6.1999],[107.8756,-6.1985],[107.8737,-6.2122],[107.8688,-6.2109],[107.8633,-6.2142],[107.8587,-6.215],[107.8552,-6.2097],[107.8507,-6.1986],[107.8531,-6.1909],[107.8447,-6.1895],[107.8399,-6.1902],[107.8359,-6.1885],[107.8218,-6.1873],[107.815,-6.1908],[107.8154,-6.1972],[107.8068,-6.1995],[107.8013,-6.2045],[107.793,-6.2039],[107.7842,-6.2067],[107.7734,-6.212],[107.7652,-6.2144],[107.7602,-6.2179],[107.7608,-6.2206],[107.7535,-6.2288],[107.7481,-6.2263],[107.7403,-6.2294],[107.7407,-6.2333],[107.7338,-6.237],[107.7276,-6.2378],[107.715,-6.235],[107.7025,-6.2276],[107.6977,-6.2229],[107.6942,-6.2244],[107.6904,-6.237],[107.6868,-6.2407],[107.679,-6.2447],[107.6701,-6.2463],[107.6641,-6.2455],[107.6561,-6.241],[107.6456,-6.2287],[107.6413,-6.2225],[107.6412,-6.2166]]]}},{"type":"Feature","properties":{"mhid":"1332:179","alt_name":"KABUPATEN PURWAKARTA","latitude":-6.58333,"longitude":107.45,"sample_value":687},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:180","alt_name":"KABUPATEN KARAWANG","latitude":-6.26667,"longitude":107.41667,"sample_value":584},"geometry":{"type":"MultiLineString","coordinates":[[[107.6412,-6.2166],[107.6308,-6.2035],[107.6254,-6.1926],[107.6221,-6.1883],[107.6124,-6.1908],[107.5961,-6.1896],[107.5848,-6.1899],[107.5764,-6.188],[107.5693,-6.1833],[107.564,-6.1815],[107.5536,-6.1806],[107.5407,-6.1782],[107.5281,-6.1731],[107.5098,-6.1627],[107.4895,-6.1571],[107.4799,-6.1528],[107.4665,-6.1429],[107.4605,-6.1356],[107.4523,-6.121],[107.4496,-6.1126],[107.4446,-6.1018],[107.4333,-6.0908],[107.422,-6.0702],[107.4112,-6.0541],[107.4025,-6.036],[107.3945,-6.0247],[107.3746,-6.0002],[107.36,-5.9854],[107.3511,-5.9772],[107.3407,-5.9696],[107.3292,-5.9649],[107.3158,-5.9607],[107.306,-5.9585],[107.2851,-5.9589],[107.2771,-5.9614],[107.2662,-5.9631],[107.2548,-5.9665],[107.223,-5.9749],[107.2057,-5.978],[107.2045,-5.9821],[107.1894,-5.9872],[107.1811,-5.9887],[107.1706,-5.9875],[107.1655,-5.988],[107.1485,-5.984],[107.1393,-5.98],[107.1327,-5.976],[107.1259,-5.9698],[107.1135,-5.9554],[107.1109,-5.9539],[107.1004,-5.9362]]]}},{"type":"Feature","properties":{"mhid":"1332:181","alt_name":"KABUPATEN BEKASI","latitude":-6.24667,"longitude":107.10833,"sample_value":986},"geometry":{"type":"MultiLineString","coordinates":[[[107.1004,-5.9362],[107.0853,-5.9359],[107.0768,-5.9344],[107.0636,-5.9306],[107.0521,-5.9245],[107.0418,-5.9204],[107.0386,-5.9162],[107.0312,-5.9138],[107.0242,-5.9145],[107.0164,-5.9177],[107.0109,-5.9234],[106.9998,-5.9329],[106.9914,-5.9362],[106.9957,-5.9404],[107.0066,-5.9404],[107.0112,-5.9459],[107.0158,-5.958],[107.0167,-5.9709],[107.0122,-5.9806],[107.0078,-5.9982],[107.001,-6.0025],[106.995,-6.0021],[106.9881,-6.0045],[106.9862,-6.01],[106.9928,-6.0145],[106.9938,-6.0201],[106.9929,-6.028],[107.0014,-6.0247],[107.01,-6.0238],[107.0152,-6.0296],[107.0054,-6.0383],[107.0083,-6.0418],[107.0048,-6.0501],[106.9987,-6.048],[106.992,-6.0526],[106.9983,-6.0589],[106.9999,-6.0665],[107.0028,-6.0698],[107.0166,-6.0781],[107.0069,-6.0818],[107.0025,-6.0805],[106.9971,-6.0814],[106.99,-6.0873],[106.9814,-6.0894],[106.969,-6.0907]]]}},{"type":"Feature","properties":{"mhid":"1332:182","alt_name":"KABUPATEN BANDUNG BARAT","latitude":-6.83333,"longitude":107.48333,"sample_value":992},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:183","alt_name":"KABUPATEN PANGANDARAN","latitude":-7.6673,"longitude":108.64037,"sample_value":592},"geometry":{"type":"MultiLineString","coordinates":[[[108.3405,-7.8166],[108.345,-7.8183],[108.3532,-7.8162],[108.3615,-7.8164],[108.3758,-7.8133],[108.4039,-7.8162],[108.435,-7.8221],[108.4429,-7.8232],[108.4509,-7.8226],[108.4539,-7.8137],[108.4651,-7.8122],[108.477,-7.8072],[108.483,-7.8026],[108.4828,-7.7989],[108.4889,-7.7962],[108.4976,-7.7904],[108.5007,-7.7838],[108.5061,-7.7666],[108.508,-7.7637],[108.5058,-7.7573],[108.5049,-7.7497],[108.4994,-7.7495],[108.4973,-7.741],[108.4995,-7.7341],[108.498,-7.7242],[108.5019,-7.7152],[108.5136,-7.7017],[108.5224,-7.6974],[108.5304,-7.6956],[108.5312,-7.6931],[108.5454,-7.6911],[108.562,-7.6866],[108.5882,-7.684],[108.5909,-7.682],[108.5972,-7.6849],[108.6286,-7.6855],[108.6425,-7.6883],[108.6507,-7.6934],[108.6551,-7.698],[108.6566,-7.706],[108.6515,-7.7096],[108.649,-7.7143],[108.6512,-7.7183],[108.6655,-7.7274],[108.674,-7.726],[108.6781,-7.7221],[108.6743,-7.715],[108.6706,-7.7161],[108.6639,-7.7079],[108.6591,-7.7036],[108.6627,-7.6943],[108.6703,-7.6877],[108.6799,-7.6815],[108.6942,-7.6766],[108.7101,-7.6767],[108.7256,-7.6797],[108.7377,-7.683],[108.7416,-7.6866],[108.7496,-7.6896],[108.7554,-7.6947],[108.7612,-7.6958],[108.7631,-7.6914],[108.7733,-7.6907],[108.7741,-7.6845],[108.7809,-7.6851],[108.7795,-7.6918],[108.7801,-7.6973],[108.7842,-7.6966],[108.79,-7.6923],[108.7939,-7.6934],[108.7961,-7.6873],[108.7932,-7.6824],[108.794,-7.679],[108.8001,-7.6764]]]}},{"type":"Feature","properties":{"mhid":"1332:187","alt_name":"KOTA CIREBON","latitude":-6.75,"longitude":108.55,"sample_value":657},"geometry":{"type":"MultiLineString","coordinates":[[[108.5949,-6.7454],[108.5902,-6.7432],[108.5857,-6.7369],[108.5867,-6.7307],[108.578,-6.7247],[108.5751,-6.7197],[108.5724,-6.7078],[108.5684,-6.7052],[108.5623,-6.692],[108.5607,-6.6924]]]}},{"type":"Feature","properties":{"mhid":"1332:194","alt_name":"KABUPATEN CILACAP","latitude":-7.57417,"longitude":108.98861,"sample_value":615},"geometry":{"type":"MultiLineString","coordinates":[[[108.8001,-7.6764],[108.7943,-7.6808],[108.7969,-7.6878],[108.8029,-7.6887],[108.7964,-7.6949],[108.7921,-7.6947],[108.7847,-7.7064],[108.7886,-7.7072],[108.7956,-7.7058],[108.8,-7.7117],[108.7997,-7.7179],[108.794,-7.7191],[108.7885,-7.7252],[108.79,-7.7308],[108.7855,-7.7357],[108.7898,-7.7384],[108.7966,-7.7352],[108.7994,-7.7426],[108.805,-7.7418],[108.8098,-7.736],[108.8136,-7.7346],[108.8292,-7.7388],[108.8384,-7.7371],[108.8503,-7.7409],[108.8557,-7.7439],[108.8586,-7.741],[108.8649,-7.7415],[108.8698,-7.744],[108.8828,-7.7456],[108.8853,-7.7485],[108.9043,-7.7522],[108.9098,-7.7515],[108.9215,-7.7538],[108.9333,-7.7589],[108.9484,-7.7622],[108.9498,-7.7608],[108.9615,-7.7643],[108.967,-7.7633],[108.9721,-7.7667],[108.9829,-7.7718],[109.0026,-7.7761],[109.0063,-7.7777],[109.0169,-7.7788],[109.0197,-7.7756],[109.0297,-7.7776],[109.036,-7.78],[109.0386,-7.7846],[109.0442,-7.7843],[109.0446,-7.7794],[109.0502,-7.7751],[109.0479,-7.7679],[109.0439,-7.7608],[109.0368,-7.7616],[109.0348,-7.7657],[109.0312,-7.7664],[109.0233,-7.7638],[109.0194,-7.7607],[109.0174,-7.7544],[109.0206,-7.7521],[109.02,-7.7436],[109.0224,-7.7314],[109.0275,-7.7212],[109.0323,-7.7151],[109.0418,-7.7066],[109.0529,-7.6992],[109.0626,-7.6948],[109.0786,-7.6899],[109.0886,-7.6877],[109.0998,-7.687],[109.1298,-7.6896],[109.1893,-7.693],[109.1913,-7.6935],[109.2243,-7.6952],[109.2876,-7.7005],[109.3262,-7.706],[109.3679,-7.715],[109.3825,-7.7195],[109.3919,-7.7257]]]}},{"type":"Feature","properties":{"mhid":"1332:198","alt_name":"KABUPATEN KEBUMEN","latitude":-7.63917,"longitude":109.66056,"sample_value":612},"geometry":{"type":"MultiLineString","coordinates":[[[109.3919,-7.7257],[109.3863,-7.7513],[109.396,-7.7569],[109.3976,-7.7609],[109.4073,-7.7646],[109.4125,-7.7698],[109.4209,-7.7704],[109.4366,-7.7732],[109.4364,-7.7687],[109.4406,-7.7663],[109.4443,-7.7683],[109.4487,-7.7655],[109.4574,-7.7652],[109.4661,-7.7623],[109.4672,-7.7586],[109.5259,-7.7656],[109.56,-7.7715],[109.5621,-7.7726],[109.5926,-7.7785],[109.6096,-7.783],[109.6116,-7.7795],[109.625,-7.7825],[109.6239,-7.7854],[109.6448,-7.7885],[109.6674,-7.7925],[109.7091,-7.802],[109.7535,-7.8132],[109.7585,-7.8152],[109.7908,-7.823],[109.8192,-7.8305],[109.8196,-7.83]]]}},{"type":"Feature","properties":{"mhid":"1332:199","alt_name":"KABUPATEN PURWOREJO","latitude":-7.7,"longitude":109.96667,"sample_value":916},"geometry":{"type":"MultiLineString","coordinates":[[[109.8196,-7.83],[109.8409,-7.8345],[109.8632,-7.8398],[109.8948,-7.8488],[109.9225,-7.8577],[109.9693,-7.874],[109.992,-7.8834],[110.0025,-7.8887],[110.0047,-7.8849],[110.0169,-7.8894],[110.0197,-7.8917]]]}},{"type":"Feature","properties":{"mhid":"1332:202","alt_name":"KABUPATEN BOYOLALI","latitude":-7.5,"longitude":110.7,"sample_value":334},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:205","alt_name":"KABUPATEN WONOGIRI","latitude":-7.91667,"longitude":111,"sample_value":684},"geometry":{"type":"MultiLineString","coordinates":[[[110.8298,-8.2014],[110.832,-8.2036],[110.8375,-8.203],[110.8391,-8.2059],[110.8476,-8.2037],[110.8533,-8.2062],[110.857,-8.2049],[110.8626,-8.2065],[110.8727,-8.2058],[110.8812,-8.2114],[110.8866,-8.2101],[110.8984,-8.2119],[110.9087,-8.211]]]}},{"type":"Feature","properties":{"mhid":"1332:207","alt_name":"KABUPATEN SRAGEN","latitude":-7.41278,"longitude":110.935,"sample_value":402},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:208","alt_name":"KABUPATEN GROBOGAN","latitude":-7.11667,"longitude":110.91667,"sample_value":937},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:210","alt_name":"KABUPATEN REMBANG","latitude":-6.78333,"longitude":111.46667,"sample_value":322},"geometry":{"type":"MultiLineString","coordinates":[[[111.6914,-6.7538],[111.6635,-6.7311],[111.6424,-6.712],[111.6195,-6.6923],[111.5918,-6.6666],[111.5663,-6.6439],[111.5626,-6.6394],[111.5486,-6.637],[111.5326,-6.632],[111.5292,-6.6302],[111.5118,-6.6331],[111.5004,-6.6272],[111.4927,-6.6207],[111.4892,-6.6252],[111.4791,-6.6289],[111.4713,-6.6375],[111.4661,-6.6411],[111.4648,-6.6448],[111.4667,-6.6488],[111.4665,-6.6595],[111.4606,-6.6643],[111.4431,-6.6706],[111.4417,-6.6724],[111.423,-6.6816],[111.4154,-6.6844],[111.4073,-6.6895],[111.3944,-6.6944],[111.3886,-6.6984],[111.3836,-6.6985],[111.3812,-6.702],[111.3738,-6.7013],[111.3572,-6.7044],[111.3523,-6.7032],[111.341,-6.7026],[111.3316,-6.7009],[111.3193,-6.6971],[111.3139,-6.6982],[111.3053,-6.6966],[111.2927,-6.6878],[111.2792,-6.6885],[111.2743,-6.6911],[111.2679,-6.6909],[111.2588,-6.6873],[111.2511,-6.6916],[111.243,-6.6923],[111.2341,-6.6867],[111.2348,-6.6961]]]}},{"type":"Feature","properties":{"mhid":"1332:211","alt_name":"KABUPATEN PATI","latitude":-6.76667,"longitude":111.1,"sample_value":841},"geometry":{"type":"MultiLineString","coordinates":[[[111.2348,-6.6961],[111.2336,-6.6873],[111.2201,-6.6842],[111.2117,-6.68],[111.2065,-6.6746],[111.1912,-6.6659],[111.1829,-6.6628],[111.156,-6.659],[111.1462,-6.6552],[111.144,-6.6521],[111.1316,-6.643],[111.1264,-6.6373],[111.1194,-6.6273],[111.1082,-6.6096],[111.0996,-6.5949],[111.0842,-6.5648],[111.0787,-6.5478],[111.0751,-6.5391],[111.0692,-6.5301],[111.0635,-6.5195],[111.0584,-6.5054],[111.0502,-6.4728],[111.0493,-6.4629],[111.0467,-6.4504],[111.0445,-6.434],[111.0481,-6.4286],[111.047,-6.4251],[111.0296,-6.4208],[110.9967,-6.4065],[110.9911,-6.4074],[110.9913,-6.4111],[110.9872,-6.4123],[110.9751,-6.4118]]]}},{"type":"Feature","properties":{"mhid":"1332:213","alt_name":"KABUPATEN JEPARA","latitude":-6.58333,"longitude":110.76667,"sample_value":515},"geometry":{"type":"MultiLineString","coordinates":[[[110.9751,-6.4118],[110.9625,-6.4114],[110.9589,-6.4122],[110.9495,-6.4111],[110.9245,-6.4068],[110.919,-6.4046],[110.9109,-6.4052],[110.9012,-6.4042],[110.8984,-6.4061],[110.8837,-6.409],[110.8657,-6.4081],[110.8578,-6.4062],[110.8454,-6.4081],[110.8363,-6.4075],[110.8324,-6.4118],[110.8185,-6.4236],[110.8118,-6.4266],[110.8082,-6.4255],[110.7997,-6.4273],[110.786,-6.4254],[110.7738,-6.4332],[110.7587,-6.4413],[110.7496,-6.4419],[110.7462,-6.4435],[110.7415,-6.4417],[110.7266,-6.4461],[110.7176,-6.4525],[110.7134,-6.4578],[110.7138,-6.4678],[110.7084,-6.4753],[110.7037,-6.4742],[110.6943,-6.4859],[110.6895,-6.4891],[110.6914,-6.4973],[110.6873,-6.4997],[110.6835,-6.4965],[110.6746,-6.4969],[110.6727,-6.503],[110.665,-6.5039],[110.6661,-6.5093],[110.6735,-6.513],[110.679,-6.5119],[110.6823,-6.5137],[110.6836,-6.5181],[110.6821,-6.5252],[110.6778,-6.5333],[110.6702,-6.5358],[110.6659,-6.5323],[110.6659,-6.5412],[110.6616,-6.5452],[110.6557,-6.5452],[110.6543,-6.5528],[110.6464,-6.5539],[110.6449,-6.5575],[110.6548,-6.5637],[110.6604,-6.5696],[110.6618,-6.5742],[110.656,-6.5841],[110.644,-6.5872],[110.6483,-6.5911],[110.6554,-6.5938],[110.6545,-6.606],[110.653,-6.61],[110.6455,-6.6185],[110.6395,-6.6174],[110.6377,-6.631],[110.6406,-6.6385],[110.6462,-6.6457],[110.6464,-6.6508],[110.6406,-6.6621],[110.6322,-6.681],[110.6248,-6.6907],[110.6204,-6.6937],[110.6148,-6.7024],[110.6148,-6.7068],[110.6102,-6.7065],[110.5984,-6.7172],[110.5899,-6.7238]],[[110.4303,-5.8871],[110.429,-5.8831],[110.4253,-5.8824],[110.4277,-5.8923],[110.434,-5.894],[110.4303,-5.8871]],[[110.6045,-5.842],[110.6009,-5.8426],[110.6,-5.8583],[110.5981,-5.8648],[110.6022,-5.8652],[110.6075,-5.8476],[110.6045,-5.842]],[[110.1906,-5.8095],[110.1845,-5.8119],[110.1806,-5.8165],[110.1827,-5.8195],[110.1886,-5.8196],[110.1955,-5.8154],[110.1906,-5.8095]],[[110.484,-5.7703],[110.4758,-5.7758],[110.4731,-5.782],[110.4698,-5.7853],[110.4636,-5.7959],[110.4582,-5.8006],[110.4539,-5.8021],[110.4506,-5.8066],[110.4495,-5.8136],[110.4523,-5.8162],[110.4608,-5.8119],[110.4668,-5.8123],[110.4693,-5.8148],[110.4774,-5.8164],[110.4741,-5.8204],[110.4594,-5.8253],[110.454,-5.8301],[110.4441,-5.8342],[110.4353,-5.834],[110.4268,-5.8357],[110.4202,-5.8386],[110.4154,-5.8379],[110.4109,-5.8414],[110.4166,-5.8434],[110.4262,-5.8527],[110.4316,-5.8592],[110.4292,-5.8619],[110.433,-5.8732],[110.4314,-5.8809],[110.4349,-5.8801],[110.4457,-5.8859],[110.4495,-5.8844],[110.4461,-5.8755],[110.449,-5.8695],[110.453,-5.866],[110.4645,-5.8624],[110.4653,-5.8577],[110.4704,-5.854],[110.475,-5.8558],[110.4772,-5.8522],[110.4735,-5.8491],[110.4749,-5.8437],[110.4683,-5.8308],[110.4817,-5.8348],[110.4829,-5.8237],[110.4902,-5.8224],[110.4949,-5.8178],[110.487,-5.8103],[110.4889,-5.8064],[110.4748,-5.7938],[110.4761,-5.7871],[110.4825,-5.7803],[110.484,-5.7703]],[[110.4104,-5.7342],[110.4027,-5.7334],[110.407,-5.746],[110.41,-5.7452],[110.4126,-5.7381],[110.4104,-5.7342]],[[110.2511,-5.7314],[110.2398,-5.7301],[110.2405,-5.7351],[110.2312,-5.7381],[110.2447,-5.7583],[110.2468,-5.7623],[110.2546,-5.755],[110.2506,-5.7509],[110.2479,-5.7434],[110.2482,-5.7373],[110.2515,-5.7357],[110.2511,-5.7314]]]}},{"type":"Feature","properties":{"mhid":"1332:214","alt_name":"KABUPATEN DEMAK","latitude":-6.8993,"longitude":110.6122,"sample_value":987},"geometry":{"type":"MultiLineString","coordinates":[[[110.5899,-6.7238],[110.5819,-6.7271],[110.5798,-6.733],[110.5751,-6.7357],[110.5737,-6.7304],[110.5706,-6.7298],[110.5615,-6.7208],[110.5574,-6.7267],[110.5515,-6.7169],[110.5459,-6.7256],[110.5502,-6.7291],[110.5532,-6.7373],[110.56,-6.746],[110.5601,-6.7515],[110.5556,-6.7559],[110.5467,-6.7548],[110.543,-6.7492],[110.537,-6.745],[110.5362,-6.753],[110.5417,-6.7574],[110.551,-6.7629],[110.5638,-6.7608],[110.5648,-6.7629],[110.5755,-6.7656],[110.5757,-6.773],[110.5682,-6.7761],[110.5656,-6.7877],[110.5596,-6.7985],[110.5602,-6.8034],[110.5542,-6.8092],[110.5489,-6.8122],[110.5491,-6.8182],[110.5434,-6.82],[110.5378,-6.8267],[110.5273,-6.8334],[110.5223,-6.834],[110.5227,-6.8393],[110.5278,-6.84],[110.5282,-6.8474],[110.5214,-6.8493],[110.5153,-6.8591],[110.5183,-6.8637],[110.5151,-6.8673],[110.5088,-6.88],[110.5001,-6.8904],[110.4792,-6.9173],[110.4759,-6.9243],[110.4705,-6.9254],[110.4681,-6.9292],[110.4632,-6.9315]]]}},{"type":"Feature","properties":{"mhid":"1332:215","alt_name":"KABUPATEN SEMARANG","latitude":-7.20667,"longitude":110.44139,"sample_value":440},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:264","alt_name":"KABUPATEN SUMENEP","latitude":-7.11667,"longitude":114.33333,"sample_value":118},"geometry":{"type":"MultiLineString","coordinates":[[[113.7636,-7.2093],[113.7542,-7.2062],[113.7497,-7.2157],[113.7508,-7.219],[113.7596,-7.2186],[113.7728,-7.2281],[113.7845,-7.2306],[113.7926,-7.2358],[113.7969,-7.2353],[113.7976,-7.2305],[113.8047,-7.2248],[113.8125,-7.2208],[113.8098,-7.2159],[113.8002,-7.2137],[113.7956,-7.2162],[113.791,-7.2158],[113.7865,-7.2122],[113.7761,-7.2093],[113.7636,-7.2093]],[[113.9245,-7.1743],[113.9229,-7.1737],[113.9132,-7.18],[113.9055,-7.1812],[113.8974,-7.1842],[113.8829,-7.1938],[113.8805,-7.2006],[113.8829,-7.207],[113.887,-7.2119],[113.8903,-7.2122],[113.9022,-7.2092],[113.9097,-7.2097],[113.9265,-7.2031],[113.9335,-7.2064],[113.9362,-7.2136],[113.9416,-7.2193],[113.947,-7.2298],[113.9562,-7.2309],[113.954,-7.2247],[113.9447,-7.2202],[113.9396,-7.2145],[113.9412,-7.2035],[113.9402,-7.1997],[113.9293,-7.1851],[113.9272,-7.1754],[113.9245,-7.1743]],[[114.6119,-7.1634],[114.6091,-7.164],[114.6035,-7.171],[114.6091,-7.1737],[114.6162,-7.1714],[114.6163,-7.1666],[114.6119,-7.1634]],[[114.6763,-7.1597],[114.6678,-7.1599],[114.6578,-7.1642],[114.6566,-7.1711],[114.6638,-7.1705],[114.679,-7.1675],[114.6833,-7.163],[114.6763,-7.1597]],[[115.8597,-7.1529],[115.8642,-7.1485],[115.8573,-7.1457],[115.8552,-7.1506],[115.8597,-7.1529]],[[114.5004,-7.1408],[114.497,-7.1397],[114.4883,-7.1417],[114.4818,-7.141],[114.4772,-7.1437],[114.4773,-7.1527],[114.4822,-7.1596],[114.4872,-7.1619],[114.4964,-7.1611],[114.5069,-7.1557],[114.5086,-7.1516],[114.5064,-7.1474],[114.5,-7.1461],[114.5004,-7.1408]],[[114.5769,-7.1307],[114.5725,-7.1332],[114.563,-7.135],[114.5442,-7.1319],[114.5408,-7.1329],[114.5317,-7.1319],[114.5289,-7.136],[114.5243,-7.1362],[114.5156,-7.1389],[114.5145,-7.1419],[114.5177,-7.1464],[114.529,-7.1462],[114.5329,-7.1442],[114.5435,-7.146],[114.5508,-7.1442],[114.5566,-7.1506],[114.5655,-7.1542],[114.566,-7.1592],[114.5723,-7.1588],[114.5755,-7.1666],[114.5874,-7.1637],[114.5919,-7.1662],[114.6101,-7.1627],[114.6117,-7.158],[114.6151,-7.1567],[114.6134,-7.1489],[114.6151,-7.1441],[114.6079,-7.1394],[114.5956,-7.139],[114.5914,-7.1349],[114.5821,-7.1353],[114.5769,-7.1307]],[[115.7669,-7.122],[115.7619,-7.124],[115.7694,-7.1313],[115.7712,-7.1277],[115.7669,-7.122]],[[114.7814,-7.1192],[114.779,-7.117],[114.7723,-7.1308],[114.7754,-7.1354],[114.7789,-7.1332],[114.7832,-7.1229],[114.7814,-7.1192]],[[115.7697,-7.1115],[115.7607,-7.1078],[115.7588,-7.1145],[115.7632,-7.1166],[115.77,-7.1172],[115.7697,-7.1115]],[[115.9058,-7.1074],[115.896,-7.1077],[115.8913,-7.1128],[115.8981,-7.1154],[115.8964,-7.1345],[115.8921,-7.1405],[115.89,-7.1342],[115.8932,-7.1281],[115.8874,-7.1224],[115.8782,-7.1303],[115.8705,-7.1338],[115.8732,-7.1526],[115.8788,-7.1606],[115.8827,-7.1629],[115.8874,-7.156],[115.887,-7.1509],[115.8924,-7.152],[115.8898,-7.1589],[115.8852,-7.1666],[115.8755,-7.1619],[115.8723,-7.1588],[115.8658,-7.1646],[115.8618,-7.1604],[115.8541,-7.1618],[115.8498,-7.1647],[115.8431,-7.1646],[115.837,-7.1585],[115.8358,-7.151],[115.8228,-7.1497],[115.8146,-7.1516],[115.8098,-7.1562],[115.809,-7.1493],[115.7996,-7.1472],[115.7979,-7.1429],[115.7936,-7.1408],[115.7937,-7.1363],[115.7987,-7.1304],[115.7968,-7.1229],[115.7923,-7.1203],[115.7895,-7.1159],[115.7828,-7.1115],[115.7788,-7.1129],[115.7767,-7.1188],[115.7805,-7.1217],[115.7789,-7.1309],[115.7748,-7.1326],[115.7697,-7.1431],[115.7674,-7.1351],[115.7632,-7.1314],[115.7544,-7.1416],[115.7537,-7.1473],[115.7477,-7.1526],[115.7413,-7.1551],[115.7472,-7.1664],[115.7552,-7.1741],[115.7717,-7.1824],[115.7938,-7.1886],[115.819,-7.2],[115.827,-7.2074],[115.8385,-7.2085],[115.8533,-7.2062],[115.8767,-7.2048],[115.8838,-7.2028],[115.8934,-7.1946],[115.8993,-7.1762],[115.9017,-7.1488],[115.9018,-7.1295],[115.9034,-7.1166],[115.9058,-7.1074]],[[114.6855,-7.094],[114.6781,-7.0974],[114.682,-7.101],[114.6874,-7.0981],[114.6855,-7.094]],[[115.7614,-7.0871],[115.7542,-7.0897],[115.7538,-7.0974],[115.7482,-7.1034],[115.7547,-7.1103],[115.7572,-7.1009],[115.7636,-7.0998],[115.766,-7.0924],[115.7614,-7.0871]],[[115.1999,-7.0832],[115.1961,-7.0824],[115.193,-7.0859],[115.1937,-7.0916],[115.1989,-7.0902],[115.1999,-7.0832]],[[114.6483,-7.0875],[114.6505,-7.0812],[114.6487,-7.0775],[114.6445,-7.0774],[114.6445,-7.0853],[114.6483,-7.0875]],[[115.695,-7.0615],[115.6857,-7.0585],[115.6846,-7.068],[115.6917,-7.0741],[115.6981,-7.0759],[115.7059,-7.076],[115.7115,-7.0717],[115.7119,-7.0655],[115.7075,-7.0605],[115.695,-7.0615]],[[114.3747,-7.1081],[114.3739,-7.0967],[114.3687,-7.0872],[114.3587,-7.0803],[114.3448,-7.0695],[114.3379,-7.0617],[114.3329,-7.0586],[114.3273,-7.0573],[114.3167,-7.06],[114.3018,-7.0622],[114.2948,-7.0659],[114.2747,-7.0885],[114.2713,-7.0971],[114.272,-7.1022],[114.2781,-7.1175],[114.2841,-7.1242],[114.2863,-7.1289],[114.2924,-7.1369],[114.2952,-7.1434],[114.3,-7.1458],[114.3038,-7.1504],[114.3134,-7.1589],[114.322,-7.1628],[114.3365,-7.1663],[114.3468,-7.172],[114.3523,-7.173],[114.3612,-7.1787],[114.3684,-7.18],[114.3789,-7.1797],[114.384,-7.1818],[114.3891,-7.1795],[114.402,-7.1711],[114.4042,-7.1657],[114.3955,-7.1615],[114.3909,-7.1521],[114.3907,-7.1414],[114.3887,-7.1335],[114.3776,-7.1218],[114.3721,-7.1127],[114.3747,-7.1081]],[[113.9531,-7.0583],[113.9472,-7.0565],[113.9405,-7.062],[113.9363,-7.0687],[113.9362,-7.0735],[113.9439,-7.0882],[113.9491,-7.0884],[113.9565,-7.0924],[113.9598,-7.0958],[113.969,-7.0974],[113.976,-7.1002],[113.9826,-7.1049],[113.9918,-7.1066],[114.0061,-7.1064],[114.0117,-7.1055],[114.0236,-7.1081],[114.0419,-7.1133],[114.0508,-7.1134],[114.0633,-7.1112],[114.0635,-7.1057],[114.0587,-7.0967],[114.0529,-7.0796],[114.048,-7.075],[114.0382,-7.0742],[114.0137,-7.07],[113.9976,-7.0722],[113.9806,-7.0727],[113.9673,-7.0697],[113.9592,-7.0656],[113.9531,-7.0583]],[[115.6624,-7.0465],[115.6607,-7.0433],[115.6499,-7.0464],[115.648,-7.0493],[115.6491,-7.0622],[115.6554,-7.0677],[115.6615,-7.0688],[115.6693,-7.0682],[115.6747,-7.0646],[115.6664,-7.0548],[115.6624,-7.0465]],[[115.6364,-7.0441],[115.6363,-7.0389],[115.6316,-7.0365],[115.6271,-7.0394],[115.6271,-7.0447],[115.6178,-7.0426],[115.613,-7.0398],[115.6077,-7.0419],[115.6002,-7.0391],[115.5954,-7.0429],[115.5999,-7.0462],[115.5995,-7.0534],[115.6035,-7.0548],[115.6065,-7.0511],[115.6161,-7.0513],[115.613,-7.059],[115.6165,-7.0614],[115.616,-7.0655],[115.6212,-7.0672],[115.6303,-7.0673],[115.6348,-7.0644],[115.6336,-7.059],[115.6364,-7.0441]],[[115.6978,-7.0308],[115.699,-7.0282],[115.6938,-7.0235],[115.6904,-7.0279],[115.6978,-7.0308]],[[115.5483,-7.011],[115.5448,-7.0105],[115.5404,-7.0141],[115.5395,-7.0227],[115.5415,-7.0279],[115.5491,-7.0255],[115.5551,-7.0182],[115.5545,-7.0125],[115.5483,-7.011]],[[115.3097,-7.0073],[115.3031,-7.0084],[115.3016,-7.0106],[115.3107,-7.0193],[115.3164,-7.0219],[115.3177,-7.0134],[115.3097,-7.0073]],[[115.706,-7.0137],[115.7116,-7.0076],[115.7086,-7.0034],[115.7053,-7.0045],[115.7039,-7.0103],[115.706,-7.0137]],[[115.5845,-6.9892],[115.5785,-6.9893],[115.5776,-6.9944],[115.5853,-6.9965],[115.5874,-6.9929],[115.5845,-6.9892]],[[114.4873,-6.9996],[114.4908,-6.9994],[114.4963,-6.9914],[114.4925,-6.9868],[114.4873,-6.9996]],[[115.5454,-6.9873],[115.5427,-6.9817],[115.5381,-6.9877],[115.5317,-6.9885],[115.5279,-6.9913],[115.527,-6.9964],[115.5195,-6.9978],[115.5183,-7.0035],[115.5115,-7.0075],[115.5065,-7.0152],[115.5159,-7.0171],[115.5228,-7.0247],[115.5238,-7.0279],[115.5286,-7.0319],[115.5339,-7.033],[115.5375,-7.022],[115.5387,-7.0083],[115.5362,-7.0026],[115.5409,-6.9923],[115.5443,-6.9933],[115.5454,-6.9873]],[[115.467,-6.9778],[115.4649,-6.9761],[115.4562,-6.9801],[115.4553,-6.9771],[115.4494,-6.9769],[115.4495,-6.9813],[115.4365,-6.9791],[115.43,-6.979],[115.4258,-6.9854],[115.428,-6.9929],[115.4325,-6.9981],[115.4369,-7.0001],[115.4504,-7.0035],[115.4631,-7.005],[115.4711,-7.0067],[115.4732,-7.0035],[115.4666,-6.9952],[115.4636,-6.9878],[115.467,-6.9778]],[[115.2543,-6.9689],[115.247,-6.97],[115.2453,-6.9725],[115.2555,-6.9821],[115.2618,-6.9851],[115.2631,-6.9756],[115.2543,-6.9689]],[[115.7568,-6.9694],[115.7512,-6.9692],[115.7486,-6.9718],[115.758,-6.9761],[115.7617,-6.9702],[115.7568,-6.9694]],[[114.1824,-7.003],[114.1845,-6.9878],[114.1872,-6.98],[114.1867,-6.9721],[114.1822,-6.9671],[114.1775,-6.9648],[114.1712,-6.9664],[114.167,-6.9738],[114.1643,-6.9894],[114.161,-6.9988],[114.1665,-7.0024],[114.1782,-7.0053],[114.1824,-7.003]],[[114.4342,-6.9798],[114.4373,-6.9688],[114.4361,-6.9636],[114.4309,-6.9643],[114.428,-6.9724],[114.4307,-6.9811],[114.4342,-6.9798]],[[115.4159,-6.9849],[115.4176,-6.9819],[115.4144,-6.974],[115.418,-6.9664],[115.4142,-6.9603],[115.4115,-6.9647],[115.4124,-6.9745],[115.4094,-6.9812],[115.4118,-6.9845],[115.4159,-6.9849]],[[115.2595,-6.9698],[115.2607,-6.9669],[115.2552,-6.9614],[115.2518,-6.9647],[115.2595,-6.9698]],[[115.9145,-6.95],[115.9052,-6.9501],[115.9006,-6.9545],[115.9029,-6.9614],[115.9138,-6.9623],[115.9256,-6.9593],[115.9332,-6.9621],[115.933,-6.9558],[115.9259,-6.9528],[115.9145,-6.95]],[[115.5177,-6.9468],[115.5105,-6.9471],[115.5125,-6.9521],[115.5181,-6.9526],[115.5225,-6.9489],[115.5177,-6.9468]],[[115.5871,-6.9432],[115.5757,-6.9446],[115.571,-6.95],[115.5729,-6.9581],[115.5678,-6.9592],[115.5643,-6.963],[115.5683,-6.9697],[115.5711,-6.9778],[115.5856,-6.9778],[115.5914,-6.9821],[115.5883,-6.9899],[115.5932,-6.9976],[115.5978,-6.9952],[115.6059,-6.9988],[115.6078,-7.0019],[115.6143,-7.006],[115.6229,-7.0038],[115.6324,-7.0081],[115.6412,-6.9997],[115.6473,-7.0003],[115.6516,-7.0026],[115.6672,-7.0078],[115.6775,-7.0162],[115.6843,-7.0158],[115.6822,-7.0026],[115.675,-6.9982],[115.6741,-6.9933],[115.6545,-6.9827],[115.6516,-6.9778],[115.6433,-6.9724],[115.6359,-6.9698],[115.6106,-6.9558],[115.5973,-6.9496],[115.5871,-6.9432]],[[115.4883,-6.9433],[115.49,-6.9501],[115.4982,-6.9514],[115.4929,-6.9435],[115.4883,-6.9433]],[[115.4741,-6.9419],[115.4735,-6.9457],[115.4815,-6.9448],[115.4812,-6.9425],[115.4741,-6.9419]],[[115.8756,-6.9388],[115.8712,-6.9473],[115.8676,-6.9511],[115.8688,-6.9615],[115.876,-6.9612],[115.8792,-6.9589],[115.884,-6.9496],[115.8756,-6.9388]],[[115.791,-6.9369],[115.7886,-6.9372],[115.7832,-6.9532],[115.7785,-6.9625],[115.7848,-6.9641],[115.7919,-6.9613],[115.7957,-6.9548],[115.7967,-6.949],[115.7948,-6.942],[115.791,-6.9369]],[[116.2534,-6.9284],[116.2527,-6.9311],[116.2438,-6.9361],[116.236,-6.9385],[116.2347,-6.943],[116.238,-6.9477],[116.2461,-6.9499],[116.254,-6.9497],[116.2612,-6.9475],[116.2667,-6.9436],[116.2695,-6.9379],[116.2629,-6.932],[116.2534,-6.9284]],[[113.602,-7.1277],[113.6082,-7.1256],[113.6139,-7.1264],[113.6356,-7.1246],[113.6456,-7.1289],[113.6495,-7.1263],[113.654,-7.1278],[113.6657,-7.1157],[113.6707,-7.1139],[113.6729,-7.1107],[113.683,-7.1087],[113.6919,-7.1106],[113.7137,-7.1121],[113.7203,-7.1136],[113.724,-7.1162],[113.738,-7.1151],[113.746,-7.1158],[113.7525,-7.1194],[113.7697,-7.122],[113.7706,-7.1235],[113.7822,-7.1238],[113.7849,-7.1249],[113.7966,-7.1252],[113.7999,-7.1271],[113.8116,-7.1292],[113.8155,-7.1331],[113.8257,-7.1336],[113.8292,-7.1327],[113.8455,-7.1333],[113.8568,-7.1345],[113.8707,-7.1338],[113.8872,-7.134],[113.8923,-7.1328],[113.8938,-7.1234],[113.8892,-7.1146],[113.891,-7.1114],[113.8882,-7.104],[113.8817,-7.1012],[113.8786,-7.1017],[113.8706,-7.096],[113.8752,-7.084],[113.8802,-7.0742],[113.8902,-7.0621],[113.9067,-7.0471],[113.9166,-7.0431],[113.9226,-7.0446],[113.931,-7.0493],[113.9348,-7.053],[113.9437,-7.0571],[113.9477,-7.0528],[113.9464,-7.0444],[113.9262,-7.035],[113.9205,-7.0294],[113.9217,-7.0234],[113.9271,-7.0185],[113.9328,-7.0203],[113.9413,-7.0268],[113.9386,-7.0353],[113.9451,-7.0385],[113.9469,-7.0413],[113.9615,-7.0404],[113.965,-7.0393],[113.9754,-7.0218],[113.9892,-7.0085],[114.0019,-7.0056],[114.0127,-7.0058],[114.0151,-7.0076],[114.0208,-7.0066],[114.0335,-7.0089],[114.0437,-7.0075],[114.0585,-7.0034],[114.0652,-6.9993],[114.0833,-6.9866],[114.0858,-6.9839],[114.0935,-6.9799],[114.0987,-6.9791],[114.1075,-6.9799],[114.1137,-6.9825],[114.1241,-6.9785],[114.1198,-6.9698],[114.1129,-6.9533],[114.1066,-6.9415],[114.1032,-6.9376],[114.0906,-6.9284],[114.0742,-6.9214],[114.0653,-6.9183],[114.0279,-6.9008],[114.0214,-6.8988],[114.0015,-6.8868],[113.9804,-6.8803],[113.9776,-6.8775],[113.9675,-6.873],[113.9488,-6.8693],[113.9389,-6.8685],[113.9321,-6.8665],[113.9217,-6.8661],[113.9147,-6.8639],[113.9076,-6.8634],[113.8897,-6.8665],[113.8857,-6.8659],[113.8746,-6.8687],[113.869,-6.8716],[113.8561,-6.8726],[113.8249,-6.8801],[113.8135,-6.8813],[113.8006,-6.8848],[113.7696,-6.8835],[113.7601,-6.8856],[113.7537,-6.8845],[113.7401,-6.8842],[113.7299,-6.8874],[113.711,-6.8862],[113.6964,-6.8835],[113.6788,-6.8828],[113.6592,-6.8863],[113.6548,-6.888],[113.6402,-6.8889],[113.6391,-6.8876]],[[115.2672,-6.8275],[115.2545,-6.8272],[115.2442,-6.8283],[115.2356,-6.8343],[115.2368,-6.8382],[115.2435,-6.8431],[115.2489,-6.8447],[115.2528,-6.8525],[115.2536,-6.8625],[115.2449,-6.8736],[115.2387,-6.8735],[115.2421,-6.8833],[115.2398,-6.8863],[115.23,-6.8861],[115.2274,-6.883],[115.2206,-6.8829],[115.2071,-6.8899],[115.2034,-6.8977],[115.2004,-6.9079],[115.1996,-6.9242],[115.2041,-6.927],[115.2052,-6.9314],[115.2032,-6.9372],[115.2118,-6.9427],[115.2145,-6.9421],[115.2225,-6.9351],[115.2303,-6.9373],[115.2299,-6.9412],[115.2339,-6.9445],[115.2376,-6.9436],[115.2389,-6.9374],[115.2417,-6.9343],[115.2451,-6.939],[115.245,-6.9453],[115.2469,-6.9478],[115.2538,-6.9454],[115.2604,-6.9408],[115.2634,-6.9358],[115.2703,-6.9362],[115.2709,-6.9417],[115.2756,-6.9433],[115.2737,-6.9494],[115.267,-6.9515],[115.2613,-6.9515],[115.2573,-6.9537],[115.2576,-6.9601],[115.2632,-6.9637],[115.2614,-6.9722],[115.2648,-6.977],[115.2636,-6.9841],[115.2662,-6.994],[115.2738,-6.9943],[115.2805,-7.0035],[115.292,-7.011],[115.2927,-7.0054],[115.2999,-7.0008],[115.3015,-6.9962],[115.2991,-6.992],[115.3006,-6.9874],[115.29,-6.9803],[115.2925,-6.9713],[115.297,-6.9718],[115.3036,-6.9777],[115.3101,-6.977],[115.3043,-6.9654],[115.3028,-6.9601],[115.2997,-6.958],[115.3022,-6.9499],[115.3091,-6.9546],[115.3196,-6.9581],[115.3201,-6.9624],[115.3262,-6.9619],[115.3257,-6.9702],[115.3198,-6.9713],[115.3231,-6.9812],[115.3283,-6.9849],[115.3315,-6.9948],[115.3372,-6.9961],[115.3455,-6.9937],[115.3514,-6.9961],[115.3619,-6.9921],[115.3749,-6.9947],[115.382,-6.9953],[115.3917,-6.9907],[115.4045,-6.9882],[115.4015,-6.9813],[115.3972,-6.9789],[115.3875,-6.9816],[115.392,-6.9747],[115.3927,-6.971],[115.3869,-6.9601],[115.3817,-6.9552],[115.3678,-6.9515],[115.3635,-6.9551],[115.3618,-6.9504],[115.3631,-6.9452],[115.3528,-6.9423],[115.3531,-6.9372],[115.3438,-6.9377],[115.3417,-6.9458],[115.3391,-6.9456],[115.3388,-6.9365],[115.3347,-6.9361],[115.331,-6.9313],[115.3367,-6.9276],[115.3347,-6.9236],[115.3391,-6.9184],[115.3499,-6.9252],[115.351,-6.9206],[115.358,-6.9194],[115.3588,-6.9249],[115.3657,-6.9249],[115.3701,-6.9208],[115.3685,-6.9065],[115.3726,-6.9051],[115.3735,-6.9014],[115.3784,-6.9003],[115.3792,-6.9147],[115.3841,-6.9135],[115.3882,-6.9098],[115.3903,-6.9048],[115.3972,-6.9078],[115.3952,-6.9126],[115.3977,-6.9152],[115.396,-6.9202],[115.4013,-6.9241],[115.4053,-6.924],[115.4084,-6.9345],[115.4086,-6.9394],[115.4121,-6.9427],[115.4198,-6.9374],[115.4207,-6.9325],[115.425,-6.9324],[115.424,-6.922],[115.4313,-6.9178],[115.4315,-6.9245],[115.434,-6.9256],[115.4322,-6.9428],[115.4358,-6.9407],[115.4375,-6.9299],[115.4404,-6.9305],[115.4401,-6.9231],[115.4474,-6.9204],[115.4446,-6.9174],[115.4494,-6.9117],[115.4557,-6.9144],[115.4549,-6.9214],[115.4619,-6.9222],[115.4587,-6.9291],[115.4591,-6.934],[115.4716,-6.9291],[115.4746,-6.9244],[115.4789,-6.9255],[115.4761,-6.9307],[115.4967,-6.9414],[115.4947,-6.9457],[115.497,-6.9485],[115.5023,-6.9488],[115.5098,-6.9459],[115.5195,-6.9453],[115.529,-6.9513],[115.5382,-6.9602],[115.5487,-6.9663],[115.5516,-6.9651],[115.5546,-6.958],[115.5536,-6.9522],[115.5636,-6.9483],[115.5645,-6.9444],[115.5717,-6.9425],[115.573,-6.9344],[115.5764,-6.9326],[115.573,-6.9276],[115.5657,-6.9233],[115.5639,-6.9147],[115.5601,-6.9065],[115.5557,-6.9033],[115.543,-6.9019],[115.5326,-6.8921],[115.5218,-6.8836],[115.5086,-6.8775],[115.5006,-6.8754],[115.4894,-6.8706],[115.4771,-6.8632],[115.4528,-6.853],[115.437,-6.8468],[115.4145,-6.8409],[115.4052,-6.8369],[115.3941,-6.8348],[115.3784,-6.8357],[115.3665,-6.8338],[115.3514,-6.8343],[115.3433,-6.8324],[115.3293,-6.8333],[115.3239,-6.8347],[115.3064,-6.8318],[115.301,-6.8323],[115.2913,-6.8303],[115.2851,-6.8304],[115.2753,-6.8275],[115.2672,-6.8275]],[[114.413,-5.5328],[114.4082,-5.5335],[114.4039,-5.5389],[114.398,-5.5392],[114.3938,-5.542],[114.3965,-5.5469],[114.3966,-5.5529],[114.3931,-5.5642],[114.3975,-5.5718],[114.4056,-5.5696],[114.4171,-5.5745],[114.4196,-5.5786],[114.421,-5.5891],[114.4227,-5.5903],[114.4304,-5.5875],[114.4343,-5.5889],[114.4478,-5.5792],[114.4467,-5.5727],[114.4533,-5.5664],[114.451,-5.5623],[114.4524,-5.5489],[114.4462,-5.548],[114.439,-5.5495],[114.4312,-5.5474],[114.4241,-5.5507],[114.4206,-5.5461],[114.4178,-5.5519],[114.4125,-5.5456],[114.415,-5.5363],[114.413,-5.5328]],[[114.4158,-5.4309],[114.4095,-5.4413],[114.4139,-5.4512],[114.4172,-5.4553],[114.4222,-5.4573],[114.425,-5.4618],[114.4359,-5.4607],[114.4384,-5.4584],[114.4386,-5.4528],[114.4293,-5.4385],[114.4191,-5.431],[114.4158,-5.4309]],[[114.608,-5.0597],[114.6104,-5.0508],[114.6069,-5.0492],[114.5997,-5.0532],[114.5951,-5.0595],[114.5882,-5.066],[114.5877,-5.0714],[114.5905,-5.0775],[114.593,-5.0781],[114.5926,-5.0901],[114.5892,-5.0962],[114.5948,-5.1008],[114.6032,-5.1027],[114.6036,-5.0966],[114.6106,-5.0789],[114.6114,-5.0683],[114.608,-5.0597]]]}},{"type":"Feature","properties":{"mhid":"1332:268","alt_name":"KOTA PROBOLINGGO","latitude":-7.78333,"longitude":113.21667,"sample_value":954},"geometry":{"type":"MultiLineString","coordinates":[[[113.2372,-7.7403],[113.2249,-7.7379],[113.2161,-7.7277],[113.2152,-7.7358],[113.2049,-7.7405],[113.1969,-7.7416],[113.1954,-7.744],[113.1895,-7.745],[113.184,-7.7484],[113.1787,-7.7476]]]}},{"type":"Feature","properties":{"mhid":"1332:269","alt_name":"KOTA PASURUAN","latitude":-7.65,"longitude":112.9,"sample_value":691},"geometry":{"type":"MultiLineString","coordinates":[[[112.9498,-7.6359],[112.9522,-7.6319],[112.952,-7.6239],[112.9372,-7.6254],[112.9368,-7.6303],[112.9302,-7.6316],[112.9194,-7.6269],[112.9089,-7.6289],[112.9028,-7.6258]]]}},{"type":"Feature","properties":{"mhid":"1332:272","alt_name":"KOTA SURABAYA","latitude":-7.26667,"longitude":112.71667,"sample_value":905},"geometry":{"type":"MultiLineString","coordinates":[[[112.8259,-7.3432],[112.8269,-7.3333],[112.8322,-7.3261],[112.8377,-7.3224],[112.8425,-7.317],[112.8464,-7.3062],[112.8443,-7.2867],[112.8395,-7.2773],[112.8293,-7.2729],[112.8279,-7.2695],[112.8363,-7.2673],[112.8316,-7.2615],[112.827,-7.2618],[112.8065,-7.2557],[112.8014,-7.2423],[112.7969,-7.2385],[112.7942,-7.2308],[112.7869,-7.2222],[112.7787,-7.2194],[112.78,-7.2087],[112.7753,-7.2074],[112.7748,-7.203],[112.7648,-7.1963],[112.76,-7.1959],[112.7518,-7.1999],[112.7433,-7.1943],[112.7315,-7.1985],[112.7327,-7.2066],[112.7257,-7.2098],[112.72,-7.1986],[112.7174,-7.201],[112.7193,-7.205],[112.7141,-7.2163],[112.7102,-7.2175],[112.7114,-7.2219],[112.7048,-7.2207],[112.6958,-7.2234],[112.689,-7.2233],[112.6853,-7.2254],[112.6801,-7.2231],[112.6764,-7.2239],[112.6682,-7.2199],[112.6622,-7.2087],[112.66,-7.2077],[112.6612,-7.2003],[112.6638,-7.1988],[112.6615,-7.193]]]}},{"type":"Feature","properties":{"mhid":"1332:274","alt_name":"KABUPATEN PANDEGLANG","latitude":-6.63333,"longitude":105.75,"sample_value":886},"geometry":{"type":"MultiLineString","coordinates":[[[105.5498,-6.9957],[105.5417,-6.9961],[105.5329,-6.9986],[105.5292,-7.0009],[105.5216,-7.0016],[105.5199,-7.0073],[105.5249,-7.0135],[105.5357,-7.0153],[105.5555,-7.0168],[105.563,-7.0166],[105.5681,-7.0143],[105.5697,-7.0074],[105.5609,-7.0008],[105.5498,-6.9957]],[[105.8146,-6.9503],[105.8011,-6.953],[105.7877,-6.9599],[105.7725,-6.9634],[105.7672,-6.966],[105.7658,-6.9709],[105.7722,-6.9739],[105.8126,-6.9587],[105.8201,-6.9543],[105.8193,-6.9504],[105.8146,-6.9503]],[[105.4258,-6.7528],[105.4232,-6.7487],[105.4196,-6.7482],[105.418,-6.753],[105.4258,-6.7528]],[[105.2561,-6.7289],[105.2467,-6.7252],[105.2488,-6.7393],[105.2474,-6.7484],[105.2531,-6.7524],[105.2583,-6.7508],[105.2664,-6.7421],[105.2678,-6.7375],[105.2631,-6.729],[105.2561,-6.7289]],[[105.2656,-6.5228],[105.2619,-6.5216],[105.2543,-6.5234],[105.2512,-6.5295],[105.244,-6.53],[105.2388,-6.5332],[105.232,-6.5331],[105.2296,-6.5306],[105.22,-6.5298],[105.2134,-6.5351],[105.2127,-6.5401],[105.2147,-6.5441],[105.2086,-6.5453],[105.1984,-6.5436],[105.1974,-6.5414],[105.1895,-6.541],[105.184,-6.5388],[105.1801,-6.5445],[105.1632,-6.5537],[105.1634,-6.5562],[105.1562,-6.5641],[105.1513,-6.5676],[105.141,-6.572],[105.1281,-6.5842],[105.125,-6.5893],[105.1211,-6.591],[105.1105,-6.6044],[105.1008,-6.6123],[105.1102,-6.6105],[105.1172,-6.6131],[105.1165,-6.6174],[105.1283,-6.6236],[105.1314,-6.6058],[105.1359,-6.6002],[105.1499,-6.5915],[105.1536,-6.5868],[105.1568,-6.5782],[105.1643,-6.5732],[105.1721,-6.5761],[105.1809,-6.583],[105.1809,-6.586],[105.1764,-6.5916],[105.1741,-6.5992],[105.1821,-6.6065],[105.1819,-6.6105],[105.1857,-6.6131],[105.1913,-6.6121],[105.1949,-6.6205],[105.1917,-6.6307],[105.1906,-6.6406],[105.1819,-6.6509],[105.1717,-6.6559],[105.1702,-6.6633],[105.1752,-6.6704],[105.1794,-6.6719],[105.1825,-6.6802],[105.186,-6.6734],[105.1916,-6.6663],[105.1981,-6.6634],[105.2044,-6.6568],[105.2049,-6.6476],[105.2105,-6.6464],[105.2148,-6.6403],[105.2189,-6.6377],[105.2291,-6.643],[105.2344,-6.639],[105.243,-6.6358],[105.2547,-6.6081],[105.2584,-6.6052],[105.2607,-6.5979],[105.2577,-6.5827],[105.2532,-6.5801],[105.2512,-6.5733],[105.2543,-6.5662],[105.2527,-6.5616],[105.2534,-6.5482],[105.2584,-6.5401],[105.2652,-6.5365],[105.2678,-6.5281],[105.2656,-6.5228]],[[105.8258,-6.2423],[105.8282,-6.2551],[105.8296,-6.2566],[105.8278,-6.2668],[105.8304,-6.2691],[105.8259,-6.2776],[105.8262,-6.2873],[105.8306,-6.2943],[105.8378,-6.295],[105.8404,-6.2968],[105.8411,-6.3057],[105.8397,-6.3137],[105.8365,-6.3162],[105.8307,-6.3159],[105.8281,-6.3188],[105.8293,-6.327],[105.826,-6.3346],[105.8234,-6.3465],[105.824,-6.3513],[105.8196,-6.3623],[105.8193,-6.3701],[105.8228,-6.3737],[105.8214,-6.3831],[105.8246,-6.3856],[105.8257,-6.3902],[105.8246,-6.3964],[105.8269,-6.4067],[105.8247,-6.428],[105.8214,-6.4399],[105.8153,-6.4562],[105.8081,-6.4725],[105.797,-6.4901],[105.783,-6.5067],[105.7687,-6.5177],[105.7593,-6.5206],[105.7518,-6.5216],[105.7452,-6.5193],[105.7371,-6.521],[105.732,-6.5271],[105.7225,-6.5316],[105.7128,-6.5323],[105.7083,-6.5276],[105.7035,-6.5257],[105.694,-6.5246],[105.6866,-6.5215],[105.6845,-6.5154],[105.6755,-6.511],[105.6727,-6.5052],[105.674,-6.5],[105.6777,-6.4933],[105.6755,-6.4858],[105.6785,-6.4767],[105.6682,-6.4714],[105.6653,-6.4727],[105.6678,-6.4782],[105.6639,-6.4814],[105.6564,-6.4783],[105.6497,-6.4816],[105.6477,-6.4866],[105.6499,-6.4908],[105.6463,-6.497],[105.6411,-6.4996],[105.6397,-6.5051],[105.6351,-6.5108],[105.6341,-6.5156],[105.6287,-6.5199],[105.6276,-6.5267],[105.6247,-6.5297],[105.622,-6.538],[105.6231,-6.5487],[105.6158,-6.5595],[105.6159,-6.5695],[105.6173,-6.5765],[105.621,-6.578],[105.6257,-6.5876],[105.622,-6.5984],[105.6182,-6.6027],[105.6173,-6.6127],[105.6181,-6.6164],[105.6096,-6.632],[105.6049,-6.639],[105.5967,-6.6487],[105.5792,-6.658],[105.5717,-6.6568],[105.5679,-6.66],[105.5689,-6.664],[105.5759,-6.6648],[105.5707,-6.6761],[105.5725,-6.6797],[105.5682,-6.6831],[105.5636,-6.6804],[105.5616,-6.6863],[105.5553,-6.6968],[105.5512,-6.6978],[105.5475,-6.7018],[105.5427,-6.7009],[105.541,-6.7059],[105.5293,-6.715],[105.5197,-6.7247],[105.5129,-6.726],[105.5065,-6.731],[105.5068,-6.7381],[105.5116,-6.7429],[105.5121,-6.7574],[105.5036,-6.7651],[105.502,-6.7695],[105.5047,-6.7744],[105.5032,-6.7809],[105.5003,-6.7853],[105.5,-6.7925],[105.4972,-6.7974],[105.4895,-6.8032],[105.481,-6.8065],[105.4793,-6.8096],[105.4815,-6.8164],[105.4779,-6.8203],[105.4695,-6.8243],[105.4646,-6.8283],[105.4532,-6.8273],[105.4476,-6.8257],[105.4403,-6.819],[105.4352,-6.807],[105.4415,-6.8],[105.4348,-6.799],[105.4364,-6.7911],[105.4349,-6.7756],[105.4318,-6.7722],[105.427,-6.7719],[105.4152,-6.7661],[105.4161,-6.7615],[105.411,-6.7592],[105.4085,-6.7522],[105.3962,-6.745],[105.3913,-6.7441],[105.387,-6.7351],[105.3929,-6.7262],[105.4012,-6.7277],[105.4007,-6.7178],[105.3987,-6.7132],[105.3939,-6.7082],[105.3919,-6.6966],[105.3923,-6.6878],[105.3877,-6.6779],[105.3782,-6.6744],[105.3746,-6.6582],[105.3744,-6.6536],[105.3703,-6.6469],[105.3661,-6.6496],[105.3631,-6.6548],[105.3554,-6.6567],[105.3492,-6.6596],[105.3398,-6.6614],[105.3366,-6.6648],[105.3297,-6.6669],[105.3241,-6.6721],[105.3239,-6.6779],[105.3284,-6.6824],[105.3275,-6.692],[105.3301,-6.6961],[105.3256,-6.6984],[105.3196,-6.7093],[105.3163,-6.7089],[105.3084,-6.7152],[105.2983,-6.7189],[105.2818,-6.734],[105.269,-6.7476],[105.2649,-6.7594],[105.2587,-6.7626],[105.2484,-6.7596],[105.2452,-6.7601],[105.2349,-6.7581],[105.2299,-6.7558],[105.224,-6.7492],[105.2117,-6.7461],[105.2104,-6.7526],[105.2131,-6.7567],[105.2141,-6.7625],[105.2206,-6.766],[105.2259,-6.7723],[105.2286,-6.7779],[105.2316,-6.7789],[105.2321,-6.7895],[105.2365,-6.7925],[105.2385,-6.7967],[105.2379,-6.8153],[105.2438,-6.8249],[105.2399,-6.831],[105.2413,-6.8404],[105.2463,-6.8411],[105.2504,-6.8371],[105.2631,-6.8469],[105.2679,-6.8427],[105.2724,-6.8413],[105.2765,-6.8336],[105.2825,-6.8268],[105.2901,-6.8203],[105.2948,-6.8054],[105.3022,-6.8028],[105.3153,-6.8024],[105.3266,-6.8028],[105.3609,-6.8102],[105.3779,-6.8159],[105.3929,-6.8226],[105.4067,-6.8296],[105.4124,-6.8366],[105.4131,-6.8409],[105.4093,-6.8465],[105.4117,-6.8523],[105.4175,-6.8542],[105.4223,-6.8496],[105.4202,-6.8412],[105.4255,-6.8375],[105.4368,-6.8356],[105.4465,-6.8388],[105.464,-6.8518],[105.4661,-6.8552],[105.4727,-6.8591],[105.476,-6.8641],[105.4884,-6.8669],[105.4924,-6.8653],[105.4959,-6.8611],[105.5238,-6.8652],[105.5305,-6.8676],[105.5404,-6.8732],[105.5493,-6.8672],[105.56,-6.8584],[105.5674,-6.8563],[105.5729,-6.8562],[105.5823,-6.8535],[105.592,-6.8533],[105.5999,-6.8509],[105.6033,-6.8464],[105.6191,-6.8432],[105.6393,-6.8418],[105.6607,-6.8443],[105.6726,-6.837],[105.6839,-6.8371],[105.6975,-6.8361],[105.7084,-6.8363],[105.73,-6.8392],[105.7442,-6.8419],[105.7713,-6.8483],[105.7741,-6.8505],[105.7954,-6.8429],[105.8003,-6.8426],[105.8335,-6.8354],[105.8544,-6.8333],[105.8695,-6.8329],[105.8751,-6.837],[105.8827,-6.8391]]]}},{"type":"Feature","properties":{"mhid":"1332:275","alt_name":"KABUPATEN LEBAK","latitude":-6.65,"longitude":106.21667,"sample_value":821},"geometry":{"type":"MultiLineString","coordinates":[[[105.8827,-6.8391],[105.88,-6.8447],[105.8872,-6.8457],[105.8975,-6.8401],[105.8934,-6.8291],[105.8983,-6.8233],[105.9056,-6.8198],[105.918,-6.816],[105.9292,-6.8142],[105.9608,-6.812],[105.993,-6.814],[106.0304,-6.8219],[106.0586,-6.8326],[106.0635,-6.8362],[106.0655,-6.8422],[106.0755,-6.8524],[106.0872,-6.8618],[106.0947,-6.876],[106.1052,-6.8801],[106.106,-6.8829],[106.1169,-6.8861],[106.1192,-6.8882],[106.1311,-6.8919],[106.1482,-6.903],[106.1551,-6.9027],[106.1649,-6.9084],[106.1878,-6.91],[106.2054,-6.9155],[106.2275,-6.926],[106.2381,-6.932],[106.2462,-6.9402],[106.2478,-6.9483],[106.2415,-6.952],[106.2411,-6.9573],[106.246,-6.9606],[106.2548,-6.9603],[106.2611,-6.964],[106.2648,-6.9731],[106.2698,-6.9761],[106.2787,-6.978],[106.2828,-6.9743],[106.3016,-6.9789],[106.3083,-6.9867],[106.3067,-6.9937],[106.3111,-6.995],[106.3205,-6.9914],[106.3309,-6.9918],[106.3345,-6.9877],[106.3384,-6.9873],[106.3436,-6.991],[106.3441,-6.9976],[106.354,-6.9945],[106.3588,-6.9977],[106.3609,-6.9924],[106.3682,-6.9935],[106.3705,-6.9907],[106.3781,-6.9953],[106.3807,-6.9903],[106.3876,-6.9885],[106.3949,-6.982],[106.3969,-6.978]]]}},{"type":"Feature","properties":{"mhid":"1332:276","alt_name":"KABUPATEN TANGERANG","latitude":-6.2,"longitude":106.46667,"sample_value":115},"geometry":{"type":"MultiLineString","coordinates":[[[106.7186,-6.0919],[106.7245,-6.0873],[106.7184,-6.0803],[106.7126,-6.069],[106.7095,-6.0556],[106.7102,-6.0472],[106.7136,-6.0448],[106.7143,-6.0399],[106.7078,-6.0328],[106.704,-6.0314],[106.6877,-6.0187],[106.678,-6.0132],[106.6698,-6.0195],[106.6624,-6.0232],[106.6567,-6.0216],[106.658,-6.0181],[106.6533,-6.0159],[106.65,-6.0066],[106.6456,-6.0078],[106.6392,-6.0036],[106.633,-6.005],[106.6241,-6.0143],[106.6129,-6.0231],[106.6048,-6.0251],[106.5974,-6.0254],[106.5877,-6.0296],[106.5779,-6.0312],[106.5696,-6.0306],[106.5608,-6.0263],[106.5533,-6.0246],[106.5479,-6.0216],[106.5355,-6.0104],[106.53,-6.0139],[106.5252,-6.0204],[106.5235,-6.0268],[106.5179,-6.0291],[106.5064,-6.0374],[106.4966,-6.0418],[106.4866,-6.045],[106.4782,-6.0455],[106.4693,-6.0428],[106.4609,-6.0367],[106.446,-6.0337],[106.4421,-6.0309],[106.4305,-6.032],[106.412,-6.024]]]}},{"type":"Feature","properties":{"mhid":"1332:277","alt_name":"KABUPATEN SERANG","latitude":-6.15,"longitude":106,"sample_value":977},"geometry":{"type":"MultiLineString","coordinates":[[[106.1681,-5.9324],[106.1605,-5.9215],[106.1506,-5.9195],[106.1409,-5.9208],[106.1391,-5.928],[106.1416,-5.9395],[106.1523,-5.9445],[106.156,-5.9445],[106.1627,-5.9382],[106.1676,-5.937],[106.1681,-5.9324]],[[106.1484,-6.019],[106.1399,-6.0142],[106.122,-6.0094],[106.1181,-6.0068],[106.1069,-5.9952],[106.0971,-5.9805],[106.0995,-5.976],[106.1069,-5.9773],[106.1029,-5.9695],[106.1049,-5.9634],[106.1045,-5.9569],[106.107,-5.9501],[106.1047,-5.9415],[106.1122,-5.9395],[106.114,-5.931],[106.1043,-5.9236],[106.1003,-5.9181],[106.1005,-5.9138],[106.0954,-5.9097],[106.0912,-5.9085],[106.0877,-5.9036],[106.0881,-5.8998],[106.0847,-5.8945],[106.0749,-5.8859],[106.0682,-5.8814],[106.0553,-5.8843],[106.0434,-5.8807],[106.0414,-5.8782]],[[105.9232,-6.0468],[105.9206,-6.0521],[105.915,-6.0534],[105.9011,-6.0605],[105.8948,-6.0627],[105.8934,-6.0655],[105.885,-6.0702],[105.8822,-6.0735],[105.8835,-6.0835],[105.8815,-6.0917],[105.8818,-6.0994],[105.8797,-6.111],[105.8733,-6.1131],[105.869,-6.1214],[105.8656,-6.123],[105.863,-6.1281],[105.8635,-6.1351],[105.8582,-6.1402],[105.8549,-6.1459],[105.8548,-6.1529],[105.8531,-6.1574],[105.8532,-6.1644],[105.8478,-6.1711],[105.8432,-6.1798],[105.8414,-6.1927],[105.8359,-6.2004],[105.8325,-6.2093],[105.832,-6.223],[105.8305,-6.2326],[105.8252,-6.237],[105.8258,-6.2423]],[[106.412,-6.024],[106.4041,-6.0187],[106.4016,-6.0151],[106.3956,-6.0012],[106.3907,-5.9875],[106.3915,-5.9817],[106.3891,-5.9772],[106.3711,-5.9715],[106.3657,-5.9639],[106.3603,-5.9609],[106.353,-5.9617],[106.3386,-5.9775],[106.326,-5.9836],[106.315,-5.9768],[106.3085,-5.9703],[106.3048,-5.9686],[106.2935,-5.9683],[106.2787,-5.9638],[106.2702,-5.9597],[106.2638,-5.9536],[106.253,-5.9577],[106.2435,-5.9661],[106.2414,-5.9888],[106.237,-5.9955],[106.2237,-6.0023],[106.2267,-6.0074],[106.2246,-6.014],[106.2163,-6.016]],[[106.271,-5.8074],[106.2548,-5.8111],[106.2822,-5.8165],[106.2919,-5.8156],[106.2948,-5.8106],[106.2916,-5.8089],[106.271,-5.8074]]]}},{"type":"Feature","properties":{"mhid":"1332:279","alt_name":"KOTA CILEGON","latitude":-6.01667,"longitude":106.01667,"sample_value":952},"geometry":{"type":"MultiLineString","coordinates":[[[105.9912,-5.9311],[105.9855,-5.9317],[105.9877,-5.9372],[105.9913,-5.9366],[105.9912,-5.9311]],[[106.0414,-5.8782],[106.0356,-5.8865],[106.029,-5.8865],[106.0222,-5.8907],[106.0175,-5.8971],[106.0169,-5.9032],[106.008,-5.9057],[106.0016,-5.9129],[106.004,-5.9163],[106.0033,-5.9214],[105.9956,-5.9222],[105.9934,-5.929],[105.9999,-5.9353],[105.9998,-5.9397],[106.0026,-5.9478],[105.9979,-5.9551],[105.9986,-5.9606],[105.9959,-5.9645],[105.9959,-5.9747],[105.9894,-5.9805],[105.9783,-5.9966],[105.9706,-6.0029],[105.9664,-6.0105],[105.9585,-6.0126],[105.9574,-6.02],[105.9536,-6.0176],[105.9505,-6.0222],[105.9474,-6.0199],[105.9411,-6.0238],[105.9317,-6.0325],[105.9253,-6.0414],[105.9232,-6.0468]]]}},{"type":"Feature","properties":{"mhid":"1332:280","alt_name":"KOTA SERANG","latitude":-6.12563,"longitude":106.14999,"sample_value":608},"geometry":{"type":"MultiLineString","coordinates":[[[106.2163,-6.016],[106.2108,-6.0187],[106.2046,-6.0198],[106.2013,-6.0178],[106.1959,-6.018],[106.188,-6.0246],[106.1751,-6.0272],[106.1675,-6.0266],[106.1567,-6.0243],[106.1484,-6.019]]]}},{"type":"Feature","properties":{"mhid":"1332:282","alt_name":"KABUPATEN JEMBRANA","latitude":-8.3,"longitude":114.66667,"sample_value":799},"geometry":{"type":"MultiLineString","coordinates":[[[114.459,-8.1718],[114.4457,-8.1713],[114.4449,-8.1631],[114.4417,-8.1653],[114.4374,-8.1607],[114.4333,-8.166],[114.4318,-8.1734],[114.4336,-8.1791],[114.4377,-8.1829],[114.4416,-8.1938],[114.4434,-8.2034],[114.4477,-8.2168],[114.4542,-8.2265],[114.4547,-8.2299],[114.4608,-8.2348],[114.4697,-8.2464],[114.472,-8.253],[114.4779,-8.2606],[114.4845,-8.2769],[114.4889,-8.2819],[114.4949,-8.2856],[114.5088,-8.3001],[114.5176,-8.3062],[114.5206,-8.3125],[114.5189,-8.3239],[114.5201,-8.3299],[114.5276,-8.338],[114.5433,-8.3458],[114.5467,-8.3554],[114.5561,-8.3636],[114.5562,-8.3661],[114.5639,-8.371],[114.5757,-8.3843],[114.5749,-8.3885],[114.5806,-8.394],[114.5815,-8.3983],[114.588,-8.4013],[114.5975,-8.4033],[114.6047,-8.4003],[114.6056,-8.4036],[114.6228,-8.4076],[114.6324,-8.4076],[114.6604,-8.4019],[114.6798,-8.399],[114.7155,-8.3965],[114.7335,-8.3958],[114.7379,-8.3974],[114.7562,-8.4005],[114.7742,-8.406],[114.7922,-8.4103],[114.8005,-8.4132],[114.8043,-8.4161],[114.8061,-8.4214],[114.8157,-8.4251],[114.8199,-8.4311],[114.825,-8.4348],[114.8334,-8.4352],[114.8495,-8.439],[114.864,-8.445],[114.8797,-8.4505],[114.8835,-8.45],[114.8909,-8.4549],[114.9026,-8.4597],[114.9131,-8.4661],[114.916,-8.4637]]]}},{"type":"Feature","properties":{"mhid":"1332:283","alt_name":"KABUPATEN TABANAN","latitude":-8.43333,"longitude":115.06667,"sample_value":924},"geometry":{"type":"MultiLineString","coordinates":[[[114.916,-8.4637],[114.9193,-8.4686],[114.9308,-8.4746],[114.9443,-8.4861],[114.9472,-8.4913],[114.9532,-8.4971],[114.9582,-8.4986],[114.9728,-8.5075],[114.9758,-8.5132],[114.9802,-8.5145],[114.9862,-8.5191],[114.9929,-8.5267],[114.9952,-8.5276],[114.9996,-8.537],[115.0096,-8.5419],[115.0119,-8.5457],[115.0334,-8.5611],[115.0481,-8.5723],[115.0487,-8.5739],[115.0592,-8.5805],[115.0609,-8.5839],[115.071,-8.5926],[115.0715,-8.5944],[115.0832,-8.6081],[115.0836,-8.6129],[115.0926,-8.629],[115.0983,-8.6332],[115.0994,-8.6362]]]}},{"type":"Feature","properties":{"mhid":"1332:284","alt_name":"KABUPATEN BADUNG","latitude":-8.51667,"longitude":115.2,"sample_value":39},"geometry":{"type":"MultiLineString","coordinates":[[[115.0994,-8.6362],[115.1031,-8.6424],[115.1112,-8.6453],[115.1167,-8.6486],[115.1381,-8.666],[115.1437,-8.6718],[115.1593,-8.6955],[115.1615,-8.6976],[115.166,-8.7086],[115.1693,-8.7244],[115.1649,-8.7292],[115.1587,-8.7468],[115.1523,-8.7471],[115.1525,-8.7505],[115.1595,-8.7503],[115.1679,-8.7576],[115.1694,-8.7648],[115.1675,-8.774],[115.1627,-8.7815],[115.1451,-8.7795],[115.1421,-8.7804],[115.1317,-8.7893],[115.1241,-8.7911],[115.1188,-8.7938],[115.116,-8.8035],[115.1035,-8.8112],[115.0885,-8.8147],[115.0841,-8.8247],[115.0839,-8.8297],[115.087,-8.8357],[115.0959,-8.8407],[115.1017,-8.8417],[115.1126,-8.8458],[115.1225,-8.8471],[115.1508,-8.8475],[115.1702,-8.8491],[115.1876,-8.8451],[115.1983,-8.8417],[115.2044,-8.8379],[115.2179,-8.8326],[115.2245,-8.8182],[115.2315,-8.8114],[115.2359,-8.8034],[115.2311,-8.789],[115.2272,-8.7857],[115.2261,-8.7767],[115.2244,-8.7745],[115.2236,-8.7602],[115.2215,-8.7535],[115.2183,-8.7524],[115.2156,-8.7572],[115.2156,-8.7661],[115.2177,-8.7718],[115.2138,-8.776],[115.2171,-8.785],[115.2147,-8.7871],[115.2082,-8.7853],[115.2045,-8.7821],[115.1977,-8.7803],[115.1947,-8.7775],[115.1916,-8.767],[115.1888,-8.7642],[115.1828,-8.7651],[115.1807,-8.7593],[115.1845,-8.7488],[115.1845,-8.7446],[115.1904,-8.7377]]]}},{"type":"Feature","properties":{"mhid":"1332:285","alt_name":"KABUPATEN GIANYAR","latitude":-8.46667,"longitude":115.28333,"sample_value":664},"geometry":{"type":"MultiLineString","coordinates":[[[115.275,-8.6502],[115.2882,-8.6401],[115.3016,-8.6278],[115.3022,-8.625],[115.3104,-8.619],[115.3201,-8.6149],[115.3258,-8.6068],[115.3296,-8.6037],[115.3466,-8.5944],[115.3499,-8.5909],[115.3524,-8.5844],[115.3619,-8.5775],[115.3711,-8.5749]]]}},{"type":"Feature","properties":{"mhid":"1332:286","alt_name":"KABUPATEN KLUNGKUNG","latitude":-8.55,"longitude":115.4,"sample_value":769},"geometry":{"type":"MultiLineString","coordinates":[[[115.4657,-8.6882],[115.4595,-8.688],[115.4577,-8.6909],[115.4503,-8.695],[115.4489,-8.6976],[115.4399,-8.7023],[115.437,-8.7072],[115.4401,-8.7119],[115.4444,-8.7121],[115.4602,-8.6985],[115.4657,-8.6882]],[[115.562,-8.6719],[115.5505,-8.6723],[115.5455,-8.6747],[115.5294,-8.6776],[115.5155,-8.677],[115.5069,-8.6738],[115.4976,-8.672],[115.4895,-8.6744],[115.4865,-8.6838],[115.4803,-8.6847],[115.4732,-8.6901],[115.4726,-8.6948],[115.4648,-8.7006],[115.464,-8.7053],[115.4574,-8.7118],[115.4591,-8.7166],[115.4532,-8.718],[115.4479,-8.7218],[115.449,-8.7305],[115.4555,-8.7371],[115.4512,-8.748],[115.4562,-8.7488],[115.4642,-8.7476],[115.4729,-8.7506],[115.4804,-8.7575],[115.4861,-8.7607],[115.4853,-8.769],[115.4972,-8.771],[115.5032,-8.7765],[115.5107,-8.7764],[115.5235,-8.7873],[115.5236,-8.7918],[115.5273,-8.7932],[115.5308,-8.7994],[115.535,-8.7973],[115.5471,-8.8001],[115.5624,-8.8079],[115.5668,-8.8091],[115.5691,-8.8131],[115.5743,-8.8123],[115.5794,-8.8138],[115.5831,-8.8184],[115.5871,-8.8195],[115.5945,-8.8148],[115.5989,-8.8083],[115.6059,-8.8073],[115.6072,-8.8028],[115.6047,-8.7986],[115.6064,-8.7916],[115.6102,-8.7845],[115.6156,-8.7821],[115.616,-8.7784],[115.6225,-8.7731],[115.6286,-8.77],[115.625,-8.762],[115.6253,-8.7571],[115.6212,-8.7488],[115.6103,-8.7354],[115.599,-8.727],[115.5963,-8.7239],[115.595,-8.7162],[115.5889,-8.7116],[115.5842,-8.7037],[115.5841,-8.6999],[115.5792,-8.6859],[115.5717,-8.6769],[115.562,-8.6719]],[[115.4665,-8.6659],[115.4535,-8.6631],[115.4504,-8.6636],[115.4478,-8.6684],[115.4455,-8.6793],[115.4334,-8.6824],[115.4273,-8.683],[115.4279,-8.6887],[115.4309,-8.6923],[115.4364,-8.6943],[115.4509,-8.6938],[115.4618,-8.6834],[115.4698,-8.6786],[115.4732,-8.6722],[115.4713,-8.6682],[115.4665,-8.6659]],[[115.3711,-8.5749],[115.3769,-8.5746],[115.398,-8.576],[115.4029,-8.5775],[115.4133,-8.5759],[115.4278,-8.5759],[115.4475,-8.5711],[115.4623,-8.556],[115.4723,-8.5519],[115.4791,-8.5509]]]}},{"type":"Feature","properties":{"mhid":"1332:288","alt_name":"KABUPATEN KARANG ASEM","latitude":-8.3891,"longitude":115.5393,"sample_value":672},"geometry":{"type":"MultiLineString","coordinates":[[[115.4791,-8.5509],[115.4863,-8.5493],[115.5096,-8.5405],[115.5085,-8.5329],[115.5138,-8.5282],[115.5077,-8.5179],[115.5086,-8.5131],[115.5126,-8.5091],[115.5207,-8.5044],[115.5304,-8.501],[115.5383,-8.5007],[115.547,-8.5058],[115.5536,-8.5048],[115.5808,-8.5151],[115.581,-8.5177],[115.5937,-8.5099],[115.6102,-8.5031],[115.6127,-8.4951],[115.617,-8.4877],[115.6179,-8.4834],[115.6309,-8.4727],[115.6344,-8.468],[115.6353,-8.4622],[115.6483,-8.4552],[115.6537,-8.4541],[115.6595,-8.4493],[115.6682,-8.4453],[115.6719,-8.4451],[115.6803,-8.439],[115.6834,-8.4351],[115.6886,-8.4322],[115.6934,-8.4269],[115.7003,-8.4135],[115.7051,-8.4101],[115.7113,-8.3998],[115.7101,-8.3945],[115.7119,-8.3903],[115.7105,-8.3861],[115.7109,-8.378],[115.7038,-8.3705],[115.6982,-8.3585],[115.6833,-8.3502],[115.6821,-8.3475],[115.6682,-8.3419],[115.6642,-8.3374],[115.6598,-8.3384],[115.6549,-8.3346],[115.6496,-8.335],[115.6421,-8.3335],[115.6348,-8.3262],[115.6308,-8.3249],[115.6202,-8.3064],[115.6188,-8.3001],[115.6123,-8.2951],[115.5986,-8.279],[115.5929,-8.2753],[115.5904,-8.2687],[115.5809,-8.2548],[115.5736,-8.2484],[115.5582,-8.2313],[115.5545,-8.2298],[115.5361,-8.2188],[115.526,-8.2152],[115.5184,-8.2096],[115.5074,-8.2033],[115.5012,-8.1931],[115.4895,-8.1867],[115.4849,-8.1804],[115.4815,-8.179],[115.4719,-8.1784],[115.4589,-8.1695],[115.4571,-8.1665]]]}},{"type":"Feature","properties":{"mhid":"1332:289","alt_name":"KABUPATEN BULELENG","latitude":-8.25,"longitude":114.96667,"sample_value":683},"geometry":{"type":"MultiLineString","coordinates":[[[114.5171,-8.0925],[114.5145,-8.0919],[114.5026,-8.0941],[114.5101,-8.098],[114.5176,-8.1002],[114.5249,-8.0981],[114.5248,-8.0929],[114.5171,-8.0925]],[[115.4571,-8.1665],[115.4533,-8.1622],[115.4371,-8.1558],[115.4209,-8.152],[115.4168,-8.1523],[115.4047,-8.143],[115.3897,-8.1358],[115.3798,-8.1347],[115.3768,-8.1323],[115.3666,-8.1292],[115.358,-8.1283],[115.3449,-8.1184],[115.3391,-8.1115],[115.3245,-8.1131],[115.3093,-8.1062],[115.2955,-8.1049],[115.2836,-8.0987],[115.2767,-8.0965],[115.2685,-8.09],[115.2616,-8.0869],[115.2567,-8.0868],[115.2443,-8.0832],[115.2364,-8.0836],[115.2234,-8.0796],[115.2023,-8.0724],[115.1886,-8.063],[115.184,-8.0618],[115.1565,-8.0649],[115.1377,-8.0744],[115.1319,-8.0785],[115.1235,-8.0814],[115.1161,-8.0818],[115.1153,-8.084],[115.0943,-8.1012],[115.083,-8.1058],[115.0778,-8.1098],[115.0756,-8.1141],[115.0655,-8.1213],[115.0585,-8.1319],[115.0513,-8.1382],[115.0487,-8.144],[115.0404,-8.1476],[115.0296,-8.1538],[115.0219,-8.1637],[115.0103,-8.1658],[115.0056,-8.173],[114.9992,-8.1765],[114.994,-8.1765],[114.9871,-8.1802],[114.9756,-8.181],[114.9669,-8.1827],[114.9545,-8.1821],[114.9396,-8.1836],[114.9291,-8.1811],[114.9155,-8.1842],[114.907,-8.1826],[114.9035,-8.1878],[114.8937,-8.1883],[114.876,-8.1954],[114.8621,-8.1966],[114.8465,-8.1935],[114.8429,-8.1909],[114.8397,-8.1935],[114.8337,-8.1928],[114.8322,-8.1897],[114.8235,-8.1923],[114.8184,-8.1882],[114.8082,-8.1854],[114.8044,-8.1823],[114.7923,-8.1784],[114.7725,-8.173],[114.767,-8.1731],[114.7572,-8.1694],[114.7513,-8.1697],[114.7399,-8.1643],[114.736,-8.1609],[114.7264,-8.1574],[114.7213,-8.1576],[114.7079,-8.1543],[114.6937,-8.1443],[114.6814,-8.1444],[114.6792,-8.1465],[114.6728,-8.1474],[114.6655,-8.1454],[114.6632,-8.1427],[114.6559,-8.1437],[114.646,-8.1323],[114.6405,-8.1383],[114.6358,-8.1348],[114.6348,-8.1314],[114.63,-8.128],[114.6164,-8.1258],[114.6124,-8.1282],[114.6136,-8.1317],[114.6077,-8.1336],[114.6034,-8.1385],[114.5994,-8.1362],[114.5937,-8.1375],[114.593,-8.1305],[114.5953,-8.1238],[114.5919,-8.1205],[114.5867,-8.1197],[114.5792,-8.1215],[114.5689,-8.1268],[114.5629,-8.1315],[114.5615,-8.1352],[114.57,-8.1383],[114.563,-8.1436],[114.5585,-8.138],[114.559,-8.1339],[114.5561,-8.1313],[114.5507,-8.1335],[114.5454,-8.1392],[114.5399,-8.1431],[114.5287,-8.153],[114.5242,-8.1548],[114.5193,-8.1527],[114.5177,-8.1441],[114.523,-8.1391],[114.5232,-8.1339],[114.5157,-8.1239],[114.5109,-8.1155],[114.5053,-8.1109],[114.5024,-8.105],[114.4945,-8.0962],[114.4871,-8.0938],[114.4837,-8.0962],[114.4772,-8.0962],[114.4559,-8.0936],[114.4452,-8.0933],[114.4363,-8.0973],[114.4344,-8.1029],[114.4338,-8.1181],[114.4364,-8.1243],[114.4437,-8.1326],[114.4465,-8.1437],[114.4448,-8.1483],[114.4449,-8.1566],[114.4514,-8.161],[114.4575,-8.1602],[114.4677,-8.1653],[114.4662,-8.1686],[114.459,-8.1718]]]}},{"type":"Feature","properties":{"mhid":"1332:290","alt_name":"KOTA DENPASAR","latitude":-8.66667,"longitude":115.21663,"sample_value":164},"geometry":{"type":"MultiLineString","coordinates":[[[115.1904,-8.7377],[115.1944,-8.737],[115.2048,-8.7293],[115.2116,-8.7334],[115.208,-8.7383],[115.206,-8.7461],[115.2119,-8.7469],[115.2138,-8.7379],[115.2117,-8.7364],[115.2138,-8.7268],[115.2272,-8.7278],[115.2217,-8.7326],[115.2179,-8.7464],[115.2207,-8.7495],[115.2283,-8.7524],[115.2348,-8.7454],[115.2396,-8.7435],[115.244,-8.7369],[115.2467,-8.7362],[115.2389,-8.7214],[115.2309,-8.7234],[115.2279,-8.7198],[115.239,-8.7173],[115.2456,-8.7109],[115.2509,-8.7127],[115.2551,-8.7119],[115.2634,-8.707],[115.2668,-8.6971],[115.2672,-8.6913],[115.2648,-8.6823],[115.2642,-8.6748],[115.2608,-8.6691],[115.262,-8.6636],[115.2685,-8.6548],[115.275,-8.6502]]]}},{"type":"Feature","properties":{"mhid":"1332:291","alt_name":"KABUPATEN LOMBOK BARAT","latitude":-8.69583,"longitude":116.11667,"sample_value":441},"geometry":{"type":"MultiLineString","coordinates":[[[115.8911,-8.7445],[115.8915,-8.7344],[115.8901,-8.7315],[115.8853,-8.7311],[115.8822,-8.736],[115.8857,-8.743],[115.8911,-8.7445]],[[115.9303,-8.7321],[115.9259,-8.7264],[115.9211,-8.7264],[115.9185,-8.7336],[115.9213,-8.7412],[115.9137,-8.7479],[115.9239,-8.7481],[115.9271,-8.7529],[115.9272,-8.7593],[115.9342,-8.761],[115.9324,-8.7508],[115.9259,-8.7419],[115.9255,-8.7355],[115.9303,-8.7321]],[[115.9109,-8.7294],[115.9097,-8.7246],[115.9044,-8.7224],[115.9016,-8.7247],[115.9046,-8.7303],[115.9109,-8.7294]],[[116.074,-8.6253],[116.0689,-8.6513],[116.0691,-8.6579],[116.0719,-8.6706],[116.0667,-8.6855],[116.0605,-8.7119],[116.0567,-8.7245],[116.0596,-8.7303],[116.0696,-8.7285],[116.0805,-8.7321],[116.0729,-8.7384],[116.0696,-8.7363],[116.0657,-8.7419],[116.0667,-8.7461],[116.0588,-8.7537],[116.0619,-8.7579],[116.0584,-8.7679],[116.0547,-8.7664],[116.0501,-8.7611],[116.044,-8.766],[116.0388,-8.7627],[116.0407,-8.7593],[116.0397,-8.7545],[116.0364,-8.7508],[116.046,-8.7459],[116.0415,-8.7387],[116.0431,-8.7317],[116.0469,-8.727],[116.0453,-8.7235],[116.041,-8.7255],[116.0311,-8.7257],[116.0285,-8.7284],[116.0295,-8.7394],[116.0232,-8.7416],[116.0142,-8.751],[116.0084,-8.751],[116.0065,-8.747],[116.0007,-8.7405],[115.9971,-8.739],[115.9901,-8.7307],[115.9874,-8.7296],[115.9814,-8.7358],[115.9764,-8.7326],[115.9674,-8.7346],[115.9643,-8.7386],[115.9553,-8.7449],[115.9493,-8.7454],[115.9422,-8.753],[115.9426,-8.7585],[115.9392,-8.7651],[115.9331,-8.769],[115.9223,-8.7682],[115.9196,-8.7693],[115.9185,-8.7745],[115.914,-8.7753],[115.9044,-8.7709],[115.8981,-8.7621],[115.8943,-8.7601],[115.9002,-8.7502],[115.8956,-8.7492],[115.8938,-8.754],[115.8875,-8.7641],[115.8814,-8.7619],[115.8828,-8.7577],[115.8799,-8.7518],[115.8669,-8.7462],[115.8649,-8.7388],[115.869,-8.7296],[115.8656,-8.7225],[115.86,-8.7266],[115.8521,-8.7202],[115.8399,-8.7274],[115.8376,-8.733],[115.8372,-8.7403],[115.8296,-8.7448],[115.8253,-8.7506],[115.821,-8.7522],[115.8241,-8.7568],[115.8235,-8.7631],[115.8252,-8.7708],[115.8294,-8.7794],[115.8303,-8.7843],[115.8292,-8.7979],[115.833,-8.8005],[115.8348,-8.8106],[115.8482,-8.8131],[115.8488,-8.8159],[115.8447,-8.8211],[115.8481,-8.8255],[115.8521,-8.823],[115.8601,-8.8241],[115.8665,-8.8184],[115.8784,-8.8261],[115.887,-8.8258],[115.8907,-8.8308],[115.9022,-8.8305],[115.9091,-8.84],[115.9138,-8.8436],[115.919,-8.8444],[115.9208,-8.8384],[115.9256,-8.8341],[115.9334,-8.8334],[115.9357,-8.8363],[115.9447,-8.841],[115.9483,-8.8464],[115.9469,-8.8512],[115.9557,-8.8562],[115.9636,-8.8619],[115.9614,-8.8682],[115.9706,-8.8685],[115.9727,-8.8712],[115.972,-8.879],[115.9766,-8.8768],[115.9821,-8.8819],[115.9887,-8.8834],[115.9883,-8.8875],[115.9936,-8.8877],[115.9982,-8.8901],[115.9969,-8.8955],[116.0011,-8.8982],[116.0043,-8.903],[116.0117,-8.9028],[116.0161,-8.8975],[116.0161,-8.8938],[116.027,-8.8876],[116.0273,-8.8821],[116.0175,-8.8741],[116.0099,-8.8736],[116.01,-8.8676],[116.0119,-8.8643],[116.0188,-8.8596],[116.0213,-8.8605],[116.0288,-8.8571],[116.0334,-8.858],[116.0354,-8.8641],[116.0445,-8.8603],[116.0476,-8.854],[116.0543,-8.8513],[116.06,-8.8518],[116.0719,-8.8565],[116.0722,-8.8621],[116.0678,-8.8646],[116.0586,-8.8632],[116.0516,-8.8652],[116.0447,-8.87],[116.0471,-8.8751],[116.0474,-8.8804],[116.0498,-8.8853],[116.0565,-8.8829],[116.0649,-8.8832],[116.072,-8.8849],[116.0757,-8.8947],[116.0773,-8.8847],[116.0826,-8.8739],[116.1014,-8.8698]],[[116.0374,-8.4702],[116.0377,-8.4812],[116.0344,-8.485],[116.0405,-8.4961],[116.0425,-8.4951],[116.047,-8.5012],[116.0549,-8.5059],[116.0645,-8.5219],[116.068,-8.5333],[116.0694,-8.551]]]}},{"type":"Feature","properties":{"mhid":"1332:292","alt_name":"KABUPATEN LOMBOK TENGAH","latitude":-8.7,"longitude":116.3,"sample_value":262},"geometry":{"type":"MultiLineString","coordinates":[[[116.1014,-8.8698],[116.107,-8.8694],[116.1111,-8.8718],[116.1143,-8.8675],[116.1199,-8.8668],[116.1328,-8.87],[116.1403,-8.8696],[116.1505,-8.8629],[116.1554,-8.8644],[116.1618,-8.8735],[116.1573,-8.8772],[116.1608,-8.8858],[116.1565,-8.8942],[116.1624,-8.8959],[116.1647,-8.9015],[116.1733,-8.9135],[116.1803,-8.9113],[116.1846,-8.9144],[116.1907,-8.9113],[116.1956,-8.9145],[116.1998,-8.9027],[116.2069,-8.901],[116.216,-8.9025],[116.219,-8.9088],[116.2265,-8.9087],[116.227,-8.901],[116.2334,-8.9035],[116.2332,-8.914],[116.2384,-8.9169],[116.245,-8.913],[116.2433,-8.9054],[116.2508,-8.9026],[116.254,-8.9056],[116.2609,-8.9063],[116.2679,-8.9101],[116.2756,-8.9081],[116.2743,-8.9037],[116.2762,-8.8993],[116.2748,-8.8957],[116.2797,-8.8934],[116.287,-8.8952],[116.2969,-8.9043],[116.2975,-8.9097],[116.3028,-8.9072],[116.3146,-8.9087],[116.3168,-8.9139],[116.324,-8.9082],[116.3314,-8.9116],[116.3329,-8.9152],[116.3423,-8.9218],[116.3411,-8.9265],[116.3466,-8.9305],[116.3508,-8.9274],[116.3468,-8.921],[116.3469,-8.9151],[116.3397,-8.9025],[116.3465,-8.8975],[116.3505,-8.9014],[116.3509,-8.9052],[116.3582,-8.9051],[116.3605,-8.9093],[116.3662,-8.9093],[116.3719,-8.9044],[116.3755,-8.9037],[116.3808,-8.91],[116.3701,-8.9228],[116.3665,-8.925],[116.3671,-8.9305],[116.3695,-8.9334],[116.3688,-8.9377],[116.373,-8.9456],[116.3708,-8.9487],[116.3757,-8.9556],[116.3807,-8.9536],[116.3874,-8.948],[116.3942,-8.9444],[116.3968,-8.9391],[116.3934,-8.9261],[116.3951,-8.9185],[116.3978,-8.9147],[116.3984,-8.908],[116.4006,-8.9034],[116.4049,-8.8996],[116.4016,-8.8934],[116.398,-8.8907],[116.3988,-8.8861],[116.3951,-8.8838],[116.3955,-8.8745],[116.3904,-8.8717],[116.3863,-8.8666],[116.3886,-8.8609],[116.3929,-8.8564],[116.4016,-8.8566]],[[116.3983,-8.8467],[116.396,-8.8466],[116.394,-8.8378],[116.3899,-8.8331],[116.3901,-8.8215],[116.395,-8.8183]],[[116.4431,-8.7487],[116.4458,-8.7459],[116.4464,-8.74]]]}},{"type":"Feature","properties":{"mhid":"1332:293","alt_name":"KABUPATEN LOMBOK TIMUR","latitude":-8.53333,"longitude":116.53333,"sample_value":947},"geometry":{"type":"MultiLineString","coordinates":[[[116.7189,-8.3104],[116.7118,-8.311],[116.7071,-8.3145],[116.7096,-8.3248],[116.7149,-8.33],[116.7245,-8.3323],[116.7258,-8.3373],[116.7393,-8.3445],[116.7437,-8.3451],[116.7436,-8.3369],[116.7189,-8.3104]],[[116.6967,-8.2847],[116.69,-8.2806],[116.6855,-8.2864],[116.6859,-8.2914],[116.6946,-8.2965],[116.7057,-8.3092],[116.7114,-8.305],[116.7118,-8.2996],[116.7006,-8.2868],[116.6967,-8.2847]],[[116.4016,-8.8566],[116.4034,-8.8616],[116.4086,-8.8514],[116.4095,-8.8444],[116.4145,-8.8374],[116.4191,-8.8354],[116.4225,-8.8283],[116.4279,-8.8263],[116.4293,-8.8303],[116.4349,-8.8342],[116.4374,-8.8409],[116.4418,-8.8409],[116.4419,-8.8321],[116.4454,-8.8289],[116.4522,-8.8321],[116.4607,-8.8277],[116.4641,-8.8224],[116.4692,-8.8229],[116.4722,-8.8273],[116.4678,-8.8304],[116.4739,-8.839],[116.4717,-8.8445],[116.465,-8.8496],[116.4613,-8.8495],[116.4577,-8.8568],[116.4595,-8.862],[116.4574,-8.8718],[116.4547,-8.872],[116.4484,-8.8956],[116.4483,-8.8991],[116.4412,-8.9032],[116.4371,-8.9111],[116.4325,-8.9135],[116.4358,-8.9198],[116.4404,-8.919],[116.4461,-8.9212],[116.4564,-8.9212],[116.4578,-8.9193],[116.4718,-8.9214],[116.4769,-8.9182],[116.4875,-8.9137],[116.4962,-8.9118],[116.4991,-8.9089],[116.4999,-8.9024],[116.5064,-8.8946],[116.5071,-8.8885],[116.5103,-8.8831],[116.5088,-8.8789],[116.5195,-8.8826],[116.5207,-8.8986],[116.5199,-8.9044],[116.5141,-8.911],[116.5273,-8.9079],[116.5449,-8.9001],[116.5467,-8.8979],[116.5557,-8.8965],[116.5673,-8.8916],[116.5709,-8.8871],[116.5704,-8.8791],[116.5751,-8.8762],[116.5748,-8.8724],[116.5857,-8.8707],[116.5844,-8.865],[116.5944,-8.8611],[116.5879,-8.8566],[116.5698,-8.8624],[116.5543,-8.8572],[116.5498,-8.8541],[116.5423,-8.8574],[116.5398,-8.8612],[116.5358,-8.8599],[116.5397,-8.8543],[116.5407,-8.8453],[116.5394,-8.8397],[116.54,-8.8327],[116.5347,-8.8283],[116.5289,-8.8297],[116.5244,-8.8255],[116.5227,-8.8298],[116.5294,-8.8312],[116.5282,-8.8407],[116.5172,-8.8387],[116.5178,-8.8435],[116.5052,-8.8413],[116.503,-8.8456],[116.5054,-8.8507],[116.5099,-8.8519],[116.5103,-8.8565],[116.5044,-8.8592],[116.4989,-8.8562],[116.4927,-8.8482],[116.4973,-8.8413],[116.4943,-8.8371],[116.4994,-8.8294],[116.4975,-8.8268],[116.5006,-8.8216],[116.4989,-8.8115],[116.4946,-8.8142],[116.4841,-8.8158],[116.4801,-8.8103],[116.4811,-8.8068],[116.486,-8.8055],[116.4948,-8.8105],[116.5009,-8.8056],[116.5008,-8.8019],[116.5057,-8.7946],[116.5058,-8.7885],[116.5089,-8.7809],[116.513,-8.7773],[116.5207,-8.7769],[116.5253,-8.7702],[116.5363,-8.7621],[116.5457,-8.7525],[116.5526,-8.7404],[116.5517,-8.7323],[116.5536,-8.7253],[116.5611,-8.7142],[116.5706,-8.704],[116.572,-8.6998],[116.578,-8.6911],[116.58,-8.6816],[116.5872,-8.6674],[116.5974,-8.6592],[116.6171,-8.6322],[116.6208,-8.6259],[116.6246,-8.6108],[116.6231,-8.6054],[116.6254,-8.6014],[116.6329,-8.5934],[116.6422,-8.5861],[116.6474,-8.5807],[116.6589,-8.5712],[116.6666,-8.5593],[116.6671,-8.5556],[116.6591,-8.5465],[116.6573,-8.5393],[116.6586,-8.5294],[116.6614,-8.5257],[116.6658,-8.5136],[116.677,-8.5054],[116.6785,-8.497],[116.6693,-8.5021],[116.6617,-8.4947],[116.6622,-8.4865],[116.6681,-8.4818],[116.6702,-8.4779],[116.677,-8.4734],[116.6852,-8.4654],[116.6963,-8.4524],[116.704,-8.4486],[116.7115,-8.443],[116.7096,-8.4329],[116.7097,-8.4273],[116.7142,-8.4239],[116.7105,-8.415],[116.7137,-8.4091],[116.7224,-8.3966],[116.7249,-8.3828],[116.7238,-8.3756],[116.7248,-8.3681],[116.7161,-8.353],[116.7181,-8.3483],[116.7102,-8.3418],[116.6988,-8.3358],[116.6934,-8.3354],[116.6884,-8.3327],[116.6898,-8.3293],[116.6725,-8.3092],[116.6657,-8.3049],[116.6641,-8.2994],[116.6596,-8.2944],[116.6506,-8.2883],[116.6424,-8.2855],[116.6212,-8.2807],[116.6158,-8.2807],[116.6085,-8.2828],[116.5989,-8.2809],[116.5937,-8.2785],[116.5895,-8.2744],[116.5714,-8.2665],[116.5557,-8.2628],[116.5486,-8.2619],[116.5452,-8.2593],[116.5322,-8.2542],[116.5238,-8.2529],[116.5103,-8.2557],[116.506,-8.2555],[116.5,-8.2521],[116.494,-8.2455]],[[116.4464,-8.74],[116.4503,-8.7438],[116.4488,-8.7486],[116.4431,-8.7487]],[[116.395,-8.8183],[116.3956,-8.8266],[116.398,-8.8304],[116.3994,-8.8385],[116.3983,-8.8467]]]}},{"type":"Feature","properties":{"mhid":"1332:294","alt_name":"KABUPATEN SUMBAWA","latitude":-8.7439,"longitude":117.3324,"sample_value":488},"geometry":{"type":"MultiLineString","coordinates":[[[117.966,-8.6116],[117.9566,-8.6112],[117.9571,-8.6244],[117.9599,-8.6303],[117.9655,-8.6273],[117.9704,-8.6301],[117.9683,-8.635],[117.972,-8.638],[117.9785,-8.637],[117.9743,-8.6479],[117.9668,-8.6469],[117.9652,-8.6533],[117.9613,-8.6562],[117.9621,-8.6607],[117.9548,-8.6658],[117.9591,-8.6706],[117.9647,-8.67],[117.9651,-8.666],[117.9701,-8.6639],[117.9699,-8.6594],[117.9742,-8.6585],[117.9794,-8.6602],[117.9813,-8.6573],[117.988,-8.6565],[117.987,-8.6514],[117.9905,-8.6488],[117.9934,-8.6539],[117.9951,-8.6622],[117.9902,-8.6673],[117.9829,-8.6797],[117.978,-8.6866],[117.9787,-8.6921],[117.9875,-8.6874],[117.9935,-8.691],[117.9972,-8.6875],[118.0008,-8.6921],[118.0041,-8.6904],[118.0017,-8.6853],[118.0054,-8.6798],[118.0078,-8.669],[118.0023,-8.6633],[118.0053,-8.6585],[118.0007,-8.6577],[117.9975,-8.6513],[117.9993,-8.6455],[117.9979,-8.6412],[118.003,-8.6374],[118.0049,-8.6335],[118.0026,-8.628],[117.9982,-8.6276],[117.9959,-8.6345],[117.9893,-8.6346],[117.9873,-8.6269],[117.9795,-8.6292],[117.9754,-8.6248],[117.9795,-8.6211],[117.978,-8.6114],[117.9738,-8.6136],[117.966,-8.6116]],[[117.8345,-8.5748],[117.8281,-8.5762],[117.8321,-8.5853],[117.8308,-8.5893],[117.8366,-8.5905],[117.8416,-8.585],[117.8418,-8.5775],[117.8402,-8.5751],[117.8345,-8.5748]],[[117.8227,-8.5558],[117.8143,-8.5587],[117.8135,-8.5614],[117.8225,-8.5674],[117.8227,-8.5558]],[[116.8735,-8.4927],[116.8663,-8.4942],[116.8644,-8.4982],[116.8681,-8.504],[116.8721,-8.5052],[116.8784,-8.5024],[116.8821,-8.4981],[116.8785,-8.4934],[116.8735,-8.4927]],[[117.7279,-8.4781],[117.7279,-8.4747],[117.7222,-8.4742],[117.7197,-8.4771],[117.7149,-8.478],[117.7079,-8.4848],[117.7069,-8.4907],[117.7014,-8.495],[117.7054,-8.5009],[117.7101,-8.5032],[117.7138,-8.5138],[117.71,-8.5179],[117.7098,-8.5214],[117.7126,-8.5273],[117.7137,-8.535],[117.7232,-8.5439],[117.7294,-8.5463],[117.7327,-8.5502],[117.7361,-8.5591],[117.7408,-8.5625],[117.7468,-8.5693],[117.7496,-8.568],[117.7609,-8.5694],[117.7658,-8.5654],[117.7681,-8.5599],[117.7666,-8.5566],[117.7708,-8.5526],[117.7781,-8.5615],[117.7919,-8.5577],[117.7994,-8.5543],[117.8003,-8.5517],[117.795,-8.5483],[117.791,-8.5505],[117.7776,-8.5547],[117.7714,-8.5517],[117.7695,-8.5427],[117.7658,-8.5402],[117.7643,-8.5469],[117.7596,-8.5475],[117.7556,-8.5427],[117.7495,-8.5399],[117.7454,-8.5338],[117.7451,-8.5301],[117.7394,-8.5283],[117.7347,-8.5183],[117.7374,-8.5105],[117.7366,-8.5037],[117.732,-8.5015],[117.7313,-8.4951],[117.7269,-8.4897],[117.7288,-8.482],[117.7279,-8.4781]],[[117.6528,-8.4479],[117.6489,-8.4638],[117.6507,-8.4664],[117.6486,-8.4738],[117.6504,-8.4866],[117.647,-8.4897],[117.6441,-8.4848],[117.6412,-8.4848],[117.6379,-8.4897],[117.6432,-8.4932],[117.6429,-8.5025],[117.638,-8.506],[117.6365,-8.5093],[117.6396,-8.5148],[117.6402,-8.5213],[117.6476,-8.5223],[117.6506,-8.5311],[117.6542,-8.5296],[117.6521,-8.5233],[117.6543,-8.5202],[117.661,-8.5167],[117.6648,-8.5209],[117.6663,-8.5142],[117.6687,-8.5136],[117.6709,-8.5214],[117.6742,-8.5231],[117.6792,-8.519],[117.6786,-8.5142],[117.6731,-8.5138],[117.6727,-8.509],[117.6777,-8.5035],[117.6753,-8.4996],[117.6767,-8.4903],[117.6752,-8.4842],[117.6702,-8.4806],[117.6683,-8.4762],[117.6697,-8.4703],[117.674,-8.4663],[117.6696,-8.457],[117.6607,-8.4489],[117.6528,-8.4479]],[[116.9512,-8.42],[116.9395,-8.4218],[116.9288,-8.4256],[116.924,-8.434],[116.9161,-8.4375],[116.9073,-8.4349],[116.9035,-8.4364],[116.895,-8.4368],[116.8793,-8.4318],[116.8725,-8.4318],[116.8665,-8.438],[116.8609,-8.4407],[116.8471,-8.4404],[116.8397,-8.4454],[116.8427,-8.4499],[116.8545,-8.4506],[116.8608,-8.4525],[116.8753,-8.445],[116.8886,-8.4444],[116.8912,-8.4475],[116.8969,-8.4492],[116.9045,-8.4466],[116.9124,-8.4463],[116.9268,-8.4411],[116.933,-8.4366],[116.94,-8.4335],[116.9441,-8.4377],[116.9487,-8.4379],[116.9541,-8.4354],[116.9597,-8.4301],[116.9599,-8.4242],[116.9561,-8.4208],[116.9512,-8.42]],[[117.6612,-8.4344],[117.6637,-8.4211],[117.6579,-8.4187],[117.6522,-8.4233],[117.6454,-8.4327],[117.642,-8.439],[117.6449,-8.44],[117.657,-8.4376],[117.6612,-8.4344]],[[117.0473,-8.3786],[117.0408,-8.3785],[117.0322,-8.3848],[117.026,-8.3929],[117.0249,-8.4023],[117.0198,-8.4066],[117.0093,-8.4105],[117.0007,-8.4119],[116.9943,-8.4091],[116.9922,-8.403],[116.9825,-8.414],[116.9818,-8.4205],[116.9762,-8.4302],[116.9788,-8.4325],[116.9963,-8.43],[116.996,-8.4214],[117.0013,-8.4211],[117.0144,-8.4158],[117.0238,-8.4183],[117.0241,-8.4092],[117.0326,-8.4103],[117.0401,-8.4033],[117.0455,-8.3948],[117.0425,-8.3919],[117.0434,-8.3881],[117.0481,-8.3838],[117.0473,-8.3786]],[[117.0809,-8.3714],[117.073,-8.3714],[117.0713,-8.3746],[117.0776,-8.3781],[117.0822,-8.374],[117.0809,-8.3714]],[[118.1758,-8.6548],[118.1758,-8.6592],[118.1725,-8.6605],[118.168,-8.6533],[118.1549,-8.6529],[118.1508,-8.654],[118.1443,-8.6523],[118.1413,-8.6479],[118.1337,-8.6517],[118.1278,-8.65],[118.1235,-8.6515],[118.1257,-8.6568],[118.1226,-8.6583],[118.1183,-8.6523],[118.1129,-8.6534],[118.1078,-8.6569],[118.0988,-8.6539],[118.0971,-8.6555],[118.0884,-8.6522],[118.0839,-8.6549],[118.0831,-8.6583],[118.0771,-8.66],[118.0749,-8.6562],[118.0688,-8.6629],[118.0599,-8.6616],[118.0512,-8.6662],[118.0467,-8.6699],[118.038,-8.6724],[118.0351,-8.6827],[118.0277,-8.6854],[118.0252,-8.6903],[118.0196,-8.6956],[118.0168,-8.7012],[118.0113,-8.706],[118.0092,-8.712],[118.0047,-8.7115],[117.9986,-8.714],[117.993,-8.7097],[117.9867,-8.7156],[117.9913,-8.7214],[117.9839,-8.7274],[117.9808,-8.7334],[117.9744,-8.7395],[117.9595,-8.7431],[117.9566,-8.7403],[117.9511,-8.744],[117.9458,-8.7429],[117.9481,-8.734],[117.9472,-8.7295],[117.9387,-8.7266],[117.9365,-8.7227],[117.9288,-8.7256],[117.9244,-8.7246],[117.9219,-8.7189],[117.9188,-8.7199],[117.918,-8.7265],[117.914,-8.732],[117.9078,-8.7357],[117.9053,-8.7411],[117.902,-8.7367],[117.894,-8.7304],[117.8889,-8.7244],[117.8899,-8.7191],[117.9018,-8.713],[117.9034,-8.7091],[117.9001,-8.7035],[117.8934,-8.7005],[117.888,-8.6999],[117.88,-8.702],[117.8713,-8.6965],[117.8572,-8.7052],[117.8537,-8.7121],[117.8475,-8.7181],[117.8403,-8.7184],[117.8372,-8.712],[117.8318,-8.7092],[117.8267,-8.7118],[117.8238,-8.7166],[117.816,-8.7226],[117.8065,-8.727],[117.8039,-8.7268],[117.7995,-8.7186],[117.7928,-8.7223],[117.785,-8.7198],[117.7827,-8.7167],[117.7729,-8.7117],[117.7703,-8.7047],[117.7717,-8.7015],[117.7698,-8.6911],[117.7731,-8.6887],[117.7727,-8.6843],[117.7666,-8.6736],[117.7649,-8.6684],[117.7691,-8.6647],[117.7699,-8.6586],[117.7662,-8.6572],[117.7616,-8.6608],[117.7569,-8.659],[117.7568,-8.6549],[117.7502,-8.6492],[117.7491,-8.6446],[117.751,-8.6376],[117.7543,-8.6358],[117.7684,-8.6376],[117.7767,-8.6351],[117.78,-8.6312],[117.7728,-8.6303],[117.7639,-8.6329],[117.7598,-8.6294],[117.7518,-8.6314],[117.7511,-8.6252],[117.7545,-8.6226],[117.7517,-8.618],[117.7547,-8.6128],[117.7584,-8.6101],[117.7601,-8.6055],[117.7563,-8.5914],[117.7456,-8.5886],[117.7374,-8.5943],[117.7282,-8.5893],[117.7273,-8.5861],[117.7314,-8.5782],[117.7375,-8.5712],[117.7372,-8.5637],[117.7308,-8.5618],[117.7252,-8.5576],[117.7245,-8.5629],[117.7192,-8.5677],[117.7116,-8.5662],[117.7053,-8.5671],[117.7017,-8.5641],[117.6975,-8.5655],[117.6958,-8.5746],[117.69,-8.5775],[117.687,-8.5766],[117.6855,-8.5711],[117.6774,-8.5678],[117.6689,-8.5675],[117.6621,-8.5656],[117.6605,-8.5614],[117.6536,-8.5637],[117.6491,-8.5589],[117.6438,-8.556],[117.64,-8.5602],[117.6358,-8.5597],[117.6347,-8.5548],[117.6292,-8.5521],[117.6346,-8.5465],[117.6291,-8.5385],[117.624,-8.5388],[117.63,-8.5263],[117.6345,-8.5231],[117.6282,-8.5162],[117.6266,-8.5093],[117.6293,-8.5019],[117.6253,-8.4987],[117.6315,-8.4876],[117.6319,-8.4786],[117.6346,-8.4745],[117.6344,-8.4644],[117.6319,-8.4628],[117.6281,-8.4509],[117.6251,-8.4446],[117.6166,-8.4392],[117.607,-8.4381],[117.6012,-8.4349],[117.5919,-8.4336],[117.5905,-8.4262],[117.5838,-8.4261],[117.5767,-8.4339],[117.5744,-8.4418],[117.5747,-8.4508],[117.5794,-8.4641],[117.5771,-8.4674],[117.5816,-8.4779],[117.5808,-8.4821],[117.5855,-8.4837],[117.5893,-8.4877],[117.5881,-8.4933],[117.5913,-8.4994],[117.5917,-8.5042],[117.5704,-8.5008],[117.5712,-8.4983],[117.5655,-8.4854],[117.5676,-8.4805],[117.5644,-8.4782],[117.5695,-8.4732],[117.565,-8.471],[117.5654,-8.4667],[117.5599,-8.4633],[117.5678,-8.4601],[117.567,-8.4492],[117.5628,-8.4463],[117.5628,-8.4403],[117.5689,-8.4344],[117.5707,-8.4257],[117.5672,-8.4173],[117.567,-8.4093],[117.5596,-8.4049],[117.553,-8.4061],[117.5477,-8.4027],[117.5357,-8.4086],[117.5145,-8.4124],[117.5012,-8.4137],[117.4826,-8.4117],[117.4727,-8.415],[117.4626,-8.4108],[117.4516,-8.4123],[117.4483,-8.4109],[117.4424,-8.4003],[117.4397,-8.3981],[117.4305,-8.3953],[117.4305,-8.402],[117.4358,-8.4051],[117.4343,-8.4132],[117.4253,-8.421],[117.4196,-8.4342],[117.4146,-8.4425],[117.4102,-8.4459],[117.4053,-8.454],[117.4064,-8.4627],[117.3988,-8.4695],[117.3931,-8.4723],[117.3838,-8.4712],[117.3816,-8.4652],[117.3762,-8.4636],[117.3686,-8.458],[117.3589,-8.4552],[117.3542,-8.4557],[117.3439,-8.4514],[117.3309,-8.4414],[117.3156,-8.4396],[117.3083,-8.4351],[117.3052,-8.4315],[117.3,-8.4305],[117.2968,-8.4328],[117.2888,-8.4262],[117.283,-8.426],[117.2798,-8.4231],[117.2668,-8.4187],[117.2621,-8.4163],[117.2535,-8.4173],[117.2446,-8.411],[117.2388,-8.4019],[117.2351,-8.3991],[117.2269,-8.3982],[117.2154,-8.4059],[117.2142,-8.408],[117.2019,-8.4063],[117.2003,-8.4035],[117.1902,-8.3954],[117.1833,-8.3848],[117.1746,-8.3806],[117.1756,-8.3764],[117.1655,-8.3689],[117.1551,-8.3643],[117.152,-8.3669],[117.1514,-8.3734],[117.147,-8.3767],[117.1383,-8.3773],[117.1295,-8.3709],[117.1223,-8.3697],[117.1124,-8.3704],[117.1055,-8.3728],[117.1109,-8.3778],[117.1039,-8.3821],[117.1034,-8.389],[117.0954,-8.3955],[117.0883,-8.3977],[117.0917,-8.4064],[117.0964,-8.4079],[117.098,-8.4141],[117.095,-8.4169],[117.0912,-8.414],[117.0852,-8.4148],[117.0844,-8.4185],[117.0756,-8.4209],[117.0704,-8.4203],[117.0669,-8.4239],[117.0667,-8.4352],[117.0605,-8.4356],[117.0558,-8.4385],[117.0517,-8.4435],[117.0465,-8.4433],[117.0417,-8.4454],[117.033,-8.4542],[117.0264,-8.4558],[117.0236,-8.4638],[117.0165,-8.4638],[117.0158,-8.4698],[117.0183,-8.4802],[117.0115,-8.4833],[117.0094,-8.4863],[117.0115,-8.4942],[117.0095,-8.4989],[117.0021,-8.5064],[116.9965,-8.5003],[116.9957,-8.496],[116.991,-8.4914],[116.9943,-8.4886],[116.9896,-8.4853],[116.9868,-8.4794],[116.9836,-8.4858],[116.9831,-8.4921],[116.9749,-8.495],[116.9691,-8.4923],[116.9627,-8.4934],[116.9564,-8.4979],[116.9564,-8.5069],[116.9534,-8.5111],[116.9447,-8.517],[116.9339,-8.5132],[116.9294,-8.5129],[116.9256,-8.5213],[116.9158,-8.5266],[116.9049,-8.5275],[116.8984,-8.5266],[116.89,-8.5271],[116.8882,-8.5268]],[[116.8882,-8.5268],[116.8835,-8.5259]],[[117.0404,-9.1009],[117.046,-9.0997],[117.0497,-9.1022],[117.0571,-9.1042],[117.0653,-9.098],[117.0726,-9.0983],[117.0817,-9.0939],[117.0883,-9.0941],[117.0996,-9.0896],[117.1148,-9.0904],[117.1272,-9.0851],[117.135,-9.084],[117.1365,-9.0798],[117.1341,-9.0755],[117.1349,-9.0699],[117.1495,-9.0621],[117.1518,-9.0545],[117.1603,-9.0513],[117.1673,-9.0422],[117.168,-9.0379],[117.1712,-9.0344],[117.1769,-9.0243],[117.1858,-9.0213],[117.1936,-9.02],[117.209,-9.0191],[117.2191,-9.0198],[117.235,-9.0244],[117.2436,-9.0279],[117.268,-9.039],[117.27,-9.0408],[117.2801,-9.0419],[117.2876,-9.0455],[117.2936,-9.0467],[117.3051,-9.0423],[117.3203,-9.0509],[117.3239,-9.0555],[117.329,-9.0552],[117.3368,-9.0485],[117.3482,-9.0422],[117.3566,-9.0482],[117.3596,-9.0557],[117.3666,-9.0541],[117.3672,-9.0521],[117.375,-9.0481],[117.377,-9.05],[117.3905,-9.0524],[117.3998,-9.0484],[117.4094,-9.0495],[117.4158,-9.0431],[117.4252,-9.0405],[117.4333,-9.0354],[117.4441,-9.0334],[117.4589,-9.0245],[117.4638,-9.0233],[117.4794,-9.0222],[117.4842,-9.0194],[117.4917,-9.0182],[117.4997,-9.0191],[117.5139,-9.0129],[117.5201,-9.0083],[117.5262,-9.007],[117.5294,-9.001],[117.5361,-8.9978],[117.5424,-8.9985],[117.5476,-9.0031],[117.5541,-8.9949],[117.5599,-8.996],[117.5672,-8.9928],[117.5729,-8.9849],[117.5757,-8.9866],[117.5846,-8.9824],[117.5941,-8.9814],[117.5965,-8.9755],[117.6035,-8.9707],[117.6058,-8.9661],[117.6151,-8.9612],[117.6206,-8.9608],[117.6321,-8.9543],[117.6393,-8.9513],[117.643,-8.9438],[117.6651,-8.9389],[117.6687,-8.937],[117.675,-8.9304],[117.6765,-8.9246],[117.6905,-8.9188],[117.698,-8.9201],[117.7246,-8.9184],[117.7338,-8.9161],[117.7397,-8.9195],[117.7414,-8.9234],[117.7533,-8.9316],[117.7655,-8.9342],[117.7749,-8.9317],[117.7845,-8.9222],[117.7914,-8.9133],[117.7957,-8.906],[117.8004,-8.9048],[117.8095,-8.8988],[117.8171,-8.899],[117.8256,-8.9071],[117.8294,-8.9164],[117.833,-8.9183],[117.8363,-8.9297],[117.8395,-8.9324],[117.8449,-8.9325],[117.8496,-8.9287],[117.8545,-8.9272],[117.8597,-8.9349],[117.8625,-8.9367],[117.8671,-8.9352],[117.8711,-8.9369],[117.873,-8.9418],[117.8857,-8.9434],[117.8886,-8.9406],[117.8938,-8.932],[117.8959,-8.9224],[117.9026,-8.9198],[117.9188,-8.9184],[117.9233,-8.9165],[117.9248,-8.9105],[117.932,-8.9012],[117.9352,-8.8991],[117.9436,-8.9002],[117.9497,-8.9069],[117.9544,-8.906],[117.9578,-8.9013],[117.9622,-8.899],[117.9659,-8.9012],[117.9749,-8.8963],[117.9825,-8.8934],[117.9893,-8.8738],[118.0005,-8.8634],[118.003,-8.8579],[118.0083,-8.854],[118.0162,-8.8529],[118.021,-8.8564],[118.0278,-8.8521],[118.0298,-8.8554],[118.036,-8.8555],[118.0374,-8.8578],[118.0444,-8.8558],[118.0584,-8.8463],[118.0703,-8.8412],[118.0803,-8.8406],[118.0904,-8.8478],[118.094,-8.8536],[118.0925,-8.8584],[118.0958,-8.8624],[118.1092,-8.8718],[118.119,-8.8768],[118.127,-8.8779],[118.1376,-8.8721],[118.1416,-8.8671],[118.1506,-8.8649],[118.1588,-8.8588],[118.1733,-8.8584],[118.185,-8.8541],[118.1881,-8.8464],[118.1929,-8.8445],[118.2078,-8.8347],[118.211,-8.8293],[118.2106,-8.8259],[118.2134,-8.8203],[118.2196,-8.8144],[118.2215,-8.8068],[118.2276,-8.8051],[118.2343,-8.8008],[118.2445,-8.7958],[118.2543,-8.7856],[118.2584,-8.7755],[118.2631,-8.7727],[118.2757,-8.7698],[118.284,-8.7689],[118.286,-8.7601],[118.2853,-8.7551],[118.2825,-8.7513],[118.2873,-8.7404],[118.3036,-8.7324],[118.3168,-8.7284],[118.3218,-8.7318],[118.3264,-8.7295],[118.333,-8.7129]],[[117.56,-8.1442],[117.5535,-8.1452],[117.5411,-8.152],[117.5377,-8.1549],[117.5296,-8.155],[117.5165,-8.1609],[117.5006,-8.1739],[117.494,-8.1785],[117.4885,-8.1804],[117.4822,-8.1861],[117.4801,-8.1923],[117.4793,-8.2081],[117.4817,-8.216],[117.4855,-8.2203],[117.488,-8.2281],[117.4845,-8.2418],[117.4789,-8.2574],[117.4849,-8.2612],[117.488,-8.2599],[117.497,-8.2617],[117.4992,-8.2651],[117.507,-8.268],[117.5079,-8.277],[117.5042,-8.2865],[117.4995,-8.3027],[117.4931,-8.3168],[117.4864,-8.3248],[117.4771,-8.3313],[117.4707,-8.3569],[117.4821,-8.3619],[117.485,-8.3652],[117.4992,-8.3713],[117.5017,-8.3743],[117.5161,-8.3845],[117.5281,-8.3896],[117.5291,-8.3856],[117.5344,-8.3799],[117.5478,-8.3695],[117.5511,-8.3596],[117.5578,-8.3525],[117.5703,-8.3353],[117.5746,-8.3243],[117.5725,-8.3206],[117.5745,-8.3136],[117.5786,-8.3104],[117.5818,-8.3014],[117.5859,-8.2823],[117.59,-8.2773],[117.6043,-8.2684],[117.6071,-8.2644],[117.6083,-8.2565],[117.6059,-8.2525],[117.6087,-8.2476],[117.6099,-8.2386],[117.6146,-8.2329],[117.6278,-8.2228],[117.6318,-8.2217],[117.6391,-8.216],[117.6466,-8.2131],[117.6599,-8.1983],[117.6726,-8.1942],[117.68,-8.1908],[117.6861,-8.1859],[117.6899,-8.1782],[117.6836,-8.166],[117.6746,-8.1588],[117.672,-8.1554],[117.6651,-8.1509],[117.6565,-8.1486],[117.6489,-8.1529],[117.6315,-8.1527],[117.6249,-8.1543],[117.6064,-8.1548],[117.597,-8.1528],[117.5859,-8.1521],[117.5723,-8.1488],[117.56,-8.1442]],[[117.4065,-8.1292],[117.4035,-8.1285],[117.3846,-8.1317],[117.3814,-8.1342],[117.3804,-8.1406],[117.3756,-8.147],[117.3587,-8.146],[117.3498,-8.1493],[117.3511,-8.1544],[117.3572,-8.1564],[117.36,-8.1594],[117.3651,-8.1605],[117.3775,-8.1604],[117.3792,-8.1558],[117.3784,-8.1511],[117.3944,-8.1459],[117.4077,-8.1399],[117.4145,-8.1383],[117.418,-8.1356],[117.4141,-8.1309],[117.4065,-8.1292]]]}},{"type":"Feature","properties":{"mhid":"1332:295","alt_name":"KABUPATEN DOMPU","latitude":-8.5094,"longitude":118.4816,"sample_value":613},"geometry":{"type":"MultiLineString","coordinates":[[[118.2199,-8.6468],[118.2197,-8.6523],[118.2247,-8.653],[118.2257,-8.6489],[118.2199,-8.6468]],[[118.2065,-8.6425],[118.2029,-8.6375],[118.199,-8.642],[118.1964,-8.6496],[118.2036,-8.6498],[118.2093,-8.6541],[118.2125,-8.6518],[118.2065,-8.6425]],[[117.7655,-8.1435],[117.7561,-8.1459],[117.7457,-8.1509],[117.7421,-8.1551],[117.7347,-8.1535],[117.7315,-8.1472],[117.7243,-8.1504],[117.7271,-8.1583],[117.7205,-8.1617],[117.7204,-8.1735],[117.7126,-8.1824],[117.713,-8.1909],[117.7097,-8.1981],[117.7102,-8.203],[117.7065,-8.2108],[117.7106,-8.2183],[117.7056,-8.2236],[117.6991,-8.2267],[117.6974,-8.2324],[117.6917,-8.2383],[117.6995,-8.2431],[117.7085,-8.242],[117.7118,-8.2429],[117.713,-8.248],[117.7173,-8.2477],[117.727,-8.254],[117.7337,-8.2608],[117.7361,-8.271],[117.7423,-8.2795],[117.7521,-8.2847],[117.7579,-8.2856],[117.7628,-8.2891],[117.7682,-8.2964],[117.774,-8.3008],[117.7732,-8.3067],[117.7787,-8.3148],[117.7837,-8.3176],[117.7883,-8.325],[117.7967,-8.3304],[117.7976,-8.3331],[117.8061,-8.3402],[117.817,-8.3514],[117.8182,-8.3573],[117.8167,-8.3627],[117.8261,-8.3625],[117.8294,-8.3641],[117.8302,-8.3726],[117.842,-8.3709],[117.8464,-8.3718],[117.8556,-8.3781],[117.8576,-8.383],[117.8669,-8.3914],[117.8766,-8.3976],[117.8858,-8.4017],[117.892,-8.403],[117.8976,-8.4119],[117.9041,-8.4173],[117.9131,-8.4198],[117.9173,-8.4251],[117.9213,-8.4263],[117.932,-8.4327],[117.9403,-8.4338],[117.9484,-8.4366],[117.9613,-8.4444],[117.9683,-8.4471],[117.9684,-8.4524],[117.9725,-8.454],[117.9804,-8.4648],[117.9859,-8.4657],[118.0121,-8.4589],[118.019,-8.455],[118.0255,-8.4541],[118.034,-8.4549],[118.0394,-8.452],[118.0428,-8.4532],[118.0496,-8.4515],[118.0709,-8.4494],[118.0769,-8.4512],[118.0821,-8.4507],[118.0886,-8.4572],[118.0951,-8.4656],[118.0961,-8.4739],[118.1008,-8.48],[118.1015,-8.4889],[118.1056,-8.4954],[118.1132,-8.4962],[118.1172,-8.4938],[118.1199,-8.4839],[118.1261,-8.4851],[118.1334,-8.4943],[118.1351,-8.4997],[118.1391,-8.5053],[118.1387,-8.5086],[118.1425,-8.5137],[118.1468,-8.5163],[118.1503,-8.5154],[118.1658,-8.5255],[118.1716,-8.5269],[118.1801,-8.5325],[118.1846,-8.5404],[118.1844,-8.5469],[118.1881,-8.5559],[118.1873,-8.5635],[118.1957,-8.5714],[118.2025,-8.5707],[118.2031,-8.5623],[118.2062,-8.5597],[118.2067,-8.5544],[118.211,-8.5516],[118.216,-8.5524],[118.2204,-8.5556],[118.2227,-8.5528],[118.2308,-8.5518],[118.2341,-8.556],[118.246,-8.5636],[118.2501,-8.5696],[118.2508,-8.5872],[118.2634,-8.5854],[118.2666,-8.5878],[118.2713,-8.5865],[118.2793,-8.5944],[118.2779,-8.597],[118.2805,-8.6042],[118.2841,-8.6092],[118.2881,-8.6235],[118.2856,-8.6334],[118.2796,-8.6432],[118.2754,-8.6445],[118.2717,-8.6382],[118.2675,-8.6428],[118.2741,-8.6527],[118.2704,-8.6575],[118.2647,-8.6594],[118.2591,-8.6528],[118.2539,-8.6547],[118.2554,-8.6606],[118.2485,-8.6665],[118.2454,-8.6631],[118.2479,-8.6593],[118.2446,-8.6516],[118.2375,-8.6538],[118.2361,-8.6579],[118.2271,-8.6558],[118.2302,-8.6605],[118.2272,-8.666],[118.2202,-8.665],[118.2155,-8.6662],[118.2112,-8.6714],[118.2078,-8.6698],[118.2043,-8.6728],[118.1816,-8.6668],[118.1758,-8.6548]],[[118.333,-8.7129],[118.3362,-8.7103],[118.3365,-8.7018],[118.346,-8.6989],[118.3498,-8.6896],[118.3538,-8.6845],[118.3587,-8.6832],[118.371,-8.6886],[118.3714,-8.6912],[118.3767,-8.6946],[118.3851,-8.6832],[118.3939,-8.6826],[118.3956,-8.6783],[118.4007,-8.6784],[118.406,-8.6723],[118.4052,-8.6643],[118.3991,-8.6629],[118.3932,-8.6633],[118.3893,-8.6604],[118.3855,-8.6513],[118.391,-8.6458],[118.3884,-8.6384],[118.3806,-8.626],[118.3816,-8.6169],[118.3871,-8.609],[118.3902,-8.6073],[118.3956,-8.6081],[118.3958,-8.6143],[118.3984,-8.6209],[118.4038,-8.621],[118.4138,-8.6251],[118.4202,-8.6234],[118.4223,-8.6259],[118.421,-8.6305],[118.4245,-8.6469],[118.4264,-8.6497],[118.4192,-8.6573],[118.4257,-8.6615],[118.4324,-8.6722],[118.431,-8.6798],[118.4206,-8.6853],[118.4183,-8.6923],[118.4273,-8.7101],[118.4294,-8.716],[118.4285,-8.7214],[118.4193,-8.7285],[118.4113,-8.743],[118.407,-8.7593],[118.4021,-8.761],[118.3929,-8.7669],[118.3866,-8.7638],[118.382,-8.7687],[118.3758,-8.7728],[118.3717,-8.7797],[118.3775,-8.7831],[118.3799,-8.7872],[118.3791,-8.7967],[118.3821,-8.8025],[118.3798,-8.8098],[118.3801,-8.83],[118.3875,-8.8423],[118.3973,-8.8551],[118.4123,-8.868],[118.418,-8.8717],[118.4236,-8.8721],[118.4308,-8.8774],[118.4506,-8.8848],[118.4606,-8.8825],[118.4638,-8.8796],[118.4684,-8.8818],[118.468,-8.8861],[118.4783,-8.8848]],[[118.4439,-8.2687],[118.4428,-8.2743],[118.4395,-8.2783],[118.4342,-8.2769],[118.4324,-8.28],[118.4233,-8.2866],[118.4136,-8.2895],[118.4118,-8.2947],[118.4069,-8.298],[118.3929,-8.3018],[118.3881,-8.3046],[118.3872,-8.3128],[118.3896,-8.3178],[118.3881,-8.3232],[118.3892,-8.3272],[118.3861,-8.3316],[118.3803,-8.3345],[118.373,-8.3347],[118.3659,-8.3368],[118.3607,-8.3403],[118.3582,-8.3491],[118.356,-8.3523],[118.3494,-8.3455],[118.3453,-8.3438],[118.3379,-8.3454],[118.3357,-8.3477],[118.3334,-8.3664],[118.3251,-8.3652],[118.3174,-8.3703]],[[117.7477,-8.0984],[117.7373,-8.0998],[117.735,-8.1077],[117.7376,-8.1139],[117.7419,-8.1172],[117.7467,-8.1181],[117.7518,-8.1213],[117.7584,-8.1158],[117.76,-8.1088],[117.7497,-8.0986],[117.7477,-8.0984]]]}},{"type":"Feature","properties":{"mhid":"1332:296","alt_name":"KABUPATEN BIMA","latitude":-8.6,"longitude":118.61667,"sample_value":774},"geometry":{"type":"MultiLineString","coordinates":[[[119.2275,-8.6538],[119.2227,-8.655],[119.2172,-8.6644],[119.2162,-8.6706],[119.2084,-8.6737],[119.2152,-8.6771],[119.2142,-8.6824],[119.2214,-8.6834],[119.225,-8.6763],[119.233,-8.6734],[119.2343,-8.6689],[119.2385,-8.6692],[119.2389,-8.6634],[119.2351,-8.6635],[119.2275,-8.6538]],[[119.1866,-8.566],[119.1874,-8.5711],[119.1906,-8.5739],[119.19,-8.5835],[119.1975,-8.5842],[119.1978,-8.5712],[119.1876,-8.568],[119.1866,-8.566]],[[119.045,-8.5568],[119.0395,-8.5637],[119.0441,-8.5688],[119.0426,-8.571],[119.0427,-8.5798],[119.0529,-8.5762],[119.0556,-8.5725],[119.056,-8.5668],[119.0536,-8.5621],[119.045,-8.5568]],[[119.2749,-8.3967],[119.2695,-8.3978],[119.2687,-8.4112],[119.2699,-8.4177],[119.266,-8.4237],[119.2691,-8.4269],[119.2701,-8.4325],[119.2739,-8.4363],[119.2678,-8.4447],[119.2743,-8.4543],[119.2787,-8.448],[119.281,-8.4488],[119.2797,-8.4592],[119.2776,-8.4631],[119.2899,-8.4627],[119.2933,-8.4588],[119.2954,-8.4531],[119.2954,-8.4438],[119.3007,-8.4413],[119.3024,-8.4294],[119.307,-8.433],[119.3091,-8.4447],[119.3163,-8.4473],[119.3198,-8.4456],[119.3182,-8.4414],[119.3204,-8.4386],[119.3171,-8.434],[119.321,-8.4319],[119.3211,-8.4282],[119.3258,-8.4251],[119.3281,-8.4203],[119.3279,-8.4148],[119.3211,-8.412],[119.3136,-8.4073],[119.2964,-8.4167],[119.2828,-8.4192],[119.2768,-8.4152],[119.2746,-8.4056],[119.2763,-8.4022],[119.2749,-8.3967]],[[118.7136,-8.4966],[118.707,-8.5046],[118.707,-8.5071],[118.6947,-8.5121],[118.6953,-8.5165],[118.6877,-8.5186],[118.6782,-8.5159],[118.6751,-8.519],[118.679,-8.5217],[118.673,-8.5396],[118.6609,-8.542],[118.6529,-8.5509],[118.6509,-8.5461],[118.6554,-8.5425],[118.6606,-8.5315],[118.6677,-8.5268],[118.671,-8.5188],[118.6603,-8.511],[118.6638,-8.5022],[118.664,-8.4971],[118.6669,-8.495],[118.6649,-8.4864],[118.6711,-8.4798],[118.6781,-8.4757],[118.6798,-8.4685],[118.6858,-8.4599],[118.6869,-8.4481],[118.6893,-8.4451],[118.6871,-8.4407],[118.6902,-8.4378],[118.692,-8.4305],[118.6891,-8.4274],[118.6905,-8.4239],[118.6859,-8.418],[118.6917,-8.4042],[118.69,-8.4014],[118.6933,-8.3936],[118.6891,-8.3911],[118.6917,-8.3832],[118.6957,-8.377],[118.6916,-8.3724],[118.6906,-8.358],[118.6879,-8.3546],[118.6858,-8.3449],[118.6796,-8.3386],[118.6781,-8.3325],[118.6683,-8.3246],[118.6694,-8.3181],[118.6624,-8.3147],[118.6596,-8.3112],[118.6588,-8.3026],[118.649,-8.2964],[118.6497,-8.2931],[118.6458,-8.2895],[118.6386,-8.2881],[118.6324,-8.2921],[118.6224,-8.2884],[118.6055,-8.2746],[118.6021,-8.2762],[118.5968,-8.2738],[118.5919,-8.2751],[118.5853,-8.2668],[118.577,-8.2709],[118.5695,-8.27],[118.5651,-8.2652],[118.5564,-8.2632],[118.5415,-8.2649],[118.5359,-8.2632],[118.5319,-8.2649],[118.5207,-8.2604],[118.513,-8.2606],[118.5066,-8.2558],[118.5027,-8.25],[118.4939,-8.2432],[118.4865,-8.2498],[118.4804,-8.2511],[118.4757,-8.2499],[118.4697,-8.2458],[118.4633,-8.2464],[118.4588,-8.2556],[118.4534,-8.2563],[118.4508,-8.2613],[118.4472,-8.2631],[118.4439,-8.2687]],[[118.4783,-8.8848],[118.4845,-8.8854],[118.4938,-8.8832],[118.4944,-8.8796],[118.4987,-8.8785],[118.5066,-8.8821],[118.5079,-8.877],[118.5126,-8.8758],[118.519,-8.8773],[118.5228,-8.8711],[118.5349,-8.862],[118.5527,-8.8535],[118.558,-8.8477],[118.5659,-8.8467],[118.5724,-8.8494],[118.5756,-8.8457],[118.582,-8.8447],[118.5865,-8.8415],[118.6051,-8.8381],[118.6102,-8.8332],[118.6101,-8.8301],[118.616,-8.8273],[118.6268,-8.8249],[118.6253,-8.8204],[118.6371,-8.8139],[118.642,-8.8131],[118.649,-8.8144],[118.6551,-8.8121],[118.656,-8.8097],[118.6622,-8.8068],[118.6733,-8.8059],[118.6823,-8.8095],[118.6885,-8.8055],[118.7021,-8.8059],[118.7075,-8.7979],[118.718,-8.7979],[118.7196,-8.793],[118.7252,-8.7971],[118.7328,-8.7961],[118.7382,-8.802],[118.7472,-8.8019],[118.7467,-8.7974],[118.7497,-8.7955],[118.7581,-8.797],[118.7621,-8.8041],[118.7726,-8.8081],[118.7785,-8.8126],[118.7838,-8.8203],[118.7908,-8.8225],[118.796,-8.8223],[118.8017,-8.8193],[118.8092,-8.8228],[118.8173,-8.8317],[118.816,-8.835],[118.82,-8.8378],[118.8247,-8.8373],[118.8328,-8.8397],[118.8347,-8.8439],[118.844,-8.8429],[118.8426,-8.8373],[118.8448,-8.8349],[118.8537,-8.8335],[118.8631,-8.8383],[118.8649,-8.8427],[118.8815,-8.8408],[118.8958,-8.8375],[118.904,-8.8432],[118.9099,-8.8407],[118.9179,-8.8406],[118.9375,-8.8318],[118.9451,-8.8296],[118.9454,-8.8267],[118.9525,-8.8198],[118.9571,-8.8175],[118.9504,-8.8115],[118.946,-8.8016],[118.9494,-8.7895],[118.9439,-8.7885],[118.9381,-8.795],[118.936,-8.7884],[118.9241,-8.7884],[118.9204,-8.7862],[118.9178,-8.7806],[118.9115,-8.7719],[118.9094,-8.7653],[118.9063,-8.766],[118.8982,-8.7628],[118.8885,-8.7615],[118.8769,-8.7642],[118.8693,-8.7629],[118.861,-8.7638],[118.8587,-8.7675],[118.8462,-8.7704],[118.8386,-8.7687],[118.8349,-8.7714],[118.8278,-8.7665],[118.818,-8.766],[118.8108,-8.763],[118.8039,-8.7652],[118.7981,-8.7652],[118.7897,-8.7634],[118.7741,-8.763],[118.7659,-8.7643],[118.7604,-8.7682],[118.7394,-8.7647],[118.7356,-8.7681],[118.7286,-8.7775],[118.7261,-8.777],[118.7247,-8.7655],[118.726,-8.7589],[118.719,-8.7546],[118.7077,-8.7542],[118.6963,-8.7523],[118.6925,-8.7465],[118.6961,-8.7437],[118.6985,-8.7387],[118.712,-8.7412],[118.7191,-8.738],[118.7214,-8.7309],[118.7269,-8.7274],[118.7313,-8.7289],[118.7314,-8.7233],[118.7378,-8.7161],[118.7437,-8.7122],[118.7483,-8.7014],[118.757,-8.6945],[118.7644,-8.6931],[118.7654,-8.699],[118.7703,-8.7015],[118.7728,-8.7091],[118.7752,-8.7098],[118.7826,-8.7035],[118.7899,-8.7074],[118.799,-8.7083],[118.8032,-8.705],[118.8148,-8.7032],[118.8196,-8.7119],[118.8316,-8.7132],[118.8382,-8.7152],[118.85,-8.7284],[118.8516,-8.7248],[118.8587,-8.7209],[118.8648,-8.7229],[118.8699,-8.7217],[118.8824,-8.708],[118.8807,-8.7043],[118.8752,-8.7005],[118.8767,-8.6943],[118.881,-8.6893],[118.8888,-8.6867],[118.8924,-8.6839],[118.9033,-8.6804],[118.9075,-8.6803],[118.9122,-8.6829],[118.9288,-8.6948],[118.9301,-8.6995],[118.9379,-8.7048],[118.9429,-8.7107],[118.9462,-8.7173],[118.9541,-8.7216],[118.9575,-8.7289],[118.9623,-8.7339],[118.9656,-8.7435],[118.9721,-8.7487],[118.9757,-8.7457],[118.9986,-8.7401],[119.0087,-8.7409],[119.0178,-8.7428],[119.0255,-8.736],[119.0296,-8.7364],[119.0363,-8.7329],[119.0443,-8.7363],[119.0467,-8.7351],[119.0596,-8.7383],[119.0618,-8.7417],[119.0736,-8.7439],[119.0764,-8.7417],[119.083,-8.7428],[119.0912,-8.7486],[119.099,-8.7517],[119.1031,-8.7487],[119.1029,-8.738],[119.0983,-8.7317],[119.1052,-8.7262],[119.1128,-8.7301],[119.1166,-8.7374],[119.1172,-8.745],[119.1211,-8.7433],[119.128,-8.752],[119.1347,-8.752],[119.1364,-8.7464],[119.1394,-8.7442],[119.1337,-8.7377],[119.139,-8.7361],[119.1413,-8.7324],[119.1474,-8.7289],[119.1518,-8.7286],[119.1596,-8.7252],[119.1619,-8.7264],[119.1692,-8.7193],[119.1599,-8.7174],[119.1543,-8.7129],[119.1485,-8.712],[119.1511,-8.7067],[119.1577,-8.7038],[119.1704,-8.7039],[119.1674,-8.6978],[119.1725,-8.6938],[119.1662,-8.6864],[119.1615,-8.6838],[119.1606,-8.6784],[119.1575,-8.6723],[119.1565,-8.6579],[119.1607,-8.6526],[119.1683,-8.65],[119.1676,-8.6465],[119.1576,-8.6477],[119.1613,-8.6378],[119.1719,-8.6343],[119.1745,-8.6283],[119.1825,-8.6327],[119.1813,-8.6222],[119.1772,-8.6197],[119.1782,-8.6165],[119.1733,-8.6148],[119.1724,-8.6115],[119.1806,-8.608],[119.1847,-8.6043],[119.1798,-8.5989],[119.1798,-8.5946],[119.1845,-8.5882],[119.1829,-8.5853],[119.1771,-8.5867],[119.1647,-8.5821],[119.1623,-8.5799],[119.172,-8.5694],[119.1722,-8.5643],[119.164,-8.5582],[119.1612,-8.5632],[119.1536,-8.5677],[119.151,-8.5657],[119.1468,-8.5693],[119.1477,-8.5731],[119.1472,-8.5851],[119.1525,-8.5885],[119.1505,-8.5929],[119.1463,-8.5894],[119.1345,-8.5954],[119.1341,-8.6016],[119.1308,-8.6034],[119.1224,-8.598],[119.1178,-8.5991],[119.1157,-8.5945],[119.1088,-8.5971],[119.1082,-8.6037],[119.1137,-8.6109],[119.1135,-8.6135],[119.1199,-8.6165],[119.1276,-8.622],[119.1304,-8.6263],[119.129,-8.6302],[119.1246,-8.629],[119.1111,-8.6356],[119.1021,-8.6359],[119.0951,-8.6405],[119.0861,-8.6445],[119.0799,-8.6508],[119.0744,-8.6515],[119.0665,-8.6505],[119.0545,-8.6525],[119.0478,-8.6494],[119.0358,-8.6418],[119.032,-8.6342],[119.0331,-8.6241],[119.0319,-8.6195],[119.0371,-8.6141],[119.037,-8.6111],[119.0332,-8.6053],[119.0363,-8.6007],[119.0367,-8.5956],[119.0311,-8.5961],[119.0291,-8.5939],[119.0299,-8.5876],[119.0248,-8.5827],[119.0248,-8.5784],[119.0151,-8.5754],[119.0141,-8.571],[119.0175,-8.5622],[119.0134,-8.5592],[119.0176,-8.5551],[119.0238,-8.5573],[119.0255,-8.5507],[119.0147,-8.547],[119.0178,-8.5447],[119.013,-8.5378],[119.0151,-8.5308],[119.0237,-8.5232],[119.0324,-8.5277],[119.0368,-8.5265],[119.0529,-8.5109],[119.0502,-8.5061],[119.0396,-8.504],[119.0414,-8.5],[119.0468,-8.4983],[119.046,-8.4936],[119.0488,-8.485],[119.0474,-8.4773],[119.0434,-8.4743],[119.0395,-8.475],[119.0351,-8.4679],[119.0364,-8.4647],[119.0481,-8.4626],[119.0467,-8.4597],[119.052,-8.4539],[119.0492,-8.4514],[119.0445,-8.4553],[119.0407,-8.4542],[119.0389,-8.4493],[119.0418,-8.4409],[119.0314,-8.4414],[119.0266,-8.4394],[119.0294,-8.4322],[119.0282,-8.4271],[119.0214,-8.4203],[119.0184,-8.4125],[119.0122,-8.4041],[119.0123,-8.401],[119.0082,-8.3963],[119.0043,-8.3949],[118.9994,-8.3896],[118.9921,-8.3765],[118.991,-8.3706],[118.9931,-8.3575],[118.9927,-8.3516],[118.9901,-8.3486],[118.9896,-8.3419],[118.9978,-8.3223],[119.0038,-8.3152],[119.0005,-8.3103],[118.9823,-8.3029],[118.9717,-8.3053],[118.9671,-8.3047],[118.9441,-8.294],[118.9297,-8.2955],[118.9247,-8.2942],[118.9202,-8.29],[118.9092,-8.2899],[118.8977,-8.2877],[118.8896,-8.2845],[118.8769,-8.2864],[118.8692,-8.2896],[118.8588,-8.2895],[118.8554,-8.2869],[118.8477,-8.2864],[118.8345,-8.2815],[118.8161,-8.2808],[118.8068,-8.2862],[118.8002,-8.2872],[118.7957,-8.2936],[118.7916,-8.2945],[118.7872,-8.3015],[118.7762,-8.3046],[118.7707,-8.3086],[118.7649,-8.3102],[118.7647,-8.3141],[118.7555,-8.3235],[118.7535,-8.3307],[118.7476,-8.3333],[118.7474,-8.3364],[118.7391,-8.3373],[118.7369,-8.3406],[118.7327,-8.3403],[118.7274,-8.3462],[118.729,-8.3491]],[[119.0679,-8.1309],[119.0604,-8.1277],[119.0541,-8.1272],[119.0476,-8.1293],[119.0405,-8.135],[119.0345,-8.138],[119.031,-8.1427],[119.0207,-8.1506],[119.0125,-8.1539],[119.0105,-8.1615],[119.005,-8.1722],[119.0009,-8.1774],[118.9996,-8.1835],[119.0021,-8.1879],[118.9985,-8.2026],[119.0015,-8.2095],[118.9988,-8.2161],[118.9999,-8.2287],[119.0033,-8.2351],[119.0126,-8.2473],[119.0168,-8.2471],[119.0257,-8.2519],[119.0295,-8.2555],[119.0393,-8.2602],[119.0506,-8.2618],[119.0596,-8.2598],[119.0661,-8.2564],[119.0832,-8.2543],[119.0884,-8.2492],[119.0957,-8.2375],[119.1028,-8.2308],[119.11,-8.2277],[119.115,-8.2233],[119.1185,-8.2155],[119.1202,-8.2047],[119.1226,-8.2011],[119.1236,-8.1895],[119.1208,-8.1799],[119.1178,-8.1747],[119.1156,-8.1639],[119.1128,-8.1565],[119.1082,-8.1541],[119.1035,-8.1467],[119.1,-8.1443],[119.091,-8.1339],[119.0797,-8.1299],[119.0719,-8.1318],[119.0679,-8.1309]],[[118.3174,-8.3703],[118.3108,-8.3703],[118.2958,-8.3671],[118.2908,-8.3678],[118.2851,-8.3598],[118.2799,-8.3647],[118.2714,-8.3583],[118.2769,-8.3419],[118.2754,-8.3348],[118.263,-8.3361],[118.2588,-8.3496],[118.2492,-8.3443],[118.2462,-8.3393],[118.2335,-8.3323],[118.2297,-8.3272],[118.2297,-8.3226],[118.2237,-8.3142],[118.2238,-8.3036],[118.2226,-8.2954],[118.2199,-8.2918],[118.218,-8.2851],[118.2131,-8.2789],[118.2076,-8.2746],[118.1919,-8.2697],[118.1887,-8.2672],[118.1851,-8.2687],[118.1806,-8.261],[118.181,-8.2571],[118.1753,-8.252],[118.1686,-8.2484],[118.1625,-8.2417],[118.1583,-8.2187],[118.1607,-8.2126],[118.1587,-8.2082],[118.1548,-8.2072],[118.1479,-8.2018],[118.1453,-8.1902],[118.1456,-8.1846],[118.149,-8.1758],[118.1456,-8.1631],[118.1454,-8.1488],[118.1467,-8.1409],[118.1451,-8.1367],[118.1402,-8.1329],[118.1281,-8.1278],[118.1218,-8.1271],[118.1118,-8.1232],[118.1019,-8.1154],[118.0913,-8.1118],[118.0807,-8.1003],[118.0765,-8.0999],[118.0594,-8.1075],[118.0442,-8.1077],[118.0309,-8.103],[118.0227,-8.0978],[118.011,-8.0956],[118.0073,-8.0939],[117.9928,-8.0994],[117.9834,-8.1047],[117.9709,-8.1035],[117.962,-8.1071],[117.9521,-8.103],[117.9482,-8.0972],[117.9437,-8.0839],[117.9314,-8.0825],[117.9238,-8.0801],[117.9148,-8.0843],[117.9012,-8.0941],[117.8901,-8.094],[117.8811,-8.0994],[117.8719,-8.0997],[117.866,-8.1028],[117.8499,-8.1152],[117.8345,-8.1233],[117.8292,-8.1293],[117.8164,-8.1307],[117.8066,-8.126],[117.7869,-8.1238],[117.7795,-8.1265],[117.7733,-8.1316],[117.7673,-8.1423],[117.7655,-8.1435]]]}},{"type":"Feature","properties":{"mhid":"1332:297","alt_name":"KABUPATEN SUMBAWA BARAT","latitude":-8.75159,"longitude":116.92132,"sample_value":50},"geometry":{"type":"MultiLineString","coordinates":[[[116.7881,-8.5291],[116.7838,-8.5289],[116.7783,-8.5317],[116.7693,-8.5431],[116.7689,-8.5489],[116.7664,-8.5531],[116.7695,-8.5593],[116.7738,-8.5583],[116.7799,-8.5538],[116.7872,-8.5438],[116.7888,-8.538],[116.7881,-8.5291]],[[116.8835,-8.5259],[116.8785,-8.5259],[116.8712,-8.5289],[116.8547,-8.5393],[116.8485,-8.5365],[116.8428,-8.5386],[116.8335,-8.5306],[116.8309,-8.5237],[116.8327,-8.5206],[116.831,-8.5153],[116.8219,-8.5152],[116.8191,-8.5179],[116.8234,-8.5236],[116.8313,-8.5396],[116.8337,-8.5477],[116.8333,-8.5575],[116.8305,-8.5598],[116.8283,-8.5667],[116.8248,-8.5723],[116.8179,-8.5786],[116.8075,-8.5818],[116.8022,-8.5817],[116.7885,-8.5896],[116.7861,-8.5937],[116.7868,-8.6022],[116.7848,-8.6096],[116.7742,-8.6212],[116.7704,-8.6288],[116.7711,-8.6374],[116.7674,-8.6432],[116.764,-8.6537],[116.7532,-8.663],[116.7493,-8.6639],[116.7539,-8.6701],[116.7589,-8.6745],[116.7731,-8.6738],[116.7744,-8.6807],[116.7719,-8.6869],[116.7747,-8.6879],[116.7796,-8.7056],[116.7863,-8.7126],[116.7829,-8.7167],[116.7857,-8.7212],[116.7809,-8.7284],[116.7777,-8.7261],[116.7716,-8.7257],[116.7688,-8.729],[116.7655,-8.7368],[116.7677,-8.743],[116.771,-8.74],[116.7774,-8.7433],[116.7842,-8.753],[116.7806,-8.758],[116.7783,-8.7643],[116.7814,-8.7747],[116.7875,-8.7656],[116.7929,-8.7663],[116.8008,-8.7733],[116.8096,-8.7862],[116.8118,-8.7925],[116.8095,-8.8029],[116.8147,-8.8116],[116.8125,-8.8194],[116.8081,-8.8244],[116.803,-8.8261],[116.7988,-8.8222],[116.7909,-8.8204],[116.7886,-8.8175],[116.784,-8.8224],[116.7853,-8.8259],[116.7803,-8.8313],[116.7712,-8.8326],[116.7666,-8.8349],[116.7701,-8.8391],[116.7711,-8.8483],[116.7679,-8.8555],[116.7572,-8.8642],[116.7531,-8.8623],[116.7445,-8.8655],[116.735,-8.8664],[116.7342,-8.8713],[116.7399,-8.8733],[116.7368,-8.8791],[116.7452,-8.8869],[116.7518,-8.8897],[116.7521,-8.8944],[116.7495,-8.8995],[116.7462,-8.9002],[116.7425,-8.8961],[116.7348,-8.8916],[116.7296,-8.8948],[116.7327,-8.9012],[116.7311,-8.9058],[116.7264,-8.906],[116.725,-8.9102],[116.7344,-8.916],[116.7432,-8.9152],[116.7513,-8.9213],[116.7499,-8.9268],[116.7461,-8.928],[116.7412,-8.9334],[116.7367,-8.9339],[116.7347,-8.9384],[116.7381,-8.952],[116.737,-8.9553],[116.7266,-8.9581],[116.7241,-8.9613],[116.7269,-8.9649],[116.7206,-8.9679],[116.7156,-8.9658],[116.7164,-8.9729],[116.7198,-8.9756],[116.7249,-8.9703],[116.7311,-8.9715],[116.7369,-8.9789],[116.7376,-8.9861],[116.733,-8.9909],[116.7271,-8.9997],[116.7323,-9.0014],[116.7392,-8.9969],[116.7546,-9.0087],[116.7689,-9.0183],[116.7831,-9.0315],[116.7888,-9.0359],[116.7966,-9.0358],[116.802,-9.0324],[116.8096,-9.0331],[116.8158,-9.0377],[116.8244,-9.0402],[116.833,-9.0459],[116.838,-9.0455],[116.8393,-9.0408],[116.8507,-9.0447],[116.8555,-9.0492],[116.8637,-9.0528],[116.867,-9.0568],[116.8832,-9.0621],[116.884,-9.0599],[116.8934,-9.0625],[116.8981,-9.0649],[116.9109,-9.0611],[116.9184,-9.0577],[116.9221,-9.0522],[116.9285,-9.0541],[116.933,-9.0527],[116.9401,-9.0529],[116.9465,-9.0563],[116.9541,-9.0584],[116.956,-9.0628],[116.9622,-9.0674],[116.9704,-9.0795],[116.9795,-9.0827],[116.9875,-9.0892],[116.9898,-9.0852],[116.997,-9.0922],[117.0044,-9.0933],[117.0093,-9.1007],[117.0088,-9.1063],[117.0163,-9.1093],[117.0238,-9.1021],[117.025,-9.1056],[117.0316,-9.1059],[117.0389,-9.1046],[117.0404,-9.1009]],[[116.8781,-8.5357],[116.8883,-8.5267]],[[116.7914,-8.5116],[116.7878,-8.5133],[116.7887,-8.5185],[116.7942,-8.5164],[116.7914,-8.5116]],[[116.856,-8.5024],[116.8504,-8.5031],[116.8428,-8.5077],[116.8445,-8.5121],[116.8508,-8.5185],[116.8554,-8.513],[116.856,-8.5024]]]}},{"type":"Feature","properties":{"mhid":"1332:298","alt_name":"KABUPATEN LOMBOK UTARA","latitude":-8.35214,"longitude":116.40152,"sample_value":251},"geometry":{"type":"MultiLineString","coordinates":[[[116.0877,-8.3626],[116.0873,-8.3534],[116.0853,-8.3502],[116.0779,-8.3533],[116.0749,-8.3576],[116.0799,-8.3648],[116.0865,-8.3651],[116.0877,-8.3626]],[[116.0593,-8.3591],[116.0615,-8.3578],[116.0623,-8.3507],[116.0589,-8.3421],[116.0527,-8.343],[116.0517,-8.3498],[116.0541,-8.3579],[116.0593,-8.3591]],[[116.0357,-8.3617],[116.0407,-8.3601],[116.0445,-8.3526],[116.0409,-8.339],[116.0343,-8.3392],[116.0295,-8.3427],[116.0279,-8.3464],[116.0291,-8.3542],[116.0357,-8.3617]],[[116.494,-8.2455],[116.4863,-8.2413],[116.4799,-8.2355],[116.4757,-8.2359],[116.4641,-8.2302],[116.4602,-8.2271],[116.4451,-8.2285],[116.4401,-8.2276],[116.4302,-8.221],[116.422,-8.2215],[116.413,-8.2178],[116.4068,-8.2165],[116.4016,-8.2176],[116.3887,-8.2172],[116.3769,-8.214],[116.3704,-8.2104],[116.3586,-8.2138],[116.35,-8.2112],[116.3371,-8.215],[116.3315,-8.2185],[116.3268,-8.219],[116.319,-8.2224],[116.3075,-8.2297],[116.2994,-8.2316],[116.2934,-8.2397],[116.2862,-8.2382],[116.2813,-8.2394],[116.2696,-8.2448],[116.2535,-8.2546],[116.2432,-8.2641],[116.2369,-8.2664],[116.2229,-8.2789],[116.2206,-8.2847],[116.2138,-8.2891],[116.212,-8.2927],[116.2029,-8.3031],[116.1952,-8.3044],[116.1896,-8.3118],[116.1868,-8.3211],[116.1888,-8.3238],[116.1862,-8.3296],[116.1793,-8.3397],[116.1664,-8.3452],[116.1536,-8.3433],[116.1474,-8.3497],[116.1454,-8.3542],[116.1368,-8.3584],[116.1355,-8.3628],[116.13,-8.3655],[116.1256,-8.3625],[116.1213,-8.3639],[116.1198,-8.3703],[116.1142,-8.3676],[116.1103,-8.3625],[116.1022,-8.3608],[116.0996,-8.3624],[116.1038,-8.3734],[116.1066,-8.3835],[116.1044,-8.3907],[116.1016,-8.3937],[116.0813,-8.4019],[116.0794,-8.4059],[116.073,-8.4067],[116.0705,-8.4028],[116.0619,-8.4061],[116.0562,-8.4042],[116.0535,-8.4093],[116.0532,-8.4162],[116.0507,-8.4192],[116.0466,-8.4186],[116.0422,-8.4226],[116.0474,-8.4262],[116.0461,-8.4329],[116.0404,-8.4359],[116.0376,-8.4424],[116.0331,-8.4424],[116.032,-8.4469],[116.0366,-8.4565],[116.0359,-8.4648],[116.0374,-8.4702]]]}},{"type":"Feature","properties":{"mhid":"1332:299","alt_name":"KOTA MATARAM","latitude":-8.5833,"longitude":116.1167,"sample_value":29},"geometry":{"type":"MultiLineString","coordinates":[[[116.0694,-8.551],[116.0722,-8.5638],[116.0711,-8.5804],[116.073,-8.5944],[116.0745,-8.6144],[116.074,-8.6253]]]}},{"type":"Feature","properties":{"mhid":"1332:300","alt_name":"KOTA BIMA","latitude":-8.46728,"longitude":118.75259,"sample_value":26},"geometry":{"type":"MultiLineString","coordinates":[[[118.729,-8.3491],[118.7272,-8.351],[118.7293,-8.358],[118.7236,-8.3644],[118.7187,-8.3679],[118.712,-8.3822],[118.7015,-8.3903],[118.7055,-8.3962],[118.7108,-8.3975],[118.7083,-8.4027],[118.6983,-8.4114],[118.7025,-8.4165],[118.7122,-8.4213],[118.7122,-8.4296],[118.7168,-8.4282],[118.7208,-8.4301],[118.7248,-8.4361],[118.7228,-8.4414],[118.7187,-8.4417],[118.7183,-8.4528],[118.7115,-8.4536],[118.712,-8.4592],[118.7157,-8.4631],[118.7234,-8.4636],[118.7223,-8.4691],[118.7152,-8.4735],[118.7108,-8.4722],[118.7099,-8.481],[118.7136,-8.4966]]]}},{"type":"Feature","properties":{"mhid":"1332:301","alt_name":"KABUPATEN SUMBA BARAT","latitude":-9.56667,"longitude":119.45,"sample_value":892},"geometry":{"type":"MultiLineString","coordinates":[[[119.416,-9.3737],[119.4091,-9.3736],[119.4044,-9.3752],[119.3979,-9.3808],[119.3908,-9.3831]],[[119.1446,-9.73],[119.159,-9.7366],[119.1631,-9.7422],[119.1725,-9.7407],[119.1788,-9.7444],[119.1842,-9.7519],[119.1852,-9.7583],[119.1935,-9.7548],[119.1928,-9.7494],[119.1999,-9.7438],[119.2135,-9.7397],[119.2221,-9.7381],[119.2261,-9.7426],[119.2327,-9.7448],[119.2404,-9.7438],[119.2435,-9.7418],[119.2521,-9.747],[119.2588,-9.7459],[119.2761,-9.7446],[119.2835,-9.7454],[119.2868,-9.749],[119.2943,-9.7475],[119.3013,-9.7444],[119.3052,-9.7471],[119.3091,-9.7578],[119.3186,-9.7664],[119.3262,-9.7682],[119.3303,-9.7671],[119.3319,-9.7614],[119.336,-9.7583],[119.3473,-9.7589],[119.3516,-9.7606],[119.3574,-9.766],[119.3617,-9.7671],[119.3734,-9.7757],[119.3751,-9.7852],[119.3845,-9.7958],[119.3952,-9.7972],[119.4048,-9.7922],[119.4108,-9.7872],[119.409,-9.7805],[119.4112,-9.7695],[119.4183,-9.7604],[119.4239,-9.758],[119.4398,-9.7551],[119.4458,-9.7554],[119.4481,-9.7479],[119.4519,-9.7443],[119.4577,-9.7416],[119.4715,-9.7412],[119.482,-9.7446],[119.4898,-9.7518],[119.4968,-9.7544],[119.506,-9.7551],[119.5101,-9.7582],[119.5133,-9.7576],[119.5193,-9.7608],[119.5241,-9.7657],[119.5299,-9.7664],[119.5381,-9.7637],[119.543,-9.7527]]]}},{"type":"Feature","properties":{"mhid":"1332:302","alt_name":"KABUPATEN SUMBA TIMUR","latitude":-9.88333,"longitude":120.25,"sample_value":446},"geometry":{"type":"MultiLineString","coordinates":[[[120.1158,-10.3347],[120.1228,-10.3333],[120.1261,-10.3274],[120.12,-10.3258],[120.1096,-10.3295],[120.1102,-10.3345],[120.1158,-10.3347]],[[120.2126,-10.3046],[120.2099,-10.3038],[120.1939,-10.3094],[120.1804,-10.3124],[120.1712,-10.3167],[120.1749,-10.3209],[120.1836,-10.3236],[120.1905,-10.324],[120.2017,-10.3224],[120.2062,-10.3194],[120.2117,-10.3185],[120.2135,-10.3157],[120.2126,-10.3046]],[[119.6748,-9.8287],[119.6808,-9.8338],[119.6807,-9.8368],[119.6875,-9.8466],[119.6933,-9.8435],[119.6976,-9.8444],[119.6992,-9.85],[119.7032,-9.8565],[119.7077,-9.8566],[119.7077,-9.8629],[119.7139,-9.8651],[119.7218,-9.866],[119.7285,-9.8715],[119.7374,-9.8742],[119.7456,-9.8828],[119.7536,-9.8888],[119.7557,-9.8883],[119.7681,-9.8965],[119.7723,-9.9023],[119.7775,-9.9052],[119.7801,-9.9118],[119.778,-9.9138],[119.7844,-9.9219],[119.7948,-9.9192],[119.8004,-9.9189],[119.8018,-9.9152],[119.8117,-9.9156],[119.8139,-9.9198],[119.8197,-9.9226],[119.8248,-9.9199],[119.8292,-9.9266],[119.8355,-9.9281],[119.8422,-9.9271],[119.844,-9.9236],[119.8491,-9.9205],[119.857,-9.9206],[119.8629,-9.9223],[119.8715,-9.9298],[119.8739,-9.9349],[119.8722,-9.9419],[119.8691,-9.9431],[119.8719,-9.95],[119.8827,-9.9583],[119.8948,-9.9544],[119.8991,-9.9481],[119.905,-9.9502],[119.9054,-9.9606],[119.903,-9.9623],[119.9026,-9.9704],[119.9089,-9.9753],[119.9313,-9.9809],[119.9363,-9.9795],[119.9377,-9.9761],[119.9422,-9.9736],[119.9481,-9.9733],[119.9539,-9.9797],[119.9542,-9.9844],[119.9515,-9.9956],[119.9474,-9.9987],[119.9519,-10.0035],[119.9651,-10.0109],[119.9887,-10.0313],[119.9955,-10.0385],[119.9993,-10.0449],[119.9987,-10.0501],[120.0003,-10.055],[120.0084,-10.062],[120.0085,-10.0653],[120.0188,-10.0795],[120.0229,-10.0929],[120.0223,-10.0998],[120.0132,-10.1029],[120.0071,-10.1179],[120.0112,-10.1219],[120.0149,-10.1228],[120.0354,-10.1205],[120.0457,-10.1255],[120.0589,-10.1374],[120.0844,-10.168],[120.0844,-10.1761],[120.09,-10.1782],[120.093,-10.1755],[120.1041,-10.1746],[120.1079,-10.1762],[120.1263,-10.1918],[120.1321,-10.202],[120.1393,-10.2086],[120.1493,-10.224],[120.1637,-10.2329],[120.1656,-10.2391],[120.1718,-10.2317],[120.1796,-10.2292],[120.1843,-10.2302],[120.1936,-10.2355],[120.2009,-10.2414],[120.2122,-10.2531],[120.23,-10.2506],[120.2342,-10.2469],[120.2405,-10.2443],[120.2472,-10.2439],[120.2686,-10.2457],[120.2803,-10.2501],[120.2955,-10.2577],[120.2982,-10.2572],[120.3034,-10.2516],[120.3064,-10.2509],[120.3203,-10.2537],[120.3265,-10.2515],[120.3342,-10.2519],[120.3462,-10.2486],[120.3546,-10.2507],[120.3661,-10.2558],[120.3908,-10.2696],[120.4065,-10.2813],[120.4178,-10.291],[120.432,-10.3017],[120.4371,-10.307],[120.4436,-10.3069],[120.4542,-10.3126],[120.4582,-10.3081],[120.4637,-10.3054],[120.4691,-10.3053],[120.473,-10.3019],[120.4776,-10.2853],[120.479,-10.2741],[120.4869,-10.262],[120.5007,-10.2588],[120.5078,-10.2557],[120.5144,-10.2557],[120.515,-10.2502],[120.5191,-10.2458],[120.5319,-10.24],[120.5519,-10.2378],[120.5606,-10.2379],[120.5709,-10.2394],[120.5853,-10.2492],[120.591,-10.2514],[120.6055,-10.2533],[120.6139,-10.2528],[120.62,-10.2508],[120.626,-10.2452],[120.6301,-10.2367],[120.6357,-10.2315],[120.6437,-10.2283],[120.6551,-10.2284],[120.6663,-10.2299],[120.6714,-10.2296],[120.6853,-10.2244],[120.6879,-10.2197],[120.6969,-10.2145],[120.7033,-10.209],[120.7184,-10.204],[120.7297,-10.1944],[120.7392,-10.1902],[120.7425,-10.1865],[120.7457,-10.1744],[120.7516,-10.1619],[120.7571,-10.1547],[120.7663,-10.1483],[120.7698,-10.1441],[120.7882,-10.1352],[120.8065,-10.1306],[120.8162,-10.1245],[120.8175,-10.1188],[120.8236,-10.1141],[120.8385,-10.097],[120.8412,-10.0876],[120.8375,-10.0841],[120.8438,-10.0717],[120.8451,-10.0596],[120.8444,-10.0569],[120.8465,-10.0452],[120.847,-10.0365],[120.8459,-10.0288],[120.8385,-10.0145],[120.8308,-10.0089],[120.8324,-10.0055],[120.8301,-10.0011],[120.8231,-9.9932],[120.8159,-9.9772],[120.8096,-9.9714],[120.7973,-9.963],[120.7847,-9.9487],[120.7763,-9.9451],[120.7656,-9.9385],[120.7594,-9.9322],[120.747,-9.9241],[120.7395,-9.922],[120.7374,-9.9245],[120.7291,-9.923],[120.7242,-9.9191],[120.7199,-9.9181],[120.7138,-9.9211],[120.709,-9.9188],[120.7043,-9.911],[120.6944,-9.9036],[120.6856,-9.9036],[120.6792,-9.9002],[120.6706,-9.8885],[120.6678,-9.8826],[120.6604,-9.8732],[120.6583,-9.868],[120.6504,-9.8543],[120.646,-9.8451],[120.6361,-9.8298],[120.6302,-9.8191],[120.6276,-9.8091],[120.6276,-9.7971],[120.6246,-9.7886],[120.6167,-9.7783],[120.6086,-9.7734],[120.6056,-9.769],[120.6017,-9.7549],[120.6006,-9.7423],[120.5966,-9.731],[120.5916,-9.7283],[120.5825,-9.7273],[120.577,-9.7243],[120.5739,-9.7138],[120.5694,-9.7069],[120.5579,-9.6958],[120.5413,-9.6871],[120.5372,-9.6869],[120.5317,-9.6898],[120.522,-9.692],[120.5162,-9.6892],[120.5067,-9.6873],[120.503,-9.6844],[120.4985,-9.6778],[120.496,-9.6706],[120.4931,-9.6573],[120.481,-9.6314],[120.476,-9.6235],[120.4681,-9.6166],[120.4639,-9.6147],[120.4597,-9.6159],[120.4431,-9.6245],[120.42,-9.63],[120.4059,-9.6358],[120.3878,-9.638],[120.3849,-9.6427],[120.3856,-9.6483],[120.3792,-9.6474],[120.3778,-9.6435],[120.3729,-9.6424],[120.3646,-9.6441],[120.3506,-9.651],[120.3467,-9.6571],[120.3364,-9.6636],[120.3273,-9.6665],[120.3201,-9.6716],[120.3109,-9.665],[120.3095,-9.6603],[120.3056,-9.6575],[120.3021,-9.6458],[120.2989,-9.6419],[120.2867,-9.6402],[120.2781,-9.6408],[120.2761,-9.638],[120.269,-9.6424],[120.2609,-9.6425],[120.2581,-9.6397],[120.2547,-9.6435],[120.2449,-9.639],[120.2452,-9.6337],[120.2428,-9.6254],[120.2368,-9.6152],[120.2315,-9.6],[120.2283,-9.5863],[120.229,-9.5651],[120.2269,-9.5422],[120.2241,-9.5289],[120.2187,-9.5128],[120.2139,-9.5048],[120.2104,-9.4905],[120.2035,-9.488],[120.1957,-9.4834],[120.1924,-9.4736],[120.1871,-9.469],[120.1818,-9.4679],[120.1742,-9.4697],[120.1647,-9.4698],[120.1414,-9.4821],[120.1329,-9.4849],[120.1239,-9.4852],[120.1154,-9.4808],[120.1111,-9.482],[120.1052,-9.4782],[120.093,-9.4748],[120.0845,-9.4697],[120.0779,-9.4641],[120.0683,-9.4497],[120.0615,-9.4454],[120.0578,-9.4381],[120.0492,-9.4296],[120.0442,-9.4214],[120.0389,-9.4089],[120.0355,-9.4045],[120.0352,-9.3989],[120.0287,-9.3962],[120.0236,-9.3887],[120.0114,-9.3857],[120.0065,-9.3817],[119.9994,-9.3731],[119.9958,-9.363],[119.9916,-9.3551],[119.9846,-9.3491],[119.9763,-9.339],[119.9612,-9.3254],[119.9536,-9.3157],[119.9465,-9.3022],[119.9431,-9.2856],[119.9396,-9.2793],[119.9352,-9.2762],[119.9221,-9.285],[119.9194,-9.2922],[119.8914,-9.3263],[119.8825,-9.3339],[119.8648,-9.3435]]]}},{"type":"Feature","properties":{"mhid":"1332:303","alt_name":"KABUPATEN KUPANG","latitude":-9.91667,"longitude":123.83333,"sample_value":112},"geometry":{"type":"MultiLineString","coordinates":[[[123.2869,-10.3082],[123.2782,-10.3081],[123.2699,-10.3167],[123.2735,-10.3203],[123.2869,-10.3082]],[[123.4328,-10.2325],[123.4268,-10.2386],[123.4286,-10.2461],[123.4342,-10.2472],[123.4406,-10.2419],[123.4393,-10.2372],[123.4328,-10.2325]],[[123.4525,-10.1146],[123.4433,-10.1169],[123.4351,-10.1228],[123.4261,-10.1267],[123.4201,-10.1275],[123.4142,-10.1301],[123.4103,-10.1291],[123.4035,-10.1325],[123.3966,-10.1339],[123.3951,-10.1368],[123.3892,-10.1592],[123.3886,-10.1642],[123.3845,-10.1735],[123.3819,-10.1749],[123.3731,-10.1921],[123.3679,-10.2037],[123.3596,-10.2147],[123.349,-10.2269],[123.3315,-10.2323],[123.3238,-10.2367],[123.3202,-10.2403],[123.3199,-10.2444],[123.3009,-10.2712],[123.3093,-10.2821],[123.3065,-10.2891],[123.3073,-10.2939],[123.305,-10.3007],[123.3054,-10.3118],[123.3095,-10.3178],[123.3108,-10.3233],[123.3158,-10.3326],[123.323,-10.3395],[123.3282,-10.3386],[123.3319,-10.3304],[123.3316,-10.3275],[123.3364,-10.3164],[123.3468,-10.3052],[123.3549,-10.3067],[123.3586,-10.305],[123.3668,-10.3045],[123.3729,-10.3062],[123.3792,-10.3112],[123.3801,-10.3209],[123.379,-10.3237],[123.382,-10.3288],[123.3819,-10.3349],[123.4028,-10.3391],[123.4106,-10.3325],[123.4145,-10.3213],[123.4148,-10.3137],[123.4093,-10.3131],[123.3997,-10.3072],[123.3964,-10.3014],[123.3955,-10.2922],[123.3971,-10.2902],[123.4042,-10.2952],[123.4103,-10.2969],[123.4123,-10.2933],[123.4186,-10.2963],[123.4201,-10.2902],[123.4164,-10.2841],[123.4124,-10.2738],[123.4185,-10.2602],[123.4173,-10.256],[123.4124,-10.2529],[123.4161,-10.2499],[123.4107,-10.2399],[123.406,-10.2402],[123.4055,-10.2365],[123.4001,-10.2381],[123.3943,-10.2325],[123.3927,-10.2237],[123.3953,-10.2163],[123.3926,-10.2094],[123.3984,-10.203],[123.4024,-10.2067],[123.4136,-10.2106],[123.421,-10.2082],[123.4202,-10.216],[123.4172,-10.2282],[123.4238,-10.2309],[123.4318,-10.2286],[123.4466,-10.2151],[123.4485,-10.2176],[123.4535,-10.2163],[123.4544,-10.2096],[123.4523,-10.205],[123.4632,-10.1944],[123.468,-10.1954],[123.483,-10.1848],[123.4891,-10.1828],[123.5024,-10.1828],[123.5066,-10.1737],[123.506,-10.1638],[123.5018,-10.1587],[123.4943,-10.1566],[123.4907,-10.1537],[123.4817,-10.1632],[123.4769,-10.1649],[123.4699,-10.1626],[123.4668,-10.158],[123.468,-10.1527],[123.4643,-10.1449],[123.4648,-10.1373],[123.4624,-10.129],[123.4589,-10.1217],[123.4525,-10.1146]],[[123.5568,-10.0853],[123.5531,-10.0899],[123.5583,-10.095],[123.5598,-10.0882],[123.5568,-10.0853]],[[124.0959,-9.406],[124.0883,-9.3949],[124.0767,-9.382],[124.0702,-9.3697],[124.0643,-9.3673],[124.0623,-9.361],[124.0447,-9.3459],[124.0443,-9.3364],[124.04,-9.3368],[124.0325,-9.3439],[124.0128,-9.3457],[124.0087,-9.3431],[123.9952,-9.3421],[123.9809,-9.3519],[123.9762,-9.3612],[123.9717,-9.3645],[123.9681,-9.3786],[123.964,-9.3858],[123.9576,-9.3907],[123.9458,-9.3935],[123.9403,-9.4011],[123.9406,-9.4091],[123.9389,-9.4147],[123.9327,-9.4228],[123.921,-9.4251],[123.9153,-9.4287],[123.9061,-9.427],[123.8998,-9.4299],[123.8963,-9.4358],[123.897,-9.444],[123.8938,-9.455],[123.8865,-9.4636],[123.8766,-9.4699],[123.8702,-9.4756],[123.8575,-9.4772],[123.8515,-9.4747],[123.848,-9.4756],[123.8412,-9.485],[123.8335,-9.4898],[123.8287,-9.4955],[123.8134,-9.4983],[123.8038,-9.4925],[123.795,-9.4909],[123.7931,-9.4988],[123.795,-9.5049],[123.795,-9.5159],[123.7913,-9.523],[123.7902,-9.5337],[123.7882,-9.5411],[123.781,-9.5479],[123.7709,-9.5516],[123.7597,-9.5532],[123.7554,-9.5559],[123.7487,-9.5628],[123.7435,-9.5631],[123.7337,-9.5675],[123.7319,-9.5744],[123.7218,-9.5918],[123.7081,-9.5991],[123.7045,-9.6037],[123.7001,-9.6048],[123.6948,-9.6158],[123.6827,-9.6248],[123.6741,-9.6285],[123.672,-9.6334],[123.6716,-9.6488],[123.6783,-9.6719],[123.6831,-9.6933],[123.6843,-9.7015],[123.6827,-9.7079],[123.6837,-9.7151],[123.6809,-9.7191],[123.6823,-9.7357],[123.682,-9.7404],[123.6787,-9.7534],[123.6757,-9.7573],[123.6709,-9.7594],[123.6615,-9.7612],[123.6583,-9.7651],[123.6435,-9.7715],[123.6429,-9.775],[123.6482,-9.7802],[123.6532,-9.7826],[123.6556,-9.789],[123.6619,-9.7932],[123.6667,-9.8052],[123.6697,-9.8199],[123.6702,-9.8278],[123.6692,-9.8365],[123.6688,-9.8504],[123.6643,-9.8645],[123.6609,-9.87],[123.6557,-9.8743],[123.6545,-9.8785],[123.6501,-9.8836],[123.646,-9.8909],[123.6408,-9.8952],[123.6333,-9.898],[123.6297,-9.8972],[123.6249,-9.8915],[123.6198,-9.8913],[123.6157,-9.8978],[123.601,-9.8982],[123.5927,-9.905],[123.5905,-9.9101],[123.5836,-9.9164],[123.5813,-9.925],[123.5854,-9.9355],[123.5819,-9.9413],[123.5785,-9.9433],[123.5823,-9.9553],[123.5859,-9.9729],[123.5863,-9.9845],[123.5887,-9.9931],[123.586,-9.9989],[123.5847,-10.0065],[123.5809,-10.0177],[123.5863,-10.0346],[123.5914,-10.0406],[123.5963,-10.0443],[123.6078,-10.0453],[123.6116,-10.0344],[123.6217,-10.0198],[123.6285,-10.0177],[123.6379,-10.0174],[123.6452,-10.0121],[123.654,-10.0095],[123.6653,-10.018],[123.6773,-10.0176],[123.6793,-10.0205],[123.6888,-10.0156],[123.692,-10.0111],[123.6956,-10.0101],[123.7011,-10.0133],[123.7022,-10.0163],[123.708,-10.0189],[123.7148,-10.024],[123.7238,-10.0273],[123.7302,-10.0266],[123.7328,-10.0293],[123.7517,-10.0285],[123.763,-10.0341],[123.7711,-10.0434],[123.7681,-10.0462],[123.7684,-10.0519],[123.7629,-10.0535],[123.7585,-10.0665],[123.7582,-10.0719],[123.7523,-10.0805],[123.749,-10.0811],[123.7467,-10.0884],[123.7482,-10.0899],[123.7414,-10.0986],[123.7326,-10.1001],[123.7273,-10.1038],[123.718,-10.1059],[123.7153,-10.1022],[123.7025,-10.1085],[123.693,-10.1179],[123.6893,-10.1195],[123.6807,-10.1197],[123.6715,-10.1274],[123.6753,-10.1325]],[[123.5283,-10.2099],[123.5276,-10.2152],[123.5244,-10.2179],[123.5152,-10.2201],[123.4888,-10.2241],[123.4894,-10.2357],[123.4884,-10.2438],[123.4903,-10.2521],[123.4975,-10.2646],[123.501,-10.2738],[123.4976,-10.2766],[123.4965,-10.283],[123.4908,-10.288],[123.4927,-10.2914],[123.4888,-10.2959],[123.4853,-10.2965],[123.4762,-10.317],[123.4674,-10.3216],[123.4622,-10.3281],[123.465,-10.3392],[123.4555,-10.3492],[123.4574,-10.3565],[123.4651,-10.3603],[123.4739,-10.359],[123.486,-10.3558],[123.4992,-10.3464],[123.5144,-10.3403],[123.5265,-10.332],[123.5327,-10.3292],[123.5459,-10.3277],[123.5542,-10.333],[123.5692,-10.3332],[123.5706,-10.339],[123.5762,-10.3448],[123.5859,-10.3456],[123.5944,-10.3492],[123.5997,-10.3536],[123.6067,-10.3678],[123.6114,-10.3701],[123.6136,-10.3664],[123.6221,-10.3584],[123.6282,-10.3552],[123.6353,-10.3559],[123.6492,-10.3508],[123.6612,-10.3496],[123.6714,-10.3511],[123.6808,-10.3536],[123.6817,-10.356],[123.6935,-10.3621],[123.6951,-10.3607],[123.7039,-10.3663],[123.7088,-10.3642],[123.7147,-10.3646],[123.7174,-10.3625],[123.7239,-10.3623],[123.732,-10.3588],[123.7404,-10.3577],[123.7529,-10.3543],[123.76,-10.3491],[123.7658,-10.3478],[123.7775,-10.3496],[123.7891,-10.3559],[123.7977,-10.3552],[123.8035,-10.3505],[123.8119,-10.3489],[123.8212,-10.3429],[123.8358,-10.3398],[123.8526,-10.3339],[123.8605,-10.3344],[123.8655,-10.3321],[123.8761,-10.3183],[123.8881,-10.3103],[123.8991,-10.3049],[123.9102,-10.3019],[123.9143,-10.298],[123.9265,-10.2948],[123.9349,-10.2946],[123.9414,-10.2973],[123.9464,-10.2936],[123.9471,-10.2876],[123.9494,-10.2838],[123.9585,-10.2785],[123.9646,-10.2761],[123.9758,-10.274],[123.9866,-10.2746],[123.9985,-10.277],[124.0166,-10.274],[124.0205,-10.2718],[124.0257,-10.263],[124.0269,-10.2549],[124.0299,-10.25],[124.0462,-10.2385],[124.0552,-10.2349],[124.0632,-10.2294],[124.0719,-10.2266],[124.0806,-10.2184],[124.0826,-10.2144],[124.079,-10.2101],[124.0808,-10.2037],[124.0842,-10.2005],[124.0965,-10.1919],[124.0993,-10.1874],[124.1004,-10.1808],[124.1136,-10.1749],[124.1217,-10.1696],[124.1393,-10.1614],[124.1511,-10.1582],[124.1707,-10.1555],[124.1813,-10.156],[124.1925,-10.1585],[124.202,-10.1624],[124.2089,-10.1612],[124.2199,-10.1629]]]}},{"type":"Feature","properties":{"mhid":"1332:304","alt_name":"KABUPATEN TIMOR TENGAH SELATAN","latitude":-9.83333,"longitude":124.4,"sample_value":310},"geometry":{"type":"MultiLineString","coordinates":[[[124.2199,-10.1629],[124.2617,-10.1668],[124.3024,-10.1689],[124.3372,-10.1722],[124.3385,-10.1692],[124.3493,-10.1727],[124.3844,-10.1713],[124.3957,-10.1697],[124.409,-10.1645],[124.4222,-10.1572],[124.4426,-10.1442],[124.4643,-10.1273],[124.4777,-10.1216],[124.4875,-10.1118],[124.4897,-10.1073],[124.4978,-10.1029],[124.5087,-10.0916],[124.5188,-10.0754],[124.5255,-10.062],[124.5281,-10.0539],[124.5299,-10.0405],[124.5324,-10.0304],[124.5373,-10.0217],[124.5479,-10.011],[124.553,-10.007],[124.566,-10.004],[124.5836,-10.003],[124.5897,-9.9989],[124.5953,-9.9886],[124.6039,-9.9789],[124.6168,-9.9708],[124.6231,-9.9657],[124.632,-9.9626],[124.6378,-9.9592],[124.6412,-9.9552],[124.6514,-9.9509],[124.6568,-9.9463],[124.6638,-9.9307],[124.6683,-9.9244],[124.6742,-9.9195],[124.6833,-9.9213],[124.6894,-9.9176],[124.6979,-9.9147],[124.7149,-9.9026],[124.7235,-9.8948],[124.7321,-9.8911],[124.7352,-9.8879],[124.7448,-9.8854],[124.7508,-9.8816],[124.753,-9.8764],[124.7545,-9.8658],[124.7633,-9.8486],[124.7669,-9.8447],[124.7738,-9.8414],[124.781,-9.8266],[124.7863,-9.8177],[124.8001,-9.8003],[124.8096,-9.7919],[124.8081,-9.7895]]]}},{"type":"Feature","properties":{"mhid":"1332:306","alt_name":"KABUPATEN TIMOR TENGAH UTARA","latitude":-9.33136,"longitude":124.51904,"sample_value":323},"geometry":{"type":"MultiLineString","coordinates":[[[124.7924,-9.0182],[124.7854,-9.0191],[124.78,-9.0261],[124.7732,-9.0318],[124.7658,-9.0327],[124.7599,-9.0374],[124.7569,-9.0418],[124.7298,-9.0588],[124.7245,-9.0585],[124.7176,-9.0515],[124.7061,-9.0506],[124.6974,-9.0536],[124.6945,-9.0604],[124.6936,-9.0677],[124.6903,-9.0833],[124.6872,-9.0922],[124.6816,-9.1034],[124.6771,-9.1078],[124.6679,-9.1205],[124.6587,-9.1253],[124.6492,-9.124],[124.6386,-9.1289],[124.6333,-9.1343],[124.6265,-9.1441],[124.6159,-9.1534],[124.6095,-9.1557],[124.6004,-9.157],[124.5874,-9.1616],[124.5783,-9.1626],[124.5727,-9.1644],[124.5663,-9.1734],[124.5612,-9.1778],[124.5557,-9.1787],[124.5524,-9.177],[124.551,-9.1725],[124.5356,-9.1787],[124.5312,-9.1861],[124.5275,-9.1861],[124.5061,-9.1761],[124.5017,-9.1762],[124.4976,-9.1792],[124.4917,-9.1779],[124.4878,-9.173],[124.4811,-9.172],[124.478,-9.1757],[124.479,-9.1866],[124.4808,-9.1925],[124.478,-9.1997],[124.4689,-9.2078],[124.4661,-9.224],[124.4685,-9.2281],[124.4657,-9.2327],[124.4673,-9.2383],[124.4645,-9.2424],[124.4649,-9.2498],[124.4621,-9.2508],[124.4582,-9.2619],[124.4545,-9.2658],[124.4561,-9.2751],[124.4554,-9.2837],[124.4584,-9.2898],[124.4621,-9.2936],[124.4627,-9.2991],[124.459,-9.3051],[124.4533,-9.3086],[124.4467,-9.3063],[124.4447,-9.311],[124.4399,-9.315],[124.44,-9.3235],[124.4356,-9.3349],[124.4329,-9.3315],[124.4271,-9.3318],[124.4219,-9.3363],[124.414,-9.3359],[124.4045,-9.3399],[124.4021,-9.3504],[124.3978,-9.3549],[124.3881,-9.3607],[124.3818,-9.3568],[124.3787,-9.3611],[124.3789,-9.3684],[124.3742,-9.3767],[124.3781,-9.3792],[124.3819,-9.3905],[124.3804,-9.3968],[124.3692,-9.4038],[124.3739,-9.4087],[124.374,-9.412],[124.3668,-9.4195],[124.3574,-9.4184],[124.3498,-9.4237],[124.3482,-9.434],[124.352,-9.4408],[124.3621,-9.4461],[124.3622,-9.4512],[124.365,-9.4589],[124.3566,-9.464],[124.3549,-9.4694],[124.3569,-9.4718],[124.3553,-9.4766],[124.3566,-9.4818],[124.3548,-9.4852],[124.3497,-9.4856],[124.3422,-9.4828],[124.3369,-9.4868],[124.3322,-9.4856],[124.3227,-9.4909],[124.3162,-9.4959],[124.3012,-9.4937],[124.2961,-9.5026],[124.2869,-9.5037],[124.2812,-9.5014],[124.2782,-9.4964],[124.2796,-9.4892],[124.2824,-9.4853],[124.2832,-9.4795],[124.2882,-9.4725],[124.2869,-9.4638],[124.2838,-9.457],[124.287,-9.4512],[124.2813,-9.4406],[124.2746,-9.4347],[124.2764,-9.4316],[124.2757,-9.4248],[124.2711,-9.4146],[124.2716,-9.4124],[124.2639,-9.4038],[124.261,-9.3957],[124.2521,-9.3923],[124.2453,-9.3843],[124.2393,-9.3819],[124.2344,-9.3744],[124.2302,-9.3754],[124.2166,-9.3657],[124.2109,-9.37],[124.2051,-9.3706],[124.2039,-9.3768],[124.2016,-9.3782],[124.1919,-9.3784],[124.1858,-9.3871],[124.1744,-9.3904],[124.168,-9.3964],[124.1716,-9.3993],[124.161,-9.4137],[124.1606,-9.4202],[124.1547,-9.4225],[124.1505,-9.4264],[124.1447,-9.4242],[124.1337,-9.4261],[124.1246,-9.4104],[124.1183,-9.4071],[124.1134,-9.4069],[124.1107,-9.41],[124.0985,-9.4091],[124.0959,-9.406]]]}},{"type":"Feature","properties":{"mhid":"1332:307","alt_name":"KABUPATEN BELU","latitude":-9.41258,"longitude":124.95066,"sample_value":732},"geometry":{"type":"MultiLineString","coordinates":[[[125.0141,-9.3025],[125.0068,-9.2949],[124.9969,-9.2936],[124.9958,-9.2855],[124.9983,-9.2808],[124.9944,-9.2724],[124.9967,-9.2685],[124.9968,-9.2634],[124.9895,-9.257],[124.985,-9.2512],[124.9855,-9.2486],[124.9822,-9.2353],[124.9838,-9.2308],[124.9815,-9.2121],[124.9827,-9.1914],[124.9845,-9.192],[124.9925,-9.1868],[124.999,-9.1864],[125.0056,-9.1824],[125.0114,-9.176],[125.0144,-9.1691],[125.0251,-9.1713],[125.0337,-9.1708],[125.0355,-9.174],[125.0414,-9.1746],[125.0527,-9.1688],[125.0564,-9.1716],[125.0749,-9.1757],[125.0771,-9.183],[125.0811,-9.1885],[125.0934,-9.1973],[125.097,-9.2018],[125.1022,-9.1975],[125.1064,-9.1963],[125.1088,-9.1919],[125.1171,-9.1862],[125.1235,-9.1837],[125.1332,-9.1776],[125.1335,-9.1751],[125.1421,-9.1735],[125.1482,-9.1708],[125.1551,-9.173],[125.1686,-9.1732],[125.176,-9.1722],[125.18,-9.1663],[125.1865,-9.1596],[125.1931,-9.1582],[125.193,-9.1541],[125.18,-9.1454],[125.1759,-9.1411],[125.1765,-9.1374],[125.1732,-9.1335],[125.1716,-9.123],[125.1722,-9.1189],[125.1793,-9.1186],[125.1789,-9.1132],[125.1734,-9.1057],[125.1763,-9.1045],[125.1784,-9.0991],[125.1792,-9.0867],[125.1848,-9.0801],[125.1861,-9.0706],[125.1839,-9.0628],[125.1883,-9.0577],[125.1893,-9.0465],[125.1843,-9.0362],[125.1847,-9.0259],[125.1717,-9.0182],[125.1695,-9.0143],[125.1648,-9.0126],[125.1592,-9.0047],[125.1484,-8.9966],[125.1383,-8.9966],[125.1344,-8.9934],[125.1334,-8.9882],[125.1243,-8.9769],[125.1167,-8.9696],[125.112,-8.9675],[125.1083,-8.9687],[125.1022,-8.9757],[125.1021,-8.9884],[125.0988,-8.9928],[125.099,-8.9998],[125.0929,-9.0051],[125.0873,-9.0127],[125.0824,-9.0141],[125.0768,-9.0217],[125.0723,-9.0235],[125.0661,-9.0283],[125.058,-9.0269],[125.0524,-9.0317],[125.0427,-9.0319],[125.0409,-9.0341],[125.0316,-9.0379],[125.0303,-9.0434],[125.0204,-9.0436],[125.0214,-9.0494],[125.0183,-9.0507],[125.0113,-9.05],[125.0091,-9.0515],[125.0069,-9.0606],[125.0031,-9.0636],[124.9913,-9.064],[124.9899,-9.061],[124.9837,-9.0662],[124.9759,-9.0636],[124.9697,-9.0568],[124.9594,-9.059],[124.954,-9.0561],[124.9533,-9.0496],[124.9437,-9.049],[124.9402,-9.0426],[124.9403,-9.0369],[124.9317,-9.0279],[124.9344,-9.0227],[124.9329,-9.0185],[124.9367,-9.0168],[124.9382,-9.0037],[124.9347,-9.0001],[124.9341,-8.9951],[124.9405,-8.9853],[124.9413,-8.9786],[124.9518,-8.9673],[124.9525,-8.9602],[124.9434,-8.9569],[124.9386,-8.9575],[124.9258,-8.9661],[124.9211,-8.9665],[124.9187,-8.9707],[124.8992,-8.9725],[124.8903,-8.9751],[124.8784,-8.9801],[124.875,-8.9846],[124.8666,-8.9899],[124.8612,-8.9992],[124.8544,-8.9994],[124.8511,-9.0068],[124.827,-9.0021],[124.8164,-9.0024],[124.8096,-9.0071],[124.8072,-9.0113],[124.801,-9.0086],[124.7943,-9.0141],[124.7924,-9.0182]]]}},{"type":"Feature","properties":{"mhid":"1332:308","alt_name":"KABUPATEN ALOR","latitude":-8.3,"longitude":124.56667,"sample_value":134},"geometry":{"type":"MultiLineString","coordinates":[[[124.2909,-8.4703],[124.2801,-8.4704],[124.2718,-8.4735],[124.27,-8.4769],[124.2734,-8.4879],[124.2788,-8.4905],[124.2841,-8.4828],[124.2939,-8.4825],[124.2955,-8.4762],[124.2909,-8.4703]],[[123.8931,-8.4303],[123.8915,-8.4268],[123.8852,-8.4247],[123.8767,-8.4305],[123.8761,-8.4397],[123.88,-8.443],[123.8829,-8.441],[123.8848,-8.4354],[123.8931,-8.4303]],[[123.8356,-8.3949],[123.8366,-8.3814],[123.8353,-8.3713],[123.8289,-8.3677],[123.8198,-8.3656],[123.8154,-8.366],[123.808,-8.3727],[123.8094,-8.3844],[123.808,-8.3878],[123.8111,-8.3979],[123.8094,-8.4029],[123.8134,-8.4086],[123.8258,-8.414],[123.8332,-8.4096],[123.8376,-8.4107],[123.8356,-8.3949]],[[124.0952,-8.3646],[124.0925,-8.3681],[124.0929,-8.3716]],[[124.0929,-8.3716],[124.0931,-8.3735],[124.0961,-8.3742]],[[124.0961,-8.3742],[124.0982,-8.3746],[124.0989,-8.3685],[124.0952,-8.3646]],[[123.955,-8.3493],[123.9521,-8.3466],[123.9466,-8.347],[123.9362,-8.3514],[123.9332,-8.3539],[123.9263,-8.3541],[123.9187,-8.3561],[123.9133,-8.356],[123.9034,-8.3602],[123.9001,-8.3628],[123.8993,-8.368],[123.9152,-8.3804],[123.9226,-8.3792],[123.9303,-8.3825],[123.941,-8.3761],[123.9473,-8.3652],[123.9498,-8.3587],[123.9549,-8.3567],[123.955,-8.3493]],[[124.356,-8.2759],[124.3451,-8.2771],[124.3389,-8.2758],[124.3287,-8.2811],[124.3218,-8.2884],[124.3152,-8.2981],[124.3201,-8.3077],[124.3215,-8.3157],[124.3275,-8.3198],[124.3296,-8.324],[124.3371,-8.3238],[124.3421,-8.3255],[124.3623,-8.325],[124.3662,-8.3149],[124.3699,-8.3092],[124.3737,-8.3064],[124.3739,-8.2989],[124.376,-8.2955],[124.3694,-8.2822],[124.3611,-8.2794],[124.356,-8.2759]],[[124.4017,-8.2767],[124.4038,-8.2702],[124.3986,-8.2688],[124.3963,-8.2756],[124.4017,-8.2767]],[[124.0849,-8.2378],[124.0885,-8.2374],[124.0902,-8.2311],[124.095,-8.2263],[124.0868,-8.2208],[124.0849,-8.2227],[124.0772,-8.2227],[124.0734,-8.2251],[124.07,-8.2321],[124.0705,-8.2362],[124.076,-8.2393],[124.0825,-8.2402],[124.0849,-8.2378]],[[124.0432,-8.2186],[124.0468,-8.2117],[124.0434,-8.2112],[124.0391,-8.2213],[124.036,-8.2191],[124.0345,-8.2138],[124.0304,-8.2148],[124.0273,-8.2189],[124.0252,-8.2273],[124.0254,-8.2318],[124.0309,-8.2333],[124.0388,-8.2273],[124.0432,-8.2186]],[[124.3764,-8.2067],[124.3735,-8.2009],[124.364,-8.2084],[124.3606,-8.2163],[124.3616,-8.2221],[124.367,-8.2254],[124.3749,-8.2264],[124.3801,-8.217],[124.3764,-8.2067]],[[124.2904,-8.1739],[124.2869,-8.1754],[124.278,-8.1756],[124.2673,-8.1856],[124.2519,-8.1917],[124.2369,-8.2107],[124.2316,-8.2134],[124.2288,-8.2183],[124.225,-8.232],[124.2198,-8.2379],[124.214,-8.2493],[124.2144,-8.2547],[124.2119,-8.2611],[124.2059,-8.267],[124.2034,-8.273],[124.1996,-8.277],[124.1953,-8.2773],[124.1912,-8.2725],[124.1849,-8.2738],[124.1744,-8.2852],[124.1676,-8.2912],[124.1664,-8.3029],[124.1637,-8.3099],[124.1589,-8.3141],[124.1508,-8.3188],[124.1508,-8.3225],[124.1466,-8.3246],[124.1384,-8.3331],[124.1337,-8.3392],[124.1328,-8.3441],[124.1247,-8.3491],[124.1139,-8.3533],[124.1088,-8.3564],[124.1031,-8.3623],[124.1057,-8.369],[124.1098,-8.3749],[124.117,-8.3715],[124.1161,-8.3767],[124.1198,-8.3818],[124.1135,-8.3863],[124.105,-8.3881],[124.1061,-8.3805],[124.1023,-8.3756],[124.098,-8.3756],[124.0961,-8.3742]],[[124.0961,-8.3742],[124.0929,-8.3716]],[[124.0929,-8.3716],[124.0913,-8.3704],[124.0898,-8.3649],[124.0976,-8.36],[124.0945,-8.3565],[124.0854,-8.3553],[124.0853,-8.3492],[124.0881,-8.3382],[124.0857,-8.3332],[124.0852,-8.3271],[124.0866,-8.32],[124.085,-8.3136],[124.0805,-8.3069],[124.0757,-8.3027],[124.0642,-8.2977],[124.0586,-8.293],[124.0501,-8.2971],[124.0448,-8.3024],[124.0351,-8.3097],[124.0323,-8.3092],[124.025,-8.3122],[124.0171,-8.3218],[124.0064,-8.3293],[123.9882,-8.3365],[123.9837,-8.3363],[123.9735,-8.3416],[123.9652,-8.3475],[123.9615,-8.3584],[123.9536,-8.368],[123.9441,-8.3913],[123.9469,-8.4047],[123.9356,-8.4232],[123.9302,-8.4246],[123.9137,-8.437],[123.9137,-8.4393],[123.9204,-8.4421],[123.9219,-8.4477],[123.9359,-8.4538],[123.9373,-8.4605],[123.9462,-8.4594],[123.9484,-8.451],[123.9521,-8.4456],[123.958,-8.4411],[123.9633,-8.4408],[123.9667,-8.4368],[123.9727,-8.4334],[123.9751,-8.4342],[123.978,-8.4258],[123.9829,-8.4201],[123.989,-8.418],[123.9937,-8.4193],[124.0012,-8.4166],[124.0147,-8.4153],[124.0202,-8.4163],[124.0274,-8.4208],[124.0343,-8.4213],[124.0412,-8.4447],[124.0431,-8.449],[124.0546,-8.4547],[124.053,-8.4616],[124.0571,-8.4692],[124.0553,-8.4779],[124.0651,-8.4894],[124.0655,-8.4993],[124.0591,-8.5151],[124.0544,-8.5212],[124.0555,-8.5238],[124.0538,-8.5321],[124.0557,-8.5442],[124.059,-8.5452],[124.0626,-8.55],[124.0722,-8.5504],[124.0757,-8.5476],[124.0805,-8.5481],[124.085,-8.5449],[124.1065,-8.5442],[124.1137,-8.5462],[124.1236,-8.5446],[124.1389,-8.537],[124.1413,-8.5384],[124.146,-8.5345],[124.148,-8.5249],[124.1557,-8.5195],[124.1573,-8.5165],[124.1646,-8.5149],[124.17,-8.5099],[124.169,-8.5039],[124.1726,-8.5022],[124.1763,-8.4957],[124.1721,-8.4883],[124.1799,-8.4845],[124.1825,-8.4889],[124.1869,-8.4888],[124.1937,-8.4843],[124.2005,-8.4763],[124.203,-8.4712],[124.2124,-8.4596],[124.2115,-8.4499],[124.2089,-8.4459],[124.2062,-8.4344],[124.21,-8.4259],[124.2093,-8.416],[124.2135,-8.4086],[124.2179,-8.4061],[124.2253,-8.3965],[124.2307,-8.3922],[124.2341,-8.3799],[124.2401,-8.3754],[124.2422,-8.3692],[124.2495,-8.3587],[124.2561,-8.3573],[124.2589,-8.3525],[124.2662,-8.3506],[124.277,-8.34],[124.2848,-8.338],[124.2922,-8.3391],[124.2938,-8.335],[124.3019,-8.3297],[124.302,-8.3264],[124.3098,-8.3107],[124.3092,-8.3033],[124.3055,-8.2957],[124.3032,-8.2869],[124.3048,-8.2843],[124.3035,-8.2789],[124.2988,-8.2687],[124.3041,-8.2542],[124.3072,-8.2524],[124.3189,-8.2382],[124.3232,-8.2341],[124.3263,-8.228],[124.3259,-8.2215],[124.3292,-8.2127],[124.3289,-8.2026],[124.3248,-8.1931],[124.3249,-8.1889],[124.3195,-8.1802],[124.3141,-8.1776],[124.3025,-8.1751],[124.2914,-8.1769],[124.2904,-8.1739]],[[124.3795,-8.1826],[124.3851,-8.1779],[124.381,-8.1722],[124.37,-8.1693],[124.3674,-8.1739],[124.3681,-8.1812],[124.3709,-8.1837],[124.3773,-8.1845],[124.3795,-8.1826]],[[124.5611,-8.1236],[124.549,-8.1216],[124.5407,-8.1266],[124.5355,-8.1271],[124.5303,-8.1218],[124.5144,-8.1237],[124.5048,-8.1324],[124.4935,-8.1293],[124.4891,-8.1267],[124.477,-8.1281],[124.4579,-8.1423],[124.4553,-8.1471],[124.4524,-8.1473],[124.4458,-8.1557],[124.4469,-8.16],[124.4431,-8.1666],[124.4366,-8.171],[124.4204,-8.1916],[124.4106,-8.2052],[124.4002,-8.2148],[124.3958,-8.2298],[124.3964,-8.2337],[124.4026,-8.2371],[124.406,-8.2515],[124.4069,-8.2677],[124.4046,-8.2762],[124.4087,-8.2774],[124.413,-8.2708],[124.4227,-8.2686],[124.4391,-8.259],[124.4471,-8.2555],[124.4533,-8.2547],[124.4549,-8.2496],[124.4632,-8.2477],[124.4675,-8.2429],[124.4729,-8.2418],[124.4896,-8.2307],[124.4963,-8.2317],[124.5048,-8.2213],[124.5084,-8.2247],[124.5134,-8.2188],[124.5181,-8.2207],[124.5239,-8.2184],[124.533,-8.2176],[124.5397,-8.2244],[124.5474,-8.2228],[124.5487,-8.2173],[124.5543,-8.2135],[124.5588,-8.2154],[124.5615,-8.2212],[124.5552,-8.2236],[124.5502,-8.2232],[124.5421,-8.228],[124.5426,-8.2331],[124.5394,-8.2388],[124.5352,-8.2379],[124.5123,-8.2492],[124.5116,-8.2528],[124.5038,-8.2584],[124.4979,-8.2521],[124.4878,-8.2541],[124.4754,-8.2547],[124.4534,-8.2668],[124.4508,-8.27],[124.4469,-8.2691],[124.4433,-8.2724],[124.4419,-8.2806],[124.4363,-8.2834],[124.4307,-8.2889],[124.423,-8.2924],[124.4144,-8.2905],[124.407,-8.2954],[124.403,-8.3097],[124.4037,-8.318],[124.4003,-8.321],[124.3988,-8.3264],[124.3954,-8.3293],[124.3881,-8.3397],[124.3818,-8.3451],[124.3747,-8.3536],[124.3696,-8.3563],[124.3705,-8.3639],[124.3662,-8.368],[124.365,-8.3723],[124.3603,-8.3748],[124.3496,-8.3831],[124.3466,-8.3895],[124.3427,-8.3915],[124.3414,-8.4026],[124.3396,-8.4089],[124.3395,-8.4224],[124.3465,-8.4258],[124.3504,-8.4338],[124.3552,-8.4388],[124.3624,-8.4424],[124.3733,-8.4428],[124.3739,-8.4389],[124.3809,-8.4377],[124.3939,-8.4422],[124.4066,-8.44],[124.4129,-8.437],[124.4199,-8.4419],[124.4196,-8.4512],[124.4144,-8.4593],[124.4163,-8.4614],[124.4231,-8.4594],[124.4278,-8.4599],[124.4279,-8.4553],[124.4392,-8.4536],[124.4465,-8.447],[124.4564,-8.4419],[124.4691,-8.4363],[124.4744,-8.4299],[124.4826,-8.423],[124.4859,-8.4253],[124.4905,-8.4235],[124.4943,-8.419],[124.5099,-8.4184],[124.5199,-8.4205],[124.5292,-8.4249],[124.5397,-8.4416],[124.5471,-8.4424],[124.5503,-8.4388],[124.5549,-8.4397],[124.5608,-8.4364],[124.5905,-8.4328],[124.6038,-8.4259],[124.6105,-8.4189],[124.616,-8.4192],[124.6265,-8.4105],[124.6341,-8.4071],[124.6389,-8.4016],[124.6553,-8.3923],[124.6618,-8.3902],[124.6759,-8.3924],[124.6844,-8.3952],[124.6875,-8.3937],[124.6943,-8.3969],[124.701,-8.3973],[124.7105,-8.4006],[124.7174,-8.4049],[124.7247,-8.3998],[124.7297,-8.4019],[124.7341,-8.4014],[124.7413,-8.4048],[124.7479,-8.4036],[124.7579,-8.4038],[124.761,-8.4023],[124.7738,-8.4053],[124.7808,-8.3997],[124.7874,-8.4035],[124.7885,-8.4008],[124.8006,-8.3963],[124.8066,-8.3964],[124.821,-8.3901],[124.824,-8.3861],[124.8281,-8.3843],[124.8317,-8.3866],[124.839,-8.3872],[124.8428,-8.3823],[124.8522,-8.3795],[124.8569,-8.3762],[124.8635,-8.3749],[124.8813,-8.3655],[124.8867,-8.3655],[124.8909,-8.3626],[124.8968,-8.3646],[124.9109,-8.3614],[124.9333,-8.3575],[124.9357,-8.358],[124.9498,-8.3558],[124.9691,-8.36],[124.9869,-8.3575],[124.991,-8.3558],[125.0014,-8.3543],[125.0059,-8.355],[125.0143,-8.3531],[125.0187,-8.3568],[125.0241,-8.3566],[125.0288,-8.3535],[125.0314,-8.3554],[125.0356,-8.3532],[125.0435,-8.3562],[125.05,-8.3537],[125.0622,-8.357],[125.0772,-8.3476],[125.0875,-8.348],[125.0953,-8.3443],[125.1093,-8.3437],[125.1259,-8.3371],[125.1293,-8.3313],[125.1409,-8.3192],[125.1357,-8.315],[125.1296,-8.2968],[125.1283,-8.2821],[125.1362,-8.2708],[125.1391,-8.2638],[125.1397,-8.2577],[125.1425,-8.2523],[125.1411,-8.2408],[125.1372,-8.2239],[125.1345,-8.2188],[125.125,-8.2089],[125.1228,-8.2037],[125.1127,-8.1931],[125.1097,-8.184],[125.1073,-8.181],[125.1074,-8.1739],[125.1009,-8.1618],[125.0991,-8.1499],[125.0907,-8.145],[125.0847,-8.1455],[125.0794,-8.1489],[125.0687,-8.1478],[125.0529,-8.1496],[125.0479,-8.1463],[125.0408,-8.1464],[125.0251,-8.1492],[125.0179,-8.1536],[125.0082,-8.157],[124.9974,-8.157],[124.9895,-8.1506],[124.9823,-8.1523],[124.9765,-8.1515],[124.9717,-8.1485],[124.9675,-8.1487],[124.9658,-8.1421],[124.9586,-8.1396],[124.955,-8.1452],[124.9451,-8.1466],[124.9387,-8.1499],[124.9307,-8.1522],[124.9223,-8.1619],[124.9188,-8.1634],[124.8973,-8.1621],[124.8874,-8.1651],[124.8796,-8.1647],[124.8614,-8.1669],[124.8502,-8.166],[124.8413,-8.1636],[124.8319,-8.1639],[124.8278,-8.1661],[124.8178,-8.1631],[124.8132,-8.1647],[124.81,-8.161],[124.804,-8.1585],[124.794,-8.157],[124.786,-8.149],[124.7822,-8.1472],[124.7728,-8.1461],[124.7573,-8.1499],[124.7518,-8.1466],[124.7375,-8.1538],[124.7328,-8.1535],[124.7248,-8.1561],[124.7181,-8.1551],[124.697,-8.1583],[124.6942,-8.1569],[124.6839,-8.1602],[124.6753,-8.1647],[124.6687,-8.1621],[124.6623,-8.1682],[124.6475,-8.173],[124.6401,-8.1789],[124.6309,-8.1804],[124.6255,-8.1845],[124.6212,-8.185],[124.608,-8.197],[124.5999,-8.1953],[124.5914,-8.1839],[124.5949,-8.1766],[124.5929,-8.1422],[124.601,-8.1339],[124.6031,-8.1241],[124.5999,-8.1216],[124.592,-8.1221],[124.5851,-8.125],[124.5611,-8.1236]],[[124.6165,-8.1168],[124.6119,-8.117],[124.6102,-8.122],[124.6171,-8.1214],[124.6165,-8.1168]]]}},{"type":"Feature","properties":{"mhid":"1332:309","alt_name":"KABUPATEN LEMBATA","latitude":-8.41396,"longitude":123.55225,"sample_value":820},"geometry":{"type":"MultiLineString","coordinates":[[[123.8449,-8.2099],[123.8422,-8.2051],[123.8428,-8.1992],[123.8294,-8.1972],[123.8236,-8.1902],[123.8138,-8.185],[123.8097,-8.1778],[123.7908,-8.1692],[123.7823,-8.1672],[123.7726,-8.1703],[123.7673,-8.1753],[123.7621,-8.1771],[123.7534,-8.1838],[123.745,-8.1948],[123.7412,-8.1967],[123.7376,-8.2029],[123.7304,-8.2077],[123.7274,-8.2126],[123.7238,-8.2086],[123.716,-8.2106],[123.708,-8.2153],[123.6981,-8.2147],[123.6957,-8.2182],[123.6973,-8.2234],[123.7059,-8.2301],[123.7134,-8.2373],[123.704,-8.2379],[123.7019,-8.2485],[123.6991,-8.2518],[123.6926,-8.2544],[123.6865,-8.2548],[123.6796,-8.2533],[123.6739,-8.2498],[123.6702,-8.2532],[123.6664,-8.2531],[123.6572,-8.25],[123.652,-8.25],[123.6444,-8.2472],[123.6573,-8.243],[123.6554,-8.2368],[123.6593,-8.2311],[123.6597,-8.2262],[123.6572,-8.2215],[123.646,-8.214],[123.639,-8.2124],[123.6325,-8.2138],[123.6266,-8.217],[123.6229,-8.2211],[123.6163,-8.2221],[123.6073,-8.2167],[123.6039,-8.2176],[123.6063,-8.2239],[123.6073,-8.2382],[123.6154,-8.2391],[123.6233,-8.2429],[123.6279,-8.2467],[123.6291,-8.2504],[123.6293,-8.267],[123.6303,-8.2712],[123.6367,-8.2805],[123.6331,-8.2907],[123.6196,-8.3014],[123.6125,-8.3057],[123.6073,-8.3129],[123.5989,-8.3152],[123.598,-8.3059],[123.6055,-8.2978],[123.6054,-8.289],[123.602,-8.2838],[123.5898,-8.2851],[123.5859,-8.287],[123.5793,-8.2835],[123.5752,-8.285],[123.5758,-8.2914],[123.5743,-8.2952],[123.575,-8.3064],[123.5779,-8.3122],[123.5836,-8.3123],[123.591,-8.3103],[123.5927,-8.3153],[123.5902,-8.3245],[123.5994,-8.3219],[123.5986,-8.3294],[123.5862,-8.3497],[123.5727,-8.36],[123.563,-8.3639],[123.5539,-8.3657],[123.5478,-8.3656],[123.5389,-8.3636],[123.5289,-8.3579],[123.5263,-8.3544],[123.5179,-8.3489],[123.5126,-8.3488],[123.5051,-8.3521],[123.503,-8.3568],[123.4981,-8.3555],[123.4983,-8.3489],[123.5021,-8.3382],[123.4998,-8.3339],[123.5049,-8.332],[123.5106,-8.3238],[123.5125,-8.3186],[123.517,-8.3144],[123.5177,-8.3077],[123.5307,-8.3026],[123.5336,-8.2975],[123.5346,-8.2902],[123.5443,-8.2831],[123.5451,-8.279],[123.5426,-8.2735],[123.5476,-8.2667],[123.5535,-8.2641],[123.5476,-8.2572],[123.5488,-8.2527],[123.5613,-8.2492],[123.5641,-8.2451],[123.5607,-8.2368],[123.5517,-8.2377],[123.546,-8.2361],[123.5404,-8.2324],[123.5358,-8.2322],[123.5279,-8.2346],[123.5192,-8.2345],[123.5105,-8.2374],[123.4952,-8.2395],[123.4796,-8.2466],[123.4706,-8.2569],[123.4647,-8.2651],[123.4594,-8.2684],[123.4502,-8.268],[123.4394,-8.2606],[123.4364,-8.2623],[123.4382,-8.2679],[123.4359,-8.2699],[123.4255,-8.2644],[123.4184,-8.2528],[123.4075,-8.2502],[123.398,-8.2577],[123.3911,-8.2583],[123.384,-8.2606],[123.3796,-8.264],[123.3662,-8.2784],[123.3669,-8.2893],[123.3593,-8.2931],[123.3502,-8.2959],[123.3456,-8.2961],[123.3463,-8.3033],[123.352,-8.3037],[123.3538,-8.3004],[123.3588,-8.299],[123.3693,-8.3018],[123.3725,-8.2972],[123.3926,-8.296],[123.3954,-8.2917],[123.4,-8.2965],[123.4035,-8.2901],[123.4114,-8.2913],[123.4146,-8.2886],[123.4189,-8.2948],[123.4288,-8.2936],[123.4327,-8.2953],[123.4499,-8.31],[123.4561,-8.314],[123.4659,-8.3234],[123.469,-8.3292],[123.4734,-8.333],[123.4641,-8.3441],[123.449,-8.3534],[123.4436,-8.3537],[123.44,-8.356],[123.4364,-8.3627],[123.4323,-8.3656],[123.4261,-8.3672],[123.4212,-8.3664],[123.4107,-8.3685],[123.4037,-8.3664],[123.3977,-8.3667],[123.3876,-8.3713],[123.3843,-8.3749],[123.3812,-8.3819],[123.3752,-8.3857],[123.3661,-8.386],[123.3605,-8.389],[123.3537,-8.3901],[123.3452,-8.3959],[123.3393,-8.3959],[123.3323,-8.4024],[123.3288,-8.4097],[123.3158,-8.4246],[123.3136,-8.4299],[123.3096,-8.4344],[123.306,-8.444],[123.3006,-8.4512],[123.2942,-8.4564],[123.2894,-8.4628],[123.2831,-8.4616],[123.2789,-8.4653],[123.2665,-8.481],[123.2561,-8.4868],[123.2409,-8.5001],[123.2342,-8.5071],[123.226,-8.5093],[123.2166,-8.5059],[123.2076,-8.5142],[123.2077,-8.5167],[123.2138,-8.521],[123.217,-8.5264],[123.2132,-8.5283],[123.2136,-8.533],[123.2203,-8.53],[123.2266,-8.5316],[123.2208,-8.5374],[123.2192,-8.5459],[123.2222,-8.5502],[123.2307,-8.5491],[123.234,-8.5399],[123.2395,-8.5378],[123.2456,-8.5374],[123.2522,-8.5389],[123.2596,-8.543],[123.2683,-8.5413],[123.2777,-8.5414],[123.2902,-8.5467],[123.2925,-8.5443],[123.2979,-8.544],[123.2983,-8.5382],[123.3027,-8.5356],[123.3079,-8.5296],[123.3151,-8.5244],[123.3187,-8.5233],[123.322,-8.5281],[123.3287,-8.5302],[123.3303,-8.5334],[123.337,-8.5373],[123.3396,-8.5351],[123.3449,-8.5355],[123.3455,-8.5409],[123.3504,-8.5484],[123.3503,-8.5527],[123.3547,-8.5606],[123.3622,-8.5638],[123.3717,-8.5715],[123.3823,-8.576],[123.3877,-8.5816],[123.3953,-8.582],[123.4012,-8.5803],[123.4051,-8.5814],[123.4182,-8.5746],[123.4247,-8.5732],[123.4314,-8.5612],[123.4455,-8.546],[123.4457,-8.5413],[123.4482,-8.5364],[123.4475,-8.5314],[123.4535,-8.529],[123.4609,-8.5242],[123.465,-8.5279],[123.4756,-8.5187],[123.4805,-8.5181],[123.4901,-8.5128],[123.5023,-8.5146],[123.5083,-8.5195],[123.5065,-8.5242],[123.5086,-8.534],[123.5087,-8.5447],[123.5102,-8.5494],[123.5138,-8.5523],[123.5188,-8.5593],[123.5301,-8.5665],[123.5373,-8.5663],[123.544,-8.5634],[123.5477,-8.5672],[123.5515,-8.5628],[123.5601,-8.557],[123.5625,-8.5524],[123.5692,-8.5478],[123.5758,-8.5463],[123.5775,-8.5427],[123.5841,-8.5387],[123.5882,-8.526],[123.5847,-8.5192],[123.584,-8.5054],[123.5804,-8.4979],[123.5697,-8.4884],[123.5638,-8.4819],[123.5626,-8.4755],[123.5571,-8.4727],[123.5537,-8.4653],[123.5671,-8.4511],[123.5721,-8.4491],[123.5843,-8.4413],[123.5867,-8.4382],[123.5964,-8.4325],[123.6003,-8.4273],[123.6066,-8.4219],[123.6142,-8.4192],[123.6156,-8.4124],[123.6249,-8.4017],[123.6286,-8.4003],[123.6369,-8.4014],[123.6483,-8.4002],[123.6525,-8.4032],[123.6559,-8.4086],[123.6508,-8.4247],[123.6543,-8.4254],[123.6671,-8.4229],[123.672,-8.424],[123.6819,-8.4176],[123.6949,-8.4056],[123.6957,-8.4016],[123.7006,-8.3929],[123.7001,-8.3845],[123.7049,-8.3759],[123.7119,-8.3688],[123.7194,-8.3578],[123.7277,-8.3512],[123.7314,-8.3465],[123.7361,-8.3375],[123.7374,-8.3251],[123.7531,-8.2989],[123.7638,-8.2889],[123.7745,-8.2822],[123.7868,-8.2791],[123.7878,-8.2726],[123.7954,-8.2704],[123.8047,-8.2691],[123.8164,-8.2723],[123.8245,-8.2728],[123.8319,-8.275],[123.8374,-8.2802],[123.8516,-8.2729],[123.8643,-8.2722],[123.8737,-8.2697],[123.8816,-8.2648],[123.8931,-8.2599],[123.903,-8.258],[123.9181,-8.2532],[123.9221,-8.2497],[123.9248,-8.2441],[123.9235,-8.2392],[123.9146,-8.2276],[123.9104,-8.2204],[123.9092,-8.2156],[123.9049,-8.2109],[123.885,-8.2101],[123.8785,-8.2078],[123.8647,-8.2108],[123.8603,-8.2143],[123.86,-8.2211],[123.854,-8.2235],[123.8518,-8.2182],[123.8534,-8.2108],[123.8449,-8.2099]]]}},{"type":"Feature","properties":{"mhid":"1332:310","alt_name":"KABUPATEN FLORES TIMUR","latitude":-8.24224,"longitude":122.96817,"sample_value":611},"geometry":{"type":"MultiLineString","coordinates":[[[122.8022,-8.4465],[122.7954,-8.4474],[122.7936,-8.4502],[122.7956,-8.4573],[122.8001,-8.4576],[122.8043,-8.4528],[122.8022,-8.4465]],[[123.1462,-8.4241],[123.1391,-8.4238],[123.1306,-8.4277],[123.1288,-8.4304],[123.1225,-8.4322],[123.1166,-8.4358],[123.1089,-8.4331],[123.0953,-8.4335],[123.0898,-8.4345],[123.0812,-8.4333],[123.0549,-8.4351],[123.0512,-8.4336],[123.0368,-8.4357],[123.0337,-8.4415],[123.0223,-8.4486],[123.0153,-8.4483],[123.0076,-8.442],[123.0042,-8.4423],[122.9974,-8.4356],[122.9772,-8.4358],[122.9702,-8.4435],[122.9657,-8.4447],[122.9526,-8.4602],[122.952,-8.4713],[122.9491,-8.4838],[122.9454,-8.4932],[122.9381,-8.4965],[122.921,-8.501],[122.9137,-8.5057],[122.9006,-8.5117],[122.8848,-8.5245],[122.8817,-8.5307],[122.8799,-8.5493],[122.881,-8.5556],[122.8757,-8.5606],[122.8718,-8.5696],[122.8703,-8.5844],[122.8765,-8.591],[122.8814,-8.5945],[122.8863,-8.6094],[122.8907,-8.611],[122.9036,-8.6091],[122.9085,-8.6114],[122.9218,-8.6065],[122.9359,-8.596],[122.9421,-8.5886],[122.9452,-8.579],[122.9485,-8.5758],[122.9511,-8.5623],[122.9535,-8.5542],[122.9632,-8.5411],[122.9699,-8.5344],[122.976,-8.5151],[122.984,-8.5061],[122.9914,-8.5027],[122.9977,-8.4954],[123.0037,-8.4934],[123.0066,-8.488],[123.0219,-8.4765],[123.0284,-8.4772],[123.0346,-8.4811],[123.0401,-8.4879],[123.0506,-8.492],[123.0541,-8.4905],[123.0663,-8.4913],[123.0738,-8.4881],[123.077,-8.4892],[123.0869,-8.4822],[123.0975,-8.4778],[123.1042,-8.472],[123.1165,-8.4674],[123.1295,-8.4657],[123.1321,-8.4666],[123.1486,-8.4612],[123.1518,-8.4533],[123.1653,-8.4459],[123.1676,-8.4411],[123.1635,-8.431],[123.1605,-8.4304],[123.1515,-8.4237],[123.1462,-8.4241]],[[123.3378,-8.2564],[123.3393,-8.2508],[123.3336,-8.2464],[123.3321,-8.2511],[123.3378,-8.2564]],[[123.2114,-8.2254],[123.2006,-8.2264],[123.1961,-8.2248],[123.1912,-8.2351],[123.1831,-8.24],[123.1709,-8.2394],[123.1622,-8.2415],[123.1538,-8.2386],[123.1489,-8.2322],[123.1419,-8.2339],[123.1428,-8.2385],[123.1329,-8.2417],[123.1313,-8.2451],[123.1268,-8.2459],[123.1212,-8.2537],[123.1125,-8.2609],[123.1086,-8.2655],[123.1023,-8.2675],[123.0999,-8.2704],[123.0895,-8.2758],[123.0799,-8.2756],[123.077,-8.2789],[123.0663,-8.2848],[123.0539,-8.2959],[123.0454,-8.2985],[123.0406,-8.3052],[123.0346,-8.3067],[123.0288,-8.3117],[123.0263,-8.3209],[123.02,-8.325],[123.0211,-8.3274],[123.0171,-8.335],[123.0102,-8.339],[123.0111,-8.343],[123.0058,-8.3567],[123.0032,-8.3576],[123.0012,-8.3658],[122.9988,-8.3688],[123.0017,-8.3798],[122.9998,-8.3839],[123.0018,-8.3911],[122.9973,-8.398],[122.9979,-8.4056],[123.0012,-8.4105],[123.006,-8.4127],[123.0132,-8.4084],[123.0189,-8.4025],[123.023,-8.404],[123.0281,-8.3999],[123.0401,-8.3998],[123.0471,-8.4017],[123.053,-8.3983],[123.0589,-8.4042],[123.0641,-8.4117],[123.0697,-8.4117],[123.0789,-8.402],[123.0891,-8.4046],[123.1023,-8.4019],[123.1101,-8.4024],[123.1192,-8.3951],[123.1234,-8.3946],[123.13,-8.3906],[123.1499,-8.3916],[123.155,-8.3894],[123.1688,-8.3913],[123.1705,-8.3883],[123.179,-8.3852],[123.2022,-8.3872],[123.2167,-8.3872],[123.2205,-8.3918],[123.2244,-8.392],[123.2303,-8.3964],[123.2388,-8.396],[123.2427,-8.3933],[123.2521,-8.3956],[123.2606,-8.3958],[123.2689,-8.3937],[123.2762,-8.3954],[123.2806,-8.3917],[123.2891,-8.391],[123.2946,-8.3882],[123.2982,-8.3807],[123.2975,-8.3747],[123.3022,-8.3692],[123.3077,-8.3604],[123.3077,-8.3509],[123.3043,-8.336],[123.3033,-8.3273],[123.3037,-8.3129],[123.3051,-8.2963],[123.3078,-8.2939],[123.3127,-8.294],[123.3235,-8.2846],[123.3238,-8.2793],[123.3299,-8.2767],[123.3337,-8.27],[123.3338,-8.2643],[123.3264,-8.259],[123.3144,-8.2565],[123.3089,-8.2541],[123.3003,-8.2463],[123.2933,-8.2492],[123.2861,-8.2503],[123.2828,-8.2476],[123.276,-8.2505],[123.2654,-8.2446],[123.2646,-8.2402],[123.2558,-8.2353],[123.2502,-8.2299],[123.245,-8.2278],[123.2315,-8.2288],[123.2273,-8.2327],[123.2279,-8.2398],[123.2206,-8.244],[123.2146,-8.2422],[123.2122,-8.239],[123.2137,-8.2314],[123.2114,-8.2254]],[[122.6542,-8.6371],[122.6607,-8.6288],[122.6646,-8.626],[122.6774,-8.6221],[122.6906,-8.6257],[122.6972,-8.6266],[122.7017,-8.6232],[122.7119,-8.6259],[122.7184,-8.6292],[122.7207,-8.634],[122.7276,-8.6327],[122.7282,-8.6267],[122.7258,-8.6253],[122.7281,-8.617],[122.7325,-8.6105],[122.7372,-8.6084],[122.7473,-8.6077],[122.7516,-8.6048],[122.7613,-8.6062],[122.7719,-8.6089],[122.7747,-8.6116],[122.7813,-8.6091],[122.7873,-8.6051],[122.7966,-8.6011],[122.802,-8.6026],[122.8046,-8.5992],[122.8106,-8.5962],[122.8194,-8.5965],[122.8233,-8.5931],[122.8311,-8.5897],[122.8313,-8.5844],[122.8412,-8.5695],[122.8446,-8.5622],[122.8422,-8.56],[122.8417,-8.5532],[122.8435,-8.5474],[122.8366,-8.5268],[122.8316,-8.5175],[122.8266,-8.5158],[122.8217,-8.5091],[122.8123,-8.5012],[122.8019,-8.4968],[122.7983,-8.4938],[122.7958,-8.4862],[122.7902,-8.4841],[122.7883,-8.4788],[122.7846,-8.4619],[122.7789,-8.4577],[122.78,-8.4507],[122.7865,-8.447],[122.7866,-8.4385],[122.7837,-8.4353],[122.784,-8.4309],[122.788,-8.4262],[122.7881,-8.4226],[122.7984,-8.4222],[122.8115,-8.4257],[122.809,-8.4319],[122.814,-8.4335],[122.8164,-8.4291],[122.8288,-8.4316],[122.8311,-8.4348],[122.8287,-8.4381],[122.8408,-8.4422],[122.8482,-8.4457],[122.8532,-8.4497],[122.8602,-8.4527],[122.8678,-8.4529],[122.8721,-8.4549],[122.878,-8.4528],[122.8898,-8.4465],[122.8892,-8.4405],[122.8916,-8.4357],[122.893,-8.4197],[122.8904,-8.4107],[122.8896,-8.4021],[122.8822,-8.398],[122.8836,-8.3912],[122.8784,-8.3844],[122.8823,-8.3787],[122.8847,-8.3705],[122.8926,-8.3671],[122.8969,-8.3549],[122.9034,-8.3462],[122.9099,-8.3436],[122.9081,-8.3394],[122.9139,-8.3362],[122.9139,-8.3284],[122.9229,-8.3275],[122.9296,-8.3286],[122.9327,-8.3349],[122.9394,-8.3365],[122.947,-8.3414],[122.9552,-8.3483],[122.9645,-8.3519],[122.9731,-8.3472],[122.9829,-8.3472],[122.9896,-8.3425],[122.992,-8.3369],[123.0019,-8.3326],[123.0096,-8.3245],[123.0198,-8.3175],[123.0211,-8.3066],[123.0184,-8.2984],[123.0196,-8.2892],[123.0183,-8.2811],[123.0076,-8.2734],[122.9977,-8.2696],[122.9921,-8.2617],[122.9897,-8.2539],[122.983,-8.2511],[122.9812,-8.2446],[122.9845,-8.2384],[122.9841,-8.235],[122.9802,-8.2289],[122.978,-8.2218],[122.98,-8.2162],[122.9778,-8.2122],[122.9696,-8.2075],[122.9623,-8.195],[122.9662,-8.1918],[122.9715,-8.1742],[122.972,-8.1501],[122.9736,-8.1422],[122.9715,-8.1323],[122.9672,-8.1281],[122.9622,-8.1282],[122.955,-8.1206],[122.9411,-8.1151],[122.9404,-8.1121],[122.9353,-8.1087],[122.9226,-8.1048],[122.9166,-8.1021],[122.9081,-8.0957],[122.8928,-8.0878],[122.8878,-8.083],[122.8851,-8.0762],[122.8821,-8.0738],[122.8699,-8.0683],[122.8658,-8.0635],[122.8503,-8.0751],[122.8443,-8.0702],[122.842,-8.0732],[122.8462,-8.0766],[122.8448,-8.0802],[122.839,-8.0818],[122.8313,-8.096],[122.8224,-8.0968],[122.8177,-8.0955],[122.8079,-8.1006],[122.803,-8.1049],[122.7948,-8.1078],[122.7881,-8.1054],[122.7827,-8.1079],[122.7807,-8.112],[122.7811,-8.1211],[122.7783,-8.1362],[122.7807,-8.1376],[122.7853,-8.1491],[122.7824,-8.1518],[122.7816,-8.1569],[122.7702,-8.1705],[122.7659,-8.1736],[122.7614,-8.1794],[122.7619,-8.1835],[122.7595,-8.1942],[122.7504,-8.1982],[122.7489,-8.2015],[122.7313,-8.2166],[122.7307,-8.2245],[122.734,-8.228],[122.7417,-8.2289],[122.7493,-8.226],[122.7552,-8.2299],[122.7624,-8.225],[122.7668,-8.2264],[122.7685,-8.231],[122.7752,-8.2312],[122.7813,-8.2354],[122.7878,-8.2355],[122.7931,-8.2254],[122.7972,-8.2236],[122.797,-8.2155],[122.7995,-8.2083],[122.8088,-8.1985],[122.8129,-8.1963],[122.8333,-8.193],[122.8482,-8.1825],[122.8499,-8.1887],[122.8589,-8.1862],[122.8661,-8.1762],[122.8702,-8.1796],[122.876,-8.1787],[122.8821,-8.1807],[122.8867,-8.1753],[122.9012,-8.1793],[122.9164,-8.1917],[122.922,-8.1952],[122.9377,-8.1926],[122.9397,-8.1997],[122.9379,-8.2018],[122.9264,-8.2033],[122.9191,-8.208],[122.9121,-8.2178],[122.9084,-8.2249],[122.9074,-8.2379],[122.9043,-8.2405],[122.9003,-8.2509],[122.8954,-8.2555],[122.8931,-8.2775],[122.8867,-8.2819],[122.8845,-8.2868],[122.8721,-8.2937],[122.8649,-8.2915],[122.854,-8.29],[122.8464,-8.2925],[122.8419,-8.2921],[122.8363,-8.295],[122.827,-8.2928],[122.8165,-8.2993],[122.8117,-8.2978],[122.8074,-8.3037],[122.8026,-8.3064],[122.7994,-8.3109],[122.793,-8.3131],[122.789,-8.3166],[122.7823,-8.3297],[122.7741,-8.3431],[122.7716,-8.3525],[122.7693,-8.3542],[122.7678,-8.3611],[122.7604,-8.3637],[122.7538,-8.3618],[122.7515,-8.3594],[122.7356,-8.3578],[122.7277,-8.3606],[122.7239,-8.3603],[122.7178,-8.3658],[122.7139,-8.366],[122.7059,-8.374],[122.6964,-8.3773],[122.6887,-8.3781],[122.6856,-8.3829],[122.6822,-8.3833]]]}},{"type":"Feature","properties":{"mhid":"1332:311","alt_name":"KABUPATEN SIKKA","latitude":-8.66667,"longitude":122.36667,"sample_value":988},"geometry":{"type":"MultiLineString","coordinates":[[[122.4523,-8.4592],[122.4388,-8.46],[122.4279,-8.4661],[122.4229,-8.4667],[122.4229,-8.472],[122.4311,-8.4753],[122.4423,-8.4724],[122.4486,-8.4732],[122.4523,-8.4764],[122.4573,-8.4733],[122.4564,-8.4686],[122.4485,-8.4649],[122.4523,-8.4592]],[[122.3725,-8.4283],[122.3556,-8.4298],[122.3451,-8.4285],[122.3395,-8.4339],[122.3338,-8.4362],[122.3351,-8.4416],[122.3357,-8.4561],[122.334,-8.4605],[122.3375,-8.4687],[122.345,-8.477],[122.3493,-8.4836],[122.3549,-8.4882],[122.3658,-8.4901],[122.3692,-8.4941],[122.3788,-8.4974],[122.3888,-8.4979],[122.391,-8.4967],[122.3973,-8.4881],[122.4008,-8.4892],[122.4057,-8.4818],[122.4151,-8.4769],[122.417,-8.4696],[122.4121,-8.4655],[122.4137,-8.4582],[122.4225,-8.4513],[122.4162,-8.4365],[122.4098,-8.443],[122.4078,-8.4479],[122.4009,-8.4409],[122.397,-8.4396],[122.3932,-8.4346],[122.3808,-8.4319],[122.3725,-8.4283]],[[122.5121,-8.4132],[122.5082,-8.4132],[122.5008,-8.4176],[122.4979,-8.4216],[122.498,-8.4299],[122.5012,-8.4352],[122.507,-8.4339],[122.5142,-8.4345],[122.5191,-8.4314],[122.5202,-8.4235],[122.5174,-8.4163],[122.5121,-8.4132]],[[122.6822,-8.3833],[122.6775,-8.3858],[122.6647,-8.39],[122.656,-8.3902],[122.651,-8.3873],[122.6452,-8.3862],[122.6347,-8.3813],[122.6249,-8.3841],[122.6209,-8.3836],[122.6154,-8.389],[122.6168,-8.3942],[122.6145,-8.3965],[122.6068,-8.3961],[122.6036,-8.3924],[122.5972,-8.3929],[122.597,-8.3992],[122.5939,-8.4062],[122.5896,-8.4113],[122.5922,-8.4235],[122.5877,-8.4275],[122.5821,-8.4291],[122.5777,-8.4271],[122.5714,-8.4283],[122.5704,-8.4337],[122.5555,-8.455],[122.5487,-8.4604],[122.5467,-8.4642],[122.5335,-8.463],[122.5303,-8.4671],[122.5253,-8.4653],[122.5197,-8.4673],[122.5085,-8.4683],[122.4913,-8.473],[122.4843,-8.4846],[122.4793,-8.4905],[122.4794,-8.4947],[122.4886,-8.5092],[122.4971,-8.5174],[122.507,-8.5199],[122.5136,-8.5266],[122.5178,-8.5263],[122.5141,-8.5373],[122.5169,-8.5488],[122.5136,-8.5495],[122.5106,-8.555],[122.5075,-8.5553],[122.5034,-8.5628],[122.491,-8.5822],[122.4863,-8.5837],[122.4856,-8.5913],[122.4749,-8.6084],[122.4718,-8.6095],[122.4616,-8.6031],[122.4507,-8.6032],[122.4418,-8.6047],[122.4336,-8.6083],[122.4195,-8.6075],[122.409,-8.612],[122.4011,-8.6084],[122.3865,-8.61],[122.3829,-8.6087],[122.3728,-8.6112],[122.364,-8.6114],[122.3548,-8.6153],[122.3517,-8.6186],[122.3418,-8.6185],[122.3374,-8.6167],[122.3347,-8.619],[122.3295,-8.6186],[122.3171,-8.6328],[122.3128,-8.6323],[122.3093,-8.6358],[122.3039,-8.6372],[122.2969,-8.6422],[122.2896,-8.6417],[122.2812,-8.6366],[122.2727,-8.6369],[122.2672,-8.6327],[122.2603,-8.6338],[122.2513,-8.6327],[122.2399,-8.6276],[122.2339,-8.6269],[122.2273,-8.6221],[122.2214,-8.62],[122.2162,-8.6077],[122.2026,-8.604],[122.196,-8.5994],[122.1949,-8.5951],[122.1906,-8.5897],[122.1852,-8.5881],[122.1823,-8.5793],[122.1756,-8.575],[122.1702,-8.5661],[122.1577,-8.5547],[122.1521,-8.5526],[122.1388,-8.5495],[122.1321,-8.5448],[122.1272,-8.5441],[122.1177,-8.5369],[122.1057,-8.5311],[122.1039,-8.5288],[122.0979,-8.5294],[122.0892,-8.5345],[122.092,-8.5393],[122.0891,-8.5429],[122.083,-8.5427],[122.0801,-8.5364],[122.0799,-8.5301],[122.0776,-8.5267],[122.0713,-8.5237],[122.0612,-8.5222],[122.0586,-8.5301],[122.0527,-8.5287],[122.0461,-8.5248],[122.0436,-8.5198],[122.0407,-8.5204],[122.0393,-8.5275],[122.0305,-8.5288],[122.0238,-8.5258],[122.0202,-8.5304],[122.0133,-8.527],[122.0066,-8.5139]],[[121.9972,-8.8059],[122.0002,-8.8079],[122.0049,-8.8023],[122.0168,-8.7953],[122.0209,-8.7973],[122.0318,-8.7946],[122.0321,-8.7916],[122.0365,-8.7846],[122.0465,-8.7793],[122.0525,-8.7681],[122.0571,-8.7656],[122.0658,-8.7641],[122.0749,-8.7595],[122.0786,-8.7466],[122.084,-8.7414],[122.0961,-8.7362],[122.1083,-8.7346],[122.1173,-8.7296],[122.1288,-8.7311],[122.1327,-8.7293],[122.1437,-8.7295],[122.1455,-8.7283],[122.1751,-8.7298],[122.1816,-8.7325],[122.1916,-8.7435],[122.1945,-8.7492],[122.2026,-8.7486],[122.2056,-8.7508],[122.2141,-8.7493],[122.215,-8.7457],[122.2247,-8.7434],[122.2371,-8.7423],[122.2437,-8.7432],[122.2497,-8.7476],[122.2664,-8.7526],[122.2779,-8.7545],[122.284,-8.7545],[122.2862,-8.7498],[122.2941,-8.746],[122.2994,-8.7461],[122.3067,-8.7418],[122.3123,-8.7407],[122.3302,-8.7418],[122.3348,-8.7392],[122.3491,-8.7414],[122.3623,-8.7472],[122.3638,-8.7494],[122.3736,-8.7525],[122.3779,-8.7514],[122.3828,-8.7447],[122.3912,-8.7442],[122.4027,-8.7449],[122.4136,-8.7422],[122.4226,-8.7414],[122.43,-8.7348],[122.4427,-8.7331],[122.4519,-8.7367],[122.4621,-8.7321],[122.4704,-8.7323],[122.4705,-8.7286],[122.4769,-8.7226],[122.488,-8.7207],[122.4892,-8.7189],[122.5005,-8.7188],[122.5134,-8.7152],[122.5222,-8.7081],[122.5278,-8.7092],[122.533,-8.7036],[122.5397,-8.7013],[122.5426,-8.6924],[122.5464,-8.6881],[122.5544,-8.6731],[122.5558,-8.6676],[122.5669,-8.6644],[122.5774,-8.6651],[122.5869,-8.6624],[122.598,-8.6522],[122.6043,-8.6491],[122.6109,-8.6498],[122.6182,-8.6555],[122.6244,-8.6507],[122.6292,-8.6404],[122.6458,-8.6365],[122.6542,-8.6371]],[[122.3148,-8.3451],[122.3102,-8.3466],[122.3071,-8.3517],[122.2988,-8.3566],[122.2935,-8.3542],[122.2846,-8.3544],[122.2841,-8.3569],[122.2756,-8.3659],[122.2762,-8.3684],[122.2858,-8.3687],[122.2926,-8.3636],[122.2985,-8.365],[122.299,-8.3684],[122.3072,-8.3686],[122.3174,-8.3543],[122.3237,-8.35],[122.3209,-8.3459],[122.3148,-8.3451]],[[121.707,-8.292],[121.7023,-8.2951],[121.6958,-8.2957],[121.6857,-8.3045],[121.6862,-8.3109],[121.6814,-8.3129],[121.6808,-8.3167],[121.6767,-8.3232],[121.6783,-8.3397],[121.6835,-8.3428],[121.6871,-8.3473],[121.6928,-8.3501],[121.7049,-8.3518],[121.7128,-8.3544],[121.7284,-8.3528],[121.7356,-8.3491],[121.7425,-8.3429],[121.7465,-8.3301],[121.7457,-8.3239],[121.7409,-8.3195],[121.7412,-8.3149],[121.7389,-8.3076],[121.7352,-8.3049],[121.73,-8.2966],[121.7213,-8.2967],[121.7139,-8.2926],[121.707,-8.292]],[[122.1313,-8.1075],[122.1265,-8.1078],[122.1207,-8.1123],[122.1134,-8.111],[122.1058,-8.1165],[122.1042,-8.1223],[122.11,-8.124],[122.1187,-8.1195],[122.1222,-8.1213],[122.1309,-8.1214],[122.1348,-8.1134],[122.1344,-8.1075],[122.1313,-8.1075]]]}},{"type":"Feature","properties":{"mhid":"1332:312","alt_name":"KABUPATEN ENDE","latitude":-8.84056,"longitude":121.66389,"sample_value":477},"geometry":{"type":"MultiLineString","coordinates":[[[121.5285,-8.8558],[121.5242,-8.8501],[121.5183,-8.856],[121.5227,-8.873],[121.5179,-8.8791],[121.5132,-8.8778],[121.5091,-8.8814],[121.5089,-8.8902],[121.507,-8.8919],[121.5098,-8.8995],[121.5161,-8.907],[121.522,-8.9064],[121.529,-8.9002],[121.5326,-8.8936],[121.535,-8.8853],[121.5297,-8.8786],[121.5284,-8.872],[121.5332,-8.8648],[121.5309,-8.8573],[121.5285,-8.8558]],[[122.0066,-8.5139],[122.0062,-8.509],[122.0109,-8.5074],[122.0125,-8.5036],[122.0091,-8.4951],[122.0093,-8.4868],[122.0141,-8.4817],[122.0139,-8.4791],[122.0191,-8.4724],[122.0177,-8.4622],[122.0226,-8.4575],[122.0221,-8.4522],[122.0259,-8.4452],[122.0145,-8.4405],[122.0079,-8.4422],[122.0069,-8.4472],[122.0016,-8.4503],[121.9953,-8.4488],[121.9917,-8.4529],[121.9862,-8.4495],[121.9756,-8.456],[121.9689,-8.4572],[121.9651,-8.4611],[121.965,-8.4643],[121.9594,-8.4724],[121.955,-8.4728],[121.9527,-8.4684],[121.958,-8.4619],[121.9519,-8.4559],[121.955,-8.4486],[121.9439,-8.4563],[121.9457,-8.4629],[121.9424,-8.4652],[121.942,-8.4694],[121.9323,-8.4785],[121.9316,-8.4825],[121.9272,-8.4852],[121.9232,-8.4903],[121.9134,-8.4956],[121.9053,-8.4938],[121.898,-8.4969],[121.895,-8.4947],[121.8846,-8.4988],[121.8816,-8.4961],[121.8744,-8.4988],[121.8594,-8.4934],[121.8551,-8.4942],[121.8455,-8.4869],[121.8436,-8.482],[121.8331,-8.4894],[121.8312,-8.4952],[121.8274,-8.4996],[121.8201,-8.5038],[121.8148,-8.5016],[121.8132,-8.5056],[121.8003,-8.5106],[121.7888,-8.5093],[121.7855,-8.5031],[121.7816,-8.5001],[121.7718,-8.503],[121.764,-8.5007],[121.7606,-8.5011],[121.7542,-8.4975],[121.7502,-8.498],[121.7349,-8.4945],[121.7255,-8.4945],[121.7208,-8.4981],[121.7096,-8.5016],[121.6994,-8.508],[121.6863,-8.5117],[121.6802,-8.512],[121.6733,-8.5089],[121.6672,-8.5026],[121.665,-8.4954],[121.6603,-8.494],[121.6563,-8.4997],[121.6507,-8.5014],[121.6419,-8.4988],[121.6372,-8.4857],[121.6441,-8.4813],[121.6389,-8.4749],[121.6309,-8.4717],[121.6225,-8.478],[121.6189,-8.4718],[121.6113,-8.4847],[121.6076,-8.4822],[121.605,-8.4914],[121.6065,-8.4985],[121.6026,-8.5069],[121.6072,-8.5156],[121.6021,-8.5243],[121.6027,-8.5303],[121.6012,-8.5354],[121.6026,-8.5438],[121.6058,-8.5447],[121.6122,-8.5537],[121.6113,-8.559],[121.6056,-8.5596],[121.5937,-8.55],[121.5912,-8.546],[121.5769,-8.5386],[121.5771,-8.5348],[121.5703,-8.5309],[121.5641,-8.5402],[121.566,-8.5425],[121.5663,-8.554],[121.5732,-8.5595],[121.5776,-8.56],[121.5817,-8.5648],[121.5816,-8.5694],[121.5779,-8.5746],[121.5745,-8.5762],[121.5656,-8.5742],[121.5591,-8.5768],[121.5532,-8.576],[121.5493,-8.5799],[121.5425,-8.5837],[121.5401,-8.5932],[121.5406,-8.6003],[121.5319,-8.601],[121.5259,-8.5956],[121.5253,-8.6025],[121.5285,-8.6091],[121.5265,-8.612],[121.5203,-8.6143]],[[121.4157,-8.788],[121.4153,-8.7943],[121.4276,-8.7936],[121.4294,-8.795],[121.441,-8.7954],[121.4624,-8.7991],[121.4697,-8.7984],[121.4856,-8.7988],[121.5026,-8.8038],[121.5456,-8.8096],[121.5487,-8.8055],[121.5526,-8.805],[121.5572,-8.8013],[121.5695,-8.7978],[121.5772,-8.7992],[121.5869,-8.8029],[121.5949,-8.8087],[121.5951,-8.8119],[121.6009,-8.8168],[121.6028,-8.8214],[121.6092,-8.8257],[121.6187,-8.8295],[121.6217,-8.8294],[121.6351,-8.8344],[121.6401,-8.8384],[121.6428,-8.8437],[121.6425,-8.8493],[121.6339,-8.8651],[121.629,-8.8773],[121.625,-8.8931],[121.6265,-8.8982],[121.636,-8.9017],[121.6393,-8.9055],[121.6463,-8.905],[121.6523,-8.8998],[121.6544,-8.8928],[121.6619,-8.8862],[121.6637,-8.8817],[121.6645,-8.8734],[121.6617,-8.8654],[121.6613,-8.8561],[121.6688,-8.849],[121.6824,-8.8462],[121.7011,-8.8519],[121.7108,-8.8562],[121.7225,-8.863],[121.7288,-8.8684],[121.7351,-8.8776],[121.7431,-8.8773],[121.7523,-8.8794],[121.769,-8.8814],[121.772,-8.8833],[121.7774,-8.883],[121.7867,-8.878],[121.7916,-8.8775],[121.8012,-8.8719],[121.81,-8.8726],[121.8197,-8.8663],[121.8207,-8.8617],[121.8252,-8.858],[121.8321,-8.8565],[121.8357,-8.8528],[121.8408,-8.851],[121.8496,-8.8512],[121.8546,-8.8456],[121.8581,-8.8372],[121.8669,-8.8337],[121.8742,-8.8333],[121.881,-8.8293],[121.8883,-8.828],[121.8946,-8.8309],[121.9058,-8.8297],[121.9093,-8.832],[121.9194,-8.8302],[121.924,-8.8317],[121.9307,-8.8296],[121.9358,-8.8264],[121.9436,-8.8254],[121.9528,-8.8199],[121.9562,-8.8202],[121.9657,-8.8158],[121.9685,-8.8126],[121.9797,-8.8128],[121.9821,-8.8103],[121.9972,-8.8059]]]}},{"type":"Feature","properties":{"mhid":"1332:313","alt_name":"KABUPATEN NGADA","latitude":-8.66667,"longitude":121,"sample_value":102},"geometry":{"type":"MultiLineString","coordinates":[[[121.1732,-8.4407],[121.1659,-8.4435],[121.1607,-8.4409],[121.1564,-8.4351],[121.1506,-8.4338],[121.1432,-8.426],[121.1393,-8.4283],[121.1284,-8.4264],[121.1159,-8.4285],[121.1033,-8.4253],[121.0944,-8.4182],[121.0875,-8.4204],[121.0725,-8.4125],[121.0634,-8.4107],[121.0506,-8.4117],[121.0408,-8.4157],[121.0309,-8.4136],[121.0238,-8.4141],[121.0158,-8.4028],[121.0148,-8.3981],[121.009,-8.3965],[121.0103,-8.3921],[121.0001,-8.3937],[120.9921,-8.393],[120.9905,-8.3841],[120.9848,-8.3781],[120.9789,-8.3756],[120.9785,-8.3807],[120.9738,-8.3811],[120.9704,-8.3738],[120.9632,-8.3697],[120.9652,-8.3641],[120.9719,-8.3666],[120.9738,-8.3705],[120.9803,-8.3668],[120.982,-8.3592],[120.9859,-8.3524],[120.9846,-8.3499],[120.9643,-8.3447],[120.9517,-8.3441],[120.9435,-8.3456],[120.9439,-8.3483],[120.9497,-8.3553],[120.9563,-8.3691],[120.9495,-8.3709]],[[120.8191,-8.8359],[120.8225,-8.836],[120.8262,-8.8323],[120.8357,-8.8289],[120.8429,-8.8327],[120.8469,-8.8332],[120.8542,-8.8407],[120.857,-8.8538],[120.8675,-8.8676],[120.8666,-8.8769],[120.8693,-8.8836],[120.8736,-8.8869],[120.8812,-8.8874],[120.8862,-8.8921],[120.8871,-8.8957],[120.9015,-8.9061],[120.9036,-8.9119],[120.9142,-8.9211],[120.9209,-8.9252],[120.9292,-8.9287],[120.9321,-8.9335],[120.936,-8.9337],[120.9465,-8.9399],[120.9588,-8.9448],[120.9705,-8.9463],[120.9757,-8.9435],[120.9813,-8.9443],[120.9866,-8.9514],[121.0151,-8.9564],[121.0169,-8.9543],[121.0241,-8.9537],[121.0311,-8.9562],[121.0388,-8.9543],[121.0434,-8.9496],[121.0513,-8.9466],[121.0565,-8.948],[121.068,-8.9356],[121.0769,-8.9303],[121.0809,-8.9306],[121.0847,-8.9259],[121.0957,-8.9201],[121.1029,-8.9192],[121.1057,-8.9163],[121.1135,-8.916],[121.115,-8.9133],[121.1226,-8.9093],[121.1265,-8.9095],[121.1352,-8.9036],[121.1393,-8.898]]]}},{"type":"Feature","properties":{"mhid":"1332:314","alt_name":"KABUPATEN MANGGARAI","latitude":-8.56667,"longitude":120.41667,"sample_value":941},"geometry":{"type":"MultiLineString","coordinates":[[[120.296,-8.8725],[120.2879,-8.8684],[120.2829,-8.8696],[120.274,-8.8762],[120.2677,-8.8844],[120.2654,-8.8899],[120.2566,-8.9023],[120.2727,-8.9155],[120.2797,-8.9128],[120.2874,-8.9121],[120.2984,-8.9044],[120.3061,-8.9002],[120.3046,-8.8936],[120.3057,-8.8908],[120.3048,-8.8802],[120.3014,-8.8753],[120.296,-8.8725]],[[120.4928,-8.2927],[120.4689,-8.2956],[120.4639,-8.2943],[120.4593,-8.2867],[120.4514,-8.2852],[120.4501,-8.2826],[120.4524,-8.2738],[120.4524,-8.2686],[120.4485,-8.2584],[120.4445,-8.2547],[120.4423,-8.2486],[120.4335,-8.2444],[120.4286,-8.2409],[120.4191,-8.2445],[120.4137,-8.2514],[120.4144,-8.2622],[120.4126,-8.2677],[120.4129,-8.2728],[120.4082,-8.2804],[120.3958,-8.283],[120.3882,-8.288],[120.3832,-8.2889],[120.3768,-8.2876],[120.373,-8.2917],[120.3622,-8.2951],[120.3503,-8.2886],[120.3408,-8.2873],[120.3377,-8.2825],[120.3305,-8.2809],[120.3277,-8.2828],[120.3115,-8.2835],[120.3065,-8.2823],[120.2985,-8.2849],[120.2916,-8.2807]],[[120.2281,-8.8415],[120.233,-8.8443],[120.2457,-8.8454],[120.2505,-8.8488],[120.2648,-8.8464],[120.2682,-8.8472],[120.278,-8.8536],[120.2943,-8.845],[120.2978,-8.8443],[120.3075,-8.8502],[120.3114,-8.8552],[120.3173,-8.8536],[120.3199,-8.8494],[120.3311,-8.8417],[120.3354,-8.8355],[120.3397,-8.8333],[120.345,-8.8338],[120.3553,-8.8306],[120.3633,-8.8245],[120.3659,-8.825],[120.3709,-8.8191],[120.3762,-8.8194],[120.3827,-8.8173],[120.3863,-8.8193],[120.3914,-8.8262],[120.3937,-8.8267],[120.4045,-8.824],[120.4207,-8.8169],[120.4299,-8.8195],[120.4379,-8.8136],[120.4472,-8.8163],[120.459,-8.8181],[120.4697,-8.8171],[120.4785,-8.8205],[120.4861,-8.8196],[120.4897,-8.8213],[120.5094,-8.819],[120.5137,-8.821],[120.5184,-8.8184]]]}},{"type":"Feature","properties":{"mhid":"1332:315","alt_name":"KABUPATEN ROTE NDAO","latitude":-10.73617,"longitude":123.12054,"sample_value":166},"geometry":{"type":"MultiLineString","coordinates":[[[122.8714,-10.9688],[122.8633,-10.964],[122.8547,-10.9686],[122.8452,-10.9695],[122.847,-10.9766],[122.8464,-10.9823],[122.8537,-10.9933],[122.858,-10.9953],[122.8677,-11.0042],[122.8724,-11.0072],[122.8827,-11.005],[122.8867,-10.9983],[122.8856,-10.9903],[122.8819,-10.9781],[122.8714,-10.9688]],[[122.9578,-10.9173],[122.9524,-10.9159],[122.9483,-10.92],[122.9383,-10.9154],[122.9353,-10.9158],[122.9302,-10.9244],[122.933,-10.9362],[122.9381,-10.9399],[122.9425,-10.9407],[122.9474,-10.9384],[122.9551,-10.9381],[122.957,-10.9316],[122.961,-10.9304],[122.9663,-10.9225],[122.9705,-10.9191],[122.9578,-10.9173]],[[122.9918,-10.9079],[122.9876,-10.9083],[122.9829,-10.912],[122.9784,-10.9114],[122.977,-10.9153],[122.9859,-10.9239],[122.9947,-10.9235],[123.0004,-10.9193],[122.998,-10.9172],[122.999,-10.9118],[122.9918,-10.9079]],[[122.7385,-10.8243],[122.7337,-10.8256],[122.7305,-10.8303],[122.7334,-10.8347],[122.7401,-10.8349],[122.749,-10.8284],[122.7457,-10.8249],[122.7385,-10.8243]],[[122.6683,-10.8001],[122.6662,-10.7985],[122.6506,-10.8016],[122.6424,-10.8024],[122.6399,-10.8059],[122.6542,-10.8169],[122.6624,-10.8243],[122.6778,-10.8339],[122.6814,-10.8315],[122.6862,-10.834],[122.6877,-10.8278],[122.6815,-10.8202],[122.674,-10.8153],[122.6694,-10.8091],[122.6683,-10.8001]],[[122.7731,-10.7723],[122.7641,-10.7723],[122.7553,-10.774],[122.75,-10.7776],[122.7499,-10.7855],[122.754,-10.7883],[122.762,-10.7892],[122.7695,-10.7873],[122.7837,-10.7821],[122.7871,-10.7746],[122.7854,-10.7732],[122.7731,-10.7723]],[[122.9569,-10.7303],[122.9549,-10.7276],[122.9463,-10.728],[122.9488,-10.7326],[122.9569,-10.7303]],[[123.4268,-10.4909],[123.4214,-10.491],[123.4157,-10.4935],[123.408,-10.4942],[123.4038,-10.4993],[123.4024,-10.511],[123.4065,-10.5159],[123.4035,-10.5198],[123.3992,-10.5197],[123.3947,-10.5233],[123.3941,-10.5264],[123.3893,-10.5315],[123.3874,-10.5365],[123.3799,-10.5406],[123.3747,-10.545],[123.3805,-10.5465],[123.3809,-10.558],[123.3828,-10.5606],[123.3876,-10.5586],[123.391,-10.5513],[123.399,-10.5373],[123.4064,-10.5358],[123.4124,-10.5313],[123.4128,-10.5258],[123.4244,-10.5199],[123.4278,-10.5166],[123.4286,-10.5123],[123.4327,-10.5068],[123.4354,-10.5092],[123.4396,-10.5061],[123.4422,-10.501],[123.442,-10.4953],[123.4394,-10.4922],[123.4344,-10.493],[123.4268,-10.4909]],[[123.3787,-10.431],[123.3741,-10.4314],[123.3691,-10.4401],[123.3725,-10.4491],[123.3716,-10.4528],[123.3758,-10.4573],[123.3718,-10.4657],[123.365,-10.4698],[123.3693,-10.4783],[123.3499,-10.4871],[123.3491,-10.4823],[123.3393,-10.4861],[123.3337,-10.4913],[123.326,-10.5005],[123.3089,-10.5059],[123.2942,-10.5096],[123.288,-10.5171],[123.2841,-10.5146],[123.2792,-10.5195],[123.2728,-10.5183],[123.2634,-10.5213],[123.2554,-10.5311],[123.2511,-10.5343],[123.2392,-10.5535],[123.2344,-10.5592],[123.231,-10.5664],[123.221,-10.5695],[123.2132,-10.5797],[123.2185,-10.5842],[123.2207,-10.5926],[123.2244,-10.5966],[123.2288,-10.5958],[123.2448,-10.6029],[123.2535,-10.6034],[123.2584,-10.5958],[123.2642,-10.5933],[123.2771,-10.5795],[123.2849,-10.5804],[123.2957,-10.5791],[123.3001,-10.5773],[123.3137,-10.5768],[123.316,-10.5811],[123.3123,-10.5912],[123.3096,-10.5936],[123.2965,-10.5953],[123.2932,-10.5939],[123.2878,-10.5991],[123.2822,-10.6],[123.275,-10.6047],[123.2706,-10.6047],[123.2673,-10.6008],[123.2631,-10.6038],[123.2561,-10.6057],[123.2467,-10.6045],[123.2374,-10.6014],[123.2346,-10.6048],[123.2293,-10.6052],[123.2217,-10.5972],[123.2138,-10.595],[123.2069,-10.5914],[123.203,-10.5913],[123.1948,-10.5939],[123.1895,-10.605],[123.1919,-10.6142],[123.1888,-10.6209],[123.1805,-10.6308],[123.1773,-10.6369],[123.1677,-10.6439],[123.1628,-10.6448],[123.1605,-10.6498],[123.1532,-10.6503],[123.1498,-10.6526],[123.1436,-10.6523],[123.1341,-10.6477],[123.1328,-10.6443],[123.1265,-10.6458],[123.1159,-10.6618],[123.1089,-10.6638],[123.1093,-10.6693],[123.1002,-10.6744],[123.0939,-10.6717],[123.0929,-10.6809],[123.0873,-10.6867],[123.0804,-10.6893],[123.0765,-10.693],[123.0713,-10.703],[123.0677,-10.7049],[123.0639,-10.7023],[123.0605,-10.7097],[123.05,-10.7209],[123.0481,-10.725],[123.0441,-10.726],[123.0423,-10.7296],[123.0339,-10.7295],[123.0287,-10.7249],[123.0225,-10.7295],[123.0205,-10.7346],[123.014,-10.7301],[123.0079,-10.7301],[123.0012,-10.7331],[122.9969,-10.7322],[122.9867,-10.7335],[122.9852,-10.7396],[122.9744,-10.7431],[122.9589,-10.7418],[122.9563,-10.7441],[122.9475,-10.7462],[122.9374,-10.7371],[122.9335,-10.7365],[122.9327,-10.7417],[122.9277,-10.7428],[122.9225,-10.7472],[122.9129,-10.7464],[122.9092,-10.7506],[122.9002,-10.752],[122.898,-10.7553],[122.8888,-10.7574],[122.874,-10.7555],[122.8627,-10.7568],[122.8539,-10.7626],[122.8511,-10.7674],[122.8463,-10.7709],[122.8341,-10.7742],[122.8333,-10.7782],[122.8376,-10.7831],[122.8372,-10.7879],[122.8259,-10.7863],[122.8253,-10.7812],[122.8224,-10.78],[122.81,-10.782],[122.8048,-10.7964],[122.8042,-10.8026],[122.8128,-10.8161],[122.8195,-10.8204],[122.8256,-10.8341],[122.824,-10.8417],[122.8273,-10.8473],[122.8305,-10.8594],[122.8311,-10.8707],[122.8299,-10.8747],[122.8213,-10.8917],[122.8216,-10.9071],[122.8239,-10.9143],[122.8221,-10.9193],[122.8248,-10.9231],[122.8337,-10.9273],[122.8343,-10.9312],[122.8408,-10.9379],[122.8466,-10.9419],[122.8559,-10.9398],[122.8595,-10.9333],[122.8575,-10.9278],[122.8607,-10.9198],[122.8749,-10.9144],[122.8825,-10.9156],[122.8886,-10.9146],[122.8978,-10.9109],[122.9017,-10.9129],[122.8977,-10.9204],[122.9032,-10.9207],[122.9054,-10.9171],[122.9029,-10.9119],[122.9101,-10.9119],[122.9065,-10.9226],[122.9115,-10.9249],[122.9195,-10.9206],[122.9232,-10.9149],[122.929,-10.9154],[122.9399,-10.911],[122.9498,-10.9041],[122.9538,-10.907],[122.9607,-10.9077],[122.969,-10.9148],[122.973,-10.9133],[122.9696,-10.9067],[122.9667,-10.9063],[122.9646,-10.9007],[122.9565,-10.8987],[122.949,-10.8927],[122.9497,-10.8872],[122.9583,-10.8805],[122.9646,-10.879],[122.9638,-10.8755],[122.9687,-10.8702],[122.98,-10.8649],[122.9821,-10.8653],[122.9887,-10.8605],[123.0055,-10.8589],[123.011,-10.8644],[123.0128,-10.8621],[123.0182,-10.8666],[123.0207,-10.8626],[123.0263,-10.8589],[123.0339,-10.8574],[123.0427,-10.8572],[123.052,-10.8556],[123.0611,-10.8578],[123.0683,-10.8563],[123.0708,-10.8478],[123.0829,-10.8567],[123.0893,-10.8567],[123.0941,-10.8479],[123.094,-10.8447],[123.1018,-10.8344],[123.1028,-10.8314],[123.1105,-10.8267],[123.1188,-10.8232],[123.1256,-10.8181],[123.1447,-10.8143],[123.1498,-10.8143],[123.1593,-10.8166],[123.1738,-10.8283],[123.1846,-10.8322],[123.1892,-10.8369],[123.1955,-10.8325],[123.1984,-10.8253],[123.2093,-10.8217],[123.2162,-10.8232],[123.223,-10.8267],[123.2281,-10.8187],[123.2285,-10.8061],[123.2302,-10.7987],[123.2418,-10.7846],[123.2449,-10.7769],[123.243,-10.7726],[123.243,-10.764],[123.2369,-10.7568],[123.2402,-10.7495],[123.2467,-10.7505],[123.2458,-10.7456],[123.2512,-10.7365],[123.2542,-10.7336],[123.2583,-10.7351],[123.2619,-10.7331],[123.2663,-10.734],[123.2703,-10.7296],[123.2828,-10.7282],[123.287,-10.7248],[123.2945,-10.7232],[123.3043,-10.7127],[123.3042,-10.7052],[123.3099,-10.7005],[123.3137,-10.7005],[123.3212,-10.6969],[123.3254,-10.6926],[123.3288,-10.6921],[123.3307,-10.6875],[123.3273,-10.6838],[123.3306,-10.6788],[123.3354,-10.6773],[123.338,-10.6816],[123.3456,-10.6863],[123.3508,-10.684],[123.3576,-10.6844],[123.3641,-10.6812],[123.3683,-10.6884],[123.3748,-10.687],[123.3792,-10.6907],[123.3858,-10.6877],[123.391,-10.6822],[123.3956,-10.6864],[123.4012,-10.6868],[123.4072,-10.6807],[123.4096,-10.6743],[123.4059,-10.6687],[123.413,-10.6604],[123.4204,-10.6567],[123.4254,-10.6566],[123.427,-10.6533],[123.425,-10.6483],[123.4271,-10.6393],[123.4251,-10.6354],[123.4259,-10.6251],[123.4206,-10.6137],[123.4164,-10.6088],[123.4119,-10.61],[123.4053,-10.6093],[123.3963,-10.6013],[123.3894,-10.5969],[123.3824,-10.5968],[123.3776,-10.6007],[123.3706,-10.5996],[123.3674,-10.6012],[123.3596,-10.6],[123.3518,-10.597],[123.3492,-10.5911],[123.3442,-10.5894],[123.3458,-10.5855],[123.3513,-10.5861],[123.3605,-10.582],[123.3685,-10.5835],[123.37,-10.5809],[123.3835,-10.5685],[123.3843,-10.5633],[123.3808,-10.5614],[123.3786,-10.5537],[123.3681,-10.554],[123.3585,-10.5513],[123.3634,-10.5449],[123.3657,-10.5348],[123.3687,-10.5294],[123.3719,-10.5308],[123.3747,-10.5271],[123.3796,-10.5298],[123.3837,-10.5294],[123.3898,-10.517],[123.3909,-10.5093],[123.3938,-10.5063],[123.3984,-10.5073],[123.3982,-10.5008],[123.3912,-10.5002],[123.3874,-10.4933],[123.3876,-10.4868],[123.3901,-10.4812],[123.3954,-10.4773],[123.3991,-10.4773],[123.4024,-10.4731],[123.4056,-10.4753],[123.4119,-10.4728],[123.4098,-10.47],[123.4078,-10.4597],[123.4049,-10.4551],[123.389,-10.4411],[123.3787,-10.431]]]}},{"type":"Feature","properties":{"mhid":"1332:316","alt_name":"KABUPATEN MANGGARAI BARAT","latitude":-8.64484,"longitude":119.88281,"sample_value":224},"geometry":{"type":"MultiLineString","coordinates":[[[119.7864,-8.7945],[119.7827,-8.7913],[119.7707,-8.8111],[119.7711,-8.8193],[119.7756,-8.8225],[119.7848,-8.8208],[119.7891,-8.8256],[119.7946,-8.824],[119.801,-8.8143],[119.803,-8.8009],[119.8005,-8.7983],[119.7864,-8.7945]],[[119.655,-8.7843],[119.6459,-8.7936],[119.6355,-8.7979],[119.632,-8.8017],[119.6306,-8.807],[119.6455,-8.8095],[119.6522,-8.8093],[119.6546,-8.8142],[119.6581,-8.8103],[119.6603,-8.8162],[119.6643,-8.8148],[119.6675,-8.8082],[119.6672,-8.7989],[119.6634,-8.7981],[119.6549,-8.7904],[119.655,-8.7843]],[[119.4254,-8.7441],[119.4233,-8.7441],[119.4193,-8.7549],[119.4271,-8.7638],[119.4307,-8.7605],[119.4274,-8.7537],[119.4254,-8.7441]],[[119.3747,-8.7388],[119.3672,-8.7416],[119.3716,-8.7449],[119.3747,-8.7388]],[[119.5411,-8.6883],[119.5324,-8.6895],[119.534,-8.694],[119.5411,-8.6883]],[[119.7765,-8.6686],[119.7746,-8.6718],[119.7777,-8.6786],[119.7818,-8.6727],[119.7765,-8.6686]],[[119.6013,-8.6312],[119.5916,-8.633],[119.5817,-8.6392],[119.5758,-8.6381],[119.5719,-8.6429],[119.5738,-8.6474],[119.5695,-8.6554],[119.5675,-8.6565],[119.5628,-8.6512],[119.5533,-8.6605],[119.5513,-8.6601],[119.5448,-8.6652],[119.5356,-8.6677],[119.5402,-8.6721],[119.5491,-8.6733],[119.5543,-8.6779],[119.5567,-8.6889],[119.5596,-8.6913],[119.5632,-8.6868],[119.555,-8.6763],[119.5558,-8.67],[119.5599,-8.6636],[119.5652,-8.6588],[119.5792,-8.6547],[119.5842,-8.6573],[119.5869,-8.6617],[119.5925,-8.6623],[119.6021,-8.6598],[119.6043,-8.6518],[119.6018,-8.6468],[119.6041,-8.6377],[119.6013,-8.6312]],[[119.6144,-8.6262],[119.6128,-8.6326],[119.6152,-8.6367],[119.6184,-8.6355],[119.6189,-8.6273],[119.6144,-8.6262]],[[119.5298,-8.6059],[119.5224,-8.6092],[119.5239,-8.6157],[119.5314,-8.6139],[119.5338,-8.6073],[119.5298,-8.6059]],[[119.6348,-8.6053],[119.6295,-8.6047],[119.62,-8.6065],[119.6144,-8.6095],[119.6173,-8.6137],[119.6178,-8.6225],[119.6241,-8.6283],[119.6253,-8.6341],[119.6313,-8.633],[119.6352,-8.6413],[119.6343,-8.6475],[119.6413,-8.6572],[119.6421,-8.661],[119.6404,-8.6744],[119.6362,-8.6786],[119.6271,-8.6801],[119.6294,-8.6849],[119.6338,-8.6886],[119.6391,-8.6888],[119.6418,-8.6837],[119.649,-8.6827],[119.6503,-8.6726],[119.6538,-8.6716],[119.6525,-8.6799],[119.6566,-8.6795],[119.6557,-8.6879],[119.658,-8.6922],[119.6571,-8.6988],[119.6598,-8.7045],[119.6542,-8.7079],[119.6487,-8.7004],[119.6451,-8.705],[119.6382,-8.7024],[119.6356,-8.6987],[119.6283,-8.701],[119.6261,-8.7046],[119.6175,-8.7077],[119.6213,-8.7181],[119.63,-8.7188],[119.637,-8.7248],[119.6331,-8.7276],[119.6301,-8.7246],[119.6185,-8.7234],[119.623,-8.7332],[119.629,-8.7356],[119.6279,-8.7414],[119.6201,-8.737],[119.6168,-8.733],[119.6119,-8.7383],[119.6056,-8.7395],[119.608,-8.7442],[119.6132,-8.7465],[119.6104,-8.7505],[119.6059,-8.7478],[119.6044,-8.7541],[119.6105,-8.7582],[119.6143,-8.7664],[119.6126,-8.7752],[119.6165,-8.7813],[119.6145,-8.7874],[119.6193,-8.7906],[119.6221,-8.7957],[119.6392,-8.7806],[119.6398,-8.7767],[119.6436,-8.7755],[119.6493,-8.7781],[119.6513,-8.7736],[119.6602,-8.7735],[119.6669,-8.7828],[119.67,-8.7833],[119.6749,-8.7879],[119.6758,-8.7965],[119.6755,-8.8088],[119.6793,-8.8085],[119.69,-8.8108],[119.6955,-8.8093],[119.697,-8.805],[119.7011,-8.8047],[119.7098,-8.795],[119.7161,-8.7928],[119.7151,-8.7897],[119.7188,-8.7857],[119.7131,-8.7821],[119.7118,-8.7787],[119.7149,-8.7757],[119.725,-8.7746],[119.7258,-8.7675],[119.7246,-8.7642],[119.7201,-8.761],[119.7253,-8.7539],[119.7302,-8.7541],[119.7234,-8.7431],[119.7223,-8.7396],[119.7112,-8.7388],[119.7064,-8.7348],[119.6961,-8.732],[119.6902,-8.7233],[119.6948,-8.7156],[119.7041,-8.7059],[119.7045,-8.7017],[119.7087,-8.6973],[119.7074,-8.6927],[119.7134,-8.6874],[119.7106,-8.6815],[119.7175,-8.6816],[119.7242,-8.6844],[119.7269,-8.6896],[119.7239,-8.6969],[119.7265,-8.6997],[119.7353,-8.6992],[119.7438,-8.6973],[119.7451,-8.6911],[119.7493,-8.6903],[119.7502,-8.6856],[119.7475,-8.6801],[119.7482,-8.6766],[119.7546,-8.6707],[119.7556,-8.6674],[119.7649,-8.6631],[119.7674,-8.6594],[119.7728,-8.6582],[119.7805,-8.6592],[119.7895,-8.6561],[119.7962,-8.6583],[119.8005,-8.6517],[119.7989,-8.6342],[119.805,-8.6253],[119.8011,-8.6187],[119.7925,-8.6141],[119.7863,-8.6192],[119.7816,-8.6193],[119.7779,-8.617],[119.7685,-8.6155],[119.7622,-8.6205],[119.7528,-8.618],[119.7447,-8.6281],[119.7406,-8.6272],[119.7394,-8.6211],[119.7259,-8.6193],[119.7182,-8.6217],[119.715,-8.6312],[119.7166,-8.6382],[119.7141,-8.6506],[119.7112,-8.6476],[119.705,-8.6477],[119.6983,-8.6436],[119.6921,-8.6377],[119.6873,-8.6394],[119.6938,-8.6483],[119.7043,-8.6533],[119.7061,-8.6573],[119.7082,-8.6698],[119.7018,-8.6717],[119.6942,-8.6756],[119.6852,-8.6845],[119.6828,-8.6768],[119.6774,-8.6732],[119.6792,-8.684],[119.6725,-8.6869],[119.6711,-8.6808],[119.6679,-8.6768],[119.6673,-8.6701],[119.6633,-8.6676],[119.6585,-8.6569],[119.6612,-8.6497],[119.6624,-8.6417],[119.6615,-8.6373],[119.6646,-8.6295],[119.6618,-8.619],[119.6622,-8.6127],[119.6545,-8.6139],[119.6455,-8.6125],[119.6377,-8.6083],[119.6348,-8.6053]],[[119.8027,-8.5799],[119.7967,-8.5803],[119.799,-8.5855],[119.8036,-8.5844],[119.8027,-8.5799]],[[119.7495,-8.5743],[119.7464,-8.5745],[119.7458,-8.5801],[119.7509,-8.5814],[119.7519,-8.5768],[119.7495,-8.5743]],[[119.7273,-8.569],[119.7173,-8.5686],[119.7073,-8.5717],[119.7055,-8.5747],[119.7125,-8.5805],[119.7173,-8.578],[119.7248,-8.5788],[119.729,-8.5729],[119.7273,-8.569]],[[119.6843,-8.5473],[119.6803,-8.5464],[119.6788,-8.5509],[119.6815,-8.5558],[119.6881,-8.5543],[119.6899,-8.5478],[119.6843,-8.5473]],[[119.5707,-8.5347],[119.5683,-8.5397],[119.5723,-8.5416],[119.5785,-8.5382],[119.5741,-8.534],[119.5707,-8.5347]],[[119.66,-8.5318],[119.657,-8.5386],[119.6503,-8.5402],[119.6518,-8.548],[119.6494,-8.5551],[119.6534,-8.5609],[119.6588,-8.5625],[119.657,-8.5543],[119.6546,-8.5516],[119.6559,-8.5456],[119.66,-8.5404],[119.6651,-8.537],[119.6644,-8.5336],[119.66,-8.5318]],[[119.7902,-8.522],[119.7854,-8.5239],[119.7832,-8.5289],[119.7863,-8.5312],[119.7912,-8.528],[119.7979,-8.5306],[119.7948,-8.5223],[119.7902,-8.522]],[[119.6405,-8.5103],[119.6336,-8.5146],[119.6356,-8.5213],[119.643,-8.5164],[119.6405,-8.5103]],[[119.7064,-8.5113],[119.7045,-8.5099],[119.6966,-8.5114],[119.7013,-8.5186],[119.7064,-8.5113]],[[119.7291,-8.4941],[119.7208,-8.4944],[119.7173,-8.4964],[119.7133,-8.5055],[119.7176,-8.5099],[119.7199,-8.5058],[119.7278,-8.506],[119.7342,-8.4999],[119.7291,-8.4941]],[[119.8636,-8.4855],[119.8646,-8.4918],[119.8731,-8.4857],[119.8636,-8.4855]],[[119.8619,-8.487],[119.8543,-8.4822],[119.854,-8.4893],[119.8619,-8.487]],[[119.563,-8.4619],[119.5574,-8.4636],[119.5528,-8.4688],[119.5534,-8.4764],[119.5597,-8.4766],[119.5638,-8.4698],[119.563,-8.4619]],[[119.5837,-8.4455],[119.5796,-8.4425],[119.5723,-8.4461],[119.5635,-8.4533],[119.5673,-8.4549],[119.573,-8.4525],[119.5845,-8.4511],[119.5837,-8.4455]],[[119.457,-8.4285],[119.4503,-8.4295],[119.4501,-8.435],[119.4535,-8.4371],[119.452,-8.4433],[119.4538,-8.4474],[119.4502,-8.4523],[119.4432,-8.4503],[119.443,-8.4472],[119.431,-8.4467],[119.4298,-8.4443],[119.423,-8.4436],[119.4205,-8.4515],[119.4268,-8.461],[119.4247,-8.4664],[119.4266,-8.4719],[119.4309,-8.4712],[119.4388,-8.4785],[119.4386,-8.4811],[119.4459,-8.484],[119.4491,-8.4904],[119.4473,-8.4941],[119.4375,-8.4891],[119.4245,-8.4977],[119.4187,-8.5002],[119.4162,-8.5065],[119.4218,-8.5051],[119.4234,-8.51],[119.4275,-8.5128],[119.4315,-8.5119],[119.434,-8.5162],[119.4307,-8.5196],[119.4361,-8.5235],[119.4321,-8.5269],[119.4209,-8.5307],[119.4237,-8.5351],[119.4238,-8.5505],[119.4194,-8.5537],[119.4124,-8.5524],[119.4109,-8.5557],[119.4052,-8.5587],[119.401,-8.5631],[119.3889,-8.5608],[119.3881,-8.5685],[119.3893,-8.5723],[119.3813,-8.5768],[119.3821,-8.5803],[119.374,-8.587],[119.3805,-8.5893],[119.3844,-8.5925],[119.3843,-8.5963],[119.3882,-8.5985],[119.3806,-8.6103],[119.3801,-8.6179],[119.3828,-8.623],[119.3749,-8.6269],[119.3748,-8.6321],[119.3778,-8.634],[119.3841,-8.6243],[119.3912,-8.6255],[119.3954,-8.622],[119.4017,-8.6273],[119.3966,-8.6344],[119.3992,-8.6378],[119.4041,-8.6387],[119.4098,-8.6469],[119.4091,-8.6521],[119.4035,-8.6587],[119.407,-8.6621],[119.405,-8.6709],[119.4069,-8.6769],[119.4044,-8.6882],[119.4002,-8.6894],[119.3961,-8.6953],[119.3908,-8.6952],[119.3878,-8.6924],[119.3861,-8.7018],[119.3805,-8.7101],[119.3822,-8.7163],[119.3782,-8.7183],[119.3821,-8.7316],[119.3846,-8.735],[119.3898,-8.731],[119.3895,-8.7256],[119.3928,-8.7227],[119.3963,-8.725],[119.4074,-8.7226],[119.4098,-8.728],[119.4142,-8.7274],[119.4197,-8.7307],[119.4216,-8.7351],[119.427,-8.7379],[119.4372,-8.7496],[119.4439,-8.7512],[119.4622,-8.746],[119.47,-8.7383],[119.4629,-8.7389],[119.4583,-8.7444],[119.4529,-8.7459],[119.4478,-8.7358],[119.4526,-8.7293],[119.4512,-8.7245],[119.4472,-8.7254],[119.4457,-8.7216],[119.453,-8.7118],[119.4532,-8.7061],[119.4562,-8.7025],[119.4454,-8.6996],[119.443,-8.6913],[119.4473,-8.6895],[119.4435,-8.6842],[119.4346,-8.6843],[119.4332,-8.6758],[119.4367,-8.6723],[119.4373,-8.6677],[119.4415,-8.6637],[119.4491,-8.6539],[119.456,-8.6484],[119.4656,-8.6499],[119.4679,-8.6536],[119.4758,-8.6525],[119.4775,-8.6466],[119.4743,-8.6419],[119.4751,-8.6386],[119.48,-8.638],[119.4826,-8.6425],[119.4861,-8.6379],[119.4798,-8.6319],[119.4835,-8.6275],[119.4886,-8.6251],[119.4932,-8.6203],[119.4921,-8.6117],[119.4871,-8.6141],[119.4848,-8.6216],[119.4732,-8.6293],[119.4703,-8.6273],[119.4625,-8.627],[119.4616,-8.6227],[119.4559,-8.6163],[119.4528,-8.6065],[119.459,-8.6041],[119.465,-8.6054],[119.4682,-8.6082],[119.4772,-8.6043],[119.4844,-8.599],[119.4861,-8.5935],[119.4971,-8.5874],[119.4957,-8.5753],[119.499,-8.5705],[119.5053,-8.5685],[119.5119,-8.569],[119.5199,-8.5737],[119.5231,-8.5779],[119.5247,-8.5845],[119.5217,-8.5895],[119.5171,-8.5921],[119.5196,-8.5991],[119.5259,-8.5987],[119.5359,-8.6027],[119.5374,-8.5993],[119.5432,-8.6],[119.5449,-8.5965],[119.5573,-8.5987],[119.5657,-8.5933],[119.5596,-8.5867],[119.5625,-8.5778],[119.5584,-8.567],[119.5599,-8.5631],[119.5602,-8.5531],[119.5575,-8.5445],[119.5495,-8.5364],[119.5492,-8.5297],[119.5542,-8.5298],[119.5542,-8.523],[119.5586,-8.5145],[119.5624,-8.5184],[119.5615,-8.5239],[119.5675,-8.5285],[119.5694,-8.5109],[119.5723,-8.5067],[119.5687,-8.5006],[119.5714,-8.4979],[119.5713,-8.4898],[119.5656,-8.4841],[119.5627,-8.4844],[119.5567,-8.4898],[119.5538,-8.4967],[119.5505,-8.4988],[119.5468,-8.4968],[119.5441,-8.4905],[119.5386,-8.4957],[119.5325,-8.4969],[119.5318,-8.4919],[119.5264,-8.4886],[119.5248,-8.4846],[119.52,-8.4852],[119.5188,-8.4889],[119.5121,-8.4934],[119.5069,-8.494],[119.5011,-8.4897],[119.5004,-8.4866],[119.4884,-8.4803],[119.4845,-8.486],[119.4815,-8.4858],[119.4705,-8.4801],[119.4691,-8.4749],[119.4723,-8.4721],[119.4675,-8.4643],[119.4712,-8.4518],[119.467,-8.4463],[119.4658,-8.4416],[119.4673,-8.4374],[119.457,-8.4285]],[[119.8122,-8.3993],[119.81,-8.3951],[119.8038,-8.3942],[119.8052,-8.399],[119.8122,-8.3993]],[[119.8579,-8.3796],[119.8538,-8.3749],[119.8422,-8.3797],[119.839,-8.3791],[119.8385,-8.3871],[119.8418,-8.3928],[119.8453,-8.3955],[119.8523,-8.395],[119.8607,-8.4017],[119.866,-8.4017],[119.8727,-8.3871],[119.8762,-8.3838],[119.8654,-8.3835],[119.8579,-8.3796]],[[120.0323,-8.3595],[120.0228,-8.352],[120.0164,-8.3618],[120.0182,-8.366],[120.0172,-8.3732],[120.0219,-8.3706],[120.0256,-8.3653],[120.0296,-8.369],[120.0341,-8.3665],[120.0323,-8.3595]],[[120.132,-8.3388],[120.1174,-8.3398],[120.1121,-8.3455],[120.1192,-8.3504],[120.127,-8.3517],[120.1334,-8.3545],[120.14,-8.3505],[120.1439,-8.3525],[120.1518,-8.352],[120.1512,-8.3462],[120.143,-8.3412],[120.132,-8.3388]],[[120.2916,-8.2807],[120.2811,-8.283],[120.2709,-8.2832],[120.2664,-8.2845],[120.2606,-8.283],[120.2518,-8.2902],[120.2443,-8.2949],[120.2403,-8.3015],[120.2232,-8.3056],[120.2159,-8.31],[120.2102,-8.3089],[120.2091,-8.306],[120.2005,-8.3056],[120.1921,-8.3189],[120.1918,-8.3237],[120.1828,-8.3382],[120.1861,-8.3429],[120.1853,-8.3478],[120.1782,-8.3513],[120.172,-8.3481],[120.1675,-8.3592],[120.163,-8.3623],[120.1624,-8.369],[120.1667,-8.3751],[120.1574,-8.373],[120.151,-8.38],[120.1472,-8.3798],[120.1452,-8.3731],[120.1469,-8.367],[120.1441,-8.3653],[120.1372,-8.3649],[120.1317,-8.367],[120.1289,-8.3649],[120.1269,-8.3578],[120.1216,-8.3562],[120.1202,-8.359],[120.1209,-8.367],[120.1185,-8.369],[120.1178,-8.3762],[120.1156,-8.3833],[120.1175,-8.393],[120.1168,-8.4069],[120.1208,-8.414],[120.1253,-8.4166],[120.1233,-8.4223],[120.1187,-8.4242],[120.1133,-8.4384],[120.11,-8.4412],[120.1045,-8.4373],[120.099,-8.4398],[120.0915,-8.441],[120.0863,-8.4386],[120.0841,-8.4346],[120.0828,-8.4255],[120.0914,-8.4218],[120.0959,-8.4145],[120.095,-8.4076],[120.0806,-8.4152],[120.0769,-8.4097],[120.0835,-8.4038],[120.0866,-8.3893],[120.0846,-8.3869],[120.0795,-8.3901],[120.0709,-8.3931],[120.0674,-8.3963],[120.0635,-8.4028],[120.054,-8.4059],[120.0501,-8.4054],[120.0488,-8.3989],[120.0553,-8.3978],[120.0628,-8.3897],[120.0732,-8.3836],[120.0691,-8.3794],[120.064,-8.3782],[120.0597,-8.3835],[120.0589,-8.3879],[120.0535,-8.3901],[120.0513,-8.3952],[120.0475,-8.3935],[120.0402,-8.3975],[120.0371,-8.3933],[120.0417,-8.3896],[120.0305,-8.382],[120.022,-8.3826],[120.0189,-8.3916],[120.0118,-8.4025],[120.0176,-8.4081],[120.0132,-8.4145],[120.0087,-8.4116],[120.0013,-8.4136],[119.9979,-8.4172],[120.001,-8.422],[120.0032,-8.4303],[120.0158,-8.4356],[120.016,-8.4412],[120.0125,-8.4472],[120.0066,-8.4475],[120.0034,-8.4511],[120.0024,-8.4564],[119.9974,-8.4613],[119.9904,-8.4593],[119.9888,-8.4555],[119.9825,-8.4516],[119.9796,-8.4463],[119.9727,-8.4433],[119.9767,-8.4325],[119.9715,-8.4294],[119.9636,-8.4314],[119.963,-8.4361],[119.9567,-8.4435],[119.9572,-8.4496],[119.9504,-8.4561],[119.9416,-8.4589],[119.9393,-8.4554],[119.9296,-8.4614],[119.9206,-8.4656],[119.9159,-8.4666],[119.909,-8.4754],[119.9065,-8.4752],[119.9018,-8.4663],[119.8918,-8.464],[119.8861,-8.461],[119.8801,-8.4631],[119.8773,-8.4589],[119.8788,-8.4495],[119.8853,-8.4439],[119.8775,-8.443],[119.8826,-8.4365],[119.8824,-8.4303],[119.88,-8.427],[119.8717,-8.4273],[119.8587,-8.433],[119.8628,-8.4405],[119.8628,-8.4481],[119.8608,-8.4531],[119.8676,-8.454],[119.8718,-8.458],[119.8718,-8.465],[119.8815,-8.4791],[119.8748,-8.4897],[119.8791,-8.4988],[119.876,-8.5098],[119.8738,-8.5109],[119.8736,-8.5174],[119.8674,-8.5242],[119.8538,-8.5345],[119.8505,-8.5339],[119.8442,-8.5397],[119.8337,-8.5393],[119.8306,-8.5512],[119.8238,-8.5567],[119.8138,-8.5602],[119.8094,-8.5649],[119.8087,-8.5691],[119.8052,-8.5706],[119.804,-8.5797],[119.8066,-8.5867],[119.7993,-8.5919],[119.7982,-8.5986],[119.8061,-8.6041],[119.811,-8.6046],[119.8069,-8.6123],[119.8097,-8.6255],[119.8066,-8.6356],[119.8088,-8.6543],[119.8113,-8.6613],[119.8093,-8.6643],[119.8113,-8.6684],[119.8093,-8.6718],[119.8038,-8.6712],[119.7997,-8.6783],[119.8004,-8.6849],[119.7983,-8.6905],[119.7965,-8.7021],[119.8018,-8.7112],[119.8023,-8.7176],[119.7997,-8.7218],[119.7978,-8.7293],[119.8063,-8.73],[119.8075,-8.7334],[119.8056,-8.7384],[119.8019,-8.7398],[119.8006,-8.7471],[119.8084,-8.7505],[119.8084,-8.7556],[119.8006,-8.7578],[119.7997,-8.7598],[119.8034,-8.7671],[119.8088,-8.77],[119.8136,-8.7759],[119.8139,-8.7792],[119.8224,-8.7801],[119.8183,-8.785],[119.8234,-8.7894],[119.8295,-8.7874],[119.8354,-8.7981],[119.8378,-8.8072],[119.8421,-8.7973],[119.8465,-8.7983],[119.8477,-8.8045],[119.8582,-8.8018],[119.8597,-8.805],[119.8661,-8.81],[119.8696,-8.8074],[119.8771,-8.8112],[119.8846,-8.8098],[119.8859,-8.816],[119.8843,-8.8211],[119.8843,-8.8402],[119.894,-8.842],[119.886,-8.8518],[119.8892,-8.8584],[119.8933,-8.8603],[119.9046,-8.8628],[119.911,-8.8674],[119.912,-8.8636],[119.9192,-8.8659],[119.9219,-8.8609],[119.9165,-8.8461],[119.9119,-8.8447],[119.9098,-8.8391],[119.9229,-8.8435],[119.9254,-8.8329],[119.9334,-8.8286],[119.9392,-8.8229],[119.945,-8.8205],[119.965,-8.8235],[119.969,-8.826],[119.9769,-8.8212],[119.9897,-8.8202],[119.9977,-8.8179],[120.0099,-8.8175],[120.0164,-8.8193],[120.0217,-8.8148],[120.0368,-8.8128],[120.0467,-8.813],[120.0577,-8.8082],[120.0619,-8.8078],[120.0803,-8.8026],[120.0841,-8.7989],[120.0976,-8.7938],[120.1107,-8.7907],[120.1289,-8.7899],[120.1401,-8.7885],[120.148,-8.7863],[120.157,-8.7851],[120.1634,-8.7868],[120.1712,-8.7917],[120.183,-8.8032],[120.191,-8.8141],[120.1982,-8.8199],[120.2033,-8.8214],[120.2118,-8.8294],[120.2131,-8.836],[120.2223,-8.836],[120.2281,-8.8415]]]}},{"type":"Feature","properties":{"mhid":"1332:317","alt_name":"KABUPATEN SUMBA TENGAH","latitude":-9.62941,"longitude":119.61914,"sample_value":966},"geometry":{"type":"MultiLineString","coordinates":[[[119.8648,-9.3435],[119.8494,-9.3526],[119.8328,-9.3659],[119.822,-9.3791],[119.807,-9.3939],[119.7966,-9.399],[119.7843,-9.3996],[119.7731,-9.3968],[119.7659,-9.391],[119.7627,-9.3864],[119.7537,-9.3859],[119.7466,-9.3883],[119.7359,-9.3894],[119.7195,-9.3876],[119.6993,-9.3837],[119.6864,-9.3824],[119.6707,-9.3749],[119.664,-9.3707],[119.658,-9.3686],[119.6407,-9.3555],[119.6314,-9.3456],[119.6141,-9.3455],[119.6004,-9.3466],[119.5858,-9.3507],[119.5745,-9.3549],[119.5694,-9.3579],[119.5617,-9.3654],[119.5516,-9.372],[119.546,-9.3743],[119.5336,-9.3775],[119.522,-9.3779],[119.5134,-9.3752],[119.5001,-9.3684],[119.4893,-9.3658],[119.4765,-9.3587],[119.4637,-9.3587],[119.4505,-9.3618],[119.4433,-9.3643],[119.4288,-9.3746],[119.4286,-9.3765],[119.416,-9.3737]],[[119.543,-9.7527],[119.5498,-9.7545],[119.5484,-9.7574],[119.5532,-9.766],[119.5598,-9.7641],[119.5666,-9.7689],[119.577,-9.7661],[119.5833,-9.7619],[119.5881,-9.7668],[119.5881,-9.7715],[119.5938,-9.7752],[119.5948,-9.779],[119.6019,-9.777],[119.6057,-9.7738],[119.6092,-9.7748],[119.612,-9.7716],[119.6145,-9.7644],[119.619,-9.7637],[119.6264,-9.7668],[119.6284,-9.7726],[119.6255,-9.7751],[119.6276,-9.7789],[119.6217,-9.7905],[119.616,-9.7947],[119.6208,-9.8003],[119.6279,-9.7998],[119.6422,-9.7924],[119.646,-9.7934],[119.6467,-9.7855],[119.65,-9.7788],[119.6535,-9.7763],[119.6611,-9.7769],[119.6711,-9.7809],[119.6729,-9.7856],[119.6785,-9.7897],[119.6777,-9.7956],[119.674,-9.8008],[119.6772,-9.8041],[119.6834,-9.8036],[119.6866,-9.8073],[119.6899,-9.8178],[119.6842,-9.823],[119.6828,-9.8271],[119.6748,-9.8287]]]}},{"type":"Feature","properties":{"mhid":"1332:318","alt_name":"KABUPATEN SUMBA BARAT DAYA","latitude":-9.56216,"longitude":119.08905,"sample_value":193},"geometry":{"type":"MultiLineString","coordinates":[[[119.3908,-9.3831],[119.3823,-9.3827],[119.3765,-9.3804],[119.3542,-9.3768],[119.3475,-9.377],[119.3416,-9.3746],[119.3276,-9.3719],[119.3161,-9.3668],[119.308,-9.3606],[119.3016,-9.3575],[119.2934,-9.3576],[119.2859,-9.3598],[119.2715,-9.3683],[119.2647,-9.3681],[119.2562,-9.3698],[119.2425,-9.3767],[119.2379,-9.3779],[119.2251,-9.3894],[119.219,-9.391],[119.2106,-9.3884],[119.2045,-9.3844],[119.1965,-9.3761],[119.1896,-9.374],[119.1781,-9.3748],[119.1603,-9.3808],[119.1536,-9.3839],[119.1371,-9.3958],[119.1273,-9.4016],[119.1239,-9.4023],[119.1139,-9.4091],[119.1093,-9.4159],[119.1013,-9.4215],[119.0962,-9.422],[119.0803,-9.4195],[119.0721,-9.4238],[119.0561,-9.4237],[119.0436,-9.4268],[119.0296,-9.4327],[119.0248,-9.4364],[119.0127,-9.4418],[119.0002,-9.4487],[118.9939,-9.4545],[118.9898,-9.4563],[118.9772,-9.4694],[118.9738,-9.4741],[118.965,-9.4817],[118.9521,-9.5017],[118.944,-9.5106],[118.9408,-9.5158],[118.9365,-9.5267],[118.932,-9.535],[118.9273,-9.5502],[118.9279,-9.5576],[118.9369,-9.5674],[118.9469,-9.5748],[118.9537,-9.5818],[118.9677,-9.5933],[118.9738,-9.5995],[118.9843,-9.6064],[118.9855,-9.6135],[118.9947,-9.6263],[119.0033,-9.6307],[119.0062,-9.6352],[119.0093,-9.6467],[119.0152,-9.6548],[119.018,-9.6626],[119.0242,-9.6704],[119.0262,-9.6751],[119.0468,-9.6892],[119.0491,-9.6925],[119.0604,-9.6987],[119.0622,-9.6972],[119.074,-9.7021],[119.079,-9.7062],[119.091,-9.7138],[119.095,-9.7147],[119.1044,-9.714],[119.1157,-9.7207],[119.1178,-9.7265],[119.1232,-9.7249],[119.1282,-9.73],[119.1376,-9.7279],[119.1446,-9.73]]]}},{"type":"Feature","properties":{"mhid":"1332:319","alt_name":"KABUPATEN NAGEKEO","latitude":-8.8721,"longitude":121.20963,"sample_value":132},"geometry":{"type":"MultiLineString","coordinates":[[[121.5203,-8.6143],[121.5145,-8.6157],[121.5077,-8.6139],[121.5052,-8.61],[121.5126,-8.6073],[121.5049,-8.6003],[121.5012,-8.6003],[121.5018,-8.5931],[121.4979,-8.5899],[121.5024,-8.5814],[121.5002,-8.5777],[121.4931,-8.5778],[121.4871,-8.5813],[121.4825,-8.5774],[121.4804,-8.5717],[121.4771,-8.5709],[121.4768,-8.5647],[121.4671,-8.5629],[121.4621,-8.5608],[121.4606,-8.5642],[121.4457,-8.5719],[121.4403,-8.5759],[121.4397,-8.5787],[121.431,-8.5864],[121.4251,-8.5874],[121.4184,-8.592],[121.4159,-8.5828],[121.4133,-8.5786],[121.404,-8.5715],[121.3923,-8.5726],[121.3851,-8.5651],[121.3707,-8.564],[121.3627,-8.559],[121.3606,-8.5559],[121.3462,-8.549],[121.3346,-8.5368],[121.3295,-8.5277],[121.3249,-8.5227],[121.3266,-8.5166],[121.3192,-8.5085],[121.3112,-8.4907],[121.3078,-8.4816],[121.3039,-8.4816],[121.2974,-8.4773],[121.287,-8.4742],[121.2787,-8.4698],[121.2695,-8.4674],[121.2668,-8.4648],[121.2524,-8.466],[121.2451,-8.4688],[121.2374,-8.4674],[121.2316,-8.4629],[121.2267,-8.4637],[121.223,-8.4617],[121.217,-8.4615],[121.208,-8.4536],[121.1948,-8.4435],[121.192,-8.4384],[121.1823,-8.4387],[121.1732,-8.4407]],[[121.1393,-8.898],[121.1475,-8.8983],[121.1545,-8.8941],[121.1647,-8.8948],[121.1715,-8.8868],[121.1796,-8.8855],[121.1884,-8.8869],[121.1909,-8.8916],[121.1985,-8.8943],[121.2045,-8.8913],[121.209,-8.8926],[121.2237,-8.8892],[121.2289,-8.8905],[121.2325,-8.8951],[121.2393,-8.889],[121.2457,-8.8892],[121.2524,-8.8912],[121.2557,-8.8938],[121.2616,-8.8872],[121.2697,-8.8865],[121.2751,-8.8915],[121.2823,-8.8916],[121.2877,-8.8953],[121.2905,-8.9016],[121.2993,-8.9076],[121.3062,-8.908],[121.3144,-8.911],[121.3204,-8.9102],[121.3232,-8.9067],[121.3369,-8.9065],[121.3424,-8.9051],[121.357,-8.8879],[121.3631,-8.8862],[121.3689,-8.8785],[121.3702,-8.8639],[121.3717,-8.8615],[121.3709,-8.8458],[121.3687,-8.8389],[121.3699,-8.8341],[121.3677,-8.8244],[121.3713,-8.8166],[121.3706,-8.8124],[121.3753,-8.8047],[121.3773,-8.7967],[121.381,-8.7927],[121.388,-8.7892],[121.3952,-8.7888],[121.4061,-8.7907],[121.4139,-8.7937],[121.4157,-8.788]]]}},{"type":"Feature","properties":{"mhid":"1332:320","alt_name":"KABUPATEN MANGGARAI TIMUR","latitude":-8.55533,"longitude":120.59761,"sample_value":399},"geometry":{"type":"MultiLineString","coordinates":[[[120.9495,-8.3709],[120.9468,-8.3656],[120.9383,-8.3558],[120.9435,-8.3522],[120.94,-8.3484],[120.9301,-8.3515],[120.9215,-8.3564],[120.9034,-8.3563],[120.8964,-8.3525],[120.8869,-8.355],[120.8821,-8.3494],[120.8769,-8.3501],[120.8702,-8.3535],[120.8623,-8.3547],[120.8536,-8.3575],[120.8434,-8.3514],[120.8311,-8.3462],[120.8228,-8.3473],[120.8156,-8.3443],[120.8078,-8.3385],[120.7945,-8.3406],[120.7916,-8.343],[120.7825,-8.3455],[120.7772,-8.343],[120.7676,-8.3411],[120.7624,-8.3362],[120.7584,-8.3387],[120.7574,-8.3427],[120.7485,-8.3484],[120.7391,-8.3494],[120.733,-8.3487],[120.7266,-8.3423],[120.7212,-8.3405],[120.7165,-8.3365],[120.7154,-8.3263],[120.7001,-8.3271],[120.6903,-8.3296],[120.6854,-8.3259],[120.6775,-8.3224],[120.6746,-8.3078],[120.6659,-8.3082],[120.6594,-8.3021],[120.6569,-8.2903],[120.6475,-8.2839],[120.6403,-8.2769],[120.6277,-8.2678],[120.6181,-8.2638],[120.6124,-8.2638],[120.6083,-8.2595],[120.6005,-8.2554],[120.5919,-8.2571],[120.5909,-8.2609],[120.5962,-8.2698],[120.6019,-8.2717],[120.6053,-8.2766],[120.5992,-8.2911],[120.5908,-8.2971],[120.5791,-8.2957],[120.5688,-8.297],[120.5629,-8.3008],[120.5586,-8.3004],[120.5554,-8.2958],[120.5502,-8.2946],[120.5415,-8.288],[120.5405,-8.2842],[120.5354,-8.2786],[120.5317,-8.277],[120.5292,-8.2724],[120.5192,-8.2794],[120.5075,-8.2841],[120.5027,-8.289],[120.4928,-8.2927]],[[120.5184,-8.8184],[120.5275,-8.8134],[120.5366,-8.8115],[120.5433,-8.8119],[120.55,-8.8164],[120.5593,-8.8162],[120.5649,-8.8175],[120.5733,-8.8165],[120.5803,-8.8182],[120.5866,-8.8155],[120.5958,-8.815],[120.6075,-8.8209],[120.6123,-8.826],[120.6121,-8.8312],[120.6148,-8.8369],[120.6232,-8.8474],[120.6259,-8.8483],[120.6329,-8.8573],[120.6395,-8.861],[120.6468,-8.8674],[120.6559,-8.8701],[120.6711,-8.8697],[120.6786,-8.8711],[120.6857,-8.8702],[120.6909,-8.8713],[120.7029,-8.8819],[120.7081,-8.8811],[120.7182,-8.8864],[120.7253,-8.8852],[120.7334,-8.8896],[120.7375,-8.8881],[120.7437,-8.8925],[120.7508,-8.8914],[120.7538,-8.8929],[120.7682,-8.8872],[120.7745,-8.8869],[120.7743,-8.8837],[120.7809,-8.875],[120.7854,-8.8732],[120.7866,-8.8522],[120.7859,-8.8474],[120.7885,-8.841],[120.7931,-8.8395],[120.7973,-8.8408],[120.8053,-8.8398],[120.8099,-8.8419],[120.8164,-8.8418],[120.8191,-8.8359]]]}},{"type":"Feature","properties":{"mhid":"1332:321","alt_name":"KABUPATEN SABU RAIJUA","latitude":-10.56286,"longitude":121.78894,"sample_value":211},"geometry":{"type":"MultiLineString","coordinates":[[[121.2779,-10.8221],[121.2753,-10.82],[121.2697,-10.8245],[121.2731,-10.8281],[121.2833,-10.828],[121.2779,-10.8221]],[[121.6345,-10.6024],[121.63,-10.5978],[121.6194,-10.6017],[121.6057,-10.604],[121.5899,-10.6002],[121.5668,-10.5981],[121.5558,-10.6018],[121.5516,-10.6064],[121.5425,-10.6118],[121.5358,-10.6197],[121.5273,-10.6271],[121.5246,-10.6312],[121.5198,-10.6334],[121.5209,-10.6372],[121.5267,-10.6384],[121.5398,-10.6364],[121.5562,-10.6407],[121.5674,-10.6402],[121.574,-10.642],[121.5784,-10.6382],[121.5934,-10.6324],[121.6098,-10.6294],[121.617,-10.6228],[121.6253,-10.6199],[121.6321,-10.6139],[121.6346,-10.6099],[121.6345,-10.6024]],[[121.9529,-10.4338],[121.9435,-10.4283],[121.9229,-10.4211],[121.9105,-10.4188],[121.9036,-10.4188],[121.8953,-10.4206],[121.8754,-10.4282],[121.8669,-10.434],[121.8603,-10.4358],[121.852,-10.4417],[121.8444,-10.4504],[121.8438,-10.4543],[121.8465,-10.461],[121.8404,-10.4779],[121.8408,-10.489],[121.8358,-10.4941],[121.8333,-10.4989],[121.8222,-10.503],[121.8191,-10.5066],[121.8018,-10.5099],[121.7954,-10.5149],[121.7739,-10.5254],[121.767,-10.531],[121.7644,-10.535],[121.7522,-10.5407],[121.7311,-10.5492],[121.7281,-10.5495],[121.7207,-10.5543],[121.7123,-10.562],[121.7071,-10.5654],[121.6942,-10.57],[121.6854,-10.5751],[121.6868,-10.58],[121.7065,-10.592],[121.7086,-10.5912],[121.7213,-10.5965],[121.7305,-10.6015],[121.7382,-10.6029],[121.7451,-10.6123],[121.7493,-10.6151],[121.7539,-10.613],[121.7623,-10.6123],[121.7707,-10.6082],[121.7824,-10.6076],[121.789,-10.609],[121.7939,-10.6068],[121.8023,-10.6096],[121.8061,-10.6127],[121.8158,-10.6139],[121.8278,-10.6228],[121.8378,-10.6259],[121.8487,-10.6206],[121.8561,-10.6193],[121.8605,-10.6229],[121.8639,-10.6224],[121.8705,-10.6158],[121.8749,-10.6183],[121.8809,-10.6143],[121.8827,-10.6089],[121.897,-10.5953],[121.9096,-10.5905],[121.9172,-10.5835],[121.9199,-10.5792],[121.9265,-10.575],[121.9281,-10.5712],[121.9425,-10.5622],[121.948,-10.5572],[121.9572,-10.5514],[121.9628,-10.5498],[121.9726,-10.549],[121.9757,-10.5505],[121.9862,-10.5509],[121.9868,-10.5407],[121.9925,-10.5352],[121.9969,-10.5231],[121.993,-10.5172],[121.9967,-10.5015],[121.9935,-10.4891],[121.9966,-10.482],[122.0059,-10.4709],[122.0078,-10.4661],[122.0059,-10.453],[122.0002,-10.4437],[121.9966,-10.4417],[121.9881,-10.4409],[121.9705,-10.4427],[121.9589,-10.439],[121.9529,-10.4338]]]}},{"type":"Feature","properties":{"mhid":"1332:322","alt_name":"KABUPATEN MALAKA","latitude":-9.5632,"longitude":124.89481,"sample_value":21},"geometry":{"type":"MultiLineString","coordinates":[[[124.8081,-9.7895],[124.8126,-9.7885],[124.824,-9.7753],[124.8303,-9.7621],[124.8344,-9.7553],[124.847,-9.7383],[124.8631,-9.7231],[124.8771,-9.7111],[124.89,-9.6992],[124.8955,-9.6955],[124.9093,-9.6895],[124.9176,-9.6848],[124.9278,-9.6825],[124.9376,-9.6825],[124.9432,-9.6784],[124.947,-9.6779],[124.9487,-9.6733],[124.9622,-9.6596],[124.9768,-9.6462],[124.9821,-9.6401],[124.9869,-9.6292],[124.9859,-9.623],[124.9866,-9.6169],[124.9863,-9.5941],[124.989,-9.579],[124.9928,-9.568],[124.9898,-9.5621],[124.9954,-9.5559],[125.0018,-9.5417],[125.0089,-9.5298],[125.0171,-9.5196],[125.028,-9.5082],[125.0487,-9.4909],[125.0632,-9.4817],[125.0723,-9.4811],[125.087,-9.4634],[125.0892,-9.4571],[125.0848,-9.4549],[125.0787,-9.4346],[125.0814,-9.4323],[125.081,-9.4215],[125.0779,-9.4183],[125.081,-9.4142],[125.0772,-9.4049],[125.077,-9.3981],[125.08,-9.3948],[125.0793,-9.3902],[125.0751,-9.3838],[125.0707,-9.3826],[125.0673,-9.3779],[125.0668,-9.3736],[125.061,-9.3726],[125.0583,-9.3666],[125.0534,-9.3641],[125.0507,-9.3602],[125.0489,-9.3532],[125.0522,-9.3314],[125.049,-9.3251],[125.041,-9.3211],[125.0356,-9.3235],[125.0341,-9.3201],[125.024,-9.3132],[125.0141,-9.3025]]]}},{"type":"Feature","properties":{"mhid":"1332:323","alt_name":"KOTA KUPANG","latitude":-10.21667,"longitude":123.6,"sample_value":133},"geometry":{"type":"MultiLineString","coordinates":[[[123.6753,-10.1325],[123.671,-10.13],[123.6679,-10.1336],[123.6608,-10.1337],[123.6566,-10.1372],[123.6545,-10.1421],[123.65,-10.1459],[123.6326,-10.1437],[123.6297,-10.1408],[123.6248,-10.1403],[123.6155,-10.1454],[123.6062,-10.149],[123.5988,-10.1531],[123.5921,-10.1523],[123.5883,-10.1568],[123.5825,-10.1569],[123.5717,-10.1642],[123.5688,-10.169],[123.5608,-10.1731],[123.5567,-10.1698],[123.5471,-10.1688],[123.5427,-10.1719],[123.5348,-10.174],[123.5314,-10.1771],[123.5282,-10.1858],[123.5272,-10.1958],[123.5302,-10.2024],[123.5283,-10.2099]]]}},{"type":"Feature","properties":{"mhid":"1332:324","alt_name":"KABUPATEN SAMBAS","latitude":1.41667,"longitude":109.33333,"sample_value":128},"geometry":{"type":"MultiLineString","coordinates":[[[109.7491,1.5336],[109.742,1.5414],[109.7401,1.5465],[109.7311,1.553],[109.7236,1.5616],[109.7168,1.5658],[109.7126,1.5745],[109.7097,1.5831],[109.7041,1.5866],[109.7004,1.5865],[109.6954,1.5895],[109.6915,1.6025],[109.6848,1.6113],[109.6813,1.6125],[109.6694,1.6135],[109.6607,1.6193],[109.6602,1.6298],[109.6581,1.6365],[109.6585,1.6427],[109.6623,1.6487],[109.6626,1.66],[109.6568,1.6704],[109.6623,1.6844],[109.6617,1.6968],[109.6675,1.7003],[109.6675,1.7088],[109.6657,1.7183],[109.6666,1.7218],[109.6667,1.7338],[109.6704,1.7424],[109.6773,1.7507],[109.6836,1.7676],[109.683,1.7848],[109.6809,1.787],[109.6735,1.7879],[109.656,1.7995],[109.6501,1.7972],[109.6421,1.7977],[109.6361,1.8049],[109.6267,1.8013],[109.6208,1.8036],[109.6111,1.7966],[109.598,1.7972],[109.5862,1.7912],[109.5761,1.7995],[109.5763,1.8028],[109.5801,1.8079],[109.5807,1.8187],[109.574,1.8186],[109.578,1.8276],[109.5764,1.834],[109.5801,1.838],[109.5758,1.8456],[109.5696,1.8436],[109.5631,1.8442],[109.5589,1.851],[109.5525,1.8587],[109.5517,1.8618],[109.5533,1.8707],[109.5465,1.8797],[109.5474,1.8883],[109.5425,1.8927],[109.5444,1.8979],[109.5405,1.9021],[109.5398,1.9062],[109.5452,1.9109],[109.5546,1.9162],[109.5564,1.9205],[109.5534,1.9256],[109.5591,1.9418],[109.5631,1.9439],[109.5611,1.9521],[109.5559,1.9553],[109.5478,1.9564],[109.5519,1.9669],[109.5565,1.9705],[109.5636,1.9734],[109.5728,1.9723],[109.5821,1.9752],[109.5913,1.9703],[109.597,1.9716],[109.6028,1.9763],[109.6095,1.9791],[109.6168,1.9806],[109.6251,2.0001],[109.629,2.0053],[109.6285,2.0129],[109.6358,2.0269],[109.6295,2.0364],[109.629,2.0459],[109.6342,2.0583],[109.6425,2.0759],[109.6381,2.0776],[109.6309,2.0683],[109.6254,2.0645],[109.6236,2.0557],[109.6209,2.0542],[109.6162,2.0429],[109.6047,2.0265],[109.6016,2.0163],[109.5987,2.012],[109.5974,2.0059],[109.5943,2.0024],[109.5926,1.9958],[109.5875,1.991],[109.5789,1.9889],[109.5544,1.9888],[109.5421,1.9899],[109.5203,1.9885],[109.5131,1.9887],[109.5087,1.9867],[109.4839,1.984],[109.4719,1.9816],[109.4626,1.9784],[109.4561,1.9777],[109.4506,1.9672],[109.4342,1.9514],[109.427,1.9492],[109.399,1.9455],[109.3775,1.9441],[109.3496,1.9446],[109.3386,1.9419],[109.3345,1.9338],[109.3245,1.927],[109.3243,1.9213],[109.3309,1.9072],[109.3344,1.897],[109.3388,1.8894],[109.3448,1.8734],[109.3402,1.8652],[109.3379,1.8488],[109.3388,1.8438],[109.3365,1.8302],[109.3322,1.8247],[109.3222,1.8145],[109.3091,1.7997],[109.2952,1.7829],[109.2955,1.7782],[109.301,1.7684],[109.2978,1.7614],[109.2887,1.7529],[109.2879,1.7438],[109.286,1.7374],[109.2861,1.7257],[109.2802,1.7191],[109.2702,1.7157],[109.27,1.708],[109.2659,1.6885],[109.2622,1.6773],[109.2582,1.6694],[109.2502,1.6583],[109.236,1.6442],[109.2205,1.6327],[109.2042,1.6234],[109.1931,1.6177],[109.1577,1.6023],[109.1424,1.5945],[109.1289,1.5865],[109.1182,1.5786],[109.1039,1.5669],[109.0629,1.5284],[109.0533,1.5146],[109.0482,1.5029],[109.0419,1.4836],[109.0391,1.4675],[109.0373,1.4506],[109.0371,1.429],[109.0382,1.4138],[109.0419,1.4023],[109.0419,1.3979],[109.045,1.3742],[109.0441,1.3553],[109.0424,1.3453],[109.0387,1.3351],[109.0355,1.3291],[109.0215,1.309],[109.008,1.2926],[108.9873,1.2712],[108.9898,1.2667],[108.9869,1.2558],[108.9791,1.2413],[108.9626,1.2153],[108.9598,1.2047],[108.963,1.1975],[108.9681,1.1941],[108.9695,1.1883],[108.9678,1.1838],[108.9709,1.1786],[108.9703,1.1747],[108.9646,1.1698],[108.9593,1.1672],[108.947,1.1654],[108.9388,1.1703],[108.9266,1.1761],[108.9078,1.1744],[108.9049,1.1713],[108.9043,1.1658],[108.906,1.1592],[108.9178,1.1349],[108.9234,1.1195],[108.9261,1.1163],[108.9346,1.119],[108.9312,1.1067],[108.9316,1.0975],[108.9385,1.0948],[108.9437,1.0858],[108.9505,1.0684],[108.958,1.069],[108.962,1.0652],[108.9579,1.0608],[108.9652,1.0482],[108.9695,1.0365],[108.9722,1.0325],[108.9763,1.0197],[108.9788,1.0012],[108.9788,0.9892]]]}},{"type":"Feature","properties":{"mhid":"1332:325","alt_name":"KABUPATEN BENGKAYANG","latitude":1.06911,"longitude":109.66393,"sample_value":242},"geometry":{"type":"MultiLineString","coordinates":[[[108.864,0.7109],[108.8613,0.706],[108.8672,0.7057],[108.864,0.7109]],[[108.7902,0.7539],[108.7867,0.7541],[108.786,0.7445],[108.7962,0.7499],[108.7902,0.7539]],[[108.77,0.7295],[108.772,0.7328],[108.7673,0.7482],[108.7674,0.7586],[108.7654,0.7637],[108.7588,0.761],[108.7598,0.7508],[108.7591,0.7443],[108.7632,0.7342],[108.77,0.7295]],[[108.7005,0.8043],[108.6914,0.7987],[108.691,0.7947],[108.6942,0.7842],[108.6949,0.7756],[108.7024,0.7661],[108.7061,0.7582],[108.7066,0.7463],[108.709,0.7391],[108.7145,0.7318],[108.7207,0.731],[108.7283,0.7329],[108.7286,0.7459],[108.7272,0.7524],[108.7164,0.7605],[108.7154,0.7653],[108.71,0.772],[108.7067,0.78],[108.7104,0.7883],[108.711,0.8],[108.7046,0.8041],[108.7005,0.8043]],[[108.7912,0.8403],[108.782,0.8401],[108.7762,0.8361],[108.7761,0.8234],[108.7791,0.8213],[108.7866,0.8231],[108.7941,0.8372],[108.7912,0.8403]],[[110.1321,1.1966],[110.1151,1.195],[110.1072,1.1952],[110.0936,1.1985],[110.0879,1.206],[110.0848,1.2133],[110.0789,1.2152],[110.0683,1.2098],[110.0617,1.2095],[110.0557,1.216],[110.057,1.2232],[110.0638,1.2263],[110.0652,1.2418],[110.0639,1.2527],[110.0602,1.2615],[110.0538,1.2666],[110.0464,1.2644],[110.0429,1.2664],[110.0353,1.2747],[110.0208,1.2815],[110.0099,1.291],[110.0039,1.2947],[109.9981,1.2955],[109.9837,1.2943],[109.9768,1.3014],[109.9743,1.308],[109.9599,1.3623],[109.9596,1.3685],[109.9641,1.3865],[109.9592,1.3943],[109.9487,1.4042],[109.9402,1.4134],[109.9343,1.4179],[109.9202,1.4226],[109.9062,1.4213],[109.8969,1.4167],[109.8904,1.4158],[109.875,1.419],[109.8635,1.4177],[109.8543,1.4194],[109.8491,1.4227],[109.8438,1.4238],[109.8337,1.4222],[109.8304,1.4244],[109.8312,1.4409],[109.8278,1.4513],[109.8277,1.4575],[109.8304,1.4673],[109.8351,1.4768],[109.8363,1.4824],[109.8289,1.4828],[109.8225,1.4771],[109.8177,1.4707],[109.808,1.465],[109.8006,1.4694],[109.7963,1.4748],[109.7944,1.4807],[109.7984,1.4877],[109.7975,1.4947],[109.7952,1.4986],[109.7833,1.5015],[109.7797,1.5046],[109.7708,1.5184],[109.7561,1.5304],[109.7491,1.5336]],[[108.874,0.841],[108.8706,0.8372],[108.8668,0.8376],[108.8643,0.8341],[108.8543,0.8274],[108.8425,0.8166],[108.8424,0.812],[108.8479,0.8043],[108.8472,0.7954],[108.8508,0.7925],[108.8529,0.7867],[108.8622,0.7919],[108.8716,0.7852],[108.8812,0.771],[108.8838,0.7635],[108.8853,0.7485],[108.883,0.7364],[108.8785,0.7313],[108.8788,0.7248],[108.8749,0.7238],[108.8734,0.7126],[108.874,0.7086],[108.8791,0.708],[108.8894,0.7017],[108.891,0.6984],[108.8958,0.6967],[108.9044,0.6842],[108.9058,0.6761],[108.9119,0.6694],[108.9204,0.655],[108.9202,0.6483],[108.9277,0.6235],[108.9304,0.5959],[108.9305,0.5873],[108.9291,0.5751],[108.9264,0.5612]]]}},{"type":"Feature","properties":{"mhid":"1332:327","alt_name":"KABUPATEN MEMPAWAH","latitude":0.25,"longitude":109.16667,"sample_value":481},"geometry":{"type":"MultiLineString","coordinates":[[[108.8596,0.5108],[108.8518,0.5112],[108.8481,0.5041],[108.8396,0.5048],[108.8397,0.4951],[108.8454,0.494],[108.8492,0.4896],[108.8544,0.4869],[108.8608,0.4776],[108.8639,0.4871],[108.862,0.4899],[108.8622,0.4963],[108.8577,0.5026],[108.8596,0.5108]],[[108.9264,0.5612],[108.9205,0.5449],[108.9187,0.538],[108.9144,0.5276],[108.9076,0.5042],[108.9087,0.4951],[108.9082,0.4785],[108.911,0.4734],[108.9242,0.4649],[108.9312,0.459],[108.9389,0.4484],[108.9452,0.4324],[108.9463,0.4232],[108.9462,0.4063],[108.945,0.401],[108.9449,0.3844],[108.9398,0.3669],[108.9349,0.3579],[108.9307,0.3523],[108.9209,0.3429],[108.9124,0.3361],[108.9194,0.3231],[108.9326,0.3174],[108.941,0.3168],[108.9519,0.3116],[108.9562,0.3105],[108.9638,0.3138],[108.9912,0.3055],[109.0101,0.2982],[109.031,0.2884],[109.0436,0.281],[109.0651,0.2647],[109.0794,0.2556],[109.0934,0.2431],[109.1099,0.2238],[109.1179,0.2106],[109.1258,0.1935],[109.1297,0.1813],[109.1325,0.1654],[109.132,0.1538],[109.1325,0.1408],[109.1358,0.1327],[109.1418,0.1228],[109.1547,0.1108],[109.1611,0.1022],[109.1693,0.0848],[109.1752,0.0765],[109.1795,0.0724],[109.211,0.0508],[109.2295,0.037],[109.2476,0.0266],[109.2664,0.0192],[109.2708,0.0164],[109.29,0.0085]]]}},{"type":"Feature","properties":{"mhid":"1332:328","alt_name":"KABUPATEN SANGGAU","latitude":0.25472,"longitude":110.45,"sample_value":120},"geometry":{"type":"MultiLineString","coordinates":[[[110.8083,0.8595],[110.8087,0.8678],[110.7984,0.874],[110.7849,0.884],[110.7816,0.8887],[110.7765,0.8911],[110.7789,0.8942],[110.7975,0.906],[110.7931,0.908],[110.7913,0.9122],[110.7852,0.9123],[110.782,0.9261],[110.7784,0.9304],[110.7729,0.9321],[110.7671,0.9294],[110.7662,0.9244],[110.7632,0.9233],[110.7618,0.9177],[110.7644,0.9156],[110.7662,0.9081],[110.7609,0.9057],[110.757,0.8992],[110.7514,0.8996],[110.7498,0.9032],[110.7427,0.9033],[110.7329,0.9073],[110.7253,0.9072],[110.7203,0.9047],[110.7177,0.906],[110.7132,0.8964],[110.7058,0.8913],[110.7041,0.8863],[110.699,0.8841],[110.6973,0.8768],[110.7005,0.8731],[110.6975,0.8645],[110.6929,0.8632],[110.6846,0.8677],[110.6813,0.8718],[110.6716,0.8756],[110.6645,0.8734],[110.6595,0.8741],[110.6533,0.8776],[110.656,0.891],[110.6493,0.896],[110.6495,0.9021],[110.6395,0.8923],[110.6339,0.8834],[110.6381,0.88],[110.6365,0.8757],[110.6249,0.8691],[110.6224,0.8659],[110.6134,0.8693],[110.6113,0.8664],[110.6032,0.8688],[110.6008,0.8624],[110.597,0.8576],[110.5911,0.8602],[110.5876,0.8577],[110.5804,0.8582],[110.5768,0.8537],[110.5699,0.8606],[110.5623,0.8609],[110.5549,0.8594],[110.5479,0.8639],[110.5465,0.8685],[110.5364,0.8677],[110.5298,0.8713],[110.5226,0.8698],[110.5134,0.8745],[110.5078,0.8733],[110.4994,0.8743],[110.4919,0.8766],[110.4913,0.8796],[110.4842,0.8832],[110.4808,0.8879],[110.481,0.8919],[110.4687,0.8925],[110.4641,0.9047],[110.4574,0.9063],[110.4544,0.9088],[110.4458,0.9094],[110.4401,0.9184],[110.4394,0.9225],[110.4344,0.9252],[110.4358,0.9297],[110.4421,0.9381],[110.4404,0.9436],[110.4369,0.9466],[110.4308,0.9447],[110.4259,0.9466],[110.4217,0.9523],[110.4192,0.9506],[110.4068,0.9529],[110.4101,0.9579],[110.4106,0.9674],[110.4061,0.9718],[110.4078,0.9761],[110.4023,0.9884],[110.3988,0.9903],[110.3978,0.9976],[110.3898,0.9943],[110.38,0.9957],[110.3722,0.9912],[110.3721,0.9878],[110.3639,0.985],[110.3587,0.9873],[110.3544,0.9864],[110.3448,0.9918],[110.343,0.9977],[110.3452,1.0062],[110.3407,1.0125],[110.3305,1.0029],[110.3295,0.9952],[110.3265,0.992],[110.323,0.9983],[110.317,1.0018],[110.3105,1.0003],[110.3067,1.0034],[110.2998,0.9957],[110.294,0.9981],[110.2915,0.9954],[110.2798,0.9968],[110.2791,1.0019],[110.2837,1.0097],[110.2843,1.0181],[110.2795,1.0325],[110.288,1.0402],[110.2877,1.0444],[110.2807,1.0522],[110.2774,1.0514],[110.2708,1.0533],[110.2689,1.0504],[110.2616,1.0575],[110.2618,1.0616],[110.2666,1.0639],[110.2649,1.0743],[110.253,1.0795],[110.2485,1.0889],[110.2493,1.098],[110.2473,1.1029],[110.2487,1.1085],[110.2455,1.1111],[110.2426,1.1178],[110.2333,1.1203],[110.223,1.1151],[110.2173,1.1151],[110.2118,1.1185],[110.2092,1.1307],[110.2066,1.1329],[110.2074,1.1383],[110.2133,1.1408],[110.2141,1.1507],[110.2075,1.1593],[110.2086,1.1645],[110.2018,1.1679],[110.1971,1.1751],[110.1944,1.1828],[110.1906,1.1826],[110.1726,1.1871],[110.1665,1.196],[110.1605,1.1987],[110.1539,1.1968],[110.1403,1.1998],[110.1321,1.1966]]]}},{"type":"Feature","properties":{"mhid":"1332:329","alt_name":"KABUPATEN KETAPANG","latitude":-1.58333,"longitude":110.5,"sample_value":321},"geometry":{"type":"MultiLineString","coordinates":[[[110.17,-2.8523],[110.1657,-2.8526],[110.1591,-2.8568],[110.1613,-2.8652],[110.1586,-2.8688],[110.1583,-2.8737],[110.1515,-2.8825],[110.1468,-2.8829],[110.1384,-2.8862],[110.1317,-2.8903],[110.1337,-2.898],[110.1406,-2.903],[110.1452,-2.898],[110.1493,-2.9025],[110.1548,-2.9001],[110.1602,-2.907],[110.1598,-2.9108],[110.169,-2.9123],[110.1716,-2.9143],[110.1838,-2.9086],[110.1948,-2.9094],[110.1917,-2.9039],[110.1949,-2.898],[110.2005,-2.8931],[110.2001,-2.8875],[110.2018,-2.8827],[110.1946,-2.8769],[110.1793,-2.8621],[110.1747,-2.8544],[110.17,-2.8523]],[[110.1131,-2.6731],[110.1055,-2.6744],[110.0993,-2.6733],[110.0945,-2.6801],[110.0926,-2.6883],[110.0856,-2.6954],[110.0818,-2.6931],[110.0778,-2.6963],[110.0734,-2.7061],[110.0714,-2.7178],[110.0684,-2.7218],[110.0665,-2.731],[110.0571,-2.7381],[110.0432,-2.7444],[110.0444,-2.7482],[110.053,-2.7483],[110.0611,-2.7524],[110.0691,-2.7529],[110.0713,-2.7559],[110.0817,-2.7607],[110.0895,-2.7577],[110.0971,-2.7582],[110.1032,-2.7572],[110.1066,-2.7528],[110.1146,-2.7519],[110.1206,-2.7495],[110.1212,-2.7461],[110.1292,-2.7416],[110.1241,-2.7386],[110.1245,-2.7307],[110.1218,-2.7227],[110.1157,-2.7188],[110.121,-2.7155],[110.1209,-2.7098],[110.1181,-2.7025],[110.1218,-2.6983],[110.1274,-2.6985],[110.1278,-2.6936],[110.1197,-2.6862],[110.122,-2.6809],[110.1151,-2.6773],[110.1131,-2.6731]],[[110.1278,-2.6266],[110.1214,-2.6284],[110.1158,-2.632],[110.1234,-2.6383],[110.1278,-2.6266]],[[110.0615,-2.3727],[110.0586,-2.377],[110.0687,-2.3787],[110.0663,-2.3744],[110.0615,-2.3727]],[[110.0146,-1.4282],[110.019,-1.4363],[110.0209,-1.4341],[110.0146,-1.4282]],[[110.0688,-1.3683],[110.0707,-1.3729],[110.074,-1.3873],[110.0745,-1.4047],[110.0706,-1.4217],[110.065,-1.4292],[110.0576,-1.4338],[110.0612,-1.4431],[110.0637,-1.46],[110.0612,-1.4627],[110.0577,-1.4742],[110.0465,-1.4908],[110.0419,-1.5013],[110.0363,-1.5227],[110.0355,-1.533],[110.0391,-1.5487],[110.042,-1.5712],[110.0412,-1.5921],[110.0401,-1.5976],[110.0379,-1.6176],[110.0363,-1.6445],[110.0334,-1.661],[110.0267,-1.6827],[110.0172,-1.6994],[110.0024,-1.7118],[109.996,-1.719],[109.9843,-1.7397],[109.9753,-1.7494],[109.958,-1.7621],[109.9488,-1.7639],[109.9427,-1.7627],[109.9399,-1.7643],[109.9444,-1.7701],[109.946,-1.7749],[109.943,-1.7774],[109.9366,-1.776],[109.9299,-1.7766],[109.9165,-1.7723],[109.912,-1.774],[109.9114,-1.785],[109.9084,-1.8029],[109.9096,-1.8065],[109.9243,-1.8191],[109.9286,-1.8303],[109.9269,-1.8317],[109.9191,-1.8298],[109.9167,-1.827],[109.9098,-1.8279],[109.907,-1.8252],[109.9009,-1.8282],[109.9167,-1.8511],[109.9261,-1.8582],[109.9445,-1.865],[109.9615,-1.8735],[109.9821,-1.8876],[109.9935,-1.8977],[110.0113,-1.9077],[110.0182,-1.9104],[110.0255,-1.9115],[110.0458,-1.9179],[110.0576,-1.9245],[110.0649,-1.9298],[110.0752,-1.9391],[110.0846,-1.953],[110.0913,-1.9618],[110.0998,-1.978],[110.101,-1.9859],[110.1055,-1.9985],[110.1059,-2.0061],[110.1086,-2.0152],[110.1075,-2.0189],[110.1093,-2.0258],[110.1217,-2.0296],[110.1161,-2.0339],[110.113,-2.0386],[110.1122,-2.0442],[110.1182,-2.059],[110.1197,-2.0805],[110.1197,-2.0911],[110.1174,-2.1041],[110.1153,-2.1102],[110.1162,-2.124],[110.1108,-2.1449],[110.109,-2.1547],[110.101,-2.1685],[110.0905,-2.1786],[110.0861,-2.1782],[110.084,-2.1896],[110.0875,-2.1933],[110.0921,-2.1939],[110.0948,-2.2045],[110.0927,-2.2206],[110.0888,-2.231],[110.0827,-2.2389],[110.0774,-2.2418],[110.0682,-2.2378],[110.062,-2.2441],[110.0634,-2.2474],[110.0683,-2.246],[110.0772,-2.2468],[110.0783,-2.2432],[110.0918,-2.2419],[110.1018,-2.2491],[110.1104,-2.2575],[110.1225,-2.2748],[110.126,-2.2834],[110.1296,-2.2877],[110.1405,-2.3084],[110.145,-2.3253],[110.146,-2.3357],[110.1447,-2.3502],[110.1435,-2.3536],[110.1474,-2.3637],[110.1488,-2.371],[110.1517,-2.4028],[110.1533,-2.4144],[110.1523,-2.421],[110.1492,-2.4279],[110.1546,-2.4333],[110.161,-2.4345],[110.1779,-2.4532],[110.182,-2.4568],[110.1844,-2.475],[110.1841,-2.4818],[110.1857,-2.4859],[110.1847,-2.4983],[110.1891,-2.4995],[110.1936,-2.5084],[110.1962,-2.5177],[110.1955,-2.5341],[110.1921,-2.5442],[110.1903,-2.5688],[110.1856,-2.5831],[110.1847,-2.5887],[110.1732,-2.597],[110.174,-2.6021],[110.1665,-2.5997],[110.1625,-2.6026],[110.163,-2.6063],[110.1558,-2.6115],[110.1562,-2.6155],[110.1496,-2.6184],[110.1509,-2.6252],[110.158,-2.6287],[110.1596,-2.6345],[110.1716,-2.6304],[110.182,-2.6333],[110.1901,-2.6339],[110.1992,-2.6375],[110.2036,-2.6411],[110.2121,-2.6455],[110.2161,-2.6512],[110.2187,-2.6598],[110.2189,-2.6668],[110.2172,-2.6704],[110.2209,-2.6771],[110.2223,-2.6828],[110.231,-2.6896],[110.2334,-2.6938],[110.2334,-2.7006],[110.2288,-2.7099],[110.232,-2.7194],[110.2289,-2.7284],[110.2187,-2.7386],[110.2238,-2.7396],[110.2284,-2.7437],[110.2378,-2.7476],[110.2446,-2.7529],[110.2573,-2.7583],[110.2594,-2.7628],[110.2642,-2.7787],[110.2652,-2.7954],[110.2626,-2.8157],[110.2594,-2.828],[110.252,-2.8497],[110.2405,-2.8682],[110.2242,-2.886],[110.2294,-2.8959],[110.2393,-2.9053],[110.2483,-2.9196],[110.2525,-2.9321],[110.2564,-2.9531],[110.26,-2.9612],[110.2652,-2.9647],[110.2835,-2.9714],[110.298,-2.9818],[110.3017,-2.986],[110.3037,-2.9943],[110.3184,-2.9781],[110.3566,-2.9428],[110.3769,-2.9268],[110.3896,-2.9189],[110.3996,-2.9095],[110.415,-2.899],[110.4316,-2.8905],[110.4746,-2.8675],[110.4899,-2.8599],[110.5007,-2.8558],[110.5113,-2.8503],[110.524,-2.8483],[110.5293,-2.8445],[110.5542,-2.838],[110.5647,-2.8376],[110.5785,-2.8421],[110.5894,-2.8501],[110.5969,-2.8539],[110.6053,-2.8616],[110.6149,-2.873],[110.6168,-2.879],[110.6228,-2.8892],[110.6283,-2.9045],[110.6309,-2.9136],[110.6349,-2.9387],[110.6357,-2.9645],[110.6378,-2.9831],[110.6416,-2.9878],[110.6374,-2.9923],[110.6245,-2.9912],[110.6131,-2.9849],[110.6111,-2.9909],[110.6197,-3.0036],[110.6273,-3.0109],[110.6311,-3.0172],[110.6327,-3.0236],[110.6309,-3.0271],[110.6333,-3.0302],[110.6396,-3.0329],[110.6496,-3.0405],[110.653,-3.0419],[110.6602,-3.0408],[110.666,-3.0363],[110.6701,-3.0349],[110.6779,-3.0297],[110.6852,-3.0223],[110.6935,-3.0172],[110.7169,-3.0059],[110.7271,-3.0022],[110.7289,-2.9878],[110.7338,-2.9859]]]}},{"type":"Feature","properties":{"mhid":"1332:330","alt_name":"KABUPATEN SINTANG","latitude":-0.08333,"longitude":112.08333,"sample_value":790},"geometry":{"type":"MultiLineString","coordinates":[[[111.5276,0.9649],[111.5248,0.9703],[111.5233,0.9825],[111.521,0.9907],[111.5161,1.0032],[111.5066,1.0207],[111.4953,1.0297],[111.4793,1.0365],[111.4721,1.0377],[111.462,1.033],[111.453,1.0217],[111.4426,1.0135],[111.4261,1.0099],[111.4112,1.0091],[111.405,1.0116],[111.3872,1.0162],[111.378,1.0203],[111.3661,1.0298],[111.353,1.0368],[111.3328,1.0432],[111.3182,1.0453],[111.3064,1.0488],[111.2965,1.0544],[111.2857,1.0563],[111.2759,1.0649],[111.2681,1.0683],[111.2582,1.0683],[111.2514,1.0706],[111.2474,1.0748],[111.2342,1.0837],[111.2258,1.0839],[111.2105,1.0719],[111.1854,1.0599],[111.1653,1.0611],[111.1589,1.0558],[111.1459,1.0508],[111.13,1.0502],[111.113,1.0516],[111.1088,1.0494],[111.1033,1.0506],[111.0928,1.0483],[111.0814,1.0506],[111.0624,1.0491],[111.0418,1.0388],[111.0215,1.0339],[111.0009,1.0325],[110.9963,1.0292],[110.9802,1.0278],[110.9676,1.0289],[110.9449,1.0258],[110.9313,1.0253],[110.9239,1.0288],[110.9143,1.03],[110.906,1.0274],[110.8965,1.0178],[110.8895,1.0026],[110.89,0.9929],[110.8876,0.9883],[110.8785,0.9769],[110.8737,0.9742],[110.8577,0.9593],[110.8535,0.9513],[110.8508,0.95],[110.8451,0.9525],[110.8292,0.9515],[110.8157,0.95],[110.8051,0.9463],[110.7996,0.9404],[110.8028,0.9282],[110.8076,0.9225],[110.809,0.9159],[110.8078,0.91],[110.8112,0.9052],[110.8104,0.9007],[110.801,0.8952],[110.7987,0.8896],[110.8002,0.8831],[110.8113,0.8686],[110.8115,0.8627],[110.8083,0.8595]]]}},{"type":"Feature","properties":{"mhid":"1332:331","alt_name":"KABUPATEN KAPUAS HULU","latitude":0.81667,"longitude":112.76667,"sample_value":904},"geometry":{"type":"MultiLineString","coordinates":[[[114.2011,1.4128],[114.1977,1.4212],[114.1824,1.4284],[114.1652,1.4385],[114.1561,1.4468],[114.1493,1.457],[114.1427,1.4634],[114.1368,1.465],[114.1221,1.4608],[114.1112,1.455],[114.1054,1.4563],[114.098,1.4619],[114.0923,1.4634],[114.083,1.4627],[114.0708,1.464],[114.0657,1.4605],[114.0571,1.4571],[114.0481,1.4552],[114.0365,1.451],[114.0311,1.4481],[114.0158,1.4464],[113.9999,1.4534],[113.9857,1.4538],[113.9788,1.4529],[113.9724,1.4499],[113.9636,1.4442],[113.9533,1.4424],[113.9474,1.4384],[113.9395,1.4298],[113.9363,1.4198],[113.934,1.4173],[113.9272,1.4157],[113.9181,1.4104],[113.9113,1.412],[113.8954,1.405],[113.8861,1.4028],[113.8781,1.3959],[113.8719,1.3873],[113.8686,1.3864],[113.8581,1.3866],[113.8511,1.3852],[113.8418,1.3802],[113.8316,1.3776],[113.8204,1.3701],[113.8166,1.3642],[113.8166,1.3571],[113.8223,1.3534],[113.8267,1.3479],[113.8268,1.3356],[113.8251,1.3298],[113.8172,1.3113],[113.8009,1.2978],[113.7916,1.2928],[113.7784,1.2878],[113.7715,1.286],[113.7558,1.2794],[113.7438,1.2719],[113.7267,1.2676],[113.7202,1.265],[113.7032,1.2609],[113.6917,1.2515],[113.6875,1.2457],[113.6754,1.2329],[113.6695,1.2292],[113.6651,1.2236],[113.6591,1.2202],[113.6368,1.2177],[113.6268,1.2188],[113.6235,1.2204],[113.6207,1.2286],[113.6221,1.2427],[113.6212,1.2478],[113.6031,1.2552],[113.5979,1.2593],[113.5939,1.2691],[113.5917,1.2796],[113.5808,1.3019],[113.5714,1.3065],[113.5622,1.3063],[113.5512,1.3149],[113.5383,1.3205],[113.5277,1.3206],[113.5208,1.319],[113.5145,1.316],[113.5043,1.3134],[113.4957,1.3133],[113.4889,1.3113],[113.4626,1.3016],[113.4566,1.2978],[113.4458,1.2888],[113.4394,1.2857],[113.4339,1.285],[113.418,1.2892],[113.4045,1.3007],[113.3939,1.3149],[113.3854,1.3211],[113.3707,1.3242],[113.3654,1.3285],[113.3609,1.3456],[113.353,1.3575],[113.3441,1.3629],[113.3355,1.3665],[113.3214,1.3771],[113.3109,1.3777],[113.3005,1.3763],[113.2942,1.3794],[113.2809,1.384],[113.2707,1.3902],[113.2639,1.3918],[113.2552,1.386],[113.2488,1.383],[113.2388,1.3856],[113.2304,1.3919],[113.2234,1.3918],[113.2149,1.3857],[113.2,1.3808],[113.193,1.3807],[113.1791,1.3784],[113.1689,1.3807],[113.1603,1.3866],[113.1535,1.3888],[113.1395,1.3898],[113.1351,1.392],[113.1301,1.397],[113.1251,1.4102],[113.1217,1.4164],[113.1091,1.4335],[113.1004,1.4393],[113.0896,1.4384],[113.0832,1.4301],[113.077,1.4269],[113.0701,1.4278],[113.0578,1.4212],[113.0439,1.4189],[113.0346,1.4139],[113.0121,1.4072],[113.0069,1.407],[112.9964,1.4088],[112.9841,1.4099],[112.9757,1.4117],[112.9695,1.4161],[112.967,1.4257],[112.9695,1.436],[112.9763,1.4483],[112.9859,1.4526],[112.996,1.4555],[113.0167,1.4673],[113.0269,1.47],[113.0326,1.4738],[113.0342,1.4769],[113.0335,1.4839],[113.0298,1.4899],[113.0304,1.4931],[113.0366,1.4961],[113.0412,1.5012],[113.0431,1.5117],[113.0482,1.5204],[113.0574,1.5255],[113.0618,1.5308],[113.0626,1.5378],[113.0615,1.5448],[113.0565,1.5542],[113.0538,1.5565],[113.0441,1.5605],[113.0338,1.5618],[113.0107,1.5706],[112.9968,1.5721],[112.9829,1.5694],[112.9696,1.5651],[112.9635,1.5666],[112.9579,1.5706],[112.9478,1.5732],[112.938,1.5693],[112.924,1.5692],[112.9209,1.5708],[112.9077,1.5825],[112.8982,1.587],[112.8911,1.5877],[112.8808,1.5855],[112.8752,1.5812],[112.8708,1.5757],[112.8642,1.5632],[112.8555,1.5572],[112.8507,1.5519],[112.8452,1.5428],[112.8395,1.5389],[112.8256,1.5414],[112.8083,1.5384],[112.7985,1.5417],[112.7917,1.5528],[112.7803,1.561],[112.7734,1.5621],[112.7664,1.5615],[112.7529,1.5577],[112.7459,1.5585],[112.7366,1.5635],[112.7286,1.5656],[112.7216,1.5647],[112.7122,1.56],[112.7024,1.5562],[112.6815,1.5524],[112.6716,1.5557],[112.6597,1.5645],[112.6548,1.5696],[112.6445,1.5697],[112.6315,1.5646],[112.6244,1.565],[112.6073,1.5696],[112.5964,1.5707],[112.5251,1.5757],[112.5109,1.5755],[112.5039,1.5763],[112.4861,1.5761],[112.4723,1.571],[112.4618,1.5612],[112.4512,1.5564],[112.4459,1.5514],[112.4394,1.5364],[112.4314,1.5269],[112.4084,1.5204],[112.3939,1.5196],[112.3832,1.5137],[112.3632,1.5092],[112.355,1.5039],[112.3484,1.5018],[112.3317,1.5041],[112.3228,1.5035],[112.3163,1.5011],[112.2976,1.4868],[112.2856,1.4789],[112.2731,1.4691],[112.2672,1.4662],[112.2549,1.4633],[112.2462,1.4597],[112.2366,1.4579],[112.2276,1.4577],[112.2153,1.4537],[112.2087,1.4493],[112.2046,1.4445],[112.199,1.4314],[112.1985,1.4171],[112.1991,1.4102],[112.2067,1.4011],[112.2186,1.3951],[112.2229,1.389],[112.2229,1.3831],[112.2179,1.3648],[112.2101,1.3446],[112.2036,1.3326],[112.1969,1.3247],[112.1813,1.3133],[112.1745,1.3019],[112.1706,1.2812],[112.1702,1.2623],[112.168,1.2566],[112.1598,1.2459],[112.1593,1.2375],[112.1626,1.2185],[112.1612,1.2111],[112.1581,1.2029],[112.1453,1.1868],[112.1436,1.1809],[112.1461,1.1713],[112.1531,1.156],[112.1492,1.1481],[112.142,1.1449],[112.1284,1.1437],[112.1146,1.1453],[112.0945,1.1439],[112.0447,1.1347],[112.0315,1.1335],[112.0067,1.1332],[111.9795,1.1302],[111.9612,1.1289],[111.9463,1.1227],[111.9418,1.1168],[111.9339,1.0985],[111.9258,1.0897],[111.9146,1.0822],[111.9093,1.0759],[111.8975,1.0703],[111.892,1.0658],[111.8778,1.0464],[111.8766,1.0387],[111.8763,1.028],[111.8746,1.0155],[111.87,1.0072],[111.8617,1.003],[111.855,1.0024],[111.8384,1.0047],[111.8234,1.0096],[111.8075,1.0178],[111.7998,1.0203],[111.7942,1.0154],[111.7934,1.0057],[111.7906,1.0032],[111.7802,1.0049],[111.7763,1.0091],[111.7725,1.0165],[111.7658,1.0222],[111.7596,1.0217],[111.7414,1.0138],[111.7313,1.0107],[111.7245,1.0118],[111.7216,1.0149],[111.7196,1.021],[111.7154,1.0267],[111.7025,1.0294],[111.6957,1.0341],[111.6852,1.0372],[111.677,1.0439],[111.6693,1.0468],[111.6608,1.0454],[111.647,1.0383],[111.6344,1.0299],[111.6183,1.014],[111.6131,1.0105],[111.6007,0.9995],[111.5918,0.9976],[111.5766,0.9979],[111.5678,0.9947],[111.5607,0.9882],[111.5519,0.9872],[111.5485,0.9852],[111.5469,0.9766],[111.5429,0.9635],[111.5348,0.9621],[111.5276,0.9649]]]}},{"type":"Feature","properties":{"mhid":"1332:334","alt_name":"KABUPATEN KAYONG UTARA","latitude":-1.43711,"longitude":110.79781,"sample_value":960},"geometry":{"type":"MultiLineString","coordinates":[[[108.7699,-1.701],[108.7622,-1.7004],[108.7531,-1.7021],[108.7483,-1.7001],[108.7293,-1.7024],[108.7242,-1.7071],[108.7193,-1.7082],[108.7156,-1.7029],[108.7111,-1.7073],[108.704,-1.7044],[108.6917,-1.7096],[108.6882,-1.7028],[108.6807,-1.7057],[108.6839,-1.7093],[108.6838,-1.7146],[108.6789,-1.7174],[108.681,-1.7227],[108.6961,-1.7216],[108.6994,-1.7239],[108.7081,-1.7242],[108.7181,-1.7272],[108.7312,-1.7257],[108.7375,-1.7216],[108.7517,-1.7177],[108.774,-1.7169],[108.7832,-1.7136],[108.7873,-1.7109],[108.7876,-1.707],[108.7839,-1.7033],[108.7699,-1.701]],[[109.1543,-1.5978],[109.1505,-1.6001],[109.151,-1.6053],[109.1558,-1.6043],[109.1543,-1.5978]],[[108.7771,-1.5755],[108.7657,-1.5761],[108.7634,-1.5806],[108.7634,-1.5899],[108.7675,-1.5914],[108.7771,-1.5869],[108.7771,-1.5755]],[[108.7403,-1.5755],[108.7382,-1.5707],[108.7321,-1.5687],[108.731,-1.5754],[108.7391,-1.5791],[108.7403,-1.5755]],[[108.898,-1.5347],[108.8924,-1.5357],[108.8917,-1.5402],[108.893,-1.5491],[108.8757,-1.5648],[108.8685,-1.5594],[108.8642,-1.5622],[108.8575,-1.5722],[108.8546,-1.5713],[108.8558,-1.5642],[108.8524,-1.5639],[108.846,-1.5697],[108.8392,-1.5549],[108.8356,-1.553],[108.8293,-1.5558],[108.8308,-1.5604],[108.8251,-1.562],[108.8249,-1.5674],[108.8203,-1.5704],[108.8132,-1.5676],[108.8002,-1.5719],[108.79,-1.5816],[108.796,-1.5844],[108.8032,-1.5794],[108.806,-1.5811],[108.8072,-1.5865],[108.8017,-1.5932],[108.8124,-1.5923],[108.8216,-1.5894],[108.8234,-1.5865],[108.8303,-1.5845],[108.8289,-1.5895],[108.8336,-1.6026],[108.8293,-1.6081],[108.836,-1.6235],[108.8411,-1.628],[108.8374,-1.6356],[108.8294,-1.6369],[108.8277,-1.6432],[108.8191,-1.6471],[108.8272,-1.6496],[108.83,-1.6639],[108.8335,-1.6676],[108.8373,-1.6671],[108.8556,-1.6729],[108.8568,-1.6755],[108.8662,-1.6766],[108.8732,-1.6731],[108.8775,-1.6744],[108.8919,-1.6683],[108.8961,-1.6648],[108.8977,-1.6607],[108.9059,-1.6604],[108.9103,-1.6585],[108.9222,-1.6601],[108.9354,-1.651],[108.9415,-1.6447],[108.9491,-1.6399],[108.9518,-1.6396],[108.9607,-1.6338],[108.963,-1.6294],[108.9696,-1.6267],[108.9729,-1.6168],[108.9751,-1.6156],[108.9829,-1.6036],[108.9827,-1.5997],[108.9731,-1.5935],[108.9719,-1.5878],[108.9595,-1.5797],[108.9532,-1.5734],[108.954,-1.5664],[108.944,-1.5592],[108.9411,-1.5513],[108.9296,-1.5484],[108.9169,-1.5491],[108.9082,-1.5418],[108.902,-1.5443],[108.898,-1.5347]],[[109.3887,-1.4903],[109.3875,-1.4857],[109.3828,-1.4886],[109.3816,-1.4974],[109.3768,-1.5009],[109.38,-1.5041],[109.3827,-1.4991],[109.3871,-1.4955],[109.3887,-1.4903]],[[109.044,-1.474],[109.0395,-1.4786],[109.0402,-1.4855],[109.0448,-1.4884],[109.0438,-1.4922],[109.0464,-1.4956],[109.0523,-1.4956],[109.0569,-1.4916],[109.0527,-1.4881],[109.054,-1.4789],[109.0472,-1.4811],[109.044,-1.474]],[[109.9008,-1.3427],[109.8967,-1.3504],[109.9029,-1.3492],[109.9008,-1.3427]],[[109.1388,-1.2904],[109.1342,-1.2873],[109.1303,-1.2894],[109.1286,-1.2934],[109.1207,-1.2984],[109.115,-1.3137],[109.1236,-1.3112],[109.1265,-1.3049],[109.1303,-1.3028],[109.1357,-1.292],[109.1388,-1.2904]],[[109.146,-1.2878],[109.1411,-1.2871],[109.1414,-1.2918],[109.1395,-1.3112],[109.1398,-1.3176],[109.1357,-1.3223],[109.1396,-1.3278],[109.145,-1.3225],[109.1469,-1.3178],[109.1527,-1.3107],[109.1521,-1.3026],[109.158,-1.3017],[109.1631,-1.2945],[109.1616,-1.2902],[109.1554,-1.2905],[109.1506,-1.2943],[109.146,-1.2878]],[[109.1332,-1.2763],[109.1264,-1.2818],[109.1272,-1.2863],[109.1336,-1.2843],[109.1352,-1.2778],[109.1332,-1.2763]],[[109.16,-1.2665],[109.1565,-1.2665],[109.1526,-1.272],[109.1588,-1.2822],[109.1613,-1.2827],[109.1641,-1.2903],[109.1727,-1.2916],[109.1749,-1.2961],[109.1785,-1.2927],[109.1797,-1.2833],[109.1707,-1.2712],[109.163,-1.2662],[109.16,-1.2665]],[[109.2082,-1.2353],[109.2073,-1.2329],[109.1999,-1.2376],[109.2056,-1.2437],[109.2083,-1.2419],[109.2082,-1.2353]],[[109.2751,-1.2108],[109.2772,-1.2067],[109.2749,-1.2],[109.2719,-1.2012],[109.2717,-1.208],[109.2751,-1.2108]],[[109.2632,-1.1857],[109.2602,-1.1816],[109.2468,-1.1943],[109.2444,-1.1979],[109.2371,-1.1966],[109.235,-1.2001],[109.2274,-1.2002],[109.2243,-1.2121],[109.2285,-1.2138],[109.2264,-1.2222],[109.2231,-1.2238],[109.2188,-1.2301],[109.2173,-1.2368],[109.2325,-1.2436],[109.2432,-1.2432],[109.253,-1.2324],[109.2533,-1.2274],[109.2565,-1.2229],[109.2632,-1.2195],[109.2653,-1.2151],[109.2695,-1.2163],[109.2711,-1.2087],[109.2681,-1.1996],[109.269,-1.1943],[109.2664,-1.187],[109.2632,-1.1857]],[[109.498,-0.9786],[109.492,-0.973],[109.488,-0.9731],[109.4833,-0.986],[109.4786,-0.9951],[109.4724,-1.0027],[109.4649,-1.0025],[109.4618,-1.0006],[109.4581,-1.0036],[109.4619,-1.0098],[109.4612,-1.0158],[109.455,-1.0183],[109.4572,-1.0227],[109.4511,-1.0309],[109.4518,-1.0373],[109.4557,-1.0415],[109.4551,-1.0622],[109.4489,-1.1033],[109.4465,-1.1099],[109.4437,-1.1269],[109.4373,-1.1528],[109.4334,-1.1772],[109.4261,-1.2054],[109.4178,-1.2248],[109.4106,-1.239],[109.4064,-1.2448],[109.4012,-1.2472],[109.3927,-1.2467],[109.3832,-1.2499],[109.3798,-1.2539],[109.3818,-1.2594],[109.3977,-1.2717],[109.4024,-1.2761],[109.4173,-1.2858],[109.4304,-1.2932],[109.4564,-1.3032],[109.4685,-1.3062],[109.4931,-1.3095],[109.5011,-1.3094],[109.5079,-1.2997],[109.5174,-1.2911],[109.5421,-1.2733],[109.5607,-1.2624],[109.5894,-1.2489],[109.5905,-1.2467],[109.6168,-1.2354],[109.6382,-1.227],[109.6415,-1.2246],[109.6602,-1.2177],[109.6736,-1.2147],[109.6862,-1.2137],[109.6839,-1.2103],[109.6832,-1.2023],[109.6844,-1.1988],[109.6901,-1.1925],[109.714,-1.18],[109.7269,-1.1743],[109.7485,-1.1628],[109.7551,-1.1575],[109.7696,-1.1498],[109.7778,-1.1475],[109.7804,-1.1441],[109.7796,-1.1351],[109.7768,-1.1285],[109.7721,-1.1252],[109.7678,-1.1183],[109.7656,-1.1068],[109.765,-1.0976],[109.7667,-1.0927],[109.7698,-1.077],[109.766,-1.0687],[109.7656,-1.0621],[109.7596,-1.0454],[109.7594,-1.0348],[109.7562,-1.0246],[109.7561,-1.0132],[109.7619,-1.01],[109.7607,-1.0042],[109.7459,-1.0034],[109.7375,-1.0018],[109.73,-0.9991],[109.7231,-0.994],[109.7195,-0.9892],[109.7147,-0.9891],[109.701,-0.9931],[109.699,-1.0023],[109.6969,-1.0069],[109.6859,-1.0188],[109.6753,-1.0204],[109.6626,-1.0105],[109.6511,-1.0122],[109.6457,-1.0114],[109.6416,-1.003],[109.64,-0.9905],[109.6378,-0.9864],[109.6166,-0.9859],[109.6054,-0.984],[109.5971,-0.9811],[109.5882,-0.9846],[109.5772,-0.9937],[109.5719,-0.9945],[109.5676,-0.999],[109.5538,-1.0032],[109.5365,-1.0001],[109.5316,-0.997],[109.5289,-0.9988],[109.5169,-0.9903],[109.498,-0.9786]],[[109.7543,-0.8952],[109.7582,-0.8963],[109.758,-0.9033],[109.7558,-0.907],[109.7482,-0.9138],[109.7334,-0.9152],[109.7283,-0.9197],[109.7272,-0.9247],[109.7307,-0.9326],[109.7326,-0.9404],[109.7344,-0.9617],[109.7324,-0.9874],[109.7421,-0.9928],[109.747,-0.9897],[109.755,-0.9891],[109.762,-0.9924],[109.7686,-1.0019],[109.7692,-1.0192],[109.7677,-1.0326],[109.775,-1.0437],[109.7787,-1.0444],[109.7878,-1.0418],[109.7996,-1.0452],[109.8038,-1.0489],[109.8044,-1.0541],[109.8139,-1.0701],[109.8201,-1.0837],[109.8188,-1.0904],[109.8255,-1.0944],[109.8293,-1.0889],[109.836,-1.088],[109.8557,-1.0905],[109.8778,-1.0973],[109.8959,-1.1047],[109.9079,-1.1107],[109.9257,-1.1184],[109.9385,-1.123],[109.9424,-1.1209],[109.9466,-1.125],[109.9418,-1.1313],[109.9378,-1.1407],[109.9336,-1.1544],[109.9281,-1.167],[109.9228,-1.1763],[109.9211,-1.1852],[109.9164,-1.1917],[109.9114,-1.1927],[109.9099,-1.2032],[109.9078,-1.209],[109.9118,-1.2093],[109.9124,-1.2171],[109.9186,-1.2184],[109.9265,-1.2136],[109.9329,-1.2172],[109.9358,-1.2206],[109.9331,-1.2232],[109.9365,-1.2323],[109.9404,-1.2349],[109.9441,-1.2322],[109.9472,-1.2361],[109.9486,-1.2429],[109.9413,-1.2547],[109.9471,-1.2566],[109.95,-1.2629],[109.9559,-1.2617],[109.9608,-1.2641],[109.9603,-1.2714],[109.9624,-1.277],[109.965,-1.2777],[109.9728,-1.2751],[109.9859,-1.2774],[109.9881,-1.2739],[109.9935,-1.2738],[110.0021,-1.2775],[110.0151,-1.2851],[110.0262,-1.2951],[110.0329,-1.3034],[110.0326,-1.3074],[110.0446,-1.3177],[110.0576,-1.3374],[110.0633,-1.3499],[110.0688,-1.3683]]]}},{"type":"Feature","properties":{"mhid":"1332:335","alt_name":"KABUPATEN KUBU RAYA","latitude":0.01637,"longitude":109.33731,"sample_value":456},"geometry":{"type":"MultiLineString","coordinates":[[[109.5848,-0.7388],[109.5788,-0.7349],[109.5748,-0.7384],[109.5729,-0.7485],[109.5666,-0.7548],[109.5688,-0.7588],[109.583,-0.7669],[109.594,-0.7661],[109.6018,-0.7689],[109.6041,-0.7786],[109.6103,-0.7801],[109.6187,-0.784],[109.6232,-0.7934],[109.6285,-0.7953],[109.6354,-0.7912],[109.6367,-0.787],[109.6329,-0.7824],[109.6334,-0.7762],[109.6319,-0.7606],[109.6261,-0.7509],[109.6224,-0.7498],[109.613,-0.7518],[109.6079,-0.7486],[109.5987,-0.7483],[109.5934,-0.7429],[109.5848,-0.7388]],[[109.6908,-0.7155],[109.6762,-0.7177],[109.6683,-0.7166],[109.6651,-0.7246],[109.6616,-0.7256],[109.6503,-0.7194],[109.6469,-0.7205],[109.6461,-0.726],[109.6422,-0.7324],[109.6289,-0.7336],[109.6244,-0.7285],[109.616,-0.7324],[109.6059,-0.7342],[109.6089,-0.7405],[109.6078,-0.7449],[109.6159,-0.7493],[109.6214,-0.7472],[109.6394,-0.75],[109.6448,-0.7486],[109.6609,-0.7485],[109.6689,-0.7523],[109.6728,-0.7382],[109.6756,-0.7375],[109.6845,-0.7269],[109.6878,-0.7267]],[[109.6878,-0.7267],[109.691,-0.7265],[109.6921,-0.725]],[[109.6921,-0.725],[109.6953,-0.7206],[109.6954,-0.717],[109.6908,-0.7155]],[[109.5715,-0.7319],[109.577,-0.7269],[109.5755,-0.7178],[109.5687,-0.7123],[109.5655,-0.7145],[109.5607,-0.7229],[109.5532,-0.7284],[109.5522,-0.732],[109.5578,-0.7331],[109.5648,-0.7422],[109.5703,-0.7396],[109.5715,-0.7319]],[[109.5756,-0.7108],[109.5706,-0.712],[109.5769,-0.7189],[109.5785,-0.7262],[109.5774,-0.729],[109.593,-0.7383],[109.5992,-0.7437],[109.604,-0.7448],[109.6063,-0.7415],[109.6042,-0.7319],[109.6067,-0.7266],[109.5942,-0.716],[109.5868,-0.72],[109.5797,-0.7191],[109.5756,-0.7108]],[[109.6571,-0.6997],[109.648,-0.7032],[109.6323,-0.7055],[109.621,-0.7051],[109.6161,-0.7025],[109.61,-0.7046],[109.6028,-0.7045],[109.5996,-0.7092],[109.5966,-0.7098],[109.5866,-0.7071],[109.5779,-0.7099],[109.5801,-0.7179],[109.5865,-0.7189],[109.5903,-0.7152],[109.595,-0.7149],[109.6069,-0.7249],[109.6086,-0.7302],[109.6147,-0.7299],[109.6265,-0.7269],[109.6289,-0.732],[109.634,-0.73],[109.6418,-0.7305],[109.6473,-0.7178],[109.6526,-0.7191],[109.6604,-0.7241],[109.6642,-0.724],[109.6665,-0.7177],[109.6697,-0.7147],[109.6761,-0.7168],[109.6873,-0.7143],[109.6879,-0.7068],[109.68,-0.7022],[109.67,-0.702],[109.6571,-0.6997]],[[109.5258,-0.6994],[109.5167,-0.7015],[109.5004,-0.6999],[109.4912,-0.7012],[109.4913,-0.7052]],[[109.4913,-0.7052],[109.4913,-0.7064]],[[109.4913,-0.7064],[109.4913,-0.7074],[109.4835,-0.7066],[109.4853,-0.7138],[109.4831,-0.7174],[109.4694,-0.7169],[109.4621,-0.7209],[109.4586,-0.7207],[109.4481,-0.7092],[109.4468,-0.7106],[109.4531,-0.7252],[109.4567,-0.7284],[109.464,-0.7313],[109.4765,-0.732],[109.4885,-0.7302],[109.5147,-0.7274],[109.5287,-0.7272],[109.5363,-0.7308],[109.5422,-0.7312],[109.5493,-0.7241],[109.5557,-0.7207],[109.5592,-0.7152],[109.5496,-0.7066],[109.5422,-0.7059],[109.5335,-0.7033],[109.5258,-0.6994]],[[109.4852,-0.6839],[109.4836,-0.6875],[109.4938,-0.6956],[109.4979,-0.6941],[109.4962,-0.6879],[109.4852,-0.6839]],[[109.6671,-0.6847],[109.6609,-0.681],[109.6576,-0.677],[109.6561,-0.6719]],[[109.6561,-0.6719],[109.6561,-0.6718],[109.656,-0.6719]],[[109.656,-0.6719],[109.6512,-0.6772],[109.6474,-0.6844],[109.6402,-0.6854],[109.6344,-0.6895],[109.6176,-0.6907],[109.6159,-0.6849],[109.6076,-0.6867],[109.5978,-0.6953],[109.5832,-0.6921],[109.5738,-0.6921],[109.5523,-0.7066],[109.5612,-0.7121],[109.569,-0.7079],[109.578,-0.7075],[109.5902,-0.7051],[109.5948,-0.7079],[109.6029,-0.7021],[109.6084,-0.7025],[109.617,-0.7012],[109.6217,-0.7036],[109.6314,-0.7039],[109.6443,-0.7025],[109.6552,-0.6985],[109.662,-0.6991],[109.6719,-0.6982],[109.6747,-0.6955],[109.6686,-0.6892],[109.6671,-0.6847]],[[109.4478,-0.6716],[109.4416,-0.6686],[109.4397,-0.6738],[109.4358,-0.6764],[109.4231,-0.6697],[109.4189,-0.6697],[109.4119,-0.6742],[109.425,-0.6816],[109.4311,-0.6876],[109.4365,-0.6958],[109.4424,-0.6961],[109.4547,-0.7051],[109.4529,-0.7106],[109.4581,-0.7188],[109.4669,-0.7161],[109.483,-0.7166],[109.482,-0.7081],[109.4835,-0.7054],[109.4913,-0.7064]],[[109.4913,-0.7064],[109.4915,-0.7064],[109.4913,-0.7052]],[[109.4913,-0.7052],[109.4896,-0.6968],[109.4782,-0.6893],[109.4703,-0.6883],[109.4676,-0.6814],[109.4577,-0.6771],[109.4536,-0.6721],[109.4478,-0.6716]],[[109.2538,-0.6614],[109.2492,-0.6606],[109.2464,-0.6641],[109.2425,-0.6933],[109.2419,-0.7063],[109.2425,-0.7536],[109.2418,-0.767],[109.2378,-0.7935],[109.2375,-0.7998],[109.2393,-0.8116],[109.2423,-0.8231],[109.2454,-0.8311],[109.2547,-0.8469],[109.267,-0.8623],[109.2811,-0.8816],[109.3003,-0.9002],[109.3044,-0.9003],[109.3059,-0.9042],[109.314,-0.9101],[109.3309,-0.9174],[109.3538,-0.9166],[109.3612,-0.9183],[109.3742,-0.9265],[109.3911,-0.9303],[109.3992,-0.9332],[109.4062,-0.9322],[109.4102,-0.9248],[109.4189,-0.9162],[109.4275,-0.9023],[109.4277,-0.8992],[109.4327,-0.896],[109.4263,-0.8889],[109.4215,-0.8749],[109.4163,-0.8714],[109.4169,-0.8646],[109.4198,-0.8642],[109.4334,-0.8536],[109.4388,-0.8524],[109.4397,-0.8576],[109.4511,-0.8617],[109.457,-0.8654],[109.4646,-0.8658],[109.4816,-0.8693],[109.4861,-0.8717],[109.4932,-0.8725],[109.4976,-0.8757],[109.5051,-0.8742],[109.5147,-0.8772],[109.5245,-0.8781],[109.5367,-0.8863],[109.5431,-0.8835],[109.5524,-0.885],[109.5575,-0.888],[109.5632,-0.8956],[109.5689,-0.8991],[109.5709,-0.9023],[109.575,-0.8982],[109.5839,-0.8977],[109.5903,-0.9035],[109.5951,-0.9118],[109.5977,-0.9198],[109.5996,-0.9312],[109.6032,-0.9377],[109.6089,-0.9433],[109.6101,-0.9564],[109.6093,-0.9643],[109.6129,-0.9721],[109.6219,-0.978],[109.6268,-0.972],[109.6397,-0.9763],[109.6436,-0.9814],[109.6489,-0.998],[109.6534,-1.0001],[109.661,-1.0003],[109.6687,-0.9971],[109.6759,-1.0026],[109.6839,-1.0134],[109.6899,-0.9973],[109.6939,-0.991],[109.6986,-0.9863],[109.7062,-0.9829],[109.7214,-0.9737],[109.7229,-0.9664],[109.7206,-0.9432],[109.7207,-0.9313],[109.7198,-0.9186],[109.7205,-0.9134],[109.7281,-0.9049],[109.7431,-0.9013],[109.7461,-0.8993],[109.7445,-0.895],[109.7381,-0.8884],[109.7359,-0.8839],[109.7391,-0.8764],[109.7479,-0.8736],[109.7475,-0.8689],[109.7438,-0.864],[109.7375,-0.8628],[109.732,-0.8698],[109.7238,-0.874],[109.7163,-0.8707],[109.7137,-0.8671],[109.7139,-0.8605],[109.7185,-0.8515],[109.7148,-0.8425],[109.7128,-0.834],[109.7086,-0.8311],[109.6927,-0.8276],[109.6854,-0.8317],[109.6767,-0.832],[109.6678,-0.8252],[109.6629,-0.8199],[109.66,-0.811],[109.6534,-0.8095],[109.6423,-0.8038],[109.6291,-0.8021],[109.6185,-0.797],[109.6149,-0.7893],[109.6022,-0.7851],[109.5963,-0.7793],[109.5934,-0.7735],[109.5831,-0.7738],[109.5711,-0.7671],[109.5601,-0.7624],[109.5574,-0.7571],[109.5588,-0.7493],[109.556,-0.7454],[109.5518,-0.7439],[109.5462,-0.7475],[109.5412,-0.7457],[109.5347,-0.7384],[109.5094,-0.7394],[109.5033,-0.7423],[109.5044,-0.7453],[109.4903,-0.7493],[109.4784,-0.7505],[109.4724,-0.7538],[109.4665,-0.7544],[109.459,-0.751],[109.4439,-0.7421],[109.4354,-0.734],[109.4226,-0.7234],[109.4099,-0.716],[109.4038,-0.7105],[109.3929,-0.7065],[109.3871,-0.7084],[109.3731,-0.7106],[109.3688,-0.714],[109.3608,-0.7138],[109.3473,-0.712],[109.3245,-0.7055],[109.3134,-0.7039],[109.3065,-0.7015],[109.2884,-0.6913],[109.2793,-0.6817],[109.2762,-0.677],[109.2656,-0.665],[109.2538,-0.6614]],[[109.3764,-0.6543],[109.37,-0.6503],[109.36,-0.6569],[109.3493,-0.656],[109.352,-0.6625],[109.3621,-0.6743],[109.3683,-0.6763],[109.3791,-0.6727],[109.3861,-0.6728],[109.3997,-0.6747],[109.3992,-0.6699],[109.3874,-0.6585],[109.3764,-0.6543]],[[109.483,-0.6285],[109.4738,-0.6236],[109.4684,-0.6287],[109.4606,-0.6307],[109.4557,-0.6369],[109.4524,-0.6319],[109.4397,-0.6326],[109.4318,-0.6342],[109.4284,-0.6372],[109.4274,-0.6425],[109.4577,-0.6589],[109.4665,-0.6643],[109.4732,-0.6712],[109.4814,-0.6777],[109.4843,-0.6824],[109.4978,-0.6884],[109.4985,-0.6936],[109.5034,-0.6949],[109.5168,-0.6955],[109.5239,-0.6951],[109.5331,-0.6968],[109.5398,-0.701],[109.5467,-0.7031],[109.5553,-0.6989],[109.5747,-0.6873],[109.5829,-0.6862],[109.5809,-0.6794],[109.5847,-0.6604],[109.5837,-0.6532],[109.5769,-0.6551],[109.5729,-0.6531],[109.5687,-0.6571],[109.5639,-0.6526],[109.558,-0.6568],[109.5524,-0.6521],[109.5449,-0.6545],[109.541,-0.6461],[109.533,-0.6457],[109.5286,-0.6468],[109.5263,-0.6406],[109.5236,-0.6396],[109.5173,-0.6448],[109.5093,-0.6377],[109.5065,-0.6393],[109.5015,-0.6375],[109.4925,-0.626],[109.483,-0.6285]],[[109.364,-0.6174],[109.3576,-0.6191],[109.3522,-0.6299],[109.3512,-0.6356],[109.3588,-0.6473],[109.3611,-0.6531],[109.3685,-0.6487],[109.3732,-0.6485],[109.3796,-0.6535],[109.3873,-0.6558],[109.3975,-0.6642],[109.4048,-0.6723],[109.4082,-0.6723],[109.42,-0.6675],[109.4251,-0.6678],[109.4348,-0.6742],[109.4414,-0.6665],[109.4467,-0.6698],[109.4526,-0.67],[109.4625,-0.6779],[109.4679,-0.68],[109.4741,-0.6883],[109.4772,-0.6826],[109.4743,-0.6769],[109.4569,-0.6659],[109.4493,-0.6602],[109.4306,-0.6501],[109.423,-0.648],[109.4142,-0.6411],[109.4038,-0.6371],[109.3856,-0.6247],[109.3735,-0.6226],[109.364,-0.6174]],[[109.2992,-0.5942],[109.2946,-0.5942],[109.286,-0.5996],[109.2813,-0.6132],[109.2885,-0.6119],[109.2901,-0.6094],[109.3069,-0.6016],[109.3063,-0.5991],[109.2992,-0.5942]],[[109.3246,-0.5815],[109.3338,-0.5758],[109.3322,-0.5726],[109.3247,-0.5736],[109.3246,-0.5815]],[[109.1261,-0.202],[109.1128,-0.2028],[109.1016,-0.2058],[109.0936,-0.2093],[109.0894,-0.2076],[109.0776,-0.2177],[109.0721,-0.2204],[109.0649,-0.2206],[109.0579,-0.2169],[109.0534,-0.242],[109.0524,-0.2554],[109.0549,-0.2682],[109.0583,-0.278],[109.0691,-0.2961],[109.0806,-0.309],[109.0944,-0.3293],[109.1018,-0.3272],[109.0996,-0.3223],[109.1015,-0.3186],[109.0982,-0.305],[109.0884,-0.2956],[109.0834,-0.2876],[109.0836,-0.2696],[109.0883,-0.2684],[109.0948,-0.2645],[109.1106,-0.2607],[109.1176,-0.2568],[109.1231,-0.2515],[109.1325,-0.2363],[109.1442,-0.2337],[109.153,-0.2336],[109.1617,-0.2296],[109.1685,-0.2305]],[[109.1685,-0.2305],[109.1727,-0.231],[109.1728,-0.2308]],[[109.1728,-0.2308],[109.1768,-0.2248],[109.1869,-0.223],[109.1932,-0.2174],[109.1866,-0.2116],[109.178,-0.2071],[109.1722,-0.2064],[109.1616,-0.2107],[109.1576,-0.2103],[109.1424,-0.2042],[109.1261,-0.202]],[[109.0742,-0.1949],[109.0691,-0.1904],[109.0662,-0.1956],[109.0742,-0.1949]],[[109.0898,-0.1708],[109.0822,-0.1713],[109.0832,-0.1742],[109.0898,-0.1708]],[[109.1081,-0.1678],[109.103,-0.1684],[109.0921,-0.1805],[109.088,-0.181],[109.0859,-0.1866],[109.0879,-0.1904],[109.0927,-0.1932],[109.1039,-0.1961],[109.1175,-0.1978],[109.1324,-0.1968],[109.1336,-0.1958],[109.1475,-0.2017],[109.1589,-0.2079],[109.1634,-0.2075],[109.1732,-0.2014],[109.1663,-0.1923],[109.1619,-0.1889],[109.1519,-0.1846],[109.1424,-0.1822],[109.1331,-0.177],[109.119,-0.1727],[109.1081,-0.1678]],[[109.1296,-0.1459],[109.1274,-0.1472],[109.1274,-0.1548],[109.1254,-0.1641],[109.1266,-0.1671],[109.1422,-0.1796],[109.1608,-0.1852],[109.1609,-0.1807],[109.1577,-0.1763],[109.1493,-0.1698],[109.1406,-0.1582],[109.1358,-0.1498],[109.1296,-0.1459]],[[109.1256,-0.1506],[109.1251,-0.1452],[109.1222,-0.1393],[109.1141,-0.1294],[109.1162,-0.1243],[109.1146,-0.1193],[109.1101,-0.118],[109.1027,-0.1216],[109.0969,-0.128],[109.0942,-0.1354],[109.0939,-0.1404],[109.0893,-0.1515],[109.0974,-0.1512],[109.1047,-0.1592],[109.1073,-0.1588],[109.1138,-0.1658],[109.1191,-0.1682],[109.124,-0.1679],[109.124,-0.1614],[109.1256,-0.1506]],[[109.1215,-0.1164],[109.1256,-0.1084],[109.124,-0.1037],[109.1193,-0.1065],[109.1182,-0.1104],[109.1215,-0.1164]],[[109.1753,-0.0878],[109.1705,-0.088],[109.1703,-0.0934],[109.1755,-0.0957],[109.1753,-0.0878]],[[109.1727,-0.1051],[109.1659,-0.092],[109.1676,-0.0795],[109.1649,-0.0707],[109.1646,-0.0624],[109.1612,-0.0581],[109.1481,-0.0709],[109.136,-0.0845],[109.1251,-0.104],[109.1283,-0.1084],[109.1284,-0.1128],[109.1247,-0.1168],[109.1281,-0.1202],[109.1286,-0.1272],[109.1309,-0.1328],[109.1318,-0.1405],[109.1402,-0.15],[109.1433,-0.1591],[109.1497,-0.1679],[109.1604,-0.1765],[109.1636,-0.1862],[109.1751,-0.194],[109.1778,-0.1931],[109.1818,-0.1783],[109.181,-0.1666],[109.1819,-0.1588],[109.1852,-0.149],[109.1868,-0.1365],[109.1837,-0.1249],[109.175,-0.1123],[109.1727,-0.1051]],[[109.1944,0.0478],[109.1869,0.0463],[109.1802,0.0478],[109.1779,0.0447],[109.1788,0.0363],[109.1848,0.0344],[109.199,0.0281],[109.2111,0.0245],[109.2183,0.0198],[109.2301,0.0185],[109.239,0.0189],[109.2349,0.0252],[109.2206,0.0368],[109.2002,0.0474],[109.1944,0.0478]],[[109.3732,-0.0616],[109.3661,-0.0606],[109.357,-0.0767]],[[109.2871,0.0016],[109.2763,0.0048],[109.2641,0.0105],[109.255,0.0121],[109.2409,0.0163],[109.2218,0.0173],[109.2006,0.0262],[109.1963,0.0272],[109.1812,0.0333],[109.171,0.0338],[109.1687,0.0258],[109.1678,0.0086],[109.1646,-0.0104],[109.1618,-0.0201],[109.1591,-0.0365],[109.1596,-0.0447],[109.1664,-0.0506],[109.1775,-0.064],[109.1757,-0.0719],[109.18,-0.0826],[109.1849,-0.0857],[109.1877,-0.091],[109.1822,-0.0976],[109.1822,-0.1072],[109.1839,-0.1178],[109.1889,-0.1277],[109.1896,-0.1406],[109.1839,-0.1604],[109.1837,-0.1822],[109.1814,-0.1909],[109.1833,-0.2],[109.1887,-0.2064],[109.194,-0.2105],[109.2136,-0.2229],[109.2165,-0.2261],[109.2226,-0.2378],[109.2293,-0.2449],[109.2561,-0.2635],[109.2612,-0.264],[109.2693,-0.267],[109.2755,-0.2736],[109.281,-0.2772],[109.2893,-0.2787],[109.289,-0.2826],[109.2833,-0.2816],[109.2756,-0.2777],[109.2649,-0.2685],[109.2513,-0.2648],[109.2245,-0.2482],[109.2181,-0.241],[109.2129,-0.2302],[109.2073,-0.2245],[109.1985,-0.2206],[109.1841,-0.2248],[109.1761,-0.2261],[109.1738,-0.2309],[109.1728,-0.2308]],[[109.1728,-0.2308],[109.1685,-0.2305]],[[109.1685,-0.2305],[109.1653,-0.2302],[109.1593,-0.2312],[109.155,-0.2338],[109.1465,-0.2345],[109.1372,-0.2364],[109.1312,-0.24],[109.1238,-0.2532],[109.118,-0.2595],[109.1107,-0.2651],[109.1042,-0.2673],[109.097,-0.2718],[109.0897,-0.2746],[109.0872,-0.2839],[109.0906,-0.2906],[109.1001,-0.2985],[109.1051,-0.3063],[109.1073,-0.3193],[109.1114,-0.3237],[109.1139,-0.3305],[109.1151,-0.3436],[109.1281,-0.3497],[109.1493,-0.3578],[109.1593,-0.3686],[109.142,-0.3628],[109.125,-0.3616],[109.1188,-0.3591],[109.1098,-0.3528],[109.1043,-0.3447],[109.1,-0.3478],[109.0978,-0.3564],[109.098,-0.3611],[109.1042,-0.385],[109.1047,-0.39],[109.1077,-0.3975],[109.1131,-0.4219],[109.1159,-0.4424],[109.1142,-0.4454],[109.1125,-0.4609],[109.1123,-0.4867],[109.1134,-0.4995],[109.1164,-0.5141],[109.123,-0.5311],[109.1271,-0.5393],[109.1425,-0.5627],[109.1519,-0.5678],[109.1589,-0.5733],[109.1695,-0.5738],[109.1896,-0.5681],[109.1935,-0.5643],[109.1916,-0.5594],[109.1867,-0.5542],[109.1903,-0.5519],[109.2033,-0.5533],[109.2159,-0.5613],[109.2247,-0.571],[109.2275,-0.5724],[109.2246,-0.5834],[109.2272,-0.5893],[109.2381,-0.5953],[109.2444,-0.5971],[109.2514,-0.605],[109.2564,-0.6036],[109.2589,-0.5992],[109.2631,-0.601],[109.2685,-0.5991],[109.2853,-0.5974],[109.2943,-0.5919],[109.3023,-0.5921],[109.3095,-0.5943],[109.3151,-0.5942],[109.3239,-0.588],[109.3224,-0.5848],[109.3249,-0.5725],[109.3339,-0.5719],[109.3347,-0.5748],[109.3312,-0.579],[109.3246,-0.5838],[109.3296,-0.5885],[109.3391,-0.5897],[109.3445,-0.5887],[109.3512,-0.5846],[109.3638,-0.5836],[109.3742,-0.5846],[109.3813,-0.5903],[109.3816,-0.5951],[109.3889,-0.609],[109.3955,-0.614],[109.4023,-0.6232],[109.4132,-0.6305],[109.4184,-0.6313],[109.4306,-0.6284],[109.4455,-0.6262],[109.4532,-0.6225],[109.4622,-0.6252],[109.4729,-0.6172],[109.4812,-0.6254],[109.4848,-0.6259],[109.4914,-0.6237],[109.495,-0.6244],[109.5034,-0.6362],[109.5119,-0.6358],[109.5174,-0.6424],[109.5243,-0.6373],[109.5278,-0.638],[109.5291,-0.6438],[109.5429,-0.6446],[109.5459,-0.6516],[109.5539,-0.6503],[109.5584,-0.6537],[109.5623,-0.6503],[109.5705,-0.6512],[109.5747,-0.6499],[109.5775,-0.6526],[109.5837,-0.6505],[109.5862,-0.6527],[109.5875,-0.6629],[109.5839,-0.6788],[109.5878,-0.6845],[109.5886,-0.6902],[109.596,-0.6936],[109.6009,-0.6915],[109.6073,-0.6851],[109.6142,-0.683],[109.6176,-0.6848],[109.6194,-0.6896],[109.6232,-0.6884],[109.6323,-0.6889],[109.64,-0.6841],[109.6464,-0.6836],[109.6544,-0.6717],[109.656,-0.6719]],[[109.656,-0.6719],[109.6561,-0.6719]],[[109.6561,-0.6719],[109.658,-0.6721],[109.6599,-0.6788],[109.6676,-0.6831],[109.6698,-0.69],[109.6755,-0.6962],[109.6684,-0.7008],[109.6805,-0.7018],[109.688,-0.7059],[109.6888,-0.7121],[109.6968,-0.7161],[109.6947,-0.724],[109.6921,-0.725]],[[109.6921,-0.725],[109.6878,-0.7267]],[[109.6878,-0.7267],[109.685,-0.7278],[109.6773,-0.7371],[109.6734,-0.7388],[109.6764,-0.7436],[109.6713,-0.7461],[109.6716,-0.7518],[109.6696,-0.7546],[109.6603,-0.7501],[109.6471,-0.7504],[109.6387,-0.7519],[109.6335,-0.7507],[109.6315,-0.7557],[109.6336,-0.7618],[109.6347,-0.7753],[109.6341,-0.7808],[109.6374,-0.7847],[109.6379,-0.7888],[109.6356,-0.796],[109.6435,-0.7985],[109.6513,-0.8033],[109.6618,-0.8058],[109.665,-0.8092],[109.6673,-0.8188],[109.6756,-0.8266],[109.6805,-0.8297],[109.6918,-0.8233],[109.7136,-0.828],[109.7211,-0.8486],[109.7202,-0.8563],[109.7163,-0.8624],[109.7167,-0.8667],[109.7228,-0.8708],[109.7266,-0.8705],[109.7311,-0.863],[109.7372,-0.8594],[109.7425,-0.8598],[109.7474,-0.8629],[109.7507,-0.8684],[109.7506,-0.875],[109.7463,-0.8789],[109.7404,-0.8804],[109.7404,-0.8854],[109.7503,-0.894],[109.7543,-0.8952]],[[109.3766,-0.0215],[109.382,-0.0226],[109.3836,-0.0265]]]}},{"type":"Feature","properties":{"mhid":"1332:336","alt_name":"KOTA PONTIANAK","latitude":-0.08333,"longitude":109.36667,"sample_value":494},"geometry":{"type":"MultiLineString","coordinates":[[[109.3836,-0.0265],[109.3681,-0.0212],[109.363,-0.0209],[109.3455,-0.0237],[109.352,-0.0361],[109.365,-0.0502],[109.3732,-0.0616]],[[109.357,-0.0767],[109.366,-0.0602],[109.368,-0.0586],[109.3634,-0.0514],[109.3523,-0.0399],[109.3483,-0.0339],[109.3442,-0.0249],[109.3185,-0.0052],[109.3112,-0.0017],[109.3045,-0.0008],[109.2979,-0.002],[109.2871,0.0016]],[[109.29,0.0085],[109.2963,0.0077],[109.301,0.0049],[109.3054,0.0048],[109.3199,0.0002],[109.3272,-0.0047],[109.3427,-0.0201],[109.3481,-0.0214],[109.3649,-0.0183],[109.3719,-0.0192],[109.3766,-0.0215]]]}},{"type":"Feature","properties":{"mhid":"1332:337","alt_name":"KOTA SINGKAWANG","latitude":0.90734,"longitude":109.00103,"sample_value":951},"geometry":{"type":"MultiLineString","coordinates":[[[108.9788,0.9892],[108.9774,0.9698],[108.973,0.95],[108.9686,0.9365],[108.9618,0.9237],[108.9585,0.915],[108.9526,0.9044],[108.9411,0.8885],[108.934,0.8805],[108.9243,0.8722],[108.9113,0.8627],[108.9068,0.8654],[108.8993,0.8664],[108.8938,0.8709],[108.8907,0.8658],[108.8915,0.8581],[108.874,0.841]]]}},{"type":"Feature","properties":{"mhid":"1332:338","alt_name":"KABUPATEN KOTAWARINGIN BARAT","latitude":-2.4,"longitude":111.73333,"sample_value":463},"geometry":{"type":"MultiLineString","coordinates":[[[111.3619,-2.9086],[111.3716,-2.9122],[111.3859,-2.92],[111.3895,-2.92],[111.4032,-2.9113],[111.4101,-2.9176],[111.4238,-2.9166],[111.4354,-2.9205],[111.4502,-2.9233],[111.4554,-2.9253],[111.4659,-2.9331],[111.4879,-2.9441],[111.4962,-2.9519],[111.503,-2.9626],[111.5128,-2.9702],[111.5254,-2.9781],[111.5355,-2.9915],[111.5415,-3.0011],[111.5442,-3.0075],[111.5489,-3.0231],[111.5523,-3.0149],[111.559,-3.0078],[111.5732,-2.9999],[111.5886,-2.9906],[111.5975,-2.9893],[111.6019,-2.9844],[111.6134,-2.9758],[111.6191,-2.9692],[111.6417,-2.9553],[111.6464,-2.954],[111.6641,-2.9462],[111.6695,-2.9451],[111.6855,-2.9442],[111.6912,-2.9418],[111.6978,-2.9257],[111.6978,-2.9197],[111.6869,-2.9197],[111.6803,-2.9153],[111.6776,-2.9099],[111.6728,-2.9046],[111.6697,-2.8986],[111.6696,-2.8942],[111.674,-2.8853],[111.6822,-2.8739],[111.6914,-2.8657],[111.7131,-2.8494],[111.7177,-2.8498],[111.7239,-2.8562],[111.7313,-2.856],[111.7264,-2.864],[111.7267,-2.8677],[111.7352,-2.8738],[111.7434,-2.8811],[111.7502,-2.8885],[111.7542,-2.8947],[111.76,-2.9096],[111.7634,-2.9219],[111.7687,-2.934],[111.7786,-2.9484],[111.7987,-2.9731],[111.8059,-2.9837],[111.8123,-2.9965],[111.8162,-3.0102],[111.8154,-3.0161],[111.8223,-3.0312],[111.8218,-3.0332],[111.8243,-3.05],[111.8221,-3.0675],[111.8197,-3.071],[111.8203,-3.0843],[111.8187,-3.0977],[111.8099,-3.1195],[111.8074,-3.1365],[111.8073,-3.1532],[111.8027,-3.1618],[111.8013,-3.1765],[111.798,-3.1905],[111.7974,-3.2008],[111.814,-3.2757],[111.8196,-3.3425],[111.8197,-3.3662],[111.819,-3.3853],[111.8104,-3.4324],[111.8052,-3.4504],[111.7968,-3.4703],[111.7773,-3.5015],[111.7728,-3.5076],[111.7736,-3.512],[111.7816,-3.5187],[111.7932,-3.5258],[111.8049,-3.5306],[111.8187,-3.534]]]}},{"type":"Feature","properties":{"mhid":"1332:339","alt_name":"KABUPATEN KOTAWARINGIN TIMUR","latitude":-2.08333,"longitude":112.75,"sample_value":503},"geometry":{"type":"MultiLineString","coordinates":[[[112.8737,-3.2649],[112.8785,-3.2618],[112.9106,-3.2455],[112.9219,-3.2387],[112.9417,-3.2231],[112.9511,-3.2144],[112.9657,-3.202],[112.9752,-3.1922],[112.9889,-3.1796],[112.9984,-3.1699],[113.0434,-3.1281],[113.0403,-3.1252],[113.0346,-3.1312],[113.0357,-3.1335],[113.0185,-3.1492],[113.0067,-3.1549],[112.9989,-3.1565],[112.9841,-3.1547],[112.9676,-3.1471],[112.9524,-3.1368],[112.9446,-3.1272],[112.9416,-3.1148],[112.9451,-3.1033],[112.9607,-3.0808],[112.9707,-3.0688],[112.9817,-3.0522],[112.9841,-3.0473],[112.9925,-3.0469],[113.0031,-3.041],[113.0118,-3.0313],[113.0177,-3.0219],[113.0195,-3.0172],[113.0257,-2.9937],[113.0316,-2.9771],[113.0324,-2.9725],[113.0451,-2.9707],[113.05,-2.9825],[113.0529,-2.9841],[113.0555,-2.9897],[113.0569,-3.0056],[113.0625,-3.0121],[113.0771,-3.0197],[113.084,-3.024],[113.088,-3.034],[113.0952,-3.0396],[113.1133,-3.0479],[113.1366,-3.0591],[113.1445,-3.0594],[113.157,-3.0639]]]}},{"type":"Feature","properties":{"mhid":"1332:340","alt_name":"KABUPATEN KAPUAS","latitude":-2.01667,"longitude":114.38333,"sample_value":678},"geometry":{"type":"MultiLineString","coordinates":[[[114.1329,-3.3803],[114.149,-3.3825],[114.1651,-3.387],[114.1725,-3.3912],[114.1779,-3.3928],[114.1836,-3.3923],[114.1935,-3.3884],[114.2088,-3.3804],[114.2227,-3.3748],[114.2325,-3.3728],[114.243,-3.3682],[114.2454,-3.3649],[114.263,-3.3737],[114.2594,-3.3827],[114.2505,-3.3874],[114.249,-3.3915],[114.2505,-3.3961],[114.2583,-3.4037],[114.2694,-3.411],[114.2754,-3.416],[114.285,-3.4198],[114.2837,-3.4232],[114.29,-3.4325],[114.3011,-3.4421],[114.3201,-3.4555],[114.3283,-3.4576],[114.3389,-3.4563],[114.3489,-3.4618],[114.3506,-3.4513],[114.3536,-3.4426],[114.3492,-3.4408],[114.3463,-3.4317],[114.3476,-3.426],[114.3473,-3.4176]],[[114.3576,-3.4027],[114.3589,-3.3865]],[[114.3589,-3.3863],[114.3556,-3.3775],[114.3505,-3.3688],[114.3459,-3.3527],[114.3542,-3.3421]],[[114.3685,-3.326],[114.3716,-3.3204],[114.3719,-3.3075]]]}},{"type":"Feature","properties":{"mhid":"1332:341","alt_name":"KABUPATEN BARITO SELATAN","latitude":-1.86667,"longitude":114.73333,"sample_value":144},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:343","alt_name":"KABUPATEN SUKAMARA","latitude":-2.62675,"longitude":111.23681,"sample_value":753},"geometry":{"type":"MultiLineString","coordinates":[[[110.7338,-2.9859],[110.7346,-2.9885],[110.7406,-2.9887],[110.7487,-2.9856],[110.7634,-2.9833],[110.7673,-2.98],[110.7782,-2.9769],[110.7869,-2.976],[110.8007,-2.9767],[110.8126,-2.9798],[110.8307,-2.9862],[110.842,-2.9918],[110.8651,-3.0075],[110.8801,-3.0192],[110.8974,-3.031],[110.9161,-3.0451],[110.9218,-3.0445],[110.9241,-3.0485],[110.9384,-3.0516],[110.951,-3.0617],[110.9591,-3.0654],[110.9743,-3.0667],[110.9813,-3.0664],[110.9998,-3.0619],[111.0113,-3.0603],[111.0388,-3.0546],[111.0578,-3.0485],[111.0854,-3.0373],[111.1182,-3.0252],[111.1394,-3.0157],[111.1515,-3.0084],[111.1759,-2.9975],[111.1916,-2.99],[111.2098,-2.9788],[111.2332,-2.9632],[111.2583,-2.948],[111.2807,-2.9352],[111.2869,-2.9355],[111.3002,-2.928],[111.3175,-2.9204],[111.3242,-2.9162],[111.3391,-2.9093],[111.349,-2.907],[111.3619,-2.9086]]]}},{"type":"Feature","properties":{"mhid":"1332:345","alt_name":"KABUPATEN SERUYAN","latitude":-2.33333,"longitude":112.25,"sample_value":649},"geometry":{"type":"MultiLineString","coordinates":[[[111.8187,-3.534],[111.8501,-3.5408],[111.8635,-3.5421],[111.883,-3.5423],[111.8907,-3.5436],[111.8974,-3.5421],[111.9092,-3.5363],[111.9193,-3.5291],[111.9291,-3.5202],[111.9355,-3.5131],[111.9591,-3.4918],[111.9624,-3.4899],[111.9893,-3.4683],[112.0296,-3.4385],[112.0753,-3.409],[112.0892,-3.3994],[112.1117,-3.386],[112.1569,-3.3584],[112.1752,-3.3463],[112.1865,-3.34],[112.2099,-3.3285],[112.2245,-3.323],[112.2487,-3.3155],[112.2593,-3.3128],[112.2894,-3.3106],[112.3055,-3.3106],[112.3235,-3.3145],[112.3374,-3.3159],[112.3537,-3.3228],[112.3579,-3.3256],[112.3756,-3.3336],[112.3867,-3.3375],[112.4105,-3.3471],[112.4283,-3.3577],[112.4314,-3.3618],[112.4333,-3.368],[112.4396,-3.3801],[112.4469,-3.3884],[112.456,-3.396],[112.4708,-3.4051],[112.4807,-3.4118],[112.4996,-3.4217],[112.5164,-3.4317],[112.5351,-3.4419],[112.5417,-3.4444],[112.5616,-3.447],[112.5669,-3.4311],[112.5755,-3.432],[112.5822,-3.4275],[112.5922,-3.4242],[112.6018,-3.4187],[112.6143,-3.414],[112.6237,-3.4092],[112.6363,-3.4076],[112.6507,-3.3937],[112.6568,-3.3834],[112.6701,-3.3715],[112.6801,-3.3651],[112.6917,-3.3605],[112.702,-3.3552],[112.7099,-3.3524],[112.7189,-3.3521],[112.7246,-3.345],[112.7422,-3.3367],[112.7552,-3.3286],[112.7937,-3.3073],[112.8147,-3.2998],[112.8221,-3.2947],[112.8437,-3.2822],[112.8651,-3.2708],[112.8737,-3.2649]]]}},{"type":"Feature","properties":{"mhid":"1332:346","alt_name":"KABUPATEN KATINGAN","latitude":-2.06667,"longitude":113.4,"sample_value":985},"geometry":{"type":"MultiLineString","coordinates":[[[113.4046,-3.2659],[113.4022,-3.264],[113.3977,-3.2503],[113.3956,-3.25],[113.3824,-3.2584],[113.3734,-3.2625],[113.3696,-3.2715],[113.3649,-3.2764],[113.3664,-3.2858],[113.3649,-3.2978],[113.369,-3.3031],[113.376,-3.3009],[113.3813,-3.2974],[113.4068,-3.2688],[113.4046,-3.2659]],[[113.3296,-3.2255],[113.327,-3.2219],[113.3234,-3.2239],[113.323,-3.2326],[113.3284,-3.2393],[113.3342,-3.2335],[113.3296,-3.2255]],[[113.157,-3.0639],[113.1633,-3.067],[113.186,-3.0852],[113.1924,-3.0956],[113.1951,-3.1048],[113.1908,-3.108],[113.1984,-3.1182],[113.2067,-3.1275],[113.2186,-3.1389],[113.2293,-3.1482],[113.2422,-3.1585],[113.2539,-3.1716],[113.2662,-3.184],[113.2726,-3.1917],[113.2898,-3.2097],[113.294,-3.2169],[113.3137,-3.2447],[113.3285,-3.2638],[113.3428,-3.2797],[113.3456,-3.2779],[113.3272,-3.2518],[113.3242,-3.2411],[113.3188,-3.2315],[113.3181,-3.2257],[113.3201,-3.2128],[113.3274,-3.2128],[113.3299,-3.2222],[113.3356,-3.2335],[113.3292,-3.242],[113.3299,-3.2451],[113.3357,-3.2532],[113.35,-3.2672],[113.3551,-3.2668],[113.3644,-3.2712],[113.3683,-3.2688],[113.3724,-3.2604],[113.3809,-3.2562],[113.3938,-3.2464],[113.4003,-3.2442],[113.4102,-3.243],[113.414,-3.2404],[113.4243,-3.2378],[113.4332,-3.2311],[113.4362,-3.2228],[113.4354,-3.2187],[113.4381,-3.2066],[113.4497,-3.1906],[113.4519,-3.1906],[113.4589,-3.1847],[113.4852,-3.1746],[113.5161,-3.1665],[113.5347,-3.1638],[113.5375,-3.1624],[113.5534,-3.1607],[113.567,-3.1614],[113.5939,-3.1661]]]}},{"type":"Feature","properties":{"mhid":"1332:347","alt_name":"KABUPATEN PULANG PISAU","latitude":-3.11858,"longitude":113.8623,"sample_value":349},"geometry":{"type":"MultiLineString","coordinates":[[[113.5939,-3.1661],[113.6014,-3.1654],[113.6032,-3.1785],[113.6052,-3.1852],[113.6093,-3.1929],[113.6154,-3.2076],[113.622,-3.2272],[113.6282,-3.2515],[113.6306,-3.2703],[113.6325,-3.2982],[113.6317,-3.3226],[113.6273,-3.3427],[113.6266,-3.3518],[113.6212,-3.3648],[113.6176,-3.3768],[113.6129,-3.3873],[113.6113,-3.3964],[113.607,-3.4013],[113.5972,-3.4212],[113.5873,-3.4349],[113.5821,-3.4404],[113.5819,-3.4438],[113.5858,-3.4464],[113.598,-3.4507],[113.6199,-3.4603],[113.627,-3.4642],[113.6336,-3.4655],[113.6543,-3.4664],[113.6776,-3.468],[113.6854,-3.4693],[113.7161,-3.4681],[113.7494,-3.4655],[113.756,-3.463],[113.7672,-3.4631],[113.7902,-3.4599],[113.811,-3.4528],[113.8135,-3.4508],[113.8209,-3.4498],[113.8339,-3.4443],[113.8424,-3.4382],[113.8525,-3.4341],[113.8637,-3.4311],[113.8655,-3.426],[113.8726,-3.4217],[113.8737,-3.4194],[113.8892,-3.41],[113.9017,-3.401],[113.911,-3.3964],[113.9259,-3.3864],[113.9342,-3.3818],[113.9497,-3.3713],[113.9731,-3.3613],[113.9972,-3.3549],[114.0194,-3.3529],[114.0211,-3.3514],[114.0339,-3.3515],[114.0447,-3.3467],[114.0455,-3.3343],[114.0472,-3.3212],[114.0529,-3.3108],[114.0714,-3.3113],[114.0746,-3.312],[114.0773,-3.3166],[114.0683,-3.3226],[114.069,-3.3293],[114.0713,-3.3357],[114.0778,-3.3459],[114.0914,-3.3566],[114.1007,-3.3622],[114.1156,-3.3728],[114.1329,-3.3803]]]}},{"type":"Feature","properties":{"mhid":"1332:353","alt_name":"KABUPATEN KOTA BARU","latitude":-3,"longitude":116,"sample_value":978},"geometry":{"type":"MultiLineString","coordinates":[[[115.6673,-4.7445],[115.674,-4.741],[115.6832,-4.7274],[115.6795,-4.7235],[115.6748,-4.7292],[115.6672,-4.7304],[115.6648,-4.7441],[115.6673,-4.7445]],[[115.7717,-4.6654],[115.7662,-4.6655],[115.7615,-4.6619],[115.7573,-4.6671],[115.7489,-4.6736],[115.7347,-4.6823],[115.7255,-4.687],[115.7204,-4.6925],[115.7182,-4.7024],[115.7199,-4.7044],[115.7273,-4.7028],[115.7353,-4.7034],[115.7377,-4.7021],[115.7654,-4.6787],[115.7679,-4.675],[115.7681,-4.6697],[115.7717,-4.6654]],[[115.7882,-4.653],[115.7851,-4.6482],[115.7813,-4.6551],[115.7857,-4.6599],[115.7907,-4.658],[115.7882,-4.653]],[[115.6964,-4.6409],[115.6997,-4.6381],[115.703,-4.6318],[115.7092,-4.6244],[115.708,-4.6184],[115.7041,-4.6192],[115.6963,-4.6259],[115.6864,-4.6321],[115.687,-4.6352],[115.6964,-4.6409]],[[115.7881,-4.3253],[115.7834,-4.322],[115.7794,-4.323],[115.7751,-4.3279],[115.7763,-4.3331],[115.7802,-4.3339],[115.7833,-4.3398],[115.7879,-4.3395],[115.7897,-4.3315],[115.7927,-4.3271],[115.7881,-4.3253]],[[116.2097,-4.0861],[116.2045,-4.0866],[116.2012,-4.0892],[116.2065,-4.0973],[116.2145,-4.0975],[116.2124,-4.0881],[116.2097,-4.0861]],[[116.0476,-4.0769],[116.0415,-4.0778],[116.0428,-4.0843],[116.0409,-4.0897],[116.0467,-4.0932],[116.0496,-4.0899],[116.0476,-4.0769]],[[116.1808,-4.0454],[116.1717,-4.0469],[116.1635,-4.0541],[116.1678,-4.0582],[116.1803,-4.0513],[116.1808,-4.0454]],[[116.2011,-4.0274],[116.2006,-4.0334],[116.2073,-4.0374],[116.2149,-4.0292],[116.2098,-4.0275],[116.2011,-4.0274]],[[116.3216,-3.8169],[116.3145,-3.8201],[116.3103,-3.8305],[116.3087,-3.8297],[116.3009,-3.8369],[116.2974,-3.8432],[116.298,-3.8467],[116.3065,-3.8503],[116.309,-3.8463],[116.3145,-3.8448],[116.3187,-3.8273],[116.3226,-3.825],[116.3216,-3.8169]],[[116.3356,-3.5938],[116.3343,-3.5951],[116.3354,-3.6062],[116.3349,-3.6146],[116.3372,-3.6181],[116.3425,-3.6175],[116.3449,-3.6121],[116.3504,-3.605],[116.3486,-3.5998],[116.3448,-3.5972],[116.3356,-3.5938]],[[116.4229,-3.3652],[116.418,-3.3626],[116.4095,-3.3605],[116.4068,-3.3667],[116.4092,-3.3703],[116.4058,-3.3739],[116.4056,-3.3794],[116.4019,-3.3839],[116.3987,-3.3911],[116.3982,-3.3976],[116.3937,-3.4042],[116.3924,-3.4095],[116.3854,-3.417],[116.3749,-3.4224],[116.3684,-3.4268],[116.3529,-3.4409],[116.3453,-3.4523],[116.3444,-3.4659],[116.338,-3.4789],[116.3359,-3.4866],[116.3361,-3.4914],[116.3327,-3.5055],[116.323,-3.5258],[116.3209,-3.5316],[116.3195,-3.5418],[116.314,-3.551],[116.3133,-3.5582],[116.3174,-3.5586],[116.3226,-3.5563],[116.3325,-3.5584],[116.3398,-3.5632],[116.3425,-3.5671],[116.3484,-3.5834],[116.3495,-3.5898],[116.3478,-3.5941],[116.3539,-3.6003],[116.3544,-3.6052],[116.35,-3.611],[116.3535,-3.6192],[116.3534,-3.6237],[116.359,-3.6369],[116.3602,-3.6461],[116.3623,-3.6508],[116.3703,-3.6515],[116.3732,-3.6499],[116.3788,-3.6522],[116.3845,-3.6474],[116.3833,-3.6423],[116.3864,-3.6275],[116.3909,-3.6259],[116.3991,-3.6265],[116.3992,-3.6127],[116.4023,-3.6071],[116.4025,-3.5902],[116.4047,-3.58],[116.4084,-3.5706],[116.4095,-3.5596],[116.4057,-3.5539],[116.4068,-3.5483],[116.407,-3.5371],[116.4094,-3.5229],[116.4147,-3.5142],[116.4182,-3.5047],[116.4179,-3.4986],[116.42,-3.4939],[116.4192,-3.4889],[116.4209,-3.4811],[116.4204,-3.4669],[116.4228,-3.4515],[116.4256,-3.4461],[116.4297,-3.4344],[116.435,-3.4223],[116.432,-3.4126],[116.4327,-3.4],[116.4358,-3.3905],[116.4358,-3.3859],[116.433,-3.3773],[116.4317,-3.3675],[116.4288,-3.3641],[116.4229,-3.3652]],[[116.268,-3.2207],[116.2635,-3.2143],[116.2562,-3.2093],[116.243,-3.2185],[116.2336,-3.2264],[116.2267,-3.236],[116.2219,-3.2376],[116.2211,-3.2406],[116.2139,-3.2447],[116.2033,-3.2537],[116.1963,-3.2575],[116.1843,-3.2688],[116.1662,-3.2807],[116.157,-3.2873],[116.1432,-3.2941],[116.1401,-3.3035],[116.1344,-3.3004],[116.1257,-3.2978],[116.1189,-3.3014],[116.1148,-3.3071],[116.1137,-3.3147],[116.1108,-3.3208],[116.1056,-3.3397],[116.1,-3.3447],[116.0984,-3.3498],[116.1033,-3.3553],[116.0976,-3.371],[116.0939,-3.3777],[116.092,-3.3855],[116.0831,-3.4028],[116.0796,-3.4072],[116.0777,-3.4158],[116.0709,-3.4296],[116.0706,-3.4365],[116.063,-3.4492],[116.0608,-3.4543],[116.0462,-3.4689],[116.0394,-3.4813],[116.0415,-3.4876],[116.0411,-3.5049],[116.0425,-3.5085],[116.0404,-3.5201],[116.0445,-3.5262],[116.0474,-3.533],[116.0454,-3.5479],[116.0426,-3.5539],[116.039,-3.5553],[116.041,-3.5645],[116.0389,-3.5705],[116.0368,-3.5823],[116.0276,-3.597],[116.0189,-3.6022],[116.0124,-3.6119],[116.0101,-3.613],[116.0092,-3.6202],[116.0106,-3.6284],[116.0047,-3.6326],[116.0025,-3.6385],[116.0119,-3.6435],[116.0085,-3.6458],[116.0122,-3.6545],[116.0083,-3.6618],[116.0091,-3.6708],[116.007,-3.681],[116.014,-3.6909],[116.0129,-3.695],[116.0159,-3.6985],[116.0165,-3.7067],[116.0217,-3.7083],[116.0244,-3.7204],[116.0258,-3.7222],[116.0243,-3.7298],[116.03,-3.736],[116.0309,-3.7391],[116.0415,-3.7498],[116.0511,-3.7608],[116.0619,-3.7769],[116.0705,-3.7942],[116.0782,-3.8117],[116.0806,-3.8195],[116.082,-3.8341],[116.0758,-3.8473],[116.0697,-3.8491],[116.0653,-3.8473],[116.0646,-3.8618],[116.0608,-3.8729],[116.0675,-3.876],[116.0651,-3.8846],[116.0648,-3.8963],[116.0574,-3.9043],[116.06,-3.9071],[116.0675,-3.9049],[116.0745,-3.91],[116.0779,-3.9178],[116.0794,-3.9245],[116.0773,-3.9332],[116.0719,-3.9386],[116.0683,-3.9382],[116.0652,-3.9557],[116.0649,-3.9668],[116.0611,-3.9712],[116.0589,-3.9792],[116.0509,-3.9903],[116.0553,-3.9957],[116.0542,-4.0011],[116.0568,-4.0046],[116.0497,-4.0184],[116.0444,-4.0147],[116.0411,-4.0168],[116.0394,-4.0229],[116.0472,-4.031],[116.0502,-4.0365],[116.0497,-4.0408],[116.0517,-4.0539],[116.0488,-4.0606],[116.0505,-4.0623],[116.0553,-4.0529],[116.0559,-4.0436],[116.063,-4.0387],[116.0685,-4.0373],[116.0717,-4.0404],[116.0726,-4.0486],[116.0809,-4.0493],[116.0846,-4.053],[116.0876,-4.0515],[116.0949,-4.057],[116.095,-4.0606],[116.0907,-4.0651],[116.0945,-4.0756],[116.091,-4.0759],[116.0881,-4.0808],[116.0952,-4.0823],[116.0992,-4.0748],[116.098,-4.0708],[116.1016,-4.0624],[116.0995,-4.0599],[116.1005,-4.0538],[116.1081,-4.0441],[116.1077,-4.0371],[116.1107,-4.035],[116.1149,-4.0372],[116.1162,-4.0325],[116.1215,-4.0274],[116.1278,-4.0342],[116.1417,-4.0363],[116.1502,-4.0312],[116.1526,-4.0255],[116.1568,-4.0233],[116.162,-4.0135],[116.1664,-4.0104],[116.1708,-4.0001],[116.1799,-3.9962],[116.1833,-3.9923],[116.1891,-3.9924],[116.1926,-3.9868],[116.2044,-3.983],[116.2102,-3.9847],[116.2103,-3.9809],[116.2053,-3.9756],[116.203,-3.9701],[116.2055,-3.9665],[116.2033,-3.9602],[116.2079,-3.9531],[116.2212,-3.9448],[116.2324,-3.9417],[116.2438,-3.9427],[116.2567,-3.9312],[116.2562,-3.929],[116.2623,-3.9209],[116.2637,-3.9161],[116.2738,-3.9074],[116.2815,-3.907],[116.2859,-3.9093],[116.2908,-3.9194],[116.2951,-3.9183],[116.3107,-3.917],[116.3116,-3.9092],[116.311,-3.901],[116.3067,-3.8973],[116.3045,-3.8889],[116.3072,-3.8756],[116.3108,-3.8678],[116.3059,-3.869],[116.2952,-3.8631],[116.2945,-3.8586],[116.2988,-3.8484],[116.2919,-3.8435],[116.2864,-3.8424],[116.2839,-3.8371],[116.2755,-3.8271],[116.2725,-3.8211],[116.2723,-3.8166],[116.2762,-3.8121],[116.274,-3.8075],[116.2775,-3.7975],[116.2876,-3.7956],[116.294,-3.7842],[116.2977,-3.7859],[116.3035,-3.7811],[116.3069,-3.7813],[116.3126,-3.7772],[116.3168,-3.7722],[116.3169,-3.7668],[116.3199,-3.7614],[116.3238,-3.7498],[116.3285,-3.7409],[116.3338,-3.7383],[116.3368,-3.7256],[116.3311,-3.7246],[116.3262,-3.7275],[116.3149,-3.7285],[116.3113,-3.7237],[116.305,-3.7208],[116.3003,-3.7121],[116.3017,-3.7023],[116.3028,-3.6865],[116.3054,-3.6825],[116.299,-3.6811],[116.2969,-3.6769],[116.2958,-3.6696],[116.2978,-3.6603],[116.297,-3.6525],[116.3006,-3.6424],[116.2974,-3.6362],[116.2979,-3.6288],[116.293,-3.6245],[116.2902,-3.6247],[116.2887,-3.6129],[116.2929,-3.6004],[116.3062,-3.5909],[116.298,-3.5763],[116.2916,-3.5676],[116.286,-3.5629],[116.2781,-3.561],[116.2717,-3.5511],[116.271,-3.5389],[116.2742,-3.5284],[116.2702,-3.526],[116.2771,-3.522],[116.2891,-3.5123],[116.2906,-3.5068],[116.2999,-3.504],[116.3118,-3.5051],[116.314,-3.5026],[116.3137,-3.4865],[116.3144,-3.4761],[116.3119,-3.4621],[116.3084,-3.451],[116.3025,-3.4418],[116.2941,-3.4307],[116.2834,-3.4192],[116.2752,-3.413],[116.269,-3.4063],[116.2641,-3.4028],[116.2532,-3.3888],[116.25,-3.3739],[116.2511,-3.3604],[116.2556,-3.3527],[116.2556,-3.3464],[116.2621,-3.3355],[116.265,-3.3249],[116.2641,-3.3191],[116.2647,-3.31],[116.2682,-3.3044],[116.2691,-3.2967],[116.2673,-3.2894],[116.2736,-3.2824],[116.2737,-3.2773],[116.2718,-3.2686],[116.2752,-3.2646],[116.2699,-3.2505],[116.2726,-3.2388],[116.2804,-3.2208],[116.2796,-3.2139],[116.2733,-3.2204],[116.268,-3.2207]],[[116.0785,-3.1461],[116.0721,-3.1461],[116.0709,-3.1477]],[[116.0709,-3.1477],[116.0689,-3.1504],[116.0691,-3.1525]],[[116.0691,-3.1525],[116.0692,-3.154],[116.0775,-3.1622],[116.0808,-3.1621],[116.0856,-3.1513],[116.0852,-3.1473]],[[116.0852,-3.1473],[116.0851,-3.1467],[116.0839,-3.1466]],[[116.0839,-3.1466],[116.0785,-3.1461]],[[116.2796,-3.0811],[116.2753,-3.0787],[116.2721,-3.0884],[116.2779,-3.0928],[116.2829,-3.0841],[116.2796,-3.0811]],[[116.2824,-3.0731],[116.2855,-3.0686],[116.2822,-3.0668],[116.2775,-3.0686],[116.2824,-3.0731]],[[116.1847,-3.0394],[116.1803,-3.0365],[116.173,-3.0359],[116.1718,-3.0392],[116.1672,-3.0406],[116.1723,-3.0572],[116.1766,-3.059],[116.1867,-3.0424],[116.1847,-3.0394]],[[116.1064,-2.9949],[116.102,-2.9946],[116.1004,-2.9993],[116.1039,-3.0072],[116.108,-3.0087],[116.1089,-3.0034],[116.1115,-3.0007]],[[116.1115,-3.0007],[116.1119,-3.0003],[116.1118,-3]],[[116.1118,-3],[116.1106,-2.9952],[116.1064,-2.9949]],[[116.1285,-2.9942],[116.123,-2.9912],[116.1134,-2.9969],[116.1118,-3]],[[116.1118,-3],[116.1115,-3.0007]],[[116.1115,-3.0007],[116.1099,-3.0039],[116.1104,-3.0071],[116.118,-3.0075],[116.1229,-3.0116],[116.1334,-3.0077],[116.1409,-3.0122],[116.1421,-3.0078],[116.1357,-3.0053],[116.1285,-2.9942]],[[116.1488,-2.9896],[116.1442,-2.9866],[116.1389,-2.9782],[116.1358,-2.9782],[116.1348,-2.9852],[116.1376,-2.9915],[116.1337,-2.995],[116.1384,-3.0057],[116.1413,-3.0055],[116.1468,-3.0092],[116.1538,-3.0101],[116.1602,-3.0142],[116.1594,-3.0203],[116.1553,-3.0304],[116.1621,-3.0327],[116.1693,-3.0375],[116.1726,-3.0324],[116.1724,-3.0189],[116.1765,-2.9975],[116.1711,-2.9951],[116.1679,-2.9961],[116.1593,-2.9919],[116.1558,-2.9922],[116.1488,-2.9896]],[[116.1367,-2.9914],[116.134,-2.9854],[116.1355,-2.9746],[116.1291,-2.9773],[116.1275,-2.9833],[116.1236,-2.9873],[116.1246,-2.9907],[116.1338,-2.9931],[116.1367,-2.9914]],[[116.1508,-2.8996],[116.1477,-2.8993],[116.1465,-2.9107],[116.1447,-2.9141],[116.1444,-2.9223],[116.1484,-2.9352],[116.1639,-2.9422],[116.1767,-2.946],[116.1793,-2.9498],[116.1883,-2.9497],[116.2003,-2.9433],[116.2021,-2.9392],[116.1914,-2.9331],[116.1882,-2.9276],[116.18,-2.9274],[116.1704,-2.9161],[116.1697,-2.9117],[116.1607,-2.9069],[116.1583,-2.9025],[116.1508,-2.8996]],[[116.1058,-2.8655],[116.1064,-2.8678],[116.1139,-2.8702],[116.116,-2.8677],[116.1058,-2.8655]],[[116.1117,-2.8149],[116.1156,-2.8223],[116.1215,-2.8234],[116.1168,-2.816],[116.1117,-2.8149]],[[116.2107,-2.6195],[116.2096,-2.6197]],[[116.2096,-2.6197],[116.2065,-2.6204],[116.2042,-2.6177]],[[116.2042,-2.6177],[116.2037,-2.6171],[116.202,-2.6174]],[[116.202,-2.6174],[116.1972,-2.6184]],[[116.1972,-2.6184],[116.1967,-2.6185],[116.1963,-2.623]],[[116.1963,-2.623],[116.1963,-2.6233],[116.2064,-2.6313],[116.212,-2.6303],[116.2142,-2.6255],[116.213,-2.6235]],[[116.213,-2.6235],[116.2107,-2.6195]],[[116.3144,-2.5685],[116.3177,-2.561],[116.3227,-2.5536],[116.3173,-2.542],[116.3113,-2.5358],[116.3064,-2.5401],[116.3054,-2.551],[116.3072,-2.5656],[116.3047,-2.5688],[116.2996,-2.5691],[116.2967,-2.5726],[116.2973,-2.5799],[116.2903,-2.5866],[116.2939,-2.5905],[116.2906,-2.5966],[116.2928,-2.6005],[116.292,-2.6053],[116.2863,-2.6101],[116.2907,-2.6146],[116.3162,-2.593],[116.3198,-2.5881],[116.3235,-2.5777],[116.3238,-2.564],[116.3195,-2.5597],[116.3144,-2.5685]],[[116.2733,-2.5423],[116.2784,-2.538],[116.2725,-2.5318],[116.268,-2.5331],[116.2676,-2.5375],[116.2733,-2.5423]],[[116.0889,-3.2829],[116.0987,-3.281],[116.116,-3.274],[116.1293,-3.2709],[116.1462,-3.2656],[116.1494,-3.2594],[116.1661,-3.2525],[116.1756,-3.252],[116.1776,-3.2457],[116.1813,-3.2397],[116.1833,-3.2278],[116.179,-3.2167],[116.18,-3.2117],[116.1772,-3.2031],[116.1684,-3.1805],[116.168,-3.1656],[116.1604,-3.1618],[116.1514,-3.1596],[116.1389,-3.1523],[116.1275,-3.1504],[116.1221,-3.1484],[116.1096,-3.1469],[116.0987,-3.1499],[116.0912,-3.1549],[116.0893,-3.159],[116.0825,-3.1664],[116.0806,-3.1715],[116.0705,-3.1787],[116.0764,-3.1689],[116.0722,-3.1642],[116.0706,-3.1574],[116.0682,-3.1548],[116.0691,-3.1525]],[[116.0691,-3.1525],[116.0709,-3.1477]],[[116.0709,-3.1477],[116.0718,-3.1454],[116.077,-3.1428],[116.0839,-3.1466]],[[116.0839,-3.1466],[116.0852,-3.1473]],[[116.0852,-3.1473],[116.0881,-3.1489],[116.0983,-3.1446],[116.1048,-3.1341],[116.1067,-3.1378],[116.1172,-3.1385],[116.1219,-3.1401],[116.1316,-3.1374],[116.1422,-3.1444],[116.1456,-3.1453],[116.1602,-3.1533],[116.1724,-3.1567],[116.1805,-3.1608],[116.1877,-3.1527],[116.1874,-3.1483],[116.1968,-3.1402],[116.2079,-3.128],[116.2264,-3.1248],[116.2302,-3.1266],[116.2392,-3.1274],[116.2501,-3.1228],[116.2544,-3.1261],[116.2617,-3.1268],[116.2647,-3.1246],[116.2683,-3.1287],[116.2758,-3.1288],[116.2702,-3.1114],[116.2658,-3.111],[116.2518,-3.1058],[116.239,-3.0981],[116.2352,-3.0945],[116.2166,-3.0895],[116.2154,-3.0809],[116.2104,-3.0771],[116.2051,-3.0776],[116.1975,-3.0757],[116.1887,-3.0683],[116.1885,-3.0658],[116.1757,-3.0631],[116.1702,-3.0591],[116.1689,-3.0508],[116.1629,-3.0383],[116.1539,-3.0339],[116.153,-3.0273],[116.1578,-3.0178],[116.1563,-3.0146],[116.1443,-3.0126],[116.1408,-3.0145],[116.1344,-3.0114],[116.1203,-3.0139],[116.1173,-3.0095],[116.1018,-3.0089],[116.1001,-3.0007],[116.0939,-2.9992],[116.0829,-3.0069],[116.0779,-3.0167],[116.0728,-3.0213],[116.0659,-3.0238],[116.064,-3.0269],[116.0603,-3.0409],[116.0567,-3.034],[116.0602,-3.0313],[116.0594,-3.0274],[116.0649,-3.0205],[116.0737,-3.0148],[116.0816,-3.0046],[116.0901,-2.9961],[116.0894,-2.9947],[116.0749,-2.9979],[116.0675,-3.0011],[116.0578,-3.008],[116.0556,-3.0063],[116.0615,-3.0012],[116.068,-2.9931],[116.0763,-2.9948],[116.0838,-2.9924],[116.0847,-2.9899],[116.0797,-2.9801],[116.0885,-2.9872],[116.1001,-2.9779],[116.1129,-2.9734],[116.1136,-2.969],[116.1205,-2.9654],[116.122,-2.9597],[116.1196,-2.9553],[116.1068,-2.9495],[116.1025,-2.9442],[116.1012,-2.9343],[116.105,-2.925],[116.1053,-2.9169],[116.1169,-2.9019],[116.1198,-2.9001],[116.1311,-2.8868],[116.1305,-2.8756],[116.1233,-2.872],[116.1116,-2.8703],[116.1013,-2.8662],[116.0906,-2.8606],[116.0855,-2.8617],[116.0766,-2.8545],[116.0753,-2.8507],[116.0842,-2.8524],[116.0905,-2.8579],[116.0996,-2.8579],[116.1097,-2.8637],[116.1198,-2.8657],[116.1281,-2.8644],[116.131,-2.8663],[116.1337,-2.8589],[116.1341,-2.851],[116.1314,-2.8462],[116.1317,-2.8411],[116.1279,-2.8355],[116.1198,-2.8283],[116.1191,-2.8259],[116.1072,-2.8145],[116.1193,-2.8145],[116.1255,-2.8194],[116.1292,-2.8177],[116.138,-2.8047],[116.1364,-2.8005],[116.1422,-2.7918],[116.1425,-2.8003],[116.1391,-2.8083],[116.1384,-2.8156],[116.1344,-2.8249],[116.1373,-2.8298],[116.1442,-2.8375],[116.1437,-2.8429],[116.1466,-2.8445],[116.1489,-2.8529],[116.1525,-2.8555],[116.1501,-2.8622],[116.1509,-2.8672],[116.1545,-2.8714],[116.1549,-2.8783],[116.1528,-2.8843],[116.1529,-2.8894],[116.1557,-2.9004],[116.16,-2.902],[116.1617,-2.9064],[116.1663,-2.9067],[116.1718,-2.9108],[116.1722,-2.9147],[116.1791,-2.9218],[116.183,-2.9243],[116.1872,-2.9231],[116.1927,-2.9288],[116.2054,-2.9358],[116.2087,-2.9438],[116.2071,-2.9553],[116.2092,-2.9755],[116.2115,-2.9807],[116.2127,-2.9888],[116.2112,-2.9968],[116.2121,-3.0004],[116.2208,-3.0068],[116.2279,-3.0049],[116.2374,-3.0069],[116.2458,-3.0047],[116.258,-3.0033],[116.2602,-3.0054],[116.2691,-3.0028],[116.273,-2.9983],[116.2857,-2.9781],[116.2886,-2.9773],[116.2937,-2.971],[116.3018,-2.9639],[116.303,-2.9613],[116.315,-2.9473],[116.3179,-2.9382],[116.3249,-2.9313],[116.3254,-2.9258],[116.3323,-2.9134],[116.3411,-2.8997],[116.3507,-2.8879],[116.3558,-2.8863],[116.3642,-2.8781],[116.3593,-2.8638],[116.3607,-2.8556],[116.3643,-2.8424],[116.3648,-2.8338],[116.3702,-2.815],[116.3722,-2.8033],[116.37,-2.8029],[116.3639,-2.7883],[116.3593,-2.7649],[116.3602,-2.7197],[116.361,-2.7174],[116.3649,-2.6895],[116.3664,-2.6837],[116.3659,-2.6724],[116.3685,-2.6599],[116.3727,-2.6471],[116.3805,-2.6305],[116.4006,-2.6012],[116.4101,-2.5896],[116.4152,-2.5795],[116.4135,-2.5782],[116.398,-2.581],[116.3912,-2.5843],[116.3843,-2.5733],[116.3731,-2.5649],[116.3668,-2.5652],[116.3588,-2.5618],[116.3575,-2.5503],[116.345,-2.5603],[116.3395,-2.5662],[116.3291,-2.5827],[116.3288,-2.5884],[116.3256,-2.5957],[116.3178,-2.6021],[116.3161,-2.6083],[116.3026,-2.6152],[116.2871,-2.6259],[116.2854,-2.63],[116.2775,-2.639],[116.2717,-2.643],[116.2706,-2.6489],[116.2626,-2.656],[116.2548,-2.6676],[116.2514,-2.6698],[116.2464,-2.6696],[116.2378,-2.6665],[116.226,-2.6738],[116.234,-2.6633],[116.2494,-2.6673],[116.2527,-2.6661],[116.2603,-2.655],[116.2594,-2.6503],[116.2505,-2.645],[116.2461,-2.6364],[116.2475,-2.6289],[116.2457,-2.6227],[116.24,-2.6184],[116.2348,-2.6168],[116.2277,-2.6226],[116.2148,-2.6258],[116.2126,-2.6305],[116.2068,-2.632],[116.196,-2.6247],[116.1963,-2.623]],[[116.1963,-2.623],[116.1972,-2.6184]],[[116.1972,-2.6184],[116.1975,-2.6169],[116.202,-2.6174]],[[116.202,-2.6174],[116.2042,-2.6177]],[[116.2042,-2.6177],[116.2085,-2.6182],[116.2096,-2.6197]],[[116.2096,-2.6197],[116.2125,-2.6236],[116.213,-2.6235]],[[116.213,-2.6235],[116.2245,-2.622],[116.2332,-2.6152],[116.2376,-2.6152],[116.2456,-2.619],[116.2503,-2.6292],[116.256,-2.6347],[116.2629,-2.6378],[116.272,-2.6381],[116.2782,-2.6316],[116.2771,-2.6268],[116.2714,-2.6212],[116.2735,-2.6184],[116.2802,-2.6223],[116.2876,-2.6155],[116.2855,-2.6106],[116.2906,-2.6055],[116.292,-2.6014],[116.2877,-2.5937],[116.2889,-2.5864],[116.2951,-2.5778],[116.2963,-2.5691],[116.305,-2.5671],[116.3035,-2.554],[116.3043,-2.5372],[116.3006,-2.5326],[116.2842,-2.5385],[116.2745,-2.5449],[116.2694,-2.5436],[116.2654,-2.5378],[116.2675,-2.5325],[116.272,-2.5309],[116.2796,-2.5363],[116.2834,-2.5358],[116.2912,-2.5314],[116.2984,-2.5206],[116.3022,-2.5238],[116.3099,-2.5241],[116.3173,-2.5304],[116.328,-2.5311],[116.3365,-2.5335],[116.3453,-2.5271],[116.3531,-2.5184],[116.3612,-2.5246],[116.3736,-2.5225],[116.384,-2.5226],[116.398,-2.527],[116.4088,-2.5186],[116.4127,-2.5108],[116.4145,-2.5007],[116.4087,-2.4922],[116.4046,-2.4894],[116.3893,-2.4845],[116.3799,-2.4808],[116.3793,-2.4789],[116.406,-2.4879],[116.4167,-2.4989],[116.4334,-2.4986],[116.4402,-2.5003],[116.449,-2.5004],[116.4581,-2.502],[116.4724,-2.5077],[116.4773,-2.5118],[116.4782,-2.5168],[116.4764,-2.523],[116.4796,-2.5323],[116.4799,-2.5398],[116.4774,-2.549],[116.4821,-2.5527],[116.4828,-2.5608],[116.4808,-2.5637],[116.4818,-2.572],[116.4912,-2.5702],[116.4995,-2.5663],[116.5123,-2.5635],[116.5175,-2.5594],[116.519,-2.5514],[116.5266,-2.5427],[116.5323,-2.5383],[116.5298,-2.5333],[116.5306,-2.5269],[116.5249,-2.518],[116.5276,-2.5021],[116.5321,-2.488],[116.5376,-2.4793],[116.5401,-2.4703],[116.545,-2.4611],[116.5434,-2.4536],[116.5463,-2.4406],[116.5525,-2.4252],[116.5521,-2.422],[116.5543,-2.4086]]]}},{"type":"Feature","properties":{"mhid":"1332:354","alt_name":"KABUPATEN BANJAR","latitude":-3.31667,"longitude":115.08333,"sample_value":66},"geometry":{"type":"MultiLineString","coordinates":[[[114.5092,-3.5444],[114.5166,-3.5443]]]}},{"type":"Feature","properties":{"mhid":"1332:355","alt_name":"KABUPATEN BARITO KUALA","latitude":-3.08333,"longitude":114.61667,"sample_value":666},"geometry":{"type":"MultiLineString","coordinates":[[[114.3719,-3.3075],[114.3719,-3.3202],[114.3685,-3.326]],[[114.3542,-3.3421],[114.3461,-3.3524],[114.3507,-3.3685],[114.3558,-3.3773],[114.3589,-3.3863]],[[114.3589,-3.3865],[114.3596,-3.3942],[114.3576,-3.4027]],[[114.3473,-3.4176],[114.3478,-3.4257],[114.3465,-3.4314],[114.3495,-3.4406],[114.3538,-3.4423],[114.3508,-3.451],[114.3491,-3.4616],[114.3599,-3.4653],[114.3637,-3.4683],[114.3945,-3.4821],[114.3975,-3.4813],[114.4016,-3.4851],[114.4064,-3.4856],[114.408,-3.4886],[114.4205,-3.4957],[114.4289,-3.4984],[114.4308,-3.5013],[114.4396,-3.5037],[114.4453,-3.5026],[114.4813,-3.5027],[114.5092,-3.5444]]]}},{"type":"Feature","properties":{"mhid":"1332:361","alt_name":"KABUPATEN TANAH BUMBU","latitude":-3.45413,"longitude":115.70372,"sample_value":852},"geometry":{"type":"MultiLineString","coordinates":[[[116.0281,-3.4583],[116.0322,-3.4541],[116.0345,-3.4479],[116.0335,-3.4387],[116.041,-3.4256],[116.0405,-3.4214],[116.0314,-3.4223],[116.0196,-3.4313],[116.0165,-3.4377],[116.0161,-3.4442],[116.0176,-3.4489],[116.0232,-3.456],[116.0281,-3.4583]],[[116.0306,-3.4059],[116.0369,-3.3987],[116.0378,-3.3917],[116.0446,-3.3724],[116.0464,-3.3604],[116.0456,-3.3583],[116.0381,-3.3605],[116.033,-3.367],[116.0337,-3.3774],[116.0292,-3.3932],[116.0258,-3.4025],[116.0306,-3.4059]],[[116.062,-3.3844],[116.0696,-3.3803],[116.072,-3.3697],[116.0726,-3.3506],[116.0687,-3.3494],[116.0596,-3.3526],[116.0584,-3.3559],[116.0574,-3.3693],[116.0542,-3.3806],[116.0574,-3.3845],[116.062,-3.3844]],[[115.3744,-3.8638],[115.4058,-3.8501],[115.4399,-3.8328],[115.4574,-3.8231],[115.4758,-3.8167],[115.4793,-3.8147],[115.4843,-3.8177],[115.4919,-3.8153],[115.5135,-3.8041],[115.5255,-3.8019],[115.5275,-3.7961],[115.5358,-3.7947],[115.5635,-3.7839],[115.574,-3.7783],[115.5854,-3.7743],[115.6084,-3.7702],[115.6147,-3.7653],[115.6306,-3.7555],[115.6397,-3.7511],[115.6546,-3.7453],[115.6853,-3.7374],[115.6966,-3.7357],[115.7057,-3.7359],[115.7166,-3.7328],[115.7178,-3.7277],[115.721,-3.7239],[115.7356,-3.7102],[115.7489,-3.7024],[115.7698,-3.6922],[115.7732,-3.6889],[115.7799,-3.6855],[115.7895,-3.6775],[115.7922,-3.6674],[115.8019,-3.6548],[115.8092,-3.6506],[115.8167,-3.6423],[115.8265,-3.6377],[115.834,-3.6326],[115.8402,-3.6318],[115.8501,-3.6277],[115.8517,-3.6258],[115.8809,-3.6203],[115.9031,-3.6174],[115.9136,-3.6148],[115.9305,-3.6129],[115.9439,-3.6122],[115.9556,-3.613],[115.9645,-3.6117],[115.9695,-3.6094],[115.9734,-3.605],[115.975,-3.5985],[115.9826,-3.5864],[115.9838,-3.5825],[115.9942,-3.5728],[115.9966,-3.5648],[115.9937,-3.5624],[115.9931,-3.5535],[115.9916,-3.5511],[115.9925,-3.5374],[115.9916,-3.5283],[115.9933,-3.5195],[115.9987,-3.5071],[116.0067,-3.4944],[116.015,-3.4849],[116.0151,-3.4782],[116.0119,-3.4645],[116.0099,-3.4606],[116.0069,-3.4452],[116.0086,-3.4428],[116.0078,-3.4369],[116.0094,-3.4295],[116.014,-3.4182],[116.0235,-3.4118],[116.0235,-3.3963],[116.0268,-3.3909],[116.0319,-3.3766],[116.0314,-3.3669],[116.0377,-3.3587],[116.0458,-3.3564],[116.0525,-3.3489],[116.0525,-3.3463],[116.0571,-3.3372],[116.0612,-3.3353],[116.0632,-3.3294],[116.0644,-3.3195],[116.0713,-3.3126],[116.0742,-3.3045],[116.0747,-3.2994],[116.0798,-3.2972],[116.0858,-3.2866],[116.0889,-3.2829]]]}},{"type":"Feature","properties":{"mhid":"1332:362","alt_name":"KABUPATEN BALANGAN","latitude":-2.32314,"longitude":115.62922,"sample_value":970},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:365","alt_name":"KABUPATEN PASER","latitude":-1.43517,"longitude":116.23535,"sample_value":111},"geometry":{"type":"MultiLineString","coordinates":[[[116.4615,-2.1915],[116.5064,-2.1622],[116.4298,-2.2035],[116.4615,-2.1915]],[[116.5543,-2.4086],[116.5564,-2.4087],[116.5777,-2.3301],[116.5805,-2.3193],[116.5869,-2.2606],[116.5934,-2.1953],[116.5883,-2.1745],[116.5781,-2.1612],[116.5711,-2.162],[116.5636,-2.1612],[116.5628,-2.1663],[116.5652,-2.1706],[116.5742,-2.1788],[116.5742,-2.1886],[116.5711,-2.1917],[116.5582,-2.2011],[116.5507,-2.205],[116.539,-2.2097],[116.5159,-2.2215],[116.51,-2.2258],[116.5045,-2.2324],[116.4975,-2.2234],[116.5374,-2.2007],[116.5527,-2.1847],[116.5499,-2.1718],[116.537,-2.169],[116.5194,-2.169],[116.5049,-2.1667],[116.4803,-2.1839],[116.4482,-2.2004],[116.4318,-2.207],[116.411,-2.2105],[116.4067,-2.2043],[116.4509,-2.1902],[116.4748,-2.1777],[116.4948,-2.1644],[116.5249,-2.1518],[116.5178,-2.1389],[116.518,-2.1213],[116.513,-2.1143],[116.4977,-2.1064],[116.4879,-2.1182],[116.4727,-2.1244],[116.455,-2.1334],[116.4296,-2.1287],[116.3971,-2.1291],[116.3917,-2.1256],[116.3893,-2.1135],[116.3697,-2.1131],[116.3611,-2.1107],[116.378,-2.0967],[116.3928,-2.081],[116.41,-2.0783],[116.4288,-2.0802],[116.4367,-2.0681],[116.4496,-2.0646],[116.4597,-2.0524],[116.4617,-2.0348],[116.457,-2.0341],[116.4611,-2.0286],[116.4631,-2.0184],[116.4607,-2.0035],[116.4588,-1.9973],[116.4525,-1.9503],[116.4541,-1.9315],[116.4574,-1.9124],[116.4578,-1.9045],[116.4554,-1.892],[116.4519,-1.885],[116.4449,-1.8748],[116.437,-1.8697],[116.428,-1.8662],[116.4269,-1.8576],[116.446,-1.8267],[116.4521,-1.8153],[116.4525,-1.7672],[116.4177,-1.7652],[116.4095,-1.7676],[116.3962,-1.7672],[116.384,-1.7602],[116.3692,-1.7602],[116.366,-1.7813],[116.3562,-1.7731],[116.3336,-1.7754],[116.3202,-1.784],[116.3007,-1.7926],[116.2811,-1.7997],[116.2623,-1.8102],[116.251,-1.8048],[116.2432,-1.7985],[116.2263,-1.7973],[116.2166,-1.7903],[116.2123,-1.7801],[116.2256,-1.7774],[116.2526,-1.7801],[116.2655,-1.7703],[116.2725,-1.7602],[116.2831,-1.7472],[116.2807,-1.7339],[116.2901,-1.7335],[116.2958,-1.7308],[116.3032,-1.7234],[116.3126,-1.7069],[116.3189,-1.7015],[116.3353,-1.6925],[116.3572,-1.6815],[116.3791,-1.6737],[116.3973,-1.669],[116.447,-1.6537],[116.4752,-1.6443],[116.492,-1.6412],[116.5132,-1.6349],[116.5421,-1.622],[116.5413,-1.6154],[116.5488,-1.6087],[116.5501,-1.603]]]}},{"type":"Feature","properties":{"mhid":"1332:367","alt_name":"KABUPATEN KUTAI KARTANEGARA","latitude":-0.44019,"longitude":116.98139,"sample_value":197},"geometry":{"type":"MultiLineString","coordinates":[[[117.4257,-0.871],[117.4208,-0.8654],[117.4166,-0.87],[117.4236,-0.8772],[117.4257,-0.8864],[117.4312,-0.8907],[117.4348,-0.8912],[117.4356,-0.8872]],[[117.4356,-0.8872],[117.436,-0.8852]],[[117.436,-0.8852],[117.4363,-0.884],[117.4333,-0.8749],[117.4355,-0.8728],[117.4319,-0.8673],[117.4257,-0.871]],[[117.262,-0.8638],[117.2613,-0.8576],[117.2556,-0.8569],[117.255,-0.8734],[117.2557,-0.884],[117.2602,-0.8861],[117.263,-0.8846],[117.2623,-0.8749],[117.2634,-0.8686],[117.262,-0.8638]],[[117.4862,-0.8273],[117.4835,-0.8228],[117.4693,-0.8111],[117.4701,-0.8174],[117.467,-0.8248],[117.4696,-0.8309],[117.4822,-0.8394],[117.4912,-0.8382],[117.4926,-0.8339],[117.4862,-0.8273]],[[117.2752,-0.8097],[117.2672,-0.8125],[117.2633,-0.8225],[117.2621,-0.839],[117.2632,-0.8514],[117.2662,-0.8658],[117.2664,-0.8794],[117.2672,-0.8829],[117.2752,-0.8878],[117.2772,-0.8834],[117.2765,-0.8723],[117.2734,-0.8545],[117.2741,-0.8441],[117.2832,-0.8316],[117.2852,-0.8264],[117.2833,-0.822],[117.2781,-0.8174],[117.2775,-0.8113],[117.2752,-0.8097]],[[117.4769,-0.8068],[117.4697,-0.8062],[117.4729,-0.8109],[117.4793,-0.816],[117.4828,-0.8152],[117.4769,-0.8068]],[[117.3461,-0.7682],[117.3466,-0.7746],[117.3521,-0.7808],[117.3533,-0.7772],[117.3485,-0.769],[117.3461,-0.7682]],[[117.4406,-0.78],[117.4317,-0.7721],[117.4213,-0.765],[117.4098,-0.755],[117.4053,-0.7539],[117.4044,-0.765],[117.4083,-0.7769],[117.4118,-0.7845],[117.415,-0.7858],[117.4192,-0.7821],[117.4248,-0.7802],[117.4314,-0.7818],[117.4367,-0.7886],[117.44,-0.7992],[117.4446,-0.806],[117.4493,-0.8071],[117.4543,-0.8112],[117.464,-0.8218],[117.4676,-0.8173],[117.4663,-0.8089],[117.4608,-0.8014],[117.4494,-0.7904],[117.4406,-0.78]],[[117.4709,-0.7462],[117.4639,-0.7431]],[[117.4639,-0.7431],[117.4632,-0.7428],[117.463,-0.7435]],[[117.463,-0.7435],[117.4624,-0.7457],[117.4655,-0.7504],[117.4682,-0.7619],[117.4706,-0.7646],[117.4819,-0.7703],[117.4844,-0.7737],[117.4888,-0.7843],[117.4928,-0.79],[117.4991,-0.7944],[117.4996,-0.7968],[117.5087,-0.8073],[117.5139,-0.8109],[117.5208,-0.8122],[117.5244,-0.8095],[117.5303,-0.812],[117.5451,-0.8037],[117.5483,-0.8003],[117.5496,-0.7929],[117.5421,-0.7893],[117.5348,-0.7875],[117.5154,-0.7772],[117.5077,-0.7761],[117.509,-0.7726],[117.5171,-0.7647],[117.5144,-0.7602],[117.5021,-0.7565],[117.5013,-0.7513],[117.4963,-0.7492]],[[117.4963,-0.7492],[117.4962,-0.7491],[117.4961,-0.7491]],[[117.4961,-0.7491],[117.482,-0.7505],[117.4763,-0.7457],[117.4709,-0.7462]],[[117.4639,-0.75],[117.462,-0.7477],[117.4422,-0.7416],[117.4376,-0.7455],[117.438,-0.7517],[117.441,-0.7555],[117.4544,-0.7664],[117.4662,-0.7835],[117.4815,-0.798],[117.4858,-0.8011],[117.4914,-0.8023],[117.493,-0.7975],[117.4858,-0.7837],[117.4822,-0.7724],[117.471,-0.7669],[117.4661,-0.7598],[117.4639,-0.75]],[[117.3904,-0.7394],[117.3815,-0.7396],[117.3794,-0.7501],[117.3756,-0.7551],[117.3821,-0.7579],[117.3825,-0.7647],[117.38,-0.771],[117.3752,-0.7749],[117.3784,-0.7782],[117.3849,-0.7744],[117.3921,-0.7765],[117.3987,-0.7898],[117.4039,-0.8045],[117.4104,-0.8184],[117.4135,-0.8325],[117.4154,-0.8365],[117.4216,-0.8328],[117.427,-0.8316],[117.4354,-0.8218],[117.4399,-0.8143],[117.4351,-0.8045],[117.4319,-0.7867],[117.4243,-0.786],[117.4145,-0.7881],[117.4084,-0.7849],[117.4021,-0.7676],[117.4005,-0.7563],[117.3963,-0.7476],[117.3904,-0.7394]],[[117.3309,-0.7466],[117.3317,-0.7373],[117.3286,-0.7283],[117.3263,-0.7295],[117.3309,-0.7466]],[[117.5146,-0.6953],[117.5099,-0.6954],[117.5,-0.698],[117.4978,-0.7026],[117.5076,-0.7049],[117.5187,-0.7019],[117.5146,-0.6953]],[[117.4025,-0.7015],[117.3876,-0.6948],[117.3853,-0.7023],[117.3801,-0.7086],[117.3791,-0.7132],[117.3833,-0.7211],[117.3956,-0.7323],[117.3986,-0.7332],[117.4185,-0.7562],[117.4304,-0.7643],[117.4362,-0.7672],[117.451,-0.7815],[117.4566,-0.7845],[117.4593,-0.7831],[117.4579,-0.7767],[117.455,-0.772],[117.4402,-0.7581],[117.4355,-0.7516],[117.4348,-0.7438],[117.4326,-0.7386],[117.4215,-0.74],[117.4181,-0.7365],[117.4224,-0.7306],[117.4239,-0.7385],[117.435,-0.7363],[117.4365,-0.7329],[117.4299,-0.7223],[117.4163,-0.7103],[117.4025,-0.7015]],[[117.3647,-0.696],[117.3614,-0.6929],[117.3621,-0.6874],[117.3532,-0.6831],[117.3475,-0.6861],[117.3482,-0.6928],[117.3562,-0.6957],[117.3578,-0.7027],[117.3646,-0.705],[117.364,-0.7066]],[[117.364,-0.7066],[117.3637,-0.7074]],[[117.3637,-0.7074],[117.3618,-0.7126],[117.3632,-0.7187],[117.368,-0.7195],[117.3745,-0.7162],[117.3791,-0.6994],[117.3758,-0.6937],[117.3647,-0.696]],[[117.3947,-0.6882],[117.3882,-0.6824],[117.3846,-0.6825],[117.3876,-0.6923],[117.4044,-0.7008],[117.4035,-0.696],[117.4058,-0.6956]],[[117.4058,-0.6956],[117.4064,-0.6955]],[[117.4064,-0.6955],[117.4079,-0.6952],[117.4039,-0.6888],[117.3994,-0.687],[117.3947,-0.6882]],[[117.3288,-0.75],[117.3275,-0.7438],[117.3211,-0.7298],[117.3197,-0.7121],[117.318,-0.7063],[117.3181,-0.6958],[117.3151,-0.6861],[117.3099,-0.6783],[117.3068,-0.6774],[117.3036,-0.6887],[117.2982,-0.6995],[117.2958,-0.7092],[117.2952,-0.7172],[117.2909,-0.7282],[117.2912,-0.7491],[117.2967,-0.7648],[117.2977,-0.7721],[117.2956,-0.7774],[117.2909,-0.7829],[117.2917,-0.7977],[117.2988,-0.8024],[117.3009,-0.808],[117.3012,-0.818],[117.3061,-0.8345],[117.3129,-0.8364],[117.3147,-0.8346],[117.3277,-0.8337],[117.337,-0.8372],[117.3432,-0.8323],[117.338,-0.8224],[117.3272,-0.8089],[117.3168,-0.8022],[117.3145,-0.7945],[117.3219,-0.786],[117.3147,-0.7807],[117.3145,-0.7743],[117.3199,-0.77],[117.3148,-0.7639],[117.3144,-0.75],[117.3189,-0.75],[117.318,-0.7631],[117.3233,-0.7668],[117.3229,-0.7713],[117.3195,-0.7776],[117.3268,-0.7822],[117.3269,-0.7881],[117.3197,-0.7976],[117.3331,-0.8064],[117.3391,-0.8088],[117.3428,-0.8125],[117.3472,-0.8243],[117.3465,-0.835],[117.3393,-0.8416],[117.3163,-0.8491],[117.3117,-0.8539],[117.3105,-0.8575],[117.3149,-0.8782],[117.3187,-0.8817],[117.319,-0.8866],[117.3246,-0.8934],[117.3258,-0.8998],[117.3322,-0.9082],[117.3439,-0.9138],[117.3491,-0.9089],[117.3527,-0.9025],[117.3574,-0.8977],[117.3569,-0.8905],[117.3578,-0.8811],[117.3621,-0.8812],[117.3617,-0.8876],[117.3694,-0.8901],[117.3781,-0.8883],[117.3917,-0.8794],[117.3902,-0.8671],[117.3864,-0.8604],[117.3746,-0.8479],[117.3726,-0.8413],[117.3734,-0.8336],[117.3704,-0.8254],[117.3645,-0.8173],[117.3594,-0.8131],[117.353,-0.7961],[117.3485,-0.7877],[117.3413,-0.7817],[117.3349,-0.7713],[117.3289,-0.7665],[117.3288,-0.75]],[[117.4535,-0.6786],[117.4514,-0.6758],[117.4415,-0.6685],[117.4374,-0.6635],[117.4343,-0.6642],[117.4311,-0.6775],[117.4275,-0.6819],[117.4225,-0.6837],[117.4121,-0.677],[117.4086,-0.6785],[117.4146,-0.6858],[117.4152,-0.6945],[117.4109,-0.6977],[117.4064,-0.6955]],[[117.4064,-0.6955],[117.4058,-0.6952],[117.4058,-0.6956]],[[117.4058,-0.6956],[117.4055,-0.7012],[117.422,-0.7088],[117.4358,-0.7261],[117.4438,-0.7389],[117.4489,-0.7423],[117.46,-0.7449],[117.463,-0.7435]],[[117.463,-0.7435],[117.4639,-0.7431]],[[117.4639,-0.7431],[117.4652,-0.7425],[117.47,-0.7451],[117.477,-0.7449],[117.4817,-0.7494],[117.4926,-0.7483],[117.4961,-0.7491]],[[117.4961,-0.7491],[117.4963,-0.7492]],[[117.4963,-0.7492],[117.5013,-0.7503],[117.5026,-0.7438],[117.4983,-0.7372],[117.5016,-0.7339],[117.5051,-0.7395],[117.5027,-0.7494],[117.5038,-0.7554],[117.5122,-0.7558],[117.5183,-0.7622],[117.5181,-0.7665],[117.5149,-0.7703],[117.518,-0.7742],[117.5242,-0.7746],[117.5465,-0.7833],[117.5498,-0.7837],[117.5564,-0.781],[117.5736,-0.7833],[117.5875,-0.7801],[117.5907,-0.7813],[117.6025,-0.7724],[117.6065,-0.7664],[117.606,-0.7477],[117.6071,-0.7389],[117.604,-0.7288],[117.6014,-0.7246],[117.5977,-0.7233],[117.587,-0.7259],[117.5797,-0.7234],[117.5738,-0.7245],[117.569,-0.722],[117.5611,-0.7231],[117.5562,-0.7217],[117.5435,-0.7221],[117.5383,-0.7234],[117.5271,-0.7306],[117.5175,-0.7335],[117.5074,-0.7327],[117.5,-0.7248],[117.4925,-0.7191],[117.4889,-0.7141],[117.4787,-0.7094],[117.4705,-0.7137],[117.465,-0.7083],[117.4651,-0.6968],[117.4535,-0.6851],[117.4535,-0.6786]],[[117.4997,-0.6641],[117.4945,-0.6603],[117.4892,-0.6499],[117.4835,-0.65],[117.4869,-0.6612],[117.4817,-0.6663],[117.4795,-0.6727],[117.475,-0.6751],[117.4726,-0.6797],[117.4729,-0.6859],[117.4863,-0.692],[117.5,-0.6938],[117.5065,-0.6915],[117.5266,-0.6863],[117.5264,-0.6793],[117.5286,-0.6695],[117.5182,-0.6565],[117.5081,-0.6628],[117.4997,-0.6641]],[[117.3474,-0.6454],[117.3369,-0.6375],[117.3299,-0.6345],[117.3229,-0.6332],[117.3212,-0.6392],[117.3236,-0.6413],[117.3246,-0.6537],[117.3289,-0.6594],[117.3377,-0.6552],[117.3389,-0.6586],[117.337,-0.6637],[117.3306,-0.6655],[117.3344,-0.6705],[117.3388,-0.6704],[117.3484,-0.6789],[117.3574,-0.6827],[117.3626,-0.6864],[117.3636,-0.694],[117.3671,-0.695],[117.3758,-0.6924],[117.384,-0.6962],[117.377,-0.6826],[117.3725,-0.6712],[117.368,-0.664],[117.3554,-0.6543],[117.3474,-0.6454]],[[117.3656,-0.6533],[117.3601,-0.6489],[117.3608,-0.6462],[117.3662,-0.6434],[117.356,-0.6407],[117.353,-0.6345],[117.3476,-0.6334],[117.3572,-0.6482],[117.3666,-0.6581],[117.3746,-0.6686],[117.3832,-0.6773],[117.3934,-0.6855],[117.4027,-0.6869],[117.4085,-0.6944],[117.414,-0.6931],[117.4128,-0.6861],[117.4071,-0.679],[117.4081,-0.6761],[117.4186,-0.6762],[117.4199,-0.679],[117.4257,-0.6813],[117.4281,-0.6766],[117.4294,-0.6671],[117.4326,-0.6595],[117.4314,-0.6575],[117.4237,-0.6578],[117.4217,-0.6559],[117.4207,-0.6471],[117.412,-0.6489],[117.41,-0.6463],[117.4131,-0.6414],[117.4103,-0.6378],[117.395,-0.6305],[117.3803,-0.6344],[117.3745,-0.6312]],[[117.3745,-0.6312],[117.3745,-0.6312],[117.3721,-0.6343],[117.3724,-0.6364]],[[117.3724,-0.6364],[117.3727,-0.6385],[117.369,-0.6522],[117.3656,-0.6533]],[[117.4782,-0.6494],[117.4808,-0.651],[117.4882,-0.6466],[117.4921,-0.6495],[117.4985,-0.6606],[117.505,-0.6597],[117.5077,-0.6541],[117.5124,-0.6487],[117.5094,-0.6417],[117.5003,-0.6416],[117.4976,-0.637],[117.4986,-0.6264],[117.489,-0.6274],[117.4779,-0.6256],[117.4619,-0.6265],[117.4587,-0.6315],[117.4662,-0.642],[117.4688,-0.6518],[117.4718,-0.6589],[117.4767,-0.6643],[117.4821,-0.664],[117.4844,-0.6593],[117.4782,-0.6494]],[[117.3212,-0.6315],[117.3062,-0.6153],[117.3005,-0.6148],[117.3004,-0.6327],[117.3043,-0.6423],[117.3046,-0.6492],[117.3071,-0.6633],[117.311,-0.673],[117.3189,-0.6847],[117.32,-0.6878],[117.322,-0.7083],[117.3236,-0.7163],[117.3278,-0.7244],[117.3368,-0.7336],[117.3388,-0.7378],[117.3373,-0.7446],[117.332,-0.75],[117.3338,-0.7582],[117.338,-0.763],[117.3486,-0.7687],[117.3539,-0.7778],[117.3541,-0.7821],[117.3589,-0.7973],[117.364,-0.8074],[117.3764,-0.8185],[117.3823,-0.8275],[117.3857,-0.8405],[117.3891,-0.8459],[117.3959,-0.8514],[117.402,-0.8609],[117.4056,-0.8763],[117.4087,-0.8835],[117.416,-0.8862],[117.4232,-0.8807],[117.4224,-0.8765],[117.4156,-0.8724],[117.4157,-0.8692],[117.4239,-0.8617],[117.4272,-0.8683],[117.4313,-0.8666],[117.4357,-0.8707],[117.4369,-0.8783],[117.4399,-0.8825],[117.436,-0.8852]],[[117.436,-0.8852],[117.4352,-0.8858],[117.4356,-0.8872]],[[117.4356,-0.8872],[117.4362,-0.8892],[117.4422,-0.8892],[117.4458,-0.8853],[117.4466,-0.8804],[117.4429,-0.8732],[117.4365,-0.8641],[117.4343,-0.8538],[117.4334,-0.8438],[117.4211,-0.8437],[117.4163,-0.8426],[117.411,-0.8388],[117.4024,-0.8179],[117.3986,-0.804],[117.3929,-0.7892],[117.3908,-0.7792],[117.3866,-0.777],[117.3807,-0.7809],[117.374,-0.7812],[117.3712,-0.7774],[117.3711,-0.7726],[117.3777,-0.764],[117.3723,-0.7592],[117.3721,-0.7507],[117.3779,-0.7488],[117.3798,-0.7401],[117.3823,-0.7381],[117.3879,-0.7389],[117.3886,-0.7348],[117.3863,-0.7306],[117.375,-0.7182],[117.3666,-0.7209],[117.3614,-0.7176],[117.3602,-0.711],[117.3637,-0.7074]],[[117.3637,-0.7074],[117.3643,-0.7068],[117.364,-0.7066]],[[117.364,-0.7066],[117.3565,-0.7024],[117.3563,-0.6966],[117.3483,-0.6939],[117.3465,-0.6863],[117.3524,-0.6824],[117.3432,-0.6768],[117.3396,-0.6716],[117.3318,-0.671],[117.3284,-0.6661],[117.3366,-0.6632],[117.3372,-0.6559],[117.3289,-0.6601],[117.3243,-0.6544],[117.3236,-0.6434],[117.3201,-0.6398],[117.3212,-0.6315]],[[117.4984,-0.6139],[117.4935,-0.6112],[117.4925,-0.6039],[117.4874,-0.6037],[117.4869,-0.6091],[117.4764,-0.6227],[117.4925,-0.6246],[117.4962,-0.6227],[117.5012,-0.6253],[117.5023,-0.6375],[117.5086,-0.6373],[117.5149,-0.6407],[117.5196,-0.6495],[117.5236,-0.6515],[117.5315,-0.6525],[117.5475,-0.6511],[117.5538,-0.6494],[117.5581,-0.6461],[117.5647,-0.6332],[117.5675,-0.6251],[117.5662,-0.6187],[117.5599,-0.616],[117.541,-0.6147],[117.5107,-0.6066],[117.5055,-0.6064],[117.5006,-0.6133],[117.4984,-0.6139]],[[117.4991,-0.6133],[117.5021,-0.6081],[117.4972,-0.5979],[117.4934,-0.6026],[117.494,-0.6094],[117.4991,-0.6133]],[[117.4829,-0.5967],[117.4785,-0.5903],[117.4754,-0.5994],[117.4656,-0.6016],[117.4737,-0.6084],[117.4702,-0.6183],[117.4779,-0.618],[117.4806,-0.6129],[117.4853,-0.6095],[117.4865,-0.6024],[117.4891,-0.6],[117.49,-0.5936],[117.4829,-0.5967]],[[117.3718,-0.5982],[117.3718,-0.5891],[117.3684,-0.5859],[117.3544,-0.5944],[117.3436,-0.5992],[117.3382,-0.5998],[117.3443,-0.6077]],[[117.3443,-0.6077],[117.3449,-0.6085],[117.3455,-0.6081]],[[117.3455,-0.6081],[117.3488,-0.6058],[117.3515,-0.608],[117.3569,-0.6082],[117.357,-0.6085]],[[117.357,-0.6085],[117.3586,-0.6119],[117.3598,-0.6123]],[[117.3598,-0.6123],[117.3656,-0.6142],[117.3682,-0.61],[117.3677,-0.6046],[117.3748,-0.608],[117.3743,-0.6114],[117.37,-0.6155],[117.3753,-0.6226],[117.3814,-0.6197],[117.3859,-0.6247],[117.3869,-0.6306],[117.3933,-0.629],[117.3972,-0.6299],[117.4115,-0.6363],[117.4141,-0.6391],[117.4138,-0.6475],[117.42,-0.6447],[117.4241,-0.6498],[117.4244,-0.6559],[117.4332,-0.6544],[117.4413,-0.6579],[117.4421,-0.661],[117.4492,-0.6628],[117.4555,-0.6678],[117.4597,-0.6779],[117.4625,-0.6814],[117.4689,-0.6817],[117.4724,-0.6761],[117.4755,-0.666],[117.4699,-0.6592],[117.465,-0.6443],[117.4598,-0.636],[117.4434,-0.6328],[117.4361,-0.6332],[117.4316,-0.6284],[117.4243,-0.6306],[117.4205,-0.63],[117.4189,-0.6253],[117.4122,-0.6191],[117.4159,-0.6146],[117.4071,-0.6115],[117.4057,-0.6106]],[[117.4057,-0.6106],[117.4033,-0.6089]],[[117.4033,-0.6089],[117.4029,-0.6086],[117.395,-0.612],[117.3881,-0.6088],[117.3884,-0.6036],[117.3789,-0.5991],[117.3796,-0.5945],[117.3734,-0.593],[117.3718,-0.5982]],[[117.4279,-0.5974],[117.4249,-0.5914],[117.4293,-0.5881],[117.4242,-0.5843],[117.4199,-0.5912],[117.4187,-0.5978],[117.4158,-0.5976],[117.4124,-0.5928],[117.4086,-0.5964],[117.4082,-0.6023],[117.4043,-0.6036]],[[117.4043,-0.6036],[117.4014,-0.6045],[117.4021,-0.6062]],[[117.4021,-0.6062],[117.4033,-0.6089]],[[117.4033,-0.6089],[117.4039,-0.6103],[117.4057,-0.6106]],[[117.4057,-0.6106],[117.4067,-0.6107],[117.4114,-0.6064],[117.4124,-0.6124],[117.4175,-0.6149],[117.4146,-0.6202],[117.4198,-0.6237],[117.4217,-0.6291],[117.4261,-0.628],[117.4284,-0.6218],[117.4334,-0.6232],[117.4352,-0.6291],[117.4387,-0.6312],[117.4439,-0.6285],[117.4482,-0.6216],[117.4492,-0.615],[117.4461,-0.6089],[117.4389,-0.6085],[117.4379,-0.605],[117.4328,-0.605],[117.4279,-0.5974]],[[117.322,-0.5828],[117.3221,-0.5796],[117.3056,-0.5771],[117.2962,-0.5784],[117.285,-0.5826],[117.2941,-0.5972],[117.2996,-0.6022],[117.305,-0.6095],[117.3139,-0.6176],[117.3218,-0.6272],[117.3392,-0.6344],[117.3464,-0.6363],[117.3436,-0.6271],[117.3482,-0.628],[117.3528,-0.6329],[117.3575,-0.6409],[117.3674,-0.6434],[117.3611,-0.6467],[117.3609,-0.649],[117.3666,-0.6529],[117.3688,-0.6512],[117.3721,-0.6372],[117.3724,-0.6364]],[[117.3724,-0.6364],[117.3745,-0.6312]],[[117.3745,-0.6312],[117.3747,-0.6307],[117.381,-0.6341],[117.3855,-0.629],[117.382,-0.6211],[117.3767,-0.6241],[117.3697,-0.6167],[117.3606,-0.6135],[117.3598,-0.6123]],[[117.3598,-0.6123],[117.3572,-0.6085],[117.357,-0.6085]],[[117.357,-0.6085],[117.3455,-0.6081]],[[117.3455,-0.6081],[117.3453,-0.6081],[117.3443,-0.6077]],[[117.3443,-0.6077],[117.3424,-0.607],[117.3377,-0.5994],[117.3462,-0.5979],[117.3552,-0.5936],[117.3634,-0.5876],[117.3556,-0.5875],[117.3504,-0.5897],[117.3443,-0.5896],[117.3251,-0.5807],[117.322,-0.5828]],[[117.3204,-0.5746],[117.3131,-0.5695],[117.3112,-0.5734],[117.3204,-0.5746]],[[117.3746,-0.5834],[117.3784,-0.5853],[117.3738,-0.5921],[117.3822,-0.5909],[117.3861,-0.5918],[117.3898,-0.6014],[117.3924,-0.5956],[117.3958,-0.5993],[117.3956,-0.6037],[117.3902,-0.609],[117.3949,-0.6109],[117.3987,-0.6095],[117.4021,-0.6062]],[[117.4021,-0.6062],[117.4044,-0.6041],[117.4043,-0.6036]],[[117.4043,-0.6036],[117.4031,-0.5995],[117.4065,-0.5982],[117.4078,-0.5922],[117.4144,-0.593],[117.4169,-0.5976],[117.4227,-0.5835],[117.432,-0.5862],[117.4258,-0.5931],[117.435,-0.6042],[117.4389,-0.6034],[117.4413,-0.607],[117.4466,-0.607],[117.4491,-0.6098],[117.4507,-0.6203],[117.448,-0.628],[117.4555,-0.6286],[117.4631,-0.6237],[117.4698,-0.623],[117.4686,-0.6185],[117.4725,-0.6091],[117.4658,-0.6037],[117.463,-0.5968],[117.4645,-0.5937],[117.4705,-0.5961],[117.4754,-0.5946],[117.4725,-0.5892],[117.478,-0.588],[117.4806,-0.5902],[117.4903,-0.5884],[117.4929,-0.5905],[117.4998,-0.5892],[117.5002,-0.5824],[117.5032,-0.5728],[117.4985,-0.5687],[117.491,-0.5667],[117.4835,-0.5664],[117.4758,-0.5629],[117.475,-0.5522],[117.4719,-0.5502],[117.4658,-0.5559],[117.4579,-0.5547],[117.4537,-0.5554],[117.45,-0.5631],[117.4425,-0.5664],[117.4329,-0.5682],[117.417,-0.5649],[117.4051,-0.5676],[117.387,-0.575],[117.3746,-0.5834]],[[117.409,-0.545],[117.408,-0.5427],[117.3947,-0.546],[117.3867,-0.5514],[117.3815,-0.5592],[117.3729,-0.567],[117.3667,-0.5703],[117.3525,-0.574],[117.3491,-0.5758],[117.3525,-0.5809],[117.362,-0.5836],[117.3662,-0.5824],[117.3744,-0.5762],[117.3812,-0.5727],[117.3857,-0.5721],[117.3947,-0.5676],[117.4074,-0.5588],[117.4165,-0.5541],[117.4193,-0.5505],[117.4155,-0.5464],[117.4126,-0.5505],[117.4117,-0.5491]],[[117.4117,-0.5491],[117.4092,-0.5454]],[[117.4092,-0.5454],[117.409,-0.545]],[[117.413,-0.5491],[117.4147,-0.5459],[117.4126,-0.5409],[117.4092,-0.5423],[117.4092,-0.5454]],[[117.4092,-0.5454],[117.4093,-0.5491],[117.4117,-0.5491]],[[117.4117,-0.5491],[117.413,-0.5491]],[[117.5469,-0.5081],[117.5386,-0.5116],[117.5386,-0.5181],[117.5308,-0.5288],[117.524,-0.5342],[117.5211,-0.5295],[117.5174,-0.528],[117.5108,-0.5288],[117.4996,-0.5255],[117.4928,-0.5275],[117.4858,-0.5263],[117.4813,-0.5285],[117.476,-0.5276],[117.4586,-0.5341],[117.4582,-0.5385],[117.4486,-0.535],[117.4435,-0.5421]],[[117.4435,-0.5421],[117.4427,-0.5432]],[[117.4427,-0.5432],[117.4419,-0.5443],[117.4381,-0.5473],[117.439,-0.5539]],[[117.439,-0.5539],[117.439,-0.5542]],[[117.439,-0.5542],[117.44,-0.5619],[117.4471,-0.5605],[117.454,-0.5529],[117.4653,-0.5533],[117.4701,-0.549],[117.4751,-0.5491],[117.4772,-0.5524],[117.4778,-0.56],[117.482,-0.5638],[117.4862,-0.5628],[117.4996,-0.5638],[117.5058,-0.5677],[117.5057,-0.5807],[117.5028,-0.591],[117.5063,-0.5983],[117.5152,-0.5994],[117.519,-0.586],[117.5275,-0.5795],[117.5333,-0.58],[117.5449,-0.5849],[117.5606,-0.5587],[117.5615,-0.5595],[117.5458,-0.5867],[117.5304,-0.5803],[117.5257,-0.5831],[117.5186,-0.5942],[117.5203,-0.5963],[117.5279,-0.5942],[117.5415,-0.5938],[117.5473,-0.5911],[117.5558,-0.5839],[117.5668,-0.5835],[117.5735,-0.5765],[117.5764,-0.5716],[117.5781,-0.5652],[117.5794,-0.5528],[117.5825,-0.5391],[117.5819,-0.5328],[117.5855,-0.5183],[117.5795,-0.5148],[117.5772,-0.519],[117.5676,-0.509],[117.5552,-0.5105],[117.5469,-0.5081]],[[117.5324,-0.5224],[117.5367,-0.5179],[117.5362,-0.5136],[117.5385,-0.5093],[117.5371,-0.5063],[117.5284,-0.508],[117.522,-0.5104],[117.5098,-0.5134],[117.5006,-0.5205],[117.4994,-0.5244],[117.5034,-0.5266],[117.5145,-0.5279],[117.5213,-0.5277],[117.5239,-0.5315],[117.5273,-0.5305],[117.5324,-0.5224]],[[117.5724,-0.5067],[117.572,-0.5015],[117.5664,-0.4988],[117.5609,-0.5016],[117.5527,-0.5029],[117.5492,-0.5068],[117.5542,-0.5089],[117.5724,-0.5067]],[[117.4548,-0.4566],[117.455,-0.4519],[117.4523,-0.4477],[117.4446,-0.4513],[117.4428,-0.455],[117.4403,-0.4558]],[[117.4403,-0.4558],[117.4377,-0.4566],[117.4378,-0.4571]],[[117.4378,-0.4571],[117.4396,-0.4626],[117.4369,-0.4652],[117.4394,-0.4715],[117.4379,-0.472]],[[117.4379,-0.472],[117.4352,-0.4729],[117.4353,-0.4754]],[[117.4353,-0.4754],[117.4354,-0.4769],[117.4305,-0.48]],[[117.4305,-0.48],[117.4299,-0.4803],[117.4306,-0.4806]],[[117.4306,-0.4806],[117.4373,-0.4838],[117.4416,-0.4762],[117.4511,-0.4655],[117.4548,-0.4566]],[[117.5611,-0.4564],[117.5658,-0.4514],[117.5635,-0.4487],[117.5538,-0.4425],[117.548,-0.4441],[117.5374,-0.4527],[117.5328,-0.4575],[117.5245,-0.4626],[117.5148,-0.4669],[117.5063,-0.469],[117.5059,-0.4719],[117.4981,-0.4715],[117.4913,-0.4796],[117.4897,-0.4854],[117.4858,-0.489],[117.4765,-0.4937],[117.4671,-0.5006],[117.462,-0.5],[117.4567,-0.5036],[117.4393,-0.5186],[117.4231,-0.5282],[117.4169,-0.5338],[117.4148,-0.5399],[117.4212,-0.5486],[117.4182,-0.5614],[117.4355,-0.5636],[117.4386,-0.5617],[117.439,-0.5542]],[[117.439,-0.5542],[117.439,-0.5541],[117.439,-0.5539]],[[117.439,-0.5539],[117.4367,-0.5426],[117.4427,-0.5432]],[[117.4427,-0.5432],[117.4429,-0.5432],[117.4435,-0.5421]],[[117.4435,-0.5421],[117.4479,-0.5339],[117.4544,-0.5352],[117.4653,-0.5294],[117.4732,-0.527],[117.4965,-0.5161],[117.5086,-0.5074],[117.509,-0.5033],[117.5032,-0.5029],[117.4998,-0.5084],[117.4963,-0.5071],[117.4937,-0.4995],[117.4855,-0.5009],[117.4845,-0.5088],[117.4796,-0.5102],[117.4844,-0.4999],[117.4935,-0.4988],[117.5016,-0.5017],[117.5106,-0.5028],[117.5121,-0.5077],[117.5235,-0.5022],[117.5327,-0.501],[117.5444,-0.4983],[117.5668,-0.492],[117.5762,-0.4925],[117.5827,-0.4904],[117.5864,-0.4861],[117.5967,-0.4791],[117.5902,-0.4745],[117.5924,-0.4688],[117.5912,-0.4644],[117.5803,-0.4659],[117.5727,-0.4645]],[[117.5727,-0.4645],[117.5719,-0.4644],[117.5718,-0.4645]],[[117.5718,-0.4645],[117.5691,-0.469],[117.5629,-0.4658],[117.559,-0.4701],[117.5508,-0.4695],[117.5492,-0.4635],[117.5525,-0.4627],[117.554,-0.4581],[117.5606,-0.4601]],[[117.5606,-0.4601],[117.5614,-0.4603],[117.5612,-0.4579]],[[117.5612,-0.4579],[117.5611,-0.4564]],[[117.4995,-0.4589],[117.5099,-0.451],[117.5154,-0.4428],[117.5014,-0.4526],[117.4995,-0.4589]],[[117.6222,-0.4197],[117.6134,-0.4153],[117.6073,-0.4106],[117.6038,-0.4112],[117.5902,-0.4174],[117.5845,-0.4237],[117.5674,-0.4328],[117.5575,-0.4401],[117.5581,-0.4443],[117.5663,-0.4502],[117.5655,-0.4543],[117.5618,-0.4557],[117.5612,-0.4579]],[[117.5612,-0.4579],[117.5606,-0.4601]],[[117.5606,-0.4601],[117.5599,-0.4627],[117.5555,-0.459],[117.5532,-0.4685],[117.5579,-0.4691],[117.5634,-0.4643],[117.5684,-0.4681],[117.5702,-0.4645],[117.5718,-0.4645]],[[117.5718,-0.4645],[117.5727,-0.4645]],[[117.5727,-0.4645],[117.581,-0.4647],[117.5915,-0.4628],[117.5946,-0.4662],[117.5923,-0.4753],[117.5993,-0.4756],[117.5967,-0.4879],[117.6064,-0.4736],[117.6128,-0.468],[117.6155,-0.4638],[117.6239,-0.4566],[117.6333,-0.444],[117.6349,-0.4372],[117.6349,-0.4302],[117.6296,-0.4202],[117.6222,-0.4197]],[[117.5519,-0.4095],[117.5432,-0.412],[117.5349,-0.4207],[117.5311,-0.4263],[117.5285,-0.4358],[117.5337,-0.4331],[117.5501,-0.4175],[117.5533,-0.4122],[117.5519,-0.4095]],[[117.5518,-0.3826],[117.5442,-0.3852],[117.5353,-0.3949],[117.5298,-0.3984],[117.5227,-0.4001],[117.5132,-0.3989],[117.5094,-0.4011],[117.5151,-0.4094],[117.5158,-0.4153],[117.5094,-0.4253],[117.5111,-0.4315],[117.5077,-0.4372],[117.5,-0.44],[117.4877,-0.4418],[117.4837,-0.4529],[117.4781,-0.457],[117.4732,-0.4638],[117.4726,-0.4706],[117.4706,-0.4734]],[[117.4706,-0.4734],[117.4705,-0.4735]],[[117.4705,-0.4735],[117.4697,-0.4747],[117.4656,-0.4752],[117.4642,-0.4778]],[[117.4642,-0.4778],[117.4636,-0.4788],[117.4643,-0.4809]],[[117.4643,-0.4809],[117.4652,-0.4836],[117.4609,-0.4855],[117.4572,-0.4903],[117.4529,-0.4932]],[[117.4529,-0.4932],[117.4514,-0.4942],[117.4515,-0.4943]],[[117.4515,-0.4943],[117.4554,-0.4981],[117.4699,-0.4906],[117.4826,-0.4798],[117.4865,-0.4734],[117.4905,-0.4636],[117.4988,-0.4525],[117.5153,-0.4414],[117.5264,-0.4296],[117.5334,-0.4182],[117.5432,-0.4078],[117.5538,-0.3934],[117.5553,-0.3895],[117.5518,-0.3826]],[[117.5146,-0.3493],[117.509,-0.3468],[117.4983,-0.3511],[117.492,-0.3659],[117.486,-0.3762],[117.4859,-0.387],[117.4953,-0.3811],[117.5026,-0.3678],[117.51,-0.3605],[117.5146,-0.3493]],[[117.5359,-0.3467],[117.5291,-0.3475],[117.5241,-0.3567],[117.5173,-0.3634],[117.5068,-0.3794],[117.4925,-0.3921],[117.4743,-0.411],[117.4686,-0.4201],[117.4667,-0.4257],[117.4586,-0.4613],[117.4575,-0.4639],[117.4416,-0.481],[117.4405,-0.4868],[117.4435,-0.5006],[117.4491,-0.4984],[117.4498,-0.4957],[117.4515,-0.4943]],[[117.4515,-0.4943],[117.4529,-0.4932]],[[117.4529,-0.4932],[117.4566,-0.4902],[117.4608,-0.4849],[117.4644,-0.4836],[117.4643,-0.4809]],[[117.4643,-0.4809],[117.4642,-0.4778]],[[117.4642,-0.4778],[117.4641,-0.4755],[117.4705,-0.4735]],[[117.4705,-0.4735],[117.4706,-0.4735],[117.4706,-0.4734]],[[117.4706,-0.4734],[117.4715,-0.4651],[117.4748,-0.4593],[117.483,-0.4519],[117.4854,-0.4427],[117.4887,-0.4405],[117.4989,-0.4394],[117.5068,-0.4363],[117.509,-0.4294],[117.5067,-0.4266],[117.5075,-0.4204],[117.5124,-0.4164],[117.5139,-0.4126],[117.5084,-0.4047],[117.5065,-0.3992],[117.5156,-0.3955],[117.5308,-0.3952],[117.533,-0.393],[117.5336,-0.3855],[117.5295,-0.3833],[117.5294,-0.3763],[117.5354,-0.3777],[117.5335,-0.3838],[117.5353,-0.3874],[117.5408,-0.3822],[117.5532,-0.3754],[117.5595,-0.3711],[117.5603,-0.3668],[117.5542,-0.3616],[117.5447,-0.3492],[117.5359,-0.3467]],[[117.4892,-0.3291],[117.4778,-0.329],[117.4734,-0.331],[117.4668,-0.3379],[117.4604,-0.3476],[117.4583,-0.3536],[117.4628,-0.3585],[117.4656,-0.364],[117.4675,-0.3749],[117.4639,-0.3833],[117.4602,-0.3883],[117.4515,-0.3867],[117.4439,-0.381],[117.4371,-0.3809],[117.4393,-0.3904],[117.4349,-0.3966],[117.4309,-0.3974],[117.4341,-0.4047],[117.432,-0.4142],[117.4391,-0.4199],[117.4391,-0.424],[117.4341,-0.4291],[117.4262,-0.4293],[117.427,-0.4335],[117.4337,-0.4338],[117.4385,-0.438],[117.4437,-0.4366],[117.4446,-0.4407],[117.451,-0.4408],[117.4532,-0.438],[117.4558,-0.4242],[117.4721,-0.3973],[117.4804,-0.3797],[117.4857,-0.3656],[117.4941,-0.3457],[117.4924,-0.3411],[117.4918,-0.3291],[117.4892,-0.3291]],[[117.3702,0.022],[117.3709,0.0186],[117.3735,0.0159]],[[117.3735,0.0159],[117.3775,0.0117],[117.3816,0.0121]],[[117.3816,0.0121],[117.3849,0.0125],[117.3927,0.007],[117.3969,-0.0044],[117.397,-0.008]],[[117.397,-0.008],[117.3971,-0.0095],[117.3993,-0.0098]],[[117.3993,-0.0098],[117.4091,-0.0109],[117.4118,-0.0156]],[[117.4118,-0.0156],[117.4127,-0.0172],[117.4133,-0.017]],[[117.4133,-0.017],[117.4212,-0.0142],[117.4242,-0.0173]],[[117.4242,-0.0173],[117.4273,-0.0205],[117.4274,-0.0205]],[[117.4274,-0.0205],[117.4338,-0.021],[117.4361,-0.0186],[117.4401,-0.0311],[117.4361,-0.0346],[117.4433,-0.0422],[117.4483,-0.0427],[117.4485,-0.0438]],[[117.4485,-0.0438],[117.4489,-0.0465],[117.4524,-0.0474]],[[117.4524,-0.0474],[117.4539,-0.0478],[117.4578,-0.051],[117.4638,-0.0522],[117.4692,-0.0506],[117.4732,-0.0463],[117.478,-0.0485],[117.4805,-0.0427],[117.4854,-0.0395],[117.4913,-0.0392],[117.4941,-0.0422],[117.5015,-0.0383],[117.5082,-0.0317],[117.5123,-0.0322],[117.5177,-0.03],[117.5184,-0.0259],[117.5146,-0.0119],[117.511,-0.0049],[117.5083,-0.0036],[117.5038,0.0048],[117.5064,0.0176]],[[117.022,-1.1403],[117.0326,-1.1303],[117.0428,-1.1234],[117.0466,-1.1226],[117.0516,-1.1185],[117.055,-1.1129],[117.0652,-1.1055],[117.0677,-1.0972],[117.0707,-1.0956],[117.0768,-1.0878],[117.0785,-1.0832],[117.0983,-1.0581],[117.1005,-1.0492],[117.1065,-1.0414],[117.1101,-1.0331],[117.1165,-1.0258],[117.1174,-1.0201],[117.1301,-1.0067],[117.1353,-0.9998],[117.1409,-0.995],[117.1497,-0.9802],[117.1555,-0.974],[117.156,-0.9707],[117.1624,-0.9651],[117.1645,-0.9601],[117.1752,-0.9487],[117.1771,-0.9449],[117.1879,-0.9375],[117.2046,-0.9281],[117.2299,-0.9171],[117.2441,-0.912],[117.249,-0.9063],[117.2483,-0.9022],[117.2496,-0.8949],[117.25,-0.8665],[117.2513,-0.8453],[117.25,-0.8375],[117.2507,-0.8255],[117.2533,-0.8113],[117.2484,-0.8052],[117.2445,-0.8029],[117.2337,-0.8004],[117.2181,-0.8011],[117.2108,-0.8003],[117.2031,-0.7942],[117.197,-0.7949],[117.1907,-0.7926],[117.1855,-0.7854],[117.1805,-0.7825],[117.1839,-0.7789],[117.1918,-0.7895],[117.1965,-0.789],[117.2095,-0.792],[117.2178,-0.7971],[117.225,-0.7939],[117.2342,-0.7939],[117.2451,-0.7981],[117.2554,-0.8039],[117.2622,-0.8046],[117.2649,-0.8075],[117.2701,-0.8056],[117.2776,-0.7986],[117.2807,-0.7939],[117.2822,-0.7869],[117.2753,-0.7782],[117.2685,-0.7671],[117.2569,-0.7569],[117.2497,-0.7545],[117.2376,-0.7458],[117.2303,-0.7434],[117.2246,-0.7382],[117.2343,-0.7266],[117.2399,-0.7244],[117.2438,-0.7207],[117.2462,-0.7145],[117.251,-0.7096],[117.2585,-0.7078],[117.277,-0.7016],[117.2786,-0.698],[117.2863,-0.6936],[117.2892,-0.6904],[117.2887,-0.6853],[117.2936,-0.6808],[117.304,-0.6686],[117.3022,-0.648],[117.2965,-0.6199],[117.2913,-0.6064],[117.2856,-0.5977]],[[117.2392,-0.5666],[117.2402,-0.5699],[117.2495,-0.5705],[117.2686,-0.5759],[117.281,-0.5775],[117.306,-0.5718],[117.3122,-0.5678],[117.3312,-0.579],[117.3359,-0.5801],[117.3483,-0.5804],[117.3479,-0.5751],[117.3539,-0.5726],[117.3646,-0.5702],[117.3755,-0.5639],[117.3805,-0.5589],[117.3843,-0.552],[117.3945,-0.5452],[117.411,-0.5398],[117.4156,-0.5302],[117.4243,-0.5219],[117.4326,-0.5103],[117.4386,-0.4958],[117.4367,-0.4847],[117.4309,-0.4827],[117.4306,-0.4806]],[[117.4306,-0.4806],[117.4305,-0.48]],[[117.4305,-0.48],[117.43,-0.477],[117.4352,-0.4756],[117.4353,-0.4754]],[[117.4353,-0.4754],[117.4379,-0.472]],[[117.4379,-0.472],[117.4389,-0.4707],[117.4362,-0.4639],[117.4359,-0.4581],[117.4378,-0.4571]],[[117.4378,-0.4571],[117.4403,-0.4558]],[[117.4403,-0.4558],[117.4412,-0.4553],[117.4442,-0.4503],[117.45,-0.4464],[117.4488,-0.4438],[117.439,-0.4396],[117.4342,-0.4351],[117.4249,-0.4343],[117.4249,-0.4287],[117.4283,-0.4266],[117.4355,-0.4269],[117.4379,-0.421],[117.4364,-0.4178],[117.431,-0.4156],[117.4304,-0.4112],[117.4324,-0.4059],[117.4281,-0.3988],[117.4294,-0.3947],[117.4373,-0.3902],[117.4347,-0.3855],[117.4361,-0.3803],[117.4414,-0.3786],[117.4501,-0.3816],[117.4551,-0.3867],[117.4596,-0.3863],[117.462,-0.3827],[117.4647,-0.3725],[117.4615,-0.3624],[117.4576,-0.3608],[117.4526,-0.3549],[117.4511,-0.3455],[117.452,-0.3396],[117.4466,-0.3221],[117.4475,-0.3151],[117.4517,-0.3033],[117.4416,-0.2968],[117.4278,-0.2776],[117.4236,-0.2684],[117.422,-0.2576],[117.4184,-0.25],[117.4151,-0.2295],[117.4204,-0.2126],[117.4278,-0.2068],[117.4373,-0.2076],[117.429,-0.2146],[117.4298,-0.2196],[117.4392,-0.2097],[117.4438,-0.2022],[117.4443,-0.1855],[117.4455,-0.1793],[117.4578,-0.152],[117.4591,-0.1456],[117.4652,-0.128],[117.468,-0.1227],[117.4706,-0.1108],[117.474,-0.1033],[117.4731,-0.0962],[117.4755,-0.0873],[117.4759,-0.0805],[117.4791,-0.0769],[117.4811,-0.0701],[117.4853,-0.0652],[117.4887,-0.0656],[117.4998,-0.0575],[117.5114,-0.0427],[117.5147,-0.0337],[117.5065,-0.0366],[117.5031,-0.0403],[117.4936,-0.0426],[117.4888,-0.0404],[117.4872,-0.0439],[117.4786,-0.0489],[117.4634,-0.0523],[117.4577,-0.0551],[117.4554,-0.0501],[117.4524,-0.0474]],[[117.4524,-0.0474],[117.4485,-0.0438]],[[117.4485,-0.0438],[117.4481,-0.0435],[117.4427,-0.0424],[117.435,-0.0358],[117.438,-0.0284],[117.4357,-0.0203],[117.4293,-0.0234],[117.4274,-0.0205]],[[117.4274,-0.0205],[117.4255,-0.0175],[117.4242,-0.0173]],[[117.4242,-0.0173],[117.4199,-0.0168],[117.4145,-0.018],[117.4133,-0.017]],[[117.4133,-0.017],[117.4118,-0.0156]],[[117.4118,-0.0156],[117.408,-0.0122],[117.4016,-0.0116],[117.3993,-0.0098]],[[117.3993,-0.0098],[117.397,-0.008]],[[117.397,-0.008],[117.3958,-0.007],[117.3964,-0.0032],[117.3912,0],[117.3913,0.0035],[117.3876,0.01],[117.3816,0.0121]],[[117.3816,0.0121],[117.3752,0.0144],[117.3735,0.0159]],[[117.3735,0.0159],[117.3706,0.0184],[117.3698,0.0222]]]}},{"type":"Feature","properties":{"mhid":"1332:368","alt_name":"KABUPATEN KUTAI TIMUR","latitude":1.03769,"longitude":117.83112,"sample_value":177},"geometry":{"type":"MultiLineString","coordinates":[[[118.0131,0.7444],[118.0088,0.7459],[118.0047,0.7391],[117.9972,0.7352],[117.9977,0.7289],[118.0042,0.7162],[118.0138,0.7117],[118.0218,0.7225],[118.022,0.736],[118.0166,0.7458],[118.0131,0.7444]],[[118.4907,0.7674],[118.4892,0.7723],[118.4849,0.7728],[118.4837,0.7665],[118.4907,0.7674]],[[118.0461,0.7711],[118.046,0.7768],[118.0419,0.7827],[118.0389,0.7805],[118.0387,0.7751],[118.0426,0.771],[118.0461,0.7711]],[[118.0287,0.8822],[118.0272,0.8889],[118.018,0.8953],[118.0161,0.8906],[118.0234,0.882],[118.0287,0.8822]],[[118.0085,0.9001],[118.0098,0.9047],[118.0071,0.9154],[118.0079,0.9275],[117.9972,0.9341],[117.9931,0.9301],[117.9923,0.9221],[118.0028,0.899],[118.0085,0.9001]],[[118.0069,0.9635],[118.0036,0.9687],[118.0028,0.9741],[118.0051,0.9825],[118.0047,0.9875],[117.9986,0.9902],[118.0005,0.9799],[117.9972,0.9743],[117.9967,0.9693],[117.9988,0.9654],[118.0039,0.9618],[118.0069,0.9635]],[[117.9548,1.0459],[117.9483,1.0532],[117.9407,1.0567],[117.9367,1.0569],[117.9353,1.0502],[117.9383,1.0483],[117.9389,1.0426],[117.9463,1.0351],[117.9483,1.0231],[117.9507,1.0151],[117.954,1.0098],[117.9597,1.0057],[117.9656,0.9921],[117.9709,0.9839],[117.9749,0.9824],[117.9783,0.9745],[117.9842,0.9735],[117.9876,0.977],[117.9846,0.9878],[117.9797,0.9953],[117.9803,1.0008],[117.9746,1.0118],[117.9777,1.0163],[117.9746,1.0231],[117.9638,1.0359],[117.9609,1.0351],[117.956,1.0408],[117.9548,1.0459]],[[117.9188,1.0926],[117.9174,1.0977],[117.909,1.1074],[117.908,1.1035],[117.9138,1.0943],[117.9188,1.0926]],[[117.3698,0.0222],[117.3702,0.022]],[[117.5051,0.2069],[117.5047,0.2103],[117.5061,0.2139],[117.5087,0.215],[117.5163,0.2122],[117.5215,0.2132],[117.5219,0.2174],[117.5285,0.2222],[117.5276,0.2283],[117.5252,0.2311],[117.5268,0.2381],[117.5168,0.2451],[117.517,0.2475],[117.5244,0.2538],[117.5305,0.2563],[117.5275,0.2617],[117.5222,0.2645],[117.519,0.2787],[117.5248,0.2801],[117.5294,0.287],[117.5338,0.2895],[117.5289,0.2998],[117.5299,0.3075],[117.5271,0.3132],[117.53,0.3226],[117.5333,0.3246],[117.5366,0.3178],[117.544,0.3197],[117.5504,0.3293],[117.5531,0.3367],[117.5517,0.3515],[117.5535,0.3555],[117.5533,0.3631],[117.5552,0.3653],[117.5634,0.3854],[117.5671,0.393],[117.5643,0.4077],[117.5584,0.4083],[117.5582,0.4148],[117.5651,0.4175],[117.5641,0.4204],[117.5574,0.4191],[117.5535,0.4224],[117.5627,0.4251],[117.5676,0.4236],[117.5763,0.4136],[117.5734,0.4119],[117.5741,0.4065],[117.5849,0.4055],[117.5991,0.4156],[117.6029,0.4175],[117.6131,0.4343],[117.6133,0.4387],[117.6098,0.4445],[117.6058,0.4474],[117.6013,0.4669],[117.6011,0.4755],[117.6052,0.4895],[117.6077,0.4908],[117.6213,0.5056],[117.6285,0.5062],[117.6348,0.5161],[117.632,0.5236],[117.6444,0.5361],[117.6466,0.5464],[117.6505,0.5522],[117.649,0.5557],[117.6518,0.5613],[117.6613,0.5646],[117.6588,0.5805],[117.6663,0.5898],[117.6688,0.6077],[117.6753,0.6189],[117.687,0.6238],[117.7088,0.6262],[117.7115,0.628],[117.7145,0.6373],[117.7144,0.6428],[117.7107,0.6577],[117.7105,0.6871],[117.713,0.7004],[117.7234,0.7171],[117.7331,0.7254],[117.7422,0.7426],[117.7511,0.7563],[117.7704,0.7708],[117.7784,0.7743],[117.7973,0.7866],[117.7996,0.7893],[117.8135,0.7976],[117.8235,0.8024],[117.8373,0.8074],[117.8426,0.8079],[117.8528,0.8112],[117.8656,0.8121],[117.8692,0.8086],[117.8724,0.8104],[117.8716,0.8178],[117.8725,0.8236],[117.8803,0.8278],[117.8844,0.8283],[117.89,0.8317],[117.9011,0.8323],[117.9138,0.836],[117.9162,0.8355],[117.9215,0.824],[117.9208,0.8167],[117.9267,0.805],[117.9352,0.8027],[117.9422,0.798],[117.9591,0.7934],[117.9627,0.7825],[117.9676,0.7768],[117.9758,0.7725],[117.9812,0.777],[117.99,0.7749],[118.0122,0.7762],[118.0176,0.7791],[118.0245,0.7782],[118.0282,0.78],[118.0295,0.7847],[118.0276,0.791],[118.0298,0.7996],[118.022,0.8058],[118.0194,0.8158],[118.027,0.8287],[118.027,0.832],[118.0196,0.8495],[118.0206,0.8545],[118.0188,0.8656],[118.0117,0.8836],[117.9995,0.8924],[117.9887,0.9124],[117.9867,0.9196],[117.9783,0.9292],[117.9783,0.944],[117.9727,0.9484],[117.9687,0.9592],[117.9715,0.9804],[117.9639,0.9856],[117.9588,1.0054],[117.9511,1.0096],[117.9447,1.0216],[117.9447,1.0312],[117.9407,1.0364],[117.9295,1.0372],[117.9279,1.0436],[117.9243,1.048],[117.9335,1.0494],[117.9319,1.0537],[117.9255,1.0528],[117.9219,1.056],[117.9191,1.0641],[117.9037,1.0726],[117.9016,1.0801],[117.8968,1.0826],[117.8885,1.0895],[117.892,1.0957],[117.8914,1.106],[117.9019,1.1124],[117.9155,1.1052],[117.9249,1.1046],[117.9439,1.0896],[117.9507,1.0796],[117.9591,1.0748],[117.9663,1.0692],[117.9756,1.0659],[117.9843,1.0592],[117.9843,1.0484],[117.9871,1.0356],[117.9915,1.0292],[117.9959,1.02],[117.9935,1.0084],[117.9907,1],[117.9975,0.994],[118.0075,0.9876],[118.0046,0.9742],[118.0099,0.9648],[118.0079,0.9616],[118.0131,0.9536],[118.0215,0.9476],[118.0266,0.9518],[118.0327,0.9492],[118.0451,0.9472],[118.0503,0.9424],[118.0559,0.9352],[118.0555,0.9236],[118.0511,0.9132],[118.0612,0.9083],[118.0638,0.903],[118.087,0.8972],[118.0977,0.8934],[118.1162,0.8882],[118.1213,0.8885],[118.1348,0.8844],[118.152,0.8811],[118.1565,0.8786],[118.1697,0.8771],[118.1993,0.8701],[118.2047,0.8675],[118.2394,0.8623],[118.2634,0.8579],[118.3094,0.851],[118.3214,0.8479],[118.3386,0.841],[118.3412,0.8383],[118.3426,0.832],[118.3402,0.8287],[118.3393,0.8196],[118.3412,0.8149],[118.3462,0.8107],[118.3544,0.8068],[118.3689,0.8031],[118.382,0.8044],[118.39,0.8086],[118.4014,0.8169],[118.4059,0.8211],[118.4151,0.8197],[118.4167,0.8224],[118.4128,0.8284],[118.4157,0.8323],[118.4236,0.8361],[118.4378,0.834],[118.4444,0.8415],[118.4539,0.8401],[118.4561,0.8337],[118.4652,0.8311],[118.4813,0.8311],[118.4851,0.8273],[118.4955,0.8221],[118.5059,0.8213],[118.5173,0.8157],[118.5248,0.8135],[118.5359,0.8136],[118.5564,0.8151],[118.5687,0.8175],[118.5757,0.814],[118.5854,0.8139],[118.5868,0.8104],[118.6033,0.8212],[118.6083,0.826],[118.6089,0.8294],[118.6171,0.8349],[118.6209,0.8395],[118.6215,0.8433],[118.6302,0.843],[118.6314,0.8491],[118.6388,0.8447],[118.6527,0.8462],[118.6597,0.851],[118.6636,0.8556],[118.6703,0.8596],[118.6762,0.8586],[118.6832,0.8514],[118.6971,0.8444],[118.6978,0.842],[118.7047,0.8365],[118.7088,0.8303],[118.7063,0.8195],[118.7102,0.8146],[118.7139,0.8202],[118.7254,0.8239],[118.7366,0.8201],[118.7421,0.814],[118.7472,0.8123],[118.7545,0.8076],[118.7631,0.8059],[118.7811,0.8081],[118.7861,0.8064],[118.787,0.8115],[118.7956,0.8113],[118.7938,0.8062],[118.7959,0.8024],[118.8077,0.8131],[118.8078,0.8177],[118.8129,0.818],[118.8165,0.8206],[118.8139,0.825],[118.8178,0.83],[118.8213,0.8275],[118.8249,0.832],[118.8233,0.8356],[118.8265,0.8428],[118.8342,0.8466],[118.8453,0.8594],[118.8507,0.8669],[118.8494,0.8742],[118.8571,0.8771],[118.8617,0.8749],[118.8638,0.8791],[118.8835,0.8723],[118.8925,0.8745],[118.8955,0.877],[118.899,0.885],[118.9012,0.8954],[118.907,0.9034],[118.9113,0.9056],[118.916,0.9054],[118.9165,0.9093],[118.92,0.9128],[118.9275,0.9122],[118.9338,0.9162],[118.9459,0.9302],[118.9517,0.9336],[118.9552,0.9384],[118.9587,0.9389],[118.964,0.9431],[118.9706,0.9571],[118.9734,0.9667],[118.9815,0.9744],[118.9814,0.9789],[118.9895,0.9895],[118.9858,0.9943],[118.9813,1.0049],[118.9813,1.0116],[118.9888,1.0213],[118.9847,1.03]]]}},{"type":"Feature","properties":{"mhid":"1332:369","alt_name":"KABUPATEN BERAU","latitude":2,"longitude":117.3,"sample_value":681},"geometry":{"type":"MultiLineString","coordinates":[[[118.846,1.1133],[118.8446,1.1199],[118.8378,1.1205],[118.8363,1.1159],[118.846,1.1133]],[[118.5337,1.3932],[118.5324,1.3877],[118.5393,1.3895],[118.5337,1.3932]],[[118.4502,1.3947],[118.4463,1.3954],[118.4386,1.3932],[118.4412,1.3827],[118.4446,1.3802],[118.4521,1.386],[118.4502,1.3947]],[[118.4766,1.4536],[118.4721,1.4534],[118.4668,1.4505],[118.4693,1.444],[118.4784,1.4384],[118.4806,1.4304],[118.4747,1.4309],[118.4663,1.425],[118.4696,1.4099],[118.4735,1.4016],[118.4789,1.3964],[118.4819,1.3908],[118.4881,1.3869],[118.496,1.3852],[118.4997,1.3811],[118.5047,1.3804],[118.5142,1.3849],[118.5243,1.3851],[118.5295,1.3875],[118.5285,1.3921],[118.5231,1.3943],[118.5202,1.3925],[118.5162,1.3964],[118.5159,1.4048],[118.5108,1.4068],[118.5106,1.4108],[118.4999,1.4115],[118.4939,1.4201],[118.4974,1.4265],[118.4924,1.4391],[118.4945,1.4436],[118.4865,1.4448],[118.481,1.4433],[118.4837,1.4505],[118.4793,1.4544],[118.4766,1.4536]],[[118.4685,1.4662],[118.458,1.462],[118.4623,1.4505],[118.4659,1.4508],[118.4717,1.456],[118.4693,1.4596],[118.4685,1.4662]],[[118.9448,1.7709],[118.9429,1.7735],[118.9315,1.7812],[118.9335,1.774],[118.9448,1.7709]],[[117.8761,1.9724],[117.8731,1.9719],[117.8643,1.9655],[117.8565,1.9583],[117.849,1.9574],[117.8448,1.9545],[117.8432,1.9494],[117.8384,1.9505],[117.8367,1.954],[117.8292,1.9534],[117.8281,1.9553]],[[117.8281,1.9553],[117.8276,1.9561],[117.8244,1.9577]],[[117.8244,1.9577],[117.8196,1.9601],[117.8176,1.9555],[117.822,1.9506],[117.8273,1.9497],[117.8276,1.9396],[117.8265,1.9358],[117.831,1.9241],[117.8348,1.9198],[117.836,1.9117],[117.8425,1.9085],[117.8467,1.9],[117.8599,1.8928],[117.8697,1.9043],[117.8713,1.9169],[117.8706,1.9286],[117.871,1.9476],[117.8768,1.9718],[117.8761,1.9724]],[[118.8174,1.9577],[118.8259,1.9628],[118.8304,1.9715],[118.8249,1.9713],[118.8188,1.9656],[118.8174,1.9577]],[[117.8491,1.9857],[117.8458,1.989],[117.8447,1.9951],[117.8407,2.003],[117.8365,2.0083],[117.8306,2.0099],[117.8258,2.0075],[117.8242,2.0008],[117.8206,1.9965],[117.8216,1.9875],[117.8197,1.9858],[117.8133,1.9874]],[[117.8133,1.9874],[117.8119,1.9877],[117.8117,1.9876]],[[117.8117,1.9876],[117.8077,1.9845]],[[117.8077,1.9845],[117.8074,1.9843],[117.8077,1.9842]],[[117.8077,1.9842],[117.8137,1.9815],[117.8145,1.9778]],[[117.8145,1.9778],[117.8157,1.9725]],[[117.8157,1.9725],[117.8162,1.97],[117.8209,1.9657],[117.8244,1.9577]],[[117.8244,1.9577],[117.8281,1.9553]],[[117.8281,1.9553],[117.8302,1.9539],[117.8369,1.9546],[117.8433,1.9505],[117.8443,1.9554],[117.8479,1.9586],[117.8573,1.9606],[117.8625,1.9668],[117.8584,1.9742],[117.8507,1.9825],[117.8491,1.9857]],[[117.8829,2.0532],[117.8784,2.0563],[117.8765,2.0549]],[[117.8765,2.0549],[117.874,2.053],[117.8722,2.0501]],[[117.8722,2.0501],[117.8703,2.0469],[117.8632,2.0426],[117.8641,2.0369],[117.8608,2.0353]],[[117.8608,2.0353],[117.8603,2.035]],[[117.8603,2.035],[117.8588,2.0343],[117.8524,2.0379],[117.8444,2.0381],[117.8441,2.0272],[117.8459,2.0246],[117.8593,2.0241],[117.8698,2.0314],[117.8758,2.0331],[117.8839,2.0399],[117.8829,2.0532]],[[117.8564,2.0778],[117.8479,2.0812],[117.8419,2.0854],[117.833,2.0953],[117.8293,2.0958],[117.8133,2.0899],[117.8102,2.0862],[117.8127,2.0814],[117.8192,2.0811],[117.8234,2.0787],[117.8237,2.0759]],[[117.8237,2.0759],[117.8241,2.0721],[117.8213,2.0664],[117.816,2.0599],[117.8055,2.0557]],[[117.8055,2.0557],[117.8054,2.0557],[117.8054,2.0555]],[[117.8054,2.0555],[117.8063,2.0467],[117.803,2.041],[117.8034,2.0362],[117.8017,2.0263],[117.8082,2.0268],[117.8119,2.0293],[117.826,2.0325],[117.8326,2.0354],[117.8427,2.0419],[117.8457,2.0397],[117.8555,2.0379],[117.8603,2.035]],[[117.8603,2.035],[117.8604,2.035],[117.8608,2.0353]],[[117.8608,2.0353],[117.8637,2.0374],[117.8625,2.0442],[117.8694,2.0469],[117.8722,2.0501]],[[117.8722,2.0501],[117.8765,2.0549]],[[117.8765,2.0549],[117.8783,2.0569],[117.8825,2.0564],[117.8853,2.0459],[117.8842,2.0412],[117.892,2.038],[117.9018,2.0414],[117.9062,2.04],[117.9107,2.0452],[117.9105,2.0524],[117.9057,2.0561],[117.8989,2.0559],[117.8894,2.0629],[117.8771,2.0699],[117.8564,2.0778]],[[117.7776,2.0836],[117.778,2.092],[117.775,2.0969],[117.7713,2.099],[117.7655,2.099],[117.7552,2.0952],[117.7424,2.0867],[117.7356,2.0837],[117.7292,2.0841],[117.7242,2.0796],[117.7142,2.0795],[117.7124,2.0759],[117.7202,2.0682],[117.722,2.0621],[117.7179,2.0552],[117.7076,2.0524],[117.7055,2.0503],[117.7144,2.0326],[117.7165,2.0325],[117.7211,2.0392],[117.7241,2.0466],[117.7328,2.0521],[117.7415,2.0521],[117.7469,2.049],[117.7516,2.0429],[117.7545,2.0331],[117.7607,2.0258],[117.7696,2.022],[117.7847,2.022],[117.798,2.0281],[117.8012,2.0378],[117.7982,2.04],[117.7891,2.0345],[117.7858,2.0383],[117.7859,2.047],[117.7799,2.0509],[117.7761,2.0473],[117.7721,2.0479],[117.7705,2.052],[117.7639,2.049],[117.7609,2.0533],[117.7573,2.053],[117.7522,2.0561],[117.7511,2.0629],[117.7545,2.0665],[117.7562,2.0722],[117.7611,2.0732],[117.7632,2.0707]],[[117.7632,2.0707],[117.7665,2.0667],[117.7675,2.0664]],[[117.7675,2.0664],[117.769,2.066],[117.7739,2.0695]],[[117.7739,2.0695],[117.7784,2.0727]],[[117.7784,2.0727],[117.7788,2.073],[117.7794,2.0794],[117.7776,2.0836]],[[117.8275,2.0962],[117.8307,2.0968],[117.8287,2.1037],[117.8258,2.107],[117.8123,2.1103],[117.7996,2.1108],[117.7956,2.1097],[117.7905,2.0994],[117.787,2.0971],[117.7762,2.0967],[117.7785,2.092],[117.7782,2.084],[117.78,2.0806],[117.7798,2.0727],[117.7784,2.0727]],[[117.7784,2.0727],[117.775,2.0727],[117.7739,2.0695]],[[117.7739,2.0695],[117.7738,2.0692],[117.7688,2.0651],[117.7675,2.0664]],[[117.7675,2.0664],[117.7635,2.0706],[117.7632,2.0707]],[[117.7632,2.0707],[117.7566,2.072],[117.7545,2.0654],[117.752,2.0635],[117.7521,2.0581],[117.7568,2.0544],[117.761,2.0543],[117.7639,2.05],[117.7708,2.0554],[117.7741,2.048],[117.7804,2.0525],[117.7864,2.0485],[117.7871,2.0377],[117.789,2.0359],[117.7973,2.0411],[117.8015,2.0419],[117.8053,2.0473],[117.8047,2.0538],[117.8054,2.0555]],[[117.8054,2.0555],[117.8055,2.0557]],[[117.8055,2.0557],[117.8063,2.0577],[117.815,2.0601],[117.8199,2.0654],[117.8237,2.0759]],[[117.8237,2.0759],[117.8189,2.0803],[117.8135,2.0795],[117.8091,2.0846],[117.8098,2.0884],[117.8275,2.0962]],[[117.7832,2.099],[117.7888,2.1023],[117.7892,2.1093],[117.784,2.1128],[117.7777,2.1195],[117.7672,2.1183]],[[117.7672,2.1183],[117.767,2.1183],[117.767,2.1182]],[[117.767,2.1182],[117.7715,2.1049],[117.7766,2.101],[117.7832,2.099]],[[118.3315,2.1292],[118.3316,2.138],[118.3243,2.1382],[118.3233,2.1347],[118.3261,2.1309],[118.3315,2.1292]],[[117.8975,2.0795],[117.9019,2.08],[117.9106,2.084],[117.9144,2.0888],[117.9045,2.0953],[117.898,2.1035],[117.8976,2.1099],[117.9,2.1232],[117.8924,2.1311],[117.8802,2.1394],[117.8645,2.1454],[117.8599,2.1417],[117.8565,2.1344],[117.8505,2.1286],[117.8388,2.1225],[117.8333,2.1167],[117.8321,2.1124],[117.8419,2.1018],[117.8514,2.0941],[117.8642,2.0861],[117.8722,2.0828],[117.8879,2.0797],[117.8975,2.0795]],[[117.8826,2.1586],[117.8753,2.1578],[117.8746,2.1544],[117.8811,2.1546],[117.8826,2.1586]],[[118.5229,2.1605],[118.5185,2.16],[118.5129,2.1568],[118.5107,2.1535],[118.5043,2.1345],[118.5165,2.1384],[118.5263,2.1381],[118.5396,2.1346],[118.5576,2.1175],[118.562,2.1205],[118.5587,2.1264],[118.546,2.1412],[118.538,2.1534],[118.5371,2.159],[118.5318,2.1605],[118.5229,2.1605]],[[117.8038,2.1651],[117.8018,2.1766],[117.7965,2.1804],[117.7845,2.1821],[117.7796,2.1809],[117.7758,2.1714],[117.7679,2.1647],[117.7609,2.165],[117.7515,2.1691],[117.7394,2.1692],[117.7312,2.1681],[117.721,2.1636],[117.7135,2.1619],[117.7193,2.154],[117.7237,2.1505],[117.7279,2.1396],[117.7295,2.1307],[117.729,2.1225],[117.7261,2.1084],[117.7263,2.103],[117.7301,2.0893],[117.7339,2.086],[117.7416,2.093],[117.7496,2.0984],[117.7645,2.1036],[117.7711,2.1038],[117.7689,2.1079],[117.7662,2.1177],[117.767,2.1182]],[[117.767,2.1182],[117.7672,2.1183]],[[117.7672,2.1183],[117.7733,2.1223],[117.7796,2.121],[117.7879,2.1132],[117.7909,2.1133],[117.8024,2.1207],[117.8016,2.1269],[117.803,2.1386],[117.8042,2.1572],[117.8038,2.1651]],[[117.7745,2.1723],[117.7768,2.1805],[117.7526,2.1844],[117.7411,2.1839],[117.7304,2.1818],[117.7204,2.1775],[117.7084,2.171],[117.7075,2.1691],[117.7147,2.1646],[117.7211,2.1648],[117.7296,2.1695],[117.7369,2.1715],[117.7537,2.17],[117.7633,2.1657],[117.7681,2.166],[117.7745,2.1723]],[[117.8849,2.1894],[117.8703,2.1883],[117.8709,2.1857],[117.8782,2.1825],[117.8853,2.177],[117.8921,2.1682],[117.8972,2.167],[117.8954,2.1743],[117.8923,2.1802],[117.8899,2.1884],[117.8849,2.1894]],[[117.8391,2.1904],[117.8287,2.1906],[117.8297,2.1834],[117.8385,2.1794],[117.8454,2.169],[117.8538,2.1656],[117.8664,2.1573],[117.8718,2.1575],[117.8834,2.1606],[117.8844,2.1625],[117.8818,2.1754],[117.8715,2.1794],[117.8652,2.1833],[117.8541,2.1873],[117.8391,2.1904]],[[117.8745,2.1528],[117.8672,2.1542],[117.842,2.1696],[117.8399,2.1749],[117.8351,2.18],[117.8293,2.1821],[117.8271,2.1906],[117.8146,2.1918],[117.8112,2.1909],[117.8021,2.1838],[117.8017,2.1819],[117.8076,2.1697],[117.8086,2.1611],[117.8081,2.1491],[117.8091,2.1453],[117.8094,2.1325],[117.8106,2.1229],[117.8128,2.1207],[117.8297,2.1173],[117.844,2.1288],[117.8528,2.1331],[117.859,2.1449],[117.8666,2.1478],[117.8803,2.1426],[117.8935,2.1341],[117.9005,2.1276],[117.9041,2.1217],[117.9048,2.1166],[117.9014,2.1073],[117.9082,2.0993],[117.9131,2.0985],[117.9235,2.1035],[117.9331,2.1065],[117.9484,2.1139],[117.9553,2.118],[117.9574,2.1222],[117.9561,2.1289],[117.9466,2.135],[117.9386,2.1371],[117.9192,2.1407],[117.905,2.1462],[117.8903,2.1542],[117.8745,2.1528]],[[117.9192,2.1574],[117.9255,2.1657],[117.927,2.1723],[117.923,2.1824],[117.9142,2.1952],[117.9055,2.2057],[117.9017,2.2036],[117.8997,2.1959],[117.8927,2.189],[117.8952,2.1826],[117.9054,2.1649],[117.9097,2.1604],[117.9162,2.1562],[117.9192,2.1574]],[[118.5708,2.3102],[118.5686,2.3099],[118.5617,2.3007],[118.5616,2.2886],[118.5588,2.2761],[118.5622,2.271],[118.5613,2.2478],[118.566,2.2353],[118.5708,2.2293],[118.5771,2.2235],[118.578,2.22],[118.5863,2.2079],[118.5904,2.2047],[118.597,2.1936],[118.6052,2.1875],[118.6087,2.192],[118.6141,2.184],[118.6189,2.1798],[118.6252,2.1801],[118.6319,2.1754],[118.642,2.1715],[118.6366,2.1792],[118.6239,2.1859],[118.616,2.1932],[118.6106,2.1996],[118.6056,2.2076],[118.5999,2.2089],[118.5894,2.2162],[118.585,2.2229],[118.579,2.2356],[118.5765,2.2376],[118.5695,2.2525],[118.567,2.2596],[118.5673,2.2647],[118.5638,2.2733],[118.5654,2.2809],[118.5648,2.2886],[118.567,2.2924],[118.5667,2.2994],[118.5689,2.3032],[118.5724,2.3032],[118.5772,2.2997],[118.5857,2.2838],[118.5895,2.2806],[118.5917,2.2748],[118.6038,2.2662],[118.6129,2.2621],[118.6183,2.2576],[118.6215,2.2515],[118.6322,2.2483],[118.6367,2.2499],[118.6338,2.2547],[118.6224,2.2595],[118.6076,2.2691],[118.6031,2.2748],[118.5974,2.279],[118.5876,2.2914],[118.5829,2.2991],[118.5708,2.3102]],[[118.2163,2.3515],[118.2179,2.3565],[118.2144,2.3623],[118.205,2.3725],[118.1995,2.3818],[118.1948,2.3793],[118.1941,2.3736],[118.1988,2.3682],[118.2028,2.3586],[118.2133,2.347],[118.2163,2.3515]],[[118.9847,1.03],[118.9807,1.038],[118.9736,1.0359],[118.9657,1.0376],[118.9585,1.0442],[118.9539,1.051],[118.9489,1.0536],[118.9461,1.0585],[118.9397,1.0595],[118.9327,1.0588],[118.9179,1.0649],[118.9084,1.0646],[118.8901,1.0668],[118.884,1.066],[118.8734,1.0678],[118.8682,1.0636],[118.8599,1.0529],[118.8541,1.0483],[118.8455,1.0469],[118.8399,1.0491],[118.8354,1.0536],[118.8366,1.058],[118.8328,1.0617],[118.8326,1.0656],[118.8367,1.0722],[118.8324,1.0769],[118.8279,1.0881],[118.8279,1.0939],[118.8305,1.0984],[118.8227,1.1051],[118.813,1.1099],[118.8121,1.1125],[118.8063,1.1158],[118.8044,1.1116],[118.7965,1.1157],[118.7977,1.1224],[118.7935,1.1226],[118.7817,1.1294],[118.7771,1.1336],[118.78,1.1406],[118.7871,1.1321],[118.795,1.1313],[118.7906,1.1372],[118.7869,1.1389],[118.7777,1.1531],[118.7682,1.1503],[118.7629,1.1525],[118.7572,1.1512],[118.7533,1.1523],[118.7495,1.1493],[118.7368,1.1508],[118.7357,1.154],[118.7311,1.1575],[118.7404,1.159],[118.7476,1.1577],[118.7571,1.1615],[118.7645,1.1617],[118.7691,1.1663],[118.7695,1.1826],[118.7676,1.1951],[118.7652,1.1996],[118.7547,1.212],[118.7421,1.2208],[118.7238,1.2355],[118.7177,1.242],[118.7115,1.2519],[118.7034,1.2553],[118.6969,1.2624],[118.6884,1.2638],[118.6824,1.2678],[118.6767,1.2743],[118.672,1.2775],[118.6656,1.2776],[118.6584,1.2823],[118.6489,1.295],[118.6446,1.2996],[118.6394,1.3017],[118.624,1.313],[118.6171,1.3161],[118.6107,1.3233],[118.6061,1.3238],[118.5895,1.3422],[118.5876,1.3458],[118.5817,1.3489],[118.5776,1.3542],[118.5729,1.3551],[118.5653,1.3621],[118.5605,1.3635],[118.5484,1.3603],[118.5298,1.3629],[118.5231,1.3613],[118.5162,1.3567],[118.5159,1.3628],[118.5177,1.368],[118.517,1.3749],[118.5105,1.3761],[118.5,1.3738],[118.4965,1.371],[118.4912,1.3699],[118.488,1.364],[118.4842,1.3649],[118.4844,1.3706],[118.4885,1.3729],[118.489,1.3792],[118.4852,1.3822],[118.4743,1.3827],[118.4669,1.3763],[118.4638,1.3692],[118.4627,1.3626],[118.4561,1.3681],[118.4608,1.3711],[118.4607,1.3764],[118.468,1.3846],[118.4688,1.3953],[118.46,1.3994],[118.4572,1.3911],[118.4495,1.3791],[118.4406,1.3786],[118.4343,1.38],[118.4352,1.389],[118.433,1.3989],[118.4299,1.3995],[118.4181,1.3934],[118.4081,1.4015],[118.419,1.4024],[118.4192,1.4068],[118.4222,1.4098],[118.4291,1.413],[118.4303,1.4229],[118.4252,1.4285],[118.4224,1.4342],[118.4107,1.4292],[118.4053,1.4249],[118.3915,1.4242],[118.3849,1.4341],[118.4004,1.4369],[118.4096,1.4373],[118.4158,1.4399],[118.4206,1.4487],[118.4207,1.4528],[118.4173,1.4607],[118.4097,1.4592],[118.4139,1.4688],[118.4143,1.474],[118.411,1.482],[118.3977,1.4857],[118.3931,1.485],[118.3823,1.4807],[118.3761,1.483],[118.3735,1.4862],[118.3785,1.4903],[118.3879,1.4928],[118.3841,1.4968],[118.3788,1.4942],[118.3756,1.5013],[118.3675,1.5027],[118.3672,1.506],[118.3597,1.5047],[118.353,1.509],[118.3419,1.5132],[118.3235,1.5238],[118.3189,1.5274],[118.3116,1.5304],[118.3055,1.531],[118.302,1.5364],[118.2858,1.5453],[118.2793,1.5436],[118.2749,1.545],[118.2739,1.5498],[118.2616,1.5537],[118.2581,1.5564],[118.2467,1.5583],[118.2463,1.5616],[118.2365,1.5686],[118.2288,1.5727],[118.2103,1.589],[118.2056,1.591],[118.1799,1.6061],[118.1754,1.6105],[118.1715,1.6194],[118.1633,1.6261],[118.147,1.632],[118.137,1.6327],[118.1319,1.6356],[118.1234,1.6427],[118.1073,1.66],[118.0916,1.6836],[118.0872,1.6886],[118.0813,1.6911],[118.0798,1.6975],[118.0727,1.709],[118.062,1.7171],[118.058,1.7214],[118.0529,1.7296],[118.0521,1.7355],[118.0573,1.7378],[118.0622,1.7437],[118.0647,1.7495],[118.0659,1.7587],[118.062,1.7692],[118.0481,1.7834],[118.0381,1.7872],[118.0273,1.7819],[118.0131,1.7825],[118.007,1.7836],[117.9884,1.7896],[117.9717,1.7924],[117.9666,1.7912],[117.96,1.7943],[117.9466,1.7979],[117.9292,1.8048],[117.9211,1.8126],[117.9112,1.8203],[117.9061,1.8275],[117.9019,1.836],[117.8979,1.8375],[117.8933,1.8455],[117.8904,1.854],[117.8876,1.8562],[117.8908,1.8697],[117.8898,1.8728],[117.8821,1.8756],[117.8709,1.881],[117.8642,1.8807],[117.8593,1.8822],[117.8515,1.8916],[117.8449,1.8937],[117.839,1.9055],[117.8331,1.91],[117.8321,1.9212],[117.8284,1.9238],[117.8246,1.9371],[117.8269,1.9402],[117.8261,1.9486],[117.8166,1.9474],[117.8157,1.9496],[117.8178,1.9596],[117.8203,1.9656],[117.8156,1.9695],[117.8157,1.9725]],[[117.8157,1.9725],[117.8157,1.9745],[117.8145,1.9778]],[[117.8145,1.9778],[117.8136,1.9803],[117.8076,1.9832],[117.8077,1.9842]],[[117.8077,1.9842],[117.8077,1.9845]],[[117.8077,1.9845],[117.808,1.9881],[117.8117,1.9876]],[[117.8117,1.9876],[117.8133,1.9874]],[[117.8133,1.9874],[117.8195,1.9865],[117.8208,1.9894],[117.819,1.9946],[117.8234,2.0023],[117.8242,2.0099],[117.8119,2.0118],[117.7982,2.0124],[117.7897,2.0137],[117.7841,2.0116],[117.7793,2.0129],[117.7669,2.013],[117.7537,2.0233],[117.7486,2.0255],[117.744,2.0301],[117.7421,2.0355],[117.7416,2.0432],[117.7369,2.0435],[117.7311,2.0358],[117.7214,2.0274],[117.7114,2.0261],[117.7053,2.0303],[117.7013,2.036],[117.7006,2.0424],[117.6956,2.0504],[117.6988,2.0578],[117.7055,2.0597],[117.7176,2.0592],[117.7177,2.0667],[117.7111,2.0736],[117.71,2.0789],[117.713,2.0822],[117.7246,2.0821],[117.7263,2.0839],[117.7194,2.1045],[117.7229,2.12],[117.7234,2.137],[117.7216,2.1444],[117.7187,2.1497],[117.7038,2.1655],[117.7009,2.1669],[117.6815,2.1718],[117.6829,2.1781],[117.6874,2.1803],[117.6968,2.1807],[117.7104,2.1836],[117.7201,2.188],[117.7413,2.1918],[117.7576,2.1915],[117.7717,2.1894],[117.7904,2.189],[117.8051,2.1989],[117.8186,2.2014],[117.833,2.1992],[117.8444,2.1988],[117.8608,2.1993],[117.8689,2.1989],[117.884,2.1966],[117.8922,2.1945],[117.8956,2.1958],[117.8984,2.2067],[117.9026,2.2094],[117.9083,2.2088],[117.9201,2.1975],[117.9339,2.18],[117.9438,2.1802],[117.9517,2.1825],[117.9629,2.1876],[117.9728,2.1891],[117.9795,2.1889],[117.9909,2.1948],[118.0009,2.1958],[118.0189,2.196],[118.0359,2.2106],[118.0417,2.218],[118.0547,2.2282],[118.0634,2.2379],[118.0648,2.2431],[118.0734,2.2455],[118.0782,2.2495],[118.0752,2.255],[118.077,2.2598],[118.0858,2.2654],[118.0933,2.2741],[118.0977,2.2851],[118.0962,2.2889],[118.0859,2.2922],[118.0889,2.297],[118.0927,2.2978],[118.094,2.3077],[118.0852,2.3242],[118.0779,2.3253],[118.0744,2.3366],[118.0718,2.3372],[118.0649,2.3464],[118.0662,2.3544],[118.0529,2.366],[118.0458,2.3763],[118.0389,2.3732],[118.0383,2.3623],[118.0349,2.3579],[118.0304,2.3561],[118.0221,2.3586],[118.023,2.3652],[118.0177,2.3718],[118.014,2.3741],[118.0155,2.3803],[118.0198,2.3895],[118.0057,2.4064],[117.9962,2.4142],[117.996,2.4186],[118.0003,2.4213],[117.9993,2.4318],[117.988,2.4341]]]}},{"type":"Feature","properties":{"mhid":"1332:370","alt_name":"KABUPATEN PENAJAM PASER UTARA","latitude":-1.25,"longitude":116.83333,"sample_value":375},"geometry":{"type":"MultiLineString","coordinates":[[[116.5501,-1.603],[116.5522,-1.6056],[116.5586,-1.6022],[116.5607,-1.5967],[116.5599,-1.5901],[116.5572,-1.5876],[116.5542,-1.5703],[116.5547,-1.5664],[116.5533,-1.553],[116.5483,-1.5342],[116.542,-1.5207],[116.5388,-1.5171],[116.5313,-1.5143],[116.53,-1.5079],[116.5333,-1.4988],[116.5353,-1.4751],[116.5396,-1.4641],[116.5487,-1.4538],[116.5549,-1.4484],[116.5691,-1.4379],[116.5926,-1.4233],[116.6122,-1.4139],[116.6277,-1.4081],[116.6314,-1.4088],[116.6506,-1.4044],[116.66,-1.3993],[116.6796,-1.3923],[116.6905,-1.3899],[116.701,-1.3839],[116.7109,-1.3798],[116.7378,-1.3711],[116.7501,-1.3693],[116.7615,-1.3602],[116.7661,-1.353],[116.7615,-1.3345],[116.7578,-1.3303],[116.7632,-1.3237],[116.7633,-1.3138],[116.7811,-1.2952],[116.7856,-1.2929],[116.7845,-1.2835],[116.7962,-1.2398],[116.7919,-1.2358]]]}},{"type":"Feature","properties":{"mhid":"1332:371","alt_name":"KABUPATEN MAHAKAM HULU","latitude":0.37822,"longitude":115.38048,"sample_value":40},"geometry":{"type":"MultiLineString","coordinates":[[[114.5666,1.4277],[114.563,1.4302],[114.563,1.4339],[114.5509,1.4362],[114.5445,1.4358],[114.5338,1.4405],[114.5262,1.4425],[114.5221,1.4487],[114.5188,1.4493],[114.5158,1.4562],[114.5103,1.4628],[114.4964,1.4639],[114.4926,1.4682],[114.4846,1.4738],[114.4814,1.4726],[114.4744,1.4743],[114.4706,1.4788],[114.4655,1.4809],[114.4613,1.4861],[114.4541,1.487],[114.4472,1.4929],[114.4258,1.5047],[114.4152,1.5114],[114.4059,1.5127],[114.3962,1.5127],[114.3805,1.4953],[114.3671,1.4924],[114.3647,1.489],[114.358,1.4888],[114.3541,1.4904],[114.3432,1.4861],[114.336,1.4859],[114.331,1.4796],[114.3227,1.476],[114.3073,1.4715],[114.3036,1.4666],[114.2999,1.4587],[114.2939,1.4577],[114.2852,1.4535],[114.2698,1.4503],[114.2638,1.4521],[114.2479,1.4509],[114.2368,1.4447],[114.2371,1.4386],[114.2222,1.4244],[114.223,1.4168],[114.2131,1.4128],[114.2054,1.4109],[114.2011,1.4128]]]}},{"type":"Feature","properties":{"mhid":"1332:372","alt_name":"KOTA BALIKPAPAN","latitude":-1.16667,"longitude":116.88333,"sample_value":912},"geometry":{"type":"MultiLineString","coordinates":[[[116.7919,-1.2358],[116.8119,-1.2395],[116.8118,-1.2574],[116.8106,-1.264],[116.8051,-1.272],[116.8109,-1.2828],[116.8306,-1.2789],[116.842,-1.2789],[116.8484,-1.2763],[116.8727,-1.277],[116.8807,-1.2751],[116.8834,-1.277],[116.9066,-1.2683],[116.9077,-1.2641],[116.918,-1.2618],[116.9282,-1.2561],[116.9336,-1.2546],[116.9377,-1.2497],[116.9651,-1.2299],[116.9936,-1.2101],[117.0073,-1.1949],[117.0103,-1.187],[117.013,-1.1759],[117.0164,-1.171],[117.0172,-1.1664],[117.0164,-1.1546],[117.0225,-1.1413],[117.022,-1.1403]]]}},{"type":"Feature","properties":{"mhid":"1332:373","alt_name":"KOTA SAMARINDA","latitude":-0.43333,"longitude":117.18333,"sample_value":465},"geometry":{"type":"MultiLineString","coordinates":[[[117.2856,-0.5977],[117.283,-0.5899],[117.2736,-0.5819],[117.2643,-0.5778],[117.2519,-0.5744],[117.2411,-0.5739],[117.2392,-0.5666]]]}},{"type":"Feature","properties":{"mhid":"1332:374","alt_name":"KOTA BONTANG","latitude":0.12526,"longitude":117.49603,"sample_value":344},"geometry":{"type":"MultiLineString","coordinates":[[[117.5314,0.0649],[117.5265,0.0683],[117.5142,0.0661],[117.5137,0.0618],[117.5231,0.061],[117.5314,0.0649]],[[117.4931,0.0641],[117.4937,0.0699],[117.4873,0.066],[117.4931,0.0641]],[[117.5064,0.0176],[117.5147,0.0173],[117.5171,0.0196],[117.5162,0.0261],[117.5119,0.0265],[117.5134,0.0347],[117.503,0.032],[117.499,0.0322],[117.4937,0.0249],[117.4898,0.0295],[117.4896,0.0411],[117.494,0.0414],[117.4953,0.0467],[117.5014,0.0495],[117.5097,0.0482],[117.5118,0.0568],[117.5071,0.0617],[117.4957,0.0581],[117.4913,0.0584],[117.4849,0.0612],[117.4846,0.0569],[117.479,0.0526],[117.4787,0.048],[117.4736,0.0429],[117.4722,0.0493],[117.4754,0.0543],[117.4735,0.0581],[117.4773,0.062],[117.4716,0.067],[117.4782,0.0734],[117.4759,0.0861],[117.4732,0.0894],[117.4669,0.0872],[117.4654,0.0961],[117.4759,0.0932],[117.4757,0.0899],[117.4786,0.0811],[117.4832,0.0812],[117.4856,0.0867],[117.4848,0.0927],[117.4787,0.0912],[117.4767,0.0933],[117.4803,0.1006],[117.4873,0.1022],[117.4932,0.0987],[117.4999,0.0983],[117.5007,0.1015],[117.4951,0.1052],[117.4872,0.1025],[117.4792,0.1082],[117.481,0.1104],[117.4873,0.106],[117.49,0.1146],[117.4966,0.1119],[117.5036,0.1107],[117.5079,0.1083],[117.5188,0.1224],[117.5228,0.1255],[117.5183,0.1327],[117.5192,0.1413],[117.5134,0.1422],[117.51,0.1483],[117.5111,0.1512],[117.5056,0.1572],[117.4952,0.1521],[117.4957,0.1586],[117.487,0.16],[117.4799,0.155],[117.4757,0.1639],[117.4773,0.1659],[117.4836,0.1641],[117.4897,0.1667],[117.4905,0.1706],[117.4858,0.1725],[117.4876,0.1767],[117.4928,0.1739],[117.5002,0.1738],[117.5046,0.1756],[117.5034,0.179],[117.4935,0.1801],[117.4919,0.1855],[117.4975,0.1887],[117.4994,0.195],[117.5082,0.1915],[117.5106,0.1955],[117.5177,0.1975],[117.5145,0.2012],[117.5055,0.2038],[117.5051,0.2069]]]}},{"type":"Feature","properties":{"mhid":"1332:375","alt_name":"KABUPATEN MALINAU","latitude":2.45,"longitude":115.68333,"sample_value":953},"geometry":{"type":"MultiLineString","coordinates":[[[115.6601,3.4377],[115.6489,3.4366],[115.6497,3.4288],[115.6342,3.4136],[115.625,3.4089],[115.622,3.4095],[115.6216,3.4178],[115.6178,3.4205],[115.6138,3.4285],[115.6154,3.4324],[115.6137,3.4394],[115.6097,3.447],[115.604,3.4473],[115.6009,3.4429],[115.5974,3.4426],[115.5934,3.4483],[115.5851,3.4495],[115.5827,3.4401],[115.5782,3.4323],[115.5787,3.4193],[115.5726,3.4155],[115.5699,3.4078],[115.5638,3.4047],[115.5638,3.3976],[115.5607,3.3943],[115.5574,3.3829],[115.549,3.3753],[115.5433,3.3592],[115.5462,3.3466],[115.5444,3.342],[115.5479,3.335],[115.5475,3.3277],[115.5441,3.3283],[115.5394,3.3193],[115.5323,3.3186],[115.531,3.3078],[115.5318,3.3029],[115.5304,3.298],[115.5362,3.289],[115.5366,3.2831],[115.531,3.2815],[115.5267,3.2762],[115.5278,3.273],[115.525,3.263],[115.5234,3.2509],[115.5244,3.2411],[115.5293,3.2408],[115.5324,3.2346],[115.5338,3.2261],[115.5273,3.2249],[115.5198,3.2259],[115.5155,3.2227],[115.5186,3.2142],[115.5173,3.2027],[115.5214,3.1893],[115.5309,3.182],[115.5361,3.1832],[115.5426,3.1818],[115.5519,3.1732],[115.5595,3.1716],[115.5642,3.1614],[115.5609,3.1553],[115.562,3.1515],[115.5555,3.1489],[115.5499,3.1409],[115.5354,3.1431],[115.5295,3.1323],[115.5293,3.1234],[115.5266,3.117],[115.5178,3.1141],[115.5139,3.1074],[115.5149,3.1022],[115.5131,3.0955],[115.5105,3.093],[115.5125,3.0883],[115.5112,3.084],[115.5125,3.0756],[115.5158,3.0698],[115.517,3.0624],[115.5146,3.0547],[115.508,3.0484],[115.5057,3.0405],[115.5012,3.0392],[115.4974,3.0288],[115.495,3.0293],[115.489,3.0244],[115.486,3.0182],[115.4796,3.0186],[115.4741,3.0213],[115.4691,3.0215],[115.4683,3.0249],[115.4581,3.0258],[115.4532,3.0279],[115.4495,3.0242],[115.4404,3.024],[115.4378,3.0141],[115.4333,3.0135],[115.4265,3.0157],[115.422,3.0069],[115.4181,3.0031],[115.4178,2.9994],[115.4141,2.9954],[115.4078,2.9934],[115.4064,2.9882],[115.4028,2.9847],[115.3936,2.9796],[115.3896,2.9797],[115.3809,2.9827],[115.3772,2.9864],[115.3722,2.9808],[115.3628,2.982],[115.3499,2.9814],[115.3474,2.9772],[115.3399,2.9781],[115.3313,2.9753],[115.3256,2.9792],[115.3241,2.9893],[115.3262,2.994],[115.3238,2.9971],[115.3168,3.0173],[115.3085,3.0247],[115.3023,3.0271],[115.297,3.0326],[115.284,3.0368],[115.2767,3.0332],[115.2725,3.0239],[115.265,3.0149],[115.2574,2.9994],[115.2537,2.9972],[115.2537,2.9862],[115.2519,2.9815],[115.2481,2.9796],[115.2503,2.9742],[115.25,2.966],[115.2382,2.9633],[115.2352,2.9597],[115.229,2.9596],[115.2212,2.962],[115.2142,2.9586],[115.2108,2.9585],[115.2046,2.9508],[115.2001,2.9478],[115.1943,2.939],[115.1895,2.9337],[115.1818,2.9313],[115.1727,2.9312],[115.1644,2.9278],[115.1542,2.9173],[115.1531,2.913],[115.1486,2.9067],[115.1533,2.8982],[115.1505,2.8848],[115.1538,2.8803],[115.1526,2.8709],[115.1434,2.8693],[115.1405,2.8588],[115.1373,2.8535],[115.1288,2.8514],[115.125,2.847],[115.1249,2.8427],[115.1182,2.8365],[115.1009,2.8305],[115.0955,2.8244],[115.0969,2.818],[115.103,2.8175],[115.12,2.805],[115.1294,2.8021],[115.1346,2.8062],[115.1419,2.8057],[115.1546,2.7932],[115.1534,2.7884],[115.1472,2.783],[115.147,2.7806],[115.1409,2.7758],[115.1405,2.7623],[115.1441,2.7568],[115.1405,2.7475],[115.1316,2.7402],[115.1204,2.7291],[115.1037,2.7215],[115.1014,2.7179],[115.102,2.7137],[115.0986,2.7049],[115.0961,2.7018],[115.0967,2.6962],[115.1021,2.6958],[115.1065,2.6907],[115.1149,2.69],[115.1137,2.6849],[115.1102,2.6825],[115.1101,2.6775],[115.1131,2.6722],[115.1208,2.6549],[115.1209,2.6509],[115.115,2.6493],[115.1126,2.6447],[115.1133,2.6375],[115.1093,2.6347],[115.0994,2.6235],[115.0923,2.6234],[115.0882,2.6167],[115.0912,2.607],[115.0974,2.6045],[115.1012,2.6011],[115.1072,2.6003],[115.1093,2.5938],[115.1079,2.5889],[115.1155,2.5835],[115.122,2.5877],[115.1352,2.5849],[115.1401,2.5923],[115.1402,2.5983],[115.1522,2.6081],[115.1613,2.6064],[115.1687,2.6132],[115.172,2.61],[115.1772,2.6106],[115.1821,2.5979],[115.1929,2.5922],[115.1958,2.5816],[115.2007,2.5794],[115.2055,2.5737],[115.2122,2.5736],[115.211,2.5689],[115.2149,2.5679],[115.2186,2.5597],[115.2157,2.5528],[115.2218,2.5466],[115.2236,2.5426],[115.2358,2.536],[115.2446,2.539],[115.2483,2.5416],[115.2578,2.5404],[115.2581,2.5304],[115.2516,2.5234],[115.2471,2.5111],[115.2487,2.5076],[115.2435,2.5034],[115.2422,2.4986],[115.235,2.4925],[115.2304,2.4921],[115.2259,2.4862],[115.2179,2.482],[115.2098,2.479],[115.2062,2.4727],[115.2032,2.472],[115.1902,2.4823],[115.1852,2.4798],[115.1761,2.481],[115.1621,2.4768],[115.1515,2.4772],[115.1445,2.4759],[115.1407,2.471],[115.1354,2.4682],[115.1318,2.4612],[115.1307,2.4563],[115.1231,2.4545],[115.1205,2.4572],[115.1165,2.4546],[115.117,2.4484],[115.1129,2.4424],[115.103,2.4332],[115.1028,2.4288],[115.0987,2.424],[115.1009,2.416],[115.0992,2.4132],[115.1008,2.4061],[115.0975,2.4025],[115.0907,2.4019],[115.0857,2.4048],[115.076,2.4049],[115.0712,2.4077],[115.0675,2.4049],[115.0629,2.4073],[115.0504,2.4042],[115.0485,2.393],[115.0537,2.3871],[115.0479,2.3857],[115.045,2.3904],[115.0374,2.389],[115.0363,2.3838],[115.0292,2.3777],[115.0265,2.3663],[115.0214,2.3625],[115.015,2.3651],[115.0111,2.3631],[115.0066,2.3643],[115.0053,2.358],[115.0009,2.3541],[115.0002,2.3505],[114.9952,2.3486],[114.99,2.3498],[114.9788,2.3604],[114.9756,2.3612],[114.9746,2.3668],[114.9679,2.3674],[114.9633,2.3657],[114.9608,2.3586],[114.957,2.3567],[114.9573,2.3528],[114.9536,2.3489],[114.9538,2.3445],[114.9519,2.3329],[114.9481,2.3241],[114.9487,2.3153],[114.9504,2.3094],[114.9641,2.2979],[114.9669,2.292],[114.9653,2.2868],[114.9586,2.281],[114.9529,2.279],[114.9476,2.2815],[114.9381,2.2801],[114.9354,2.2745],[114.9295,2.2675],[114.9204,2.2601],[114.9172,2.2553],[114.9076,2.2533],[114.9032,2.2598],[114.8959,2.2588],[114.8936,2.2604],[114.8852,2.2598],[114.8735,2.2631],[114.8647,2.2616],[114.8548,2.2535],[114.8473,2.253],[114.8387,2.2496],[114.8339,2.2493],[114.8289,2.2453],[114.8236,2.2488],[114.8138,2.2512],[114.7984,2.2497],[114.7967,2.2447],[114.7997,2.2355],[114.7939,2.2295],[114.7882,2.2254],[114.7858,2.2141],[114.7858,2.2027],[114.7839,2.2001],[114.771,2.1954],[114.7631,2.1971],[114.7552,2.1947],[114.7496,2.195],[114.7402,2.1922],[114.738,2.1857],[114.741,2.181],[114.7387,2.1764],[114.7394,2.1698],[114.737,2.1678],[114.7338,2.1605],[114.7351,2.1539],[114.7325,2.1517],[114.7325,2.1461],[114.7359,2.1427],[114.7371,2.1337],[114.7413,2.1342],[114.7531,2.1394],[114.7582,2.1427],[114.7778,2.1452],[114.7823,2.1447],[114.7933,2.146],[114.7969,2.1436],[114.8028,2.1349],[114.8097,2.1351],[114.8186,2.1277],[114.8193,2.1156],[114.8157,2.1074],[114.8104,2.0981],[114.8053,2.0958],[114.7973,2.0878],[114.8014,2.0791],[114.8043,2.0781],[114.8075,2.0724],[114.809,2.0632],[114.7996,2.0613],[114.7945,2.0562],[114.7953,2.0442],[114.8015,2.0415],[114.8017,2.0368],[114.8051,2.0356],[114.8078,2.0241],[114.8118,2.0229],[114.8153,2.0272],[114.8267,2.0278],[114.8384,2.0358],[114.85,2.0414],[114.8592,2.0437],[114.8656,2.0357],[114.8697,2.0327],[114.8769,2.0327],[114.8855,2.0263],[114.8868,2.0209],[114.8834,2.0182],[114.8741,2.0156],[114.8723,2.0097],[114.8735,2.0057],[114.8737,1.9954],[114.8712,1.9922],[114.8688,1.9844],[114.863,1.9827],[114.8585,1.9755],[114.8528,1.9726],[114.8507,1.9647],[114.8523,1.9531],[114.8543,1.9494],[114.8524,1.9437],[114.8607,1.9368],[114.8638,1.9387],[114.8674,1.9347],[114.8676,1.9306],[114.8744,1.929],[114.8814,1.9199],[114.8826,1.9158],[114.8781,1.9121],[114.8706,1.9101],[114.8691,1.9035],[114.8664,1.9008],[114.8603,1.8998],[114.8556,1.8948],[114.8445,1.8945],[114.8409,1.8932],[114.8354,1.8951],[114.8194,1.8922],[114.8179,1.8782],[114.814,1.8774],[114.8061,1.8721],[114.804,1.8658],[114.7984,1.8602],[114.7996,1.853],[114.7918,1.8465],[114.7797,1.849],[114.7777,1.8507],[114.7711,1.85],[114.7681,1.8569],[114.7592,1.8604],[114.7581,1.8635],[114.7519,1.867],[114.7456,1.8689],[114.7357,1.8653],[114.7341,1.8604],[114.7295,1.8577],[114.7184,1.8559],[114.7189,1.8522],[114.727,1.8447],[114.7279,1.8338],[114.7204,1.8285],[114.7182,1.824],[114.7149,1.8247],[114.711,1.8187],[114.7065,1.8202],[114.7026,1.8144],[114.7027,1.811],[114.6975,1.8091],[114.6962,1.8062],[114.7089,1.7965],[114.709,1.7928],[114.7151,1.7841],[114.7145,1.7715],[114.7115,1.7685],[114.7065,1.7587],[114.711,1.7501],[114.7103,1.7373],[114.7127,1.7327],[114.7175,1.7297],[114.7189,1.7203],[114.7177,1.7133],[114.7115,1.7066],[114.7114,1.6998],[114.7133,1.696],[114.7137,1.6702],[114.7112,1.6638],[114.7105,1.6544],[114.7083,1.6444],[114.7081,1.6376],[114.7012,1.6361],[114.693,1.6325],[114.6898,1.628],[114.6901,1.6225],[114.6791,1.6084],[114.6759,1.6078],[114.6683,1.6006],[114.6554,1.5994],[114.6516,1.5895],[114.6376,1.5889],[114.6228,1.5782],[114.6157,1.5776],[114.6103,1.5741],[114.6092,1.5656],[114.6116,1.5588],[114.6058,1.551],[114.605,1.5416],[114.5999,1.5325],[114.6028,1.5281],[114.6094,1.5247],[114.6164,1.5159],[114.6121,1.5105],[114.6121,1.5061],[114.6055,1.5],[114.6072,1.4879],[114.6011,1.4856],[114.5916,1.4741],[114.5898,1.4647],[114.5898,1.458],[114.5879,1.4565],[114.5869,1.4474],[114.5848,1.4444],[114.5769,1.4435],[114.5723,1.4392],[114.5696,1.4296],[114.5666,1.4277]]]}},{"type":"Feature","properties":{"mhid":"1332:376","alt_name":"KABUPATEN BULUNGAN","latitude":3,"longitude":117.16667,"sample_value":184},"geometry":{"type":"MultiLineString","coordinates":[[[117.6292,2.7978],[117.6298,2.7993],[117.6192,2.8084],[117.6118,2.8115],[117.6101,2.8096],[117.6128,2.8037],[117.6165,2.8011],[117.6292,2.7978]],[[117.6492,2.8005],[117.6429,2.8088],[117.6366,2.8118],[117.6289,2.8092],[117.6343,2.8047],[117.6443,2.8009],[117.6492,2.8005]],[[117.3717,2.8267],[117.3697,2.8309],[117.3654,2.8284],[117.3642,2.8164],[117.3699,2.816],[117.3737,2.823],[117.3717,2.8267]],[[117.6921,2.8357],[117.7009,2.8394],[117.7001,2.8438],[117.6907,2.8512],[117.6804,2.85],[117.6742,2.8466],[117.6576,2.8352],[117.6493,2.8237],[117.6414,2.8152],[117.6476,2.8069],[117.6559,2.7985],[117.6775,2.7965],[117.6908,2.7989],[117.7006,2.8039],[117.71,2.8057],[117.7317,2.8057],[117.7352,2.8095],[117.7363,2.816],[117.7277,2.8267],[117.722,2.8261],[117.7195,2.8309],[117.7065,2.8368],[117.7009,2.8376],[117.6921,2.8357]],[[117.5707,2.8485],[117.5688,2.855],[117.5712,2.8572]],[[117.5712,2.8572],[117.5722,2.8581],[117.5718,2.8584]],[[117.5718,2.8584],[117.5632,2.8644],[117.5608,2.8613],[117.5667,2.8509],[117.5707,2.8485]],[[117.459,2.8897],[117.4524,2.8922],[117.443,2.8885]],[[117.443,2.8885],[117.4427,2.8884],[117.4416,2.8873]],[[117.4416,2.8873],[117.4359,2.8821],[117.4357,2.8747],[117.4397,2.8697],[117.4485,2.8682],[117.4545,2.8584],[117.4563,2.8525],[117.4616,2.8485],[117.4673,2.8524],[117.4641,2.857],[117.4653,2.8608],[117.4692,2.8624],[117.4734,2.8602],[117.4754,2.8549],[117.4801,2.8518],[117.4877,2.8516],[117.4958,2.8487],[117.4989,2.8458]],[[117.4989,2.8458],[117.5006,2.8442],[117.5007,2.847]],[[117.5007,2.847],[117.5012,2.8554],[117.5077,2.8564],[117.5113,2.8538],[117.5116,2.8496],[117.5082,2.8449],[117.5129,2.8439],[117.5151,2.8508],[117.5143,2.8568],[117.5189,2.8585],[117.5217,2.8706],[117.5216,2.876],[117.5169,2.8855],[117.5091,2.8884],[117.4983,2.8839],[117.4904,2.8826],[117.4828,2.8762],[117.4789,2.8714],[117.4744,2.8715],[117.4682,2.8835],[117.459,2.8897]],[[117.5809,2.9033],[117.5738,2.9046],[117.5629,2.9085],[117.5464,2.908],[117.5436,2.8992],[117.5458,2.8915],[117.5509,2.8922],[117.5521,2.8873],[117.5594,2.8854],[117.5661,2.8868],[117.5709,2.8836],[117.5752,2.8844],[117.5793,2.8886],[117.5854,2.8887],[117.5922,2.8709],[117.5942,2.86],[117.5994,2.8604],[117.6191,2.8549],[117.6292,2.8494],[117.6346,2.8488],[117.6384,2.8566],[117.6473,2.8584],[117.657,2.8571],[117.6652,2.8532],[117.6748,2.8563],[117.684,2.8615],[117.7044,2.8594],[117.7086,2.8605],[117.716,2.8685],[117.7187,2.8898],[117.7126,2.8956],[117.6907,2.8945],[117.6715,2.895],[117.6534,2.8926],[117.6351,2.8964],[117.6186,2.9021],[117.6054,2.9042],[117.5874,2.9044],[117.5809,2.9033]],[[117.5311,2.9043],[117.538,2.9072],[117.5384,2.9101],[117.5272,2.9117],[117.5174,2.91],[117.5188,2.9064],[117.5311,2.9043]],[[117.571,2.913],[117.5744,2.9177],[117.5666,2.9186],[117.5611,2.9173],[117.5611,2.9127],[117.571,2.913]],[[117.6055,2.9188],[117.6022,2.9228],[117.593,2.9188],[117.6055,2.9188]],[[117.6918,2.9318],[117.6839,2.9345],[117.6625,2.9277],[117.6562,2.9267],[117.6474,2.9274],[117.6394,2.9267],[117.6179,2.922],[117.6056,2.9174],[117.589,2.9148],[117.581,2.9093],[117.5949,2.9064],[117.61,2.9078],[117.6152,2.9075],[117.6428,2.9019],[117.6588,2.9015],[117.6761,2.9043],[117.6965,2.9027],[117.7065,2.9045],[117.7113,2.9068],[117.7124,2.9137],[117.7035,2.93],[117.7012,2.9313],[117.6918,2.9318]],[[117.5274,2.9036],[117.5195,2.9049],[117.5141,2.9104],[117.4911,2.9194],[117.4845,2.9231],[117.4731,2.9353],[117.4699,2.9354],[117.4585,2.931],[117.4564,2.928],[117.4545,2.9196],[117.4483,2.9154],[117.4507,2.9049],[117.4458,2.9018],[117.4402,2.9033],[117.4345,2.9074],[117.4266,2.9026],[117.4219,2.9034],[117.4142,2.9089],[117.4094,2.9047],[117.4156,2.9009],[117.4166,2.8933],[117.413,2.885],[117.4088,2.8834],[117.4005,2.8866],[117.4,2.8772],[117.3909,2.871],[117.3924,2.8682],[117.3895,2.8539],[117.3952,2.8567],[117.402,2.8568],[117.4096,2.8547],[117.412,2.8567],[117.4086,2.8688],[117.4121,2.8698],[117.418,2.8654],[117.4204,2.8576],[117.4318,2.8585],[117.4417,2.8675],[117.4351,2.8747],[117.4351,2.882],[117.4416,2.8873]],[[117.4416,2.8873],[117.443,2.8885]],[[117.443,2.8885],[117.4461,2.8911],[117.4535,2.8929],[117.4572,2.8923],[117.4689,2.8837],[117.4741,2.8726],[117.478,2.872],[117.4888,2.8829],[117.4968,2.8847],[117.5041,2.8885],[117.5119,2.8898],[117.5188,2.8852],[117.5232,2.8745],[117.5207,2.8601],[117.5231,2.8556],[117.5295,2.8534],[117.5389,2.8524],[117.5435,2.8427],[117.5466,2.8446],[117.5491,2.8591],[117.5513,2.8622],[117.5567,2.8641],[117.5581,2.8675],[117.5624,2.8676],[117.5645,2.8642],[117.5729,2.8604],[117.5718,2.8584]],[[117.5718,2.8584],[117.5712,2.8572]],[[117.5712,2.8572],[117.5694,2.8537],[117.5742,2.8462],[117.5803,2.8448],[117.5877,2.8408],[117.5943,2.8346],[117.61,2.8217],[117.6164,2.8193],[117.6261,2.8181],[117.6387,2.8194],[117.6425,2.8218],[117.6515,2.836],[117.6593,2.8421],[117.6601,2.8468],[117.6508,2.8537],[117.6431,2.8536],[117.6372,2.847],[117.6308,2.8459],[117.623,2.8486],[117.6132,2.8538],[117.6023,2.8549],[117.5951,2.8575],[117.5919,2.8618],[117.5899,2.8723],[117.5859,2.8867],[117.5803,2.8876],[117.5762,2.8835],[117.5686,2.8829],[117.5648,2.8861],[117.5575,2.8844],[117.552,2.8867],[117.5509,2.8909],[117.5456,2.8901],[117.5425,2.901],[117.544,2.9064],[117.539,2.9066],[117.5319,2.9034],[117.5274,2.9036]],[[117.3704,2.9379],[117.3738,2.9419],[117.373,2.9461],[117.3669,2.9493],[117.3639,2.9417],[117.3704,2.9379]],[[117.4466,2.9503],[117.4409,2.9526],[117.4395,2.9462],[117.4336,2.9475],[117.43,2.9503],[117.4281,2.9428],[117.4223,2.9412],[117.4174,2.9343],[117.4183,2.93],[117.4243,2.9223],[117.4276,2.9202],[117.4258,2.9136],[117.4202,2.9085],[117.4245,2.9047],[117.4324,2.9088],[117.4375,2.9087],[117.4423,2.9047],[117.4459,2.9046],[117.4481,2.9096],[117.4465,2.9153],[117.4536,2.9216],[117.4564,2.9345],[117.4484,2.9404],[117.4474,2.9469],[117.4531,2.9477],[117.4531,2.9538],[117.4466,2.9503]],[[117.4626,2.9532],[117.4553,2.9552],[117.4564,2.9498],[117.4529,2.9467],[117.4483,2.9467],[117.4486,2.9412],[117.4558,2.9355],[117.4668,2.9394],[117.4739,2.9373],[117.4809,2.9298],[117.4938,2.9252],[117.4998,2.9183],[117.507,2.9156],[117.5155,2.915],[117.5237,2.916],[117.5405,2.9123],[117.5508,2.9134],[117.5659,2.9204],[117.5731,2.9266],[117.5798,2.928],[117.5808,2.9333],[117.5713,2.9355],[117.5708,2.9392],[117.5733,2.9452],[117.5627,2.9481],[117.559,2.9504],[117.5555,2.9464],[117.5512,2.9463],[117.5347,2.9422],[117.5315,2.9423],[117.5248,2.9375],[117.5202,2.9386],[117.505,2.939],[117.4977,2.9459],[117.4901,2.9459],[117.4894,2.9475]],[[117.4894,2.9475],[117.4884,2.9499]],[[117.4884,2.9499],[117.4878,2.9514],[117.4803,2.9544],[117.4626,2.9532]],[[117.5119,2.9484],[117.5073,2.9515],[117.4961,2.9552],[117.4877,2.9536],[117.4884,2.9499]],[[117.4884,2.9499],[117.4889,2.9475],[117.4894,2.9475]],[[117.4894,2.9475],[117.4971,2.9472],[117.5047,2.9404],[117.5114,2.9392],[117.5154,2.9404],[117.5141,2.9471],[117.5119,2.9484]],[[117.479,2.9586],[117.4872,2.9558],[117.4931,2.9602],[117.4815,2.9622],[117.479,2.9586]],[[117.4535,2.9556],[117.4492,2.9597],[117.4308,2.9655],[117.4208,2.9657],[117.409,2.9629],[117.4067,2.9568],[117.3983,2.9546],[117.3954,2.9562],[117.3866,2.954],[117.3811,2.9549],[117.3765,2.9597],[117.3721,2.9598],[117.3692,2.9557],[117.3695,2.9493],[117.3738,2.9474],[117.3748,2.9398],[117.3681,2.9345],[117.3625,2.9375],[117.3621,2.9425],[117.3654,2.9478],[117.3622,2.954],[117.356,2.9547],[117.3514,2.9498],[117.3481,2.942],[117.3481,2.9346],[117.3455,2.9178],[117.3436,2.912],[117.3364,2.9017],[117.3275,2.8951],[117.3343,2.8911],[117.3382,2.8865],[117.3397,2.8818],[117.3388,2.8688],[117.3404,2.8635],[117.3466,2.8544],[117.3577,2.8452],[117.3598,2.8528],[117.3601,2.8599],[117.3621,2.8667],[117.3667,2.872],[117.3721,2.8743],[117.3882,2.8741],[117.3942,2.8764],[117.3972,2.8813],[117.3985,2.8872],[117.4013,2.89],[117.4081,2.8861],[117.4132,2.8892],[117.414,2.8988],[117.4075,2.9038],[117.4066,2.9063],[117.4121,2.9115],[117.4192,2.9096],[117.426,2.9155],[117.4264,2.9194],[117.422,2.9228],[117.4166,2.9304],[117.416,2.9357],[117.4241,2.9467],[117.4247,2.951],[117.4351,2.9537],[117.4352,2.9473],[117.4386,2.9471],[117.4407,2.954],[117.4437,2.9553],[117.4482,2.9514],[117.4535,2.9556]],[[117.6661,2.9877],[117.6554,2.9873],[117.636,2.9784],[117.6319,2.9785],[117.6167,2.9818],[117.6123,2.9817],[117.6032,2.978],[117.6025,2.9755],[117.5964,2.9727],[117.5892,2.974],[117.5768,2.9617],[117.5637,2.9539],[117.5637,2.9491],[117.5746,2.9459],[117.5754,2.9432],[117.5719,2.9386],[117.5728,2.9361],[117.579,2.9355],[117.583,2.9322],[117.5827,2.9283],[117.5715,2.9237],[117.5721,2.9206],[117.5801,2.9208],[117.5982,2.9253],[117.617,2.926],[117.6435,2.9339],[117.6564,2.9346],[117.6659,2.9366],[117.6802,2.9416],[117.6914,2.9446],[117.6951,2.9477],[117.6953,2.9518],[117.6919,2.9557],[117.6828,2.9615],[117.6625,2.9629],[117.6594,2.9581],[117.6508,2.9513],[117.6506,2.9548],[117.655,2.9624],[117.6597,2.9661],[117.6671,2.9674],[117.6703,2.9694],[117.6713,2.9763],[117.6661,2.9877]],[[117.5468,2.9575],[117.5599,2.9645],[117.5639,2.9686],[117.5636,2.9753],[117.5559,2.9868],[117.5464,2.9909],[117.5454,2.9876],[117.5495,2.9818],[117.5494,2.9776],[117.5424,2.9694],[117.5366,2.9581],[117.5313,2.9563],[117.5301,2.96],[117.5302,2.9693],[117.5205,2.9725],[117.5166,2.9773]],[[117.5166,2.9773],[117.5163,2.9777],[117.5161,2.9773]],[[117.5161,2.9773],[117.5136,2.9717],[117.5047,2.9699],[117.5023,2.9642],[117.5034,2.9614],[117.5149,2.9526],[117.521,2.9405],[117.524,2.9408],[117.5275,2.9454],[117.5468,2.9575]],[[117.6357,2.9829],[117.6388,2.987],[117.636,2.9906],[117.6305,2.993],[117.6229,2.9915],[117.6233,2.9853],[117.6315,2.9825],[117.6357,2.9829]],[[117.4563,2.9831],[117.4614,2.9864],[117.4626,2.9921],[117.4574,2.996],[117.4526,2.9909],[117.4513,2.9871]],[[117.4513,2.9871],[117.4507,2.9852],[117.4516,2.9848]],[[117.4516,2.9848],[117.4563,2.9831]],[[117.4985,2.9961],[117.5078,3.0007],[117.5126,3.0065],[117.512,3.0097],[117.499,2.9984],[117.4985,2.9961]],[[117.516,3.004],[117.5245,3.0089],[117.52,3.0104],[117.5149,3.0069],[117.516,3.004]],[[117.479,2.9586],[117.4797,2.9622],[117.4851,2.9628],[117.499,2.961],[117.5048,2.9712],[117.5128,2.9722],[117.5118,2.9769],[117.5161,2.9773]],[[117.5161,2.9773],[117.5166,2.9773]],[[117.5166,2.9773],[117.5183,2.9775],[117.5224,2.9726],[117.5301,2.9711],[117.5323,2.967],[117.5315,2.9591],[117.5341,2.9577],[117.5393,2.967],[117.5402,2.9713],[117.5438,2.9729],[117.5475,2.9786],[117.5474,2.9815],[117.5425,2.9861],[117.5442,2.9922],[117.548,2.9931],[117.5573,2.9899],[117.5571,2.9984],[117.5589,3.0057],[117.5556,3.0107],[117.5424,3.0118],[117.5358,3.0106],[117.5239,3.0065],[117.5146,3.0008],[117.4996,2.9934],[117.4809,2.982],[117.4789,2.9703],[117.4763,2.9663],[117.4636,2.9683],[117.4556,2.966],[117.4501,2.9612],[117.4547,2.9567],[117.4695,2.9557],[117.479,2.9586]],[[117.4933,2.9998],[117.4948,3.0038],[117.4884,3.0162],[117.4838,3.0161],[117.4834,3.0089],[117.4769,3.0009],[117.4732,2.9995],[117.4649,3.0033],[117.4602,3.0025],[117.459,2.9966],[117.4627,2.9939],[117.4636,2.9862],[117.457,2.9829],[117.456,2.9769],[117.4635,2.9732],[117.4649,2.9709],[117.4732,2.9679],[117.4773,2.9687],[117.4777,2.9792],[117.4816,2.9866],[117.4864,2.9883],[117.4906,2.9928],[117.4933,2.9998]],[[117.5107,3.0143],[117.5032,3.0166],[117.5003,3.0194],[117.4946,3.0286],[117.4881,3.0289],[117.4876,3.0189],[117.4959,3.005],[117.4956,2.9967],[117.512,3.0121],[117.5107,3.0143]],[[117.4107,3.0187],[117.4109,3.0188]],[[117.4109,3.0188],[117.4162,3.0231],[117.418,3.03],[117.412,3.0323],[117.4038,3.0398],[117.3972,3.0385],[117.4004,3.0309],[117.4074,3.019],[117.4098,3.0188]],[[117.4098,3.0188],[117.4107,3.0187]],[[117.622,3.059],[117.602,3.0583],[117.5942,3.0564],[117.5743,3.0461],[117.5636,3.0487],[117.5552,3.0563],[117.5535,3.0556],[117.5552,3.0412],[117.5529,3.0346],[117.5482,3.0344],[117.5423,3.0395],[117.5374,3.0407],[117.5283,3.0388],[117.5229,3.0409],[117.5209,3.0384],[117.5208,3.0318],[117.5236,3.029],[117.5182,3.0204],[117.5198,3.0158],[117.5276,3.0159],[117.5411,3.0179],[117.5536,3.0163],[117.5589,3.013],[117.565,3.0057],[117.5668,2.9942],[117.5714,2.9831],[117.5768,2.9821],[117.5794,2.9865],[117.603,3.0097],[117.6025,3.0128],[117.5937,3.0162],[117.6075,3.0166],[117.6137,3.0154],[117.6197,3.0194],[117.6188,3.0257],[117.6231,3.0353],[117.6237,3.0411],[117.6159,3.0471],[117.6239,3.0468],[117.6276,3.0507],[117.622,3.059]],[[117.4415,3.0553],[117.448,3.0572],[117.4462,3.0619],[117.4415,3.0553]],[[117.5166,3.0582],[117.5113,3.0593],[117.5071,3.0644],[117.4995,3.0617],[117.4967,3.0582],[117.5027,3.0529],[117.5034,3.0497],[117.5005,3.0411],[117.4987,3.0412]],[[117.4987,3.0412],[117.488,3.0418],[117.4857,3.0374],[117.4882,3.0319],[117.4948,3.0316],[117.5016,3.0223],[117.5081,3.0179],[117.5126,3.0213],[117.5179,3.0216],[117.5215,3.0285],[117.5198,3.033],[117.52,3.0393],[117.5287,3.0552],[117.5275,3.0584],[117.5166,3.0582]],[[117.53,3.0679],[117.5214,3.0681],[117.4884,3.0637],[117.4809,3.0604],[117.472,3.0579],[117.4627,3.0541],[117.4506,3.0543],[117.4451,3.0535],[117.4371,3.0425],[117.4197,3.0302],[117.4185,3.0249],[117.414,3.019],[117.4109,3.0188]],[[117.4109,3.0188],[117.4098,3.0188]],[[117.4098,3.0188],[117.4065,3.0186],[117.4013,3.0286],[117.3992,3.0215],[117.3958,3.0163],[117.3851,3.0098],[117.3789,3.0043],[117.3792,2.9908],[117.377,2.9869],[117.3693,2.978],[117.3677,2.9723],[117.3604,2.9629],[117.3592,2.9574],[117.3634,2.9556],[117.3738,2.9616],[117.3775,2.9606],[117.3819,2.9564],[117.3927,2.9577],[117.4036,2.9576],[117.4055,2.9627],[117.4089,2.9651],[117.4204,2.9684],[117.4304,2.9683],[117.4401,2.9652],[117.451,2.9657],[117.4632,2.9715],[117.4555,2.9758],[117.4556,2.9814],[117.4519,2.9829],[117.4516,2.9848]],[[117.4516,2.9848],[117.4513,2.9871]],[[117.4513,2.9871],[117.451,2.9896],[117.4553,2.9952],[117.4457,2.9988],[117.446,3.0008],[117.4562,2.9976],[117.4595,3.005],[117.4651,3.0053],[117.4743,3.0021],[117.4782,3.0053],[117.481,3.0116],[117.4811,3.0161],[117.4849,3.0226],[117.4875,3.0313],[117.4847,3.0377],[117.4885,3.0436],[117.4987,3.0412]],[[117.4987,3.0412],[117.5026,3.0518],[117.4956,3.0593],[117.5026,3.0649],[117.509,3.0652],[117.5128,3.0604],[117.5182,3.0589],[117.5262,3.0602],[117.5298,3.056],[117.5251,3.0451],[117.5269,3.0411],[117.538,3.0424],[117.5425,3.0414],[117.5496,3.0364],[117.5531,3.0399],[117.5506,3.0541],[117.5514,3.0597],[117.5492,3.0642],[117.5431,3.0678],[117.53,3.0679]],[[117.4423,3.0582],[117.4471,3.0643],[117.4415,3.0647],[117.4423,3.0582]],[[117.5447,3.0731],[117.5371,3.0778],[117.5327,3.0762],[117.5332,3.0725],[117.5447,3.0731]],[[117.5062,3.0769],[117.5018,3.0786],[117.4979,3.0718],[117.5045,3.0698],[117.5118,3.0713],[117.5134,3.0767],[117.5062,3.0769]],[[117.4603,3.0807],[117.448,3.0783],[117.4456,3.0729],[117.4544,3.074],[117.4603,3.0807]],[[117.6383,3.0702],[117.6389,3.0744],[117.6293,3.0832],[117.623,3.0818],[117.6248,3.0768],[117.6298,3.0706],[117.6383,3.0702]],[[117.5699,3.0511],[117.5887,3.0607],[117.5958,3.0629],[117.6189,3.0668],[117.6219,3.0689],[117.6231,3.0743],[117.6046,3.0832],[117.5938,3.0811],[117.5782,3.0802],[117.5702,3.0789],[117.5644,3.0761],[117.5514,3.0719],[117.5552,3.0655],[117.5673,3.0521],[117.5699,3.0511]],[[117.4933,3.0837],[117.4896,3.0864],[117.4824,3.0826],[117.4696,3.082],[117.4647,3.0794],[117.458,3.0729],[117.4493,3.0677],[117.4509,3.0581],[117.4569,3.057],[117.4658,3.0608],[117.4709,3.0598],[117.4775,3.0634],[117.4815,3.0685],[117.488,3.0735],[117.4953,3.0741],[117.4964,3.0769],[117.4933,3.0837]],[[117.5918,3.0844],[117.6042,3.0868],[117.6072,3.0894],[117.6063,3.0938],[117.6028,3.0958],[117.5934,3.097],[117.5805,3.0933],[117.5733,3.0899],[117.5743,3.0837],[117.5918,3.0844]],[[117.5476,3.0925],[117.5388,3.0944],[117.5296,3.0977],[117.5161,3.0972],[117.5055,3.0928],[117.4987,3.0838],[117.5005,3.08],[117.507,3.0782],[117.5126,3.0783],[117.5198,3.0748],[117.5371,3.0792],[117.5511,3.0765],[117.5578,3.0773],[117.5674,3.0819],[117.5699,3.0892],[117.564,3.0933],[117.5476,3.0925]],[[117.5485,3.0957],[117.5521,3.1011],[117.5449,3.1026],[117.5371,3.1015],[117.5411,3.0961],[117.5485,3.0957]],[[117.5068,3.1015],[117.4961,3.1019],[117.4899,3.0963],[117.495,3.0922],[117.4986,3.0927],[117.5082,3.1003],[117.5068,3.1015]],[[117.3885,3.0902],[117.3871,3.0929],[117.3811,3.0939],[117.3788,3.0968],[117.3766,3.1101],[117.372,3.1137],[117.3642,3.1124],[117.3625,3.1082],[117.3651,3.0902],[117.3668,3.0886],[117.3738,3.0899],[117.383,3.0866],[117.3845,3.0809],[117.3792,3.0778],[117.3716,3.0801],[117.3686,3.0785],[117.368,3.0723],[117.3651,3.0672],[117.3589,3.0657],[117.3553,3.0675],[117.3527,3.0759],[117.349,3.0775],[117.3472,3.0712],[117.3524,3.0612],[117.3519,3.0533],[117.3561,3.048],[117.3708,3.0484],[117.3779,3.0443],[117.3809,3.0498],[117.3781,3.0558],[117.393,3.061],[117.3964,3.0675],[117.3946,3.0722],[117.3958,3.0773],[117.4029,3.0773],[117.3998,3.0846],[117.401,3.089],[117.392,3.0883],[117.3885,3.0902]],[[117.5248,3.109],[117.5299,3.1144],[117.5196,3.1134],[117.5248,3.109]],[[117.5754,3.0984],[117.5842,3.1029],[117.589,3.1072],[117.5863,3.1127],[117.5818,3.1149],[117.5745,3.1117],[117.5625,3.1088],[117.5597,3.1057],[117.567,3.0975],[117.5754,3.0984]],[[117.4589,3.1122],[117.4607,3.1148],[117.4527,3.1219],[117.4442,3.1206],[117.4413,3.1171],[117.4314,3.1092],[117.426,3.1076],[117.418,3.1073],[117.4068,3.1096],[117.4014,3.1078],[117.3973,3.1012],[117.3897,3.0952],[117.3897,3.0919],[117.3942,3.0904],[117.4027,3.0904],[117.4025,3.0842],[117.4071,3.0772],[117.3964,3.073],[117.3981,3.0644],[117.3952,3.0601],[117.3849,3.0557],[117.3853,3.0503],[117.3825,3.0457],[117.3829,3.0418],[117.3882,3.0387],[117.3912,3.0312],[117.3872,3.0269],[117.3866,3.0218],[117.3895,3.0168],[117.3966,3.0232],[117.3981,3.0285],[117.3951,3.0381],[117.4013,3.0426],[117.4135,3.0356],[117.4238,3.0361],[117.4324,3.046],[117.4383,3.0568],[117.4387,3.0676],[117.4468,3.0813],[117.4659,3.0929],[117.4775,3.0955],[117.4785,3.1016],[117.4708,3.1098],[117.4627,3.1154],[117.4589,3.1122]],[[117.6,3.1268],[117.5921,3.1266],[117.584,3.123],[117.5814,3.1199],[117.5921,3.1131],[117.5952,3.1089],[117.6019,3.1061],[117.616,3.1093],[117.6199,3.1139],[117.6194,3.1186],[117.6121,3.1243],[117.6,3.1268]],[[117.2295,3.1765],[117.2337,3.1807],[117.2362,3.1908],[117.2279,3.1885],[117.2202,3.1818],[117.2267,3.1794],[117.2295,3.1765]],[[117.3059,3.2303],[117.299,3.2317],[117.2839,3.2294],[117.2779,3.2305],[117.2704,3.2298],[117.2709,3.2257],[117.2781,3.2098],[117.2825,3.2055],[117.2893,3.207],[117.2943,3.2145],[117.299,3.2173],[117.3059,3.2303]],[[117.3787,3.2757],[117.3828,3.2815],[117.3815,3.2849],[117.3759,3.2791],[117.3787,3.2757]],[[117.4553,3.2774],[117.4568,3.2796],[117.466,3.2852],[117.4709,3.2934],[117.469,3.3026],[117.4666,3.3056],[117.461,3.3054],[117.4583,3.3027],[117.4514,3.2853],[117.4492,3.2818],[117.4438,3.2785],[117.4383,3.2772],[117.4167,3.278],[117.3992,3.2748],[117.3928,3.2762],[117.3841,3.2808],[117.3798,3.2764],[117.3813,3.2708],[117.386,3.2714],[117.3965,3.2654],[117.4018,3.2595],[117.4085,3.2496],[117.4143,3.2478],[117.4202,3.2506],[117.423,3.2499],[117.4288,3.254],[117.4327,3.2605],[117.4445,3.2722],[117.4553,3.2774]],[[117.3758,3.2803],[117.3816,3.2866],[117.3827,3.2913],[117.388,3.2996],[117.3862,3.3083],[117.3798,3.309],[117.3752,3.299],[117.3687,3.294],[117.3655,3.2868],[117.3664,3.2818]],[[117.3664,3.2818],[117.3665,3.2816]],[[117.3665,3.2816],[117.3667,3.2804],[117.3629,3.2788],[117.3594,3.272],[117.3559,3.2715]],[[117.3559,3.2715],[117.3549,3.2713],[117.355,3.2709]],[[117.355,3.2709],[117.3563,3.2667],[117.3601,3.2646],[117.363,3.254],[117.366,3.2545],[117.3705,3.2649],[117.3793,3.2712],[117.3753,3.2743],[117.3758,3.2803]],[[117.514,3.3115],[117.5056,3.3207],[117.492,3.3262],[117.4797,3.3281],[117.4639,3.332],[117.4567,3.335],[117.4471,3.3405],[117.4423,3.3406],[117.4356,3.3373],[117.4223,3.3263],[117.4147,3.3212],[117.4027,3.3169],[117.3963,3.313],[117.3915,3.3145],[117.3876,3.3182],[117.3841,3.3173],[117.3828,3.3125],[117.3895,3.3059],[117.39,3.2992],[117.3835,3.2866],[117.3859,3.281],[117.3961,3.2763],[117.4027,3.2764],[117.4134,3.2791],[117.4361,3.2786],[117.4447,3.2801],[117.4492,3.2846],[117.4533,3.2963],[117.4574,3.3051],[117.4624,3.3081],[117.4695,3.3055],[117.4736,3.2972],[117.471,3.2869],[117.4668,3.2824],[117.4571,3.2762],[117.4611,3.2723],[117.47,3.2754],[117.4824,3.2754],[117.4926,3.2774],[117.4989,3.2749],[117.5023,3.2768],[117.5078,3.2748],[117.5165,3.2757],[117.5206,3.2811],[117.5243,3.2925],[117.5218,3.3012],[117.514,3.3115]],[[117.4943,3.4067],[117.4905,3.4075],[117.4743,3.407],[117.4676,3.406],[117.455,3.4063],[117.4493,3.4034],[117.4481,3.3981],[117.4502,3.3787],[117.4497,3.3613],[117.4516,3.3491],[117.4552,3.3476],[117.4812,3.3447],[117.4876,3.3409],[117.4974,3.3416],[117.5033,3.3495],[117.5052,3.3589],[117.5021,3.3711],[117.5019,3.3866],[117.4993,3.4022],[117.4943,3.4067]],[[117.3312,3.3796],[117.3298,3.3681],[117.3278,3.361],[117.3242,3.3584],[117.3187,3.3579],[117.3039,3.3689],[117.3132,3.3665],[117.3215,3.3606],[117.3243,3.3629],[117.3262,3.3764],[117.3295,3.3922],[117.3274,3.4002],[117.3236,3.4029],[117.3132,3.4069],[117.3068,3.4077],[117.3011,3.4106],[117.2988,3.4211],[117.2954,3.4253],[117.2898,3.4264],[117.2839,3.4234],[117.2853,3.4138],[117.2843,3.4098],[117.2788,3.4031],[117.2836,3.3932],[117.2796,3.3851],[117.2755,3.3812]],[[117.988,2.4341],[117.9807,2.4362],[117.9663,2.444],[117.9599,2.449],[117.9477,2.4603],[117.9375,2.4709],[117.9258,2.4847],[117.9149,2.4995],[117.9008,2.5212],[117.8952,2.5262],[117.887,2.5373],[117.8811,2.541],[117.87,2.553],[117.8621,2.5593],[117.8418,2.5834],[117.8333,2.5926],[117.829,2.5947],[117.8167,2.6047],[117.8147,2.6046],[117.8091,2.6108],[117.7997,2.6242],[117.7937,2.6359],[117.7898,2.649],[117.7887,2.6691],[117.7907,2.6809],[117.7919,2.6936],[117.7909,2.7178],[117.7876,2.729],[117.7848,2.7434],[117.7829,2.7478],[117.7785,2.7485],[117.7708,2.746],[117.7503,2.7523],[117.744,2.7521],[117.7432,2.7588],[117.7346,2.7661],[117.7323,2.7695],[117.7242,2.7714],[117.6994,2.7812],[117.691,2.7835],[117.6873,2.782],[117.682,2.7833],[117.6769,2.7824],[117.6724,2.7858],[117.659,2.7891],[117.6445,2.7917],[117.6362,2.7914],[117.6255,2.7938],[117.6152,2.7952],[117.6098,2.8031],[117.6021,2.8094],[117.5994,2.8143],[117.5807,2.8388],[117.5696,2.8434],[117.5635,2.8426],[117.5532,2.8367],[117.5417,2.8254],[117.5403,2.8226],[117.5432,2.8153],[117.5441,2.8077],[117.5397,2.8049],[117.5201,2.8161],[117.5155,2.8233],[117.5081,2.8254],[117.4926,2.821],[117.4859,2.8169],[117.4817,2.819],[117.4841,2.8344],[117.4758,2.8402],[117.4691,2.8372],[117.464,2.8318],[117.4591,2.8313],[117.4477,2.8326],[117.4442,2.84],[117.4493,2.8434],[117.4486,2.8366],[117.4508,2.8325],[117.4635,2.8325],[117.4687,2.8381],[117.4774,2.8414],[117.4852,2.8358],[117.483,2.8185],[117.485,2.8178],[117.4958,2.8246],[117.507,2.8266],[117.5154,2.825],[117.5203,2.8183],[117.5288,2.8138],[117.5387,2.8072],[117.5429,2.8073],[117.5408,2.8169],[117.5388,2.8207],[117.5397,2.8254],[117.5544,2.84],[117.5665,2.8457],[117.5637,2.8495],[117.5609,2.8575],[117.5557,2.8615],[117.5507,2.855],[117.5497,2.8459],[117.5444,2.8407],[117.5407,2.8416],[117.5376,2.8512],[117.5243,2.8519],[117.518,2.8576],[117.5163,2.8569],[117.5163,2.848],[117.5141,2.8434],[117.5098,2.841],[117.5062,2.8443],[117.5103,2.8491],[117.5104,2.8532],[117.5038,2.8557],[117.5027,2.8482],[117.5007,2.847]],[[117.5007,2.847],[117.4989,2.8458]],[[117.4989,2.8458],[117.4977,2.845],[117.4879,2.8503],[117.4806,2.8483],[117.4763,2.8508],[117.4721,2.86],[117.4659,2.859],[117.4678,2.8541],[117.4671,2.8489],[117.4608,2.8472],[117.456,2.8499],[117.4495,2.8642],[117.4402,2.8644],[117.4305,2.8565],[117.4203,2.857],[117.4178,2.8585],[117.4174,2.8643],[117.4134,2.868],[117.4132,2.8572],[117.4104,2.8536],[117.3966,2.8566],[117.3912,2.8509],[117.3883,2.8532],[117.3911,2.8684],[117.3786,2.8724],[117.3688,2.8689],[117.3651,2.8642],[117.3612,2.8429],[117.3624,2.8322],[117.3646,2.8287],[117.3712,2.8402],[117.3705,2.8306],[117.3717,2.8276],[117.378,2.8268],[117.373,2.8206],[117.3701,2.814],[117.3634,2.8156],[117.3627,2.8091],[117.3599,2.8004],[117.3554,2.7969],[117.3512,2.7976],[117.3472,2.8046],[117.3473,2.8133],[117.3427,2.8112],[117.3412,2.8053],[117.3371,2.8022],[117.3334,2.803],[117.3314,2.8092],[117.3311,2.8213],[117.3267,2.8195],[117.321,2.8107],[117.3226,2.8056],[117.329,2.797],[117.3342,2.7874],[117.3349,2.7783],[117.3289,2.7754],[117.3245,2.7823],[117.3208,2.7799],[117.306,2.752],[117.3033,2.7497],[117.2978,2.7498],[117.2981,2.7521],[117.3044,2.7532],[117.3125,2.7702],[117.3214,2.7848],[117.3242,2.7848],[117.3278,2.7797],[117.3321,2.778],[117.3323,2.7848],[117.3294,2.7919],[117.3197,2.8057],[117.3194,2.8132],[117.3239,2.8212],[117.3285,2.8247],[117.3336,2.8202],[117.3346,2.8083],[117.3385,2.809],[117.3438,2.8174],[117.3485,2.8164],[117.3505,2.8062],[117.3531,2.8002],[117.3564,2.7994],[117.3591,2.8067],[117.3605,2.8177],[117.3597,2.8254],[117.3564,2.8382],[117.3538,2.8446],[117.3424,2.8561],[117.3389,2.8613],[117.3363,2.8687],[117.3374,2.8767],[117.3362,2.8846],[117.3324,2.89],[117.3235,2.8968],[117.3255,2.9003],[117.3315,2.9011],[117.3375,2.9062],[117.3418,2.9125],[117.3442,2.92],[117.3425,2.9325],[117.346,2.9448],[117.3543,2.9562],[117.3568,2.9625],[117.3645,2.9762],[117.3705,2.9836],[117.3708,2.9926],[117.374,2.9964],[117.3771,3.0057],[117.3853,3.0139],[117.3861,3.0289],[117.3894,3.0314],[117.3865,3.037],[117.3793,3.0409],[117.3777,3.0268],[117.37,3.0317],[117.3645,3.0333],[117.3695,3.0379],[117.3727,3.033],[117.3757,3.0329],[117.3776,3.0387],[117.3766,3.0424],[117.3715,3.0463],[117.3538,3.0468],[117.351,3.0507],[117.3501,3.0603],[117.3458,3.0694],[117.345,3.074],[117.3487,3.0791],[117.3534,3.0779],[117.3579,3.0681],[117.3633,3.068],[117.3651,3.0711],[117.3661,3.0796],[117.3696,3.0831],[117.3802,3.0804],[117.3823,3.0837],[117.3758,3.0878],[117.3681,3.0855],[117.3633,3.0883],[117.3611,3.0942],[117.3595,3.1054],[117.3622,3.1134],[117.3671,3.1166],[117.3745,3.1151],[117.3783,3.1112],[117.3805,3.1046],[117.3812,3.0974],[117.3859,3.096],[117.3945,3.1076],[117.399,3.1115],[117.406,3.1149],[117.4263,3.1131],[117.4359,3.1218],[117.4489,3.1279],[117.4622,3.127],[117.4657,3.1293],[117.4609,3.1418],[117.4542,3.15],[117.4487,3.1543],[117.4433,3.1621],[117.4261,3.1727],[117.4167,3.1724],[117.4011,3.1613],[117.3958,3.1551],[117.3936,3.1671],[117.3823,3.1726],[117.3689,3.1812],[117.3408,3.181],[117.3326,3.1755],[117.3256,3.1661],[117.3176,3.1585],[117.3124,3.1574],[117.3026,3.1587],[117.2932,3.1577],[117.2908,3.1559],[117.2871,3.1384],[117.2847,3.1391],[117.2882,3.156],[117.2803,3.1578],[117.2728,3.1578],[117.2696,3.1538],[117.2693,3.1411],[117.265,3.1514],[117.2676,3.1584],[117.2718,3.1609],[117.2861,3.1609],[117.2962,3.1616],[117.3155,3.1643],[117.3182,3.1663],[117.3186,3.1734],[117.3155,3.1847],[117.3127,3.1886],[117.3077,3.2068],[117.3016,3.208],[117.2935,3.2038],[117.2844,3.1961],[117.276,3.1871],[117.2671,3.1827],[117.2663,3.1808],[117.2543,3.1826],[117.2452,3.1885],[117.2385,3.1887],[117.2322,3.1764],[117.2279,3.1736],[117.2223,3.1736],[117.2128,3.18],[117.2153,3.184],[117.2334,3.1929],[117.238,3.1939],[117.2544,3.1895],[117.2638,3.1852],[117.2679,3.1863],[117.2776,3.1952],[117.2795,3.2047],[117.2744,3.2095],[117.271,3.2181],[117.2626,3.2318],[117.2512,3.2368],[117.2374,3.2413],[117.2302,3.2399],[117.2159,3.244],[117.2067,3.2512],[117.1896,3.2485],[117.1819,3.2495],[117.1762,3.2484],[117.1715,3.2525],[117.1596,3.2596],[117.1626,3.2605],[117.1705,3.2578],[117.1802,3.2578],[117.1863,3.2557],[117.1893,3.2529],[117.1943,3.2549],[117.2029,3.2558],[117.2243,3.2496],[117.2326,3.2487],[117.245,3.2495],[117.2551,3.252],[117.2651,3.2522],[117.2725,3.26],[117.2704,3.251],[117.2722,3.2426],[117.281,3.2375],[117.2865,3.237],[117.2947,3.2407],[117.3035,3.2414],[117.3092,3.2367],[117.3129,3.2239],[117.3155,3.2186],[117.3159,3.2137],[117.3213,3.2111],[117.3299,3.2113],[117.3344,3.2131],[117.3388,3.2208],[117.3476,3.2251],[117.3506,3.2233],[117.3613,3.226],[117.3731,3.2272],[117.3779,3.2296],[117.3845,3.2373],[117.3963,3.2578],[117.3873,3.2665],[117.3798,3.2676],[117.3734,3.2619],[117.3688,3.2526],[117.3609,3.2524],[117.3592,3.262],[117.3544,3.265],[117.3521,3.2693],[117.355,3.2709]],[[117.355,3.2709],[117.3559,3.2715]],[[117.3559,3.2715],[117.3599,3.2737],[117.3632,3.2807],[117.3665,3.2816]],[[117.3665,3.2816],[117.3664,3.2818]],[[117.3664,3.2818],[117.3644,3.2876],[117.3674,3.2942],[117.3703,3.2963],[117.3739,3.3052],[117.383,3.3201],[117.3881,3.3228],[117.388,3.3264],[117.3915,3.3383],[117.3899,3.3453],[117.3752,3.3546]],[[117.568,3.5458],[117.5736,3.5488],[117.5689,3.552],[117.5625,3.5527],[117.5588,3.5488],[117.568,3.5458]],[[117.4968,3.5452],[117.479,3.5484],[117.441,3.5503],[117.4241,3.5554],[117.4154,3.5564],[117.4126,3.5452],[117.4151,3.5416],[117.4287,3.5397],[117.4338,3.5377],[117.4416,3.5367],[117.4467,3.5308],[117.4461,3.5263],[117.4416,3.5203],[117.4412,3.5117],[117.4553,3.5152],[117.4629,3.5144],[117.4729,3.5109],[117.4782,3.5063],[117.4828,3.4993],[117.4884,3.4986],[117.5014,3.5063],[117.511,3.5049],[117.5188,3.4948],[117.5285,3.4883],[117.535,3.4903],[117.5401,3.4795],[117.5464,3.4712],[117.5697,3.4753],[117.5945,3.4743],[117.6055,3.4744],[117.6108,3.4772],[117.6149,3.485],[117.6118,3.4973],[117.6094,3.5],[117.5867,3.5107],[117.5754,3.5168],[117.5569,3.5241],[117.5467,3.5257],[117.5344,3.5293],[117.5069,3.5428],[117.4968,3.5452]],[[117.8563,3.5731],[117.8583,3.5769],[117.8554,3.58],[117.8508,3.5755],[117.8563,3.5731]],[[117.8713,3.4767],[117.8651,3.4813],[117.8633,3.4845],[117.8632,3.4927],[117.8587,3.4977],[117.8543,3.5104],[117.8547,3.5161],[117.8525,3.5286],[117.8497,3.5355],[117.8446,3.5386],[117.8372,3.5523],[117.8305,3.5571],[117.8238,3.5705],[117.8172,3.5747],[117.8005,3.5875],[117.7954,3.5826],[117.7877,3.5778],[117.774,3.5732],[117.7685,3.5696],[117.7604,3.5666],[117.7547,3.5611],[117.7522,3.5555],[117.7508,3.5449],[117.7511,3.5319],[117.7564,3.5242],[117.7593,3.5144],[117.771,3.5041],[117.7818,3.4992],[117.7853,3.495],[117.7983,3.4897],[117.8081,3.4805],[117.814,3.4762],[117.8199,3.4766],[117.8245,3.4744],[117.8327,3.4636],[117.8379,3.4586],[117.8414,3.458],[117.8452,3.4518],[117.8558,3.4504],[117.8658,3.4468],[117.87,3.4534],[117.8743,3.4675],[117.8713,3.4767]],[[117.6141,3.5785],[117.5744,3.5865],[117.5607,3.5882],[117.5581,3.587],[117.553,3.579],[117.5483,3.5752],[117.5405,3.5747],[117.5344,3.5761],[117.522,3.5831],[117.5093,3.5862],[117.5056,3.5846],[117.5121,3.5766],[117.5312,3.5634],[117.5373,3.5607],[117.5475,3.56],[117.5593,3.5608],[117.5708,3.5586],[117.5819,3.555],[117.5888,3.5516],[117.5986,3.5453],[117.6069,3.5414],[117.6232,3.5373],[117.6378,3.5401],[117.6537,3.5424],[117.6591,3.5461],[117.6625,3.5505],[117.6628,3.5548],[117.6591,3.5557],[117.6508,3.5624],[117.6375,3.57],[117.6141,3.5785]],[[117.4944,3.5694],[117.496,3.5735],[117.4909,3.5769],[117.4624,3.5914],[117.4594,3.5863],[117.4664,3.5756],[117.4703,3.5731],[117.4944,3.5694]]]}},{"type":"Feature","properties":{"mhid":"1332:377","alt_name":"KABUPATEN TANA TIDUNG","latitude":3.55,"longitude":117.25,"sample_value":673},"geometry":{"type":"MultiLineString","coordinates":[[[117.4173,3.362],[117.4193,3.3671],[117.4191,3.377],[117.4147,3.3759],[117.4173,3.362]],[[117.424,3.3405],[117.4354,3.3491],[117.4385,3.3637],[117.4364,3.3733],[117.4393,3.3862],[117.4428,3.3948],[117.4431,3.4063],[117.44,3.4161],[117.4355,3.4187],[117.4195,3.4207],[117.3926,3.43],[117.3766,3.4384],[117.3668,3.441],[117.3659,3.4317],[117.3666,3.4228],[117.3692,3.4166],[117.3728,3.4142],[117.3931,3.4092],[117.3976,3.4073],[117.4081,3.4001],[117.4128,3.3948],[117.4209,3.3816],[117.4223,3.3769],[117.4216,3.367],[117.4157,3.3429],[117.4195,3.3395],[117.424,3.3405]],[[117.3752,3.3546],[117.3906,3.3459],[117.3941,3.3411],[117.3909,3.3318],[117.39,3.3249],[117.3959,3.3217],[117.4102,3.3269],[117.4153,3.3362],[117.413,3.3422],[117.4126,3.3509],[117.4142,3.3617],[117.4127,3.3778],[117.4143,3.3868],[117.4131,3.3913],[117.3979,3.4039],[117.3871,3.4085],[117.3721,3.4107],[117.368,3.4144],[117.3648,3.4208],[117.3629,3.4278],[117.3618,3.4388],[117.3587,3.4465],[117.3501,3.4497],[117.3233,3.4508],[117.3142,3.4506],[117.3059,3.4487],[117.3035,3.4433],[117.3086,3.4309],[117.3127,3.4178],[117.315,3.4148],[117.3255,3.407],[117.3319,3.3982],[117.3332,3.3935],[117.3312,3.3796]],[[117.4162,3.444],[117.4108,3.4483],[117.398,3.4519],[117.4022,3.4468],[117.4162,3.444]],[[117.4593,3.4392],[117.4571,3.4469],[117.4441,3.4531],[117.4278,3.4538],[117.4362,3.448],[117.4473,3.4424],[117.4593,3.4392]],[[117.2919,3.4645],[117.2925,3.4669],[117.2827,3.4687],[117.284,3.4647],[117.2919,3.4645]],[[117.3315,3.4819],[117.3241,3.4885],[117.3187,3.486],[117.3187,3.4828],[117.3315,3.4819]],[[117.4099,3.5506],[117.412,3.5575],[117.4079,3.5605],[117.4038,3.5586],[117.4064,3.552],[117.4099,3.5506]],[[117.3176,3.5728],[117.3323,3.58],[117.3282,3.5826],[117.3121,3.581],[117.3089,3.5752],[117.3145,3.5707],[117.3176,3.5728]],[[117.3937,3.5845],[117.3945,3.5814],[117.402,3.5735],[117.4044,3.5681],[117.4082,3.5662],[117.4161,3.5663],[117.4156,3.575],[117.4135,3.5812],[117.4109,3.583],[117.3937,3.5845]],[[117.4026,3.5686],[117.4022,3.5715],[117.3941,3.5809],[117.3925,3.5847],[117.381,3.5851],[117.3671,3.5805],[117.371,3.578],[117.4026,3.5686]],[[117.2789,3.5875],[117.237,3.587],[117.2325,3.5845],[117.2189,3.5719],[117.2145,3.5616],[117.2076,3.5487],[117.202,3.542],[117.2011,3.5389],[117.2073,3.5289],[117.2199,3.5118],[117.2257,3.5013],[117.2318,3.4959],[117.2495,3.4916],[117.2598,3.4883],[117.2733,3.4857],[117.2955,3.4839],[117.3045,3.4852],[117.3232,3.4914],[117.3328,3.4879],[117.3463,3.4839],[117.3712,3.4731],[117.381,3.4696],[117.3953,3.4677],[117.4086,3.4667],[117.4169,3.4645],[117.4316,3.4586],[117.4448,3.4567],[117.4612,3.4505],[117.4655,3.4475],[117.476,3.4358],[117.4851,3.432],[117.4877,3.4384],[117.4871,3.4512],[117.4915,3.4575],[117.4989,3.4644],[117.5111,3.4721],[117.5146,3.4752],[117.5179,3.4819],[117.5086,3.4915],[117.5053,3.4972],[117.5004,3.4969],[117.4883,3.4915],[117.4823,3.4919],[117.4765,3.4958],[117.4727,3.5007],[117.4657,3.5068],[117.4552,3.5093],[117.4429,3.5036],[117.4355,3.508],[117.4343,3.5146],[117.4349,3.5232],[117.4372,3.5286],[117.431,3.5315],[117.4156,3.5344],[117.4083,3.5374],[117.3925,3.5386],[117.403,3.5423],[117.401,3.5469],[117.3949,3.5511],[117.3825,3.5557],[117.369,3.5634],[117.3602,3.5649],[117.3412,3.5655],[117.3335,3.5649],[117.3135,3.5603],[117.3056,3.5598],[117.2933,3.563],[117.2824,3.5721],[117.2788,3.5785],[117.2789,3.5875]],[[117.4147,3.6046],[117.4034,3.6103],[117.3938,3.6136],[117.3852,3.613],[117.3697,3.6077],[117.36,3.6053],[117.3441,3.6037],[117.3242,3.6007],[117.3039,3.6015],[117.2935,3.5992],[117.2913,3.5971],[117.2959,3.5917],[117.299,3.5822],[117.3034,3.5788],[117.3084,3.5826],[117.3221,3.5859],[117.3419,3.5878],[117.3649,3.5887],[117.3823,3.59],[117.3988,3.5898],[117.4113,3.5875],[117.4176,3.5837],[117.426,3.5749],[117.4309,3.5658],[117.438,3.5616],[117.4448,3.5627],[117.4576,3.5669],[117.4602,3.569],[117.4581,3.5794],[117.4554,3.5822],[117.4147,3.6046]],[[117.5447,3.5802],[117.5494,3.5855],[117.548,3.5897],[117.549,3.5991],[117.5463,3.6034],[117.5399,3.609],[117.5249,3.6148],[117.5208,3.6154],[117.515,3.6131],[117.5121,3.6091],[117.5109,3.6034],[117.5066,3.594],[117.5134,3.5915],[117.5263,3.5885],[117.5404,3.5809],[117.5447,3.5802]],[[117.3446,3.6118],[117.3603,3.6139],[117.3715,3.6211],[117.3661,3.6232],[117.3584,3.6234],[117.3412,3.6222],[117.3236,3.6185],[117.3212,3.6128],[117.3267,3.6117],[117.3446,3.6118]],[[117.3826,3.6323],[117.3779,3.6366],[117.3679,3.6335],[117.3705,3.6287],[117.3749,3.6289],[117.3826,3.6323]],[[117.4827,3.6371],[117.4771,3.6466],[117.4747,3.6465],[117.4703,3.6396],[117.4658,3.637],[117.4614,3.6374],[117.4566,3.6335],[117.4368,3.6411],[117.4333,3.6379],[117.4333,3.6322],[117.4297,3.6244],[117.4322,3.6217],[117.4431,3.6164],[117.4594,3.6119],[117.4693,3.6084],[117.4907,3.5978],[117.4961,3.5982],[117.5028,3.6048],[117.5147,3.6227],[117.5182,3.6313],[117.517,3.6387],[117.5103,3.6346],[117.5052,3.6342],[117.4963,3.6376],[117.4891,3.6344],[117.4827,3.6371]],[[117.502,3.6685],[117.4919,3.6682],[117.4896,3.6656],[117.4891,3.6555],[117.4976,3.6402],[117.5034,3.6389],[117.5078,3.6357],[117.5167,3.6411],[117.5213,3.6403],[117.5182,3.6525],[117.511,3.6609],[117.502,3.6685]],[[117.2755,3.3812],[117.2819,3.3946],[117.2772,3.401],[117.2784,3.4062],[117.2834,3.413],[117.2815,3.4223],[117.2829,3.426],[117.2889,3.4287],[117.2973,3.427],[117.3015,3.4214],[117.3036,3.4118],[117.3088,3.4147],[117.3036,3.4224],[117.3002,3.4298],[117.2971,3.4423],[117.2994,3.4493],[117.3043,3.4543],[117.321,3.4593],[117.322,3.4622],[117.3132,3.4659],[117.304,3.4655],[117.289,3.4633],[117.2833,3.464],[117.2751,3.4688],[117.2534,3.4713],[117.2414,3.477],[117.2256,3.4885],[117.2211,3.4861],[117.222,3.4672],[117.2232,3.4561],[117.2292,3.4451],[117.2283,3.4378],[117.2241,3.4428],[117.2172,3.4372],[117.2014,3.4341],[117.1919,3.4291],[117.178,3.4252],[117.1712,3.4287],[117.1733,3.4156],[117.1725,3.4124],[117.1639,3.4123],[117.1614,3.417],[117.1657,3.4183],[117.1677,3.4139],[117.1714,3.4134],[117.1698,3.4294],[117.1732,3.4311],[117.1775,3.4269],[117.1813,3.4271],[117.1855,3.4307],[117.1847,3.4431],[117.1823,3.4464],[117.1748,3.4479],[117.1671,3.4476],[117.1624,3.4498],[117.1539,3.4575],[117.155,3.4587],[117.1649,3.4495],[117.1788,3.4495],[117.1844,3.4474],[117.1872,3.4414],[117.1872,3.4311],[117.1894,3.4304],[117.2049,3.4392],[117.2198,3.4424],[117.2212,3.4442],[117.214,3.4626],[117.2132,3.4678],[117.2144,3.481],[117.2177,3.4918],[117.2109,3.501],[117.2069,3.5165],[117.1958,3.5277],[117.1933,3.5391],[117.2004,3.5526],[117.2034,3.5615],[117.2086,3.5716],[117.2163,3.5808],[117.2257,3.5891],[117.2281,3.5964],[117.2269,3.6026],[117.2204,3.6091],[117.2073,3.6097],[117.19,3.6134],[117.1725,3.6195],[117.1659,3.6188],[117.1496,3.6192],[117.1367,3.6208],[117.1278,3.6207]],[[117.1203,3.6358],[117.1285,3.6367],[117.1433,3.6407],[117.1537,3.6442],[117.1702,3.6441],[117.1865,3.6393],[117.2063,3.632],[117.2121,3.6316],[117.2276,3.628],[117.256,3.6182],[117.2699,3.6178],[117.3033,3.6219],[117.3209,3.6236],[117.3454,3.6305],[117.3553,3.6326],[117.3735,3.639],[117.3802,3.6403],[117.3937,3.6398],[117.3994,3.6379],[117.4254,3.6256],[117.4287,3.6254],[117.432,3.6324],[117.4322,3.6386],[117.4367,3.6423],[117.4522,3.6368],[117.4558,3.6346],[117.4604,3.6381],[117.4674,3.6387],[117.4734,3.6477],[117.4785,3.6472],[117.4838,3.6374],[117.4879,3.6361],[117.496,3.6406],[117.4904,3.6499],[117.488,3.6569],[117.4896,3.6702]],[[117.7445,3.6995],[117.7445,3.7056],[117.7404,3.7124],[117.7331,3.7179],[117.7315,3.7128],[117.7303,3.7013],[117.728,3.698]],[[117.728,3.698],[117.7277,3.6975],[117.7278,3.6973]],[[117.7278,3.6973],[117.7298,3.6937],[117.7295,3.6921]],[[117.7295,3.6921],[117.7295,3.692]],[[117.7295,3.692],[117.7282,3.6855],[117.7213,3.6785],[117.7155,3.6754],[117.7088,3.6686],[117.711,3.6488],[117.7184,3.6377],[117.7206,3.6385],[117.7305,3.6323],[117.7422,3.6364],[117.7502,3.6432],[117.7522,3.6491],[117.7641,3.6614],[117.7598,3.6643],[117.7607,3.6693],[117.7651,3.6696],[117.7688,3.6766],[117.7685,3.6821],[117.7655,3.6862],[117.7604,3.6894],[117.7531,3.6913],[117.7445,3.6995]],[[117.7731,3.7436],[117.7696,3.7475],[117.7574,3.7513],[117.7536,3.7488],[117.7674,3.7444],[117.7731,3.7436]],[[117.7843,3.7516],[117.7717,3.7539],[117.7499,3.7623],[117.7454,3.7623],[117.7431,3.7589],[117.7474,3.7555],[117.7626,3.7518],[117.7718,3.7485],[117.7817,3.7426],[117.7923,3.7409],[117.8006,3.7324],[117.807,3.7304],[117.8135,3.7335],[117.8155,3.7422],[117.8095,3.753],[117.7978,3.7538],[117.7843,3.7516]],[[117.671,3.7747],[117.6646,3.7726],[117.6695,3.7686],[117.6777,3.7656],[117.6791,3.7628],[117.7011,3.7505],[117.7084,3.7484],[117.7123,3.7429],[117.725,3.7442],[117.7304,3.741],[117.7285,3.7316],[117.7311,3.729],[117.735,3.7202],[117.7428,3.715],[117.7477,3.7077],[117.7491,3.7011],[117.7542,3.6966],[117.758,3.6972],[117.7705,3.6922],[117.7797,3.6855],[117.7855,3.6884],[117.792,3.6887],[117.8035,3.697],[117.8162,3.7043],[117.8212,3.703],[117.8262,3.7045],[117.8242,3.7113],[117.8203,3.7138],[117.8144,3.7209],[117.8077,3.7224],[117.7381,3.7489],[117.7179,3.756],[117.7033,3.7602],[117.6873,3.766],[117.6752,3.7744],[117.671,3.7747]],[[117.5953,3.7798],[117.5988,3.7919],[117.5962,3.7949],[117.5923,3.793],[117.5807,3.7808],[117.5779,3.7791],[117.571,3.7792],[117.5594,3.7828],[117.5466,3.7759],[117.5317,3.766],[117.5274,3.7684],[117.5242,3.7736],[117.5191,3.774],[117.5049,3.765],[117.4984,3.7677],[117.4973,3.774],[117.4838,3.7651],[117.4782,3.7557],[117.4783,3.7505],[117.4852,3.7469],[117.4864,3.7421],[117.4834,3.7277],[117.4891,3.7268],[117.491,3.7216],[117.4858,3.7168],[117.4969,3.7088],[117.5019,3.7026],[117.5069,3.6937],[117.5106,3.6847],[117.5137,3.6808],[117.5239,3.6718],[117.5369,3.6633],[117.5556,3.6467],[117.5746,3.6355],[117.5882,3.6293],[117.6072,3.6252],[117.6486,3.6202],[117.6563,3.6167],[117.6664,3.6154],[117.6824,3.6248],[117.6993,3.6299],[117.7048,3.6294],[117.7147,3.6319],[117.716,3.6377],[117.7102,3.6502],[117.7081,3.6685],[117.7149,3.6753],[117.7145,3.6777],[117.7224,3.6799],[117.7277,3.6859],[117.7295,3.692]],[[117.7295,3.692],[117.7295,3.6921],[117.7295,3.6921]],[[117.7295,3.6921],[117.7273,3.696],[117.7278,3.6973]],[[117.7278,3.6973],[117.728,3.698]],[[117.728,3.698],[117.7307,3.7052],[117.7309,3.7127],[117.728,3.7144],[117.7314,3.7207],[117.7295,3.7261],[117.7259,3.729],[117.7115,3.7259],[117.7099,3.7273],[117.727,3.7325],[117.7293,3.7404],[117.7244,3.7432],[117.7126,3.742],[117.7087,3.7477],[117.7031,3.7491],[117.6791,3.762],[117.6773,3.7649],[117.6689,3.768],[117.6639,3.7729],[117.6737,3.7759],[117.6664,3.7834],[117.6599,3.7808],[117.6562,3.7714],[117.6496,3.7676],[117.6399,3.7706],[117.631,3.7761],[117.6236,3.7763],[117.6131,3.7723],[117.6055,3.7714],[117.5988,3.7734],[117.5953,3.7798]]]}},{"type":"Feature","properties":{"mhid":"1332:378","alt_name":"KABUPATEN NUNUKAN","latitude":4.13333,"longitude":116.7,"sample_value":979},"geometry":{"type":"MultiLineString","coordinates":[[[117.4917,3.6807],[117.4906,3.6862],[117.4926,3.6949],[117.4907,3.7024],[117.485,3.7082],[117.4814,3.7086],[117.4706,3.7041],[117.4526,3.7],[117.4474,3.6975],[117.4413,3.6871],[117.4338,3.6843],[117.4296,3.6804],[117.4318,3.675],[117.4462,3.6746],[117.454,3.6796],[117.4617,3.6766],[117.4685,3.672],[117.4741,3.6785],[117.4779,3.6797],[117.4901,3.6776],[117.4917,3.6807]],[[117.8176,3.7698],[117.8144,3.7789],[117.8101,3.7813],[117.79,3.7836],[117.7817,3.7853],[117.78,3.7714],[117.7857,3.7701],[117.7892,3.7674],[117.7965,3.7581],[117.807,3.7593],[117.8166,3.7577],[117.8176,3.7698]],[[117.7418,3.7821],[117.7386,3.7829],[117.7388,3.7893],[117.732,3.7899],[117.7287,3.7829],[117.7231,3.7819],[117.7175,3.7851],[117.7139,3.7838],[117.7129,3.7796],[117.7087,3.7785],[117.7041,3.773],[117.7105,3.7711],[117.7249,3.7692],[117.7397,3.7662],[117.7527,3.7649],[117.7681,3.7602],[117.7779,3.7561],[117.785,3.7546],[117.7925,3.7587],[117.7856,3.7681],[117.7776,3.768],[117.7738,3.7747]],[[117.7738,3.7747],[117.773,3.7762],[117.7724,3.7762]],[[117.7724,3.7762],[117.7632,3.7765],[117.7655,3.7845]],[[117.7655,3.7845],[117.7658,3.7854],[117.7652,3.7854]],[[117.7652,3.7854],[117.7547,3.7849]],[[117.7547,3.7849],[117.7547,3.7849],[117.7546,3.7848]],[[117.7546,3.7848],[117.7517,3.7818],[117.7418,3.7821]],[[117.704,3.7814],[117.7007,3.7874],[117.6945,3.79],[117.6893,3.7903],[117.6802,3.7936],[117.681,3.7847],[117.6784,3.7808],[117.6939,3.7747],[117.7035,3.7731],[117.7071,3.7793],[117.697,3.7772],[117.6974,3.783],[117.704,3.7814]],[[117.7418,3.7821],[117.7508,3.7822],[117.7546,3.7848]],[[117.7546,3.7848],[117.7547,3.7849]],[[117.7547,3.7849],[117.7559,3.7857],[117.7648,3.7863],[117.7652,3.7854]],[[117.7652,3.7854],[117.7655,3.7845]],[[117.7655,3.7845],[117.7668,3.7813],[117.7638,3.7768],[117.7713,3.7773],[117.7724,3.7762]],[[117.7724,3.7762],[117.7738,3.7747]],[[117.7738,3.7747],[117.777,3.7715],[117.7797,3.7819],[117.7783,3.7859],[117.765,3.7931],[117.7556,3.7992],[117.7415,3.8017],[117.7353,3.8092],[117.7318,3.8107],[117.7268,3.8055],[117.7287,3.7985]],[[117.7287,3.7985],[117.729,3.7971]],[[117.729,3.7971],[117.7293,3.7961],[117.7245,3.7972],[117.7165,3.7964]],[[117.7165,3.7964],[117.7156,3.7963],[117.7156,3.7959]],[[117.7156,3.7959],[117.7157,3.792],[117.7127,3.7844],[117.7183,3.7853],[117.7264,3.7829],[117.732,3.7906],[117.7392,3.7897],[117.7391,3.7844],[117.7418,3.7821]],[[117.704,3.7814],[117.6975,3.7826],[117.6975,3.7777],[117.7048,3.7797],[117.7108,3.7793],[117.7136,3.7833],[117.7101,3.7864],[117.7151,3.792],[117.7139,3.795],[117.7156,3.7959]],[[117.7156,3.7959],[117.7165,3.7964]],[[117.7165,3.7964],[117.7191,3.7978],[117.729,3.7971]],[[117.729,3.7971],[117.7292,3.7971],[117.7287,3.7985]],[[117.7287,3.7985],[117.7259,3.8057],[117.7312,3.8115],[117.7257,3.817],[117.715,3.8166],[117.7097,3.8187],[117.7076,3.8147],[117.6948,3.8128],[117.6938,3.8072],[117.687,3.8055],[117.6862,3.802],[117.6922,3.7963],[117.6994,3.7946],[117.6991,3.7912],[117.704,3.7814]],[[117.7782,3.8441],[117.7727,3.8463],[117.7661,3.8532],[117.7624,3.8613],[117.7548,3.8689],[117.7317,3.8758],[117.7207,3.8748],[117.715,3.8694],[117.7113,3.8639],[117.7115,3.8581],[117.7247,3.8432],[117.7332,3.8412],[117.7376,3.8374],[117.7356,3.8248],[117.7362,3.8148],[117.7419,3.8075],[117.7473,3.8056],[117.7558,3.8048],[117.7607,3.8032],[117.7711,3.7963],[117.7832,3.79],[117.7927,3.7884],[117.8108,3.7891],[117.812,3.7874],[117.8228,3.7845],[117.8315,3.7854],[117.8335,3.7873],[117.8348,3.7943],[117.8286,3.8057],[117.8207,3.8144],[117.8093,3.822],[117.8076,3.8217],[117.7983,3.8287],[117.7924,3.8317],[117.788,3.8371],[117.7848,3.8366],[117.7782,3.8441]],[[117.6591,3.9433],[117.6525,3.9503],[117.6434,3.9527],[117.6395,3.9497],[117.6404,3.9467],[117.6565,3.941],[117.6591,3.9433]],[[117.655,3.9558],[117.647,3.958],[117.6446,3.9532],[117.6525,3.9514],[117.655,3.9558]],[[117.5228,4.028],[117.521,4.034],[117.5107,4.041],[117.5003,4.0528],[117.495,4.0517],[117.488,4.044],[117.4771,4.036],[117.4681,4.0329],[117.4619,4.0276],[117.4506,4.0137],[117.4443,4.007],[117.4444,4.0034],[117.4511,3.9931],[117.4567,3.9872],[117.4565,3.9816],[117.4592,3.9732],[117.4647,3.9655],[117.4663,3.9562],[117.4585,3.94],[117.4598,3.9314],[117.4635,3.9293],[117.4768,3.9258],[117.4922,3.9176],[117.4959,3.9168],[117.5037,3.918],[117.5172,3.9265],[117.5248,3.9296],[117.531,3.9299],[117.5484,3.9261],[117.5667,3.9178],[117.5754,3.91],[117.5906,3.8895],[117.5962,3.8855],[117.604,3.8826],[117.6214,3.8836],[117.6515,3.8894],[117.6688,3.8901],[117.6825,3.8869],[117.684,3.8943],[117.6871,3.9016],[117.6872,3.9055],[117.6837,3.9148],[117.675,3.9109],[117.6543,3.9108],[117.6383,3.9131],[117.6324,3.917],[117.6293,3.9167],[117.6237,3.9233],[117.6153,3.9251],[117.5983,3.934],[117.5936,3.94],[117.5828,3.9605],[117.5777,3.9693],[117.5723,3.968],[117.5551,3.9857],[117.5521,3.9916],[117.5487,4.0056],[117.548,4.013],[117.5437,4.0191],[117.5327,4.0302],[117.5228,4.028]],[[117.4971,4.0637],[117.4827,4.0627],[117.4782,4.0516],[117.4831,4.05],[117.4849,4.0542],[117.4971,4.0637]],[[117.5822,4.1451],[117.5731,4.1445],[117.5585,4.1409],[117.5485,4.1363],[117.5393,4.1223],[117.5353,4.1124],[117.5386,4.1033],[117.5472,4.1016],[117.5537,4.0985],[117.5638,4.1061],[117.5767,4.1202],[117.583,4.1297],[117.5891,4.1418],[117.5822,4.1451]],[[117.724,3.9898],[117.7241,3.9962],[117.7286,4.0149],[117.7375,4.0294],[117.7434,4.0343],[117.7474,4.0475],[117.7525,4.0587],[117.7514,4.062],[117.7426,4.0692],[117.7315,4.0768],[117.7264,4.0823],[117.7174,4.0896],[117.7116,4.0956],[117.6914,4.1208],[117.6693,4.1439],[117.6566,4.1472],[117.6449,4.1431],[117.6325,4.1367],[117.6178,4.121],[117.6034,4.0995],[117.5926,4.0874],[117.59,4.0794],[117.5944,4.0661],[117.5955,4.0486],[117.6001,4.0346],[117.6014,4.0282],[117.6021,4.0118],[117.6125,4.0012],[117.6258,3.9894],[117.6307,3.9888],[117.632,3.9859],[117.6385,3.9811],[117.6477,3.9774],[117.6537,3.9762],[117.662,3.969],[117.6685,3.9665],[117.6778,3.9675],[117.6915,3.9751],[117.7087,3.9821],[117.716,3.9839],[117.724,3.9898]],[[117.7129,4.1658],[117.6988,4.1658],[117.6864,4.1641],[117.6898,4.1606],[117.6971,4.1566],[117.7073,4.148],[117.7182,4.1366],[117.7289,4.1232],[117.7384,4.1162],[117.7449,4.1102],[117.7552,4.1052],[117.7687,4.0928],[117.7845,4.0845],[117.799,4.0752],[117.8036,4.0745],[117.8138,4.069],[117.8263,4.0571],[117.8323,4.054],[117.8417,4.0462],[117.8476,4.0389],[117.8553,4.0328],[117.863,4.0314],[117.8799,4.0352],[117.8952,4.0446],[117.9014,4.042],[117.9079,4.0436],[117.9123,4.0481],[117.9229,4.0617],[117.9227,4.0735],[117.918,4.0849],[117.9186,4.0971],[117.9239,4.12],[117.9239,4.128],[117.9209,4.1362],[117.9159,4.1429],[117.9074,4.1505],[117.901,4.1645],[117.8372,4.165],[117.8371,4.1646],[117.7629,4.1658],[117.7129,4.1658]],[[117.4896,3.6702],[117.4833,3.6745],[117.4779,3.6741],[117.4709,3.6681],[117.4617,3.6695],[117.4567,3.6754],[117.4531,3.6748],[117.4463,3.6704],[117.4286,3.6716],[117.4248,3.6749],[117.4249,3.6808],[117.4343,3.6913],[117.4374,3.6915],[117.4425,3.7011],[117.4455,3.7031],[117.4714,3.712],[117.479,3.7165],[117.4818,3.7199],[117.4877,3.7226],[117.481,3.7265],[117.4835,3.745],[117.4773,3.7489],[117.4761,3.7551],[117.4808,3.7646],[117.4931,3.7746],[117.4969,3.7759],[117.5002,3.7737],[117.4998,3.7681],[117.5026,3.7663],[117.5071,3.7681],[117.5117,3.7725],[117.5205,3.7767],[117.5258,3.7749],[117.5321,3.7682],[117.5489,3.7809],[117.5561,3.7852],[117.5629,3.7854],[117.5719,3.782],[117.5796,3.7826],[117.5912,3.7958],[117.5966,3.7973],[117.6007,3.7938],[117.6007,3.7872],[117.5985,3.7801],[117.5994,3.7757],[117.6116,3.7752],[117.6198,3.7806],[117.6333,3.7805],[117.6394,3.7782],[117.6489,3.7717],[117.6524,3.7737],[117.6573,3.7851],[117.6624,3.7878],[117.6668,3.7874],[117.6768,3.7819],[117.6799,3.7851],[117.6797,3.7938],[117.6824,3.796],[117.6891,3.791],[117.6951,3.7907],[117.6854,3.8021],[117.6854,3.8054],[117.693,3.8084],[117.6934,3.8126],[117.6971,3.8148],[117.7066,3.8155],[117.7087,3.8199],[117.7165,3.8178],[117.7271,3.8183],[117.7306,3.815],[117.7344,3.8355],[117.7228,3.8409],[117.7078,3.8568],[117.6934,3.8673],[117.6742,3.8775],[117.6685,3.8786],[117.6606,3.878],[117.6471,3.8752],[117.6199,3.8736],[117.6031,3.8752],[117.5927,3.8784],[117.5825,3.8849],[117.5783,3.8898],[117.5675,3.9072],[117.559,3.9148],[117.5449,3.9209],[117.5332,3.9245],[117.5258,3.9246],[117.5206,3.9227],[117.5098,3.9161],[117.5017,3.9133],[117.4894,3.9143],[117.4781,3.9213],[117.4647,3.9257],[117.4578,3.9291],[117.4565,3.9407],[117.4628,3.9516],[117.4643,3.9569],[117.4637,3.9623],[117.4607,3.9684],[117.4562,3.9706],[117.4571,3.9749],[117.4549,3.9863],[117.4482,3.9922],[117.4474,3.9956],[117.4393,4.0039],[117.4382,4.0138],[117.4411,4.0172],[117.4462,4.0296],[117.4492,4.0347],[117.456,4.0423],[117.4652,4.0487],[117.4677,4.0547],[117.4677,4.0613],[117.4738,4.0718],[117.4723,4.0791],[117.4667,4.0835],[117.4457,4.0891],[117.4347,4.093],[117.4248,4.0946],[117.4203,4.0995],[117.4172,4.1088],[117.4175,4.1131],[117.4235,4.1206],[117.4343,4.1269],[117.4433,4.1283],[117.4566,4.1224],[117.47,4.1173],[117.4812,4.1113],[117.4861,4.1108],[117.4915,4.1127],[117.4989,4.1073],[117.5088,4.1038],[117.5218,4.1014],[117.524,4.1038],[117.5315,4.1192],[117.5423,4.1361],[117.5499,4.1443],[117.5703,4.1518],[117.5887,4.1623],[117.593,4.1703],[117.5889,4.1742],[117.582,4.1779],[117.5723,4.1796],[117.5625,4.1765],[117.556,4.1705],[117.5473,4.1669],[117.5449,4.1611],[117.5388,4.1583],[117.5309,4.1583],[117.5265,4.1622],[117.5153,4.1663],[117.5093,4.1699],[117.4982,4.1721],[117.4938,4.171],[117.4901,4.1744],[117.4872,4.1734],[117.4836,4.1681],[117.4791,4.1685],[117.4723,4.1726],[117.466,4.1742],[117.4542,4.1862],[117.4434,4.1909],[117.4412,4.1952],[117.4425,4.2],[117.4368,4.2078],[117.4288,4.2123],[117.4277,4.2178],[117.4245,4.2219],[117.4294,4.2236],[117.4297,4.2297],[117.4242,4.233],[117.4128,4.2367],[117.41,4.2407],[117.4126,4.2459],[117.4123,4.25],[117.4074,4.2543],[117.4006,4.2557],[117.3959,4.2585],[117.3888,4.2572],[117.3836,4.2606],[117.3813,4.2659],[117.3759,4.2687],[117.3723,4.2768],[117.3726,4.2844],[117.3644,4.2854],[117.3545,4.2885],[117.3486,4.2889],[117.3407,4.2923],[117.3196,4.3037],[117.3176,4.3001],[117.3132,4.2997],[117.3093,4.3029],[117.3092,4.3074],[117.3063,4.3103],[117.2959,4.3095],[117.2911,4.3134],[117.286,4.3221],[117.2855,4.3326],[117.2741,4.3414],[117.2736,4.3452],[117.2654,4.3556],[117.2602,4.3594],[117.2572,4.3592],[117.2495,4.3647],[117.2499,4.3711],[117.2469,4.3734],[117.236,4.3687],[117.227,4.3694],[117.2251,4.3638],[117.2196,4.361],[117.2157,4.3548],[117.2133,4.3543],[117.2076,4.3423],[117.2001,4.3356],[117.1901,4.3383],[117.1773,4.3357],[117.1704,4.3366],[117.1659,4.3403],[117.1647,4.3441],[117.1568,4.3532],[117.1507,4.3535],[117.1433,4.351],[117.1443,4.3461],[117.1417,4.3432],[117.1353,4.3448],[117.1301,4.3425],[117.1197,4.34],[117.1155,4.3351],[117.1044,4.3332],[117.0945,4.3357],[117.0852,4.3334],[117.0799,4.3358],[117.0731,4.336],[117.0658,4.3385],[117.0625,4.3417],[117.0555,4.3417],[117.0493,4.3463],[117.0403,4.3456],[117.031,4.3404],[117.0219,4.3203],[117.0196,4.3189],[117.0062,4.3213],[117.0085,4.3423],[117.0079,4.3457],[117.0027,4.3464],[116.9941,4.3428],[116.9838,4.3408],[116.976,4.3434],[116.9722,4.339],[116.9672,4.3376],[116.9613,4.3458],[116.9582,4.3469],[116.9534,4.3571],[116.9466,4.3588],[116.9436,4.3573],[116.924,4.3617],[116.9218,4.3645],[116.917,4.365],[116.9106,4.3678],[116.9015,4.3663],[116.899,4.3614],[116.8896,4.3509],[116.884,4.3471],[116.8772,4.3474],[116.8716,4.3383],[116.8673,4.3367],[116.8616,4.3387],[116.8591,4.3363],[116.8501,4.3389],[116.8471,4.3296],[116.8434,4.3262],[116.8344,4.326],[116.8306,4.3312],[116.8255,4.3321],[116.8209,4.3367],[116.8182,4.3473],[116.8067,4.3506],[116.7973,4.3387],[116.791,4.3383],[116.7853,4.3416],[116.7831,4.3491],[116.784,4.3555],[116.777,4.3655],[116.7733,4.3673],[116.7701,4.3754],[116.7578,4.3832],[116.7535,4.3897],[116.7509,4.3898],[116.7474,4.3845],[116.7417,4.3827],[116.7396,4.366],[116.7353,4.3602],[116.7329,4.3527],[116.7276,4.3485],[116.7183,4.3458],[116.7098,4.3412],[116.7065,4.334],[116.7015,4.334],[116.6934,4.3402],[116.6856,4.3412],[116.681,4.3464],[116.6744,4.3503],[116.667,4.3518],[116.66,4.3488],[116.6568,4.339],[116.6534,4.337],[116.6478,4.3388],[116.639,4.3371],[116.6283,4.3369],[116.6249,4.3397],[116.6211,4.3371],[116.6179,4.3426],[116.62,4.3543],[116.6162,4.3637],[116.6154,4.3729],[116.6109,4.3779],[116.6042,4.3793],[116.5983,4.3739],[116.5874,4.3748],[116.5866,4.381],[116.5798,4.392],[116.5757,4.3965],[116.5723,4.4034],[116.5682,4.4069],[116.5652,4.4062],[116.5633,4.3957],[116.5636,4.3905],[116.5573,4.3872],[116.5483,4.3852],[116.5462,4.3797],[116.538,4.377],[116.5358,4.3726],[116.5322,4.355],[116.5302,4.349],[116.531,4.3451],[116.5385,4.3379],[116.5401,4.3305],[116.536,4.3212],[116.5313,4.3225],[116.5293,4.3259],[116.5226,4.3264],[116.5175,4.3245],[116.505,4.3254],[116.4999,4.3327],[116.4892,4.3346],[116.4864,4.3283],[116.4885,4.3219],[116.4823,4.3155],[116.483,4.3092],[116.4778,4.3019],[116.4706,4.3],[116.4621,4.2941],[116.4555,4.2966],[116.4493,4.2905],[116.4433,4.2882],[116.4382,4.2915],[116.4369,4.3071],[116.4371,4.3232],[116.4282,4.3296],[116.4242,4.3267],[116.4188,4.3267],[116.4184,4.3325],[116.4156,4.3367],[116.4075,4.3443],[116.4035,4.3591],[116.3977,4.3624],[116.3889,4.3587],[116.382,4.3628],[116.3818,4.3687],[116.3795,4.3747],[116.3656,4.379],[116.3621,4.3838],[116.3558,4.3886],[116.3494,4.3893],[116.3388,4.3848],[116.3289,4.3845],[116.322,4.3817],[116.3174,4.373],[116.3063,4.3684],[116.2933,4.372],[116.286,4.3667],[116.2798,4.3597],[116.275,4.3626],[116.2621,4.3614],[116.2578,4.367],[116.254,4.3755],[116.2342,4.377],[116.2247,4.3789],[116.2201,4.3816],[116.2099,4.379],[116.2046,4.3739],[116.2011,4.3732],[116.1988,4.3772],[116.1874,4.3809],[116.1797,4.3806],[116.1711,4.3846],[116.1704,4.3899],[116.1676,4.3912],[116.1615,4.3779],[116.1587,4.3655],[116.1565,4.3492],[116.1561,4.3402],[116.1544,4.3391],[116.1444,4.3394],[116.1402,4.3371],[116.1337,4.3304],[116.1287,4.33],[116.1185,4.3342],[116.1129,4.3333],[116.1103,4.3246],[116.105,4.3244],[116.1041,4.3215],[116.096,4.3153],[116.0918,4.3056],[116.0863,4.3034],[116.0864,4.2967],[116.0839,4.286],[116.0782,4.2771],[116.074,4.277],[116.0566,4.2828],[116.0494,4.29],[116.0418,4.291],[116.0342,4.295],[116.0318,4.2988],[116.0316,4.3069],[116.0334,4.3187],[116.0307,4.3222],[116.031,4.3286],[116.0269,4.3322],[116.0193,4.3331],[116.0134,4.336],[116.0065,4.3357],[116.0037,4.3433],[115.9999,4.3478],[115.9921,4.3493],[115.9888,4.3524],[115.985,4.351],[115.9782,4.3536],[115.9759,4.3576],[115.9628,4.3536],[115.9538,4.3593],[115.9462,4.3562],[115.9417,4.3568],[115.9364,4.3537],[115.9301,4.3536],[115.9219,4.3617],[115.9201,4.3671],[115.9151,4.371],[115.9152,4.3774],[115.9071,4.3924],[115.9001,4.3953],[115.8868,4.3915],[115.8778,4.3924],[115.8729,4.3855],[115.8697,4.3736],[115.8709,4.3692],[115.8693,4.3589],[115.8726,4.3541],[115.868,4.3473],[115.8641,4.3462],[115.865,4.3367],[115.8632,4.3337],[115.8649,4.3205],[115.864,4.3173],[115.8681,4.3084],[115.8687,4.3021],[115.8751,4.2953],[115.8695,4.2852],[115.8636,4.2854],[115.8612,4.281],[115.8539,4.2812],[115.8491,4.2785],[115.8492,4.2731],[115.8381,4.2653],[115.8267,4.2634],[115.8236,4.2604],[115.8281,4.2517],[115.8263,4.2484],[115.826,4.2412],[115.8287,4.2334],[115.8237,4.2311],[115.8173,4.2245],[115.8084,4.2259],[115.8016,4.2198],[115.7985,4.2251],[115.7957,4.2376],[115.7895,4.2403],[115.7761,4.2419],[115.7719,4.2441],[115.7664,4.2443],[115.7636,4.2335],[115.7592,4.2289],[115.7565,4.2178],[115.7504,4.211],[115.7456,4.2105],[115.7423,4.2135],[115.7319,4.2078],[115.7318,4.2018],[115.7286,4.1902],[115.7255,4.1891],[115.7187,4.1938],[115.7097,4.1925],[115.7028,4.1947],[115.6969,4.1856],[115.6964,4.1803],[115.6887,4.1746],[115.6874,4.1652],[115.6828,4.1605],[115.681,4.1486],[115.6826,4.1445],[115.6813,4.1372],[115.6836,4.1323],[115.6816,4.1287],[115.6757,4.1243],[115.6756,4.1151],[115.6741,4.1123],[115.6769,4.1079],[115.6774,4.1021],[115.6748,4.0972],[115.676,4.0855],[115.6732,4.0806],[115.6666,4.0634],[115.6636,4.0592],[115.6611,4.052],[115.6612,4.0476],[115.6584,4.0379],[115.6532,4.0334],[115.6526,4.0205],[115.6492,4.0083],[115.6484,4.0002],[115.6495,3.9962],[115.6437,3.9733],[115.6405,3.9701],[115.6405,3.9638],[115.6322,3.9573],[115.626,3.9445],[115.6162,3.937],[115.6084,3.9395],[115.5981,3.939],[115.5906,3.9431],[115.5846,3.9395],[115.5798,3.9402],[115.5778,3.935],[115.5668,3.9203],[115.5576,3.9174],[115.5691,3.9047],[115.5745,3.9007],[115.5761,3.8936],[115.5816,3.887],[115.5857,3.885],[115.592,3.8895],[115.5962,3.8879],[115.5962,3.8801],[115.6042,3.875],[115.6069,3.8775],[115.617,3.875],[115.6178,3.8612],[115.6146,3.8457],[115.6168,3.8414],[115.6138,3.8327],[115.6127,3.8235],[115.6066,3.8154],[115.6027,3.8002],[115.5946,3.7913],[115.5924,3.7836],[115.5895,3.7824],[115.5882,3.7758],[115.592,3.7712],[115.5851,3.7604],[115.5859,3.7558],[115.5783,3.75],[115.5774,3.7402],[115.5793,3.7356],[115.58,3.7279],[115.576,3.7243],[115.5735,3.7191],[115.5776,3.7151],[115.581,3.7065],[115.5823,3.6961],[115.5799,3.692],[115.5723,3.6839],[115.5713,3.6779],[115.5738,3.6702],[115.5721,3.6628],[115.5708,3.6459],[115.5771,3.6409],[115.5814,3.6335],[115.5766,3.6271],[115.5786,3.62],[115.5767,3.6075],[115.5777,3.6007],[115.5808,3.5947],[115.5878,3.5871],[115.5889,3.5787],[115.5962,3.5759],[115.6001,3.5765],[115.6065,3.5676],[115.6076,3.559],[115.6127,3.5463],[115.6118,3.5309],[115.6088,3.5238],[115.6089,3.517],[115.6123,3.5059],[115.6211,3.4966],[115.6249,3.4893],[115.6251,3.4849],[115.6281,3.4775],[115.6328,3.4773],[115.6348,3.4734],[115.6339,3.4645],[115.6374,3.4622],[115.6414,3.4512],[115.6509,3.4481],[115.6543,3.4416],[115.6601,3.4377]]]}},{"type":"Feature","properties":{"mhid":"1332:379","alt_name":"KOTA TARAKAN","latitude":3.36667,"longitude":117.6,"sample_value":807},"geometry":{"type":"MultiLineString","coordinates":[[[117.5265,3.3428],[117.5265,3.3481],[117.5211,3.3485],[117.5206,3.3429],[117.5265,3.3428]],[[117.6075,3.4348],[117.6016,3.4371],[117.5854,3.4352],[117.5719,3.4327],[117.5598,3.4336],[117.5556,3.4363],[117.5506,3.4357],[117.5373,3.4246],[117.535,3.419],[117.5213,3.4094],[117.521,3.405],[117.5163,3.4002],[117.5144,3.3868],[117.5147,3.3809],[117.5187,3.3675],[117.5313,3.3526],[117.5367,3.3438],[117.5409,3.3273],[117.5421,3.3255],[117.5532,3.319],[117.5666,3.309],[117.5794,3.2962],[117.5943,3.2795],[117.6021,3.2819],[117.6063,3.279],[117.6097,3.2797],[117.6119,3.2699],[117.6186,3.2531],[117.6287,3.2417],[117.6334,3.2392],[117.6419,3.2373],[117.6498,3.24],[117.6566,3.2501],[117.6566,3.267],[117.6576,3.2795],[117.6574,3.2904],[117.655,3.2908],[117.659,3.317],[117.6581,3.3293],[117.6591,3.335],[117.6618,3.3401],[117.6615,3.347],[117.665,3.3585],[117.6689,3.3619],[117.6679,3.3687],[117.6655,3.3696],[117.6661,3.3764],[117.6649,3.3823],[117.6671,3.391],[117.6691,3.3923],[117.6687,3.4032],[117.6648,3.4105],[117.652,3.4159],[117.6491,3.4157],[117.6348,3.4242],[117.6241,3.4315],[117.6183,3.4344],[117.6075,3.4348]]]}},{"type":"Feature","properties":{"mhid":"1332:380","alt_name":"KABUPATEN BOLAANG MONGONDOW","latitude":0.75,"longitude":124.08333,"sample_value":260},"geometry":{"type":"MultiLineString","coordinates":[[[124.2982,1.0072],[124.2974,1.0097],[124.29,1.0045],[124.282,1.0008],[124.2724,0.9987],[124.2625,1.0001],[124.2583,1.0023],[124.2518,0.9999],[124.2434,0.9995],[124.2354,0.9927],[124.2283,0.9898],[124.219,0.9899],[124.2156,0.9929],[124.21,0.9876],[124.2032,0.9897],[124.191,0.9831],[124.1842,0.974],[124.1819,0.9685],[124.177,0.9633],[124.1757,0.9577],[124.1585,0.9455],[124.1477,0.9343],[124.1366,0.9279],[124.1236,0.9243],[124.1162,0.9214],[124.0984,0.9198],[124.0945,0.9229],[124.078,0.9231],[124.0716,0.9215],[124.0587,0.9146],[124.0463,0.9093],[124.0463,0.9074],[124.032,0.8984],[124.0162,0.8934],[124.0011,0.8855],[123.9742,0.8768],[123.9622,0.868],[123.9505,0.8627],[123.9319,0.8601],[123.9295,0.858],[123.9391,0.8522],[123.9433,0.8484],[123.9527,0.8508],[123.953,0.8458],[123.9629,0.8447],[123.9593,0.8371],[123.9513,0.8373],[123.9449,0.8391],[123.9422,0.8368],[123.9349,0.8356],[123.9339,0.8413],[123.9291,0.8399],[123.9167,0.8467],[123.9109,0.8469],[123.9,0.8452],[123.8966,0.8433],[123.8801,0.8389],[123.8713,0.8384],[123.858,0.8401],[123.8499,0.8448],[123.8414,0.8403],[123.8339,0.8399],[123.8187,0.842],[123.8118,0.8449],[123.8068,0.85],[123.7998,0.8534],[123.7916,0.8555],[123.7954,0.8491],[123.8038,0.8417],[123.8023,0.8354],[123.7958,0.8328],[123.7901,0.833],[123.7881,0.8299],[123.7827,0.8316],[123.775,0.8404],[123.7694,0.8375],[123.7645,0.8437],[123.7612,0.8524],[123.7582,0.8449],[123.7624,0.8404],[123.7629,0.8348],[123.7588,0.8345],[123.7525,0.8307],[123.7467,0.8351],[123.747,0.8403],[123.74,0.8446],[123.7371,0.8492],[123.7355,0.8567],[123.7367,0.8645],[123.7307,0.8629],[123.7224,0.8673],[123.7182,0.867],[123.717,0.871],[123.7132,0.874],[123.7081,0.8697],[123.707,0.8584],[123.7003,0.8586],[123.6967,0.8614]]]}},{"type":"Feature","properties":{"mhid":"1332:381","alt_name":"KABUPATEN MINAHASA","latitude":1.2537,"longitude":124.83,"sample_value":401},"geometry":{"type":"MultiLineString","coordinates":[[[124.7843,1.4612],[124.778,1.4596],[124.7723,1.4608],[124.7662,1.4579],[124.7524,1.4539],[124.7449,1.4491],[124.7423,1.4443],[124.7412,1.4366],[124.7304,1.4322],[124.7256,1.4261],[124.7107,1.4197],[124.708,1.4194],[124.7071,1.4112],[124.703,1.4084],[124.6893,1.4091],[124.6851,1.4068],[124.6832,1.3998],[124.6799,1.3964],[124.6707,1.3943],[124.6646,1.3971],[124.6576,1.3944],[124.6471,1.4],[124.6395,1.3995],[124.6328,1.4088],[124.6284,1.4102],[124.6275,1.4154],[124.6237,1.4188],[124.615,1.4183],[124.6088,1.4153],[124.6049,1.41],[124.6054,1.4059],[124.603,1.4014],[124.5965,1.4012],[124.5893,1.3954],[124.5809,1.3983],[124.5741,1.3907],[124.576,1.3857],[124.568,1.3841],[124.5648,1.3783]],[[124.9081,1.0175],[124.9116,1.0186],[124.918,1.0282],[124.9239,1.0304],[124.9335,1.0387],[124.9355,1.0438],[124.9401,1.0497],[124.9449,1.0519],[124.9517,1.0576],[124.954,1.0616],[124.9655,1.0681],[124.9691,1.0735],[124.9718,1.0744],[124.977,1.0806],[124.9831,1.0931],[124.9871,1.0956],[124.9954,1.1069],[124.9973,1.1077],[125.0121,1.1249],[125.0175,1.1367],[125.023,1.1416],[125.0232,1.1501],[125.0257,1.1567],[125.0288,1.1607],[125.032,1.1746],[125.0349,1.1788],[125.035,1.1875],[125.0384,1.1975],[125.0439,1.2101],[125.0471,1.2194],[125.0505,1.2377],[125.0529,1.2406],[125.0564,1.2559],[125.0571,1.2652],[125.0614,1.2753],[125.063,1.288]],[[124.9029,1.2708],[124.9048,1.2753],[124.9138,1.2855],[124.9228,1.281],[124.93,1.2759],[124.9328,1.2697],[124.9338,1.2635],[124.932,1.2581],[124.931,1.2474],[124.9281,1.2398],[124.9194,1.2317],[124.9101,1.2249],[124.9119,1.22],[124.9074,1.2123],[124.9085,1.2099],[124.9037,1.1996],[124.9037,1.1839],[124.8989,1.1745],[124.8928,1.174],[124.8896,1.1756],[124.8878,1.1808],[124.8832,1.1878],[124.8785,1.1893],[124.8723,1.1949],[124.8632,1.1993],[124.8573,1.2039],[124.8573,1.2115],[124.8676,1.2331],[124.8737,1.2364],[124.879,1.2348],[124.8837,1.2399],[124.8899,1.2394],[124.8912,1.2447],[124.8967,1.2435],[124.901,1.2542],[124.9006,1.2651],[124.9029,1.2708]]]}},{"type":"Feature","properties":{"mhid":"1332:382","alt_name":"KABUPATEN KEPULAUAN SANGIHE","latitude":3.5,"longitude":125.55,"sample_value":593},"geometry":{"type":"MultiLineString","coordinates":[[[125.5044,3.0849],[125.5007,3.0912],[125.495,3.0803],[125.5011,3.0772],[125.5026,3.0727],[125.5001,3.0683],[125.5001,3.0629],[125.5046,3.0625],[125.5094,3.0712],[125.5105,3.0788],[125.5044,3.0849]],[[125.4529,3.1495],[125.4494,3.1489],[125.4469,3.143],[125.4527,3.1396],[125.457,3.1403],[125.4555,3.1475],[125.4529,3.1495]],[[125.5266,3.1913],[125.5242,3.1866],[125.5277,3.1762],[125.5209,3.1721],[125.5173,3.174],[125.5159,3.1828],[125.5113,3.1886],[125.5071,3.1844],[125.5084,3.1773],[125.5155,3.1737],[125.5112,3.171],[125.5069,3.1741],[125.4996,3.1728],[125.5002,3.1687],[125.5052,3.1622],[125.5162,3.1558],[125.5231,3.1565],[125.5254,3.1586],[125.5334,3.1601],[125.5347,3.166],[125.5378,3.169],[125.5378,3.1757],[125.5266,3.1913]],[[125.4605,3.255],[125.4495,3.253],[125.4483,3.2487],[125.448,3.2391],[125.4516,3.2344],[125.459,3.2322],[125.4686,3.2367],[125.4726,3.2441],[125.4689,3.2509],[125.4651,3.2543],[125.4605,3.255]],[[125.5803,3.3426],[125.5699,3.3403],[125.5674,3.3332],[125.5705,3.3321],[125.5734,3.3382],[125.5803,3.3426]],[[125.6162,3.366],[125.6119,3.3673],[125.608,3.3652],[125.6055,3.3527],[125.6077,3.3498],[125.6062,3.3445],[125.613,3.3411],[125.6155,3.342],[125.616,3.3494],[125.62,3.3523],[125.6214,3.3636],[125.6162,3.366]],[[125.6439,3.3799],[125.6385,3.3787],[125.6356,3.3733],[125.6389,3.371],[125.644,3.3733],[125.6417,3.3764],[125.6439,3.3799]],[[125.5714,3.4069],[125.5684,3.4138],[125.5638,3.4169],[125.559,3.4097],[125.5613,3.4059],[125.5607,3.4015],[125.5569,3.4005],[125.5564,3.3938],[125.5619,3.3929],[125.5723,3.3979],[125.5756,3.3946],[125.5789,3.3965],[125.5738,3.407],[125.5714,3.4069]],[[125.7114,3.475],[125.7051,3.4742],[125.7034,3.4712],[125.6917,3.4639],[125.6979,3.4562],[125.7035,3.4517],[125.7103,3.4651],[125.7114,3.475]],[[125.6565,3.5361],[125.6541,3.5312],[125.6563,3.5274],[125.6625,3.5304],[125.6611,3.5347],[125.6565,3.5361]],[[125.6429,3.5524],[125.6337,3.5518],[125.6324,3.5475],[125.6367,3.5452],[125.6342,3.5403],[125.6361,3.5376],[125.6422,3.5401],[125.6457,3.5442],[125.6429,3.5524]],[[125.4533,3.7356],[125.4466,3.737],[125.4392,3.7337],[125.4273,3.7344],[125.4176,3.7277],[125.4133,3.7221],[125.404,3.7189],[125.3981,3.7042],[125.3976,3.6933],[125.3987,3.6919],[125.3991,3.6815],[125.3976,3.6732],[125.3991,3.6684],[125.4024,3.6674],[125.4054,3.657],[125.4124,3.6498],[125.4137,3.6439],[125.4181,3.6397],[125.4259,3.6377],[125.4326,3.6279],[125.4423,3.6205],[125.4461,3.6199],[125.4653,3.6129],[125.4804,3.605],[125.4855,3.6056],[125.4887,3.6081],[125.5003,3.6099],[125.5039,3.6054],[125.5018,3.6016],[125.4951,3.5988],[125.4852,3.5968],[125.4824,3.5926],[125.4872,3.5833],[125.4863,3.578],[125.4913,3.5727],[125.4936,3.5784],[125.5027,3.5766],[125.504,3.5716],[125.508,3.5732],[125.5124,3.5653],[125.5073,3.5577],[125.5046,3.5578],[125.5006,3.5482],[125.4974,3.5469],[125.4956,3.5406],[125.4919,3.5339],[125.4918,3.5285],[125.4868,3.5253],[125.49,3.5212],[125.4898,3.5172],[125.4865,3.5118],[125.4884,3.5087],[125.4859,3.4822],[125.4905,3.474],[125.4863,3.4674],[125.494,3.4695],[125.4987,3.4676],[125.4976,3.4591],[125.5011,3.4538],[125.5026,3.4468],[125.5012,3.4391],[125.5047,3.4351],[125.5117,3.44],[125.5192,3.4402],[125.5254,3.4373],[125.5254,3.4326],[125.5204,3.4278],[125.5195,3.4245],[125.5237,3.4191],[125.5227,3.413],[125.5341,3.4125],[125.5384,3.417],[125.5419,3.411],[125.5447,3.41],[125.5491,3.4211],[125.5474,3.426],[125.548,3.4318],[125.5521,3.4322],[125.5552,3.4354],[125.5671,3.4381],[125.5632,3.4254],[125.5638,3.4201],[125.5666,3.4171],[125.5748,3.4157],[125.5813,3.4068],[125.5861,3.4045],[125.5863,3.4013],[125.5918,3.389],[125.5904,3.3804],[125.5845,3.3794],[125.5842,3.3749],[125.5951,3.3799],[125.6024,3.375],[125.6056,3.3708],[125.622,3.3725],[125.6197,3.3832],[125.6233,3.3833],[125.6305,3.3803],[125.6314,3.389],[125.6353,3.3893],[125.6352,3.3804],[125.6381,3.3793],[125.6448,3.3829],[125.6501,3.3896],[125.6576,3.3885],[125.6542,3.3989],[125.6625,3.401],[125.6643,3.4071],[125.6634,3.4141],[125.6708,3.4172],[125.675,3.4247],[125.6764,3.4375],[125.6723,3.4502],[125.6672,3.4516],[125.6682,3.4584],[125.6653,3.4663],[125.6656,3.4761],[125.6712,3.4804],[125.6694,3.4885],[125.6713,3.4928],[125.6685,3.4959],[125.6668,3.5034],[125.6559,3.5028],[125.6541,3.5112],[125.6552,3.5147],[125.6598,3.5157],[125.6623,3.5232],[125.6602,3.5243],[125.6539,3.5193],[125.6557,3.5168],[125.649,3.5123],[125.6448,3.5186],[125.6421,3.5119],[125.6439,3.5075],[125.6438,3.4972],[125.6574,3.4952],[125.6613,3.4893],[125.6575,3.4873],[125.6554,3.4936],[125.6471,3.4938],[125.6438,3.4911],[125.6404,3.4934],[125.637,3.5036],[125.6323,3.5088],[125.6317,3.5147],[125.6266,3.5157],[125.6222,3.5208],[125.6217,3.5242],[125.6165,3.5302],[125.6184,3.5339],[125.6138,3.5406],[125.6058,3.5474],[125.6014,3.5549],[125.5955,3.555],[125.5905,3.5522],[125.5869,3.5616],[125.589,3.5679],[125.5876,3.5741],[125.5831,3.5745],[125.5816,3.5804],[125.577,3.5791],[125.5715,3.5802],[125.5595,3.5778],[125.5624,3.5889],[125.573,3.5894],[125.5789,3.5977],[125.5749,3.6058],[125.5777,3.6074],[125.5863,3.6077],[125.5881,3.6125],[125.5838,3.6194],[125.5869,3.6227],[125.5833,3.6253],[125.5758,3.6265],[125.565,3.625],[125.5634,3.6316],[125.5696,3.6328],[125.5755,3.636],[125.5749,3.6424],[125.5694,3.6492],[125.5614,3.648],[125.5625,3.6542],[125.5576,3.6607],[125.5575,3.6652],[125.5527,3.671],[125.5478,3.6731],[125.5425,3.6791],[125.5427,3.684],[125.5364,3.6897],[125.5182,3.7123],[125.509,3.7211],[125.49,3.7294],[125.4806,3.7308],[125.4669,3.7312],[125.4588,3.735],[125.4533,3.7356]],[[125.5722,3.7699],[125.567,3.7693],[125.555,3.7536],[125.5568,3.7458],[125.562,3.7536],[125.5665,3.7489],[125.5702,3.7497],[125.5706,3.7541],[125.5751,3.7557],[125.583,3.7526],[125.5832,3.7595],[125.5759,3.77],[125.5722,3.7699]],[[125.6046,3.7926],[125.6007,3.7931],[125.5968,3.7897],[125.593,3.791],[125.588,3.7871],[125.5871,3.7788],[125.5889,3.7702],[125.5948,3.7694],[125.597,3.7765],[125.6011,3.7763],[125.6008,3.7816],[125.6048,3.7818],[125.606,3.7878],[125.6131,3.79],[125.618,3.7818],[125.6297,3.7848],[125.6311,3.789],[125.6232,3.793],[125.6081,3.791],[125.6046,3.7926]],[[125.3907,3.913],[125.3841,3.9121],[125.3874,3.9069],[125.3911,3.9078],[125.3907,3.913]],[[125.3201,4.2368],[125.3179,4.2322],[125.3244,4.2272],[125.3297,4.2271],[125.3321,4.2315],[125.327,4.2366],[125.3201,4.2368]],[[125.6933,4.4372],[125.6881,4.4339],[125.6919,4.4314],[125.6964,4.4326],[125.6933,4.4372]],[[125.4382,4.6514],[125.4381,4.6582],[125.4353,4.6627],[125.4338,4.6505],[125.4382,4.6514]],[[125.4912,4.745],[125.487,4.7411],[125.4777,4.7363],[125.4773,4.7295],[125.4833,4.7294],[125.4892,4.7355],[125.4917,4.7414],[125.4912,4.745]]]}},{"type":"Feature","properties":{"mhid":"1332:383","alt_name":"KABUPATEN KEPULAUAN TALAUD","latitude":4.31178,"longitude":126.78085,"sample_value":553},"geometry":{"type":"MultiLineString","coordinates":[[[126.7806,3.8409],[126.7696,3.8496],[126.762,3.8545],[126.7525,3.8527],[126.7439,3.8429],[126.7428,3.8281],[126.7449,3.8117],[126.7529,3.7964],[126.7542,3.7861],[126.765,3.7778],[126.7644,3.7716],[126.7718,3.7604],[126.7753,3.7608],[126.7794,3.7566],[126.7837,3.7476],[126.7892,3.7433],[126.7944,3.7418],[126.8037,3.7427],[126.8133,3.7383],[126.822,3.7276],[126.8247,3.7286],[126.8357,3.7426],[126.84,3.7401],[126.8437,3.7427],[126.8458,3.7482],[126.8513,3.7526],[126.8507,3.7579],[126.8409,3.7749],[126.8392,3.7842],[126.8349,3.7939],[126.8287,3.7996],[126.8254,3.8057],[126.8185,3.8086],[126.8098,3.8247],[126.8031,3.8341],[126.7936,3.8356],[126.7891,3.8394],[126.7806,3.8409]],[[126.7109,3.9464],[126.7088,3.944],[126.7148,3.9387],[126.7175,3.9452],[126.7109,3.9464]],[[126.618,4.0435],[126.6123,4.0435],[126.6083,4.0395],[126.6163,4.0301],[126.6176,4.0208],[126.6141,4.0166],[126.6145,4.0069],[126.6121,4.0014],[126.6151,3.9981],[126.6206,3.9965],[126.6206,3.9904],[126.6134,3.9842],[126.6185,3.9835],[126.6224,3.9858],[126.6266,3.9849],[126.6308,3.9805],[126.6336,3.9706],[126.6371,3.9667],[126.635,3.9582],[126.6377,3.9508],[126.644,3.9471],[126.6506,3.9359],[126.6571,3.9398],[126.6598,3.939],[126.6647,3.9325],[126.6673,3.9316],[126.669,3.9257],[126.6699,3.9166],[126.6643,3.9075],[126.6657,3.8938],[126.6618,3.8835],[126.6635,3.8751],[126.6668,3.8735],[126.6704,3.8647],[126.6765,3.8548],[126.6752,3.8357],[126.677,3.8339],[126.6848,3.8205],[126.6827,3.8125],[126.6932,3.8097],[126.701,3.8117],[126.7053,3.8146],[126.7062,3.8188],[126.7016,3.8298],[126.693,3.8443],[126.6901,3.856],[126.6901,3.8611],[126.6859,3.8633],[126.6853,3.8694],[126.6889,3.8706],[126.6921,3.8679],[126.6975,3.8727],[126.7002,3.8726],[126.7066,3.8815],[126.7164,3.8874],[126.7226,3.8986],[126.7215,3.9032],[126.7229,3.9095],[126.7199,3.9195],[126.7149,3.9261],[126.7073,3.9313],[126.6993,3.9385],[126.6902,3.941],[126.6677,3.9582],[126.6647,3.959],[126.657,3.9683],[126.6532,3.9701],[126.6472,3.9767],[126.642,3.9904],[126.6435,3.9986],[126.6429,4.0163],[126.6407,4.0233],[126.6339,4.0304],[126.6218,4.0375],[126.618,4.0435]],[[126.744,4.5457],[126.7372,4.5426],[126.7314,4.5346],[126.7297,4.5302],[126.7252,4.5247],[126.7203,4.51],[126.7217,4.5006],[126.7209,4.4964],[126.723,4.4915],[126.7289,4.4878],[126.7259,4.4842],[126.7257,4.4777],[126.7325,4.4694],[126.734,4.4617],[126.7267,4.4534],[126.7229,4.4516],[126.7183,4.4564],[126.7145,4.4499],[126.7185,4.4408],[126.7165,4.4343],[126.7105,4.4276],[126.7054,4.4291],[126.7058,4.4221],[126.7009,4.4194],[126.6993,4.4113],[126.7029,4.4055],[126.6993,4.4009],[126.6948,4.4],[126.693,4.3927],[126.698,4.3928],[126.6993,4.3821],[126.6956,4.3767],[126.6876,4.3752],[126.6854,4.3678],[126.6897,4.3588],[126.6841,4.3528],[126.6808,4.3419],[126.6802,4.3345],[126.6814,4.3312],[126.6874,4.328],[126.6992,4.3293],[126.7066,4.3241],[126.709,4.3168],[126.7063,4.3117],[126.7077,4.3073],[126.7137,4.3068],[126.7155,4.3026],[126.7133,4.289],[126.7108,4.2831],[126.7102,4.2746],[126.7172,4.2681],[126.7211,4.2663],[126.7327,4.2672],[126.7415,4.2623],[126.7471,4.2631],[126.7512,4.2552],[126.7577,4.2478],[126.7607,4.2473],[126.7685,4.25],[126.7767,4.2504],[126.7813,4.2488],[126.7907,4.2396],[126.7934,4.235],[126.7928,4.2307],[126.7884,4.2263],[126.7908,4.2199],[126.7912,4.2138],[126.78,4.2014],[126.7729,4.197],[126.7705,4.193],[126.7645,4.1878],[126.76,4.1816],[126.7565,4.1719],[126.7567,4.1691],[126.7495,4.1535],[126.7502,4.1421],[126.7445,4.1377],[126.7368,4.126],[126.7333,4.1165],[126.7333,4.1087],[126.7287,4.1041],[126.7219,4.101],[126.7215,4.0933],[126.7156,4.0913],[126.7129,4.0846],[126.7053,4.0859],[126.6987,4.0808],[126.6966,4.0761],[126.6919,4.0741],[126.6865,4.0741],[126.6812,4.0617],[126.6709,4.0476],[126.6675,4.0408],[126.6683,4.0349],[126.6662,4.0298],[126.6697,4.0191],[126.669,4.0145],[126.6711,4.0025],[126.6802,3.9936],[126.685,3.9925],[126.6966,4.0027],[126.7016,4.0045],[126.7118,4.0036],[126.7191,3.9988],[126.729,3.9968],[126.7309,3.995],[126.7438,3.9926],[126.755,3.9945],[126.7616,3.9943],[126.7718,4.0011],[126.7746,4.0092],[126.78,4.0065],[126.7832,4.0101],[126.7847,4.0171],[126.7914,4.0171],[126.7952,4.0237],[126.7946,4.0316],[126.8019,4.033],[126.8063,4.0299],[126.8092,4.0337],[126.8068,4.0394],[126.8025,4.0413],[126.8016,4.0552],[126.8039,4.0616],[126.803,4.0649],[126.8062,4.0682],[126.8077,4.0773],[126.8051,4.0832],[126.8083,4.0867],[126.8098,4.0922],[126.8084,4.0958],[126.8113,4.0986],[126.8121,4.1049],[126.8049,4.1074],[126.8034,4.1113],[126.8048,4.1243],[126.8007,4.1284],[126.801,4.133],[126.796,4.14],[126.7983,4.1439],[126.7975,4.1492],[126.8015,4.1516],[126.8013,4.1549],[126.808,4.1599],[126.808,4.1665],[126.818,4.1696],[126.8248,4.1793],[126.827,4.1852],[126.8318,4.1893],[126.8505,4.1983],[126.8574,4.2025],[126.8631,4.2093],[126.8696,4.215],[126.8715,4.2184],[126.8715,4.2258],[126.8678,4.2339],[126.8617,4.2347],[126.8592,4.2458],[126.8613,4.2503],[126.8745,4.2528],[126.8824,4.2602],[126.8936,4.2597],[126.8996,4.2622],[126.9028,4.2668],[126.9127,4.2704],[126.9097,4.2746],[126.9101,4.2797],[126.9027,4.2938],[126.8997,4.3018],[126.8941,4.3048],[126.8913,4.3129],[126.8876,4.313],[126.8847,4.3189],[126.8864,4.321],[126.8742,4.3328],[126.866,4.3435],[126.8565,4.3593],[126.8504,4.3754],[126.8489,4.385],[126.8494,4.3901],[126.8527,4.3932],[126.8512,4.4045],[126.8515,4.4113],[126.8569,4.4191],[126.867,4.4239],[126.8698,4.4309],[126.8662,4.4423],[126.8684,4.4559],[126.8668,4.4588],[126.8619,4.4586],[126.8569,4.4641],[126.8536,4.4656],[126.857,4.4822],[126.8556,4.4893],[126.8515,4.487],[126.843,4.4894],[126.8373,4.4877],[126.8297,4.4929],[126.8309,4.5014],[126.8287,4.5046],[126.8192,4.5109],[126.8158,4.5238],[126.8101,4.5256],[126.8084,4.5333],[126.7945,4.5322],[126.7898,4.5295],[126.7874,4.525],[126.7796,4.5262],[126.7744,4.5326],[126.7751,4.5389],[126.761,4.5434],[126.744,4.5457]],[[127.1498,4.6162],[127.1466,4.6188],[127.1397,4.6149],[127.1274,4.6104],[127.1394,4.6074],[127.1449,4.609],[127.1498,4.6162]],[[127.163,4.6276],[127.1578,4.6325],[127.1568,4.6235],[127.1624,4.6232],[127.163,4.6276]],[[127.1401,4.7049],[127.1326,4.702],[127.1318,4.6931],[127.1409,4.6871],[127.1443,4.6911],[127.1443,4.7008],[127.1401,4.7049]],[[127.0647,4.7414],[127.0614,4.7398],[127.0598,4.7354],[127.0554,4.7344],[127.056,4.7278],[127.0684,4.7185],[127.0756,4.7166],[127.0839,4.7181],[127.0884,4.7253],[127.0931,4.7284],[127.0926,4.7331],[127.0835,4.7355],[127.0797,4.7393],[127.0717,4.7393],[127.0647,4.7414]],[[127.1329,4.7318],[127.1407,4.7367],[127.1459,4.748],[127.1461,4.7533],[127.1417,4.7694],[127.1369,4.7758],[127.1305,4.7777],[127.1166,4.7631],[127.1104,4.7464],[127.1126,4.7353],[127.1145,4.7319],[127.1249,4.7307],[127.1329,4.7318]],[[127.0625,4.8073],[127.0594,4.8053],[127.0563,4.7978],[127.0577,4.7909],[127.0624,4.7916],[127.0655,4.7966],[127.0652,4.8046],[127.0625,4.8073]],[[126.5884,5.5642],[126.5821,5.5654],[126.577,5.5576],[126.5772,5.5508],[126.581,5.548],[126.5894,5.5549],[126.5913,5.5617],[126.5884,5.5642]]]}},{"type":"Feature","properties":{"mhid":"1332:384","alt_name":"KABUPATEN MINAHASA SELATAN","latitude":1.21291,"longitude":124.59708,"sample_value":119},"geometry":{"type":"MultiLineString","coordinates":[[[124.5081,1.2964],[124.5113,1.2983],[124.5112,1.3043],[124.5062,1.3052],[124.5039,1.2984],[124.5081,1.2964]],[[124.5648,1.3783],[124.5562,1.3785],[124.5509,1.3762],[124.5439,1.3663],[124.5404,1.3592],[124.5317,1.3525],[124.5292,1.3369],[124.5183,1.3288],[124.5169,1.3211],[124.5124,1.3158],[124.5152,1.3135],[124.5141,1.3055],[124.5158,1.3001],[124.5269,1.2938],[124.5348,1.2812],[124.547,1.2748],[124.55,1.2716],[124.5634,1.2724],[124.5647,1.2775],[124.5697,1.2786],[124.5734,1.2706],[124.5827,1.2704],[124.59,1.2677],[124.5944,1.2621],[124.6022,1.2578],[124.6106,1.255],[124.6129,1.2467],[124.6115,1.2356],[124.6059,1.2274],[124.5979,1.2209],[124.5903,1.209],[124.5848,1.1969],[124.5766,1.1886],[124.5707,1.1858],[124.5651,1.1849],[124.5561,1.1911],[124.5492,1.2017],[124.5484,1.2088],[124.5421,1.2133],[124.532,1.2128],[124.5279,1.2153],[124.5187,1.2106],[124.5171,1.2036],[124.5185,1.1974],[124.5211,1.1945],[124.5188,1.1899],[124.5089,1.1904],[124.5041,1.1886],[124.4979,1.1918],[124.4889,1.1848],[124.4726,1.1868],[124.4618,1.1898],[124.456,1.1869],[124.4452,1.189],[124.426,1.1896],[124.4222,1.1942],[124.4154,1.1957],[124.4076,1.1913],[124.4056,1.1852],[124.3959,1.1815],[124.393,1.179],[124.3875,1.1808],[124.3826,1.1767],[124.3762,1.1765],[124.3727,1.1734],[124.3637,1.1701],[124.3614,1.1666],[124.3549,1.1657],[124.3487,1.1622],[124.3419,1.1551],[124.3493,1.1462],[124.353,1.1395],[124.3571,1.1361],[124.3523,1.1333],[124.3473,1.1249],[124.3405,1.1211],[124.3387,1.1168],[124.3419,1.1142],[124.3393,1.0989],[124.3313,1.0892],[124.3285,1.0795],[124.3226,1.0793],[124.3196,1.0741],[124.3221,1.0687],[124.3149,1.0586],[124.3133,1.0526],[124.3158,1.0473],[124.3113,1.0422],[124.3062,1.0312],[124.3074,1.0232],[124.3044,1.0183],[124.2981,1.0133],[124.2982,1.0072]],[[124.453,0.7701],[124.4538,0.7731],[124.4625,0.7734],[124.4695,0.7633]]]}},{"type":"Feature","properties":{"mhid":"1332:385","alt_name":"KABUPATEN MINAHASA UTARA","latitude":1.4025,"longitude":124.96,"sample_value":759},"geometry":{"type":"MultiLineString","coordinates":[[[125.0281,1.7062],[125.026,1.7083],[125.0207,1.7055],[125.0179,1.6933],[125.0252,1.6934],[125.0302,1.6894],[125.0318,1.6945],[125.0312,1.7009],[125.0281,1.7062]],[[124.7738,1.7184],[124.771,1.7244],[124.7704,1.7363],[124.7667,1.7446],[124.7563,1.7394],[124.7518,1.7346],[124.7451,1.7227],[124.7365,1.7323],[124.7314,1.728],[124.7334,1.7144],[124.7441,1.7036],[124.7519,1.6986],[124.7648,1.6928],[124.7727,1.6928],[124.7801,1.697],[124.7797,1.7077],[124.7738,1.7184]],[[125.1551,1.5957],[125.1524,1.5988],[125.1476,1.5997],[125.1433,1.607],[125.1432,1.6222],[125.1473,1.626],[125.1537,1.6257],[125.1506,1.6344],[125.1562,1.6394],[125.1594,1.6399],[125.165,1.6445],[125.1618,1.6519],[125.1634,1.6633],[125.176,1.6739],[125.1757,1.6841],[125.1671,1.6885],[125.161,1.6868],[125.1589,1.6816],[125.1493,1.6806],[125.1441,1.688],[125.1395,1.6822],[125.1385,1.677],[125.1345,1.6719],[125.1341,1.6678],[125.1239,1.6721],[125.1198,1.6722],[125.1114,1.6639],[125.1057,1.6647],[125.0927,1.6754],[125.0846,1.6753],[125.0785,1.6786],[125.0754,1.6769],[125.0718,1.6713],[125.0674,1.6713],[125.0592,1.6744],[125.0514,1.6826],[125.0463,1.6853],[125.0402,1.6841],[125.0392,1.6803],[125.0242,1.6862],[125.0167,1.6872],[125.0139,1.69],[125.0145,1.701],[125.0181,1.7094],[125.0178,1.7147],[125.0214,1.7216],[125.0263,1.7234],[125.0255,1.7337],[125.0148,1.7372],[125.0121,1.7358],[125.0053,1.7439],[124.9922,1.7516],[124.9795,1.7479],[124.9817,1.7388],[124.9761,1.7322],[124.9799,1.7263],[124.9854,1.7264],[124.9813,1.7193],[124.9742,1.7251],[124.9723,1.7297],[124.9663,1.7318],[124.9614,1.7263],[124.9654,1.7141],[124.9673,1.6995],[124.962,1.7001],[124.9541,1.6971],[124.9511,1.7009],[124.9479,1.6916],[124.9554,1.6875],[124.9612,1.6817],[124.9504,1.6826],[124.94,1.6862],[124.9406,1.6935],[124.9304,1.6842],[124.9304,1.6755],[124.927,1.6764],[124.9239,1.6724],[124.9241,1.6676],[124.9217,1.6634],[124.9125,1.6574],[124.9114,1.6534],[124.9019,1.6495],[124.8963,1.6389],[124.8932,1.6363],[124.888,1.6355],[124.881,1.6306],[124.8713,1.6206],[124.8723,1.6173],[124.868,1.614],[124.8674,1.6074],[124.8691,1.6031],[124.8659,1.5997],[124.8542,1.5983],[124.8503,1.5992],[124.8421,1.5969],[124.8383,1.5938],[124.8293,1.592],[124.8206,1.5825]],[[125.063,1.288],[125.0674,1.2952],[125.0677,1.3051],[125.0662,1.3106],[125.0612,1.3109],[125.0619,1.3205],[125.0656,1.3216],[125.0675,1.3298],[125.071,1.3299],[125.0734,1.3378],[125.0762,1.3404],[125.0757,1.3455],[125.0726,1.3527],[125.0781,1.3543],[125.0754,1.3615],[125.0775,1.3657],[125.0827,1.3703],[125.0903,1.373],[125.1,1.3825],[125.1014,1.3906],[125.1045,1.3968]],[[124.7441,1.7433],[124.744,1.7499],[124.7397,1.753],[124.736,1.7499],[124.7345,1.7433],[124.7395,1.7335],[124.7432,1.7292],[124.748,1.732],[124.7491,1.7386],[124.7441,1.7433]],[[124.7623,1.7425],[124.7634,1.747],[124.7581,1.7531],[124.7551,1.7458],[124.7586,1.7411],[124.7623,1.7425]],[[125.0578,1.7814],[125.0533,1.7809],[125.0525,1.7731],[125.049,1.7641],[125.0525,1.7596],[125.0584,1.7664],[125.0592,1.7731],[125.057,1.7776],[125.0578,1.7814]],[[124.7948,1.7943],[124.7892,1.7903],[124.7882,1.784],[124.7896,1.778],[124.798,1.7764],[124.796,1.785],[124.7984,1.793],[124.7948,1.7943]],[[125.1006,1.8373],[125.0969,1.8412],[125.0908,1.8368],[125.093,1.8327],[125.0992,1.8318],[125.1006,1.8373]],[[125.1348,1.8464],[125.1326,1.8463],[125.1307,1.8391],[125.1247,1.8333],[125.125,1.8252],[125.1309,1.8252],[125.1358,1.8222],[125.1225,1.8196],[125.1136,1.8163],[125.1148,1.8076],[125.1197,1.8],[125.1198,1.7969],[125.1268,1.7896],[125.1309,1.7821],[125.1323,1.775],[125.131,1.7683],[125.1331,1.7598],[125.1325,1.7531],[125.1342,1.7485],[125.14,1.7451],[125.1482,1.736],[125.1511,1.7412],[125.1488,1.7463],[125.1566,1.749],[125.1474,1.7528],[125.1471,1.7576],[125.1524,1.7612],[125.1549,1.7665],[125.1602,1.7697],[125.1647,1.7681],[125.1755,1.7688],[125.1861,1.7752],[125.1853,1.7803],[125.1881,1.782],[125.1854,1.7905],[125.1856,1.7997],[125.1802,1.8036],[125.1757,1.8048],[125.1721,1.8026],[125.1667,1.8026],[125.1604,1.8083],[125.158,1.8156],[125.15,1.8256],[125.1456,1.8285],[125.1436,1.8345],[125.1405,1.8375],[125.1348,1.8464]],[[125.0979,1.8846],[125.0902,1.8841],[125.0869,1.8815],[125.0831,1.8728],[125.074,1.8612],[125.0645,1.8561],[125.0649,1.8469],[125.0636,1.843],[125.0556,1.8351],[125.0517,1.8242],[125.0514,1.8172],[125.0485,1.8092],[125.0509,1.8041],[125.0604,1.8067],[125.0638,1.8168],[125.0724,1.8277],[125.0806,1.8321],[125.0876,1.8393],[125.0887,1.8466],[125.0876,1.8519],[125.0915,1.8676],[125.0977,1.8765],[125.0979,1.8846]]]}},{"type":"Feature","properties":{"mhid":"1332:386","alt_name":"KABUPATEN BOLAANG MONGONDOW UTARA","latitude":0.78527,"longitude":123.41766,"sample_value":830},"geometry":{"type":"MultiLineString","coordinates":[[[123.6967,0.8614],[123.6944,0.8653],[123.6818,0.8751],[123.6759,0.8771],[123.6634,0.8788],[123.646,0.885],[123.6149,0.8992],[123.5994,0.9035],[123.5811,0.9044],[123.5866,0.8979],[123.5829,0.8952],[123.5802,0.9018],[123.5755,0.9001],[123.5731,0.896],[123.5677,0.8926],[123.5531,0.8869],[123.5428,0.8861],[123.527,0.886],[123.5063,0.888],[123.4947,0.8902],[123.4737,0.8913],[123.4625,0.8939],[123.4544,0.8976],[123.45,0.9036],[123.4431,0.9042],[123.4326,0.9029],[123.4231,0.8997],[123.4256,0.8946],[123.4153,0.8916],[123.409,0.8989],[123.4101,0.9054],[123.4012,0.9151],[123.3969,0.9053],[123.3972,0.8989],[123.3885,0.8999],[123.3863,0.904],[123.3769,0.9092],[123.3729,0.9129],[123.3666,0.909],[123.3623,0.9083],[123.3564,0.9024],[123.3509,0.9048],[123.3486,0.9088],[123.3433,0.9074],[123.3398,0.9102],[123.3323,0.9086],[123.3229,0.9093],[123.3184,0.9073],[123.3159,0.9094],[123.3102,0.9092],[123.2823,0.912],[123.2709,0.9164],[123.2685,0.9242],[123.2617,0.9138],[123.2584,0.9164],[123.2581,0.9213],[123.2556,0.9253],[123.2557,0.9309],[123.2614,0.9336],[123.2525,0.9439],[123.2512,0.9499],[123.2546,0.953],[123.251,0.9583],[123.24,0.9564],[123.2417,0.9493],[123.2412,0.9438],[123.2373,0.9418],[123.2293,0.9456],[123.215,0.9465],[123.2129,0.9399],[123.2095,0.9413],[123.1963,0.9401],[123.1937,0.942],[123.1891,0.9496],[123.1843,0.9538],[123.1767,0.9512],[123.1677,0.9512],[123.1768,0.9394],[123.1757,0.9369],[123.1798,0.932],[123.1839,0.9305],[123.1887,0.9259],[123.192,0.9272],[123.1977,0.9204],[123.1876,0.9072],[123.1783,0.9016],[123.1709,0.9027],[123.1654,0.9021],[123.1581,0.9074],[123.151,0.9107],[123.1481,0.9152],[123.1488,0.9182],[123.1413,0.923],[123.1351,0.9227],[123.1177,0.9261],[123.1154,0.9241]]]}},{"type":"Feature","properties":{"mhid":"1332:387","alt_name":"KABUPATEN SIAU TAGULANDANG BIARO","latitude":2.11728,"longitude":125.37512,"sample_value":304},"geometry":{"type":"MultiLineString","coordinates":[[[125.4088,2.1144],[125.4126,2.1257],[125.4111,2.1324],[125.406,2.1307],[125.4004,2.1188],[125.3911,2.1125],[125.3853,2.1162],[125.3823,2.1152],[125.3724,2.1244],[125.3705,2.1221],[125.365,2.1223],[125.3646,2.1286],[125.3544,2.125],[125.3533,2.1207],[125.3547,2.1142],[125.3604,2.1147],[125.3608,2.109],[125.3522,2.0995],[125.3445,2.1003],[125.343,2.0951],[125.338,2.0937],[125.3362,2.0879],[125.3372,2.0833],[125.341,2.0814],[125.3434,2.0716],[125.3514,2.0708],[125.3586,2.0725],[125.3624,2.0887],[125.3677,2.0899],[125.3723,2.0933],[125.3789,2.0908],[125.3821,2.0956],[125.3866,2.0959],[125.3923,2.1024],[125.3985,2.1049],[125.4036,2.101],[125.4064,2.1047],[125.4088,2.1144]],[[125.3787,2.3266],[125.3686,2.3256],[125.3605,2.3232],[125.3532,2.3187],[125.348,2.3107],[125.3428,2.305],[125.3439,2.3024],[125.3521,2.2967],[125.3544,2.293],[125.3652,2.2865],[125.37,2.2871],[125.3777,2.2907],[125.3862,2.3042],[125.3835,2.3087],[125.3816,2.3239],[125.3787,2.3266]],[[125.307,2.3534],[125.3029,2.3644],[125.2998,2.3647],[125.295,2.3594],[125.2952,2.3545],[125.2996,2.3482],[125.3066,2.3484],[125.307,2.3534]],[[125.4035,2.3669],[125.4012,2.3674],[125.3959,2.3812],[125.3913,2.3838],[125.3809,2.3793],[125.3762,2.3731],[125.373,2.3711],[125.3691,2.3624],[125.37,2.3559],[125.3724,2.3541],[125.3773,2.3458],[125.3866,2.3323],[125.3931,2.3287],[125.4008,2.3226],[125.4144,2.3195],[125.4236,2.3163],[125.4332,2.3158],[125.4399,2.3175],[125.4483,2.3245],[125.4479,2.3277],[125.4554,2.3307],[125.4574,2.3338],[125.4571,2.3395],[125.4665,2.3512],[125.46,2.3593],[125.4581,2.3659],[125.4476,2.3727],[125.4365,2.3759],[125.4372,2.3807],[125.4345,2.3829],[125.4214,2.3796],[125.4189,2.3704],[125.416,2.3678],[125.4103,2.3695],[125.4035,2.3669]],[[125.4845,2.6575],[125.4829,2.6537],[125.4882,2.6477],[125.4894,2.6532],[125.4854,2.6537],[125.4845,2.6575]],[[125.4649,2.6675],[125.4659,2.6715],[125.4614,2.6734],[125.4562,2.6669],[125.453,2.6703],[125.4491,2.6698],[125.456,2.6599],[125.4585,2.6488],[125.4487,2.6438],[125.4561,2.6391],[125.4626,2.6434],[125.4639,2.6483],[125.4703,2.6519],[125.4645,2.6574],[125.4649,2.6675]],[[125.4535,2.6761],[125.461,2.6794],[125.463,2.6891],[125.448,2.6843],[125.4503,2.6766],[125.4535,2.6761]],[[125.1811,2.7235],[125.1862,2.7289],[125.1869,2.7345],[125.1845,2.7398],[125.1776,2.7447],[125.1697,2.7403],[125.1682,2.7369],[125.1735,2.7296],[125.1751,2.7223],[125.1811,2.7235]],[[125.4216,2.8097],[125.4108,2.8112],[125.396,2.8095],[125.3926,2.8101],[125.3754,2.7973],[125.3733,2.791],[125.3698,2.7858],[125.3712,2.7741],[125.3697,2.7671],[125.3634,2.7545],[125.3595,2.7376],[125.3619,2.7259],[125.361,2.7147],[125.365,2.6983],[125.3731,2.678],[125.3737,2.6639],[125.3773,2.658],[125.3772,2.6499],[125.3821,2.6469],[125.3878,2.6409],[125.3985,2.6333],[125.4059,2.6314],[125.4157,2.6332],[125.4289,2.6446],[125.4319,2.6492],[125.4299,2.6539],[125.422,2.6632],[125.4033,2.6685],[125.3927,2.6825],[125.3937,2.6911],[125.3965,2.6932],[125.3966,2.6993],[125.4022,2.709],[125.4023,2.713],[125.4058,2.7252],[125.4097,2.7307],[125.4181,2.7312],[125.4314,2.7365],[125.4306,2.7402],[125.4352,2.7416],[125.4387,2.7472],[125.4469,2.7501],[125.4511,2.753],[125.4534,2.7573],[125.4558,2.7708],[125.4534,2.7819],[125.4499,2.7865],[125.4453,2.7887],[125.4421,2.7953],[125.4366,2.7972],[125.4371,2.8005],[125.4279,2.8078],[125.4216,2.8097]]]}},{"type":"Feature","properties":{"mhid":"1332:388","alt_name":"KABUPATEN MINAHASA TENGGARA","latitude":1.05633,"longitude":124.7925,"sample_value":906},"geometry":{"type":"MultiLineString","coordinates":[[[124.7365,0.8579],[124.7227,0.853],[124.7233,0.8493],[124.7365,0.8579]],[[124.9042,0.9776],[124.899,0.9765],[124.9008,0.9717],[124.9048,0.97],[124.9121,0.9698],[124.9159,0.9715],[124.9166,0.9769],[124.9099,0.9755],[124.9042,0.9776]],[[124.6994,0.844],[124.7032,0.8465],[124.7078,0.846],[124.7083,0.8426],[124.7157,0.8457],[124.7139,0.8492],[124.7094,0.847],[124.7068,0.8553],[124.7072,0.8624],[124.7125,0.8716],[124.7121,0.8746],[124.7149,0.8858],[124.7207,0.8946],[124.729,0.8955],[124.7338,0.8872],[124.7379,0.8873],[124.7438,0.8916],[124.7474,0.8963],[124.7521,0.8961],[124.7548,0.8924],[124.7584,0.8942],[124.7629,0.8889],[124.7669,0.8915],[124.7672,0.8952],[124.7707,0.9001],[124.7677,0.9055],[124.7697,0.9139],[124.7741,0.9166],[124.7779,0.913],[124.7836,0.9203],[124.7874,0.9231],[124.7821,0.9296],[124.7863,0.9327],[124.7862,0.9399],[124.7888,0.9442],[124.7941,0.9478],[124.8103,0.9538],[124.8157,0.9547],[124.8223,0.959],[124.8525,0.9678],[124.8621,0.9696],[124.8731,0.9697],[124.884,0.9709],[124.8828,0.9743],[124.8853,0.9791],[124.8838,0.985],[124.8885,0.9844],[124.8947,0.9809],[124.8919,1.003],[124.8975,1.0069],[124.9006,1.0116],[124.9081,1.0175]]]}},{"type":"Feature","properties":{"mhid":"1332:389","alt_name":"KABUPATEN BOLAANG MONGONDOW SELATAN","latitude":0.40912,"longitude":123.75961,"sample_value":800},"geometry":{"type":"MultiLineString","coordinates":[[[123.479,0.3189],[123.4817,0.3133],[123.4859,0.3146],[123.4907,0.3071],[123.4957,0.3066],[123.5064,0.3097],[123.5099,0.3137],[123.5148,0.3129],[123.5226,0.3143],[123.5255,0.318],[123.5364,0.3178],[123.545,0.3219],[123.5569,0.3222],[123.567,0.3199],[123.5745,0.3199],[123.5755,0.317],[123.5808,0.3149],[123.5856,0.3103],[123.5898,0.3089],[123.5965,0.3099],[123.6039,0.3081],[123.611,0.3093],[123.6125,0.3003],[123.6222,0.2935],[123.6295,0.2922],[123.6338,0.2946],[123.633,0.2992],[123.6376,0.3043],[123.6433,0.3033],[123.6468,0.3057],[123.6587,0.303],[123.6658,0.3044],[123.6733,0.2998],[123.6764,0.2955],[123.6798,0.2976],[123.6798,0.3032],[123.6868,0.3046],[123.6929,0.3078],[123.696,0.3118],[123.7087,0.3185],[123.719,0.3162],[123.7357,0.3237],[123.7408,0.3218],[123.7449,0.3176],[123.7524,0.3199],[123.765,0.3149],[123.771,0.3149],[123.7776,0.3124],[123.7882,0.3143],[123.7903,0.317],[123.7975,0.3173],[123.8013,0.3237],[123.8022,0.3305],[123.8082,0.3339],[123.8207,0.3362],[123.8237,0.3314],[123.8331,0.3334],[123.8382,0.3282],[123.8473,0.328],[123.8569,0.3307],[123.8681,0.33],[123.8761,0.336],[123.8808,0.3469],[123.8882,0.3479],[123.8924,0.3502],[123.8987,0.3483],[123.9059,0.3518],[123.9135,0.3458],[123.9218,0.3437],[123.9237,0.3493],[123.9222,0.3528],[123.9255,0.3557],[123.9327,0.3554],[123.9352,0.358],[123.9401,0.3523],[123.9461,0.3551],[123.9435,0.3617],[123.9488,0.3626],[123.9501,0.3573],[123.9606,0.3588],[123.9705,0.3569],[123.9768,0.3596],[123.9792,0.3653],[123.9783,0.3685],[123.9837,0.3719],[123.9973,0.3749],[124.0092,0.3745],[124.0246,0.3716],[124.0334,0.374],[124.0358,0.3685],[124.0402,0.3705],[124.0402,0.3741],[124.0455,0.3757],[124.0456,0.3694],[124.0526,0.3656],[124.0559,0.3692],[124.065,0.3702],[124.0675,0.3796],[124.0735,0.3797],[124.0758,0.3849],[124.08,0.3873],[124.0868,0.3873],[124.0972,0.3847],[124.1128,0.3862],[124.1222,0.3919],[124.1349,0.3929],[124.1435,0.3948],[124.1523,0.3937],[124.1578,0.391],[124.1649,0.3936],[124.1703,0.394],[124.1851,0.3925],[124.19,0.397],[124.1965,0.3965],[124.206,0.3936],[124.2123,0.3974],[124.2119,0.3907],[124.2161,0.3835],[124.2198,0.3827],[124.2207,0.3881],[124.2251,0.3951],[124.231,0.3915],[124.2322,0.3887],[124.2395,0.3967],[124.2437,0.3981],[124.2612,0.4008],[124.2783,0.402],[124.2816,0.4054],[124.2878,0.4064],[124.2867,0.4134],[124.2821,0.4128],[124.2746,0.4202],[124.2722,0.4289],[124.2777,0.4284],[124.2824,0.4228],[124.2893,0.4267],[124.2988,0.4278],[124.3039,0.4273],[124.3178,0.4175],[124.3216,0.4264],[124.3227,0.4375],[124.3218,0.4419],[124.3248,0.4462],[124.328,0.4432],[124.3313,0.444],[124.3355,0.4399],[124.3431,0.4416],[124.3404,0.4461],[124.3454,0.4503],[124.3529,0.4464],[124.3577,0.4501],[124.3575,0.4423],[124.3657,0.4449],[124.3698,0.4408],[124.3767,0.4449],[124.3849,0.4451],[124.3921,0.4488],[124.3993,0.4492],[124.4123,0.4545],[124.4251,0.4532],[124.4313,0.4492],[124.4312,0.4449],[124.439,0.4463],[124.4414,0.4483],[124.4474,0.4475],[124.4542,0.45],[124.4488,0.4563],[124.4465,0.4611],[124.45,0.466],[124.4574,0.4631],[124.4654,0.4656],[124.4669,0.4635],[124.4759,0.466]]]}},{"type":"Feature","properties":{"mhid":"1332:390","alt_name":"KABUPATEN BOLAANG MONGONDOW TIMUR","latitude":0.72073,"longitude":124.50256,"sample_value":738},"geometry":{"type":"MultiLineString","coordinates":[[[124.6576,0.7811],[124.6556,0.7769],[124.6592,0.7695],[124.6623,0.773],[124.6576,0.7811]],[[124.685,0.8121],[124.6729,0.8086],[124.6786,0.8061],[124.6869,0.8081],[124.685,0.8121]],[[124.4695,0.7633],[124.472,0.7587],[124.4639,0.7438],[124.4663,0.7399],[124.4655,0.7326],[124.4589,0.7318],[124.4558,0.7366],[124.4564,0.744],[124.4519,0.7578],[124.4538,0.7617],[124.453,0.7701]],[[124.4759,0.466],[124.483,0.4684],[124.4845,0.4766],[124.4805,0.4787],[124.4898,0.4868],[124.4911,0.4821],[124.4959,0.4752],[124.4924,0.4703],[124.4962,0.4662],[124.5017,0.4666],[124.5008,0.4731],[124.5119,0.4735],[124.5129,0.4774],[124.5081,0.4817],[124.5085,0.4868],[124.502,0.5059],[124.5003,0.5078],[124.5032,0.5149],[124.5003,0.5183],[124.4993,0.5246],[124.4904,0.5272],[124.4907,0.5355],[124.4944,0.5402],[124.4942,0.5475],[124.4972,0.5509],[124.5052,0.5517],[124.5106,0.5571],[124.5185,0.5624],[124.5207,0.5597],[124.5254,0.5633],[124.5243,0.5664],[124.528,0.5733],[124.5278,0.5784],[124.5356,0.5851],[124.5439,0.589],[124.5575,0.5908],[124.5617,0.5848],[124.5644,0.5768],[124.569,0.5791],[124.5683,0.6002],[124.5654,0.6138],[124.5601,0.6162],[124.5556,0.6231],[124.5474,0.6214],[124.5439,0.6248],[124.5482,0.632],[124.5523,0.6351],[124.5548,0.6497],[124.5607,0.6538],[124.5647,0.6648],[124.5714,0.6697],[124.5769,0.6714],[124.5798,0.679],[124.5764,0.6857],[124.5786,0.688],[124.5869,0.6872],[124.5877,0.683],[124.5948,0.6849],[124.598,0.6967],[124.5966,0.7034],[124.5987,0.7067],[124.6093,0.704],[124.6133,0.6998],[124.6177,0.7044],[124.6223,0.7039],[124.6226,0.7118],[124.6275,0.711],[124.6302,0.7245],[124.6263,0.7271],[124.6237,0.7331],[124.6233,0.7504],[124.6247,0.7655],[124.6282,0.773],[124.6392,0.7908],[124.6565,0.8072],[124.6595,0.8087],[124.6635,0.8168],[124.6696,0.8239],[124.6708,0.8287],[124.6837,0.8303],[124.6906,0.8372],[124.6973,0.8396],[124.6994,0.844]]]}},{"type":"Feature","properties":{"mhid":"1332:391","alt_name":"KOTA MANADO","latitude":1.51667,"longitude":124.88333,"sample_value":840},"geometry":{"type":"MultiLineString","coordinates":[[[124.8206,1.5825],[124.8085,1.5778],[124.8042,1.5711],[124.8059,1.5595],[124.8096,1.5539],[124.8136,1.5514],[124.8213,1.5439],[124.8237,1.5388],[124.8319,1.5359],[124.8367,1.5294],[124.8415,1.5269],[124.8448,1.5193],[124.845,1.5152],[124.8405,1.4988],[124.8334,1.4857],[124.8328,1.4758],[124.8311,1.47],[124.8256,1.464],[124.8174,1.4592],[124.8054,1.4602],[124.7934,1.46],[124.7843,1.4612]],[[124.7442,1.6335],[124.7388,1.6309],[124.7369,1.6274],[124.7358,1.6178],[124.7383,1.6162],[124.7471,1.6193],[124.7636,1.6205],[124.77,1.6126],[124.7709,1.6044],[124.776,1.5978],[124.7815,1.5954],[124.7807,1.6091],[124.7818,1.6124],[124.7775,1.624],[124.7741,1.6284],[124.7675,1.6267],[124.758,1.6271],[124.7442,1.6335]],[[124.8009,1.6369],[124.7993,1.63],[124.8029,1.627],[124.8045,1.6324],[124.8009,1.6369]],[[124.7025,1.6488],[124.6903,1.6469],[124.6843,1.6422],[124.6814,1.6312],[124.6835,1.6224],[124.6917,1.6179],[124.6975,1.6166],[124.711,1.6237],[124.716,1.6281],[124.7159,1.6398],[124.7126,1.6432],[124.7025,1.6488]]]}},{"type":"Feature","properties":{"mhid":"1332:392","alt_name":"KOTA BITUNG","latitude":1.48333,"longitude":125.15,"sample_value":250},"geometry":{"type":"MultiLineString","coordinates":[[[125.2925,1.5492],[125.2886,1.5481],[125.2779,1.5269],[125.2798,1.5205],[125.2778,1.5165],[125.2717,1.5142],[125.2692,1.5052],[125.264,1.4983],[125.2642,1.4954],[125.2579,1.4888],[125.2562,1.4833],[125.2512,1.4802],[125.2488,1.471],[125.243,1.4679],[125.2434,1.4591],[125.2394,1.4503],[125.2384,1.4452],[125.2349,1.4435],[125.2328,1.4389],[125.2278,1.4374],[125.226,1.4398],[125.2093,1.4324],[125.2036,1.4333],[125.1978,1.4323],[125.1906,1.4283],[125.1856,1.4282],[125.1817,1.4222],[125.1826,1.419],[125.1778,1.4128],[125.1717,1.4084],[125.1771,1.4015],[125.1712,1.401],[125.1689,1.3965],[125.1733,1.3945],[125.1754,1.3907],[125.1807,1.3951],[125.1888,1.3995],[125.1945,1.3972],[125.1984,1.3987],[125.2016,1.4036],[125.2064,1.4049],[125.2104,1.3994],[125.2225,1.3978],[125.234,1.4013],[125.2347,1.4095],[125.2396,1.411],[125.244,1.4152],[125.2502,1.4146],[125.2525,1.4111],[125.2584,1.4138],[125.2564,1.4196],[125.2601,1.4275],[125.2635,1.4299],[125.2602,1.4351],[125.2621,1.4417],[125.2607,1.4455],[125.2644,1.4503],[125.2709,1.4654],[125.2739,1.4656],[125.275,1.4724],[125.2715,1.4759],[125.275,1.4792],[125.2792,1.4798],[125.2826,1.4861],[125.2819,1.4947],[125.2763,1.4987],[125.2748,1.5045],[125.2779,1.5071],[125.2774,1.5123],[125.284,1.5195],[125.2864,1.5276],[125.2922,1.5334],[125.2937,1.5466],[125.2925,1.5492]],[[125.1045,1.3968],[125.1078,1.3933],[125.1134,1.3968],[125.1202,1.4032],[125.1241,1.4225],[125.1265,1.4283],[125.1413,1.4373],[125.1523,1.4397],[125.1714,1.4389],[125.1806,1.4405],[125.1919,1.4384],[125.1936,1.4411],[125.2079,1.4456],[125.2078,1.449],[125.2143,1.4581],[125.2263,1.4607],[125.2352,1.4697],[125.2334,1.4745],[125.2381,1.4841],[125.2367,1.4894],[125.2375,1.4954],[125.2415,1.4965],[125.2411,1.5034],[125.2455,1.5088],[125.2452,1.5147],[125.2387,1.5195],[125.2349,1.5291],[125.2279,1.5343],[125.2239,1.5356],[125.2034,1.5519],[125.1955,1.5553],[125.1899,1.556],[125.1753,1.5624],[125.1694,1.5663],[125.1589,1.5769],[125.1548,1.5833],[125.1551,1.5957]]]}},{"type":"Feature","properties":{"mhid":"1332:396","alt_name":"KABUPATEN BANGGAI KEPULAUAN","latitude":-1.6424,"longitude":123.54881,"sample_value":104},"geometry":{"type":"MultiLineString","coordinates":[[[123.3216,-1.2184],[123.3244,-1.2103],[123.3262,-1.1966],[123.3252,-1.1885],[123.3176,-1.1759],[123.312,-1.1742],[123.304,-1.1771],[123.2886,-1.1891],[123.282,-1.1925],[123.279,-1.1961],[123.2789,-1.2056],[123.2749,-1.2158],[123.2767,-1.22],[123.2804,-1.222],[123.2819,-1.2309],[123.2846,-1.2353],[123.2946,-1.2695],[123.2942,-1.2749],[123.2969,-1.2811],[123.3008,-1.2837],[123.3053,-1.2804],[123.311,-1.2732],[123.3138,-1.2638],[123.3146,-1.2537],[123.3161,-1.2492],[123.315,-1.2376],[123.3159,-1.2326],[123.3216,-1.2184]],[[123.1712,-1.149],[123.1644,-1.1511],[123.1617,-1.1827],[123.1589,-1.1905],[123.151,-1.198],[123.1474,-1.2057],[123.1482,-1.2098],[123.1432,-1.2106],[123.1391,-1.2081],[123.1385,-1.2035],[123.1317,-1.1904],[123.1205,-1.1792],[123.1107,-1.1648],[123.1074,-1.1614],[123.1028,-1.161],[123.0921,-1.1654],[123.0852,-1.1703],[123.0735,-1.1705],[123.0693,-1.173],[123.049,-1.1784],[123.0329,-1.1778],[123.0175,-1.1901],[123.0092,-1.1911],[123.0013,-1.1975],[122.9956,-1.1969],[122.9848,-1.2039],[122.9793,-1.2026],[122.9754,-1.2071],[122.9732,-1.2148],[122.9671,-1.2152],[122.9546,-1.1947],[122.9476,-1.1868],[122.9374,-1.1824],[122.9265,-1.184],[122.9201,-1.1813],[122.9119,-1.1803],[122.9052,-1.1825],[122.8994,-1.1901],[122.8988,-1.1988],[122.8894,-1.2097],[122.8848,-1.2115],[122.8821,-1.2151],[122.8824,-1.2268],[122.8758,-1.2359],[122.8748,-1.2405],[122.8716,-1.2423],[122.8711,-1.2495],[122.8626,-1.2587],[122.8573,-1.2598],[122.8532,-1.2639],[122.8405,-1.2723],[122.8363,-1.2732],[122.8247,-1.2879],[122.8249,-1.2938],[122.8205,-1.3042],[122.8157,-1.3078],[122.8133,-1.318],[122.8135,-1.3253],[122.8169,-1.3301],[122.8162,-1.3344],[122.8116,-1.3405],[122.8043,-1.3475],[122.8029,-1.3515],[122.8039,-1.3572],[122.7961,-1.3711],[122.7973,-1.3775],[122.7945,-1.3815],[122.7926,-1.4026],[122.791,-1.4082],[122.7903,-1.4181],[122.7915,-1.4242],[122.7941,-1.4267],[122.7936,-1.4389],[122.7879,-1.4462],[122.7914,-1.4518],[122.789,-1.4552],[122.7883,-1.4624],[122.7935,-1.4715],[122.7903,-1.4741],[122.7903,-1.4813],[122.799,-1.4919],[122.8084,-1.4847],[122.8135,-1.4856],[122.8159,-1.4883],[122.8196,-1.4828],[122.8225,-1.4917],[122.826,-1.4978],[122.8188,-1.5],[122.824,-1.5049],[122.8281,-1.5139],[122.8344,-1.5193],[122.8403,-1.5203],[122.8385,-1.5305],[122.8442,-1.5343],[122.8472,-1.5423],[122.853,-1.5524],[122.8543,-1.5603],[122.8495,-1.5675],[122.8491,-1.5782],[122.8575,-1.5827],[122.8628,-1.5867],[122.8687,-1.5957],[122.879,-1.6006],[122.89,-1.5999],[122.8944,-1.6008],[122.9068,-1.5996],[122.9172,-1.593],[122.9265,-1.5808],[122.9301,-1.5677],[122.9351,-1.5622],[122.9423,-1.5494],[122.948,-1.544],[122.956,-1.5423],[122.9582,-1.5464],[122.9638,-1.5463],[122.9673,-1.5389],[122.9749,-1.5326],[122.9788,-1.5253],[122.9837,-1.5238],[122.9863,-1.5188],[122.9909,-1.5144],[122.9988,-1.516],[122.9997,-1.5086],[123.0032,-1.5004],[123.0089,-1.5032],[123.0118,-1.4954],[123.0176,-1.4898],[123.0201,-1.4803],[123.0226,-1.4756],[123.0259,-1.461],[123.0282,-1.4588],[123.0296,-1.4426],[123.0354,-1.4382],[123.0368,-1.4334],[123.0372,-1.4212],[123.0431,-1.418],[123.0477,-1.4077],[123.0537,-1.3998],[123.0574,-1.3894],[123.0682,-1.3799],[123.0716,-1.3713],[123.0764,-1.3672],[123.0793,-1.3613],[123.0838,-1.3582],[123.0886,-1.3484],[123.0962,-1.346],[123.0967,-1.3413],[123.1037,-1.3317],[123.1084,-1.3213],[123.1102,-1.314],[123.1135,-1.3133],[123.1165,-1.303],[123.1197,-1.3025],[123.1195,-1.3122],[123.1219,-1.3186],[123.1299,-1.3132],[123.1327,-1.3096],[123.1334,-1.3045],[123.1373,-1.2994],[123.143,-1.297],[123.15,-1.2968],[123.1585,-1.3006],[123.1624,-1.3001],[123.1621,-1.3059],[123.1598,-1.3106],[123.1592,-1.3261],[123.1568,-1.3298],[123.1556,-1.3364],[123.156,-1.3439],[123.1583,-1.3533],[123.157,-1.3659],[123.16,-1.3831],[123.1659,-1.3865],[123.1687,-1.3982],[123.1638,-1.3999],[123.1647,-1.4076],[123.1672,-1.4095],[123.1672,-1.422],[123.1726,-1.4283],[123.1693,-1.4379],[123.1653,-1.4385],[123.1632,-1.4531],[123.1667,-1.4504],[123.1723,-1.4534],[123.174,-1.4587],[123.1729,-1.4642],[123.1759,-1.468],[123.1748,-1.4767],[123.178,-1.4814],[123.1783,-1.4876],[123.1761,-1.4988],[123.1805,-1.5006],[123.1849,-1.5125],[123.1825,-1.5197],[123.1778,-1.5225],[123.175,-1.5287],[123.1709,-1.5324],[123.1702,-1.536],[123.1609,-1.5411],[123.1532,-1.5421],[123.1439,-1.5474],[123.1432,-1.5511],[123.1303,-1.5621],[123.1282,-1.5681],[123.1184,-1.5646],[123.1074,-1.5666],[123.1064,-1.5722],[123.1017,-1.576],[123.1001,-1.5797],[123.0978,-1.5926],[123.1009,-1.6038],[123.1044,-1.601],[123.1093,-1.593],[123.1094,-1.6068],[123.1149,-1.6122],[123.1227,-1.6134],[123.1299,-1.612],[123.1325,-1.6075],[123.1388,-1.6112],[123.1414,-1.61],[123.1477,-1.6152],[123.1509,-1.6143],[123.1553,-1.6313],[123.1533,-1.6367],[123.1547,-1.6396],[123.1631,-1.64],[123.17,-1.6308],[123.1765,-1.6344],[123.182,-1.63],[123.1839,-1.6238],[123.1884,-1.6204],[123.1934,-1.6133],[123.1966,-1.6139],[123.2006,-1.6184],[123.2087,-1.6145],[123.2059,-1.6113],[123.216,-1.6043],[123.2202,-1.6045],[123.222,-1.6007],[123.2289,-1.5973],[123.2316,-1.6016],[123.2327,-1.6083],[123.2316,-1.6175],[123.2336,-1.6225],[123.2337,-1.6328],[123.2374,-1.645],[123.2433,-1.6483],[123.249,-1.645],[123.2553,-1.6383],[123.2577,-1.6324],[123.2572,-1.6272],[123.2603,-1.6262],[123.2566,-1.6145],[123.2582,-1.6091],[123.2546,-1.6031],[123.2499,-1.6002],[123.2471,-1.5959],[123.2388,-1.6012],[123.2358,-1.5956],[123.2441,-1.5868],[123.2437,-1.5822],[123.2456,-1.5766],[123.2403,-1.569],[123.2424,-1.5644],[123.2393,-1.5598],[123.2426,-1.55],[123.241,-1.5428],[123.244,-1.542],[123.2471,-1.5349],[123.2461,-1.5294],[123.2504,-1.5175],[123.2489,-1.5155],[123.247,-1.5058],[123.249,-1.4967],[123.2519,-1.4934],[123.2495,-1.4899],[123.2579,-1.4868],[123.2584,-1.4826],[123.2535,-1.4724],[123.2588,-1.467],[123.257,-1.4615],[123.2573,-1.4504],[123.2564,-1.4467],[123.2604,-1.4431],[123.2668,-1.4403],[123.2713,-1.4433],[123.2758,-1.443],[123.2824,-1.4368],[123.2836,-1.431],[123.2834,-1.4208],[123.2893,-1.4146],[123.2946,-1.4137],[123.2996,-1.4104],[123.3025,-1.4138],[123.3073,-1.4126],[123.3118,-1.4152],[123.3182,-1.4222],[123.322,-1.4199],[123.3212,-1.4362],[123.3254,-1.443],[123.3289,-1.4545],[123.3343,-1.4609],[123.341,-1.4657],[123.3412,-1.4699],[123.348,-1.4734],[123.354,-1.4702],[123.3554,-1.4734],[123.3526,-1.4833],[123.3544,-1.4921],[123.3538,-1.5007],[123.3555,-1.514],[123.354,-1.5187],[123.3543,-1.5256],[123.3577,-1.5259],[123.3612,-1.5177],[123.3616,-1.5127],[123.3652,-1.5005],[123.3711,-1.498],[123.3752,-1.4989],[123.3805,-1.5029],[123.3854,-1.5006],[123.3908,-1.5048],[123.3931,-1.5112],[123.3986,-1.5139],[123.4043,-1.5215],[123.4057,-1.5272],[123.4123,-1.5306],[123.4126,-1.521],[123.4255,-1.5154],[123.4367,-1.5199],[123.4384,-1.5168],[123.4377,-1.5068],[123.4433,-1.5064],[123.4443,-1.5103],[123.4502,-1.5159],[123.4562,-1.5177],[123.461,-1.5102],[123.4628,-1.5038],[123.468,-1.5017],[123.47,-1.4945],[123.4691,-1.4906],[123.4722,-1.4817],[123.4708,-1.4732],[123.4726,-1.4625],[123.4743,-1.461],[123.483,-1.4661],[123.4864,-1.47],[123.4973,-1.4667],[123.5023,-1.4608],[123.5092,-1.4593],[123.5133,-1.4546],[123.5188,-1.4453],[123.5215,-1.4376],[123.5242,-1.4339],[123.53,-1.413],[123.5363,-1.4038],[123.5379,-1.3977],[123.5368,-1.3878],[123.5396,-1.3839],[123.5396,-1.3775],[123.5344,-1.3634],[123.5405,-1.3529],[123.551,-1.3441],[123.5527,-1.3361],[123.557,-1.3317],[123.5586,-1.3192],[123.5575,-1.3154],[123.5596,-1.3091],[123.5574,-1.3072],[123.5575,-1.3002],[123.5556,-1.293],[123.5581,-1.289],[123.5593,-1.2814],[123.5533,-1.2769],[123.5499,-1.2785],[123.5405,-1.2747],[123.5303,-1.2736],[123.523,-1.2674],[123.5222,-1.2645],[123.516,-1.2632],[123.5093,-1.2666],[123.4963,-1.2702],[123.487,-1.2696],[123.4804,-1.2637],[123.473,-1.2498],[123.4679,-1.2482],[123.4585,-1.241],[123.4508,-1.2398],[123.4441,-1.2365],[123.4413,-1.2405],[123.4395,-1.2477],[123.44,-1.2559],[123.4446,-1.2612],[123.4455,-1.2671],[123.4313,-1.2699],[123.4213,-1.2638],[123.4187,-1.2557],[123.4149,-1.2551],[123.41,-1.2587],[123.4074,-1.2543],[123.4038,-1.2524],[123.4042,-1.2439],[123.4116,-1.2355],[123.4132,-1.2299],[123.4117,-1.2262],[123.4059,-1.2237],[123.403,-1.2323],[123.3983,-1.2351],[123.3917,-1.2292],[123.3903,-1.2237],[123.3811,-1.2206],[123.3726,-1.223],[123.3652,-1.2269],[123.3591,-1.2354],[123.3556,-1.2378],[123.3451,-1.253],[123.3378,-1.2592],[123.3306,-1.2672],[123.3271,-1.2733],[123.324,-1.282],[123.3237,-1.2904],[123.3212,-1.2958],[123.3139,-1.3041],[123.3018,-1.3079],[123.299,-1.3047],[123.2898,-1.3087],[123.291,-1.3136],[123.2857,-1.3209],[123.2818,-1.3224],[123.2792,-1.3292],[123.2822,-1.333],[123.2811,-1.3375],[123.2824,-1.3442],[123.2865,-1.3493],[123.2838,-1.3584],[123.2773,-1.3644],[123.2722,-1.3708],[123.2687,-1.3792],[123.2699,-1.382],[123.2591,-1.3899],[123.2493,-1.3898],[123.2466,-1.3909],[123.2441,-1.3983],[123.2385,-1.3975],[123.2365,-1.3928],[123.2301,-1.39],[123.2314,-1.3853],[123.2366,-1.3848],[123.2359,-1.3807],[123.2271,-1.3681],[123.2292,-1.3664],[123.2274,-1.3593],[123.2244,-1.3587],[123.2198,-1.3518],[123.2192,-1.3652],[123.2163,-1.3611],[123.2113,-1.3492],[123.2095,-1.3487],[123.2063,-1.3394],[123.2007,-1.3321],[123.1947,-1.3301],[123.1948,-1.3258],[123.1892,-1.319],[123.184,-1.3217],[123.186,-1.3067],[123.1924,-1.3012],[123.1955,-1.2966],[123.1977,-1.2885],[123.1961,-1.2703],[123.1886,-1.266],[123.1919,-1.26],[123.198,-1.2641],[123.2054,-1.2671],[123.2131,-1.2723],[123.2203,-1.2684],[123.2248,-1.2599],[123.226,-1.251],[123.2306,-1.2447],[123.2343,-1.2359],[123.2487,-1.2296],[123.246,-1.2245],[123.2331,-1.2176],[123.2226,-1.21],[123.2185,-1.2026],[123.2184,-1.1966],[123.2152,-1.1891],[123.2059,-1.1805],[123.1983,-1.169],[123.1936,-1.1537],[123.1882,-1.1503],[123.1712,-1.149]]]}},{"type":"Feature","properties":{"mhid":"1332:397","alt_name":"KABUPATEN BANGGAI","latitude":-1.2835,"longitude":122.8892,"sample_value":90},"geometry":{"type":"MultiLineString","coordinates":[[[121.8489,-0.9686],[121.8522,-0.9631],[121.8425,-0.962],[121.8432,-0.9685]],[[123.071,-0.8953],[123.0619,-0.8957],[123.0638,-0.8994],[123.0675,-0.8996],[123.071,-0.8953]],[[122.7481,-0.6467],[122.754,-0.6435],[122.7553,-0.6401],[122.746,-0.6418],[122.7481,-0.6467]],[[122.0637,-1.616],[122.0916,-1.6167],[122.1214,-1.6133],[122.1339,-1.6103],[122.1555,-1.608],[122.1706,-1.6076],[122.1967,-1.6087],[122.2124,-1.6049],[122.222,-1.6001],[122.2246,-1.5946],[122.2439,-1.5741],[122.2536,-1.5734],[122.26,-1.5684],[122.2684,-1.5596],[122.2787,-1.5567],[122.283,-1.5499],[122.2885,-1.5461],[122.304,-1.5329],[122.3062,-1.5326],[122.3164,-1.5261],[122.3236,-1.5231],[122.3348,-1.5214],[122.3411,-1.5222],[122.3487,-1.5189],[122.3589,-1.5169],[122.369,-1.5103],[122.3714,-1.5062],[122.3921,-1.493],[122.3961,-1.4866],[122.4037,-1.4772],[122.4107,-1.4655],[122.408,-1.4606],[122.4089,-1.4571],[122.416,-1.4506],[122.4152,-1.4464],[122.4183,-1.4406],[122.4298,-1.4292],[122.4469,-1.4176],[122.4574,-1.4111],[122.4721,-1.4037],[122.4844,-1.3909],[122.4897,-1.381],[122.4884,-1.3718],[122.4934,-1.3611],[122.5081,-1.3476],[122.5299,-1.3382],[122.5316,-1.3343],[122.5426,-1.3256],[122.5517,-1.3152],[122.56,-1.312],[122.563,-1.3064],[122.5649,-1.2942],[122.5684,-1.2923],[122.5699,-1.2858],[122.5672,-1.2756],[122.5613,-1.273],[122.5599,-1.2681],[122.5686,-1.262],[122.5868,-1.2538],[122.599,-1.2477],[122.6202,-1.2414],[122.6331,-1.2354],[122.6356,-1.2207],[122.6338,-1.2131],[122.6305,-1.2099],[122.6293,-1.2016],[122.6338,-1.1979],[122.6367,-1.1924],[122.6369,-1.1789],[122.6351,-1.1651],[122.6432,-1.1706],[122.6585,-1.1665],[122.6647,-1.1594],[122.6632,-1.1514],[122.6667,-1.1392],[122.6785,-1.1355],[122.6911,-1.1345],[122.6979,-1.1353],[122.7027,-1.138],[122.7081,-1.1384],[122.7151,-1.1343],[122.7151,-1.1194],[122.7139,-1.1148],[122.722,-1.102],[122.7284,-1.0864],[122.7356,-1.0777],[122.7438,-1.0719],[122.7499,-1.0621],[122.7668,-1.0491],[122.7742,-1.039],[122.7797,-1.0295],[122.7919,-1.0118],[122.7984,-1.0035],[122.7959,-0.9911],[122.7876,-0.9821],[122.7863,-0.977],[122.7893,-0.9678],[122.7926,-0.9656],[122.7928,-0.9603],[122.7908,-0.9555],[122.7924,-0.9489],[122.7965,-0.949],[122.8021,-0.9418],[122.8126,-0.9374],[122.8196,-0.9366],[122.8229,-0.9322],[122.8354,-0.9277],[122.8397,-0.9291],[122.852,-0.927],[122.8649,-0.9229],[122.8716,-0.9226],[122.8771,-0.9252],[122.881,-0.9299],[122.8898,-0.9296],[122.8992,-0.9266],[122.9057,-0.9203],[122.9286,-0.9171],[122.9364,-0.9129],[122.9489,-0.9115],[122.9581,-0.9087],[122.974,-0.9029],[122.982,-0.9009],[123.0011,-0.8996],[123.0075,-0.8941],[123.0076,-0.9011],[123.0248,-0.9091],[123.0377,-0.9094],[123.0416,-0.9062],[123.0362,-0.9001],[123.0288,-0.8967],[123.0265,-0.8871],[123.0327,-0.8835],[123.0379,-0.8785],[123.0386,-0.8869],[123.0372,-0.8943],[123.0436,-0.8994],[123.0544,-0.8993],[123.0597,-0.8963],[123.0593,-0.8919],[123.0614,-0.8851],[123.066,-0.8823],[123.0737,-0.8856],[123.0737,-0.879],[123.0708,-0.877],[123.06,-0.8769],[123.06,-0.8715],[123.0633,-0.8679],[123.0686,-0.8675],[123.0684,-0.8638],[123.0771,-0.8627],[123.0796,-0.8547],[123.0922,-0.8469],[123.0921,-0.844],[123.0961,-0.8381],[123.1002,-0.8355],[123.1099,-0.841],[123.1136,-0.8459],[123.1194,-0.8481],[123.1291,-0.856],[123.1347,-0.8663],[123.1359,-0.8704],[123.1471,-0.8812],[123.151,-0.886],[123.1468,-0.8878],[123.1478,-0.897],[123.1533,-0.8953],[123.1534,-0.8998],[123.1482,-0.902],[123.1448,-0.9007],[123.1442,-0.8958],[123.1358,-0.898],[123.1338,-0.9012],[123.1359,-0.9059],[123.141,-0.9109],[123.1388,-0.9226],[123.1394,-0.9264],[123.1452,-0.9306],[123.1481,-0.9371],[123.141,-0.9447],[123.1405,-0.9503],[123.1474,-0.9553],[123.1562,-0.9507],[123.1747,-0.9571],[123.1796,-0.9605],[123.1869,-0.9683],[123.1927,-0.9719],[123.2023,-0.9816],[123.2034,-0.9855],[123.208,-0.9905],[123.2226,-0.9971],[123.2322,-0.9989],[123.2457,-1.0084],[123.2508,-1.0218],[123.2494,-1.0226],[123.2575,-1.0364],[123.2651,-1.0424],[123.2717,-1.0443],[123.2797,-1.0434],[123.2885,-1.0481],[123.3083,-1.051],[123.3217,-1.0497],[123.3374,-1.0431],[123.3535,-1.033],[123.3589,-1.0248],[123.3652,-1.0193],[123.3738,-1.0091],[123.3762,-1.0029],[123.3772,-0.9933],[123.3796,-0.9862],[123.3773,-0.976],[123.3814,-0.9668],[123.3852,-0.9631],[123.3884,-0.9572],[123.3958,-0.9549],[123.3949,-0.9479],[123.3853,-0.9365],[123.3836,-0.9313],[123.3854,-0.9254],[123.3851,-0.9149],[123.3889,-0.9067],[123.3928,-0.9072],[123.3944,-0.9032],[123.3917,-0.8975],[123.3916,-0.8902],[123.3943,-0.8865],[123.3991,-0.8758],[123.405,-0.8745],[123.4046,-0.8683],[123.4077,-0.8586],[123.4188,-0.8492],[123.4235,-0.849],[123.4287,-0.8441],[123.4355,-0.8417],[123.4355,-0.8377],[123.4432,-0.8384],[123.4408,-0.8331],[123.4439,-0.829],[123.4398,-0.8243],[123.4344,-0.822],[123.4313,-0.8167],[123.4336,-0.8125],[123.4347,-0.7979],[123.4413,-0.7911],[123.4424,-0.7829],[123.4465,-0.7707],[123.4563,-0.7665],[123.452,-0.7629],[123.4522,-0.7589],[123.4461,-0.7527],[123.4447,-0.7451],[123.4327,-0.7478],[123.4276,-0.7466],[123.4274,-0.7399],[123.4329,-0.7371],[123.4358,-0.7331],[123.4381,-0.719],[123.4442,-0.7124],[123.4415,-0.7089],[123.4353,-0.7077],[123.431,-0.713],[123.4208,-0.718],[123.419,-0.7091],[123.4132,-0.7038],[123.4043,-0.699],[123.4017,-0.6935],[123.3953,-0.6909],[123.3945,-0.6861],[123.3906,-0.6778],[123.3836,-0.6686],[123.3873,-0.6617],[123.3977,-0.6587],[123.401,-0.6566],[123.4112,-0.6541],[123.4075,-0.6505],[123.4005,-0.6486],[123.3945,-0.6418],[123.3885,-0.6455],[123.3849,-0.6456],[123.3726,-0.6362],[123.354,-0.6311],[123.3494,-0.6249],[123.3418,-0.6224],[123.325,-0.6148],[123.3218,-0.6119],[123.3155,-0.6099],[123.3086,-0.6103],[123.2877,-0.5954],[123.2685,-0.5824],[123.2597,-0.5791],[123.2527,-0.582],[123.2447,-0.583],[123.2346,-0.5819],[123.2201,-0.5786],[123.2029,-0.5697],[123.1946,-0.5694],[123.1895,-0.5741],[123.1742,-0.5829],[123.1636,-0.5837],[123.1499,-0.5768],[123.1443,-0.5748],[123.1374,-0.576],[123.1127,-0.5699],[123.0993,-0.5744],[123.0976,-0.5767],[123.0897,-0.5769],[123.0892,-0.5728],[123.0833,-0.5701],[123.0778,-0.5714],[123.0736,-0.569],[123.0602,-0.5643],[123.057,-0.5643],[123.0501,-0.5686],[123.0498,-0.5742],[123.0532,-0.5783],[123.0514,-0.5833],[123.0425,-0.5948],[123.0356,-0.595],[123.0311,-0.5986],[123.0259,-0.5958],[123.0227,-0.5984],[123.0124,-0.6011],[123.0125,-0.605],[123.0063,-0.612],[122.9986,-0.6171],[122.9941,-0.6176],[122.9876,-0.6226],[122.9848,-0.6169],[122.9715,-0.6194],[122.9634,-0.6241],[122.9619,-0.6328],[122.9564,-0.6336],[122.9577,-0.6438],[122.9527,-0.6442],[122.9517,-0.6378],[122.9465,-0.6376],[122.9459,-0.6265],[122.9402,-0.6261],[122.938,-0.6212],[122.9281,-0.6183],[122.9243,-0.6205],[122.9234,-0.6259],[122.9203,-0.6264],[122.8996,-0.6248],[122.8968,-0.6269],[122.8928,-0.6354],[122.8869,-0.6357],[122.8791,-0.6385],[122.8746,-0.6351],[122.8736,-0.6292],[122.8605,-0.626],[122.852,-0.6288],[122.852,-0.6318],[122.8473,-0.6395],[122.842,-0.6415],[122.834,-0.6407],[122.8331,-0.6362],[122.8272,-0.6342],[122.8199,-0.6349],[122.8209,-0.6299],[122.8073,-0.6341],[122.8019,-0.641],[122.8021,-0.6493],[122.7966,-0.6548],[122.793,-0.6608],[122.786,-0.6645],[122.7814,-0.6695],[122.769,-0.6691],[122.7627,-0.6643],[122.7574,-0.6635],[122.7432,-0.6643],[122.7393,-0.6613],[122.7327,-0.663],[122.7258,-0.6608],[122.7272,-0.6663],[122.7319,-0.6761],[122.7426,-0.6766],[122.7476,-0.6789],[122.7497,-0.6837],[122.7643,-0.6928],[122.7667,-0.6965],[122.7782,-0.701],[122.7816,-0.7049],[122.7866,-0.7036],[122.7978,-0.7057],[122.801,-0.7081],[122.8083,-0.7073],[122.8153,-0.7035],[122.8282,-0.7054],[122.833,-0.7096],[122.8384,-0.7102],[122.8479,-0.709],[122.8499,-0.713],[122.8564,-0.7118],[122.8644,-0.7123],[122.8694,-0.7111],[122.8717,-0.7162],[122.88,-0.7172],[122.8871,-0.722],[122.8907,-0.7356],[122.8947,-0.7385],[122.902,-0.7341],[122.9055,-0.734],[122.908,-0.7387],[122.9184,-0.7384],[122.9251,-0.7367],[122.9387,-0.7372],[122.9446,-0.741],[122.9475,-0.736],[122.952,-0.7408],[122.9575,-0.7409],[122.9622,-0.7431],[122.9641,-0.7492],[122.9612,-0.7542],[122.9454,-0.7533],[122.9421,-0.7511],[122.9328,-0.7536],[122.9299,-0.7578],[122.9248,-0.759],[122.9235,-0.7634],[122.9176,-0.7661],[122.906,-0.7674],[122.904,-0.7687],[122.8915,-0.7689],[122.8787,-0.7711],[122.8772,-0.7743],[122.8706,-0.7756],[122.8677,-0.7741],[122.8632,-0.7761],[122.857,-0.7677],[122.8509,-0.7666],[122.8442,-0.7698],[122.8378,-0.7769],[122.8349,-0.7761],[122.8284,-0.7798],[122.8217,-0.7809],[122.8064,-0.7788],[122.8012,-0.7807],[122.7978,-0.7768],[122.7907,-0.776],[122.7846,-0.78],[122.7757,-0.7829],[122.7681,-0.7898],[122.7628,-0.7926],[122.7495,-0.8023],[122.7427,-0.8039],[122.7342,-0.8101],[122.728,-0.8127],[122.7204,-0.8106],[122.6961,-0.809],[122.6856,-0.8103],[122.6848,-0.8065],[122.6788,-0.8024],[122.6665,-0.8001],[122.6611,-0.7976],[122.6498,-0.79],[122.6524,-0.7859],[122.6466,-0.7829],[122.6402,-0.7772],[122.6331,-0.769],[122.6373,-0.766],[122.6257,-0.7642],[122.6197,-0.7652],[122.615,-0.7615],[122.6104,-0.7658],[122.6051,-0.768],[122.5993,-0.7732],[122.5895,-0.774],[122.5866,-0.7797],[122.5805,-0.7837],[122.5649,-0.7823],[122.56,-0.7796],[122.5519,-0.7798],[122.5469,-0.7822],[122.5402,-0.78],[122.5343,-0.7825],[122.529,-0.7817],[122.5248,-0.786],[122.5224,-0.7843],[122.5215,-0.7775],[122.5112,-0.7678],[122.504,-0.77],[122.4901,-0.7695],[122.4853,-0.7667],[122.4764,-0.7644],[122.4692,-0.7599],[122.4658,-0.7617],[122.4589,-0.7587],[122.4544,-0.7596],[122.4471,-0.7636],[122.4385,-0.7655],[122.432,-0.7736],[122.4241,-0.7792],[122.4141,-0.7833],[122.4063,-0.7817],[122.4031,-0.7837],[122.388,-0.7812],[122.3832,-0.7845],[122.3788,-0.7816],[122.3749,-0.7817],[122.3698,-0.7787],[122.364,-0.7786],[122.3603,-0.776],[122.3483,-0.7831],[122.3416,-0.7834],[122.3353,-0.777],[122.3306,-0.7771],[122.3222,-0.7837],[122.3163,-0.7862],[122.3104,-0.7926],[122.3048,-0.793],[122.2987,-0.7882],[122.2869,-0.79],[122.2834,-0.7862],[122.2729,-0.7882],[122.264,-0.7857],[122.2541,-0.7897],[122.2415,-0.7865],[122.235,-0.787],[122.2292,-0.785],[122.2221,-0.7874],[122.2202,-0.7898],[122.2117,-0.7922],[122.2029,-0.788],[122.1949,-0.7948],[122.1927,-0.8015],[122.1865,-0.812],[122.1753,-0.8078],[122.1721,-0.8085],[122.1646,-0.8139],[122.1585,-0.8141],[122.1551,-0.8265],[122.1571,-0.8328],[122.1631,-0.835],[122.1657,-0.838],[122.1616,-0.8466],[122.1523,-0.852],[122.1466,-0.8596],[122.1472,-0.8716],[122.1445,-0.8747],[122.1478,-0.8861],[122.1479,-0.8936],[122.1447,-0.9065],[122.1351,-0.9207],[122.1293,-0.9248],[122.1281,-0.9285],[122.1192,-0.9394],[122.1169,-0.9399],[122.1073,-0.9491],[122.0953,-0.9548],[122.0905,-0.9514],[122.0727,-0.9435],[122.064,-0.9457],[122.0581,-0.9405],[122.0515,-0.9434],[122.0424,-0.9391],[122.039,-0.9413],[122.0274,-0.9356],[122.0254,-0.9321],[122.0191,-0.9316],[122.0128,-0.9363],[122.0041,-0.9334],[121.9985,-0.9404],[121.9946,-0.9432],[121.9886,-0.9425],[121.986,-0.9479],[121.985,-0.9553],[121.9798,-0.9599],[121.9781,-0.9647],[121.9701,-0.9706],[121.9629,-0.9724],[121.9565,-0.9824],[121.9484,-0.985],[121.9424,-0.9887],[121.938,-0.9869],[121.9288,-0.9872],[121.9232,-0.9856],[121.9102,-0.989],[121.9041,-0.9838],[121.9005,-0.9787],[121.8945,-0.9746],[121.8818,-0.9745],[121.8737,-0.9719],[121.8637,-0.9668],[121.8563,-0.9688]],[[122.6048,-0.4823],[122.6028,-0.4806],[122.5884,-0.4845],[122.5848,-0.4841],[122.5696,-0.493],[122.5631,-0.4907],[122.5545,-0.4923],[122.5464,-0.4915],[122.5365,-0.4929],[122.5304,-0.4923],[122.524,-0.4991],[122.5243,-0.5033],[122.5284,-0.5077],[122.5332,-0.507],[122.538,-0.5029],[122.5501,-0.5096],[122.5578,-0.5189],[122.5641,-0.5203],[122.5704,-0.514],[122.5803,-0.5107],[122.5848,-0.5044],[122.5918,-0.5055],[122.6006,-0.5052],[122.6072,-0.5029],[122.6164,-0.5027],[122.6168,-0.4985],[122.6121,-0.4946],[122.6048,-0.4823]]]}},{"type":"Feature","properties":{"mhid":"1332:398","alt_name":"KABUPATEN MOROWALI","latitude":-1.89342,"longitude":121.25473,"sample_value":829},"geometry":{"type":"MultiLineString","coordinates":[[[123.1575,-3.5572],[123.1492,-3.5563],[123.1304,-3.5662],[123.1148,-3.5694],[123.0929,-3.5714],[123.0722,-3.5774],[123.0685,-3.5835],[123.0604,-3.5852],[123.0502,-3.5912],[123.0439,-3.5928],[123.0488,-3.6011],[123.0713,-3.6204],[123.0738,-3.6247],[123.078,-3.625],[123.0928,-3.6332],[123.0963,-3.6333],[123.1071,-3.6394],[123.1148,-3.6391],[123.1201,-3.6363],[123.1208,-3.6333],[123.1197,-3.615],[123.1253,-3.611],[123.1288,-3.6111],[123.1399,-3.6148],[123.1531,-3.6207],[123.1562,-3.6204],[123.1691,-3.6227],[123.1709,-3.6206],[123.1778,-3.6211],[123.1783,-3.6178],[123.1828,-3.6124],[123.1809,-3.6015],[123.1735,-3.5873],[123.1736,-3.5844],[123.1639,-3.5696],[123.1605,-3.5604],[123.1575,-3.5572]],[[123.106,-3.5013],[123.1035,-3.4966],[123.095,-3.5052],[123.0914,-3.5054],[123.0861,-3.509],[123.0682,-3.5159],[123.06,-3.5133],[123.0592,-3.516],[123.0626,-3.5283],[123.0706,-3.5274],[123.0778,-3.5243],[123.0881,-3.5159],[123.1017,-3.5057],[123.106,-3.5013]],[[122.3907,-3.344],[122.3935,-3.3529],[122.3965,-3.3517],[122.3964,-3.344],[122.3907,-3.344]],[[122.4031,-3.3182],[122.3991,-3.3121],[122.3959,-3.317],[122.3977,-3.3221],[122.396,-3.3249],[122.4003,-3.3321],[122.4053,-3.3267],[122.4025,-3.3223],[122.4031,-3.3182]],[[122.3927,-3.2778],[122.3896,-3.2776],[122.3838,-3.2829],[122.3841,-3.2922],[122.3902,-3.2921],[122.3924,-3.2865],[122.3927,-3.2778]],[[122.4397,-3.2794],[122.4386,-3.2755],[122.4342,-3.2726],[122.4324,-3.2791],[122.4337,-3.2835],[122.4397,-3.2794]],[[122.614,-3.1306],[122.6134,-3.1242],[122.6095,-3.125],[122.6087,-3.1309],[122.614,-3.1306]],[[122.5267,-3.092],[122.5202,-3.0934],[122.5228,-3.0989],[122.527,-3.0991],[122.5294,-3.0953],[122.5267,-3.092]],[[122.5334,-3.0795],[122.5307,-3.0802],[122.5286,-3.0878],[122.5347,-3.0891],[122.5334,-3.0795]],[[122.47,-3.059],[122.4648,-3.0587],[122.4611,-3.0614],[122.4686,-3.0725],[122.4784,-3.0785],[122.4845,-3.0749],[122.4801,-3.0681],[122.4791,-3.0637],[122.4733,-3.0593],[122.47,-3.059]],[[122.499,-3.0656],[122.4953,-3.065],[122.4899,-3.0585],[122.4852,-3.0634],[122.4894,-3.0693],[122.4857,-3.0813],[122.4956,-3.0871],[122.5091,-3.0881],[122.516,-3.0897],[122.5193,-3.0874],[122.5166,-3.0817],[122.5142,-3.071],[122.5142,-3.0643],[122.5082,-3.0599],[122.5028,-3.0604],[122.499,-3.0656]],[[122.3869,-3.0601],[122.3888,-3.0516],[122.3796,-3.0553],[122.3869,-3.0601]],[[122.3845,-3.0299],[122.3672,-3.0307],[122.358,-3.0358],[122.3579,-3.0401],[122.3608,-3.043],[122.3718,-3.0448],[122.3849,-3.0439],[122.3847,-3.0366],[122.3869,-3.033],[122.3845,-3.0299]],[[122.4094,-3.0168],[122.406,-3.0172],[122.3984,-3.0232],[122.3919,-3.03],[122.3908,-3.0387],[122.3928,-3.0439],[122.3974,-3.0454],[122.3979,-3.0529],[122.4021,-3.0571],[122.4116,-3.0619],[122.421,-3.0601],[122.4268,-3.0542],[122.4258,-3.0498],[122.4209,-3.0428],[122.4117,-3.0359],[122.4128,-3.0295],[122.4028,-3.027],[122.4047,-3.0193],[122.4094,-3.0168]],[[122.3273,-3.0001],[122.32,-2.9963],[122.3158,-3.0007],[122.3226,-3.0061],[122.3242,-3.0109],[122.331,-3.0171],[122.3359,-3.02],[122.3474,-3.0227],[122.3518,-3.0152],[122.3601,-3.0155],[122.3577,-3.0092],[122.3543,-3.0068],[122.3488,-3.0079],[122.3406,-3.0069],[122.3273,-3.0001]],[[122.3107,-3.2729],[122.3139,-3.2722],[122.3167,-3.2663],[122.3172,-3.2592],[122.3213,-3.2543],[122.3234,-3.2413],[122.3257,-3.2353],[122.3319,-3.2363],[122.3389,-3.2317],[122.3424,-3.231],[122.3476,-3.2369],[122.3581,-3.2297],[122.3652,-3.2267],[122.3701,-3.2286],[122.3648,-3.233],[122.3685,-3.2402],[122.3567,-3.2505],[122.3592,-3.2552],[122.3667,-3.2543],[122.3686,-3.2471],[122.3746,-3.2474],[122.3756,-3.2545],[122.3863,-3.2551],[122.3985,-3.248],[122.3969,-3.243],[122.4011,-3.2396],[122.4058,-3.243],[122.4086,-3.2487],[122.4082,-3.2562],[122.4162,-3.2584],[122.4168,-3.2621],[122.4216,-3.2633],[122.4218,-3.2741],[122.4252,-3.2785],[122.4309,-3.2747],[122.4303,-3.2623],[122.4331,-3.2571],[122.4287,-3.2557],[122.4282,-3.2507],[122.4235,-3.2474],[122.431,-3.2453],[122.4334,-3.24],[122.4325,-3.2351],[122.428,-3.2266],[122.4255,-3.2106],[122.423,-3.2054],[122.4291,-3.2005],[122.4286,-3.1925],[122.4362,-3.1881],[122.4615,-3.1895],[122.4692,-3.1888],[122.4822,-3.1827],[122.4859,-3.1786],[122.4814,-3.174],[122.4736,-3.1687],[122.4716,-3.165],[122.4648,-3.1597],[122.4644,-3.1498],[122.4572,-3.1498],[122.4597,-3.1628],[122.4536,-3.1639],[122.4453,-3.1621],[122.4457,-3.1488],[122.4437,-3.142],[122.4328,-3.1406],[122.4258,-3.1336],[122.4284,-3.1309],[122.4266,-3.1269],[122.4222,-3.1263],[122.4074,-3.1304],[122.3946,-3.1366],[122.3953,-3.1394],[122.3854,-3.1404],[122.3802,-3.1448],[122.3714,-3.1416],[122.3684,-3.1361],[122.3585,-3.1288],[122.3519,-3.1156],[122.3488,-3.1036],[122.3364,-3.092],[122.3356,-3.0858],[122.3297,-3.0836],[122.3231,-3.0784],[122.3121,-3.0726],[122.3084,-3.0692],[122.3051,-3.0607],[122.2979,-3.0581],[122.2879,-3.0516],[122.2838,-3.0523],[122.2789,-3.0492],[122.2752,-3.0496],[122.2671,-3.0404],[122.2608,-3.0383],[122.2519,-3.0173],[122.2511,-3.0129],[122.254,-3.0102],[122.2618,-3.0076],[122.2689,-3.0011],[122.2758,-3.0022],[122.2785,-2.9996],[122.2806,-2.9894],[122.2899,-2.9793],[122.298,-2.968],[122.3005,-2.9624],[122.307,-2.9562],[122.3078,-2.9461],[122.3113,-2.9385],[122.319,-2.9276],[122.3207,-2.921],[122.3129,-2.9109],[122.307,-2.9068],[122.299,-2.8973],[122.2943,-2.8958],[122.2918,-2.892],[122.2846,-2.8905],[122.2783,-2.8864],[122.2718,-2.8862],[122.2646,-2.8898],[122.2592,-2.8872],[122.2513,-2.8891],[122.2541,-2.8808],[122.2503,-2.8776],[122.2449,-2.8796],[122.2313,-2.8874],[122.2262,-2.8869],[122.222,-2.8953],[122.2163,-2.9001],[122.2098,-2.8997],[122.2075,-2.8951],[122.207,-2.8876],[122.2045,-2.8827],[122.1985,-2.8827],[122.1913,-2.878],[122.1863,-2.8728],[122.1842,-2.8655],[122.1855,-2.8578],[122.1932,-2.8448],[122.1903,-2.8363],[122.1882,-2.8344],[122.1848,-2.8238],[122.178,-2.8183],[122.1726,-2.8225],[122.1607,-2.8162],[122.15,-2.7963],[122.1397,-2.7889],[122.1319,-2.7883],[122.1189,-2.7893],[122.1044,-2.7872],[122.094,-2.7894],[122.0856,-2.7887],[122.0833,-2.7835],[122.0769,-2.7766],[122.0733,-2.7745],[122.0695,-2.7658],[122.0647,-2.7641],[122.058,-2.7487],[122.047,-2.7404],[122.0292,-2.7248],[122.0202,-2.7213],[122.0191,-2.7228],[122.0101,-2.7181],[122.0067,-2.7061],[122.0067,-2.6949],[122.0081,-2.6826],[122.0101,-2.6751],[122.0199,-2.6692],[122.0254,-2.6703],[122.03,-2.6743],[122.0327,-2.6738],[122.0373,-2.6686],[122.0357,-2.6583],[122.031,-2.654],[122.0246,-2.6458],[122.0171,-2.6465],[122.0087,-2.6293],[122.0014,-2.6276],[122.0007,-2.6247],[122.0045,-2.6208],[121.9974,-2.6149],[121.9942,-2.6069],[121.9893,-2.599],[121.9874,-2.5922],[121.9881,-2.5875],[121.9859,-2.5843],[121.9865,-2.5773],[121.9782,-2.5585],[121.977,-2.5508],[121.9751,-2.5498],[121.9694,-2.5372],[121.969,-2.531],[121.9659,-2.5247],[121.9578,-2.5164],[121.9543,-2.5069],[121.9506,-2.5021],[121.9491,-2.4973],[121.9435,-2.4932],[121.9413,-2.4883],[121.9419,-2.4823],[121.9389,-2.4772],[121.9348,-2.4764],[121.928,-2.4634],[121.919,-2.4575],[121.9121,-2.448],[121.9112,-2.4381],[121.9057,-2.4301],[121.8972,-2.4253],[121.8947,-2.42],[121.8891,-2.4171],[121.8883,-2.413],[121.8836,-2.4113],[121.8762,-2.4048],[121.8746,-2.4008],[121.8759,-2.3933],[121.871,-2.3918],[121.8706,-2.383],[121.8649,-2.3747],[121.8635,-2.3698],[121.8565,-2.3628],[121.8548,-2.3554],[121.8424,-2.3489],[121.8404,-2.3456],[121.8395,-2.3356],[121.8371,-2.3335],[121.8369,-2.328],[121.8344,-2.3243],[121.8347,-2.3187],[121.8317,-2.3107],[121.8284,-2.3056],[121.8251,-2.2944],[121.8182,-2.2915],[121.8127,-2.2919],[121.797,-2.2893],[121.7944,-2.2874],[121.7872,-2.2778],[121.7784,-2.2712],[121.7761,-2.2618],[121.7718,-2.2554],[121.7683,-2.2553],[121.7569,-2.2496],[121.7552,-2.2403],[121.7499,-2.2386],[121.7435,-2.2322],[121.7428,-2.2266],[121.7381,-2.2205],[121.7299,-2.2153],[121.7264,-2.2014],[121.7196,-2.1955],[121.7121,-2.1947],[121.705,-2.1884],[121.6966,-2.1915],[121.6882,-2.1875],[121.6828,-2.1783],[121.6741,-2.1834],[121.6662,-2.1854],[121.657,-2.1859],[121.6503,-2.1846],[121.6471,-2.1877],[121.631,-2.1833],[121.6251,-2.1844],[121.6191,-2.1832],[121.614,-2.1865],[121.6064,-2.1851],[121.6002,-2.181],[121.5925,-2.1784],[121.5848,-2.1787],[121.5759,-2.1743],[121.5708,-2.1759],[121.5609,-2.1735],[121.5518,-2.1665],[121.5445,-2.1484]]]}},{"type":"Feature","properties":{"mhid":"1332:399","alt_name":"KABUPATEN POSO","latitude":-1.65,"longitude":120.5,"sample_value":724},"geometry":{"type":"MultiLineString","coordinates":[[[120.8905,-1.4133],[120.8852,-1.4138],[120.8831,-1.4099],[120.8777,-1.4117],[120.873,-1.4111],[120.866,-1.4138],[120.857,-1.4109],[120.8532,-1.4072],[120.8486,-1.407],[120.8412,-1.4016],[120.8375,-1.3956],[120.8391,-1.3901],[120.8363,-1.3724],[120.8403,-1.3673],[120.8403,-1.3581],[120.8373,-1.3559],[120.8303,-1.3565],[120.8192,-1.3534],[120.8146,-1.3559],[120.8095,-1.3562],[120.8027,-1.3506],[120.8002,-1.3558],[120.797,-1.3547],[120.7901,-1.3617],[120.7884,-1.3676],[120.7847,-1.3721],[120.7809,-1.3717],[120.775,-1.3683],[120.7684,-1.3685],[120.763,-1.3648],[120.7575,-1.3713],[120.7575,-1.377],[120.7535,-1.38],[120.7522,-1.3859],[120.7474,-1.3885],[120.7425,-1.3869],[120.7359,-1.3815],[120.7278,-1.3839],[120.7205,-1.3884],[120.7166,-1.3944],[120.7071,-1.3989],[120.7004,-1.4062],[120.6994,-1.4121],[120.6902,-1.4199],[120.6753,-1.4149],[120.6728,-1.4073],[120.6731,-1.3976],[120.6649,-1.3916],[120.6655,-1.3838],[120.6592,-1.3819],[120.655,-1.3747],[120.6504,-1.3721],[120.6439,-1.3652],[120.6428,-1.3609],[120.6471,-1.3545],[120.6462,-1.3493],[120.6474,-1.3425],[120.6467,-1.3296],[120.6414,-1.3214],[120.6404,-1.3136],[120.6321,-1.3042],[120.6238,-1.2989],[120.6223,-1.2948],[120.6122,-1.2849],[120.6062,-1.2838],[120.6038,-1.279],[120.5913,-1.2655],[120.5843,-1.2635],[120.5815,-1.2602],[120.5712,-1.2562],[120.5716,-1.2503],[120.5694,-1.2469],[120.5705,-1.2425],[120.5677,-1.2344],[120.565,-1.2318],[120.5665,-1.2262],[120.5708,-1.2193],[120.572,-1.2128],[120.5696,-1.2078],[120.5723,-1.205],[120.5722,-1.1984],[120.5764,-1.1981],[120.5774,-1.1944],[120.5841,-1.1913],[120.5869,-1.1862],[120.5876,-1.1809],[120.5915,-1.178],[120.593,-1.1669],[120.5918,-1.165],[120.5932,-1.1561],[120.5929,-1.1484],[120.5888,-1.1454],[120.5885,-1.1414],[120.5852,-1.1355],[120.5817,-1.1338],[120.582,-1.1247],[120.5878,-1.1245],[120.5872,-1.1204],[120.5832,-1.1186],[120.5864,-1.1138],[120.5852,-1.111],[120.5795,-1.1086]]]}},{"type":"Feature","properties":{"mhid":"1332:400","alt_name":"KABUPATEN DONGGALA","latitude":-0.58333,"longitude":119.85,"sample_value":229},"geometry":{"type":"MultiLineString","coordinates":[[[119.8054,-0.8027],[119.8035,-0.791],[119.7975,-0.7866],[119.7932,-0.7761],[119.788,-0.7698],[119.7919,-0.7643],[119.7868,-0.7587],[119.7879,-0.7555],[119.7831,-0.7515],[119.7797,-0.7455],[119.7789,-0.7388],[119.7758,-0.726],[119.7763,-0.7214],[119.7722,-0.7158],[119.769,-0.7034],[119.7653,-0.7055],[119.7606,-0.704],[119.7586,-0.7006],[119.7582,-0.6944],[119.7621,-0.6852],[119.7563,-0.6761],[119.7474,-0.6691],[119.7411,-0.6628],[119.7391,-0.6532],[119.7399,-0.6452],[119.7321,-0.6442],[119.7274,-0.6457],[119.7222,-0.6645],[119.7167,-0.6752],[119.7099,-0.6844],[119.6925,-0.691],[119.6889,-0.6939],[119.6896,-0.7003],[119.6792,-0.7049],[119.6714,-0.7024],[119.6645,-0.7138],[119.6611,-0.7168],[119.6656,-0.7213],[119.6747,-0.7209],[119.6796,-0.7293],[119.681,-0.7345],[119.6856,-0.742],[119.686,-0.749],[119.6815,-0.7583],[119.6841,-0.7629],[119.682,-0.7687],[119.6763,-0.7665],[119.6676,-0.7676],[119.6675,-0.7729],[119.6621,-0.7783],[119.6574,-0.7806],[119.6561,-0.7842],[119.659,-0.7893],[119.6576,-0.7978],[119.6635,-0.7976],[119.6634,-0.8011],[119.6569,-0.8047],[119.6517,-0.7941],[119.6573,-0.7878],[119.6533,-0.7838],[119.6449,-0.7896],[119.6412,-0.79],[119.6273,-0.797],[119.6221,-0.8028],[119.6212,-0.8199],[119.6176,-0.8297],[119.6141,-0.8342],[119.6074,-0.835],[119.5968,-0.8432],[119.5844,-0.8472],[119.5716,-0.8493],[119.5628,-0.8487],[119.5615,-0.8514]],[[119.6223,0.093],[119.6182,0.0984],[119.6162,0.093],[119.6223,0.093]],[[119.9083,0.4844],[119.9071,0.4902],[119.8996,0.4945],[119.8914,0.4918],[119.8988,0.4825],[119.9043,0.4813],[119.9083,0.4844]],[[119.8592,0.5324],[119.855,0.531],[119.8535,0.5245],[119.8504,0.5208],[119.8497,0.5077],[119.8599,0.5158],[119.8683,0.5154],[119.8763,0.5185],[119.8784,0.5212],[119.8697,0.529],[119.8592,0.5324]],[[119.7952,0.581],[119.7917,0.5819],[119.7913,0.5761],[119.7941,0.574],[119.7984,0.5766],[119.7952,0.581]],[[120.1372,0.745],[120.1226,0.741],[120.1118,0.7429],[120.1037,0.7411],[120.0978,0.7471],[120.0945,0.7407],[120.0904,0.7387],[120.0817,0.739],[120.0766,0.7422],[120.0676,0.7369],[120.0592,0.7272],[120.0609,0.7176],[120.0553,0.713],[120.0504,0.7112],[120.0452,0.7117],[120.0407,0.7098],[120.038,0.6998],[120.0351,0.6946],[120.0341,0.6881],[120.0296,0.6856],[120.0282,0.6791],[120.0178,0.6731],[120.0141,0.6631],[120.0142,0.6518],[120.0173,0.6464],[120.0231,0.6254],[120.0283,0.6214],[120.0332,0.6095],[120.0344,0.6015],[120.0345,0.588],[120.0379,0.5713],[120.0371,0.5607],[120.0399,0.5463],[120.0439,0.5414],[120.0476,0.5295],[120.0463,0.5173],[120.0468,0.5137],[120.0397,0.5086],[120.0274,0.5029],[120.0191,0.4951],[120.0081,0.4873],[119.9989,0.4833],[119.989,0.4831],[119.9815,0.4813],[119.9681,0.4806],[119.9587,0.4763],[119.9509,0.4742],[119.9184,0.4774],[119.9112,0.4753],[119.9008,0.479],[119.9014,0.4722],[119.8999,0.4689],[119.8884,0.4637],[119.8821,0.4584],[119.8799,0.4492],[119.8782,0.4477],[119.8763,0.4367],[119.879,0.4302],[119.8843,0.4268],[119.8879,0.4192],[119.8882,0.3924],[119.8804,0.384],[119.8754,0.3822],[119.8724,0.3765],[119.8667,0.3717],[119.8572,0.3615],[119.8508,0.3563],[119.8483,0.3518],[119.8474,0.3376],[119.8452,0.3353],[119.8519,0.3259],[119.8581,0.3225],[119.8603,0.317],[119.8651,0.3098],[119.8658,0.3066],[119.8718,0.2946],[119.8752,0.2924],[119.8859,0.2951],[119.8932,0.2872],[119.8941,0.2704],[119.8975,0.2674],[119.8982,0.2459],[119.906,0.2324],[119.9044,0.2255],[119.9003,0.2189],[119.8871,0.211],[119.8762,0.2172],[119.8677,0.2182],[119.8636,0.2157],[119.8545,0.2144],[119.8481,0.2183],[119.8342,0.216],[119.8288,0.2244],[119.8292,0.2286],[119.8213,0.2343],[119.8132,0.234],[119.8089,0.2364],[119.8006,0.2346],[119.7882,0.2301],[119.7799,0.2249],[119.7705,0.2127],[119.7719,0.2023],[119.774,0.1965],[119.7778,0.1909],[119.7844,0.1872],[119.7887,0.183],[119.7956,0.1717],[119.8056,0.1643],[119.8137,0.1568],[119.8241,0.1522],[119.8295,0.1474],[119.8314,0.1405],[119.8386,0.1313],[119.8498,0.1264],[119.8509,0.1226],[119.8574,0.1151],[119.8593,0.107],[119.8644,0.108],[119.8681,0.1057],[119.8704,0.1004],[119.872,0.0893],[119.8771,0.0841],[119.8789,0.0771],[119.8781,0.0702],[119.8793,0.063],[119.8749,0.0431],[119.8811,0.0289],[119.8818,0.0205],[119.8857,-0.0012],[119.8833,-0.0176],[119.8808,-0.0274],[119.8778,-0.0334],[119.8714,-0.0424],[119.8708,-0.048],[119.8656,-0.0596],[119.8572,-0.0679],[119.8557,-0.072],[119.8506,-0.0787],[119.8431,-0.0914],[119.8418,-0.0982],[119.8364,-0.1046],[119.8281,-0.1105],[119.8224,-0.1165],[119.8174,-0.1127],[119.8043,-0.1078],[119.7984,-0.1066],[119.7908,-0.1083],[119.7828,-0.1123],[119.7774,-0.1111],[119.7724,-0.1039],[119.7747,-0.0946],[119.7743,-0.0907],[119.7696,-0.0779],[119.7617,-0.0718],[119.7523,-0.0725],[119.7461,-0.069],[119.7387,-0.0613],[119.7395,-0.0519],[119.7427,-0.0489],[119.7425,-0.0356],[119.7398,-0.0299],[119.7225,-0.0097],[119.7089,-0.0017],[119.7036,-0.0005],[119.6988,0.0032],[119.69,0.0043],[119.6713,0.0121],[119.6707,0.0163],[119.6652,0.0201],[119.6595,0.0173],[119.6622,0.0065],[119.6685,0.0021],[119.6731,0.0022],[119.6702,-0.007],[119.6642,-0.018],[119.6579,-0.0166],[119.6472,-0.0111],[119.6361,-0.0086],[119.6269,-0.0113],[119.6104,-0.0043],[119.6064,-0.0042],[119.6061,-0.0121],[119.6085,-0.0187],[119.6153,-0.0319],[119.6239,-0.0441],[119.6295,-0.0477],[119.6352,-0.0612],[119.6386,-0.0594],[119.6441,-0.0636],[119.6433,-0.0683],[119.6517,-0.0775],[119.6496,-0.0807],[119.6542,-0.0894],[119.6545,-0.0949],[119.6598,-0.0962],[119.6627,-0.1051],[119.6675,-0.1116],[119.6718,-0.115],[119.6862,-0.1206],[119.6926,-0.1259],[119.6961,-0.1309],[119.702,-0.1358],[119.7089,-0.1394],[119.7141,-0.1405],[119.7213,-0.1445],[119.7253,-0.1426],[119.7377,-0.143],[119.7414,-0.1405],[119.754,-0.138],[119.7662,-0.1291],[119.7717,-0.1291],[119.7804,-0.1242],[119.7879,-0.1258],[119.7938,-0.1218],[119.8016,-0.1241],[119.8057,-0.1288],[119.8103,-0.1367],[119.8107,-0.1416],[119.804,-0.1515],[119.7997,-0.1563],[119.8014,-0.1648],[119.8113,-0.1735],[119.8149,-0.1806],[119.8184,-0.1925],[119.8161,-0.2013],[119.812,-0.204],[119.8051,-0.213],[119.8043,-0.2256],[119.7997,-0.2341],[119.7965,-0.2456],[119.7952,-0.2554],[119.7935,-0.258],[119.7868,-0.2615],[119.7857,-0.2654],[119.7789,-0.2769],[119.7764,-0.2863],[119.7771,-0.2923],[119.7738,-0.3026],[119.7738,-0.3123],[119.7716,-0.3169],[119.7699,-0.3274],[119.7633,-0.3379],[119.7639,-0.3488],[119.7624,-0.3524],[119.7563,-0.3558],[119.752,-0.3647],[119.7529,-0.3739],[119.7608,-0.3847],[119.7634,-0.393],[119.7643,-0.4013],[119.7607,-0.4143],[119.7561,-0.4265],[119.7572,-0.4326],[119.7544,-0.4375],[119.7612,-0.4528],[119.7619,-0.4646],[119.7638,-0.476],[119.759,-0.4847],[119.7597,-0.4972],[119.7674,-0.5064],[119.769,-0.5147],[119.7674,-0.5175],[119.7708,-0.5287],[119.7766,-0.5313],[119.7802,-0.5429],[119.7829,-0.5478],[119.7898,-0.5739],[119.7899,-0.5929],[119.7888,-0.596],[119.7923,-0.6058],[119.8022,-0.6164],[119.8064,-0.6253],[119.8111,-0.628],[119.8108,-0.6332],[119.8061,-0.6428],[119.807,-0.6495],[119.8125,-0.6604],[119.8181,-0.6651],[119.8171,-0.6719],[119.8223,-0.6873],[119.8255,-0.69],[119.8354,-0.6927],[119.8437,-0.6968]]]}},{"type":"Feature","properties":{"mhid":"1332:401","alt_name":"KABUPATEN TOLI-TOLI","latitude":1.30862,"longitude":120.88643,"sample_value":533},"geometry":{"type":"MultiLineString","coordinates":[[[120.2355,0.9698],[120.2378,0.9743],[120.2439,0.9769],[120.248,0.9865],[120.2408,0.9853],[120.2402,0.9814],[120.2359,0.9786],[120.2309,0.9728],[120.2355,0.9698]],[[120.7348,0.9937],[120.7326,0.9981],[120.7277,1.0024],[120.7148,1.0015],[120.7036,0.9967],[120.7001,0.9918],[120.7069,0.9863],[120.7151,0.9871],[120.7227,0.9854],[120.728,0.99],[120.7348,0.9937]],[[120.774,1.041],[120.7769,1.0453],[120.7715,1.0481],[120.7704,1.0424],[120.774,1.041]],[[120.6208,1.0659],[120.6117,1.0694],[120.6048,1.0678],[120.5995,1.0641],[120.6023,1.0611],[120.608,1.0643],[120.6136,1.0584],[120.6147,1.0513],[120.6182,1.054],[120.6253,1.0469],[120.6272,1.049],[120.6346,1.0497],[120.6396,1.0481],[120.6408,1.0435],[120.6441,1.043],[120.6454,1.0378],[120.644,1.0332],[120.6523,1.0329],[120.6567,1.0233],[120.6618,1.0226],[120.665,1.0178],[120.6745,1.0158],[120.6648,1.0247],[120.6673,1.0341],[120.6655,1.0403],[120.6602,1.0431],[120.6574,1.0405],[120.6471,1.0417],[120.6459,1.046],[120.6371,1.0536],[120.6318,1.056],[120.6279,1.0625],[120.6208,1.0659]],[[120.3986,1.0388],[120.3998,1.0435],[120.3988,1.0495],[120.4028,1.0558],[120.4026,1.064],[120.4003,1.0712],[120.3895,1.0779],[120.384,1.0777],[120.3777,1.0735],[120.3703,1.0591],[120.3677,1.0466],[120.3682,1.0386],[120.3658,1.0291],[120.368,1.0187],[120.3712,1.0133],[120.3758,1.0089],[120.3858,1.0067],[120.3926,1.0103],[120.3943,1.0189],[120.3971,1.0225],[120.395,1.0309],[120.3986,1.0337],[120.3986,1.0388]],[[120.672,1.0707],[120.6755,1.0778],[120.6693,1.0764],[120.6677,1.0709],[120.672,1.0707]],[[120.8074,1.2806],[120.8014,1.2841],[120.7999,1.2791],[120.8074,1.2806]],[[121.1767,1.2605],[121.1775,1.2679],[121.1631,1.2776],[121.1556,1.2848],[121.1496,1.289],[121.1334,1.2984],[121.1001,1.3164],[121.0929,1.3149],[121.0796,1.3195],[121.0743,1.3099],[121.0701,1.3104],[121.0682,1.3054],[121.0627,1.3028],[121.0556,1.3051],[121.0527,1.3102],[121.0463,1.3102],[121.0459,1.3136],[121.0396,1.3128],[121.0392,1.3204],[121.0248,1.3229],[121.0255,1.3277],[121.0207,1.3294],[121.018,1.3253],[121.009,1.327],[120.999,1.3318],[120.9956,1.34],[120.9931,1.3357],[120.9829,1.3389],[120.9734,1.3443],[120.9647,1.3428],[120.9552,1.3466],[120.9422,1.3504],[120.9415,1.3482],[120.9311,1.3402],[120.9287,1.3341],[120.9217,1.3306],[120.9244,1.3281],[120.9301,1.3305],[120.9303,1.3251],[120.9283,1.3186],[120.9244,1.317],[120.9161,1.3195],[120.9087,1.3144],[120.911,1.3085],[120.8929,1.3065],[120.8944,1.3092],[120.9013,1.3092],[120.901,1.3135],[120.893,1.3127],[120.8888,1.3184],[120.8915,1.326],[120.8966,1.3228],[120.8986,1.3178],[120.9058,1.318],[120.9064,1.3223],[120.9001,1.3251],[120.8985,1.3288],[120.8994,1.3342],[120.9045,1.3397],[120.9116,1.3395],[120.9145,1.3431],[120.9089,1.354],[120.9034,1.3567],[120.8973,1.3506],[120.894,1.3513],[120.8951,1.3419],[120.8882,1.3353],[120.8887,1.3279],[120.8815,1.3226],[120.876,1.3226],[120.8649,1.3182],[120.8595,1.3184],[120.8494,1.3163],[120.8385,1.3126],[120.8328,1.3142],[120.8307,1.3197],[120.8229,1.3232],[120.8166,1.3232],[120.8093,1.3249],[120.8074,1.3192],[120.8093,1.3174],[120.8097,1.3083],[120.8114,1.2996],[120.8164,1.298],[120.8216,1.2939],[120.8188,1.2834],[120.8162,1.2805],[120.8112,1.281],[120.8084,1.2626],[120.8134,1.2583],[120.82,1.2567],[120.8168,1.2408],[120.8105,1.2231],[120.8106,1.2181],[120.8161,1.2123],[120.8194,1.2053],[120.8263,1.2057],[120.8257,1.2001],[120.8271,1.1913],[120.822,1.1718],[120.8145,1.1706],[120.8101,1.166],[120.7973,1.1579],[120.7924,1.1638],[120.7888,1.1616],[120.7884,1.1494],[120.7873,1.1454],[120.7898,1.1377],[120.7868,1.1299],[120.7842,1.1198],[120.777,1.1082],[120.7824,1.1038],[120.7891,1.1035],[120.7972,1.0891],[120.7985,1.081],[120.8008,1.075],[120.7971,1.0678],[120.7984,1.0618],[120.7958,1.0535],[120.8067,1.052],[120.8097,1.0479],[120.8094,1.0334],[120.8082,1.0291],[120.8032,1.0282],[120.7936,1.0304],[120.7851,1.0303],[120.7836,1.0275],[120.7753,1.0216],[120.7652,1.0129],[120.7585,1.0106],[120.7609,1.0058],[120.7549,1.0056],[120.7494,1.0013],[120.7479,0.9935],[120.7417,0.9908],[120.7383,0.9873],[120.7373,0.9802],[120.742,0.9746],[120.735,0.9741],[120.7344,0.9782],[120.73,0.9773],[120.7307,0.9686],[120.725,0.9712],[120.7247,0.9652],[120.7199,0.9629],[120.7213,0.9753],[120.7185,0.9771],[120.7119,0.9741],[120.7071,0.9744],[120.7035,0.981],[120.7036,0.9859],[120.697,0.9869],[120.6823,0.9754],[120.6787,0.9701],[120.6824,0.9683],[120.6878,0.9706],[120.6934,0.9645],[120.6926,0.9568],[120.6832,0.9618],[120.689,0.9535],[120.6794,0.952],[120.6751,0.9596],[120.6767,0.9646],[120.6702,0.9657],[120.668,0.9575],[120.6632,0.9529],[120.6677,0.9493],[120.6502,0.9411],[120.6446,0.9432],[120.6385,0.9384],[120.6347,0.9331],[120.6375,0.9247],[120.6381,0.919],[120.6348,0.9144],[120.6297,0.9105],[120.6231,0.9126],[120.6245,0.9058],[120.6219,0.9042],[120.6134,0.8826],[120.6107,0.8807],[120.6107,0.8755],[120.606,0.8759],[120.6033,0.8688],[120.605,0.8637],[120.6098,0.8615],[120.605,0.8519],[120.6063,0.8484],[120.6013,0.8444],[120.5979,0.8392],[120.6009,0.8344],[120.5999,0.8279],[120.603,0.8216],[120.6072,0.8247],[120.613,0.8209],[120.6055,0.8109],[120.6014,0.8094],[120.5972,0.8048],[120.6018,0.8021],[120.5976,0.7938],[120.5949,0.7961],[120.5906,0.7941],[120.5805,0.7797],[120.5761,0.7761],[120.5739,0.7696],[120.5761,0.7677],[120.5837,0.7668],[120.5852,0.7648],[120.5923,0.7643],[120.591,0.7581],[120.5969,0.7534],[120.5929,0.7493],[120.5744,0.7533],[120.569,0.7528],[120.5633,0.7548],[120.5524,0.7566],[120.5481,0.7552],[120.5465,0.7585],[120.555,0.7706],[120.5518,0.7779],[120.5454,0.7816],[120.537,0.7906],[120.5302,0.791],[120.5186,0.7934],[120.4955,0.7931],[120.4881,0.7903],[120.4823,0.786],[120.4774,0.7794],[120.4739,0.778],[120.458,0.7797],[120.4403,0.7847],[120.4328,0.7894],[120.4162,0.7929],[120.4044,0.7903],[120.3973,0.7922],[120.3874,0.8008],[120.384,0.8072],[120.3846,0.8132],[120.3806,0.8232],[120.3759,0.827],[120.374,0.8325],[120.3734,0.8437],[120.3757,0.864],[120.3723,0.8676],[120.3674,0.8646],[120.3675,0.8576],[120.365,0.8521],[120.3655,0.846],[120.3623,0.8427],[120.3653,0.8392],[120.3658,0.83],[120.3634,0.8283],[120.3569,0.8295],[120.3604,0.837],[120.3521,0.838],[120.35,0.8401],[120.3426,0.8415],[120.3287,0.8513],[120.3267,0.8604],[120.3311,0.8663],[120.3299,0.878],[120.3361,0.8846],[120.3389,0.8909],[120.3404,0.8991],[120.3379,0.9089],[120.3415,0.9189],[120.339,0.9263],[120.3418,0.9308],[120.3403,0.9401],[120.3467,0.9522],[120.3454,0.967],[120.348,0.9701],[120.3532,0.969],[120.355,0.9741],[120.3465,0.974],[120.3489,0.9789],[120.3541,0.9806],[120.3541,0.9842],[120.346,0.9849],[120.3364,0.9816],[120.3294,0.9838],[120.3242,0.9835],[120.3202,0.9856],[120.3138,0.9829],[120.3068,0.9815],[120.2974,0.9818],[120.2846,0.9861],[120.2809,0.9854],[120.2839,0.9791],[120.2779,0.9797],[120.2756,0.969],[120.2695,0.9692],[120.2636,0.9655],[120.2631,0.9612],[120.2544,0.9578],[120.2483,0.9602],[120.2472,0.9559],[120.2505,0.946],[120.2517,0.9351],[120.2498,0.9334],[120.2435,0.9222],[120.2403,0.9214],[120.2419,0.9064],[120.241,0.9005],[120.2369,0.8942],[120.2354,0.8816],[120.2399,0.8785],[120.2421,0.8651],[120.2429,0.8557],[120.2428,0.8409],[120.2458,0.8365],[120.2446,0.8193],[120.242,0.8155],[120.2416,0.81],[120.2381,0.8007],[120.2304,0.792],[120.2209,0.7853],[120.2154,0.7828],[120.2027,0.7728],[120.1921,0.7669],[120.1779,0.7566],[120.1647,0.7539],[120.157,0.7535],[120.1434,0.7488],[120.1381,0.7488],[120.1372,0.745]],[[120.8892,1.3642],[120.89,1.3708],[120.8882,1.3739],[120.8835,1.3752],[120.879,1.3697],[120.878,1.3608],[120.8843,1.3581],[120.8892,1.3642]]]}},{"type":"Feature","properties":{"mhid":"1332:402","alt_name":"KABUPATEN BUOL","latitude":0.75,"longitude":120.75,"sample_value":518},"geometry":{"type":"MultiLineString","coordinates":[[[121.9641,1.0523],[121.9721,1.058],[121.9764,1.0654],[121.9731,1.0721],[121.9695,1.0727],[121.97,1.0655],[121.9636,1.0568],[121.9641,1.0523]],[[121.8441,1.1207],[121.8425,1.1252],[121.835,1.1203],[121.8356,1.1178],[121.8425,1.1172],[121.8441,1.1207]],[[122.1955,1.0385],[122.1908,1.0418],[122.186,1.0482],[122.1868,1.0556],[122.1816,1.0527],[122.1821,1.0441],[122.1761,1.047],[122.1705,1.0455],[122.1681,1.0337],[122.1633,1.0333],[122.1596,1.0369],[122.1577,1.0428],[122.1523,1.0496],[122.1486,1.0462],[122.1413,1.0464],[122.1402,1.0524],[122.1301,1.0569],[122.1243,1.0536],[122.1245,1.0476],[122.1192,1.0476],[122.1172,1.0529],[122.1179,1.0569],[122.1085,1.0576],[122.104,1.0681],[122.0984,1.07],[122.093,1.0689],[122.088,1.0648],[122.0843,1.0659],[122.0747,1.0595],[122.0716,1.0646],[122.0634,1.0643],[122.0673,1.0697],[122.0672,1.0745],[122.0568,1.0734],[122.0598,1.0683],[122.0587,1.0643],[122.0533,1.0663],[122.0513,1.0624],[122.0506,1.0547],[122.0465,1.0531],[122.0417,1.0476],[122.0347,1.0469],[122.031,1.0432],[122.0283,1.0454],[122.0225,1.0407],[122.0154,1.0399],[122.0108,1.035],[122.0045,1.0371],[122.0018,1.0358],[122.001,1.0301],[121.994,1.028],[121.9868,1.0233],[121.9818,1.0234],[121.9745,1.0286],[121.9559,1.0379],[121.9527,1.0416],[121.9542,1.0494],[121.9584,1.0597],[121.9527,1.0563],[121.9504,1.0677],[121.9442,1.076],[121.9364,1.0778],[121.9336,1.0892],[121.9359,1.0972],[121.9321,1.102],[121.923,1.1013],[121.9164,1.0988],[121.9137,1.095],[121.9042,1.0918],[121.8924,1.0909],[121.8879,1.0875],[121.8888,1.0843],[121.8842,1.0809],[121.8792,1.0802],[121.8741,1.0819],[121.8686,1.0865],[121.8637,1.0888],[121.8552,1.0889],[121.8505,1.0926],[121.8424,1.088],[121.8358,1.0868],[121.8236,1.0921],[121.8206,1.0896],[121.819,1.0811],[121.8126,1.0822],[121.8089,1.0808],[121.7868,1.0829],[121.7838,1.0809],[121.7832,1.0763],[121.7791,1.0754],[121.7754,1.0781],[121.7668,1.0712],[121.7605,1.0704],[121.7523,1.0735],[121.7442,1.0724],[121.7403,1.065],[121.7356,1.0685],[121.7301,1.0767],[121.7262,1.0746],[121.7163,1.0807],[121.7096,1.0815],[121.7025,1.0742],[121.7001,1.0682],[121.7049,1.066],[121.7081,1.0597],[121.7079,1.0541],[121.7132,1.0405],[121.7072,1.0398],[121.7065,1.0461],[121.7083,1.0503],[121.7057,1.0541],[121.6977,1.0563],[121.6967,1.0638],[121.6913,1.0693],[121.6838,1.0718],[121.6835,1.0678],[121.6786,1.0654],[121.674,1.0684],[121.6693,1.0691],[121.6549,1.0651],[121.6498,1.0591],[121.6511,1.0536],[121.6561,1.0543],[121.6548,1.0407],[121.6505,1.041],[121.648,1.0453],[121.6481,1.053],[121.6433,1.0553],[121.6383,1.0555],[121.6324,1.0611],[121.6114,1.0618],[121.6055,1.0548],[121.5982,1.055],[121.5878,1.0578],[121.5839,1.0575],[121.5737,1.0633],[121.5603,1.0618],[121.5511,1.0654],[121.5274,1.0827],[121.5164,1.0865],[121.5121,1.0866],[121.5007,1.0946],[121.4893,1.1077],[121.4844,1.1096],[121.4833,1.113],[121.4577,1.1369],[121.4527,1.1427],[121.4483,1.1532],[121.4342,1.1634],[121.4233,1.1835],[121.4219,1.1929],[121.4287,1.1941],[121.4344,1.2076],[121.4355,1.2227],[121.4329,1.2284],[121.4266,1.2328],[121.4198,1.2313],[121.413,1.2323],[121.4163,1.2395],[121.4199,1.2432],[121.4318,1.2427],[121.4321,1.2394],[121.44,1.2407],[121.4468,1.2454],[121.4552,1.2495],[121.4627,1.2511],[121.4633,1.2561],[121.4722,1.2649],[121.47,1.2784],[121.4644,1.2836],[121.4705,1.2956],[121.4709,1.3016],[121.4664,1.3057],[121.452,1.3119],[121.4371,1.3094],[121.4289,1.2988],[121.4314,1.2943],[121.4259,1.2884],[121.4243,1.2837],[121.4099,1.2764],[121.4111,1.2682],[121.4045,1.2621],[121.3988,1.2603],[121.3887,1.2619],[121.3829,1.2605],[121.3796,1.2573],[121.3698,1.2556],[121.361,1.2497],[121.3538,1.2484],[121.3466,1.2523],[121.3438,1.2603],[121.3372,1.2624],[121.3352,1.2553],[121.3301,1.2531],[121.3183,1.254],[121.3109,1.2562],[121.3063,1.253],[121.3012,1.252],[121.2951,1.2419],[121.2834,1.2385],[121.2751,1.2406],[121.2731,1.2341],[121.2609,1.2311],[121.251,1.2313],[121.229,1.2383],[121.2127,1.2471],[121.203,1.2517],[121.1915,1.2594],[121.1843,1.2656],[121.1781,1.2631],[121.1767,1.2605]]]}},{"type":"Feature","properties":{"mhid":"1332:403","alt_name":"KABUPATEN PARIGI MOUTONG","latitude":0.3368,"longitude":120.17841,"sample_value":492},"geometry":{"type":"MultiLineString","coordinates":[[[120.5778,-1.1008],[120.5655,-1.0937],[120.5602,-1.0924],[120.5605,-1.0885],[120.5563,-1.0777],[120.5464,-1.0648],[120.5401,-1.0614],[120.5401,-1.0552],[120.5329,-1.051],[120.5296,-1.0471],[120.534,-1.0432],[120.5316,-1.0337],[120.5241,-1.0217],[120.5167,-1.0159],[120.5081,-0.9975],[120.4918,-0.9953],[120.4894,-0.9913],[120.4851,-0.9892],[120.4809,-0.9923],[120.4724,-0.9906],[120.4712,-0.9938],[120.4601,-0.992],[120.4539,-0.9815],[120.4454,-0.9744],[120.4423,-0.9693],[120.4347,-0.9646],[120.4327,-0.9592],[120.431,-0.9438],[120.4207,-0.9304],[120.4117,-0.9242],[120.4065,-0.923],[120.4004,-0.9258],[120.3974,-0.9242],[120.393,-0.926],[120.3809,-0.9285],[120.3716,-0.9279],[120.3683,-0.9371],[120.3646,-0.9356],[120.3609,-0.9411],[120.3521,-0.9424],[120.3498,-0.9464],[120.3505,-0.9527],[120.3472,-0.956],[120.3421,-0.9556],[120.337,-0.9529],[120.3296,-0.9582],[120.3206,-0.9609],[120.3146,-0.9661],[120.3094,-0.9648],[120.3041,-0.9549],[120.3008,-0.9533],[120.2981,-0.9476],[120.2867,-0.941],[120.2832,-0.9334],[120.2837,-0.9248],[120.2793,-0.9158],[120.2725,-0.9079],[120.2632,-0.9002],[120.2472,-0.8908],[120.2421,-0.8844],[120.2417,-0.8742],[120.2357,-0.8697],[120.2309,-0.8587],[120.2273,-0.8531],[120.2189,-0.843],[120.2121,-0.8446],[120.2059,-0.8498],[120.1972,-0.8467],[120.1937,-0.8413],[120.1887,-0.839],[120.1867,-0.8347],[120.1837,-0.8213],[120.1799,-0.8135],[120.1785,-0.806],[120.1742,-0.7974],[120.1668,-0.7899],[120.1596,-0.7848],[120.1487,-0.7789],[120.1415,-0.7724],[120.1378,-0.7763],[120.1324,-0.7729],[120.1302,-0.7639],[120.1306,-0.7584],[120.1169,-0.7435],[120.1103,-0.7373],[120.108,-0.7314],[120.106,-0.7164],[120.1023,-0.7058],[120.0941,-0.7007],[120.0892,-0.6955],[120.0839,-0.6874],[120.0824,-0.6783],[120.0781,-0.6737],[120.0741,-0.6642],[120.0717,-0.6537],[120.0663,-0.6468],[120.0607,-0.6348],[120.0589,-0.6291],[120.061,-0.6266],[120.063,-0.6186],[120.0612,-0.6124],[120.0618,-0.6058],[120.0576,-0.5969],[120.0561,-0.5707],[120.0519,-0.5639],[120.0532,-0.5505],[120.0509,-0.5461],[120.0512,-0.5387],[120.0474,-0.5313],[120.052,-0.5216],[120.0531,-0.5117],[120.0502,-0.5048],[120.0495,-0.4996],[120.05,-0.4879],[120.0647,-0.4707],[120.0667,-0.4647],[120.0704,-0.4589],[120.0722,-0.4496],[120.0718,-0.4394],[120.0659,-0.4308],[120.0639,-0.4156],[120.0586,-0.4186],[120.0569,-0.4119],[120.0537,-0.4068],[120.0531,-0.3991],[120.0504,-0.397],[120.046,-0.3982],[120.0411,-0.391],[120.0391,-0.3829],[120.0426,-0.3726],[120.0346,-0.3635],[120.0312,-0.3468],[120.0337,-0.344],[120.0327,-0.319],[120.0334,-0.3153],[120.0307,-0.3042],[120.0282,-0.3007],[120.021,-0.2955],[120.0145,-0.2932],[120.0087,-0.2859],[120.0075,-0.2782],[120.0075,-0.2688],[120.0106,-0.2578],[120.0115,-0.2486],[120.0065,-0.2368],[120.0047,-0.2304],[120.0058,-0.2223],[120.0093,-0.2163],[120.0083,-0.2048],[120.0107,-0.1956],[120.0078,-0.1888],[120.0101,-0.1857],[120.0087,-0.1777],[120.0125,-0.1733],[120.0194,-0.1724],[120.0212,-0.1667],[120.0282,-0.1615],[120.0343,-0.1541],[120.0401,-0.1412],[120.0423,-0.1277],[120.0401,-0.1145],[120.0412,-0.1109],[120.0357,-0.1038],[120.0334,-0.0877],[120.0352,-0.0819],[120.0334,-0.0779],[120.0351,-0.0655],[120.0381,-0.0601],[120.0466,-0.0565],[120.0511,-0.0592],[120.0665,-0.0601],[120.0704,-0.0516],[120.079,-0.0469],[120.0883,-0.0404],[120.092,-0.0338],[120.095,-0.0314],[120.0966,-0.0206],[120.1002,-0.0162],[120.0987,-0.0115],[120.1016,-0.0074],[120.1027,0.0063],[120.1014,0.0139],[120.1033,0.0176],[120.0991,0.0261],[120.1022,0.0404],[120.1086,0.046],[120.1116,0.0561],[120.1113,0.0609],[120.1081,0.0667],[120.1079,0.0779],[120.1092,0.081],[120.106,0.0881],[120.106,0.0951],[120.1108,0.1005],[120.1137,0.1126],[120.122,0.1165],[120.1327,0.127],[120.1363,0.1395],[120.1334,0.1489],[120.1336,0.1537],[120.1288,0.1562],[120.124,0.162],[120.1244,0.1661],[120.129,0.1712],[120.1295,0.1776],[120.1339,0.1818],[120.1338,0.1861],[120.1363,0.1916],[120.1429,0.1977],[120.1462,0.2039],[120.1506,0.2072],[120.1583,0.2203],[120.1577,0.2266],[120.1593,0.2291],[120.1659,0.2304],[120.1667,0.2354],[120.1732,0.2375],[120.1748,0.2441],[120.1812,0.2479],[120.1829,0.2529],[120.1896,0.256],[120.1941,0.2605],[120.2001,0.2621],[120.2045,0.2683],[120.2103,0.2795],[120.2116,0.2848],[120.215,0.2898],[120.2148,0.2949],[120.2228,0.3012],[120.2233,0.3075],[120.2295,0.3119],[120.2294,0.3157],[120.2333,0.3239],[120.2407,0.3309],[120.2451,0.3383],[120.2427,0.3485],[120.252,0.3519],[120.2602,0.3619],[120.2625,0.3632],[120.27,0.3618],[120.2768,0.3684],[120.2777,0.3752],[120.2821,0.379],[120.2864,0.3802],[120.2923,0.392],[120.2916,0.4005],[120.2958,0.4059],[120.2988,0.4124],[120.3104,0.4243],[120.3237,0.428],[120.3308,0.4366],[120.3336,0.4375],[120.3429,0.4451],[120.3492,0.4475],[120.3522,0.4517],[120.3649,0.4567],[120.3739,0.4613],[120.3887,0.4634],[120.3915,0.467],[120.4101,0.4769],[120.415,0.4767],[120.419,0.472],[120.4259,0.4662],[120.4357,0.4658],[120.4456,0.4711],[120.4515,0.4804],[120.4565,0.4858],[120.4612,0.4935],[120.4742,0.4927],[120.479,0.4994],[120.4986,0.509],[120.5024,0.5091],[120.5073,0.5133],[120.5194,0.5124],[120.5286,0.5171],[120.5485,0.5103],[120.5545,0.5127],[120.5591,0.5126],[120.5702,0.5092],[120.5852,0.5143],[120.5882,0.5173],[120.5959,0.5195],[120.6003,0.5179],[120.6022,0.5209],[120.608,0.5215],[120.621,0.5199],[120.6324,0.5171],[120.6398,0.5175],[120.6441,0.5207],[120.6493,0.5201],[120.6551,0.5153],[120.6692,0.5096],[120.6816,0.5098],[120.6891,0.5111],[120.6954,0.5098],[120.6989,0.5068],[120.6984,0.5028],[120.709,0.4963],[120.7127,0.4898],[120.7253,0.4763],[120.7409,0.47],[120.749,0.4658],[120.7599,0.464],[120.7619,0.4602],[120.7668,0.4568],[120.7715,0.4565],[120.7796,0.4614],[120.7888,0.4598],[120.7931,0.4658],[120.8005,0.4717],[120.808,0.4699],[120.8109,0.4663],[120.807,0.4624],[120.8103,0.4565],[120.8088,0.4532],[120.8175,0.4472],[120.8238,0.4489],[120.8315,0.4412],[120.8378,0.4464],[120.8443,0.4461],[120.8544,0.4425],[120.8582,0.4357],[120.8614,0.4352],[120.867,0.4268],[120.8748,0.4206],[120.8793,0.4128],[120.8815,0.4121],[120.8973,0.3959],[120.9126,0.4011],[120.922,0.3995],[120.9323,0.4003],[120.9363,0.4057],[120.9487,0.4144],[120.9524,0.4155],[120.9573,0.4115],[120.9604,0.4153],[120.9669,0.418],[120.974,0.4171],[120.9787,0.4212],[120.9857,0.421],[120.9935,0.4276],[120.9959,0.4273],[121.0112,0.4344],[121.0218,0.4347],[121.023,0.4379],[121.0276,0.4403],[121.0362,0.4305],[121.0383,0.4258],[121.0437,0.4233],[121.0534,0.4133],[121.0614,0.409],[121.0662,0.4084],[121.0701,0.4022],[121.0808,0.3976],[121.0884,0.403],[121.0975,0.4075],[121.1023,0.4062],[121.1113,0.4011],[121.1226,0.4116],[121.1298,0.4103],[121.1461,0.4105],[121.1525,0.4113],[121.1618,0.4163],[121.1586,0.4249],[121.1618,0.4337],[121.1608,0.4364],[121.1672,0.4436],[121.171,0.4423],[121.1733,0.4467],[121.178,0.4457],[121.1777,0.4516],[121.1798,0.4556],[121.1844,0.4576],[121.1911,0.4635],[121.1978,0.4621],[121.2013,0.4576],[121.2082,0.4591],[121.2108,0.4571],[121.2179,0.4622],[121.2247,0.4616],[121.2303,0.4581],[121.2387,0.4625],[121.2448,0.4774],[121.2522,0.4851],[121.2583,0.4894],[121.2633,0.4894],[121.2685,0.4924],[121.2846,0.4928],[121.2918,0.4948],[121.3023,0.488],[121.3082,0.4863],[121.3184,0.4853],[121.334,0.477],[121.3374,0.4736]],[[120.5795,-1.1086],[120.5805,-1.1059],[120.5778,-1.1008]]]}},{"type":"Feature","properties":{"mhid":"1332:404","alt_name":"KABUPATEN TOJO UNA-UNA","latitude":-1.2036,"longitude":121.48201,"sample_value":382},"geometry":{"type":"MultiLineString","coordinates":[[[121.8432,-0.9685],[121.8337,-0.9682],[121.8268,-0.9645],[121.8254,-0.9596],[121.8218,-0.9565],[121.8166,-0.9561],[121.8111,-0.9579],[121.8072,-0.9635],[121.7933,-0.9604],[121.7781,-0.9706],[121.7698,-0.9718],[121.7676,-0.9702],[121.7585,-0.9701],[121.7551,-0.966],[121.7502,-0.9651],[121.7339,-0.9569],[121.7298,-0.952],[121.7189,-0.9532],[121.7099,-0.9495],[121.7086,-0.9471],[121.7111,-0.9407],[121.7016,-0.9321],[121.6968,-0.9307],[121.6965,-0.9263],[121.6901,-0.9237],[121.6838,-0.926],[121.6799,-0.9212],[121.6696,-0.9225],[121.6659,-0.9208],[121.6643,-0.9154],[121.656,-0.9117],[121.6555,-0.9053],[121.6572,-0.898],[121.6566,-0.8909],[121.6631,-0.8718],[121.6636,-0.8652],[121.6678,-0.8546],[121.6629,-0.8471],[121.6652,-0.8391],[121.664,-0.8289],[121.6642,-0.8178],[121.6623,-0.811],[121.657,-0.808],[121.6533,-0.8024],[121.6508,-0.8048],[121.6392,-0.8072],[121.6336,-0.8071],[121.617,-0.8154],[121.6094,-0.8251],[121.606,-0.8273],[121.597,-0.8252],[121.5912,-0.8337],[121.6001,-0.8433],[121.6012,-0.8506],[121.5977,-0.8575],[121.5911,-0.8642],[121.5864,-0.8672],[121.5783,-0.8659],[121.5676,-0.8679],[121.562,-0.867],[121.5521,-0.8741],[121.5475,-0.8747],[121.5382,-0.8733],[121.5275,-0.8824],[121.5208,-0.8854],[121.5095,-0.8851],[121.5008,-0.8879],[121.4946,-0.893],[121.4923,-0.8993],[121.4871,-0.9005],[121.4805,-0.8997],[121.4739,-0.9098],[121.4736,-0.9175],[121.4716,-0.925],[121.4685,-0.9297],[121.4678,-0.9353],[121.465,-0.9403],[121.4576,-0.9454],[121.4593,-0.9473],[121.46,-0.955],[121.4568,-0.962],[121.4509,-0.9712],[121.4448,-0.9777],[121.4303,-0.9844],[121.4249,-0.9882],[121.4195,-0.989],[121.4083,-0.9963],[121.4062,-0.9989],[121.3963,-1.005],[121.3994,-1.0093],[121.3978,-1.0163],[121.3989,-1.0202],[121.3959,-1.0229],[121.3923,-1.035],[121.3872,-1.0385],[121.3822,-1.0351],[121.3717,-1.0405],[121.3682,-1.0409],[121.3601,-1.0475],[121.3518,-1.0522],[121.341,-1.0623],[121.3377,-1.0633],[121.3309,-1.0738],[121.3299,-1.0773],[121.3157,-1.0938],[121.3081,-1.0984],[121.3024,-1.1066],[121.3015,-1.1119],[121.2952,-1.116],[121.2963,-1.1232],[121.2943,-1.1337],[121.286,-1.1392],[121.2844,-1.1462],[121.2815,-1.1501],[121.2822,-1.1541],[121.2796,-1.1588],[121.2717,-1.1648],[121.2645,-1.1643],[121.2622,-1.169],[121.2545,-1.1748],[121.2501,-1.1835],[121.2487,-1.1901],[121.2445,-1.1937],[121.2389,-1.1923],[121.2328,-1.1943],[121.2293,-1.1999],[121.2227,-1.2025],[121.2208,-1.2089],[121.2243,-1.2132],[121.2166,-1.2205],[121.2168,-1.2234],[121.2118,-1.2322],[121.2042,-1.2366],[121.2043,-1.2456],[121.2082,-1.262],[121.2022,-1.2643],[121.1941,-1.2727],[121.1957,-1.279],[121.1928,-1.2873],[121.1945,-1.2946],[121.1886,-1.299],[121.1882,-1.3042],[121.1846,-1.3058],[121.1814,-1.3191],[121.182,-1.3255],[121.1798,-1.3292],[121.1739,-1.3324],[121.1681,-1.3383],[121.1664,-1.3439],[121.1619,-1.3479],[121.1636,-1.357],[121.1635,-1.3672],[121.1575,-1.3666],[121.1479,-1.375],[121.1413,-1.3779],[121.1355,-1.3846],[121.1321,-1.3943],[121.1327,-1.402],[121.1301,-1.4061],[121.1253,-1.4086],[121.125,-1.4156],[121.1212,-1.4209],[121.1124,-1.429],[121.1041,-1.4318],[121.1013,-1.4372],[121.0985,-1.4367],[121.0912,-1.4399],[121.0826,-1.4388],[121.0767,-1.4353],[121.0677,-1.4366],[121.0639,-1.4398],[121.0589,-1.44],[121.0536,-1.4352],[121.0478,-1.432],[121.0391,-1.4339],[121.0385,-1.4209],[121.0415,-1.4173],[121.0397,-1.4128],[121.0354,-1.4175],[121.0277,-1.4196],[121.0175,-1.4197],[121.0095,-1.4159],[121.0008,-1.4134],[120.9934,-1.4056],[120.9838,-1.3995],[120.9678,-1.4082],[120.9647,-1.4116],[120.9546,-1.413],[120.95,-1.4149],[120.9308,-1.4132],[120.9163,-1.417],[120.8905,-1.4133]],[[121.8563,-0.9688],[121.8489,-0.9686]],[[121.7725,-0.738],[121.7665,-0.7399],[121.761,-0.7382],[121.7582,-0.7442],[121.7637,-0.7514],[121.7696,-0.754],[121.7695,-0.745],[121.7725,-0.738]],[[121.6296,-0.5928],[121.6308,-0.5907],[121.6265,-0.5825],[121.6234,-0.5885],[121.6262,-0.5941],[121.6296,-0.5928]],[[121.8721,-0.5123],[121.8659,-0.5165],[121.861,-0.5239],[121.8617,-0.5271],[121.8692,-0.5305],[121.8736,-0.5302],[121.8738,-0.5202],[121.8721,-0.5123]],[[121.922,-0.4398],[121.9188,-0.4409],[121.9235,-0.4493],[121.9269,-0.4435],[121.922,-0.4398]],[[122.0786,-0.4163],[122.0771,-0.4167]],[[122.0771,-0.4167],[122.0705,-0.4188],[122.0745,-0.4243],[122.0783,-0.421],[122.0785,-0.4173]],[[122.0785,-0.4173],[122.0786,-0.4163]],[[121.8069,-0.4187],[121.7937,-0.4222],[121.7931,-0.428],[121.7968,-0.4309],[121.8008,-0.4251],[121.8056,-0.4241],[121.8069,-0.4187]],[[121.7923,-0.4174],[121.7952,-0.4164],[121.7957,-0.4105],[121.791,-0.4097],[121.7886,-0.4158],[121.7923,-0.4174]],[[121.8669,-0.4092],[121.8538,-0.411],[121.8504,-0.409],[121.8429,-0.4121],[121.8332,-0.4195],[121.8272,-0.427],[121.8156,-0.4356],[121.8091,-0.4366],[121.8032,-0.4421],[121.7949,-0.4418],[121.7911,-0.4448],[121.7894,-0.4371],[121.7833,-0.4449],[121.7796,-0.4344],[121.7786,-0.4231],[121.7762,-0.4193],[121.7716,-0.4218],[121.7644,-0.4212],[121.7555,-0.4261],[121.755,-0.4343],[121.7614,-0.4419],[121.763,-0.4508],[121.7622,-0.4556],[121.7689,-0.461],[121.7637,-0.464],[121.7603,-0.4627],[121.7574,-0.4575],[121.7572,-0.4533],[121.754,-0.449],[121.749,-0.4523],[121.7384,-0.4487],[121.7303,-0.4534],[121.7313,-0.456],[121.7287,-0.4642],[121.7232,-0.4688],[121.7209,-0.4732],[121.7154,-0.4735],[121.7049,-0.4693],[121.6988,-0.4708],[121.7021,-0.4814],[121.6955,-0.4769],[121.6924,-0.4797],[121.6916,-0.4865],[121.6939,-0.4892],[121.691,-0.4949],[121.6867,-0.4953],[121.6837,-0.5005],[121.6845,-0.5038],[121.6813,-0.5099],[121.6772,-0.5131],[121.6723,-0.5135],[121.6705,-0.5187],[121.6698,-0.5316],[121.6652,-0.5353],[121.6615,-0.533],[121.6562,-0.5396],[121.6497,-0.5419],[121.6536,-0.5481],[121.6591,-0.5515],[121.6597,-0.5583],[121.6545,-0.5673],[121.6583,-0.5772],[121.6676,-0.5746],[121.6703,-0.575],[121.6802,-0.5612],[121.6866,-0.5615],[121.6922,-0.5636],[121.7002,-0.5631],[121.7081,-0.5517],[121.7052,-0.5462],[121.7094,-0.5386],[121.7137,-0.5354],[121.7128,-0.5293],[121.715,-0.5261],[121.7213,-0.5251],[121.7261,-0.519],[121.7318,-0.5092],[121.73,-0.5009],[121.7353,-0.4964],[121.7412,-0.4954],[121.7473,-0.5122],[121.752,-0.5082],[121.7625,-0.502],[121.7691,-0.5016],[121.7725,-0.4984],[121.7759,-0.5036],[121.7813,-0.5033],[121.7842,-0.5003],[121.7944,-0.5057],[121.799,-0.5061],[121.8056,-0.5122],[121.8068,-0.516],[121.8148,-0.5148],[121.8255,-0.521],[121.8282,-0.5313],[121.8335,-0.5311],[121.8348,-0.5273],[121.8421,-0.5217],[121.8484,-0.5227],[121.8599,-0.5217],[121.8626,-0.5186],[121.8625,-0.5126],[121.8554,-0.5034],[121.8528,-0.505],[121.8455,-0.5048],[121.8363,-0.4952],[121.845,-0.4965],[121.8502,-0.4934],[121.8586,-0.4962],[121.8631,-0.496],[121.8732,-0.5126],[121.8752,-0.5221],[121.8779,-0.5269],[121.8724,-0.5347],[121.8743,-0.5364],[121.8861,-0.5397],[121.8923,-0.5343],[121.8985,-0.5313],[121.9002,-0.5271],[121.9058,-0.5282],[121.9108,-0.524],[121.912,-0.5207],[121.9178,-0.516],[121.9191,-0.5114],[121.9158,-0.5096],[121.9151,-0.5048],[121.9107,-0.4973],[121.9146,-0.4956],[121.9158,-0.4872],[121.9222,-0.4911],[121.9211,-0.4848],[121.916,-0.4816],[121.9223,-0.4766],[121.9177,-0.4711],[121.9139,-0.4546],[121.9176,-0.4426],[121.911,-0.4401],[121.9042,-0.4345],[121.9033,-0.4293],[121.8968,-0.4249],[121.8915,-0.4262],[121.8852,-0.4248],[121.8809,-0.4204],[121.8751,-0.42],[121.8717,-0.4131],[121.8669,-0.4092]],[[121.8179,-0.4081],[121.8262,-0.4003],[121.8269,-0.3966],[121.8137,-0.3903],[121.8148,-0.3955],[121.8123,-0.4018],[121.813,-0.4074],[121.8179,-0.4081]],[[121.8531,-0.3594],[121.8481,-0.3555],[121.8436,-0.3562],[121.8438,-0.3632],[121.8512,-0.3622],[121.8531,-0.3594]],[[121.8774,-0.35],[121.8676,-0.3533],[121.857,-0.3546],[121.8533,-0.3602],[121.8567,-0.364],[121.8669,-0.3622],[121.8712,-0.356],[121.8774,-0.35]],[[121.9483,-0.324],[121.9366,-0.325],[121.931,-0.3296],[121.9275,-0.3301],[121.9249,-0.3357],[121.9303,-0.339],[121.9323,-0.3448],[121.9378,-0.3418],[121.9458,-0.3421],[121.9462,-0.337],[121.9509,-0.3374],[121.9477,-0.3434],[121.9512,-0.3493],[121.958,-0.3474],[121.9623,-0.3539],[121.956,-0.3579],[121.9535,-0.3535],[121.949,-0.3535],[121.9414,-0.3623],[121.9387,-0.358],[121.9353,-0.3575],[121.9334,-0.3619],[121.935,-0.3666],[121.927,-0.3668],[121.9276,-0.3624],[121.9223,-0.36],[121.9263,-0.3556],[121.9216,-0.3503],[121.9152,-0.3503],[121.913,-0.3416],[121.9086,-0.3423],[121.9038,-0.3404],[121.9049,-0.3362],[121.8996,-0.3353],[121.8977,-0.341],[121.8886,-0.3411],[121.8814,-0.3457],[121.8796,-0.3496],[121.8724,-0.3579],[121.8757,-0.3604],[121.8833,-0.3579],[121.8843,-0.3606],[121.8791,-0.364],[121.8743,-0.365],[121.8719,-0.3715],[121.8688,-0.3671],[121.8622,-0.3694],[121.8591,-0.3784],[121.859,-0.3829],[121.8631,-0.3896],[121.8664,-0.3857],[121.8707,-0.3898],[121.8761,-0.3916],[121.8703,-0.3954],[121.8727,-0.3989],[121.8729,-0.4071],[121.8753,-0.4125],[121.8798,-0.4145],[121.8855,-0.4221],[121.8914,-0.4234],[121.8952,-0.4207],[121.901,-0.426],[121.9057,-0.4284],[121.9061,-0.4342],[121.9188,-0.4393],[121.9198,-0.4348],[121.9271,-0.4362],[121.9323,-0.431],[121.9372,-0.4316],[121.9425,-0.4261],[121.9484,-0.4294],[121.9481,-0.4231],[121.9553,-0.4185],[121.9692,-0.4182],[121.9796,-0.4245],[121.9817,-0.42],[121.993,-0.4248],[122.0009,-0.4212],[122.0059,-0.4161],[122.0062,-0.4062],[122.0094,-0.4085],[122.0113,-0.415],[122.0172,-0.4194],[122.025,-0.4152],[122.0294,-0.4152],[122.0307,-0.4203],[122.0415,-0.4261],[122.0462,-0.425],[122.055,-0.4188],[122.0587,-0.4129],[122.0553,-0.411],[122.0635,-0.4052],[122.0638,-0.3998],[122.0677,-0.3954],[122.0577,-0.3867],[122.0587,-0.3798],[122.0615,-0.3722],[122.0586,-0.3683],[122.0595,-0.364],[122.0584,-0.3531],[122.06,-0.3491],[122.0538,-0.3478],[122.0513,-0.3452],[122.0438,-0.3466],[122.0411,-0.3387],[122.0361,-0.3449],[122.0398,-0.3513],[122.039,-0.3596],[122.0306,-0.3581],[122.0258,-0.3522],[122.0195,-0.3576],[122.0227,-0.3591],[122.0226,-0.3668],[122.0181,-0.3703],[122.0114,-0.3687],[122.0094,-0.3606],[122.0051,-0.3601],[121.998,-0.3523],[121.9951,-0.355],[121.9892,-0.3535],[121.9862,-0.3548],[121.9831,-0.3508],[121.9896,-0.3469],[121.9914,-0.3429],[121.9818,-0.3428],[121.9745,-0.3467],[121.9729,-0.3349],[121.9692,-0.3267],[121.9635,-0.328],[121.9605,-0.3318],[121.9559,-0.327],[121.9483,-0.324]],[[121.9492,-0.3132],[121.9435,-0.3155],[121.9434,-0.3194],[121.9484,-0.3202],[121.9492,-0.3132]],[[122.2384,-0.3016],[122.2323,-0.3017],[122.2352,-0.3089],[122.2379,-0.3071],[122.2384,-0.3016]],[[122.0924,-0.275],[122.0907,-0.2708],[122.0864,-0.2766],[122.0808,-0.292],[122.087,-0.2908],[122.0857,-0.2984],[122.077,-0.3046],[122.0698,-0.3032],[122.0735,-0.3178],[122.0747,-0.3253],[122.0676,-0.3284],[122.0734,-0.3379],[122.0758,-0.3445],[122.0712,-0.3445],[122.0675,-0.3486],[122.0645,-0.3475],[122.0614,-0.3529],[122.062,-0.3642],[122.0667,-0.3781],[122.0643,-0.3807],[122.0693,-0.3868],[122.0672,-0.391],[122.0704,-0.3934],[122.0839,-0.3922],[122.0813,-0.3997],[122.0768,-0.4009],[122.0728,-0.3982],[122.0683,-0.3998],[122.0651,-0.4091],[122.0684,-0.4135],[122.0771,-0.4167]],[[122.0771,-0.4167],[122.0785,-0.4173]],[[122.0785,-0.4173],[122.0797,-0.4177],[122.0802,-0.4259],[122.0849,-0.4267],[122.0888,-0.4373],[122.0894,-0.4424],[122.0962,-0.4465],[122.0984,-0.4446],[122.0918,-0.4375],[122.0956,-0.4353],[122.0983,-0.4304],[122.1041,-0.4311],[122.1001,-0.4202],[122.0955,-0.4181],[122.0911,-0.4109],[122.0941,-0.4083],[122.0945,-0.3992],[122.0974,-0.3985],[122.1079,-0.4043],[122.1111,-0.4094],[122.1187,-0.4107],[122.1173,-0.4149],[122.1216,-0.4205],[122.1267,-0.4216],[122.1324,-0.4146],[122.1426,-0.4167],[122.1415,-0.4076],[122.1458,-0.4069],[122.1482,-0.4004],[122.154,-0.3972],[122.154,-0.3927],[122.1499,-0.3855],[122.1492,-0.373],[122.1476,-0.371],[122.1401,-0.3748],[122.1407,-0.3687],[122.1458,-0.3617],[122.1456,-0.3552],[122.1436,-0.3459],[122.1379,-0.3454],[122.1341,-0.3488],[122.1278,-0.3493],[122.1235,-0.3409],[122.1131,-0.3418],[122.1109,-0.339],[122.1146,-0.3284],[122.1098,-0.3293],[122.1065,-0.3249],[122.1107,-0.3178],[122.1083,-0.3055],[122.1019,-0.2972],[122.1023,-0.2902],[122.1003,-0.2854],[122.0958,-0.2818],[122.0924,-0.275]],[[122.1514,-0.2631],[122.1482,-0.2674],[122.1512,-0.2708],[122.1544,-0.2689],[122.1514,-0.2631]],[[122.1283,-0.2681],[122.1268,-0.2589],[122.1173,-0.2531],[122.1121,-0.2563],[122.1131,-0.2672],[122.1154,-0.2696],[122.1225,-0.2712],[122.1283,-0.2681]],[[122.0891,-0.2415],[122.0868,-0.241],[122.073,-0.2472],[122.0655,-0.2513],[122.0604,-0.2505],[122.0478,-0.2558],[122.0432,-0.2561],[122.0359,-0.2629],[122.0291,-0.2761],[122.0442,-0.2777],[122.0542,-0.2736],[122.0643,-0.267],[122.0691,-0.2617],[122.0767,-0.267],[122.0833,-0.2658],[122.0908,-0.2587],[122.094,-0.2539],[122.0953,-0.2478],[122.0891,-0.2415]],[[122.2163,-0.2625],[122.2175,-0.2545],[122.2149,-0.2496],[122.2102,-0.2496],[122.2023,-0.246],[122.1971,-0.2482],[122.1938,-0.2563],[122.1881,-0.2504],[122.1902,-0.2425],[122.1996,-0.2335],[122.2081,-0.22],[122.211,-0.2189],[122.2087,-0.2103],[122.2039,-0.2126],[122.1953,-0.2114],[122.1911,-0.2126],[122.1838,-0.2182],[122.1746,-0.2225],[122.164,-0.2325],[122.1561,-0.236],[122.1539,-0.2423],[122.1475,-0.2437],[122.1463,-0.249],[122.1504,-0.2519],[122.1559,-0.2609],[122.1649,-0.2566],[122.1659,-0.253],[122.1749,-0.2495],[122.1782,-0.2511],[122.1734,-0.2561],[122.1746,-0.2651],[122.1813,-0.2796],[122.1851,-0.2778],[122.1999,-0.2756],[122.2067,-0.2824],[122.2087,-0.2877],[122.2133,-0.2915],[122.2173,-0.2845],[122.2289,-0.282],[122.2317,-0.2831],[122.2396,-0.2806],[122.2344,-0.2887],[122.2296,-0.2932],[122.2351,-0.2949],[122.2408,-0.2903],[122.2451,-0.2922],[122.2452,-0.2821],[122.2478,-0.2783],[122.2463,-0.2748],[122.2403,-0.2729],[122.238,-0.2747],[122.2317,-0.2714],[122.2353,-0.265],[122.2332,-0.2584],[122.2298,-0.2563],[122.2208,-0.2626],[122.2163,-0.2625]],[[122.2426,-0.2072],[122.2401,-0.2059],[122.234,-0.2116],[122.2277,-0.2141],[122.2317,-0.2252],[122.231,-0.2301],[122.2328,-0.2378],[122.2433,-0.2464],[122.248,-0.2521],[122.2494,-0.2582],[122.2568,-0.2556],[122.2638,-0.2635],[122.2761,-0.2688],[122.281,-0.2679],[122.2802,-0.2598],[122.2842,-0.2569],[122.2905,-0.2689],[122.2999,-0.2621],[122.3025,-0.2693],[122.3078,-0.2746],[122.3108,-0.2742],[122.3191,-0.2816],[122.3223,-0.289],[122.3306,-0.2941],[122.3349,-0.2918],[122.3402,-0.2861],[122.3459,-0.291],[122.3424,-0.3006],[122.3445,-0.3051],[122.3434,-0.3109],[122.3452,-0.3163],[122.3498,-0.3239],[122.3556,-0.3265],[122.3589,-0.3333],[122.3581,-0.3406],[122.3645,-0.3508],[122.3789,-0.3646],[122.3838,-0.3628],[122.3814,-0.3562],[122.3829,-0.3475],[122.3713,-0.3357],[122.368,-0.329],[122.3741,-0.3151],[122.3787,-0.311],[122.3726,-0.3029],[122.3738,-0.3003],[122.3832,-0.2955],[122.3835,-0.2921],[122.3772,-0.2879],[122.3825,-0.2841],[122.3796,-0.2738],[122.3677,-0.273],[122.3582,-0.2661],[122.3552,-0.2606],[122.3565,-0.2566],[122.3475,-0.258],[122.3372,-0.2478],[122.3328,-0.248],[122.3205,-0.2441],[122.3183,-0.2409],[122.3102,-0.2353],[122.301,-0.2427],[122.2959,-0.2428],[122.2912,-0.2474],[122.2875,-0.2427],[122.2883,-0.2369],[122.2869,-0.2297],[122.2826,-0.2257],[122.2755,-0.2237],[122.2722,-0.2264],[122.2711,-0.2308],[122.262,-0.2361],[122.2605,-0.2303],[122.262,-0.2216],[122.2568,-0.2205],[122.2517,-0.222],[122.2478,-0.2192],[122.2488,-0.2154],[122.247,-0.2106],[122.2426,-0.2072]],[[121.6336,-0.1266],[121.6277,-0.1222],[121.625,-0.1267],[121.6167,-0.1276],[121.6083,-0.1313],[121.6042,-0.1283],[121.5948,-0.1349],[121.591,-0.1361],[121.5836,-0.1444],[121.5783,-0.1486],[121.5718,-0.1564],[121.5663,-0.1576],[121.5638,-0.1605],[121.5622,-0.1682],[121.5648,-0.18],[121.5745,-0.1912],[121.5782,-0.1985],[121.5849,-0.2045],[121.5919,-0.2071],[121.5926,-0.2107],[121.6032,-0.2141],[121.616,-0.2162],[121.6185,-0.2108],[121.6285,-0.2086],[121.6318,-0.2103],[121.6397,-0.2064],[121.6422,-0.2011],[121.6466,-0.1989],[121.6524,-0.1918],[121.6565,-0.182],[121.6575,-0.166],[121.6561,-0.1602],[121.6578,-0.1517],[121.6539,-0.1435],[121.6541,-0.1367],[121.6486,-0.129],[121.6424,-0.1261],[121.6363,-0.1279],[121.6336,-0.1266]]]}},{"type":"Feature","properties":{"mhid":"1332:406","alt_name":"KABUPATEN BANGGAI LAUT","latitude":-1.61841,"longitude":123.49388,"sample_value":781},"geometry":{"type":"MultiLineString","coordinates":[[[123.4667,-2.2084],[123.4631,-2.2164],[123.4483,-2.2219],[123.4434,-2.2217],[123.4384,-2.2246],[123.435,-2.2229],[123.4091,-2.234],[123.4081,-2.2285],[123.4019,-2.2187],[123.3983,-2.2087],[123.3964,-2.218],[123.3969,-2.224],[123.4006,-2.2302],[123.4012,-2.2358],[123.4043,-2.2413],[123.4118,-2.2415],[123.4212,-2.2382],[123.4363,-2.2305],[123.4516,-2.2261],[123.4671,-2.2189],[123.4716,-2.2133],[123.4715,-2.208],[123.4667,-2.2084]],[[123.1471,-2.2235],[123.1519,-2.2182],[123.1564,-2.2103],[123.1603,-2.2071],[123.1608,-2.199],[123.1558,-2.1964],[123.1484,-2.202],[123.1447,-2.21],[123.1432,-2.2219],[123.1471,-2.2235]],[[123.6681,-2.1629],[123.6642,-2.1607],[123.668,-2.1744],[123.6706,-2.1789],[123.6797,-2.1753],[123.6812,-2.1636],[123.6779,-2.1603],[123.6681,-2.1629]],[[123.6366,-2.1256],[123.6315,-2.1279],[123.6354,-2.1333],[123.6399,-2.1329],[123.6398,-2.1289],[123.6366,-2.1256]],[[123.4422,-2.1198],[123.44,-2.1265],[123.4418,-2.1283],[123.449,-2.1248],[123.4422,-2.1198]],[[123.751,-2.103],[123.751,-2.1059],[123.7579,-2.1083],[123.7627,-2.1067],[123.7594,-2.1027],[123.7532,-2.1063],[123.751,-2.103]],[[123.923,-2.0998],[123.9229,-2.1043],[123.9257,-2.1097],[123.9317,-2.1097],[123.9327,-2.1018],[123.923,-2.0998]],[[123.5514,-2.0942],[123.5442,-2.0959],[123.543,-2.0999],[123.5505,-2.1026],[123.5539,-2.1059],[123.5614,-2.1056],[123.563,-2.1016],[123.56,-2.095],[123.5514,-2.0942]],[[123.5948,-2.058],[123.5903,-2.0615],[123.5943,-2.0651],[123.5966,-2.0601],[123.5948,-2.058]],[[123.7992,-2.0107],[123.7957,-2.0089],[123.7896,-2.0103],[123.7891,-2.0133],[123.7942,-2.0166],[123.7992,-2.0107]],[[123.8631,-2.0088],[123.8597,-2.0103],[123.8568,-2.0164],[123.8557,-2.0268],[123.8529,-2.0362],[123.8495,-2.042],[123.8516,-2.0483],[123.8452,-2.0581],[123.8448,-2.0645],[123.8477,-2.0688],[123.8563,-2.0706],[123.8621,-2.0659],[123.8658,-2.0716],[123.8794,-2.0835],[123.8892,-2.0877],[123.8973,-2.0823],[123.8966,-2.0765],[123.8917,-2.068],[123.8896,-2.0622],[123.8821,-2.0496],[123.8786,-2.0371],[123.8809,-2.0348],[123.8799,-2.029],[123.8685,-2.0197],[123.8631,-2.0088]],[[123.7674,-2.0075],[123.7647,-2.013],[123.7634,-2.0239],[123.7583,-2.0246],[123.7564,-2.0375],[123.7573,-2.0429],[123.7603,-2.0471],[123.761,-2.0525],[123.7639,-2.0571],[123.7805,-2.0427],[123.7792,-2.0381],[123.7841,-2.0304],[123.7835,-2.0206],[123.7767,-2.0129],[123.7708,-2.0109],[123.7674,-2.0075]],[[123.901,-2.0038],[123.8996,-2.0024],[123.8896,-2.0079],[123.8932,-2.0116],[123.8891,-2.0155],[123.8894,-2.0189],[123.8948,-2.0237],[123.9012,-2.0187],[123.906,-2.007],[123.901,-2.0038]],[[123.7862,-2.0013],[123.7784,-2.0021],[123.7782,-2.0056],[123.7845,-2.0046],[123.7862,-2.0013]],[[123.4885,-1.9819],[123.4862,-1.9796],[123.4819,-1.982],[123.4768,-1.9962],[123.4827,-1.9969],[123.4829,-1.9888],[123.4878,-1.9888],[123.4885,-1.9819]],[[123.4827,-1.9367],[123.4717,-1.9391],[123.4654,-1.9463],[123.4658,-1.9499],[123.4693,-1.953],[123.4758,-1.9531],[123.4781,-1.95],[123.4884,-1.9473],[123.4894,-1.9422],[123.4865,-1.9367],[123.4827,-1.9367]],[[123.5372,-1.9126],[123.5317,-1.9151],[123.5285,-1.9238],[123.5315,-1.929],[123.5348,-1.9187],[123.5413,-1.9223],[123.5423,-1.9152],[123.5372,-1.9126]],[[123.6418,-1.9092],[123.6394,-1.9047],[123.6348,-1.9081],[123.6356,-1.9117],[123.6418,-1.9092]],[[123.7711,-1.9035],[123.7688,-1.9212],[123.7675,-1.9231],[123.7697,-1.9338],[123.7729,-1.9339],[123.772,-1.9274],[123.7767,-1.9218],[123.7732,-1.9104],[123.7745,-1.9068],[123.7711,-1.9035]],[[123.7386,-1.946],[123.7386,-1.9398],[123.7363,-1.9358],[123.7363,-1.9275],[123.7386,-1.9259],[123.7386,-1.9157],[123.7367,-1.9105],[123.732,-1.9093],[123.7315,-1.8983],[123.7245,-1.8997],[123.7212,-1.9072],[123.7162,-1.9118],[123.7127,-1.9172],[123.7081,-1.9209],[123.7077,-1.9321],[123.7046,-1.9346],[123.7037,-1.9416],[123.6979,-1.9452],[123.699,-1.9582],[123.7025,-1.9618],[123.712,-1.9634],[123.7251,-1.9605],[123.7326,-1.9555],[123.7392,-1.9547],[123.7386,-1.946]],[[123.6527,-1.9031],[123.6501,-1.8957],[123.6461,-1.9025],[123.6475,-1.9068],[123.6442,-1.9132],[123.6444,-1.9201],[123.6471,-1.9238],[123.6481,-1.9299],[123.6468,-1.9363],[123.6477,-1.954],[123.6457,-1.9566],[123.6479,-1.9613],[123.6586,-1.9663],[123.6636,-1.9633],[123.6638,-1.9578],[123.6607,-1.9499],[123.6592,-1.9416],[123.6555,-1.9318],[123.655,-1.9206],[123.6511,-1.9119],[123.6527,-1.9031]],[[123.678,-1.8831],[123.6725,-1.8831],[123.6632,-1.891],[123.6664,-1.9073],[123.6707,-1.9104],[123.6708,-1.9137],[123.6762,-1.9176],[123.6764,-1.9263],[123.6797,-1.9295],[123.6862,-1.9262],[123.6864,-1.9202],[123.6887,-1.9142],[123.6841,-1.9105],[123.683,-1.9055],[123.6751,-1.8887],[123.678,-1.8831]],[[123.7893,-1.8861],[123.7886,-1.8823],[123.7831,-1.8823],[123.7782,-1.8866],[123.776,-1.8922],[123.779,-1.9055],[123.7751,-1.9103],[123.7773,-1.9182],[123.7781,-1.9259],[123.7742,-1.9291],[123.7762,-1.9322],[123.7719,-1.9407],[123.773,-1.948],[123.7789,-1.9467],[123.7857,-1.9534],[123.7842,-1.9584],[123.784,-1.9667],[123.7854,-1.9784],[123.7849,-1.9829],[123.7922,-1.99],[123.7976,-2.0017],[123.8024,-2.007],[123.8116,-2.0135],[123.8185,-2.0214],[123.8229,-2.0216],[123.8273,-2.0256],[123.8275,-2.018],[123.8375,-2.0132],[123.8388,-2.0095],[123.8366,-1.9949],[123.8422,-1.9966],[123.8555,-2.0129],[123.8599,-2.0056],[123.8606,-1.9956],[123.8629,-1.9894],[123.8635,-1.9791],[123.8547,-1.9712],[123.8512,-1.9597],[123.8437,-1.9489],[123.8376,-1.9445],[123.8383,-1.9367],[123.8364,-1.9343],[123.8261,-1.9275],[123.8233,-1.9206],[123.8144,-1.9114],[123.8107,-1.91],[123.8076,-1.905],[123.8054,-1.8953],[123.8032,-1.8929],[123.7955,-1.8912],[123.7893,-1.8861]],[[123.7651,-1.8662],[123.7606,-1.869],[123.7555,-1.876],[123.7567,-1.8822],[123.7592,-1.8848],[123.7709,-1.8844],[123.7699,-1.8782],[123.7651,-1.8662]],[[123.6958,-1.8618],[123.6863,-1.8626],[123.6818,-1.8729],[123.6922,-1.8704],[123.6978,-1.881],[123.7005,-1.8903],[123.6964,-1.8946],[123.6944,-1.9081],[123.7034,-1.8961],[123.7042,-1.8913],[123.7011,-1.8811],[123.7008,-1.871],[123.6974,-1.8673],[123.6958,-1.8618]],[[124.0091,-1.8168],[123.9997,-1.8109],[123.9945,-1.8128],[123.988,-1.8226],[123.9977,-1.8395],[124.0023,-1.8525],[124.003,-1.8597],[124.01,-1.8757],[124.0154,-1.8835],[124.0182,-1.8905],[124.0268,-1.8953],[124.0336,-1.892],[124.0338,-1.8878],[124.0312,-1.8772],[124.0314,-1.8724],[124.0276,-1.8626],[124.0277,-1.8595],[124.0239,-1.845],[124.0213,-1.8397],[124.014,-1.8301],[124.0078,-1.8276],[124.0054,-1.8297],[124.002,-1.822],[124.0091,-1.8168]],[[123.1055,-1.7746],[123.1005,-1.7709],[123.0967,-1.7612],[123.0874,-1.7688],[123.0851,-1.7773],[123.0803,-1.7875],[123.0793,-1.7936],[123.075,-1.8022],[123.072,-1.8119],[123.0682,-1.8164],[123.0631,-1.8283],[123.0587,-1.8308],[123.0618,-1.8444],[123.0588,-1.8539],[123.0592,-1.8652],[123.0571,-1.8717],[123.0591,-1.883],[123.063,-1.8858],[123.0651,-1.8827],[123.0694,-1.8867],[123.0658,-1.8926],[123.0601,-1.8886],[123.0551,-1.8904],[123.0527,-1.8992],[123.0503,-1.9019],[123.0486,-1.9136],[123.052,-1.9215],[123.0618,-1.9262],[123.0724,-1.9213],[123.0768,-1.9209],[123.0857,-1.915],[123.0896,-1.909],[123.0911,-1.9002],[123.0983,-1.893],[123.0955,-1.8899],[123.1036,-1.8853],[123.1055,-1.882],[123.1055,-1.8754],[123.1088,-1.8758],[123.1214,-1.8698],[123.13,-1.8688],[123.1356,-1.8665],[123.1415,-1.8568],[123.142,-1.851],[123.1444,-1.8494],[123.1441,-1.843],[123.1465,-1.8391],[123.141,-1.8341],[123.1452,-1.832],[123.1472,-1.8208],[123.1491,-1.8172],[123.1419,-1.8027],[123.1446,-1.7991],[123.1375,-1.7983],[123.1272,-1.7939],[123.1302,-1.7849],[123.1301,-1.7798],[123.1262,-1.7754],[123.1219,-1.777],[123.1055,-1.7746]],[[124.1737,-1.7444],[124.1681,-1.7371],[124.1586,-1.7353],[124.1511,-1.7355],[124.1433,-1.7415],[124.1404,-1.7459],[124.1404,-1.7504],[124.144,-1.751],[124.1451,-1.759],[124.1488,-1.7666],[124.1553,-1.7684],[124.157,-1.763],[124.1528,-1.7612],[124.1533,-1.7562],[124.1692,-1.7552],[124.1679,-1.7584],[124.1675,-1.7684],[124.1641,-1.7745],[124.16,-1.7779],[124.1551,-1.7755],[124.1542,-1.7703],[124.15,-1.7706],[124.1502,-1.7754],[124.1542,-1.7786],[124.1597,-1.7863],[124.1639,-1.7885],[124.1752,-1.777],[124.1795,-1.7741],[124.1815,-1.7679],[124.177,-1.7517],[124.1737,-1.7444]],[[123.3768,-1.6724],[123.3692,-1.6739],[123.3661,-1.6729],[123.3535,-1.6792],[123.3435,-1.6906],[123.3351,-1.6948],[123.334,-1.6986],[123.3259,-1.7075],[123.3182,-1.7129],[123.3171,-1.7159],[123.3122,-1.718],[123.2943,-1.7433],[123.2895,-1.746],[123.2807,-1.7617],[123.2739,-1.7815],[123.2744,-1.7873],[123.2717,-1.7932],[123.2907,-1.7948],[123.3044,-1.7887],[123.3111,-1.7833],[123.3158,-1.7822],[123.3184,-1.7757],[123.3203,-1.7658],[123.3246,-1.7635],[123.3309,-1.7515],[123.3315,-1.7433],[123.3385,-1.7356],[123.3504,-1.7393],[123.3542,-1.7386],[123.3593,-1.7336],[123.3641,-1.7336],[123.3654,-1.7259],[123.3735,-1.7205],[123.3761,-1.724],[123.3832,-1.7213],[123.3859,-1.7185],[123.3863,-1.7062],[123.3859,-1.6898],[123.3828,-1.6788],[123.3797,-1.6726],[123.3768,-1.6724]],[[123.5319,-1.4778],[123.5293,-1.4779],[123.5232,-1.4828],[123.522,-1.4903],[123.5264,-1.4895],[123.5295,-1.4924],[123.5297,-1.4971],[123.5269,-1.5],[123.5283,-1.5084],[123.5239,-1.5114],[123.5179,-1.5092],[123.5133,-1.4986],[123.5068,-1.4967],[123.5041,-1.4989],[123.4994,-1.5076],[123.4986,-1.5124],[123.5003,-1.5187],[123.4997,-1.5276],[123.4948,-1.5331],[123.4906,-1.5327],[123.4839,-1.5358],[123.4789,-1.5481],[123.4794,-1.5513],[123.4778,-1.5715],[123.4799,-1.5836],[123.4825,-1.5833],[123.4835,-1.5769],[123.4937,-1.5809],[123.4989,-1.5871],[123.4969,-1.6057],[123.4905,-1.6031],[123.4845,-1.6063],[123.4849,-1.6143],[123.4796,-1.6152],[123.4785,-1.6228],[123.4856,-1.6306],[123.4814,-1.6432],[123.4753,-1.6415],[123.4734,-1.6544],[123.4763,-1.6592],[123.4762,-1.6646],[123.4799,-1.6664],[123.484,-1.6828],[123.4801,-1.6875],[123.4845,-1.6947],[123.4855,-1.7062],[123.489,-1.7068],[123.4883,-1.713],[123.5122,-1.723],[123.5108,-1.7176],[123.5154,-1.7109],[123.5146,-1.7052],[123.5204,-1.7035],[123.523,-1.711],[123.5327,-1.7168],[123.5366,-1.7255],[123.5465,-1.7236],[123.5548,-1.7175],[123.5585,-1.7191],[123.5644,-1.7272],[123.5685,-1.7283],[123.5762,-1.7258],[123.5799,-1.7113],[123.5892,-1.7157],[123.598,-1.7146],[123.6043,-1.7041],[123.6127,-1.6986],[123.6082,-1.6771],[123.6102,-1.6656],[123.6177,-1.6559],[123.6184,-1.65],[123.6115,-1.6451],[123.6038,-1.6318],[123.6069,-1.6305],[123.6122,-1.6367],[123.6173,-1.638],[123.6229,-1.6244],[123.6165,-1.6209],[123.6137,-1.6162],[123.6138,-1.6103],[123.6121,-1.6054],[123.6032,-1.6057],[123.5992,-1.6023],[123.597,-1.597],[123.5916,-1.594],[123.5881,-1.5982],[123.5938,-1.6005],[123.5891,-1.6069],[123.5856,-1.6038],[123.5803,-1.6062],[123.578,-1.6103],[123.5732,-1.6091],[123.5625,-1.6019],[123.5577,-1.5951],[123.5563,-1.589],[123.5576,-1.5864],[123.5573,-1.5779],[123.5554,-1.5737],[123.5545,-1.5652],[123.5557,-1.5602],[123.5592,-1.5577],[123.559,-1.5536],[123.5625,-1.5494],[123.5616,-1.5434],[123.5586,-1.5413],[123.5588,-1.536],[123.5531,-1.5282],[123.5504,-1.5202],[123.55,-1.5125],[123.547,-1.5097],[123.5456,-1.5037],[123.5478,-1.4955],[123.5441,-1.4883],[123.5342,-1.483],[123.5319,-1.4778]]]}},{"type":"Feature","properties":{"mhid":"1332:407","alt_name":"KABUPATEN MOROWALI UTARA","latitude":-1.7207,"longitude":121.24649,"sample_value":836},"geometry":{"type":"MultiLineString","coordinates":[[[121.4817,-1.9311],[121.483,-1.9381],[121.4866,-1.943],[121.4888,-1.9382],[121.4856,-1.9313],[121.4817,-1.9311]],[[121.4442,-1.9268],[121.4403,-1.9178],[121.4377,-1.9211],[121.4391,-1.9255],[121.4321,-1.9325],[121.4355,-1.9397],[121.4342,-1.9439],[121.4371,-1.9483],[121.4409,-1.9418],[121.4396,-1.936],[121.4432,-1.9336],[121.4442,-1.9268]],[[121.3787,-1.9028],[121.3688,-1.9021],[121.3653,-1.9042],[121.367,-1.9092],[121.3634,-1.9166],[121.3676,-1.9176],[121.3787,-1.9028]],[[121.5445,-2.1484],[121.5405,-2.1326],[121.5403,-2.1235],[121.5447,-2.1103],[121.54,-2.1068],[121.5372,-2.1003],[121.5356,-2.0789],[121.5314,-2.0697],[121.5307,-2.048],[121.5171,-2.0525],[121.5138,-2.0549],[121.5105,-2.0532],[121.5069,-2.048],[121.5027,-2.0488],[121.4973,-2.0463],[121.4933,-2.042],[121.4911,-2.0344],[121.4919,-2.0306],[121.4983,-2.026],[121.4924,-2.0237],[121.4874,-2.017],[121.4815,-2.0176],[121.475,-2.0163],[121.4719,-2.0129],[121.4678,-2.003],[121.464,-2.0008],[121.4551,-2.0008],[121.4495,-1.9957],[121.4475,-1.9892],[121.4438,-1.9882],[121.4386,-1.9773],[121.433,-1.9725],[121.4328,-1.9681],[121.4296,-1.9638],[121.4249,-1.9632],[121.4208,-1.9568],[121.4206,-1.9534],[121.4252,-1.9495],[121.4262,-1.9448],[121.4159,-1.9356],[121.4188,-1.9311],[121.4165,-1.9234],[121.4122,-1.9218],[121.4138,-1.918],[121.4127,-1.9113],[121.4074,-1.9067],[121.3983,-1.9098],[121.3937,-1.907],[121.3891,-1.9074],[121.382,-1.9155],[121.3774,-1.9156],[121.3798,-1.9301],[121.376,-1.9323],[121.3762,-1.9387],[121.3792,-1.9455],[121.3771,-1.9576],[121.3806,-1.9749],[121.3773,-1.982],[121.3622,-1.9827],[121.3542,-1.992],[121.3479,-2.0052],[121.3419,-2.0007],[121.3395,-1.9916],[121.3428,-1.9822],[121.3391,-1.9774],[121.3427,-1.9697],[121.3475,-1.9649],[121.3488,-1.96],[121.3475,-1.952],[121.3391,-1.9509],[121.3333,-1.9462],[121.3296,-1.9347],[121.3221,-1.9349],[121.3176,-1.9369],[121.3133,-1.9296],[121.3141,-1.9244],[121.3182,-1.9209],[121.3279,-1.919],[121.3305,-1.9116],[121.3277,-1.9088],[121.3309,-1.9027],[121.3465,-1.9],[121.3385,-1.8926],[121.3315,-1.8901],[121.3307,-1.8801],[121.3355,-1.8754],[121.3455,-1.8723],[121.3592,-1.8691],[121.3477,-1.8676],[121.344,-1.8605],[121.3515,-1.8583],[121.3499,-1.8503],[121.344,-1.8497],[121.341,-1.8543],[121.3363,-1.8543],[121.3283,-1.8622],[121.3246,-1.863],[121.3236,-1.8584],[121.3176,-1.856],[121.3167,-1.8535],[121.3047,-1.8564],[121.2949,-1.856],[121.2925,-1.845],[121.2889,-1.8425],[121.2898,-1.8344],[121.292,-1.8325],[121.2962,-1.8234],[121.2967,-1.8175],[121.2949,-1.8094],[121.2991,-1.8085],[121.3032,-1.7929],[121.3072,-1.7965],[121.3125,-1.7945],[121.318,-1.7847],[121.3206,-1.7837],[121.3195,-1.7767],[121.3156,-1.7756],[121.3108,-1.7701],[121.3219,-1.767],[121.3252,-1.773],[121.3295,-1.7734],[121.3343,-1.7771],[121.3367,-1.7724],[121.341,-1.7724],[121.3473,-1.778],[121.3504,-1.7868],[121.3579,-1.7908],[121.3624,-1.7892],[121.367,-1.7917],[121.3734,-1.8048],[121.3766,-1.8075],[121.3882,-1.8106],[121.3928,-1.8055],[121.4032,-1.8061],[121.4127,-1.8101],[121.4163,-1.8147],[121.4147,-1.8181],[121.4187,-1.822],[121.4218,-1.8175],[121.4222,-1.8123],[121.4339,-1.809],[121.4373,-1.8095],[121.4423,-1.8048],[121.4455,-1.8084],[121.4523,-1.8112],[121.4555,-1.8104],[121.4619,-1.8182],[121.4625,-1.8272],[121.4677,-1.8341],[121.4667,-1.84],[121.4619,-1.8401],[121.4579,-1.8427],[121.4547,-1.8485],[121.4543,-1.8542],[121.4493,-1.8586],[121.4485,-1.8672],[121.4515,-1.8676],[121.4601,-1.8649],[121.4685,-1.8568],[121.4667,-1.8697],[121.4615,-1.8789],[121.4697,-1.8755],[121.4731,-1.8756],[121.4775,-1.8715],[121.4833,-1.8702],[121.4879,-1.8766],[121.4861,-1.883],[121.4905,-1.8846],[121.4969,-1.8949],[121.5021,-1.8986],[121.5061,-1.898],[121.5109,-1.9059],[121.5263,-1.9114],[121.5299,-1.9168],[121.5355,-1.9153],[121.5397,-1.918],[121.5445,-1.9333],[121.5477,-1.9347],[121.5487,-1.9392],[121.5563,-1.9525],[121.5637,-1.9572],[121.5737,-1.959],[121.5785,-1.9552],[121.5873,-1.9534],[121.6015,-1.9524],[121.6155,-1.9541],[121.6261,-1.9604],[121.6313,-1.9577],[121.6453,-1.9581],[121.6531,-1.9552],[121.6577,-1.9552],[121.6617,-1.9513],[121.6697,-1.9476],[121.6767,-1.9466],[121.6835,-1.9389],[121.6903,-1.9276],[121.6981,-1.9247],[121.7009,-1.9215],[121.7065,-1.9219],[121.7121,-1.9248],[121.7125,-1.9201],[121.7187,-1.9055],[121.7303,-1.9018],[121.7317,-1.8944],[121.7393,-1.8915],[121.7439,-1.8875],[121.7443,-1.8814],[121.7497,-1.8758],[121.7563,-1.8637],[121.7633,-1.8546],[121.7651,-1.8458],[121.7685,-1.8375],[121.7671,-1.8354],[121.7687,-1.8263],[121.7733,-1.8164],[121.7791,-1.8083],[121.7793,-1.8012],[121.7822,-1.7928],[121.7853,-1.795],[121.7917,-1.7853],[121.7972,-1.7713],[121.8023,-1.7647],[121.8043,-1.7566],[121.8028,-1.7542],[121.803,-1.7382],[121.8076,-1.7308],[121.8118,-1.7283],[121.8178,-1.7285],[121.8242,-1.7267],[121.8267,-1.717],[121.8363,-1.7142],[121.8398,-1.7059],[121.8437,-1.7025],[121.8513,-1.6932],[121.8519,-1.6991],[121.8586,-1.7093],[121.8685,-1.7091],[121.8715,-1.7108],[121.8818,-1.7111],[121.8876,-1.7039],[121.8829,-1.699],[121.8723,-1.7039],[121.8645,-1.7063],[121.8649,-1.6996],[121.8623,-1.696],[121.8701,-1.6942],[121.8681,-1.6892],[121.8685,-1.682],[121.8631,-1.6845],[121.8606,-1.679],[121.863,-1.6708],[121.8674,-1.6766],[121.8745,-1.6779],[121.8831,-1.6888],[121.8863,-1.6875],[121.8862,-1.6806],[121.89,-1.6806],[121.8905,-1.6915],[121.8952,-1.6989],[121.9037,-1.7014],[121.9044,-1.6925],[121.9059,-1.6893],[121.9155,-1.688],[121.9203,-1.6832],[121.9269,-1.6821],[121.927,-1.6869],[121.9296,-1.6902],[121.9355,-1.6879],[121.9329,-1.6847],[121.9391,-1.6764],[121.9442,-1.6742],[121.9592,-1.6792],[121.965,-1.6707],[121.9764,-1.6637],[121.9821,-1.6565],[121.9944,-1.6527],[121.9981,-1.6458],[122.0044,-1.6408],[122.0062,-1.6352],[122.0126,-1.6299],[122.02,-1.6283],[122.0228,-1.6166],[122.0297,-1.6123],[122.0375,-1.6104],[122.0476,-1.6124],[122.0512,-1.6156],[122.0612,-1.6168],[122.0637,-1.616]]]}},{"type":"Feature","properties":{"mhid":"1332:408","alt_name":"KOTA PALU","latitude":-0.86972,"longitude":119.9,"sample_value":248},"geometry":{"type":"MultiLineString","coordinates":[[[119.8437,-0.6968],[119.8437,-0.701],[119.8495,-0.706],[119.8594,-0.7122],[119.8636,-0.7169],[119.8587,-0.7242],[119.8547,-0.7359],[119.8554,-0.7429],[119.8611,-0.7511],[119.8622,-0.7556],[119.859,-0.7645],[119.8587,-0.7741],[119.8613,-0.7853],[119.8721,-0.7972],[119.8789,-0.8022],[119.878,-0.8053],[119.8805,-0.8178],[119.8842,-0.8237],[119.881,-0.8292],[119.8821,-0.8352],[119.8812,-0.8484],[119.8793,-0.857],[119.88,-0.8633],[119.8744,-0.8688],[119.8737,-0.8766],[119.8712,-0.8831],[119.8649,-0.885],[119.8451,-0.8826],[119.8387,-0.8789],[119.8301,-0.8605],[119.8285,-0.8533],[119.8248,-0.8457],[119.8206,-0.8436],[119.816,-0.8382],[119.813,-0.8277],[119.8138,-0.8254],[119.8128,-0.8077],[119.8082,-0.8014],[119.8054,-0.8027]]]}},{"type":"Feature","properties":{"mhid":"1332:409","alt_name":"KABUPATEN KEPULAUAN SELAYAR","latitude":-6.81667,"longitude":120.8,"sample_value":616},"geometry":{"type":"MultiLineString","coordinates":[[[121.2101,-7.4963],[121.2133,-7.5084],[121.2178,-7.5006],[121.2173,-7.4972],[121.2101,-7.4963]],[[121.7966,-7.4721],[121.792,-7.4725],[121.788,-7.4769],[121.7796,-7.476],[121.7764,-7.4784],[121.7557,-7.4858],[121.7471,-7.484],[121.7391,-7.4861],[121.7349,-7.4901],[121.7235,-7.4889],[121.7235,-7.4926],[121.7278,-7.4941],[121.7338,-7.4927],[121.7387,-7.4945],[121.7583,-7.4942],[121.7657,-7.4921],[121.7719,-7.489],[121.7799,-7.4879],[121.7835,-7.4891],[121.791,-7.4867],[121.8005,-7.4874],[121.8034,-7.4811],[121.7994,-7.4726],[121.7966,-7.4721]],[[121.4212,-7.4502],[121.4154,-7.4504],[121.4129,-7.4572],[121.4159,-7.4623],[121.4248,-7.4659],[121.4286,-7.4622],[121.428,-7.4579],[121.4212,-7.4502]],[[121.8184,-7.3308],[121.811,-7.3309],[121.7982,-7.3327],[121.7913,-7.3348],[121.7851,-7.3342],[121.7813,-7.3385],[121.7723,-7.3395],[121.7701,-7.3444],[121.7651,-7.3463],[121.7589,-7.345],[121.7538,-7.3533],[121.7541,-7.3739],[121.7532,-7.3775],[121.7475,-7.3789],[121.745,-7.3845],[121.7457,-7.3984],[121.7445,-7.4075],[121.7463,-7.4149],[121.7548,-7.423],[121.7595,-7.4219],[121.7637,-7.4236],[121.7718,-7.4241],[121.7837,-7.4201],[121.7891,-7.417],[121.8025,-7.4065],[121.8231,-7.3973],[121.8285,-7.3859],[121.8395,-7.372],[121.8382,-7.3702],[121.8386,-7.3473],[121.8293,-7.3344],[121.8215,-7.3307],[121.8184,-7.3308]],[[121.0858,-7.3036],[121.0807,-7.3072],[121.0813,-7.3179],[121.0783,-7.3302],[121.0788,-7.3386],[121.0817,-7.3495],[121.0837,-7.3512],[121.0822,-7.3628],[121.0733,-7.3697],[121.0621,-7.3702],[121.061,-7.3728],[121.0707,-7.376],[121.0793,-7.3854],[121.0854,-7.3871],[121.0987,-7.3975],[121.1073,-7.3917],[121.1175,-7.3882],[121.1252,-7.3825],[121.1378,-7.3787],[121.1421,-7.3786],[121.1477,-7.3734],[121.1567,-7.3718],[121.1623,-7.3623],[121.1672,-7.3578],[121.1682,-7.3541],[121.1651,-7.3455],[121.1579,-7.3446],[121.1474,-7.3377],[121.1363,-7.3396],[121.1314,-7.3368],[121.129,-7.3328],[121.1293,-7.3243],[121.1261,-7.3209],[121.1159,-7.3163],[121.1068,-7.3187],[121.1028,-7.3163],[121.0994,-7.3072],[121.0948,-7.3041],[121.0858,-7.3036]],[[121.7612,-7.2613],[121.7532,-7.2664],[121.7407,-7.2721],[121.7373,-7.2787],[121.7306,-7.2819],[121.7303,-7.2884],[121.7278,-7.2906],[121.7302,-7.295],[121.7371,-7.2918],[121.7485,-7.2899],[121.753,-7.287],[121.759,-7.2878],[121.7735,-7.2863],[121.7788,-7.2726],[121.7753,-7.2682],[121.7655,-7.2611],[121.7612,-7.2613]],[[120.8209,-7.2593],[120.8141,-7.2594],[120.81,-7.2626],[120.8032,-7.2631],[120.7962,-7.2702],[120.7979,-7.2765],[120.8014,-7.277],[120.8064,-7.287],[120.8232,-7.2945],[120.8297,-7.2982],[120.8382,-7.2983],[120.8506,-7.2931],[120.855,-7.2937],[120.8658,-7.2989],[120.8736,-7.3053],[120.8886,-7.3081],[120.8911,-7.3096],[120.901,-7.3103],[120.9021,-7.3082],[120.9091,-7.3068],[120.9227,-7.3074],[120.931,-7.307],[120.9372,-7.3102],[120.9407,-7.3138],[120.9569,-7.3246],[120.9714,-7.3242],[120.9894,-7.3281],[121.0039,-7.3327],[121.0128,-7.3321],[121.0163,-7.3299],[121.0278,-7.3284],[121.0311,-7.3263],[121.0394,-7.3257],[121.0509,-7.3268],[121.053,-7.3171],[121.0605,-7.3072],[121.0637,-7.2994],[121.0591,-7.2975],[121.0474,-7.2979],[121.0397,-7.2946],[121.033,-7.2888],[121.0291,-7.2874],[121.0249,-7.2895],[121.0172,-7.2873],[121.0125,-7.2841],[121.0091,-7.2847],[121.0044,-7.2818],[120.9938,-7.2844],[120.9885,-7.282],[120.9803,-7.2811],[120.9638,-7.2814],[120.9611,-7.2782],[120.9505,-7.2831],[120.932,-7.284],[120.9269,-7.2828],[120.9191,-7.2845],[120.9132,-7.2791],[120.9085,-7.2786],[120.9014,-7.2731],[120.889,-7.2754],[120.8823,-7.2719],[120.8745,-7.2732],[120.8717,-7.2716],[120.8632,-7.2711],[120.8535,-7.2678],[120.8496,-7.2644],[120.8394,-7.2598],[120.8278,-7.2608],[120.8209,-7.2593]],[[121.7543,-7.2224],[121.7496,-7.2225],[121.7467,-7.2264],[121.7385,-7.2297],[121.7466,-7.234],[121.7557,-7.2299],[121.7543,-7.2224]],[[121.4793,-7.1533],[121.4806,-7.1499],[121.4762,-7.1457],[121.4731,-7.1473],[121.4729,-7.1519],[121.4793,-7.1533]],[[120.5614,-7.0734],[120.5567,-7.0805],[120.5591,-7.0886],[120.5641,-7.0928],[120.5686,-7.0897],[120.5765,-7.0874],[120.5838,-7.0912],[120.5868,-7.0899],[120.5911,-7.0925],[120.5909,-7.0975],[120.5956,-7.1003],[120.6031,-7.0992],[120.6029,-7.0966],[120.6117,-7.0905],[120.613,-7.0816],[120.6088,-7.0801],[120.6039,-7.0815],[120.5956,-7.0811],[120.5895,-7.0829],[120.5824,-7.0772],[120.5706,-7.0763],[120.5642,-7.078],[120.5614,-7.0734]],[[120.5491,-7.0558],[120.5426,-7.0573],[120.5372,-7.063],[120.541,-7.0683],[120.5474,-7.0688],[120.5515,-7.0671],[120.5508,-7.0592],[120.5491,-7.0558]],[[120.6319,-7.0004],[120.6224,-7.0015],[120.6199,-7.0037],[120.6217,-7.0222],[120.6244,-7.0257],[120.6242,-7.0359],[120.6276,-7.0452],[120.6275,-7.0522],[120.6229,-7.0521],[120.6193,-7.0561],[120.6162,-7.0635],[120.6102,-7.069],[120.6103,-7.0721],[120.6048,-7.075],[120.6121,-7.079],[120.6178,-7.0802],[120.6204,-7.0867],[120.62,-7.097],[120.6236,-7.097],[120.6274,-7.0919],[120.6324,-7.0943],[120.6356,-7.0995],[120.634,-7.105],[120.6273,-7.105],[120.629,-7.1121],[120.6255,-7.1133],[120.6263,-7.1186],[120.6324,-7.1217],[120.6343,-7.127],[120.6505,-7.1353],[120.6538,-7.1357],[120.6594,-7.1444],[120.6651,-7.1436],[120.6674,-7.147],[120.6764,-7.1454],[120.6788,-7.142],[120.6764,-7.1351],[120.6688,-7.1288],[120.6578,-7.1294],[120.6535,-7.1262],[120.6629,-7.1209],[120.6704,-7.1213],[120.6731,-7.1235],[120.6807,-7.1225],[120.6894,-7.1266],[120.695,-7.1277],[120.7003,-7.133],[120.7099,-7.134],[120.7157,-7.1296],[120.7286,-7.1287],[120.735,-7.1331],[120.7451,-7.1286],[120.7538,-7.1303],[120.7538,-7.1334],[120.7588,-7.1353],[120.7601,-7.1319],[120.7673,-7.1354],[120.7706,-7.1246],[120.774,-7.1176],[120.7783,-7.1029],[120.7817,-7.1009],[120.7836,-7.0952],[120.7827,-7.0877],[120.7841,-7.0748],[120.7871,-7.0616],[120.7826,-7.0597],[120.777,-7.0654],[120.7763,-7.0694],[120.7697,-7.0751],[120.7598,-7.0791],[120.7488,-7.079],[120.7363,-7.0744],[120.7308,-7.0709],[120.7148,-7.0589],[120.7022,-7.0553],[120.6833,-7.0488],[120.6794,-7.0453],[120.673,-7.0426],[120.6668,-7.0349],[120.6603,-7.0238],[120.6585,-7.0191],[120.6513,-7.0127],[120.6414,-7.0095],[120.6402,-7.0059],[120.6319,-7.0004]],[[120.5219,-6.9867],[120.5175,-6.9886],[120.5205,-6.9944],[120.5294,-7.0001],[120.5219,-6.9867]],[[120.4444,-6.9492],[120.4392,-6.9515],[120.4338,-6.965],[120.4372,-6.9705],[120.4474,-6.9676],[120.4553,-6.9625],[120.4556,-6.9583],[120.4506,-6.9497],[120.4444,-6.9492]],[[120.791,-6.7785],[120.7879,-6.7794],[120.7866,-6.7866],[120.7834,-6.7884],[120.7796,-6.799],[120.7817,-6.8111],[120.7914,-6.8194],[120.7936,-6.8411],[120.7939,-6.8635],[120.7994,-6.8631],[120.8016,-6.8499],[120.8079,-6.8443],[120.8125,-6.8362],[120.8137,-6.8305],[120.8102,-6.8244],[120.809,-6.8166],[120.8101,-6.8129],[120.8071,-6.8049],[120.8071,-6.7941],[120.7977,-6.7858],[120.791,-6.7785]],[[120.9701,-6.7504],[120.9664,-6.7535],[120.9692,-6.7611],[120.972,-6.7514],[120.9701,-6.7504]],[[121.1553,-6.7163],[121.1509,-6.7211],[121.1508,-6.724],[121.145,-6.7348],[121.1478,-6.7357],[121.1553,-6.7163]],[[120.2746,-6.6769],[120.27,-6.681],[120.2698,-6.6963],[120.2725,-6.6997],[120.2781,-6.7002],[120.2829,-6.6915],[120.2811,-6.6796],[120.2746,-6.6769]],[[120.4383,-6.6543],[120.43,-6.6587],[120.4294,-6.674],[120.4304,-6.6859],[120.4284,-6.6965],[120.4337,-6.6989],[120.4377,-6.6903],[120.4421,-6.6773],[120.4418,-6.6625],[120.4383,-6.6543]],[[120.4363,-6.5807],[120.4277,-6.5861],[120.4248,-6.597],[120.4281,-6.6086],[120.4268,-6.6178],[120.4257,-6.64],[120.4323,-6.6398],[120.4338,-6.6421],[120.4403,-6.6442],[120.4423,-6.6413],[120.4439,-6.6228],[120.4396,-6.6105],[120.4419,-6.605],[120.4389,-6.5905],[120.4398,-6.5853],[120.4363,-6.5807]],[[120.9997,-6.5446],[121.0004,-6.5329],[120.9972,-6.5355],[120.9971,-6.5397],[120.9997,-6.5446]],[[121.0015,-6.4941],[120.9971,-6.4948],[120.9876,-6.4998],[120.9833,-6.5043],[120.9954,-6.5028],[121.0015,-6.4941]],[[120.4338,-6.4648],[120.4301,-6.4695],[120.4256,-6.4708],[120.425,-6.4769],[120.4222,-6.4814],[120.4209,-6.4876],[120.428,-6.4893],[120.4325,-6.483],[120.4316,-6.4721],[120.4338,-6.4648]],[[120.4515,-6.3415],[120.4485,-6.3443],[120.4521,-6.3487],[120.4547,-6.3452],[120.4515,-6.3415]],[[120.4549,-6.3234],[120.4544,-6.3292],[120.4611,-6.3285],[120.4605,-6.3239],[120.4549,-6.3234]],[[120.4554,-6.2913],[120.4517,-6.2914],[120.456,-6.3022],[120.4606,-6.3047],[120.4678,-6.2989],[120.4554,-6.2913]],[[120.4294,-6.1058],[120.4255,-6.1082],[120.4222,-6.116],[120.4144,-6.115],[120.4125,-6.12],[120.4086,-6.1229],[120.4065,-6.1285],[120.4016,-6.1562],[120.4003,-6.1599],[120.3958,-6.1627],[120.3948,-6.1726],[120.3922,-6.1803],[120.3953,-6.1901],[120.3975,-6.2009],[120.4066,-6.202],[120.4108,-6.2073],[120.4149,-6.2087],[120.4203,-6.2069],[120.4268,-6.1969],[120.423,-6.1881],[120.4204,-6.1869],[120.4189,-6.181],[120.4218,-6.1734],[120.4173,-6.1581],[120.4165,-6.1386],[120.4199,-6.1341],[120.4214,-6.1287],[120.4195,-6.1233],[120.4268,-6.12],[120.4294,-6.1125],[120.4323,-6.1104],[120.4294,-6.1058]],[[120.4474,-6.2113],[120.4478,-6.2151],[120.4454,-6.228],[120.4474,-6.2456],[120.4424,-6.2565],[120.4455,-6.2664],[120.4529,-6.2656],[120.4592,-6.2676],[120.466,-6.2679],[120.4722,-6.2706],[120.4753,-6.2767],[120.4796,-6.2784],[120.4814,-6.2848],[120.4797,-6.2912],[120.4747,-6.2986],[120.4718,-6.2999],[120.4774,-6.3082],[120.4761,-6.3213],[120.4732,-6.3275],[120.4719,-6.3407],[120.4719,-6.3517],[120.4747,-6.3686],[120.473,-6.3725],[120.4708,-6.3841],[120.4641,-6.3891],[120.4577,-6.3824],[120.4568,-6.3906],[120.46,-6.3942],[120.4608,-6.3993],[120.4648,-6.3977],[120.4702,-6.4013],[120.4599,-6.4047],[120.4611,-6.4129],[120.4685,-6.4304],[120.4736,-6.4372],[120.4756,-6.4574],[120.4776,-6.4621],[120.4779,-6.4706],[120.4797,-6.4767],[120.4791,-6.4808],[120.481,-6.4893],[120.4805,-6.494],[120.4857,-6.4968],[120.4863,-6.4903],[120.4911,-6.4798],[120.4927,-6.4687],[120.4961,-6.462],[120.5006,-6.457],[120.5025,-6.4485],[120.5095,-6.4453],[120.5099,-6.4427],[120.505,-6.4386],[120.5019,-6.4337],[120.4979,-6.4226],[120.5014,-6.4162],[120.4972,-6.4103],[120.4966,-6.4051],[120.4928,-6.4023],[120.498,-6.3938],[120.5029,-6.3943],[120.5064,-6.392],[120.5076,-6.3869],[120.5054,-6.3811],[120.5096,-6.3783],[120.5132,-6.3716],[120.5135,-6.3627],[120.5187,-6.3654],[120.5224,-6.3548],[120.5176,-6.3507],[120.5182,-6.3477],[120.525,-6.3479],[120.5271,-6.3455],[120.5211,-6.338],[120.5318,-6.3297],[120.5375,-6.3282],[120.5378,-6.3076],[120.5353,-6.2984],[120.5379,-6.2974],[120.539,-6.2905],[120.5373,-6.2832],[120.539,-6.2791],[120.5359,-6.2737],[120.5341,-6.2649],[120.5363,-6.2553],[120.5384,-6.2534],[120.5374,-6.2458],[120.53,-6.2452],[120.5302,-6.24],[120.5251,-6.2212],[120.5286,-6.2118],[120.5262,-6.208],[120.5298,-6.2044],[120.5314,-6.1945],[120.5286,-6.1885],[120.5318,-6.1791],[120.5365,-6.1718],[120.5384,-6.1647],[120.5388,-6.1569],[120.5452,-6.1475],[120.5465,-6.1371],[120.5484,-6.1354],[120.5481,-6.1288],[120.5409,-6.1252],[120.5509,-6.1227],[120.5502,-6.1185],[120.5443,-6.1113],[120.5449,-6.107],[120.5538,-6.1069],[120.5573,-6.0813],[120.5528,-6.0753],[120.5574,-6.0706],[120.5551,-6.0635],[120.5643,-6.0627],[120.5681,-6.0561],[120.5661,-6.0355],[120.5639,-6.0214],[120.5587,-6.002],[120.5582,-5.9914],[120.5522,-5.9813],[120.5536,-5.9746],[120.5511,-5.9681],[120.5493,-5.959],[120.5437,-5.9417],[120.5434,-5.9358],[120.5374,-5.9273],[120.5322,-5.9007],[120.5345,-5.8887],[120.5338,-5.875],[120.5303,-5.8641],[120.5273,-5.8591],[120.5261,-5.8529],[120.5273,-5.8461],[120.5302,-5.8441],[120.5246,-5.8347],[120.5189,-5.8375],[120.5159,-5.8362],[120.5108,-5.826],[120.5079,-5.8233],[120.5013,-5.8088],[120.5021,-5.8001],[120.5071,-5.7913],[120.5057,-5.7838],[120.4991,-5.7773],[120.4979,-5.7712],[120.4932,-5.7677],[120.4837,-5.7678],[120.4761,-5.7729],[120.4686,-5.7827],[120.4662,-5.788],[120.462,-5.7912],[120.4604,-5.8009],[120.459,-5.8235],[120.4572,-5.8268],[120.4562,-5.841],[120.4532,-5.846],[120.4525,-5.87],[120.4525,-5.8927],[120.4509,-5.9043],[120.4477,-5.9169],[120.4468,-5.9245],[120.4468,-5.9394],[120.4455,-5.9605],[120.4468,-5.9679],[120.4507,-5.9777],[120.4493,-5.9872],[120.4491,-6.0017],[120.4526,-6.0113],[120.4518,-6.018],[120.4491,-6.0252],[120.4482,-6.0375],[120.4528,-6.0475],[120.4533,-6.0544],[120.4505,-6.0612],[120.4541,-6.0742],[120.4611,-6.0861],[120.466,-6.0923],[120.4644,-6.1046],[120.4628,-6.1095],[120.457,-6.1163],[120.4561,-6.125],[120.4479,-6.1404],[120.4508,-6.1432],[120.447,-6.1622],[120.4334,-6.1669],[120.4302,-6.1698],[120.4326,-6.1766],[120.4265,-6.1799],[120.431,-6.1875],[120.4409,-6.1926],[120.4449,-6.1977],[120.4474,-6.2113]],[[120.4898,-5.7395],[120.479,-5.7389],[120.4735,-5.746],[120.4744,-5.7505],[120.4849,-5.7554],[120.4926,-5.7515],[120.4903,-5.7466],[120.4898,-5.7395]]]}},{"type":"Feature","properties":{"mhid":"1332:410","alt_name":"KABUPATEN BULUKUMBA","latitude":-5.41667,"longitude":120.23333,"sample_value":337},"geometry":{"type":"MultiLineString","coordinates":[[[120.429,-5.6393],[120.425,-5.6403],[120.4208,-5.6478],[120.4211,-5.6545],[120.425,-5.6595],[120.4313,-5.6606],[120.442,-5.6517],[120.4455,-5.6467],[120.4427,-5.6416],[120.4353,-5.6422],[120.429,-5.6393]],[[120.1013,-5.5857],[120.1059,-5.5891],[120.1124,-5.5895],[120.1215,-5.5872],[120.1295,-5.5883],[120.1334,-5.5851],[120.1484,-5.5801],[120.1553,-5.573],[120.1706,-5.5647],[120.1744,-5.5642],[120.1858,-5.5667],[120.1903,-5.566],[120.1967,-5.5611],[120.2001,-5.5563],[120.2124,-5.5493],[120.2149,-5.5447],[120.2204,-5.5402],[120.2312,-5.5382],[120.2357,-5.5388],[120.2414,-5.5365],[120.2584,-5.536],[120.2763,-5.5377],[120.2891,-5.5321],[120.2984,-5.516],[120.3029,-5.5123],[120.3149,-5.5072],[120.3193,-5.5094],[120.3329,-5.5105],[120.3448,-5.5136],[120.3555,-5.5232],[120.3648,-5.5357],[120.3709,-5.5512],[120.3789,-5.5685],[120.3824,-5.5738],[120.3936,-5.5863],[120.4084,-5.5972],[120.4252,-5.608],[120.4354,-5.6118],[120.4425,-5.608],[120.4485,-5.6085],[120.4559,-5.6145],[120.4598,-5.6201],[120.4732,-5.6195],[120.4683,-5.6147],[120.4673,-5.6098],[120.4639,-5.608],[120.4623,-5.6016],[120.4616,-5.5919],[120.463,-5.5838],[120.4592,-5.5724],[120.448,-5.5681],[120.4451,-5.5544],[120.446,-5.5511],[120.4509,-5.5484],[120.4491,-5.5413],[120.4489,-5.5308],[120.4467,-5.5259],[120.4484,-5.5112],[120.4468,-5.5022],[120.4436,-5.495],[120.4435,-5.4898],[120.446,-5.4817],[120.4513,-5.4785],[120.4493,-5.4744],[120.4369,-5.4727],[120.4312,-5.4683],[120.428,-5.4686],[120.4241,-5.4649],[120.4226,-5.4591],[120.4249,-5.453],[120.4296,-5.4514],[120.4334,-5.4445],[120.4303,-5.4397],[120.4284,-5.4299],[120.4255,-5.4297],[120.4189,-5.4163],[120.413,-5.4074],[120.4123,-5.3965],[120.4027,-5.3784],[120.4033,-5.3703],[120.4005,-5.3658],[120.4012,-5.3614],[120.407,-5.358],[120.4055,-5.3459],[120.4034,-5.3396],[120.3974,-5.3405],[120.3866,-5.3377],[120.3834,-5.3336],[120.3759,-5.3328],[120.3745,-5.3274],[120.3702,-5.3225],[120.3641,-5.3218],[120.3589,-5.3161],[120.3533,-5.3138],[120.349,-5.3061],[120.3426,-5.3014],[120.3417,-5.2927],[120.3362,-5.2871],[120.3342,-5.2877]]]}},{"type":"Feature","properties":{"mhid":"1332:411","alt_name":"KABUPATEN BANTAENG","latitude":-5.48333,"longitude":119.98333,"sample_value":856},"geometry":{"type":"MultiLineString","coordinates":[[[119.9073,-5.5768],[119.9111,-5.5733],[119.9174,-5.5646],[119.9188,-5.559],[119.9268,-5.5491],[119.9302,-5.5465],[119.9379,-5.5443],[119.9435,-5.5459],[119.9498,-5.5522],[119.9539,-5.5538],[119.9649,-5.5542],[119.9716,-5.5575],[119.9823,-5.5608],[119.9923,-5.5591],[120.0036,-5.5614],[120.0158,-5.569],[120.0302,-5.5733],[120.036,-5.5738],[120.0476,-5.5789],[120.0531,-5.5783],[120.0594,-5.5828],[120.0628,-5.5827],[120.0762,-5.5857],[120.0836,-5.5883],[120.0906,-5.5842],[120.1013,-5.5857]]]}},{"type":"Feature","properties":{"mhid":"1332:412","alt_name":"KABUPATEN JENEPONTO","latitude":-5.63333,"longitude":119.73333,"sample_value":394},"geometry":{"type":"MultiLineString","coordinates":[[[119.511,-5.5368],[119.5147,-5.5448],[119.5184,-5.5484],[119.5129,-5.5553],[119.5176,-5.5588],[119.5156,-5.5626],[119.5104,-5.5664],[119.5169,-5.5721],[119.5236,-5.5746],[119.525,-5.5786],[119.5308,-5.5809],[119.5346,-5.5863],[119.5412,-5.5838],[119.5469,-5.5866],[119.5521,-5.5937],[119.5553,-5.5936],[119.5577,-5.5983],[119.5635,-5.6],[119.5701,-5.6044],[119.5675,-5.609],[119.5629,-5.6115],[119.5575,-5.6051],[119.5557,-5.5946],[119.5505,-5.6036],[119.5501,-5.6133],[119.5449,-5.6198],[119.5467,-5.6228],[119.5458,-5.6341],[119.5472,-5.6381],[119.5573,-5.649],[119.5762,-5.6586],[119.5799,-5.6571],[119.5882,-5.6447],[119.587,-5.6358],[119.5882,-5.6199],[119.5832,-5.6201],[119.5851,-5.6147],[119.5893,-5.6125],[119.5937,-5.6179],[119.604,-5.6171],[119.6095,-5.6127],[119.6157,-5.6159],[119.6192,-5.6246],[119.628,-5.6247],[119.6379,-5.6294],[119.6505,-5.6285],[119.6531,-5.6363],[119.6586,-5.6442],[119.6599,-5.6482],[119.6568,-5.6545],[119.6517,-5.6535],[119.6477,-5.6575],[119.6405,-5.6602],[119.6397,-5.6641],[119.6408,-5.6721],[119.6491,-5.6818],[119.6589,-5.6836],[119.6658,-5.688],[119.6716,-5.694],[119.6797,-5.6965],[119.6867,-5.697],[119.692,-5.7],[119.7046,-5.7029],[119.7212,-5.7017],[119.7293,-5.7023],[119.7353,-5.7012],[119.7394,-5.6982],[119.7459,-5.7009],[119.7506,-5.7005],[119.7643,-5.703],[119.7715,-5.7019],[119.7892,-5.7019],[119.7943,-5.7007],[119.8082,-5.6904],[119.8223,-5.6732],[119.8288,-5.6722],[119.8346,-5.6732],[119.84,-5.6722],[119.85,-5.6652],[119.8545,-5.6567],[119.8437,-5.6452],[119.8439,-5.6416],[119.84,-5.6345],[119.8506,-5.6332],[119.8579,-5.636],[119.8626,-5.6335],[119.8607,-5.6268],[119.8662,-5.6175],[119.8668,-5.6089],[119.8749,-5.6138],[119.8798,-5.6038],[119.8881,-5.5958],[119.8954,-5.594],[119.8987,-5.5892],[119.9058,-5.583],[119.9073,-5.5768]]]}},{"type":"Feature","properties":{"mhid":"1332:413","alt_name":"KABUPATEN TAKALAR","latitude":-5.41667,"longitude":119.51667,"sample_value":153},"geometry":{"type":"MultiLineString","coordinates":[[[119.2817,-5.4508],[119.2763,-5.4487],[119.2713,-5.4493],[119.2627,-5.4557],[119.2632,-5.4623],[119.2725,-5.4767],[119.2723,-5.484],[119.2774,-5.4936],[119.2767,-5.5007],[119.2697,-5.4993],[119.2672,-5.5023],[119.2593,-5.5032],[119.2566,-5.4991],[119.2598,-5.495],[119.2599,-5.4868],[119.2545,-5.4839],[119.2503,-5.4872],[119.248,-5.492],[119.2489,-5.4982],[119.2449,-5.5023],[119.2435,-5.5068],[119.2499,-5.5119],[119.2573,-5.514],[119.2547,-5.5219],[119.2605,-5.5266],[119.2682,-5.5263],[119.2684,-5.5342],[119.2729,-5.5364],[119.2856,-5.5345],[119.2901,-5.5311],[119.2967,-5.5316],[119.3081,-5.5258],[119.3103,-5.5208],[119.3171,-5.5155],[119.3199,-5.5107],[119.3205,-5.4952],[119.3187,-5.4886],[119.3203,-5.4756],[119.3171,-5.472],[119.315,-5.4628],[119.3031,-5.4537],[119.2945,-5.4491],[119.2817,-5.4508]],[[119.2352,-5.443],[119.2276,-5.4439],[119.2225,-5.4535],[119.2214,-5.4581],[119.2225,-5.4676],[119.225,-5.47],[119.234,-5.4638],[119.2392,-5.4573],[119.2393,-5.4453],[119.2352,-5.443]],[[119.2297,-5.4342],[119.2222,-5.434],[119.2163,-5.4403],[119.2214,-5.4442],[119.2297,-5.4342]],[[119.1917,-5.4017],[119.1966,-5.3983],[119.1963,-5.3926],[119.1906,-5.3962],[119.1917,-5.4017]],[[119.3417,-5.3297],[119.3446,-5.3253],[119.3412,-5.3206],[119.336,-5.3227],[119.3417,-5.3297]],[[119.3837,-5.2144],[119.3828,-5.2319],[119.3803,-5.24],[119.3769,-5.2665],[119.3704,-5.2962],[119.3646,-5.313],[119.3599,-5.3204],[119.354,-5.3273],[119.3571,-5.3328],[119.3604,-5.3451],[119.3606,-5.354],[119.3588,-5.3742],[119.3583,-5.3864],[119.359,-5.4],[119.3606,-5.4109],[119.3631,-5.4189],[119.3665,-5.4243],[119.3731,-5.4296],[119.3801,-5.4462],[119.3849,-5.4493],[119.3911,-5.4559],[119.396,-5.4573],[119.4017,-5.4656],[119.4026,-5.4717],[119.4065,-5.4749],[119.4108,-5.4833],[119.4151,-5.4878],[119.4146,-5.4925],[119.4222,-5.4966],[119.4293,-5.5069],[119.4342,-5.5196],[119.4358,-5.5296],[119.4358,-5.538],[119.4246,-5.5471],[119.4198,-5.5464],[119.4179,-5.5604],[119.4241,-5.569],[119.4241,-5.5749],[119.4329,-5.586],[119.4393,-5.5916],[119.4399,-5.5964],[119.4494,-5.6001],[119.4536,-5.6006],[119.4598,-5.6063],[119.4677,-5.6074],[119.4842,-5.6055],[119.489,-5.604],[119.483,-5.5956],[119.4815,-5.59],[119.475,-5.5931],[119.4687,-5.5911],[119.4703,-5.5868],[119.465,-5.5854],[119.4597,-5.5809],[119.4612,-5.5753],[119.4725,-5.5681],[119.4745,-5.5643],[119.4949,-5.5585],[119.5031,-5.5579],[119.5053,-5.5521],[119.5032,-5.5498],[119.5064,-5.5417],[119.511,-5.5368]]]}},{"type":"Feature","properties":{"mhid":"1332:415","alt_name":"KABUPATEN SINJAI","latitude":-5.21667,"longitude":120.15,"sample_value":975},"geometry":{"type":"MultiLineString","coordinates":[[[120.3921,-5.1259],[120.3965,-5.1223],[120.3911,-5.116],[120.3876,-5.122],[120.3921,-5.1259]],[[120.3342,-5.2877],[120.3307,-5.2757],[120.3273,-5.2694],[120.3278,-5.2654],[120.3244,-5.2511],[120.3178,-5.2369],[120.314,-5.2329],[120.3149,-5.2278],[120.3121,-5.2235],[120.3112,-5.217],[120.3025,-5.2071],[120.2962,-5.2034],[120.2838,-5.1836],[120.2812,-5.1756],[120.2778,-5.1715],[120.2773,-5.1604],[120.2742,-5.1492],[120.2709,-5.1425],[120.284,-5.1235],[120.2866,-5.1221],[120.2896,-5.1149],[120.2868,-5.1126]],[[120.4244,-5.0493],[120.423,-5.0444],[120.4199,-5.0431],[120.416,-5.0494],[120.4122,-5.0525],[120.4204,-5.0551],[120.4251,-5.0539],[120.4244,-5.0493]]]}},{"type":"Feature","properties":{"mhid":"1332:416","alt_name":"KABUPATEN MAROS","latitude":-5.05,"longitude":119.71667,"sample_value":458},"geometry":{"type":"MultiLineString","coordinates":[[[119.5199,-4.8835],[119.5137,-4.8869],[119.5123,-4.8929],[119.5208,-4.9051],[119.5237,-4.9154],[119.5243,-4.924],[119.5175,-4.9429],[119.5142,-4.9468],[119.5096,-4.9473],[119.5027,-4.9563],[119.4975,-4.9694],[119.4899,-4.9835],[119.487,-4.9833],[119.4791,-4.9896],[119.4769,-4.994],[119.4772,-5.0025],[119.4761,-5.014],[119.4735,-5.0161],[119.4709,-5.0234],[119.4664,-5.026],[119.4677,-5.0343],[119.4759,-5.0331],[119.4783,-5.0464],[119.478,-5.059]]]}},{"type":"Feature","properties":{"mhid":"1332:417","alt_name":"KABUPATEN PANGKAJENE DAN KEPULAUAN","latitude":-4.7827,"longitude":119.5506,"sample_value":531},"geometry":{"type":"MultiLineString","coordinates":[[[117.4451,-7.575],[117.4427,-7.5751],[117.4409,-7.5824],[117.4446,-7.5871],[117.4502,-7.5896],[117.454,-7.5885],[117.4532,-7.5833],[117.4451,-7.575]],[[117.2882,-7.5251],[117.284,-7.5259],[117.2796,-7.5313],[117.2797,-7.5342],[117.2842,-7.5389],[117.2983,-7.5384],[117.3125,-7.5386],[117.3207,-7.5372],[117.3265,-7.5349],[117.3332,-7.528],[117.3216,-7.5293],[117.3062,-7.5287],[117.2955,-7.5258],[117.2882,-7.5251]],[[117.4434,-7.5121],[117.4377,-7.5127],[117.4243,-7.5178],[117.4301,-7.5378],[117.4378,-7.5343],[117.4443,-7.5137],[117.4434,-7.5121]],[[117.1844,-7.4926],[117.1805,-7.4934],[117.1762,-7.4992],[117.1752,-7.5061],[117.1779,-7.5084],[117.1838,-7.5046],[117.1972,-7.5016],[117.1844,-7.4926]],[[117.4812,-7.4808],[117.478,-7.4809],[117.475,-7.4855],[117.4761,-7.4936],[117.4805,-7.4977],[117.4856,-7.4951],[117.4856,-7.4849],[117.4812,-7.4808]],[[117.5928,-7.4049],[117.5926,-7.4017],[117.586,-7.3984],[117.5863,-7.403],[117.5928,-7.4049]],[[117.8119,-7.3964],[117.8106,-7.3939],[117.8037,-7.3921],[117.8022,-7.3997],[117.8074,-7.4035],[117.8174,-7.4037],[117.8119,-7.3964]],[[117.7487,-7.3627],[117.7428,-7.3657],[117.7432,-7.3743],[117.749,-7.3739],[117.7505,-7.3713],[117.7506,-7.364],[117.7487,-7.3627]],[[118.1113,-7.2973],[118.1035,-7.306],[118.1112,-7.3091],[118.1139,-7.3058],[118.1137,-7.3008],[118.1113,-7.2973]],[[118.4056,-7.1775],[118.3948,-7.183],[118.3958,-7.1863],[118.3866,-7.1911],[118.3817,-7.1913],[118.3795,-7.1944],[118.3735,-7.1957],[118.3688,-7.1942],[118.3685,-7.2002],[118.38,-7.1958],[118.3845,-7.1975],[118.3888,-7.1944],[118.3979,-7.192],[118.4047,-7.1845],[118.4084,-7.1826],[118.4056,-7.1775]],[[118.1776,-7.0731],[118.1745,-7.0732],[118.1674,-7.0833],[118.1591,-7.0908],[118.1653,-7.0912],[118.169,-7.0897],[118.1729,-7.0799],[118.1776,-7.0731]],[[118.6543,-7.0709],[118.6533,-7.0629],[118.6487,-7.0645],[118.6484,-7.0688],[118.6543,-7.0709]],[[117.9945,-7.068],[117.9983,-7.0637],[117.9951,-7.0613],[117.9901,-7.0669],[117.9945,-7.068]],[[118.9058,-6.8876],[118.9111,-6.8847],[118.9099,-6.8819],[118.9037,-6.8838],[118.9058,-6.8876]],[[119.1348,-6.8596],[119.1293,-6.8658],[119.1295,-6.8681],[119.1355,-6.8747],[119.1388,-6.8631],[119.1348,-6.8596]],[[118.9644,-6.8649],[118.9669,-6.8634],[118.9686,-6.8568],[118.9658,-6.8531],[118.9616,-6.8553],[118.9621,-6.8624],[118.9644,-6.8649]],[[119.1143,-6.8368],[119.1089,-6.8379],[119.0995,-6.8458],[119.0966,-6.852],[119.0946,-6.8612],[119.0968,-6.8676],[119.1012,-6.869],[119.1049,-6.8653],[119.1152,-6.8599],[119.1222,-6.859],[119.1222,-6.8476],[119.1249,-6.8437],[119.1196,-6.8403],[119.1125,-6.844],[119.1109,-6.8386],[119.1143,-6.8368]],[[119.1946,-6.8181],[119.1876,-6.8243],[119.1857,-6.8184],[119.1801,-6.8242],[119.1749,-6.8255],[119.1686,-6.8366],[119.1691,-6.8427],[119.1745,-6.8415],[119.1781,-6.8345],[119.182,-6.8301],[119.1921,-6.822],[119.1946,-6.8181]],[[118.2782,-6.683],[118.2768,-6.6834],[118.2735,-6.6934],[118.2762,-6.6945],[118.2782,-6.683]],[[118.9308,-6.6454],[118.9268,-6.6486],[118.9274,-6.6548],[118.931,-6.6573],[118.9328,-6.6503],[118.9308,-6.6454]],[[118.8877,-6.6053],[118.8834,-6.6054],[118.8851,-6.6119],[118.889,-6.6103],[118.8877,-6.6053]],[[118.8685,-6.6001],[118.8685,-6.5939],[118.8602,-6.587],[118.8549,-6.5918],[118.8576,-6.5949],[118.8685,-6.6001]],[[118.8345,-6.57],[118.8304,-6.5687],[118.825,-6.5713],[118.8266,-6.5756],[118.8319,-6.5808],[118.8391,-6.5838],[118.8421,-6.5785],[118.8404,-6.5738],[118.8345,-6.57]],[[118.4526,-5.4999],[118.4496,-5.5047],[118.4525,-5.5116],[118.4566,-5.5118],[118.4571,-5.5028],[118.4526,-5.4999]],[[118.6313,-5.487],[118.6283,-5.4888],[118.6273,-5.4941],[118.6303,-5.5023],[118.633,-5.502],[118.6344,-5.489],[118.6313,-5.487]],[[118.431,-5.414],[118.4361,-5.4094],[118.4344,-5.4001],[118.4284,-5.3948],[118.4243,-5.399],[118.4259,-5.4039],[118.4251,-5.4134],[118.431,-5.414]],[[117.9278,-5.3529],[117.9217,-5.3529],[117.9205,-5.3561],[117.9223,-5.3616],[117.924,-5.3726],[117.9274,-5.3893],[117.9308,-5.3965],[117.9365,-5.4043],[117.9447,-5.4078],[117.9505,-5.4057],[117.9536,-5.3931],[117.9506,-5.3824],[117.9352,-5.3607],[117.934,-5.3569],[117.9278,-5.3529]],[[117.8902,-5.2955],[117.8936,-5.2826],[117.8954,-5.2706],[117.8986,-5.2614],[117.8938,-5.2459],[117.8929,-5.2381],[117.8881,-5.2343],[117.8866,-5.2384],[117.8857,-5.2521],[117.8907,-5.2632],[117.8889,-5.2746],[117.8879,-5.2915],[117.8902,-5.2955]],[[117.6555,-5.2221],[117.6652,-5.2125],[117.6809,-5.1994],[117.6816,-5.1964],[117.6783,-5.1903],[117.6695,-5.1806],[117.6632,-5.1762],[117.6596,-5.1758],[117.6541,-5.184],[117.6541,-5.1906],[117.6605,-5.2017],[117.6593,-5.2089],[117.6551,-5.2176],[117.6555,-5.2221]],[[117.8834,-5.1679],[117.8793,-5.17],[117.8777,-5.1736],[117.8792,-5.1778],[117.8849,-5.1788],[117.8903,-5.1716],[117.8834,-5.1679]],[[118.1459,-5.1141],[118.1411,-5.1282],[118.1487,-5.1302],[118.155,-5.1346],[118.155,-5.1291],[118.1492,-5.1159],[118.1459,-5.1141]],[[117.0508,-5.0906],[117.0469,-5.0892],[117.0461,-5.0967],[117.054,-5.1016],[117.0585,-5.1015],[117.0621,-5.0981],[117.0524,-5.0902],[117.0508,-5.0906]],[[117.9158,-5.0487],[117.9137,-5.0559],[117.9164,-5.0568],[117.9211,-5.0519],[117.9158,-5.0487]],[[117.0393,-5.0534],[117.0422,-5.0497],[117.0423,-5.0425],[117.0391,-5.0414],[117.0393,-5.0534]],[[117.0716,-5.0177],[117.0684,-5.0218],[117.073,-5.025],[117.0753,-5.019],[117.0716,-5.0177]],[[119.4754,-4.7015],[119.469,-4.7047],[119.4688,-4.7085],[119.4732,-4.7116],[119.4771,-4.7066],[119.4754,-4.7015]],[[119.4503,-4.7081],[119.4599,-4.6969],[119.4571,-4.6967],[119.4481,-4.7042],[119.4503,-4.7081]],[[119.5944,-4.5565],[119.5961,-4.5611],[119.5939,-4.5707],[119.5872,-4.5869],[119.5796,-4.5966],[119.5726,-4.6023],[119.5627,-4.6226],[119.5587,-4.6288],[119.5532,-4.6337],[119.5511,-4.6448],[119.5468,-4.6526],[119.5411,-4.6597],[119.525,-4.6763],[119.5214,-4.6903],[119.5181,-4.6953],[119.516,-4.7058],[119.5179,-4.7087],[119.5172,-4.7156],[119.5099,-4.7228],[119.5009,-4.7245],[119.4968,-4.7308],[119.4923,-4.7329],[119.4896,-4.7413],[119.4823,-4.7515],[119.4837,-4.7563],[119.4882,-4.7596],[119.4915,-4.7656],[119.493,-4.7724],[119.4927,-4.7787],[119.4948,-4.7937],[119.4933,-4.7997],[119.498,-4.8073],[119.4979,-4.817],[119.5015,-4.8244],[119.4978,-4.8311],[119.5013,-4.843],[119.5002,-4.8479],[119.5049,-4.8554],[119.5057,-4.8648],[119.5092,-4.8709],[119.5129,-4.8726],[119.5199,-4.8814],[119.5199,-4.8835]]]}},{"type":"Feature","properties":{"mhid":"1332:418","alt_name":"KABUPATEN BARRU","latitude":-4.43333,"longitude":119.68333,"sample_value":141},"geometry":{"type":"MultiLineString","coordinates":[[[119.6059,-4.3404],[119.6037,-4.3375],[119.5994,-4.3381],[119.598,-4.3436],[119.5998,-4.3462],[119.5975,-4.3568],[119.6002,-4.3572],[119.6032,-4.349],[119.602,-4.3423],[119.6059,-4.3404]],[[119.6203,-4.0671],[119.6185,-4.0715],[119.6097,-4.0772],[119.606,-4.0844],[119.6085,-4.0869],[119.6154,-4.0868],[119.6164,-4.0914],[119.613,-4.0955],[119.6082,-4.0953],[119.6064,-4.1028],[119.6076,-4.107],[119.6163,-4.1074],[119.6197,-4.1137],[119.6205,-4.1316],[119.6177,-4.139],[119.614,-4.1435],[119.6149,-4.146],[119.622,-4.152],[119.6359,-4.1608],[119.6383,-4.1689],[119.6382,-4.1741],[119.6359,-4.1799],[119.6254,-4.1816],[119.6286,-4.1924],[119.626,-4.1991],[119.6194,-4.2048],[119.6185,-4.2104],[119.6088,-4.2164],[119.6098,-4.2205],[119.6168,-4.2179],[119.6197,-4.2263],[119.6262,-4.2292],[119.6259,-4.2347],[119.623,-4.2382],[119.6146,-4.2398],[119.6071,-4.2359],[119.6038,-4.238],[119.5984,-4.2351],[119.5954,-4.2384],[119.5962,-4.2481],[119.5993,-4.2516],[119.6078,-4.2553],[119.6106,-4.2582],[119.6107,-4.2626],[119.6067,-4.2654],[119.6156,-4.2768],[119.6199,-4.2807],[119.6252,-4.2911],[119.6268,-4.297],[119.6313,-4.2956],[119.635,-4.3009],[119.635,-4.3057],[119.6316,-4.3077],[119.6319,-4.3117],[119.6358,-4.3151],[119.6364,-4.3193],[119.6303,-4.3311],[119.6214,-4.3376],[119.6224,-4.3484],[119.6291,-4.3486],[119.6286,-4.3534],[119.625,-4.3556],[119.6269,-4.3624],[119.6162,-4.371],[119.6149,-4.3773],[119.6092,-4.3841],[119.6086,-4.3892],[119.6058,-4.3942],[119.6048,-4.4011],[119.6014,-4.4097],[119.597,-4.4163],[119.597,-4.4218],[119.6009,-4.4259],[119.5971,-4.441],[119.5992,-4.4439],[119.5966,-4.451],[119.6,-4.463],[119.5997,-4.4744],[119.5915,-4.4999],[119.5885,-4.5121],[119.5812,-4.529],[119.5858,-4.5345],[119.5907,-4.5429],[119.592,-4.5526],[119.5944,-4.5565]]]}},{"type":"Feature","properties":{"mhid":"1332:419","alt_name":"KABUPATEN BONE","latitude":-4.7,"longitude":120.13333,"sample_value":80},"geometry":{"type":"MultiLineString","coordinates":[[[120.4218,-4.5874],[120.4224,-4.58],[120.4184,-4.5795],[120.4157,-4.5839],[120.4173,-4.5878],[120.4218,-4.5874]],[[120.4816,-4.5361],[120.4815,-4.533],[120.4754,-4.5309],[120.4793,-4.5427],[120.4816,-4.5361]],[[120.4581,-4.5424],[120.4617,-4.5403],[120.4629,-4.5347],[120.462,-4.5298],[120.4555,-4.529],[120.447,-4.5371],[120.4487,-4.5421],[120.4581,-4.5424]],[[120.4286,-4.5007],[120.4228,-4.5012],[120.422,-4.509],[120.4233,-4.5182],[120.4301,-4.5186],[120.4396,-4.5081],[120.4484,-4.506],[120.4416,-4.5009],[120.4286,-4.5007]],[[120.2868,-5.1126],[120.2889,-5.0979],[120.2879,-5.0918],[120.2916,-5.0792],[120.2899,-5.071],[120.2906,-5.0645],[120.2976,-5.0577],[120.3003,-5.0492],[120.2983,-5.0444],[120.2893,-5.0439],[120.2928,-5.039],[120.2916,-5.0336],[120.294,-5.0312],[120.2978,-5.0207],[120.2973,-5.0147],[120.3009,-5.0106],[120.3043,-5.0029],[120.3085,-5.0009],[120.3034,-4.9902],[120.305,-4.9861],[120.3005,-4.9809],[120.3009,-4.973],[120.3055,-4.972],[120.3052,-4.9677],[120.298,-4.9566],[120.2969,-4.949],[120.2981,-4.9445],[120.3061,-4.9447],[120.3105,-4.9392],[120.307,-4.9305],[120.3024,-4.9309],[120.299,-4.9284],[120.2952,-4.9214],[120.2981,-4.9142],[120.3019,-4.9123],[120.3082,-4.9143],[120.3136,-4.9095],[120.3119,-4.9004],[120.3069,-4.9],[120.3074,-4.8944],[120.3031,-4.8843],[120.3036,-4.88],[120.3087,-4.8661],[120.3181,-4.8558],[120.3204,-4.8517],[120.337,-4.8417],[120.344,-4.839],[120.3555,-4.8401],[120.3608,-4.8441],[120.3658,-4.8452],[120.3741,-4.8431],[120.3833,-4.8379],[120.3826,-4.8294],[120.3801,-4.8231],[120.3821,-4.8214],[120.3813,-4.8121],[120.3795,-4.8067],[120.3843,-4.8024],[120.3869,-4.7921],[120.3839,-4.7847],[120.3839,-4.7777],[120.3856,-4.7679],[120.3939,-4.7561],[120.3949,-4.746],[120.3985,-4.7403],[120.4012,-4.728],[120.3983,-4.7185],[120.3987,-4.7141],[120.402,-4.7059],[120.4092,-4.6952],[120.4145,-4.6903],[120.4252,-4.6839],[120.4405,-4.6689],[120.4483,-4.659],[120.4514,-4.657],[120.4498,-4.6515],[120.4422,-4.6486],[120.4405,-4.6351],[120.4362,-4.6268],[120.4255,-4.6193],[120.419,-4.6179],[120.4084,-4.6125],[120.3996,-4.6061],[120.3971,-4.5972],[120.3926,-4.5853],[120.3875,-4.5676],[120.3838,-4.5613],[120.3839,-4.5548],[120.3867,-4.5502],[120.3845,-4.5331],[120.3848,-4.5277],[120.3805,-4.5228],[120.3776,-4.5115],[120.3822,-4.504],[120.3829,-4.4991],[120.3879,-4.4902],[120.3929,-4.4876],[120.3987,-4.4913],[120.4018,-4.4818],[120.3969,-4.469],[120.3859,-4.4675],[120.3835,-4.4623],[120.3779,-4.4603],[120.3721,-4.452],[120.3716,-4.4461],[120.3678,-4.4458],[120.3496,-4.4286],[120.3469,-4.4183],[120.3481,-4.4111],[120.3475,-4.4039],[120.3528,-4.4023],[120.3584,-4.3948],[120.3636,-4.3818],[120.3605,-4.3746],[120.363,-4.3694],[120.3693,-4.3736],[120.3774,-4.3663],[120.3814,-4.359],[120.3901,-4.3477],[120.3931,-4.3379],[120.3922,-4.3247],[120.3877,-4.3133],[120.3845,-4.3113],[120.378,-4.3037],[120.3727,-4.2995],[120.367,-4.2997],[120.365,-4.294],[120.3659,-4.2629],[120.3678,-4.2558],[120.3712,-4.25],[120.3727,-4.2334],[120.3667,-4.2228]]]}},{"type":"Feature","properties":{"mhid":"1332:421","alt_name":"KABUPATEN WAJO","latitude":-4,"longitude":120.16667,"sample_value":994},"geometry":{"type":"MultiLineString","coordinates":[[[120.3667,-4.2228],[120.3672,-4.2177],[120.375,-4.2047],[120.3764,-4.198],[120.3767,-4.1894],[120.381,-4.1797],[120.3804,-4.1686],[120.3739,-4.1532],[120.3728,-4.144],[120.3629,-4.1414],[120.3539,-4.1333],[120.3476,-4.1322],[120.3449,-4.1284],[120.3455,-4.1239],[120.3431,-4.1163],[120.3389,-4.1093],[120.3332,-4.1103],[120.3304,-4.1036],[120.332,-4.0958],[120.3377,-4.0928],[120.3489,-4.0741],[120.3484,-4.0697],[120.3559,-4.0649],[120.3557,-4.0545],[120.3576,-4.0491],[120.3539,-4.0411],[120.3553,-4.0364],[120.3539,-4.0321],[120.3569,-4.0257],[120.361,-4.0215],[120.3589,-4.0182],[120.3526,-4.0146],[120.3489,-4.01],[120.3463,-4.0012],[120.3422,-3.9962],[120.3504,-3.9863],[120.3531,-3.9732],[120.3446,-3.9596],[120.3411,-3.9522],[120.3362,-3.9351],[120.3399,-3.9241],[120.3446,-3.9011],[120.3452,-3.891],[120.3567,-3.8661],[120.3625,-3.8483],[120.3652,-3.8497],[120.3741,-3.8397],[120.3776,-3.8292],[120.3835,-3.8183],[120.3898,-3.8041],[120.3944,-3.7969],[120.4003,-3.7907],[120.4011,-3.7861],[120.4098,-3.7749],[120.4317,-3.7548],[120.4386,-3.7469],[120.4408,-3.7424],[120.4409,-3.728],[120.4385,-3.7253],[120.4384,-3.7155],[120.4363,-3.7057],[120.4381,-3.6914],[120.4369,-3.6868],[120.4297,-3.6827],[120.4177,-3.6785],[120.4163,-3.6729],[120.412,-3.6636]]]}},{"type":"Feature","properties":{"mhid":"1332:423","alt_name":"KABUPATEN PINRANG","latitude":-3.61667,"longitude":119.6,"sample_value":811},"geometry":{"type":"MultiLineString","coordinates":[[[119.4741,-3.5029],[119.4873,-3.5148],[119.4963,-3.5258],[119.5,-3.532],[119.5046,-3.5366],[119.5106,-3.549],[119.5132,-3.5578],[119.5133,-3.5639],[119.5109,-3.57],[119.5122,-3.5813],[119.511,-3.5953],[119.5053,-3.5994],[119.4971,-3.6003],[119.4938,-3.6044],[119.4871,-3.6187],[119.4819,-3.6313],[119.475,-3.6336],[119.4732,-3.6361],[119.4581,-3.6418],[119.4564,-3.653],[119.4566,-3.6588],[119.4524,-3.6701],[119.4503,-3.6805],[119.4543,-3.6876],[119.4499,-3.6924],[119.4532,-3.7102],[119.4524,-3.7137],[119.4599,-3.7263],[119.4807,-3.7495],[119.4906,-3.773],[119.4919,-3.7784],[119.4969,-3.7903],[119.5025,-3.7996],[119.5073,-3.8113],[119.5114,-3.8236],[119.5288,-3.878],[119.535,-3.8934],[119.5489,-3.9179],[119.5548,-3.9227],[119.5587,-3.9319],[119.5624,-3.9359],[119.5723,-3.9516],[119.5793,-3.987],[119.5792,-3.995],[119.5804,-4.0061],[119.5822,-4.0099],[119.5811,-4.0157],[119.5826,-4.0255],[119.5859,-4.0378],[119.5961,-4.0435],[119.5993,-4.0419],[119.599,-4.0377],[119.5933,-4.0334],[119.5931,-4.0245],[119.5947,-4.0214],[119.6009,-4.0187],[119.6027,-4.0137],[119.6144,-4.0042],[119.5943,-4.0057],[119.5916,-4.0027],[119.5892,-3.9955],[119.5867,-3.9786],[119.5873,-3.9742],[119.592,-3.9713],[119.6083,-3.9775],[119.6093,-3.9824],[119.6129,-3.9835],[119.6181,-3.978],[119.6302,-3.9685],[119.6356,-3.9754],[119.6357,-3.9824]]]}},{"type":"Feature","properties":{"mhid":"1332:425","alt_name":"KABUPATEN LUWU","latitude":-2.5577,"longitude":121.3242,"sample_value":903},"geometry":{"type":"MultiLineString","coordinates":[[[120.412,-3.6636],[120.4152,-3.6598],[120.4115,-3.6526],[120.4117,-3.6412],[120.4134,-3.6367],[120.4178,-3.6322],[120.4182,-3.6265],[120.4156,-3.6198],[120.4189,-3.6133],[120.4197,-3.604],[120.4186,-3.5857],[120.4169,-3.5779],[120.4165,-3.5696],[120.4129,-3.5644],[120.4055,-3.561],[120.4051,-3.5556],[120.4007,-3.5511],[120.3998,-3.5343],[120.4021,-3.5315],[120.3966,-3.5278],[120.3922,-3.5271],[120.3868,-3.5217],[120.3872,-3.517],[120.3853,-3.5122],[120.3812,-3.5087],[120.3796,-3.4983],[120.3853,-3.4955],[120.3914,-3.4881],[120.3894,-3.4807],[120.3909,-3.4757],[120.3894,-3.4723],[120.391,-3.4483],[120.3894,-3.4456],[120.3958,-3.4414],[120.4044,-3.432],[120.4031,-3.4195],[120.4036,-3.4143],[120.403,-3.3983],[120.4014,-3.3941],[120.4021,-3.388],[120.3976,-3.3843],[120.4003,-3.3754],[120.399,-3.3669],[120.4018,-3.3547],[120.4013,-3.3489],[120.4043,-3.3417],[120.4038,-3.3359],[120.3977,-3.3213],[120.3981,-3.3118],[120.4066,-3.3057],[120.4063,-3.2976],[120.4017,-3.2941],[120.3989,-3.2888],[120.4037,-3.28],[120.4083,-3.2758],[120.4134,-3.275],[120.4193,-3.2702],[120.4209,-3.2651],[120.416,-3.2572],[120.4182,-3.2498],[120.4163,-3.2486],[120.4113,-3.2552],[120.4112,-3.2587],[120.4057,-3.2608],[120.3951,-3.2568],[120.3894,-3.2508],[120.3886,-3.2446],[120.3858,-3.2408],[120.3879,-3.229],[120.3825,-3.2236],[120.3811,-3.219],[120.3834,-3.2119],[120.3793,-3.2024],[120.3722,-3.1992],[120.3679,-3.2],[120.3656,-3.1968],[120.355,-3.1963],[120.3387,-3.1873],[120.3281,-3.1846],[120.3262,-3.1856],[120.3199,-3.1816],[120.3091,-3.1777],[120.304,-3.1779],[120.2987,-3.1754],[120.29,-3.168],[120.2784,-3.1669],[120.2746,-3.1655],[120.2716,-3.1682],[120.2656,-3.1665],[120.2556,-3.16],[120.2527,-3.1518],[120.2517,-3.1424],[120.2591,-3.1309],[120.2603,-3.1258],[120.2594,-3.11],[120.2626,-3.0878],[120.2625,-3.0825],[120.2586,-3.0688],[120.2589,-3.0656],[120.2543,-3.059],[120.2528,-3.0513],[120.248,-3.0493],[120.2396,-3.0501],[120.233,-3.0476],[120.2295,-3.0433]],[[120.2298,-2.9526],[120.2384,-2.9475],[120.2516,-2.9437],[120.2555,-2.9459],[120.263,-2.9398],[120.266,-2.9338],[120.2713,-2.934],[120.2859,-2.9212],[120.2879,-2.9158],[120.2875,-2.9105]]]}},{"type":"Feature","properties":{"mhid":"1332:427","alt_name":"KABUPATEN LUWU UTARA","latitude":-2.6,"longitude":120.25,"sample_value":707},"geometry":{"type":"MultiLineString","coordinates":[[[120.2875,-2.9105],[120.2933,-2.9173],[120.2964,-2.9167],[120.2997,-2.9092],[120.3029,-2.9065],[120.3077,-2.9088],[120.3244,-2.9025],[120.3247,-2.9],[120.3313,-2.896],[120.3351,-2.8865],[120.3433,-2.8798],[120.347,-2.8737],[120.3464,-2.8702],[120.3574,-2.8642],[120.3623,-2.8661],[120.3712,-2.8624],[120.376,-2.8616],[120.3902,-2.8535],[120.3968,-2.8514],[120.3997,-2.8476],[120.4044,-2.8464],[120.4094,-2.8428],[120.4168,-2.8431],[120.4254,-2.8368],[120.4277,-2.8374],[120.4315,-2.8321],[120.4365,-2.8319],[120.4443,-2.8285],[120.4554,-2.8219],[120.4556,-2.8199],[120.462,-2.8136],[120.4673,-2.8116],[120.4668,-2.8081],[120.4723,-2.8069],[120.4781,-2.8025],[120.4809,-2.7965],[120.4838,-2.7958],[120.4855,-2.7906],[120.4894,-2.7886],[120.4882,-2.7832],[120.4921,-2.7802],[120.4987,-2.7787],[120.5021,-2.7726],[120.5089,-2.7738],[120.518,-2.7697],[120.5236,-2.761],[120.5275,-2.7595],[120.5327,-2.7537],[120.5363,-2.7529],[120.5407,-2.7469],[120.5407,-2.7388],[120.5577,-2.7298],[120.5642,-2.7255],[120.5641,-2.721],[120.571,-2.7148],[120.5695,-2.7083],[120.5732,-2.7052],[120.5746,-2.699],[120.5703,-2.6951],[120.57,-2.6897],[120.5718,-2.6859],[120.5776,-2.6865],[120.5831,-2.6845],[120.5873,-2.6856],[120.5927,-2.6842],[120.5998,-2.6796],[120.6082,-2.6785],[120.6112,-2.6814],[120.6155,-2.6811],[120.6236,-2.6837],[120.6335,-2.6821],[120.65,-2.6682],[120.6558,-2.6665]]]}},{"type":"Feature","properties":{"mhid":"1332:428","alt_name":"KABUPATEN LUWU TIMUR","latitude":-2.50957,"longitude":120.3978,"sample_value":48},"geometry":{"type":"MultiLineString","coordinates":[[[120.6558,-2.6665],[120.6621,-2.6626],[120.6669,-2.6521],[120.6727,-2.6491],[120.6727,-2.6458],[120.6811,-2.6457],[120.6859,-2.643],[120.6915,-2.6435],[120.7124,-2.6421],[120.7186,-2.6373],[120.7289,-2.6358],[120.7398,-2.6359],[120.7461,-2.6371],[120.7474,-2.6303],[120.7506,-2.6224],[120.7554,-2.6201],[120.7726,-2.6194],[120.7824,-2.6272],[120.787,-2.6271],[120.7915,-2.6234],[120.7961,-2.624],[120.8017,-2.62],[120.8092,-2.6188],[120.8173,-2.6196],[120.8269,-2.6288],[120.8272,-2.6371],[120.8373,-2.6409],[120.8407,-2.6501],[120.8547,-2.6566],[120.863,-2.6569],[120.8673,-2.6547],[120.8677,-2.6456],[120.8746,-2.645],[120.8917,-2.642],[120.9009,-2.6482],[120.9051,-2.6558],[120.9067,-2.6624],[120.913,-2.6611],[120.9148,-2.6649],[120.9198,-2.6641],[120.9257,-2.6601],[120.9477,-2.6607],[120.9488,-2.665],[120.9545,-2.6686],[120.9571,-2.6675],[120.9623,-2.6702],[120.9705,-2.6706],[120.9735,-2.668],[120.9786,-2.6676],[120.9896,-2.6723],[120.9941,-2.6784],[120.9977,-2.6793],[121.0019,-2.6761],[121.0043,-2.6788],[121.0107,-2.6772],[121.0137,-2.6731],[121.0195,-2.6729],[121.0219,-2.6677],[121.0189,-2.6576],[121.0206,-2.6511],[121.0294,-2.654],[121.0312,-2.6598],[121.0431,-2.6562],[121.0446,-2.6543],[121.0544,-2.6584],[121.0488,-2.662],[121.0374,-2.6637],[121.0343,-2.6777],[121.037,-2.6943],[121.0501,-2.6981],[121.0568,-2.6933],[121.0629,-2.6935],[121.0688,-2.6977],[121.0794,-2.6988],[121.0846,-2.7043],[121.0875,-2.7152],[121.096,-2.7156],[121.0942,-2.7232],[121.085,-2.7329],[121.0861,-2.7404],[121.0827,-2.7444],[121.0766,-2.7461],[121.069,-2.7429],[121.0628,-2.7487],[121.0647,-2.7518],[121.0651,-2.7644],[121.0602,-2.7706],[121.0491,-2.773],[121.0482,-2.7777],[121.0365,-2.7769],[121.0373,-2.7719],[121.0317,-2.773],[121.0299,-2.7811],[121.0262,-2.7834],[121.0262,-2.789],[121.0206,-2.7924],[121.0216,-2.8039],[121.0172,-2.8086],[121.0132,-2.8048],[121.0077,-2.804],[121.0067,-2.8082],[121.0032,-2.8096],[121.0035,-2.814],[121.0007,-2.8166],[120.9937,-2.8185],[120.9908,-2.8159],[120.985,-2.8162],[120.9778,-2.8062],[120.9747,-2.8087],[120.9784,-2.8231],[120.9822,-2.8223],[120.9883,-2.8313]]]}},{"type":"Feature","properties":{"mhid":"1332:430","alt_name":"KOTA MAKASSAR","latitude":-5.15,"longitude":119.45,"sample_value":369},"geometry":{"type":"MultiLineString","coordinates":[[[119.2879,-5.1026],[119.2836,-5.1065],[119.2861,-5.1103],[119.2895,-5.1054],[119.2879,-5.1026]],[[119.4031,-5.0868],[119.4006,-5.1003],[119.4042,-5.1016],[119.4059,-5.0872],[119.4031,-5.0868]],[[119.318,-5.0894],[119.3223,-5.0796],[119.318,-5.0767],[119.3153,-5.0843],[119.318,-5.0894]],[[119.4102,-5.0776],[119.4061,-5.0768],[119.4045,-5.0833],[119.4119,-5.0811],[119.4102,-5.0776]],[[119.4048,-5.0751],[119.4091,-5.0702],[119.4052,-5.066],[119.4029,-5.0683],[119.4048,-5.0751]],[[119.478,-5.059],[119.4711,-5.0654],[119.466,-5.0774],[119.4627,-5.0815],[119.4483,-5.0865],[119.4498,-5.0896],[119.4496,-5.0964],[119.4537,-5.1005],[119.4479,-5.1027],[119.4427,-5.1021],[119.4338,-5.1052],[119.4308,-5.1043],[119.4256,-5.1068],[119.4219,-5.1115],[119.4135,-5.1119],[119.4091,-5.1137],[119.4065,-5.1256],[119.4017,-5.133],[119.4038,-5.134],[119.4077,-5.1452],[119.402,-5.1535],[119.3984,-5.1523],[119.3929,-5.1586],[119.3875,-5.1617],[119.3871,-5.1836],[119.3827,-5.1884],[119.3792,-5.1952],[119.3835,-5.2082],[119.3837,-5.2144]],[[119.4288,-5.0584],[119.4307,-5.0561],[119.4267,-5.0505],[119.4223,-5.0522],[119.4243,-5.0585],[119.4288,-5.0584]],[[119.3313,-5.0499],[119.332,-5.0462],[119.3291,-5.0416],[119.3239,-5.0417],[119.3237,-5.0475],[119.3258,-5.0548],[119.3303,-5.0547],[119.3313,-5.0499]],[[119.2766,-5.0321],[119.2744,-5.0365],[119.277,-5.0418],[119.2805,-5.0359],[119.2766,-5.0321]],[[119.3246,-5.0057],[119.3227,-5.0144],[119.3277,-5.0208],[119.3268,-5.009],[119.3246,-5.0057]]]}},{"type":"Feature","properties":{"mhid":"1332:431","alt_name":"KOTA PARE-PARE","latitude":-4.03333,"longitude":119.65,"sample_value":116},"geometry":{"type":"MultiLineString","coordinates":[[[119.6357,-3.9824],[119.6323,-3.997],[119.6303,-4.0018],[119.6219,-4.0061],[119.6199,-4.0148],[119.6242,-4.0251],[119.6259,-4.0383],[119.6231,-4.0476],[119.6172,-4.0525],[119.6224,-4.0572],[119.6231,-4.0609],[119.6203,-4.0671]]]}},{"type":"Feature","properties":{"mhid":"1332:432","alt_name":"KOTA PALOPO","latitude":-2.97841,"longitude":120.11078,"sample_value":519},"geometry":{"type":"MultiLineString","coordinates":[[[120.2295,-3.0433],[120.2257,-3.0267],[120.2224,-3.0207],[120.2236,-3.0174],[120.2224,-3.0102],[120.2174,-3.0013],[120.211,-2.9974],[120.2122,-2.9937],[120.2036,-2.9899],[120.1977,-2.9838],[120.1907,-2.9803],[120.1896,-2.9686],[120.1939,-2.9621],[120.199,-2.9608],[120.199,-2.9577],[120.207,-2.9571],[120.2113,-2.9547],[120.2146,-2.9567],[120.223,-2.9548],[120.2275,-2.9562],[120.2298,-2.9526]]]}},{"type":"Feature","properties":{"mhid":"1332:433","alt_name":"KABUPATEN BUTON","latitude":-5.31667,"longitude":122.58333,"sample_value":201},"geometry":{"type":"MultiLineString","coordinates":[[[122.6801,-6.1741],[122.6738,-6.1742],[122.673,-6.1772],[122.6765,-6.1812],[122.6761,-6.1877],[122.6791,-6.192],[122.6924,-6.2014],[122.6984,-6.2068],[122.7076,-6.2061],[122.7164,-6.2115],[122.7204,-6.2095],[122.7332,-6.2108],[122.7369,-6.2081],[122.7373,-6.203],[122.7277,-6.2015],[122.7216,-6.1994],[122.7172,-6.1951],[122.7099,-6.1911],[122.6998,-6.1804],[122.6945,-6.1775],[122.6848,-6.1771],[122.6801,-6.1741]],[[122.5107,-5.624],[122.5081,-5.6241],[122.5033,-5.6306],[122.506,-5.6369],[122.5059,-5.6463],[122.5022,-5.6495],[122.4947,-5.6514],[122.4946,-5.6551],[122.4892,-5.665],[122.481,-5.6729],[122.4767,-5.6731],[122.4697,-5.6804],[122.4638,-5.6797],[122.457,-5.6851],[122.4572,-5.6924],[122.466,-5.6926],[122.4724,-5.6901],[122.4781,-5.6907],[122.4873,-5.6976],[122.4919,-5.6995],[122.5047,-5.6985],[122.5205,-5.6938],[122.5298,-5.6949],[122.5363,-5.6926],[122.5424,-5.688],[122.5506,-5.6777],[122.5544,-5.6711],[122.5569,-5.653],[122.5552,-5.6471],[122.5435,-5.627],[122.5361,-5.6304],[122.5216,-5.6283],[122.5169,-5.6247],[122.5107,-5.624]],[[122.5132,-5.5885],[122.5039,-5.5925],[122.5008,-5.5962],[122.5041,-5.6018],[122.5098,-5.6019],[122.5142,-5.5953],[122.5132,-5.5885]],[[122.5246,-5.5006],[122.5204,-5.4998],[122.5018,-5.5071],[122.4868,-5.5122],[122.4826,-5.5144],[122.4777,-5.5224],[122.4755,-5.5292],[122.4716,-5.5307],[122.47,-5.5378],[122.4735,-5.5478],[122.4822,-5.5548],[122.4867,-5.5616],[122.5013,-5.5633],[122.506,-5.5616],[122.5089,-5.5572],[122.5084,-5.5515],[122.5117,-5.5404],[122.5097,-5.5364],[122.5116,-5.5326],[122.5107,-5.5253],[122.5181,-5.5167],[122.5205,-5.507],[122.5246,-5.5006]],[[122.0529,-5.4913],[122.0467,-5.4906],[122.0403,-5.4952],[122.0385,-5.4987],[122.0307,-5.5014],[122.0255,-5.5052],[122.0174,-5.507],[122.0127,-5.5132],[121.9935,-5.5221],[122.0013,-5.5231],[122.0093,-5.5218],[122.017,-5.5189],[122.0271,-5.5194],[122.0422,-5.5093],[122.0519,-5.5037],[122.058,-5.4987],[122.0574,-5.4926],[122.0529,-5.4913]],[[122.076,-5.4734],[122.0732,-5.4771],[122.0753,-5.4812],[122.0706,-5.4873],[122.0766,-5.4871],[122.0818,-5.4933],[122.0855,-5.4941],[122.092,-5.4855],[122.087,-5.4741],[122.076,-5.4734]],[[121.9462,-5.4736],[121.9457,-5.4832],[121.9507,-5.484],[121.9505,-5.4893],[121.9482,-5.4934],[121.9557,-5.4957],[121.9531,-5.4862],[121.9547,-5.4806],[121.9606,-5.4774],[121.969,-5.4774],[121.9712,-5.4758],[121.9786,-5.4766],[121.9893,-5.4728],[121.995,-5.4735],[121.9986,-5.4666],[122.0043,-5.4689],[122.0111,-5.4687],[122.0117,-5.4736],[122.0147,-5.4763],[122.019,-5.4741],[122.0308,-5.4751],[122.0362,-5.4707],[122.0417,-5.4637],[122.0499,-5.4607],[122.0466,-5.4547],[122.0434,-5.4379],[122.046,-5.4272],[122.046,-5.422],[122.0438,-5.4169],[122.0484,-5.4144],[122.0446,-5.4013]],[[122.6848,-5.2942],[122.6906,-5.2917],[122.6986,-5.2839],[122.7021,-5.2737],[122.7019,-5.2666],[122.7031,-5.2578],[122.706,-5.2549],[122.7124,-5.2424],[122.7089,-5.2421],[122.7043,-5.2489],[122.7002,-5.2525],[122.6985,-5.2594],[122.6947,-5.2682],[122.69,-5.2756],[122.6854,-5.2801],[122.6802,-5.2896],[122.6805,-5.2939],[122.6848,-5.2942]],[[122.7261,-5.2111],[122.7384,-5.1968],[122.7359,-5.1892],[122.7303,-5.1957],[122.7215,-5.2033],[122.717,-5.2124],[122.7261,-5.2111]],[[122.3165,-5.142],[122.3105,-5.1441],[122.3067,-5.1492],[122.3099,-5.1522],[122.312,-5.1592],[122.3102,-5.165],[122.3151,-5.1715],[122.3156,-5.1866],[122.3087,-5.1947],[122.3037,-5.1972],[122.3031,-5.2012],[122.3057,-5.2048],[122.3057,-5.2174],[122.3137,-5.225],[122.3152,-5.229],[122.3154,-5.2371],[122.3085,-5.2489],[122.3063,-5.257],[122.3035,-5.2606],[122.2919,-5.2795],[122.2873,-5.2816],[122.2852,-5.2864],[122.2749,-5.2964],[122.2735,-5.3026],[122.2682,-5.3143],[122.2659,-5.3267],[122.2657,-5.3395],[122.2668,-5.3445],[122.2663,-5.3549],[122.2696,-5.3634],[122.2669,-5.37],[122.2668,-5.3754],[122.2694,-5.384],[122.2789,-5.3946],[122.2922,-5.3943],[122.2971,-5.3962],[122.3144,-5.396],[122.3262,-5.3967],[122.3415,-5.3935],[122.3483,-5.3931],[122.3651,-5.389],[122.3715,-5.3821],[122.376,-5.3799],[122.382,-5.3678],[122.3824,-5.3601],[122.3756,-5.3536],[122.3707,-5.3403],[122.3735,-5.3305],[122.3773,-5.3246],[122.3846,-5.3206],[122.3923,-5.3204],[122.397,-5.3133],[122.4029,-5.3169],[122.4123,-5.3151],[122.4273,-5.3139],[122.4348,-5.3183],[122.4258,-5.3194],[122.4187,-5.3224],[122.4073,-5.323],[122.3896,-5.3271],[122.3849,-5.3269],[122.3824,-5.3327],[122.3838,-5.3397],[122.3891,-5.3476],[122.3911,-5.3571],[122.3941,-5.3646],[122.3938,-5.3683],[122.3978,-5.3764],[122.3978,-5.3844],[122.4069,-5.3982],[122.4157,-5.4024],[122.4215,-5.4011],[122.4316,-5.4035],[122.433,-5.4018],[122.4418,-5.4035],[122.4459,-5.406],[122.4516,-5.4028],[122.4606,-5.404],[122.4654,-5.4024],[122.47,-5.3982],[122.4691,-5.3945],[122.4741,-5.3864],[122.4718,-5.3726],[122.4675,-5.3661],[122.4704,-5.361],[122.4734,-5.3664],[122.4788,-5.3663],[122.4818,-5.3719],[122.4858,-5.3701],[122.4867,-5.3625],[122.4931,-5.3507],[122.4972,-5.3484],[122.496,-5.3427],[122.4986,-5.3392],[122.4948,-5.33],[122.4859,-5.3233],[122.4799,-5.3124],[122.4808,-5.3016],[122.4865,-5.2964],[122.4928,-5.2954],[122.5016,-5.2897],[122.5107,-5.2885],[122.5128,-5.2843],[122.5195,-5.2793],[122.5231,-5.2788],[122.5241,-5.2732],[122.5281,-5.2675],[122.5378,-5.2606],[122.5408,-5.2676],[122.5379,-5.2728],[122.5346,-5.2736],[122.53,-5.2785],[122.5305,-5.2847],[122.527,-5.2878],[122.5241,-5.2949],[122.5241,-5.3034],[122.5206,-5.3109],[122.5232,-5.3166],[122.5328,-5.3206],[122.5388,-5.3253],[122.5381,-5.338],[122.5354,-5.3418],[122.5331,-5.3519],[122.5315,-5.3636],[122.5273,-5.3707],[122.5266,-5.3806],[122.5246,-5.3836],[122.5249,-5.395],[122.523,-5.3994],[122.5177,-5.4005],[122.5124,-5.4062],[122.5133,-5.4097],[122.5204,-5.4213],[122.5182,-5.4266],[122.5197,-5.4368],[122.5274,-5.44],[122.5446,-5.4412],[122.5517,-5.4349],[122.5559,-5.4218],[122.5665,-5.4114],[122.5758,-5.4166],[122.5875,-5.4296],[122.5909,-5.4356],[122.5958,-5.4338],[122.6003,-5.4274],[122.5958,-5.4248],[122.5941,-5.4165],[122.5976,-5.4156],[122.6031,-5.4035],[122.5965,-5.3975],[122.5932,-5.3908],[122.5931,-5.371],[122.5954,-5.3617],[122.6027,-5.3546],[122.6095,-5.3525],[122.6159,-5.3466],[122.6221,-5.3471],[122.6187,-5.3545],[122.6165,-5.3688],[122.6194,-5.3718],[122.6309,-5.3609],[122.6401,-5.3562],[122.6413,-5.3532],[122.6416,-5.3403],[122.6436,-5.3339],[122.6438,-5.3241],[122.642,-5.3081],[122.6449,-5.3026],[122.6465,-5.2954],[122.6454,-5.2819],[122.6413,-5.2677],[122.6379,-5.2624],[122.6237,-5.2504],[122.6168,-5.2492],[122.6013,-5.25],[122.5876,-5.2538],[122.5846,-5.2561],[122.5802,-5.2551],[122.5773,-5.2475],[122.585,-5.2407],[122.5912,-5.2312],[122.5989,-5.2261],[122.6033,-5.2249],[122.6173,-5.2177],[122.6231,-5.2107],[122.6263,-5.2038]],[[122.5736,-5.5382],[122.5783,-5.5485],[122.5794,-5.5687],[122.5819,-5.5751],[122.588,-5.5795],[122.5894,-5.5857],[122.5928,-5.5927],[122.5948,-5.603],[122.5998,-5.6123],[122.6038,-5.622],[122.6128,-5.6331],[122.6127,-5.6431],[122.6149,-5.6471],[122.6139,-5.6519],[122.6101,-5.6548],[122.6175,-5.6633],[122.6253,-5.6751],[122.6249,-5.6801],[122.6346,-5.6936],[122.6436,-5.6985],[122.6492,-5.6993],[122.6627,-5.6935],[122.6725,-5.6831],[122.6915,-5.6504],[122.6961,-5.6396],[122.7015,-5.6321],[122.7057,-5.6298],[122.7073,-5.6235],[122.712,-5.6194],[122.7202,-5.6214],[122.7227,-5.6288],[122.7198,-5.6398],[122.7158,-5.6487],[122.7122,-5.6594],[122.71,-5.6735],[122.7101,-5.6786],[122.7156,-5.6856],[122.7255,-5.6919],[122.7289,-5.6883],[122.7262,-5.6813],[122.7269,-5.6741],[122.7337,-5.6697],[122.7348,-5.6645],[122.7395,-5.6595],[122.7402,-5.652],[122.742,-5.6496],[122.7435,-5.6399],[122.7568,-5.6399],[122.76,-5.6425],[122.7617,-5.6507],[122.7597,-5.6559],[122.7672,-5.6615],[122.773,-5.664],[122.7721,-5.6771],[122.7643,-5.6836],[122.7581,-5.6872],[122.7535,-5.6934],[122.7555,-5.6969],[122.7779,-5.7038],[122.7864,-5.7025],[122.7929,-5.6989],[122.803,-5.696],[122.8101,-5.6745],[122.8144,-5.665],[122.8215,-5.6517],[122.8362,-5.6374],[122.8393,-5.6315],[122.8492,-5.6206],[122.8583,-5.6134],[122.8627,-5.6071],[122.8635,-5.6],[122.8728,-5.5872],[122.887,-5.5769],[122.8893,-5.5709],[122.8937,-5.5647],[122.8929,-5.5589],[122.8983,-5.552],[122.8964,-5.5438],[122.8981,-5.5252],[122.8973,-5.5178],[122.8927,-5.514],[122.8838,-5.5104],[122.8777,-5.5061],[122.8725,-5.5086],[122.8623,-5.5228],[122.8523,-5.5267],[122.8466,-5.5264],[122.8447,-5.5199],[122.8443,-5.5088],[122.8465,-5.5017],[122.8464,-5.4957],[122.8485,-5.4861],[122.8543,-5.4788],[122.8582,-5.471],[122.862,-5.4687],[122.8641,-5.4642],[122.8722,-5.455],[122.8826,-5.448],[122.8889,-5.4427],[122.8952,-5.4392],[122.9143,-5.4397],[122.9231,-5.437],[122.9299,-5.4314],[122.9393,-5.4258],[122.9429,-5.4223],[122.9466,-5.4141],[122.953,-5.4102],[122.9612,-5.4084],[122.9718,-5.3952],[122.9774,-5.3939],[122.9851,-5.3953],[122.9898,-5.3989],[122.9958,-5.3997],[123.0019,-5.4081],[123.0012,-5.4116],[123.0041,-5.4217],[123.0101,-5.4342],[123.0138,-5.4382],[123.0152,-5.4437],[123.0248,-5.4415],[123.0352,-5.4371],[123.0382,-5.4346],[123.0601,-5.4224],[123.0696,-5.4198],[123.0781,-5.416],[123.0827,-5.416],[123.1016,-5.4082],[123.1137,-5.4006],[123.1238,-5.4012],[123.1311,-5.3988],[123.1357,-5.3959],[123.1404,-5.3894],[123.1419,-5.3832],[123.1532,-5.3737],[123.1575,-5.3685],[123.1587,-5.3638],[123.1657,-5.3605],[123.1727,-5.3591],[123.1784,-5.3493],[123.1939,-5.3333],[123.1957,-5.3256],[123.2033,-5.3113],[123.2146,-5.3059],[123.2184,-5.301],[123.2243,-5.2796],[123.2214,-5.2733],[123.2154,-5.2703],[123.2085,-5.2701],[123.2023,-5.2724],[123.1981,-5.2606],[123.1941,-5.2574],[123.1893,-5.2567],[123.1848,-5.2494],[123.1756,-5.2462],[123.1619,-5.2492],[123.1507,-5.2474],[123.1473,-5.2407],[123.1419,-5.2394],[123.1403,-5.2321],[123.1325,-5.2233],[123.1286,-5.2169],[123.1175,-5.207],[123.1094,-5.2042],[123.1072,-5.2088],[123.1007,-5.2109],[123.1057,-5.202],[123.1068,-5.1946],[123.1043,-5.1889],[123.0981,-5.1836],[123.0948,-5.1836],[123.0889,-5.1765],[123.0826,-5.173],[123.0766,-5.1773],[123.0692,-5.1861],[123.0662,-5.1917],[123.0594,-5.192],[123.0585,-5.1839],[123.0635,-5.179],[123.0691,-5.1671],[123.0679,-5.1606],[123.0599,-5.1524],[123.0532,-5.151],[123.0499,-5.1471],[123.0396,-5.1381],[123.0332,-5.1355],[123.0282,-5.1358],[123.0197,-5.1406],[123.0084,-5.1448],[123.0046,-5.1476],[122.9936,-5.16],[122.9835,-5.173],[122.9788,-5.1806],[122.97,-5.1896],[122.9674,-5.1947],[122.9692,-5.199],[122.9632,-5.1994],[122.9606,-5.2053],[122.9553,-5.2084],[122.9558,-5.2161],[122.9523,-5.2172],[122.9441,-5.2161],[122.9439,-5.2129],[122.9366,-5.209],[122.9342,-5.205],[122.9336,-5.1971],[122.9311,-5.1886],[122.9239,-5.1817],[122.9207,-5.1825],[122.921,-5.1745],[122.9284,-5.1721],[122.9376,-5.1664],[122.9428,-5.1611],[122.9489,-5.1483]],[[122.7872,-5.0836],[122.7881,-5.0896],[122.7856,-5.099],[122.7892,-5.1038],[122.7865,-5.1088],[122.7751,-5.1096],[122.7711,-5.1121],[122.7689,-5.1203],[122.7666,-5.1221],[122.7619,-5.1335],[122.7443,-5.1606],[122.7375,-5.1704],[122.7404,-5.1795],[122.7446,-5.1782],[122.7495,-5.1733],[122.7524,-5.1733],[122.7541,-5.1792],[122.7583,-5.1876],[122.7485,-5.2072],[122.7472,-5.2199],[122.755,-5.229],[122.7609,-5.2251],[122.7638,-5.2173],[122.7713,-5.203],[122.7735,-5.2017],[122.7843,-5.1857],[122.7888,-5.1834],[122.7937,-5.1857],[122.7999,-5.1919],[122.8067,-5.2026],[122.8086,-5.2108],[122.8067,-5.2215],[122.7973,-5.2382],[122.7922,-5.2429],[122.7821,-5.2444],[122.7709,-5.2541],[122.7576,-5.2554],[122.753,-5.2535],[122.7475,-5.2458],[122.7524,-5.2417],[122.7488,-5.2382],[122.7424,-5.2435],[122.7374,-5.2408],[122.7326,-5.242],[122.7258,-5.2484],[122.7188,-5.26],[122.7155,-5.2606],[122.7089,-5.2716],[122.7084,-5.2778],[122.7056,-5.2857],[122.7007,-5.2915],[122.697,-5.3014],[122.6933,-5.3063],[122.6921,-5.3109],[122.6861,-5.321]]]}},{"type":"Feature","properties":{"mhid":"1332:434","alt_name":"KABUPATEN MUNA","latitude":-4.96667,"longitude":122.66667,"sample_value":352},"geometry":{"type":"MultiLineString","coordinates":[[[122.7906,-4.9649],[122.7866,-4.9654],[122.7861,-4.9743],[122.7884,-4.9787],[122.7946,-4.9773],[122.7947,-4.9664],[122.7906,-4.9649]],[[122.3551,-4.942],[122.3544,-4.9326],[122.3524,-4.9313],[122.343,-4.9312],[122.3414,-4.9327],[122.3402,-4.9434],[122.3513,-4.9446],[122.3551,-4.942]],[[122.8047,-4.936],[122.8004,-4.9306],[122.7967,-4.9321],[122.7928,-4.9391],[122.8048,-4.9379],[122.8047,-4.936]],[[122.333,-4.932],[122.3387,-4.9305],[122.3442,-4.9269],[122.3466,-4.9223],[122.3464,-4.9175],[122.3421,-4.9145],[122.3322,-4.9136],[122.3296,-4.9147],[122.3234,-4.9223],[122.3212,-4.9274],[122.3229,-4.9302],[122.333,-4.932]],[[122.1807,-4.9115],[122.1761,-4.9103],[122.1682,-4.9189],[122.1726,-4.9207],[122.1807,-4.9115]],[[122.817,-4.9034],[122.8122,-4.9051],[122.8136,-4.9152],[122.8172,-4.914],[122.817,-4.9034]],[[122.2656,-4.8706],[122.265,-4.867],[122.2583,-4.8708],[122.257,-4.8746],[122.2625,-4.8752],[122.2656,-4.8706]],[[122.2849,-4.8418],[122.2815,-4.8344],[122.2761,-4.8362],[122.2823,-4.8436],[122.2849,-4.8418]],[[122.3583,-4.7304],[122.3489,-4.7296],[122.3482,-4.7364],[122.3522,-4.7398],[122.3583,-4.7304]],[[122.4061,-4.7262],[122.3992,-4.7266],[122.3995,-4.7323],[122.4049,-4.7309],[122.4061,-4.7262]],[[122.4175,-4.7301],[122.4175,-4.7273],[122.4106,-4.7261],[122.4109,-4.7322],[122.4175,-4.7301]],[[122.4691,-4.7243],[122.4681,-4.7202],[122.4608,-4.7231],[122.4641,-4.7288],[122.4691,-4.7243]],[[122.4648,-4.7091],[122.4613,-4.7063],[122.4607,-4.6965],[122.453,-4.7011],[122.4508,-4.709],[122.454,-4.7129],[122.4641,-4.7108],[122.4648,-4.7091]],[[122.3838,-4.7022],[122.3883,-4.7013],[122.3895,-4.6956],[122.3812,-4.6971],[122.3838,-4.7022]],[[122.4163,-4.7066],[122.4234,-4.6995],[122.426,-4.6948],[122.4221,-4.6925],[122.4079,-4.7039],[122.4073,-4.7084],[122.4125,-4.7097],[122.4163,-4.7066]],[[122.3028,-4.7162],[122.3096,-4.7077],[122.316,-4.6973],[122.3177,-4.6912],[122.3157,-4.6876],[122.3078,-4.6852],[122.2964,-4.694],[122.2936,-4.6987],[122.2925,-4.7071],[122.296,-4.7132],[122.3028,-4.7162]],[[122.4117,-4.6927],[122.4175,-4.6879],[122.4168,-4.6848],[122.4107,-4.6857],[122.408,-4.6888],[122.4117,-4.6927]],[[122.3351,-4.683],[122.3276,-4.6882],[122.3282,-4.6945],[122.3342,-4.6891],[122.3351,-4.683]],[[122.4382,-4.6781],[122.4322,-4.6778],[122.4269,-4.6836],[122.4285,-4.6886],[122.4373,-4.6871],[122.4394,-4.6804],[122.4382,-4.6781]],[[122.4299,-4.6778],[122.4349,-4.6743],[122.4333,-4.6689],[122.4267,-4.6736],[122.4299,-4.6778]],[[122.3475,-4.7128],[122.3479,-4.71],[122.3551,-4.7025],[122.3642,-4.6965],[122.3676,-4.6895],[122.3709,-4.6863],[122.3792,-4.6742],[122.3807,-4.6682],[122.3771,-4.6643],[122.3698,-4.6647],[122.3645,-4.6683],[122.3472,-4.6849],[122.3307,-4.7074],[122.3238,-4.7226],[122.3298,-4.7253],[122.3392,-4.7171],[122.3475,-4.7128]],[[122.3045,-4.6595],[122.309,-4.6542],[122.309,-4.6458],[122.3046,-4.6487],[122.3028,-4.6534],[122.3045,-4.6595]],[[122.3519,-4.636],[122.345,-4.6368],[122.3443,-4.6424],[122.3402,-4.6501],[122.3413,-4.656],[122.3492,-4.6552],[122.3546,-4.6514],[122.3578,-4.6436],[122.3564,-4.6372],[122.3519,-4.636]],[[122.3367,-4.634],[122.3421,-4.6277],[122.3472,-4.6268],[122.3491,-4.6229],[122.344,-4.6219],[122.3377,-4.6294],[122.3177,-4.6437],[122.3155,-4.6466],[122.3155,-4.6575],[122.3228,-4.6565],[122.328,-4.6513],[122.3318,-4.641],[122.3331,-4.6345],[122.3367,-4.634]],[[122.3336,-4.6253],[122.3387,-4.6173],[122.3331,-4.6183],[122.331,-4.6224],[122.3336,-4.6253]],[[122.3208,-4.6263],[122.3252,-4.6238],[122.3313,-4.6124],[122.3224,-4.6118],[122.3152,-4.6134],[122.3139,-4.6219],[122.3208,-4.6263]],[[122.6263,-5.2038],[122.6265,-5.1943],[122.6228,-5.1924],[122.5996,-5.2007],[122.5913,-5.1988],[122.5868,-5.1916],[122.5854,-5.1863],[122.5877,-5.181],[122.5887,-5.16],[122.5946,-5.1528],[122.5982,-5.144],[122.6028,-5.1372],[122.6093,-5.1299],[122.6201,-5.1097],[122.6165,-5.1047],[122.6119,-5.1039],[122.6108,-5.0996],[122.6278,-5.0708],[122.6368,-5.0591],[122.6417,-5.0568],[122.6525,-5.0483],[122.6604,-5.0476],[122.6673,-5.0439],[122.6792,-5.0348],[122.6844,-5.0292],[122.6898,-5.0178],[122.6949,-5.0156],[122.6967,-5.01],[122.7036,-5.0071],[122.7044,-5.0022],[122.7089,-4.9988],[122.712,-4.9938],[122.7153,-4.9817],[122.7213,-4.9647],[122.7317,-4.9647],[122.7298,-4.9584],[122.754,-4.9664],[122.7601,-4.9711],[122.7635,-4.9638],[122.7572,-4.957],[122.757,-4.9513],[122.7616,-4.9443],[122.7607,-4.9323],[122.7561,-4.9291],[122.7568,-4.9259],[122.7629,-4.9293],[122.7624,-4.9188],[122.7601,-4.916],[122.7567,-4.9048],[122.7634,-4.9005],[122.7646,-4.8952],[122.759,-4.892],[122.7542,-4.881],[122.7441,-4.8873],[122.7362,-4.8821],[122.7378,-4.8767],[122.7324,-4.8718],[122.7376,-4.8662],[122.7339,-4.8631],[122.7342,-4.8594],[122.7285,-4.8561],[122.7253,-4.8476],[122.7261,-4.8426],[122.7295,-4.8418],[122.7283,-4.8338],[122.7374,-4.8114],[122.737,-4.8083],[122.7443,-4.7919],[122.7397,-4.7835],[122.7409,-4.7773],[122.7379,-4.7747],[122.7382,-4.7671],[122.7356,-4.7638],[122.7374,-4.7578],[122.7412,-4.7561],[122.7419,-4.7458],[122.7405,-4.7414],[122.7347,-4.7386],[122.7308,-4.7332],[122.7302,-4.718],[122.7241,-4.7056],[122.7242,-4.7012],[122.7181,-4.6946],[122.7153,-4.6826],[122.7166,-4.6805],[122.7247,-4.6803],[122.7318,-4.684],[122.7341,-4.683],[122.7351,-4.6751],[122.7376,-4.6741],[122.7385,-4.6683],[122.7341,-4.6613],[122.7399,-4.6495],[122.7356,-4.6431],[122.7214,-4.6341],[122.7193,-4.6317],[122.7033,-4.6214],[122.693,-4.6158],[122.6866,-4.6144],[122.6823,-4.6112],[122.677,-4.612],[122.6695,-4.6105],[122.6646,-4.6123],[122.6606,-4.6235],[122.6555,-4.6211],[122.6484,-4.6204],[122.6458,-4.6247],[122.6407,-4.6264],[122.6344,-4.6232],[122.6321,-4.6243],[122.6264,-4.6316],[122.6187,-4.6303],[122.6186,-4.6335],[122.5984,-4.632],[122.5932,-4.6436],[122.5962,-4.6505],[122.5961,-4.6547],[122.5899,-4.6618],[122.5846,-4.6697],[122.5648,-4.6796],[122.5592,-4.69],[122.5553,-4.6936],[122.5523,-4.6915],[122.5466,-4.6913],[122.5452,-4.6883],[122.5291,-4.6972],[122.5339,-4.7053],[122.5231,-4.7084],[122.5201,-4.7118],[122.5121,-4.7133],[122.5051,-4.7166],[122.4999,-4.7216],[122.4817,-4.7258],[122.4797,-4.7231],[122.4745,-4.7274],[122.4741,-4.7377],[122.4672,-4.7395],[122.4596,-4.7443],[122.4502,-4.7414],[122.4432,-4.7431],[122.43,-4.7382],[122.415,-4.7431],[122.4072,-4.7491],[122.4014,-4.7458],[122.392,-4.7477],[122.3819,-4.7458],[122.3736,-4.7406],[122.3661,-4.7544],[122.3628,-4.7563],[122.3604,-4.7642],[122.3572,-4.7658],[122.3541,-4.7788],[122.3474,-4.7895],[122.3418,-4.795],[122.3403,-4.8023],[122.3315,-4.8156],[122.321,-4.8268],[122.318,-4.8325],[122.325,-4.8514],[122.325,-4.8546],[122.3325,-4.8648],[122.3376,-4.8753],[122.3385,-4.8798],[122.3377,-4.8904],[122.3438,-4.8998],[122.3454,-4.91],[122.3503,-4.9194],[122.3495,-4.9239],[122.3583,-4.9327],[122.3622,-4.9454],[122.3692,-4.9458],[122.3742,-4.9502],[122.3777,-4.9583],[122.38,-4.9683],[122.3756,-4.9761],[122.3824,-4.9813],[122.3805,-4.9861],[122.3836,-4.9928],[122.3801,-4.9972],[122.3797,-5.0229],[122.3787,-5.0283],[122.3733,-5.0355],[122.3729,-5.0398],[122.3768,-5.0423],[122.384,-5.0521],[122.3819,-5.0606],[122.3827,-5.0695],[122.3924,-5.0722],[122.3846,-5.0856],[122.3814,-5.088],[122.3675,-5.0909],[122.3615,-5.0967],[122.3534,-5.1009],[122.347,-5.1024],[122.3386,-5.0995],[122.3271,-5.1044],[122.3223,-5.1128],[122.3181,-5.1247],[122.3177,-5.1395],[122.3165,-5.142]],[[122.849,-4.6093],[122.8478,-4.6179],[122.8444,-4.6269],[122.8451,-4.631],[122.8416,-4.6496],[122.8336,-4.6593],[122.831,-4.666],[122.8317,-4.6704],[122.8284,-4.6784],[122.8324,-4.6814],[122.8352,-4.6905],[122.8408,-4.6948],[122.8395,-4.7016],[122.8407,-4.7126],[122.844,-4.7166],[122.8453,-4.7237],[122.8413,-4.7308],[122.8412,-4.74],[122.8481,-4.7531],[122.8475,-4.7583],[122.8503,-4.768],[122.8542,-4.7725],[122.8573,-4.7795],[122.8523,-4.7938],[122.8461,-4.8004],[122.8455,-4.8115],[122.8431,-4.8215],[122.8432,-4.8259],[122.8387,-4.8352],[122.8323,-4.8384],[122.8226,-4.833],[122.8164,-4.831],[122.8185,-4.8383],[122.8128,-4.8513],[122.8133,-4.8541],[122.8078,-4.8613],[122.8066,-4.8689],[122.822,-4.8804],[122.8286,-4.8891],[122.8314,-4.8974],[122.832,-4.9131],[122.8315,-4.9214],[122.823,-4.9209],[122.8203,-4.9258],[122.8201,-4.9324],[122.8149,-4.9422],[122.8157,-4.9506],[122.8133,-4.9541],[122.8123,-4.962],[122.8144,-4.9671],[122.8127,-4.9809],[122.8074,-4.9854],[122.7958,-4.9869],[122.7899,-4.9917],[122.7889,-4.9955],[122.7807,-5.0036],[122.7733,-5.0077],[122.7666,-5.0078],[122.7635,-5.015],[122.7588,-5.0184],[122.7521,-5.0322],[122.7483,-5.0369],[122.7412,-5.0391],[122.739,-5.0524],[122.7442,-5.0539],[122.7509,-5.0422],[122.7541,-5.0392],[122.761,-5.0387],[122.7618,-5.041],[122.7921,-5.0184],[122.7987,-5.0219],[122.8025,-5.0266],[122.7991,-5.0312],[122.8031,-5.0398],[122.8029,-5.0436],[122.7996,-5.0511],[122.7962,-5.0546],[122.7949,-5.0603],[122.7889,-5.0673],[122.7818,-5.0718],[122.7741,-5.0784],[122.7605,-5.0951],[122.7602,-5.104],[122.7577,-5.1081],[122.7584,-5.1118],[122.7645,-5.1112],[122.7697,-5.1025],[122.7768,-5.0942],[122.7839,-5.0885],[122.7872,-5.0836]],[[122.7098,-4.5907],[122.7072,-4.5936],[122.7178,-4.6011],[122.7266,-4.6007],[122.7209,-4.5955],[122.7143,-4.5938],[122.7098,-4.5907]],[[122.6895,-4.567],[122.6845,-4.5659],[122.6824,-4.5715],[122.6825,-4.5773],[122.6898,-4.5802],[122.6928,-4.5777],[122.6928,-4.5726],[122.6895,-4.567]],[[122.3238,-4.5635],[122.3298,-4.5579],[122.3292,-4.552],[122.3208,-4.5556],[122.3185,-4.5639],[122.3238,-4.5635]],[[122.2945,-4.5601],[122.2976,-4.5542],[122.2945,-4.5443],[122.29,-4.548],[122.2892,-4.5528],[122.2925,-4.56],[122.2945,-4.5601]],[[122.7163,-4.519],[122.7136,-4.5222],[122.7067,-4.5203],[122.701,-4.5202],[122.6899,-4.5317],[122.6866,-4.5387],[122.6884,-4.547],[122.694,-4.5571],[122.6999,-4.5625],[122.7087,-4.5648],[122.7081,-4.5594],[122.7117,-4.5547],[122.7082,-4.5484],[122.7111,-4.5476],[122.7144,-4.5513],[122.7152,-4.5556],[122.7228,-4.5583],[122.7276,-4.5677],[122.7306,-4.5638],[122.7359,-4.5687],[122.737,-4.5757],[122.7435,-4.5714],[122.7401,-4.5684],[122.7372,-4.5615],[122.7368,-4.5536],[122.742,-4.5488],[122.7344,-4.545],[122.7279,-4.5448],[122.7279,-4.5402],[122.7339,-4.5397],[122.7388,-4.5374],[122.7409,-4.5324],[122.7305,-4.5228],[122.7214,-4.5183],[122.7163,-4.519]]]}},{"type":"Feature","properties":{"mhid":"1332:435","alt_name":"KABUPATEN KONAWE","latitude":-3.91717,"longitude":122.08823,"sample_value":341},"geometry":{"type":"MultiLineString","coordinates":[[[123.021,-3.9804],[123.0129,-3.9778],[123.0078,-3.9893],[122.9967,-4.0038],[122.9984,-4.0079],[122.9969,-4.0155],[122.9942,-4.0203],[122.9868,-4.026],[122.984,-4.0233],[122.9746,-4.0351],[122.9717,-4.0426],[122.9717,-4.049],[122.97,-4.0542],[122.9653,-4.0553],[122.9584,-4.0548],[122.948,-4.0507],[122.9417,-4.0507],[122.9463,-4.0588],[122.944,-4.0635],[122.9353,-4.0658],[122.9353,-4.0704],[122.9393,-4.0737],[122.9394,-4.0785],[122.9446,-4.082],[122.9446,-4.0866],[122.9365,-4.0919],[122.9405,-4.1058],[122.9428,-4.1098],[122.9467,-4.1219],[122.9525,-4.1276],[122.9532,-4.1348],[122.9554,-4.1399],[122.9618,-4.1447],[122.965,-4.1523],[122.9707,-4.1553],[122.9749,-4.166],[122.9813,-4.1685],[122.9832,-4.1753],[122.9904,-4.1932],[122.9893,-4.1986],[122.9938,-4.2033],[123.0024,-4.2019],[123.0092,-4.204],[123.0204,-4.2135],[123.0254,-4.2213],[123.0297,-4.2228],[123.0399,-4.23],[123.0447,-4.2312],[123.0483,-4.2362],[123.0568,-4.2392],[123.0603,-4.2437],[123.0703,-4.2482],[123.0878,-4.2507],[123.0985,-4.2529],[123.1019,-4.2561],[123.1101,-4.2597],[123.1208,-4.2607],[123.1292,-4.2566],[123.1361,-4.2559],[123.1395,-4.2513],[123.1522,-4.24],[123.1554,-4.2251],[123.1584,-4.2186],[123.1654,-4.2078],[123.1711,-4.2029],[123.1803,-4.2005],[123.1844,-4.1979],[123.1875,-4.1926],[123.1856,-4.1871],[123.1906,-4.1836],[123.1959,-4.1856],[123.1991,-4.18],[123.202,-4.1787],[123.2071,-4.1724],[123.2072,-4.1641],[123.2096,-4.158],[123.2136,-4.153],[123.2213,-4.1526],[123.2206,-4.147],[123.231,-4.1457],[123.2394,-4.1371],[123.2477,-4.1239],[123.2526,-4.1106],[123.2507,-4.1008],[123.2548,-4.0933],[123.2576,-4.0929],[123.2573,-4.0762],[123.2544,-4.0665],[123.2516,-4.0622],[123.2384,-4.049],[123.2314,-4.0397],[123.2254,-4.0353],[123.2251,-4.0262],[123.2196,-4.0247],[123.2168,-4.0213],[123.1985,-4.0147],[123.1916,-4.0101],[123.1841,-4.0082],[123.1822,-4.0101],[123.164,-4.0081],[123.1524,-4.012],[123.1468,-4.0117],[123.1421,-4.0088],[123.1365,-4.0091],[123.129,-4.0162],[123.1252,-4.0183],[123.1046,-4.02],[123.0951,-4.023],[123.0867,-4.022],[123.0798,-4.0187],[123.0677,-4.0063],[123.0599,-4.0045],[123.0516,-3.9978],[123.0466,-3.9972],[123.0383,-3.9907],[123.0301,-3.9826],[123.021,-3.9804]],[[122.6974,-3.913],[122.6943,-3.9084],[122.6898,-3.9096],[122.6796,-3.9151],[122.6932,-3.919],[122.6981,-3.9191],[122.6974,-3.913]],[[122.7128,-3.8913],[122.7012,-3.8924],[122.697,-3.8968],[122.6976,-3.8995],[122.7055,-3.9101],[122.7132,-3.9107],[122.7229,-3.9046],[122.7264,-3.9001],[122.7264,-3.8961],[122.7199,-3.8919],[122.7128,-3.8913]],[[122.717,-3.8899],[122.7177,-3.884],[122.712,-3.8813],[122.7077,-3.884],[122.7082,-3.8895],[122.717,-3.8899]],[[122.6242,-3.9492],[122.6271,-3.9459],[122.625,-3.9422],[122.628,-3.9383],[122.6338,-3.9384],[122.6478,-3.9345],[122.6452,-3.9311],[122.6468,-3.9245],[122.6605,-3.9276],[122.6645,-3.9252],[122.6671,-3.9174],[122.6637,-3.9122],[122.6653,-3.8965],[122.6563,-3.895],[122.6467,-3.8916],[122.6316,-3.8912],[122.6255,-3.8927],[122.6214,-3.8885],[122.6134,-3.8908],[122.6108,-3.896],[122.6052,-3.8931],[122.5975,-3.8933],[122.5962,-3.8952],[122.5874,-3.8941],[122.5763,-3.8975],[122.5766,-3.902],[122.5691,-3.904],[122.5696,-3.8996],[122.5611,-3.9002],[122.5593,-3.9025],[122.542,-3.898],[122.5395,-3.8936],[122.5335,-3.8998],[122.5309,-3.8956],[122.5247,-3.895],[122.5171,-3.8891],[122.5151,-3.886],[122.5071,-3.882],[122.506,-3.8753],[122.508,-3.8694],[122.5058,-3.8634],[122.5086,-3.8599],[122.5061,-3.8543],[122.4982,-3.8463],[122.4905,-3.8349],[122.4802,-3.8214],[122.4754,-3.8221],[122.4688,-3.8201]]]}},{"type":"Feature","properties":{"mhid":"1332:436","alt_name":"KABUPATEN KOLAKA","latitude":-4.08333,"longitude":121.66667,"sample_value":165},"geometry":{"type":"MultiLineString","coordinates":[[[121.4914,-4.1943],[121.4824,-4.1944],[121.4793,-4.1959],[121.4692,-4.2087],[121.4723,-4.2144],[121.4706,-4.2188],[121.4728,-4.2249],[121.4806,-4.2158],[121.482,-4.2046],[121.4951,-4.2026],[121.4914,-4.1943]],[[121.4775,-4.112],[121.4782,-4.122],[121.4821,-4.1191],[121.4775,-4.112]],[[121.4483,-4.107],[121.4455,-4.1127],[121.4407,-4.1167],[121.4336,-4.1164],[121.4293,-4.1135],[121.4228,-4.1144],[121.4158,-4.1111],[121.4163,-4.1042],[121.4202,-4.0974],[121.4224,-4.0873],[121.4171,-4.0855],[121.4149,-4.0889],[121.4126,-4.0986],[121.4134,-4.1045],[121.4116,-4.1076],[121.4046,-4.1136],[121.3991,-4.1101],[121.3926,-4.1109],[121.3891,-4.1038],[121.3832,-4.1045],[121.3845,-4.1162],[121.3887,-4.1247],[121.396,-4.1249],[121.4014,-4.1286],[121.4025,-4.1368],[121.4013,-4.1432]],[[121.4013,-4.1432],[121.4006,-4.144]],[[121.4006,-4.144],[121.3991,-4.1475],[121.3937,-4.1497],[121.3942,-4.1636],[121.4026,-4.161],[121.4108,-4.1561],[121.4188,-4.1556],[121.4257,-4.1582],[121.4291,-4.1625],[121.4278,-4.1689],[121.4405,-4.168],[121.4452,-4.1605],[121.4376,-4.1585],[121.4378,-4.1514],[121.4339,-4.1485],[121.4345,-4.1443],[121.4297,-4.1363],[121.4303,-4.1296],[121.4352,-4.1279],[121.4423,-4.1286],[121.4514,-4.1313],[121.4535,-4.1345],[121.4596,-4.1374],[121.4611,-4.1332],[121.4563,-4.1215],[121.4591,-4.1169],[121.4669,-4.1182],[121.4713,-4.1103],[121.4644,-4.1042],[121.459,-4.1027],[121.4561,-4.1052],[121.4495,-4.1053]],[[121.4495,-4.1053],[121.4483,-4.107]],[[121.3336,-4.0855],[121.3373,-4.0844],[121.3375,-4.0773],[121.3339,-4.0768],[121.3317,-4.0834],[121.3336,-4.0855]],[[121.3693,-4.0799],[121.3674,-4.0746],[121.3631,-4.0852],[121.3554,-4.0884],[121.3549,-4.0913],[121.3614,-4.0945],[121.3642,-4.0983],[121.3696,-4.1012],[121.3737,-4.1007],[121.3783,-4.1028],[121.378,-4.0952],[121.3696,-4.0874],[121.3693,-4.0799]],[[121.7943,-4.3536],[121.7956,-4.353],[121.7906,-4.3383],[121.7766,-4.2936],[121.7671,-4.2845],[121.7597,-4.2742],[121.7517,-4.2692],[121.7391,-4.2671],[121.7382,-4.2596],[121.7354,-4.2569],[121.7374,-4.2464],[121.7479,-4.2425],[121.7491,-4.2314],[121.7509,-4.227],[121.7517,-4.2003],[121.7726,-4.1767],[121.7758,-4.1724],[121.7787,-4.1627],[121.7782,-4.1422],[121.773,-4.1132],[121.7733,-4.1023],[121.772,-4.0954],[121.7694,-4.0927],[121.7688,-4.0795],[121.767,-4.0661],[121.7636,-4.0468],[121.7582,-4.0382],[121.7408,-4.0192],[121.7198,-3.9976],[121.7067,-3.994],[121.6976,-3.9926],[121.6918,-3.9893],[121.6776,-3.9767],[121.6755,-3.9684],[121.6765,-3.963],[121.6855,-3.9578],[121.6965,-3.9558],[121.6992,-3.9482],[121.6939,-3.9363],[121.6807,-3.9195],[121.6734,-3.9122],[121.6715,-3.9065],[121.6661,-3.9017],[121.6592,-3.9056],[121.654,-3.9016],[121.639,-3.9015],[121.6316,-3.8993],[121.6241,-3.8937],[121.6224,-3.8909],[121.6165,-3.8728],[121.6111,-3.8644],[121.6094,-3.8543],[121.6099,-3.8463],[121.6075,-3.8283],[121.6027,-3.8205],[121.5866,-3.8101],[121.5711,-3.8008],[121.5582,-3.7895],[121.5499,-3.781],[121.5407,-3.765],[121.5351,-3.7581],[121.527,-3.7542],[121.5236,-3.7478],[121.5048,-3.7355],[121.4865,-3.7266],[121.4748,-3.7229],[121.4605,-3.7206],[121.4564,-3.7164],[121.4524,-3.7153],[121.4402,-3.7092],[121.4317,-3.703],[121.4287,-3.6941],[121.4295,-3.6754],[121.4332,-3.648],[121.4341,-3.6381],[121.4321,-3.6262],[121.4284,-3.6199],[121.4197,-3.613],[121.4087,-3.6117],[121.3918,-3.6173],[121.3702,-3.6306],[121.3613,-3.6381],[121.3503,-3.6486],[121.3389,-3.662],[121.3356,-3.6674],[121.3439,-3.6756],[121.3441,-3.6853],[121.3369,-3.6926],[121.329,-3.6942],[121.3154,-3.6946],[121.2988,-3.6924],[121.2899,-3.6899],[121.2826,-3.6852],[121.2685,-3.674],[121.26,-3.6681],[121.2529,-3.6593],[121.2378,-3.6676],[121.2315,-3.6701],[121.223,-3.6761],[121.1854,-3.6918],[121.1614,-3.7038],[121.1141,-3.7422]],[[121.1063,-3.7461],[121.1094,-3.7515],[121.1166,-3.7584],[121.1212,-3.7606],[121.1449,-3.782],[121.1546,-3.7929],[121.1606,-3.801],[121.1635,-3.8076],[121.1661,-3.8191],[121.1683,-3.8244],[121.1802,-3.8295],[121.1936,-3.8294],[121.2076,-3.8235],[121.2156,-3.8227],[121.24,-3.8255],[121.2455,-3.8294],[121.2511,-3.837],[121.255,-3.8471],[121.259,-3.8515],[121.2582,-3.8557],[121.2519,-3.8622],[121.2455,-3.8654],[121.239,-3.866],[121.2341,-3.8708],[121.2429,-3.8716],[121.2468,-3.878],[121.2528,-3.8759],[121.2564,-3.8769],[121.2618,-3.8829],[121.2611,-3.887],[121.2539,-3.8906],[121.2489,-3.8999],[121.2422,-3.9061],[121.2424,-3.9132],[121.2495,-3.9142],[121.2549,-3.9106],[121.2651,-3.9111],[121.2666,-3.9056],[121.2703,-3.9007],[121.2705,-3.8966],[121.2751,-3.8956],[121.2734,-3.8893],[121.2812,-3.8898],[121.2809,-3.8845],[121.2913,-3.8861],[121.3003,-3.8901],[121.3043,-3.8996],[121.3133,-3.9142],[121.3173,-3.9321],[121.316,-3.9388],[121.3193,-3.9465],[121.3239,-3.9477],[121.3267,-3.9539],[121.3341,-3.9657],[121.3391,-3.9818],[121.3443,-3.9825],[121.3457,-3.9891],[121.3618,-3.9972],[121.371,-4.0037],[121.4015,-4.0004],[121.4078,-3.9973],[121.4139,-3.9988],[121.4237,-4.0062],[121.4275,-4.0065],[121.4373,-4.0151],[121.4436,-4.0219],[121.4522,-4.0239],[121.4548,-4.019],[121.4518,-4.0097],[121.4567,-4.0079],[121.4589,-4.0102],[121.48,-4.0172],[121.4859,-4.016],[121.4998,-4.0189],[121.5059,-4.0178],[121.5133,-4.0233],[121.5225,-4.0249],[121.5301,-4.0278],[121.5327,-4.0317],[121.5359,-4.0311],[121.5431,-4.0356],[121.5485,-4.0375],[121.5534,-4.0434],[121.5582,-4.0408],[121.5658,-4.0402],[121.5771,-4.0504],[121.5798,-4.0493],[121.5883,-4.0515],[121.5892,-4.0575],[121.5917,-4.0619],[121.602,-4.0634],[121.6097,-4.0671],[121.6081,-4.0725],[121.611,-4.0757],[121.6066,-4.0902],[121.6064,-4.104],[121.6081,-4.1102],[121.6131,-4.1175],[121.6152,-4.1234],[121.6173,-4.1365],[121.6173,-4.151],[121.6086,-4.1642],[121.6096,-4.1719],[121.6054,-4.1816],[121.6018,-4.1793],[121.5911,-4.1806],[121.5983,-4.1875],[121.5938,-4.1958],[121.5863,-4.2001],[121.5835,-4.2088],[121.5836,-4.2224],[121.5824,-4.2254],[121.5841,-4.2312],[121.5796,-4.2453],[121.5757,-4.2472],[121.5713,-4.2554],[121.5656,-4.262],[121.5592,-4.2649],[121.5478,-4.2662],[121.5401,-4.256],[121.5448,-4.2518],[121.5464,-4.2479],[121.5449,-4.2439],[121.5405,-4.2463],[121.5386,-4.2427],[121.5332,-4.24],[121.5269,-4.244],[121.5265,-4.2511],[121.5302,-4.253],[121.5327,-4.2643],[121.526,-4.2659],[121.5297,-4.2703],[121.533,-4.2815],[121.5297,-4.2915],[121.5231,-4.3072],[121.5237,-4.3177],[121.5216,-4.3215],[121.5161,-4.3425],[121.5173,-4.3721],[121.521,-4.3857],[121.5225,-4.388],[121.5205,-4.3948],[121.5242,-4.4002],[121.5219,-4.4037],[121.5181,-4.4228],[121.5164,-4.4417],[121.5128,-4.4486],[121.512,-4.4566],[121.4983,-4.4898],[121.4943,-4.5039],[121.4842,-4.5356],[121.475,-4.5509],[121.4766,-4.5607],[121.4768,-4.5746],[121.4737,-4.5846],[121.4701,-4.5864],[121.4707,-4.5912]],[[121.4786,-4.591],[121.4908,-4.5916],[121.494,-4.5897]],[[121.8038,-4.4156],[121.8023,-4.4071],[121.7995,-4.4026],[121.7988,-4.3971],[121.8052,-4.3836],[121.8031,-4.3797]]]}},{"type":"Feature","properties":{"mhid":"1332:437","alt_name":"KABUPATEN KONAWE SELATAN","latitude":-4.19191,"longitude":122.44854,"sample_value":447},"geometry":{"type":"MultiLineString","coordinates":[[[122.1081,-4.5341],[122.113,-4.5361],[122.1212,-4.5369],[122.1245,-4.5312],[122.1314,-4.5317],[122.1398,-4.5345],[122.1478,-4.5343],[122.1525,-4.5308],[122.161,-4.5296],[122.1648,-4.5206],[122.1736,-4.5185],[122.1819,-4.5096],[122.19,-4.504],[122.1912,-4.4989],[122.1948,-4.5005],[122.2058,-4.4854],[122.2169,-4.4828],[122.2205,-4.4794],[122.2264,-4.483],[122.2377,-4.4871],[122.2513,-4.4853],[122.2535,-4.493],[122.2607,-4.493],[122.2657,-4.4892],[122.2702,-4.4894],[122.2873,-4.4846],[122.2991,-4.4822],[122.3093,-4.4755],[122.3241,-4.4751],[122.3329,-4.4736],[122.3417,-4.4747],[122.3449,-4.4719],[122.3447,-4.4654],[122.3492,-4.4681],[122.3639,-4.4657],[122.3698,-4.4615],[122.3745,-4.4602],[122.3762,-4.457],[122.3811,-4.4576],[122.3895,-4.4556],[122.3936,-4.4511],[122.3988,-4.448],[122.4015,-4.4435],[122.4016,-4.4391],[122.4086,-4.4407],[122.4146,-4.4339],[122.4191,-4.4331],[122.4233,-4.4353],[122.4298,-4.4345],[122.4358,-4.4459],[122.4359,-4.4376],[122.4408,-4.4354],[122.4452,-4.4364],[122.4441,-4.4436],[122.4503,-4.4487],[122.4545,-4.4474],[122.4533,-4.4408],[122.4556,-4.4368],[122.4626,-4.4398],[122.4678,-4.4373],[122.4679,-4.4426],[122.4721,-4.4431],[122.4704,-4.4524],[122.4774,-4.4491],[122.4837,-4.4513],[122.4864,-4.4486],[122.4894,-4.4556],[122.4938,-4.4526],[122.4947,-4.4481],[122.5009,-4.4494],[122.5037,-4.4542],[122.5072,-4.4509],[122.5066,-4.4449],[122.5111,-4.4427],[122.5201,-4.4431],[122.5273,-4.4351],[122.5326,-4.427],[122.5375,-4.4251],[122.5399,-4.4276],[122.5436,-4.4208],[122.5522,-4.4228],[122.5634,-4.4174],[122.5639,-4.4087],[122.5659,-4.4024],[122.5746,-4.3988],[122.5788,-4.3996],[122.5846,-4.3967],[122.5951,-4.3969],[122.5981,-4.4021],[122.6021,-4.4053],[122.6127,-4.4085],[122.63,-4.4238],[122.6331,-4.4293],[122.6426,-4.4392],[122.6586,-4.449],[122.6642,-4.455],[122.6616,-4.4581],[122.6623,-4.4629],[122.6674,-4.4672],[122.6643,-4.4767],[122.6646,-4.4915],[122.667,-4.5013],[122.6717,-4.5079],[122.6803,-4.5074],[122.6837,-4.5046],[122.6878,-4.5048],[122.6948,-4.5017],[122.6927,-4.4992],[122.6867,-4.4979],[122.6766,-4.4834],[122.6811,-4.4742],[122.6851,-4.4754],[122.6896,-4.4705],[122.6936,-4.47],[122.7013,-4.4726],[122.7063,-4.4762],[122.7056,-4.4799],[122.7089,-4.4833],[122.7058,-4.4887],[122.7107,-4.4986],[122.7143,-4.5014],[122.7212,-4.5013],[122.7402,-4.5097],[122.7476,-4.5074],[122.76,-4.4888],[122.7626,-4.4732],[122.7621,-4.4634],[122.7634,-4.4584],[122.7638,-4.4476],[122.7605,-4.4438],[122.7621,-4.4378],[122.7572,-4.4268],[122.7534,-4.4258],[122.7506,-4.4289],[122.7463,-4.4285],[122.7435,-4.4323],[122.734,-4.4269],[122.7298,-4.4212],[122.7241,-4.4206],[122.7251,-4.4165],[122.712,-4.4076],[122.7067,-4.4073],[122.7005,-4.4012],[122.7029,-4.3941],[122.6984,-4.3916],[122.6959,-4.3875],[122.6946,-4.3793],[122.6849,-4.3685],[122.6805,-4.3681],[122.6771,-4.3648],[122.667,-4.3615],[122.6629,-4.3558],[122.6629,-4.3472],[122.6599,-4.3386],[122.6617,-4.3358],[122.6711,-4.3281],[122.6821,-4.3262],[122.6894,-4.3309],[122.6962,-4.3316],[122.6964,-4.3363],[122.7001,-4.3408],[122.7039,-4.3388],[122.7106,-4.3477],[122.7172,-4.3536],[122.7172,-4.3576],[122.7217,-4.3652],[122.7264,-4.3691],[122.7342,-4.3652],[122.7371,-4.3736],[122.743,-4.3828],[122.7528,-4.388],[122.7636,-4.4001],[122.7683,-4.4036],[122.7699,-4.4088],[122.7755,-4.4093],[122.7796,-4.4133],[122.7859,-4.4152],[122.7892,-4.4191],[122.8011,-4.4255],[122.8098,-4.4277],[122.8157,-4.4312],[122.8151,-4.4372],[122.8206,-4.4428],[122.8299,-4.4479],[122.8357,-4.4488],[122.8392,-4.4415],[122.8375,-4.4396],[122.8455,-4.4265],[122.8465,-4.4192],[122.8594,-4.4182],[122.8697,-4.4134],[122.8695,-4.4175],[122.8765,-4.4183],[122.8808,-4.4112],[122.8856,-4.4076],[122.8918,-4.3978],[122.8908,-4.3924],[122.8963,-4.3857],[122.8972,-4.3807],[122.901,-4.3796],[122.9017,-4.3721],[122.8974,-4.3713],[122.8968,-4.3645],[122.8944,-4.362],[122.8968,-4.3523],[122.9006,-4.3508],[122.8999,-4.3468],[122.8948,-4.34],[122.896,-4.332],[122.9012,-4.3293],[122.9038,-4.3252],[122.9036,-4.3207],[122.8983,-4.3213],[122.8894,-4.3181],[122.8856,-4.3117],[122.8843,-4.2978],[122.8812,-4.2953],[122.8849,-4.2918],[122.8862,-4.2797],[122.8908,-4.2777],[122.8909,-4.2724],[122.8878,-4.27],[122.8939,-4.2541],[122.8978,-4.2506],[122.9023,-4.2513],[122.9064,-4.2425],[122.9048,-4.2377],[122.9065,-4.2295],[122.8946,-4.2219],[122.8929,-4.2075],[122.8981,-4.2044],[122.8971,-4.2009],[122.8998,-4.1957],[122.8971,-4.1876],[122.8918,-4.1794],[122.8899,-4.1714],[122.8915,-4.1644],[122.8885,-4.1579],[122.8867,-4.1457],[122.8881,-4.1399],[122.8832,-4.1324],[122.885,-4.1268],[122.8821,-4.1222],[122.873,-4.1161],[122.8707,-4.1094],[122.8691,-4.0995],[122.8602,-4.093],[122.8553,-4.0849],[122.8534,-4.076],[122.8499,-4.0697],[122.8362,-4.0586],[122.8308,-4.055],[122.8246,-4.0581],[122.816,-4.0576],[122.8111,-4.0618],[122.7997,-4.0595],[122.7945,-4.0555],[122.7899,-4.0611],[122.7804,-4.06],[122.7752,-4.0566],[122.7656,-4.0563],[122.7611,-4.0652],[122.7683,-4.0686],[122.7688,-4.0765],[122.7711,-4.0799],[122.7758,-4.0814],[122.7773,-4.0894],[122.7882,-4.0966],[122.793,-4.0963],[122.7931,-4.0926],[122.8012,-4.0958],[122.8043,-4.1036],[122.8087,-4.1081],[122.8079,-4.1146],[122.8133,-4.1125],[122.817,-4.109],[122.8237,-4.1102],[122.8209,-4.1156],[122.8277,-4.1199],[122.8313,-4.1205],[122.8348,-4.1249],[122.834,-4.1305],[122.8301,-4.1363],[122.8328,-4.145],[122.8357,-4.1498],[122.8323,-4.154],[122.8268,-4.1506],[122.8225,-4.1455],[122.8172,-4.1452],[122.8173,-4.1407],[122.8121,-4.1401],[122.8098,-4.1482],[122.8032,-4.1503],[122.7997,-4.1561],[122.7932,-4.1519],[122.7896,-4.1536],[122.7746,-4.1516],[122.7661,-4.1571],[122.7599,-4.1541],[122.7561,-4.1569],[122.7489,-4.1527],[122.7502,-4.1485],[122.746,-4.1424],[122.7424,-4.1444],[122.7365,-4.1422],[122.7351,-4.1486],[122.727,-4.1457],[122.7319,-4.1412],[122.7287,-4.1375],[122.7255,-4.1422],[122.7211,-4.1408],[122.7198,-4.1325],[122.715,-4.1313],[122.7121,-4.1378],[122.7021,-4.134],[122.6976,-4.1355],[122.7011,-4.1411],[122.704,-4.1414],[122.7083,-4.1459],[122.7069,-4.1506],[122.7095,-4.1565],[122.7138,-4.1581],[122.7146,-4.1626],[122.7113,-4.165],[122.7013,-4.1585],[122.6953,-4.1567],[122.6804,-4.1591],[122.6774,-4.1558],[122.6731,-4.1469],[122.6687,-4.1445],[122.6679,-4.1405],[122.6631,-4.1331],[122.6689,-4.1271],[122.6644,-4.1264],[122.6629,-4.1174],[122.6647,-4.1],[122.6609,-4.0956],[122.6594,-4.0876],[122.6573,-4.0844],[122.6527,-4.0864],[122.6509,-4.0834],[122.651,-4.0721],[122.6522,-4.0642],[122.6492,-4.0579],[122.6546,-4.0555],[122.6567,-4.048],[122.6615,-4.0451],[122.6648,-4.048],[122.6699,-4.0422],[122.6726,-4.0366],[122.666,-4.036],[122.6652,-4.0295],[122.6604,-4.0204],[122.662,-4.0162],[122.659,-4.0125],[122.6588,-4.0079],[122.6511,-4.0027]]]}},{"type":"Feature","properties":{"mhid":"1332:438","alt_name":"KABUPATEN BOMBANA","latitude":-4.6257,"longitude":121.81641,"sample_value":94},"geometry":{"type":"MultiLineString","coordinates":[[[122.0586,-5.385],[122.0619,-5.3796],[122.0639,-5.3668],[122.0594,-5.3641],[122.0576,-5.3676],[122.0546,-5.3803],[122.0586,-5.385]],[[121.8431,-5.3564],[121.844,-5.353],[121.8419,-5.3481],[121.8371,-5.345],[121.835,-5.3495],[121.8402,-5.3558],[121.8431,-5.3564]],[[122.0667,-5.3041],[122.0696,-5.3005],[122.069,-5.2948],[122.0724,-5.2921],[122.0711,-5.2862],[122.0657,-5.2903],[122.0601,-5.2965],[122.0586,-5.3044],[122.0631,-5.3076],[122.0667,-5.3041]],[[121.8195,-5.1582],[121.8142,-5.1541],[121.8125,-5.1578],[121.8148,-5.1617],[121.8195,-5.1582]],[[121.8197,-5.1405],[121.8173,-5.1463],[121.8223,-5.147],[121.8197,-5.1405]],[[121.8366,-5.1477],[121.8437,-5.1357],[121.8425,-5.1291],[121.8403,-5.1281],[121.8385,-5.1208],[121.8344,-5.1208],[121.8306,-5.13],[121.8255,-5.1373],[121.8237,-5.1452],[121.8238,-5.1523],[121.836,-5.1515],[121.8366,-5.1477]],[[122.0446,-5.4013],[122.0451,-5.399],[122.0433,-5.3837],[122.0442,-5.3747],[122.0411,-5.3706],[122.037,-5.3696],[122.0396,-5.3622],[122.0377,-5.3566],[122.0377,-5.3506],[122.0347,-5.3497],[122.0331,-5.3449],[122.0377,-5.3371],[122.0356,-5.3323],[122.0403,-5.3244],[122.0509,-5.3159],[122.0506,-5.3065],[122.0519,-5.3027],[122.0511,-5.2901],[122.0486,-5.2838],[122.0511,-5.2746],[122.0507,-5.2653],[122.0428,-5.259],[122.0436,-5.2532],[122.0327,-5.2414],[122.0403,-5.241],[122.0486,-5.2444],[122.0503,-5.2402],[122.0612,-5.2356],[122.0725,-5.2339],[122.0725,-5.231],[122.0671,-5.228],[122.0629,-5.215],[122.0629,-5.2083],[122.0583,-5.2041],[122.0541,-5.1974],[122.0575,-5.1865],[122.0496,-5.1814],[122.0496,-5.1776],[122.0454,-5.1747],[122.0421,-5.1696],[122.0429,-5.1654],[122.0349,-5.1604],[122.0358,-5.1537],[122.0337,-5.1495],[122.022,-5.1507],[122.0207,-5.1549],[122.0151,-5.1557],[122.0094,-5.1505],[122.0099,-5.1609],[122.0128,-5.1603],[122.0168,-5.1644],[122.0151,-5.1672],[122.0088,-5.1678],[121.999,-5.162],[121.9938,-5.1603],[121.9892,-5.1545],[121.9898,-5.1493],[121.9869,-5.1453],[121.9881,-5.1413],[121.9829,-5.1366],[121.9824,-5.1314],[121.9852,-5.1291],[121.9812,-5.1245],[121.9755,-5.1228],[121.9778,-5.1113],[121.9772,-5.1026],[121.983,-5.0968],[121.9842,-5.0905],[121.979,-5.0888],[121.979,-5.083],[121.9744,-5.079],[121.975,-5.0703],[121.9669,-5.0622],[121.9566,-5.0599],[121.9531,-5.0628],[121.9457,-5.0639],[121.9434,-5.0685],[121.937,-5.0743],[121.9387,-5.0772],[121.933,-5.0824],[121.9324,-5.0922],[121.9376,-5.1048],[121.937,-5.1106],[121.9301,-5.1097],[121.9256,-5.1024],[121.9158,-5.0971],[121.9128,-5.0984],[121.9094,-5.0934],[121.9033,-5.0901],[121.8954,-5.0894],[121.8938,-5.0787],[121.8951,-5.0723],[121.9,-5.0683],[121.8985,-5.0585],[121.8927,-5.0557],[121.8884,-5.056],[121.8758,-5.0652],[121.8716,-5.0716],[121.8624,-5.0762],[121.8557,-5.0839],[121.8495,-5.0961],[121.8514,-5.0973]],[[121.8514,-5.0973],[121.8515,-5.0973]],[[121.8515,-5.0973],[121.8547,-5.0992],[121.8568,-5.1065],[121.8599,-5.1047],[121.8645,-5.1059],[121.8712,-5.105],[121.8727,-5.109],[121.8681,-5.1124],[121.8684,-5.1206],[121.8645,-5.1191],[121.8596,-5.1093],[121.8532,-5.1072],[121.8515,-5.0973]],[[121.8515,-5.0973],[121.8515,-5.0972],[121.8514,-5.0973]],[[121.8514,-5.0973],[121.8452,-5.1026],[121.8397,-5.1103],[121.8398,-5.1156],[121.8447,-5.1218],[121.8534,-5.1264],[121.8559,-5.1246],[121.8635,-5.128],[121.866,-5.1307],[121.8678,-5.1387],[121.8724,-5.1375],[121.8797,-5.1433],[121.8809,-5.1553],[121.8726,-5.1513],[121.8687,-5.158],[121.8626,-5.1568],[121.8595,-5.1592],[121.8511,-5.1483],[121.8409,-5.1464],[121.8413,-5.1503],[121.8284,-5.1621],[121.8227,-5.1689],[121.8204,-5.1771],[121.8238,-5.186],[121.8277,-5.1898],[121.8333,-5.1873],[121.8381,-5.1914],[121.8317,-5.1951],[121.8317,-5.2023],[121.8133,-5.203],[121.8079,-5.2068],[121.8122,-5.2159],[121.8124,-5.2271],[121.8081,-5.2361],[121.8074,-5.2448],[121.803,-5.2548],[121.7948,-5.2622],[121.7933,-5.2738],[121.7944,-5.2775],[121.8027,-5.285],[121.8072,-5.2863],[121.8147,-5.2923],[121.8222,-5.2933],[121.8235,-5.2976],[121.8215,-5.3048],[121.8228,-5.3116],[121.8271,-5.3165],[121.8303,-5.3237],[121.8378,-5.3349],[121.8417,-5.3362],[121.8453,-5.3444],[121.8547,-5.3506],[121.8596,-5.3607],[121.8576,-5.3653],[121.8635,-5.3692],[121.87,-5.3784],[121.8729,-5.3853],[121.8908,-5.3951],[121.8908,-5.399],[121.897,-5.3994],[121.9026,-5.4036],[121.9107,-5.4046],[121.916,-5.401],[121.9212,-5.4014],[121.9221,-5.4056],[121.9208,-5.4128],[121.9218,-5.42],[121.927,-5.4256],[121.9325,-5.4285],[121.9404,-5.4393],[121.9462,-5.4547],[121.9446,-5.456],[121.9426,-5.4668],[121.9452,-5.4679],[121.9462,-5.4736]],[[122.0509,-4.8804],[122.0482,-4.8864],[122.0513,-4.8891],[122.055,-4.8829],[122.0509,-4.8804]],[[122.1403,-4.8171],[122.1322,-4.8172],[122.1281,-4.8207],[122.1207,-4.8201],[122.1206,-4.8321],[122.1243,-4.8285],[122.1359,-4.8271],[122.1359,-4.8206],[122.1403,-4.8171]],[[122.151,-4.8085],[122.1472,-4.8108],[122.1459,-4.8172],[122.1523,-4.8149],[122.151,-4.8085]],[[121.494,-4.5897],[121.482,-4.5936],[121.4786,-4.591]],[[121.4707,-4.5912],[121.4715,-4.6066],[121.4676,-4.6076],[121.4629,-4.6123],[121.4649,-4.6196],[121.4695,-4.6196],[121.4688,-4.6395],[121.4668,-4.6428],[121.4694,-4.6568],[121.4684,-4.6734],[121.4651,-4.6827],[121.4694,-4.6916],[121.481,-4.6917],[121.4886,-4.696],[121.4935,-4.696],[121.4978,-4.7023],[121.4928,-4.7023],[121.4955,-4.7136],[121.5018,-4.714],[121.508,-4.7123],[121.5064,-4.718],[121.508,-4.721],[121.5074,-4.7273],[121.505,-4.7326],[121.5198,-4.7396],[121.5198,-4.7444],[121.5267,-4.7532],[121.533,-4.7538],[121.536,-4.7571],[121.5378,-4.7638],[121.549,-4.7735],[121.5586,-4.7735],[121.567,-4.7795],[121.5721,-4.7789],[121.5778,-4.7847],[121.5869,-4.7898],[121.6013,-4.7884],[121.6164,-4.7956],[121.62,-4.7948],[121.6194,-4.7878],[121.6225,-4.7778],[121.6293,-4.778],[121.6303,-4.7835],[121.6271,-4.7887],[121.6296,-4.7956],[121.6353,-4.799],[121.6305,-4.8019],[121.6385,-4.8124],[121.6484,-4.8075],[121.6637,-4.8113],[121.6642,-4.8193],[121.6731,-4.8319],[121.6781,-4.8366],[121.6774,-4.8441],[121.6837,-4.8515],[121.6887,-4.8501],[121.6991,-4.8557],[121.7095,-4.855],[121.716,-4.8525],[121.725,-4.8466],[121.7345,-4.837],[121.741,-4.8372],[121.7479,-4.84],[121.7499,-4.8428],[121.7592,-4.8442],[121.7679,-4.8382],[121.779,-4.8379],[121.7805,-4.8437],[121.7854,-4.8441],[121.7885,-4.8372],[121.8015,-4.8343],[121.8156,-4.8359],[121.8223,-4.8385],[121.8315,-4.8473],[121.835,-4.8533],[121.8506,-4.8597],[121.8618,-4.8682],[121.8654,-4.8677],[121.8737,-4.8739],[121.8956,-4.8808],[121.9045,-4.8825],[121.9158,-4.8805],[121.9269,-4.8826],[121.9341,-4.8825],[121.9415,-4.8874],[121.9551,-4.8882],[121.966,-4.8916],[121.9722,-4.8916],[121.9773,-4.8945],[121.9783,-4.8981],[121.9837,-4.9015],[121.9867,-4.8969],[121.9918,-4.8934],[121.9973,-4.892],[122.0017,-4.886],[122.0064,-4.886],[122.0054,-4.8922],[122.0028,-4.8983],[122.0071,-4.8981],[122.0113,-4.8938],[122.0201,-4.893],[122.023,-4.8887],[122.02,-4.8811],[122.0243,-4.8768],[122.0253,-4.8709],[122.0298,-4.87],[122.0332,-4.8737],[122.0432,-4.8743],[122.0443,-4.8671],[122.0543,-4.8586],[122.066,-4.853],[122.0675,-4.8498],[122.0741,-4.8517],[122.0738,-4.8447],[122.0792,-4.8371],[122.0887,-4.8301],[122.0915,-4.8252],[122.1021,-4.8235],[122.1017,-4.8211],[122.1083,-4.8179],[122.1071,-4.8118],[122.1028,-4.8132],[122.0939,-4.8082],[122.0944,-4.8008],[122.0914,-4.7971],[122.0855,-4.7964],[122.076,-4.7921],[122.0685,-4.786],[122.0677,-4.7812],[122.0643,-4.7762],[122.0584,-4.7752],[122.0497,-4.7708],[122.0444,-4.7639],[122.0407,-4.7561],[122.0404,-4.7456],[122.0376,-4.7355],[122.0342,-4.7284],[122.0317,-4.718],[122.0327,-4.7139],[122.0326,-4.695],[122.0312,-4.6923],[122.0332,-4.6815],[122.0341,-4.6691],[122.0326,-4.6546],[122.0382,-4.6509],[122.0456,-4.6385],[122.0515,-4.6265],[122.0496,-4.6213],[122.0551,-4.6191],[122.0608,-4.613],[122.0676,-4.5949],[122.0666,-4.5873],[122.071,-4.5822],[122.0694,-4.5783],[122.0725,-4.5762],[122.077,-4.5668],[122.0837,-4.5559],[122.0844,-4.5505],[122.0876,-4.5478],[122.0895,-4.5426],[122.0966,-4.5432],[122.1065,-4.5403],[122.1081,-4.5341]]]}},{"type":"Feature","properties":{"mhid":"1332:439","alt_name":"KABUPATEN WAKATOBI","latitude":-5.31934,"longitude":123.5948,"sample_value":709},"geometry":{"type":"MultiLineString","coordinates":[[[124.6108,-6.1324],[124.6207,-6.12],[124.6213,-6.1131],[124.6157,-6.1107],[124.6081,-6.1164],[124.6056,-6.1293],[124.6108,-6.1324]],[[123.994,-5.876],[123.9896,-5.8777],[123.9866,-5.8856],[123.9802,-5.8963],[123.9795,-5.902],[123.9818,-5.9137],[123.974,-5.9256],[123.9729,-5.9361],[123.9825,-5.9493],[123.9836,-5.9571],[123.989,-5.9674],[124.0109,-5.9747],[124.0207,-5.9792],[124.0355,-5.9784],[124.0456,-5.9764],[124.051,-5.9768],[124.0581,-5.98],[124.0617,-5.9879],[124.0608,-6.0064],[124.059,-6.0109],[124.0515,-6.0214],[124.0514,-6.0284],[124.0552,-6.04],[124.0598,-6.0414],[124.073,-6.0358],[124.0777,-6.0357],[124.0852,-6.0308],[124.089,-6.0264],[124.0915,-6.0205],[124.0911,-6.0117],[124.0882,-6.0009],[124.0744,-5.9755],[124.0682,-5.956],[124.0573,-5.9308],[124.051,-5.9118],[124.0466,-5.9053],[124.0389,-5.9018],[124.0232,-5.8892],[124.0143,-5.887],[123.9976,-5.8767],[123.994,-5.876]],[[123.9094,-5.802],[123.905,-5.8053],[123.9183,-5.8154],[123.9219,-5.8171],[123.9369,-5.8182],[123.941,-5.8231],[123.9462,-5.8215],[123.946,-5.8149],[123.9496,-5.8069],[123.9461,-5.8055],[123.9397,-5.8071],[123.9302,-5.8051],[123.9261,-5.8054],[123.9155,-5.8024],[123.9094,-5.802]],[[123.9109,-5.7752],[123.914,-5.7707],[123.906,-5.7621],[123.9012,-5.76],[123.8977,-5.7612],[123.8958,-5.7697],[123.8985,-5.7765],[123.9095,-5.7773],[123.9109,-5.7752]],[[123.8785,-5.7696],[123.8762,-5.7675],[123.8757,-5.7601],[123.8713,-5.7518],[123.8695,-5.7521],[123.8711,-5.765],[123.868,-5.7722],[123.8698,-5.774],[123.8785,-5.7696]],[[123.9131,-5.7194],[123.9081,-5.7183],[123.898,-5.7272],[123.8954,-5.7379],[123.8971,-5.743],[123.901,-5.7476],[123.903,-5.7532],[123.907,-5.7548],[123.91,-5.7623],[123.9217,-5.7731],[123.9305,-5.7772],[123.9513,-5.7817],[123.9636,-5.7801],[123.9759,-5.786],[123.986,-5.7868],[123.9911,-5.7819],[123.9941,-5.771],[124.0069,-5.763],[124.009,-5.7583],[124.0058,-5.7555],[123.9941,-5.753],[123.9888,-5.7502],[123.9783,-5.7422],[123.9667,-5.7307],[123.9585,-5.7268],[123.9396,-5.7216],[123.933,-5.7212],[123.9236,-5.7188],[123.9131,-5.7194]],[[124.0663,-5.6352],[124.0592,-5.624],[124.0547,-5.6225],[124.0486,-5.6248],[124.0482,-5.6294],[124.0573,-5.6354],[124.0527,-5.6375],[124.0471,-5.6362],[124.0498,-5.6455],[124.0581,-5.6522],[124.0732,-5.6715],[124.0796,-5.6759],[124.0866,-5.6733],[124.0888,-5.6656],[124.087,-5.6585],[124.0791,-5.6494],[124.0729,-5.6469],[124.0663,-5.6352]],[[124.0136,-5.6227],[124.0118,-5.6281],[124.0171,-5.6307],[124.0251,-5.6289],[124.0304,-5.6263],[124.0278,-5.6218],[124.0225,-5.6236],[124.0136,-5.6227]],[[123.8183,-5.5823],[123.8184,-5.5912],[123.8199,-5.5991],[123.823,-5.5964],[123.8251,-5.5845],[123.8183,-5.5823]],[[123.8357,-5.5483],[123.8259,-5.5499],[123.8284,-5.5549],[123.834,-5.5578],[123.8305,-5.5612],[123.8302,-5.5701],[123.8335,-5.577],[123.8309,-5.5811],[123.8333,-5.586],[123.8385,-5.5877],[123.8453,-5.5875],[123.8538,-5.5897],[123.8649,-5.5944],[123.8728,-5.5925],[123.8777,-5.585],[123.8841,-5.5841],[123.8842,-5.5739],[123.8809,-5.5707],[123.8696,-5.5647],[123.8649,-5.5685],[123.8583,-5.5652],[123.8588,-5.5593],[123.8495,-5.5574],[123.8479,-5.5525],[123.8427,-5.5514],[123.8383,-5.5544],[123.8357,-5.5483]],[[123.8693,-5.5332],[123.8647,-5.5333],[123.8595,-5.54],[123.8517,-5.5451],[123.8519,-5.5527],[123.8613,-5.5569],[123.8683,-5.5549],[123.871,-5.5481],[123.8674,-5.5463],[123.8697,-5.542],[123.8712,-5.5338],[123.8693,-5.5332]],[[123.7108,-5.5233],[123.7151,-5.5185],[123.7155,-5.512],[123.713,-5.5076],[123.7039,-5.5066],[123.7044,-5.51],[123.6985,-5.5136],[123.695,-5.5204],[123.699,-5.5248],[123.7039,-5.5259],[123.7108,-5.5233]],[[123.759,-5.4874],[123.757,-5.4848],[123.752,-5.4884],[123.741,-5.4863],[123.7402,-5.489],[123.751,-5.4962],[123.755,-5.493],[123.759,-5.4974],[123.759,-5.4874]],[[123.7091,-5.4755],[123.7059,-5.4742],[123.6916,-5.472],[123.6921,-5.4748],[123.6984,-5.4803],[123.72,-5.5165],[123.755,-5.5436],[123.7621,-5.5526],[123.7619,-5.5585],[123.7709,-5.5666],[123.7758,-5.5783],[123.779,-5.5817],[123.7834,-5.5917],[123.7862,-5.5939],[123.7948,-5.5958],[123.803,-5.5952],[123.815,-5.6017],[123.82,-5.602],[123.818,-5.5897],[123.8136,-5.5866],[123.8105,-5.5793],[123.813,-5.5756],[123.8208,-5.5724],[123.8266,-5.5716],[123.8277,-5.568],[123.8271,-5.5594],[123.822,-5.5599],[123.812,-5.5585],[123.806,-5.5469],[123.7898,-5.5341],[123.7845,-5.5284],[123.7824,-5.5241],[123.778,-5.5209],[123.7752,-5.5142],[123.7709,-5.5108],[123.7686,-5.5047],[123.7592,-5.5021],[123.7568,-5.4974],[123.7474,-5.4959],[123.7373,-5.49],[123.7344,-5.4817],[123.726,-5.478],[123.7176,-5.4799],[123.7091,-5.4755]],[[123.7728,-5.4578],[123.7617,-5.4589],[123.7602,-5.4748],[123.762,-5.4769],[123.773,-5.4701],[123.7778,-5.4721],[123.7805,-5.4757],[123.7862,-5.4752],[123.7802,-5.4673],[123.7778,-5.4671],[123.7728,-5.4578]],[[123.6195,-5.4051],[123.6133,-5.4022],[123.6111,-5.4066],[123.5981,-5.4063],[123.5857,-5.4098],[123.588,-5.4155],[123.5996,-5.4231],[123.6102,-5.4287],[123.6202,-5.4316],[123.6294,-5.4355],[123.6384,-5.4331],[123.643,-5.4265],[123.6437,-5.4219],[123.6384,-5.418],[123.6321,-5.4165],[123.6243,-5.4084],[123.6195,-5.4051]],[[123.6024,-5.3999],[123.5987,-5.3925],[123.5924,-5.3933],[123.5909,-5.4014],[123.6024,-5.3999]],[[123.6382,-5.3936],[123.6418,-5.3855],[123.6397,-5.3838],[123.6307,-5.3872],[123.6302,-5.3919],[123.6382,-5.3936]],[[123.5372,-5.3492],[123.535,-5.3456],[123.529,-5.3484],[123.532,-5.3556],[123.539,-5.3524],[123.5372,-5.3492]],[[123.4804,-5.3303],[123.4765,-5.3268],[123.4673,-5.3256],[123.463,-5.3303],[123.4692,-5.3448],[123.4737,-5.3495],[123.4746,-5.3538],[123.48,-5.3597],[123.4889,-5.3632],[123.4957,-5.364],[123.5037,-5.3681],[123.5043,-5.3702],[123.5198,-5.3738],[123.5272,-5.3805],[123.5352,-5.3813],[123.5413,-5.3779],[123.5398,-5.3735],[123.5309,-5.3756],[123.5283,-5.3716],[123.5292,-5.3676],[123.525,-5.3631],[123.5208,-5.3626],[123.512,-5.3552],[123.5093,-5.3545],[123.4998,-5.3444],[123.5013,-5.3407],[123.4961,-5.3357],[123.4849,-5.3311],[123.4804,-5.3303]],[[124.3358,-5.325],[124.3294,-5.3262],[124.3348,-5.3405],[124.3475,-5.3521],[124.3533,-5.352],[124.3559,-5.3482],[124.3534,-5.3378],[124.3408,-5.3268],[124.3358,-5.325]],[[123.6629,-5.3076],[123.6657,-5.3061],[123.667,-5.2993],[123.6653,-5.2899],[123.6605,-5.29],[123.6608,-5.3064],[123.6629,-5.3076]],[[123.5755,-5.2472],[123.5714,-5.2467],[123.5634,-5.2489],[123.5565,-5.2493],[123.544,-5.2475],[123.532,-5.2478],[123.5263,-5.2511],[123.521,-5.2569],[123.5192,-5.2675],[123.5274,-5.2925],[123.5274,-5.3028],[123.5296,-5.317],[123.5378,-5.328],[123.5404,-5.3419],[123.5463,-5.3509],[123.5517,-5.3538],[123.559,-5.3596],[123.5711,-5.3718],[123.5814,-5.3835],[123.5937,-5.3863],[123.5964,-5.3883],[123.6057,-5.3872],[123.6104,-5.3815],[123.6162,-5.3853],[123.6197,-5.3848],[123.631,-5.3766],[123.6376,-5.3741],[123.6421,-5.369],[123.6426,-5.3648],[123.6386,-5.3522],[123.6385,-5.3398],[123.6454,-5.322],[123.6478,-5.3126],[123.6494,-5.2966],[123.6447,-5.2878],[123.6376,-5.2822],[123.6285,-5.2724],[123.609,-5.2627],[123.5886,-5.2489],[123.5835,-5.247],[123.5755,-5.2472]]]}},{"type":"Feature","properties":{"mhid":"1332:440","alt_name":"KABUPATEN KOLAKA UTARA","latitude":-3.10452,"longitude":121.12427,"sample_value":95},"geometry":{"type":"MultiLineString","coordinates":[[[120.9883,-2.8313],[120.9872,-2.8399],[120.9891,-2.8455],[120.9927,-2.8484],[120.9954,-2.8569],[120.9969,-2.8684],[121.0007,-2.87],[121.0036,-2.8665],[121.0112,-2.8702],[121.009,-2.8631],[121.0043,-2.8614],[121.0009,-2.8546],[120.997,-2.8534],[120.9937,-2.8486],[120.9917,-2.8408],[120.9946,-2.8363],[121.0011,-2.8389],[121.0083,-2.837],[121.0088,-2.8421],[121.0155,-2.8377],[121.0212,-2.8409],[121.0205,-2.8464],[121.0246,-2.8457],[121.0267,-2.8497],[121.0323,-2.8409],[121.0327,-2.8359],[121.0356,-2.8316],[121.036,-2.8266],[121.0329,-2.8233],[121.0324,-2.8157],[121.0369,-2.8072],[121.0399,-2.8223],[121.0439,-2.8242],[121.0457,-2.8305],[121.0437,-2.8333],[121.0437,-2.8482],[121.0452,-2.8523],[121.047,-2.8675],[121.0532,-2.8681],[121.0612,-2.8762],[121.0669,-2.8729],[121.0669,-2.8667],[121.0641,-2.8597],[121.0666,-2.8535],[121.0747,-2.8562],[121.0788,-2.8664],[121.0759,-2.8778],[121.0755,-2.887],[121.0722,-2.8904],[121.0746,-2.8968],[121.0802,-2.8964],[121.0787,-2.906],[121.0871,-2.9171],[121.0906,-2.9235],[121.0897,-2.9276],[121.0854,-2.93],[121.0862,-2.945],[121.0816,-2.9553],[121.082,-2.9602],[121.0853,-2.9643],[121.081,-2.9717],[121.0743,-2.9648],[121.0669,-2.9627],[121.0643,-2.9649],[121.0683,-2.9793],[121.0742,-2.981],[121.0743,-2.9879],[121.0774,-2.9948],[121.085,-2.9984],[121.0903,-2.9986],[121.0867,-3.0049],[121.0849,-3.0126],[121.079,-3.0081],[121.0746,-3.0104],[121.077,-3.0148],[121.0761,-3.0244],[121.0739,-3.0317],[121.0679,-3.0327],[121.0614,-3.0296],[121.0565,-3.0221],[121.0515,-3.0264],[121.0502,-3.0342],[121.0432,-3.0364],[121.0442,-3.0494],[121.0493,-3.0548],[121.056,-3.0573],[121.0594,-3.0694],[121.056,-3.0764],[121.0578,-3.0894],[121.0561,-3.1001],[121.053,-3.1015],[121.0504,-3.1083],[121.0564,-3.1207],[121.061,-3.1447],[121.0556,-3.1518],[121.0568,-3.1648],[121.0558,-3.1681],[121.0559,-3.1845],[121.0568,-3.1883],[121.0607,-3.1922],[121.0605,-3.1954],[121.0691,-3.2049],[121.0626,-3.2076],[121.0504,-3.1991],[121.0332,-3.2066],[121.03,-3.2123],[121.0299,-3.217],[121.0256,-3.2214],[121.0222,-3.2297],[121.0204,-3.2447],[121.0134,-3.2476],[121.0074,-3.2473],[121.0015,-3.2509],[120.9881,-3.2562],[120.9839,-3.2564],[120.9756,-3.2601],[120.9703,-3.2675],[120.968,-3.278],[120.9646,-3.2835],[120.9568,-3.2918],[120.9549,-3.298],[120.9585,-3.303],[120.9568,-3.3119],[120.9578,-3.3269],[120.9564,-3.3305],[120.9494,-3.3316],[120.937,-3.3355],[120.9306,-3.3419],[120.9297,-3.3457],[120.9248,-3.351],[120.9194,-3.3538],[120.913,-3.3699],[120.8943,-3.3873],[120.8939,-3.3918],[120.8958,-3.4032],[120.8887,-3.4096],[120.8887,-3.4125],[120.8806,-3.4177],[120.8748,-3.4189],[120.8657,-3.4282],[120.8645,-3.4389],[120.8672,-3.4453],[120.8674,-3.4501],[120.8706,-3.4563],[120.8692,-3.4633],[120.8713,-3.4725],[120.8709,-3.477],[120.8733,-3.4852],[120.8731,-3.494],[120.8779,-3.5061],[120.876,-3.5103],[120.8813,-3.5202],[120.8802,-3.5309],[120.8836,-3.5385],[120.8882,-3.5433],[120.8929,-3.5444],[120.9061,-3.5591],[120.9088,-3.5684],[120.8984,-3.566],[120.9032,-3.5717],[120.905,-3.5764],[120.9175,-3.5825],[120.9242,-3.5929],[120.9362,-3.5992],[120.9355,-3.6046],[120.9421,-3.6069],[120.9457,-3.6128],[120.9437,-3.6196],[120.9479,-3.6227],[120.9559,-3.6239],[120.9626,-3.6281],[120.9714,-3.6355],[120.9751,-3.6402],[120.9813,-3.6431],[120.9926,-3.6542],[121.0063,-3.6756],[121.0168,-3.6823],[121.0235,-3.683],[121.0235,-3.6865],[121.0307,-3.6927],[121.0358,-3.6931],[121.0411,-3.6969],[121.0494,-3.6964],[121.0576,-3.701],[121.063,-3.7014],[121.0684,-3.7049],[121.0714,-3.7119],[121.0825,-3.7147],[121.089,-3.7222],[121.0919,-3.7298],[121.0967,-3.7327],[121.1,-3.7448],[121.1063,-3.7461]],[[121.1141,-3.7422],[121.1637,-3.7019],[121.1857,-3.691],[121.223,-3.6752],[121.2315,-3.6692],[121.2377,-3.6667],[121.2528,-3.6585]]]}},{"type":"Feature","properties":{"mhid":"1332:441","alt_name":"KABUPATEN BUTON UTARA","latitude":-5.01457,"longitude":122.93015,"sample_value":792},"geometry":{"type":"MultiLineString","coordinates":[[[123.0516,-4.8117],[123.0561,-4.8067],[123.0509,-4.8024],[123.0487,-4.8092],[123.0516,-4.8117]],[[123.0847,-4.7967],[123.0799,-4.794],[123.0762,-4.7968],[123.0742,-4.8057],[123.0665,-4.8009],[123.0594,-4.8056],[123.0516,-4.8132],[123.0447,-4.8145],[123.0462,-4.8198],[123.0497,-4.821],[123.0594,-4.8178],[123.0562,-4.8267],[123.0504,-4.8283],[123.0473,-4.8257],[123.0398,-4.8232],[123.0346,-4.8257],[123.0342,-4.833],[123.0402,-4.8334],[123.0521,-4.8409],[123.054,-4.8472],[123.0585,-4.8481],[123.0617,-4.8421],[123.0715,-4.844],[123.075,-4.8461],[123.083,-4.8473],[123.0845,-4.8535],[123.0935,-4.8527],[123.0968,-4.8495],[123.0954,-4.8451],[123.0908,-4.8387],[123.0962,-4.8358],[123.1016,-4.8397],[123.0975,-4.848],[123.1063,-4.8493],[123.113,-4.8471],[123.1181,-4.828],[123.1186,-4.8208],[123.1173,-4.8144],[123.1181,-4.7999],[123.1159,-4.797],[123.111,-4.7988],[123.1017,-4.7982],[123.091,-4.7949],[123.0847,-4.7967]],[[123.1156,-4.7884],[123.1071,-4.7895],[123.1016,-4.7933],[123.1101,-4.7966],[123.1174,-4.7931],[123.1156,-4.7884]],[[123.04,-4.7705],[123.037,-4.772],[123.0397,-4.7777],[123.0455,-4.7779],[123.0448,-4.7737],[123.0433,-4.7727]],[[123.0433,-4.7727],[123.041,-4.7712]],[[123.041,-4.7712],[123.04,-4.7705]],[[123.1198,-4.7727],[123.1153,-4.7684],[123.1114,-4.7767],[123.113,-4.7812],[123.1174,-4.7826],[123.1249,-4.7755],[123.1198,-4.7727]],[[123.1398,-4.7702],[123.1354,-4.7725],[123.145,-4.7761],[123.155,-4.7753],[123.1398,-4.7702]],[[123.0471,-4.7742],[123.0459,-4.7691],[123.038,-4.7596],[123.0378,-4.7678],[123.041,-4.7712]],[[123.041,-4.7712],[123.042,-4.7722],[123.0433,-4.7727]],[[123.0433,-4.7727],[123.0471,-4.7742]],[[123.0375,-4.7669],[123.0369,-4.759],[123.0328,-4.7542],[123.0296,-4.7658],[123.0318,-4.7696],[123.0375,-4.7669]],[[123.1145,-4.7426],[123.1097,-4.7433],[123.1102,-4.75],[123.1196,-4.7648],[123.1226,-4.7652],[123.1262,-4.7595],[123.1204,-4.7548],[123.1211,-4.7491],[123.1145,-4.7426]],[[123.1278,-4.7281],[123.1219,-4.7409],[123.1296,-4.7465],[123.1348,-4.7453],[123.1349,-4.7357],[123.1278,-4.7281]],[[123.1876,-4.6684],[123.1791,-4.6687],[123.179,-4.6737]],[[123.179,-4.6737],[123.179,-4.6742],[123.1816,-4.6749]],[[123.1816,-4.6749],[123.1832,-4.6753],[123.1876,-4.6684]],[[123.1979,-4.6485],[123.2013,-4.6426],[123.2004,-4.6374],[123.1964,-4.6376],[123.1979,-4.6485]],[[122.9489,-5.1483],[122.951,-5.1437],[122.9652,-5.1318],[122.9673,-5.1224],[122.9733,-5.1154],[122.9702,-5.0931],[122.9686,-5.0896],[122.972,-5.0868],[122.9752,-5.0711],[122.9792,-5.0605],[122.9783,-5.0544],[122.9726,-5.0478],[122.9716,-5.039],[122.9688,-5.0329],[122.9685,-5.0269],[122.9612,-5.0264],[122.9554,-5.0291],[122.9521,-5.0251],[122.9516,-5.0188],[122.9557,-5.0172],[122.9549,-5.0018],[122.958,-4.9948],[122.9636,-4.9679],[122.969,-4.9518],[122.9775,-4.9515],[122.9837,-4.9438],[122.9894,-4.9427],[123.0002,-4.9376],[123.0025,-4.9314],[123.002,-4.9256],[123.0084,-4.909],[123.0077,-4.8883],[123.006,-4.8853],[123.0068,-4.8781],[123.0047,-4.8667],[123.0025,-4.8626],[123.0036,-4.8537],[123.0002,-4.845],[122.9948,-4.837],[122.9938,-4.827],[123.0057,-4.8239],[123.0062,-4.8175],[123.0101,-4.8144],[123.0356,-4.8058],[123.04,-4.8011],[123.0366,-4.7955],[123.0368,-4.7887],[123.0332,-4.7791],[123.0324,-4.7739],[123.0253,-4.7678],[123.0283,-4.7633],[123.0306,-4.7499],[123.0327,-4.746],[123.039,-4.7551],[123.0532,-4.7652],[123.0574,-4.7652],[123.0615,-4.755],[123.0651,-4.7529],[123.0689,-4.7558],[123.0758,-4.7562],[123.0779,-4.7511],[123.0819,-4.7541],[123.0813,-4.7665],[123.0761,-4.7731],[123.0792,-4.776],[123.0746,-4.7834],[123.0773,-4.7913],[123.0832,-4.7921],[123.0906,-4.7913],[123.0929,-4.7943],[123.1002,-4.7946],[123.1036,-4.7912],[123.1049,-4.7842],[123.1095,-4.77],[123.1075,-4.7632],[123.102,-4.7616],[123.1019,-4.7486],[123.1033,-4.7352],[123.11,-4.7281],[123.1142,-4.7305],[123.1144,-4.7231],[123.1061,-4.7138],[123.1083,-4.7063],[123.1124,-4.7047],[123.1144,-4.696],[123.1192,-4.7015],[123.1201,-4.7052],[123.1167,-4.7078],[123.1213,-4.7159],[123.1243,-4.7146],[123.128,-4.7199],[123.1394,-4.723],[123.1429,-4.729],[123.1491,-4.7325],[123.1494,-4.739],[123.1394,-4.7481],[123.1404,-4.7509],[123.1324,-4.7552],[123.144,-4.7572],[123.1549,-4.7601],[123.1626,-4.7636],[123.1605,-4.7698],[123.1634,-4.7724],[123.1763,-4.7723],[123.1742,-4.7761],[123.1698,-4.7786],[123.1689,-4.7923],[123.1711,-4.7969],[123.1722,-4.8093],[123.1723,-4.8276],[123.1736,-4.8368],[123.1832,-4.8505],[123.1909,-4.8568],[123.2008,-4.8613],[123.2051,-4.8669],[123.2104,-4.8648],[123.2131,-4.8586],[123.2138,-4.8404],[123.2133,-4.8245],[123.2084,-4.82],[123.2073,-4.815],[123.2068,-4.8031],[123.2052,-4.7893],[123.2022,-4.7766],[123.2051,-4.7677],[123.2077,-4.7524],[123.207,-4.7353],[123.2098,-4.7304],[123.2091,-4.7259],[123.2114,-4.7208],[123.2122,-4.7133],[123.2111,-4.7019],[123.2094,-4.6959],[123.2055,-4.6688],[123.1997,-4.6566],[123.1954,-4.6596],[123.1985,-4.6686],[123.198,-4.6767],[123.2014,-4.688],[123.1989,-4.6921],[123.1952,-4.6905],[123.1932,-4.6854],[123.1892,-4.6858],[123.1882,-4.6718],[123.1832,-4.6756],[123.1816,-4.6749]],[[123.1816,-4.6749],[123.179,-4.6737]],[[123.179,-4.6737],[123.1777,-4.6731],[123.1763,-4.6629],[123.1773,-4.6607],[123.1863,-4.6581],[123.1863,-4.6533],[123.1836,-4.6502],[123.1827,-4.6416],[123.1879,-4.6457],[123.192,-4.6427],[123.1845,-4.6345],[123.1893,-4.6279],[123.1931,-4.629],[123.1915,-4.6208],[123.1969,-4.6191],[123.2052,-4.623],[123.2088,-4.6155],[123.2082,-4.6119],[123.2007,-4.6073],[123.1987,-4.5988],[123.1905,-4.5869],[123.1916,-4.5819],[123.1843,-4.5707],[123.1791,-4.5595],[123.1796,-4.5561],[123.1704,-4.5431],[123.1618,-4.5399],[123.1561,-4.5232],[123.1488,-4.5174],[123.1459,-4.5133],[123.1463,-4.5059],[123.1405,-4.4982],[123.1415,-4.4862],[123.1388,-4.4822],[123.1308,-4.4842],[123.125,-4.4767],[123.1183,-4.4751],[123.1137,-4.4763],[123.1079,-4.474],[123.109,-4.471],[123.107,-4.4627],[123.0983,-4.4565],[123.0936,-4.4604],[123.0862,-4.4583],[123.0788,-4.4583],[123.0766,-4.4566],[123.0783,-4.4436],[123.0735,-4.4398],[123.0734,-4.4364],[123.0684,-4.4313],[123.0607,-4.4327],[123.057,-4.4302],[123.0522,-4.4301],[123.0451,-4.4247],[123.045,-4.4194],[123.0515,-4.4136],[123.0619,-4.4084],[123.0679,-4.4117],[123.0785,-4.4018],[123.0827,-4.3862],[123.0811,-4.3803],[123.078,-4.3763],[123.0805,-4.3735],[123.0798,-4.3671],[123.0728,-4.3668],[123.0691,-4.3706],[123.0628,-4.3713],[123.0598,-4.3739],[123.0566,-4.3697],[123.0421,-4.3695],[123.0385,-4.3739],[123.032,-4.3779],[123.0267,-4.3787],[123.0176,-4.3849],[123.016,-4.3889],[123.0114,-4.3936],[123.0036,-4.3948],[122.9982,-4.3982],[122.9933,-4.3944],[122.9894,-4.3976],[122.9874,-4.403],[122.9756,-4.4135],[122.9669,-4.4148],[122.9607,-4.4202],[122.9552,-4.4217],[122.9505,-4.4251],[122.945,-4.4319],[122.9464,-4.4356],[122.9361,-4.4441],[122.9268,-4.4482],[122.9226,-4.454],[122.9162,-4.4559],[122.908,-4.4603],[122.9054,-4.465],[122.9053,-4.4711],[122.9004,-4.477],[122.8987,-4.482],[122.89,-4.4907],[122.8896,-4.4972],[122.8798,-4.5038],[122.8805,-4.5163],[122.8674,-4.526],[122.8686,-4.5322],[122.8669,-4.5505],[122.8637,-4.5549],[122.857,-4.5688],[122.8543,-4.5718],[122.8487,-4.5896],[122.848,-4.6044],[122.849,-4.6093]]]}},{"type":"Feature","properties":{"mhid":"1332:442","alt_name":"KABUPATEN KONAWE UTARA","latitude":-3.41552,"longitude":121.99081,"sample_value":32},"geometry":{"type":"MultiLineString","coordinates":[[[122.2825,-3.5587],[122.2785,-3.557],[122.2715,-3.5589],[122.2785,-3.5624],[122.2825,-3.5587]],[[122.3258,-3.5305],[122.306,-3.5306],[122.2937,-3.5333],[122.2948,-3.5378],[122.2914,-3.5431],[122.2906,-3.5477],[122.2861,-3.5497],[122.2813,-3.5635],[122.2754,-3.5668],[122.2803,-3.5791],[122.2795,-3.5861],[122.2821,-3.5909],[122.2875,-3.5884],[122.2888,-3.5798],[122.297,-3.5787],[122.3051,-3.5757],[122.3162,-3.5815],[122.3262,-3.5832],[122.3323,-3.5831],[122.3498,-3.5746],[122.3645,-3.576],[122.3645,-3.5706],[122.3531,-3.569],[122.3391,-3.5646],[122.3342,-3.5619],[122.3357,-3.5506],[122.334,-3.5469],[122.346,-3.547],[122.3457,-3.5409],[122.3356,-3.5388],[122.3333,-3.5345],[122.3291,-3.5348],[122.3258,-3.5305]],[[122.4001,-3.4652],[122.399,-3.4593],[122.3932,-3.463],[122.4001,-3.4652]],[[122.4418,-3.4441],[122.4234,-3.4281],[122.4184,-3.4167],[122.4163,-3.3994],[122.4124,-3.3953],[122.403,-3.4009],[122.4034,-3.4105],[122.4016,-3.4143],[122.4032,-3.4204],[122.402,-3.4272],[122.398,-3.4353],[122.3978,-3.4428],[122.4055,-3.4499],[122.4067,-3.4555],[122.4053,-3.4659],[122.4083,-3.4711],[122.4104,-3.48],[122.4158,-3.4817],[122.4214,-3.4909],[122.425,-3.4942],[122.4266,-3.5005],[122.4315,-3.506],[122.4409,-3.5064],[122.4448,-3.504],[122.4508,-3.5034],[122.4511,-3.4995],[122.4457,-3.4905],[122.4407,-3.4853],[122.4379,-3.4795],[122.4424,-3.4775],[122.4476,-3.4856],[122.4532,-3.4874],[122.4565,-3.4856],[122.4583,-3.479],[122.4674,-3.4765],[122.4662,-3.4653],[122.4543,-3.4561],[122.4525,-3.4508],[122.448,-3.4514],[122.4418,-3.4441]],[[122.4688,-3.8201],[122.473,-3.8188],[122.4704,-3.8086],[122.4574,-3.7948],[122.4495,-3.7783],[122.4466,-3.7682],[122.4435,-3.7501],[122.433,-3.7458],[122.4267,-3.7464],[122.4207,-3.7515],[122.402,-3.7499],[122.3938,-3.7381],[122.3922,-3.7289],[122.3873,-3.7303],[122.383,-3.7393],[122.3677,-3.7506],[122.3625,-3.753],[122.3583,-3.7519],[122.35,-3.7472],[122.3482,-3.7442],[122.3408,-3.7446],[122.3321,-3.7339],[122.3299,-3.7359],[122.3253,-3.733],[122.3255,-3.7263],[122.3196,-3.7207],[122.3164,-3.7198],[122.3121,-3.7099],[122.3062,-3.7081],[122.3039,-3.7049],[122.3046,-3.6975],[122.3015,-3.6924],[122.2929,-3.6855],[122.2883,-3.6865],[122.2842,-3.6841],[122.2765,-3.6834],[122.2697,-3.6806],[122.2662,-3.6771],[122.2643,-3.6708],[122.2579,-3.6683],[122.2539,-3.6642],[122.2466,-3.6646],[122.2469,-3.6555],[122.2359,-3.6502],[122.2291,-3.6453],[122.2192,-3.6319],[122.2123,-3.6279],[122.2064,-3.6217],[122.2016,-3.6116],[122.1963,-3.6084],[122.1958,-3.5916],[122.1975,-3.5836],[122.1974,-3.57],[122.2,-3.565],[122.2063,-3.5667],[122.2117,-3.5626],[122.2185,-3.5625],[122.2257,-3.5648],[122.2312,-3.565],[122.2323,-3.5624],[122.2402,-3.5608],[122.243,-3.5635],[122.25,-3.564],[122.2601,-3.5569],[122.2694,-3.5538],[122.2706,-3.5378],[122.2677,-3.537],[122.2556,-3.5383],[122.2652,-3.5312],[122.2742,-3.5357],[122.275,-3.5396],[122.2724,-3.5457],[122.275,-3.5531],[122.2785,-3.5526],[122.2798,-3.5479],[122.2773,-3.5415],[122.278,-3.5202],[122.2803,-3.5026],[122.2837,-3.4929],[122.2822,-3.4874],[122.2734,-3.4854],[122.2816,-3.4808],[122.287,-3.4922],[122.2951,-3.4792],[122.2956,-3.4748],[122.2992,-3.4683],[122.2979,-3.4643],[122.2932,-3.4621],[122.2914,-3.4517],[122.2839,-3.45],[122.2838,-3.4447],[122.2755,-3.4346],[122.2678,-3.4352],[122.262,-3.4273],[122.258,-3.4242],[122.2617,-3.4155],[122.2554,-3.4175],[122.2489,-3.4156],[122.247,-3.4093],[122.2437,-3.4078],[122.2395,-3.3996],[122.238,-3.3933],[122.2391,-3.3887],[122.252,-3.3881],[122.2521,-3.3935],[122.2587,-3.3979],[122.2651,-3.398],[122.2637,-3.3932],[122.267,-3.3881],[122.2643,-3.3833],[122.268,-3.3796],[122.2742,-3.3806],[122.2751,-3.3739],[122.2773,-3.371],[122.2774,-3.3645],[122.2849,-3.3689],[122.2937,-3.368],[122.294,-3.3742],[122.3032,-3.3796],[122.3101,-3.3847],[122.3144,-3.3826],[122.316,-3.3771],[122.321,-3.374],[122.3282,-3.3733],[122.3282,-3.3766],[122.3229,-3.3813],[122.3297,-3.3868],[122.3301,-3.3908],[122.3267,-3.3946],[122.3275,-3.4024],[122.3194,-3.4078],[122.3243,-3.4104],[122.3256,-3.4147],[122.3224,-3.4181],[122.315,-3.4204],[122.3159,-3.4265],[122.3212,-3.4234],[122.3267,-3.4261],[122.3342,-3.414],[122.344,-3.4079],[122.3497,-3.4098],[122.35,-3.4174],[122.3584,-3.4171],[122.3591,-3.4196],[122.3553,-3.4295],[122.3603,-3.4346],[122.3572,-3.4388],[122.3633,-3.4398],[122.3603,-3.4451],[122.3641,-3.4516],[122.356,-3.4588],[122.3592,-3.4644],[122.3641,-3.4604],[122.3701,-3.4621],[122.3765,-3.4579],[122.3811,-3.4615],[122.3832,-3.4575],[122.3833,-3.4511],[122.3793,-3.4491],[122.3818,-3.4351],[122.3874,-3.4246],[122.3868,-3.4185],[122.3896,-3.4136],[122.3903,-3.4053],[122.3846,-3.4003],[122.3789,-3.3927],[122.3749,-3.39],[122.3762,-3.384],[122.3719,-3.3793],[122.3676,-3.3821],[122.3603,-3.3802],[122.3539,-3.3851],[122.3489,-3.3797],[122.3447,-3.3788],[122.3402,-3.3739],[122.3379,-3.3646],[122.331,-3.3652],[122.3239,-3.3626],[122.3204,-3.3694],[122.3119,-3.3695],[122.3102,-3.3658],[122.305,-3.3642],[122.3014,-3.3604],[122.2932,-3.3594],[122.2934,-3.3518],[122.2954,-3.3488],[122.2923,-3.3447],[122.2892,-3.3321],[122.2915,-3.3257],[122.291,-3.316],[122.2923,-3.3122],[122.2839,-3.3082],[122.2868,-3.3062],[122.2953,-3.2944],[122.2981,-3.2939],[122.3039,-3.2822],[122.3078,-3.2791],[122.3107,-3.2729]]]}},{"type":"Feature","properties":{"mhid":"1332:443","alt_name":"KABUPATEN KOLAKA TIMUR","latitude":-4.01807,"longitude":121.86172,"sample_value":878},"geometry":{"type":"MultiLineString","coordinates":[[[121.2528,-3.6585],[121.2598,-3.6672],[121.2684,-3.6732],[121.2824,-3.6844],[121.2897,-3.6891],[121.2986,-3.6916],[121.3151,-3.6938],[121.3286,-3.6935],[121.3365,-3.6919],[121.3436,-3.6846],[121.3434,-3.6748],[121.3352,-3.6667],[121.3385,-3.6612],[121.3498,-3.6478],[121.3608,-3.6373],[121.3696,-3.6298],[121.391,-3.6165],[121.4079,-3.6109],[121.4189,-3.6122],[121.4275,-3.6191],[121.4312,-3.6255],[121.4332,-3.6373],[121.4323,-3.6473],[121.4287,-3.6747],[121.4279,-3.6935],[121.4309,-3.7024],[121.4394,-3.7085],[121.4515,-3.7147],[121.4555,-3.7158],[121.4597,-3.7201],[121.4738,-3.7223],[121.4856,-3.726],[121.5038,-3.735],[121.5225,-3.7473],[121.5259,-3.7538],[121.534,-3.7576],[121.5396,-3.7645],[121.5487,-3.7806],[121.5571,-3.7891],[121.5699,-3.8005],[121.5854,-3.8098],[121.6015,-3.8202],[121.6062,-3.828],[121.6086,-3.846],[121.6082,-3.8541],[121.6099,-3.8642],[121.6152,-3.8726],[121.6212,-3.8907],[121.6229,-3.8936],[121.6303,-3.8992],[121.6377,-3.9013],[121.6526,-3.9015],[121.6578,-3.9055],[121.6647,-3.9016],[121.6701,-3.9064],[121.672,-3.9121],[121.6793,-3.9194],[121.6924,-3.9363],[121.6977,-3.9482],[121.6951,-3.9558],[121.6841,-3.9578],[121.6752,-3.963],[121.6741,-3.9684],[121.6763,-3.9768],[121.6904,-3.9894],[121.6962,-3.9926],[121.7053,-3.9941],[121.7184,-3.9977],[121.7393,-4.0193],[121.7576,-4.0393],[121.7621,-4.047],[121.7655,-4.0664],[121.7673,-4.0798],[121.7679,-4.0931],[121.7705,-4.0957],[121.7718,-4.1027],[121.7716,-4.1135],[121.7768,-4.1427],[121.7773,-4.1631],[121.7744,-4.1728],[121.7712,-4.1772],[121.7504,-4.2008],[121.7497,-4.2276],[121.7479,-4.232],[121.7467,-4.2431],[121.7363,-4.247],[121.7343,-4.2575],[121.7371,-4.2602],[121.7379,-4.2677],[121.7506,-4.2698],[121.7585,-4.2749],[121.7659,-4.2852],[121.7755,-4.2943],[121.7894,-4.3391],[121.7943,-4.3536]],[[121.8031,-4.3797],[121.8044,-4.3836],[121.7977,-4.398],[121.7984,-4.4036],[121.8038,-4.4156]]]}},{"type":"Feature","properties":{"mhid":"1332:444","alt_name":"KOTA KENDARI","latitude":-3.98333,"longitude":122.5,"sample_value":698},"geometry":{"type":"MultiLineString","coordinates":[[[122.6044,-3.9758],[122.5996,-3.9835],[122.6065,-3.9832],[122.6111,-3.9876],[122.6111,-3.9921],[122.6182,-3.9907],[122.6176,-3.9857],[122.6136,-3.9836],[122.6114,-3.9775],[122.6044,-3.9758]],[[122.6511,-4.0027],[122.637,-4.0033],[122.6276,-4.0011],[122.6192,-4.0029],[122.6158,-3.9973],[122.6101,-3.9938],[122.6047,-3.9853],[122.5997,-3.9846],[122.5923,-3.9792],[122.5839,-3.9801],[122.5749,-3.9835],[122.5661,-3.9832],[122.5549,-3.9875],[122.5529,-3.9928],[122.5471,-3.9898],[122.5357,-3.9889],[122.5371,-3.9842],[122.53,-3.97],[122.5405,-3.9661],[122.5563,-3.9669],[122.5748,-3.9712],[122.5813,-3.9715],[122.5938,-3.9777],[122.5992,-3.9791],[122.6045,-3.9709],[122.6086,-3.971],[122.6109,-3.967],[122.6088,-3.9628],[122.6202,-3.962],[122.6261,-3.9559],[122.6242,-3.9492]]]}},{"type":"Feature","properties":{"mhid":"1332:352","alt_name":"KABUPATEN TANAH LAUT","latitude":-3.88333,"longitude":114.86667,"sample_value":578},"geometry":{"type":"MultiLineString","coordinates":[[[114.5166,-3.5443],[114.5212,-3.548],[114.5278,-3.5486],[114.54,-3.5527],[114.552,-3.5577],[114.5554,-3.5578],[114.564,-3.5689],[114.571,-3.5745],[114.5741,-3.5798],[114.5872,-3.5957],[114.599,-3.614],[114.6067,-3.6288],[114.6144,-3.6484],[114.6205,-3.6736],[114.6226,-3.6965],[114.6225,-3.7126],[114.6211,-3.7242],[114.6149,-3.7341],[114.6106,-3.7442],[114.6087,-3.7592],[114.607,-3.7836],[114.6072,-3.7958],[114.6039,-3.801],[114.6036,-3.8217],[114.6044,-3.829],[114.6082,-3.8458],[114.6085,-3.8534],[114.6121,-3.8635],[114.6095,-3.8698],[114.6107,-3.8912],[114.6167,-3.9167],[114.6174,-3.924],[114.6209,-3.937],[114.6208,-3.9399],[114.6289,-3.9701],[114.628,-3.9775],[114.631,-3.9883],[114.6347,-4.0054],[114.6389,-4.0334],[114.6383,-4.052],[114.6362,-4.0631],[114.6254,-4.0667],[114.6282,-4.0738],[114.6263,-4.0793],[114.6289,-4.0868],[114.629,-4.1088],[114.6285,-4.1299],[114.6293,-4.1529],[114.6263,-4.1569],[114.619,-4.161],[114.6222,-4.1657],[114.6319,-4.1727],[114.6512,-4.1783],[114.659,-4.1794],[114.683,-4.1792],[114.7076,-4.1719],[114.7281,-4.1627],[114.7467,-4.1529],[114.7518,-4.1491],[114.7608,-4.1449],[114.7707,-4.1387],[114.8033,-4.1197],[114.8201,-4.1124],[114.8397,-4.1017],[114.8602,-4.0917],[114.8735,-4.0842],[114.8881,-4.0778],[114.8986,-4.0714],[114.906,-4.0692],[114.9245,-4.0611],[114.9587,-4.0416],[114.9709,-4.034],[115.0238,-4.0061],[115.0518,-3.9941],[115.0674,-3.9879],[115.0797,-3.9816],[115.0975,-3.976],[115.1119,-3.9722],[115.1211,-3.9706],[115.1251,-3.9673],[115.1307,-3.9655],[115.1384,-3.9611],[115.1506,-3.9555],[115.1951,-3.934],[115.2264,-3.921],[115.2434,-3.9157],[115.2498,-3.9152],[115.2522,-3.912],[115.2596,-3.9094],[115.2656,-3.9048],[115.2768,-3.901],[115.295,-3.8934],[115.3241,-3.8823],[115.332,-3.8786],[115.3409,-3.8761],[115.3508,-3.8719],[115.3744,-3.8638]]]}},{"type":"Feature","properties":{"mhid":"1332:445","alt_name":"KOTA BAUBAU","latitude":-5.477,"longitude":122.6166,"sample_value":467},"geometry":{"type":"MultiLineString","coordinates":[[[122.6312,-5.4189],[122.6255,-5.4201],[122.624,-5.4228],[122.6226,-5.4322],[122.6236,-5.4374],[122.6277,-5.4357],[122.6309,-5.4301],[122.6312,-5.4189]],[[122.6861,-5.321],[122.6811,-5.322],[122.6743,-5.3162],[122.6686,-5.3213],[122.6544,-5.3242],[122.6482,-5.3358],[122.6485,-5.3421],[122.6458,-5.3463],[122.6483,-5.3574],[122.6419,-5.3645],[122.6301,-5.3871],[122.6208,-5.3983],[122.6186,-5.406],[122.631,-5.4083],[122.6377,-5.4081],[122.6433,-5.4152],[122.6487,-5.4248],[122.6502,-5.4365],[122.6395,-5.4524],[122.6341,-5.4572],[122.6275,-5.4597],[122.6212,-5.4576],[122.6139,-5.4571],[122.606,-5.4539],[122.6037,-5.4556],[122.596,-5.4553],[122.5921,-5.4579],[122.5863,-5.4672],[122.5779,-5.4721],[122.5726,-5.478],[122.5652,-5.4813],[122.5602,-5.4969],[122.5571,-5.5011],[122.5591,-5.5059],[122.5563,-5.5151],[122.5571,-5.5191],[122.5667,-5.5228],[122.5699,-5.5259],[122.5736,-5.5382]]]}},{"type":"Feature","properties":{"mhid":"1332:446","alt_name":"KABUPATEN BOALEMO","latitude":0.62689,"longitude":122.3568,"sample_value":464},"geometry":{"type":"MultiLineString","coordinates":[[[122.5295,0.501],[122.5255,0.4981],[122.5234,0.4918],[122.529,0.4886],[122.5333,0.4903],[122.5356,0.4971],[122.5295,0.501]],[[122.4453,0.5018],[122.44,0.5002],[122.4429,0.4945],[122.4496,0.4944],[122.4497,0.5017],[122.4453,0.5018]],[[122.1195,0.4962],[122.1247,0.4924],[122.1281,0.4925],[122.1361,0.4873],[122.1449,0.4832],[122.1476,0.4803],[122.1476,0.4712],[122.1587,0.4696],[122.1631,0.4709],[122.1686,0.47],[122.1804,0.4772],[122.1883,0.478],[122.1915,0.4797],[122.1979,0.4743],[122.2045,0.475],[122.2181,0.4837],[122.2224,0.4844],[122.2273,0.482],[122.2331,0.486],[122.2361,0.4832],[122.248,0.4824],[122.2569,0.4851],[122.2611,0.4793],[122.2686,0.4743],[122.2811,0.4751],[122.2831,0.4791],[122.2906,0.4782],[122.2935,0.4808],[122.2898,0.4855],[122.2996,0.484],[122.3042,0.4902],[122.3126,0.4946],[122.3174,0.4948],[122.3172,0.5017],[122.3218,0.4991],[122.3229,0.4935],[122.3269,0.4927],[122.3294,0.5041],[122.3343,0.5012],[122.3384,0.494],[122.3524,0.4966],[122.3477,0.502],[122.3505,0.5063],[122.3562,0.5104],[122.3594,0.5059],[122.3663,0.5031],[122.3701,0.5062],[122.3744,0.5131],[122.3813,0.517],[122.3823,0.5139],[122.3882,0.5133],[122.3899,0.5199],[122.3963,0.5194],[122.4062,0.5169],[122.4058,0.5093],[122.4138,0.5115],[122.4168,0.5086],[122.4126,0.5057],[122.413,0.5022],[122.419,0.5024],[122.4227,0.5057],[122.4284,0.5049],[122.4359,0.4999],[122.4384,0.5041],[122.4442,0.5074],[122.4424,0.5133],[122.4478,0.5172],[122.45,0.5073],[122.4579,0.5062],[122.4686,0.5063],[122.468,0.5012],[122.4764,0.5037],[122.4815,0.5012],[122.4956,0.5018],[122.4962,0.5079],[122.5018,0.5057],[122.5071,0.5087],[122.5082,0.5038],[122.5124,0.4982],[122.5175,0.4973],[122.5129,0.5093],[122.5148,0.5111],[122.5203,0.5017],[122.5238,0.5053],[122.5287,0.5063],[122.535,0.5032],[122.5441,0.5078],[122.5446,0.5046],[122.54,0.4942],[122.5457,0.4898],[122.552,0.4906],[122.5565,0.4961],[122.5577,0.5004],[122.552,0.5113],[122.5581,0.5113],[122.5659,0.5137],[122.5653,0.5077],[122.5597,0.5019],[122.5651,0.495],[122.5734,0.4927],[122.5903,0.4974],[122.5945,0.5027],[122.5931,0.5084],[122.603,0.5065],[122.5969,0.4998],[122.5931,0.4979],[122.5937,0.4941],[122.601,0.4937],[122.6092,0.4871],[122.6179,0.4893],[122.6248,0.4862],[122.6306,0.4871],[122.6389,0.4822],[122.6436,0.4758],[122.6534,0.4854],[122.6554,0.4948],[122.6506,0.5019],[122.6516,0.5078],[122.6482,0.5111],[122.6495,0.5179]]]}},{"type":"Feature","properties":{"mhid":"1332:447","alt_name":"KABUPATEN GORONTALO","latitude":0.5728,"longitude":122.2337,"sample_value":625},"geometry":{"type":"MultiLineString","coordinates":[[[122.6495,0.5179],[122.6519,0.5157],[122.6607,0.5155],[122.6638,0.5133],[122.6749,0.5128],[122.6772,0.5072],[122.6854,0.5038],[122.6876,0.4988],[122.6851,0.4927],[122.6903,0.4916],[122.6918,0.4737],[122.697,0.4759],[122.701,0.4819],[122.7045,0.4787],[122.7087,0.4811],[122.7194,0.4829],[122.724,0.4853],[122.7261,0.4825],[122.7327,0.4837],[122.7374,0.4861],[122.7417,0.4824],[122.7459,0.4816],[122.7491,0.4842],[122.7623,0.4851],[122.7702,0.4836],[122.7817,0.4937],[122.8042,0.4949],[122.8097,0.4944],[122.8121,0.4899],[122.816,0.4891],[122.8234,0.495],[122.8315,0.4942],[122.8355,0.4923],[122.842,0.4939],[122.866,0.4915],[122.8812,0.4888],[122.8882,0.4859],[122.8955,0.4912],[122.9005,0.4928],[122.9074,0.4926],[122.9124,0.4874],[122.9164,0.4875],[122.9164,0.4922],[122.9274,0.4865],[122.9333,0.4866],[122.9585,0.4928],[122.9664,0.4929],[122.974,0.4905],[122.9784,0.4869],[122.989,0.4852],[122.9947,0.4896],[122.9997,0.4956],[123.0025,0.49],[123.0137,0.4936],[123.0193,0.497],[123.0274,0.4913],[123.0293,0.4954],[123.0354,0.4982],[123.0427,0.4963]]]}},{"type":"Feature","properties":{"mhid":"1332:448","alt_name":"KABUPATEN POHUWATO","latitude":0.7098,"longitude":121.59582,"sample_value":239},"geometry":{"type":"MultiLineString","coordinates":[[[121.8536,0.4309],[121.8512,0.4355],[121.8476,0.4341],[121.8469,0.4302],[121.8536,0.4309]],[[121.5644,0.4858],[121.5593,0.4871],[121.5531,0.4818],[121.5596,0.4765],[121.5653,0.4788],[121.5644,0.4858]],[[121.6255,0.4898],[121.6208,0.4895],[121.6181,0.485],[121.6216,0.4822],[121.6299,0.4834],[121.6255,0.4898]],[[121.519,0.4904],[121.515,0.4864],[121.5219,0.4807],[121.526,0.4842],[121.5244,0.488],[121.519,0.4904]],[[121.7034,0.4849],[121.7095,0.4886],[121.7072,0.4933],[121.7066,0.4996],[121.7003,0.5086],[121.6922,0.5133],[121.6835,0.5098],[121.6799,0.4999],[121.6828,0.4934],[121.6873,0.488],[121.6938,0.4852],[121.7034,0.4849]],[[121.6786,0.5071],[121.6816,0.5117],[121.6771,0.5157],[121.6744,0.5152],[121.6726,0.5087],[121.6786,0.5071]],[[121.3374,0.4736],[121.351,0.4761],[121.3614,0.471],[121.3723,0.4767],[121.3812,0.477],[121.3908,0.4823],[121.3915,0.4782],[121.3983,0.4791],[121.3988,0.4824],[121.4064,0.4868],[121.4038,0.479],[121.407,0.4747],[121.4118,0.4756],[121.4128,0.4865],[121.4226,0.4831],[121.427,0.4841],[121.4278,0.4897],[121.4319,0.4902],[121.4332,0.4954],[121.4407,0.5009],[121.442,0.4967],[121.4369,0.4923],[121.4376,0.4868],[121.4335,0.4823],[121.4392,0.4777],[121.4419,0.4725],[121.4422,0.4673],[121.4492,0.4668],[121.4565,0.4731],[121.4615,0.474],[121.4708,0.4811],[121.4777,0.4845],[121.4888,0.4829],[121.4938,0.4789],[121.5027,0.4891],[121.5069,0.4866],[121.5105,0.4891],[121.5137,0.4951],[121.5183,0.4955],[121.5201,0.5035],[121.5154,0.5136],[121.5194,0.5194],[121.5173,0.5234],[121.5131,0.5256],[121.515,0.533],[121.5212,0.5336],[121.5212,0.5423],[121.5246,0.5455],[121.5261,0.5511],[121.5346,0.5466],[121.5413,0.5443],[121.5441,0.5457],[121.5493,0.5419],[121.5536,0.5425],[121.5553,0.5375],[121.5596,0.5376],[121.5676,0.5332],[121.5739,0.5325],[121.5778,0.5365],[121.5929,0.5374],[121.5969,0.5341],[121.5982,0.529],[121.6025,0.5277],[121.6075,0.5355],[121.6033,0.5378],[121.6018,0.5472],[121.6075,0.5447],[121.6135,0.5476],[121.6189,0.5482],[121.6201,0.5436],[121.6171,0.538],[121.6175,0.5243],[121.621,0.5229],[121.6259,0.5247],[121.6225,0.5359],[121.6318,0.5335],[121.6364,0.5246],[121.6418,0.5253],[121.6423,0.5301],[121.635,0.5377],[121.6372,0.5442],[121.6401,0.5416],[121.6407,0.5366],[121.647,0.5361],[121.6517,0.533],[121.6525,0.5394],[121.6609,0.531],[121.666,0.5293],[121.6665,0.5229],[121.6722,0.5198],[121.6789,0.5208],[121.6897,0.5151],[121.6938,0.5199],[121.7023,0.5223],[121.704,0.5192],[121.7124,0.519],[121.7116,0.5229],[121.7173,0.5239],[121.7212,0.5205],[121.7137,0.512],[121.7192,0.505],[121.7262,0.502],[121.7308,0.4979],[121.7344,0.4914],[121.749,0.4701],[121.7547,0.4647],[121.7539,0.4614],[121.7654,0.4473],[121.7734,0.4404],[121.7909,0.4307],[121.8012,0.4168],[121.8044,0.4091],[121.8112,0.4188],[121.8157,0.4225],[121.8342,0.4233],[121.842,0.4274],[121.8472,0.4346],[121.852,0.4376],[121.857,0.4321],[121.8629,0.4365],[121.8662,0.4369],[121.8684,0.4419],[121.8765,0.4392],[121.8783,0.4369],[121.8903,0.4396],[121.8916,0.4414],[121.9041,0.4443],[121.9135,0.4425],[121.9177,0.4469],[121.9263,0.4449],[121.9322,0.4465],[121.9358,0.4443],[121.9424,0.448],[121.9535,0.4508],[121.963,0.4521],[121.9713,0.4592],[121.9771,0.457],[121.9782,0.4527],[121.9838,0.4551],[121.9859,0.4603],[121.9999,0.4594],[122.0045,0.4642],[122.0108,0.4646],[122.017,0.4679],[122.0268,0.4672],[122.0469,0.4766],[122.0645,0.4794],[122.0816,0.4766],[122.0912,0.4844],[122.0985,0.4842],[122.1036,0.4877],[122.1106,0.4855],[122.1169,0.4885],[122.1138,0.4966],[122.1195,0.4962]]]}},{"type":"Feature","properties":{"mhid":"1332:449","alt_name":"KABUPATEN BONE BOLANGO","latitude":0.50296,"longitude":123.27501,"sample_value":752},"geometry":{"type":"MultiLineString","coordinates":[[[123.0874,0.4803],[123.0963,0.4757],[123.0998,0.4754],[123.1064,0.4676],[123.1141,0.4621],[123.1167,0.4586],[123.1217,0.456],[123.121,0.4524],[123.1262,0.4471],[123.127,0.4417],[123.132,0.4405],[123.1321,0.4347],[123.1401,0.4232],[123.1454,0.423],[123.1444,0.4155],[123.1509,0.4145],[123.1519,0.409],[123.1622,0.3998],[123.1746,0.3983],[123.1767,0.3994],[123.1946,0.394],[123.2076,0.3777],[123.2165,0.3729],[123.217,0.3666],[123.2229,0.3609],[123.2249,0.3538],[123.2283,0.3486],[123.2406,0.345],[123.2462,0.3417],[123.2537,0.3334],[123.2614,0.3309],[123.2674,0.3248],[123.2676,0.3224],[123.2765,0.3241],[123.2826,0.3173],[123.2925,0.3159],[123.2961,0.3204],[123.3008,0.3158],[123.3139,0.3133],[123.3276,0.3128],[123.3388,0.3075],[123.3452,0.306],[123.3543,0.3094],[123.3584,0.3144],[123.361,0.3127],[123.371,0.3118],[123.3814,0.3123],[123.3985,0.3153],[123.4095,0.3136],[123.4154,0.3113],[123.4292,0.3162],[123.4337,0.3161],[123.438,0.3186],[123.4438,0.3275],[123.4605,0.3371],[123.4637,0.3331],[123.4632,0.3296],[123.469,0.3229],[123.4764,0.3166],[123.479,0.3189]]]}},{"type":"Feature","properties":{"mhid":"1332:450","alt_name":"KABUPATEN GORONTALO UTARA","latitude":0.77,"longitude":122.31667,"sample_value":188},"geometry":{"type":"MultiLineString","coordinates":[[[122.8588,0.8991],[122.8542,0.8984],[122.8562,0.8939],[122.8631,0.8916],[122.8745,0.8929],[122.8778,0.8923],[122.8828,0.8859],[122.883,0.8782],[122.8785,0.8701],[122.8783,0.8641],[122.881,0.8604],[122.8865,0.8581],[122.8911,0.8537],[122.895,0.8538],[122.8952,0.859],[122.8983,0.8611],[122.8977,0.8679],[122.8897,0.8741],[122.8929,0.8861],[122.8912,0.8896],[122.8857,0.8904],[122.8834,0.8963],[122.877,0.8973],[122.8689,0.894],[122.8652,0.8985],[122.8588,0.8991]],[[122.7706,0.9133],[122.7668,0.9107],[122.7587,0.9105],[122.7561,0.9057],[122.7659,0.8977],[122.7706,0.8926],[122.7749,0.8915],[122.7786,0.8851],[122.7841,0.8818],[122.7856,0.8765],[122.7902,0.8738],[122.7971,0.877],[122.7989,0.874],[122.8071,0.8751],[122.8057,0.8834],[122.8075,0.8869],[122.8124,0.8905],[122.8062,0.8942],[122.8032,0.8912],[122.7976,0.8929],[122.7954,0.8979],[122.7922,0.896],[122.7894,0.9025],[122.7847,0.9035],[122.7783,0.8989],[122.776,0.9004],[122.7753,0.9111],[122.7706,0.9133]],[[122.6624,1.003],[122.6535,0.9983],[122.6548,0.9927],[122.6588,0.9926],[122.6652,0.9872],[122.6661,1.0006],[122.6624,1.003]],[[123.1154,0.9241],[123.1141,0.9261],[123.0997,0.9276],[123.0953,0.9303],[123.0937,0.923],[123.0984,0.9208],[123.0965,0.9133],[123.0855,0.9101],[123.084,0.9144],[123.0806,0.9152],[123.0816,0.9208],[123.0853,0.9227],[123.0851,0.9299],[123.076,0.9225],[123.0754,0.9172],[123.0674,0.9166],[123.0643,0.9218],[123.0601,0.9191],[123.0568,0.9227],[123.0529,0.9332],[123.0484,0.9354],[123.047,0.9395],[123.0419,0.939],[123.0399,0.9334],[123.0359,0.9323],[123.0204,0.9339],[123.015,0.9381],[123.0118,0.9442],[123.0038,0.9431],[122.9975,0.944],[122.9971,0.9485],[123.0002,0.9539],[122.9943,0.9619],[122.9862,0.9679],[122.9763,0.9658],[122.97,0.9672],[122.9623,0.9648],[122.9547,0.9638],[122.945,0.9648],[122.939,0.9592],[122.9427,0.9524],[122.9398,0.9444],[122.9463,0.9398],[122.9545,0.9381],[122.9567,0.9363],[122.9688,0.9383],[122.976,0.9408],[122.9751,0.9364],[122.9664,0.9329],[122.962,0.9271],[122.9459,0.9128],[122.9506,0.9055],[122.9485,0.9014],[122.9511,0.8982],[122.9468,0.8952],[122.9448,0.8904],[122.9402,0.8923],[122.9352,0.889],[122.924,0.8755],[122.9269,0.8724],[122.9262,0.8683],[122.9214,0.8674],[122.9211,0.8606],[122.9099,0.8561],[122.905,0.8525],[122.9008,0.8525],[122.8936,0.8429],[122.8885,0.8416],[122.8801,0.8312],[122.871,0.8264],[122.8636,0.8282],[122.8597,0.8267],[122.858,0.8203],[122.8605,0.8141],[122.8587,0.8085],[122.8517,0.8093],[122.8496,0.8027],[122.8447,0.8024],[122.8407,0.8119],[122.8427,0.8146],[122.8397,0.8218],[122.836,0.8194],[122.8299,0.8198],[122.8254,0.8274],[122.8262,0.8323],[122.8237,0.8392],[122.8172,0.8312],[122.813,0.836],[122.8114,0.841],[122.8083,0.8421],[122.8054,0.8363],[122.7961,0.8348],[122.7945,0.842],[122.7912,0.8475],[122.8004,0.8454],[122.7997,0.8518],[122.7938,0.8601],[122.7881,0.8609],[122.7893,0.8648],[122.7722,0.8796],[122.7668,0.8737],[122.7692,0.8664],[122.7667,0.8624],[122.7633,0.8621],[122.7598,0.8661],[122.7563,0.8646],[122.7516,0.8697],[122.7525,0.8748],[122.7482,0.8748],[122.7419,0.8802],[122.7378,0.8802],[122.7322,0.8705],[122.7274,0.8738],[122.7225,0.8706],[122.7211,0.8668],[122.7132,0.8674],[122.7137,0.8753],[122.7157,0.8815],[122.7201,0.8864],[122.7123,0.892],[122.7064,0.8881],[122.6993,0.8892],[122.6945,0.8958],[122.6893,0.894],[122.6827,0.8997],[122.6811,0.9082],[122.679,0.9126],[122.6743,0.915],[122.6714,0.9232],[122.6689,0.9256],[122.6638,0.935],[122.6585,0.9337],[122.6577,0.9403],[122.6506,0.9479],[122.6395,0.9421],[122.634,0.9506],[122.6278,0.9539],[122.6225,0.9541],[122.623,0.9626],[122.6188,0.9613],[122.6149,0.9545],[122.6163,0.9519],[122.6146,0.9458],[122.6097,0.9447],[122.6023,0.9525],[122.5945,0.9544],[122.5867,0.953],[122.5719,0.9598],[122.5639,0.9592],[122.5508,0.9671],[122.5505,0.9704],[122.5432,0.9714],[122.5388,0.9696],[122.5268,0.9756],[122.5176,0.9791],[122.512,0.98],[122.5051,0.9853],[122.494,0.9874],[122.4875,0.9909],[122.4879,0.9937],[122.4838,0.9997],[122.4765,0.9995],[122.4701,1.0103],[122.4703,1.0147],[122.4618,1.0177],[122.4643,1.022],[122.4579,1.0286],[122.4523,1.0319],[122.447,1.0301],[122.4409,1.0238],[122.4397,1.0202],[122.4449,1.0172],[122.4407,1.0134],[122.4451,0.9992],[122.4404,0.9984],[122.4362,0.9943],[122.429,0.9943],[122.4204,0.9913],[122.411,0.9938],[122.4102,0.9993],[122.406,1.0039],[122.4011,1.0047],[122.4013,1.0082],[122.3931,1.0138],[122.3894,1.0032],[122.3833,1.0044],[122.3772,0.9993],[122.3745,0.9948],[122.3702,0.9934],[122.3619,0.9962],[122.3623,1.0018],[122.3589,1.0052],[122.3594,1.0099],[122.3501,1.0143],[122.3502,1.0213],[122.3461,1.0217],[122.3377,1.0283],[122.3359,1.0315],[122.3364,1.0409],[122.3289,1.0371],[122.3297,1.0303],[122.3281,1.0261],[122.3308,1.0222],[122.3257,1.0194],[122.3194,1.0203],[122.3162,1.017],[122.3175,1.0135],[122.3153,1.0057],[122.3103,1.0069],[122.3026,1.0033],[122.297,1.0081],[122.2907,1.0051],[122.2846,1.0045],[122.2714,1.0096],[122.2682,1.0128],[122.2621,1.0126],[122.255,1.0028],[122.2485,1.0032],[122.2481,1.0065],[122.2419,1.0101],[122.2382,1.0053],[122.2385,0.9971],[122.236,0.9939],[122.2272,0.993],[122.2221,0.9983],[122.2213,1.0081],[122.2235,1.0114],[122.2284,1.013],[122.2223,1.0253],[122.2177,1.0209],[122.213,1.0192],[122.2092,1.0206],[122.1997,1.0272],[122.1937,1.0358],[122.1955,1.0385]]]}},{"type":"Feature","properties":{"mhid":"1332:451","alt_name":"KOTA GORONTALO","latitude":0.53333,"longitude":123.1,"sample_value":86},"geometry":{"type":"MultiLineString","coordinates":[[[123.0427,0.4963],[123.0491,0.4933],[123.0487,0.5005],[123.0513,0.5038],[123.0586,0.507],[123.0627,0.5058],[123.0689,0.4978],[123.0739,0.4936],[123.0783,0.4922],[123.0785,0.4886],[123.0855,0.4865],[123.0874,0.4803]]]}},{"type":"Feature","properties":{"mhid":"1332:452","alt_name":"KABUPATEN MAJENE","latitude":-3.15,"longitude":118.86667,"sample_value":562},"geometry":{"type":"MultiLineString","coordinates":[[[118.8783,-2.9227],[118.876,-2.9231],[118.8751,-2.9339],[118.8711,-2.9438],[118.8688,-2.9462],[118.8697,-2.9558],[118.857,-2.9785],[118.8497,-2.9875],[118.8481,-2.9918],[118.8489,-3.0024],[118.8477,-3.0075],[118.8505,-3.0111],[118.8549,-3.0114],[118.8571,-3.0195],[118.8606,-3.0217],[118.8592,-3.0279],[118.8607,-3.0318],[118.8518,-3.05],[118.8485,-3.0533],[118.8443,-3.0644],[118.8396,-3.0814],[118.8313,-3.0854],[118.8296,-3.0883],[118.8245,-3.089],[118.8196,-3.086],[118.8162,-3.0865],[118.8128,-3.083],[118.8084,-3.0827],[118.8046,-3.0797],[118.8019,-3.0717],[118.7963,-3.0719],[118.7969,-3.081],[118.7923,-3.0844],[118.7886,-3.0836],[118.7859,-3.0794],[118.7804,-3.079],[118.7776,-3.0836],[118.7784,-3.0893],[118.7764,-3.0927],[118.7763,-3.1043],[118.7776,-3.1101],[118.7816,-3.1189],[118.7804,-3.1212],[118.789,-3.135],[118.799,-3.1439],[118.808,-3.1476],[118.8129,-3.1544],[118.8164,-3.1556],[118.8166,-3.1598],[118.8202,-3.1636],[118.8267,-3.1651],[118.8298,-3.1705],[118.8294,-3.1805],[118.8324,-3.1858],[118.8338,-3.1923],[118.8365,-3.1955],[118.8365,-3.2017],[118.8402,-3.2098],[118.838,-3.2194],[118.8337,-3.2226],[118.8342,-3.2258],[118.8286,-3.2322],[118.8348,-3.2462],[118.8343,-3.2524],[118.836,-3.2597],[118.8406,-3.2627],[118.8438,-3.2757],[118.8464,-3.2827],[118.8512,-3.2861],[118.8523,-3.2943],[118.8564,-3.2963],[118.8573,-3.3056],[118.8535,-3.3122],[118.8474,-3.3132],[118.8435,-3.3197],[118.8416,-3.3329],[118.8443,-3.3396],[118.8513,-3.3425],[118.8514,-3.3456],[118.8449,-3.3536],[118.8445,-3.3634],[118.8482,-3.3708],[118.8443,-3.3772],[118.8457,-3.3806],[118.8499,-3.3827],[118.849,-3.3891],[118.8594,-3.3999],[118.8683,-3.4173],[118.87,-3.4272],[118.8783,-3.4408],[118.8794,-3.4478],[118.8782,-3.4561],[118.8774,-3.4722],[118.8873,-3.4855],[118.8926,-3.4839],[118.8951,-3.487],[118.8951,-3.4929],[118.8931,-3.4978],[118.8946,-3.5026],[118.8998,-3.5097],[118.9013,-3.5153],[118.9062,-3.5252],[118.9097,-3.5284],[118.9152,-3.5372],[118.9217,-3.5401],[118.9268,-3.5489],[118.9278,-3.5585],[118.9326,-3.563],[118.9351,-3.569],[118.9426,-3.5688],[118.9455,-3.5642],[118.9448,-3.5577],[118.95,-3.5495],[118.9591,-3.5506],[118.9678,-3.5449],[118.9781,-3.5493],[118.9805,-3.5566],[118.9935,-3.5648],[119.0012,-3.5618],[118.9953,-3.5552],[118.9967,-3.5466],[119.0057,-3.533]]]}},{"type":"Feature","properties":{"mhid":"1332:453","alt_name":"KABUPATEN POLEWALI MANDAR","latitude":-3.3,"longitude":119.16667,"sample_value":487},"geometry":{"type":"MultiLineString","coordinates":[[[119.3712,-3.4673],[119.3627,-3.4712],[119.3638,-3.4839],[119.3719,-3.4841],[119.3735,-3.4808],[119.3697,-3.4766],[119.3717,-3.4721],[119.3712,-3.4673]],[[119.4185,-3.4691],[119.4147,-3.4672],[119.4081,-3.4743],[119.4167,-3.4757],[119.4185,-3.4691]],[[119.3907,-3.4649],[119.3891,-3.4698],[119.3931,-3.4768],[119.395,-3.4763],[119.3946,-3.4664],[119.3907,-3.4649]],[[119.0057,-3.533],[119.0184,-3.5203],[119.0207,-3.5164],[119.03,-3.5137],[119.0375,-3.5163],[119.0416,-3.5155],[119.0467,-3.5112],[119.0571,-3.5051],[119.0647,-3.5025],[119.0786,-3.5049],[119.0883,-3.5089],[119.1018,-3.5128],[119.1069,-3.5165],[119.1191,-3.5126],[119.125,-3.5015],[119.1356,-3.4941],[119.1543,-3.4913],[119.1643,-3.4883],[119.1736,-3.4888],[119.1854,-3.4919],[119.197,-3.4938],[119.2169,-3.4866],[119.2229,-3.4854],[119.2354,-3.486],[119.2403,-3.4808],[119.2421,-3.4724],[119.246,-3.4663],[119.2636,-3.457],[119.2823,-3.4533],[119.2894,-3.4462],[119.2781,-3.4487],[119.2787,-3.4411],[119.2836,-3.4312],[119.288,-3.4292],[119.2929,-3.4311],[119.3003,-3.4258],[119.3071,-3.4252],[119.317,-3.4277],[119.3304,-3.4346],[119.3346,-3.4323],[119.3441,-3.4344],[119.3499,-3.4399],[119.3556,-3.4421],[119.3616,-3.4496],[119.3671,-3.4533],[119.3681,-3.4577],[119.374,-3.4634],[119.3785,-3.4578],[119.3775,-3.4538],[119.3872,-3.45],[119.3896,-3.457],[119.3958,-3.4561],[119.4012,-3.4586],[119.4046,-3.464],[119.4114,-3.4667],[119.4167,-3.4638],[119.4158,-3.461],[119.4224,-3.4575],[119.4269,-3.4593],[119.4273,-3.4719],[119.4307,-3.4745],[119.4361,-3.4743],[119.4398,-3.4783],[119.445,-3.4763],[119.4534,-3.4789],[119.4615,-3.4861],[119.4741,-3.5029]]]}},{"type":"Feature","properties":{"mhid":"1332:455","alt_name":"KABUPATEN MAMUJU","latitude":-2.5,"longitude":119.41667,"sample_value":168},"geometry":{"type":"MultiLineString","coordinates":[[[118.8906,-2.6515],[118.8945,-2.6426],[118.8953,-2.6337],[118.8969,-2.6296],[118.8925,-2.6135],[118.8871,-2.6164],[118.8794,-2.6225],[118.8783,-2.631],[118.8799,-2.6342],[118.8791,-2.6411],[118.8854,-2.6515],[118.8906,-2.6515]],[[117.3807,-2.2721],[117.3798,-2.2666],[117.3743,-2.2648],[117.3708,-2.2694],[117.3735,-2.2756],[117.3798,-2.2765],[117.3807,-2.2721]],[[117.3177,-2.2687],[117.3204,-2.257],[117.315,-2.2551],[117.3105,-2.2587],[117.3068,-2.2651],[117.3123,-2.2714],[117.3177,-2.2687]],[[119.1338,-2.3077],[119.1226,-2.3141],[119.1222,-2.3225],[119.1231,-2.3303],[119.1269,-2.3395],[119.1317,-2.3484],[119.1341,-2.3564],[119.1347,-2.3629],[119.1389,-2.373],[119.1421,-2.3905],[119.1387,-2.4148],[119.1352,-2.4205],[119.1368,-2.4419],[119.1361,-2.4491],[119.1292,-2.4638],[119.1346,-2.4643],[119.1432,-2.4589],[119.1464,-2.4627],[119.1404,-2.474],[119.1323,-2.4763],[119.1277,-2.4756],[119.1252,-2.482],[119.122,-2.4813],[119.1048,-2.4851],[119.1021,-2.4887],[119.0756,-2.4946],[119.0662,-2.498],[119.055,-2.5039],[119.0408,-2.5084],[119.0402,-2.512],[119.034,-2.5244],[119.0323,-2.5396],[119.0338,-2.5511],[119.0336,-2.5593],[119.0346,-2.569],[119.031,-2.5814],[119.0222,-2.5875],[119.0169,-2.5893],[119.0114,-2.5881],[119.0079,-2.5911],[119.0105,-2.5995],[119.0022,-2.6043],[118.9982,-2.6052],[118.9992,-2.6111],[118.9965,-2.6174],[118.9925,-2.6205],[118.9885,-2.6205],[118.9806,-2.6292],[118.9746,-2.6273],[118.967,-2.6278],[118.9669,-2.6321],[118.9595,-2.6408],[118.947,-2.6384],[118.9424,-2.6397],[118.934,-2.6481],[118.9327,-2.6511],[118.9257,-2.6507],[118.9244,-2.6595],[118.9126,-2.6637],[118.912,-2.6667],[118.9039,-2.6684],[118.8943,-2.6672],[118.8839,-2.6766],[118.8738,-2.6808],[118.868,-2.6792],[118.867,-2.6731],[118.8595,-2.6692],[118.8553,-2.6608],[118.848,-2.658],[118.8437,-2.6527],[118.8401,-2.643],[118.8303,-2.6294],[118.8267,-2.6267],[118.8218,-2.6201],[118.8159,-2.6221],[118.8117,-2.6337],[118.8111,-2.642],[118.8052,-2.6502],[118.8002,-2.6535],[118.796,-2.6591],[118.7932,-2.6658],[118.788,-2.6686],[118.7776,-2.6845],[118.7784,-2.7027],[118.7735,-2.7144],[118.7742,-2.7214],[118.7769,-2.7223],[118.7773,-2.7293],[118.7798,-2.7369],[118.7842,-2.7428],[118.7813,-2.7484],[118.7746,-2.7503],[118.7655,-2.7473],[118.7625,-2.7489],[118.7578,-2.7637],[118.7589,-2.767],[118.7558,-2.7798],[118.7582,-2.7907],[118.758,-2.8005],[118.7656,-2.8049],[118.7725,-2.8114],[118.773,-2.8206],[118.7714,-2.8296],[118.7689,-2.835],[118.7697,-2.8446],[118.7674,-2.8536],[118.77,-2.8673],[118.7902,-2.861],[118.8002,-2.8569],[118.804,-2.853],[118.8097,-2.8514],[118.8227,-2.853],[118.8304,-2.8573],[118.8347,-2.8568],[118.8415,-2.8508],[118.8512,-2.8522],[118.8631,-2.861],[118.8799,-2.879],[118.886,-2.8873],[118.8877,-2.9022],[118.8862,-2.9108],[118.8814,-2.9152],[118.8783,-2.9227]],[[117.3942,-2.1015],[117.3888,-2.0969],[117.3834,-2.0969],[117.3816,-2.1015],[117.3852,-2.1068],[117.3906,-2.1069],[117.3942,-2.1015]],[[117.6267,-2.0982],[117.6285,-2.0954],[117.6285,-2.0891],[117.624,-2.0864],[117.6212,-2.0918],[117.6221,-2.099],[117.6267,-2.0982]],[[117.0812,-2.0509],[117.0695,-2.0533],[117.0696,-2.0612],[117.071,-2.0702],[117.0795,-2.0772],[117.0869,-2.0732],[117.0876,-2.0589],[117.0812,-2.0509]],[[117.2717,-2.0575],[117.2699,-2.0503],[117.2654,-2.0475],[117.2609,-2.053],[117.2636,-2.0611],[117.2672,-2.0629],[117.2717,-2.0575]],[[117.3525,-2.064],[117.3561,-2.0577],[117.3535,-2.0414],[117.3463,-2.0414],[117.3427,-2.0477],[117.3435,-2.0568],[117.3489,-2.0649],[117.3525,-2.064]],[[117.3075,-2.0445],[117.3094,-2.0372],[117.3049,-2.0345],[117.2985,-2.0363],[117.2977,-2.0417],[117.3013,-2.0472],[117.3075,-2.0445]],[[117.3388,-2.005],[117.335,-1.9952],[117.3259,-1.9962],[117.327,-2.0022],[117.3308,-2.0064],[117.3388,-2.005]],[[117.2632,-1.9937],[117.26,-1.9856],[117.2471,-1.9868],[117.2452,-1.9944],[117.2478,-1.9976],[117.2609,-1.9992],[117.2632,-1.9937]],[[117.1454,-1.9771],[117.1463,-1.9699],[117.1427,-1.9672],[117.1382,-1.9681],[117.1363,-1.9752],[117.1397,-1.9813],[117.1454,-1.9771]],[[117.3048,-1.9463],[117.3084,-1.9409],[117.303,-1.9346],[117.2994,-1.9399],[117.3012,-1.9463],[117.3048,-1.9463]],[[117.2532,-1.9066],[117.2551,-1.9012],[117.2542,-1.894],[117.2515,-1.8903],[117.2461,-1.8921],[117.2434,-1.8984],[117.2487,-1.9074],[117.2532,-1.9066]]]}},{"type":"Feature","properties":{"mhid":"1332:456","alt_name":"KABUPATEN MAMUJU UTARA","latitude":-1.51639,"longitude":119.42139,"sample_value":219},"geometry":{"type":"MultiLineString","coordinates":[[[119.5615,-0.8514],[119.5478,-0.8643],[119.5436,-0.8646],[119.544,-0.8692],[119.5419,-0.8734],[119.5365,-0.8784],[119.536,-0.8855],[119.5321,-0.8894],[119.5303,-0.8951],[119.5266,-0.8961],[119.5257,-0.9049],[119.5226,-0.9121],[119.5231,-0.9219],[119.5216,-0.9342],[119.517,-0.9449],[119.5086,-0.952],[119.5055,-0.9579],[119.5039,-0.9722],[119.498,-0.985],[119.4899,-0.9932],[119.4809,-0.9985],[119.4738,-1.0206],[119.4715,-1.0366],[119.4689,-1.0425],[119.4688,-1.0512],[119.4673,-1.0599],[119.4606,-1.0738],[119.4543,-1.0805],[119.4453,-1.0969],[119.44,-1.1034],[119.4336,-1.1064],[119.4221,-1.1073],[119.4223,-1.1131],[119.4149,-1.1226],[119.4088,-1.1218],[119.4098,-1.1277],[119.4023,-1.1269],[119.3979,-1.131],[119.3963,-1.1372],[119.3911,-1.1405],[119.3854,-1.1391],[119.3791,-1.1596],[119.3752,-1.1587],[119.3685,-1.165],[119.3678,-1.1704],[119.3591,-1.1739],[119.3513,-1.1724],[119.3497,-1.1692],[119.3418,-1.1664],[119.3394,-1.1689],[119.338,-1.185],[119.3352,-1.1899],[119.3338,-1.1973],[119.3301,-1.204],[119.3287,-1.2117],[119.3258,-1.2191],[119.3226,-1.2197],[119.3196,-1.2333],[119.3142,-1.2444],[119.3115,-1.2566],[119.3028,-1.2735],[119.3172,-1.2956],[119.3213,-1.2978],[119.3236,-1.3103],[119.3259,-1.3149],[119.3318,-1.3428],[119.3324,-1.3495],[119.325,-1.3597],[119.2971,-1.3817],[119.2905,-1.3923],[119.2898,-1.4042],[119.2878,-1.4109],[119.2915,-1.4137],[119.2927,-1.4207],[119.2912,-1.436],[119.2881,-1.45],[119.2916,-1.4601],[119.294,-1.4718],[119.2994,-1.4879],[119.3005,-1.4948],[119.3065,-1.5102],[119.3107,-1.5344],[119.3195,-1.5515],[119.3251,-1.5673],[119.3264,-1.573],[119.3255,-1.59],[119.324,-1.5964],[119.316,-1.608],[119.3027,-1.6106],[119.3026,-1.6238],[119.3091,-1.6256],[119.3099,-1.6301],[119.3042,-1.6348],[119.3039,-1.6402],[119.306,-1.6428],[119.2928,-1.6455],[119.2904,-1.6477],[119.2946,-1.6548],[119.2939,-1.6588],[119.2865,-1.6563],[119.2842,-1.6634],[119.2873,-1.6763],[119.2866,-1.6823],[119.2819,-1.6843],[119.2818,-1.6911],[119.2954,-1.6984],[119.3009,-1.7068],[119.3024,-1.7217],[119.3068,-1.7411],[119.3125,-1.7576],[119.3154,-1.7724],[119.3126,-1.7873],[119.3142,-1.7904],[119.3112,-1.7963],[119.3159,-1.7999],[119.3221,-1.802],[119.3311,-1.8148],[119.3375,-1.8194],[119.341,-1.8184],[119.3439,-1.8104]]]}},{"type":"Feature","properties":{"mhid":"1332:457","alt_name":"KABUPATEN MAMUJU TENGAH","latitude":-2.8212,"longitude":119.2662,"sample_value":579},"geometry":{"type":"MultiLineString","coordinates":[[[119.3273,-1.9351],[119.3247,-1.9353],[119.3233,-1.9414],[119.3243,-1.9452],[119.3343,-1.9429],[119.3354,-1.9378],[119.3312,-1.9379],[119.3273,-1.9351]],[[119.3439,-1.8104],[119.3422,-1.8136],[119.3521,-1.8176],[119.3553,-1.8214],[119.3591,-1.831],[119.359,-1.8367],[119.3642,-1.8564],[119.3628,-1.8615],[119.358,-1.8625],[119.3512,-1.8707],[119.3507,-1.8838],[119.3535,-1.897],[119.3515,-1.9021],[119.3449,-1.9086],[119.3355,-1.914],[119.3387,-1.9192],[119.3343,-1.9262],[119.3363,-1.9303],[119.3405,-1.9305],[119.3415,-1.9347],[119.3384,-1.937],[119.3339,-1.9517],[119.3327,-1.9602],[119.3309,-1.9637],[119.3234,-1.9641],[119.3192,-1.9583],[119.3184,-1.9534],[119.3047,-1.9599],[119.2965,-1.9598],[119.2938,-1.9525],[119.2857,-1.9543],[119.2797,-1.9595],[119.2622,-1.9706],[119.2532,-1.9723],[119.2416,-1.9808],[119.2328,-1.9855],[119.2272,-1.9867],[119.2229,-1.9927],[119.2185,-1.9929],[119.2127,-1.9978],[119.2137,-2.0019],[119.2233,-2.0131],[119.2156,-2.0206],[119.2098,-2.0282],[119.2099,-2.0366],[119.2052,-2.054],[119.2045,-2.0634],[119.1972,-2.0779],[119.1953,-2.0846],[119.1956,-2.09],[119.1925,-2.0966],[119.1971,-2.0976],[119.2004,-2.1069],[119.1981,-2.112],[119.1896,-2.12],[119.1895,-2.1254],[119.1918,-2.1292],[119.1892,-2.1361],[119.1859,-2.1365],[119.1887,-2.1482],[119.1879,-2.1525],[119.1811,-2.1528],[119.1716,-2.1568],[119.1659,-2.1611],[119.1597,-2.1702],[119.1597,-2.1771],[119.1546,-2.1885],[119.1479,-2.1946],[119.1454,-2.2005],[119.1484,-2.2156],[119.152,-2.23],[119.1522,-2.2394],[119.1486,-2.2471],[119.1457,-2.2498],[119.1375,-2.2617],[119.1302,-2.2768],[119.1284,-2.2888],[119.1286,-2.2959],[119.1338,-2.3077]]]}},{"type":"Feature","properties":{"mhid":"1332:458","alt_name":"KABUPATEN MALUKU TENGGARA BARAT","latitude":-7.61186,"longitude":131.38,"sample_value":468},"geometry":{"type":"MultiLineString","coordinates":[[[131.0912,-8.0844],[131.0912,-8.0775],[131.0866,-8.0752],[131.0834,-8.0801],[131.0821,-8.0857],[131.0912,-8.0844]],[[131.049,-8.0902],[131.0418,-8.0859],[131.0348,-8.0726],[131.0313,-8.0717],[131.0166,-8.0751],[131.0113,-8.0813],[131.0013,-8.0879],[130.9987,-8.0934],[130.9904,-8.1059],[130.9871,-8.1095],[130.9852,-8.1213],[130.9873,-8.1236],[130.9975,-8.1259],[131.0044,-8.1257],[131.0046,-8.1298],[131.0002,-8.1378],[130.9916,-8.1394],[130.9877,-8.1434],[130.9815,-8.1417],[130.9801,-8.1341],[130.9748,-8.1315],[130.965,-8.1321],[130.9503,-8.1363],[130.9451,-8.1362],[130.94,-8.1315],[130.938,-8.1216],[130.9311,-8.127],[130.9251,-8.1301],[130.9182,-8.1373],[130.915,-8.1513],[130.9176,-8.1569],[130.9199,-8.1696],[130.9231,-8.1792],[130.9277,-8.184],[130.9306,-8.1927],[130.9273,-8.2032],[130.9238,-8.2084],[130.9107,-8.214],[130.901,-8.2151],[130.898,-8.2137],[130.8899,-8.2137],[130.8864,-8.2121],[130.875,-8.2156],[130.8652,-8.2219],[130.8532,-8.2356],[130.8312,-8.2523],[130.8234,-8.2527],[130.8223,-8.2568],[130.8141,-8.268],[130.8078,-8.2751],[130.8015,-8.2787],[130.7984,-8.2867],[130.8014,-8.2903],[130.7992,-8.2945],[130.7955,-8.294],[130.7897,-8.3029],[130.7873,-8.3107],[130.7816,-8.3154],[130.7714,-8.3181],[130.7648,-8.3233],[130.7584,-8.3322],[130.7603,-8.3373],[130.7713,-8.3411],[130.7755,-8.3404],[130.7849,-8.3323],[130.7946,-8.3403],[130.8121,-8.3382],[130.8201,-8.3363],[130.8198,-8.3303],[130.8295,-8.3158],[130.8359,-8.3146],[130.8491,-8.3066],[130.8541,-8.3049],[130.8639,-8.2989],[130.8777,-8.2957],[130.8822,-8.2938],[130.8866,-8.2895],[130.8922,-8.2877],[130.9011,-8.2805],[130.8948,-8.2674],[130.895,-8.2594],[130.8853,-8.257],[130.8842,-8.252],[130.8921,-8.2395],[130.9078,-8.2337],[130.9247,-8.2245],[130.9301,-8.2235],[130.943,-8.2243],[130.9526,-8.223],[130.9705,-8.2232],[130.9726,-8.2259],[130.9832,-8.2305],[130.9897,-8.2287],[131.0014,-8.2189],[131.0036,-8.2206],[131.0196,-8.2075],[131.0217,-8.2023],[131.0275,-8.2032],[131.0331,-8.2021],[131.0406,-8.1949],[131.0506,-8.1983],[131.0551,-8.1983],[131.0624,-8.192],[131.0688,-8.1884],[131.0782,-8.1804],[131.089,-8.1741],[131.0935,-8.1763],[131.1054,-8.1698],[131.1092,-8.1654],[131.1148,-8.1626],[131.119,-8.1637],[131.127,-8.1576],[131.1283,-8.1587],[131.1387,-8.1527],[131.143,-8.1517],[131.1521,-8.1435],[131.154,-8.1403],[131.1601,-8.1356],[131.1674,-8.1268],[131.1705,-8.1204],[131.1677,-8.1096],[131.1538,-8.1086],[131.1485,-8.1071],[131.141,-8.1074],[131.1351,-8.1094],[131.128,-8.1079],[131.1147,-8.1179],[131.1136,-8.1244],[131.1091,-8.13],[131.0961,-8.1377],[131.0946,-8.1406],[131.081,-8.15],[131.074,-8.1522],[131.0702,-8.1554],[131.0672,-8.1543],[131.0685,-8.143],[131.0819,-8.1317],[131.083,-8.127],[131.0885,-8.1212],[131.0865,-8.1182],[131.0814,-8.1041],[131.0693,-8.1006],[131.0609,-8.0919],[131.0534,-8.0899],[131.049,-8.0902]],[[131.2127,-8.046],[131.209,-8.045],[131.2047,-8.0482],[131.2,-8.0568],[131.1962,-8.0701],[131.1951,-8.0775],[131.2026,-8.0739],[131.2099,-8.0669],[131.214,-8.0586],[131.2167,-8.0494],[131.2127,-8.046]],[[131.2836,-8.0265],[131.2786,-8.0362],[131.2772,-8.0441],[131.2726,-8.0493],[131.2813,-8.055],[131.2862,-8.0509],[131.2853,-8.0477],[131.2919,-8.0337],[131.2836,-8.0265]],[[131.1068,-8.038],[131.1069,-8.0323],[131.1041,-8.0295],[131.0963,-8.0271],[131.0976,-8.0178],[131.0972,-8.012],[131.0918,-8.0103],[131.088,-8.0066],[131.0824,-8.0076],[131.0849,-8.013],[131.0828,-8.0156],[131.082,-8.0299],[131.0861,-8.0405],[131.0876,-8.0399],[131.0975,-8.0469],[131.1004,-8.0467],[131.1051,-8.0424],[131.1068,-8.038]],[[131.2564,-7.9925],[131.2576,-7.9904],[131.2558,-7.9834],[131.2516,-7.9862],[131.2535,-7.9935],[131.2564,-7.9925]],[[131.4587,-7.839],[131.4495,-7.8412],[131.4508,-7.845],[131.4566,-7.8444],[131.4587,-7.839]],[[131.4328,-7.8361],[131.4329,-7.8405],[131.4407,-7.8463],[131.4447,-7.8458],[131.442,-7.8388],[131.4375,-7.8359],[131.4328,-7.8361]],[[131.0177,-7.7447],[131.0122,-7.7448],[131.01,-7.7477],[131.0082,-7.7558],[131.0122,-7.7576],[131.0177,-7.7447]],[[130.9563,-7.7405],[130.9496,-7.7433],[130.9498,-7.7531],[130.9562,-7.7587],[130.9596,-7.7587],[130.9613,-7.747],[130.96,-7.7424],[130.9563,-7.7405]],[[131.0987,-7.7349],[131.1016,-7.7308],[131.0973,-7.7276],[131.0934,-7.7208],[131.0889,-7.7264],[131.0856,-7.7356],[131.082,-7.7366],[131.0751,-7.7447],[131.0729,-7.7497],[131.0684,-7.7505],[131.0711,-7.7587],[131.0789,-7.7642],[131.0848,-7.7635],[131.0914,-7.7513],[131.0907,-7.7444],[131.0856,-7.7415],[131.0856,-7.7371],[131.0966,-7.7466],[131.0987,-7.7349]],[[131.1062,-7.7154],[131.0953,-7.7162],[131.1007,-7.7232],[131.102,-7.7189],[131.1062,-7.7154]],[[131.0553,-7.6448],[131.0503,-7.6466],[131.0476,-7.6502],[131.0493,-7.6545],[131.0544,-7.6535],[131.0568,-7.6469],[131.0553,-7.6448]],[[130.9477,-7.6417],[130.9524,-7.6396],[130.9517,-7.6362],[130.9469,-7.6345],[130.9445,-7.6374],[130.9477,-7.6417]],[[131.1018,-7.6317],[131.0952,-7.6311],[131.0964,-7.6387],[131.0892,-7.638],[131.0759,-7.6407],[131.0666,-7.6416],[131.0627,-7.6431],[131.0562,-7.6545],[131.0484,-7.6587],[131.0456,-7.6515],[131.0335,-7.6593],[131.0299,-7.6632],[131.0153,-7.6701],[131.0114,-7.6701],[130.9852,-7.6763],[130.9799,-7.6755],[130.9729,-7.6766],[130.9672,-7.6863],[130.9652,-7.6873],[130.971,-7.6975],[130.9678,-7.7192],[130.9677,-7.7246],[130.9709,-7.7294],[130.9706,-7.7342],[130.974,-7.7379],[130.9775,-7.7375],[130.9874,-7.7319],[130.9942,-7.7368],[131.0042,-7.7325],[131.0084,-7.727],[131.0123,-7.7261],[131.0169,-7.7219],[131.0213,-7.7213],[131.0247,-7.724],[131.0362,-7.7223],[131.0444,-7.7196],[131.045,-7.7147],[131.038,-7.7127],[131.0356,-7.7097],[131.0294,-7.7066],[131.0304,-7.6999],[131.0362,-7.6974],[131.0387,-7.6932],[131.0368,-7.6847],[131.0437,-7.6825],[131.0523,-7.6783],[131.0637,-7.6768],[131.0582,-7.6817],[131.0623,-7.6905],[131.0573,-7.6995],[131.0737,-7.7026],[131.0838,-7.7016],[131.0898,-7.6991],[131.0958,-7.6944],[131.1,-7.6893],[131.1045,-7.6904],[131.1079,-7.6817],[131.1144,-7.6734],[131.1154,-7.6702],[131.1129,-7.6641],[131.1162,-7.6589],[131.1152,-7.6532],[131.1227,-7.6346],[131.1143,-7.6332],[131.1046,-7.6331],[131.1018,-7.6317]],[[130.9809,-7.5198],[130.9791,-7.517],[130.9719,-7.5295],[130.9659,-7.5345],[130.9656,-7.5369],[130.9789,-7.5436],[130.9847,-7.5442],[130.9843,-7.537],[130.9927,-7.5286],[130.9913,-7.5244],[130.9873,-7.5226],[130.9866,-7.5191],[130.9809,-7.5198]],[[131.1556,-7.5164],[131.1508,-7.5209],[131.1558,-7.5259],[131.162,-7.5218],[131.1583,-7.5167],[131.1556,-7.5164]],[[131.1378,-7.5106],[131.134,-7.5099],[131.1266,-7.5154],[131.1246,-7.5256],[131.1332,-7.5367],[131.1525,-7.5382],[131.1548,-7.531],[131.1494,-7.5244],[131.1484,-7.518],[131.1403,-7.5106],[131.1378,-7.5106]],[[130.9954,-7.5033],[130.9944,-7.5127],[131.0005,-7.5166],[131.0028,-7.5119],[130.9999,-7.507],[130.9954,-7.5033]],[[130.8499,-7.4923],[130.8449,-7.4922],[130.8494,-7.4985],[130.8417,-7.4988],[130.8361,-7.5033],[130.8365,-7.5125],[130.8386,-7.5183],[130.8367,-7.5311],[130.8372,-7.5356],[130.8417,-7.5419],[130.8359,-7.5418],[130.8313,-7.5534],[130.843,-7.5612],[130.8524,-7.5624],[130.8566,-7.5646],[130.8719,-7.5643],[130.8812,-7.5701],[130.8844,-7.5739],[130.8936,-7.5759],[130.9016,-7.5736],[130.9111,-7.5735],[130.9177,-7.5686],[130.928,-7.5672],[130.928,-7.5642],[130.942,-7.5481],[130.943,-7.5427],[130.9476,-7.5454],[130.95,-7.553],[130.9527,-7.553],[130.9712,-7.5624],[130.9807,-7.5586],[130.9801,-7.5549],[130.9746,-7.5534],[130.9636,-7.545],[130.9592,-7.5465],[130.9551,-7.5452],[130.9528,-7.5395],[130.9614,-7.5321],[130.9661,-7.5326],[130.9709,-7.5289],[130.9743,-7.5239],[130.9753,-7.5177],[130.9664,-7.5155],[130.9701,-7.5114],[130.9731,-7.515],[130.9804,-7.5136],[130.9825,-7.5103],[130.9755,-7.5045],[130.9646,-7.5046],[130.9579,-7.5093],[130.9573,-7.5167],[130.9521,-7.5218],[130.9495,-7.5207],[130.9433,-7.5234],[130.9351,-7.5234],[130.9344,-7.5205],[130.9268,-7.5185],[130.9138,-7.519],[130.905,-7.5147],[130.8941,-7.5134],[130.8922,-7.5116],[130.8761,-7.5098],[130.8743,-7.5047],[130.8636,-7.5036],[130.8591,-7.5],[130.8543,-7.5007],[130.8499,-7.4923]],[[130.8116,-7.4762],[130.8154,-7.4872],[130.8207,-7.4938],[130.829,-7.4943],[130.8233,-7.481],[130.8158,-7.4768],[130.8116,-7.4762]],[[131.1979,-7.4177],[131.191,-7.4182],[131.1879,-7.4216],[131.1919,-7.4259],[131.1946,-7.4202],[131.1979,-7.4177]],[[131.1543,-7.3982],[131.1377,-7.3993],[131.1258,-7.4014],[131.1025,-7.4098],[131.0819,-7.4127],[131.0798,-7.4165],[131.0732,-7.4141],[131.0696,-7.4153],[131.0582,-7.4146],[131.0475,-7.4153],[131.0343,-7.4192],[131.0291,-7.4197],[131.0207,-7.4161],[131.011,-7.4185],[131.0056,-7.4178],[130.9923,-7.4235],[130.9876,-7.423],[130.9819,-7.425],[130.9734,-7.4322],[130.9722,-7.4382],[130.9645,-7.4557],[130.9659,-7.4644],[130.964,-7.4803],[130.9661,-7.4886],[130.9729,-7.4938],[130.976,-7.4943],[130.9831,-7.4916],[130.9914,-7.497],[130.9954,-7.4971],[130.9989,-7.5001],[131.0028,-7.4987],[131.0052,-7.4936],[131.0244,-7.4966],[131.0343,-7.4885],[131.0421,-7.4892],[131.0419,-7.4822],[131.0493,-7.4789],[131.0539,-7.4791],[131.0539,-7.4858],[131.0568,-7.4919],[131.0555,-7.4951],[131.0438,-7.4959],[131.0348,-7.5009],[131.0338,-7.5111],[131.0386,-7.5101],[131.0439,-7.5151],[131.0552,-7.5191],[131.0581,-7.5173],[131.0605,-7.5092],[131.0653,-7.5029],[131.0715,-7.4995],[131.0725,-7.4927],[131.0795,-7.4883],[131.0808,-7.4829],[131.0864,-7.484],[131.09,-7.4821],[131.0926,-7.4749],[131.0986,-7.4732],[131.0994,-7.469],[131.1121,-7.4694],[131.1142,-7.4587],[131.1193,-7.4593],[131.1231,-7.4624],[131.1281,-7.4607],[131.1291,-7.4484],[131.1338,-7.4452],[131.1327,-7.4391],[131.1382,-7.4386],[131.1444,-7.4318],[131.1439,-7.4269],[131.1527,-7.4264],[131.1618,-7.419],[131.1625,-7.4114],[131.1543,-7.3982]],[[131.1722,-7.4053],[131.1789,-7.398],[131.1782,-7.3916],[131.1703,-7.3922],[131.1672,-7.3975],[131.1674,-7.4035],[131.1722,-7.4053]],[[131.3225,-7.3849],[131.3169,-7.3854],[131.3135,-7.3936],[131.3125,-7.403],[131.3184,-7.41],[131.3234,-7.4115],[131.3251,-7.4074],[131.3232,-7.3997],[131.3249,-7.3939],[131.3225,-7.3849]],[[131.2586,-7.3101],[131.2569,-7.3054],[131.2592,-7.3019],[131.2533,-7.2988],[131.2451,-7.3044],[131.2439,-7.3076],[131.2389,-7.3108],[131.2428,-7.3185],[131.2397,-7.3249],[131.2421,-7.3274],[131.2387,-7.3319],[131.2384,-7.3364],[131.2284,-7.334],[131.2249,-7.3284],[131.2204,-7.3299],[131.2239,-7.3465],[131.2216,-7.3489],[131.2094,-7.3468],[131.2052,-7.3497],[131.2044,-7.3541],[131.2131,-7.3583],[131.2152,-7.3628],[131.2221,-7.3609],[131.2276,-7.3636],[131.2333,-7.3696],[131.2389,-7.3663],[131.2482,-7.3664],[131.2534,-7.3686],[131.2609,-7.374],[131.2662,-7.375],[131.2719,-7.37],[131.2635,-7.3663],[131.2568,-7.3583],[131.2592,-7.3527],[131.2636,-7.3533],[131.2664,-7.3502],[131.2699,-7.3404],[131.275,-7.3378],[131.28,-7.3424],[131.2898,-7.3355],[131.2995,-7.3347],[131.2961,-7.3268],[131.2888,-7.3218],[131.2867,-7.3188],[131.282,-7.3206],[131.2866,-7.3259],[131.2836,-7.3308],[131.2713,-7.3251],[131.2673,-7.3176],[131.2627,-7.3162],[131.2586,-7.3101]],[[131.3827,-7.2782],[131.3775,-7.2839],[131.3785,-7.2871],[131.3854,-7.2857],[131.3872,-7.2827],[131.3827,-7.2782]],[[131.401,-7.2472],[131.3923,-7.2498],[131.3977,-7.2533],[131.4051,-7.2508],[131.401,-7.2472]],[[131.4694,-7.2297],[131.4672,-7.2287],[131.4582,-7.2305],[131.4524,-7.2352],[131.4557,-7.2408],[131.4608,-7.2436],[131.4692,-7.2424],[131.4704,-7.2387],[131.4694,-7.2297]],[[131.3959,-7.2143],[131.3917,-7.2042],[131.3917,-7.2002],[131.3878,-7.1963],[131.3842,-7.1974],[131.3823,-7.2028],[131.3858,-7.2119],[131.3813,-7.2159],[131.3791,-7.2215],[131.3729,-7.2236],[131.3696,-7.2222],[131.3618,-7.2263],[131.3632,-7.2295],[131.3724,-7.2351],[131.3793,-7.2366],[131.3821,-7.232],[131.3868,-7.2295],[131.393,-7.2218],[131.3988,-7.2213],[131.3985,-7.2321],[131.4042,-7.2325],[131.4041,-7.2259],[131.3959,-7.2143]],[[131.4868,-7.1626],[131.4857,-7.1597],[131.4729,-7.1648],[131.4699,-7.1677],[131.467,-7.1749],[131.4696,-7.1803],[131.4624,-7.1861],[131.4505,-7.1936],[131.4541,-7.1992],[131.4581,-7.1987],[131.465,-7.2057],[131.4774,-7.2088],[131.487,-7.2054],[131.4899,-7.1938],[131.4861,-7.1895],[131.4863,-7.1815],[131.488,-7.1715],[131.4898,-7.1703],[131.4868,-7.1626]],[[131.4803,-7.1235],[131.4825,-7.118],[131.4772,-7.1158],[131.4753,-7.1231],[131.4803,-7.1235]],[[131.655,-7.1215],[131.6546,-7.1169],[131.6467,-7.1138],[131.6378,-7.1149],[131.6206,-7.1232],[131.6033,-7.1219],[131.5998,-7.1252],[131.5971,-7.123],[131.5825,-7.1215],[131.5783,-7.1258],[131.572,-7.1272],[131.5676,-7.1418],[131.5479,-7.1433],[131.5448,-7.1421],[131.5406,-7.1361],[131.5308,-7.1397],[131.5222,-7.1507],[131.5175,-7.1621],[131.5167,-7.1757],[131.5183,-7.1818],[131.5277,-7.1855],[131.5278,-7.188],[131.52,-7.1913],[131.5212,-7.195],[131.5285,-7.1973],[131.5303,-7.217],[131.5359,-7.2203],[131.5351,-7.2235],[131.5289,-7.2238],[131.53,-7.2294],[131.5222,-7.2333],[131.5101,-7.2316],[131.5029,-7.2359],[131.5,-7.2301],[131.4939,-7.227],[131.4848,-7.2285],[131.4789,-7.232],[131.4812,-7.2351],[131.4719,-7.2371],[131.4714,-7.2435],[131.4667,-7.2475],[131.4646,-7.2525],[131.4704,-7.2534],[131.4706,-7.2569],[131.4664,-7.2622],[131.4586,-7.2617],[131.4565,-7.2682],[131.4533,-7.2712],[131.4516,-7.2799],[131.4525,-7.2851],[131.447,-7.2841],[131.4432,-7.2775],[131.4396,-7.2914],[131.4325,-7.3],[131.4363,-7.3088],[131.4299,-7.3111],[131.4344,-7.321],[131.4341,-7.3249],[131.44,-7.3255],[131.4421,-7.3353],[131.446,-7.3361],[131.4488,-7.3425],[131.4438,-7.3453],[131.4386,-7.341],[131.43,-7.3432],[131.4275,-7.3426],[131.4242,-7.3342],[131.4151,-7.3412],[131.4118,-7.3389],[131.4113,-7.3345],[131.4053,-7.3324],[131.3998,-7.3331],[131.3837,-7.3409],[131.3797,-7.3467],[131.392,-7.3529],[131.3908,-7.355],[131.3819,-7.3571],[131.3783,-7.3603],[131.3786,-7.3667],[131.3749,-7.3666],[131.3711,-7.3626],[131.3656,-7.3668],[131.3702,-7.3711],[131.3722,-7.3786],[131.3811,-7.3849],[131.3807,-7.3892],[131.3755,-7.3952],[131.3639,-7.3974],[131.3599,-7.3955],[131.356,-7.3896],[131.3532,-7.3906],[131.355,-7.3996],[131.3494,-7.4055],[131.3472,-7.4133],[131.3506,-7.4189],[131.3518,-7.4239],[131.3428,-7.4403],[131.3347,-7.4409],[131.328,-7.4361],[131.3243,-7.4285],[131.3229,-7.4224],[131.3242,-7.4179],[131.3197,-7.4141],[131.3119,-7.4172],[131.311,-7.4251],[131.3026,-7.4347],[131.2975,-7.4295],[131.2877,-7.4339],[131.2845,-7.4382],[131.2777,-7.4406],[131.2764,-7.4501],[131.2712,-7.4519],[131.2681,-7.4473],[131.2653,-7.4497],[131.2597,-7.4495],[131.2513,-7.457],[131.2478,-7.4642],[131.2413,-7.4675],[131.2344,-7.4749],[131.231,-7.4831],[131.2266,-7.4859],[131.2281,-7.4902],[131.2275,-7.5011],[131.2236,-7.5247],[131.2169,-7.5408],[131.2079,-7.5569],[131.2017,-7.5592],[131.1948,-7.5739],[131.187,-7.583],[131.1833,-7.5915],[131.1846,-7.5932],[131.1925,-7.5861],[131.1924,-7.5928],[131.1828,-7.5992],[131.1799,-7.6088],[131.1725,-7.6415],[131.1766,-7.6497],[131.1691,-7.6518],[131.1642,-7.6565],[131.1584,-7.6642],[131.1604,-7.6687],[131.1671,-7.6698],[131.1761,-7.6774],[131.1803,-7.6821],[131.1805,-7.6918],[131.1866,-7.6989],[131.2001,-7.6992],[131.2069,-7.6964],[131.2144,-7.6987],[131.2225,-7.7062],[131.2361,-7.7068],[131.2394,-7.7115],[131.2384,-7.7197],[131.2437,-7.7228],[131.2386,-7.7261],[131.2318,-7.717],[131.2284,-7.7166],[131.2158,-7.7189],[131.2083,-7.7211],[131.1933,-7.721],[131.1889,-7.7201],[131.1783,-7.7219],[131.1703,-7.7205],[131.1661,-7.713],[131.1569,-7.7044],[131.149,-7.7009],[131.1408,-7.6921],[131.1374,-7.6816],[131.1322,-7.6763],[131.1261,-7.6769],[131.1208,-7.6847],[131.1114,-7.6954],[131.1081,-7.7014],[131.1068,-7.7125],[131.1088,-7.7297],[131.1063,-7.7392],[131.1152,-7.7332],[131.1183,-7.7353],[131.1185,-7.7467],[131.1133,-7.7498],[131.1176,-7.7533],[131.1229,-7.7509],[131.1287,-7.7452],[131.1361,-7.7435],[131.1384,-7.7403],[131.1458,-7.7403],[131.147,-7.7436],[131.1439,-7.7545],[131.1408,-7.7569],[131.1342,-7.7546],[131.131,-7.7613],[131.1323,-7.7653],[131.1382,-7.7651],[131.1361,-7.7704],[131.1247,-7.7713],[131.1176,-7.7744],[131.1128,-7.7805],[131.1197,-7.7875],[131.1182,-7.7912],[131.1229,-7.7945],[131.1291,-7.7896],[131.1339,-7.7893],[131.1464,-7.7995],[131.1467,-7.8216],[131.1419,-7.8291],[131.1354,-7.8323],[131.1246,-7.8333],[131.1216,-7.8322],[131.1189,-7.8267],[131.1124,-7.8195],[131.1026,-7.8222],[131.1003,-7.8278],[131.0876,-7.8376],[131.0846,-7.8421],[131.0835,-7.8511],[131.0808,-7.8595],[131.0825,-7.8707],[131.0873,-7.8791],[131.0941,-7.8817],[131.0965,-7.8865],[131.1021,-7.8882],[131.1025,-7.8796],[131.1003,-7.875],[131.1041,-7.8688],[131.1067,-7.8758],[131.1058,-7.8816],[131.1086,-7.8902],[131.1148,-7.8903],[131.119,-7.893],[131.1192,-7.8985],[131.1215,-7.9033],[131.1205,-7.912],[131.1168,-7.9246],[131.1154,-7.9345],[131.1094,-7.9479],[131.1066,-7.9501],[131.1029,-7.9599],[131.1029,-7.9657],[131.1057,-7.9721],[131.1037,-7.986],[131.1096,-7.9929],[131.1236,-7.9943],[131.1346,-7.9968],[131.1423,-7.997],[131.148,-7.9923],[131.1569,-7.9897],[131.1694,-7.9888],[131.1774,-7.9915],[131.1832,-7.988],[131.1874,-7.988],[131.202,-7.996],[131.2132,-7.9993],[131.2233,-7.9981],[131.2286,-8.0024],[131.2364,-7.9984],[131.2426,-7.9876],[131.2508,-7.982],[131.2574,-7.9748],[131.2603,-7.9689],[131.2729,-7.9555],[131.275,-7.9482],[131.2705,-7.9415],[131.2709,-7.9358],[131.2742,-7.9302],[131.283,-7.9208],[131.2921,-7.9183],[131.2947,-7.9145],[131.2939,-7.9104],[131.2986,-7.9071],[131.304,-7.9156],[131.2993,-7.9259],[131.2981,-7.9323],[131.3054,-7.9362],[131.3073,-7.9403],[131.3056,-7.9436],[131.309,-7.9552],[131.3065,-7.9609],[131.3012,-7.9684],[131.2966,-7.9771],[131.2967,-7.9797],[131.2916,-7.9879],[131.289,-7.9949],[131.2909,-8.0049],[131.2958,-8.0132],[131.2936,-8.0207],[131.2952,-8.0228],[131.3007,-8.0154],[131.303,-8.0155],[131.3091,-8.0078],[131.3184,-8.0021],[131.3241,-7.9932],[131.3248,-7.9877],[131.331,-7.9834],[131.3369,-7.9847],[131.341,-7.9833],[131.3418,-7.9714],[131.332,-7.9529],[131.3337,-7.9463],[131.3374,-7.9444],[131.3427,-7.9452],[131.3486,-7.9371],[131.3529,-7.9278],[131.3441,-7.929],[131.3302,-7.936],[131.3264,-7.9317],[131.3272,-7.9286],[131.3364,-7.9184],[131.3414,-7.9068],[131.3444,-7.9033],[131.3505,-7.9021],[131.3662,-7.9041],[131.37,-7.9022],[131.3771,-7.8949],[131.3781,-7.8893],[131.3693,-7.8868],[131.364,-7.8885],[131.36,-7.8831],[131.3599,-7.8763],[131.3646,-7.8669],[131.3743,-7.8625],[131.3762,-7.8545],[131.3837,-7.8458],[131.3947,-7.8379],[131.4055,-7.8354],[131.4122,-7.8364],[131.4166,-7.8354],[131.4172,-7.8276],[131.4196,-7.823],[131.4261,-7.819],[131.433,-7.8107],[131.4405,-7.811],[131.4458,-7.8083],[131.452,-7.8089],[131.4619,-7.8067],[131.4643,-7.8001],[131.4623,-7.797],[131.4596,-7.786],[131.4518,-7.7756],[131.4543,-7.7713],[131.464,-7.7694],[131.4654,-7.7763],[131.4754,-7.7807],[131.4809,-7.7783],[131.4808,-7.7698],[131.4785,-7.7663],[131.4822,-7.7616],[131.485,-7.749],[131.4784,-7.7428],[131.4775,-7.7393],[131.4796,-7.7342],[131.4828,-7.7321],[131.486,-7.7255],[131.4949,-7.7241],[131.4976,-7.7281],[131.5102,-7.728],[131.5143,-7.7236],[131.5196,-7.7223],[131.5194,-7.7272],[131.5296,-7.7263],[131.5349,-7.7196],[131.5423,-7.7177],[131.5449,-7.7205],[131.5503,-7.7195],[131.554,-7.716],[131.5535,-7.7121],[131.5605,-7.7071],[131.5638,-7.6982],[131.5631,-7.6936],[131.5702,-7.6865],[131.5725,-7.6806],[131.5794,-7.673],[131.5822,-7.668],[131.5882,-7.6645],[131.5834,-7.6609],[131.5862,-7.6566],[131.5918,-7.6554],[131.5982,-7.6484],[131.6,-7.6416],[131.6074,-7.643],[131.61,-7.6481],[131.6191,-7.6449],[131.624,-7.6299],[131.629,-7.6206],[131.6312,-7.6132],[131.6295,-7.6082],[131.6298,-7.6024],[131.6364,-7.5938],[131.6355,-7.5874],[131.6412,-7.5833],[131.6432,-7.5751],[131.6468,-7.5697],[131.6482,-7.5626],[131.6458,-7.5574],[131.6474,-7.5536],[131.656,-7.5458],[131.6568,-7.5411],[131.6554,-7.535],[131.6585,-7.5287],[131.6604,-7.5192],[131.6644,-7.5096],[131.6564,-7.5041],[131.6482,-7.5042],[131.6494,-7.4949],[131.6563,-7.4916],[131.6591,-7.4957],[131.6661,-7.4949],[131.6693,-7.4877],[131.6644,-7.4836],[131.6646,-7.4779],[131.6695,-7.471],[131.6741,-7.4562],[131.6665,-7.4523],[131.6675,-7.4453],[131.6713,-7.4424],[131.679,-7.4399],[131.6816,-7.4374],[131.6915,-7.432],[131.7003,-7.4287],[131.7033,-7.4231],[131.7037,-7.4173],[131.6983,-7.4143],[131.6949,-7.4203],[131.6911,-7.4185],[131.6836,-7.4233],[131.6784,-7.4232],[131.6762,-7.4269],[131.6675,-7.4329],[131.6651,-7.4299],[131.6643,-7.424],[131.6666,-7.4185],[131.6638,-7.4157],[131.659,-7.4226],[131.656,-7.4178],[131.6551,-7.4118],[131.6599,-7.4045],[131.6583,-7.3987],[131.6513,-7.3991],[131.6442,-7.3977],[131.6442,-7.3926],[131.6475,-7.3867],[131.6577,-7.3846],[131.6648,-7.3867],[131.6737,-7.384],[131.6769,-7.3799],[131.676,-7.3624],[131.6689,-7.3598],[131.6596,-7.3625],[131.6545,-7.3618],[131.6565,-7.3492],[131.6479,-7.3481],[131.6494,-7.3386],[131.6549,-7.3298],[131.6543,-7.3262],[131.649,-7.3229],[131.6459,-7.3065],[131.6365,-7.3032],[131.6345,-7.2876],[131.6363,-7.2821],[131.6344,-7.2731],[131.6281,-7.2616],[131.6296,-7.2508],[131.6316,-7.2484],[131.6433,-7.2463],[131.6482,-7.2417],[131.6499,-7.2363],[131.649,-7.2286],[131.6526,-7.2251],[131.669,-7.2209],[131.6713,-7.2217],[131.674,-7.2281],[131.6867,-7.226],[131.6983,-7.2296],[131.7082,-7.2263],[131.717,-7.221],[131.7269,-7.2205],[131.7385,-7.2173],[131.7414,-7.2152],[131.7453,-7.2083],[131.7454,-7.2048],[131.741,-7.2005],[131.7339,-7.1968],[131.7303,-7.1924],[131.7174,-7.1861],[131.7153,-7.1818],[131.7171,-7.176],[131.7253,-7.1756],[131.7194,-7.171],[131.7169,-7.1618],[131.7122,-7.1579],[131.7078,-7.1571],[131.6948,-7.1577],[131.6891,-7.1597],[131.6898,-7.1533],[131.7048,-7.149],[131.7082,-7.1377],[131.6991,-7.1346],[131.6894,-7.1364],[131.6735,-7.1521],[131.6748,-7.1592],[131.6801,-7.1622],[131.6775,-7.1681],[131.6717,-7.1683],[131.6616,-7.1713],[131.6548,-7.1721],[131.6498,-7.1745],[131.64,-7.1745],[131.6367,-7.1692],[131.6419,-7.1586],[131.6505,-7.1538],[131.6547,-7.1444],[131.6548,-7.137],[131.6563,-7.1318],[131.6542,-7.1243],[131.655,-7.1215]],[[131.9133,-7.1008],[131.908,-7.1081],[131.8985,-7.1086],[131.8838,-7.1052],[131.8741,-7.106],[131.8655,-7.1056],[131.8461,-7.1113],[131.836,-7.1111],[131.8269,-7.1138],[131.8216,-7.1128],[131.8107,-7.113],[131.8096,-7.1116],[131.801,-7.1132],[131.7895,-7.1139],[131.7773,-7.1162],[131.7588,-7.1165],[131.7515,-7.1134],[131.737,-7.1174],[131.7215,-7.1275],[131.7153,-7.1352],[131.7158,-7.141],[131.7109,-7.1521],[131.7146,-7.1578],[131.7188,-7.1584],[131.7218,-7.1621],[131.722,-7.1679],[131.7241,-7.1723],[131.7361,-7.1685],[131.7454,-7.1686],[131.7546,-7.1775],[131.7586,-7.1782],[131.763,-7.1752],[131.7626,-7.1684],[131.7697,-7.1625],[131.7791,-7.1613],[131.7834,-7.1636],[131.797,-7.1654],[131.8029,-7.1704],[131.8071,-7.1601],[131.8143,-7.1578],[131.8401,-7.1597],[131.8426,-7.1585],[131.8521,-7.1596],[131.8681,-7.1635],[131.8784,-7.1711],[131.89,-7.1725],[131.8946,-7.1747],[131.899,-7.1799],[131.9003,-7.1936],[131.8992,-7.2032],[131.906,-7.2175],[131.9093,-7.2193],[131.911,-7.2249],[131.9177,-7.2247],[131.9187,-7.2268],[131.926,-7.2249],[131.9299,-7.2272],[131.9361,-7.2357],[131.9357,-7.2392],[131.9406,-7.2404],[131.9476,-7.2398],[131.9492,-7.2454],[131.9535,-7.247],[131.9683,-7.2416],[131.9733,-7.2371],[131.978,-7.2257],[131.9764,-7.2225],[131.9781,-7.2152],[131.982,-7.2141],[131.9846,-7.2089],[131.9835,-7.2051],[131.9748,-7.2061],[131.9716,-7.2002],[131.9754,-7.1927],[131.9752,-7.1835],[131.9712,-7.1719],[131.9665,-7.1691],[131.9558,-7.1657],[131.9545,-7.1595],[131.9496,-7.1501],[131.9415,-7.1424],[131.9368,-7.1353],[131.9334,-7.1205],[131.9279,-7.1118],[131.9236,-7.1075],[131.9133,-7.1008]],[[131.4469,-7.1324],[131.4475,-7.1228],[131.4542,-7.1196],[131.4523,-7.0975],[131.4448,-7.0926],[131.4367,-7.099],[131.4354,-7.1142],[131.4317,-7.12],[131.4318,-7.1316],[131.4338,-7.1371],[131.4455,-7.1363],[131.4469,-7.1324]],[[131.4476,-7.0838],[131.4447,-7.0743],[131.44,-7.0678],[131.4302,-7.0652],[131.4313,-7.0704],[131.4308,-7.0785],[131.4355,-7.0877],[131.4437,-7.0875],[131.4476,-7.0838]],[[131.9148,-7.0765],[131.9249,-7.075],[131.934,-7.0694],[131.9455,-7.058],[131.9576,-7.0486],[131.96,-7.0446],[131.9629,-7.033],[131.966,-7.0242],[131.9771,-7.0067],[131.9813,-7.0024],[131.986,-7.0007],[132.005,-6.984],[132.0027,-6.9818],[131.9963,-6.9818],[131.9782,-6.9919],[131.9679,-6.9984],[131.9621,-7.0047],[131.9531,-7.0126],[131.9449,-7.026],[131.9368,-7.03],[131.9246,-7.0391],[131.9127,-7.0452],[131.9059,-7.0534],[131.9034,-7.0608],[131.9072,-7.0745],[131.9148,-7.0765]],[[131.5823,-6.9755],[131.5754,-6.9713],[131.5743,-6.9759],[131.5782,-6.9822],[131.5835,-6.9791],[131.5823,-6.9755]],[[131.5131,-6.8705],[131.5057,-6.8659],[131.4837,-6.8649],[131.4815,-6.8694],[131.4779,-6.8712],[131.4739,-6.8697],[131.4679,-6.8781],[131.4679,-6.892],[131.4659,-6.8985],[131.4575,-6.9093],[131.4586,-6.9157],[131.4669,-6.9183],[131.4709,-6.9173],[131.4788,-6.9222],[131.4876,-6.9149],[131.494,-6.9062],[131.497,-6.8982],[131.5065,-6.8936],[131.5098,-6.8878],[131.5141,-6.8772],[131.5131,-6.8705]],[[131.5357,-6.8084],[131.5267,-6.8101],[131.5253,-6.8126],[131.5179,-6.813],[131.5121,-6.8201],[131.5076,-6.8283],[131.52,-6.8301],[131.5264,-6.8282],[131.5326,-6.8192],[131.5357,-6.8084]],[[131.6049,-6.6766],[131.6024,-6.6751],[131.5913,-6.6737],[131.5797,-6.669],[131.5744,-6.669],[131.5668,-6.6779],[131.564,-6.678],[131.559,-6.6855],[131.5586,-6.6927],[131.5616,-6.6945],[131.5635,-6.7031],[131.5547,-6.7135],[131.5503,-6.7125],[131.542,-6.7199],[131.534,-6.7302],[131.5265,-6.7427],[131.5218,-6.7428],[131.5186,-6.7483],[131.5138,-6.7641],[131.5173,-6.7669],[131.5172,-6.7718],[131.5223,-6.7785],[131.5215,-6.7833],[131.5233,-6.7898],[131.5215,-6.7924],[131.5272,-6.8026],[131.5336,-6.8016],[131.5359,-6.7958],[131.543,-6.7968],[131.549,-6.79],[131.5597,-6.7823],[131.5606,-6.7891],[131.5728,-6.7836],[131.5822,-6.7758],[131.5852,-6.771],[131.5869,-6.7611],[131.5915,-6.7566],[131.5827,-6.7521],[131.5742,-6.7575],[131.5625,-6.7553],[131.5578,-6.7519],[131.5585,-6.7452],[131.5552,-6.743],[131.5608,-6.7297],[131.5619,-6.724],[131.5666,-6.7175],[131.5749,-6.7103],[131.5854,-6.7169],[131.5852,-6.7218],[131.5917,-6.7249],[131.5937,-6.7293],[131.599,-6.7279],[131.5971,-6.7221],[131.6066,-6.7108],[131.611,-6.7076],[131.6177,-6.7059],[131.6222,-6.6943],[131.6208,-6.6877],[131.6208,-6.6798],[131.6172,-6.6769],[131.6049,-6.6766]],[[131.5934,-6.6595],[131.5939,-6.6561],[131.5881,-6.6539],[131.5889,-6.6601],[131.5934,-6.6595]]]}},{"type":"Feature","properties":{"mhid":"1332:459","alt_name":"KABUPATEN MALUKU TENGGARA","latitude":-5.75,"longitude":132.73334,"sample_value":127},"geometry":{"type":"MultiLineString","coordinates":[[[132.487,-6.0126],[132.4835,-6.0085],[132.4868,-5.9959],[132.4819,-5.9894],[132.4752,-6.005],[132.4763,-6.0109],[132.4743,-6.0149],[132.4693,-6.0181],[132.4661,-6.0143],[132.4568,-6.0097],[132.4501,-6.0128],[132.4457,-6.0098],[132.4429,-6.0116],[132.4428,-6.0185],[132.4468,-6.0242],[132.4485,-6.0336],[132.4552,-6.0384],[132.4631,-6.0341],[132.4735,-6.0324],[132.4768,-6.0274],[132.4862,-6.0186],[132.487,-6.0126]],[[132.5462,-5.9186],[132.5496,-5.9155],[132.5521,-5.9078],[132.5516,-5.9024],[132.5478,-5.8996],[132.5452,-5.8867],[132.5477,-5.8844],[132.5478,-5.8793],[132.5424,-5.8745],[132.5372,-5.877],[132.5294,-5.8908],[132.528,-5.8948],[132.5309,-5.9118],[132.535,-5.9192],[132.5394,-5.9214],[132.5462,-5.9186]],[[132.5637,-5.871],[132.5661,-5.8705],[132.5711,-5.8608],[132.5647,-5.8576],[132.5601,-5.8532],[132.5554,-5.8415],[132.54,-5.8384],[132.5365,-5.8395],[132.5347,-5.8475],[132.539,-5.8575],[132.5569,-5.8711],[132.5637,-5.871]],[[132.6148,-5.8587],[132.6195,-5.8583],[132.623,-5.8518],[132.6223,-5.8476],[132.6172,-5.8429],[132.616,-5.8352],[132.6091,-5.8337],[132.6063,-5.8395],[132.6004,-5.8439],[132.5995,-5.849],[132.6044,-5.8583],[132.6093,-5.8596],[132.6148,-5.8587]],[[132.5817,-5.8172],[132.5769,-5.817],[132.5762,-5.8206],[132.5808,-5.8264],[132.5909,-5.8314],[132.5946,-5.8378],[132.5981,-5.8395],[132.6033,-5.8335],[132.6071,-5.8313],[132.5941,-5.8178],[132.5817,-5.8172]],[[132.6058,-5.8217],[132.608,-5.8167],[132.604,-5.8089],[132.5992,-5.8124],[132.6017,-5.8206],[132.6058,-5.8217]],[[132.6346,-5.8126],[132.6343,-5.8047],[132.6323,-5.7912],[132.6257,-5.7955],[132.625,-5.8002],[132.6302,-5.813],[132.6346,-5.8126]],[[132.5697,-5.7867],[132.573,-5.7813],[132.5648,-5.7795],[132.563,-5.7852],[132.5697,-5.7867]],[[132.6424,-5.788],[132.6434,-5.7812],[132.641,-5.7765],[132.6377,-5.7826],[132.6377,-5.7865],[132.6424,-5.788]],[[132.6945,-5.8121],[132.7011,-5.8086],[132.702,-5.7978],[132.699,-5.7905],[132.6958,-5.7785],[132.691,-5.7698],[132.6911,-5.7513],[132.6807,-5.7485],[132.6757,-5.7441],[132.6738,-5.7525],[132.6746,-5.7621],[132.672,-5.7655],[132.669,-5.7757],[132.6697,-5.7841],[132.6758,-5.7918],[132.6772,-5.7973],[132.683,-5.8005],[132.6889,-5.8056],[132.6889,-5.8129],[132.6945,-5.8121]],[[132.6633,-5.739],[132.6534,-5.7407],[132.6504,-5.7485],[132.657,-5.7542],[132.659,-5.7471],[132.6633,-5.739]],[[132.5624,-5.7259],[132.5552,-5.7289],[132.5604,-5.7366],[132.5632,-5.737],[132.5665,-5.7325],[132.5624,-5.7259]],[[132.7991,-5.7259],[132.7954,-5.723],[132.7908,-5.7258],[132.7854,-5.7247],[132.7844,-5.728],[132.7904,-5.7289],[132.7925,-5.7318],[132.7915,-5.7365],[132.7995,-5.7543],[132.7945,-5.7609],[132.7985,-5.7671],[132.8034,-5.7687],[132.8035,-5.7619],[132.8009,-5.7487],[132.8019,-5.7299],[132.7991,-5.7259]],[[132.5779,-5.7135],[132.5646,-5.7105],[132.5599,-5.7066],[132.5565,-5.7135],[132.5624,-5.7135],[132.5667,-5.7176],[132.5717,-5.7188],[132.5779,-5.7135]],[[132.7628,-5.7166],[132.7659,-5.7131],[132.7653,-5.7041],[132.7612,-5.7003],[132.7579,-5.7002],[132.7542,-5.704],[132.759,-5.7111],[132.7586,-5.7153],[132.7628,-5.7166]],[[132.6205,-5.707],[132.6247,-5.7014],[132.6212,-5.6967],[132.6155,-5.6961],[132.6126,-5.7008],[132.6146,-5.7065],[132.6205,-5.707]],[[132.7797,-5.6978],[132.7752,-5.6953],[132.7721,-5.6911],[132.7669,-5.6907],[132.7661,-5.6956],[132.7713,-5.7004],[132.7763,-5.7015],[132.7797,-5.6978]],[[132.9966,-5.6432],[132.996,-5.633],[132.994,-5.6292],[132.99,-5.6324],[132.9901,-5.6424],[132.993,-5.6467],[132.9966,-5.6432]],[[132.9839,-5.635],[132.9786,-5.6262],[132.9744,-5.6363],[132.9794,-5.6374],[132.9839,-5.635]],[[132.5981,-5.636],[132.5997,-5.6312],[132.597,-5.627],[132.5822,-5.6244],[132.5813,-5.6262],[132.5929,-5.6364],[132.5981,-5.636]],[[132.7111,-5.6226],[132.7116,-5.6101],[132.7096,-5.6059],[132.7103,-5.5955],[132.7117,-5.5918],[132.6999,-5.5953],[132.6854,-5.6041],[132.6796,-5.6111],[132.6797,-5.6219],[132.6747,-5.6297],[132.6646,-5.6302],[132.6598,-5.6272],[132.6539,-5.6179],[132.6434,-5.6138],[132.6314,-5.6142],[132.6254,-5.6117],[132.6156,-5.5961],[132.6108,-5.5939],[132.6124,-5.6062],[132.6207,-5.6156],[132.6259,-5.6186],[132.6283,-5.6249],[132.636,-5.6375],[132.6374,-5.6456],[132.6377,-5.6562],[132.6348,-5.6654],[132.634,-5.6724],[132.6395,-5.6733],[132.6465,-5.6776],[132.6478,-5.6705],[132.6507,-5.6717],[132.6544,-5.6856],[132.6538,-5.6956],[132.6496,-5.7013],[132.6478,-5.7066],[132.6488,-5.7122],[132.6528,-5.7163],[132.6578,-5.7167],[132.6601,-5.7132],[132.6721,-5.7218],[132.6774,-5.727],[132.6801,-5.7372],[132.6885,-5.7441],[132.696,-5.7516],[132.6987,-5.7568],[132.6994,-5.7725],[132.7012,-5.7754],[132.7012,-5.7841],[132.7056,-5.8034],[132.7081,-5.8108],[132.6972,-5.8125],[132.6987,-5.8325],[132.6957,-5.8393],[132.6931,-5.8409],[132.6851,-5.8412],[132.6812,-5.846],[132.6797,-5.8562],[132.6812,-5.8696],[132.6779,-5.8761],[132.6735,-5.9014],[132.6796,-5.9074],[132.6872,-5.9042],[132.6979,-5.9023],[132.7039,-5.9084],[132.7063,-5.9148],[132.7061,-5.9204],[132.7018,-5.9264],[132.7001,-5.9358],[132.7031,-5.9469],[132.7088,-5.9454],[132.7133,-5.9374],[132.7218,-5.9324],[132.7256,-5.9249],[132.7243,-5.9135],[132.722,-5.9064],[132.7227,-5.8917],[132.7281,-5.8934],[132.7304,-5.9029],[132.725,-5.92],[132.7268,-5.9248],[132.7229,-5.9387],[132.7207,-5.9434],[132.7221,-5.9502],[132.7248,-5.9525],[132.7338,-5.9528],[132.7505,-5.9481],[132.7568,-5.9432],[132.7607,-5.9424],[132.7696,-5.9457],[132.7763,-5.9445],[132.7831,-5.9396],[132.7828,-5.9291],[132.7878,-5.9251],[132.7883,-5.9133],[132.7909,-5.9069],[132.7926,-5.8888],[132.7976,-5.8784],[132.7979,-5.8667],[132.8043,-5.8585],[132.8154,-5.8499],[132.8125,-5.8402],[132.8109,-5.8238],[132.8112,-5.8102],[132.8103,-5.8043],[132.8066,-5.7964],[132.8044,-5.7881],[132.7992,-5.7847],[132.7938,-5.7839],[132.7899,-5.7753],[132.7862,-5.7779],[132.7813,-5.7777],[132.7798,-5.7821],[132.7746,-5.7868],[132.7741,-5.793],[132.7773,-5.8041],[132.7746,-5.8131],[132.7712,-5.8106],[132.7712,-5.8026],[132.7686,-5.783],[132.769,-5.7752],[132.7762,-5.7839],[132.7797,-5.7791],[132.7721,-5.766],[132.7717,-5.7588],[132.7746,-5.7522],[132.7728,-5.7422],[132.7743,-5.736],[132.7792,-5.7315],[132.7752,-5.7196],[132.7673,-5.7165],[132.7601,-5.7187],[132.7605,-5.7261],[132.7656,-5.7458],[132.7618,-5.7443],[132.7588,-5.7328],[132.7529,-5.7265],[132.7473,-5.7146],[132.7467,-5.7033],[132.7433,-5.6939],[132.7383,-5.692],[132.7403,-5.6822],[132.7377,-5.6741],[132.7435,-5.6574],[132.7425,-5.6463],[132.7292,-5.6478],[132.725,-5.6516],[132.724,-5.657],[132.7191,-5.6612],[132.7172,-5.6576],[132.7112,-5.6586],[132.7085,-5.6565],[132.7022,-5.6568],[132.6968,-5.6593],[132.694,-5.6575],[132.6933,-5.6508],[132.6957,-5.645],[132.6945,-5.6388],[132.6976,-5.6354],[132.6982,-5.631],[132.7032,-5.6276],[132.7059,-5.632],[132.7034,-5.6393],[132.7041,-5.6444],[132.7014,-5.652],[132.7067,-5.6511],[132.7101,-5.6538],[132.7133,-5.6425],[132.7091,-5.628],[132.7111,-5.6226]],[[132.5881,-5.5737],[132.5919,-5.572],[132.592,-5.566],[132.5844,-5.5646],[132.5828,-5.5678],[132.5881,-5.5737]],[[132.5693,-5.5683],[132.562,-5.56],[132.5578,-5.5627],[132.5616,-5.5691],[132.5693,-5.5683]],[[132.9577,-5.755],[132.9603,-5.7485],[132.9611,-5.739],[132.9652,-5.7363],[132.9686,-5.731],[132.976,-5.7258],[132.9831,-5.7144],[132.9865,-5.7105],[132.9985,-5.6934],[133.0032,-5.6851],[133.0047,-5.6791],[133.0211,-5.66],[133.0393,-5.6427],[133.0431,-5.6408],[133.0562,-5.6296],[133.0624,-5.6259],[133.0727,-5.6269],[133.0783,-5.625],[133.0837,-5.619],[133.0879,-5.6105],[133.0979,-5.5965],[133.1014,-5.587],[133.1062,-5.5785],[133.1089,-5.5692],[133.1148,-5.5629],[133.1172,-5.5442],[133.1206,-5.5289],[133.1258,-5.5126],[133.1289,-5.4942],[133.1333,-5.4869],[133.1386,-5.4623],[133.1412,-5.4561],[133.1437,-5.4357],[133.1433,-5.4285],[133.1482,-5.424],[133.1499,-5.4064],[133.1498,-5.3983],[133.1556,-5.372],[133.1587,-5.3621],[133.1601,-5.3527],[133.173,-5.3374],[133.1754,-5.3425],[133.1793,-5.3409],[133.1814,-5.3368],[133.1809,-5.3302],[133.1833,-5.3167],[133.1825,-5.3083],[133.1755,-5.3015],[133.1701,-5.2926],[133.1606,-5.2861],[133.1566,-5.2853],[133.1531,-5.2795],[133.1459,-5.2839],[133.1455,-5.2754],[133.147,-5.2707],[133.1435,-5.2688],[133.1331,-5.2751],[133.1295,-5.2786],[133.1272,-5.2848],[133.1235,-5.289],[133.1196,-5.2891],[133.1169,-5.2785],[133.115,-5.2757],[133.1099,-5.2784],[133.1101,-5.2822],[133.1041,-5.2915],[133.0985,-5.3151],[133.0935,-5.3206],[133.0919,-5.3301],[133.0874,-5.3389],[133.0865,-5.3437],[133.0884,-5.3476],[133.0847,-5.363],[133.0814,-5.3706],[133.0758,-5.3776],[133.0674,-5.3846],[133.0659,-5.3916],[133.0672,-5.4083],[133.0658,-5.4143],[133.0599,-5.4199],[133.054,-5.438],[133.0532,-5.4433],[133.0484,-5.4525],[133.0498,-5.4612],[133.0459,-5.4679],[133.0449,-5.4848],[133.0385,-5.4942],[133.0387,-5.5143],[133.0358,-5.5261],[133.0293,-5.5313],[133.0324,-5.5379],[133.0262,-5.5417],[133.0212,-5.5515],[133.0218,-5.5587],[133.0143,-5.574],[133.0129,-5.5827],[133.0101,-5.5859],[133.0085,-5.5944],[133.0138,-5.6082],[133.0066,-5.6115],[133.0041,-5.6171],[133.0045,-5.6283],[133.0013,-5.6366],[133.0009,-5.6475],[132.9981,-5.6498],[132.9892,-5.6486],[132.9846,-5.6547],[132.9779,-5.6568],[132.9734,-5.6534],[132.9729,-5.6459],[132.976,-5.6412],[132.9713,-5.6397],[132.9601,-5.6507],[132.9606,-5.6583],[132.9512,-5.667],[132.9535,-5.6717],[132.9503,-5.675],[132.9439,-5.6771],[132.9398,-5.684],[132.9413,-5.6926],[132.943,-5.6943],[132.9376,-5.7084],[132.9394,-5.7114],[132.9383,-5.7211],[132.9409,-5.7271],[132.9357,-5.734],[132.9383,-5.7421],[132.9367,-5.7472],[132.9294,-5.752],[132.9276,-5.7598],[132.9357,-5.7688],[132.9352,-5.7764],[132.925,-5.7789],[132.9228,-5.785],[132.9155,-5.7922],[132.9125,-5.7928],[132.909,-5.7993],[132.9035,-5.8047],[132.9099,-5.8071],[132.9103,-5.8105],[132.9068,-5.8202],[132.9005,-5.8232],[132.8984,-5.8301],[132.8853,-5.8362],[132.8821,-5.8404],[132.8875,-5.852],[132.8932,-5.8542],[132.8889,-5.8599],[132.8862,-5.8566],[132.8802,-5.8604],[132.8798,-5.8688],[132.8738,-5.8799],[132.8826,-5.8864],[132.8886,-5.892],[132.8867,-5.8951],[132.8872,-5.9033],[132.8834,-5.9039],[132.8803,-5.901],[132.8711,-5.8997],[132.8688,-5.9026],[132.8694,-5.9092],[132.8726,-5.9156],[132.8723,-5.9219],[132.8686,-5.926],[132.8702,-5.9348],[132.8692,-5.9394],[132.8618,-5.9546],[132.8577,-5.9647],[132.8512,-5.9779],[132.8463,-6.0003],[132.8457,-6.0053],[132.8497,-6.0065],[132.8554,-5.9949],[132.8563,-5.9835],[132.8668,-5.9718],[132.8687,-5.9651],[132.8736,-5.9598],[132.8803,-5.9558],[132.8937,-5.9545],[132.8988,-5.95],[132.9034,-5.9362],[132.9024,-5.9293],[132.9091,-5.9238],[132.908,-5.9172],[132.9125,-5.9155],[132.9128,-5.9078],[132.9177,-5.9051],[132.9198,-5.8997],[132.9268,-5.8996],[132.9297,-5.8843],[132.9422,-5.8825],[132.951,-5.8766],[132.9537,-5.8729],[132.9539,-5.8661],[132.9567,-5.8595],[132.9607,-5.8547],[132.9557,-5.8466],[132.9568,-5.8414],[132.9529,-5.8403],[132.9497,-5.8364],[132.9492,-5.8302],[132.9444,-5.8286],[132.9436,-5.8189],[132.9488,-5.8063],[132.9526,-5.7872],[132.9519,-5.7773],[132.9542,-5.7664],[132.9577,-5.755]]]}},{"type":"Feature","properties":{"mhid":"1332:460","alt_name":"KABUPATEN MALUKU TENGAH","latitude":-3.29167,"longitude":128.9675,"sample_value":384},"geometry":{"type":"MultiLineString","coordinates":[[[130.0444,-4.6032],[130.0475,-4.5949],[130.0459,-4.592],[130.0479,-4.586],[130.0435,-4.5809],[130.037,-4.5795],[130.0349,-4.5845],[130.0308,-4.5872],[130.0315,-4.595],[130.034,-4.6025],[130.0419,-4.6054],[130.0444,-4.6032]],[[129.6924,-4.5557],[129.6942,-4.553],[129.6937,-4.5427],[129.6826,-4.5489],[129.6772,-4.5558],[129.6664,-4.5612],[129.6705,-4.5655],[129.6821,-4.5645],[129.6858,-4.5626],[129.6924,-4.5557]],[[129.7663,-4.5183],[129.7633,-4.521],[129.7731,-4.5382],[129.7816,-4.5326],[129.7841,-4.5232],[129.7811,-4.5204],[129.7737,-4.5183],[129.7663,-4.5183]],[[129.9499,-4.5555],[129.9575,-4.5497],[129.9573,-4.5468],[129.951,-4.5367],[129.9555,-4.5318],[129.9502,-4.5298],[129.9458,-4.5229],[129.9443,-4.5135],[129.9399,-4.5122],[129.9415,-4.5238],[129.9346,-4.5339],[129.933,-4.538],[129.9281,-4.5426],[129.9164,-4.5471],[129.9056,-4.5496],[129.8978,-4.5453],[129.8815,-4.5474],[129.8747,-4.5433],[129.8629,-4.5465],[129.8608,-4.5563],[129.8649,-4.563],[129.8687,-4.5647],[129.8743,-4.5565],[129.8832,-4.5528],[129.8858,-4.561],[129.8907,-4.5575],[129.8964,-4.5596],[129.9017,-4.5582],[129.9067,-4.5651],[129.9133,-4.5664],[129.9135,-4.5705],[129.9183,-4.5716],[129.9207,-4.5686],[129.9284,-4.5688],[129.9358,-4.5705],[129.9368,-4.5656],[129.9414,-4.5664],[129.9458,-4.5623],[129.952,-4.561],[129.9499,-4.5555]],[[129.8782,-4.5051],[129.8748,-4.5082],[129.8667,-4.5229],[129.868,-4.5298],[129.8775,-4.5345],[129.8907,-4.5353],[129.8898,-4.5266],[129.8912,-4.516],[129.8799,-4.5098],[129.8782,-4.5051]],[[129.8957,-4.5038],[129.8963,-4.5116],[129.9001,-4.5162],[129.8962,-4.5289],[129.9035,-4.5306],[129.9071,-4.5282],[129.9091,-4.5174],[129.9069,-4.5067],[129.9006,-4.5032],[129.8957,-4.5038]],[[127.9107,-3.6486],[127.905,-3.6509],[127.9081,-3.6545],[127.9107,-3.6486]],[[128.7809,-3.6473],[128.7723,-3.6395],[128.7689,-3.649],[128.7652,-3.6454],[128.7578,-3.6494],[128.7584,-3.6648],[128.7629,-3.681],[128.7615,-3.6892],[128.7664,-3.6935],[128.7812,-3.6918],[128.7833,-3.6949],[128.7957,-3.6906],[128.805,-3.6864],[128.8114,-3.6753],[128.8095,-3.6719],[128.8091,-3.6632],[128.806,-3.6526],[128.8004,-3.6438],[128.7976,-3.6447],[128.7923,-3.6414],[128.7876,-3.6496],[128.7848,-3.6512],[128.7809,-3.6473]],[[128.613,-3.656],[128.6133,-3.6504],[128.6101,-3.6412],[128.6079,-3.6309],[128.603,-3.6339],[128.6052,-3.6414],[128.6042,-3.6457],[128.609,-3.6561],[128.613,-3.656]],[[128.4567,-3.513],[128.447,-3.5104],[128.4432,-3.5151],[128.4393,-3.5164],[128.4319,-3.5222],[128.4256,-3.5223],[128.4207,-3.5252],[128.4149,-3.5322],[128.4133,-3.5393],[128.417,-3.5416],[128.418,-3.5469],[128.4214,-3.55],[128.4193,-3.5551],[128.4241,-3.566],[128.4183,-3.577],[128.4104,-3.5874],[128.4112,-3.5912],[128.4168,-3.6001],[128.4167,-3.6099],[128.4112,-3.618],[128.3998,-3.6281],[128.4034,-3.6347],[128.4171,-3.6352],[128.4288,-3.6297],[128.4368,-3.6297],[128.4402,-3.6315],[128.4504,-3.6217],[128.4567,-3.6226],[128.4657,-3.614],[128.4735,-3.6169],[128.4917,-3.6207],[128.4979,-3.6242],[128.5019,-3.6151],[128.5091,-3.6152],[128.5081,-3.6092],[128.5146,-3.6066],[128.5198,-3.6146],[128.5241,-3.6175],[128.5334,-3.6164],[128.5422,-3.6138],[128.5439,-3.6099],[128.5427,-3.6048],[128.5523,-3.6],[128.5624,-3.6012],[128.5671,-3.5938],[128.5742,-3.588],[128.5765,-3.5847],[128.5701,-3.5663],[128.558,-3.5501],[128.556,-3.5437],[128.5505,-3.5384],[128.5458,-3.5382],[128.5395,-3.5407],[128.5299,-3.5364],[128.5242,-3.5278],[128.5129,-3.5207],[128.5043,-3.517],[128.5008,-3.5138],[128.4948,-3.5144],[128.4896,-3.5183],[128.4801,-3.5185],[128.4762,-3.5164],[128.4694,-3.5164],[128.4603,-3.5123],[128.4567,-3.513]],[[128.5821,-3.4943],[128.572,-3.4946],[128.5656,-3.4986],[128.5577,-3.5086],[128.5541,-3.5154],[128.5543,-3.5299],[128.572,-3.5484],[128.5786,-3.55],[128.591,-3.5508],[128.5968,-3.5553],[128.6046,-3.5724],[128.6079,-3.5773],[128.6183,-3.5852],[128.626,-3.5848],[128.6251,-3.5891],[128.6212,-3.5916],[128.6129,-3.5906],[128.6074,-3.5884],[128.6081,-3.5952],[128.6124,-3.599],[128.6214,-3.6006],[128.6269,-3.6045],[128.6285,-3.6132],[128.6327,-3.6204],[128.6426,-3.6316],[128.6496,-3.6298],[128.6571,-3.623],[128.6644,-3.6095],[128.6658,-3.6033],[128.6642,-3.5976],[128.666,-3.5911],[128.6612,-3.5903],[128.6543,-3.5847],[128.6509,-3.5768],[128.6548,-3.5735],[128.6585,-3.576],[128.663,-3.5739],[128.6667,-3.5765],[128.6757,-3.5765],[128.6895,-3.5844],[128.6974,-3.5904],[128.7028,-3.5931],[128.7084,-3.6033],[128.7193,-3.6094],[128.7229,-3.6201],[128.727,-3.6225],[128.7316,-3.6211],[128.736,-3.6154],[128.7385,-3.6006],[128.735,-3.5811],[128.7359,-3.5735],[128.7329,-3.5691],[128.7333,-3.5617],[128.7356,-3.5537],[128.7312,-3.5417],[128.7325,-3.5392],[128.7267,-3.532],[128.7294,-3.5243],[128.7303,-3.5126],[128.7178,-3.5023],[128.7156,-3.4981],[128.6938,-3.494],[128.6886,-3.507],[128.6886,-3.5159],[128.6867,-3.5219],[128.6866,-3.5308],[128.6897,-3.5364],[128.6837,-3.5438],[128.6736,-3.5395],[128.6566,-3.529],[128.6373,-3.5289],[128.637,-3.52],[128.6267,-3.5164],[128.6198,-3.5075],[128.61,-3.5032],[128.606,-3.498],[128.6004,-3.4962],[128.595,-3.4984],[128.5821,-3.4943]],[[128.2717,-3.6185],[128.2804,-3.6186],[128.2838,-3.6235],[128.2927,-3.6216],[128.3022,-3.6245],[128.3071,-3.6275],[128.3102,-3.6325],[128.3221,-3.6326],[128.3324,-3.6344],[128.3388,-3.6369],[128.3474,-3.6364],[128.3538,-3.6336],[128.356,-3.6289],[128.3558,-3.6181],[128.3539,-3.6155],[128.3574,-3.6104],[128.3564,-3.6041],[128.3455,-3.5918],[128.3409,-3.5896],[128.3328,-3.5889],[128.3294,-3.5868],[128.3265,-3.5798],[128.3251,-3.5706],[128.3218,-3.5653],[128.3281,-3.5561],[128.3443,-3.5444],[128.3485,-3.5387],[128.3536,-3.527],[128.3529,-3.5224],[128.3489,-3.5163],[128.3441,-3.5057],[128.3397,-3.5023],[128.3286,-3.5022],[128.3198,-3.5067],[128.3135,-3.5053],[128.3075,-3.4989],[128.3041,-3.4987],[128.2935,-3.4909],[128.2849,-3.4907],[128.279,-3.4936],[128.2723,-3.4923],[128.2648,-3.4955],[128.2582,-3.4949],[128.2491,-3.5002],[128.2449,-3.5047],[128.23,-3.5149],[128.2241,-3.5181],[128.2127,-3.5341],[128.2013,-3.543],[128.1917,-3.5564],[128.1834,-3.5627],[128.1801,-3.5678],[128.1787,-3.5732],[128.1807,-3.5791],[128.1787,-3.5829],[128.1679,-3.5877],[128.1588,-3.5875],[128.1501,-3.5896],[128.1457,-3.589],[128.1384,-3.5906],[128.135,-3.5864],[128.1245,-3.5852],[128.12,-3.5868],[128.1092,-3.5871],[128.1046,-3.5843],[128.0964,-3.5867],[128.0908,-3.5814],[128.0834,-3.5827],[128.0791,-3.5896],[128.0702,-3.5886],[128.0652,-3.5909],[128.0608,-3.5891],[128.0515,-3.5898],[128.0488,-3.5919],[128.0412,-3.5937],[128.0347,-3.593],[128.03,-3.5909],[128.0255,-3.5931],[128.0196,-3.6058],[128.0155,-3.6092],[128.0103,-3.6105],[128.0041,-3.6173],[127.9992,-3.6188],[127.9913,-3.6294],[127.9861,-3.6296],[127.9797,-3.636],[127.9637,-3.6446],[127.9635,-3.6526],[127.958,-3.6571],[127.9533,-3.6649],[127.9486,-3.6667],[127.9449,-3.6723],[127.9356,-3.6761],[127.9284,-3.6809],[127.9214,-3.6918],[127.9251,-3.7033],[127.9235,-3.7093],[127.92,-3.7153],[127.9168,-3.7152],[127.9212,-3.7306],[127.927,-3.7398],[127.9332,-3.7455],[127.9358,-3.7582],[127.9394,-3.7606],[127.9396,-3.7679],[127.9416,-3.7726],[127.9533,-3.7772],[127.9592,-3.7741],[127.9651,-3.7729],[127.9698,-3.7776],[127.9795,-3.7804],[127.9909,-3.778],[127.9958,-3.7798],[127.9998,-3.7781],[128.0114,-3.7658],[128.014,-3.7669],[128.0203,-3.7597],[128.0238,-3.7491],[128.0345,-3.741],[128.0385,-3.7342],[128.0467,-3.7319],[128.0518,-3.7288],[128.0577,-3.7275],[128.0635,-3.7215],[128.068,-3.7203],[128.0763,-3.7219],[128.0828,-3.7127]],[[129.1752,-2.9182],[129.1734,-2.916],[129.1687,-2.9213],[129.1798,-2.924],[129.1806,-2.9179],[129.1752,-2.9182]],[[129.2149,-2.9017],[129.2126,-2.9009],[129.2052,-2.9031],[129.2081,-2.9062],[129.2149,-2.9017]],[[129.0782,-2.8911],[129.0743,-2.8892],[129.07,-2.8918],[129.071,-2.9019],[129.0748,-2.9049],[129.0823,-2.8963],[129.0782,-2.8911]],[[130.1102,-2.9966],[130.1001,-2.9951],[130.0902,-2.9988],[130.0723,-3.0045],[130.0465,-3.0053],[130.0349,-3.0037],[130.0263,-3],[130.0222,-2.9967],[130.0144,-2.9823],[130.0117,-2.9792],[130.0039,-2.9839],[129.9984,-2.984],[129.9883,-2.9789],[129.9787,-2.9774],[129.9675,-2.9716],[129.9598,-2.9691],[129.9497,-2.9592],[129.9403,-2.958],[129.9325,-2.9534],[129.921,-2.949],[129.9095,-2.9424],[129.9058,-2.9345],[129.9019,-2.9142],[129.8929,-2.9134],[129.8812,-2.9155],[129.8851,-2.9217],[129.891,-2.922],[129.8881,-2.9319],[129.8824,-2.9343],[129.877,-2.9298],[129.8786,-2.923],[129.8769,-2.9202],[129.8716,-2.9209],[129.8666,-2.9146],[129.8709,-2.9141],[129.8742,-2.9094],[129.8791,-2.9116],[129.8806,-2.9041],[129.8841,-2.9021],[129.8788,-2.896],[129.8672,-2.8954],[129.8588,-2.8962],[129.8427,-2.9032],[129.8359,-2.9084],[129.8181,-2.9143],[129.805,-2.9082],[129.8031,-2.9036],[129.7927,-2.89],[129.7897,-2.8682],[129.7823,-2.8638],[129.7712,-2.8638],[129.7605,-2.8618],[129.7547,-2.856],[129.7501,-2.8559],[129.732,-2.8492],[129.7224,-2.8424],[129.7192,-2.8419],[129.7088,-2.8344],[129.6947,-2.8353],[129.686,-2.8346],[129.6782,-2.8317],[129.6697,-2.8253],[129.6565,-2.826],[129.6489,-2.8288],[129.6445,-2.8288],[129.6354,-2.8264],[129.6284,-2.8212],[129.6261,-2.8113],[129.6228,-2.8049],[129.619,-2.803],[129.6133,-2.8032],[129.6051,-2.8066],[129.5912,-2.8097],[129.5803,-2.809],[129.5587,-2.8038],[129.5469,-2.7999],[129.5421,-2.7956],[129.5403,-2.791],[129.5431,-2.7852],[129.5404,-2.7818],[129.5287,-2.7727],[129.5253,-2.7733],[129.5249,-2.7838],[129.5232,-2.7946],[129.5213,-2.7982],[129.514,-2.7954],[129.5135,-2.7885],[129.5006,-2.7922],[129.4986,-2.7947],[129.4927,-2.7935],[129.4889,-2.7903],[129.4807,-2.7862],[129.4699,-2.7842],[129.4634,-2.7863],[129.455,-2.787],[129.4347,-2.7825],[129.4264,-2.7879],[129.4172,-2.7909],[129.4097,-2.7896],[129.4027,-2.7865],[129.3928,-2.7882],[129.3843,-2.7877],[129.3765,-2.7897],[129.3642,-2.8034],[129.3682,-2.8103],[129.3734,-2.8138],[129.3736,-2.818],[129.3682,-2.8285],[129.3613,-2.8361],[129.3523,-2.8514],[129.3461,-2.8589],[129.3357,-2.8664],[129.3233,-2.8721],[129.306,-2.8776],[129.3004,-2.8831],[129.2857,-2.8908],[129.2854,-2.8926],[129.262,-2.9055],[129.2469,-2.9108],[129.2351,-2.9187],[129.2233,-2.922],[129.218,-2.9278],[129.2163,-2.9351],[129.2098,-2.9429],[129.2165,-2.9507],[129.2126,-2.954],[129.2093,-2.9483],[129.2052,-2.9473],[129.1998,-2.9382],[129.2051,-2.9322],[129.2014,-2.9288],[129.1962,-2.9328],[129.1904,-2.9238],[129.1867,-2.9216],[129.1821,-2.9286],[129.1757,-2.9311],[129.1738,-2.935],[129.1751,-2.9398],[129.1864,-2.951],[129.1892,-2.9521],[129.1914,-2.9584],[129.1835,-2.9574],[129.1799,-2.9585],[129.1642,-2.9516],[129.1553,-2.9491],[129.147,-2.9538],[129.1413,-2.9584],[129.1327,-2.9683],[129.1287,-2.9689],[129.1283,-2.9638],[129.1205,-2.9624],[129.1165,-2.9561],[129.1099,-2.9515],[129.1008,-2.9481],[129.0831,-2.9392],[129.0827,-2.9319],[129.0804,-2.9276],[129.0826,-2.9217],[129.0767,-2.9163],[129.0721,-2.906],[129.0678,-2.9066],[129.0675,-2.9017],[129.064,-2.8954],[129.0724,-2.8789],[129.0695,-2.8703],[129.0726,-2.8589],[129.0783,-2.8551],[129.0769,-2.8502],[129.0721,-2.8463],[129.0706,-2.8383],[129.0712,-2.8305],[129.0698,-2.82],[129.066,-2.8085],[129.0594,-2.804],[129.0535,-2.7956],[129.0463,-2.7946],[129.0328,-2.7962],[129.0151,-2.806],[129.001,-2.8204],[128.9903,-2.8248],[128.9852,-2.8295],[128.9767,-2.8305],[128.9699,-2.8361],[128.9573,-2.842],[128.9363,-2.8463],[128.9255,-2.8505],[128.9079,-2.8534],[128.8911,-2.8537],[128.8756,-2.8565],[128.8675,-2.8603],[128.8364,-2.867],[128.8268,-2.8662],[128.8112,-2.8666],[128.8059,-2.8676],[128.7868,-2.8637],[128.7806,-2.8605],[128.7556,-2.8509],[128.7536,-2.8512]],[[128.8364,-3.2408],[128.8439,-3.2395],[128.8454,-3.2341],[128.852,-3.227],[128.8589,-3.2117],[128.8704,-3.2075],[128.8853,-3.2037],[128.9014,-3.2042],[128.9195,-3.2088],[128.9335,-3.2101],[128.9458,-3.2169],[128.9504,-3.2215],[128.958,-3.223],[128.9658,-3.226],[128.9675,-3.2339],[128.9665,-3.2456],[128.9709,-3.2636],[128.971,-3.2727],[128.9693,-3.2746],[128.9695,-3.2823],[128.9665,-3.2904],[128.9587,-3.2956],[128.9533,-3.2958],[128.9521,-3.2992],[128.9445,-3.3052],[128.9402,-3.3071],[128.9349,-3.3152],[128.9284,-3.3218],[128.9263,-3.3257],[128.927,-3.3348],[128.9199,-3.3381],[128.9125,-3.3282],[128.9131,-3.3356],[128.9286,-3.3527],[128.9363,-3.3574],[128.9469,-3.3573],[128.9515,-3.3553],[128.9625,-3.3621],[128.972,-3.3601],[128.9779,-3.361],[128.9836,-3.3571],[128.9917,-3.3545],[128.9999,-3.3559],[129.0086,-3.3545],[129.0155,-3.3521],[129.0227,-3.3541],[129.0342,-3.3482],[129.0442,-3.3488],[129.0601,-3.352],[129.0649,-3.3502],[129.0819,-3.3416],[129.0855,-3.3415],[129.095,-3.3479],[129.1026,-3.3473],[129.1077,-3.352],[129.1108,-3.3506],[129.1201,-3.3525],[129.1251,-3.3592],[129.1331,-3.3646],[129.1382,-3.3614],[129.1472,-3.3616],[129.1543,-3.3685],[129.1663,-3.3696],[129.1736,-3.3744],[129.1796,-3.3826],[129.1911,-3.3898],[129.203,-3.3895],[129.2076,-3.3924],[129.2117,-3.3926],[129.2162,-3.3961],[129.2214,-3.3957],[129.226,-3.4003],[129.2313,-3.4015],[129.2399,-3.401],[129.2483,-3.4065],[129.2562,-3.4085],[129.2607,-3.4065],[129.2747,-3.4113],[129.2845,-3.4124],[129.2885,-3.4142],[129.3087,-3.4108],[129.3179,-3.4151],[129.3218,-3.4151],[129.3275,-3.4121],[129.3309,-3.4127],[129.3353,-3.4172],[129.3408,-3.4163],[129.3464,-3.4125],[129.3559,-3.4102],[129.362,-3.4146],[129.367,-3.4146],[129.3708,-3.412],[129.3761,-3.4126],[129.3883,-3.4177],[129.3948,-3.4161],[129.3985,-3.4181],[129.4045,-3.417],[129.4155,-3.4208],[129.4175,-3.4246],[129.428,-3.4275],[129.4318,-3.4319],[129.4402,-3.4314],[129.4533,-3.4358],[129.4759,-3.4477],[129.4797,-3.4551],[129.4872,-3.4579],[129.4952,-3.4569],[129.5004,-3.4614],[129.5054,-3.4617],[129.5212,-3.4677],[129.5253,-3.4675],[129.5289,-3.4703],[129.5384,-3.4719],[129.5488,-3.47],[129.5538,-3.4681],[129.5608,-3.4591],[129.5625,-3.453],[129.568,-3.4477],[129.5672,-3.4394],[129.5693,-3.4304],[129.5645,-3.4165],[129.566,-3.4129],[129.5634,-3.4088],[129.5597,-3.3964],[129.5517,-3.3876],[129.551,-3.3826],[129.5442,-3.3759],[129.5421,-3.3779],[129.5345,-3.3685],[129.5315,-3.3625],[129.5314,-3.3578],[129.5264,-3.3555],[129.5141,-3.338],[129.5092,-3.3343],[129.5052,-3.3291],[129.4975,-3.3271],[129.4987,-3.3206],[129.5103,-3.3059],[129.5197,-3.2996],[129.5245,-3.2979],[129.5372,-3.3022],[129.5411,-3.3058],[129.5486,-3.3091],[129.5623,-3.3044],[129.5711,-3.3044],[129.5876,-3.3103],[129.5925,-3.3131],[129.5994,-3.3105],[129.6068,-3.3159],[129.6163,-3.3165],[129.6283,-3.3118],[129.6332,-3.3117],[129.6403,-3.3159],[129.645,-3.3158],[129.6529,-3.3181],[129.6645,-3.3175],[129.6714,-3.3225],[129.6787,-3.3236],[129.6875,-3.3224],[129.6947,-3.32],[129.708,-3.3174],[129.7289,-3.3148],[129.7362,-3.3172],[129.7443,-3.3264],[129.7628,-3.3321],[129.7736,-3.3281],[129.7819,-3.3288],[129.7965,-3.3233],[129.8073,-3.3216],[129.8175,-3.3235],[129.8224,-3.3306],[129.84,-3.3308],[129.8463,-3.3343],[129.8552,-3.336],[129.8562,-3.3219],[129.867,-3.3131]],[[129.0232,-2.7542],[129.0272,-2.7476],[129.0233,-2.7435],[129.0191,-2.746],[129.0206,-2.7528],[129.0232,-2.7542]],[[128.9952,-2.7319],[128.9931,-2.7265],[128.9851,-2.7266],[128.9785,-2.7342],[128.977,-2.7441],[128.9879,-2.7423],[128.9905,-2.7363],[128.9952,-2.7319]]]}},{"type":"Feature","properties":{"mhid":"1332:461","alt_name":"KABUPATEN BURU","latitude":-3.32767,"longitude":126.68413,"sample_value":390},"geometry":{"type":"MultiLineString","coordinates":[[[127.2387,-3.6336],[127.2404,-3.6267],[127.2398,-3.6159],[127.243,-3.6138],[127.2441,-3.6054],[127.2515,-3.5923],[127.2486,-3.5784],[127.2459,-3.5755],[127.2453,-3.5651],[127.2487,-3.5561],[127.2464,-3.5501],[127.2508,-3.5444],[127.2517,-3.5294],[127.2495,-3.5254],[127.2506,-3.5213],[127.2489,-3.492],[127.2505,-3.4812],[127.2504,-3.4672],[127.2485,-3.4501],[127.2508,-3.4467],[127.2504,-3.4369],[127.2544,-3.4299],[127.2526,-3.4272],[127.253,-3.4178],[127.2553,-3.4117],[127.2684,-3.3964],[127.2689,-3.3894],[127.2586,-3.3731],[127.2516,-3.373],[127.246,-3.3706],[127.2436,-3.3668],[127.2328,-3.3632],[127.2239,-3.3618],[127.2199,-3.3571],[127.204,-3.3584],[127.1822,-3.3559],[127.1784,-3.3515],[127.1795,-3.347],[127.1734,-3.3418],[127.1688,-3.3412],[127.1638,-3.3354],[127.1555,-3.3391],[127.1399,-3.3534],[127.141,-3.3621],[127.139,-3.3695],[127.1397,-3.3736],[127.1348,-3.379],[127.1314,-3.3788],[127.1246,-3.3827],[127.1203,-3.3832],[127.1072,-3.3806],[127.0974,-3.3763],[127.0923,-3.3721],[127.0856,-3.3721],[127.0758,-3.3738],[127.072,-3.3643],[127.0687,-3.346],[127.0722,-3.3413],[127.0687,-3.3378],[127.072,-3.3331],[127.0701,-3.3224],[127.0553,-3.329],[127.0528,-3.3366],[127.0429,-3.3288],[127.0442,-3.3201],[127.0416,-3.3158],[127.0437,-3.3129],[127.0406,-3.3004],[127.0399,-3.2907],[127.033,-3.2719],[127.0348,-3.2638],[127.0439,-3.2653],[127.0561,-3.2618],[127.062,-3.2663],[127.0642,-3.2626],[127.0687,-3.2625],[127.0722,-3.2599],[127.0789,-3.2647],[127.0823,-3.2643],[127.0886,-3.2696],[127.0954,-3.2773],[127.0949,-3.2831],[127.0991,-3.2847],[127.1037,-3.2819],[127.1118,-3.2796],[127.1168,-3.2804],[127.1221,-3.2745],[127.1196,-3.2718],[127.1197,-3.2646],[127.1135,-3.2607],[127.1113,-3.2525],[127.1113,-3.2336],[127.1063,-3.225],[127.1019,-3.2233],[127.0906,-3.211],[127.0835,-3.2053],[127.0795,-3.2039],[127.0726,-3.1957],[127.0597,-3.1834],[127.0487,-3.1758],[127.044,-3.175],[127.0375,-3.1708],[127.0296,-3.1726],[127.0269,-3.1668],[127.0184,-3.1576],[126.9906,-3.1427],[126.9837,-3.1379],[126.9783,-3.1391],[126.9656,-3.1377],[126.9576,-3.1378],[126.9502,-3.1409],[126.9357,-3.1434],[126.9274,-3.1418],[126.9238,-3.1397],[126.9118,-3.1244],[126.9073,-3.1223],[126.9005,-3.127],[126.8911,-3.1274],[126.8857,-3.1233],[126.8837,-3.1123],[126.8815,-3.1073],[126.8719,-3.1011],[126.868,-3.0963],[126.8594,-3.0908],[126.85,-3.0895],[126.8357,-3.0838],[126.8346,-3.0816],[126.8199,-3.0713],[126.8115,-3.0671],[126.806,-3.0662],[126.8003,-3.0626],[126.7896,-3.0592],[126.7746,-3.0572],[126.7696,-3.0608],[126.7575,-3.0597],[126.7544,-3.0607],[126.7401,-3.0597],[126.7302,-3.0577],[126.7255,-3.0581],[126.711,-3.0561],[126.7051,-3.0574],[126.7,-3.0602],[126.6974,-3.0666],[126.6921,-3.0668],[126.6807,-3.0616],[126.6783,-3.0691],[126.6703,-3.0702],[126.6588,-3.0696],[126.6525,-3.0716],[126.6396,-3.0702],[126.6104,-3.0679],[126.598,-3.0639],[126.5892,-3.0681],[126.5683,-3.072],[126.552,-3.0723],[126.5161,-3.0711],[126.5065,-3.0761],[126.5021,-3.0772],[126.4881,-3.0776],[126.4793,-3.0796],[126.4736,-3.0831],[126.4638,-3.0846],[126.4544,-3.0828],[126.4371,-3.0838],[126.4272,-3.0816],[126.4234,-3.0792],[126.4184,-3.0812],[126.4041,-3.081],[126.3927,-3.0881],[126.3891,-3.0933],[126.379,-3.0952],[126.3641,-3.094],[126.3572,-3.0973],[126.3392,-3.1013],[126.3256,-3.1001],[126.3055,-3.0939],[126.2996,-3.0934],[126.2925,-3.098],[126.2845,-3.1078],[126.2728,-3.1151],[126.2631,-3.1305],[126.2592,-3.1327],[126.2492,-3.1312],[126.2341,-3.1325],[126.2275,-3.1378],[126.2216,-3.1531],[126.221,-3.1587],[126.2224,-3.1675],[126.226,-3.1722],[126.2281,-3.1781],[126.2223,-3.1835],[126.2153,-3.1826],[126.2034,-3.1859],[126.1893,-3.1853],[126.1631,-3.1759],[126.1588,-3.1715],[126.15,-3.1693],[126.1368,-3.1631],[126.1256,-3.1522]]]}},{"type":"Feature","properties":{"mhid":"1332:462","alt_name":"KABUPATEN KEPULAUAN ARU","latitude":-6.17059,"longitude":134.46991,"sample_value":482},"geometry":{"type":"MultiLineString","coordinates":[[[134.502,-7.0696],[134.497,-7.0647],[134.4909,-7.0624],[134.4847,-7.0655],[134.4856,-7.0711],[134.4759,-7.0858],[134.4814,-7.0882],[134.4918,-7.0887],[134.4948,-7.0916],[134.502,-7.0901],[134.5111,-7.0927],[134.5212,-7.0976],[134.5236,-7.0966],[134.5252,-7.0863],[134.5324,-7.0834],[134.5339,-7.0794],[134.5326,-7.0724],[134.5262,-7.066],[134.5145,-7.0641],[134.502,-7.0696]],[[134.685,-7.0226],[134.6868,-7.0158],[134.6831,-7.0123],[134.6836,-7.0079],[134.6778,-7.0036],[134.6742,-7.0055],[134.6699,-7.0113],[134.6697,-7.0162],[134.6736,-7.0226],[134.6827,-7.0248],[134.685,-7.0226]],[[134.5121,-6.9301],[134.5064,-6.9335],[134.5025,-6.9317],[134.491,-6.9369],[134.4892,-6.9404],[134.4899,-6.9517],[134.4926,-6.9539],[134.5119,-6.951],[134.5161,-6.9531],[134.5254,-6.9508],[134.5261,-6.9473],[134.5206,-6.9457],[134.5147,-6.9397],[134.5121,-6.9301]],[[134.5441,-6.9052],[134.5409,-6.9057],[134.5277,-6.915],[134.522,-6.9076],[134.5207,-6.9162],[134.5297,-6.9193],[134.542,-6.9111],[134.5486,-6.9107],[134.5441,-6.9052]],[[134.7032,-6.8704],[134.6993,-6.8641],[134.6952,-6.8626],[134.6933,-6.857],[134.6868,-6.8594],[134.6887,-6.8626],[134.6968,-6.8682],[134.6984,-6.872],[134.7153,-6.876],[134.7459,-6.8759],[134.7514,-6.8725],[134.7527,-6.8674],[134.7481,-6.8606],[134.743,-6.8701],[134.7304,-6.8675],[134.724,-6.8697],[134.7204,-6.8653],[134.716,-6.8653],[134.7093,-6.8695],[134.7032,-6.8704]],[[134.759,-6.8641],[134.7601,-6.8537],[134.7553,-6.8529],[134.759,-6.8641]],[[134.6824,-6.8537],[134.6805,-6.8469],[134.6765,-6.8453],[134.6639,-6.8435],[134.661,-6.8461],[134.6627,-6.8497],[134.6602,-6.8537],[134.6511,-6.8579],[134.6462,-6.8542],[134.6398,-6.8571],[134.6363,-6.8537],[134.6326,-6.855],[134.6351,-6.8648],[134.6333,-6.8687],[134.6261,-6.8717],[134.6229,-6.8776],[134.6048,-6.8847],[134.6001,-6.8797],[134.5906,-6.8747],[134.5867,-6.8765],[134.5852,-6.8833],[134.5957,-6.8936],[134.6054,-6.9009],[134.6126,-6.8996],[134.6275,-6.885],[134.644,-6.8695],[134.6564,-6.8637],[134.6593,-6.8595],[134.6656,-6.8573],[134.6782,-6.8561],[134.6824,-6.8537]],[[134.5429,-6.7498],[134.5337,-6.7476],[134.531,-6.7513],[134.523,-6.7509],[134.5197,-6.7523],[134.5169,-6.7592],[134.5224,-6.7609],[134.5119,-6.7703],[134.5094,-6.7783],[134.5133,-6.7833],[134.5228,-6.7831],[134.5345,-6.7772],[134.5356,-6.7739],[134.543,-6.7677],[134.5444,-6.7639],[134.553,-6.7579],[134.5534,-6.752],[134.5429,-6.7498]],[[134.4441,-6.7263],[134.4473,-6.7241],[134.4472,-6.7197],[134.4394,-6.719],[134.4393,-6.7223],[134.4441,-6.7263]],[[134.5115,-6.7165],[134.5069,-6.7159],[134.5018,-6.7198],[134.4938,-6.7191],[134.4919,-6.7263],[134.4882,-6.7301],[134.4874,-6.7344],[134.4784,-6.7427],[134.4748,-6.7563],[134.476,-6.7607],[134.4864,-6.7628],[134.492,-6.7556],[134.4953,-6.755],[134.5094,-6.7565],[134.5175,-6.7529],[134.5182,-6.751],[134.5287,-6.7495],[134.5283,-6.737],[134.5272,-6.7344],[134.5124,-6.7304],[134.511,-6.7278],[134.5136,-6.7209],[134.5115,-6.7165]],[[134.4948,-6.6947],[134.4957,-6.6832],[134.4931,-6.6812],[134.4853,-6.6865],[134.4801,-6.6946],[134.4737,-6.6987],[134.4808,-6.7058],[134.482,-6.7097],[134.487,-6.7063],[134.4948,-6.6947]],[[134.5281,-6.6901],[134.5239,-6.6754],[134.5185,-6.6716],[134.5165,-6.6669],[134.5086,-6.6606],[134.5037,-6.667],[134.5015,-6.6737],[134.5019,-6.6875],[134.4937,-6.6991],[134.4909,-6.7047],[134.4982,-6.7045],[134.5081,-6.7113],[134.5101,-6.7112],[134.522,-6.6968],[134.5264,-6.6941],[134.5281,-6.6901]],[[134.6019,-6.6146],[134.5966,-6.6055],[134.5886,-6.6059],[134.5873,-6.615],[134.583,-6.6194],[134.5868,-6.6222],[134.5891,-6.629],[134.5936,-6.6285],[134.5952,-6.6248],[134.6009,-6.6191],[134.6019,-6.6146]],[[134.7755,-6.6027],[134.7706,-6.6016],[134.7592,-6.6055],[134.7555,-6.608],[134.7563,-6.6141],[134.7628,-6.6218],[134.7623,-6.6333],[134.7645,-6.6349],[134.7713,-6.6332],[134.7827,-6.6417],[134.7874,-6.6406],[134.7907,-6.6373],[134.7968,-6.6352],[134.7947,-6.6274],[134.79,-6.6249],[134.7895,-6.6207],[134.7855,-6.6203],[134.7809,-6.6139],[134.7755,-6.6027]],[[134.7875,-6.6026],[134.7831,-6.5964],[134.7802,-6.6018],[134.7875,-6.6026]],[[134.7313,-6.584],[134.7295,-6.5881],[134.7379,-6.5952],[134.7356,-6.5857],[134.7313,-6.584]],[[134.7347,-6.5996],[134.7292,-6.5966],[134.728,-6.5853],[134.7168,-6.5802],[134.7095,-6.5783],[134.7031,-6.5787],[134.6994,-6.5806],[134.6911,-6.5896],[134.6868,-6.592],[134.6833,-6.6049],[134.6808,-6.6207],[134.6794,-6.6248],[134.6727,-6.6301],[134.6762,-6.6352],[134.6761,-6.6412],[134.6735,-6.6472],[134.6743,-6.6508],[134.6719,-6.6603],[134.6726,-6.6623],[134.6661,-6.6759],[134.6517,-6.697],[134.6426,-6.7055],[134.6333,-6.707],[134.6275,-6.7103],[134.6263,-6.7157],[134.6283,-6.7194],[134.6361,-6.7216],[134.6337,-6.7344],[134.6307,-6.7421],[134.6233,-6.7516],[134.6246,-6.759],[134.6278,-6.7574],[134.6353,-6.7571],[134.6414,-6.759],[134.6499,-6.7715],[134.6509,-6.7774],[134.6538,-6.7795],[134.6611,-6.7761],[134.6653,-6.7763],[134.6735,-6.7821],[134.6761,-6.7792],[134.6849,-6.7753],[134.687,-6.7639],[134.6927,-6.7557],[134.6949,-6.7454],[134.7019,-6.7365],[134.7063,-6.7355],[134.7112,-6.7301],[134.7106,-6.7216],[134.7137,-6.7156],[134.7254,-6.7051],[134.7381,-6.7014],[134.7387,-6.6983],[134.7362,-6.6875],[134.7386,-6.6821],[134.7376,-6.6711],[134.7404,-6.6676],[134.7384,-6.6602],[134.7391,-6.6474],[134.7449,-6.6384],[134.7567,-6.6307],[134.7611,-6.6238],[134.755,-6.616],[134.7524,-6.6092],[134.7402,-6.6002],[134.7347,-6.5996]],[[134.7312,-6.5675],[134.7351,-6.5607],[134.7327,-6.5564],[134.7241,-6.5519],[134.7226,-6.5449],[134.7171,-6.5473],[134.7073,-6.5574],[134.703,-6.5595],[134.7109,-6.5668],[134.726,-6.5712],[134.7312,-6.5675]],[[134.589,-6.5179],[134.5825,-6.5085],[134.5784,-6.5074],[134.572,-6.5129],[134.5646,-6.5132],[134.5588,-6.5185],[134.5524,-6.5293],[134.5497,-6.5385],[134.5577,-6.5413],[134.5597,-6.5442],[134.5776,-6.5457],[134.5806,-6.5397],[134.5899,-6.53],[134.5961,-6.5184],[134.589,-6.5179]],[[134.7676,-6.4939],[134.7719,-6.4892],[134.7639,-6.4873],[134.7591,-6.4905],[134.7554,-6.4953],[134.7578,-6.4977],[134.7671,-6.4963],[134.7676,-6.4939]],[[134.8281,-6.4822],[134.8211,-6.4803],[134.8177,-6.4823],[134.8111,-6.4919],[134.7954,-6.5088],[134.7897,-6.509],[134.7872,-6.5113],[134.7814,-6.5107],[134.7793,-6.5078],[134.7735,-6.5113],[134.7757,-6.5197],[134.7748,-6.5249],[134.7778,-6.5313],[134.7787,-6.5386],[134.7772,-6.5426],[134.7781,-6.5498],[134.7927,-6.5478],[134.8026,-6.5485],[134.8101,-6.5591],[134.8133,-6.5618],[134.8229,-6.5458],[134.8244,-6.5383],[134.8298,-6.5317],[134.8292,-6.529],[134.8357,-6.5153],[134.8487,-6.4999],[134.8508,-6.4935],[134.8493,-6.4902],[134.8408,-6.4903],[134.833,-6.4822],[134.8281,-6.4822]],[[134.5839,-6.4741],[134.5752,-6.4754],[134.5688,-6.4794],[134.5593,-6.4827],[134.5542,-6.4864],[134.5313,-6.4789],[134.5273,-6.4822],[134.5258,-6.4885],[134.528,-6.4971],[134.5204,-6.5094],[134.5202,-6.5147],[134.5164,-6.5185],[134.5141,-6.5287],[134.5235,-6.5308],[134.531,-6.5281],[134.5385,-6.5349],[134.5483,-6.5354],[134.5511,-6.5315],[134.5536,-6.5229],[134.5604,-6.515],[134.5649,-6.5115],[134.5709,-6.5114],[134.5755,-6.5076],[134.5822,-6.496],[134.5822,-6.4833],[134.5839,-6.4741]],[[134.1837,-6.4625],[134.1725,-6.4628],[134.1733,-6.4692],[134.1837,-6.4645],[134.1837,-6.4625]],[[134.6285,-6.4971],[134.6336,-6.4802],[134.6408,-6.4683],[134.6434,-6.4622],[134.6421,-6.4535],[134.6359,-6.4486],[134.6272,-6.4497],[134.62,-6.4638],[134.6155,-6.4658],[134.6045,-6.4673],[134.5977,-6.47],[134.5899,-6.4748],[134.5869,-6.4782],[134.5853,-6.4957],[134.5795,-6.5042],[134.5855,-6.5108],[134.589,-6.5167],[134.5942,-6.5177],[134.5981,-6.516],[134.603,-6.5094],[134.6141,-6.5018],[134.6208,-6.5041],[134.6263,-6.5023],[134.6285,-6.4971]],[[134.7257,-6.4872],[134.7298,-6.4822],[134.7306,-6.4737],[134.712,-6.4552],[134.7047,-6.4508],[134.6938,-6.4426],[134.6854,-6.4435],[134.6684,-6.455],[134.6607,-6.4616],[134.6571,-6.4692],[134.6504,-6.4735],[134.642,-6.4753],[134.6381,-6.4862],[134.6392,-6.4961],[134.6407,-6.4983],[134.6487,-6.4972],[134.6563,-6.5016],[134.6602,-6.5095],[134.6623,-6.5164],[134.6654,-6.5207],[134.6674,-6.5306],[134.6676,-6.5436],[134.6662,-6.5491],[134.6679,-6.5572],[134.6756,-6.562],[134.683,-6.5635],[134.6875,-6.5604],[134.7016,-6.5579],[134.7102,-6.5519],[134.714,-6.5473],[134.7219,-6.5426],[134.7251,-6.5439],[134.7311,-6.5529],[134.7369,-6.554],[134.7458,-6.5515],[134.7507,-6.5463],[134.7513,-6.5397],[134.7562,-6.5384],[134.7635,-6.5327],[134.7651,-6.5278],[134.7617,-6.5213],[134.7576,-6.5181],[134.7564,-6.51],[134.7509,-6.5049],[134.7461,-6.4954],[134.7463,-6.4873],[134.7407,-6.4855],[134.7399,-6.4816],[134.7324,-6.4742],[134.7311,-6.4828],[134.7257,-6.4872]],[[134.7718,-6.4187],[134.7653,-6.4193],[134.763,-6.4299],[134.7693,-6.4314],[134.7744,-6.4239],[134.7718,-6.4187]],[[134.7639,-6.407],[134.759,-6.4127],[134.7632,-6.4162],[134.7687,-6.412],[134.7639,-6.407]],[[134.7766,-6.4164],[134.7872,-6.3983],[134.7867,-6.395],[134.7794,-6.3889],[134.7789,-6.3835],[134.7745,-6.3796],[134.7741,-6.3747],[134.7776,-6.3724],[134.7776,-6.3664],[134.7689,-6.3677],[134.7701,-6.3745],[134.7689,-6.3804],[134.7653,-6.3869],[134.7653,-6.4028],[134.771,-6.4157],[134.7766,-6.4164]],[[134.7461,-6.4324],[134.7471,-6.4247],[134.7539,-6.4176],[134.7529,-6.4097],[134.7554,-6.3931],[134.7557,-6.3701],[134.7547,-6.3596],[134.7524,-6.3585],[134.744,-6.3651],[134.7421,-6.3694],[134.7376,-6.3738],[134.7321,-6.3819],[134.7329,-6.3942],[134.7324,-6.406],[134.7298,-6.4106],[134.7284,-6.4236],[134.735,-6.426],[134.7409,-6.4324],[134.7461,-6.4324]],[[134.3544,-6.3524],[134.3469,-6.3604],[134.3508,-6.3655],[134.3597,-6.3627],[134.3632,-6.357],[134.3598,-6.353],[134.3544,-6.3524]],[[134.3395,-6.3522],[134.3338,-6.3523],[134.3303,-6.3603],[134.3314,-6.366],[134.3345,-6.3672],[134.341,-6.3612],[134.3452,-6.3535],[134.3395,-6.3522]],[[134.3683,-6.3784],[134.3738,-6.3776],[134.3769,-6.3673],[134.3741,-6.3567],[134.3681,-6.3491],[134.3639,-6.3473],[134.3621,-6.3511],[134.3651,-6.3563],[134.3615,-6.3642],[134.3645,-6.3781],[134.3683,-6.3784]],[[134.6027,-6.4037],[134.6024,-6.3983],[134.599,-6.3941],[134.599,-6.3883],[134.5963,-6.3847],[134.5816,-6.3798],[134.5774,-6.3733],[134.5539,-6.3639],[134.5438,-6.3617],[134.5411,-6.3525],[134.5378,-6.347],[134.533,-6.3453],[134.5215,-6.3683],[134.5175,-6.3715],[134.5164,-6.3871],[134.5187,-6.3975],[134.5148,-6.4073],[134.5085,-6.4138],[134.5049,-6.4208],[134.4958,-6.4334],[134.4895,-6.4359],[134.4851,-6.4439],[134.4836,-6.4539],[134.4775,-6.4508],[134.4749,-6.4548],[134.4713,-6.4555],[134.4733,-6.4681],[134.4811,-6.4806],[134.4808,-6.4879],[134.485,-6.4906],[134.4938,-6.4899],[134.5036,-6.4953],[134.5084,-6.5041],[134.5062,-6.5128],[134.5094,-6.5165],[134.5197,-6.5145],[134.5198,-6.5096],[134.5274,-6.4968],[134.5252,-6.4891],[134.5261,-6.4834],[134.5311,-6.4785],[134.5388,-6.4803],[134.5446,-6.4831],[134.5551,-6.4845],[134.5603,-6.4806],[134.5745,-6.4735],[134.584,-6.4697],[134.5907,-6.4643],[134.6002,-6.4593],[134.6029,-6.4517],[134.6074,-6.4458],[134.612,-6.4316],[134.609,-6.4228],[134.6023,-6.4185],[134.6007,-6.4143],[134.6027,-6.4037]],[[134.3317,-6.3423],[134.3284,-6.343],[134.328,-6.3478],[134.3335,-6.3469],[134.3317,-6.3423]],[[134.5377,-6.336],[134.5363,-6.3331],[134.5302,-6.329],[134.5232,-6.3275],[134.5235,-6.3331],[134.5268,-6.3358],[134.5377,-6.336]],[[134.349,-6.3428],[134.3542,-6.3366],[134.3569,-6.3262],[134.3507,-6.3194],[134.3405,-6.317],[134.3407,-6.3235],[134.3386,-6.3278],[134.338,-6.3376],[134.3435,-6.3428],[134.349,-6.3428]],[[134.3261,-6.3458],[134.323,-6.3394],[134.3205,-6.3252],[134.3218,-6.3244],[134.3162,-6.3085],[134.312,-6.3076],[134.3013,-6.3189],[134.2967,-6.3271],[134.2958,-6.3311],[134.2974,-6.3435],[134.2949,-6.3462],[134.3012,-6.3548],[134.3057,-6.3544],[134.3099,-6.3508],[134.3136,-6.351],[134.317,-6.3612],[134.325,-6.3624],[134.3272,-6.3605],[134.3285,-6.3525],[134.3261,-6.3458]],[[134.5441,-6.3313],[134.5396,-6.3247],[134.5385,-6.3203],[134.5444,-6.3047],[134.5414,-6.3044],[134.5294,-6.3149],[134.5235,-6.3235],[134.5239,-6.3256],[134.5349,-6.3284],[134.5417,-6.3331],[134.5441,-6.3313]],[[134.7109,-6.3032],[134.7069,-6.2999],[134.701,-6.3025],[134.707,-6.3087],[134.7155,-6.3132],[134.7237,-6.3107],[134.7174,-6.3079],[134.7109,-6.3032]],[[134.8331,-6.3107],[134.8338,-6.3073],[134.8313,-6.299],[134.8261,-6.2954],[134.822,-6.2966],[134.7987,-6.3189],[134.7868,-6.3339],[134.7866,-6.3413],[134.7894,-6.3504],[134.7976,-6.3549],[134.8064,-6.3516],[134.8156,-6.3387],[134.8167,-6.3341],[134.8255,-6.3264],[134.8312,-6.3164],[134.8331,-6.3107]],[[134.8694,-6.2821],[134.8626,-6.2834],[134.8517,-6.2829],[134.853,-6.2901],[134.847,-6.3049],[134.8444,-6.3217],[134.8444,-6.3279],[134.8404,-6.3265],[134.8388,-6.3316],[134.8285,-6.3391],[134.8206,-6.3531],[134.8128,-6.3637],[134.7996,-6.3797],[134.7974,-6.3901],[134.8004,-6.406],[134.8062,-6.4102],[134.8045,-6.4183],[134.8068,-6.4287],[134.8067,-6.435],[134.8035,-6.4365],[134.8019,-6.4497],[134.8086,-6.46],[134.8197,-6.4628],[134.8242,-6.4661],[134.8448,-6.4765],[134.8503,-6.4661],[134.8568,-6.4476],[134.8521,-6.4456],[134.853,-6.4385],[134.8573,-6.4279],[134.8601,-6.4236],[134.8685,-6.4026],[134.8689,-6.3973],[134.873,-6.3892],[134.8799,-6.3789],[134.8935,-6.3639],[134.8956,-6.3569],[134.9003,-6.3529],[134.9021,-6.349],[134.9019,-6.3422],[134.9047,-6.3316],[134.9086,-6.3213],[134.9072,-6.3122],[134.9019,-6.3045],[134.8985,-6.2955],[134.8927,-6.2879],[134.8866,-6.2844],[134.8796,-6.2871],[134.875,-6.2871],[134.8694,-6.2821]],[[134.3148,-6.2802],[134.3081,-6.2795],[134.3033,-6.2836],[134.3075,-6.2866],[134.3125,-6.2982],[134.3189,-6.3051],[134.3174,-6.3088],[134.3208,-6.3148],[134.326,-6.3152],[134.3355,-6.3213],[134.3313,-6.3049],[134.3276,-6.3011],[134.3261,-6.2965],[134.3213,-6.291],[134.3148,-6.2802]],[[134.453,-6.2737],[134.4495,-6.2739],[134.4397,-6.2841],[134.4335,-6.2865],[134.4211,-6.2855],[134.4064,-6.2951],[134.3962,-6.3117],[134.4002,-6.3126],[134.3989,-6.3174],[134.4011,-6.3251],[134.3985,-6.3256],[134.3945,-6.317],[134.389,-6.3122],[134.386,-6.3154],[134.3823,-6.3143],[134.3791,-6.3187],[134.3744,-6.3199],[134.37,-6.3269],[134.3653,-6.3314],[134.366,-6.3351],[134.3638,-6.3463],[134.3683,-6.3488],[134.3747,-6.3564],[134.3776,-6.3677],[134.3761,-6.374],[134.372,-6.3814],[134.3713,-6.3866],[134.3677,-6.3911],[134.3685,-6.3972],[134.3761,-6.4003],[134.3825,-6.4007],[134.3988,-6.3956],[134.4073,-6.3974],[134.4157,-6.4057],[134.4215,-6.4095],[134.4276,-6.4203],[134.4309,-6.428],[134.4376,-6.4365],[134.4487,-6.4479],[134.4578,-6.4475],[134.4639,-6.444],[134.4771,-6.4494],[134.483,-6.4462],[134.488,-6.4348],[134.4948,-6.4327],[134.5172,-6.3977],[134.5135,-6.3875],[134.5161,-6.3814],[134.5149,-6.3753],[134.5167,-6.3705],[134.5204,-6.3689],[134.5282,-6.3529],[134.5333,-6.3389],[134.5252,-6.3366],[134.5206,-6.3284],[134.5146,-6.3225],[134.5093,-6.3106],[134.5034,-6.303],[134.498,-6.2995],[134.4832,-6.3021],[134.4765,-6.2998],[134.4736,-6.297],[134.461,-6.2752],[134.453,-6.2737]],[[134.22,-6.2073],[134.2164,-6.1965],[134.2111,-6.1948],[134.208,-6.1977],[134.2051,-6.2044],[134.2086,-6.2089],[134.2166,-6.2124],[134.22,-6.2073]],[[134.8749,-6.1962],[134.8739,-6.1907],[134.8672,-6.1883],[134.8632,-6.185],[134.86,-6.1867],[134.8628,-6.1919],[134.8615,-6.2019],[134.8582,-6.2055],[134.8517,-6.2089],[134.8582,-6.22],[134.8628,-6.2197],[134.8681,-6.2155],[134.8694,-6.2054],[134.8749,-6.1962]],[[134.1214,-6.1616],[134.1165,-6.1593],[134.1086,-6.161],[134.0958,-6.1651],[134.0953,-6.1723],[134.0992,-6.1855],[134.1051,-6.2019],[134.1083,-6.2171],[134.1128,-6.2305],[134.1182,-6.235],[134.1143,-6.24],[134.1146,-6.2436],[134.1211,-6.2486],[134.1232,-6.2531],[134.1279,-6.2691],[134.1309,-6.2912],[134.134,-6.3042],[134.1364,-6.3084],[134.1338,-6.3126],[134.1335,-6.3258],[134.132,-6.3407],[134.1273,-6.3645],[134.1252,-6.3701],[134.1177,-6.3801],[134.1156,-6.3845],[134.1167,-6.4104],[134.1157,-6.4164],[134.1227,-6.4312],[134.1293,-6.4413],[134.1318,-6.4488],[134.1377,-6.4526],[134.1379,-6.4626],[134.1481,-6.4612],[134.1498,-6.4594],[134.1604,-6.4586],[134.1704,-6.4522],[134.1773,-6.4466],[134.183,-6.4451],[134.1899,-6.4365],[134.1906,-6.4328],[134.196,-6.43],[134.2091,-6.4333],[134.2016,-6.4435],[134.1956,-6.4454],[134.188,-6.4517],[134.1833,-6.4525],[134.1846,-6.4603],[134.1899,-6.4625],[134.1964,-6.4563],[134.1965,-6.453],[134.2026,-6.4514],[134.2151,-6.4443],[134.2168,-6.4505],[134.2153,-6.4545],[134.2087,-6.4588],[134.2054,-6.4566],[134.2001,-6.4564],[134.1954,-6.4659],[134.2013,-6.4754],[134.2049,-6.4751],[134.2137,-6.488],[134.223,-6.4959],[134.223,-6.4993],[134.2185,-6.5036],[134.2225,-6.5098],[134.2317,-6.51],[134.2296,-6.5159],[134.2244,-6.5178],[134.2192,-6.5255],[134.2137,-6.5299],[134.2124,-6.5351],[134.214,-6.5431],[134.2213,-6.5529],[134.2257,-6.5568],[134.2322,-6.5656],[134.2343,-6.575],[134.2339,-6.5923],[134.2362,-6.5965],[134.2361,-6.6104],[134.2384,-6.6123],[134.2489,-6.6133],[134.2522,-6.6185],[134.2537,-6.6282],[134.2587,-6.6359],[134.2709,-6.6404],[134.2771,-6.6394],[134.2795,-6.6419],[134.2794,-6.6494],[134.2748,-6.646],[134.2752,-6.643],[134.2612,-6.6411],[134.2532,-6.6367],[134.2526,-6.63],[134.2491,-6.625],[134.2493,-6.6177],[134.2476,-6.615],[134.2371,-6.6137],[134.2311,-6.6038],[134.2316,-6.5915],[134.2306,-6.5878],[134.2321,-6.5791],[134.2306,-6.5723],[134.2253,-6.561],[134.2203,-6.5582],[134.2169,-6.5525],[134.2092,-6.5448],[134.2068,-6.5381],[134.2085,-6.5363],[134.2087,-6.5208],[134.2133,-6.5141],[134.2088,-6.5027],[134.2042,-6.4957],[134.2003,-6.4849],[134.1964,-6.4844],[134.1923,-6.4868],[134.1824,-6.4957],[134.182,-6.4869],[134.1787,-6.4812],[134.1695,-6.4781],[134.1682,-6.48],[134.1561,-6.4858],[134.1558,-6.4892],[134.151,-6.4895],[134.1442,-6.4831],[134.1355,-6.4809],[134.1292,-6.4709],[134.1321,-6.4676],[134.1296,-6.4606],[134.1246,-6.4519],[134.1186,-6.4471],[134.1144,-6.4509],[134.1111,-6.4574],[134.1064,-6.4613],[134.1007,-6.485],[134.0991,-6.4867],[134.097,-6.5007],[134.0966,-6.5281],[134.0944,-6.5495],[134.0937,-6.5755],[134.0916,-6.596],[134.0916,-6.6093],[134.09,-6.6285],[134.0891,-6.645],[134.0863,-6.6466],[134.0833,-6.6728],[134.0818,-6.6948],[134.079,-6.7005],[134.0773,-6.7117],[134.0717,-6.7193],[134.0693,-6.733],[134.0644,-6.7386],[134.058,-6.7571],[134.0535,-6.7591],[134.0511,-6.7744],[134.0563,-6.7836],[134.0599,-6.7977],[134.0619,-6.7999],[134.0666,-6.8146],[134.0704,-6.829],[134.0861,-6.8373],[134.0913,-6.8476],[134.0967,-6.8497],[134.104,-6.8485],[134.1091,-6.8452],[134.1164,-6.8445],[134.1238,-6.8456],[134.134,-6.8523],[134.1391,-6.8571],[134.1429,-6.8633],[134.1472,-6.866],[134.1528,-6.864],[134.1524,-6.8585],[134.1474,-6.8511],[134.1505,-6.8468],[134.1541,-6.8463],[134.1675,-6.8505],[134.1794,-6.8472],[134.1842,-6.8488],[134.1896,-6.8465],[134.1899,-6.8382],[134.194,-6.8394],[134.193,-6.8459],[134.1882,-6.8501],[134.1802,-6.8493],[134.1686,-6.8517],[134.1541,-6.8487],[134.1495,-6.8525],[134.1536,-6.8579],[134.1543,-6.8625],[134.1505,-6.8689],[134.1559,-6.8764],[134.1676,-6.8987],[134.1728,-6.9113],[134.1689,-6.9148],[134.1792,-6.9227],[134.1864,-6.9234],[134.194,-6.9293],[134.1999,-6.9405],[134.2047,-6.9347],[134.206,-6.9308],[134.201,-6.9282],[134.2027,-6.9197],[134.2086,-6.9127],[134.2161,-6.9069],[134.2357,-6.8959],[134.264,-6.8833],[134.2667,-6.8814],[134.2753,-6.8793],[134.2931,-6.8724],[134.2989,-6.8681],[134.3089,-6.8674],[134.323,-6.8643],[134.3326,-6.8601],[134.3359,-6.8553],[134.3379,-6.8483],[134.3494,-6.8382],[134.3654,-6.8211],[134.3745,-6.82],[134.3777,-6.8167],[134.3784,-6.81],[134.3731,-6.8094],[134.3606,-6.8044],[134.3647,-6.7985],[134.3647,-6.7894],[134.3669,-6.7804],[134.3719,-6.7714],[134.3818,-6.7628],[134.3937,-6.7618],[134.4019,-6.7556],[134.4015,-6.7474],[134.3918,-6.7452],[134.3922,-6.7367],[134.3904,-6.7312],[134.3942,-6.7297],[134.4007,-6.732],[134.4072,-6.726],[134.4104,-6.7206],[134.4178,-6.7159],[134.4228,-6.7173],[134.4239,-6.7131],[134.4332,-6.7074],[134.438,-6.7074],[134.4413,-6.7003],[134.4472,-6.6955],[134.4514,-6.695],[134.4573,-6.6907],[134.4546,-6.685],[134.4471,-6.6836],[134.4418,-6.6805],[134.4335,-6.6796],[134.4287,-6.6726],[134.429,-6.6676],[134.4337,-6.6685],[134.4339,-6.6744],[134.4377,-6.674],[134.4362,-6.6629],[134.4326,-6.6579],[134.4273,-6.6561],[134.4246,-6.6497],[134.4309,-6.6503],[134.439,-6.6547],[134.4476,-6.6632],[134.4449,-6.668],[134.4473,-6.6717],[134.4577,-6.674],[134.463,-6.6731],[134.4687,-6.6619],[134.481,-6.6648],[134.4871,-6.6627],[134.4939,-6.657],[134.4955,-6.6499],[134.4941,-6.6453],[134.4997,-6.6449],[134.5014,-6.6391],[134.5003,-6.6328],[134.4975,-6.6291],[134.5026,-6.6182],[134.5091,-6.6171],[134.5136,-6.6132],[134.5166,-6.6071],[134.5237,-6.6097],[134.5286,-6.5999],[134.5286,-6.5938],[134.5315,-6.5836],[134.5262,-6.5757],[134.5212,-6.5758],[134.5193,-6.5807],[134.5088,-6.5812],[134.5036,-6.5867],[134.4988,-6.5842],[134.4839,-6.5816],[134.4843,-6.5734],[134.4798,-6.5702],[134.4894,-6.5648],[134.4969,-6.5525],[134.4948,-6.5488],[134.4879,-6.5542],[134.476,-6.5482],[134.4747,-6.5448],[134.4815,-6.53],[134.4816,-6.5257],[134.485,-6.5246],[134.4897,-6.5307],[134.4987,-6.528],[134.5043,-6.5229],[134.5007,-6.5085],[134.4963,-6.5064],[134.4936,-6.4958],[134.4796,-6.4903],[134.4777,-6.4863],[134.4794,-6.4799],[134.4745,-6.4732],[134.4686,-6.453],[134.4655,-6.4507],[134.4533,-6.4515],[134.4484,-6.4494],[134.4371,-6.4387],[134.4302,-6.4301],[134.423,-6.4153],[134.4197,-6.4105],[134.4144,-6.4073],[134.4094,-6.4004],[134.4049,-6.3976],[134.3959,-6.397],[134.3903,-6.4008],[134.3777,-6.4034],[134.3662,-6.3988],[134.3668,-6.3934],[134.3602,-6.3852],[134.3615,-6.3819],[134.3526,-6.378],[134.3491,-6.3804],[134.3517,-6.3866],[134.3509,-6.3964],[134.3441,-6.3984],[134.3388,-6.3969],[134.3394,-6.3886],[134.3352,-6.3825],[134.331,-6.3793],[134.3252,-6.3783],[134.3215,-6.3721],[134.3147,-6.3669],[134.3134,-6.3589],[134.3113,-6.3549],[134.3047,-6.3562],[134.3007,-6.3596],[134.2937,-6.3476],[134.2957,-6.3433],[134.2938,-6.3406],[134.2941,-6.3337],[134.2975,-6.3202],[134.3053,-6.3118],[134.3099,-6.3034],[134.3038,-6.2932],[134.3004,-6.2897],[134.2954,-6.2893],[134.2879,-6.2925],[134.2875,-6.2881],[134.2793,-6.2807],[134.2724,-6.267],[134.2671,-6.2613],[134.2501,-6.2597],[134.2474,-6.2496],[134.2338,-6.2306],[134.2277,-6.2245],[134.2184,-6.2194],[134.2122,-6.2185],[134.2033,-6.2247],[134.1992,-6.2166],[134.1907,-6.2139],[134.1825,-6.2147],[134.1777,-6.2126],[134.167,-6.2106],[134.1567,-6.2064],[134.1492,-6.2013],[134.1424,-6.1917],[134.1419,-6.1855],[134.1362,-6.1768],[134.1379,-6.1719],[134.1338,-6.1675],[134.1273,-6.168],[134.1214,-6.1616]],[[134.8888,-6.1383],[134.8778,-6.1433],[134.8723,-6.1545],[134.8736,-6.1595],[134.8766,-6.1602],[134.8828,-6.1572],[134.8867,-6.1595],[134.8884,-6.1487],[134.8888,-6.1383]],[[134.2875,-6.1342],[134.2869,-6.1287],[134.2821,-6.1231],[134.274,-6.1188],[134.2708,-6.1199],[134.2642,-6.1264],[134.2667,-6.133],[134.2659,-6.1367],[134.2709,-6.1419],[134.2764,-6.1421],[134.2809,-6.1451],[134.2855,-6.1393],[134.2875,-6.1342]],[[134.7922,-6.093],[134.7876,-6.0931],[134.7909,-6.1009],[134.7948,-6.1006],[134.7945,-6.0948],[134.7922,-6.093]],[[134.8973,-6.0782],[134.8953,-6.0737],[134.8909,-6.0724],[134.8839,-6.0728],[134.8849,-6.0785],[134.8933,-6.0802],[134.8973,-6.0782]],[[134.1513,-6.0038],[134.1394,-6.0143],[134.1253,-6.0343],[134.1234,-6.0385],[134.121,-6.051],[134.1239,-6.0659],[134.1216,-6.0743],[134.1219,-6.0811],[134.1162,-6.0877],[134.1135,-6.0982],[134.1135,-6.1074],[134.119,-6.1131],[134.1265,-6.126],[134.1327,-6.1324],[134.1453,-6.148],[134.1487,-6.1467],[134.1483,-6.1403],[134.1508,-6.1352],[134.1547,-6.1354],[134.1601,-6.1285],[134.1689,-6.13],[134.1798,-6.1213],[134.1847,-6.1206],[134.1913,-6.1255],[134.1998,-6.1275],[134.1987,-6.134],[134.2003,-6.1423],[134.1942,-6.1464],[134.1881,-6.1481],[134.1867,-6.1568],[134.1699,-6.1649],[134.1625,-6.1777],[134.1612,-6.1859],[134.1677,-6.1981],[134.1849,-6.2046],[134.1945,-6.2044],[134.2022,-6.203],[134.2073,-6.1941],[134.2154,-6.1906],[134.2212,-6.197],[134.2246,-6.2037],[134.2284,-6.2028],[134.2342,-6.2203],[134.2421,-6.2343],[134.2536,-6.2452],[134.2735,-6.2606],[134.2822,-6.2771],[134.2882,-6.2841],[134.2968,-6.2853],[134.2984,-6.2829],[134.3073,-6.278],[134.3146,-6.2764],[134.3174,-6.2825],[134.3264,-6.2885],[134.3354,-6.3014],[134.3363,-6.3109],[134.3389,-6.314],[134.3431,-6.3144],[134.3562,-6.3188],[134.3636,-6.3241],[134.368,-6.3237],[134.3726,-6.3182],[134.3714,-6.3132],[134.3775,-6.3091],[134.3862,-6.3113],[134.3932,-6.3061],[134.4089,-6.2901],[134.4171,-6.2856],[134.4228,-6.281],[134.426,-6.2832],[134.4391,-6.2794],[134.4484,-6.2707],[134.4385,-6.2721],[134.4253,-6.264],[134.4155,-6.2628],[134.4046,-6.2637],[134.3932,-6.2609],[134.3913,-6.2524],[134.3921,-6.2465],[134.3899,-6.2437],[134.3845,-6.2422],[134.3813,-6.2385],[134.3746,-6.2353],[134.3711,-6.2298],[134.3669,-6.2264],[134.3571,-6.2233],[134.3413,-6.2277],[134.3366,-6.2243],[134.3303,-6.2147],[134.3265,-6.207],[134.3112,-6.1867],[134.3104,-6.1754],[134.3065,-6.1716],[134.2989,-6.1685],[134.29,-6.161],[134.283,-6.1587],[134.2793,-6.1591],[134.2742,-6.1641],[134.2678,-6.1588],[134.2702,-6.1486],[134.2671,-6.1448],[134.254,-6.1431],[134.245,-6.1406],[134.244,-6.1343],[134.2394,-6.1344],[134.2334,-6.1268],[134.2333,-6.1193],[134.2388,-6.1161],[134.2406,-6.1116],[134.2419,-6.1012],[134.2458,-6.092],[134.2493,-6.0877],[134.257,-6.0846],[134.2643,-6.0746],[134.2696,-6.0715],[134.2797,-6.0627],[134.2791,-6.0592],[134.2744,-6.0541],[134.2673,-6.0572],[134.2619,-6.0628],[134.2598,-6.0681],[134.249,-6.0723],[134.2446,-6.0717],[134.2411,-6.0646],[134.2297,-6.0554],[134.2288,-6.0443],[134.2322,-6.0381],[134.2325,-6.0266],[134.227,-6.0224],[134.2277,-6.0163],[134.2226,-6.0156],[134.2118,-6.0168],[134.2034,-6.0205],[134.1976,-6.0182],[134.1934,-6.0235],[134.196,-6.0328],[134.1917,-6.0361],[134.1758,-6.0343],[134.1697,-6.0383],[134.1615,-6.0374],[134.1563,-6.0305],[134.1552,-6.0262],[134.1565,-6.0179],[134.1595,-6.0113],[134.1513,-6.0038]],[[134.6851,-5.9579],[134.6794,-5.9579],[134.6814,-5.9636],[134.6851,-5.9579]],[[134.8624,-5.9534],[134.8554,-5.9504],[134.8533,-5.9551],[134.8552,-5.962],[134.8608,-5.963],[134.8643,-5.9614],[134.8624,-5.9534]],[[134.7476,-5.95],[134.7398,-5.95],[134.7408,-5.9542],[134.7462,-5.9574],[134.7483,-5.9549],[134.7476,-5.95]],[[134.5694,-5.9353],[134.5613,-5.9302],[134.5548,-5.9234],[134.5366,-5.9185],[134.5308,-5.9214],[134.5195,-5.9309],[134.5143,-5.94],[134.5078,-5.9466],[134.5004,-5.9522],[134.4957,-5.9537],[134.4874,-5.9606],[134.4744,-5.9606],[134.4696,-5.9582],[134.4669,-5.967],[134.4674,-5.974],[134.4623,-5.9814],[134.4562,-5.9856],[134.4505,-5.9953],[134.4417,-6.0054],[134.4391,-6.0147],[134.433,-6.0188],[134.418,-6.0249],[134.4035,-6.0244],[134.3962,-6.0216],[134.3898,-6.022],[134.3816,-6.0188],[134.3813,-6.0233],[134.375,-6.0218],[134.3644,-6.0309],[134.3582,-6.0408],[134.3534,-6.0413],[134.3481,-6.046],[134.3464,-6.0369],[134.3427,-6.0326],[134.3296,-6.0243],[134.3261,-6.0229],[134.3116,-6.026],[134.2946,-6.0373],[134.2916,-6.0408],[134.2842,-6.0446],[134.2794,-6.0497],[134.2852,-6.0578],[134.29,-6.0709],[134.282,-6.0766],[134.2783,-6.0775],[134.2731,-6.0833],[134.2698,-6.094],[134.2712,-6.1007],[134.2708,-6.1091],[134.2726,-6.1155],[134.2875,-6.1248],[134.2885,-6.1314],[134.2866,-6.142],[134.2833,-6.1469],[134.2945,-6.1553],[134.2975,-6.162],[134.3117,-6.173],[134.3148,-6.1791],[134.316,-6.1876],[134.319,-6.1932],[134.3323,-6.209],[134.3377,-6.2127],[134.3412,-6.2185],[134.3489,-6.2176],[134.3686,-6.2243],[134.3731,-6.2297],[134.3817,-6.2352],[134.384,-6.2289],[134.3883,-6.2315],[134.3914,-6.237],[134.3968,-6.2549],[134.4,-6.2578],[134.4086,-6.2594],[134.4246,-6.2599],[134.432,-6.2657],[134.4412,-6.2685],[134.4383,-6.2596],[134.4463,-6.2639],[134.4542,-6.2648],[134.4598,-6.259],[134.462,-6.2603],[134.4576,-6.2672],[134.4623,-6.2718],[134.4761,-6.2955],[134.4834,-6.2977],[134.4882,-6.2963],[134.4941,-6.2904],[134.4999,-6.2926],[134.5048,-6.2966],[134.5112,-6.3127],[134.5209,-6.3239],[134.5239,-6.3214],[134.5283,-6.3142],[134.5454,-6.3008],[134.5472,-6.3016],[134.54,-6.32],[134.5451,-6.3307],[134.541,-6.3356],[134.5415,-6.3403],[134.5457,-6.3495],[134.553,-6.3527],[134.5693,-6.3557],[134.5771,-6.35],[134.5917,-6.3533],[134.6126,-6.3703],[134.6229,-6.3733],[134.6269,-6.37],[134.6288,-6.3573],[134.6344,-6.359],[134.6557,-6.3461],[134.6615,-6.3463],[134.6687,-6.3444],[134.6776,-6.3446],[134.6868,-6.3392],[134.7046,-6.3244],[134.7091,-6.3184],[134.7091,-6.3118],[134.7057,-6.3106],[134.6983,-6.3121],[134.6948,-6.3062],[134.6997,-6.3026],[134.7074,-6.2993],[134.7186,-6.3076],[134.7257,-6.3054],[134.729,-6.3014],[134.7378,-6.2799],[134.7414,-6.2675],[134.7344,-6.2623],[134.7384,-6.2598],[134.7427,-6.2609],[134.7446,-6.2559],[134.7517,-6.2449],[134.7474,-6.2401],[134.7534,-6.2373],[134.7583,-6.2256],[134.7593,-6.2186],[134.7648,-6.2059],[134.7637,-6.1987],[134.7606,-6.193],[134.7603,-6.1881],[134.7648,-6.1797],[134.7677,-6.1778],[134.769,-6.1654],[134.7661,-6.1568],[134.762,-6.1549],[134.7452,-6.1622],[134.7305,-6.1694],[134.7229,-6.1697],[134.7198,-6.1714],[134.7035,-6.1881],[134.6944,-6.1938],[134.6922,-6.1916],[134.7027,-6.1847],[134.7065,-6.1779],[134.7122,-6.1745],[134.7133,-6.1701],[134.7102,-6.1657],[134.715,-6.1624],[134.7178,-6.1638],[134.7205,-6.157],[134.724,-6.1605],[134.7289,-6.1601],[134.7385,-6.1559],[134.7485,-6.1457],[134.7618,-6.1388],[134.7654,-6.1312],[134.7632,-6.1267],[134.7691,-6.1212],[134.7771,-6.1076],[134.7763,-6.1055],[134.7828,-6.0948],[134.7817,-6.0892],[134.7729,-6.0837],[134.7735,-6.0757],[134.7644,-6.0676],[134.7584,-6.0643],[134.7539,-6.0544],[134.755,-6.0476],[134.7476,-6.0428],[134.7427,-6.0439],[134.741,-6.0332],[134.727,-6.023],[134.7186,-6.0307],[134.7115,-6.0334],[134.7089,-6.0313],[134.718,-6.0275],[134.7221,-6.0211],[134.7149,-6.0105],[134.7078,-6.0078],[134.6882,-5.9905],[134.6748,-5.9814],[134.6642,-5.9757],[134.6634,-5.9697],[134.6579,-5.9625],[134.6531,-5.96],[134.6588,-5.9562],[134.6612,-5.9513],[134.66,-5.9473],[134.6557,-5.9436],[134.6486,-5.9431],[134.6423,-5.9406],[134.636,-5.9362],[134.6314,-5.9365],[134.6232,-5.9417],[134.6155,-5.9444],[134.6081,-5.9425],[134.6024,-5.9463],[134.5882,-5.9658],[134.5854,-5.9658],[134.5975,-5.9488],[134.5968,-5.9425],[134.5878,-5.9383],[134.5792,-5.9368],[134.5732,-5.938],[134.5694,-5.9353]],[[134.1805,-5.9195],[134.1718,-5.9178],[134.1683,-5.9142],[134.165,-5.9183],[134.1667,-5.9223],[134.174,-5.9229],[134.1805,-5.9195]],[[134.6348,-5.929],[134.629,-5.9229],[134.6269,-5.9182],[134.6319,-5.9121],[134.6272,-5.9081],[134.6244,-5.9099],[134.6219,-5.917],[134.6118,-5.9336],[134.6186,-5.9379],[134.6348,-5.929]],[[134.7705,-5.9188],[134.7709,-5.9158],[134.7658,-5.9083],[134.7631,-5.911],[134.7657,-5.9164],[134.7705,-5.9188]],[[134.7805,-5.9075],[134.788,-5.9063],[134.7908,-5.8998],[134.7881,-5.8941],[134.7848,-5.8931],[134.7769,-5.8959],[134.7739,-5.9012],[134.7737,-5.9071],[134.7766,-5.9095],[134.7805,-5.9075]],[[134.6513,-5.8946],[134.6492,-5.8912],[134.6506,-5.8837],[134.6485,-5.8747],[134.6415,-5.871],[134.6294,-5.8779],[134.6229,-5.8865],[134.6107,-5.8955],[134.6018,-5.9117],[134.5931,-5.9203],[134.5877,-5.9336],[134.6034,-5.9398],[134.6085,-5.9359],[134.6247,-5.907],[134.6283,-5.9068],[134.6323,-5.911],[134.6349,-5.91],[134.6513,-5.8946]],[[134.8035,-5.8744],[134.7998,-5.8707],[134.7938,-5.8727],[134.783,-5.8812],[134.7824,-5.8862],[134.7845,-5.8902],[134.7896,-5.8936],[134.793,-5.8923],[134.7943,-5.8867],[134.8035,-5.8744]],[[134.7711,-5.8732],[134.762,-5.8686],[134.7578,-5.86],[134.7515,-5.8582],[134.7458,-5.8624],[134.7422,-5.8745],[134.7368,-5.8836],[134.7282,-5.8896],[134.7272,-5.8961],[134.7352,-5.9024],[134.7377,-5.9074],[134.7421,-5.9053],[134.7464,-5.8985],[134.7514,-5.9027],[134.7565,-5.8978],[134.7596,-5.897],[134.765,-5.8922],[134.7709,-5.8902],[134.7727,-5.8859],[134.769,-5.881],[134.7711,-5.8732]],[[134.7689,-5.8656],[134.7659,-5.8614],[134.7662,-5.8571],[134.7693,-5.851],[134.7609,-5.8481],[134.7527,-5.8525],[134.7522,-5.8572],[134.759,-5.8598],[134.7657,-5.8658],[134.7689,-5.8656]],[[134.7507,-5.844],[134.7425,-5.8423],[134.7371,-5.8387],[134.7277,-5.835],[134.7199,-5.8331],[134.7058,-5.8317],[134.703,-5.8329],[134.6982,-5.8422],[134.6931,-5.8425],[134.6881,-5.8458],[134.6819,-5.8449],[134.6726,-5.8463],[134.6729,-5.8497],[134.6694,-5.8527],[134.6595,-5.8562],[134.6486,-5.865],[134.6462,-5.8696],[134.6503,-5.8741],[134.6514,-5.8849],[134.6497,-5.8905],[134.6522,-5.8956],[134.6451,-5.9018],[134.6281,-5.9181],[134.6363,-5.9285],[134.6462,-5.9294],[134.6581,-5.9349],[134.6621,-5.9311],[134.6737,-5.9409],[134.6781,-5.9524],[134.6834,-5.9562],[134.6917,-5.9587],[134.6935,-5.9641],[134.6992,-5.9717],[134.7092,-5.9765],[134.7279,-5.9778],[134.7334,-5.9792],[134.7355,-5.9747],[134.741,-5.9703],[134.7427,-5.9632],[134.7385,-5.9601],[134.7333,-5.9531],[134.7355,-5.95],[134.733,-5.9417],[134.7394,-5.9412],[134.7427,-5.9345],[134.7353,-5.9328],[134.728,-5.9272],[134.7246,-5.9281],[134.7199,-5.9214],[134.7169,-5.9205],[134.7094,-5.9107],[134.7123,-5.908],[134.7097,-5.8999],[134.713,-5.8985],[134.7109,-5.8907],[134.7174,-5.891],[134.7226,-5.8847],[134.7302,-5.8879],[134.7387,-5.8808],[134.7415,-5.8749],[134.7462,-5.8606],[134.751,-5.8568],[134.7509,-5.8541],[134.7557,-5.8488],[134.7507,-5.844]],[[134.3065,-5.8297],[134.3026,-5.8328],[134.3031,-5.844],[134.309,-5.845],[134.3129,-5.8437],[134.3112,-5.8374],[134.306,-5.8322],[134.3065,-5.8297]],[[134.6987,-5.8394],[134.7015,-5.8323],[134.7053,-5.8279],[134.6991,-5.827],[134.6943,-5.8325],[134.6889,-5.836],[134.6922,-5.8416],[134.6987,-5.8394]],[[134.8075,-5.8078],[134.8031,-5.8086],[134.8013,-5.8163],[134.8051,-5.8184],[134.814,-5.8193],[134.8135,-5.8154],[134.8075,-5.8078]],[[134.7879,-5.8068],[134.7796,-5.8057],[134.7737,-5.8088],[134.7724,-5.813],[134.7671,-5.817],[134.7671,-5.8218],[134.7807,-5.8231],[134.7904,-5.8209],[134.7954,-5.8216],[134.8006,-5.817],[134.8009,-5.8102],[134.7943,-5.81],[134.7879,-5.8068]],[[134.7774,-5.796],[134.7787,-5.7897],[134.7765,-5.7868],[134.7704,-5.79],[134.7686,-5.7928],[134.774,-5.7964],[134.7774,-5.796]],[[134.7576,-5.8021],[134.7588,-5.7964],[134.7535,-5.7938],[134.7505,-5.7853],[134.7462,-5.7888],[134.7422,-5.7964],[134.7429,-5.8033],[134.7465,-5.808],[134.7528,-5.803],[134.7576,-5.8021]],[[134.7911,-5.7767],[134.784,-5.7742],[134.7776,-5.7832],[134.7784,-5.7861],[134.7871,-5.791],[134.793,-5.7902],[134.796,-5.7861],[134.7947,-5.7794],[134.7911,-5.7767]],[[134.3231,-5.7719],[134.3197,-5.7702],[134.3134,-5.7751],[134.3208,-5.7787],[134.3231,-5.7719]],[[134.785,-5.7702],[134.7908,-5.7671],[134.7879,-5.7624],[134.7842,-5.7635],[134.785,-5.7702]],[[134.1977,-5.7512],[134.1955,-5.7512],[134.1927,-5.761],[134.1943,-5.7684],[134.1909,-5.785],[134.1886,-5.8091],[134.1867,-5.8185],[134.1874,-5.8241],[134.1916,-5.8307],[134.1997,-5.8341],[134.2068,-5.8356],[134.2218,-5.8251],[134.2277,-5.8246],[134.2401,-5.8289],[134.2482,-5.8243],[134.251,-5.82],[134.2505,-5.8153],[134.2444,-5.8149],[134.241,-5.8095],[134.2447,-5.802],[134.2513,-5.793],[134.2524,-5.7821],[134.2495,-5.7719],[134.2403,-5.7625],[134.2381,-5.7565],[134.232,-5.7599],[134.2132,-5.755],[134.2005,-5.7508],[134.1977,-5.7512]],[[134.8101,-5.734],[134.8075,-5.7312],[134.8001,-5.7283],[134.7947,-5.7276],[134.7897,-5.7296],[134.7849,-5.7389],[134.7826,-5.7538],[134.7916,-5.7553],[134.7978,-5.7516],[134.8033,-5.7512],[134.8143,-5.7405],[134.8101,-5.734]],[[134.7178,-5.7469],[134.7007,-5.7387],[134.695,-5.7306],[134.6793,-5.726],[134.668,-5.7248],[134.6637,-5.7262],[134.6571,-5.7373],[134.6558,-5.7455],[134.6623,-5.7498],[134.669,-5.7506],[134.6716,-5.7604],[134.6769,-5.7703],[134.6829,-5.7701],[134.6915,-5.7774],[134.69,-5.7847],[134.6921,-5.797],[134.6963,-5.8026],[134.7061,-5.8102],[134.7142,-5.8132],[134.7175,-5.8124],[134.7218,-5.8067],[134.7265,-5.8099],[134.7352,-5.8062],[134.7351,-5.8028],[134.7399,-5.8004],[134.7395,-5.7959],[134.7455,-5.7905],[134.7472,-5.7854],[134.7428,-5.7802],[134.7456,-5.7749],[134.7448,-5.7665],[134.7421,-5.7627],[134.7409,-5.7469],[134.7417,-5.7418],[134.7347,-5.7374],[134.7308,-5.7384],[134.7278,-5.7466],[134.7205,-5.7489],[134.7178,-5.7469]],[[134.3386,-5.695],[134.3313,-5.6932],[134.3314,-5.698],[134.338,-5.7037],[134.3448,-5.6995],[134.3455,-5.6942],[134.3386,-5.695]],[[134.7716,-5.6753],[134.7598,-5.6762],[134.7596,-5.6823],[134.7676,-5.6852],[134.772,-5.6791],[134.7716,-5.6753]],[[134.8044,-5.6072],[134.8051,-5.6026],[134.8007,-5.601],[134.7986,-5.6061],[134.8044,-5.6072]],[[134.7008,-5.5735],[134.6993,-5.5768],[134.703,-5.5799],[134.7087,-5.5777],[134.7077,-5.5738],[134.7008,-5.5735]],[[134.5523,-5.5607],[134.5474,-5.569],[134.5306,-5.573],[134.5294,-5.5824],[134.5339,-5.587],[134.5332,-5.5955],[134.5358,-5.5999],[134.5351,-5.6099],[134.5356,-5.6271],[134.5407,-5.6347],[134.5436,-5.6359],[134.5472,-5.6442],[134.5473,-5.6494],[134.5612,-5.6498],[134.5696,-5.6536],[134.5728,-5.6531],[134.5728,-5.6643],[134.579,-5.6771],[134.5827,-5.6788],[134.5891,-5.6849],[134.5931,-5.6932],[134.5941,-5.6989],[134.599,-5.7024],[134.6026,-5.7085],[134.6085,-5.7129],[134.6105,-5.7188],[134.6162,-5.7227],[134.6238,-5.7133],[134.6311,-5.7112],[134.6396,-5.7118],[134.6474,-5.7239],[134.6507,-5.7256],[134.6538,-5.7216],[134.6609,-5.7246],[134.6664,-5.7236],[134.6782,-5.7249],[134.6914,-5.7248],[134.6979,-5.7265],[134.7015,-5.731],[134.6996,-5.7349],[134.7041,-5.7388],[134.7166,-5.7415],[134.7222,-5.7344],[134.7245,-5.7268],[134.7303,-5.718],[134.7313,-5.7081],[134.735,-5.7015],[134.7301,-5.698],[134.7318,-5.6932],[134.7295,-5.686],[134.732,-5.6823],[134.7333,-5.6753],[134.7451,-5.672],[134.75,-5.6732],[134.7519,-5.6693],[134.7591,-5.6684],[134.764,-5.6656],[134.764,-5.6581],[134.7568,-5.6537],[134.7633,-5.6475],[134.7592,-5.6424],[134.7545,-5.6331],[134.7483,-5.6254],[134.7477,-5.6194],[134.7434,-5.6156],[134.7396,-5.6172],[134.7351,-5.6247],[134.7297,-5.6131],[134.7166,-5.6121],[134.7185,-5.6024],[134.7126,-5.5975],[134.7095,-5.5987],[134.6944,-5.5994],[134.6982,-5.5889],[134.6888,-5.5858],[134.6867,-5.5816],[134.6812,-5.5828],[134.68,-5.5862],[134.6608,-5.5875],[134.6594,-5.5828],[134.6518,-5.5808],[134.6518,-5.5761],[134.6417,-5.5778],[134.639,-5.5826],[134.6346,-5.5847],[134.6296,-5.5816],[134.6244,-5.5843],[134.6213,-5.5833],[134.6085,-5.5741],[134.6071,-5.5693],[134.6001,-5.5684],[134.5949,-5.5755],[134.5929,-5.5688],[134.5877,-5.5728],[134.5824,-5.5716],[134.5812,-5.5688],[134.5742,-5.5716],[134.5645,-5.5683],[134.5616,-5.5647],[134.5523,-5.5607]],[[134.3276,-5.5632],[134.3231,-5.56],[134.3172,-5.561],[134.3107,-5.5642],[134.304,-5.5637],[134.2968,-5.5782],[134.2935,-5.5866],[134.2907,-5.5888],[134.2886,-5.5969],[134.2839,-5.6029],[134.2822,-5.6077],[134.2655,-5.6128],[134.2631,-5.6118],[134.2568,-5.6149],[134.2515,-5.6104],[134.2436,-5.6225],[134.246,-5.6293],[134.2619,-5.6369],[134.2679,-5.6438],[134.2764,-5.6456],[134.2852,-5.6384],[134.2891,-5.6263],[134.2941,-5.6218],[134.311,-5.6128],[134.3215,-5.6121],[134.3279,-5.6101],[134.3373,-5.6016],[134.3408,-5.597],[134.3426,-5.5877],[134.3462,-5.582],[134.3477,-5.5745],[134.3418,-5.5671],[134.3375,-5.5677],[134.3276,-5.5632]],[[134.7151,-5.5512],[134.713,-5.5487],[134.7016,-5.5508],[134.7053,-5.5565],[134.7008,-5.5606],[134.7008,-5.5676],[134.6988,-5.5725],[134.7041,-5.5725],[134.7107,-5.5648],[134.7147,-5.5572],[134.7151,-5.5512]],[[134.6991,-5.5358],[134.6909,-5.536],[134.6897,-5.5404],[134.6913,-5.5448],[134.6986,-5.5471],[134.7024,-5.5419],[134.6991,-5.5358]],[[134.4689,-5.5635],[134.4637,-5.5601],[134.4589,-5.5471],[134.4562,-5.5438],[134.4561,-5.538],[134.4597,-5.5319],[134.4568,-5.5288],[134.4527,-5.5306],[134.4491,-5.5361],[134.4466,-5.5441],[134.4516,-5.5512],[134.4452,-5.5682],[134.4445,-5.5784],[134.4367,-5.5793],[134.4343,-5.5817],[134.432,-5.59],[134.427,-5.59],[134.4283,-5.595],[134.4315,-5.5973],[134.4276,-5.6072],[134.4244,-5.6111],[134.4239,-5.6195],[134.4181,-5.6264],[134.4184,-5.6292],[134.4117,-5.6439],[134.3957,-5.6544],[134.3754,-5.6699],[134.3649,-5.6764],[134.3561,-5.6841],[134.3525,-5.6903],[134.3517,-5.6972],[134.3623,-5.7038],[134.3591,-5.706],[134.3641,-5.711],[134.3609,-5.7161],[134.3476,-5.7226],[134.3438,-5.7273],[134.334,-5.7261],[134.3293,-5.7196],[134.3222,-5.7153],[134.3203,-5.7166],[134.3152,-5.7099],[134.3142,-5.704],[134.3109,-5.7049],[134.3049,-5.7029],[134.3023,-5.6988],[134.2912,-5.6891],[134.2804,-5.687],[134.2788,-5.6824],[134.2738,-5.6828],[134.2629,-5.6784],[134.261,-5.6753],[134.2541,-5.6702],[134.251,-5.6621],[134.2375,-5.6706],[134.2296,-5.6816],[134.2223,-5.6958],[134.2199,-5.6967],[134.2114,-5.7165],[134.2178,-5.7269],[134.2291,-5.7363],[134.2362,-5.7446],[134.2397,-5.747],[134.2448,-5.7463],[134.2594,-5.7584],[134.2691,-5.7574],[134.2848,-5.752],[134.2918,-5.7572],[134.3016,-5.7554],[134.3036,-5.7517],[134.3078,-5.7569],[134.3069,-5.7654],[134.3184,-5.7654],[134.3237,-5.7642],[134.3315,-5.7656],[134.3365,-5.7707],[134.3345,-5.7779],[134.3268,-5.7799],[134.3273,-5.786],[134.3257,-5.7908],[134.3276,-5.7953],[134.3343,-5.7977],[134.3425,-5.7922],[134.3535,-5.7793],[134.3648,-5.7681],[134.3709,-5.7704],[134.3905,-5.7873],[134.3969,-5.7895],[134.4087,-5.7856],[134.4025,-5.7923],[134.3967,-5.7933],[134.3881,-5.7981],[134.3746,-5.7988],[134.378,-5.8047],[134.3745,-5.8081],[134.3698,-5.821],[134.3606,-5.8193],[134.3621,-5.8238],[134.3582,-5.8277],[134.3606,-5.8307],[134.3701,-5.8305],[134.3745,-5.8365],[134.3718,-5.8408],[134.3715,-5.8475],[134.3608,-5.8464],[134.3544,-5.849],[134.3474,-5.8461],[134.3467,-5.8493],[134.3414,-5.8511],[134.3333,-5.8576],[134.331,-5.8621],[134.3393,-5.8685],[134.3363,-5.8818],[134.3302,-5.8868],[134.3158,-5.8917],[134.3062,-5.8991],[134.2996,-5.8971],[134.2972,-5.9029],[134.2969,-5.9094],[134.2943,-5.9131],[134.2938,-5.9188],[134.2969,-5.9257],[134.302,-5.925],[134.3112,-5.928],[134.3137,-5.9366],[134.3159,-5.9393],[134.3251,-5.9396],[134.3289,-5.9409],[134.333,-5.9491],[134.332,-5.9543],[134.3291,-5.9569],[134.3262,-5.9691],[134.3216,-5.9822],[134.3163,-5.9938],[134.3082,-6.0074],[134.3052,-6.0079],[134.3008,-6.0174],[134.304,-6.0197],[134.3077,-6.0181],[134.3112,-6.0215],[134.3206,-6.0173],[134.3319,-6.0204],[134.3418,-6.026],[134.3445,-6.0245],[134.3488,-6.0325],[134.3535,-6.0349],[134.3589,-6.0308],[134.3706,-6.0194],[134.3799,-6.0158],[134.3856,-6.0166],[134.3884,-6.0196],[134.4005,-6.0204],[134.4026,-6.0218],[134.418,-6.0228],[134.4337,-6.0163],[134.4378,-6.0113],[134.4385,-6.0056],[134.4501,-5.9919],[134.4512,-5.9872],[134.4621,-5.979],[134.4662,-5.9709],[134.4651,-5.9652],[134.4685,-5.9563],[134.4864,-5.9594],[134.4938,-5.9535],[134.5056,-5.9465],[134.5124,-5.9372],[134.5162,-5.9299],[134.5259,-5.9232],[134.5315,-5.9179],[134.5386,-5.916],[134.5555,-5.9211],[134.5629,-5.9294],[134.5729,-5.9324],[134.5802,-5.9325],[134.585,-5.9299],[134.591,-5.92],[134.5957,-5.9138],[134.6041,-5.9055],[134.6071,-5.8955],[134.6174,-5.8869],[134.6253,-5.8787],[134.6348,-5.8721],[134.6435,-5.869],[134.6467,-5.8643],[134.655,-5.8571],[134.6713,-5.85],[134.6717,-5.8455],[134.676,-5.8439],[134.6848,-5.8431],[134.6892,-5.8392],[134.6875,-5.8354],[134.6994,-5.8254],[134.7054,-5.8251],[134.7108,-5.8204],[134.7132,-5.8158],[134.7075,-5.813],[134.699,-5.8067],[134.6902,-5.797],[134.6881,-5.7822],[134.6889,-5.7764],[134.6819,-5.7716],[134.6755,-5.7713],[134.6705,-5.7625],[134.6686,-5.7539],[134.6621,-5.7521],[134.6541,-5.7471],[134.6562,-5.7426],[134.6546,-5.7379],[134.6603,-5.7269],[134.6553,-5.7243],[134.6501,-5.7281],[134.6431,-5.7217],[134.6406,-5.7156],[134.6363,-5.7129],[134.6324,-5.7151],[134.6254,-5.7148],[134.619,-5.7241],[134.616,-5.7256],[134.6093,-5.7191],[134.6066,-5.7132],[134.6016,-5.7102],[134.5991,-5.7054],[134.5946,-5.7023],[134.5887,-5.6864],[134.5767,-5.6771],[134.5729,-5.6704],[134.5714,-5.6635],[134.5726,-5.6562],[134.5637,-5.6522],[134.5547,-5.6506],[134.5464,-5.6507],[134.5444,-5.6391],[134.5402,-5.6364],[134.5335,-5.6268],[134.5336,-5.6123],[134.5346,-5.6041],[134.5314,-5.5929],[134.5322,-5.5878],[134.5268,-5.582],[134.5286,-5.5709],[134.5272,-5.5641],[134.5216,-5.5569],[134.5165,-5.5645],[134.5111,-5.5639],[134.504,-5.5546],[134.5023,-5.5462],[134.5045,-5.5333],[134.4946,-5.5336],[134.4904,-5.5413],[134.4873,-5.5523],[134.4806,-5.5628],[134.4689,-5.5635]],[[134.4856,-5.5258],[134.4847,-5.5166],[134.4783,-5.5191],[134.4763,-5.525],[134.4812,-5.5325],[134.4856,-5.5297],[134.4856,-5.5258]],[[134.5019,-5.5098],[134.497,-5.5099],[134.4955,-5.5144],[134.4992,-5.5241],[134.5086,-5.5236],[134.5142,-5.5179],[134.508,-5.5125],[134.5019,-5.5098]],[[134.5051,-5.4921],[134.501,-5.4902],[134.4957,-5.4919],[134.4903,-5.4876],[134.4859,-5.4909],[134.4858,-5.4973],[134.4907,-5.5052],[134.4992,-5.5052],[134.4991,-5.5017],[134.5051,-5.4921]],[[134.2737,-5.5359],[134.2778,-5.5299],[134.2858,-5.5229],[134.2861,-5.517],[134.2825,-5.5001],[134.2763,-5.4878],[134.2708,-5.4836],[134.2625,-5.486],[134.2536,-5.4872],[134.2521,-5.4979],[134.2496,-5.5056],[134.2544,-5.5101],[134.2568,-5.5301],[134.2534,-5.5429],[134.2539,-5.5533],[134.2562,-5.5541],[134.264,-5.5442],[134.2668,-5.539],[134.2737,-5.5359]],[[134.6867,-5.4767],[134.69,-5.4711],[134.6879,-5.4656],[134.6834,-5.4655],[134.6831,-5.4731],[134.6867,-5.4767]],[[134.6794,-5.4762],[134.6824,-5.4636],[134.675,-5.464],[134.6727,-5.4717],[134.6739,-5.477],[134.6794,-5.4762]],[[134.6691,-5.4746],[134.6742,-5.4654],[134.6661,-5.4559],[134.6644,-5.448],[134.6622,-5.4453],[134.655,-5.442],[134.6515,-5.4425],[134.6501,-5.4471],[134.656,-5.4544],[134.6554,-5.4608],[134.6626,-5.4691],[134.6644,-5.4739],[134.6691,-5.4746]],[[134.4918,-5.4284],[134.4925,-5.4223],[134.4853,-5.4284],[134.4786,-5.4315],[134.4741,-5.4382],[134.4662,-5.4424],[134.4609,-5.4502],[134.4606,-5.4584],[134.4626,-5.4614],[134.4692,-5.4598],[134.4707,-5.4571],[134.4771,-5.4551],[134.4891,-5.4404],[134.489,-5.4347],[134.4918,-5.4284]],[[134.5051,-5.4921],[134.5,-5.5017],[134.5007,-5.5058],[134.5042,-5.509],[134.5123,-5.5102],[134.5182,-5.5177],[134.5121,-5.5231],[134.5156,-5.5291],[134.5098,-5.5367],[134.5061,-5.5454],[134.5059,-5.5539],[134.5138,-5.5619],[134.5206,-5.5553],[134.5236,-5.5556],[134.5332,-5.5681],[134.5433,-5.5676],[134.5459,-5.5658],[134.5486,-5.5594],[134.553,-5.5574],[134.5553,-5.5605],[134.5659,-5.5638],[134.5716,-5.5631],[134.5707,-5.5692],[134.574,-5.5696],[134.581,-5.5667],[134.5852,-5.5703],[134.5924,-5.5672],[134.5972,-5.5694],[134.5991,-5.565],[134.6115,-5.569],[134.6128,-5.574],[134.6205,-5.5808],[134.6306,-5.5802],[134.6372,-5.581],[134.6389,-5.5724],[134.6491,-5.573],[134.6494,-5.5667],[134.6475,-5.5559],[134.6559,-5.5584],[134.6559,-5.5664],[134.6602,-5.5707],[134.6629,-5.5671],[134.672,-5.5718],[134.6769,-5.5727],[134.6817,-5.571],[134.684,-5.5614],[134.6881,-5.5621],[134.6872,-5.5695],[134.6918,-5.5715],[134.6964,-5.5704],[134.699,-5.5662],[134.6882,-5.5563],[134.6845,-5.5499],[134.6769,-5.5457],[134.6738,-5.5384],[134.6776,-5.535],[134.6837,-5.5351],[134.688,-5.5373],[134.7017,-5.5349],[134.6996,-5.5305],[134.7055,-5.516],[134.6991,-5.512],[134.6913,-5.5112],[134.6802,-5.5056],[134.6803,-5.5006],[134.6756,-5.4904],[134.6664,-5.4817],[134.6623,-5.4829],[134.6607,-5.4885],[134.6608,-5.4946],[134.6538,-5.492],[134.6536,-5.4802],[134.6483,-5.4701],[134.6508,-5.4672],[134.6514,-5.451],[134.6482,-5.4475],[134.6475,-5.4392],[134.6378,-5.4326],[134.631,-5.4302],[134.6283,-5.4275],[134.6132,-5.4209],[134.608,-5.422],[134.6118,-5.43],[134.6086,-5.4307],[134.6048,-5.425],[134.5982,-5.4224],[134.6017,-5.4185],[134.5975,-5.4143],[134.5911,-5.4162],[134.5894,-5.4234],[134.5856,-5.417],[134.578,-5.4196],[134.5716,-5.4187],[134.5647,-5.4274],[134.5668,-5.4402],[134.5611,-5.4352],[134.5546,-5.4361],[134.558,-5.4432],[134.5464,-5.4363],[134.5357,-5.4341],[134.5305,-5.4265],[134.5218,-5.4259],[134.514,-5.4214],[134.5019,-5.4192],[134.4947,-5.4256],[134.4908,-5.4324],[134.4926,-5.4363],[134.4942,-5.4469],[134.4964,-5.4473],[134.5029,-5.4544],[134.5,-5.4755],[134.4958,-5.4763],[134.4914,-5.4805],[134.4913,-5.4848],[134.4977,-5.4888],[134.5029,-5.4878],[134.5073,-5.4848],[134.5137,-5.485],[134.5163,-5.4799],[134.5226,-5.4817],[134.5212,-5.486],[134.5149,-5.4888],[134.5062,-5.4894],[134.5051,-5.4921]],[[134.6462,-5.4197],[134.6457,-5.4081],[134.6427,-5.4106],[134.6429,-5.4198],[134.6462,-5.4197]],[[134.6266,-5.4122],[134.6302,-5.4107],[134.623,-5.4004],[134.6182,-5.4028],[134.6162,-5.4063],[134.6218,-5.411],[134.6266,-5.4122]],[[134.5953,-5.3993],[134.5935,-5.3957],[134.5866,-5.3936],[134.5781,-5.3999],[134.5827,-5.4035],[134.5921,-5.405],[134.5953,-5.3993]],[[134.6819,-5.3896],[134.6767,-5.3876],[134.6724,-5.3921],[134.6794,-5.3951],[134.6819,-5.3896]],[[134.6616,-5.3879],[134.6567,-5.3866],[134.6504,-5.3876],[134.6487,-5.3923],[134.6509,-5.402],[134.6538,-5.407],[134.6589,-5.4089],[134.6637,-5.3911],[134.6616,-5.3879]],[[134.6236,-5.3947],[134.6251,-5.3906],[134.6211,-5.3865],[134.6152,-5.3907],[134.6217,-5.396],[134.6236,-5.3947]],[[134.6122,-5.3884],[134.6129,-5.3833],[134.6078,-5.382],[134.6059,-5.3863],[134.5925,-5.3932],[134.5968,-5.3984],[134.5959,-5.4011],[134.6031,-5.4061],[134.6114,-5.4081],[134.6169,-5.3999],[134.6204,-5.3977],[134.6122,-5.3884]],[[134.6046,-5.3852],[134.6038,-5.3819],[134.5967,-5.3806],[134.5887,-5.3877],[134.5919,-5.391],[134.6046,-5.3852]],[[134.6079,-5.3749],[134.6095,-5.3693],[134.6066,-5.3682],[134.6044,-5.3736],[134.6079,-5.3749]],[[134.4774,-5.3762],[134.4675,-5.3686],[134.4666,-5.374],[134.4683,-5.3772],[134.4774,-5.3762]],[[134.587,-5.3559],[134.5802,-5.3593],[134.5766,-5.3635],[134.5756,-5.37],[134.5717,-5.3765],[134.5621,-5.3861],[134.5612,-5.3898],[134.5647,-5.3951],[134.5761,-5.3941],[134.5827,-5.3895],[134.5829,-5.3867],[134.5911,-5.3802],[134.5938,-5.3737],[134.6027,-5.3707],[134.6054,-5.3678],[134.6009,-5.3571],[134.587,-5.3559]],[[134.5376,-5.3342],[134.524,-5.3302],[134.5155,-5.3329],[134.5107,-5.3393],[134.5099,-5.3432],[134.5125,-5.3462],[134.5183,-5.3375],[134.5261,-5.3342],[134.5376,-5.3342]],[[134.6031,-5.3499],[134.5994,-5.3385],[134.5934,-5.3336],[134.5895,-5.3287],[134.5792,-5.3274],[134.5705,-5.3245],[134.56,-5.3287],[134.5523,-5.3358],[134.545,-5.3478],[134.5322,-5.3508],[134.5266,-5.3591],[134.5145,-5.3628],[134.5063,-5.3685],[134.5047,-5.3752],[134.5061,-5.3777],[134.5026,-5.3817],[134.5022,-5.386],[134.5076,-5.3884],[134.5091,-5.3921],[134.5164,-5.3964],[134.5264,-5.4054],[134.5333,-5.4098],[134.5396,-5.4115],[134.5433,-5.409],[134.5476,-5.4006],[134.5523,-5.3974],[134.5582,-5.3973],[134.5586,-5.3856],[134.5665,-5.3768],[134.5664,-5.3725],[134.5745,-5.3608],[134.5843,-5.3529],[134.591,-5.3547],[134.5976,-5.3549],[134.6031,-5.3499]]]}},{"type":"Feature","properties":{"mhid":"1332:463","alt_name":"KABUPATEN SERAM BAGIAN BARAT","latitude":-3.1027,"longitude":128.42996,"sample_value":788},"geometry":{"type":"MultiLineString","coordinates":[[[127.5886,-3.355],[127.5853,-3.3561],[127.5865,-3.3616],[127.5912,-3.36],[127.5886,-3.355]],[[128.1499,-3.2991],[128.1481,-3.2993],[128.1392,-3.3084],[128.1438,-3.3107],[128.1477,-3.3015],[128.1499,-3.2991]],[[127.5729,-3.2558],[127.566,-3.2576],[127.5636,-3.2653],[127.5582,-3.2657],[127.5573,-3.2621],[127.5516,-3.2595],[127.5458,-3.2602],[127.541,-3.2647],[127.5385,-3.2631],[127.5293,-3.266],[127.5252,-3.2596],[127.523,-3.2636],[127.5279,-3.2705],[127.5264,-3.2802],[127.5174,-3.2842],[127.5141,-3.288],[127.5062,-3.2894],[127.4876,-3.2981],[127.4891,-3.3045],[127.4943,-3.3146],[127.4999,-3.3186],[127.5058,-3.3301],[127.5302,-3.3372],[127.5488,-3.3379],[127.5642,-3.3395],[127.5734,-3.3428],[127.5818,-3.3443],[127.5882,-3.3479],[127.6004,-3.3483],[127.6037,-3.3512],[127.6058,-3.3595],[127.6133,-3.3675],[127.6175,-3.3692],[127.6298,-3.3673],[127.6399,-3.3712],[127.6479,-3.3699],[127.6574,-3.3659],[127.6596,-3.3625],[127.6588,-3.3558],[127.6557,-3.3521],[127.6459,-3.3481],[127.6366,-3.3396],[127.6317,-3.3278],[127.6323,-3.3182],[127.6252,-3.307],[127.6227,-3.305],[127.6149,-3.3078],[127.6115,-3.3015],[127.6071,-3.2978],[127.6075,-3.2951],[127.6037,-3.2893],[127.5964,-3.286],[127.5917,-3.2777],[127.5841,-3.2752],[127.581,-3.2693],[127.5748,-3.2617],[127.5729,-3.2558]],[[127.5484,-3.2463],[127.5444,-3.248],[127.5421,-3.2537],[127.5488,-3.2567],[127.5582,-3.2574],[127.564,-3.2548],[127.563,-3.2513],[127.5484,-3.2463]],[[128.1723,-3.2238],[128.1703,-3.2156],[128.1611,-3.2271],[128.1552,-3.231],[128.1576,-3.2331],[128.1633,-3.229],[128.1678,-3.2301],[128.1727,-3.2274],[128.1723,-3.2238]],[[127.82,-3.1517],[127.8059,-3.1512],[127.7957,-3.1527],[127.7853,-3.1518],[127.7763,-3.1534],[127.7764,-3.1578],[127.7812,-3.1657],[127.7869,-3.1625],[127.7924,-3.1648],[127.7989,-3.1644],[127.8042,-3.1711],[127.8127,-3.1684],[127.8109,-3.1623],[127.8043,-3.1565],[127.8152,-3.1571],[127.8192,-3.1626],[127.8274,-3.1613],[127.8351,-3.1558],[127.8337,-3.1537],[127.82,-3.1517]],[[127.7612,-3.1512],[127.7543,-3.1517],[127.7482,-3.1538],[127.7437,-3.1572],[127.7382,-3.1588],[127.7343,-3.1565],[127.7247,-3.1598],[127.7099,-3.1679],[127.7053,-3.1739],[127.6996,-3.1772],[127.6906,-3.1842],[127.6835,-3.194],[127.6707,-3.1979],[127.658,-3.2057],[127.6533,-3.2104],[127.6414,-3.2196],[127.638,-3.2241],[127.6413,-3.2287],[127.6497,-3.2304],[127.6556,-3.2332],[127.6592,-3.2389],[127.6726,-3.2472],[127.6767,-3.2523],[127.6845,-3.2545],[127.7004,-3.2568],[127.7081,-3.2604],[127.7259,-3.258],[127.7377,-3.2544],[127.7501,-3.2482],[127.7621,-3.2487],[127.7671,-3.2504],[127.7746,-3.249],[127.7821,-3.2519],[127.7894,-3.2568],[127.7947,-3.2534],[127.7957,-3.2472],[127.7929,-3.2421],[127.7919,-3.2353],[127.8003,-3.2237],[127.7988,-3.2085],[127.8007,-3.2045],[127.7992,-3.1979],[127.7943,-3.1928],[127.7944,-3.1893],[127.7905,-3.1864],[127.7921,-3.1823],[127.7977,-3.1847],[127.7995,-3.1812],[127.7914,-3.1754],[127.786,-3.1745],[127.7842,-3.1711],[127.78,-3.1703],[127.7726,-3.1572],[127.7673,-3.1566],[127.7612,-3.1512]],[[128.0599,-2.996],[128.0542,-2.9949],[128.0502,-2.9997],[128.0474,-3.0144],[128.0509,-3.0187],[128.0555,-3.0167],[128.0582,-3.0092],[128.0599,-2.996]],[[127.9223,-2.9242],[127.9134,-2.9283],[127.9033,-2.9301],[127.8971,-2.9339],[127.8862,-2.9465],[127.8797,-2.9505],[127.8784,-2.9567],[127.8911,-2.9573],[127.8975,-2.9512],[127.9034,-2.9491],[127.9098,-2.9489],[127.911,-2.9443],[127.9195,-2.9394],[127.9249,-2.9279],[127.9223,-2.9242]],[[127.9251,-2.9119],[127.9203,-2.9122],[127.9131,-2.9154],[127.9135,-2.9204],[127.9185,-2.9222],[127.9226,-2.9199],[127.9266,-2.9215],[127.9328,-2.9276],[127.9379,-2.9289],[127.9414,-2.9372],[127.9412,-2.941],[127.9362,-2.9404],[127.9242,-2.9351],[127.9234,-2.9393],[127.9152,-2.9476],[127.9089,-2.9526],[127.9037,-2.9524],[127.9024,-2.9556],[127.8941,-2.9599],[127.8884,-2.961],[127.8843,-2.9592],[127.8791,-2.9606],[127.877,-2.9655],[127.8788,-2.9698],[127.8771,-2.9745],[127.8708,-2.9808],[127.8702,-2.9878],[127.8677,-2.994],[127.8694,-3.0034],[127.8528,-3.0175],[127.8448,-3.0167],[127.8386,-3.0262],[127.831,-3.0309],[127.8422,-3.0327],[127.8463,-3.0381],[127.853,-3.0356],[127.8582,-3.0365],[127.8634,-3.0399],[127.8752,-3.0358],[127.8791,-3.038],[127.8884,-3.0385],[127.8918,-3.0409],[127.8977,-3.0408],[127.9017,-3.0386],[127.9145,-3.0386],[127.9265,-3.0323],[127.9292,-3.0276],[127.9406,-3.0203],[127.9536,-3.0101],[127.9637,-2.998],[127.9657,-2.9937],[127.9702,-2.9754],[127.9718,-2.9725],[127.9876,-2.9597],[127.9943,-2.9514],[128.0017,-2.9459],[128.0038,-2.9424],[128.0022,-2.9348],[127.9975,-2.9292],[127.9915,-2.9242],[127.9709,-2.9226],[127.9589,-2.9258],[127.9457,-2.9244],[127.9348,-2.9195],[127.9251,-2.9119]],[[128.7536,-2.8512],[128.7447,-2.8539],[128.7375,-2.8547],[128.7314,-2.8584],[128.7225,-2.8606],[128.714,-2.8614],[128.7006,-2.8608],[128.6913,-2.8579],[128.6759,-2.8489],[128.6702,-2.8416],[128.6639,-2.8396],[128.6547,-2.8412],[128.6412,-2.8504],[128.6294,-2.853],[128.6186,-2.8542],[128.6132,-2.8513],[128.5994,-2.8509],[128.5707,-2.854],[128.5637,-2.8538],[128.5566,-2.8517],[128.5505,-2.8515],[128.5403,-2.847],[128.5292,-2.8367],[128.5249,-2.8352],[128.5141,-2.836],[128.5084,-2.834],[128.5005,-2.8368],[128.482,-2.8491],[128.4712,-2.852],[128.4662,-2.8522],[128.4532,-2.8467],[128.4418,-2.846],[128.4319,-2.8481],[128.4206,-2.8572],[128.4147,-2.8634],[128.4021,-2.8697],[128.3899,-2.8702],[128.3805,-2.8718],[128.3748,-2.8708],[128.3658,-2.8656],[128.3555,-2.861],[128.3498,-2.8598],[128.3458,-2.8621],[128.3396,-2.8627],[128.3366,-2.8607],[128.3283,-2.8626],[128.3151,-2.8635],[128.3026,-2.8656],[128.2951,-2.8649],[128.2874,-2.8623],[128.2782,-2.865],[128.2703,-2.8691],[128.2621,-2.8676],[128.2573,-2.865],[128.254,-2.8577],[128.2481,-2.8571],[128.2384,-2.8539],[128.2332,-2.855],[128.2299,-2.8578],[128.225,-2.8572],[128.2206,-2.8605],[128.2113,-2.8589],[128.2086,-2.8628],[128.2034,-2.862],[128.193,-2.8628],[128.1862,-2.8662],[128.1778,-2.8646],[128.1696,-2.8654],[128.1664,-2.8635],[128.1615,-2.8653],[128.1619,-2.8708],[128.1665,-2.8792],[128.1639,-2.8838],[128.1583,-2.8843],[128.1477,-2.8878],[128.1474,-2.8936],[128.142,-2.8988],[128.1294,-2.9048],[128.1284,-2.9113],[128.1321,-2.9175],[128.142,-2.9221],[128.1404,-2.928],[128.1346,-2.9361],[128.1266,-2.9439],[128.122,-2.9503],[128.1124,-2.9586],[128.0998,-2.9595],[128.0922,-2.9612],[128.0816,-2.9607],[128.0761,-2.9653],[128.0713,-2.9728],[128.0723,-2.9782],[128.0766,-2.9856],[128.0812,-2.9873],[128.0957,-2.9841],[128.1013,-2.9814],[128.1049,-2.977],[128.1126,-2.9717],[128.1173,-2.9704],[128.1197,-2.9754],[128.1177,-2.9846],[128.1191,-2.9925],[128.1224,-2.9959],[128.1222,-2.9996],[128.11,-3.0083],[128.1016,-3.0127],[128.0935,-3.0154],[128.0873,-3.0202],[128.0944,-3.0257],[128.0949,-3.0301],[128.0921,-3.034],[128.0914,-3.0413],[128.097,-3.0488],[128.1029,-3.054],[128.1081,-3.049],[128.1099,-3.0541],[128.1147,-3.0574],[128.1143,-3.065],[128.1107,-3.067],[128.1053,-3.0661],[128.1003,-3.0702],[128.0865,-3.0678],[128.0759,-3.071],[128.0706,-3.0738],[128.058,-3.07],[128.0472,-3.0738],[128.0382,-3.0737],[128.0324,-3.0779],[128.0265,-3.0744],[128.0209,-3.0776],[128.0172,-3.0743],[128.0106,-3.0751],[128.0055,-3.073],[128.0035,-3.079],[127.9996,-3.0707],[127.9902,-3.0792],[127.987,-3.0806],[127.9829,-3.0912],[127.9777,-3.0951],[127.9768,-3.1051],[127.9715,-3.1042],[127.9675,-3.1078],[127.9634,-3.104],[127.9592,-3.1082],[127.9533,-3.1084],[127.9434,-3.1127],[127.9455,-3.1277],[127.933,-3.133],[127.93,-3.1386],[127.9238,-3.1442],[127.9094,-3.1522],[127.905,-3.1535],[127.8983,-3.1579],[127.8944,-3.1582],[127.8916,-3.155],[127.887,-3.1543],[127.8806,-3.1509],[127.8732,-3.1551],[127.8584,-3.1589],[127.8465,-3.1548],[127.8393,-3.1557],[127.8376,-3.1583],[127.8398,-3.1639],[127.854,-3.174],[127.8657,-3.1793],[127.8722,-3.1896],[127.8738,-3.1939],[127.8742,-3.2086],[127.8725,-3.2126],[127.8727,-3.2213],[127.8747,-3.2239],[127.8738,-3.2305],[127.8771,-3.2436],[127.881,-3.2478],[127.888,-3.2583],[127.8874,-3.2678],[127.8885,-3.2715],[127.9014,-3.2835],[127.9103,-3.2885],[127.9181,-3.2949],[127.9242,-3.304],[127.924,-3.3085],[127.9302,-3.3183],[127.9331,-3.3349],[127.9391,-3.3438],[127.9433,-3.3523],[127.9437,-3.357],[127.9404,-3.3719],[127.9425,-3.3796],[127.938,-3.3891],[127.9297,-3.396],[127.9298,-3.3989],[127.9234,-3.4116],[127.9193,-3.4151],[127.9202,-3.4208],[127.9189,-3.4284],[127.9156,-3.4386],[127.9155,-3.4442],[127.9127,-3.451],[127.9051,-3.4614],[127.9024,-3.468],[127.8988,-3.4845],[127.8953,-3.4904],[127.8969,-3.4931],[127.9125,-3.4924],[127.9214,-3.4931],[127.9265,-3.4751],[127.9325,-3.4658],[127.9376,-3.4613],[127.9458,-3.4576],[127.9548,-3.4571],[127.9595,-3.4498],[127.9626,-3.4474],[127.9697,-3.4357],[127.9702,-3.4296],[127.9729,-3.4228],[127.9726,-3.4149],[127.9776,-3.4053],[127.9788,-3.3971],[127.9838,-3.3878],[127.9864,-3.3803],[127.9921,-3.3753],[127.998,-3.379],[128.0102,-3.3828],[128.0178,-3.3801],[128.023,-3.3741],[128.0272,-3.3738],[128.0297,-3.3703],[128.0311,-3.3591],[128.0424,-3.3531],[128.0519,-3.3461],[128.0552,-3.3406],[128.0564,-3.3293],[128.0551,-3.3268],[128.0579,-3.3151],[128.0618,-3.3059],[128.0619,-3.3001],[128.0595,-3.2949],[128.0618,-3.2913],[128.0633,-3.2833],[128.0586,-3.2767],[128.0587,-3.2716],[128.0614,-3.2683],[128.0636,-3.2605],[128.0607,-3.2556],[128.0672,-3.2442],[128.0674,-3.2331],[128.0693,-3.2294],[128.0683,-3.2209],[128.0694,-3.2166],[128.0673,-3.2098],[128.0708,-3.2059],[128.0727,-3.1959],[128.072,-3.1923],[128.0769,-3.1875],[128.0764,-3.1825],[128.0789,-3.1789],[128.0828,-3.1661],[128.0837,-3.1451],[128.0869,-3.1406],[128.0905,-3.1315],[128.1006,-3.1272],[128.1087,-3.1201],[128.115,-3.1114],[128.1183,-3.1102],[128.1219,-3.1049],[128.1245,-3.0977],[128.1292,-3.0953],[128.1347,-3.088],[128.1408,-3.0866],[128.1472,-3.0783],[128.1474,-3.075],[128.1528,-3.0728],[128.1549,-3.0694],[128.16,-3.0675],[128.1835,-3.0649],[128.1884,-3.0691],[128.1947,-3.0688],[128.1992,-3.0753],[128.1998,-3.0834],[128.1985,-3.0954],[128.2006,-3.1033],[128.1974,-3.1113],[128.2016,-3.1214],[128.2018,-3.1266],[128.199,-3.1323],[128.1951,-3.1356],[128.1956,-3.1399],[128.189,-3.1478],[128.1844,-3.149],[128.1798,-3.1453],[128.1727,-3.1442],[128.171,-3.1542],[128.1688,-3.1563],[128.1729,-3.164],[128.1654,-3.1659],[128.161,-3.161],[128.1596,-3.166],[128.161,-3.17],[128.1652,-3.1737],[128.1647,-3.1823],[128.1708,-3.1869],[128.1603,-3.2001],[128.1698,-3.2046],[128.1706,-3.2121],[128.1769,-3.22],[128.1792,-3.2278],[128.1833,-3.231],[128.1874,-3.2302],[128.1867,-3.2255],[128.1943,-3.2214],[128.1969,-3.2161],[128.2027,-3.2158],[128.1991,-3.2071],[128.1998,-3.204],[128.2071,-3.2099],[128.2143,-3.2114],[128.2184,-3.2168],[128.2232,-3.2175],[128.2228,-3.2106],[128.2254,-3.2095],[128.23,-3.2154],[128.2356,-3.2157],[128.2428,-3.2095],[128.2414,-3.2048],[128.2449,-3.2022],[128.2496,-3.2039],[128.2489,-3.2079],[128.258,-3.2079],[128.2636,-3.2039],[128.268,-3.2029],[128.2708,-3.2055],[128.269,-3.2109],[128.2717,-3.2166],[128.2797,-3.2179],[128.2835,-3.2222],[128.292,-3.2261],[128.3018,-3.2465],[128.2996,-3.2601],[128.3005,-3.2651],[128.3123,-3.2736],[128.3132,-3.2796],[128.3168,-3.2831],[128.318,-3.2939],[128.323,-3.2986],[128.3281,-3.3079],[128.3299,-3.3162],[128.3327,-3.3208],[128.334,-3.3305],[128.3406,-3.3343],[128.3494,-3.3431],[128.3516,-3.3495],[128.3567,-3.3548],[128.3669,-3.359],[128.3706,-3.3635],[128.3746,-3.3723],[128.3788,-3.3753],[128.3798,-3.3826],[128.3893,-3.3891],[128.3957,-3.3954],[128.3969,-3.4041],[128.4019,-3.4114],[128.4023,-3.4209],[128.4052,-3.4286],[128.4129,-3.4348],[128.4235,-3.4384],[128.4314,-3.4437],[128.4334,-3.4478],[128.4373,-3.4497],[128.444,-3.4489],[128.4526,-3.4527],[128.4587,-3.4575],[128.4729,-3.4592],[128.4912,-3.4538],[128.5005,-3.4595],[128.5181,-3.4574],[128.5226,-3.4583],[128.5282,-3.4541],[128.5356,-3.4519],[128.5385,-3.4486],[128.5542,-3.4434],[128.5639,-3.443],[128.568,-3.4388],[128.5746,-3.4393],[128.5858,-3.4326],[128.5911,-3.4276],[128.5955,-3.4263],[128.6049,-3.4296],[128.6112,-3.4282],[128.6186,-3.4294],[128.6227,-3.4338],[128.6331,-3.4345],[128.6501,-3.4336],[128.6607,-3.4341],[128.6695,-3.4321],[128.6744,-3.4334],[128.6821,-3.4282],[128.6917,-3.4184],[128.6979,-3.4145],[128.6986,-3.4109],[128.695,-3.4074],[128.6844,-3.4004],[128.6729,-3.3943],[128.6703,-3.3902],[128.674,-3.3813],[128.6716,-3.3733],[128.6754,-3.3652],[128.6886,-3.3514],[128.6926,-3.3509],[128.705,-3.3347],[128.7117,-3.3272],[128.7179,-3.3187],[128.7241,-3.3126],[128.7364,-3.3025],[128.7503,-3.2925],[128.7547,-3.2904],[128.7647,-3.283],[128.7717,-3.2728],[128.7795,-3.2651],[128.787,-3.2606],[128.7987,-3.2575],[128.8364,-3.2408]],[[128.71,-3.0492],[128.7793,-3.2119],[128.741,-3.1261],[128.7086,-3.0495],[128.71,-3.0492]],[[128.7125,-1.5088],[128.7101,-1.5072],[128.7046,-1.5114],[128.7058,-1.5155],[128.7099,-1.5183],[128.7157,-1.5159],[128.715,-1.5105],[128.7125,-1.5088]],[[128.732,-1.5213],[128.7367,-1.5188],[128.737,-1.5101],[128.7343,-1.5059],[128.7264,-1.5056],[128.7237,-1.5086],[128.7227,-1.514],[128.7251,-1.5207],[128.732,-1.5213]],[[128.6344,-1.5128],[128.6387,-1.5124],[128.6461,-1.5081],[128.6472,-1.5031],[128.6411,-1.4983],[128.635,-1.5001],[128.6297,-1.5061],[128.631,-1.512],[128.6344,-1.5128]],[[128.6526,-1.4923],[128.6629,-1.4861],[128.6602,-1.4817],[128.6524,-1.4854],[128.6501,-1.4886],[128.6526,-1.4923]],[[128.9279,-1.3806],[128.9257,-1.3788],[128.9202,-1.3807],[128.915,-1.3801],[128.9111,-1.3882],[128.9119,-1.3932],[128.9163,-1.3984],[128.9205,-1.3986],[128.9295,-1.3903],[128.9309,-1.3855],[128.9279,-1.3806]]]}},{"type":"Feature","properties":{"mhid":"1332:464","alt_name":"KABUPATEN SERAM BAGIAN TIMUR","latitude":-3.39851,"longitude":130.39166,"sample_value":23},"geometry":{"type":"MultiLineString","coordinates":[[[131.7468,-4.7848],[131.7485,-4.7703],[131.7504,-4.7611],[131.7534,-4.7574],[131.7596,-4.7535],[131.7645,-4.7478],[131.7666,-4.7367],[131.7645,-4.7312],[131.7595,-4.7246],[131.7407,-4.7073],[131.7384,-4.7043],[131.7282,-4.7001],[131.7219,-4.7104],[131.7301,-4.7197],[131.7286,-4.7241],[131.7282,-4.741],[131.727,-4.7467],[131.7295,-4.7583],[131.7323,-4.7635],[131.7359,-4.7764],[131.7356,-4.7803],[131.7427,-4.785],[131.7468,-4.7848]],[[131.6959,-4.5903],[131.6901,-4.5869],[131.689,-4.5931],[131.6942,-4.5985],[131.7026,-4.6],[131.7043,-4.5984],[131.6977,-4.5905],[131.6959,-4.5903]],[[131.6351,-4.4456],[131.6318,-4.4383],[131.6234,-4.4354],[131.6111,-4.4238],[131.6082,-4.4271],[131.612,-4.4343],[131.6136,-4.4403],[131.6168,-4.4439],[131.6268,-4.4476],[131.6312,-4.4511],[131.6273,-4.455],[131.6244,-4.4545],[131.6336,-4.4712],[131.6377,-4.4809],[131.6373,-4.4848],[131.6446,-4.4955],[131.6482,-4.4986],[131.6537,-4.5195],[131.6517,-4.5322],[131.654,-4.5357],[131.6603,-4.5382],[131.6659,-4.5358],[131.6745,-4.5362],[131.6833,-4.5396],[131.6876,-4.5282],[131.6845,-4.5246],[131.686,-4.5145],[131.6851,-4.5104],[131.6752,-4.5011],[131.6751,-4.4941],[131.6728,-4.4892],[131.6583,-4.4692],[131.6539,-4.4673],[131.6506,-4.4605],[131.6407,-4.4522],[131.6351,-4.4456]],[[131.5838,-4.3788],[131.5795,-4.38],[131.5829,-4.3852],[131.5849,-4.3943],[131.5907,-4.4042],[131.5919,-4.4085],[131.5994,-4.4151],[131.6044,-4.4171],[131.6133,-4.4139],[131.6155,-4.4078],[131.6016,-4.4014],[131.5897,-4.3913],[131.5838,-4.3788]],[[131.3813,-4.1281],[131.3812,-4.1263],[131.3508,-4.112],[131.3365,-4.0995],[131.3024,-4.0744],[131.292,-4.0727],[131.2841,-4.0686],[131.2747,-4.0771],[131.2725,-4.0856],[131.272,-4.0932],[131.2756,-4.0977],[131.2828,-4.1021],[131.2851,-4.1073],[131.2913,-4.1098],[131.2971,-4.1142],[131.3033,-4.1227],[131.3101,-4.1268],[131.3172,-4.1295],[131.3266,-4.1308],[131.3369,-4.1308],[131.3512,-4.1465],[131.3589,-4.146],[131.3647,-4.1442],[131.3714,-4.1474],[131.3727,-4.1612],[131.3781,-4.1729],[131.3821,-4.176],[131.3951,-4.1733],[131.4,-4.1711],[131.4041,-4.1626],[131.4023,-4.1572],[131.396,-4.1469],[131.3871,-4.1371],[131.3817,-4.1335],[131.3813,-4.1281]],[[131.246,-4.0507],[131.2393,-4.0386],[131.2438,-4.0198],[131.246,-4.0077],[131.246,-4.0005],[131.2429,-3.992],[131.236,-3.99],[131.2304,-3.9857],[131.216,-3.9781],[131.2071,-3.9759],[131.2013,-3.979],[131.1995,-3.9916],[131.2062,-3.9969],[131.2089,-4.0086],[131.2165,-4.0162],[131.2183,-4.0242],[131.2165,-4.0311],[131.2263,-4.0478],[131.2344,-4.0529],[131.2416,-4.0533],[131.246,-4.0507]],[[131.4139,-3.9463],[131.4093,-3.9444],[131.4033,-3.9443],[131.3854,-3.9524],[131.3784,-3.9573],[131.3673,-3.9614],[131.3634,-3.9639],[131.3637,-3.9672],[131.3754,-3.9893],[131.3777,-3.9959],[131.3858,-4.0074],[131.3916,-4.0196],[131.3991,-4.041],[131.4056,-4.0533],[131.409,-4.0511],[131.413,-4.056],[131.413,-4.061],[131.417,-4.069],[131.4264,-4.0757],[131.4407,-4.0703],[131.4484,-4.0636],[131.4466,-4.0578],[131.4408,-4.0502],[131.439,-4.0448],[131.4408,-4.039],[131.4417,-4.03],[131.4354,-4.0148],[131.4309,-3.9837],[131.4242,-3.9777],[131.4221,-3.9704],[131.4174,-3.9611],[131.4177,-3.9476],[131.4139,-3.9463]],[[130.9018,-3.8776],[130.8951,-3.8799],[130.8945,-3.8845],[130.8987,-3.8868],[130.9018,-3.8776]],[[130.9367,-3.8674],[130.9334,-3.8673],[130.9285,-3.8743],[130.9199,-3.8764],[130.9169,-3.8862],[130.9101,-3.8937],[130.9133,-3.8987],[130.9173,-3.9011],[130.9233,-3.8962],[130.9303,-3.8944],[130.9369,-3.8949],[130.954,-3.8873],[130.9567,-3.8815],[130.949,-3.8823],[130.9479,-3.8746],[130.9421,-3.8743],[130.9387,-3.8806],[130.9325,-3.8767],[130.9323,-3.8715],[130.9367,-3.8674]],[[130.8033,-3.8541],[130.7954,-3.8546],[130.7923,-3.8614],[130.807,-3.8695],[130.8155,-3.8727],[130.8229,-3.8719],[130.8251,-3.8696],[130.822,-3.8538],[130.8154,-3.8548],[130.8033,-3.8541]],[[130.799,-3.3331],[130.8034,-3.3294],[130.8057,-3.3216],[130.801,-3.3169],[130.7993,-3.3072],[130.7906,-3.3045],[130.7809,-3.2971],[130.7759,-3.2978],[130.7668,-3.3055],[130.7625,-3.3146],[130.7659,-3.322],[130.785,-3.3345],[130.799,-3.3331]],[[129.867,-3.3131],[129.8595,-3.321],[129.8564,-3.3299],[129.8593,-3.3378],[129.8645,-3.337],[129.8851,-3.3433],[129.8939,-3.3398],[129.9075,-3.3385],[129.9181,-3.3389],[129.9295,-3.3409],[129.9378,-3.3481],[129.9469,-3.3525],[129.9517,-3.3533],[129.9606,-3.3606],[129.962,-3.367],[129.9697,-3.3765],[129.9708,-3.381],[129.9691,-3.3894],[129.9705,-3.398],[129.9726,-3.3985],[129.975,-3.4088],[129.9747,-3.4127],[129.9709,-3.4266],[129.9812,-3.4343],[129.9892,-3.4418],[129.9977,-3.4572],[129.9998,-3.4595],[130.0053,-3.4708],[130.0088,-3.4724],[130.0132,-3.4806],[130.0171,-3.4836],[130.023,-3.4833],[130.0359,-3.4855],[130.04,-3.4895],[130.0456,-3.4895],[130.0644,-3.4916],[130.0721,-3.4948],[130.0813,-3.4957],[130.0884,-3.5002],[130.0976,-3.5006],[130.1049,-3.5053],[130.1092,-3.5064],[130.1205,-3.5162],[130.1226,-3.5234],[130.1317,-3.532],[130.14,-3.5338],[130.153,-3.5398],[130.1644,-3.5406],[130.1729,-3.5436],[130.1774,-3.549],[130.1815,-3.5511],[130.1991,-3.5546],[130.2159,-3.5635],[130.2305,-3.5668],[130.2454,-3.5675],[130.2553,-3.5756],[130.2741,-3.5787],[130.2787,-3.5803],[130.2853,-3.5851],[130.2953,-3.5861],[130.3037,-3.5936],[130.3132,-3.5953],[130.3241,-3.6013],[130.3244,-3.6088],[130.3293,-3.6116],[130.3409,-3.6113],[130.347,-3.6152],[130.3535,-3.6212],[130.3619,-3.6187],[130.3745,-3.6191],[130.385,-3.6241],[130.3952,-3.6247],[130.4035,-3.6281],[130.4035,-3.6323],[130.419,-3.6366],[130.4382,-3.647],[130.4432,-3.6507],[130.448,-3.6565],[130.4563,-3.6698],[130.4634,-3.6758],[130.4692,-3.6865],[130.4651,-3.6909],[130.4659,-3.6934],[130.479,-3.7017],[130.4953,-3.7039],[130.5029,-3.7099],[130.5186,-3.7139],[130.5339,-3.7157],[130.5511,-3.7189],[130.5674,-3.7256],[130.5751,-3.7327],[130.574,-3.7378],[130.5764,-3.7399],[130.576,-3.7471],[130.5856,-3.7486],[130.5903,-3.7532],[130.5992,-3.7577],[130.6007,-3.7631],[130.6062,-3.7657],[130.6121,-3.7708],[130.6164,-3.7834],[130.6115,-3.7878],[130.6123,-3.7909],[130.6214,-3.797],[130.6272,-3.797],[130.6326,-3.793],[130.6358,-3.7978],[130.6475,-3.8036],[130.654,-3.8097],[130.6636,-3.8072],[130.674,-3.8066],[130.6884,-3.8083],[130.6953,-3.8137],[130.6992,-3.8205],[130.7026,-3.8232],[130.7146,-3.8293],[130.7188,-3.8302],[130.7346,-3.8262],[130.744,-3.8259],[130.7468,-3.8285],[130.7508,-3.8377],[130.7563,-3.8396],[130.7652,-3.8317],[130.7676,-3.8318],[130.7757,-3.8416],[130.7774,-3.8467],[130.7759,-3.8517],[130.794,-3.8539],[130.7987,-3.851],[130.8033,-3.8506],[130.8139,-3.8538],[130.82,-3.8529],[130.8246,-3.8547],[130.8253,-3.8635],[130.8289,-3.8762],[130.839,-3.8776],[130.8441,-3.8833],[130.8533,-3.8823],[130.8593,-3.8803],[130.8629,-3.8719],[130.8473,-3.8533],[130.839,-3.849],[130.831,-3.8377],[130.8317,-3.8284],[130.837,-3.8172],[130.836,-3.8144],[130.8374,-3.8069],[130.8362,-3.8012],[130.8393,-3.7924],[130.8425,-3.7873],[130.8393,-3.778],[130.8393,-3.7731],[130.8416,-3.7632],[130.8385,-3.7486],[130.8407,-3.7409],[130.8394,-3.7306],[130.8364,-3.7219],[130.8323,-3.7016],[130.8353,-3.6925],[130.8366,-3.6841],[130.8197,-3.6908],[130.8306,-3.652],[130.8346,-3.6473],[130.8404,-3.6511],[130.8514,-3.6432],[130.8617,-3.6399],[130.8726,-3.6292],[130.8764,-3.6232],[130.8793,-3.6157],[130.8813,-3.5956],[130.8795,-3.5886],[130.8764,-3.5842],[130.873,-3.5734],[130.8651,-3.5656],[130.8578,-3.5529],[130.8543,-3.5497],[130.847,-3.5468],[130.8412,-3.5405],[130.8331,-3.5374],[130.8328,-3.5321],[130.8267,-3.5303],[130.8203,-3.5217],[130.8172,-3.506],[130.8056,-3.4983],[130.8023,-3.4903],[130.8023,-3.4796],[130.8417,-3.4673],[130.8372,-3.4551],[130.8229,-3.4421],[130.8141,-3.4285],[130.8047,-3.4067],[130.7697,-3.4027],[130.7489,-3.4018],[130.7424,-3.4047],[130.7353,-3.4008],[130.7312,-3.4032],[130.7234,-3.4012],[130.7143,-3.4032],[130.7061,-3.4032],[130.6987,-3.3974],[130.687,-3.4017],[130.6821,-3.405],[130.6736,-3.406],[130.6628,-3.4013],[130.6598,-3.3968],[130.66,-3.3931],[130.6531,-3.3853],[130.6507,-3.3805],[130.6474,-3.3798],[130.6433,-3.3742],[130.6429,-3.3594],[130.6327,-3.3403],[130.6305,-3.3301],[130.6307,-3.3227],[130.6294,-3.3147],[130.6322,-3.3018],[130.6386,-3.2862],[130.6367,-3.2755],[130.6295,-3.2629],[130.6293,-3.2564],[130.6312,-3.2453],[130.6303,-3.2371],[130.623,-3.2295],[130.6128,-3.2123],[130.6132,-3.1999],[130.6143,-3.196],[130.6122,-3.1861],[130.608,-3.1827],[130.6051,-3.1673],[130.6039,-3.1561],[130.6051,-3.1511],[130.601,-3.1467],[130.5962,-3.1444],[130.5857,-3.1353],[130.5789,-3.1251],[130.5759,-3.1226],[130.5646,-3.1204],[130.5544,-3.1128],[130.5481,-3.1061],[130.5393,-3.1071],[130.5353,-3.1046],[130.5298,-3.0982],[130.5039,-3.1006],[130.5006,-3.1034],[130.4972,-3.0976],[130.4876,-3.0955],[130.4852,-3.0891],[130.4836,-3.0799],[130.4774,-3.0749],[130.4588,-3.0624],[130.4544,-3.0641],[130.4448,-3.06],[130.4424,-3.0517],[130.4415,-3.0367],[130.4387,-3.0327],[130.4124,-3.02],[130.3986,-3.0062],[130.3866,-2.992],[130.3857,-2.9892],[130.3701,-2.99],[130.3625,-2.9818],[130.3518,-2.9749],[130.3403,-2.9763],[130.3357,-2.9734],[130.3189,-2.9708],[130.3127,-2.9691],[130.3081,-2.973],[130.2968,-2.9764],[130.2767,-2.9758],[130.2576,-2.9809],[130.255,-2.9831],[130.2426,-2.9892],[130.2364,-2.9936],[130.2297,-2.9958],[130.2264,-2.9985],[130.2101,-3.0082],[130.1936,-3.0109],[130.1858,-3.0087],[130.179,-3.0017],[130.1775,-2.9918],[130.1562,-2.9862],[130.15,-2.9862],[130.14,-2.9932],[130.1268,-2.9977],[130.1172,-2.9958],[130.1102,-2.9966]]]}},{"type":"Feature","properties":{"mhid":"1332:465","alt_name":"KABUPATEN MALUKU BARAT DAYA","latitude":-7.8296,"longitude":126.17386,"sample_value":915},"geometry":{"type":"MultiLineString","coordinates":[[[128.2182,-8.2147],[128.212,-8.2077],[128.198,-8.2034],[128.1918,-8.2004],[128.1851,-8.2016],[128.1759,-8.2071],[128.159,-8.2108],[128.1479,-8.2159],[128.1365,-8.2153],[128.1221,-8.2166],[128.1082,-8.213],[128.0927,-8.206],[128.0923,-8.2213],[128.0891,-8.2284],[128.0756,-8.246],[128.0737,-8.2532],[128.0743,-8.2581],[128.078,-8.2639],[128.0872,-8.2692],[128.1027,-8.2701],[128.1157,-8.2751],[128.1325,-8.2765],[128.1488,-8.2815],[128.17,-8.2796],[128.1894,-8.2808],[128.2059,-8.2797],[128.2283,-8.2748],[128.2313,-8.2693],[128.2267,-8.2567],[128.2258,-8.2478],[128.2215,-8.2362],[128.2197,-8.2209],[128.2182,-8.2147]],[[128.865,-8.1762],[128.8627,-8.175],[128.8415,-8.1819],[128.8298,-8.1841],[128.8226,-8.1885],[128.8222,-8.1941],[128.8252,-8.1963],[128.8564,-8.2131],[128.8601,-8.2178],[128.8653,-8.2207],[128.8777,-8.2223],[128.8906,-8.2261],[128.8952,-8.2302],[128.9051,-8.2314],[128.9067,-8.2333],[128.921,-8.2349],[128.9277,-8.2364],[128.9403,-8.2353],[128.94,-8.2305],[128.9326,-8.2206],[128.9338,-8.2173],[128.9389,-8.2152],[128.9451,-8.216],[128.9513,-8.215],[128.958,-8.218],[128.9625,-8.2228],[128.9658,-8.2232],[128.9793,-8.235],[128.9913,-8.2391],[129.0051,-8.2481],[129.019,-8.2488],[129.0204,-8.2402],[129.0247,-8.2347],[129.029,-8.2344],[129.0325,-8.2283],[129.033,-8.2108],[129.0287,-8.2033],[129.0236,-8.2035],[129.0168,-8.2007],[129.0086,-8.1991],[128.993,-8.1943],[128.981,-8.186],[128.9766,-8.1842],[128.9634,-8.1752],[128.9563,-8.176],[128.9342,-8.1802],[128.9139,-8.1797],[128.9117,-8.1777],[128.8882,-8.1759],[128.879,-8.1767],[128.8763,-8.1756],[128.865,-8.1762]],[[128.683,-8.1688],[128.6806,-8.1667],[128.6762,-8.1699],[128.6814,-8.1786],[128.6865,-8.1808],[128.6872,-8.1877],[128.7059,-8.192],[128.711,-8.1875],[128.7129,-8.1812],[128.7059,-8.1804],[128.6972,-8.1763],[128.6912,-8.1693],[128.683,-8.1688]],[[128.7615,-8.1659],[128.761,-8.1685],[128.7707,-8.1696],[128.7741,-8.1732],[128.7726,-8.1761],[128.7763,-8.1845],[128.7789,-8.186],[128.7768,-8.1943],[128.7783,-8.1981],[128.7894,-8.1963],[128.7917,-8.1874],[128.7888,-8.1819],[128.7829,-8.1813],[128.7799,-8.1719],[128.781,-8.1641],[128.7765,-8.1635],[128.7689,-8.1666],[128.7615,-8.1659]],[[127.7353,-8.2138],[127.7409,-8.21],[127.7449,-8.2054],[127.7483,-8.1935],[127.7451,-8.1839],[127.74,-8.1784],[127.7246,-8.1723],[127.7151,-8.1653],[127.7008,-8.1615],[127.6938,-8.1562],[127.686,-8.1541],[127.6816,-8.1545],[127.6632,-8.1617],[127.6532,-8.1707],[127.6401,-8.1764],[127.6238,-8.1921],[127.6001,-8.2068],[127.5943,-8.212],[127.5936,-8.2172],[127.611,-8.2235],[127.6225,-8.2246],[127.6238,-8.2276],[127.6239,-8.2368],[127.6299,-8.2395],[127.6434,-8.2376],[127.6511,-8.2386],[127.6597,-8.2365],[127.6672,-8.2321],[127.6764,-8.2291],[127.6855,-8.2229],[127.6926,-8.2215],[127.7114,-8.2144],[127.7202,-8.2186],[127.7296,-8.2171],[127.7353,-8.2138]],[[127.7911,-8.1067],[127.7821,-8.1048],[127.7689,-8.1084],[127.7596,-8.1088],[127.7546,-8.1104],[127.7513,-8.1149],[127.758,-8.1254],[127.7687,-8.131],[127.7753,-8.1405],[127.7762,-8.1456],[127.777,-8.1667],[127.7803,-8.1784],[127.7858,-8.1863],[127.7998,-8.1965],[127.814,-8.2032],[127.8291,-8.2052],[127.8402,-8.2074],[127.8499,-8.2143],[127.8573,-8.2181],[127.867,-8.2203],[127.8841,-8.2198],[127.8975,-8.2164],[127.9116,-8.2185],[127.9307,-8.2197],[127.9399,-8.2238],[127.9485,-8.2328],[127.9503,-8.2402],[127.9496,-8.2442],[127.9548,-8.25],[127.9656,-8.2504],[127.9818,-8.2534],[127.99,-8.2585],[127.9983,-8.2616],[128.0301,-8.2626],[128.0378,-8.2618],[128.0431,-8.2558],[128.0425,-8.2464],[128.0437,-8.2327],[128.0478,-8.2265],[128.0554,-8.2216],[128.0615,-8.2191],[128.0642,-8.2141],[128.0635,-8.2023],[128.0655,-8.1989],[128.0719,-8.1937],[128.0922,-8.1846],[128.1094,-8.1753],[128.1205,-8.1661],[128.1211,-8.1627],[128.1184,-8.1558],[128.0988,-8.1422],[128.0868,-8.1398],[128.0786,-8.1401],[128.0654,-8.1456],[128.0602,-8.1466],[128.0317,-8.1477],[128.0138,-8.1469],[127.9923,-8.1423],[127.9682,-8.1443],[127.9578,-8.147],[127.9444,-8.1445],[127.9342,-8.1458],[127.9287,-8.1439],[127.92,-8.1326],[127.9163,-8.1307],[127.8975,-8.1313],[127.8847,-8.1281],[127.8717,-8.1201],[127.8672,-8.1192],[127.855,-8.1209],[127.8441,-8.1201],[127.8267,-8.1125],[127.8135,-8.1114],[127.8038,-8.1053],[127.7951,-8.1074],[127.7911,-8.1067]],[[129.8276,-8.2119],[129.8319,-8.2072],[129.8443,-8.1974],[129.8489,-8.1833],[129.857,-8.1755],[129.8711,-8.1547],[129.875,-8.1511],[129.8858,-8.145],[129.8917,-8.1402],[129.9009,-8.1376],[129.9123,-8.1279],[129.9192,-8.1149],[129.9203,-8.1083],[129.9169,-8.0979],[129.914,-8.0974],[129.9053,-8.1001],[129.8889,-8.1178],[129.8817,-8.1223],[129.8697,-8.1256],[129.8574,-8.1315],[129.8496,-8.1378],[129.846,-8.1444],[129.842,-8.1452],[129.8289,-8.16],[129.8265,-8.1664],[129.8251,-8.1802],[129.8234,-8.1852],[129.8165,-8.1949],[129.8056,-8.2044],[129.8044,-8.212],[129.8084,-8.2169],[129.813,-8.214],[129.8215,-8.2162],[129.8276,-8.2119]],[[125.749,-7.9669],[125.7427,-7.9639],[125.7427,-7.9711],[125.741,-7.9751],[125.744,-7.9776],[125.7487,-7.9757],[125.7444,-7.9709],[125.749,-7.9669]],[[125.742,-7.9794],[125.7374,-7.9738],[125.7318,-7.9632],[125.7258,-7.9652],[125.7238,-7.9694],[125.7244,-7.975],[125.7194,-7.9767],[125.7247,-7.983],[125.7257,-7.9957],[125.7227,-8.0043],[125.7244,-8.0146],[125.7264,-8.0186],[125.7272,-8.0332],[125.7257,-8.0452],[125.7286,-8.0553],[125.731,-8.0549],[125.7365,-8.0444],[125.739,-8.0428],[125.7426,-8.0348],[125.7495,-8.0231],[125.7536,-8.021],[125.7547,-8.015],[125.7579,-8.0126],[125.755,-8.0036],[125.7571,-7.9945],[125.7532,-7.9891],[125.7458,-7.9863],[125.742,-7.9794]],[[127.1865,-7.9528],[127.182,-7.9543],[127.1806,-7.9578],[127.176,-7.9608],[127.174,-7.9646],[127.1677,-7.9667],[127.1632,-7.9703],[127.1604,-7.9766],[127.1641,-7.9842],[127.1655,-7.9951],[127.1693,-8.0054],[127.1647,-8.0147],[127.1651,-8.0185],[127.1716,-8.0224],[127.1859,-8.026],[127.1929,-8.0228],[127.2025,-8.023],[127.2092,-8.0255],[127.2214,-8.0227],[127.2248,-8.0249],[127.2287,-8.0224],[127.2281,-8.0142],[127.2207,-8.0082],[127.2187,-8.0011],[127.2201,-7.976],[127.2183,-7.9703],[127.2153,-7.9677],[127.2158,-7.9602],[127.2121,-7.9545],[127.2061,-7.9559],[127.1995,-7.9535],[127.1908,-7.9544],[127.1865,-7.9528]],[[125.7407,-7.9491],[125.7432,-7.9467],[125.7446,-7.9353],[125.7441,-7.9239],[125.7396,-7.9243],[125.7348,-7.9347],[125.7333,-7.943],[125.736,-7.949],[125.7407,-7.9491]],[[129.5381,-7.8687],[129.5307,-7.8666],[129.5262,-7.8576],[129.5205,-7.8532],[129.513,-7.8503],[129.5063,-7.8557],[129.5061,-7.8588],[129.5117,-7.87],[129.5167,-7.8708],[129.5197,-7.8786],[129.5137,-7.8842],[129.5122,-7.8889],[129.5159,-7.9056],[129.5105,-7.9226],[129.5102,-7.93],[129.5117,-7.9378],[129.5164,-7.9466],[129.5271,-7.9561],[129.5324,-7.9594],[129.5389,-7.9597],[129.5448,-7.9539],[129.5594,-7.9358],[129.5611,-7.9248],[129.5675,-7.916],[129.5641,-7.9091],[129.5629,-7.9032],[129.5604,-7.9007],[129.551,-7.8978],[129.546,-7.893],[129.545,-7.8888],[129.5493,-7.8825],[129.5427,-7.8709],[129.5381,-7.8687]],[[129.6869,-7.7963],[129.6837,-7.794],[129.6764,-7.7922],[129.6647,-7.7933],[129.6421,-7.7993],[129.6311,-7.8045],[129.62,-7.8073],[129.6113,-7.8125],[129.5917,-7.8283],[129.5856,-7.8358],[129.582,-7.8458],[129.5835,-7.8564],[129.5898,-7.8709],[129.5897,-7.8742],[129.5834,-7.8799],[129.5804,-7.885],[129.5799,-7.8936],[129.5772,-7.8995],[129.5769,-7.9048],[129.5806,-7.912],[129.5857,-7.9147],[129.5958,-7.9176],[129.5979,-7.9194],[129.6011,-7.9362],[129.6064,-7.9382],[129.6115,-7.9431],[129.6189,-7.9532],[129.6198,-7.9564],[129.6327,-7.9724],[129.6373,-7.9747],[129.6444,-7.9752],[129.6483,-7.9784],[129.6519,-7.9859],[129.6618,-8.0005],[129.6636,-8.0065],[129.6695,-8.0168],[129.6849,-8.0323],[129.6951,-8.0361],[129.7019,-8.0449],[129.7131,-8.0474],[129.7204,-8.0525],[129.7295,-8.0549],[129.7422,-8.0551],[129.7515,-8.0601],[129.7552,-8.0602],[129.7651,-8.0555],[129.7743,-8.0522],[129.7882,-8.05],[129.7937,-8.0398],[129.7936,-8.0337],[129.7978,-8.0184],[129.8047,-8.0078],[129.8101,-8.0033],[129.8149,-7.9954],[129.8168,-7.9886],[129.817,-7.9806],[129.8228,-7.9685],[129.8298,-7.9617],[129.8381,-7.9496],[129.8472,-7.9456],[129.8565,-7.9323],[129.8614,-7.9231],[129.8629,-7.917],[129.8622,-7.908],[129.8591,-7.9],[129.8542,-7.9014],[129.8471,-7.8955],[129.8411,-7.8923],[129.8382,-7.8789],[129.8384,-7.8695],[129.837,-7.862],[129.8428,-7.8555],[129.8481,-7.8555],[129.853,-7.8499],[129.8496,-7.8454],[129.8409,-7.8448],[129.8325,-7.8363],[129.822,-7.8304],[129.814,-7.8225],[129.8021,-7.8196],[129.7953,-7.8197],[129.7891,-7.8182],[129.7803,-7.8181],[129.7754,-7.8195],[129.7637,-7.8173],[129.7456,-7.8107],[129.7299,-7.8027],[129.7191,-7.7996],[129.701,-7.7962],[129.6869,-7.7963]],[[130.0452,-7.7652],[130.0341,-7.7614],[130.0284,-7.7722],[130.0243,-7.7752],[130.0308,-7.7788],[130.0348,-7.7787],[130.0471,-7.7746],[130.0541,-7.7762],[130.0596,-7.7847],[130.0643,-7.7877],[130.0705,-7.7961],[130.0739,-7.799],[130.083,-7.7954],[130.088,-7.7794],[130.0886,-7.7731],[130.0669,-7.7619],[130.059,-7.7624],[130.0499,-7.7655],[130.0452,-7.7652]],[[130.0151,-7.7356],[130.0115,-7.726],[130.0092,-7.7166],[129.9966,-7.7027],[129.9901,-7.7033],[129.9841,-7.7076],[129.9795,-7.7144],[129.9834,-7.722],[129.9838,-7.7337],[129.9862,-7.7376],[129.9961,-7.7379],[129.9964,-7.7475],[130.0063,-7.7526],[130.0171,-7.7534],[130.0215,-7.7499],[130.0151,-7.7356]],[[125.9281,-7.6595],[125.9097,-7.6697],[125.9091,-7.674],[125.9139,-7.678],[125.9202,-7.6779],[125.9305,-7.6734],[125.9334,-7.6704],[125.9327,-7.6654],[125.9281,-7.6595]],[[127.4372,-7.6401],[127.4319,-7.6382],[127.4344,-7.6452],[127.443,-7.6434],[127.4428,-7.6384],[127.4372,-7.6401]],[[126.6412,-7.5731],[126.6423,-7.565],[126.638,-7.5595],[126.6276,-7.5573],[126.6223,-7.5575],[126.6161,-7.5599],[126.6116,-7.5642],[126.6051,-7.567],[126.5999,-7.5734],[126.5943,-7.5715],[126.5876,-7.5726],[126.5834,-7.5756],[126.578,-7.5754],[126.5746,-7.5727],[126.567,-7.5726],[126.5584,-7.5762],[126.5505,-7.5734],[126.5431,-7.5729],[126.5379,-7.5771],[126.534,-7.5772],[126.5271,-7.5841],[126.5206,-7.5856],[126.5168,-7.5847],[126.5121,-7.5886],[126.5066,-7.5905],[126.5016,-7.5863],[126.4962,-7.5901],[126.487,-7.5898],[126.4817,-7.588],[126.473,-7.5936],[126.4712,-7.6027],[126.465,-7.6145],[126.4541,-7.6244],[126.4405,-7.6306],[126.432,-7.6304],[126.4193,-7.6319],[126.4159,-7.6235],[126.4111,-7.6244],[126.4044,-7.6298],[126.3997,-7.6364],[126.3962,-7.6372],[126.3816,-7.6367],[126.3805,-7.6389],[126.3812,-7.655],[126.3757,-7.6633],[126.3623,-7.6748],[126.3551,-7.6742],[126.3492,-7.676],[126.3438,-7.6809],[126.3403,-7.6816],[126.3305,-7.6941],[126.3205,-7.6952],[126.316,-7.6935],[126.299,-7.6928],[126.2921,-7.6953],[126.2864,-7.6953],[126.2798,-7.6898],[126.2682,-7.6894],[126.2624,-7.6923],[126.2516,-7.6864],[126.2464,-7.6888],[126.2424,-7.687],[126.2368,-7.692],[126.2269,-7.6976],[126.2209,-7.7043],[126.2051,-7.7132],[126.1944,-7.7248],[126.1881,-7.7275],[126.177,-7.727],[126.1701,-7.7229],[126.1604,-7.7211],[126.1544,-7.722],[126.1508,-7.725],[126.1399,-7.7211],[126.1312,-7.7169],[126.1277,-7.7178],[126.1217,-7.7156],[126.1198,-7.7119],[126.1091,-7.711],[126.1067,-7.7071],[126.0983,-7.7079],[126.0972,-7.7052],[126.0906,-7.7028],[126.0832,-7.7078],[126.0673,-7.7049],[126.0644,-7.6991],[126.0579,-7.6953],[126.0469,-7.6932],[126.0352,-7.698],[126.0311,-7.6934],[126.0261,-7.6927],[126.0229,-7.6818],[126.0158,-7.6742],[126.0107,-7.6796],[126.0034,-7.6816],[125.9967,-7.6764],[125.9926,-7.6658],[125.9884,-7.6581],[125.9749,-7.6535],[125.9642,-7.6616],[125.9559,-7.6641],[125.9518,-7.6619],[125.9478,-7.6631],[125.9435,-7.6679],[125.9349,-7.681],[125.9353,-7.6908],[125.9321,-7.6949],[125.9315,-7.6997],[125.9259,-7.7089],[125.9219,-7.7178],[125.9176,-7.7225],[125.9172,-7.7263],[125.9111,-7.7353],[125.9148,-7.738],[125.9146,-7.7442],[125.897,-7.7492],[125.8904,-7.7561],[125.8793,-7.7602],[125.8739,-7.7643],[125.8634,-7.7646],[125.8609,-7.7738],[125.8576,-7.7776],[125.8591,-7.7806],[125.865,-7.7833],[125.8707,-7.7889],[125.8742,-7.7952],[125.8728,-7.8034],[125.8706,-7.8061],[125.87,-7.8127],[125.8628,-7.8141],[125.8591,-7.819],[125.8557,-7.8194],[125.8418,-7.8332],[125.8378,-7.8331],[125.8323,-7.8393],[125.8265,-7.8424],[125.8273,-7.8504],[125.8221,-7.8521],[125.8151,-7.8488],[125.8093,-7.8534],[125.8041,-7.8598],[125.8098,-7.8696],[125.8107,-7.8754],[125.8141,-7.8793],[125.813,-7.8834],[125.8161,-7.89],[125.8155,-7.8953],[125.8229,-7.9026],[125.8237,-7.914],[125.8207,-7.9197],[125.8191,-7.9395],[125.8168,-7.9498],[125.8072,-7.9671],[125.8003,-7.9766],[125.7882,-7.9868],[125.7857,-7.9934],[125.7834,-8.0041],[125.7923,-8.0138],[125.8008,-8.0116],[125.8019,-8.002],[125.8062,-7.9964],[125.8123,-7.9916],[125.8239,-7.9892],[125.8363,-7.9831],[125.8453,-7.9822],[125.852,-7.9761],[125.8573,-7.9769],[125.8645,-7.9745],[125.8665,-7.9672],[125.8696,-7.9624],[125.8806,-7.9533],[125.882,-7.9504],[125.8948,-7.9462],[125.9021,-7.9457],[125.9068,-7.941],[125.9221,-7.9405],[125.9242,-7.9342],[125.9316,-7.9281],[125.9333,-7.9238],[125.939,-7.9215],[125.9415,-7.9162],[125.945,-7.9141],[125.9515,-7.9139],[125.9527,-7.9167],[125.9586,-7.9153],[125.967,-7.9184],[125.9804,-7.9186],[125.9838,-7.9125],[125.9881,-7.9087],[125.9952,-7.9064],[125.9993,-7.9067],[126.0117,-7.9019],[126.0205,-7.9018],[126.0254,-7.9001],[126.0283,-7.8963],[126.0402,-7.8948],[126.0559,-7.8917],[126.0624,-7.8885],[126.0704,-7.8879],[126.0736,-7.8897],[126.0865,-7.8889],[126.0999,-7.8921],[126.1041,-7.8948],[126.1242,-7.8936],[126.1271,-7.8917],[126.1329,-7.8925],[126.142,-7.8999],[126.1498,-7.9001],[126.1656,-7.9123],[126.1671,-7.9174],[126.1738,-7.926],[126.1849,-7.9259],[126.19,-7.927],[126.1954,-7.9258],[126.2032,-7.9262],[126.2176,-7.9288],[126.2253,-7.9292],[126.2363,-7.9267],[126.2449,-7.9228],[126.2519,-7.9211],[126.2632,-7.9215],[126.2742,-7.919],[126.2875,-7.9179],[126.2945,-7.9231],[126.3081,-7.9193],[126.3121,-7.9167],[126.3222,-7.9168],[126.3337,-7.915],[126.3474,-7.9237],[126.3575,-7.9255],[126.3687,-7.9345],[126.3748,-7.9348],[126.3833,-7.9327],[126.3896,-7.9363],[126.3966,-7.9351],[126.406,-7.9289],[126.4224,-7.9317],[126.4254,-7.9308],[126.4317,-7.9379],[126.4345,-7.9389],[126.4439,-7.9479],[126.4603,-7.9655],[126.4633,-7.9703],[126.4681,-7.9743],[126.4778,-7.9701],[126.4847,-7.959],[126.494,-7.946],[126.4975,-7.936],[126.5028,-7.9268],[126.5014,-7.9211],[126.5067,-7.9178],[126.5018,-7.9057],[126.5061,-7.897],[126.5111,-7.89],[126.5167,-7.8855],[126.5249,-7.8581],[126.5276,-7.8557],[126.5406,-7.8516],[126.549,-7.8344],[126.5526,-7.824],[126.5646,-7.8172],[126.5725,-7.814],[126.5825,-7.8135],[126.5851,-7.8081],[126.5882,-7.806],[126.597,-7.8074],[126.6018,-7.7997],[126.608,-7.793],[126.6192,-7.7916],[126.6233,-7.7884],[126.6262,-7.7831],[126.6313,-7.7832],[126.6419,-7.7788],[126.6487,-7.7781],[126.6547,-7.7755],[126.6647,-7.778],[126.6694,-7.772],[126.6769,-7.7673],[126.6806,-7.7629],[126.686,-7.7627],[126.6964,-7.7564],[126.7,-7.7514],[126.706,-7.7527],[126.7116,-7.7517],[126.7154,-7.7469],[126.7241,-7.7419],[126.7371,-7.7458],[126.7492,-7.7437],[126.7558,-7.7456],[126.7584,-7.749],[126.7674,-7.7495],[126.7865,-7.7474],[126.7926,-7.7456],[126.804,-7.7452],[126.8188,-7.7555],[126.8282,-7.7527],[126.8331,-7.7458],[126.8435,-7.737],[126.8375,-7.7199],[126.8353,-7.7168],[126.8296,-7.6998],[126.8237,-7.6883],[126.8115,-7.6823],[126.8116,-7.6756],[126.8189,-7.662],[126.8162,-7.6574],[126.8116,-7.6563],[126.8025,-7.661],[126.7942,-7.6601],[126.7854,-7.6626],[126.7793,-7.6593],[126.7725,-7.6594],[126.764,-7.6575],[126.7535,-7.657],[126.749,-7.6601],[126.7407,-7.6598],[126.7372,-7.6637],[126.731,-7.6665],[126.724,-7.6642],[126.7228,-7.6594],[126.7181,-7.654],[126.7172,-7.6457],[126.7103,-7.6405],[126.7033,-7.6421],[126.6981,-7.6387],[126.695,-7.6339],[126.693,-7.6243],[126.6865,-7.6202],[126.6747,-7.622],[126.6694,-7.6197],[126.6675,-7.6147],[126.6551,-7.6108],[126.6531,-7.6075],[126.6439,-7.6057],[126.6387,-7.5977],[126.6367,-7.5838],[126.6405,-7.5779],[126.6412,-7.5731]],[[127.5905,-7.5524],[127.5872,-7.5526],[127.5833,-7.5595],[127.5829,-7.5632],[127.5945,-7.5886],[127.5967,-7.5949],[127.5963,-7.5996],[127.5991,-7.6079],[127.5977,-7.6155],[127.5955,-7.6197],[127.5993,-7.6287],[127.6027,-7.6269],[127.6076,-7.6209],[127.6191,-7.6125],[127.6147,-7.6085],[127.6189,-7.6051],[127.619,-7.6002],[127.6134,-7.5974],[127.6093,-7.6014],[127.6054,-7.5969],[127.6055,-7.5854],[127.6004,-7.5776],[127.5951,-7.565],[127.5942,-7.5565],[127.5905,-7.5524]],[[129.6963,-7.5597],[129.6865,-7.5574],[129.6763,-7.5474],[129.6689,-7.5358],[129.6643,-7.5322],[129.6596,-7.5333],[129.6573,-7.5413],[129.6519,-7.5518],[129.653,-7.5578],[129.6587,-7.5634],[129.6654,-7.5664],[129.6778,-7.5699],[129.6854,-7.5796],[129.6936,-7.5746],[129.7027,-7.5744],[129.7098,-7.5783],[129.7158,-7.5671],[129.7207,-7.5611],[129.7177,-7.5553],[129.7131,-7.5533],[129.709,-7.5539],[129.703,-7.5592],[129.6963,-7.5597]],[[127.5418,-7.5244],[127.5346,-7.5298],[127.5336,-7.5403],[127.5385,-7.5427],[127.543,-7.5389],[127.5405,-7.5284],[127.5418,-7.5244]],[[127.295,-7.5096],[127.2848,-7.5127],[127.2777,-7.5189],[127.28,-7.5221],[127.2921,-7.5305],[127.2974,-7.5303],[127.3028,-7.5166],[127.3019,-7.5114],[127.295,-7.5096]],[[127.381,-7.4998],[127.3763,-7.4972],[127.3715,-7.5008],[127.3673,-7.5163],[127.3634,-7.5228],[127.3617,-7.5308],[127.3634,-7.5391],[127.364,-7.5493],[127.3665,-7.5551],[127.3659,-7.5634],[127.3672,-7.5737],[127.3769,-7.5859],[127.3773,-7.5932],[127.373,-7.5969],[127.3692,-7.5963],[127.3563,-7.5989],[127.3489,-7.6017],[127.3431,-7.6071],[127.3409,-7.6145],[127.3362,-7.6151],[127.3346,-7.6193],[127.333,-7.6375],[127.3393,-7.6421],[127.3472,-7.6572],[127.3616,-7.6586],[127.3753,-7.664],[127.3824,-7.6594],[127.3876,-7.6598],[127.393,-7.6581],[127.4023,-7.6499],[127.4061,-7.6444],[127.4079,-7.6381],[127.4116,-7.6325],[127.4097,-7.6278],[127.4112,-7.6103],[127.4153,-7.6053],[127.4198,-7.6086],[127.4403,-7.606],[127.4429,-7.6084],[127.447,-7.6045],[127.4596,-7.5998],[127.4643,-7.5971],[127.4696,-7.5971],[127.4747,-7.59],[127.4833,-7.5823],[127.4827,-7.5779],[127.4853,-7.5716],[127.4847,-7.5678],[127.4892,-7.56],[127.4878,-7.5533],[127.4845,-7.5463],[127.4857,-7.5341],[127.4883,-7.5289],[127.4835,-7.5272],[127.4795,-7.522],[127.4705,-7.5228],[127.4695,-7.5274],[127.4634,-7.5331],[127.4603,-7.5341],[127.451,-7.5305],[127.4452,-7.5295],[127.4401,-7.5263],[127.4322,-7.5169],[127.4209,-7.5172],[127.4152,-7.5111],[127.4132,-7.504],[127.4103,-7.5031],[127.4075,-7.5085],[127.4026,-7.5109],[127.4005,-7.5165],[127.3957,-7.5134],[127.3896,-7.5143],[127.3881,-7.5117],[127.3977,-7.5042],[127.3979,-7.5006],[127.3912,-7.4969],[127.381,-7.4998]],[[128.5587,-7.3693],[128.5525,-7.3792],[128.5564,-7.3892],[128.5634,-7.3886],[128.5673,-7.3762],[128.5654,-7.3716],[128.5587,-7.3693]],[[128.5653,-7.3094],[128.5691,-7.3052],[128.5679,-7.3004],[128.5619,-7.2961],[128.5591,-7.3003],[128.5539,-7.3127],[128.5582,-7.3247],[128.5624,-7.3228],[128.5622,-7.3161],[128.5653,-7.3094]],[[128.6166,-7.0707],[128.6143,-7.0683],[128.6046,-7.0655],[128.6,-7.0691],[128.592,-7.0712],[128.5892,-7.0696],[128.5806,-7.0769],[128.5762,-7.0824],[128.5666,-7.0916],[128.5429,-7.1114],[128.5376,-7.1171],[128.5262,-7.1272],[128.52,-7.1342],[128.517,-7.1409],[128.5179,-7.1481],[128.5216,-7.1542],[128.5326,-7.1664],[128.5374,-7.1693],[128.5437,-7.168],[128.549,-7.1639],[128.5534,-7.1637],[128.5578,-7.1683],[128.558,-7.1716],[128.5625,-7.1742],[128.5657,-7.1795],[128.5711,-7.1782],[128.5779,-7.1826],[128.5922,-7.1975],[128.6043,-7.2067],[128.6221,-7.2171],[128.6302,-7.2201],[128.6447,-7.2224],[128.6505,-7.2206],[128.6558,-7.2113],[128.6557,-7.2054],[128.6611,-7.1959],[128.6652,-7.193],[128.6665,-7.1889],[128.6715,-7.1847],[128.6771,-7.1767],[128.688,-7.1655],[128.6853,-7.1635],[128.6767,-7.1686],[128.6717,-7.1679],[128.6664,-7.1641],[128.6637,-7.1597],[128.6541,-7.1501],[128.6526,-7.1475],[128.6536,-7.1409],[128.6599,-7.1421],[128.6613,-7.1459],[128.669,-7.146],[128.673,-7.1429],[128.6817,-7.141],[128.6879,-7.1365],[128.6913,-7.1314],[128.6957,-7.1281],[128.6985,-7.1169],[128.696,-7.1136],[128.6962,-7.1084],[128.6863,-7.1024],[128.6765,-7.0997],[128.6755,-7.0974],[128.6614,-7.0959],[128.6582,-7.1003],[128.6499,-7.0977],[128.6433,-7.0864],[128.6366,-7.0804],[128.6319,-7.0795],[128.6255,-7.0732],[128.6183,-7.0726],[128.6166,-7.0707]]]}},{"type":"Feature","properties":{"mhid":"1332:466","alt_name":"KABUPATEN BURU SELATAN","latitude":-3.52187,"longitude":126.59271,"sample_value":328},"geometry":{"type":"MultiLineString","coordinates":[[[127.185,-4.0263],[127.1958,-4.0228],[127.2147,-4.0138],[127.2309,-4.0048],[127.2534,-3.9913],[127.2646,-3.988],[127.2799,-3.9861],[127.2946,-3.9855],[127.3048,-3.9824],[127.3396,-3.9679],[127.3506,-3.9649],[127.3691,-3.957],[127.3798,-3.9415],[127.3803,-3.9294],[127.3764,-3.9196],[127.3589,-3.9014],[127.3371,-3.8866],[127.3137,-3.8841],[127.2996,-3.8837],[127.2601,-3.898],[127.233,-3.9099],[127.2235,-3.9205],[127.2122,-3.9299],[127.2025,-3.9447],[127.2005,-3.9544],[127.1977,-3.962],[127.1736,-3.9925],[127.1676,-4.0019],[127.1667,-4.0146],[127.1677,-4.0246],[127.1766,-4.0289],[127.185,-4.0263]],[[125.9983,-3.2513],[126.0058,-3.242],[126.0046,-3.2327],[126.0058,-3.2246],[126.008,-3.223],[126.0068,-3.2165],[126.0017,-3.2236],[125.9984,-3.226],[125.9952,-3.2497],[125.9983,-3.2513]],[[126.1256,-3.1522],[126.1203,-3.1467],[126.1181,-3.1409],[126.1119,-3.1363],[126.1094,-3.1201],[126.1012,-3.1129],[126.0927,-3.1118],[126.0887,-3.1139],[126.0871,-3.1199],[126.0822,-3.1283],[126.0743,-3.1325],[126.0648,-3.1428],[126.053,-3.1487],[126.0465,-3.1494],[126.0422,-3.1558],[126.0352,-3.1594],[126.0224,-3.1727],[126.0178,-3.173],[126.016,-3.1842],[126.0175,-3.1886],[126.0128,-3.1906],[126.0118,-3.1948],[126.0152,-3.1999],[126.0172,-3.2099],[126.0152,-3.2116],[126.0145,-3.2221],[126.0159,-3.2258],[126.0151,-3.2331],[126.0172,-3.2392],[126.0102,-3.2426],[126.0078,-3.2456],[126.0076,-3.2581],[126.0054,-3.2609],[126.0061,-3.2741],[126.01,-3.2773],[126.009,-3.2855],[126.0101,-3.2915],[126.006,-3.2993],[126.0124,-3.3052],[126.006,-3.3122],[126.0079,-3.3247],[126.0177,-3.3315],[126.0164,-3.3386],[126.0103,-3.3444],[126.0068,-3.3588],[126.0111,-3.369],[126.018,-3.3719],[126.022,-3.3838],[126.0359,-3.3962],[126.04,-3.398],[126.0383,-3.402],[126.0398,-3.4067],[126.0374,-3.4213],[126.0383,-3.4259],[126.045,-3.4371],[126.0452,-3.4414],[126.0544,-3.4511],[126.0545,-3.4539],[126.0599,-3.4586],[126.0645,-3.4602],[126.0736,-3.4778],[126.0833,-3.483],[126.0891,-3.4828],[126.1045,-3.4914],[126.1067,-3.4957],[126.1155,-3.4972],[126.1252,-3.5018],[126.1278,-3.5081],[126.1331,-3.5093],[126.1367,-3.5132],[126.1366,-3.5178],[126.1475,-3.523],[126.1512,-3.5259],[126.1534,-3.5347],[126.1609,-3.541],[126.1617,-3.5476],[126.164,-3.5519],[126.1658,-3.5653],[126.1637,-3.572],[126.1631,-3.5808],[126.1669,-3.5857],[126.1669,-3.5917],[126.1718,-3.5971],[126.1779,-3.6075],[126.183,-3.6142],[126.1935,-3.6196],[126.1967,-3.6241],[126.2095,-3.6216],[126.2222,-3.6182],[126.2289,-3.6181],[126.2354,-3.6207],[126.2419,-3.6267],[126.2522,-3.631],[126.2547,-3.635],[126.2649,-3.6416],[126.2692,-3.6512],[126.2764,-3.655],[126.2802,-3.6602],[126.2805,-3.6642],[126.2886,-3.6655],[126.2981,-3.6698],[126.3018,-3.6701],[126.3102,-3.6746],[126.3267,-3.6765],[126.3358,-3.68],[126.3424,-3.6857],[126.3462,-3.6915],[126.3492,-3.7018],[126.3532,-3.7034],[126.3599,-3.7033],[126.372,-3.7047],[126.3735,-3.7083],[126.3854,-3.7179],[126.3999,-3.7204],[126.4109,-3.7268],[126.4141,-3.7331],[126.426,-3.7384],[126.4318,-3.7396],[126.4377,-3.7438],[126.4432,-3.7501],[126.4499,-3.7511],[126.452,-3.747],[126.4554,-3.7477],[126.4554,-3.7575],[126.4666,-3.7614],[126.4705,-3.765],[126.4843,-3.7664],[126.4869,-3.7722],[126.4899,-3.7705],[126.4958,-3.7741],[126.4977,-3.7791],[126.5059,-3.7817],[126.5133,-3.7792],[126.5183,-3.7831],[126.5217,-3.782],[126.5224,-3.7889],[126.5152,-3.7915],[126.5148,-3.795],[126.5241,-3.7959],[126.5316,-3.7953],[126.5363,-3.7925],[126.5528,-3.7906],[126.5585,-3.7937],[126.5611,-3.7923],[126.5662,-3.7967],[126.587,-3.8044],[126.5884,-3.8087],[126.5932,-3.8118],[126.5974,-3.8084],[126.6047,-3.8132],[126.6051,-3.8194],[126.6097,-3.821],[126.6129,-3.817],[126.6187,-3.8221],[126.6241,-3.8231],[126.6339,-3.8213],[126.639,-3.8233],[126.6444,-3.8306],[126.65,-3.832],[126.6585,-3.8397],[126.665,-3.8408],[126.6696,-3.8434],[126.6724,-3.8486],[126.6741,-3.8556],[126.6873,-3.8614],[126.6944,-3.8617],[126.705,-3.8551],[126.7063,-3.8511],[126.7217,-3.8457],[126.7284,-3.8461],[126.7357,-3.8502],[126.7356,-3.8559],[126.7382,-3.8571],[126.7439,-3.8494],[126.7755,-3.8261],[126.7869,-3.8183],[126.8003,-3.8102],[126.8118,-3.8043],[126.8173,-3.8038],[126.8377,-3.7951],[126.848,-3.7899],[126.8533,-3.79],[126.8652,-3.785],[126.8736,-3.7841],[126.8846,-3.7903],[126.8921,-3.7897],[126.8982,-3.7836],[126.9031,-3.7805],[126.921,-3.7745],[126.9235,-3.7766],[126.9364,-3.7736],[126.9441,-3.77],[126.9477,-3.7721],[126.9552,-3.7705],[126.9594,-3.7627],[126.9582,-3.7576],[126.9731,-3.745],[126.9839,-3.7443],[126.9936,-3.7308],[126.9952,-3.7265],[126.9993,-3.7229],[127.0155,-3.7131],[127.0252,-3.706],[127.0503,-3.6895],[127.0658,-3.6856],[127.0711,-3.683],[127.0902,-3.6826],[127.0951,-3.6833],[127.1002,-3.6815],[127.1141,-3.6673],[127.1237,-3.6637],[127.1307,-3.6641],[127.1363,-3.6612],[127.1448,-3.6619],[127.1477,-3.6653],[127.162,-3.6666],[127.1663,-3.67],[127.1749,-3.6741],[127.1871,-3.6742],[127.1899,-3.6763],[127.1996,-3.6735],[127.2034,-3.6688],[127.2098,-3.6645],[127.2151,-3.6632],[127.2185,-3.66],[127.2266,-3.6469],[127.2333,-3.6435],[127.2343,-3.6369],[127.2387,-3.6336]]]}},{"type":"Feature","properties":{"mhid":"1332:467","alt_name":"KOTA AMBON","latitude":-3.7,"longitude":128.18333,"sample_value":857},"geometry":{"type":"MultiLineString","coordinates":[[[128.0828,-3.7127],[128.0859,-3.7156],[128.0876,-3.7215],[128.0923,-3.7171],[128.0996,-3.7137],[128.1061,-3.6961],[128.1173,-3.686],[128.1229,-3.6863],[128.1399,-3.6769],[128.1424,-3.6742],[128.1573,-3.6665],[128.1666,-3.6658],[128.1778,-3.6611],[128.1859,-3.6634],[128.1952,-3.6611],[128.1996,-3.6582],[128.1989,-3.6536],[128.1945,-3.6494],[128.1931,-3.6448],[128.1947,-3.6413],[128.2044,-3.6379],[128.2094,-3.634],[128.2151,-3.6332],[128.2228,-3.6341],[128.2309,-3.6307],[128.2325,-3.6281],[128.2394,-3.6302],[128.245,-3.6384],[128.2337,-3.6451],[128.2322,-3.65],[128.2244,-3.6551],[128.216,-3.6544],[128.21,-3.6577],[128.2032,-3.6635],[128.2001,-3.6634],[128.1945,-3.6721],[128.1904,-3.6741],[128.1864,-3.6835],[128.179,-3.6925],[128.1748,-3.695],[128.172,-3.7017],[128.1687,-3.7036],[128.1636,-3.7011],[128.1573,-3.7049],[128.15,-3.7145],[128.1472,-3.7221],[128.1369,-3.7337],[128.1332,-3.742],[128.1302,-3.7457],[128.1318,-3.7521],[128.1299,-3.756],[128.1231,-3.763],[128.109,-3.7687],[128.1048,-3.7714],[128.0914,-3.7861],[128.0896,-3.7925],[128.0968,-3.7936],[128.1083,-3.7862],[128.1133,-3.7848],[128.116,-3.7815],[128.1228,-3.78],[128.1277,-3.7769],[128.1369,-3.7741],[128.1491,-3.7724],[128.1527,-3.77],[128.1521,-3.7624],[128.1561,-3.7522],[128.16,-3.7496],[128.1694,-3.7499],[128.1827,-3.7442],[128.1866,-3.7469],[128.1909,-3.7454],[128.1937,-3.7507],[128.2116,-3.7485],[128.2153,-3.7463],[128.2199,-3.7486],[128.2321,-3.7463],[128.2329,-3.7442],[128.2416,-3.7428],[128.2434,-3.7384],[128.2513,-3.7372],[128.2543,-3.7327],[128.2648,-3.7299],[128.2638,-3.7262],[128.2666,-3.7158],[128.2723,-3.7118],[128.2701,-3.7058],[128.2755,-3.7012],[128.2889,-3.6965],[128.2987,-3.6965],[128.3012,-3.6907],[128.3014,-3.6799],[128.2988,-3.6704],[128.2962,-3.665],[128.2851,-3.6524],[128.2748,-3.6445],[128.2669,-3.641],[128.2622,-3.6337],[128.257,-3.6292],[128.2614,-3.6186],[128.2717,-3.6185]]]}},{"type":"Feature","properties":{"mhid":"1332:468","alt_name":"KOTA TUAL","latitude":-5.64301,"longitude":132.74934,"sample_value":679},"geometry":{"type":"MultiLineString","coordinates":[[[132.1897,-5.7681],[132.1971,-5.7627],[132.2005,-5.7583],[132.2012,-5.7505],[132.2004,-5.7309],[132.2006,-5.7195],[132.1963,-5.7174],[132.1905,-5.7176],[132.1768,-5.7258],[132.171,-5.7338],[132.1707,-5.7403],[132.1747,-5.7565],[132.1828,-5.7674],[132.1897,-5.7681]],[[132.2705,-5.7115],[132.2753,-5.6933],[132.2709,-5.6948],[132.2672,-5.7029],[132.2666,-5.7113],[132.2705,-5.7115]],[[132.7536,-5.6646],[132.7509,-5.6689],[132.7525,-5.6736],[132.7571,-5.6773],[132.7618,-5.6694],[132.7583,-5.6643],[132.7536,-5.6646]],[[131.9234,-5.6507],[131.9262,-5.6448],[131.9232,-5.6371],[131.9229,-5.6311],[131.9203,-5.6276],[131.9163,-5.6285],[131.9117,-5.6388],[131.9132,-5.6446],[131.9177,-5.6539],[131.9212,-5.6545],[131.9234,-5.6507]],[[132.7256,-5.623],[132.7203,-5.6238],[132.7157,-5.6274],[132.7204,-5.6355],[132.7291,-5.6392],[132.735,-5.6464],[132.7377,-5.6425],[132.7288,-5.6336],[132.7254,-5.6313],[132.7256,-5.623]],[[132.2505,-5.6289],[132.2519,-5.627],[132.2476,-5.6202],[132.243,-5.6253],[132.2466,-5.6296],[132.2505,-5.6289]],[[132.3367,-5.6096],[132.3317,-5.6062],[132.3255,-5.6043],[132.3206,-5.6002],[132.3154,-5.6047],[132.3152,-5.6099],[132.3184,-5.6106],[132.3279,-5.6199],[132.3344,-5.6193],[132.337,-5.6159],[132.3367,-5.6096]],[[132.2775,-5.586],[132.2727,-5.5846],[132.2645,-5.5868],[132.2576,-5.585],[132.2558,-5.5894],[132.2613,-5.6024],[132.2666,-5.6044],[132.2768,-5.6],[132.2825,-5.6011],[132.286,-5.6051],[132.2836,-5.6103],[132.2863,-5.6193],[132.2871,-5.6313],[132.2864,-5.6371],[132.2903,-5.6495],[132.2932,-5.6559],[132.2955,-5.6568],[132.3007,-5.6513],[132.3072,-5.6482],[132.3119,-5.6415],[132.3194,-5.6344],[132.3204,-5.6294],[132.3126,-5.6144],[132.3104,-5.6118],[132.3024,-5.6179],[132.2997,-5.6154],[132.3039,-5.6104],[132.3039,-5.6068],[132.3076,-5.5961],[132.2998,-5.595],[132.2902,-5.5995],[132.2829,-5.5988],[132.2804,-5.595],[132.2775,-5.586]],[[132.6923,-5.5904],[132.6918,-5.5854],[132.6872,-5.5833],[132.68,-5.5871],[132.6798,-5.59],[132.6741,-5.5923],[132.6742,-5.6011],[132.679,-5.6028],[132.6839,-5.594],[132.6889,-5.5942],[132.6923,-5.5904]],[[132.7342,-5.5857],[132.7316,-5.5813],[132.7305,-5.5711],[132.7244,-5.5687],[132.7125,-5.5783],[132.7114,-5.5832],[132.7141,-5.5875],[132.7192,-5.5871],[132.7279,-5.5924],[132.7329,-5.5907],[132.7342,-5.5857]],[[131.9282,-5.5796],[131.9297,-5.5749],[131.9277,-5.569],[131.9197,-5.5702],[131.9176,-5.5772],[131.9231,-5.5825],[131.9282,-5.5796]],[[132.0121,-5.5903],[132.0127,-5.5853],[132.0073,-5.5656],[132.0024,-5.5653],[131.9985,-5.5745],[131.9936,-5.5821],[131.9923,-5.5894],[131.9931,-5.5955],[131.9966,-5.6001],[132.0089,-5.6023],[132.0121,-5.5903]],[[132.7565,-5.5529],[132.7534,-5.5523],[132.7514,-5.557],[132.7563,-5.558],[132.7565,-5.5529]],[[132.7408,-5.541],[132.7366,-5.5382],[132.7309,-5.5402],[132.7216,-5.5406],[132.7135,-5.5423],[132.7046,-5.5413],[132.6978,-5.5488],[132.6907,-5.5443],[132.6863,-5.5466],[132.6852,-5.5507],[132.6951,-5.5577],[132.6995,-5.5641],[132.7071,-5.565],[132.721,-5.5597],[132.7314,-5.5639],[132.7359,-5.5628],[132.7389,-5.5595],[132.7459,-5.5586],[132.7485,-5.5562],[132.7512,-5.5482],[132.7486,-5.5438],[132.7408,-5.541]],[[132.793,-5.5776],[132.7912,-5.5738],[132.7954,-5.556],[132.7982,-5.5538],[132.7985,-5.5434],[132.8007,-5.5309],[132.7947,-5.5283],[132.7881,-5.533],[132.7789,-5.5483],[132.7737,-5.5549],[132.7684,-5.5669],[132.762,-5.5751],[132.7529,-5.5833],[132.751,-5.5872],[132.7504,-5.5939],[132.7513,-5.6034],[132.7494,-5.6087],[132.7459,-5.612],[132.7416,-5.6116],[132.7432,-5.629],[132.7418,-5.6402],[132.7486,-5.6552],[132.7541,-5.6538],[132.7572,-5.6599],[132.7609,-5.6555],[132.7568,-5.6449],[132.7609,-5.6394],[132.7676,-5.6472],[132.7661,-5.6521],[132.7678,-5.6548],[132.761,-5.6578],[132.7567,-5.6616],[132.7634,-5.668],[132.7619,-5.6718],[132.7671,-5.683],[132.7727,-5.688],[132.7786,-5.6858],[132.7871,-5.6779],[132.7903,-5.6725],[132.7893,-5.6618],[132.7929,-5.653],[132.7969,-5.6539],[132.7945,-5.666],[132.7995,-5.6755],[132.7908,-5.6866],[132.791,-5.6902],[132.7961,-5.694],[132.7993,-5.694],[132.8142,-5.6827],[132.8149,-5.6758],[132.8114,-5.6665],[132.8099,-5.6539],[132.8074,-5.6466],[132.8006,-5.6339],[132.7998,-5.6252],[132.7972,-5.6149],[132.7983,-5.6079],[132.8019,-5.6032],[132.8062,-5.5859],[132.8166,-5.5537],[132.8163,-5.5497],[132.8094,-5.5537],[132.8058,-5.5594],[132.7996,-5.5732],[132.793,-5.5776]],[[132.3294,-5.5329],[132.3226,-5.5296],[132.3181,-5.5231],[132.3114,-5.5238],[132.3033,-5.5313],[132.3033,-5.5373],[132.3087,-5.5442],[132.313,-5.5469],[132.3168,-5.5534],[132.321,-5.5644],[132.317,-5.5686],[132.3221,-5.574],[132.3247,-5.5815],[132.3343,-5.5861],[132.3427,-5.5837],[132.357,-5.5777],[132.3597,-5.5672],[132.3624,-5.5621],[132.3707,-5.5556],[132.3782,-5.5551],[132.3792,-5.5377],[132.3763,-5.534],[132.3739,-5.543],[132.37,-5.5442],[132.3593,-5.5532],[132.3493,-5.5525],[132.344,-5.5486],[132.3427,-5.5375],[132.3434,-5.5331],[132.3294,-5.5329]],[[132.7339,-5.5175],[132.7425,-5.5099],[132.7413,-5.5038],[132.7367,-5.501],[132.7314,-5.5028],[132.7297,-5.5061],[132.7309,-5.519],[132.7339,-5.5175]],[[132.7525,-5.5148],[132.759,-5.5074],[132.7612,-5.4986],[132.7644,-5.4923],[132.7639,-5.4867],[132.7596,-5.4867],[132.7531,-5.4917],[132.7496,-5.497],[132.7449,-5.509],[132.7474,-5.5152],[132.7525,-5.5148]],[[132.0218,-5.3131],[132.0184,-5.3107],[132.0153,-5.3054],[132.0126,-5.305],[132.0067,-5.3091],[131.9979,-5.313],[131.9909,-5.3123],[131.981,-5.3246],[131.978,-5.3259],[131.9695,-5.3374],[131.966,-5.3548],[131.9619,-5.3652],[131.9604,-5.3729],[131.965,-5.3804],[131.9726,-5.3893],[131.9748,-5.3897],[131.9835,-5.3806],[131.9879,-5.3783],[131.9993,-5.3764],[132.0048,-5.3723],[132.0095,-5.3714],[132.0106,-5.3626],[132.0138,-5.354],[132.0207,-5.3418],[132.0231,-5.3243],[132.0218,-5.3131]],[[132.0259,-5.1678],[132.0247,-5.1586],[132.0227,-5.1587],[132.016,-5.172],[132.012,-5.1763],[132.0142,-5.1836],[132.0187,-5.1871],[132.0249,-5.1867],[132.0267,-5.1771],[132.0259,-5.1678]]]}},{"type":"Feature","properties":{"mhid":"1332:469","alt_name":"KABUPATEN HALMAHERA BARAT","latitude":1.41709,"longitude":127.55264,"sample_value":874},"geometry":{"type":"MultiLineString","coordinates":[[[127.5475,0.8732],[127.5452,0.8707],[127.5491,0.8648],[127.5536,0.8649],[127.5475,0.8732]],[[127.5243,0.8786],[127.5224,0.8831],[127.5172,0.8803],[127.5219,0.877],[127.5243,0.8786]],[[127.5028,0.8831],[127.4978,0.8748],[127.4978,0.8689],[127.5002,0.866],[127.5044,0.8701],[127.5038,0.8755],[127.5068,0.8796],[127.5028,0.8831]],[[127.4893,1.6733],[127.4855,1.6745],[127.481,1.6716],[127.4826,1.6671],[127.4797,1.6615],[127.4878,1.6565],[127.4879,1.6684],[127.4893,1.6733]],[[127.5414,1.6839],[127.5344,1.6768],[127.5338,1.6737],[127.5456,1.6699],[127.547,1.6741],[127.5453,1.6794],[127.5414,1.6839]],[[127.5254,1.7204],[127.5237,1.7132],[127.5182,1.705],[127.5151,1.696],[127.5119,1.695],[127.5117,1.6861],[127.5033,1.6789],[127.5011,1.6708],[127.504,1.6702],[127.5059,1.6765],[127.5115,1.6793],[127.5172,1.6799],[127.5223,1.6876],[127.5274,1.6838],[127.5328,1.6861],[127.5352,1.6893],[127.5366,1.7004],[127.5322,1.7091],[127.5326,1.7163],[127.5273,1.717],[127.5254,1.7204]],[[127.7439,1.9589],[127.7374,1.9611],[127.7311,1.9572],[127.7273,1.9524],[127.7207,1.9501],[127.7147,1.9453],[127.712,1.9467],[127.7053,1.9408],[127.6956,1.9294],[127.6957,1.9235],[127.6895,1.9177],[127.6883,1.9137],[127.6837,1.9086],[127.674,1.9036],[127.6755,1.8959],[127.6791,1.8935],[127.6753,1.8862],[127.6691,1.8873],[127.6654,1.8836],[127.6663,1.8792],[127.6619,1.8774],[127.6654,1.8727],[127.6627,1.8676],[127.657,1.8624],[127.6577,1.8581],[127.6557,1.852],[127.6421,1.8366],[127.646,1.8342],[127.6466,1.8247],[127.6443,1.8217],[127.6384,1.8207],[127.6266,1.8055],[127.6229,1.8019],[127.6228,1.798],[127.614,1.7957],[127.612,1.7914],[127.614,1.7838],[127.6019,1.7756],[127.5961,1.7693],[127.5898,1.7707],[127.586,1.768],[127.5837,1.7617],[127.5759,1.7599],[127.5723,1.751],[127.5728,1.7452],[127.5706,1.7398],[127.5757,1.7335],[127.5717,1.731],[127.5748,1.7237],[127.5692,1.7235],[127.5586,1.7154],[127.5669,1.7058],[127.5692,1.6995],[127.5735,1.6953],[127.5796,1.6939],[127.5838,1.6874],[127.5803,1.6848],[127.5816,1.6735],[127.58,1.6703],[127.5806,1.6616],[127.5778,1.658],[127.5728,1.6604],[127.569,1.6555],[127.5649,1.6604],[127.563,1.6502],[127.5611,1.6457],[127.5541,1.6403],[127.5526,1.6491],[127.5558,1.6514],[127.5596,1.6641],[127.5549,1.6632],[127.549,1.6647],[127.5494,1.6503],[127.5411,1.6487],[127.5427,1.6374],[127.5481,1.6341],[127.5503,1.628],[127.5496,1.6243],[127.5454,1.6221],[127.5517,1.6174],[127.5526,1.6084],[127.5512,1.5959],[127.5441,1.5803],[127.5381,1.5821],[127.5377,1.5868],[127.5315,1.5847],[127.5231,1.574],[127.5163,1.569],[127.5167,1.5638],[127.5124,1.5605],[127.5108,1.5549],[127.5188,1.5555],[127.5203,1.5504],[127.5264,1.5521],[127.5291,1.5502],[127.525,1.5344],[127.5289,1.5256],[127.5315,1.5158],[127.5298,1.5134],[127.5355,1.5061],[127.5356,1.4892],[127.5315,1.4696],[127.5275,1.4555],[127.5254,1.4514],[127.5199,1.4315],[127.5152,1.4238],[127.5066,1.4144],[127.4954,1.4046],[127.4859,1.3922],[127.4865,1.3874],[127.4849,1.3639],[127.485,1.3566],[127.4826,1.3503],[127.4721,1.3388],[127.468,1.3231],[127.4643,1.3174],[127.4577,1.3142],[127.4546,1.3078],[127.448,1.3035],[127.4431,1.298],[127.4419,1.2937],[127.4349,1.2825],[127.4311,1.2716],[127.4247,1.2664],[127.4241,1.2616],[127.4176,1.251],[127.4173,1.2435],[127.4077,1.2337],[127.4057,1.2287],[127.409,1.2206],[127.4074,1.2081],[127.402,1.1981],[127.3992,1.1954],[127.4053,1.1901],[127.4112,1.1818],[127.4099,1.1782],[127.4154,1.176],[127.4182,1.1715],[127.4173,1.1675],[127.426,1.1587],[127.429,1.1582],[127.4314,1.1481],[127.4313,1.1407],[127.4281,1.1317],[127.4269,1.1193],[127.4244,1.113],[127.4197,1.1075],[127.4178,1.1024],[127.406,1.0931],[127.4048,1.0889],[127.4,1.0842],[127.3974,1.0711],[127.3973,1.0606],[127.3999,1.0548],[127.4107,1.0494],[127.4113,1.046],[127.4001,1.0426],[127.4064,1.0393],[127.4098,1.0406],[127.4148,1.039],[127.4175,1.0334],[127.4242,1.0323],[127.4286,1.0413],[127.4243,1.0465],[127.4276,1.0507],[127.4347,1.0459],[127.4462,1.0513],[127.4559,1.052],[127.4589,1.0554],[127.4655,1.0576],[127.4682,1.0611],[127.4793,1.0644],[127.4822,1.0588],[127.4863,1.0605],[127.4947,1.0554],[127.5006,1.0462],[127.4992,1.0372],[127.4965,1.0274],[127.4966,1.0212],[127.4945,1.0147],[127.4792,1.0159],[127.4736,1.0053],[127.4801,1.0017],[127.4807,0.9934],[127.4901,0.9959],[127.4957,0.9953],[127.4958,0.9903],[127.5008,0.9897],[127.5062,0.9782],[127.5118,0.9724],[127.5108,0.9683],[127.5125,0.9618],[127.5125,0.9533],[127.5076,0.9507],[127.5042,0.9437],[127.4986,0.9387],[127.4972,0.9318],[127.4919,0.9281],[127.49,0.9203],[127.4926,0.9152],[127.4927,0.9076],[127.4911,0.9036],[127.4935,0.899],[127.4917,0.8936],[127.4966,0.8867],[127.502,0.8844],[127.5069,0.8885],[127.5137,0.8874],[127.5184,0.8887],[127.5262,0.8852],[127.5267,0.8773],[127.5365,0.8831],[127.537,0.8776],[127.5342,0.8728],[127.5382,0.867],[127.531,0.8621],[127.5277,0.8581],[127.5389,0.8598],[127.5433,0.8615],[127.5454,0.8682],[127.5431,0.8728],[127.5463,0.8762],[127.5514,0.8731],[127.5592,0.8756],[127.5624,0.8715],[127.5611,0.8633],[127.5661,0.8665],[127.5704,0.8651],[127.5797,0.8668],[127.5822,0.8635],[127.5882,0.861],[127.5926,0.8615],[127.5958,0.8648],[127.6035,0.8653],[127.6051,0.862],[127.6096,0.8615],[127.6135,0.8539],[127.6185,0.8539],[127.6181,0.8624],[127.6278,0.8611],[127.6247,0.856],[127.6269,0.8543],[127.6273,0.8476],[127.6336,0.851],[127.639,0.852],[127.6338,0.8386],[127.6394,0.8354],[127.636,0.8291],[127.6383,0.8235],[127.6382,0.8173],[127.6361,0.8101],[127.6333,0.8067],[127.6218,0.8023],[127.6183,0.7902]]]}},{"type":"Feature","properties":{"mhid":"1332:470","alt_name":"KABUPATEN HALMAHERA TENGAH","latitude":0.48056,"longitude":128.25,"sample_value":326},"geometry":{"type":"MultiLineString","coordinates":[[[129.4225,-0.0788],[129.4122,-0.0855],[129.4108,-0.0927],[129.4174,-0.1039],[129.4261,-0.111],[129.4319,-0.1182],[129.4346,-0.1161],[129.4339,-0.1036],[129.4355,-0.0999],[129.432,-0.0907],[129.4259,-0.102],[129.4255,-0.0953],[129.4267,-0.088],[129.4215,-0.081],[129.4225,-0.0788]],[[129.6304,-0.0312],[129.6266,-0.0284],[129.6137,-0.0141],[129.6032,-0.0044],[129.5962,-0.0018],[129.5904,-0.0029],[129.5836,-0.0104],[129.5847,-0.0323],[129.5875,-0.0447],[129.5962,-0.0533],[129.5972,-0.0561],[129.6078,-0.0648],[129.6148,-0.0684],[129.6198,-0.0685],[129.6228,-0.0657],[129.6228,-0.0588],[129.6321,-0.0585],[129.6305,-0.0525],[129.6268,-0.048],[129.6194,-0.0452],[129.6154,-0.041],[129.6162,-0.037],[129.6222,-0.0373],[129.6257,-0.0347],[129.6284,-0.0388],[129.6268,-0.0429],[129.6342,-0.0505],[129.6449,-0.0562],[129.6474,-0.0632],[129.6427,-0.0706],[129.6504,-0.072],[129.6564,-0.0668],[129.6569,-0.0556],[129.6503,-0.0456],[129.6304,-0.0312]],[[129.6289,0.0064],[129.638,0.0099],[129.636,0.0179],[129.6296,0.0234],[129.625,0.0223],[129.6245,0.0164],[129.6266,0.0067],[129.6289,0.0064]],[[129.3139,0.0355],[129.2867,0.051],[129.28,0.0482],[129.2793,0.0429],[129.2814,0.0383],[129.2903,0.0284],[129.297,0.0312],[129.3111,0.0259],[129.3298,0.0228],[129.3415,0.0143],[129.3475,0.0055],[129.3541,0.0025],[129.3604,-0.004],[129.3624,-0.0031],[129.3711,-0.0152],[129.3802,-0.0293],[129.3811,-0.0363],[129.3849,-0.0422],[129.382,-0.0524],[129.3879,-0.06],[129.3817,-0.0676],[129.3831,-0.0729],[129.3924,-0.0746],[129.4022,-0.0707],[129.4145,-0.0713],[129.4264,-0.0758],[129.4343,-0.0849],[129.4385,-0.0873],[129.455,-0.092],[129.4605,-0.0917],[129.4606,-0.0961],[129.4633,-0.1005],[129.471,-0.1067],[129.4757,-0.1139],[129.4793,-0.1237],[129.4738,-0.1281],[129.4693,-0.1384],[129.4763,-0.1432],[129.4811,-0.1404],[129.4856,-0.1419],[129.4881,-0.1471],[129.497,-0.1501],[129.4989,-0.1549],[129.5062,-0.1603],[129.5152,-0.162],[129.5129,-0.1688],[129.5091,-0.172],[129.5108,-0.1817],[129.5141,-0.1851],[129.5197,-0.1863],[129.52,-0.1975],[129.5275,-0.2051],[129.5311,-0.2068],[129.5365,-0.213],[129.546,-0.2146],[129.5508,-0.2101],[129.5472,-0.2016],[129.5533,-0.2044],[129.5624,-0.2124],[129.5598,-0.2008],[129.5643,-0.1972],[129.5729,-0.2002],[129.5754,-0.199],[129.5753,-0.1919],[129.5724,-0.1785],[129.5672,-0.1656],[129.5642,-0.1612],[129.5547,-0.1431],[129.5503,-0.1376],[129.5471,-0.1302],[129.5407,-0.125],[129.5361,-0.1235],[129.5325,-0.1189],[129.521,-0.1135],[129.512,-0.1079],[129.5054,-0.101],[129.4905,-0.0937],[129.4729,-0.0867],[129.4696,-0.0827],[129.4677,-0.0771],[129.462,-0.0688],[129.4581,-0.0655],[129.4344,-0.054],[129.4242,-0.0416],[129.4128,-0.0249],[129.4014,-0.0132],[129.383,-0.0033],[129.3674,0.0059],[129.3552,0.0122],[129.3475,0.0189],[129.3379,0.0256],[129.327,0.0305],[129.3139,0.0355]],[[128.94,0.1925],[128.9451,0.1835],[128.9515,0.1779],[128.9607,0.1741],[128.9643,0.1745],[128.9709,0.1677],[128.9775,0.1692],[128.9678,0.1756],[128.9615,0.1822],[128.9566,0.1836],[128.9452,0.1914],[128.94,0.1925]],[[128.8672,0.479],[128.8616,0.4746],[128.8646,0.4654],[128.8692,0.4581],[128.8744,0.4565],[128.8742,0.465],[128.8714,0.475],[128.8672,0.479]],[[128.8106,0.5657],[128.8059,0.5616],[128.806,0.554],[128.8159,0.5314],[128.8296,0.5102],[128.8516,0.496],[128.8574,0.4899],[128.8615,0.4905],[128.8627,0.497],[128.8559,0.5067],[128.8537,0.5161],[128.8462,0.5284],[128.8376,0.5397],[128.8292,0.5522],[128.8224,0.5589],[128.8106,0.5657]],[[127.9216,0.1767],[127.9187,0.1848],[127.9219,0.187],[127.9199,0.1943],[127.9207,0.2043],[127.924,0.2152],[127.9222,0.2193],[127.9207,0.2299],[127.9185,0.2357],[127.9181,0.242],[127.9135,0.2499],[127.9171,0.2602],[127.9154,0.2706],[127.9181,0.2747],[127.9071,0.2814],[127.8963,0.2852],[127.8885,0.2854],[127.8803,0.295],[127.8758,0.2954],[127.872,0.3058],[127.874,0.3125],[127.8727,0.3167],[127.8758,0.3253],[127.881,0.3325],[127.8797,0.3469],[127.8836,0.3519],[127.8841,0.3575],[127.8903,0.3592],[127.8967,0.3644],[127.9037,0.363],[127.9052,0.3714],[127.9043,0.3749],[127.8986,0.3802],[127.8988,0.3859],[127.9031,0.3872],[127.9067,0.3948],[127.9101,0.3968],[127.9108,0.4038],[127.9065,0.4122],[127.9084,0.416],[127.9007,0.4275],[127.9031,0.4359],[127.9096,0.4427],[127.912,0.4481],[127.9215,0.459],[127.9264,0.4593],[127.9284,0.4641],[127.934,0.4647],[127.9385,0.4682],[127.9519,0.4667],[127.9566,0.4682],[127.969,0.482],[127.9745,0.4809],[127.9796,0.4732],[127.9857,0.4792],[127.9906,0.4755],[127.9979,0.4736],[128.0072,0.4754],[128.0132,0.4716],[128.0235,0.4758],[128.0285,0.4737],[128.0361,0.4778],[128.0423,0.4781],[128.0513,0.4721],[128.0651,0.4691],[128.069,0.4707],[128.0726,0.4757],[128.0803,0.4765],[128.0857,0.4689],[128.0883,0.4618],[128.0942,0.4605],[128.1004,0.4618],[128.1076,0.4588],[128.1117,0.455],[128.1216,0.454],[128.1259,0.4579],[128.1405,0.4639],[128.1482,0.4612],[128.1569,0.4566],[128.1579,0.4518],[128.1673,0.4571],[128.1739,0.4545],[128.1722,0.4513],[128.1726,0.4456],[128.1755,0.4405],[128.1816,0.4415],[128.1843,0.4385],[128.1777,0.431],[128.1817,0.4283],[128.1939,0.4315],[128.2019,0.4295],[128.2066,0.4228],[128.2179,0.4206],[128.2219,0.4136],[128.2318,0.4111],[128.2364,0.4141],[128.2363,0.4224],[128.2411,0.4187],[128.2434,0.4119],[128.2492,0.4081],[128.253,0.4082],[128.2609,0.4042],[128.2648,0.4046],[128.2736,0.4029],[128.2813,0.3967],[128.2867,0.3963],[128.2902,0.3989],[128.298,0.4002],[128.3029,0.3984],[128.3112,0.3982],[128.3147,0.3967],[128.3345,0.4042],[128.3407,0.4049],[128.3474,0.4034],[128.3557,0.3992],[128.3658,0.4029],[128.3732,0.4036],[128.3776,0.406],[128.3838,0.4063],[128.3926,0.4033],[128.3991,0.396],[128.4052,0.3936],[128.4216,0.3929],[128.4237,0.3948],[128.4334,0.3975],[128.4416,0.4033],[128.4498,0.4033],[128.463,0.3982],[128.4682,0.392],[128.4791,0.3929],[128.4844,0.3908],[128.4867,0.3864],[128.4868,0.3789],[128.4916,0.3759],[128.4964,0.3684],[128.5006,0.3591],[128.5011,0.3544],[128.506,0.3543],[128.5075,0.3503],[128.5126,0.3479],[128.5177,0.3428],[128.5275,0.3419],[128.5347,0.3399],[128.5443,0.3296],[128.5521,0.3275],[128.5604,0.3178],[128.5683,0.3197],[128.575,0.3188],[128.5937,0.3184],[128.5981,0.3196],[128.6057,0.3171],[128.6191,0.3157],[128.624,0.313],[128.6292,0.3135],[128.6365,0.3117],[128.6483,0.307],[128.6514,0.3027],[128.6567,0.3008],[128.6633,0.3014],[128.6752,0.2952],[128.6864,0.2967],[128.6967,0.2971],[128.7003,0.2951],[128.7136,0.2917],[128.7208,0.286],[128.7311,0.2827],[128.7452,0.2812],[128.7548,0.282],[128.7705,0.2766],[128.7745,0.2771],[128.7853,0.2725],[128.7916,0.272],[128.8015,0.2679],[128.8064,0.2682],[128.8151,0.264],[128.8214,0.2631],[128.8294,0.2589],[128.8386,0.259],[128.8429,0.2614],[128.8458,0.26],[128.8511,0.2503],[128.8493,0.2482],[128.8563,0.2337],[128.8658,0.2231],[128.8769,0.22],[128.8882,0.2103],[128.8931,0.2114],[128.8941,0.2166],[128.8757,0.2278],[128.8683,0.2415],[128.8685,0.2501],[128.8655,0.2649],[128.8587,0.275],[128.8485,0.2838],[128.8374,0.2917],[128.8277,0.2961],[128.8182,0.2989],[128.8058,0.3067],[128.8021,0.3107],[128.7919,0.3147],[128.7896,0.314],[128.7793,0.3184],[128.7707,0.3188],[128.7629,0.316],[128.7517,0.3189],[128.7458,0.3193],[128.7414,0.3237],[128.7333,0.3247],[128.7158,0.3316],[128.7089,0.3305],[128.7063,0.3277],[128.6995,0.3298],[128.694,0.3295],[128.6783,0.3363],[128.6732,0.341],[128.6689,0.3474],[128.6661,0.3607],[128.6698,0.3649],[128.6777,0.3795],[128.6795,0.3916],[128.6837,0.3974],[128.6869,0.4045],[128.6849,0.4113],[128.6857,0.4185],[128.6826,0.4263],[128.6823,0.4325],[128.6885,0.4442],[128.6879,0.4563],[128.6867,0.4623],[128.6805,0.4767],[128.6715,0.4882],[128.6684,0.4907],[128.6791,0.5061]]]}},{"type":"Feature","properties":{"mhid":"1332:471","alt_name":"KABUPATEN KEPULAUAN SULA","latitude":-1.8646,"longitude":125.69046,"sample_value":839},"geometry":{"type":"MultiLineString","coordinates":[[[125.9151,-1.9805],[125.9147,-1.9741],[125.9083,-1.9753],[125.9029,-1.9829],[125.8997,-1.9828],[125.8977,-1.9885],[125.8971,-1.9959],[125.8897,-1.9997],[125.8801,-2.019],[125.8754,-2.0211],[125.8719,-2.0255],[125.8684,-2.0329],[125.8646,-2.0446],[125.8607,-2.052],[125.8579,-2.0602],[125.8575,-2.0824],[125.8559,-2.0918],[125.8596,-2.096],[125.863,-2.1057],[125.8743,-2.1229],[125.8747,-2.1265],[125.8807,-2.1386],[125.8817,-2.1486],[125.8807,-2.1521],[125.8864,-2.1695],[125.8871,-2.1779],[125.883,-2.189],[125.8796,-2.194],[125.8787,-2.206],[125.8803,-2.2126],[125.8869,-2.2237],[125.8969,-2.236],[125.9053,-2.2429],[125.9121,-2.2555],[125.9183,-2.2649],[125.922,-2.2673],[125.9271,-2.2763],[125.9302,-2.2866],[125.9347,-2.2908],[125.9459,-2.3038],[125.9546,-2.318],[125.9586,-2.326],[125.959,-2.3361],[125.9616,-2.3437],[125.9595,-2.3629],[125.9616,-2.3656],[125.9612,-2.3756],[125.9635,-2.3866],[125.9666,-2.3963],[125.973,-2.4029],[125.9739,-2.4127],[125.9785,-2.4218],[125.9905,-2.4399],[125.9959,-2.445],[126.0056,-2.4519],[126.037,-2.47],[126.0425,-2.4755],[126.0495,-2.4773],[126.0581,-2.4704],[126.0706,-2.451],[126.073,-2.4446],[126.0729,-2.4222],[126.0694,-2.4129],[126.0656,-2.408],[126.0592,-2.3922],[126.0489,-2.3748],[126.047,-2.3683],[126.0392,-2.3595],[126.0399,-2.3543],[126.0387,-2.3476],[126.0355,-2.3404],[126.0326,-2.3377],[126.0324,-2.3322],[126.0214,-2.3132],[126.0206,-2.3014],[126.0142,-2.2883],[126.0058,-2.2673],[126,-2.2601],[126,-2.2546],[125.9886,-2.2376],[125.9818,-2.2261],[125.973,-2.2029],[125.9673,-2.194],[125.9635,-2.1843],[125.9579,-2.1601],[125.9571,-2.1452],[125.9594,-2.1344],[125.959,-2.129],[125.9625,-2.1129],[125.9714,-2.0907],[125.9775,-2.078],[125.9781,-2.0733],[125.9831,-2.0655],[125.9825,-2.0547],[125.9881,-2.0534],[125.9928,-2.0454],[125.9913,-2.0399],[125.993,-2.0299],[125.9873,-2.0155],[125.9767,-2.008],[125.9751,-2.0038],[125.9711,-2.0048],[125.9691,-1.9997],[125.9594,-1.9955],[125.9571,-1.992],[125.9487,-1.9876],[125.9441,-1.98],[125.9384,-1.9777],[125.9284,-1.982],[125.9207,-1.9766],[125.9151,-1.9805]],[[125.8077,-1.9138],[125.8027,-1.9138],[125.7979,-1.9176],[125.7981,-1.9218],[125.806,-1.9173],[125.8077,-1.9138]],[[125.4185,-1.8845],[125.412,-1.8908],[125.4151,-1.8962],[125.4215,-1.8859],[125.4185,-1.8845]],[[125.3844,-1.8787],[125.3824,-1.8808],[125.3756,-1.8814],[125.3722,-1.8897],[125.386,-1.8919],[125.3887,-1.889],[125.3844,-1.8787]],[[126.4572,-1.8007],[126.4484,-1.8026],[126.4406,-1.8014],[126.4324,-1.8091],[126.4217,-1.8125],[126.4052,-1.8131],[126.3902,-1.8164],[126.3819,-1.8157],[126.3745,-1.8218],[126.351,-1.8249],[126.3514,-1.828],[126.3561,-1.8294],[126.3714,-1.8279],[126.3783,-1.8263],[126.3775,-1.8309],[126.3831,-1.83],[126.3823,-1.8364],[126.3868,-1.8372],[126.3951,-1.836],[126.4003,-1.8318],[126.4125,-1.8282],[126.4171,-1.8281],[126.4319,-1.8304],[126.4404,-1.8353],[126.4519,-1.8381],[126.4593,-1.8381],[126.4694,-1.8366],[126.4797,-1.8331],[126.4825,-1.8297],[126.4844,-1.8196],[126.466,-1.821],[126.4641,-1.8183],[126.4705,-1.8147],[126.47,-1.8089],[126.4731,-1.8056],[126.4659,-1.8039],[126.4534,-1.8073],[126.4572,-1.8007]],[[125.4049,-1.7753],[125.3942,-1.7772],[125.3892,-1.7833],[125.3867,-1.7796],[125.3757,-1.7773],[125.3666,-1.7791],[125.3633,-1.7857],[125.3569,-1.7932],[125.3567,-1.7967],[125.3659,-1.7968],[125.3735,-1.7986],[125.3763,-1.8021],[125.3757,-1.8071],[125.3703,-1.807],[125.3646,-1.8102],[125.3554,-1.8083],[125.3541,-1.8039],[125.3473,-1.8058],[125.347,-1.8109],[125.3423,-1.8124],[125.3377,-1.8226],[125.3312,-1.827],[125.3283,-1.8312],[125.3296,-1.8392],[125.3296,-1.8586],[125.3316,-1.8647],[125.3329,-1.8757],[125.3405,-1.8816],[125.3445,-1.888],[125.3579,-1.8869],[125.3628,-1.8775],[125.3629,-1.8727],[125.3656,-1.8687],[125.365,-1.8646],[125.3675,-1.8603],[125.3656,-1.8531],[125.3688,-1.8463],[125.3746,-1.8483],[125.3727,-1.8548],[125.3742,-1.8624],[125.3804,-1.863],[125.3841,-1.866],[125.3938,-1.8649],[125.3972,-1.8664],[125.3957,-1.8726],[125.3999,-1.874],[125.4013,-1.869],[125.4057,-1.8694],[125.4055,-1.8738],[125.4121,-1.8799],[125.4152,-1.8761],[125.4199,-1.8778],[125.4221,-1.883],[125.4294,-1.8838],[125.4338,-1.8859],[125.4366,-1.8914],[125.4366,-1.8981],[125.4388,-1.9007],[125.4351,-1.9077],[125.4331,-1.9158],[125.4407,-1.9274],[125.4387,-1.9299],[125.4287,-1.9367],[125.4191,-1.9448],[125.4188,-1.9484],[125.4244,-1.9494],[125.4356,-1.9486],[125.4371,-1.9463],[125.4509,-1.9464],[125.4594,-1.9431],[125.4626,-1.9435],[125.4744,-1.94],[125.4862,-1.9384],[125.489,-1.9347],[125.4942,-1.9343],[125.4979,-1.9363],[125.5078,-1.9473],[125.516,-1.9491],[125.5294,-1.9482],[125.538,-1.9434],[125.5552,-1.9395],[125.5622,-1.9355],[125.5706,-1.9357],[125.5785,-1.9289],[125.5934,-1.9303],[125.6,-1.9283],[125.6123,-1.9289],[125.6248,-1.9308],[125.6562,-1.9312],[125.6794,-1.9309],[125.6906,-1.9288],[125.7247,-1.9296],[125.7279,-1.9302],[125.741,-1.9294],[125.7463,-1.9269],[125.7608,-1.9288],[125.7651,-1.9246],[125.7654,-1.921],[125.7736,-1.9225],[125.7818,-1.929],[125.7872,-1.9167],[125.7922,-1.913],[125.8011,-1.9139],[125.8067,-1.9087],[125.8186,-1.9023],[125.8392,-1.8963],[125.8438,-1.8958],[125.858,-1.9008],[125.866,-1.9068],[125.8808,-1.9145],[125.8866,-1.9208],[125.8948,-1.9265],[125.9044,-1.9357],[125.9176,-1.939],[125.9219,-1.9381],[125.9331,-1.9317],[125.9473,-1.9214],[125.958,-1.9179],[125.9683,-1.9192],[125.9798,-1.918],[125.9891,-1.9146],[125.9954,-1.9109],[126.0036,-1.908],[126.01,-1.9073],[126.0156,-1.9047],[126.0274,-1.8963],[126.0327,-1.8946],[126.0385,-1.8954],[126.0485,-1.8889],[126.0586,-1.8849],[126.0665,-1.8831],[126.0799,-1.8829],[126.0892,-1.8789],[126.0979,-1.8786],[126.1048,-1.8816],[126.1207,-1.886],[126.1243,-1.888],[126.1341,-1.8892],[126.1378,-1.8911],[126.1512,-1.8888],[126.1564,-1.886],[126.1607,-1.8864],[126.1775,-1.8783],[126.1868,-1.8763],[126.1964,-1.8694],[126.2079,-1.8674],[126.2189,-1.8706],[126.227,-1.8752],[126.2303,-1.8796],[126.237,-1.8786],[126.2457,-1.8795],[126.2522,-1.8757],[126.2589,-1.8693],[126.2641,-1.8662],[126.2742,-1.8577],[126.2781,-1.8565],[126.2893,-1.8559],[126.2954,-1.8537],[126.3032,-1.8477],[126.3118,-1.8471],[126.3202,-1.8437],[126.3233,-1.8404],[126.326,-1.8328],[126.3396,-1.8186],[126.3455,-1.8199],[126.3482,-1.8151],[126.344,-1.8114],[126.3278,-1.8119],[126.3246,-1.8174],[126.3166,-1.8186],[126.3151,-1.824],[126.3057,-1.8285],[126.3019,-1.8232],[126.2976,-1.8219],[126.293,-1.8266],[126.2881,-1.826],[126.2863,-1.8216],[126.2768,-1.8217],[126.2669,-1.8157],[126.2619,-1.8177],[126.2524,-1.8188],[126.2496,-1.8172],[126.2232,-1.8181],[126.2055,-1.8142],[126.2037,-1.8082],[126.1967,-1.8048],[126.1763,-1.8096],[126.1616,-1.8085],[126.1599,-1.8066],[126.1499,-1.8085],[126.1446,-1.8106],[126.1277,-1.8112],[126.1054,-1.8092],[126.0888,-1.8086],[126.0666,-1.8036],[126.0525,-1.8025],[126.0318,-1.8],[126.01,-1.7988],[125.9996,-1.7978],[125.9963,-1.7991],[125.9861,-1.7977],[125.9662,-1.7971],[125.9571,-1.7957],[125.953,-1.7977],[125.939,-1.7966],[125.9239,-1.7942],[125.9127,-1.7932],[125.9072,-1.7972],[125.8941,-1.7963],[125.885,-1.7947],[125.882,-1.8015],[125.8774,-1.8009],[125.8754,-1.8065],[125.8638,-1.8061],[125.8584,-1.8026],[125.8537,-1.8025],[125.8493,-1.8067],[125.8423,-1.8023],[125.8359,-1.8043],[125.8323,-1.8024],[125.8258,-1.8046],[125.8229,-1.8101],[125.8154,-1.8112],[125.801,-1.8093],[125.7972,-1.8065],[125.7842,-1.8052],[125.786,-1.7995],[125.7795,-1.7984],[125.7814,-1.8064],[125.7712,-1.8126],[125.7706,-1.8067],[125.7665,-1.8055],[125.7624,-1.8083],[125.7551,-1.8072],[125.7535,-1.815],[125.7488,-1.8138],[125.7487,-1.8065],[125.7432,-1.8075],[125.7426,-1.8108],[125.7334,-1.8153],[125.7301,-1.8156],[125.7318,-1.8232],[125.724,-1.8287],[125.7227,-1.8224],[125.7192,-1.8226],[125.7171,-1.8168],[125.7139,-1.8163],[125.7045,-1.8195],[125.6973,-1.8299],[125.6924,-1.829],[125.6887,-1.8223],[125.6815,-1.8253],[125.6675,-1.8256],[125.6506,-1.823],[125.6471,-1.8214],[125.6419,-1.8287],[125.6313,-1.8292],[125.6293,-1.8227],[125.625,-1.818],[125.6228,-1.8122],[125.6184,-1.8147],[125.6176,-1.8191],[125.6128,-1.8208],[125.6034,-1.8191],[125.6022,-1.8132],[125.5971,-1.8078],[125.5932,-1.814],[125.585,-1.8089],[125.5663,-1.8043],[125.5621,-1.8022],[125.5541,-1.8038],[125.5504,-1.8015],[125.543,-1.8102],[125.5404,-1.8015],[125.544,-1.7933],[125.5403,-1.7861],[125.536,-1.7887],[125.5297,-1.7955],[125.5261,-1.7975],[125.5271,-1.8037],[125.5227,-1.8039],[125.5199,-1.8005],[125.5153,-1.8059],[125.517,-1.8101],[125.514,-1.8125],[125.5095,-1.8081],[125.5062,-1.8138],[125.5035,-1.8127],[125.5019,-1.8213],[125.4968,-1.8169],[125.4985,-1.8117],[125.496,-1.8079],[125.4902,-1.8193],[125.4862,-1.8143],[125.4837,-1.8037],[125.4809,-1.8017],[125.4752,-1.8029],[125.4736,-1.7996],[125.479,-1.7971],[125.4829,-1.7906],[125.4883,-1.7848],[125.4814,-1.7787],[125.4749,-1.7814],[125.4705,-1.7786],[125.4659,-1.7796],[125.4574,-1.7776],[125.4541,-1.7815],[125.4523,-1.7897],[125.4532,-1.7928],[125.4501,-1.7998],[125.4433,-1.7972],[125.4344,-1.8039],[125.43,-1.8056],[125.4285,-1.8095],[125.4205,-1.8069],[125.4197,-1.7993],[125.4128,-1.7971],[125.4117,-1.7864],[125.4094,-1.7821],[125.4099,-1.7775],[125.4049,-1.7753]],[[125.4221,-1.767],[125.4171,-1.7696],[125.4203,-1.7747],[125.4254,-1.7691],[125.4221,-1.767]],[[125.5413,-1.7556],[125.5383,-1.7555],[125.5314,-1.7608],[125.5284,-1.7677],[125.5259,-1.7617],[125.5219,-1.7604],[125.5167,-1.7657],[125.5156,-1.7699],[125.5074,-1.775],[125.5088,-1.7793],[125.5139,-1.7794],[125.5186,-1.7764],[125.5224,-1.7766],[125.5274,-1.7725],[125.5324,-1.7722],[125.538,-1.7809],[125.546,-1.7808],[125.5528,-1.7772],[125.5521,-1.7744],[125.547,-1.772],[125.5429,-1.766],[125.5428,-1.7561],[125.5413,-1.7556]],[[125.6952,-1.7622],[125.7013,-1.7569],[125.6964,-1.752],[125.6887,-1.7525],[125.6877,-1.7553],[125.6952,-1.7622]]]}},{"type":"Feature","properties":{"mhid":"1332:472","alt_name":"KABUPATEN HALMAHERA SELATAN","latitude":-0.3955,"longitude":127.90833,"sample_value":968},"geometry":{"type":"MultiLineString","coordinates":[[[127.6346,-1.8209],[127.6175,-1.8238],[127.6129,-1.8223],[127.6018,-1.8226],[127.5859,-1.8315],[127.5805,-1.831],[127.579,-1.8355],[127.5739,-1.8387],[127.5719,-1.8434],[127.5727,-1.8497],[127.5721,-1.8658],[127.5776,-1.8668],[127.5826,-1.862],[127.5937,-1.8567],[127.5934,-1.8473],[127.601,-1.8461],[127.6178,-1.8492],[127.6196,-1.8515],[127.6289,-1.85],[127.6347,-1.847],[127.6396,-1.8422],[127.6452,-1.8289],[127.6412,-1.822],[127.6346,-1.8209]],[[128.103,-1.5613],[128.0885,-1.5624],[128.0842,-1.5672],[128.0844,-1.5722],[128.0889,-1.5761],[128.095,-1.5778],[128.0988,-1.5737],[128.0977,-1.5643],[128.103,-1.5613]],[[128.068,-1.5388],[128.0666,-1.5367],[128.0594,-1.5369],[128.0586,-1.544],[128.0666,-1.5436],[128.068,-1.5388]],[[128.0817,-1.5348],[128.0824,-1.5401],[128.0925,-1.5404],[128.0929,-1.5381],[128.0817,-1.5348]],[[128.0387,-1.5263],[128.0316,-1.5294],[128.0375,-1.536],[128.0421,-1.5387],[128.0467,-1.5376],[128.0468,-1.5308],[128.0445,-1.5278],[128.0387,-1.5263]],[[127.9922,-1.4879],[127.9863,-1.4866],[127.9856,-1.4936],[127.9887,-1.5004],[127.9939,-1.505],[127.9986,-1.5038],[127.9987,-1.5004],[127.9922,-1.4879]],[[127.3974,-1.4906],[127.3963,-1.484],[127.3915,-1.4834],[127.3851,-1.4917],[127.3813,-1.4942],[127.3815,-1.5027],[127.3781,-1.5065],[127.3793,-1.5126],[127.3772,-1.5168],[127.3779,-1.522],[127.3958,-1.5241],[127.3992,-1.5161],[127.3965,-1.5115],[127.3976,-1.5066],[127.4036,-1.5106],[127.404,-1.5029],[127.4099,-1.4976],[127.4073,-1.4932],[127.3974,-1.4906]],[[127.8686,-1.4313],[127.8719,-1.4255],[127.877,-1.4249],[127.8781,-1.4199],[127.8742,-1.4177],[127.8694,-1.4192],[127.8647,-1.4272],[127.8686,-1.4313]],[[127.3952,-1.3799],[127.3969,-1.377],[127.3931,-1.3739],[127.3907,-1.3796],[127.3952,-1.3799]],[[127.3608,-1.3644],[127.3576,-1.3739],[127.3543,-1.3767],[127.3484,-1.3768],[127.3507,-1.3702],[127.3481,-1.366],[127.3426,-1.3646],[127.3403,-1.3681],[127.3418,-1.3735],[127.3381,-1.3749],[127.337,-1.3789],[127.3411,-1.3849],[127.3378,-1.3878],[127.3304,-1.3802],[127.3273,-1.3814],[127.3255,-1.376],[127.3272,-1.3666],[127.3207,-1.3659],[127.3154,-1.3814],[127.3208,-1.3891],[127.315,-1.3965],[127.3054,-1.3964],[127.2999,-1.4011],[127.2991,-1.4044],[127.2919,-1.4044],[127.2845,-1.4062],[127.2845,-1.4114],[127.281,-1.414],[127.2927,-1.427],[127.2964,-1.434],[127.3032,-1.4351],[127.312,-1.4349],[127.3176,-1.4374],[127.3196,-1.4421],[127.3239,-1.4451],[127.3245,-1.451],[127.3275,-1.4543],[127.3309,-1.4463],[127.3378,-1.4411],[127.3407,-1.4349],[127.3438,-1.433],[127.3509,-1.4336],[127.3553,-1.428],[127.3632,-1.4258],[127.3754,-1.4259],[127.3774,-1.4229],[127.3825,-1.4209],[127.3944,-1.4126],[127.3935,-1.4089],[127.3986,-1.4064],[127.3996,-1.4007],[127.3926,-1.3926],[127.3924,-1.3876],[127.381,-1.3891],[127.3723,-1.3834],[127.3732,-1.3792],[127.3828,-1.3801],[127.3842,-1.3731],[127.3813,-1.3687],[127.377,-1.3682],[127.3675,-1.3776],[127.3641,-1.3751],[127.3641,-1.3704],[127.3608,-1.3644]],[[127.642,-1.3302],[127.6344,-1.3351],[127.6291,-1.3401],[127.6262,-1.3468],[127.6175,-1.3527],[127.6118,-1.3546],[127.6082,-1.3538],[127.6026,-1.3567],[127.5899,-1.3598],[127.5883,-1.362],[127.5813,-1.3635],[127.5787,-1.3674],[127.5769,-1.3747],[127.5695,-1.3752],[127.561,-1.3793],[127.5591,-1.389],[127.5514,-1.3922],[127.5479,-1.3975],[127.5342,-1.4087],[127.5294,-1.407],[127.5214,-1.4131],[127.5213,-1.4168],[127.5132,-1.4181],[127.5133,-1.4253],[127.5164,-1.4292],[127.5172,-1.4345],[127.5078,-1.4337],[127.505,-1.4396],[127.5058,-1.4452],[127.5084,-1.4484],[127.5055,-1.4526],[127.4993,-1.453],[127.4937,-1.4497],[127.4918,-1.4446],[127.4865,-1.4462],[127.4821,-1.4406],[127.4635,-1.4371],[127.4597,-1.4383],[127.4488,-1.4326],[127.4457,-1.4266],[127.4372,-1.4262],[127.4348,-1.4222],[127.4358,-1.4184],[127.4407,-1.4175],[127.4473,-1.4136],[127.4406,-1.409],[127.4379,-1.4145],[127.4326,-1.4114],[127.4237,-1.4178],[127.4143,-1.4195],[127.4196,-1.4274],[127.423,-1.4248],[127.4315,-1.4265],[127.433,-1.4371],[127.4367,-1.4375],[127.442,-1.4344],[127.4396,-1.4454],[127.4327,-1.4532],[127.4339,-1.4564],[127.4281,-1.4578],[127.4279,-1.4646],[127.4297,-1.469],[127.4196,-1.4718],[127.416,-1.4797],[127.4188,-1.4815],[127.4165,-1.4887],[127.4204,-1.496],[127.4244,-1.495],[127.4284,-1.4984],[127.4247,-1.5025],[127.4179,-1.5067],[127.4176,-1.51],[127.4131,-1.5153],[127.4101,-1.5219],[127.4064,-1.5248],[127.408,-1.5299],[127.4053,-1.5315],[127.4036,-1.5374],[127.411,-1.546],[127.4099,-1.5573],[127.4122,-1.5626],[127.412,-1.568],[127.4074,-1.5863],[127.4001,-1.6061],[127.396,-1.6129],[127.3916,-1.6164],[127.3956,-1.6225],[127.4033,-1.6426],[127.4036,-1.6523],[127.4079,-1.657],[127.4084,-1.6617],[127.4123,-1.6642],[127.4171,-1.6636],[127.4207,-1.6585],[127.4261,-1.6709],[127.4317,-1.6755],[127.4336,-1.6793],[127.4441,-1.6854],[127.4498,-1.6874],[127.4588,-1.6926],[127.4741,-1.6987],[127.4827,-1.7033],[127.4913,-1.7107],[127.4962,-1.7172],[127.4965,-1.7224],[127.4994,-1.725],[127.5052,-1.7259],[127.5224,-1.7251],[127.5304,-1.7257],[127.5546,-1.7339],[127.5664,-1.7357],[127.5726,-1.7338],[127.5832,-1.7332],[127.5968,-1.7381],[127.6044,-1.7353],[127.6089,-1.7288],[127.609,-1.7248],[127.6126,-1.7199],[127.6175,-1.7176],[127.6214,-1.7209],[127.627,-1.719],[127.6436,-1.7292],[127.6531,-1.7306],[127.6616,-1.7279],[127.6692,-1.722],[127.6704,-1.711],[127.6779,-1.7041],[127.6843,-1.7053],[127.6919,-1.7036],[127.6978,-1.696],[127.7063,-1.6897],[127.7163,-1.6869],[127.7244,-1.6867],[127.7295,-1.6879],[127.7344,-1.6952],[127.7426,-1.6938],[127.7473,-1.6877],[127.7568,-1.687],[127.7638,-1.6898],[127.7743,-1.6892],[127.7836,-1.6937],[127.7919,-1.6962],[127.7978,-1.6957],[127.8131,-1.6992],[127.817,-1.7009],[127.8303,-1.6978],[127.8357,-1.6941],[127.8438,-1.6941],[127.8491,-1.6982],[127.8537,-1.6982],[127.865,-1.6935],[127.8708,-1.6929],[127.8776,-1.6892],[127.8823,-1.6851],[127.8872,-1.6832],[127.8938,-1.6833],[127.9026,-1.6855],[127.9057,-1.6844],[127.9132,-1.6876],[127.9196,-1.6878],[127.9416,-1.6923],[127.9505,-1.6959],[127.9614,-1.6955],[127.9672,-1.6977],[127.9765,-1.698],[127.9857,-1.701],[127.9999,-1.7091],[128.0039,-1.7128],[128.0087,-1.7205],[128.0136,-1.7218],[128.0244,-1.7273],[128.0291,-1.7223],[128.0392,-1.7179],[128.0514,-1.7179],[128.0569,-1.7192],[128.0646,-1.7191],[128.0718,-1.716],[128.0809,-1.7166],[128.087,-1.7224],[128.0936,-1.72],[128.1018,-1.7142],[128.1108,-1.7018],[128.123,-1.698],[128.1311,-1.6925],[128.142,-1.6887],[128.1472,-1.6884],[128.156,-1.6844],[128.1595,-1.6766],[128.1661,-1.6511],[128.1681,-1.6404],[128.1683,-1.6332],[128.1663,-1.6195],[128.1637,-1.6122],[128.1585,-1.6048],[128.1524,-1.5993],[128.1495,-1.5941],[128.1405,-1.5881],[128.126,-1.5704],[128.1212,-1.5657],[128.1109,-1.5605],[128.1061,-1.5678],[128.1042,-1.5734],[128.0994,-1.5791],[128.096,-1.5785],[128.0897,-1.584],[128.0838,-1.5815],[128.0806,-1.5771],[128.0779,-1.5815],[128.0725,-1.5791],[128.0746,-1.5752],[128.0813,-1.5743],[128.0799,-1.5681],[128.0764,-1.5652],[128.0707,-1.5643],[128.0599,-1.5666],[128.056,-1.5598],[128.0533,-1.5597],[128.051,-1.5527],[128.0455,-1.5504],[128.0457,-1.5458],[128.0411,-1.544],[128.0381,-1.5401],[128.0202,-1.5263],[128.0109,-1.5145],[128.0034,-1.5102],[127.9986,-1.5095],[127.9969,-1.5122],[127.9915,-1.5122],[127.9903,-1.5047],[127.9813,-1.4938],[127.9824,-1.4918],[127.9783,-1.484],[127.9673,-1.4773],[127.9578,-1.4747],[127.9552,-1.4726],[127.9514,-1.4652],[127.935,-1.4486],[127.9305,-1.446],[127.9151,-1.4399],[127.8988,-1.432],[127.8941,-1.4267],[127.8876,-1.4255],[127.8782,-1.4393],[127.8696,-1.4354],[127.86,-1.4351],[127.8578,-1.4377],[127.8459,-1.4381],[127.8426,-1.435],[127.8368,-1.4347],[127.8358,-1.4304],[127.8397,-1.4291],[127.8397,-1.4254],[127.8317,-1.4236],[127.8244,-1.4171],[127.8208,-1.4175],[127.817,-1.414],[127.8096,-1.4167],[127.8012,-1.4134],[127.7917,-1.3898],[127.7893,-1.3887],[127.794,-1.3808],[127.7931,-1.3731],[127.7888,-1.3706],[127.7803,-1.373],[127.7743,-1.3661],[127.7673,-1.3635],[127.7623,-1.3587],[127.7603,-1.3525],[127.7578,-1.3519],[127.7501,-1.3569],[127.7452,-1.3529],[127.7376,-1.3503],[127.7321,-1.3434],[127.7236,-1.3431],[127.7137,-1.3376],[127.7067,-1.3354],[127.698,-1.3424],[127.7016,-1.3438],[127.7024,-1.3523],[127.693,-1.3506],[127.6893,-1.3479],[127.6829,-1.3465],[127.6803,-1.3433],[127.6801,-1.3377],[127.6739,-1.3313],[127.6685,-1.3325],[127.6658,-1.3401],[127.6692,-1.3452],[127.6606,-1.3462],[127.6565,-1.3431],[127.6541,-1.3338],[127.6513,-1.331],[127.642,-1.3302]],[[127.3982,-1.3125],[127.3926,-1.3119],[127.3761,-1.3162],[127.3769,-1.3216],[127.3847,-1.3276],[127.3931,-1.3278],[127.3933,-1.3243],[127.4017,-1.3212],[127.3995,-1.3278],[127.4087,-1.3296],[127.4071,-1.326],[127.4108,-1.3228],[127.4151,-1.3238],[127.4129,-1.3323],[127.4218,-1.332],[127.4346,-1.3185],[127.4173,-1.3155],[127.4138,-1.3131],[127.4058,-1.3121],[127.3982,-1.3125]],[[127.5583,-1.1791],[127.5538,-1.1747],[127.5476,-1.171],[127.5391,-1.1793],[127.5281,-1.1765],[127.5191,-1.1784],[127.5122,-1.1771],[127.5097,-1.1791],[127.5094,-1.1922],[127.5104,-1.1992],[127.5057,-1.207],[127.4945,-1.212],[127.4849,-1.2136],[127.4796,-1.2174],[127.4703,-1.2344],[127.4652,-1.2413],[127.4654,-1.251],[127.4699,-1.2553],[127.4849,-1.2605],[127.4884,-1.2703],[127.4926,-1.2716],[127.4996,-1.2697],[127.5107,-1.2694],[127.5162,-1.2676],[127.5262,-1.2575],[127.5277,-1.2528],[127.5337,-1.2495],[127.5464,-1.2501],[127.553,-1.249],[127.565,-1.2491],[127.5722,-1.2523],[127.5787,-1.2525],[127.5845,-1.2565],[127.5957,-1.2581],[127.6138,-1.2637],[127.6173,-1.2673],[127.6259,-1.2729],[127.6293,-1.2777],[127.6378,-1.2827],[127.644,-1.2839],[127.6587,-1.284],[127.6709,-1.2919],[127.6759,-1.2929],[127.6761,-1.2878],[127.6691,-1.2865],[127.6759,-1.2814],[127.6806,-1.2835],[127.6886,-1.2846],[127.6945,-1.268],[127.6974,-1.2565],[127.6964,-1.2443],[127.6943,-1.2394],[127.6964,-1.2292],[127.6943,-1.226],[127.6883,-1.2264],[127.6705,-1.223],[127.6607,-1.2251],[127.6539,-1.224],[127.6492,-1.2212],[127.6415,-1.2214],[127.6345,-1.2183],[127.6251,-1.212],[127.6091,-1.2074],[127.5989,-1.2104],[127.5932,-1.2018],[127.5859,-1.2023],[127.5818,-1.1983],[127.5774,-1.1969],[127.5691,-1.1904],[127.5651,-1.1886],[127.5626,-1.1822],[127.5583,-1.1791]],[[128.435,-1.1528],[128.4331,-1.1494],[128.427,-1.1457],[128.422,-1.1524],[128.4102,-1.1534],[128.4096,-1.1568],[128.4172,-1.16],[128.4259,-1.1554],[128.4347,-1.1566],[128.435,-1.1528]],[[127.426,-1.1484],[127.4197,-1.1408],[127.4134,-1.1368],[127.4077,-1.1369],[127.4039,-1.1401],[127.3969,-1.1429],[127.397,-1.1497],[127.4028,-1.1501],[127.4058,-1.1548],[127.4059,-1.1598],[127.4092,-1.1628],[127.4087,-1.1778],[127.4075,-1.1827],[127.4087,-1.2003],[127.4123,-1.2024],[127.4134,-1.207],[127.4193,-1.2153],[127.4242,-1.2203],[127.4321,-1.2201],[127.4396,-1.2143],[127.4441,-1.2012],[127.4439,-1.1861],[127.4351,-1.1772],[127.4322,-1.1688],[127.4319,-1.1597],[127.426,-1.1484]],[[128.3799,-1.1338],[128.3675,-1.1308],[128.3638,-1.1351],[128.375,-1.1411],[128.3877,-1.1434],[128.4031,-1.1556],[128.4055,-1.15],[128.3846,-1.1392],[128.3799,-1.1338]],[[128.4015,-1.122],[128.3907,-1.1222],[128.3871,-1.1255],[128.3924,-1.1365],[128.3998,-1.138],[128.4016,-1.1352],[128.4033,-1.1255],[128.4015,-1.122]],[[128.3404,-1.1087],[128.3328,-1.1087],[128.3291,-1.112],[128.3297,-1.1155],[128.3462,-1.1216],[128.3479,-1.1192],[128.3469,-1.1123],[128.3404,-1.1087]],[[128.3442,-1.1031],[128.3419,-1.1011],[128.3356,-1.1051],[128.3426,-1.1076],[128.3442,-1.1031]],[[128.3418,-1.0966],[128.3368,-1.0955],[128.3342,-1.0988],[128.338,-1.1023],[128.3418,-1.0966]],[[128.3765,-1.0775],[128.3708,-1.0733],[128.36,-1.0737],[128.3541,-1.0769],[128.3437,-1.089],[128.3444,-1.0932],[128.3497,-1.0946],[128.3559,-1.0931],[128.3576,-1.0986],[128.3562,-1.1034],[128.3613,-1.1067],[128.3601,-1.1188],[128.369,-1.1221],[128.3767,-1.1206],[128.3822,-1.1125],[128.3879,-1.1076],[128.3945,-1.106],[128.3979,-1.101],[128.4023,-1.0994],[128.4075,-1.1013],[128.4125,-1.0993],[128.4196,-1.1038],[128.4234,-1.1023],[128.4306,-1.1082],[128.4249,-1.1135],[128.4272,-1.1172],[128.4331,-1.1182],[128.44,-1.1229],[128.4481,-1.1237],[128.4509,-1.1303],[128.4536,-1.1304],[128.4544,-1.1242],[128.4475,-1.121],[128.4413,-1.1201],[128.4372,-1.1176],[128.4333,-1.1093],[128.4207,-1.0952],[128.4138,-1.0926],[128.4112,-1.0877],[128.4009,-1.0836],[128.395,-1.0826],[128.3811,-1.0767],[128.3765,-1.0775]],[[128.2332,-1.0477],[128.2316,-1.038],[128.226,-1.0397],[128.2287,-1.0604],[128.231,-1.0646],[128.2382,-1.0683],[128.2436,-1.0653],[128.2352,-1.0623],[128.2337,-1.0546],[128.2354,-1.0507],[128.2403,-1.0461],[128.2458,-1.0478],[128.2485,-1.0533],[128.2519,-1.0488],[128.2505,-1.0443],[128.2388,-1.0401],[128.2332,-1.0477]],[[128.3452,-1.0358],[128.3403,-1.0386],[128.3347,-1.0393],[128.3371,-1.0507],[128.3403,-1.0543],[128.345,-1.0555],[128.3517,-1.0537],[128.3605,-1.0443],[128.3583,-1.0417],[128.3466,-1.0353],[128.3452,-1.0358]],[[128.1793,-1.038],[128.1782,-1.0334],[128.1742,-1.033],[128.176,-1.0396],[128.1793,-1.038]],[[128.3591,-0.9548],[128.3583,-0.9481],[128.3536,-0.9506],[128.3591,-0.9548]],[[128.3201,-0.9382],[128.3157,-0.9377],[128.3131,-0.9442],[128.3079,-0.945],[128.3058,-0.9555],[128.3088,-0.9586],[128.3082,-0.9661],[128.3223,-0.9706],[128.3266,-0.9696],[128.3299,-0.9729],[128.3391,-0.9742],[128.3396,-0.9817],[128.3372,-0.984],[128.3338,-0.9944],[128.3362,-0.9993],[128.3342,-1.0054],[128.3344,-1.012],[128.3295,-1.0143],[128.3345,-1.0226],[128.3398,-1.0226],[128.348,-1.0317],[128.3602,-1.0375],[128.3633,-1.0413],[128.3771,-1.0375],[128.3874,-1.0391],[128.3991,-1.0389],[128.4048,-1.0363],[128.414,-1.0288],[128.4198,-1.0207],[128.4202,-1.0151],[128.417,-1.0026],[128.409,-0.9957],[128.4051,-0.9901],[128.3956,-0.9899],[128.3865,-0.9937],[128.3855,-0.9987],[128.3795,-0.9981],[128.3737,-0.9955],[128.374,-0.9931],[128.368,-0.9899],[128.3648,-0.986],[128.3552,-0.9802],[128.3569,-0.976],[128.3529,-0.971],[128.3478,-0.969],[128.3455,-0.9653],[128.3398,-0.9655],[128.3337,-0.9611],[128.3395,-0.9556],[128.3355,-0.9512],[128.3381,-0.9485],[128.3348,-0.9449],[128.3231,-0.9384],[128.3201,-0.9382]],[[128.1211,-0.8476],[128.1232,-0.8436],[128.1198,-0.8414],[128.1163,-0.8433],[128.1129,-0.8523],[128.1151,-0.8556],[128.1222,-0.8528],[128.1211,-0.8476]],[[128.0952,-0.8383],[128.0853,-0.8389],[128.081,-0.8451],[128.0811,-0.8527],[128.0869,-0.8562],[128.0899,-0.8549],[128.1033,-0.8617],[128.1057,-0.8572],[128.1117,-0.8528],[128.1072,-0.8489],[128.1039,-0.849],[128.1022,-0.8439],[128.0982,-0.844],[128.0952,-0.8383]],[[128.1345,-0.8047],[128.1372,-0.8106],[128.1407,-0.8082],[128.151,-0.8078],[128.1486,-0.8044],[128.1416,-0.8062],[128.1345,-0.8047]],[[128.1572,-0.7936],[128.1518,-0.796],[128.1548,-0.7997],[128.1595,-0.7976],[128.1572,-0.7936]],[[127.1625,-0.7512],[127.1599,-0.7557],[127.1626,-0.7589],[127.1736,-0.7627],[127.175,-0.7674],[127.181,-0.7687],[127.1736,-0.7591],[127.1691,-0.7581],[127.1625,-0.7512]],[[127.3236,-0.6556],[127.316,-0.6476],[127.3158,-0.6438],[127.308,-0.6316],[127.3015,-0.6341],[127.3027,-0.646],[127.3107,-0.6506],[127.316,-0.6584],[127.3224,-0.6624],[127.3236,-0.6556]],[[128.5932,-0.628],[128.5906,-0.6308],[128.5838,-0.6322],[128.5865,-0.6367],[128.5971,-0.6423],[128.5935,-0.6466],[128.5952,-0.6542],[128.6034,-0.6515],[128.6071,-0.6464],[128.6063,-0.6402],[128.5976,-0.6286],[128.5932,-0.628]],[[127.3287,-0.6246],[127.3278,-0.6208],[127.323,-0.6187],[127.3144,-0.6192],[127.309,-0.6248],[127.3133,-0.6312],[127.3169,-0.6399],[127.3204,-0.6432],[127.3238,-0.6497],[127.3279,-0.6519],[127.3314,-0.6581],[127.3346,-0.6556],[127.3309,-0.6459],[127.3298,-0.6383],[127.3308,-0.631],[127.3287,-0.6246]],[[127.2442,-0.6033],[127.2302,-0.6053],[127.2232,-0.6037],[127.2182,-0.605],[127.2137,-0.6117],[127.2073,-0.6174],[127.1947,-0.6144],[127.1926,-0.6177],[127.1959,-0.6204],[127.2023,-0.6326],[127.2059,-0.6348],[127.2102,-0.6337],[127.217,-0.638],[127.2161,-0.6484],[127.21,-0.6511],[127.207,-0.6652],[127.2131,-0.6702],[127.2065,-0.6761],[127.2014,-0.6729],[127.1942,-0.6765],[127.1932,-0.6855],[127.191,-0.6925],[127.1865,-0.6964],[127.1795,-0.6981],[127.1736,-0.7078],[127.1686,-0.7074],[127.17,-0.713],[127.1751,-0.7159],[127.1676,-0.7183],[127.1694,-0.728],[127.1691,-0.7362],[127.1645,-0.7486],[127.1699,-0.7512],[127.1808,-0.7663],[127.1945,-0.7745],[127.1996,-0.7755],[127.2002,-0.7789],[127.2096,-0.7806],[127.2274,-0.7796],[127.2312,-0.7704],[127.2418,-0.7658],[127.2572,-0.7705],[127.2664,-0.7768],[127.2721,-0.7775],[127.2785,-0.7814],[127.2803,-0.7871],[127.2901,-0.7966],[127.2965,-0.7993],[127.3086,-0.7976],[127.3164,-0.7948],[127.3345,-0.786],[127.3275,-0.7762],[127.3269,-0.7722],[127.3183,-0.7629],[127.3121,-0.7536],[127.3033,-0.7461],[127.3022,-0.7417],[127.2945,-0.7313],[127.2957,-0.7158],[127.2951,-0.7103],[127.291,-0.7084],[127.2972,-0.7044],[127.3,-0.6923],[127.2931,-0.6922],[127.2951,-0.687],[127.3031,-0.6891],[127.3044,-0.6862],[127.3017,-0.6808],[127.2955,-0.6786],[127.2903,-0.6741],[127.289,-0.6692],[127.274,-0.6627],[127.27,-0.6644],[127.264,-0.662],[127.2643,-0.6549],[127.259,-0.6501],[127.2531,-0.6485],[127.2507,-0.6392],[127.2473,-0.6357],[127.2487,-0.6269],[127.254,-0.6291],[127.2655,-0.6276],[127.2713,-0.6218],[127.2686,-0.6161],[127.258,-0.6078],[127.2583,-0.6057],[127.2496,-0.6031],[127.2442,-0.6033]],[[127.3379,-0.6124],[127.3389,-0.6055],[127.3361,-0.6006],[127.3314,-0.6008],[127.3243,-0.6068],[127.3312,-0.6118],[127.334,-0.617],[127.3372,-0.631],[127.3354,-0.6405],[127.3366,-0.6454],[127.3407,-0.6458],[127.3481,-0.6585],[127.3576,-0.6616],[127.3618,-0.6609],[127.3656,-0.6653],[127.3689,-0.6653],[127.3751,-0.6616],[127.3745,-0.6556],[127.3685,-0.6521],[127.372,-0.6496],[127.3764,-0.6527],[127.3789,-0.6588],[127.3775,-0.6678],[127.3803,-0.6675],[127.3859,-0.6627],[127.3844,-0.6566],[127.3988,-0.6555],[127.4097,-0.66],[127.4149,-0.6564],[127.4128,-0.652],[127.4156,-0.6443],[127.4149,-0.6374],[127.4081,-0.6368],[127.4017,-0.629],[127.4004,-0.6233],[127.3926,-0.6194],[127.3807,-0.6093],[127.3764,-0.6088],[127.3701,-0.6127],[127.3659,-0.6173],[127.3582,-0.6168],[127.3544,-0.6138],[127.3421,-0.6119],[127.3379,-0.6124]],[[128.4994,-0.5925],[128.4949,-0.5986],[128.5016,-0.6077],[128.5164,-0.6162],[128.5166,-0.6101],[128.5139,-0.6047],[128.4994,-0.5925]],[[127.3929,-0.5992],[127.3886,-0.5922],[127.3825,-0.5953],[127.3851,-0.6058],[127.3882,-0.6064],[127.3949,-0.6028],[127.3929,-0.5992]],[[128.4145,-0.5975],[128.4103,-0.5964],[128.4103,-0.604],[128.4197,-0.5985],[128.4145,-0.5975]],[[128.4783,-0.5833],[128.4746,-0.5879],[128.4771,-0.5917],[128.4848,-0.5926],[128.4881,-0.5882],[128.4783,-0.5833]],[[127.6123,-0.5781],[127.6098,-0.5759],[127.6044,-0.5784],[127.6067,-0.5854],[127.6142,-0.5827],[127.6123,-0.5781]],[[128.3484,-0.5665],[128.3463,-0.5668],[128.3386,-0.5729],[128.3303,-0.5756],[128.3335,-0.5795],[128.3424,-0.5791],[128.3478,-0.5834],[128.3545,-0.5816],[128.3616,-0.5752],[128.3574,-0.5701],[128.3537,-0.5754],[128.3492,-0.5771],[128.3436,-0.5742],[128.3426,-0.5706],[128.3484,-0.5665]],[[128.4121,-0.5595],[128.4093,-0.5583],[128.4054,-0.5613],[128.4093,-0.5681],[128.4126,-0.5671],[128.4172,-0.57],[128.4253,-0.5788],[128.4295,-0.5787],[128.4264,-0.5917],[128.4335,-0.5891],[128.4384,-0.5829],[128.4418,-0.574],[128.4399,-0.5702],[128.4309,-0.5693],[128.4206,-0.5651],[128.4121,-0.5595]],[[128.3312,-0.5476],[128.326,-0.5476],[128.3156,-0.5503],[128.3172,-0.5544],[128.3249,-0.5559],[128.3345,-0.5561],[128.3398,-0.5549],[128.3375,-0.5507],[128.3312,-0.5476]],[[127.2351,-0.5373],[127.2337,-0.5328],[127.2289,-0.5369],[127.2302,-0.5434],[127.2241,-0.5445],[127.2248,-0.548],[127.2338,-0.547],[127.2402,-0.5527],[127.243,-0.5466],[127.2485,-0.5437],[127.2351,-0.5373]],[[127.2805,-0.5326],[127.2773,-0.5331],[127.277,-0.5388],[127.2804,-0.5409],[127.2841,-0.5343],[127.2805,-0.5326]],[[128.3759,-0.5321],[128.371,-0.5276],[128.3662,-0.5276],[128.3574,-0.5351],[128.346,-0.5392],[128.3358,-0.5462],[128.3426,-0.5521],[128.3484,-0.5523],[128.3528,-0.5501],[128.3623,-0.5494],[128.3694,-0.5578],[128.3782,-0.5591],[128.3806,-0.5543],[128.3721,-0.5546],[128.3677,-0.5497],[128.3543,-0.5465],[128.3611,-0.5394],[128.3659,-0.5373],[128.3744,-0.5446],[128.3869,-0.5517],[128.3978,-0.5561],[128.4045,-0.5618],[128.4098,-0.5551],[128.404,-0.5525],[128.4014,-0.5475],[128.3914,-0.5438],[128.3818,-0.5381],[128.3759,-0.5321]],[[127.2613,-0.5021],[127.2587,-0.503],[127.2528,-0.5118],[127.2556,-0.5154],[127.2604,-0.5142],[127.2642,-0.5156],[127.2655,-0.5195],[127.2611,-0.5249],[127.2673,-0.5317],[127.2732,-0.5288],[127.2702,-0.5258],[127.2671,-0.5166],[127.2668,-0.5095],[127.268,-0.5018],[127.2613,-0.5021]],[[127.2875,-0.4887],[127.2795,-0.4918],[127.2739,-0.4974],[127.274,-0.5079],[127.2799,-0.5091],[127.2822,-0.5169],[127.287,-0.5255],[127.2907,-0.5229],[127.2964,-0.5146],[127.2944,-0.5062],[127.2875,-0.5014],[127.2928,-0.4994],[127.2958,-0.4934],[127.2912,-0.493],[127.2875,-0.4887]],[[127.2691,-0.4795],[127.2637,-0.4831],[127.2698,-0.4856],[127.2751,-0.482],[127.2691,-0.4795]],[[127.7111,-0.4546],[127.7042,-0.452],[127.704,-0.4562],[127.7111,-0.4546]],[[127.7285,-0.4116],[127.7253,-0.4128],[127.7282,-0.4217],[127.734,-0.4296],[127.7401,-0.4312],[127.7399,-0.4252],[127.7353,-0.4202],[127.7334,-0.4158],[127.7285,-0.4116]],[[127.433,-0.3509],[127.4243,-0.353],[127.4246,-0.3583],[127.4311,-0.3594],[127.4335,-0.3551],[127.433,-0.3509]],[[127.2919,-0.3342],[127.2875,-0.334],[127.2833,-0.34],[127.2811,-0.3475],[127.2902,-0.3496],[127.2977,-0.3441],[127.2991,-0.3413],[127.2947,-0.335],[127.2919,-0.3342]],[[127.7446,-0.3269],[127.7426,-0.3292],[127.7438,-0.3385],[127.7409,-0.3388],[127.7372,-0.3435],[127.7362,-0.3486],[127.7387,-0.3539],[127.7388,-0.37],[127.7349,-0.3759],[127.7331,-0.383],[127.7276,-0.3897],[127.7255,-0.3955],[127.7298,-0.3967],[127.7369,-0.3904],[127.7402,-0.3822],[127.7439,-0.3824],[127.7484,-0.3766],[127.7534,-0.377],[127.7573,-0.3751],[127.7587,-0.3698],[127.7516,-0.3603],[127.7564,-0.3554],[127.7506,-0.3466],[127.7485,-0.3407],[127.7503,-0.3336],[127.7478,-0.3274],[127.7446,-0.3269]],[[127.4073,-0.3404],[127.4061,-0.3386],[127.4103,-0.326],[127.4097,-0.3208],[127.4056,-0.3194],[127.4002,-0.3222],[127.3989,-0.3264],[127.3997,-0.3358],[127.4042,-0.3406],[127.4073,-0.3404]],[[127.5251,-0.3018],[127.5207,-0.3016],[127.5155,-0.3097],[127.5148,-0.3178],[127.5187,-0.3205],[127.5138,-0.3263],[127.5015,-0.3334],[127.4975,-0.3384],[127.4925,-0.3416],[127.4861,-0.3395],[127.4841,-0.3481],[127.4879,-0.3537],[127.4824,-0.355],[127.4824,-0.3599],[127.476,-0.3641],[127.4785,-0.3721],[127.475,-0.3761],[127.4793,-0.3842],[127.4782,-0.3891],[127.4744,-0.3919],[127.469,-0.4019],[127.4634,-0.4014],[127.4603,-0.4038],[127.4546,-0.4028],[127.4525,-0.4057],[127.4577,-0.4088],[127.4571,-0.4165],[127.4509,-0.4189],[127.4371,-0.4126],[127.4317,-0.4074],[127.4276,-0.4071],[127.4238,-0.3997],[127.4176,-0.3933],[127.418,-0.388],[127.415,-0.384],[127.4163,-0.3808],[127.4117,-0.3755],[127.4148,-0.3669],[127.412,-0.3637],[127.4125,-0.3584],[127.4073,-0.352],[127.4028,-0.3507],[127.4027,-0.3449],[127.3973,-0.3437],[127.3937,-0.3456],[127.3858,-0.3343],[127.3863,-0.3322],[127.3802,-0.3254],[127.3745,-0.3238],[127.3725,-0.317],[127.3653,-0.3178],[127.36,-0.3229],[127.3571,-0.3303],[127.3474,-0.3358],[127.3407,-0.3349],[127.3366,-0.3386],[127.3322,-0.3346],[127.321,-0.33],[127.3205,-0.3419],[127.3247,-0.3454],[127.3351,-0.3625],[127.3352,-0.3695],[127.3377,-0.3763],[127.3383,-0.3843],[127.3307,-0.3967],[127.3323,-0.3988],[127.3315,-0.4062],[127.3272,-0.4118],[127.3246,-0.4181],[127.3187,-0.4239],[127.3188,-0.4285],[127.3122,-0.4338],[127.3032,-0.4323],[127.2952,-0.4377],[127.2953,-0.4434],[127.2931,-0.4537],[127.2911,-0.4573],[127.2922,-0.4668],[127.2912,-0.471],[127.2951,-0.4766],[127.2952,-0.4817],[127.3005,-0.4846],[127.3021,-0.4882],[127.3086,-0.4961],[127.3071,-0.5037],[127.3048,-0.5054],[127.307,-0.5133],[127.31,-0.5167],[127.316,-0.5167],[127.3178,-0.5208],[127.3255,-0.5293],[127.3313,-0.5299],[127.3395,-0.5401],[127.3465,-0.5393],[127.3444,-0.5478],[127.3532,-0.5599],[127.3596,-0.5621],[127.3601,-0.5716],[127.3589,-0.5778],[127.3689,-0.5842],[127.3777,-0.5921],[127.3835,-0.5865],[127.3898,-0.5883],[127.3949,-0.596],[127.399,-0.5979],[127.4007,-0.6046],[127.4095,-0.6162],[127.4125,-0.619],[127.4163,-0.6154],[127.4148,-0.6094],[127.4212,-0.6075],[127.4293,-0.6102],[127.4309,-0.621],[127.4422,-0.6258],[127.4483,-0.6274],[127.4514,-0.6302],[127.4579,-0.6318],[127.4594,-0.6256],[127.4652,-0.6295],[127.4716,-0.6273],[127.4805,-0.6308],[127.4799,-0.6391],[127.4781,-0.6452],[127.4784,-0.6595],[127.4739,-0.6703],[127.4661,-0.678],[127.4611,-0.6891],[127.4553,-0.6919],[127.4531,-0.697],[127.4506,-0.7092],[127.4485,-0.7136],[127.4429,-0.7332],[127.4421,-0.7396],[127.4435,-0.7507],[127.4482,-0.7608],[127.4478,-0.7695],[127.453,-0.7794],[127.4604,-0.7886],[127.4597,-0.7933],[127.463,-0.8139],[127.4678,-0.8146],[127.4728,-0.8182],[127.4745,-0.8236],[127.4787,-0.8217],[127.4916,-0.8128],[127.4955,-0.8093],[127.4996,-0.8015],[127.5058,-0.7987],[127.5214,-0.796],[127.5279,-0.7929],[127.5322,-0.7891],[127.5397,-0.7866],[127.5464,-0.7859],[127.5548,-0.778],[127.5623,-0.777],[127.5662,-0.7735],[127.5738,-0.7701],[127.5933,-0.7689],[127.6119,-0.7624],[127.6217,-0.7509],[127.6246,-0.7443],[127.6301,-0.741],[127.6359,-0.7418],[127.6442,-0.7463],[127.6522,-0.7488],[127.6545,-0.7572],[127.6629,-0.7731],[127.665,-0.7754],[127.6646,-0.7813],[127.6552,-0.7923],[127.6597,-0.7964],[127.6581,-0.8012],[127.6621,-0.807],[127.6575,-0.8079],[127.6584,-0.8126],[127.6659,-0.8186],[127.666,-0.8222],[127.6705,-0.824],[127.6761,-0.82],[127.6822,-0.8219],[127.6849,-0.8261],[127.686,-0.833],[127.6821,-0.8368],[127.6881,-0.8426],[127.695,-0.8456],[127.7018,-0.8452],[127.708,-0.8492],[127.7131,-0.8505],[127.7178,-0.8546],[127.7241,-0.8528],[127.7298,-0.8494],[127.7361,-0.8537],[127.7487,-0.8579],[127.7524,-0.8624],[127.7434,-0.8645],[127.7381,-0.8614],[127.7347,-0.8645],[127.7315,-0.8633],[127.7279,-0.8665],[127.7322,-0.8712],[127.7489,-0.8692],[127.7526,-0.8699],[127.7583,-0.8659],[127.7637,-0.8663],[127.77,-0.8694],[127.7702,-0.8637],[127.7805,-0.859],[127.7892,-0.8642],[127.7969,-0.858],[127.8066,-0.856],[127.8088,-0.8567],[127.8189,-0.8511],[127.8272,-0.8549],[127.831,-0.8512],[127.8306,-0.8469],[127.8335,-0.8434],[127.8411,-0.8444],[127.8462,-0.8395],[127.8444,-0.8371],[127.847,-0.8319],[127.851,-0.8315],[127.8518,-0.8271],[127.858,-0.8251],[127.8704,-0.8269],[127.8717,-0.8211],[127.8803,-0.8114],[127.8762,-0.805],[127.8794,-0.796],[127.8838,-0.796],[127.8887,-0.8001],[127.8972,-0.7993],[127.8988,-0.7946],[127.8861,-0.7889],[127.8807,-0.7825],[127.879,-0.7767],[127.882,-0.7758],[127.8926,-0.7806],[127.9019,-0.7824],[127.905,-0.7799],[127.9024,-0.7763],[127.9014,-0.7693],[127.8966,-0.7695],[127.8908,-0.7638],[127.8921,-0.7598],[127.8825,-0.7514],[127.8771,-0.7597],[127.8722,-0.751],[127.876,-0.7393],[127.8764,-0.7312],[127.87,-0.73],[127.8696,-0.7251],[127.8733,-0.7199],[127.8633,-0.7093],[127.8568,-0.708],[127.8555,-0.7131],[127.8514,-0.7093],[127.8445,-0.7092],[127.844,-0.7056],[127.8374,-0.7007],[127.8257,-0.6986],[127.8179,-0.6901],[127.8056,-0.6839],[127.7973,-0.6786],[127.7892,-0.6828],[127.7847,-0.6796],[127.7747,-0.6821],[127.7668,-0.6872],[127.7649,-0.6919],[127.7607,-0.6934],[127.7544,-0.6918],[127.7437,-0.6861],[127.7377,-0.6866],[127.7305,-0.6918],[127.7221,-0.6922],[127.7143,-0.6908],[127.7086,-0.6947],[127.7051,-0.6992],[127.6993,-0.701],[127.6974,-0.705],[127.6914,-0.71],[127.6839,-0.7116],[127.6719,-0.71],[127.6684,-0.7054],[127.6555,-0.6929],[127.6523,-0.6839],[127.649,-0.6818],[127.6514,-0.6701],[127.6467,-0.6647],[127.652,-0.6602],[127.6554,-0.6469],[127.6514,-0.6443],[127.6466,-0.6382],[127.647,-0.6291],[127.6413,-0.6271],[127.6344,-0.6294],[127.626,-0.6286],[127.623,-0.6303],[127.6127,-0.6312],[127.6063,-0.6288],[127.6005,-0.6201],[127.5976,-0.6193],[127.6005,-0.6096],[127.5968,-0.5949],[127.6014,-0.5856],[127.6021,-0.5755],[127.6109,-0.5744],[127.6139,-0.5693],[127.6189,-0.566],[127.6248,-0.5575],[127.6294,-0.5487],[127.6358,-0.5417],[127.6376,-0.537],[127.6452,-0.5305],[127.6477,-0.5301],[127.654,-0.5223],[127.6603,-0.5208],[127.6639,-0.5171],[127.6646,-0.5106],[127.6722,-0.5007],[127.6757,-0.4991],[127.6743,-0.4873],[127.6776,-0.4809],[127.6843,-0.4753],[127.6866,-0.471],[127.6903,-0.4694],[127.6926,-0.4564],[127.6845,-0.4552],[127.6798,-0.4506],[127.6795,-0.446],[127.6605,-0.4403],[127.6579,-0.4381],[127.6589,-0.433],[127.6572,-0.426],[127.65,-0.423],[127.6522,-0.4177],[127.6479,-0.4138],[127.6399,-0.4105],[127.6357,-0.4115],[127.6282,-0.4104],[127.6269,-0.4149],[127.6212,-0.4161],[127.6177,-0.4134],[127.6206,-0.4064],[127.615,-0.4022],[127.6163,-0.3976],[127.6145,-0.3909],[127.6157,-0.3858],[127.6083,-0.3725],[127.6017,-0.3709],[127.599,-0.3761],[127.5938,-0.3745],[127.5957,-0.3701],[127.5932,-0.3655],[127.5927,-0.3587],[127.588,-0.356],[127.5871,-0.3505],[127.5788,-0.3473],[127.5766,-0.3416],[127.5811,-0.3377],[127.5814,-0.3336],[127.5728,-0.3236],[127.5696,-0.3221],[127.5689,-0.3155],[127.5564,-0.3147],[127.5471,-0.3152],[127.54,-0.3133],[127.5313,-0.3034],[127.5251,-0.3018]],[[127.548,-0.299],[127.5424,-0.3001],[127.5463,-0.3096],[127.5496,-0.3109],[127.5647,-0.3114],[127.5671,-0.304],[127.5633,-0.3004],[127.548,-0.299]],[[127.0616,-0.2757],[127.0576,-0.2786],[127.0559,-0.2846],[127.0574,-0.2909],[127.0614,-0.2938],[127.0672,-0.2943],[127.0693,-0.2911],[127.0669,-0.2833],[127.0613,-0.285],[127.0631,-0.2785],[127.0616,-0.2757]],[[127.2406,-0.2457],[127.2223,-0.2572],[127.2168,-0.2585],[127.2064,-0.2548],[127.1997,-0.2573],[127.1949,-0.2541],[127.1892,-0.2552],[127.1821,-0.2625],[127.1752,-0.2643],[127.1615,-0.2575],[127.1573,-0.2644],[127.1509,-0.2623],[127.1476,-0.2588],[127.1379,-0.2741],[127.1322,-0.2748],[127.1243,-0.2796],[127.1186,-0.2859],[127.1093,-0.2836],[127.1086,-0.2872],[127.1117,-0.2917],[127.1167,-0.2878],[127.1218,-0.293],[127.1196,-0.2989],[127.115,-0.3031],[127.123,-0.3076],[127.13,-0.3057],[127.1359,-0.3076],[127.1398,-0.3135],[127.1372,-0.316],[127.1394,-0.3216],[127.1334,-0.3235],[127.1293,-0.3369],[127.1359,-0.3417],[127.1333,-0.3579],[127.1355,-0.3608],[127.1313,-0.3679],[127.1272,-0.371],[127.1216,-0.3704],[127.1202,-0.3781],[127.1169,-0.3822],[127.1158,-0.3875],[127.1193,-0.3918],[127.1169,-0.3983],[127.1204,-0.4132],[127.1145,-0.4148],[127.1137,-0.4193],[127.1033,-0.4153],[127.1031,-0.4197],[127.1062,-0.4239],[127.1226,-0.4279],[127.126,-0.4372],[127.1226,-0.4421],[127.1288,-0.449],[127.1331,-0.45],[127.1507,-0.4624],[127.1482,-0.4667],[127.1527,-0.4684],[127.1545,-0.4741],[127.1489,-0.4765],[127.1385,-0.4748],[127.1209,-0.4732],[127.1203,-0.4798],[127.1174,-0.4868],[127.1205,-0.4943],[127.1199,-0.4998],[127.1294,-0.4974],[127.1375,-0.5018],[127.1331,-0.5049],[127.1252,-0.5066],[127.1229,-0.5097],[127.1275,-0.5174],[127.1336,-0.5146],[127.1365,-0.5173],[127.1382,-0.5228],[127.1482,-0.5265],[127.1509,-0.5241],[127.1551,-0.5266],[127.1604,-0.527],[127.1652,-0.5306],[127.172,-0.5305],[127.1711,-0.5256],[127.1756,-0.5235],[127.1795,-0.5243],[127.2008,-0.5195],[127.2081,-0.5147],[127.2153,-0.5183],[127.2212,-0.5148],[127.2237,-0.5112],[127.2287,-0.5122],[127.2314,-0.5051],[127.226,-0.496],[127.2338,-0.492],[127.2439,-0.4939],[127.2475,-0.4959],[127.257,-0.4947],[127.2631,-0.4925],[127.2648,-0.4876],[127.259,-0.4836],[127.2596,-0.4697],[127.2656,-0.467],[127.2655,-0.4644],[127.2778,-0.4564],[127.2788,-0.4513],[127.2754,-0.4469],[127.2761,-0.444],[127.273,-0.4382],[127.2674,-0.4314],[127.2658,-0.4215],[127.2672,-0.4181],[127.2625,-0.4124],[127.2634,-0.4062],[127.2747,-0.3988],[127.2869,-0.3996],[127.2873,-0.3907],[127.2841,-0.3882],[127.284,-0.3828],[127.2881,-0.3742],[127.2846,-0.3686],[127.2794,-0.3635],[127.2729,-0.355],[127.2661,-0.3502],[127.27,-0.3392],[127.2636,-0.3336],[127.2604,-0.3372],[127.2545,-0.3385],[127.2523,-0.3219],[127.2537,-0.3113],[127.2608,-0.305],[127.2613,-0.3005],[127.2583,-0.2987],[127.2571,-0.292],[127.27,-0.2889],[127.281,-0.2905],[127.2831,-0.2942],[127.2927,-0.2909],[127.2995,-0.2873],[127.3034,-0.2868],[127.303,-0.2813],[127.3059,-0.2802],[127.3053,-0.2703],[127.3004,-0.2686],[127.2929,-0.2705],[127.2895,-0.2762],[127.2823,-0.2806],[127.272,-0.2806],[127.2641,-0.2773],[127.2612,-0.2796],[127.2581,-0.2726],[127.2516,-0.2639],[127.2494,-0.2553],[127.2409,-0.2528],[127.2457,-0.2474],[127.2406,-0.2457]],[[127.0614,-0.2284],[127.0565,-0.2313],[127.0553,-0.2371],[127.0524,-0.2416],[127.0463,-0.2406],[127.0432,-0.2419],[127.0441,-0.2499],[127.0396,-0.2552],[127.0429,-0.2584],[127.0432,-0.2647],[127.0473,-0.2699],[127.0427,-0.2749],[127.0391,-0.274],[127.039,-0.2622],[127.033,-0.2601],[127.0284,-0.2562],[127.0226,-0.2614],[127.0276,-0.2687],[127.0322,-0.27],[127.0327,-0.2756],[127.0278,-0.2804],[127.0363,-0.2874],[127.0433,-0.2804],[127.0518,-0.2806],[127.0563,-0.2743],[127.0638,-0.2733],[127.0693,-0.2708],[127.0828,-0.262],[127.091,-0.2589],[127.0897,-0.2515],[127.0903,-0.2447],[127.0842,-0.2385],[127.0822,-0.2423],[127.0777,-0.2405],[127.0736,-0.2334],[127.0614,-0.2284]],[[127.3129,-0.2283],[127.3083,-0.2265],[127.3004,-0.2283],[127.299,-0.2305],[127.3029,-0.2388],[127.3069,-0.2422],[127.3093,-0.2354],[127.3151,-0.2366],[127.3161,-0.233],[127.3129,-0.2283]],[[127.1355,-0.1779],[127.1281,-0.1785],[127.1249,-0.1858],[127.1222,-0.1868],[127.1129,-0.2018],[127.1127,-0.2075],[127.1096,-0.213],[127.1052,-0.2164],[127.094,-0.2116],[127.0891,-0.2233],[127.088,-0.231],[127.0931,-0.2277],[127.0974,-0.2287],[127.0979,-0.2343],[127.0963,-0.2391],[127.0925,-0.2402],[127.0946,-0.2461],[127.0912,-0.2512],[127.0922,-0.2544],[127.109,-0.2522],[127.1141,-0.243],[127.1217,-0.2407],[127.1267,-0.2353],[127.1323,-0.2241],[127.1307,-0.2148],[127.1317,-0.2117],[127.1274,-0.2051],[127.1336,-0.2041],[127.1413,-0.1977],[127.1434,-0.1931],[127.1507,-0.1869],[127.1448,-0.1803],[127.1355,-0.1779]],[[127.4427,-0.0865],[127.4378,-0.0829],[127.4342,-0.0864],[127.4391,-0.0894],[127.443,-0.0943],[127.447,-0.0936],[127.4477,-0.0887],[127.4427,-0.0865]],[[127.4264,-0.0853],[127.427,-0.0811],[127.4239,-0.0764],[127.42,-0.0798],[127.4232,-0.0855],[127.4264,-0.0853]],[[127.269,-0.0718],[127.2566,-0.0778],[127.2499,-0.0777],[127.2488,-0.0833],[127.2403,-0.0781],[127.2351,-0.0855],[127.2365,-0.0886],[127.2298,-0.0918],[127.2293,-0.1009],[127.2207,-0.1055],[127.2118,-0.1152],[127.2079,-0.1167],[127.1997,-0.115],[127.1983,-0.1203],[127.2064,-0.1244],[127.2202,-0.1377],[127.2251,-0.1366],[127.2326,-0.1398],[127.2352,-0.1351],[127.2408,-0.134],[127.2466,-0.1272],[127.2545,-0.1245],[127.2614,-0.126],[127.2664,-0.115],[127.2682,-0.096],[127.2743,-0.0837],[127.269,-0.0718]],[[127.4287,-0.0606],[127.4208,-0.0589],[127.4193,-0.0622],[127.421,-0.0696],[127.4332,-0.0749],[127.4376,-0.0729],[127.4378,-0.0686],[127.4347,-0.0631],[127.4287,-0.0606]],[[127.4717,-0.0441],[127.4692,-0.0409],[127.4647,-0.0473],[127.4635,-0.057],[127.4687,-0.0593],[127.4681,-0.0519],[127.4724,-0.0472],[127.4717,-0.0441]],[[127.1987,-0.0318],[127.194,-0.0266],[127.1911,-0.0286],[127.1954,-0.0348],[127.1987,-0.0318]],[[127.2519,-0.0246],[127.2435,-0.0273],[127.2443,-0.033],[127.2484,-0.0333],[127.251,-0.0301],[127.2519,-0.0246]],[[127.4178,-0.0175],[127.4136,-0.0177],[127.4126,-0.027],[127.4089,-0.0365],[127.4071,-0.0458],[127.4066,-0.0546],[127.4027,-0.0722],[127.4042,-0.0818],[127.4031,-0.0886],[127.4106,-0.1043],[127.4134,-0.1008],[127.4108,-0.0962],[127.412,-0.0871],[127.4161,-0.0824],[127.4154,-0.0741],[127.4166,-0.0721],[127.4166,-0.0558],[127.4213,-0.0565],[127.4227,-0.0521],[127.4284,-0.0479],[127.4295,-0.0427],[127.4262,-0.0382],[127.4234,-0.0282],[127.4243,-0.0223],[127.4212,-0.0165],[127.4178,-0.0175]],[[127.1751,-0.0124],[127.1676,-0.0136],[127.1649,-0.017],[127.1739,-0.022],[127.1745,-0.0193],[127.1837,-0.0175],[127.1938,-0.019],[127.1915,-0.0135],[127.1751,-0.0124]],[[127.4297,-0.0187],[127.4311,-0.0168],[127.4259,-0.0119],[127.4231,-0.0139],[127.4253,-0.0189],[127.4297,-0.0187]],[[127.4277,0.0091],[127.4223,0.0074],[127.4174,-0.0009],[127.4231,-0.0069],[127.4257,-0.0033],[127.4259,0.002],[127.4298,0.0053],[127.4277,0.0091]],[[127.2259,0.0365],[127.2218,0.0366],[127.217,0.0312],[127.2197,0.025],[127.2231,0.0249],[127.2265,0.0211],[127.2303,0.0243],[127.2259,0.0365]],[[127.4365,0.1304],[127.4296,0.1347],[127.4243,0.1313],[127.4251,0.122],[127.4237,0.1075],[127.4151,0.0955],[127.4151,0.0842],[127.4125,0.0753],[127.4115,0.068],[127.4136,0.056],[127.409,0.04],[127.4094,0.0321],[127.4069,0.0227],[127.4041,0.0195],[127.405,0.0105],[127.4104,0.0089],[127.414,0.0109],[127.4231,0.023],[127.4302,0.0221],[127.4366,0.0108],[127.442,0.0101],[127.4427,0.0053],[127.4394,0.0032],[127.4324,-0.0058],[127.4397,-0.0127],[127.4418,-0.0175],[127.4464,-0.0217],[127.4537,-0.0317],[127.4554,-0.0379],[127.4589,-0.0407],[127.4679,-0.0403],[127.465,-0.0153],[127.4654,-0.0015],[127.4596,0.0022],[127.4575,0.0074],[127.4605,0.0179],[127.4601,0.0237],[127.4694,0.0324],[127.4697,0.0347],[127.46,0.0472],[127.4586,0.053],[127.4651,0.0595],[127.4656,0.0737],[127.4598,0.0731],[127.4546,0.0692],[127.4491,0.0696],[127.4461,0.0763],[127.4437,0.0861],[127.4431,0.0977],[127.4407,0.102],[127.4418,0.1146],[127.4436,0.1178],[127.453,0.1263],[127.4584,0.1298],[127.4565,0.1331],[127.4365,0.1304]],[[127.215,0.1436],[127.2094,0.1419],[127.208,0.1383],[127.2128,0.1335],[127.2198,0.1326],[127.2228,0.1368],[127.2205,0.1425],[127.215,0.1436]],[[127.1247,0.1433],[127.1183,0.1486],[127.1118,0.1439],[127.113,0.1334],[127.1196,0.129],[127.1252,0.128],[127.1278,0.1308],[127.1353,0.128],[127.135,0.1365],[127.1289,0.1426],[127.1247,0.1433]],[[127.433,0.1447],[127.4335,0.1507],[127.4297,0.1526],[127.429,0.1447],[127.433,0.1447]],[[127.1553,0.162],[127.1462,0.1586],[127.1449,0.1513],[127.1469,0.1501],[127.1538,0.157],[127.1553,0.162]],[[127.6997,-0.01],[127.7009,-0.0181],[127.6943,-0.0286],[127.6975,-0.041],[127.6981,-0.053],[127.6967,-0.0603],[127.6984,-0.076],[127.6969,-0.0903],[127.6998,-0.0999],[127.6972,-0.1036],[127.6893,-0.109],[127.69,-0.1167],[127.6859,-0.1262],[127.6876,-0.1338],[127.6862,-0.1406],[127.6825,-0.1469],[127.6804,-0.1534],[127.6814,-0.1583],[127.6758,-0.1669],[127.6759,-0.1735],[127.6679,-0.1878],[127.6691,-0.1941],[127.6668,-0.2029],[127.6611,-0.2085],[127.6617,-0.2171],[127.6646,-0.2228],[127.671,-0.2228],[127.6754,-0.2356],[127.6795,-0.2389],[127.6801,-0.2429],[127.6893,-0.2476],[127.6896,-0.2534],[127.6871,-0.2613],[127.6868,-0.2697],[127.6937,-0.2724],[127.7025,-0.2776],[127.7048,-0.2769],[127.7116,-0.2858],[127.7138,-0.291],[127.7227,-0.2964],[127.7311,-0.3032],[127.7348,-0.3034],[127.7455,-0.3075],[127.7474,-0.3139],[127.751,-0.3141],[127.7503,-0.3198],[127.7561,-0.3204],[127.7669,-0.3258],[127.7795,-0.3286],[127.7858,-0.329],[127.7888,-0.336],[127.7988,-0.3397],[127.804,-0.34],[127.8112,-0.3368],[127.8172,-0.3373],[127.8256,-0.3433],[127.8265,-0.3474],[127.833,-0.3519],[127.8377,-0.3517],[127.8449,-0.3561],[127.8457,-0.3605],[127.8505,-0.3641],[127.8586,-0.3639],[127.8644,-0.366],[127.8687,-0.3803],[127.8758,-0.382],[127.8766,-0.3865],[127.8812,-0.3896],[127.8807,-0.3979],[127.8836,-0.4104],[127.8908,-0.422],[127.8951,-0.4243],[127.8957,-0.4304],[127.9003,-0.4344],[127.9003,-0.4423],[127.9052,-0.4461],[127.9061,-0.4736],[127.9135,-0.4816],[127.9191,-0.4841],[127.9197,-0.4869],[127.9262,-0.4952],[127.9319,-0.4954],[127.9336,-0.5007],[127.9384,-0.5036],[127.9412,-0.511],[127.9412,-0.5158],[127.9459,-0.5233],[127.9466,-0.5305],[127.9509,-0.5336],[127.9507,-0.5391],[127.9535,-0.5409],[127.9553,-0.5593],[127.9602,-0.5704],[127.9648,-0.5782],[127.969,-0.5802],[127.9704,-0.5846],[127.9749,-0.5869],[127.9752,-0.5943],[127.9807,-0.603],[127.9882,-0.6113],[127.9892,-0.6175],[127.9925,-0.6261],[127.9957,-0.6305],[127.9937,-0.6356],[127.9929,-0.6441],[127.9939,-0.6476],[127.9982,-0.6515],[127.9964,-0.6569],[128.0021,-0.6613],[128.0024,-0.6676],[128.0091,-0.6724],[128.012,-0.6786],[128.0179,-0.6824],[128.0196,-0.6864],[128.0303,-0.6928],[128.0354,-0.699],[128.0435,-0.702],[128.0531,-0.7071],[128.0614,-0.7129],[128.0652,-0.7177],[128.0691,-0.7181],[128.0776,-0.7218],[128.086,-0.7229],[128.1033,-0.7307],[128.1178,-0.7364],[128.1321,-0.738],[128.1476,-0.745],[128.1517,-0.7491],[128.1552,-0.7479],[128.1635,-0.7511],[128.1665,-0.7502],[128.1775,-0.7564],[128.1892,-0.7615],[128.1999,-0.7624],[128.21,-0.7673],[128.2169,-0.7724],[128.2309,-0.7688],[128.24,-0.7699],[128.2389,-0.7726],[128.2303,-0.7709],[128.227,-0.7732],[128.2298,-0.7795],[128.2335,-0.7836],[128.2412,-0.788],[128.2453,-0.7876],[128.2483,-0.7935],[128.2532,-0.7986],[128.2569,-0.7978],[128.2585,-0.8044],[128.2675,-0.8173],[128.2676,-0.8209],[128.2739,-0.8271],[128.2799,-0.826],[128.2828,-0.8329],[128.2822,-0.8383],[128.2791,-0.8386],[128.2692,-0.831],[128.2538,-0.8216],[128.2482,-0.8203],[128.2419,-0.8223],[128.2407,-0.826],[128.2295,-0.8284],[128.2255,-0.8327],[128.2257,-0.8393],[128.2285,-0.8452],[128.2428,-0.8559],[128.2528,-0.861],[128.2603,-0.8633],[128.262,-0.8667],[128.2686,-0.8672],[128.2772,-0.8696],[128.2806,-0.8754],[128.2905,-0.8811],[128.3059,-0.8803],[128.3119,-0.8742],[128.3142,-0.8643],[128.3171,-0.8643],[128.3236,-0.8684],[128.3284,-0.8742],[128.3349,-0.8786],[128.3408,-0.8809],[128.3467,-0.8868],[128.3522,-0.8895],[128.3541,-0.8839],[128.3615,-0.8795],[128.3686,-0.8808],[128.3741,-0.8785],[128.3951,-0.8827],[128.4058,-0.8892],[128.4095,-0.8937],[128.4206,-0.8962],[128.4243,-0.9014],[128.4385,-0.9031],[128.4443,-0.9068],[128.4509,-0.9142],[128.4569,-0.9103],[128.4559,-0.9022],[128.4506,-0.8962],[128.4379,-0.8861],[128.4355,-0.8821],[128.4301,-0.8785],[128.4187,-0.8757],[128.382,-0.8534],[128.3735,-0.8463],[128.3635,-0.8361],[128.3524,-0.8206],[128.3435,-0.8128],[128.3353,-0.8101],[128.3244,-0.8017],[128.3197,-0.795],[128.311,-0.7902],[128.3079,-0.7862],[128.3073,-0.7772],[128.3035,-0.7701],[128.2982,-0.7641],[128.2862,-0.754],[128.2765,-0.7479],[128.2656,-0.7422],[128.2554,-0.7324],[128.2481,-0.7299],[128.238,-0.7213],[128.2338,-0.7205],[128.2339,-0.7166],[128.2297,-0.7142],[128.2257,-0.7087],[128.2219,-0.7073],[128.2097,-0.6918],[128.2098,-0.6813],[128.205,-0.6775],[128.1985,-0.67],[128.1933,-0.6586],[128.1922,-0.6536],[128.1891,-0.6505],[128.1858,-0.6365],[128.1859,-0.6296],[128.18,-0.6236],[128.1683,-0.6075],[128.1545,-0.5863],[128.1494,-0.5746],[128.1339,-0.5517],[128.1262,-0.5387],[128.1206,-0.5356],[128.1104,-0.5181],[128.1048,-0.5117],[128.1026,-0.512],[128.0963,-0.501],[128.0852,-0.4787],[128.0833,-0.4673],[128.0794,-0.4577],[128.0651,-0.4383],[128.0645,-0.4264],[128.0601,-0.4245],[128.0564,-0.4176],[128.0516,-0.4193],[128.0477,-0.4129],[128.0382,-0.3812],[128.0312,-0.3647],[128.0229,-0.34],[128.016,-0.3226],[128.0119,-0.3212],[128.0058,-0.3122],[128.0026,-0.3013],[127.9983,-0.2933],[127.9914,-0.2853],[127.9864,-0.273],[127.9826,-0.2658],[127.9809,-0.2524],[127.979,-0.2486],[127.9775,-0.2315],[127.9719,-0.2119],[127.9715,-0.1998],[127.97,-0.1972],[127.9683,-0.1783],[127.9655,-0.1636],[127.9582,-0.1508],[127.953,-0.1386],[127.9488,-0.1263],[127.9462,-0.111],[127.9382,-0.0972],[127.932,-0.0846],[127.927,-0.0799],[127.9153,-0.0621],[127.9111,-0.0569],[127.9085,-0.0476],[127.9071,-0.0383],[127.9037,-0.0311],[127.9029,-0.0257],[127.8951,-0.0193],[127.8927,-0.014],[127.8897,0.0007],[127.8887,0.0224],[127.8876,0.0313],[127.8909,0.045],[127.8942,0.0493],[127.8929,0.0561],[127.8903,0.0573],[127.8951,0.0665],[127.891,0.0687],[127.8872,0.0775],[127.888,0.0832],[127.8913,0.0895],[127.8983,0.0988],[127.9056,0.1059],[127.9098,0.1042],[127.9253,0.1081],[127.9257,0.1211],[127.9239,0.1346],[127.9248,0.1437],[127.9229,0.1512],[127.9228,0.1615],[127.9215,0.1662],[127.9216,0.1767]],[[127.4172,0.3746],[127.4017,0.3725],[127.3982,0.3697],[127.3874,0.3679],[127.3815,0.3646],[127.3736,0.3623],[127.3707,0.3586],[127.3645,0.356],[127.3592,0.3491],[127.3458,0.3357],[127.3433,0.328],[127.348,0.3132],[127.3537,0.3045],[127.3617,0.2972],[127.3645,0.2962],[127.374,0.2857],[127.3847,0.2775],[127.3946,0.2751],[127.4066,0.2786],[127.4137,0.2792],[127.4198,0.2832],[127.4299,0.2916],[127.4299,0.3012],[127.4327,0.3064],[127.4384,0.3115],[127.4435,0.3243],[127.4387,0.331],[127.4429,0.3366],[127.4392,0.3435],[127.4369,0.3511],[127.4253,0.3628],[127.4172,0.3746]]]}},{"type":"Feature","properties":{"mhid":"1332:473","alt_name":"KABUPATEN HALMAHERA UTARA","latitude":1.73194,"longitude":128.00778,"sample_value":641},"geometry":{"type":"MultiLineString","coordinates":[[[128.0242,1.2998],[128.022,1.2996],[128.0139,1.2912],[128.0083,1.2884],[128.0068,1.2811],[128.0178,1.2822],[128.0215,1.2882],[128.028,1.2955],[128.0242,1.2998]],[[128.0472,1.5574],[128.0426,1.5623],[128.0411,1.5581],[128.0472,1.5574]],[[128.0587,1.572],[128.052,1.581],[128.0495,1.5821],[128.0469,1.5753],[128.0495,1.5664],[128.0521,1.5632],[128.0509,1.557],[128.0567,1.5547],[128.0674,1.5647],[128.0666,1.5669],[128.0587,1.572]],[[128.0518,1.6779],[128.0481,1.6728],[128.0563,1.6695],[128.0541,1.6773],[128.0518,1.6779]],[[128.0262,1.7324],[128.0227,1.7333],[128.0208,1.7276],[128.0273,1.7261],[128.0262,1.7324]],[[128.0727,1.729],[128.0715,1.7348],[128.0727,1.7432],[128.0637,1.7416],[128.0621,1.7347],[128.0664,1.7251],[128.0676,1.7162],[128.0702,1.7148],[128.0749,1.7175],[128.0727,1.729]],[[128.0401,1.7544],[128.041,1.749],[128.0514,1.7408],[128.0529,1.7462],[128.05,1.7527],[128.0401,1.7544]],[[128.0087,1.7873],[128.0062,1.7907],[127.9982,1.7967],[127.9958,1.791],[128.0039,1.7825],[128.0037,1.778],[128.0107,1.7693],[128.0168,1.7676],[128.0195,1.7717],[128.0114,1.7824],[128.0087,1.7873]],[[127.7743,2.1287],[127.7666,2.1217],[127.7681,2.1148],[127.7746,2.1147],[127.7753,2.1105],[127.7844,2.1087],[127.7857,2.1142],[127.7836,2.1173],[127.786,2.1218],[127.7743,2.1287]],[[127.7226,2.1932],[127.723,2.1862],[127.7257,2.1816],[127.7322,2.1762],[127.742,2.1706],[127.7448,2.1705],[127.7613,2.1633],[127.762,2.1596],[127.7663,2.1554],[127.7721,2.1525],[127.7755,2.1624],[127.7755,2.1672],[127.7694,2.17],[127.7672,2.1762],[127.7645,2.179],[127.7644,2.1843],[127.7553,2.185],[127.751,2.1905],[127.7437,2.1912],[127.742,2.1839],[127.7385,2.1888],[127.7226,2.1932]],[[127.7663,2.2106],[127.7562,2.2036],[127.7617,2.2022],[127.7686,2.1978],[127.7745,2.2031],[127.7738,2.2079],[127.7663,2.2106]],[[127.6939,0.8789],[127.6806,0.8769],[127.6753,0.8836],[127.6693,0.8805],[127.6673,0.8739],[127.6756,0.8729],[127.6803,0.8682],[127.67,0.8651],[127.6615,0.872],[127.6591,0.8715],[127.6528,0.8762],[127.6646,0.881],[127.6637,0.8847],[127.6589,0.8886],[127.6573,0.8955],[127.6534,0.8975],[127.6537,0.9057],[127.6482,0.9124],[127.6498,0.9171],[127.6342,0.9151],[127.6313,0.9228],[127.6384,0.9295],[127.6389,0.9345],[127.6361,0.9371],[127.6382,0.9413],[127.6314,0.9422],[127.6301,0.9501],[127.632,0.9517],[127.6298,0.9654],[127.6262,0.9723],[127.6314,0.9763],[127.6295,0.9841],[127.635,0.9906],[127.6406,0.9923],[127.6487,1.0022],[127.647,1.0084],[127.652,1.018],[127.6551,1.0269],[127.6673,1.0305],[127.6742,1.036],[127.684,1.0372],[127.6864,1.039],[127.6991,1.0387],[127.7095,1.0422],[127.7219,1.0505],[127.7237,1.0533],[127.7353,1.0619],[127.7455,1.0628],[127.7585,1.0688],[127.7625,1.0777],[127.771,1.0871],[127.7747,1.0881],[127.7859,1.0988],[127.7883,1.0993],[127.7938,1.1087],[127.7976,1.109],[127.8007,1.1055],[127.8048,1.1094],[127.805,1.115],[127.8086,1.1215],[127.8154,1.1298],[127.8155,1.1343],[127.8241,1.1423],[127.8252,1.1469],[127.8309,1.1484],[127.8463,1.1483],[127.8477,1.1532],[127.8563,1.1532],[127.875,1.1497],[127.8804,1.1537],[127.8882,1.1501],[127.8961,1.1521],[127.9034,1.1502],[127.9024,1.1722],[127.9081,1.185],[127.9146,1.1972],[127.914,1.2064],[127.9151,1.2191],[127.9194,1.2276],[127.9271,1.2349],[127.9318,1.2342],[127.935,1.237],[127.945,1.242],[127.947,1.2521],[127.9522,1.2603],[127.958,1.2603],[127.9618,1.2625],[127.9685,1.2727],[127.9725,1.2758],[127.9742,1.2821],[127.9709,1.2877],[127.9728,1.2981],[127.9787,1.3072],[127.9848,1.3097],[127.9889,1.3072],[127.9994,1.3076],[128.0096,1.3122],[128.0102,1.3154],[128.0054,1.3226],[128.0009,1.3253],[127.9941,1.3319],[127.992,1.3393],[127.9929,1.3432],[127.99,1.3572],[127.9879,1.3633],[127.9893,1.3719],[127.9888,1.3786],[127.9949,1.392],[128.0007,1.3957],[128.0121,1.3945],[128.0147,1.3999],[128.0225,1.4016],[128.0241,1.4114],[128.0115,1.4214],[128.0096,1.4257],[128.0125,1.4303],[128.0144,1.4385],[128.0189,1.4472],[128.0219,1.4658],[128.0242,1.4686],[128.023,1.489],[128.0269,1.5049],[128.0265,1.5128],[128.0284,1.5143],[128.0353,1.5304],[128.03,1.5453],[128.0246,1.5482],[128.0246,1.551],[128.0305,1.5527],[128.0345,1.5593],[128.0314,1.5647],[128.0355,1.5655],[128.036,1.5707],[128.0331,1.5759],[128.0374,1.583],[128.0344,1.5894],[128.0268,1.5926],[128.0264,1.5859],[128.0232,1.5862],[128.0172,1.5933],[128.0097,1.5947],[128.0071,1.5981],[128.0034,1.5962],[127.9985,1.6006],[128.0003,1.6066],[127.9916,1.6077],[127.9877,1.6147],[127.9885,1.6219],[127.9907,1.6247],[127.9971,1.6218],[127.9998,1.624],[127.9971,1.6346],[127.9986,1.6391],[127.9961,1.6416],[127.9968,1.6502],[127.9955,1.6551],[127.9913,1.6625],[127.9935,1.6682],[127.9967,1.6706],[128.0011,1.6693],[128.0073,1.6772],[128.0109,1.6833],[128.0205,1.6876],[128.0219,1.6914],[128.022,1.7036],[128.0168,1.7136],[128.0148,1.7217],[128.0098,1.7326],[128.0119,1.7375],[128.0052,1.7418],[127.9973,1.7511],[127.9917,1.7624],[127.9891,1.7615],[127.98,1.7675],[127.9743,1.7673],[127.9669,1.7712],[127.9607,1.7687],[127.9563,1.7779],[127.9565,1.7874],[127.9525,1.7936],[127.9486,1.7923],[127.944,1.7946],[127.9346,1.8054],[127.9287,1.8097],[127.92,1.8076],[127.9164,1.8053],[127.9091,1.804],[127.8984,1.7975],[127.8883,1.797],[127.8837,1.7996],[127.8836,1.807],[127.8782,1.8031],[127.8701,1.8098],[127.8627,1.8052],[127.8551,1.814],[127.8585,1.8179],[127.8572,1.8214],[127.8485,1.8196],[127.8458,1.8236],[127.8432,1.8345],[127.8417,1.8482],[127.8451,1.8514],[127.8533,1.8667],[127.8509,1.875],[127.8495,1.8896],[127.8497,1.9021],[127.8484,1.9095],[127.8516,1.9241],[127.8534,1.9269],[127.8616,1.9305],[127.8669,1.9347],[127.8734,1.9374],[127.8746,1.9404],[127.8839,1.9498],[127.8921,1.9542],[127.899,1.9547],[127.9197,1.9609],[127.9256,1.9673],[127.9294,1.9789],[127.9353,1.9816],[127.9388,1.985],[127.948,1.9881],[127.9516,1.9909],[127.9514,2.0038],[127.9534,2.0104],[127.9515,2.0186],[127.9481,2.0247],[127.9508,2.0287],[127.9547,2.0404],[127.9624,2.0479],[127.9659,2.0495],[127.9702,2.0633],[127.9733,2.066],[127.9794,2.0678],[127.9909,2.08],[127.9973,2.0855],[128.0013,2.092],[128.0138,2.1018],[128.0243,2.1137],[128.0325,2.1245],[128.0347,2.1323],[128.0451,2.1467],[128.053,2.1559],[128.0551,2.1616],[128.0638,2.1707],[128.067,2.1802],[128.069,2.1918],[128.0665,2.1982],[128.0536,2.201],[128.0191,2.1964],[128.0084,2.1913],[127.9972,2.1878],[127.9853,2.1805],[127.9799,2.184],[127.9816,2.188],[127.9805,2.1976],[127.9786,2.2004],[127.9773,2.2086],[127.97,2.2147],[127.9566,2.2216],[127.9565,2.2144],[127.9599,2.2099],[127.9608,2.2033],[127.9581,2.1951],[127.9487,2.1909],[127.9425,2.1858],[127.9371,2.1854],[127.9334,2.1814],[127.9305,2.1751],[127.9279,2.1611],[127.9208,2.1574],[127.9119,2.1582],[127.9101,2.1557],[127.9101,2.1481],[127.9048,2.1445],[127.903,2.138],[127.899,2.134],[127.8903,2.1329],[127.8865,2.1282],[127.8852,2.122],[127.8808,2.1207],[127.8708,2.1131],[127.8687,2.1079],[127.8628,2.1039],[127.8537,2.1029],[127.8505,2.1004],[127.8502,2.096],[127.8388,2.0922],[127.8372,2.083],[127.8291,2.0754],[127.8249,2.0686],[127.8166,2.0654],[127.8139,2.0561],[127.8066,2.0511],[127.8031,2.042],[127.7979,2.0389],[127.7967,2.0346],[127.7922,2.0278],[127.7881,2.0244],[127.7884,2.017],[127.7856,2.0093],[127.7745,1.999],[127.7711,1.9982],[127.7627,1.9885],[127.763,1.9856],[127.7579,1.9784],[127.7541,1.9775],[127.7498,1.9687],[127.7449,1.9678],[127.7439,1.9589]],[[127.7783,2.2945],[127.7752,2.2939],[127.774,2.2888],[127.7704,2.2833],[127.7641,2.2768],[127.763,2.2725],[127.7579,2.2669],[127.7569,2.2634],[127.7607,2.2574],[127.7652,2.2556],[127.7697,2.2564],[127.7713,2.246],[127.7737,2.2407],[127.7717,2.2318],[127.773,2.2197],[127.7925,2.2169],[127.7961,2.2242],[127.804,2.2229],[127.8136,2.2269],[127.817,2.2302],[127.8184,2.2377],[127.8234,2.2436],[127.8193,2.2487],[127.8193,2.2541],[127.8243,2.2604],[127.8252,2.2699],[127.8151,2.2723],[127.8132,2.2714],[127.8021,2.2722],[127.7964,2.275],[127.7897,2.2743],[127.7792,2.2755],[127.7778,2.2775],[127.7812,2.2853],[127.7808,2.2911],[127.7783,2.2945]]]}},{"type":"Feature","properties":{"mhid":"1332:474","alt_name":"KABUPATEN HALMAHERA TIMUR","latitude":1.33517,"longitude":128.48627,"sample_value":362},"geometry":{"type":"MultiLineString","coordinates":[[[128.6563,0.5593],[128.6498,0.5568],[128.6553,0.5538],[128.6563,0.5593]],[[128.6289,0.5671],[128.6198,0.5666],[128.6209,0.5613],[128.6309,0.56],[128.6289,0.5671]],[[128.648,0.575],[128.6414,0.5753],[128.6358,0.5701],[128.6388,0.5636],[128.6482,0.5616],[128.656,0.5635],[128.6624,0.5628],[128.6673,0.5688],[128.6631,0.5746],[128.6569,0.5754],[128.6506,0.5731],[128.648,0.575]],[[128.6398,0.6338],[128.6326,0.6311],[128.6368,0.625],[128.6444,0.6217],[128.6483,0.623],[128.6398,0.6338]],[[128.522,0.6243],[128.5292,0.6287],[128.5403,0.6333],[128.5403,0.6378],[128.5328,0.6388],[128.5199,0.6293],[128.522,0.6243]],[[128.3208,0.8432],[128.3192,0.8395],[128.3213,0.8338],[128.322,0.8262],[128.3268,0.8245],[128.3325,0.8313],[128.3301,0.8361],[128.325,0.8383],[128.3208,0.8432]],[[127.9298,0.9954],[127.9266,0.9913],[127.9311,0.9893],[127.9333,0.9925],[127.9298,0.9954]],[[128.6791,0.5061],[128.6813,0.5078],[128.6878,0.5197],[128.6897,0.5292],[128.684,0.5437],[128.6789,0.5499],[128.6637,0.5484],[128.6587,0.5443],[128.6534,0.5441],[128.6471,0.5476],[128.6479,0.5509],[128.6445,0.554],[128.6373,0.5533],[128.6303,0.5567],[128.6235,0.5582],[128.6189,0.5551],[128.6131,0.5556],[128.6087,0.559],[128.5847,0.562],[128.572,0.5616],[128.5578,0.5689],[128.5476,0.5772],[128.5338,0.584],[128.5233,0.5917],[128.5186,0.5889],[128.5135,0.5923],[128.5005,0.595],[128.4957,0.5944],[128.4901,0.5966],[128.4833,0.5969],[128.4773,0.6004],[128.471,0.607],[128.4534,0.6186],[128.4403,0.6292],[128.4302,0.6333],[128.4165,0.634],[128.4019,0.6401],[128.3969,0.6407],[128.3879,0.6447],[128.3819,0.6437],[128.3838,0.64],[128.38,0.6352],[128.3777,0.6401],[128.3669,0.6438],[128.3654,0.6401],[128.3519,0.6425],[128.3521,0.6476],[128.3591,0.6502],[128.3555,0.6557],[128.3481,0.656],[128.346,0.6544],[128.3378,0.6588],[128.3321,0.6572],[128.3284,0.6534],[128.3197,0.6554],[128.3124,0.6602],[128.3104,0.6658],[128.3025,0.6823],[128.2956,0.6946],[128.2954,0.7012],[128.2899,0.7023],[128.2798,0.715],[128.2666,0.7294],[128.2611,0.7376],[128.2542,0.7415],[128.2497,0.7388],[128.2479,0.7346],[128.2489,0.7286],[128.2362,0.7384],[128.2341,0.7442],[128.2225,0.7544],[128.2184,0.756],[128.2113,0.7683],[128.2094,0.7784],[128.199,0.7882],[128.2033,0.7957],[128.2053,0.8073],[128.2163,0.8078],[128.2198,0.8124],[128.2398,0.8161],[128.2409,0.8201],[128.2472,0.8282],[128.2458,0.8341],[128.2501,0.8404],[128.2608,0.8379],[128.264,0.8345],[128.2685,0.8338],[128.2732,0.8272],[128.2822,0.8202],[128.2865,0.82],[128.2914,0.8234],[128.2954,0.8182],[128.3116,0.8157],[128.3132,0.8183],[128.3136,0.8266],[128.3102,0.831],[128.2986,0.8287],[128.2948,0.8334],[128.3018,0.8394],[128.2984,0.8441],[128.2927,0.8441],[128.2911,0.8477],[128.2843,0.8504],[128.2813,0.8533],[128.2821,0.8623],[128.2801,0.8668],[128.2884,0.876],[128.2954,0.88],[128.2991,0.8886],[128.3036,0.8931],[128.312,0.8949],[128.3177,0.8978],[128.3242,0.9039],[128.3303,0.9069],[128.3347,0.9119],[128.3486,0.909],[128.3559,0.9132],[128.3632,0.9123],[128.3728,0.9139],[128.3838,0.9109],[128.3861,0.9117],[128.3897,0.9182],[128.3939,0.9215],[128.4057,0.9206],[128.4128,0.9298],[128.4194,0.9315],[128.4244,0.9294],[128.4355,0.9287],[128.4417,0.9296],[128.447,0.9325],[128.4559,0.9443],[128.4685,0.9528],[128.48,0.9566],[128.4842,0.9592],[128.4918,0.9609],[128.5009,0.9694],[128.5096,0.9728],[128.5196,0.9705],[128.5227,0.9686],[128.5329,0.9706],[128.5394,0.976],[128.548,0.9913],[128.5522,0.996],[128.5591,0.9992],[128.5757,1.0105],[128.5915,1.0254],[128.605,1.0355],[128.6103,1.0424],[128.6192,1.047],[128.6269,1.0465],[128.6302,1.0422],[128.6335,1.0446],[128.6418,1.0468],[128.6482,1.0553],[128.6596,1.0561],[128.6711,1.0622],[128.6762,1.0618],[128.6834,1.0679],[128.6886,1.0669],[128.6967,1.0632],[128.7009,1.0678],[128.6981,1.0755],[128.6933,1.0782],[128.6889,1.0908],[128.6891,1.1053],[128.6922,1.1097],[128.6953,1.1211],[128.6947,1.1376],[128.6966,1.141],[128.6956,1.1485],[128.6922,1.1558],[128.6906,1.1793],[128.693,1.1849],[128.6911,1.1889],[128.6911,1.1989],[128.6944,1.2012],[128.6944,1.2071],[128.7018,1.2283],[128.7021,1.234],[128.7106,1.2443],[128.7194,1.2477],[128.7204,1.2565],[128.717,1.2584],[128.7121,1.2653],[128.7097,1.2799],[128.7096,1.2866],[128.7125,1.2933],[128.7226,1.3019],[128.7285,1.2999],[128.7353,1.3037],[128.7387,1.3086],[128.7391,1.3171],[128.7426,1.3227],[128.7468,1.3324],[128.7442,1.3353],[128.7477,1.3462],[128.746,1.3555],[128.7423,1.3639],[128.7421,1.371],[128.7448,1.3766],[128.7485,1.3802],[128.7526,1.3812],[128.7584,1.3911],[128.7568,1.3985],[128.7503,1.4002],[128.7428,1.3972],[128.733,1.4001],[128.7228,1.4075],[128.7123,1.4182],[128.6922,1.4476],[128.6868,1.4602],[128.6861,1.4701],[128.6818,1.4866],[128.681,1.4947],[128.6828,1.5039],[128.6873,1.5086],[128.6966,1.5043],[128.6977,1.5258],[128.6968,1.5362],[128.7022,1.5356],[128.7091,1.5385],[128.7122,1.5365],[128.7176,1.5292],[128.722,1.5273],[128.7315,1.5345],[128.7311,1.5403],[128.7276,1.5408],[128.724,1.551],[128.7236,1.5575],[128.7263,1.5638],[128.723,1.5724],[128.7179,1.5748],[128.6989,1.579],[128.6983,1.5824],[128.683,1.5825],[128.6767,1.5886],[128.6671,1.5894],[128.6587,1.5849],[128.6526,1.5836],[128.6486,1.5809],[128.6401,1.5789],[128.6368,1.5825],[128.6267,1.5826],[128.6199,1.5794],[128.6131,1.5742],[128.6078,1.5729],[128.6022,1.5694],[128.5935,1.5687],[128.5855,1.5711],[128.5758,1.5694],[128.5664,1.5691],[128.5637,1.5704],[128.5517,1.566],[128.542,1.5587],[128.5432,1.5492],[128.5387,1.5435],[128.5257,1.5367],[128.5137,1.533],[128.5065,1.5318],[128.5032,1.5405],[128.4973,1.5433],[128.4937,1.5495],[128.4823,1.5481],[128.4693,1.5514],[128.4648,1.5494],[128.4569,1.5428],[128.4479,1.5403],[128.4327,1.5345],[128.4241,1.5294],[128.4152,1.5268],[128.4114,1.5206],[128.4085,1.5214],[128.397,1.5151],[128.3826,1.5047],[128.371,1.5015],[128.3672,1.4985],[128.3593,1.484],[128.3594,1.4759],[128.3542,1.4721],[128.3523,1.4684],[128.346,1.4649],[128.3451,1.46],[128.3298,1.4542],[128.3167,1.4469],[128.3106,1.4398],[128.3031,1.4372],[128.3,1.4338],[128.2793,1.4294],[128.2702,1.4253],[128.2669,1.4252],[128.2568,1.4199],[128.2504,1.4217],[128.2444,1.42],[128.24,1.4151],[128.2237,1.4022],[128.2189,1.3938],[128.2005,1.3934],[128.1923,1.3898],[128.1667,1.3664],[128.1565,1.3539],[128.1483,1.3396],[128.1415,1.3212],[128.1361,1.3101],[128.1274,1.3025],[128.1226,1.2962],[128.1199,1.2903],[128.1107,1.287],[128.1046,1.2895],[128.0939,1.285],[128.0866,1.2616],[128.0865,1.2533],[128.0885,1.2467],[128.0926,1.2425],[128.1028,1.2386],[128.1107,1.2485],[128.1189,1.2475],[128.1317,1.2519],[128.1358,1.2511],[128.1461,1.2536],[128.1569,1.2518],[128.1622,1.2485],[128.1714,1.2477],[128.1802,1.2423],[128.1936,1.2152],[128.1978,1.2105],[128.2009,1.2],[128.2006,1.1959],[128.195,1.1895],[128.1983,1.1824],[128.1969,1.1721],[128.1946,1.1647],[128.19,1.1587],[128.1816,1.1565],[128.1788,1.1527],[128.178,1.1456],[128.175,1.136],[128.1705,1.1292],[128.1661,1.1248],[128.1502,1.1243],[128.1472,1.121],[128.1372,1.1222],[128.1346,1.1253],[128.1288,1.1279],[128.1229,1.1266],[128.1136,1.1219],[128.1068,1.121],[128.0995,1.1259],[128.092,1.1256],[128.0886,1.1209],[128.0831,1.1241],[128.0702,1.1233],[128.0626,1.1165],[128.0525,1.1161],[128.0443,1.1139],[128.0347,1.1143],[128.0329,1.1162],[128.0215,1.1111],[128.0225,1.1084],[128.0182,1.1041],[128.0107,1.1022],[128.0071,1.0983],[127.9954,1.0925],[127.9879,1.0908],[127.9812,1.0871],[127.9811,1.0784],[127.9757,1.0685],[127.977,1.0613],[127.9661,1.0499],[127.9632,1.0453],[127.9636,1.0386],[127.9605,1.0347],[127.9559,1.0328],[127.9553,1.0273],[127.9524,1.0189],[127.9477,1.0171],[127.9432,1.0122],[127.9401,1.0055],[127.9331,1.0046],[127.9353,0.9971],[127.9343,0.9917],[127.937,0.9853],[127.9364,0.9777],[127.934,0.9727],[127.929,0.9667],[127.9253,0.9655],[127.9256,0.9587],[127.9293,0.9433],[127.9307,0.9222],[127.9325,0.9145],[127.9306,0.9058],[127.9302,0.8976],[127.9327,0.895],[127.934,0.8875],[127.9309,0.8768],[127.9245,0.874],[127.9149,0.8661],[127.9104,0.8584],[127.9025,0.8539],[127.8928,0.8544],[127.8878,0.8504],[127.8882,0.8425],[127.8833,0.8293],[127.8757,0.8262],[127.8714,0.8266],[127.8684,0.821],[127.8619,0.8184],[127.8539,0.8131],[127.8521,0.8101],[127.8439,0.8049],[127.8315,0.8052],[127.8286,0.8017],[127.8206,0.8006],[127.8193,0.7989],[127.8,0.7974],[127.7959,0.7978],[127.7797,0.8073],[127.7714,0.8047],[127.7614,0.8053],[127.754,0.8075],[127.7521,0.8144],[127.7466,0.8142],[127.7343,0.8243],[127.7361,0.8318],[127.7355,0.8375],[127.7314,0.8371],[127.7268,0.8444],[127.7246,0.842],[127.713,0.8514],[127.7088,0.8516],[127.7031,0.8618],[127.7026,0.869],[127.7006,0.8749],[127.6939,0.8789]]]}},{"type":"Feature","properties":{"mhid":"1332:475","alt_name":"KABUPATEN PULAU MOROTAI","latitude":2.19924,"longitude":128.40546,"sample_value":371},"geometry":{"type":"MultiLineString","coordinates":[[[128.2694,2.0551],[128.2681,2.0526],[128.2706,2.0448],[128.2737,2.0463],[128.2694,2.0551]],[[128.1841,2.0942],[128.186,2.0882],[128.1949,2.0857],[128.1929,2.0911],[128.1841,2.0942]],[[128.2262,2.1157],[128.2269,2.1217],[128.2227,2.1217],[128.2231,2.1171],[128.2262,2.1157]],[[128.1944,2.1272],[128.1878,2.1263],[128.1929,2.1218],[128.1944,2.1272]],[[128.2259,2.1405],[128.2216,2.1387],[128.222,2.1291],[128.2267,2.1272],[128.2323,2.1327],[128.2259,2.1405]],[[128.2118,2.192],[128.2143,2.1972],[128.2129,2.206],[128.2107,2.2094],[128.2055,2.2029],[128.2058,2.1966],[128.2077,2.1929],[128.2118,2.192]],[[128.1827,2.3663],[128.1768,2.3768],[128.1787,2.3809],[128.1784,2.3871],[128.1741,2.3928],[128.1717,2.4036],[128.1665,2.4127],[128.1618,2.4112],[128.1548,2.4066],[128.1495,2.3972],[128.1435,2.3894],[128.1412,2.3822],[128.1451,2.3755],[128.1416,2.3663],[128.1379,2.3656],[128.1322,2.3554],[128.1319,2.3486],[128.137,2.3457],[128.1352,2.3409],[128.1277,2.3386],[128.1249,2.3335],[128.1264,2.3266],[128.1311,2.3223],[128.1297,2.3159],[128.139,2.2995],[128.1437,2.2953],[128.1515,2.2919],[128.1584,2.2914],[128.1612,2.2877],[128.1718,2.2911],[128.1784,2.2908],[128.1853,2.2999],[128.188,2.3065],[128.1855,2.3104],[128.1818,2.3093],[128.1768,2.3147],[128.1794,2.3188],[128.18,2.3262],[128.178,2.3309],[128.1822,2.3392],[128.1805,2.3477],[128.1836,2.3622],[128.1827,2.3663]],[[128.5937,2.6125],[128.5936,2.6154],[128.5892,2.6245],[128.5826,2.6344],[128.5768,2.6402],[128.5692,2.6453],[128.5658,2.6455],[128.5602,2.6419],[128.5485,2.6276],[128.5436,2.6169],[128.5464,2.6068],[128.5353,2.5912],[128.5308,2.5874],[128.5305,2.5807],[128.5261,2.577],[128.5202,2.5761],[128.5116,2.581],[128.5066,2.5799],[128.5028,2.5763],[128.499,2.5789],[128.4964,2.5842],[128.4902,2.5865],[128.4867,2.59],[128.4839,2.5853],[128.4783,2.5933],[128.4749,2.5869],[128.4694,2.5897],[128.4679,2.5965],[128.4611,2.5954],[128.4557,2.585],[128.448,2.5811],[128.4473,2.5713],[128.4397,2.5674],[128.4354,2.5718],[128.4297,2.5681],[128.4303,2.5656],[128.4267,2.5567],[128.4268,2.5528],[128.4202,2.5501],[128.4198,2.5449],[128.4165,2.5422],[128.4159,2.5344],[128.4086,2.526],[128.4043,2.5289],[128.3974,2.5258],[128.3855,2.5185],[128.38,2.518],[128.3805,2.5145],[128.3759,2.5118],[128.3733,2.5062],[128.3646,2.5083],[128.3569,2.5031],[128.3533,2.4976],[128.3493,2.4945],[128.3501,2.4879],[128.3367,2.4811],[128.3338,2.4736],[128.3301,2.4742],[128.3229,2.4711],[128.3214,2.4649],[128.3172,2.4632],[128.3129,2.4584],[128.3054,2.4462],[128.2975,2.4429],[128.2964,2.4389],[128.299,2.4354],[128.2941,2.4297],[128.2973,2.4227],[128.2959,2.4188],[128.2983,2.4114],[128.2917,2.3975],[128.287,2.3901],[128.2862,2.384],[128.2884,2.3806],[128.2843,2.3717],[128.2759,2.3633],[128.276,2.3603],[128.2661,2.3505],[128.2626,2.3424],[128.2518,2.3353],[128.2487,2.3308],[128.2491,2.3268],[128.2429,2.3221],[128.2415,2.3185],[128.2322,2.3162],[128.2315,2.312],[128.2258,2.3083],[128.2201,2.3069],[128.2132,2.302],[128.2113,2.2974],[128.203,2.2907],[128.197,2.2788],[128.2019,2.2773],[128.2093,2.2776],[128.2134,2.2799],[128.2224,2.2771],[128.2265,2.2661],[128.2308,2.2585],[128.2339,2.2584],[128.2354,2.2517],[128.2462,2.2499],[128.2464,2.2439],[128.2497,2.2379],[128.246,2.2348],[128.2441,2.2207],[128.2452,2.2151],[128.24,2.2047],[128.2477,2.197],[128.2493,2.1897],[128.2469,2.1695],[128.2436,2.1631],[128.2444,2.1509],[128.2481,2.138],[128.2466,2.1336],[128.246,2.1237],[128.2507,2.1174],[128.2494,2.1109],[128.2544,2.1021],[128.2534,2.0937],[128.2685,2.0829],[128.2789,2.0876],[128.2858,2.0768],[128.2845,2.0702],[128.2913,2.0618],[128.2932,2.0544],[128.2908,2.051],[128.2918,2.0456],[128.2876,2.0372],[128.2876,2.0301],[128.2838,2.0197],[128.2792,2.012],[128.2759,2.0021],[128.2706,1.9976],[128.2633,1.9855],[128.2691,1.9859],[128.277,1.9929],[128.2788,1.9964],[128.2925,2.0093],[128.2943,2.0132],[128.2931,2.023],[128.2935,2.0307],[128.3007,2.036],[128.3071,2.0343],[128.3267,2.035],[128.3337,2.0378],[128.3457,2.0376],[128.3613,2.0444],[128.3727,2.0469],[128.3801,2.0507],[128.4006,2.0572],[128.4134,2.0573],[128.4257,2.0583],[128.433,2.0609],[128.4464,2.0613],[128.4551,2.0558],[128.4672,2.0555],[128.4707,2.0545],[128.4789,2.0569],[128.4823,2.0614],[128.4888,2.0624],[128.4946,2.0578],[128.5061,2.0595],[128.5219,2.0688],[128.526,2.0813],[128.5304,2.081],[128.5354,2.0843],[128.5422,2.0909],[128.5448,2.1001],[128.5494,2.1041],[128.5605,2.1059],[128.5686,2.1038],[128.574,2.107],[128.5795,2.1164],[128.5794,2.1274],[128.575,2.1363],[128.5797,2.1457],[128.5843,2.1491],[128.5872,2.1618],[128.594,2.1681],[128.5931,2.1741],[128.599,2.185],[128.602,2.1876],[128.6021,2.1925],[128.605,2.1961],[128.6097,2.1968],[128.6117,2.2011],[128.6171,2.206],[128.623,2.2139],[128.6234,2.2202],[128.622,2.2308],[128.6253,2.2382],[128.6253,2.2422],[128.6301,2.26],[128.6367,2.2722],[128.6411,2.277],[128.6442,2.2877],[128.6487,2.2943],[128.6478,2.3003],[128.6539,2.3117],[128.6492,2.3152],[128.6433,2.3248],[128.6413,2.3334],[128.6451,2.34],[128.6449,2.3459],[128.6472,2.3517],[128.6474,2.3592],[128.6498,2.3675],[128.6574,2.3769],[128.664,2.3779],[128.6655,2.3815],[128.6637,2.3912],[128.6688,2.3986],[128.6732,2.3988],[128.684,2.4066],[128.6881,2.4116],[128.6884,2.4171],[128.6939,2.4224],[128.6929,2.4276],[128.687,2.4315],[128.6917,2.4403],[128.6923,2.4444],[128.6874,2.4561],[128.6927,2.46],[128.6926,2.4732],[128.6905,2.4898],[128.6877,2.5023],[128.6796,2.5059],[128.677,2.5053],[128.6733,2.4986],[128.6697,2.5001],[128.6699,2.5043],[128.6617,2.5149],[128.6612,2.5217],[128.6584,2.5252],[128.6535,2.5267],[128.6516,2.5238],[128.6444,2.5337],[128.6365,2.5309],[128.6317,2.5368],[128.636,2.5433],[128.6322,2.5509],[128.6304,2.5639],[128.6248,2.5618],[128.6137,2.5672],[128.6076,2.5757],[128.6082,2.5804],[128.6114,2.581],[128.6018,2.6025],[128.5937,2.6125]]]}},{"type":"Feature","properties":{"mhid":"1332:476","alt_name":"KABUPATEN PULAU TALIABU","latitude":-1.84578,"longitude":124.78992,"sample_value":417},"geometry":{"type":"MultiLineString","coordinates":[[[124.3922,-2.0329],[124.3856,-2.035],[124.3786,-2.0391],[124.3736,-2.0468],[124.373,-2.0549],[124.3754,-2.0605],[124.3856,-2.068],[124.3887,-2.0735],[124.3944,-2.0633],[124.3885,-2.0612],[124.3911,-2.0536],[124.395,-2.0538],[124.3955,-2.0582],[124.3992,-2.0588],[124.4026,-2.0559],[124.4049,-2.0441],[124.3976,-2.0364],[124.3922,-2.0329]],[[124.4862,-2.0215],[124.497,-2.016],[124.4926,-2.0138],[124.4862,-2.0215]],[[124.3335,-1.966],[124.3288,-1.9685],[124.3224,-1.9694],[124.3193,-1.9725],[124.3138,-1.9733],[124.3103,-1.976],[124.3119,-1.9813],[124.316,-1.987],[124.3134,-1.9907],[124.3077,-1.9879],[124.3039,-1.9972],[124.3052,-2.0053],[124.3092,-2.0012],[124.315,-1.9983],[124.3183,-2.0027],[124.3145,-2.0079],[124.3144,-2.0111],[124.3214,-2.014],[124.3303,-2.016],[124.3345,-2.0208],[124.3449,-2.0242],[124.3517,-2.0286],[124.36,-2.0432],[124.3667,-2.0389],[124.3632,-2.0338],[124.3667,-2.0303],[124.3677,-2.0209],[124.3653,-2.0158],[124.3694,-2.0132],[124.3678,-2.0069],[124.3694,-1.9993],[124.3753,-1.9906],[124.3703,-1.9864],[124.3705,-1.9777],[124.3668,-1.9725],[124.36,-1.9704],[124.3554,-1.9726],[124.3517,-1.9689],[124.3429,-1.969],[124.3428,-1.9738],[124.3372,-1.9742],[124.3375,-1.9694],[124.3335,-1.966]],[[124.3386,-1.899],[124.3353,-1.8951],[124.3324,-1.8979],[124.3361,-1.9029],[124.3386,-1.899]],[[124.3145,-1.7857],[124.3107,-1.7879],[124.3106,-1.7949],[124.3159,-1.7922],[124.3145,-1.7857]],[[124.3481,-1.7596],[124.345,-1.7574],[124.3422,-1.7629],[124.3415,-1.7722],[124.3446,-1.7783],[124.3489,-1.776],[124.3501,-1.7704],[124.3481,-1.7596]],[[124.2929,-1.7448],[124.285,-1.7514],[124.2835,-1.7594],[124.2914,-1.7752],[124.2987,-1.78],[124.3047,-1.7801],[124.3087,-1.7859],[124.314,-1.7839],[124.3127,-1.7779],[124.3064,-1.7686],[124.302,-1.7668],[124.3037,-1.762],[124.2975,-1.7554],[124.2896,-1.7535],[124.2887,-1.7507],[124.2929,-1.7448]],[[124.369,-1.7362],[124.3633,-1.7388],[124.3661,-1.7419],[124.369,-1.7362]],[[124.3159,-1.7186],[124.3112,-1.7233],[124.314,-1.7363],[124.3181,-1.7433],[124.3215,-1.7408],[124.3186,-1.7286],[124.3197,-1.7226],[124.3159,-1.7186]],[[124.3396,-1.7134],[124.3401,-1.7102],[124.3363,-1.7052],[124.3313,-1.7106],[124.3305,-1.7171],[124.3339,-1.7227],[124.3396,-1.7134]],[[124.3444,-1.7125],[124.3449,-1.7074],[124.3502,-1.7036],[124.3509,-1.6973],[124.3483,-1.693],[124.3446,-1.6948],[124.341,-1.7031],[124.3444,-1.7125]],[[124.9649,-1.6636],[124.953,-1.6641],[124.9497,-1.6662],[124.9541,-1.6719],[124.9568,-1.6691],[124.9686,-1.6674],[124.9649,-1.6636]],[[124.8958,-1.6588],[124.8885,-1.6582],[124.889,-1.6633],[124.8958,-1.6588]],[[124.9953,-1.6567],[124.9924,-1.6571],[124.9912,-1.6623],[124.9981,-1.6676],[124.9995,-1.6703],[125.0069,-1.6673],[125.0224,-1.6655],[125.019,-1.6625],[125.0057,-1.6591],[124.9994,-1.6595],[124.9953,-1.6567]],[[124.5314,-1.6305],[124.5271,-1.6305],[124.523,-1.6347],[124.5116,-1.6353],[124.5085,-1.6413],[124.5103,-1.6494],[124.5072,-1.653],[124.501,-1.6558],[124.4899,-1.6588],[124.4667,-1.6631],[124.4477,-1.6633],[124.4387,-1.6647],[124.4225,-1.6648],[124.4006,-1.6601],[124.3921,-1.6659],[124.3853,-1.6748],[124.3793,-1.6763],[124.3729,-1.6849],[124.3721,-1.6883],[124.3628,-1.7022],[124.3611,-1.7077],[124.3611,-1.7145],[124.366,-1.7114],[124.3685,-1.7198],[124.3671,-1.7302],[124.3714,-1.7339],[124.3719,-1.7422],[124.3653,-1.7453],[124.3621,-1.7513],[124.3644,-1.7538],[124.3632,-1.76],[124.3602,-1.7625],[124.3605,-1.7702],[124.3577,-1.7721],[124.3541,-1.781],[124.3482,-1.788],[124.3465,-1.8053],[124.3448,-1.8117],[124.3422,-1.8148],[124.3445,-1.8226],[124.3424,-1.8255],[124.342,-1.8315],[124.3449,-1.835],[124.3449,-1.8448],[124.3405,-1.867],[124.3414,-1.874],[124.3402,-1.8797],[124.3369,-1.8824],[124.3369,-1.8906],[124.3414,-1.8985],[124.3424,-1.9056],[124.3488,-1.9112],[124.3531,-1.9219],[124.3608,-1.9293],[124.3685,-1.9333],[124.3701,-1.9383],[124.3787,-1.9416],[124.3824,-1.9479],[124.3827,-1.9568],[124.3915,-1.9689],[124.3951,-1.9771],[124.3953,-1.9834],[124.3977,-1.9898],[124.3966,-2.0013],[124.3921,-2.0193],[124.3969,-2.0231],[124.3972,-2.0295],[124.405,-2.0316],[124.414,-2.0238],[124.4197,-2.0229],[124.4262,-2.0259],[124.445,-2.024],[124.4511,-2.0244],[124.4647,-2.0181],[124.4711,-2.0177],[124.4802,-2.0217],[124.4822,-2.0249],[124.4922,-2.0123],[124.4946,-2.0035],[124.4998,-1.9966],[124.5071,-1.9915],[124.5117,-1.9904],[124.5156,-1.984],[124.5215,-1.9809],[124.5279,-1.9845],[124.5331,-1.9845],[124.5387,-1.9887],[124.5459,-1.9859],[124.5565,-1.9937],[124.5624,-1.9923],[124.5638,-1.9972],[124.5567,-1.9977],[124.5494,-2.0023],[124.5311,-2.0067],[124.5283,-1.9948],[124.5198,-1.9906],[124.5155,-1.9918],[124.5098,-2.0007],[124.5009,-1.9998],[124.4977,-2.0019],[124.4932,-2.0095],[124.4939,-2.0132],[124.5019,-2.012],[124.5084,-2.014],[124.5131,-2.0137],[124.5243,-2.0183],[124.5456,-2.0104],[124.5696,-2.0044],[124.5834,-2.0027],[124.6115,-1.9927],[124.6332,-1.9879],[124.6518,-1.9799],[124.6717,-1.9744],[124.6788,-1.976],[124.6868,-1.9718],[124.6935,-1.9704],[124.6928,-1.9653],[124.6967,-1.9582],[124.7023,-1.953],[124.7118,-1.9479],[124.7324,-1.94],[124.7389,-1.9391],[124.7552,-1.9329],[124.7634,-1.9278],[124.7676,-1.9204],[124.7741,-1.9158],[124.7886,-1.9102],[124.8122,-1.9025],[124.8246,-1.8996],[124.8359,-1.899],[124.8412,-1.8958],[124.8481,-1.8938],[124.8617,-1.8916],[124.8754,-1.9035],[124.8767,-1.9103],[124.8908,-1.9266],[124.9028,-1.928],[124.9119,-1.9259],[124.9194,-1.9258],[124.9216,-1.9283],[124.9272,-1.9267],[124.9353,-1.9285],[124.9547,-1.9302],[124.9573,-1.9273],[124.9618,-1.9315],[124.9722,-1.9328],[124.9739,-1.9362],[124.9802,-1.9409],[124.9884,-1.937],[124.9897,-1.9319],[124.9946,-1.9318],[124.9991,-1.9408],[125.0088,-1.9436],[125.0138,-1.9422],[125.0176,-1.9382],[125.0213,-1.9281],[125.0199,-1.9115],[125.0132,-1.9052],[125.0156,-1.8978],[125.0261,-1.8914],[125.0349,-1.8888],[125.0559,-1.8854],[125.0593,-1.8854],[125.0641,-1.8894],[125.0707,-1.8906],[125.0816,-1.8896],[125.0896,-1.8931],[125.0923,-1.8981],[125.1009,-1.9],[125.1072,-1.8976],[125.1131,-1.8926],[125.1147,-1.8885],[125.1197,-1.883],[125.1251,-1.8813],[125.1271,-1.8775],[125.1501,-1.8741],[125.1622,-1.8754],[125.1686,-1.875],[125.1729,-1.8806],[125.1779,-1.8842],[125.1888,-1.8852],[125.1961,-1.881],[125.2022,-1.8807],[125.209,-1.8826],[125.2137,-1.8806],[125.2245,-1.88],[125.2292,-1.8785],[125.228,-1.8739],[125.2334,-1.8721],[125.2347,-1.8772],[125.2389,-1.8818],[125.2527,-1.8832],[125.2581,-1.8854],[125.2685,-1.8856],[125.2744,-1.8846],[125.2807,-1.8874],[125.2944,-1.8907],[125.3034,-1.8895],[125.3086,-1.8933],[125.3148,-1.8935],[125.3246,-1.888],[125.3272,-1.8849],[125.3231,-1.8756],[125.3224,-1.8635],[125.3194,-1.8586],[125.3153,-1.8457],[125.3174,-1.8327],[125.3149,-1.8267],[125.3166,-1.8231],[125.3182,-1.8097],[125.324,-1.7982],[125.322,-1.7855],[125.3163,-1.781],[125.3097,-1.7793],[125.3052,-1.7808],[125.2992,-1.7787],[125.2947,-1.7801],[125.2865,-1.7866],[125.2796,-1.795],[125.2732,-1.797],[125.2697,-1.7906],[125.2697,-1.7847],[125.2775,-1.7817],[125.2898,-1.774],[125.2955,-1.7671],[125.2972,-1.7568],[125.2949,-1.7502],[125.298,-1.7422],[125.2962,-1.7351],[125.2876,-1.7305],[125.272,-1.7265],[125.2623,-1.7262],[125.2564,-1.7235],[125.2482,-1.724],[125.2428,-1.7229],[125.2364,-1.7281],[125.2329,-1.7385],[125.2283,-1.74],[125.2252,-1.7356],[125.2217,-1.7363],[125.2214,-1.7432],[125.2228,-1.7481],[125.2268,-1.7521],[125.2295,-1.7604],[125.2287,-1.7659],[125.2253,-1.7666],[125.222,-1.7801],[125.2182,-1.7784],[125.2136,-1.7924],[125.2078,-1.7929],[125.1978,-1.7916],[125.1849,-1.7857],[125.1803,-1.7813],[125.1814,-1.7779],[125.1859,-1.7766],[125.1872,-1.7684],[125.191,-1.7661],[125.1947,-1.753],[125.1936,-1.7465],[125.198,-1.7429],[125.1996,-1.7333],[125.206,-1.7281],[125.2021,-1.7222],[125.1978,-1.7201],[125.1948,-1.7134],[125.1916,-1.7115],[125.1851,-1.7165],[125.1808,-1.7147],[125.1807,-1.7029],[125.1741,-1.6987],[125.1716,-1.701],[125.1638,-1.6952],[125.1614,-1.7008],[125.1512,-1.7075],[125.1418,-1.7097],[125.1393,-1.7065],[125.1436,-1.7008],[125.1427,-1.695],[125.1387,-1.6917],[125.1371,-1.6874],[125.1285,-1.6838],[125.1109,-1.6882],[125.1077,-1.6912],[125.1063,-1.7069],[125.1086,-1.7095],[125.1087,-1.7177],[125.1063,-1.7239],[125.1027,-1.7267],[125.1076,-1.7353],[125.1051,-1.7423],[125.0974,-1.7442],[125.0934,-1.7411],[125.0894,-1.742],[125.0893,-1.7469],[125.0969,-1.7508],[125.1043,-1.7531],[125.1052,-1.7583],[125.1013,-1.7611],[125.096,-1.7608],[125.0906,-1.7569],[125.0825,-1.7594],[125.0793,-1.7577],[125.0773,-1.7635],[125.0724,-1.7724],[125.0687,-1.7715],[125.0689,-1.7533],[125.0675,-1.7493],[125.0631,-1.7497],[125.0627,-1.7444],[125.0571,-1.7472],[125.0601,-1.7576],[125.0593,-1.7656],[125.057,-1.7682],[125.0508,-1.7689],[125.0478,-1.7714],[125.0424,-1.7664],[125.041,-1.7604],[125.0342,-1.7562],[125.0227,-1.7602],[125.0186,-1.7574],[125.0141,-1.7463],[125.0238,-1.7285],[125.0182,-1.7253],[125.0178,-1.7207],[125.004,-1.7273],[124.9977,-1.7244],[125.0016,-1.7205],[125.0023,-1.7164],[124.9979,-1.7132],[124.9773,-1.7156],[124.977,-1.7108],[124.9835,-1.7091],[124.9781,-1.7045],[124.9718,-1.7049],[124.9679,-1.7032],[124.9649,-1.706],[124.9586,-1.695],[124.9485,-1.6986],[124.95,-1.7053],[124.9447,-1.7027],[124.9414,-1.6973],[124.9333,-1.699],[124.9316,-1.705],[124.922,-1.7047],[124.9127,-1.6998],[124.9089,-1.7033],[124.904,-1.7037],[124.902,-1.7083],[124.8983,-1.7087],[124.8941,-1.7051],[124.8941,-1.701],[124.8866,-1.6993],[124.8806,-1.6951],[124.8769,-1.6866],[124.8662,-1.6823],[124.8573,-1.6821],[124.8522,-1.6834],[124.8398,-1.6838],[124.8327,-1.683],[124.8264,-1.6807],[124.8247,-1.6768],[124.8193,-1.677],[124.8163,-1.6746],[124.8059,-1.6731],[124.8022,-1.6752],[124.802,-1.6813],[124.7878,-1.6784],[124.783,-1.6744],[124.781,-1.6667],[124.7778,-1.6651],[124.7686,-1.6703],[124.7634,-1.671],[124.7508,-1.6707],[124.7454,-1.6658],[124.738,-1.6641],[124.7356,-1.662],[124.7286,-1.6618],[124.7128,-1.654],[124.7085,-1.6568],[124.6958,-1.6525],[124.6882,-1.6513],[124.6813,-1.6476],[124.6715,-1.6439],[124.6492,-1.6422],[124.6444,-1.6401],[124.6363,-1.6404],[124.6281,-1.6393],[124.6248,-1.6408],[124.6134,-1.6385],[124.6048,-1.6386],[124.597,-1.6452],[124.5894,-1.6407],[124.5785,-1.6471],[124.5698,-1.6454],[124.5642,-1.6409],[124.5571,-1.6384],[124.5463,-1.6428],[124.541,-1.6422],[124.537,-1.6458],[124.5322,-1.6588],[124.5278,-1.6651],[124.5231,-1.6636],[124.5212,-1.6555],[124.524,-1.6491],[124.5252,-1.6368],[124.5314,-1.6326],[124.5314,-1.6305]],[[124.4921,-1.6286],[124.4871,-1.6293],[124.4859,-1.633],[124.4889,-1.6368],[124.4921,-1.6286]],[[124.4739,-1.5777],[124.4723,-1.5837],[124.4741,-1.5881],[124.4785,-1.5927],[124.4785,-1.6028],[124.4832,-1.5974],[124.4827,-1.5923],[124.4848,-1.5893],[124.4807,-1.5803],[124.4739,-1.5777]]]}},{"type":"Feature","properties":{"mhid":"1332:477","alt_name":"KOTA TERNATE","latitude":0.89618,"longitude":127.31016,"sample_value":31},"geometry":{"type":"MultiLineString","coordinates":[[[127.4056,0.481],[127.395,0.4774],[127.3857,0.4707],[127.3859,0.4666],[127.3817,0.4543],[127.3832,0.448],[127.3881,0.4399],[127.3917,0.4394],[127.4005,0.4328],[127.4145,0.434],[127.4199,0.4327],[127.4266,0.4357],[127.4288,0.4397],[127.4387,0.4469],[127.4392,0.4521],[127.4346,0.4564],[127.4335,0.4631],[127.4243,0.4728],[127.4213,0.4736],[127.4191,0.4784],[127.4153,0.4804],[127.4056,0.481]],[[127.3278,0.867],[127.3246,0.867],[127.3178,0.8573],[127.3184,0.8537],[127.3135,0.8476],[127.3022,0.8412],[127.3002,0.8317],[127.2947,0.8211],[127.2936,0.8084],[127.2951,0.8053],[127.2937,0.7968],[127.294,0.791],[127.2981,0.7866],[127.3019,0.7783],[127.3027,0.7726],[127.3056,0.7657],[127.3133,0.7579],[127.3238,0.7545],[127.3308,0.7552],[127.3381,0.7532],[127.3507,0.7589],[127.3568,0.7604],[127.3648,0.7593],[127.3706,0.7602],[127.3773,0.7657],[127.3788,0.7716],[127.3865,0.777],[127.3886,0.7852],[127.3911,0.7894],[127.3882,0.7993],[127.3887,0.8136],[127.3902,0.8169],[127.3886,0.8289],[127.3864,0.8333],[127.3772,0.8408],[127.3674,0.845],[127.3633,0.8487],[127.3528,0.8541],[127.3418,0.8632],[127.3368,0.8623],[127.3278,0.867]],[[127.3153,0.9132],[127.3112,0.9095],[127.3104,0.9044],[127.3054,0.9026],[127.3029,0.898],[127.3058,0.8958],[127.3071,0.8906],[127.3142,0.8827],[127.3182,0.8813],[127.3249,0.8841],[127.3314,0.892],[127.3299,0.9008],[127.3262,0.9048],[127.3183,0.9082],[127.3153,0.9132]],[[126.1354,0.9814],[126.1288,0.9812],[126.1292,0.9752],[126.1369,0.9716],[126.1395,0.9649],[126.1506,0.9571],[126.1547,0.9561],[126.162,0.9578],[126.1615,0.9611],[126.1506,0.9646],[126.1454,0.9711],[126.1563,0.9737],[126.1525,0.9765],[126.1354,0.9814]],[[126.3855,1.3481],[126.3815,1.3531],[126.3744,1.3474],[126.3698,1.3468],[126.3647,1.3422],[126.3577,1.331],[126.3568,1.3219],[126.3583,1.3187],[126.3648,1.3195],[126.3766,1.3118],[126.3771,1.3067],[126.3837,1.3004],[126.3861,1.2927],[126.3938,1.2849],[126.3978,1.285],[126.3975,1.2956],[126.3996,1.3008],[126.399,1.3166],[126.415,1.3272],[126.4165,1.3327],[126.4121,1.3381],[126.3959,1.3409],[126.3855,1.3481]]]}},{"type":"Feature","properties":{"mhid":"1332:478","alt_name":"KOTA TIDORE KEPULAUAN","latitude":0.60962,"longitude":127.56981,"sample_value":636},"geometry":{"type":"MultiLineString","coordinates":[[[127.3949,0.5852],[127.3874,0.5788],[127.3847,0.5722],[127.3795,0.5646],[127.3802,0.5604],[127.3859,0.5648],[127.3905,0.5619],[127.3977,0.5638],[127.4011,0.5676],[127.4057,0.5678],[127.411,0.5738],[127.4105,0.581],[127.4082,0.5845],[127.3949,0.5852]],[[127.3686,0.7413],[127.3639,0.7369],[127.3623,0.7323],[127.3664,0.7252],[127.37,0.7235],[127.3756,0.7254],[127.3791,0.7292],[127.3789,0.7357],[127.374,0.7405],[127.3686,0.7413]],[[127.4066,0.7577],[127.3992,0.7573],[127.3946,0.7518],[127.3894,0.7522],[127.3855,0.7477],[127.3866,0.738],[127.3843,0.7343],[127.3866,0.7253],[127.3797,0.7131],[127.3787,0.7056],[127.3733,0.6982],[127.3682,0.6936],[127.3651,0.6826],[127.362,0.6783],[127.3649,0.6607],[127.3652,0.6522],[127.3678,0.6442],[127.3725,0.6393],[127.3786,0.6302],[127.3881,0.6254],[127.402,0.6219],[127.4124,0.6223],[127.4238,0.6261],[127.4318,0.6322],[127.4321,0.6359],[127.4403,0.6437],[127.4429,0.6489],[127.4477,0.654],[127.4508,0.6648],[127.4563,0.6726],[127.4567,0.6784],[127.4542,0.6832],[127.4575,0.7072],[127.4604,0.7159],[127.4554,0.7217],[127.455,0.7316],[127.4513,0.7361],[127.4515,0.7406],[127.4492,0.7453],[127.4272,0.7489],[127.42,0.7522],[127.4084,0.7481],[127.4053,0.7528],[127.4066,0.7577]],[[127.6183,0.7902],[127.6153,0.7828],[127.6108,0.7799],[127.6024,0.7791],[127.5989,0.7727],[127.6041,0.7639],[127.6019,0.7575],[127.5926,0.7572],[127.5819,0.7541],[127.5746,0.7537],[127.5701,0.7493],[127.5576,0.7408],[127.5485,0.7313],[127.5473,0.7288],[127.5501,0.7206],[127.5484,0.7134],[127.548,0.7029],[127.552,0.6949],[127.5512,0.6824],[127.5455,0.6663],[127.5455,0.6607],[127.5402,0.6549],[127.5414,0.6454],[127.5409,0.6318],[127.5342,0.6231],[127.5295,0.6129],[127.5303,0.6032],[127.5348,0.5888],[127.5368,0.574],[127.5351,0.5673],[127.5277,0.5584],[127.5273,0.5528],[127.5344,0.5435],[127.5377,0.5407],[127.5394,0.5342],[127.5433,0.5296],[127.5478,0.5286],[127.5596,0.5207],[127.5631,0.5107],[127.5651,0.4945],[127.5677,0.4909],[127.5671,0.4758],[127.5696,0.4726],[127.5682,0.469],[127.5698,0.4532],[127.5747,0.4506],[127.576,0.443],[127.5726,0.4355],[127.575,0.4325],[127.573,0.4288],[127.5809,0.4287],[127.5831,0.421],[127.5789,0.4184],[127.5847,0.4091],[127.5941,0.4078],[127.5947,0.4022],[127.6006,0.403],[127.6051,0.3979],[127.6115,0.3986],[127.6222,0.3961],[127.6229,0.3863],[127.6216,0.3801],[127.6182,0.3762],[127.619,0.3683],[127.621,0.3611],[127.625,0.3591],[127.6351,0.3571],[127.6382,0.3589],[127.6436,0.3572],[127.6484,0.3579],[127.6517,0.3555],[127.6573,0.3448],[127.6614,0.3422],[127.6654,0.3459],[127.6702,0.3464],[127.6774,0.3495],[127.6861,0.3483],[127.6959,0.3458],[127.7026,0.3502],[127.7095,0.3529],[127.7103,0.3504],[127.7167,0.3478],[127.721,0.3423],[127.7263,0.3313],[127.7284,0.3246],[127.7317,0.3192],[127.7343,0.311],[127.734,0.302],[127.7279,0.2873],[127.7235,0.273],[127.7162,0.2649],[127.7173,0.2571],[127.7148,0.2424],[127.7121,0.2354],[127.7083,0.2298],[127.7066,0.2208],[127.7087,0.214],[127.7068,0.2073],[127.7003,0.199],[127.7014,0.1952],[127.697,0.1876],[127.6944,0.1683],[127.696,0.1596],[127.6922,0.1447],[127.694,0.1402],[127.6986,0.1376],[127.7014,0.1297],[127.7017,0.1248],[127.6996,0.1206],[127.6902,0.112],[127.6894,0.1032],[127.692,0.1002],[127.7046,0.1009],[127.7075,0.1039],[127.7127,0.1022],[127.7117,0.0961],[127.7139,0.0876],[127.7169,0.0845],[127.7169,0.0783],[127.7209,0.0756],[127.7219,0.0694],[127.7206,0.0603],[127.7175,0.0512],[127.7168,0.0449],[127.7104,0.0352],[127.7081,0.0278],[127.7001,0.0177],[127.6975,0.0084],[127.6972,-0.0026],[127.6997,-0.01]]]}},{"type":"Feature","properties":{"mhid":"1332:479","alt_name":"KABUPATEN FAK-FAK","latitude":-2.92641,"longitude":132.29608,"sample_value":605},"geometry":{"type":"MultiLineString","coordinates":[[[132.7662,-3.5395],[132.7663,-3.5326],[132.7687,-3.5276],[132.7694,-3.513],[132.7652,-3.51],[132.7643,-3.5011],[132.7555,-3.5039],[132.7533,-3.5111],[132.7527,-3.5195],[132.7543,-3.5247],[132.7528,-3.5314],[132.7581,-3.5385],[132.7643,-3.5412],[132.7662,-3.5395]],[[132.7668,-3.4843],[132.7686,-3.4795],[132.7613,-3.4684],[132.7618,-3.4592],[132.755,-3.4605],[132.7537,-3.4674],[132.7495,-3.4772],[132.7527,-3.4817],[132.7523,-3.4862],[132.7572,-3.486],[132.7625,-3.4888],[132.7668,-3.4843]],[[132.6511,-3.4041],[132.6455,-3.4075],[132.6407,-3.4069],[132.6376,-3.41],[132.634,-3.4092],[132.6296,-3.42],[132.6324,-3.4278],[132.6388,-3.4353],[132.6512,-3.4402],[132.6655,-3.4474],[132.6679,-3.4472],[132.674,-3.4528],[132.679,-3.4537],[132.6833,-3.4568],[132.6811,-3.4652],[132.6773,-3.4672],[132.6786,-3.4745],[132.6775,-3.4795],[132.6808,-3.4851],[132.6801,-3.4956],[132.6891,-3.5002],[132.6973,-3.5101],[132.6973,-3.5152],[132.7037,-3.5177],[132.7148,-3.5161],[132.7229,-3.5123],[132.7274,-3.5008],[132.725,-3.4923],[132.7253,-3.4852],[132.7152,-3.4684],[132.711,-3.4668],[132.7075,-3.4591],[132.6943,-3.4546],[132.692,-3.456],[132.6885,-3.4486],[132.6871,-3.4398],[132.69,-3.4361],[132.6846,-3.4262],[132.6661,-3.4103],[132.6511,-3.4041]],[[132.8127,-3.3164],[132.8141,-3.3091],[132.8091,-3.3033],[132.8049,-3.3072],[132.8058,-3.3162],[132.8127,-3.3164]],[[132.4495,-3.1029],[132.4406,-3.1022],[132.4487,-3.1136],[132.4515,-3.1146],[132.4542,-3.1211],[132.4584,-3.1221],[132.4596,-3.1267],[132.4653,-3.1272],[132.4731,-3.1332],[132.4767,-3.1308],[132.4787,-3.1368],[132.4848,-3.1378],[132.4893,-3.1359],[132.4937,-3.1395],[132.5021,-3.139],[132.5077,-3.1405],[132.519,-3.1413],[132.5303,-3.148],[132.5333,-3.1521],[132.5405,-3.1543],[132.5444,-3.1503],[132.5462,-3.1419],[132.5341,-3.138],[132.5333,-3.1358],[132.5257,-3.132],[132.5188,-3.1258],[132.5074,-3.1214],[132.5041,-3.1176],[132.5001,-3.1197],[132.4959,-3.1151],[132.4892,-3.1154],[132.4777,-3.1124],[132.472,-3.1067],[132.4681,-3.1054],[132.4598,-3.1059],[132.4555,-3.1033],[132.4495,-3.1029]],[[132.1378,-2.9715],[132.1314,-2.9695],[132.1135,-2.9728],[132.1139,-2.9756],[132.1222,-2.974],[132.1325,-2.9745],[132.1378,-2.9715]],[[132.1843,-2.9762],[132.1784,-2.9693],[132.1718,-2.9721],[132.1781,-2.9768],[132.1808,-2.9822],[132.1852,-2.9835],[132.1946,-2.9802],[132.199,-2.9831],[132.204,-2.9809],[132.2104,-2.9813],[132.2195,-2.9862],[132.2241,-2.9815],[132.2418,-2.9835],[132.2463,-2.9812],[132.2593,-2.9855],[132.2683,-2.9845],[132.2716,-2.9862],[132.287,-2.9882],[132.2926,-2.9912],[132.3015,-2.9897],[132.3135,-2.9941],[132.3151,-2.9919],[132.3123,-2.9854],[132.3025,-2.9826],[132.2988,-2.9861],[132.2909,-2.9801],[132.2831,-2.9824],[132.2782,-2.9805],[132.2678,-2.9816],[132.2677,-2.9753],[132.2647,-2.9749],[132.2547,-2.9775],[132.2515,-2.9722],[132.2281,-2.9744],[132.2224,-2.9735],[132.198,-2.9783],[132.1908,-2.9754],[132.1843,-2.9762]],[[132.0029,-2.944],[132.0003,-2.9498],[132.006,-2.9489],[132.0137,-2.9509],[132.0149,-2.9487],[132.0107,-2.9435],[132.0055,-2.9454],[132.0029,-2.944]],[[132.0758,-2.7024],[132.0847,-2.6945],[132.0857,-2.6875],[132.0827,-2.6826],[132.0738,-2.6826],[132.06,-2.6875],[132.054,-2.6945],[132.056,-2.7024],[132.0659,-2.7053],[132.0758,-2.7024]],[[132.561,-2.6429],[132.5455,-2.6437],[132.5396,-2.6498],[132.5522,-2.6551],[132.5653,-2.6563],[132.5652,-2.6518],[132.5732,-2.6517],[132.5657,-2.644],[132.561,-2.6429]],[[132.4827,-2.6335],[132.4755,-2.6321],[132.4726,-2.6282],[132.4673,-2.6269],[132.4641,-2.6318],[132.4585,-2.6352],[132.4585,-2.6397],[132.4638,-2.6395],[132.4694,-2.6524],[132.4624,-2.6509],[132.4644,-2.646],[132.4578,-2.6465],[132.4535,-2.6485],[132.4596,-2.6627],[132.4638,-2.6685],[132.4737,-2.6695],[132.4783,-2.6668],[132.4814,-2.6623],[132.4865,-2.6604],[132.4991,-2.66],[132.5064,-2.6566],[132.5115,-2.6502],[132.5102,-2.6394],[132.5037,-2.6367],[132.5001,-2.6319],[132.4956,-2.6347],[132.4874,-2.6328],[132.4827,-2.6335]],[[132.4126,-2.6095],[132.411,-2.6033],[132.4067,-2.6045],[132.4053,-2.6091],[132.4126,-2.6095]],[[133.0506,-2.5213],[133.0407,-2.515],[133.0243,-2.5333],[133.011,-2.5508],[133.0082,-2.5573],[132.9973,-2.57],[132.9838,-2.5874],[132.9761,-2.5987],[132.9564,-2.6207],[132.9435,-2.6315],[132.9384,-2.6376],[132.9346,-2.6454],[132.9309,-2.6479],[132.9277,-2.6543],[132.9051,-2.6785],[132.8895,-2.694],[132.8764,-2.7052],[132.8715,-2.7111],[132.8598,-2.7226],[132.8458,-2.7341],[132.8281,-2.7518],[132.8101,-2.7642],[132.8101,-2.7682],[132.8063,-2.7723],[132.7964,-2.7741],[132.792,-2.7769],[132.7946,-2.7837],[132.7922,-2.7861],[132.7847,-2.785],[132.7787,-2.7867],[132.7723,-2.7836],[132.7641,-2.7914],[132.7482,-2.8049],[132.7348,-2.8077],[132.7307,-2.8069],[132.7269,-2.8027],[132.7169,-2.8001],[132.7063,-2.7933],[132.7046,-2.7903],[132.7053,-2.7843],[132.7003,-2.7859],[132.6973,-2.7893],[132.6935,-2.789],[132.6873,-2.7776],[132.6826,-2.7789],[132.6803,-2.775],[132.6671,-2.7673],[132.6697,-2.7631],[132.6627,-2.7586],[132.6634,-2.754],[132.6544,-2.7464],[132.6541,-2.743],[132.6481,-2.7408],[132.6395,-2.7345],[132.6436,-2.7321],[132.6418,-2.7284],[132.6336,-2.726],[132.6266,-2.7258],[132.6232,-2.7229],[132.6223,-2.7176],[132.6154,-2.7124],[132.6137,-2.7147],[132.6052,-2.709],[132.5991,-2.7087],[132.5976,-2.7039],[132.5926,-2.697],[132.5889,-2.6954],[132.5842,-2.6973],[132.5713,-2.6904],[132.5643,-2.6897],[132.5543,-2.693],[132.5461,-2.694],[132.536,-2.6859],[132.5241,-2.6813],[132.5166,-2.6821],[132.5135,-2.686],[132.5055,-2.6841],[132.5011,-2.6806],[132.493,-2.685],[132.4884,-2.6834],[132.4817,-2.686],[132.4816,-2.6932],[132.4775,-2.6904],[132.4713,-2.6935],[132.4805,-2.7017],[132.492,-2.7069],[132.494,-2.713],[132.4796,-2.7117],[132.4667,-2.7129],[132.4633,-2.7202],[132.4591,-2.7246],[132.4556,-2.7333],[132.4477,-2.7358],[132.4411,-2.7398],[132.4356,-2.74],[132.436,-2.7352],[132.443,-2.7292],[132.4474,-2.7274],[132.4499,-2.7192],[132.4574,-2.7125],[132.4533,-2.7089],[132.4484,-2.7072],[132.4445,-2.7087],[132.4425,-2.705],[132.4341,-2.7026],[132.4298,-2.7044],[132.4203,-2.6978],[132.4261,-2.6959],[132.4292,-2.6907],[132.436,-2.6917],[132.4406,-2.6902],[132.4402,-2.6796],[132.4355,-2.6806],[132.4263,-2.6779],[132.4218,-2.6802],[132.4193,-2.6851],[132.4111,-2.6826],[132.4074,-2.6867],[132.3997,-2.6876],[132.3951,-2.6896],[132.3891,-2.6851],[132.3785,-2.6836],[132.3769,-2.682],[132.3648,-2.677],[132.363,-2.6729],[132.3566,-2.6682],[132.349,-2.6701],[132.3431,-2.6655],[132.3326,-2.6667],[132.3298,-2.6628],[132.3184,-2.6611],[132.3046,-2.6635],[132.2972,-2.6619],[132.2795,-2.6606],[132.2756,-2.662],[132.2695,-2.66],[132.2556,-2.663],[132.2484,-2.6609],[132.2428,-2.6612],[132.2404,-2.6576],[132.2302,-2.6554],[132.2239,-2.6561],[132.2224,-2.6582],[132.2159,-2.6556],[132.2045,-2.6587],[132.198,-2.6559],[132.1851,-2.6603],[132.183,-2.6645],[132.1856,-2.6697],[132.1694,-2.6617],[132.1646,-2.6645],[132.1545,-2.6652],[132.1504,-2.6676],[132.143,-2.6664],[132.1383,-2.6718],[132.132,-2.6761],[132.1126,-2.6918],[132.1134,-2.6971],[132.1195,-2.7003],[132.1248,-2.6972],[132.1294,-2.6916],[132.1352,-2.6883],[132.1484,-2.6906],[132.1618,-2.6964],[132.1795,-2.6992],[132.1841,-2.6988],[132.1953,-2.7013],[132.2047,-2.7009],[132.2079,-2.7027],[132.1998,-2.7072],[132.1898,-2.7072],[132.1776,-2.7084],[132.1724,-2.71],[132.1695,-2.7138],[132.1658,-2.7111],[132.1501,-2.7175],[132.1498,-2.7217],[132.1462,-2.7238],[132.1416,-2.7232],[132.141,-2.7178],[132.1342,-2.7161],[132.1374,-2.7104],[132.1279,-2.713],[132.1257,-2.726],[132.1228,-2.7272],[132.1166,-2.7192],[132.1103,-2.7189],[132.1062,-2.7113],[132.102,-2.709],[132.0962,-2.7104],[132.0993,-2.719],[132.0911,-2.7161],[132.0895,-2.7218],[132.0978,-2.7298],[132.1037,-2.73],[132.1087,-2.7322],[132.1094,-2.7354],[132.1075,-2.7434],[132.1008,-2.7398],[132.0982,-2.7439],[132.0982,-2.7487],[132.0845,-2.7429],[132.0836,-2.7354],[132.0872,-2.7308],[132.0826,-2.7269],[132.0714,-2.729],[132.0679,-2.7347],[132.0721,-2.7431],[132.0698,-2.7502],[132.0597,-2.7514],[132.0561,-2.744],[132.0586,-2.7341],[132.0514,-2.7317],[132.0457,-2.7371],[132.0416,-2.7351],[132.0405,-2.7396],[132.0314,-2.7448],[132.0251,-2.7392],[132.0161,-2.7449],[132.0086,-2.7536],[131.9996,-2.7584],[131.999,-2.7616],[132.0003,-2.7758],[132.0038,-2.7814],[132.0122,-2.7799],[132.0254,-2.7798],[132.0279,-2.7733],[132.0339,-2.7714],[132.0399,-2.7722],[132.0463,-2.777],[132.0511,-2.7788],[132.052,-2.7838],[132.0576,-2.7865],[132.0683,-2.789],[132.056,-2.7922],[132.0582,-2.7981],[132.0511,-2.7959],[132.0509,-2.8014],[132.0485,-2.8081],[132.0372,-2.8138],[132.0281,-2.8122],[132.0249,-2.8149],[132.0197,-2.8128],[132.0174,-2.8153],[132.0171,-2.8225],[132.0075,-2.8192],[132.0059,-2.8246],[132.0022,-2.8291],[132.0123,-2.837],[132.0158,-2.8357],[132.0213,-2.837],[132.0236,-2.8398],[132.0287,-2.8393],[132.0334,-2.8409],[132.0317,-2.8451],[132.0228,-2.8541],[132.0253,-2.8585],[132.0249,-2.8631],[132.0317,-2.8758],[132.0274,-2.8791],[132.0233,-2.878],[132.021,-2.8814],[132.0163,-2.8812],[132.0042,-2.8778],[132.0016,-2.8785],[131.9996,-2.8888],[132.0022,-2.8991],[132.0052,-2.8924],[132.0144,-2.8939],[132.0167,-2.8968],[132.019,-2.9052],[132.0244,-2.9055],[132.0284,-2.9024],[132.0328,-2.9032],[132.0337,-2.917],[132.0387,-2.9245],[132.0443,-2.9274],[132.0487,-2.9236],[132.0448,-2.9182],[132.052,-2.9141],[132.0544,-2.9067],[132.0535,-2.8985],[132.0593,-2.8905],[132.0646,-2.9104],[132.0684,-2.9142],[132.0803,-2.9195],[132.0752,-2.9373],[132.078,-2.9444],[132.0794,-2.952],[132.0839,-2.9555],[132.0866,-2.9631],[132.1011,-2.9596],[132.104,-2.9552],[132.111,-2.9537],[132.1188,-2.954],[132.1129,-2.9406],[132.1199,-2.9364],[132.1286,-2.9409],[132.1325,-2.945],[132.1399,-2.9436],[132.1458,-2.946],[132.151,-2.9439],[132.1492,-2.9372],[132.1549,-2.9354],[132.1555,-2.9307],[132.1629,-2.9357],[132.1699,-2.9314],[132.1787,-2.9341],[132.1866,-2.9318],[132.1844,-2.9223],[132.1901,-2.9261],[132.1945,-2.9262],[132.2004,-2.9332],[132.2024,-2.9335],[132.2082,-2.9279],[132.2061,-2.9212],[132.2073,-2.9114],[132.2114,-2.918],[132.2171,-2.9209],[132.2202,-2.9265],[132.2373,-2.9254],[132.2495,-2.9274],[132.2617,-2.9276],[132.2662,-2.9292],[132.2709,-2.934],[132.2858,-2.9313],[132.2932,-2.9347],[132.3012,-2.9363],[132.3027,-2.9346],[132.3112,-2.9347],[132.3149,-2.9382],[132.3205,-2.9404],[132.3234,-2.9449],[132.3333,-2.9471],[132.3357,-2.9431],[132.3428,-2.9425],[132.3402,-2.9498],[132.346,-2.9525],[132.3469,-2.9472],[132.3535,-2.941],[132.355,-2.951],[132.3603,-2.9544],[132.3492,-2.9555],[132.347,-2.9612],[132.3519,-2.9689],[132.3595,-2.9679],[132.3664,-2.9719],[132.3689,-2.9779],[132.3723,-2.9769],[132.3804,-2.9805],[132.3862,-2.9851],[132.3925,-2.985],[132.393,-2.9891],[132.4069,-2.9917],[132.4143,-2.9952],[132.4225,-2.9969],[132.419,-3.0025],[132.4212,-3.0051],[132.4274,-3.0051],[132.4339,-3.01],[132.4361,-3.0093],[132.4408,-3.0155],[132.4437,-3.0164],[132.4522,-3.0234],[132.4565,-3.024],[132.4617,-3.0288],[132.4705,-3.0346],[132.473,-3.0393],[132.4787,-3.0384],[132.4811,-3.0426],[132.4892,-3.0509],[132.4941,-3.0517],[132.4983,-3.0556],[132.5016,-3.063],[132.5092,-3.065],[132.5112,-3.072],[132.5172,-3.0765],[132.5171,-3.0809],[132.5242,-3.0846],[132.5262,-3.084],[132.5368,-3.0962],[132.5426,-3.0979],[132.5444,-3.101],[132.5603,-3.1115],[132.569,-3.1241],[132.5726,-3.1329],[132.5771,-3.1374],[132.5697,-3.1395],[132.5655,-3.1362],[132.5556,-3.137],[132.5542,-3.1458],[132.5575,-3.1501],[132.5589,-3.157],[132.5775,-3.1663],[132.5795,-3.1628],[132.5845,-3.1671],[132.5937,-3.1709],[132.6025,-3.1689],[132.6004,-3.1802],[132.6078,-3.1804],[132.6142,-3.185],[132.6217,-3.1856],[132.6259,-3.1818],[132.6361,-3.1832],[132.6356,-3.1879],[132.6407,-3.1883],[132.6435,-3.1945],[132.6474,-3.1985],[132.6488,-3.2031],[132.6495,-3.2125],[132.6422,-3.2186],[132.6416,-3.2238],[132.6308,-3.2242],[132.6268,-3.2263],[132.617,-3.2238],[132.6117,-3.2248],[132.5977,-3.225],[132.5999,-3.2367],[132.611,-3.2456],[132.621,-3.2517],[132.6254,-3.2572],[132.6267,-3.2618],[132.6375,-3.2676],[132.6437,-3.2741],[132.6389,-3.2767],[132.6424,-3.2826],[132.6474,-3.287],[132.6512,-3.2949],[132.6532,-3.3037],[132.6566,-3.3087],[132.6612,-3.3097],[132.6617,-3.3157],[132.6665,-3.3185],[132.6684,-3.3224],[132.6722,-3.3216],[132.6791,-3.3288],[132.6929,-3.3322],[132.7014,-3.3356],[132.7097,-3.3425],[132.7201,-3.3455],[132.725,-3.3421],[132.7332,-3.3416],[132.7353,-3.3272],[132.7379,-3.3172],[132.7357,-3.3132],[132.7356,-3.3004],[132.7314,-3.2879],[132.7348,-3.2855],[132.7411,-3.2864],[132.7473,-3.2824],[132.7544,-3.2839],[132.7618,-3.2745],[132.7674,-3.2704],[132.7772,-3.2669],[132.7769,-3.2721],[132.7798,-3.276],[132.7853,-3.2747],[132.7894,-3.2799],[132.7981,-3.2797],[132.7987,-3.2762],[132.7896,-3.2735],[132.7924,-3.2697],[132.7975,-3.2688],[132.8105,-3.2722],[132.8086,-3.2791],[132.812,-3.283],[132.81,-3.287],[132.8055,-3.2854],[132.8106,-3.2957],[132.8133,-3.2988],[132.8206,-3.2998],[132.825,-3.3019],[132.8266,-3.3061],[132.8403,-3.309],[132.846,-3.3092],[132.8436,-3.3139],[132.8389,-3.3122],[132.834,-3.3163],[132.8357,-3.323],[132.8334,-3.3271],[132.8343,-3.332],[132.8311,-3.3379],[132.8278,-3.331],[132.8235,-3.3334],[132.8209,-3.3398],[132.82,-3.3501],[132.8101,-3.3544],[132.8038,-3.3653],[132.8067,-3.3784],[132.8046,-3.3816],[132.8086,-3.387],[132.8142,-3.391],[132.8157,-3.3942],[132.8177,-3.4077],[132.8221,-3.4143],[132.8199,-3.4178],[132.8232,-3.4335],[132.8212,-3.4374],[132.8246,-3.44],[132.8197,-3.4514],[132.8201,-3.4539],[132.8253,-3.4602],[132.8331,-3.4662],[132.8391,-3.4684],[132.8457,-3.4783],[132.8521,-3.4793],[132.8585,-3.4831],[132.869,-3.4827],[132.8709,-3.4743],[132.8756,-3.4708],[132.8817,-3.4695],[132.8917,-3.4709],[132.9001,-3.469],[132.9007,-3.4718],[132.8945,-3.4751],[132.8893,-3.4862],[132.8883,-3.4915],[132.8958,-3.4954],[132.8961,-3.5013],[132.8934,-3.5058],[132.895,-3.5137],[132.9,-3.5173],[132.9012,-3.5263],[132.9067,-3.5317],[132.9095,-3.5368],[132.9153,-3.5411],[132.92,-3.5409],[132.925,-3.5447],[132.9128,-3.5468],[132.9126,-3.5535],[132.9158,-3.5577],[132.9226,-3.5573],[132.9252,-3.5534],[132.9453,-3.5585],[132.9456,-3.5614],[132.9376,-3.5648],[132.9327,-3.5687],[132.9249,-3.5819],[132.9219,-3.5838],[132.9127,-3.5833],[132.9099,-3.5848],[132.9068,-3.5944],[132.8996,-3.6065],[132.901,-3.611],[132.8984,-3.621],[132.9034,-3.6367],[132.9056,-3.6409],[132.8961,-3.6507],[132.8893,-3.6518],[132.881,-3.6479],[132.8768,-3.65],[132.8652,-3.6512],[132.8589,-3.6489],[132.8539,-3.6505],[132.8459,-3.6462],[132.8428,-3.6476],[132.832,-3.6436],[132.8252,-3.6459],[132.8215,-3.644],[132.8055,-3.642],[132.7987,-3.644],[132.7805,-3.6439],[132.7714,-3.6424],[132.7671,-3.6386],[132.7538,-3.6327],[132.7474,-3.6337],[132.7437,-3.636],[132.7351,-3.6383],[132.731,-3.6425],[132.7337,-3.6634],[132.7339,-3.6688],[132.7381,-3.688],[132.7363,-3.6926],[132.7425,-3.6994],[132.7475,-3.7099],[132.7471,-3.7124],[132.7539,-3.7193],[132.7585,-3.7293],[132.763,-3.7538],[132.7682,-3.7593],[132.7682,-3.7642],[132.7725,-3.7686],[132.7758,-3.7652],[132.7795,-3.7711],[132.7789,-3.7788],[132.7823,-3.7828],[132.7826,-3.7886],[132.7877,-3.7964],[132.7874,-3.8016],[132.7895,-3.808],[132.7904,-3.8206],[132.7882,-3.826],[132.793,-3.8346],[132.799,-3.8379],[132.804,-3.852],[132.8008,-3.8537],[132.8057,-3.8597],[132.8073,-3.8647],[132.8114,-3.8687],[132.8121,-3.8766],[132.8186,-3.8867],[132.8259,-3.8916]]]}},{"type":"Feature","properties":{"mhid":"1332:480","alt_name":"KABUPATEN KAIMANA","latitude":-3.66093,"longitude":133.77451,"sample_value":25},"geometry":{"type":"MultiLineString","coordinates":[[[133.2214,-4.1118],[133.2162,-4.1061],[133.2136,-4.1013],[133.2069,-4.0981],[133.1991,-4.1024],[133.1985,-4.1051],[133.2025,-4.11],[133.2035,-4.1158],[133.2019,-4.1219],[133.1966,-4.1335],[133.1982,-4.1362],[133.1942,-4.1431],[133.1914,-4.1527],[133.1948,-4.1575],[133.1992,-4.1551],[133.2044,-4.158],[133.2064,-4.1624],[133.2073,-4.1702],[133.2039,-4.1783],[133.2067,-4.182],[133.2203,-4.1857],[133.2275,-4.1921],[133.2292,-4.1994],[133.2288,-4.2072],[133.2386,-4.2095],[133.2568,-4.2127],[133.2611,-4.2166],[133.2684,-4.2323],[133.2693,-4.2361],[133.2741,-4.2394],[133.2787,-4.2449],[133.2785,-4.2475],[133.2732,-4.2542],[133.2793,-4.2567],[133.2881,-4.2518],[133.2958,-4.2532],[133.3007,-4.2507],[133.3059,-4.2508],[133.3127,-4.2547],[133.3279,-4.2543],[133.3374,-4.2424],[133.3469,-4.2353],[133.3492,-4.2235],[133.3492,-4.2164],[133.3421,-4.2045],[133.3273,-4.1999],[133.3114,-4.1981],[133.3035,-4.194],[133.2883,-4.1882],[133.2785,-4.1796],[133.273,-4.1708],[133.2704,-4.1597],[133.2616,-4.1604],[133.2553,-4.152],[133.2484,-4.1467],[133.2474,-4.14],[133.24,-4.1422],[133.2332,-4.1398],[133.2314,-4.1354],[133.2327,-4.1119],[133.2295,-4.1109],[133.2244,-4.1131],[133.2214,-4.1118]],[[134.2622,-4.0369],[134.2649,-4.0319],[134.2617,-4.0282],[134.2599,-4.0168],[134.2561,-4.012],[134.2407,-4.0002],[134.2302,-3.9967],[134.2287,-3.9988],[134.2267,-4.0102],[134.2311,-4.0138],[134.2298,-4.0192],[134.2311,-4.0267],[134.2353,-4.0341],[134.2441,-4.0379],[134.2518,-4.038],[134.257,-4.0398],[134.2622,-4.0369]],[[134.3908,-3.9846],[134.3826,-3.9851],[134.3797,-3.9905],[134.3822,-3.9949],[134.3808,-3.9988],[134.3808,-4.0073],[134.3833,-4.0134],[134.3795,-4.0152],[134.3797,-4.0194],[134.3697,-4.0197],[134.369,-4.0251],[134.3637,-4.0271],[134.3677,-4.0314],[134.374,-4.0299],[134.3825,-4.0329],[134.3933,-4.0289],[134.4046,-4.0296],[134.4118,-4.0284],[134.4193,-4.0242],[134.4264,-4.0236],[134.4324,-4.0252],[134.4413,-4.0198],[134.4411,-4.0147],[134.4282,-4.0115],[134.4265,-4.0046],[134.4193,-4.002],[134.4137,-4.0027],[134.4138,-3.9972],[134.4106,-3.9943],[134.402,-3.9915],[134.3929,-3.9905],[134.3908,-3.9846]],[[134.9006,-3.9457],[134.9044,-3.9445],[134.904,-3.9391],[134.8975,-3.9383],[134.8931,-3.9452],[134.9006,-3.9457]],[[134.6959,-3.9356],[134.6808,-3.9341],[134.6754,-3.9369],[134.6758,-3.944],[134.6843,-3.9479],[134.6866,-3.9524],[134.6842,-3.9566],[134.6874,-3.9602],[134.7028,-3.9561],[134.7098,-3.9518],[134.7316,-3.949],[134.7316,-3.9448],[134.7242,-3.9404],[134.7094,-3.9355],[134.6959,-3.9356]],[[134.1009,-3.9143],[134.0919,-3.9143],[134.0806,-3.9186],[134.0716,-3.9174],[134.0675,-3.9204],[134.0551,-3.9173],[134.0518,-3.9232],[134.0608,-3.9285],[134.0644,-3.935],[134.0652,-3.94],[134.0699,-3.939],[134.074,-3.9435],[134.0749,-3.9502],[134.0738,-3.9596],[134.0787,-3.9715],[134.0855,-3.9813],[134.0918,-3.9833],[134.0933,-3.9873],[134.0994,-3.9887],[134.1079,-3.9867],[134.1133,-3.9921],[134.1184,-3.9947],[134.1266,-3.9964],[134.1337,-3.994],[134.1365,-3.9981],[134.1405,-3.9961],[134.1433,-3.9994],[134.1508,-3.9995],[134.155,-4.0034],[134.162,-4.0057],[134.1688,-4.0055],[134.1664,-4.0114],[134.1673,-4.0146],[134.1765,-4.0149],[134.1865,-4.0211],[134.1968,-4.0221],[134.1953,-4.028],[134.2025,-4.0297],[134.2051,-4.0284],[134.2057,-4.0228],[134.21,-4.0223],[134.2043,-4.0127],[134.2005,-4.0159],[134.1932,-4.0127],[134.1876,-4.0077],[134.1813,-4.008],[134.1778,-4.0039],[134.1788,-4.0003],[134.1749,-3.9938],[134.1696,-3.9932],[134.1662,-3.9797],[134.1681,-3.9754],[134.1635,-3.9739],[134.1623,-3.9792],[134.1549,-3.9713],[134.1507,-3.969],[134.1473,-3.9593],[134.1397,-3.9551],[134.1225,-3.9394],[134.1214,-3.9353],[134.1066,-3.9233],[134.1029,-3.9243],[134.0995,-3.9205],[134.1009,-3.9143]],[[133.934,-3.8871],[133.9377,-3.883],[133.9361,-3.8771],[133.9313,-3.8792],[133.9292,-3.8852],[133.934,-3.8871]],[[134.0375,-3.8564],[134.04,-3.8522],[134.0374,-3.8497],[134.0298,-3.8533],[134.0237,-3.8586],[134.0144,-3.8571],[134.0143,-3.8662],[134.0208,-3.8655],[134.0235,-3.8692],[134.0328,-3.8667],[134.0375,-3.8564]],[[134.0321,-3.8166],[134.0271,-3.8126],[134.0227,-3.8182],[134.0283,-3.8215],[134.0209,-3.8248],[134.0204,-3.8185],[134.0121,-3.8221],[134.0025,-3.8215],[134.0013,-3.8287],[134.0057,-3.8335],[134.0007,-3.8417],[134.0003,-3.8462],[134.0023,-3.8535],[134.0089,-3.8496],[134.0164,-3.8492],[134.0329,-3.8447],[134.0374,-3.8455],[134.0435,-3.8435],[134.0484,-3.836],[134.0511,-3.8272],[134.0444,-3.823],[134.0369,-3.8162],[134.0321,-3.8166]],[[133.889,-3.7307],[133.8896,-3.7254],[133.8836,-3.7223],[133.8745,-3.7215],[133.8698,-3.7316],[133.8726,-3.7479],[133.8787,-3.765],[133.8812,-3.7735],[133.8845,-3.7769],[133.8869,-3.7835],[133.8868,-3.7999],[133.891,-3.807],[133.8913,-3.8105],[133.8949,-3.8148],[133.8965,-3.8284],[133.9016,-3.8402],[133.9081,-3.849],[133.9162,-3.8556],[133.9193,-3.8632],[133.9226,-3.8677],[133.9213,-3.8751],[133.926,-3.8786],[133.9282,-3.8742],[133.9263,-3.8703],[133.9303,-3.8639],[133.932,-3.8582],[133.9295,-3.854],[133.9293,-3.8462],[133.923,-3.8476],[133.9267,-3.8366],[133.9216,-3.8224],[133.9135,-3.8081],[133.9083,-3.8056],[133.9101,-3.8021],[133.9075,-3.7985],[133.9062,-3.7916],[133.9037,-3.7874],[133.9043,-3.7788],[133.9012,-3.7609],[133.8992,-3.7583],[133.9015,-3.7538],[133.9015,-3.7469],[133.8966,-3.7347],[133.889,-3.7307]],[[133.6369,-3.4699],[133.633,-3.4652],[133.6293,-3.471],[133.6355,-3.4737],[133.6369,-3.4699]],[[133.6748,-3.4406],[133.68,-3.4389],[133.678,-3.434],[133.6707,-3.4373],[133.6748,-3.4406]],[[133.6171,-3.4236],[133.6139,-3.4231],[133.6108,-3.4313],[133.6015,-3.4345],[133.6042,-3.439],[133.6108,-3.4403],[133.6135,-3.4432],[133.6135,-3.4487],[133.6249,-3.4567],[133.6288,-3.4481],[133.6286,-3.4429],[133.6339,-3.436],[133.6307,-3.4272],[133.6221,-3.4238],[133.6171,-3.4236]],[[133.7741,-3.0549],[133.7726,-3.0589],[133.7673,-3.0634],[133.7666,-3.0741],[133.7674,-3.0797],[133.7713,-3.0814],[133.7771,-3.0944],[133.7783,-3.0995],[133.7827,-3.1039],[133.7922,-3.1027],[133.8009,-3.1104],[133.7989,-3.1021],[133.8,-3.093],[133.7977,-3.0863],[133.7928,-3.0813],[133.7894,-3.0752],[133.7857,-3.0611],[133.783,-3.0557],[133.7741,-3.0549]],[[132.8259,-3.8916],[132.8274,-3.8972],[132.8344,-3.9086],[132.8344,-3.9151],[132.8394,-3.924],[132.8458,-3.9285],[132.8497,-3.933],[132.8456,-3.9359],[132.8512,-3.9505],[132.8528,-3.9634],[132.8491,-3.9629],[132.8461,-3.9565],[132.8354,-3.9468],[132.8319,-3.946],[132.8329,-3.9388],[132.8297,-3.9326],[132.8218,-3.9276],[132.8172,-3.9293],[132.8121,-3.9395],[132.812,-3.9457],[132.8148,-3.9528],[132.823,-3.9648],[132.8315,-3.9684],[132.8317,-3.9613],[132.8374,-3.9599],[132.8423,-3.9656],[132.8473,-3.9664],[132.8483,-3.9701],[132.8451,-3.973],[132.8453,-3.9998],[132.848,-4.008],[132.8493,-4.0198],[132.8528,-4.0241],[132.8619,-4.0282],[132.8668,-4.0326],[132.8665,-4.0379],[132.8683,-4.0459],[132.8749,-4.0497],[132.8771,-4.0568],[132.8764,-4.0636],[132.8729,-4.0706],[132.8738,-4.0768],[132.8712,-4.0778],[132.8667,-4.0844],[132.8655,-4.0895],[132.8707,-4.091],[132.8772,-4.0994],[132.8897,-4.1019],[132.895,-4.1116],[132.9022,-4.1099],[132.9082,-4.1108],[132.9116,-4.1143],[132.9233,-4.1093],[132.9279,-4.1126],[132.9346,-4.1144],[132.9368,-4.1182],[132.9435,-4.1235],[132.9464,-4.1216],[132.9512,-4.1082],[132.949,-4.0998],[132.9634,-4.0915],[132.9614,-4.0885],[132.9642,-4.0804],[132.9684,-4.0793],[132.9736,-4.0721],[132.9776,-4.0701],[132.9844,-4.0705],[133.0012,-4.0608],[133.017,-4.0614],[133.0238,-4.0645],[133.0293,-4.065],[133.0442,-4.0719],[133.0523,-4.0728],[133.0647,-4.0761],[133.0763,-4.0743],[133.083,-4.0723],[133.0983,-4.0752],[133.1091,-4.0752],[133.1258,-4.0786],[133.1377,-4.0792],[133.146,-4.0767],[133.1535,-4.0722],[133.1568,-4.0687],[133.1622,-4.0575],[133.1647,-4.0556],[133.1706,-4.0424],[133.1775,-4.0359],[133.2,-4.0292],[133.2084,-4.0242],[133.2189,-4.0142],[133.2219,-4.0094],[133.2225,-4.0032],[133.2271,-4.0022],[133.2314,-3.9984],[133.2474,-3.996],[133.2616,-3.996],[133.2687,-3.9984],[133.2758,-4.0055],[133.2853,-4.0078],[133.2995,-4.0102],[133.3208,-4.0102],[133.3336,-4.0015],[133.339,-3.9894],[133.355,-3.9758],[133.3627,-3.9663],[133.3638,-3.9609],[133.3739,-3.9503],[133.3877,-3.9335],[133.4069,-3.912],[133.411,-3.9062],[133.4088,-3.9019],[133.409,-3.8932],[133.4129,-3.8869],[133.4193,-3.8824],[133.4091,-3.8813],[133.3943,-3.8864],[133.3794,-3.8827],[133.3665,-3.8765],[133.3581,-3.8703],[133.3393,-3.8627],[133.3524,-3.8642],[133.3624,-3.8684],[133.3708,-3.8751],[133.3775,-3.8775],[133.3908,-3.8805],[133.3975,-3.88],[133.4037,-3.8765],[133.4174,-3.8767],[133.4268,-3.8794],[133.4364,-3.8741],[133.4417,-3.8664],[133.4488,-3.8683],[133.4548,-3.8648],[133.4631,-3.8644],[133.466,-3.8584],[133.4627,-3.8475],[133.4617,-3.8405],[133.459,-3.8364],[133.4594,-3.8276],[133.4555,-3.8225],[133.4429,-3.8112],[133.439,-3.8091],[133.4288,-3.8074],[133.4219,-3.8036],[133.4176,-3.7986],[133.4155,-3.7878],[133.4154,-3.7732],[133.4137,-3.7682],[133.4041,-3.7599],[133.4008,-3.7557],[133.399,-3.7449],[133.4006,-3.7354],[133.4066,-3.723],[133.4125,-3.7142],[133.4123,-3.7063],[133.4164,-3.6975],[133.437,-3.6895],[133.4538,-3.6793],[133.4598,-3.6744],[133.4705,-3.6637],[133.4764,-3.6558],[133.4819,-3.6433],[133.4893,-3.6333],[133.4955,-3.6279],[133.4799,-3.6067],[133.4913,-3.5957],[133.499,-3.5904],[133.5003,-3.5869],[133.4929,-3.5731],[133.4931,-3.5687],[133.4892,-3.5614],[133.484,-3.5633],[133.4745,-3.564],[133.4689,-3.5609],[133.4645,-3.5551],[133.455,-3.5484],[133.4187,-3.5512],[133.3938,-3.5457],[133.3513,-3.5528],[133.3424,-3.5427],[133.3079,-3.5427],[133.2881,-3.5394],[133.2847,-3.5322],[133.2965,-3.5373],[133.3033,-3.5373],[133.3113,-3.5394],[133.329,-3.5394],[133.3328,-3.5374],[133.3378,-3.5402],[133.3437,-3.5385],[133.3509,-3.544],[133.3542,-3.5491],[133.3618,-3.5482],[133.3803,-3.544],[133.3905,-3.54],[133.4077,-3.5453],[133.4486,-3.5453],[133.433,-3.5343],[133.4221,-3.5297],[133.3985,-3.5073],[133.4178,-3.509],[133.4351,-3.5116],[133.4393,-3.5196],[133.4456,-3.5234],[133.4511,-3.5352],[133.4589,-3.5466],[133.4732,-3.5527],[133.4782,-3.5599],[133.4864,-3.557],[133.4916,-3.5577],[133.4953,-3.5646],[133.5005,-3.5622],[133.5092,-3.5605],[133.5009,-3.5501],[133.4992,-3.5414],[133.5029,-3.5349],[133.5068,-3.5328],[133.5146,-3.5315],[133.515,-3.5354],[133.5053,-3.5393],[133.5033,-3.5479],[133.5109,-3.5549],[133.514,-3.5609],[133.5127,-3.5646],[133.4983,-3.5703],[133.4975,-3.5742],[133.5016,-3.5757],[133.5061,-3.5807],[133.5085,-3.5876],[133.5081,-3.5945],[133.5003,-3.6077],[133.496,-3.6218],[133.5082,-3.6179],[133.5209,-3.6095],[133.526,-3.6071],[133.5335,-3.5971],[133.5391,-3.5967],[133.5522,-3.589],[133.555,-3.5856],[133.5604,-3.5838],[133.5669,-3.5838],[133.5775,-3.5781],[133.5873,-3.5744],[133.5896,-3.5689],[133.5908,-3.5599],[133.5936,-3.5497],[133.6018,-3.5352],[133.6022,-3.5313],[133.5979,-3.5221],[133.5912,-3.5135],[133.5855,-3.5093],[133.5783,-3.497],[133.5701,-3.4856],[133.5616,-3.4753],[133.5558,-3.4603],[133.5496,-3.4548],[133.5349,-3.4501],[133.5209,-3.4442],[133.4965,-3.4302],[133.4939,-3.4266],[133.4932,-3.4213],[133.4784,-3.4226],[133.473,-3.4217],[133.4702,-3.4188],[133.4702,-3.4085],[133.4787,-3.4202],[133.4847,-3.4199],[133.4968,-3.4173],[133.4999,-3.4231],[133.5063,-3.4301],[133.5169,-3.4368],[133.5222,-3.4389],[133.5392,-3.4421],[133.5463,-3.4427],[133.5534,-3.4408],[133.5594,-3.4324],[133.5494,-3.4216],[133.548,-3.4125],[133.5574,-3.4162],[133.5605,-3.4207],[133.5623,-3.4269],[133.5665,-3.4323],[133.579,-3.4302],[133.5872,-3.4311],[133.59,-3.4259],[133.6008,-3.4249],[133.6092,-3.421],[133.6106,-3.4151],[133.6131,-3.4144],[133.6203,-3.4176],[133.6305,-3.4164],[133.6359,-3.4183],[133.6427,-3.4151],[133.6494,-3.4072],[133.6598,-3.3919],[133.666,-3.3811],[133.6688,-3.3713],[133.6672,-3.3573],[133.6712,-3.3437],[133.6687,-3.3329],[133.6631,-3.3339],[133.6623,-3.3281],[133.6676,-3.3215],[133.6652,-3.3113],[133.6716,-3.3069],[133.6677,-3.2966],[133.6628,-3.2792],[133.661,-3.2576],[133.6617,-3.2529],[133.656,-3.236],[133.6597,-3.2319],[133.6616,-3.2264],[133.6655,-3.2228],[133.6748,-3.219],[133.6775,-3.2146],[133.6767,-3.211],[133.6718,-3.2086],[133.6712,-3.202],[133.6668,-3.1905],[133.6696,-3.1823],[133.6696,-3.1758],[133.6649,-3.1747],[133.6644,-3.1689],[133.6578,-3.1627],[133.6592,-3.1542],[133.6627,-3.1498],[133.66,-3.1435],[133.6611,-3.1364],[133.6573,-3.128],[133.6578,-3.1228],[133.6688,-3.1211],[133.6731,-3.1255],[133.6772,-3.1203],[133.6828,-3.1029],[133.6918,-3.0974],[133.6985,-3.0878],[133.7055,-3.082],[133.7116,-3.0721],[133.7214,-3.0603],[133.7258,-3.0505],[133.7301,-3.0438],[133.7357,-3.0382],[133.7429,-3.0338],[133.7567,-3.0344],[133.7605,-3.0306],[133.7614,-3.0262],[133.7656,-3.0237],[133.7714,-3.0231],[133.7818,-3.0278],[133.7885,-3.0262],[133.8015,-3.0291],[133.7996,-3.0234],[133.8007,-3.0142],[133.8116,-3.0073],[133.8245,-3.0047],[133.8384,-2.9953],[133.8455,-2.9894],[133.8486,-2.9794],[133.856,-2.9727],[133.8622,-2.965],[133.8611,-2.9735],[133.8618,-2.9818],[133.8636,-2.9873],[133.8666,-3.0051],[133.8713,-3.014],[133.8761,-3.0192],[133.8721,-3.0224],[133.8682,-3.0285],[133.8752,-3.0389],[133.8832,-3.0474],[133.8895,-3.0628],[133.8958,-3.0749],[133.9053,-3.0847],[133.9039,-3.0872],[133.895,-3.0814],[133.8851,-3.0636],[133.8812,-3.0602],[133.8704,-3.0586],[133.8639,-3.048],[133.8629,-3.0368],[133.853,-3.025],[133.8449,-3.0236],[133.8422,-3.0249],[133.8344,-3.0367],[133.8357,-3.0502],[133.8348,-3.0642],[133.8384,-3.0762],[133.8392,-3.0827],[133.8353,-3.0934],[133.8283,-3.0975],[133.8257,-3.1041],[133.8203,-3.1073],[133.813,-3.1089],[133.8144,-3.1138],[133.8107,-3.1207],[133.8022,-3.1231],[133.7993,-3.122],[133.7962,-3.1166],[133.7908,-3.1182],[133.7875,-3.1155],[133.78,-3.1166],[133.7785,-3.1282],[133.7828,-3.1353],[133.7841,-3.1461],[133.7803,-3.1524],[133.7814,-3.1566],[133.778,-3.1625],[133.7777,-3.1701],[133.7795,-3.1727],[133.7748,-3.1779],[133.7627,-3.1789],[133.7534,-3.1768],[133.7457,-3.1731],[133.7302,-3.1763],[133.7234,-3.1817],[133.7126,-3.1787],[133.7088,-3.1739],[133.7058,-3.1743],[133.7041,-3.18],[133.7096,-3.1904],[133.7099,-3.2001],[133.7078,-3.2146],[133.7042,-3.218],[133.6979,-3.2199],[133.6871,-3.219],[133.6802,-3.228],[133.6754,-3.2313],[133.672,-3.2448],[133.6733,-3.2574],[133.6734,-3.2707],[133.6771,-3.288],[133.6784,-3.3022],[133.6808,-3.311],[133.6821,-3.3222],[133.6777,-3.3266],[133.6847,-3.3471],[133.6848,-3.3521],[133.6884,-3.3544],[133.6879,-3.3604],[133.6912,-3.3715],[133.6924,-3.3798],[133.6987,-3.3955],[133.7033,-3.4056],[133.7012,-3.4138],[133.6959,-3.4173],[133.6907,-3.4236],[133.6861,-3.4319],[133.6839,-3.4389],[133.6717,-3.4452],[133.6691,-3.4493],[133.6611,-3.4531],[133.6566,-3.4533],[133.646,-3.4513],[133.6422,-3.4525],[133.6428,-3.4588],[133.6412,-3.4628],[133.6406,-3.4736],[133.6354,-3.4775],[133.6302,-3.4776],[133.6283,-3.4822],[133.6312,-3.4895],[133.6438,-3.5021],[133.6486,-3.4997],[133.6538,-3.5044],[133.6536,-3.5107],[133.6559,-3.5185],[133.6626,-3.516],[133.661,-3.5274],[133.6686,-3.5352],[133.6763,-3.5391],[133.6729,-3.5458],[133.6782,-3.5486],[133.6902,-3.5626],[133.6922,-3.5776],[133.6965,-3.5797],[133.7003,-3.5787],[133.6973,-3.5874],[133.7015,-3.592],[133.7064,-3.59],[133.7064,-3.5973],[133.7089,-3.6043],[133.7128,-3.6104],[133.7114,-3.6202],[133.7086,-3.6255],[133.6992,-3.6397],[133.6986,-3.6624],[133.6945,-3.6724],[133.6956,-3.6747],[133.7065,-3.676],[133.7156,-3.668],[133.7218,-3.6667],[133.7305,-3.6623],[133.736,-3.6553],[133.7409,-3.6523],[133.7509,-3.6494],[133.7552,-3.6496],[133.7589,-3.6533],[133.7646,-3.6628],[133.766,-3.673],[133.7714,-3.673],[133.7746,-3.6776],[133.776,-3.6853],[133.785,-3.6944],[133.7868,-3.6991],[133.7929,-3.7027],[133.7954,-3.7066],[133.8021,-3.7087],[133.8036,-3.7137],[133.8141,-3.7248],[133.8179,-3.7307],[133.8209,-3.7297],[133.8232,-3.7185],[133.8225,-3.7131],[133.8176,-3.6985],[133.8115,-3.6919],[133.8043,-3.6777],[133.8003,-3.6676],[133.7962,-3.6519],[133.7932,-3.6461],[133.7897,-3.6434],[133.7906,-3.6328],[133.7892,-3.6182],[133.7921,-3.6062],[133.7959,-3.6029],[133.8038,-3.5916],[133.8083,-3.5879],[133.8122,-3.581],[133.8181,-3.576],[133.8224,-3.5688],[133.8326,-3.5637],[133.8368,-3.5602],[133.8414,-3.562],[133.8433,-3.5697],[133.8424,-3.578],[133.8446,-3.586],[133.8447,-3.5936],[133.8463,-3.6038],[133.8431,-3.6086],[133.8417,-3.6148],[133.8442,-3.623],[133.8468,-3.6384],[133.8498,-3.6433],[133.8617,-3.653],[133.8661,-3.6604],[133.8797,-3.6686],[133.8871,-3.6721],[133.8869,-3.6773],[133.892,-3.686],[133.8958,-3.6873],[133.9044,-3.6938],[133.9105,-3.7036],[133.9122,-3.7203],[133.9156,-3.7223],[133.9143,-3.7272],[133.9165,-3.7331],[133.9191,-3.7479],[133.922,-3.749],[133.9298,-3.7576],[133.9321,-3.7547],[133.9366,-3.7551],[133.9361,-3.7604],[133.9462,-3.7763],[133.9337,-3.7698],[133.929,-3.7619],[133.9213,-3.7557],[133.9175,-3.767],[133.9164,-3.7741],[133.9165,-3.7846],[133.924,-3.8027],[133.9301,-3.8157],[133.9343,-3.8167],[133.933,-3.8227],[133.9371,-3.834],[133.9415,-3.8415],[133.9486,-3.8506],[133.9588,-3.856],[133.9596,-3.8598],[133.9645,-3.8639],[133.9731,-3.8593],[133.9686,-3.8559],[133.9677,-3.8497],[133.9726,-3.8489],[133.9779,-3.8448],[133.9816,-3.8466],[133.9832,-3.8363],[133.9872,-3.8277],[133.9919,-3.8243],[133.9946,-3.8295],[134.0009,-3.819],[134.0073,-3.8099],[134.0127,-3.8076],[134.016,-3.8041],[134.0212,-3.8028],[134.0297,-3.793],[134.0378,-3.7903],[134.0432,-3.7852],[134.0481,-3.7872],[134.0527,-3.7956],[134.0518,-3.7981],[134.0527,-3.8105],[134.0629,-3.8222],[134.0651,-3.8235],[134.073,-3.8226],[134.0757,-3.8186],[134.0821,-3.8153],[134.0902,-3.8085],[134.0926,-3.8038],[134.1,-3.8019],[134.1084,-3.7962],[134.114,-3.7955],[134.1208,-3.7916],[134.1181,-3.7875],[134.1173,-3.7793],[134.1134,-3.7798],[134.1113,-3.7748],[134.1033,-3.7699],[134.1085,-3.7627],[134.1139,-3.7524],[134.1228,-3.7509],[134.126,-3.7543],[134.1246,-3.7597],[134.1275,-3.7639],[134.1336,-3.763],[134.133,-3.7581],[134.1352,-3.7505],[134.1401,-3.7461],[134.1367,-3.7428],[134.1225,-3.7362],[134.1153,-3.7243],[134.1038,-3.7201],[134.1023,-3.716],[134.0926,-3.7147],[134.0823,-3.7056],[134.0755,-3.7015],[134.0588,-3.6726],[134.0577,-3.6676],[134.0686,-3.6519],[134.0704,-3.628],[134.072,-3.628],[134.0704,-3.6528],[134.0677,-3.6549],[134.0597,-3.6671],[134.0594,-3.6691],[134.0762,-3.6999],[134.0831,-3.7042],[134.0932,-3.7136],[134.1029,-3.7153],[134.105,-3.7198],[134.1158,-3.7236],[134.123,-3.7358],[134.136,-3.7416],[134.1382,-3.7442],[134.145,-3.7473],[134.1452,-3.7571],[134.1487,-3.7621],[134.1531,-3.7616],[134.1543,-3.7679],[134.1581,-3.7722],[134.1625,-3.7732],[134.1663,-3.7812],[134.1714,-3.7746],[134.175,-3.7772],[134.1723,-3.7903],[134.1784,-3.7925],[134.174,-3.7963],[134.175,-3.8037],[134.1782,-3.8073],[134.1791,-3.8135],[134.184,-3.8209],[134.1819,-3.828],[134.1881,-3.8252],[134.1946,-3.8311],[134.1927,-3.8334],[134.1832,-3.838],[134.1758,-3.8462],[134.1701,-3.8499],[134.1659,-3.855],[134.1541,-3.8623],[134.1498,-3.8707],[134.1426,-3.8757],[134.1356,-3.8755],[134.1271,-3.8823],[134.1186,-3.8851],[134.1052,-3.8954],[134.1067,-3.8988],[134.1115,-3.8959],[134.1102,-3.9061],[134.1159,-3.9016],[134.1202,-3.9036],[134.1261,-3.9039],[134.1324,-3.901],[134.136,-3.8948],[134.1462,-3.8949],[134.154,-3.8965],[134.1611,-3.9046],[134.1702,-3.8958],[134.1708,-3.9074],[134.1737,-3.9109],[134.1688,-3.9168],[134.1751,-3.9268],[134.1754,-3.9323],[134.1817,-3.9381],[134.183,-3.9434],[134.1881,-3.9496],[134.1938,-3.9541],[134.1984,-3.9609],[134.203,-3.9625],[134.219,-3.9726],[134.2267,-3.9742],[134.2315,-3.9775],[134.2432,-3.9806],[134.2452,-3.9766],[134.2398,-3.9667],[134.2447,-3.9683],[134.2547,-3.9797],[134.2619,-3.9856],[134.2626,-3.9899],[134.2755,-3.9982],[134.2802,-4.0031],[134.2827,-4.0095],[134.2921,-4.024],[134.2894,-4.0321],[134.292,-4.0376],[134.2908,-4.0415],[134.3027,-4.0465],[134.3106,-4.0459],[134.3176,-4.0428],[134.3209,-4.0385],[134.3251,-4.0296],[134.3296,-4.0253],[134.3273,-4.0206],[134.3352,-4.0184],[134.326,-4.0064],[134.3222,-4.0043],[134.3256,-4.0001],[134.3236,-3.9951],[134.319,-3.9922],[134.3116,-3.9841],[134.3095,-3.979],[134.3004,-3.9688],[134.301,-3.9651],[134.2941,-3.9581],[134.2893,-3.9577],[134.279,-3.9482],[134.2749,-3.9494],[134.2706,-3.9388],[134.2715,-3.9324],[134.2793,-3.9346],[134.2839,-3.9336],[134.2927,-3.9403],[134.2975,-3.9416],[134.3056,-3.9482],[134.3097,-3.9563],[134.3235,-3.9633],[134.3272,-3.9618],[134.3364,-3.9652],[134.3443,-3.9644],[134.3481,-3.9625],[134.3532,-3.964],[134.353,-3.9589],[134.3578,-3.9546],[134.3605,-3.9445],[134.3547,-3.9396],[134.3517,-3.9333],[134.3496,-3.9157],[134.3564,-3.9168],[134.3623,-3.9151],[134.3531,-3.9075],[134.3406,-3.8992],[134.338,-3.8957],[134.3294,-3.8924],[134.3268,-3.8841],[134.3286,-3.8807],[134.3352,-3.8775],[134.3437,-3.8808],[134.3469,-3.8839],[134.35,-3.8913],[134.3554,-3.8952],[134.3722,-3.9013],[134.3792,-3.9054],[134.3826,-3.909],[134.3892,-3.9102],[134.3927,-3.913],[134.4034,-3.9183],[134.4107,-3.9203],[134.4113,-3.916],[134.4181,-3.9144],[134.421,-3.9168],[134.4276,-3.9181],[134.4337,-3.9152],[134.4405,-3.9167],[134.446,-3.9255],[134.4464,-3.9298],[134.455,-3.9313],[134.454,-3.9385],[134.4561,-3.9459],[134.4664,-3.9497],[134.4658,-3.9553],[134.4772,-3.9657],[134.4781,-3.9743],[134.4753,-3.9821],[134.4692,-3.9824],[134.4635,-3.9796],[134.452,-3.9761],[134.4498,-3.9795],[134.4527,-3.9837],[134.4571,-3.984],[134.461,-3.9893],[134.4675,-3.992],[134.4704,-3.9981],[134.474,-4.0021],[134.4835,-4.0045],[134.487,-4.0089],[134.4969,-4.0129],[134.5039,-4.0136],[134.5024,-4.0173],[134.5037,-4.0221],[134.496,-4.025],[134.5055,-4.0367],[134.5111,-4.0414],[134.5192,-4.0361],[134.5269,-4.0372],[134.5322,-4.0363],[134.5372,-4.0302],[134.5416,-4.0272],[134.5431,-4.0315],[134.5474,-4.03],[134.5482,-4.0211],[134.5569,-4.0082],[134.5667,-4.0058],[134.5736,-3.9971],[134.5813,-3.9951],[134.5871,-3.9996],[134.6055,-3.9962],[134.6125,-3.9871],[134.6148,-3.9812],[134.6146,-3.9747],[134.6111,-3.9692],[134.6125,-3.9664],[134.6176,-3.9652],[134.6197,-3.9616],[134.6254,-3.9599],[134.6226,-3.9551],[134.6266,-3.948],[134.6377,-3.9431],[134.6454,-3.9444],[134.657,-3.9369],[134.6647,-3.9345],[134.6595,-3.9295],[134.6513,-3.9274],[134.6555,-3.9212],[134.6755,-3.9174],[134.682,-3.9201],[134.6871,-3.9196],[134.6922,-3.916],[134.6978,-3.9176],[134.705,-3.9169],[134.711,-3.9203],[134.7273,-3.9323],[134.7361,-3.9361],[134.7425,-3.928],[134.7476,-3.9185],[134.7555,-3.9138],[134.7598,-3.9127],[134.7681,-3.9139],[134.781,-3.9183],[134.7896,-3.9227],[134.7979,-3.9297],[134.8051,-3.9328],[134.821,-3.9347],[134.8263,-3.9367],[134.8406,-3.9363],[134.8476,-3.9392],[134.8573,-3.9373],[134.8606,-3.9383],[134.8675,-3.9444],[134.8737,-3.9475],[134.8824,-3.9403],[134.883,-3.9304],[134.8871,-3.9296],[134.891,-3.9331],[134.8995,-3.9358],[134.9083,-3.9364],[134.9205,-3.9307],[134.9284,-3.9317],[134.9264,-3.9358],[134.9198,-3.9334],[134.9141,-3.9406],[134.9074,-3.9446],[134.9048,-3.9523],[134.9099,-3.9597],[134.9224,-3.9584],[134.9302,-3.9528],[134.9418,-3.9499],[134.9505,-3.9505],[134.9573,-3.9442],[134.9688,-3.9506],[134.9679,-3.9575],[134.9641,-3.9608],[134.9574,-3.9619],[134.9449,-3.966],[134.9428,-3.9687],[134.9475,-3.9746],[134.9459,-3.9788],[134.9422,-3.9777],[134.9294,-3.9779],[134.9206,-3.9826],[134.913,-3.978],[134.9037,-3.9779],[134.8902,-3.9722],[134.8838,-3.9738],[134.8671,-3.9727],[134.864,-3.9769],[134.862,-3.9673],[134.8582,-3.9646],[134.8596,-3.9597],[134.8579,-3.9496],[134.8359,-3.9496],[134.8323,-3.9506],[134.8266,-3.9471],[134.8128,-3.9446],[134.8053,-3.9393],[134.7973,-3.9375],[134.7861,-3.9367],[134.7614,-3.9304],[134.7562,-3.9321],[134.7501,-3.9399],[134.742,-3.9425],[134.7339,-3.9506],[134.7242,-3.9565],[134.7198,-3.9537],[134.6949,-3.9624],[134.6903,-3.9662],[134.6827,-3.9657],[134.6779,-3.9759],[134.6725,-3.9791],[134.6576,-3.9799],[134.657,-3.9827],[134.6606,-3.9876],[134.6666,-4.0014],[134.6684,-4.01],[134.6675,-4.0189],[134.664,-4.0243],[134.6633,-4.0338],[134.6652,-4.0363],[134.6733,-4.0395],[134.6714,-4.0423],[134.6767,-4.0461],[134.6819,-4.0534],[134.6958,-4.0554],[134.7073,-4.0532],[134.7189,-4.0564],[134.7151,-4.061],[134.7101,-4.0619],[134.7014,-4.0678],[134.686,-4.0667],[134.6795,-4.0734],[134.6672,-4.0774],[134.6484,-4.082],[134.6429,-4.0879],[134.6352,-4.0922],[134.6341,-4.1025],[134.6289,-4.1126],[134.6231,-4.1163],[134.6237,-4.1195],[134.6305,-4.1206],[134.6465,-4.1341],[134.6507,-4.1349],[134.6614,-4.1344],[134.6726,-4.139],[134.6825,-4.1403],[134.6998,-4.1403],[134.7063,-4.1378],[134.7115,-4.1514],[134.7162,-4.1603],[134.7151,-4.1639],[134.7207,-4.1739],[134.7224,-4.1866],[134.7194,-4.1983],[134.7275,-4.2011],[134.7336,-4.1979],[134.7366,-4.2007],[134.7344,-4.2053],[134.7374,-4.2074],[134.7433,-4.2076],[134.7484,-4.2047],[134.7594,-4.2065],[134.768,-4.216],[134.7731,-4.2281],[134.7845,-4.2341],[134.7869,-4.2364],[134.7959,-4.2382],[134.7995,-4.2364],[134.8096,-4.2457],[134.8096,-4.2518],[134.8158,-4.2532],[134.8174,-4.2504],[134.8255,-4.2549],[134.8309,-4.2554],[134.8477,-4.25],[134.857,-4.2537],[134.8636,-4.2513],[134.8703,-4.2512]]]}},{"type":"Feature","properties":{"mhid":"1332:481","alt_name":"KABUPATEN TELUK WONDAMA","latitude":-2.7,"longitude":134.5,"sample_value":930},"geometry":{"type":"MultiLineString","coordinates":[[[134.4828,-2.8596],[134.4837,-2.8573],[134.4797,-2.8523],[134.475,-2.8581],[134.4799,-2.8625],[134.4828,-2.8596]],[[134.3833,-2.5312],[134.3783,-2.5232],[134.3721,-2.5262],[134.3705,-2.532],[134.373,-2.5417],[134.3702,-2.5509],[134.3747,-2.5535],[134.3795,-2.5676],[134.3851,-2.5771],[134.3899,-2.5787],[134.3926,-2.5756],[134.3961,-2.5613],[134.3943,-2.5517],[134.3941,-2.5426],[134.39,-2.532],[134.3833,-2.5312]],[[134.3089,-2.5006],[134.3086,-2.4956],[134.306,-2.4894],[134.3018,-2.4854],[134.3034,-2.4977],[134.3089,-2.5006]],[[134.5234,-2.4582],[134.5213,-2.4528],[134.5171,-2.4567],[134.5234,-2.4582]],[[134.5221,-2.4343],[134.5175,-2.4385],[134.5222,-2.4406],[134.5276,-2.4374],[134.5221,-2.4343]],[[134.5056,-2.3457],[134.5018,-2.3462],[134.5009,-2.3524],[134.5102,-2.3548],[134.5214,-2.3533],[134.5241,-2.3556],[134.5276,-2.352],[134.5184,-2.3448],[134.5056,-2.3457]],[[134.5267,-2.3128],[134.5318,-2.3107],[134.5317,-2.3062],[134.5256,-2.3017],[134.5184,-2.3009],[134.521,-2.3086],[134.5267,-2.3128]],[[134.4717,-2.3287],[134.4766,-2.3164],[134.4863,-2.3116],[134.491,-2.3074],[134.4915,-2.3013],[134.4861,-2.2982],[134.4823,-2.2986],[134.466,-2.3107],[134.4618,-2.3179],[134.4627,-2.3258],[134.4717,-2.3287]],[[134.5728,-2.3524],[134.5759,-2.3421],[134.5728,-2.3341],[134.5738,-2.3282],[134.5768,-2.3225],[134.5762,-2.3173],[134.5693,-2.3112],[134.57,-2.3036],[134.5733,-2.2949],[134.5706,-2.2848],[134.5628,-2.2836],[134.5617,-2.2884],[134.5645,-2.2955],[134.5601,-2.3062],[134.563,-2.3183],[134.56,-2.3259],[134.553,-2.3306],[134.5512,-2.3334],[134.5542,-2.3376],[134.5649,-2.3387],[134.5684,-2.3433],[134.5687,-2.3471],[134.5654,-2.3531],[134.5597,-2.3533],[134.5623,-2.3638],[134.558,-2.3712],[134.5509,-2.3689],[134.5443,-2.3693],[134.5367,-2.3671],[134.5294,-2.3698],[134.5237,-2.3667],[134.5114,-2.3671],[134.5043,-2.362],[134.5026,-2.3687],[134.5049,-2.3714],[134.504,-2.3768],[134.5072,-2.3784],[134.5108,-2.3837],[134.5205,-2.3859],[134.52,-2.3882],[134.5098,-2.3874],[134.5073,-2.3892],[134.5078,-2.3959],[134.5103,-2.4007],[134.5147,-2.4045],[134.5245,-2.4032],[134.5294,-2.4049],[134.5291,-2.4104],[134.5337,-2.4152],[134.5464,-2.4132],[134.5583,-2.4156],[134.5603,-2.4194],[134.5509,-2.4224],[134.5459,-2.4217],[134.5423,-2.4267],[134.5349,-2.4267],[134.5314,-2.4306],[134.5338,-2.4331],[134.5413,-2.4343],[134.5461,-2.4381],[134.552,-2.4373],[134.5642,-2.4436],[134.5683,-2.4353],[134.5739,-2.4352],[134.5771,-2.4311],[134.5762,-2.4196],[134.5673,-2.4168],[134.5608,-2.411],[134.5612,-2.4047],[134.5642,-2.4036],[134.5734,-2.4054],[134.5745,-2.3992],[134.5792,-2.3983],[134.5833,-2.4024],[134.5875,-2.4007],[134.5885,-2.3938],[134.5863,-2.3845],[134.5782,-2.3838],[134.5784,-2.3778],[134.5764,-2.3711],[134.5721,-2.3633],[134.5728,-2.3524]],[[134.4783,-2.2413],[134.4818,-2.2334],[134.4872,-2.2243],[134.4947,-2.2165],[134.4951,-2.2139],[134.4855,-2.2035],[134.4819,-2.2053],[134.4777,-2.2126],[134.4777,-2.2255],[134.4735,-2.2328],[134.472,-2.242],[134.4753,-2.2443],[134.4783,-2.2413]],[[134.7463,-2.16],[134.7471,-2.1557],[134.7391,-2.1479],[134.7368,-2.1486],[134.7402,-2.1568],[134.7463,-2.16]],[[134.7288,-2.0836],[134.7287,-2.0742],[134.723,-2.0735],[134.7229,-2.0827],[134.7288,-2.0836]],[[134.7408,-2.0526],[134.7455,-2.0488],[134.7465,-2.0415],[134.7446,-2.0302],[134.7407,-2.0252],[134.7407,-2.0186],[134.7365,-2.0174],[134.7253,-2.026],[134.7297,-2.0352],[134.7319,-2.0464],[134.7369,-2.0519],[134.7408,-2.0526]],[[134.1591,-2.0247],[134.1581,-2.0159],[134.1541,-2.007],[134.1496,-2.0185],[134.1486,-2.0296],[134.1514,-2.034],[134.148,-2.0368],[134.151,-2.0498],[134.1564,-2.0545],[134.158,-2.0501],[134.156,-2.042],[134.1569,-2.037],[134.1553,-2.032],[134.1563,-2.0269],[134.1591,-2.0247]],[[134.4129,-2.0425],[134.4073,-2.0357],[134.4075,-2.0221],[134.4052,-2.0149],[134.406,-2.0081],[134.4047,-2.0001],[134.3893,-1.9932],[134.3789,-1.9918],[134.3735,-1.9922],[134.3618,-1.9981],[134.3559,-2.01],[134.3479,-2.0208],[134.3441,-2.0283],[134.3424,-2.0386],[134.3384,-2.0463],[134.3261,-2.0625],[134.319,-2.0694],[134.3158,-2.0756],[134.3146,-2.0833],[134.3196,-2.0869],[134.3239,-2.0861],[134.3278,-2.0882],[134.3251,-2.095],[134.3224,-2.0949],[134.3173,-2.089],[134.311,-2.0931],[134.3109,-2.0993],[134.3172,-2.0985],[134.3336,-2.1062],[134.3364,-2.1136],[134.334,-2.1231],[134.3345,-2.1347],[134.3377,-2.142],[134.3407,-2.1456],[134.3401,-2.1514],[134.3468,-2.1659],[134.3511,-2.167],[134.3537,-2.1582],[134.3612,-2.1549],[134.3708,-2.1403],[134.3728,-2.1305],[134.3811,-2.1185],[134.3798,-2.1057],[134.3838,-2.1028],[134.389,-2.1032],[134.3917,-2.0962],[134.3862,-2.0923],[134.383,-2.0862],[134.3842,-2.082],[134.3918,-2.0767],[134.4012,-2.0764],[134.4051,-2.0728],[134.3971,-2.0661],[134.4027,-2.0548],[134.407,-2.044],[134.4129,-2.0425]],[[134.1369,-1.8961],[134.1393,-1.8911],[134.1368,-1.8833],[134.1328,-1.8863],[134.1369,-1.8961]],[[134.5988,-2.4893],[134.575,-2.4794],[134.5705,-2.4764],[134.5698,-2.4726],[134.5719,-2.4646],[134.5666,-2.4591],[134.5593,-2.4574],[134.5565,-2.4584],[134.5307,-2.452],[134.5339,-2.4628],[134.5416,-2.4656],[134.5503,-2.4723],[134.5456,-2.4751],[134.5378,-2.471],[134.5256,-2.4699],[134.5211,-2.4673],[134.5159,-2.4697],[134.5129,-2.4737],[134.5159,-2.4793],[134.5226,-2.476],[134.5315,-2.4804],[134.5354,-2.4811],[134.5455,-2.4777],[134.5564,-2.4782],[134.5613,-2.4813],[134.5695,-2.4827],[134.5653,-2.489],[134.5571,-2.4855],[134.551,-2.4851],[134.5474,-2.4897],[134.5531,-2.4926],[134.5473,-2.4952],[134.5404,-2.4896],[134.5332,-2.4871],[134.517,-2.4855],[134.5119,-2.4861],[134.4964,-2.4999],[134.4857,-2.5126],[134.4896,-2.5169],[134.4828,-2.5197],[134.4753,-2.5246],[134.4701,-2.5322],[134.4642,-2.5491],[134.4622,-2.5517],[134.4631,-2.5575],[134.4594,-2.5685],[134.4586,-2.5769],[134.4596,-2.594],[134.4637,-2.5997],[134.4702,-2.6022],[134.4725,-2.6068],[134.4739,-2.6141],[134.4688,-2.619],[134.4693,-2.6273],[134.4726,-2.6351],[134.4721,-2.642],[134.4755,-2.6484],[134.4846,-2.6571],[134.4916,-2.6596],[134.4935,-2.6626],[134.4957,-2.6779],[134.4904,-2.686],[134.4923,-2.6917],[134.4973,-2.6976],[134.498,-2.7008],[134.4951,-2.7098],[134.4946,-2.7154],[134.4981,-2.7249],[134.5071,-2.7333],[134.5082,-2.7388],[134.5023,-2.7538],[134.5041,-2.7636],[134.5059,-2.7669],[134.5137,-2.7725],[134.5126,-2.7791],[134.5136,-2.7853],[134.521,-2.7974],[134.52,-2.8054],[134.517,-2.8136],[134.5175,-2.8203],[134.5142,-2.8291],[134.5089,-2.8374],[134.4981,-2.8469],[134.5,-2.8495],[134.4941,-2.8539],[134.4901,-2.8517],[134.4876,-2.8545],[134.4962,-2.8638],[134.4948,-2.8673],[134.4894,-2.8637],[134.4848,-2.863],[134.4788,-2.8669],[134.4637,-2.8686],[134.4556,-2.8671],[134.4523,-2.8576],[134.4439,-2.8496],[134.4469,-2.8472],[134.4492,-2.8377],[134.4476,-2.8335],[134.4493,-2.8231],[134.4467,-2.8179],[134.4521,-2.811],[134.4407,-2.8091],[134.4344,-2.7987],[134.4246,-2.7942],[134.4248,-2.7837],[134.4229,-2.779],[134.4153,-2.7736],[134.4085,-2.7726],[134.4074,-2.7704],[134.4113,-2.7599],[134.4108,-2.7496],[134.4043,-2.7377],[134.4045,-2.7327],[134.4084,-2.723],[134.4063,-2.7201],[134.4,-2.7237],[134.3966,-2.7136],[134.3911,-2.7062],[134.3821,-2.6985],[134.3884,-2.6964],[134.3797,-2.6764],[134.3724,-2.6772],[134.3687,-2.6721],[134.3668,-2.6651],[134.3674,-2.661],[134.3744,-2.6544],[134.3755,-2.6475],[134.367,-2.6485],[134.3611,-2.6431],[134.3574,-2.6359],[134.3509,-2.6297],[134.3508,-2.627],[134.3603,-2.6254],[134.3605,-2.6211],[134.3542,-2.618],[134.3506,-2.6134],[134.3498,-2.6087],[134.3417,-2.6075],[134.3417,-2.6007],[134.3367,-2.5935],[134.3351,-2.5883],[134.3273,-2.587],[134.3232,-2.5905],[134.3192,-2.5879],[134.3204,-2.5833],[134.3334,-2.5841],[134.3417,-2.5787],[134.3329,-2.5701],[134.3331,-2.5613],[134.3385,-2.5594],[134.3408,-2.5551],[134.3332,-2.55],[134.3204,-2.5474],[134.3173,-2.5385],[134.3216,-2.5323],[134.321,-2.5289],[134.3164,-2.5228],[134.3098,-2.5188],[134.3015,-2.5214],[134.304,-2.5163],[134.3106,-2.516],[134.3149,-2.5127],[134.3196,-2.514],[134.3195,-2.5092],[134.315,-2.5097],[134.3083,-2.5077],[134.2987,-2.5072],[134.2967,-2.4967],[134.2907,-2.496],[134.2906,-2.4896],[134.2804,-2.4847],[134.2804,-2.4803],[134.2722,-2.4784],[134.2756,-2.4742],[134.2766,-2.469],[134.2687,-2.4598],[134.2681,-2.452],[134.2605,-2.4552],[134.2586,-2.446],[134.2626,-2.4399],[134.2624,-2.4356],[134.2538,-2.4303],[134.2501,-2.4334],[134.2485,-2.4428],[134.2448,-2.4429],[134.2403,-2.434],[134.2307,-2.426],[134.2227,-2.4237],[134.2156,-2.4238],[134.2145,-2.4189],[134.2079,-2.4073],[134.203,-2.403],[134.2059,-2.398],[134.2024,-2.3942],[134.2054,-2.3848],[134.2025,-2.3833],[134.1968,-2.3889],[134.1965,-2.3819],[134.1934,-2.3769],[134.1931,-2.3688],[134.1875,-2.3645],[134.1874,-2.3602],[134.1824,-2.3608],[134.1764,-2.3554],[134.1744,-2.3402],[134.1751,-2.3328],[134.1742,-2.3233],[134.1633,-2.3125],[134.16,-2.3007],[134.1572,-2.2966],[134.1587,-2.2894],[134.1548,-2.2781],[134.1582,-2.2718],[134.1577,-2.2668],[134.1525,-2.259],[134.1529,-2.253],[134.1513,-2.2449],[134.1467,-2.2419],[134.1396,-2.2415],[134.1396,-2.234],[134.1377,-2.2292],[134.1467,-2.2283],[134.1475,-2.225],[134.1404,-2.223],[134.1368,-2.2174],[134.1422,-2.2159],[134.1486,-2.2063],[134.1496,-2.1995],[134.147,-2.1936],[134.147,-2.1884],[134.144,-2.1807],[134.1478,-2.1759],[134.1447,-2.1629],[134.1454,-2.1587],[134.1413,-2.1566],[134.1321,-2.1572],[134.1279,-2.1601],[134.1312,-2.1674],[134.1235,-2.1693],[134.1197,-2.1582],[134.1184,-2.1437],[134.1146,-2.1287],[134.1167,-2.1143],[134.115,-2.1096],[134.108,-2.1036],[134.1083,-2.0985],[134.1147,-2.0988],[134.1043,-2.0742],[134.1072,-2.0615],[134.1042,-2.0529],[134.1073,-2.0502],[134.1098,-2.0442],[134.1177,-2.0402],[134.1214,-2.0398],[134.1212,-2.0286],[134.1251,-2.0264],[134.128,-2.0326],[134.1317,-2.0309],[134.1303,-2.02],[134.1313,-2.0174],[134.1389,-2.0103],[134.1424,-2.0027],[134.1416,-1.9909],[134.1401,-1.983],[134.1363,-1.9764],[134.1384,-1.9664],[134.143,-1.966],[134.1463,-1.972],[134.1518,-1.9705],[134.1528,-1.9634],[134.1416,-1.9606],[134.1384,-1.9638],[134.1345,-1.9568],[134.1362,-1.9483],[134.1339,-1.9383],[134.133,-1.9276],[134.1278,-1.9135],[134.1241,-1.9001],[134.121,-1.8853],[134.1226,-1.8715],[134.1216,-1.8643],[134.118,-1.8637],[134.114,-1.8684],[134.1074,-1.8678],[134.1064,-1.8632],[134.1017,-1.8621],[134.1068,-1.8498],[134.1024,-1.8436],[134.0998,-1.8362],[134.1027,-1.8156],[134.0991,-1.8046],[134.1013,-1.7992],[134.0975,-1.7935],[134.0968,-1.7885],[134.0997,-1.7781],[134.0985,-1.7732],[134.1001,-1.7669],[134.0929,-1.7682]],[[134.2347,-1.7424],[134.23,-1.7376],[134.2217,-1.7341],[134.221,-1.74],[134.2106,-1.7391],[134.2088,-1.7432],[134.2047,-1.7379],[134.2023,-1.7382],[134.2025,-1.7544],[134.2013,-1.7574],[134.1951,-1.7634],[134.1894,-1.7741],[134.1818,-1.7861],[134.18,-1.796],[134.1736,-1.8049],[134.1677,-1.8097],[134.159,-1.8195],[134.1541,-1.8206],[134.1503,-1.824],[134.1481,-1.8291],[134.1467,-1.8432],[134.1466,-1.8524],[134.1496,-1.8595],[134.1499,-1.8678],[134.1469,-1.8802],[134.1474,-1.8879],[134.1426,-1.8962],[134.1475,-1.9011],[134.1368,-1.903],[134.1353,-1.9084],[134.138,-1.9136],[134.1445,-1.9094],[134.1483,-1.9113],[134.1505,-1.907],[134.1575,-1.9199],[134.1594,-1.9347],[134.1641,-1.9421],[134.165,-1.9498],[134.1673,-1.9507],[134.172,-1.9444],[134.1695,-1.9337],[134.1704,-1.9287],[134.1748,-1.9194],[134.1747,-1.9159],[134.1819,-1.9108],[134.1851,-1.9003],[134.191,-1.9044],[134.1942,-1.898],[134.1996,-1.8764],[134.2107,-1.8371],[134.2148,-1.8295],[134.2111,-1.8179],[134.2068,-1.8099],[134.2034,-1.8116],[134.2016,-1.8242],[134.1967,-1.8267],[134.1989,-1.8073],[134.1952,-1.8013],[134.1952,-1.7934],[134.2043,-1.7835],[134.2086,-1.7835],[134.209,-1.7994],[134.215,-1.7967],[134.2215,-1.7892],[134.2268,-1.7771],[134.231,-1.7763],[134.234,-1.7635],[134.2383,-1.7546],[134.2385,-1.7447],[134.2347,-1.7424]]]}},{"type":"Feature","properties":{"mhid":"1332:482","alt_name":"KABUPATEN TELUK BINTUNI","latitude":-1.88037,"longitude":133.33105,"sample_value":268},"geometry":{"type":"MultiLineString","coordinates":[[[133.6173,-2.5438],[133.619,-2.5371],[133.6082,-2.5367],[133.5992,-2.5412],[133.5858,-2.5547],[133.5836,-2.5646],[133.5885,-2.5643],[133.6018,-2.5538],[133.6052,-2.5533],[133.6098,-2.5477],[133.6084,-2.5447],[133.6173,-2.5438]],[[133.6259,-2.4933],[133.6194,-2.4939],[133.6145,-2.5015],[133.614,-2.5059],[133.6195,-2.5119],[133.6313,-2.5188],[133.6367,-2.5245],[133.6403,-2.521],[133.6398,-2.5143],[133.6357,-2.5028],[133.6354,-2.4983],[133.6322,-2.4933],[133.6259,-2.4933]],[[133.6616,-2.4923],[133.6582,-2.4928],[133.6529,-2.4981],[133.6524,-2.5097],[133.6558,-2.5179],[133.6602,-2.5237],[133.68,-2.5425],[133.6906,-2.5435],[133.695,-2.5387],[133.695,-2.5295],[133.6911,-2.5227],[133.6824,-2.5005],[133.6708,-2.4923],[133.6616,-2.4923]],[[133.44,-2.4855],[133.435,-2.4824],[133.4303,-2.4833],[133.4269,-2.4896],[133.4312,-2.5018],[133.4334,-2.5029],[133.4417,-2.4988],[133.4483,-2.498],[133.4501,-2.4922],[133.4488,-2.4875],[133.44,-2.4855]],[[133.3397,-2.4232],[133.3312,-2.4252],[133.3217,-2.4398],[133.3252,-2.4468],[133.3337,-2.4539],[133.3427,-2.4642],[133.3439,-2.4748],[133.35,-2.4777],[133.3544,-2.4819],[133.3621,-2.4856],[133.3732,-2.4963],[133.3759,-2.4967],[133.3784,-2.4863],[133.3774,-2.4761],[133.3702,-2.4564],[133.3686,-2.4488],[133.3532,-2.4342],[133.352,-2.4313],[133.3397,-2.4232]],[[133.4879,-2.4016],[133.486,-2.3989],[133.4815,-2.4027],[133.4772,-2.3993],[133.467,-2.3986],[133.459,-2.4082],[133.4589,-2.4128],[133.4713,-2.43],[133.4769,-2.4338],[133.487,-2.4322],[133.488,-2.4344],[133.4815,-2.4392],[133.4817,-2.4461],[133.4862,-2.4534],[133.4915,-2.465],[133.494,-2.4682],[133.5018,-2.4698],[133.5064,-2.4749],[133.5112,-2.477],[133.5161,-2.4755],[133.5321,-2.4858],[133.5361,-2.4907],[133.5387,-2.4989],[133.5515,-2.5057],[133.5644,-2.5096],[133.5701,-2.509],[133.5753,-2.5046],[133.5806,-2.4964],[133.5894,-2.4885],[133.5944,-2.4858],[133.5872,-2.4625],[133.5818,-2.4543],[133.5789,-2.4473],[133.574,-2.4435],[133.5673,-2.4467],[133.5551,-2.4436],[133.5475,-2.4399],[133.5389,-2.433],[133.5313,-2.4353],[133.5263,-2.4325],[133.5256,-2.4296],[133.5193,-2.4231],[133.5051,-2.4137],[133.4998,-2.4121],[133.4923,-2.4076],[133.4879,-2.4016]],[[133.6329,-2.2342],[133.6281,-2.2301],[133.6232,-2.2236],[133.615,-2.221],[133.61,-2.2331],[133.614,-2.2389],[133.6219,-2.2365],[133.6312,-2.236],[133.6329,-2.2342]],[[133.7633,-2.2454],[133.7715,-2.2245],[133.7721,-2.2182],[133.7626,-2.2151],[133.7377,-2.2268],[133.7321,-2.2301],[133.7109,-2.247],[133.7005,-2.2528],[133.6905,-2.2547],[133.6864,-2.263],[133.6912,-2.2669],[133.7073,-2.2595],[133.7185,-2.2559],[133.7281,-2.2485],[133.7332,-2.2465],[133.7485,-2.247],[133.7576,-2.2511],[133.7633,-2.2454]],[[133.76,-2.1831],[133.7467,-2.1802],[133.7371,-2.176],[133.7319,-2.1788],[133.73,-2.1855],[133.7293,-2.1966],[133.7234,-2.2067],[133.7111,-2.2168],[133.706,-2.2196],[133.6987,-2.2201],[133.6894,-2.2226],[133.6866,-2.2245],[133.6862,-2.2317],[133.6921,-2.2341],[133.6994,-2.2411],[133.7079,-2.2402],[133.727,-2.2235],[133.7419,-2.2145],[133.7477,-2.2093],[133.7525,-2.207],[133.7608,-2.2066],[133.7732,-2.1909],[133.7787,-2.1828],[133.7772,-2.1793],[133.7667,-2.1827],[133.76,-2.1831]],[[133.8746,-2.1607],[133.8669,-2.1616],[133.8559,-2.1614],[133.8528,-2.167],[133.8642,-2.1776],[133.8756,-2.1628],[133.8746,-2.1607]],[[133.8112,-2.1993],[133.8365,-2.1959],[133.8475,-2.1936],[133.853,-2.1913],[133.8568,-2.1848],[133.8559,-2.1801],[133.8501,-2.1686],[133.8501,-2.1607],[133.8524,-2.1586],[133.8595,-2.1581],[133.8698,-2.1551],[133.8725,-2.151],[133.8589,-2.1472],[133.8501,-2.1457],[133.8389,-2.1469],[133.8273,-2.1538],[133.8086,-2.1698],[133.7946,-2.1802],[133.7895,-2.19],[133.7901,-2.1958],[133.8005,-2.1991],[133.8112,-2.1993]],[[133.899,-2.1347],[133.9121,-2.1329],[133.928,-2.1187],[133.9243,-2.1118],[133.9145,-2.1078],[133.8959,-2.1113],[133.8911,-2.1142],[133.8898,-2.1232],[133.8929,-2.1337],[133.899,-2.1347]],[[133.8826,-2.1406],[133.8862,-2.1338],[133.8857,-2.1199],[133.8863,-2.1133],[133.8764,-2.1099],[133.8668,-2.1021],[133.8601,-2.1009],[133.8573,-2.1027],[133.8549,-2.1089],[133.8542,-2.1164],[133.8515,-2.125],[133.8524,-2.1305],[133.8672,-2.1351],[133.88,-2.1417],[133.8826,-2.1406]],[[133.9332,-2.1142],[133.9363,-2.1082],[133.936,-2.0965],[133.9344,-2.0949],[133.9257,-2.1026],[133.931,-2.1088],[133.9332,-2.1142]],[[132.5416,-2.1899],[132.5602,-2.1894],[132.5671,-2.1899],[132.5771,-2.1881],[132.5911,-2.1895],[132.5973,-2.1943],[132.6106,-2.2075],[132.6179,-2.2198],[132.6248,-2.2382],[132.6254,-2.2449],[132.623,-2.2555],[132.6257,-2.2615],[132.6295,-2.2587],[132.6291,-2.2677],[132.6354,-2.2765],[132.6507,-2.286],[132.6642,-2.2866],[132.6763,-2.2892],[132.6843,-2.2924],[132.699,-2.2934],[132.7126,-2.2987],[132.7189,-2.2986],[132.7243,-2.2939],[132.7285,-2.2847],[132.7375,-2.2727],[132.7486,-2.2662],[132.7529,-2.2647],[132.7649,-2.2567],[132.7867,-2.2485],[132.8093,-2.2422],[132.8186,-2.2409],[132.8427,-2.2402],[132.8557,-2.2425],[132.8729,-2.2501],[132.8827,-2.2601],[132.8879,-2.2699],[132.8923,-2.2736],[132.8974,-2.2749],[132.9012,-2.2783],[132.9079,-2.28],[132.9212,-2.2797],[132.9414,-2.2777],[132.9539,-2.282],[132.955,-2.2848],[132.9641,-2.2924],[132.9678,-2.2924],[132.9729,-2.2885],[132.9803,-2.286],[132.9865,-2.279],[132.993,-2.2743],[133.0034,-2.2701],[133.0207,-2.2478],[133.0244,-2.2446],[133.0393,-2.2365],[133.0568,-2.2318],[133.0682,-2.2303],[133.0802,-2.2317],[133.0899,-2.2317],[133.0979,-2.2331],[133.1009,-2.2292],[133.1187,-2.226],[133.1241,-2.222],[133.1268,-2.2175],[133.1385,-2.2094],[133.1544,-2.1995],[133.1618,-2.1965],[133.1798,-2.194],[133.1947,-2.1942],[133.2084,-2.1971],[133.224,-2.1992],[133.2228,-2.2057],[133.2278,-2.209],[133.2309,-2.215],[133.2335,-2.2148],[133.2501,-2.2034],[133.2569,-2.2031],[133.2736,-2.1998],[133.2841,-2.1924],[133.2884,-2.1931],[133.2909,-2.2019],[133.2967,-2.2072],[133.3054,-2.212],[133.3145,-2.2144],[133.3263,-2.2134],[133.3361,-2.2142],[133.3479,-2.2115],[133.3597,-2.2111],[133.3703,-2.2093],[133.3814,-2.2045],[133.3952,-2.2093],[133.4016,-2.2073],[133.4136,-2.2072],[133.4181,-2.2143],[133.4258,-2.2184],[133.4275,-2.2232],[133.4318,-2.2263],[133.4405,-2.2276],[133.4696,-2.2268],[133.4803,-2.2306],[133.4902,-2.2279],[133.5082,-2.2305],[133.5168,-2.228],[133.5209,-2.2306],[133.5228,-2.235],[133.5279,-2.2373],[133.5338,-2.237],[133.5378,-2.2346],[133.5437,-2.2344],[133.5491,-2.2318],[133.56,-2.2289],[133.5728,-2.2206],[133.5778,-2.2142],[133.5788,-2.2059],[133.5771,-2.2017],[133.58,-2.1935],[133.5856,-2.1847],[133.5954,-2.1762],[133.6019,-2.1773],[133.6055,-2.1819],[133.5963,-2.1841],[133.5887,-2.1921],[133.5868,-2.2112],[133.5915,-2.2223],[133.5985,-2.2268],[133.6055,-2.2234],[133.6097,-2.2179],[133.615,-2.2161],[133.6233,-2.2168],[133.6285,-2.2203],[133.6356,-2.2325],[133.6419,-2.2314],[133.6484,-2.2275],[133.6519,-2.2236],[133.6574,-2.2217],[133.6646,-2.2111],[133.6698,-2.2101],[133.674,-2.2027],[133.6836,-2.197],[133.692,-2.1972],[133.6996,-2.199],[133.7067,-2.1993],[133.7124,-2.1944],[133.7181,-2.1791],[133.7245,-2.1702],[133.7328,-2.1649],[133.7292,-2.1613],[133.7312,-2.1562],[133.7355,-2.1602],[133.744,-2.165],[133.7581,-2.1691],[133.7644,-2.17],[133.7737,-2.1677],[133.7855,-2.1601],[133.7917,-2.1515],[133.7978,-2.1506],[133.813,-2.1449],[133.8275,-2.1405],[133.8344,-2.1358],[133.8376,-2.1317],[133.8415,-2.1187],[133.8451,-2.1114],[133.8488,-2.1076],[133.8514,-2.1014],[133.8579,-2.0972],[133.8635,-2.0955],[133.8739,-2.0989],[133.8883,-2.1092],[133.9002,-2.1055],[133.9069,-2.1013],[133.9198,-2.1035],[133.9333,-2.09],[133.9395,-2.0924],[133.9423,-2.1031],[133.9422,-2.1071],[133.9365,-2.1158],[133.9263,-2.1249],[133.9156,-2.136],[133.9145,-2.1434],[133.9003,-2.1435],[133.8935,-2.1447],[133.8889,-2.1484],[133.8862,-2.1567],[133.8841,-2.1695],[133.8802,-2.1719],[133.8764,-2.1846],[133.8664,-2.2002],[133.8387,-2.2114],[133.8173,-2.2185],[133.8135,-2.2233],[133.8042,-2.2255],[133.785,-2.2336],[133.7795,-2.2398],[133.7831,-2.2532],[133.7901,-2.265],[133.7937,-2.2655],[133.8036,-2.2747],[133.8077,-2.2765],[133.8141,-2.2832],[133.8291,-2.2919],[133.8371,-2.2928],[133.8556,-2.2876],[133.8615,-2.2804],[133.8654,-2.2812],[133.8712,-2.2783],[133.8808,-2.2857],[133.8821,-2.2912],[133.8875,-2.2964],[133.8946,-2.2981],[133.9053,-2.2969],[133.9168,-2.2987],[133.9292,-2.3024],[133.9367,-2.2991],[133.9399,-2.2895],[133.9411,-2.2778],[133.9367,-2.2746],[133.9379,-2.2712],[133.9455,-2.2639],[133.9487,-2.2505],[133.9483,-2.2407],[133.945,-2.2355],[133.9433,-2.2161],[133.9472,-2.2099],[133.9474,-2.1878],[133.9506,-2.1833],[133.9513,-2.1758],[133.9547,-2.1739],[133.9557,-2.1831],[133.9523,-2.1969],[133.9536,-2.1993],[133.9524,-2.2068],[133.9541,-2.22],[133.9616,-2.2296],[133.9646,-2.2379],[133.9605,-2.2443],[133.9613,-2.2516],[133.9593,-2.2554],[133.9568,-2.2667],[133.9547,-2.2806],[133.9485,-2.2983],[133.9431,-2.3051],[133.9372,-2.3071],[133.9205,-2.3081],[133.8979,-2.3108],[133.8785,-2.3112],[133.8664,-2.317],[133.8629,-2.321],[133.8607,-2.3331],[133.8616,-2.3356],[133.8702,-2.3462],[133.8741,-2.3537],[133.8746,-2.3612],[133.8802,-2.3671],[133.8898,-2.3678],[133.89,-2.3728],[133.899,-2.3778],[133.9059,-2.379],[133.9119,-2.3825],[133.9246,-2.384],[133.9336,-2.3861],[133.9404,-2.3848],[133.9546,-2.3857],[133.9677,-2.3834],[133.9912,-2.3855],[133.9974,-2.3882],[133.997,-2.3942],[133.9833,-2.3914],[133.9752,-2.3922],[133.9664,-2.397],[133.9586,-2.3976],[133.9523,-2.3949],[133.9408,-2.3972],[133.9275,-2.397],[133.9217,-2.3943],[133.9125,-2.3934],[133.903,-2.3911],[133.8913,-2.3919],[133.886,-2.3875],[133.8775,-2.3861],[133.8602,-2.3912],[133.856,-2.3961],[133.8555,-2.3994],[133.8482,-2.4067],[133.8351,-2.4125],[133.8268,-2.4128],[133.8213,-2.416],[133.8078,-2.4174],[133.797,-2.4207],[133.7824,-2.4207],[133.772,-2.4233],[133.7568,-2.422],[133.7518,-2.4262],[133.746,-2.4266],[133.742,-2.432],[133.7408,-2.4414],[133.7417,-2.446],[133.7502,-2.4406],[133.7503,-2.444],[133.7425,-2.4493],[133.7457,-2.4553],[133.7543,-2.4652],[133.756,-2.4709],[133.761,-2.4746],[133.7668,-2.4765],[133.7724,-2.4814],[133.7782,-2.4818],[133.781,-2.4785],[133.785,-2.4826],[133.7906,-2.4806],[133.7923,-2.4771],[133.7999,-2.486],[133.798,-2.4912],[133.8018,-2.4981],[133.8027,-2.5036],[133.8017,-2.5104],[133.7971,-2.5169],[133.7925,-2.517],[133.7848,-2.5147],[133.7709,-2.5143],[133.7514,-2.5097],[133.7412,-2.5041],[133.7302,-2.502],[133.7097,-2.5017],[133.7054,-2.5055],[133.704,-2.5129],[133.7077,-2.5339],[133.7047,-2.5448],[133.7063,-2.5573],[133.7088,-2.5596],[133.7025,-2.5672],[133.6981,-2.5686],[133.6889,-2.5679],[133.6735,-2.5553],[133.6695,-2.5498],[133.6627,-2.547],[133.6566,-2.5381],[133.6529,-2.5357],[133.6445,-2.5344],[133.63,-2.5378],[133.6116,-2.5504],[133.6017,-2.5608],[133.5918,-2.568],[133.5838,-2.5682],[133.58,-2.5661],[133.5732,-2.5528],[133.564,-2.5578],[133.5545,-2.5552],[133.5488,-2.5499],[133.5451,-2.551],[133.5433,-2.5564],[133.5364,-2.5622],[133.5337,-2.5698],[133.5292,-2.5779],[133.5246,-2.5801],[133.5201,-2.5785],[133.5137,-2.5648],[133.5086,-2.5577],[133.5028,-2.5436],[133.4967,-2.538],[133.494,-2.5296],[133.4945,-2.5262],[133.4896,-2.5125],[133.4843,-2.507],[133.4793,-2.5079],[133.4728,-2.5137],[133.4699,-2.5233],[133.4722,-2.5386],[133.4762,-2.5519],[133.4681,-2.558],[133.4592,-2.5598],[133.4463,-2.5543],[133.4359,-2.5473],[133.4372,-2.5445],[133.4493,-2.5528],[133.4562,-2.5554],[133.4596,-2.5526],[133.4585,-2.5428],[133.4602,-2.538],[133.4592,-2.5325],[133.4517,-2.511],[133.4498,-2.5039],[133.4418,-2.5039],[133.431,-2.5067],[133.4274,-2.5173],[133.4229,-2.5214],[133.4168,-2.5321],[133.4109,-2.5362],[133.4096,-2.5393],[133.411,-2.5454],[133.4082,-2.5494],[133.3875,-2.5476],[133.389,-2.5309],[133.3885,-2.5227],[133.3848,-2.5141],[133.3786,-2.5071],[133.3729,-2.504],[133.3601,-2.492],[133.3468,-2.4844],[133.3332,-2.4684],[133.3279,-2.4603],[133.3203,-2.4516],[133.3109,-2.4445],[133.2961,-2.4402],[133.2905,-2.4355],[133.2669,-2.4289],[133.2612,-2.4255],[133.2527,-2.4245],[133.2475,-2.4185],[133.2416,-2.4165],[133.2256,-2.4134],[133.2161,-2.4138],[133.2131,-2.4161],[133.2092,-2.4237],[133.1983,-2.4312],[133.1905,-2.4326],[133.1723,-2.4316],[133.1627,-2.4355],[133.1549,-2.4375],[133.1497,-2.4366],[133.1401,-2.4382],[133.1291,-2.4383],[133.1165,-2.4509],[133.1043,-2.4612],[133.0991,-2.4597],[133.0948,-2.4611],[133.0763,-2.4782],[133.06,-2.4864],[133.0531,-2.4918],[133.047,-2.4989],[133.0401,-2.5134],[133.0506,-2.5213]]]}},{"type":"Feature","properties":{"mhid":"1332:483","alt_name":"KABUPATEN MANOKWARI","latitude":-0.9,"longitude":133.75,"sample_value":408},"geometry":{"type":"MultiLineString","coordinates":[[[134.2035,-1.2241],[134.2034,-1.2128],[134.2006,-1.207],[134.1937,-1.1999]],[[134.0988,-0.8885],[134.0917,-0.8916],[134.0911,-0.8993],[134.0958,-0.9019],[134.1037,-0.917],[134.1051,-0.9223],[134.1093,-0.9217],[134.1124,-0.9161],[134.1107,-0.9115],[134.1067,-0.9089],[134.1068,-0.9013],[134.1036,-0.8905],[134.0988,-0.8885]],[[134.1859,-1.1919],[134.1765,-1.1887],[134.1695,-1.183],[134.1598,-1.1788],[134.1451,-1.1645],[134.1371,-1.1552],[134.133,-1.1484],[134.1286,-1.1473],[134.1057,-1.1264],[134.1039,-1.1234],[134.1051,-1.1153],[134.1046,-1.1078],[134.0991,-1.0977],[134.0943,-1.0929],[134.0872,-1.0882],[134.082,-1.0824],[134.0719,-1.0642],[134.0726,-1.0532],[134.0746,-1.0481],[134.075,-1.0389],[134.0734,-1.0271],[134.0709,-1.0211],[134.0652,-1.0144],[134.0599,-1.0122],[134.0499,-1.0043],[134.0459,-1.0027],[134.0388,-0.9931],[134.0367,-0.9852],[134.0251,-0.9788],[134.0149,-0.9659],[134.0103,-0.9572],[134.0102,-0.9475],[134.012,-0.9419],[134.0208,-0.9291],[134.0229,-0.9281],[134.0389,-0.9282],[134.043,-0.9268],[134.0455,-0.9187],[134.0424,-0.9119],[134.0399,-0.9108],[134.0403,-0.9041],[134.0446,-0.9017],[134.0496,-0.9022],[134.0541,-0.8965],[134.0549,-0.8911],[134.0503,-0.8809],[134.0501,-0.8693],[134.0547,-0.8675],[134.0644,-0.8763],[134.0697,-0.8755],[134.0693,-0.8684],[134.0709,-0.8656],[134.0758,-0.8693],[134.0788,-0.8737],[134.0893,-0.8788],[134.0992,-0.8781],[134.1006,-0.8736],[134.1053,-0.8731],[134.1088,-0.87],[134.1136,-0.8716],[134.1164,-0.8788],[134.1247,-0.8799],[134.1289,-0.877],[134.1357,-0.8694],[134.1367,-0.8639],[134.1338,-0.8618],[134.1305,-0.8647],[134.1264,-0.8622],[134.1258,-0.8559],[134.12,-0.8532],[134.1054,-0.8419],[134.0956,-0.8333],[134.0851,-0.8222],[134.0792,-0.8142],[134.0595,-0.8094],[134.0413,-0.8032],[134.0322,-0.797],[134.0277,-0.7897],[134.0146,-0.7817],[134.0039,-0.7726],[133.9896,-0.7555],[133.9833,-0.7448],[133.9827,-0.7384],[133.9857,-0.732],[133.9776,-0.7259],[133.9734,-0.7198],[133.969,-0.7232],[133.965,-0.7232],[133.9575,-0.7172],[133.9502,-0.7138],[133.9412,-0.7166],[133.936,-0.7293],[133.9337,-0.7326],[133.9285,-0.7328],[133.9222,-0.7215],[133.9143,-0.7202],[133.9082,-0.7224],[133.9041,-0.7274],[133.8961,-0.725],[133.8924,-0.7184],[133.8815,-0.7141],[133.8767,-0.7138],[133.871,-0.7157],[133.8651,-0.7199],[133.8666,-0.7249],[133.8577,-0.7311],[133.8533,-0.7306],[133.8495,-0.7328],[133.8384,-0.7329],[133.8326,-0.7351],[133.818,-0.747],[133.8073,-0.7461],[133.7987,-0.7378],[133.7974,-0.7272],[133.7953,-0.7249],[133.789,-0.7251],[133.7826,-0.7271],[133.7776,-0.7224],[133.7774,-0.7294],[133.7729,-0.7302],[133.7591,-0.7273],[133.7615,-0.7223],[133.7544,-0.7178],[133.7496,-0.7185],[133.744,-0.7216],[133.74,-0.7183],[133.734,-0.7196],[133.731,-0.7234],[133.7366,-0.7261],[133.7383,-0.7292],[133.7356,-0.7371],[133.7278,-0.7469],[133.7196,-0.7507],[133.7168,-0.7492],[133.6815,-0.7414],[133.6608,-0.7378],[133.6522,-0.7373],[133.641,-0.7351],[133.6339,-0.7354],[133.6281,-0.7376],[133.6055,-0.7346],[133.5829,-0.7267],[133.5777,-0.7207],[133.5654,-0.7216],[133.5647,-0.7239],[133.569,-0.7298],[133.5683,-0.7378],[133.5503,-0.7456],[133.5379,-0.7474],[133.5285,-0.7478],[133.5086,-0.7443],[133.5066,-0.7477]]]}},{"type":"Feature","properties":{"mhid":"1332:484","alt_name":"KABUPATEN SORONG SELATAN","latitude":-1.50495,"longitude":132.28638,"sample_value":999},"geometry":{"type":"MultiLineString","coordinates":[[[131.6795,-1.5476],[131.6975,-1.5551],[131.6983,-1.5586],[131.7063,-1.5698],[131.7154,-1.5793],[131.728,-1.5851],[131.7469,-1.5807],[131.7601,-1.5753],[131.7672,-1.5742],[131.7719,-1.5762],[131.7793,-1.5843],[131.7858,-1.595],[131.7875,-1.6015],[131.7914,-1.6074],[131.8022,-1.6142],[131.8115,-1.6146],[131.82,-1.6099],[131.8271,-1.6009],[131.8321,-1.5984],[131.8363,-1.5931],[131.8371,-1.5885],[131.8416,-1.5874],[131.8456,-1.5838],[131.8517,-1.5833],[131.8549,-1.5807],[131.8629,-1.5799],[131.8728,-1.5836],[131.8793,-1.5845],[131.8919,-1.58],[131.9061,-1.5688],[131.916,-1.5632],[131.9247,-1.5573],[131.9362,-1.555],[131.9412,-1.5554],[131.9489,-1.5582],[131.9574,-1.5596],[131.9543,-1.565],[131.9467,-1.5681],[131.9362,-1.5746],[131.9241,-1.5791],[131.9047,-1.5951],[131.895,-1.6112],[131.8912,-1.6192],[131.8844,-1.637],[131.8851,-1.6502],[131.8883,-1.656],[131.8894,-1.6616],[131.8931,-1.6677],[131.8988,-1.6702],[131.9014,-1.6736],[131.9004,-1.6815],[131.9024,-1.6952],[131.9102,-1.7191],[131.9139,-1.7222],[131.9188,-1.7222],[131.9318,-1.7151],[131.9438,-1.7134],[131.9489,-1.7143],[131.9533,-1.7064],[131.9662,-1.7083],[131.9806,-1.7039],[131.9855,-1.7008],[131.9898,-1.6938],[131.9897,-1.6849],[131.993,-1.6783],[132.0004,-1.6704],[132.0044,-1.6708],[132.0062,-1.6791],[132.0064,-1.6898],[132.0102,-1.6989],[132.0164,-1.6983],[132.0266,-1.7026],[132.0364,-1.7114],[132.0412,-1.7171],[132.0352,-1.7217],[132.0304,-1.7223],[132.0257,-1.7196],[132.0161,-1.7334],[132.0139,-1.7409],[132.0068,-1.7494],[132.0004,-1.7506],[132.0001,-1.7445],[131.9951,-1.7441],[131.9907,-1.7506],[131.9816,-1.7578],[131.9722,-1.7688],[131.9623,-1.7742],[131.958,-1.7789],[131.96,-1.7899],[131.9556,-1.7903],[131.9457,-1.7945],[131.934,-1.8014],[131.927,-1.8086],[131.9243,-1.8139],[131.9469,-1.8433],[131.9501,-1.8447],[131.9538,-1.8411],[131.9563,-1.8307],[131.9625,-1.8353],[131.9608,-1.84],[131.9522,-1.8482],[131.9373,-1.8568],[131.9333,-1.8604],[131.9264,-1.8636],[131.9267,-1.8713],[131.9303,-1.8749],[131.9323,-1.8842],[131.938,-1.8923],[131.9418,-1.8959],[131.9562,-1.9184],[131.9596,-1.9222],[131.9684,-1.9251],[131.9839,-1.9222],[131.9913,-1.9276],[131.9849,-1.9383],[131.9857,-1.948],[131.9835,-1.9536],[131.9765,-1.9602],[131.9718,-1.9603],[131.9689,-1.964],[131.971,-1.9684],[131.9791,-1.9769],[131.9924,-1.9841],[131.997,-1.9858],[132.0026,-1.9903],[132.0108,-1.9882],[132.0224,-2.0002],[132.0252,-2.0096],[132.0339,-2.0184],[132.0417,-2.0233],[132.0614,-2.0156],[132.0702,-2.0162],[132.0771,-2.0123],[132.0832,-2.0169],[132.0901,-2.0175],[132.096,-2.0198],[132.0934,-2.0268],[132.0893,-2.0259],[132.0816,-2.0311],[132.0821,-2.0387],[132.0774,-2.0385],[132.0665,-2.0465],[132.0569,-2.0524],[132.0506,-2.0492],[132.0452,-2.054],[132.0422,-2.0542],[132.0386,-2.0697],[132.0419,-2.0743],[132.0448,-2.0736],[132.0428,-2.0671],[132.0486,-2.0654],[132.0473,-2.0729],[132.0523,-2.0786],[132.0605,-2.0841],[132.0677,-2.0865],[132.0661,-2.0923],[132.0869,-2.1056],[132.0934,-2.113],[132.1016,-2.1161],[132.1102,-2.1232],[132.1161,-2.1261],[132.1231,-2.1329],[132.134,-2.135],[132.1378,-2.1387],[132.1397,-2.1434],[132.1443,-2.1472],[132.1542,-2.1481],[132.1614,-2.147],[132.1815,-2.1468],[132.1874,-2.153],[132.1904,-2.1584],[132.199,-2.1645],[132.2205,-2.1751],[132.2529,-2.204],[132.2613,-2.2151],[132.2714,-2.2318],[132.2881,-2.2557],[132.3038,-2.2729],[132.316,-2.2801],[132.3269,-2.2728],[132.3443,-2.2715],[132.3494,-2.2696],[132.3674,-2.2691],[132.3783,-2.2648],[132.3945,-2.2545],[132.4045,-2.2511],[132.4141,-2.2434],[132.4282,-2.2357],[132.4393,-2.2323],[132.4486,-2.228],[132.4539,-2.2233],[132.4598,-2.2229],[132.4662,-2.2185],[132.4848,-2.209],[132.4966,-2.204],[132.5091,-2.2005],[132.5124,-2.1976],[132.5184,-2.1975],[132.5416,-2.1899]]]}},{"type":"Feature","properties":{"mhid":"1332:485","alt_name":"KABUPATEN SORONG","latitude":-1.16667,"longitude":131.5,"sample_value":217},"geometry":{"type":"MultiLineString","coordinates":[[[131.3,-1.5333],[131.2893,-1.5327],[131.2783,-1.5343],[131.2703,-1.542],[131.275,-1.5449],[131.2849,-1.5448],[131.288,-1.5462],[131.2966,-1.5454],[131.2998,-1.5473],[131.3096,-1.5471],[131.3127,-1.5456],[131.3099,-1.5402],[131.3034,-1.5368],[131.3,-1.5333]],[[131.018,-1.3111],[131.023,-1.3038],[131.0246,-1.2982],[131.0195,-1.2957],[131.0146,-1.296],[131.0108,-1.2997],[131.0157,-1.3097],[131.018,-1.3111]],[[130.7342,-1.187],[130.7342,-1.1885],[130.745,-1.191],[130.7484,-1.1965],[130.7471,-1.2068],[130.7442,-1.2126],[130.7427,-1.2197],[130.7437,-1.225],[130.7499,-1.2436],[130.7606,-1.251],[130.7663,-1.2594],[130.7698,-1.2597],[130.7783,-1.2547],[130.7836,-1.2532],[130.7889,-1.2549],[130.7925,-1.2592],[130.7994,-1.2596],[130.8104,-1.2677],[130.8133,-1.2726],[130.8234,-1.2773],[130.8245,-1.2807],[130.8319,-1.289],[130.8421,-1.2955],[130.8623,-1.3037],[130.8736,-1.3114],[130.8829,-1.3138],[130.8881,-1.3176],[130.8987,-1.3228],[130.9099,-1.3264],[130.9239,-1.3289],[130.9305,-1.3316],[130.936,-1.3422],[130.947,-1.3535],[130.9597,-1.3607],[130.9677,-1.3631],[130.9794,-1.3553],[130.9868,-1.3422],[130.9892,-1.3303],[130.9952,-1.3183],[130.9999,-1.3126],[131.0016,-1.3038],[131.0066,-1.2937],[131.0137,-1.2853],[131.0164,-1.2696],[131.0184,-1.2645],[131.0345,-1.2628],[131.0396,-1.2571],[131.0433,-1.2433],[131.0426,-1.2356],[131.0399,-1.2252],[131.0345,-1.2171],[131.0305,-1.208],[131.0298,-1.2023],[131.0237,-1.1955]],[[131.2355,-1.0556],[131.2276,-1.056],[131.2237,-1.0625],[131.225,-1.0666],[131.2185,-1.0765],[131.2199,-1.0815],[131.2268,-1.0826],[131.2286,-1.0762],[131.234,-1.0643],[131.2355,-1.0556]],[[131.2442,-1.0145],[131.239,-1.0136],[131.2358,-1.0155],[131.2298,-1.0145],[131.2286,-1.0218],[131.2351,-1.023],[131.2444,-1.0204],[131.2442,-1.0145]],[[132.0214,-0.55],[131.9835,-0.5649],[131.97,-0.5789],[131.9491,-0.6018],[131.9347,-0.6089],[131.9234,-0.6192],[131.9136,-0.6249],[131.9101,-0.6345],[131.9112,-0.6467],[131.9009,-0.6575],[131.8984,-0.6612],[131.8931,-0.6625],[131.8911,-0.6677],[131.8847,-0.6779],[131.8775,-0.6795],[131.8691,-0.6841],[131.8623,-0.6858],[131.8552,-0.6901],[131.8509,-0.6947],[131.8391,-0.7036],[131.8273,-0.7111],[131.8176,-0.7154],[131.802,-0.7149],[131.7771,-0.7204],[131.7467,-0.723],[131.74,-0.7265],[131.7312,-0.7284],[131.7097,-0.7313],[131.6943,-0.739],[131.6867,-0.7415],[131.6648,-0.7433],[131.6479,-0.7411],[131.6245,-0.7398],[131.6155,-0.7411],[131.6024,-0.7442],[131.5887,-0.7497],[131.5837,-0.7485],[131.5794,-0.751],[131.575,-0.7595],[131.564,-0.7655],[131.5469,-0.7709],[131.5374,-0.7685],[131.5264,-0.7719],[131.517,-0.7687],[131.5247,-0.7637],[131.5325,-0.761],[131.5375,-0.7571],[131.5419,-0.7505],[131.5402,-0.7421],[131.5369,-0.7372],[131.533,-0.7355],[131.5219,-0.7355],[131.512,-0.7388],[131.4987,-0.7394],[131.4926,-0.7421],[131.4779,-0.7517],[131.4679,-0.7556],[131.4518,-0.7557],[131.4433,-0.7609],[131.4288,-0.7655],[131.4126,-0.7652],[131.4095,-0.7776],[131.4074,-0.7798],[131.3998,-0.7823]],[[131.27,-0.9338],[131.2741,-0.9428],[131.2747,-0.948],[131.2707,-0.9515],[131.267,-0.9686],[131.2767,-0.9776],[131.2732,-0.9811],[131.2649,-0.9804],[131.2663,-0.9874],[131.2727,-0.9873],[131.2767,-0.9935],[131.2749,-0.9987],[131.2681,-0.9994],[131.2582,-1.0029],[131.2536,-1.0142],[131.2413,-1.0387],[131.2414,-1.0561],[131.2366,-1.0664],[131.2299,-1.0752],[131.2289,-1.0846],[131.2352,-1.0887],[131.2322,-1.1017],[131.2213,-1.1161],[131.2192,-1.124],[131.2133,-1.1327],[131.2115,-1.1425],[131.2144,-1.1509],[131.2044,-1.161],[131.1994,-1.175],[131.1737,-1.2295],[131.1466,-1.2373],[131.1416,-1.2432],[131.1365,-1.2457],[131.1292,-1.246],[131.1255,-1.2483],[131.1094,-1.2488],[131.1058,-1.2474],[131.0947,-1.2471],[131.0835,-1.2401],[131.077,-1.2446],[131.0679,-1.2488],[131.0629,-1.2531],[131.055,-1.2562],[131.0457,-1.2655],[131.038,-1.2821],[131.0369,-1.2875],[131.031,-1.2923],[131.0273,-1.2996],[131.0296,-1.3146],[131.0176,-1.3264],[131.0114,-1.3303],[131.0077,-1.3533],[131.0044,-1.3626],[131.0019,-1.3645],[130.9982,-1.3719],[130.9985,-1.3751],[130.9955,-1.3862],[130.9914,-1.39],[130.9823,-1.3915],[130.983,-1.3946],[130.97,-1.3977],[130.9641,-1.4013],[130.9635,-1.4102],[130.9552,-1.4139],[130.951,-1.4233],[130.9348,-1.429],[130.9337,-1.44],[130.94,-1.4468],[130.9484,-1.4525],[130.9547,-1.4525],[130.9735,-1.4546],[130.9782,-1.4583],[130.9933,-1.4646],[130.997,-1.4635],[131.0074,-1.4635],[131.0215,-1.4614],[131.0414,-1.4599],[131.0618,-1.4557],[131.0707,-1.4557],[131.0764,-1.4588],[131.0837,-1.4572],[131.0858,-1.4541],[131.0931,-1.4489],[131.1046,-1.4552],[131.114,-1.4588],[131.1198,-1.4646],[131.1329,-1.4687],[131.1491,-1.4693],[131.1637,-1.4687],[131.1747,-1.4816],[131.1878,-1.4909],[131.2004,-1.5153],[131.198,-1.5286],[131.2114,-1.5365],[131.2373,-1.5278],[131.2489,-1.5146],[131.2644,-1.5118],[131.2926,-1.5035],[131.3047,-1.4969],[131.3158,-1.4919],[131.3274,-1.4786],[131.3368,-1.4626],[131.339,-1.4543],[131.3374,-1.4526],[131.3346,-1.4432],[131.3128,-1.4119],[131.3186,-1.4134],[131.3252,-1.41],[131.3285,-1.3929],[131.3339,-1.391],[131.3422,-1.3841],[131.3462,-1.3768],[131.3457,-1.3691],[131.3506,-1.3642],[131.36,-1.3658],[131.3643,-1.3689],[131.3645,-1.3861],[131.3691,-1.4024],[131.372,-1.4087],[131.3778,-1.4139],[131.3857,-1.4099],[131.3917,-1.4126],[131.3928,-1.4225],[131.402,-1.4316],[131.4118,-1.432],[131.4198,-1.4293],[131.4247,-1.421],[131.4274,-1.4278],[131.4304,-1.4301],[131.4217,-1.435],[131.4088,-1.4392],[131.4001,-1.4453],[131.394,-1.4464],[131.3852,-1.4506],[131.3811,-1.451],[131.3796,-1.4593],[131.3852,-1.4669],[131.4008,-1.4809],[131.4149,-1.4889],[131.4266,-1.4946],[131.4342,-1.5037],[131.4395,-1.5087],[131.4437,-1.5151],[131.4487,-1.5151],[131.4665,-1.5094],[131.473,-1.5056],[131.4798,-1.4969],[131.4869,-1.4862],[131.5807,-1.5336],[131.6609,-1.5609],[131.6795,-1.5476]]]}},{"type":"Feature","properties":{"mhid":"1332:486","alt_name":"KABUPATEN RAJA AMPAT","latitude":-0.5,"longitude":130,"sample_value":927},"geometry":{"type":"MultiLineString","coordinates":[[[130.5001,-2.2285],[130.4916,-2.2292],[130.494,-2.2334],[130.5001,-2.2345],[130.5001,-2.2285]],[[130.2542,-2.2268],[130.2455,-2.2283],[130.2463,-2.2327],[130.2531,-2.2339],[130.2595,-2.2323],[130.2666,-2.2366],[130.2702,-2.2349],[130.27,-2.2291],[130.2618,-2.2269],[130.2542,-2.2268]],[[130.4034,-2.2103],[130.3982,-2.2171],[130.4052,-2.2206],[130.4143,-2.2195],[130.4251,-2.2221],[130.4317,-2.221],[130.439,-2.2231],[130.4426,-2.2186],[130.4459,-2.2254],[130.4504,-2.2272],[130.4675,-2.2278],[130.4716,-2.2303],[130.4752,-2.2245],[130.4647,-2.2234],[130.4536,-2.2186],[130.4392,-2.2157],[130.4286,-2.2119],[130.4186,-2.2114],[130.4109,-2.2136],[130.4034,-2.2103]],[[130.2349,-2.1835],[130.2239,-2.1835],[130.2159,-2.1846],[130.2194,-2.1905],[130.2235,-2.189],[130.2264,-2.1931],[130.2368,-2.1925],[130.2402,-2.1881],[130.2435,-2.1885],[130.2456,-2.1929],[130.239,-2.1958],[130.2364,-2.1991],[130.2294,-2.2003],[130.223,-2.1974],[130.2187,-2.1996],[130.2296,-2.2051],[130.2353,-2.2093],[130.2414,-2.2109],[130.2473,-2.2154],[130.2515,-2.2125],[130.2605,-2.2145],[130.2655,-2.2127],[130.2634,-2.2012],[130.2662,-2.1992],[130.2761,-2.2004],[130.2796,-2.198],[130.2832,-2.2009],[130.2898,-2.2015],[130.2947,-2.1978],[130.2937,-2.1926],[130.2847,-2.1918],[130.2832,-2.1903],[130.2737,-2.1918],[130.265,-2.1879],[130.2575,-2.1885],[130.2401,-2.1859],[130.2349,-2.1835]],[[130.4573,-2.1679],[130.4484,-2.1692],[130.4487,-2.1731],[130.4573,-2.1679]],[[130.4622,-2.1434],[130.4466,-2.1441],[130.4478,-2.1474],[130.454,-2.1462],[130.4575,-2.1483],[130.4641,-2.1476],[130.4622,-2.1434]],[[130.4516,-2.1271],[130.4422,-2.1214],[130.4402,-2.1244],[130.4449,-2.1327],[130.4533,-2.1366],[130.4599,-2.1368],[130.4679,-2.1406],[130.4719,-2.1401],[130.4762,-2.1345],[130.468,-2.1329],[130.4649,-2.1338],[130.4622,-2.1295],[130.4583,-2.1314],[130.4557,-2.1277],[130.4516,-2.1271]],[[130.2741,-2.1233],[130.2734,-2.1202],[130.2675,-2.1214],[130.2614,-2.1257],[130.2632,-2.129],[130.2707,-2.1273],[130.2741,-2.1233]],[[130.3927,-2.1151],[130.383,-2.1153],[130.372,-2.1172],[130.3634,-2.1169],[130.3534,-2.1193],[130.3447,-2.1224],[130.3387,-2.1262],[130.3379,-2.1297],[130.3427,-2.136],[130.3505,-2.1356],[130.3627,-2.1318],[130.3704,-2.1317],[130.3863,-2.1292],[130.3923,-2.1271],[130.3967,-2.1225],[130.3969,-2.1178],[130.3927,-2.1151]],[[130.2971,-2.1371],[130.301,-2.1303],[130.3087,-2.1257],[130.3175,-2.1158],[130.312,-2.1105],[130.3042,-2.1124],[130.2998,-2.1168],[130.2931,-2.1191],[130.2881,-2.1257],[130.2894,-2.1346],[130.2914,-2.1371],[130.2971,-2.1371]],[[130.3962,-2.0791],[130.3942,-2.0836],[130.3954,-2.0875],[130.3997,-2.0881],[130.4062,-2.0809],[130.4005,-2.0788],[130.3962,-2.0791]],[[130.4292,-2.0706],[130.4215,-2.0665],[130.4211,-2.0712],[130.4166,-2.0699],[130.4134,-2.0728],[130.4089,-2.0705],[130.4037,-2.0712],[130.4075,-2.077],[130.4068,-2.0816],[130.4162,-2.0798],[130.4193,-2.0762],[130.4292,-2.0706]],[[130.148,-2.0689],[130.1437,-2.0674],[130.1424,-2.0761],[130.1514,-2.0749],[130.1535,-2.0704],[130.148,-2.0689]],[[130.4599,-2.0621],[130.4553,-2.0637],[130.4524,-2.0608],[130.449,-2.0675],[130.4438,-2.0655],[130.4395,-2.0677],[130.4375,-2.0624],[130.4329,-2.0684],[130.4378,-2.0718],[130.4464,-2.0734],[130.451,-2.0716],[130.4557,-2.0722],[130.4591,-2.0691],[130.4655,-2.0668],[130.4599,-2.0621]],[[130.4278,-2.06],[130.4287,-2.0557],[130.4226,-2.0567],[130.4207,-2.0634],[130.427,-2.0668],[130.4316,-2.0647],[130.4278,-2.06]],[[130.3628,-2.0584],[130.3673,-2.0548],[130.3574,-2.0513],[130.3542,-2.0567],[130.3603,-2.0593],[130.3628,-2.0584]],[[130.3988,-2.0454],[130.3974,-2.0384],[130.3906,-2.0468],[130.3988,-2.0454]],[[130.3758,-2.0429],[130.3773,-2.036],[130.373,-2.0354],[130.3725,-2.0402],[130.3758,-2.0429]],[[130.5617,-1.9877],[130.557,-1.9895],[130.5492,-1.9888],[130.5487,-1.9959],[130.5558,-1.998],[130.5625,-1.9976],[130.5736,-2.0027],[130.5788,-2.0018],[130.5884,-2.0053],[130.5965,-2.003],[130.6001,-1.9984],[130.5922,-1.9944],[130.5875,-1.9948],[130.5836,-1.9979],[130.5804,-1.9924],[130.5696,-1.9932],[130.5617,-1.9877]],[[130.4795,-1.9867],[130.4831,-1.9804],[130.4806,-1.9761],[130.477,-1.9868],[130.4795,-1.9867]],[[130.4593,-1.9682],[130.4565,-1.971],[130.4509,-1.9691],[130.456,-1.965],[130.4539,-1.9615],[130.4442,-1.9666],[130.444,-1.9741],[130.4483,-1.9819],[130.4534,-1.9844],[130.4624,-1.9832],[130.4593,-1.9682]],[[130.3763,-1.9344],[130.3713,-1.9339],[130.3686,-1.9383],[130.3754,-1.9398],[130.3763,-1.9344]],[[130.4591,-1.8963],[130.451,-1.8967],[130.4513,-1.9033],[130.4629,-1.9043],[130.466,-1.8981],[130.4591,-1.8963]],[[129.722,-1.8596],[129.726,-1.8524],[129.7219,-1.8518],[129.7187,-1.8558],[129.722,-1.8596]],[[129.6457,-1.7857],[129.6446,-1.7747],[129.6401,-1.765],[129.6349,-1.7676],[129.6312,-1.7812],[129.6306,-1.7867],[129.6258,-1.7846],[129.6241,-1.7891],[129.6281,-1.7978],[129.6327,-1.7999],[129.6358,-1.8127],[129.641,-1.8175],[129.6443,-1.8276],[129.6499,-1.8291],[129.6545,-1.8246],[129.6529,-1.8079],[129.6544,-1.8005],[129.65,-1.7928],[129.6487,-1.787],[129.6457,-1.7857]],[[129.6563,-1.7752],[129.6559,-1.7687],[129.6536,-1.7646],[129.6498,-1.7631],[129.6475,-1.7673],[129.6495,-1.7731],[129.6563,-1.7752]],[[129.6245,-1.7829],[129.6275,-1.7741],[129.6198,-1.7632],[129.6152,-1.763],[129.6102,-1.7665],[129.6095,-1.7713],[129.615,-1.7766],[129.6209,-1.7842],[129.6245,-1.7829]],[[129.7068,-1.7663],[129.7073,-1.7566],[129.7043,-1.7551],[129.7012,-1.7628],[129.7068,-1.7663]],[[129.6933,-1.7754],[129.6942,-1.7644],[129.6927,-1.7569],[129.6887,-1.748],[129.6858,-1.7476],[129.6842,-1.7558],[129.6862,-1.7659],[129.69,-1.7753],[129.6933,-1.7754]],[[129.9363,-1.7099],[129.9397,-1.7078],[129.9404,-1.7025],[129.9353,-1.7033],[129.9306,-1.7086],[129.9363,-1.7099]],[[130.235,-1.7024],[130.2393,-1.6974],[130.2344,-1.6962],[130.2271,-1.6974],[130.2258,-1.7015],[130.235,-1.7024]],[[130.264,-1.7005],[130.2649,-1.6955],[130.2602,-1.6948],[130.2505,-1.6987],[130.249,-1.7022],[130.2557,-1.706],[130.2608,-1.7042],[130.264,-1.7005]],[[129.7716,-1.7016],[129.764,-1.6896],[129.7593,-1.6921],[129.763,-1.6962],[129.7654,-1.707],[129.7705,-1.7093],[129.7735,-1.7065],[129.775,-1.715],[129.78,-1.7128],[129.7782,-1.701],[129.7748,-1.6968],[129.7716,-1.7016]],[[130.264,-1.7005],[130.2635,-1.709],[130.2666,-1.7123],[130.2541,-1.7235],[130.2458,-1.7225],[130.2422,-1.7185],[130.2356,-1.7188],[130.2331,-1.723],[130.2265,-1.7219],[130.2246,-1.7192],[130.2103,-1.7196],[130.2007,-1.7137],[130.1912,-1.7125],[130.1738,-1.7151],[130.1615,-1.7142],[130.1556,-1.7157],[130.1352,-1.713],[130.1275,-1.7147],[130.1259,-1.7092],[130.1212,-1.7076],[130.1094,-1.71],[130.1124,-1.7168],[130.1035,-1.7178],[130.0968,-1.7205],[130.0937,-1.724],[130.0786,-1.7216],[130.0705,-1.7218],[130.0663,-1.7192],[130.059,-1.7181],[130.049,-1.7206],[130.0429,-1.7263],[130.0267,-1.7351],[130.0061,-1.7363],[129.9973,-1.7407],[129.988,-1.7473],[129.9792,-1.7592],[129.9731,-1.762],[129.9675,-1.7611],[129.9656,-1.7565],[129.9617,-1.7572],[129.9603,-1.7629],[129.9471,-1.7695],[129.9392,-1.7675],[129.9325,-1.7696],[129.9216,-1.7753],[129.9162,-1.7768],[129.9002,-1.7761],[129.8934,-1.7804],[129.8874,-1.793],[129.88,-1.7993],[129.8687,-1.8035],[129.8629,-1.81],[129.8579,-1.8134],[129.8469,-1.8165],[129.84,-1.8203],[129.8191,-1.8218],[129.8102,-1.8325],[129.806,-1.8267],[129.8007,-1.8267],[129.7832,-1.8364],[129.7737,-1.8387],[129.7653,-1.8369],[129.7502,-1.8411],[129.7383,-1.8466],[129.7325,-1.8519],[129.7238,-1.864],[129.7233,-1.8693],[129.7179,-1.872],[129.7222,-1.882],[129.7247,-1.8839],[129.7314,-1.8821],[129.7373,-1.8859],[129.7357,-1.8892],[129.7302,-1.8871],[129.7242,-1.8899],[129.7398,-1.9004],[129.7457,-1.9019],[129.752,-1.9006],[129.7558,-1.9022],[129.7633,-1.9106],[129.7695,-1.9137],[129.7781,-1.9202],[129.779,-1.9245],[129.7861,-1.9302],[129.7938,-1.9272],[129.8054,-1.9301],[129.8078,-1.9341],[129.814,-1.9328],[129.8139,-1.9381],[129.8286,-1.9494],[129.8366,-1.9575],[129.8446,-1.9612],[129.851,-1.9621],[129.8518,-1.9671],[129.8573,-1.9707],[129.8622,-1.97],[129.877,-1.9766],[129.8882,-1.9788],[129.8963,-1.9794],[129.8983,-1.9827],[129.9026,-1.9801],[129.909,-1.9888],[129.9168,-1.9883],[129.9184,-1.9932],[129.9288,-1.996],[129.9415,-1.9931],[129.9447,-1.9988],[129.9426,-2.0093],[129.9553,-2.0111],[129.9603,-2.0159],[129.965,-2.0145],[129.9768,-2.0061],[129.9788,-2.0025],[129.9885,-2.0112],[129.9839,-2.0158],[129.9861,-2.0178],[129.9917,-2.0131],[129.9947,-2.0126],[130.0006,-2.0166],[130.0031,-2.0128],[130.018,-2.0085],[130.0196,-2.0099],[130.0131,-2.0171],[130.006,-2.0207],[130.0096,-2.024],[130.0178,-2.0236],[130.0285,-2.0172],[130.035,-2.0169],[130.033,-2.0227],[130.0368,-2.0272],[130.0412,-2.0259],[130.0429,-2.0185],[130.0483,-2.0147],[130.0482,-2.0259],[130.0533,-2.0171],[130.0545,-2.0233],[130.0626,-2.0269],[130.068,-2.0262],[130.0699,-2.0213],[130.0768,-2.0192],[130.0831,-2.0199],[130.0933,-2.0171],[130.0924,-2.0206],[130.0877,-2.0227],[130.0878,-2.0306],[130.0939,-2.029],[130.1004,-2.0347],[130.1083,-2.037],[130.1021,-2.042],[130.0975,-2.0403],[130.0905,-2.0404],[130.0908,-2.0465],[130.0951,-2.0465],[130.0981,-2.0506],[130.1039,-2.0507],[130.1078,-2.0469],[130.1098,-2.0512],[130.1157,-2.0539],[130.1157,-2.0595],[130.1222,-2.0617],[130.1273,-2.0568],[130.1344,-2.057],[130.1378,-2.0546],[130.1419,-2.0576],[130.1507,-2.0555],[130.1553,-2.0563],[130.1612,-2.0536],[130.1688,-2.0551],[130.1806,-2.0599],[130.1754,-2.0652],[130.1865,-2.0629],[130.1905,-2.06],[130.1962,-2.0601],[130.2007,-2.0627],[130.2135,-2.0567],[130.2194,-2.057],[130.2257,-2.0541],[130.2344,-2.0538],[130.2364,-2.0556],[130.2445,-2.053],[130.2537,-2.0535],[130.2603,-2.0483],[130.2635,-2.044],[130.2619,-2.0361],[130.2694,-2.0273],[130.2615,-2.0222],[130.2516,-2.0096],[130.2646,-2.0156],[130.2725,-2.0168],[130.2704,-2.0113],[130.264,-2.0058],[130.2644,-2.0007],[130.2708,-2.007],[130.2759,-2.0102],[130.2853,-2.0133],[130.293,-2.0095],[130.2867,-2.0007],[130.2899,-1.9999],[130.2924,-2.0045],[130.2975,-2.005],[130.2996,-2.0007],[130.3048,-2.0001],[130.3064,-1.9916],[130.31,-1.9861],[130.3166,-1.9791],[130.3198,-1.974],[130.322,-1.9657],[130.3283,-1.9655],[130.333,-1.9626],[130.3382,-1.9543],[130.3431,-1.9518],[130.346,-1.9551],[130.3379,-1.9594],[130.3355,-1.9662],[130.3392,-1.9717],[130.3303,-1.9695],[130.3248,-1.9698],[130.3217,-1.9785],[130.3257,-1.9817],[130.3356,-1.9797],[130.3362,-1.9867],[130.345,-1.986],[130.3586,-1.992],[130.3717,-1.9969],[130.3743,-2.0005],[130.3731,-2.005],[130.376,-2.012],[130.378,-2.0128],[130.3862,-2.0086],[130.3911,-2.0114],[130.3927,-2.0148],[130.3825,-2.0237],[130.3768,-2.0245],[130.3733,-2.0269],[130.3662,-2.0265],[130.3626,-2.0301],[130.3633,-2.0384],[130.3685,-2.0355],[130.373,-2.0309],[130.3759,-2.0333],[130.3819,-2.0322],[130.3892,-2.0361],[130.4023,-2.0285],[130.4044,-2.0239],[130.4105,-2.0228],[130.4156,-2.0253],[130.4249,-2.0243],[130.4272,-2.0204],[130.433,-2.0187],[130.4346,-2.0211],[130.4408,-2.0193],[130.4536,-2.0096],[130.4633,-2.0087],[130.4647,-2.0132],[130.4696,-2.0132],[130.4678,-2.0066],[130.4603,-2.0033],[130.4569,-2.006],[130.4509,-2.0036],[130.4377,-2.0113],[130.4374,-2.0048],[130.4333,-2.0044],[130.4323,-2.0131],[130.428,-2.0124],[130.4284,-2.0043],[130.4148,-2.0046],[130.4135,-1.9983],[130.4038,-1.9941],[130.3971,-1.9856],[130.3908,-1.982],[130.3828,-1.9801],[130.3883,-1.9765],[130.396,-1.976],[130.4028,-1.9716],[130.4087,-1.9731],[130.4048,-1.9774],[130.4107,-1.9858],[130.4185,-1.9828],[130.4187,-1.987],[130.423,-1.9874],[130.4338,-1.9802],[130.4393,-1.9788],[130.4414,-1.9742],[130.4406,-1.9687],[130.4423,-1.9638],[130.4392,-1.9611],[130.4441,-1.9568],[130.4429,-1.9534],[130.4377,-1.955],[130.4278,-1.9705],[130.4295,-1.9606],[130.4327,-1.9534],[130.4321,-1.9511],[130.4256,-1.9482],[130.4172,-1.9481],[130.4124,-1.9526],[130.4079,-1.9499],[130.3954,-1.9509],[130.3878,-1.9503],[130.3827,-1.946],[130.3771,-1.9471],[130.3705,-1.9422],[130.3633,-1.9503],[130.3573,-1.9484],[130.3593,-1.944],[130.3657,-1.9405],[130.3672,-1.9343],[130.3647,-1.93],[130.3601,-1.9324],[130.3546,-1.9326],[130.3488,-1.9229],[130.338,-1.9197],[130.3374,-1.9161],[130.3424,-1.9123],[130.3505,-1.9155],[130.3584,-1.9099],[130.3686,-1.9005],[130.3728,-1.8997],[130.3749,-1.9032],[130.3806,-1.8945],[130.3868,-1.8887],[130.3916,-1.8884],[130.3967,-1.8914],[130.4042,-1.8922],[130.4102,-1.8859],[130.4079,-1.8799],[130.415,-1.8762],[130.4154,-1.8735],[130.4075,-1.862],[130.4105,-1.8595],[130.4079,-1.8555],[130.4134,-1.8512],[130.4204,-1.8542],[130.4253,-1.8578],[130.4283,-1.8565],[130.4334,-1.8467],[130.4346,-1.8384],[130.4371,-1.8325],[130.4469,-1.8304],[130.4542,-1.8302],[130.4542,-1.8278],[130.4395,-1.821],[130.4224,-1.7999],[130.4186,-1.7937],[130.4172,-1.7864],[130.4182,-1.7758],[130.4146,-1.7721],[130.4086,-1.7693],[130.3987,-1.7608],[130.3794,-1.7519],[130.3735,-1.7548],[130.3673,-1.7466],[130.361,-1.7416],[130.3556,-1.7344],[130.3473,-1.726],[130.3457,-1.7215],[130.3519,-1.7156],[130.3595,-1.7161],[130.3637,-1.7147],[130.3668,-1.7099],[130.3654,-1.704],[130.3717,-1.6989],[130.3762,-1.6914],[130.3783,-1.6822],[130.3753,-1.6748],[130.3631,-1.6688],[130.3564,-1.6683],[130.3456,-1.664],[130.3423,-1.6644],[130.3355,-1.6701],[130.3283,-1.6795],[130.3009,-1.6861],[130.2925,-1.6893],[130.277,-1.6897],[130.2699,-1.6921],[130.264,-1.7005]],[[129.8708,-1.6679],[129.8678,-1.6626],[129.8652,-1.6683],[129.8708,-1.6679]],[[129.8528,-1.655],[129.8507,-1.6576],[129.8566,-1.6613],[129.8636,-1.6618],[129.8624,-1.6553],[129.8528,-1.655]],[[130.2076,-1.6387],[130.2027,-1.6366],[130.1973,-1.6377],[130.1973,-1.6414],[130.2077,-1.6416],[130.2076,-1.6387]],[[129.9091,-1.639],[129.9166,-1.6342],[129.9176,-1.6244],[129.9102,-1.6217],[129.906,-1.6162],[129.9018,-1.6206],[129.9031,-1.6257],[129.9021,-1.631],[129.9062,-1.6405],[129.9091,-1.639]],[[130.3078,-1.6157],[130.3106,-1.6104],[130.305,-1.6099],[130.3007,-1.613],[130.3036,-1.6169],[130.3078,-1.6157]],[[130.3268,-1.6082],[130.3233,-1.603],[130.3202,-1.6068],[130.3268,-1.6082]],[[130.2343,-1.4759],[130.2384,-1.4695],[130.2447,-1.4668],[130.259,-1.4651],[130.2675,-1.4594],[130.2686,-1.4555],[130.2641,-1.4541],[130.2626,-1.4505],[130.2427,-1.4565],[130.2277,-1.4591],[130.2156,-1.4652],[130.2062,-1.4716],[130.2067,-1.4779],[130.2147,-1.4807],[130.2343,-1.4759]],[[130.1011,-1.4476],[130.1042,-1.4436],[130.1011,-1.4408],[130.0965,-1.4435],[130.097,-1.4493],[130.1011,-1.4476]],[[130.1483,-1.4363],[130.1525,-1.4337],[130.1512,-1.427],[130.1452,-1.4306],[130.1444,-1.4361],[130.1483,-1.4363]],[[130.1192,-1.4361],[130.1202,-1.4286],[130.1189,-1.4264],[130.1125,-1.4303],[130.1166,-1.4366],[130.1192,-1.4361]],[[130.3139,-1.4221],[130.3112,-1.4252],[130.3246,-1.4301],[130.3261,-1.4253],[130.3208,-1.4223],[130.3139,-1.4221]],[[130.287,-1.4293],[130.2882,-1.4202],[130.2822,-1.4245],[130.2816,-1.4288],[130.287,-1.4293]],[[130.2264,-1.3591],[130.2288,-1.3553],[130.2344,-1.3538],[130.2322,-1.3502],[130.2203,-1.3554],[130.2192,-1.3598],[130.2264,-1.3591]],[[129.7192,-1.2664],[129.7214,-1.261],[129.7166,-1.2609],[129.7129,-1.265],[129.7191,-1.27],[129.7289,-1.2688],[129.7301,-1.2655],[129.7276,-1.2613],[129.7219,-1.2677],[129.7192,-1.2664]],[[129.7571,-1.2621],[129.7642,-1.2597],[129.7672,-1.2551],[129.763,-1.2519],[129.7578,-1.2511],[129.7506,-1.2549],[129.7516,-1.2611],[129.7571,-1.2621]],[[129.6652,-1.2517],[129.6617,-1.2502],[129.6557,-1.2547],[129.6554,-1.2596],[129.6581,-1.2617],[129.6672,-1.2603],[129.6686,-1.2532],[129.6652,-1.2517]],[[129.7092,-1.2247],[129.711,-1.2198],[129.707,-1.2179],[129.7033,-1.2229],[129.7092,-1.2247]],[[129.6557,-1.224],[129.6573,-1.2198],[129.6524,-1.2144],[129.6479,-1.2158],[129.6486,-1.2226],[129.6557,-1.224]],[[129.7408,-1.2155],[129.7337,-1.209],[129.73,-1.2103],[129.7306,-1.2168],[129.7389,-1.2172],[129.7408,-1.2155]],[[129.8175,-1.2147],[129.8286,-1.2102],[129.8261,-1.2073],[129.8152,-1.2109],[129.8091,-1.2113],[129.7994,-1.2149],[129.794,-1.2137],[129.7942,-1.2191],[129.804,-1.2158],[129.8175,-1.2147]],[[129.7771,-1.2178],[129.7863,-1.2106],[129.7845,-1.2052],[129.7749,-1.209],[129.7706,-1.212],[129.7686,-1.2165],[129.7734,-1.2187],[129.7771,-1.2178]],[[129.7129,-1.1999],[129.7177,-1.1953],[129.7151,-1.1903],[129.706,-1.1943],[129.7082,-1.1996],[129.7129,-1.1999]],[[129.6575,-1.2023],[129.6583,-1.1936],[129.6563,-1.1896],[129.6517,-1.1878],[129.6492,-1.193],[129.6507,-1.2003],[129.6575,-1.2023]],[[129.3905,-1.1779],[129.3878,-1.1813],[129.3947,-1.1838],[129.3964,-1.1871],[129.4032,-1.1849],[129.4008,-1.1798],[129.3905,-1.1779]],[[129.6773,-1.1772],[129.6758,-1.1714],[129.6724,-1.1729],[129.6733,-1.179],[129.6784,-1.1877],[129.6835,-1.1898],[129.6914,-1.1902],[129.6939,-1.1872],[129.6915,-1.1823],[129.6858,-1.1794],[129.6773,-1.1772]],[[129.4638,-1.1846],[129.4737,-1.1792],[129.481,-1.1732],[129.4805,-1.1686],[129.4698,-1.1606],[129.4671,-1.1558],[129.4537,-1.1581],[129.4472,-1.1634],[129.4453,-1.1687],[129.4481,-1.1779],[129.4562,-1.1846],[129.4638,-1.1846]],[[131.0537,-1.1903],[131.0574,-1.1872],[131.0607,-1.1728],[131.0581,-1.1637],[131.0578,-1.1557],[131.0534,-1.1543],[131.0476,-1.1659],[131.0484,-1.1752],[131.0537,-1.1903]],[[129.357,-1.1536],[129.3569,-1.1597],[129.3589,-1.1652],[129.3543,-1.1703],[129.3567,-1.1738],[129.3638,-1.1761],[129.3692,-1.1745],[129.3749,-1.177],[129.3799,-1.1751],[129.3809,-1.1713],[129.3782,-1.1668],[129.3789,-1.1617],[129.3766,-1.1568],[129.3654,-1.1522],[129.357,-1.1536]],[[129.4262,-1.1493],[129.4227,-1.1491],[129.4263,-1.1577],[129.4316,-1.1513],[129.4262,-1.1493]],[[129.357,-1.1536],[129.3526,-1.1477],[129.3431,-1.1446],[129.3326,-1.1462],[129.3177,-1.1473],[129.3098,-1.1531],[129.3077,-1.1571],[129.3191,-1.159],[129.3253,-1.1632],[129.3301,-1.1647],[129.3334,-1.16],[129.3406,-1.1604],[129.3504,-1.1539],[129.357,-1.1536]],[[129.7485,-1.1433],[129.7473,-1.1411],[129.7402,-1.1446],[129.7289,-1.1436],[129.7218,-1.1469],[129.7112,-1.1481],[129.7072,-1.1501],[129.7,-1.157],[129.6886,-1.1617],[129.6759,-1.1639],[129.6782,-1.1709],[129.6843,-1.1709],[129.6862,-1.1658],[129.6924,-1.1697],[129.6909,-1.1761],[129.6955,-1.1831],[129.7083,-1.1889],[129.7161,-1.1855],[129.7207,-1.1803],[129.7332,-1.1709],[129.7381,-1.1623],[129.7453,-1.1542],[129.7482,-1.1491],[129.7485,-1.1433]],[[129.8877,-1.1413],[129.8851,-1.1368],[129.8795,-1.1339],[129.8679,-1.1313],[129.8637,-1.1318],[129.8509,-1.1443],[129.8435,-1.1446],[129.8371,-1.1431],[129.8307,-1.1455],[129.8281,-1.1495],[129.8165,-1.1483],[129.8107,-1.1487],[129.8013,-1.1523],[129.791,-1.1543],[129.7783,-1.1592],[129.765,-1.1594],[129.7516,-1.1645],[129.7471,-1.1679],[129.7398,-1.1762],[129.7343,-1.184],[129.7337,-1.1908],[129.7359,-1.1969],[129.7412,-1.206],[129.747,-1.2092],[129.7559,-1.2089],[129.7681,-1.2024],[129.7817,-1.1979],[129.7875,-1.1947],[129.7945,-1.1928],[129.8038,-1.1962],[129.8108,-1.1961],[129.8109,-1.2005],[129.8167,-1.2022],[129.8282,-1.199],[129.8355,-1.2009],[129.84,-1.2004],[129.8508,-1.1961],[129.8696,-1.1906],[129.8861,-1.1826],[129.8955,-1.1825],[129.8952,-1.1882],[129.8825,-1.1994],[129.8729,-1.2024],[129.8711,-1.206],[129.8738,-1.2106],[129.8678,-1.2134],[129.8652,-1.2081],[129.8657,-1.2012],[129.8607,-1.2001],[129.8523,-1.2048],[129.8504,-1.2098],[129.8442,-1.2108],[129.8389,-1.216],[129.8284,-1.2194],[129.8196,-1.2301],[129.8205,-1.235],[129.83,-1.2381],[129.8389,-1.2286],[129.8437,-1.2278],[129.8502,-1.2306],[129.872,-1.2224],[129.8824,-1.2163],[129.8972,-1.2022],[129.9052,-1.1963],[129.919,-1.1845],[129.9267,-1.1767],[129.9306,-1.1756],[129.9235,-1.1916],[129.9232,-1.2007],[129.932,-1.204],[129.9346,-1.2],[129.9388,-1.1879],[129.9442,-1.1831],[129.9599,-1.179],[129.9641,-1.1764],[129.9666,-1.167],[129.9736,-1.1691],[129.9782,-1.1622],[129.9761,-1.1576],[129.9704,-1.1563],[129.9506,-1.1552],[129.9299,-1.1521],[129.9173,-1.1481],[129.9086,-1.1503],[129.8945,-1.1489],[129.8909,-1.1472],[129.8877,-1.1413]],[[129.8514,-1.1397],[129.8552,-1.1335],[129.8532,-1.1298],[129.8414,-1.1383],[129.8514,-1.1397]],[[131.0699,-1.1455],[131.0733,-1.135],[131.0726,-1.1295],[131.0676,-1.1327],[131.0652,-1.1386],[131.0666,-1.1457],[131.0699,-1.1455]],[[129.7705,-1.1467],[129.7682,-1.143],[129.7759,-1.1417],[129.7808,-1.1369],[129.7791,-1.1282],[129.7706,-1.1272],[129.7666,-1.131],[129.7608,-1.1336],[129.7564,-1.1381],[129.757,-1.1455],[129.7648,-1.1488],[129.7705,-1.1467]],[[131.0816,-1.0789],[131.0839,-1.0836],[131.091,-1.0832],[131.0903,-1.0775],[131.0816,-1.0789]],[[131.1645,-1.0798],[131.1689,-1.0736],[131.1723,-1.0625],[131.1609,-1.0718],[131.159,-1.0813],[131.1645,-1.0798]],[[131.1587,-1.0351],[131.1534,-1.0397],[131.1549,-1.0438],[131.1534,-1.0551],[131.1507,-1.0605],[131.154,-1.064],[131.1553,-1.0715],[131.1609,-1.0689],[131.1662,-1.0616],[131.1671,-1.05],[131.1642,-1.0437],[131.164,-1.0367],[131.1587,-1.0351]],[[131.0816,-1.0789],[131.0851,-1.0752],[131.0943,-1.0743],[131.0948,-1.0794],[131.105,-1.0809],[131.1091,-1.0741],[131.1018,-1.0711],[131.0976,-1.0634],[131.1026,-1.0645],[131.1091,-1.0692],[131.1126,-1.0656],[131.1172,-1.0692],[131.1205,-1.0744],[131.1297,-1.0689],[131.1291,-1.0591],[131.1335,-1.0584],[131.139,-1.0538],[131.136,-1.0436],[131.1291,-1.0528],[131.1205,-1.0491],[131.1298,-1.0448],[131.1309,-1.0366],[131.1289,-1.0269],[131.1318,-1.0221],[131.1373,-1.0239],[131.1432,-1.0213],[131.1472,-1.0159],[131.144,-1.0072],[131.1431,-0.9956],[131.1389,-0.9939],[131.1322,-0.997],[131.13,-0.9953],[131.1191,-0.9986],[131.1084,-0.9978],[131.0937,-1.0001],[131.0903,-1.0048],[131.0903,-1.0199],[131.0885,-1.0246],[131.0824,-1.0282],[131.0845,-1.0344],[131.0805,-1.0432],[131.0756,-1.0509],[131.0774,-1.0702],[131.0763,-1.0762],[131.0816,-1.0789]],[[130.6605,-0.9507],[130.6616,-0.9474],[130.6572,-0.9421],[130.6467,-0.9381],[130.6384,-0.938],[130.636,-0.9395],[130.6374,-0.9471],[130.6483,-0.9512],[130.6605,-0.9507]],[[131.095,-0.9522],[131.0967,-0.9465],[131.1038,-0.9435],[131.1079,-0.9402],[131.1083,-0.9363],[131.1003,-0.9394],[131.0942,-0.9461],[131.095,-0.9522]],[[131.1162,-0.9304],[131.1238,-0.9226],[131.1263,-0.9169],[131.1171,-0.9198],[131.114,-0.9235],[131.1135,-0.9296],[131.1162,-0.9304]],[[131.0237,-1.1955],[131.0313,-1.1955],[131.0402,-1.1898],[131.0441,-1.1848],[131.0417,-1.1693],[131.0449,-1.154],[131.0497,-1.141],[131.052,-1.1233],[131.0565,-1.1148],[131.0612,-1.1112],[131.0653,-1.1039],[131.0671,-1.0971],[131.0655,-1.0887],[131.0659,-1.0829],[131.0717,-1.0703],[131.0725,-1.0606],[131.0717,-1.0417],[131.0769,-1.0305],[131.0771,-1.0222],[131.0824,-1.0074],[131.0788,-1.0036],[131.0706,-1.0092],[131.0621,-1.0073],[131.0599,-1.0001],[131.0633,-0.9972],[131.0627,-0.9899],[131.0656,-0.9809],[131.0733,-0.9809],[131.077,-0.9788],[131.0787,-0.9685],[131.0757,-0.9664],[131.0706,-0.9675],[131.0653,-0.9635],[131.0584,-0.963],[131.0555,-0.9594],[131.0568,-0.95],[131.0505,-0.944],[131.0527,-0.9383],[131.0477,-0.9287],[131.0401,-0.9275],[131.0391,-0.9221],[131.0304,-0.9124],[131.0243,-0.9121],[131.0134,-0.9197],[130.994,-0.9258],[130.9905,-0.9256],[130.9831,-0.9192],[130.9764,-0.9245],[130.9694,-0.9262],[130.967,-0.9343],[130.962,-0.9371],[130.9549,-0.9325],[130.9502,-0.9337],[130.9468,-0.9391],[130.9359,-0.9426],[130.9237,-0.9303],[130.9225,-0.9249],[130.9243,-0.9208],[130.9187,-0.9134],[130.9205,-0.9048],[130.9249,-0.8981],[130.925,-0.8935],[130.9185,-0.8903],[130.9158,-0.8961],[130.9084,-0.8949],[130.9026,-0.8986],[130.8974,-0.8956],[130.8955,-0.8907],[130.8844,-0.897],[130.8667,-0.895],[130.8622,-0.8966],[130.858,-0.9054],[130.8504,-0.9026],[130.8484,-0.8977],[130.8437,-0.8972],[130.8379,-0.9014],[130.8342,-0.8979],[130.8259,-0.9077],[130.8186,-0.9108],[130.8121,-0.9087],[130.8034,-0.9146],[130.7988,-0.9146],[130.7946,-0.9208],[130.7905,-0.9307],[130.7848,-0.9305],[130.7825,-0.9263],[130.7783,-0.929],[130.7729,-0.9292],[130.7632,-0.9319],[130.7553,-0.9318],[130.7511,-0.9297],[130.7403,-0.9303],[130.7201,-0.9435],[130.7074,-0.9427],[130.7028,-0.9438],[130.6914,-0.9511],[130.6825,-0.9535],[130.6611,-0.9546],[130.6537,-0.9544],[130.6462,-0.956],[130.6434,-0.9604],[130.636,-0.9602],[130.636,-0.9673],[130.6397,-0.9726],[130.6358,-0.9753],[130.635,-0.9795],[130.6371,-0.9842],[130.6449,-0.9943],[130.6499,-0.9966],[130.6543,-1.002],[130.6621,-1.0081],[130.6738,-1.0116],[130.6768,-1.0142],[130.6794,-1.0234],[130.6853,-1.0265],[130.6913,-1.0422],[130.6975,-1.0514],[130.7055,-1.0533],[130.7079,-1.0603],[130.7016,-1.0646],[130.703,-1.0699],[130.7146,-1.0754],[130.7185,-1.0799],[130.7154,-1.0857],[130.7194,-1.0903],[130.7172,-1.0967],[130.7141,-1.0984],[130.7077,-1.0979],[130.6924,-1.0944],[130.6788,-1.1106],[130.6976,-1.1226],[130.6946,-1.1316],[130.7036,-1.1353],[130.7078,-1.141],[130.7258,-1.1534],[130.7363,-1.1635],[130.7344,-1.1736],[130.7277,-1.1819],[130.7295,-1.1853],[130.7342,-1.187]],[[131.0291,-0.8943],[131.0326,-0.8886],[131.0275,-0.8845],[131.0255,-0.8926],[131.0291,-0.8943]],[[129.7641,-0.8486],[129.76,-0.8453],[129.7592,-0.8615],[129.7641,-0.8486]],[[129.9026,-0.8469],[129.8993,-0.8373],[129.8933,-0.8354],[129.8906,-0.8422],[129.894,-0.8463],[129.9008,-0.8494],[129.9026,-0.8469]],[[130.8995,-0.8209],[130.9069,-0.8143],[130.9061,-0.8125],[130.8967,-0.8138],[130.892,-0.8192],[130.8995,-0.8209]],[[130.5261,-0.8019],[130.5209,-0.7977],[130.5084,-0.8033],[130.5123,-0.8123],[130.509,-0.8172],[130.5139,-0.8204],[130.5223,-0.8283],[130.537,-0.8279],[130.5422,-0.8228],[130.5444,-0.8101],[130.5487,-0.8035],[130.5472,-0.7969],[130.5384,-0.7988],[130.5333,-0.7982],[130.5289,-0.8033],[130.5261,-0.8019]],[[130.7107,-0.7935],[130.7067,-0.7855],[130.7024,-0.7826],[130.6997,-0.7953],[130.7021,-0.796],[130.7107,-0.7935]],[[129.7907,-0.7742],[129.7844,-0.7691],[129.7768,-0.7703],[129.7772,-0.775],[129.7838,-0.7757],[129.7882,-0.7789],[129.7907,-0.7742]],[[130.7449,-0.7851],[130.7427,-0.7769],[130.7476,-0.77],[130.7444,-0.768],[130.7347,-0.7789],[130.7369,-0.7824],[130.7333,-0.7863],[130.729,-0.782],[130.7301,-0.777],[130.7239,-0.7724],[130.7157,-0.7739],[130.7178,-0.7776],[130.7186,-0.7853],[130.7219,-0.7888],[130.7256,-0.7968],[130.7301,-0.7987],[130.7352,-0.7937],[130.7406,-0.7927],[130.7425,-0.7866],[130.7449,-0.7851]],[[130.7866,-0.7561],[130.7812,-0.7572],[130.7717,-0.7543],[130.7693,-0.7603],[130.7733,-0.7641],[130.7717,-0.7674],[130.764,-0.7745],[130.7572,-0.7702],[130.7564,-0.7779],[130.7608,-0.7826],[130.765,-0.7924],[130.7659,-0.7992],[130.7732,-0.8015],[130.7791,-0.7929],[130.7761,-0.7907],[130.7816,-0.7849],[130.7767,-0.7828],[130.7776,-0.7782],[130.7715,-0.7775],[130.7744,-0.7718],[130.7822,-0.7694],[130.7821,-0.7629],[130.7867,-0.7613],[130.7866,-0.7561]],[[130.8112,-0.7668],[130.8137,-0.7619],[130.8076,-0.7549],[130.8001,-0.7537],[130.796,-0.7587],[130.8006,-0.7636],[130.795,-0.7718],[130.7984,-0.7755],[130.8073,-0.7734],[130.8101,-0.7778],[130.8128,-0.7858],[130.8091,-0.7885],[130.8133,-0.7929],[130.806,-0.796],[130.8134,-0.8018],[130.8145,-0.8106],[130.8167,-0.8125],[130.8189,-0.8201],[130.8141,-0.8198],[130.8111,-0.8071],[130.8071,-0.8033],[130.8009,-0.8043],[130.7962,-0.8092],[130.796,-0.8131],[130.7883,-0.8201],[130.7862,-0.8139],[130.7903,-0.8136],[130.7915,-0.8018],[130.7961,-0.7966],[130.7935,-0.7947],[130.7867,-0.799],[130.7823,-0.8051],[130.7727,-0.8066],[130.77,-0.8149],[130.7665,-0.819],[130.7632,-0.8176],[130.7588,-0.8123],[130.7549,-0.8103],[130.7452,-0.8111],[130.7331,-0.8212],[130.7295,-0.8168],[130.7243,-0.815],[130.7192,-0.8156],[130.7198,-0.8268],[130.7138,-0.831],[130.703,-0.8299],[130.7068,-0.8243],[130.7069,-0.8183],[130.7121,-0.8129],[130.6986,-0.8076],[130.6956,-0.8111],[130.6778,-0.806],[130.6737,-0.7996],[130.6699,-0.8101],[130.6825,-0.814],[130.6862,-0.8198],[130.6848,-0.8228],[130.6771,-0.8239],[130.6704,-0.8198],[130.6629,-0.8203],[130.665,-0.8274],[130.6599,-0.8271],[130.6568,-0.8208],[130.6483,-0.8219],[130.6401,-0.818],[130.6403,-0.8122],[130.6461,-0.8151],[130.6466,-0.8046],[130.6375,-0.8041],[130.6336,-0.8015],[130.6358,-0.7943],[130.6315,-0.7923],[130.6241,-0.7974],[130.6262,-0.8026],[130.6191,-0.8089],[130.6196,-0.8148],[130.6121,-0.8185],[130.6053,-0.8157],[130.6018,-0.821],[130.5974,-0.8244],[130.589,-0.8279],[130.5851,-0.8326],[130.5776,-0.8303],[130.5781,-0.8259],[130.5839,-0.8238],[130.5835,-0.8188],[130.5865,-0.8111],[130.5832,-0.8086],[130.5724,-0.8091],[130.5744,-0.8],[130.5729,-0.7971],[130.5666,-0.7941],[130.5622,-0.7958],[130.5586,-0.8068],[130.558,-0.8132],[130.5625,-0.8146],[130.5652,-0.8195],[130.5625,-0.8242],[130.5581,-0.8219],[130.5529,-0.8218],[130.5482,-0.827],[130.5513,-0.8325],[130.5496,-0.837],[130.5427,-0.8409],[130.5296,-0.8389],[130.5246,-0.836],[130.5182,-0.8349],[130.5139,-0.8321],[130.5045,-0.8335],[130.5002,-0.8297],[130.4916,-0.8298],[130.4848,-0.8327],[130.4792,-0.8203],[130.4944,-0.8083],[130.5002,-0.798],[130.4879,-0.7926],[130.4809,-0.7914],[130.4759,-0.793],[130.47,-0.7992],[130.4749,-0.8022],[130.4723,-0.811],[130.4762,-0.82],[130.4698,-0.822],[130.4614,-0.82],[130.4588,-0.8153],[130.4585,-0.8096],[130.4611,-0.8026],[130.4534,-0.8041],[130.4508,-0.8075],[130.4509,-0.8132],[130.4466,-0.8289],[130.4461,-0.8371],[130.4536,-0.8432],[130.4528,-0.849],[130.455,-0.8546],[130.4492,-0.8621],[130.4478,-0.8668],[130.4423,-0.8656],[130.4373,-0.8593],[130.4325,-0.8644],[130.4367,-0.8679],[130.4371,-0.8746],[130.4463,-0.879],[130.4557,-0.8807],[130.4575,-0.8774],[130.4619,-0.8786],[130.4661,-0.8823],[130.4519,-0.8898],[130.4494,-0.8954],[130.4451,-0.8965],[130.4357,-0.894],[130.4311,-0.895],[130.4254,-0.8912],[130.4235,-0.893],[130.4231,-0.9007],[130.4171,-0.9061],[130.4149,-0.9057],[130.4106,-0.8975],[130.4081,-0.8999],[130.4063,-0.9113],[130.4026,-0.9156],[130.3897,-0.923],[130.394,-0.9246],[130.4013,-0.9246],[130.402,-0.9206],[130.4088,-0.9194],[130.415,-0.9222],[130.4218,-0.9114],[130.4298,-0.9135],[130.4339,-0.9089],[130.4434,-0.9058],[130.4478,-0.9021],[130.4531,-0.9005],[130.458,-0.901],[130.463,-0.9039],[130.4641,-0.9079],[130.4599,-0.914],[130.4709,-0.9201],[130.4728,-0.9157],[130.4661,-0.9032],[130.468,-0.8979],[130.4729,-0.8996],[130.477,-0.9052],[130.4848,-0.9082],[130.4896,-0.905],[130.4957,-0.9059],[130.5002,-0.9015],[130.505,-0.9022],[130.515,-0.8971],[130.5235,-0.9031],[130.5185,-0.9086],[130.5125,-0.9116],[130.5068,-0.9174],[130.5088,-0.92],[130.5156,-0.9144],[130.5217,-0.9115],[130.5282,-0.9121],[130.53,-0.9165],[130.5343,-0.9184],[130.5429,-0.9149],[130.5466,-0.9058],[130.552,-0.9077],[130.5583,-0.9157],[130.5616,-0.9153],[130.5683,-0.9108],[130.5739,-0.9115],[130.5796,-0.9145],[130.5842,-0.9092],[130.5882,-0.9124],[130.5947,-0.9131],[130.6035,-0.9098],[130.6106,-0.9115],[130.6251,-0.9089],[130.6342,-0.9039],[130.6388,-0.9058],[130.6466,-0.9058],[130.6508,-0.9031],[130.6589,-0.9012],[130.6611,-0.8992],[130.6756,-0.8995],[130.683,-0.8939],[130.6944,-0.8881],[130.7012,-0.8872],[130.7103,-0.8888],[130.7258,-0.8821],[130.7335,-0.8759],[130.7377,-0.8786],[130.7468,-0.882],[130.7493,-0.8777],[130.755,-0.8728],[130.7593,-0.8739],[130.765,-0.8723],[130.7681,-0.8755],[130.7753,-0.8758],[130.7927,-0.8719],[130.7982,-0.8689],[130.8012,-0.8609],[130.8094,-0.8641],[130.8173,-0.8686],[130.8234,-0.8642],[130.827,-0.8649],[130.8478,-0.8595],[130.8461,-0.8505],[130.843,-0.8492],[130.8439,-0.8434],[130.8519,-0.8534],[130.8586,-0.8533],[130.8624,-0.8465],[130.8621,-0.8401],[130.8641,-0.834],[130.8711,-0.8358],[130.8681,-0.8431],[130.872,-0.8476],[130.8785,-0.8424],[130.8813,-0.8381],[130.8874,-0.8397],[130.8966,-0.8346],[130.8968,-0.8303],[130.8883,-0.8272],[130.8803,-0.8302],[130.8737,-0.8286],[130.8705,-0.8296],[130.8634,-0.8225],[130.867,-0.8184],[130.8648,-0.8154],[130.8607,-0.8185],[130.8547,-0.8139],[130.8604,-0.8102],[130.8682,-0.8092],[130.8702,-0.8014],[130.8775,-0.7973],[130.8824,-0.7994],[130.8844,-0.7946],[130.8891,-0.7917],[130.893,-0.7974],[130.8977,-0.8008],[130.9028,-0.801],[130.9051,-0.7973],[130.9155,-0.7986],[130.9178,-0.7973],[130.92,-0.7896],[130.9254,-0.7847],[130.9184,-0.7741],[130.9131,-0.7832],[130.9115,-0.779],[130.899,-0.7774],[130.896,-0.7739],[130.8972,-0.7663],[130.8906,-0.7639],[130.8857,-0.7732],[130.8836,-0.7658],[130.8789,-0.7675],[130.8745,-0.7725],[130.8689,-0.7728],[130.8673,-0.7656],[130.8636,-0.7666],[130.8581,-0.7728],[130.8512,-0.7709],[130.8484,-0.7676],[130.8442,-0.7802],[130.8511,-0.785],[130.8537,-0.7921],[130.8658,-0.794],[130.8611,-0.8001],[130.8629,-0.8044],[130.8564,-0.8059],[130.854,-0.7989],[130.8472,-0.794],[130.8467,-0.7894],[130.8418,-0.7906],[130.8427,-0.7756],[130.8422,-0.769],[130.8392,-0.7667],[130.832,-0.7711],[130.8334,-0.781],[130.8322,-0.7849],[130.8282,-0.7876],[130.829,-0.7789],[130.8247,-0.7821],[130.8218,-0.7787],[130.8175,-0.7808],[130.8089,-0.7713],[130.8112,-0.7668]],[[130.1281,-0.7514],[130.1382,-0.7454],[130.1459,-0.7426],[130.1515,-0.7421],[130.1535,-0.7387],[130.1503,-0.731],[130.1452,-0.7291],[130.1345,-0.7334],[130.1304,-0.7372],[130.1274,-0.7443],[130.1238,-0.7485],[130.1281,-0.7514]],[[130.2339,-0.7252],[130.2276,-0.7264],[130.2168,-0.7265],[130.2128,-0.7308],[130.2124,-0.7354],[130.2142,-0.7428],[130.2177,-0.7475],[130.2202,-0.742],[130.2263,-0.736],[130.2345,-0.7339],[130.2339,-0.7252]],[[130.2616,-0.7016],[130.2671,-0.7003],[130.2681,-0.6961],[130.2614,-0.6916],[130.2562,-0.6949],[130.2538,-0.6996],[130.2558,-0.7019],[130.2616,-0.7016]],[[130.2325,-0.7003],[130.2415,-0.6987],[130.2461,-0.6966],[130.2476,-0.6917],[130.2407,-0.6878],[130.232,-0.69],[130.2261,-0.6961],[130.2262,-0.701],[130.2325,-0.7003]],[[130.28,-0.693],[130.2796,-0.6853],[130.2757,-0.6854],[130.2758,-0.6916],[130.28,-0.693]],[[130.2902,-0.6805],[130.2949,-0.6759],[130.2928,-0.6728],[130.2863,-0.6762],[130.2902,-0.6805]],[[130.2529,-0.6819],[130.2549,-0.6749],[130.2497,-0.6702],[130.2443,-0.6737],[130.2441,-0.6777],[130.2507,-0.6835],[130.2529,-0.6819]],[[130.3132,-0.6541],[130.3144,-0.6515],[130.3055,-0.645],[130.3006,-0.644],[130.2867,-0.6489],[130.2854,-0.6536],[130.2788,-0.6553],[130.2755,-0.6522],[130.2698,-0.6544],[130.2656,-0.6669],[130.2685,-0.6705],[130.2756,-0.6712],[130.2894,-0.6665],[130.2896,-0.6619],[130.3003,-0.6601],[130.3132,-0.6541]],[[130.304,-0.5968],[130.302,-0.5907],[130.2987,-0.5937],[130.304,-0.5968]],[[130.2777,-0.5886],[130.2755,-0.5976],[130.2761,-0.6024],[130.2824,-0.6072],[130.2869,-0.6013],[130.2876,-0.5964],[130.2816,-0.5928],[130.2777,-0.5886]],[[130.6502,-0.5784],[130.6426,-0.5787],[130.6333,-0.5836],[130.6185,-0.5856],[130.6099,-0.5884],[130.6007,-0.59],[130.5976,-0.5917],[130.594,-0.5976],[130.5737,-0.6093],[130.5698,-0.6109],[130.5615,-0.6087],[130.5516,-0.6181],[130.5507,-0.6231],[130.5549,-0.6264],[130.5621,-0.6268],[130.5675,-0.6235],[130.5817,-0.6193],[130.5945,-0.6079],[130.5995,-0.601],[130.6031,-0.599],[130.6161,-0.5979],[130.6363,-0.5936],[130.6423,-0.589],[130.6568,-0.5861],[130.6553,-0.5814],[130.6502,-0.5784]],[[130.6753,-0.5751],[130.6845,-0.5709],[130.6821,-0.5659],[130.6627,-0.5735],[130.6712,-0.5774],[130.6753,-0.5751]],[[130.2777,-0.5886],[130.2744,-0.5838],[130.276,-0.5767],[130.2689,-0.5689],[130.2714,-0.5642],[130.2677,-0.5607],[130.2601,-0.5567],[130.2515,-0.5476],[130.2534,-0.5568],[130.26,-0.5643],[130.2679,-0.5765],[130.2631,-0.5815],[130.2706,-0.5867],[130.2777,-0.5886]],[[130.3501,-0.4866],[130.3416,-0.4871],[130.3495,-0.492],[130.3566,-0.4891],[130.3501,-0.4866]],[[130.806,-0.4868],[130.8116,-0.4837],[130.8173,-0.4786],[130.8175,-0.4751],[130.814,-0.472],[130.8102,-0.4727],[130.8025,-0.4773],[130.7992,-0.4825],[130.8005,-0.4866],[130.806,-0.4868]],[[130.4416,-0.4475],[130.4338,-0.4462],[130.4311,-0.4532],[130.4347,-0.4568],[130.4394,-0.4558],[130.4375,-0.4515],[130.4444,-0.4523],[130.4416,-0.4475]],[[130.6902,-0.4163],[130.6839,-0.4165],[130.6789,-0.4204],[130.68,-0.4239],[130.6864,-0.4234],[130.6909,-0.4208],[130.6902,-0.4163]],[[129.8907,-0.4074],[129.8825,-0.406],[129.8781,-0.4091],[129.8751,-0.4158],[129.8705,-0.4192],[129.8603,-0.4242],[129.8554,-0.4239],[129.8513,-0.4268],[129.8473,-0.4343],[129.8443,-0.4369],[129.8458,-0.4412],[129.845,-0.4463],[129.8418,-0.4513],[129.8416,-0.461],[129.8489,-0.4746],[129.8495,-0.4786],[129.8569,-0.485],[129.8595,-0.4899],[129.8621,-0.4998],[129.866,-0.5051],[129.8716,-0.5069],[129.879,-0.5016],[129.8876,-0.4987],[129.8884,-0.4941],[129.8972,-0.4864],[129.8973,-0.4812],[129.9029,-0.478],[129.9042,-0.4733],[129.9035,-0.4625],[129.8995,-0.4498],[129.9029,-0.4473],[129.9102,-0.4526],[129.9151,-0.4533],[129.9134,-0.4373],[129.9173,-0.4335],[129.9202,-0.4248],[129.9192,-0.4196],[129.9122,-0.4099],[129.9078,-0.4072],[129.902,-0.4064],[129.8907,-0.4074]],[[130.6171,-0.4146],[130.6176,-0.4075],[130.6145,-0.405],[130.6074,-0.4045],[130.6034,-0.4088],[130.6074,-0.4154],[130.6126,-0.4276],[130.6042,-0.4282],[130.5997,-0.4267],[130.597,-0.4228],[130.5904,-0.4209],[130.5852,-0.4249],[130.5703,-0.4332],[130.5618,-0.4341],[130.5574,-0.4377],[130.5504,-0.4408],[130.549,-0.4459],[130.5552,-0.4538],[130.5549,-0.4566],[130.5489,-0.4606],[130.5464,-0.466],[130.5404,-0.4686],[130.5359,-0.4674],[130.5246,-0.4759],[130.5193,-0.4782],[130.5127,-0.4774],[130.5138,-0.4733],[130.5047,-0.4632],[130.5062,-0.4584],[130.503,-0.4559],[130.5057,-0.4517],[130.4965,-0.4463],[130.4916,-0.4453],[130.4873,-0.4402],[130.4828,-0.4399],[130.4756,-0.447],[130.4706,-0.4484],[130.4654,-0.4531],[130.4709,-0.4581],[130.4752,-0.4579],[130.4809,-0.4653],[130.4799,-0.4685],[130.4752,-0.469],[130.4678,-0.4726],[130.4619,-0.4691],[130.4596,-0.4652],[130.4553,-0.4674],[130.461,-0.4755],[130.46,-0.4804],[130.4633,-0.4829],[130.4609,-0.4901],[130.4634,-0.4937],[130.4714,-0.4956],[130.5029,-0.4923],[130.5081,-0.4968],[130.5027,-0.5046],[130.4964,-0.5054],[130.4845,-0.5087],[130.4782,-0.5129],[130.4678,-0.517],[130.4527,-0.5182],[130.4564,-0.5232],[130.4578,-0.5303],[130.4633,-0.5316],[130.4645,-0.5277],[130.4686,-0.5286],[130.4768,-0.5268],[130.4838,-0.5209],[130.4963,-0.5188],[130.5002,-0.5214],[130.5072,-0.5164],[130.5152,-0.5178],[130.5201,-0.5203],[130.526,-0.5175],[130.53,-0.5133],[130.5332,-0.518],[130.541,-0.5209],[130.5413,-0.5154],[130.5465,-0.5147],[130.5466,-0.5082],[130.5612,-0.5016],[130.5648,-0.4888],[130.56,-0.482],[130.5595,-0.4775],[130.5642,-0.473],[130.5718,-0.4712],[130.5766,-0.4723],[130.5783,-0.4763],[130.5926,-0.4749],[130.5952,-0.4781],[130.5989,-0.4899],[130.6051,-0.49],[130.6112,-0.4923],[130.6094,-0.4963],[130.601,-0.4952],[130.6021,-0.5016],[130.592,-0.4994],[130.5908,-0.5023],[130.5959,-0.5082],[130.5964,-0.513],[130.5906,-0.5156],[130.5924,-0.5241],[130.5901,-0.5273],[130.5921,-0.5332],[130.5833,-0.5314],[130.575,-0.5346],[130.5718,-0.5333],[130.5715,-0.5286],[130.5674,-0.5293],[130.5663,-0.5371],[130.5715,-0.5459],[130.5738,-0.5472],[130.5895,-0.5446],[130.6055,-0.5368],[130.6265,-0.5334],[130.6316,-0.5314],[130.6371,-0.5254],[130.6514,-0.5226],[130.6539,-0.5176],[130.6591,-0.5179],[130.6655,-0.5061],[130.6683,-0.506],[130.6738,-0.4997],[130.6694,-0.4967],[130.6627,-0.4985],[130.6633,-0.4928],[130.6725,-0.4886],[130.6747,-0.482],[130.6792,-0.4737],[130.6833,-0.4704],[130.6879,-0.4712],[130.6893,-0.4631],[130.6942,-0.4548],[130.6912,-0.4488],[130.6877,-0.4473],[130.6813,-0.4478],[130.6783,-0.4444],[130.6796,-0.4407],[130.6723,-0.4412],[130.6644,-0.4439],[130.6629,-0.4423],[130.6658,-0.4354],[130.663,-0.4287],[130.65,-0.4215],[130.645,-0.4174],[130.6377,-0.4158],[130.6309,-0.4165],[130.6278,-0.4136],[130.6171,-0.4146]],[[130.2581,-0.3919],[130.2605,-0.3876],[130.2542,-0.3863],[130.2534,-0.3916],[130.2581,-0.3919]],[[130.27,-0.3772],[130.2701,-0.3716],[130.2637,-0.3735],[130.2655,-0.3772],[130.27,-0.3772]],[[130.2947,-0.3706],[130.2841,-0.3679],[130.278,-0.3692],[130.2825,-0.3738],[130.2874,-0.3718],[130.2921,-0.3731],[130.2947,-0.3706]],[[130.382,-0.3566],[130.3851,-0.3505],[130.3808,-0.3488],[130.379,-0.3541],[130.382,-0.3566]],[[130.2362,-0.321],[130.2344,-0.3247],[130.2421,-0.3279],[130.2451,-0.3237],[130.2428,-0.3206],[130.2362,-0.321]],[[130.2062,-0.333],[130.1946,-0.3291],[130.1819,-0.3206],[130.1733,-0.319],[130.1705,-0.3233],[130.1795,-0.3335],[130.1876,-0.3372],[130.1912,-0.335],[130.1969,-0.3358],[130.1988,-0.3401],[130.1958,-0.3422],[130.2015,-0.3481],[130.2133,-0.3506],[130.2202,-0.348],[130.2175,-0.3437],[130.2191,-0.3334],[130.2155,-0.3299],[130.2062,-0.333]],[[130.3799,-0.3183],[130.3723,-0.3175],[130.3694,-0.3258],[130.3727,-0.3298],[130.3756,-0.3264],[130.3743,-0.3204],[130.3804,-0.3236],[130.3799,-0.3183]],[[130.3545,-0.3152],[130.345,-0.3145],[130.345,-0.3197],[130.3496,-0.3218],[130.356,-0.3183],[130.3545,-0.3152]],[[130.1313,-0.3112],[130.1247,-0.3131],[130.124,-0.3192],[130.1307,-0.3234],[130.136,-0.3303],[130.1374,-0.335],[130.1427,-0.3316],[130.1429,-0.3218],[130.1387,-0.3123],[130.1313,-0.3112]],[[130.6628,-0.3097],[130.6579,-0.3134],[130.6649,-0.3163],[130.6587,-0.3205],[130.656,-0.3196],[130.6521,-0.3247],[130.6556,-0.3265],[130.6554,-0.3305],[130.6635,-0.3349],[130.6662,-0.3325],[130.6661,-0.3272],[130.6721,-0.3265],[130.6743,-0.3204],[130.6698,-0.3185],[130.6726,-0.3111],[130.6628,-0.3097]],[[130.4887,-0.3061],[130.4861,-0.3027],[130.4793,-0.3064],[130.4821,-0.3115],[130.4809,-0.3153],[130.4767,-0.3158],[130.4784,-0.3253],[130.4852,-0.3288],[130.4864,-0.3333],[130.4986,-0.3337],[130.5099,-0.3322],[130.5162,-0.328],[130.5143,-0.322],[130.5094,-0.3215],[130.5112,-0.3168],[130.5118,-0.3094],[130.505,-0.3087],[130.5022,-0.3119],[130.4956,-0.3056],[130.4887,-0.3061]],[[130.8519,-0.3019],[130.8456,-0.305],[130.846,-0.3126],[130.8489,-0.3164],[130.8608,-0.3193],[130.8668,-0.3168],[130.8789,-0.3178],[130.8839,-0.3228],[130.8933,-0.3196],[130.886,-0.3111],[130.8777,-0.3056],[130.8669,-0.303],[130.8519,-0.3019]],[[130.3673,-0.3067],[130.3646,-0.2989],[130.3604,-0.3044],[130.3673,-0.3067]],[[130.1886,-0.2974],[130.1814,-0.2841],[130.1775,-0.2831],[130.1758,-0.287],[130.1794,-0.2898],[130.181,-0.2971],[130.1886,-0.2974]],[[130.2233,-0.2915],[130.221,-0.2806],[130.2165,-0.2794],[130.2039,-0.2829],[130.1958,-0.2841],[130.1925,-0.2887],[130.1958,-0.3004],[130.191,-0.3023],[130.1901,-0.3053],[130.1927,-0.3108],[130.1986,-0.3158],[130.2029,-0.3136],[130.2079,-0.3197],[130.2132,-0.3223],[130.2221,-0.3222],[130.2293,-0.3124],[130.233,-0.305],[130.2283,-0.3005],[130.2209,-0.3014],[130.2239,-0.296],[130.2233,-0.2915]],[[130.335,-0.1981],[130.3293,-0.1985],[130.3198,-0.2085],[130.3152,-0.2106],[130.308,-0.2107],[130.3069,-0.2138],[130.3151,-0.2172],[130.3221,-0.2171],[130.3273,-0.214],[130.3335,-0.2064],[130.3405,-0.2032],[130.335,-0.1981]],[[130.2467,-0.2001],[130.2429,-0.1942],[130.2365,-0.1952],[130.2446,-0.2002],[130.2467,-0.2001]],[[130.3513,-0.1827],[130.3452,-0.186],[130.3484,-0.1922],[130.354,-0.1883],[130.3595,-0.1878],[130.3608,-0.1838],[130.3513,-0.1827]],[[130.2614,-0.1824],[130.2566,-0.184],[130.2515,-0.1827],[130.2448,-0.1833],[130.2422,-0.1873],[130.2462,-0.1908],[130.2585,-0.1974],[130.2606,-0.1935],[130.2698,-0.1944],[130.2743,-0.1963],[130.2846,-0.1955],[130.2826,-0.1903],[130.2785,-0.1902],[130.2778,-0.186],[130.2711,-0.1824],[130.2678,-0.1845],[130.2614,-0.1824]],[[130.2265,-0.1695],[130.222,-0.1698],[130.2108,-0.175],[130.2011,-0.178],[130.1996,-0.1798],[130.2065,-0.1869],[130.2264,-0.189],[130.2286,-0.1856],[130.2351,-0.1845],[130.2308,-0.1741],[130.2265,-0.1695]],[[130.2608,-0.1737],[130.2608,-0.1659],[130.258,-0.1622],[130.2467,-0.1538],[130.2388,-0.153],[130.2395,-0.1565],[130.2485,-0.1597],[130.2469,-0.164],[130.2372,-0.165],[130.2363,-0.1675],[130.2387,-0.175],[130.2384,-0.1798],[130.2546,-0.1808],[130.2573,-0.1756],[130.2608,-0.1737]],[[130.6879,-0.1335],[130.6851,-0.1322],[130.6727,-0.1362],[130.6682,-0.1362],[130.661,-0.1421],[130.662,-0.1463],[130.669,-0.1482],[130.6782,-0.1416],[130.686,-0.1408],[130.6895,-0.1389],[130.6879,-0.1335]],[[130.641,-0.1146],[130.6445,-0.1222],[130.6518,-0.123],[130.6605,-0.1164],[130.6542,-0.1149],[130.6456,-0.1165],[130.641,-0.1146]],[[130.2556,-0.1109],[130.252,-0.1076],[130.2486,-0.112],[130.2444,-0.1119],[130.2448,-0.1198],[130.2507,-0.1247],[130.2592,-0.1211],[130.2601,-0.1185],[130.2556,-0.1109]],[[130.1814,-0.1057],[130.1834,-0.099],[130.1783,-0.0935],[130.1734,-0.0919],[130.1709,-0.0946],[130.1745,-0.0989],[130.1768,-0.1064],[130.1814,-0.1057]],[[130.6658,-0.0935],[130.6644,-0.0892],[130.6592,-0.0885],[130.6575,-0.0931],[130.6612,-0.0958],[130.6658,-0.0935]],[[130.3544,-0.0746],[130.3481,-0.0681],[130.346,-0.0719],[130.3507,-0.0754],[130.3544,-0.0746]],[[130.0551,-0.0709],[130.0506,-0.0675],[130.0427,-0.0728],[130.0302,-0.0724],[130.0257,-0.074],[130.0188,-0.072],[130.0063,-0.0711],[130.0049,-0.0738],[130.0123,-0.0759],[130.0238,-0.0764],[130.0481,-0.0762],[130.053,-0.0798],[130.0565,-0.0764],[130.0551,-0.0709]],[[130.4897,-0.0566],[130.4861,-0.0531],[130.4812,-0.0568],[130.4891,-0.0587],[130.4897,-0.0566]],[[131.0785,-0.0506],[131.0761,-0.0399],[131.0713,-0.0384],[131.0619,-0.0455],[131.0644,-0.0502],[131.0778,-0.0533],[131.0785,-0.0506]],[[130.5105,-0.0319],[130.5019,-0.0312],[130.4968,-0.0338],[130.4864,-0.0317],[130.4887,-0.0357],[130.4937,-0.0379],[130.5001,-0.038],[130.5057,-0.0402],[130.5133,-0.039],[130.5105,-0.0319]],[[130.9391,-0.0194],[130.9348,-0.0214],[130.9377,-0.0266],[130.9454,-0.0355],[130.9465,-0.0293],[130.9525,-0.0285],[130.9515,-0.0245],[130.9391,-0.0194]],[[130.641,-0.1146],[130.6429,-0.1075],[130.648,-0.1054],[130.646,-0.1005],[130.6417,-0.1043],[130.6319,-0.1028],[130.6224,-0.1064],[130.6147,-0.1056],[130.6124,-0.1031],[130.6157,-0.0957],[130.6108,-0.0949],[130.6082,-0.0995],[130.603,-0.0978],[130.5998,-0.0918],[130.6098,-0.0847],[130.6109,-0.0796],[130.6229,-0.0818],[130.6255,-0.0874],[130.6379,-0.0944],[130.6392,-0.0876],[130.6457,-0.0867],[130.6496,-0.0837],[130.6523,-0.0869],[130.6577,-0.0842],[130.6568,-0.0777],[130.6599,-0.076],[130.6691,-0.0791],[130.6776,-0.08],[130.6776,-0.0774],[130.6916,-0.0763],[130.6949,-0.0777],[130.6961,-0.082],[130.6929,-0.0874],[130.6828,-0.0904],[130.6753,-0.0944],[130.6807,-0.0992],[130.6822,-0.0958],[130.6977,-0.0974],[130.702,-0.0943],[130.7067,-0.0986],[130.7099,-0.1085],[130.7095,-0.1178],[130.7116,-0.1252],[130.7174,-0.1364],[130.7253,-0.1428],[130.7275,-0.1481],[130.735,-0.1508],[130.74,-0.156],[130.7453,-0.1546],[130.75,-0.1581],[130.7509,-0.1618],[130.7556,-0.1611],[130.7614,-0.1575],[130.7626,-0.1621],[130.7722,-0.1593],[130.7779,-0.1706],[130.7819,-0.1722],[130.7832,-0.176],[130.7793,-0.1823],[130.7857,-0.1852],[130.7896,-0.1952],[130.7898,-0.2027],[130.7879,-0.2073],[130.7897,-0.2153],[130.7843,-0.225],[130.784,-0.2299],[130.7919,-0.2363],[130.7911,-0.2409],[130.794,-0.2479],[130.7987,-0.2451],[130.8028,-0.2472],[130.8106,-0.2468],[130.8153,-0.2485],[130.8217,-0.247],[130.8295,-0.2485],[130.8351,-0.2522],[130.8416,-0.2498],[130.848,-0.2451],[130.8549,-0.2432],[130.8555,-0.2386],[130.8613,-0.2399],[130.8779,-0.2545],[130.8806,-0.259],[130.8815,-0.2672],[130.8885,-0.2707],[130.8944,-0.2785],[130.8972,-0.29],[130.8948,-0.2917],[130.8947,-0.2974],[130.901,-0.3022],[130.8976,-0.3086],[130.9019,-0.3095],[130.9166,-0.3077],[130.9213,-0.3139],[130.9221,-0.3226],[130.9243,-0.3256],[130.9322,-0.3296],[130.9358,-0.3389],[130.9348,-0.3454],[130.9403,-0.3522],[130.95,-0.3552],[130.9555,-0.3585],[130.9654,-0.3596],[130.9709,-0.3575],[130.9819,-0.3655],[130.9855,-0.3695],[130.9886,-0.3662],[130.9944,-0.364],[130.9889,-0.3536],[130.9932,-0.3453],[130.9969,-0.3444],[131.0088,-0.3471],[131.0124,-0.3515],[131.0206,-0.3578],[131.0191,-0.3649],[131.0289,-0.3623],[131.0267,-0.3547],[131.0331,-0.3504],[131.0341,-0.3451],[131.0416,-0.3488],[131.0421,-0.3541],[131.0551,-0.3485],[131.0588,-0.3413],[131.06,-0.3351],[131.0647,-0.3343],[131.0691,-0.3272],[131.0785,-0.3271],[131.0823,-0.3218],[131.0945,-0.3183],[131.097,-0.3143],[131.1014,-0.3179],[131.0982,-0.3233],[131.0978,-0.3283],[131.1141,-0.3294],[131.1236,-0.3349],[131.1277,-0.3321],[131.1315,-0.3339],[131.1425,-0.3341],[131.1529,-0.3353],[131.1653,-0.3408],[131.1764,-0.3423],[131.1914,-0.3506],[131.1989,-0.3644],[131.1996,-0.3709],[131.2046,-0.3694],[131.2215,-0.3738],[131.2373,-0.386],[131.2441,-0.3871],[131.2491,-0.3852],[131.2542,-0.379],[131.2522,-0.37],[131.2491,-0.3626],[131.2435,-0.3554],[131.243,-0.3482],[131.2463,-0.3459],[131.2511,-0.3493],[131.2602,-0.3495],[131.2679,-0.3525],[131.276,-0.3497],[131.2784,-0.3444],[131.2839,-0.3422],[131.2802,-0.335],[131.291,-0.3248],[131.2986,-0.3259],[131.3,-0.3192],[131.3049,-0.3166],[131.3037,-0.3131],[131.3051,-0.3071],[131.3112,-0.3032],[131.3166,-0.3035],[131.3217,-0.3066],[131.3256,-0.3012],[131.3336,-0.3013],[131.3369,-0.2981],[131.3367,-0.2891],[131.3282,-0.2809],[131.3102,-0.2713],[131.2987,-0.2602],[131.293,-0.2472],[131.2931,-0.2421],[131.2908,-0.2358],[131.2921,-0.2313],[131.2906,-0.2251],[131.2971,-0.2254],[131.2996,-0.2235],[131.3038,-0.2148],[131.3107,-0.2131],[131.3104,-0.2063],[131.3121,-0.2044],[131.3056,-0.199],[131.3026,-0.1942],[131.3074,-0.1896],[131.3052,-0.1853],[131.295,-0.174],[131.2926,-0.1651],[131.2832,-0.1664],[131.2753,-0.1582],[131.2596,-0.1547],[131.2572,-0.1526],[131.2552,-0.1429],[131.2484,-0.1403],[131.2401,-0.1457],[131.2348,-0.151],[131.2296,-0.1479],[131.2231,-0.1387],[131.2183,-0.1408],[131.213,-0.1407],[131.2083,-0.1428],[131.2003,-0.1349],[131.1968,-0.1333],[131.1904,-0.1345],[131.1881,-0.1287],[131.1898,-0.1216],[131.1889,-0.1168],[131.1777,-0.1084],[131.1756,-0.1028],[131.1712,-0.1015],[131.1647,-0.1043],[131.1604,-0.0995],[131.1536,-0.0956],[131.1541,-0.0912],[131.1509,-0.0858],[131.1385,-0.0832],[131.1346,-0.0799],[131.1244,-0.0777],[131.119,-0.0798],[131.1047,-0.0806],[131.0947,-0.0747],[131.0908,-0.0757],[131.0839,-0.0682],[131.0762,-0.0683],[131.0726,-0.0756],[131.0693,-0.0728],[131.0582,-0.069],[131.0524,-0.0706],[131.0432,-0.0656],[131.033,-0.0662],[131.0313,-0.0609],[131.0445,-0.0604],[131.0503,-0.0561],[131.0522,-0.05],[131.0512,-0.0405],[131.045,-0.0261],[131.0404,-0.0269],[131.0358,-0.0369],[131.0277,-0.0408],[131.0192,-0.0378],[131.0152,-0.044],[131.0032,-0.0491],[130.989,-0.0478],[130.9779,-0.0407],[130.9741,-0.0449],[130.9808,-0.0522],[130.9818,-0.0559],[130.9798,-0.0619],[130.9767,-0.0635],[130.9675,-0.0618],[130.9634,-0.0657],[130.9622,-0.056],[130.9635,-0.0509],[130.9557,-0.0456],[130.9524,-0.0401],[130.948,-0.0397],[130.9464,-0.0452],[130.9384,-0.0441],[130.9266,-0.0389],[130.9216,-0.0351],[130.9135,-0.0337],[130.9097,-0.0296],[130.9034,-0.0301],[130.9,-0.0272],[130.8938,-0.0265],[130.8877,-0.0225],[130.8831,-0.0234],[130.8813,-0.0204],[130.8745,-0.0172],[130.868,-0.0162],[130.8404,-0.0138],[130.8306,-0.0115],[130.823,-0.017],[130.8187,-0.0109],[130.8096,-0.008],[130.7973,-0.0117],[130.7938,-0.0081],[130.7863,-0.0088],[130.781,-0.012],[130.7719,-0.0154],[130.7696,-0.0114],[130.7597,-0.016],[130.7582,-0.0184],[130.7503,-0.0186],[130.7524,-0.0231],[130.7495,-0.0259],[130.7434,-0.0242],[130.7361,-0.0265],[130.737,-0.0363],[130.745,-0.0367],[130.7513,-0.0392],[130.7647,-0.0372],[130.7727,-0.0384],[130.7811,-0.0445],[130.7775,-0.0511],[130.7718,-0.0522],[130.7679,-0.0495],[130.7637,-0.0546],[130.7542,-0.0541],[130.7513,-0.0506],[130.7473,-0.051],[130.7454,-0.056],[130.7357,-0.0489],[130.7342,-0.0517],[130.7272,-0.0559],[130.7223,-0.051],[130.7142,-0.0529],[130.7084,-0.0562],[130.7066,-0.0614],[130.7027,-0.0562],[130.7108,-0.0478],[130.7249,-0.0408],[130.7279,-0.0368],[130.7238,-0.035],[130.7223,-0.0313],[130.7095,-0.0283],[130.7066,-0.0306],[130.7021,-0.0378],[130.6956,-0.0355],[130.6934,-0.0405],[130.6883,-0.0434],[130.6828,-0.0394],[130.6675,-0.0452],[130.6654,-0.05],[130.6606,-0.0464],[130.6508,-0.0486],[130.6485,-0.0502],[130.6507,-0.0568],[130.6454,-0.0607],[130.6423,-0.0539],[130.6355,-0.0563],[130.6293,-0.053],[130.6252,-0.0553],[130.6279,-0.0587],[130.6252,-0.0622],[130.6175,-0.0614],[130.6171,-0.0562],[130.6098,-0.0504],[130.6034,-0.0492],[130.5937,-0.0523],[130.5936,-0.0467],[130.5887,-0.0458],[130.5862,-0.0417],[130.5814,-0.0457],[130.5747,-0.0471],[130.5788,-0.0562],[130.5753,-0.0584],[130.5704,-0.0517],[130.5679,-0.0523],[130.5646,-0.0446],[130.5688,-0.0397],[130.5641,-0.0363],[130.5569,-0.0342],[130.559,-0.0431],[130.5575,-0.0485],[130.5637,-0.0529],[130.5638,-0.0598],[130.5679,-0.0689],[130.5664,-0.073],[130.5608,-0.0727],[130.5556,-0.0646],[130.5354,-0.0552],[130.5354,-0.058],[130.5475,-0.0693],[130.5401,-0.0744],[130.5341,-0.0697],[130.5306,-0.072],[130.5286,-0.065],[130.525,-0.0617],[130.5264,-0.0544],[130.5175,-0.0552],[130.5137,-0.0488],[130.5081,-0.0458],[130.4981,-0.0452],[130.4935,-0.0465],[130.4953,-0.0509],[130.5001,-0.0513],[130.5056,-0.0579],[130.5124,-0.0639],[130.5027,-0.0644],[130.5001,-0.0625],[130.4895,-0.0652],[130.4906,-0.0714],[130.4878,-0.0781],[130.4827,-0.078],[130.4722,-0.0709],[130.4602,-0.0739],[130.4639,-0.0781],[130.4647,-0.0827],[130.4608,-0.0857],[130.45,-0.083],[130.4435,-0.0867],[130.4434,-0.0937],[130.4393,-0.0928],[130.4359,-0.0966],[130.4319,-0.0893],[130.4263,-0.0839],[130.4223,-0.077],[130.4143,-0.0864],[130.4234,-0.0871],[130.4263,-0.0921],[130.4221,-0.1033],[130.4162,-0.1009],[130.41,-0.1031],[130.4046,-0.1014],[130.407,-0.1088],[130.4009,-0.1141],[130.3887,-0.1112],[130.3873,-0.1071],[130.3937,-0.0985],[130.3948,-0.0888],[130.3887,-0.0838],[130.3924,-0.0758],[130.3842,-0.0744],[130.3791,-0.0794],[130.3725,-0.0798],[130.3681,-0.0741],[130.3576,-0.0745],[130.3583,-0.0776],[130.3675,-0.0779],[130.3695,-0.0833],[130.352,-0.0807],[130.3499,-0.0854],[130.3511,-0.09],[130.3554,-0.0912],[130.3555,-0.095],[130.3591,-0.0977],[130.3649,-0.0967],[130.3691,-0.0999],[130.3658,-0.107],[130.3709,-0.1163],[130.3678,-0.1209],[130.3598,-0.1236],[130.356,-0.1293],[130.3494,-0.1343],[130.3445,-0.1286],[130.3443,-0.1185],[130.3385,-0.1142],[130.3368,-0.1104],[130.3451,-0.1036],[130.3412,-0.0995],[130.3407,-0.0946],[130.3436,-0.0878],[130.3392,-0.0833],[130.34,-0.0786],[130.3356,-0.0784],[130.3326,-0.0871],[130.3353,-0.0936],[130.3303,-0.0935],[130.3294,-0.0968],[130.3351,-0.1023],[130.3348,-0.1069],[130.3295,-0.1082],[130.321,-0.105],[130.3156,-0.1094],[130.3083,-0.1084],[130.3047,-0.1025],[130.2958,-0.1034],[130.2874,-0.0943],[130.2808,-0.0966],[130.2861,-0.1008],[130.286,-0.1056],[130.2813,-0.1105],[130.272,-0.1126],[130.2674,-0.1114],[130.2687,-0.1187],[130.2751,-0.1211],[130.2793,-0.1267],[130.2794,-0.1347],[130.2724,-0.1309],[130.2706,-0.1321],[130.2694,-0.142],[130.2721,-0.1491],[130.2821,-0.1509],[130.2844,-0.1543],[130.2937,-0.1513],[130.2949,-0.1566],[130.2935,-0.1616],[130.297,-0.1663],[130.2898,-0.1682],[130.2881,-0.1722],[130.2928,-0.1777],[130.3017,-0.1782],[130.3066,-0.1802],[130.316,-0.1806],[130.3335,-0.1914],[130.3411,-0.1934],[130.3438,-0.1891],[130.3379,-0.1822],[130.3368,-0.1775],[130.3388,-0.1708],[130.3353,-0.1619],[130.3305,-0.1579],[130.3255,-0.1572],[130.3203,-0.1533],[130.3186,-0.1479],[130.3207,-0.1427],[130.3276,-0.1421],[130.3303,-0.1457],[130.3394,-0.1486],[130.3465,-0.155],[130.3494,-0.1593],[130.3549,-0.1528],[130.355,-0.1486],[130.3514,-0.1449],[130.3533,-0.1387],[130.3582,-0.1394],[130.3619,-0.1422],[130.3649,-0.1549],[130.3683,-0.1582],[130.3647,-0.1621],[130.3723,-0.1722],[130.3785,-0.1717],[130.3734,-0.1624],[130.376,-0.1602],[130.3803,-0.1627],[130.3824,-0.167],[130.3898,-0.1696],[130.4008,-0.1603],[130.4087,-0.1628],[130.4071,-0.1537],[130.4021,-0.1505],[130.4028,-0.1466],[130.4003,-0.1416],[130.3925,-0.1407],[130.3901,-0.1364],[130.3888,-0.1293],[130.3953,-0.1277],[130.3999,-0.1302],[130.4134,-0.1328],[130.4166,-0.1366],[130.4151,-0.1416],[130.4111,-0.1453],[130.4091,-0.1516],[130.4151,-0.1603],[130.414,-0.1674],[130.4091,-0.1692],[130.3845,-0.174],[130.3748,-0.1771],[130.3685,-0.1778],[130.3665,-0.1837],[130.3737,-0.1869],[130.3778,-0.1856],[130.3817,-0.1881],[130.3902,-0.1824],[130.4039,-0.1815],[130.4114,-0.1785],[130.4173,-0.1782],[130.4198,-0.183],[130.4296,-0.1873],[130.4311,-0.1918],[130.4375,-0.194],[130.4404,-0.1977],[130.435,-0.1993],[130.431,-0.1973],[130.4243,-0.2033],[130.4163,-0.204],[130.4131,-0.2087],[130.4056,-0.2082],[130.3974,-0.2156],[130.4018,-0.2177],[130.3997,-0.2215],[130.4,-0.2276],[130.3926,-0.2255],[130.3901,-0.2313],[130.3856,-0.2316],[130.3749,-0.2349],[130.3717,-0.2399],[130.3669,-0.2419],[130.361,-0.2414],[130.3596,-0.2331],[130.3712,-0.237],[130.372,-0.2313],[130.3656,-0.2248],[130.3631,-0.2138],[130.3671,-0.2139],[130.3636,-0.2071],[130.3568,-0.2041],[130.3485,-0.2057],[130.343,-0.205],[130.3323,-0.2115],[130.3292,-0.2216],[130.3254,-0.2196],[130.3149,-0.2207],[130.3064,-0.2185],[130.3029,-0.2218],[130.2936,-0.2185],[130.2859,-0.2212],[130.2739,-0.2186],[130.2655,-0.2206],[130.2585,-0.2242],[130.2569,-0.2218],[130.2604,-0.2176],[130.2549,-0.2131],[130.2418,-0.2075],[130.2285,-0.2057],[130.2151,-0.2054],[130.2085,-0.2114],[130.211,-0.2186],[130.2265,-0.2246],[130.2365,-0.2262],[130.242,-0.2289],[130.2545,-0.2299],[130.2616,-0.2285],[130.2741,-0.2288],[130.2796,-0.2302],[130.2815,-0.2367],[130.3034,-0.2489],[130.3075,-0.253],[130.3098,-0.2583],[130.3089,-0.2654],[130.3057,-0.2707],[130.3043,-0.2765],[130.3076,-0.2775],[130.3129,-0.274],[130.3134,-0.2668],[130.3202,-0.2661],[130.3169,-0.2743],[130.3195,-0.2751],[130.33,-0.2645],[130.3331,-0.2587],[130.3434,-0.2611],[130.3471,-0.2584],[130.3514,-0.2598],[130.3538,-0.2643],[130.3532,-0.2696],[130.3606,-0.2687],[130.3651,-0.2696],[130.3689,-0.2821],[130.3777,-0.2827],[130.3826,-0.2793],[130.3766,-0.2734],[130.3691,-0.2738],[130.3671,-0.2656],[130.3699,-0.2648],[130.384,-0.2667],[130.3824,-0.2715],[130.391,-0.2738],[130.4012,-0.2711],[130.4107,-0.2634],[130.4226,-0.2638],[130.43,-0.2746],[130.434,-0.2764],[130.4344,-0.2833],[130.4296,-0.2863],[130.4238,-0.2855],[130.4214,-0.2891],[130.4263,-0.2921],[130.4312,-0.2904],[130.4398,-0.292],[130.4454,-0.2772],[130.4564,-0.2633],[130.4659,-0.2619],[130.4729,-0.2635],[130.4751,-0.2673],[130.4798,-0.2631],[130.4895,-0.2597],[130.4971,-0.2548],[130.5095,-0.2481],[130.5175,-0.2513],[130.5234,-0.2584],[130.5242,-0.2644],[130.5215,-0.2661],[130.5193,-0.2734],[130.5153,-0.277],[130.5153,-0.2824],[130.5119,-0.285],[130.5116,-0.2962],[130.5094,-0.3011],[130.5142,-0.3081],[130.5163,-0.3153],[130.5229,-0.3129],[130.5284,-0.3132],[130.5335,-0.3115],[130.538,-0.3129],[130.5346,-0.3176],[130.5364,-0.3239],[130.5407,-0.3326],[130.5388,-0.3472],[130.5404,-0.3566],[130.5399,-0.3623],[130.5419,-0.3663],[130.5421,-0.3829],[130.5391,-0.3927],[130.5433,-0.3914],[130.5485,-0.3866],[130.5512,-0.4014],[130.5484,-0.4062],[130.5472,-0.4163],[130.5442,-0.4233],[130.536,-0.4315],[130.5376,-0.4369],[130.5422,-0.4349],[130.5484,-0.4389],[130.5578,-0.4339],[130.5593,-0.4309],[130.5593,-0.4183],[130.5662,-0.411],[130.5655,-0.4081],[130.5717,-0.4007],[130.5759,-0.3999],[130.5777,-0.3931],[130.5851,-0.3868],[130.5811,-0.3823],[130.5813,-0.3766],[130.5846,-0.3717],[130.5831,-0.3691],[130.5753,-0.3673],[130.5703,-0.3725],[130.5656,-0.3718],[130.5626,-0.3741],[130.5546,-0.3763],[130.5566,-0.3708],[130.557,-0.3635],[130.5613,-0.3602],[130.5671,-0.3591],[130.5694,-0.3534],[130.5686,-0.3476],[130.5742,-0.3412],[130.5764,-0.3365],[130.568,-0.3281],[130.5684,-0.3253],[130.5758,-0.3238],[130.5834,-0.3245],[130.6002,-0.3167],[130.6038,-0.3186],[130.6068,-0.3109],[130.612,-0.3155],[130.6181,-0.3118],[130.6265,-0.3126],[130.629,-0.3093],[130.6326,-0.3168],[130.6399,-0.3104],[130.6444,-0.311],[130.6569,-0.3078],[130.6602,-0.3041],[130.6679,-0.3029],[130.6695,-0.298],[130.6748,-0.2953],[130.6795,-0.2962],[130.6811,-0.3031],[130.6908,-0.3045],[130.6956,-0.3097],[130.6921,-0.3156],[130.6954,-0.3245],[130.7018,-0.3302],[130.6966,-0.3309],[130.6936,-0.3356],[130.6871,-0.3365],[130.6831,-0.339],[130.6751,-0.3388],[130.6692,-0.3422],[130.6768,-0.347],[130.6811,-0.3455],[130.6845,-0.3489],[130.685,-0.3536],[130.6905,-0.3575],[130.6927,-0.3647],[130.6998,-0.3816],[130.7006,-0.386],[130.6962,-0.3964],[130.7033,-0.4008],[130.7045,-0.4055],[130.7033,-0.4113],[130.7074,-0.422],[130.712,-0.4301],[130.7158,-0.4331],[130.7165,-0.4383],[130.7236,-0.4463],[130.7363,-0.4464],[130.7478,-0.4498],[130.7567,-0.4505],[130.7656,-0.4498],[130.7664,-0.4435],[130.7717,-0.4421],[130.7741,-0.4453],[130.781,-0.4471],[130.7899,-0.4513],[130.796,-0.4461],[130.7984,-0.4404],[130.8047,-0.4423],[130.8094,-0.4469],[130.8196,-0.4389],[130.8322,-0.4382],[130.8393,-0.4328],[130.8471,-0.4289],[130.864,-0.4282],[130.8681,-0.4309],[130.8731,-0.4306],[130.8753,-0.4237],[130.8801,-0.4196],[130.8803,-0.4151],[130.8886,-0.4134],[130.8909,-0.4092],[130.8951,-0.4116],[130.9002,-0.41],[130.9052,-0.4035],[130.9083,-0.4063],[130.9135,-0.4044],[130.9237,-0.3938],[130.9308,-0.3932],[130.9311,-0.3892],[130.9239,-0.3851],[130.9206,-0.3791],[130.9221,-0.3752],[130.9162,-0.3712],[130.9232,-0.3663],[130.9257,-0.3699],[130.9306,-0.3699],[130.9347,-0.3742],[130.941,-0.3652],[130.9397,-0.3594],[130.9303,-0.3558],[130.9268,-0.3478],[130.9264,-0.3386],[130.9203,-0.333],[130.9165,-0.3276],[130.9155,-0.3143],[130.9025,-0.3144],[130.8936,-0.3242],[130.8842,-0.3252],[130.8789,-0.3207],[130.873,-0.3201],[130.8611,-0.3214],[130.8472,-0.3183],[130.8432,-0.3128],[130.8442,-0.3075],[130.8425,-0.3022],[130.8359,-0.2995],[130.8214,-0.2961],[130.8175,-0.2985],[130.8064,-0.3023],[130.8067,-0.3068],[130.8133,-0.3089],[130.8146,-0.3134],[130.8107,-0.3192],[130.8063,-0.3175],[130.8009,-0.3125],[130.7971,-0.3145],[130.791,-0.3123],[130.7874,-0.3059],[130.7836,-0.3022],[130.779,-0.3083],[130.7785,-0.2993],[130.775,-0.2981],[130.7655,-0.3009],[130.7602,-0.2937],[130.7486,-0.2971],[130.7441,-0.2951],[130.7393,-0.2959],[130.7367,-0.2994],[130.7319,-0.3002],[130.7261,-0.2978],[130.7258,-0.2938],[130.7323,-0.2904],[130.7319,-0.2883],[130.7387,-0.2839],[130.7318,-0.2775],[130.7266,-0.2706],[130.7202,-0.2526],[130.7161,-0.25],[130.7187,-0.2461],[130.7152,-0.2441],[130.7167,-0.2399],[130.7044,-0.2291],[130.6936,-0.2138],[130.6912,-0.2026],[130.6822,-0.193],[130.6765,-0.1886],[130.6703,-0.1748],[130.6657,-0.1719],[130.6557,-0.1619],[130.6525,-0.1551],[130.6473,-0.1519],[130.6353,-0.1488],[130.6306,-0.1498],[130.6257,-0.148],[130.6216,-0.1501],[130.614,-0.1469],[130.6179,-0.1438],[130.6257,-0.1452],[130.6287,-0.1427],[130.6264,-0.1387],[130.6267,-0.133],[130.62,-0.1266],[130.6126,-0.1242],[130.6228,-0.1168],[130.6332,-0.1166],[130.6364,-0.113],[130.641,-0.1146]],[[130.1101,-0.0041],[130.0963,0.0083],[130.0867,0.0102],[130.0821,-0.0027],[130.0944,-0.013],[130.095,-0.0212],[130.1034,-0.0274],[130.105,-0.0319],[130.1024,-0.0391],[130.0901,-0.0403],[130.0938,-0.0522],[130.0888,-0.0518],[130.0882,-0.0557],[130.0924,-0.0595],[130.0896,-0.0685],[130.0978,-0.0728],[130.1042,-0.0716],[130.107,-0.0856],[130.1059,-0.0918],[130.1077,-0.0952],[130.1135,-0.0978],[130.1145,-0.093],[130.1182,-0.0915],[130.1234,-0.1013],[130.1307,-0.101],[130.1332,-0.0973],[130.1385,-0.0952],[130.1422,-0.0911],[130.1444,-0.0846],[130.1441,-0.0793],[130.1465,-0.0755],[130.1555,-0.071],[130.1552,-0.0678],[130.1494,-0.0652],[130.1465,-0.0607],[130.1477,-0.0467],[130.1417,-0.0489],[130.136,-0.0486],[130.13,-0.041],[130.1251,-0.0376],[130.1234,-0.0439],[130.1087,-0.0373],[130.1091,-0.0348],[130.1153,-0.0328],[130.1156,-0.0286],[130.1213,-0.0273],[130.1285,-0.0284],[130.1329,-0.0308],[130.1337,-0.0245],[130.1361,-0.0202],[130.1318,-0.0185],[130.1219,-0.0194],[130.1142,-0.0165],[130.1113,-0.0128],[130.1057,-0.0104],[130.1058,-0.0066],[130.1101,-0.0041]],[[130.9297,-0.0087],[130.9498,-0.0002],[130.9613,0.0076],[130.9623,0.0133],[130.959,0.0172],[130.9472,0.0181],[130.9399,0.021],[130.9332,0.0206],[130.9254,0.0166],[130.9206,0.0093],[130.9206,-0.0002],[130.9178,-0.0039],[130.9174,-0.0093],[130.9246,-0.0117],[130.9297,-0.0087]],[[130.8759,0.0282],[130.8675,0.0326],[130.8634,0.0247],[130.8671,0.0155],[130.8824,0.0101],[130.8893,0.0108],[130.8968,0.0206],[130.8968,0.0264],[130.891,0.0314],[130.8838,0.0307],[130.8792,0.0276],[130.8759,0.0282]],[[131.0734,0.3775],[131.0685,0.3855],[131.0643,0.3898],[131.0487,0.3997],[131.0445,0.399],[131.0385,0.3949],[131.0315,0.3829],[131.036,0.3765],[131.0444,0.3754],[131.0516,0.3767],[131.0554,0.3738],[131.0481,0.3685],[131.0461,0.365],[131.0506,0.3583],[131.0544,0.358],[131.0648,0.3525],[131.0755,0.3531],[131.078,0.3545],[131.0802,0.3632],[131.0734,0.3775]],[[131.1422,0.3868],[131.1474,0.3918],[131.1436,0.4069],[131.1395,0.4127],[131.1353,0.4137],[131.1315,0.3999],[131.1324,0.3944],[131.1367,0.3875],[131.1422,0.3868]],[[131.1806,0.482],[131.1835,0.4851],[131.1786,0.4946],[131.167,0.5039],[131.1599,0.5159],[131.1554,0.5191],[131.1476,0.5202],[131.1444,0.5162],[131.145,0.5099],[131.149,0.5014],[131.157,0.4914],[131.1632,0.487],[131.1717,0.4829],[131.1806,0.482]],[[131.2225,0.5562],[131.224,0.5609],[131.2221,0.5682],[131.2114,0.5726],[131.2013,0.5782],[131.187,0.5822],[131.1836,0.5813],[131.1792,0.5763],[131.1824,0.5692],[131.1914,0.5648],[131.2065,0.561],[131.2167,0.5548],[131.2225,0.5562]]]}},{"type":"Feature","properties":{"mhid":"1332:487","alt_name":"KABUPATEN TAMBRAUW","latitude":-0.60515,"longitude":132.48962,"sample_value":300},"geometry":{"type":"MultiLineString","coordinates":[[[133.5066,-0.7477],[133.5083,-0.7435],[133.4969,-0.7413],[133.4844,-0.7404],[133.4729,-0.741],[133.463,-0.74],[133.4525,-0.7404],[133.4329,-0.7379],[133.4222,-0.7376],[133.4183,-0.7364],[133.4133,-0.7378],[133.3953,-0.7407],[133.3895,-0.7397],[133.3785,-0.7286],[133.371,-0.7235],[133.3499,-0.7149],[133.3312,-0.705],[133.3215,-0.6986],[133.3139,-0.6882],[133.3042,-0.6765],[133.295,-0.6669],[133.29,-0.6606],[133.2805,-0.6562],[133.2722,-0.6506],[133.2497,-0.6275],[133.2471,-0.6189],[133.2387,-0.612],[133.237,-0.6086],[133.228,-0.603],[133.2259,-0.6003],[133.2186,-0.5985],[133.1902,-0.5895],[133.1792,-0.5848],[133.1736,-0.5806],[133.1721,-0.5775],[133.1628,-0.5722],[133.1583,-0.567],[133.1593,-0.5536],[133.1516,-0.5462],[133.1447,-0.5436],[133.1335,-0.5438],[133.1273,-0.545],[133.1228,-0.5532],[133.1121,-0.5514],[133.1078,-0.5483],[133.0961,-0.5455],[133.087,-0.5382],[133.0816,-0.5284],[133.0815,-0.5172],[133.0699,-0.516],[133.0592,-0.5194],[133.0514,-0.5189],[133.047,-0.5155],[133.0415,-0.5205],[133.0372,-0.5212],[133.0308,-0.5194],[133.0242,-0.515],[133.0162,-0.5274],[133.012,-0.5178],[133.007,-0.502],[132.9995,-0.4916],[133.0024,-0.4816],[132.9851,-0.4807],[132.9714,-0.476],[132.9618,-0.4739],[132.9681,-0.4585],[132.9697,-0.4523],[132.962,-0.4405],[132.9562,-0.4393],[132.9457,-0.4429],[132.9255,-0.4522],[132.9051,-0.4474],[132.8943,-0.4486],[132.887,-0.4462],[132.8801,-0.4478],[132.8617,-0.4375],[132.8292,-0.4247],[132.8112,-0.4155],[132.8017,-0.4135],[132.7883,-0.4066],[132.7751,-0.3968],[132.7694,-0.3974],[132.7564,-0.3831],[132.7485,-0.3877],[132.7277,-0.3789],[132.7137,-0.3738],[132.7095,-0.3622],[132.7099,-0.3569],[132.7019,-0.3589],[132.6914,-0.3664],[132.6757,-0.3654],[132.6585,-0.3613],[132.6473,-0.3571],[132.6399,-0.3603],[132.6199,-0.3571],[132.6009,-0.3552],[132.5819,-0.3566],[132.526,-0.3537],[132.5033,-0.3584],[132.4631,-0.3494],[132.4305,-0.3437],[132.4092,-0.3447],[132.3823,-0.3636],[132.3625,-0.3598],[132.3585,-0.3684],[132.3441,-0.3776],[132.3209,-0.3819],[132.2892,-0.3811],[132.2686,-0.3767],[132.2575,-0.3795],[132.2563,-0.3946],[132.2442,-0.4005],[132.1931,-0.4092],[132.1622,-0.425],[132.1453,-0.446],[132.1272,-0.4536],[132.1043,-0.4639],[132.0786,-0.4829],[132.0711,-0.4921],[132.0731,-0.4983],[132.0738,-0.5062],[132.0728,-0.5151],[132.0591,-0.5364],[132.0214,-0.55]]]}},{"type":"Feature","properties":{"mhid":"1332:489","alt_name":"KABUPATEN MANOKWARI SELATAN","latitude":-1.0798,"longitude":133.96729,"sample_value":460},"geometry":{"type":"MultiLineString","coordinates":[[[134.1937,-1.1999],[134.1926,-1.1972],[134.1859,-1.1919]],[[134.0929,-1.7682],[134.0891,-1.7067],[134.0807,-1.6636],[134.0808,-1.6598],[134.0752,-1.658],[134.0707,-1.6586],[134.0705,-1.6533],[134.0754,-1.6492],[134.0881,-1.6465],[134.0941,-1.641],[134.1,-1.6401],[134.1016,-1.6351],[134.1062,-1.6384],[134.117,-1.6387],[134.1234,-1.6334],[134.1323,-1.6205],[134.1383,-1.6073],[134.1446,-1.5975],[134.1659,-1.582],[134.1765,-1.5683],[134.1835,-1.5622],[134.1881,-1.5597],[134.1906,-1.5559],[134.1885,-1.5519],[134.1903,-1.5438],[134.1957,-1.5435],[134.1991,-1.5343],[134.201,-1.5223],[134.2078,-1.5118],[134.2112,-1.5041],[134.2113,-1.4954],[134.2042,-1.4805],[134.1982,-1.4642],[134.1987,-1.4538],[134.2007,-1.4489],[134.2113,-1.4334],[134.2124,-1.4301],[134.2128,-1.4159],[134.2141,-1.4094],[134.2226,-1.3926],[134.2291,-1.3759],[134.2409,-1.3584],[134.2467,-1.3526],[134.2529,-1.3504],[134.2642,-1.3407],[134.2695,-1.3416],[134.274,-1.3498],[134.2793,-1.3476],[134.2797,-1.3425],[134.2773,-1.3333],[134.2638,-1.323],[134.2559,-1.3181],[134.2493,-1.3111],[134.2467,-1.3055],[134.2456,-1.2966],[134.2464,-1.2919],[134.2348,-1.2779],[134.2291,-1.2689],[134.2245,-1.2637],[134.2146,-1.2446],[134.2077,-1.2348],[134.2035,-1.2241]]]}},{"type":"Feature","properties":{"mhid":"1332:490","alt_name":"KABUPATEN PEGUNUNGAN ARFAK","latitude":-0.93523,"longitude":133.89587,"sample_value":909},"geometry":{"type":"MultiLineString","coordinates":[[[134.0057,-0.9966],[134.0092,-0.9909],[134.0033,-0.9892],[134.0009,-0.9974],[134.0057,-0.9966]],[[133.9728,-0.9592],[133.9664,-0.9525],[133.9638,-0.957],[133.9685,-0.9626],[133.9728,-0.9592]],[[134.032,-0.8703],[134.0339,-0.8658],[134.0267,-0.8611],[134.0253,-0.8685],[134.032,-0.8703]]]}},{"type":"Feature","properties":{"mhid":"1332:491","alt_name":"KOTA SORONG","latitude":-0.86507,"longitude":131.25153,"sample_value":763},"geometry":{"type":"MultiLineString","coordinates":[[[131.2564,-0.9241],[131.2519,-0.9306],[131.2527,-0.9337],[131.2625,-0.9354],[131.2564,-0.9241]],[[131.2373,-0.884],[131.2309,-0.8884],[131.2353,-0.8908],[131.2413,-0.8872],[131.2373,-0.884]],[[131.2059,-0.8826],[131.1968,-0.8854],[131.1888,-0.8926],[131.185,-0.8973],[131.1922,-0.8986],[131.1994,-0.8945],[131.2045,-0.8952],[131.2101,-0.8875],[131.2105,-0.8836],[131.2059,-0.8826]],[[131.2144,-0.834],[131.2082,-0.8372],[131.2172,-0.8416],[131.2144,-0.834]],[[131.3998,-0.7823],[131.3967,-0.7766],[131.392,-0.7784],[131.384,-0.7792],[131.3757,-0.7835],[131.3686,-0.7817],[131.3574,-0.7822],[131.3454,-0.7862],[131.3297,-0.7889],[131.3269,-0.7963],[131.3151,-0.7974],[131.3043,-0.803],[131.2982,-0.8028],[131.2941,-0.8057],[131.2826,-0.8054],[131.2743,-0.81],[131.2695,-0.8094],[131.2586,-0.8133],[131.2545,-0.8164],[131.2487,-0.8168],[131.2432,-0.82],[131.2328,-0.8165],[131.2249,-0.8221],[131.2304,-0.8304],[131.2356,-0.8306],[131.2395,-0.8379],[131.2415,-0.8387],[131.2453,-0.8465],[131.2439,-0.8506],[131.2457,-0.8545],[131.247,-0.8632],[131.2453,-0.878],[131.2522,-0.8776],[131.2577,-0.8813],[131.2622,-0.8824],[131.2631,-0.8859],[131.2694,-0.8893],[131.2711,-0.8946],[131.2802,-0.8979],[131.2859,-0.8969],[131.2882,-0.9003],[131.2863,-0.9059],[131.2885,-0.9111],[131.2948,-0.9135],[131.295,-0.9179],[131.2856,-0.9137],[131.2767,-0.9217],[131.2703,-0.9195],[131.2679,-0.9219],[131.2678,-0.9321],[131.27,-0.9338]]]}},{"type":"Feature","properties":{"mhid":"1332:492","alt_name":"KABUPATEN MERAUKE","latitude":-7.66667,"longitude":139.66667,"sample_value":660},"geometry":{"type":"MultiLineString","coordinates":[[[138.9676,-8.3601],[138.9621,-8.3534],[138.9561,-8.3485],[138.9452,-8.3439],[138.9363,-8.3338],[138.926,-8.3241],[138.9207,-8.3292],[138.9186,-8.3393],[138.9187,-8.3448],[138.9238,-8.3588],[138.929,-8.3625],[138.9327,-8.3628],[138.9409,-8.3684],[138.9537,-8.3717],[138.964,-8.3697],[138.9674,-8.3676],[138.97,-8.3625],[138.9676,-8.3601]],[[138.9568,-8.3326],[138.9528,-8.3317],[138.9442,-8.327],[138.9322,-8.3146],[138.9302,-8.3208],[138.9413,-8.3331],[138.9526,-8.3417],[138.9623,-8.3441],[138.9728,-8.3407],[138.9787,-8.3363],[138.9772,-8.3343],[138.9645,-8.3324],[138.9568,-8.3326]],[[138.5828,-8.298],[138.5855,-8.2934]],[[138.5855,-8.2934],[138.5859,-8.2928],[138.5857,-8.2928]],[[138.5857,-8.2928],[138.5788,-8.2919],[138.5721,-8.2937],[138.5638,-8.2986],[138.5564,-8.3116],[138.5542,-8.32],[138.5565,-8.3265],[138.5672,-8.3206],[138.5694,-8.3093],[138.5719,-8.3051],[138.5828,-8.298]],[[138.99,-8.2876],[138.9795,-8.2881],[138.9753,-8.2921],[138.9679,-8.2927],[138.9543,-8.2958],[138.9452,-8.3013],[138.9366,-8.3052],[138.9359,-8.3123],[138.9441,-8.3225],[138.9519,-8.3275],[138.958,-8.3295],[138.9717,-8.3299],[138.9766,-8.3281],[138.9792,-8.3235],[138.9885,-8.3174],[138.9908,-8.3146],[139.0011,-8.295],[138.9987,-8.2892],[138.99,-8.2876]],[[138.8898,-8.2917],[138.882,-8.2895],[138.8708,-8.2841],[138.8611,-8.2869],[138.8565,-8.2903]],[[138.8565,-8.2903],[138.8547,-8.2916],[138.8543,-8.2927]],[[138.8543,-8.2927],[138.853,-8.2963],[138.8547,-8.3035],[138.8538,-8.3039]],[[138.8538,-8.3039],[138.8537,-8.3039]],[[138.8537,-8.3039],[138.8496,-8.3057],[138.8483,-8.3099],[138.8503,-8.3129]],[[138.8503,-8.3129],[138.8523,-8.3157]],[[138.8523,-8.3157],[138.8528,-8.3165],[138.8524,-8.325],[138.8515,-8.3263]],[[138.8515,-8.3263],[138.8511,-8.327]],[[138.8511,-8.327],[138.8496,-8.3293],[138.8518,-8.3412],[138.8514,-8.342]],[[138.8514,-8.342],[138.8499,-8.345],[138.8501,-8.3455]],[[138.8501,-8.3455],[138.8509,-8.3476]],[[138.8509,-8.3476],[138.8519,-8.3506]],[[138.8519,-8.3506],[138.8527,-8.3527],[138.8489,-8.3567]],[[138.8489,-8.3567],[138.8486,-8.357],[138.8487,-8.3571]],[[138.8487,-8.3571],[138.851,-8.3606],[138.8483,-8.3653],[138.8451,-8.3807],[138.8416,-8.3811],[138.8392,-8.3854],[138.8205,-8.3857],[138.8045,-8.3819],[138.8035,-8.3846],[138.812,-8.3876],[138.8275,-8.3891],[138.8405,-8.389],[138.8544,-8.3911],[138.8671,-8.3909],[138.8743,-8.3893],[138.883,-8.3893],[138.8937,-8.3878],[138.9014,-8.3847],[138.9066,-8.3796],[138.91,-8.3735],[138.9146,-8.3598],[138.9121,-8.3454],[138.9148,-8.3196],[138.9169,-8.3084],[138.9141,-8.297],[138.901,-8.2884],[138.8952,-8.2919],[138.8898,-8.2917]],[[138.8763,-8.2728],[138.8593,-8.2668],[138.856,-8.2695],[138.8626,-8.2734],[138.8754,-8.2831],[138.8825,-8.2877],[138.8909,-8.2897],[138.8952,-8.289],[138.901,-8.2802],[138.8958,-8.2718],[138.8902,-8.2689],[138.8763,-8.2728]],[[138.9977,-8.2841],[138.9986,-8.2782],[138.9967,-8.2739],[138.9956,-8.2648],[138.9869,-8.2677],[138.9788,-8.2759],[138.9807,-8.2878],[138.9851,-8.2868],[138.9955,-8.2879],[138.9977,-8.2841]],[[138.8559,-8.2686],[138.8583,-8.2663],[138.8488,-8.2569],[138.8463,-8.2583],[138.85,-8.2648],[138.8559,-8.2686]],[[138.9961,-8.235],[138.9939,-8.2296],[138.9868,-8.2343],[138.979,-8.236],[138.9709,-8.2394],[138.9676,-8.2425],[138.964,-8.2545],[138.9623,-8.2564]],[[138.9623,-8.2564],[138.9603,-8.2587]],[[138.9603,-8.2587],[138.9586,-8.2606],[138.9468,-8.2638],[138.9414,-8.2678],[138.937,-8.2755],[138.9325,-8.2782],[138.9241,-8.2792],[138.9292,-8.2902],[138.9338,-8.3028],[138.937,-8.3033],[138.9541,-8.2947],[138.9676,-8.2919],[138.9734,-8.2917],[138.9793,-8.2874],[138.9782,-8.2758],[138.9831,-8.2701],[138.9947,-8.2623],[138.9915,-8.2564],[138.99,-8.2422],[138.9967,-8.2381],[138.9961,-8.235]],[[138.6472,-8.2348],[138.6514,-8.2336],[138.6577,-8.2241],[138.6556,-8.2204],[138.6441,-8.2279],[138.6439,-8.2318],[138.6472,-8.2348]],[[138.8814,-8.271],[138.8908,-8.2661],[138.8869,-8.2547],[138.8867,-8.2386],[138.8824,-8.236],[138.8712,-8.2248],[138.8689,-8.2211],[138.8523,-8.2056],[138.849,-8.2078],[138.848,-8.2427],[138.8481,-8.2527],[138.8502,-8.2563],[138.8612,-8.266],[138.8734,-8.2708],[138.8814,-8.271]],[[138.7102,-8.1642],[138.7146,-8.1601],[138.7076,-8.1542],[138.6958,-8.1536],[138.6939,-8.1575],[138.6993,-8.1614],[138.7065,-8.1645],[138.7102,-8.1642]],[[138.7501,-8.1527],[138.7581,-8.1456],[138.7553,-8.1439],[138.7493,-8.151],[138.7501,-8.1527]],[[138.8189,-8.1505],[138.8229,-8.1479],[138.8155,-8.138],[138.8019,-8.1454],[138.7944,-8.1481],[138.7775,-8.1501],[138.7701,-8.1524],[138.7556,-8.1624],[138.7449,-8.1657],[138.7307,-8.1661],[138.7107,-8.1711],[138.6969,-8.1709],[138.6883,-8.1682],[138.6784,-8.1715],[138.6772,-8.1821],[138.6734,-8.2039],[138.6718,-8.2173],[138.6657,-8.2315],[138.6618,-8.2372],[138.6449,-8.2524],[138.6376,-8.2577],[138.6225,-8.2658],[138.6049,-8.2797],[138.5936,-8.2869],[138.5862,-8.2902],[138.5857,-8.2928]],[[138.5857,-8.2928],[138.5855,-8.2934]],[[138.5855,-8.2934],[138.5848,-8.2969],[138.5729,-8.3054],[138.5704,-8.3083],[138.5689,-8.3181],[138.5652,-8.3238],[138.5556,-8.3287],[138.552,-8.3348],[138.56,-8.3485],[138.5673,-8.3556],[138.578,-8.3586],[138.5895,-8.3604],[138.599,-8.3633],[138.6164,-8.3664],[138.6178,-8.3647],[138.6297,-8.3678],[138.64,-8.3676],[138.6516,-8.369],[138.6549,-8.3709],[138.6622,-8.3712],[138.6725,-8.369],[138.6797,-8.3712],[138.6866,-8.376],[138.6989,-8.3771],[138.7048,-8.3785],[138.7093,-8.3815],[138.727,-8.3851],[138.7411,-8.3865],[138.751,-8.3866],[138.7743,-8.3844],[138.7919,-8.3815],[138.7976,-8.3792],[138.8168,-8.3831],[138.8224,-8.3849],[138.8394,-8.3844],[138.8412,-8.3728],[138.8466,-8.3722],[138.8477,-8.3652],[138.8506,-8.361],[138.8484,-8.3577],[138.8487,-8.3571]],[[138.8487,-8.3571],[138.8489,-8.3567]],[[138.8489,-8.3567],[138.8519,-8.3506]],[[138.8519,-8.3506],[138.8524,-8.3497],[138.8509,-8.3476]],[[138.8509,-8.3476],[138.8498,-8.3462],[138.8501,-8.3455]],[[138.8501,-8.3455],[138.8514,-8.342],[138.8514,-8.342]],[[138.8514,-8.342],[138.8493,-8.3282],[138.8511,-8.327]],[[138.8511,-8.327],[138.8515,-8.3267],[138.8515,-8.3263]],[[138.8515,-8.3263],[138.8523,-8.3157]],[[138.8523,-8.3157],[138.8523,-8.3152],[138.8503,-8.3129]],[[138.8503,-8.3129],[138.8478,-8.3099],[138.8499,-8.305],[138.8537,-8.3039]],[[138.8537,-8.3039],[138.8538,-8.3039],[138.8538,-8.3039]],[[138.8538,-8.3039],[138.8527,-8.2945],[138.8543,-8.2927]],[[138.8543,-8.2927],[138.8565,-8.2903]],[[138.8565,-8.2903],[138.859,-8.2875],[138.8705,-8.2835],[138.8677,-8.2805],[138.858,-8.2742],[138.8469,-8.2643],[138.8439,-8.2581],[138.8426,-8.248],[138.8448,-8.2229],[138.8449,-8.2117],[138.8462,-8.1989],[138.8412,-8.1789],[138.8392,-8.1741],[138.8278,-8.1579],[138.8223,-8.1489],[138.8189,-8.1505]],[[138.917,-7.8968],[138.938,-7.8867],[138.9371,-7.8825],[138.9247,-7.8868],[138.9177,-7.8921],[138.917,-7.8968]],[[138.673,-7.3662],[138.6651,-7.3682],[138.6526,-7.3693],[138.6422,-7.3721],[138.6382,-7.3695],[138.6249,-7.3704],[138.5938,-7.3786],[138.5873,-7.3794],[138.5634,-7.3856],[138.5378,-7.3887],[138.5331,-7.3901],[138.5162,-7.391],[138.4909,-7.3935],[138.4753,-7.3959],[138.4598,-7.399],[138.445,-7.4001],[138.4444,-7.4012],[138.4308,-7.4022],[138.4127,-7.4054],[138.3958,-7.4089],[138.3732,-7.4146],[138.3638,-7.4157],[138.3566,-7.4195],[138.3386,-7.424],[138.3191,-7.4306],[138.3083,-7.4329],[138.3013,-7.4365],[138.2881,-7.4398],[138.2853,-7.4424],[138.265,-7.4506],[138.2565,-7.4548],[138.2456,-7.459],[138.2369,-7.4634],[138.2268,-7.4665],[138.2161,-7.4718],[138.2049,-7.4803],[138.1944,-7.4847],[138.1815,-7.4946],[138.171,-7.4992],[138.1612,-7.5074],[138.1574,-7.5086],[138.1389,-7.5225],[138.1196,-7.5361],[138.1145,-7.5433],[138.109,-7.5451],[138.108,-7.5492],[138.1001,-7.553],[138.0971,-7.5599],[138.0895,-7.5666],[138.0863,-7.5747],[138.077,-7.5755],[138.0739,-7.5821],[138.0623,-7.5898],[138.051,-7.5993],[138.0374,-7.6135],[138.0289,-7.6234],[138.0212,-7.6352],[138.0074,-7.6529],[138.0029,-7.6599],[137.9905,-7.6762],[137.976,-7.7017],[137.9717,-7.7178],[137.9712,-7.729],[137.9678,-7.7348],[137.9577,-7.7353],[137.9541,-7.7413],[137.9489,-7.7419],[137.9421,-7.747],[137.9328,-7.7555],[137.9268,-7.7625],[137.919,-7.7739],[137.9144,-7.7773],[137.9102,-7.7849],[137.9069,-7.7868],[137.9024,-7.7968],[137.8948,-7.8088],[137.8936,-7.8144],[137.8887,-7.8201],[137.8831,-7.8301],[137.877,-7.8463],[137.8733,-7.8472],[137.8687,-7.8528],[137.8663,-7.8635],[137.8599,-7.8704],[137.8587,-7.8812],[137.8499,-7.8899],[137.8489,-7.8961],[137.8364,-7.9153],[137.8361,-7.9185],[137.8399,-7.9237],[137.8345,-7.9242],[137.829,-7.9331],[137.8293,-7.9381],[137.825,-7.9416],[137.8174,-7.9536],[137.8198,-7.9568],[137.814,-7.9662],[137.8127,-7.9722],[137.8093,-7.9761],[137.8048,-7.9857],[137.8047,-7.9894],[137.8001,-8.0004],[137.7984,-8.012],[137.8022,-8.0249],[137.8096,-8.0329],[137.8144,-8.0337],[137.8157,-8.0383],[137.8035,-8.0448],[137.797,-8.0461],[137.7961,-8.0488],[137.7856,-8.0519],[137.7782,-8.0598],[137.7778,-8.063],[137.7721,-8.0654],[137.7666,-8.0704],[137.7639,-8.0771],[137.7636,-8.0852],[137.7602,-8.0861],[137.7536,-8.0929],[137.7521,-8.1012],[137.745,-8.1061],[137.7406,-8.116],[137.733,-8.1267],[137.7276,-8.1331],[137.7287,-8.1363],[137.721,-8.1446],[137.7137,-8.1644],[137.7065,-8.1722],[137.7072,-8.176],[137.7038,-8.1798],[137.7036,-8.1852],[137.6988,-8.1957],[137.696,-8.2057],[137.6918,-8.2127],[137.6893,-8.2248],[137.684,-8.236],[137.6833,-8.244],[137.6799,-8.2543],[137.6781,-8.2679],[137.6755,-8.272],[137.6749,-8.2787],[137.6715,-8.2844],[137.6712,-8.2928],[137.6674,-8.2996],[137.6643,-8.3148],[137.6604,-8.3434],[137.6615,-8.346],[137.6555,-8.3676],[137.6515,-8.3763],[137.6471,-8.3904],[137.6434,-8.4082],[137.6431,-8.413],[137.6403,-8.4176],[137.6403,-8.4233],[137.6427,-8.4309],[137.6508,-8.4419],[137.6551,-8.4461],[137.6622,-8.4469],[137.6642,-8.4404],[137.6727,-8.437],[137.684,-8.429],[137.6906,-8.4193],[137.6966,-8.4214],[137.7113,-8.4147],[137.7364,-8.4057],[137.752,-8.4023],[137.8006,-8.3932],[137.8332,-8.3888],[137.8571,-8.3849],[137.8631,-8.382],[137.8705,-8.3726],[137.8745,-8.3738],[137.8755,-8.3789],[137.88,-8.3812],[137.8925,-8.3828],[137.9133,-8.3838],[137.9371,-8.3835],[137.9725,-8.3847],[137.9797,-8.3845],[137.9925,-8.3824],[138.0033,-8.3853],[138.0491,-8.3867],[138.0537,-8.3858],[138.069,-8.3863],[138.0766,-8.3874],[138.0888,-8.3859],[138.0953,-8.3836],[138.1012,-8.3857],[138.1159,-8.3864],[138.1334,-8.3841],[138.1414,-8.3844],[138.1483,-8.386],[138.155,-8.3849],[138.1665,-8.3851],[138.1786,-8.3842],[138.1882,-8.3852],[138.1924,-8.3827],[138.1979,-8.3841],[138.2054,-8.3831],[138.2227,-8.3784],[138.228,-8.3805],[138.2286,-8.3845],[138.2399,-8.3874],[138.2457,-8.3875],[138.2565,-8.3912],[138.2639,-8.3919],[138.2634,-8.3993],[138.2616,-8.4058],[138.2625,-8.4131],[138.2653,-8.4194],[138.2728,-8.4222],[138.2811,-8.4234],[138.3033,-8.4249],[138.341,-8.4197],[138.3676,-8.4131],[138.3878,-8.4066],[138.409,-8.3987],[138.4278,-8.3899],[138.4412,-8.3847],[138.4523,-8.3761],[138.466,-8.3671],[138.4836,-8.3529],[138.4945,-8.3426],[138.5008,-8.3295],[138.4991,-8.3203],[138.5009,-8.316],[138.5188,-8.311],[138.5271,-8.307],[138.5347,-8.305],[138.5537,-8.2873],[138.5676,-8.2773],[138.6003,-8.2587],[138.6151,-8.2495],[138.6194,-8.2428],[138.6314,-8.2316],[138.6496,-8.2097],[138.653,-8.2047],[138.6598,-8.1745],[138.6662,-8.1627],[138.675,-8.1529],[138.6832,-8.1472],[138.6937,-8.1461],[138.711,-8.1464],[138.7211,-8.1489],[138.7327,-8.1537],[138.7457,-8.1506],[138.7508,-8.1474],[138.755,-8.1423],[138.762,-8.1436],[138.7789,-8.1393],[138.7944,-8.1395],[138.801,-8.1365],[138.8109,-8.1145],[138.81,-8.1037],[138.8112,-8.0981],[138.8164,-8.0898],[138.8257,-8.0801],[138.8345,-8.0752],[138.8525,-8.0697],[138.8598,-8.0687],[138.8743,-8.0705],[138.8849,-8.0734],[138.9029,-8.0766],[138.9127,-8.0763],[138.9144,-8.071],[138.9127,-8.0615],[138.9103,-8.0588],[138.9027,-8.0562],[138.8978,-8.0522],[138.8915,-8.043],[138.8891,-8.0367],[138.8887,-8.0293],[138.8898,-8.021],[138.8935,-8.0116],[138.8999,-8.0007],[138.9021,-7.9912],[138.9024,-7.9696],[138.8975,-7.9518],[138.892,-7.9358],[138.8904,-7.9208],[138.8921,-7.9126],[138.8979,-7.9013],[138.9095,-7.8898],[138.9194,-7.8827],[138.9316,-7.8755],[138.954,-7.8699],[138.9778,-7.8626],[138.984,-7.8596],[138.9943,-7.8497],[138.9978,-7.8413],[138.9997,-7.8309],[138.9974,-7.8105],[138.9926,-7.7918],[138.9902,-7.7787],[138.9905,-7.7608],[138.9951,-7.7454],[139.0022,-7.7287],[139.0235,-7.702],[139.0319,-7.69],[139.0333,-7.6863],[139.0339,-7.6742],[139.0328,-7.6572],[139.0363,-7.6404],[139.0412,-7.6282],[139.0482,-7.6166],[139.0532,-7.6103],[139.0665,-7.5977],[139.0788,-7.5897],[139.0832,-7.5848],[139.0876,-7.5739],[139.0815,-7.569],[139.0759,-7.5671],[139.0685,-7.5674],[139.0517,-7.5653],[139.0373,-7.5627],[139.024,-7.5578],[139.0002,-7.5596],[138.9934,-7.559],[138.9748,-7.5553],[138.9644,-7.5526],[138.9556,-7.5516],[138.9347,-7.5435],[138.9288,-7.5382],[138.9257,-7.5379],[138.9238,-7.5322],[138.9133,-7.5238],[138.9043,-7.5129],[138.893,-7.4964],[138.8859,-7.4822],[138.8747,-7.4527],[138.8663,-7.4389],[138.844,-7.4159],[138.823,-7.3997],[138.8111,-7.3921],[138.7961,-7.3848],[138.7789,-7.3777],[138.7727,-7.3778],[138.7638,-7.3742],[138.7451,-7.3706],[138.7305,-7.3717],[138.7239,-7.3698],[138.7106,-7.3691],[138.7037,-7.3709],[138.6963,-7.3687],[138.684,-7.3673],[138.6784,-7.3686],[138.673,-7.3662]],[[138.6673,-7.2142],[138.6748,-7.2236],[138.6904,-7.2327],[138.7023,-7.2366],[138.7113,-7.2382],[138.7262,-7.2448],[138.7312,-7.2494],[138.7449,-7.2557],[138.7535,-7.2575],[138.7715,-7.2629],[138.7929,-7.2817],[138.7991,-7.2902],[138.8187,-7.2998],[138.8272,-7.3026],[138.8324,-7.3026],[138.8407,-7.3068],[138.8553,-7.3105],[138.87,-7.3213],[138.8814,-7.3332],[138.8838,-7.3343],[138.8981,-7.3523],[138.9086,-7.3722],[138.9137,-7.3853],[138.9197,-7.3948],[138.9219,-7.4023],[138.9225,-7.4097],[138.9326,-7.4353],[138.9371,-7.4483],[138.9406,-7.4631],[138.9429,-7.4691],[138.9455,-7.4821],[138.9582,-7.5115],[138.9629,-7.5177],[138.9709,-7.522],[138.9816,-7.5215],[139.0014,-7.5168],[139.0218,-7.5149],[139.0416,-7.5145],[139.0523,-7.5163],[139.0797,-7.5263],[139.0922,-7.533],[139.1,-7.5399],[139.1062,-7.5497],[139.1091,-7.5619],[139.1139,-7.5678],[139.1126,-7.5735],[139.1098,-7.5751],[139.1084,-7.6],[139.0956,-7.6081],[139.0871,-7.6157],[139.0727,-7.6262],[139.0661,-7.6347],[139.0619,-7.6438],[139.0584,-7.6563],[139.0562,-7.6894],[139.0546,-7.6965],[139.0504,-7.7061],[139.0387,-7.7202],[139.0298,-7.7319],[139.0184,-7.7506],[139.0146,-7.7654],[139.0141,-7.7769],[139.0161,-7.7908],[139.0224,-7.8114],[139.0243,-7.8202],[139.0251,-7.834],[139.0239,-7.8403],[139.0184,-7.854],[139.0101,-7.8626],[138.9921,-7.874],[138.9741,-7.8828],[138.9592,-7.891],[138.935,-7.8998],[138.9238,-7.9068],[138.9165,-7.9144],[138.9133,-7.92],[138.909,-7.9317],[138.912,-7.9394],[138.9197,-7.9535],[138.9222,-7.9614],[138.9225,-7.9765],[138.9201,-7.9862],[138.9072,-8.0146],[138.9034,-8.026],[138.9046,-8.0338],[138.9092,-8.0388],[138.9213,-8.0495],[138.9275,-8.0613],[138.9277,-8.0687],[138.9241,-8.0768],[138.9202,-8.0818],[138.908,-8.0876],[138.8836,-8.088],[138.8765,-8.0866],[138.8621,-8.0897],[138.8557,-8.0929],[138.8432,-8.1016],[138.8381,-8.1082],[138.835,-8.1163],[138.8336,-8.1262],[138.8344,-8.1352],[138.837,-8.1429],[138.8428,-8.1512],[138.8488,-8.1624],[138.8555,-8.1847],[138.8594,-8.1905],[138.8726,-8.2055],[138.8794,-8.2162],[138.884,-8.2215],[138.8901,-8.2259],[138.9,-8.2364],[138.9043,-8.2457],[138.9073,-8.2611],[138.9148,-8.2717],[138.9217,-8.2768],[138.932,-8.2769],[138.9357,-8.2757],[138.9386,-8.2698],[138.9448,-8.2637],[138.9603,-8.2587]],[[138.9603,-8.2587],[138.9612,-8.2584],[138.9623,-8.2564]],[[138.9623,-8.2564],[138.9634,-8.2545],[138.9664,-8.244],[138.9704,-8.239],[138.9774,-8.2358],[138.9879,-8.2332],[138.9931,-8.2284],[138.9887,-8.2233],[138.9809,-8.221],[138.9775,-8.2156],[138.9698,-8.2065],[138.9719,-8.2031],[138.9765,-8.202],[138.9886,-8.2023],[138.9912,-8.1975],[138.9995,-8.1915],[139.0076,-8.1892],[139.0238,-8.1774],[139.0273,-8.1729],[139.0303,-8.1731],[139.0466,-8.165],[139.0681,-8.153],[139.0707,-8.1466],[139.0655,-8.1415],[139.0671,-8.1361],[139.0836,-8.1372],[139.0966,-8.1337],[139.1149,-8.1265],[139.133,-8.1202],[139.1708,-8.1098],[139.1892,-8.1027],[139.1942,-8.1021],[139.2052,-8.0979],[139.2238,-8.0949],[139.2278,-8.0983],[139.2303,-8.1113],[139.2328,-8.1153],[139.2327,-8.1198],[139.2397,-8.1272],[139.2423,-8.1348],[139.2493,-8.1406],[139.2514,-8.1448],[139.2509,-8.1499],[139.2564,-8.1561],[139.271,-8.1669],[139.2782,-8.1768],[139.2817,-8.1782],[139.3013,-8.1796],[139.3074,-8.184],[139.3091,-8.1896],[139.3182,-8.1981],[139.3287,-8.2008],[139.3398,-8.2059],[139.3596,-8.2037],[139.3768,-8.2036],[139.4037,-8.2002],[139.4184,-8.1991],[139.4238,-8.198],[139.449,-8.1949],[139.4566,-8.1935],[139.4891,-8.1765],[139.496,-8.1743],[139.5013,-8.1746],[139.5084,-8.1785],[139.5214,-8.1711],[139.5343,-8.1647],[139.5802,-8.1442],[139.5858,-8.14],[139.5808,-8.1371],[139.5844,-8.1299],[139.5974,-8.1289],[139.6104,-8.1256],[139.6263,-8.1205],[139.6448,-8.1153],[139.6673,-8.1105],[139.7061,-8.1044],[139.7116,-8.0988],[139.7187,-8.0998],[139.7398,-8.0988],[139.779,-8.0993],[139.8185,-8.1022],[139.8362,-8.1008],[139.8527,-8.1019],[139.8546,-8.1051],[139.8594,-8.1061],[139.8827,-8.1088],[139.89,-8.108],[139.9118,-8.1074],[139.9223,-8.106],[139.9268,-8.1072],[139.9377,-8.1042],[139.9416,-8.1021],[139.9552,-8.1133],[139.9571,-8.1244],[139.9566,-8.135],[139.9597,-8.1475],[139.9637,-8.1565],[139.9753,-8.1763],[139.9938,-8.2001],[140.0167,-8.2213],[140.0448,-8.2457],[140.0504,-8.2513],[140.0603,-8.259],[140.0971,-8.2845],[140.1123,-8.2947],[140.1271,-8.3032],[140.1459,-8.3174],[140.1565,-8.3274],[140.1699,-8.3371],[140.1799,-8.3427],[140.1949,-8.3485],[140.2286,-8.3575],[140.2271,-8.3692],[140.232,-8.3782],[140.2429,-8.3913],[140.2608,-8.4097],[140.2886,-8.4344],[140.3133,-8.4547],[140.3313,-8.4675],[140.3374,-8.4709],[140.3461,-8.4701],[140.3555,-8.4748],[140.3613,-8.4832],[140.3649,-8.4938],[140.3749,-8.508],[140.3845,-8.5181],[140.4054,-8.5369],[140.4274,-8.5546],[140.4359,-8.5657],[140.4612,-8.588],[140.4774,-8.5988],[140.4919,-8.6079],[140.4984,-8.6105],[140.5029,-8.6163],[140.5088,-8.627],[140.5106,-8.6361],[140.5144,-8.647],[140.5181,-8.6534],[140.518,-8.6586],[140.5243,-8.6734],[140.5293,-8.6876],[140.5403,-8.7034],[140.5453,-8.7089],[140.5608,-8.729],[140.5661,-8.7371],[140.5785,-8.7528],[140.5868,-8.7653],[140.6,-8.7941],[140.6159,-8.8133],[140.651,-8.8473],[140.6613,-8.8559],[140.6662,-8.8613],[140.6794,-8.8738],[140.6871,-8.8797],[140.7048,-8.8902],[140.7104,-8.8947],[140.7221,-8.9084],[140.7265,-8.9092],[140.7314,-8.9165],[140.7389,-8.9236],[140.7476,-8.93],[140.7608,-8.9437],[140.7707,-8.9531],[140.7896,-8.9736],[140.7909,-8.9766],[140.8044,-8.9939],[140.8083,-9.0002],[140.8128,-9.0045],[140.8197,-9.0158],[140.8357,-9.0322],[140.8434,-9.0389],[140.8483,-9.0412],[140.8606,-9.0504],[140.8723,-9.0606],[140.8765,-9.0658],[140.8863,-9.0747],[140.8928,-9.082],[140.8931,-9.0851],[140.8998,-9.0897],[140.9131,-9.0919],[140.9222,-9.0917],[140.9358,-9.0939],[140.9394,-9.0967],[140.9624,-9.1029],[140.9669,-9.1061],[140.9775,-9.1076],[140.9905,-9.1131],[141,-9.1182],[141.019,-9.1204],[141.0191,-8.8004],[141.0191,-8.6551],[141.0191,-8.5276],[141.0191,-8.2988],[141.0192,-8.0928],[141.0192,-8.0161],[141.0192,-7.7654],[141.0193,-7.5723],[141.0193,-7.3692],[141.0193,-7.329],[141.0194,-6.8899],[141,-6.8899],[140.9988,-6.9003],[140.9943,-6.9043],[140.9889,-6.9048],[140.9801,-6.9019],[140.9754,-6.8962],[140.9724,-6.8903],[140.9664,-6.8917],[140.9599,-6.8967],[140.9592,-6.9062],[140.9562,-6.912],[140.9526,-6.9104],[140.951,-6.9031],[140.943,-6.8973],[140.9384,-6.891],[140.9399,-6.8868],[140.9479,-6.8776],[140.9519,-6.8714],[140.9542,-6.8645],[140.953,-6.8576],[140.9488,-6.8586],[140.9477,-6.8648],[140.9433,-6.8726],[140.9384,-6.8744],[140.9224,-6.8708],[140.9145,-6.8731],[140.9122,-6.864],[140.9079,-6.8583],[140.9004,-6.8512],[140.8958,-6.8441],[140.8963,-6.8401],[140.904,-6.8409],[140.9081,-6.8373],[140.9127,-6.8294],[140.9176,-6.8263],[140.9179,-6.8203],[140.9156,-6.8147],[140.911,-6.8085],[140.9072,-6.8064],[140.9003,-6.8079],[140.8899,-6.8136],[140.8858,-6.8119],[140.8851,-6.8027],[140.8816,-6.8002],[140.8723,-6.7973],[140.8695,-6.7929],[140.8759,-6.7873],[140.8782,-6.7831],[140.8772,-6.7702],[140.8817,-6.7673],[140.8886,-6.7672],[140.8933,-6.7649],[140.8998,-6.7551],[140.8994,-6.7526],[140.893,-6.7526],[140.8895,-6.7496],[140.8868,-6.7396],[140.8753,-6.7329],[140.863,-6.7305],[140.8521,-6.726],[140.8465,-6.7223],[140.8452,-6.7188],[140.8522,-6.71],[140.8517,-6.6961],[140.8449,-6.6836],[140.8484,-6.68],[140.8623,-6.6827],[140.8667,-6.6808],[140.8698,-6.6747],[140.8606,-6.6665],[140.861,-6.659],[140.8701,-6.6553],[140.8727,-6.652],[140.8614,-6.6502],[140.8557,-6.6467],[140.8557,-6.6403],[140.8666,-6.6347],[140.8734,-6.6299],[140.876,-6.6221],[140.8701,-6.6184],[140.8528,-6.6194],[140.8483,-6.6182]]]}},{"type":"Feature","properties":{"mhid":"1332:494","alt_name":"KABUPATEN JAYAPURA","latitude":-3,"longitude":139.95,"sample_value":699},"geometry":{"type":"MultiLineString","coordinates":[[[140.6528,-2.4762],[140.6486,-2.4712],[140.6499,-2.4669],[140.6438,-2.4638],[140.6412,-2.4668],[140.6347,-2.4685],[140.631,-2.4647],[140.633,-2.4549],[140.6298,-2.4528],[140.6266,-2.4557],[140.6227,-2.4517],[140.617,-2.4491],[140.6155,-2.4448],[140.609,-2.4403],[140.6009,-2.4492],[140.5983,-2.4549],[140.5835,-2.4526],[140.579,-2.4461],[140.5703,-2.451],[140.5599,-2.4501],[140.5592,-2.4398],[140.5554,-2.4395],[140.5515,-2.4454],[140.5469,-2.4446],[140.5447,-2.4486],[140.5377,-2.4449],[140.5383,-2.4387],[140.5298,-2.4381],[140.5299,-2.4342],[140.5271,-2.4282],[140.5223,-2.4283],[140.5188,-2.4315],[140.5131,-2.4297],[140.5079,-2.4331],[140.5021,-2.4402],[140.5008,-2.4439],[140.496,-2.4433],[140.4913,-2.4395],[140.4877,-2.4396],[140.4855,-2.4332],[140.4793,-2.4288],[140.4674,-2.4297],[140.466,-2.4322],[140.4562,-2.4297],[140.4449,-2.4206],[140.436,-2.4179],[140.4341,-2.4134],[140.4278,-2.4162],[140.423,-2.4144],[140.4128,-2.4138],[140.4123,-2.4111],[140.4037,-2.4075],[140.3946,-2.4069],[140.3922,-2.403],[140.386,-2.3997],[140.3728,-2.399],[140.3663,-2.4027],[140.3553,-2.4013],[140.3483,-2.3953],[140.344,-2.3974],[140.3432,-2.4032],[140.3489,-2.4105],[140.3533,-2.403],[140.3564,-2.403],[140.36,-2.4086],[140.3602,-2.4145],[140.3758,-2.4301],[140.3684,-2.4458],[140.3732,-2.4497],[140.3695,-2.4603],[140.3648,-2.457],[140.3597,-2.4562],[140.359,-2.4496],[140.3528,-2.4491],[140.3531,-2.455],[140.3472,-2.4624],[140.3398,-2.4625],[140.3356,-2.4649],[140.3342,-2.4586],[140.3393,-2.4556],[140.3389,-2.4514],[140.3352,-2.4483],[140.3278,-2.4509],[140.3194,-2.4483],[140.3147,-2.4451],[140.3125,-2.4402],[140.3006,-2.4437],[140.2943,-2.4397],[140.2961,-2.4324],[140.2897,-2.4256],[140.2802,-2.4262],[140.2755,-2.422],[140.272,-2.4234],[140.2693,-2.42],[140.2661,-2.4236],[140.2614,-2.4196],[140.2579,-2.4108],[140.2532,-2.4046],[140.253,-2.4014],[140.2451,-2.4],[140.2444,-2.4045],[140.2334,-2.4033],[140.229,-2.4052],[140.224,-2.4132],[140.21,-2.4089],[140.2029,-2.4019],[140.1992,-2.3939],[140.191,-2.3869],[140.1893,-2.3803],[140.183,-2.3783],[140.1786,-2.3749],[140.1671,-2.3753],[140.1618,-2.3712],[140.1564,-2.3719],[140.1525,-2.37],[140.152,-2.3656],[140.1554,-2.3641],[140.1575,-2.3578],[140.155,-2.355],[140.1478,-2.358],[140.1461,-2.3545],[140.1497,-2.3517],[140.1508,-2.3454],[140.1552,-2.339],[140.1545,-2.3266],[140.1514,-2.3234],[140.1393,-2.3268],[140.1472,-2.3348],[140.1468,-2.3406],[140.1404,-2.3471],[140.1328,-2.3464],[140.1165,-2.3355],[140.111,-2.3286],[140.1141,-2.325],[140.1151,-2.3202],[140.1112,-2.3192],[140.0994,-2.3238],[140.0882,-2.3271],[140.0823,-2.3309],[140.0797,-2.3385],[140.08,-2.3491],[140.0698,-2.3563],[140.0583,-2.3597],[140.0369,-2.3597],[140.0247,-2.359],[140.0138,-2.3604],[140.001,-2.3605],[139.9998,-2.3622]]]}},{"type":"Feature","properties":{"mhid":"1332:495","alt_name":"KABUPATEN NABIRE","latitude":-3.54016,"longitude":135.55511,"sample_value":286},"geometry":{"type":"MultiLineString","coordinates":[[[135.5891,-3.0964],[135.5876,-3.0946],[135.5811,-3.1003],[135.5835,-3.1049],[135.589,-3.1032],[135.5891,-3.0964]],[[135.5912,-3.0799],[135.5934,-3.0787],[135.5906,-3.0719],[135.5852,-3.0779],[135.576,-3.0831],[135.5722,-3.0888],[135.5772,-3.0923],[135.5835,-3.0909],[135.5833,-3.0866],[135.59,-3.0824],[135.5912,-3.0799]],[[135.613,-3.0701],[135.6172,-3.08],[135.6132,-3.0963],[135.6196,-3.0973],[135.6213,-3.0921],[135.6249,-3.0882],[135.6252,-3.0768],[135.6202,-3.0755],[135.613,-3.0701]],[[135.7988,-3.0328],[135.792,-3.0339],[135.7853,-3.0366],[135.781,-3.0403],[135.7699,-3.0455],[135.7704,-3.052],[135.7731,-3.0577],[135.7794,-3.0576],[135.7919,-3.0475],[135.7892,-3.0453],[135.7944,-3.0366],[135.7988,-3.0328]],[[134.8347,-3.0211],[134.8292,-3.0268],[134.837,-3.0318],[134.8313,-3.0412],[134.8398,-3.0484],[134.8445,-3.0445],[134.8439,-3.0403],[134.8407,-3.037],[134.8407,-3.0333],[134.8357,-3.0274],[134.8347,-3.0211]],[[135.7719,-2.9359],[135.7633,-2.9385],[135.7554,-2.9363],[135.753,-2.9396],[135.7468,-2.9418],[135.7381,-2.9379],[135.7301,-2.943],[135.7252,-2.9476],[135.7236,-2.9549],[135.7141,-2.9553],[135.7078,-2.9631],[135.7102,-2.9732],[135.718,-2.9752],[135.7217,-2.9813],[135.7315,-2.9827],[135.7368,-2.9795],[135.7414,-2.973],[135.7429,-2.9684],[135.7497,-2.9684],[135.7568,-2.9648],[135.7569,-2.9597],[135.7661,-2.9561],[135.7699,-2.9594],[135.7742,-2.9585],[135.7799,-2.9534],[135.7789,-2.9508],[135.7823,-2.9458],[135.7929,-2.9439],[135.7995,-2.9459],[135.8068,-2.9424],[135.8004,-2.9378],[135.793,-2.9413],[135.7868,-2.94],[135.7826,-2.9373],[135.7751,-2.9374],[135.7719,-2.9359]],[[135.7297,-2.9116],[135.7247,-2.912],[135.7007,-2.9215],[135.6851,-2.9283],[135.6744,-2.9384],[135.6727,-2.9428],[135.6778,-2.9444],[135.6877,-2.9421],[135.7021,-2.9353],[135.7176,-2.9297],[135.7265,-2.9236],[135.7331,-2.9209],[135.7357,-2.9154],[135.7297,-2.9116]],[[135.909,-2.8807],[135.9062,-2.8766],[135.9013,-2.8781],[135.9035,-2.885],[135.9082,-2.8877],[135.909,-2.8807]],[[134.8222,-2.6835],[134.8183,-2.6821],[134.8082,-2.685],[134.8067,-2.6902],[134.8074,-2.6974],[134.8021,-2.708],[134.8028,-2.7102],[134.8148,-2.7176],[134.8266,-2.7221],[134.8373,-2.7248],[134.8427,-2.7232],[134.8629,-2.7087],[134.8638,-2.7043],[134.8515,-2.694],[134.8509,-2.6905],[134.8439,-2.6879],[134.8374,-2.6882],[134.8343,-2.6858],[134.8222,-2.6835]],[[136.0128,-2.7178],[135.9939,-2.7405],[135.9918,-2.7457],[135.9859,-2.748],[135.9763,-2.7591],[135.9749,-2.7649],[135.967,-2.7642],[135.954,-2.7779],[135.9485,-2.7789],[135.9461,-2.7858],[135.95,-2.7868],[135.9603,-2.7949],[135.9555,-2.7982],[135.9536,-2.8045],[135.9544,-2.8079],[135.9507,-2.8188],[135.9463,-2.8254],[135.9456,-2.8311],[135.9358,-2.849],[135.9322,-2.8543],[135.9221,-2.8637],[135.9177,-2.866],[135.9127,-2.866],[135.9058,-2.8682],[135.9052,-2.8703],[135.9102,-2.8785],[135.9098,-2.8933],[135.9131,-2.8971],[135.9166,-2.8963],[135.9195,-2.8898],[135.9253,-2.8839],[135.9315,-2.8892],[135.9328,-2.9026],[135.9349,-2.9047],[135.9328,-2.9096],[135.9353,-2.9219],[135.9313,-2.9245],[135.932,-2.9359],[135.9248,-2.9509],[135.9248,-2.9576],[135.9122,-2.971],[135.9109,-2.9751],[135.9052,-2.978],[135.8929,-2.9745],[135.8921,-2.9803],[135.8936,-2.9833],[135.8925,-2.9898],[135.8853,-2.9857],[135.8812,-2.985],[135.8795,-2.9917],[135.8749,-2.9921],[135.8692,-2.9898],[135.8631,-2.9928],[135.8658,-2.998],[135.8563,-3.0039],[135.8505,-3.0042],[135.838,-3.0087],[135.8376,-3.0112],[135.8257,-3.0151],[135.823,-3.023],[135.8228,-3.0279],[135.8188,-3.0309],[135.8174,-3.0389],[135.8055,-3.0457],[135.7935,-3.0535],[135.782,-3.0571],[135.7773,-3.061],[135.7739,-3.0612],[135.7643,-3.0509],[135.7575,-3.05],[135.7525,-3.0517],[135.7442,-3.0584],[135.7335,-3.0647],[135.7282,-3.0713],[135.7297,-3.0749],[135.7395,-3.0764],[135.742,-3.0794],[135.7598,-3.0835],[135.767,-3.087],[135.7644,-3.0903],[135.7654,-3.097],[135.7596,-3.1004],[135.7584,-3.1074],[135.7522,-3.1151],[135.7418,-3.1216],[135.7184,-3.1274],[135.7,-3.1502],[135.6932,-3.1537],[135.6897,-3.1533],[135.684,-3.1573],[135.6716,-3.1585],[135.6682,-3.1607],[135.6592,-3.1625],[135.656,-3.1656],[135.6485,-3.1686],[135.6441,-3.1632],[135.6395,-3.1637],[135.6362,-3.1681],[135.6311,-3.1689],[135.6221,-3.175],[135.6194,-3.1789],[135.6117,-3.1802],[135.6014,-3.1933],[135.5958,-3.1951],[135.5906,-3.202],[135.5864,-3.213],[135.5809,-3.2241],[135.5805,-3.2276],[135.584,-3.2337],[135.582,-3.2372],[135.5753,-3.2384],[135.5727,-3.2342],[135.5678,-3.2427],[135.5611,-3.2499],[135.5542,-3.2626],[135.5623,-3.2657],[135.5661,-3.2695],[135.5623,-3.2766],[135.5604,-3.2849],[135.5615,-3.2877],[135.5593,-3.298],[135.5562,-3.3025],[135.5504,-3.3071],[135.5399,-3.3127],[135.5387,-3.3186],[135.5352,-3.3239],[135.5226,-3.3358],[135.5104,-3.3453],[135.5053,-3.355],[135.5002,-3.3588],[135.4883,-3.3631],[135.4798,-3.369],[135.4721,-3.3726],[135.4565,-3.3767],[135.4442,-3.3746],[135.4204,-3.3659],[135.4128,-3.3675],[135.3976,-3.3755],[135.386,-3.3802],[135.3594,-3.3857],[135.3482,-3.3893],[135.3436,-3.3948],[135.3358,-3.3961],[135.3287,-3.3954],[135.3241,-3.3897],[135.3115,-3.3866],[135.299,-3.3862],[135.272,-3.3826],[135.2576,-3.3799],[135.2396,-3.3758],[135.2317,-3.3754],[135.2176,-3.3771],[135.2085,-3.381],[135.1977,-3.3806],[135.1851,-3.3783],[135.1721,-3.3747],[135.1674,-3.3709],[135.1597,-3.3716],[135.1511,-3.3708],[135.1317,-3.3806],[135.1248,-3.3792],[135.1164,-3.382],[135.1119,-3.3815],[135.1067,-3.376],[135.1035,-3.3766],[135.0971,-3.3693],[135.0983,-3.3649],[135.09,-3.348],[135.0874,-3.3451],[135.0698,-3.3346],[135.059,-3.3354],[135.0528,-3.3301],[135.0484,-3.3294],[135.045,-3.3331],[135.042,-3.3321],[135.0341,-3.3363],[135.0224,-3.3402],[135.0105,-3.3391],[135.001,-3.3364],[134.9951,-3.3326],[134.9845,-3.3278],[134.9805,-3.3216],[134.9723,-3.3159],[134.9679,-3.3096],[134.9615,-3.3031],[134.9595,-3.2966],[134.9554,-3.2952],[134.9452,-3.2843],[134.9453,-3.277],[134.9496,-3.2715],[134.9531,-3.2705],[134.9496,-3.2624],[134.9549,-3.2526],[134.9524,-3.248],[134.9569,-3.246],[134.9634,-3.2476],[134.9629,-3.2431],[134.9649,-3.2325],[134.9603,-3.2252],[134.9515,-3.2214],[134.9568,-3.2352],[134.958,-3.242],[134.9556,-3.2449],[134.9471,-3.2474],[134.9399,-3.2458],[134.9342,-3.241],[134.9256,-3.2375],[134.9235,-3.2423],[134.917,-3.2475],[134.9274,-3.2557],[134.9303,-3.2611],[134.9386,-3.2698],[134.934,-3.2717],[134.929,-3.2699],[134.9247,-3.2637],[134.902,-3.2584],[134.8871,-3.258],[134.8785,-3.2503],[134.8775,-3.2466],[134.8709,-3.2516],[134.8638,-3.252],[134.8608,-3.2499],[134.8623,-3.2449],[134.8601,-3.2422],[134.8631,-3.2321],[134.8689,-3.2321],[134.8733,-3.2255],[134.8696,-3.2232],[134.8703,-3.2165],[134.8736,-3.2133],[134.873,-3.2071],[134.8679,-3.2033],[134.8653,-3.2075],[134.867,-3.2137],[134.8613,-3.2231],[134.8554,-3.218],[134.8553,-3.2079],[134.8511,-3.2065],[134.8508,-3.1911],[134.8633,-3.1857],[134.8629,-3.1745],[134.8657,-3.1679],[134.8622,-3.1588],[134.8523,-3.149],[134.8427,-3.1437],[134.8328,-3.1285],[134.8295,-3.1254],[134.8238,-3.1347],[134.8171,-3.1342],[134.8128,-3.136],[134.8108,-3.1329],[134.8037,-3.1361],[134.8,-3.1314],[134.8027,-3.1246],[134.8079,-3.1243],[134.8092,-3.1124],[134.8138,-3.103],[134.8111,-3.091],[134.8125,-3.0828],[134.8208,-3.0789],[134.8181,-3.0703],[134.8154,-3.069],[134.8103,-3.0623],[134.8141,-3.0608],[134.8111,-3.056],[134.8174,-3.0524],[134.8143,-3.0465],[134.8148,-3.0435],[134.811,-3.0378],[134.8139,-3.0207],[134.8177,-3.0177],[134.8189,-3.0121],[134.8271,-3.0142],[134.8339,-3.0063],[134.8447,-3.0039],[134.8472,-3.0012],[134.8529,-2.9999],[134.8501,-2.9948],[134.8488,-2.9877],[134.8448,-2.9871],[134.8406,-2.9817],[134.841,-2.9785],[134.8316,-2.9677],[134.8332,-2.9597],[134.8497,-2.9539],[134.8463,-2.9458],[134.8427,-2.944],[134.8422,-2.9376],[134.8458,-2.9346],[134.848,-2.9267],[134.845,-2.9227],[134.8491,-2.9146],[134.8467,-2.9062],[134.8462,-2.8988],[134.843,-2.8939],[134.8391,-2.8927],[134.8307,-2.88],[134.8263,-2.8822],[134.8269,-2.8881],[134.8248,-2.8921],[134.8259,-2.9055],[134.8304,-2.9053],[134.8331,-2.9104],[134.8317,-2.9131],[134.8239,-2.9179],[134.8181,-2.9142],[134.8085,-2.9113],[134.8058,-2.9206],[134.8059,-2.9314],[134.8093,-2.9333],[134.8208,-2.9361],[134.8186,-2.9398],[134.8106,-2.9427],[134.8065,-2.9419],[134.8049,-2.9466],[134.7977,-2.9509],[134.7864,-2.9428],[134.7815,-2.9441],[134.778,-2.9425],[134.7754,-2.9508],[134.777,-2.9623],[134.7787,-2.9662],[134.777,-2.9767],[134.7771,-2.9855],[134.7691,-2.9907],[134.7582,-2.9929],[134.7511,-2.9928],[134.7471,-2.9896],[134.7397,-2.9904],[134.7347,-2.9834],[134.7297,-2.9804],[134.7123,-2.9761],[134.7006,-2.9744],[134.6912,-2.9695],[134.6885,-2.9648],[134.691,-2.9595],[134.6949,-2.9469],[134.69,-2.9324],[134.6807,-2.9264],[134.677,-2.9214],[134.681,-2.9107],[134.691,-2.9076],[134.6912,-2.8962],[134.6867,-2.893],[134.6822,-2.8874],[134.6787,-2.8798],[134.6685,-2.8659],[134.6658,-2.8583],[134.6665,-2.8556],[134.6614,-2.8248],[134.6622,-2.8155],[134.667,-2.8131],[134.6698,-2.8085],[134.6692,-2.8027],[134.6653,-2.7913],[134.6652,-2.7847],[134.6579,-2.775],[134.6576,-2.768],[134.6618,-2.757],[134.6586,-2.7427],[134.6601,-2.7327],[134.6589,-2.728],[134.6601,-2.7204],[134.6569,-2.7004],[134.6601,-2.6945],[134.6557,-2.6802],[134.6563,-2.6722],[134.6581,-2.6681],[134.6581,-2.6537],[134.6607,-2.6514],[134.6589,-2.6329],[134.6628,-2.6244],[134.661,-2.6206],[134.6628,-2.6132],[134.6584,-2.603],[134.6604,-2.5956],[134.6569,-2.5871],[134.6572,-2.5777],[134.6539,-2.5742],[134.6542,-2.5636],[134.6525,-2.5516],[134.6531,-2.5484],[134.6516,-2.531],[134.6478,-2.5272],[134.6478,-2.5222],[134.6428,-2.5164],[134.6425,-2.5049],[134.632,-2.4974],[134.6301,-2.4937],[134.6301,-2.4864],[134.6352,-2.4846],[134.6338,-2.48],[134.6297,-2.4777],[134.6223,-2.4795],[134.6209,-2.4878],[134.6145,-2.4891],[134.5988,-2.4893]]]}},{"type":"Feature","properties":{"mhid":"1332:496","alt_name":"KABUPATEN KEPULAUAN YAPEN","latitude":-1.78773,"longitude":136.27716,"sample_value":306},"geometry":{"type":"MultiLineString","coordinates":[[[136.3974,-1.9038],[136.3896,-1.907],[136.3847,-1.9131],[136.3861,-1.9186],[136.3914,-1.9199],[136.4032,-1.9173],[136.4084,-1.9101],[136.405,-1.9067],[136.3974,-1.9038]],[[136.3316,-1.9064],[136.3271,-1.9053],[136.3253,-1.9095],[136.3288,-1.9152],[136.3288,-1.9197],[136.3347,-1.9241],[136.3421,-1.9314],[136.3374,-1.9325],[136.3327,-1.9286],[136.3295,-1.9326],[136.3388,-1.9417],[136.3441,-1.9525],[136.3491,-1.9537],[136.356,-1.9612],[136.3595,-1.9586],[136.3565,-1.9495],[136.3598,-1.9476],[136.3633,-1.9506],[136.3671,-1.9423],[136.364,-1.9328],[136.3596,-1.9345],[136.3598,-1.9247],[136.3553,-1.9132],[136.3579,-1.9074],[136.3522,-1.905],[136.3479,-1.9101],[136.3479,-1.9131],[136.3428,-1.9173],[136.3374,-1.9148],[136.3356,-1.9062],[136.3316,-1.9064]],[[136.3301,-1.8922],[136.325,-1.8925],[136.3236,-1.8961],[136.325,-1.9019],[136.3342,-1.9019],[136.3311,-1.8972],[136.3301,-1.8922]],[[135.813,-1.897],[135.8161,-1.8946],[135.8103,-1.8912],[135.8089,-1.8964],[135.813,-1.897]],[[136.2828,-1.8891],[136.2791,-1.8966],[136.2846,-1.8995],[136.283,-1.9058],[136.2874,-1.9205],[136.2891,-1.9324],[136.2923,-1.9386],[136.2954,-1.9384],[136.3002,-1.9318],[136.3008,-1.9237],[136.2954,-1.9165],[136.2915,-1.9149],[136.2955,-1.9046],[136.2943,-1.8979],[136.2848,-1.8952],[136.2891,-1.8893],[136.2828,-1.8891]],[[136.3641,-1.8871],[136.3604,-1.8876],[136.3624,-1.8956],[136.3584,-1.8993],[136.3666,-1.9019],[136.371,-1.8992],[136.3658,-1.8873],[136.3641,-1.8871]],[[136.3502,-1.8729],[136.3437,-1.8756],[136.3494,-1.879],[136.3551,-1.8767],[136.3502,-1.8729]],[[137.0235,-1.8307],[137.0165,-1.831],[137.0055,-1.8332],[136.9985,-1.8358],[136.9904,-1.8371],[136.9826,-1.837],[136.9737,-1.8347],[136.9688,-1.8363],[136.9652,-1.8346],[136.956,-1.8333],[136.9504,-1.8365],[136.9545,-1.8423],[136.968,-1.8449],[136.9737,-1.8474],[136.988,-1.8504],[136.9899,-1.846],[137.0036,-1.8536],[137.0073,-1.8535],[137.0132,-1.8576],[137.0167,-1.8554],[137.023,-1.8592],[137.0354,-1.8627],[137.0394,-1.8626],[137.0466,-1.8697],[137.055,-1.8687],[137.057,-1.8639],[137.0536,-1.8566],[137.045,-1.8455],[137.0363,-1.8398],[137.0334,-1.8345],[137.0235,-1.8307]],[[135.9373,-1.7961],[135.9324,-1.7961],[135.9303,-1.7994],[135.9347,-1.8043],[135.9376,-1.7996],[135.9373,-1.7961]],[[135.8129,-1.785],[135.8023,-1.7855],[135.799,-1.7889],[135.7981,-1.7942],[135.7952,-1.7989],[135.7962,-1.8124],[135.8011,-1.812],[135.8023,-1.8159],[135.8073,-1.8168],[135.8122,-1.8123],[135.8168,-1.8101],[135.8253,-1.8003],[135.8221,-1.7946],[135.8178,-1.7943],[135.8179,-1.7895],[135.8129,-1.785]],[[135.788,-1.7608],[135.7823,-1.7616],[135.7705,-1.7601],[135.7716,-1.7655],[135.7658,-1.7714],[135.7686,-1.775],[135.7793,-1.7703],[135.7891,-1.7688],[135.7866,-1.7642],[135.788,-1.7608]],[[135.8088,-1.7403],[135.801,-1.7473],[135.8009,-1.7514],[135.8075,-1.7505],[135.8088,-1.7403]],[[135.4754,-1.5991],[135.4593,-1.6015],[135.4543,-1.5994],[135.4456,-1.6023],[135.4335,-1.6031],[135.4216,-1.6014],[135.4104,-1.6018],[135.4154,-1.6077],[135.4301,-1.6101],[135.4325,-1.6118],[135.4437,-1.6128],[135.4441,-1.6225],[135.4423,-1.6248],[135.4443,-1.6368],[135.4489,-1.6429],[135.4596,-1.6331],[135.4647,-1.6358],[135.4695,-1.6425],[135.4698,-1.6473],[135.4666,-1.6516],[135.4702,-1.6573],[135.4763,-1.6593],[135.4703,-1.6662],[135.4745,-1.6727],[135.4746,-1.6804],[135.4815,-1.6806],[135.4938,-1.6761],[135.4946,-1.6796],[135.5004,-1.6796],[135.5108,-1.6866],[135.5126,-1.6819],[135.5075,-1.679],[135.5081,-1.6742],[135.5133,-1.674],[135.5129,-1.6698],[135.5194,-1.6622],[135.526,-1.6647],[135.5284,-1.6676],[135.52,-1.6774],[135.5199,-1.6838],[135.5241,-1.6852],[135.5277,-1.6801],[135.5356,-1.6778],[135.5449,-1.6767],[135.5444,-1.6708],[135.5493,-1.6651],[135.5617,-1.6679],[135.5627,-1.6722],[135.5667,-1.6721],[135.5701,-1.6766],[135.5755,-1.6742],[135.5768,-1.6845],[135.5798,-1.6868],[135.5816,-1.6799],[135.5934,-1.6839],[135.5969,-1.6807],[135.6037,-1.6825],[135.6077,-1.6811],[135.6102,-1.6845],[135.6197,-1.6842],[135.6198,-1.6884],[135.6136,-1.6913],[135.6172,-1.6963],[135.6285,-1.6967],[135.6356,-1.6877],[135.6408,-1.6841],[135.6444,-1.6854],[135.6513,-1.684],[135.6561,-1.6864],[135.6497,-1.6903],[135.6512,-1.6962],[135.6642,-1.6956],[135.6686,-1.6976],[135.6682,-1.7021],[135.673,-1.7066],[135.6794,-1.7019],[135.6896,-1.7019],[135.6954,-1.7062],[135.6978,-1.7035],[135.6951,-1.6989],[135.6978,-1.6955],[135.702,-1.6959],[135.7098,-1.6902],[135.7128,-1.6902],[135.7159,-1.6947],[135.7221,-1.6961],[135.7247,-1.6919],[135.7323,-1.688],[135.7351,-1.7007],[135.7348,-1.7072],[135.7514,-1.721],[135.7574,-1.7232],[135.758,-1.7185],[135.7615,-1.7147],[135.7614,-1.7067],[135.7667,-1.7117],[135.7759,-1.7173],[135.7853,-1.7158],[135.7886,-1.7207],[135.7852,-1.7278],[135.7768,-1.7269],[135.7787,-1.7328],[135.7766,-1.736],[135.7716,-1.7319],[135.7619,-1.7455],[135.7673,-1.745],[135.7763,-1.7419],[135.7836,-1.7432],[135.7857,-1.7391],[135.7925,-1.7371],[135.7998,-1.7402],[135.8011,-1.7365],[135.8071,-1.733],[135.8109,-1.735],[135.8213,-1.7349],[135.8232,-1.739],[135.8203,-1.7471],[135.8264,-1.748],[135.8269,-1.7525],[135.8357,-1.7576],[135.8407,-1.7486],[135.8459,-1.7463],[135.8499,-1.7524],[135.853,-1.7533],[135.8536,-1.758],[135.8577,-1.7597],[135.8581,-1.7674],[135.8638,-1.7655],[135.8694,-1.7606],[135.8693,-1.756],[135.8652,-1.7523],[135.8615,-1.7539],[135.8525,-1.7457],[135.8552,-1.7395],[135.8692,-1.7404],[135.8705,-1.7437],[135.8832,-1.7503],[135.8848,-1.753],[135.8856,-1.7612],[135.8922,-1.763],[135.8908,-1.7679],[135.8952,-1.7718],[135.8974,-1.777],[135.8994,-1.7881],[135.9054,-1.7863],[135.9081,-1.7813],[135.913,-1.7782],[135.9118,-1.7739],[135.9062,-1.7703],[135.9041,-1.7649],[135.9,-1.7608],[135.9041,-1.757],[135.9124,-1.7552],[135.9172,-1.7658],[135.9196,-1.7686],[135.9239,-1.7655],[135.9388,-1.7854],[135.9394,-1.7918],[135.9452,-1.7867],[135.9581,-1.7961],[135.9659,-1.7978],[135.9714,-1.8027],[135.978,-1.8167],[135.9933,-1.8207],[136.0097,-1.8206],[136.0171,-1.8237],[136.0252,-1.8192],[136.0347,-1.8239],[136.0383,-1.8299],[136.0486,-1.8312],[136.0546,-1.8378],[136.0604,-1.8398],[136.0659,-1.8467],[136.0716,-1.8498],[136.0751,-1.8498],[136.0905,-1.8444],[136.1032,-1.8442],[136.1103,-1.8472],[136.1175,-1.8531],[136.1439,-1.8529],[136.1546,-1.8577],[136.1584,-1.8618],[136.1682,-1.8674],[136.1745,-1.8737],[136.1793,-1.8688],[136.1901,-1.8744],[136.1985,-1.8651],[136.1991,-1.8702],[136.2027,-1.8698],[136.2043,-1.8753],[136.2094,-1.8798],[136.2135,-1.8749],[136.2176,-1.8747],[136.2249,-1.8816],[136.2268,-1.8869],[136.2244,-1.8946],[136.2222,-1.897],[136.2236,-1.9057],[136.2274,-1.9051],[136.2302,-1.8991],[136.2352,-1.8933],[136.241,-1.8902],[136.2429,-1.8868],[136.2495,-1.8859],[136.2543,-1.891],[136.2523,-1.8962],[136.2595,-1.9107],[136.2618,-1.9096],[136.2626,-1.9028],[136.2659,-1.9028],[136.2648,-1.8931],[136.2715,-1.8901],[136.2756,-1.8828],[136.2845,-1.8811],[136.2912,-1.8821],[136.2915,-1.8778],[136.2972,-1.871],[136.3044,-1.8691],[136.3134,-1.8628],[136.3231,-1.867],[136.3282,-1.8648],[136.3318,-1.8655],[136.3365,-1.8622],[136.3435,-1.8606],[136.3446,-1.8659],[136.3511,-1.8661],[136.3608,-1.8683],[136.3666,-1.8765],[136.3664,-1.8798],[136.3731,-1.8825],[136.3807,-1.8804],[136.3793,-1.8773],[136.3879,-1.8725],[136.3952,-1.8844],[136.4003,-1.8878],[136.4005,-1.8807],[136.4071,-1.8833],[136.4118,-1.8787],[136.4111,-1.8735],[136.4178,-1.8747],[136.4236,-1.8781],[136.4253,-1.8844],[136.4366,-1.8892],[136.4419,-1.8891],[136.4496,-1.8832],[136.4596,-1.8917],[136.4672,-1.8952],[136.4711,-1.8863],[136.4735,-1.8836],[136.4806,-1.8843],[136.4849,-1.8793],[136.4949,-1.8823],[136.4981,-1.8798],[136.5027,-1.881],[136.5042,-1.8851],[136.5113,-1.89],[136.5124,-1.8931],[136.5191,-1.8924],[136.531,-1.895],[136.5323,-1.8981],[136.5468,-1.8965],[136.5444,-1.8927],[136.5385,-1.8924],[136.531,-1.8853],[136.5328,-1.8827],[136.5243,-1.8777],[136.5202,-1.871],[136.5161,-1.8692],[136.509,-1.8595],[136.5028,-1.858],[136.5029,-1.8495],[136.5099,-1.8487],[136.5107,-1.8513],[136.5168,-1.8576],[136.5282,-1.8637],[136.5347,-1.8693],[136.5376,-1.8696],[136.5449,-1.8655],[136.5503,-1.8703],[136.5617,-1.8683],[136.5658,-1.8648],[136.5724,-1.8627],[136.5746,-1.8648],[136.5899,-1.8638],[136.5951,-1.865],[136.6004,-1.8636],[136.6065,-1.8659],[136.6175,-1.8625],[136.6212,-1.8631],[136.6283,-1.8695],[136.6282,-1.8731],[136.636,-1.8714],[136.6387,-1.8688],[136.6436,-1.8703],[136.6477,-1.8679],[136.6517,-1.8619],[136.6548,-1.8613],[136.6548,-1.8562],[136.6579,-1.8538],[136.6686,-1.8521],[136.6715,-1.8466],[136.6786,-1.8398],[136.6832,-1.8384],[136.686,-1.8346],[136.6897,-1.8346],[136.6877,-1.8412],[136.6935,-1.8419],[136.699,-1.8452],[136.7068,-1.8434],[136.7121,-1.834],[136.7053,-1.8278],[136.6995,-1.8279],[136.7041,-1.8223],[136.7182,-1.816],[136.7241,-1.8152],[136.73,-1.8191],[136.7364,-1.8195],[136.7395,-1.822],[136.748,-1.8241],[136.7616,-1.8256],[136.7651,-1.8212],[136.7732,-1.8174],[136.7822,-1.816],[136.7863,-1.813],[136.7922,-1.812],[136.8014,-1.8128],[136.8101,-1.8196],[136.8287,-1.8242],[136.8311,-1.8225],[136.8415,-1.8246],[136.8492,-1.8274],[136.8531,-1.8199],[136.8612,-1.8152],[136.8693,-1.8144],[136.8715,-1.8115],[136.8738,-1.801],[136.8825,-1.7974],[136.8953,-1.7977],[136.9031,-1.7943],[136.9038,-1.7922],[136.8978,-1.7864],[136.8916,-1.7846],[136.8869,-1.7807],[136.8816,-1.7788],[136.8745,-1.779],[136.8611,-1.7753],[136.8487,-1.7701],[136.8324,-1.762],[136.8068,-1.7504],[136.7984,-1.7459],[136.7946,-1.7423],[136.7888,-1.7401],[136.7871,-1.7426],[136.7776,-1.742],[136.7726,-1.7475],[136.76,-1.7463],[136.7475,-1.7435],[136.7313,-1.7379],[136.7289,-1.7363],[136.7138,-1.732],[136.7115,-1.7335],[136.7046,-1.7309],[136.6936,-1.7318],[136.6821,-1.7285],[136.6787,-1.7292],[136.6683,-1.7263],[136.6672,-1.7286],[136.651,-1.7294],[136.6371,-1.7251],[136.6335,-1.7265],[136.6263,-1.7249],[136.6132,-1.7274],[136.6022,-1.7276],[136.5896,-1.7261],[136.5877,-1.7292],[136.5696,-1.7256],[136.5582,-1.7217],[136.5532,-1.7227],[136.5451,-1.7215],[136.5276,-1.7151],[136.5059,-1.711],[136.4985,-1.7057],[136.4925,-1.7075],[136.4771,-1.7054],[136.4718,-1.7059],[136.4611,-1.7042],[136.4462,-1.6982],[136.446,-1.7058],[136.4347,-1.7127],[136.4289,-1.7143],[136.4199,-1.7144],[136.4082,-1.7203],[136.4013,-1.7205],[136.3933,-1.7182],[136.3902,-1.7199],[136.379,-1.7163],[136.3686,-1.7171],[136.3595,-1.7135],[136.3538,-1.7097],[136.3519,-1.7059],[136.3428,-1.7066],[136.3252,-1.7039],[136.3181,-1.6994],[136.3157,-1.6946],[136.3044,-1.6871],[136.2969,-1.6856],[136.2934,-1.6872],[136.2868,-1.6856],[136.2815,-1.6791],[136.2685,-1.6782],[136.2654,-1.6752],[136.2545,-1.6725],[136.2483,-1.6727],[136.2317,-1.6696],[136.2249,-1.6665],[136.2188,-1.6617],[136.2109,-1.6521],[136.2033,-1.6484],[136.1829,-1.6556],[136.1723,-1.6533],[136.1586,-1.6543],[136.1497,-1.6526],[136.1414,-1.649],[136.1292,-1.6535],[136.1191,-1.6533],[136.1084,-1.6511],[136.0971,-1.6525],[136.0911,-1.6493],[136.0753,-1.6503],[136.0637,-1.6579],[136.0516,-1.6595],[136.0454,-1.6551],[136.0404,-1.6553],[136.0293,-1.6533],[136.0274,-1.6506],[136.0148,-1.6473],[136.0117,-1.6492],[136.0064,-1.6467],[136.0034,-1.6512],[135.9984,-1.6538],[135.9905,-1.6519],[135.9889,-1.6471],[135.9818,-1.6459],[135.9736,-1.6539],[135.9691,-1.6547],[135.9616,-1.6517],[135.9617,-1.6438],[135.9523,-1.6409],[135.9469,-1.6451],[135.9426,-1.6417],[135.9389,-1.6429],[135.9325,-1.6401],[135.9238,-1.6412],[135.9144,-1.6353],[135.9048,-1.6366],[135.9001,-1.636],[135.8907,-1.6378],[135.8898,-1.6416],[135.8792,-1.6398],[135.8784,-1.645],[135.8722,-1.6456],[135.8717,-1.6527],[135.8693,-1.6545],[135.8704,-1.6609],[135.8645,-1.6597],[135.8557,-1.6546],[135.8517,-1.6619],[135.8456,-1.6557],[135.8442,-1.658],[135.8367,-1.6577],[135.8411,-1.6531],[135.8381,-1.6502],[135.8366,-1.6452],[135.8437,-1.6403],[135.8351,-1.6393],[135.8285,-1.643],[135.8201,-1.6382],[135.8121,-1.6384],[135.7974,-1.6317],[135.7914,-1.6312],[135.7851,-1.6263],[135.7802,-1.6276],[135.7663,-1.6262],[135.7527,-1.6295],[135.7412,-1.6263],[135.738,-1.6291],[135.7375,-1.6341],[135.7285,-1.6358],[135.7261,-1.6308],[135.72,-1.6264],[135.7141,-1.6271],[135.7079,-1.6258],[135.7023,-1.6269],[135.7033,-1.632],[135.6964,-1.6309],[135.6924,-1.6345],[135.6921,-1.6239],[135.6893,-1.6202],[135.6764,-1.6199],[135.6709,-1.6232],[135.6579,-1.6226],[135.6543,-1.6191],[135.6408,-1.6266],[135.622,-1.6253],[135.6175,-1.621],[135.6096,-1.6218],[135.6042,-1.6201],[135.5978,-1.6213],[135.5938,-1.6163],[135.5814,-1.6136],[135.5806,-1.6106],[135.5719,-1.6151],[135.5666,-1.6111],[135.5609,-1.612],[135.5578,-1.6147],[135.5499,-1.6119],[135.5463,-1.6142],[135.541,-1.6116],[135.533,-1.6111],[135.5293,-1.6083],[135.5246,-1.6114],[135.52,-1.6085],[135.5052,-1.608],[135.495,-1.6085],[135.4781,-1.5991],[135.4754,-1.5991]],[[135.8304,-1.5208],[135.8274,-1.5258],[135.8341,-1.5273],[135.8361,-1.5248],[135.8304,-1.5208]],[[135.3391,-1.5097],[135.3371,-1.5135],[135.3423,-1.5148],[135.3487,-1.5139],[135.3487,-1.51],[135.3391,-1.5097]],[[135.3704,-1.4977],[135.3628,-1.5002],[135.3641,-1.5071],[135.3694,-1.5065],[135.3713,-1.5035],[135.3704,-1.4977]],[[135.3532,-1.4816],[135.3477,-1.4829],[135.3501,-1.4884],[135.3556,-1.4865],[135.3532,-1.4816]],[[135.1196,-1.4656],[135.1136,-1.4661],[135.1115,-1.4715],[135.1141,-1.4742],[135.1137,-1.4793],[135.1097,-1.4822],[135.104,-1.4831],[135.0954,-1.489],[135.0957,-1.497],[135.0914,-1.5009],[135.0992,-1.5083],[135.1061,-1.507],[135.1151,-1.4998],[135.129,-1.509],[135.1369,-1.5042],[135.1435,-1.5122],[135.1455,-1.5125],[135.1528,-1.5194],[135.1575,-1.521],[135.1639,-1.5203],[135.1664,-1.5181],[135.173,-1.5233],[135.1785,-1.5212],[135.1758,-1.5142],[135.1769,-1.5109],[135.1865,-1.5124],[135.1937,-1.5183],[135.1963,-1.5165],[135.2034,-1.5175],[135.2096,-1.5241],[135.2133,-1.5206],[135.2197,-1.5223],[135.2234,-1.5194],[135.2352,-1.5194],[135.2426,-1.5216],[135.245,-1.5286],[135.2497,-1.5294],[135.2617,-1.5267],[135.2791,-1.5165],[135.2864,-1.5209],[135.2892,-1.5187],[135.2986,-1.5194],[135.3055,-1.5161],[135.3089,-1.5126],[135.3137,-1.5138],[135.321,-1.5091],[135.3256,-1.5093],[135.3251,-1.5015],[135.3283,-1.5012],[135.3363,-1.4926],[135.3344,-1.485],[135.3206,-1.4944],[135.3155,-1.494],[135.3109,-1.496],[135.3089,-1.4903],[135.3038,-1.4873],[135.2972,-1.4856],[135.2989,-1.4789],[135.2976,-1.4748],[135.2827,-1.4822],[135.2792,-1.4818],[135.274,-1.4889],[135.2704,-1.4821],[135.2597,-1.4824],[135.2604,-1.489],[135.2636,-1.4928],[135.2637,-1.4968],[135.2604,-1.5025],[135.2615,-1.5068],[135.2578,-1.5141],[135.2595,-1.5181],[135.2535,-1.5218],[135.2494,-1.5195],[135.2474,-1.5139],[135.251,-1.5082],[135.2487,-1.5047],[135.2427,-1.5049],[135.2418,-1.5022],[135.2464,-1.4953],[135.2492,-1.4937],[135.246,-1.4846],[135.2375,-1.4843],[135.2319,-1.4862],[135.2315,-1.4891],[135.2256,-1.4952],[135.2308,-1.5008],[135.2215,-1.5078],[135.2151,-1.5019],[135.2076,-1.5042],[135.2065,-1.4943],[135.2144,-1.4898],[135.217,-1.4898],[135.2171,-1.4815],[135.2186,-1.4776],[135.2157,-1.4744],[135.2099,-1.4768],[135.2068,-1.4762],[135.1929,-1.4799],[135.1806,-1.4878],[135.1791,-1.4784],[135.1746,-1.4779],[135.1711,-1.4815],[135.1643,-1.4784],[135.1606,-1.4877],[135.1537,-1.4899],[135.1476,-1.4797],[135.1462,-1.4747],[135.1369,-1.4716],[135.1344,-1.4778],[135.131,-1.4733],[135.1267,-1.4782],[135.1212,-1.4767],[135.1249,-1.4722],[135.1196,-1.4656]]]}},{"type":"Feature","properties":{"mhid":"1332:497","alt_name":"KABUPATEN BIAK NUMFOR","latitude":-1.03333,"longitude":136,"sample_value":963},"geometry":{"type":"MultiLineString","coordinates":[[[136.2105,-1.3128],[136.2112,-1.3103],[136.2073,-1.306],[136.2048,-1.3092],[136.2105,-1.3128]],[[136.6057,-1.322],[136.6074,-1.3078],[136.6037,-1.3079],[136.6006,-1.3184],[136.6057,-1.322]],[[136.6786,-1.2928],[136.6773,-1.2907],[136.6702,-1.2941],[136.6721,-1.2986],[136.6784,-1.2954],[136.6786,-1.2928]],[[136.3153,-1.2864],[136.3234,-1.2813],[136.3199,-1.2768],[136.3172,-1.28],[136.3153,-1.2864]],[[136.5933,-1.2699],[136.5894,-1.2769],[136.5919,-1.2834],[136.5964,-1.2896],[136.6001,-1.2921],[136.6048,-1.2879],[136.6107,-1.276],[136.6032,-1.2717],[136.5933,-1.2699]],[[136.6752,-1.2606],[136.6679,-1.2632],[136.6641,-1.2686],[136.6647,-1.2722],[136.6713,-1.2725],[136.6717,-1.2692],[136.6781,-1.2632],[136.6752,-1.2606]],[[136.3746,-1.2493],[136.3676,-1.2475],[136.3769,-1.26],[136.3773,-1.2538],[136.3746,-1.2493]],[[136.2254,-1.2301],[136.2164,-1.2293],[136.1991,-1.2341],[136.188,-1.247],[136.1947,-1.2548],[136.201,-1.2586],[136.2049,-1.2571],[136.2269,-1.2394],[136.2309,-1.2331],[136.2254,-1.2301]],[[136.6036,-1.229],[136.6,-1.2306],[136.5949,-1.2365],[136.5958,-1.2474],[136.5983,-1.2522],[136.6045,-1.2549],[136.6138,-1.2522],[136.6173,-1.2442],[136.6167,-1.2372],[136.6142,-1.2324],[136.6103,-1.2295],[136.6036,-1.229]],[[136.5205,-1.2278],[136.5102,-1.2289],[136.5048,-1.231],[136.5002,-1.2306],[136.503,-1.2399],[136.514,-1.2415],[136.5237,-1.2446],[136.5383,-1.243],[136.5398,-1.2408],[136.5377,-1.2351],[136.5278,-1.229],[136.5205,-1.2278]],[[136.3237,-1.2177],[136.3122,-1.2202],[136.2979,-1.229],[136.292,-1.235],[136.2966,-1.2418],[136.3001,-1.2443],[136.3055,-1.242],[136.309,-1.2357],[136.3233,-1.2299],[136.3341,-1.2277],[136.3382,-1.2334],[136.3403,-1.2307],[136.3414,-1.2234],[136.337,-1.2197],[136.3237,-1.2177]],[[136.7014,-1.2247],[136.7052,-1.2237],[136.7088,-1.2187],[136.7084,-1.2155],[136.7026,-1.2125],[136.6948,-1.2148],[136.694,-1.2201],[136.697,-1.2243],[136.7014,-1.2247]],[[136.4441,-1.2017],[136.4369,-1.2026],[136.4301,-1.2123],[136.4306,-1.2149],[136.442,-1.2263],[136.4458,-1.2334],[136.4494,-1.2284],[136.4506,-1.2203],[136.4486,-1.2127],[136.4441,-1.2017]],[[136.6002,-1.191],[136.5972,-1.1895],[136.5867,-1.1909],[136.5776,-1.196],[136.5761,-1.2002],[136.5813,-1.201],[136.5847,-1.2062],[136.5845,-1.2145],[136.5869,-1.2215],[136.5905,-1.2275],[136.5955,-1.2281],[136.6129,-1.223],[136.6148,-1.2163],[136.6138,-1.2104],[136.6099,-1.2001],[136.6061,-1.1947],[136.6002,-1.191]],[[136.6098,-1.137],[136.6012,-1.1348],[136.6026,-1.1388],[136.5972,-1.1608],[136.5931,-1.1637],[136.5999,-1.1728],[136.6051,-1.1744],[136.6144,-1.1629],[136.6131,-1.1603],[136.6161,-1.1533],[136.62,-1.1535],[136.6178,-1.1435],[136.6098,-1.137]],[[134.9463,-1.0286],[134.9442,-1.0242],[134.9393,-1.0286],[134.9428,-1.0377],[134.9461,-1.0372],[134.9492,-1.0322],[134.9463,-1.0286]],[[134.9535,-1.0242],[134.9549,-1.0183],[134.9525,-1.0142],[134.9487,-1.014],[134.9451,-1.0229],[134.95,-1.0263],[134.9535,-1.0242]],[[134.857,-0.9311],[134.8458,-0.9329],[134.8435,-0.9316],[134.8293,-0.9442],[134.8202,-0.9473],[134.8109,-0.9533],[134.8062,-0.9587],[134.8063,-0.9654],[134.8047,-0.9695],[134.799,-0.976],[134.7926,-0.9811],[134.7955,-0.9842],[134.8064,-0.9829],[134.8074,-0.9845],[134.7971,-0.9902],[134.8001,-0.996],[134.8009,-1.0026],[134.7959,-1.0071],[134.7987,-1.0151],[134.795,-1.0238],[134.7967,-1.0285],[134.795,-1.0323],[134.7991,-1.039],[134.8054,-1.0422],[134.8128,-1.0522],[134.8142,-1.0565],[134.8188,-1.0607],[134.8197,-1.0643],[134.824,-1.0665],[134.8231,-1.0701],[134.8254,-1.0818],[134.8287,-1.0863],[134.835,-1.0823],[134.8442,-1.087],[134.8392,-1.0939],[134.8368,-1.1065],[134.842,-1.1077],[134.8448,-1.1108],[134.8507,-1.1128],[134.857,-1.1228],[134.8542,-1.132],[134.8586,-1.1325],[134.8644,-1.1301],[134.8713,-1.1338],[134.8747,-1.1331],[134.881,-1.1356],[134.8861,-1.1404],[134.8966,-1.14],[134.9207,-1.1324],[134.94,-1.1305],[134.9436,-1.1284],[134.9515,-1.128],[134.9529,-1.1233],[134.9626,-1.1099],[134.965,-1.1019],[134.9686,-1.097],[134.9732,-1.0945],[134.9723,-1.0896],[134.9788,-1.0754],[134.9823,-1.0729],[134.9818,-1.0666],[134.9789,-1.0627],[134.9785,-1.0528],[134.9821,-1.0462],[134.9805,-1.0372],[134.986,-1.0358],[134.9809,-1.0121],[134.9726,-1.0111],[134.9619,-1.02],[134.9591,-1.0201],[134.954,-1.0267],[134.9529,-1.0334],[134.96,-1.0389],[134.9603,-1.049],[134.9491,-1.0565],[134.9424,-1.0585],[134.939,-1.0624],[134.9396,-1.0722],[134.9274,-1.0751],[134.9208,-1.0702],[134.9203,-1.0658],[134.9232,-1.0636],[134.9227,-1.0552],[134.9275,-1.0443],[134.9366,-1.0472],[134.9403,-1.044],[134.9412,-1.0368],[134.9388,-1.034],[134.9369,-1.0269],[134.9373,-1.0203],[134.9402,-1.0151],[134.9393,-1.0111],[134.9482,-1.0017],[134.9465,-0.9936],[134.9478,-0.9883],[134.9449,-0.9776],[134.9452,-0.9722],[134.9405,-0.9653],[134.9331,-0.961],[134.9284,-0.9552],[134.9216,-0.9518],[134.9173,-0.9516],[134.9101,-0.9458],[134.9012,-0.9413],[134.8946,-0.9397],[134.8844,-0.9351],[134.8689,-0.933],[134.8626,-0.9332],[134.857,-0.9311]],[[135.7087,-0.8032],[135.7142,-0.8064],[135.7203,-0.8046],[135.7248,-0.8015],[135.7416,-0.8106],[135.742,-0.8162],[135.7527,-0.8363],[135.7554,-0.8374],[135.7563,-0.8447],[135.7619,-0.8577],[135.7668,-0.864],[135.7661,-0.8706],[135.7685,-0.8784],[135.766,-0.8858],[135.7671,-0.8935],[135.7695,-0.8955],[135.7697,-0.9009],[135.7749,-0.9035],[135.7771,-0.9097],[135.7763,-0.9226],[135.7822,-0.9297],[135.7828,-0.9361],[135.7881,-0.9377],[135.7877,-0.9462],[135.7895,-0.9564],[135.7876,-0.9651],[135.7919,-0.968],[135.7938,-0.9739],[135.7927,-0.9778],[135.7961,-0.9863],[135.7986,-0.9881],[135.8008,-0.998],[135.8101,-1.0082],[135.8173,-1.0138],[135.8235,-1.0254],[135.8255,-1.0318],[135.8226,-1.0387],[135.823,-1.0453],[135.8202,-1.0612],[135.8224,-1.0652],[135.8229,-1.0744],[135.8211,-1.0753],[135.8205,-1.0853],[135.8181,-1.0892],[135.8023,-1.0928],[135.802,-1.0973],[135.8116,-1.1149],[135.8179,-1.117],[135.8187,-1.1219],[135.8227,-1.128],[135.8233,-1.1318],[135.827,-1.1359],[135.8327,-1.1388],[135.8421,-1.1474],[135.8543,-1.1612],[135.8578,-1.1666],[135.8642,-1.1681],[135.8732,-1.1729],[135.8879,-1.1747],[135.8965,-1.1772],[135.906,-1.178],[135.9077,-1.1671],[135.9166,-1.1586],[135.9224,-1.1583],[135.9329,-1.1537],[135.9354,-1.1492],[135.9451,-1.1463],[135.9527,-1.1473],[135.9549,-1.1491],[135.9655,-1.1486],[135.9722,-1.1466],[135.9783,-1.1473],[135.9828,-1.1443],[135.989,-1.1447],[136.0002,-1.1423],[136.0053,-1.1439],[136.0182,-1.1448],[136.0218,-1.1472],[136.0283,-1.1463],[136.0351,-1.1472],[136.0439,-1.1552],[136.0494,-1.1569],[136.0492,-1.167],[136.0512,-1.1723],[136.0559,-1.1773],[136.0769,-1.1863],[136.0792,-1.1851],[136.085,-1.1879],[136.1067,-1.1935],[136.1269,-1.1972],[136.1357,-1.1998],[136.145,-1.1998],[136.1553,-1.1947],[136.1626,-1.1854],[136.1738,-1.1814],[136.179,-1.1813],[136.2031,-1.1758],[136.2034,-1.1738],[136.224,-1.171],[136.2371,-1.1716],[136.2432,-1.1703],[136.2552,-1.1646],[136.2601,-1.1613],[136.2686,-1.1606],[136.2744,-1.1576],[136.2823,-1.1503],[136.289,-1.1492],[136.3056,-1.1419],[136.3147,-1.1404],[136.3264,-1.1335],[136.3438,-1.1185],[136.3546,-1.1111],[136.3596,-1.0964],[136.3665,-1.091],[136.3803,-1.0899],[136.3842,-1.0855],[136.3872,-1.0793],[136.3863,-1.0733],[136.3704,-1.0662],[136.3604,-1.0634],[136.3532,-1.0667],[136.3451,-1.0662],[136.3408,-1.0705],[136.3322,-1.0759],[136.3237,-1.0741],[136.3163,-1.0675],[136.3141,-1.0629],[136.3028,-1.06],[136.2963,-1.055],[136.2934,-1.0496],[136.2919,-1.0425],[136.2916,-1.0321],[136.2759,-1.0215],[136.2691,-1.022],[136.2571,-1.0175],[136.2506,-1.0214],[136.2482,-1.0259],[136.237,-1.0295],[136.2241,-1.0289],[136.2081,-1.0315],[136.2007,-1.0362],[136.1952,-1.0421],[136.1892,-1.0449],[136.1746,-1.0453],[136.161,-1.0348],[136.1588,-1.0279],[136.158,-1.0183],[136.1587,-1.0073],[136.1565,-1.0053],[136.1522,-0.9963],[136.1443,-0.9915],[136.1373,-0.9911],[136.1326,-0.9861],[136.1192,-0.9756],[136.1125,-0.9729],[136.101,-0.9631],[136.0983,-0.9592],[136.0944,-0.9481],[136.0954,-0.9414],[136.0981,-0.9351],[136.0944,-0.9222],[136.0915,-0.9172],[136.0773,-0.9129],[136.0709,-0.904],[136.0703,-0.8964],[136.0601,-0.887],[136.0532,-0.8895],[136.0498,-0.8927],[136.0475,-0.9002],[136.0439,-0.8992],[136.0397,-0.8941],[136.0462,-0.8838],[136.0451,-0.8808],[136.0468,-0.8709],[136.0516,-0.8592],[136.051,-0.8563],[136.0421,-0.8554],[136.0387,-0.8594],[136.0356,-0.8592],[136.0389,-0.8476],[136.0367,-0.843],[136.0267,-0.836],[136.0099,-0.8315],[136.0002,-0.8229],[135.9934,-0.8208],[135.9836,-0.8146],[135.9733,-0.8123],[135.9629,-0.8041],[135.9609,-0.8005],[135.9475,-0.7956],[135.9428,-0.7882],[135.9367,-0.786],[135.9305,-0.7901],[135.9251,-0.7904],[135.9198,-0.7836],[135.9177,-0.7755],[135.9126,-0.7705],[135.9084,-0.7566],[135.8941,-0.7433],[135.8885,-0.7325],[135.8777,-0.7238],[135.8728,-0.7159],[135.8656,-0.7067],[135.854,-0.7002],[135.8468,-0.6989],[135.8407,-0.6958],[135.8332,-0.6939],[135.8268,-0.6904],[135.8217,-0.6898],[135.8112,-0.6853],[135.8036,-0.6868]]]}},{"type":"Feature","properties":{"mhid":"1332:500","alt_name":"KABUPATEN MIMIKA","latitude":-4.54357,"longitude":136.56555,"sample_value":126},"geometry":{"type":"MultiLineString","coordinates":[[[137.5128,-5.1768],[137.5098,-5.1708],[137.5038,-5.1782],[137.4974,-5.1828],[137.4968,-5.1868],[137.508,-5.1975],[137.5097,-5.1943],[137.5094,-5.1852],[137.5081,-5.1776],[137.5128,-5.1768]],[[137.1837,-5.0287],[137.1796,-5.0315],[137.1845,-5.038],[137.1922,-5.043],[137.1922,-5.036],[137.1895,-5.0319],[137.1837,-5.0287]],[[136.8046,-4.8991],[136.8038,-4.9022],[136.8165,-4.9106],[136.8158,-4.9066],[136.8046,-4.8991]],[[136.795,-4.8919],[136.7906,-4.8929],[136.7907,-4.8969],[136.7983,-4.9009],[136.803,-4.8983],[136.795,-4.8919]],[[134.8703,-4.2512],[134.8857,-4.2518],[134.8951,-4.2557],[134.9046,-4.2636],[134.9117,-4.2666],[134.9257,-4.2808],[134.9326,-4.2912],[134.932,-4.2962],[134.9283,-4.2984],[134.9302,-4.3032],[134.9353,-4.3086],[134.9443,-4.3157],[134.9552,-4.323],[134.9625,-4.327],[134.9795,-4.3322],[134.9976,-4.3411],[135.0117,-4.3504],[135.0223,-4.3456],[135.0216,-4.3544],[135.028,-4.3579],[135.0368,-4.3672],[135.0384,-4.3737],[135.0432,-4.3766],[135.0521,-4.3779],[135.0586,-4.3768],[135.0595,-4.3731],[135.0646,-4.3737],[135.0702,-4.3773],[135.0728,-4.3872],[135.0647,-4.3843],[135.0626,-4.3872],[135.0848,-4.4001],[135.097,-4.4087],[135.112,-4.4084],[135.1176,-4.4138],[135.1288,-4.4213],[135.1354,-4.4224],[135.1376,-4.4252],[135.1516,-4.4324],[135.1638,-4.4401],[135.1769,-4.4467],[135.192,-4.4559],[135.1988,-4.4632],[135.2035,-4.4623],[135.2075,-4.4657],[135.2257,-4.4627],[135.2468,-4.4573],[135.2779,-4.4475],[135.2902,-4.4447],[135.3051,-4.4428],[135.3262,-4.4423],[135.3386,-4.445],[135.3449,-4.4402],[135.3455,-4.4375],[135.356,-4.4394],[135.3737,-4.4369],[135.3977,-4.4355],[135.4053,-4.436],[135.4113,-4.4334],[135.4158,-4.4362],[135.439,-4.4369],[135.4678,-4.4395],[135.4993,-4.4439],[135.5202,-4.4483],[135.5599,-4.4585],[135.5713,-4.4608],[135.5856,-4.4656],[135.5907,-4.4702],[135.5955,-4.4725],[135.6034,-4.4738],[135.6315,-4.476],[135.6348,-4.4781],[135.6578,-4.4813],[135.6633,-4.4805],[135.6668,-4.4831],[135.6832,-4.4865],[135.7005,-4.4893],[135.7087,-4.4949],[135.7178,-4.4936],[135.7185,-4.4973],[135.7272,-4.4968],[135.7392,-4.4946],[135.7458,-4.4883],[135.7542,-4.4897],[135.7726,-4.4875],[135.7814,-4.487],[135.789,-4.484],[135.7931,-4.4851],[135.8262,-4.4843],[135.8688,-4.4851],[135.905,-4.487],[135.9224,-4.4914],[135.9303,-4.4945],[135.948,-4.5059],[135.954,-4.5152],[135.9588,-4.5271],[135.9615,-4.5294],[135.9677,-4.5265],[135.9736,-4.532],[135.9824,-4.5371],[135.9873,-4.5451],[136.0056,-4.5527],[136.0175,-4.5601],[136.0301,-4.5702],[136.0378,-4.5784],[136.0452,-4.5796],[136.0491,-4.5845],[136.0569,-4.5887],[136.0654,-4.5878],[136.0735,-4.5899],[136.0784,-4.594],[136.0894,-4.5987],[136.094,-4.6023],[136.1003,-4.6121],[136.1114,-4.6213],[136.1203,-4.619],[136.1291,-4.6206],[136.1332,-4.6227],[136.1399,-4.631],[136.1437,-4.6324],[136.1581,-4.634],[136.1774,-4.6396],[136.1909,-4.6452],[136.2006,-4.6516],[136.2078,-4.6576],[136.2106,-4.6528],[136.2158,-4.6503],[136.225,-4.6527],[136.2287,-4.6552],[136.2289,-4.6605],[136.2376,-4.6638],[136.2571,-4.663],[136.2762,-4.6682],[136.2854,-4.6676],[136.2926,-4.6732],[136.2958,-4.6735],[136.299,-4.668],[136.3072,-4.6602],[136.3111,-4.6588],[136.3215,-4.6636],[136.3237,-4.6662],[136.3341,-4.668],[136.3544,-4.6744],[136.3592,-4.678],[136.3665,-4.6801],[136.3679,-4.6825],[136.3903,-4.694],[136.3947,-4.6998],[136.3987,-4.702],[136.4034,-4.7014],[136.4136,-4.7081],[136.4193,-4.716],[136.4271,-4.7216],[136.437,-4.7316],[136.4412,-4.733],[136.444,-4.7392],[136.4499,-4.739],[136.4526,-4.7349],[136.4629,-4.7363],[136.465,-4.7397],[136.4711,-4.7416],[136.482,-4.7427],[136.4866,-4.7418],[136.489,-4.7453],[136.496,-4.7479],[136.4976,-4.7527],[136.5116,-4.762],[136.5181,-4.7709],[136.5217,-4.7718],[136.5286,-4.7705],[136.5343,-4.7727],[136.5356,-4.7787],[136.5327,-4.7828],[136.546,-4.7904],[136.5554,-4.789],[136.5635,-4.7917],[136.5689,-4.7983],[136.5903,-4.807],[136.5981,-4.8095],[136.6241,-4.8233],[136.6364,-4.8285],[136.6431,-4.8332],[136.6553,-4.8346],[136.6667,-4.8387],[136.6739,-4.8425],[136.678,-4.8466],[136.6896,-4.8451],[136.6961,-4.8408],[136.7047,-4.8495],[136.7201,-4.856],[136.727,-4.8635],[136.7348,-4.8694],[136.7422,-4.8721],[136.752,-4.8728],[136.7543,-4.8639],[136.7624,-4.8612],[136.7692,-4.8629],[136.7736,-4.8675],[136.7796,-4.8672],[136.7854,-4.8636],[136.7919,-4.8677],[136.7932,-4.8765],[136.7897,-4.8826],[136.7902,-4.8879],[136.7933,-4.8885],[136.7977,-4.8938],[136.8057,-4.8966],[136.8214,-4.9072],[136.8267,-4.909],[136.8314,-4.9136],[136.84,-4.9058],[136.8443,-4.9068],[136.8468,-4.9044],[136.8619,-4.8986],[136.8684,-4.8991],[136.8763,-4.8901],[136.8839,-4.89],[136.8907,-4.8874],[136.8996,-4.8809],[136.9053,-4.8742],[136.9109,-4.874],[136.917,-4.8685],[136.9179,-4.8593],[136.9233,-4.856],[136.93,-4.8667],[136.9295,-4.8766],[136.9245,-4.89],[136.9251,-4.8969],[136.9335,-4.9044],[136.9476,-4.9109],[136.9532,-4.9163],[136.9583,-4.9186],[136.9647,-4.9238],[136.9669,-4.9283],[136.9762,-4.939],[136.9795,-4.9383],[136.9844,-4.9322],[136.994,-4.9356],[137.0046,-4.9369],[137.0136,-4.9327],[137.0249,-4.9231],[137.034,-4.9213],[137.0423,-4.9241],[137.0471,-4.9209],[137.0599,-4.9189],[137.065,-4.9266],[137.0643,-4.9307],[137.0578,-4.9392],[137.0678,-4.9507],[137.0767,-4.9572],[137.083,-4.966],[137.0919,-4.9737],[137.1082,-4.9742],[137.1124,-4.9673],[137.1138,-4.9609],[137.1228,-4.962],[137.1255,-4.9666],[137.1316,-4.9699],[137.138,-4.9709],[137.1509,-4.9745],[137.1558,-4.9834],[137.1706,-4.9967],[137.1752,-5.0059],[137.1836,-5.0086],[137.1873,-4.9978],[137.1978,-4.9976],[137.2035,-4.9933],[137.2105,-4.982],[137.2154,-4.9808],[137.2289,-4.9844],[137.2471,-5.0003],[137.2551,-5.009],[137.2734,-5.02],[137.2815,-5.0238],[137.2875,-5.0236],[137.2895,-5.0142],[137.2946,-5.0116],[137.3065,-5.0128],[137.3263,-5.0272],[137.3328,-5.0355],[137.3344,-5.0416],[137.3372,-5.0451],[137.3375,-5.0516],[137.3403,-5.0579],[137.3542,-5.0708],[137.364,-5.081],[137.3652,-5.0849],[137.3721,-5.0884],[137.3782,-5.0937],[137.3843,-5.0972],[137.3954,-5.1081],[137.4106,-5.1094],[137.4148,-5.1147],[137.4176,-5.1238],[137.4211,-5.1252],[137.4326,-5.1176],[137.4388,-5.0986],[137.444,-5.0973],[137.4485,-5.0985],[137.4603,-5.1097],[137.4696,-5.113],[137.4746,-5.1163],[137.4785,-5.126],[137.4963,-5.1454],[137.5078,-5.1442],[137.5144,-5.1418],[137.5212,-5.1338],[137.5331,-5.1343],[137.5408,-5.1368],[137.5492,-5.1421],[137.5532,-5.1428],[137.5548,-5.1469]]]}},{"type":"Feature","properties":{"mhid":"1332:501","alt_name":"KABUPATEN BOVEN DIGOEL","latitude":-5.70519,"longitude":140.36349,"sample_value":981},"geometry":{"type":"MultiLineString","coordinates":[[[140.8483,-6.6182],[140.8439,-6.6161],[140.8403,-6.6107],[140.8442,-6.6086],[140.8507,-6.6094],[140.8613,-6.607],[140.8706,-6.6036],[140.8791,-6.5934],[140.8862,-6.5924],[140.8889,-6.5959],[140.8873,-6.604],[140.8902,-6.6043],[140.8946,-6.5973],[140.9008,-6.594],[140.9053,-6.5896],[140.9103,-6.578],[140.9096,-6.5703],[140.9056,-6.5684],[140.8992,-6.5707],[140.8926,-6.5756],[140.8896,-6.5756],[140.8859,-6.5715],[140.8866,-6.5654],[140.8894,-6.5606],[140.8962,-6.5584],[140.9072,-6.5582],[140.9123,-6.5552],[140.9179,-6.557],[140.9252,-6.5612],[140.9336,-6.5631],[140.9352,-6.5569],[140.9242,-6.5551],[140.9208,-6.5502],[140.9276,-6.5424],[140.9289,-6.538],[140.9263,-6.5272],[140.9191,-6.5155],[140.9191,-6.5048],[140.9252,-6.4934],[140.9287,-6.4913],[140.9478,-6.4916],[140.9573,-6.4894],[140.9585,-6.4849],[140.9529,-6.4833],[140.9467,-6.4793],[140.9452,-6.4743],[140.9465,-6.4688],[140.9374,-6.4711],[140.9302,-6.471],[140.9259,-6.4692],[140.9219,-6.4636],[140.9218,-6.4589],[140.9247,-6.4553],[140.9344,-6.4529],[140.9384,-6.4473],[140.9349,-6.4433],[140.9242,-6.4415],[140.917,-6.4358],[140.9151,-6.4308],[140.9177,-6.4193],[140.9247,-6.4159],[140.9282,-6.4169],[140.9367,-6.4281],[140.9467,-6.4365],[140.9514,-6.4345],[140.9553,-6.4267],[140.956,-6.4204],[140.9536,-6.4186],[140.9475,-6.4192],[140.9419,-6.4171],[140.9413,-6.4113],[140.9523,-6.4065],[140.9572,-6.3998],[140.9667,-6.395],[140.9773,-6.3937],[140.9812,-6.3897],[140.9806,-6.3861],[140.9708,-6.3833],[140.9619,-6.3837],[140.9512,-6.3907],[140.9444,-6.3892],[140.9408,-6.384],[140.9405,-6.3781],[140.9454,-6.3695],[140.9524,-6.3718],[140.9617,-6.3714],[140.977,-6.3651],[140.974,-6.3615],[140.9656,-6.3593],[140.9611,-6.3566],[140.9593,-6.3489],[140.966,-6.3477],[140.9671,-6.3408],[140.9606,-6.3356],[140.9582,-6.3308],[140.9582,-6.3258],[140.9607,-6.3225],[140.9736,-6.3258],[140.9866,-6.3191],[140.9948,-6.3188],[141,-6.3203],[141,-6.2148],[141,-6.0667],[141,-5.9439],[141,-5.7839],[141,-5.7073],[141,-5.586],[141,-5.4997],[141,-5.2947],[140.9997,-5.2947]]]}},{"type":"Feature","properties":{"mhid":"1332:502","alt_name":"KABUPATEN MAPPI","latitude":-6.49971,"longitude":139.34441,"sample_value":372},"geometry":{"type":"MultiLineString","coordinates":[[[138.7967,-7.1629],[138.8056,-7.1598],[138.7964,-7.1537],[138.7853,-7.1487],[138.7787,-7.151],[138.781,-7.1577],[138.7887,-7.1634],[138.7967,-7.1629]],[[138.7164,-7.1167],[138.7114,-7.1194],[138.7085,-7.1262],[138.7066,-7.1373],[138.7072,-7.1418],[138.7129,-7.15],[138.7161,-7.1565],[138.7229,-7.1612],[138.7319,-7.1644],[138.7478,-7.1676],[138.7635,-7.1671],[138.7702,-7.1645],[138.7582,-7.1443],[138.7394,-7.1303],[138.7292,-7.1237],[138.7164,-7.1167]],[[138.6414,-6.5668],[138.6498,-6.5745],[138.661,-6.5739],[138.666,-6.5787],[138.6669,-6.59],[138.6713,-6.5927],[138.6753,-6.6014],[138.683,-6.6081],[138.6936,-6.6096],[138.6963,-6.6182],[138.6947,-6.6263],[138.6806,-6.6369],[138.6751,-6.6398],[138.6703,-6.6487],[138.6697,-6.6528],[138.6662,-6.6543],[138.6657,-6.659],[138.6686,-6.6616],[138.6685,-6.6658],[138.671,-6.6715],[138.6695,-6.6804],[138.6695,-6.6911],[138.6729,-6.7047],[138.6723,-6.7195],[138.6735,-6.7243],[138.6641,-6.7314],[138.6507,-6.7352],[138.6392,-6.7325],[138.6364,-6.7297],[138.6251,-6.7322],[138.6205,-6.7362],[138.6176,-6.7361],[138.6119,-6.7472],[138.6106,-6.752],[138.6139,-6.7679],[138.6212,-6.7826],[138.6275,-6.7897],[138.6378,-6.8034],[138.6478,-6.812],[138.6542,-6.8159],[138.6616,-6.8184],[138.6665,-6.8234],[138.6699,-6.8301],[138.6728,-6.8326],[138.6716,-6.8373],[138.6678,-6.842],[138.6677,-6.8461],[138.6741,-6.8572],[138.6766,-6.8672],[138.6709,-6.8797],[138.6667,-6.883],[138.6519,-6.8869],[138.6401,-6.8836],[138.6284,-6.8762],[138.6182,-6.8822],[138.6127,-6.8842],[138.6078,-6.8885],[138.6003,-6.8906],[138.5894,-6.897],[138.5867,-6.8973],[138.5775,-6.9029],[138.5707,-6.9118],[138.5655,-6.9211],[138.5653,-6.9308],[138.5609,-6.9347],[138.5669,-6.9463],[138.5723,-6.9509],[138.5727,-6.9572],[138.5855,-6.979],[138.5885,-6.9825],[138.5964,-6.9956],[138.6061,-7.0047],[138.6161,-7.0128],[138.6329,-7.0199],[138.6404,-7.025],[138.6462,-7.0266],[138.6535,-7.0338],[138.6635,-7.0382],[138.6768,-7.0508],[138.6815,-7.0528],[138.6919,-7.0653],[138.7005,-7.0713],[138.7091,-7.0759],[138.734,-7.0952],[138.7472,-7.1077],[138.7605,-7.1168],[138.7747,-7.1247],[138.8,-7.133],[138.8146,-7.1397],[138.8184,-7.1421],[138.8294,-7.1464],[138.8538,-7.1583],[138.8567,-7.1721],[138.8554,-7.1805],[138.843,-7.2],[138.8331,-7.2062],[138.8202,-7.2074],[138.7977,-7.2083],[138.7672,-7.2085],[138.7396,-7.2065],[138.7227,-7.204],[138.6866,-7.1978],[138.6774,-7.1956],[138.6731,-7.1979],[138.6671,-7.2085],[138.6673,-7.2142]]]}},{"type":"Feature","properties":{"mhid":"1332:503","alt_name":"KABUPATEN ASMAT","latitude":-5.3795,"longitude":138.46344,"sample_value":739},"geometry":{"type":"MultiLineString","coordinates":[[[137.7324,-5.2844],[137.7294,-5.2815],[137.7247,-5.2863],[137.7202,-5.2865],[137.723,-5.2929],[137.7262,-5.2933],[137.7348,-5.2901],[137.7363,-5.2864],[137.7324,-5.2844]],[[137.5548,-5.1469],[137.5561,-5.1569],[137.5506,-5.1681],[137.5556,-5.1746],[137.5615,-5.1793],[137.5773,-5.1869],[137.5808,-5.1852],[137.5838,-5.1888],[137.5943,-5.1926],[137.6024,-5.1968],[137.6146,-5.1981],[137.6196,-5.2029],[137.6391,-5.2144],[137.6439,-5.2147],[137.653,-5.2078],[137.6601,-5.2105],[137.6629,-5.2131],[137.6729,-5.2173],[137.683,-5.2199],[137.684,-5.2254],[137.6814,-5.2383],[137.6892,-5.2438],[137.7136,-5.2721],[137.7186,-5.2764],[137.7247,-5.2793],[137.7323,-5.2806],[137.741,-5.2906],[137.7434,-5.2974],[137.7437,-5.3048],[137.7419,-5.3087],[137.7328,-5.318],[137.7274,-5.3261],[137.7239,-5.3344],[137.7211,-5.3471],[137.7211,-5.3535],[137.7248,-5.3609],[137.7307,-5.3692],[137.736,-5.3727],[137.7444,-5.3744],[137.7482,-5.3709],[137.762,-5.361],[137.7684,-5.3594],[137.7749,-5.3645],[137.7961,-5.37],[137.8001,-5.3734],[137.8027,-5.3783],[137.8098,-5.3796],[137.817,-5.3763],[137.8257,-5.3757],[137.8346,-5.3725],[137.8392,-5.3746],[137.8442,-5.3725],[137.8528,-5.3658],[137.8549,-5.3606],[137.8577,-5.3593],[137.8739,-5.3571],[137.8785,-5.3662],[137.8916,-5.3699],[137.8961,-5.3835],[137.9067,-5.3954],[137.9193,-5.4079],[137.9258,-5.4111],[137.9374,-5.428],[137.9548,-5.4478],[137.9612,-5.4524],[137.966,-5.4588],[137.9738,-5.4662],[137.9818,-5.4758],[137.9877,-5.4804],[138.0069,-5.4981],[138.0164,-5.5032],[138.0269,-5.5044],[138.0344,-5.5024],[138.0418,-5.5019],[138.0472,-5.503],[138.0545,-5.5081],[138.0595,-5.5151],[138.0629,-5.5175],[138.068,-5.5176],[138.0759,-5.5205],[138.0842,-5.5253],[138.0841,-5.531],[138.0737,-5.5529],[138.0649,-5.5562],[138.0593,-5.5631],[138.0537,-5.5769],[138.0514,-5.5767],[138.0478,-5.5944],[138.0449,-5.6028],[138.0432,-5.62],[138.0453,-5.6316],[138.0452,-5.6365],[138.0481,-5.6445],[138.0468,-5.6486],[138.0504,-5.6558],[138.0495,-5.6664],[138.0504,-5.6759],[138.0534,-5.681],[138.0539,-5.6879],[138.0576,-5.6962],[138.0665,-5.7034],[138.0641,-5.709],[138.0639,-5.7175],[138.0682,-5.728],[138.0727,-5.7313],[138.0756,-5.737],[138.0887,-5.7449],[138.0898,-5.7414],[138.0958,-5.7331],[138.1242,-5.7231],[138.1303,-5.7197],[138.1408,-5.7187],[138.1517,-5.7193],[138.1653,-5.7218],[138.1705,-5.7246],[138.174,-5.7286],[138.1761,-5.7392],[138.1748,-5.744],[138.1594,-5.7536],[138.1561,-5.7672],[138.1564,-5.7756],[138.1599,-5.7926],[138.1624,-5.798],[138.1629,-5.8036],[138.1659,-5.8098],[138.1746,-5.8193],[138.1794,-5.8215],[138.1913,-5.8246],[138.1988,-5.8252],[138.2187,-5.825],[138.2308,-5.8241],[138.2332,-5.826],[138.2435,-5.8275],[138.2725,-5.8371],[138.2781,-5.8415],[138.2804,-5.8483],[138.2791,-5.859],[138.2766,-5.8619],[138.2605,-5.864],[138.2563,-5.8673],[138.2521,-5.8756],[138.2503,-5.8897],[138.2506,-5.9079],[138.2532,-5.9199],[138.2556,-5.9242],[138.2713,-5.9384],[138.2795,-5.9427],[138.2812,-5.9496],[138.2854,-5.954],[138.291,-5.9642],[138.3019,-5.9802],[138.3139,-6.0027],[138.3204,-6.0203],[138.3309,-6.0422],[138.3426,-6.0646],[138.3493,-6.0724],[138.3479,-6.0797],[138.3494,-6.0895],[138.3561,-6.1036],[138.366,-6.1205],[138.3724,-6.1281],[138.3826,-6.1456],[138.3881,-6.1576],[138.3931,-6.163],[138.3951,-6.1706],[138.3876,-6.176],[138.3842,-6.1822],[138.3829,-6.1951],[138.3851,-6.2075],[138.3907,-6.2302],[138.3977,-6.2507],[138.4017,-6.2558],[138.4024,-6.2662],[138.4107,-6.2937],[138.4168,-6.3034],[138.4314,-6.3226],[138.427,-6.3309],[138.4205,-6.3398],[138.4217,-6.3462],[138.4312,-6.3615],[138.4475,-6.3769],[138.4618,-6.3921],[138.4716,-6.4001],[138.4742,-6.4033],[138.4865,-6.4101],[138.4893,-6.4162],[138.4941,-6.4208],[138.5175,-6.4385],[138.5185,-6.4403],[138.5311,-6.4494],[138.5343,-6.4537],[138.5433,-6.4607],[138.5552,-6.4725],[138.5734,-6.4879],[138.5759,-6.4884],[138.5797,-6.4943],[138.5959,-6.5118],[138.5972,-6.5122],[138.6124,-6.5324],[138.6177,-6.5384],[138.6292,-6.555],[138.6373,-6.5638],[138.6414,-6.5668]]]}},{"type":"Feature","properties":{"mhid":"1332:505","alt_name":"KABUPATEN PEGUNUNGAN BINTANG","latitude":-4.52167,"longitude":140.29541,"sample_value":895},"geometry":{"type":"MultiLineString","coordinates":[[[140.9997,-5.2947],[141,-5.2829],[141,-5.1682],[141,-5.0832],[141,-4.9921],[141,-4.9111],[141,-4.7923],[141,-4.6442],[141,-4.5143],[141,-4.3722],[141,-4.2051],[141,-4.0838],[141,-3.9315],[140.9996,-3.9312]]]}},{"type":"Feature","properties":{"mhid":"1332:507","alt_name":"KABUPATEN SARMI","latitude":-2.41667,"longitude":139.08333,"sample_value":271},"geometry":{"type":"MultiLineString","coordinates":[[[139.5144,-2.1338],[139.5139,-2.128],[139.5082,-2.125],[139.5061,-2.1271],[139.507,-2.1328],[139.5128,-2.1392],[139.5144,-2.1338]],[[139.4733,-2.1236],[139.4787,-2.1206],[139.4783,-2.1147],[139.4741,-2.1143],[139.4714,-2.1212],[139.4733,-2.1236]],[[139.4585,-2.1198],[139.4604,-2.1135],[139.4546,-2.1136],[139.4529,-2.1192],[139.4585,-2.1198]],[[139.2473,-2.0044],[139.2471,-2.015],[139.2511,-2.0149],[139.2532,-2.0073],[139.2473,-2.0044]],[[139.1358,-1.9995],[139.132,-2.0097],[139.1367,-2.0111],[139.1393,-2.004],[139.1358,-1.9995]],[[139.0247,-1.9342],[139.0235,-1.933],[139.014,-1.936],[139.0108,-1.9339],[139.0049,-1.9346],[139.0063,-1.9393],[139.0131,-1.9438],[139.0196,-1.9425],[139.0247,-1.9392],[139.0247,-1.9342]],[[138.801,-1.6638],[138.7941,-1.6667],[138.7899,-1.6753],[138.7954,-1.686],[138.7959,-1.6911],[138.7938,-1.6976],[138.7943,-1.7023],[138.7986,-1.7064],[138.8009,-1.7013],[138.8,-1.6963],[138.8053,-1.6792],[138.8025,-1.673],[138.801,-1.6638]],[[139.9998,-2.3622],[139.9924,-2.3613],[139.9818,-2.3619],[139.9568,-2.3658],[139.9319,-2.3681],[139.9108,-2.3716],[139.8837,-2.3749],[139.8756,-2.3753],[139.844,-2.3747],[139.8217,-2.3749],[139.817,-2.3768],[139.8086,-2.3775],[139.8035,-2.3765],[139.798,-2.3727],[139.789,-2.3688],[139.7747,-2.3643],[139.7668,-2.3628],[139.7492,-2.3558],[139.7163,-2.3389],[139.7049,-2.3326],[139.6888,-2.3193],[139.6791,-2.3133],[139.6633,-2.302],[139.6394,-2.2882],[139.629,-2.2873],[139.6199,-2.2852],[139.6163,-2.2859],[139.6131,-2.2825],[139.5969,-2.278],[139.581,-2.2717],[139.5621,-2.2613],[139.5358,-2.2485],[139.5284,-2.2441],[139.5155,-2.2345],[139.4932,-2.2214],[139.477,-2.2101],[139.4622,-2.199],[139.4475,-2.1896],[139.4341,-2.1824],[139.3833,-2.1582],[139.3653,-2.1487],[139.3576,-2.1456],[139.3321,-2.1388],[139.3085,-2.1321],[139.279,-2.1219],[139.25,-2.11],[139.2467,-2.1072],[139.2306,-2.0976],[139.2196,-2.09],[139.1996,-2.0775],[139.1907,-2.0711],[139.1772,-2.0645],[139.1671,-2.0609],[139.1532,-2.0541],[139.1461,-2.0499],[139.1328,-2.0397],[139.125,-2.0316],[139.1144,-2.0278],[139.1013,-2.0246],[139.0652,-2.0124],[139.044,-2.0035],[139.0309,-1.9974],[139.0007,-1.9761],[138.9922,-1.9728],[138.9746,-1.9697],[138.9717,-1.9709],[138.9531,-1.9664],[138.943,-1.9632],[138.9307,-1.9602],[138.9268,-1.9605],[138.9207,-1.9578],[138.9054,-1.9542],[138.9049,-1.9573],[138.8965,-1.9552],[138.8867,-1.9601],[138.8768,-1.9693],[138.8718,-1.9691],[138.8639,-1.9657],[138.8476,-1.9564],[138.8358,-1.9486],[138.8214,-1.9413],[138.7986,-1.9283],[138.7884,-1.9181],[138.7857,-1.9119],[138.7808,-1.9073],[138.7783,-1.9001],[138.7753,-1.8957],[138.7661,-1.8908],[138.7574,-1.8806],[138.7561,-1.8748],[138.7507,-1.8698],[138.7475,-1.8647],[138.7486,-1.8567],[138.7537,-1.8554],[138.7517,-1.8473],[138.7477,-1.853],[138.7381,-1.8535],[138.7219,-1.8429],[138.7156,-1.8375],[138.7019,-1.824],[138.6818,-1.803],[138.6633,-1.7921],[138.649,-1.7859],[138.6296,-1.7805],[138.5871,-1.7718],[138.5611,-1.7674],[138.5328,-1.7617],[138.4904,-1.7526],[138.4559,-1.7439],[138.4219,-1.7338],[138.4207,-1.7339],[138.373,-1.7202],[138.3445,-1.7108],[138.3204,-1.7015],[138.2993,-1.6928],[138.2731,-1.6811],[138.262,-1.6749],[138.2474,-1.6684],[138.2348,-1.661],[138.2088,-1.6486],[138.1779,-1.6321],[138.1704,-1.6309]],[[138.7323,-1.5916],[138.7283,-1.5874],[138.7175,-1.58],[138.7093,-1.5965],[138.7093,-1.6054],[138.7161,-1.6125],[138.7183,-1.6184],[138.7253,-1.6217],[138.7358,-1.6243],[138.748,-1.6247],[138.7503,-1.6196],[138.7463,-1.6169],[138.7458,-1.607],[138.7398,-1.5967],[138.7323,-1.5916]]]}},{"type":"Feature","properties":{"mhid":"1332:508","alt_name":"KABUPATEN KEEROM","latitude":-3.3,"longitude":140.61667,"sample_value":655},"geometry":{"type":"MultiLineString","coordinates":[[[140.9996,-3.9312],[140.9985,-3.9139],[141,-3.914],[141,-3.7555],[141,-3.6582],[141,-3.573],[141,-3.4276],[141,-3.3068],[141,-3.2348],[141,-3.1256],[141,-3.0208],[141,-2.9133],[141,-2.8289]]]}},{"type":"Feature","properties":{"mhid":"1332:509","alt_name":"KABUPATEN WAROPEN","latitude":-2.286,"longitude":137.01837,"sample_value":767},"geometry":{"type":"MultiLineString","coordinates":[[[136.7602,-2.2548],[136.7573,-2.2492],[136.7534,-2.2478],[136.7505,-2.2522],[136.7539,-2.2549],[136.7602,-2.2548]],[[136.2697,-2.2229],[136.2688,-2.2202],[136.2577,-2.216],[136.2518,-2.2234],[136.249,-2.2302],[136.2553,-2.2331],[136.2664,-2.2287],[136.2697,-2.2229]],[[136.807,-2.1763],[136.8046,-2.1784],[136.8133,-2.1859],[136.8168,-2.1931],[136.8162,-2.2034],[136.8171,-2.2083],[136.8138,-2.2154],[136.8136,-2.2212],[136.8076,-2.2184],[136.8013,-2.2205],[136.7933,-2.2109],[136.7918,-2.2146],[136.7853,-2.221],[136.7798,-2.23],[136.7747,-2.2319],[136.772,-2.2297],[136.7651,-2.2308],[136.7552,-2.2378],[136.7535,-2.2419],[136.7549,-2.247],[136.7601,-2.2497],[136.7616,-2.2556],[136.7569,-2.2578],[136.7545,-2.2627],[136.7471,-2.265],[136.7467,-2.2582],[136.7413,-2.2471],[136.7388,-2.2472],[136.7312,-2.2427],[136.7229,-2.2348],[136.7117,-2.2279],[136.7048,-2.2275],[136.7017,-2.2358],[136.6903,-2.2453],[136.6853,-2.247],[136.6828,-2.2522],[136.6741,-2.2581],[136.6733,-2.2611],[136.6662,-2.258],[136.6545,-2.257],[136.6475,-2.2516],[136.6447,-2.2472],[136.6372,-2.2465],[136.6336,-2.2513],[136.6286,-2.2477],[136.6235,-2.2471],[136.6147,-2.2507],[136.6102,-2.2487],[136.6059,-2.2531],[136.6001,-2.2529],[136.5957,-2.2453],[136.5956,-2.2376],[136.5867,-2.2375],[136.5826,-2.2357],[136.5791,-2.2295],[136.5759,-2.2189],[136.5769,-2.2144],[136.5807,-2.2108],[136.5801,-2.2068],[136.5835,-2.1996],[136.5895,-2.194],[136.588,-2.1901],[136.5795,-2.1921],[136.5775,-2.1959],[136.5723,-2.1996],[136.5713,-2.2058],[136.5615,-2.2081],[136.5548,-2.2116],[136.5469,-2.2187],[136.5442,-2.2234],[136.5385,-2.22],[136.5298,-2.2116],[136.5266,-2.2105],[136.5267,-2.2024],[136.5211,-2.2016],[136.5183,-2.191],[136.5128,-2.192],[136.5102,-2.1904],[136.5019,-2.1999],[136.4964,-2.1993],[136.4877,-2.2048],[136.48,-2.2042],[136.4729,-2.2081],[136.4708,-2.2069],[136.4611,-2.2092],[136.4586,-2.2132],[136.4489,-2.2072],[136.4414,-2.2052],[136.4316,-2.2055],[136.4253,-2.2044],[136.4178,-2.2072],[136.4133,-2.211],[136.4056,-2.2123],[136.4026,-2.2155],[136.3936,-2.219],[136.3898,-2.2254],[136.3823,-2.233],[136.3703,-2.2384],[136.3642,-2.2464],[136.3652,-2.2494],[136.3585,-2.2563],[136.3545,-2.2581],[136.3442,-2.2597],[136.3398,-2.2632],[136.3392,-2.2703],[136.3359,-2.2768],[136.3336,-2.2777],[136.3329,-2.2881],[136.3368,-2.2947],[136.3405,-2.325],[136.3402,-2.3384],[136.3415,-2.3413],[136.3392,-2.3574],[136.3373,-2.3628],[136.3422,-2.3683],[136.3423,-2.373],[136.3345,-2.3754],[136.3283,-2.3815],[136.3213,-2.3929],[136.3154,-2.3992],[136.3043,-2.403],[136.2987,-2.4064],[136.2959,-2.4112],[136.2972,-2.4173],[136.2957,-2.4252],[136.2916,-2.4374],[136.2857,-2.4488],[136.2878,-2.4518],[136.2795,-2.4629],[136.2796,-2.4709],[136.2878,-2.4739],[136.2894,-2.4798],[136.2888,-2.4847],[136.2822,-2.4788],[136.2828,-2.4906],[136.2821,-2.5001],[136.2791,-2.5145],[136.2718,-2.5334],[136.2662,-2.5453],[136.26,-2.5568],[136.26,-2.5593],[136.2541,-2.5619],[136.2424,-2.5852],[136.2373,-2.5934],[136.2244,-2.6112],[136.2204,-2.6139],[136.2147,-2.6206],[136.2039,-2.6267],[136.1967,-2.6269],[136.1951,-2.6304],[136.1895,-2.6326],[136.1875,-2.6372],[136.1815,-2.6401],[136.1768,-2.6363],[136.1701,-2.6404],[136.1577,-2.6436],[136.1533,-2.6472],[136.1466,-2.6502],[136.1384,-2.6449],[136.1351,-2.6457],[136.1326,-2.6506],[136.126,-2.6574],[136.1234,-2.6617],[136.1089,-2.6685],[136.0959,-2.6689],[136.0838,-2.6715],[136.0643,-2.672],[136.0582,-2.6682],[136.0554,-2.6786],[136.0489,-2.6808],[136.0463,-2.6874],[136.0378,-2.6953],[136.0286,-2.6916],[136.0179,-2.6928],[136.0163,-2.6991],[136.0103,-2.7052],[136.0091,-2.7085],[136.0137,-2.7159],[136.0128,-2.7178]]]}},{"type":"Feature","properties":{"mhid":"1332:510","alt_name":"KABUPATEN SUPIORI","latitude":-0.73881,"longitude":135.61111,"sample_value":407},"geometry":{"type":"MultiLineString","coordinates":[[[135.5006,-0.9423],[135.4989,-0.9397],[135.4926,-0.9422],[135.4964,-0.9531],[135.4961,-0.962],[135.4984,-0.9654],[135.5083,-0.9678],[135.5124,-0.9613],[135.5061,-0.9581],[135.5027,-0.9519],[135.5006,-0.9423]],[[135.5082,-0.8313],[135.5053,-0.8283],[135.5016,-0.8333],[135.506,-0.8354],[135.5082,-0.8313]],[[135.5263,-0.6423],[135.5241,-0.6509],[135.5273,-0.6556],[135.5317,-0.6536],[135.5342,-0.6491],[135.5299,-0.6436],[135.5263,-0.6423]],[[135.4858,-0.6285],[135.4815,-0.6298],[135.4866,-0.6388],[135.4898,-0.6341],[135.4858,-0.6285]],[[135.8036,-0.6868],[135.7994,-0.6932],[135.7989,-0.6978],[135.7946,-0.7026],[135.7886,-0.7065],[135.7888,-0.711],[135.779,-0.7215],[135.7707,-0.7215],[135.7668,-0.7228],[135.764,-0.7314],[135.758,-0.7375],[135.7475,-0.7401],[135.7369,-0.7327],[135.7335,-0.7282],[135.7327,-0.723],[135.7284,-0.7178],[135.7283,-0.7126],[135.7187,-0.7087],[135.7142,-0.7085],[135.7099,-0.7118],[135.7033,-0.7123],[135.7009,-0.719],[135.6957,-0.723],[135.688,-0.7217],[135.6829,-0.7174],[135.6803,-0.7129],[135.6839,-0.7056],[135.6798,-0.6958],[135.6804,-0.693],[135.6741,-0.683],[135.6689,-0.6787],[135.6603,-0.6783],[135.6599,-0.6704],[135.6557,-0.6678],[135.6426,-0.6625],[135.637,-0.6633],[135.6329,-0.6663],[135.6315,-0.6721],[135.6212,-0.6697],[135.6189,-0.6745],[135.6148,-0.6771],[135.6159,-0.6813],[135.6017,-0.6936],[135.6008,-0.6972],[135.5953,-0.7027],[135.5937,-0.7008],[135.5948,-0.6928],[135.5985,-0.6879],[135.5987,-0.681],[135.596,-0.6769],[135.5969,-0.6664],[135.5837,-0.6633],[135.5794,-0.6656],[135.5661,-0.664],[135.5589,-0.6573],[135.5512,-0.6586],[135.5476,-0.6642],[135.5377,-0.6671],[135.5348,-0.6745],[135.5318,-0.6717],[135.5313,-0.6654],[135.5257,-0.662],[135.5169,-0.6607],[135.5121,-0.6629],[135.5106,-0.6595],[135.5045,-0.6543],[135.4957,-0.652],[135.4895,-0.6543],[135.4898,-0.6587],[135.4823,-0.6621],[135.4729,-0.6529],[135.4634,-0.6463],[135.4597,-0.646],[135.4467,-0.6582],[135.4433,-0.6532],[135.4487,-0.6509],[135.4504,-0.6449],[135.4472,-0.6414],[135.441,-0.6447],[135.4338,-0.6429],[135.4291,-0.6506],[135.4256,-0.65],[135.4175,-0.653],[135.4107,-0.6504],[135.4104,-0.6461],[135.3998,-0.6356],[135.3942,-0.6217],[135.3849,-0.621],[135.375,-0.628],[135.369,-0.6282],[135.3639,-0.6303],[135.3616,-0.639],[135.3633,-0.6451],[135.3717,-0.6555],[135.3727,-0.6665],[135.3787,-0.6719],[135.3874,-0.6756],[135.3856,-0.682],[135.3939,-0.6916],[135.3911,-0.6976],[135.3849,-0.6993],[135.3929,-0.7154],[135.3937,-0.7229],[135.4041,-0.7281],[135.4077,-0.7382],[135.4121,-0.7435],[135.4159,-0.7442],[135.4222,-0.7545],[135.4274,-0.758],[135.4282,-0.7611],[135.4347,-0.7679],[135.4449,-0.7717],[135.4537,-0.7831],[135.4567,-0.7817],[135.4646,-0.7863],[135.4651,-0.7908],[135.4687,-0.7945],[135.4741,-0.796],[135.4782,-0.8002],[135.4902,-0.8052],[135.4886,-0.809],[135.4826,-0.812],[135.4842,-0.8156],[135.4896,-0.8159],[135.5003,-0.8245],[135.5105,-0.829],[135.5072,-0.835],[135.5083,-0.8457],[135.5137,-0.8531],[135.5182,-0.8554],[135.5234,-0.8553],[135.5319,-0.8585],[135.5331,-0.8636],[135.5368,-0.8664],[135.5372,-0.8714],[135.5422,-0.8693],[135.5413,-0.8624],[135.5451,-0.8512],[135.5438,-0.842],[135.5419,-0.8384],[135.5377,-0.838],[135.5278,-0.8315],[135.5235,-0.8227],[135.5202,-0.8187],[135.5223,-0.8155],[135.5235,-0.8066],[135.5198,-0.8023],[135.5185,-0.7967],[135.5129,-0.7894],[135.5044,-0.7883],[135.4983,-0.8032],[135.4995,-0.8103],[135.4919,-0.8031],[135.4897,-0.7973],[135.4917,-0.7927],[135.4841,-0.7874],[135.4783,-0.7799],[135.4814,-0.776],[135.4803,-0.7731],[135.4716,-0.7645],[135.4712,-0.76],[135.4676,-0.7579],[135.4677,-0.7491],[135.4704,-0.7469],[135.4777,-0.7451],[135.4829,-0.7486],[135.4812,-0.7568],[135.4817,-0.7612],[135.4862,-0.7691],[135.4995,-0.7727],[135.5028,-0.7765],[135.5092,-0.7796],[135.5289,-0.7829],[135.5334,-0.7898],[135.5386,-0.7936],[135.5399,-0.7983],[135.5437,-0.8018],[135.5521,-0.802],[135.5559,-0.8043],[135.5587,-0.8118],[135.5641,-0.816],[135.5652,-0.8218],[135.5716,-0.8268],[135.5727,-0.8298],[135.5781,-0.8335],[135.5924,-0.8399],[135.5943,-0.8426],[135.6058,-0.8508],[135.6119,-0.8536],[135.6196,-0.8672],[135.6257,-0.8763],[135.6383,-0.8812],[135.6428,-0.8871],[135.6508,-0.8793],[135.6554,-0.8723],[135.6672,-0.8624],[135.6726,-0.849],[135.6763,-0.8478],[135.6795,-0.8406],[135.6839,-0.8401],[135.6862,-0.8295],[135.6912,-0.8272],[135.6977,-0.8174],[135.6989,-0.8067],[135.7012,-0.7997],[135.7067,-0.7989],[135.7123,-0.789],[135.7206,-0.7842],[135.7229,-0.7857],[135.7235,-0.7933],[135.7206,-0.797],[135.7087,-0.8032]],[[135.2782,-0.4069],[135.2781,-0.4044],[135.2718,-0.3936],[135.2688,-0.3921],[135.2665,-0.3994],[135.2635,-0.4019],[135.2622,-0.4086],[135.2706,-0.4102],[135.2782,-0.4069]],[[134.3026,0.8086],[134.3005,0.8134],[134.3008,0.8203],[134.3063,0.8375],[134.3039,0.8444],[134.2988,0.8348],[134.2964,0.8241],[134.297,0.8048],[134.3005,0.8044],[134.3026,0.8086]],[[134.3318,0.9095],[134.3412,0.9182],[134.3377,0.9302],[134.3356,0.9216],[134.3294,0.9199],[134.3246,0.9161],[134.3229,0.9071],[134.3263,0.9051],[134.3318,0.9095]]]}},{"type":"Feature","properties":{"mhid":"1332:511","alt_name":"KABUPATEN MAMBERAMO RAYA","latitude":-2.23561,"longitude":137.78229,"sample_value":240},"geometry":{"type":"MultiLineString","coordinates":[[[137.1741,-2.0033],[137.1718,-2.0048],[137.1729,-2.0106],[137.1792,-2.0127],[137.1879,-2.0195],[137.1977,-2.0181],[137.1965,-2.0134],[137.1877,-2.0098],[137.1772,-2.0036],[137.1741,-2.0033]],[[137.2036,-1.9846],[137.1985,-1.9802],[137.1961,-1.9841],[137.2036,-1.9846]],[[137.2088,-1.9849],[137.2142,-1.9812],[137.2076,-1.9795],[137.1986,-1.9706],[137.1958,-1.9744],[137.2007,-1.9772],[137.2088,-1.9849]],[[137.1923,-1.9685],[137.1934,-1.9652],[137.1879,-1.9632],[137.1873,-1.9684],[137.1923,-1.9685]],[[137.0895,-1.8565],[137.0871,-1.8718],[137.0883,-1.8882],[137.0924,-1.8941],[137.097,-1.8905],[137.1052,-1.8809],[137.1107,-1.8783],[137.1118,-1.8751],[137.1045,-1.8703],[137.1003,-1.8619],[137.0975,-1.8594],[137.0895,-1.8565]],[[138.1704,-1.6309],[138.153,-1.6291],[138.1401,-1.6269],[138.1246,-1.6234],[138.0992,-1.6154],[138.0824,-1.6084],[138.0676,-1.601],[138.0492,-1.5897],[138.0238,-1.5712],[138.0119,-1.5606],[138.0041,-1.5496],[137.9942,-1.5379],[137.9905,-1.5319],[137.9868,-1.5297],[137.9803,-1.5291],[137.9765,-1.5323],[137.9718,-1.5321],[137.9676,-1.5278],[137.966,-1.5155],[137.953,-1.5061],[137.9539,-1.4983],[137.95,-1.4893],[137.9433,-1.4777],[137.9375,-1.47],[137.9319,-1.458],[137.9211,-1.4609],[137.9091,-1.4693],[137.9018,-1.4719],[137.8964,-1.4709],[137.8903,-1.4641],[137.8629,-1.4647],[137.8601,-1.4636],[137.8484,-1.4643],[137.8389,-1.462],[137.8159,-1.4672],[137.811,-1.4667],[137.7975,-1.4698],[137.7904,-1.4764],[137.7795,-1.4791],[137.7769,-1.482],[137.7724,-1.4821],[137.7645,-1.4774],[137.7578,-1.4779],[137.7501,-1.4765],[137.7436,-1.4769],[137.7407,-1.4792],[137.743,-1.4935],[137.7382,-1.4978],[137.732,-1.4942],[137.7242,-1.4943],[137.7043,-1.4986],[137.6814,-1.5049],[137.6696,-1.5113],[137.6576,-1.515],[137.6462,-1.5215],[137.6419,-1.5286],[137.6369,-1.5293],[137.6269,-1.5346],[137.6109,-1.5451],[137.5941,-1.5511],[137.5878,-1.5561],[137.5813,-1.5548],[137.5761,-1.5586],[137.5366,-1.5733],[137.5313,-1.5781],[137.5049,-1.5883],[137.4849,-1.5941],[137.4767,-1.5976],[137.4761,-1.6033],[137.4678,-1.6088],[137.4626,-1.6139],[137.4496,-1.6213],[137.4462,-1.6269],[137.4296,-1.634],[137.4225,-1.6394],[137.41,-1.6465],[137.403,-1.6515],[137.4026,-1.655],[137.3969,-1.6581],[137.3732,-1.6686],[137.3636,-1.6756],[137.3434,-1.6832],[137.3346,-1.6874],[137.33,-1.6917],[137.329,-1.6976],[137.3228,-1.702],[137.3157,-1.7008],[137.3102,-1.698],[137.3017,-1.7062],[137.2858,-1.7153],[137.2692,-1.7255],[137.2467,-1.7358],[137.2426,-1.7414],[137.2463,-1.7465],[137.2416,-1.7514],[137.2334,-1.7504],[137.2168,-1.7462],[137.2036,-1.7468],[137.1885,-1.7523],[137.1651,-1.7633],[137.1545,-1.7699],[137.1534,-1.7745],[137.149,-1.7767],[137.1433,-1.7758],[137.1403,-1.772],[137.1363,-1.7716],[137.1245,-1.7757],[137.1163,-1.7829],[137.1023,-1.7931],[137.0975,-1.8002],[137.0948,-1.8072],[137.092,-1.8276],[137.0913,-1.8418],[137.0892,-1.8516],[137.0912,-1.8553],[137.0989,-1.859],[137.1071,-1.867],[137.1072,-1.8705],[137.1162,-1.8752],[137.1221,-1.8802],[137.1239,-1.888],[137.1288,-1.8966],[137.1335,-1.8974],[137.1372,-1.8939],[137.1415,-1.8961],[137.1474,-1.9059],[137.1498,-1.9153],[137.1561,-1.9318],[137.1591,-1.9303],[137.1708,-1.9344],[137.1733,-1.9387],[137.1776,-1.9396],[137.1815,-1.9363],[137.192,-1.9458],[137.1932,-1.9598],[137.2033,-1.9663],[137.2022,-1.9711],[137.2086,-1.9777],[137.2155,-1.9788],[137.2164,-1.9825],[137.2117,-1.9884],[137.207,-1.9904],[137.2029,-1.988],[137.1947,-1.9874],[137.1897,-2.0005],[137.1997,-2.0087],[137.2038,-2.0142],[137.2058,-2.0196],[137.2116,-2.0248],[137.2122,-2.0325],[137.2163,-2.039],[137.2267,-2.0424],[137.2305,-2.0419],[137.2315,-2.0486],[137.2267,-2.0557],[137.2196,-2.0597],[137.2057,-2.0641],[137.2051,-2.0683],[137.2017,-2.0702],[137.1954,-2.0667],[137.1937,-2.0711],[137.1871,-2.0791],[137.1782,-2.081],[137.1648,-2.0927],[137.1604,-2.0938],[137.1545,-2.1031],[137.1504,-2.1026],[137.1417,-2.0981],[137.1321,-2.1009],[137.1288,-2.0996],[137.1219,-2.1018],[137.1198,-2.108],[137.114,-2.1083],[137.1087,-2.111],[137.0982,-2.1103],[137.092,-2.1077],[137.092,-2.1032],[137.0856,-2.1006],[137.0769,-2.1035],[137.071,-2.1029],[137.0667,-2.0999],[137.058,-2.0984],[137.0558,-2.1025],[137.0488,-2.1026],[137.0443,-2.1043],[137.039,-2.1135],[137.0253,-2.1155],[137.0212,-2.118],[137.0147,-2.1183],[137.0056,-2.1258],[137.0001,-2.1291],[136.9913,-2.1281],[136.9829,-2.1298],[136.9769,-2.1327],[136.9624,-2.1286],[136.9587,-2.1255],[136.9514,-2.127],[136.9423,-2.1217],[136.938,-2.1293],[136.9411,-2.1321],[136.9424,-2.1406],[136.9398,-2.1455],[136.9312,-2.1516],[136.9254,-2.1504],[136.9183,-2.1629],[136.9156,-2.1652],[136.9154,-2.1699],[136.9119,-2.1742],[136.9122,-2.1778],[136.9081,-2.1798],[136.9041,-2.1773],[136.8916,-2.1765],[136.8908,-2.1737],[136.884,-2.1771],[136.8745,-2.1756],[136.8648,-2.1839],[136.8627,-2.1817],[136.856,-2.1836],[136.8528,-2.1898],[136.8456,-2.1904],[136.8418,-2.1956],[136.8361,-2.1948],[136.8348,-2.1826],[136.8375,-2.1747],[136.8327,-2.1733],[136.8292,-2.1761],[136.8223,-2.1769],[136.8116,-2.1744],[136.807,-2.1763]]]}},{"type":"Feature","properties":{"mhid":"1332:512","alt_name":"KABUPATEN NDUGA","latitude":-4.45093,"longitude":138.10089,"sample_value":284},"geometry":{"type":"MultiLineString","coordinates":[]}},{"type":"Feature","properties":{"mhid":"1332:520","alt_name":"KOTA JAYAPURA","latitude":-2.64647,"longitude":140.77779,"sample_value":996},"geometry":{"type":"MultiLineString","coordinates":[[[141,-2.8289],[140.9999,-2.713],[141,-2.6043],[140.9909,-2.6047],[140.9724,-2.6077],[140.9616,-2.6067],[140.9578,-2.6102],[140.9512,-2.6126],[140.9352,-2.6152],[140.9266,-2.6107],[140.9218,-2.6157],[140.9225,-2.6219],[140.9152,-2.6235],[140.9084,-2.6202],[140.8871,-2.6152],[140.8718,-2.6141],[140.8518,-2.6113],[140.8147,-2.607],[140.8024,-2.6041],[140.7964,-2.5983],[140.7913,-2.596],[140.7859,-2.6018],[140.7832,-2.6014],[140.779,-2.6082],[140.7847,-2.6078],[140.7881,-2.6111],[140.7876,-2.6191],[140.784,-2.6236],[140.7744,-2.6283],[140.7615,-2.6284],[140.7542,-2.6266],[140.7366,-2.6188],[140.724,-2.6094],[140.7126,-2.597],[140.7114,-2.6027],[140.7196,-2.6062],[140.7241,-2.6128],[140.7279,-2.6137],[140.7328,-2.6188],[140.7375,-2.6274],[140.7348,-2.6326],[140.7267,-2.6337],[140.7197,-2.6291],[140.7133,-2.63],[140.7,-2.6258],[140.6973,-2.6221],[140.7007,-2.6187],[140.6912,-2.617],[140.687,-2.6145],[140.6906,-2.6052],[140.6944,-2.6011],[140.6897,-2.5949],[140.6936,-2.5906],[140.701,-2.5866],[140.6998,-2.5791],[140.7047,-2.579],[140.7038,-2.5862],[140.7069,-2.5908],[140.7132,-2.5899],[140.7091,-2.5775],[140.7094,-2.5712],[140.7164,-2.5637],[140.7201,-2.5565],[140.7178,-2.5533],[140.7183,-2.5474],[140.7134,-2.5442],[140.7077,-2.5439],[140.7067,-2.5387],[140.7116,-2.5391],[140.72,-2.5343],[140.7252,-2.535],[140.7251,-2.5287],[140.7279,-2.5237],[140.7325,-2.5249],[140.7385,-2.5311],[140.7376,-2.5346],[140.7425,-2.5367],[140.7472,-2.5339],[140.7417,-2.5276],[140.7422,-2.5221],[140.7382,-2.5134],[140.7332,-2.5095],[140.7324,-2.5062],[140.7267,-2.4982],[140.7205,-2.4957],[140.7102,-2.487],[140.704,-2.4836],[140.7001,-2.484],[140.694,-2.4782],[140.6877,-2.4803],[140.6834,-2.4781],[140.6775,-2.4816],[140.6733,-2.48],[140.6725,-2.476],[140.6627,-2.474],[140.656,-2.4771],[140.6528,-2.4762]]]}},{"type":"Feature","properties":{"mhid":"7414","alt_name":"KABUPATEN BUTON TENGAH","latitude":-5.31667,"longitude":122.33333,"sample_value":875},"geometry":{"type":"MultiLineString","coordinates":[[[122.0493,-5.4899],[122.0464,-5.4908],[122.0355,-5.501],[122.0281,-5.5046],[122.021,-5.5059],[122.0163,-5.5084],[122.012,-5.5144],[122.0053,-5.5166],[122,-5.52],[122.0034,-5.5227],[122.0157,-5.5193],[122.0292,-5.5189],[122.0385,-5.5107],[122.0473,-5.506],[122.0566,-5.4993],[122.0614,-5.4933],[122.0493,-5.4899]],[[122.0838,-5.4733],[122.0744,-5.4732],[122.0734,-5.4759],[122.0776,-5.487],[122.0816,-5.4924],[122.0867,-5.4933],[122.092,-5.4865],[122.0874,-5.4745],[122.0838,-5.4733]],[[121.9531,-5.4125],[121.9423,-5.4123],[121.9393,-5.419],[121.9401,-5.4255],[121.9327,-5.4289],[121.9404,-5.4377],[121.9466,-5.455],[121.9442,-5.4606],[121.9469,-5.4725]],[[121.9469,-5.4725],[121.9469,-5.4725]],[[121.9469,-5.4725],[121.9472,-5.4737],[121.945,-5.4785],[121.9466,-5.4839],[121.9517,-5.4869],[121.9536,-5.4821],[121.9636,-5.4768],[121.9659,-5.478],[121.9725,-5.4758],[121.9774,-5.4764],[121.9893,-5.473],[121.9951,-5.473],[121.9955,-5.4686],[121.9994,-5.4663],[122.0024,-5.4688],[122.0101,-5.4673],[122.0111,-5.4722],[122.0151,-5.4756],[122.0212,-5.4737],[122.0305,-5.4746],[122.0339,-5.4729],[122.0392,-5.4663],[122.0472,-5.46],[122.0449,-5.4489],[122.043,-5.4346],[122.0458,-5.4288],[122.0433,-5.4248],[122.0458,-5.4221],[122.044,-5.4147],[122.0487,-5.4139],[121.9536,-5.4125]],[[121.9536,-5.4125],[121.9531,-5.4125]],[[122.487,-5.225],[122.4771,-5.2262],[122.4769,-5.2263]],[[122.4769,-5.2263],[122.4769,-5.2263]],[[122.4769,-5.2263],[122.4633,-5.2325],[122.4495,-5.2347],[122.419,-5.2169]],[[122.419,-5.2169],[122.419,-5.2169]],[[122.419,-5.2169],[122.4187,-5.2167],[122.4074,-5.2098],[122.4075,-5.1916],[122.3773,-5.1915],[122.3765,-5.1893]],[[122.3765,-5.1893],[122.3765,-5.1893]],[[122.3765,-5.1893],[122.3753,-5.1858]],[[122.3753,-5.1858],[122.3753,-5.1858]],[[122.3753,-5.1858],[122.3748,-5.1845],[122.3698,-5.181]],[[122.3698,-5.181],[122.3698,-5.181]],[[122.3698,-5.181],[122.3677,-5.1795],[122.3659,-5.1791]],[[122.3659,-5.1791],[122.3618,-5.1782]],[[122.3618,-5.1782],[122.3618,-5.1782]],[[122.3618,-5.1782],[122.3617,-5.1782],[122.3633,-5.1735],[122.3579,-5.1688],[122.3575,-5.1631],[122.3514,-5.1522],[122.3447,-5.1505],[122.3421,-5.1459]],[[122.3421,-5.1459],[122.342,-5.1456],[122.3412,-5.1461]],[[122.3412,-5.1461],[122.3412,-5.1461]],[[122.3412,-5.1461],[122.3375,-5.1482],[122.3282,-5.1466]],[[122.3282,-5.1466],[122.3282,-5.1466]],[[122.3282,-5.1466],[122.3246,-5.146],[122.3239,-5.1462]],[[122.3239,-5.1462],[122.3239,-5.1462]],[[122.3239,-5.1462],[122.3211,-5.1468],[122.3206,-5.1458]],[[122.3206,-5.1458],[122.3191,-5.1428],[122.3166,-5.1432]],[[122.3166,-5.1432],[122.3166,-5.1432]],[[122.3166,-5.1432],[122.3116,-5.144],[122.3072,-5.151],[122.3106,-5.1526],[122.3124,-5.1598],[122.3103,-5.1656],[122.3153,-5.1712],[122.3156,-5.1874],[122.309,-5.195],[122.3039,-5.1969],[122.3064,-5.2072],[122.3061,-5.2163],[122.3153,-5.2277],[122.3158,-5.2383],[122.3071,-5.2549],[122.3065,-5.2573],[122.2921,-5.2793],[122.2825,-5.2899],[122.276,-5.2954],[122.2697,-5.31],[122.2662,-5.3267],[122.2661,-5.3554],[122.2697,-5.3637],[122.2667,-5.3736],[122.2683,-5.3827],[122.2733,-5.3889],[122.2794,-5.3937],[122.2845,-5.395],[122.291,-5.3943],[122.2975,-5.3962],[122.3171,-5.396],[122.3247,-5.3967],[122.3358,-5.3956],[122.3428,-5.3935],[122.361,-5.3907],[122.3651,-5.3889],[122.3714,-5.3822],[122.3759,-5.3799],[122.3817,-5.3678],[122.3823,-5.3608],[122.3733,-5.3503],[122.3703,-5.3408],[122.3729,-5.3317],[122.3779,-5.3238],[122.385,-5.3207],[122.3908,-5.3209],[122.3968,-5.3133],[122.4044,-5.3165],[122.4298,-5.3135],[122.4441,-5.3135],[122.443,-5.3164],[122.4237,-5.3203],[122.4198,-5.3222],[122.4092,-5.3233],[122.3901,-5.3273],[122.3854,-5.3276],[122.3828,-5.3334],[122.3837,-5.34],[122.3897,-5.3497],[122.393,-5.3611],[122.3949,-5.3723],[122.3979,-5.377],[122.398,-5.3846],[122.4045,-5.3953],[122.4087,-5.3997],[122.4157,-5.4025],[122.427,-5.401],[122.4307,-5.403],[122.4358,-5.4011],[122.4457,-5.4064],[122.4507,-5.4032],[122.463,-5.4032],[122.4699,-5.3982],[122.4685,-5.3942],[122.4722,-5.3903],[122.4737,-5.3858],[122.4711,-5.3726],[122.467,-5.3658],[122.4702,-5.3609],[122.4732,-5.366],[122.478,-5.3662],[122.4827,-5.3737],[122.4864,-5.3664],[122.486,-5.3628],[122.4931,-5.3502],[122.4977,-5.3469],[122.4954,-5.3438],[122.4964,-5.3346],[122.4885,-5.3248],[122.4845,-5.3228],[122.4803,-5.3163],[122.4787,-5.3076],[122.4797,-5.2998],[122.4903,-5.2942],[122.5047,-5.2886],[122.5111,-5.2877],[122.5115,-5.2841],[122.5243,-5.2765],[122.5233,-5.2737],[122.5275,-5.268],[122.536,-5.261],[122.5412,-5.2631],[122.5414,-5.2674],[122.53,-5.279],[122.5311,-5.2823],[122.5241,-5.2945],[122.5249,-5.3009],[122.5216,-5.3099],[122.5217,-5.3149],[122.5321,-5.3202],[122.5387,-5.325],[122.5398,-5.3323],[122.536,-5.3409],[122.5309,-5.3646],[122.5277,-5.3704],[122.5245,-5.385],[122.5248,-5.3962],[122.5221,-5.4008],[122.5146,-5.4027],[122.5126,-5.4065],[122.5205,-5.4209],[122.5187,-5.4277],[122.5211,-5.4382],[122.5275,-5.4401],[122.5333,-5.4393],[122.5443,-5.4411],[122.5519,-5.4346],[122.556,-5.4251],[122.5659,-5.4112],[122.5707,-5.4122],[122.5836,-5.4248],[122.59,-5.4338],[122.5953,-5.4341],[122.5996,-5.4281],[122.5943,-5.422],[122.5937,-5.4156],[122.597,-5.4159],[122.6031,-5.407],[122.6022,-5.4024],[122.5976,-5.3991],[122.5929,-5.3889],[122.5927,-5.3714],[122.5947,-5.3643],[122.5995,-5.357],[122.6104,-5.3517],[122.6167,-5.3456],[122.6194,-5.3476],[122.6169,-5.3639],[122.6172,-5.3705],[122.6205,-5.3714],[122.6323,-5.3596],[122.6387,-5.3571],[122.641,-5.3535],[122.6413,-5.3395],[122.643,-5.3359],[122.6437,-5.3247],[122.6419,-5.3089],[122.6461,-5.2952],[122.6447,-5.2777],[122.6392,-5.2637],[122.6339,-5.2585],[122.6221,-5.25],[122.6031,-5.25],[122.5987,-5.2519],[122.581,-5.2557],[122.577,-5.2477],[122.5858,-5.24],[122.5925,-5.2303],[122.6026,-5.2237],[122.5682,-5.2279],[122.5614,-5.2278],[122.5512,-5.2108]],[[122.5512,-5.2108],[122.5512,-5.2108]],[[122.5512,-5.2108],[122.5509,-5.2102],[122.5401,-5.2041],[122.54,-5.2042]],[[122.54,-5.2042],[122.54,-5.2042]],[[122.54,-5.2042],[122.5377,-5.2064],[122.5309,-5.1981]],[[122.5309,-5.1981],[122.5309,-5.1981]],[[122.5309,-5.1981],[122.5306,-5.1977],[122.5273,-5.1955],[122.5272,-5.1955]],[[122.5272,-5.1955],[122.5272,-5.1955]],[[122.5272,-5.1955],[122.5231,-5.1974],[122.5159,-5.1968],[122.5156,-5.2011]]]}},{"type":"Feature","properties":{"mhid":"7415","alt_name":"KABUPATEN BUTON SELATAN","latitude":-5.56667,"longitude":122.7,"sample_value":259},"geometry":{"type":"MultiLineString","coordinates":[[[122.6897,-6.1795],[122.6864,-6.1785],[122.6739,-6.1821],[122.6708,-6.187],[122.6785,-6.1942],[122.6819,-6.2026],[122.6951,-6.2112],[122.7014,-6.2101],[122.7117,-6.213],[122.7203,-6.2114],[122.7201,-6.2082],[122.716,-6.2053],[122.6964,-6.198],[122.6927,-6.1941],[122.6901,-6.1874],[122.6897,-6.1795]],[[122.5105,-5.6249],[122.5075,-5.6249],[122.5031,-5.6313],[122.5065,-5.6416],[122.5052,-5.6479],[122.5023,-5.6508],[122.497,-5.651],[122.4909,-5.6603],[122.4897,-5.6667],[122.4849,-5.6689],[122.4808,-5.6735],[122.4767,-5.6736],[122.4686,-5.681],[122.4633,-5.6802],[122.4562,-5.6871],[122.4572,-5.6933],[122.4645,-5.6929],[122.4735,-5.6902],[122.4829,-5.6937],[122.4884,-5.6983],[122.4951,-5.6996],[122.5126,-5.6968],[122.5188,-5.6943],[122.5266,-5.6952],[122.5331,-5.6944],[122.5435,-5.6868],[122.5471,-5.6822],[122.5536,-5.6709],[122.5557,-5.6614],[122.5559,-5.6503],[122.5512,-5.6402],[122.5467,-5.6343],[122.5441,-5.6279],[122.5343,-5.631],[122.5214,-5.629],[122.5166,-5.6252],[122.5105,-5.6249]],[[122.5126,-5.5896],[122.501,-5.5965],[122.506,-5.5997],[122.512,-5.5971],[122.514,-5.5944],[122.5126,-5.5896]],[[122.5246,-5.5013],[122.5209,-5.5002],[122.5173,-5.5026],[122.5102,-5.504],[122.5018,-5.5081],[122.4888,-5.5119],[122.4826,-5.5151],[122.4784,-5.5215],[122.4759,-5.5291],[122.4712,-5.5315],[122.4701,-5.5396],[122.4731,-5.5482],[122.4813,-5.5542],[122.4853,-5.5603],[122.4884,-5.5623],[122.5,-5.5634],[122.5041,-5.5628],[122.5078,-5.5588],[122.5082,-5.5504],[122.5111,-5.5409],[122.5091,-5.5363],[122.511,-5.5325],[122.5108,-5.5254],[122.5166,-5.5202],[122.5208,-5.5068],[122.5246,-5.5013]],[[122.6184,-5.5099],[122.6159,-5.5111],[122.6151,-5.5124]],[[122.6151,-5.5124],[122.6124,-5.5166]],[[122.6124,-5.5166],[122.6097,-5.5207]],[[122.6097,-5.5207],[122.6084,-5.5228],[122.6031,-5.5265],[122.589,-5.5312],[122.5812,-5.5359],[122.5742,-5.5381],[122.5778,-5.547],[122.5794,-5.5692],[122.5821,-5.5751],[122.5862,-5.5788],[122.5919,-5.5911],[122.5946,-5.6022],[122.604,-5.622],[122.6103,-5.629],[122.6138,-5.636],[122.6125,-5.6406],[122.6143,-5.6447],[122.6142,-5.6511],[122.6106,-5.6532],[122.6113,-5.6573],[122.6198,-5.6664],[122.6253,-5.6752],[122.625,-5.6795],[122.6277,-5.6847],[122.6365,-5.6948],[122.6432,-5.6983],[122.6489,-5.6987],[122.6611,-5.6944],[122.6665,-5.6901],[122.6729,-5.6821],[122.6771,-5.6738],[122.6811,-5.6685],[122.6837,-5.6618],[122.7,-5.6328],[122.7061,-5.6285],[122.7086,-5.6212],[122.7125,-5.6192],[122.7199,-5.6208],[122.7227,-5.6281],[122.7209,-5.6369],[122.7147,-5.6512],[122.7117,-5.6616],[122.71,-5.6739],[122.7107,-5.6776],[122.7175,-5.6841],[122.7213,-5.6857],[122.7259,-5.691],[122.7288,-5.6876],[122.7261,-5.6804],[122.7271,-5.6736],[122.7328,-5.6709],[122.7345,-5.6648],[122.7395,-5.6588],[122.7402,-5.6523],[122.7453,-5.6396],[122.7522,-5.639],[122.7589,-5.6438],[122.7572,-5.6555],[122.7648,-5.6609],[122.7658,-5.6668],[122.7614,-5.6725],[122.7596,-5.6822],[122.7537,-5.6906],[122.7541,-5.6944],[122.7661,-5.7004],[122.7753,-5.7024],[122.7849,-5.7015],[122.7995,-5.6971],[122.8027,-5.6947],[122.8061,-5.6884],[122.8062,-5.6833],[122.8102,-5.6716],[122.8154,-5.6639],[122.821,-5.6533],[122.8178,-5.6456],[122.7995,-5.6279],[122.7941,-5.616],[122.7914,-5.6041],[122.7883,-5.5805],[122.7892,-5.5429],[122.79,-5.5289],[122.7884,-5.5215],[122.7829,-5.5208],[122.7764,-5.5144],[122.7777,-5.5024],[122.7803,-5.4961],[122.7772,-5.4916],[122.7403,-5.4901]],[[122.7403,-5.4901],[122.7394,-5.4901],[122.7368,-5.4921]],[[122.7368,-5.4921],[122.735,-5.4935],[122.7233,-5.4968],[122.706,-5.4952],[122.673,-5.496]],[[122.673,-5.496],[122.6719,-5.496],[122.6694,-5.4965]],[[122.6694,-5.4965],[122.6645,-5.5043]],[[122.6645,-5.5043],[122.6616,-5.5088],[122.6593,-5.5069]],[[122.6593,-5.5069],[122.6589,-5.5066],[122.6452,-5.5113]],[[122.6452,-5.5113],[122.6451,-5.5113]],[[122.6451,-5.5113],[122.6416,-5.5125],[122.6369,-5.5133]],[[122.6369,-5.5133],[122.6354,-5.5136],[122.6351,-5.5133]],[[122.6351,-5.5133],[122.6324,-5.5107]],[[122.6324,-5.5107],[122.631,-5.5094]],[[122.631,-5.5094],[122.6309,-5.5093],[122.6184,-5.5099]]]}},{"type":"Feature","properties":{"mhid":"7412","alt_name":"KABUPATEN KONAWE KEPULAUAN","latitude":-4.11656,"longitude":123.10181,"sample_value":241},"geometry":{"type":"MultiLineString","coordinates":[[[123.0134,-3.9781],[123.0093,-3.9878],[123.0011,-3.9975],[122.9976,-4.0041],[122.9993,-4.0058],[122.9971,-4.0157],[122.9805,-4.0332],[122.9787,-4.0392],[122.9758,-4.0423],[122.9748,-4.0497],[122.9719,-4.0568],[122.9659,-4.0591],[122.9603,-4.0584],[122.9463,-4.0544],[122.9486,-4.0604],[122.946,-4.0682],[122.9372,-4.0694],[122.9417,-4.0765],[122.9427,-4.0815],[122.9463,-4.0822],[122.9471,-4.0888],[122.9393,-4.0949],[122.9416,-4.1041],[122.9438,-4.1068],[122.9487,-4.123],[122.954,-4.1279],[122.9558,-4.1383],[122.9579,-4.1423],[122.963,-4.1442],[122.9669,-4.1523],[122.9737,-4.1561],[122.9767,-4.1603],[122.9753,-4.1641],[122.9822,-4.168],[122.9845,-4.1726],[122.9866,-4.1842],[122.9919,-4.1934],[122.9902,-4.1993],[122.996,-4.2028],[123.0047,-4.2018],[123.0128,-4.2061],[123.0223,-4.2147],[123.027,-4.2218],[123.0294,-4.2221],[123.0396,-4.229],[123.045,-4.2306],[123.0484,-4.2356],[123.0563,-4.2382],[123.0617,-4.2441],[123.0745,-4.2489],[123.0856,-4.2506],[123.093,-4.2503],[123.099,-4.2521],[123.1036,-4.2568],[123.1098,-4.2595],[123.1176,-4.2608],[123.1239,-4.2599],[123.1299,-4.2557],[123.1355,-4.2558],[123.1436,-4.2468],[123.1463,-4.246],[123.1521,-4.2394],[123.1548,-4.2324],[123.1557,-4.2255],[123.1585,-4.2196],[123.1665,-4.2063],[123.176,-4.2001],[123.1826,-4.1996],[123.1864,-4.1938],[123.1856,-4.1858],[123.1904,-4.1828],[123.1952,-4.1859],[123.2068,-4.1715],[123.2071,-4.1639],[123.2125,-4.1536],[123.2205,-4.154],[123.221,-4.1471],[123.2316,-4.1441],[123.2367,-4.1392],[123.239,-4.1344],[123.2443,-4.1289],[123.2513,-4.1146],[123.2532,-4.1086],[123.2504,-4.1017],[123.2551,-4.093],[123.2588,-4.0923],[123.2571,-4.0833],[123.2581,-4.0816],[123.254,-4.0655],[123.2502,-4.0598],[123.2418,-4.0554],[123.2407,-4.0517],[123.2336,-4.043],[123.2271,-4.0404],[123.2251,-4.0286],[123.2205,-4.0236],[123.2118,-4.0189],[123.1999,-4.0169],[123.1856,-4.0097],[123.1812,-4.0104],[123.1653,-4.0078],[123.1566,-4.011],[123.1493,-4.0122],[123.1404,-4.0085],[123.1325,-4.0119],[123.1266,-4.0187],[123.1205,-4.0201],[123.1049,-4.0202],[123.0963,-4.0237],[123.0884,-4.0224],[123.0814,-4.0193],[123.0704,-4.0082],[123.0551,-4.0013],[123.0514,-3.9974],[123.0478,-3.9977],[123.0358,-3.9882],[123.0299,-3.9822],[123.0134,-3.9781]]]}},{"type":"Feature","properties":{"mhid":"7413","alt_name":"KABUPATEN MUNA BARAT","latitude":-4.83333,"longitude":122.48333,"sample_value":858},"geometry":{"type":"MultiLineString","coordinates":[[[122.3347,-4.9136],[122.3311,-4.9145],[122.327,-4.9226],[122.3267,-4.9311],[122.3342,-4.9329],[122.3394,-4.9295],[122.3423,-4.9227],[122.3402,-4.9147],[122.3347,-4.9136]],[[122.2642,-4.8748],[122.2723,-4.8705],[122.2694,-4.8669],[122.2635,-4.8688],[122.2642,-4.8748]],[[122.3585,-4.7304],[122.3491,-4.7296],[122.3484,-4.7364],[122.3524,-4.7398],[122.3585,-4.7304]],[[122.3027,-4.7163],[122.3104,-4.7066],[122.3162,-4.6973],[122.3179,-4.6913],[122.3159,-4.6877],[122.308,-4.6853],[122.2966,-4.694],[122.2938,-4.6988],[122.2927,-4.7071],[122.2962,-4.7133],[122.3027,-4.7163]],[[122.3284,-4.6945],[122.3344,-4.6891],[122.3331,-4.6835],[122.3281,-4.6878],[122.3284,-4.6945]],[[122.3477,-4.7128],[122.3508,-4.7061],[122.3644,-4.6965],[122.3678,-4.6896],[122.3794,-4.6743],[122.3809,-4.6683],[122.3773,-4.6644],[122.37,-4.6647],[122.3646,-4.6683],[122.3474,-4.6849],[122.3309,-4.7075],[122.324,-4.7227],[122.3298,-4.7254],[122.3394,-4.7172],[122.3477,-4.7128]],[[122.2986,-4.6675],[122.3034,-4.6596],[122.3034,-4.6512],[122.299,-4.6541],[122.2972,-4.6588],[122.2966,-4.667],[122.2986,-4.6675]],[[122.3557,-4.636],[122.3468,-4.6371],[122.3458,-4.6451],[122.3405,-4.6554],[122.3415,-4.6635],[122.3449,-4.6652],[122.3515,-4.6633],[122.3569,-4.6597],[122.3608,-4.6542],[122.3632,-4.6468],[122.3635,-4.641],[122.3614,-4.6377],[122.3557,-4.636]],[[122.6268,-4.642],[122.6154,-4.6393],[122.6141,-4.6431],[122.6072,-4.6431],[122.5991,-4.6404],[122.5937,-4.6429],[122.5964,-4.6506],[122.5963,-4.6548],[122.5901,-4.6619],[122.5845,-4.6701],[122.5739,-4.6763],[122.5661,-4.6786],[122.5594,-4.6901],[122.5555,-4.6937],[122.5443,-4.6965],[122.5416,-4.7012],[122.5373,-4.7044],[122.5209,-4.7123],[122.5058,-4.7162],[122.5001,-4.7216],[122.4866,-4.7261],[122.477,-4.7248],[122.4747,-4.73],[122.477,-4.7384],[122.4672,-4.7401],[122.4597,-4.7443],[122.4503,-4.7415],[122.4434,-4.7431],[122.4302,-4.7383],[122.4147,-4.7436],[122.4095,-4.7499],[122.4002,-4.7456],[122.3922,-4.7478],[122.3814,-4.7458],[122.3738,-4.7406],[122.3724,-4.745],[122.3663,-4.7544],[122.3623,-4.7576],[122.3606,-4.7642],[122.3573,-4.7659],[122.3543,-4.7789],[122.3476,-4.7895],[122.342,-4.7951],[122.3421,-4.799],[122.3326,-4.8146],[122.3188,-4.8308],[122.3181,-4.8355],[122.3252,-4.8514],[122.3252,-4.8546],[122.3326,-4.8645],[122.338,-4.8759],[122.3388,-4.881],[122.3379,-4.8904],[122.3439,-4.8998],[122.3455,-4.9097],[122.3504,-4.9194],[122.3496,-4.924],[122.3534,-4.9281],[122.3599,-4.9302],[122.3591,-4.9254],[122.3639,-4.922],[122.3668,-4.9148],[122.3748,-4.916],[122.3804,-4.9074],[122.3949,-4.9103],[122.3999,-4.9121],[122.4039,-4.9086],[122.4136,-4.9087],[122.4237,-4.9043],[122.4356,-4.9044],[122.4471,-4.9087],[122.4517,-4.9084],[122.4566,-4.9123],[122.4609,-4.9114],[122.4616,-4.9185],[122.5015,-4.9368],[122.5202,-4.9462],[122.5245,-4.9434],[122.5334,-4.9455],[122.5372,-4.9482],[122.5391,-4.9538],[122.5463,-4.9569],[122.5491,-4.954],[122.554,-4.9595],[122.5762,-4.9646],[122.5782,-4.9676],[122.5851,-4.9686],[122.5916,-4.9722],[122.5923,-4.9646],[122.6008,-4.9503],[122.6091,-4.94],[122.6181,-4.9319],[122.6214,-4.9257],[122.6245,-4.9167],[122.6453,-4.887],[122.6304,-4.8782],[122.621,-4.8703],[122.6186,-4.8634],[122.6147,-4.8618],[122.6065,-4.8496],[122.5977,-4.8474],[122.5954,-4.8392],[122.588,-4.8344],[122.5798,-4.8332],[122.5756,-4.8288],[122.5727,-4.8222],[122.5711,-4.8134],[122.5645,-4.8069],[122.5629,-4.7935],[122.5633,-4.7872],[122.5702,-4.7814],[122.5758,-4.7788],[122.5785,-4.7725],[122.5876,-4.7668],[122.5909,-4.7633],[122.5955,-4.7647],[122.5995,-4.7606],[122.6109,-4.7608],[122.6131,-4.7539],[122.6092,-4.7519],[122.6088,-4.7467],[122.6173,-4.7472],[122.6216,-4.7444],[122.6265,-4.7449],[122.6322,-4.748],[122.6297,-4.7386],[122.631,-4.7325],[122.6338,-4.7309],[122.6349,-4.7244],[122.6392,-4.7164],[122.6442,-4.7123],[122.6401,-4.7073],[122.6429,-4.7043],[122.6369,-4.6956],[122.6431,-4.6899],[122.6405,-4.6861],[122.6403,-4.6787],[122.6373,-4.6795],[122.6315,-4.6733],[122.6324,-4.6703],[122.6285,-4.6586],[122.6324,-4.6503],[122.6283,-4.647],[122.6268,-4.642]],[[122.337,-4.6352],[122.3388,-4.6307],[122.3433,-4.6273],[122.3491,-4.6263],[122.3512,-4.6217],[122.3454,-4.6206],[122.3384,-4.6293],[122.3145,-4.6477],[122.3136,-4.6623],[122.3217,-4.6611],[122.3251,-4.655],[122.3276,-4.655],[122.3319,-4.6429],[122.3348,-4.6415],[122.3332,-4.6354],[122.337,-4.6352]],[[122.331,-4.6101],[122.3141,-4.61],[122.3111,-4.6146],[122.3109,-4.6218],[122.3164,-4.6267],[122.3241,-4.6245],[122.331,-4.6101]],[[122.3321,-4.5774],[122.3284,-4.5757],[122.3212,-4.5813],[122.3292,-4.5841],[122.3321,-4.5774]]]}},{"type":"Feature","properties":{"mhid":"1332:2","alt_name":"KABUPATEN ACEH SINGKIL","latitude":2.41667,"longitude":97.91667,"sample_value":618},"geometry":{"type":"MultiLineString","coordinates":[[[97.3863,1.9868],[97.3808,1.9814],[97.3838,1.9772],[97.3884,1.9827],[97.3863,1.9868]],[[97.3887,2.0435],[97.3863,2.0383],[97.3905,2.0363],[97.3929,2.0407],[97.3887,2.0435]],[[97.3494,2.0666],[97.3419,2.0654],[97.3394,2.0599],[97.3415,2.053],[97.3388,2.0466],[97.3311,2.0441],[97.3282,2.0406],[97.3318,2.0368],[97.3397,2.0343],[97.3458,2.0399],[97.3455,2.0608],[97.3494,2.0666]],[[97.3554,2.0638],[97.3583,2.0651],[97.3585,2.0703],[97.3534,2.0761],[97.3507,2.0732],[97.3521,2.0666],[97.3554,2.0638]],[[98.1798,2.0988],[98.1738,2.096],[98.1796,2.0916],[98.1815,2.096],[98.1798,2.0988]],[[97.1131,2.1142],[97.1046,2.1115],[97.0981,2.1132],[97.0941,2.1087],[97.0941,2.1011],[97.0988,2.0929],[97.0952,2.0883],[97.0875,2.0901],[97.0806,2.0888],[97.0784,2.0863],[97.0793,2.0813],[97.0776,2.0761],[97.0822,2.0675],[97.08,2.0634],[97.0857,2.0611],[97.0909,2.0553],[97.0919,2.0483],[97.0964,2.0429],[97.098,2.0331],[97.1088,2.0194],[97.1125,2.017],[97.1146,2.0045],[97.123,2.0061],[97.1268,2.0081],[97.1283,2.0132],[97.1211,2.0263],[97.1189,2.0379],[97.1251,2.0456],[97.1298,2.0493],[97.1349,2.0458],[97.1398,2.0471],[97.1453,2.0516],[97.1523,2.0545],[97.153,2.063],[97.156,2.0669],[97.1615,2.0696],[97.1598,2.0755],[97.1543,2.0794],[97.1533,2.0871],[97.1474,2.0946],[97.1423,2.0969],[97.136,2.1031],[97.1326,2.1037],[97.1294,2.1083],[97.1213,2.1121],[97.1131,2.1142]],[[97.4425,2.1842],[97.4407,2.19],[97.4339,2.1833],[97.4294,2.1808],[97.432,2.1683],[97.431,2.1643],[97.4405,2.1588],[97.4387,2.1673],[97.4395,2.1747],[97.4379,2.18],[97.4425,2.1842]],[[97.3144,2.1939],[97.3064,2.1922],[97.3058,2.1876],[97.3079,2.1831],[97.3136,2.1821],[97.3115,2.1895],[97.3144,2.1939]],[[97.3176,2.2074],[97.3168,2.203],[97.3187,2.1983],[97.3224,2.1984],[97.3244,2.2022],[97.3176,2.2074]],[[97.1691,2.2358],[97.1652,2.2344],[97.1626,2.2304],[97.1612,2.2236],[97.1529,2.2257],[97.1451,2.2221],[97.1356,2.2254],[97.1249,2.2267],[97.12,2.2252],[97.1175,2.2201],[97.1132,2.2157],[97.1166,2.2081],[97.127,2.1986],[97.1392,2.2028],[97.1499,2.2006],[97.1531,2.1989],[97.1625,2.1905],[97.1701,2.188],[97.1741,2.1786],[97.1775,2.1803],[97.1812,2.1779],[97.1888,2.1808],[97.1945,2.1844],[97.2001,2.1843],[97.2108,2.1805],[97.2153,2.1752],[97.2151,2.1676],[97.2181,2.1584],[97.2241,2.1573],[97.2323,2.1685],[97.2356,2.1658],[97.2312,2.155],[97.2311,2.1495],[97.2335,2.1477],[97.2414,2.1479],[97.246,2.1427],[97.2523,2.144],[97.2553,2.1395],[97.262,2.134],[97.2622,2.1243],[97.2599,2.12],[97.2641,2.1126],[97.2665,2.1061],[97.2726,2.1067],[97.2814,2.1015],[97.2868,2.0971],[97.2913,2.0912],[97.296,2.0821],[97.3046,2.0753],[97.3044,2.0687],[97.3062,2.0631],[97.3106,2.0653],[97.3115,2.0588],[97.3293,2.055],[97.3296,2.0609],[97.333,2.0615],[97.3377,2.0585],[97.3419,2.0686],[97.3405,2.0721],[97.347,2.075],[97.3474,2.0798],[97.3426,2.0878],[97.3472,2.0882],[97.3478,2.0837],[97.3537,2.0816],[97.3573,2.0862],[97.3571,2.0904],[97.353,2.0937],[97.3587,2.0981],[97.3559,2.1036],[97.3504,2.1086],[97.3487,2.1143],[97.3389,2.1123],[97.3342,2.1178],[97.3392,2.1256],[97.3452,2.1253],[97.3437,2.1307],[97.3384,2.1353],[97.344,2.1371],[97.3414,2.1487],[97.3381,2.1519],[97.332,2.1536],[97.3323,2.1638],[97.3237,2.1617],[97.3188,2.1646],[97.329,2.1677],[97.3293,2.1746],[97.3193,2.1776],[97.3142,2.1781],[97.3108,2.1754],[97.3041,2.1826],[97.3031,2.1892],[97.2926,2.2008],[97.2924,2.205],[97.2974,2.2044],[97.3004,2.2072],[97.3021,2.2175],[97.2998,2.2283],[97.2943,2.2298],[97.2882,2.2255],[97.277,2.2246],[97.274,2.2264],[97.2724,2.2315],[97.2682,2.2329],[97.2604,2.2328],[97.2562,2.236],[97.2436,2.2327],[97.2362,2.235],[97.2291,2.2296],[97.2258,2.2207],[97.2304,2.2185],[97.2304,2.2144],[97.2258,2.2079],[97.2196,2.2039],[97.2141,2.2092],[97.2108,2.2051],[97.2044,2.2114],[97.2008,2.2117],[97.1956,2.2047],[97.1928,2.2038],[97.1924,2.2114],[97.1896,2.2151],[97.1905,2.2216],[97.1893,2.2258],[97.1835,2.2222],[97.1803,2.2251],[97.1799,2.2327],[97.1691,2.2358]],[[97.224,2.235],[97.2203,2.2401],[97.2139,2.2393],[97.2206,2.2243],[97.2235,2.2234],[97.2259,2.2284],[97.224,2.235]],[[97.2457,2.2642],[97.2452,2.2559],[97.2502,2.2572],[97.2457,2.2642]],[[97.2635,2.2856],[97.2654,2.278],[97.2684,2.2781],[97.2734,2.2741],[97.2791,2.2727],[97.282,2.2772],[97.2715,2.2839],[97.2635,2.2856]],[[97.2482,2.2932],[97.247,2.2902],[97.25,2.2841],[97.2552,2.2782],[97.2591,2.2805],[97.2575,2.2857],[97.2482,2.2932]],[[97.2481,2.3057],[97.2428,2.3052],[97.2423,2.301],[97.2468,2.2991],[97.2481,2.3057]],[[97.3109,2.3103],[97.3079,2.3073],[97.3066,2.2985],[97.3115,2.2929],[97.3157,2.2945],[97.3146,2.2992],[97.3155,2.3073],[97.3109,2.3103]],[[97.4048,2.3134],[97.4024,2.3095],[97.4064,2.3032],[97.4085,2.2952],[97.4124,2.2956],[97.4048,2.3134]],[[97.2276,2.3237],[97.2188,2.32],[97.2235,2.3175],[97.2284,2.3195],[97.2276,2.3237]],[[97.3814,2.3624],[97.3781,2.3598],[97.3802,2.339],[97.3841,2.3338],[97.3895,2.335],[97.3861,2.3422],[97.39,2.345],[97.3969,2.3389],[97.406,2.3281],[97.4106,2.315],[97.4166,2.3062],[97.4209,2.3073],[97.4188,2.3176],[97.4127,2.336],[97.4091,2.3428],[97.4015,2.3483],[97.3922,2.3583],[97.3814,2.3624]],[[97.6655,2.3951],[97.6691,2.3905],[97.6854,2.374],[97.6934,2.3667],[97.7053,2.3533],[97.7165,2.3378],[97.7207,2.3301],[97.7359,2.3136],[97.7381,2.3097],[97.7395,2.3012],[97.7419,2.2979],[97.7551,2.2744],[97.7603,2.2674],[97.7676,2.261],[97.7719,2.255],[97.7759,2.2451],[97.7818,2.2399],[97.7832,2.2358],[97.7873,2.2346],[97.7941,2.2419],[97.796,2.2457],[97.7936,2.2537],[97.795,2.2658],[97.7999,2.2719],[97.8063,2.2698],[97.8301,2.266],[97.835,2.264],[97.8414,2.259],[97.8521,2.2551],[97.8646,2.2489],[97.8608,2.2553],[97.8573,2.254],[97.8569,2.2604],[97.8632,2.268],[97.8686,2.2717],[97.887,2.2763],[97.894,2.2798],[97.8986,2.2787],[97.8927,2.2729],[97.8928,2.2672],[97.8904,2.2645],[97.8882,2.2561],[97.8796,2.2518],[97.8757,2.2485],[97.8694,2.25],[97.8694,2.2458],[97.8816,2.2435],[97.8888,2.2464],[97.8968,2.2525],[97.8996,2.2595],[97.9036,2.2645],[97.9135,2.2718],[97.9261,2.2728],[97.9355,2.2703],[97.9484,2.271],[97.9543,2.2691],[97.9733,2.2612],[97.983,2.2562],[98.006,2.2415],[98.0138,2.2371],[98.028,2.2314],[98.0519,2.2185],[98.0638,2.2137],[98.105,2.1906],[98.114,2.184],[98.1247,2.1731],[98.1316,2.1648]]]}}]} \ No newline at end of file diff --git a/sigap-website/public/geojson/geoBoundaries-IDN-ADM2_simplified.geojson b/sigap-website/public/geojson/geoBoundaries-IDN-ADM2_simplified.geojson new file mode 100644 index 0000000..5b2d38c --- /dev/null +++ b/sigap-website/public/geojson/geoBoundaries-IDN-ADM2_simplified.geojson @@ -0,0 +1,521 @@ +{"type":"FeatureCollection", "features": [ +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[96.49108650000005,4.622769400000038],[96.48611610000006,4.630488800000023],[96.47306510000004,4.629963400000065],[96.46772080000005,4.626576300000067],[96.46068930000007,4.625508700000069],[96.44773870000006,4.625301700000023],[96.44437580000005,4.626732900000036],[96.437966,4.639469600000041],[96.42409980000008,4.649121600000058],[96.40874310000004,4.669242800000063],[96.39479340000008,4.67969510000006],[96.36935410000007,4.691655],[96.36361350000004,4.687463900000068],[96.36009910000007,4.686568600000044],[96.34329680000008,4.689952700000049],[96.31511030000007,4.687500300000067],[96.29702750000007,4.691439400000036],[96.28241820000005,4.692334200000062],[96.28056540000006,4.693616100000042],[96.27489670000006,4.705115600000056],[96.27085610000006,4.708218600000066],[96.26229330000007,4.710590100000047],[96.26028350000007,4.713468500000033],[96.26474760000008,4.737298200000055],[96.26438840000009,4.742544900000041],[96.26795740000006,4.750567200000035],[96.26896910000005,4.771769100000029],[96.27052360000005,4.77460160000004],[96.28073360000008,4.77903260000005],[96.276325,4.795019400000058],[96.27306380000005,4.797066600000051],[96.26647920000005,4.795366400000034],[96.25494960000003,4.787287100000071],[96.24146460000009,4.781256300000052],[96.23578460000004,4.77751470000004],[96.22590080000003,4.765256200000067],[96.21915390000004,4.763369600000033],[96.20379950000006,4.761182400000052],[96.18616080000004,4.767485100000044],[96.17960840000006,4.76755],[96.16809860000006,4.764713700000073],[96.15052460000004,4.755212100000051],[96.14311140000007,4.754517400000054],[96.13435820000007,4.757535400000052],[96.121869,4.767443200000059],[96.11710190000008,4.767423200000053],[96.11457360000009,4.760637300000042],[96.11833480000007,4.747904500000061],[96.11691290000005,4.739665100000025],[96.10636130000006,4.729528400000049],[96.09982060000004,4.710112800000047],[96.09149230000008,4.696462800000063],[96.07488670000004,4.677802200000031],[96.04244830000005,4.65757050000002],[96.03344230000005,4.64137960000005],[96.032598,4.632130600000039],[96.03367810000003,4.630180600000074],[96.02905350000003,4.614283100000023],[96.03685530000007,4.601895400000046],[96.04658650000005,4.597249200000022],[96.05058190000005,4.592627600000071],[96.05168990000004,4.583413900000039],[96.04822340000004,4.583252600000037],[96.04686380000004,4.580423],[96.04703080000007,4.566742400000066],[96.03667980000006,4.562444500000026],[96.03126880000008,4.562184600000023],[96.01978070000007,4.556818100000044],[96.00568410000005,4.546212800000035],[96.00000950000003,4.538936800000045],[95.99445980000007,4.538368],[95.98725630000007,4.535425],[95.97114080000006,4.523315300000036],[95.96079290000006,4.512294800000063],[95.95620480000008,4.505882900000074],[95.94635260000007,4.484837600000048],[95.93611850000008,4.467413700000066],[95.92723120000005,4.443482],[95.92318720000009,4.436014900000032],[95.91891830000009,4.432821800000056],[95.916559,4.418979300000046],[95.91324910000009,4.410618900000031],[95.91087280000005,4.408764700000063],[95.91114990000005,4.406526300000053],[95.89543640000005,4.387705500000038],[95.88969,4.377866900000072],[95.88477450000005,4.375332600000036],[95.87687970000007,4.367495800000029],[95.90574930000008,4.337576900000045],[95.96829240000005,4.264394100000061],[95.97490260000006,4.258550500000069],[95.97681890000007,4.255127400000049],[95.98622470000004,4.247529500000041],[96.01309760000004,4.218056400000023],[96.02219380000008,4.205295600000056],[96.02222160000008,4.197949700000038],[96.02374810000003,4.194789100000037],[96.02614840000007,4.19422830000002],[96.02984910000004,4.198073400000055],[96.03251180000007,4.197492300000022],[96.03302730000007,4.202151900000047],[96.03601290000006,4.20579170000002],[96.04269070000004,4.208920300000045],[96.04640130000007,4.208821900000032],[96.05536640000008,4.20521640000004],[96.07249990000008,4.192237],[96.12277750000004,4.138371],[96.12645320000007,4.132227500000056],[96.12650970000004,4.124452200000064],[96.12868790000005,4.125229800000056],[96.12992650000007,4.130466600000034],[96.13323810000009,4.131851200000028],[96.13048810000004,4.134758400000067],[96.13060330000008,4.136666500000047],[96.13444730000003,4.140669800000069],[96.14241450000009,4.142254300000047],[96.14756170000004,4.14099310000006],[96.15230090000006,4.139532300000042],[96.19202920000004,4.107278],[96.20654480000007,4.115847400000064],[96.21416320000009,4.117812100000037],[96.224778,4.117009],[96.24656820000007,4.126084900000023],[96.26258960000007,4.138009300000022],[96.26756640000008,4.146007600000075],[96.27335480000005,4.147892900000045],[96.27307380000008,4.150654700000075],[96.27884990000007,4.155120500000066],[96.27643620000003,4.158065100000044],[96.27491980000008,4.165936],[96.27716170000008,4.168585300000075],[96.27457510000005,4.174447600000065],[96.27765840000006,4.183486500000072],[96.27239030000004,4.196622200000036],[96.27687380000003,4.210487400000034],[96.27506920000008,4.21427060000002],[96.27085170000004,4.214890100000048],[96.26820880000008,4.217312400000026],[96.26648830000005,4.227244100000064],[96.270434,4.243961900000045],[96.28065440000006,4.253807300000062],[96.282023,4.26568240000006],[96.28608390000005,4.269642100000056],[96.28195220000003,4.285859100000039],[96.28595350000006,4.289271],[96.29076820000006,4.324180600000034],[96.29688690000006,4.35053750000003],[96.29599330000008,4.368311100000028],[96.30162050000007,4.370172300000036],[96.307837,4.367588100000035],[96.31377340000006,4.368183200000033],[96.31550560000005,4.365345],[96.31804190000008,4.364360600000055],[96.31967810000003,4.364701400000058],[96.32030740000005,4.367802900000072],[96.32275910000004,4.368502400000068],[96.32912930000003,4.367138600000033],[96.33566330000008,4.370831700000053],[96.33885690000005,4.374468600000057],[96.33850960000007,4.375954800000045],[96.34107260000007,4.376213300000074],[96.34151410000004,4.380018700000051],[96.35024830000003,4.381933],[96.35803,4.381830400000069],[96.35857130000005,4.386814900000047],[96.36621690000004,4.390633700000024],[96.36727460000009,4.392937400000051],[96.36910940000007,4.391778400000021],[96.37164920000004,4.392784800000072],[96.37319990000003,4.396526100000074],[96.37084080000005,4.399122400000067],[96.37360890000008,4.41034],[96.37071130000004,4.412768200000073],[96.37195940000004,4.417353800000058],[96.38349780000004,4.420133900000053],[96.42176180000007,4.421442800000023],[96.44148870000004,4.42581830000006],[96.45330540000003,4.433266700000047],[96.47971820000004,4.458285100000069],[96.47959070000007,4.460954300000026],[96.474405,4.468697],[96.44784220000008,4.495813600000076],[96.44043560000006,4.510043],[96.44443760000007,4.517027700000028],[96.45093190000006,4.522365600000057],[96.45873670000003,4.532816500000024],[96.463069,4.545449500000075],[96.47290540000006,4.548775700000022],[96.48748650000005,4.551204100000064],[96.49203170000004,4.555243100000041],[96.49365120000004,4.573142200000063],[96.49156990000006,4.594896500000061],[96.49421340000004,4.598686900000075],[96.49445030000004,4.603255],[96.49108650000005,4.622769400000038]]]},"properties":{"shapeName":"Aceh Barat","shapeISO":"","shapeID":"22746128B27978194608663","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[96.805588,3.717576400000041],[96.80710230000005,3.719012700000064],[96.80675130000009,3.720890100000076],[96.80359290000007,3.721264500000075],[96.80286490000003,3.718959],[96.805588,3.717576400000041]]],[[[97.15358140000006,3.74558630000007],[97.13576070000005,3.785210200000051],[97.11398710000003,3.824818600000071],[97.10558920000005,3.844771200000025],[97.10678030000008,3.857123600000023],[97.11352460000006,3.864155500000038],[97.10923740000004,3.87515060000004],[97.10785880000003,3.892204800000059],[97.11573180000005,3.911638900000071],[97.11784490000008,3.921959700000059],[97.11697760000004,3.928560600000026],[97.11398130000003,3.933995100000061],[97.10238140000007,3.946501700000056],[97.098356,3.948876900000073],[97.076873,3.95257950000007],[97.06680830000005,3.95897530000002],[97.042831,3.960999600000036],[97.014333,3.958669600000064],[97.00174010000006,3.952648200000056],[96.999919,3.950137300000051],[96.993923,3.946747400000049],[96.980414,3.942374100000052],[96.96250290000006,3.945020100000022],[96.88256580000007,3.950874300000066],[96.83598890000007,3.95939020000003],[96.80911260000005,3.983135900000036],[96.80470940000004,3.990153600000042],[96.80296730000003,3.997615400000029],[96.80195820000006,4.026774900000021],[96.796523,4.041561700000045],[96.78850160000007,4.055113900000038],[96.76280260000004,4.075522600000056],[96.76156610000004,4.078532100000075],[96.75596240000004,4.083302600000025],[96.747899,4.088026900000045],[96.74707610000007,4.094286300000022],[96.73913380000005,4.091537],[96.73398880000008,4.095966200000021],[96.72482160000004,4.096891700000072],[96.725225,4.081651700000066],[96.729187,4.071522],[96.72998150000006,4.041458],[96.725902,4.03347],[96.71720710000005,4.025726400000053],[96.71709060000006,4.021609200000057],[96.72018490000005,4.015313900000024],[96.71929530000006,4.012481],[96.71008290000003,4.006279900000038],[96.69702320000005,3.988493500000061],[96.68962630000004,3.991015900000036],[96.68413860000004,3.990279800000053],[96.68407050000008,3.98443020000002],[96.67777090000004,3.987125200000037],[96.67303410000005,3.983364600000073],[96.66590330000008,3.981267400000036],[96.65121220000003,3.971955500000035],[96.64700640000007,3.972632300000043],[96.64476690000004,3.967471100000068],[96.64115830000009,3.967487100000028],[96.63659370000005,3.96380750000003],[96.63503730000008,3.960341100000051],[96.629165,3.958479300000022],[96.62577020000003,3.947827800000027],[96.62318,3.946741900000063],[96.61888880000004,3.939462800000058],[96.62143880000008,3.93523650000003],[96.617669,3.932610600000032],[96.61473520000004,3.932456600000023],[96.61771590000006,3.922707100000025],[96.617149,3.918945800000074],[96.614492,3.917620700000043],[96.61305370000008,3.912813500000027],[96.60442850000004,3.915380300000038],[96.60118840000007,3.911777100000052],[96.60011680000008,3.902653400000077],[96.593779,3.889874400000053],[96.59593930000005,3.884186300000067],[96.59205790000004,3.875856800000065],[96.59262150000006,3.869418300000063],[96.58841530000007,3.861834],[96.58789370000005,3.856610800000055],[96.58451520000006,3.849637900000062],[96.58105470000004,3.845922800000039],[96.58294670000004,3.838501400000041],[96.59878750000007,3.827841900000067],[96.610239,3.812591200000043],[96.60967530000005,3.807031400000028],[96.61658930000004,3.795621],[96.61724370000007,3.791878200000042],[96.61037020000003,3.784085800000071],[96.60675730000008,3.782135100000062],[96.60554420000005,3.776212100000066],[96.60927620000007,3.771473600000036],[96.614128,3.768899300000044],[96.61668620000006,3.76381],[96.61761040000005,3.757074],[96.61427470000007,3.753545600000052],[96.61900270000007,3.746971900000062],[96.61675020000007,3.736261700000057],[96.62367850000004,3.738957],[96.63613620000007,3.744134700000075],[96.649889,3.745955200000026],[96.66891780000003,3.747311300000035],[96.69779460000007,3.743099],[96.72444440000004,3.747109300000034],[96.73749240000006,3.743547200000023],[96.744007,3.744050800000025],[96.75294280000008,3.739637400000049],[96.77487650000006,3.738683900000069],[96.78361170000005,3.73372],[96.79345630000006,3.724535700000047],[96.80790560000008,3.725144900000032],[96.81080970000005,3.722023600000057],[96.81188430000003,3.717199400000027],[96.81912770000008,3.716441900000063],[96.83451280000008,3.707022900000027],[96.84393370000004,3.704966300000024],[96.85662490000004,3.699567400000035],[96.86564880000003,3.693104],[96.87224230000004,3.68627170000002],[96.87931270000007,3.67745130000003],[96.88366310000004,3.669290600000068],[96.894218,3.643920600000058],[96.89700930000004,3.62591290000006],[96.89474090000004,3.620415900000069],[96.90231320000004,3.605884600000024],[96.90194310000004,3.601022800000067],[96.903293,3.601618600000052],[96.910534,3.597624100000075],[96.93431250000003,3.578224300000045],[96.94195880000007,3.574638300000061],[96.94449950000006,3.583044100000052],[96.95001470000005,3.592917100000022],[96.95898220000004,3.603841200000033],[96.96294160000008,3.61289],[96.96599170000007,3.616341800000043],[96.96593890000008,3.61511310000003],[96.96804650000007,3.616262300000074],[96.97021450000005,3.622966500000075],[96.98323680000004,3.621329500000058],[96.99051060000005,3.621943900000076],[96.99687570000003,3.619771200000059],[97.00067090000005,3.615849],[97.01366270000005,3.609212700000057],[97.02020670000007,3.607647600000064],[97.02583,3.604412800000034],[97.030469,3.603782],[97.03454890000006,3.605927100000031],[97.04404410000006,3.622311400000058],[97.05293360000007,3.62361240000007],[97.06183130000005,3.629513900000063],[97.10729710000004,3.674126100000024],[97.11462580000006,3.680242600000042],[97.13217360000004,3.690431100000069],[97.13520480000005,3.695956700000067],[97.13810130000007,3.717817700000069],[97.14204750000005,3.734113900000068],[97.15104960000008,3.739627400000074],[97.15358140000006,3.74558630000007]]]]},"properties":{"shapeName":"Aceh Barat Daya","shapeISO":"","shapeID":"22746128B49275324353237","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[95.20544480000007,5.280723300000034],[95.20207380000005,5.279043500000057],[95.20188950000005,5.275958400000036],[95.20591640000004,5.274083700000062],[95.20751090000005,5.274852200000055],[95.20757140000006,5.27830160000002],[95.20544480000007,5.280723300000034]]],[[[95.206513,5.309015700000032],[95.20549850000003,5.310285900000054],[95.20682080000006,5.307667200000026],[95.206513,5.309015700000032]]],[[[95.17371190000006,5.555127500000026],[95.17735260000006,5.559094500000072],[95.17509620000004,5.560791600000073],[95.16786780000007,5.562013400000069],[95.16391580000004,5.558072200000026],[95.15416020000004,5.55476550000003],[95.15301610000006,5.553142600000058],[95.16770380000008,5.550354800000036],[95.17371190000006,5.555127500000026]]],[[[95.21866170000004,5.579693700000064],[95.21684180000005,5.580439200000058],[95.21691160000006,5.578417],[95.22085240000007,5.576919700000076],[95.22098090000009,5.578364700000066],[95.21866170000004,5.579693700000064]]],[[[95.20418490000009,5.582411700000023],[95.19311940000006,5.580371200000059],[95.18295270000004,5.574491400000056],[95.20138980000007,5.579258],[95.21474660000007,5.579560400000048],[95.20418490000009,5.582411700000023]]],[[[95.06157830000006,5.610044800000026],[95.06293670000008,5.611050200000022],[95.06115620000008,5.61213],[95.06157830000006,5.610044800000026]]],[[[95.07873150000006,5.644355200000064],[95.07583330000006,5.643917600000066],[95.06523340000007,5.63755],[95.061382,5.636917700000026],[95.05957220000005,5.639206700000045],[95.05983590000005,5.637612100000069],[95.05664380000007,5.636154800000043],[95.05434430000008,5.631160200000068],[95.05251250000003,5.630198900000039],[95.05292750000007,5.626585100000057],[95.05133210000008,5.622796900000026],[95.05518920000009,5.621200200000033],[95.05717710000005,5.622556],[95.06078530000008,5.622291100000041],[95.06142510000006,5.62508310000004],[95.06789330000004,5.627445400000056],[95.07576260000008,5.633927500000027],[95.08051870000008,5.633332200000041],[95.08651090000006,5.640344800000037],[95.08496370000006,5.642169600000045],[95.07873150000006,5.644355200000064]]],[[[95.74571280000004,5.568929400000059],[95.72942690000008,5.575883300000044],[95.70569690000008,5.579033100000061],[95.69819870000003,5.582277500000032],[95.68796440000006,5.58368],[95.65841340000009,5.596739200000059],[95.632076,5.615107800000033],[95.61894370000005,5.619468700000027],[95.61528360000005,5.622818],[95.61535480000003,5.626544300000035],[95.61079620000004,5.627656200000047],[95.59661860000006,5.625075600000059],[95.58238270000004,5.616993700000023],[95.57242440000005,5.617478600000027],[95.56017150000008,5.613747600000067],[95.54837080000004,5.613412500000038],[95.54477590000005,5.614201500000036],[95.54466520000005,5.616723900000068],[95.54344210000005,5.61683910000005],[95.54163710000006,5.611528500000077],[95.53706560000006,5.609256900000048],[95.53069050000005,5.614128900000026],[95.52922110000009,5.612391400000035],[95.52886060000009,5.607108200000027],[95.531411,5.602345600000035],[95.53033960000005,5.599228900000071],[95.52002990000005,5.59374710000003],[95.51294950000005,5.595914700000037],[95.51262450000007,5.595001400000058],[95.50851470000003,5.597765100000061],[95.51146520000003,5.597550500000068],[95.50077160000006,5.601446400000043],[95.49167830000005,5.609018700000036],[95.46281520000008,5.646035100000063],[95.45490320000005,5.651735500000029],[95.43817560000008,5.656472400000041],[95.431327,5.656575100000055],[95.42178230000007,5.651174800000035],[95.41629960000006,5.649777100000051],[95.38995070000004,5.622528100000068],[95.38864450000005,5.618066300000066],[95.38483440000005,5.616574400000047],[95.37765360000009,5.610427800000025],[95.37195040000006,5.610241400000064],[95.36696170000005,5.608283500000027],[95.36216360000003,5.604506100000037],[95.35747790000005,5.603100300000051],[95.354473,5.596329400000059],[95.35543930000006,5.585700300000042],[95.36010370000008,5.585229200000072],[95.36407430000008,5.58819520000003],[95.364611,5.586163400000032],[95.36443160000005,5.587139],[95.36875790000005,5.589083600000038],[95.37162590000008,5.575794700000074],[95.37053420000007,5.575267600000075],[95.37210270000008,5.571396700000037],[95.37619550000005,5.570546700000023],[95.37725660000007,5.567867200000023],[95.37533270000006,5.565667200000064],[95.36901730000005,5.563264],[95.36066180000006,5.573050600000045],[95.35756060000006,5.571125700000039],[95.357946,5.566552700000045],[95.35390120000005,5.564202400000056],[95.35321370000008,5.558242],[95.35723810000007,5.558726700000022],[95.35998190000004,5.552163300000075],[95.36058,5.544757200000049],[95.35492010000007,5.545040400000062],[95.35685180000007,5.542238800000064],[95.355221,5.542318200000068],[95.35533490000006,5.538406],[95.35391690000006,5.538252300000067],[95.35406160000008,5.532997900000055],[95.35058710000004,5.535488200000032],[95.34448760000004,5.534893300000022],[95.34381270000006,5.528118200000051],[95.33654490000004,5.528806800000041],[95.33018520000007,5.525969900000064],[95.330219,5.528957300000059],[95.32656740000004,5.527041200000042],[95.32343680000008,5.519552400000066],[95.31746080000005,5.517272700000035],[95.31481420000006,5.517993200000035],[95.31456790000004,5.515407],[95.30970510000009,5.515850500000056],[95.30898050000008,5.519317900000033],[95.30092080000009,5.521479300000067],[95.29609360000006,5.527712200000053],[95.29292230000004,5.526630900000043],[95.29033040000007,5.531075300000055],[95.28496060000003,5.530661700000053],[95.28247130000005,5.535606800000039],[95.28023770000004,5.536018400000046],[95.28400550000003,5.542611100000045],[95.28199910000006,5.546527200000071],[95.28256120000003,5.550426500000071],[95.28563580000008,5.550629700000059],[95.284142,5.552683300000069],[95.280262,5.551891900000044],[95.27069870000008,5.549185],[95.25618680000008,5.547906700000055],[95.25473640000007,5.545051300000068],[95.24356630000005,5.545922],[95.24322540000009,5.547049700000059],[95.23931380000005,5.54771020000004],[95.235873,5.550997700000039],[95.23764420000003,5.555469600000038],[95.23521670000008,5.557084200000077],[95.234754,5.562467300000037],[95.23962320000004,5.570073300000047],[95.22867510000003,5.575401],[95.22500910000008,5.575743300000056],[95.22635510000003,5.570567100000062],[95.22033550000003,5.569504800000061],[95.21396530000004,5.561010700000054],[95.216445,5.557825300000047],[95.209691,5.544337600000063],[95.20956180000007,5.541078600000048],[95.20276250000006,5.537080500000059],[95.19359180000004,5.526711400000067],[95.196006,5.524700700000039],[95.19550780000009,5.520941600000072],[95.19944180000005,5.52068440000005],[95.20926410000004,5.508395],[95.21093560000008,5.502080300000046],[95.21794330000006,5.498172100000033],[95.22599830000007,5.499294700000064],[95.22671360000004,5.496319700000072],[95.22871060000006,5.496130300000061],[95.22996010000008,5.490241800000035],[95.22673340000006,5.485340500000063],[95.23295420000005,5.481556600000033],[95.235097,5.473100500000044],[95.24017190000006,5.46909480000005],[95.243765,5.458769600000039],[95.24428310000008,5.451549500000056],[95.24265230000003,5.452465500000073],[95.24240350000008,5.450707400000056],[95.23919410000008,5.450294700000029],[95.23835280000009,5.45193560000007],[95.23895040000008,5.44993160000007],[95.24203420000003,5.449010300000054],[95.24238120000007,5.444641700000034],[95.24073920000006,5.442646100000047],[95.23934860000008,5.443015200000048],[95.23805290000007,5.437328900000068],[95.235844,5.437169700000027],[95.23529060000004,5.435104100000046],[95.22978120000005,5.432787800000028],[95.23337080000005,5.429693100000065],[95.23275010000003,5.427534900000069],[95.23451090000003,5.425420200000076],[95.23509770000004,5.428189800000041],[95.23920890000005,5.42860520000005],[95.24694350000004,5.415943600000048],[95.25080740000004,5.402061100000026],[95.25237660000005,5.384090700000058],[95.25129880000009,5.369901500000026],[95.24865420000003,5.365887400000076],[95.24640890000006,5.367960400000072],[95.245303,5.367011900000023],[95.24157410000004,5.355633100000034],[95.24028640000006,5.347773],[95.24138290000008,5.339048500000047],[95.23595340000008,5.342123800000024],[95.23410480000007,5.344844700000067],[95.23435360000008,5.354795400000057],[95.23208990000006,5.356415100000049],[95.23151780000006,5.360293200000058],[95.22940390000008,5.36257930000005],[95.22772520000007,5.358983100000046],[95.22822380000008,5.351469300000076],[95.22699880000005,5.346061200000065],[95.22148750000008,5.343829200000073],[95.22795170000006,5.339465],[95.23076110000005,5.332992600000068],[95.23563410000008,5.329776400000071],[95.237762,5.329996700000038],[95.23741140000004,5.326114600000039],[95.23906340000008,5.325293900000077],[95.23623280000004,5.318871800000068],[95.23190880000004,5.314401900000064],[95.22908930000006,5.315193800000031],[95.21848150000005,5.324128700000074],[95.21763370000008,5.320781600000032],[95.221805,5.320245900000032],[95.221692,5.318384600000059],[95.22009220000007,5.317571400000077],[95.22226150000006,5.316744700000072],[95.22203260000003,5.314995900000042],[95.223649,5.315306500000077],[95.22353050000004,5.313296900000068],[95.220729,5.310236400000065],[95.21662820000006,5.311496400000067],[95.21584780000006,5.310153500000069],[95.21415290000004,5.310726500000044],[95.21593270000005,5.30933],[95.21564980000005,5.307568600000025],[95.21238130000006,5.302833900000053],[95.21553640000008,5.303941500000064],[95.21518860000003,5.301001400000075],[95.21697530000006,5.298304800000039],[95.21872960000007,5.298515400000042],[95.21892720000005,5.292340700000068],[95.22120820000004,5.290315100000043],[95.21911010000008,5.290110300000038],[95.21843,5.283614300000067],[95.21594750000008,5.282455200000072],[95.21474580000006,5.278176100000053],[95.21183270000006,5.274993500000051],[95.21480740000004,5.275777400000038],[95.21967710000007,5.270868],[95.22297250000008,5.274126600000045],[95.22307010000009,5.277757700000052],[95.22878620000006,5.28260030000007],[95.22933260000008,5.284965700000043],[95.24007320000004,5.281660100000067],[95.24668720000005,5.272438300000033],[95.24783630000007,5.264916800000037],[95.24559850000009,5.265536900000029],[95.23964020000005,5.261748700000055],[95.23653730000007,5.262946100000022],[95.23477190000006,5.259342200000049],[95.23267880000009,5.258194400000036],[95.23532120000004,5.251782700000035],[95.236078,5.255318],[95.23838920000009,5.257042700000056],[95.24459480000007,5.253458200000068],[95.24966290000003,5.247500800000068],[95.25346160000004,5.236065500000052],[95.25236040000004,5.227054700000053],[95.25045020000005,5.225358400000061],[95.24807030000005,5.22656360000002],[95.24163130000005,5.225781900000072],[95.24209180000008,5.222273900000062],[95.24269080000005,5.221395100000052],[95.24302490000008,5.222572300000024],[95.24663930000008,5.223148600000059],[95.25408230000005,5.221264100000042],[95.26079520000008,5.213588],[95.26455610000005,5.207046700000035],[95.26402580000007,5.205874],[95.27006090000003,5.197071100000073],[95.27528480000007,5.199676700000055],[95.28604090000005,5.195036200000061],[95.29991460000008,5.179376800000057],[95.30762110000006,5.16839710000005],[95.30680530000006,5.167326800000069],[95.30845440000007,5.166419900000051],[95.31288430000006,5.170471],[95.31954320000006,5.17269390000007],[95.32396540000008,5.178725],[95.33277430000004,5.181064900000024],[95.33283940000007,5.18290090000005],[95.32881240000006,5.186339900000064],[95.32948240000007,5.18911490000005],[95.33416540000007,5.19259],[95.33016720000006,5.197901],[95.33195340000003,5.199672900000053],[95.33028530000007,5.204813900000033],[95.33199240000005,5.208564900000056],[95.32705820000007,5.214772],[95.32672020000007,5.219234],[95.32215040000006,5.224075],[95.32549840000007,5.231238800000028],[95.331267,5.233957800000042],[95.33895740000008,5.233388],[95.34141780000004,5.234488200000044],[95.34793540000004,5.239625900000021],[95.34719840000008,5.24513],[95.35411030000006,5.246670900000026],[95.36524040000006,5.254206],[95.37010270000007,5.253619100000037],[95.37491570000003,5.250298600000065],[95.37723590000007,5.246930600000042],[95.37913370000007,5.238137300000062],[95.382844,5.237229700000057],[95.38684240000003,5.233938300000034],[95.38697340000004,5.22932140000006],[95.39231190000004,5.226918400000045],[95.39124440000006,5.219625600000029],[95.39524430000006,5.216781],[95.39822070000008,5.218258800000058],[95.39984960000004,5.216912300000047],[95.40191990000005,5.214521800000057],[95.40190420000005,5.210352300000068],[95.41232450000007,5.216268900000046],[95.41754390000006,5.221609700000045],[95.42704750000007,5.220828400000073],[95.43612020000006,5.223920400000054],[95.43907260000003,5.21914380000004],[95.45080570000005,5.218800300000055],[95.45985290000004,5.21534],[95.46236750000008,5.212649800000065],[95.46696830000008,5.211738400000058],[95.46935260000004,5.21366480000006],[95.47527920000005,5.209918800000025],[95.47944440000003,5.211540400000047],[95.48612820000005,5.211514],[95.49298580000004,5.217889800000023],[95.499679,5.220245600000055],[95.51600040000005,5.21601110000006],[95.53746710000007,5.21560020000004],[95.54821020000009,5.206147],[95.58186820000003,5.20923],[95.590034,5.204911],[95.593868,5.196254],[95.59710860000007,5.192460600000061],[95.60932540000005,5.191192500000056],[95.61643210000005,5.188259],[95.619708,5.18188],[95.623971,5.167297],[95.644147,5.140965],[95.64372390000005,5.139087600000039],[95.63525170000008,5.131478700000059],[95.62968370000004,5.110081900000068],[95.62952,5.10455],[95.630092,5.092734],[95.633747,5.082317],[95.642491,5.070857],[95.650877,5.066473],[95.663887,5.062878],[95.696071,5.058954],[95.70538580000004,5.052592300000072],[95.72053280000006,5.055520500000057],[95.73357780000003,5.053505500000028],[95.74322550000005,5.061176900000021],[95.75313590000007,5.069896500000027],[95.76066280000003,5.072750600000063],[95.76671980000003,5.073374500000057],[95.773351,5.071521500000074],[95.79324060000005,5.081183300000021],[95.80046620000007,5.079499],[95.80903670000004,5.083236100000022],[95.82123670000004,5.085348500000066],[95.82558880000005,5.095158],[95.831721,5.116311],[95.83996610000008,5.131306],[95.84114580000005,5.137914200000068],[95.83099520000007,5.16839090000002],[95.82278690000004,5.179897100000062],[95.80862050000007,5.194751900000028],[95.80591480000004,5.199996200000044],[95.79293890000008,5.212264700000048],[95.787639,5.222954],[95.78375030000007,5.242756300000053],[95.77918470000009,5.249118500000066],[95.77504510000006,5.252011],[95.77497310000007,5.256958100000077],[95.784331,5.258104],[95.78691220000007,5.261366100000032],[95.78863080000008,5.270613],[95.791463,5.273803],[95.79121090000007,5.280505900000037],[95.78705110000004,5.282943],[95.77360510000005,5.28556],[95.763888,5.290471],[95.75933290000006,5.297137900000052],[95.75804090000008,5.302442100000064],[95.76019190000005,5.304951],[95.76765,5.306062100000076],[95.76725510000006,5.310220100000038],[95.76252110000007,5.314414100000022],[95.75326990000008,5.314378],[95.748318,5.318034],[95.74734380000007,5.337573],[95.75186690000004,5.346027],[95.75017990000003,5.353518],[95.75996690000005,5.364665],[95.75993020000004,5.368572],[95.75612780000006,5.380078100000048],[95.75791920000006,5.390365],[95.76387,5.394701],[95.763726,5.39807090000005],[95.765625,5.402121],[95.764262,5.404916],[95.75859710000003,5.40721110000004],[95.75450890000008,5.411297],[95.75364710000008,5.419827],[95.75830690000004,5.424236],[95.76852520000006,5.429648],[95.77203910000009,5.428106],[95.77189510000005,5.429504100000031],[95.774513,5.429827100000068],[95.777667,5.433984],[95.78221990000009,5.435776],[95.77816880000006,5.436995],[95.780893,5.438501],[95.781933,5.441117],[95.77877690000008,5.44187],[95.778167,5.44635],[95.78125010000008,5.449146],[95.791325,5.453303],[95.78989010000004,5.456744],[95.786806,5.459145900000067],[95.78074610000004,5.461367900000027],[95.768663,5.462372],[95.76285410000008,5.465383],[95.755824,5.476996],[95.75144890000007,5.47947],[95.74284490000008,5.480868],[95.73286210000003,5.487924100000043],[95.72499,5.497176],[95.724842,5.499367],[95.73555820000007,5.508199],[95.73734520000005,5.513321],[95.73664210000004,5.515713],[95.728172,5.520605],[95.72453890000008,5.524937],[95.723973,5.532280900000046],[95.72786710000008,5.548082900000054],[95.73021790000007,5.551563],[95.742706,5.559086],[95.74571280000004,5.568929400000059]]],[[[95.14810590000008,5.66151270000006],[95.14024590000008,5.660269],[95.13691340000008,5.65606450000007],[95.14000570000007,5.655700600000046],[95.144078,5.648623600000064],[95.14315530000005,5.645094300000039],[95.145613,5.639202600000033],[95.14499660000007,5.634760800000038],[95.12677940000003,5.623806600000023],[95.11903090000004,5.615318500000058],[95.12106630000005,5.612250800000027],[95.12162270000005,5.607471400000065],[95.11881840000007,5.601762800000074],[95.12029460000008,5.600775500000054],[95.12117450000005,5.60274320000002],[95.12494560000005,5.602352300000064],[95.12580230000003,5.596434800000054],[95.12948990000007,5.593911100000071],[95.13337060000003,5.598013200000025],[95.13636210000004,5.606335400000034],[95.13978290000006,5.607368200000053],[95.14406510000003,5.606236700000068],[95.14610970000007,5.602832100000057],[95.14476640000004,5.594916700000056],[95.14895410000008,5.591537900000048],[95.15049750000009,5.595495100000051],[95.15310690000007,5.596456800000055],[95.15567270000008,5.594649200000049],[95.15908730000007,5.598335100000043],[95.16221060000004,5.597881100000052],[95.16400660000005,5.600608600000044],[95.16713410000006,5.60085440000006],[95.16711250000009,5.606455],[95.18588860000006,5.608858300000065],[95.18987250000004,5.60706650000003],[95.19033970000004,5.605398900000068],[95.19427420000005,5.605017600000053],[95.19117520000003,5.607241400000021],[95.19163280000004,5.610091900000043],[95.18738020000006,5.611551600000041],[95.18092760000008,5.61995950000005],[95.17420250000004,5.621846100000027],[95.17096970000006,5.625061100000039],[95.17070970000003,5.631344800000022],[95.16785340000007,5.632150500000023],[95.165639,5.636864100000025],[95.16699960000005,5.641053700000043],[95.16173810000004,5.637681600000064],[95.15830430000005,5.640818],[95.15727350000003,5.644245300000023],[95.15849260000005,5.647947900000077],[95.16611560000007,5.649410900000021],[95.16586530000006,5.651659400000028],[95.15897950000004,5.653033600000072],[95.15694540000004,5.659709900000053],[95.14810590000008,5.66151270000006]]],[[[95.03917220000005,5.671911400000056],[95.03452490000006,5.671081500000071],[95.03794930000004,5.669985200000042],[95.03917220000005,5.671911400000056]]],[[[95.05953310000007,5.749818600000026],[95.05645770000007,5.754080200000033],[95.05590230000007,5.750387100000069],[95.04501380000005,5.750241100000039],[95.04083020000007,5.747360700000058],[95.03713150000004,5.750637200000028],[95.03215390000008,5.749641200000042],[95.03061730000007,5.751132900000073],[95.026791,5.749725500000068],[95.02602250000007,5.747912400000075],[95.03068270000006,5.746268600000064],[95.03070760000008,5.742836100000034],[95.02246040000006,5.738034800000037],[95.02125590000009,5.734888600000033],[95.01647770000005,5.733008500000039],[95.01387560000006,5.726783800000021],[95.01114650000005,5.723995600000023],[95.01748340000006,5.719169200000067],[95.02736130000005,5.725823],[95.03023960000007,5.724968400000023],[95.03364590000007,5.729644],[95.03815580000008,5.730312],[95.03839440000007,5.732569500000068],[95.04563790000003,5.737254300000075],[95.04881130000007,5.734785400000021],[95.04976470000008,5.728708600000061],[95.04674110000008,5.724313900000027],[95.04746520000003,5.722537800000055],[95.05969420000008,5.720205700000065],[95.06082460000005,5.715415300000075],[95.05935470000009,5.712367100000051],[95.05648140000005,5.713052700000048],[95.05490780000008,5.712037500000065],[95.055054,5.710104800000067],[95.05186820000006,5.709534500000075],[95.05070620000004,5.710890800000072],[95.04696930000006,5.710778900000037],[95.03875,5.707247],[95.04077550000005,5.706691600000056],[95.03980730000006,5.703650400000072],[95.04285870000007,5.703017300000056],[95.04380980000008,5.701243900000065],[95.04105940000005,5.697868800000037],[95.041913,5.697384400000033],[95.04049450000008,5.693384],[95.045417,5.697368500000039],[95.05057420000009,5.697015200000067],[95.05366110000006,5.692055700000026],[95.05823490000006,5.689019400000063],[95.059517,5.684343100000035],[95.05887370000005,5.679093600000044],[95.05064640000006,5.676171700000054],[95.04719470000003,5.672998300000074],[95.04322230000008,5.672391800000071],[95.04382340000006,5.67118030000006],[95.04853510000004,5.672829600000057],[95.05527840000008,5.671201500000052],[95.06539080000005,5.671768400000076],[95.07011970000008,5.666388700000027],[95.07025680000004,5.663893600000051],[95.06568650000008,5.660886600000026],[95.06516320000009,5.658242200000075],[95.05913340000006,5.65556470000007],[95.05729660000009,5.651692700000069],[95.05319440000005,5.651672],[95.05521660000005,5.64823240000004],[95.05945370000006,5.64860520000002],[95.07082860000008,5.654941300000075],[95.07776720000004,5.656860900000027],[95.07820180000004,5.658782700000074],[95.07666810000006,5.660986500000035],[95.07781840000007,5.666242900000043],[95.07102210000005,5.666297300000053],[95.07205880000004,5.668301500000041],[95.07591990000003,5.669294300000047],[95.08072940000005,5.666805500000066],[95.088236,5.669068400000072],[95.09786330000009,5.66890490000003],[95.09818760000007,5.666590900000074],[95.10205490000004,5.668847400000061],[95.11037220000009,5.66704720000007],[95.11127570000008,5.669168100000036],[95.11743970000003,5.672396300000059],[95.13460610000004,5.66823560000006],[95.13712740000005,5.666683800000044],[95.13885250000004,5.662993100000051],[95.14051360000008,5.663926500000059],[95.14303130000008,5.666665500000022],[95.14154410000003,5.66708710000006],[95.14215980000006,5.669415300000026],[95.138719,5.673581200000058],[95.13683320000007,5.674251],[95.13392070000003,5.671843200000069],[95.13310360000008,5.672635900000046],[95.13239780000004,5.670218100000056],[95.13164050000006,5.671959100000038],[95.12996560000005,5.670643100000063],[95.12987680000003,5.673278900000071],[95.138073,5.675926400000037],[95.13475950000009,5.679806300000052],[95.13271230000004,5.686003600000049],[95.12841590000005,5.686278600000037],[95.12824430000006,5.690355],[95.12529760000007,5.692059900000061],[95.12406710000005,5.690067100000022],[95.120793,5.688884],[95.11427870000006,5.692433600000072],[95.11376850000005,5.694871800000044],[95.10640910000006,5.695967],[95.10576790000005,5.697734],[95.11189880000006,5.70093410000004],[95.11164960000008,5.704506500000036],[95.10864110000006,5.709072800000058],[95.10527840000003,5.710673600000064],[95.10519290000008,5.712814],[95.10082930000004,5.712609600000064],[95.09672220000004,5.714225300000066],[95.09577380000007,5.717669900000033],[95.09093430000007,5.721144600000059],[95.09197020000005,5.722901900000068],[95.09038340000006,5.724529600000039],[95.08617730000003,5.724599600000033],[95.08507440000005,5.721389800000054],[95.08213270000005,5.720217600000069],[95.07770470000008,5.721213900000066],[95.07739550000008,5.723312800000031],[95.07283010000003,5.722839300000032],[95.07132180000008,5.726739],[95.07279270000004,5.730035600000065],[95.06726420000007,5.733877600000028],[95.06451080000005,5.734153700000036],[95.06346010000004,5.738587700000039],[95.06632070000006,5.74360530000007],[95.07177630000007,5.744439700000044],[95.067047,5.747392200000036],[95.06052,5.747223600000041],[95.05953310000007,5.749818600000026]]]]},"properties":{"shapeName":"Aceh Besar","shapeISO":"","shapeID":"22746128B15901200117820","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[95.58430930000009,4.614949900000056],[95.58558380000005,4.615467600000045],[95.58322520000007,4.619075],[95.58182240000008,4.615075],[95.58430930000009,4.614949900000056]]],[[[95.576225,4.618868300000031],[95.57669910000004,4.622001],[95.57323290000005,4.623290600000075],[95.57252620000008,4.619810400000063],[95.576225,4.618868300000031]]],[[[95.56598610000003,4.644007100000067],[95.56716370000004,4.646015800000043],[95.56433280000005,4.649129500000072],[95.56348020000007,4.644519500000058],[95.56598610000003,4.644007100000067]]],[[[95.55988730000007,4.644951900000024],[95.56056610000007,4.647717300000068],[95.55914950000005,4.648980600000073],[95.55891240000005,4.652755900000045],[95.55665180000005,4.651757600000053],[95.55547180000008,4.649077800000043],[95.55646340000004,4.645887],[95.55988730000007,4.644951900000024]]],[[[95.56994190000006,4.651457500000049],[95.57379630000008,4.65395970000003],[95.57380360000008,4.655972700000063],[95.56963040000005,4.657749300000035],[95.56728220000008,4.655661],[95.56797830000005,4.651683300000059],[95.56994190000006,4.651457500000049]]],[[[95.51076470000004,4.691376],[95.50664490000008,4.69109560000004],[95.50523830000009,4.688045600000066],[95.50791160000006,4.688828],[95.50973680000004,4.686193200000048],[95.51172850000006,4.686649700000032],[95.51076470000004,4.691376]]],[[[95.48999830000008,4.725691600000061],[95.48813780000006,4.726485500000024],[95.48519030000006,4.725020100000052],[95.48391890000005,4.726008700000023],[95.48106080000008,4.72208310000002],[95.48292170000008,4.721387700000037],[95.48498930000005,4.723643300000049],[95.48910410000008,4.722447800000054],[95.48999830000008,4.725691600000061]]],[[[95.45127670000005,4.77302270000007],[95.45088210000006,4.777112],[95.44268880000004,4.776316100000031],[95.44145580000009,4.775092900000061],[95.44267380000008,4.772228],[95.45269960000007,4.770157200000028],[95.45127670000005,4.77302270000007]]],[[[95.377307,4.877136900000039],[95.37018160000008,4.87768630000005],[95.36587280000003,4.875448],[95.36586390000008,4.873199400000033],[95.37441750000005,4.861526400000059],[95.37994180000004,4.860490700000071],[95.38320910000004,4.858234],[95.39021010000005,4.868233700000076],[95.39003370000006,4.875389200000029],[95.38513030000007,4.878058900000042],[95.377307,4.877136900000039]]],[[[95.29304820000004,5.125765],[95.29348950000008,5.128276300000039],[95.28995130000004,5.130195300000025],[95.28795960000008,5.129335900000058],[95.28795,5.126649800000052],[95.29304820000004,5.125765]]],[[[96.04244830000005,4.65757050000002],[96.03198280000004,4.669833600000061],[96.03146860000004,4.683649500000058],[96.02807140000004,4.694024600000034],[96.00819650000005,4.741308400000037],[96.00477660000007,4.74650360000004],[95.99673640000003,4.752182800000071],[95.99467630000004,4.756330700000035],[95.99541410000006,4.767490100000032],[95.99315940000008,4.782714400000032],[95.99115750000004,4.786596],[95.97878930000007,4.796442500000069],[95.97166290000007,4.809959],[95.96124970000005,4.820008400000063],[95.95575640000004,4.831271500000071],[95.922436,4.848546],[95.91590730000007,4.855518500000073],[95.90181720000004,4.866399300000069],[95.88594370000004,4.893852200000026],[95.88231250000007,4.908998300000064],[95.87905860000006,4.914939600000025],[95.855163,4.929534200000035],[95.85174080000007,4.944682],[95.84787720000008,4.95124],[95.82279460000007,4.974229700000024],[95.80300160000007,4.988407500000051],[95.796366,5.001724400000057],[95.78394,5.008995],[95.778492,5.022271],[95.772471,5.027358],[95.766414,5.037975],[95.7624,5.055709],[95.74322550000005,5.061176900000021],[95.73357780000003,5.053505500000028],[95.72053280000006,5.055520500000057],[95.70538580000004,5.052592300000072],[95.696071,5.058954],[95.663887,5.062878],[95.650877,5.066473],[95.642491,5.070857],[95.633747,5.082317],[95.630092,5.092734],[95.62952,5.10455],[95.62968370000004,5.110081900000068],[95.63525170000008,5.131478700000059],[95.64372390000005,5.139087600000039],[95.644147,5.140965],[95.623971,5.167297],[95.619708,5.18188],[95.61643210000005,5.188259],[95.60932540000005,5.191192500000056],[95.59710860000007,5.192460600000061],[95.593868,5.196254],[95.590034,5.204911],[95.58186820000003,5.20923],[95.54821020000009,5.206147],[95.53746710000007,5.21560020000004],[95.51600040000005,5.21601110000006],[95.499679,5.220245600000055],[95.49298580000004,5.217889800000023],[95.48612820000005,5.211514],[95.47944440000003,5.211540400000047],[95.47527920000005,5.209918800000025],[95.46935260000004,5.21366480000006],[95.46696830000008,5.211738400000058],[95.46236750000008,5.212649800000065],[95.45985290000004,5.21534],[95.45080570000005,5.218800300000055],[95.43907260000003,5.21914380000004],[95.43612020000006,5.223920400000054],[95.42704750000007,5.220828400000073],[95.41754390000006,5.221609700000045],[95.41232450000007,5.216268900000046],[95.40190420000005,5.210352300000068],[95.40191990000005,5.214521800000057],[95.39984960000004,5.216912300000047],[95.39822070000008,5.218258800000058],[95.39524430000006,5.216781],[95.39124440000006,5.219625600000029],[95.39231190000004,5.226918400000045],[95.38697340000004,5.22932140000006],[95.38684240000003,5.233938300000034],[95.382844,5.237229700000057],[95.37913370000007,5.238137300000062],[95.37723590000007,5.246930600000042],[95.37491570000003,5.250298600000065],[95.37010270000007,5.253619100000037],[95.36524040000006,5.254206],[95.35411030000006,5.246670900000026],[95.34719840000008,5.24513],[95.34793540000004,5.239625900000021],[95.34141780000004,5.234488200000044],[95.33895740000008,5.233388],[95.331267,5.233957800000042],[95.32549840000007,5.231238800000028],[95.32215040000006,5.224075],[95.32672020000007,5.219234],[95.32705820000007,5.214772],[95.33199240000005,5.208564900000056],[95.33028530000007,5.204813900000033],[95.33195340000003,5.199672900000053],[95.33016720000006,5.197901],[95.33416540000007,5.19259],[95.32948240000007,5.18911490000005],[95.32881240000006,5.186339900000064],[95.33283940000007,5.18290090000005],[95.33277430000004,5.181064900000024],[95.32396540000008,5.178725],[95.31954320000006,5.17269390000007],[95.31288430000006,5.170471],[95.30845440000007,5.166419900000051],[95.30680530000006,5.167326800000069],[95.30867590000008,5.162148800000068],[95.30590040000004,5.149984800000027],[95.30712480000005,5.146591800000067],[95.30540520000005,5.144211600000062],[95.30497270000006,5.139355300000034],[95.30142230000007,5.138994400000058],[95.30647890000006,5.131876300000044],[95.30974690000005,5.131448300000045],[95.31073810000004,5.129143200000044],[95.30575020000003,5.123799200000065],[95.303816,5.125046300000065],[95.29884110000006,5.119349],[95.28985160000008,5.120459600000061],[95.28656230000007,5.119285200000036],[95.28140690000004,5.11501990000005],[95.283451,5.114365600000042],[95.28435620000005,5.111450900000023],[95.28267610000006,5.108437500000036],[95.28396620000007,5.107785900000067],[95.28925290000006,5.110355100000049],[95.29178140000005,5.109645100000023],[95.29934470000006,5.116357600000072],[95.30357420000007,5.115112100000033],[95.30411050000004,5.109141200000067],[95.30817090000005,5.10698270000006],[95.31221580000005,5.10191020000002],[95.31076160000003,5.097915400000034],[95.31340360000007,5.097744500000033],[95.31575180000004,5.093591700000047],[95.31950330000006,5.093433800000071],[95.32064570000006,5.090796900000043],[95.31955830000004,5.08459890000006],[95.31635870000008,5.080556300000069],[95.31038010000003,5.082044100000076],[95.30599250000006,5.081199100000049],[95.31267450000007,5.07796490000004],[95.31637240000003,5.078993500000024],[95.31852240000006,5.077596600000049],[95.31816720000006,5.075128300000074],[95.31985890000004,5.074717100000044],[95.32129160000005,5.071892600000069],[95.31986970000008,5.070712400000048],[95.32018990000006,5.068349200000057],[95.32328720000004,5.069124400000021],[95.32518770000007,5.067812400000037],[95.33028230000008,5.059172700000033],[95.33275650000007,5.050077800000054],[95.336255,5.048740500000065],[95.33965580000006,5.051475800000048],[95.344991,5.049793400000055],[95.35339790000006,5.043452300000069],[95.35693610000004,5.038040400000057],[95.35833940000003,5.039437500000076],[95.36239880000005,5.038821900000073],[95.36659510000004,5.032236200000057],[95.36856610000007,5.022163700000021],[95.36723240000003,5.01364030000002],[95.36208720000008,5.011346500000059],[95.354708,5.012836700000037],[95.35463090000007,5.011444900000072],[95.35854490000008,5.008403],[95.35567930000008,5.006949800000029],[95.35565350000007,5.003957],[95.357578,5.002436300000056],[95.35800310000008,4.998429700000031],[95.35933760000006,4.997562600000037],[95.36218470000006,4.997571500000049],[95.36456360000005,5.000226500000053],[95.36837430000008,4.997348600000066],[95.37030670000007,4.98723270000005],[95.37472340000005,4.982977700000049],[95.37407670000005,4.975821],[95.38121970000003,4.970691700000032],[95.38077030000005,4.961694600000044],[95.37707420000004,4.959249200000045],[95.37500170000004,4.953528200000051],[95.36883980000005,4.949043800000027],[95.37145750000008,4.938813900000071],[95.37593590000006,4.932669200000021],[95.37856310000006,4.924484300000074],[95.378343,4.920804500000031],[95.38653120000004,4.920376100000055],[95.38978420000007,4.914847900000041],[95.39280420000006,4.902368900000056],[95.40239410000004,4.89416760000006],[95.39943130000006,4.891194800000051],[95.39524770000008,4.881223900000066],[95.39476770000005,4.879561300000034],[95.39699560000008,4.875253600000065],[95.39501790000008,4.874762100000055],[95.39752010000007,4.873355600000025],[95.39694450000007,4.871686300000022],[95.39918080000007,4.869050500000071],[95.40534970000004,4.865129800000034],[95.41105390000007,4.857756],[95.41779960000008,4.854877],[95.42632740000005,4.836252500000057],[95.42651420000004,4.83155030000006],[95.42485910000005,4.82705720000007],[95.41727230000004,4.82421480000005],[95.41318190000004,4.825451700000031],[95.41316320000004,4.820545800000048],[95.423595,4.817657200000042],[95.42745460000003,4.809470600000054],[95.43686570000006,4.807402100000047],[95.44301440000004,4.809021400000063],[95.44689630000005,4.80676260000007],[95.45178310000006,4.79939070000006],[95.45399990000004,4.789777300000026],[95.45398790000007,4.786506700000075],[95.45192980000007,4.783650400000056],[95.46337520000009,4.777896300000066],[95.47297130000004,4.770307200000047],[95.48725480000007,4.756572600000027],[95.49771180000005,4.743473100000074],[95.49640050000005,4.737332600000059],[95.49945420000006,4.737071200000059],[95.506098,4.730061300000045],[95.51321750000005,4.719015500000069],[95.51372190000006,4.713572500000055],[95.51220920000009,4.711344500000052],[95.51043440000007,4.710311200000035],[95.50691910000006,4.712937900000043],[95.50429370000006,4.710941800000057],[95.50775610000005,4.705617400000051],[95.51032820000006,4.706431700000053],[95.52274920000008,4.697039500000074],[95.52948870000006,4.68953730000004],[95.53289970000009,4.683621500000072],[95.53244040000004,4.678769400000022],[95.53426170000006,4.672427500000026],[95.53610180000004,4.674164300000029],[95.54061150000007,4.67385280000002],[95.54207430000008,4.671584500000051],[95.539021,4.667856800000038],[95.540574,4.663423600000044],[95.53849780000007,4.658708300000058],[95.539665,4.656047500000057],[95.540841,4.655846500000052],[95.54183140000004,4.658597900000075],[95.543599,4.659280200000069],[95.551433,4.656300100000067],[95.55751830000008,4.657852200000036],[95.55613490000007,4.66153],[95.55871780000007,4.664144800000031],[95.55823990000005,4.667590100000041],[95.561973,4.669445900000028],[95.56804760000006,4.668046200000049],[95.57224330000008,4.662324300000023],[95.57636380000008,4.662899500000037],[95.58292570000003,4.660710900000026],[95.585163,4.655783300000053],[95.58458090000005,4.64977360000006],[95.58701720000005,4.650400200000036],[95.58106080000005,4.644898700000056],[95.57874510000005,4.645870800000068],[95.57248280000005,4.644256],[95.57537170000006,4.638838900000053],[95.57183290000006,4.636065600000052],[95.56946660000006,4.63758340000004],[95.56575950000007,4.636261900000022],[95.56791660000005,4.633081900000036],[95.56764750000008,4.630450500000052],[95.57030680000008,4.629976400000032],[95.573378,4.631416400000035],[95.57678,4.628385600000058],[95.58128830000004,4.62732440000002],[95.58176320000007,4.630689300000029],[95.58003370000006,4.632320800000059],[95.58241470000007,4.634866100000067],[95.58750840000005,4.635718100000076],[95.60332970000007,4.627824100000055],[95.62216580000006,4.612946500000021],[95.64221980000008,4.592281700000058],[95.67411010000006,4.568916800000068],[95.68246410000006,4.557836200000054],[95.69251190000006,4.550745400000039],[95.71035290000003,4.533971300000076],[95.71251960000006,4.534096200000022],[95.71457730000009,4.528720400000054],[95.72917180000007,4.518398800000057],[95.75228170000008,4.496682700000065],[95.76285640000003,4.492417800000055],[95.87687970000007,4.367495800000029],[95.88477450000005,4.375332600000036],[95.88969,4.377866900000072],[95.89543640000005,4.387705500000038],[95.91114990000005,4.406526300000053],[95.91087280000005,4.408764700000063],[95.91324910000009,4.410618900000031],[95.916559,4.418979300000046],[95.91891830000009,4.432821800000056],[95.92318720000009,4.436014900000032],[95.92723120000005,4.443482],[95.93611850000008,4.467413700000066],[95.94635260000007,4.484837600000048],[95.95620480000008,4.505882900000074],[95.96079290000006,4.512294800000063],[95.97114080000006,4.523315300000036],[95.98725630000007,4.535425],[95.99445980000007,4.538368],[96.00000950000003,4.538936800000045],[96.00568410000005,4.546212800000035],[96.01978070000007,4.556818100000044],[96.03126880000008,4.562184600000023],[96.03667980000006,4.562444500000026],[96.04703080000007,4.566742400000066],[96.04686380000004,4.580423],[96.04822340000004,4.583252600000037],[96.05168990000004,4.583413900000039],[96.05058190000005,4.592627600000071],[96.04658650000005,4.597249200000022],[96.03685530000007,4.601895400000046],[96.02905350000003,4.614283100000023],[96.03367810000003,4.630180600000074],[96.032598,4.632130600000039],[96.03344230000005,4.64137960000005],[96.04244830000005,4.65757050000002]]]]},"properties":{"shapeName":"Aceh Jaya","shapeISO":"","shapeID":"22746128B54928974934579","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[97.594611,2.807767400000046],[97.59327950000005,2.809547200000054],[97.59269060000008,2.807987800000035],[97.594611,2.807767400000046]]],[[[97.51977810000005,2.881818],[97.51978640000004,2.883926],[97.51846820000009,2.884399700000074],[97.51721660000004,2.882062500000075],[97.51961850000004,2.880725600000062],[97.51977810000005,2.881818]]],[[[97.51591660000008,2.887142500000039],[97.51608020000003,2.889249800000073],[97.51429490000004,2.88941310000007],[97.51359050000008,2.88801060000003],[97.51591660000008,2.887142500000039]]],[[[97.31653220000004,3.057920100000047],[97.31673950000004,3.060845800000038],[97.30984130000007,3.071605800000043],[97.313935,3.060070200000041],[97.31653220000004,3.057920100000047]]],[[[97.31724620000006,3.075236600000039],[97.31718680000006,3.07783790000002],[97.31293690000007,3.081792],[97.30915440000007,3.080260800000076],[97.31057010000006,3.075826100000029],[97.31724620000006,3.075236600000039]]],[[[97.304952,3.110544400000038],[97.30047270000006,3.110739800000033],[97.301829,3.109179300000051],[97.304952,3.110544400000038]]],[[[96.99617880000005,3.538384300000075],[96.99669940000007,3.541130200000055],[96.99380620000005,3.541334500000062],[96.99389150000007,3.538969400000042],[96.99617880000005,3.538384300000075]]],[[[96.94195880000007,3.574638300000061],[96.94027260000007,3.569574100000068],[96.970635,3.558034],[96.98655350000007,3.554512100000068],[96.99307990000005,3.551072400000066],[96.99429950000007,3.544964200000038],[96.99738940000003,3.546271900000022],[96.99974480000009,3.545269400000052],[97.00162670000003,3.536642800000038],[97.00461420000005,3.53089140000003],[97.01657530000006,3.521407900000042],[97.01840410000005,3.507325800000046],[97.02880760000005,3.49638740000006],[97.04567760000003,3.474697],[97.04633130000008,3.471108400000048],[97.05199880000004,3.461551400000076],[97.04951450000004,3.456057700000031],[97.05165350000004,3.455011500000069],[97.05579160000008,3.457386900000074],[97.05762440000007,3.456054100000074],[97.05796450000008,3.445651],[97.06266940000006,3.443423400000029],[97.06326150000007,3.440522800000053],[97.06046350000008,3.435908],[97.06069050000008,3.433274500000039],[97.06202680000007,3.430157700000052],[97.06749090000005,3.427023200000065],[97.07082490000005,3.427009],[97.06939550000004,3.418131800000026],[97.07046120000007,3.416081800000029],[97.078822,3.409604200000047],[97.07929850000005,3.405041900000072],[97.08205970000006,3.40422540000003],[97.08461780000005,3.400478200000066],[97.084328,3.395037900000034],[97.09285730000005,3.387024100000076],[97.100025,3.377261200000021],[97.10304260000004,3.370339700000045],[97.105988,3.367881700000055],[97.10741380000007,3.363015800000028],[97.10890320000004,3.361873100000025],[97.11283390000006,3.363907500000039],[97.10995340000005,3.362406600000043],[97.10946090000004,3.360044400000049],[97.11418020000008,3.358685100000059],[97.11562290000006,3.356040900000039],[97.11857170000007,3.356231300000047],[97.12198680000006,3.352139500000021],[97.12237780000004,3.346373300000039],[97.12064370000007,3.341789900000038],[97.12126880000005,3.33285410000002],[97.12641180000008,3.327364300000056],[97.12604330000005,3.321176500000036],[97.12842950000004,3.317734],[97.13358750000003,3.317333800000029],[97.14020350000004,3.312743100000034],[97.14471620000006,3.306554200000051],[97.15080040000004,3.290569900000037],[97.15773250000007,3.283746300000075],[97.15821630000005,3.27298380000002],[97.16510320000003,3.270055700000057],[97.16689630000008,3.26665980000007],[97.16713520000008,3.260625700000048],[97.17189760000008,3.25509640000007],[97.17686970000005,3.251616800000022],[97.17915820000007,3.251853900000071],[97.18077120000004,3.252633],[97.18152080000004,3.255958200000066],[97.187826,3.25699510000004],[97.18920840000004,3.261378500000035],[97.19122230000005,3.261993200000063],[97.19495520000004,3.25798960000003],[97.19553440000004,3.252987300000029],[97.20067330000006,3.249329900000021],[97.20943670000008,3.251241300000061],[97.21712720000005,3.245067500000062],[97.22173080000005,3.243395100000043],[97.22048580000006,3.237931100000026],[97.22356190000005,3.232162800000026],[97.23047170000007,3.232046],[97.23626110000004,3.235978],[97.24401040000004,3.236385900000073],[97.257573,3.22063490000005],[97.26421150000004,3.210910200000058],[97.26414770000008,3.208659100000034],[97.27575440000004,3.185999300000049],[97.28478210000009,3.153633600000035],[97.28764670000004,3.148079100000075],[97.28658640000003,3.145632800000044],[97.28872050000007,3.142389700000024],[97.29155310000004,3.130209900000068],[97.29751740000006,3.114337500000033],[97.29896470000006,3.112697400000059],[97.30059910000006,3.112967400000059],[97.30074580000007,3.116328900000042],[97.30199910000005,3.117133100000046],[97.31018690000008,3.108284800000035],[97.31283060000004,3.100548200000048],[97.32028440000005,3.098994],[97.312758,3.098409100000026],[97.30903680000006,3.095653],[97.31043230000006,3.102568700000063],[97.30921090000004,3.105622400000073],[97.30669940000007,3.107069800000033],[97.30472360000005,3.106417300000032],[97.30410880000005,3.103656600000022],[97.30811810000006,3.10072260000004],[97.30542580000008,3.100768800000026],[97.30235720000007,3.102855300000044],[97.29926530000006,3.10785930000003],[97.30860350000006,3.082407300000057],[97.31426730000004,3.082643200000064],[97.31781660000007,3.077940800000022],[97.31738270000005,3.074392400000022],[97.31131420000008,3.075305],[97.311052,3.073768100000052],[97.31955850000008,3.058901400000025],[97.31899450000009,3.054813500000023],[97.36967660000005,2.988607600000023],[97.39295780000003,2.963075400000037],[97.42512790000006,2.934293400000058],[97.44731960000007,2.923158800000067],[97.46320420000006,2.923054800000045],[97.48665710000006,2.920244900000057],[97.49885750000004,2.912716600000067],[97.50458440000006,2.905887300000074],[97.50536250000005,2.902541],[97.51120760000003,2.903880800000024],[97.513092,2.902741800000058],[97.52209570000008,2.889461900000072],[97.53066860000007,2.886145],[97.53447250000005,2.882983800000034],[97.53957240000005,2.881705],[97.54287060000007,2.88241910000005],[97.549195,2.888066300000048],[97.55236240000005,2.889083600000049],[97.56302440000007,2.886202100000048],[97.57584050000008,2.888244900000075],[97.58218070000004,2.886371],[97.59248360000004,2.877218200000073],[97.59224880000005,2.878899500000045],[97.60405330000003,2.857768900000053],[97.61498980000005,2.829282200000023],[97.61911740000005,2.806156300000055],[97.634054,2.752202900000043],[97.64233990000008,2.712942300000066],[97.647913,2.678298500000039],[97.65006140000008,2.662090100000057],[97.65449180000007,2.589355],[97.65673190000007,2.519981700000073],[97.65532050000007,2.472841200000062],[97.66110530000003,2.401928300000066],[97.66391370000008,2.394431500000053],[97.66524680000003,2.394796100000065],[97.68651430000006,2.402495],[97.70797510000006,2.408206],[97.73215030000006,2.422655],[97.74960810000005,2.442872],[97.79094270000007,2.499805],[97.79174090000004,2.507346400000074],[97.79549930000007,2.547183],[97.82510310000004,2.636842],[97.81387210000008,2.652823],[97.81700490000009,2.668531],[97.77979060000007,2.758695],[97.76642040000007,2.787164400000052],[97.836561,2.826539],[97.85254680000008,2.837381],[97.86024380000003,2.84658],[97.859997,2.860121],[97.85722370000008,2.869138],[97.85819430000004,2.881716],[97.88643370000005,2.894286],[97.90173520000008,2.907203],[97.90487030000008,2.911693],[97.908018,2.925855],[97.906447,2.954723],[97.89963,2.965767],[97.87171320000004,2.967348],[97.81500090000009,2.982211900000038],[97.81392750000003,2.980455300000074],[97.81573390000005,2.975449600000047],[97.81362750000005,2.966355300000032],[97.80639850000006,2.960445],[97.80332750000008,2.963155300000039],[97.79925550000007,2.974865600000044],[97.79296380000005,2.974340700000027],[97.77668760000006,2.96553],[97.76949920000004,2.957086900000036],[97.76843710000009,2.948376],[97.76389160000008,2.936466],[97.75852750000007,2.930255300000056],[97.75347910000005,2.926899],[97.74310580000008,2.927828200000022],[97.69514,2.941662400000041],[97.65390830000007,2.947563],[97.64053840000008,2.954299],[97.63442750000007,2.965055300000074],[97.63312750000006,2.973555300000044],[97.63362530000006,3.007744],[97.634471,3.014531],[97.64132960000006,3.023060200000032],[97.64290880000004,3.029422700000055],[97.61540720000005,3.092737],[97.61054640000003,3.100872600000059],[97.59862750000008,3.113255300000048],[97.57562750000005,3.127255300000058],[97.55112750000006,3.149555300000031],[97.51982750000008,3.16755530000006],[97.47782750000005,3.217255300000033],[97.47500810000008,3.22284570000005],[97.47041080000008,3.241104200000052],[97.47141230000005,3.263180800000043],[97.46701170000006,3.273244200000022],[97.46861590000003,3.301273700000024],[97.47350420000004,3.331587],[97.46825830000006,3.338427600000045],[97.45646740000007,3.361863300000039],[97.43841620000006,3.401664600000061],[97.42438160000006,3.421759300000076],[97.41227470000007,3.434321],[97.39806610000005,3.452824100000043],[97.39830560000007,3.455148100000031],[97.41410320000006,3.482020100000057],[97.44122020000003,3.521743],[97.45208880000007,3.539983500000062],[97.45586040000006,3.542191200000048],[97.47911580000005,3.544981600000028],[97.48150730000003,3.546502500000031],[97.48387350000007,3.551704100000052],[97.48435010000009,3.558247900000026],[97.48294310000006,3.56228150000004],[97.47245880000008,3.569235100000071],[97.46903870000006,3.575527700000066],[97.46802970000005,3.589945700000044],[97.46283340000008,3.60179990000006],[97.46256590000007,3.615924800000073],[97.45803550000005,3.626591],[97.45004530000006,3.634220900000059],[97.44267190000005,3.637021],[97.43164680000007,3.638469400000076],[97.41949370000003,3.623772600000052],[97.41006950000008,3.619600200000036],[97.40428620000006,3.618795100000057],[97.40056850000008,3.620684100000062],[97.38031790000008,3.640031400000055],[97.37203410000006,3.641117],[97.36704570000006,3.638234100000034],[97.35827070000005,3.62573],[97.344089,3.622769],[97.33040690000007,3.612899500000026],[97.29532560000007,3.59923630000003],[97.29334270000004,3.612474100000043],[97.28740710000005,3.627932200000032],[97.28458460000007,3.639605300000028],[97.27985030000008,3.648255500000062],[97.275827,3.65075470000005],[97.26352450000007,3.652320600000053],[97.22422290000009,3.678762500000062],[97.20615790000005,3.6939],[97.18008510000004,3.723951500000055],[97.15358140000006,3.74558630000007],[97.15104960000008,3.739627400000074],[97.14204750000005,3.734113900000068],[97.13810130000007,3.717817700000069],[97.13520480000005,3.695956700000067],[97.13217360000004,3.690431100000069],[97.11462580000006,3.680242600000042],[97.10729710000004,3.674126100000024],[97.06183130000005,3.629513900000063],[97.05293360000007,3.62361240000007],[97.04404410000006,3.622311400000058],[97.03454890000006,3.605927100000031],[97.030469,3.603782],[97.02583,3.604412800000034],[97.02020670000007,3.607647600000064],[97.01366270000005,3.609212700000057],[97.00067090000005,3.615849],[96.99687570000003,3.619771200000059],[96.99051060000005,3.621943900000076],[96.98323680000004,3.621329500000058],[96.97021450000005,3.622966500000075],[96.96804650000007,3.616262300000074],[96.96593890000008,3.61511310000003],[96.96599170000007,3.616341800000043],[96.96294160000008,3.61289],[96.95898220000004,3.603841200000033],[96.95001470000005,3.592917100000022],[96.94449950000006,3.583044100000052],[96.94195880000007,3.574638300000061]]]]},"properties":{"shapeName":"Aceh Selatan","shapeISO":"","shapeID":"22746128B17266888611210","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[97.39178210000006,2.037480900000048],[97.39259710000005,2.040875200000073],[97.39052790000005,2.043946500000061],[97.38441540000008,2.043962900000054],[97.38400030000008,2.042176700000027],[97.38663280000009,2.037686700000052],[97.39178210000006,2.037480900000048]]],[[[97.35355640000006,2.074990200000059],[97.350537,2.07725540000007],[97.348808,2.074531],[97.35030160000008,2.067493900000045],[97.35300710000007,2.064914700000031],[97.35661450000003,2.067843800000048],[97.355797,2.074091700000054],[97.35355640000006,2.074990200000059]]],[[[97.113005,2.113689],[97.104261,2.110974],[97.099198,2.113225],[97.097909,2.112543],[97.094571,2.108742],[97.093468,2.105108],[97.094368,2.100574],[97.098741,2.092924],[97.097509,2.089154],[97.093422,2.087594],[97.086984,2.089626],[97.081694,2.089246],[97.078692,2.086232],[97.079397,2.08118],[97.077211,2.078777],[97.08239,2.066728],[97.081131,2.064279],[97.081829,2.061567],[97.087066,2.059424],[97.090885,2.054639],[97.091931,2.047397],[97.096647,2.041906],[97.098232,2.031501],[97.108603,2.019075],[97.112289,2.016451],[97.112536,2.007865],[97.114509,2.004084],[97.123642,2.005924],[97.128282,2.010382],[97.127425,2.015105],[97.123995,2.0206],[97.123674,2.024678],[97.12105,2.026043],[97.118481,2.034669],[97.120531,2.040353],[97.128415,2.047134],[97.136414,2.04518],[97.152091,2.053778],[97.15362,2.05506],[97.153739,2.063947],[97.161546,2.068683],[97.162707,2.07116],[97.15989,2.075091],[97.154724,2.078645],[97.153591,2.086227],[97.147993,2.093851],[97.142549,2.096337],[97.136311,2.102493],[97.132102,2.103594],[97.129364,2.10785],[97.113005,2.113689]]],[[[97.34646830000008,2.118153200000052],[97.34172360000008,2.117636400000038],[97.34101670000007,2.116106600000023],[97.34611060000003,2.115915500000028],[97.34745920000006,2.11650080000004],[97.34646830000008,2.118153200000052]]],[[[97.35405630000008,2.129299400000036],[97.35174630000006,2.134863300000063],[97.34956580000005,2.134869600000059],[97.35042170000008,2.129163400000039],[97.35405630000008,2.129299400000036]]],[[[98.14902150000006,2.134688200000028],[98.14809570000006,2.136330100000066],[98.147626,2.135102600000039],[98.14902150000006,2.134688200000028]]],[[[98.14531040000008,2.144738200000063],[98.14438470000005,2.146380100000044],[98.14391490000008,2.145152600000074],[98.14531040000008,2.144738200000063]]],[[[98.13815630000005,2.15166320000003],[98.13723060000007,2.153305200000034],[98.13676080000005,2.152077700000063],[98.13815630000005,2.15166320000003]]],[[[98.13380020000005,2.155442100000073],[98.13287440000005,2.15708410000002],[98.13240460000009,2.15585660000005],[98.13380020000005,2.155442100000073]]],[[[97.462967,2.173264],[97.464501,2.174376],[97.464665,2.176888],[97.462066,2.185793],[97.460964,2.18333],[97.462677,2.180215],[97.46202,2.173864],[97.462967,2.173264]]],[[[97.32018980000004,2.187911300000053],[97.31859940000004,2.187776900000074],[97.31727920000009,2.18541620000002],[97.32066890000004,2.186310500000047],[97.32018980000004,2.187911300000053]]],[[[97.441511,2.183255],[97.443421,2.185179],[97.44353810000007,2.18966370000004],[97.441989,2.190714],[97.433415,2.182646],[97.428266,2.180222],[97.432442,2.170319],[97.430395,2.163423],[97.441185,2.157864],[97.44245,2.158525],[97.438649,2.164647],[97.440735,2.171476],[97.438177,2.179214],[97.439676,2.182587],[97.441511,2.183255]]],[[[98.043874,2.192295],[98.04252960000008,2.192940400000055],[98.04206290000008,2.191706200000056],[98.04497290000006,2.190564300000062],[98.043874,2.192295]]],[[[97.21271810000007,2.211223500000074],[97.21322460000005,2.212201400000026],[97.21174840000003,2.212509500000067],[97.21271810000007,2.211223500000074]]],[[[98.016335,2.213563700000066],[98.015409,2.215206],[98.01493910000005,2.213978200000042],[98.016335,2.213563700000066]]],[[[97.20851740000006,2.218333600000051],[97.20720590000008,2.217526900000053],[97.20874210000005,2.214753300000041],[97.21212990000004,2.21379810000002],[97.21133330000004,2.216941],[97.20851740000006,2.218333600000051]]],[[[97.168557,2.235694],[97.165128,2.234127],[97.163004,2.231211],[97.162813,2.225034],[97.161354,2.223396],[97.153137,2.225388],[97.149423,2.222211],[97.145506,2.221973],[97.134065,2.225994],[97.124603,2.227084],[97.119461,2.224874],[97.117905,2.2217],[97.113991,2.218857],[97.113232,2.21495],[97.116694,2.207643],[97.126878,2.198294],[97.129335,2.197997],[97.136134,2.201911],[97.144053,2.202219],[97.148868,2.200622],[97.153784,2.197991],[97.162043,2.190419],[97.169914,2.187791],[97.17435,2.178002],[97.178065,2.18001],[97.182582,2.177945],[97.194236,2.183242],[97.195188,2.184855],[97.20886,2.182055],[97.213586,2.178672],[97.214619,2.176336],[97.215519,2.172731],[97.214364,2.16991],[97.21876,2.157494],[97.224271,2.156833],[97.229219,2.163518],[97.229414,2.167558],[97.234227,2.16753],[97.234694,2.165194],[97.231387,2.15576],[97.231494,2.149717],[97.23289,2.147782],[97.237006,2.14792],[97.243086,2.14362],[97.252155,2.143617],[97.25231,2.138344],[97.255299,2.139445],[97.25658,2.137117],[97.26144,2.134841],[97.262279,2.129458],[97.258186,2.127902],[97.26262,2.123244],[97.259769,2.121874],[97.259493,2.120216],[97.263056,2.114518],[97.26531,2.107022],[97.268313,2.10492],[97.271646,2.106507],[97.274934,2.105651],[97.286954,2.096712],[97.296316,2.081647],[97.305259,2.074982],[97.304786,2.067965],[97.306588,2.062843],[97.312372,2.064752],[97.311564,2.058555],[97.317216,2.056325],[97.320426,2.059067],[97.322059,2.056273],[97.325877,2.054433],[97.329795,2.054747],[97.329711,2.059551],[97.331649,2.061068],[97.341088,2.055843],[97.34125150000006,2.052738500000032],[97.338644,2.049185],[97.33856,2.045729],[97.331902,2.044297],[97.327962,2.039766],[97.331085,2.036497],[97.337999,2.033579],[97.34015,2.034318],[97.341391,2.03734],[97.343715,2.03876],[97.34491,2.044225],[97.345993,2.041295],[97.346523,2.044215],[97.344994,2.046524],[97.345235,2.053009],[97.34373690000007,2.055172500000026],[97.34627310000008,2.056820400000049],[97.34537850000004,2.064582500000029],[97.34060360000007,2.076445700000022],[97.34256090000008,2.077868600000045],[97.34503830000006,2.074648],[97.34771140000004,2.078032800000074],[97.34596060000007,2.087143100000048],[97.34400610000006,2.086791500000061],[97.34257710000009,2.083760300000051],[97.342126,2.086101],[97.343551,2.088061],[97.347347,2.088215],[97.349339,2.08755],[97.348149,2.08603],[97.349844,2.082898],[97.352375,2.081831],[97.353794,2.082017],[97.353516,2.083396],[97.357602,2.082652],[97.356351,2.089714],[97.35802,2.089074],[97.359771,2.092531],[97.354536,2.090944],[97.353811,2.092494],[97.350791,2.093208],[97.357822,2.094951],[97.358765,2.097621],[97.355437,2.105473],[97.354499,2.103301],[97.351478,2.103993],[97.352411,2.106839],[97.349862,2.10443],[97.346651,2.104512],[97.346627,2.107991],[97.349115,2.107502],[97.350592,2.108787],[97.349019,2.113392],[97.345915,2.111879],[97.343017,2.113685],[97.342185,2.111898],[97.338681,2.110765],[97.336074,2.116011],[97.335432,2.121088],[97.343298,2.125639],[97.344664,2.128369],[97.343781,2.13019],[97.338703,2.128192],[97.336252,2.131234],[97.338045,2.135192],[97.342785,2.135955],[97.344165,2.137528],[97.342978,2.138038],[97.343391,2.140091],[97.34035,2.141024],[97.34182,2.143936],[97.340593,2.150812],[97.341316,2.155613],[97.338846,2.164331],[97.336756,2.163486],[97.338195,2.15557],[97.336841,2.154449],[97.337445,2.151826],[97.334715,2.153238],[97.333242,2.152436],[97.332216,2.153542],[97.333932,2.157407],[97.333264,2.163083],[97.330973,2.163658],[97.327512,2.161201],[97.322809,2.162674],[97.328797,2.166644],[97.330669,2.171685],[97.326292,2.174562],[97.325073,2.173751],[97.324088,2.176706],[97.321273,2.177497],[97.318063,2.176325],[97.316789,2.170416],[97.315569,2.170294],[97.314168,2.1787],[97.312715,2.178544],[97.311717,2.17559],[97.309248,2.176713],[97.304092,2.18237],[97.304345,2.188692],[97.300062,2.192721],[97.298008,2.193033],[97.295844,2.196071],[97.29574,2.199673],[97.291897,2.200777],[97.291906,2.204811],[97.297068,2.203936],[97.300328,2.206952],[97.303564,2.205564],[97.305651,2.206375],[97.305481,2.209732],[97.302903,2.209776],[97.301125,2.213823],[97.301163,2.215472],[97.30467,2.216071],[97.303278,2.216961],[97.301656,2.216039],[97.300241,2.227531],[97.296128,2.230414],[97.288024,2.225084],[97.274982,2.224363],[97.273837,2.230039],[97.270851,2.232008],[97.261422,2.232145],[97.256736,2.235122],[97.255056,2.233039],[97.249154,2.233968],[97.244478,2.23254],[97.236082,2.234865],[97.233688,2.233584],[97.2327,2.230141],[97.230856,2.230698],[97.228793,2.229263],[97.225012,2.220461],[97.230229,2.217942],[97.229827,2.213531],[97.226792,2.208764],[97.219577,2.203853],[97.214279,2.209013],[97.210503,2.2045],[97.208335,2.204267],[97.207026,2.208053],[97.203574,2.211642],[97.200656,2.211507],[97.19492390000005,2.205444400000033],[97.19310680000007,2.206577200000027],[97.19227,2.211713],[97.18966,2.213596],[97.190228,2.216506],[97.192623,2.217656],[97.190257,2.218768],[97.190019,2.225005],[97.187374,2.228429],[97.185576,2.227372],[97.185517,2.221618],[97.181523,2.221826],[97.178677,2.216346],[97.177958,2.218362],[97.180455,2.225667],[97.180081,2.232744],[97.171268,2.234068],[97.168557,2.235694]]],[[[97.24354190000008,2.237501],[97.24025770000009,2.237371100000075],[97.24274990000004,2.235504],[97.247471,2.236699100000067],[97.24354190000008,2.237501]]],[[[97.22459970000006,2.236675800000057],[97.22137520000007,2.241288300000065],[97.21768170000007,2.243623800000023],[97.21402350000005,2.242193],[97.21395540000003,2.234567800000036],[97.21682360000005,2.234745500000031],[97.22165370000005,2.225478900000041],[97.22359460000007,2.224868800000024],[97.22633570000005,2.229138500000033],[97.22459970000006,2.236675800000057]]],[[[97.31409690000004,2.242089800000031],[97.31250370000004,2.244000100000051],[97.309912,2.242896500000029],[97.31030170000008,2.241068700000028],[97.31298810000004,2.241140100000052],[97.31637920000009,2.239065100000062],[97.31409690000004,2.242089800000031]]],[[[97.43708880000008,2.242565600000034],[97.436338,2.244024],[97.432918,2.243109],[97.43708880000008,2.242565600000034]]],[[[97.20988380000006,2.244203600000048],[97.20857430000007,2.244701900000052],[97.20812290000003,2.243215],[97.21216850000008,2.243986200000052],[97.20988380000006,2.244203600000048]]],[[[97.27712410000004,2.244237400000031],[97.27682310000006,2.245618],[97.27445990000007,2.245778200000075],[97.27514160000004,2.244243300000051],[97.27712410000004,2.244237400000031]]],[[[97.431557,2.246816],[97.42653410000008,2.249604],[97.424618,2.248693],[97.422684,2.244685],[97.423917,2.23949],[97.428765,2.238975],[97.427703,2.245102],[97.429532,2.246598],[97.431472,2.245712],[97.431557,2.246816]]],[[[97.25866570000005,2.251238300000068],[97.25921290000008,2.25255420000002],[97.25760040000006,2.253153400000031],[97.25730840000006,2.251676100000054],[97.25866570000005,2.251238300000068]]],[[[97.30096420000007,2.254319],[97.300327,2.257399700000065],[97.29698930000006,2.25947160000004],[97.29824110000004,2.255174500000066],[97.30096420000007,2.254319]]],[[[97.29363920000009,2.259378800000036],[97.29317620000006,2.264240500000028],[97.28997970000006,2.266649100000052],[97.289908,2.262610100000074],[97.29214940000008,2.259185600000023],[97.29363920000009,2.259378800000036]]],[[[97.21106090000006,2.250634500000047],[97.21051780000005,2.259049800000071],[97.20401640000006,2.267482700000073],[97.20343450000007,2.262493100000029],[97.20838370000007,2.256917],[97.20907570000008,2.250925500000051],[97.21106090000006,2.250634500000047]]],[[[97.24952430000008,2.252831100000037],[97.24976870000006,2.259502300000065],[97.24439480000007,2.26833860000005],[97.24527720000003,2.262342600000068],[97.24413050000004,2.254882500000065],[97.24670970000005,2.252047800000071],[97.24952430000008,2.252831100000037]]],[[[97.32998510000004,2.262325400000066],[97.32787210000004,2.269082300000036],[97.32637340000008,2.269881],[97.328405,2.262330200000065],[97.32998510000004,2.262325400000066]]],[[[97.23236030000004,2.278529900000024],[97.23290080000004,2.28082790000002],[97.23160560000008,2.281215],[97.22992060000007,2.278690400000073],[97.23236030000004,2.278529900000024]]],[[[97.41840310000003,2.263011200000051],[97.412084,2.273811500000022],[97.40749780000004,2.286186],[97.406428,2.283156400000053],[97.40882730000004,2.276546500000052],[97.41368670000008,2.268096800000023],[97.41840310000003,2.263011200000051]]],[[[97.28148730000004,2.274898700000051],[97.282534,2.277728600000046],[97.28016860000008,2.280419700000039],[97.26446440000007,2.287027800000033],[97.26001160000004,2.286146400000064],[97.25970650000005,2.283314200000063],[97.26385560000006,2.281810600000028],[97.26459240000008,2.280168200000048],[97.27481220000004,2.274918700000057],[97.28148730000004,2.274898700000051]]],[[[97.25821520000005,2.280634600000042],[97.25926020000009,2.282868200000053],[97.25741770000008,2.287666100000024],[97.24935480000005,2.294230600000049],[97.24683390000007,2.294536400000027],[97.25140080000006,2.283786300000031],[97.25554150000005,2.279449600000021],[97.25821520000005,2.280634600000042]]],[[[97.40520950000007,2.290047900000047],[97.40640730000007,2.290960900000073],[97.40103230000005,2.297120800000073],[97.400884,2.291872600000033],[97.40520950000007,2.290047900000047]]],[[[97.42599570000004,2.285662],[97.42600230000005,2.292799500000058],[97.421875,2.301123200000063],[97.42013060000005,2.302098],[97.419986,2.296586500000046],[97.42340360000009,2.294211100000041],[97.425367,2.289880800000049],[97.42491690000008,2.285908600000027],[97.423076,2.285483100000022],[97.42599570000004,2.285662]]],[[[97.24785990000004,2.301416600000039],[97.24876550000005,2.306633],[97.24283220000007,2.3068],[97.24281710000008,2.30173],[97.24755970000007,2.300224600000035],[97.24785990000004,2.301416600000039]]],[[[97.31480970000007,2.292997100000036],[97.31588190000008,2.307924600000035],[97.31454640000004,2.310470100000032],[97.31154770000006,2.31167060000007],[97.30846040000006,2.309694600000057],[97.30645790000005,2.300646800000038],[97.31172940000005,2.293324200000029],[97.31480970000007,2.292997100000036]]],[[[97.40542530000005,2.313440600000035],[97.403952,2.314055800000062],[97.40242090000004,2.309596300000067],[97.406576,2.302668500000038],[97.40835140000007,2.295247800000027],[97.41065170000007,2.294594],[97.41292190000007,2.29654510000006],[97.41261310000004,2.299179300000048],[97.411076,2.300125600000058],[97.40542530000005,2.313440600000035]]],[[[97.22459250000009,2.318283],[97.22872610000007,2.320087200000046],[97.22733460000006,2.327462600000047],[97.21866770000008,2.321545],[97.22459250000009,2.318283]]],[[[97.38118440000005,2.362567600000034],[97.37803950000006,2.359576900000036],[97.379139,2.35851150000002],[97.37939540000008,2.343568700000048],[97.38145770000006,2.336990600000036],[97.387423,2.332218],[97.38983080000008,2.33453140000006],[97.38594230000007,2.34204440000002],[97.38692930000008,2.345688700000039],[97.390165,2.34497390000007],[97.394937,2.340867800000069],[97.40598040000003,2.328314300000045],[97.41077760000007,2.318447200000037],[97.41147120000005,2.312554300000045],[97.41320290000004,2.312359],[97.41619010000005,2.30780610000005],[97.41563170000006,2.306749400000058],[97.41919720000004,2.305507500000033],[97.41997530000003,2.302987500000029],[97.42082860000005,2.307645800000046],[97.41873480000004,2.31797750000004],[97.40961930000003,2.34229810000005],[97.39223480000004,2.358212900000069],[97.38876420000008,2.360559300000034],[97.38118440000005,2.362567600000034]]],[[[97.56501140000006,2.378989900000022],[97.56555020000008,2.380094100000065],[97.56412310000007,2.380098900000064],[97.56501140000006,2.378989900000022]]],[[[97.66524680000003,2.394796100000065],[97.70591950000005,2.351563800000065],[97.71964090000006,2.330161900000064],[97.71609330000007,2.340273800000034],[97.71351760000005,2.343627900000058],[97.71226430000007,2.349238],[97.70979130000006,2.351567400000022],[97.711876,2.356001900000024],[97.71547150000004,2.355927800000075],[97.71217080000008,2.355898100000047],[97.71028170000005,2.351369800000043],[97.711893,2.350422700000024],[97.71355020000004,2.346950900000024],[97.71864360000006,2.341171300000042],[97.72999690000006,2.332226900000023],[97.71978910000007,2.339657],[97.71418020000004,2.346218100000044],[97.71416070000004,2.344792900000073],[97.72255410000008,2.334438100000057],[97.73059490000009,2.327366600000062],[97.73506710000004,2.32247140000004],[97.73625440000006,2.324266300000033],[97.73798110000007,2.323187700000062],[97.74013120000006,2.320412100000055],[97.73765580000008,2.322473700000046],[97.735566,2.322066800000073],[97.74075490000007,2.314438500000051],[97.73379230000006,2.323751200000061],[97.72184370000008,2.334429],[97.71753530000007,2.339463600000045],[97.71909730000004,2.33303230000007],[97.72240690000007,2.330124700000056],[97.72137390000006,2.32964370000002],[97.72031470000007,2.331296800000075],[97.72037190000003,2.328542200000072],[97.73654,2.311449200000027],[97.738622,2.306105800000068],[97.73901410000008,2.299643100000026],[97.74638760000005,2.285995800000023],[97.75287980000007,2.282530700000052],[97.74643530000009,2.285709300000065],[97.74757890000006,2.283323],[97.75657540000003,2.270161800000039],[97.769194,2.257975400000021],[97.77328250000005,2.249786100000051],[97.77540660000005,2.236803100000031],[97.782797,2.230710500000043],[97.78472590000007,2.230878500000074],[97.78582610000007,2.233429800000067],[97.79640180000007,2.241256100000044],[97.79466240000005,2.25463910000002],[97.79995010000005,2.265837800000043],[97.80298230000005,2.267886500000031],[97.81384050000008,2.267895500000066],[97.829039,2.264710500000035],[97.86369570000005,2.246631700000023],[97.86795430000006,2.248961400000042],[97.867705,2.25163550000002],[97.87110510000008,2.252135700000053],[97.86810360000004,2.255802900000049],[97.86337520000006,2.254088800000034],[97.86609350000003,2.256827500000043],[97.86562860000004,2.258350900000039],[97.85954340000006,2.259440500000039],[97.86497230000003,2.267459600000052],[97.87532420000008,2.272983500000066],[97.88550690000005,2.276052400000026],[97.89241760000004,2.275537600000064],[97.89462160000005,2.276628500000072],[97.89646760000005,2.275260800000069],[97.89283440000008,2.272282],[97.89256680000005,2.266435400000034],[97.89034290000006,2.263871300000062],[97.88842,2.255834200000038],[97.87578850000006,2.247987900000055],[97.87207870000003,2.24833330000007],[97.872299,2.251219300000059],[97.86910980000005,2.249898300000041],[97.86849280000007,2.248206100000061],[97.868315,2.243727300000046],[97.88256460000008,2.241646400000036],[97.89708380000008,2.25061850000003],[97.90127760000007,2.26014280000004],[97.91356930000006,2.270335100000068],[97.92393,2.271721700000057],[97.938953,2.267943100000025],[97.94893890000009,2.269891500000028],[97.979768,2.257099400000072],[98.01287760000008,2.236519600000065],[98.03126090000006,2.228644100000054],[98.06092880000006,2.212091500000042],[98.08458250000007,2.200759700000049],[98.11159450000008,2.183144],[98.13083770000009,2.163807800000029],[98.13165460000005,2.165067300000032],[98.13049890000008,2.165970100000038],[98.17880190000005,2.239912],[98.17526790000005,2.248544],[98.17246680000005,2.250611],[98.17806210000003,2.252996],[98.18133730000005,2.259099],[98.18800620000007,2.295759],[98.19707070000004,2.311698100000058],[98.18484590000008,2.329155300000025],[98.14739810000003,2.423653],[98.13677750000005,2.430929900000024],[98.10427720000007,2.471298500000046],[98.09440520000004,2.485103],[98.08567360000006,2.50352330000004],[98.08124690000005,2.519498],[98.08394080000005,2.530452],[98.08348090000004,2.539008900000056],[98.08483770000004,2.546768500000042],[98.08312620000004,2.560344800000053],[98.078462,2.575173900000038],[98.07922980000006,2.583098100000029],[98.06525020000004,2.585665800000072],[98.05546620000007,2.585518400000069],[98.05784660000006,2.579373500000031],[98.05739590000007,2.576063],[98.06023860000005,2.573759300000063],[98.05560990000004,2.564682800000071],[98.05192230000006,2.563827900000035],[98.05376860000007,2.560821700000076],[98.04659090000007,2.561468],[98.04424720000009,2.563070300000049],[98.04264910000006,2.567279700000029],[98.03477970000006,2.559754800000064],[98.032138,2.559853],[98.03093840000008,2.564463800000055],[98.03243220000007,2.566369700000052],[98.03203190000005,2.568424600000071],[98.02988880000004,2.568322700000067],[98.02664640000006,2.571879200000069],[98.02783150000005,2.574638300000061],[98.02539450000006,2.579547600000069],[98.02285180000007,2.580498100000057],[98.02397050000008,2.584178200000053],[98.020179,2.584870800000033],[98.01374960000004,2.589131200000054],[98.00956930000007,2.596567600000071],[98.00419980000004,2.59859],[97.98828760000004,2.609746],[97.95401240000007,2.576880900000049],[97.95297160000007,2.580229200000076],[97.946946,2.577724400000022],[97.94535990000008,2.579504200000031],[97.94150730000007,2.579344800000058],[97.93775230000006,2.573904500000026],[97.934551,2.575276700000074],[97.93296790000005,2.573463],[97.92942340000008,2.576522300000022],[97.926655,2.575004500000034],[97.92636840000006,2.57276470000005],[97.92271860000005,2.574118300000066],[97.91674980000005,2.569910600000071],[97.91195280000005,2.570266100000026],[97.90754970000006,2.567130800000029],[97.90411110000008,2.562375200000076],[97.90084280000008,2.562832400000048],[97.89839150000006,2.565258200000073],[97.89068390000006,2.560552700000073],[97.88635,2.550854],[97.88272540000008,2.548129500000073],[97.87457420000004,2.547903700000063],[97.87075140000007,2.556229900000062],[97.86320220000005,2.560906800000055],[97.85752240000005,2.562020500000074],[97.853869,2.56440120000002],[97.85014840000008,2.559069900000054],[97.842878,2.556970700000022],[97.84278990000007,2.538808700000061],[97.84747,2.531499],[97.85062720000008,2.531710900000064],[97.85186230000005,2.529644900000051],[97.85069930000009,2.527645600000028],[97.84802630000007,2.528952400000037],[97.84926450000006,2.523234500000058],[97.84659650000003,2.518822200000045],[97.84228590000004,2.517392900000061],[97.84002380000004,2.513993],[97.84115080000004,2.50247870000004],[97.79174090000004,2.507346400000074],[97.79094270000007,2.499805],[97.74960810000005,2.442872],[97.73215030000006,2.422655],[97.70797510000006,2.408206],[97.68651430000006,2.402495],[97.66524680000003,2.394796100000065]]]]},"properties":{"shapeName":"Aceh Singkil","shapeISO":"","shapeID":"22746128B50047951671004","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[98.28650560000005,4.326147800000058],[98.28698910000008,4.327654900000027],[98.287025,4.330983],[98.28624710000008,4.33311580000003],[98.286718,4.327970500000049],[98.28598270000003,4.326256500000056],[98.28446660000009,4.326011700000038],[98.28650560000005,4.326147800000058]]],[[[98.275049,4.389945200000057],[98.276672,4.39103190000003],[98.27619510000005,4.393185200000062],[98.274328,4.391662300000064],[98.275049,4.389945200000057]]],[[[98.28525120000006,4.401646300000039],[98.28440270000004,4.402943300000061],[98.28373620000008,4.397232600000052],[98.28500640000004,4.396649600000046],[98.28378920000006,4.396316],[98.28422430000006,4.393193100000076],[98.28524160000006,4.394778700000074],[98.28583620000006,4.391969500000073],[98.28464510000003,4.392214900000056],[98.28466670000006,4.390265500000055],[98.28203690000004,4.390557600000022],[98.28588470000005,4.389655600000026],[98.28659020000003,4.387854100000027],[98.28525120000006,4.401646300000039]]],[[[98.252208,4.289165900000057],[98.25480390000007,4.290250600000036],[98.264007,4.308483800000033],[98.267187,4.311365100000046],[98.26794530000006,4.316924700000072],[98.27118220000006,4.323239800000067],[98.27484570000007,4.323560400000076],[98.27976540000009,4.329975700000034],[98.27761760000004,4.339928100000066],[98.27796070000005,4.346939100000043],[98.28238610000005,4.348737800000038],[98.28150390000008,4.364604700000029],[98.27906890000008,4.369301],[98.27748750000006,4.380409300000053],[98.27770420000007,4.383867400000042],[98.27987420000005,4.387179600000024],[98.27838180000003,4.389578800000038],[98.27499050000006,4.389302400000076],[98.27314480000007,4.392210300000045],[98.27466520000007,4.392684400000064],[98.27344710000006,4.393295100000046],[98.27377080000008,4.396759800000041],[98.27588920000005,4.395757900000035],[98.27657810000005,4.397336700000039],[98.27977170000008,4.397643600000038],[98.28080330000006,4.399123900000063],[98.28165180000008,4.407702500000028],[98.28340420000006,4.411467600000037],[98.28332680000005,4.405765200000076],[98.28452030000005,4.406016100000045],[98.28477550000008,4.412477900000056],[98.28703490000004,4.415754600000071],[98.28642830000007,4.417070800000033],[98.28519170000004,4.414319700000021],[98.28604030000008,4.418668],[98.28283430000005,4.419564],[98.28418840000006,4.420538100000044],[98.28599220000007,4.419509700000049],[98.28693520000007,4.416767500000049],[98.28662180000003,4.419726500000024],[98.28410720000005,4.42079190000004],[98.27897650000006,4.420233900000028],[98.27597870000005,4.424487200000044],[98.26311780000003,4.432263700000021],[98.25222650000006,4.44465340000005],[98.24854650000003,4.44436550000006],[98.24292380000009,4.438849100000027],[98.24081330000007,4.439561600000047],[98.24199160000006,4.442501900000025],[98.23777910000007,4.441045300000042],[98.23884720000007,4.442900400000042],[98.23652810000004,4.442609],[98.23291420000004,4.446441],[98.23288810000008,4.450991900000076],[98.23541150000005,4.453340200000071],[98.23646590000004,4.457585900000026],[98.23568250000005,4.46046350000006],[98.23248310000008,4.463605],[98.20750830000009,4.478296900000032],[98.193863,4.48156270000004],[98.19148750000005,4.479365100000052],[98.18862460000008,4.479349700000057],[98.18638250000004,4.484581500000047],[98.17844210000004,4.488998500000037],[98.177872,4.494699300000036],[98.17281430000008,4.5],[98.15520010000006,4.51005],[98.14660760000004,4.509330900000066],[98.14459640000007,4.512130400000046],[98.13752310000007,4.51583370000003],[98.13394730000005,4.51584280000003],[98.13271270000007,4.518099900000038],[98.11845910000005,4.523291],[98.11359870000007,4.523130800000047],[98.11132890000005,4.520503400000052],[98.10347480000007,4.523446100000058],[98.09172150000006,4.52198],[98.087426,4.522681],[98.08705180000004,4.517892800000027],[98.08932520000008,4.510665600000038],[98.08295220000008,4.506546],[98.07958720000005,4.510014500000068],[98.07932,4.512530100000049],[98.06714610000006,4.512174400000049],[98.06216930000005,4.509896400000059],[98.06142060000008,4.505352200000061],[98.06686760000008,4.493849800000021],[98.06250070000004,4.486726500000032],[98.06371210000003,4.483396400000061],[98.061606,4.478396100000055],[98.058739,4.478392400000075],[98.05677390000005,4.481115800000055],[98.04786950000005,4.482467200000031],[98.036858,4.479575500000067],[98.03567920000006,4.476714300000026],[98.03651520000005,4.471901700000046],[98.03954870000007,4.467199100000073],[98.04565880000007,4.470364700000061],[98.04857330000004,4.468195900000069],[98.04590480000007,4.46369240000007],[98.045992,4.455642700000055],[98.04380190000006,4.448140200000068],[98.04132810000004,4.443874600000072],[98.03619550000008,4.439921200000072],[98.03631280000008,4.438020100000074],[98.03990430000005,4.435115200000041],[98.03906810000007,4.430889900000068],[98.04082930000004,4.428354100000035],[98.04045320000006,4.425917800000036],[98.03501390000008,4.421540400000026],[98.02861650000006,4.41916980000002],[98.03143060000008,4.413614100000075],[98.02822290000006,4.412889200000052],[98.02567510000006,4.40825940000002],[98.02546610000007,4.415952700000048],[98.02416250000005,4.415778800000055],[98.01981370000004,4.414838600000053],[98.01920630000006,4.416368200000022],[98.01743640000007,4.415285600000061],[98.00214890000007,4.402456],[98.00038280000007,4.399216400000057],[97.99712640000007,4.399837400000024],[97.98001060000007,4.392628600000023],[97.96604960000008,4.396234700000036],[97.95387970000007,4.391543900000045],[97.95057670000006,4.388175800000056],[97.94649020000008,4.387518300000067],[97.93839740000004,4.371923200000026],[97.92497440000005,4.357925700000067],[97.92256850000007,4.35109250000005],[97.86616890000005,4.344690800000024],[97.85540230000004,4.346053600000062],[97.80555680000003,4.345591500000069],[97.804237,4.347665900000038],[97.80000470000004,4.348225600000035],[97.79596730000009,4.344443500000068],[97.78853020000008,4.349811800000055],[97.78457930000008,4.350843700000041],[97.78072680000008,4.349044100000071],[97.77152580000006,4.340345400000047],[97.76614650000005,4.341245600000036],[97.763242,4.338866900000028],[97.76017360000009,4.330324300000029],[97.76236940000007,4.328744500000028],[97.76116890000009,4.325656700000025],[97.76304640000006,4.320093100000065],[97.76105620000004,4.320815800000048],[97.76076240000003,4.316156300000046],[97.75871330000007,4.315971400000024],[97.74896630000006,4.305109500000071],[97.74498950000003,4.304316300000039],[97.74553440000005,4.302865],[97.74360650000006,4.302317200000061],[97.74234550000006,4.299410800000032],[97.74107730000009,4.300860900000032],[97.74132230000004,4.298501500000043],[97.73456020000003,4.28714530000002],[97.73184970000005,4.286097],[97.731562,4.277746600000057],[97.72632420000008,4.274228400000027],[97.71875960000006,4.256305800000064],[97.71684270000009,4.249283800000057],[97.71785810000006,4.247182700000053],[97.72421720000006,4.236105500000065],[97.720845,4.234375500000056],[97.72060910000005,4.231228800000054],[97.71832420000004,4.227957600000025],[97.71606090000006,4.211617100000069],[97.71702760000005,4.210166500000071],[97.71474740000008,4.20408180000004],[97.71704370000003,4.20033410000002],[97.71596680000005,4.19549180000007],[97.71851320000007,4.18605690000004],[97.71864480000005,4.179280400000039],[97.72178520000006,4.175140700000043],[97.72058960000004,4.169209200000068],[97.72300420000005,4.166671700000052],[97.72567080000005,4.157358],[97.72832520000009,4.155547100000035],[97.72785170000009,4.150221700000031],[97.72954680000004,4.145383800000047],[97.73811730000006,4.136956800000064],[97.75283430000007,4.128509100000031],[97.75645680000008,4.124158200000068],[97.75874690000006,4.124040800000046],[97.76212710000004,4.120415600000058],[97.76453690000005,4.120782400000053],[97.76731760000007,4.115219900000056],[97.77564070000005,4.110513100000048],[97.77847830000007,4.106977800000038],[97.79263330000003,4.070845400000053],[97.79348320000008,4.066611100000046],[97.79216260000004,4.063220500000057],[97.79494480000005,4.056205700000021],[97.79410390000004,4.05438920000006],[97.79531530000008,4.050155400000051],[97.79314980000004,4.047610700000064],[97.79267820000007,4.040591],[97.79462240000004,4.029702300000054],[97.78963070000003,4.023311200000023],[97.79168080000005,4.022346200000072],[97.79881080000007,4.008681700000068],[97.80376050000007,4.002517],[97.82198110000007,3.985600800000043],[97.823431,3.98288],[97.82404790000004,3.972715200000039],[97.83068460000004,3.966310700000065],[97.84952760000004,3.933873400000039],[97.86111080000006,3.922513400000071],[97.86821740000005,3.924580400000025],[97.871584,3.930031],[97.88217910000009,3.936580500000048],[97.88663950000006,3.93513420000005],[97.88772280000006,3.936103800000069],[97.89025530000004,3.934533900000076],[97.89989360000004,3.935817500000041],[97.90835410000005,3.916222900000037],[97.90679390000008,3.91138],[97.90957190000006,3.906300600000066],[97.90776850000003,3.903151600000058],[97.91247430000004,3.898135400000058],[97.91055380000006,3.892444800000021],[97.911524,3.887484100000052],[97.91309360000008,3.885065700000041],[97.91573960000005,3.885189400000058],[97.92068270000004,3.886648700000023],[97.93008440000006,3.884119200000043],[97.93357780000008,3.88484980000004],[97.93646450000006,3.888968300000045],[97.93513290000004,3.893928600000038],[97.93946890000007,3.895386300000041],[97.94525660000005,3.895712600000024],[97.94947850000005,3.889749900000027],[97.95198480000005,3.889700600000026],[97.953949,3.896614200000045],[97.95728740000004,3.902026600000056],[97.95482660000005,3.912676200000021],[97.956286,3.92005290000003],[97.95530170000006,3.92431270000003],[97.95758050000006,3.928904400000022],[97.96173690000006,3.932679],[97.96606370000006,3.933710100000042],[97.97290780000009,3.938265100000024],[97.97814470000009,3.939225100000044],[97.982368,3.941800300000068],[97.99000880000006,3.941800100000023],[97.99525550000004,3.945093800000052],[98.00282690000006,3.959033500000032],[98.00388180000004,3.963869500000044],[98.014572,3.962653200000034],[98.01595790000005,3.963720100000046],[98.01635870000007,3.96978450000006],[98.02264480000008,3.96692390000004],[98.02386680000006,3.96856420000006],[98.02442860000008,3.97659550000003],[98.030134,3.981928700000026],[98.03135330000003,3.985945400000048],[98.02930490000006,3.993154200000049],[98.03097020000007,4.001997],[98.02581550000008,4.01379090000006],[98.02597590000005,4.016167500000051],[98.02752230000004,4.019529100000057],[98.03045730000008,4.021745100000032],[98.04245320000007,4.021185700000046],[98.04626310000003,4.024358],[98.045777,4.027948600000059],[98.04384760000005,4.028914600000064],[98.03998250000006,4.037969700000076],[98.03792990000005,4.039285800000073],[98.03937380000008,4.041345],[98.03707940000004,4.045094100000028],[98.03864180000005,4.048847800000033],[98.033811,4.057192900000075],[98.03754320000007,4.060465],[98.03970350000009,4.068334400000026],[98.04481230000005,4.07356],[98.04712170000005,4.119851900000072],[98.04986470000006,4.126647700000035],[98.05649580000005,4.135563700000034],[98.06426890000006,4.137738],[98.07189610000006,4.142682600000057],[98.07192520000007,4.150096500000075],[98.06973310000006,4.150093900000059],[98.06977630000006,4.155796600000031],[98.06825050000003,4.159236900000053],[98.06972910000007,4.171498100000065],[98.067595,4.176655500000038],[98.06341210000005,4.179611600000044],[98.06053290000006,4.187137300000074],[98.06282320000008,4.189147800000057],[98.07408330000004,4.189319300000022],[98.07881320000007,4.194349800000055],[98.08548080000008,4.193289500000049],[98.08902640000008,4.197615900000073],[98.08943930000004,4.203273100000047],[98.09280170000005,4.207067],[98.09004020000003,4.212902400000075],[98.08942550000006,4.226098200000024],[98.07736270000004,4.228529500000036],[98.07627420000006,4.231553800000029],[98.07398420000004,4.231067],[98.06772090000004,4.245897500000069],[98.07039410000004,4.250126],[98.07692640000005,4.253173600000025],[98.076606,4.256667600000071],[98.07985750000006,4.259455200000048],[98.08316080000009,4.257276800000056],[98.08875490000008,4.258567500000026],[98.09336050000007,4.257561800000076],[98.10856940000008,4.251760500000046],[98.11843910000005,4.253690600000027],[98.11976290000007,4.258291600000064],[98.124201,4.255701],[98.13736260000007,4.259763900000053],[98.138594,4.258676],[98.13989410000005,4.260008800000037],[98.14339060000003,4.259770600000024],[98.14760740000008,4.262196],[98.14953180000003,4.266313100000048],[98.15543510000003,4.270071600000051],[98.15651760000009,4.272372300000029],[98.15687470000006,4.276608800000076],[98.15409010000008,4.287256200000058],[98.16216940000004,4.285813],[98.16530110000008,4.288479100000075],[98.17874550000005,4.29024830000003],[98.17750340000003,4.291313400000035],[98.18841710000004,4.293907200000035],[98.19119550000005,4.296240400000045],[98.19132090000005,4.301491800000065],[98.19844970000008,4.294445200000041],[98.19952760000007,4.301345200000071],[98.20338990000005,4.297355200000027],[98.21243110000006,4.298453800000061],[98.210868,4.294337100000064],[98.21437180000004,4.287078800000074],[98.21907010000007,4.290714600000058],[98.222931,4.287934800000073],[98.22979870000006,4.292299],[98.23076490000005,4.290726500000062],[98.229685,4.285520900000051],[98.23836770000008,4.283351100000061],[98.239326,4.289645700000051],[98.244988,4.294371700000056],[98.24859560000004,4.293584200000055],[98.252208,4.289165900000057]]]]},"properties":{"shapeName":"Aceh Tamiang","shapeISO":"","shapeID":"22746128B50800407185472","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[96.49108650000005,4.622769400000038],[96.52692080000008,4.603571],[96.54381850000004,4.600793300000021],[96.55932730000006,4.592228800000044],[96.57232670000008,4.579528800000048],[96.58154890000009,4.573016300000063],[96.58969980000006,4.551688700000057],[96.58826170000003,4.51908270000007],[96.59055590000008,4.515431900000067],[96.59295480000009,4.501999400000045],[96.59989740000003,4.494194400000026],[96.60444110000003,4.477297900000053],[96.59810760000005,4.451804700000025],[96.59885290000005,4.447485100000051],[96.59473310000004,4.440132500000061],[96.59718,4.437204800000075],[96.591014,4.434493700000075],[96.59200130000005,4.430664200000024],[96.58982060000005,4.426661400000057],[96.58787080000008,4.426655],[96.58527970000006,4.423955500000034],[96.583912,4.41979230000004],[96.58789870000004,4.418011200000024],[96.58827910000008,4.415781400000071],[96.59025910000008,4.414795800000036],[96.59124290000005,4.416242],[96.59663470000004,4.416169400000058],[96.597453,4.413195700000074],[96.59916370000008,4.412118900000053],[96.60131710000007,4.413118],[96.60402640000007,4.408887700000037],[96.60869760000008,4.409353700000054],[96.60979120000007,4.404577],[96.61384370000007,4.401794100000075],[96.61771240000007,4.400273200000072],[96.61850730000003,4.404605],[96.62084940000005,4.402808600000071],[96.62372380000005,4.40363080000003],[96.62516570000008,4.401830300000029],[96.62858230000006,4.401209900000026],[96.62885730000005,4.399497],[96.631915,4.398695],[96.63525260000006,4.394646900000055],[96.63475860000005,4.390757300000075],[96.64077,4.38582770000005],[96.642213,4.381500500000072],[96.64752750000008,4.377368200000035],[96.67821060000006,4.36393460000005],[96.71711250000004,4.352990700000021],[96.74898270000006,4.341978700000027],[96.77807120000006,4.326958400000024],[96.78402340000008,4.317886500000043],[96.78536190000005,4.313015700000051],[96.79172820000008,4.304736800000057],[96.82179530000008,4.285449600000049],[96.82055870000005,4.285382700000071],[96.82898060000008,4.281871600000045],[96.84422990000007,4.268417300000067],[96.85344810000004,4.253684200000066],[96.86214780000006,4.244878200000073],[96.87813350000005,4.238110400000039],[96.88703550000008,4.221153600000036],[96.90981040000008,4.213394100000073],[96.92216750000006,4.199172100000055],[96.93914030000008,4.194671600000049],[96.94213320000006,4.190775300000041],[96.95049250000005,4.18656720000007],[96.96886760000007,4.186443100000076],[96.97755860000007,4.187312200000065],[96.98612540000005,4.190291900000034],[96.99022260000004,4.190043600000024],[96.99183660000006,4.192775100000063],[96.99196080000007,4.197244700000056],[96.997672,4.198734600000023],[97.003259,4.197865500000034],[97.01340960000005,4.205387700000074],[97.01843870000005,4.207442900000046],[97.05236630000007,4.217955600000039],[97.06707670000009,4.219854500000054],[97.10337120000008,4.246315100000061],[97.11000370000005,4.249878800000033],[97.12830730000007,4.255406],[97.13953390000006,4.263925800000038],[97.14927060000008,4.268894300000056],[97.16150940000006,4.28084130000002],[97.17033330000004,4.271984800000041],[97.17718450000007,4.262660100000062],[97.193648,4.257613400000025],[97.21724360000007,4.235498200000052],[97.22254410000005,4.225027400000045],[97.22298860000006,4.217275400000062],[97.22486150000003,4.212609100000066],[97.24215850000007,4.189446400000065],[97.24658140000008,4.175695500000074],[97.25162880000005,4.170008900000028],[97.26202360000008,4.167989400000067],[97.27305080000008,4.170486400000073],[97.27947040000004,4.173725800000057],[97.28920120000004,4.181380200000035],[97.31731690000004,4.188919400000032],[97.33583120000009,4.197345],[97.356464,4.210032],[97.35683720000009,4.209138800000062],[97.35434880000008,4.223368300000061],[97.35114880000003,4.233568300000059],[97.34824880000008,4.237668300000053],[97.35764880000005,4.270068300000048],[97.35974880000003,4.282068300000049],[97.35734880000007,4.288268300000027],[97.35664880000007,4.296068300000059],[97.35914880000007,4.335268300000052],[97.35574880000007,4.345068300000037],[97.35224880000004,4.347268300000053],[97.35684880000008,4.35376830000007],[97.36784880000005,4.36146830000007],[97.36944880000004,4.366468300000065],[97.36804880000005,4.374568300000021],[97.36914880000006,4.396668300000044],[97.36724880000008,4.406768300000067],[97.36254880000007,4.414868300000023],[97.36054880000006,4.423568300000056],[97.34994880000005,4.435068300000069],[97.34696390000005,4.444596800000056],[97.34394880000008,4.488268300000072],[97.34434880000003,4.501568300000031],[97.34234880000008,4.509868300000051],[97.33884880000005,4.51266830000003],[97.32794880000006,4.51386830000007],[97.29414880000007,4.503768300000047],[97.27469170000006,4.506455800000026],[97.27284880000008,4.511168300000065],[97.27464880000008,4.517768300000057],[97.28064880000005,4.52526830000005],[97.28544880000004,4.527668300000073],[97.29714880000006,4.529068300000063],[97.30634880000008,4.537668300000064],[97.31044880000007,4.539768300000048],[97.31884880000007,4.541168300000038],[97.32234880000004,4.543268300000022],[97.32364880000006,4.54576830000002],[97.32394880000004,4.548168300000043],[97.32154880000007,4.554168300000072],[97.31324880000005,4.602668300000062],[97.31302640000007,4.60284530000007],[97.31331590000008,4.601778300000035],[97.29877340000007,4.600117800000021],[97.29300520000004,4.598996],[97.28294450000004,4.595771200000058],[97.260937,4.583864400000039],[97.23809230000006,4.587378300000069],[97.22569170000008,4.587347600000044],[97.21629360000009,4.584861500000045],[97.20366510000008,4.578059500000052],[97.19434160000009,4.575327900000048],[97.14478910000008,4.579262400000061],[97.11826260000004,4.583008900000038],[97.09485450000005,4.588276700000051],[97.07531390000008,4.595978800000069],[97.06130920000004,4.59951030000002],[97.04500970000004,4.607293500000026],[97.03073380000006,4.61993190000004],[97.01883120000008,4.617806200000075],[96.99522,4.631771300000025],[96.98321690000006,4.640643200000056],[96.971791,4.643810500000029],[96.95445950000004,4.651391400000023],[96.92896510000008,4.656734200000074],[96.90379710000008,4.657398100000023],[96.86946490000008,4.662006800000029],[96.85766810000007,4.665786100000048],[96.84023580000007,4.665978800000062],[96.82305990000003,4.672475],[96.820697,4.674896600000068],[96.82359050000008,4.679289500000039],[96.82045130000006,4.681226],[96.82081560000006,4.684181500000022],[96.81807450000008,4.684909900000036],[96.81637160000008,4.684837600000037],[96.81224250000008,4.680770100000075],[96.81183450000003,4.676005400000065],[96.81050340000007,4.674785500000041],[96.80546560000005,4.675818200000037],[96.80458750000008,4.677379300000041],[96.807677,4.683823600000039],[96.80498020000005,4.68658240000002],[96.80166240000005,4.686816],[96.79779090000005,4.691749100000038],[96.79490640000006,4.697127700000067],[96.79510060000007,4.701733500000046],[96.79194540000003,4.70988710000006],[96.77795050000003,4.716240700000071],[96.77319730000005,4.71538860000004],[96.77104680000008,4.716579900000056],[96.76851540000007,4.714069500000051],[96.76455120000008,4.714427800000067],[96.76401590000006,4.716573200000028],[96.75878670000009,4.715920200000028],[96.75818690000006,4.713479600000028],[96.751359,4.71441150000004],[96.74600930000008,4.712830500000052],[96.74518090000004,4.715717100000063],[96.74105210000005,4.717956700000059],[96.73893170000008,4.723428800000022],[96.733994,4.723426700000061],[96.72987470000004,4.726428700000042],[96.72923060000005,4.729175],[96.726489,4.730524600000024],[96.72101640000005,4.738773900000069],[96.71581530000003,4.743266100000028],[96.71559570000005,4.747264600000051],[96.71234420000008,4.747880800000075],[96.710891,4.752703200000042],[96.709017,4.752508900000066],[96.70665670000005,4.748175300000071],[96.70322440000007,4.746784700000035],[96.70248670000007,4.74492280000004],[96.69784970000006,4.746954900000048],[96.69627460000004,4.750836500000048],[96.692024,4.751324],[96.69170590000004,4.752952700000037],[96.68374990000007,4.75588920000007],[96.68798860000004,4.769547300000056],[96.69423550000005,4.772216],[96.70133890000005,4.778903300000025],[96.70139880000005,4.802733400000022],[96.706238,4.810832400000038],[96.70652840000008,4.81433480000004],[96.70510920000004,4.815234100000055],[96.70741080000005,4.819955900000025],[96.70597880000008,4.824665100000061],[96.69333450000005,4.832629600000075],[96.690481,4.838819100000023],[96.69231920000004,4.844896100000028],[96.68710670000007,4.864945300000045],[96.68930490000008,4.872756700000025],[96.68817520000005,4.877908900000023],[96.69038840000007,4.89048420000006],[96.68938180000004,4.900686700000051],[96.68602730000003,4.904129300000022],[96.683134,4.911722],[96.68383020000005,4.918286600000044],[96.68240020000007,4.919543400000066],[96.68224290000006,4.924154900000076],[96.67793820000009,4.926030700000069],[96.67682790000003,4.930293200000051],[96.67151410000008,4.938372400000048],[96.67578630000008,4.949764800000025],[96.67395870000007,4.952316900000028],[96.66073140000003,4.95188],[96.65746720000004,4.955386800000042],[96.65355390000008,4.954488100000049],[96.64992370000004,4.95681570000005],[96.64761560000005,4.955482400000051],[96.64589840000008,4.957030200000077],[96.64721420000006,4.952215500000023],[96.64415170000007,4.953193900000031],[96.64397480000008,4.955887100000041],[96.62191170000006,4.953508500000055],[96.61694230000006,4.956420300000048],[96.61635350000006,4.953923600000053],[96.61500920000003,4.953546300000028],[96.599865,4.954205900000034],[96.58935640000004,4.952450400000032],[96.58584170000006,4.949815400000034],[96.57535940000008,4.948371400000042],[96.554628,4.94248],[96.53613310000009,4.935074900000075],[96.52146420000008,4.918271900000036],[96.51278980000006,4.902918400000033],[96.50933560000004,4.901655800000071],[96.505983,4.895397800000069],[96.50252080000007,4.892598300000031],[96.496634,4.890067500000043],[96.49230190000009,4.891883200000052],[96.47557550000005,4.892098400000066],[96.46677870000008,4.894833800000072],[96.46155990000005,4.913923900000043],[96.44958780000007,4.925136100000032],[96.43618260000005,4.899859100000072],[96.42530330000005,4.885739100000023],[96.39729480000005,4.867221100000052],[96.37599910000006,4.842221800000061],[96.35470340000006,4.789214],[96.35048790000008,4.775680200000068],[96.34295920000005,4.779258600000048],[96.33741520000007,4.778889],[96.33334960000008,4.775193],[96.32078320000005,4.776301800000056],[96.31708720000006,4.779258600000048],[96.312652,4.779997800000046],[96.307108,4.774823400000059],[96.29712880000005,4.775562600000058],[96.292324,4.77851940000005],[96.28345360000009,4.779997800000046],[96.28073360000008,4.77903260000005],[96.27052360000005,4.77460160000004],[96.26896910000005,4.771769100000029],[96.26795740000006,4.750567200000035],[96.26438840000009,4.742544900000041],[96.26474760000008,4.737298200000055],[96.26028350000007,4.713468500000033],[96.26229330000007,4.710590100000047],[96.27085610000006,4.708218600000066],[96.27489670000006,4.705115600000056],[96.28056540000006,4.693616100000042],[96.28241820000005,4.692334200000062],[96.29702750000007,4.691439400000036],[96.31511030000007,4.687500300000067],[96.34329680000008,4.689952700000049],[96.36009910000007,4.686568600000044],[96.36361350000004,4.687463900000068],[96.36935410000007,4.691655],[96.39479340000008,4.67969510000006],[96.40874310000004,4.669242800000063],[96.42409980000008,4.649121600000058],[96.437966,4.639469600000041],[96.44437580000005,4.626732900000036],[96.44773870000006,4.625301700000023],[96.46068930000007,4.625508700000069],[96.46772080000005,4.626576300000067],[96.47306510000004,4.629963400000065],[96.48611610000006,4.630488800000023],[96.49108650000005,4.622769400000038]]]},"properties":{"shapeName":"Aceh Tengah","shapeISO":"","shapeID":"22746128B73906228036632","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[97.81500090000009,2.982211900000038],[97.828982,3.000000300000067],[97.83984930000008,3.003208200000074],[97.85148530000004,3.000983700000063],[97.85615720000004,3.003374800000074],[97.86104760000006,3.003505300000029],[97.87116640000005,3.009755200000029],[97.88183790000005,3.006879500000025],[97.88802880000009,3.009229],[97.90159750000004,3.007845900000063],[97.90644240000006,3.001675600000056],[97.93513880000006,2.989519],[97.94043770000007,2.995109],[97.94694180000005,3.005719300000067],[97.93852790000005,3.028203900000051],[97.93912370000004,3.037001],[97.94396020000005,3.043052500000044],[97.94422820000005,3.045648500000027],[97.94236280000007,3.047970700000064],[97.93030280000005,3.054254],[97.93028680000003,3.063129],[97.93202110000004,3.069423],[97.93943520000005,3.076223800000037],[97.94203860000005,3.073257400000045],[97.94363060000006,3.074729900000023],[97.94914960000006,3.075267500000052],[97.95064,3.074012800000048],[97.94946590000006,3.06960840000005],[97.94768720000008,3.068242200000043],[97.94848780000007,3.066151200000036],[97.95102550000007,3.066962300000057],[97.95238480000006,3.065674900000033],[97.96053680000006,3.065484200000071],[97.97452580000004,3.072806400000047],[97.97683270000005,3.078997800000025],[97.980526,3.079592200000036],[97.98248460000008,3.081742900000052],[97.982836,3.086754700000029],[97.97936410000005,3.097179700000027],[97.981749,3.110903800000074],[97.98091110000007,3.118860600000062],[97.96931450000005,3.142752],[97.96379870000004,3.144923700000049],[97.93849640000008,3.163513600000044],[97.94296460000004,3.175129500000025],[97.93975240000003,3.193633800000043],[97.943537,3.20126920000007],[97.941273,3.20547380000005],[97.93783330000008,3.204136],[97.93462430000005,3.207946200000038],[97.93562430000009,3.209103500000026],[97.934534,3.208023900000057],[97.93247980000007,3.20979],[97.92689530000007,3.223063],[97.92243420000005,3.228475],[97.91707530000008,3.23071],[97.904532,3.232043400000066],[97.89854330000009,3.234039600000074],[97.89337120000005,3.237669100000062],[97.892902,3.240484500000036],[97.88181860000003,3.238108900000043],[97.870368,3.24961890000003],[97.87055810000004,3.251101900000037],[97.87652440000005,3.255767200000037],[97.89403820000007,3.256775],[97.90156660000008,3.26229630000006],[97.908339,3.262283400000058],[97.91295410000004,3.26425050000006],[97.93658450000004,3.265390700000069],[97.93591230000004,3.271573],[97.94563340000008,3.271168100000068],[97.95132990000008,3.278644800000052],[97.95206370000005,3.283832800000027],[97.95451970000005,3.283507],[97.96534860000008,3.287270300000046],[97.96716850000007,3.283708900000022],[97.96726770000004,3.279045900000028],[97.969748,3.277656900000068],[97.97768510000009,3.28013720000007],[97.97828770000007,3.282136900000069],[97.98016080000008,3.282505300000025],[97.98245160000005,3.28110520000007],[97.99299520000005,3.281694],[98.002701,3.29131760000007],[98.01138,3.294712300000072],[98.01697730000006,3.302540200000067],[98.02075090000005,3.302636],[98.02018280000004,3.315992400000027],[98.0226,3.322097],[98.02889460000006,3.33101460000006],[98.022175,3.343749],[98.015527,3.34758],[98.010663,3.35924],[98.006545,3.365656],[98.001949,3.369756],[97.995628,3.373126],[97.991868,3.370331],[97.976556,3.372458],[97.970668,3.378021],[97.948226,3.390666],[97.94741990000006,3.393469100000061],[97.93053960000003,3.389718900000048],[97.90990270000003,3.389560200000062],[97.90584910000007,3.399221900000043],[97.89770490000006,3.41047],[97.89588180000004,3.41089340000002],[97.89801840000007,3.412409800000034],[97.89764890000004,3.415894500000036],[97.91111880000005,3.417055800000071],[97.921066,3.422083300000054],[97.92526410000005,3.43041340000002],[97.92943830000007,3.434045600000047],[97.93154820000007,3.440298400000074],[97.93366890000004,3.441085],[97.93631030000006,3.450358],[97.94144730000005,3.455834],[97.94784640000006,3.466557],[97.94976650000007,3.472817],[97.95908180000004,3.481623],[97.95819090000003,3.483057],[97.95104170000008,3.484627],[97.94604560000005,3.489412],[97.93139050000008,3.492134],[97.92157010000005,3.498125],[97.92049530000008,3.500003700000036],[97.92290740000004,3.505256],[97.92381850000004,3.512198],[97.912527,3.533914],[97.91234890000004,3.543658],[97.90969790000008,3.550152],[97.90441110000006,3.55694],[97.89783320000004,3.560312],[97.892415,3.559086],[97.884773,3.561077],[97.87559480000004,3.56516270000003],[97.86825860000005,3.571032],[97.86704190000006,3.584839],[97.86364330000004,3.594627],[97.86367720000004,3.598873],[97.87054320000004,3.606984],[97.87194330000005,3.612075],[97.86912010000003,3.615527],[97.85355140000007,3.626923],[97.85394980000007,3.639961],[97.84659780000004,3.653196],[97.84440250000006,3.661197],[97.83839630000006,3.668519],[97.82931330000008,3.672177],[97.82601110000007,3.675926],[97.81912590000007,3.690598],[97.80463880000008,3.710372],[97.803826,3.716766],[97.80027320000005,3.722666],[97.81521050000003,3.736741],[97.81773820000006,3.742496],[97.82460930000008,3.749526],[97.80927340000005,3.748472500000048],[97.78123260000007,3.749222],[97.74886020000008,3.744341],[97.73055290000008,3.738997],[97.70262440000005,3.734941],[97.653487,3.731663],[97.642256,3.731654],[97.63531730000005,3.73327],[97.62949070000008,3.729916],[97.62170080000004,3.721661],[97.55614670000006,3.710687900000039],[97.55265780000008,3.714253500000041],[97.54959980000007,3.714175900000043],[97.53971930000006,3.710242200000039],[97.534871,3.70669330000004],[97.52842380000004,3.705952300000035],[97.51149910000004,3.700076400000057],[97.497942,3.700657600000056],[97.49380060000004,3.702941400000043],[97.47732110000004,3.701662700000043],[97.46033310000007,3.697661500000038],[97.315936,3.676924100000065],[97.30480260000007,3.676829400000031],[97.28486860000004,3.68230710000006],[97.26423470000003,3.685083600000041],[97.25835840000008,3.693750400000056],[97.25549870000003,3.695362700000032],[97.20615790000005,3.6939],[97.22422290000009,3.678762500000062],[97.26352450000007,3.652320600000053],[97.275827,3.65075470000005],[97.27985030000008,3.648255500000062],[97.28458460000007,3.639605300000028],[97.28740710000005,3.627932200000032],[97.29334270000004,3.612474100000043],[97.29532560000007,3.59923630000003],[97.33040690000007,3.612899500000026],[97.344089,3.622769],[97.35827070000005,3.62573],[97.36704570000006,3.638234100000034],[97.37203410000006,3.641117],[97.38031790000008,3.640031400000055],[97.40056850000008,3.620684100000062],[97.40428620000006,3.618795100000057],[97.41006950000008,3.619600200000036],[97.41949370000003,3.623772600000052],[97.43164680000007,3.638469400000076],[97.44267190000005,3.637021],[97.45004530000006,3.634220900000059],[97.45803550000005,3.626591],[97.46256590000007,3.615924800000073],[97.46283340000008,3.60179990000006],[97.46802970000005,3.589945700000044],[97.46903870000006,3.575527700000066],[97.47245880000008,3.569235100000071],[97.48294310000006,3.56228150000004],[97.48435010000009,3.558247900000026],[97.48387350000007,3.551704100000052],[97.48150730000003,3.546502500000031],[97.47911580000005,3.544981600000028],[97.45586040000006,3.542191200000048],[97.45208880000007,3.539983500000062],[97.44122020000003,3.521743],[97.41410320000006,3.482020100000057],[97.39830560000007,3.455148100000031],[97.39806610000005,3.452824100000043],[97.41227470000007,3.434321],[97.42438160000006,3.421759300000076],[97.43841620000006,3.401664600000061],[97.45646740000007,3.361863300000039],[97.46825830000006,3.338427600000045],[97.47350420000004,3.331587],[97.46861590000003,3.301273700000024],[97.46701170000006,3.273244200000022],[97.47141230000005,3.263180800000043],[97.47041080000008,3.241104200000052],[97.47500810000008,3.22284570000005],[97.47782750000005,3.217255300000033],[97.51982750000008,3.16755530000006],[97.55112750000006,3.149555300000031],[97.57562750000005,3.127255300000058],[97.59862750000008,3.113255300000048],[97.61054640000003,3.100872600000059],[97.61540720000005,3.092737],[97.64290880000004,3.029422700000055],[97.64132960000006,3.023060200000032],[97.634471,3.014531],[97.63362530000006,3.007744],[97.63312750000006,2.973555300000044],[97.63442750000007,2.965055300000074],[97.64053840000008,2.954299],[97.65390830000007,2.947563],[97.69514,2.941662400000041],[97.74310580000008,2.927828200000022],[97.75347910000005,2.926899],[97.75852750000007,2.930255300000056],[97.76389160000008,2.936466],[97.76843710000009,2.948376],[97.76949920000004,2.957086900000036],[97.77668760000006,2.96553],[97.79296380000005,2.974340700000027],[97.79925550000007,2.974865600000044],[97.80332750000008,2.963155300000039],[97.80639850000006,2.960445],[97.81362750000005,2.966355300000032],[97.81573390000005,2.975449600000047],[97.81392750000003,2.980455300000074],[97.81500090000009,2.982211900000038]]]},"properties":{"shapeName":"Aceh Tenggara","shapeISO":"","shapeID":"22746128B89616504711170","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[98.01772490000008,4.587803600000029],[98.01964870000006,4.593787],[98.01721670000006,4.600201800000036],[98.01646110000007,4.598215900000071],[98.018552,4.594636300000047],[98.01772490000008,4.587803600000029]]],[[[98.01488560000007,4.603885400000024],[98.01390490000006,4.605117200000052],[98.01301310000008,4.60404740000007],[98.01488560000007,4.603885400000024]]],[[[97.96822710000004,4.679510300000061],[97.96866690000007,4.682822],[97.96732450000007,4.684458600000028],[97.96668260000007,4.680688900000064],[97.96822710000004,4.679510300000061]]],[[[97.96718010000006,4.686916300000064],[97.96509640000005,4.690744],[97.96501460000007,4.688930200000073],[97.96718010000006,4.686916300000064]]],[[[97.96387460000005,4.703420700000038],[97.96282280000008,4.710948],[97.960772,4.713005800000076],[97.95968330000005,4.706743200000062],[97.96078250000005,4.702241600000036],[97.96230860000009,4.702345500000035],[97.96142780000008,4.700044600000069],[97.963342,4.700442900000041],[97.96244870000004,4.698961200000042],[97.97394360000004,4.671438800000033],[97.97525310000003,4.673198],[97.97486730000008,4.676285900000039],[97.96387460000005,4.703420700000038]]],[[[98.02416250000005,4.415778800000055],[98.02376920000006,4.418138700000043],[98.01945560000007,4.417563900000061],[98.01503120000007,4.414401100000021],[98.01257740000005,4.414984400000037],[98.00941230000006,4.412734900000032],[98.00372170000009,4.411822400000062],[98.00051690000004,4.407652],[97.99994750000008,4.409535700000049],[97.99450470000005,4.408978],[97.991641,4.41209740000005],[97.98180860000008,4.41436310000006],[97.981664,4.421260800000027],[97.97920660000005,4.421344],[97.97854970000009,4.423119300000053],[97.97340440000005,4.422659700000054],[97.96832350000005,4.42607380000004],[97.97111570000004,4.43820560000006],[97.96648620000008,4.442021700000055],[97.96692310000009,4.445125700000062],[97.96169240000006,4.442171200000075],[97.94226420000007,4.437971400000038],[97.93572150000006,4.432480600000076],[97.925444,4.434979],[97.922646,4.437963900000057],[97.91818440000009,4.446596900000031],[97.91864830000009,4.451310300000046],[97.91743450000007,4.45245970000002],[97.91236280000004,4.451875],[97.91452230000004,4.448754],[97.90978,4.450869800000021],[97.90897570000004,4.44799],[97.90673210000006,4.451150600000062],[97.907331,4.452423100000033],[97.90944050000007,4.45152980000006],[97.907848,4.453070900000057],[97.90409210000007,4.450328200000058],[97.90503080000008,4.449019300000032],[97.90398760000005,4.448264300000062],[97.88682180000006,4.448340300000041],[97.88168420000005,4.453431600000044],[97.88077760000004,4.45669810000004],[97.87740620000005,4.458184500000073],[97.88867020000004,4.477139900000054],[97.89087230000007,4.493194500000072],[97.89681530000007,4.502451600000029],[97.89756090000009,4.506310700000029],[97.90461630000004,4.512041100000033],[97.90863190000005,4.51753130000003],[97.90796510000007,4.518991100000051],[97.91296320000004,4.521327300000053],[97.91665890000007,4.529452800000058],[97.92148880000008,4.53229790000006],[97.93194810000006,4.533970100000033],[97.93678,4.532872],[97.93560830000007,4.528383],[97.94490710000008,4.527381400000024],[97.94505970000006,4.529157200000043],[97.95093570000006,4.529452500000048],[97.95232440000007,4.530535900000075],[97.950633,4.531800400000066],[97.95078010000003,4.533905300000072],[97.955012,4.535129100000063],[97.96254960000005,4.528322100000025],[97.96223060000005,4.52665920000004],[97.96925040000008,4.531355100000042],[97.98110790000004,4.543463200000076],[97.97606410000009,4.553812100000073],[97.97559630000006,4.55774880000007],[97.97270080000004,4.55810770000005],[97.97252670000006,4.561680400000057],[97.97952450000008,4.564997600000027],[97.98125020000003,4.567691],[97.98439340000004,4.567944200000056],[97.98496090000003,4.573038600000075],[97.98868540000007,4.580596800000023],[97.99482230000007,4.587366800000041],[97.99821290000006,4.588100900000029],[97.99764890000006,4.591169900000068],[98.00525970000007,4.600612300000023],[98.01026630000007,4.604566500000033],[98.01356160000006,4.60534860000007],[98.01736760000006,4.603158200000053],[98.01762540000004,4.611072500000034],[98.01245310000007,4.618596300000036],[98.00676880000003,4.623028400000067],[97.99975340000003,4.625927500000046],[97.99341850000008,4.625424100000032],[97.99218320000006,4.629091300000027],[97.99280550000003,4.63191740000002],[97.99566120000009,4.633913800000073],[97.995614,4.639371800000049],[97.99193720000005,4.642072600000063],[97.98685460000007,4.641850200000022],[97.98030880000005,4.649795800000049],[97.98024990000005,4.65152820000003],[97.97406870000003,4.653206900000043],[97.97136460000007,4.662389],[97.96366940000007,4.665445700000021],[97.96143310000008,4.676589600000057],[97.964439,4.67808830000007],[97.96668320000003,4.68506780000007],[97.96490780000005,4.687403500000073],[97.95910810000004,4.703476500000022],[97.96051320000004,4.712942700000042],[97.962752,4.714731500000028],[97.95988640000007,4.73061210000003],[97.95386190000005,4.739404100000058],[97.95400170000005,4.743834100000072],[97.95641950000004,4.746425600000066],[97.95642010000006,4.749804400000073],[97.95972980000005,4.739825400000029],[97.96002420000008,4.742509700000028],[97.95431560000009,4.756492700000024],[97.95368510000009,4.757550300000048],[97.95350610000008,4.755797500000028],[97.95234810000005,4.756840200000056],[97.94796930000007,4.764502500000049],[97.94895370000006,4.765015700000049],[97.94420280000008,4.771482200000037],[97.944859,4.776477800000066],[97.94142310000007,4.788792600000022],[97.93032210000007,4.814672700000074],[97.92789920000007,4.817295100000024],[97.92659460000004,4.82482170000003],[97.92016150000006,4.842851500000052],[97.91807610000006,4.844663800000035],[97.91853840000005,4.848351700000023],[97.90586050000007,4.879332600000055],[97.90420760000006,4.890170700000056],[97.89410840000005,4.886172500000043],[97.89317860000006,4.888498200000072],[97.87870490000006,4.889801800000043],[97.86517450000008,4.893994300000031],[97.84499060000007,4.906273800000065],[97.84048420000005,4.907180700000026],[97.84052190000006,4.910078100000021],[97.839017,4.911518],[97.80909480000008,4.932052800000065],[97.79303970000007,4.944812900000045],[97.79142690000003,4.948641700000053],[97.77918050000005,4.959125],[97.778738,4.961937],[97.75934930000005,4.976836100000071],[97.75801440000004,4.979338900000073],[97.73582150000004,4.997673700000064],[97.73451940000007,5.00022430000007],[97.70297710000006,5.026435900000024],[97.69996870000006,5.027331],[97.69919630000004,5.029638],[97.68060480000008,5.045786300000032],[97.67686420000007,5.048265400000048],[97.67692930000004,5.046982700000058],[97.67605990000004,5.04744],[97.67483840000006,5.050532300000043],[97.67307010000007,5.049751700000058],[97.67152170000008,5.054931500000066],[97.66403620000006,5.060367400000075],[97.65132430000006,5.074528600000065],[97.648018,5.076567900000043],[97.64472840000008,5.075644500000067],[97.64972740000007,5.082136500000047],[97.64950030000006,5.084027300000059],[97.65660670000005,5.080923600000062],[97.65310380000005,5.100567],[97.65267420000004,5.114716],[97.65072040000007,5.114760900000022],[97.65013410000006,5.117964100000052],[97.645736,5.121031800000026],[97.64278640000003,5.126609600000052],[97.63436350000006,5.128185200000075],[97.63165870000006,5.132642700000076],[97.62594750000005,5.127528],[97.625,5.129582800000037],[97.61477960000008,5.131480400000044],[97.60729530000003,5.134525500000052],[97.590835,5.144238600000051],[97.592913,5.146807200000069],[97.58543570000006,5.154776300000037],[97.58200810000005,5.16082810000006],[97.57685980000008,5.165835900000047],[97.57356370000008,5.165462200000036],[97.57168150000007,5.173386300000061],[97.572544,5.174524900000051],[97.57102810000004,5.174133400000073],[97.56940440000005,5.175963300000035],[97.56667690000006,5.181395400000042],[97.56819890000008,5.183033],[97.56600120000007,5.186592500000074],[97.55638280000005,5.195575],[97.55341930000009,5.195994100000064],[97.55336330000006,5.198855600000059],[97.54776360000005,5.203821300000072],[97.54336330000007,5.204959700000074],[97.54455370000005,5.209050200000036],[97.55193690000004,5.211206],[97.54925560000004,5.210141800000031],[97.55436480000009,5.210641900000041],[97.55372340000008,5.213009900000031],[97.51828680000006,5.239018],[97.49841080000004,5.249424900000065],[97.49387320000005,5.249382400000059],[97.48486940000004,5.245910500000036],[97.48380840000004,5.241173500000059],[97.48833990000008,5.23109160000007],[97.48861050000005,5.224385700000028],[97.49370690000006,5.219001900000023],[97.497507,5.221608400000036],[97.495735,5.216963300000032],[97.49998370000009,5.213022200000069],[97.49553190000006,5.211546400000032],[97.49184050000008,5.214564700000039],[97.48988550000007,5.213919100000055],[97.48972130000004,5.211881500000061],[97.49350240000007,5.210335900000075],[97.49474940000005,5.207264400000042],[97.49332680000003,5.205484200000058],[97.49069610000004,5.208942500000035],[97.48832480000004,5.20924210000004],[97.49121610000003,5.202766500000052],[97.48792590000005,5.199397600000054],[97.49298960000004,5.197712400000057],[97.49436010000005,5.202084400000047],[97.49685570000008,5.202749800000049],[97.498743,5.196893400000022],[97.50094230000008,5.19554990000006],[97.49812040000006,5.193655700000022],[97.50141790000004,5.188971600000059],[97.50072310000007,5.187781400000063],[97.49760890000005,5.188759700000048],[97.49238870000005,5.185146300000042],[97.49178880000005,5.189199600000052],[97.48773530000005,5.188127500000064],[97.49066380000005,5.182308100000057],[97.48951230000006,5.182047700000055],[97.488103,5.185298800000055],[97.48585660000003,5.181691600000022],[97.48795140000004,5.178738700000054],[97.49127870000007,5.179097200000058],[97.48928650000005,5.174828],[97.49181620000007,5.173445500000071],[97.49432990000008,5.17449270000003],[97.49743810000007,5.17106670000004],[97.49975150000006,5.172218900000075],[97.50034180000006,5.168077600000061],[97.49769830000008,5.168056600000057],[97.49912120000005,5.16543],[97.49680810000007,5.163076100000069],[97.49824850000005,5.158807],[97.49471720000008,5.159031700000071],[97.49110250000007,5.157118800000035],[97.48938180000005,5.161090600000023],[97.48715330000005,5.160856900000056],[97.48861820000008,5.154030400000067],[97.48715430000004,5.150559],[97.482654,5.152045200000032],[97.481248,5.148963600000059],[97.47610930000008,5.152737900000034],[97.47395640000008,5.151524400000028],[97.46830160000007,5.154194100000041],[97.46601250000003,5.153621800000053],[97.47016910000008,5.150218100000075],[97.46748840000004,5.145398800000066],[97.47009760000003,5.139860400000032],[97.46846070000004,5.134934500000043],[97.46893360000007,5.131345300000021],[97.47349690000004,5.131681300000025],[97.47822020000007,5.128824200000054],[97.47833470000006,5.126497],[97.47659520000008,5.124203900000055],[97.47029980000008,5.124505200000044],[97.46947750000004,5.117831900000056],[97.46841870000009,5.116864200000066],[97.46399570000005,5.118334400000037],[97.45975650000008,5.111921100000075],[97.46264780000007,5.109379100000069],[97.46869510000005,5.109359500000039],[97.466558,5.105409300000076],[97.471753,5.104696800000056],[97.47308840000005,5.101809700000047],[97.469264,5.098630100000037],[97.46750180000004,5.09416520000002],[97.46943950000008,5.092864300000031],[97.47136290000003,5.095475700000065],[97.47450210000005,5.09506],[97.47631920000003,5.088439700000038],[97.47977830000008,5.087031100000047],[97.48480280000007,5.078249700000072],[97.48851090000005,5.078764200000023],[97.48782290000008,5.081538100000046],[97.49058230000009,5.086077700000033],[97.49223920000009,5.087045500000045],[97.49536560000007,5.086246900000049],[97.49738860000008,5.081741500000021],[97.49507030000007,5.077671600000031],[97.49124610000007,5.074963],[97.49176080000007,5.071481200000051],[97.49632050000008,5.073408],[97.499892,5.078516],[97.50161720000006,5.076802],[97.49854250000004,5.068462300000022],[97.50602480000003,5.069355600000051],[97.50575910000003,5.074726600000076],[97.50761540000008,5.07532150000003],[97.50962720000007,5.073092200000076],[97.50881040000007,5.067992100000026],[97.51222040000005,5.07021050000003],[97.51480040000007,5.069301],[97.514849,5.056903],[97.51322330000005,5.059177500000033],[97.51446580000004,5.064575300000058],[97.51300650000007,5.065866600000049],[97.50990990000008,5.065382200000045],[97.50674980000008,5.062082500000031],[97.50734370000004,5.059152500000039],[97.51155970000008,5.056549200000063],[97.51382690000008,5.051576700000055],[97.51195040000005,5.050204700000052],[97.50871520000004,5.053804700000057],[97.50560240000004,5.054866],[97.49800230000005,5.051125700000057],[97.49784830000004,5.04975],[97.50535260000004,5.047282500000051],[97.50530880000008,5.045699800000023],[97.50019450000008,5.043294800000069],[97.49989910000005,5.038613700000042],[97.50324940000007,5.037996900000053],[97.506318,5.04420870000007],[97.50756760000007,5.0442],[97.50904180000003,5.043365300000062],[97.51036150000004,5.03800380000007],[97.51459390000008,5.030866100000026],[97.51350150000007,5.029170700000066],[97.50706920000005,5.029134300000067],[97.50654210000005,5.022488100000032],[97.50288040000004,5.017323500000032],[97.49550730000004,5.016425500000025],[97.493535,5.014510100000052],[97.49351030000008,5.012362900000028],[97.49545630000006,5.010675100000071],[97.50111330000004,5.012807],[97.50415480000004,5.011567],[97.50546790000004,5.005705500000033],[97.50203340000007,5.002464300000042],[97.50244850000007,5.000156900000036],[97.50737490000006,4.998217700000055],[97.50806890000007,4.996472500000039],[97.50631560000005,4.993859200000031],[97.50173990000008,4.991442300000074],[97.49753190000007,4.991176300000063],[97.49663370000007,4.988852],[97.497812,4.983013500000027],[97.49319430000008,4.981300300000044],[97.49117050000007,4.978887],[97.49141280000003,4.976805],[97.49315750000005,4.975887100000023],[97.49701670000007,4.977594300000021],[97.49931920000006,4.976706200000024],[97.49940880000008,4.970259400000032],[97.50179590000005,4.967675800000052],[97.50044850000006,4.964807800000074],[97.49831680000005,4.96407970000007],[97.49607260000005,4.967408800000044],[97.49419210000008,4.967710600000032],[97.49245530000007,4.963715100000059],[97.48836170000004,4.963454],[97.48511830000007,4.961067800000023],[97.486661,4.95911140000004],[97.49014350000004,4.959916200000066],[97.49675130000008,4.957019800000069],[97.50280960000003,4.960908700000061],[97.504914,4.959510200000068],[97.504433,4.957903400000021],[97.49888250000004,4.955100400000049],[97.49713630000008,4.947551400000066],[97.492039,4.947418300000038],[97.48744870000007,4.941454400000055],[97.483927,4.945102200000065],[97.47754240000006,4.940962200000058],[97.47538020000007,4.947799700000076],[97.47193220000008,4.947509900000057],[97.47352080000007,4.941615800000022],[97.46761070000008,4.929655400000058],[97.47171230000004,4.926711500000067],[97.47336220000005,4.923391600000059],[97.46690730000006,4.919014200000049],[97.46571450000005,4.915347],[97.46729460000006,4.913392300000055],[97.471958,4.919885700000066],[97.47838940000008,4.920747900000038],[97.47935630000006,4.918424400000049],[97.47359260000007,4.91814370000003],[97.47325370000004,4.91511],[97.47473660000009,4.913019500000075],[97.47805440000008,4.914332],[97.479653,4.911178800000073],[97.48514920000008,4.911195],[97.48774170000007,4.90976610000007],[97.483462,4.905054600000028],[97.48365590000009,4.902283700000055],[97.49055270000008,4.906584200000054],[97.49193540000005,4.901064900000051],[97.49606610000006,4.900356100000067],[97.49912230000007,4.89791850000006],[97.49872230000005,4.894807300000025],[97.49277180000007,4.888533400000028],[97.49325040000008,4.88629160000005],[97.49600760000004,4.886775300000068],[97.50214020000004,4.892459600000052],[97.50622870000007,4.890932500000076],[97.50653460000007,4.887472200000047],[97.50172330000004,4.887892100000045],[97.49994650000008,4.884259200000031],[97.49544140000006,4.881247300000041],[97.49710170000009,4.874922300000037],[97.50326880000006,4.879393900000025],[97.50638320000007,4.885163],[97.50984320000003,4.884852700000067],[97.51165740000005,4.88231490000004],[97.50793140000007,4.880280900000059],[97.50522710000007,4.875929600000063],[97.50210560000005,4.875520100000074],[97.50047860000006,4.870433600000069],[97.49761810000007,4.870843500000035],[97.49464610000007,4.867089400000054],[97.49060250000008,4.867848300000048],[97.48862850000006,4.866806700000041],[97.48788640000004,4.864924700000074],[97.48955470000004,4.856540400000029],[97.48858630000007,4.852887600000031],[97.48543750000005,4.847247500000037],[97.47694150000007,4.838718700000072],[97.47466890000004,4.839552600000047],[97.47458310000007,4.843818900000031],[97.47349320000006,4.844073700000024],[97.47183210000009,4.838324100000023],[97.46863510000009,4.837164500000029],[97.46761790000005,4.838371],[97.47001340000008,4.840345200000058],[97.46966880000008,4.842794500000025],[97.46720070000003,4.842772800000034],[97.465121,4.839749100000063],[97.46357360000007,4.839721200000042],[97.46182750000008,4.841246700000056],[97.46178420000007,4.844779600000038],[97.459078,4.846092500000054],[97.45229730000005,4.835482200000058],[97.444739,4.83367510000005],[97.44249580000007,4.831775900000025],[97.44139490000003,4.828898],[97.45018680000004,4.827735700000062],[97.456439,4.822886],[97.45663430000008,4.820809],[97.45307030000004,4.818670900000029],[97.43680420000004,4.821663600000022],[97.43537480000003,4.819965600000046],[97.43778080000004,4.811887400000046],[97.43529910000007,4.808299200000022],[97.42943320000006,4.807768300000021],[97.42838020000005,4.805783200000064],[97.43305440000006,4.797500500000069],[97.435972,4.795394800000054],[97.43649520000008,4.788561900000047],[97.43425070000006,4.786303800000042],[97.42679180000005,4.785781600000064],[97.42050260000008,4.781994300000065],[97.41079010000004,4.780190600000026],[97.40739920000004,4.782812100000058],[97.40736330000004,4.784621600000037],[97.41041750000005,4.787211100000036],[97.41843020000005,4.787406900000065],[97.418797,4.789832700000034],[97.41234370000006,4.79595930000005],[97.40606070000007,4.794638200000065],[97.40352170000006,4.789493400000026],[97.39993080000005,4.766776600000071],[97.40321180000007,4.763289300000054],[97.40929140000009,4.762536100000034],[97.41474960000005,4.768528700000047],[97.41711380000004,4.768646800000056],[97.42237540000008,4.764680100000021],[97.42442030000007,4.754944700000067],[97.41506170000008,4.759451800000022],[97.41111260000008,4.759372400000075],[97.40711350000004,4.755912900000055],[97.40404410000008,4.755370700000071],[97.39923020000003,4.759610500000065],[97.394375,4.758860700000071],[97.38797540000007,4.760053900000059],[97.38697980000006,4.761717200000021],[97.38788940000006,4.767434600000058],[97.38618990000003,4.768873900000074],[97.36911340000006,4.768944800000043],[97.36543530000006,4.766730300000063],[97.36134660000005,4.767146800000035],[97.36076110000005,4.769131300000026],[97.36607490000006,4.779296700000032],[97.36485260000006,4.782647100000077],[97.36220950000006,4.783492400000057],[97.35609570000008,4.777436600000044],[97.35670470000008,4.773156800000038],[97.35484,4.770997400000056],[97.35306170000007,4.771999100000073],[97.34972370000008,4.778572300000064],[97.34496310000009,4.77784070000007],[97.34081470000007,4.779343100000062],[97.33803510000007,4.778141800000071],[97.33527020000008,4.771721500000069],[97.33643560000007,4.766828600000053],[97.32719910000009,4.759287100000051],[97.32419420000008,4.743293900000026],[97.321691,4.744128300000057],[97.31906520000007,4.740977400000077],[97.32413,4.734515500000043],[97.32769990000008,4.710803800000065],[97.32363130000005,4.697618600000055],[97.31762210000005,4.691226300000039],[97.31195470000006,4.681981500000063],[97.31267450000007,4.673470900000041],[97.31126810000006,4.666670100000033],[97.30567230000008,4.662292800000046],[97.28844270000008,4.65923],[97.27480480000008,4.659280500000023],[97.25856270000008,4.663772],[97.25496970000006,4.661833],[97.25431220000007,4.656964200000061],[97.25454910000008,4.649087800000075],[97.26050510000005,4.622099900000023],[97.26575230000003,4.62134750000007],[97.26998080000004,4.627645600000051],[97.274839,4.631805900000074],[97.28038220000008,4.630191500000024],[97.29906390000008,4.629435],[97.30131490000008,4.628187800000035],[97.30649540000007,4.620517500000062],[97.31302640000007,4.60284530000007],[97.31324880000005,4.602668300000062],[97.32154880000007,4.554168300000072],[97.32394880000004,4.548168300000043],[97.32364880000006,4.54576830000002],[97.32234880000004,4.543268300000022],[97.31884880000007,4.541168300000038],[97.31044880000007,4.539768300000048],[97.30634880000008,4.537668300000064],[97.29714880000006,4.529068300000063],[97.28544880000004,4.527668300000073],[97.28064880000005,4.52526830000005],[97.27464880000008,4.517768300000057],[97.27284880000008,4.511168300000065],[97.27469170000006,4.506455800000026],[97.29414880000007,4.503768300000047],[97.32794880000006,4.51386830000007],[97.33884880000005,4.51266830000003],[97.34234880000008,4.509868300000051],[97.34434880000003,4.501568300000031],[97.34394880000008,4.488268300000072],[97.34696390000005,4.444596800000056],[97.34994880000005,4.435068300000069],[97.36054880000006,4.423568300000056],[97.36254880000007,4.414868300000023],[97.36724880000008,4.406768300000067],[97.36914880000006,4.396668300000044],[97.36804880000005,4.374568300000021],[97.36944880000004,4.366468300000065],[97.36784880000005,4.36146830000007],[97.35684880000008,4.35376830000007],[97.35224880000004,4.347268300000053],[97.35574880000007,4.345068300000037],[97.35914880000007,4.335268300000052],[97.35664880000007,4.296068300000059],[97.35734880000007,4.288268300000027],[97.35974880000003,4.282068300000049],[97.35764880000005,4.270068300000048],[97.34824880000008,4.237668300000053],[97.35114880000003,4.233568300000059],[97.35434880000008,4.223368300000061],[97.35683720000009,4.209138800000062],[97.36032550000004,4.204227700000047],[97.36882070000007,4.203417200000047],[97.37578750000006,4.200118400000065],[97.39598440000003,4.187735100000054],[97.39947440000003,4.183264200000053],[97.40403250000008,4.180411500000048],[97.40846570000008,4.182219700000076],[97.41968460000004,4.176353200000051],[97.46565250000003,4.159090300000059],[97.50000010000008,4.155832100000055],[97.50453180000005,4.157921],[97.50543340000007,4.166430100000071],[97.512888,4.178094300000055],[97.51515950000004,4.186306700000046],[97.51955170000008,4.188652900000022],[97.52155220000009,4.188133400000027],[97.53077850000005,4.193534600000021],[97.54740550000008,4.192771400000026],[97.55656160000007,4.18855190000005],[97.56123130000003,4.184412300000076],[97.56931840000004,4.187339700000052],[97.57336710000004,4.186023200000022],[97.57666680000005,4.182874],[97.57797,4.187498800000071],[97.57361810000003,4.191432],[97.57575090000006,4.196750400000042],[97.57360080000007,4.200926400000071],[97.576925,4.206462900000076],[97.57626240000008,4.210820800000022],[97.58136940000009,4.217398600000024],[97.58284630000009,4.223671300000035],[97.58558060000007,4.225706600000024],[97.58575280000008,4.229349400000046],[97.592588,4.239609700000074],[97.59453310000004,4.249884],[97.60184720000007,4.253719100000069],[97.60637050000008,4.253906400000062],[97.61986570000005,4.246933500000068],[97.62205150000005,4.245113600000025],[97.62876730000005,4.228687100000059],[97.63685880000008,4.225726400000042],[97.64425070000004,4.219561200000044],[97.64724570000004,4.22255320000005],[97.65491820000005,4.226089800000068],[97.66899430000007,4.242235],[97.680726,4.240824400000065],[97.68498080000006,4.247001600000033],[97.71785810000006,4.247182700000053],[97.71684270000009,4.249283800000057],[97.71875960000006,4.256305800000064],[97.72632420000008,4.274228400000027],[97.731562,4.277746600000057],[97.73184970000005,4.286097],[97.73456020000003,4.28714530000002],[97.74132230000004,4.298501500000043],[97.74107730000009,4.300860900000032],[97.74234550000006,4.299410800000032],[97.74360650000006,4.302317200000061],[97.74553440000005,4.302865],[97.74498950000003,4.304316300000039],[97.74896630000006,4.305109500000071],[97.75871330000007,4.315971400000024],[97.76076240000003,4.316156300000046],[97.76105620000004,4.320815800000048],[97.76304640000006,4.320093100000065],[97.76116890000009,4.325656700000025],[97.76236940000007,4.328744500000028],[97.76017360000009,4.330324300000029],[97.763242,4.338866900000028],[97.76614650000005,4.341245600000036],[97.77152580000006,4.340345400000047],[97.78072680000008,4.349044100000071],[97.78457930000008,4.350843700000041],[97.78853020000008,4.349811800000055],[97.79596730000009,4.344443500000068],[97.80000470000004,4.348225600000035],[97.804237,4.347665900000038],[97.80555680000003,4.345591500000069],[97.85540230000004,4.346053600000062],[97.86616890000005,4.344690800000024],[97.92256850000007,4.35109250000005],[97.92497440000005,4.357925700000067],[97.93839740000004,4.371923200000026],[97.94649020000008,4.387518300000067],[97.95057670000006,4.388175800000056],[97.95387970000007,4.391543900000045],[97.96604960000008,4.396234700000036],[97.98001060000007,4.392628600000023],[97.99712640000007,4.399837400000024],[98.00038280000007,4.399216400000057],[98.00214890000007,4.402456],[98.01743640000007,4.415285600000061],[98.01920630000006,4.416368200000022],[98.01981370000004,4.414838600000053],[98.02416250000005,4.415778800000055]]]]},"properties":{"shapeName":"Aceh Timur","shapeISO":"","shapeID":"22746128B9008130278011","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[97.48380840000004,5.241173500000059],[97.48102450000005,5.242944],[97.47739550000006,5.242139300000076],[97.46442240000005,5.236912200000063],[97.46151230000004,5.233595200000025],[97.45810970000008,5.234292200000027],[97.441736,5.227616600000033],[97.40284260000004,5.215093900000056],[97.36815210000003,5.200325500000076],[97.33666370000003,5.19051920000004],[97.33074280000005,5.189844200000039],[97.32787540000004,5.186852400000021],[97.32568980000008,5.188843],[97.31452880000006,5.185414700000024],[97.31182570000004,5.183249],[97.31050040000008,5.184063700000024],[97.28541760000007,5.170765300000028],[97.27616050000006,5.169207700000072],[97.27055790000009,5.166747600000065],[97.27032040000006,5.165217300000052],[97.26784890000005,5.168679800000064],[97.244751,5.155436500000064],[97.23696840000008,5.153146600000071],[97.22773820000003,5.153030300000069],[97.22996530000006,5.154928600000062],[97.21579960000008,5.146793],[97.20217170000006,5.142609700000037],[97.20195450000006,5.14115570000007],[97.20061180000005,5.142616300000043],[97.18994130000004,5.141256300000066],[97.17727210000004,5.142118200000027],[97.17665050000005,5.121190500000068],[97.17864960000009,5.119791200000066],[97.17776520000007,5.115220700000066],[97.17616190000007,5.114935400000036],[97.17407690000005,5.103834100000029],[97.175043,5.100073300000076],[97.17718140000005,5.098731300000054],[97.17682970000004,5.092048800000043],[97.17938420000007,5.083705200000054],[97.17513220000006,5.082686800000033],[97.156336,5.083704200000057],[97.14601430000005,5.090018800000053],[97.13550510000005,5.091695600000037],[97.13005940000005,5.090657700000065],[97.12875230000009,5.095404700000074],[97.124869,5.099348700000064],[97.11748340000008,5.104060300000071],[97.10563870000004,5.106371500000023],[97.10164670000006,5.109615800000029],[97.10123160000006,5.114446600000065],[97.10790920000005,5.125578500000074],[97.09438410000007,5.140385500000036],[97.08557090000005,5.147718600000076],[97.08050750000007,5.157178200000033],[97.07130490000009,5.157237],[97.06605920000004,5.158832],[97.060569,5.164902900000072],[97.05664050000007,5.170141600000022],[97.06074840000008,5.178306700000064],[97.05455340000003,5.185881],[97.05272920000004,5.192991800000073],[97.04535320000008,5.198462300000074],[97.02974620000003,5.197324900000069],[97.02804640000005,5.198620100000028],[97.03106170000007,5.204711700000075],[97.025976,5.208765],[97.02731570000003,5.210516300000052],[97.03682280000004,5.213309300000049],[97.03867950000006,5.216170500000032],[97.03476950000004,5.219385600000066],[97.03722430000005,5.222747300000037],[97.03694160000003,5.22958680000005],[97.04650360000005,5.241348],[97.03637270000007,5.246640800000023],[97.03644740000004,5.249498800000026],[97.035822,5.245986500000072],[97.04031860000003,5.24410940000007],[97.03819380000004,5.240866500000038],[97.04113990000008,5.240173700000071],[97.03993010000005,5.2377],[97.03423840000005,5.239334400000075],[97.03284790000004,5.240039200000069],[97.03348840000007,5.24163290000007],[97.02889610000005,5.244444200000032],[97.02990220000004,5.247714900000062],[97.032641,5.24675940000003],[97.033178,5.250592100000063],[97.03210930000006,5.251131900000075],[97.02155790000006,5.252523200000041],[97.02200120000003,5.253608600000064],[96.99609430000004,5.260139400000071],[96.97961680000009,5.262581100000034],[96.95765010000008,5.261008200000049],[96.91501390000008,5.250760400000047],[96.90779040000007,5.250337500000057],[96.91326120000008,5.246816300000035],[96.90702220000009,5.245786800000076],[96.90612490000007,5.243851900000038],[96.906731,5.242692100000056],[96.91012980000005,5.242846],[96.90814520000004,5.235745400000042],[96.91168660000005,5.234857800000043],[96.91474080000006,5.225331],[96.913077,5.222952300000031],[96.90973930000007,5.225279100000023],[96.90805050000006,5.221779500000025],[96.91118750000004,5.222857600000054],[96.91454010000007,5.221078600000055],[96.916868,5.222680100000048],[96.916452,5.218324900000027],[96.911544,5.217011300000024],[96.911033,5.214952],[96.91276950000008,5.214547700000026],[96.91692740000008,5.217401800000061],[96.91622630000006,5.213034800000059],[96.92182080000003,5.209833700000047],[96.92459260000004,5.21297560000005],[96.92502040000005,5.210431100000051],[96.92046670000008,5.207406500000047],[96.91431170000004,5.206261600000062],[96.91374120000006,5.203993500000024],[96.916033,5.20153490000007],[96.91463190000007,5.199651200000062],[96.906379,5.200517300000058],[96.90395880000005,5.193459300000029],[96.90678620000006,5.192753100000061],[96.907376,5.190034100000048],[96.90378820000006,5.184948800000029],[96.90325150000007,5.180912600000056],[96.899543,5.181655100000057],[96.89896240000007,5.193417500000066],[96.88144840000007,5.192407],[96.88225670000008,5.170676300000025],[96.88983860000008,5.162298900000053],[96.89060410000008,5.150681200000065],[96.878836,5.134336],[96.86749320000007,5.105720100000042],[96.85945460000005,5.09509920000005],[96.84489040000005,5.08394450000003],[96.82129680000008,5.071793200000059],[96.82588990000005,5.061404500000037],[96.82747280000007,5.054079700000045],[96.81862650000005,5.038432400000033],[96.81770970000008,5.009317900000042],[96.81894170000004,5.004891500000042],[96.81658510000005,4.989539100000059],[96.80835360000003,4.969092500000045],[96.79939310000003,4.956415200000038],[96.78598190000008,4.942060800000036],[96.80103850000006,4.93455670000003],[96.80474020000008,4.931155],[96.80846160000004,4.921778900000049],[96.81933150000003,4.913726600000075],[96.82642940000005,4.910394200000042],[96.84410290000005,4.887873600000034],[96.85449,4.880251900000076],[96.87932690000008,4.87412930000005],[96.893219,4.875933900000064],[96.91146940000004,4.875761200000056],[96.94439220000004,4.864895400000023],[96.95768650000008,4.862562300000036],[96.98812870000006,4.862871],[96.99941960000007,4.866579900000033],[97.00314640000005,4.871797700000059],[97.00551780000006,4.880887800000039],[97.00863260000006,4.886563200000069],[97.010745,4.905302600000027],[97.01965990000008,4.913373100000058],[97.02421680000003,4.914666400000044],[97.04521440000008,4.908329500000036],[97.04831610000008,4.908155800000031],[97.05560060000005,4.912382],[97.07140760000004,4.910109400000067],[97.08125770000004,4.910686200000043],[97.086928,4.905583400000069],[97.09403920000005,4.906883500000049],[97.09897070000005,4.904886500000032],[97.10189850000006,4.901786700000059],[97.10699760000006,4.904909300000043],[97.11356710000007,4.904196500000069],[97.11610560000008,4.909688600000038],[97.120843,4.911713100000043],[97.13123730000007,4.913204900000039],[97.14365030000005,4.912785700000029],[97.17009020000006,4.899604100000033],[97.223229,4.882701300000065],[97.23203430000007,4.881691100000069],[97.24027810000007,4.874792400000047],[97.25154650000007,4.872109200000068],[97.25782110000006,4.867454100000032],[97.26847930000008,4.85086380000007],[97.27166710000006,4.834647700000062],[97.28152550000004,4.82418320000005],[97.28107590000008,4.815427500000055],[97.27333250000004,4.795478400000036],[97.26894610000005,4.788290200000063],[97.25741870000007,4.774853200000052],[97.25429130000003,4.76758940000002],[97.25336540000006,4.759572100000071],[97.247162,4.760242800000071],[97.24790950000005,4.75473130000006],[97.25292020000006,4.748052600000051],[97.25270510000007,4.743533],[97.25838980000003,4.742996],[97.25803080000009,4.739870800000062],[97.25216950000004,4.737650700000074],[97.25144250000005,4.735075900000027],[97.25678310000006,4.725349100000074],[97.25898490000009,4.724619500000074],[97.26117170000003,4.729954600000042],[97.26373520000004,4.731247500000052],[97.27214550000008,4.72646130000004],[97.27519650000005,4.731077600000049],[97.26948710000005,4.734020100000066],[97.27056110000007,4.737078],[97.28050030000009,4.733160500000054],[97.31454850000006,4.733880400000032],[97.31706780000007,4.736502900000062],[97.31757480000005,4.742362700000058],[97.31906520000007,4.740977400000077],[97.321691,4.744128300000057],[97.32419420000008,4.743293900000026],[97.32719910000009,4.759287100000051],[97.33643560000007,4.766828600000053],[97.33527020000008,4.771721500000069],[97.33803510000007,4.778141800000071],[97.34081470000007,4.779343100000062],[97.34496310000009,4.77784070000007],[97.34972370000008,4.778572300000064],[97.35306170000007,4.771999100000073],[97.35484,4.770997400000056],[97.35670470000008,4.773156800000038],[97.35609570000008,4.777436600000044],[97.36220950000006,4.783492400000057],[97.36485260000006,4.782647100000077],[97.36607490000006,4.779296700000032],[97.36076110000005,4.769131300000026],[97.36134660000005,4.767146800000035],[97.36543530000006,4.766730300000063],[97.36911340000006,4.768944800000043],[97.38618990000003,4.768873900000074],[97.38788940000006,4.767434600000058],[97.38697980000006,4.761717200000021],[97.38797540000007,4.760053900000059],[97.394375,4.758860700000071],[97.39923020000003,4.759610500000065],[97.40404410000008,4.755370700000071],[97.40711350000004,4.755912900000055],[97.41111260000008,4.759372400000075],[97.41506170000008,4.759451800000022],[97.42442030000007,4.754944700000067],[97.42237540000008,4.764680100000021],[97.41711380000004,4.768646800000056],[97.41474960000005,4.768528700000047],[97.40929140000009,4.762536100000034],[97.40321180000007,4.763289300000054],[97.39993080000005,4.766776600000071],[97.40352170000006,4.789493400000026],[97.40606070000007,4.794638200000065],[97.41234370000006,4.79595930000005],[97.418797,4.789832700000034],[97.41843020000005,4.787406900000065],[97.41041750000005,4.787211100000036],[97.40736330000004,4.784621600000037],[97.40739920000004,4.782812100000058],[97.41079010000004,4.780190600000026],[97.42050260000008,4.781994300000065],[97.42679180000005,4.785781600000064],[97.43425070000006,4.786303800000042],[97.43649520000008,4.788561900000047],[97.435972,4.795394800000054],[97.43305440000006,4.797500500000069],[97.42838020000005,4.805783200000064],[97.42943320000006,4.807768300000021],[97.43529910000007,4.808299200000022],[97.43778080000004,4.811887400000046],[97.43537480000003,4.819965600000046],[97.43680420000004,4.821663600000022],[97.45307030000004,4.818670900000029],[97.45663430000008,4.820809],[97.456439,4.822886],[97.45018680000004,4.827735700000062],[97.44139490000003,4.828898],[97.44249580000007,4.831775900000025],[97.444739,4.83367510000005],[97.45229730000005,4.835482200000058],[97.459078,4.846092500000054],[97.46178420000007,4.844779600000038],[97.46182750000008,4.841246700000056],[97.46357360000007,4.839721200000042],[97.465121,4.839749100000063],[97.46720070000003,4.842772800000034],[97.46966880000008,4.842794500000025],[97.47001340000008,4.840345200000058],[97.46761790000005,4.838371],[97.46863510000009,4.837164500000029],[97.47183210000009,4.838324100000023],[97.47349320000006,4.844073700000024],[97.47458310000007,4.843818900000031],[97.47466890000004,4.839552600000047],[97.47694150000007,4.838718700000072],[97.48543750000005,4.847247500000037],[97.48858630000007,4.852887600000031],[97.48955470000004,4.856540400000029],[97.48788640000004,4.864924700000074],[97.48862850000006,4.866806700000041],[97.49060250000008,4.867848300000048],[97.49464610000007,4.867089400000054],[97.49761810000007,4.870843500000035],[97.50047860000006,4.870433600000069],[97.50210560000005,4.875520100000074],[97.50522710000007,4.875929600000063],[97.50793140000007,4.880280900000059],[97.51165740000005,4.88231490000004],[97.50984320000003,4.884852700000067],[97.50638320000007,4.885163],[97.50326880000006,4.879393900000025],[97.49710170000009,4.874922300000037],[97.49544140000006,4.881247300000041],[97.49994650000008,4.884259200000031],[97.50172330000004,4.887892100000045],[97.50653460000007,4.887472200000047],[97.50622870000007,4.890932500000076],[97.50214020000004,4.892459600000052],[97.49600760000004,4.886775300000068],[97.49325040000008,4.88629160000005],[97.49277180000007,4.888533400000028],[97.49872230000005,4.894807300000025],[97.49912230000007,4.89791850000006],[97.49606610000006,4.900356100000067],[97.49193540000005,4.901064900000051],[97.49055270000008,4.906584200000054],[97.48365590000009,4.902283700000055],[97.483462,4.905054600000028],[97.48774170000007,4.90976610000007],[97.48514920000008,4.911195],[97.479653,4.911178800000073],[97.47805440000008,4.914332],[97.47473660000009,4.913019500000075],[97.47325370000004,4.91511],[97.47359260000007,4.91814370000003],[97.47935630000006,4.918424400000049],[97.47838940000008,4.920747900000038],[97.471958,4.919885700000066],[97.46729460000006,4.913392300000055],[97.46571450000005,4.915347],[97.46690730000006,4.919014200000049],[97.47336220000005,4.923391600000059],[97.47171230000004,4.926711500000067],[97.46761070000008,4.929655400000058],[97.47352080000007,4.941615800000022],[97.47193220000008,4.947509900000057],[97.47538020000007,4.947799700000076],[97.47754240000006,4.940962200000058],[97.483927,4.945102200000065],[97.48744870000007,4.941454400000055],[97.492039,4.947418300000038],[97.49713630000008,4.947551400000066],[97.49888250000004,4.955100400000049],[97.504433,4.957903400000021],[97.504914,4.959510200000068],[97.50280960000003,4.960908700000061],[97.49675130000008,4.957019800000069],[97.49014350000004,4.959916200000066],[97.486661,4.95911140000004],[97.48511830000007,4.961067800000023],[97.48836170000004,4.963454],[97.49245530000007,4.963715100000059],[97.49419210000008,4.967710600000032],[97.49607260000005,4.967408800000044],[97.49831680000005,4.96407970000007],[97.50044850000006,4.964807800000074],[97.50179590000005,4.967675800000052],[97.49940880000008,4.970259400000032],[97.49931920000006,4.976706200000024],[97.49701670000007,4.977594300000021],[97.49315750000005,4.975887100000023],[97.49141280000003,4.976805],[97.49117050000007,4.978887],[97.49319430000008,4.981300300000044],[97.497812,4.983013500000027],[97.49663370000007,4.988852],[97.49753190000007,4.991176300000063],[97.50173990000008,4.991442300000074],[97.50631560000005,4.993859200000031],[97.50806890000007,4.996472500000039],[97.50737490000006,4.998217700000055],[97.50244850000007,5.000156900000036],[97.50203340000007,5.002464300000042],[97.50546790000004,5.005705500000033],[97.50415480000004,5.011567],[97.50111330000004,5.012807],[97.49545630000006,5.010675100000071],[97.49351030000008,5.012362900000028],[97.493535,5.014510100000052],[97.49550730000004,5.016425500000025],[97.50288040000004,5.017323500000032],[97.50654210000005,5.022488100000032],[97.50706920000005,5.029134300000067],[97.51350150000007,5.029170700000066],[97.51459390000008,5.030866100000026],[97.51036150000004,5.03800380000007],[97.50904180000003,5.043365300000062],[97.50756760000007,5.0442],[97.506318,5.04420870000007],[97.50324940000007,5.037996900000053],[97.49989910000005,5.038613700000042],[97.50019450000008,5.043294800000069],[97.50530880000008,5.045699800000023],[97.50535260000004,5.047282500000051],[97.49784830000004,5.04975],[97.49800230000005,5.051125700000057],[97.50560240000004,5.054866],[97.50871520000004,5.053804700000057],[97.51195040000005,5.050204700000052],[97.51382690000008,5.051576700000055],[97.51155970000008,5.056549200000063],[97.50734370000004,5.059152500000039],[97.50674980000008,5.062082500000031],[97.50990990000008,5.065382200000045],[97.51300650000007,5.065866600000049],[97.51446580000004,5.064575300000058],[97.51322330000005,5.059177500000033],[97.514849,5.056903],[97.51480040000007,5.069301],[97.51222040000005,5.07021050000003],[97.50881040000007,5.067992100000026],[97.50962720000007,5.073092200000076],[97.50761540000008,5.07532150000003],[97.50575910000003,5.074726600000076],[97.50602480000003,5.069355600000051],[97.49854250000004,5.068462300000022],[97.50161720000006,5.076802],[97.499892,5.078516],[97.49632050000008,5.073408],[97.49176080000007,5.071481200000051],[97.49124610000007,5.074963],[97.49507030000007,5.077671600000031],[97.49738860000008,5.081741500000021],[97.49536560000007,5.086246900000049],[97.49223920000009,5.087045500000045],[97.49058230000009,5.086077700000033],[97.48782290000008,5.081538100000046],[97.48851090000005,5.078764200000023],[97.48480280000007,5.078249700000072],[97.47977830000008,5.087031100000047],[97.47631920000003,5.088439700000038],[97.47450210000005,5.09506],[97.47136290000003,5.095475700000065],[97.46943950000008,5.092864300000031],[97.46750180000004,5.09416520000002],[97.469264,5.098630100000037],[97.47308840000005,5.101809700000047],[97.471753,5.104696800000056],[97.466558,5.105409300000076],[97.46869510000005,5.109359500000039],[97.46264780000007,5.109379100000069],[97.45975650000008,5.111921100000075],[97.46399570000005,5.118334400000037],[97.46841870000009,5.116864200000066],[97.46947750000004,5.117831900000056],[97.47029980000008,5.124505200000044],[97.47659520000008,5.124203900000055],[97.47833470000006,5.126497],[97.47822020000007,5.128824200000054],[97.47349690000004,5.131681300000025],[97.46893360000007,5.131345300000021],[97.46846070000004,5.134934500000043],[97.47009760000003,5.139860400000032],[97.46748840000004,5.145398800000066],[97.47016910000008,5.150218100000075],[97.46601250000003,5.153621800000053],[97.46830160000007,5.154194100000041],[97.47395640000008,5.151524400000028],[97.47610930000008,5.152737900000034],[97.481248,5.148963600000059],[97.482654,5.152045200000032],[97.48715430000004,5.150559],[97.48861820000008,5.154030400000067],[97.48715330000005,5.160856900000056],[97.48938180000005,5.161090600000023],[97.49110250000007,5.157118800000035],[97.49471720000008,5.159031700000071],[97.49824850000005,5.158807],[97.49680810000007,5.163076100000069],[97.49912120000005,5.16543],[97.49769830000008,5.168056600000057],[97.50034180000006,5.168077600000061],[97.49975150000006,5.172218900000075],[97.49743810000007,5.17106670000004],[97.49432990000008,5.17449270000003],[97.49181620000007,5.173445500000071],[97.48928650000005,5.174828],[97.49127870000007,5.179097200000058],[97.48795140000004,5.178738700000054],[97.48585660000003,5.181691600000022],[97.488103,5.185298800000055],[97.48951230000006,5.182047700000055],[97.49066380000005,5.182308100000057],[97.48773530000005,5.188127500000064],[97.49178880000005,5.189199600000052],[97.49238870000005,5.185146300000042],[97.49760890000005,5.188759700000048],[97.50072310000007,5.187781400000063],[97.50141790000004,5.188971600000059],[97.49812040000006,5.193655700000022],[97.50094230000008,5.19554990000006],[97.498743,5.196893400000022],[97.49685570000008,5.202749800000049],[97.49436010000005,5.202084400000047],[97.49298960000004,5.197712400000057],[97.48792590000005,5.199397600000054],[97.49121610000003,5.202766500000052],[97.48832480000004,5.20924210000004],[97.49069610000004,5.208942500000035],[97.49332680000003,5.205484200000058],[97.49474940000005,5.207264400000042],[97.49350240000007,5.210335900000075],[97.48972130000004,5.211881500000061],[97.48988550000007,5.213919100000055],[97.49184050000008,5.214564700000039],[97.49553190000006,5.211546400000032],[97.49998370000009,5.213022200000069],[97.495735,5.216963300000032],[97.497507,5.221608400000036],[97.49370690000006,5.219001900000023],[97.48861050000005,5.224385700000028],[97.48833990000008,5.23109160000007],[97.48380840000004,5.241173500000059]]]},"properties":{"shapeName":"Aceh Utara","shapeISO":"","shapeID":"22746128B20715894928862","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[99.89990790000007,-0.419399],[99.89924150000007,-0.421239199999945],[99.90111010000004,-0.421606899999972],[99.90174940000009,-0.419308899999976],[99.89990790000007,-0.419399]]],[[[99.90319350000004,-0.408323699999926],[99.90164560000005,-0.40836],[99.90243480000004,-0.410453699999948],[99.90395870000003,-0.409851799999956],[99.90319350000004,-0.408323699999926]]],[[[100.53555930000005,-0.280546799999968],[100.53247220000009,-0.277179199999978],[100.53963020000003,-0.259139599999969],[100.53943990000005,-0.257296399999973],[100.53548660000007,-0.253212699999949],[100.52706020000005,-0.248501199999964],[100.525708,-0.249548599999969],[100.52123480000006,-0.248397099999977],[100.51728150000008,-0.244313299999931],[100.50840030000006,-0.241615399999944],[100.499361,-0.2344432],[100.48511220000006,-0.227060499999936],[100.48107860000005,-0.222848599999963],[100.46949660000007,-0.219288399999925],[100.46780180000007,-0.217624599999965],[100.46770220000008,-0.214926],[100.46224140000004,-0.209929199999976],[100.44754750000004,-0.203334],[100.44228480000004,-0.193589499999973],[100.44248190000008,-0.175898599999925],[100.43980110000007,-0.172300699999937],[100.41557610000007,-0.163656899999978],[100.39969090000005,-0.160659499999952],[100.396315,-0.156661699999972],[100.39452750000004,-0.149365499999931],[100.38777630000004,-0.149166],[100.37849320000004,-0.145693299999948],[100.37287980000008,-0.127721699999938],[100.374411,-0.120174399999939],[100.37183110000007,-0.112911299999951],[100.36731680000008,-0.109097299999974],[100.36505970000007,-0.109016299999951],[100.36183510000006,-0.105364499999951],[100.36175440000005,-0.102605299999937],[100.35780420000003,-0.096194299999979],[100.351608,-0.093717],[100.35691730000008,-0.091081699999961],[100.35538550000007,-0.085887899999932],[100.33208860000008,-0.076677599999925],[100.32999260000008,-0.074161899999979],[100.32515560000007,-0.060122299999932],[100.32031880000005,-0.055902299999957],[100.31677160000004,-0.046082599999977],[100.30959730000006,-0.051033199999949],[100.30661470000007,-0.054766499999971],[100.301778,-0.055618699999968],[100.26436480000007,-0.034798099999932],[100.261068,-0.041603099999975],[100.26140340000006,-0.053646],[100.26006270000005,-0.057273699999939],[100.251339,-0.064585099999931],[100.249482,-0.065796],[100.244022,-0.065248699999927],[100.23675980000007,-0.0624579],[100.18845150000004,-0.091093199999932],[100.18766320000003,-0.0932346],[100.17593410000006,-0.092320599999937],[100.17026880000009,-0.0980159],[100.16609820000008,-0.100038699999971],[100.16009980000007,-0.107611799999972],[100.15031520000008,-0.1019334],[100.14043670000007,-0.102406299999927],[100.13469330000004,-0.094478299999935],[100.12340740000008,-0.094483399999945],[100.12157970000004,-0.086647],[100.11534350000005,-0.084771],[100.11401760000007,-0.079403899999932],[100.10699440000008,-0.075760799999955],[100.10334810000006,-0.075879499999928],[100.10087810000005,-0.078600899999969],[100.09711430000004,-0.079784299999972],[100.09017520000003,-0.077901199999928],[100.08594010000007,-0.080849599999965],[100.08001630000007,-0.080875699999979],[100.07632520000004,-0.083760499999926],[100.07084170000007,-0.084544199999925],[100.061423,-0.084295399999974],[100.05061030000007,-0.081230699999935],[100.04356780000006,-0.083102099999962],[100.03745860000004,-0.0814995],[100.038156,-0.083289399999956],[100.03626020000007,-0.083716899999956],[100.03179070000004,-0.091763699999944],[100.02258170000005,-0.093702899999926],[100.015289,-0.097726499999965],[100.01623020000005,-0.103524799999946],[100.01340770000007,-0.119026799999972],[100.00823230000003,-0.123050299999932],[100.00446850000009,-0.128493899999967],[100.00482160000007,-0.1347656],[100.00129780000003,-0.138601599999959],[100.00105790000003,-0.143759299999942],[99.99459010000004,-0.142469399999925],[99.99197280000004,-0.139544099999966],[99.98921040000005,-0.138959299999954],[99.98746580000005,-0.141299699999934],[99.987902,-0.145248799999933],[99.98528520000008,-0.1461265],[99.98310430000004,-0.144371399999955],[99.98092290000005,-0.138667],[99.96929140000003,-0.138375],[99.96391210000007,-0.139984299999981],[99.96085890000006,-0.143494799999928],[99.95097230000005,-0.148614599999974],[99.94835540000008,-0.148761099999945],[99.94384780000007,-0.145250699999963],[99.94181240000006,-0.145835899999952],[99.93992240000006,-0.150516599999946],[99.93300830000004,-0.148609],[99.91862390000006,-0.155982599999959],[99.91469860000007,-0.162711099999967],[99.91106350000007,-0.161394899999948],[99.90815550000008,-0.158323399999972],[99.90175810000005,-0.160664],[99.89797780000004,-0.157153499999936],[99.88489210000006,-0.161981199999957],[99.87267860000009,-0.159495],[99.85907650000007,-0.162986399999966],[99.85107930000004,-0.161816499999929],[99.84831680000008,-0.163133],[99.84715380000006,-0.167667699999924],[99.84526360000007,-0.168545399999971],[99.84221030000003,-0.163572099999953],[99.83784810000009,-0.162987299999941],[99.83306610000005,-0.165739599999938],[99.83145080000008,-0.169131],[99.81952820000004,-0.168400199999951],[99.80969090000008,-0.172266099999945],[99.80674480000005,-0.1758894],[99.80452690000004,-0.176157],[99.76788390000007,-0.170928899999979],[99.77729070000004,-0.181833299999937],[99.79817750000007,-0.219240899999932],[99.805064,-0.239033],[99.80472290000006,-0.245678299999952],[99.80193510000004,-0.2526961],[99.80398430000008,-0.263866899999925],[99.808936,-0.2797063],[99.81957850000003,-0.300586499999952],[99.83426050000008,-0.311297899999943],[99.85844550000007,-0.324156599999981],[99.88507790000006,-0.344175499999949],[99.88809370000007,-0.343888799999945],[99.88752490000007,-0.346524],[99.90499590000007,-0.364538499999981],[99.91563840000003,-0.381064199999969],[99.91837110000006,-0.393695199999968],[99.91780240000008,-0.396674099999927],[99.91484350000007,-0.3975337],[99.913592,-0.400627199999974],[99.91461640000006,-0.401715499999966],[99.91842880000007,-0.4013714],[99.93208640000006,-0.409561499999938],[99.94674090000007,-0.419270399999959],[99.96260210000008,-0.432649799999979],[99.97004110000006,-0.4176794],[99.97770480000008,-0.416960699999947],[99.97948670000005,-0.414628],[99.97975,-0.40324],[99.98592,-0.39544],[99.98894,-0.3948],[99.99987030000005,-0.39813],[99.99961210000004,-0.392403899999977],[99.99468580000007,-0.380763799999954],[99.98997460000004,-0.377746399999978],[99.98997420000006,-0.374512799999934],[99.98783290000006,-0.374297499999955],[99.98526270000008,-0.368693],[99.98804580000007,-0.363519],[99.99329160000008,-0.359746],[100.00057180000005,-0.358236199999965],[100.01776480000007,-0.363724599999955],[100.02305580000007,-0.3621139],[100.02913970000009,-0.365230099999962],[100.03481290000008,-0.362559399999952],[100.04580250000004,-0.364333399999964],[100.04825870000008,-0.363508799999977],[100.049268,-0.360862299999951],[100.048108,-0.355859599999974],[100.05688640000005,-0.348529399999961],[100.06116740000004,-0.335163899999941],[100.066734,-0.3293431],[100.08726770000004,-0.324611399999981],[100.09339210000007,-0.325999],[100.09960230000007,-0.3318185],[100.10495540000005,-0.332464499999958],[100.11587540000005,-0.330954399999939],[100.12144190000004,-0.324918099999934],[100.12401130000006,-0.324271099999976],[100.12893520000006,-0.3165104],[100.13107640000004,-0.316294599999935],[100.13642970000006,-0.319958499999927],[100.15077830000007,-0.342159399999957],[100.15570480000008,-0.357032299999958],[100.15848870000008,-0.360049699999934],[100.15549340000007,-0.378156899999965],[100.157769,-0.390221799999949],[100.16248380000008,-0.396180899999933],[100.16719830000005,-0.398829],[100.17618920000007,-0.408319],[100.18835880000006,-0.414387199999965],[100.19929910000008,-0.415476499999954],[100.20376140000008,-0.413336499999957],[100.20959090000008,-0.414704399999948],[100.21386970000003,-0.413538299999971],[100.21686140000008,-0.414933099999928],[100.21850370000004,-0.420329399999957],[100.21549380000005,-0.428233699999964],[100.21559430000008,-0.431994499999973],[100.22300490000003,-0.438330699999938],[100.22656450000005,-0.445783699999936],[100.23838560000007,-0.448518699999966],[100.24624940000007,-0.459847299999979],[100.24647130000005,-0.467575699999941],[100.264484,-0.471599699999956],[100.27159390000008,-0.4692109],[100.27205670000006,-0.467448199999978],[100.28329540000004,-0.461425399999939],[100.28528950000003,-0.461829899999941],[100.28783560000005,-0.456422299999929],[100.29305760000005,-0.451200899999947],[100.30643450000008,-0.432056299999942],[100.31229760000008,-0.429113499999971],[100.31568630000004,-0.429181099999937],[100.32336,-0.410737099999949],[100.331876,-0.402957199999946],[100.33190270000006,-0.393984699999976],[100.33327080000004,-0.392085],[100.35302980000006,-0.391503],[100.35786470000005,-0.388969599999939],[100.36335830000007,-0.390388799999926],[100.36616460000005,-0.389113099999975],[100.36995730000007,-0.389881199999934],[100.38111770000006,-0.383937],[100.39788590000006,-0.384802599999944],[100.41809150000006,-0.392016699999942],[100.43772130000008,-0.389209599999958],[100.45186280000007,-0.392029],[100.46932740000005,-0.390280399999938],[100.47168510000006,-0.386996899999929],[100.473094,-0.380864599999938],[100.47874330000008,-0.374921599999936],[100.48135850000006,-0.356615499999975],[100.48756890000004,-0.347751199999948],[100.49500430000006,-0.34122],[100.49537550000008,-0.334599599999933],[100.50376110000008,-0.321393799999953],[100.50513550000005,-0.312783599999932],[100.50960080000004,-0.303440299999977],[100.51790060000008,-0.295136599999978],[100.52538730000003,-0.290260799999942],[100.53087130000006,-0.282455099999936],[100.53555930000005,-0.280546799999968]],[[100.39747340000008,-0.299302199999943],[100.39640050000008,-0.305885599999954],[100.40185030000004,-0.3114572],[100.40563570000006,-0.318013099999973],[100.40133140000006,-0.322741299999961],[100.395208,-0.3257679],[100.37702320000005,-0.322036499999967],[100.37091510000005,-0.322279],[100.36465870000006,-0.316315199999963],[100.36424290000008,-0.310955599999943],[100.35966420000005,-0.310452099999964],[100.35870720000008,-0.3063296],[100.35504040000006,-0.302357099999938],[100.35232660000008,-0.302909499999942],[100.34883650000006,-0.300108799999975],[100.347503,-0.300472899999932],[100.34535210000007,-0.296022099999959],[100.34281880000003,-0.297472299999924],[100.341584,-0.291913099999931],[100.33567420000008,-0.285258399999975],[100.336067,-0.283799899999963],[100.33400650000004,-0.283076599999958],[100.33457520000007,-0.280712799999947],[100.33252870000007,-0.280290899999954],[100.33479460000007,-0.278190299999949],[100.33479680000005,-0.276258199999972],[100.337305,-0.276773],[100.33801620000008,-0.275742799999932],[100.33671190000007,-0.272690299999965],[100.34889880000009,-0.275931499999956],[100.35814410000006,-0.284602099999972],[100.36598860000004,-0.283154299999978],[100.36850890000005,-0.281112699999937],[100.37482540000008,-0.286482899999953],[100.38158860000004,-0.285167],[100.38462180000005,-0.2828608],[100.38932940000007,-0.285024],[100.39264620000006,-0.290793099999973],[100.39600990000008,-0.2904116],[100.39747710000006,-0.296558699999935],[100.39747340000008,-0.299302199999943]]]]},"properties":{"shapeName":"Agam","shapeISO":"","shapeID":"22746128B80795724334348","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[124.29086790000008,-8.470272199999954],[124.28011660000004,-8.470404199999962],[124.274605,-8.473282499999925],[124.27118640000003,-8.473277699999926],[124.2716908000001,-8.475369299999954],[124.26999020000005,-8.476924199999928],[124.269747,-8.47969],[124.27340120000008,-8.4878754],[124.27693370000009,-8.491179699999975],[124.28041320000011,-8.488749599999949],[124.28181590000008,-8.484332399999971],[124.2840768000001,-8.482807799999932],[124.29387120000001,-8.48248129999996],[124.29554280000002,-8.476155499999948],[124.29086790000008,-8.470272199999954]]],[[[123.89307460000009,-8.4302534],[123.89153870000007,-8.426790799999935],[123.88522870000008,-8.424663399999929],[123.87842620000004,-8.429746399999942],[123.8747641000001,-8.429802699999925],[123.8731302000001,-8.431436599999927],[123.8762852000001,-8.436000099999944],[123.87611620000007,-8.43971849999997],[123.88079240000002,-8.443324299999972],[123.88067980000005,-8.44146509999996],[123.88242630000002,-8.441746799999976],[123.88208830000008,-8.440394599999934],[123.88445450000006,-8.438535399999978],[123.88484890000007,-8.435436699999968],[123.89307460000009,-8.4302534]]],[[[123.8355858000001,-8.394855599999971],[123.83659320000004,-8.381423],[123.83525,-8.371348699999942],[123.82886960000008,-8.367654699999946],[123.81980260000012,-8.3656398],[123.815437,-8.365975699999979],[123.80804920000003,-8.3726919],[123.80939240000009,-8.384445399999947],[123.80804920000003,-8.387803499999961],[123.81107150000003,-8.397877899999969],[123.80939240000009,-8.402915099999973],[123.8134222000001,-8.408623899999952],[123.82584720000011,-8.413996899999972],[123.83323510000002,-8.409631299999944],[123.83755610000003,-8.410686099999964],[123.8355858000001,-8.394855599999971]]],[[[124.09523520000005,-8.364641499999948],[124.09251070000005,-8.368107799999962],[124.0931045000001,-8.373466099999973],[124.09689930000002,-8.373970699999973],[124.09755480000001,-8.374925599999926],[124.098867,-8.368531699999949],[124.1006483000001,-8.366932299999974],[124.09523520000005,-8.364641499999948]]],[[[123.955,-8.34927659999994],[123.95208590000004,-8.346614099999954],[123.94658970000012,-8.3470345],[123.94005310000011,-8.349357599999962],[123.93315830000006,-8.353943899999933],[123.91081180000003,-8.356710799999973],[123.90859060000003,-8.358887799999934],[123.90123640000002,-8.36152889999994],[123.8997111000001,-8.369993699999952],[123.90775150000002,-8.374043699999959],[123.91522050000003,-8.380389399999956],[123.91575750000004,-8.382332299999973],[123.91814690000001,-8.379498799999965],[123.92054170000006,-8.378963],[123.9303116000001,-8.382475],[123.94102590000011,-8.376096299999972],[123.94247010000004,-8.372065899999939],[123.94722620000005,-8.367941599999938],[123.94775370000002,-8.365907799999945],[123.9451352000001,-8.365589199999931],[123.9446769000001,-8.363961399999937],[123.94979820000003,-8.35870049999994],[123.95488180000007,-8.356697399999973],[123.955,-8.34927659999994]]],[[[124.35599330000002,-8.275887499999953],[124.3546146000001,-8.274974199999974],[124.35190670000009,-8.276891499999977],[124.34905060000006,-8.275398099999961],[124.34508530000005,-8.277110299999947],[124.34297990000005,-8.275369499999954],[124.33866670000009,-8.275944099999947],[124.32564410000009,-8.282992699999966],[124.3252596000001,-8.285783199999969],[124.31559060000006,-8.296248699999978],[124.3152665,-8.298764399999925],[124.3201299000001,-8.3077208],[124.32150510000008,-8.315701399999966],[124.32392470000002,-8.317441299999928],[124.3263095000001,-8.315399599999978],[124.32394320000003,-8.317453499999942],[124.32751630000007,-8.319790499999954],[124.32963260000008,-8.323991],[124.33711730000005,-8.323842899999931],[124.34209840000005,-8.3255065],[124.35267080000006,-8.324594799999943],[124.35773890000007,-8.326244199999962],[124.36227640000004,-8.324973899999975],[124.36432780000007,-8.320206799999937],[124.36639070000001,-8.318780899999979],[124.36623940000004,-8.314891099999954],[124.36994160000006,-8.309157199999959],[124.37374580000005,-8.306352199999935],[124.37390360000006,-8.2988913],[124.37600550000002,-8.295497199999943],[124.37331490000008,-8.2881376],[124.37055020000003,-8.285904499999958],[124.36938870000006,-8.282201199999975],[124.36386510000011,-8.279336599999965],[124.36106240000004,-8.27939189999995],[124.35599330000002,-8.275887499999953]]],[[[124.40167580000002,-8.276733799999931],[124.40383250000002,-8.270231899999942],[124.4028158000001,-8.268498399999942],[124.40039660000002,-8.268033199999934],[124.398616,-8.268848699999978],[124.39633480000009,-8.275646499999937],[124.40167580000002,-8.276733799999931]]],[[[124.08490030000007,-8.237837699999943],[124.0884989000001,-8.23735789999995],[124.09017830000005,-8.231120199999964],[124.093777,-8.229920599999957],[124.09497660000011,-8.22632189999996],[124.08681960000001,-8.220803899999964],[124.08490030000007,-8.222723199999962],[124.07722310000008,-8.222723199999962],[124.07338450000009,-8.225122299999953],[124.07002570000009,-8.232079799999951],[124.07050550000008,-8.236158299999943],[124.07602350000002,-8.239277199999947],[124.08250110000006,-8.240236799999934],[124.08490030000007,-8.237837699999943]]],[[[124.56063910000012,-8.221021899999926],[124.56077610000011,-8.219338799999946],[124.55810170000007,-8.219110799999953],[124.56063910000012,-8.221021899999926]]],[[[124.04315550000001,-8.2186447],[124.0467542,-8.211687199999972],[124.04507480000007,-8.210727599999927],[124.0433954,-8.211207399999978],[124.039077,-8.221283699999958],[124.03595810000002,-8.219124499999964],[124.03451860000007,-8.213846499999931],[124.03283930000009,-8.213126699999975],[124.03044010000008,-8.214806099999976],[124.02732130000004,-8.218884599999967],[124.025402,-8.231839899999954],[124.03092,-8.233279399999958],[124.03883710000002,-8.22728159999997],[124.04315550000001,-8.2186447]]],[[[124.37643860000003,-8.20666179999995],[124.37352360000011,-8.200915599999973],[124.36956160000011,-8.20028229999997],[124.36828870000011,-8.20202],[124.369361,-8.204247599999974],[124.36751350000009,-8.206912099999954],[124.36403240000004,-8.2083597],[124.3613696000001,-8.213710899999967],[124.36156690000007,-8.222072799999978],[124.37123640000004,-8.226761299999964],[124.37487080000005,-8.226431899999966],[124.38005750000002,-8.216958599999941],[124.37643860000003,-8.20666179999995]]],[[[124.29035540000007,-8.173898699999938],[124.28790920000006,-8.173754199999962],[124.28690890000007,-8.175353299999927],[124.277981,-8.175603],[124.26727490000007,-8.185601499999962],[124.25194570000008,-8.191695],[124.2373841000001,-8.210240699999929],[124.23019050000005,-8.215490599999953],[124.2249567,-8.232024],[124.22258510000006,-8.236105899999927],[124.22021350000011,-8.235102499999925],[124.22074720000012,-8.237490899999955],[124.21402340000009,-8.249314099999935],[124.21353120000003,-8.258471699999973],[124.20585930000004,-8.267043],[124.20363350000002,-8.273151699999971],[124.19732070000009,-8.277764599999955],[124.19525420000002,-8.277338499999928],[124.1912357000001,-8.272548399999948],[124.18489450000004,-8.273831299999927],[124.16760230000011,-8.2911583],[124.16641470000002,-8.302893099999949],[124.16368950000003,-8.309893299999942],[124.16589780000004,-8.31208],[124.1626453,-8.312274],[124.16215230000012,-8.31570309999995],[124.15889070000003,-8.314091299999973],[124.150815,-8.318848399999979],[124.150768,-8.32253],[124.14661520000004,-8.32461319999993],[124.133658,-8.3392234],[124.13284310000006,-8.344128099999978],[124.12472260000004,-8.349131],[124.11393640000006,-8.3532651],[124.11005640000008,-8.357325699999933],[124.10881140000004,-8.356414399999949],[124.10542390000012,-8.359119],[124.10310110000012,-8.3622733],[124.10571080000011,-8.368974499999979],[124.1078705000001,-8.370872499999962],[124.1064464000001,-8.372584699999948],[124.10976940000012,-8.374923399999943],[124.11171190000005,-8.3746857],[124.11341530000004,-8.372384599999975],[124.11698830000012,-8.371523],[124.11890860000005,-8.372575499999925],[124.1185779000001,-8.37471789999995],[124.11689430000001,-8.374903299999971],[124.11614810000003,-8.376711499999942],[124.11967390000007,-8.380062299999963],[124.11975230000007,-8.3818495],[124.11680640000009,-8.384415799999942],[124.11420470000007,-8.383732799999962],[124.11075460000006,-8.3894381],[124.10901510000008,-8.387199299999963],[124.10650730000009,-8.389387399999976],[124.10502640000004,-8.388143599999978],[124.1060533000001,-8.380472],[124.1051748000001,-8.377544799999953],[124.1008352,-8.37514049999993],[124.09667910000007,-8.37636029999993],[124.09667660000002,-8.374553799999944],[124.09442120000006,-8.373697099999958],[124.09130450000009,-8.374741299999926],[124.09091150000006,-8.373918],[124.08976380000001,-8.364859399999943],[124.09684490000006,-8.362063399999954],[124.097557,-8.360007799999948],[124.096311,-8.357494699999961],[124.08741370000007,-8.355078],[124.08569630000011,-8.359052399999939],[124.08513960000005,-8.349990599999956],[124.0882064000001,-8.340272199999959],[124.08570750000001,-8.333171099999959],[124.08633180000004,-8.322715699999947],[124.08528660000002,-8.322066399999926],[124.08655340000007,-8.319960399999957],[124.08503330000008,-8.313578899999925],[124.07572230000005,-8.302700199999947],[124.068169,-8.300499099999968],[124.06177160000004,-8.295780299999933],[124.06093240000007,-8.29324669999994],[124.05857290000006,-8.29297749999995],[124.05009710000002,-8.297065],[124.03572080000004,-8.309466699999973],[124.03198080000004,-8.309276099999977],[124.02501280000001,-8.312238799999932],[124.01785880000011,-8.321122],[124.00642170000003,-8.329318299999954],[124.00272070000005,-8.329491899999937],[124.00019320000001,-8.332141299999932],[123.98823660000005,-8.336452799999961],[123.98270780000007,-8.336485699999969],[123.96523220000006,-8.347450799999933],[123.9615126000001,-8.35837689999994],[123.953595,-8.3679602],[123.953837,-8.370343499999933],[123.9441455000001,-8.391310199999964],[123.9440125000001,-8.394028299999945],[123.94707290000008,-8.401070699999934],[123.9456202,-8.407945],[123.9355524,-8.423232799999937],[123.9302305000001,-8.424571],[123.9136631,-8.436982199999932],[123.91366850000009,-8.439279899999974],[123.91588610000008,-8.438744499999927],[123.91482480000002,-8.4403377],[123.91749060000006,-8.441657],[123.91794120000009,-8.444572299999948],[123.9189113000001,-8.44191879999994],[123.92042050000009,-8.442092],[123.91919280000002,-8.448369399999933],[123.92185410000002,-8.447744599999965],[123.9230119,-8.4494209],[123.92469660000006,-8.44871],[123.92843030000006,-8.451175599999942],[123.93205180000007,-8.447410599999955],[123.9305601000001,-8.450993799999935],[123.93589230000009,-8.453809],[123.93554170000004,-8.4556657],[123.93776280000009,-8.456544099999974],[123.93732870000008,-8.460521899999947],[123.94256270000005,-8.459360499999946],[123.94407540000009,-8.460947499999975],[123.94504530000006,-8.458294],[123.946202,-8.45944],[123.94751630000007,-8.452455399999963],[123.95017540000003,-8.450946699999974],[123.95211480000012,-8.445551199999954],[123.95796180000002,-8.441118399999937],[123.96045060000006,-8.442614599999956],[123.96088930000008,-8.440581],[123.96328640000002,-8.440840199999968],[123.96576090000008,-8.4365922],[123.97267570000008,-8.433393799999976],[123.975074,-8.434183099999927],[123.9779817000001,-8.42578059999994],[123.98099660000003,-8.424712599999964],[123.98290270000007,-8.420097799999951],[123.98899270000004,-8.418032299999936],[123.99535650000007,-8.419185099999936],[124.00280450000002,-8.416323099999943],[124.00884730000007,-8.416007499999978],[124.01054760000011,-8.417187799999965],[124.00958290000005,-8.418311699999947],[124.01502,-8.41513329999998],[124.01544070000011,-8.417932299999961],[124.0201631000001,-8.416285799999969],[124.02735890000008,-8.420836599999973],[124.03137540000012,-8.421265099999971],[124.03298270000005,-8.420163899999977],[124.03800640000009,-8.427839699999936],[124.0377251000001,-8.431405899999959],[124.0335755000001,-8.435386599999958],[124.0386056000001,-8.436581499999932],[124.04069720000007,-8.440890899999943],[124.0412275000001,-8.444686699999977],[124.038631,-8.44607439999993],[124.03777810000008,-8.4512546],[124.0407269000001,-8.451937099999952],[124.04314580000005,-8.448996499999964],[124.05461030000004,-8.454668399999946],[124.05223480000006,-8.462644799999964],[124.05793920000008,-8.467856299999937],[124.05516420000004,-8.477881399999944],[124.06546930000002,-8.490964399999939],[124.0640264000001,-8.504988599999933],[124.06161610000004,-8.509334299999978],[124.0579421000001,-8.511664099999962],[124.059107,-8.515069299999936],[124.0539255000001,-8.522230699999966],[124.05552290000003,-8.524344799999938],[124.0536436000001,-8.531063099999926],[124.055288,-8.5334122],[124.05437180000001,-8.537781399999972],[124.05573430000004,-8.54417079999996],[124.0577075000001,-8.545627299999978],[124.05859950000001,-8.544798399999934],[124.05996260000006,-8.548093799999947],[124.06264050000004,-8.549996499999963],[124.07220120000011,-8.5504193],[124.07572470000002,-8.5476005],[124.08054030000005,-8.54807029999995],[124.08754050000005,-8.5444997],[124.09691320000002,-8.544100399999934],[124.09916830000009,-8.545392299999946],[124.10010790000001,-8.544076899999936],[124.10412480000002,-8.545251399999927],[124.10649630000012,-8.544188399999939],[124.11371520000012,-8.54623879999997],[124.120787,-8.54539],[124.13885180000011,-8.537030199999947],[124.14125930000012,-8.538386099999968],[124.14597880000008,-8.534531199999947],[124.14799690000007,-8.524939299999971],[124.15566420000005,-8.519539099999974],[124.15733260000002,-8.516494699999953],[124.1646085000001,-8.514936599999942],[124.16801070000008,-8.510320799999931],[124.16999510000005,-8.509943799999974],[124.16898060000005,-8.503860599999939],[124.1707755000001,-8.502036199999964],[124.17257940000002,-8.502239599999939],[124.17633320000004,-8.495729499999982],[124.17211290000012,-8.488301399999955],[124.17332820000001,-8.486414],[124.17994810000005,-8.484473499999979],[124.1817271000001,-8.48511259999998],[124.18245530000002,-8.488881699999979],[124.18688070000007,-8.488794499999926],[124.19370230000004,-8.484264699999926],[124.21236240000007,-8.459554899999944],[124.21146550000003,-8.449892699999964],[124.208853,-8.445931199999961],[124.20622870000011,-8.434390299999961],[124.20998090000012,-8.425913199999968],[124.20925860000011,-8.416032499999972],[124.2135158000001,-8.408593099999962],[124.21788850000007,-8.406109399999934],[124.2253419000001,-8.396453899999926],[124.23070770000004,-8.3922358],[124.23337790000005,-8.385701199999971],[124.23360130000003,-8.380843599999935],[124.23652450000009,-8.377117599999963],[124.24011580000001,-8.37538829999994],[124.24608690000002,-8.362551199999928],[124.2502134,-8.358157399999925],[124.25613990000011,-8.357306599999959],[124.25921560000006,-8.352213099999972],[124.26753350000001,-8.349972499999978],[124.2749371000001,-8.343817699999931],[124.27789710000002,-8.339325799999926],[124.28482460000009,-8.337989599999958],[124.292234,-8.3391486],[124.29375750000008,-8.335022199999969],[124.30138380000005,-8.330674699999975],[124.30308510000009,-8.323765799999933],[124.30968050000001,-8.311669399999971],[124.30885970000008,-8.301810199999977],[124.30327060000002,-8.288312599999927],[124.3047815000001,-8.282634599999938],[124.29877340000007,-8.268100699999934],[124.30408410000007,-8.2541614],[124.31386210000005,-8.245236599999942],[124.32316440000011,-8.23411139999996],[124.3263022000001,-8.227998699999944],[124.32590120000009,-8.221474899999976],[124.3292,-8.21268109999994],[124.32886080000003,-8.202583699999934],[124.32483990000003,-8.193057899999928],[124.32492580000007,-8.18888439999995],[124.31951170000002,-8.180158],[124.30614380000009,-8.175498],[124.29895480000005,-8.176150599999971],[124.29705650000005,-8.175063699999953],[124.29446750000011,-8.1762644],[124.29377450000004,-8.174961499999938],[124.29143050000005,-8.176928199999963],[124.29035540000007,-8.173898699999938]]],[[[124.37949450000008,-8.182583099999931],[124.38513380000006,-8.177891099999954],[124.38100050000003,-8.1722057],[124.3748422000001,-8.169866],[124.37315510000008,-8.167648499999927],[124.37000440000008,-8.169259899999929],[124.36744820000001,-8.17393329999993],[124.36805730000003,-8.181231499999967],[124.37093010000001,-8.183744099999956],[124.3772537000001,-8.184539099999938],[124.37949450000008,-8.182583099999931]]],[[[124.56105020000007,-8.123619099999928],[124.54904020000004,-8.1215562],[124.54028570000003,-8.127239],[124.53704130000006,-8.12741559999995],[124.5303080000001,-8.121811099999945],[124.5144285,-8.123747199999968],[124.50475490000008,-8.132444599999928],[124.49345570000003,-8.129287099999942],[124.48905850000006,-8.126724199999956],[124.4769940000001,-8.128050599999938],[124.45788290000007,-8.142280699999958],[124.45527350000009,-8.147108699999933],[124.45111230000009,-8.148675699999956],[124.44584780000002,-8.155711599999961],[124.4468796000001,-8.160033899999974],[124.443135,-8.166631799999948],[124.43644040000004,-8.169520599999942],[124.43718600000011,-8.171096],[124.4288759000001,-8.180007499999931],[124.42550890000007,-8.18572789999996],[124.42266410000002,-8.187070199999937],[124.41061660000003,-8.205236399999933],[124.40018470000007,-8.214764899999977],[124.39577020000002,-8.229787],[124.39642790000005,-8.23373209999994],[124.40255680000007,-8.237115399999936],[124.40484120000008,-8.2458411],[124.406948,-8.267661],[124.40460170000006,-8.276163],[124.40619540000012,-8.278894599999944],[124.40865070000007,-8.277372499999956],[124.41048360000002,-8.272450799999945],[124.4129967,-8.270773299999973],[124.42929060000006,-8.265739799999949],[124.43997610000008,-8.258241599999963],[124.44527060000007,-8.258849],[124.4471347000001,-8.255483099999935],[124.45327780000002,-8.254702299999963],[124.454918,-8.249603399999955],[124.45860920000007,-8.247639499999934],[124.46316450000006,-8.247744799999964],[124.46631130000003,-8.2456745],[124.46752470000001,-8.242879799999969],[124.47673140000006,-8.2396151],[124.48580840000011,-8.232200099999943],[124.49312160000011,-8.2299914],[124.49361770000007,-8.231552499999964],[124.49629850000008,-8.231737899999928],[124.49991620000003,-8.228989199999944],[124.50402430000008,-8.22073169999993],[124.50836520000007,-8.22467329999995],[124.51392890000011,-8.218638],[124.51911220000011,-8.220838699999945],[124.523906,-8.218428],[124.53300060000004,-8.217593499999964],[124.5396654000001,-8.224446099999966],[124.54735970000002,-8.222829299999944],[124.5486658000001,-8.217268899999965],[124.55428060000008,-8.213543699999946],[124.5566146000001,-8.213583099999937],[124.5613763,-8.218876399999942],[124.56461800000011,-8.217799799999966],[124.559232,-8.222633799999926],[124.55015830000002,-8.223185599999965],[124.54214490000004,-8.228026499999942],[124.54264980000005,-8.233070299999952],[124.53937530000007,-8.23878929999995],[124.53516330000002,-8.237850399999957],[124.533768,-8.239789],[124.528696,-8.240181],[124.52172510000003,-8.247335499999963],[124.51793530000009,-8.2461384],[124.51224900000011,-8.248342399999956],[124.51164860000006,-8.253221399999973],[124.5082053000001,-8.255308399999933],[124.50588630000004,-8.259360699999945],[124.497946,-8.252121],[124.49088760000006,-8.25334429999998],[124.48850870000001,-8.252010199999972],[124.48777450000011,-8.254097299999955],[124.47544820000007,-8.254716799999926],[124.46969650000005,-8.257263099999932],[124.45777210000006,-8.265854199999978],[124.4534145,-8.266827699999965],[124.45080010000004,-8.270013699999936],[124.4469279000001,-8.269070099999965],[124.44330550000006,-8.272353099999975],[124.4435631,-8.277387199999964],[124.44188880000002,-8.28062669999997],[124.43629080000005,-8.28344549999997],[124.42756980000001,-8.290902599999981],[124.4262715000001,-8.28993859999997],[124.42300730000011,-8.292358299999933],[124.41437220000012,-8.290536699999961],[124.40695110000001,-8.295416],[124.4029935000001,-8.309701899999936],[124.40464880000002,-8.313252899999952],[124.40366590000008,-8.318022699999972],[124.40028980000011,-8.321014299999945],[124.3988389000001,-8.326434],[124.39645540000004,-8.326193399999966],[124.395349,-8.329220599999928],[124.39652410000008,-8.329396499999973],[124.38995770000008,-8.335928799999976],[124.38810300000011,-8.339677399999971],[124.37469750000002,-8.353646099999935],[124.36960540000007,-8.356323699999962],[124.37053970000011,-8.363928],[124.36621520000006,-8.368026499999928],[124.36497710000003,-8.372300399999972],[124.34963670000002,-8.38314269999995],[124.34414840000011,-8.391984599999944],[124.34146260000011,-8.391548199999932],[124.33986790000006,-8.415722399999936],[124.33730990000004,-8.419963499999938],[124.34650210000007,-8.425835],[124.35020950000012,-8.43050009999996],[124.3504448000001,-8.4338406],[124.35516020000011,-8.438836299999934],[124.3624261000001,-8.442441199999962],[124.37326340000004,-8.442751499999929],[124.373949,-8.438920499999938],[124.38093560000004,-8.4376778],[124.393885,-8.442156599999976],[124.40663590000008,-8.440022799999952],[124.41291690000003,-8.437041799999975],[124.4173694000001,-8.438558499999942],[124.42053930000009,-8.445140599999945],[124.4191317000001,-8.447634899999969],[124.41964480000001,-8.451200799999981],[124.4144242000001,-8.459268],[124.41634880000004,-8.461418299999934],[124.42309150000006,-8.459402499999953],[124.42784340000003,-8.459883],[124.42790990000003,-8.455319299999928],[124.43282040000008,-8.4536419],[124.43918670000005,-8.453612499999963],[124.44950310000002,-8.445098299999927],[124.45048930000007,-8.445802],[124.45638940000003,-8.441853899999956],[124.459231,-8.441901],[124.46912570000006,-8.436263499999939],[124.47421510000004,-8.429681899999935],[124.48262130000012,-8.423043],[124.48589690000006,-8.42526719999995],[124.49051740000004,-8.423526699999968],[124.4943472000001,-8.419033699999943],[124.50988010000003,-8.418391199999974],[124.51994,-8.4205258],[124.52196350000008,-8.423892299999977],[124.52541740000004,-8.422497599999929],[124.52916930000004,-8.424866399999928],[124.5344424000001,-8.430368699999974],[124.536443,-8.436412399999938],[124.5358361000001,-8.439616899999976],[124.5396793000001,-8.44157],[124.54711760000009,-8.442422],[124.55026020000003,-8.438825699999938],[124.55489570000009,-8.439688599999954],[124.5607831000001,-8.436404399999958],[124.5905064000001,-8.432755899999961],[124.6038086000001,-8.42588569999998],[124.61048080000012,-8.418898899999931],[124.616648,-8.418884699999978],[124.6265307000001,-8.410482599999966],[124.63413790000004,-8.407060199999933],[124.63892750000002,-8.401571],[124.642545,-8.401021499999956],[124.64440020000006,-8.3983177],[124.65773090000005,-8.390494499999932],[124.66905970000005,-8.391563099999928],[124.668794,-8.388732299999958],[124.671541,-8.392797599999938],[124.67585520000011,-8.3923651],[124.68443690000004,-8.3952343],[124.6875275000001,-8.393684399999927],[124.69141960000002,-8.3939312],[124.69493430000011,-8.396144299999946],[124.69614820000004,-8.394905799999947],[124.69431710000003,-8.396906099999967],[124.70104170000002,-8.397297899999955],[124.71046830000012,-8.400623499999938],[124.71740160000002,-8.404906599999947],[124.72467330000006,-8.399581599999976],[124.7296818000001,-8.401879399999928],[124.7340597000001,-8.401438399999961],[124.74125880000008,-8.404849599999977],[124.75789170000007,-8.403752699999927],[124.76103160000002,-8.4022751],[124.77383770000006,-8.4052779],[124.78080390000002,-8.399699599999963],[124.78742860000011,-8.403456699999936],[124.788486,-8.400811],[124.79709450000007,-8.397346299999981],[124.79992510000011,-8.398037199999976],[124.800624,-8.396324599999957],[124.80658210000001,-8.396397899999954],[124.80859090000001,-8.394075899999962],[124.81665480000004,-8.391022199999952],[124.81766920000007,-8.3920231],[124.8240029000001,-8.386061199999972],[124.82632620000004,-8.386251499999958],[124.82813480000004,-8.384332599999937],[124.83167960000003,-8.386628899999948],[124.83895240000004,-8.387198399999932],[124.84276610000006,-8.382253499999933],[124.85224440000002,-8.379494199999954],[124.85687320000011,-8.376154199999974],[124.86347560000002,-8.374919399999953],[124.88131320000002,-8.365506399999958],[124.88669440000001,-8.365456199999926],[124.89089660000002,-8.362548599999968],[124.89682340000002,-8.364638899999932],[124.921123,-8.3595],[124.9498125,-8.355846499999927],[124.96911210000007,-8.360022699999945],[125.00136270000007,-8.354292],[125.00962120000008,-8.35414979999996],[125.01042560000008,-8.357189799999958],[125.0142502000001,-8.3531443],[125.01870570000006,-8.356754899999942],[125.02233970000009,-8.353986799999973],[125.0241281000001,-8.356629],[125.0288445000001,-8.353462599999943],[125.03141810000011,-8.355413299999952],[125.0356465000001,-8.353231299999948],[125.03822120000007,-8.355378299999927],[125.0434514000001,-8.356235099999935],[125.05004440000005,-8.353746099999967],[125.0621890000001,-8.357021599999939],[125.07722460000002,-8.347614699999951],[125.0874801000001,-8.3479535],[125.09534790000009,-8.34427889999995],[125.10932050000008,-8.343681699999934],[125.12591070000008,-8.3370983],[125.12933410000005,-8.331304899999964],[125.14092090000008,-8.319191399999966],[125.13565420000009,-8.314978],[125.12959740000008,-8.296807799999954],[125.1283188000001,-8.2821033],[125.136227,-8.270758099999966],[125.1391321000001,-8.263828899999965],[125.13967490000005,-8.257708799999932],[125.14275430000009,-8.250491899999929],[125.141629,-8.2383669],[125.13448710000011,-8.218760799999927],[125.11273730000005,-8.193057299999964],[125.10973220000005,-8.183953699999961],[125.107323,-8.18102],[125.10742630000004,-8.173864299999934],[125.11107530000004,-8.171600499999954],[125.10725890000003,-8.16881449999994],[125.1043065,-8.169671599999958],[125.10088610000003,-8.161832699999934],[125.09913430000006,-8.149916399999938],[125.090661,-8.145049699999959],[125.08474980000005,-8.145501],[125.07941690000007,-8.148895599999946],[125.06871050000007,-8.147828],[125.05745520000005,-8.1495688],[125.05294950000007,-8.149591699999974],[125.04786360000003,-8.146250099999975],[125.04082430000005,-8.1464259],[125.025068,-8.149170699999956],[125.01790890000007,-8.153555799999936],[125.00821010000004,-8.156971399999975],[124.99736790000009,-8.157025],[124.9894508000001,-8.150609799999927],[124.9822779000001,-8.152328599999976],[124.97650070000009,-8.151515],[124.97169810000003,-8.1484516],[124.96746970000004,-8.148707],[124.96553380000012,-8.1461131],[124.9658409000001,-8.1421222],[124.95860790000006,-8.139638199999979],[124.95431070000006,-8.145590499999969],[124.94929260000004,-8.145718299999942],[124.94645560000004,-8.144058299999926],[124.94370350000008,-8.147650699999929],[124.93268060000003,-8.15089249999994],[124.91982790000009,-8.1631772],[124.89726370000005,-8.162100399999929],[124.88740210000003,-8.165089199999954],[124.87558540000009,-8.16497759999993],[124.86140960000012,-8.166893499999958],[124.85016860000007,-8.165981899999963],[124.8413375,-8.163614399999972],[124.83191440000007,-8.163897899999938],[124.82781630000011,-8.166083499999957],[124.81777420000003,-8.163118899999972],[124.81319,-8.164704599999936],[124.81003170000008,-8.160986599999944],[124.8039791000001,-8.158485299999938],[124.79397210000002,-8.157020599999953],[124.78604940000002,-8.149045299999955],[124.78224950000003,-8.147248399999967],[124.77284040000006,-8.146080499999925],[124.75734480000006,-8.149932599999943],[124.75180430000012,-8.146642399999962],[124.74836420000008,-8.146443599999941],[124.74886020000008,-8.147556899999927],[124.73753470000008,-8.153790299999969],[124.7328046,-8.153541299999972],[124.72484380000003,-8.156133299999965],[124.71214,-8.155514],[124.69701830000008,-8.1582703],[124.69417520000002,-8.156935799999928],[124.68391970000005,-8.160209899999927],[124.6752153000001,-8.1649332],[124.67209380000008,-8.161772399999961],[124.66760510000006,-8.161790899999971],[124.66227660000004,-8.168236],[124.64751020000006,-8.1730376],[124.64006240000003,-8.178853],[124.63094600000011,-8.180365799999947],[124.62549310000009,-8.184517099999937],[124.6212134000001,-8.184987399999955],[124.60793760000001,-8.1970304],[124.6042096000001,-8.195715099999973],[124.59410530000002,-8.195542],[124.597158,-8.192540099999974],[124.5913991000001,-8.183883699999967],[124.59485440000003,-8.176554799999963],[124.59285180000006,-8.142218],[124.60103090000007,-8.133878699999968],[124.60306150000008,-8.12413909999998],[124.59986250000009,-8.12160849999998],[124.592026,-8.122135199999946],[124.58506960000011,-8.1250141],[124.56105020000007,-8.123619099999928]]],[[[124.61653410000008,-8.116779699999938],[124.60827680000011,-8.118085699999938],[124.60706420000008,-8.120170199999961],[124.6108779000001,-8.122418699999969],[124.611951,-8.120943099999977],[124.61706360000005,-8.121361399999955],[124.61881340000002,-8.118723],[124.61653410000008,-8.116779699999938]]]]},"properties":{"shapeName":"Alor","shapeISO":"","shapeID":"22746128B49850267224358","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[99.78859960000005,3.114571200000057],[99.78782440000003,3.114025600000048],[99.78857860000005,3.113336400000037],[99.78955590000004,3.114019600000063],[99.78859960000005,3.114571200000057]]],[[[99.98760480000004,2.855422],[99.98767440000006,2.869992800000034],[99.98928990000007,2.874904800000024],[99.98783560000004,2.878355200000044],[99.98910150000006,2.895721200000025],[99.98823460000006,2.899092300000063],[99.99036170000005,2.907592300000033],[99.98881620000009,2.907443],[99.98812730000009,2.910955800000067],[99.99321290000006,2.941642100000024],[99.992754,2.952922300000068],[99.99036480000007,2.960656],[99.98385030000009,2.961667],[99.98392960000007,2.960610100000054],[99.97722370000008,2.958002],[99.97749240000007,2.954292400000043],[99.98265160000005,2.95347460000005],[99.98038710000009,2.952020100000027],[99.98031690000005,2.948171400000035],[99.965698,2.956941900000061],[99.95970360000007,2.958862900000042],[99.95841030000008,2.957278700000074],[99.95779660000005,2.959788100000026],[99.95504450000004,2.962173200000052],[99.95062040000005,2.962405700000033],[99.94987320000007,2.965065400000071],[99.934927,2.974025600000061],[99.934899,2.975741200000073],[99.93400070000007,2.975066300000037],[99.92695840000005,2.980869900000073],[99.91755090000004,2.990518100000031],[99.918025,2.991479100000049],[99.91287460000007,2.996454800000038],[99.90296040000004,3.011862500000063],[99.89038330000005,3.03963710000005],[99.884626,3.040744300000028],[99.86816090000008,3.034663800000033],[99.86179520000007,3.035234800000069],[99.849298,3.047755600000073],[99.84405950000007,3.050254100000075],[99.83186880000005,3.059907900000042],[99.81790780000006,3.074427800000024],[99.81246510000005,3.083998100000031],[99.80788010000003,3.089223],[99.80653410000008,3.089047700000037],[99.80640040000009,3.091317300000071],[99.80562190000006,3.090022100000056],[99.80316850000008,3.091755],[99.80456020000008,3.094083800000021],[99.80296460000005,3.094011200000068],[99.79855,3.099199],[99.79745040000006,3.098683200000039],[99.79324020000007,3.10850240000002],[99.79139750000007,3.108544900000027],[99.78945450000003,3.11278150000004],[99.78643670000008,3.113921700000049],[99.78489420000005,3.115836900000033],[99.78291550000006,3.123958600000037],[99.77948910000003,3.124432200000058],[99.77156830000007,3.132257400000071],[99.760332,3.154636500000038],[99.75855050000007,3.165576200000032],[99.75669080000006,3.168700900000033],[99.75205170000004,3.170035600000062],[99.74762930000009,3.160094400000048],[99.741591,3.152686700000061],[99.72280910000006,3.135854100000074],[99.70671370000008,3.125083600000039],[99.69355750000005,3.105418600000064],[99.64825220000006,3.105533200000025],[99.63766920000006,3.117919],[99.63534060000006,3.11966730000006],[99.63260670000005,3.117388400000038],[99.62917050000004,3.125685200000021],[99.62180270000005,3.130388400000072],[99.61598920000006,3.126930200000061],[99.60756230000004,3.126934],[99.58898890000006,3.11068860000006],[99.59988620000007,3.098339700000054],[99.60203310000009,3.102028100000041],[99.60664120000007,3.101873300000022],[99.61014980000004,3.103732600000058],[99.61106440000003,3.100360700000067],[99.61103760000003,3.098292100000037],[99.60695690000006,3.094332400000042],[99.60780530000005,3.080023200000028],[99.60459840000004,3.074027300000068],[99.59474160000008,3.066095],[99.59819010000007,3.057653900000048],[99.59564330000006,3.045314400000052],[99.58978850000005,3.038770800000066],[99.58772930000003,3.038392100000067],[99.58402290000004,3.04370160000002],[99.569849,3.038167100000067],[99.55574680000007,3.027606800000058],[99.55627620000007,3.017945900000029],[99.55380740000004,3.016208800000072],[99.54963920000006,3.018100200000049],[99.54938780000003,3.036063900000045],[99.55698740000008,3.036126400000057],[99.55717970000006,3.049107700000036],[99.57182610000007,3.049110700000028],[99.57241130000006,3.069831600000043],[99.56120020000009,3.070155700000043],[99.54695380000004,3.043072900000027],[99.54398760000004,3.039805700000045],[99.54408490000009,3.037587],[99.53944330000007,3.03562880000004],[99.53348690000007,3.029405900000029],[99.52989510000003,3.030397500000049],[99.52394830000009,3.026280200000031],[99.52211760000006,3.023894100000064],[99.52314140000004,3.020896400000026],[99.51943740000007,3.015111400000023],[99.51690060000004,3.013335200000029],[99.50700810000006,3.011427900000058],[99.49595730000004,2.999990900000057],[99.49430230000007,2.994334900000069],[99.49698140000004,2.987460700000042],[99.49663630000003,2.982989500000031],[99.49334,2.981532200000061],[99.49057230000005,2.977515600000061],[99.48727670000005,2.976469300000076],[99.47724440000007,2.967008300000032],[99.47425780000003,2.962467500000059],[99.46832050000006,2.961209200000042],[99.46293570000006,2.957352700000058],[99.45475920000007,2.956479700000045],[99.45569330000006,2.944103900000073],[99.44955520000008,2.940743500000053],[99.44711240000004,2.934374200000036],[99.44381980000009,2.930396900000062],[99.42688410000005,2.928905100000065],[99.42443390000005,2.927763],[99.42032540000008,2.922420700000032],[99.414424,2.921621400000049],[99.40833890000005,2.916709800000035],[99.40330960000006,2.917033900000035],[99.39827330000008,2.914865100000043],[99.39227180000006,2.907253100000048],[99.39042260000008,2.900445400000024],[99.38334610000004,2.896650700000066],[99.37642020000004,2.885663600000044],[99.37129230000005,2.883310800000061],[99.36021290000008,2.882629100000031],[99.35549010000005,2.886192],[99.35364270000008,2.891459],[99.348636,2.895643100000029],[99.34670120000004,2.894740700000057],[99.344132,2.895701300000042],[99.34108560000004,2.893733400000031],[99.33828810000006,2.894993400000033],[99.33349650000008,2.894431900000029],[99.32170910000008,2.886031],[99.31647280000004,2.885895700000049],[99.309651,2.879089700000065],[99.30572520000004,2.881524400000046],[99.30391830000008,2.881219300000055],[99.29564590000007,2.870648700000061],[99.28911410000006,2.873285600000031],[99.28775510000008,2.869819500000062],[99.28384760000006,2.866555700000049],[99.27410490000005,2.865513100000044],[99.27066650000006,2.862374400000022],[99.26562,2.860492100000045],[99.26449530000008,2.850959100000068],[99.25859330000009,2.845759],[99.25996520000007,2.841895],[99.25661360000004,2.837113],[99.25753220000007,2.830481400000053],[99.25113460000006,2.823742800000048],[99.24831930000005,2.812518300000022],[99.24108420000005,2.809164500000065],[99.23955690000008,2.806708900000046],[99.22830930000003,2.802268500000025],[99.22003040000004,2.795020600000043],[99.21676020000007,2.79399120000005],[99.21605650000004,2.789699900000073],[99.21221480000008,2.785680300000024],[99.210202,2.774536500000067],[99.20791640000004,2.769964200000061],[99.19905140000009,2.767709],[99.18410140000003,2.754420200000027],[99.17621950000006,2.752327600000058],[99.16952820000006,2.748353200000054],[99.16639090000007,2.742875400000059],[99.15797040000007,2.735240200000021],[99.14660960000003,2.719355800000073],[99.13424880000008,2.710972100000049],[99.12496050000004,2.696847200000036],[99.11932650000006,2.681103500000063],[99.10767970000006,2.678522200000032],[99.08906270000006,2.668270200000052],[99.08108970000006,2.652286300000071],[99.07407440000009,2.644361700000047],[99.07332360000004,2.636349100000075],[99.07452020000005,2.628988900000024],[99.07287860000008,2.613492200000053],[99.07410380000005,2.60463610000005],[99.07647870000005,2.595048600000041],[99.08737890000003,2.581768900000043],[99.09805620000009,2.57293],[99.10124910000008,2.571930900000041],[99.11374710000007,2.573526100000038],[99.11764150000005,2.568778200000054],[99.12528060000005,2.569017500000029],[99.13196450000004,2.566951600000039],[99.13540230000007,2.567909600000064],[99.14002230000006,2.571956900000032],[99.145364,2.573107200000038],[99.15705980000007,2.568092900000067],[99.16137320000007,2.568042],[99.16729510000005,2.560839800000053],[99.17710490000007,2.557106200000021],[99.18111290000007,2.552588900000046],[99.18168920000005,2.538873700000067],[99.18368310000005,2.532944200000031],[99.20750920000006,2.529453],[99.21360910000004,2.52374750000007],[99.21904670000004,2.53668220000003],[99.230352,2.544784700000037],[99.23865760000007,2.544519700000023],[99.24785230000003,2.539448200000038],[99.25544190000005,2.540653400000053],[99.26754870000008,2.549288300000057],[99.276975,2.550040600000045],[99.28522640000006,2.559004600000037],[99.29339940000006,2.563963400000034],[99.30389460000004,2.574271400000043],[99.30852960000004,2.574106300000039],[99.30875760000004,2.554114100000049],[99.31063050000006,2.561812900000064],[99.31365020000004,2.561790900000062],[99.31462780000004,2.559331100000065],[99.31770690000008,2.563185400000066],[99.32455220000008,2.564200400000061],[99.32654970000004,2.566167600000028],[99.34178050000008,2.564505200000042],[99.34218020000009,2.562393400000076],[99.34539530000006,2.56352940000005],[99.348783,2.56043690000007],[99.35968710000009,2.562284900000066],[99.36277860000007,2.565830100000028],[99.36475590000003,2.565605100000028],[99.36850450000009,2.568330500000059],[99.37111970000007,2.567527700000028],[99.37332050000003,2.568633900000066],[99.37934750000005,2.564718400000061],[99.38319110000003,2.565487100000041],[99.38633220000008,2.563818100000049],[99.39105680000006,2.56656920000006],[99.39740470000004,2.582360300000062],[99.40550030000009,2.590079900000035],[99.42474730000004,2.597498800000039],[99.42642040000004,2.59710780000006],[99.42636070000003,2.595249800000033],[99.42052810000007,2.589864],[99.41748450000006,2.580714700000044],[99.41421630000008,2.577042200000051],[99.40995430000004,2.561812],[99.41436380000005,2.560356500000069],[99.41983990000006,2.562472800000023],[99.42667350000005,2.57039450000002],[99.432784,2.568002100000058],[99.44547580000005,2.580388800000037],[99.44484470000003,2.590789200000074],[99.44582170000007,2.593624200000022],[99.45851370000008,2.600795900000037],[99.45576740000007,2.576241100000061],[99.44852510000004,2.567075300000056],[99.44289690000005,2.562472700000058],[99.46120690000004,2.550818900000024],[99.47245480000004,2.555986],[99.48546820000007,2.573208900000054],[99.5,2.585227600000053],[99.5137,2.588564400000053],[99.51732530000004,2.592121500000076],[99.522092,2.590635900000052],[99.52858570000006,2.592612400000064],[99.53839330000005,2.59217110000003],[99.54296690000007,2.602953],[99.55576170000006,2.606159600000069],[99.55959110000003,2.604723900000067],[99.56291920000007,2.594458600000053],[99.56959740000008,2.585047],[99.57806230000006,2.586387200000047],[99.58318770000005,2.591313200000059],[99.58675140000008,2.590863500000069],[99.59164940000005,2.585708900000043],[99.59521310000008,2.585259200000053],[99.606793,2.579205300000069],[99.60879570000009,2.575172100000032],[99.64335380000006,2.576169100000072],[99.64379670000005,2.580159600000059],[99.654379,2.581484400000022],[99.66760890000006,2.587241900000038],[99.67958940000005,2.58614110000002],[99.684075,2.587266400000033],[99.69704850000005,2.586964900000055],[99.70302310000005,2.590356],[99.71215890000008,2.596623100000045],[99.71929110000008,2.604459400000053],[99.725529,2.606471800000065],[99.737789,2.622145200000034],[99.742469,2.62617460000007],[99.74670160000005,2.627068100000031],[99.75070890000006,2.62527410000007],[99.82224340000005,2.688535600000023],[99.82712810000004,2.69653530000005],[99.86718150000007,2.730043400000056],[99.86759670000004,2.738972],[99.88405190000003,2.748735300000021],[99.92564790000006,2.794002500000033],[99.96258830000005,2.829042400000048],[99.98760480000004,2.855422]],[[99.80506020000007,3.017030500000033],[99.81765570000005,3.02468790000006],[99.81987220000008,3.024477500000046],[99.81943120000005,2.994596],[99.81048260000006,2.99327130000006],[99.80664540000004,2.988903100000073],[99.808615,2.970429800000034],[99.81047210000008,2.967642],[99.81658060000007,2.965180300000043],[99.82166640000008,2.960421800000063],[99.83490140000004,2.955427200000031],[99.83746770000005,2.947161100000073],[99.83744850000005,2.936791],[99.83094640000007,2.92974380000004],[99.82582880000007,2.928753300000039],[99.81640510000005,2.92413190000002],[99.81383350000004,2.926277800000037],[99.80372020000004,2.928773600000056],[99.79639830000008,2.926827400000036],[99.78878520000006,2.921912600000041],[99.78845160000009,2.923386900000025],[99.77511240000007,2.920681300000069],[99.77422520000005,2.923429900000031],[99.77248980000007,2.923760500000071],[99.75299280000007,2.942394200000024],[99.75699940000004,2.953848],[99.75595810000004,2.960623400000031],[99.75709750000004,2.962994800000047],[99.761824,2.966292400000043],[99.76255340000006,2.969044900000029],[99.78174130000008,2.969949600000064],[99.76601640000007,3.008976500000074],[99.79527980000006,3.008926100000053],[99.79178170000006,3.016912700000034],[99.80506020000007,3.017030500000033]]]]},"properties":{"shapeName":"Asahan","shapeISO":"","shapeID":"22746128B59293817198108","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[138.00596610000002,-5.503568199999961],[138.0051879,-5.502548199999978],[138.00608820000002,-5.505008199999963],[138.01016230000005,-5.507107699999949],[138.00848380000002,-5.506028199999946],[138.0097045000001,-5.505097899999953],[138.00836170000002,-5.5033879],[138.00596610000002,-5.503568199999961]]],[[[137.73239130000002,-5.284415199999955],[137.72940060000008,-5.281485099999941],[137.72415160000003,-5.286795099999949],[137.7202148,-5.286495199999933],[137.71925350000004,-5.287985299999946],[137.7220764000001,-5.289315199999976],[137.72303770000008,-5.292885299999966],[137.72622680000006,-5.293255299999942],[137.73672480000005,-5.2885551],[137.7349243000001,-5.285085199999969],[137.73239130000002,-5.284415199999955]]],[[[138.8689849000001,-4.727681599999926],[138.82494630000008,-4.728342299999952],[138.71804880000002,-4.740851599999928],[138.6429932000001,-4.739714399999968],[138.5832236000001,-4.726188499999978],[138.3412336,-4.678122],[138.1371898000001,-4.6306967],[138.11156630000005,-4.628247],[137.96620810000002,-4.598378899999943],[137.91258460000006,-4.606250399999965],[137.86994270000002,-4.606250399999965],[137.7509007000001,-4.627571399999965],[137.57746940000004,-4.652085199999931],[137.6143664000001,-4.730306699999971],[137.6512633000001,-4.790817699999934],[137.68816030000005,-4.818859399999951],[137.7368643000001,-4.833618199999933],[137.81361,-4.894129199999952],[137.8150859000001,-4.944309099999941],[137.79147180000007,-4.970874899999956],[137.76343010000005,-4.990061399999945],[137.70587080000007,-5.022530699999948],[137.6793050000001,-5.032861799999978],[137.66011860000003,-5.037289499999929],[137.65338810000003,-5.040757099999951],[137.6502528000001,-5.048769399999969],[137.64258890000008,-5.054343199999948],[137.64119540000002,-5.0620071],[137.63318320000008,-5.074548099999959],[137.62795770000002,-5.078380099999947],[137.618552,-5.0780317],[137.61193320000007,-5.080121899999938],[137.60217910000006,-5.087089099999957],[137.60183070000005,-5.101371899999947],[137.6063594000001,-5.1069456],[137.62656430000004,-5.116351399999928],[137.631093,-5.122273499999949],[137.6296996000001,-5.1299374],[137.6202938,-5.136207899999931],[137.6140233000001,-5.138298099999929],[137.606011,-5.138994799999978],[137.58685120000007,-5.135511199999939],[137.57674870000005,-5.135859599999947],[137.55484840000008,-5.146863799999949],[137.55610650000006,-5.156891299999927],[137.550415,-5.169021099999952],[137.5598755000001,-5.1780715],[137.57728570000006,-5.186871499999938],[137.57942190000006,-5.186931099999981],[137.580841,-5.185151599999926],[137.58456420000005,-5.189251399999932],[137.602417,-5.196811199999956],[137.61463920000006,-5.1980514],[137.61962890000007,-5.202931399999954],[137.6390533000001,-5.214350699999954],[137.64387510000006,-5.214710699999955],[137.65303030000007,-5.2078109],[137.66706840000006,-5.214911],[137.68299860000002,-5.219941099999971],[137.684021,-5.225418099999956],[137.681427,-5.238267899999926],[137.6892242,-5.243797799999925],[137.7164001000001,-5.274737799999969],[137.72265620000007,-5.278597799999943],[137.73233030000006,-5.280612499999961],[137.738449,-5.287054499999954],[137.74343870000007,-5.297411],[137.7436523,-5.304772399999933],[137.741928,-5.308706299999926],[137.7334899000001,-5.317210699999976],[137.72735590000002,-5.326070799999968],[137.72387690000005,-5.334430699999928],[137.7207946000001,-5.350580699999966],[137.72480770000004,-5.360930899999971],[137.73251340000002,-5.3705907],[137.74134820000006,-5.374530299999947],[137.7444458000001,-5.374433499999952],[137.76197810000008,-5.360992899999928],[137.7684173,-5.3594494],[137.77491750000002,-5.364501],[137.78105160000007,-5.366750699999955],[137.78758230000005,-5.368250899999964],[137.79142750000005,-5.367470699999956],[137.79130550000002,-5.368721],[137.79612730000008,-5.370030899999961],[137.7985076000001,-5.374311],[137.80070490000003,-5.373480799999925],[137.8027343000001,-5.378300699999954],[137.8097534000001,-5.3795509],[137.81423940000002,-5.378601099999969],[137.8170318000001,-5.376280799999961],[137.82568350000008,-5.375731],[137.8325347000001,-5.3728309],[137.83920280000007,-5.374550799999952],[137.85032650000005,-5.368361],[137.85485830000005,-5.360640499999931],[137.8620605000001,-5.358228199999928],[137.87387080000008,-5.357105699999977],[137.87852470000007,-5.366160899999954],[137.89164730000005,-5.369898299999932],[137.8927917000001,-5.372983399999953],[137.89207450000004,-5.375501099999951],[137.89398190000009,-5.376931199999945],[137.894699,-5.380981399999939],[137.90115350000008,-5.389361399999927],[137.9192657000001,-5.407860699999958],[137.92581170000005,-5.411080799999979],[137.9347686000001,-5.4247007],[137.95019530000002,-5.441710899999975],[137.95066830000007,-5.443790899999954],[137.96115110000005,-5.452420699999948],[137.971466,-5.464201],[137.97384640000007,-5.464670699999942],[137.97378530000003,-5.466220899999939],[137.981842,-5.475801],[138.00694270000008,-5.498090699999977],[138.01223750000008,-5.501740899999959],[138.018402,-5.503521],[138.0269317000001,-5.504350699999975],[138.0389556,-5.501889199999937],[138.04721060000008,-5.5029821],[138.05451960000005,-5.508109099999956],[138.0612029,-5.516458],[138.07589710000002,-5.5204978],[138.08421320000002,-5.525349099999971],[138.0841369000001,-5.531027799999947],[138.07369990000007,-5.552907499999947],[138.06338490000007,-5.557618099999956],[138.05871580000007,-5.564218],[138.0535430000001,-5.577958099999933],[138.05139150000002,-5.576717899999949],[138.0482177,-5.592177899999967],[138.05017080000005,-5.594088099999965],[138.04779050000002,-5.594378],[138.04660030000002,-5.596228099999962],[138.04348750000008,-5.611628099999962],[138.04315180000003,-5.619957899999974],[138.04656980000004,-5.634478099999967],[138.0452117000001,-5.636498],[138.04812620000007,-5.644527899999957],[138.04681390000007,-5.648568099999977],[138.04910270000005,-5.649825599999929],[138.04869070000007,-5.651847799999928],[138.04994190000002,-5.651487799999927],[138.050827,-5.659398099999976],[138.0496978000001,-5.659338],[138.04940790000012,-5.662077899999929],[138.05070490000003,-5.663387799999953],[138.04934680000008,-5.667307799999946],[138.0497894,-5.673858199999927],[138.05299370000012,-5.681588199999965],[138.0549621,-5.682357799999977],[138.0536803000001,-5.686818099999925],[138.05761710000002,-5.696157899999946],[138.0664977,-5.703358199999968],[138.06394950000004,-5.712108099999966],[138.0641326000001,-5.718647899999951],[138.0659942000001,-5.724237899999935],[138.06820670000002,-5.728047899999979],[138.07272330000012,-5.731257899999946],[138.0719451000001,-5.733277799999939],[138.0730132000001,-5.734828],[138.09095760000002,-5.746247799999935],[138.08976740000003,-5.741367799999978],[138.09262080000008,-5.736668099999974],[138.09672540000008,-5.734198099999958],[138.0957641000001,-5.733148099999937],[138.1246642000001,-5.722727799999973],[138.12632740000004,-5.723678099999972],[138.1303253000001,-5.719728],[138.1408080000001,-5.718688],[138.1668853000001,-5.721357799999964],[138.1740112000001,-5.7285533],[138.175827,-5.7360396],[138.175537,-5.742612799999961],[138.159439,-5.753558199999929],[138.1564330000001,-5.764147799999932],[138.156372,-5.775568],[138.159912,-5.792637799999966],[138.16191090000007,-5.796978],[138.16369620000012,-5.797398099999953],[138.162384,-5.798048],[138.1628875,-5.803559299999961],[138.16587820000007,-5.809753899999976],[138.17463680000003,-5.819264899999951],[138.19128410000008,-5.824607399999934],[138.2308044,-5.8241458],[138.23315420000006,-5.825998299999981],[138.24351490000004,-5.827495599999963],[138.2689666000001,-5.835567],[138.2781219000001,-5.841470699999945],[138.28044120000004,-5.84832],[138.27908320000006,-5.858964899999933],[138.276596,-5.861919899999975],[138.26643360000003,-5.862717599999939],[138.25846850000005,-5.865097499999933],[138.2521362000001,-5.875607499999944],[138.25025930000004,-5.889668],[138.25057980000008,-5.907928],[138.25148,-5.913698199999942],[138.25314320000007,-5.914648099999965],[138.25245660000007,-5.917568199999948],[138.2555999000001,-5.924228199999959],[138.26452630000006,-5.932857499999955],[138.26640310000005,-5.934277499999951],[138.2671203000001,-5.933267599999965],[138.2692565000001,-5.9369573],[138.27951040000005,-5.942655099999968],[138.28118890000007,-5.9496274],[138.28535450000004,-5.953967599999942],[138.29197680000004,-5.967417699999942],[138.29484550000006,-5.969557299999963],[138.3076019,-5.990497599999969],[138.31063830000005,-5.993107299999963],[138.31074520000004,-5.997457499999939],[138.32044970000004,-6.0202975],[138.32696520000002,-6.031897499999957],[138.32637010000008,-6.033737699999961],[138.3302917000001,-6.041297399999962],[138.333023,-6.0433774],[138.33305350000012,-6.045877399999938],[138.3426055000001,-6.064557499999978],[138.34889210000006,-6.070814599999949],[138.34822070000007,-6.082047399999965],[138.352066,-6.095547699999941],[138.3660125,-6.120477699999981],[138.3724059000001,-6.128087499999936],[138.3828429,-6.146767599999976],[138.38421620000008,-6.1468277],[138.38362110000003,-6.149027299999943],[138.38810720000004,-6.157647599999962],[138.3930511000001,-6.1630077],[138.39505,-6.170590899999979],[138.3876037000001,-6.176037299999962],[138.3841552,-6.182217599999944],[138.38330070000006,-6.198877299999936],[138.39227290000008,-6.236527399999943],[138.39706410000008,-6.249497399999939],[138.40173330000005,-6.255807399999981],[138.40238940000006,-6.266157599999929],[138.41072070000007,-6.293697299999963],[138.4313506000001,-6.322646599999928],[138.42704760000004,-6.330937399999925],[138.42118830000004,-6.337837699999966],[138.4205932000001,-6.342777699999942],[138.42172230000006,-6.346167499999979],[138.4318694000001,-6.362347599999964],[138.43898,-6.368117299999938],[138.4617919000001,-6.392087499999946],[138.4752654,-6.404167599999937],[138.48228440000003,-6.407557499999939],[138.48329150000006,-6.409817699999962],[138.48602290000008,-6.409577399999932],[138.486679,-6.412377399999968],[138.49253840000006,-6.419627699999978],[138.4983367000001,-6.422127699999976],[138.50607290000005,-6.430457599999954],[138.53106680000008,-6.449437599999953],[138.5351409000001,-6.454547399999967],[138.5681151000001,-6.483997299999942],[138.57588180000005,-6.488397599999928],[138.57974230000002,-6.494347599999969],[138.6033629000001,-6.520277499999963],[138.60627740000007,-6.521887299999946],[138.60592640000004,-6.523787499999969],[138.6120452,-6.529797599999938],[138.61128220000012,-6.5308075],[138.6223754,-6.544317699999965],[138.6291503000001,-6.555023199999937],[138.64137230000006,-6.566803],[138.65114130000006,-6.5529601],[138.6644454000001,-6.545991299999969],[138.67204770000012,-6.520650099999955],[138.68218420000005,-6.514314899999931],[138.69992290000005,-6.507979599999942],[138.74553690000005,-6.5149484],[138.75250570000003,-6.512414299999932],[138.76074160000007,-6.504812],[138.7683439000001,-6.494042],[138.78101450000008,-6.480737899999951],[138.7917844000001,-6.4782038],[138.80856310000001,-6.480241799999931],[138.81118760000004,-6.482931599999972],[138.8114012000001,-6.485861799999952],[138.81320180000012,-6.486261399999933],[138.81896960000006,-6.481541599999957],[138.82772810000006,-6.480081599999949],[138.83569320000004,-6.480261299999938],[138.840576,-6.482181499999967],[138.85081470000011,-6.4811115],[138.86218250000002,-6.470551499999942],[138.87060530000008,-6.465611499999966],[138.87608320000004,-6.456781399999954],[138.88200370000004,-6.453421599999956],[138.88703910000004,-6.446371499999941],[138.90332020000005,-6.432981499999926],[138.91091910000011,-6.429602599999953],[138.9162596000001,-6.418682599999954],[138.92408740000008,-6.420150699999965],[138.9331628000001,-6.087251199999969],[138.94309780000003,-5.722824699999933],[139.25897010000006,-5.547426499999972],[139.64443370000004,-5.041069499999935],[139.51140410000005,-5.006300099999976],[139.304221,-4.938344],[139.13426650000008,-4.8261421],[139.02964350000002,-4.73744],[138.9497507000001,-4.726469699999939],[138.8689849000001,-4.727681599999926]]]]},"properties":{"shapeName":"Asmat","shapeISO":"","shapeID":"22746128B10097232152192","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[115.25103330000002,-8.314339599999926],[115.247272,-8.308281799999975],[115.24780280000004,-8.301902499999926],[115.24334130000011,-8.296513],[115.24634650000007,-8.2872081],[115.24510920000012,-8.280669299999943],[115.25052960000005,-8.2708005],[115.25123680000002,-8.263414199999943],[115.2494541000001,-8.255695699999933],[115.24449530000004,-8.2511045],[115.2418613000001,-8.251494299999933],[115.23876860000007,-8.2440299],[115.23658120000005,-8.244513299999937],[115.23308340000006,-8.242627599999935],[115.23214360000009,-8.240200499999958],[115.22945120000009,-8.24371259999998],[115.224835,-8.242727499999944],[115.21922430000006,-8.245551399999954],[115.20942570000011,-8.246187299999974],[115.20746120000001,-8.249146899999971],[115.20401570000001,-8.249273],[115.195176,-8.245989399999928],[115.1860984000001,-8.247060099999942],[115.19044180000003,-8.255466299999966],[115.1889427000001,-8.258450099999948],[115.1904561,-8.263361299999929],[115.18804120000004,-8.273322899999926],[115.1906,-8.277775399999939],[115.193117,-8.279071299999941],[115.19365130000006,-8.284360899999967],[115.1973253000001,-8.287654],[115.19723460000012,-8.289682099999936],[115.20175070000005,-8.293184499999938],[115.20514850000006,-8.305463699999962],[115.20772310000007,-8.308127499999955],[115.2072243,-8.309967299999926],[115.2091746000001,-8.313017299999956],[115.20774230000006,-8.323846],[115.2123696000001,-8.329035099999942],[115.21219110000004,-8.33189649999997],[115.2017191000001,-8.333456199999944],[115.20301160000008,-8.344394399999942],[115.20214070000009,-8.347143899999935],[115.2035969000001,-8.350034599999958],[115.197741,-8.357838],[115.19631740000011,-8.36207],[115.200077,-8.366299499999968],[115.19976770000005,-8.367858],[115.20493470000008,-8.376574499999947],[115.20931960000007,-8.379968599999927],[115.2095488000001,-8.383421699999928],[115.2077584000001,-8.38615619999996],[115.20936820000009,-8.389420199999961],[115.21079590000011,-8.389485599999944],[115.20927260000008,-8.393197399999963],[115.2117558000001,-8.396824299999935],[115.21221570000012,-8.406033699999966],[115.20966840000006,-8.411277499999926],[115.21151250000003,-8.412901499999975],[115.21352640000009,-8.41929529999993],[115.21366000000012,-8.42449929999998],[115.21694050000008,-8.431409199999962],[115.21742240000003,-8.438678399999958],[115.21536650000007,-8.440893699999947],[115.21402450000005,-8.448655499999973],[115.21199720000004,-8.450844599999925],[115.21050240000011,-8.455761499999937],[115.21129650000012,-8.457305799999972],[115.20703070000002,-8.460077399999932],[115.20791380000003,-8.46272719999996],[115.20464650000008,-8.465830899999958],[115.2030142000001,-8.470071099999927],[115.20440460000009,-8.4733277],[115.20303220000005,-8.477169199999935],[115.204465,-8.482257499999946],[115.20250010000007,-8.48925369999995],[115.19565120000004,-8.489096899999936],[115.2001719000001,-8.472155499999928],[115.19787780000001,-8.462631],[115.199782,-8.453273699999954],[115.19760810000002,-8.451945399999943],[115.1983699000001,-8.445738699999936],[115.19295020000004,-8.445285599999977],[115.18888260000006,-8.443101599999977],[115.18811160000007,-8.445749599999942],[115.1847696000001,-8.446341699999948],[115.1854704000001,-8.447867299999928],[115.18380740000009,-8.447659699999974],[115.184007,-8.448932099999979],[115.18007590000002,-8.451792299999966],[115.17629570000008,-8.4594228],[115.17467220000003,-8.464084299999968],[115.18035420000001,-8.465688299999954],[115.17710040000009,-8.478722699999935],[115.17673230000003,-8.487250199999949],[115.18373940000004,-8.4894776],[115.18414740000003,-8.4932462],[115.18274070000007,-8.500033199999962],[115.17842150000001,-8.503998899999942],[115.1771940000001,-8.511149599999953],[115.17247440000006,-8.517403299999955],[115.1714,-8.525898],[115.167849,-8.530552799999953],[115.16763070000002,-8.533221099999935],[115.16459590000011,-8.530560899999955],[115.16363940000008,-8.531710199999964],[115.16440680000005,-8.534190799999976],[115.1630540000001,-8.5369783],[115.16191590000005,-8.551308099999972],[115.15994840000008,-8.554415799999958],[115.15910550000001,-8.560545299999944],[115.1556839000001,-8.565299899999957],[115.15592230000004,-8.567945899999927],[115.15295630000003,-8.572739399999932],[115.153303,-8.577826499999958],[115.15043330000003,-8.5794636],[115.14936570000009,-8.582143],[115.150493,-8.582665299999974],[115.14910840000005,-8.5916589],[115.15679190000003,-8.5924694],[115.15520950000007,-8.59507489999993],[115.15716070000008,-8.596886199999972],[115.15604360000009,-8.600398],[115.1501032000001,-8.601507799999979],[115.14906540000004,-8.603854699999943],[115.1510032000001,-8.6053388],[115.15066160000003,-8.606987499999946],[115.14670450000006,-8.60727019999996],[115.14614530000006,-8.609495],[115.14065710000011,-8.612487199999975],[115.13930230000005,-8.616066399999966],[115.1325991000001,-8.612928499999953],[115.13384770000005,-8.610807199999954],[115.13710230000004,-8.610960399999954],[115.1364661,-8.608810799999958],[115.12897490000012,-8.608044199999938],[115.11954870000011,-8.610938799999929],[115.11766290000003,-8.61558089999994],[115.11361470000008,-8.617321299999958],[115.10696890000008,-8.623153299999956],[115.10508180000011,-8.628128499999946],[115.10183580000012,-8.631096],[115.10124480000002,-8.634535099999937],[115.09921940000004,-8.635691599999973],[115.09935130000008,-8.640155899999968],[115.10041490000003,-8.6393993],[115.10413420000009,-8.643229899999938],[115.1168867,-8.648407899999938],[115.1427169000001,-8.670304899999962],[115.1614598000001,-8.697541899999976],[115.1658718000001,-8.706782699999962],[115.16926360000002,-8.724384499999928],[115.164161,-8.7307802],[115.15963290000002,-8.746218699999929],[115.1523006000001,-8.74710159999995],[115.15216880000003,-8.749959899999965],[115.1623045,-8.751430099999936],[115.16810930000008,-8.7574873],[115.16948880000007,-8.764533599999936],[115.16747020000003,-8.773951299999965],[115.16196450000007,-8.782358299999942],[115.14890490000005,-8.779417299999977],[115.14183790000004,-8.780192099999965],[115.14025060000006,-8.782825899999978],[115.13081980000004,-8.789746],[115.12645830000008,-8.790682299999958],[115.12513050000007,-8.789606799999945],[115.1215989000001,-8.794075],[115.1187983000001,-8.793630099999973],[115.11626890000002,-8.803200599999968],[115.11147670000003,-8.807064799999978],[115.10947990000011,-8.807123199999978],[115.10338320000005,-8.811471],[115.10006670000007,-8.810513199999946],[115.095757,-8.813807],[115.08834800000011,-8.814720099999931],[115.08410770000012,-8.824721599999975],[115.0852311000001,-8.8278078],[115.0839142000001,-8.829576799999927],[115.08691520000002,-8.832974],[115.08876410000005,-8.838187],[115.1116022000001,-8.845468099999948],[115.12087860000008,-8.8460574],[115.12337180000009,-8.847844],[115.12757770000007,-8.846391899999958],[115.16718090000006,-8.849177],[115.17966530000001,-8.847096299999976],[115.19848210000009,-8.841539699999942],[115.2182355000001,-8.8319532],[115.22503890000007,-8.819412399999976],[115.22459560000004,-8.817391399999963],[115.23070010000004,-8.811906299999976],[115.23193220000007,-8.807864299999949],[115.23592250000002,-8.803238699999952],[115.239949,-8.803917499999955],[115.23983,-8.801440499999956],[115.236654,-8.801698],[115.2356850000001,-8.799198599999954],[115.23734170000012,-8.79728119999993],[115.23390330000007,-8.798170599999935],[115.23051380000004,-8.787859],[115.22697290000008,-8.785371699999928],[115.22657070000002,-8.777746699999966],[115.22418920000007,-8.773677],[115.22294450000004,-8.756116299999974],[115.22142870000005,-8.753404799999942],[115.21819060000007,-8.752204499999948],[115.21669430000009,-8.754032499999937],[115.21592650000002,-8.757224899999926],[115.21729060000007,-8.760189099999934],[115.216252,-8.760011899999938],[115.21555660000001,-8.7658711],[115.21772980000003,-8.7717508],[115.21379720000004,-8.77599559999993],[115.21708410000008,-8.785013299999946],[115.22027710000009,-8.787152699999979],[115.208311,-8.785558199999969],[115.201935,-8.781337],[115.1968491,-8.782638],[115.19768160000001,-8.780320199999949],[115.19402430000002,-8.776613299999951],[115.19428990000006,-8.773116899999934],[115.1915914000001,-8.766969899999935],[115.18913470000007,-8.7659005],[115.18849140000009,-8.763949299999979],[115.18688550000002,-8.765389299999981],[115.18728180000005,-8.763405399999954],[115.18588610000006,-8.762767899999972],[115.18555970000011,-8.764695899999936],[115.18280840000011,-8.7651085],[115.18072490000009,-8.759304699999973],[115.1845224000001,-8.748750499999971],[115.18351160000009,-8.744402899999955],[115.18498490000002,-8.743316799999945],[115.1836449000001,-8.739497599999936],[115.18535810000003,-8.7391335],[115.18390190000002,-8.739604699999973],[115.185922,-8.743559299999959],[115.18664810000007,-8.740404399999932],[115.18824760000007,-8.741021399999966],[115.18939280000006,-8.739769],[115.18760550000002,-8.73888729999993],[115.18730210000001,-8.735829699999954],[115.18673120000005,-8.721578299999976],[115.1848007000001,-8.7216965],[115.185571,-8.718977299999949],[115.18758470000012,-8.718229299999962],[115.18703570000002,-8.711407899999926],[115.185301,-8.706117199999937],[115.1820034000001,-8.704551699999968],[115.18082980000008,-8.698290199999974],[115.17613790000007,-8.696345599999972],[115.17946830000005,-8.695138799999938],[115.18022240000005,-8.693054],[115.17735260000006,-8.690890899999943],[115.17560620000006,-8.683174699999938],[115.17383040000004,-8.682974299999955],[115.17970690000004,-8.674875799999938],[115.1738064000001,-8.659704899999952],[115.17415420000009,-8.658010299999944],[115.1755329,-8.657958099999973],[115.17756280000003,-8.6581243],[115.17805090000002,-8.660713399999963],[115.18051820000005,-8.659936399999935],[115.17878170000006,-8.656540899999925],[115.17983670000001,-8.656335699999943],[115.17915090000008,-8.652917399999978],[115.18152120000002,-8.647155299999952],[115.18043050000006,-8.644569899999965],[115.181569,-8.637321499999928],[115.180311,-8.633625299999949],[115.18154890000005,-8.633576],[115.18007540000008,-8.628351799999962],[115.18232340000009,-8.62870289999995],[115.18014280000011,-8.616241899999977],[115.1863959000001,-8.615939099999935],[115.18880750000005,-8.612591699999939],[115.19768170000009,-8.611617399999943],[115.1965474000001,-8.606063499999948],[115.19990880000012,-8.606240599999978],[115.20348720000004,-8.602684899999929],[115.20922740000003,-8.599975299999926],[115.20976640000003,-8.597812399999953],[115.21339570000009,-8.598083599999939],[115.21453070000007,-8.596074199999975],[115.22388400000011,-8.597352],[115.22616040000003,-8.595602699999972],[115.22573220000004,-8.592761499999938],[115.23575210000001,-8.59152309999996],[115.23652270000002,-8.597995],[115.23820130000001,-8.597844299999963],[115.23859870000001,-8.599272],[115.23726380000005,-8.602146399999981],[115.2421786000001,-8.603149899999949],[115.246257,-8.596249399999977],[115.24707620000004,-8.589761],[115.24951410000006,-8.585261499999945],[115.249168,-8.570600399999933],[115.24630790000003,-8.568747599999938],[115.24487810000005,-8.558336599999961],[115.24142510000001,-8.559324],[115.24074140000005,-8.550897899999939],[115.23804360000008,-8.546737199999939],[115.23405480000008,-8.544912],[115.233437,-8.538913599999944],[115.2311145000001,-8.538288699999953],[115.2329952,-8.529342799999938],[115.22996490000003,-8.527472099999954],[115.2297522,-8.52532789999998],[115.23162650000006,-8.523166299999957],[115.23072900000011,-8.518038399999966],[115.23316240000008,-8.512725699999976],[115.23583930000007,-8.5125568],[115.23839490000012,-8.508915],[115.23777880000011,-8.5031825],[115.24014710000006,-8.500215699999956],[115.24314130000005,-8.499759499999925],[115.2430164000001,-8.496136799999931],[115.2417613,-8.49594049999996],[115.24160660000007,-8.492918599999939],[115.2400599,-8.491758599999969],[115.24335430000008,-8.487850599999945],[115.24152210000011,-8.486185],[115.24364930000002,-8.4836491],[115.24475110000003,-8.478046799999959],[115.24162210000009,-8.475655399999937],[115.24244690000012,-8.472763],[115.24414940000008,-8.472136399999954],[115.24107480000009,-8.470819199999937],[115.242549,-8.469328299999972],[115.24117710000007,-8.4667039],[115.2422788,-8.465417199999933],[115.23912360000008,-8.462814099999946],[115.2385825,-8.459606599999972],[115.23635580000007,-8.458640699999933],[115.23554060000004,-8.455001299999935],[115.234043,-8.454488899999944],[115.23454120000008,-8.452545699999973],[115.231229,-8.450294699999972],[115.23270780000007,-8.448152],[115.23167630000012,-8.447099099999946],[115.23106960000007,-8.4483447],[115.22960560000001,-8.444998],[115.23038430000008,-8.43697179999998],[115.2320016000001,-8.435707699999966],[115.231203,-8.433222599999965],[115.23325880000004,-8.428953899999954],[115.23307590000002,-8.427379199999962],[115.23041660000001,-8.425732099999948],[115.230751,-8.418783099999928],[115.22858210000004,-8.4157231],[115.22989170000005,-8.411263899999938],[115.22772070000008,-8.408941699999957],[115.228939,-8.407238],[115.22750660000008,-8.401816399999973],[115.22812050000005,-8.394951699999979],[115.22522220000008,-8.3914017],[115.22539530000006,-8.38823489999993],[115.22828390000006,-8.383956599999976],[115.2313534000001,-8.383956599999976],[115.2319007000001,-8.378626599999961],[115.2350987000001,-8.37419609999995],[115.23424340000008,-8.369396499999937],[115.23316980000004,-8.369487399999969],[115.23680320000005,-8.364904599999932],[115.23419060000003,-8.357866099999967],[115.23781250000002,-8.353562799999963],[115.237285,-8.3517392],[115.23862150000002,-8.351171399999942],[115.23957310000003,-8.347108599999956],[115.24208370000008,-8.345984199999975],[115.24136670000007,-8.343218499999978],[115.24363740000001,-8.343126499999926],[115.2442751000001,-8.340937399999973],[115.24809180000011,-8.341689299999928],[115.24780650000002,-8.339398399999936],[115.249272,-8.338481799999954],[115.24712120000004,-8.334273],[115.24793470000009,-8.332380399999977],[115.24265260000004,-8.329126199999962],[115.24549360000003,-8.327927],[115.24657630000002,-8.3248757],[115.24492080000005,-8.322120799999936],[115.2484204000001,-8.321245499999975],[115.24712250000005,-8.31798159999994],[115.25103330000002,-8.314339599999926]]]},"properties":{"shapeName":"Badung","shapeISO":"","shapeID":"22746128B58922903371538","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[115.84991680000007,-2.388621399999977],[115.85334360000002,-2.378942099999961],[115.85150440000007,-2.373298],[115.85246380000001,-2.3700357],[115.85112550000008,-2.368748699999969],[115.85748440000009,-2.356983699999944],[115.84488370000008,-2.353053299999942],[115.838837,-2.3410292],[115.8390773000001,-2.337520199999972],[115.83449540000004,-2.333709799999951],[115.83437920000006,-2.330831699999976],[115.83116280000002,-2.325315299999943],[115.83264930000007,-2.312978],[115.83487860000002,-2.312100499999929],[115.83555390000004,-2.308845099999928],[115.83879120000006,-2.308276899999953],[115.84186420000003,-2.3043336],[115.85132470000008,-2.301290899999969],[115.85385760000008,-2.298907199999974],[115.85458240000003,-2.294206],[115.85284290000004,-2.291888599999936],[115.84162340000012,-2.291637199999968],[115.83608440000012,-2.286619499999972],[115.82873730000006,-2.269445899999937],[115.82274820000009,-2.260828499999946],[115.82202350000011,-2.257798199999968],[115.82404640000004,-2.252429399999926],[115.82224530000008,-2.247620799999936],[115.822458,-2.243428],[115.8193367,-2.243444599999975],[115.81509580000011,-2.239324799999963],[115.8146329000001,-2.2341891],[115.81630590000009,-2.230867499999931],[115.81462190000002,-2.223789199999942],[115.81851490000008,-2.222843799999964],[115.81636930000002,-2.220639799999958],[115.81689510000001,-2.218048],[115.81047170000011,-2.216260299999931],[115.80505220000009,-2.211108099999933],[115.80110820000004,-2.210670099999959],[115.80712260000007,-2.1976754],[115.80024490000005,-2.191686699999934],[115.79935650000004,-2.187621399999955],[115.80058480000002,-2.181998799999974],[115.80584920000001,-2.175577],[115.8087101000001,-2.168563899999924],[115.80790910000007,-2.152096099999937],[115.81070910000005,-2.128254699999957],[115.81009870000003,-2.0973187],[115.812151,-2.093849299999931],[115.8260289000001,-2.088859899999932],[115.83035470000004,-2.085086199999978],[115.83659560000001,-2.059188],[115.83519180000008,-2.056292399999961],[115.83197980000011,-2.055202599999973],[115.82636460000003,-2.056360799999936],[115.82156570000006,-2.054590599999926],[115.81239950000008,-2.046303499999965],[115.80738640000004,-2.044035599999972],[115.8076913000001,-2.041064899999981],[115.80376970000009,-2.037827099999959],[115.79751570000008,-2.041036399999939],[115.7897944,-2.042566199999953],[115.782936,-2.041868199999954],[115.78273210000009,-2.044704799999977],[115.77667440000005,-2.050854099999981],[115.77309620000005,-2.051753199999951],[115.76128590000008,-2.0494575],[115.7536718,-2.050468099999932],[115.74865920000002,-2.045849199999964],[115.74532520000002,-2.039026199999967],[115.74098920000006,-2.036409099999958],[115.73358120000012,-2.040710199999978],[115.72811420000005,-2.029582399999924],[115.72478709800009,-2.028255599999966],[115.7247106000001,-2.026200899999935],[115.7275869,-2.020734299999958],[115.7440117000001,-2.008181799999932],[115.74796490000006,-2.000607599999967],[115.74760640000011,-1.995118099999956],[115.7311671000001,-1.9827547],[115.72919360000003,-1.97917],[115.72651690000009,-1.983906199999979],[115.7277,-1.988864599999943],[115.7214441000001,-1.990307],[115.71195300000011,-2.007279399999959],[115.71071710000001,-2.0240066],[115.70486530000005,-2.037010399999929],[115.70589530000007,-2.057873499999971],[115.70166860000006,-2.069152599999939],[115.69292540000004,-2.082423699999936],[115.67412650000006,-2.101729599999942],[115.66355980000003,-2.119600799999944],[115.65051360000007,-2.129727599999967],[115.63986310000007,-2.149910299999931],[115.63388150000003,-2.153748],[115.62696170000004,-2.154814],[115.6045236000001,-2.145096799999976],[115.59951110000009,-2.145514499999933],[115.59458250000012,-2.147912799999972],[115.59095090000005,-2.151859099999967],[115.58817380000005,-2.169117699999958],[115.58419890000005,-2.177521499999955],[115.57838530000004,-2.181094],[115.53894900000012,-2.197024399999975],[115.51821230000007,-2.207890499999962],[115.509469,-2.218322299999954],[115.50140480000005,-2.239488599999959],[115.4918818000001,-2.249783899999954],[115.48187410000003,-2.256175399999961],[115.4636011,-2.260683799999924],[115.44655710000006,-2.276158099999975],[115.40066630000001,-2.301492499999938],[115.38826090000009,-2.312633399999925],[115.37782390000007,-2.3247715],[115.36290080000003,-2.336333599999932],[115.358491,-2.337909599999932],[115.3558799000001,-2.341643599999941],[115.34301860000005,-2.354326799999967],[115.33811290000006,-2.356887699999959],[115.3302394000001,-2.358901799999956],[115.3196345,-2.357575299999951],[115.31881820000001,-2.358577799999978],[115.32167920000006,-2.369324799999958],[115.31951250000009,-2.379503599999964],[115.31972610000003,-2.388709399999925],[115.31587330000002,-2.394925199999932],[115.31631660000005,-2.400947],[115.31804740000007,-2.402104899999927],[115.33220190000009,-2.395313499999929],[115.33868880000011,-2.395554599999969],[115.3450037,-2.401164399999971],[115.34921140000006,-2.410377599999947],[115.3592053000001,-2.420728799999949],[115.3714314,-2.425821299999939],[115.38543890000005,-2.434970899999939],[115.4015237000001,-2.440968799999951],[115.417614,-2.443560199999979],[115.44560190000004,-2.455726399999946],[115.4708174000001,-2.461689099999944],[115.50127850000001,-2.462041899999974],[115.51911490000009,-2.466778599999941],[115.527541,-2.469814],[115.545313,-2.480569],[115.5588672,-2.486245599999961],[115.57212190000007,-2.482116699999949],[115.59246430000007,-2.486128599999972],[115.59756790000006,-2.484739699999977],[115.59956940000006,-2.491508899999928],[115.604138,-2.498932799999977],[115.6159877,-2.505071799999939],[115.63830990000008,-2.509167199999979],[115.68588450000004,-2.513588399999946],[115.68543260000001,-2.527112199999976],[115.68090970000003,-2.5363087],[115.68106050000006,-2.5387209],[115.69297070000005,-2.546108299999958],[115.69932490000008,-2.5719208],[115.70860390000007,-2.578274499999964],[115.71169720000012,-2.585412899999938],[115.71712280000008,-2.590600499999937],[115.72149490000004,-2.591203499999949],[115.73458630000005,-2.581431799999962],[115.74923520000004,-2.575825699999939],[115.7585686000001,-2.568842699999948],[115.76226130000009,-2.553701699999976],[115.7714165000001,-2.528576199999975],[115.77771840000003,-2.523060599999951],[115.79561690000003,-2.512298599999951],[115.8036072000001,-2.504029],[115.81263050000007,-2.483522199999925],[115.8124855000001,-2.477608199999963],[115.80825880000009,-2.459950699999979],[115.80805280000004,-2.445373599999925],[115.80259020000005,-2.4329048],[115.80294110000011,-2.429243199999974],[115.808564,-2.420416699999976],[115.81008230000009,-2.410670799999934],[115.8120659000001,-2.410239499999932],[115.81456830000002,-2.414095499999974],[115.8173531000001,-2.413837199999932],[115.83241350000003,-2.400195599999961],[115.83479390000002,-2.395406299999934],[115.8423927,-2.393021199999964],[115.84463570000003,-2.394706299999939],[115.8466194,-2.394338399999981],[115.84991680000007,-2.388621399999977]]]},"properties":{"shapeName":"Balangan","shapeISO":"","shapeID":"22746128B18204752061404","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[107.75000010000008,-6.812845],[107.74309550000004,-6.813893599999972],[107.73909770000006,-6.812742],[107.73353590000005,-6.814269799999977],[107.73035440000007,-6.811649099999954],[107.72652950000008,-6.810822799999926],[107.72464,-6.81846],[107.71888,-6.82467],[107.7215,-6.82886],[107.71906,-6.83038],[107.71758,-6.83471],[107.71281,-6.83327],[107.7034,-6.84026],[107.70017,-6.8371],[107.69485,-6.83623],[107.694,-6.82989],[107.69243,-6.82909],[107.67919720000003,-6.8317253],[107.67628,-6.83046],[107.67234410000009,-6.832418099999927],[107.66872890000008,-6.831328199999973],[107.66087,-6.83207],[107.65999,-6.83423],[107.65471,-6.83703],[107.65191,-6.84202],[107.64395,-6.84643],[107.64262820000005,-6.850396099999955],[107.639321,-6.852884699999947],[107.636999,-6.852812],[107.63708740000004,-6.855020899999943],[107.62857570000006,-6.855709],[107.62735190000006,-6.858016299999974],[107.62522250000006,-6.858348399999954],[107.62336970000007,-6.864278],[107.62622080000006,-6.863662899999952],[107.62537160000005,-6.866490499999941],[107.62652520000006,-6.866944099999955],[107.62711580000007,-6.87113],[107.63090840000007,-6.872069],[107.629468,-6.880499199999974],[107.63405290000009,-6.884755699999971],[107.63255140000007,-6.889324],[107.63542,-6.888355699999977],[107.63647520000006,-6.886034199999926],[107.64231870000003,-6.893824499999937],[107.64654260000009,-6.888498099999936],[107.647315,-6.889501199999927],[107.64567340000008,-6.891150799999934],[107.64898260000007,-6.891962699999965],[107.64926540000005,-6.893321899999933],[107.65650090000008,-6.894275599999958],[107.66355950000008,-6.883605099999954],[107.66588040000005,-6.885324499999967],[107.66423040000006,-6.889685899999961],[107.66532890000008,-6.890099199999952],[107.67019110000007,-6.883989],[107.66806470000006,-6.891013799999939],[107.67776170000008,-6.892712699999947],[107.68077150000005,-6.889416299999937],[107.68076770000005,-6.891168799999946],[107.68415150000004,-6.892888699999958],[107.68460670000007,-6.895590899999945],[107.68903950000004,-6.897091899999964],[107.69045860000006,-6.899946299999954],[107.69487670000007,-6.902681599999937],[107.69480140000007,-6.904343799999936],[107.69290250000006,-6.905419599999959],[107.7,-6.908241799999928],[107.70399450000008,-6.9076111],[107.704686,-6.903239299999939],[107.70063350000004,-6.901611199999934],[107.70182390000008,-6.897777499999961],[107.70450060000007,-6.898386099999925],[107.704239,-6.892605099999969],[107.70761860000005,-6.889726],[107.71461180000006,-6.890188899999941],[107.71399490000005,-6.901527899999962],[107.71518350000008,-6.903589799999963],[107.71669680000008,-6.901228299999957],[107.71909320000009,-6.901590099999964],[107.71931760000007,-6.898951199999942],[107.72350320000004,-6.898557],[107.72611750000004,-6.895037599999966],[107.72717550000004,-6.896382199999948],[107.72992990000006,-6.895681199999956],[107.734631,-6.899497899999972],[107.73817020000007,-6.899639699999966],[107.73934050000008,-6.902053],[107.73685320000004,-6.908761499999969],[107.73430640000004,-6.908535299999926],[107.72966430000008,-6.913244199999951],[107.72849280000008,-6.916978099999938],[107.72619640000005,-6.917639],[107.72692840000008,-6.9246742],[107.72580780000004,-6.928320799999938],[107.72090960000008,-6.937383199999942],[107.71785180000006,-6.939160399999935],[107.71588870000005,-6.945772399999953],[107.71311250000008,-6.947535],[107.71262740000009,-6.954072199999928],[107.71364960000005,-6.95611],[107.71565590000006,-6.956154199999958],[107.715985,-6.961688099999947],[107.70336160000005,-6.968046899999933],[107.69432840000007,-6.969734],[107.66579450000006,-6.967585299999939],[107.64942940000009,-6.964673299999959],[107.63896950000009,-6.965876299999934],[107.62654890000005,-6.964209299999936],[107.61678640000008,-6.960920199999975],[107.58481330000006,-6.962376199999937],[107.56260190000006,-6.950782699999934],[107.54700530000008,-6.930006],[107.54590080000008,-6.928081299999974],[107.54729010000005,-6.926714499999946],[107.54538950000006,-6.927012899999966],[107.54376570000005,-6.919023],[107.53697820000008,-6.917388299999971],[107.53639150000004,-6.9189353],[107.53080920000008,-6.916468299999963],[107.52662920000006,-6.9194083],[107.52650920000008,-6.920838299999957],[107.52505010000004,-6.920748699999933],[107.52427,-6.92029],[107.52349,-6.92322],[107.52481,-6.92485],[107.52274,-6.92836],[107.52262490000004,-6.935527899999954],[107.53086160000004,-6.938840699999957],[107.53204,-6.94174],[107.52581,-6.9448],[107.52413,-6.95192],[107.52199,-6.95449],[107.5184,-6.95557],[107.5186,-6.95683],[107.52191,-6.95705],[107.51844,-6.95927],[107.51877,-6.96369],[107.51292,-6.96494],[107.50889,-6.97119],[107.5082,-6.97683],[107.50586,-6.97969],[107.50414,-6.97932],[107.50495,-6.98169],[107.50379,-6.98277],[107.5021,-6.9805],[107.50017,-6.98052],[107.49834,-6.97744],[107.48809,-6.97981],[107.48595,-6.98528],[107.4877,-6.99435],[107.48648,-6.99997],[107.47891,-7.00258],[107.47495,-7.00715],[107.47713,-7.01288],[107.47527,-7.01817],[107.47853,-7.02227],[107.48165,-7.02376],[107.48024260000005,-7.035122499999943],[107.47531360000005,-7.040415699999926],[107.47549,-7.05118],[107.4771,-7.05226],[107.47713,-7.0574],[107.47349,-7.05428],[107.46621,-7.05235],[107.45396,-7.05171],[107.44796,-7.048440299999982],[107.43377,-7.05454],[107.42808,-7.0552],[107.42716,-7.05744],[107.42551,-7.057],[107.41942980000005,-7.062298799999951],[107.42214,-7.07516],[107.41921,-7.07658],[107.41839,-7.07987],[107.41503,-7.08309],[107.41155,-7.08432],[107.41022,-7.08819],[107.4071,-7.09133],[107.409,-7.09666],[107.40731,-7.10915],[107.40237,-7.11131],[107.3922,-7.12088],[107.38446,-7.12189],[107.38218,-7.11934],[107.36776,-7.11467],[107.36235350000004,-7.118492],[107.35964,-7.11401],[107.34626,-7.10818],[107.34067,-7.11067],[107.334114,-7.108399],[107.32888830000007,-7.108318699999927],[107.32595470000007,-7.109851799999944],[107.31909,-7.10721],[107.31175370000005,-7.108123499999977],[107.30911250000008,-7.1106196],[107.30840080000007,-7.118123799999978],[107.309165,-7.12412],[107.31534930000004,-7.128839099999936],[107.31311810000005,-7.131523299999969],[107.31559,-7.134705699999927],[107.31695570000005,-7.145413499999961],[107.31523910000004,-7.153152599999942],[107.30551920000005,-7.163518099999976],[107.29700480000008,-7.163938199999961],[107.29240430000004,-7.1709734],[107.28314220000004,-7.174324699999943],[107.27708450000006,-7.178982399999938],[107.27626050000003,-7.184015399999964],[107.25340280000006,-7.195499499999926],[107.25103770000004,-7.199767699999938],[107.25137340000003,-7.207688399999938],[107.25772870000009,-7.208778499999937],[107.29042590000006,-7.2077238],[107.30156720000008,-7.209388899999965],[107.31294260000004,-7.205226599999946],[107.32531780000005,-7.203826899999967],[107.33045970000006,-7.213022799999976],[107.33748640000005,-7.215970699999957],[107.33901990000004,-7.227210199999945],[107.34611520000004,-7.238515],[107.35234970000005,-7.238111],[107.35675520000007,-7.235624299999927],[107.36905350000006,-7.240102899999954],[107.37979190000004,-7.241673399999968],[107.39876570000007,-7.248053699999957],[107.40660870000005,-7.255157199999928],[107.424347,-7.2602407],[107.43264780000004,-7.256973399999936],[107.44123090000005,-7.259925099999975],[107.45511640000007,-7.260341799999935],[107.46080790000008,-7.253567399999952],[107.464058,-7.252423],[107.46847550000007,-7.253977],[107.46969610000008,-7.257960499999967],[107.47421280000003,-7.254566399999931],[107.47664650000007,-7.256526199999939],[107.47772230000004,-7.255353199999945],[107.476761,-7.253935499999955],[107.48006450000008,-7.251455499999963],[107.50074020000005,-7.257239099999936],[107.51153570000008,-7.255696499999942],[107.52415480000008,-7.256026],[107.53183760000007,-7.254253099999971],[107.53401190000005,-7.251313399999958],[107.54602060000008,-7.257777399999952],[107.54845440000008,-7.254920699999957],[107.55729690000004,-7.251430299999981],[107.567093,-7.259510699999964],[107.57373060000003,-7.262856699999929],[107.57825480000008,-7.268914],[107.57895670000005,-7.273254599999973],[107.58215340000004,-7.276700699999935],[107.59074410000005,-7.281659299999944],[107.59259040000006,-7.280576899999971],[107.59660350000007,-7.283275799999956],[107.599228,-7.282952],[107.60377510000006,-7.293526399999962],[107.60147110000008,-7.299408699999958],[107.60519420000008,-7.3078496],[107.61244970000007,-7.309274899999934],[107.62002570000004,-7.3069513],[107.62751780000008,-7.298626199999944],[107.63014990000005,-7.3013975],[107.63536840000006,-7.301540599999953],[107.64095320000007,-7.303977199999963],[107.64759840000005,-7.298639499999979],[107.64678970000006,-7.2975871],[107.64821630000006,-7.294816199999957],[107.65245070000009,-7.294760499999938],[107.65766920000004,-7.289773199999956],[107.66010290000008,-7.290425099999936],[107.66198740000004,-7.293476799999951],[107.66548930000005,-7.2945444],[107.66426860000007,-7.298734399999944],[107.66663370000003,-7.301027],[107.66881570000004,-7.300484899999958],[107.67056280000008,-7.304328199999929],[107.671425,-7.308687],[107.67022710000003,-7.312767699999938],[107.67398080000004,-7.313349499999958],[107.67616280000004,-7.316073599999982],[107.67785650000008,-7.314803799999936],[107.677559,-7.312087299999973],[107.67963420000007,-7.310797899999955],[107.69156660000004,-7.308999299999925],[107.69458020000008,-7.310276699999974],[107.709427,-7.308701299999939],[107.71405040000008,-7.310437],[107.71936810000005,-7.314827199999968],[107.72286230000009,-7.314224899999942],[107.72470870000006,-7.299300899999935],[107.73012550000004,-7.296315399999969],[107.73126990000009,-7.294020899999964],[107.73021710000006,-7.292811599999936],[107.72325910000006,-7.293274599999961],[107.72242740000007,-7.289728899999943],[107.73826610000003,-7.273789199999953],[107.73903670000004,-7.266652399999941],[107.73258220000008,-7.260085799999956],[107.71008310000008,-7.248300299999926],[107.70614630000006,-7.237886699999933],[107.70864880000005,-7.231275799999935],[107.70708490000004,-7.228480699999977],[107.71554570000006,-7.222151499999939],[107.71862040000008,-7.222268299999939],[107.71907450000003,-7.220355099999949],[107.72199260000008,-7.218485099999953],[107.72445690000006,-7.218840399999976],[107.73111730000005,-7.213170799999943],[107.72519690000007,-7.206325299999946],[107.721573,-7.197982099999933],[107.72498330000008,-7.191538099999946],[107.73307810000006,-7.182585],[107.73609170000009,-7.173942299999965],[107.73920450000008,-7.171202],[107.73979960000008,-7.167256599999973],[107.75407250000006,-7.172611299999971],[107.76600640000004,-7.171677899999963],[107.77077710000009,-7.168051199999979],[107.77121960000005,-7.165645099999949],[107.76953350000008,-7.162449799999933],[107.77079240000006,-7.156784],[107.77827360000003,-7.155743899999948],[107.77989210000004,-7.158530499999927],[107.78556070000008,-7.1615827],[107.79328930000008,-7.160048699999948],[107.79798140000008,-7.157425199999977],[107.80772410000009,-7.144482399999958],[107.81127230000004,-7.136527499999943],[107.81171420000004,-7.126721199999963],[107.80776990000004,-7.115743399999928],[107.810875,-7.109873599999958],[107.809929,-7.101808799999958],[107.81150060000004,-7.099199599999963],[107.83072670000007,-7.090782399999966],[107.83000970000006,-7.081767],[107.83325210000004,-7.081939499999976],[107.83552560000004,-7.080455599999937],[107.83485540000004,-7.0694936],[107.83804330000004,-7.066586799999925],[107.84049230000005,-7.067039799999975],[107.84685520000005,-7.064083799999935],[107.84985720000009,-7.058822599999928],[107.86151890000008,-7.059717899999953],[107.86568460000007,-7.056727199999955],[107.87408460000006,-7.054949099999931],[107.87656410000005,-7.050279],[107.88680280000005,-7.049360599999943],[107.89192970000005,-7.049294699999962],[107.89258580000006,-7.053138],[107.894333,-7.0543387],[107.923401,-7.053395599999931],[107.92620090000008,-7.052117599999974],[107.92573560000005,-7.050283699999966],[107.93156440000007,-7.040717399999949],[107.93083870000004,-7.032968899999958],[107.92895520000008,-7.0341261],[107.91960240000009,-7.033486099999948],[107.914758,-7.036796199999969],[107.91340640000004,-7.035671099999945],[107.91021740000008,-7.036261799999977],[107.91050730000006,-7.032650299999943],[107.90728010000004,-7.025171099999966],[107.90794380000006,-7.021272],[107.90594490000007,-7.014426],[107.90578470000008,-7.010698599999955],[107.90768440000005,-7.009366799999952],[107.90885930000007,-7.005447199999935],[107.90743260000005,-7.001806099999953],[107.907486,-6.992482499999937],[107.90486150000004,-6.9875052],[107.90061960000008,-6.986286399999926],[107.89739230000004,-6.982944799999927],[107.88938150000007,-6.982571399999927],[107.90221410000004,-6.969366899999955],[107.90876780000008,-6.967386499999975],[107.91657270000007,-6.967372699999942],[107.91838840000008,-6.953954499999952],[107.91466530000008,-6.952776699999959],[107.91051490000007,-6.954741299999966],[107.90877540000008,-6.953345099999979],[107.90015420000009,-6.953047599999934],[107.892006,-6.959528199999966],[107.88992320000006,-6.963863599999968],[107.88517010000004,-6.962265799999955],[107.88215650000006,-6.963105499999926],[107.88015640000003,-6.9610783],[107.87908940000005,-6.963331],[107.87602240000007,-6.9621628],[107.87399670000008,-6.963750499999946],[107.87281050000007,-6.962584299999946],[107.86837850000006,-6.962788199999977],[107.86828820000005,-6.964566599999955],[107.866511,-6.965809799999931],[107.86342630000007,-6.9651308],[107.86209710000008,-6.967769799999928],[107.85418930000009,-6.967617699999948],[107.85222530000004,-6.966263599999934],[107.84777910000008,-6.969679299999939],[107.84483960000006,-6.969991599999958],[107.84062970000008,-6.968412199999932],[107.83959210000006,-6.969240899999932],[107.83336650000007,-6.9644735],[107.83126660000005,-6.964466399999935],[107.82928770000007,-6.9668295],[107.83197930000006,-6.969808299999954],[107.82895210000004,-6.971972099999959],[107.82673520000009,-6.970692299999939],[107.826483,-6.967236599999978],[107.80089650000008,-6.964832],[107.78264430000007,-6.958882],[107.78135690000005,-6.955125099999975],[107.77850980000005,-6.955061699999931],[107.77809150000007,-6.957185099999947],[107.77398630000005,-6.956033899999966],[107.77419340000006,-6.959491],[107.76896460000006,-6.957430599999952],[107.77062890000008,-6.954957499999978],[107.76487530000009,-6.952209799999935],[107.76481120000005,-6.954951499999936],[107.76298190000006,-6.956332599999939],[107.76192020000008,-6.953554299999951],[107.75992080000009,-6.952765099999965],[107.75847210000006,-6.955431],[107.75522420000004,-6.956037799999933],[107.75390880000003,-6.951160199999947],[107.75897620000006,-6.9439191],[107.75695990000008,-6.938352699999939],[107.75801690000009,-6.9348271],[107.75686470000005,-6.929174499999931],[107.76008620000005,-6.920614],[107.75842430000006,-6.9146037],[107.75943,-6.912986099999955],[107.75759040000008,-6.909963199999936],[107.758812,-6.908737],[107.75772410000008,-6.905526399999928],[107.75929870000004,-6.903595899999971],[107.75882730000006,-6.898702899999932],[107.760374,-6.897104699999943],[107.75855350000006,-6.891805899999952],[107.748848,-6.883686299999965],[107.74446880000005,-6.876443199999926],[107.74314890000005,-6.861521],[107.74079140000003,-6.854955899999936],[107.74147040000008,-6.849024099999951],[107.74392710000006,-6.8463724],[107.74191290000005,-6.843391699999927],[107.74630750000006,-6.833733799999948],[107.74458320000008,-6.828033699999935],[107.75000010000008,-6.812845]]]},"properties":{"shapeName":"Bandung","shapeISO":"","shapeID":"22746128B35928710915600","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[107.52505010000004,-6.920748699999933],[107.52414920000007,-6.918598299999928],[107.5185,-6.91524],[107.52095,-6.9106],[107.51089920000004,-6.9011783],[107.51020510000006,-6.898321799999962],[107.51449,-6.89208],[107.51701,-6.8921],[107.51735,-6.88494],[107.51999,-6.87909],[107.51874550000008,-6.875000199999931],[107.52347060000005,-6.871959299999958],[107.524453,-6.874117699999942],[107.52518470000007,-6.872830099999931],[107.52676820000005,-6.867646399999956],[107.52311730000008,-6.865286499999968],[107.52988860000005,-6.864130699999976],[107.533008,-6.859342699999956],[107.53588830000007,-6.8585253],[107.53764930000006,-6.852144],[107.53228430000007,-6.850116599999978],[107.53716930000007,-6.843562],[107.53959940000004,-6.833788299999981],[107.54279690000004,-6.833925399999941],[107.54562610000005,-6.831747299999961],[107.55027980000006,-6.8335386],[107.54931920000007,-6.840098299999966],[107.55495920000004,-6.840958299999954],[107.550902,-6.848441099999945],[107.55377780000003,-6.849926799999935],[107.55567840000003,-6.854492799999946],[107.55877010000006,-6.855755399999964],[107.559357,-6.854404699999975],[107.56266520000008,-6.854897499999936],[107.56353540000003,-6.856080599999927],[107.56303190000006,-6.858679699999925],[107.56655520000004,-6.861609499999929],[107.56581920000008,-6.865768299999957],[107.56285920000005,-6.868788299999949],[107.56181460000005,-6.8729485],[107.56505370000008,-6.875896],[107.57065860000006,-6.877226399999927],[107.56971580000004,-6.881633199999953],[107.57148560000007,-6.882230599999957],[107.57676710000004,-6.868579599999975],[107.575785,-6.867667],[107.576706,-6.865570799999944],[107.58396160000007,-6.859609299999931],[107.58638770000005,-6.859673699999973],[107.58915720000005,-6.857234699999935],[107.58874520000006,-6.853674699999942],[107.59039320000005,-6.853054699999973],[107.58959970000006,-6.849599599999976],[107.59207930000008,-6.847929699999952],[107.59759530000008,-6.836887099999956],[107.59691660000004,-6.842604299999948],[107.59859850000004,-6.843485399999963],[107.59873970000007,-6.842056499999956],[107.60081490000005,-6.842334499999936],[107.60286620000005,-6.845876399999952],[107.60353130000004,-6.843558299999927],[107.60281910000003,-6.852011],[107.60139920000006,-6.854393199999947],[107.60348520000008,-6.8559773],[107.60454570000007,-6.859351899999979],[107.60917670000003,-6.855239099999949],[107.61154190000008,-6.849825099999975],[107.61431890000006,-6.849308699999938],[107.61605080000004,-6.847083199999929],[107.61589060000006,-6.849563799999942],[107.61920180000004,-6.850430299999971],[107.618805,-6.852544],[107.62185680000005,-6.856038299999966],[107.62500020000004,-6.848201],[107.62857570000006,-6.855709],[107.63708740000004,-6.855020899999943],[107.636999,-6.852812],[107.639321,-6.852884699999947],[107.64262820000005,-6.850396099999955],[107.64395,-6.84643],[107.65191,-6.84202],[107.65471,-6.83703],[107.65999,-6.83423],[107.66087,-6.83207],[107.66872890000008,-6.831328199999973],[107.67234410000009,-6.832418099999927],[107.67628,-6.83046],[107.67919720000003,-6.8317253],[107.69243,-6.82909],[107.694,-6.82989],[107.69485,-6.83623],[107.70017,-6.8371],[107.7034,-6.84026],[107.71281,-6.83327],[107.71758,-6.83471],[107.71906,-6.83038],[107.7215,-6.82886],[107.71888,-6.82467],[107.72464,-6.81846],[107.72652950000008,-6.810822799999926],[107.72624220000006,-6.805056799999932],[107.724228,-6.802373699999976],[107.72184760000005,-6.800489199999959],[107.71139540000007,-6.797608199999956],[107.70764930000007,-6.792939899999965],[107.70111090000006,-6.792962299999942],[107.69908150000003,-6.794891099999973],[107.68801890000009,-6.798347199999967],[107.67829140000003,-6.788843399999962],[107.67738350000008,-6.786047199999928],[107.672043,-6.780666599999961],[107.67110450000007,-6.7763441],[107.66931930000004,-6.777221399999974],[107.66250620000005,-6.774112499999944],[107.64930730000003,-6.772391599999935],[107.64261640000007,-6.774300299999936],[107.62902080000003,-6.7741344],[107.62693030000008,-6.773238399999968],[107.620659,-6.764484599999946],[107.61741650000005,-6.763319199999955],[107.61853040000005,-6.760105399999929],[107.61059580000006,-6.759181799999965],[107.60059370000005,-6.761097699999937],[107.60013590000005,-6.756300199999941],[107.60361490000008,-6.752091199999938],[107.60417950000004,-6.749241599999948],[107.60180670000005,-6.739447299999938],[107.60235610000007,-6.736107599999968],[107.60003670000003,-6.731370699999957],[107.59550920000004,-6.729216299999962],[107.58481610000007,-6.726780599999927],[107.57900250000006,-6.729003699999964],[107.57473760000005,-6.734340399999951],[107.57128910000006,-6.7361695],[107.56843580000009,-6.743262499999958],[107.56918350000007,-6.744879],[107.57260140000005,-6.7458379],[107.571869,-6.748689399999932],[107.57307450000008,-6.749545799999964],[107.57136550000007,-6.750955799999929],[107.57297530000005,-6.751357799999937],[107.57336430000004,-6.753493499999934],[107.57153330000006,-6.755402299999957],[107.57298290000006,-6.758689599999968],[107.57162490000007,-6.761847199999977],[107.57663740000004,-6.762548699999968],[107.57543190000007,-6.765602399999977],[107.57706460000009,-6.766186499999947],[107.57624830000009,-6.768454299999974],[107.57783520000004,-6.769654499999945],[107.576706,-6.771522699999935],[107.57900250000006,-6.773741499999971],[107.57830820000004,-6.775934],[107.57492080000009,-6.776758899999948],[107.57048810000003,-6.770873299999948],[107.56302180000006,-6.773886199999936],[107.55908980000004,-6.772813099999951],[107.55356610000007,-6.774776699999961],[107.54926470000004,-6.772978299999977],[107.54029090000006,-6.763934799999959],[107.53388990000008,-6.763885199999947],[107.53023540000004,-6.761956399999974],[107.52240760000007,-6.747697599999981],[107.51763930000004,-6.743918099999973],[107.51445780000006,-6.742213399999969],[107.50939260000007,-6.742389499999945],[107.50710390000006,-6.739195],[107.50233890000004,-6.738246199999935],[107.50142680000005,-6.736477099999945],[107.49668550000007,-6.736303599999928],[107.49460990000006,-6.734890899999925],[107.48738470000006,-6.735341199999937],[107.48543360000008,-6.733358],[107.48632340000006,-6.732125199999928],[107.47986790000004,-6.728854499999954],[107.47383570000005,-6.720468599999947],[107.47051250000004,-6.719207499999925],[107.46978770000004,-6.716981099999941],[107.46664440000006,-6.716342599999962],[107.46414960000004,-6.710831799999937],[107.46186080000007,-6.710659199999952],[107.46013650000003,-6.707384799999943],[107.45638290000005,-6.7053325],[107.452118,-6.700313299999948],[107.44826520000004,-6.701556899999957],[107.44144450000005,-6.699520799999959],[107.44185050000004,-6.701276299999961],[107.44048320000007,-6.701094399999931],[107.439644,-6.702790399999969],[107.43801890000009,-6.700155],[107.43562330000009,-6.700519299999939],[107.43549360000009,-6.702119099999948],[107.42514050000005,-6.700015299999961],[107.42250840000008,-6.695700399999964],[107.41671180000009,-6.6906669],[107.40945450000004,-6.688514899999973],[107.40618260000008,-6.689944399999945],[107.40512170000005,-6.693309599999964],[107.401674,-6.692994399999975],[107.39597330000004,-6.695651199999929],[107.38676460000005,-6.693814499999974],[107.38013490000009,-6.690338399999973],[107.37373780000007,-6.6910955],[107.37278590000005,-6.689878699999952],[107.37142610000006,-6.690843899999948],[107.37299360000009,-6.694449099999929],[107.37100230000004,-6.6969945],[107.371461,-6.700691799999959],[107.36784380000006,-6.700699],[107.36686720000006,-6.702392799999927],[107.36045850000005,-6.702611599999955],[107.352501,-6.696909099999971],[107.348816,-6.697290599999974],[107.34622970000004,-6.699786399999937],[107.34271250000006,-6.699710099999947],[107.34307880000006,-6.704593099999954],[107.34101880000009,-6.710441699999933],[107.34354410000009,-6.713008099999968],[107.34049240000007,-6.712342],[107.33989730000008,-6.714843],[107.34290330000005,-6.719007699999963],[107.33866130000007,-6.718017299999929],[107.33512130000008,-6.719114],[107.33305370000005,-6.721437199999968],[107.33538830000003,-6.724644799999965],[107.33148970000008,-6.722977799999967],[107.33118450000006,-6.724493699999925],[107.32863630000008,-6.724412099999938],[107.32695780000006,-6.727085299999942],[107.33081830000003,-6.729935299999966],[107.33232890000005,-6.728689799999927],[107.33372510000004,-6.730990599999927],[107.33116160000009,-6.732214099999965],[107.336415,-6.735278699999981],[107.333825,-6.735265199999958],[107.33300230000003,-6.736537899999973],[107.33051030000007,-6.735384599999975],[107.33059590000005,-6.7370413],[107.32694380000004,-6.737006899999926],[107.33157490000008,-6.741360699999973],[107.32947740000009,-6.741448399999967],[107.33042570000003,-6.744783899999959],[107.33560830000005,-6.747108299999979],[107.33612070000004,-6.748848099999975],[107.34269730000005,-6.750963399999932],[107.34346780000004,-6.753836799999931],[107.34591690000008,-6.754865799999948],[107.34517680000005,-6.755875799999956],[107.34821330000005,-6.756756],[107.35154740000007,-6.753176399999973],[107.35215010000007,-6.7543251],[107.34776320000009,-6.757900399999926],[107.33229840000007,-6.750783199999944],[107.33225260000006,-6.755307799999969],[107.33565540000006,-6.7540318],[107.33652510000007,-6.7561933],[107.33904280000007,-6.756514299999935],[107.33896650000008,-6.7587068],[107.34046180000007,-6.7574045],[107.34211740000006,-6.757829799999968],[107.34233870000008,-6.760577399999931],[107.34477250000003,-6.758787799999936],[107.34207990000004,-6.76106],[107.34133920000005,-6.757992399999978],[107.33941660000005,-6.759690899999953],[107.33692950000005,-6.757245699999942],[107.33427440000008,-6.758239399999979],[107.334633,-6.755110899999977],[107.33219160000004,-6.758871699999929],[107.33551040000003,-6.760023299999943],[107.33229080000007,-6.75969],[107.33239,-6.762381699999935],[107.33375560000007,-6.764912299999935],[107.33631150000008,-6.763813599999935],[107.33912670000007,-6.765343799999926],[107.33533490000008,-6.764658599999962],[107.33408370000006,-6.765626599999962],[107.33494580000007,-6.7669923],[107.33293930000008,-6.766207899999927],[107.33045210000006,-6.760968399999967],[107.328911,-6.760955],[107.32892620000007,-6.765286599999968],[107.33025370000007,-6.765218399999981],[107.33371750000003,-6.770295799999928],[107.32708750000006,-6.764449299999967],[107.33017740000008,-6.769466099999931],[107.327469,-6.767615499999977],[107.32872780000008,-6.772339],[107.32583630000005,-6.769051199999979],[107.32391370000005,-6.771521199999938],[107.32461560000007,-6.768336],[107.32099930000004,-6.768983499999933],[107.31959550000005,-6.768116199999952],[107.32053390000004,-6.766040499999974],[107.31754320000005,-6.765901299999939],[107.316002,-6.764252299999953],[107.32019050000008,-6.764305299999933],[107.32145710000009,-6.762866699999961],[107.32402050000007,-6.765383399999962],[107.32541670000006,-6.764836],[107.32636270000006,-6.760156299999949],[107.32530990000004,-6.758852599999955],[107.32342540000008,-6.760746199999971],[107.32444010000006,-6.7589885],[107.32334910000009,-6.7560093],[107.32096110000003,-6.759713799999929],[107.32085430000006,-6.758271799999932],[107.31774150000007,-6.759775799999943],[107.31611650000008,-6.758433499999967],[107.31587230000008,-6.759849199999962],[107.31297310000008,-6.7597],[107.30926530000005,-6.763278199999945],[107.31104290000007,-6.758707199999947],[107.30724350000008,-6.759415299999944],[107.30496230000006,-6.762248199999931],[107.30669420000004,-6.756340699999953],[107.31151590000007,-6.756900499999972],[107.31444560000006,-6.753265099999965],[107.31056230000007,-6.751484599999969],[107.30960090000008,-6.752248499999951],[107.30808270000006,-6.749968199999955],[107.30744950000008,-6.7525284],[107.30473340000009,-6.752666599999941],[107.30068980000004,-6.760624599999971],[107.30071270000008,-6.7577707],[107.30410020000005,-6.751218899999969],[107.30230730000005,-6.747430899999927],[107.303383,-6.746379499999932],[107.30027780000006,-6.744033499999944],[107.29729480000009,-6.743841299999929],[107.29701250000005,-6.742615799999953],[107.29510510000006,-6.742824699999971],[107.29474650000009,-6.745341899999971],[107.30117810000007,-6.749927699999944],[107.30005660000006,-6.754976899999974],[107.29772960000008,-6.752945099999977],[107.29827890000007,-6.763838899999939],[107.29589860000004,-6.759066699999948],[107.29395310000007,-6.760814399999958],[107.29340380000008,-6.763854699999968],[107.29463970000006,-6.764026299999955],[107.29367840000003,-6.764951399999973],[107.29521190000008,-6.766905899999927],[107.29815690000004,-6.768208199999947],[107.29645550000004,-6.771663799999942],[107.299431,-6.7747866],[107.29578410000005,-6.773491499999977],[107.29467790000007,-6.775363099999936],[107.288704,-6.774927799999944],[107.28850570000009,-6.776649199999952],[107.28956620000008,-6.7788235],[107.29198470000006,-6.778207499999951],[107.29377,-6.779375199999947],[107.29547890000003,-6.7783114],[107.292801,-6.780231599999979],[107.29390730000006,-6.780917799999941],[107.29338850000005,-6.783650099999932],[107.29137430000009,-6.783149399999957],[107.29243480000008,-6.787323099999981],[107.29367080000009,-6.787713699999927],[107.29509750000005,-6.785750099999973],[107.29898080000004,-6.786771899999962],[107.29762280000006,-6.787696499999981],[107.30330670000006,-6.790418299999942],[107.30197160000006,-6.793008499999928],[107.30382550000007,-6.792923599999938],[107.30542770000005,-6.794977299999971],[107.30805980000008,-6.794411799999978],[107.30971540000007,-6.797121199999935],[107.31152350000008,-6.796249099999955],[107.313965,-6.798910799999931],[107.31469740000006,-6.797650499999975],[107.31483470000006,-6.799387599999932],[107.316475,-6.799159199999963],[107.31603260000009,-6.801837599999942],[107.31871050000007,-6.801845199999946],[107.31452950000005,-6.803206099999954],[107.317505,-6.805117299999949],[107.31591810000003,-6.807843399999967],[107.32050340000006,-6.810902299999952],[107.32090770000008,-6.814734199999975],[107.32293810000004,-6.817078699999968],[107.31931330000003,-6.815751099999943],[107.31633610000006,-6.819197699999961],[107.31653130000007,-6.822963799999968],[107.32285320000005,-6.825381899999968],[107.32250220000009,-6.839558299999965],[107.32747660000007,-6.847060399999975],[107.32677560000008,-6.848821699999974],[107.32389830000005,-6.849663199999952],[107.32508250000006,-6.852666499999941],[107.32913390000004,-6.8519106],[107.33028420000005,-6.856329099999925],[107.33241290000007,-6.853768499999944],[107.33496110000004,-6.853254],[107.33761960000004,-6.857624899999962],[107.34074410000005,-6.854731299999969],[107.341409,-6.850091499999962],[107.34289560000008,-6.848950599999966],[107.34403240000006,-6.849614299999928],[107.34287270000004,-6.853424699999948],[107.34796480000006,-6.852303599999971],[107.34949510000007,-6.853517699999941],[107.35017410000006,-6.855981499999928],[107.34681080000007,-6.860849899999948],[107.34936540000007,-6.8658158],[107.34738170000008,-6.867659699999933],[107.34693920000007,-6.870589399999972],[107.34375350000005,-6.871549899999934],[107.343773,-6.873573499999964],[107.34120190000004,-6.875430299999948],[107.34312450000004,-6.879261199999974],[107.34153760000004,-6.881400299999939],[107.34168490000008,-6.8862371],[107.33396920000007,-6.886495299999979],[107.33099380000004,-6.888582399999962],[107.32769790000003,-6.887041199999942],[107.32324230000006,-6.887883299999942],[107.31448380000006,-6.896562699999947],[107.315056,-6.900083699999925],[107.31168380000008,-6.903971799999965],[107.30154430000005,-6.909622799999966],[107.29918680000009,-6.908783099999937],[107.29350290000008,-6.910067699999956],[107.29392260000009,-6.9120142],[107.29174060000008,-6.915877499999965],[107.28762070000005,-6.918221099999926],[107.28321090000009,-6.923302299999932],[107.27934280000005,-6.923748599999954],[107.27838910000008,-6.925466699999959],[107.27432260000006,-6.924350899999979],[107.26390850000007,-6.928167899999949],[107.25521870000006,-6.927112299999976],[107.23275770000004,-6.938711299999966],[107.21880350000004,-6.940053599999942],[107.21514140000005,-6.942907],[107.21859750000004,-6.946325],[107.21926890000009,-6.949336199999948],[107.202202,-6.960405499999979],[107.20058450000005,-6.963274599999977],[107.196457,-6.963026599999978],[107.19529740000007,-6.9652034],[107.19231430000008,-6.966241499999967],[107.19202440000004,-6.96798],[107.19017040000006,-6.968188899999973],[107.19078080000008,-6.97215],[107.186432,-6.973038799999927],[107.18489850000009,-6.983100499999978],[107.18655410000008,-6.9862777],[107.18595140000008,-6.988841199999968],[107.18853010000004,-6.989174499999933],[107.19019330000003,-6.992829899999947],[107.18961350000006,-6.995003799999949],[107.18528760000004,-6.9946567],[107.18457040000004,-6.996051899999941],[107.18722550000007,-7.0065595],[107.189438,-7.008545099999935],[107.18805710000004,-7.011564899999939],[107.19106310000006,-7.0133024],[107.19142160000007,-7.016502],[107.19562540000004,-7.0211149],[107.19339,-7.022519199999977],[107.19396220000004,-7.027074],[107.19126910000006,-7.028461099999959],[107.18804940000007,-7.042299399999933],[107.18928540000007,-7.043875299999968],[107.18647840000006,-7.045356199999958],[107.18846140000005,-7.046289599999966],[107.18578350000007,-7.049597899999981],[107.18705760000006,-7.0513812],[107.18428820000008,-7.052655799999968],[107.18424240000007,-7.055292699999939],[107.18193830000007,-7.058034099999929],[107.18490610000003,-7.059375899999964],[107.18610390000003,-7.058052199999963],[107.190384,-7.061855],[107.19179550000007,-7.060925599999962],[107.191147,-7.0587817],[107.19546260000004,-7.058859499999926],[107.19548050000009,-7.057650199999955],[107.19824230000006,-7.058936699999947],[107.19973690000006,-7.056079499999953],[107.20225540000007,-7.056520099999943],[107.20295730000004,-7.054173599999956],[107.20460520000006,-7.0571023],[107.205963,-7.0556758],[107.20805370000005,-7.056295],[107.20932020000004,-7.054044799999929],[107.210106,-7.0562755],[107.21223460000004,-7.054663799999958],[107.213112,-7.056211599999926],[107.21682750000008,-7.056530099999975],[107.21727820000007,-7.058263599999975],[107.22171850000007,-7.057087799999977],[107.223652,-7.0584812],[107.22440040000004,-7.057028299999956],[107.22235880000005,-7.052850399999954],[107.22402970000007,-7.0522367],[107.22278610000006,-7.050361299999963],[107.22456370000003,-7.049103899999977],[107.22858440000005,-7.050512899999944],[107.22933970000008,-7.049431499999969],[107.22978990000007,-7.051171],[107.23108690000004,-7.049785699999973],[107.23426070000005,-7.049919299999942],[107.23409040000007,-7.048659099999952],[107.23785410000005,-7.046708699999954],[107.24551410000004,-7.049149599999964],[107.24555220000008,-7.050442799999928],[107.25269250000008,-7.048727199999973],[107.25421050000006,-7.053026299999942],[107.25748860000004,-7.053324499999974],[107.25795,-7.055694699999947],[107.25653090000009,-7.0576693],[107.260193,-7.058607699999925],[107.25969710000004,-7.060589899999968],[107.26338970000006,-7.060834499999942],[107.26519770000004,-7.062373199999968],[107.26615920000006,-7.066850299999942],[107.27185070000007,-7.072530899999947],[107.283271,-7.077955799999927],[107.28533950000008,-7.084789],[107.28829190000005,-7.084921599999973],[107.29566210000007,-7.090492899999958],[107.29640210000008,-7.085122299999966],[107.29933180000006,-7.083868199999927],[107.301978,-7.088155799999981],[107.30639350000007,-7.090333899999962],[107.31116660000004,-7.097310099999959],[107.31175370000005,-7.108123499999977],[107.31909,-7.10721],[107.32595470000007,-7.109851799999944],[107.32888830000007,-7.108318699999927],[107.334114,-7.108399],[107.34067,-7.11067],[107.34626,-7.10818],[107.35964,-7.11401],[107.36235350000004,-7.118492],[107.36776,-7.11467],[107.38218,-7.11934],[107.38446,-7.12189],[107.3922,-7.12088],[107.40237,-7.11131],[107.40731,-7.10915],[107.409,-7.09666],[107.4071,-7.09133],[107.41022,-7.08819],[107.41155,-7.08432],[107.41503,-7.08309],[107.41839,-7.07987],[107.41921,-7.07658],[107.42214,-7.07516],[107.41942980000005,-7.062298799999951],[107.42551,-7.057],[107.42716,-7.05744],[107.42808,-7.0552],[107.43377,-7.05454],[107.44796,-7.048440299999982],[107.45396,-7.05171],[107.46621,-7.05235],[107.47349,-7.05428],[107.47713,-7.0574],[107.4771,-7.05226],[107.47549,-7.05118],[107.47531360000005,-7.040415699999926],[107.48024260000005,-7.035122499999943],[107.48165,-7.02376],[107.47853,-7.02227],[107.47527,-7.01817],[107.47713,-7.01288],[107.47495,-7.00715],[107.47891,-7.00258],[107.48648,-6.99997],[107.4877,-6.99435],[107.48595,-6.98528],[107.48809,-6.97981],[107.49834,-6.97744],[107.50017,-6.98052],[107.5021,-6.9805],[107.50379,-6.98277],[107.50495,-6.98169],[107.50414,-6.97932],[107.50586,-6.97969],[107.5082,-6.97683],[107.50889,-6.97119],[107.51292,-6.96494],[107.51877,-6.96369],[107.51844,-6.95927],[107.52191,-6.95705],[107.5186,-6.95683],[107.5184,-6.95557],[107.52199,-6.95449],[107.52413,-6.95192],[107.52581,-6.9448],[107.53204,-6.94174],[107.53086160000004,-6.938840699999957],[107.52262490000004,-6.935527899999954],[107.52274,-6.92836],[107.52481,-6.92485],[107.52349,-6.92322],[107.52427,-6.92029],[107.52505010000004,-6.920748699999933]]]},"properties":{"shapeName":"Bandung Barat","shapeISO":"","shapeID":"22746128B38190251761148","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[121.84889840000005,-0.968642899999963],[121.85217940000007,-0.9631222],[121.85181390000002,-0.961477399999978],[121.84751920000008,-0.963030899999978],[121.842459,-0.962046199999975],[121.84321950000003,-0.968472599999927],[121.84889840000005,-0.968642899999963]]],[[[123.07101030000001,-0.895291699999973],[123.06194190000008,-0.8956931],[123.06169450000004,-0.8976524],[123.06378310000002,-0.899377],[123.06747990000008,-0.899609099999964],[123.073772,-0.897180899999967],[123.07101030000001,-0.895291699999973]]],[[[123.08538170000008,-0.891832299999976],[123.08300020000001,-0.890366799999924],[123.0813515000001,-0.891649099999938],[123.08391620000009,-0.893114599999933],[123.0804356000001,-0.894763299999966],[123.07475660000011,-0.894397],[123.07585580000011,-0.896595199999979],[123.0819011000001,-0.895862499999964],[123.08538170000008,-0.891832299999976]]],[[[123.07145920000005,-0.893297799999971],[123.07310790000008,-0.892565],[123.0676122000001,-0.889084399999945],[123.06962730000009,-0.893297799999971],[123.07145920000005,-0.893297799999971]]],[[[123.082817,-0.884138299999961],[123.082817,-0.881024],[123.0804356000001,-0.881207199999949],[123.08116830000006,-0.885054199999956],[123.082817,-0.884138299999961]]],[[[123.076039,-0.877177],[123.07695490000003,-0.876261099999965],[123.07530620000011,-0.874246],[123.076039,-0.877177]]],[[[123.44868730000007,-0.830081499999949],[123.45185640000011,-0.828957],[123.45160650000003,-0.827707199999963],[123.44875130000003,-0.828531299999952],[123.44868730000007,-0.830081499999949]]],[[[123.45869170000003,-0.824499],[123.45731690000002,-0.819499599999972],[123.45257130000005,-0.817886499999929],[123.45432890000006,-0.823354599999959],[123.45869170000003,-0.824499]]],[[[122.74810810000008,-0.646721199999945],[122.7540474000001,-0.6434558],[122.75534880000009,-0.640119499999969],[122.75338480000005,-0.639456899999971],[122.74368330000004,-0.642817],[122.74444050000011,-0.645064899999966],[122.74810810000008,-0.646721199999945]]],[[[122.83777170000008,-0.628771399999948],[122.83733840000002,-0.6248719],[122.83596640000007,-0.6248719],[122.83069490000003,-0.629060199999969],[122.83387220000009,-0.629854599999931],[122.83777170000008,-0.628771399999948]]],[[[122.89753260000009,-0.619554499999936],[122.8990222000001,-0.618313099999966],[122.89778090000004,-0.616078799999968],[122.89480170000002,-0.615582199999949],[122.89281560000006,-0.622037099999943],[122.89554650000002,-0.622285399999953],[122.89753260000009,-0.619554499999936]]],[[[123.3614189000001,-0.617734399999961],[123.35947270000008,-0.615423299999975],[123.3560668,-0.616518],[123.35631010000009,-0.617977699999926],[123.35825630000011,-0.618464299999971],[123.3614189000001,-0.617734399999961]]],[[[123.35425050000003,-0.612875699999961],[123.35357220000003,-0.610457],[123.34688210000002,-0.609118899999942],[123.34639550000009,-0.611065099999962],[123.34967970000002,-0.6133763],[123.35381550000011,-0.614471],[123.35425050000003,-0.612875699999961]]],[[[123.33638510000003,-0.605083699999966],[123.33638510000003,-0.603910499999927],[123.3332253000001,-0.605205399999932],[123.336023,-0.606421799999964],[123.33638510000003,-0.605083699999966]]],[[[122.06365910000011,-1.6160017],[122.09157650000009,-1.616678699999966],[122.15546050000012,-1.607984399999964],[122.19666370000004,-1.608740499999953],[122.212429,-1.604879599999947],[122.21269060000009,-1.605970699999943],[122.22204310000006,-1.6001857],[122.22464630000002,-1.594593499999974],[122.24392980000005,-1.574056599999949],[122.25357150000002,-1.5733817],[122.26841980000006,-1.559594],[122.2746869,-1.556894299999954],[122.27873640000007,-1.556701499999974],[122.28297880000002,-1.549855899999955],[122.30399770000008,-1.532886399999938],[122.32357040000011,-1.523051899999928],[122.33475480000004,-1.5214128],[122.34111830000006,-1.522184099999947],[122.34873530000004,-1.518905899999936],[122.3591484000001,-1.517170399999941],[122.36898450000001,-1.510259799999972],[122.3713580000001,-1.506167699999935],[122.39214770000001,-1.492985699999963],[122.41068160000009,-1.465477799999974],[122.40797170000008,-1.460588399999949],[122.40887640000005,-1.457064299999956],[122.4159949000001,-1.450585799999942],[122.41523770000003,-1.446373499999936],[122.4182942000001,-1.440632599999958],[122.42982570000004,-1.429215699999929],[122.43702330000008,-1.424147699999935],[122.45736560000012,-1.411074499999927],[122.47229870000001,-1.404254699999967],[122.470974,-1.401364099999967],[122.47205670000005,-1.403686],[122.48812210000006,-1.385656399999959],[122.48973730000012,-1.381026599999927],[122.488448,-1.371766099999945],[122.49337350000008,-1.361125899999934],[122.50806540000008,-1.347563499999978],[122.52993960000003,-1.338226199999951],[122.5316352000001,-1.334327499999972],[122.5416447,-1.326206299999967],[122.53988090000007,-1.323742699999968],[122.54261330000008,-1.3255566],[122.5516546,-1.315241899999933],[122.55996820000007,-1.311994099999936],[122.56303610000009,-1.306389699999954],[122.56489450000004,-1.294205299999931],[122.5683653000001,-1.292337599999939],[122.56989980000003,-1.285758099999953],[122.56723820000002,-1.275603699999976],[122.56126620000009,-1.273003299999971],[122.55932960000007,-1.270809699999973],[122.5598781000001,-1.268124799999953],[122.56858050000005,-1.262013699999954],[122.59903280000003,-1.247682399999974],[122.6202029000001,-1.241360199999974],[122.6331037000001,-1.235369499999933],[122.63558650000004,-1.220721399999945],[122.63376830000004,-1.213064],[122.63046110000005,-1.209900799999957],[122.62897320000002,-1.2057391],[122.6293045000001,-1.201577699999973],[122.63377030000004,-1.197916199999952],[122.63674790000005,-1.192423399999939],[122.636915,-1.178940199999943],[122.63185570000007,-1.187407099999973],[122.63631470000007,-1.177153499999974],[122.63511290000008,-1.165149099999951],[122.64324880000004,-1.170558199999959],[122.661812,-1.164465599999971],[122.66471540000009,-1.159420299999965],[122.66318070000011,-1.1514429],[122.66489580000007,-1.143674],[122.66618920000008,-1.139954499999931],[122.66923710000003,-1.1377376],[122.69106220000003,-1.1344996],[122.70805430000007,-1.138392099999976],[122.71507290000011,-1.134276199999931],[122.71505230000002,-1.119376199999977],[122.71386930000006,-1.114845699999933],[122.72197240000003,-1.1019784],[122.7283814000001,-1.086420199999964],[122.73521240000002,-1.078042499999924],[122.7421716,-1.074044399999934],[122.74986230000002,-1.062066299999969],[122.76683490000005,-1.049071599999934],[122.79842630000007,-1.003472899999963],[122.79591820000007,-0.991081899999926],[122.78763870000012,-0.982102199999929],[122.78665070000011,-0.974570799999924],[122.78933110000003,-0.967791199999965],[122.7931039,-0.964461599999936],[122.79311860000007,-0.959504699999968],[122.79934760000003,-0.952773699999966],[122.79930910000007,-0.950054199999954],[122.7980500000001,-0.949659799999949],[122.7949986000001,-0.954601399999945],[122.79084980000005,-0.955547699999954],[122.79239530000007,-0.948882699999956],[122.79648450000002,-0.949011499999926],[122.8016775000001,-0.942162199999927],[122.8090896000001,-0.939191699999981],[122.80940240000007,-0.936924],[122.81958630000008,-0.936640599999976],[122.822916,-0.932248299999969],[122.83049620000008,-0.928847799999971],[122.83538440000007,-0.927714299999934],[122.83970580000005,-0.929131199999972],[122.85201730000006,-0.927027399999929],[122.8572041000001,-0.925730699999974],[122.85890360000008,-0.922855],[122.8597036000001,-0.924753299999963],[122.86539110000001,-0.922708799999953],[122.871603,-0.922609799999975],[122.8771329000001,-0.925246799999968],[122.88101350000011,-0.929934599999967],[122.8860585000001,-0.930032399999959],[122.88565160000007,-0.9271649],[122.88634950000005,-0.929934699999933],[122.88984220000009,-0.929641899999979],[122.89915610000003,-0.926614699999959],[122.90565650000008,-0.920267],[122.9286499000001,-0.917142399999932],[122.93641150000008,-0.912943199999972],[122.95212850000007,-0.9109903],[122.98201010000002,-0.900931599999979],[123.00112270000011,-0.899564399999974],[123.00074590000008,-0.898274699999945],[123.00363720000007,-0.897605899999974],[123.00562080000009,-0.8936387],[123.00746270000002,-0.894134599999973],[123.00645870000005,-0.899662099999944],[123.00762290000011,-0.901127],[123.0247951,-0.909135],[123.0377128,-0.909365899999955],[123.0413258000001,-0.908232399999974],[123.04160920000004,-0.906178],[123.0385629000001,-0.9019982],[123.0287866000001,-0.896685],[123.02793640000004,-0.894418],[123.0316203000001,-0.894630499999948],[123.02651960000003,-0.887121099999945],[123.02984920000006,-0.885066699999925],[123.0275822000001,-0.881524499999955],[123.02963670000008,-0.8806035],[123.03268290000005,-0.883508099999972],[123.03665020000005,-0.875502799999936],[123.04274270000008,-0.871819],[123.04309690000002,-0.874086],[123.0378545000001,-0.878478199999961],[123.0385629000001,-0.8869086],[123.036721,-0.890592399999946],[123.03721690000009,-0.894276299999945],[123.04149380000001,-0.897329899999932],[123.04330940000011,-0.892221799999959],[123.0426010000001,-0.898456099999976],[123.0460723000001,-0.899872899999934],[123.05273160000002,-0.899731199999962],[123.05915960000004,-0.896665],[123.06139360000009,-0.885054799999978],[123.06599390000008,-0.882320499999935],[123.07081040000003,-0.883532499999944],[123.0719051000001,-0.886617699999931],[123.07365650000008,-0.885626],[123.07420380000008,-0.882430499999941],[123.07365640000012,-0.879014599999948],[123.07081030000006,-0.877031299999942],[123.06807360000005,-0.877472099999977],[123.06577490000006,-0.880116699999974],[123.06457080000007,-0.8769212],[123.06000140000003,-0.876921299999935],[123.05998260000001,-0.8714818],[123.06278,-0.8680619],[123.06488030000003,-0.869699399999945],[123.06565440000008,-0.867736099999945],[123.06985530000009,-0.866695599999957],[123.07058640000002,-0.865980899999954],[123.06803470000011,-0.8648877],[123.06841350000002,-0.863799899999947],[123.07711830000005,-0.862677899999937],[123.079633,-0.854669499999943],[123.09043150000002,-0.848662699999977],[123.09568080000008,-0.838514199999963],[123.10023010000009,-0.835491899999965],[123.1060202000001,-0.838132399999949],[123.11359180000011,-0.845863099999974],[123.11966820000009,-0.848185499999943],[123.12844880000011,-0.85528],[123.13586140000007,-0.870359599999972],[123.15078190000008,-0.884771199999932],[123.14954120000004,-0.8877935],[123.14625260000003,-0.888459399999931],[123.14823690000003,-0.889098799999942],[123.1461078000001,-0.889042399999937],[123.1483247000001,-0.892224099999964],[123.14697680000006,-0.894216699999959],[123.14777330000004,-0.896986],[123.15297710000004,-0.893965299999934],[123.15335880000009,-0.899755399999947],[123.15211810000005,-0.900964299999941],[123.1457554000001,-0.901505199999974],[123.14371930000004,-0.895746899999949],[123.13395250000008,-0.899437299999931],[123.135925,-0.905863599999975],[123.141047,-0.910922],[123.13882,-0.922565799999973],[123.13944860000004,-0.926355899999976],[123.14524070000004,-0.9305826],[123.14813690000005,-0.937068599999975],[123.1472682000001,-0.939327799999944],[123.1409804000001,-0.944674099999929],[123.14150150000012,-0.949849],[123.14046310000003,-0.950259699999947],[123.1430696000001,-0.953247499999975],[123.14741370000002,-0.955287899999973],[123.15812860000005,-0.950258899999938],[123.16775790000008,-0.953902299999925],[123.16881240000009,-0.9524869],[123.16768560000003,-0.954266699999948],[123.17470850000007,-0.9571086],[123.18687220000004,-0.968258099999957],[123.19121630000006,-0.969496799999945],[123.19266440000001,-0.971901699999933],[123.19335290000004,-0.970989599999939],[123.20801430000006,-0.990484399999957],[123.23646840000004,-1.001559799999939],[123.2385283000001,-1.000064899999927],[123.236396,-1.0017056],[123.2433469,-1.008118199999956],[123.24573790000011,-1.008352799999955],[123.25082710000004,-1.021786499999962],[123.2494296000001,-1.022620299999971],[123.25739480000004,-1.036247599999967],[123.25918120000006,-1.035548199999937],[123.25746720000006,-1.036393299999929],[123.26514220000001,-1.042441499999939],[123.27173080000011,-1.044262799999956],[123.2796949000001,-1.0433876],[123.28845580000007,-1.048050899999964],[123.308294,-1.050964099999931],[123.31097280000006,-1.050890899999956],[123.31115260000001,-1.047204399999941],[123.31104520000008,-1.050890899999956],[123.32168800000011,-1.049723799999924],[123.33102740000004,-1.046297699999968],[123.34376910000003,-1.039300199999957],[123.34652010000002,-1.0373322],[123.34599120000007,-1.035806499999978],[123.34673740000005,-1.037405],[123.3534701000001,-1.0329588],[123.35889920000011,-1.024796099999946],[123.36519740000006,-1.019329699999957],[123.370337,-1.012624499999959],[123.3688446000001,-1.011451199999954],[123.37055420000002,-1.012770199999977],[123.37381180000011,-1.009126],[123.37958560000004,-0.9862381],[123.37733150000008,-0.976046699999927],[123.38144760000012,-0.966769099999965],[123.38651030000005,-0.961489799999924],[123.38837320000005,-0.9571648],[123.39582140000005,-0.954878099999974],[123.39742210000009,-0.952950699999974],[123.39377560000003,-0.9463763],[123.38526980000006,-0.936453599999936],[123.38357750000011,-0.931336199999976],[123.38536780000004,-0.925411899999972],[123.3843657000001,-0.9209139],[123.38618190000011,-0.911848499999962],[123.38893170000006,-0.906733599999939],[123.3928261000001,-0.90723],[123.39455830000009,-0.905682899999931],[123.39168180000001,-0.897478],[123.3916104000001,-0.890205799999933],[123.394287,-0.886473499999965],[123.39696480000009,-0.878311099999962],[123.399064,-0.875833099999966],[123.40497970000001,-0.874486699999977],[123.40463780000005,-0.868326299999978],[123.40661690000002,-0.861425399999973],[123.41057290000003,-0.8554266],[123.418753,-0.849231299999929],[123.4235311000001,-0.849012199999947],[123.428743,-0.8441289],[123.4344622000001,-0.843180899999936],[123.43553950000012,-0.837717899999973],[123.44394540000008,-0.8380057],[123.44083190000003,-0.833123399999977],[123.44401670000002,-0.8281675],[123.43301170000007,-0.820006599999942],[123.43246050000005,-0.821116699999948],[123.43173590000004,-0.818492],[123.43156330000011,-0.814759799999933],[123.43359010000006,-0.812500399999976],[123.43409550000001,-0.799601399999972],[123.44126170000004,-0.791147],[123.44184020000012,-0.784879699999976],[123.44654430000003,-0.770668499999942],[123.4515947000001,-0.767827499999953],[123.45711380000012,-0.770157199999971],[123.45754810000005,-0.769064],[123.45197310000003,-0.762943099999973],[123.4521899,-0.758862],[123.44610810000006,-0.7527411],[123.4458906000001,-0.749753299999952],[123.44391530000007,-0.749630399999944],[123.44603540000003,-0.749680399999932],[123.44473190000008,-0.745089399999927],[123.4327148000001,-0.747787],[123.427341,-0.746862199999953],[123.4265607000001,-0.7414474],[123.43018,-0.737584599999934],[123.43285850000007,-0.737074199999938],[123.43579910000005,-0.733129599999927],[123.43590740000002,-0.729467499999942],[123.43820370000003,-0.728050699999926],[123.43737280000005,-0.723783099999935],[123.43916420000005,-0.7203942],[123.43818660000011,-0.717224199999976],[123.44415860000004,-0.712413899999945],[123.44394120000004,-0.710500899999943],[123.44122620000007,-0.7076044],[123.43872870000007,-0.708643099999961],[123.43525370000009,-0.707659599999943],[123.431779,-0.709572899999955],[123.42868480000004,-0.715476099999933],[123.4260786000001,-0.715749599999924],[123.42282120000004,-0.7188654],[123.41757890000008,-0.714069199999926],[123.42054040000005,-0.714165099999946],[123.41896540000005,-0.709082199999955],[123.4154903000001,-0.707388099999946],[123.41320960000007,-0.703781],[123.4042505000001,-0.699026599999968],[123.40169820000006,-0.693451799999934],[123.39609210000003,-0.696598799999947],[123.40153530000009,-0.693397199999936],[123.3962686000001,-0.692468499999961],[123.39453060000005,-0.686073799999974],[123.392793,-0.684652799999981],[123.39262070000007,-0.682067299999972],[123.3907296000001,-0.681810799999937],[123.39040360000001,-0.679529899999977],[123.38720360000002,-0.681062099999963],[123.39342150000004,-0.676171],[123.39238360000002,-0.6691338],[123.39071490000003,-0.669451699999968],[123.39030920000005,-0.672448299999928],[123.38710720000006,-0.67431],[123.38693670000009,-0.672532099999955],[123.38476180000009,-0.672948099999928],[123.38422050000008,-0.671858499999928],[123.38624070000003,-0.671547499999974],[123.38575380000009,-0.669406699999968],[123.38074760000006,-0.670224299999973],[123.38088270000003,-0.667545599999926],[123.3842992000001,-0.668635],[123.38517750000005,-0.665152],[123.38170810000008,-0.664060899999924],[123.38149120000003,-0.662751299999968],[123.40590490000011,-0.6553647],[123.41119660000004,-0.655218299999945],[123.40751010000008,-0.6505256],[123.4004629000001,-0.648561699999959],[123.39449950000005,-0.641795499999944],[123.38853690000008,-0.645506699999942],[123.3822487000001,-0.644634],[123.37932130000002,-0.642124099999933],[123.37964620000002,-0.637321899999961],[123.37585180000008,-0.639395799999932],[123.37259910000012,-0.636231],[123.3539512000001,-0.631102799999951],[123.34939740000004,-0.624882099999979],[123.32500310000012,-0.614842799999963],[123.31784740000012,-0.610150199999964],[123.31179530000009,-0.611386399999958],[123.30861010000001,-0.610264299999926],[123.26847650000002,-0.582370899999944],[123.2628228000001,-0.580287],[123.26268070000003,-0.588391199999933],[123.26274320000005,-0.579966399999932],[123.25876180000012,-0.579084799999976],[123.25271020000002,-0.581970799999965],[123.24474750000002,-0.583013199999925],[123.2346457000001,-0.5823],[123.2201424000001,-0.578605499999981],[123.20286290000001,-0.569708299999945],[123.19458170000007,-0.569388],[123.1788954000001,-0.580610899999954],[123.16997720000006,-0.583737499999927],[123.1703252000001,-0.590660799999966],[123.16989750000005,-0.583416799999952],[123.1636069000001,-0.583737599999949],[123.14425710000012,-0.574840399999971],[123.13740920000009,-0.575962799999957],[123.12594270000011,-0.572836799999948],[123.125337,-0.5807659],[123.12578340000005,-0.572917],[123.11272440000005,-0.569871099999943],[123.09926740000003,-0.574360399999932],[123.09759580000002,-0.576749799999959],[123.089712,-0.576925699999947],[123.08668620000003,-0.575402699999927],[123.08915460000003,-0.572757299999978],[123.08724350000011,-0.571394599999962],[123.08326210000007,-0.5701121],[123.07784740000011,-0.5713948],[123.06399210000006,-0.565382899999975],[123.0569848,-0.564340899999934],[123.05005720000008,-0.568589499999973],[123.04981840000005,-0.574200699999949],[123.05324240000004,-0.578288899999961],[123.04870370000003,-0.587186699999961],[123.05158520000009,-0.590573899999924],[123.04854440000008,-0.587587499999927],[123.04249270000003,-0.594802],[123.03795390000005,-0.596485499999972],[123.0355651000001,-0.595042599999942],[123.033654,-0.596325199999967],[123.03110590000006,-0.598569699999928],[123.0311726000001,-0.605211499999939],[123.0309466000001,-0.598649799999976],[123.02887630000009,-0.598810199999946],[123.02585040000008,-0.595844199999931],[123.02274490000002,-0.5984094],[123.01239320000002,-0.601134899999977],[123.01247290000003,-0.604982599999971],[123.01056180000012,-0.605944499999964],[123.0103229,-0.608108899999934],[123.00841180000009,-0.608108899999934],[123.00632380000002,-0.611963],[122.99861750000002,-0.617086899999947],[122.99519350000003,-0.617888499999935],[122.99383980000005,-0.616926499999977],[122.98938060000012,-0.6232592],[122.9868325000001,-0.620840199999975],[122.9863547000001,-0.6163654],[122.98197510000011,-0.620213099999944],[122.98165660000006,-0.618128899999931],[122.9681197000001,-0.618850299999963],[122.96241510000004,-0.626242799999943],[122.96190860000002,-0.632798199999968],[122.95644670000001,-0.633598099999972],[122.95733970000003,-0.644064899999933],[122.95274470000004,-0.644206299999951],[122.95174210000005,-0.637827399999935],[122.9465401000001,-0.637607699999933],[122.94781420000004,-0.633439399999929],[122.94518650000009,-0.630713899999932],[122.94590320000009,-0.626545499999963],[122.94269330000009,-0.625567399999966],[122.94004910000001,-0.627159399999925],[122.94255890000011,-0.623098599999935],[122.9494069000001,-0.621094699999958],[122.9541051000001,-0.617888299999947],[122.94048850000001,-0.621174699999926],[122.92806650000011,-0.618288799999959],[122.9243239000001,-0.620453099999963],[122.9233683000001,-0.625904],[122.9203424000001,-0.626384899999948],[122.90497410000012,-0.625583],[122.89446310000005,-0.622937499999978],[122.89677230000007,-0.626865399999929],[122.8939851,-0.634079799999938],[122.88156290000006,-0.638488399999972],[122.8790944000001,-0.638488299999949],[122.87459460000002,-0.635071299999936],[122.87360030000002,-0.629189599999961],[122.86754850000011,-0.628307699999937],[122.86452270000007,-0.6254218],[122.86515980000001,-0.621814599999936],[122.8632487000001,-0.621654199999966],[122.86133760000007,-0.622455799999955],[122.85965050000004,-0.630153399999926],[122.85990420000007,-0.626143099999979],[122.85202090000007,-0.628788199999974],[122.8520208000001,-0.631754099999966],[122.84732250000002,-0.639529599999946],[122.84198730000003,-0.641533399999958],[122.8341233000001,-0.640754899999934],[122.8330691000001,-0.6362425],[122.82717660000003,-0.634238299999936],[122.818497,-0.638566699999956],[122.81738220000011,-0.637845199999958],[122.81809890000011,-0.635280099999932],[122.8206894000001,-0.634316599999977],[122.82287680000002,-0.629829399999949],[122.81586950000008,-0.630791099999954],[122.81096780000007,-0.633680499999969],[122.80734910000001,-0.634077299999944],[122.8018545000001,-0.640970899999957],[122.8026853,-0.647171399999934],[122.80050040000003,-0.651632099999972],[122.79659850000007,-0.654758199999947],[122.79301490000012,-0.660770099999979],[122.78600740000002,-0.664457099999936],[122.7813887000001,-0.669507],[122.76896670000008,-0.669105599999966],[122.7626762000001,-0.664295699999968],[122.75742080000009,-0.663493899999935],[122.74316720000002,-0.664294799999936],[122.73934520000012,-0.661328599999933],[122.73265630000003,-0.663011599999948],[122.72580830000004,-0.660847],[122.72509160000004,-0.662450099999944],[122.72447530000011,-0.664556299999958],[122.72716170000001,-0.666297899999961],[122.73193890000005,-0.676077599999928],[122.73751290000007,-0.675677199999939],[122.7476256000001,-0.678884099999948],[122.74969570000007,-0.683693799999958],[122.764347,-0.692752599999949],[122.76657650000004,-0.6952377],[122.76608720000002,-0.697806599999979],[122.77820210000004,-0.701009799999952],[122.781626,-0.704857599999968],[122.78282050000007,-0.704937799999925],[122.78385580000008,-0.701410799999962],[122.78656310000008,-0.703575299999954],[122.804161,-0.708305499999938],[122.81530940000005,-0.703496299999927],[122.81929090000006,-0.703416299999958],[122.82820930000003,-0.705420699999934],[122.83298700000012,-0.709589199999925],[122.84843520000004,-0.709188899999958],[122.849948,-0.712956499999962],[122.86436110000011,-0.712315699999976],[122.86547590000009,-0.710552199999938],[122.86937780000005,-0.711113399999931],[122.8716869000001,-0.716243799999972],[122.8800480000001,-0.717205899999954],[122.887135,-0.722015699999929],[122.8865707000001,-0.724287599999968],[122.88899170000002,-0.731717499999945],[122.89374390000012,-0.738609099999962],[122.89509770000006,-0.734681299999977],[122.89589400000011,-0.737887699999931],[122.8974866000001,-0.737887699999931],[122.89812370000004,-0.736204399999963],[122.90130890000012,-0.736284599999976],[122.90202560000012,-0.734120299999972],[122.90552940000009,-0.73396],[122.907956,-0.738719499999945],[122.9361871000001,-0.736365399999954],[122.93873520000011,-0.737167099999965],[122.94239820000007,-0.741495799999939],[122.94462790000011,-0.741014799999959],[122.94749460000003,-0.736044899999968],[122.95028170000012,-0.735564],[122.95203350000008,-0.740774399999964],[122.957528,-0.740854699999943],[122.96222620000003,-0.743099199999961],[122.96560990000012,-0.751401399999963],[122.96158930000001,-0.751127299999951],[122.96122380000008,-0.754234099999962],[122.94542400000012,-0.7532794],[122.94207950000009,-0.751115],[122.93642570000009,-0.751836399999945],[122.93156820000002,-0.754962599999942],[122.92915040000003,-0.762275299999942],[122.9247643000001,-0.758985699999926],[122.92293210000003,-0.761222199999963],[122.923485,-0.763371799999959],[122.91763690000005,-0.766113099999927],[122.90402170000004,-0.7686717],[122.89013240000008,-0.768488899999966],[122.87871020000011,-0.771138899999926],[122.87715680000008,-0.774337099999968],[122.87057770000001,-0.775616299999967],[122.86767810000003,-0.774083399999938],[122.86317610000003,-0.776073199999928],[122.8569625,-0.767666499999962],[122.85093160000008,-0.76657],[122.845446,-0.770339799999931],[122.84416970000007,-0.7697682],[122.8377733000001,-0.776895599999932],[122.83487280000008,-0.776102499999979],[122.8284258000001,-0.779766399999971],[122.82580510000003,-0.779087799999957],[122.82169090000002,-0.780916199999979],[122.81940650000001,-0.778814499999953],[122.81502030000001,-0.780459299999961],[122.8121877000001,-0.778814499999953],[122.8064309,-0.778814499999953],[122.80341550000003,-0.781007599999953],[122.80122240000003,-0.7807335],[122.79784140000004,-0.776804199999958],[122.790714,-0.775981799999954],[122.78273650000006,-0.780931399999929],[122.77572820000012,-0.782926499999974],[122.76814390000004,-0.789779799999963],[122.75054350000005,-0.801756299999965],[122.742741,-0.803851899999927],[122.72802930000012,-0.812715499999968],[122.720445,-0.810613799999942],[122.70152990000008,-0.808969],[122.68563030000007,-0.810339599999963],[122.68480790000001,-0.806501799999978],[122.68170110000005,-0.805588],[122.67996490000007,-0.8030295],[122.66653250000002,-0.8001054],[122.64981050000006,-0.789962499999945],[122.65045010000006,-0.788957399999958],[122.65556720000006,-0.789231499999971],[122.64021590000004,-0.777169699999945],[122.63427640000009,-0.7697682],[122.6330885000001,-0.769037199999957],[122.63162640000007,-0.772144],[122.63071270000012,-0.769402699999944],[122.62641790000009,-0.768945799999926],[122.62788000000012,-0.766935499999931],[122.63582980000001,-0.768306199999927],[122.63729180000007,-0.766021699999953],[122.63135230000012,-0.764925199999936],[122.63062130000003,-0.763554599999964],[122.61974740000005,-0.765199299999949],[122.61499580000009,-0.761452899999938],[122.59927890000006,-0.773240499999929],[122.58950160000006,-0.773971499999959],[122.58557230000008,-0.780916199999979],[122.58049580000011,-0.783738799999981],[122.56620040000007,-0.782561],[122.55998670000008,-0.779636899999957],[122.55605750000007,-0.781099],[122.55194560000007,-0.779819699999962],[122.54691980000007,-0.782195499999943],[122.54024930000003,-0.780002399999944],[122.53430980000007,-0.782469599999956],[122.53156850000005,-0.780916199999979],[122.5290099,-0.781738599999926],[122.52480650000007,-0.786033299999929],[122.52243070000009,-0.784297199999969],[122.521517,-0.777535299999954],[122.50972930000012,-0.766935499999931],[122.5079932000001,-0.7686717],[122.5001347000001,-0.770590599999935],[122.49008320000007,-0.769494099999974],[122.48533160000011,-0.766661399999975],[122.48268170000006,-0.7674838],[122.46915790000003,-0.7598995],[122.46577690000004,-0.761727],[122.45892360000005,-0.7587116],[122.45435480000003,-0.759625299999925],[122.44713600000011,-0.763645899999972],[122.43854650000003,-0.765473499999928],[122.42867780000006,-0.776164599999959],[122.41405750000001,-0.783292],[122.4062904000001,-0.781738599999926],[122.40163020000011,-0.783657499999947],[122.38801500000011,-0.781190299999935],[122.383172,-0.784479899999951],[122.36983090000001,-0.778723199999945],[122.36398280000003,-0.778631799999971],[122.36032770000008,-0.775981799999954],[122.35034080000003,-0.782190699999944],[122.34397120000006,-0.783657499999947],[122.33876270000007,-0.781281699999965],[122.33529040000008,-0.776987],[122.3306301,-0.777078399999937],[122.3222234000001,-0.783748899999978],[122.31628390000003,-0.786216099999933],[122.31043580000005,-0.792612499999962],[122.30266870000003,-0.793891799999926],[122.30193770000005,-0.791241799999966],[122.29873950000001,-0.788226399999928],[122.29389650000007,-0.787769499999968],[122.29060690000006,-0.790510799999936],[122.2868605000001,-0.789962499999945],[122.28338810000002,-0.786216099999933],[122.27287980000006,-0.788226399999928],[122.26748850000001,-0.785667799999942],[122.26399920000006,-0.785700599999927],[122.25414750000004,-0.789688399999932],[122.24153740000008,-0.786490199999946],[122.23495830000002,-0.787038499999937],[122.2277395000001,-0.785119599999973],[122.2220741000001,-0.787404],[122.22024650000003,-0.789779799999963],[122.21174850000011,-0.792155599999944],[122.19968670000003,-0.787586699999963],[122.1999608000001,-0.7906936],[122.19493510000007,-0.794805499999939],[122.19493510000007,-0.7994658],[122.1867241000001,-0.811896499999932],[122.17526210000005,-0.807810699999948],[122.17210960000011,-0.8085382],[122.16459190000012,-0.813873299999955],[122.15852930000005,-0.814115799999968],[122.1548917,-0.829878599999972],[122.15707430000009,-0.832788699999981],[122.16313690000004,-0.834971199999927],[122.16571910000005,-0.8379872],[122.16158240000004,-0.846616399999959],[122.1522619000001,-0.852007599999979],[122.14659660000007,-0.859591899999941],[122.14760170000011,-0.870374399999946],[122.14449490000004,-0.874669199999971],[122.14778450000006,-0.886091299999975],[122.14805860000001,-0.892213599999934],[122.14540870000008,-0.904640899999947],[122.135083,-0.920723199999941],[122.12932630000012,-0.924835199999961],[122.12813840000001,-0.928490299999964],[122.11918340000011,-0.939364199999943],[122.1168990000001,-0.939912399999969],[122.10364930000003,-0.951426],[122.09286680000002,-0.954715499999963],[122.090491,-0.951426],[122.08765830000004,-0.951426],[122.07641890000002,-0.9438417],[122.0726724000001,-0.943476099999941],[122.06865190000008,-0.945486399999936],[122.0639916,-0.945669199999941],[122.05814350000003,-0.9404607],[122.0514730000001,-0.943384799999933],[122.04242660000011,-0.93909],[122.03740090000008,-0.9411003],[122.02744080000002,-0.935617699999966],[122.02543050000008,-0.932054],[122.0236943000001,-0.9316885],[122.0191254,-0.931597099999976],[122.01282040000001,-0.9363487],[122.00523610000005,-0.932967799999972],[121.9946364000001,-0.943202],[121.98860550000006,-0.942471],[121.98604690000002,-0.946491599999945],[121.98734550000006,-0.950615099999936],[121.98604690000002,-0.951151799999934],[121.98367110000004,-0.958096499999954],[121.97983330000011,-0.959924],[121.97700060000011,-0.9660463],[121.97288860000003,-0.967508299999963],[121.9701473,-0.970615199999941],[121.96292850000009,-0.972351299999957],[121.95653210000012,-0.982402799999932],[121.94842670000003,-0.984973899999943],[121.9423686,-0.988707799999929],[121.936155,-0.986423399999978],[121.92875340000012,-0.987154399999952],[121.9231794000001,-0.985601],[121.91020390000006,-0.988982],[121.90408160000004,-0.983773499999927],[121.90051790000007,-0.978656299999955],[121.894487,-0.974635699999965],[121.88708550000001,-0.974453],[121.884801,-0.972899599999948],[121.88178560000006,-0.974453],[121.87858740000001,-0.973904699999935],[121.8701807000001,-0.969153099999971],[121.86625150000009,-0.96961],[121.86369290000005,-0.966777299999933],[121.85626760000002,-0.968786],[121.85188380000011,-0.983586799999955],[121.85265570000001,-0.993010199999958],[121.85503710000012,-0.993861899999956],[121.85608910000008,-0.998857599999951],[121.85391210000012,-1.002636499999937],[121.85448240000005,-1.0121006],[121.85553350000009,-1.015390299999979],[121.85957140000005,-1.019653],[121.85860760000003,-1.027858799999933],[121.86252370000011,-1.030740499999979],[121.86353550000001,-1.035817399999928],[121.86793620000003,-1.039389299999925],[121.86672950000002,-1.0460111],[121.86867140000004,-1.054255699999942],[121.8721021,-1.055147299999931],[121.87128550000011,-1.062522699999931],[121.875009,-1.0662661],[121.87761750000004,-1.072257599999944],[121.88543190000007,-1.071878199999958],[121.88841350000007,-1.079367599999955],[121.890275,-1.080864599999927],[121.8906492000001,-1.084235499999977],[121.8980954000001,-1.090223799999933],[121.90888570000004,-1.088344099999972],[121.9142663,-1.092622799999958],[121.91953480000006,-1.094224],[121.92092190000005,-1.095618399999978],[121.9193289000001,-1.097433199999955],[121.92355750000002,-1.098546699999929],[121.9259171000001,-1.103358799999967],[121.92527370000005,-1.111556],[121.92731120000008,-1.115705899999966],[121.9312642000001,-1.119261199999926],[121.93168230000003,-1.122749099999965],[121.93535640000005,-1.123862799999927],[121.93743930000005,-1.129372599999954],[121.94007280000005,-1.129022099999929],[121.94129160000011,-1.126861899999938],[121.94771490000005,-1.127473299999963],[121.94977790000007,-1.125316899999973],[121.95015650000005,-1.119621399999971],[121.95221980000008,-1.117926899999929],[121.95107160000009,-1.116003599999942],[121.94893120000006,-1.116774599999928],[121.94923490000008,-1.113542],[121.95588510000005,-1.110536],[121.95634650000011,-1.114460799999961],[121.96009290000006,-1.114150399999971],[121.96093610000003,-1.117382299999974],[121.96361360000003,-1.119304499999942],[121.9667478,-1.118225],[121.966596,-1.119995199999948],[121.96869870000012,-1.120638399999962],[121.97011540000005,-1.123148199999946],[121.9727143,-1.122069],[121.974856,-1.123222],[121.97561990000008,-1.122144],[121.98188980000009,-1.122216699999967],[121.98647860000005,-1.123906699999964],[121.98831310000003,-1.123058899999933],[121.99045690000003,-1.127367199999981],[121.99521020000009,-1.126025699999957],[121.99688130000004,-1.129979399999968],[122.00047360000008,-1.127899],[122.00315000000012,-1.128358899999967],[122.0030766000001,-1.132899599999973],[122.00605760000008,-1.1315123],[122.007282,-1.1329737],[122.00621500000011,-1.142276],[122.01903520000008,-1.140767799999935],[122.02598680000006,-1.131035499999939],[122.03097160000004,-1.119958399999973],[122.04314910000005,-1.140030499999966],[122.05453520000003,-1.1762172],[122.08220480000011,-1.210454699999957],[122.07880870000008,-1.210546699999952],[122.07841670000005,-1.211997699999927],[122.08130410000001,-1.2149573],[122.081106,-1.218392],[122.08189450000009,-1.219248499999935],[122.08425210000007,-1.217927799999927],[122.08451570000011,-1.220037699999978],[122.0880562000001,-1.223529799999937],[122.09273040000005,-1.225981199999978],[122.09632110000007,-1.236888599999929],[122.09556740000005,-1.239185899999939],[122.10079280000002,-1.249034499999937],[122.0971684000001,-1.266797899999972],[122.08908210000004,-1.282343],[122.08479420000003,-1.300177599999927],[122.04809770000008,-1.332566899999961],[122.04534760000001,-1.336284199999966],[122.04183880000005,-1.346289],[122.03740370000003,-1.351259],[122.03363820000004,-1.350216899999964],[122.02713950000009,-1.340423499999929],[122.02317870000002,-1.338662899999974],[122.01526030000002,-1.338996099999974],[122.01189780000004,-1.336203799999964],[122.00741660000006,-1.338464899999963],[122.00824850000004,-1.342624],[122.0232109000001,-1.3493945],[122.0288418,-1.353821299999936],[122.04165230000001,-1.392164],[122.05412940000008,-1.411645299999975],[122.05326830000001,-1.423068199999932],[122.0362014000001,-1.425746299999958],[122.04207150000002,-1.435388399999965],[122.04335540000011,-1.440592299999935],[122.0235848000001,-1.442172599999935],[122.01905020000004,-1.444244599999934],[122.01272660000006,-1.453091],[122.01478150000003,-1.466642099999945],[122.02686840000001,-1.474113899999963],[122.04005160000008,-1.488361399999974],[122.04266,-1.492925399999933],[122.0324491,-1.521753099999955],[122.02971190000005,-1.567308],[122.03176950000011,-1.5744989],[122.03973250000001,-1.587361599999952],[122.06365910000011,-1.6160017]]],[[[122.65052530000003,-0.508472199999972],[122.65152050000006,-0.505610299999944],[122.64555060000009,-0.502748099999963],[122.64398690000007,-0.5038928],[122.64740240000003,-0.5084705],[122.65052530000003,-0.508472199999972]]],[[[122.60478960000012,-0.482289599999945],[122.60118050000005,-0.4806125],[122.58844010000007,-0.484517],[122.5847549,-0.484148499999947],[122.56964610000011,-0.4930129],[122.56310760000008,-0.490723],[122.55453670000009,-0.492255799999953],[122.53041460000009,-0.492294799999968],[122.52400000000011,-0.499053299999957],[122.52430170000002,-0.503312699999924],[122.52837220000004,-0.5077334],[122.53084,-0.507892199999958],[122.53795360000004,-0.502942699999949],[122.55011460000003,-0.509576],[122.55784640000002,-0.518912499999942],[122.56410070000004,-0.520343899999943],[122.57038290000003,-0.513998199999946],[122.58033280000006,-0.510681499999976],[122.5807013000001,-0.508101899999929],[122.5847549,-0.504416799999944],[122.58844010000007,-0.503679799999929],[122.59175670000002,-0.505522299999939],[122.60207510000009,-0.505522299999939],[122.60318070000005,-0.503679799999929],[122.61641090000012,-0.502746399999978],[122.61681570000007,-0.498520599999949],[122.612147,-0.494589599999927],[122.60478960000012,-0.482289599999945]]]]},"properties":{"shapeName":"Banggai","shapeISO":"","shapeID":"22746128B21322687116589","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[123.32164380000006,-1.2184063],[123.32600610000009,-1.201501599999972],[123.32567520000009,-1.190530299999978],[123.31970380000007,-1.178294199999925],[123.31608860000006,-1.1749174],[123.31229340000004,-1.174147799999957],[123.3040277,-1.177125799999942],[123.28859010000008,-1.189058499999931],[123.28195640000001,-1.192519699999934],[123.2791863000001,-1.195769799999937],[123.27893,-1.205643699999939],[123.27477080000006,-1.2156437],[123.27734110000006,-1.217273699999964],[123.27679100000012,-1.220117199999947],[123.28029860000004,-1.221691899999939],[123.28098740000007,-1.228732099999945],[123.28559650000011,-1.237977899999976],[123.29176070000005,-1.257679399999972],[123.2945820000001,-1.269514199999946],[123.29423660000009,-1.274947299999951],[123.29944430000012,-1.283741899999939],[123.30526870000006,-1.280396799999949],[123.31096590000004,-1.273221699999965],[123.31603370000005,-1.250029799999936],[123.3153248000001,-1.235273599999971],[123.32164380000006,-1.2184063]]],[[[123.17118830000004,-1.149037799999974],[123.16573750000009,-1.150300799999968],[123.163577,-1.152199],[123.16076570000007,-1.186594299999967],[123.15870630000006,-1.190691],[123.1509516000001,-1.198026699999957],[123.14618120000011,-1.205878199999972],[123.14861470000005,-1.206341399999928],[123.148744,-1.2090965],[123.1448309000001,-1.211214699999971],[123.1426934000001,-1.208600399999966],[123.13893650000011,-1.207919199999935],[123.1385246000001,-1.2035155],[123.13545550000003,-1.202853799999957],[123.13715160000004,-1.2027028],[123.13696920000007,-1.199829099999931],[123.13323590000005,-1.194532399999957],[123.13327470000002,-1.192394599999943],[123.12049,-1.179158899999948],[123.10900450000008,-1.162819099999979],[123.10531120000007,-1.160695899999951],[123.09809690000009,-1.162454299999979],[123.08524510000007,-1.1703327],[123.07900360000008,-1.171266699999933],[123.07430920000002,-1.170231099999967],[123.06026950000012,-1.175533899999948],[123.05938790000005,-1.176796199999956],[123.06322340000008,-1.175927099999967],[123.058303,-1.179391199999941],[123.05647490000001,-1.1768255],[123.05743830000006,-1.176185199999964],[123.05476050000004,-1.1757174],[123.04592120000007,-1.178686],[123.0329326000001,-1.177820699999927],[123.01746880000007,-1.1900731],[123.00601670000003,-1.192286199999955],[123.00440540000011,-1.194321799999955],[123.00899590000006,-1.192238199999963],[123.00816010000005,-1.1938947],[123.00621850000005,-1.193881799999929],[123.0069128,-1.1948523],[123.00129110000012,-1.197487699999954],[122.999428,-1.197028],[123.00375640000004,-1.194138299999963],[123.00227740000003,-1.193669399999976],[122.98478620000003,-1.203936499999941],[122.98091130000012,-1.202621299999976],[122.97776650000003,-1.203436899999929],[122.97535290000008,-1.207070699999974],[122.97684330000004,-1.211456],[122.9760774,-1.212355299999956],[122.9743413000001,-1.210877799999935],[122.97181520000004,-1.216202899999928],[122.97041680000007,-1.214287899999931],[122.96709270000008,-1.215187699999944],[122.96493780000003,-1.209788899999978],[122.9615348000001,-1.208772599999975],[122.96261230000005,-1.208357299999932],[122.96167240000011,-1.206327],[122.95463,-1.194702899999925],[122.94588610000005,-1.185461199999963],[122.93709700000011,-1.182389199999932],[122.926999,-1.184073099999978],[122.92006460000005,-1.181323199999952],[122.91212020000012,-1.180307399999947],[122.90516230000003,-1.182504],[122.89935760000003,-1.190053299999931],[122.89879320000011,-1.198818599999925],[122.89136850000011,-1.208045],[122.88484810000011,-1.211513199999956],[122.88214210000001,-1.215095],[122.8821885000001,-1.227686],[122.87627690000011,-1.234871099999964],[122.87482870000008,-1.240512799999976],[122.87171920000003,-1.241181099999949],[122.87249120000001,-1.2451801],[122.87102550000009,-1.249817],[122.86255720000008,-1.258717599999954],[122.85728970000002,-1.259758399999953],[122.8461086000001,-1.268867399999976],[122.84079430000008,-1.272271599999954],[122.83626560000005,-1.273229299999969],[122.830613,-1.278397899999959],[122.83051640000008,-1.280340699999954],[122.8241911,-1.288458899999966],[122.82475110000007,-1.294996799999979],[122.82331920000001,-1.295903399999929],[122.82045060000007,-1.3041721],[122.8156838000001,-1.307770499999947],[122.81461880000006,-1.311402],[122.81349090000003,-1.325294699999972],[122.81685520000008,-1.330078599999979],[122.81669410000006,-1.333478499999956],[122.81266640000001,-1.336965199999952],[122.810766,-1.341794199999924],[122.80425850000006,-1.347471599999949],[122.80293910000012,-1.351114199999927],[122.80385410000008,-1.357709299999954],[122.79997520000006,-1.363286599999981],[122.7981516000001,-1.369646799999941],[122.79607610000005,-1.371136199999967],[122.79729670000006,-1.377521799999954],[122.79354340000009,-1.385353499999951],[122.79351280000003,-1.402224399999966],[122.79103210000005,-1.408183599999973],[122.7903315000001,-1.418123199999968],[122.79129920000003,-1.423915099999931],[122.79411890000006,-1.426740499999937],[122.79437020000012,-1.432501],[122.79284,-1.436009699999943],[122.7933058000001,-1.439636399999927],[122.7880133000001,-1.444876799999975],[122.79134770000007,-1.452337499999942],[122.78896280000004,-1.4552422],[122.78664980000008,-1.454809],[122.786413,-1.457813899999962],[122.78922790000001,-1.459023099999968],[122.78860010000005,-1.461585099999979],[122.78675320000002,-1.461891699999967],[122.78601780000008,-1.463795699999935],[122.79005230000007,-1.462442799999963],[122.79109190000008,-1.465402],[122.79005180000001,-1.467440799999963],[122.793876,-1.467828699999927],[122.7935887000001,-1.472032699999943],[122.79026990000011,-1.474076599999933],[122.78958820000003,-1.477901699999961],[122.79201020000005,-1.484551099999976],[122.79500430000007,-1.488268299999959],[122.7977476000001,-1.488232499999924],[122.79838130000007,-1.491704099999936],[122.80087360000005,-1.491848599999969],[122.80189590000009,-1.489232499999957],[122.80420890000005,-1.489503399999933],[122.80472860000009,-1.487602099999947],[122.80268350000006,-1.485751599999958],[122.80187250000006,-1.4882453],[122.80038020000006,-1.485074599999962],[122.80717550000008,-1.481329],[122.8085115,-1.481607199999928],[122.80676990000006,-1.483748599999956],[122.80985220000002,-1.485318],[122.81329830000004,-1.483482699999968],[122.81490150000002,-1.487399099999948],[122.81277310000007,-1.488279699999964],[122.81351010000003,-1.489169699999934],[122.81729140000004,-1.488762699999938],[122.81780650000007,-1.486569699999961],[122.8162311000001,-1.484288899999967],[122.81390930000009,-1.484205299999928],[122.81479390000004,-1.482694299999935],[122.81749530000002,-1.483854099999974],[122.82054510000012,-1.482343199999946],[122.81989090000002,-1.483622499999967],[122.82268350000004,-1.492055499999935],[122.82630040000004,-1.493137799999943],[122.82509420000008,-1.498759399999926],[122.82623190000004,-1.500229],[122.82456780000007,-1.498827699999936],[122.82208830000002,-1.499921099999938],[122.82030530000009,-1.498212199999955],[122.818607,-1.499579099999949],[122.82404620000011,-1.504918],[122.82757010000012,-1.505833199999927],[122.82746170000007,-1.508350599999972],[122.83024770000009,-1.507616],[122.83022050000011,-1.509806899999944],[122.82681250000007,-1.509602499999971],[122.8278130000001,-1.513303899999926],[122.83046630000001,-1.516097399999978],[122.83250840000005,-1.5162064],[122.8316158,-1.516941199999962],[122.83788110000012,-1.524445699999944],[122.83615040000007,-1.519832599999972],[122.83771920000004,-1.519519699999933],[122.83708370000011,-1.5126556],[122.83886910000001,-1.510682599999939],[122.837868,-1.514492699999948],[122.83930150000003,-1.514805799999976],[122.83832770000004,-1.515567799999928],[122.83907180000006,-1.519887799999935],[122.84059990000003,-1.52148],[122.83889580000005,-1.523167199999932],[122.8397883,-1.5245961],[122.84119490000012,-1.522636699999964],[122.841844,-1.523385099999928],[122.841019,-1.525868599999967],[122.8394095000001,-1.526426399999934],[122.84362880000003,-1.529556499999956],[122.8409646,-1.529678699999977],[122.83896320000008,-1.5266577],[122.83711040000003,-1.527501199999961],[122.83851670000001,-1.530535799999939],[122.84356650000007,-1.533343099999968],[122.84566540000003,-1.537990099999945],[122.84603070000003,-1.5354455],[122.84627340000009,-1.540595099999962],[122.84712530000002,-1.542622699999924],[122.8494515000001,-1.542650099999946],[122.84839650000004,-1.5439019],[122.8524016,-1.550387199999932],[122.85420010000007,-1.558931499999971],[122.84954590000007,-1.567501199999924],[122.84904740000002,-1.578012299999955],[122.86278330000005,-1.586709299999939],[122.86865770000009,-1.595661299999961],[122.88241340000002,-1.601121499999977],[122.90467580000006,-1.599993799999936],[122.90813480000008,-1.598884],[122.90970550000009,-1.596626599999979],[122.91149450000012,-1.597225599999945],[122.92441930000007,-1.585197599999958],[122.92395190000002,-1.583749],[122.92277390000004,-1.584915299999977],[122.92174570000009,-1.581773599999963],[122.91864190000001,-1.583128],[122.92025180000007,-1.57953],[122.9225087000001,-1.579811799999959],[122.92262160000007,-1.578062399999965],[122.92622870000002,-1.582483099999934],[122.92740690000005,-1.582257399999946],[122.9264538000001,-1.5807525],[122.92752410000003,-1.574291799999969],[122.93117710000001,-1.566231099999925],[122.93392630000005,-1.565177799999958],[122.9339457000001,-1.563541199999975],[122.9319081000001,-1.562130299999978],[122.9349744000001,-1.562864],[122.93822870000008,-1.561189899999931],[122.93722,-1.558612699999969],[122.93911060000005,-1.557029799999953],[122.94016820000002,-1.552033],[122.9417625000001,-1.552403699999957],[122.94296520000012,-1.549064899999962],[122.94463830000007,-1.549717699999974],[122.94638250000003,-1.5447662],[122.94972210000003,-1.54299],[122.94946020000009,-1.545017],[122.95272680000005,-1.546013499999958],[122.95018870000001,-1.543883299999948],[122.95231710000007,-1.544135299999937],[122.95326180000006,-1.542532],[122.95148620000009,-1.541890699999954],[122.953229,-1.541752899999949],[122.95771730000001,-1.543424899999934],[122.9586164000001,-1.54662],[122.96361920000004,-1.546415],[122.96372380000003,-1.542356099999949],[122.96733180000001,-1.542024],[122.9647596000001,-1.538622699999962],[122.9692017000001,-1.537783699999977],[122.97126390000005,-1.530850699999974],[122.97178740000004,-1.533645],[122.97492870000008,-1.533083899999951],[122.9742582,-1.530250699999954],[122.97759310000004,-1.526895299999978],[122.97558990000005,-1.527765599999952],[122.97764110000003,-1.526054299999942],[122.97718590000011,-1.523981499999934],[122.97899550000011,-1.525344299999972],[122.9836901000001,-1.523807499999975],[122.98477140000011,-1.520681099999933],[122.9867746000001,-1.520383399999957],[122.9864698,-1.518511],[122.98841610000011,-1.518167499999947],[122.9911082000001,-1.514338299999963],[122.99166590000004,-1.516010299999948],[122.99438610000004,-1.513788599999941],[122.99732250000011,-1.516376699999967],[122.99875190000012,-1.516044499999964],[122.99937790000001,-1.508973899999944],[123.00102830000003,-1.508286799999951],[123.003182,-1.500354199999947],[123.00537870000005,-1.499231899999927],[123.0048210000001,-1.501396299999953],[123.00707450000004,-1.5024957],[123.0071656,-1.504339499999958],[123.00892970000007,-1.50316],[123.01139420000004,-1.495720299999959],[123.01694280000004,-1.492762399999947],[123.01721630000009,-1.48734],[123.01927630000012,-1.485049599999968],[123.02264850000006,-1.475598499999933],[123.02473180000004,-1.463968499999964],[123.02869610000005,-1.456786499999964],[123.02789970000003,-1.448511799999949],[123.02955080000004,-1.442597499999977],[123.02835570000002,-1.441486599999962],[123.02844670000002,-1.437186299999951],[123.030006,-1.438617799999975],[123.03149690000009,-1.438068099999953],[123.03171770000006,-1.446206],[123.03432410000005,-1.4484162],[123.03257130000009,-1.441854199999966],[123.03539550000005,-1.438767899999959],[123.03463290000002,-1.4370615],[123.036773,-1.433653299999946],[123.03593070000011,-1.430458199999975],[123.03801370000008,-1.423375],[123.03714930000001,-1.421398599999975],[123.03858330000003,-1.419005099999936],[123.04306740000004,-1.4179858],[123.04101030000004,-1.416813499999932],[123.04365070000006,-1.416378299999963],[123.04400340000007,-1.413011399999959],[123.044857,-1.413584],[123.05371880000007,-1.399766799999952],[123.05741000000012,-1.389383899999928],[123.061202,-1.387384899999972],[123.06122640000001,-1.3854799],[123.06391230000008,-1.384048299999961],[123.06627390000006,-1.379441699999973],[123.06807210000011,-1.380128799999966],[123.07161460000009,-1.371323299999972],[123.07642280000005,-1.367231699999934],[123.07934870000008,-1.361317399999962],[123.08535010000003,-1.356569],[123.0885512000001,-1.34842],[123.0912962000001,-1.348404399999936],[123.092275,-1.3500191],[123.09304870000005,-1.3460566],[123.09676430000002,-1.345538899999951],[123.09669580000002,-1.341347499999927],[123.09809770000004,-1.338868699999978],[123.10036250000007,-1.338719699999956],[123.09917880000012,-1.336921799999971],[123.10359660000006,-1.331944699999951],[123.10704780000003,-1.321797099999969],[123.10848170000008,-1.321144299999958],[123.10905060000005,-1.317800299999931],[123.10805010000001,-1.316902199999959],[123.10980270000005,-1.317394599999943],[123.109996,-1.314119299999959],[123.11348270000008,-1.313256399999943],[123.11433590000001,-1.306665199999941],[123.11839020000002,-1.3012992],[123.12107680000008,-1.294376499999942],[123.11928190000003,-1.309355499999924],[123.12186730000008,-1.3186036],[123.12993130000007,-1.313230699999963],[123.1299312000001,-1.311478499999964],[123.13284450000003,-1.309428499999967],[123.13513660000001,-1.301402499999938],[123.14179790000003,-1.297310099999947],[123.14998680000008,-1.296838499999978],[123.16114740000012,-1.302462499999933],[123.16235720000009,-1.3001145],[123.1658450000001,-1.303071599999953],[123.16552640000009,-1.304583299999933],[123.16376250000008,-1.304583399999956],[123.15850190000003,-1.308756699999947],[123.15977640000006,-1.310755],[123.15933310000003,-1.318914899999925],[123.16065340000011,-1.319899699999951],[123.15924060000009,-1.326065899999946],[123.15779530000009,-1.325791199999969],[123.158262,-1.328087699999969],[123.15689640000005,-1.329198699999949],[123.15564460000007,-1.336377699999957],[123.15600990000007,-1.34393],[123.1584471000001,-1.352736899999968],[123.15640940000003,-1.368532199999947],[123.15788970000006,-1.374228699999946],[123.16046170000004,-1.373369599999933],[123.165128,-1.375636799999938],[123.16336410000008,-1.377263099999936],[123.16215760000011,-1.375362199999927],[123.16115620000005,-1.377263299999925],[123.15989280000008,-1.375396699999953],[123.15790120000008,-1.376759599999957],[123.15934660000005,-1.377606899999932],[123.15999810000005,-1.3845355],[123.16089720000002,-1.383768199999963],[123.1632532000001,-1.386699699999951],[123.16802180000002,-1.386390199999937],[123.16526910000005,-1.391939599999944],[123.16924390000008,-1.395186099999933],[123.16889130000004,-1.398220899999956],[123.16469170000005,-1.398026499999958],[123.16370140000004,-1.401536199999953],[123.16477180000004,-1.407851499999936],[123.1671847,-1.409122499999967],[123.16651360000003,-1.413012599999945],[123.16892640000003,-1.413791099999969],[123.16665030000001,-1.414421199999936],[123.16707230000009,-1.421836799999937],[123.17264080000007,-1.428267699999935],[123.166961,-1.446439599999962],[123.16669850000005,-1.438372799999968],[123.16525310000009,-1.438727899999947],[123.1631685000001,-1.453245199999969],[123.16555530000005,-1.455661],[123.16695550000009,-1.450340099999949],[123.172315,-1.453359599999942],[123.17221920000009,-1.456415599999957],[123.17429170000003,-1.459651099999974],[123.17286530000001,-1.464218799999969],[123.17649580000011,-1.470200699999964],[123.17446650000011,-1.475976199999934],[123.17855780000002,-1.484755099999973],[123.1782730000001,-1.487640399999975],[123.1765438000001,-1.488920399999927],[123.17730150000011,-1.492127099999948],[123.17597310000008,-1.498392099999933],[123.18051810000009,-1.500649399999929],[123.18483970000011,-1.514369599999952],[123.18269640000005,-1.5195323],[123.1778038000001,-1.522488499999952],[123.17502680000007,-1.528686899999968],[123.17088960000001,-1.532418299999961],[123.17024620000007,-1.535988799999927],[123.16858170000012,-1.535845499999937],[123.160878,-1.541107799999963],[123.15322150000009,-1.542065099999945],[123.14470910000011,-1.546275099999946],[123.143226,-1.551132699999926],[123.13102370000001,-1.560810199999935],[123.1306436000001,-1.565497899999968],[123.12821830000007,-1.568081],[123.12603070000011,-1.568463899999927],[123.12284420000003,-1.565498399999967],[123.11918230000003,-1.564685499999939],[123.10743570000011,-1.566599599999961],[123.10643730000004,-1.572196199999951],[123.10167780000006,-1.575999699999954],[123.100061,-1.579730799999936],[123.09782560000008,-1.592570399999943],[123.09863450000012,-1.600462899999968],[123.1014881000001,-1.603763199999946],[123.11142710000001,-1.5911824],[123.1087649000001,-1.605169199999978],[123.11490030000004,-1.612248099999931],[123.12272240000004,-1.613354699999945],[123.129877,-1.611963499999945],[123.13308670000004,-1.607399],[123.13788850000003,-1.609427199999971],[123.1391622000001,-1.613697799999954],[123.14035580000007,-1.6105481],[123.14419040000007,-1.609801299999958],[123.14373970000008,-1.612603899999954],[123.14697640000009,-1.615513],[123.15111450000006,-1.611615799999925],[123.15458990000002,-1.613617399999953],[123.15095560000009,-1.6142583],[123.15069050000011,-1.617114299999969],[123.15356130000009,-1.624305],[123.15632030000006,-1.623904399999958],[123.15329620000011,-1.6265738],[123.15526050000005,-1.631311099999948],[123.15329780000002,-1.636676299999976],[123.15478320000011,-1.640824499999951],[123.15656050000007,-1.638769099999934],[123.1605929000001,-1.639009],[123.16290310000011,-1.636541299999976],[123.16355390000001,-1.638318099999935],[123.16197370000009,-1.637981599999932],[123.16152770000008,-1.640132599999959],[123.16295910000008,-1.640207199999963],[123.16472490000001,-1.636990099999935],[123.16412990000003,-1.635737],[123.16873140000007,-1.633562599999948],[123.17038070000001,-1.628432699999962],[123.1717202000001,-1.6285004],[123.17101040000011,-1.633006],[123.17317240000011,-1.631458699999939],[123.17423350000001,-1.633539499999927],[123.17684070000007,-1.6345028],[123.17988830000002,-1.632765499999948],[123.17980710000006,-1.630241299999966],[123.18203670000003,-1.629978699999924],[123.1822476000001,-1.626323699999944],[123.18374430000006,-1.624690499999929],[123.18289460000005,-1.622569],[123.18412640000008,-1.623898799999949],[123.1853354000001,-1.622813099999973],[123.18527270000004,-1.624459699999932],[123.18847280000011,-1.620198099999925],[123.18888590000006,-1.615977599999951],[123.19052210000007,-1.6153305],[123.19095820000007,-1.616511199999934],[123.19223920000002,-1.614900599999942],[123.19076020000011,-1.614054899999928],[123.19339880000007,-1.613498199999981],[123.19009930000004,-1.613046199999928],[123.19262520000007,-1.608725899999968],[123.19475580000005,-1.608124099999941],[123.19405040000004,-1.611806299999955],[123.19725060000007,-1.608472099999972],[123.19400550000012,-1.612394399999971],[123.1942259000001,-1.614258099999972],[123.19679250000002,-1.612439399999971],[123.19630720000009,-1.614633399999946],[123.19823570000005,-1.615479099999959],[123.19984980000004,-1.6192426],[123.20139590000008,-1.6172249],[123.20492,-1.616663599999924],[123.20453780000003,-1.615392499999928],[123.20554940000011,-1.6178035],[123.20759910000004,-1.617296599999975],[123.20759940000005,-1.619599099999959],[123.20884,-1.620024199999932],[123.20861020000007,-1.614329],[123.20602960000008,-1.610448099999928],[123.20808840000007,-1.610194499999977],[123.20805220000011,-1.608208699999977],[123.21248890000004,-1.608864099999948],[123.21219650000012,-1.606620499999963],[123.21394070000008,-1.607516],[123.21346850000009,-1.605521099999976],[123.2158462000001,-1.604344699999956],[123.21853890000011,-1.605945799999972],[123.220202,-1.604475399999956],[123.2192487000001,-1.601512599999978],[123.22046680000005,-1.600910799999951],[123.22116370000003,-1.602806099999952],[123.222692,-1.602729099999976],[123.22177490000001,-1.601666099999932],[123.22349620000011,-1.598413499999936],[123.2233212000001,-1.601525699999968],[123.2246742000001,-1.601534599999979],[123.22409860000005,-1.599268399999971],[123.22537520000003,-1.599684399999944],[123.22643130000006,-1.597228],[123.22569840000006,-1.595332699999972],[123.22812610000005,-1.598607499999957],[123.22723580000002,-1.596273399999973],[123.2298297000001,-1.598159499999952],[123.231736,-1.602017899999964],[123.23181780000004,-1.610155799999973],[123.23323390000007,-1.610997],[123.23150340000007,-1.612494499999968],[123.23161190000008,-1.617515699999956],[123.23311790000002,-1.619343],[123.23366340000007,-1.6327599],[123.23682930000007,-1.644244899999933],[123.24101440000004,-1.645502],[123.24040780000007,-1.647822599999927],[123.24300170000004,-1.649337699999933],[123.24615240000003,-1.645922],[123.24643530000003,-1.643556199999978],[123.24849430000006,-1.645211499999959],[123.2500404000001,-1.643759299999942],[123.24781030000008,-1.639498299999957],[123.2514198,-1.638864599999977],[123.25008490000005,-1.639995599999963],[123.251056,-1.641379699999959],[123.25525860000005,-1.638348399999927],[123.25772570000004,-1.632372399999952],[123.25644430000011,-1.630395799999974],[123.25718110000003,-1.627165899999966],[123.26067360000002,-1.625491699999941],[123.25659510000003,-1.614518],[123.25823960000002,-1.6091438],[123.25546140000006,-1.606855199999927],[123.2539954,-1.601897599999972],[123.2498733000001,-1.600219899999956],[123.2485468000001,-1.596578499999964],[123.24514850000003,-1.596067799999958],[123.23766510000007,-1.603139],[123.2367564000001,-1.597158899999954],[123.2344862000001,-1.595331699999974],[123.2356459,-1.594924399999968],[123.23495330000003,-1.592309899999975],[123.23684150000008,-1.594883599999946],[123.23858960000007,-1.590613099999928],[123.24041020000004,-1.591716699999949],[123.23960140000008,-1.593815699999936],[123.24173650000012,-1.593697799999973],[123.2420595000001,-1.588310199999967],[123.24414500000012,-1.586817199999928],[123.24366350000003,-1.5822439],[123.24555120000002,-1.580474899999956],[123.24455310000008,-1.5788963],[123.24549630000001,-1.572572299999933],[123.2426736000001,-1.573744199999965],[123.2415856,-1.5719077],[123.239981,-1.572247199999936],[123.24016060000008,-1.570899199999928],[123.241644,-1.570994],[123.23996270000009,-1.569542099999978],[123.24270410000008,-1.564868899999965],[123.23989910000012,-1.563448799999946],[123.2408114000001,-1.562299699999926],[123.23952580000002,-1.561693699999978],[123.23850950000008,-1.5579393],[123.23943080000004,-1.556871599999965],[123.2382665,-1.555867499999977],[123.23912940000002,-1.554175599999951],[123.240595,-1.556378399999971],[123.24059470000009,-1.554383499999972],[123.23773110000002,-1.550977599999953],[123.23864790000005,-1.549371599999972],[123.2395739000001,-1.550027399999976],[123.2396275000001,-1.547326799999951],[123.24050440000008,-1.5505656],[123.2426531000001,-1.551338899999962],[123.24104740000007,-1.542821199999935],[123.2440140000001,-1.542042799999933],[123.24390130000006,-1.539251699999966],[123.24575340000001,-1.540821199999925],[123.24718660000008,-1.534714199999939],[123.24596840000004,-1.534167],[123.24724920000006,-1.531963899999937],[123.24606670000003,-1.529353899999933],[123.24802640000007,-1.528973699999938],[123.24656550000009,-1.527738899999974],[123.2477874000001,-1.522192899999936],[123.25071320000006,-1.5189762],[123.250295,-1.517365899999959],[123.24796220000007,-1.517167099999938],[123.25025430000005,-1.514656299999956],[123.24803810000003,-1.512933],[123.24867610000001,-1.510512899999981],[123.24749390000011,-1.510513],[123.2490848000001,-1.507522699999924],[123.24795190000009,-1.506229099999928],[123.2468014000001,-1.507369199999971],[123.24795620000009,-1.504654899999935],[123.24579420000009,-1.504334],[123.2447916000001,-1.501647099999957],[123.2468632,-1.497584699999948],[123.24551970000005,-1.501271499999973],[123.247992,-1.503234499999962],[123.24861650000003,-1.5007012],[123.24716910000006,-1.499706199999935],[123.24902960000009,-1.496702299999924],[123.24752820000003,-1.495463],[123.251897,-1.493748099999948],[123.25104720000002,-1.491156199999978],[123.24789610000005,-1.489035],[123.25677310000003,-1.487713099999951],[123.25871890000008,-1.483103299999925],[123.25499720000005,-1.483203299999957],[123.25633160000007,-1.478466899999944],[123.25462790000006,-1.476852199999939],[123.25532440000006,-1.475038199999972],[123.25388580000003,-1.472645299999954],[123.25205640000001,-1.472347],[123.2547125000001,-1.469600899999932],[123.25547610000001,-1.465583799999933],[123.2565416000001,-1.467999299999974],[123.2588429000001,-1.466999299999941],[123.25696230000005,-1.461482299999943],[123.25641160000009,-1.442525699999976],[123.25894190000008,-1.444288],[123.262038,-1.442400499999962],[123.26640920000011,-1.443049099999939],[123.2659016,-1.441176399999961],[123.26722810000001,-1.4402531],[123.271431,-1.444042499999966],[123.275764,-1.443047599999943],[123.2823595000001,-1.436793699999953],[123.28371930000003,-1.420015199999966],[123.28721610000002,-1.4189099],[123.289342,-1.414616699999954],[123.28944070000011,-1.4162363],[123.29491280000002,-1.4135144],[123.2945102000001,-1.411415599999941],[123.29594750000001,-1.413068],[123.2996475000001,-1.4104034],[123.30296180000005,-1.413966599999981],[123.30408670000008,-1.412503799999968],[123.30539260000012,-1.413999299999944],[123.30782320000003,-1.412594199999944],[123.31136830000003,-1.414659],[123.31570940000006,-1.419897599999956],[123.31501090000006,-1.420669],[123.31723760000011,-1.420720199999948],[123.31820970000001,-1.4222202],[123.32148960000006,-1.4215225],[123.32076340000003,-1.419927199999961],[123.32269270000006,-1.420508199999972],[123.32278150000002,-1.418337399999928],[123.32570470000007,-1.415289899999948],[123.324645,-1.417512099999954],[123.32613460000005,-1.418558699999949],[123.324103,-1.419609599999944],[123.3254816000001,-1.424528699999939],[123.32328050000001,-1.423188299999936],[123.320476,-1.425894899999946],[123.3224729000001,-1.426014799999962],[123.32119580000005,-1.434092299999975],[123.32243290000008,-1.435283699999957],[123.32114960000001,-1.435734099999934],[123.32355960000007,-1.441868599999964],[123.32541930000002,-1.443006899999943],[123.32506490000003,-1.445722299999943],[123.32678170000008,-1.447007599999949],[123.32886110000004,-1.4544585],[123.33193660000006,-1.456089799999972],[123.33429980000005,-1.460851299999945],[123.33673080000005,-1.461184],[123.3381528000001,-1.464138399999968],[123.34089410000001,-1.465207699999951],[123.3409501000001,-1.469548499999974],[123.34350330000007,-1.471675499999947],[123.3480406000001,-1.473394],[123.35399130000008,-1.470201499999973],[123.355364,-1.473206799999957],[123.35258470000008,-1.483268099999975],[123.35526070000003,-1.506566],[123.35550320000004,-1.514046899999926],[123.35376270000006,-1.5232317],[123.354757,-1.525714],[123.35768670000004,-1.525917299999946],[123.358961,-1.524222299999963],[123.365178,-1.5005415],[123.36793420000004,-1.5006232],[123.37110550000011,-1.498022299999946],[123.37517490000005,-1.498880399999962],[123.38049680000006,-1.502871399999947],[123.38432960000011,-1.501422799999943],[123.38403240000002,-1.499381899999946],[123.38867130000006,-1.502250099999969],[123.3912616,-1.506057299999952],[123.38923040000009,-1.506042199999968],[123.3927857000001,-1.508924399999955],[123.3932711000001,-1.511545199999944],[123.39704230000007,-1.5116255],[123.39634,-1.513657899999941],[123.39866630000006,-1.513525199999947],[123.39747510000007,-1.515065799999945],[123.39918910000006,-1.514857799999959],[123.40038760000004,-1.517946199999926],[123.4044599,-1.521748799999955],[123.40552430000002,-1.524060199999951],[123.40410580000002,-1.523839599999974],[123.40406630000007,-1.525160299999925],[123.40566160000003,-1.527195],[123.40797280000004,-1.527255599999933],[123.41250550000007,-1.530735299999947],[123.41512360000002,-1.529845299999977],[123.41155420000007,-1.522619299999974],[123.4164723,-1.5187207],[123.418671,-1.519316],[123.426011,-1.515142099999935],[123.43665240000007,-1.519930399999964],[123.43963470000006,-1.517392699999959],[123.4364,-1.511081599999955],[123.437562,-1.511174499999925],[123.437654,-1.506812599999932],[123.43967450000002,-1.504990499999963],[123.4432739,-1.506424199999969],[123.4443453,-1.510300099999938],[123.4498082,-1.515606399999967],[123.457972,-1.518938399999968],[123.4576072000001,-1.5151902],[123.46101910000004,-1.510164399999951],[123.46313870000006,-1.503225499999928],[123.46524140000008,-1.503455299999928],[123.4663991000001,-1.500288799999964],[123.46833070000002,-1.501740599999948],[123.47001850000004,-1.497851099999934],[123.46913960000006,-1.490608399999928],[123.47038830000008,-1.487820799999952],[123.47170970000002,-1.487987799999928],[123.470881,-1.490087199999948],[123.472258,-1.4881223],[123.46939610000004,-1.486489499999948],[123.4698906000001,-1.485412799999949],[123.47169610000003,-1.486004499999979],[123.47100020000005,-1.483918899999935],[123.47302050000008,-1.480549099999962],[123.47117560000004,-1.478701299999955],[123.47117520000006,-1.4769385],[123.47261950000006,-1.477449499999977],[123.4707998,-1.470053199999938],[123.47394340000005,-1.460579699999926],[123.47900490000006,-1.463839499999949],[123.48036940000009,-1.466207599999962],[123.47915250000005,-1.465952199999947],[123.479618,-1.467137599999944],[123.48183050000011,-1.467555499999946],[123.48250870000004,-1.465895499999931],[123.48618390000001,-1.469952099999944],[123.489787,-1.469834099999957],[123.49253690000012,-1.467633499999977],[123.497305,-1.466676899999925],[123.50396310000008,-1.459864499999981],[123.50685850000002,-1.4588022],[123.50890790000005,-1.459881099999961],[123.51326630000005,-1.4546436],[123.51884550000011,-1.445256399999948],[123.51857340000004,-1.442560199999946],[123.524237,-1.433943799999952],[123.5233462000001,-1.431661599999927],[123.52557160000003,-1.430423899999937],[123.52999620000003,-1.412984],[123.53632750000008,-1.4038018],[123.53949420000004,-1.395790199999965],[123.53787570000009,-1.393970699999954],[123.53677980000009,-1.387831899999981],[123.53959310000005,-1.383896799999945],[123.53980190000004,-1.379098599999963],[123.53719590000003,-1.375228499999935],[123.53632260000006,-1.368966],[123.53440030000002,-1.3672212],[123.53444370000011,-1.363417],[123.53598040000008,-1.364065799999935],[123.5368218000001,-1.362713399999961],[123.53662940000004,-1.360796499999935],[123.53509350000002,-1.360276699999929],[123.53852160000008,-1.357387],[123.5389785000001,-1.353716399999939],[123.54486170000007,-1.350164699999937],[123.54791110000008,-1.345716699999969],[123.55156270000009,-1.343583499999966],[123.55322180000007,-1.339280699999961],[123.55256830000008,-1.336288099999933],[123.55745270000011,-1.330448799999942],[123.5585807000001,-1.319151499999975],[123.557256,-1.315720699999929],[123.55977790000009,-1.309484199999929],[123.55744360000006,-1.307197],[123.55626110000003,-1.296122799999978],[123.55733240000006,-1.294859299999928],[123.55582640000011,-1.294569799999977],[123.55564750000008,-1.292998499999953],[123.55862380000008,-1.287922],[123.5595432,-1.282384399999955],[123.55628320000005,-1.278012299999943],[123.553086,-1.2762527],[123.552258,-1.277977399999941],[123.5499036000001,-1.278475299999968],[123.54446130000008,-1.2771503],[123.54048710000006,-1.274055499999974],[123.5351591000001,-1.275192599999968],[123.53080030000001,-1.273819499999945],[123.52298170000006,-1.267400399999929],[123.52216620000002,-1.264472799999965],[123.5180726000001,-1.262645199999952],[123.51589460000002,-1.2632599],[123.51380910000012,-1.266175199999964],[123.49937030000001,-1.2703152],[123.49228820000008,-1.268843799999956],[123.4873583000001,-1.269696499999952],[123.48041780000005,-1.263702599999931],[123.47302940000009,-1.24977],[123.46792120000009,-1.248247],[123.457478,-1.240456399999971],[123.44812650000006,-1.238780399999939],[123.44233740000004,-1.234435699999949],[123.44344630000012,-1.238912899999946],[123.44010220000007,-1.241326499999957],[123.44102180000004,-1.244712299999946],[123.43947170000001,-1.247584399999937],[123.43963560000009,-1.252628899999934],[123.44130170000005,-1.258498799999927],[123.44537690000004,-1.262345499999981],[123.44563270000003,-1.266809599999931],[123.44357950000006,-1.267256299999929],[123.4413283,-1.262909399999955],[123.44168720000005,-1.267446199999938],[123.44041860000004,-1.268515099999945],[123.42975980000006,-1.269921599999975],[123.42639080000004,-1.2686318],[123.42638390000002,-1.266170699999975],[123.42071050000004,-1.262907299999938],[123.420425,-1.264892499999974],[123.41992090000008,-1.260708899999941],[123.42171230000008,-1.257144899999957],[123.41961270000002,-1.257387399999971],[123.41600740000001,-1.2547719],[123.40955640000004,-1.258600299999955],[123.4073522000001,-1.2571522],[123.407297,-1.254051],[123.403795,-1.252409],[123.40283430000011,-1.2469481],[123.40429680000011,-1.243191799999977],[123.411586,-1.235549299999946],[123.41150450000009,-1.232406899999944],[123.41466170000001,-1.22892],[123.41192060000003,-1.227362599999935],[123.41268620000005,-1.224738],[123.40818860000002,-1.224497499999927],[123.40895510000007,-1.222199],[123.4062513,-1.221363599999961],[123.40413380000007,-1.218616599999962],[123.40593740000008,-1.223726399999975],[123.40460020000012,-1.230288],[123.401091,-1.234415799999965],[123.39826930000004,-1.2351329],[123.39168110000003,-1.229226499999925],[123.391026,-1.222871099999963],[123.38894660000005,-1.223830199999952],[123.38658090000001,-1.2217927],[123.383641,-1.222099799999967],[123.38114560000008,-1.220606199999963],[123.37495840000008,-1.221856899999977],[123.36476030000006,-1.227303199999938],[123.34509830000002,-1.252966399999934],[123.33058750000009,-1.267237699999953],[123.32411580000007,-1.281512],[123.32296680000002,-1.292672899999957],[123.3138947000001,-1.304128699999978],[123.30355780000002,-1.307897699999955],[123.30047370000011,-1.307319499999949],[123.30028620000007,-1.305215399999952],[123.29678320000005,-1.305049699999927],[123.28923380000003,-1.309079299999951],[123.28264410000008,-1.317230199999926],[123.28192930000012,-1.321309299999939],[123.2834511000001,-1.317285399999946],[123.28935610000008,-1.311673799999937],[123.2909333,-1.311618199999941],[123.29097020000006,-1.313574699999947],[123.28741260000004,-1.316583599999944],[123.28849490000005,-1.318318499999975],[123.28530160000003,-1.3197234],[123.2868482,-1.321706699999936],[123.28457920000005,-1.320871499999953],[123.28155960000004,-1.322589799999946],[123.28286460000004,-1.324276599999962],[123.28186340000002,-1.325354599999969],[123.281052,-1.324225699999943],[123.2814135000001,-1.326145499999939],[123.27918050000005,-1.329219],[123.2803090000001,-1.332633899999962],[123.28115180000009,-1.331237],[123.28230080000003,-1.332692899999927],[123.28086780000001,-1.335331],[123.28377400000011,-1.334463299999925],[123.2807494000001,-1.336340899999925],[123.28301210000006,-1.341024499999946],[123.28248620000011,-1.344327],[123.28421830000002,-1.347104399999978],[123.28561,-1.344332],[123.28738510000005,-1.346069],[123.28384170000004,-1.358432799999946],[123.2733912000001,-1.369108499999925],[123.26921770000001,-1.377594899999963],[123.2667173000001,-1.37934],[123.27025,-1.3788293],[123.26985710000008,-1.382033799999931],[123.26062860000002,-1.389812699999936],[123.2470714000001,-1.390518699999973],[123.24439630000006,-1.398238599999956],[123.24202320000006,-1.398340499999961],[123.24161950000007,-1.399610199999927],[123.24172020000003,-1.3975787],[123.23697410000011,-1.396766599999978],[123.23702420000006,-1.392856],[123.2335657000001,-1.393260299999952],[123.230435,-1.390518099999952],[123.23028340000008,-1.3883343],[123.22816280000006,-1.388131399999963],[123.23139390000006,-1.3853377],[123.23664470000006,-1.384778499999925],[123.23876510000002,-1.3827468],[123.23245070000007,-1.376227399999948],[123.23002710000003,-1.375516599999969],[123.22937030000003,-1.370387099999959],[123.22724960000005,-1.369117699999947],[123.22921840000004,-1.366425699999979],[123.22735020000005,-1.359345599999926],[123.22437130000003,-1.358685699999967],[123.22149280000008,-1.352693099999954],[123.2197761000001,-1.351779099999931],[123.219222,-1.365187],[123.21664690000011,-1.364755399999979],[123.21752470000001,-1.361961],[123.21445910000011,-1.359614199999953],[123.2170493000001,-1.359779599999968],[123.21670890000007,-1.358476399999972],[123.21529320000002,-1.358907199999976],[123.21581960000003,-1.3549137],[123.21411850000004,-1.356073599999945],[123.2134708000001,-1.354759299999955],[123.2124798000001,-1.356947],[123.21278690000008,-1.354318199999966],[123.21469660000002,-1.354030899999941],[123.21244850000005,-1.353372],[123.21279260000006,-1.351293699999928],[123.20900560000007,-1.348196],[123.2105706000001,-1.346012],[123.20880350000004,-1.346469299999967],[123.2070063000001,-1.343979399999967],[123.207549,-1.3427402],[123.20633090000001,-1.3430734],[123.20727090000003,-1.340696799999932],[123.20501990000002,-1.339084699999944],[123.20683370000006,-1.337418899999932],[123.20360220000009,-1.337669],[123.20195780000006,-1.333334099999945],[123.20016830000009,-1.331678599999975],[123.19804490000001,-1.331958499999928],[123.19706470000006,-1.328091],[123.19599230000006,-1.328437599999972],[123.19612490000009,-1.330956],[123.19468160000008,-1.330063299999949],[123.19478550000008,-1.325753199999951],[123.19072960000005,-1.319553199999973],[123.18917770000007,-1.319006599999966],[123.18810540000004,-1.320246],[123.18997260000003,-1.326487799999938],[123.1884232000001,-1.322903499999939],[123.18414010000004,-1.321979399999975],[123.18362360000003,-1.320647],[123.18603310000003,-1.306383],[123.18722460000004,-1.304131],[123.1910775,-1.302904799999965],[123.19068320000008,-1.300782499999968],[123.19239130000005,-1.301208699999961],[123.19391660000008,-1.297258699999929],[123.1955981000001,-1.296485799999971],[123.19794790000003,-1.284394799999973],[123.19661350000001,-1.279827399999931],[123.19536210000001,-1.279642799999976],[123.19686400000012,-1.276999499999931],[123.19666360000008,-1.274783],[123.19496160000006,-1.274632],[123.19646330000012,-1.273154199999965],[123.19539540000005,-1.273120699999936],[123.19551210000009,-1.2716383],[123.19669680000004,-1.272175499999946],[123.19612940000002,-1.270278099999928],[123.19024350000007,-1.267386099999953],[123.18612830000006,-1.262237099999936],[123.188286,-1.264237699999967],[123.18999670000005,-1.263849799999946],[123.19053720000011,-1.261628499999972],[123.19173930000011,-1.261690399999964],[123.191247,-1.259284099999945],[123.1938209000001,-1.261315699999955],[123.1953003000001,-1.260912299999973],[123.19619440000008,-1.262959499999965],[123.19859050000002,-1.261332699999969],[123.19797420000009,-1.264062499999966],[123.20761440000001,-1.268363499999964],[123.2109898000001,-1.271930499999939],[123.21338850000006,-1.272666799999968],[123.21762640000009,-1.270495099999948],[123.22376640000004,-1.262806],[123.22706430000005,-1.248313699999926],[123.22995880000008,-1.247905699999933],[123.23192610000001,-1.240953199999979],[123.23510890000011,-1.236977599999932],[123.2346017000001,-1.236058799999967],[123.23283110000011,-1.237738799999931],[123.23198040000011,-1.236029099999939],[123.231372,-1.238015299999972],[123.23162080000009,-1.2356207],[123.2299054,-1.235490899999945],[123.22922180000012,-1.232220799999936],[123.2302734000001,-1.234698799999933],[123.23135220000006,-1.231997899999953],[123.23304910000002,-1.232322599999975],[123.233623,-1.235981],[123.23444360000008,-1.233697699999937],[123.23508010000012,-1.235442599999942],[123.23922730000004,-1.232841099999973],[123.23908930000005,-1.235803799999928],[123.24246890000006,-1.232291799999928],[123.24872550000009,-1.229393899999934],[123.24602270000003,-1.224461599999927],[123.22939740000004,-1.215281],[123.22138010000003,-1.208633],[123.21877560000007,-1.203752899999927],[123.21843250000006,-1.196612399999935],[123.21652130000007,-1.191253399999937],[123.205564,-1.180183599999964],[123.1992282000001,-1.170874699999956],[123.1935016000001,-1.153540299999975],[123.18901530000005,-1.150415299999963],[123.17118830000004,-1.149037799999974]]]]},"properties":{"shapeName":"Banggai Kepulauan","shapeISO":"","shapeID":"22746128B55227219111223","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[123.44199060000005,-2.219975],[123.44244040000001,-2.218522],[123.4387263000001,-2.220013699999924],[123.44199060000005,-2.219975]]],[[[123.45772310000007,-2.210279799999967],[123.45999540000003,-2.209114599999964],[123.45994770000004,-2.207386699999972],[123.4511864000001,-2.214236399999947],[123.45772310000007,-2.210279799999967]]],[[[123.46672650000005,-2.20842],[123.46733360000007,-2.204924299999959],[123.4644872,-2.206517699999949],[123.46561520000012,-2.209713399999941],[123.46502910000004,-2.214436],[123.46305890000008,-2.216442799999925],[123.45143380000002,-2.2199874],[123.44573170000001,-2.2235695],[123.44335180000007,-2.221709],[123.44277540000007,-2.223207799999955],[123.43876990000001,-2.224761],[123.43660640000007,-2.2231905],[123.43290520000005,-2.223167399999966],[123.43292880000001,-2.221765399999924],[123.43175180000003,-2.223820299999943],[123.42799590000004,-2.224404],[123.42717270000003,-2.2261966],[123.4220491000001,-2.227142399999934],[123.42194770000003,-2.228909599999952],[123.40786,-2.234702099999936],[123.40837980000003,-2.228978099999949],[123.40185520000011,-2.2186527],[123.4002848,-2.209592499999928],[123.39832960000001,-2.208719099999939],[123.39637710000011,-2.218026499999951],[123.39694120000001,-2.223983399999952],[123.40063690000011,-2.230201799999975],[123.40342020000003,-2.240338099999974],[123.40567970000006,-2.241779299999962],[123.411762,-2.241515499999934],[123.46707430000004,-2.218875599999933],[123.47141710000005,-2.213762],[123.47154870000008,-2.2082],[123.468246,-2.205142499999965],[123.46672650000005,-2.20842]]],[[[123.46056420000002,-2.2070628],[123.46333290000007,-2.2062799],[123.46312380000006,-2.204811199999938],[123.46056420000002,-2.2070628]]],[[[123.40195410000001,-2.207717],[123.40663240000003,-2.200887799999975],[123.40541550000012,-2.198826699999927],[123.4010396000001,-2.202255899999955],[123.39818900000012,-2.208091],[123.40195410000001,-2.207717]]],[[[123.14709840000012,-2.223461599999951],[123.15191520000008,-2.218226099999924],[123.15640230000008,-2.210276199999953],[123.16053430000011,-2.206777],[123.16083240000012,-2.198967399999958],[123.15627430000006,-2.196417899999972],[123.14838770000006,-2.201962499999979],[123.14474980000011,-2.209954599999946],[123.14287560000002,-2.220940599999949],[123.14477160000001,-2.223945199999946],[123.14709840000012,-2.223461599999951]]],[[[123.66813720000005,-2.162942899999962],[123.66921290000005,-2.161416],[123.66373750000002,-2.152926],[123.66201280000007,-2.156188],[123.66581760000008,-2.163447099999928],[123.6647981000001,-2.163860599999964],[123.66647010000008,-2.164558299999953],[123.66804420000005,-2.174525499999959],[123.669477,-2.174711299999956],[123.67014590000008,-2.178308],[123.67292490000011,-2.179065399999956],[123.67792570000006,-2.176987],[123.6796716,-2.175349299999937],[123.681008,-2.167252799999972],[123.6768224000001,-2.1642215],[123.68116310000005,-2.163228099999969],[123.6739702000001,-2.158325099999956],[123.67243760000008,-2.161751299999935],[123.67322190000004,-2.164458599999932],[123.67030980000004,-2.163590199999931],[123.66831630000001,-2.164673799999946],[123.66813720000005,-2.162942899999962]]],[[[123.6698593000001,-2.149879599999963],[123.66783790000011,-2.1488542],[123.66611770000009,-2.1500825],[123.66695860000004,-2.151209199999926],[123.66909910000004,-2.1502422],[123.6679395000001,-2.152255199999956],[123.67164830000002,-2.154013],[123.67134090000002,-2.152153099999964],[123.67292120000002,-2.151105899999948],[123.67074030000003,-2.151348299999938],[123.6698593000001,-2.149879599999963]]],[[[123.6573045,-2.145897299999945],[123.65927950000003,-2.144746099999963],[123.6585854000001,-2.142550299999925],[123.654512,-2.140199],[123.654739,-2.144207699999924],[123.6573045,-2.145897299999945]]],[[[123.606334,-2.136869899999965],[123.60570120000011,-2.1351906],[123.60296870000002,-2.136584099999936],[123.60407060000011,-2.1393339],[123.60793320000005,-2.140456899999947],[123.60926060000008,-2.138770499999964],[123.60627980000004,-2.138813699999957],[123.606334,-2.136869899999965]]],[[[123.45147240000006,-2.131847499999935],[123.45047720000002,-2.129994099999976],[123.44926250000003,-2.134176],[123.45147240000006,-2.131847499999935]]],[[[123.59896830000002,-2.130656399999964],[123.59738020000009,-2.129977],[123.59796540000002,-2.132565],[123.6001099,-2.132044899999926],[123.60215530000005,-2.134627299999977],[123.60011880000002,-2.130397599999981],[123.59896830000002,-2.130656399999964]]],[[[123.43952810000008,-2.131263],[123.43813080000007,-2.128112299999941],[123.43874040000003,-2.131479299999967],[123.44060450000006,-2.132888699999967],[123.44088870000007,-2.1312986],[123.43952810000008,-2.131263]]],[[[123.63655790000007,-2.125599799999975],[123.63183970000011,-2.126517399999955],[123.63176460000011,-2.128409699999963],[123.63524680000012,-2.133147299999962],[123.63975820000007,-2.134553299999936],[123.64006240000003,-2.136414899999977],[123.64183770000011,-2.136780399999964],[123.64384,-2.133694599999956],[123.64236760000006,-2.132245499999954],[123.63989490000006,-2.132933199999968],[123.63979890000007,-2.128898499999934],[123.63655790000007,-2.125599799999975]]],[[[123.64170030000002,-2.125166699999966],[123.6384571000001,-2.1256275],[123.640472,-2.129662499999938],[123.64202530000011,-2.129799699999978],[123.64218080000012,-2.131351399999971],[123.64665790000004,-2.132069399999978],[123.64268240000001,-2.129585499999962],[123.64548450000007,-2.130151],[123.645406,-2.126208899999938],[123.64170030000002,-2.125166699999966]]],[[[123.60614450000003,-2.123533399999928],[123.60431490000008,-2.122496299999966],[123.60699230000012,-2.125189199999966],[123.60653330000002,-2.126840499999958],[123.60887280000009,-2.132245199999943],[123.6075383000001,-2.127662399999963],[123.60830440000007,-2.124175199999968],[123.60614450000003,-2.123533399999928]]],[[[123.60240170000009,-2.121709599999974],[123.60175460000005,-2.120224299999961],[123.60163590000002,-2.121820199999945],[123.5982838000001,-2.122181499999954],[123.59966770000005,-2.122372899999959],[123.60383840000009,-2.130663499999969],[123.60449370000003,-2.128788],[123.60165130000007,-2.1233714],[123.60323740000001,-2.123353099999974],[123.60240170000009,-2.121709599999974]]],[[[123.442247,-2.119784599999946],[123.43994710000004,-2.122804299999927],[123.44156540000006,-2.123452199999974],[123.4391882000001,-2.124868299999946],[123.44074310000008,-2.124829699999964],[123.44018740000001,-2.126927799999976],[123.44205870000008,-2.1282623],[123.444329,-2.1269683],[123.44455270000003,-2.124889799999949],[123.44549830000005,-2.126500699999951],[123.44835460000002,-2.125661699999966],[123.44792160000009,-2.1241956],[123.450133,-2.126745899999946],[123.44976540000005,-2.129614],[123.45084720000011,-2.129634],[123.45065560000012,-2.126184399999943],[123.44902430000002,-2.124176],[123.4443774,-2.120052399999963],[123.442247,-2.119784599999946]]],[[[123.59217060000003,-2.119702299999972],[123.59155220000002,-2.118860599999948],[123.59092180000005,-2.120531699999958],[123.59277620000012,-2.120725299999947],[123.59217060000003,-2.119702299999972]]],[[[123.60193150000009,-2.118504899999948],[123.5987503,-2.118603099999973],[123.60096790000011,-2.119644499999936],[123.60193150000009,-2.118504899999948]]],[[[123.595603,-2.116133599999955],[123.59247070000004,-2.116836],[123.59421050000003,-2.120449],[123.5920556000001,-2.121994899999947],[123.59141260000001,-2.124953099999971],[123.59482570000011,-2.120996899999966],[123.59347150000008,-2.117573499999935],[123.59843880000005,-2.118427699999927],[123.595603,-2.116133599999955]]],[[[123.80835800000011,-2.108357499999954],[123.80482510000002,-2.109964899999966],[123.80501290000007,-2.111216],[123.80969410000012,-2.109242499999937],[123.80835800000011,-2.108357499999954]]],[[[123.75104060000001,-2.102957],[123.74979110000004,-2.101544699999977],[123.74893210000005,-2.1026906],[123.75116850000006,-2.1062556],[123.7552581000001,-2.1081442],[123.76169240000002,-2.107275199999947],[123.7633674000001,-2.105134699999951],[123.7606594,-2.104012199999943],[123.7601644,-2.102326599999969],[123.7561462000001,-2.102415],[123.7564698000001,-2.105008399999974],[123.75992950000011,-2.105309299999931],[123.75941300000011,-2.103731799999935],[123.76072510000006,-2.106540799999948],[123.75430870000002,-2.106997],[123.75194450000004,-2.105809499999964],[123.75104060000001,-2.102957]]],[[[123.92299250000008,-2.099820699999952],[123.92237760000012,-2.101626],[123.92401160000009,-2.101948299999947],[123.92291480000006,-2.1043196],[123.92565420000005,-2.109690599999965],[123.92935090000003,-2.110685199999978],[123.93168050000008,-2.109740899999963],[123.933634,-2.105020799999977],[123.9326893000001,-2.101808399999925],[123.92842940000003,-2.099548099999936],[123.92907350000007,-2.101837599999953],[123.9282439000001,-2.102996499999961],[123.92743990000008,-2.102134899999953],[123.92840610000007,-2.105474799999968],[123.92698650000011,-2.105314],[123.92435850000004,-2.099873799999955],[123.92299250000008,-2.099820699999952]]],[[[123.922539,-2.0969038],[123.92106330000001,-2.098162099999968],[123.9218988,-2.099396099999979],[123.922539,-2.0969038]]],[[[123.87126720000003,-2.097483699999941],[123.8710013000001,-2.095979099999965],[123.86606880000011,-2.100027099999977],[123.87126720000003,-2.097483699999941]]],[[[123.8651761000001,-2.095061699999974],[123.85992910000004,-2.0975651],[123.85802440000009,-2.103474199999937],[123.86139720000006,-2.103140599999961],[123.86288840000009,-2.099298199999964],[123.86862880000001,-2.0958204],[123.8651761000001,-2.095061699999974]]],[[[123.918327,-2.095247099999938],[123.9188888000001,-2.097047199999963],[123.92057310000007,-2.0964846],[123.9197180000001,-2.094979799999976],[123.918327,-2.095247099999938]]],[[[123.5514303000001,-2.094242799999961],[123.54420920000007,-2.095851499999981],[123.543447,-2.101346399999954],[123.54602810000006,-2.102333599999952],[123.54736250000008,-2.101230399999963],[123.55461670000011,-2.105236699999978],[123.55385430000001,-2.105932199999927],[123.55989390000002,-2.105499499999951],[123.55782050000005,-2.106147499999963],[123.55865510000001,-2.107178099999942],[123.56139990000008,-2.105637899999977],[123.56299090000005,-2.100593299999957],[123.56113010000001,-2.095799499999941],[123.5514303000001,-2.094242799999961]]],[[[123.9100360000001,-2.093787599999928],[123.90775330000008,-2.094171599999925],[123.90875710000012,-2.095336499999974],[123.9100360000001,-2.093787599999928]]],[[[123.91658110000003,-2.092472699999973],[123.91583530000003,-2.094132],[123.91744480000011,-2.095102],[123.91798230000006,-2.093357099999935],[123.91658110000003,-2.092472699999973]]],[[[123.893937,-2.092950099999939],[123.89460510000004,-2.092102899999929],[123.88794630000007,-2.0953942],[123.89059960000009,-2.095495299999925],[123.89206190000004,-2.098009899999965],[123.9002918000001,-2.098258],[123.90026980000005,-2.096638299999938],[123.89317150000011,-2.096586699999932],[123.89044660000002,-2.0944962],[123.893937,-2.092950099999939]]],[[[123.91014110000003,-2.092236899999932],[123.9111971000001,-2.0938367],[123.91128260000005,-2.0921145],[123.91014110000003,-2.092236899999932]]],[[[123.7455063000001,-2.0911591],[123.74421760000007,-2.092391599999928],[123.74478370000008,-2.097740599999952],[123.745987,-2.097718399999962],[123.74839570000006,-2.102169499999945],[123.74977030000002,-2.100807199999963],[123.74863090000008,-2.0997055],[123.75015560000008,-2.097815299999979],[123.74999850000006,-2.094009799999981],[123.7455063000001,-2.0911591]]],[[[123.91764980000005,-2.088322799999958],[123.91538810000009,-2.087688299999968],[123.91947440000001,-2.089935899999944],[123.922881,-2.094116099999951],[123.92088440000009,-2.089421499999958],[123.91764980000005,-2.088322799999958]]],[[[123.74512020000009,-2.083141299999966],[123.743842,-2.080542499999979],[123.745283,-2.084268499999951],[123.74512020000009,-2.083141299999966]]],[[[123.911586,-2.080215899999928],[123.9103037000001,-2.079773899999964],[123.90588360000004,-2.083388499999955],[123.907233,-2.084128699999951],[123.906888,-2.083128099999954],[123.911586,-2.080215899999928]]],[[[123.9218972000001,-2.073136199999965],[123.91648070000008,-2.072946],[123.9139100000001,-2.076578799999936],[123.91714780000007,-2.075674699999979],[123.91726360000007,-2.073561],[123.9218972000001,-2.073136199999965]]],[[[123.5948002,-2.057973299999958],[123.59145380000007,-2.058083599999975],[123.59024650000003,-2.061247499999979],[123.59527,-2.065255599999944],[123.597144,-2.062229],[123.5948002,-2.057973299999958]]],[[[123.78845280000007,-2.025784399999964],[123.78918150000004,-2.023306299999945],[123.7867629000001,-2.021495],[123.7858758000001,-2.026496899999927],[123.78845280000007,-2.025784399999964]]],[[[123.7617388000001,-2.019936199999961],[123.76030650000007,-2.019520199999931],[123.76138450000008,-2.021626799999979],[123.7617388000001,-2.019936199999961]]],[[[123.75132040000005,-2.018257499999947],[123.75068190000002,-2.0155143],[123.7490011000001,-2.018771299999969],[123.74946380000006,-2.022368299999926],[123.75431250000008,-2.023135599999932],[123.756545,-2.016357699999958],[123.75496510000005,-2.0173327],[123.75407530000007,-2.022409799999934],[123.75132040000005,-2.018257499999947]]],[[[123.755022,-2.012447299999963],[123.75181270000007,-2.015972199999965],[123.75640370000008,-2.015735599999971],[123.75636730000008,-2.012987899999928],[123.755022,-2.012447299999963]]],[[[123.79917630000011,-2.010726799999929],[123.79632140000001,-2.008987399999967],[123.794091,-2.009032],[123.79266350000012,-2.010771399999953],[123.7900317000001,-2.009879399999932],[123.78913950000003,-2.013269199999968],[123.79346650000002,-2.017015899999933],[123.79917630000011,-2.010726799999929]]],[[[123.86312170000008,-2.008792699999958],[123.86245610000003,-2.007815199999925],[123.85833940000009,-2.011703],[123.8549815,-2.021786199999951],[123.85523340000009,-2.028579799999932],[123.8529026000001,-2.036195799999973],[123.85155770000006,-2.036413],[123.8495335,-2.040869699999973],[123.85167660000002,-2.043466599999931],[123.851643,-2.048349799999926],[123.84851870000011,-2.051639399999942],[123.84962210000003,-2.052799599999958],[123.84827880000012,-2.055063699999948],[123.8440462000001,-2.058104],[123.84593260000008,-2.061953599999924],[123.84522520000007,-2.065775299999927],[123.8477332000001,-2.068796499999962],[123.85491,-2.069818399999974],[123.85675780000008,-2.072512299999971],[123.860764,-2.074545699999931],[123.86292850000007,-2.072893299999976],[123.86075380000011,-2.068178599999953],[123.85930220000012,-2.068707399999937],[123.86121240000011,-2.070689399999935],[123.86008430000004,-2.070577599999979],[123.8609226000001,-2.071835299999975],[123.85969450000005,-2.0725886],[123.85518890000003,-2.068710099999976],[123.85747010000011,-2.069506299999944],[123.85827560000007,-2.067266399999937],[123.860733,-2.067826799999978],[123.86008360000005,-2.065272799999946],[123.86121140000012,-2.0647442],[123.86736240000005,-2.073539099999948],[123.86918480000008,-2.073258099999975],[123.870434,-2.075167299999976],[123.87396380000007,-2.074095499999942],[123.87364490000004,-2.077032699999961],[123.87608790000002,-2.081837],[123.87958880000008,-2.083483899999976],[123.8808275,-2.078503399999931],[123.8816733000001,-2.082606899999973],[123.88292980000006,-2.081662499999936],[123.8847148000001,-2.082735499999956],[123.88463230000002,-2.085986],[123.88950350000005,-2.087739399999975],[123.8898415000001,-2.085587399999952],[123.89731580000011,-2.082302899999945],[123.89710530000002,-2.074532899999951],[123.8931219000001,-2.070438899999942],[123.88205220000009,-2.049564499999974],[123.87831790000007,-2.037794499999961],[123.8809357,-2.034771399999954],[123.87986640000008,-2.029020299999956],[123.86846720000005,-2.0197439],[123.86312170000008,-2.008792699999958]]],[[[123.76735970000004,-2.007503],[123.76542770000003,-2.005022499999939],[123.76364210000008,-2.0076158],[123.76549380000006,-2.008383099999946],[123.764711,-2.013001],[123.76804420000008,-2.014582399999938],[123.76681840000003,-2.016259],[123.76436910000007,-2.016349],[123.76351660000012,-2.023752599999966],[123.76183530000003,-2.025239099999965],[123.761591,-2.023101499999939],[123.76040670000009,-2.023020499999973],[123.75780410000004,-2.025555599999961],[123.75956950000011,-2.026341699999932],[123.75680390000002,-2.026910399999963],[123.7572530000001,-2.042916699999978],[123.76080680000007,-2.047497399999941],[123.76018850000003,-2.048357899999928],[123.76160760000005,-2.047899699999959],[123.76231610000002,-2.045282],[123.76431820000005,-2.046181599999954],[123.76107780000007,-2.050944299999969],[123.76237020000008,-2.060428599999966],[123.7681907000001,-2.0527576],[123.7696734000001,-2.052871599999946],[123.77502090000007,-2.046223199999929],[123.78052090000006,-2.0427027],[123.779152,-2.038104699999963],[123.7848275,-2.0283328],[123.784416,-2.02636],[123.78329860000008,-2.026957],[123.783463,-2.020568199999957],[123.77949010000009,-2.015212399999939],[123.7708053,-2.010872499999948],[123.76735970000004,-2.007503]]],[[[123.90099640000005,-2.003794699999958],[123.89884450000011,-2.002475],[123.89393830000006,-2.006290499999977],[123.8916144000001,-2.0041676],[123.88931910000008,-2.004942199999959],[123.89152830000012,-2.010937799999965],[123.89258990000008,-2.009302599999955],[123.89350800000011,-2.009847699999966],[123.8891182000001,-2.015499199999965],[123.8891182000001,-2.018138499999964],[123.89477650000003,-2.02374],[123.90117450000002,-2.018690899999967],[123.9060459000001,-2.006950199999949],[123.90389410000012,-2.004970799999967],[123.90068070000007,-2.007265799999971],[123.90099640000005,-2.003794699999958]]],[[[123.78618730000005,-2.001301599999977],[123.77842550000003,-2.002149],[123.77690880000011,-2.0036209],[123.77815790000011,-2.005583399999978],[123.78658870000004,-2.004959],[123.78618730000005,-2.001301599999977]]],[[[123.49075340000002,-2.001950199999953],[123.48955760000001,-2.001145199999939],[123.48965650000002,-2.00231],[123.49075340000002,-2.001950199999953]]],[[[123.48447890000011,-1.999238799999944],[123.483172,-1.997553899999957],[123.48373950000007,-2.000218099999927],[123.48652540000012,-2.001419099999964],[123.48528070000009,-2.002720799999963],[123.4888429,-2.0024467],[123.48915080000006,-2.000872699999945],[123.48762230000011,-2.000538799999958],[123.48928620000004,-1.999906],[123.4885465000001,-1.999175199999968],[123.48447890000011,-1.999238799999944]]],[[[123.49091210000006,-1.994075599999974],[123.48853330000009,-1.994931599999973],[123.49180010000009,-1.997297299999957],[123.49258860000009,-1.994942399999957],[123.49091210000006,-1.994075599999974]]],[[[123.488,-1.994386599999928],[123.485806,-1.994523799999968],[123.48579380000001,-1.995614299999943],[123.488,-1.994386599999928]]],[[[123.49324160000003,-1.9890478],[123.4929366,-1.9907204],[123.49540910000007,-1.991563299999939],[123.49484410000002,-1.989338699999962],[123.49324160000003,-1.9890478]]],[[[123.49412270000005,-1.983042699999942],[123.49149210000007,-1.984097399999939],[123.49564220000002,-1.988665399999945],[123.49671100000012,-1.984729699999946],[123.49412270000005,-1.983042699999942]]],[[[123.48847390000003,-1.981908],[123.48621340000011,-1.979640099999926],[123.4817885000001,-1.982193399999971],[123.47687530000007,-1.995969],[123.4787976,-2.001569299999971],[123.47813650000012,-1.997900699999946],[123.48012140000003,-1.998510599999975],[123.48028370000009,-1.995599],[123.48315860000002,-1.999905199999944],[123.48246340000003,-1.993798799999979],[123.48333140000011,-1.989932],[123.48115110000003,-1.988646099999926],[123.48387590000004,-1.985741699999949],[123.4842450000001,-1.987824299999943],[123.489744,-1.988334699999939],[123.48766060000003,-1.982911499999943],[123.48847390000003,-1.981908]]],[[[123.64037130000008,-1.9540967],[123.64033030000007,-1.953111099999944],[123.63787990000003,-1.954682],[123.64037130000008,-1.9540967]]],[[[123.48184210000011,-1.950605099999962],[123.4796076,-1.9510162],[123.48068190000004,-1.951793599999974],[123.48184210000011,-1.950605099999962]]],[[[123.48626800000011,-1.948529899999926],[123.48268,-1.950691199999937],[123.48680520000005,-1.949717799999974],[123.48626800000011,-1.948529899999926]]],[[[123.63316850000001,-1.943459799999971],[123.63144160000002,-1.943413299999975],[123.6312924,-1.947302899999954],[123.6358785000001,-1.953575099999966],[123.63606940000011,-1.946634699999947],[123.63521090000006,-1.950712099999976],[123.63414920000002,-1.950799599999925],[123.63267990000008,-1.9454094],[123.63531060000003,-1.946505399999978],[123.63537530000008,-1.9435822],[123.63316850000001,-1.943459799999971]]],[[[123.48270650000006,-1.936677599999939],[123.47958360000007,-1.936763399999961],[123.47840210000004,-1.939415599999961],[123.47668660000011,-1.938111499999934],[123.47523070000011,-1.940095499999927],[123.47165410000002,-1.93911],[123.46635590000005,-1.9445049],[123.46576490000007,-1.949899199999948],[123.46934560000011,-1.9529961],[123.4762826000001,-1.953066599999943],[123.47984860000008,-1.9518245],[123.4776002000001,-1.950998099999936],[123.47874190000005,-1.949169499999925],[123.48065150000002,-1.949168899999961],[123.47987060000003,-1.945605],[123.48312360000011,-1.947946599999966],[123.48831430000007,-1.947361599999965],[123.49008580000009,-1.941045199999962],[123.4864669000001,-1.936654799999928],[123.48270650000006,-1.936677599999939]]],[[[123.6373532,-1.931729299999972],[123.63543390000007,-1.932359299999973],[123.63600640000004,-1.933728299999927],[123.6373532,-1.931729299999972]]],[[[123.63976030000003,-1.933052299999929],[123.6404212000001,-1.9301666],[123.63600640000004,-1.936617499999954],[123.63843740000004,-1.935752],[123.63976030000003,-1.933052299999929]]],[[[123.56650850000005,-1.934631],[123.56987450000008,-1.930720899999926],[123.56861590000005,-1.928441899999939],[123.56517770000005,-1.930301799999938],[123.56650850000005,-1.934631]]],[[[123.5371606000001,-1.912555099999963],[123.53171590000011,-1.915127899999959],[123.5301879000001,-1.922208399999931],[123.52847610000003,-1.9237849],[123.53507890000003,-1.936068499999976],[123.53740660000005,-1.933221199999934],[123.53559170000005,-1.933449899999971],[123.53293090000011,-1.930755],[123.53222950000008,-1.927582499999971],[123.53433310000003,-1.925549699999976],[123.5335119,-1.920152],[123.53476990000001,-1.918700099999967],[123.53732730000002,-1.920026499999949],[123.53881220000005,-1.918574499999977],[123.53969930000005,-1.923758299999974],[123.54126660000009,-1.922264899999959],[123.54225630000008,-1.9173709],[123.54206920000001,-1.914606699999979],[123.5371606000001,-1.912555099999963]]],[[[123.64183990000004,-1.909169799999972],[123.64191720000008,-1.906465299999979],[123.63985370000012,-1.904509499999961],[123.634792,-1.908084499999973],[123.63545060000001,-1.911452099999963],[123.637774,-1.913683],[123.64000670000007,-1.911864899999955],[123.63804930000003,-1.913239899999951],[123.63745360000007,-1.910993899999937],[123.64183990000004,-1.909169799999972]]],[[[123.7710571,-1.903512899999953],[123.7687883000001,-1.903451699999948],[123.77022310000007,-1.910854799999925],[123.76740940000002,-1.924048299999924],[123.7696118,-1.9336416],[123.77186260000008,-1.934688799999947],[123.77291620000005,-1.9338805],[123.77233550000005,-1.925701299999957],[123.77405510000006,-1.926988],[123.77683180000008,-1.922231199999942],[123.77319350000005,-1.910530899999969],[123.77450710000005,-1.9068456],[123.7710571,-1.903512899999953]]],[[[123.73859990000005,-1.945995299999936],[123.73859990000005,-1.939771299999961],[123.73631780000005,-1.935829499999954],[123.73631780000005,-1.927530899999965],[123.73859990000005,-1.9258712],[123.73859990000005,-1.915705399999979],[123.73673280000003,-1.910518799999977],[123.73196110000004,-1.909274],[123.73154610000006,-1.898278399999924],[123.72843420000004,-1.897656],[123.72449240000003,-1.899730699999964],[123.72117290000006,-1.907199399999968],[123.70810260000007,-1.920892099999946],[123.70768770000006,-1.9320951],[123.70457580000004,-1.934584699999959],[123.70374590000006,-1.941638499999954],[123.69793690000006,-1.945165399999951],[123.69897420000007,-1.958235699999932],[123.70250110000006,-1.961762599999929],[123.71204450000005,-1.963422299999934],[123.72511470000006,-1.960517799999934],[123.73030140000003,-1.958235699999932],[123.73258350000003,-1.955538599999954],[123.73424320000004,-1.949937099999943],[123.73652530000004,-1.954501299999947],[123.73922230000005,-1.954708799999935],[123.73859990000005,-1.945995299999936]]],[[[123.68587670000011,-1.895850799999948],[123.68492010000011,-1.8967722],[123.6862804000001,-1.896851199999958],[123.68587670000011,-1.895850799999948]]],[[[123.652676,-1.903074599999968],[123.65246230000002,-1.899442699999952],[123.65383820000011,-1.8978005],[123.6474617,-1.895711299999959],[123.64771110000004,-1.898157],[123.6437783,-1.907109899999966],[123.6473519000001,-1.903611099999978],[123.647316,-1.904735799999969],[123.6484597000001,-1.903075699999931],[123.649817,-1.903914799999939],[123.64417590000005,-1.9132458],[123.64402010000003,-1.9164189],[123.64472290000003,-1.921231],[123.64708550000012,-1.923786],[123.64807730000007,-1.927815299999963],[123.64675470000009,-1.936314899999957],[123.64833140000007,-1.955610599999943],[123.64627810000002,-1.957185399999958],[123.64468460000012,-1.955637699999954],[123.64788190000002,-1.961307399999953],[123.658603,-1.966282],[123.663565,-1.963293799999974],[123.6637505000001,-1.9577996],[123.65752640000005,-1.935400099999924],[123.65554680000002,-1.932645299999933],[123.65500650000001,-1.920556599999941],[123.65106670000011,-1.911869199999956],[123.652676,-1.903074599999968]]],[[[123.69663150000008,-1.889642299999934],[123.6971191,-1.888523699999951],[123.69540790000008,-1.888596299999961],[123.69663150000008,-1.889642299999934]]],[[[123.67800790000001,-1.883099499999958],[123.67525540000008,-1.881344599999977],[123.67173910000008,-1.882468299999971],[123.66810710000004,-1.887120299999935],[123.66264620000004,-1.890557299999955],[123.66613390000009,-1.907879699999967],[123.66904410000006,-1.910154399999954],[123.66978040000004,-1.9080525],[123.67074920000005,-1.911656199999925],[123.674923,-1.913740599999926],[123.67401830000006,-1.914796],[123.67224790000012,-1.912412],[123.6708377000001,-1.913670899999943],[123.67441340000005,-1.9156751],[123.67597870000009,-1.910000499999967],[123.67777170000011,-1.910836499999959],[123.67687540000009,-1.907981199999938],[123.67898070000001,-1.909391199999959],[123.6783372000001,-1.913927799999954],[123.67646360000003,-1.914038599999969],[123.67676580000011,-1.916934899999944],[123.67430800000011,-1.917972199999951],[123.676574,-1.927111399999944],[123.68105,-1.9299151],[123.68263150000007,-1.928545299999939],[123.682028,-1.923151799999971],[123.68417350000004,-1.927009299999952],[123.68669530000011,-1.927333499999975],[123.68631260000006,-1.923556599999927],[123.68754360000003,-1.922040899999956],[123.68640530000005,-1.920177699999954],[123.68868210000005,-1.914212899999939],[123.687272,-1.9105871],[123.683827,-1.910375599999952],[123.68239310000001,-1.903746699999942],[123.67864240000006,-1.896600299999932],[123.67693830000007,-1.895808],[123.67467020000004,-1.886817299999962],[123.67766190000009,-1.887361299999952],[123.67847170000005,-1.890082],[123.6803351000001,-1.890011499999957],[123.6792474,-1.891788],[123.6811623000001,-1.897523],[123.6835999000001,-1.895065599999953],[123.68303580000008,-1.892128299999968],[123.68090030000008,-1.891211799999951],[123.68059810000011,-1.889237799999933],[123.67828070000007,-1.886814],[123.67800790000001,-1.883099499999958]]],[[[123.78931650000004,-1.886064],[123.788424,-1.881883499999958],[123.783752,-1.879295],[123.782753,-1.882781299999976],[123.77818140000011,-1.886621],[123.77596270000004,-1.892232299999932],[123.77909220000004,-1.905042399999957],[123.7763083000001,-1.908588299999963],[123.77994540000009,-1.9106978],[123.77897030000008,-1.913030399999968],[123.775113,-1.909644399999934],[123.77802140000006,-1.926241699999935],[123.77636490000009,-1.925545099999965],[123.77422720000004,-1.929134799999929],[123.77644280000004,-1.9350765],[123.77444170000001,-1.938854899999967],[123.772746,-1.936647299999947],[123.7711862000001,-1.936783599999956],[123.7719581,-1.940278699999965],[123.7708424000001,-1.943068799999935],[123.77296970000009,-1.947979799999928],[123.77769830000011,-1.9489701],[123.7788557,-1.946732599999962],[123.77923280000005,-1.928610399999968],[123.7803689000001,-1.928338599999961],[123.78027430000009,-1.930939099999932],[123.78206460000001,-1.929485299999953],[123.780006,-1.935653099999968],[123.78114340000002,-1.938678799999934],[123.77987370000005,-1.939906699999938],[123.78283980000003,-1.940873899999929],[123.78101110000011,-1.942734499999972],[123.78271030000008,-1.950185699999963],[123.78531640000006,-1.954204199999936],[123.78641360000006,-1.953254499999957],[123.78552720000005,-1.952053799999931],[123.7872804000001,-1.953660899999932],[123.78366050000011,-1.956517299999973],[123.78550050000001,-1.975652],[123.78487220000011,-1.9830654],[123.79330260000006,-1.991269899999963],[123.79249410000011,-1.991948299999933],[123.794288,-1.992944],[123.79755060000002,-2.001747399999942],[123.80008020000002,-2.004583499999967],[123.81158070000004,-2.013505899999927],[123.81199070000002,-2.016281],[123.816253,-2.018629699999963],[123.81590760000006,-2.0212063],[123.82186630000001,-2.021221499999967],[123.82483980000006,-2.022792299999935],[123.82490040000005,-2.026945299999966],[123.82696070000009,-2.02615],[123.82827110000005,-2.023173499999928],[123.82761530000005,-2.017917099999977],[123.83750580000003,-2.013199],[123.83881430000008,-2.00947],[123.83657440000002,-1.994588799999974],[123.83774960000005,-1.995382499999948],[123.84083350000003,-1.991232899999943],[123.8416056000001,-1.994816299999968],[123.84476790000008,-1.993846599999927],[123.84224610000001,-1.997011099999952],[123.84498340000005,-1.999342199999944],[123.84450250000009,-2.000291699999934],[123.84887910000009,-2.002892699999961],[123.84905350000008,-2.004907299999957],[123.85180850000006,-2.006881799999974],[123.85347510000008,-2.011535399999957],[123.85545590000004,-2.012919899999929],[123.86004560000003,-2.005199599999969],[123.86105920000011,-1.993179199999929],[123.86406120000004,-1.983331899999939],[123.86350760000005,-1.979088899999965],[123.86212770000009,-1.976538099999971],[123.858088,-1.974941299999955],[123.85469480000006,-1.971226699999931],[123.85054420000006,-1.958529499999941],[123.8465715000001,-1.953511699999979],[123.84436610000012,-1.954261599999938],[123.84386540000003,-1.948337599999945],[123.845133,-1.947089],[123.8462641000001,-1.948502799999972],[123.84932220000007,-1.947581299999968],[123.846895,-1.945585699999924],[123.84595530000001,-1.941065499999979],[123.84499040000003,-1.945312299999955],[123.842164,-1.947936699999957],[123.838965,-1.946496199999956],[123.8372266,-1.943474],[123.83788460000005,-1.93593],[123.82647230000009,-1.927946599999927],[123.81915210000011,-1.913486499999976],[123.81733310000004,-1.914957299999969],[123.81466950000004,-1.911377699999946],[123.81136220000008,-1.914014],[123.80937230000006,-1.913031899999964],[123.81066670000007,-1.909952699999963],[123.80760140000007,-1.904976199999965],[123.80391370000007,-1.892842099999939],[123.79411790000006,-1.890640799999971],[123.78931650000004,-1.886064]]],[[[123.76512760000003,-1.866189199999951],[123.76462760000004,-1.864555099999961],[123.75545230000012,-1.876011199999937],[123.75873220000005,-1.885382499999935],[123.76048560000004,-1.884118799999953],[123.7659202000001,-1.884303199999977],[123.76769750000005,-1.885970099999952],[123.77080190000004,-1.8851191],[123.77001,-1.8778035],[123.76512760000003,-1.866189199999951]]],[[[123.69584980000002,-1.861760299999958],[123.68500310000002,-1.863208],[123.68556880000006,-1.865117299999952],[123.68156420000003,-1.875327399999946],[123.68266190000008,-1.879003299999965],[123.6841237000001,-1.879274899999928],[123.68260590000011,-1.874442],[123.68566460000011,-1.874045899999942],[123.68777530000011,-1.870390499999928],[123.6872605000001,-1.8688521],[123.685231,-1.870854399999928],[123.68470290000005,-1.870064899999932],[123.68623090000006,-1.865554799999927],[123.68747630000007,-1.865921899999933],[123.68746370000008,-1.868481699999961],[123.69091590000005,-1.870835799999952],[123.69217390000006,-1.868997199999967],[123.69102260000011,-1.866764699999976],[123.6939599000001,-1.867498799999964],[123.69149560000005,-1.864763],[123.695415,-1.867675799999972],[123.695267,-1.869718199999966],[123.69189730000005,-1.870767899999976],[123.69285890000003,-1.873510299999964],[123.69525390000001,-1.871957099999975],[123.69367220000004,-1.876464599999963],[123.698503,-1.873889299999973],[123.70066910000003,-1.875427],[123.69868120000001,-1.877304699999968],[123.69780460000004,-1.880960799999968],[123.70031310000002,-1.890693299999953],[123.69617310000001,-1.894684299999938],[123.6927482000001,-1.893133499999976],[123.69547030000001,-1.898476699999947],[123.69394250000005,-1.902507499999956],[123.69535040000005,-1.905697],[123.69237260000011,-1.905180799999926],[123.69390320000002,-1.908243699999957],[123.70174060000011,-1.899235],[123.70433650000007,-1.892385399999966],[123.70222300000012,-1.887109599999974],[123.70312820000004,-1.883003599999938],[123.70048770000005,-1.879914],[123.70168930000011,-1.872515],[123.69739530000004,-1.867322599999966],[123.69584980000002,-1.861760299999958]]],[[[124.00914740000007,-1.816765099999941],[124.00660640000001,-1.814013199999977],[123.99742630000003,-1.810819099999947],[123.98871480000003,-1.820237299999974],[123.98806610000008,-1.823086499999931],[123.99773460000006,-1.839504599999941],[124.00225590000002,-1.852491799999939],[124.0030273000001,-1.859684699999946],[124.01816710000003,-1.890480599999933],[124.0263112,-1.895113799999933],[124.03018010000005,-1.895345499999962],[124.03286750000007,-1.893793399999936],[124.03381740000009,-1.887817],[124.02682070000003,-1.854885199999956],[124.02337290000003,-1.848665599999947],[124.0237638000001,-1.8439133],[124.01471330000004,-1.830090499999926],[124.012301,-1.830776],[124.0107273000001,-1.827674899999977],[124.00785120000012,-1.827493899999979],[124.00634270000012,-1.830088199999977],[124.00352690000011,-1.827312899999924],[124.00342630000011,-1.828760899999963],[124.0012944,-1.8299072],[124.00157600000011,-1.833205299999975],[124.00038930000005,-1.832561699999928],[124.00045010000008,-1.829921799999966],[124.00183790000006,-1.8286146],[124.00123450000001,-1.825638199999958],[124.00322720000008,-1.824745199999938],[124.00137680000012,-1.823900499999979],[124.00360940000007,-1.822472699999935],[124.00208080000004,-1.821728599999972],[124.004796,-1.819858299999964],[124.004072,-1.817686399999957],[124.00600280000003,-1.817404799999963],[124.00679040000011,-1.821522399999935],[124.00899330000004,-1.822366799999941],[124.00914740000007,-1.816765099999941]]],[[[123.10554610000008,-1.774617199999966],[123.10047190000012,-1.770852899999966],[123.09628240000006,-1.760645099999977],[123.08886670000004,-1.766795199999933],[123.071975,-1.811928899999941],[123.06818340000007,-1.816408699999954],[123.06306390000009,-1.828271399999949],[123.05883930000005,-1.829941299999973],[123.06184970000004,-1.843801699999972],[123.05890150000005,-1.853000099999974],[123.0592428000001,-1.865185199999928],[123.05710190000002,-1.871678399999951],[123.06000910000012,-1.881126199999926],[123.05906120000009,-1.882969899999978],[123.06127450000008,-1.883445199999926],[123.0625371000001,-1.886212099999966],[123.06361130000005,-1.883033299999965],[123.06531760000007,-1.882206799999949],[123.06436960000008,-1.8804267],[123.06576,-1.881952499999954],[123.06576,-1.883923299999935],[123.06936230000008,-1.887229],[123.06576040000004,-1.892633],[123.06190530000003,-1.891425199999958],[123.06064130000004,-1.888691599999959],[123.05508010000005,-1.890408299999933],[123.0541323000001,-1.896002799999962],[123.0504671000001,-1.901470399999937],[123.04964540000003,-1.907985799999949],[123.0479391,-1.910656],[123.05204720000006,-1.921527099999935],[123.061843,-1.926231299999927],[123.07206130000009,-1.921468399999981],[123.07675180000001,-1.920914699999969],[123.08543180000004,-1.915209699999934],[123.08906040000011,-1.910619],[123.08913350000012,-1.905951899999934],[123.0910765000001,-1.901811499999951],[123.09045720000006,-1.899252099999956],[123.08745210000006,-1.897984099999974],[123.0870043000001,-1.901773399999968],[123.08390410000004,-1.901411499999938],[123.08547260000012,-1.900877699999967],[123.08497890000001,-1.896828299999925],[123.0880307000001,-1.897138299999938],[123.08893950000004,-1.895258699999943],[123.08900410000001,-1.897407399999963],[123.09044560000007,-1.897682],[123.09180190000006,-1.896219899999949],[123.09165540000004,-1.900733],[123.09827010000004,-1.892993199999978],[123.093173,-1.8855511],[123.09576360000005,-1.887032799999929],[123.09611110000003,-1.885063],[123.09783650000008,-1.885851899999977],[123.09787340000003,-1.8844364],[123.09938950000003,-1.886624],[123.10363120000011,-1.885322],[123.10561650000011,-1.881787499999973],[123.1043896000001,-1.879966],[123.10633240000004,-1.8782],[123.1053035000001,-1.877188299999943],[123.10606470000005,-1.874415099999965],[123.10775420000004,-1.875849499999958],[123.1115119000001,-1.874818399999924],[123.1120069000001,-1.871442499999944],[123.11378940000009,-1.875862299999937],[123.11657370000012,-1.871756599999969],[123.12045140000009,-1.871909099999925],[123.12122640000007,-1.870707],[123.11993910000001,-1.869377],[123.1213289000001,-1.867018199999961],[123.12141240000005,-1.8700186],[123.12552040000003,-1.868948599999953],[123.12870570000007,-1.870407],[123.13041840000005,-1.868167099999937],[123.12818530000004,-1.8657],[123.12831030000007,-1.862445199999968],[123.13073220000001,-1.8619902],[123.12991590000001,-1.864104],[123.13307860000009,-1.869956199999933],[123.13899980000008,-1.861242],[123.1364023000001,-1.858921199999941],[123.13714690000006,-1.856923299999949],[123.14000190000002,-1.858827299999973],[123.14152220000005,-1.856766799999946],[123.14093230000003,-1.852615],[123.137488,-1.853614199999924],[123.139784,-1.850586],[123.14201820000005,-1.850991599999929],[123.14307350000001,-1.853488899999945],[123.14434570000003,-1.852802],[123.14356980000002,-1.851272499999936],[123.1451839,-1.843923],[123.14400450000005,-1.842143699999951],[123.14692120000007,-1.839739699999939],[123.14464750000002,-1.837824099999978],[123.14443010000002,-1.835295599999938],[123.14247520000004,-1.835701599999936],[123.14014780000002,-1.833735],[123.13946520000002,-1.834890199999961],[123.13679650000006,-1.832986099999971],[123.13726180000003,-1.831394],[123.13862720000009,-1.831955799999946],[123.14006170000005,-1.830510699999934],[123.13972020000006,-1.828138199999955],[123.14276080000002,-1.8240173],[123.14124090000007,-1.831072499999948],[123.14518180000005,-1.831977499999937],[123.14673240000002,-1.821082499999932],[123.14955610000004,-1.820551599999931],[123.14432990000012,-1.806700499999977],[123.14259230000005,-1.807481099999961],[123.141413,-1.80617],[123.1419092000001,-1.802704899999981],[123.14401930000008,-1.803391499999975],[123.14460380000003,-1.799098199999946],[123.13749790000008,-1.798318399999971],[123.135388,-1.799411099999929],[123.13517060000004,-1.7975381],[123.13228470000001,-1.795602799999926],[123.13057830000002,-1.799255399999936],[123.12943010000004,-1.7973512],[123.12794070000007,-1.797694699999965],[123.12719570000002,-1.7939487],[123.13032810000004,-1.780574499999943],[123.12601470000004,-1.7752055],[123.12192980000009,-1.776988699999947],[123.11336560000007,-1.7752411],[123.11314830000003,-1.774054899999953],[123.10554610000008,-1.774617199999966]]],[[[124.17370140000003,-1.744412099999977],[124.16805780000004,-1.737129899999957],[124.15859090000004,-1.735309399999949],[124.15112670000008,-1.735491399999944],[124.14329840000005,-1.741499199999964],[124.1403855000001,-1.745868499999972],[124.1403855000001,-1.7504199],[124.14402660000007,-1.750966],[124.14511890000006,-1.758976399999938],[124.14876,-1.766622699999971],[124.1533114,-1.768261199999927],[124.155314,-1.768443199999979],[124.1569525000001,-1.7660765],[124.1569525000001,-1.762981599999932],[124.15276520000009,-1.761161099999924],[124.15149080000003,-1.756973799999969],[124.16641930000003,-1.754425099999935],[124.16514490000009,-1.749327499999936],[124.16860390000011,-1.751512199999979],[124.16751160000001,-1.768443199999979],[124.16132170000003,-1.776999799999942],[124.1615038000001,-1.780276699999945],[124.16022940000005,-1.781733199999962],[124.16004740000005,-1.77791],[124.15513190000001,-1.775543299999924],[124.15422160000003,-1.770263799999952],[124.1500344000001,-1.770627899999965],[124.15021650000006,-1.775361299999929],[124.1596833000001,-1.786284499999965],[124.16387050000003,-1.788469199999952],[124.17952720000005,-1.774086899999929],[124.18152980000002,-1.767897099999971],[124.17370140000003,-1.744412099999977]]],[[[123.37684330000002,-1.672350399999971],[123.36922570000002,-1.67388],[123.36521520000008,-1.673045899999977],[123.35556510000004,-1.677644599999951],[123.3435022000001,-1.690639699999963],[123.33507750000001,-1.694830099999933],[123.33263380000005,-1.700610899999958],[123.32647870000005,-1.707025099999953],[123.30919330000006,-1.721441199999958],[123.29754450000007,-1.739643299999955],[123.29451990000007,-1.743198499999949],[123.28945220000003,-1.745951699999978],[123.28074960000004,-1.761655799999971],[123.27448970000012,-1.778220799999929],[123.275619,-1.7792156],[123.26977250000004,-1.784932099999935],[123.27613850000012,-1.788987099999929],[123.27207650000003,-1.790642199999979],[123.2718913000001,-1.7934294],[123.277767,-1.792558499999927],[123.27494110000009,-1.796495299999947],[123.27557720000004,-1.797972799999968],[123.280368,-1.794663699999944],[123.29158710000002,-1.7946783],[123.30437080000002,-1.788693199999955],[123.31087480000008,-1.783431099999973],[123.31594470000005,-1.782064199999979],[123.3203337000001,-1.765804],[123.32483450000007,-1.763371899999925],[123.3258839,-1.759334399999943],[123.33093340000005,-1.751461699999936],[123.33154430000002,-1.743275399999959],[123.338543,-1.7355601],[123.33883580000008,-1.732905599999924],[123.34272990000011,-1.733678699999928],[123.3436809000001,-1.736619599999926],[123.35010580000005,-1.7389117],[123.351582,-1.742068],[123.35488610000004,-1.736670599999968],[123.3587950000001,-1.736528],[123.36020670000005,-1.732798499999944],[123.36412930000006,-1.733631199999934],[123.36542920000011,-1.725925699999948],[123.372563,-1.721640099999945],[123.3733056000001,-1.719318099999953],[123.37123710000003,-1.720081899999968],[123.3724486000001,-1.717826599999967],[123.37603740000009,-1.717501299999981],[123.37676740000006,-1.719581699999935],[123.3746976000001,-1.722236599999974],[123.37581650000004,-1.723880099999974],[123.37969650000002,-1.723707399999967],[123.38317160000008,-1.721341499999937],[123.38462360000005,-1.722369899999933],[123.385913,-1.718934],[123.38552270000002,-1.712205399999959],[123.38758050000001,-1.710289],[123.38629580000008,-1.706190299999946],[123.38587160000009,-1.689784199999963],[123.38122020000003,-1.674136],[123.37684330000002,-1.672350399999971]]],[[[123.53190940000002,-1.477755399999978],[123.52930580000009,-1.477908299999967],[123.52451530000008,-1.481238599999926],[123.521745,-1.486652599999957],[123.52332230000002,-1.492345299999954],[123.52651630000003,-1.492969],[123.5228849,-1.4893451],[123.5256121000001,-1.490112699999941],[123.52439410000011,-1.4856247],[123.52688710000007,-1.484855899999957],[123.52543920000005,-1.487227599999926],[123.52639110000007,-1.489473099999941],[123.527573,-1.490559799999971],[123.52814980000005,-1.488933399999951],[123.52950090000002,-1.489178199999969],[123.52834960000007,-1.4909835],[123.53065310000011,-1.491517699999974],[123.52835080000011,-1.493889399999944],[123.53116370000009,-1.494289799999933],[123.53023360000009,-1.499221099999943],[123.5281811000001,-1.498377799999957],[123.52707820000012,-1.500376499999959],[123.52275240000006,-1.498445799999956],[123.5241433000001,-1.500976699999967],[123.52582030000008,-1.500310199999944],[123.52584280000008,-1.502108599999929],[123.52818320000006,-1.5029818],[123.52655040000002,-1.503937],[123.528339,-1.508421699999928],[123.52667720000011,-1.508356499999934],[123.52491240000006,-1.510954799999979],[123.5216464,-1.511155499999973],[123.51671490000001,-1.507683199999974],[123.51333530000011,-1.498566],[123.50782030000005,-1.496636499999966],[123.50544820000005,-1.497359099999926],[123.4994435000001,-1.507589499999938],[123.49860880000006,-1.511830399999951],[123.50032920000001,-1.518749499999956],[123.50012680000009,-1.526890699999967],[123.49507320000009,-1.533014399999956],[123.48906510000006,-1.5320133],[123.4888989000001,-1.533467499999972],[123.48385830000007,-1.5358255],[123.478999,-1.547356299999933],[123.47925220000002,-1.560556],[123.47779620000006,-1.571295799999973],[123.47970140000007,-1.572842199999968],[123.47865960000001,-1.576985799999932],[123.47989110000003,-1.583575799999949],[123.48097440000004,-1.584694299999967],[123.48262160000002,-1.583172199999979],[123.48335480000003,-1.577317699999981],[123.48542980000002,-1.575485499999957],[123.48678390000009,-1.577742099999966],[123.4924995,-1.579741199999944],[123.49891230000003,-1.587059099999976],[123.49955160000002,-1.591669499999966],[123.498041,-1.595861199999945],[123.50058430000001,-1.597174],[123.49963710000009,-1.598623699999962],[123.49788650000005,-1.596600699999954],[123.49717050000004,-1.598746099999971],[123.49847590000002,-1.599008399999946],[123.4963189,-1.601017199999944],[123.49725750000005,-1.602246699999966],[123.49889150000001,-1.601779399999941],[123.49729520000005,-1.604205899999954],[123.49853310000003,-1.605246499999964],[123.49699570000007,-1.605023099999926],[123.49544620000006,-1.607272899999941],[123.49084670000002,-1.604718299999945],[123.49169710000001,-1.602967],[123.4870509000001,-1.603795399999967],[123.48451710000006,-1.606262899999933],[123.48555850000002,-1.613429799999949],[123.479712,-1.614929599999925],[123.47965650000003,-1.622522899999979],[123.47850590000007,-1.622795599999961],[123.48242730000004,-1.629061399999955],[123.48501280000005,-1.627844699999969],[123.4860126000001,-1.633173299999953],[123.48691180000003,-1.632783899999936],[123.488616,-1.636825699999974],[123.48657010000011,-1.6339987],[123.48328560000004,-1.636205599999926],[123.485044,-1.637580899999932],[123.48156050000011,-1.643189699999937],[123.47882570000002,-1.643210099999976],[123.47859060000008,-1.640576599999974],[123.475481,-1.641372099999955],[123.47454460000006,-1.646816199999932],[123.47643990000006,-1.6474357],[123.47263220000002,-1.653647],[123.47631050000007,-1.659180399999968],[123.47664810000003,-1.665726199999938],[123.47991050000007,-1.666432899999961],[123.4801652000001,-1.669479099999933],[123.48235660000012,-1.671967599999959],[123.48319870000012,-1.679523699999947],[123.485016,-1.681673399999966],[123.48247720000006,-1.684661299999959],[123.48294520000002,-1.687089199999946],[123.47976130000006,-1.688269199999979],[123.485574,-1.697543399999972],[123.48446080000008,-1.6988997],[123.48586790000002,-1.700884299999927],[123.48542440000006,-1.706140299999959],[123.48739770000009,-1.707279699999958],[123.48788510000009,-1.703132699999969],[123.489116,-1.704095399999972],[123.48931290000007,-1.710137],[123.49099350000006,-1.712514599999963],[123.48886430000005,-1.712947499999927],[123.4878083000001,-1.708624099999952],[123.48696870000003,-1.7099411],[123.4887668,-1.713655],[123.51015830000006,-1.721649],[123.51338240000007,-1.725028399999928],[123.51439770000002,-1.722827],[123.51299110000002,-1.722532599999965],[123.5108421000001,-1.717612699999961],[123.51275830000009,-1.714061299999969],[123.51113670000007,-1.713373899999965],[123.51539460000004,-1.710876799999937],[123.51346020000005,-1.709069299999953],[123.51553090000004,-1.7071129],[123.5138118000001,-1.706857899999932],[123.51572550000003,-1.704086299999972],[123.51805820000004,-1.703905099999929],[123.517862,-1.700741],[123.52085120000004,-1.7022927],[123.52075470000011,-1.705898099999956],[123.5194461000001,-1.706999099999962],[123.52098970000009,-1.708000899999945],[123.52366570000004,-1.707135499999936],[123.5227483000001,-1.710240899999974],[123.51864550000005,-1.707903299999941],[123.51951,-1.709795099999951],[123.53266050000002,-1.716765199999941],[123.53643450000004,-1.722456099999931],[123.53661120000004,-1.725541599999929],[123.54651530000001,-1.723604699999953],[123.547922,-1.724390399999947],[123.55480650000004,-1.717541199999971],[123.5596246,-1.7201612],[123.56418230000008,-1.725117699999942],[123.56410470000003,-1.726945499999943],[123.56807590000005,-1.728361],[123.575763,-1.726685199999963],[123.57906560000004,-1.713737199999969],[123.58082460000003,-1.711785199999952],[123.5797692000001,-1.709879199999932],[123.58117590000006,-1.710330799999952],[123.58189790000006,-1.707874],[123.58647,-1.711292199999946],[123.58105890000002,-1.711372399999959],[123.58920780000005,-1.715686],[123.5964249000001,-1.715080899999975],[123.60042940000005,-1.7119298],[123.60384220000003,-1.704483499999981],[123.60662800000011,-1.7047151],[123.60898940000004,-1.702518099999963],[123.60973580000007,-1.699122099999954],[123.61269170000003,-1.698643899999979],[123.61332170000003,-1.694967299999973],[123.6102906000001,-1.690292599999964],[123.61138360000007,-1.685085499999957],[123.6088284000001,-1.682839],[123.60898340000006,-1.670925399999931],[123.6125508,-1.661455299999943],[123.61500170000011,-1.659406699999977],[123.61786080000002,-1.660605199999964],[123.61608400000011,-1.658317099999977],[123.616937,-1.6563785],[123.6193091,-1.656279899999959],[123.61760590000006,-1.655803099999957],[123.61739950000003,-1.654010299999925],[123.62008730000002,-1.651941099999931],[123.61823840000011,-1.652492399999971],[123.61844970000004,-1.649968],[123.6163332000001,-1.650494899999956],[123.61445550000008,-1.648775299999954],[123.61451530000011,-1.645691199999931],[123.61327030000007,-1.646118099999967],[123.60965280000005,-1.6431636],[123.60380350000003,-1.631382499999972],[123.60668060000012,-1.630253899999957],[123.61220520000006,-1.636667199999977],[123.62053380000009,-1.6398112],[123.6215797000001,-1.637641099999939],[123.61997370000006,-1.636687],[123.61964130000001,-1.633970099999942],[123.62153050000006,-1.629138699999942],[123.62324180000007,-1.628751699999953],[123.62292610000009,-1.624394299999949],[123.61621180000009,-1.620685599999945],[123.61366070000008,-1.616223499999933],[123.61495360000004,-1.607951399999934],[123.6129975,-1.607741199999964],[123.61208870000007,-1.6053519],[123.60280240000009,-1.605624099999943],[123.60343010000008,-1.602320599999928],[123.59923880000008,-1.602251599999931],[123.59780530000012,-1.597437599999978],[123.59383070000001,-1.5965561],[123.59163870000009,-1.593981299999939],[123.58752790000005,-1.595270199999959],[123.588054,-1.598168399999963],[123.59001310000008,-1.599748199999965],[123.58952880000004,-1.601562899999976],[123.5879384000001,-1.600802399999964],[123.58929650000005,-1.603104299999927],[123.59171930000002,-1.598635599999966],[123.59383360000004,-1.600488499999926],[123.58909910000011,-1.606931599999939],[123.58775340000011,-1.607191899999975],[123.5857069000001,-1.603785499999958],[123.58384440000009,-1.603512399999943],[123.57723170000008,-1.610529099999951],[123.567258,-1.605569099999968],[123.55968860000007,-1.5988028],[123.55625710000004,-1.5890027],[123.55755240000008,-1.586360199999945],[123.55729450000001,-1.577919399999928],[123.55535630000008,-1.573650699999973],[123.5544867000001,-1.565162899999962],[123.555768,-1.560060799999974],[123.55920270000001,-1.557740699999954],[123.55909510000004,-1.553333399999929],[123.5608519000001,-1.551670799999954],[123.56199570000001,-1.552360799999974],[123.5618730000001,-1.5497682],[123.56348990000004,-1.549928799999975],[123.5638249000001,-1.5483486],[123.561324,-1.546968599999957],[123.56222280000009,-1.543946199999937],[123.55855240000005,-1.541277599999944],[123.55845910000005,-1.537806499999931],[123.55978340000001,-1.537093299999981],[123.5571556000001,-1.535996],[123.55749360000004,-1.533020699999952],[123.55291290000002,-1.527943899999968],[123.55040850000012,-1.520213099999978],[123.54997780000008,-1.512473799999952],[123.5469538000001,-1.509707899999967],[123.54559930000005,-1.503703899999948],[123.54781480000008,-1.495538099999976],[123.54708860000005,-1.491180899999961],[123.54411080000011,-1.488278899999955],[123.53505350000012,-1.484019299999943],[123.53190940000002,-1.477755399999978]]]]},"properties":{"shapeName":"Banggai Laut","shapeISO":"","shapeID":"22746128B23251094338725","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[105.81694240000007,-1.804919799999936],[105.815905,-1.799839599999927],[105.81317070000006,-1.795817899999975],[105.80834580000004,-1.794899399999963],[105.80525330000006,-1.800323599999956],[105.80583670000004,-1.805393299999935],[105.80931750000008,-1.806545899999946],[105.81694240000007,-1.804919799999936]]],[[[105.76789780000007,-1.736689699999943],[105.762428,-1.737216099999955],[105.76896850000008,-1.743399199999942],[105.76940330000008,-1.739711599999964],[105.76789780000007,-1.736689699999943]]],[[[105.736773,-1.684350399999971],[105.73778590000006,-1.682388099999969],[105.73470550000008,-1.682193],[105.73490110000006,-1.6837233],[105.736773,-1.684350399999971]]],[[[106.15129250000007,-2.082619199999954],[106.15795960000008,-2.088015899999959],[106.16233810000006,-2.075961399999926],[106.16354480000007,-2.067901799999959],[106.15826670000007,-2.034783899999979],[106.15476820000003,-2.026046099999974],[106.15542740000006,-2.020590799999979],[106.15015030000006,-1.994865899999979],[106.15225490000006,-1.9828611],[106.14926190000006,-1.979461799999967],[106.15091990000008,-1.9795915],[106.15299860000005,-1.977071699999954],[106.15585210000006,-1.966799799999933],[106.155652,-1.959323299999937],[106.159419,-1.956302599999958],[106.16025510000009,-1.9537943],[106.162206,-1.953422699999976],[106.16415690000008,-1.932241499999975],[106.16573620000008,-1.930104799999924],[106.16559810000007,-1.922512299999937],[106.16706730000004,-1.920022199999948],[106.17168220000008,-1.9186453],[106.17304820000004,-1.919821799999966],[106.17463580000003,-1.912331],[106.18392950000003,-1.908138199999939],[106.18600620000007,-1.902805799999953],[106.18580630000008,-1.895643199999938],[106.18401660000006,-1.892766399999971],[106.17992,-1.891362899999933],[106.17588670000004,-1.887342699999977],[106.17490860000004,-1.882960699999956],[106.17643420000007,-1.879754499999933],[106.17240190000007,-1.877271599999972],[106.17145630000005,-1.872824199999968],[106.16619010000005,-1.872042799999974],[106.16137730000008,-1.8688735],[106.15796550000005,-1.870772699999975],[106.15048750000005,-1.868128399999932],[106.13480550000008,-1.855103499999927],[106.12369060000009,-1.836598699999968],[106.11890330000006,-1.821720099999936],[106.11925590000004,-1.813837599999943],[106.12640370000008,-1.808665499999961],[106.12633740000007,-1.806474199999968],[106.12822130000006,-1.8043143],[106.12678940000006,-1.801469699999927],[106.12048280000005,-1.800328899999954],[106.11976680000004,-1.798857599999963],[106.11846730000008,-1.799905],[106.115769,-1.799089],[106.10969290000008,-1.795524299999954],[106.102534,-1.789448499999935],[106.09292520000008,-1.7783328],[106.09209290000007,-1.775326399999926],[106.08995050000004,-1.7771514],[106.08733590000008,-1.775925499999971],[106.08679440000009,-1.7735936],[106.08949540000003,-1.773557],[106.090209,-1.771995899999979],[106.08916270000009,-1.770821699999942],[106.08485860000008,-1.7709119],[106.08491010000006,-1.769737099999929],[106.09038940000005,-1.766546099999971],[106.09051720000008,-1.762686599999938],[106.09496710000008,-1.757483499999978],[106.09249590000007,-1.755915099999925],[106.09161910000006,-1.757093],[106.08661350000006,-1.757128699999953],[106.08173720000008,-1.755921399999977],[106.07330060000004,-1.747983199999965],[106.06406050000004,-1.729424],[106.06088310000007,-1.715447599999948],[106.04133810000008,-1.700208199999963],[106.028601,-1.6819285],[106.020959,-1.652519899999959],[106.02319660000006,-1.632307],[106.02725130000005,-1.621078499999953],[106.03287240000009,-1.614362699999958],[106.03910890000009,-1.616110699999979],[106.04407950000007,-1.613460499999974],[106.04804890000008,-1.617784299999926],[106.05448210000009,-1.619396599999959],[106.05099710000007,-1.6103089],[106.05133650000005,-1.605649299999925],[106.04803110000006,-1.603295299999957],[106.04880640000005,-1.600178199999959],[106.03815670000006,-1.597077299999967],[106.03591820000008,-1.594587199999978],[106.03594790000005,-1.591960399999948],[106.03196060000005,-1.593109],[106.028343,-1.587648799999954],[106.02027310000005,-1.585818199999949],[106.01799230000006,-1.581576799999937],[106.01084370000007,-1.578328099999965],[106.00572320000003,-1.570981699999948],[106.00585690000008,-1.568949],[106.00084280000004,-1.569608799999969],[105.99849560000007,-1.566656499999965],[105.992452,-1.563795],[105.99294420000007,-1.562466599999937],[105.99140130000006,-1.561283199999934],[105.98907960000008,-1.560916199999951],[105.98923950000005,-1.562836399999981],[105.987999,-1.562260899999956],[105.98618390000007,-1.557205099999976],[105.98281250000008,-1.5562305],[105.980092,-1.5531594],[105.98072690000004,-1.550870799999927],[105.97603660000004,-1.551817099999937],[105.97172610000007,-1.548890699999959],[105.96849910000009,-1.550796499999933],[105.97016610000009,-1.554310199999975],[105.96789750000005,-1.5565415],[105.96444740000004,-1.557599299999936],[105.95754590000007,-1.556562299999939],[105.95153320000009,-1.559729199999936],[105.93170460000005,-1.552045299999975],[105.91578230000005,-1.540709799999945],[105.91280790000008,-1.540351799999939],[105.90935050000007,-1.532591099999934],[105.91256310000006,-1.522913199999948],[105.92017930000009,-1.5220618],[105.92012980000004,-1.517965199999935],[105.92176680000006,-1.515916199999936],[105.92098470000008,-1.508971499999973],[105.91816940000007,-1.507036399999947],[105.91616380000005,-1.501884399999938],[105.91425570000007,-1.501965299999938],[105.91425680000003,-1.504637699999932],[105.91212670000004,-1.506126799999947],[105.90508280000006,-1.506465899999966],[105.89003870000005,-1.502135299999964],[105.88328080000008,-1.502138099999968],[105.88783230000007,-1.511705799999959],[105.87932860000006,-1.519806599999924],[105.85969190000009,-1.5231591],[105.84280450000006,-1.522669699999938],[105.82660350000003,-1.529253199999971],[105.81466730000005,-1.531451499999946],[105.75498420000008,-1.533088499999963],[105.72055580000006,-1.528140499999949],[105.70320220000008,-1.528114599999981],[105.70257770000006,-1.530758899999967],[105.70452720000009,-1.533939399999952],[105.71135710000004,-1.536608199999932],[105.720573,-1.544010799999967],[105.72230010000004,-1.553665199999955],[105.72043640000004,-1.56161],[105.72258840000006,-1.562769699999933],[105.72268420000006,-1.564588199999946],[105.71946870000005,-1.582852399999979],[105.72373810000005,-1.5866405],[105.73135050000008,-1.597605899999962],[105.73355210000005,-1.603622899999948],[105.74010470000007,-1.609136],[105.74146650000006,-1.612860099999978],[105.73955990000007,-1.614061599999957],[105.74160390000009,-1.616170099999977],[105.74174950000008,-1.620567],[105.73867170000005,-1.624384599999928],[105.73581850000005,-1.624708599999963],[105.73311040000004,-1.6316248],[105.73552760000007,-1.632730799999933],[105.73507620000004,-1.634675699999946],[105.73835460000004,-1.635484099999928],[105.74393450000008,-1.633939399999974],[105.75322910000006,-1.6373296],[105.75953490000006,-1.647278099999937],[105.75687910000005,-1.648374399999966],[105.75707920000008,-1.650034699999935],[105.761961,-1.648228199999949],[105.76693560000007,-1.650792099999933],[105.76137040000003,-1.653378],[105.75343810000004,-1.651662499999929],[105.76156390000006,-1.658920499999965],[105.75970180000007,-1.665208199999938],[105.75777240000008,-1.666690199999948],[105.75957230000006,-1.668664399999955],[105.75725080000007,-1.6711011],[105.75695880000006,-1.677355399999954],[105.75346040000005,-1.681603],[105.742417,-1.6833607],[105.740045,-1.686011],[105.74314870000006,-1.694498399999929],[105.74848580000008,-1.699760399999946],[105.74670340000006,-1.704101199999968],[105.75278650000007,-1.715772499999957],[105.75423010000009,-1.727581099999952],[105.76397540000005,-1.736266],[105.76863690000005,-1.736059],[105.77416070000004,-1.742282399999965],[105.77900620000008,-1.743982399999936],[105.77806950000007,-1.748133199999927],[105.78235850000004,-1.749899199999959],[105.78390430000007,-1.753365499999973],[105.78696920000004,-1.754570799999954],[105.79216870000005,-1.762344499999926],[105.79524060000006,-1.780308499999933],[105.79963890000005,-1.784060599999975],[105.815177,-1.789961399999925],[105.82614880000006,-1.8032922],[105.826126,-1.805963799999972],[105.81190690000005,-1.807148299999938],[105.81197430000009,-1.808824],[105.81543930000004,-1.810632399999974],[105.81996910000004,-1.810094099999958],[105.81111070000009,-1.814187199999935],[105.80264860000005,-1.810839199999975],[105.800918,-1.814325799999949],[105.80268150000006,-1.810101799999927],[105.80208130000005,-1.808426299999951],[105.78812430000005,-1.808264899999926],[105.78465940000007,-1.806389499999966],[105.77985940000008,-1.7984815],[105.77972320000003,-1.791644],[105.78251870000008,-1.785609699999952],[105.78078550000004,-1.783063099999936],[105.77904940000008,-1.773545],[105.77392910000003,-1.766770899999926],[105.76860140000008,-1.767895299999964],[105.756585,-1.774882599999955],[105.745682,-1.777754799999968],[105.744156,-1.782286599999964],[105.74805680000009,-1.787645599999962],[105.75497360000008,-1.790928599999972],[105.75658380000004,-1.793241299999977],[105.755161,-1.799395299999958],[105.75081650000004,-1.8009239],[105.75061020000004,-1.802242599999943],[105.75461770000004,-1.808284],[105.75962460000005,-1.8081378],[105.76047870000008,-1.816118399999937],[105.75946760000005,-1.817368],[105.75650150000007,-1.8165133],[105.75551340000004,-1.817462199999966],[105.75723890000006,-1.8205382],[105.75671090000009,-1.822319599999958],[105.75259480000005,-1.820355099999972],[105.74627250000003,-1.820195799999965],[105.74733210000005,-1.825122699999952],[105.74098690000005,-1.825564899999961],[105.74073530000004,-1.828664899999978],[105.74484470000004,-1.829226099999971],[105.74620740000006,-1.832080099999928],[105.75245170000005,-1.835266699999977],[105.75137740000008,-1.837551299999973],[105.75598270000006,-1.840386899999942],[105.75345390000007,-1.840804399999968],[105.75129480000004,-1.845385699999952],[105.74743640000008,-1.855010799999945],[105.74819650000006,-1.8605441],[105.746796,-1.862783799999931],[105.72766660000008,-1.876962799999944],[105.72164940000005,-1.889257],[105.71310470000009,-1.895277199999953],[105.70444680000008,-1.895034499999952],[105.70552250000009,-1.895875599999954],[105.69728940000005,-1.906379499999957],[105.70576770000008,-1.911263299999973],[105.70624670000007,-1.9139079],[105.70194930000008,-1.923527],[105.71286790000005,-1.936972],[105.71715780000005,-1.9451702],[105.74073120000008,-1.938561899999968],[105.74557410000006,-1.944799299999943],[105.749965,-1.955145799999968],[105.75116470000006,-1.973765199999946],[105.75666970000009,-1.979427099999953],[105.77464390000006,-1.988938],[105.77786210000005,-1.993875099999968],[105.78581840000004,-1.995914899999946],[105.77696750000007,-1.999250299999972],[105.77309460000004,-2.002569899999969],[105.77001450000006,-2.008613499999967],[105.77015450000005,-2.028601199999969],[105.76466790000006,-2.034521199999972],[105.76136760000009,-2.044295799999929],[105.75798050000009,-2.049331799999948],[105.752701,-2.052123599999959],[105.754153,-2.055622399999947],[105.75138320000008,-2.057171499999924],[105.75032820000007,-2.059695699999963],[105.75061890000006,-2.066519899999946],[105.75224760000003,-2.067872199999954],[105.756273,-2.067928],[105.75692230000004,-2.074065699999949],[105.75957620000008,-2.073505],[105.76129320000007,-2.074965199999951],[105.761162,-2.076559199999963],[105.75825840000005,-2.078552899999977],[105.75090790000007,-2.079053599999952],[105.75289150000003,-2.0823285],[105.74888950000008,-2.088519299999973],[105.75377610000004,-2.0921032],[105.74947890000004,-2.096637299999941],[105.75338480000005,-2.096896],[105.75674470000007,-2.106786899999975],[105.75980830000009,-2.108749399999965],[105.76506430000006,-2.105361899999934],[105.76927330000007,-2.112206699999945],[105.76583490000007,-2.117834199999947],[105.76045780000004,-2.1176205],[105.76067470000004,-2.121298799999977],[105.76208510000004,-2.122376199999962],[105.76478390000005,-2.121087],[105.76634180000008,-2.121963699999981],[105.76648570000003,-2.129257],[105.76510030000009,-2.134887],[105.76175770000003,-2.136877399999946],[105.75918020000006,-2.143802699999981],[105.75982630000004,-2.145533399999977],[105.75810650000005,-2.147265299999958],[105.75896860000006,-2.150943199999972],[105.77123190000003,-2.158077499999933],[105.774673,-2.157643],[105.78091180000007,-2.160452599999928],[105.791568,-2.176635],[105.79358610000008,-2.184063499999979],[105.79409680000003,-2.195082099999979],[105.78631060000004,-2.2123817],[105.79286760000008,-2.228057199999967],[105.78880830000008,-2.231150499999956],[105.78599150000008,-2.236199099999965],[105.78783890000005,-2.251930499999958],[105.79011830000007,-2.2566612],[105.79605180000004,-2.263252299999976],[105.79875780000003,-2.270046599999944],[105.80368830000003,-2.272686599999929],[105.80912160000008,-2.279579899999931],[105.81087720000005,-2.286802499999965],[105.80967810000004,-2.290251399999931],[105.81153040000004,-2.291559199999938],[105.81210870000007,-2.296567499999981],[105.82272170000005,-2.303583699999933],[105.82635430000005,-2.311333699999977],[105.82540490000008,-2.313775699999951],[105.82713380000007,-2.318028199999958],[105.82560790000008,-2.318683599999929],[105.82456310000003,-2.329104199999961],[105.82168630000007,-2.330439899999931],[105.82311320000008,-2.331471],[105.82246440000006,-2.334542099999965],[105.82061470000008,-2.337915799999962],[105.81334640000006,-2.343247099999928],[105.80558020000007,-2.361420899999928],[105.80241320000005,-2.363448299999959],[105.803221,-2.367095],[105.80596470000006,-2.370093499999939],[105.80751890000005,-2.367970599999978],[105.81309120000009,-2.366346299999975],[105.82195130000008,-2.360735199999965],[105.82258290000004,-2.358370399999956],[105.827655,-2.353554299999928],[105.830036,-2.347663],[105.83417710000003,-2.348737299999925],[105.83960520000005,-2.346048499999938],[105.84222720000008,-2.346165599999949],[105.84547440000006,-2.339425],[105.85097990000008,-2.338564499999961],[105.85581810000008,-2.339695699999936],[105.86557530000005,-2.333590299999969],[105.87520150000006,-2.332960299999968],[105.88414030000007,-2.334719899999925],[105.88825450000007,-2.338494399999945],[105.89412630000004,-2.338816899999927],[105.89658570000006,-2.341750799999943],[105.902376,-2.34249],[105.90004340000007,-2.338664799999947],[105.90137130000005,-2.329272],[105.91208250000005,-2.3126513],[105.92000990000008,-2.307084199999963],[105.92150040000007,-2.303403],[105.92041070000005,-2.298295099999962],[105.92245950000006,-2.290061699999967],[105.91979130000004,-2.282966099999953],[105.92435630000006,-2.281489199999953],[105.92889660000009,-2.275254699999948],[105.92242650000009,-2.273153599999944],[105.92040250000008,-2.264905799999951],[105.911764,-2.250086799999963],[105.91147250000006,-2.247317199999941],[105.91299310000005,-2.245712699999956],[105.91791990000007,-2.245345199999974],[105.91929530000004,-2.243230499999925],[105.91794690000006,-2.230403],[105.91867,-2.228143],[105.92265320000007,-2.225079199999925],[105.92199910000005,-2.221945399999925],[105.92373690000005,-2.219976299999928],[105.92307940000006,-2.2113759],[105.924148,-2.208350399999972],[105.92633810000007,-2.208385399999941],[105.92771980000003,-2.216620899999953],[105.93344660000008,-2.221136399999978],[105.93989610000006,-2.222662899999932],[105.94488710000007,-2.226316099999963],[105.95262360000004,-2.240658],[105.95853490000007,-2.245328499999971],[105.96456710000007,-2.245474799999954],[105.97200920000006,-2.241813299999933],[105.97940510000006,-2.242225099999928],[105.97755990000007,-2.241474699999969],[105.97540010000006,-2.230888599999957],[105.99198920000003,-2.221457],[106.01423790000007,-2.217192299999965],[106.02084750000006,-2.214423799999963],[106.01978810000008,-2.212701599999946],[106.02099670000007,-2.207635799999935],[106.03059350000007,-2.197874499999955],[106.03814310000007,-2.194211299999949],[106.03972640000006,-2.191677699999957],[106.03944280000007,-2.186050199999954],[106.04464150000007,-2.18451],[106.051255,-2.178538199999934],[106.05559760000006,-2.169298399999946],[106.06808630000006,-2.16807],[106.07357350000007,-2.162863699999946],[106.07399730000009,-2.155707499999949],[106.07910390000006,-2.153899699999954],[106.07808890000007,-2.150950799999976],[106.08892690000005,-2.144545899999969],[106.08900460000007,-2.1354204],[106.08215320000005,-2.127417799999932],[106.06517590000004,-2.125220399999932],[106.05570560000007,-2.118620699999951],[106.040137,-2.112998399999981],[106.04052020000006,-2.110162299999956],[106.04535420000008,-2.106308199999944],[106.04908460000007,-2.099014799999964],[106.04115550000006,-2.092604699999924],[106.04261440000005,-2.086002299999961],[106.04036260000004,-2.081347199999925],[106.04269360000006,-2.077502599999946],[106.04519490000007,-2.075083499999948],[106.05108760000007,-2.076884899999925],[106.05692330000005,-2.073928899999942],[106.05994530000004,-2.067038899999943],[106.06532990000005,-2.069088499999964],[106.06596320000006,-2.0717952],[106.06956940000003,-2.074794399999973],[106.07447620000005,-2.076301899999976],[106.08980280000009,-2.078234699999939],[106.09166190000008,-2.075885699999958],[106.09482080000004,-2.077374799999973],[106.09804170000007,-2.075362599999949],[106.09974090000009,-2.078473599999938],[106.09853940000005,-2.080592399999944],[106.10124690000004,-2.081649499999969],[106.10350030000006,-2.078492599999947],[106.10573460000006,-2.078836799999976],[106.10813930000006,-2.076933199999928],[106.10811480000007,-2.072675599999968],[106.10375480000005,-2.073845699999936],[106.10317410000005,-2.072808699999939],[106.10628410000004,-2.0657609],[106.10937790000008,-2.066342299999974],[106.10961690000005,-2.0702323],[106.11131420000004,-2.070555299999967],[106.11590940000008,-2.067828899999938],[106.11779720000004,-2.064110299999925],[106.12140560000006,-2.063351299999965],[106.13018730000005,-2.057401699999957],[106.13332480000008,-2.059042],[106.14027120000009,-2.070124],[106.14145760000008,-2.0769526],[106.13864730000006,-2.082314399999973],[106.12758950000006,-2.089735399999938],[106.12841,-2.0956781],[106.131956,-2.097620599999971],[106.13580090000005,-2.097142399999939],[106.14773480000008,-2.083301899999981],[106.15129250000007,-2.082619199999954]]]]},"properties":{"shapeName":"Bangka","shapeISO":"","shapeID":"22746128B39824954314686","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[105.744156,-1.782286599999964],[105.74159440000005,-1.7816217],[105.73781310000004,-1.783736099999942],[105.73478710000006,-1.779675399999974],[105.73383640000009,-1.782288599999958],[105.72183570000004,-1.784008299999925],[105.69437140000008,-1.781403199999943],[105.68355090000006,-1.769041899999934],[105.66918420000007,-1.762106499999959],[105.66055980000004,-1.7435058],[105.658088,-1.745002499999941],[105.65851580000003,-1.750300299999935],[105.65568740000003,-1.746998099999928],[105.65463210000007,-1.740175499999964],[105.65794130000006,-1.736426799999947],[105.65595280000008,-1.734504699999945],[105.657675,-1.731336299999953],[105.65434750000009,-1.725919699999963],[105.65382460000006,-1.716987],[105.64170340000004,-1.710257],[105.645047,-1.709588199999928],[105.65681940000007,-1.714326199999959],[105.66131740000009,-1.7140292],[105.66604730000006,-1.707163299999934],[105.66849540000004,-1.699442199999964],[105.67023240000009,-1.699641499999927],[105.68131520000009,-1.692151599999931],[105.68357310000005,-1.6874713],[105.68749480000008,-1.685689499999967],[105.69817850000004,-1.676329],[105.70232640000006,-1.667863399999931],[105.71281990000006,-1.660023299999978],[105.71756160000007,-1.654487699999947],[105.71855990000006,-1.649403499999949],[105.72409780000004,-1.644010399999956],[105.69757320000008,-1.6530112],[105.67547770000004,-1.654422499999953],[105.66297860000009,-1.653573],[105.65241940000004,-1.650690599999962],[105.64956310000008,-1.646554],[105.63990730000006,-1.641715099999942],[105.63684720000003,-1.633142499999963],[105.63145190000006,-1.629958899999963],[105.62817560000008,-1.625706199999968],[105.62884080000003,-1.622190399999965],[105.62270530000006,-1.610049299999957],[105.62401260000007,-1.606461799999977],[105.62231320000006,-1.603622599999937],[105.62425020000006,-1.600747799999965],[105.62208740000005,-1.597991799999932],[105.62242010000006,-1.591244299999971],[105.61747870000005,-1.584174799999971],[105.612904,-1.581494299999974],[105.61566110000007,-1.574331],[105.61113180000007,-1.570756599999925],[105.61270790000003,-1.567310199999952],[105.61232770000004,-1.563936399999932],[105.610854,-1.563746299999934],[105.61173350000007,-1.562047599999971],[105.60987960000006,-1.561655499999972],[105.60541120000005,-1.556309699999929],[105.60340580000008,-1.556455299999925],[105.60236,-1.553164599999945],[105.60438030000006,-1.5514658],[105.599698,-1.548282099999938],[105.59927020000003,-1.545377499999972],[105.60121910000004,-1.544260799999961],[105.60113,-1.540506599999958],[105.60321560000006,-1.539413899999943],[105.60288290000005,-1.536087599999973],[105.60461790000005,-1.535042199999964],[105.60504280000004,-1.529589399999963],[105.60171530000008,-1.530171499999938],[105.59987330000007,-1.527332299999955],[105.59412740000005,-1.527148099999977],[105.59137030000005,-1.532969199999968],[105.58699130000008,-1.532495],[105.58146370000009,-1.534646099999975],[105.57583520000009,-1.534654399999965],[105.568317,-1.532476899999949],[105.56354990000006,-1.528021299999978],[105.56146630000006,-1.5323251],[105.56363310000006,-1.533177099999932],[105.56342110000008,-1.535108199999968],[105.56535630000008,-1.537438899999927],[105.56502350000005,-1.541786899999977],[105.56080470000006,-1.549116599999934],[105.55354360000007,-1.557254199999932],[105.53656150000006,-1.564738299999931],[105.51675680000005,-1.566056899999978],[105.51521190000005,-1.564797699999929],[105.50625140000005,-1.564387899999929],[105.49951330000005,-1.560669],[105.49284030000007,-1.564232899999979],[105.48371710000004,-1.564082],[105.46944180000008,-1.5609606],[105.46643420000004,-1.564720499999964],[105.46391480000005,-1.565575799999976],[105.460825,-1.564031499999942],[105.45576480000005,-1.570220099999972],[105.45748960000009,-1.572427499999947],[105.45627350000007,-1.574187599999959],[105.44943220000005,-1.579621299999928],[105.44859650000006,-1.582528899999943],[105.43537040000007,-1.595538599999941],[105.42966870000004,-1.597682099999929],[105.424636,-1.604727399999945],[105.41959570000006,-1.607066399999951],[105.39787130000008,-1.609186499999964],[105.39439360000006,-1.605835099999979],[105.39432230000006,-1.601511099999925],[105.38878440000008,-1.6014398],[105.39075710000009,-1.605502499999943],[105.38977080000006,-1.611644099999978],[105.39288430000005,-1.610337399999935],[105.39434610000006,-1.613699199999928],[105.39294380000007,-1.620363399999974],[105.38911710000008,-1.62464],[105.38999650000005,-1.626089199999967],[105.39250170000008,-1.626113499999974],[105.38923310000007,-1.635517399999969],[105.38269340000005,-1.642100899999946],[105.37170180000004,-1.645164099999931],[105.36532540000007,-1.650940299999945],[105.35442890000007,-1.651979599999947],[105.35442860000006,-1.650334],[105.34921080000004,-1.647044],[105.34531280000004,-1.647139],[105.34383920000005,-1.648517],[105.343683,-1.652451699999972],[105.34672060000008,-1.656447599999979],[105.34041410000003,-1.661385399999972],[105.34026070000004,-1.666360099999963],[105.34205070000007,-1.669142799999975],[105.34368620000004,-1.670788099999925],[105.34663830000005,-1.671016099999974],[105.34749950000008,-1.673035199999958],[105.354666,-1.671726499999977],[105.35980590000008,-1.674076399999933],[105.36050730000005,-1.677602499999978],[105.36774970000005,-1.679951899999935],[105.36190580000005,-1.680961199999956],[105.35677110000006,-1.686066099999948],[105.350114,-1.6859],[105.34982710000008,-1.687904699999933],[105.34498490000004,-1.693329099999971],[105.32219860000004,-1.698296499999969],[105.33007760000004,-1.700332699999933],[105.33697030000008,-1.705606799999941],[105.34006010000007,-1.702043199999935],[105.34257830000007,-1.701524199999938],[105.34866410000006,-1.708410199999946],[105.35037540000008,-1.708362699999952],[105.35265710000004,-1.712116399999957],[105.37352540000006,-1.719481099999939],[105.38260470000006,-1.730456899999979],[105.38942370000007,-1.735553799999934],[105.38718330000006,-1.744330499999933],[105.39000390000007,-1.751670899999965],[105.39280760000008,-1.753174899999976],[105.39314580000007,-1.756732099999965],[105.39778150000006,-1.761915899999963],[105.39724750000005,-1.772285799999963],[105.38846390000003,-1.7967552],[105.36871240000005,-1.8253878],[105.34890180000008,-1.842417699999942],[105.34726180000007,-1.846028599999954],[105.34407420000008,-1.845433599999978],[105.33865780000008,-1.851159799999948],[105.31827680000004,-1.864385599999935],[105.29671930000006,-1.8730088],[105.28583360000005,-1.8828553],[105.26548830000007,-1.895801799999958],[105.25645650000007,-1.898676099999932],[105.24227890000009,-1.900790299999926],[105.23039490000008,-1.909627099999966],[105.21340090000007,-1.9161299],[105.20230570000007,-1.918351],[105.19131650000008,-1.918677299999956],[105.18141410000004,-1.924302399999931],[105.16202350000003,-1.930341099999964],[105.15893370000003,-1.933928],[105.15791170000006,-1.938275],[105.15519890000007,-1.940100599999937],[105.156314,-1.941425799999934],[105.15217250000006,-1.947622099999933],[105.12501870000006,-1.959174499999961],[105.12501480000009,-1.965606099999945],[105.12940550000008,-1.968529899999965],[105.13280420000007,-1.974396099999979],[105.13202440000003,-1.980856499999959],[105.12739070000003,-1.988520599999958],[105.12656670000007,-1.997253599999965],[105.119146,-2.005650299999957],[105.10839060000006,-2.024273899999969],[105.12091390000006,-2.037482],[105.12100320000008,-2.044617799999969],[105.12498290000008,-2.057379499999968],[105.12504950000005,-2.074868599999945],[105.12784150000005,-2.076397799999938],[105.13096780000006,-2.085414599999979],[105.14677450000005,-2.073945699999967],[105.15559430000008,-2.070942799999955],[105.16296240000008,-2.072053199999971],[105.16514880000005,-2.070666899999935],[105.171037,-2.070712299999968],[105.18006480000008,-2.077196499999957],[105.18080160000005,-2.074191799999937],[105.19262990000004,-2.073084399999971],[105.19664660000007,-2.074960799999928],[105.19716360000007,-2.072692399999937],[105.20255270000007,-2.073069699999962],[105.20355850000004,-2.071091299999978],[105.20674370000006,-2.072381199999938],[105.20670180000008,-2.070188899999948],[105.21671170000008,-2.066752199999939],[105.22868640000007,-2.066194499999938],[105.24766330000006,-2.075644299999965],[105.25761320000004,-2.085836699999959],[105.25871940000007,-2.091026199999931],[105.263326,-2.095844499999941],[105.26774450000005,-2.107822699999929],[105.27626720000006,-2.118748299999936],[105.288205,-2.139210899999966],[105.29000410000003,-2.149185099999954],[105.29575590000007,-2.153650299999924],[105.30294660000004,-2.153479599999969],[105.32045740000007,-2.1319679],[105.33067690000007,-2.127090399999929],[105.337577,-2.126226599999939],[105.34276290000008,-2.128693599999963],[105.34650640000007,-2.125059599999929],[105.34573660000007,-2.1231775],[105.351287,-2.1204959],[105.35387150000008,-2.121499799999981],[105.36200490000004,-2.120377299999973],[105.36987,-2.123012699999947],[105.37936570000005,-2.1285759],[105.38814480000008,-2.129991],[105.39275880000008,-2.127304099999947],[105.39635070000008,-2.127164599999958],[105.40659470000008,-2.121102],[105.41886710000006,-2.1182288],[105.43037960000004,-2.123890399999937],[105.43643280000003,-2.133433299999979],[105.44009550000004,-2.133916],[105.44339740000004,-2.131406899999945],[105.44656040000007,-2.134581],[105.44751110000004,-2.132918399999937],[105.44551460000008,-2.129308199999969],[105.44675630000006,-2.124896899999953],[105.47001990000007,-2.103619199999969],[105.48406640000007,-2.0957797],[105.48459250000008,-2.094322699999964],[105.51277080000006,-2.083403399999952],[105.515417,-2.083934899999974],[105.51995580000005,-2.088217499999928],[105.52380620000008,-2.088977599999964],[105.53317070000008,-2.086459899999966],[105.537141,-2.083304399999975],[105.57202310000008,-2.093983199999968],[105.57839090000004,-2.097692399999971],[105.58817850000008,-2.1117274],[105.58803740000008,-2.119108599999947],[105.590268,-2.121133899999961],[105.590291,-2.123661199999958],[105.61699430000004,-2.119409699999949],[105.63475710000006,-2.119903299999976],[105.64888850000006,-2.11666],[105.64982470000007,-2.119264599999951],[105.65550660000008,-2.118104399999936],[105.66032670000004,-2.120345599999951],[105.66162240000006,-2.122588299999961],[105.65968150000003,-2.125411299999939],[105.66068340000004,-2.127153499999963],[105.66617380000008,-2.127984799999979],[105.66666110000006,-2.124481399999979],[105.66757610000008,-2.125704599999949],[105.66881210000008,-2.123828199999934],[105.67341910000005,-2.123523899999952],[105.67681570000008,-2.125192],[105.67836590000007,-2.127248799999961],[105.67743690000003,-2.128683199999955],[105.68028750000008,-2.128245499999935],[105.68028810000004,-2.129679499999952],[105.68400720000005,-2.131298899999933],[105.685245,-2.127432799999951],[105.68939680000005,-2.126495699999964],[105.70018060000007,-2.127675499999953],[105.70358810000005,-2.125491699999941],[105.70993,-2.1248229],[105.72457440000005,-2.125825099999929],[105.73239890000008,-2.128041399999972],[105.74323410000005,-2.1336869],[105.75427170000006,-2.142964799999959],[105.75828460000008,-2.1445773],[105.75918020000006,-2.143802699999981],[105.76175770000003,-2.136877399999946],[105.76510030000009,-2.134887],[105.76648570000003,-2.129257],[105.76634180000008,-2.121963699999981],[105.76478390000005,-2.121087],[105.76208510000004,-2.122376199999962],[105.76067470000004,-2.121298799999977],[105.76045780000004,-2.1176205],[105.76583490000007,-2.117834199999947],[105.76927330000007,-2.112206699999945],[105.76506430000006,-2.105361899999934],[105.75980830000009,-2.108749399999965],[105.75674470000007,-2.106786899999975],[105.75338480000005,-2.096896],[105.74947890000004,-2.096637299999941],[105.75377610000004,-2.0921032],[105.74888950000008,-2.088519299999973],[105.75289150000003,-2.0823285],[105.75090790000007,-2.079053599999952],[105.75825840000005,-2.078552899999977],[105.761162,-2.076559199999963],[105.76129320000007,-2.074965199999951],[105.75957620000008,-2.073505],[105.75692230000004,-2.074065699999949],[105.756273,-2.067928],[105.75224760000003,-2.067872199999954],[105.75061890000006,-2.066519899999946],[105.75032820000007,-2.059695699999963],[105.75138320000008,-2.057171499999924],[105.754153,-2.055622399999947],[105.752701,-2.052123599999959],[105.75798050000009,-2.049331799999948],[105.76136760000009,-2.044295799999929],[105.76466790000006,-2.034521199999972],[105.77015450000005,-2.028601199999969],[105.77001450000006,-2.008613499999967],[105.77309460000004,-2.002569899999969],[105.77696750000007,-1.999250299999972],[105.78581840000004,-1.995914899999946],[105.77786210000005,-1.993875099999968],[105.77464390000006,-1.988938],[105.75666970000009,-1.979427099999953],[105.75116470000006,-1.973765199999946],[105.749965,-1.955145799999968],[105.74557410000006,-1.944799299999943],[105.74073120000008,-1.938561899999968],[105.71715780000005,-1.9451702],[105.71286790000005,-1.936972],[105.70194930000008,-1.923527],[105.70624670000007,-1.9139079],[105.70576770000008,-1.911263299999973],[105.69728940000005,-1.906379499999957],[105.70552250000009,-1.895875599999954],[105.70444680000008,-1.895034499999952],[105.71310470000009,-1.895277199999953],[105.72164940000005,-1.889257],[105.72766660000008,-1.876962799999944],[105.746796,-1.862783799999931],[105.74819650000006,-1.8605441],[105.74743640000008,-1.855010799999945],[105.75129480000004,-1.845385699999952],[105.75345390000007,-1.840804399999968],[105.75598270000006,-1.840386899999942],[105.75137740000008,-1.837551299999973],[105.75245170000005,-1.835266699999977],[105.74620740000006,-1.832080099999928],[105.74484470000004,-1.829226099999971],[105.74073530000004,-1.828664899999978],[105.74098690000005,-1.825564899999961],[105.74733210000005,-1.825122699999952],[105.74627250000003,-1.820195799999965],[105.75259480000005,-1.820355099999972],[105.75671090000009,-1.822319599999958],[105.75723890000006,-1.8205382],[105.75551340000004,-1.817462199999966],[105.75650150000007,-1.8165133],[105.75946760000005,-1.817368],[105.76047870000008,-1.816118399999937],[105.75962460000005,-1.8081378],[105.75461770000004,-1.808284],[105.75061020000004,-1.802242599999943],[105.75081650000004,-1.8009239],[105.755161,-1.799395299999958],[105.75658380000004,-1.793241299999977],[105.75497360000008,-1.790928599999972],[105.74805680000009,-1.787645599999962],[105.744156,-1.782286599999964]]]},"properties":{"shapeName":"Bangka Barat","shapeISO":"","shapeID":"22746128B44825239706689","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[106.69893580000007,-2.978352599999937],[106.69750590000007,-2.976791099999957],[106.69523670000007,-2.9768314],[106.69613440000006,-2.980383599999925],[106.69425530000007,-2.987762399999951],[106.69697590000004,-2.993318699999975],[106.70265770000009,-2.995428599999968],[106.70953370000007,-2.992867399999966],[106.71019050000007,-2.988767799999948],[106.71396880000009,-2.984487799999954],[106.71335180000005,-2.982005299999969],[106.70766830000008,-2.978737499999966],[106.69893580000007,-2.978352599999937]]],[[[106.69626110000007,-2.972202599999946],[106.69511410000007,-2.972712399999978],[106.69647530000009,-2.974594499999967],[106.69726190000006,-2.972518599999944],[106.69626110000007,-2.972202599999946]]],[[[106.70415270000007,-2.968234399999972],[106.70513360000007,-2.966500499999938],[106.70376640000006,-2.964433299999939],[106.70294470000005,-2.967613],[106.70415270000007,-2.968234399999972]]],[[[106.69548490000005,-2.960607499999981],[106.694518,-2.959143299999937],[106.69172330000004,-2.959610399999974],[106.68954330000008,-2.963069],[106.69107250000008,-2.966454599999963],[106.69669680000004,-2.963532099999952],[106.69693450000005,-2.961455299999955],[106.69548490000005,-2.960607499999981]]],[[[106.67370210000007,-2.958612099999925],[106.66600030000006,-2.960694599999954],[106.67124870000004,-2.9677152],[106.67731680000009,-2.968819699999926],[106.67899210000007,-2.962325499999963],[106.67671050000007,-2.959323499999925],[106.67370210000007,-2.958612099999925]]],[[[106.769781,-2.904425499999945],[106.77146710000005,-2.903527199999928],[106.77119240000007,-2.900960599999962],[106.76631730000008,-2.901075299999945],[106.76643930000006,-2.903347899999972],[106.769781,-2.904425499999945]]],[[[106.80439720000004,-2.886238399999968],[106.79906140000008,-2.888033499999949],[106.79382590000006,-2.892166499999973],[106.79334190000009,-2.8943472],[106.79184390000006,-2.894396699999959],[106.79253720000008,-2.895671899999968],[106.79012310000007,-2.896959399999957],[106.79016030000008,-2.899819099999945],[106.78571590000007,-2.903347399999973],[106.78809110000009,-2.904006899999956],[106.78861020000005,-2.902672099999961],[106.78979750000008,-2.906684299999938],[106.78789160000008,-2.9053034],[106.78459860000004,-2.906021499999952],[106.78253110000009,-2.907779399999924],[106.78206660000006,-2.9108949],[106.78028890000007,-2.908046],[106.77790090000008,-2.909313199999929],[106.77499410000007,-2.907621199999937],[106.77071360000008,-2.908135],[106.76534290000006,-2.915791799999965],[106.74725520000004,-2.924523799999974],[106.73934510000004,-2.925636099999963],[106.73598260000006,-2.9239229],[106.73155060000005,-2.925420799999927],[106.73150910000004,-2.927317],[106.73004020000008,-2.927104499999928],[106.72935940000008,-2.92911],[106.72938410000006,-2.932353599999942],[106.73203340000003,-2.937008399999968],[106.73037630000005,-2.943218899999977],[106.72682530000009,-2.946935499999938],[106.72377990000007,-2.946811699999955],[106.72498330000008,-2.950676499999929],[106.72395390000008,-2.953863699999943],[106.71697090000004,-2.959724],[106.71162280000004,-2.960640099999978],[106.70884970000009,-2.967424299999948],[106.71362330000005,-2.969881799999939],[106.71779,-2.969945],[106.73065070000007,-2.9783824],[106.75771130000004,-2.989225899999951],[106.76704770000003,-2.9951801],[106.77173970000007,-2.996455199999957],[106.78099670000006,-3.004279799999949],[106.78087310000006,-3.0058866],[106.78542140000008,-3.008457399999941],[106.79145290000008,-3.018468599999949],[106.80273750000003,-3.020905499999969],[106.80621760000008,-3.023764899999946],[106.80743720000004,-3.0225645],[106.81528490000005,-3.0235689],[106.82230230000005,-3.0290236],[106.82227760000006,-3.032261799999958],[106.82747670000003,-3.031069499999944],[106.83103960000005,-3.028246199999955],[106.837578,-3.029952099999946],[106.84583280000004,-3.028966499999967],[106.851718,-3.033806799999979],[106.85231120000009,-3.036278699999968],[106.85564040000008,-3.038601099999937],[106.85526310000006,-3.040047699999946],[106.86598090000007,-3.031829199999947],[106.87188870000006,-3.032719099999952],[106.87473140000009,-3.031013499999972],[106.88180270000004,-3.031210099999953],[106.88450460000007,-3.029724699999974],[106.88702920000009,-3.031198899999936],[106.88947640000004,-3.029913499999964],[106.89187410000005,-3.031668599999932],[106.89507750000007,-3.031651099999976],[106.89602980000006,-3.029972099999952],[106.89509990000005,-3.028331499999979],[106.89086060000005,-3.0286776],[106.88079570000008,-3.021603399999947],[106.88003660000004,-3.008198399999969],[106.88386940000004,-2.999685599999964],[106.89484570000008,-2.986591399999952],[106.89545840000005,-2.983256299999937],[106.90619880000008,-2.966224799999964],[106.90988720000007,-2.9522161],[106.91056170000007,-2.943755199999941],[106.90590220000007,-2.941444],[106.90670550000004,-2.940319199999976],[106.90542020000004,-2.940986699999939],[106.90027860000004,-2.934844],[106.89374860000004,-2.930382099999974],[106.89031680000005,-2.929245099999946],[106.88697970000004,-2.93079],[106.87709860000007,-2.930540899999926],[106.86779770000004,-2.926204699999971],[106.85883710000007,-2.924770899999942],[106.84681120000005,-2.9188507],[106.83424520000005,-2.908336499999962],[106.83277910000004,-2.906140799999946],[106.83401510000004,-2.904254899999955],[106.833191,-2.900274299999978],[106.83059710000003,-2.900371499999949],[106.82812360000008,-2.8972586],[106.82583940000006,-2.898359199999959],[106.82256180000007,-2.8950586],[106.820918,-2.896381099999928],[106.81991690000007,-2.894131699999946],[106.81922480000009,-2.894885599999952],[106.80879080000005,-2.887273899999968],[106.80439720000004,-2.886238399999968]]],[[[106.76882990000007,-2.883454799999924],[106.76024680000006,-2.886227299999973],[106.76093350000008,-2.895459399999936],[106.76258910000007,-2.897296199999971],[106.76940970000004,-2.896047299999964],[106.777207,-2.8881466],[106.77639060000007,-2.884150499999976],[106.76882990000007,-2.883454799999924]]],[[[107.01513190000009,-2.870735299999978],[107.01229690000008,-2.872047599999973],[107.01482240000007,-2.875192099999936],[107.01682790000007,-2.874164599999972],[107.01608510000005,-2.876652899999954],[107.01815260000006,-2.872778],[107.01713740000008,-2.873830299999952],[107.01638230000003,-2.870933399999956],[107.01513190000009,-2.870735299999978]]],[[[106.73647830000004,-2.867422899999951],[106.73656220000004,-2.865425199999947],[106.73343420000003,-2.871856299999934],[106.73514320000004,-2.879467299999931],[106.73103090000006,-2.884249799999964],[106.72547670000006,-2.885763499999939],[106.71871710000005,-2.890347299999974],[106.718389,-2.894166299999938],[106.72223420000006,-2.902986099999964],[106.72744510000007,-2.904635799999937],[106.73475410000009,-2.904221599999971],[106.74409250000008,-2.892604199999937],[106.74488590000004,-2.8883975],[106.74750280000006,-2.886598399999968],[106.74879220000008,-2.8815886],[106.74783850000006,-2.878405699999973],[106.74518350000005,-2.876354499999934],[106.74011760000008,-2.876130699999976],[106.73978950000009,-2.870283699999959],[106.73647830000004,-2.867422899999951]]],[[[107.08954760000006,-2.851756899999941],[107.08843340000004,-2.850939799999935],[107.08889150000005,-2.853453],[107.09234550000008,-2.8564241],[107.09428910000008,-2.855223299999977],[107.09458620000004,-2.853972899999974],[107.09182550000008,-2.851707399999952],[107.08954760000006,-2.851756899999941]]],[[[106.84392570000006,-2.843991099999926],[106.84230060000004,-2.842507399999931],[106.83650230000006,-2.842962499999942],[106.83166530000005,-2.845913199999927],[106.82907130000007,-2.85106],[106.83241290000007,-2.853343499999937],[106.83900470000003,-2.854224699999975],[106.842972,-2.857815099999925],[106.85110490000005,-2.8592882],[106.85432450000008,-2.858034399999951],[106.85488150000003,-2.853753099999949],[106.85351580000008,-2.850217899999961],[106.85481280000005,-2.846648699999946],[106.85377520000009,-2.844213],[106.851433,-2.843057399999964],[106.84392570000006,-2.843991099999926]]],[[[106.79663110000007,-2.837751699999956],[106.78767420000008,-2.833049599999924],[106.78420280000006,-2.836652799999968],[106.78137990000005,-2.843196399999954],[106.78583550000008,-2.843748599999969],[106.78892540000004,-2.841628799999967],[106.79898090000006,-2.842415399999936],[106.80303980000008,-2.8402455],[106.79663110000007,-2.837751699999956]]],[[[107.05799120000006,-2.820906099999945],[107.05435150000005,-2.819668099999944],[107.05194980000005,-2.821723199999951],[107.05162790000008,-2.826972299999966],[107.04788920000004,-2.827541799999949],[107.04853290000005,-2.8287798],[107.04650260000005,-2.832444199999941],[107.04781490000005,-2.834251699999925],[107.04571030000005,-2.836802],[107.04719590000008,-2.842843399999936],[107.04486850000006,-2.837569499999972],[107.04380380000003,-2.838634199999944],[107.04407610000004,-2.843214799999942],[107.04224390000007,-2.841828199999952],[107.04135260000004,-2.838139],[107.03966890000004,-2.840045499999974],[107.04041170000005,-2.842967199999975],[107.03793160000004,-2.845148799999947],[107.03857330000005,-2.850687],[107.03449410000007,-2.851261699999952],[107.03741570000005,-2.864433899999938],[107.03498930000006,-2.862428399999942],[107.03347890000003,-2.855124199999977],[107.030483,-2.853960499999971],[107.02861170000006,-2.867140699999936],[107.02511010000006,-2.867033699999979],[107.024194,-2.8707972],[107.02557780000006,-2.872950399999979],[107.02399310000004,-2.873851099999968],[107.02449110000003,-2.872307599999942],[107.02352250000007,-2.873476399999959],[107.02241130000004,-2.872827499999971],[107.01941530000005,-2.8781509],[107.02231220000004,-2.883598099999972],[107.028106,-2.885677899999962],[107.03018120000007,-2.884747599999969],[107.03078010000007,-2.886296899999934],[107.03105250000004,-2.885133199999927],[107.034395,-2.888698599999941],[107.03370180000007,-2.890803199999937],[107.03813380000008,-2.896324599999957],[107.04151550000006,-2.897483099999931],[107.04405140000006,-2.902440299999967],[107.05053850000007,-2.904718199999934],[107.04982040000004,-2.9055353],[107.052544,-2.908283599999947],[107.05665420000008,-2.909447399999976],[107.06187850000003,-2.907516099999953],[107.06445350000007,-2.908655],[107.07387970000008,-2.908229199999937],[107.07448120000004,-2.906723799999952],[107.07596680000006,-2.907441799999958],[107.07732860000004,-2.906203799999957],[107.07779910000005,-2.908333199999959],[107.08447390000003,-2.9119845],[107.08599460000005,-2.910016799999937],[107.08463280000007,-2.899122499999976],[107.08683640000004,-2.896522699999935],[107.08658880000007,-2.892907799999932],[107.08908960000008,-2.884910299999945],[107.09290260000006,-2.881245899999954],[107.091516,-2.8772348],[107.09466730000008,-2.874571599999967],[107.09305110000008,-2.873248499999931],[107.09433860000007,-2.87154],[107.09211030000006,-2.868568799999935],[107.09334830000006,-2.868296499999929],[107.09317490000007,-2.866662299999973],[107.09102080000008,-2.864136799999926],[107.08874290000006,-2.864706299999966],[107.09211030000006,-2.862304599999959],[107.09240740000007,-2.860422799999981],[107.08963430000006,-2.855569899999978],[107.08718310000006,-2.855396599999949],[107.08688590000008,-2.858194499999968],[107.08523940000003,-2.857067899999947],[107.08507850000007,-2.851558799999964],[107.07648680000005,-2.844304199999954],[107.07513740000007,-2.841370099999949],[107.070693,-2.839537899999925],[107.06940550000007,-2.841753899999958],[107.07120060000005,-2.848798099999954],[107.06787040000006,-2.845282199999929],[107.06764750000008,-2.848538099999928],[107.065741,-2.847807699999976],[107.06432970000009,-2.843858499999953],[107.06707810000006,-2.843561399999942],[107.06669430000005,-2.841729199999975],[107.06385930000005,-2.842509099999972],[107.06363640000006,-2.844106099999976],[107.06083860000007,-2.840243599999951],[107.058573,-2.840751099999977],[107.06051670000005,-2.836641],[107.05925390000004,-2.834870699999954],[107.06095,-2.834288799999968],[107.06004630000007,-2.8322214],[107.06187850000003,-2.831280499999934],[107.062027,-2.826922799999977],[107.05799120000006,-2.820906099999945]]],[[[106.66152710000006,-2.715803699999981],[106.65657510000005,-2.7193612],[106.65608140000006,-2.721150299999977],[106.64879660000008,-2.717889199999945],[106.64382660000007,-2.718677],[106.63795410000006,-2.713180299999976],[106.63699750000006,-2.702159],[106.63336840000005,-2.695230799999933],[106.62201560000005,-2.694759799999929],[106.60161310000007,-2.690757],[106.59795640000004,-2.684288],[106.59156760000008,-2.6850569],[106.58751430000007,-2.681296499999974],[106.586242,-2.676766399999963],[106.56938690000004,-2.668817399999966],[106.55994450000009,-2.661911699999962],[106.55709260000003,-2.6605933],[106.54993840000009,-2.6616205],[106.54314220000003,-2.660164899999927],[106.53913270000004,-2.655655399999944],[106.53221680000007,-2.655542],[106.52978760000008,-2.6534708],[106.52237530000008,-2.652702799999929],[106.51532480000009,-2.646472],[106.51398350000005,-2.646642299999939],[106.512549,-2.651206],[106.51046940000003,-2.652717499999937],[106.51141110000003,-2.659103499999958],[106.50914670000009,-2.6604771],[106.50267590000004,-2.658116399999926],[106.49709180000008,-2.662040699999977],[106.49640620000008,-2.657061799999951],[106.49338090000003,-2.657144399999936],[106.492614,-2.648319299999969],[106.49618390000006,-2.629299599999968],[106.49220770000005,-2.624740599999939],[106.49125490000006,-2.618466699999942],[106.49545570000004,-2.610559199999955],[106.488901,-2.611795299999926],[106.48604730000005,-2.614207799999974],[106.48202570000007,-2.613742599999966],[106.478495,-2.617625299999929],[106.47013840000005,-2.617053399999975],[106.46692660000008,-2.618867199999954],[106.46189110000006,-2.616985099999965],[106.44990320000005,-2.6171773],[106.44370620000007,-2.614373899999975],[106.44379370000007,-2.592574499999955],[106.44678470000008,-2.588024899999937],[106.44872160000006,-2.581044799999972],[106.45518360000005,-2.578182799999979],[106.45761850000008,-2.573289],[106.45632730000005,-2.568313099999955],[106.457863,-2.562256899999966],[106.45551710000007,-2.554663099999971],[106.44327580000004,-2.562702299999955],[106.43495630000007,-2.564422699999966],[106.42885590000009,-2.563170299999967],[106.41002140000006,-2.568665599999974],[106.40182040000008,-2.567723099999967],[106.40005550000006,-2.563998099999935],[106.39728790000004,-2.568541299999936],[106.39451310000004,-2.566779599999961],[106.39024320000004,-2.5675539],[106.37837450000006,-2.565369799999928],[106.37289820000007,-2.556283],[106.37327940000006,-2.553884799999935],[106.37757620000008,-2.550934499999926],[106.37230850000009,-2.5488985],[106.36029880000007,-2.546897499999943],[106.34717010000008,-2.549616299999968],[106.34642390000005,-2.548032699999965],[106.334156,-2.545678699999939],[106.33207830000003,-2.551388499999973],[106.32965780000006,-2.552333399999952],[106.32190270000007,-2.550157],[106.32459890000007,-2.546779299999969],[106.31572820000008,-2.546512499999949],[106.31349670000009,-2.548755299999925],[106.30568440000008,-2.547337399999947],[106.30201650000004,-2.5496099],[106.29710260000007,-2.5586355],[106.29689810000008,-2.564345299999957],[106.28913260000007,-2.570620199999951],[106.28533710000005,-2.567846199999963],[106.28228890000008,-2.568483699999945],[106.28122190000005,-2.573067699999967],[106.27756450000004,-2.575043899999969],[106.27167880000007,-2.576847199999975],[106.26735560000009,-2.575159799999938],[106.26292710000007,-2.575493699999925],[106.25291570000007,-2.580196599999965],[106.24752940000008,-2.584724],[106.23624240000004,-2.584592599999951],[106.22807240000009,-2.581260099999952],[106.22650690000006,-2.576647199999968],[106.21875960000006,-2.572169299999928],[106.21478110000004,-2.570618899999943],[106.20689390000007,-2.571104599999956],[106.20243420000008,-2.569645299999934],[106.20012150000008,-2.564496199999951],[106.200966,-2.536718499999949],[106.19918560000008,-2.526933499999927],[106.20059910000003,-2.523268],[106.21038870000007,-2.515480099999934],[106.21270470000007,-2.510810599999957],[106.22243820000006,-2.504956],[106.22582330000006,-2.478905499999939],[106.23407050000009,-2.4763048],[106.23509710000008,-2.471377399999938],[106.23380620000006,-2.469304199999954],[106.23019680000004,-2.4690483],[106.224779,-2.464645399999938],[106.22194470000005,-2.466203699999937],[106.22184640000006,-2.470879699999955],[106.21885560000004,-2.471133099999975],[106.21627240000004,-2.465431099999932],[106.21317830000004,-2.464915299999973],[106.20931410000009,-2.468030399999975],[106.205446,-2.466737499999965],[106.19590850000009,-2.468042599999933],[106.19178090000008,-2.475001599999928],[106.18586280000005,-2.4776456],[106.18019820000006,-2.485688799999934],[106.17710340000008,-2.484395099999972],[106.14436810000007,-2.4916844],[106.13963210000009,-2.490351],[106.13732620000008,-2.495697699999937],[106.14179560000008,-2.4981692],[106.14205680000003,-2.502058399999953],[106.12096140000006,-2.501311899999962],[106.116788,-2.498450099999957],[106.11188120000008,-2.488600799999972],[106.10663740000007,-2.488430899999969],[106.09472790000007,-2.491964399999972],[106.08845140000005,-2.4912851],[106.086508,-2.494513799999936],[106.08739530000008,-2.4964004],[106.08146760000005,-2.498998399999948],[106.06857820000005,-2.500824099999932],[106.06470450000006,-2.492788799999971],[106.06109460000005,-2.492273099999977],[106.060327,-2.499534299999937],[106.05852390000007,-2.501610299999925],[106.05310780000008,-2.499280899999974],[106.05130550000007,-2.502394],[106.05259710000007,-2.5055047],[106.05672480000004,-2.508613],[106.05518120000005,-2.512763199999938],[106.05054370000005,-2.516915799999936],[106.04487160000008,-2.516920399999947],[106.03068770000004,-2.512523499999929],[106.02991180000004,-2.509412399999974],[106.03145410000008,-2.5034471],[106.03024690000007,-2.501267199999972],[106.02865680000008,-2.501716399999964],[106.025772,-2.490486099999941],[106.02564550000005,-2.482849099999953],[106.02833850000007,-2.475444099999947],[106.04472620000007,-2.462551299999973],[106.04573270000009,-2.458417599999962],[106.04482020000006,-2.451574799999946],[106.03456040000003,-2.4379606],[106.028235,-2.436873899999966],[106.00542610000008,-2.445310099999972],[106.00425590000003,-2.4530727],[105.99086790000007,-2.461284199999966],[105.98774950000006,-2.466520299999956],[105.98436890000005,-2.468878099999927],[105.93285260000005,-2.469962199999941],[105.93165350000004,-2.473611099999971],[105.93456220000007,-2.48041],[105.93603470000005,-2.4949714],[105.93781620000004,-2.496371199999942],[105.93583470000004,-2.4975529],[105.93744020000008,-2.500555399999939],[105.93619030000008,-2.502230599999962],[105.93655920000003,-2.510287299999959],[105.93526210000005,-2.511678],[105.93630740000003,-2.512850499999956],[105.93446220000004,-2.514413899999965],[105.93344420000005,-2.521167399999968],[105.93463120000007,-2.522501599999941],[105.933635,-2.523512499999924],[105.93448950000004,-2.527166499999964],[105.93840590000008,-2.530294799999979],[105.92846960000008,-2.535023699999954],[105.92963060000005,-2.535829099999944],[105.92733640000006,-2.536029],[105.92279120000006,-2.541807699999936],[105.91912750000006,-2.542810299999928],[105.91770930000007,-2.545316599999978],[105.91651320000005,-2.544740599999955],[105.91251210000007,-2.563040599999965],[105.90378530000004,-2.581974199999934],[105.89916890000006,-2.588068399999941],[105.890792,-2.5881715],[105.89212250000008,-2.590560899999957],[105.89171960000004,-2.596005],[105.89425470000003,-2.596379099999979],[105.89596430000006,-2.602901499999973],[105.89900030000007,-2.605206599999974],[105.89649840000004,-2.616750699999955],[105.88742230000008,-2.638399699999979],[105.88655150000005,-2.644291299999963],[105.89177460000008,-2.646901699999944],[105.89803250000006,-2.660532899999964],[105.90008670000009,-2.660454899999934],[105.90153430000004,-2.663055099999951],[105.90142270000007,-2.666612699999973],[105.90283070000004,-2.667070699999954],[105.90303140000009,-2.669509399999924],[105.90296520000004,-2.683012799999972],[105.90547940000005,-2.687410099999965],[105.90632590000007,-2.6951844],[105.915801,-2.7096657],[105.91907120000008,-2.719139],[105.91989580000006,-2.724292599999956],[105.91700040000006,-2.726466499999958],[105.91937110000003,-2.743866899999944],[105.92853280000008,-2.754013599999951],[105.93282670000008,-2.7625605],[105.94850310000004,-2.775257199999942],[105.95523090000006,-2.787766399999953],[105.95596180000007,-2.7919455],[105.95454690000008,-2.798148599999934],[105.95250420000008,-2.799582199999975],[105.95350680000007,-2.801446899999974],[105.94978680000008,-2.808989899999972],[105.95016770000007,-2.819813099999976],[105.95319010000009,-2.820220199999937],[105.96799690000006,-2.814958399999966],[105.977295,-2.815483099999938],[105.99547860000007,-2.821996599999977],[106.02148330000006,-2.827227199999925],[106.03195670000008,-2.832420699999943],[106.05820810000006,-2.830163199999959],[106.07256740000008,-2.833999799999958],[106.09455050000008,-2.8374786],[106.12573650000007,-2.852010599999971],[106.13709810000006,-2.863643599999932],[106.14082360000003,-2.869725399999936],[106.14073520000005,-2.873932299999979],[106.14203260000005,-2.875770099999954],[106.15396170000008,-2.874104699999975],[106.15517060000008,-2.875412399999959],[106.155987,-2.873831099999961],[106.16884530000004,-2.871464799999956],[106.182557,-2.871421599999962],[106.18555470000007,-2.872433199999932],[106.18607280000003,-2.874246599999935],[106.19255550000008,-2.873876499999938],[106.195658,-2.875745399999971],[106.19745290000009,-2.880050799999935],[106.21112760000005,-2.882548899999961],[106.21891790000006,-2.886089399999946],[106.22144680000008,-2.889586699999938],[106.22737440000009,-2.8926892],[106.227874,-2.895532699999933],[106.230002,-2.895748599999934],[106.23326490000005,-2.900146399999926],[106.23697190000007,-2.899986099999978],[106.23800820000008,-2.9012937],[106.24362730000007,-2.898857299999975],[106.26245230000006,-2.899048499999935],[106.27589260000008,-2.901380099999926],[106.28391730000004,-2.904747799999939],[106.28826580000003,-2.907517299999938],[106.29615480000007,-2.916220499999952],[106.31274080000009,-2.925596],[106.32146870000008,-2.933034699999951],[106.32854350000008,-2.944754099999955],[106.33077640000005,-2.951754899999969],[106.33114030000007,-2.956615399999976],[106.32904310000004,-2.958798899999977],[106.32943170000004,-2.963098099999968],[106.33590820000006,-2.967785799999945],[106.34636930000005,-2.96728],[106.34991290000005,-2.970542899999941],[106.37389140000005,-2.9681682],[106.377179,-2.969611599999951],[106.37745650000005,-2.971091899999976],[106.38123760000008,-2.9711659],[106.38384670000005,-2.973139699999933],[106.38573410000004,-2.970222199999967],[106.38562310000003,-2.966644699999961],[106.40354760000008,-2.9657257],[106.41374350000007,-2.967206],[106.42428470000004,-2.971073399999966],[106.42995320000006,-2.974755799999969],[106.43756930000006,-2.986232499999971],[106.43867490000008,-2.9933341],[106.44005530000004,-2.994856899999945],[106.43920540000005,-2.995634799999948],[106.44375290000005,-3.003150699999935],[106.44140120000009,-3.011634799999968],[106.44496650000008,-3.011654799999974],[106.44841430000008,-3.015014899999926],[106.45807970000004,-3.019394299999931],[106.45887540000007,-3.021565499999951],[106.46236040000008,-3.021688799999936],[106.46870450000006,-3.025667899999974],[106.47966190000005,-3.034839199999965],[106.49110990000008,-3.049766],[106.49345380000005,-3.054799199999934],[106.49207830000006,-3.0571615],[106.49432350000006,-3.057235599999956],[106.49749930000007,-3.061475299999927],[106.498561,-3.068732899999929],[106.49740140000006,-3.0765602],[106.49442220000009,-3.0784662],[106.495736,-3.084375199999954],[106.49072750000005,-3.087743],[106.49105440000005,-3.090697499999976],[106.495261,-3.093152399999951],[106.49618010000006,-3.097426899999959],[106.50169740000007,-3.101898799999958],[106.50079070000004,-3.105297399999927],[106.50159880000007,-3.104292],[106.50418320000006,-3.105137],[106.50520090000003,-3.107598099999962],[106.50652710000008,-3.105871],[106.50909920000004,-3.107049099999927],[106.50834050000009,-3.109732199999939],[106.51005520000007,-3.109787799999935],[106.51418350000006,-3.116817499999968],[106.51334280000003,-3.114416899999981],[106.514669,-3.112578799999937],[106.51845,-3.111672099999964],[106.52044230000007,-3.113399199999947],[106.52247160000007,-3.1095873],[106.52499430000006,-3.110093099999972],[106.52493270000008,-3.108014399999945],[106.52756640000007,-3.106299699999965],[106.53181010000009,-3.1078356],[106.53023720000004,-3.1066081],[106.53116860000006,-3.104208699999958],[106.537935,-3.101137],[106.54477210000005,-3.101870399999939],[106.54581170000006,-3.103012099999944],[106.54517020000009,-3.106447699999933],[106.54676770000003,-3.108298199999979],[106.55028360000006,-3.1096305],[106.55078930000008,-3.107866399999978],[106.55361430000005,-3.108828599999924],[106.55420650000008,-3.106349],[106.55268910000007,-3.101686],[106.55046860000004,-3.101093799999944],[106.55051790000005,-3.097911099999976],[106.55155420000006,-3.099206399999957],[106.55166520000006,-3.098194799999931],[106.55004920000005,-3.096751499999925],[106.55354030000007,-3.092409099999941],[106.56825740000005,-3.082170099999928],[106.58480020000007,-3.076964199999964],[106.59508180000006,-3.075541399999963],[106.59936930000003,-3.077877099999967],[106.60210790000008,-3.0798756],[106.60136770000008,-3.082022099999961],[106.60550040000004,-3.083749099999977],[106.60690670000008,-3.089263399999936],[106.61154510000006,-3.085562599999946],[106.61687430000006,-3.087289599999963],[106.61778720000007,-3.085106099999962],[106.62874180000006,-3.081503899999973],[106.64337250000005,-3.082515499999943],[106.65327850000006,-3.086919499999965],[106.65317980000003,-3.089053699999965],[106.657041,-3.0923845],[106.65638720000004,-3.094494],[106.65802790000004,-3.096837799999946],[106.65720140000008,-3.101229499999931],[106.65886670000003,-3.102130099999954],[106.66149440000004,-3.100773099999969],[106.66317210000005,-3.101920299999961],[106.66533090000007,-3.098898],[106.66646580000008,-3.100341299999968],[106.67191840000004,-3.094580299999961],[106.68367480000006,-3.089312799999959],[106.68794320000006,-3.089707499999975],[106.69036110000008,-3.0932603],[106.69195240000005,-3.092224099999953],[106.70041460000004,-3.094326199999955],[106.70493290000007,-3.097964099999956],[106.70673980000004,-3.093583299999977],[106.70998790000004,-3.0927602],[106.71090080000005,-3.0893744],[106.71979520000008,-3.082577199999946],[106.72720930000008,-3.081405299999972],[106.73139120000008,-3.084477],[106.73543820000003,-3.084821599999941],[106.73641210000005,-3.086697499999957],[106.73721390000009,-3.085044399999958],[106.73982920000009,-3.085241799999949],[106.737362,-3.083095299999968],[106.73637510000003,-3.077309599999978],[106.73237810000006,-3.072782299999972],[106.73387080000003,-3.0682672],[106.73728790000007,-3.065651899999978],[106.74014990000006,-3.059286499999928],[106.74297490000004,-3.056449099999952],[106.73995260000004,-3.053870899999936],[106.73965650000008,-3.051946399999963],[106.73510440000007,-3.049701199999959],[106.72902270000009,-3.031937099999936],[106.73364880000008,-3.023980299999948],[106.74401730000005,-3.013636399999939],[106.74141440000005,-3.006555399999968],[106.73747920000005,-3.004458199999931],[106.73092860000008,-3.0061853],[106.73005280000007,-3.004964],[106.729658,-3.006037299999946],[106.71376060000006,-3.004564],[106.70438410000008,-3.005159399999968],[106.69440730000008,-3.003070399999956],[106.68038110000003,-2.988982499999963],[106.67737720000008,-2.9839863],[106.67743270000005,-2.979107399999975],[106.67542190000006,-2.975221399999953],[106.66771180000006,-2.978108099999929],[106.660674,-2.977892199999928],[106.654105,-2.975462],[106.63876490000007,-2.974425799999949],[106.62883430000005,-2.970071099999927],[106.62769930000007,-2.968393399999968],[106.62868620000006,-2.963545199999942],[106.62392450000004,-2.960572199999945],[106.61987820000007,-2.9613371],[106.61787970000006,-2.965173599999957],[106.60880030000004,-2.963125799999943],[106.59958520000004,-2.955835099999945],[106.594626,-2.947557499999959],[106.59217110000009,-2.939477299999965],[106.59056740000005,-2.919023899999956],[106.591579,-2.907773299999974],[106.59461370000008,-2.890601299999958],[106.60086810000007,-2.8751564],[106.60200050000009,-2.863300199999969],[106.61853810000008,-2.832423899999981],[106.63152770000005,-2.792421599999955],[106.64137260000007,-2.767603599999973],[106.64657570000008,-2.758498499999973],[106.64587920000008,-2.754677099999981],[106.65240630000005,-2.742706],[106.65870060000009,-2.722996399999943],[106.66222260000006,-2.717918499999939],[106.66152710000006,-2.715803699999981]]]]},"properties":{"shapeName":"Bangka Selatan","shapeISO":"","shapeID":"22746128B22999524317391","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[105.78970660000005,-2.400302499999952],[105.78565730000008,-2.398287899999957],[105.78237730000006,-2.401469299999974],[105.78678070000007,-2.406211299999939],[105.78557430000006,-2.409726599999942],[105.78768060000004,-2.410924699999953],[105.78772280000004,-2.418597099999943],[105.789456,-2.419130099999961],[105.79084690000008,-2.422901599999932],[105.79092820000005,-2.418089499999951],[105.80155050000008,-2.416212],[105.80099880000006,-2.412848599999961],[105.80200430000008,-2.4076489],[105.80312240000006,-2.407835599999942],[105.80148640000004,-2.404834299999948],[105.79567560000004,-2.401330599999937],[105.78970660000005,-2.400302499999952]]],[[[105.76280630000008,-2.391818299999954],[105.761956,-2.390589899999952],[105.760162,-2.391656599999976],[105.76078570000004,-2.393580699999973],[105.76273320000007,-2.393733199999929],[105.76334560000004,-2.396478599999966],[105.76352620000006,-2.394258199999967],[105.76613430000003,-2.392990599999962],[105.76280630000008,-2.391818299999954]]],[[[105.75259840000007,-2.387894399999936],[105.75115020000004,-2.386236099999962],[105.74929910000009,-2.387661399999956],[105.75118320000007,-2.389648099999931],[105.75410860000005,-2.389145599999949],[105.75259840000007,-2.387894399999936]]],[[[106.44468670000003,-2.287681599999928],[106.44803110000004,-2.284118799999931],[106.447767,-2.279998099999943],[106.44504010000009,-2.283039599999938],[106.44468670000003,-2.287681599999928]]],[[[106.326912,-2.269316299999957],[106.32969160000005,-2.266678399999932],[106.32917090000007,-2.263329699999929],[106.32708520000006,-2.262205799999947],[106.32493240000008,-2.264177899999936],[106.32478050000009,-2.266443699999968],[106.326912,-2.269316299999957]]],[[[106.35737990000007,-2.259005699999932],[106.36172270000009,-2.254496499999959],[106.35645410000006,-2.258975599999928],[106.34714540000004,-2.257858799999951],[106.34948110000005,-2.259602799999925],[106.35737990000007,-2.259005699999932]]],[[[106.37159780000007,-2.2523963],[106.369539,-2.252153599999929],[106.36131390000008,-2.256325599999968],[106.36975890000008,-2.253063699999927],[106.37264030000006,-2.2535505],[106.37159780000007,-2.2523963]]],[[[106.38710890000004,-2.2508308],[106.38529410000007,-2.250048799999945],[106.38197880000007,-2.253453],[106.37509950000003,-2.253167499999961],[106.38146180000007,-2.254106799999931],[106.38506930000005,-2.251539799999932],[106.38687350000004,-2.252422],[106.38710890000004,-2.2508308]]],[[[106.29822260000009,-2.153714299999933],[106.29541170000005,-2.154022399999974],[106.29225350000007,-2.1566946],[106.29743130000008,-2.156605199999944],[106.29949850000008,-2.155097299999966],[106.29822260000009,-2.153714299999933]]],[[[106.27506840000007,-2.149359899999979],[106.27004560000006,-2.149545599999954],[106.26625870000004,-2.153118899999924],[106.26656250000008,-2.156688699999961],[106.26238250000006,-2.157781399999976],[106.25727340000009,-2.162747499999966],[106.26392580000004,-2.157632199999966],[106.27185740000004,-2.159296499999925],[106.27398650000003,-2.158501799999954],[106.27889130000005,-2.1529873],[106.27780610000008,-2.150174499999935],[106.27506840000007,-2.149359899999979]]],[[[105.80596470000006,-2.370093499999939],[105.81842970000008,-2.381041599999946],[105.82673140000009,-2.393396499999938],[105.83319330000006,-2.411005399999965],[105.83519150000006,-2.413167099999953],[105.86169470000004,-2.424274299999979],[105.86845590000007,-2.4284414],[105.87429320000007,-2.4290556],[105.87991730000005,-2.424199199999975],[105.88084930000008,-2.427702],[105.91283190000007,-2.444429299999967],[105.91966380000008,-2.451291499999968],[105.920665,-2.454305599999941],[105.92699620000008,-2.459325799999931],[105.928165,-2.463847099999953],[105.93285260000005,-2.469962199999941],[105.98436890000005,-2.468878099999927],[105.98774950000006,-2.466520299999956],[105.99086790000007,-2.461284199999966],[106.00425590000003,-2.4530727],[106.00542610000008,-2.445310099999972],[106.028235,-2.436873899999966],[106.03456040000003,-2.4379606],[106.04482020000006,-2.451574799999946],[106.04573270000009,-2.458417599999962],[106.04472620000007,-2.462551299999973],[106.02833850000007,-2.475444099999947],[106.02564550000005,-2.482849099999953],[106.025772,-2.490486099999941],[106.02865680000008,-2.501716399999964],[106.03024690000007,-2.501267199999972],[106.03145410000008,-2.5034471],[106.02991180000004,-2.509412399999974],[106.03068770000004,-2.512523499999929],[106.04487160000008,-2.516920399999947],[106.05054370000005,-2.516915799999936],[106.05518120000005,-2.512763199999938],[106.05672480000004,-2.508613],[106.05259710000007,-2.5055047],[106.05130550000007,-2.502394],[106.05310780000008,-2.499280899999974],[106.05852390000007,-2.501610299999925],[106.060327,-2.499534299999937],[106.06109460000005,-2.492273099999977],[106.06470450000006,-2.492788799999971],[106.06857820000005,-2.500824099999932],[106.08146760000005,-2.498998399999948],[106.08739530000008,-2.4964004],[106.086508,-2.494513799999936],[106.08845140000005,-2.4912851],[106.09472790000007,-2.491964399999972],[106.10663740000007,-2.488430899999969],[106.11188120000008,-2.488600799999972],[106.116788,-2.498450099999957],[106.12096140000006,-2.501311899999962],[106.14205680000003,-2.502058399999953],[106.14179560000008,-2.4981692],[106.13732620000008,-2.495697699999937],[106.13963210000009,-2.490351],[106.14436810000007,-2.4916844],[106.17710340000008,-2.484395099999972],[106.18019820000006,-2.485688799999934],[106.18586280000005,-2.4776456],[106.19178090000008,-2.475001599999928],[106.19590850000009,-2.468042599999933],[106.205446,-2.466737499999965],[106.20931410000009,-2.468030399999975],[106.21317830000004,-2.464915299999973],[106.21627240000004,-2.465431099999932],[106.21885560000004,-2.471133099999975],[106.22184640000006,-2.470879699999955],[106.22194470000005,-2.466203699999937],[106.224779,-2.464645399999938],[106.23019680000004,-2.4690483],[106.23380620000006,-2.469304199999954],[106.23509710000008,-2.471377399999938],[106.23407050000009,-2.4763048],[106.22582330000006,-2.478905499999939],[106.22243820000006,-2.504956],[106.21270470000007,-2.510810599999957],[106.21038870000007,-2.515480099999934],[106.20059910000003,-2.523268],[106.19918560000008,-2.526933499999927],[106.200966,-2.536718499999949],[106.20012150000008,-2.564496199999951],[106.20243420000008,-2.569645299999934],[106.20689390000007,-2.571104599999956],[106.21478110000004,-2.570618899999943],[106.21875960000006,-2.572169299999928],[106.22650690000006,-2.576647199999968],[106.22807240000009,-2.581260099999952],[106.23624240000004,-2.584592599999951],[106.24752940000008,-2.584724],[106.25291570000007,-2.580196599999965],[106.26292710000007,-2.575493699999925],[106.26735560000009,-2.575159799999938],[106.27167880000007,-2.576847199999975],[106.27756450000004,-2.575043899999969],[106.28122190000005,-2.573067699999967],[106.28228890000008,-2.568483699999945],[106.28533710000005,-2.567846199999963],[106.28913260000007,-2.570620199999951],[106.29689810000008,-2.564345299999957],[106.29710260000007,-2.5586355],[106.30201650000004,-2.5496099],[106.30568440000008,-2.547337399999947],[106.31349670000009,-2.548755299999925],[106.31572820000008,-2.546512499999949],[106.32459890000007,-2.546779299999969],[106.32190270000007,-2.550157],[106.32965780000006,-2.552333399999952],[106.33207830000003,-2.551388499999973],[106.334156,-2.545678699999939],[106.34642390000005,-2.548032699999965],[106.34717010000008,-2.549616299999968],[106.36029880000007,-2.546897499999943],[106.37230850000009,-2.5488985],[106.37757620000008,-2.550934499999926],[106.37327940000006,-2.553884799999935],[106.37289820000007,-2.556283],[106.37837450000006,-2.565369799999928],[106.39024320000004,-2.5675539],[106.39451310000004,-2.566779599999961],[106.39728790000004,-2.568541299999936],[106.40005550000006,-2.563998099999935],[106.40182040000008,-2.567723099999967],[106.41002140000006,-2.568665599999974],[106.42885590000009,-2.563170299999967],[106.43495630000007,-2.564422699999966],[106.44327580000004,-2.562702299999955],[106.45551710000007,-2.554663099999971],[106.457863,-2.562256899999966],[106.45632730000005,-2.568313099999955],[106.45761850000008,-2.573289],[106.45518360000005,-2.578182799999979],[106.44872160000006,-2.581044799999972],[106.44678470000008,-2.588024899999937],[106.44379370000007,-2.592574499999955],[106.44370620000007,-2.614373899999975],[106.44990320000005,-2.6171773],[106.46189110000006,-2.616985099999965],[106.46692660000008,-2.618867199999954],[106.47013840000005,-2.617053399999975],[106.478495,-2.617625299999929],[106.48202570000007,-2.613742599999966],[106.48604730000005,-2.614207799999974],[106.488901,-2.611795299999926],[106.49545570000004,-2.610559199999955],[106.49125490000006,-2.618466699999942],[106.49220770000005,-2.624740599999939],[106.49618390000006,-2.629299599999968],[106.492614,-2.648319299999969],[106.49338090000003,-2.657144399999936],[106.49640620000008,-2.657061799999951],[106.49709180000008,-2.662040699999977],[106.50267590000004,-2.658116399999926],[106.50914670000009,-2.6604771],[106.51141110000003,-2.659103499999958],[106.51046940000003,-2.652717499999937],[106.512549,-2.651206],[106.51398350000005,-2.646642299999939],[106.51532480000009,-2.646472],[106.52237530000008,-2.652702799999929],[106.52978760000008,-2.6534708],[106.53221680000007,-2.655542],[106.53913270000004,-2.655655399999944],[106.54314220000003,-2.660164899999927],[106.54993840000009,-2.6616205],[106.55709260000003,-2.6605933],[106.55994450000009,-2.661911699999962],[106.56938690000004,-2.668817399999966],[106.586242,-2.676766399999963],[106.58751430000007,-2.681296499999974],[106.59156760000008,-2.6850569],[106.59795640000004,-2.684288],[106.60161310000007,-2.690757],[106.62201560000005,-2.694759799999929],[106.63336840000005,-2.695230799999933],[106.63699750000006,-2.702159],[106.63795410000006,-2.713180299999976],[106.64382660000007,-2.718677],[106.64879660000008,-2.717889199999945],[106.65608140000006,-2.721150299999977],[106.65657510000005,-2.7193612],[106.66152710000006,-2.715803699999981],[106.66537710000006,-2.712073199999963],[106.67066870000008,-2.703094199999953],[106.67519080000005,-2.691834899999947],[106.67959810000008,-2.686402699999974],[106.68137570000005,-2.685968599999967],[106.68222780000008,-2.681373699999938],[106.68932310000008,-2.668785299999968],[106.69238450000006,-2.665574699999979],[106.69747050000007,-2.663317],[106.69899510000005,-2.657272199999966],[106.70291350000008,-2.653166399999975],[106.70343080000004,-2.650329399999976],[106.70857570000004,-2.646376],[106.70774350000005,-2.64314],[106.72033140000008,-2.634459499999934],[106.72320790000003,-2.6307251],[106.72746770000003,-2.629763499999967],[106.73276330000004,-2.624114299999974],[106.73377060000007,-2.620906599999955],[106.74681230000004,-2.608371799999929],[106.762961,-2.598376799999926],[106.76889520000009,-2.601577099999929],[106.77060590000008,-2.603746099999967],[106.77090560000005,-2.607555399999967],[106.77311970000005,-2.607694299999935],[106.77655390000007,-2.6021675],[106.78465550000004,-2.593996899999979],[106.78350530000006,-2.591938099999936],[106.78555010000008,-2.5891331],[106.79750540000003,-2.582522899999958],[106.80880850000005,-2.5785508],[106.81585520000004,-2.578046299999926],[106.81962660000005,-2.5793594],[106.82323860000008,-2.583804599999951],[106.82431020000007,-2.588171],[106.806536,-2.594130499999949],[106.80178220000005,-2.593560399999944],[106.801784,-2.594796599999938],[106.80719230000005,-2.594624099999976],[106.82373740000008,-2.588748799999962],[106.83062,-2.588079499999935],[106.83267120000005,-2.589807099999973],[106.83430640000006,-2.58725],[106.83758450000005,-2.58741],[106.84135010000006,-2.584684899999957],[106.84408710000008,-2.575355699999932],[106.84928040000005,-2.571899299999927],[106.84100440000009,-2.572158599999966],[106.75505990000005,-2.556776199999945],[106.69750870000007,-2.542152099999953],[106.64032480000009,-2.535227],[106.63904090000005,-2.533991299999968],[106.56891780000007,-2.52105],[106.54249450000003,-2.513293],[106.498425,-2.504161599999975],[106.48206490000007,-2.498334899999975],[106.44662460000006,-2.472679699999958],[106.436475,-2.4775066],[106.42359210000006,-2.480267899999944],[106.41517280000005,-2.480212299999948],[106.40501480000006,-2.477346599999976],[106.40132090000009,-2.4786757],[106.39502170000009,-2.4781976],[106.37181410000005,-2.472598],[106.34599690000005,-2.4602453],[106.32734270000009,-2.444555499999979],[106.30672220000008,-2.422047099999929],[106.30164550000006,-2.422666099999958],[106.29949060000007,-2.420825799999932],[106.27950740000006,-2.391657399999929],[106.25812980000006,-2.352812699999959],[106.23828940000004,-2.328980899999976],[106.23471340000003,-2.3163826],[106.23215750000008,-2.315722199999925],[106.23250380000007,-2.313023199999975],[106.23092540000005,-2.310614399999963],[106.23183810000006,-2.3088061],[106.22583970000005,-2.298695299999963],[106.22556960000009,-2.278022199999953],[106.22302060000004,-2.274988399999927],[106.22386810000006,-2.273469599999942],[106.22254410000005,-2.269201399999929],[106.22451990000008,-2.263412399999936],[106.22819540000006,-2.260183499999926],[106.22546,-2.2598063],[106.22572180000009,-2.254757499999926],[106.21435170000007,-2.242893199999969],[106.21125130000007,-2.236177399999974],[106.21181240000004,-2.233019299999967],[106.20617720000007,-2.222423099999958],[106.20473870000006,-2.215733499999942],[106.20624320000007,-2.2131447],[106.20521940000003,-2.205932599999926],[106.20697050000007,-2.203652599999941],[106.20288580000005,-2.201990099999932],[106.20306440000007,-2.194026699999938],[106.19936220000005,-2.189936499999931],[106.19842590000007,-2.185242899999935],[106.19640290000007,-2.182684199999926],[106.20254080000007,-2.182958299999939],[106.20107820000004,-2.181489299999953],[106.20074170000004,-2.1824508],[106.19764930000008,-2.181096199999956],[106.19490510000008,-2.181781799999953],[106.19198370000004,-2.179073199999948],[106.19022310000008,-2.1723378],[106.18839480000008,-2.170360099999925],[106.18988070000006,-2.1657223],[106.19274720000004,-2.165776599999958],[106.19072260000007,-2.164308],[106.19277670000008,-2.162647899999968],[106.19016810000005,-2.1625874],[106.19246490000006,-2.161086],[106.18561720000008,-2.162150299999951],[106.17751590000006,-2.148522499999956],[106.174308,-2.155007799999964],[106.15913860000006,-2.155937799999947],[106.15627650000005,-2.161192399999948],[106.133026,-2.145985199999927],[106.12565480000006,-2.1513717],[106.11784370000004,-2.154462899999942],[106.11238550000007,-2.154742399999975],[106.10888880000005,-2.1525285],[106.10369160000005,-2.1546134],[106.10326780000008,-2.149981699999955],[106.09866980000004,-2.146726599999965],[106.08892690000005,-2.144545899999969],[106.07808890000007,-2.150950799999976],[106.07910390000006,-2.153899699999954],[106.07399730000009,-2.155707499999949],[106.07357350000007,-2.162863699999946],[106.06808630000006,-2.16807],[106.05559760000006,-2.169298399999946],[106.051255,-2.178538199999934],[106.04464150000007,-2.18451],[106.03944280000007,-2.186050199999954],[106.03972640000006,-2.191677699999957],[106.03814310000007,-2.194211299999949],[106.03059350000007,-2.197874499999955],[106.02099670000007,-2.207635799999935],[106.01978810000008,-2.212701599999946],[106.02084750000006,-2.214423799999963],[106.01423790000007,-2.217192299999965],[105.99198920000003,-2.221457],[105.97540010000006,-2.230888599999957],[105.97755990000007,-2.241474699999969],[105.97940510000006,-2.242225099999928],[105.97200920000006,-2.241813299999933],[105.96456710000007,-2.245474799999954],[105.95853490000007,-2.245328499999971],[105.95262360000004,-2.240658],[105.94488710000007,-2.226316099999963],[105.93989610000006,-2.222662899999932],[105.93344660000008,-2.221136399999978],[105.92771980000003,-2.216620899999953],[105.92633810000007,-2.208385399999941],[105.924148,-2.208350399999972],[105.92307940000006,-2.2113759],[105.92373690000005,-2.219976299999928],[105.92199910000005,-2.221945399999925],[105.92265320000007,-2.225079199999925],[105.91867,-2.228143],[105.91794690000006,-2.230403],[105.91929530000004,-2.243230499999925],[105.91791990000007,-2.245345199999974],[105.91299310000005,-2.245712699999956],[105.91147250000006,-2.247317199999941],[105.911764,-2.250086799999963],[105.92040250000008,-2.264905799999951],[105.92242650000009,-2.273153599999944],[105.92889660000009,-2.275254699999948],[105.92435630000006,-2.281489199999953],[105.91979130000004,-2.282966099999953],[105.92245950000006,-2.290061699999967],[105.92041070000005,-2.298295099999962],[105.92150040000007,-2.303403],[105.92000990000008,-2.307084199999963],[105.91208250000005,-2.3126513],[105.90137130000005,-2.329272],[105.90004340000007,-2.338664799999947],[105.902376,-2.34249],[105.89658570000006,-2.341750799999943],[105.89412630000004,-2.338816899999927],[105.88825450000007,-2.338494399999945],[105.88414030000007,-2.334719899999925],[105.87520150000006,-2.332960299999968],[105.86557530000005,-2.333590299999969],[105.85581810000008,-2.339695699999936],[105.85097990000008,-2.338564499999961],[105.84547440000006,-2.339425],[105.84222720000008,-2.346165599999949],[105.83960520000005,-2.346048499999938],[105.83417710000003,-2.348737299999925],[105.830036,-2.347663],[105.827655,-2.353554299999928],[105.82258290000004,-2.358370399999956],[105.82195130000008,-2.360735199999965],[105.81309120000009,-2.366346299999975],[105.80751890000005,-2.367970599999978],[105.80596470000006,-2.370093499999939]]]]},"properties":{"shapeName":"Bangka Tengah","shapeISO":"","shapeID":"22746128B83833659019582","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[113.12450810000007,-6.8928877],[113.12116990000004,-6.889986799999974],[113.11867510000002,-6.890160799999933],[113.11802090000003,-6.894506399999955],[113.11010920000001,-6.894411199999979],[113.10795570000005,-6.893376199999977],[113.1079787000001,-6.888527699999941],[113.08744800000011,-6.888768899999945],[113.08609760000002,-6.888452799999925],[113.08636460000002,-6.886615499999948],[113.08287040000005,-6.887255399999958],[113.07737720000011,-6.883579],[113.07588950000002,-6.8846367],[113.0635909,-6.882000199999936],[113.052658,-6.884908499999938],[113.04809560000001,-6.883526099999926],[113.04504380000003,-6.880698],[113.03600330000006,-6.879667799999936],[113.03086120000012,-6.880884],[113.03004030000011,-6.883025499999974],[113.02697080000007,-6.883751299999972],[113.02453180000009,-6.882597199999964],[113.02563210000005,-6.881005799999969],[113.0227771000001,-6.882945],[113.01040390000003,-6.880941199999938],[113.0067596,-6.882187199999976],[113.0061492000001,-6.881137599999931],[113.0044478000001,-6.882469399999934],[113.00447840000004,-6.884892699999966],[113.00305170000001,-6.884142199999928],[113.00219720000007,-6.887470499999949],[112.99999990000003,-6.8863271],[112.99980920000007,-6.881588699999952],[112.99789420000002,-6.882173799999975],[112.9958114000001,-6.885633699999971],[112.99165960000005,-6.884231899999975],[112.98689260000003,-6.886942699999963],[112.978485,-6.885590399999955],[112.97003930000005,-6.888825699999927],[112.96366110000008,-6.886700399999938],[112.96158590000005,-6.889063699999951],[112.95190420000006,-6.886977899999977],[112.94417560000011,-6.889516199999946],[112.938507,-6.888875299999938],[112.9328918000001,-6.891425],[112.92545310000003,-6.889860399999975],[112.92247,-6.893200199999967],[112.91968530000008,-6.893969799999979],[112.912094,-6.893580699999973],[112.91129290000003,-6.892407699999978],[112.9073333,-6.893116799999973],[112.90389180000011,-6.891653599999927],[112.90332790000002,-6.893549199999939],[112.901306,-6.893753299999958],[112.90129080000008,-6.892338099999961],[112.89990220000004,-6.892664199999956],[112.90078730000005,-6.890219],[112.89541620000011,-6.891898],[112.8820419000001,-6.890490799999952],[112.87751760000003,-6.891464099999951],[112.8790130000001,-6.896545699999933],[112.87525930000004,-6.897952399999951],[112.86989590000007,-6.893897299999935],[112.87231440000005,-6.892856399999971],[112.87125390000006,-6.891851199999962],[112.85921470000005,-6.893069099999934],[112.84933460000002,-6.896654],[112.8473586,-6.898938499999929],[112.848381,-6.908894799999928],[112.84104150000007,-6.916437],[112.83823390000009,-6.9149822],[112.83545680000009,-6.9159735],[112.83224480000001,-6.906312299999968],[112.82904810000002,-6.905686699999933],[112.8271026000001,-6.906636499999934],[112.82638540000005,-6.909066499999938],[112.8235625000001,-6.910022599999934],[112.82234950000009,-6.912736199999927],[112.82979580000006,-6.921214899999939],[112.82859790000009,-6.921275399999956],[112.82650750000005,-6.927327499999933],[112.82756010000003,-6.929917599999953],[112.82220630000006,-6.936342099999933],[112.81369970000003,-6.953003099999933],[112.7973766,-6.971562899999981],[112.79084770000009,-6.97383],[112.7929610000001,-6.976954299999932],[112.79254910000009,-6.978893099999937],[112.7751760000001,-6.997106199999962],[112.76409910000007,-7.004709499999933],[112.75698850000003,-7.007715099999928],[112.7463226000001,-7.016847],[112.7406128,-7.018694499999981],[112.73585570000012,-7.025915699999928],[112.72349410000004,-7.038455399999975],[112.71897880000006,-7.039690299999961],[112.71594230000005,-7.038357099999928],[112.71475210000006,-7.040028899999925],[112.710884,-7.040545799999961],[112.70883930000002,-7.038504399999965],[112.70186610000007,-7.037727199999949],[112.69609060000005,-7.033137199999942],[112.68923180000002,-7.031500199999925],[112.6884612,-7.029723],[112.68574520000004,-7.0325225],[112.68360130000008,-7.030980899999975],[112.68228140000008,-7.031637],[112.67971030000001,-7.037891299999956],[112.67934850000006,-7.043628899999931],[112.67791810000006,-7.043109699999945],[112.67607410000005,-7.046107799999959],[112.6772281000001,-7.052139799999964],[112.67651360000002,-7.056868399999928],[112.67359150000004,-7.059717],[112.67532340000002,-7.066395099999966],[112.67342370000006,-7.073466099999962],[112.6838007,-7.084204099999965],[112.68655380000007,-7.089363699999979],[112.68535190000011,-7.090634299999977],[112.6866817,-7.092684399999939],[112.68603710000002,-7.095658299999968],[112.69166550000011,-7.096991499999945],[112.69355770000004,-7.094632499999932],[112.6999379,-7.094349499999964],[112.70164060000002,-7.092801799999961],[112.7041441,-7.095306599999958],[112.703602,-7.0963488],[112.70600020000006,-7.096718399999929],[112.705635,-7.105247799999972],[112.702087,-7.120098],[112.69208520000007,-7.146345899999972],[112.69114820000004,-7.1539869],[112.70338360000005,-7.165891699999975],[112.71849820000011,-7.171613099999945],[112.7195362000001,-7.172272],[112.71875210000007,-7.173897799999963],[112.7202797000001,-7.173469499999953],[112.7211933000001,-7.1753478],[112.72275650000006,-7.175494799999967],[112.72782030000008,-7.170553499999926],[112.74005310000007,-7.171295699999973],[112.74909980000007,-7.170017],[112.75177,-7.171005],[112.77693170000009,-7.159422199999938],[112.78939050000008,-7.159948699999973],[112.79097740000009,-7.161718699999938],[112.79303730000004,-7.158990199999948],[112.7989698,-7.157796799999971],[112.81236260000003,-7.158287799999925],[112.81563540000002,-7.160000899999943],[112.82047260000002,-7.159463699999947],[112.82344810000006,-7.161406799999952],[112.838005,-7.163036599999941],[112.8451156000001,-7.165685899999971],[112.85009,-7.164435199999957],[112.85273730000006,-7.165463299999942],[112.85865010000009,-7.163116299999956],[112.86486050000008,-7.162668],[112.88568110000006,-7.172575299999949],[112.891159,-7.178034099999934],[112.90235130000008,-7.1806715],[112.90692890000003,-7.1799644],[112.91124720000005,-7.182226],[112.91342920000011,-7.185330199999953],[112.91860950000012,-7.183093299999939],[112.92272180000009,-7.185788899999977],[112.94692980000002,-7.193225599999948],[112.94871510000007,-7.192057899999952],[112.95294940000008,-7.192856099999972],[112.96546160000003,-7.199884699999927],[112.97621150000009,-7.19888],[112.99143970000011,-7.202047599999958],[112.9959487000001,-7.204446599999926],[112.99775690000001,-7.208832499999971],[113.0014983000001,-7.209524099999953],[113.00832260000004,-7.205997699999955],[113.013832,-7.205459899999937],[113.022171,-7.209809599999971],[113.04040420000001,-7.212724099999946],[113.04492940000011,-7.201526899999976],[113.04779930000007,-7.198069499999974],[113.04932510000003,-7.198250499999972],[113.05030780000004,-7.195767899999964],[113.05555760000004,-7.194268],[113.06095110000001,-7.196104299999945],[113.05974150000009,-7.192918],[113.06188020000002,-7.192135899999926],[113.0612334000001,-7.1900785],[113.05843340000001,-7.187829699999952],[113.05426010000008,-7.187577499999975],[113.04821,-7.184324499999946],[113.04983510000011,-7.1786439],[113.05408470000009,-7.1780498],[113.05646500000012,-7.174945599999944],[113.05480950000003,-7.169860599999936],[113.05680080000002,-7.168598],[113.05759420000004,-7.163670299999978],[113.06388850000008,-7.164272099999948],[113.07019030000004,-7.162507799999958],[113.077011,-7.151008399999967],[113.08441720000008,-7.153426399999944],[113.08808040000008,-7.152215099999978],[113.08827970000004,-7.156399099999931],[113.09267420000003,-7.157848599999966],[113.09711450000009,-7.1572144],[113.09688560000006,-7.154392499999972],[113.09358210000005,-7.151215799999932],[113.09526050000011,-7.1480477],[113.09503160000008,-7.141696199999956],[113.09278860000006,-7.139036399999952],[113.09410850000006,-7.134734399999957],[113.09216250000009,-7.133171899999979],[113.09615320000012,-7.127436899999964],[113.10382830000003,-7.125472299999956],[113.1075667,-7.1172035],[113.10569750000002,-7.111433799999929],[113.10727680000002,-7.107961],[113.1102446000001,-7.108446399999934],[113.11225120000006,-7.114208899999937],[113.1155394000001,-7.116165399999943],[113.11381520000009,-7.113404499999945],[113.1145858000001,-7.107355299999938],[113.11267080000005,-7.105822299999943],[113.11343370000009,-7.104346499999963],[113.1159209000001,-7.104572099999928],[113.1148376000001,-7.0993988],[113.11612690000004,-7.098412699999926],[113.11410510000007,-7.098325],[113.11194820000003,-7.095185],[113.11062370000002,-7.0858177],[113.107629,-7.079688499999975],[113.1086001000001,-7.077419799999973],[113.11251060000006,-7.079914299999928],[113.11452470000006,-7.078621099999964],[113.11677540000005,-7.082043899999974],[113.1201324000001,-7.080107399999974],[113.11989580000011,-7.067229],[113.11664570000005,-7.061408799999981],[113.11196890000008,-7.059690199999977],[113.11345540000002,-7.053055299999926],[113.110649,-7.047163199999943],[113.11608880000006,-7.049524599999927],[113.11630240000011,-7.045069399999932],[113.11424240000008,-7.041022099999964],[113.11638630000004,-7.036545],[113.11522660000003,-7.031735599999934],[113.12785330000008,-7.036573199999964],[113.12990560000003,-7.035234199999934],[113.13347620000002,-7.035539399999948],[113.13459000000012,-7.029763899999978],[113.13278950000006,-7.027237199999945],[113.13359060000005,-7.023640399999977],[113.13899220000008,-7.019474299999956],[113.14228050000008,-7.014078899999959],[113.14205160000006,-7.010387699999967],[113.13938130000008,-7.009540799999968],[113.14057150000008,-7.007277299999942],[113.13875570000005,-7.005353199999945],[113.14086140000006,-7.000031199999967],[113.14627070000006,-6.997767199999942],[113.1464995,-6.993474699999979],[113.14475240000002,-6.989298599999927],[113.147811,-6.984626399999968],[113.13384430000008,-6.976145299999928],[113.12706390000005,-6.982142299999964],[113.12284050000005,-6.983165099999951],[113.12204860000008,-6.985507799999937],[113.11729730000002,-6.983924],[113.11583030000008,-6.986903199999972],[113.11402880000003,-6.986905299999933],[113.11256230000004,-6.988915899999938],[113.1050093,-6.987076299999956],[113.10392720000004,-6.985950899999978],[113.10591120000004,-6.984747199999958],[113.10939780000001,-6.974140899999952],[113.10615530000007,-6.972140599999932],[113.1068874,-6.969744399999968],[113.10268480000002,-6.964525799999933],[113.10247310000011,-6.959991499999944],[113.10304910000002,-6.958391199999937],[113.10757440000009,-6.956289],[113.108261,-6.953398],[113.10441130000004,-6.953646899999967],[113.1017074,-6.950309499999946],[113.09919320000006,-6.951011699999981],[113.09510030000001,-6.945797199999959],[113.0977630000001,-6.942837899999972],[113.097976,-6.938617],[113.10065450000002,-6.936571399999934],[113.10164630000008,-6.931810199999973],[113.10694110000009,-6.933566399999961],[113.11121420000006,-6.937359399999934],[113.11559380000006,-6.936481599999979],[113.11758670000006,-6.9272843],[113.11626120000005,-6.9153601],[113.11876670000004,-6.905103899999972],[113.12663830000008,-6.906184199999927],[113.12754810000001,-6.904719099999966],[113.12734210000008,-6.898631799999976],[113.12438430000009,-6.896010299999944],[113.12450810000007,-6.8928877]]]},"properties":{"shapeName":"Bangkalan","shapeISO":"","shapeID":"22746128B97104720177018","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[115.25103330000002,-8.314339599999926],[115.25656460000005,-8.31355469999994],[115.26283510000007,-8.319144499999936],[115.26431360000004,-8.324553299999934],[115.26220220000005,-8.332761299999959],[115.264109,-8.332153399999982],[115.27094690000001,-8.322609199999931],[115.27742680000006,-8.319800799999939],[115.28414470000007,-8.314125199999978],[115.2907226000001,-8.317406199999937],[115.29093990000001,-8.325457099999937],[115.29430450000007,-8.328188799999964],[115.29191030000004,-8.332269799999949],[115.30396580000001,-8.33445759999995],[115.3047494000001,-8.331490199999962],[115.3081595000001,-8.327791499999933],[115.31521780000003,-8.329567299999951],[115.31595260000006,-8.336579399999948],[115.32065850000004,-8.332105899999931],[115.32241190000002,-8.328289],[115.32848740000009,-8.330656499999975],[115.32734440000002,-8.3383207],[115.33097610000004,-8.345587199999954],[115.33100700000011,-8.350150199999973],[115.32980780000003,-8.352280699999937],[115.330275,-8.357934599999965],[115.32563790000006,-8.362431499999957],[115.32568330000004,-8.364396],[115.33660860000009,-8.366317599999945],[115.33615840000004,-8.3737906],[115.33332060000009,-8.377504],[115.33468220000009,-8.380022699999927],[115.33711420000009,-8.38002119999993],[115.33555960000001,-8.389175799999975],[115.330383,-8.403422699999965],[115.330834,-8.414152],[115.32282850000001,-8.428748],[115.31929460000003,-8.433518599999957],[115.3173766000001,-8.43387619999993],[115.31822340000008,-8.439401399999952],[115.32078660000002,-8.440384199999926],[115.32060980000006,-8.444683],[115.32394380000005,-8.449726],[115.32464570000002,-8.452191199999959],[115.32334820000005,-8.455950199999961],[115.32503440000005,-8.45731369999993],[115.32516490000012,-8.461734099999944],[115.3272316,-8.46523419999994],[115.32486190000009,-8.46898559999994],[115.327698,-8.477285299999949],[115.32779940000012,-8.484619299999963],[115.3241647000001,-8.490729699999974],[115.3273445000001,-8.4941965],[115.32745920000002,-8.498364799999933],[115.3300766000001,-8.504865699999925],[115.32966360000012,-8.507955599999946],[115.33241920000012,-8.509478199999933],[115.32976350000001,-8.510395],[115.3291316000001,-8.513087499999926],[115.3318322,-8.515467599999965],[115.33483590000003,-8.515706699999953],[115.33452000000011,-8.52141219999993],[115.33635460000005,-8.523568],[115.3448158000001,-8.524886699999968],[115.35762760000011,-8.520949599999938],[115.35740840000005,-8.517057299999976],[115.35517170000003,-8.514582599999926],[115.355876,-8.513278699999944],[115.35360130000004,-8.511393599999963],[115.35415610000007,-8.507657799999947],[115.35678060000009,-8.50525639999995],[115.35631300000011,-8.499742899999944],[115.35789780000005,-8.493118399999958],[115.36362010000005,-8.488549099999943],[115.36368130000005,-8.483698899999979],[115.36510780000003,-8.483717199999944],[115.3677517000001,-8.479058],[115.36877740000011,-8.479237599999976],[115.36829410000007,-8.476557499999956],[115.36634790000005,-8.475274699999943],[115.37075770000001,-8.470281299999954],[115.37520560000007,-8.461288099999933],[115.37628770000003,-8.460316599999942],[115.38384,-8.461618499999929],[115.38569960000007,-8.467032599999925],[115.39253430000008,-8.459938499999964],[115.40152660000001,-8.462649899999974],[115.40310430000011,-8.4618979],[115.40191670000002,-8.460695899999962],[115.40327320000006,-8.459213399999953],[115.40296460000002,-8.454627099999925],[115.40471790000004,-8.455104399999925],[115.4031811000001,-8.453387599999928],[115.40424510000003,-8.4532125],[115.40383110000005,-8.451660199999935],[115.40592560000005,-8.452094899999963],[115.40572760000009,-8.450586899999962],[115.40830620000008,-8.45019069999995],[115.41002030000004,-8.446688199999926],[115.40886240000009,-8.445468199999937],[115.41165930000011,-8.4430824],[115.4110217000001,-8.441548699999942],[115.41332540000008,-8.438735],[115.41126840000004,-8.436434799999972],[115.41471820000004,-8.4342],[115.41450420000001,-8.4301122],[115.41314160000002,-8.429302899999925],[115.41509760000008,-8.4268992],[115.41511360000004,-8.421193499999958],[115.41356270000006,-8.417943199999968],[115.4168155000001,-8.403574299999946],[115.41563130000009,-8.400209599999926],[115.4125858000001,-8.399415099999942],[115.40909870000007,-8.395568399999945],[115.4076404000001,-8.387308899999937],[115.40839990000006,-8.384864499999935],[115.40376120000008,-8.380668699999944],[115.40479940000012,-8.377041299999973],[115.40002460000005,-8.370907099999954],[115.39592520000008,-8.361797099999933],[115.39613760000009,-8.357427099999938],[115.3991281000001,-8.355721499999959],[115.39797190000002,-8.350597199999982],[115.39875340000003,-8.344511799999964],[115.403484,-8.344889699999953],[115.40228680000007,-8.340985299999943],[115.40586960000007,-8.341021099999978],[115.41077730000006,-8.338256199999933],[115.40928980000001,-8.334829199999945],[115.40911010000002,-8.322842599999944],[115.41355260000012,-8.321326899999974],[115.41587230000005,-8.322695],[115.41819270000008,-8.31952149999995],[115.417475,-8.316420199999925],[115.4160088000001,-8.316371899999979],[115.416691,-8.314535699999965],[115.42003490000002,-8.3123138],[115.4217288000001,-8.312823399999957],[115.42210210000007,-8.3113766],[115.41977830000008,-8.309528599999965],[115.42049980000002,-8.308431199999973],[115.41858060000004,-8.307252499999947],[115.4191224000001,-8.305105099999935],[115.422519,-8.302260799999942],[115.42199820000008,-8.294852799999944],[115.42535540000006,-8.291518199999928],[115.42785050000009,-8.282386599999938],[115.43169530000011,-8.276138099999969],[115.42867280000007,-8.273380399999951],[115.43024660000003,-8.267187499999977],[115.4403486000001,-8.261906499999952],[115.44874120000009,-8.252286399999946],[115.45442990000004,-8.251238899999976],[115.4591051000001,-8.247725699999933],[115.45763660000011,-8.242430399999932],[115.44820890000005,-8.245928799999945],[115.44747510000002,-8.242475499999955],[115.4487031000001,-8.239696699999968],[115.4448291000001,-8.233505],[115.444966,-8.225500799999963],[115.43777030000001,-8.2184807],[115.44121280000002,-8.212847899999929],[115.44346590000009,-8.211591599999963],[115.4468151000001,-8.204056499999979],[115.45411060000004,-8.198226],[115.4480886,-8.189126599999952],[115.44393720000005,-8.1899689],[115.44155910000006,-8.187887299999943],[115.44195410000009,-8.185113599999966],[115.43554730000005,-8.183228699999972],[115.43619640000009,-8.181010699999945],[115.43425060000004,-8.180632],[115.42939350000006,-8.183469299999956],[115.42749820000006,-8.189749699999936],[115.42364830000008,-8.190558299999964],[115.41373560000011,-8.188536799999952],[115.40932450000003,-8.191741099999945],[115.40480160000004,-8.191591899999935],[115.40231950000009,-8.188107399999978],[115.39174040000012,-8.182710699999973],[115.39039260000004,-8.181217899999979],[115.39101930000004,-8.178268699999933],[115.37966090000009,-8.171426699999927],[115.38111050000009,-8.168118399999969],[115.37743320000004,-8.164636599999938],[115.37519010000005,-8.163516],[115.37279010000009,-8.166356],[115.36813590000008,-8.165508899999963],[115.3644167000001,-8.160239399999966],[115.36405330000002,-8.155397],[115.36568330000011,-8.152589299999931],[115.36050320000004,-8.153196499999979],[115.3625750000001,-8.152015499999948],[115.3641407,-8.146568099999968],[115.35805960000005,-8.150456199999951],[115.3538622000001,-8.150579899999968],[115.35154180000006,-8.148028599999975],[115.34500570000012,-8.1486469],[115.33856450000007,-8.1441211],[115.33749240000009,-8.150993599999936],[115.33460130000003,-8.153734799999938],[115.33181320000006,-8.15391509999995],[115.3314468000001,-8.152564599999948],[115.32825950000006,-8.152027],[115.32692650000001,-8.148681899999929],[115.32173810000006,-8.14360449999998],[115.32112490000009,-8.14079659999993],[115.319397,-8.143452899999943],[115.31541750000008,-8.145580099999961],[115.31645240000012,-8.146617599999956],[115.31556220000004,-8.148318],[115.3178008000001,-8.148910599999965],[115.31921180000006,-8.151183],[115.31953310000006,-8.154894899999931],[115.3165825000001,-8.158476],[115.31416260000003,-8.159174],[115.31178760000012,-8.16408819999998],[115.30280930000004,-8.168351199999961],[115.30364010000005,-8.173765599999967],[115.2932843000001,-8.168786099999977],[115.28798050000012,-8.171327299999973],[115.28436330000011,-8.17036749999994],[115.28069210000001,-8.166726499999982],[115.28166910000004,-8.164506099999926],[115.27986090000002,-8.160908199999938],[115.27587240000003,-8.162899],[115.27140140000006,-8.168043399999931],[115.26645210000004,-8.165702],[115.2651062000001,-8.16317689999994],[115.25982090000002,-8.171834699999977],[115.25682160000008,-8.171716499999945],[115.25639840000008,-8.173728199999971],[115.25355600000012,-8.175351899999953],[115.25056970000003,-8.175821199999973],[115.24869840000008,-8.174370299999964],[115.24699610000005,-8.178464399999939],[115.24496480000005,-8.176832],[115.244531,-8.1825571],[115.24236090000011,-8.185726599999953],[115.24523760000011,-8.197977399999957],[115.24300090000008,-8.206562499999961],[115.24256420000006,-8.215994699999953],[115.23717710000005,-8.23332279999994],[115.23214360000009,-8.240200499999958],[115.23308340000006,-8.242627599999935],[115.23658120000005,-8.244513299999937],[115.23876860000007,-8.2440299],[115.2418613000001,-8.251494299999933],[115.24449530000004,-8.2511045],[115.2494541000001,-8.255695699999933],[115.25123680000002,-8.263414199999943],[115.25052960000005,-8.2708005],[115.24510920000012,-8.280669299999943],[115.24634650000007,-8.2872081],[115.24334130000011,-8.296513],[115.24780280000004,-8.301902499999926],[115.247272,-8.308281799999975],[115.25103330000002,-8.314339599999926]]]},"properties":{"shapeName":"Bangli","shapeISO":"","shapeID":"22746128B17250395027266","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[115.55659260000004,-2.828173799999945],[115.55618370000002,-2.829248899999925],[115.5502163000001,-2.8293155],[115.54505570000003,-2.832272],[115.54151080000008,-2.839230599999951],[115.54013780000002,-2.847266],[115.52745170000003,-2.860055299999942],[115.525414,-2.867950899999926],[115.52290430000005,-2.871725399999946],[115.51825910000002,-2.874756399999967],[115.512795,-2.884304799999938],[115.5079300000001,-2.8862984],[115.50666750000005,-2.884884299999953],[115.50775550000003,-2.886185599999976],[115.50058960000001,-2.901817599999958],[115.49735440000006,-2.903903799999966],[115.49596350000002,-2.908741599999928],[115.485381,-2.916179599999964],[115.48456460000011,-2.924978199999941],[115.47987810000006,-2.932627899999943],[115.4770056000001,-2.940821799999981],[115.465637,-2.942877899999928],[115.46291570000005,-2.944692],[115.45871290000002,-2.950829899999974],[115.4539357000001,-2.951918399999954],[115.44797920000008,-2.955818799999975],[115.44247630000007,-2.961503199999925],[115.43476610000005,-2.976409499999932],[115.42986790000009,-2.976772299999936],[115.4208274,-2.982607799999926],[115.41193810000004,-2.982668299999943],[115.4016276000001,-2.995034699999962],[115.39914830000009,-2.9950952],[115.39201260000004,-2.9885643],[115.38971470000001,-2.979433],[115.388082,-2.977921199999969],[115.37638070000003,-2.977044399999954],[115.36857980000002,-2.978798099999949],[115.356546,-2.984603399999969],[115.35074070000007,-2.981337899999971],[115.35061970000004,-2.978193399999952],[115.3525548,-2.974807],[115.34965220000004,-2.971843799999931],[115.34726350000005,-2.971632199999931],[115.34575170000005,-2.966008299999942],[115.34024880000004,-2.964919799999961],[115.33299220000004,-2.967580599999962],[115.3241633,-2.968124799999941],[115.3157275000001,-2.971904299999949],[115.31385290000003,-2.973960299999931],[115.3127644000001,-2.9811565],[115.31016410000007,-2.982849699999974],[115.29864430000009,-2.988503799999933],[115.29695110000011,-2.991104099999973],[115.29066200000011,-2.990983099999937],[115.28491720000011,-2.993099699999959],[115.2819541,-2.996425599999952],[115.27920260000008,-2.996455799999978],[115.2759976000001,-3.003228699999966],[115.27400200000011,-3.004075299999954],[115.270404,-3.009487499999977],[115.2669873000001,-3.019556],[115.24709210000003,-3.043865699999969],[115.23799110000004,-3.049580299999946],[115.21997050000004,-3.038272],[115.20863210000005,-3.0583789],[115.2027663,-3.0760971],[115.16908360000002,-3.1155247],[115.19947060000004,-3.1242628],[115.21821690000002,-3.127044499999954],[115.22635030000004,-3.132940499999961],[115.24219390000007,-3.135057],[115.23895870000001,-3.150326199999938],[115.2399564000001,-3.162269299999934],[115.23590480000007,-3.168014099999937],[115.22759,-3.174938199999929],[115.22456640000007,-3.182678499999952],[115.21531420000008,-3.186246399999959],[115.21044620000009,-3.190267699999936],[115.20379430000003,-3.2020597],[115.2038851000001,-3.212128299999961],[115.19747510000002,-3.209225599999968],[115.17005110000002,-3.207018399999924],[115.14050310000005,-3.200646199999937],[115.11291290000008,-3.193238399999927],[115.08921550000002,-3.183298399999956],[115.0477168000001,-3.156917599999929],[115.0024386,-3.121995199999958],[114.86751720000007,-3.036033099999941],[114.82773050000003,-3.014846],[114.829507,-3.073909199999946],[114.82778780000001,-3.092418699999939],[114.81998640000006,-3.133971899999949],[114.81625350000002,-3.200066399999969],[114.81159180000009,-3.200553599999978],[114.7986982000001,-3.210461199999941],[114.79559290000009,-3.208113099999935],[114.7937237000001,-3.201355899999953],[114.78913080000007,-3.201779899999963],[114.78656730000012,-3.214665799999977],[114.78971830000012,-3.217954199999951],[114.78971820000004,-3.220087799999931],[114.78240160000007,-3.225071],[114.77980750000006,-3.229467899999975],[114.7759089000001,-3.229938499999946],[114.76774530000012,-3.226837799999942],[114.763633,-3.232252799999969],[114.75361550000002,-3.234472499999924],[114.70461140000009,-3.253409099999942],[114.66812730000004,-3.264018799999974],[114.6386089,-3.275600399999973],[114.63985250000007,-3.288269],[114.62820560000011,-3.312353099999939],[114.63695610000002,-3.322925399999974],[114.64233940000008,-3.3260797],[114.64566990000003,-3.326206199999945],[114.65301320000003,-3.333562899999947],[114.65958980000005,-3.335596099999975],[114.65846060000001,-3.340148899999974],[114.65702250000004,-3.34095],[114.65809060000004,-3.347391099999925],[114.65702250000004,-3.348350499999981],[114.64597890000005,-3.344059],[114.64079860000004,-3.346506099999942],[114.64022250000005,-3.345510499999932],[114.63290210000002,-3.346519499999943],[114.6327007000001,-3.34803],[114.62504030000002,-3.350639899999976],[114.624136,-3.361225099999956],[114.62020970000003,-3.363300899999956],[114.61594960000002,-3.3684292],[114.60781170000007,-3.372350399999959],[114.60562980000009,-3.369880299999977],[114.59573000000012,-3.36679],[114.58614920000002,-3.382139199999926],[114.57853890000001,-3.378715499999942],[114.57705120000003,-3.375740099999973],[114.56956670000011,-3.375259399999948],[114.5666218,-3.373579],[114.56987190000007,-3.366779299999962],[114.55472040000006,-3.374085599999944],[114.54902080000011,-3.374026499999957],[114.54501430000005,-3.373581599999966],[114.53787510000006,-3.369267499999978],[114.52895820000003,-3.368643899999938],[114.52933210000003,-3.366695],[114.52194820000011,-3.363251399999967],[114.51101340000002,-3.378926],[114.50657310000008,-3.388594699999942],[114.506657,-3.395120599999927],[114.51020470000003,-3.410666899999967],[114.51781130000006,-3.426196699999934],[114.51954310000008,-3.433820699999956],[114.5197035000001,-3.439144799999951],[114.51324120000004,-3.457430799999941],[114.5122646000001,-3.464062499999955],[114.51553010000009,-3.496284199999934],[114.5113272000001,-3.538455299999953],[114.51676730000008,-3.544197899999972],[114.530592,-3.540765299999975],[114.585892,-3.532865299999969],[114.605092,-3.532865299999969],[114.611292,-3.534265299999959],[114.6205920000001,-3.530765299999928],[114.70435140000006,-3.513475699999958],[114.7002576000001,-3.484343699999954],[114.69661970000004,-3.474666399999933],[114.69642970000007,-3.467805799999951],[114.69838210000012,-3.458940899999959],[114.7069629,-3.444336399999941],[114.70776240000009,-3.440994799999942],[114.70500660000005,-3.436807199999976],[114.71887320000008,-3.425991499999952],[114.71636510000008,-3.422468],[114.719527,-3.415537699999959],[114.72354580000001,-3.412828699999977],[114.72414050000009,-3.406255499999929],[114.7408613,-3.371314799999936],[114.79559230000007,-3.406746299999952],[114.79860760000008,-3.409401199999934],[114.80093420000003,-3.414308399999925],[114.80312210000011,-3.414746299999933],[114.8068009000001,-3.418504],[114.8097054000001,-3.419382599999949],[114.81456720000006,-3.418086],[114.82353890000002,-3.421768799999938],[114.82474170000012,-3.425195099999939],[114.83851720000007,-3.4247377],[114.84919780000007,-3.4260549],[114.849714,-3.4247827],[114.85527280000008,-3.426956899999936],[114.85640620000004,-3.428809299999955],[114.85955380000007,-3.422549899999979],[114.86157010000011,-3.4226688],[114.86700540000004,-3.429059],[114.86683830000004,-3.432273399999929],[114.868511,-3.434049899999934],[114.86767740000005,-3.435286599999927],[114.87725060000002,-3.435914799999978],[114.88129010000011,-3.439005299999963],[114.8836993000001,-3.438553399999932],[114.886292,-3.44373],[114.89020360000006,-3.444554899999957],[114.89317580000011,-3.439679199999944],[114.89650960000006,-3.442035099999941],[114.90438530000006,-3.443943099999956],[114.9300756,-3.446469099999945],[114.926587,-3.470923299999924],[114.91507050000007,-3.4685943],[114.93008,-3.494216599999959],[114.9300455,-3.505479299999934],[114.92334320000009,-3.541434899999956],[114.92482270000005,-3.5423818],[114.93183660000011,-3.540448499999968],[114.93095210000001,-3.552402499999971],[114.9287968000001,-3.557998699999928],[114.91779140000006,-3.573247899999956],[114.91872220000005,-3.577388799999937],[114.92280390000008,-3.582227699999976],[114.9217205000001,-3.592222199999981],[114.92004610000004,-3.595912699999928],[114.916989,-3.606517],[114.91866850000008,-3.609854399999961],[114.93044,-3.609799],[114.95733,-3.61423],[114.964309,-3.621934],[114.968111,-3.628443],[114.9681690000001,-3.638904],[114.94485010000005,-3.667737799999941],[114.93529200000012,-3.687865299999942],[114.9345379,-3.704103599999939],[114.93490740000004,-3.7109128],[114.93649090000008,-3.715082799999948],[114.9365782000001,-3.7168458],[114.9365659,-3.7168466],[114.936821,-3.722618],[114.938038,-3.724436],[114.940492,-3.727365299999974],[114.943792,-3.7289653],[114.956787,-3.730723],[114.96553,-3.727498],[114.969892,-3.7232653],[114.983392,-3.700165299999981],[114.998935,-3.702771],[115.011724,-3.693011],[115.08339200000012,-3.669065299999943],[115.08994,-3.664291],[115.099093,-3.652274],[115.105892,-3.645765299999937],[115.122105,-3.634274],[115.149592,-3.635065299999951],[115.153492,-3.633765299999936],[115.17169700000011,-3.62024],[115.18840300000011,-3.610156],[115.196995,-3.607843],[115.21929200000011,-3.607565299999976],[115.237092,-3.603565299999957],[115.24742360000005,-3.5962015],[115.259689,-3.589659],[115.265831,-3.580076],[115.273491,-3.572309],[115.29638000000011,-3.56235],[115.31141,-3.549694],[115.318116,-3.53162],[115.3256070000001,-3.520218],[115.333725,-3.513811],[115.342607,-3.509674],[115.349392,-3.508587],[115.360713,-3.509743],[115.380459,-3.506313],[115.395967,-3.49942],[115.412361,-3.488888],[115.420155,-3.478235],[115.421621,-3.468982],[115.418106,-3.459149],[115.407328,-3.444496],[115.42357,-3.433957],[115.427302,-3.425299],[115.430086,-3.407553],[115.429884,-3.363139],[115.435419,-3.353111],[115.43749,-3.344154],[115.444241,-3.335942],[115.455536,-3.332256],[115.459895,-3.329205],[115.4609200000001,-3.322228],[115.4563720000001,-3.31709],[115.453156,-3.306037],[115.45729,-3.286166],[115.45258,-3.278304],[115.444717,-3.27364],[115.40739880000001,-3.269902199999933],[115.38991320000002,-3.264975499999935],[115.372855,-3.257432],[115.37408440000002,-3.254749299999958],[115.38240140000005,-3.2522319],[115.38963500000011,-3.252422199999955],[115.39191930000004,-3.249376499999926],[115.400295,-3.250138],[115.4031503000001,-3.2491862],[115.40581530000009,-3.241762299999948],[115.41057420000004,-3.239097299999969],[115.41262060000008,-3.235099799999944],[115.41180910000003,-3.228668599999935],[115.4135113000001,-3.228671299999974],[115.4167192000001,-3.194892799999934],[115.42135910000002,-3.1716931],[115.422073,-3.158844],[115.43884820000005,-3.136715],[115.47741380000002,-3.105438699999979],[115.47963490000006,-3.111820299999977],[115.4861419,-3.115266299999973],[115.49185890000001,-3.120975099999953],[115.49411610000004,-3.125265],[115.51992560000008,-3.104114799999934],[115.52903460000005,-3.086936],[115.53242030000001,-3.086224399999935],[115.5520318,-3.0746111],[115.56177510000009,-3.0604892],[115.55961580000007,-3.047667399999966],[115.5421722000001,-3.046133499999939],[115.53337580000004,-3.041002499999934],[115.5296581,-3.041612399999963],[115.52826430000005,-3.038626],[115.52402210000002,-3.037932799999965],[115.5234114000001,-3.035897099999943],[115.51649780000002,-3.032586499999979],[115.51499310000008,-3.029934499999968],[115.51229330000001,-3.029397199999948],[115.51665660000003,-2.999658099999976],[115.53343180000002,-2.982525899999928],[115.54685940000002,-2.940409399999965],[115.55398510000009,-2.944167299999947],[115.56813780000004,-2.9405046],[115.575241,-2.933893399999931],[115.58086380000009,-2.9200718],[115.58155060000001,-2.911507699999959],[115.59576430000004,-2.892007899999953],[115.5948562000001,-2.888877399999956],[115.57701870000005,-2.883455599999934],[115.57691950000003,-2.871625599999959],[115.57111350000002,-2.860683799999947],[115.57160940000006,-2.851576799999975],[115.56578790000003,-2.844985299999962],[115.55631210000001,-2.838841499999944],[115.55659260000004,-2.828173799999945]]]},"properties":{"shapeName":"Banjar","shapeISO":"","shapeID":"22746128B84139076560117","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[109.91495210000005,-7.195840199999964],[109.91762540000008,-7.193407499999978],[109.91732790000009,-7.191062399999964],[109.91156010000009,-7.195401599999968],[109.90582280000007,-7.1963825],[109.90084840000009,-7.194443699999965],[109.898964,-7.190087699999935],[109.88669590000006,-7.178711399999941],[109.883606,-7.183767299999943],[109.88096620000005,-7.184701899999936],[109.88150030000008,-7.188961899999981],[109.87692260000006,-7.191112],[109.87397,-7.186653599999943],[109.86696630000006,-7.187412699999925],[109.848526,-7.1778302],[109.84564210000008,-7.181056499999954],[109.84581,-7.182820299999946],[109.84259040000006,-7.184031899999979],[109.842041,-7.186337899999955],[109.83335880000004,-7.189906099999973],[109.82105260000009,-7.180025499999942],[109.81965640000004,-7.1793666],[109.81593320000007,-7.181080299999962],[109.80276490000006,-7.172353699999974],[109.79871170000007,-7.171164799999929],[109.78972630000004,-7.176091099999951],[109.775177,-7.180069399999979],[109.76804350000003,-7.1799564],[109.76157380000006,-7.176616599999932],[109.75379180000004,-7.180680699999925],[109.75195310000004,-7.179467099999954],[109.74405670000004,-7.184356199999968],[109.74542240000005,-7.187862399999972],[109.743721,-7.190430099999958],[109.72640990000008,-7.201842299999953],[109.71407320000009,-7.198248799999931],[109.707695,-7.199806199999955],[109.70409390000009,-7.195308199999943],[109.69490050000007,-7.196267599999942],[109.690033,-7.195055],[109.69030760000004,-7.192521099999965],[109.687439,-7.190847899999937],[109.682724,-7.184029099999975],[109.68343350000004,-7.182847899999956],[109.68196870000008,-7.180534799999975],[109.68306730000006,-7.177494499999966],[109.68141940000004,-7.174508],[109.68294940000004,-7.173297099999957],[109.67610940000009,-7.172453799999971],[109.67275250000006,-7.174481799999967],[109.67079940000008,-7.177715199999966],[109.66381840000008,-7.178456799999935],[109.65207670000007,-7.175153199999954],[109.64799080000006,-7.172004399999935],[109.643532,-7.173140399999966],[109.64129640000004,-7.176167899999939],[109.63652040000005,-7.176153599999964],[109.63480380000004,-7.177504499999941],[109.62849430000006,-7.188426],[109.625,-7.1891217],[109.62342840000008,-7.1975803],[109.62004860000008,-7.200459399999943],[109.61616520000007,-7.201354499999979],[109.61127470000008,-7.210800099999972],[109.60687260000009,-7.211459099999956],[109.59636690000008,-7.205912499999954],[109.59524540000007,-7.207927599999948],[109.59005740000003,-7.207004],[109.58748630000008,-7.213763699999959],[109.57871250000005,-7.221815099999958],[109.57412720000008,-7.222486],[109.57118990000004,-7.220829399999957],[109.567482,-7.221793099999957],[109.56409460000003,-7.224343699999963],[109.56118780000008,-7.230412399999977],[109.55230720000009,-7.231315099999961],[109.53858950000006,-7.244429599999933],[109.54986570000005,-7.255461199999957],[109.56150060000004,-7.261991899999941],[109.56946560000006,-7.264739],[109.57415770000006,-7.271249299999965],[109.576149,-7.2794704],[109.58451840000004,-7.2931985],[109.581688,-7.2953868],[109.579422,-7.294662399999936],[109.57519530000008,-7.296618399999943],[109.57453160000006,-7.300123199999973],[109.57278450000007,-7.299101299999961],[109.56734470000004,-7.300706799999944],[109.56656650000008,-7.305028399999969],[109.56889350000006,-7.313482199999953],[109.56699370000007,-7.316293199999961],[109.56237030000005,-7.318044099999952],[109.56396490000009,-7.319513299999926],[109.565651,-7.318183799999929],[109.56449130000004,-7.32268],[109.56594090000004,-7.324687899999958],[109.56532290000007,-7.328156399999955],[109.56296540000005,-7.328331899999966],[109.56256110000004,-7.332292499999937],[109.55609130000005,-7.330709899999931],[109.55018620000004,-7.3310632],[109.54650120000008,-7.327417299999979],[109.54122930000005,-7.325435599999935],[109.53396610000004,-7.3284292],[109.52717590000009,-7.323572599999977],[109.51830290000004,-7.343054699999925],[109.51926420000007,-7.345732599999963],[109.533699,-7.356565],[109.53603370000008,-7.378044099999954],[109.53932190000006,-7.383367499999963],[109.541275,-7.390567699999963],[109.54853060000005,-7.397110399999974],[109.54866030000005,-7.402224499999932],[109.54674530000005,-7.402550199999951],[109.54599,-7.405350599999963],[109.54300690000008,-7.403229199999942],[109.54217530000005,-7.407049099999938],[109.53694150000007,-7.405936699999927],[109.53636930000005,-7.408335199999954],[109.53285980000004,-7.406786899999929],[109.531662,-7.408921699999951],[109.51723480000004,-7.412665299999958],[109.51412970000007,-7.410985399999959],[109.51091770000005,-7.412714899999969],[109.50989530000004,-7.411314399999981],[109.50826270000005,-7.412224299999934],[109.50708010000005,-7.409966399999973],[109.50408170000009,-7.410503299999959],[109.50328830000007,-7.411620599999935],[109.50849920000007,-7.419118399999945],[109.50577550000008,-7.4238982],[109.5084,-7.439431099999979],[109.50775150000004,-7.448028099999931],[109.50622560000005,-7.447707599999944],[109.50535590000004,-7.450114199999973],[109.5028,-7.448068599999942],[109.49922950000007,-7.4495792],[109.49694820000008,-7.446758699999975],[109.49358370000004,-7.449374599999942],[109.48934180000003,-7.442529599999943],[109.48756410000004,-7.442247799999961],[109.48574070000006,-7.4455165],[109.48191840000004,-7.441188299999965],[109.48034670000004,-7.442437599999948],[109.48209380000009,-7.443912399999931],[109.47874450000006,-7.445859399999961],[109.47623450000009,-7.445268099999964],[109.47472380000005,-7.4417986],[109.47261810000003,-7.442065199999945],[109.47336580000007,-7.44772],[109.47219850000005,-7.448719],[109.46973420000006,-7.448862],[109.46523290000005,-7.446050599999978],[109.462944,-7.446795399999928],[109.460968,-7.451405499999964],[109.45869450000004,-7.452754899999945],[109.45466610000005,-7.452043],[109.45281980000004,-7.447064799999964],[109.45003510000004,-7.446662899999978],[109.44693760000007,-7.450061699999935],[109.44868470000006,-7.453447299999937],[109.44706730000007,-7.455674599999952],[109.44110110000008,-7.454241199999956],[109.44045260000007,-7.449246799999969],[109.43899540000007,-7.448617399999932],[109.43606570000009,-7.450687399999936],[109.43772890000008,-7.453050599999926],[109.43482970000008,-7.456958199999974],[109.43019110000006,-7.459527899999955],[109.42708590000007,-7.454802],[109.42538450000006,-7.4561347],[109.42736060000004,-7.458761199999969],[109.42274480000009,-7.459152199999949],[109.424408,-7.467718099999956],[109.41829680000006,-7.471897099999978],[109.41998290000004,-7.475246799999979],[109.41873170000008,-7.478908],[109.41148380000004,-7.477375499999937],[109.41284940000008,-7.470766499999968],[109.40867620000006,-7.471470799999963],[109.40161140000004,-7.467258399999935],[109.40066530000007,-7.468442399999958],[109.40374760000009,-7.474140099999943],[109.40242770000003,-7.475884899999926],[109.39406,-7.474377499999946],[109.38612370000004,-7.477631],[109.38069920000004,-7.482845299999951],[109.373642,-7.477723099999935],[109.37191010000004,-7.484683],[109.36403660000008,-7.48736],[109.36160280000007,-7.485296199999937],[109.36171730000007,-7.488771899999961],[109.363884,-7.490118399999972],[109.36301430000009,-7.494658899999934],[109.36466220000005,-7.494827699999973],[109.36590580000006,-7.4972639],[109.36534120000005,-7.499037199999975],[109.36269380000005,-7.500000399999976],[109.364624,-7.500946499999941],[109.36547090000005,-7.503499399999953],[109.36409,-7.506159199999956],[109.36454780000008,-7.5098371],[109.36206820000007,-7.513633199999958],[109.364296,-7.517374],[109.36816410000006,-7.516200499999968],[109.37657170000006,-7.523047899999938],[109.38259890000006,-7.522221099999967],[109.38307950000006,-7.523746899999935],[109.38593290000006,-7.524726799999939],[109.38757330000004,-7.530203799999981],[109.39579010000006,-7.536857099999963],[109.39762120000006,-7.536457],[109.39818580000008,-7.534573],[109.404068,-7.54075],[109.41210180000007,-7.5382857],[109.41610720000006,-7.538771099999963],[109.41924290000009,-7.533909699999981],[109.42649840000007,-7.536991099999966],[109.43273930000004,-7.536139899999966],[109.43439480000006,-7.529796599999941],[109.43711850000005,-7.527172],[109.455574,-7.523302],[109.46279910000004,-7.519260299999928],[109.46804810000003,-7.522433199999966],[109.48181920000007,-7.517865099999938],[109.48329160000009,-7.516946699999949],[109.48274230000004,-7.514779499999975],[109.48480990000007,-7.5112109],[109.49114990000004,-7.510047899999961],[109.49786380000006,-7.503248199999973],[109.5,-7.510482299999978],[109.50817110000008,-7.508728399999939],[109.51870730000007,-7.510991099999956],[109.526001,-7.515668399999981],[109.53749850000008,-7.515646899999979],[109.54514310000008,-7.522700699999973],[109.55139160000004,-7.5115256],[109.55585480000008,-7.511560899999949],[109.55981450000007,-7.5096574],[109.56872560000005,-7.5098738],[109.57210540000005,-7.5132417],[109.58490760000007,-7.513647099999957],[109.58711240000008,-7.515574899999933],[109.58868410000008,-7.5136022],[109.59392550000007,-7.5129561],[109.60224150000005,-7.506075799999962],[109.61318210000007,-7.504241399999955],[109.612854,-7.502527199999975],[109.61513520000005,-7.501235399999928],[109.61517340000006,-7.496563399999957],[109.61911010000006,-7.491640099999927],[109.63306430000006,-7.481577399999935],[109.63932040000009,-7.482024599999932],[109.64295960000004,-7.485676299999966],[109.64829250000008,-7.495361799999955],[109.65477750000008,-7.495949699999926],[109.66509250000007,-7.492921299999978],[109.672287,-7.500837799999942],[109.67253110000007,-7.5029974],[109.67752840000009,-7.503167099999928],[109.67869570000005,-7.501764699999967],[109.68441770000004,-7.503458499999965],[109.687912,-7.501870099999962],[109.688858,-7.4968919],[109.69890590000006,-7.495585399999925],[109.706604,-7.488982599999929],[109.71125030000007,-7.4827914],[109.71511840000005,-7.482253],[109.71939090000006,-7.478104099999939],[109.725914,-7.476061299999969],[109.73310090000007,-7.478360599999974],[109.73600770000007,-7.474792899999954],[109.73461150000009,-7.474702299999933],[109.73223880000006,-7.470199099999945],[109.73493150000007,-7.471098299999937],[109.737457,-7.4687797],[109.74100310000006,-7.468762099999935],[109.74183160000007,-7.465901899999949],[109.74648550000006,-7.462919399999976],[109.74913010000006,-7.458333399999958],[109.75070950000008,-7.457782],[109.75216460000007,-7.461879899999929],[109.75624760000005,-7.449100499999929],[109.75268890000007,-7.445536299999958],[109.75494130000004,-7.439729599999964],[109.76142880000003,-7.440783899999929],[109.77098080000007,-7.447463899999946],[109.77876140000006,-7.448028099999931],[109.78644530000008,-7.450694399999975],[109.79514780000005,-7.449872299999981],[109.802059,-7.451243599999941],[109.80784090000009,-7.449061599999936],[109.81697080000004,-7.449520099999972],[109.827059,-7.447656799999947],[109.82831260000006,-7.443257899999935],[109.82735080000003,-7.438360399999965],[109.83173370000009,-7.432658599999968],[109.83299260000007,-7.422843899999975],[109.82864380000007,-7.421648499999947],[109.82947540000004,-7.419806],[109.82254790000007,-7.421352399999932],[109.81779870000008,-7.415951299999961],[109.80774450000007,-7.413717799999972],[109.80502610000008,-7.4109892],[109.80309930000004,-7.411950799999943],[109.79561620000004,-7.410410799999966],[109.79206090000008,-7.411504699999966],[109.79109190000008,-7.4090318],[109.78581240000005,-7.405937599999959],[109.78047940000005,-7.406022],[109.779335,-7.4023132],[109.76821140000004,-7.395283599999971],[109.76840580000004,-7.3929629],[109.76319890000008,-7.392947599999957],[109.75805670000005,-7.388734299999953],[109.75442510000005,-7.388855899999953],[109.750885,-7.390838599999938],[109.75123630000007,-7.388629199999968],[109.75334660000004,-7.383959399999981],[109.75568570000007,-7.385829],[109.76104290000006,-7.3860429],[109.76128160000007,-7.3828963],[109.76451310000004,-7.382444],[109.76466190000008,-7.3794057],[109.76663060000004,-7.377747099999965],[109.76851660000005,-7.371589099999937],[109.77201850000006,-7.369942599999945],[109.77458190000004,-7.364459499999953],[109.77940020000005,-7.365129899999943],[109.783251,-7.362672599999939],[109.78330020000004,-7.360340199999939],[109.78581170000007,-7.359020299999941],[109.78691770000006,-7.356224099999963],[109.78570190000005,-7.349799599999926],[109.78766380000008,-7.341231299999947],[109.79268880000006,-7.337627299999951],[109.792778,-7.333247599999936],[109.79662330000008,-7.327330599999925],[109.79982,-7.324573499999929],[109.80226140000008,-7.325207699999964],[109.80686950000006,-7.323442],[109.810051,-7.315565099999958],[109.81494140000007,-7.313434599999937],[109.81596380000008,-7.309467799999936],[109.81924440000006,-7.305143299999941],[109.82548520000006,-7.301918],[109.82549290000009,-7.299112299999933],[109.82842260000007,-7.2973399],[109.83057410000004,-7.298007],[109.83015440000008,-7.296840199999963],[109.83541870000005,-7.2913608],[109.83614350000005,-7.287499899999943],[109.83881380000008,-7.285545799999966],[109.84024050000005,-7.286001699999929],[109.84152990000007,-7.281451699999934],[109.843216,-7.280391699999939],[109.84173590000006,-7.276332399999944],[109.84357450000005,-7.274855099999968],[109.84148410000006,-7.272887199999957],[109.845398,-7.268763499999977],[109.85048680000006,-7.254843699999981],[109.84970860000004,-7.251314599999944],[109.85260010000007,-7.250873099999978],[109.85478210000008,-7.241079799999966],[109.85955810000007,-7.2369208],[109.86172490000007,-7.232819499999948],[109.86444860000006,-7.230444399999953],[109.86763770000005,-7.230472099999929],[109.86972810000009,-7.227012099999968],[109.87517550000007,-7.22506],[109.87767030000003,-7.225982599999952],[109.88085180000007,-7.224444799999958],[109.88359830000007,-7.225643099999957],[109.88919830000009,-7.223503099999959],[109.89557650000006,-7.223884599999963],[109.90253450000006,-7.221352099999933],[109.90670780000005,-7.221650099999977],[109.91002660000004,-7.216151699999955],[109.91222380000005,-7.215281899999979],[109.90940090000004,-7.205790499999978],[109.91114040000008,-7.203385299999979],[109.91049960000004,-7.200199599999962],[109.91378020000008,-7.199237299999936],[109.91495210000005,-7.195840199999964]]]},"properties":{"shapeName":"Banjarnegara","shapeISO":"","shapeID":"22746128B54180662750214","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[119.95511780000004,-5.355242],[119.94123020000006,-5.3547798],[119.93675710000002,-5.356290199999933],[119.93197060000011,-5.363725799999941],[119.93019150000009,-5.370947299999955],[119.93204390000005,-5.377083499999969],[119.9380430000001,-5.384591899999975],[119.93738140000005,-5.386690099999953],[119.9368584,-5.408091499999955],[119.930802,-5.416650699999934],[119.926255,-5.420261599999947],[119.926446,-5.424770499999966],[119.92414240000005,-5.4284168],[119.92349420000005,-5.434955],[119.91230080000003,-5.442764099999977],[119.9063973000001,-5.455818099999931],[119.8991866,-5.461567899999977],[119.89628950000008,-5.476736],[119.8869396,-5.484807899999964],[119.88397140000006,-5.485729699999979],[119.87962550000009,-5.490656899999976],[119.87859860000003,-5.499438199999929],[119.8741414000001,-5.504235799999947],[119.87594160000003,-5.509326299999941],[119.8734012000001,-5.518714399999965],[119.8760089000001,-5.527387199999964],[119.87375750000001,-5.528030399999977],[119.86942450000004,-5.525231499999961],[119.86891560000004,-5.523369399999979],[119.8584489000001,-5.519282099999941],[119.85497260000011,-5.515858],[119.853351,-5.516299499999946],[119.85473790000003,-5.521122699999978],[119.86041510000007,-5.5260109],[119.86252480000007,-5.530535899999961],[119.86143920000006,-5.540534599999944],[119.85756920000006,-5.547782199999972],[119.85627080000006,-5.554329499999938],[119.86420370000008,-5.554596199999935],[119.86628,-5.552862699999935],[119.87439450000011,-5.556580499999939],[119.88276910000002,-5.556715],[119.89067280000006,-5.562466299999926],[119.89417070000002,-5.561524499999962],[119.89813930000003,-5.557185899999979],[119.90009010000006,-5.557185899999979],[119.9020071000001,-5.559035699999981],[119.90119990000005,-5.560650099999975],[119.9026798000001,-5.563811599999951],[119.90791750000005,-5.564246099999934],[119.90675460000011,-5.565163799999937],[119.90868750000004,-5.570047899999963],[119.9048120000001,-5.572215599999936],[119.90733640000008,-5.576793599999974],[119.91760010000007,-5.5650008],[119.91877580000005,-5.559042099999942],[119.92280590000007,-5.553186299999936],[119.9301987,-5.546542699999975],[119.93793950000008,-5.5443023],[119.9439215000001,-5.546126],[119.95190570000011,-5.553319699999975],[119.964869,-5.554228799999976],[119.97259660000009,-5.559081699999979],[119.97651750000011,-5.558817099999942],[119.98234130000003,-5.5608096],[119.98541260000002,-5.559846099999959],[119.98813860000007,-5.560864199999969],[119.99260650000008,-5.559031499999946],[120.00140350000004,-5.560740799999962],[120.01576970000008,-5.5689858],[120.02961920000007,-5.5732231],[120.0359936000001,-5.573808699999972],[120.0474339000001,-5.578920399999959],[120.05282780000005,-5.5781689],[120.05912670000009,-5.582781799999964],[120.06341980000002,-5.582738799999959],[120.0836091000001,-5.588307699999973],[120.0916453000001,-5.5839956],[120.101328,-5.585738],[120.09870490000003,-5.580167099999926],[120.10017970000001,-5.574918699999955],[120.09809410000003,-5.573921599999949],[120.10044530000005,-5.571850499999925],[120.09858540000005,-5.570361099999957],[120.09818660000008,-5.566950199999951],[120.10002240000006,-5.565867899999944],[120.09560970000007,-5.562643099999946],[120.10106950000011,-5.558752199999958],[120.10208150000005,-5.555927099999963],[120.09967180000001,-5.5543982],[120.10090590000004,-5.552724799999964],[120.09854560000008,-5.550405299999966],[120.099846,-5.548548199999971],[120.097361,-5.546043499999939],[120.09912660000009,-5.545373099999949],[120.09977,-5.542527],[120.09884560000012,-5.532874499999934],[120.09733720000008,-5.531234599999948],[120.09795330000009,-5.525479099999927],[120.09591960000012,-5.519730699999968],[120.09495220000008,-5.508000799999934],[120.090482,-5.498767199999975],[120.091316,-5.490981599999941],[120.0889562000001,-5.487385899999936],[120.08720830000004,-5.487075699999934],[120.08363570000006,-5.478161399999976],[120.07029940000007,-5.462566599999946],[120.06988380000007,-5.459580899999935],[120.06701790000011,-5.456839599999967],[120.06768290000002,-5.455090899999959],[120.06074260000003,-5.452777599999933],[120.05888360000006,-5.450798599999928],[120.05658590000007,-5.451964199999964],[120.05664950000005,-5.449576299999933],[120.05324240000004,-5.448399],[120.05406560000006,-5.446738499999981],[120.05278040000007,-5.443844799999965],[120.05627620000007,-5.438829099999964],[120.0503278000001,-5.437054799999942],[120.03997060000006,-5.423816199999976],[120.0389282000001,-5.419808799999942],[120.03098910000006,-5.413048199999935],[120.029761,-5.409931499999971],[120.03373540000007,-5.408455499999945],[120.03448350000008,-5.406372399999952],[120.03245960000004,-5.400995299999977],[120.03045580000003,-5.399566199999981],[120.0287340000001,-5.393255],[120.02626240000006,-5.393164],[120.02250290000006,-5.389917199999957],[120.0157848,-5.3899339],[120.01174850000007,-5.386980299999948],[120.0068877000001,-5.388644699999929],[120.00323750000007,-5.386945799999978],[119.9998078000001,-5.390459199999952],[119.9909613000001,-5.3889579],[119.9892254,-5.390979199999947],[119.98540130000004,-5.392107499999952],[119.98064550000004,-5.3906983],[119.98001540000007,-5.38573],[119.97293020000006,-5.374683499999946],[119.972475,-5.371518199999969],[119.97018090000006,-5.369993299999976],[119.96959450000008,-5.366986699999927],[119.96343550000006,-5.362103],[119.96359160000009,-5.359224299999937],[119.95970710000006,-5.355599899999959],[119.95511780000004,-5.355242]]]},"properties":{"shapeName":"Bantaeng","shapeISO":"","shapeID":"22746128B79586529776401","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[110.39711520000009,-7.788325099999952],[110.39575340000005,-7.792499799999973],[110.39863250000008,-7.800116599999967],[110.39757570000006,-7.802233899999976],[110.40225580000003,-7.802633599999979],[110.40141250000005,-7.819275299999958],[110.40364140000008,-7.820055],[110.40343360000008,-7.822376499999962],[110.40145020000006,-7.822715199999948],[110.404795,-7.822616699999969],[110.40507480000008,-7.830533399999979],[110.40354980000006,-7.833135],[110.40058660000005,-7.831543499999952],[110.39989570000006,-7.833438199999932],[110.39787060000003,-7.833369699999935],[110.39703170000007,-7.831348099999957],[110.39948540000006,-7.827782399999933],[110.39336140000006,-7.826348199999927],[110.39307970000004,-7.829269199999942],[110.39575440000004,-7.832481199999961],[110.39452730000005,-7.835692699999981],[110.395425,-7.8367404],[110.39078940000007,-7.835879099999943],[110.38983810000008,-7.8401504],[110.38799650000004,-7.840018799999939],[110.38792670000004,-7.834951299999943],[110.38378490000008,-7.834886499999925],[110.38699890000004,-7.833997299999965],[110.385775,-7.830363599999941],[110.38447970000004,-7.828961399999969],[110.37981050000008,-7.828521699999953],[110.38022130000007,-7.830043699999976],[110.37793130000006,-7.830694299999948],[110.378267,-7.831808599999931],[110.37647930000009,-7.830016099999966],[110.376815,-7.831395],[110.37497980000006,-7.8308433],[110.37519440000005,-7.824438399999963],[110.36984980000005,-7.824678699999936],[110.36862840000003,-7.827103799999975],[110.36723110000008,-7.825572799999975],[110.360816,-7.825759099999971],[110.36038820000005,-7.8240438],[110.35912720000005,-7.826056199999925],[110.35150390000007,-7.825361899999962],[110.35256560000005,-7.823524199999952],[110.35081010000005,-7.821368499999949],[110.35204770000007,-7.814809299999979],[110.35152970000007,-7.813501099999939],[110.34580970000007,-7.812452499999949],[110.34460570000005,-7.807301099999961],[110.34816180000007,-7.799855499999978],[110.34829410000009,-7.795059699999968],[110.34987320000005,-7.794117599999936],[110.34862120000008,-7.793466899999942],[110.35118080000007,-7.781283499999972],[110.35102880000005,-7.768221499999981],[110.34881050000007,-7.770280199999945],[110.34774420000008,-7.780392099999972],[110.34556950000007,-7.782695299999943],[110.34637170000008,-7.785283799999945],[110.34364040000008,-7.791863699999965],[110.33916790000006,-7.792351699999926],[110.33798690000003,-7.797662299999956],[110.33338330000004,-7.7978935],[110.33143840000008,-7.800074699999925],[110.33229270000004,-7.803233599999942],[110.33011830000004,-7.804807599999947],[110.33045560000005,-7.806821599999978],[110.327546,-7.804724199999953],[110.32507410000005,-7.805718399999932],[110.32076030000007,-7.804373699999928],[110.31910080000006,-7.807261399999959],[110.31600950000006,-7.805242399999941],[110.31622950000008,-7.807937399999958],[110.31471180000005,-7.809892899999966],[110.31610350000005,-7.8106877],[110.31481360000004,-7.810545699999977],[110.31444610000005,-7.812279399999966],[110.31560020000006,-7.8154607],[110.31424610000005,-7.818841],[110.31698330000006,-7.819887699999981],[110.31644230000006,-7.823713299999952],[110.31242820000006,-7.8206606],[110.31135630000006,-7.818103599999972],[110.30706460000005,-7.822127399999943],[110.30642860000006,-7.828333499999928],[110.30347940000007,-7.825237699999946],[110.30252410000008,-7.827210299999933],[110.29759840000008,-7.827202099999965],[110.29821680000003,-7.830475799999931],[110.29934080000004,-7.830421699999931],[110.29849480000007,-7.832255599999939],[110.29511110000004,-7.8305663],[110.29283810000004,-7.833959399999969],[110.28871840000005,-7.833825799999943],[110.28762230000007,-7.8219415],[110.28474810000006,-7.816863499999954],[110.28209440000006,-7.817111099999977],[110.28377710000007,-7.813484799999969],[110.28384240000008,-7.808128299999964],[110.282017,-7.8062519],[110.28699850000004,-7.802923199999952],[110.28684150000004,-7.8001068],[110.29001790000007,-7.797531699999979],[110.29092730000008,-7.793363199999931],[110.29043670000004,-7.789206399999955],[110.28654630000005,-7.7874259],[110.28881450000006,-7.784874099999968],[110.28714890000003,-7.784176599999967],[110.28378080000005,-7.7861558],[110.27943540000007,-7.784982299999967],[110.27574460000005,-7.791812799999946],[110.274379,-7.791378399999928],[110.27337650000004,-7.793391699999972],[110.27035340000003,-7.7930678],[110.26779040000008,-7.795749399999977],[110.263716,-7.794106],[110.25691710000007,-7.800265399999944],[110.25588090000008,-7.800069],[110.25741240000008,-7.797345099999973],[110.25392220000003,-7.796089599999959],[110.25239350000004,-7.801841599999932],[110.25053020000007,-7.803617699999961],[110.24830920000005,-7.803765099999964],[110.24781190000004,-7.805846499999973],[110.24471010000008,-7.804671799999937],[110.24040710000008,-7.806420399999979],[110.23343610000006,-7.8150045],[110.23387780000007,-7.822447099999977],[110.23128380000009,-7.829357899999934],[110.22672130000007,-7.833850199999972],[110.22205980000007,-7.835051499999963],[110.22114420000008,-7.837015099999974],[110.22312680000005,-7.840152099999955],[110.23274730000009,-7.845526599999971],[110.23758450000008,-7.852923199999964],[110.25715240000005,-7.866517199999976],[110.25989140000007,-7.872982599999943],[110.27265,-7.890906799999925],[110.27433610000008,-7.900490199999979],[110.27391960000006,-7.909622199999944],[110.269528,-7.927809199999956],[110.26261350000004,-7.927922299999977],[110.25709020000005,-7.923400399999935],[110.24814330000004,-7.927747599999975],[110.23169130000008,-7.959696],[110.22691020000008,-7.962955399999942],[110.22455370000006,-7.968048],[110.21472690000007,-7.978641099999948],[110.20956990000008,-7.982309799999939],[110.20395330000008,-7.983122699999967],[110.27264010000005,-8.008915499999944],[110.306981,-8.017616],[110.33974320000004,-8.028013299999941],[110.33665160000004,-8.020957],[110.33303020000005,-8.017488699999944],[110.33356040000007,-8.015864799999974],[110.32954540000009,-8.008260199999938],[110.32959350000004,-8.003858099999945],[110.33121850000003,-7.9989409],[110.33380490000008,-7.997025],[110.34001520000004,-7.994733799999949],[110.35118160000007,-7.995534199999952],[110.35536380000008,-7.991543299999933],[110.35505650000005,-7.987683299999958],[110.35230590000003,-7.989887599999975],[110.350205,-7.988867099999936],[110.35490780000003,-7.980755599999952],[110.351108,-7.977760199999977],[110.350343,-7.975093499999957],[110.35776340000007,-7.9812401],[110.36440140000008,-7.983556],[110.36724420000007,-7.973375699999963],[110.38085440000003,-7.9820447],[110.39682270000009,-7.980677599999979],[110.39868880000006,-7.977244199999973],[110.39655010000007,-7.973857799999962],[110.39642,-7.9697961],[110.40277520000006,-7.968868099999952],[110.408664,-7.971969899999976],[110.41364250000004,-7.971405499999946],[110.42204470000007,-7.973505299999943],[110.42842290000004,-7.970206099999928],[110.432902,-7.964312099999972],[110.43570720000008,-7.96682],[110.44350450000007,-7.966790799999956],[110.44470230000007,-7.957622199999946],[110.44361570000007,-7.951325399999973],[110.44947070000006,-7.946947399999942],[110.45224010000004,-7.947738399999935],[110.45488,-7.9516379],[110.45374370000008,-7.954306799999927],[110.45132420000004,-7.955502099999933],[110.45071550000006,-7.961161199999935],[110.45466630000004,-7.967261899999926],[110.45743570000008,-7.965308799999946],[110.45719650000007,-7.9576443],[110.46654,-7.954399399999943],[110.46730690000004,-7.955551899999932],[110.46450060000006,-7.957482],[110.46488810000005,-7.959421499999962],[110.47071090000009,-7.962759699999935],[110.46775070000007,-7.966558099999929],[110.46450820000007,-7.966692099999932],[110.46339430000006,-7.968453599999975],[110.46755230000008,-7.971279299999935],[110.46922320000004,-7.969831599999964],[110.47306840000005,-7.970108599999946],[110.47475450000007,-7.9719459],[110.47748580000007,-7.971191599999941],[110.47264880000006,-7.967344],[110.47510550000004,-7.966747899999973],[110.47597520000005,-7.964534],[110.472589,-7.953847699999926],[110.47804260000004,-7.950256299999978],[110.47641750000008,-7.942675099999974],[110.48229220000007,-7.942137399999979],[110.48800660000006,-7.945178],[110.48959350000007,-7.942372299999931],[110.48864750000007,-7.939240899999959],[110.49112460000003,-7.939726399999927],[110.49264810000005,-7.938067699999976],[110.49362780000007,-7.932243599999936],[110.49165530000005,-7.926096499999971],[110.49616190000006,-7.914966099999958],[110.49829720000008,-7.900843699999939],[110.49587980000007,-7.896621399999958],[110.49655120000006,-7.8929723],[110.49510090000007,-7.890970599999946],[110.49273950000008,-7.891801799999939],[110.48351290000005,-7.888629899999955],[110.47651160000004,-7.890034799999967],[110.47686970000007,-7.888281899999981],[110.47061160000004,-7.876890799999956],[110.47371670000007,-7.875208499999928],[110.46822840000004,-7.870654],[110.46754460000005,-7.866708399999936],[110.47047650000007,-7.861788699999977],[110.472771,-7.861120699999958],[110.47381590000003,-7.854408],[110.48196680000007,-7.843994699999939],[110.48287960000005,-7.840888],[110.48757890000007,-7.839889599999935],[110.48902080000005,-7.837466599999971],[110.49450490000004,-7.839391499999977],[110.49785390000005,-7.837922299999946],[110.51630490000008,-7.837657699999966],[110.52132640000008,-7.833734599999957],[110.51951650000007,-7.830975299999977],[110.515088,-7.830264799999952],[110.51455340000007,-7.828084699999977],[110.51109780000007,-7.828763699999968],[110.50952060000009,-7.822094399999969],[110.50737590000006,-7.821728399999927],[110.50517910000008,-7.823552399999926],[110.50166960000007,-7.8223226],[110.492316,-7.8227999],[110.48449580000005,-7.821242599999948],[110.48551240000006,-7.818453499999976],[110.48130910000003,-7.8174853],[110.47936620000007,-7.824900699999944],[110.47695120000009,-7.824038299999927],[110.476734,-7.825480599999935],[110.47601070000007,-7.823724299999981],[110.47064630000006,-7.822815399999968],[110.46758730000005,-7.828001699999959],[110.46625280000006,-7.827726199999972],[110.46535990000007,-7.822026899999969],[110.46186450000005,-7.821075399999927],[110.46126670000007,-7.8225937],[110.46017770000009,-7.819644899999957],[110.45604710000003,-7.821363699999949],[110.45374380000004,-7.820555899999931],[110.452638,-7.824598099999946],[110.44379330000004,-7.823929899999939],[110.44341180000004,-7.826860099999976],[110.44472220000006,-7.828550499999949],[110.44087610000008,-7.827389099999948],[110.43925880000006,-7.828735399999971],[110.43700280000007,-7.828235399999926],[110.43617150000006,-7.831940299999928],[110.43421870000009,-7.8330817],[110.43501770000006,-7.836723099999972],[110.42994570000008,-7.837450399999966],[110.43072740000008,-7.830370899999934],[110.42702830000007,-7.828873099999953],[110.42819640000005,-7.8217963],[110.42514230000006,-7.822843899999953],[110.42132590000006,-7.820815299999936],[110.42317960000008,-7.818481899999938],[110.42105870000006,-7.816689],[110.42202760000004,-7.812544799999955],[110.42090130000008,-7.807003899999927],[110.42290040000006,-7.795984799999928],[110.42068460000007,-7.793761599999925],[110.42099420000005,-7.786347],[110.416497,-7.786700599999961],[110.41623790000006,-7.783340299999963],[110.41282930000006,-7.783301399999971],[110.41285430000005,-7.787017099999957],[110.41122630000007,-7.787162099999932],[110.411295,-7.789647599999967],[110.41024050000004,-7.789574199999947],[110.40935710000008,-7.7863],[110.40857090000009,-7.788841199999979],[110.40679620000009,-7.78787],[110.40643960000006,-7.784908],[110.40565130000005,-7.787019899999962],[110.40291320000006,-7.786286899999936],[110.40167380000008,-7.7874974],[110.40143910000006,-7.792523299999971],[110.39996990000009,-7.791353199999946],[110.39908420000006,-7.785844199999929],[110.39696170000008,-7.786264599999981],[110.39711520000009,-7.788325099999952]]]},"properties":{"shapeName":"Bantul","shapeISO":"","shapeID":"22746128B71285996700874","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[104.92819960000008,-2.399922199999935],[104.92919960000006,-2.397505199999955],[104.92849960000007,-2.362188199999935],[104.92769960000004,-2.355733199999975],[104.92619960000007,-2.354230199999961],[104.91619960000008,-2.359614199999953],[104.91299960000003,-2.3656532],[104.92449960000005,-2.398873199999969],[104.92609960000004,-2.400548199999946],[104.92819960000008,-2.399922199999935]]],[[[104.76593830000007,-2.347053899999935],[104.77275730000008,-2.316630799999928],[104.77205790000005,-2.3122597],[104.76908550000007,-2.312784199999953],[104.76593830000007,-2.318204399999956],[104.75509790000007,-2.343557],[104.75509790000007,-2.349152099999969],[104.75667150000004,-2.352474099999938],[104.76593830000007,-2.347053899999935]]],[[[104.64559960000008,-1.918057199999964],[104.64439960000004,-1.914197199999933],[104.63249960000007,-1.904287199999942],[104.61739960000006,-1.886946199999954],[104.59379960000007,-1.8676452],[104.55349960000007,-1.849266199999931],[104.54649960000006,-1.848747199999934],[104.54149960000007,-1.8510522],[104.53929960000005,-1.8537022],[104.53819960000004,-1.873866199999952],[104.52439960000004,-1.907684199999949],[104.52349960000004,-1.915865199999928],[104.51989960000009,-1.920186199999932],[104.50979960000006,-1.921280199999956],[104.50809960000004,-1.923124199999961],[104.50239960000005,-1.935280199999966],[104.50239960000005,-1.939716199999964],[104.50659960000007,-1.954580199999953],[104.51319960000006,-1.963740199999961],[104.51789960000008,-1.9676582],[104.52289960000007,-1.9702512],[104.54159960000004,-1.975090199999954],[104.54699960000005,-1.981485199999952],[104.57309960000003,-1.993354199999942],[104.58399960000008,-1.994103199999927],[104.59659960000005,-1.992606199999955],[104.60759960000007,-1.989725199999953],[104.61029960000008,-1.987651199999959],[104.61339960000004,-1.980046199999947],[104.61859960000004,-1.9788372],[104.61969960000005,-1.973479199999929],[104.61799960000008,-1.966738199999952],[104.61109960000005,-1.957808199999931],[104.60969960000006,-1.953430199999957],[104.61979960000008,-1.946113199999957],[104.62819960000007,-1.932747199999937],[104.64359960000007,-1.925258199999973],[104.64569960000006,-1.921513199999936],[104.64559960000008,-1.918057199999964]]],[[[104.60556010000005,-1.805863599999952],[104.60639960000009,-1.802151199999969],[104.60429960000005,-1.796822199999951],[104.59449960000006,-1.784247199999925],[104.59359960000006,-1.772230199999967],[104.58799960000005,-1.758754199999942],[104.59169960000008,-1.731844199999955],[104.58529960000004,-1.7261992],[104.57519960000008,-1.726399199999946],[104.56999960000007,-1.728285199999959],[104.56739960000004,-1.731700199999977],[104.56459960000007,-1.740133199999946],[104.56109960000003,-1.7666642],[104.54849960000007,-1.798415199999965],[104.54929960000004,-1.805414199999973],[104.56089960000008,-1.807956199999978],[104.57599960000005,-1.807009199999925],[104.59739960000007,-1.8114042],[104.60279960000008,-1.809670199999971],[104.60556010000005,-1.805863599999952]]],[[[104.49795610000007,-1.672937399999967],[104.48409960000004,-1.656034199999965],[104.48078680000003,-1.6574086],[104.48025050000007,-1.6551124],[104.47923470000006,-1.657722599999943],[104.47439960000008,-1.656380199999944],[104.47280820000009,-1.654546],[104.47417460000008,-1.652575299999967],[104.47231670000008,-1.652032799999972],[104.47099960000008,-1.645261199999936],[104.46482880000008,-1.644231699999978],[104.46454410000007,-1.641088599999932],[104.46039960000007,-1.642034199999955],[104.45269960000007,-1.633219199999928],[104.45029960000005,-1.632816199999979],[104.43969960000004,-1.636445199999969],[104.43419960000006,-1.635293199999978],[104.42853410000004,-1.625866],[104.42675470000006,-1.629296199999942],[104.42209960000008,-1.626363199999957],[104.41890060000009,-1.626310599999954],[104.41589960000005,-1.628264199999933],[104.40759960000008,-1.625441199999955],[104.39649960000008,-1.631835199999955],[104.37179960000009,-1.634255199999927],[104.36162320000005,-1.638865299999964],[104.35847070000005,-1.642855199999929],[104.35981020000008,-1.655901699999959],[104.35460810000006,-1.6593004],[104.35488630000003,-1.662263099999961],[104.35120660000007,-1.666364299999941],[104.34658340000004,-1.668316399999981],[104.34232030000004,-1.675589099999968],[104.15272080000005,-1.724883],[104.16282210000008,-1.793235899999956],[104.21249960000006,-1.888833199999965],[104.24249960000009,-1.936824199999933],[104.25399960000004,-1.951759199999969],[104.28589960000005,-1.988188199999968],[104.31859960000008,-2.028423199999963],[104.36038460000009,-2.070929299999932],[104.37593330000004,-2.110394],[104.39820210000005,-2.1444369],[104.41058990000005,-2.159495299999946],[104.42835050000008,-2.185451599999965],[104.43536530000006,-2.192033799999933],[104.44972440000004,-2.201511499999981],[104.464903,-2.218402599999933],[104.47855310000006,-2.228473099999974],[104.51982770000006,-2.2524751],[104.54493920000004,-2.263282799999956],[104.55570720000009,-2.264104299999929],[104.56270220000005,-2.262502799999936],[104.59351090000007,-2.2490973],[104.61649960000005,-2.249780199999975],[104.62419960000005,-2.252153199999952],[104.63599960000005,-2.264805199999955],[104.64449960000007,-2.284680199999968],[104.65509960000009,-2.319548199999929],[104.65689960000009,-2.322050199999978],[104.65339960000006,-2.326544199999944],[104.61801520000006,-2.354936499999951],[104.57709960000005,-2.383013199999937],[104.53590760000009,-2.396176699999955],[104.52751530000006,-2.4004222],[104.506214,-2.417578799999944],[104.45936190000003,-2.438340599999947],[104.43655760000007,-2.441113799999926],[104.40269840000008,-2.449116599999968],[104.37532410000006,-2.451196599999946],[104.359989,-2.455201],[104.34779960000009,-2.461798199999976],[104.32309960000003,-2.479329199999938],[104.29879960000005,-2.506900199999961],[104.29419960000007,-2.510243199999934],[104.27539960000007,-2.518502199999944],[104.24999960000008,-2.519597199999964],[104.23069960000004,-2.515148199999942],[104.22239960000007,-2.511024199999952],[104.20769960000007,-2.500649199999941],[104.18579960000005,-2.481130199999939],[104.16709960000009,-2.4596392],[104.14959960000004,-2.444845199999975],[104.12779960000006,-2.431565199999966],[104.11689960000007,-2.427665199999979],[104.10619960000008,-2.425971199999935],[104.09499960000005,-2.429146199999934],[104.08829960000008,-2.433699199999978],[104.06615240000008,-2.454110599999979],[104.10234250000008,-2.507055399999956],[104.07597490000006,-2.525971299999981],[104.07596950000004,-2.533715],[104.07307660000004,-2.539108899999974],[104.09769960000006,-2.5515772],[104.11322340000004,-2.565039],[104.13426560000005,-2.550024199999939],[104.14431150000007,-2.5564922],[104.15291680000007,-2.566206],[104.15883210000004,-2.561504099999979],[104.16972620000007,-2.572784199999944],[104.17644490000004,-2.575178799999946],[104.19697590000004,-2.590517499999976],[104.21,-2.596661599999948],[104.222075,-2.600053099999968],[104.208444,-2.615710399999955],[104.20959960000005,-2.620630199999937],[104.22849960000008,-2.617473199999949],[104.22959960000009,-2.631149199999925],[104.24368240000007,-2.629171],[104.23886730000004,-2.645276399999943],[104.26129960000009,-2.652619199999947],[104.26959960000005,-2.657124199999942],[104.27889960000005,-2.658587199999943],[104.28286210000005,-2.6623707],[104.26636760000008,-2.674492],[104.24436940000004,-2.694386099999974],[104.236828,-2.697687499999972],[104.23108220000006,-2.703861599999925],[104.22787880000004,-2.708731599999965],[104.24667810000005,-2.725057299999946],[104.22929960000005,-2.740442199999961],[104.22369960000003,-2.748421199999939],[104.20939960000004,-2.762319199999979],[104.19749960000007,-2.775917199999981],[104.19159960000007,-2.786710199999959],[104.18259960000006,-2.791487199999949],[104.16879960000006,-2.813755199999946],[104.15469960000007,-2.829023199999938],[104.14699960000007,-2.8398132],[104.13164920000008,-2.855272899999932],[104.13245850000004,-2.864030799999966],[104.15769960000006,-2.873524199999963],[104.17709960000008,-2.885674199999926],[104.18179960000003,-2.892150199999946],[104.18439960000006,-2.9026552],[104.18329960000005,-2.911631199999931],[104.18006310000004,-2.917422199999976],[104.18273170000003,-2.917424099999948],[104.18314230000004,-2.923770199999979],[104.17720080000004,-2.942138499999942],[104.17546270000008,-2.9689859],[104.18062950000007,-2.992828899999949],[104.17936260000005,-3.02015],[104.18044240000006,-3.032428599999946],[104.18319090000006,-3.044152299999951],[104.18758860000008,-3.052461599999958],[104.16739880000006,-3.054794199999947],[104.16078150000004,-3.069063699999958],[104.16277320000006,-3.077649099999974],[104.16157050000004,-3.0819913],[104.15363610000009,-3.090612399999941],[104.15424360000009,-3.094444899999928],[104.16250680000007,-3.094248799999946],[104.169091,-3.089486099999931],[104.19792970000009,-3.060719099999972],[104.22189560000004,-3.044106899999974],[104.23235190000008,-3.030987699999969],[104.23892110000008,-3.031304],[104.24204350000008,-3.032943399999965],[104.25035740000004,-3.041683399999954],[104.25552520000008,-3.043487299999924],[104.25660470000008,-3.033190499999932],[104.264345,-3.026542799999959],[104.26734110000007,-3.027710799999966],[104.27409280000006,-3.034597899999937],[104.28427480000005,-3.035442599999953],[104.30648370000006,-3.024674199999936],[104.31819670000004,-3.021801],[104.33852060000004,-3.032437399999935],[104.355759,-3.048388699999975],[104.35303310000006,-3.0346205],[104.34295940000004,-3.017306299999973],[104.37568420000008,-3.020830799999942],[104.38426760000004,-3.023819199999934],[104.39617860000004,-3.020142399999941],[104.40496890000009,-3.019171299999925],[104.41660220000006,-3.021093499999949],[104.42507730000005,-3.026742099999979],[104.44346280000008,-3.0347453],[104.45099760000005,-3.035145299999954],[104.47468860000004,-3.030156599999941],[104.47859250000005,-3.031660399999964],[104.48265370000007,-3.056079199999942],[104.48573590000007,-3.060822899999948],[104.49161350000008,-3.062686199999973],[104.49905230000007,-3.062945],[104.50543970000007,-3.061306499999944],[104.51099450000004,-3.055107599999928],[104.51549760000006,-3.047193599999957],[104.52337420000003,-3.042017099999953],[104.53785870000007,-3.027832899999964],[104.54203190000004,-3.027251],[104.54838130000007,-3.029041199999938],[104.56532390000007,-3.037402],[104.57991240000007,-3.034270499999934],[104.58267,-3.034964699999932],[104.58531750000009,-3.0387231],[104.58296660000008,-3.0480376],[104.58652060000009,-3.0508586],[104.59251460000007,-3.051597899999933],[104.59993290000006,-3.049216299999955],[104.60183150000006,-3.046139],[104.60308380000004,-3.041544099999953],[104.60208680000005,-3.027369],[104.60647260000007,-3.019915499999968],[104.61213220000008,-3.014264799999978],[104.61883140000003,-3.013045899999952],[104.62591150000009,-3.014269599999977],[104.63587140000004,-3.018983599999956],[104.64494390000004,-3.0254487],[104.62579960000005,-3.000581199999942],[104.62299960000007,-2.9913392],[104.62359960000003,-2.974960199999941],[104.62739960000005,-2.965287199999977],[104.62719960000004,-2.962212199999954],[104.62907030000008,-2.961602399999947],[104.62918560000008,-2.954142399999967],[104.63366690000004,-2.936342099999933],[104.63778070000006,-2.930133],[104.64297250000004,-2.932392599999957],[104.64409960000006,-2.925896199999954],[104.64769960000007,-2.922300199999938],[104.65169950000006,-2.921211199999959],[104.65619960000004,-2.922854199999961],[104.66219960000006,-2.928338199999928],[104.676768,-2.935539699999936],[104.67477190000005,-2.9270585],[104.67645940000006,-2.926481699999954],[104.675006,-2.923345299999937],[104.67511840000009,-2.916971399999966],[104.67852520000008,-2.914679399999955],[104.67907480000008,-2.906398],[104.67460590000007,-2.903644699999973],[104.67746360000007,-2.899096],[104.67532640000007,-2.896249499999954],[104.67635440000004,-2.894226899999978],[104.67371440000005,-2.890405199999975],[104.66940760000006,-2.888722499999972],[104.666847,-2.883372],[104.66898850000007,-2.8768671],[104.67181420000009,-2.872117799999955],[104.67445050000003,-2.871154799999942],[104.67492860000004,-2.865443299999924],[104.70422130000009,-2.864693099999954],[104.70526810000007,-2.869362899999942],[104.70998860000009,-2.873079899999937],[104.730094,-2.877752799999939],[104.73017760000005,-2.882781499999965],[104.734636,-2.885169099999928],[104.73521130000006,-2.890129799999954],[104.73770950000005,-2.892674499999941],[104.741361,-2.893904099999929],[104.74915480000004,-2.893556499999931],[104.75158250000004,-2.900601299999948],[104.75642940000006,-2.903896299999928],[104.75646080000007,-2.915255499999944],[104.76853260000007,-2.915082],[104.77128320000008,-2.919033299999967],[104.77396510000005,-2.918789899999979],[104.77864250000005,-2.914957399999935],[104.78337580000004,-2.9160102],[104.78333840000005,-2.912660199999948],[104.78944750000005,-2.907568699999956],[104.79039030000007,-2.904029699999967],[104.81105760000008,-2.909407499999929],[104.80632970000005,-2.914838299999928],[104.80386550000009,-2.9218543],[104.79524480000003,-2.921852799999954],[104.80837810000008,-2.940015199999948],[104.81422090000007,-2.938967199999979],[104.81468230000007,-2.944263],[104.84984240000006,-2.924750299999971],[104.85142120000006,-2.924949],[104.85054580000008,-2.942165399999965],[104.851939,-2.944818299999952],[104.84727610000004,-2.952403],[104.84819670000007,-2.952403199999935],[104.84737520000004,-2.956117699999936],[104.86010250000004,-2.947039199999949],[104.86463910000003,-2.951981499999931],[104.86573370000008,-2.957014399999935],[104.86087750000007,-2.971862699999974],[104.85540240000006,-2.979546099999936],[104.83994090000004,-2.988408],[104.83388480000008,-2.987880299999972],[104.83204180000007,-3.004414399999973],[104.82423170000004,-3.010743699999978],[104.83311780000008,-3.010697899999968],[104.83640630000008,-3.006520099999932],[104.83890770000005,-3.006420699999978],[104.83620640000004,-3.013808599999948],[104.83188090000004,-3.014007399999969],[104.82966510000006,-3.018552099999965],[104.823744,-3.024793799999941],[104.81833290000009,-3.027279399999941],[104.81443780000006,-3.026219699999956],[104.81215510000004,-3.027862699999957],[104.81361440000006,-3.034046799999942],[104.80989670000008,-3.038965399999938],[104.80651810000006,-3.038580499999966],[104.80657590000004,-3.036386],[104.80096380000003,-3.0371224],[104.79735750000003,-3.0347769],[104.790323,-3.052088199999957],[104.78205150000008,-3.051109099999962],[104.780745,-3.052094499999953],[104.79938530000004,-3.054771699999947],[104.79429080000006,-3.060867199999961],[104.79415550000004,-3.062966599999925],[104.80559960000005,-3.0635341],[104.82819960000006,-3.068653199999972],[104.82839960000007,-3.077758199999948],[104.83329960000003,-3.084890199999961],[104.83309960000008,-3.086643199999969],[104.85459960000009,-3.101384199999927],[104.85919960000007,-3.101221199999941],[104.87249960000008,-3.097043199999973],[104.87929960000008,-3.099132199999929],[104.88339960000008,-3.1027142],[104.88869960000005,-3.122145199999977],[104.89439960000004,-3.125212199999964],[104.90539960000007,-3.127368199999978],[104.90789960000006,-3.130139199999974],[104.90469960000007,-3.137047199999927],[104.90329960000008,-3.146610199999941],[104.89849370000007,-3.155722299999979],[104.91512810000006,-3.161525099999949],[104.91993180000009,-3.160658799999965],[104.93017180000004,-3.1697622],[104.94290610000007,-3.171939899999927],[104.96024690000007,-3.169405299999937],[104.96719280000008,-3.165994699999942],[104.97560560000005,-3.158077899999967],[104.97909960000004,-3.158608199999946],[104.98109960000005,-3.157324199999948],[104.97992190000008,-3.146796699999925],[104.98899190000009,-3.144915599999933],[104.99958840000005,-3.146337899999935],[105.00163210000005,-3.145131499999934],[105.00135770000009,-3.137343199999975],[104.99954570000006,-3.131632],[105.00296550000007,-3.127906899999971],[105.01629320000006,-3.124516899999946],[105.02857460000007,-3.112585],[105.03125690000007,-3.1047203],[105.03341790000007,-3.049102799999957],[105.04140670000004,-3.012834399999974],[105.01957630000004,-3.007339799999954],[105.02126820000007,-3.004930099999967],[105.02695220000004,-3.004521799999964],[105.02614010000008,-2.999215599999957],[105.023298,-2.996766699999966],[105.026952,-2.996358399999963],[105.03547750000007,-2.982072199999948],[105.00976840000004,-2.971137399999975],[105.01929960000007,-2.964985199999944],[105.03919960000007,-2.963841199999933],[105.04724020000003,-2.954256199999975],[105.06163180000004,-2.953987899999959],[105.06462090000008,-2.949859499999945],[105.06929960000008,-2.950623199999939],[105.07215560000009,-2.943350699999939],[105.078301,-2.941027],[105.09236570000007,-2.9419344],[105.09597470000006,-2.931754599999977],[105.09375490000008,-2.915071299999966],[105.06786140000008,-2.907519099999945],[105.06709960000006,-2.903320199999939],[105.06919960000005,-2.880956199999957],[105.07179960000008,-2.874264199999971],[105.09059960000008,-2.8417312],[105.08089960000007,-2.808393199999955],[105.07799960000006,-2.805422199999953],[105.07999960000006,-2.799871199999927],[105.08139960000005,-2.787701199999958],[105.07819960000006,-2.772784199999933],[105.07499960000007,-2.771563199999946],[105.07689960000005,-2.767457199999967],[105.08729960000005,-2.755680199999972],[105.09059960000008,-2.745795199999975],[105.09099960000003,-2.741611199999966],[105.08999960000006,-2.736817199999962],[105.08795050000003,-2.735285099999942],[105.08752960000004,-2.727507],[105.08780250000007,-2.721458899999959],[105.08985260000009,-2.717472399999963],[105.09652330000006,-2.711466499999972],[105.11499960000003,-2.718823],[105.11899960000005,-2.718068199999948],[105.13229960000007,-2.720751199999938],[105.14379960000008,-2.7254852],[105.17689960000007,-2.732990199999961],[105.19299960000006,-2.732330199999979],[105.20794850000004,-2.729771899999946],[105.21280890000008,-2.723223299999972],[105.21739960000008,-2.710933199999943],[105.21590380000004,-2.685411099999953],[105.19639960000006,-2.655057199999931],[105.18129960000005,-2.652976199999955],[105.17609970000007,-2.649457199999972],[105.17459950000006,-2.645478199999957],[105.17559960000006,-2.641615199999933],[105.17979960000008,-2.636082199999976],[105.18499960000008,-2.633662199999947],[105.19799960000006,-2.636030199999936],[105.20429960000007,-2.634418199999971],[105.20586710000003,-2.632503699999972],[105.20647050000008,-2.627644499999974],[105.20953750000007,-2.6254218],[105.20929960000007,-2.618737199999941],[105.21249960000006,-2.608476199999927],[105.21189960000004,-2.6046702],[105.20339960000007,-2.5949812],[105.20129960000008,-2.590483199999937],[105.20366580000007,-2.583254799999963],[105.21837270000009,-2.586722299999963],[105.22836180000007,-2.587066099999959],[105.22950390000005,-2.581922199999951],[105.24088210000008,-2.566448699999967],[105.24733680000008,-2.5547887],[105.25174830000009,-2.554057499999942],[105.25863520000007,-2.549296599999934],[105.26229960000006,-2.5436482],[105.27060630000005,-2.536674799999957],[105.27219960000008,-2.526220199999955],[105.279909,-2.518732599999964],[105.28559960000007,-2.510138199999972],[105.289614,-2.508130599999959],[105.29896410000003,-2.508254099999931],[105.30289960000005,-2.503571199999953],[105.31319960000008,-2.498270199999979],[105.31449960000003,-2.495388199999979],[105.31079960000005,-2.484374199999934],[105.32319960000007,-2.468350199999975],[105.33349960000004,-2.462588199999971],[105.33469960000008,-2.460628199999974],[105.33469960000008,-2.450077199999953],[105.33643110000008,-2.447921199999939],[105.34294710000006,-2.447560199999941],[105.35209410000004,-2.444558],[105.36077250000005,-2.452088699999933],[105.36749960000009,-2.445476199999973],[105.37369670000004,-2.443999099999928],[105.37995860000007,-2.445530799999972],[105.38573660000009,-2.4505483],[105.39257360000005,-2.448728],[105.40020040000007,-2.456443],[105.41522760000004,-2.448536799999943],[105.41678250000007,-2.448067099999946],[105.42187620000004,-2.451802599999951],[105.42485160000007,-2.448366199999953],[105.42848740000005,-2.447384599999964],[105.43239270000004,-2.450601],[105.439389,-2.449601599999937],[105.44411980000007,-2.450496599999951],[105.44891590000009,-2.454466699999955],[105.45185960000003,-2.459669199999951],[105.45919930000008,-2.458099799999957],[105.47025830000007,-2.462846899999931],[105.47297930000008,-2.461874],[105.47044510000006,-2.458674],[105.47003770000003,-2.4550963],[105.47712830000006,-2.450812],[105.48028630000005,-2.447258099999942],[105.48419690000009,-2.445781899999929],[105.48748570000004,-2.448814],[105.49415910000005,-2.450051599999938],[105.49532720000008,-2.447906099999955],[105.49434870000005,-2.4434153],[105.49533550000007,-2.439652699999954],[105.52067570000008,-2.426940299999956],[105.53273130000008,-2.417777199999932],[105.55767430000009,-2.413183699999934],[105.56368960000003,-2.416964299999961],[105.56840420000009,-2.411102899999946],[105.56794190000005,-2.402780099999973],[105.55314590000006,-2.398156399999948],[105.51106980000009,-2.390758399999925],[105.49026290000006,-2.383360399999958],[105.47130550000008,-2.379661399999975],[105.44838160000006,-2.387596599999938],[105.43069960000008,-2.388821199999938],[105.40339960000006,-2.386966199999961],[105.40009960000003,-2.382353199999955],[105.38999960000007,-2.3825802],[105.36039960000005,-2.377438199999972],[105.34599960000008,-2.377952199999925],[105.33779960000004,-2.376393199999939],[105.33219960000008,-2.373738199999934],[105.31479960000007,-2.374251199999946],[105.30379960000005,-2.371365199999957],[105.29719960000006,-2.371824199999935],[105.28559960000007,-2.365206199999932],[105.27619960000004,-2.366224199999976],[105.27609960000007,-2.3616112],[105.26689960000004,-2.357860199999948],[105.26269960000008,-2.354284199999938],[105.25206970000005,-2.352005399999939],[105.23259370000005,-2.342746299999931],[105.22140050000007,-2.330288199999927],[105.21088270000007,-2.326143799999954],[105.20481640000008,-2.326143799999954],[105.15947870000008,-2.346896899999933],[105.13220170000005,-2.369189099999971],[105.12089960000009,-2.373838199999966],[105.11029960000008,-2.369049199999949],[105.10829960000007,-2.366742199999976],[105.10215310000007,-2.367136],[105.09011590000006,-2.362935499999935],[105.08100420000005,-2.361693],[105.08388830000007,-2.364705299999969],[105.07900790000008,-2.363170499999967],[105.06690790000005,-2.363050499999929],[105.06010790000005,-2.366277499999967],[105.05730790000007,-2.3740025],[105.05070790000008,-2.375383499999941],[105.04590790000009,-2.373594499999967],[105.02889960000005,-2.350588199999947],[105.00409960000007,-2.333849199999975],[105.00079960000005,-2.334994199999926],[104.96319960000005,-2.331304199999977],[104.95409960000006,-2.332312199999933],[104.92629960000005,-2.340807199999972],[104.93289960000004,-2.366407199999969],[104.93209960000007,-2.381902199999956],[104.93429960000009,-2.393662199999937],[104.93339960000009,-2.405354199999977],[104.93449960000004,-2.412731199999939],[104.94139960000007,-2.438966199999925],[104.93379960000004,-2.439979199999925],[104.91839950000008,-2.408735199999967],[104.91979960000003,-2.403236199999981],[104.91359960000005,-2.386452199999951],[104.90619960000004,-2.375828199999944],[104.90239960000008,-2.372705199999928],[104.90119960000004,-2.368438199999957],[104.90159960000005,-2.364233199999944],[104.90849960000008,-2.357746199999951],[104.90999960000005,-2.354178199999978],[104.91689960000008,-2.3281032],[104.91879960000006,-2.305584199999942],[104.91709960000009,-2.287316199999964],[104.91309960000007,-2.282291199999975],[104.90889960000004,-2.280434199999945],[104.89909960000006,-2.279296199999976],[104.89159960000006,-2.281992199999934],[104.87189960000006,-2.284579199999939],[104.85879960000005,-2.283904199999938],[104.85289960000006,-2.285728199999937],[104.84819960000004,-2.284446199999934],[104.84439960000009,-2.285701199999949],[104.84351980000008,-2.290401199999963],[104.83919850000007,-2.298272099999963],[104.83814940000008,-2.305091],[104.838674,-2.3115603],[104.84287030000007,-2.322925299999952],[104.84304510000004,-2.32887],[104.83972310000007,-2.3358638],[104.82433670000006,-2.3547471],[104.82626720000007,-2.354933899999935],[104.81437790000007,-2.366460299999972],[104.78889960000004,-2.382598199999961],[104.77446720000006,-2.389980499999979],[104.75537660000003,-2.391044099999931],[104.753327,-2.394631],[104.75230220000009,-2.4118822],[104.75554750000003,-2.427254599999969],[104.75729960000007,-2.454636199999925],[104.75589960000008,-2.470809199999962],[104.75030890000005,-2.498961599999973],[104.74690460000005,-2.508734],[104.73851580000007,-2.555647499999964],[104.73744160000007,-2.567248699999936],[104.73848760000004,-2.571204299999977],[104.73378940000003,-2.585939599999961],[104.72686240000007,-2.596177499999953],[104.72236810000004,-2.584000599999968],[104.72542260000006,-2.5789097],[104.72695040000008,-2.561722599999939],[104.72016320000006,-2.531894199999954],[104.72339960000005,-2.515699199999972],[104.73149960000006,-2.499479199999939],[104.741799,-2.470317199999954],[104.74369960000007,-2.458096199999943],[104.74299960000008,-2.450835199999972],[104.74019960000004,-2.437518199999943],[104.73369960000008,-2.4210202],[104.73009960000007,-2.400615199999947],[104.72999960000004,-2.379875199999958],[104.72329960000008,-2.3739202],[104.71229510000006,-2.369509499999936],[104.70724850000005,-2.3543534],[104.69953670000007,-2.352184399999942],[104.69686350000006,-2.353007],[104.69739960000004,-2.341979199999969],[104.70899960000008,-2.341382199999941],[104.72549960000003,-2.3512282],[104.73869960000007,-2.357204199999956],[104.74729960000008,-2.355215199999975],[104.75149960000005,-2.343880199999944],[104.76259960000004,-2.323694199999977],[104.77657930000004,-2.292164499999956],[104.83094590000007,-2.246788],[104.83411860000007,-2.250313199999937],[104.84116890000007,-2.249960599999952],[104.87113290000008,-2.218234099999961],[104.89580910000006,-2.200255699999957],[104.90497460000006,-2.189327699999978],[104.90497460000006,-2.169586699999968],[104.90238690000007,-2.144767299999955],[104.90389960000005,-2.1370832],[104.89559960000008,-2.096384199999932],[104.88629960000009,-2.0669732],[104.87839960000008,-2.048397199999954],[104.85489960000007,-2.015600199999938],[104.84439960000009,-2.0050242],[104.83809960000008,-2.001547199999948],[104.83199960000007,-2.000087199999939],[104.80319960000008,-1.997576199999969],[104.77389960000005,-1.992206199999941],[104.71719960000007,-1.988287199999945],[104.71429960000006,-1.989612199999954],[104.70869960000005,-1.996180199999969],[104.69609960000008,-1.999597199999926],[104.69339960000008,-2.001604199999974],[104.69149960000004,-2.005516199999931],[104.68929960000008,-2.029072199999973],[104.69039960000003,-2.043074199999978],[104.68939960000006,-2.052000199999952],[104.68739960000005,-2.054990199999963],[104.67729960000008,-2.058357199999932],[104.67289960000005,-2.057363199999941],[104.66579960000007,-2.051465199999939],[104.65869960000003,-2.0514422],[104.64669960000003,-2.053074199999969],[104.63749960000007,-2.056789199999969],[104.63429960000008,-2.059775199999933],[104.63279960000006,-2.066741199999967],[104.64169960000004,-2.086760199999958],[104.63749960000007,-2.092047199999968],[104.63159960000007,-2.093584199999952],[104.62979960000007,-2.098302199999978],[104.63149960000004,-2.106027199999971],[104.62729960000007,-2.112639199999933],[104.62299960000007,-2.1144112],[104.60679960000004,-2.114072199999953],[104.59549960000004,-2.105394199999978],[104.59879960000006,-2.101430199999925],[104.60909960000004,-2.108376199999952],[104.62449960000004,-2.108713199999954],[104.62549960000007,-2.106815199999971],[104.62409960000008,-2.095749199999943],[104.62529960000006,-2.091950199999928],[104.63509960000005,-2.080805199999929],[104.62689960000006,-2.0668382],[104.62759960000005,-2.058198199999936],[104.63039960000003,-2.0550962],[104.64619960000005,-2.046217199999944],[104.65179960000006,-2.045486199999971],[104.65959960000004,-2.046663199999955],[104.66939960000008,-2.045427199999949],[104.67859960000004,-2.050123199999973],[104.68199960000004,-2.049788199999966],[104.68209960000007,-2.042990199999963],[104.67339960000004,-2.021992199999943],[104.67159960000004,-2.010522199999969],[104.67289960000005,-2.004362199999946],[104.67679960000004,-1.9997082],[104.68309960000005,-1.996064199999978],[104.68679960000009,-1.9850022],[104.68379960000004,-1.981142199999965],[104.66999960000004,-1.971751199999972],[104.66149960000007,-1.960229199999958],[104.65289960000007,-1.959595199999967],[104.64069960000006,-1.964837199999977],[104.62939960000006,-1.972557199999926],[104.62659960000008,-1.984540199999969],[104.61629960000005,-1.996005199999956],[104.60569960000004,-2.000403199999937],[104.59439960000009,-2.0028442],[104.57389960000006,-1.998786199999927],[104.56649960000004,-1.993642199999954],[104.56209960000007,-1.992951199999936],[104.55589960000003,-1.988169199999959],[104.54459960000008,-1.985461199999975],[104.53619960000003,-1.975666199999978],[104.52389960000005,-1.975205199999948],[104.51989960000009,-1.973419199999967],[104.50619960000006,-1.962127199999941],[104.49899960000005,-1.943000199999972],[104.49909960000008,-1.935625199999947],[104.49539960000004,-1.920185199999935],[104.49159960000009,-1.911255199999971],[104.48679960000004,-1.9073382],[104.47649960000007,-1.906473199999937],[104.47309960000007,-1.907626199999925],[104.47009960000008,-1.910506199999929],[104.46859960000006,-1.914539199999979],[104.46789960000007,-1.922991199999956],[104.47149960000007,-1.954433199999926],[104.47549960000003,-1.958094199999948],[104.47629960000006,-1.961320199999932],[104.47599960000008,-1.963394199999925],[104.47289960000006,-1.964085199999943],[104.46829960000008,-1.954078199999969],[104.46859960000006,-1.948357199999975],[104.46429960000006,-1.927098199999932],[104.46629960000007,-1.914827199999934],[104.46519960000006,-1.9033042],[104.46859960000006,-1.896045199999946],[104.46809960000007,-1.8835442],[104.47159960000005,-1.880663199999958],[104.47349960000008,-1.875593199999969],[104.47239960000007,-1.871618199999943],[104.46399960000008,-1.865280199999972],[104.46459960000004,-1.859001199999966],[104.47429960000005,-1.847191199999941],[104.47969960000006,-1.845635199999947],[104.48429960000004,-1.842409199999963],[104.48599960000007,-1.836705199999926],[104.48579960000006,-1.824492199999952],[104.49119960000007,-1.821842199999935],[104.49929960000009,-1.808591199999967],[104.50249960000008,-1.808418199999949],[104.50689960000005,-1.804558199999974],[104.50859960000008,-1.798855199999934],[104.51399960000003,-1.800583199999949],[104.52719960000007,-1.797703199999944],[104.53239960000008,-1.793901199999937],[104.53989960000007,-1.782609199999968],[104.53999960000004,-1.772123199999953],[104.53729960000004,-1.755473199999926],[104.53759960000008,-1.748502199999962],[104.54149960000007,-1.735828199999958],[104.53859960000005,-1.717968199999973],[104.53599960000008,-1.713417199999981],[104.52779960000004,-1.708289199999967],[104.52689960000004,-1.705869199999938],[104.52969960000007,-1.700800199999946],[104.52839960000006,-1.695326199999954],[104.51759960000004,-1.677063199999964],[104.51439960000005,-1.673549199999968],[104.50749960000007,-1.6707832],[104.49795610000007,-1.672937399999967]]]]},"properties":{"shapeName":"Banyu Asin","shapeISO":"","shapeID":"22746128B65491159453942","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[109.36160280000007,-7.485296199999937],[109.35833740000004,-7.485534599999937],[109.35543830000006,-7.482566799999972],[109.35416410000005,-7.485418699999968],[109.353035,-7.4853143],[109.35116580000005,-7.481097599999941],[109.34688570000009,-7.484188499999959],[109.34563450000007,-7.481678399999964],[109.34635170000007,-7.478774],[109.34517670000008,-7.478168399999959],[109.34129340000004,-7.480910199999926],[109.34233860000006,-7.484121699999946],[109.33810430000005,-7.487287899999956],[109.33737950000005,-7.493499699999973],[109.33491520000007,-7.485697199999947],[109.32093810000003,-7.482286399999964],[109.32127380000009,-7.473317099999974],[109.32627110000004,-7.472734399999979],[109.32730870000006,-7.4713601],[109.32547,-7.465991],[109.32659150000006,-7.462517199999979],[109.32965850000005,-7.460575499999948],[109.33158880000008,-7.461051899999973],[109.3293,-7.465943799999934],[109.33128360000006,-7.468974499999945],[109.33660130000004,-7.462969699999974],[109.33482360000005,-7.460529299999962],[109.33721160000005,-7.460211199999947],[109.33442690000004,-7.458888],[109.33493040000008,-7.457880399999965],[109.34095760000008,-7.458334399999956],[109.34097520000006,-7.449762899999939],[109.33791580000008,-7.448115299999927],[109.33868780000006,-7.446630699999957],[109.33756250000005,-7.445819099999937],[109.33444260000005,-7.4463088],[109.33132170000005,-7.443054599999925],[109.331212,-7.4414121],[109.33299550000004,-7.441382499999975],[109.33187870000006,-7.437539499999957],[109.33519750000005,-7.437548599999957],[109.33509830000008,-7.435152499999958],[109.33332830000006,-7.433713399999931],[109.33353430000005,-7.4301114],[109.32920840000008,-7.426837399999954],[109.32592780000004,-7.4269881],[109.32339480000007,-7.425388299999952],[109.32064060000005,-7.419064499999934],[109.32140350000009,-7.414970799999935],[109.31935890000005,-7.409337499999936],[109.31273650000009,-7.409672699999931],[109.31092840000008,-7.400168399999927],[109.30666440000005,-7.390203699999972],[109.30473330000007,-7.389288399999941],[109.30591180000005,-7.382863],[109.30142980000005,-7.382017099999928],[109.30117040000005,-7.375554499999964],[109.29801940000004,-7.371952],[109.294632,-7.361841199999958],[109.29014590000008,-7.356606],[109.28766630000007,-7.3483753],[109.28181460000008,-7.341558899999939],[109.27871710000005,-7.331379399999946],[109.275856,-7.329071499999941],[109.26944740000005,-7.318583899999965],[109.26431280000008,-7.304164799999967],[109.257164,-7.291890599999931],[109.25683590000006,-7.285270199999957],[109.25493620000009,-7.280551399999979],[109.24955750000004,-7.273489899999959],[109.24451450000004,-7.271753199999978],[109.23555,-7.254624299999932],[109.223671,-7.246292099999948],[109.21744540000009,-7.248883199999966],[109.20383450000008,-7.2476124],[109.19713590000003,-7.249593199999936],[109.17918720000006,-7.2626269],[109.16711030000005,-7.268391099999974],[109.16441350000008,-7.271358],[109.15724180000007,-7.267498399999965],[109.14746860000008,-7.266484699999978],[109.142805,-7.268292299999928],[109.13528,-7.267876],[109.13036110000007,-7.2765093],[109.12485810000004,-7.272892599999977],[109.11712380000006,-7.275064499999928],[109.11637820000004,-7.277449],[109.11766110000008,-7.278556299999934],[109.12575410000005,-7.278589899999929],[109.12556410000008,-7.280058399999973],[109.12721560000006,-7.280983599999956],[109.12702710000008,-7.2820848],[109.11968950000005,-7.283394199999975],[109.11712410000007,-7.285241199999973],[109.10568090000004,-7.287296599999934],[109.10597170000005,-7.289701499999978],[109.11431120000009,-7.292290299999934],[109.11392440000009,-7.294842599999981],[109.10774940000005,-7.296319],[109.10563450000006,-7.298338299999955],[109.10456390000007,-7.302465099999949],[109.08389090000009,-7.30466],[109.07574470000009,-7.314192699999978],[109.06878670000003,-7.332227599999953],[109.06450660000007,-7.338573399999973],[109.05684660000009,-7.340153099999952],[109.04740910000004,-7.338789399999939],[109.03622720000004,-7.351494499999944],[109.03067020000009,-7.349469099999965],[109.03653720000005,-7.342759099999967],[109.02813720000006,-7.326225699999952],[109.02590180000004,-7.32661],[109.02388770000005,-7.332227199999977],[109.01651770000007,-7.335184],[109.00849920000007,-7.333665799999949],[109.00296020000008,-7.3352384],[108.99924410000006,-7.3334138],[108.99724580000009,-7.334600399999943],[108.98773960000005,-7.333468399999958],[108.98407750000007,-7.334818299999938],[108.98382570000007,-7.333044899999948],[108.97826390000006,-7.334989499999949],[108.97706610000006,-7.333360099999936],[108.97563170000006,-7.334855499999946],[108.97201540000009,-7.332425499999943],[108.96962740000004,-7.333648099999948],[108.96709440000006,-7.332210499999974],[108.96725470000007,-7.336075199999925],[108.96493530000004,-7.342419599999971],[108.96292120000004,-7.345423099999948],[108.96162420000007,-7.344966399999976],[108.96290590000007,-7.346850299999971],[108.96249390000008,-7.354402499999935],[108.95642860000004,-7.358707799999934],[108.95418550000005,-7.358432199999982],[108.95465850000005,-7.359383],[108.950058,-7.363578699999948],[108.94960030000004,-7.365518499999951],[108.95449070000006,-7.368461099999934],[108.95184330000006,-7.371707799999967],[108.94936380000007,-7.380885499999977],[108.94503020000008,-7.384449899999936],[108.93981940000003,-7.385689199999945],[108.93554690000008,-7.390024099999948],[108.93869020000005,-7.3927988],[108.93853,-7.3981918],[108.93543240000008,-7.405758299999945],[108.93909460000003,-7.412459799999965],[108.93011480000007,-7.423340699999926],[108.931572,-7.431331099999966],[108.927147,-7.435270699999933],[108.92367560000008,-7.436253],[108.92162330000008,-7.439006199999938],[108.91723630000007,-7.4407925],[108.91453550000006,-7.445004899999958],[108.89138480000008,-7.448460399999931],[108.89251720000004,-7.455821899999933],[108.89514930000007,-7.457461799999976],[108.89530950000005,-7.461952599999961],[108.89788070000009,-7.463714099999947],[108.89756790000007,-7.466912199999967],[108.899933,-7.468163],[108.90107740000008,-7.474470599999961],[108.90328230000006,-7.476377899999932],[108.90753180000007,-7.472658599999932],[108.90976730000006,-7.466069199999936],[108.92074710000009,-7.464246699999933],[108.94184240000004,-7.464428899999973],[108.94610720000009,-7.465783599999952],[108.94826630000006,-7.468025599999976],[108.95990110000008,-7.469879099999957],[108.96431850000005,-7.472876],[108.96339540000008,-7.478227599999968],[108.96481450000005,-7.485208],[108.96407440000007,-7.4875655],[108.95901610000004,-7.491061599999966],[108.95751310000009,-7.4937653],[108.96116760000007,-7.495312599999977],[108.96444060000005,-7.504928499999949],[108.97342810000004,-7.513573599999972],[108.97305650000004,-7.518662099999972],[108.97740180000005,-7.520678],[108.98099520000005,-7.519809599999974],[108.98354340000009,-7.524344399999961],[108.98934180000003,-7.523866599999963],[109,-7.52676],[109.00087740000004,-7.529361599999959],[109.00458530000009,-7.529073199999971],[109.00279240000003,-7.543784499999958],[109.01271060000005,-7.543936699999961],[109.01381690000005,-7.545747699999936],[109.01985170000006,-7.547399],[109.02281190000008,-7.550054899999964],[109.025528,-7.549851799999942],[109.042244,-7.559453],[109.05013280000009,-7.559545499999956],[109.05805970000006,-7.556279599999925],[109.06018070000005,-7.568525299999976],[109.067009,-7.573357],[109.08293160000005,-7.573190099999977],[109.09353640000006,-7.577889399999947],[109.10694890000008,-7.577223699999934],[109.11057280000006,-7.578491099999951],[109.11398320000006,-7.576611],[109.11870580000004,-7.578122499999949],[109.13055420000006,-7.576159899999936],[109.13731390000004,-7.5773],[109.13888550000007,-7.578872599999954],[109.15979770000007,-7.577695799999958],[109.16743470000006,-7.575166599999932],[109.16936150000004,-7.571861199999944],[109.170764,-7.565638499999977],[109.16909790000005,-7.553328399999941],[109.17276770000007,-7.552627],[109.19867710000005,-7.557056399999965],[109.21488950000008,-7.564858799999968],[109.25392150000005,-7.590855499999975],[109.26820380000004,-7.592558299999951],[109.26876070000009,-7.598301299999946],[109.26489260000005,-7.608282],[109.26333620000008,-7.620280199999968],[109.29187380000008,-7.624320299999965],[109.29869080000009,-7.6273393],[109.32900190000004,-7.632288199999948],[109.34382960000005,-7.637969799999951],[109.34558420000008,-7.642363],[109.35883930000006,-7.640083799999957],[109.36200190000005,-7.644859899999972],[109.36203,-7.649683],[109.369545,-7.652703699999961],[109.37254340000004,-7.656407799999954],[109.37797110000008,-7.6578688],[109.37917750000008,-7.6567026],[109.38297270000004,-7.660044099999936],[109.38340750000003,-7.663710899999955],[109.38630370000004,-7.660743499999967],[109.38946240000007,-7.658126699999968],[109.38760770000005,-7.656185299999947],[109.38668,-7.656987599999979],[109.38354490000006,-7.6530628],[109.38479740000008,-7.6506022],[109.386934,-7.651409699999931],[109.38997650000005,-7.649780699999951],[109.38899660000004,-7.645848799999953],[109.39075650000007,-7.6442732],[109.39256840000007,-7.644673599999976],[109.39207580000004,-7.647170199999948],[109.39450070000004,-7.648135599999932],[109.39611060000004,-7.647048899999959],[109.39910890000004,-7.649362499999938],[109.40174050000007,-7.646411499999942],[109.40332060000009,-7.646665499999926],[109.40225710000004,-7.649903599999959],[109.40422010000009,-7.651474],[109.40571820000008,-7.648126599999955],[109.407237,-7.651288],[109.40792920000007,-7.649087399999928],[109.41474060000007,-7.647975],[109.41935730000006,-7.638485899999978],[109.423935,-7.637124],[109.42501550000009,-7.633809199999973],[109.42869570000005,-7.633350399999927],[109.43488690000004,-7.635769],[109.44006350000006,-7.6305508],[109.44097140000008,-7.6277389],[109.440033,-7.626412799999969],[109.44138340000006,-7.626336499999979],[109.44223790000007,-7.623992399999963],[109.44253540000005,-7.625071],[109.44397140000007,-7.624469799999929],[109.44388140000007,-7.621739699999978],[109.44583430000006,-7.620661],[109.44387210000008,-7.615313799999967],[109.44115670000008,-7.612988899999948],[109.44011690000008,-7.605366199999935],[109.43741610000006,-7.604005799999925],[109.43775180000006,-7.601180499999941],[109.43254850000005,-7.598742899999934],[109.42984010000004,-7.593858199999943],[109.42861180000006,-7.594772299999931],[109.42682650000006,-7.5933275],[109.42505650000004,-7.588479],[109.42350770000007,-7.5893182],[109.42329410000008,-7.587739899999974],[109.42025760000007,-7.585841099999925],[109.42105870000006,-7.578542699999957],[109.41539010000008,-7.569726899999978],[109.41514590000008,-7.565723399999968],[109.41905980000007,-7.558919399999979],[109.428627,-7.556179],[109.43285370000007,-7.549708799999962],[109.43187720000009,-7.541454699999974],[109.43392950000003,-7.539],[109.43273930000004,-7.536139899999966],[109.42649840000007,-7.536991099999966],[109.41924290000009,-7.533909699999981],[109.41610720000006,-7.538771099999963],[109.41210180000007,-7.5382857],[109.404068,-7.54075],[109.39818580000008,-7.534573],[109.39762120000006,-7.536457],[109.39579010000006,-7.536857099999963],[109.38757330000004,-7.530203799999981],[109.38593290000006,-7.524726799999939],[109.38307950000006,-7.523746899999935],[109.38259890000006,-7.522221099999967],[109.37657170000006,-7.523047899999938],[109.36816410000006,-7.516200499999968],[109.364296,-7.517374],[109.36206820000007,-7.513633199999958],[109.36454780000008,-7.5098371],[109.36409,-7.506159199999956],[109.36547090000005,-7.503499399999953],[109.364624,-7.500946499999941],[109.36269380000005,-7.500000399999976],[109.36534120000005,-7.499037199999975],[109.36590580000006,-7.4972639],[109.36466220000005,-7.494827699999973],[109.36301430000009,-7.494658899999934],[109.363884,-7.490118399999972],[109.36171730000007,-7.488771899999961],[109.36160280000007,-7.485296199999937]]]},"properties":{"shapeName":"Banyumas","shapeISO":"","shapeID":"22746128B74941484622971","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[114.02786230000004,-8.647166499999969],[114.02635170000008,-8.646071699999936],[114.02396370000008,-8.649341899999968],[114.02727490000007,-8.648451099999932],[114.02479530000005,-8.651996899999972],[114.02925090000008,-8.649641299999928],[114.02786230000004,-8.647166499999969]]],[[[114.02695440000002,-8.645149499999945],[114.02680950000001,-8.643363299999976],[114.02450540000007,-8.646271],[114.02695440000002,-8.645149499999945]]],[[[114.0837782000001,-8.631920099999945],[114.08263380000005,-8.630767099999957],[114.08265660000006,-8.635497399999963],[114.08393840000008,-8.634804],[114.0837782000001,-8.631920099999945]]],[[[113.99392680000005,-8.616273299999932],[113.99230940000007,-8.615249],[113.99153880000006,-8.616364799999928],[113.99508650000007,-8.618527699999959],[113.99549080000008,-8.616413399999942],[113.99392680000005,-8.616273299999932]]],[[[113.99475080000002,-8.612548199999935],[113.99274420000006,-8.612553899999966],[113.99032570000008,-8.614916199999925],[113.99226360000011,-8.615008699999976],[113.99475080000002,-8.612548199999935]]],[[[114.02734350000003,-8.605086599999936],[114.02646620000007,-8.604146299999968],[114.024101,-8.606267299999956],[114.02734350000003,-8.605086599999936]]],[[[113.91428360000009,-8.583829299999934],[113.91479470000002,-8.582213799999977],[113.91185740000003,-8.5842508],[113.91415390000009,-8.585782399999971],[113.91428360000009,-8.583829299999934]]],[[[113.89557630000002,-8.5803017],[113.89604930000007,-8.579106699999954],[113.89464550000002,-8.580025099999943],[113.89557630000002,-8.5803017]]],[[[114.42380020000007,-7.935504],[114.41974610000011,-7.934413499999948],[114.41448180000009,-7.938083799999959],[114.41361970000003,-7.937259799999936],[114.4141767000001,-7.9395061],[114.41265080000005,-7.940043099999968],[114.40647860000001,-7.937322199999926],[114.39652990000002,-7.926803199999938],[114.39028140000005,-7.926918599999965],[114.37847870000007,-7.920969099999979],[114.37335940000003,-7.920294899999931],[114.37264990000006,-7.9186584],[114.36528750000002,-7.9182087],[114.3617627000001,-7.914478],[114.35742920000007,-7.9128429],[114.35157750000008,-7.913653499999953],[114.34799930000008,-7.910834499999964],[114.34437530000002,-7.911421399999938],[114.34426850000011,-7.908879399999933],[114.34054540000011,-7.905920699999967],[114.33953070000007,-7.907591499999967],[114.33283970000002,-7.9069153],[114.33001680000007,-7.901777399999958],[114.32359290000011,-7.899085199999945],[114.32337160000009,-7.897073399999954],[114.31768770000008,-7.895144199999947],[114.30673190000005,-7.885267899999974],[114.29943060000005,-7.885656099999949],[114.29598210000006,-7.888521799999978],[114.29313630000001,-7.888921899999957],[114.28840610000009,-7.894171899999947],[114.28313420000006,-7.8972361],[114.282768,-7.900841399999933],[114.278259,-7.906630699999937],[114.27842690000011,-7.909445499999947],[114.27615330000003,-7.912658399999941],[114.27130860000011,-7.9149096],[114.27132390000008,-7.919591099999934],[114.259033,-7.9312345],[114.25404330000003,-7.934086099999945],[114.24969460000011,-7.939358],[114.24600190000001,-7.950472599999955],[114.24055450000003,-7.960234899999932],[114.2375181000001,-7.961431199999936],[114.23287940000012,-7.970396699999981],[114.23060580000003,-7.972247299999935],[114.22434210000006,-7.986662099999933],[114.22438790000001,-7.989763],[114.23216980000007,-7.996458699999948],[114.23825810000005,-8.006146599999965],[114.23773930000004,-8.012405599999965],[114.23880740000004,-8.01390859999998],[114.24070720000009,-8.0134356],[114.2376478000001,-8.019727],[114.2358167000001,-8.031208299999946],[114.23889130000009,-8.0371315],[114.24667330000011,-8.041979],[114.2487638,-8.045647799999927],[114.246475,-8.049460599999975],[114.24671910000006,-8.054665799999952],[114.24164560000008,-8.058115199999975],[114.23878360000003,-8.062949899999978],[114.23228430000006,-8.067850299999975],[114.23113990000002,-8.070425199999931],[114.22328920000007,-8.073932899999932],[114.22193120000009,-8.072619599999939],[114.21974920000002,-8.073735399999975],[114.21993870000006,-8.079186],[114.21751170000005,-8.083184699999947],[114.21654120000005,-8.090316899999948],[114.21744360000002,-8.092727],[114.213727,-8.099801],[114.19569290000004,-8.103339499999947],[114.1879527000001,-8.112530799999945],[114.18437930000005,-8.120910899999956],[114.17646,-8.120318699999928],[114.17401440000003,-8.1147433],[114.17548080000006,-8.111862199999962],[114.17274450000002,-8.107336299999929],[114.17033360000005,-8.108146],[114.161392,-8.105518599999925],[114.152998,-8.105191],[114.14648810000006,-8.101012799999978],[114.13854960000003,-8.103343299999949],[114.135393,-8.102838299999974],[114.12885260000007,-8.109687099999974],[114.11658450000004,-8.11437639999997],[114.11350230000005,-8.114895199999978],[114.10932140000011,-8.112983],[114.09174330000008,-8.116151199999933],[114.08389260000001,-8.120885199999975],[114.08137490000001,-8.125551499999972],[114.07857490000004,-8.126810399999954],[114.06455210000001,-8.121931399999937],[114.06042460000003,-8.122423499999968],[114.05132270000001,-8.132596299999932],[114.04329660000008,-8.1338056],[114.0372923000001,-8.139760299999978],[114.02671790000011,-8.139418],[114.02255230000003,-8.141417799999942],[114.0042188000001,-8.1622146],[114.00389840000003,-8.165488599999946],[113.99088270000004,-8.182614699999931],[113.98080430000005,-8.187439299999937],[113.97072580000008,-8.189533599999947],[113.96582780000006,-8.198713699999928],[113.95748880000008,-8.206427],[113.96001420000005,-8.208154099999945],[113.96308120000003,-8.2150405],[113.96807080000008,-8.2205547],[113.9652479,-8.225468],[113.96664410000005,-8.232213399999978],[113.96416450000004,-8.238546699999972],[113.95937330000004,-8.243258799999978],[113.95162950000008,-8.242918399999951],[113.94423660000007,-8.244485299999951],[113.93434120000006,-8.255194099999926],[113.93404370000007,-8.261379599999941],[113.93703440000002,-8.263843899999927],[113.9359816000001,-8.265050299999928],[113.937332,-8.266300599999965],[113.93508130000009,-8.269269299999962],[113.93379190000007,-8.275267],[113.93429550000008,-8.281473499999947],[113.93010690000006,-8.286097899999959],[113.92909220000001,-8.292674399999953],[113.92591080000011,-8.293994299999952],[113.92481210000005,-8.299395899999979],[113.92031080000004,-8.308166899999947],[113.92352270000004,-8.3105396],[113.9238203000001,-8.315934499999969],[113.92833690000009,-8.319819799999948],[113.92572,-8.323368399999936],[113.927162,-8.327596099999937],[113.925041,-8.329299299999946],[113.92393470000002,-8.33425939999995],[113.91349770000011,-8.34001],[113.91049940000005,-8.346265199999948],[113.90901170000006,-8.346860299999946],[113.91155990000004,-8.3478769],[113.91151410000009,-8.350018899999952],[113.91582470000003,-8.34811819999993],[113.91686230000005,-8.350528099999963],[113.915901,-8.353169799999932],[113.91899850000004,-8.353686699999969],[113.92122630000006,-8.357324],[113.91870860000006,-8.35848939999994],[113.92253090000008,-8.363458],[113.92140940000002,-8.364370699999938],[113.92164590000004,-8.369896299999937],[113.92443070000002,-8.375076699999966],[113.927162,-8.37519969999994],[113.9277495,-8.376713199999926],[113.92720780000002,-8.380032899999946],[113.92367540000009,-8.384262399999955],[113.9304274000001,-8.3888515],[113.93301370000006,-8.388799099999972],[113.93595870000001,-8.392880799999944],[113.94427470000005,-8.397385],[113.94512920000011,-8.400248899999951],[113.94727310000007,-8.401679399999978],[113.9374312000001,-8.409064599999965],[113.936302,-8.417659199999946],[113.93206770000006,-8.425376299999925],[113.91024,-8.441873],[113.905403,-8.439960799999938],[113.89923080000005,-8.434336099999939],[113.90102370000011,-8.426577],[113.90032940000003,-8.423871399999939],[113.89421060000006,-8.413352399999951],[113.89034250000009,-8.40985429999995],[113.8819502,-8.417146099999968],[113.87499980000007,-8.415971199999944],[113.854637,-8.429845299999954],[113.848152,-8.454422399999942],[113.84822830000007,-8.4622311],[113.84482560000004,-8.475021799999979],[113.84213240000008,-8.494321299999967],[113.84305560000007,-8.503391699999952],[113.84728990000008,-8.508923899999957],[113.85542280000004,-8.515369799999974],[113.85501840000006,-8.519502099999954],[113.85291270000005,-8.526025199999935],[113.8472746000001,-8.532645599999967],[113.84377270000005,-8.5457567],[113.83714920000011,-8.554029199999945],[113.84032,-8.55558],[113.84307,-8.55436],[113.84376,-8.55558],[113.85297,-8.55015],[113.85315,-8.55268],[113.8559,-8.55491],[113.85634,-8.55913],[113.8577,-8.56023],[113.86015,-8.55955],[113.8634,-8.56195],[113.86923,-8.56028],[113.87138,-8.55706],[113.87566,-8.55747],[113.88406,-8.56198],[113.89373,-8.56488],[113.89996,-8.57074],[113.89991,-8.57514],[113.90358,-8.57598],[113.9047,-8.57797],[113.90704,-8.57676],[113.9089100000001,-8.58024],[113.91429,-8.57765],[113.91747,-8.57879],[113.91798,-8.57415],[113.92268,-8.57432],[113.92428,-8.57314],[113.92593000000011,-8.56898],[113.92343,-8.56491],[113.92566000000011,-8.5637],[113.92518,-8.56105],[113.92946,-8.56135],[113.9320100000001,-8.56629],[113.93515,-8.56739],[113.93738,-8.56554],[113.93472,-8.56131],[113.93596,-8.55989],[113.94136,-8.5582],[113.9459700000001,-8.55916],[113.95895,-8.56759],[113.95943000000011,-8.57041],[113.96183,-8.57095],[113.965,-8.57507],[113.96867,-8.58409],[113.96855,-8.58986],[113.9657,-8.59676],[113.95825,-8.59933],[113.95245000000011,-8.59516],[113.95115,-8.59806],[113.9471,-8.59989],[113.95012,-8.60451],[113.9568200000001,-8.60903],[113.9565,-8.61399],[113.95798,-8.61361],[113.9613,-8.61729],[113.9636200000001,-8.61696],[113.96505,-8.61439],[113.96922,-8.61372],[113.96863,-8.61267],[113.96974000000012,-8.61267],[113.97223,-8.60747],[113.97611,-8.6076],[113.97787,-8.6097],[113.98193,-8.6084],[113.98442000000011,-8.60486],[113.98631000000012,-8.60704],[113.98827,-8.60634],[113.98913,-8.6019],[113.98804,-8.60082],[113.98988,-8.59919],[113.99302000000012,-8.60069],[113.99241,-8.60329],[113.9949600000001,-8.60583],[113.99467,-8.60834],[113.99279,-8.60942],[113.99606,-8.61056],[113.99519,-8.60849],[113.99705,-8.60785],[113.99593,-8.60523],[113.99796,-8.60296],[113.99794,-8.59716],[113.99613000000011,-8.59396],[114.00532,-8.58976],[114.01515,-8.59035],[114.02506,-8.59462],[114.02885,-8.59968],[114.03152000000011,-8.6111],[114.03014,-8.62118],[114.0318,-8.62294],[114.03138,-8.63043],[114.03361,-8.63128],[114.03269000000012,-8.63341],[114.03813,-8.63389],[114.03924,-8.63566],[114.04087,-8.63469],[114.04343,-8.63718],[114.04783,-8.6376],[114.0474200000001,-8.64584],[114.04954,-8.64684],[114.05197,-8.64618],[114.05251,-8.64448],[114.0500300000001,-8.63808],[114.05543000000011,-8.63606],[114.0580000000001,-8.6381],[114.05704,-8.63399],[114.05904,-8.63286],[114.05984,-8.62674],[114.06331000000011,-8.62748],[114.06548,-8.62509],[114.07828,-8.62506],[114.08446,-8.6296],[114.08627,-8.62512],[114.08524000000011,-8.62092],[114.08834,-8.62038],[114.0873,-8.61874],[114.08899,-8.61655],[114.09476,-8.61562],[114.14286,-8.62279],[114.1731400000001,-8.6328],[114.1832700000001,-8.63858],[114.18421,-8.64051],[114.19337,-8.63962],[114.20274,-8.64095],[114.20974,-8.64526],[114.22058,-8.64542],[114.22376,-8.63661],[114.2257800000001,-8.6356],[114.22448,-8.63257],[114.22703,-8.62599],[114.22601,-8.62403],[114.2299200000001,-8.62064],[114.22537000000011,-8.61227],[114.22862,-8.60728],[114.22786950000011,-8.605148699999972],[114.23359,-8.60229],[114.24708,-8.60024],[114.25944,-8.60255],[114.27766,-8.61028],[114.30835,-8.61948],[114.3258,-8.62789],[114.35065,-8.64633],[114.36164,-8.65858],[114.3699600000001,-8.67068],[114.37315,-8.67796],[114.37325,-8.68348],[114.37504,-8.68622],[114.37447,-8.69067],[114.37744,-8.69879],[114.37642,-8.70549],[114.37111,-8.71884],[114.36674,-8.723],[114.35753000000011,-8.7286],[114.35145000000011,-8.7299],[114.34873,-8.7327],[114.3429000000001,-8.73488],[114.34226,-8.73917],[114.34518,-8.74288],[114.36968,-8.75068],[114.37122000000011,-8.74939],[114.38119,-8.74896],[114.39064,-8.75219],[114.40089000000012,-8.75291],[114.41866,-8.74915],[114.42885,-8.75178],[114.4455200000001,-8.75278],[114.47214,-8.7601],[114.4780300000001,-8.76048],[114.4942,-8.77087],[114.50513,-8.7755],[114.53284,-8.78031],[114.53896,-8.78016],[114.55406,-8.77546],[114.5695300000001,-8.7726],[114.58759,-8.76254],[114.5955,-8.7513],[114.59576,-8.74085],[114.60398,-8.7243],[114.60485,-8.71591],[114.59782,-8.70535],[114.59554,-8.69749],[114.5894,-8.68793],[114.58683,-8.68689],[114.58208,-8.6792],[114.57628000000011,-8.67326],[114.56925,-8.65995],[114.5617400000001,-8.65582],[114.5605,-8.65748],[114.55432,-8.65676],[114.54829,-8.65908],[114.543,-8.65909],[114.53669,-8.6563],[114.53053000000011,-8.65588],[114.52409000000011,-8.65171],[114.51464,-8.65023],[114.50691,-8.64065],[114.50549,-8.63586],[114.49635,-8.63468],[114.49158000000011,-8.63233],[114.48838,-8.62967],[114.48094,-8.61795],[114.47266,-8.61771],[114.46532,-8.62499],[114.46468,-8.62897],[114.45979000000011,-8.63724],[114.45724,-8.63876],[114.44823,-8.63897],[114.43925,-8.63063],[114.43864,-8.62282],[114.43254,-8.61304],[114.4231,-8.6047],[114.41835,-8.58573],[114.41113,-8.57615],[114.40789,-8.56913],[114.40814000000012,-8.55616],[114.40144,-8.5418],[114.40375,-8.5269],[114.40934,-8.51861],[114.4093600000001,-8.5098],[114.40453,-8.50065],[114.39973,-8.49854],[114.3990500000001,-8.49578],[114.39749,-8.49507],[114.39642,-8.48696],[114.39951,-8.46117],[114.39535,-8.45333],[114.389,-8.44777],[114.3844,-8.44668],[114.3826600000001,-8.44888],[114.38295,-8.45633],[114.38561,-8.46145],[114.3881,-8.48162],[114.38489,-8.49244],[114.38531000000012,-8.50617],[114.38322,-8.51397],[114.37902,-8.52189],[114.37822,-8.5273],[114.37551,-8.53305],[114.37206,-8.53592],[114.36662,-8.53738],[114.35654000000011,-8.53514],[114.35193560000005,-8.529418699999951],[114.35189990000003,-8.523779399999967],[114.35361310000008,-8.521602099999939],[114.3548267000001,-8.514785],[114.35587,-8.51274],[114.35739650000005,-8.512714899999935],[114.35868140000002,-8.509252699999934],[114.35844330000009,-8.502489799999978],[114.36243620000005,-8.4991924],[114.36282270000004,-8.494190299999957],[114.3657674000001,-8.491502],[114.36603390000005,-8.488856],[114.36357830000009,-8.487390299999959],[114.36513930000001,-8.486990499999933],[114.36532960000011,-8.484953699999949],[114.3666621000001,-8.485391499999935],[114.37058350000007,-8.479795],[114.36806600000011,-8.475213399999973],[114.365746,-8.475362099999927],[114.361463,-8.471465699999953],[114.35819120000008,-8.4725067],[114.35709070000007,-8.470038],[114.35570180000002,-8.470038],[114.35732870000004,-8.462215599999979],[114.35599020000006,-8.460847399999977],[114.35652560000005,-8.456980699999974],[114.35239500000012,-8.451430799999969],[114.34745,-8.44939],[114.34576,-8.44617],[114.34807260000002,-8.44365579999993],[114.34563360000004,-8.444280399999968],[114.34447360000001,-8.4412763],[114.34884590000001,-8.43851019999994],[114.34831050000003,-8.437766599999975],[114.3433434000001,-8.440265],[114.34220190000008,-8.438991099999953],[114.33963380000012,-8.42761939999997],[114.34023,-8.42228],[114.34572,-8.40358],[114.34857000000011,-8.38306],[114.35209,-8.37352],[114.3524000000001,-8.36415],[114.3512300000001,-8.36208],[114.35233390000008,-8.3552745],[114.3608200000001,-8.33588],[114.35783,-8.33014],[114.35776,-8.32716],[114.36483740000006,-8.309793199999945],[114.36301060000005,-8.299369099999979],[114.36596370000007,-8.279097899999954],[114.39023340000006,-8.234792299999981],[114.3898,-8.22629],[114.38549000000012,-8.21523],[114.38637160000007,-8.2051975],[114.385515,-8.202066099999968],[114.38384940000003,-8.20337],[114.38238,-8.20001],[114.38528280000003,-8.186968899999954],[114.39391200000011,-8.1717011],[114.39557630000002,-8.160832899999946],[114.40176,-8.15019],[114.40023530000008,-8.141153499999973],[114.40189,-8.13835],[114.40068,-8.1376],[114.40149050000002,-8.134663599999953],[114.40278,-8.13461],[114.40152,-8.13457],[114.40167,-8.13159],[114.39853080000012,-8.12642],[114.39835,-8.12157],[114.40068,-8.11698],[114.40703460000009,-8.111384099999952],[114.41566000000012,-8.09193],[114.41788020000001,-8.079618299999936],[114.43028020000008,-8.064726199999939],[114.43133000000012,-8.05635],[114.42892470000004,-8.045840899999973],[114.43117350000011,-8.039364299999932],[114.4333150000001,-8.037567799999977],[114.43411690000005,-8.03254],[114.43170410000005,-8.025544399999944],[114.42655490000004,-8.019338699999935],[114.42720210000004,-8.01734],[114.42576970000005,-8.014698799999962],[114.43025350000005,-7.996459499999958],[114.42961570000011,-7.989916699999981],[114.42648,-7.98644],[114.42533,-7.9826],[114.42528,-7.97019],[114.42276,-7.96128],[114.42380020000007,-7.935504]]]]},"properties":{"shapeName":"Banyuwangi","shapeISO":"","shapeID":"22746128B23235226010999","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[114.412409,-3.492515199999957],[114.41122210000003,-3.490560599999981],[114.40740530000005,-3.489617499999952],[114.412409,-3.492515199999957]]],[[[114.52194820000011,-3.363251399999967],[114.54833030000009,-3.336027099999967],[114.56093030000011,-3.316257499999949],[114.56601520000004,-3.299161899999945],[114.56655780000006,-3.270967799999937],[114.56914940000001,-3.267227299999945],[114.5763677000001,-3.270034899999928],[114.5779295000001,-3.276628899999935],[114.584267,-3.273092799999972],[114.59476640000003,-3.279575299999976],[114.59693030000005,-3.286455499999931],[114.60237540000003,-3.288994699999932],[114.60621250000008,-3.286306099999933],[114.6060973000001,-3.280409299999974],[114.61439560000008,-3.279697499999941],[114.621664,-3.284509699999944],[114.62508960000002,-3.285078],[114.63508030000003,-3.280500399999937],[114.6386089,-3.275600399999973],[114.66812730000004,-3.264018799999974],[114.70461140000009,-3.253409099999942],[114.75361550000002,-3.234472499999924],[114.763633,-3.232252799999969],[114.76774530000012,-3.226837799999942],[114.7759089000001,-3.229938499999946],[114.77980750000006,-3.229467899999975],[114.78240160000007,-3.225071],[114.78971820000004,-3.220087799999931],[114.78971830000012,-3.217954199999951],[114.78656730000012,-3.214665799999977],[114.78913080000007,-3.201779899999963],[114.7937237000001,-3.201355899999953],[114.79559290000009,-3.208113099999935],[114.7986982000001,-3.210461199999941],[114.81159180000009,-3.200553599999978],[114.81625350000002,-3.200066399999969],[114.81998640000006,-3.133971899999949],[114.82778780000001,-3.092418699999939],[114.829507,-3.073909199999946],[114.82773050000003,-3.014846],[114.824271,-3.010891099999981],[114.81504540000003,-3.0069679],[114.81614880000006,-2.998753799999974],[114.81532130000005,-2.989742799999931],[114.8074186,-2.977617],[114.80879290000007,-2.974234099999933],[114.80462460000001,-2.968042899999944],[114.80265020000002,-2.9407406],[114.815315,-2.929980299999954],[114.8398439,-2.874401099999943],[114.84021,-2.870668],[114.81185890000006,-2.806715699999927],[114.80441250000001,-2.742071499999952],[114.85204610000005,-2.553546399999959],[114.86179410000011,-2.523846899999967],[114.86063560000002,-2.521844699999974],[114.85150610000005,-2.529948099999956],[114.8421823000001,-2.551107699999932],[114.83606750000001,-2.560128],[114.823139,-2.570226399999967],[114.8090691000001,-2.577769],[114.80106720000003,-2.585633399999949],[114.79410580000001,-2.600536899999952],[114.7920160000001,-2.624420399999963],[114.79392060000009,-2.653099199999929],[114.78954370000008,-2.676601199999936],[114.7846042000001,-2.685560299999963],[114.77145360000009,-2.6974],[114.76585910000006,-2.708786299999929],[114.76261840000006,-2.719865599999935],[114.75944720000007,-2.722137799999928],[114.75000000000011,-2.724703299999931],[114.73513760000003,-2.733502699999974],[114.71770760000004,-2.740214499999979],[114.70707120000009,-2.739964399999963],[114.69301810000002,-2.735402499999964],[114.685844,-2.735656499999948],[114.68106060000002,-2.737543],[114.6744417000001,-2.743899899999974],[114.6708698000001,-2.752769699999931],[114.6721645,-2.759708299999943],[114.67969360000006,-2.771382899999935],[114.67884120000008,-2.781605899999931],[114.6647114000001,-2.800233299999945],[114.6568559000001,-2.803326799999979],[114.62705720000008,-2.806913699999939],[114.61747590000004,-2.810720699999933],[114.59691410000005,-2.815767],[114.602179,-2.836967199999947],[114.60339060000001,-2.848083599999939],[114.60772480000003,-2.857082799999944],[114.61545090000004,-2.884554],[114.599098,-2.890908299999978],[114.5923140000001,-2.881108199999971],[114.5672760000001,-2.864029799999969],[114.5456421,-2.907929599999932],[114.53822080000009,-2.927122699999927],[114.51785470000004,-2.918844599999943],[114.5164797000001,-2.921278399999949],[114.5496379000001,-2.943287599999962],[114.54458080000006,-2.950146699999948],[114.54626840000003,-2.951663],[114.52964940000004,-2.970293],[114.50671370000009,-2.999378899999954],[114.51907910000011,-3.010059499999954],[114.530961,-3.023259399999972],[114.52644980000002,-3.028172299999937],[114.5327883000001,-3.034573599999931],[114.52800050000008,-3.044675099999949],[114.53974090000008,-3.061999799999967],[114.54594880000002,-3.067735699999957],[114.533344,-3.081012399999963],[114.524099,-3.072209099999952],[114.51839490000009,-3.077651099999969],[114.5260512000001,-3.086583899999937],[114.50363190000007,-3.104187099999933],[114.48026770000001,-3.126279099999977],[114.47414640000011,-3.129434199999935],[114.45828140000003,-3.143304299999954],[114.44394310000007,-3.164293399999963],[114.42345530000011,-3.179883],[114.42688750000002,-3.190773699999966],[114.43378410000003,-3.186586199999965],[114.449366,-3.209654899999975],[114.43596130000003,-3.242483599999957],[114.43113440000002,-3.247900199999947],[114.41210330000001,-3.263116399999944],[114.41048670000009,-3.262924699999928],[114.376223,-3.2884839],[114.375218,-3.287349099999972],[114.35776140000007,-3.321643699999925],[114.36217450000004,-3.329721],[114.3492695000001,-3.348347399999966],[114.3625588000001,-3.359101599999974],[114.35150260000012,-3.368082699999945],[114.36274650000007,-3.386775099999966],[114.35452270000008,-3.4134523],[114.34815430000003,-3.416899499999943],[114.34689340000011,-3.419424],[114.34814440000002,-3.4248027],[114.3466016000001,-3.430341],[114.3476343000001,-3.435997799999939],[114.35094150000009,-3.4402952],[114.3543403000001,-3.4417],[114.35010250000005,-3.457116199999973],[114.34713850000003,-3.46089],[114.35689570000011,-3.465267],[114.3607809,-3.465015699999981],[114.3650477000001,-3.461907199999928],[114.36452190000011,-3.467076299999974],[114.37206750000007,-3.470856399999946],[114.3699368,-3.471227099999965],[114.3705169000001,-3.472256899999934],[114.37534620000008,-3.472295499999973],[114.3784250000001,-3.473732799999937],[114.37788550000005,-3.475201899999945],[114.3795315000001,-3.4759059],[114.38134360000004,-3.474571899999944],[114.38425840000002,-3.478425899999934],[114.38688290000005,-3.479351399999928],[114.38792400000011,-3.478043899999932],[114.38984890000006,-3.480727399999978],[114.39316350000001,-3.479952299999979],[114.39404310000009,-3.482020699999964],[114.39713970000003,-3.480985799999928],[114.39604870000005,-3.483134899999925],[114.39815810000005,-3.485762699999952],[114.40216490000012,-3.486405099999956],[114.398985,-3.482328799999948],[114.40422460000002,-3.485083699999961],[114.4030782000001,-3.486594099999934],[114.40560040000003,-3.487574399999971],[114.40616210000007,-3.485782499999971],[114.42467220000003,-3.496935099999973],[114.42803580000009,-3.496571299999971],[114.42933390000007,-3.499659699999938],[114.44244550000008,-3.502317499999947],[114.45982490000006,-3.500423199999943],[114.47400030000006,-3.502431899999976],[114.480228,-3.501677399999949],[114.50285740000004,-3.515209099999936],[114.50933160000011,-3.526734199999964],[114.50874290000002,-3.533309],[114.5113272000001,-3.538455299999953],[114.51553010000009,-3.496284199999934],[114.5122646000001,-3.464062499999955],[114.51324120000004,-3.457430799999941],[114.5197035000001,-3.439144799999951],[114.51954310000008,-3.433820699999956],[114.51781130000006,-3.426196699999934],[114.51020470000003,-3.410666899999967],[114.506657,-3.395120599999927],[114.50657310000008,-3.388594699999942],[114.51101340000002,-3.378926],[114.52194820000011,-3.363251399999967]]]]},"properties":{"shapeName":"Barito Kuala","shapeISO":"","shapeID":"22746128B72084140543329","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[114.86063560000002,-2.521844699999974],[114.86372230000006,-2.5195363],[114.86841120000008,-2.512161299999946],[114.88614590000009,-2.503677899999957],[114.88996020000002,-2.4951747],[114.91457910000008,-2.459341399999971],[114.97891530000004,-2.4203059],[114.993752,-2.409415399999943],[115.00294630000008,-2.400244],[114.92492890000005,-2.231339799999944],[114.92349,-2.224145299999975],[114.91773450000005,-2.222706499999958],[114.91773450000005,-2.217670399999975],[114.92564840000011,-2.204720399999928],[114.9335622000001,-2.178101],[114.93428170000004,-2.126301],[114.9306845000001,-2.106156599999963],[114.93140390000008,-2.096084399999938],[114.94024710000008,-2.069929799999954],[114.94290610000007,-2.054277399999933],[114.94568750000008,-2.020503299999973],[114.95879980000007,-1.977590199999952],[114.96277320000002,-1.950968299999943],[114.96118390000004,-1.924743599999942],[114.9564157000001,-1.890174799999954],[114.95766720000006,-1.869668599999954],[114.96356790000004,-1.825805199999934],[114.97111740000003,-1.796401899999978],[114.97747490000006,-1.783686899999964],[114.99098460000005,-1.763025099999936],[115.01164640000002,-1.720112],[115.02118260000009,-1.7058077],[115.03350030000001,-1.691900699999962],[115.049394,-1.683953799999927],[115.08243730000004,-1.679117599999927],[115.10065120000002,-1.669649499999935],[115.13124660000005,-1.648590299999967],[115.16065,-1.645808899999963],[115.20475510000006,-1.647000899999966],[115.22700630000008,-1.642232799999931],[115.23614520000001,-1.633093899999949],[115.24568140000008,-1.630312499999945],[115.26793260000011,-1.629517799999974],[115.2842237000001,-1.629915199999971],[115.41565860000003,-1.644213299999933],[115.42346930000008,-1.621414099999924],[115.4359386000001,-1.595223699999963],[115.447241,-1.565034499999967],[115.4601100000001,-1.546328399999936],[115.46843320000005,-1.537159599999939],[115.47364390000007,-1.526009],[115.4830627,-1.513511799999947],[115.50000000000011,-1.478719599999977],[115.50724430000002,-1.473342499999944],[115.5148961000001,-1.447846],[115.50212350000004,-1.447043099999973],[115.4722551000001,-1.413184299999955],[115.4671274000001,-1.3865529],[115.45938500000011,-1.359978],[115.45590030000005,-1.3553929],[115.43372410000006,-1.340025199999957],[115.41213160000007,-1.329326099999946],[115.31506230000002,-1.335940099999959],[115.23698620000005,-1.333022199999959],[115.23806700000011,-1.314543199999946],[115.23626260000003,-1.312083299999927],[115.16223660000003,-1.306656499999974],[115.12721540000007,-1.331325499999934],[115.11934910000002,-1.310987499999953],[115.09684450000009,-1.303616499999976],[115.0854776000001,-1.305891299999928],[115.0524031000001,-1.3075306],[114.9897691000001,-1.319641499999932],[114.95608310000011,-1.3355509],[114.876088,-1.358195899999942],[114.85217420000004,-1.359915299999955],[114.83424760000003,-1.34193],[114.79403610000008,-1.348273399999925],[114.738785,-1.340070899999944],[114.66780890000007,-1.316926399999943],[114.67035990000011,-1.391745699999944],[114.66328020000003,-1.411657099999957],[114.66208560000007,-1.425586499999952],[114.66539940000007,-1.441862499999957],[114.67456250000009,-1.521452],[114.65375350000011,-1.576872399999957],[114.63397050000003,-1.619427],[114.614621,-1.643921099999943],[114.59932340000012,-1.678298199999972],[114.60108080000009,-1.705774299999973],[114.6215648000001,-1.743840299999931],[114.63733190000005,-1.788360399999931],[114.6359457000001,-1.812565599999971],[114.61792020000007,-1.892323799999929],[114.61649340000008,-1.915159],[114.62086010000007,-1.949686199999974],[114.639602,-1.975330399999962],[114.67934950000006,-2.0035778],[114.7057301000001,-2.039802399999928],[114.71736610000005,-2.097574799999961],[114.71812940000007,-2.115003299999955],[114.71567330000005,-2.144422899999938],[114.68181120000008,-2.2332411],[114.5541204000001,-2.546348299999977],[114.5988407000001,-2.56268],[114.60164450000002,-2.558568099999945],[114.6175687000001,-2.544027899999946],[114.65450840000005,-2.560123499999975],[114.70270990000006,-2.479844299999968],[114.72238690000006,-2.4644336],[114.73776310000005,-2.470684199999937],[114.736772,-2.4751139],[114.73821480000004,-2.486531299999967],[114.74116330000004,-2.486845],[114.74825210000006,-2.481763599999965],[114.75647020000008,-2.486907699999961],[114.757223,-2.490734399999951],[114.7557174000001,-2.4944357],[114.7518907000001,-2.497321399999976],[114.7429826,-2.499579799999935],[114.73608190000004,-2.517396],[114.72259430000008,-2.5261786],[114.71939490000011,-2.534459399999946],[114.70647190000011,-2.5541576],[114.70139050000012,-2.568147099999976],[114.6979837,-2.571877899999947],[114.71368160000009,-2.572245899999928],[114.73237720000009,-2.582690299999967],[114.75931390000005,-2.598518],[114.7920160000001,-2.624420399999963],[114.79410580000001,-2.600536899999952],[114.80106720000003,-2.585633399999949],[114.8090691000001,-2.577769],[114.823139,-2.570226399999967],[114.83606750000001,-2.560128],[114.8421823000001,-2.551107699999932],[114.85150610000005,-2.529948099999956],[114.86063560000002,-2.521844699999974]]]},"properties":{"shapeName":"Barito Selatan","shapeISO":"","shapeID":"22746128B325867274476","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[115.00294630000008,-2.400244],[115.15375360000007,-2.304807099999948],[115.2490527000001,-2.244720899999948],[115.25357660000009,-2.239225599999941],[115.24282950000008,-2.215449199999966],[115.24787420000007,-2.211855],[115.24907280000002,-2.209436199999971],[115.24620330000005,-2.205277],[115.23919250000006,-2.200051199999962],[115.2411902,-2.196409099999926],[115.244144,-2.196829899999955],[115.24351230000002,-2.198724899999945],[115.25504010000009,-2.2084366],[115.26388340000005,-2.2211488],[115.26475190000008,-2.225570499999947],[115.26933150000002,-2.220359299999927],[115.290729,-2.225570499999947],[115.31501360000004,-2.193226599999946],[115.31511060000003,-2.190042699999935],[115.3189939,-2.186126499999943],[115.32133190000002,-2.179707099999973],[115.319375,-2.169992899999954],[115.3205180000001,-2.168046899999979],[115.32516970000006,-2.167756199999928],[115.32993520000002,-2.162627799999939],[115.30940280000004,-2.149048],[115.30356060000008,-2.136928499999954],[115.309409,-2.133462399999928],[115.31766070000003,-2.1240893],[115.3169157000001,-2.0857687],[115.32153870000002,-2.072136599999965],[115.33766530000003,-2.079983099999936],[115.34537580000006,-2.082254099999943],[115.34719490000009,-2.081387899999925],[115.35142640000004,-2.074146799999937],[115.35592620000011,-2.071971499999961],[115.37261,-2.068520099999944],[115.37896050000006,-2.064660599999968],[115.38695450000012,-2.064145599999961],[115.39590420000002,-2.061393199999941],[115.40663970000003,-2.060825499999964],[115.40846590000001,-2.058023399999968],[115.40428170000007,-1.989445399999966],[115.42985020000003,-1.938014899999928],[115.4295029000001,-1.935763],[115.42572540000003,-1.936377399999969],[115.4219518000001,-1.932836499999951],[115.42900980000002,-1.9302788],[115.43146050000007,-1.924145499999952],[115.42619800000011,-1.914676799999938],[115.41960620000009,-1.915142699999933],[115.41741860000002,-1.911817299999939],[115.42034970000009,-1.9005997],[115.41954650000002,-1.893634799999973],[115.42060790000005,-1.891969899999935],[115.41779020000001,-1.892038599999978],[115.41528440000002,-1.896506299999942],[115.4107739000001,-1.8932648],[115.40933840000002,-1.897765899999968],[115.41069730000004,-1.899518799999953],[115.40945910000005,-1.899796599999945],[115.40589440000008,-1.895728299999973],[115.40533210000001,-1.88659],[115.40006610000012,-1.8864538],[115.39764470000011,-1.890203],[115.3966349000001,-1.899840899999958],[115.38826510000001,-1.883112299999937],[115.3748465000001,-1.878647699999931],[115.37248740000007,-1.876529699999935],[115.37121860000002,-1.873341599999947],[115.37148,-1.8663962],[115.36944920000008,-1.862325399999975],[115.3655020000001,-1.863810599999965],[115.3629783,-1.863198799999964],[115.35855820000006,-1.858352199999956],[115.35923720000005,-1.8552252],[115.356214,-1.850649],[115.35336070000005,-1.850681899999927],[115.35164350000002,-1.848646799999926],[115.36164950000011,-1.847970799999928],[115.36645020000003,-1.843751899999972],[115.36688250000009,-1.841674699999942],[115.3647916000001,-1.8385345],[115.3631759000001,-1.839146],[115.36241030000008,-1.835593399999937],[115.35989,-1.836681],[115.3535872000001,-1.832091799999944],[115.358816,-1.833905699999946],[115.35932720000005,-1.830739599999959],[115.36309270000004,-1.8316291],[115.36443120000001,-1.830592199999955],[115.36147480000011,-1.830094499999973],[115.36024710000004,-1.826567599999976],[115.370146,-1.828585499999974],[115.37220850000006,-1.824924499999952],[115.37219020000009,-1.821063599999945],[115.36640950000003,-1.824981299999934],[115.36447450000003,-1.819137099999978],[115.36664150000001,-1.8170737],[115.3644207000001,-1.814488],[115.36611010000001,-1.807074299999954],[115.37696110000002,-1.802306499999929],[115.3743803000001,-1.7971077],[115.38046010000005,-1.797152],[115.37957760000006,-1.794901799999934],[115.38498550000008,-1.782201399999963],[115.38340710000011,-1.780108899999959],[115.38021980000008,-1.784969699999976],[115.3796248000001,-1.783082599999943],[115.38710630000003,-1.773596299999951],[115.38646860000006,-1.770818],[115.39433470000006,-1.750941299999965],[115.39376560000005,-1.749119099999973],[115.39629980000007,-1.747021599999925],[115.39523880000002,-1.744763099999943],[115.39698550000003,-1.741857299999936],[115.38833120000004,-1.737252299999966],[115.38789120000001,-1.7279378],[115.38263110000003,-1.724246199999925],[115.38168030000008,-1.719103899999936],[115.39501630000007,-1.689256299999954],[115.39904880000006,-1.675303099999951],[115.40166950000003,-1.672795599999972],[115.41565860000003,-1.644213299999933],[115.2842237000001,-1.629915199999971],[115.26793260000011,-1.629517799999974],[115.24568140000008,-1.630312499999945],[115.23614520000001,-1.633093899999949],[115.22700630000008,-1.642232799999931],[115.20475510000006,-1.647000899999966],[115.16065,-1.645808899999963],[115.13124660000005,-1.648590299999967],[115.10065120000002,-1.669649499999935],[115.08243730000004,-1.679117599999927],[115.049394,-1.683953799999927],[115.03350030000001,-1.691900699999962],[115.02118260000009,-1.7058077],[115.01164640000002,-1.720112],[114.99098460000005,-1.763025099999936],[114.97747490000006,-1.783686899999964],[114.97111740000003,-1.796401899999978],[114.96356790000004,-1.825805199999934],[114.95766720000006,-1.869668599999954],[114.9564157000001,-1.890174799999954],[114.96118390000004,-1.924743599999942],[114.96277320000002,-1.950968299999943],[114.95879980000007,-1.977590199999952],[114.94568750000008,-2.020503299999973],[114.94290610000007,-2.054277399999933],[114.94024710000008,-2.069929799999954],[114.93140390000008,-2.096084399999938],[114.9306845000001,-2.106156599999963],[114.93428170000004,-2.126301],[114.9335622000001,-2.178101],[114.92564840000011,-2.204720399999928],[114.91773450000005,-2.217670399999975],[114.91773450000005,-2.222706499999958],[114.92349,-2.224145299999975],[114.92492890000005,-2.231339799999944],[115.00294630000008,-2.400244]]]},"properties":{"shapeName":"Barito Timur","shapeISO":"","shapeID":"22746128B62170723620076","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[115.5148961000001,-1.447846],[115.5237634,-1.430242499999963],[115.54557520000003,-1.414102899999932],[115.55153170000006,-1.407852699999978],[115.55668340000011,-1.397964199999933],[115.56074720000004,-1.400233299999968],[115.5645283,-1.399350199999958],[115.56438650000007,-1.397818599999937],[115.56709820000003,-1.396073399999977],[115.56713030000003,-1.392142899999953],[115.57283970000003,-1.387210799999934],[115.57379620000006,-1.382953399999963],[115.57602840000004,-1.380931099999941],[115.58622730000002,-1.379668199999969],[115.59299990000011,-1.376564599999938],[115.5979264,-1.379872299999931],[115.59869930000002,-1.377200199999947],[115.60388220000004,-1.372889],[115.61558330000003,-1.366556799999955],[115.61968960000002,-1.358299899999963],[115.62559770000007,-1.350664699999925],[115.64126720000002,-1.351223799999957],[115.64731610000001,-1.3451968],[115.65773090000005,-1.3445848],[115.66424960000006,-1.339696499999945],[115.66760290000002,-1.334786599999973],[115.6726440000001,-1.336138099999971],[115.68161350000003,-1.335051699999951],[115.69035720000011,-1.338234399999976],[115.69682360000002,-1.336685599999953],[115.70833820000007,-1.337769099999946],[115.70928230000004,-1.338947499999961],[115.7119229000001,-1.336343099999965],[115.71631180000008,-1.336307],[115.7190508000001,-1.3319546],[115.72349280000003,-1.332806799999958],[115.73137180000003,-1.3292469],[115.74635020000005,-1.316687499999944],[115.75398990000008,-1.315042299999959],[115.75758270000006,-1.307446199999958],[115.75568580000004,-1.293668499999967],[115.754262,-1.291978],[115.75523280000004,-1.27992],[115.76147010000011,-1.266072399999928],[115.76507470000001,-1.2487057],[115.77160550000008,-1.229041799999948],[115.78364470000008,-1.213049],[115.79667570000004,-1.1998053],[115.81861010000011,-1.182001599999978],[115.84120840000003,-1.169072799999981],[115.845664,-1.164667299999962],[115.84722040000008,-1.160814099999925],[115.84696090000011,-1.1572597],[115.8429708000001,-1.151164499999936],[115.83418570000003,-1.144147099999941],[115.82866150000007,-1.142143],[115.8207374000001,-1.1312895],[115.8171675000001,-1.130666899999937],[115.81452920000004,-1.127065499999958],[115.8066612,-1.1229137],[115.803186,-1.118338799999947],[115.79995470000006,-1.115445199999954],[115.79031440000006,-1.116215099999977],[115.7749291,-1.125838399999964],[115.7660982000001,-1.1340317],[115.76069640000003,-1.136145899999974],[115.75669860000005,-1.134914099999946],[115.7490934000001,-1.123450799999944],[115.74323190000007,-1.095750299999963],[115.701585,-1.0675855],[115.69597550000003,-1.0595654],[115.69397150000009,-1.052354099999945],[115.69087590000004,-1.052045899999939],[115.68962180000005,-1.054840099999979],[115.68521670000007,-1.058152099999973],[115.68435470000009,-1.061209499999961],[115.67776620000006,-1.066292799999928],[115.67625950000001,-1.065524599999947],[115.67530640000007,-1.059177199999965],[115.6739404000001,-1.060597799999925],[115.67203670000004,-1.059439699999928],[115.66729920000012,-1.064098399999978],[115.66589720000002,-1.0623748],[115.66661240000008,-1.057732399999963],[115.6656147000001,-1.055817499999932],[115.65629600000011,-1.056831099999954],[115.6552425000001,-1.052049299999965],[115.65642720000005,-1.047556699999973],[115.65932410000005,-1.044987799999944],[115.66043900000011,-1.039474499999926],[115.66422080000007,-1.035728499999948],[115.65948620000006,-1.014044299999966],[115.65712990000009,-1.008816699999954],[115.65669340000011,-1.004824299999939],[115.65852970000003,-1.003088299999945],[115.6605770000001,-1.003338399999961],[115.65924450000011,-1.002516699999944],[115.66015020000009,-1.0003168],[115.65888590000009,-1.000978399999951],[115.6534186,-0.993736099999978],[115.63825140000006,-0.981438499999967],[115.58759220000002,-0.951375199999973],[115.56582560000004,-0.933109499999944],[115.55785290000006,-0.923632399999974],[115.533599,-0.883072599999934],[115.50517190000005,-0.855727399999978],[115.49513160000004,-0.848330899999951],[115.482154,-0.842816299999924],[115.44791340000006,-0.838770799999963],[115.39752890000011,-0.825258899999938],[115.39058610000006,-0.820204399999966],[115.379699,-0.801610899999957],[115.3747399,-0.784156099999961],[115.37345810000011,-0.771521199999938],[115.3670495,-0.749472],[115.368438,-0.6994557],[115.36633990000007,-0.679639799999961],[115.35642930000006,-0.632664699999964],[115.35537650000003,-0.621069899999952],[115.35735250000005,-0.605214499999931],[115.35386580000011,-0.583164699999941],[115.35156940000002,-0.579836799999953],[115.33520440000007,-0.568941299999949],[115.3287117000001,-0.562918899999943],[115.3240578000001,-0.557402699999955],[115.32196980000003,-0.549527699999942],[115.31686390000004,-0.5465225],[115.31664400000011,-0.54188],[115.32021620000012,-0.538319599999966],[115.31813150000005,-0.53409],[115.31864430000007,-0.529339],[115.3109505000001,-0.515266899999972],[115.30524510000009,-0.5139833],[115.30675350000001,-0.511523599999975],[115.3031631,-0.507364499999937],[115.30277730000012,-0.502300899999966],[115.299202,-0.497156599999926],[115.2932968,-0.492067199999951],[115.28540040000007,-0.487801799999943],[115.2781983000001,-0.47805],[115.25309750000008,-0.451882799999964],[115.24648220000006,-0.451524699999936],[115.24473120000005,-0.446935],[115.24648980000006,-0.441304399999979],[115.25575420000007,-0.435636399999964],[115.25266210000007,-0.411587499999939],[115.24232780000011,-0.384430499999951],[115.23659850000001,-0.378403799999944],[115.23394860000008,-0.371676099999945],[115.23519080000005,-0.367263299999934],[115.232448,-0.358258499999977],[115.2377550000001,-0.3528151],[115.23218530000008,-0.346702899999968],[115.23628380000002,-0.342052199999955],[115.23166150000009,-0.338298399999928],[115.23260990000006,-0.3232579],[115.2276683,-0.318997],[115.22372930000006,-0.312970599999971],[115.22189160000005,-0.3068388],[115.22415110000009,-0.303456199999971],[115.22951,-0.300655699999936],[115.23188360000006,-0.294762299999945],[115.2408501000001,-0.302336099999934],[115.2447274000001,-0.298773],[115.25085480000007,-0.303451499999937],[115.25234870000008,-0.303629899999976],[115.25384150000002,-0.300872199999958],[115.25362570000004,-0.294534499999941],[115.25486950000004,-0.291705199999967],[115.25318080000011,-0.286701799999946],[115.2545818000001,-0.2832191],[115.25404660000004,-0.278707599999962],[115.25155560000007,-0.2751278],[115.25415040000007,-0.270436099999927],[115.2507816000001,-0.265519799999936],[115.2501387000001,-0.257535],[115.24587180000003,-0.248919599999965],[115.23832510000011,-0.246072099999935],[115.23766420000004,-0.2361277],[115.23871730000008,-0.232916299999943],[115.24321290000012,-0.228418199999965],[115.24869030000002,-0.228258599999947],[115.25050290000001,-0.216186799999946],[115.25896010000008,-0.215193699999929],[115.261232,-0.2055714],[115.26868370000011,-0.189692099999945],[115.26918720000003,-0.185450199999934],[115.26634910000007,-0.168736499999966],[115.26013160000002,-0.158996899999977],[115.26043830000003,-0.156098899999961],[115.26644450000003,-0.147343699999965],[115.270709,-0.1439719],[115.28433490000009,-0.145857],[115.28796510000006,-0.142041399999925],[115.28637890000005,-0.128696899999966],[115.2874031,-0.1271513],[115.29368090000003,-0.124088599999936],[115.29840780000006,-0.124421599999948],[115.30599260000008,-0.120410399999969],[115.30871510000009,-0.117464499999926],[115.315185,-0.100761599999942],[115.31004840000003,-0.084207599999957],[115.3124113,-0.074931299999946],[115.30978730000004,-0.059938],[115.30290130000003,-0.054487599999959],[115.2973406000001,-0.053936599999929],[115.301543,-0.045907399999976],[115.30542770000011,-0.042563799999925],[115.304561,-0.036907099999951],[115.30036340000004,-0.031913699999961],[115.29760140000008,-0.031619199999966],[115.29586360000008,-0.034692699999937],[115.2915594000001,-0.036603399999933],[115.29215940000006,-0.041058499999963],[115.28606180000008,-0.047634699999946],[115.27914440000006,-0.045385099999976],[115.27442710000003,-0.045489099999941],[115.27182010000001,-0.048153699999943],[115.26724050000007,-0.049366799999973],[115.26239580000004,-0.046852799999954],[115.255725,-0.052745399999935],[115.24291920000007,-0.056544299999928],[115.23155150000002,-0.070285],[115.22741630000007,-0.0728725],[115.21488640000007,-0.072960299999977],[115.20460360000004,-0.079915299999925],[115.19918180000002,-0.079088699999943],[115.19797760000006,-0.076733799999943],[115.19595270000002,-0.076125399999967],[115.18331180000007,-0.081354799999929],[115.1823207000001,-0.093996699999934],[115.1656183,-0.099357299999951],[115.1586129000001,-0.098520399999927],[115.15578160000007,-0.101003699999978],[115.15287760000001,-0.106226099999958],[115.153602,-0.111316399999964],[115.15172050000001,-0.111593899999946],[115.15177210000002,-0.116377499999942],[115.146598,-0.120289399999933],[115.14615760000004,-0.128067899999962],[115.1495129000001,-0.135347399999944],[115.14587340000003,-0.1383608],[115.14286830000003,-0.137088499999948],[115.14206550000006,-0.140538699999979],[115.13264580000009,-0.142277899999954],[115.12662320000004,-0.1363343],[115.1253656,-0.1366204],[115.1187718000001,-0.147475],[115.1111383000001,-0.147116299999936],[115.10493150000002,-0.144507099999942],[115.10269830000004,-0.147202599999957],[115.09131560000003,-0.152724699999965],[115.08123720000003,-0.153196899999955],[115.07853640000008,-0.154924899999969],[115.07265410000002,-0.163482099999953],[115.067089,-0.165875099999937],[115.06132730000002,-0.207294299999944],[115.05364540000005,-0.247483],[115.0567046000001,-0.323225399999956],[115.0520901000001,-0.3665055],[115.0305859,-0.405144299999961],[115.03517740000007,-0.465429],[115.0428419000001,-0.511803199999974],[115.01672510000003,-0.558167],[114.94605980000006,-0.6586107],[114.90765520000002,-0.706509099999948],[114.873864,-0.73586],[114.83394310000006,-0.740477899999973],[114.78788270000007,-0.743546599999945],[114.7233989,-0.7512417],[114.6704281000001,-0.775696099999948],[114.624394,-0.815156099999967],[114.58073080000008,-0.846796099999949],[114.56938450000007,-0.857618699999932],[114.53959880000002,-0.886029699999938],[114.50163080000004,-0.916404099999966],[114.46556120000002,-0.980316899999934],[114.45902350000006,-0.989001799999926],[114.45696090000001,-1.034806399999979],[114.4802863000001,-1.086275099999966],[114.4991381000001,-1.111419499999954],[114.54060620000007,-1.137676599999963],[114.57340910000005,-1.142560199999934],[114.62745130000008,-1.135806],[114.65929530000005,-1.135831699999926],[114.67859280000005,-1.138761],[114.694026,-1.147515],[114.7002030000001,-1.156307099999935],[114.71070510000004,-1.165325799999948],[114.71187830000008,-1.181443699999932],[114.70117990000006,-1.210087299999941],[114.7005511000001,-1.252468199999953],[114.6839245000001,-1.276330299999927],[114.68509260000008,-1.296626499999945],[114.66780890000007,-1.316926399999943],[114.738785,-1.340070899999944],[114.79403610000008,-1.348273399999925],[114.83424760000003,-1.34193],[114.85217420000004,-1.359915299999955],[114.876088,-1.358195899999942],[114.95608310000011,-1.3355509],[114.9897691000001,-1.319641499999932],[115.0524031000001,-1.3075306],[115.0854776000001,-1.305891299999928],[115.09684450000009,-1.303616499999976],[115.11934910000002,-1.310987499999953],[115.12721540000007,-1.331325499999934],[115.16223660000003,-1.306656499999974],[115.23626260000003,-1.312083299999927],[115.23806700000011,-1.314543199999946],[115.23698620000005,-1.333022199999959],[115.31506230000002,-1.335940099999959],[115.41213160000007,-1.329326099999946],[115.43372410000006,-1.340025199999957],[115.45590030000005,-1.3553929],[115.45938500000011,-1.359978],[115.4671274000001,-1.3865529],[115.4722551000001,-1.413184299999955],[115.50212350000004,-1.447043099999973],[115.5148961000001,-1.447846]]]},"properties":{"shapeName":"Barito Utara","shapeISO":"","shapeID":"22746128B16464226608904","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[119.57194140000001,-4.486742],[119.570712,-4.487841699999933],[119.57238180000002,-4.488376399999936],[119.57194140000001,-4.486742]]],[[[119.605892,-4.340445],[119.60369090000006,-4.337500699999964],[119.5989886000001,-4.338729899999976],[119.59795240000005,-4.343596499999933],[119.59977470000001,-4.346219299999973],[119.59858130000009,-4.353244099999927],[119.59586560000002,-4.358989799999961],[119.59176360000004,-4.361805499999946],[119.5921638000001,-4.363963699999942],[119.594615,-4.3630704],[119.6003535000001,-4.356988799999954],[119.6007466000001,-4.3530369],[119.60319780000009,-4.348784799999976],[119.60217590000002,-4.3417028],[119.605892,-4.340445]]],[[[119.61893860000009,-4.182243199999959],[119.62234300000011,-4.180133099999978],[119.62040150000007,-4.17882],[119.6185676,-4.179401599999949],[119.61893860000009,-4.182243199999959]]],[[[119.603668,-4.146915],[119.604797,-4.144498],[119.602684,-4.144631],[119.603668,-4.146915]]],[[[119.62026170000001,-4.067138599999964],[119.61770560000002,-4.072427299999958],[119.6115612000001,-4.0753889],[119.6063524000001,-4.082894299999964],[119.60747690000005,-4.086516599999925],[119.61365660000001,-4.0858801],[119.61679370000002,-4.089841399999955],[119.61300810000012,-4.095450199999959],[119.60821970000006,-4.095270599999935],[119.60643870000001,-4.102768499999968],[119.60762470000009,-4.106965299999956],[119.61089270000002,-4.108023099999969],[119.61433390000002,-4.106321099999946],[119.62043710000012,-4.112356299999931],[119.6194091000001,-4.118299399999955],[119.6209232000001,-4.129430099999979],[119.61773910000011,-4.138967699999966],[119.6147155000001,-4.141974399999981],[119.61415540000007,-4.144902099999968],[119.62198890000002,-4.152009899999939],[119.63588080000011,-4.160808299999928],[119.63790950000009,-4.166174099999978],[119.63816290000011,-4.174069399999951],[119.63591880000001,-4.179864],[119.63345850000007,-4.181696],[119.63009790000001,-4.179862199999945],[119.6253855000001,-4.181602399999974],[119.62859860000003,-4.1923873],[119.62718970000003,-4.196915699999977],[119.61943140000005,-4.204842299999939],[119.61322170000005,-4.202442599999927],[119.61855470000012,-4.211755499999981],[119.61229870000011,-4.213597099999959],[119.60875620000002,-4.216429799999958],[119.60980510000002,-4.2205126],[119.6132980000001,-4.2194603],[119.61449470000002,-4.217416499999956],[119.61825220000003,-4.219086699999934],[119.61909610000009,-4.225630699999954],[119.62617090000003,-4.229150499999946],[119.62540970000009,-4.236006199999963],[119.6229330000001,-4.238191599999936],[119.618491,-4.238017799999966],[119.61460340000008,-4.239810699999964],[119.60568540000008,-4.232746],[119.60714580000001,-4.235887899999966],[119.60410210000009,-4.237906399999929],[119.59935850000011,-4.235288399999945],[119.59691370000007,-4.235518399999933],[119.59518450000007,-4.243083599999977],[119.596198,-4.248133399999972],[119.59928750000006,-4.251584599999944],[119.60779450000007,-4.255254699999966],[119.6103561000001,-4.2577058],[119.61102070000004,-4.262066799999957],[119.60714960000007,-4.264640499999928],[119.60694510000008,-4.266264699999965],[119.6171293000001,-4.278514499999972],[119.62163840000005,-4.281368699999973],[119.6209831000001,-4.283465699999965],[119.623389,-4.288664399999959],[119.62584010000012,-4.290470199999959],[119.62357390000011,-4.293907499999932],[119.62641710000003,-4.294019299999945],[119.62708840000005,-4.297332599999947],[119.6310036000001,-4.295520799999963],[119.63357210000004,-4.2974583],[119.634964,-4.305724],[119.6309467000001,-4.309203099999934],[119.63193650000005,-4.311661199999946],[119.63448820000008,-4.312624199999959],[119.63648520000004,-4.318770099999938],[119.62847150000005,-4.333918399999959],[119.62510070000008,-4.334027799999944],[119.6211995000001,-4.338274],[119.62236740000003,-4.3483909],[119.62653460000001,-4.347533899999974],[119.62960490000012,-4.349716199999932],[119.62845070000003,-4.3535871],[119.62443170000006,-4.356615599999941],[119.6268837,-4.363694099999975],[119.62230750000003,-4.366042399999969],[119.62026340000011,-4.369160099999931],[119.61491650000005,-4.372864],[119.61490730000003,-4.377314],[119.60991,-4.382549],[119.60827620000009,-4.390148],[119.60614150000004,-4.3920587],[119.60483480000005,-4.401097399999969],[119.59701510000002,-4.416307],[119.59817640000006,-4.418345099999954],[119.597104,-4.422168],[119.600882,-4.425974199999928],[119.60048730000005,-4.432705799999951],[119.5985098000001,-4.434891],[119.59710140000004,-4.4410422],[119.59955160000004,-4.444123499999932],[119.597781,-4.445354],[119.59662760000003,-4.451006199999938],[119.59978010000009,-4.460744199999965],[119.59975520000012,-4.474173899999926],[119.59701170000005,-4.483468199999948],[119.59521020000011,-4.484531599999968],[119.596356,-4.485066499999959],[119.594871,-4.490746599999966],[119.58456220000005,-4.521539699999948],[119.58469390000005,-4.5243797],[119.58119770000008,-4.5292363],[119.58378540000001,-4.534207099999946],[119.58612830000004,-4.534656299999938],[119.5906652000001,-4.542923199999962],[119.591358,-4.552487599999949],[119.59440350000011,-4.556545899999946],[119.597966,-4.555825],[119.602412,-4.558927],[119.606427,-4.55897],[119.6193760000001,-4.566576],[119.619813,-4.570703],[119.624632,-4.575498],[119.627496,-4.582569],[119.630827,-4.584695],[119.632147,-4.599626],[119.63517500000012,-4.602128],[119.6370260000001,-4.609452],[119.635713,-4.617166],[119.645568,-4.635279],[119.644739,-4.64131],[119.656877,-4.652731],[119.663609,-4.65688],[119.664308,-4.661332],[119.656067,-4.674563],[119.653259,-4.684604],[119.656316,-4.688679],[119.658826,-4.696664],[119.6585510000001,-4.702908],[119.655093,-4.706167],[119.655792,-4.714798],[119.659444,-4.723382],[119.66313530000002,-4.724004299999933],[119.663489,-4.7216156],[119.66788140000006,-4.719146299999977],[119.66921310000009,-4.720641699999931],[119.674701,-4.720975],[119.67644990000008,-4.719316399999968],[119.6800674000001,-4.718181899999934],[119.6822575000001,-4.719388599999945],[119.68452430000002,-4.717599899999925],[119.68559130000006,-4.719711199999949],[119.68935290000002,-4.719150799999966],[119.69224020000001,-4.721505199999967],[119.690189,-4.739678],[119.691279,-4.750084],[119.69587180000008,-4.756564199999957],[119.69381070000009,-4.758610399999952],[119.68806160000008,-4.759178399999939],[119.68815230000007,-4.7615191],[119.6850634000001,-4.763503199999946],[119.68125610000004,-4.769042499999955],[119.68479920000004,-4.772534199999939],[119.69038690000002,-4.7744625],[119.69065350000005,-4.780524899999932],[119.6968458,-4.788008399999967],[119.6989119000001,-4.789278099999933],[119.7076604,-4.787436099999979],[119.7205848000001,-4.788658799999951],[119.72360970000011,-4.787209899999937],[119.72967430000006,-4.799005399999942],[119.732698,-4.800438399999962],[119.73354210000002,-4.797542599999929],[119.73561360000008,-4.796170299999972],[119.73730020000005,-4.797140599999977],[119.73835550000001,-4.795699399999933],[119.741233,-4.796327299999973],[119.74363610000012,-4.794876599999952],[119.74516640000002,-4.795244699999955],[119.74396390000004,-4.796350099999927],[119.74473540000008,-4.797112299999981],[119.748682,-4.797059],[119.74745660000008,-4.794759699999929],[119.7500768000001,-4.794845599999974],[119.7493449000001,-4.790932199999929],[119.75162310000007,-4.7889111],[119.75460690000011,-4.788807799999972],[119.75340440000002,-4.789897499999938],[119.75473000000011,-4.790090899999939],[119.75989770000001,-4.787823699999933],[119.75783590000003,-4.785379699999964],[119.75996750000002,-4.785179199999959],[119.759941,-4.783152099999938],[119.7574585000001,-4.783647499999972],[119.75700770000003,-4.782036199999936],[119.75641870000004,-4.783982499999979],[119.75451250000003,-4.7824732],[119.75539930000002,-4.775127599999962],[119.75735680000003,-4.775085],[119.76346930000011,-4.769908],[119.76612910000006,-4.764123199999972],[119.765971,-4.761331599999949],[119.76975450000009,-4.755108499999949],[119.786679,-4.753134599999953],[119.79078130000005,-4.761664899999971],[119.79518150000001,-4.764791499999944],[119.79984500000012,-4.765260399999931],[119.80606220000004,-4.761819399999979],[119.80789510000011,-4.757221699999945],[119.82140360000005,-4.742844699999978],[119.82244060000005,-4.7384671],[119.8210011000001,-4.728831799999966],[119.82276410000009,-4.721614],[119.81658870000001,-4.713407599999925],[119.8134841000001,-4.704917499999965],[119.78700630000003,-4.689012399999967],[119.7770564000001,-4.687208699999928],[119.77104930000007,-4.6888049],[119.76643250000006,-4.685778099999936],[119.75999650000006,-4.684818599999971],[119.758256,-4.679765199999963],[119.76116590000004,-4.667220399999962],[119.75634,-4.658311599999934],[119.75792950000005,-4.650660599999981],[119.75414650000005,-4.641657299999963],[119.75761620000003,-4.632291099999975],[119.75758010000004,-4.626779099999965],[119.76409400000011,-4.623735499999952],[119.76364200000012,-4.6177914],[119.7646535,-4.616486299999963],[119.77214770000012,-4.614505099999974],[119.774822,-4.611539799999946],[119.77965110000002,-4.610391399999969],[119.78541070000006,-4.606121799999926],[119.78852620000009,-4.605919799999981],[119.789664,-4.604550899999936],[119.78938920000007,-4.599917399999981],[119.79497620000006,-4.598466799999926],[119.79769790000012,-4.595718199999965],[119.8004648000001,-4.5804817],[119.798119,-4.565202],[119.8073597,-4.551575799999966],[119.80671940000002,-4.544801299999961],[119.8030308000001,-4.535591699999941],[119.80625120000002,-4.536602099999925],[119.80683850000003,-4.529236199999957],[119.798565,-4.522672],[119.7955988000001,-4.517551],[119.7885592,-4.510710699999947],[119.78770550000002,-4.501985099999956],[119.78564290000008,-4.497800199999972],[119.77206500000011,-4.488110699999936],[119.7646784000001,-4.488943899999981],[119.759224,-4.482374],[119.754991,-4.472531],[119.75503470000001,-4.4626492],[119.7518837,-4.449649],[119.75397260000011,-4.438814899999954],[119.75379980000002,-4.423531899999944],[119.75563350000004,-4.423229],[119.756453,-4.4207138],[119.75466210000002,-4.416175199999941],[119.75591220000001,-4.404983499999958],[119.7527818000001,-4.399410699999976],[119.74982460000001,-4.386752499999943],[119.75238940000008,-4.378492799999947],[119.74955180000006,-4.368283099999928],[119.74976190000007,-4.364170799999954],[119.75600920000011,-4.347538899999961],[119.753796,-4.331624899999952],[119.75495580000006,-4.318463699999938],[119.75348870000005,-4.314149599999951],[119.7533204,-4.296764199999927],[119.75481290000005,-4.28465],[119.74958390000006,-4.279707899999948],[119.74137040000005,-4.278201199999955],[119.74152320000007,-4.275444499999935],[119.74554250000006,-4.270288299999947],[119.74439820000009,-4.264093399999979],[119.73590850000005,-4.260346499999969],[119.72851850000006,-4.25252],[119.71671530000003,-4.2493989],[119.71517850000009,-4.247018599999933],[119.71591890000002,-4.239316799999926],[119.71441190000007,-4.235490499999969],[119.70613780000008,-4.230522199999939],[119.7128861000001,-4.225763299999926],[119.72038540000005,-4.214242299999967],[119.72397450000005,-4.211663299999941],[119.73716800000011,-4.2100627],[119.74208810000005,-4.207713899999931],[119.75288540000008,-4.208995],[119.75640720000001,-4.206533699999966],[119.75478190000001,-4.200241099999971],[119.75499560000003,-4.192514199999948],[119.74426330000006,-4.188847099999975],[119.73589650000008,-4.183698499999934],[119.72974560000011,-4.173879099999965],[119.73373950000007,-4.162162799999976],[119.730877,-4.147316599999954],[119.73868090000008,-4.138623499999937],[119.7412700000001,-4.140900699999975],[119.7457108000001,-4.138761699999975],[119.74940760000004,-4.1290267],[119.734314,-4.108296399999972],[119.71989440000004,-4.096000199999935],[119.7180939000001,-4.090931399999931],[119.71866980000004,-4.0862867],[119.715769,-4.083204],[119.712407,-4.08238],[119.712545,-4.081195],[119.70721810000009,-4.079323099999954],[119.70458860000008,-4.079369499999927],[119.69857470000011,-4.0763494],[119.68174920000001,-4.076284699999974],[119.67648970000005,-4.073499699999957],[119.66963120000003,-4.072307199999955],[119.65272550000009,-4.076121699999931],[119.64057350000007,-4.076957599999957],[119.63649520000001,-4.074492799999973],[119.62929250000002,-4.074185099999966],[119.62639090000005,-4.071992499999965],[119.62596310000004,-4.069884499999944],[119.62026170000001,-4.067138599999964]]]]},"properties":{"shapeName":"Barru","shapeISO":"","shapeID":"22746128B30783997672753","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[109.91495210000005,-7.195840199999964],[109.91853880000008,-7.194369799999947],[109.91886910000005,-7.189640399999973],[109.92270130000009,-7.187189299999943],[109.92475370000005,-7.188596899999936],[109.92267610000005,-7.1867904],[109.93011470000005,-7.180086099999926],[109.93212890000007,-7.171676099999956],[109.939827,-7.157551699999942],[109.93881230000005,-7.147740299999953],[109.93988040000005,-7.141726899999981],[109.94688420000006,-7.132023799999956],[109.94911450000006,-7.132090299999959],[109.94911960000007,-7.124214099999961],[109.953743,-7.120032299999934],[109.95540620000008,-7.114331199999981],[109.959343,-7.110451699999942],[109.95967870000004,-7.105947899999933],[109.96202850000009,-7.103434],[109.96126570000007,-7.101345399999957],[109.96354470000006,-7.099801799999966],[109.96336270000006,-7.095107499999926],[109.96534790000004,-7.095778799999948],[109.96635950000007,-7.091168799999934],[109.97384990000006,-7.0880834],[109.97452540000006,-7.08319],[109.97756070000008,-7.082994099999951],[109.97695640000006,-7.081208],[109.979112,-7.077674699999932],[109.97803440000007,-7.075033],[109.97985040000009,-7.071768],[109.97965420000008,-7.068763699999977],[109.97756530000004,-7.066785399999958],[109.98042960000004,-7.062786099999926],[109.97789170000004,-7.051982099999975],[109.97601320000007,-7.050449599999979],[109.97745530000009,-7.0494894],[109.97230870000004,-7.0470303],[109.974049,-7.046345199999962],[109.97226680000006,-7.044300199999952],[109.97439030000004,-7.043728599999952],[109.97484690000005,-7.041729299999929],[109.97359590000008,-7.037781499999937],[109.97420250000005,-7.033867699999973],[109.97759760000008,-7.031277599999953],[109.98301370000007,-7.032017],[109.98844490000005,-7.024610799999948],[109.99126290000004,-7.025909599999977],[109.99384320000007,-7.025167899999929],[109.99587640000004,-7.027086699999927],[110.00366210000004,-7.01932],[110.00641630000007,-7.019766799999957],[110.00765990000008,-7.017827499999953],[110.00978850000007,-7.018390599999975],[110.01193240000003,-7.017117499999927],[110.01347350000009,-7.018571399999928],[110.01518250000004,-7.010435099999938],[110.02306370000008,-7.006338599999935],[110.02632140000009,-7.001649399999962],[110.024765,-6.999382899999944],[110.02520180000005,-6.997180899999933],[110.03096920000007,-6.996352499999944],[110.03055570000004,-6.994189699999936],[110.03269860000006,-6.9914543],[110.03614180000005,-6.993731099999934],[110.03967290000008,-6.989700299999981],[110.04311370000005,-6.988947799999949],[110.04509740000009,-6.979557899999975],[110.05097960000006,-6.980200699999955],[110.050766,-6.966807399999936],[110.04877470000008,-6.965752099999975],[110.04780580000005,-6.959962299999972],[110.04802710000007,-6.9585924],[110.051651,-6.9587521],[110.05347440000008,-6.954622299999926],[110.04941410000004,-6.950922099999957],[110.04960630000005,-6.9481639],[110.04699710000006,-6.9463734],[110.05095670000009,-6.9415369],[110.04956050000004,-6.940712399999938],[110.045929,-6.941810099999941],[110.043663,-6.940530299999978],[110.04035320000008,-6.942969099999971],[110.04029850000006,-6.939213199999926],[110.03415680000006,-6.938056399999937],[110.03544620000008,-6.932031099999961],[110.03076940000005,-6.930123299999934],[110.04017640000006,-6.9237675],[110.04184720000006,-6.923686],[110.04280860000006,-6.925476499999945],[110.04518890000008,-6.921471099999962],[110.03904890000007,-6.916939],[110.03896750000007,-6.918007899999964],[110.03363,-6.918111899999928],[110.03311250000007,-6.913754199999971],[110.02793170000007,-6.914815199999964],[110.03002010000006,-6.912409099999934],[110.02834240000004,-6.910828399999957],[110.00792,-6.919535799999949],[109.98256,-6.9242],[109.97884,-6.92258],[109.96870220000005,-6.923520199999928],[109.96269170000005,-6.919529799999964],[109.95007810000004,-6.919694],[109.94777960000005,-6.918430499999943],[109.947337,-6.916353199999946],[109.94373210000003,-6.917231299999969],[109.93934920000004,-6.915296799999965],[109.93314110000006,-6.915451399999938],[109.92725,-6.91213],[109.90773150000007,-6.917723499999965],[109.87701180000005,-6.916195899999934],[109.86609150000004,-6.914110799999946],[109.84315530000003,-6.906123599999944],[109.81876760000006,-6.903278],[109.806721,-6.899075699999969],[109.79932,-6.89119],[109.78096,-6.88884],[109.76167780000009,-6.884489599999938],[109.74985250000009,-6.879717],[109.74986450000006,-6.877210099999957],[109.74091,-6.87778],[109.71420790000008,-6.868008399999951],[109.71213530000006,-6.872531399999957],[109.71017460000007,-6.871576799999957],[109.70933530000008,-6.872526599999958],[109.70678710000004,-6.878552399999933],[109.71141050000006,-6.883685499999956],[109.70952610000006,-6.888666099999966],[109.707222,-6.889616499999931],[109.70679480000007,-6.894281299999932],[109.70345220000007,-6.898563799999977],[109.70382550000005,-6.901274399999977],[109.70568210000005,-6.901790299999959],[109.70529170000009,-6.904263],[109.70104690000005,-6.907026499999972],[109.70089060000004,-6.909379399999978],[109.69804380000005,-6.910357],[109.69791410000005,-6.911790799999949],[109.69474410000004,-6.912401299999942],[109.69695050000007,-6.921028799999931],[109.69527290000008,-6.928376499999956],[109.68820990000006,-6.933226699999977],[109.68714520000009,-6.930867199999966],[109.68120160000007,-6.9310933],[109.680989,-6.933698299999946],[109.67845030000007,-6.933591699999965],[109.68083610000008,-6.934966499999973],[109.67506060000005,-6.934596499999941],[109.67339330000004,-6.935129099999926],[109.67375180000005,-6.936835199999962],[109.67702490000005,-6.937529499999926],[109.675293,-6.940265199999942],[109.67704780000008,-6.941592699999944],[109.67859650000008,-6.940003399999966],[109.68115370000004,-6.941461299999958],[109.67957630000006,-6.943131],[109.68208530000004,-6.9437793],[109.682095,-6.948102799999958],[109.68374770000008,-6.951345699999933],[109.68581760000006,-6.952188099999944],[109.68570230000006,-6.954073599999958],[109.68754070000006,-6.950730599999929],[109.68922080000004,-6.951293799999974],[109.69151430000005,-6.9549337],[109.69314310000004,-6.954971099999966],[109.693994,-6.958661899999981],[109.693056,-6.960703499999966],[109.69511210000007,-6.960955799999965],[109.69871520000004,-6.965505099999973],[109.70278550000006,-6.964775699999961],[109.70451080000004,-6.971277699999973],[109.70325180000009,-6.973810899999933],[109.70549150000005,-6.975102099999958],[109.70480350000008,-6.978288499999962],[109.70676890000004,-6.979673899999966],[109.70741670000007,-6.986497699999973],[109.71485450000006,-6.988011699999959],[109.717031,-6.986152499999946],[109.72171650000007,-6.986621299999968],[109.73069730000009,-7.002792499999941],[109.73654940000006,-7.003466099999969],[109.74416550000007,-6.995434099999954],[109.74816160000006,-6.999587],[109.74684170000006,-7.004896099999939],[109.74877190000007,-7.006910299999959],[109.747742,-7.011919399999954],[109.75896990000007,-7.030583499999977],[109.75899830000009,-7.033891499999982],[109.755978,-7.037473],[109.75312750000006,-7.038213799999937],[109.75507820000007,-7.042094499999962],[109.751384,-7.044272599999942],[109.75537990000004,-7.047033799999951],[109.755015,-7.053244099999972],[109.753589,-7.054775199999938],[109.75589090000005,-7.055806299999972],[109.75334670000007,-7.057935099999952],[109.75537640000005,-7.058304699999951],[109.75868960000008,-7.0638078],[109.75579830000004,-7.065261299999975],[109.757992,-7.0659463],[109.758629,-7.069285799999932],[109.75807210000005,-7.071235599999966],[109.75600450000007,-7.071980899999971],[109.75708030000004,-7.075421699999936],[109.75299850000005,-7.082978599999933],[109.753998,-7.084500199999979],[109.75057230000004,-7.084125499999971],[109.75095380000005,-7.087502399999948],[109.75324440000009,-7.087864299999978],[109.75333420000004,-7.090383499999973],[109.74788670000004,-7.093302699999981],[109.74581910000006,-7.097394399999928],[109.73902890000005,-7.099487299999964],[109.73903660000008,-7.101677399999971],[109.74390410000007,-7.111640399999942],[109.75400540000004,-7.1127147],[109.75706490000005,-7.115085599999929],[109.76252750000003,-7.116420199999936],[109.76680760000005,-7.114779],[109.77160650000008,-7.116014],[109.77230070000007,-7.119546799999966],[109.77427670000009,-7.120854399999928],[109.77469640000004,-7.125666599999931],[109.77294160000008,-7.131722899999943],[109.77371220000003,-7.1347141],[109.77065280000005,-7.138968399999953],[109.77142330000004,-7.142778799999974],[109.77499390000008,-7.144748099999958],[109.77799230000005,-7.151102],[109.77807620000004,-7.155761199999972],[109.78344730000003,-7.160458],[109.78404230000007,-7.162979099999973],[109.78759,-7.166232499999978],[109.79436490000006,-7.168025499999942],[109.79871170000007,-7.171164799999929],[109.80276490000006,-7.172353699999974],[109.81593320000007,-7.181080299999962],[109.81965640000004,-7.1793666],[109.82105260000009,-7.180025499999942],[109.83335880000004,-7.189906099999973],[109.842041,-7.186337899999955],[109.84259040000006,-7.184031899999979],[109.84581,-7.182820299999946],[109.84564210000008,-7.181056499999954],[109.848526,-7.1778302],[109.86696630000006,-7.187412699999925],[109.87397,-7.186653599999943],[109.87692260000006,-7.191112],[109.88150030000008,-7.188961899999981],[109.88096620000005,-7.184701899999936],[109.883606,-7.183767299999943],[109.88669590000006,-7.178711399999941],[109.898964,-7.190087699999935],[109.90084840000009,-7.194443699999965],[109.90582280000007,-7.1963825],[109.91156010000009,-7.195401599999968],[109.91732790000009,-7.191062399999964],[109.91762540000008,-7.193407499999978],[109.91495210000005,-7.195840199999964]]]},"properties":{"shapeName":"Batang","shapeISO":"","shapeID":"22746128B37514120277821","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.458712,-2.181107199999929],[103.44788120000004,-2.177900099999931],[103.44703490000006,-2.174058199999934],[103.44652880000007,-2.0622862],[103.44179490000005,-2.0657518],[103.44140780000004,-2.058513499999947],[103.39164010000007,-2.0585629],[103.37488970000004,-2.055868799999928],[103.37459770000004,-2.052299299999959],[103.36937620000003,-2.050806699999953],[103.36952360000004,-2.001927599999931],[103.332845,-2.001725699999952],[103.33490710000007,-1.9654241],[103.31426190000008,-1.965403199999969],[103.31464870000008,-1.868475399999966],[103.39551660000006,-1.868682099999944],[103.39879840000003,-1.863139799999942],[103.39771190000005,-1.8553519],[103.39823570000004,-1.834023199999933],[103.39984080000005,-1.826195499999926],[103.41509580000007,-1.8174781],[103.42920940000005,-1.812636699999928],[103.43001060000006,-1.810140499999932],[103.42232940000008,-1.786083899999937],[103.41716090000006,-1.778392399999973],[103.401235,-1.766806699999961],[103.39598580000006,-1.757627399999933],[103.39846620000009,-1.738618599999938],[103.40085350000004,-1.732421399999964],[103.400283,-1.727048299999979],[103.39685580000008,-1.720139199999949],[103.39786970000006,-1.712986699999931],[103.41189150000008,-1.700869099999977],[103.41449180000006,-1.691753899999981],[103.41847560000008,-1.6854579],[103.41771840000007,-1.674268699999971],[103.419066,-1.663990599999977],[103.41631890000008,-1.6584888],[103.41625550000003,-1.649556599999926],[103.41475520000006,-1.644044899999926],[103.38633840000006,-1.644342599999959],[103.38630180000007,-1.6408558],[103.38813210000006,-1.631991299999925],[103.41436410000006,-1.632229299999949],[103.42430610000008,-1.621539],[103.41694840000008,-1.6160129],[103.41876470000005,-1.612742699999956],[103.417781,-1.608488499999964],[103.42166070000007,-1.605088799999976],[103.43550460000006,-1.602458699999943],[103.43903190000003,-1.598845899999958],[103.44417640000006,-1.600834799999973],[103.44932350000005,-1.599208199999964],[103.44862230000007,-1.594245199999932],[103.45583810000005,-1.587828899999977],[103.45151430000004,-1.582780699999944],[103.45202520000004,-1.577833599999963],[103.44776440000004,-1.5684174],[103.45322870000007,-1.564895799999931],[103.45663760000008,-1.558966399999974],[103.46570470000006,-1.535259699999926],[103.466445,-1.529414199999962],[103.46471770000005,-1.524095099999954],[103.45667560000004,-1.515725299999929],[103.457035,-1.506358199999966],[103.45951090000005,-1.499946299999976],[103.459184,-1.491775099999927],[103.457051,-1.489858499999968],[103.45208670000005,-1.489549299999965],[103.45842570000008,-1.479926399999954],[103.46253270000005,-1.476501499999927],[103.46869710000004,-1.474948799999936],[103.46807570000004,-1.471432599999957],[103.45994090000005,-1.471828799999969],[103.459406,-1.469530599999928],[103.45693540000008,-1.4699558],[103.45147240000006,-1.467641699999945],[103.44569450000006,-1.469583799999953],[103.44659080000008,-1.472522599999934],[103.44444250000004,-1.475986599999942],[103.44337260000003,-1.471641399999953],[103.43878010000009,-1.473446199999955],[103.43626360000007,-1.468070499999953],[103.43486650000006,-1.467793299999926],[103.43419180000006,-1.469249299999944],[103.432447,-1.466586199999938],[103.43015060000005,-1.467689499999949],[103.42469430000006,-1.474905299999932],[103.41568480000007,-1.475859399999933],[103.41057590000008,-1.472707399999933],[103.40105890000007,-1.472523099999933],[103.39554970000006,-1.474780599999974],[103.39105040000004,-1.481872199999941],[103.38809760000004,-1.482889899999975],[103.38350920000005,-1.481239199999948],[103.38086590000006,-1.47345],[103.37569550000006,-1.465144],[103.37148630000007,-1.462613499999975],[103.36633290000003,-1.450860699999964],[103.36047610000008,-1.448218199999928],[103.35328130000005,-1.441860299999973],[103.35410160000004,-1.434415299999955],[103.34581910000009,-1.413813199999936],[103.34772360000005,-1.402840499999968],[103.34256520000008,-1.398055399999976],[103.34189270000007,-1.388628399999959],[103.33692730000007,-1.381483899999978],[103.33991880000008,-1.3767045],[103.33891410000007,-1.371834399999955],[103.331573,-1.365496299999961],[103.32362640000008,-1.366242099999965],[103.31912330000006,-1.368327199999953],[103.31423570000004,-1.365045099999975],[103.31254240000004,-1.358623099999932],[103.30989640000007,-1.354659399999946],[103.30439750000005,-1.351718399999925],[103.29512870000008,-1.349833499999932],[103.29302130000008,-1.3527008],[103.26039380000009,-1.353937599999938],[103.25821920000004,-1.355848499999979],[103.25400530000007,-1.373424499999942],[103.25014680000004,-1.382293699999934],[103.25033760000008,-1.385578799999962],[103.25481130000009,-1.393259899999975],[103.25976720000006,-1.397725199999968],[103.26557050000008,-1.398966899999948],[103.26683030000004,-1.401696299999969],[103.26584950000006,-1.405693099999951],[103.25837110000003,-1.4087015],[103.25389190000004,-1.408412599999963],[103.24437590000008,-1.395462299999963],[103.21745830000003,-1.378073899999947],[103.21557030000008,-1.373960799999963],[103.21673160000006,-1.370737099999928],[103.21602410000008,-1.3650061],[103.20536750000008,-1.355465399999957],[103.19476990000004,-1.367242099999942],[103.175303,-1.378363599999943],[103.16745430000009,-1.386468199999968],[103.16291820000004,-1.383959699999934],[103.15597540000005,-1.376468099999954],[103.14896460000006,-1.373933699999952],[103.14853850000009,-1.368476099999953],[103.14623990000007,-1.368409699999972],[103.13697140000005,-1.380498899999964],[103.12799560000008,-1.389154899999937],[103.120013,-1.391508],[103.11945680000008,-1.397542499999929],[103.11781820000004,-1.399622699999952],[103.07897370000006,-1.392990199999929],[103.06541840000006,-1.388368499999956],[103.05980350000004,-1.388494099999946],[103.06368880000008,-1.395269299999939],[103.06999950000005,-1.398705199999938],[103.07100310000004,-1.404031499999974],[103.06590430000006,-1.4094437],[103.05420950000007,-1.412643199999934],[103.05191320000006,-1.415737899999954],[103.05368720000007,-1.422579399999961],[103.051398,-1.428297599999951],[103.05130350000007,-1.433237799999972],[103.04753340000008,-1.436033599999973],[103.042452,-1.451682399999925],[103.03526110000007,-1.451869899999963],[103.03171570000006,-1.447737599999925],[103.03064150000006,-1.439095599999973],[103.02830440000008,-1.436880599999938],[103.02121410000007,-1.436314599999946],[103.01182440000008,-1.439342299999964],[103.01020250000005,-1.434814599999925],[102.99688020000008,-1.43087],[102.98834050000005,-1.423182],[102.981576,-1.421276399999954],[102.97198760000003,-1.423576399999945],[102.96141750000004,-1.4202478],[102.95427660000007,-1.4104618],[102.94616740000004,-1.4059175],[102.93239510000006,-1.390647],[102.92105990000005,-1.381390099999976],[102.907605,-1.379797099999962],[102.90098120000005,-1.377637199999924],[102.89301930000005,-1.369678599999929],[102.86750110000008,-1.370877499999949],[102.86770580000007,-1.376780899999972],[102.86384080000005,-1.3789284],[102.85897570000009,-1.377503099999956],[102.85751520000008,-1.380099599999937],[102.86065850000006,-1.385398499999951],[102.85783930000008,-1.389086299999974],[102.84746440000004,-1.385405],[102.84479220000009,-1.385981299999969],[102.83866190000003,-1.394392299999936],[102.834582,-1.397688799999969],[102.83185540000005,-1.397701099999949],[102.82631670000006,-1.394833],[102.82363690000005,-1.395651799999939],[102.82204410000008,-1.398968499999967],[102.82263960000006,-1.418136699999934],[102.81903770000008,-1.422608399999945],[102.81357630000008,-1.423173299999974],[102.81209180000008,-1.4259065],[102.81284870000007,-1.430971499999941],[102.81505860000004,-1.434477499999957],[102.81744360000005,-1.445105599999977],[102.82479510000007,-1.452627899999925],[102.82287840000004,-1.467577899999981],[102.82312580000007,-1.498767199999975],[102.81254860000007,-1.523027799999966],[102.80233810000004,-1.539495],[102.802255,-1.556451],[102.803939,-1.5605294],[102.80531690000004,-1.578510199999926],[102.78317830000009,-1.619448899999952],[102.78336960000007,-1.628104399999927],[102.78189470000007,-1.633298299999979],[102.77897270000005,-1.637125799999978],[102.77105020000005,-1.6414928],[102.75842430000006,-1.666423799999961],[102.75,-1.674835099999939],[102.74915120000009,-1.677611],[102.74595480000005,-1.679295099999933],[102.74659780000007,-1.685176099999978],[102.74187960000006,-1.691976499999953],[102.73704510000005,-1.694713699999966],[102.73629080000006,-1.691500499999961],[102.73353050000009,-1.690735],[102.73385950000005,-1.687142],[102.73158540000009,-1.687248199999942],[102.73044570000008,-1.689588],[102.73189970000004,-1.696286699999973],[102.72734370000006,-1.7008579],[102.72696040000005,-1.704437299999938],[102.724154,-1.702002399999969],[102.721572,-1.704823699999963],[102.71859110000008,-1.702297699999974],[102.71588090000006,-1.705727],[102.71319980000004,-1.7035315],[102.70651150000003,-1.704465099999936],[102.70624690000005,-1.706578199999967],[102.712488,-1.713116599999978],[102.71397090000005,-1.718246799999974],[102.71047590000006,-1.715959099999964],[102.70935950000006,-1.72079],[102.70690330000008,-1.722992499999975],[102.69854560000005,-1.721879599999966],[102.69574990000007,-1.724229099999945],[102.69586930000008,-1.727981199999931],[102.68703460000006,-1.745014199999957],[102.688018,-1.766640099999961],[102.686992,-1.773910799999953],[102.67804260000008,-1.78765],[102.668755,-1.796675899999968],[102.66387530000009,-1.8128042],[102.658536,-1.820582699999932],[102.63464310000006,-1.834911499999976],[102.627061,-1.843195699999967],[102.61551190000006,-1.860336699999948],[102.59749210000007,-1.876040499999931],[102.58513390000007,-1.881568799999968],[102.57236420000004,-1.882005499999934],[102.56343910000004,-1.880629499999941],[102.55214790000008,-1.874364799999967],[102.537699,-1.863778499999967],[102.52065940000006,-1.857313599999941],[102.50993910000005,-1.866244599999959],[102.50805960000008,-1.870953199999974],[102.50990510000008,-1.890271899999959],[102.50849770000008,-1.892154399999924],[102.50809990000005,-1.897987399999977],[102.50973040000008,-1.911871099999928],[102.51742220000006,-1.9156058],[102.52284720000006,-1.914932],[102.532347,-1.909378799999956],[102.54032960000006,-1.908732399999963],[102.55685730000005,-1.9162022],[102.56268140000009,-1.917337399999951],[102.59027450000008,-1.910167099999967],[102.59960360000008,-1.910860699999944],[102.64037970000004,-1.924893],[102.64607640000008,-1.923319699999979],[102.65229040000008,-1.924578099999962],[102.67408810000006,-1.934379899999954],[102.67963520000006,-1.939456899999925],[102.69671120000004,-1.945084699999938],[102.69831460000006,-1.947586],[102.70522770000008,-1.951769599999977],[102.70642090000007,-1.956387399999926],[102.71172840000008,-1.959576099999936],[102.71534450000007,-1.959808499999951],[102.720822,-1.957112299999949],[102.73258650000008,-1.949174199999959],[102.74456430000004,-1.950895],[102.75043660000006,-1.954311799999971],[102.76099040000008,-1.950114499999927],[102.77727540000006,-1.947289599999976],[102.79661680000004,-1.955043599999954],[102.80170380000004,-1.9543685],[102.81459540000009,-1.949044599999979],[102.81662930000005,-1.949615299999948],[102.81764350000009,-1.952002899999968],[102.81808470000004,-1.960412699999949],[102.82058590000008,-1.969111399999974],[102.81953740000006,-1.973895599999935],[102.81533870000004,-1.977692],[102.81140040000008,-1.992548599999964],[102.82229620000004,-2.001445599999954],[102.84285820000008,-2.0024079],[102.85824590000004,-2.009388899999976],[102.87096020000007,-2.006288899999959],[102.877159,-2.0073359],[102.88563570000008,-2.004957399999967],[102.90475310000005,-2.0049821],[102.90965590000008,-2.001334699999973],[102.91184340000007,-1.984810399999958],[102.914363,-1.9821692],[102.919393,-1.983555199999955],[102.92854380000006,-1.982187099999976],[102.93059860000005,-1.985409199999935],[102.93986140000004,-1.985765599999979],[102.94629720000006,-1.982542399999943],[102.96121430000005,-1.964494299999956],[102.96494660000008,-1.955210299999976],[102.97943390000006,-1.943442499999946],[103.00186580000008,-1.949777399999959],[103.01449130000009,-1.946227499999964],[103.01552820000006,-1.943062699999928],[103.01947530000007,-1.941319],[103.025836,-1.942553699999962],[103.04179150000004,-1.937627299999974],[103.05143590000006,-1.937451899999928],[103.06395120000008,-1.940638699999965],[103.07415880000008,-1.950784499999941],[103.08354190000006,-1.955299299999979],[103.12333070000005,-1.957721699999979],[103.13284520000008,-1.956230799999958],[103.15653470000007,-1.955756899999926],[103.164247,-1.953513299999941],[103.17864260000005,-1.944908399999974],[103.19534980000009,-1.937566699999934],[103.19557180000004,-1.943776799999966],[103.19350910000009,-1.947454599999958],[103.16371270000008,-1.976151499999958],[103.160684,-1.981446099999971],[103.15951140000004,-1.997020899999939],[103.16049740000005,-2.017171299999973],[103.16348040000008,-2.024815],[103.17548040000008,-2.040016099999946],[103.20111240000006,-2.061400099999958],[103.21126010000006,-2.081075699999928],[103.21506270000003,-2.090992],[103.21600280000007,-2.102823499999943],[103.22027860000009,-2.115778],[103.21947690000007,-2.122012],[103.22216760000003,-2.131447499999979],[103.22206090000009,-2.141793799999959],[103.23804580000007,-2.141827],[103.246467,-2.137457899999958],[103.24998990000006,-2.137757],[103.253511,-2.131504],[103.25854740000005,-2.133950699999957],[103.26003490000005,-2.1388341],[103.25978760000004,-2.151226099999974],[103.26136890000004,-2.155781099999956],[103.26388690000005,-2.1571922],[103.26570870000006,-2.155410599999925],[103.27326440000007,-2.158235699999977],[103.27507850000006,-2.163213399999961],[103.27930770000006,-2.165729899999974],[103.28719250000006,-2.178858599999955],[103.28826550000008,-2.179047599999933],[103.29013980000008,-2.174242099999958],[103.29207620000005,-2.17473],[103.29185670000004,-2.177696799999978],[103.29508490000006,-2.184407499999963],[103.29303330000005,-2.187851099999932],[103.29477410000004,-2.2002724],[103.29747360000005,-2.206284],[103.30800760000005,-2.216623199999958],[103.326293,-2.222277099999928],[103.33150380000006,-2.236084],[103.33537210000009,-2.240313199999946],[103.33718170000009,-2.249375099999952],[103.33955750000007,-2.252992399999926],[103.34240260000007,-2.25431],[103.34449540000008,-2.260602699999936],[103.347803,-2.265488499999947],[103.35381760000007,-2.270142699999951],[103.35577240000003,-2.274651399999925],[103.36167650000004,-2.277134599999954],[103.36606,-2.283926799999961],[103.37703060000007,-2.283334399999944],[103.38025250000004,-2.284382199999925],[103.38616460000009,-2.295556899999951],[103.39307160000004,-2.295932199999925],[103.39418790000008,-2.303185499999927],[103.39808980000004,-2.303522599999951],[103.40020350000003,-2.306119699999954],[103.39953770000005,-2.309977799999956],[103.40105480000005,-2.313705399999947],[103.40286210000005,-2.315852199999938],[103.40889960000004,-2.318258599999979],[103.411298,-2.321567799999968],[103.41202680000004,-2.325521199999969],[103.40966830000008,-2.333397399999967],[103.41262940000007,-2.334750299999939],[103.41877180000006,-2.334059399999944],[103.421534,-2.336017],[103.43140880000004,-2.335543299999927],[103.44360570000003,-2.354338499999926],[103.446697,-2.356407699999977],[103.44948810000005,-2.354192199999943],[103.44672330000009,-2.346424499999955],[103.45056570000008,-2.342986499999938],[103.44864960000007,-2.339041399999928],[103.45057120000007,-2.335916399999974],[103.45223590000006,-2.325805099999968],[103.44669350000004,-2.313224099999957],[103.45119680000005,-2.3081059],[103.45321280000007,-2.301426],[103.46020430000004,-2.296871499999952],[103.45909150000006,-2.286025199999926],[103.461149,-2.279374],[103.45890680000008,-2.273117399999933],[103.46057740000003,-2.269450399999926],[103.46333750000008,-2.267575099999931],[103.46593020000006,-2.255221499999948],[103.46554510000004,-2.250103599999932],[103.46045650000008,-2.243537299999957],[103.46144010000006,-2.238457499999924],[103.46015210000007,-2.226762699999938],[103.45363970000005,-2.218069299999968],[103.45143340000004,-2.209423399999935],[103.45347780000009,-2.1942486],[103.45823780000006,-2.188177099999962],[103.458712,-2.181107199999929]]]},"properties":{"shapeName":"Batang Hari","shapeISO":"","shapeID":"22746128B44553189302331","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[99.20796520000005,3.223574800000051],[99.23044960000004,3.199744200000055],[99.23102020000005,3.203300700000057],[99.22935430000007,3.205019400000026],[99.231076,3.211374800000044],[99.22978590000008,3.218194200000028],[99.23388860000006,3.225650200000075],[99.23625290000007,3.238397],[99.231448,3.240558],[99.22897780000005,3.244884600000034],[99.22393810000005,3.240519200000051],[99.22232050000008,3.23714810000007],[99.21877710000007,3.235217100000057],[99.21757030000003,3.230711900000074],[99.21557070000006,3.230486800000051],[99.21397960000007,3.228295200000048],[99.21355760000006,3.225198100000057],[99.20796520000005,3.223574800000051]]],[[[99.75205170000004,3.170035600000062],[99.74245670000005,3.171624800000075],[99.73898250000008,3.170958],[99.73851880000007,3.173336900000038],[99.73342770000005,3.178364600000066],[99.71739960000008,3.190367900000069],[99.71161940000007,3.190733800000032],[99.71202040000009,3.193279500000074],[99.70923480000005,3.195336200000042],[99.68751930000008,3.205536700000039],[99.67798350000004,3.20804320000002],[99.67228360000007,3.207491700000048],[99.66959480000008,3.211087200000065],[99.61293950000004,3.224590500000033],[99.60549340000006,3.227501200000063],[99.59484590000005,3.234195800000066],[99.59266250000007,3.233576800000037],[99.593829,3.23762970000007],[99.58852890000009,3.22972470000002],[99.58535490000008,3.227719700000023],[99.58335260000007,3.228657600000076],[99.58501650000005,3.231057100000044],[99.58233380000007,3.232386400000053],[99.57262580000008,3.234045500000036],[99.571013,3.233210800000052],[99.56016920000008,3.237826700000028],[99.55836770000008,3.237371500000052],[99.55506090000006,3.240955800000052],[99.54676770000003,3.245287],[99.53935530000007,3.252849200000071],[99.53019370000004,3.268945400000064],[99.51254760000006,3.285642],[99.51376080000006,3.29271540000002],[99.50659790000003,3.297509700000035],[99.50008710000009,3.305199],[99.498698,3.310044],[99.49482730000005,3.313427600000068],[99.49583440000004,3.315975600000058],[99.49392590000008,3.314506900000026],[99.49289350000004,3.315814100000068],[99.49072330000007,3.315095400000075],[99.48659880000008,3.318152800000064],[99.486292,3.32034230000005],[99.48854910000006,3.31915360000005],[99.48927410000005,3.321171800000059],[99.48726890000006,3.320899700000041],[99.48658440000008,3.322331700000063],[99.48565720000005,3.33134270000005],[99.48634690000006,3.337053600000047],[99.48863120000004,3.338574],[99.49014710000006,3.342335500000047],[99.48827510000007,3.345352400000024],[99.48502030000009,3.347499800000037],[99.47351320000007,3.347575],[99.46646060000006,3.352942],[99.45565390000007,3.35757],[99.44136040000006,3.372952400000031],[99.41922970000007,3.38403820000002],[99.41647740000008,3.383226600000057],[99.41485970000008,3.386276500000065],[99.42000830000006,3.386677],[99.40673310000005,3.387772700000028],[99.38383940000006,3.394984700000066],[99.36554880000006,3.398773600000027],[99.36487270000003,3.404472100000021],[99.36869630000007,3.401341],[99.37036190000003,3.401651],[99.37063010000008,3.403208800000073],[99.360582,3.408383600000036],[99.36138220000004,3.411050400000022],[99.35159030000005,3.414098800000033],[99.35004730000009,3.418882100000076],[99.34713170000003,3.42128660000003],[99.33928130000004,3.424221300000056],[99.329451,3.425802500000032],[99.32540940000007,3.430982],[99.32109830000007,3.433859400000074],[99.31968920000008,3.433167200000071],[99.31481340000005,3.443133400000022],[99.30597020000005,3.425431300000071],[99.30381730000005,3.41417720000004],[99.29177150000004,3.386430500000074],[99.287519,3.371014700000046],[99.28282090000005,3.364797200000055],[99.27786020000008,3.352887800000076],[99.27138170000006,3.342804900000033],[99.26278780000007,3.332606600000076],[99.25902230000008,3.322107500000072],[99.26102460000004,3.317644600000051],[99.25969460000005,3.311030500000072],[99.25103490000004,3.29484240000005],[99.24523790000006,3.289859],[99.24471690000007,3.28287940000007],[99.23484710000008,3.26676070000002],[99.23520840000003,3.252381700000058],[99.24645380000004,3.253764600000068],[99.25194470000008,3.256732],[99.25454180000008,3.253358800000058],[99.26219880000008,3.255418400000053],[99.26441710000006,3.259885900000029],[99.25964290000007,3.265689300000076],[99.267546,3.273323800000071],[99.26925350000005,3.276753800000051],[99.28195490000007,3.270848200000046],[99.29448170000006,3.272848500000066],[99.298124,3.277947400000073],[99.30528680000003,3.280996200000061],[99.30795480000006,3.283690200000024],[99.30983480000003,3.290531100000067],[99.30864270000006,3.299750200000062],[99.34417230000008,3.287732800000072],[99.34840280000009,3.274332600000037],[99.34539040000004,3.268420200000037],[99.34532770000004,3.264383],[99.34731310000006,3.259759900000063],[99.34425970000007,3.252191900000071],[99.34525830000007,3.248898500000053],[99.34425670000007,3.243317500000046],[99.34190450000006,3.238765200000046],[99.34327640000004,3.238293400000032],[99.34593070000005,3.241805400000032],[99.35690340000008,3.229117900000062],[99.35018750000006,3.219095100000061],[99.359158,3.214354],[99.35943950000006,3.217628500000046],[99.36257260000008,3.221537],[99.36129130000006,3.225412100000028],[99.36460630000005,3.229926900000066],[99.36573430000004,3.234680900000058],[99.37058010000004,3.240795100000071],[99.37234950000004,3.241292300000055],[99.37157380000008,3.244645900000023],[99.37402970000005,3.246975900000052],[99.37904110000005,3.247559],[99.38697260000004,3.253506800000025],[99.38743090000008,3.251380900000072],[99.39003080000003,3.250729400000068],[99.39249910000007,3.246017300000062],[99.394737,3.244648400000074],[99.399278,3.252014300000042],[99.40303640000008,3.253239300000075],[99.40702150000004,3.251582100000064],[99.39752680000004,3.223120100000074],[99.36317230000009,3.15104830000007],[99.42187230000008,3.146724300000074],[99.49277880000005,3.121402100000068],[99.48206090000008,3.111880600000063],[99.50824850000004,3.101075],[99.51703650000007,3.109460300000023],[99.53485650000005,3.099508200000059],[99.54652850000008,3.098191800000052],[99.565879,3.07748840000005],[99.56120020000009,3.070155700000043],[99.57241130000006,3.069831600000043],[99.57182610000007,3.049110700000028],[99.55717970000006,3.049107700000036],[99.55698740000008,3.036126400000057],[99.54938780000003,3.036063900000045],[99.54963920000006,3.018100200000049],[99.55380740000004,3.016208800000072],[99.55627620000007,3.017945900000029],[99.55574680000007,3.027606800000058],[99.569849,3.038167100000067],[99.58402290000004,3.04370160000002],[99.58772930000003,3.038392100000067],[99.58978850000005,3.038770800000066],[99.59564330000006,3.045314400000052],[99.59819010000007,3.057653900000048],[99.59474160000008,3.066095],[99.60459840000004,3.074027300000068],[99.60780530000005,3.080023200000028],[99.60695690000006,3.094332400000042],[99.61103760000003,3.098292100000037],[99.61106440000003,3.100360700000067],[99.61014980000004,3.103732600000058],[99.60664120000007,3.101873300000022],[99.60203310000009,3.102028100000041],[99.59988620000007,3.098339700000054],[99.58898890000006,3.11068860000006],[99.60756230000004,3.126934],[99.61598920000006,3.126930200000061],[99.62180270000005,3.130388400000072],[99.62917050000004,3.125685200000021],[99.63260670000005,3.117388400000038],[99.63534060000006,3.11966730000006],[99.63766920000006,3.117919],[99.64825220000006,3.105533200000025],[99.69355750000005,3.105418600000064],[99.70671370000008,3.125083600000039],[99.72280910000006,3.135854100000074],[99.741591,3.152686700000061],[99.74762930000009,3.160094400000048],[99.75205170000004,3.170035600000062]]]]},"properties":{"shapeName":"Batu Bara","shapeISO":"","shapeID":"22746128B7869263481862","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[107.09815230000004,-5.940092199999981],[107.095312,-5.936981099999969],[107.07814420000005,-5.935517799999957],[107.04942410000007,-5.925143299999945],[107.02037090000005,-5.918147699999963],[107.008307,-5.919718099999955],[107.00466640000008,-5.926856499999928],[107.00066890000005,-5.9310682],[106.99103,-5.9364],[106.99097,-5.93809],[106.99281,-5.93806],[106.99862,-5.93557],[106.99124630000006,-5.940348099999937],[106.99110350000007,-5.941918499999929],[107.00169,-5.94036],[107.00530890000005,-5.941704399999935],[107.00866390000004,-5.945130799999959],[107.01621,-5.95852],[107.01780110000004,-5.970614799999964],[107.01651610000005,-5.974826499999949],[107.01357,-5.97687],[107.01448,-5.98073],[107.01219,-5.9806],[107.00703,-5.99712],[107.00777,-5.99823],[107.00095,-6.00252],[106.98938,-6.00323],[106.98959,-6.00449],[106.98718,-6.00567],[106.98792,-6.00689],[106.9854,-6.00821],[106.98625,-6.00985],[106.98449,-6.01092],[106.98898,-6.01076],[106.9928,-6.01446],[106.99379,-6.0201],[106.99201,-6.02617],[106.99315,-6.02609],[106.99306,-6.02813],[107.00124,-6.02472],[107.01014,-6.02381],[107.01265,-6.025],[107.01508,-6.02933],[107.01548,-6.0338],[107.01379,-6.03485],[107.01212,-6.03319],[107.00551,-6.03797],[107.00473,-6.04185],[107.00855,-6.04272],[107.00562,-6.04992],[106.99867,-6.04799],[106.99672,-6.05007],[106.98941,-6.04959],[106.99455,-6.05164],[106.99152,-6.05369],[106.99847,-6.05902],[107.00094,-6.06794],[107.00826,-6.07346],[107.01386,-6.07523],[107.0166,-6.07849],[107.01212,-6.08083],[107.00771,-6.08075],[107.0073,-6.08212],[107.00251790000004,-6.080451599999947],[107.00234510000007,-6.078570299999967],[106.99794280000003,-6.0768248],[106.995996,-6.077717],[106.99709230000008,-6.081476399999929],[106.99086,-6.08741],[106.98605580000009,-6.086451899999929],[106.97915530000006,-6.087403699999925],[106.97748970000004,-6.085738099999958],[106.96963750000003,-6.088474499999961],[106.96876680000008,-6.092243899999971],[106.96876540000005,-6.099796399999946],[106.97039180000007,-6.1045784],[106.96960470000005,-6.117495599999927],[106.97071030000006,-6.139853799999969],[106.97282540000003,-6.146198799999979],[106.97168010000007,-6.1461203],[106.97189350000008,-6.1546145],[106.97162650000007,-6.172236599999962],[107.01071330000008,-6.172381799999926],[107.01084190000006,-6.174752699999942],[107.00829850000008,-6.174577699999929],[107.00834960000009,-6.177663],[107.00697950000006,-6.177694599999938],[107.007494,-6.184865799999955],[107.00594350000006,-6.195881499999928],[107.01132180000008,-6.196507699999927],[107.01492950000005,-6.195097499999974],[107.01803470000004,-6.199803399999951],[107.019663,-6.198819499999956],[107.01994510000009,-6.1963811],[107.02791280000008,-6.197017499999959],[107.02968760000005,-6.198079399999926],[107.02941170000008,-6.2000147],[107.02987050000007,-6.198048299999925],[107.03247360000006,-6.198399599999959],[107.03275690000004,-6.203344399999935],[107.03421540000005,-6.205349399999932],[107.03216570000006,-6.208786099999941],[107.033806,-6.2123886],[107.03086110000004,-6.215143299999966],[107.03303540000007,-6.220132899999953],[107.03036520000006,-6.226734299999976],[107.03519450000005,-6.226589799999942],[107.03873460000005,-6.232362799999976],[107.04252640000004,-6.232816299999968],[107.04148120000008,-6.246151099999963],[107.03514340000004,-6.2467322],[107.03055210000008,-6.249891699999978],[107.02960990000008,-6.252996499999938],[107.02439010000006,-6.255007499999977],[107.01998880000008,-6.263575899999978],[107.01783390000008,-6.262806599999976],[107.01638810000009,-6.265633699999967],[107.01638050000008,-6.2702118],[107.01783010000008,-6.27132],[107.01657120000004,-6.276174199999957],[107.02117940000005,-6.277621899999929],[107.02252210000006,-6.280394699999931],[107.02812240000009,-6.277938099999972],[107.03143120000004,-6.282065699999976],[107.03745290000006,-6.283712],[107.04005450000005,-6.287696],[107.04093950000004,-6.296051099999943],[107.03831510000003,-6.306286799999953],[107.04118810000006,-6.307487399999957],[107.04110990000004,-6.3093806],[107.03945870000007,-6.309213199999931],[107.03708890000007,-6.314133599999934],[107.03825040000004,-6.316801899999973],[107.03671210000005,-6.317764],[107.03705980000007,-6.321470699999963],[107.03405780000008,-6.323545099999933],[107.03252430000003,-6.323114],[107.03038040000007,-6.325437699999952],[107.02886980000005,-6.330399099999966],[107.02100390000004,-6.328049299999975],[107.016447,-6.330406599999947],[107.01612110000008,-6.343642799999941],[107.01810090000004,-6.348385399999927],[107.017235,-6.353578199999959],[107.00679690000004,-6.3625891],[107.00392,-6.35975],[107.00455950000008,-6.355427099999929],[107.00160660000006,-6.3538975],[106.99839950000006,-6.356295799999941],[106.99428770000009,-6.355293],[106.99265220000007,-6.3648242],[106.99462960000005,-6.366022699999974],[106.99397290000007,-6.367133699999954],[106.99302690000007,-6.370531199999959],[106.99568190000008,-6.378625],[107.00115980000004,-6.379277799999954],[107.00585190000004,-6.378164399999946],[107.00648510000008,-6.383686599999976],[107.00477620000004,-6.387862299999938],[107.01110090000009,-6.391941199999962],[107.00848410000003,-6.395854099999951],[107.01027060000007,-6.402571299999977],[107.02004260000007,-6.400470299999938],[107.02023330000009,-6.403978499999937],[107.02312380000006,-6.404207799999938],[107.02320220000007,-6.4096695],[107.02682870000007,-6.409009099999935],[107.02685420000006,-6.410270399999945],[107.02961080000006,-6.409962099999973],[107.03071390000008,-6.411526799999933],[107.03538530000009,-6.405669299999943],[107.03829210000004,-6.405292599999939],[107.041527,-6.4069396],[107.04610460000004,-6.402846899999929],[107.04830190000007,-6.396420599999942],[107.05152650000008,-6.394258199999967],[107.06208820000006,-6.399514299999964],[107.06127180000004,-6.401500799999951],[107.05879990000005,-6.4007717],[107.05897540000007,-6.403052399999979],[107.05699170000008,-6.402908899999943],[107.054474,-6.4051186],[107.05438250000009,-6.406795599999953],[107.05683150000004,-6.4070746],[107.05833450000006,-6.410524499999951],[107.05437490000008,-6.412650199999973],[107.05764790000006,-6.415599],[107.05549640000004,-6.4165898],[107.055443,-6.415547899999979],[107.05221570000003,-6.415352899999959],[107.05120870000007,-6.417232199999944],[107.05516070000004,-6.420716399999947],[107.05455030000007,-6.419395099999974],[107.05641950000006,-6.417622699999981],[107.05669420000004,-6.422349099999963],[107.05841080000005,-6.423073399999964],[107.05715960000003,-6.424201599999947],[107.058922,-6.426730299999974],[107.05455030000007,-6.429301799999962],[107.05781570000005,-6.4296309],[107.05943320000006,-6.433568099999945],[107.05526750000007,-6.434757299999944],[107.05538190000004,-6.435730599999943],[107.05915090000008,-6.4362732],[107.06272140000004,-6.433775],[107.06674210000006,-6.4356786],[107.06807730000008,-6.437832499999956],[107.08079540000006,-6.444074699999931],[107.08003130000009,-6.448878],[107.09965530000005,-6.453660099999979],[107.10601820000005,-6.458472799999981],[107.10750590000004,-6.462338599999953],[107.11695870000005,-6.4621186],[107.12039110000006,-6.459010899999953],[107.12595760000005,-6.459173],[107.12272160000003,-6.467378799999949],[107.128586,-6.465746],[107.13481150000007,-6.466070799999954],[107.14083880000004,-6.471645],[107.14559950000006,-6.473295299999961],[107.14664470000008,-6.471608799999956],[107.15187090000006,-6.474224199999981],[107.15613570000005,-6.474626699999931],[107.15968340000006,-6.478255899999965],[107.17084630000005,-6.480668299999934],[107.17167570000004,-6.482019399999956],[107.17227190000006,-6.479813199999967],[107.17829910000006,-6.479723599999943],[107.18076340000005,-6.478116199999931],[107.18103040000005,-6.474781199999939],[107.17835150000008,-6.473878799999966],[107.18281570000005,-6.473480399999971],[107.18178690000008,-6.467756099999974],[107.18548960000004,-6.467292799999939],[107.18397190000007,-6.471637099999953],[107.18849960000006,-6.470314599999938],[107.18942280000005,-6.4640924],[107.19561630000004,-6.463796399999978],[107.19544890000009,-6.461073799999951],[107.20104290000006,-6.461092],[107.20891920000008,-6.468561499999964],[107.21315020000009,-6.464500599999951],[107.21503450000006,-6.464478899999961],[107.21687330000009,-6.461359699999946],[107.21265420000009,-6.454964799999971],[107.20537580000007,-6.451929699999937],[107.20788590000006,-6.449283299999934],[107.21106740000005,-6.452452299999948],[107.21170820000003,-6.449280899999962],[107.207039,-6.441059299999949],[107.201996,-6.436088199999972],[107.20668040000004,-6.4348866],[107.20371260000007,-6.426079399999935],[107.19767010000004,-6.424946],[107.19621290000003,-6.422990899999945],[107.20013440000008,-6.4220311],[107.20347610000005,-6.423519799999951],[107.20542920000008,-6.421652],[107.20195780000006,-6.413947699999937],[107.21218120000009,-6.417228399999942],[107.21297470000007,-6.409221799999955],[107.21727010000006,-6.407697799999937],[107.22141280000005,-6.408061699999962],[107.22212230000008,-6.400389299999972],[107.21987170000006,-6.396245199999953],[107.22122210000003,-6.384235099999955],[107.218712,-6.383435899999938],[107.21907060000007,-6.380638799999929],[107.21443950000008,-6.379629299999976],[107.21277630000009,-6.374544299999968],[107.21046460000008,-6.3795897],[107.204796,-6.375670599999978],[107.20551320000004,-6.3692466],[107.21036540000006,-6.3658892],[107.21012130000008,-6.363820699999962],[107.20750440000006,-6.3615252],[107.21067060000007,-6.361295899999959],[107.21324940000005,-6.363807299999962],[107.21530930000006,-6.361815099999944],[107.21308150000004,-6.356709199999955],[107.21498890000004,-6.349893699999939],[107.22298440000009,-6.3518921],[107.22660080000009,-6.349158399999965],[107.22560130000005,-6.341807499999959],[107.22338880000007,-6.338813499999958],[107.22364060000007,-6.335398899999973],[107.22055070000005,-6.334493299999963],[107.21869670000007,-6.331131199999959],[107.21472180000006,-6.329958599999941],[107.21913920000009,-6.325950299999931],[107.21861280000007,-6.321387499999958],[107.22473920000004,-6.320559699999933],[107.22312180000006,-6.31838],[107.21860520000007,-6.318253699999957],[107.21739970000004,-6.315149],[107.21991740000004,-6.313146299999971],[107.221779,-6.316588099999933],[107.22393810000005,-6.316335799999933],[107.22460950000004,-6.310211799999934],[107.22760020000004,-6.309338699999955],[107.22417460000008,-6.307789499999956],[107.22380840000005,-6.306096699999955],[107.22776050000004,-6.304490199999975],[107.22943130000004,-6.302201899999943],[107.23301710000004,-6.303733],[107.23313920000004,-6.299007099999926],[107.23506940000004,-6.300659799999949],[107.23549670000006,-6.307101899999964],[107.238495,-6.306086199999925],[107.239319,-6.303705899999954],[107.23645030000006,-6.2966735],[107.24201220000003,-6.296673],[107.24571240000006,-6.299630299999933],[107.24775710000006,-6.2982942],[107.248665,-6.293299399999967],[107.25092330000007,-6.292867799999954],[107.25498980000003,-6.294834799999933],[107.25505080000005,-6.290549399999975],[107.26113140000007,-6.286111499999947],[107.26429760000008,-6.286034699999959],[107.26189440000007,-6.281950199999926],[107.26326,-6.2800867],[107.26710520000006,-6.284608],[107.26784530000003,-6.280109099999947],[107.265409,-6.278752199999929],[107.26665260000004,-6.273805899999957],[107.27614610000006,-6.26705],[107.276024,-6.263124599999969],[107.27340710000004,-6.2583653],[107.27783980000004,-6.253597],[107.27450570000008,-6.241206399999953],[107.26913470000005,-6.231987199999935],[107.27442180000008,-6.233573599999943],[107.28208940000007,-6.228919699999949],[107.28368390000009,-6.225881799999968],[107.28071610000006,-6.223443699999962],[107.27494830000006,-6.222477099999935],[107.27221690000005,-6.216876699999943],[107.27862560000005,-6.215370899999925],[107.29103860000004,-6.216982099999939],[107.29308330000003,-6.214167299999929],[107.29396830000007,-6.206624199999965],[107.29662340000004,-6.202945899999975],[107.29598250000004,-6.201320799999962],[107.29205330000008,-6.201693199999966],[107.29083270000007,-6.200613699999963],[107.29213730000004,-6.19015],[107.29055040000009,-6.187070099999971],[107.28620160000008,-6.183889599999929],[107.28695690000006,-6.178236599999934],[107.28597270000006,-6.175322199999925],[107.27937330000009,-6.171085099999971],[107.27990730000005,-6.165825599999948],[107.27858750000007,-6.162015199999928],[107.28120430000007,-6.1573269],[107.28845230000007,-6.156322599999953],[107.28920760000005,-6.149304099999938],[107.29265610000004,-6.141432],[107.29104630000006,-6.140503099999933],[107.28895580000005,-6.141915499999925],[107.28576670000007,-6.148701399999936],[107.28241740000004,-6.148042399999952],[107.28103650000008,-6.144830399999933],[107.28392040000006,-6.137252499999931],[107.28342450000008,-6.135372299999972],[107.27947250000005,-6.133368699999949],[107.28118910000006,-6.127599399999951],[107.27789320000005,-6.127033399999959],[107.27281960000005,-6.130534299999965],[107.27063,-6.129683199999931],[107.26938640000009,-6.115561199999945],[107.26532760000003,-6.111335899999972],[107.26245130000007,-6.111018899999976],[107.25147260000006,-6.116168199999947],[107.24850480000003,-6.116098099999931],[107.24815380000007,-6.103693699999951],[107.24679580000009,-6.101092],[107.24334730000004,-6.100956599999961],[107.23748790000008,-6.104367399999944],[107.23014080000007,-6.102629799999931],[107.221634,-6.103863399999966],[107.21173110000007,-6.099679099999946],[107.20256060000008,-6.093543199999942],[107.18912520000003,-6.089252599999952],[107.18704240000005,-6.086324399999967],[107.18806470000004,-6.079007799999943],[107.18568430000005,-6.0765602],[107.18215190000006,-6.077293599999962],[107.17701740000007,-6.081719599999929],[107.171898,-6.0759265],[107.15963760000005,-6.067674299999965],[107.15682240000007,-6.067925099999968],[107.15156570000005,-6.072830799999963],[107.143593,-6.0713045],[107.14041150000008,-6.063615],[107.14054120000009,-6.057171],[107.13892380000004,-6.057297399999925],[107.13442250000008,-6.063488599999971],[107.13034070000003,-6.061526899999933],[107.13271350000008,-6.055733399999951],[107.13684860000006,-6.055627],[107.13616190000005,-6.049636],[107.12850970000005,-6.054610899999943],[107.12659470000006,-6.054319],[107.12435930000004,-6.050889599999948],[107.127823,-6.0473911],[107.12653370000004,-6.046107399999926],[107.12168140000006,-6.047082599999953],[107.11911790000005,-6.039592],[107.11329670000003,-6.0388447],[107.11132070000008,-6.028898399999946],[107.10513320000007,-6.028780099999949],[107.09929670000008,-6.025037899999973],[107.09609240000009,-6.027930899999944],[107.09394850000007,-6.027396799999963],[107.095009,-6.022052],[107.10157790000005,-6.016244599999936],[107.09965530000005,-6.014455399999974],[107.09355940000006,-6.014279],[107.09204120000004,-6.005757],[107.08461780000005,-6.002277499999934],[107.08834860000007,-5.995445399999937],[107.08750170000008,-5.992797],[107.08438130000008,-5.990820099999951],[107.08721940000004,-5.987206599999979],[107.08489240000006,-5.984919199999979],[107.08775340000005,-5.985330699999963],[107.08992020000005,-5.983525899999961],[107.08763140000008,-5.982266599999946],[107.08862320000009,-5.980072199999938],[107.08563250000009,-5.979469],[107.09003460000008,-5.976444899999933],[107.088463,-5.975605599999938],[107.09098830000005,-5.972685],[107.08949290000004,-5.968626599999936],[107.09713760000005,-5.961317199999939],[107.09358230000004,-5.957870199999945],[107.09529130000004,-5.955207],[107.09815230000004,-5.940092199999981]]]},"properties":{"shapeName":"Bekasi","shapeISO":"","shapeID":"22746128B50025902796811","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[107.73009680000007,-3.350987299999929],[107.72881420000004,-3.350185599999975],[107.72240110000007,-3.351788899999974],[107.72552750000006,-3.354915199999937],[107.72384410000006,-3.352670699999976],[107.732181,-3.352991299999928],[107.73009680000007,-3.350987299999929]]],[[[107.70484550000003,-3.340165299999967],[107.70292160000008,-3.337519899999961],[107.70083740000007,-3.338081099999954],[107.70147870000005,-3.342009],[107.70484550000003,-3.340165299999967]]],[[[107.69041620000007,-3.331106899999952],[107.69009560000006,-3.329824299999927],[107.68937410000007,-3.3313474],[107.69105750000006,-3.332068899999967],[107.69041620000007,-3.331106899999952]]],[[[107.21185290000005,-3.321986699999968],[107.21406110000004,-3.319382099999928],[107.21264560000009,-3.315418699999952],[107.21106020000008,-3.315192199999956],[107.209305,-3.317513599999927],[107.20992780000006,-3.320797599999935],[107.21185290000005,-3.321986699999968]]],[[[107.73402520000008,-3.2735754],[107.73258040000007,-3.272300599999937],[107.73326030000004,-3.270430899999951],[107.73096570000007,-3.271620699999971],[107.73096570000007,-3.272810499999935],[107.73402520000008,-3.2735754]]],[[[107.76219780000008,-3.252966499999957],[107.76491730000004,-3.250756899999942],[107.76406750000007,-3.249822],[107.76211280000007,-3.2487172],[107.75871340000003,-3.250162],[107.76219780000008,-3.252966499999957]]],[[[107.75437920000007,-3.247697399999936],[107.75293440000007,-3.247697399999936],[107.75344430000007,-3.248887199999956],[107.755314,-3.249057199999925],[107.75437920000007,-3.247697399999936]]],[[[107.60916390000006,-3.245777399999952],[107.60689560000009,-3.243407499999932],[107.60764040000004,-3.245980499999973],[107.60916390000006,-3.245777399999952]]],[[[107.67640520000003,-3.242555799999934],[107.67360070000007,-3.237541699999952],[107.67377070000003,-3.242300799999953],[107.67623530000009,-3.243490599999973],[107.67640520000003,-3.242555799999934]]],[[[107.56569630000007,-3.237004399999933],[107.56332020000008,-3.238826099999926],[107.56221130000006,-3.242865499999937],[107.56609230000004,-3.2457961],[107.569102,-3.242152699999963],[107.56799320000005,-3.237479699999938],[107.56569630000007,-3.237004399999933]]],[[[107.723402,-3.2287882],[107.72195730000004,-3.224878899999965],[107.72170230000006,-3.227938299999948],[107.723402,-3.2287882]]],[[[107.52344110000007,-3.192353299999979],[107.522154,-3.192056299999933],[107.51888680000008,-3.196907499999952],[107.51680770000007,-3.196907499999952],[107.51967890000009,-3.233044199999938],[107.51651070000008,-3.250073099999952],[107.51769880000006,-3.253142199999957],[107.522649,-3.254627299999925],[107.52453010000005,-3.252746199999933],[107.52423310000006,-3.2506671],[107.52641120000004,-3.250865099999942],[107.52492610000007,-3.248786],[107.52561920000005,-3.245914899999946],[107.53037140000004,-3.246409899999946],[107.53056940000005,-3.238984499999958],[107.53621270000008,-3.239875599999948],[107.53938080000006,-3.238192499999968],[107.53997490000006,-3.234232299999974],[107.542648,-3.233539299999961],[107.54492510000006,-3.227797],[107.54423210000004,-3.221658699999978],[107.54829130000007,-3.215025399999945],[107.55086540000008,-3.215025399999945],[107.54957830000006,-3.210867199999939],[107.55205340000003,-3.202451799999949],[107.53700470000007,-3.200273699999968],[107.52680720000006,-3.192650299999968],[107.52344110000007,-3.192353299999979]]],[[[107.85116330000005,-3.103585499999951],[107.84973260000004,-3.098149199999966],[107.84772980000008,-3.098006099999964],[107.83986140000007,-3.103871599999934],[107.83971830000007,-3.109880199999964],[107.843581,-3.110309399999949],[107.85116330000005,-3.123185],[107.85617040000005,-3.127047599999969],[107.85803020000009,-3.122040499999969],[107.855169,-3.1127415],[107.86132060000006,-3.110309399999949],[107.86275130000007,-3.107162],[107.85602740000007,-3.1010104],[107.855312,-3.103728599999954],[107.85316610000007,-3.10473],[107.85116330000005,-3.103585499999951]]],[[[107.36177860000004,-3.081783499999972],[107.36130570000006,-3.078236899999979],[107.35976890000006,-3.082729299999926],[107.36177860000004,-3.081783499999972]]],[[[107.49508450000008,-3.061251599999935],[107.49556960000007,-3.060160099999962],[107.49338660000006,-3.060099499999978],[107.49508450000008,-3.061251599999935]]],[[[107.36816250000004,-3.062040799999977],[107.36768960000006,-3.0580213],[107.366271,-3.061449699999969],[107.36745320000006,-3.062868299999934],[107.36816250000004,-3.062040799999977]]],[[[107.359296,-3.060031],[107.35917780000005,-3.053292499999941],[107.35775910000007,-3.056011599999977],[107.359296,-3.060031]]],[[[107.39370310000004,-3.057937199999969],[107.39512170000006,-3.052971899999932],[107.39192980000007,-3.051080399999933],[107.39051110000008,-3.052971899999932],[107.39110220000003,-3.055809199999942],[107.39370310000004,-3.057937199999969]]],[[[107.56633540000007,-3.053126],[107.56742690000004,-3.052883399999928],[107.56682050000006,-3.050821699999972],[107.56481940000003,-3.052458899999976],[107.56633540000007,-3.053126]]],[[[107.35042950000008,-3.047499699999946],[107.34841970000008,-3.045608199999947],[107.34865620000005,-3.047499699999946],[107.35042950000008,-3.047499699999946]]],[[[107.38636840000004,-3.046790399999963],[107.38376750000003,-3.043598399999951],[107.38270360000007,-3.047145],[107.38577730000009,-3.057075499999939],[107.38636840000004,-3.046790399999963]]],[[[107.56099920000008,-3.054763199999968],[107.56166620000005,-3.048153599999978],[107.55687570000003,-3.038815199999931],[107.55499590000005,-3.041180099999963],[107.557664,-3.053307899999936],[107.55875550000007,-3.054823899999974],[107.56099920000008,-3.054763199999968]]],[[[107.50739420000008,-3.035601299999939],[107.50909210000003,-3.035298099999977],[107.50678780000004,-3.033418299999937],[107.506424,-3.035783199999969],[107.50739420000008,-3.035601299999939]]],[[[107.152276,-3.037385499999971],[107.15393170000004,-3.035522899999933],[107.15351780000009,-3.033246199999951],[107.15124120000007,-3.032211399999937],[107.14772280000005,-3.0334532],[107.146481,-3.036971599999958],[107.14772280000005,-3.038627299999973],[107.14979240000008,-3.039248199999975],[107.152276,-3.037385499999971]]],[[[107.49945050000008,-3.025717099999952],[107.49763130000008,-3.025838399999941],[107.49544830000008,-3.029476699999975],[107.49544830000008,-3.033721499999956],[107.49211320000006,-3.027718199999924],[107.49035460000005,-3.027415],[107.48732270000005,-3.031174599999929],[107.48738330000003,-3.045849299999929],[107.492477,-3.052519599999926],[107.49581210000008,-3.05161],[107.49981430000008,-3.046091799999942],[107.50242180000004,-3.044939699999929],[107.50351330000007,-3.041180099999963],[107.50430160000008,-3.035540599999933],[107.49945050000008,-3.025717099999952]]],[[[107.172787,-3.0311342],[107.17609850000008,-3.028029699999934],[107.17092430000008,-3.024925199999927],[107.16616410000006,-3.026787899999931],[107.16492230000006,-3.029478399999959],[107.16595710000007,-3.031962],[107.16926860000007,-3.032582899999966],[107.172787,-3.0311342]]],[[[107.54929580000004,-3.033539599999926],[107.54668830000008,-3.031174599999929],[107.54462660000007,-3.024565],[107.54171590000004,-3.026384099999973],[107.54195850000008,-3.032326799999964],[107.54868940000006,-3.040513],[107.55129690000007,-3.03548],[107.54929580000004,-3.033539599999926]]],[[[107.50848140000005,-3.022018199999934],[107.510014,-3.017701799999941],[107.50685540000006,-3.003299199999958],[107.49786850000004,-2.998543],[107.49842340000004,-3.005910899999947],[107.50352770000006,-3.017388599999947],[107.50629560000004,-3.021423299999981],[107.50848140000005,-3.022018199999934]]],[[[107.50499980000006,-2.999568099999976],[107.50336620000007,-2.998169],[107.50375660000009,-2.999709899999971],[107.50499980000006,-2.999568099999976]]],[[[107.27412530000004,-2.997541499999954],[107.27176420000006,-2.995237599999939],[107.27026610000007,-2.997686399999964],[107.27184850000003,-3.001298199999951],[107.27461230000006,-3.001411799999971],[107.27412530000004,-2.997541499999954]]],[[[107.10635250000007,-2.991126899999927],[107.10452,-2.986876],[107.10330570000008,-2.988469299999963],[107.10431660000006,-2.991180099999951],[107.10635250000007,-2.991126899999927]]],[[[107.23466810000008,-2.986717299999953],[107.22825220000004,-2.987545199999943],[107.22638950000004,-2.990856599999972],[107.22908010000003,-2.9966516],[107.23425420000007,-2.997686399999964],[107.23735870000007,-2.991684499999963],[107.24253280000005,-2.98858],[107.24191190000005,-2.986924299999941],[107.23466810000008,-2.986717299999953]]],[[[107.55676920000008,-2.985773699999925],[107.55882280000009,-2.981908099999941],[107.55701080000006,-2.981787299999951],[107.55459480000007,-2.984686499999953],[107.55676920000008,-2.985773699999925]]],[[[107.55942680000004,-2.979492099999959],[107.55640680000005,-2.9803377],[107.56003080000005,-2.9816665],[107.55942680000004,-2.979492099999959]]],[[[107.13121770000004,-2.988180299999954],[107.13356140000008,-2.987529299999949],[107.13512380000009,-2.983590599999957],[107.13369160000008,-2.9794241],[107.13147810000004,-2.979651899999965],[107.12991480000005,-2.981816699999968],[107.12936220000006,-2.988147699999956],[107.13121770000004,-2.988180299999954]]],[[[107.50793010000007,-2.986142599999937],[107.50525250000004,-2.980960299999936],[107.50525250000004,-2.975691499999925],[107.50171120000005,-2.969904499999927],[107.49946550000004,-2.971113699999933],[107.49894730000005,-2.973964],[107.50084750000008,-2.975346],[107.49963830000007,-2.978714599999932],[107.501193,-2.980442],[107.50024290000005,-2.982083099999954],[107.501193,-2.987956499999939],[107.50266130000006,-2.988215599999933],[107.50369780000005,-2.991325],[107.50179760000009,-2.993829799999958],[107.50205670000008,-2.997112],[107.50516610000005,-2.996939299999951],[107.50732550000004,-2.998753099999931],[107.50939840000007,-2.997198399999945],[107.50732550000004,-2.991065899999967],[107.50793010000007,-2.986142599999937]]],[[[107.53212610000008,-2.968016199999965],[107.53007250000007,-2.967533],[107.52838130000004,-2.969465699999944],[107.51630140000009,-2.971760899999936],[107.51763020000004,-2.983961699999952],[107.51932140000008,-2.987344099999973],[107.51883820000006,-2.996162399999946],[107.52004620000008,-2.998940799999957],[107.52379090000005,-3.000269599999967],[107.52354930000007,-3.002323199999978],[107.52584450000006,-3.0053432],[107.53357570000009,-2.986136099999953],[107.53140130000008,-2.9784049],[107.53188450000005,-2.973089699999946],[107.53357570000009,-2.971398499999964],[107.53212610000008,-2.968016199999965]]],[[[107.51509340000007,-2.962097],[107.51557660000009,-2.9605266],[107.51364380000007,-2.960768199999961],[107.51328140000004,-2.963667399999963],[107.51485180000009,-2.964633799999945],[107.51388540000005,-2.967653799999937],[107.516543,-2.970432099999925],[107.52995170000008,-2.966566599999965],[107.52765650000003,-2.963909],[107.52234130000005,-2.962097],[107.51509340000007,-2.962097]]],[[[107.53342470000007,-2.959258199999965],[107.52995170000008,-2.959258199999965],[107.52859270000005,-2.961070199999938],[107.53493470000006,-2.9645432],[107.53810570000007,-2.9639392],[107.53342470000007,-2.959258199999965]]],[[[107.22825220000004,-2.964986],[107.23094270000007,-2.962088499999936],[107.235082,-2.960846699999934],[107.23632380000004,-2.9569144],[107.22245720000006,-2.962502399999948],[107.22266410000009,-2.964365099999952],[107.22825220000004,-2.964986]]],[[[107.52036780000009,-2.951161599999978],[107.51941770000008,-2.949434099999962],[107.51933130000003,-2.951420699999971],[107.52036780000009,-2.951161599999978]]],[[[107.43147690000006,-2.938013699999942],[107.43209650000006,-2.935767399999975],[107.42977280000008,-2.937239099999942],[107.43147690000006,-2.938013699999942]]],[[[107.51656740000004,-2.934146099999964],[107.51769020000006,-2.933196],[107.51691290000008,-2.932332299999928],[107.51483990000008,-2.933800599999927],[107.51553090000004,-2.936391799999967],[107.51354430000004,-2.936305399999981],[107.51483990000008,-2.944165399999974],[107.51622190000006,-2.944165399999974],[107.51751750000005,-2.947361199999932],[107.51993590000006,-2.947274799999946],[107.52174980000007,-2.950211499999966],[107.52580930000005,-2.951679799999965],[107.52935060000004,-2.950902499999927],[107.53030070000005,-2.944856399999935],[107.52650030000007,-2.937946499999953],[107.52071330000007,-2.934059699999978],[107.51656740000004,-2.934146099999964]]],[[[107.43364570000006,-2.9256205],[107.43341330000004,-2.922832],[107.43186410000004,-2.926317599999948],[107.43364570000006,-2.9256205]]],[[[107.46900490000007,-2.925426899999934],[107.46877260000008,-2.923645299999976],[107.46679740000008,-2.922832],[107.45595340000006,-2.926085199999932],[107.44867240000008,-2.928796199999965],[107.44673590000008,-2.931197399999974],[107.43891280000008,-2.932669099999941],[107.43225140000004,-2.938943199999926],[107.43077970000007,-2.942351299999928],[107.43163180000005,-2.947308599999928],[107.42868840000006,-2.946069199999954],[107.426597,-2.950561799999946],[107.42768140000004,-2.952343299999939],[107.42528030000005,-2.956990699999949],[107.427604,-2.957997699999964],[107.42837860000009,-2.960089],[107.43713120000007,-2.952653099999964],[107.43534970000007,-2.955906299999981],[107.436744,-2.9573006],[107.43325840000006,-2.958152599999949],[107.42741030000008,-2.967486199999939],[107.42795250000006,-2.970584499999973],[107.43275490000008,-2.9717463],[107.42880460000003,-2.972985699999981],[107.42996640000007,-2.975851599999942],[107.43360690000009,-2.974070099999949],[107.43391680000008,-2.9775556],[107.43229020000007,-2.979337199999975],[107.43407170000006,-2.980111699999952],[107.43755730000004,-2.977323299999966],[107.43833180000007,-2.978097799999944],[107.43593060000006,-2.980963799999927],[107.43647290000007,-2.984139499999969],[107.44437350000004,-2.985998499999937],[107.45033770000003,-2.981738299999961],[107.45297130000006,-2.981970699999977],[107.456147,-2.978872399999943],[107.45723140000007,-2.975464299999942],[107.45436550000005,-2.972908199999949],[107.46032970000005,-2.972830699999975],[107.46288580000004,-2.970042299999932],[107.46133670000006,-2.9663243],[107.460291,-2.967137599999944],[107.456573,-2.964116799999942],[107.46455110000005,-2.967215099999976],[107.46532570000005,-2.965898299999935],[107.46416390000007,-2.963419699999974],[107.46610030000005,-2.961483199999975],[107.46517080000007,-2.960863599999925],[107.46052340000006,-2.962490199999934],[107.45626320000008,-2.961483199999975],[107.46354420000006,-2.960863599999925],[107.46517080000007,-2.955519],[107.46160780000008,-2.954899399999931],[107.46075570000005,-2.952730599999938],[107.465713,-2.952653099999964],[107.46540320000008,-2.9495548],[107.46904370000004,-2.945759399999929],[107.47175470000008,-2.945217199999945],[107.469857,-2.931003799999928],[107.46768820000005,-2.928989899999976],[107.46900490000007,-2.925426899999934]]],[[[107.48771090000008,-2.930267899999933],[107.48871780000007,-2.921360299999947],[107.48724610000005,-2.9194239],[107.48469,-2.920895599999938],[107.48012010000008,-2.930267899999933],[107.48143680000004,-2.932049499999948],[107.47934550000008,-2.932281799999942],[107.482134,-2.945062299999961],[107.48469,-2.942118899999969],[107.48771090000008,-2.930267899999933]]],[[[107.472971,-2.8460625],[107.47280670000004,-2.8445837],[107.47113070000006,-2.845503899999926],[107.472971,-2.8460625]]],[[[107.50630060000009,-2.843283299999939],[107.50033640000004,-2.843903],[107.49785780000008,-2.847388599999931],[107.49855490000004,-2.849634799999933],[107.49460460000006,-2.850641799999948],[107.49034440000008,-2.858619899999951],[107.48306340000005,-2.863422199999945],[107.49080920000006,-2.87659],[107.49429480000003,-2.8758929],[107.49692830000004,-2.862028],[107.50235030000005,-2.856915799999967],[107.50389950000005,-2.849325],[107.50661050000008,-2.846691499999963],[107.50630060000009,-2.843283299999939]]],[[[107.47583010000005,-2.833443199999977],[107.47556720000006,-2.831635799999958],[107.47418690000006,-2.831865799999946],[107.47474560000006,-2.833706099999972],[107.47583010000005,-2.833443199999977]]],[[[107.59331370000007,-2.832063499999947],[107.59328530000005,-2.830813],[107.59160850000006,-2.831921399999942],[107.59277370000007,-2.833427599999936],[107.59331370000007,-2.832063499999947]]],[[[107.59032960000008,-2.831836099999975],[107.58937980000007,-2.830498499999976],[107.58757290000005,-2.8314382],[107.58950550000009,-2.832774],[107.58851080000005,-2.834507599999938],[107.59058540000007,-2.833740199999966],[107.59032960000008,-2.831836099999975]]],[[[107.58936340000008,-2.826635299999964],[107.58627040000005,-2.826611799999966],[107.58678860000003,-2.829030199999977],[107.58946620000006,-2.828771099999926],[107.58936340000008,-2.826635299999964]]],[[[107.48984580000007,-2.820414099999937],[107.48427860000004,-2.820898199999931],[107.47810620000007,-2.824892099999943],[107.48113190000004,-2.837963],[107.48669910000007,-2.844256399999949],[107.48911960000004,-2.842077899999936],[107.490572,-2.834937299999979],[107.49287150000004,-2.834574199999963],[107.49178220000005,-2.831185499999947],[107.49347660000006,-2.828038799999945],[107.49759150000006,-2.825497199999973],[107.499649,-2.826707499999941],[107.50073820000006,-2.825134099999957],[107.50642650000009,-2.827312599999971],[107.50618450000007,-2.82465],[107.50364290000005,-2.821866399999976],[107.49589720000006,-2.821503299999961],[107.495171,-2.822471499999949],[107.48984580000007,-2.820414099999937]]],[[[107.46434450000004,-2.821596199999931],[107.45810060000008,-2.8200845],[107.45560310000008,-2.8268543],[107.44684510000008,-2.828415199999938],[107.44467620000006,-2.8273308],[107.44185,-2.828020899999956],[107.43853080000008,-2.825589],[107.42382480000003,-2.826131299999929],[107.41470540000006,-2.831011399999966],[107.40967730000006,-2.835973699999954],[107.39993350000009,-2.837666099999979],[107.39487270000006,-2.844238599999926],[107.38815220000004,-2.849480299999925],[107.38069240000004,-2.847607099999948],[107.37735680000009,-2.856397899999934],[107.37167160000007,-2.863792],[107.36655930000006,-2.864886],[107.36835660000008,-2.8694448],[107.37351480000007,-2.869220599999949],[107.37798730000009,-2.876001499999973],[107.37653530000006,-2.882458],[107.37145860000004,-2.885458299999925],[107.36891180000003,-2.884705799999949],[107.36624930000005,-2.8811751],[107.351779,-2.877239199999963],[107.34147620000005,-2.879033499999935],[107.33869790000006,-2.880712],[107.33869790000006,-2.882216899999946],[107.34367570000006,-2.886789499999963],[107.35507820000004,-2.888120799999967],[107.35733560000006,-2.890320299999928],[107.35502040000006,-2.8935037],[107.35739350000006,-2.898655199999951],[107.36503380000005,-2.907800399999928],[107.37585760000007,-2.911794199999974],[107.38069060000004,-2.916511499999956],[107.38323740000004,-2.916337799999951],[107.39319290000009,-2.931502699999953],[107.40039910000007,-2.935178099999973],[107.40578210000007,-2.941660799999966],[107.409718,-2.942644799999925],[107.41185960000007,-2.941776599999969],[107.412149,-2.942876299999966],[107.409718,-2.944554899999957],[107.41226480000006,-2.945249399999966],[107.41614280000005,-2.940155899999979],[107.41828440000006,-2.940040099999976],[107.42268340000004,-2.931184299999927],[107.42447770000007,-2.930374],[107.41851590000005,-2.928232399999956],[107.41434850000007,-2.9248753],[107.41348030000006,-2.928753299999926],[107.41238050000004,-2.928348199999959],[107.41029680000008,-2.9204184],[107.41110710000004,-2.918103199999962],[107.41724250000004,-2.918508399999951],[107.41787920000007,-2.926785399999972],[107.42152570000007,-2.926380199999926],[107.42343580000005,-2.928232399999956],[107.430701,-2.929924099999937],[107.43202960000008,-2.927423199999964],[107.43097460000007,-2.925860199999931],[107.42878630000007,-2.926798],[107.42870820000007,-2.925508499999978],[107.43269390000006,-2.9233984],[107.43245940000008,-2.9212884],[107.43562460000004,-2.920663199999979],[107.43929770000005,-2.922148],[107.44666340000003,-2.917126799999949],[107.45123530000006,-2.916618799999981],[107.45260290000004,-2.915055799999948],[107.45502560000006,-2.915876399999945],[107.45908950000006,-2.914782299999956],[107.46864350000004,-2.908119899999974],[107.47176950000005,-2.902883699999961],[107.47083170000008,-2.899874899999929],[107.46598630000005,-2.897295899999961],[107.46149260000004,-2.897295899999961],[107.46459910000004,-2.895596099999977],[107.47198440000005,-2.8962604],[107.47620460000007,-2.8907117],[107.474368,-2.885788199999979],[107.475892,-2.884498699999938],[107.47114430000005,-2.878461499999958],[107.47727920000005,-2.878578699999935],[107.477201,-2.875491699999941],[107.47516910000007,-2.872990899999934],[107.47663440000008,-2.866367599999933],[107.47808020000008,-2.865586099999973],[107.47675170000008,-2.864296599999932],[107.47724010000007,-2.859392599999978],[107.48087410000005,-2.855016099999943],[107.484938,-2.8529842],[107.485954,-2.849740899999972],[107.48439090000005,-2.846536699999945],[107.46975710000004,-2.847455],[107.46448190000007,-2.851167199999963],[107.451626,-2.855778099999952],[107.45125860000007,-2.854203699999971],[107.45213350000006,-2.855448799999976],[107.45262150000008,-2.854052299999978],[107.45453960000003,-2.854708499999958],[107.45494340000005,-2.853446499999961],[107.46399570000005,-2.850636599999973],[107.46820590000004,-2.844813699999975],[107.47438410000007,-2.844189399999948],[107.474647,-2.8420861],[107.479675,-2.844255099999941],[107.47228090000004,-2.831142799999952],[107.47366110000007,-2.829368299999942],[107.47208370000004,-2.825589],[107.46833740000005,-2.821744099999933],[107.46434450000004,-2.821596199999931]]],[[[107.37357080000004,-2.803782199999944],[107.37216670000004,-2.801676099999952],[107.36574820000004,-2.804383899999948],[107.36955920000008,-2.806389699999954],[107.37357080000004,-2.803782199999944]]],[[[107.416835,-2.791084799999965],[107.41622560000008,-2.7900323],[107.416004,-2.792414399999927],[107.40985490000008,-2.793799299999932],[107.407639,-2.796735399999932],[107.40187770000006,-2.796569199999965],[107.40148990000006,-2.793079099999943],[107.40043740000004,-2.7929684],[107.39777830000008,-2.796347599999933],[107.38722520000005,-2.797483199999931],[107.38269390000005,-2.8004691],[107.38272230000007,-2.8026531],[107.38507640000006,-2.801915699999938],[107.385899,-2.804383299999927],[107.38813970000007,-2.805631299999959],[107.39769810000007,-2.804184699999951],[107.402137,-2.809502799999962],[107.40168320000004,-2.813190099999929],[107.39789670000005,-2.817969299999959],[107.396989,-2.816409299999975],[107.39545740000005,-2.817260199999964],[107.39344360000007,-2.814282099999957],[107.39171350000004,-2.816040599999951],[107.38796950000005,-2.813431199999968],[107.38649460000005,-2.816097299999967],[107.37947470000006,-2.816593699999942],[107.37204350000007,-2.81943],[107.37065370000005,-2.821216899999968],[107.37119260000009,-2.823117299999979],[107.37584420000007,-2.824563799999964],[107.38092120000005,-2.823088899999959],[107.38147430000004,-2.827924799999948],[107.38397030000004,-2.828009899999927],[107.38762910000008,-2.831385199999943],[107.40069050000005,-2.834008799999935],[107.41182310000005,-2.829144499999927],[107.41281580000003,-2.827556099999924],[107.43252830000006,-2.819983099999945],[107.43550650000009,-2.816012199999932],[107.43060110000005,-2.805571199999974],[107.42470130000004,-2.804657199999951],[107.42403660000008,-2.801554899999928],[107.42132210000005,-2.799505199999942],[107.42276240000007,-2.798341899999969],[107.42165450000005,-2.7979541],[107.42093430000006,-2.792913],[107.41899540000009,-2.790475499999957],[107.416835,-2.791084799999965]]],[[[107.535649,-2.778491799999927],[107.53012810000007,-2.778467],[107.529406,-2.782385499999975],[107.53393880000004,-2.781457699999976],[107.53607080000006,-2.782187499999964],[107.53589080000006,-2.783412],[107.540578,-2.783524299999954],[107.535649,-2.778491799999927]]],[[[107.59676770000004,-2.7707689],[107.59499250000005,-2.771038699999963],[107.59545020000007,-2.7730132],[107.59635670000006,-2.772859299999936],[107.59525750000006,-2.771266099999934],[107.59797970000005,-2.772095899999954],[107.59676770000004,-2.7707689]]],[[[107.60417610000007,-2.772082199999943],[107.60300110000009,-2.770375199999933],[107.60137840000004,-2.771290599999929],[107.60251410000006,-2.772275799999932],[107.59658420000005,-2.773238699999979],[107.60338550000006,-2.773375599999952],[107.60417610000007,-2.772082199999943]]],[[[107.59611250000006,-2.764843799999937],[107.59312910000006,-2.765496199999973],[107.59713880000004,-2.767652799999951],[107.59509670000006,-2.766821499999935],[107.59604740000009,-2.769630699999936],[107.60043520000005,-2.771900499999958],[107.59846760000005,-2.770613099999935],[107.60269820000008,-2.770071899999948],[107.60243140000006,-2.769008799999938],[107.59668840000006,-2.769021499999951],[107.60087830000003,-2.767188699999963],[107.603756,-2.770031599999925],[107.60295490000004,-2.766538299999979],[107.59611250000006,-2.764843799999937]]],[[[107.90935390000004,-2.570704499999977],[107.90858810000009,-2.568789899999956],[107.90629050000007,-2.5700344],[107.90935390000004,-2.570704499999977]]],[[[107.62444440000007,-2.564743599999929],[107.62314270000007,-2.566618099999971],[107.62480890000006,-2.569117399999925],[107.62850580000008,-2.569794299999955],[107.62746440000006,-2.565368399999954],[107.62444440000007,-2.564743599999929]]],[[[107.645949,-2.563337799999942],[107.64636550000006,-2.560265699999945],[107.64428280000004,-2.562660899999969],[107.645949,-2.563337799999942]]],[[[107.64678210000005,-2.551830499999937],[107.64464730000009,-2.551882499999977],[107.64626140000007,-2.552976],[107.64678210000005,-2.551830499999937]]],[[[107.70597890000005,-2.550731299999939],[107.70621150000005,-2.549277299999972],[107.70475750000008,-2.549626199999977],[107.70597890000005,-2.550731299999939]]],[[[107.67021320000003,-2.550580799999977],[107.67057770000008,-2.548966699999937],[107.66917180000007,-2.5497998],[107.67021320000003,-2.550580799999977]]],[[[107.65282210000004,-2.550008099999957],[107.65136420000005,-2.545530099999951],[107.64975,-2.545217699999966],[107.64865660000004,-2.547196299999939],[107.64980210000004,-2.5478732],[107.64933350000007,-2.550164299999949],[107.65292620000008,-2.551205599999946],[107.65282210000004,-2.550008099999957]]],[[[107.79650560000005,-2.543956199999968],[107.795774,-2.541894699999943],[107.794976,-2.5428257],[107.79650560000005,-2.543956199999968]]],[[[107.92188170000009,-2.544110599999954],[107.92294760000004,-2.541793899999959],[107.92144190000005,-2.541847599999926],[107.92188170000009,-2.544110599999954]]],[[[107.91903740000004,-2.542696199999966],[107.91926560000007,-2.540587799999969],[107.91645440000008,-2.540079],[107.91662940000003,-2.5419854],[107.91903740000004,-2.542696199999966]]],[[[107.64933350000007,-2.541260399999942],[107.64955070000008,-2.539450599999952],[107.64787550000005,-2.5412084],[107.64933350000007,-2.541260399999942]]],[[[107.64848110000008,-2.5401681],[107.648717,-2.5390164],[107.64678210000005,-2.539177699999925],[107.64848110000008,-2.5401681]]],[[[107.86208980000004,-2.539876899999967],[107.859758,-2.537950699999953],[107.85519590000007,-2.5429183],[107.85610840000004,-2.546162399999957],[107.85884560000005,-2.5487983],[107.86437080000007,-2.548849],[107.87040290000004,-2.544286899999975],[107.87060570000006,-2.539319299999931],[107.86208980000004,-2.539876899999967]]],[[[107.62214,-2.535869099999957],[107.61879570000008,-2.5360872],[107.61814140000007,-2.537977399999932],[107.621413,-2.537395799999956],[107.62214,-2.535869099999957]]],[[[107.84515940000006,-2.535973799999965],[107.84541280000008,-2.533996899999977],[107.84375310000007,-2.535449],[107.84515940000006,-2.535973799999965]]],[[[107.83913290000004,-2.532655099999943],[107.83705480000003,-2.531927799999949],[107.83649120000007,-2.53372],[107.84202410000006,-2.533507199999974],[107.83913290000004,-2.532655099999943]]],[[[107.93794330000009,-2.5698185],[107.93708090000007,-2.565204799999947],[107.92941430000008,-2.565051399999959],[107.92972090000006,-2.5621381],[107.92642430000006,-2.559991499999967],[107.925811,-2.561678099999938],[107.92335760000009,-2.560834799999952],[107.92036760000008,-2.564438099999961],[107.919831,-2.572181399999977],[107.91262430000006,-2.571338099999934],[107.90802440000004,-2.575478099999941],[107.90288770000006,-2.574711399999956],[107.89644770000007,-2.567044799999962],[107.88368280000009,-2.567543099999966],[107.86873290000005,-2.559799799999951],[107.85876620000005,-2.5578065],[107.85178960000007,-2.557959799999935],[107.84220630000004,-2.555353199999956],[107.841248,-2.556848199999934],[107.838488,-2.556081499999948],[107.82813430000004,-2.549985899999967],[107.82806670000008,-2.546201399999973],[107.82583660000006,-2.543430599999965],[107.82678270000008,-2.539713699999936],[107.83306770000007,-2.536334699999941],[107.83340560000005,-2.531739199999947],[107.83104020000007,-2.531131],[107.83036440000006,-2.5289684],[107.82766120000008,-2.53032],[107.82137630000005,-2.530117299999972],[107.82036260000007,-2.528089899999941],[107.82002470000003,-2.5295767],[107.81840280000006,-2.529171199999951],[107.8182,-2.527211399999942],[107.81556440000008,-2.526332799999977],[107.81259090000009,-2.535118199999943],[107.80441370000005,-2.540592199999935],[107.79677710000004,-2.543565699999931],[107.79704740000005,-2.544444299999952],[107.79468210000005,-2.546539299999949],[107.79224920000007,-2.547620599999959],[107.79272230000004,-2.545728299999951],[107.78805930000004,-2.5478909],[107.77880080000006,-2.5490397],[107.77248210000005,-2.554479899999933],[107.77018430000004,-2.555426099999977],[107.76761630000004,-2.554074499999956],[107.76768390000007,-2.555696399999931],[107.76389940000007,-2.557183099999975],[107.73014310000008,-2.556473599999947],[107.72737390000009,-2.555035799999928],[107.72867970000004,-2.5512614],[107.71838490000005,-2.546677],[107.71846530000005,-2.548607199999935],[107.71452430000005,-2.549652799999933],[107.71372,-2.551341799999932],[107.71243320000008,-2.549733199999935],[107.71235270000005,-2.551985199999933],[107.70455120000008,-2.558902099999955],[107.69783540000009,-2.561516],[107.69124020000004,-2.561435599999925],[107.68786220000004,-2.564089699999954],[107.67620010000007,-2.563124599999981],[107.66912240000005,-2.557977199999925],[107.66857950000008,-2.554056299999957],[107.66415590000008,-2.558178199999929],[107.65802330000008,-2.558982499999956],[107.65841690000008,-2.561874399999965],[107.65507410000004,-2.567800099999943],[107.650993,-2.568652899999961],[107.65126710000004,-2.574835399999927],[107.65017070000005,-2.576541],[107.64816060000004,-2.578611899999942],[107.64401860000004,-2.579769299999953],[107.64602870000004,-2.583606699999962],[107.64371410000007,-2.5881142],[107.64091210000004,-2.588053199999933],[107.64097310000005,-2.590246099999945],[107.63631330000004,-2.5929566],[107.62839480000008,-2.594723099999953],[107.62705470000009,-2.6020325],[107.62778570000006,-2.605139],[107.63296320000006,-2.605809],[107.63905430000005,-2.613666599999931],[107.64361540000004,-2.615469699999949],[107.64537080000008,-2.6206386],[107.64420050000007,-2.6241495],[107.64585850000009,-2.625709899999947],[107.642055,-2.631463899999972],[107.63815390000008,-2.6322441],[107.63864160000008,-2.634097099999963],[107.64176240000006,-2.635950099999945],[107.64244510000009,-2.6398511],[107.64010440000004,-2.642776899999944],[107.64049460000007,-2.644727399999965],[107.63308260000008,-2.649408599999958],[107.63366780000007,-2.645605099999955],[107.63142470000008,-2.645605099999955],[107.63122960000004,-2.654967599999964],[107.62838040000008,-2.665111099999933],[107.6313,-2.673202599999968],[107.62913120000007,-2.674036699999931],[107.62963170000006,-2.678541299999949],[107.62771310000005,-2.678374499999961],[107.62821360000004,-2.6813775],[107.62554420000004,-2.68388],[107.625294,-2.6889685],[107.62128990000008,-2.689469],[107.619705,-2.694390699999929],[107.61786980000005,-2.694390699999929],[107.61495020000007,-2.701731399999971],[107.61228080000006,-2.701814799999966],[107.61286470000005,-2.704734499999972],[107.61136320000008,-2.705068099999949],[107.61478330000006,-2.707237],[107.62218310000009,-2.706392499999936],[107.62838370000009,-2.714531199999954],[107.62905610000007,-2.726900499999942],[107.62250180000007,-2.747514899999942],[107.62558270000005,-2.744395499999939],[107.62619020000005,-2.747027899999978],[107.62748790000006,-2.746897499999932],[107.62836670000007,-2.743402899999978],[107.629667,-2.744326899999976],[107.62836670000007,-2.746978599999977],[107.62955290000008,-2.745211299999937],[107.63060530000007,-2.746236499999952],[107.63104780000003,-2.742544499999951],[107.63206830000007,-2.746082499999943],[107.63228240000007,-2.744100499999945],[107.63605080000008,-2.7445627],[107.63627120000007,-2.7462828],[107.639511,-2.746948299999929],[107.63949910000008,-2.745217],[107.64332960000007,-2.750976899999955],[107.64236930000004,-2.758772099999931],[107.64128240000008,-2.760107299999959],[107.641322,-2.758114699999965],[107.63899620000007,-2.761741799999925],[107.64194080000004,-2.769491799999969],[107.64094280000006,-2.773988499999973],[107.63826960000006,-2.777643499999954],[107.63794480000007,-2.798345799999936],[107.636828,-2.796428399999968],[107.63781660000006,-2.792648299999939],[107.63623260000008,-2.782132],[107.63999480000007,-2.768924499999969],[107.63724180000008,-2.761930399999926],[107.64145340000005,-2.752045099999975],[107.63818180000004,-2.748760299999958],[107.63456880000007,-2.748522399999956],[107.63315120000004,-2.749849899999958],[107.63041660000005,-2.748527699999954],[107.63098550000007,-2.749870499999929],[107.62691750000005,-2.750775499999975],[107.62496650000008,-2.753407399999958],[107.625855,-2.754991699999948],[107.62115320000004,-2.757980799999928],[107.61747340000005,-2.757480399999963],[107.61848720000006,-2.758555799999954],[107.613142,-2.761921799999925],[107.60446450000006,-2.764096299999949],[107.610222,-2.764737499999967],[107.61444720000009,-2.766786599999932],[107.61872850000009,-2.766982899999959],[107.61377950000008,-2.767102899999941],[107.61027130000008,-2.765245899999968],[107.61462330000006,-2.770200899999963],[107.60859040000008,-2.773023499999965],[107.59805650000004,-2.785546899999929],[107.59495460000005,-2.786783599999978],[107.59512640000008,-2.7878995],[107.59983220000004,-2.788702699999931],[107.59708580000006,-2.790648799999929],[107.59662010000005,-2.792666599999961],[107.59142030000004,-2.791968099999963],[107.58971290000005,-2.792977],[107.58750110000005,-2.791696499999944],[107.58424150000008,-2.7929382],[107.58105950000004,-2.796585799999946],[107.58362060000007,-2.799146899999926],[107.58944130000003,-2.799767799999927],[107.59231280000006,-2.801630399999965],[107.59122630000007,-2.804734799999949],[107.59518440000005,-2.805821299999934],[107.59580520000009,-2.809701799999971],[107.598832,-2.8146687],[107.59766780000007,-2.817540299999962],[107.59890960000007,-2.8197909],[107.59809470000005,-2.822856499999943],[107.59933640000008,-2.828832399999953],[107.59747380000005,-2.834885899999961],[107.59444710000008,-2.835584299999937],[107.59413660000007,-2.836826099999939],[107.59793950000005,-2.841094599999963],[107.59599920000005,-2.842957199999944],[107.59809470000005,-2.845052599999974],[107.59770660000004,-2.846682399999963],[107.59549480000004,-2.847574899999927],[107.59766780000007,-2.858285],[107.590683,-2.868606899999975],[107.57593190000006,-2.883831699999973],[107.56570260000007,-2.890248799999938],[107.54972340000006,-2.8972059],[107.53698450000007,-2.913820499999929],[107.52859780000006,-2.921],[107.53139340000007,-2.931229299999927],[107.53056740000005,-2.936756899999978],[107.53272760000004,-2.934342499999957],[107.53488780000004,-2.935041399999932],[107.53831880000007,-2.932436399999972],[107.54613360000008,-2.934914299999946],[107.55067640000004,-2.928401899999926],[107.559635,-2.924843899999928],[107.56370130000005,-2.9268135],[107.56376480000006,-2.930117399999972],[107.56541670000007,-2.931006899999943],[107.56795810000006,-2.924653299999932],[107.57875920000004,-2.915758299999936],[107.59086270000006,-2.911469699999941],[107.61202010000005,-2.912613299999975],[107.613545,-2.911978],[107.61487920000008,-2.907784599999957],[107.61958090000007,-2.905433799999969],[107.62252710000007,-2.9012755],[107.61963440000005,-2.906257899999957],[107.61500320000005,-2.908448299999975],[107.61450250000007,-2.915082199999972],[107.61077880000005,-2.926409899999953],[107.60865090000004,-2.928412599999945],[107.61184270000007,-2.9324805],[107.61459640000004,-2.930790699999932],[107.61603580000008,-2.931541799999934],[107.61647390000007,-2.933481899999947],[107.61393290000007,-2.9385413],[107.61380340000005,-2.934969599999931],[107.61575190000008,-2.934255099999973],[107.61490760000004,-2.931592099999932],[107.61224450000009,-2.933086],[107.61107540000006,-2.932696299999975],[107.60704840000005,-2.927954799999952],[107.60022840000005,-2.932046799999966],[107.59814990000007,-2.937178],[107.59866960000005,-2.940620399999943],[107.59464250000008,-2.94796],[107.59795510000004,-2.955624399999977],[107.59116760000006,-2.962184499999978],[107.59045310000005,-2.968809599999929],[107.58571160000008,-2.978422499999965],[107.58022320000003,-2.983229],[107.58074280000005,-2.984008399999937],[107.56846690000003,-2.983618699999965],[107.56443980000006,-2.988555],[107.56073760000004,-2.996609099999944],[107.56171180000007,-3.002649599999927],[107.56479710000008,-3.004338399999938],[107.56603120000005,-3.009794399999976],[107.56512180000004,-3.014730699999973],[107.56804470000009,-3.018562899999949],[107.56879160000005,-3.030514099999948],[107.57035050000007,-3.033891599999947],[107.57717040000006,-3.044413799999973],[107.580418,-3.045777799999939],[107.58428270000007,-3.050064599999928],[107.586556,-3.048895499999958],[107.58447750000005,-3.050649199999953],[107.58025560000004,-3.048116099999959],[107.58237040000006,-3.061638399999936],[107.58610210000006,-3.0723995],[107.58302130000004,-3.076912199999924],[107.58247890000007,-3.085677299999929],[107.586818,-3.091188],[107.58842350000003,-3.091101199999969],[107.59232880000008,-3.095049899999935],[107.59386920000009,-3.1053337],[107.59859890000007,-3.107373099999961],[107.60597540000003,-3.1060713],[107.60896940000003,-3.107980599999962],[107.61139940000004,-3.107633399999941],[107.60831860000008,-3.110453899999925],[107.61003250000005,-3.115747599999963],[107.62031630000007,-3.122777099999951],[107.62014280000005,-3.124686299999951],[107.62389610000008,-3.130847899999935],[107.62762780000008,-3.127853899999934],[107.63201040000007,-3.130978099999936],[107.63530810000009,-3.129155599999933],[107.635742,-3.131976099999974],[107.63769460000009,-3.128982099999973],[107.63483080000009,-3.128374599999972],[107.63448370000003,-3.126508799999954],[107.63578540000009,-3.1252504],[107.63470060000009,-3.122473299999967],[107.63747770000003,-3.123992],[107.64021140000006,-3.120303799999931],[107.64242430000007,-3.119913199999928],[107.64349950000008,-3.121115199999963],[107.64056520000008,-3.1206161],[107.63755630000009,-3.124673499999972],[107.635368,-3.12285],[107.63627980000007,-3.125995599999953],[107.63504890000007,-3.127226499999949],[107.63828570000004,-3.128685399999938],[107.636143,-3.132423599999925],[107.63463860000007,-3.131739799999934],[107.63504890000007,-3.129779499999927],[107.63190330000003,-3.131420699999978],[107.62675170000006,-3.128867699999944],[107.62789140000007,-3.133928099999935],[107.62643260000004,-3.1378487],[107.62996570000007,-3.142863499999976],[107.62700250000006,-3.151662199999976],[107.60681980000004,-3.173087],[107.60482610000008,-3.1809067],[107.59213090000009,-3.196939599999951],[107.58828660000006,-3.198489199999926],[107.58509790000005,-3.195389899999952],[107.58694560000004,-3.1995323],[107.58520220000008,-3.202989199999934],[107.58862930000004,-3.205313599999954],[107.59594540000006,-3.217919399999971],[107.59445540000007,-3.222091499999976],[107.607985,-3.2321344],[107.60840220000006,-3.234309899999971],[107.606942,-3.236366099999941],[107.60771680000005,-3.241193899999928],[107.61126310000009,-3.238005199999975],[107.61573320000008,-3.237677399999939],[107.61924970000007,-3.234935699999937],[107.62361560000005,-3.233952299999942],[107.63195980000006,-3.235472099999924],[107.63520810000006,-3.237319799999966],[107.63622130000005,-3.239703799999972],[107.63963350000006,-3.239137599999935],[107.64049780000005,-3.235680699999932],[107.64514670000005,-3.232402599999944],[107.65603890000006,-3.228409299999953],[107.65784190000005,-3.2232835],[107.66894270000006,-3.210558599999956],[107.68102770000007,-3.204169099999945],[107.68871240000004,-3.204005599999959],[107.692691,-3.201771],[107.69519810000008,-3.198391899999933],[107.70866,-3.192560199999946],[107.72942520000004,-3.190543599999955],[107.74040730000007,-3.191633699999954],[107.74362290000005,-3.195012799999972],[107.75302440000007,-3.191797199999939],[107.753624,-3.193650199999979],[107.75689410000007,-3.194140699999934],[107.75934660000007,-3.192015199999958],[107.76239870000006,-3.1928327],[107.76648640000008,-3.191797199999939],[107.76806690000006,-3.187600499999974],[107.77150050000006,-3.184221399999956],[107.77477060000007,-3.183839899999953],[107.77542460000006,-3.182422899999949],[107.779485,-3.183512899999926],[107.78639410000005,-3.175319399999978],[107.79232460000009,-3.174915],[107.796166,-3.177004199999942],[107.80034430000006,-3.174982399999976],[107.80270310000009,-3.1766672],[107.80324220000006,-3.172758399999964],[107.81274450000006,-3.165884399999925],[107.82025880000003,-3.1656149],[107.82834590000004,-3.167434399999934],[107.83245680000005,-3.164132199999926],[107.835422,-3.158269099999927],[107.83737640000004,-3.157056],[107.83474810000007,-3.154966899999977],[107.83481550000005,-3.152001599999949],[107.83279370000008,-3.149642899999947],[107.83353510000006,-3.143375399999968],[107.83208610000008,-3.139466599999935],[107.83956670000003,-3.137242699999945],[107.83666880000004,-3.1293578],[107.84111670000004,-3.123764199999925],[107.84893420000009,-3.122012],[107.84849620000006,-3.119653299999925],[107.84566570000004,-3.1139923],[107.84276780000005,-3.112240099999951],[107.837646,-3.111903199999972],[107.834209,-3.113385799999946],[107.83259160000006,-3.109072699999956],[107.83407420000009,-3.105500899999925],[107.83333290000007,-3.102737799999943],[107.82942410000004,-3.102266],[107.82251640000004,-3.093033299999945],[107.81651850000009,-3.090405],[107.81321630000008,-3.086226699999941],[107.80822920000008,-3.0851484],[107.80742050000003,-3.086294099999975],[107.80256830000008,-3.086226699999941],[107.80202910000008,-3.082183099999952],[107.800324,-3.082001699999978],[107.80269450000009,-3.081944],[107.80382840000004,-3.085912599999972],[107.81282860000005,-3.083928299999968],[107.81608860000006,-3.084566099999961],[107.82264390000006,-3.081660499999941],[107.83851840000005,-3.068975099999932],[107.84443590000006,-3.061037899999974],[107.84712890000009,-3.060116599999958],[107.84875890000006,-3.057352699999967],[107.84882660000005,-3.052890199999979],[107.85131010000003,-3.046793299999933],[107.85485360000007,-3.044809],[107.85471180000008,-3.041265599999974],[107.858397,-3.040344299999958],[107.86300670000008,-3.036364499999934],[107.86401380000007,-3.028867099999957],[107.86132820000006,-3.024157699999932],[107.86370510000006,-3.018432],[107.86186950000007,-3.014477399999976],[107.855704,-3.0129891],[107.85344750000007,-3.008519799999931],[107.85801610000004,-2.995627599999978],[107.853641,-2.987414899999976],[107.84816620000004,-2.984658499999966],[107.85010170000004,-2.976545899999962],[107.84523020000006,-2.975222499999973],[107.841118,-2.967833699999971],[107.83576970000007,-2.964073799999937],[107.83438120000005,-2.960129199999926],[107.82716230000005,-2.959516699999938],[107.82311870000007,-2.947135499999945],[107.81991380000005,-2.942990799999961],[107.81793120000003,-2.942619099999945],[107.81577030000005,-2.944205099999976],[107.81186060000005,-2.943057199999942],[107.80499070000008,-2.930870699999957],[107.79960910000005,-2.930158399999925],[107.79636440000007,-2.928179899999975],[107.793911,-2.924025],[107.7894,-2.920819799999947],[107.78390510000008,-2.920595499999934],[107.78322610000004,-2.916985699999941],[107.77878580000004,-2.912810899999954],[107.76759670000007,-2.904556299999967],[107.75960350000008,-2.901746899999978],[107.75959030000007,-2.899685499999975],[107.75064270000007,-2.893625199999974],[107.75567570000004,-2.882429199999933],[107.77686240000008,-2.8751561],[107.78056350000008,-2.868748599999947],[107.78520980000008,-2.8663033],[107.79483420000008,-2.8659331],[107.80141380000003,-2.871322799999973],[107.80832620000007,-2.874260199999981],[107.81971010000007,-2.875841299999934],[107.82481390000004,-2.878944799999942],[107.82609570000005,-2.876821899999925],[107.82931220000006,-2.875644399999942],[107.83730040000006,-2.877360799999963],[107.85495260000005,-2.867502199999933],[107.85511660000009,-2.856097199999965],[107.84727770000006,-2.847611599999937],[107.84744460000007,-2.844566699999973],[107.84590360000004,-2.842901799999936],[107.85231890000006,-2.832744799999944],[107.85272250000008,-2.829228399999977],[107.84865220000006,-2.824263099999939],[107.849013,-2.821557],[107.85340830000007,-2.817409399999974],[107.85934290000006,-2.814705599999968],[107.86250510000008,-2.806378499999937],[107.867813,-2.800607299999967],[107.88065370000004,-2.7983392],[107.88357210000004,-2.799797699999942],[107.88870530000008,-2.797807299999931],[107.89760970000003,-2.7968645],[107.90379040000005,-2.797283499999935],[107.909133,-2.799378599999955],[107.91353290000006,-2.798435799999936],[107.91924220000004,-2.800792899999976],[107.93684150000007,-2.799431],[107.94683850000007,-2.793897099999981],[107.95569620000003,-2.794226099999946],[107.96020240000007,-2.790002799999968],[107.96443950000008,-2.7922806],[107.96837630000005,-2.788424199999952],[107.97267160000007,-2.787549599999977],[107.974907,-2.784420399999931],[107.97881320000005,-2.785941099999945],[107.98001110000007,-2.78009],[107.98673260000004,-2.779562599999963],[107.98731240000006,-2.778148299999941],[107.99231070000008,-2.778322299999957],[107.99534870000008,-2.776751],[107.99629150000004,-2.774132],[107.99178690000008,-2.766589499999952],[107.99560640000004,-2.755248499999936],[107.99150090000006,-2.752135],[107.98285680000004,-2.750720899999976],[107.97928630000007,-2.753177099999959],[107.97087110000007,-2.753177099999959],[107.96903610000004,-2.756883699999946],[107.96655280000004,-2.757866299999932],[107.95828260000008,-2.757047599999964],[107.95523080000004,-2.749986099999944],[107.96288030000005,-2.742525299999954],[107.94763950000004,-2.734933099999978],[107.93302560000006,-2.720659199999943],[107.93493430000007,-2.716601699999956],[107.93422050000004,-2.712866599999927],[107.93652060000005,-2.710219499999937],[107.93568540000007,-2.7092551],[107.93235660000005,-2.710422899999969],[107.92562720000006,-2.709537299999965],[107.92165930000004,-2.711415299999942],[107.90653710000004,-2.710743199999968],[107.90459450000009,-2.705059199999937],[107.88997910000006,-2.699121199999979],[107.88926910000004,-2.696932199999935],[107.87635050000006,-2.690410499999928],[107.87892160000007,-2.68089],[107.88136040000006,-2.679009899999926],[107.88546780000007,-2.670470899999941],[107.89380660000006,-2.669394199999942],[107.89484270000008,-2.664432799999929],[107.89646460000006,-2.663216399999953],[107.89891060000008,-2.642760899999928],[107.89764410000004,-2.639154599999927],[107.90233620000004,-2.636110499999972],[107.90092480000004,-2.632364699999926],[107.902443,-2.630325899999946],[107.90244540000003,-2.626959599999964],[107.89839950000004,-2.618216199999949],[107.89995380000005,-2.613673699999936],[107.89911090000004,-2.608196299999975],[107.90993470000006,-2.609377099999961],[107.92705870000009,-2.600384499999961],[107.935121,-2.593734199999972],[107.93840990000007,-2.590245],[107.94004650000005,-2.585101799999961],[107.93738310000003,-2.573834499999975],[107.93794330000009,-2.5698185]]],[[[107.811061,-2.524941799999965],[107.80989060000007,-2.524516199999937],[107.80967780000009,-2.525633399999947],[107.811061,-2.524941799999965]]]]},"properties":{"shapeName":"Belitung","shapeISO":"","shapeID":"22746128B75713407776206","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[107.96209720000007,-3.411372099999937],[107.95899010000005,-3.412055699999939],[107.96237680000007,-3.416902799999946],[107.96209720000007,-3.411372099999937]]],[[[108.44408510000005,-3.327808699999935],[108.44347480000005,-3.324994599999968],[108.44073540000005,-3.323998499999959],[108.43837450000007,-3.326320099999975],[108.43798710000004,-3.330076399999939],[108.44265870000004,-3.339782599999978],[108.44453140000007,-3.340982899999972],[108.44602870000006,-3.339770699999974],[108.44696990000006,-3.332224],[108.44408510000005,-3.327808699999935]]],[[[108.46105880000005,-3.326576399999965],[108.46195890000007,-3.324423899999942],[108.46080650000005,-3.322358599999973],[108.45960470000006,-3.324100499999929],[108.46105880000005,-3.326576399999965]]],[[[108.40436110000007,-3.321109099999944],[108.40492310000008,-3.319425599999931],[108.40334640000003,-3.318600299999957],[108.40436110000007,-3.321109099999944]]],[[[108.46036870000006,-3.317297899999971],[108.46320220000007,-3.313918799999954],[108.46238220000004,-3.3115595],[108.45857720000004,-3.313674499999934],[108.46036870000006,-3.317297899999971]]],[[[108.46503890000008,-3.305984099999932],[108.46224410000008,-3.307491699999957],[108.46265470000009,-3.310320199999978],[108.46505330000008,-3.308371399999942],[108.46503890000008,-3.305984099999932]]],[[[108.41388830000005,-3.312036],[108.41559230000007,-3.306118799999979],[108.41379080000007,-3.301334899999972],[108.40773130000008,-3.308967299999949],[108.40654660000007,-3.312538599999925],[108.40778890000007,-3.313961199999937],[108.40518670000006,-3.312319099999968],[108.404546,-3.314787799999976],[108.40678850000006,-3.3180007],[108.41039290000003,-3.316112899999951],[108.41119330000004,-3.3128894],[108.41302040000005,-3.313290799999947],[108.41388830000005,-3.312036]]],[[[107.98905520000005,-3.301484199999948],[107.98948710000008,-3.299972699999955],[107.98624810000007,-3.299108899999965],[107.98819150000008,-3.302563799999973],[107.98905520000005,-3.301484199999948]]],[[[108.39533320000004,-3.291806099999974],[108.39703570000006,-3.286446],[108.39508220000005,-3.283245699999952],[108.39150860000007,-3.285126299999945],[108.38012160000005,-3.299844099999973],[108.38138130000004,-3.303046799999947],[108.38671530000005,-3.304646],[108.38854040000007,-3.302687699999979],[108.38700920000008,-3.301298499999973],[108.39233870000004,-3.301559099999963],[108.39575640000004,-3.293840399999965],[108.39566890000003,-3.292585799999927],[108.39461660000006,-3.293258699999967],[108.39533320000004,-3.291806099999974]]],[[[108.36687580000006,-3.269785299999967],[108.36779410000008,-3.267052899999953],[108.36610380000008,-3.264768599999968],[108.36432730000007,-3.268409199999951],[108.36687580000006,-3.269785299999967]]],[[[108.38762480000008,-3.242615599999965],[108.38732970000007,-3.240608799999961],[108.38450120000005,-3.238651799999957],[108.38063640000007,-3.2426042],[108.37627120000008,-3.243115699999976],[108.37362640000003,-3.2468712],[108.37565740000008,-3.255006699999967],[108.38134560000009,-3.262046099999964],[108.38628570000009,-3.260932399999945],[108.39125840000008,-3.255591099999947],[108.39069640000008,-3.253854299999944],[108.39152270000005,-3.254555299999936],[108.39275370000007,-3.253102199999944],[108.39189690000006,-3.249420599999951],[108.38815420000009,-3.24694],[108.38762480000008,-3.242615599999965]]],[[[108.39527140000007,-3.241907799999979],[108.393943,-3.238890199999958],[108.39089110000003,-3.237865499999941],[108.38976850000006,-3.247142599999961],[108.39333230000005,-3.247234099999957],[108.392101,-3.242436],[108.39455510000005,-3.2432971],[108.39527140000007,-3.241907799999979]]],[[[108.275788,-3.227627499999926],[108.27601260000006,-3.226199],[108.273816,-3.227265399999965],[108.27518630000009,-3.228642699999966],[108.27788780000009,-3.227851],[108.27472470000004,-3.227649399999962],[108.275788,-3.227627499999926]]],[[[108.30665830000004,-3.229933899999935],[108.30732070000005,-3.227013899999974],[108.30460690000007,-3.2260061],[108.30391360000004,-3.228926299999955],[108.30665830000004,-3.229933899999935]]],[[[108.20168320000005,-3.219565099999954],[108.19955460000006,-3.218700899999931],[108.19261190000009,-3.220210499999951],[108.19255080000005,-3.222677699999963],[108.18952960000007,-3.223608],[108.186638,-3.228132199999948],[108.19327560000005,-3.229518399999961],[108.19832630000008,-3.227896399999963],[108.20168320000005,-3.219565099999954]]],[[[108.08866960000006,-3.213384899999937],[108.08973450000008,-3.211985699999957],[108.08872460000003,-3.210906399999942],[108.08866960000006,-3.213384899999937]]],[[[108.286785,-3.207991899999968],[108.28267830000004,-3.2080726],[108.27577020000007,-3.212540599999954],[108.27358110000006,-3.2210004],[108.27688540000008,-3.225180499999965],[108.28123240000008,-3.224657699999966],[108.28691240000006,-3.218899099999931],[108.28935540000003,-3.210401399999967],[108.286785,-3.207991899999968]]],[[[108.20617590000006,-3.198879899999952],[108.19780810000009,-3.201978699999927],[108.19288110000008,-3.205132299999946],[108.19252880000005,-3.206879499999957],[108.18911280000003,-3.207469799999956],[108.18625420000006,-3.210927799999979],[108.18641410000004,-3.212581199999931],[108.18949040000007,-3.213872199999969],[108.19575450000008,-3.209231199999977],[108.20021410000004,-3.207899699999928],[108.20672970000004,-3.202114],[108.20772210000007,-3.200117699999964],[108.20617590000006,-3.198879899999952]]],[[[108.18353290000005,-3.188484799999969],[108.18037960000004,-3.188284],[108.17731180000004,-3.1899079],[108.18387270000005,-3.1937311],[108.18839770000005,-3.1911456],[108.18353290000005,-3.188484799999969]]],[[[108.12918840000003,-3.1806929],[108.125903,-3.181161699999961],[108.12541740000006,-3.183640799999978],[108.12801440000004,-3.184972599999981],[108.12804760000006,-3.183889699999952],[108.13020230000006,-3.183883099999946],[108.13387920000008,-3.186074099999928],[108.13193040000004,-3.181693899999971],[108.12918840000003,-3.1806929]]],[[[108.16328920000007,-3.176197799999954],[108.16282050000007,-3.172504899999979],[108.15922550000005,-3.172220299999935],[108.15879340000004,-3.175177199999951],[108.16328920000007,-3.176197799999954]]],[[[108.20635530000004,-3.169854199999975],[108.19748840000005,-3.172793899999931],[108.19771940000004,-3.176332599999967],[108.20448130000005,-3.177306599999952],[108.20859110000004,-3.175629099999981],[108.20939810000004,-3.172834599999931],[108.20635530000004,-3.169854199999975]]],[[[108.19094390000004,-3.166320199999973],[108.18493190000004,-3.167146799999955],[108.181589,-3.173254399999962],[108.18165890000006,-3.171541099999956],[108.180957,-3.172241799999938],[108.18105620000006,-3.175002],[108.17819520000006,-3.175315499999954],[108.17705840000008,-3.178012499999966],[108.18336790000006,-3.179379599999947],[108.18386380000004,-3.177045199999952],[108.18168550000007,-3.1741551],[108.18719020000009,-3.175116199999934],[108.19531550000005,-3.169798499999956],[108.19508660000008,-3.1672214],[108.19094390000004,-3.166320199999973]]],[[[108.19475650000004,-3.163816199999928],[108.19507350000003,-3.162119599999926],[108.19206180000003,-3.162891],[108.19475650000004,-3.163816199999928]]],[[[108.24625960000009,-3.149578],[108.24577570000008,-3.1478956],[108.24245950000005,-3.150458499999957],[108.24383140000003,-3.151202599999976],[108.24625960000009,-3.149578]]],[[[108.21634220000004,-3.142583299999956],[108.21274840000007,-3.143347399999925],[108.21066920000004,-3.149434399999961],[108.21314450000006,-3.150386799999978],[108.218343,-3.147622199999944],[108.21872990000008,-3.145512599999961],[108.21634220000004,-3.142583299999956]]],[[[107.89206810000007,-3.127956899999958],[107.89374920000006,-3.126095899999939],[107.89255890000004,-3.118555199999946],[107.88739590000006,-3.122400699999957],[107.89046230000008,-3.127961399999947],[107.89206810000007,-3.127956899999958]]],[[[108.29840070000006,-3.058884],[108.29704530000004,-3.068353399999978],[108.30126550000006,-3.066454599999929],[108.30166410000004,-3.059807599999942],[108.29840070000006,-3.058884]]],[[[108.25454380000008,-3.0453062],[108.25244580000003,-3.044646499999942],[108.25106480000005,-3.047200199999963],[108.24319890000004,-3.049414099999979],[108.24130690000004,-3.055614899999966],[108.23482190000004,-3.064417799999944],[108.238423,-3.074015399999951],[108.24146710000008,-3.076463699999977],[108.24625070000008,-3.077382599999964],[108.24847090000009,-3.075436099999934],[108.25101150000006,-3.068631899999957],[108.25507030000006,-3.06588],[108.25427680000007,-3.064206099999979],[108.25594770000004,-3.063556199999937],[108.25436080000009,-3.061153099999956],[108.25537550000007,-3.058684099999937],[108.25942670000006,-3.058912499999963],[108.26030410000004,-3.057170099999951],[108.26218090000003,-3.058556099999976],[108.26630840000007,-3.058421299999964],[108.27282390000005,-3.055602799999974],[108.268498,-3.049121799999966],[108.26033460000008,-3.045466399999953],[108.25454380000008,-3.0453062]]],[[[108.27770050000004,-3.015722099999948],[108.27878390000006,-3.014634399999977],[108.27676210000004,-3.0134661],[108.27603730000004,-3.015499899999952],[108.27770050000004,-3.015722099999948]]],[[[108.28305640000008,-2.979498299999932],[108.282075,-2.975826499999926],[108.27828480000005,-2.9778401],[108.27984150000009,-2.979802799999959],[108.28305640000008,-2.979498299999932]]],[[[108.25346910000007,-2.9671881],[108.25445510000009,-2.966167],[108.253434,-2.9651809],[108.252448,-2.966202],[108.25346910000007,-2.9671881]]],[[[108.25113530000004,-2.965434499999958],[108.25204440000005,-2.9644931],[108.251103,-2.963584],[108.25019390000006,-2.964525399999957],[108.25113530000004,-2.965434499999958]]],[[[108.25385530000005,-2.963905599999975],[108.25519650000007,-2.962516799999946],[108.25380770000004,-2.961175599999933],[108.25246650000008,-2.962564499999928],[108.25385530000005,-2.963905599999975]]],[[[108.24947050000009,-2.963044599999932],[108.25088230000006,-2.961582599999929],[108.24942030000005,-2.960170799999958],[108.24800850000008,-2.961632699999939],[108.24947050000009,-2.963044599999932]]],[[[108.40315160000006,-2.810205599999961],[108.40155420000008,-2.809349699999927],[108.40145660000007,-2.811960399999975],[108.404196,-2.814380899999946],[108.40315160000006,-2.810205599999961]]],[[[108.41422230000006,-2.785934199999929],[108.41201620000004,-2.788051199999927],[108.41539630000005,-2.793783],[108.419977,-2.7931342],[108.41872540000008,-2.789688299999966],[108.41422230000006,-2.785934199999929]]],[[[108.368805,-2.770155599999953],[108.36717230000005,-2.767241399999932],[108.36734010000004,-2.769521199999929],[108.368805,-2.770155599999953]]],[[[108.43039390000007,-2.709396699999957],[108.42847710000007,-2.708344499999953],[108.42766140000003,-2.709242899999936],[108.43247690000004,-2.712357899999972],[108.43184010000004,-2.709319099999959],[108.43039390000007,-2.709396699999957]]],[[[108.41704620000007,-2.682535199999961],[108.412799,-2.681536799999947],[108.41212560000008,-2.686643599999968],[108.41528880000004,-2.690851799999962],[108.41960520000003,-2.6929401],[108.42114950000007,-2.691978499999948],[108.42134240000007,-2.686883599999931],[108.41704620000007,-2.682535199999961]]],[[[108.49068890000007,-2.678667899999937],[108.48938130000005,-2.677756199999976],[108.48874550000005,-2.678679599999953],[108.49194980000004,-2.680542899999978],[108.49068890000007,-2.678667899999937]]],[[[108.422137,-2.669444799999951],[108.42006670000006,-2.669489],[108.420027,-2.671256899999946],[108.42215270000008,-2.672060899999963],[108.42154530000005,-2.673561399999926],[108.42473390000004,-2.674775799999964],[108.42567580000008,-2.671574799999973],[108.422137,-2.669444799999951]]],[[[108.02667330000008,-2.651429099999973],[108.02611880000006,-2.649904799999945],[108.01989790000005,-2.655707499999949],[108.01982830000009,-2.661241599999926],[108.01843520000006,-2.661036099999933],[108.01738080000007,-2.663348099999951],[108.01826980000004,-2.663818799999945],[108.01862770000008,-2.665709299999946],[108.024471,-2.6613867],[108.02828650000004,-2.656030199999975],[108.02935640000004,-2.652174899999977],[108.02756520000008,-2.6506745],[108.02667330000008,-2.651429099999973]]],[[[108.02948430000004,-2.650792099999933],[108.02995210000006,-2.648551199999929],[108.02787690000008,-2.647424099999967],[108.02744230000008,-2.6498618],[108.02948430000004,-2.650792099999933]]],[[[108.030703,-2.647930799999926],[108.03126150000008,-2.646067099999925],[108.02950390000007,-2.644685],[108.028929,-2.646466699999962],[108.030703,-2.647930799999926]]],[[[108.49293320000004,-2.627943199999947],[108.49236790000003,-2.632879299999956],[108.49602020000003,-2.638694499999929],[108.498067,-2.638915899999972],[108.49893360000004,-2.633669499999939],[108.49585820000004,-2.631466099999955],[108.49669430000006,-2.630092],[108.49293320000004,-2.627943199999947]]],[[[108.209886,-2.623073899999952],[108.20681550000006,-2.620774599999947],[108.20760560000008,-2.622615199999927],[108.209886,-2.623073899999952]]],[[[108.61846360000004,-2.591877499999953],[108.618467,-2.590046699999959],[108.617014,-2.5897548],[108.615811,-2.592450699999972],[108.61798150000004,-2.5934505],[108.61846360000004,-2.591877499999953]]],[[[108.71625330000006,-2.587524299999927],[108.71639390000007,-2.5834591],[108.71519080000007,-2.585366799999974],[108.71625330000006,-2.587524299999927]]],[[[108.72970930000008,-2.581880499999954],[108.72714350000007,-2.582216499999959],[108.72641960000004,-2.585455599999932],[108.72599290000005,-2.589029899999957],[108.727528,-2.593090699999948],[108.73316040000009,-2.598265399999946],[108.73978080000006,-2.598383],[108.74232360000008,-2.594343399999957],[108.74134650000008,-2.591362799999956],[108.73785330000004,-2.588777399999969],[108.736213,-2.584610599999962],[108.73245810000009,-2.582058199999949],[108.72970930000008,-2.581880499999954]]],[[[108.75010820000006,-2.575940299999957],[108.74989390000007,-2.5733356],[108.74881980000004,-2.574302099999954],[108.75010820000006,-2.575940299999957]]],[[[107.84882660000005,-3.052890199999979],[107.848865,-3.060715799999969],[107.85989370000004,-3.0585436],[107.86653460000008,-3.062108099999932],[107.86219170000004,-3.0626314],[107.86509270000005,-3.068179],[107.86340820000004,-3.071744899999942],[107.86444530000006,-3.073381099999949],[107.87247490000004,-3.073928599999931],[107.87508670000005,-3.076796199999933],[107.875982,-3.080314499999929],[107.87873420000005,-3.081671099999937],[107.88346830000006,-3.080014],[107.888607,-3.081156899999939],[107.88893120000006,-3.089483099999939],[107.89904720000004,-3.0971245],[107.89893990000007,-3.099879499999929],[107.89531140000008,-3.105320699999936],[107.88893670000004,-3.104751599999929],[107.88644920000007,-3.107893399999966],[107.88265590000009,-3.109572399999934],[107.88600150000008,-3.117365099999972],[107.89175120000004,-3.118627599999968],[107.899312,-3.115625],[107.90488890000006,-3.115481399999965],[107.91286840000004,-3.119017399999962],[107.91657990000004,-3.1226774],[107.92224270000008,-3.122831799999972],[107.92360560000009,-3.125337399999978],[107.92151930000006,-3.128131199999928],[107.92350370000008,-3.131714399999964],[107.92613290000008,-3.131526],[107.92793330000006,-3.127114899999981],[107.92970810000008,-3.126341699999955],[107.93097580000006,-3.131693899999959],[107.93374450000005,-3.132375799999977],[107.93298510000005,-3.137651299999959],[107.93024740000004,-3.141640399999972],[107.932783,-3.150891099999967],[107.94035580000008,-3.151093099999969],[107.94905230000006,-3.155873799999938],[107.95069750000005,-3.158738099999937],[107.95749380000007,-3.160049899999933],[107.96318460000003,-3.167588799999976],[107.96342670000007,-3.173446799999965],[107.97070640000004,-3.181045299999937],[107.97173030000005,-3.189017599999943],[107.97344910000004,-3.191614099999924],[107.97194970000004,-3.200354299999958],[107.968695,-3.204121],[107.96967650000005,-3.209975399999962],[107.967052,-3.215267],[107.96783570000008,-3.2189369],[107.96570520000006,-3.244077399999981],[107.97562060000007,-3.254997899999978],[107.97609760000006,-3.259734099999946],[107.97458140000003,-3.261488899999961],[107.983219,-3.271932399999969],[107.98490560000005,-3.272222],[107.99133490000008,-3.268201699999963],[107.990463,-3.260692],[107.995506,-3.259206499999948],[107.99445050000008,-3.257388699999979],[107.99635780000006,-3.255021599999964],[108.00613330000004,-3.247516899999937],[108.01145970000005,-3.247590199999934],[108.01439160000007,-3.243534299999965],[108.01890410000004,-3.2432869],[108.020513,-3.246569299999976],[108.02117380000004,-3.243595699999958],[108.022754,-3.243136099999958],[108.03002410000005,-3.2447014],[108.03887660000004,-3.2433726],[108.04163290000008,-3.245689],[108.04348250000004,-3.242708199999925],[108.04729820000006,-3.242034899999965],[108.04798950000009,-3.240275099999963],[108.05349320000005,-3.239260599999966],[108.058081,-3.240436699999975],[108.06135810000006,-3.239224699999966],[108.06667320000008,-3.242932699999926],[108.06785830000007,-3.241702699999962],[108.06869330000006,-3.244916899999964],[108.07090190000008,-3.2425646],[108.07395450000007,-3.245626099999924],[108.08037390000004,-3.246506],[108.08334570000005,-3.244306299999948],[108.08062530000007,-3.238973299999941],[108.08114610000007,-3.2327783],[108.08374970000006,-3.228792],[108.08344040000009,-3.225679499999956],[108.08168570000004,-3.224378499999943],[108.08352860000008,-3.224395799999968],[108.08401860000004,-3.220946599999934],[108.08649770000005,-3.220789799999977],[108.08748740000004,-3.219084799999962],[108.08687010000006,-3.208423499999981],[108.08364620000003,-3.204572499999927],[108.07914850000009,-3.203494699999965],[108.07870750000006,-3.200829299999953],[108.07243620000008,-3.197350699999959],[108.06921240000008,-3.187992699999938],[108.07238720000004,-3.182025099999976],[108.07725240000008,-3.178088],[108.08039970000004,-3.169797499999959],[108.08605340000008,-3.167461299999957],[108.09623950000008,-3.165825899999959],[108.09974380000006,-3.16648],[108.09829930000006,-3.165072099999975],[108.10186740000006,-3.168025599999964],[108.10199790000007,-3.169330399999978],[108.10465090000008,-3.168808499999955],[108.105785,-3.1702478],[108.10811590000009,-3.168962499999964],[108.115605,-3.176017099999967],[108.11850880000009,-3.174064699999974],[108.137756,-3.174322599999925],[108.14136570000005,-3.172119499999951],[108.14424160000004,-3.172478399999932],[108.14422060000004,-3.1713229],[108.14589660000007,-3.172420799999941],[108.14805210000009,-3.170803399999954],[108.15247640000007,-3.172136599999931],[108.15714520000006,-3.1662392],[108.16283720000007,-3.164558399999976],[108.16868680000005,-3.160382799999979],[108.17089960000004,-3.160446],[108.17682510000009,-3.152470599999958],[108.18324470000005,-3.146756099999948],[108.18539250000003,-3.146479599999964],[108.18540670000004,-3.142778],[108.19151860000005,-3.1429552],[108.20415310000004,-3.146959099999947],[108.208738,-3.145264099999963],[108.206368,-3.136685799999952],[108.20134440000004,-3.131000099999937],[108.19072,-3.128517299999942],[108.18564180000004,-3.131025299999976],[108.18198150000006,-3.127650199999948],[108.17989180000006,-3.120140599999957],[108.18424280000005,-3.108616799999936],[108.18862980000006,-3.106063799999959],[108.19017160000004,-3.102443499999936],[108.19271870000006,-3.101024799999948],[108.19308380000007,-3.096594599999946],[108.19631040000007,-3.088957299999947],[108.20693940000007,-3.071686299999953],[108.20823310000009,-3.071596499999941],[108.208423,-3.069792399999926],[108.21330070000005,-3.06986],[108.21049440000007,-3.066187799999966],[108.210524,-3.063844399999937],[108.21369970000006,-3.060424199999943],[108.21372810000008,-3.057236199999977],[108.21649860000008,-3.0570929],[108.21729530000005,-3.054121499999951],[108.21614380000005,-3.036034099999938],[108.21245040000008,-3.0336528],[108.21306260000006,-3.030713299999945],[108.210746,-3.027444399999979],[108.20794250000006,-3.016934],[108.20890170000007,-3.011005299999965],[108.22114210000007,-2.985541699999942],[108.22535730000004,-2.980580299999929],[108.22968440000005,-2.978496499999949],[108.23613720000009,-2.96911],[108.24138210000007,-2.966324799999938],[108.24152150000003,-2.9630119],[108.24718060000004,-2.955867],[108.24794740000004,-2.949812299999962],[108.24633190000009,-2.948454799999979],[108.24406430000005,-2.939841099999967],[108.24743870000009,-2.925169599999947],[108.253454,-2.912258699999938],[108.26386360000004,-2.896650799999975],[108.28389190000007,-2.883790099999942],[108.287681,-2.883300299999974],[108.29439280000008,-2.877408099999968],[108.29346780000009,-2.875545699999975],[108.29666240000006,-2.862710299999947],[108.29812770000007,-2.847464],[108.29653010000004,-2.846789499999943],[108.29074340000005,-2.822577499999966],[108.28438860000006,-2.812885599999959],[108.27224720000004,-2.778626799999927],[108.268981,-2.776212699999974],[108.266242,-2.770567],[108.26731250000006,-2.758923599999946],[108.27107560000007,-2.756758],[108.27079160000005,-2.751823299999955],[108.26660240000007,-2.7483797],[108.267348,-2.747350099999949],[108.26479190000003,-2.746462599999973],[108.26415280000003,-2.743764499999941],[108.25907620000004,-2.743942],[108.25655560000007,-2.741243899999972],[108.25492250000008,-2.742592899999977],[108.25087530000008,-2.742273399999931],[108.24807070000008,-2.740178799999967],[108.24537260000005,-2.733753099999944],[108.241787,-2.731516499999941],[108.23982830000006,-2.725695099999939],[108.23695810000004,-2.722639399999935],[108.23124310000009,-2.719907599999942],[108.22574040000006,-2.713872299999935],[108.223401,-2.714041],[108.21849810000003,-2.706346],[108.21875890000007,-2.703015899999968],[108.21015530000005,-2.7004173],[108.20830920000009,-2.701482299999952],[108.203978,-2.690938399999936],[108.20177690000008,-2.689731399999971],[108.19944080000005,-2.695057099999929],[108.19720880000006,-2.691326599999968],[108.19264620000007,-2.691607799999929],[108.19199080000004,-2.6892077],[108.19330320000006,-2.686293399999954],[108.19156920000006,-2.683242499999949],[108.197533,-2.683483099999933],[108.18296680000009,-2.674949799999979],[108.18140190000008,-2.675529599999948],[108.18452090000005,-2.679118499999959],[108.17931590000006,-2.678409599999952],[108.17822220000005,-2.677353599999947],[108.17911320000007,-2.674592799999971],[108.17609110000006,-2.670955399999968],[108.17108980000006,-2.668804699999953],[108.17001970000007,-2.677481599999965],[108.16788470000006,-2.680653199999938],[108.16669460000008,-2.686452399999951],[108.16430950000006,-2.6862038],[108.16098210000007,-2.682176699999957],[108.16241390000005,-2.675560799999971],[108.16057870000009,-2.674519399999951],[108.15597480000008,-2.675140399999975],[108.148971,-2.671672099999967],[108.15131590000004,-2.668768899999975],[108.152896,-2.661341499999935],[108.15526860000006,-2.6599856],[108.15323970000009,-2.659073299999932],[108.15507020000007,-2.654435499999977],[108.15314210000008,-2.6517408],[108.14935890000004,-2.6496738],[108.14656960000008,-2.649991499999942],[108.144618,-2.647098],[108.14311210000005,-2.650108899999964],[108.14009960000004,-2.649372599999936],[108.13776820000004,-2.646839],[108.14001820000004,-2.642679199999975],[108.13921810000005,-2.639363899999978],[108.12869490000008,-2.634747799999957],[108.13050480000004,-2.6315857],[108.12882830000007,-2.631695199999967],[108.12611170000008,-2.628463899999929],[108.11344160000004,-2.631740499999978],[108.111145,-2.626704199999949],[108.10962660000007,-2.628126799999961],[108.10868110000007,-2.625774699999965],[108.11084950000009,-2.621058099999971],[108.107502,-2.6188949],[108.10426560000008,-2.621154499999932],[108.10338270000005,-2.619612899999936],[108.10477960000009,-2.6149164],[108.09959370000007,-2.613219],[108.09535410000007,-2.613484599999936],[108.093624,-2.6077344],[108.08724130000007,-2.604586],[108.08920010000008,-2.600847099999953],[108.08611090000005,-2.598538699999949],[108.08305450000006,-2.599929399999951],[108.08382350000005,-2.601924499999939],[108.08272220000003,-2.604255499999965],[108.07977340000008,-2.603989399999932],[108.07980110000005,-2.605950299999961],[108.07490660000008,-2.607348699999932],[108.068834,-2.605827399999953],[108.06958090000006,-2.603447],[108.06848940000003,-2.601516],[108.05783120000007,-2.606208599999945],[108.04173240000006,-2.598828499999968],[108.04114470000007,-2.602057],[108.04472950000007,-2.605987099999936],[108.044123,-2.610361],[108.04017880000004,-2.608504299999936],[108.03775730000007,-2.610183899999925],[108.03744870000008,-2.617945299999974],[108.03990380000005,-2.622537099999931],[108.03860770000006,-2.625418499999967],[108.040048,-2.636503599999969],[108.038364,-2.638143099999979],[108.03876070000007,-2.640801599999975],[108.03500720000005,-2.646440499999926],[108.03603310000005,-2.648776399999974],[108.03417170000006,-2.652110199999925],[108.03517860000005,-2.648669499999926],[108.03410640000004,-2.645458399999939],[108.03527110000005,-2.643646199999978],[108.03343350000006,-2.643771499999957],[108.03263520000007,-2.639693399999942],[108.03151830000007,-2.639827799999978],[108.03210070000006,-2.648375899999962],[108.02956160000008,-2.656890899999951],[108.026489,-2.661194],[108.01886110000004,-2.666965399999981],[108.01793320000007,-2.664111099999957],[108.01670470000005,-2.665615199999934],[108.01614140000004,-2.6652897],[108.01952010000008,-2.655285099999958],[108.02550340000005,-2.649459099999945],[108.02978250000007,-2.637490199999945],[108.02753480000007,-2.637114899999972],[108.02447170000005,-2.642783],[108.02161220000005,-2.637483499999973],[108.02110620000008,-2.630806499999949],[108.01529750000009,-2.625498899999968],[108.01243840000006,-2.619536499999924],[108.00769650000007,-2.620799399999953],[108.002602,-2.618392699999958],[108.00231110000004,-2.616100299999971],[108.00720790000008,-2.616663099999926],[108.00645030000004,-2.612889699999926],[108.01325650000007,-2.596842299999935],[108.00930120000004,-2.591679699999929],[108.009003,-2.587655199999972],[108.01063980000004,-2.587021899999968],[108.01039880000008,-2.585212599999977],[108.00752530000005,-2.5858533],[108.00792720000004,-2.584436],[108.004235,-2.580661899999939],[107.998784,-2.579466899999943],[107.99741820000008,-2.576386299999967],[107.989339,-2.572171899999944],[107.98649490000008,-2.575322],[107.97826830000008,-2.572373399999947],[107.97378060000005,-2.572804599999927],[107.96860610000004,-2.575703199999964],[107.96261990000005,-2.576080499999932],[107.95913890000008,-2.578672],[107.954141,-2.573425099999952],[107.95355220000005,-2.569370299999946],[107.95208930000007,-2.569962799999928],[107.949208,-2.567818599999953],[107.94840620000008,-2.569779399999959],[107.94566580000009,-2.570399699999939],[107.94522180000007,-2.572320299999944],[107.93794330000009,-2.5698185],[107.93738310000003,-2.573834499999975],[107.94004650000005,-2.585101799999961],[107.93840990000007,-2.590245],[107.935121,-2.593734199999972],[107.92705870000009,-2.600384499999961],[107.90993470000006,-2.609377099999961],[107.89911090000004,-2.608196299999975],[107.89995380000005,-2.613673699999936],[107.89839950000004,-2.618216199999949],[107.90244540000003,-2.626959599999964],[107.902443,-2.630325899999946],[107.90092480000004,-2.632364699999926],[107.90233620000004,-2.636110499999972],[107.89764410000004,-2.639154599999927],[107.89891060000008,-2.642760899999928],[107.89646460000006,-2.663216399999953],[107.89484270000008,-2.664432799999929],[107.89380660000006,-2.669394199999942],[107.88546780000007,-2.670470899999941],[107.88136040000006,-2.679009899999926],[107.87892160000007,-2.68089],[107.87635050000006,-2.690410499999928],[107.88926910000004,-2.696932199999935],[107.88997910000006,-2.699121199999979],[107.90459450000009,-2.705059199999937],[107.90653710000004,-2.710743199999968],[107.92165930000004,-2.711415299999942],[107.92562720000006,-2.709537299999965],[107.93235660000005,-2.710422899999969],[107.93568540000007,-2.7092551],[107.93652060000005,-2.710219499999937],[107.93422050000004,-2.712866599999927],[107.93493430000007,-2.716601699999956],[107.93302560000006,-2.720659199999943],[107.94763950000004,-2.734933099999978],[107.96288030000005,-2.742525299999954],[107.95523080000004,-2.749986099999944],[107.95828260000008,-2.757047599999964],[107.96655280000004,-2.757866299999932],[107.96903610000004,-2.756883699999946],[107.97087110000007,-2.753177099999959],[107.97928630000007,-2.753177099999959],[107.98285680000004,-2.750720899999976],[107.99150090000006,-2.752135],[107.99560640000004,-2.755248499999936],[107.99178690000008,-2.766589499999952],[107.99629150000004,-2.774132],[107.99534870000008,-2.776751],[107.99231070000008,-2.778322299999957],[107.98731240000006,-2.778148299999941],[107.98673260000004,-2.779562599999963],[107.98001110000007,-2.78009],[107.97881320000005,-2.785941099999945],[107.974907,-2.784420399999931],[107.97267160000007,-2.787549599999977],[107.96837630000005,-2.788424199999952],[107.96443950000008,-2.7922806],[107.96020240000007,-2.790002799999968],[107.95569620000003,-2.794226099999946],[107.94683850000007,-2.793897099999981],[107.93684150000007,-2.799431],[107.91924220000004,-2.800792899999976],[107.91353290000006,-2.798435799999936],[107.909133,-2.799378599999955],[107.90379040000005,-2.797283499999935],[107.89760970000003,-2.7968645],[107.88870530000008,-2.797807299999931],[107.88357210000004,-2.799797699999942],[107.88065370000004,-2.7983392],[107.867813,-2.800607299999967],[107.86250510000008,-2.806378499999937],[107.85934290000006,-2.814705599999968],[107.85340830000007,-2.817409399999974],[107.849013,-2.821557],[107.84865220000006,-2.824263099999939],[107.85272250000008,-2.829228399999977],[107.85231890000006,-2.832744799999944],[107.84590360000004,-2.842901799999936],[107.84744460000007,-2.844566699999973],[107.84727770000006,-2.847611599999937],[107.85511660000009,-2.856097199999965],[107.85495260000005,-2.867502199999933],[107.83730040000006,-2.877360799999963],[107.82931220000006,-2.875644399999942],[107.82609570000005,-2.876821899999925],[107.82481390000004,-2.878944799999942],[107.81971010000007,-2.875841299999934],[107.80832620000007,-2.874260199999981],[107.80141380000003,-2.871322799999973],[107.79483420000008,-2.8659331],[107.78520980000008,-2.8663033],[107.78056350000008,-2.868748599999947],[107.77686240000008,-2.8751561],[107.75567570000004,-2.882429199999933],[107.75064270000007,-2.893625199999974],[107.75959030000007,-2.899685499999975],[107.75960350000008,-2.901746899999978],[107.76759670000007,-2.904556299999967],[107.77878580000004,-2.912810899999954],[107.78322610000004,-2.916985699999941],[107.78390510000008,-2.920595499999934],[107.7894,-2.920819799999947],[107.793911,-2.924025],[107.79636440000007,-2.928179899999975],[107.79960910000005,-2.930158399999925],[107.80499070000008,-2.930870699999957],[107.81186060000005,-2.943057199999942],[107.81577030000005,-2.944205099999976],[107.81793120000003,-2.942619099999945],[107.81991380000005,-2.942990799999961],[107.82311870000007,-2.947135499999945],[107.82716230000005,-2.959516699999938],[107.83438120000005,-2.960129199999926],[107.83576970000007,-2.964073799999937],[107.841118,-2.967833699999971],[107.84523020000006,-2.975222499999973],[107.85010170000004,-2.976545899999962],[107.84816620000004,-2.984658499999966],[107.853641,-2.987414899999976],[107.85801610000004,-2.995627599999978],[107.85344750000007,-3.008519799999931],[107.855704,-3.0129891],[107.86186950000007,-3.014477399999976],[107.86370510000006,-3.018432],[107.86132820000006,-3.024157699999932],[107.86401380000007,-3.028867099999957],[107.86300670000008,-3.036364499999934],[107.858397,-3.040344299999958],[107.85471180000008,-3.041265599999974],[107.85485360000007,-3.044809],[107.85131010000003,-3.046793299999933],[107.84882660000005,-3.052890199999979]]],[[[108.76920720000004,-2.574628299999972],[108.76900290000003,-2.570620899999938],[108.76442480000009,-2.565843599999937],[108.76742450000006,-2.574405399999932],[108.76920720000004,-2.574628299999972]]],[[[108.56503180000004,-2.5649413],[108.56198440000009,-2.5652135],[108.56127260000005,-2.567293899999925],[108.56560140000005,-2.573386399999947],[108.56520060000008,-2.580131499999936],[108.56938940000003,-2.580935099999977],[108.57148250000006,-2.576966899999945],[108.57024750000005,-2.574060199999963],[108.57125710000008,-2.571486599999957],[108.56878340000009,-2.566841699999941],[108.56503180000004,-2.5649413]]],[[[108.56482190000008,-2.556209599999931],[108.56364940000009,-2.552881099999979],[108.56219960000004,-2.552919799999927],[108.56188880000008,-2.5552914],[108.56482190000008,-2.556209599999931]]],[[[107.98812120000008,-2.5541405],[107.99081920000003,-2.552514299999928],[107.98759470000005,-2.551408199999969],[107.98734770000004,-2.5534505],[107.98567140000006,-2.554213699999934],[107.98812120000008,-2.5541405]]],[[[108.56789470000007,-2.545606099999929],[108.568779,-2.5430373],[108.56685150000004,-2.544839499999966],[108.56789470000007,-2.545606099999929]]],[[[108.82979430000006,-2.518197799999939],[108.82987490000005,-2.520508599999971],[108.83364590000008,-2.525011599999971],[108.82979430000006,-2.518197799999939]]],[[[108.52756960000005,-2.514316299999962],[108.52788770000006,-2.512056899999948],[108.52634970000008,-2.511626499999977],[108.52593090000005,-2.513580199999979],[108.52756960000005,-2.514316299999962]]],[[[108.54586340000009,-2.493546599999945],[108.54045220000006,-2.494650599999943],[108.53817940000005,-2.499931499999946],[108.53572250000008,-2.501805799999943],[108.53508040000008,-2.505401499999948],[108.53688550000004,-2.513308299999949],[108.54239060000003,-2.5128203],[108.54858970000004,-2.50816],[108.54672640000007,-2.503042799999946],[108.54792990000004,-2.497357399999942],[108.54586340000009,-2.493546599999945]]],[[[108.84795350000007,-2.497700399999928],[108.84681860000006,-2.493010699999957],[108.84559120000006,-2.494986399999959],[108.84795350000007,-2.497700399999928]]]]},"properties":{"shapeName":"Belitung Timur","shapeISO":"","shapeID":"22746128B61685917188908","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[125.01409620000004,-9.302547299999958],[125.01048860000003,-9.300280699999973],[125.00631450000003,-9.294518799999935],[124.99725980000005,-9.293710799999928],[124.99439490000009,-9.289984299999958],[124.99560850000012,-9.288965099999928],[124.99528850000002,-9.285477599999979],[124.998295,-9.28077819999993],[124.99436360000004,-9.272384199999976],[124.99669140000003,-9.268547399999932],[124.99683720000007,-9.263357799999937],[124.99590520000004,-9.261573099999964],[124.99280190000002,-9.2606864],[124.99152290000006,-9.257565799999952],[124.99054820000003,-9.258176899999967],[124.99086310000007,-9.257235],[124.98801550000007,-9.256220299999939],[124.98497490000011,-9.251202],[124.98527060000004,-9.246327899999926],[124.983871,-9.242864299999951],[124.98161230000005,-9.2417559],[124.98348560000011,-9.240660799999944],[124.98187140000005,-9.239277499999957],[124.9837983000001,-9.230787599999928],[124.98153480000008,-9.212096699999961],[124.98274330000004,-9.191406899999947],[124.98449330000005,-9.191984899999966],[124.9924516000001,-9.186833599999943],[124.99900080000009,-9.18635439999997],[125.0055556000001,-9.182431],[125.01144140000008,-9.175953],[125.01441360000001,-9.16905719999994],[125.02510070000005,-9.171257399999945],[125.0324399000001,-9.1699055],[125.03601420000007,-9.17436],[125.0394894000001,-9.173192399999948],[125.04138810000006,-9.174628],[125.05265020000002,-9.168833199999938],[125.05644,-9.1697879],[125.05687130000001,-9.171837399999959],[125.06544170000006,-9.17332529999993],[125.06755150000004,-9.176449899999966],[125.06845080000005,-9.175061699999958],[125.07484180000006,-9.175531299999932],[125.07998010000006,-9.18857259999993],[125.083418,-9.189501899999925],[125.08614380000006,-9.192912],[125.09108420000007,-9.195360199999925],[125.0970076000001,-9.201815899999929],[125.1025019000001,-9.197219099999927],[125.10232410000003,-9.1958101],[125.10638820000008,-9.196274499999959],[125.10931790000006,-9.191367199999945],[125.11546460000011,-9.188384399999961],[125.11705440000003,-9.18621479999996],[125.122604,-9.185251199999925],[125.12499980000007,-9.182290299999977],[125.13191780000011,-9.1790588],[125.13433160000011,-9.174362299999927],[125.14210090000006,-9.1735029],[125.14817750000009,-9.17080029999994],[125.155428,-9.17300789999996],[125.17139010000005,-9.172351899999967],[125.17495990000009,-9.174987899999962],[125.18058080000003,-9.165318699999943],[125.1865087000001,-9.159588499999927],[125.19276980000006,-9.158448],[125.19331430000011,-9.156212099999948],[125.19283980000012,-9.153919199999962],[125.18550230000005,-9.148856599999931],[125.18503720000001,-9.145397599999967],[125.17980100000011,-9.145474299999933],[125.17702930000007,-9.14325839999998],[125.17635360000008,-9.135706],[125.17311210000003,-9.133230699999956],[125.17222310000011,-9.123474099999953],[125.1706405000001,-9.122805699999958],[125.1731612000001,-9.118153699999937],[125.17945290000011,-9.11840529999995],[125.17793110000002,-9.114446399999963],[125.17899350000005,-9.112026599999979],[125.17618190000007,-9.1101996],[125.1733901,-9.105344299999956],[125.17689260000009,-9.103660299999945],[125.17913020000003,-9.086816699999929],[125.18079950000003,-9.083146],[125.18491210000002,-9.08003919999993],[125.184948,-9.074425899999937],[125.18756370000006,-9.073334599999953],[125.18386620000001,-9.062826599999937],[125.18477610000002,-9.059350199999926],[125.18852230000005,-9.057248899999934],[125.1881287000001,-9.048926599999959],[125.18928110000002,-9.04666],[125.18443780000007,-9.036999399999956],[125.18531220000011,-9.030278299999964],[125.186846,-9.0291484],[125.18468130000008,-9.025925399999949],[125.17165530000011,-9.01821119999994],[125.16952890000005,-9.014328],[125.16477140000006,-9.012602499999957],[125.15919540000004,-9.004717099999937],[125.14829940000004,-8.996465],[125.13879110000005,-8.996674],[125.13588,-8.995515799999964],[125.13350580000008,-8.988415799999927],[125.12987640000006,-8.986547599999938],[125.12426770000002,-8.976944299999957],[125.11698720000004,-8.969799899999941],[125.1120479000001,-8.967469],[125.10834250000005,-8.968719499999963],[125.10235530000011,-8.9752438],[125.10237370000004,-8.986904299999935],[125.09879690000002,-8.992773099999965],[125.09899730000006,-8.9998497],[125.09293900000011,-9.005072799999937],[125.09165260000009,-9.00875],[125.08731320000004,-9.012706799999933],[125.08209180000006,-9.014291199999946],[125.07659690000003,-9.021924399999932],[125.07323760000008,-9.022621299999969],[125.07071510000003,-9.026043399999935],[125.06707280000012,-9.028034499999933],[125.05795310000008,-9.026946799999962],[125.05238280000003,-9.03173279999993],[125.04266370000005,-9.031922599999973],[125.04026480000005,-9.034448899999973],[125.03828710000005,-9.033465599999943],[125.03620210000008,-9.036433099999954],[125.03096360000006,-9.038333299999977],[125.03168990000006,-9.041375699999946],[125.03030070000011,-9.043381099999976],[125.02507960000003,-9.043943299999967],[125.02286460000005,-9.042201899999952],[125.02078290000009,-9.043243899999936],[125.02073470000005,-9.049996799999974],[125.00962540000012,-9.050600299999928],[125.00802310000006,-9.058473699999979],[125.00309520000008,-9.063617199999953],[124.9917941000001,-9.064185099999975],[124.98872560000007,-9.060097699999972],[124.98392850000005,-9.066243799999938],[124.97531040000001,-9.063334399999974],[124.96923520000007,-9.056641399999933],[124.9670463000001,-9.056318699999963],[124.96130140000002,-9.058916899999929],[124.9559676,-9.058086599999967],[124.9541216,-9.056433099999936],[124.9525364000001,-9.048549599999944],[124.95035550000011,-9.048968099999968],[124.950442,-9.051733899999931],[124.94894250000004,-9.0526639],[124.94755250000003,-9.052300699999932],[124.9465202,-9.049015599999962],[124.94025870000007,-9.047177499999975],[124.9419971000001,-9.03715189999997],[124.93742970000005,-9.034825599999976],[124.93176460000007,-9.027975899999944],[124.93435520000003,-9.02274609999995],[124.93288610000002,-9.018495899999948],[124.93668280000009,-9.016812499999958],[124.93735620000007,-9.014567],[124.93659720000005,-9.006832699999961],[124.93823870000006,-9.00366],[124.93400040000006,-8.9989],[124.93398910000008,-8.995374399999946],[124.94118150000008,-8.984154],[124.94127930000002,-8.978611899999976],[124.94551020000006,-8.976392799999928],[124.94659910000007,-8.972888599999976],[124.9518256,-8.967283299999963],[124.95249280000007,-8.960156199999972],[124.94369770000003,-8.956902799999966],[124.9350045000001,-8.959009599999945],[124.93205540000008,-8.962044399999968],[124.9287786000001,-8.962540599999954],[124.92963530000009,-8.963575799999944],[124.92759290000004,-8.964210199999968],[124.9267172000001,-8.966474799999958],[124.920783,-8.96661419999998],[124.91868720000002,-8.97073839999996],[124.91558240000006,-8.968937399999959],[124.91200540000011,-8.970845399999973],[124.90780150000012,-8.969673799999953],[124.90643090000003,-8.971986099999981],[124.89997050000011,-8.972064599999953],[124.8980537000001,-8.973819299999946],[124.89440040000011,-8.973756699999967],[124.877951,-8.980322699999931],[124.87292610000009,-8.986531899999932],[124.86637170000006,-8.990090899999927],[124.86193460000004,-8.997942499999965],[124.86142030000008,-8.996281599999975],[124.86195260000011,-8.999126699999977],[124.8633837000001,-8.99902],[124.86571560000004,-9.003573599999982],[124.86062890000005,-8.998663299999976],[124.854391,-8.999372799999946],[124.85380280000004,-9.001500199999953],[124.85238650000008,-9.001615899999933],[124.8533073000001,-9.002741299999968],[124.85109970000008,-9.006847799999946],[124.84938560000012,-9.006856399999947],[124.8486229,-9.008541799999932],[124.84662620000006,-9.00563169999998],[124.83309450000002,-9.003981599999975],[124.83004810000011,-9.00238749999994],[124.82704,-9.002086],[124.82613520000007,-9.004260299999942],[124.82426740000005,-9.002172099999939],[124.81621770000004,-9.002392699999973],[124.80952170000012,-9.007154],[124.81058870000004,-9.011171899999965],[124.8087686,-9.014688699999965],[124.81024060000004,-9.016381099999933],[124.80973430000006,-9.017992899999967],[124.80718160000004,-9.014786899999933],[124.80717510000011,-9.012798],[124.80877830000009,-9.01400149999995],[124.80717060000006,-9.011315299999978],[124.80421810000007,-9.008834499999978],[124.80123340000011,-9.008559799999944],[124.79818260000002,-9.011820399999976],[124.79610090000006,-9.012101799999925],[124.79243630000008,-9.018230699999947],[124.79511260000004,-9.021826699999963],[124.797445,-9.022428899999966],[124.79683680000005,-9.026368099999956],[124.80079400000011,-9.029871199999945],[124.80203250000011,-9.037366899999938],[124.80564860000004,-9.0413016],[124.802475,-9.04723169999994],[124.80445860000009,-9.054536799999937],[124.8114395,-9.063486099999977],[124.81536910000011,-9.064814099999978],[124.82019720000005,-9.076262699999972],[124.81811330000005,-9.085855599999945],[124.81402440000011,-9.0895381],[124.81601450000005,-9.091342],[124.81422820000012,-9.095684799999958],[124.8154373000001,-9.098228399999925],[124.81355220000012,-9.10199849999998],[124.81658180000011,-9.105789399999935],[124.82137970000008,-9.142606299999954],[124.82054060000007,-9.1442017],[124.82595830000002,-9.143704399999933],[124.82692080000004,-9.145453399999951],[124.8248291000001,-9.152169199999946],[124.81726530000003,-9.159469699999931],[124.81509130000006,-9.163919599999929],[124.815596,-9.165761299999929],[124.81214160000002,-9.165091599999926],[124.81250380000006,-9.166545299999939],[124.80922770000006,-9.1682885],[124.81272260000003,-9.172574299999951],[124.82086580000009,-9.173889499999973],[124.82028240000011,-9.180694],[124.81665040000007,-9.185357099999976],[124.81872480000004,-9.189199199999962],[124.81995390000009,-9.199580199999957],[124.82720190000009,-9.205232599999931],[124.83583690000012,-9.21567159999995],[124.837616,-9.233971599999961],[124.848938,-9.250001],[124.85049420000007,-9.254353],[124.85046340000008,-9.265093299999933],[124.852743,-9.271165699999926],[124.85219250000011,-9.278111599999932],[124.85406230000001,-9.282802899999979],[124.85330140000008,-9.284018299999957],[124.85480940000002,-9.28490549999998],[124.848786,-9.293715],[124.84690150000006,-9.293724699999927],[124.8456192000001,-9.296518299999946],[124.8466797000001,-9.298214],[124.84459840000011,-9.297958499999936],[124.84508510000012,-9.299199099999953],[124.843729,-9.299436599999979],[124.84580920000008,-9.300736699999959],[124.84420010000008,-9.301136],[124.8457565000001,-9.302271799999971],[124.84274160000007,-9.305886],[124.843063,-9.309212799999955],[124.846297,-9.311320599999931],[124.844658,-9.3109494],[124.8451583000001,-9.316321799999969],[124.84754940000005,-9.315889399999946],[124.84783610000011,-9.316908699999942],[124.84533020000003,-9.319154599999933],[124.8425827000001,-9.317497299999957],[124.84417,-9.318889399999932],[124.84361270000011,-9.321636199999944],[124.844707,-9.3225661],[124.8424662000001,-9.328725199999951],[124.8403095000001,-9.32925169999993],[124.84116910000012,-9.330440599999974],[124.83979050000005,-9.332572299999981],[124.8377991000001,-9.331302599999958],[124.83753910000007,-9.335223699999972],[124.83531190000008,-9.334351499999968],[124.83039860000008,-9.3353996],[124.82393960000002,-9.340076199999942],[124.82000530000005,-9.339129],[124.81532090000007,-9.341069599999969],[124.8279169000001,-9.347423799999945],[124.83842620000007,-9.349683899999945],[124.84626580000008,-9.355962499999976],[124.84838020000007,-9.362279799999953],[124.84653580000008,-9.375624],[124.8427766000001,-9.383897499999932],[124.84499330000006,-9.387655799999948],[124.84990280000011,-9.388724099999934],[124.85718880000002,-9.384852699999954],[124.857777,-9.386332299999935],[124.861374,-9.386647799999935],[124.8625962000001,-9.382410499999935],[124.86280880000004,-9.384190399999966],[124.86405380000008,-9.383352099999968],[124.86518680000006,-9.38445809999996],[124.86549470000011,-9.382133099999976],[124.86784380000006,-9.38329589999995],[124.872169,-9.381076299999961],[124.87436160000004,-9.3864527],[124.88044750000006,-9.385570599999937],[124.88081080000006,-9.392484399999944],[124.88231850000011,-9.394682199999977],[124.88789370000006,-9.3896261],[124.88949040000011,-9.379492599999935],[124.89576530000011,-9.370916],[124.89814530000001,-9.360886799999946],[124.9014221000001,-9.369357899999954],[124.91540960000009,-9.372699699999941],[124.91558470000007,-9.377345399999967],[124.91989290000004,-9.381326799999954],[124.921458,-9.381110399999955],[124.92265680000003,-9.378645],[124.92372140000009,-9.379714899999954],[124.92815440000004,-9.3772319],[124.93112380000002,-9.377369399999964],[124.94525240000007,-9.389613499999939],[124.95157340000003,-9.391974199999936],[124.9613389000001,-9.393149599999958],[124.96626130000004,-9.389714199999958],[124.96833020000008,-9.3831127],[124.97582020000004,-9.378713699999935],[124.97675590000006,-9.373067699999979],[124.98236210000005,-9.370008],[124.98637530000008,-9.370753899999954],[124.98750340000004,-9.36365139999998],[124.99553760000003,-9.3575587],[124.995264,-9.344588299999941],[124.99378110000009,-9.340691499999934],[124.98807540000007,-9.334549299999935],[124.98819110000011,-9.330164399999944],[125.0023288000001,-9.319924499999956],[125.00423160000003,-9.313070799999934],[125.00649360000011,-9.31156649999997],[125.00812330000008,-9.302110899999946],[125.01409620000004,-9.302547299999958]]]},"properties":{"shapeName":"Belu","shapeISO":"","shapeID":"22746128B55494640478843","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[97.31302640000007,4.60284530000007],[97.30649540000007,4.620517500000062],[97.30131490000008,4.628187800000035],[97.29906390000008,4.629435],[97.28038220000008,4.630191500000024],[97.274839,4.631805900000074],[97.26998080000004,4.627645600000051],[97.26575230000003,4.62134750000007],[97.26050510000005,4.622099900000023],[97.25454910000008,4.649087800000075],[97.25431220000007,4.656964200000061],[97.25496970000006,4.661833],[97.25856270000008,4.663772],[97.27480480000008,4.659280500000023],[97.28844270000008,4.65923],[97.30567230000008,4.662292800000046],[97.31126810000006,4.666670100000033],[97.31267450000007,4.673470900000041],[97.31195470000006,4.681981500000063],[97.31762210000005,4.691226300000039],[97.32363130000005,4.697618600000055],[97.32769990000008,4.710803800000065],[97.32413,4.734515500000043],[97.31906520000007,4.740977400000077],[97.31757480000005,4.742362700000058],[97.31706780000007,4.736502900000062],[97.31454850000006,4.733880400000032],[97.28050030000009,4.733160500000054],[97.27056110000007,4.737078],[97.26948710000005,4.734020100000066],[97.27519650000005,4.731077600000049],[97.27214550000008,4.72646130000004],[97.26373520000004,4.731247500000052],[97.26117170000003,4.729954600000042],[97.25898490000009,4.724619500000074],[97.25678310000006,4.725349100000074],[97.25144250000005,4.735075900000027],[97.25216950000004,4.737650700000074],[97.25803080000009,4.739870800000062],[97.25838980000003,4.742996],[97.25270510000007,4.743533],[97.25292020000006,4.748052600000051],[97.24790950000005,4.75473130000006],[97.247162,4.760242800000071],[97.25336540000006,4.759572100000071],[97.25429130000003,4.76758940000002],[97.25741870000007,4.774853200000052],[97.26894610000005,4.788290200000063],[97.27333250000004,4.795478400000036],[97.28107590000008,4.815427500000055],[97.28152550000004,4.82418320000005],[97.27166710000006,4.834647700000062],[97.26847930000008,4.85086380000007],[97.25782110000006,4.867454100000032],[97.25154650000007,4.872109200000068],[97.24027810000007,4.874792400000047],[97.23203430000007,4.881691100000069],[97.223229,4.882701300000065],[97.17009020000006,4.899604100000033],[97.14365030000005,4.912785700000029],[97.13123730000007,4.913204900000039],[97.120843,4.911713100000043],[97.11610560000008,4.909688600000038],[97.11356710000007,4.904196500000069],[97.10699760000006,4.904909300000043],[97.10189850000006,4.901786700000059],[97.09897070000005,4.904886500000032],[97.09403920000005,4.906883500000049],[97.086928,4.905583400000069],[97.08125770000004,4.910686200000043],[97.07140760000004,4.910109400000067],[97.05560060000005,4.912382],[97.04831610000008,4.908155800000031],[97.04521440000008,4.908329500000036],[97.02421680000003,4.914666400000044],[97.01965990000008,4.913373100000058],[97.010745,4.905302600000027],[97.00863260000006,4.886563200000069],[97.00551780000006,4.880887800000039],[97.00314640000005,4.871797700000059],[96.99941960000007,4.866579900000033],[96.98812870000006,4.862871],[96.95768650000008,4.862562300000036],[96.94439220000004,4.864895400000023],[96.91146940000004,4.875761200000056],[96.893219,4.875933900000064],[96.87932690000008,4.87412930000005],[96.85449,4.880251900000076],[96.84410290000005,4.887873600000034],[96.82642940000005,4.910394200000042],[96.81933150000003,4.913726600000075],[96.80846160000004,4.921778900000049],[96.80474020000008,4.931155],[96.80103850000006,4.93455670000003],[96.78598190000008,4.942060800000036],[96.78125890000007,4.943455],[96.778571,4.947112400000037],[96.76408820000006,4.957745],[96.74995910000007,4.963088700000071],[96.74468040000005,4.966658300000063],[96.71971540000004,4.970867],[96.702866,4.969695600000023],[96.66143170000004,4.973995100000025],[96.65835340000007,4.964228700000035],[96.65746720000004,4.955386800000042],[96.66073140000003,4.95188],[96.67395870000007,4.952316900000028],[96.67578630000008,4.949764800000025],[96.67151410000008,4.938372400000048],[96.67682790000003,4.930293200000051],[96.67793820000009,4.926030700000069],[96.68224290000006,4.924154900000076],[96.68240020000007,4.919543400000066],[96.68383020000005,4.918286600000044],[96.683134,4.911722],[96.68602730000003,4.904129300000022],[96.68938180000004,4.900686700000051],[96.69038840000007,4.89048420000006],[96.68817520000005,4.877908900000023],[96.68930490000008,4.872756700000025],[96.68710670000007,4.864945300000045],[96.69231920000004,4.844896100000028],[96.690481,4.838819100000023],[96.69333450000005,4.832629600000075],[96.70597880000008,4.824665100000061],[96.70741080000005,4.819955900000025],[96.70510920000004,4.815234100000055],[96.70652840000008,4.81433480000004],[96.706238,4.810832400000038],[96.70139880000005,4.802733400000022],[96.70133890000005,4.778903300000025],[96.69423550000005,4.772216],[96.68798860000004,4.769547300000056],[96.68374990000007,4.75588920000007],[96.69170590000004,4.752952700000037],[96.692024,4.751324],[96.69627460000004,4.750836500000048],[96.69784970000006,4.746954900000048],[96.70248670000007,4.74492280000004],[96.70322440000007,4.746784700000035],[96.70665670000005,4.748175300000071],[96.709017,4.752508900000066],[96.710891,4.752703200000042],[96.71234420000008,4.747880800000075],[96.71559570000005,4.747264600000051],[96.71581530000003,4.743266100000028],[96.72101640000005,4.738773900000069],[96.726489,4.730524600000024],[96.72923060000005,4.729175],[96.72987470000004,4.726428700000042],[96.733994,4.723426700000061],[96.73893170000008,4.723428800000022],[96.74105210000005,4.717956700000059],[96.74518090000004,4.715717100000063],[96.74600930000008,4.712830500000052],[96.751359,4.71441150000004],[96.75818690000006,4.713479600000028],[96.75878670000009,4.715920200000028],[96.76401590000006,4.716573200000028],[96.76455120000008,4.714427800000067],[96.76851540000007,4.714069500000051],[96.77104680000008,4.716579900000056],[96.77319730000005,4.71538860000004],[96.77795050000003,4.716240700000071],[96.79194540000003,4.70988710000006],[96.79510060000007,4.701733500000046],[96.79490640000006,4.697127700000067],[96.79779090000005,4.691749100000038],[96.80166240000005,4.686816],[96.80498020000005,4.68658240000002],[96.807677,4.683823600000039],[96.80458750000008,4.677379300000041],[96.80546560000005,4.675818200000037],[96.81050340000007,4.674785500000041],[96.81183450000003,4.676005400000065],[96.81224250000008,4.680770100000075],[96.81637160000008,4.684837600000037],[96.81807450000008,4.684909900000036],[96.82081560000006,4.684181500000022],[96.82045130000006,4.681226],[96.82359050000008,4.679289500000039],[96.820697,4.674896600000068],[96.82305990000003,4.672475],[96.84023580000007,4.665978800000062],[96.85766810000007,4.665786100000048],[96.86946490000008,4.662006800000029],[96.90379710000008,4.657398100000023],[96.92896510000008,4.656734200000074],[96.95445950000004,4.651391400000023],[96.971791,4.643810500000029],[96.98321690000006,4.640643200000056],[96.99522,4.631771300000025],[97.01883120000008,4.617806200000075],[97.03073380000006,4.61993190000004],[97.04500970000004,4.607293500000026],[97.06130920000004,4.59951030000002],[97.07531390000008,4.595978800000069],[97.09485450000005,4.588276700000051],[97.11826260000004,4.583008900000038],[97.14478910000008,4.579262400000061],[97.19434160000009,4.575327900000048],[97.20366510000008,4.578059500000052],[97.21629360000009,4.584861500000045],[97.22569170000008,4.587347600000044],[97.23809230000006,4.587378300000069],[97.260937,4.583864400000039],[97.28294450000004,4.595771200000058],[97.29300520000004,4.598996],[97.29877340000007,4.600117800000021],[97.31331590000008,4.601778300000035],[97.31302640000007,4.60284530000007]]]},"properties":{"shapeName":"Bener Meriah","shapeISO":"","shapeID":"22746128B35825854245228","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[102.03080570000009,1.607798800000069],[102.010229,1.605143500000054],[102.00145480000003,1.597896800000058],[101.998181,1.583808300000044],[102.00121640000003,1.579125100000056],[102.00676680000004,1.577737400000046],[102.01051770000004,1.573292700000025],[102.01821470000004,1.552066500000024],[102.03144040000006,1.532813300000043],[102.04781,1.517137600000069],[102.06139820000004,1.501662200000055],[102.08804210000005,1.479747300000042],[102.10312160000007,1.470102800000063],[102.10707360000004,1.465777900000035],[102.12800550000009,1.454721300000074],[102.14541180000003,1.447918700000059],[102.18378550000006,1.437572600000067],[102.210481,1.43325660000005],[102.22871320000007,1.43188],[102.27293930000008,1.435396800000035],[102.28572760000009,1.432928],[102.293072,1.429526600000031],[102.29818730000005,1.426134200000035],[102.32007830000003,1.402911],[102.33815070000009,1.38922580000002],[102.35275950000005,1.370638400000075],[102.36673780000007,1.358400700000061],[102.38237680000009,1.338481200000047],[102.39750070000008,1.323623700000041],[102.42282860000006,1.307567300000073],[102.45114040000004,1.285685100000023],[102.47253420000004,1.27180450000003],[102.49587280000009,1.252746400000035],[102.49920310000005,1.252382300000022],[102.50110350000006,1.250499600000069],[102.50406970000006,1.250908100000061],[102.50815490000008,1.255366300000048],[102.506956,1.288606900000048],[102.50425620000004,1.307665],[102.49861690000006,1.332220300000074],[102.49619250000006,1.366757500000062],[102.49411440000006,1.376775],[102.49393680000009,1.394802900000059],[102.49282670000008,1.396463600000061],[102.49594380000008,1.425388200000043],[102.49545540000008,1.431844500000068],[102.49390130000006,1.434588700000063],[102.491761,1.434313400000065],[102.49090840000008,1.437670300000036],[102.48655690000004,1.440547700000025],[102.47929920000007,1.441330500000049],[102.48901680000006,1.443380600000069],[102.49671650000005,1.467989200000034],[102.48630820000005,1.479765],[102.46756090000008,1.511318300000028],[102.46135330000004,1.51814760000002],[102.42546620000007,1.528866700000037],[102.40770470000007,1.535740400000066],[102.34008670000009,1.549114800000041],[102.33578840000007,1.551743500000043],[102.33004250000005,1.551166300000034],[102.32724510000008,1.548653],[102.32115290000007,1.548653],[102.31567350000006,1.550668900000062],[102.30870210000006,1.551015300000074],[102.30016770000009,1.554310100000066],[102.28140270000006,1.553271],[102.26779740000006,1.558723800000053],[102.26634090000005,1.560997300000054],[102.26421840000006,1.56042],[102.26148320000004,1.563705900000059],[102.24218530000007,1.562435900000025],[102.23409490000006,1.563457200000073],[102.22849120000006,1.567569],[102.21410440000005,1.56666320000005],[102.18465580000009,1.569167500000049],[102.12735720000006,1.585028600000044],[102.07262510000004,1.602994300000034],[102.04592070000007,1.607425800000044],[102.03080570000009,1.607798800000069]]],[[[102.162007,1.190790800000059],[102.15965480000006,1.19511650000004],[102.16428270000006,1.21133130000004],[102.16409730000004,1.231769400000076],[102.15321780000005,1.261532300000056],[102.15183370000005,1.269127800000035],[102.14968260000006,1.268465800000058],[102.15167040000006,1.276519900000039],[102.15068560000009,1.294615400000055],[102.15507590000004,1.325640300000032],[102.15725270000007,1.33169520000007],[102.15919180000009,1.360561500000074],[102.14891120000004,1.37870810000004],[102.13563050000005,1.38214720000002],[102.12449010000006,1.389372900000069],[102.11695340000006,1.389811900000041],[102.10819110000006,1.392354600000033],[102.10036170000006,1.397842500000024],[102.08986150000004,1.401684],[102.06575150000003,1.419501400000058],[102.05744650000008,1.423233100000061],[102.04923290000005,1.429178300000046],[102.04294020000003,1.433971100000065],[102.03706810000006,1.44116020000007],[102.01700080000006,1.453288400000019],[102.00525670000007,1.458447],[102.00269570000006,1.461154400000055],[102.00364690000004,1.461776300000054],[102.00190910000003,1.465123900000037],[101.99762850000008,1.469404500000053],[101.98330520000007,1.479191200000059],[101.97982950000005,1.482996200000059],[101.97157790000006,1.487660900000037],[101.96923640000006,1.491009200000065],[101.95756410000007,1.498888300000033],[101.95357180000008,1.503817200000071],[101.94682830000005,1.507633800000065],[101.92475970000004,1.52904680000006],[101.91134060000007,1.536050200000034],[101.89798240000005,1.546762600000022],[101.89092270000003,1.549584100000061],[101.88520950000009,1.555133400000045],[101.87325610000005,1.56149060000007],[101.85029780000008,1.579508400000066],[101.82791310000005,1.599551600000041],[101.80678110000008,1.622182200000054],[101.76634340000004,1.655993400000057],[101.75698910000006,1.661835400000029],[101.74220260000004,1.668262800000036],[101.72595250000006,1.671998700000074],[101.72816930000005,1.660943600000053],[101.68998480000005,1.515800200000058],[101.62620940000005,1.517351800000029],[101.60012610000007,1.524514400000044],[101.578758,1.540005300000075],[101.57587190000004,1.53599],[101.51488310000008,1.481691],[101.48123270000008,1.482076600000028],[101.47551270000008,1.456392200000039],[101.42220860000003,1.458307],[101.42217150000005,1.431061900000032],[101.36643140000007,1.451548100000025],[101.34103680000004,1.46722120000004],[101.31741720000008,1.474730100000045],[101.29555470000008,1.473521500000061],[101.27055380000007,1.468419200000028],[101.24102180000006,1.465618900000038],[101.16848150000004,1.441612300000031],[101.15121820000007,1.432143600000074],[101.14004270000004,1.423273800000061],[101.13691380000006,1.419165200000066],[101.12373320000006,1.41713690000006],[101.12048590000006,1.413467],[101.11359280000005,1.413881400000037],[101.10229190000007,1.403875300000038],[101.09568710000008,1.40083020000003],[101.08584450000006,1.393177300000048],[101.07924,1.39047110000007],[101.07484090000008,1.384328],[101.05690890000005,1.373601800000074],[101.02800640000004,1.360567500000059],[101.01348980000006,1.351220400000045],[100.99512340000007,1.351504800000043],[100.97484890000004,1.349978700000065],[100.97126180000004,1.348434500000053],[100.95417330000004,1.348990700000058],[100.94754060000008,1.35122],[100.93524060000004,1.280247800000041],[100.93258910000009,1.248483100000044],[101.23051410000005,1.006868900000029],[101.23452270000007,1.009906600000022],[101.23668820000006,1.013642],[101.25087640000004,1.021269300000029],[101.26084090000006,1.034235500000023],[101.26653530000004,1.036824500000023],[101.27449550000006,1.044210600000042],[101.27804310000005,1.053884800000048],[101.282391,1.060398],[101.28417870000004,1.058271600000069],[101.2883,1.057000900000048],[101.28843490000008,1.052895300000046],[101.29091620000008,1.049903100000051],[101.29617090000005,1.051143800000034],[101.29779820000005,1.047457300000076],[101.30540040000005,1.044955300000026],[101.31011570000004,1.046591200000023],[101.31631370000008,1.042021100000056],[101.32159310000009,1.041635700000029],[101.32653110000007,1.035598800000059],[101.33191190000008,1.034995400000071],[101.33981360000007,1.028154700000073],[101.35119870000005,1.032752500000072],[101.35362370000007,1.032683200000065],[101.35876030000009,1.029029100000059],[101.36549640000004,1.032204700000023],[101.36769240000007,1.027278900000056],[101.37236320000005,1.026549100000068],[101.37637050000006,1.023832700000071],[101.39431750000006,1.02051270000004],[101.401234,1.023399600000062],[101.40875210000007,1.021859900000038],[101.41635430000008,1.02282230000003],[101.42250760000007,1.013958100000025],[101.43348330000003,1.016086100000052],[101.43988260000003,1.007377200000064],[101.44998690000006,1.006414900000038],[101.45595320000007,1.003335600000071],[101.457974,0.99813910000006],[101.45518330000004,0.986495200000036],[101.45595320000007,0.984859300000039],[101.47433320000005,0.975909800000068],[101.47765320000008,0.971242700000062],[101.48910460000008,0.966334900000049],[101.49778450000008,0.959678900000029],[101.51354720000006,0.954306100000053],[101.51826250000005,0.951419200000032],[101.52028330000007,0.948724700000071],[101.52241510000005,0.93543660000006],[101.52495220000009,0.93065230000002],[101.539421,0.925400400000058],[101.61201360000007,1.030612200000064],[101.71185010000005,1.197127100000046],[101.74048810000005,1.192774200000031],[101.81385670000009,1.16891750000002],[101.85069910000004,1.137892200000067],[101.86368250000004,1.119645600000069],[101.87389360000009,1.099985600000025],[101.88348080000009,1.068318600000055],[101.88415540000005,1.043088400000045],[101.87841480000009,1.01428420000002],[101.84057470000005,0.946856900000057],[101.90193680000004,0.947059700000068],[101.90932740000005,0.959535600000038],[101.91468390000006,0.96251890000002],[101.93773710000005,0.958857500000022],[101.96899430000008,0.960484800000074],[101.99308150000007,0.995215200000075],[102.01131350000009,1.012536700000055],[102.032624,1.03756930000003],[102.061908,1.076994],[102.09461310000006,1.12532310000006],[102.107215,1.137467700000059],[102.10980010000009,1.147411700000021],[102.13186780000007,1.17693410000004],[102.14261090000008,1.180601],[102.14628190000008,1.186671200000035],[102.15099780000008,1.186886900000047],[102.162007,1.190790800000059]]],[[[101.43128020000006,1.747309400000063],[101.43209260000003,1.754421],[101.42951270000003,1.746988400000021],[101.43063620000004,1.74617870000003],[101.43128020000006,1.747309400000063]]],[[[101.41217160000008,1.753638600000045],[101.41201420000004,1.75622530000004],[101.40911990000006,1.754127600000061],[101.41120440000009,1.751053500000069],[101.41217160000008,1.753638600000045]]],[[[101.418587,1.745547700000031],[101.41988220000007,1.753305300000022],[101.41845050000006,1.76429950000005],[101.41620440000008,1.766565600000035],[101.41507750000005,1.764788900000042],[101.41747620000007,1.756218200000035],[101.41633880000006,1.74619720000004],[101.41730040000004,1.744417800000065],[101.418587,1.745547700000031]]],[[[101.38085930000005,1.764833300000021],[101.381513,1.773561900000061],[101.38008060000004,1.784071400000073],[101.38171010000008,1.801851500000055],[101.38010720000005,1.804601800000057],[101.37705510000006,1.804929100000038],[101.37271370000008,1.802025],[101.37190750000008,1.799762800000053],[101.37156850000008,1.786022400000036],[101.37588420000009,1.768881100000044],[101.37860870000009,1.76370460000004],[101.38053510000003,1.762570500000038],[101.38085930000005,1.764833300000021]]],[[[101.40703930000006,1.760273100000063],[101.40912860000009,1.760917],[101.41122350000006,1.765925500000037],[101.41206710000006,1.796961700000054],[101.40695740000007,1.820569900000066],[101.40455620000006,1.827039200000058],[101.40182660000005,1.828174500000046],[101.39813090000007,1.827694500000064],[101.39378460000006,1.821234200000049],[101.39326790000007,1.794723400000066],[101.39677920000008,1.776936800000044],[101.40367110000005,1.764480500000047],[101.40414460000005,1.757852],[101.40574980000008,1.75688],[101.40703930000006,1.760273100000063]]],[[[101.40698870000006,1.835984600000074],[101.40540620000007,1.843249600000036],[101.40339060000008,1.84410680000002],[101.40391540000007,1.839727],[101.40698870000006,1.835984600000074]]],[[[101.36146820000005,1.888756500000056],[101.35382470000008,1.888446500000043],[101.35339430000005,1.884174700000074],[101.36102460000006,1.874658200000056],[101.36590260000008,1.870913200000075],[101.36951260000006,1.871549200000061],[101.36719090000008,1.881699300000037],[101.36146820000005,1.888756500000056]]],[[[101.57627170000006,2.072773600000062],[101.57988580000006,2.075864600000045],[101.57988840000007,2.077466500000071],[101.57351340000008,2.073739200000034],[101.57180830000004,2.06957710000006],[101.57627170000006,2.072773600000062]]],[[[101.57436450000006,2.074912500000039],[101.57723350000003,2.076723300000026],[101.57744850000006,2.078431600000044],[101.57128640000008,2.075024400000075],[101.57436450000006,2.074912500000039]]],[[[101.55603180000008,2.094165400000065],[101.55572150000006,2.099185300000045],[101.55306860000007,2.099723600000061],[101.54967070000004,2.099088400000028],[101.54339890000006,2.093652100000043],[101.54668860000004,2.093006],[101.55092840000003,2.089154400000041],[101.55485910000004,2.091070300000069],[101.55603180000008,2.094165400000065]]],[[[101.57536740000006,2.104065300000059],[101.57451960000009,2.104921],[101.57355950000004,2.102039200000036],[101.57652960000007,2.100752800000066],[101.57536740000006,2.104065300000059]]],[[[101.62843720000006,2.109128100000021],[101.63436290000004,2.111623],[101.62961730000006,2.111818300000039],[101.62735650000008,2.109079300000076],[101.62843720000006,2.109128100000021]]],[[[101.63496630000009,2.114939100000072],[101.63785370000005,2.115012700000023],[101.64178580000004,2.117782400000067],[101.64274520000004,2.120236900000066],[101.64132150000006,2.122303300000056],[101.63914760000006,2.122340700000052],[101.63663510000003,2.120762700000057],[101.63496630000009,2.114939100000072]]],[[[101.65523450000006,2.124876800000038],[101.64637230000005,2.117809700000066],[101.63467070000007,2.111534600000027],[101.62085740000003,2.105661300000065],[101.61160140000004,2.103552100000059],[101.60425380000004,2.100023200000066],[101.58879760000008,2.088868400000024],[101.58587520000003,2.085331900000028],[101.58324420000008,2.075420400000041],[101.58565430000004,2.073190400000044],[101.58072750000008,2.073906800000032],[101.57337760000007,2.068859700000075],[101.57165970000005,2.063803300000075],[101.57246220000007,2.062486600000057],[101.57043620000007,2.061263100000076],[101.5664,2.052922],[101.567152,2.051529500000072],[101.56412890000007,2.04774],[101.568516,2.039638300000036],[101.56688030000004,2.038755500000036],[101.56387080000007,2.04356660000002],[101.56135870000008,2.044961900000033],[101.55657920000004,2.043451800000071],[101.55620760000005,2.046993800000052],[101.54651640000009,2.03992640000007],[101.52828250000005,2.036666800000035],[101.51833840000006,2.028713900000071],[101.51733470000005,2.029980400000056],[101.519351,2.033139300000073],[101.51897840000004,2.036049],[101.516283,2.040922900000055],[101.50812450000006,2.049410200000068],[101.48513620000006,2.061462600000027],[101.47747140000007,2.064257400000031],[101.470557,2.064521200000058],[101.45093390000005,2.058100700000068],[101.44112040000005,2.053562200000044],[101.43248650000004,2.047579700000028],[101.40947090000009,2.025705800000026],[101.40564040000004,2.02004450000004],[101.40371920000007,2.013166100000035],[101.39782350000007,2.005129700000055],[101.39680360000006,1.995416300000045],[101.39990630000005,1.984887300000025],[101.39823040000005,1.973505200000034],[101.39784460000004,1.949775100000068],[101.39299830000004,1.936626400000023],[101.39389610000006,1.931362900000067],[101.39091460000009,1.920994400000041],[101.38667930000008,1.913005800000064],[101.38305530000008,1.910683300000073],[101.38375340000005,1.906330800000035],[101.39162320000008,1.887851400000045],[101.40356580000008,1.869012300000065],[101.41183910000007,1.851342200000033],[101.41869820000005,1.829120500000045],[101.42853830000007,1.77937],[101.43982740000007,1.760583600000075],[101.44648780000006,1.739678500000025],[101.45341350000007,1.72955010000004],[101.45330880000006,1.72631210000003],[101.45491660000005,1.725399300000049],[101.479345,1.719397100000037],[101.51125910000007,1.709388100000069],[101.52467580000007,1.703653300000042],[101.54317150000008,1.698873100000071],[101.55975770000003,1.695107200000052],[101.57519190000005,1.694833700000061],[101.57760350000007,1.693616300000031],[101.59348880000005,1.692481900000075],[101.60921870000004,1.68805930000002],[101.615654,1.688253],[101.635783,1.702896500000065],[101.64112240000009,1.710578600000076],[101.64947270000005,1.714209400000072],[101.653847,1.714658600000064],[101.65877960000006,1.718901100000039],[101.66320540000004,1.720210200000054],[101.67236950000006,1.730618400000026],[101.68001610000005,1.734351],[101.68403550000005,1.732726400000047],[101.69706590000004,1.739840500000071],[101.70189170000003,1.739631200000076],[101.70641880000005,1.741547],[101.71850610000007,1.757008700000029],[101.73168510000005,1.762553700000069],[101.73759190000004,1.779693200000054],[101.741087,1.797443200000032],[101.74802860000005,1.866126400000041],[101.75324390000009,1.889943300000027],[101.75485970000005,1.894392100000061],[101.77425210000007,1.91767980000003],[101.77778540000008,1.926475500000038],[101.77688720000003,1.930624800000032],[101.768843,1.930334500000072],[101.76799020000004,1.931499300000041],[101.78156930000006,1.934714300000053],[101.784992,1.937237800000048],[101.78549840000005,1.93946260000007],[101.779533,1.980343600000026],[101.77653040000007,1.988644300000033],[101.77021160000004,1.998164600000052],[101.75360580000006,2.01938750000005],[101.739714,2.040201400000058],[101.73248180000007,2.044867600000032],[101.72755040000004,2.04244790000007],[101.72141980000004,2.044481800000028],[101.72293040000005,2.045794500000056],[101.71537410000008,2.067002800000068],[101.71559590000004,2.079142900000022],[101.71083750000008,2.089824800000031],[101.70401130000005,2.096817500000043],[101.68904430000003,2.106758500000069],[101.65523450000006,2.124876800000038]]],[[[101.63542550000005,2.117835800000023],[101.63596430000007,2.119854900000064],[101.63707120000004,2.12140160000007],[101.63918150000006,2.122576300000048],[101.64107680000006,2.122658600000022],[101.63967430000008,2.124513600000057],[101.63659690000009,2.125052900000071],[101.63128620000003,2.123033],[101.62554440000008,2.117169500000045],[101.62554090000003,2.115140500000052],[101.63105870000004,2.114063200000032],[101.63457790000007,2.114929200000063],[101.63542550000005,2.117835800000023]]]]},"properties":{"shapeName":"Bengkalis","shapeISO":"","shapeID":"22746128B54232609151629","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[108.86076540000005,0.714256100000057],[108.85958960000005,0.714438500000028],[108.86023330000006,0.710300800000027],[108.85845310000008,0.707809700000041],[108.86499190000006,0.703091800000038],[108.86609850000008,0.70523350000002],[108.86514980000004,0.708629300000041],[108.86076540000005,0.714256100000057]]],[[[108.86018580000007,0.717179900000076],[108.86019210000006,0.718843700000036],[108.85896450000007,0.717453800000044],[108.86018580000007,0.717179900000076]]],[[[108.79024140000007,0.753894500000058],[108.78873020000009,0.756209600000034],[108.78670450000004,0.75408740000006],[108.78680090000006,0.752126],[108.78860160000005,0.751579400000026],[108.78593280000007,0.749264200000027],[108.78728320000005,0.748492500000054],[108.785772,0.74669190000003],[108.78694680000007,0.743907900000067],[108.78898740000005,0.744151700000032],[108.79197780000004,0.74746360000006],[108.79420240000007,0.746384],[108.79336040000004,0.748942700000043],[108.79619,0.749392900000032],[108.79573980000004,0.752093800000068],[108.79024140000007,0.753894500000058]]],[[[108.77002380000005,0.729519500000038],[108.77197880000006,0.732807500000035],[108.77197880000006,0.736006600000053],[108.76726890000003,0.748181200000033],[108.76682460000006,0.761599800000056],[108.76540280000006,0.763732600000026],[108.76238140000004,0.764354700000069],[108.75882670000004,0.760977800000035],[108.75909560000008,0.744255500000065],[108.76318630000009,0.734182500000031],[108.76833530000005,0.729164],[108.77002380000005,0.729519500000038]]],[[[108.70052260000006,0.804325800000072],[108.69139630000006,0.798730300000045],[108.69102590000006,0.794704300000035],[108.694214,0.784169700000064],[108.69490710000008,0.775644900000032],[108.70239220000008,0.766149900000073],[108.70613480000009,0.758249],[108.70710510000004,0.74383320000004],[108.71334270000006,0.732882700000062],[108.71781920000006,0.730962700000021],[108.72291980000006,0.732632400000057],[108.72734260000004,0.732051],[108.72859020000004,0.745912400000066],[108.727204,0.752427200000056],[108.71639220000009,0.760466800000074],[108.71542190000008,0.765318200000024],[108.710016,0.771971700000051],[108.70932290000007,0.775714200000039],[108.70655060000007,0.778070700000058],[108.71043180000004,0.788328100000058],[108.71098630000006,0.799971600000049],[108.70696650000008,0.803298300000051],[108.70052260000006,0.804325800000072]]],[[[108.791219,0.840257700000052],[108.78200710000004,0.840070700000069],[108.77747130000006,0.838340500000072],[108.77592820000007,0.833103300000062],[108.77826620000008,0.83212130000004],[108.77583460000005,0.830671700000039],[108.77709720000007,0.822020900000041],[108.78270850000007,0.821319500000072],[108.78658970000004,0.823096400000054],[108.79407140000006,0.835768600000051],[108.791219,0.840257700000052]]],[[[110.12946460000006,1.195681],[110.12669080000006,1.194614100000024],[110.12256330000008,1.196796200000051],[110.11639660000009,1.196489700000029],[110.10842040000006,1.198214700000051],[110.10360630000008,1.197457300000053],[110.09722860000005,1.199037300000043],[110.09677530000005,1.200949900000069],[110.095628,1.200809400000026],[110.09591850000004,1.203332300000056],[110.09239760000008,1.206744],[110.08657590000007,1.217887],[110.06509580000005,1.208984300000054],[110.06248320000009,1.215911400000039],[110.05820160000007,1.221179600000028],[110.06232890000007,1.225061800000049],[110.06842390000008,1.225997200000052],[110.07007840000006,1.228399300000035],[110.06768220000004,1.235914100000059],[110.06902890000003,1.235862700000041],[110.07006240000004,1.238164700000027],[110.069763,1.240639800000054],[110.06522620000004,1.251032500000065],[110.06720710000008,1.255362900000023],[110.06284740000007,1.26169340000007],[110.06560680000007,1.264266],[110.06265750000006,1.264457400000026],[110.05887160000009,1.270093600000052],[110.05464170000005,1.268469300000049],[110.05092830000007,1.264463600000056],[110.04583980000007,1.266744100000039],[110.04906410000007,1.269263500000022],[110.044485,1.271567600000026],[110.04409310000005,1.273375500000043],[110.04096050000004,1.270991],[110.03929380000005,1.275598500000058],[110.03778120000004,1.275171],[110.02444630000008,1.283640500000047],[110.01842960000005,1.284078300000033],[110.01494980000007,1.291565],[110.01107390000004,1.29208060000002],[110.00823490000005,1.295257800000059],[110.00033640000004,1.296712800000023],[109.99362,1.293643300000042],[109.98779470000005,1.295019400000058],[109.98339890000005,1.297830600000054],[109.98103220000007,1.296729300000038],[109.97941910000009,1.298453600000073],[109.96852340000004,1.34165420000005],[109.97051680000004,1.346952800000054],[109.96919010000005,1.352540500000032],[109.970052,1.355717700000071],[109.96815640000005,1.356681],[109.96828220000003,1.362788900000055],[109.96455080000004,1.364892700000041],[109.96459750000008,1.368488800000023],[109.96203060000005,1.372977100000071],[109.96688890000007,1.376355700000033],[109.96754970000006,1.385131500000057],[109.97034880000007,1.384981200000027],[109.97149040000005,1.38667270000002],[109.97024770000007,1.38700330000006],[109.97032110000004,1.389503400000024],[109.96408,1.392914300000029],[109.96456520000004,1.39638130000003],[109.96243750000008,1.400660400000049],[109.96325960000007,1.40411290000003],[109.95951810000008,1.403283900000019],[109.955519,1.407119400000056],[109.95501680000007,1.405991200000074],[109.94762330000009,1.407621400000039],[109.92909250000008,1.425530800000047],[109.91383,1.423174500000073],[109.89392060000006,1.414619400000049],[109.89329820000006,1.417280900000037],[109.88996090000006,1.418013400000063],[109.865171,1.41734],[109.85817830000008,1.418674700000054],[109.85628360000004,1.421389],[109.84668460000006,1.425862],[109.84349240000006,1.42169430000007],[109.84059060000004,1.423235900000066],[109.83728460000009,1.421919400000036],[109.833316,1.427427600000044],[109.83597690000005,1.441051300000026],[109.83367720000007,1.443027],[109.83349790000005,1.45213670000004],[109.831347,1.45250470000002],[109.83045440000006,1.456489400000066],[109.83407810000006,1.460005300000034],[109.833826,1.463583100000051],[109.83726890000008,1.469704],[109.83931010000003,1.482761900000071],[109.83735320000005,1.483806600000037],[109.83360840000006,1.482156400000065],[109.83232690000006,1.484017700000038],[109.82887420000009,1.481301200000075],[109.82925580000006,1.47864590000006],[109.82494580000008,1.474984200000051],[109.82426840000005,1.471720900000037],[109.81996730000009,1.473101400000076],[109.81953180000005,1.471695100000034],[109.81458990000004,1.471672300000023],[109.81340830000005,1.466747400000031],[109.81130550000006,1.465247],[109.80615760000006,1.466510600000049],[109.80343820000007,1.465071200000068],[109.80399730000005,1.468990100000042],[109.80126270000005,1.46952790000006],[109.79739970000008,1.482519500000024],[109.798424,1.484153500000048],[109.80185690000008,1.484164900000053],[109.80428130000007,1.485974500000054],[109.80238110000005,1.489422300000058],[109.80266380000006,1.49328010000005],[109.79924320000003,1.494987700000024],[109.79903680000007,1.497998600000074],[109.80031630000008,1.499375],[109.79832360000006,1.502479400000027],[109.79859830000004,1.504680900000039],[109.79605420000007,1.504597600000068],[109.79244920000008,1.508817100000044],[109.78922930000004,1.508009400000049],[109.78365090000005,1.510177900000031],[109.78061960000008,1.508819100000039],[109.77771220000005,1.515254],[109.77416940000006,1.517438300000038],[109.77345340000005,1.52032250000002],[109.77001160000009,1.522134900000026],[109.77065270000008,1.524674200000049],[109.76689150000004,1.532817200000068],[109.76205720000007,1.535276300000021],[109.75756190000004,1.535577100000069],[109.75576520000004,1.538358],[109.75076330000007,1.535152100000062],[109.75030060000006,1.537466800000061],[109.74907710000008,1.53355890000006],[109.750072,1.520432800000037],[109.74407170000006,1.505705],[109.73694470000004,1.497690900000066],[109.73364850000007,1.49688180000004],[109.72733970000007,1.487098300000071],[109.72390290000004,1.485533500000031],[109.71968620000007,1.476804100000038],[109.71233670000004,1.47380910000004],[109.70418520000004,1.475937600000066],[109.70166560000007,1.471873900000048],[109.70103470000004,1.467167700000061],[109.698483,1.466459900000075],[109.69575750000007,1.463295],[109.688554,1.463563400000055],[109.68443870000004,1.46219190000005],[109.68337860000008,1.458420800000056],[109.67871850000006,1.455118],[109.67952770000005,1.450078400000052],[109.67804250000006,1.448611600000049],[109.67038380000008,1.445709600000043],[109.664571,1.441124100000025],[109.65330070000005,1.43579550000004],[109.645594,1.439648600000055],[109.64289790000004,1.442935100000057],[109.63931130000009,1.443544700000075],[109.63041040000007,1.440475900000024],[109.62751920000005,1.436783200000036],[109.62169660000006,1.433315800000059],[109.60974520000008,1.432600600000058],[109.60847750000005,1.425429700000052],[109.60317970000006,1.417366700000059],[109.60639360000005,1.409026800000049],[109.60236210000005,1.407556800000066],[109.60138080000007,1.404733700000065],[109.60258050000004,1.400648800000056],[109.60909350000009,1.393568900000048],[109.60940460000006,1.388810100000057],[109.60379930000005,1.390945700000032],[109.59387220000008,1.38558450000005],[109.58576150000005,1.385614400000065],[109.57620480000008,1.381429500000024],[109.57580650000006,1.376350900000034],[109.58155840000006,1.37338440000002],[109.59205060000005,1.36983790000005],[109.59706820000008,1.37056750000005],[109.59836610000008,1.373344],[109.59986140000007,1.373601200000053],[109.610983,1.367821200000037],[109.61503890000006,1.363333],[109.61878320000005,1.355330600000059],[109.62643030000004,1.331900900000051],[109.62615670000008,1.32620460000004],[109.62149050000005,1.311787500000037],[109.61405940000009,1.301450300000056],[109.60720830000008,1.286038],[109.61078640000005,1.274967100000026],[109.61002350000007,1.260386900000071],[109.60613210000008,1.255131400000039],[109.60123780000004,1.238451600000076],[109.60156930000005,1.223868700000025],[109.59991210000004,1.216908700000033],[109.598255,1.212600200000054],[109.588975,1.201994400000046],[109.551855,1.200337300000058],[109.54021930000005,1.193726800000036],[109.53735410000007,1.19372530000004],[109.52639770000008,1.176678500000037],[109.52078250000005,1.162668200000041],[109.51826480000005,1.142796800000042],[109.51976010000004,1.132811300000071],[109.51549530000005,1.118113500000049],[109.50740810000008,1.108046800000068],[109.494545,1.078253400000051],[109.48312380000004,1.063474400000075],[109.47621150000003,1.035064800000043],[109.46921210000005,1.020333600000072],[109.46424880000006,1.023829],[109.44254040000004,1.033200800000031],[109.43854790000006,1.035943700000075],[109.4354,1.042490500000042],[109.42465340000007,1.045036100000061],[109.42132230000004,1.051756600000033],[109.41264670000004,1.05120990000006],[109.40760090000003,1.05254240000005],[109.39973390000006,1.046632600000066],[109.38879990000004,1.044222500000046],[109.38051460000008,1.044127100000026],[109.37639830000006,1.046690700000056],[109.36344640000004,1.046614300000044],[109.35323710000006,1.041819800000042],[109.34637260000005,1.045942700000069],[109.34295110000005,1.044772300000034],[109.33980680000008,1.046832100000074],[109.332327,1.044789200000025],[109.32721660000004,1.046392700000069],[109.31696610000006,1.045343800000069],[109.31196730000005,1.046170700000062],[109.29347120000006,1.040973200000053],[109.27931490000009,1.042788200000075],[109.27197580000006,1.041952300000048],[109.250997,1.03546410000007],[109.24160090000004,1.02338050000003],[109.23589640000006,1.018825900000024],[109.23094080000004,1.001558100000068],[109.23357060000006,0.994651100000056],[109.22991010000004,0.988810500000056],[109.22639870000006,0.9876],[109.21682850000008,0.98906560000006],[109.21315060000006,0.987714200000028],[109.21099380000004,0.981490500000064],[109.20520090000008,0.978986900000052],[109.20372840000005,0.976293700000042],[109.20382610000007,0.972243100000071],[109.19553810000008,0.966514600000039],[109.18756950000005,0.96403],[109.17944730000005,0.965791300000035],[109.17621180000003,0.964820900000063],[109.17637810000008,0.962462],[109.17154960000005,0.961640100000068],[109.16898120000008,0.955476],[109.166721,0.954037700000072],[109.16538540000005,0.950441900000044],[109.16261160000005,0.949106400000062],[109.16240610000006,0.947873500000071],[109.16538540000005,0.946846200000039],[109.16548820000008,0.945613300000048],[109.16026710000006,0.940935300000035],[109.16269030000007,0.937973700000043],[109.16026710000006,0.934339],[109.160671,0.918319300000064],[109.15744010000009,0.903107300000045],[109.14707440000006,0.902299500000026],[109.14424740000004,0.900684100000035],[109.14168960000006,0.898664800000063],[109.13240090000005,0.883991300000048],[109.12445830000007,0.882241200000067],[109.11665040000008,0.87510640000005],[109.09268810000009,0.862048300000026],[109.05851410000008,0.850935600000071],[109.04608390000004,0.839292400000033],[109.04094280000004,0.831511200000023],[109.03552380000008,0.778710600000068],[109.03135530000009,0.771624100000054],[109.02232360000005,0.766066200000068],[109.013153,0.764120900000023],[109.00370440000006,0.764259800000048],[108.99536750000004,0.766899900000055],[108.98028,0.774991300000067],[108.97051610000005,0.776809],[108.96629610000008,0.786619400000063],[108.96613430000008,0.800061200000073],[108.96134160000008,0.808461900000054],[108.95113990000004,0.810084900000049],[108.94835760000007,0.812635300000068],[108.94224110000005,0.812635300000068],[108.93787720000006,0.807865100000072],[108.935067,0.807952100000023],[108.91495230000004,0.818107400000031],[108.90945660000006,0.832027],[108.906733,0.834677500000055],[108.89716180000005,0.83361160000004],[108.87441040000004,0.840837700000066],[108.86882440000005,0.836481400000025],[108.86586040000009,0.838197300000047],[108.86493020000006,0.835544300000038],[108.85269020000004,0.825727400000062],[108.84843060000009,0.82464340000007],[108.847984,0.822435600000063],[108.84063380000003,0.814687200000037],[108.84356660000009,0.809911200000045],[108.84315830000008,0.807536700000071],[108.84684650000008,0.80446610000007],[108.84619090000007,0.794573400000047],[108.85033360000006,0.791459100000054],[108.85168110000006,0.785996],[108.86067870000005,0.792067100000054],[108.862201,0.791386600000067],[108.87663880000008,0.777041100000019],[108.88243080000007,0.76499640000003],[108.88448870000008,0.755215],[108.88449660000003,0.745037300000035],[108.87896060000008,0.728008100000068],[108.87626880000005,0.724002400000074],[108.87309180000005,0.722806900000023],[108.87218040000005,0.712252300000046],[108.87389350000007,0.709718900000041],[108.87284390000008,0.70786860000004],[108.87550810000005,0.70839090000004],[108.88577260000005,0.702744600000074],[108.89703740000004,0.693383200000028],[108.91573360000007,0.664506],[108.92327860000006,0.645185200000071],[108.92275860000007,0.642618200000072],[108.92430920000004,0.641005200000052],[108.92640330000006,0.629668400000071],[108.92846120000007,0.625901700000043],[108.92775960000006,0.621089],[108.93040280000008,0.599176700000044],[108.930005,0.584841800000049],[108.92622260000007,0.567214],[108.92629190000008,0.56115310000007],[108.92787280000005,0.560687900000062],[108.92587180000004,0.558086700000047],[108.926939,0.55641920000005],[108.92904,0.559020500000031],[108.93050740000007,0.558520200000032],[108.92954020000008,0.553417800000034],[108.93174130000006,0.553217700000062],[108.93254170000006,0.551550200000065],[108.92997380000008,0.55255070000004],[108.92890660000006,0.551383500000043],[108.93100760000004,0.549049],[108.93347540000008,0.548648800000024],[108.93137340000004,0.54619340000005],[108.93431560000005,0.546049],[108.934821,0.544244],[108.93637340000004,0.544749400000057],[108.93987520000007,0.54204180000005],[108.946232,0.540705100000025],[108.94755050000003,0.538405100000034],[108.95038950000009,0.539544800000044],[108.94939080000006,0.534217400000045],[108.95152750000005,0.529594],[108.95329580000003,0.529759800000022],[108.95421680000004,0.527899400000024],[108.95679560000008,0.528028300000074],[108.95863760000009,0.531362300000069],[108.96171370000008,0.528507200000035],[108.96526880000005,0.52920720000003],[108.96655820000007,0.532172800000069],[108.96753440000003,0.528709800000058],[108.97136580000006,0.52926240000005],[108.97020530000009,0.532393800000023],[108.97401040000005,0.537535400000024],[108.978202,0.538583300000028],[108.97907520000007,0.542032600000027],[108.98256820000006,0.540242400000068],[108.98322310000009,0.545263600000055],[108.98173860000009,0.547141100000033],[108.98868090000008,0.55107060000006],[108.99012170000009,0.553777700000069],[108.993702,0.547577700000033],[108.99313440000009,0.544608700000026],[108.99601610000008,0.541683300000045],[108.99867950000004,0.541683300000045],[108.99881050000005,0.544041],[109.003133,0.546005800000046],[109.00147390000006,0.550197400000059],[109.00264350000003,0.553554700000063],[109.00885280000006,0.557663600000069],[109.00741190000008,0.561636900000053],[109.01112320000004,0.560632600000019],[109.01073020000007,0.56421290000003],[109.01313160000007,0.565741100000025],[109.01470350000005,0.564605900000061],[109.016319,0.566396],[109.02134010000009,0.566876300000047],[109.02321760000007,0.569277700000043],[109.02719080000008,0.56774960000007],[109.02780210000009,0.570282],[109.02937390000005,0.569059400000071],[109.03146970000006,0.570063700000048],[109.03033450000004,0.574532500000032],[109.03383540000004,0.579408700000045],[109.03330350000005,0.587004500000035],[109.03924930000005,0.593896800000039],[109.04876120000006,0.596906900000022],[109.07154750000007,0.598622700000021],[109.07829010000006,0.604341800000043],[109.10131720000004,0.630439200000069],[109.10796950000008,0.644556500000022],[109.12401330000006,0.652352600000029],[109.13334450000008,0.659757400000046],[109.13993660000006,0.680195900000058],[109.14349610000005,0.684618800000067],[109.14478750000006,0.688943100000074],[109.14905320000008,0.693682900000056],[109.15711080000005,0.696052700000052],[109.19265880000006,0.700792500000034],[109.200164,0.705896],[109.21174880000007,0.72494510000007],[109.21524460000006,0.727129500000046],[109.233237,0.721936600000049],[109.24954130000003,0.72972690000006],[109.25279760000006,0.732344800000021],[109.259805,0.746347400000047],[109.26587750000004,0.750531100000046],[109.275146,0.742894400000068],[109.274378,0.736138500000038],[109.27617260000005,0.727096600000039],[109.28189150000009,0.716792300000066],[109.28644920000005,0.712871300000074],[109.29130980000008,0.711347700000033],[109.30619180000008,0.719597100000044],[109.33589940000007,0.758730100000037],[109.35057070000005,0.765956600000038],[109.35817720000006,0.766797700000041],[109.36220750000007,0.764915],[109.36706510000005,0.756134700000075],[109.37354680000004,0.759672800000033],[109.376469,0.75904],[109.37735430000004,0.755870100000038],[109.38480380000004,0.751095500000019],[109.39579010000006,0.733937400000059],[109.40708160000008,0.730871],[109.414444,0.732770300000027],[109.43180080000008,0.740874200000064],[109.44152830000007,0.751800200000048],[109.47143550000004,0.777016600000024],[109.47678380000008,0.77706180000007],[109.47991940000009,0.768206900000052],[109.48563390000004,0.759569],[109.48530580000005,0.757488700000067],[109.49475860000007,0.744111300000043],[109.50481410000003,0.733329800000035],[109.50973510000006,0.731186100000059],[109.51982880000008,0.732027100000039],[109.52257540000005,0.730769800000076],[109.52491760000004,0.72812870000007],[109.52991490000005,0.714425700000049],[109.53289030000008,0.711558500000024],[109.54104610000007,0.712607600000069],[109.555481,0.71968940000005],[109.581131,0.71791630000007],[109.60337070000008,0.729818900000055],[109.61203770000009,0.731600600000036],[109.62754820000004,0.741106500000058],[109.64016150000003,0.745721800000069],[109.66201930000005,0.749404],[109.67344330000009,0.756708700000047],[109.67596920000005,0.760522600000058],[109.67731850000007,0.769274200000041],[109.675595,0.798850900000048],[109.676346,0.80544610000004],[109.68690660000004,0.840251],[109.69530990000004,0.847670900000026],[109.70149760000004,0.849837],[109.732338,0.842271],[109.74172970000006,0.841493],[109.74547580000007,0.84525560000003],[109.77088930000008,0.843464400000073],[109.77270510000005,0.840515700000026],[109.78315730000008,0.84062410000007],[109.78454590000007,0.841130600000042],[109.78607180000006,0.846005700000035],[109.79331970000004,0.848890900000072],[109.80180360000008,0.849731900000052],[109.80947110000005,0.846575200000075],[109.83990480000006,0.862701600000037],[109.85019680000005,0.871682900000053],[109.85574340000005,0.885412900000063],[109.85584260000007,0.900155900000073],[109.85852810000006,0.905926500000021],[109.87465670000006,0.917684400000041],[109.89913940000008,0.929035300000066],[109.90871430000004,0.935176600000034],[109.92460630000005,0.959362100000021],[109.92613980000004,0.965015100000073],[109.92555240000007,0.972703200000069],[109.91918950000007,0.994438],[109.92218020000007,1.001257800000076],[109.92895510000005,1.004676600000039],[109.92988590000004,1.010221],[109.92687990000007,1.015937300000076],[109.91166690000006,1.028998300000069],[109.91098790000007,1.033267500000022],[109.91704560000005,1.044419600000026],[109.92561340000009,1.05268650000005],[109.93121340000005,1.052695400000061],[109.95293430000004,1.034334100000024],[109.96109770000004,1.030833600000051],[109.97933960000006,1.035391900000036],[109.98068190000004,1.030536700000027],[109.98258690000006,1.02937],[109.98806520000005,1.029302500000028],[109.99611580000004,1.026239900000064],[110.00361490000006,1.02678880000002],[110.01043950000007,1.023976100000027],[110.02227190000008,1.022057600000039],[110.03277730000008,1.025623900000028],[110.03511430000009,1.020281],[110.03740380000005,1.019182],[110.04002990000004,1.021128800000042],[110.04309490000009,1.028267100000051],[110.05475090000004,1.037004200000069],[110.06902660000009,1.03264930000006],[110.09073850000004,1.028435900000034],[110.09249730000005,1.026781300000039],[110.09282980000006,1.019839600000068],[110.09932770000006,1.022036900000046],[110.10629270000004,1.020240100000024],[110.11600490000006,1.020710200000053],[110.12200980000006,1.019483800000046],[110.12807460000005,1.019398600000045],[110.13201140000007,1.021415500000046],[110.13578030000008,1.024979100000053],[110.13786320000008,1.031563600000027],[110.12808230000007,1.043548100000066],[110.11539460000006,1.055478500000049],[110.112709,1.061212900000044],[110.11241150000006,1.066730300000074],[110.11521150000004,1.073966],[110.12611390000006,1.079031],[110.12828830000007,1.081382500000075],[110.12959290000003,1.087180300000057],[110.12653190000009,1.090401800000052],[110.11740610000004,1.093623800000046],[110.10472110000006,1.103750700000035],[110.08632660000006,1.105623200000025],[110.07889560000007,1.109576],[110.07341,1.116576700000053],[110.07123570000005,1.128696800000057],[110.07459260000007,1.138003800000035],[110.08213810000007,1.144841600000063],[110.09891510000006,1.148631100000046],[110.10234070000007,1.151679200000046],[110.10619610000003,1.15872],[110.12224960000009,1.175276900000028],[110.12946460000006,1.195681]]]]},"properties":{"shapeName":"Bengkayang","shapeISO":"","shapeID":"22746128B91583763468968","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.18089620000006,-4.236030699999958],[103.17107590000006,-4.240961299999981],[103.15518840000004,-4.241062199999931],[103.15006310000007,-4.246875099999954],[103.13477470000004,-4.255403699999931],[103.12603220000005,-4.253944799999942],[103.117489,-4.247948899999926],[103.11491810000007,-4.247914499999979],[103.10473270000006,-4.254115499999955],[103.09686410000006,-4.251738299999943],[103.094238,-4.252286599999934],[103.08350660000008,-4.264250199999935],[103.07579350000003,-4.262491699999941],[103.06965320000006,-4.256755299999952],[103.06745870000009,-4.250422599999979],[103.06774280000008,-4.240709399999957],[103.06471230000005,-4.237234599999965],[103.05860210000009,-4.234168],[103.05669380000006,-4.226275399999963],[103.05153860000007,-4.219235099999935],[103.06108740000008,-4.214983899999936],[103.06422310000005,-4.211714899999947],[103.06136090000007,-4.196036099999958],[103.04886110000007,-4.191777799999954],[103.045319,-4.186071399999946],[103.04532850000004,-4.182282799999939],[103.040197,-4.179756299999951],[103.02628990000005,-4.167528899999979],[103.02236340000007,-4.168201299999964],[103.01300780000008,-4.166640399999949],[103.00955710000005,-4.163239799999928],[102.999669,-4.1581752],[102.98786490000003,-4.169697699999972],[102.96613130000009,-4.166793899999959],[102.95687410000005,-4.168259899999953],[102.95172080000003,-4.17183],[102.94655220000004,-4.1803198],[102.93495790000009,-4.185419],[102.92236480000008,-4.181794899999943],[102.91708540000008,-4.181780799999956],[102.909439,-4.1752629],[102.90499680000005,-4.176165199999957],[102.901426,-4.179046799999981],[102.89981420000004,-4.182019899999943],[102.90057920000004,-4.197946099999967],[102.89876760000004,-4.200408],[102.893145,-4.201611399999933],[102.89124660000004,-4.203428499999973],[102.88758070000006,-4.222534],[102.88073780000008,-4.2371027],[102.88081760000006,-4.242246499999965],[102.88254080000007,-4.246156599999949],[102.88249350000007,-4.255884199999969],[102.88503020000007,-4.259713599999941],[102.88531940000007,-4.263211799999965],[102.87500550000004,-4.273297199999945],[102.86178840000008,-4.283166399999971],[102.85767660000005,-4.310494099999971],[102.855342,-4.317876799999965],[102.85022090000007,-4.325434199999961],[102.84609990000007,-4.340165099999979],[102.84263770000007,-4.3447728],[102.83687440000006,-4.344304],[102.80011260000003,-4.359912299999962],[102.80289380000005,-4.363562],[102.80548660000005,-4.371667],[102.81158530000005,-4.378559],[102.81492920000005,-4.380320199999971],[102.815701,-4.3827305],[102.84910260000004,-4.407313099999953],[102.87422330000004,-4.430976899999962],[102.87711060000004,-4.430663299999935],[102.87565490000009,-4.432256399999972],[102.88657140000004,-4.444218699999965],[102.89999890000007,-4.4660851],[102.90145080000008,-4.473827899999947],[102.89749190000003,-4.4835002],[102.89989610000003,-4.489300399999934],[102.90452840000006,-4.492000299999972],[102.92746170000004,-4.498482199999955],[102.97711230000004,-4.510743699999978],[103.00987330000004,-4.522236599999928],[103.01598760000007,-4.525279799999964],[103.01901790000005,-4.5285669],[103.03658080000008,-4.534182],[103.04661340000007,-4.539758699999936],[103.05733480000004,-4.547063399999956],[103.06548120000008,-4.556228699999963],[103.07020330000006,-4.559131599999944],[103.07753920000005,-4.5582787],[103.08023140000006,-4.559707499999945],[103.082798,-4.5568254],[103.08512970000004,-4.556373099999973],[103.08646590000006,-4.550048499999946],[103.08349230000005,-4.536192099999937],[103.08510630000006,-4.528214299999945],[103.09519970000008,-4.51604],[103.09835920000006,-4.510158199999978],[103.09732040000006,-4.506579299999942],[103.10448030000003,-4.493765899999971],[103.107625,-4.493563699999925],[103.11188710000005,-4.486214599999926],[103.11703010000008,-4.483728399999961],[103.128535,-4.465929299999971],[103.13948780000004,-4.456384499999956],[103.14943730000005,-4.444884499999944],[103.154459,-4.432519499999955],[103.15187590000005,-4.425209499999937],[103.15309580000007,-4.422921299999928],[103.16226080000007,-4.416610899999966],[103.16418590000006,-4.407967699999972],[103.16796710000006,-4.400256799999966],[103.17578620000006,-4.397780399999931],[103.19380920000003,-4.397012299999972],[103.20119240000008,-4.391688],[103.201926,-4.3877579],[103.19905760000006,-4.3814038],[103.20427070000005,-4.374877499999968],[103.20174970000005,-4.367964299999926],[103.20314330000008,-4.3612105],[103.19849160000007,-4.352739399999962],[103.19740070000006,-4.3451891],[103.19881190000007,-4.320320599999945],[103.20313560000005,-4.316024399999947],[103.20012810000009,-4.309628699999962],[103.200686,-4.307877799999972],[103.21928660000003,-4.307029499999942],[103.22467330000006,-4.297403799999927],[103.22894440000005,-4.293028399999969],[103.23993750000005,-4.291327599999931],[103.24606240000008,-4.2944362],[103.251634,-4.299586799999929],[103.25662870000008,-4.292750199999944],[103.25969680000009,-4.292073099999925],[103.26822880000009,-4.294393],[103.28014340000004,-4.290751299999954],[103.28253750000005,-4.286686499999973],[103.27997510000006,-4.283304799999939],[103.28298540000009,-4.277832699999976],[103.285646,-4.267846299999974],[103.28813360000004,-4.265974799999981],[103.28833380000003,-4.2630515],[103.28500650000007,-4.257180199999937],[103.268467,-4.255665],[103.26114880000006,-4.2487057],[103.25060350000007,-4.244957899999974],[103.23456060000007,-4.245779399999947],[103.21726150000006,-4.240383],[103.21413,-4.240797599999951],[103.204082,-4.247515399999941],[103.20079920000006,-4.247577799999931],[103.18713690000004,-4.238432099999955],[103.18089620000006,-4.236030699999958]]]},"properties":{"shapeName":"Bengkulu Selatan","shapeISO":"","shapeID":"22746128B13801645983989","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[102.61428480000006,-3.800461],[102.61063540000004,-3.7976278],[102.60645840000007,-3.781233099999952],[102.58266030000004,-3.7401596],[102.57828840000008,-3.713867899999968],[102.57873220000005,-3.704814399999975],[102.575363,-3.695118799999932],[102.577239,-3.683500299999935],[102.57594330000006,-3.682064799999978],[102.56346140000005,-3.678604499999949],[102.55447320000007,-3.672070799999972],[102.55292510000004,-3.670225799999969],[102.55279110000004,-3.662595899999928],[102.55118830000004,-3.661211],[102.54658990000007,-3.661428799999953],[102.54297190000005,-3.6593047],[102.52833640000006,-3.656939399999942],[102.52862430000005,-3.643821199999934],[102.52398720000008,-3.631228799999974],[102.51689880000004,-3.626478],[102.51321860000007,-3.621187199999952],[102.51920190000004,-3.612465],[102.51272820000008,-3.601921699999934],[102.51407240000003,-3.594335],[102.51182760000006,-3.586419399999954],[102.50732160000007,-3.583468799999935],[102.50295910000006,-3.575899499999935],[102.47863620000004,-3.552673199999958],[102.45643390000004,-3.549026599999934],[102.45443380000006,-3.547329699999977],[102.44309180000005,-3.5349631],[102.44294660000008,-3.5275336],[102.42920270000008,-3.510829699999931],[102.42738450000007,-3.499934099999962],[102.42167470000004,-3.494045799999981],[102.4037,-3.508145],[102.3833,-3.520033],[102.3442,-3.526683],[102.3357,-3.530286],[102.3266,-3.537251],[102.3115,-3.552545],[102.2915,-3.56299],[102.2779,-3.577327],[102.2675,-3.591786],[102.2407,-3.592587],[102.2243,-3.597714],[102.2204,-3.604572],[102.2142,-3.62515],[102.2096,-3.6466],[102.20547390000007,-3.653703699999937],[102.22261810000003,-3.667291399999954],[102.23487020000005,-3.682290199999954],[102.24362270000006,-3.696290099999942],[102.24508620000006,-3.705860399999949],[102.236,-3.711352],[102.23301150000003,-3.715451199999961],[102.25008080000003,-3.738427899999976],[102.25489160000006,-3.736842499999966],[102.2622,-3.731254],[102.2754,-3.727211],[102.2817,-3.736697],[102.2847,-3.737451],[102.2896,-3.741681],[102.2973,-3.740237],[102.3041,-3.735125],[102.3141,-3.731455],[102.3279,-3.730794],[102.3317,-3.731861],[102.3343,-3.768528],[102.34,-3.783138],[102.3498,-3.796104],[102.3553,-3.806689],[102.3586,-3.821898],[102.3628,-3.828454],[102.3601,-3.831239],[102.358,-3.838345],[102.3595,-3.841563],[102.3838,-3.856782],[102.3982,-3.858215],[102.40597660000009,-3.8610348],[102.4139,-3.860452],[102.4273,-3.854982],[102.42969280000005,-3.851828299999966],[102.438009,-3.846963099999925],[102.45995590000007,-3.847923099999946],[102.47251930000004,-3.846395399999949],[102.49164330000008,-3.837390399999947],[102.49542060000005,-3.836907199999928],[102.49796460000005,-3.83886],[102.5107,-3.838497],[102.53290060000006,-3.829556299999979],[102.55219020000004,-3.8354856],[102.55416780000007,-3.833673199999964],[102.55603650000006,-3.8211851],[102.55922570000007,-3.817581399999938],[102.56126840000007,-3.809126099999958],[102.56347940000006,-3.8067782],[102.573538,-3.802890799999943],[102.57670860000007,-3.805906599999958],[102.58557560000008,-3.804929299999969],[102.60679820000007,-3.810170699999958],[102.60939620000005,-3.803412899999955],[102.61126550000006,-3.801043199999981],[102.61428480000006,-3.800461]]]},"properties":{"shapeName":"Bengkulu Tengah","shapeISO":"","shapeID":"22746128B10565201236664","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[102.38615760000005,-5.471439099999941],[102.383912,-5.472066],[102.384496,-5.475888],[102.387184,-5.47184],[102.38615760000005,-5.471439099999941]]],[[[102.391965,-5.440603],[102.387905,-5.440726],[102.3861,-5.442845],[102.392592,-5.44604],[102.396403,-5.442703],[102.391965,-5.440603]]],[[[102.162298,-5.28795],[102.159126,-5.284205],[102.153866,-5.281472],[102.14635,-5.282991],[102.140598,-5.291047],[102.138305,-5.291297],[102.135044,-5.295855],[102.135416,-5.301777],[102.138564,-5.302322],[102.139221,-5.304112],[102.137719,-5.310313],[102.135547,-5.312892],[102.128737,-5.313724],[102.12366,-5.312549],[102.114415,-5.314066],[102.105964,-5.317054],[102.102361,-5.320323],[102.095269,-5.323288],[102.092893,-5.327456],[102.094773,-5.330871],[102.093124,-5.331469],[102.093899,-5.335289],[102.09241,-5.337068],[102.089177,-5.337023],[102.086071,-5.340657],[102.087962,-5.357534],[102.093238,-5.360133],[102.094972,-5.359051],[102.100431,-5.361409],[102.113194,-5.371539],[102.123501,-5.377114],[102.131361,-5.377984],[102.142254,-5.382805],[102.149576,-5.388882],[102.150697,-5.38819],[102.16132,-5.394433],[102.164207,-5.403987],[102.168265,-5.41029],[102.182022,-5.415169],[102.187299,-5.419283],[102.188886,-5.419229],[102.191727,-5.414094],[102.193756,-5.413165],[102.202798,-5.416826],[102.205614,-5.425652],[102.213269,-5.435076],[102.216781,-5.443376],[102.223797,-5.452388],[102.223362,-5.454885],[102.226514,-5.457943],[102.228668,-5.462814],[102.235854,-5.459531],[102.243411,-5.463942],[102.245651,-5.47313],[102.252093,-5.480428],[102.248517,-5.48921],[102.247917,-5.496401],[102.259452,-5.502269],[102.26587,-5.511582],[102.269249,-5.511264],[102.271697,-5.514622],[102.275296,-5.51423],[102.275136,-5.506218],[102.270248,-5.499381],[102.272785,-5.494864],[102.269917,-5.489036],[102.272643,-5.482885],[102.280431,-5.476726],[102.289561,-5.478055],[102.293105,-5.481388],[102.299497,-5.483082],[102.302832,-5.487686],[102.308262,-5.476595],[102.311954,-5.475491],[102.317345,-5.481664],[102.318317,-5.490679],[102.322735,-5.494636],[102.325359,-5.492725],[102.332044,-5.496662],[102.340249,-5.495199],[102.348141,-5.496431],[102.348809,-5.499115],[102.355612,-5.505536],[102.360193,-5.505238],[102.368799,-5.496569],[102.368112,-5.49229],[102.374551,-5.489564],[102.374883,-5.484547],[102.358565,-5.470883],[102.35025,-5.466893],[102.347854,-5.46746],[102.339013,-5.456983],[102.341827,-5.45211],[102.345845,-5.450573],[102.353282,-5.452693],[102.356762,-5.457595],[102.36767,-5.456665],[102.368839,-5.452717],[102.368109,-5.442321],[102.371723,-5.436784],[102.373199,-5.428485],[102.378722,-5.42229],[102.381827,-5.421682],[102.38422,-5.416584],[102.386531,-5.415217],[102.388782,-5.406965],[102.388872,-5.401546],[102.387079,-5.396031],[102.381161,-5.385967],[102.372047,-5.382374],[102.367617,-5.381955],[102.36535,-5.3835],[102.365013,-5.379457],[102.359642,-5.376102],[102.352592,-5.377049],[102.352516,-5.374161],[102.350007,-5.370153],[102.347705,-5.369566],[102.344725,-5.372173],[102.34216,-5.370963],[102.340091,-5.367711],[102.330598,-5.364738],[102.32574,-5.360853],[102.321964,-5.363102],[102.317945,-5.359886],[102.315655,-5.361741],[102.30568,-5.362675],[102.300639,-5.360165],[102.297776,-5.356377],[102.284946,-5.356676],[102.277962,-5.352603],[102.275707,-5.346464],[102.248355,-5.324357],[102.234714,-5.318078],[102.225354,-5.32039],[102.219994,-5.320099],[102.202879,-5.308075],[102.192597,-5.303898],[102.17965,-5.296201],[102.163618,-5.290087],[102.162298,-5.28795]]],[[[102.42167470000004,-3.494045799999981],[102.42010760000005,-3.492429699999946],[102.41806090000006,-3.478558],[102.40600840000008,-3.45559],[102.40828250000004,-3.4510419],[102.40805510000007,-3.447630799999956],[102.398504,-3.4373976],[102.39645740000009,-3.422388799999965],[102.38986260000007,-3.414657],[102.37303460000004,-3.411473399999977],[102.369851,-3.409881499999926],[102.36689470000005,-3.405333399999961],[102.36848650000007,-3.400330499999939],[102.37660530000005,-3.394692499999962],[102.37413720000006,-3.390508699999941],[102.37439910000006,-3.3847816],[102.37605890000003,-3.382015199999955],[102.35932290000005,-3.373223399999972],[102.34249330000006,-3.37373],[102.32131330000004,-3.371844899999928],[102.31504810000007,-3.372676499999955],[102.30070640000008,-3.368388799999934],[102.29222330000005,-3.3642489],[102.27509080000004,-3.361014599999976],[102.27342750000008,-3.357854299999929],[102.27368620000004,-3.354139499999974],[102.28019690000008,-3.337263299999961],[102.29718310000004,-3.324575399999958],[102.29825340000008,-3.321537199999966],[102.29480090000004,-3.305776699999967],[102.29231510000005,-3.300615199999925],[102.29139420000007,-3.284121599999935],[102.28902190000008,-3.280235599999969],[102.27076930000004,-3.276735899999949],[102.26222840000008,-3.268470399999956],[102.24932140000004,-3.262041599999975],[102.24264530000005,-3.255563299999949],[102.236167,-3.246365199999957],[102.22721620000004,-3.241963899999973],[102.222172,-3.237562699999955],[102.21630510000006,-3.227888599999972],[102.20938970000009,-3.224753899999939],[102.20601490000007,-3.221405799999957],[102.20279070000004,-3.220548299999962],[102.19870890000004,-3.2216802],[102.19179260000004,-3.218564399999934],[102.17207680000007,-3.22787],[102.16524510000005,-3.228751399999965],[102.16015410000006,-3.226608399999975],[102.16926930000005,-3.208635699999945],[102.15362520000008,-3.189449499999967],[102.14978340000005,-3.194632599999977],[102.14162740000006,-3.196909199999936],[102.1329,-3.185744],[102.1262,-3.173397],[102.13208890000004,-3.15109],[102.1364,-3.143939],[102.13605150000006,-3.139179599999977],[102.1325,-3.131971699999951],[102.14033110000008,-3.119842099999971],[102.14218780000004,-3.111984899999925],[102.142052,-3.108814799999948],[102.13808940000007,-3.103923899999927],[102.1387,-3.098722],[102.1426,-3.089861],[102.14272520000009,-3.085117],[102.14269010000004,-3.081558],[102.1385,-3.070186],[102.1345,-3.064437],[102.11639290000005,-3.051798599999927],[102.10797150000008,-3.044131399999969],[102.104,-3.037181],[102.1035,-3.026308],[102.09536360000004,-3.016661899999974],[102.0927,-3.010205],[102.08452640000007,-3.003966499999933],[102.08357830000006,-2.998646899999926],[102.07687760000005,-2.9939279],[102.06659990000009,-2.991979799999967],[102.04896670000005,-2.983028899999965],[102.04172870000008,-2.973792399999979],[102.038163,-2.948036299999956],[102.0318,-2.916916],[102.0293,-2.912888],[102.01515210000008,-2.900004099999933],[102.01063080000006,-2.893097699999942],[102.00819050000007,-2.884556699999962],[102.01109370000006,-2.863193399999943],[102.00739120000009,-2.852228599999933],[101.99963040000006,-2.843577699999969],[101.99058790000004,-2.841477299999951],[101.98624470000004,-2.8390209],[101.97883980000006,-2.832648399999925],[101.96410130000004,-2.815489099999979],[101.96276870000008,-2.809589099999926],[101.950324,-2.791031699999962],[101.9489,-2.781312799999967],[101.946586,-2.775723599999935],[101.93263070000006,-2.765043499999933],[101.92875020000008,-2.757603],[101.92530990000006,-2.742403599999932],[101.9219,-2.736835],[101.91247910000004,-2.739021299999933],[101.90721080000009,-2.738703099999952],[101.89337050000006,-2.733274399999971],[101.88629550000007,-2.734615699999949],[101.88201360000005,-2.733798399999955],[101.86322740000008,-2.725235899999973],[101.85557980000004,-2.716880499999945],[101.85768590000004,-2.727580299999943],[101.86037820000007,-2.730274799999961],[101.85796910000005,-2.744831499999975],[101.859362,-2.754765099999929],[101.86351190000005,-2.767899299999954],[101.862823,-2.779244499999947],[101.86605880000008,-2.784458299999926],[101.86606970000008,-2.788959699999964],[101.85823530000005,-2.807344799999953],[101.85359130000006,-2.812217799999928],[101.84987250000006,-2.8293326],[101.84076120000009,-2.838178],[101.83327120000007,-2.850980899999968],[101.82879940000004,-2.853152699999953],[101.82040850000004,-2.863797199999965],[101.80932550000006,-2.872107599999936],[101.80594180000008,-2.879858799999965],[101.80273980000004,-2.888689899999974],[101.80419780000005,-2.898950099999979],[101.80257040000004,-2.922244199999966],[101.79826860000009,-2.930852699999946],[101.78701120000005,-2.933289599999966],[101.78455450000007,-2.937537899999938],[101.78537430000006,-2.950873499999943],[101.78348850000003,-2.954653],[101.78401180000009,-2.963747199999943],[101.78971260000009,-2.969808399999977],[101.791988,-2.978790199999935],[101.79078280000004,-2.982999499999949],[101.78382170000003,-2.987690799999939],[101.78140670000005,-2.994311799999934],[101.77833310000005,-2.994966799999929],[101.77478550000006,-3.000008399999956],[101.765568,-3.0034112],[101.75491470000009,-3.004732499999932],[101.74712310000007,-3.0206789],[101.737955,-3.029690099999925],[101.72435120000006,-3.038281199999972],[101.71785820000008,-3.0445894],[101.70203830000008,-3.053905199999974],[101.706368,-3.059508699999981],[101.71341190000004,-3.076077199999929],[101.6745,-3.116703],[101.6687,-3.125826],[101.653,-3.128449],[101.6393,-3.136267],[101.6221,-3.138038],[101.6212,-3.149064],[101.6067,-3.151829],[101.5992,-3.155622],[101.5955,-3.15948],[101.58418840000007,-3.179248199999961],[101.57578710000007,-3.184560499999975],[101.59695010000007,-3.218892299999936],[101.61415420000009,-3.238013],[101.62570270000003,-3.2486363],[101.64760560000008,-3.264736599999935],[101.66228720000004,-3.273521],[101.669098,-3.280017],[101.69862590000008,-3.298221499999954],[101.70543440000006,-3.306339099999946],[101.71878250000003,-3.316498499999966],[101.73366840000006,-3.3258437],[101.74279610000008,-3.334353799999974],[101.76223870000007,-3.348279499999933],[101.78368570000004,-3.3609793],[101.80416990000003,-3.376934199999937],[101.84054350000008,-3.399842399999955],[101.89624030000004,-3.429325799999958],[101.910031,-3.438619399999936],[101.91187690000004,-3.4489578],[101.92593470000008,-3.461172399999953],[101.922205,-3.473097799999948],[101.92591720000007,-3.4786728],[101.96401590000005,-3.495011099999942],[102.07553840000008,-3.552250699999945],[102.11115280000007,-3.578307],[102.11192380000006,-3.5826842],[102.13060470000005,-3.591272799999956],[102.13760560000009,-3.600775],[102.16936430000004,-3.624287799999934],[102.17436310000005,-3.629536899999948],[102.190115,-3.640040299999953],[102.20547390000007,-3.653703699999937],[102.2096,-3.6466],[102.2142,-3.62515],[102.2204,-3.604572],[102.2243,-3.597714],[102.2407,-3.592587],[102.2675,-3.591786],[102.2779,-3.577327],[102.2915,-3.56299],[102.3115,-3.552545],[102.3266,-3.537251],[102.3357,-3.530286],[102.3442,-3.526683],[102.3833,-3.520033],[102.4037,-3.508145],[102.42167470000004,-3.494045799999981]]]]},"properties":{"shapeName":"Bengkulu Utara","shapeISO":"","shapeID":"22746128B8571822691627","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[118.84676600000012,1.114721100000054],[118.84562380000011,1.118590100000063],[118.84114090000003,1.120588800000064],[118.8379715000001,1.120217600000046],[118.83618690000003,1.116277300000036],[118.84379640000009,1.11313640000003],[118.84655180000004,1.113407600000073],[118.84676600000012,1.114721100000054]]],[[[118.78954850000002,1.133511500000054],[118.78901550000012,1.13471080000005],[118.78604590000009,1.131151100000068],[118.79147420000004,1.127368900000022],[118.79474360000006,1.126783500000045],[118.78954850000002,1.133511500000054]]],[[[118.48931440000001,1.361527800000033],[118.48964810000007,1.362839400000041],[118.48770470000011,1.364593300000024],[118.4872219,1.362037900000075],[118.48931440000001,1.361527800000033]]],[[[118.5480490000001,1.364646300000061],[118.54683980000004,1.362809],[118.5496313000001,1.362050900000042],[118.54927650000002,1.364815800000031],[118.5480490000001,1.364646300000061]]],[[[118.54377570000008,1.366070900000068],[118.54273350000005,1.366028100000051],[118.54313330000002,1.364700300000038],[118.54515580000009,1.365221400000053],[118.54377570000008,1.366070900000068]]],[[[118.544685,1.366980700000056],[118.54373320000002,1.368099],[118.54332870000007,1.366733200000056],[118.544685,1.366980700000056]]],[[[118.52520120000008,1.368277500000033],[118.52089320000005,1.367827800000043],[118.51737760000003,1.362842800000067],[118.5178773,1.361486500000069],[118.5265908,1.365308],[118.52712380000003,1.366450100000066],[118.52520120000008,1.368277500000033]]],[[[118.49146970000004,1.370882800000061],[118.49190990000011,1.373048100000062],[118.48951090000003,1.371442700000046],[118.49146970000004,1.370882800000061]]],[[[118.55503890000011,1.37613790000006],[118.55391110000005,1.374449100000049],[118.55506750000006,1.370487300000036],[118.55826550000006,1.370473],[118.5626175000001,1.373246900000026],[118.5596670000001,1.374400900000069],[118.55812030000004,1.373615700000073],[118.55503890000011,1.37613790000006]]],[[[118.46241,1.376524800000027],[118.4628977000001,1.372574900000075],[118.46476560000008,1.375382700000046],[118.46241,1.376524800000027]]],[[[118.53328390000001,1.384073300000068],[118.53285560000006,1.386571700000047],[118.53207040000007,1.384430200000054],[118.53328390000001,1.384073300000068]]],[[[118.54243740000004,1.396278],[118.5414234000001,1.394088600000032],[118.54348440000001,1.395687900000041],[118.54243740000004,1.396278]]],[[[118.531861,1.396987],[118.5300764000001,1.396944100000042],[118.52887720000001,1.394931100000065],[118.53259990000004,1.388073500000075],[118.53629750000005,1.387645200000065],[118.5426364000001,1.393027600000039],[118.54134050000005,1.39393270000005],[118.5398037000001,1.392394600000046],[118.53576930000008,1.393541500000026],[118.53405610000004,1.392556400000046],[118.531861,1.396987]]],[[[118.44755240000006,1.396823900000072],[118.44683860000009,1.399084400000049],[118.4449350000001,1.397276],[118.44665210000005,1.395369300000027],[118.44322180000006,1.394944100000032],[118.441342,1.396490700000072],[118.43822490000002,1.394896500000073],[118.43990750000012,1.390573],[118.43927880000001,1.387024800000063],[118.44443860000001,1.380274300000053],[118.45242070000006,1.386818300000073],[118.45245940000007,1.39161],[118.44923390000008,1.396939800000041],[118.45038790000001,1.397332400000039],[118.44755240000006,1.396823900000072]]],[[[118.42361470000003,1.404102100000046],[118.42461380000009,1.404861200000028],[118.42370620000008,1.405947100000049],[118.42137130000003,1.404944600000022],[118.42361470000003,1.404102100000046]]],[[[118.50557430000003,1.414885100000049],[118.50536490000002,1.416636400000073],[118.50340420000009,1.41380010000006],[118.50658320000002,1.414257],[118.50557430000003,1.414885100000049]]],[[[118.39517220000005,1.426405100000068],[118.39317330000006,1.427573100000075],[118.39217370000006,1.425981900000068],[118.39517220000005,1.426405100000068]]],[[[118.4989892000001,1.436573500000065],[118.49825160000012,1.437882200000047],[118.49501550000002,1.436692500000049],[118.49681060000012,1.434933200000046],[118.4989892000001,1.436573500000065]]],[[[118.48664130000009,1.448035300000072],[118.48572760000002,1.449991200000056],[118.48328620000007,1.446579],[118.48155,1.445844500000021],[118.48236380000003,1.442832100000032],[118.48545630000001,1.444237600000065],[118.48734080000008,1.44879190000006],[118.48664130000009,1.448035300000072]]],[[[118.48325770000008,1.450505100000044],[118.48015960000009,1.448906100000045],[118.48119310000004,1.445758800000021],[118.48375740000006,1.447892500000023],[118.48429990000011,1.450433700000076],[118.48325770000008,1.450505100000044]]],[[[118.46831490000011,1.466154700000061],[118.468943,1.467468200000042],[118.4670585,1.46604050000002],[118.46456480000006,1.466326],[118.46500260000005,1.464213100000052],[118.46220440000002,1.463204200000064],[118.46064350000006,1.464765100000022],[118.4617095000001,1.465602700000034],[118.46041980000007,1.465682800000025],[118.4595528000001,1.46392910000003],[118.46055220000005,1.463274800000022],[118.4587438000001,1.464274200000034],[118.45731610000007,1.462382500000047],[118.45926730000008,1.457480800000042],[118.4609805,1.457421300000021],[118.459303,1.455981700000052],[118.46192610000003,1.45092690000007],[118.46381770000005,1.452592500000037],[118.46601,1.451127100000065],[118.4682173000001,1.453934700000048],[118.470787,1.453897100000063],[118.46838860000003,1.453592100000037],[118.46673260000011,1.448844800000074],[118.46774390000007,1.44748850000002],[118.47013520000007,1.447988200000054],[118.4691477,1.446667600000069],[118.47007570000005,1.445704],[118.47274980000009,1.446797300000071],[118.46748610000009,1.443203800000049],[118.46593550000011,1.439652200000069],[118.46895740000002,1.440722900000026],[118.4704683000001,1.438462500000071],[118.47449410000002,1.440514700000051],[118.47789080000007,1.439212],[118.47869380000009,1.437766500000066],[118.47781340000006,1.438533800000073],[118.47682,1.438248300000055],[118.47795030000009,1.438200700000039],[118.47850270000004,1.434633900000051],[118.4789310000001,1.435883100000069],[118.48188630000004,1.432256800000062],[118.47827430000007,1.429080200000044],[118.47411260000001,1.431400200000041],[118.47437670000011,1.427138600000035],[118.47027930000002,1.428694800000073],[118.46800210000004,1.42702440000005],[118.467995,1.428709],[118.46589010000002,1.424057400000038],[118.46766280000008,1.41431620000003],[118.471244,1.408160100000032],[118.47163660000001,1.404602800000021],[118.47527720000005,1.401284600000054],[118.47527720000005,1.398838600000033],[118.4784254000001,1.397471],[118.4787894000001,1.394452],[118.479182,1.395422800000063],[118.48200980000001,1.390941400000031],[118.48310910000009,1.391269700000066],[118.48228110000002,1.390153800000064],[118.49725440000009,1.384863400000029],[118.49848940000004,1.382104900000058],[118.50253820000012,1.380399300000022],[118.51081660000011,1.382742200000052],[118.51139950000004,1.384181800000022],[118.51225610000006,1.382789800000069],[118.51390990000004,1.383099100000038],[118.51528520000011,1.386216200000035],[118.51544700000011,1.384864700000037],[118.517598,1.386730200000045],[118.51791690000005,1.385554700000057],[118.5205343,1.38687770000007],[118.5202154000001,1.385740300000066],[118.52316120000012,1.384975700000041],[118.52347530000009,1.386060800000052],[118.52459840000006,1.385051900000065],[118.52810110000007,1.386840300000074],[118.53013790000011,1.386155],[118.5282628000001,1.389525300000059],[118.52859590000003,1.392237800000032],[118.52673990000005,1.393855900000062],[118.52247590000002,1.394636300000059],[118.52217140000005,1.391866600000071],[118.52049620000003,1.391980900000021],[118.52018210000006,1.394550700000025],[118.5159943000001,1.395654800000045],[118.51695560000007,1.397891400000049],[118.51510910000002,1.397967600000072],[118.51667010000006,1.398062800000048],[118.51861180000003,1.400905800000032],[118.51614660000007,1.402098300000034],[118.51618460000009,1.405867400000034],[118.51190040000006,1.40769240000003],[118.5101221000001,1.406054200000028],[118.51295930000003,1.410592],[118.5087162000001,1.407356200000038],[118.5109165,1.410524],[118.50751790000004,1.410649800000044],[118.50556720000009,1.399450800000068],[118.50662250000005,1.405829900000072],[118.5050758000001,1.412012300000072],[118.5018745000001,1.411268800000073],[118.50018740000007,1.409301300000038],[118.50077640000006,1.410925100000043],[118.4988148000001,1.410447600000055],[118.49548350000009,1.407706400000052],[118.49784390000002,1.410923500000024],[118.50012920000006,1.411549],[118.50210980000008,1.416098500000032],[118.498353,1.41534450000006],[118.49806740000008,1.416534200000058],[118.49559230000011,1.416402800000071],[118.49501790000011,1.417487900000026],[118.49768670000003,1.417486],[118.49713940000004,1.418985100000043],[118.49311990000001,1.420795300000066],[118.49511690000008,1.42295880000006],[118.49297540000009,1.425552400000072],[118.49606870000002,1.425028900000029],[118.49740120000001,1.426623200000051],[118.49426030000006,1.434689500000047],[118.49076730000002,1.437324900000021],[118.48755540000002,1.435152600000038],[118.49003,1.437151400000062],[118.48907370000006,1.438658900000064],[118.49999680000008,1.440639200000021],[118.49592220000011,1.442364300000065],[118.497558,1.443018600000073],[118.49636830000009,1.444773500000053],[118.49404830000003,1.443673],[118.492115,1.445130400000039],[118.488873,1.442458400000021],[118.48941550000006,1.440559600000029],[118.48813640000003,1.441332700000032],[118.4904077000001,1.446317900000054],[118.4924519000001,1.447906800000055],[118.49179520000007,1.448949],[118.48653750000005,1.444782700000076],[118.48487490000002,1.441612400000054],[118.48352520000003,1.442394100000058],[118.48525270000005,1.439638700000046],[118.4836537000001,1.440024200000039],[118.48051280000004,1.445263800000021],[118.47909940000011,1.444878300000028],[118.47980270000005,1.448677700000076],[118.47788590000005,1.448104900000033],[118.4779572000001,1.445535],[118.47652060000007,1.44814],[118.48145980000004,1.451864900000032],[118.4816264000001,1.453613800000028],[118.47880670000006,1.454946300000074],[118.47580370000003,1.452706600000056],[118.47766460000003,1.456707100000074],[118.47380980000003,1.460466600000075],[118.47241780000002,1.459729],[118.4724218,1.45445890000002],[118.47141050000005,1.457891300000028],[118.46979850000002,1.458712200000036],[118.4699710000001,1.462252400000068],[118.46802930000001,1.462633100000062],[118.47040880000009,1.464708],[118.46831490000011,1.466154700000061]]],[[[118.38420570000005,1.497193500000037],[118.38607060000004,1.498409600000059],[118.38501110000004,1.501238200000046],[118.38279650000004,1.498999800000036],[118.38420570000005,1.497193500000037]]],[[[118.37731340000005,1.50113760000005],[118.37642110000002,1.499545700000056],[118.37819860000002,1.500123900000062],[118.37731340000005,1.50113760000005]]],[[[118.90514150000001,1.513571200000058],[118.90473910000003,1.515517700000032],[118.91188570000008,1.522533600000031],[118.91159530000004,1.523463],[118.90450030000011,1.51704280000007],[118.90407620000008,1.515412800000036],[118.90514150000001,1.513571200000058]]],[[[118.63410470000008,1.525771900000052],[118.63028740000004,1.524612400000024],[118.636468,1.523000600000046],[118.63896740000007,1.524648300000024],[118.63410470000008,1.525771900000052]]],[[[118.94436740000003,1.556999900000051],[118.95079290000001,1.560749700000031],[118.95075930000007,1.562474100000031],[118.94877550000001,1.562889300000052],[118.94347750000009,1.559658100000036],[118.94436740000003,1.556999900000051]]],[[[118.96031170000003,1.758046],[118.95996090000006,1.759836700000051],[118.95456700000011,1.762374100000045],[118.95456720000004,1.760873100000026],[118.96031170000003,1.758046]]],[[[118.94479380000007,1.770883900000058],[118.94291680000003,1.773489900000072],[118.93016030000001,1.78109870000003],[118.9298324,1.777934300000027],[118.93347150000011,1.774006200000031],[118.94479380000007,1.770883900000058]]],[[[118.98747240000012,1.78085660000005],[118.98883060000003,1.783151700000076],[118.98500800000011,1.781239],[118.98747240000012,1.78085660000005]]],[[[118.92227150000008,1.787418400000035],[118.92012000000011,1.791760900000043],[118.91806020000001,1.791509900000051],[118.91813680000007,1.787892900000031],[118.92027260000009,1.786190800000043],[118.92227150000008,1.787418400000035]]],[[[118.89512650000006,1.803994100000068],[118.89557680000007,1.805440400000066],[118.89212060000011,1.80833750000005],[118.89035010000009,1.80815860000007],[118.89272310000001,1.803815800000052],[118.89512650000006,1.803994100000068]]],[[[118.80971480000005,1.942876400000046],[118.81066840000005,1.945353100000034],[118.80945550000001,1.946276700000055],[118.808708,1.942642400000068],[118.80971480000005,1.942876400000046]]],[[[118.805778,1.957385100000067],[118.80452710000009,1.963734500000044],[118.80301650000001,1.959359400000039],[118.805778,1.957385100000067]]],[[[117.87218010000004,1.949781],[117.8713686000001,1.953631900000062],[117.8761991,1.968286900000066],[117.87591820000011,1.971456500000045],[117.873589,1.97194],[117.85742940000011,1.958632700000067],[117.846611,1.956367700000044],[117.84482590000005,1.954450800000075],[117.84398670000007,1.949548100000072],[117.83840150000003,1.95050980000002],[117.83744790000003,1.953857400000061],[117.82983380000007,1.952902300000062],[117.82757580000009,1.956133],[117.82376850000003,1.956976200000042],[117.82199090000006,1.960088900000073],[117.81901530000005,1.95985520000005],[117.8175887000001,1.955540800000051],[117.81936640000004,1.952554700000064],[117.81687180000006,1.950041],[117.81710830000009,1.948602600000072],[117.8219835000001,1.950635600000055],[117.82757580000009,1.949312100000043],[117.82756830000005,1.939623500000039],[117.82649990000004,1.935797500000035],[117.83100880000006,1.92406230000006],[117.83243570000002,1.92334690000007],[117.8381879000001,1.928681400000073],[117.83362550000004,1.923825800000031],[117.83790560000011,1.923579400000051],[117.84778580000011,1.931354300000066],[117.84992970000008,1.931588400000066],[117.84100330000001,1.924301600000035],[117.83457940000005,1.922142700000052],[117.83599830000003,1.911729800000046],[117.8425370000001,1.906344100000069],[117.8429033000001,1.913047200000051],[117.84813710000003,1.919983],[117.84611490000009,1.91460150000006],[117.84384910000006,1.913281900000072],[117.84325420000005,1.90778210000002],[117.84503930000005,1.902995700000019],[117.84670280000012,1.900000600000055],[117.85371370000007,1.896405800000025],[117.85490390000007,1.899879],[117.85359930000004,1.903706200000045],[117.8570482,1.90789280000007],[117.85419450000006,1.903950100000031],[117.85538450000001,1.899155],[117.8546675,1.895573100000036],[117.8597923000001,1.892841100000055],[117.86672250000004,1.89994530000007],[117.87094490000004,1.906940100000043],[117.872089,1.933989800000063],[117.8710833,1.93849670000003],[117.87242390000006,1.944671300000039],[117.87079890000007,1.945637500000032],[117.87218010000004,1.949781]]],[[[118.81835910000007,1.959813],[118.82548470000006,1.963187100000027],[118.83064220000006,1.971826200000066],[118.83078710000007,1.975334500000031],[118.82588180000005,1.973459100000071],[118.81978550000008,1.967750900000055],[118.81703140000002,1.961532500000033],[118.81835910000007,1.959813]]],[[[117.850209,1.985846400000071],[117.84623680000004,1.990160600000024],[117.84482900000012,1.995774200000028],[117.83849280000004,2.006860500000073],[117.83539540000004,2.00918420000005],[117.82975580000004,2.010393500000021],[117.825821,2.00748040000002],[117.82415030000004,2.000778],[117.82057980000002,1.996473800000047],[117.82176220000008,1.988693400000045],[117.82093070000008,1.986658400000067],[117.8180771000001,1.98558330000003],[117.8095168000001,1.987622900000076],[117.80713650000007,1.985588700000051],[117.80891440000005,1.983072900000025],[117.81367510000007,1.981514600000025],[117.81557440000006,1.975769300000024],[117.82021350000002,1.971578600000043],[117.81593320000002,1.973978],[117.81581130000006,1.970621900000026],[117.82092260000002,1.965716300000054],[117.821396,1.961645200000021],[117.824364,1.957690500000069],[117.82817050000006,1.956494500000076],[117.83102430000008,1.953625400000021],[117.8378067000001,1.954454300000066],[117.83911110000008,1.951341700000057],[117.84327690000009,1.950507400000049],[117.84351330000004,1.952416],[117.84006480000005,1.954932600000063],[117.84018720000006,1.959238600000049],[117.8410186000001,1.95984420000002],[117.84125520000009,1.954217400000061],[117.84339920000002,1.953492600000061],[117.8464887,1.958041300000048],[117.85862710000004,1.961391200000037],[117.86314510000011,1.967372700000055],[117.850209,1.985846400000071]]],[[[117.88293450000003,2.053160400000024],[117.88103500000011,2.056155800000056],[117.878418,2.05627480000004],[117.87627410000005,2.05316410000006],[117.87306210000008,2.053645300000028],[117.87318410000012,2.050533400000063],[117.8702085000001,2.046473300000059],[117.87068160000001,2.041081500000075],[117.86794270000007,2.041200600000025],[117.86580640000011,2.044919800000059],[117.86402140000007,2.044441300000074],[117.86413590000006,2.036896700000057],[117.86199160000001,2.034030200000075],[117.85878020000007,2.034267200000045],[117.85236330000009,2.037861900000053],[117.8443909,2.038101300000051],[117.84373750000009,2.030705500000067],[117.84484480000003,2.026657300000068],[117.85372040000004,2.024328500000024],[117.85877220000009,2.024591900000075],[117.8773278000001,2.03606510000003],[117.88930790000006,2.036914400000057],[117.88771810000003,2.039163500000029],[117.88447570000005,2.039400400000034],[117.88352960000009,2.041915800000027],[117.88091270000007,2.043228900000031],[117.883171,2.042748200000062],[117.88448320000009,2.044909500000074],[117.88352980000002,2.046466],[117.88293450000003,2.053160400000024]]],[[[118.39775820000011,2.087637900000061],[118.39781730000004,2.084518900000035],[118.4024108000001,2.085065],[118.39775820000011,2.087637900000061]]],[[[117.85642240000004,2.077834800000062],[117.84786240000005,2.081186600000024],[117.84191890000011,2.085378200000036],[117.83299990000012,2.095315700000072],[117.826813,2.095319],[117.81075290000001,2.088389],[117.81051620000005,2.084915300000034],[117.81265280000002,2.081440400000076],[117.82038140000009,2.080839300000036],[117.82335660000001,2.078684800000076],[117.82406630000003,2.072107800000026],[117.82132710000008,2.066364800000031],[117.81597150000005,2.059899500000029],[117.80538180000008,2.055716500000074],[117.8065722,2.04818030000007],[117.80299390000005,2.040999400000032],[117.80335240000011,2.036213700000076],[117.80097210000008,2.028670300000044],[117.8016818000001,2.026281700000027],[117.80679340000006,2.026279100000068],[117.81191270000011,2.029270900000029],[117.82595050000009,2.032493200000033],[117.84272780000003,2.041937800000028],[117.84333060000006,2.051273200000026],[117.8248903000001,2.053788700000041],[117.82239510000011,2.052595900000028],[117.82608030000006,2.054394200000047],[117.82382230000007,2.056548300000031],[117.824295,2.057859800000074],[117.8262026000001,2.055108700000062],[117.82869740000001,2.054392800000073],[117.83964550000007,2.057254700000044],[117.8350067,2.06096610000003],[117.83453390000011,2.062766600000032],[117.83584610000003,2.071377900000073],[117.83393880000006,2.073658500000022],[117.83274830000005,2.073179700000026],[117.83775320000007,2.077238800000032],[117.83465560000002,2.074128600000051],[117.83631900000012,2.070898200000045],[117.835129,2.062766200000056],[117.83726480000007,2.060006],[117.84024050000005,2.059054600000024],[117.84071330000006,2.057254100000023],[117.8348846,2.055339400000037],[117.83488450000004,2.053910100000053],[117.84344460000011,2.053181900000027],[117.84439870000006,2.055216800000039],[117.84368870000003,2.064435200000048],[117.84024020000004,2.065034100000048],[117.8386915000001,2.066229100000044],[117.84054580000009,2.071248700000069],[117.83928660000004,2.067187600000068],[117.84012590000009,2.065631200000041],[117.8442841000001,2.064914400000021],[117.85070810000002,2.070293400000025],[117.85261550000007,2.068374600000027],[117.852493,2.067298200000039],[117.85083020000002,2.069461100000069],[117.84476490000009,2.064434700000049],[117.84510810000006,2.052348800000061],[117.84665710000002,2.047318200000063],[117.84570330000008,2.039656600000058],[117.85545360000003,2.037860300000034],[117.85878020000007,2.035343700000055],[117.86270890000003,2.035459200000048],[117.86318950000009,2.045274],[117.86616490000006,2.045869400000072],[117.86830150000003,2.041806500000064],[117.87044540000011,2.041805400000044],[117.86937710000007,2.046944200000041],[117.87223070000005,2.049936900000034],[117.87246730000004,2.054125100000022],[117.87580120000007,2.053643800000032],[117.87830370000006,2.056871900000033],[117.88294220000012,2.056037100000026],[117.88436130000002,2.051124300000026],[117.8840024000001,2.047415600000022],[117.88531490000003,2.045858900000042],[117.884239,2.04119170000007],[117.88566570000012,2.04011440000005],[117.89281640000002,2.038418400000069],[117.90252350000003,2.042161800000031],[117.90598450000005,2.040648900000065],[117.910507,2.045522100000028],[117.910645,2.052057600000069],[117.90767640000001,2.055064300000026],[117.89888,2.055910600000061],[117.87712110000007,2.069917100000055],[117.85642240000004,2.077834800000062]]],[[[117.77761850000002,2.083620300000064],[117.77804580000009,2.091997],[117.77546680000012,2.096349600000053],[117.77130140000008,2.099029400000063],[117.76713550000011,2.099284700000055],[117.75522590000003,2.095183500000076],[117.73682380000002,2.084056100000055],[117.72924020000005,2.084059700000068],[117.72415940000008,2.079620200000022],[117.71275350000008,2.078956],[117.71241770000006,2.07585320000004],[117.71957390000011,2.069146500000045],[117.721985,2.062116300000071],[117.72106910000002,2.058679100000063],[117.717903,2.05524280000003],[117.70558140000003,2.051231700000073],[117.71440140000004,2.032628200000033],[117.7164762000001,2.032545800000037],[117.71931450000011,2.035810300000037],[117.72206110000002,2.04377],[117.72489910000002,2.047450600000047],[117.73281110000005,2.052142100000026],[117.73838790000002,2.052718500000026],[117.74430080000002,2.050788900000043],[117.74937450000004,2.046353700000054],[117.75578280000002,2.030763800000045],[117.76343550000001,2.024228600000072],[117.77243030000011,2.021628100000044],[117.78266930000007,2.021541700000057],[117.79799670000011,2.028065600000048],[117.80124690000002,2.037779800000067],[117.800499,2.040295],[117.79233580000005,2.035604],[117.78808570000001,2.034773900000062],[117.78584290000003,2.038294],[117.78585050000004,2.047005600000034],[117.7832644,2.050525900000025],[117.77985390000003,2.050862300000063],[117.77610770000001,2.04726370000003],[117.77319320000004,2.047174600000062],[117.76961530000005,2.054630600000053],[117.766861,2.049774],[117.7639468000001,2.049024600000052],[117.760872,2.053295900000023],[117.75728590000006,2.053044300000067],[117.75171640000008,2.057325900000023],[117.75121290000004,2.063523],[117.75454690000004,2.06645240000006],[117.75704970000004,2.072982700000068],[117.76113150000003,2.073152600000071],[117.76412980000009,2.070971],[117.76645660000008,2.0667],[117.76895150000007,2.066029300000025],[117.77345250000008,2.069799500000045],[117.77436850000004,2.073064800000054],[117.77919770000005,2.073315700000023],[117.77936540000007,2.079430900000034],[117.77761850000002,2.083620300000064]]],[[[117.82750690000012,2.096159900000032],[117.83091730000001,2.097659800000031],[117.82867420000002,2.103694800000028],[117.82584410000004,2.106962],[117.81227090000004,2.110325400000022],[117.79962180000007,2.110829500000023],[117.79562380000004,2.109746],[117.790451,2.099444900000037],[117.78820050000002,2.097772500000076],[117.78437040000006,2.096345100000065],[117.77621440000007,2.096683900000073],[117.77845780000007,2.091996800000061],[117.77828990000012,2.083194800000058],[117.780121,2.079928100000075],[117.7795334000001,2.072392800000046],[117.77495560000011,2.072729800000047],[117.773781,2.069211300000063],[117.7687836,2.065106700000058],[117.76645670000005,2.065777300000036],[117.76271040000006,2.071306400000026],[117.75771320000001,2.072566300000062],[117.75454700000012,2.065448300000071],[117.75196820000008,2.063522600000056],[117.75212870000007,2.058076600000049],[117.75679030000003,2.054392500000063],[117.76103990000001,2.0543],[117.76445010000009,2.049775200000056],[117.76644890000011,2.050696900000048],[117.76886740000009,2.055888400000072],[117.77078240000003,2.055389900000023],[117.77194220000001,2.050531400000068],[117.77410910000003,2.04801550000002],[117.78044140000009,2.052454200000057],[117.78426390000004,2.051194900000041],[117.787094,2.046670300000073],[117.78809360000002,2.035859400000049],[117.79733270000008,2.041137900000024],[117.80149840000001,2.04188670000002],[117.80558,2.04858790000003],[117.805084,2.056965],[117.81291220000003,2.058887900000059],[117.81924460000005,2.064574700000037],[117.82308200000011,2.071610700000065],[117.82274610000002,2.078395600000022],[117.81892390000007,2.080324500000074],[117.81433860000004,2.080082600000026],[117.81300360000012,2.075135],[117.81084420000002,2.073544],[117.8080900000001,2.073545400000057],[117.802849,2.074886900000024],[117.7993547000001,2.079502300000058],[117.79385360000003,2.078745200000071],[117.79235850000009,2.074892200000022],[117.794769,2.069617],[117.79493710000008,2.067355300000031],[117.7927625000001,2.061159700000076],[117.78676630000007,2.057897],[117.78352370000005,2.059156],[117.7818605000001,2.061997400000052],[117.78601860000003,2.058476300000052],[117.79160290000004,2.060653700000046],[117.79468530000008,2.068531500000063],[117.79219030000002,2.073472],[117.79185480000001,2.076819300000068],[117.79510520000008,2.080002],[117.80052160000002,2.079917800000032],[117.80226920000007,2.076316500000075],[117.80567950000011,2.074387900000033],[117.809929,2.074051],[117.81242380000003,2.075388600000053],[117.81350710000004,2.079495],[117.8115921000001,2.082010900000057],[117.809677,2.083432100000039],[117.807678,2.080167500000073],[117.809181,2.084020400000043],[117.80160510000007,2.085535],[117.801857,2.088040700000022],[117.80485550000003,2.088627200000076],[117.80635070000005,2.0903],[117.80285650000008,2.094074100000057],[117.80068960000006,2.088710800000058],[117.80219290000002,2.094246300000066],[117.80460380000011,2.094154600000024],[117.80643480000003,2.090969400000063],[117.80660260000002,2.089386200000035],[117.80568720000008,2.088463900000022],[117.80226890000006,2.087796300000036],[117.8020173000001,2.085951],[117.80909710000003,2.084608500000058],[117.80976890000011,2.088371400000028],[117.81134810000003,2.089628],[117.82750690000012,2.096159900000032]]],[[[117.78316510000002,2.098996300000067],[117.7868499000001,2.099645800000076],[117.78875750000009,2.102277300000026],[117.7892303000001,2.109342200000071],[117.77770210000006,2.119516200000021],[117.77436860000012,2.120114900000033],[117.76699080000003,2.118327400000055],[117.77150720000009,2.104918400000031],[117.77664920000007,2.100971700000059],[117.78316510000002,2.098996300000067]]],[[[118.33098640000003,2.141361500000073],[118.32687090000002,2.141168400000026],[118.32334590000005,2.138063],[118.3263740000001,2.132095800000059],[118.33053530000007,2.130752600000051],[118.33408020000002,2.132214400000066],[118.33098640000003,2.141361500000073]]],[[[117.89746080000009,2.079485400000067],[117.90853120000008,2.082708500000024],[117.91421620000006,2.088936800000056],[117.90449500000011,2.095275800000024],[117.89795660000004,2.103538700000058],[117.89738450000004,2.107419800000059],[117.89977250000004,2.124289300000044],[117.89240260000008,2.131114400000058],[117.88015760000008,2.139380600000038],[117.86612730000002,2.145132900000021],[117.86302950000004,2.145017],[117.85267650000003,2.13006050000007],[117.83875290000003,2.122532700000022],[117.83327480000003,2.116664700000058],[117.82920830000012,2.114586200000076],[117.84192660000008,2.101769900000022],[117.86415850000003,2.086080700000025],[117.87998220000009,2.081168900000023],[117.89746080000009,2.079485400000067]]],[[[117.88255320000007,2.158602200000075],[117.87532820000001,2.157801200000051],[117.8722077000001,2.155378700000028],[117.88068370000008,2.154116400000021],[117.88255320000007,2.158602200000075]]],[[[118.53199680000012,2.162427200000025],[118.518629,2.161686700000075],[118.51326190000009,2.158610800000076],[118.5052,2.135949700000026],[118.51088210000012,2.138812700000074],[118.521063,2.140611200000023],[118.52841790000002,2.140585200000032],[118.5342343000001,2.138154400000076],[118.53976480000006,2.137683600000059],[118.56306820000009,2.116846900000041],[118.56305850000001,2.121092200000021],[118.560627,2.126430700000071],[118.54055790000007,2.15173470000002],[118.5385056,2.160869300000059],[118.53199680000012,2.162427200000025]]],[[[117.8038408000001,2.165078],[117.80110940000009,2.177889],[117.7964707000001,2.180406300000072],[117.7816011000001,2.182205300000021],[117.7795794000001,2.180885600000067],[117.77576460000012,2.171434200000022],[117.76790640000002,2.164689600000031],[117.76089480000007,2.16498260000003],[117.7514953000001,2.169058200000052],[117.73936460000004,2.169181900000069],[117.7311552000001,2.168109300000026],[117.72222880000004,2.163925100000029],[117.7135465,2.162490900000023],[117.71925380000005,2.15399350000007],[117.72365560000003,2.150517600000057],[117.727928,2.13962360000005],[117.72940840000001,2.12552850000003],[117.72606660000008,2.108414200000027],[117.726303,2.103031500000043],[117.73010250000004,2.089261],[117.73236110000005,2.086754100000064],[117.73497750000001,2.086273400000039],[117.7416459000001,2.092964600000073],[117.74961870000004,2.098352400000067],[117.76448840000012,2.103610200000048],[117.77114870000003,2.103842100000065],[117.76615930000003,2.117730800000061],[117.76365650000002,2.116058400000043],[117.76175710000007,2.111870900000042],[117.75640110000006,2.112705800000072],[117.75556940000001,2.111747300000047],[117.754738,2.118215900000052],[117.7503431,2.124080100000072],[117.74332410000011,2.127313100000038],[117.7433244,2.12324220000005],[117.73963150000009,2.118702600000063],[117.74308760000008,2.124083600000063],[117.73904450000009,2.125162100000068],[117.73820510000007,2.126962700000036],[117.73856350000005,2.127794800000061],[117.73951750000003,2.125876500000061],[117.74166130000003,2.125405100000023],[117.74285140000006,2.128389800000036],[117.74677280000003,2.130061500000068],[117.7513044000001,2.140833600000065],[117.75058720000004,2.14526660000007],[117.75213610000003,2.140597900000046],[117.7462997,2.128035300000022],[117.74724580000009,2.126117],[117.75355510000009,2.123237200000062],[117.7589034,2.113301600000057],[117.76152030000003,2.113662200000022],[117.76473260000012,2.119287500000041],[117.77330010000003,2.122277500000052],[117.77960180000002,2.120953600000064],[117.78876510000009,2.11293390000003],[117.80236830000001,2.120715700000062],[117.80155940000009,2.126903800000036],[117.8037111000001,2.147012600000039],[117.8038408000001,2.165078]]],[[[117.77448250000009,2.172285200000033],[117.77681740000003,2.180498100000023],[117.759834,2.183682100000055],[117.74858870000003,2.184275700000057],[117.73043840000003,2.18177890000004],[117.70844270000009,2.170978900000023],[117.70752690000006,2.169133800000054],[117.71035780000011,2.166617600000052],[117.71710220000011,2.164352800000074],[117.72484610000004,2.166276],[117.73351260000004,2.171129700000051],[117.74891650000006,2.17095930000005],[117.766319,2.165332700000022],[117.77448250000009,2.172285200000033]]],[[[117.88493320000009,2.189402700000073],[117.86946860000012,2.187855900000045],[117.87089540000011,2.185702100000071],[117.88385790000007,2.178394300000036],[117.89205940000011,2.168212600000061],[117.89669780000008,2.166536300000075],[117.89682020000009,2.170245100000045],[117.8923036000001,2.18018040000004],[117.8917159,2.186042600000064],[117.88993060000007,2.188440900000046],[117.88493320000009,2.189402700000073]]],[[[117.839134,2.190388100000064],[117.82795710000005,2.190267700000049],[117.82902520000005,2.184649400000069],[117.83853890000012,2.179370200000051],[117.84542850000003,2.168963200000064],[117.85375220000003,2.165602300000046],[117.86636350000003,2.157336],[117.87183410000011,2.157459500000073],[117.88432340000008,2.161278800000048],[117.88183570000001,2.175401200000067],[117.8572157000001,2.186189400000046],[117.839134,2.190388100000064]]],[[[117.87445820000005,2.152790200000027],[117.867203,2.154223700000045],[117.84317790000011,2.168358300000023],[117.83818830000007,2.177461600000072],[117.82819390000009,2.183446700000047],[117.82641590000003,2.191109900000072],[117.8119051000001,2.191117900000052],[117.80142970000009,2.182981900000073],[117.80760930000008,2.169689500000061],[117.80973040000003,2.128048400000068],[117.81056220000005,2.122900600000037],[117.81282040000008,2.12074640000003],[117.82970420000004,2.117272700000058],[117.84089640000002,2.126837500000022],[117.85219560000007,2.132458],[117.85898580000003,2.144892700000071],[117.8643416000001,2.147766300000058],[117.8719559000001,2.146441200000027],[117.88027970000007,2.142609900000025],[117.89347830000008,2.134108],[117.90048990000003,2.12763590000003],[117.9040606000001,2.121654400000068],[117.90476980000005,2.117700900000045],[117.9014284000001,2.107299800000021],[117.90485390000003,2.10186120000003],[117.91068260000009,2.098619300000053],[117.915093,2.099214300000028],[117.92486190000011,2.10557],[117.92861460000006,2.105705100000023],[117.94077410000011,2.111093100000062],[117.95469620000006,2.118635],[117.95742270000005,2.121649200000036],[117.95790250000005,2.125130400000046],[117.95413990000009,2.124555],[117.948593,2.12240550000007],[117.94352750000007,2.117949],[117.94083420000004,2.117552600000067],[117.94384750000006,2.118500600000061],[117.94780730000002,2.122243200000071],[117.95722130000001,2.126835100000051],[117.955818,2.130636100000061],[117.94733280000003,2.136459100000025],[117.9132234000001,2.142970500000047],[117.89027420000002,2.154210300000045],[117.87445820000005,2.152790200000027]]],[[[117.917885,2.156676900000036],[117.925799,2.166700800000058],[117.92680340000004,2.173700600000075],[117.92299670000011,2.182432300000073],[117.91420010000002,2.195246900000029],[117.905525,2.205664200000058],[117.90303030000007,2.205783300000064],[117.89873510000007,2.194062200000076],[117.892784,2.188439200000062],[117.90538030000005,2.164857600000062],[117.90966010000011,2.160422400000073],[117.91619860000003,2.156230200000039],[117.917885,2.156676900000036]]],[[[118.07449330000009,2.256329900000026],[118.0752073000001,2.257091500000058],[118.0732422000001,2.257796600000063],[118.07209200000011,2.257455800000059],[118.07287670000005,2.256383600000049],[118.07449330000009,2.256329900000026]]],[[[118.5946904000001,2.261411100000032],[118.5938906,2.261967600000048],[118.59465470000009,2.259676400000046],[118.59769720000008,2.257007200000032],[118.60270240000011,2.256944900000065],[118.6000778,2.260452800000053],[118.59749510000006,2.25940120000007],[118.59639290000007,2.261726700000054],[118.5946904000001,2.261411100000032]]],[[[118.59187950000012,2.260023700000033],[118.59164,2.262533900000051],[118.58926630000008,2.263218900000027],[118.59187950000012,2.260023700000033]]],[[[118.2438558,2.282090100000062],[118.2476074000001,2.284594900000059],[118.24758950000012,2.28591590000002],[118.24237530000005,2.286820300000045],[118.239843,2.285712100000069],[118.24147720000008,2.282609100000059],[118.2438558,2.282090100000062]]],[[[118.579175,2.305779400000063],[118.5705544000001,2.312506800000051],[118.56671990000007,2.310522800000058],[118.56281010000009,2.302002800000025],[118.56047440000009,2.276544900000033],[118.56290350000006,2.271857600000033],[118.56224410000004,2.250450600000022],[118.56460170000003,2.241716],[118.5822912000001,2.218392300000062],[118.58684230000006,2.209021100000029],[118.59045830000002,2.206266700000072],[118.59817910000004,2.194748400000037],[118.60899760000007,2.188989500000048],[118.609069,2.190921900000035],[118.60583420000012,2.193307],[118.60391450000009,2.198064800000054],[118.61900670000011,2.182115300000021],[118.62551230000008,2.181716300000062],[118.63382830000012,2.17628540000004],[118.64476160000004,2.172114300000032],[118.65389820000007,2.162904300000037],[118.65279240000007,2.167426500000033],[118.64830660000007,2.173969300000067],[118.64472,2.174846900000034],[118.63974990000008,2.179957200000047],[118.62466530000006,2.187482800000055],[118.61071730000003,2.201993400000049],[118.60715010000001,2.20986890000006],[118.59977450000008,2.210847200000046],[118.59290120000003,2.214787200000046],[118.57650160000003,2.242895400000066],[118.5742914000001,2.24462920000002],[118.5677806000001,2.260302700000068],[118.56762040000001,2.26814980000006],[118.56419640000001,2.276922100000036],[118.5649681000001,2.282661900000051],[118.56670990000009,2.284710100000041],[118.56542980000006,2.292001800000037],[118.5692021000001,2.304365500000074],[118.57046090000006,2.305099700000028],[118.57423620000009,2.303830100000027],[118.57843750000006,2.299076100000036],[118.57905,2.29627320000003],[118.58587480000006,2.288190300000053],[118.59343250000006,2.274707200000023],[118.59789460000002,2.27136820000004],[118.60158540000009,2.270998900000052],[118.61138210000001,2.263256600000034],[118.61573440000006,2.262703400000021],[118.622938,2.253204500000038],[118.63741940000011,2.248424300000067],[118.63734920000002,2.252684800000054],[118.63429480000002,2.256492700000024],[118.6157472000001,2.266169700000034],[118.599196,2.279876200000047],[118.579175,2.305779400000063]]],[[[118.07976370000006,2.313625600000023],[118.07903250000004,2.318293600000061],[118.07780390000005,2.314488700000027],[118.07976370000006,2.313625600000023]]],[[[118.13178640000001,2.334958800000038],[118.12972370000011,2.334731600000055],[118.12868810000009,2.332134300000064],[118.132145,2.329765100000031],[118.13428190000002,2.331669100000056],[118.13178640000001,2.334958800000038]]],[[[118.2038060000001,2.382649],[118.20137470000009,2.38429050000002],[118.19595970000012,2.381836200000066],[118.19397040000001,2.378831500000047],[118.19443500000011,2.376069900000061],[118.19915920000005,2.370794800000056],[118.20326720000003,2.361344100000053],[118.21013560000006,2.352634300000034],[118.21406990000003,2.348909500000048],[118.21668660000012,2.348329800000045],[118.219756,2.352087400000073],[118.2197877000001,2.354386400000067],[118.22115610000003,2.35470220000002],[118.22192730000006,2.358150300000034],[118.21163130000002,2.370479500000044],[118.20842420000008,2.381571],[118.2062691000001,2.383654],[118.2038060000001,2.382649]]],[[[117.98593390000008,2.435721800000067],[117.97869090000006,2.42739210000002],[117.97460300000012,2.426066900000023],[117.96715,2.425830800000028],[117.95837630000005,2.427768900000046],[117.95693290000008,2.426441800000021],[117.95464240000001,2.417025700000067],[117.95187570000007,2.414129800000069],[117.93876920000002,2.408222700000067],[117.91935360000002,2.395732600000031],[117.9098586,2.397670800000071],[117.89868410000008,2.40468130000005],[117.88269230000003,2.398050900000044],[117.87031050000007,2.397213700000066],[117.8569642000001,2.391909400000031],[117.83017830000006,2.366386800000043],[117.8210408000001,2.36313210000003],[117.82007770000007,2.360717800000032],[117.8217562000001,2.353230600000074],[117.8209098000001,2.344658200000026],[117.81285830000002,2.329363800000067],[117.80901030000007,2.326709600000072],[117.7978309,2.32575010000005],[117.76105280000002,2.333619100000021],[117.7576868000001,2.333017200000029],[117.74942040000008,2.327323100000058],[117.74605540000005,2.328532400000029],[117.741732,2.336141800000064],[117.72082870000008,2.34697280000006],[117.71506520000003,2.359533500000055],[117.71446850000007,2.367986200000075],[117.71074620000002,2.376199],[117.70835580000005,2.389941700000065],[117.7048741000001,2.398637400000041],[117.69970760000001,2.403711500000043],[117.68937110000002,2.407218500000056],[117.68468430000007,2.410360300000036],[117.67819860000009,2.421955500000024],[117.6672506000001,2.448952700000063],[117.6379151000001,2.478019900000049],[117.62238150000007,2.510269100000073],[117.61178310000003,2.521811800000023],[117.60241710000003,2.523236200000042],[117.59039790000008,2.52022420000003],[117.57148,2.502482200000031],[117.56588340000008,2.504268500000023],[117.55475400000012,2.515101100000038],[117.54079410000008,2.519899600000031],[117.516583,2.523104600000067],[117.498556,2.522934100000043],[117.49731940000004,2.52435470000006],[117.49720800000011,2.531637200000034],[117.48673830000007,2.539727300000038],[117.47873550000008,2.543318500000055],[117.47031860000004,2.544730600000037],[117.45168450000006,2.557619700000032],[117.43665610000005,2.581494700000064],[117.42794720000006,2.591345600000068],[117.40456190000009,2.609171600000025],[117.37446650000004,2.603974900000026],[117.36172550000003,2.605271800000025],[117.35638950000009,2.612167600000021],[117.35304050000002,2.612460200000044],[117.33544190000009,2.621915800000068],[117.31459780000012,2.626341600000046],[117.28240370000003,2.621749200000068],[117.25156030000005,2.607358400000066],[117.21796790000008,2.59647590000003],[117.20093140000006,2.596277400000076],[117.14461190000009,2.604940800000065],[117.07413250000002,2.608099100000061],[117.05349990000002,2.600009700000044],[117.04344660000004,2.598225100000036],[117.02161510000008,2.588826200000028],[117.0008755,2.58278],[116.95298610000009,2.550846100000058],[116.91652670000008,2.533530100000064],[116.84862550000003,2.519400400000052],[116.8357764000001,2.515117400000065],[116.81462390000002,2.500807500000064],[116.79758090000007,2.491733100000033],[116.77653920000012,2.482269],[116.75409450000006,2.475823600000069],[116.75168940000003,2.472161600000049],[116.74963180000009,2.463721700000065],[116.74602220000008,2.46538890000005],[116.74263990000009,2.462102200000061],[116.74006920000011,2.464189],[116.73820610000007,2.462293800000054],[116.73599220000006,2.464589500000045],[116.73624510000002,2.460108300000059],[116.73131460000002,2.456488],[116.72694190000004,2.443622700000049],[116.71209060000001,2.437855500000069],[116.69256,2.439797200000044],[116.66474890000006,2.435971],[116.646132,2.430545800000061],[116.62646810000001,2.429289500000039],[116.61913940000011,2.430526800000052],[116.5811632000001,2.428052200000025],[116.57545240000002,2.428908800000045],[116.56898030000002,2.433382100000074],[116.56679120000001,2.437189300000057],[116.56819510000003,2.448670200000038],[116.56617260000007,2.453548100000035],[116.55951010000001,2.455868100000032],[116.55260940000005,2.454618900000071],[116.53227970000012,2.466806400000053],[116.52932910000004,2.467805700000042],[116.52826320000008,2.466340100000025],[116.51705230000005,2.479581400000029],[116.5099351,2.480927800000075],[116.50658590000012,2.479765],[116.50316790000011,2.480411400000037],[116.49720730000001,2.485907900000029],[116.491568,2.494402600000058],[116.4662267000001,2.501648100000068],[116.44903940000006,2.509853900000053],[116.437104,2.510082300000022],[116.42402790000006,2.498211800000036],[116.42545560000008,2.494671200000028],[116.43670570000006,2.487989700000071],[116.44310170000006,2.481936300000029],[116.4428732,2.466745800000069],[116.43973230000006,2.459379],[116.4275305000001,2.436003200000073],[116.418774,2.427817900000036],[116.41687050000007,2.420084600000052],[116.41251610000006,2.415801600000066],[116.41030320000004,2.407735200000047],[116.40562350000005,2.40422],[116.40151160000005,2.394669200000067],[116.40179810000006,2.392515100000026],[116.39749240000003,2.389066400000047],[116.397755,2.387032],[116.39423560000012,2.381333700000027],[116.38869340000008,2.375825900000052],[116.38217860000009,2.363759300000027],[116.3752654000001,2.356052700000021],[116.37392690000001,2.350996400000042],[116.36890030000006,2.343173900000068],[116.36006850000001,2.323999400000048],[116.34636280000007,2.308223600000076],[116.3378550000001,2.292642],[116.33157330000006,2.288130500000022],[116.330374,2.283390600000075],[116.3201044000001,2.279658700000027],[116.31911930000001,2.275913400000036],[116.309947,2.265846700000054],[116.31015620000005,2.263200500000039],[116.3134066,2.259803400000067],[116.31997190000004,2.257308],[116.32261310000001,2.251490200000035],[116.32169020000003,2.129704100000026],[116.31601230000001,2.116774900000053],[116.3114369000001,2.115581],[116.2956742,2.118808900000033],[116.29093150000006,2.113017700000057],[116.28822390000005,2.104162600000052],[116.28619090000007,2.102629300000046],[116.27218620000008,2.104189100000042],[116.25687090000008,2.104999200000066],[116.23401660000002,2.103215900000066],[116.23146640000004,2.099548300000038],[116.22405580000009,2.095511600000066],[116.22083730000008,2.091965800000025],[116.2207115000001,2.080553100000031],[116.22558390000006,2.052547200000049],[116.2337993000001,2.030324700000051],[116.22937820000004,2.010600500000066],[116.2208544,2.004399],[116.2197384000001,1.999965700000075],[116.2176435,1.99781],[116.20403050000004,1.988899],[116.19765,1.988333800000021],[116.19425250000006,1.983320100000071],[116.19606090000002,1.969107300000076],[116.1952741,1.955396300000075],[116.19397220000008,1.950805200000048],[116.18931530000009,1.943656200000021],[116.1870331,1.929147800000067],[116.17986280000002,1.912149100000022],[116.17828840000004,1.887093600000071],[116.17563890000008,1.870949800000062],[116.17657550000001,1.859802100000024],[116.18412560000002,1.84670570000003],[116.18453060000002,1.840615800000023],[116.20816190000005,1.839153],[116.2173477,1.845108700000026],[116.22908630000006,1.843790800000022],[116.24072870000009,1.833423500000038],[116.25908990000005,1.828760700000032],[116.29964590000009,1.826698700000065],[116.30893980000008,1.831585100000041],[116.31570160000001,1.829126200000076],[116.32714260000012,1.817827700000066],[116.33906060000004,1.81375840000004],[116.34475050000003,1.810200900000041],[116.34938040000009,1.803195200000062],[116.34998550000012,1.780219700000032],[116.35565780000002,1.771958],[116.35474420000003,1.76195290000004],[116.3589502000001,1.758407300000044],[116.3650149,1.756623600000069],[116.37336790000006,1.760802200000057],[116.38331990000006,1.76212270000002],[116.39254050000011,1.755360800000062],[116.39683410000009,1.749445200000025],[116.39726120000012,1.73588890000002],[116.395679,1.72847390000004],[116.39861130000008,1.720776600000022],[116.415472,1.711613200000045],[116.42610150000007,1.707581300000072],[116.43489840000007,1.720043500000031],[116.44369530000006,1.724442],[116.45372980000002,1.72216080000004],[116.4764861000001,1.72466350000002],[116.50417370000002,1.67569270000007],[116.53129740000008,1.663230400000032],[116.54213570000002,1.628726500000027],[116.53414110000006,1.612109800000042],[116.53414120000002,1.599380300000064],[116.54419060000009,1.588660800000071],[116.55604480000011,1.586165200000039],[116.57567940000001,1.592010600000037],[116.60314810000011,1.611439800000028],[116.72336240000004,1.617046900000048],[116.75650420000011,1.621835200000021],[116.79703610000001,1.580026700000076],[116.86014880000005,1.59433770000004],[116.9238577000001,1.579660200000035],[116.93522030000008,1.560966800000074],[116.98912050000001,1.533553900000072],[116.98616880000009,1.496456500000022],[116.99076080000009,1.476139],[116.97124990000009,1.442136600000026],[116.96307700000011,1.417651200000023],[116.98910110000008,1.409220900000037],[116.99812290000011,1.38988420000004],[116.9925386000001,1.372325300000057],[116.99020070000006,1.353140800000062],[117.00596180000002,1.346909700000026],[117.03432850000002,1.354166500000076],[117.08186340000009,1.350208500000065],[117.09995320000007,1.351045800000065],[117.11189070000012,1.372567200000049],[117.1209172,1.364437800000076],[117.12857240000005,1.344439600000044],[117.14854430000003,1.324184500000058],[117.163013,1.305481100000065],[117.19311460000006,1.31664040000004],[117.258148,1.362949400000048],[117.28275910000002,1.361313200000041],[117.29588230000002,1.367875],[117.31884830000001,1.387560200000053],[117.33694340000011,1.43707610000007],[117.3434549000001,1.476143400000069],[117.33804350000003,1.497922600000038],[117.32814710000002,1.514416700000027],[117.32869070000004,1.528637300000071],[117.33547780000004,1.548871100000042],[117.348376,1.559805400000073],[117.36149960000012,1.563086300000066],[117.3715132000001,1.574954200000036],[117.38459360000002,1.604584600000067],[117.39558970000007,1.607516900000064],[117.40978,1.596620300000041],[117.4238358,1.590973500000075],[117.4322433000001,1.589190100000053],[117.44067370000005,1.581492900000057],[117.44936510000002,1.56136],[117.45992560000002,1.54340110000004],[117.48453210000002,1.52371590000007],[117.49112580000008,1.513864100000035],[117.50335140000004,1.511117900000045],[117.52241120000008,1.515516300000058],[117.5353851000001,1.526998200000037],[117.54030670000009,1.572928800000057],[117.5403715000001,1.595054700000048],[117.55283370000006,1.612281900000028],[117.57445940000002,1.625477200000034],[117.594441,1.62049890000003],[117.61248550000005,1.613939600000037],[117.62396870000009,1.602456700000062],[117.63750360000006,1.597987],[117.64703350000002,1.59835350000003],[117.67122490000008,1.620712200000071],[117.68295410000007,1.649302100000057],[117.69374530000005,1.665848600000061],[117.697249,1.679724600000043],[117.70641240000009,1.685589100000072],[117.7182931000001,1.680377100000044],[117.7182931000001,1.652489700000046],[117.7137666000001,1.608110400000044],[117.74929710000004,1.600186200000053],[117.76725740000006,1.588090500000021],[117.77442210000004,1.578537600000061],[117.78778340000008,1.574162100000024],[117.79539350000005,1.578670400000021],[117.7954807000001,1.599086600000021],[117.80523620000008,1.614759800000058],[117.81527370000003,1.626576800000066],[117.82993510000006,1.624744100000044],[117.8364041000001,1.606557700000053],[117.83653270000002,1.58735740000003],[117.8413412000001,1.568810500000041],[117.85559260000002,1.553269600000021],[117.90530210000009,1.509772200000043],[117.91350530000011,1.493524200000024],[117.91357770000002,1.465386700000067],[117.908583,1.426110300000062],[117.903662,1.404784600000028],[117.89444960000003,1.383295500000031],[117.85937060000003,1.363773900000069],[117.85689780000007,1.358828800000026],[117.85459950000006,1.345039400000076],[117.88202590000003,1.320747400000073],[117.92498780000005,1.291594900000064],[117.946313,1.288314100000036],[117.95943650000004,1.280111900000065],[118.01357080000002,1.227618100000029],[118.0332562000001,1.188247800000056],[118.04894580000007,1.182213200000035],[118.12512,1.165281700000037],[118.15881820000004,1.16849110000004],[118.17597350000005,1.181686100000036],[118.20687450000003,1.201579],[118.20687450000003,1.212737],[118.1972991,1.225977700000044],[118.19565850000004,1.247303300000056],[118.1997014000001,1.258963200000039],[118.21165650000012,1.260557200000051],[118.22839350000004,1.254181200000062],[118.2858824000001,1.204652100000033],[118.30809370000009,1.205564],[118.32197190000011,1.198090300000047],[118.33268440000006,1.189699],[118.35067920000006,1.185787100000027],[118.35724120000009,1.19234890000007],[118.37036480000006,1.253044800000055],[118.380207,1.274370400000066],[118.39169,1.28093210000003],[118.40317330000005,1.280932200000052],[118.410907,1.268527200000051],[118.41137520000007,1.259606500000075],[118.42121770000006,1.253044800000055],[118.43270110000003,1.25468520000004],[118.444184,1.27273],[118.460588,1.277651300000059],[118.485642,1.263279800000021],[118.50567910000007,1.234200700000031],[118.51600860000008,1.223871400000064],[118.5331063000001,1.213801700000033],[118.54589050000004,1.218595700000037],[118.55409270000007,1.226797900000065],[118.55573330000004,1.241561800000056],[118.56065430000001,1.249764],[118.57869930000004,1.244842600000027],[118.5852609000001,1.231719200000043],[118.59018230000004,1.212034100000039],[118.58033980000005,1.136574300000063],[118.58462380000003,1.113195900000051],[118.6067220000001,1.096161900000027],[118.6329462000001,1.090653700000075],[118.65274910000005,1.09560440000007],[118.66841290000002,1.101686400000062],[118.70993360000011,1.10212770000004],[118.7427421000001,1.107046500000024],[118.7591466,1.107046500000024],[118.76898910000011,1.103765900000042],[118.78047220000008,1.08244],[118.79172950000009,1.020893500000057],[118.79695020000008,1.008471600000064],[118.80563080000002,1.003857100000062],[118.82804480000004,1.010261100000037],[118.8544065000001,1.010531200000059],[118.87005940000006,1.01559530000003],[118.89202140000009,1.028305800000055],[118.90676640000004,1.025124100000028],[118.92071840000006,1.016482800000063],[118.94115140000008,1.00865170000003],[118.9658151000001,1.010361900000021],[118.9774268000001,1.016932900000029],[118.984771,1.030110400000069],[118.98201070000005,1.035863900000038],[118.9785137,1.038662100000067],[118.975304,1.038657200000046],[118.9718256000001,1.035306200000036],[118.96623640000007,1.035956800000065],[118.961045,1.042369],[118.95780420000006,1.044296400000064],[118.95429210000009,1.050335400000051],[118.94815310000001,1.053719],[118.94484090000003,1.058744500000046],[118.94379870000012,1.057673700000066],[118.94040710000002,1.059381],[118.93282460000012,1.058767800000055],[118.91542140000001,1.065422800000022],[118.90931550000005,1.064383400000054],[118.8717501000001,1.067360600000029],[118.86890190000008,1.066125700000043],[118.86815950000005,1.063277500000027],[118.86052470000004,1.053006100000061],[118.853766,1.047502100000031],[118.84527240000011,1.046700500000043],[118.8364113,1.051449900000023],[118.83507040000006,1.05594590000004],[118.8365457000001,1.057111900000052],[118.83325250000007,1.060842900000068],[118.832967,1.06558270000005],[118.83729240000002,1.070848200000057],[118.83230790000005,1.076146400000027],[118.82776430000001,1.088383900000053],[118.82843650000007,1.095816400000047],[118.83038770000007,1.096815800000059],[118.83042570000009,1.098329100000058],[118.82308750000004,1.104644200000052],[118.81283680000001,1.109564900000066],[118.81171370000004,1.112096700000052],[118.80798270000003,1.114609400000063],[118.80621230000008,1.114990100000057],[118.80663830000003,1.112377500000036],[118.80542470000012,1.111497100000065],[118.79971880000005,1.113554300000033],[118.7956832000001,1.117647],[118.79730130000007,1.123376700000051],[118.79307530000005,1.122158400000046],[118.79124280000008,1.125264300000026],[118.786936,1.126185200000066],[118.77656390000004,1.133900600000061],[118.77798110000003,1.134436900000026],[118.77693080000006,1.137896500000068],[118.77953960000002,1.136535700000024],[118.77995820000001,1.140163200000075],[118.78465670000003,1.134194800000046],[118.78736330000004,1.133927100000051],[118.7878095000001,1.136455300000023],[118.77710190000005,1.15373610000006],[118.77409780000005,1.155728900000042],[118.77299730000004,1.15427150000005],[118.77376780000009,1.152565600000059],[118.76987430000008,1.150285900000029],[118.76313750000008,1.152427],[118.75982110000007,1.151416200000028],[118.75628160000008,1.152605900000026],[118.75741190000008,1.147638800000038],[118.75491340000008,1.151951500000052],[118.75179040000012,1.150256200000058],[118.75042220000012,1.151594600000067],[118.74959910000007,1.149346100000059],[118.74656530000004,1.150268100000062],[118.7451377000001,1.148959400000024],[118.746952,1.14443840000007],[118.742669,1.147293800000057],[118.74299610000003,1.149316300000066],[118.74019190000001,1.150476200000071],[118.7402598000001,1.153004500000065],[118.73841570000002,1.149851700000056],[118.7366608000001,1.152826],[118.73427010000012,1.151234400000021],[118.73561980000011,1.154075300000045],[118.73422190000008,1.155265],[118.73109350000004,1.153181400000051],[118.72689430000003,1.15556840000005],[118.72107,1.154389],[118.72109720000003,1.156008600000064],[118.72516210000003,1.156486200000074],[118.72711980000008,1.15885650000007],[118.72779790000004,1.157381200000032],[118.73399640000002,1.15836870000004],[118.73350030000006,1.156433],[118.735136,1.158054900000025],[118.73718230000009,1.157626600000071],[118.73622990000001,1.161139300000059],[118.73824080000009,1.162308200000041],[118.74079910000012,1.159101900000053],[118.74493940000002,1.159244600000022],[118.74628480000001,1.16100380000006],[118.74532010000007,1.158578400000067],[118.74888930000009,1.157912100000033],[118.75431060000005,1.159931300000039],[118.75811770000007,1.164119200000073],[118.7571041000001,1.161066300000073],[118.75934550000011,1.159895600000027],[118.7631503,1.162264800000059],[118.76533940000002,1.166581200000053],[118.76901570000007,1.166424100000029],[118.76882530000012,1.189572700000042],[118.7682162000001,1.19469330000004],[118.76345720000006,1.202269500000057],[118.75142670000002,1.214718900000037],[118.726478,1.233075500000041],[118.71952610000005,1.239909200000056],[118.71179540000003,1.251430200000073],[118.70646550000004,1.254571100000021],[118.70506160000002,1.254071400000043],[118.69668090000005,1.262311200000056],[118.692612,1.264119600000072],[118.69155320000004,1.263108400000021],[118.6894019,1.267250200000035],[118.68673690000003,1.265974800000038],[118.68287270000008,1.267535700000053],[118.68295830000011,1.270552900000041],[118.67896080000003,1.271780700000022],[118.67042330000004,1.279280800000038],[118.6663559000001,1.278046500000073],[118.66247260000011,1.281891700000074],[118.66222520000008,1.280939900000021],[118.66056910000009,1.282710300000076],[118.65933180000002,1.282063100000073],[118.64484560000005,1.30106070000005],[118.64491550000002,1.30284690000002],[118.639812,1.306281500000068],[118.63691390000008,1.306538400000022],[118.6355718000001,1.308423],[118.63119790000007,1.307363],[118.631769,1.308552700000064],[118.62905640000008,1.311765],[118.62579650000009,1.311931600000037],[118.62265560000003,1.315072500000042],[118.61987170000009,1.315381800000068],[118.61820840000007,1.318618400000048],[118.61768020000011,1.317718900000045],[118.61455350000006,1.319317900000044],[118.61396820000004,1.320988300000067],[118.61538160000009,1.321745],[118.6139396000001,1.323186900000053],[118.60527370000011,1.325685400000054],[118.60310970000012,1.330254800000034],[118.59451990000002,1.339594100000056],[118.59265660000005,1.339169800000036],[118.59018670000012,1.341703900000027],[118.58851570000002,1.344203900000025],[118.58909640000002,1.347620200000051],[118.585521,1.349700100000064],[118.58377550000012,1.348749800000064],[118.58297420000008,1.345347100000026],[118.58228170000007,1.347249200000022],[118.5838874000001,1.349710400000049],[118.5821932,1.353117800000064],[118.57705360000011,1.355440100000067],[118.57227560000001,1.355383],[118.5737223000001,1.356696500000055],[118.5720457000001,1.359667300000069],[118.57008260000009,1.35981],[118.56840820000002,1.357934400000033],[118.5668346000001,1.36230850000004],[118.56251590000011,1.364521400000058],[118.56303190000006,1.366512],[118.557043,1.364102700000046],[118.55631930000004,1.365082500000028],[118.55860740000003,1.365028600000073],[118.5567443000001,1.367013],[118.55377610000005,1.367571800000064],[118.55391040000006,1.366042200000038],[118.55475270000011,1.367105800000047],[118.555576,1.366206400000067],[118.55424120000009,1.365366400000028],[118.55268030000002,1.367327100000068],[118.55111940000006,1.367136800000026],[118.54971080000007,1.363691300000028],[118.55123760000004,1.361974100000054],[118.553617,1.363413700000024],[118.55392110000003,1.361597400000051],[118.55032620000009,1.35884580000004],[118.54982650000011,1.355861900000036],[118.54872010000008,1.356004700000028],[118.54945530000009,1.358617300000049],[118.54802760000007,1.360837400000037],[118.54534360000002,1.360873100000049],[118.54744230000006,1.358367500000043],[118.53931880000005,1.362215100000071],[118.53678470000011,1.362072300000023],[118.53861930000005,1.361886700000071],[118.53812670000002,1.361108600000023],[118.536592,1.361901],[118.5351214000001,1.361579800000072],[118.53640640000003,1.361415600000043],[118.5356283000001,1.359352600000022],[118.53485020000005,1.360430500000064],[118.53274440000007,1.359673800000053],[118.53325120000011,1.362572],[118.53186630000005,1.363086],[118.53187350000007,1.361851],[118.53090270000007,1.363414300000045],[118.529218,1.361294200000032],[118.52178660000004,1.361496400000021],[118.520911,1.359069400000067],[118.51570470000001,1.356787500000053],[118.51752820000002,1.360647400000062],[118.51642890000005,1.362874500000032],[118.51320620000001,1.362548600000025],[118.51261320000003,1.361719],[118.511176,1.361918900000035],[118.51265130000002,1.362137800000028],[118.51253220000001,1.363934800000038],[118.5170892000001,1.365739400000052],[118.51731760000007,1.370308],[118.5130567000001,1.368774300000041],[118.51373760000001,1.372460200000035],[118.51627540000004,1.372206800000072],[118.51718910000011,1.374662400000034],[118.51095020000002,1.376489800000058],[118.50396890000002,1.37403420000004],[118.50145770000006,1.374695],[118.49788420000004,1.372436500000049],[118.49662780000006,1.370571],[118.49854040000002,1.366279700000064],[118.4960377000001,1.365916800000036],[118.49480330000006,1.368996500000037],[118.49336320000009,1.36822010000003],[118.491325,1.370475200000044],[118.48971170000004,1.369690500000047],[118.489345,1.365349900000069],[118.48803150000003,1.365178600000036],[118.49106990000007,1.36310050000003],[118.4889955000001,1.36114770000006],[118.48780640000007,1.36119750000006],[118.4842595,1.365371],[118.48098740000012,1.364172100000076],[118.47635650000007,1.364771900000051],[118.48146830000007,1.365365700000041],[118.48491190000004,1.371451300000047],[118.48886670000002,1.37356090000003],[118.48996130000012,1.376813600000048],[118.48923810000008,1.379249100000038],[118.48600540000007,1.381930500000067],[118.48005130000001,1.382832500000063],[118.48026830000003,1.38490760000002],[118.47702,1.384100600000068],[118.47939350000001,1.384073500000056],[118.47905440000011,1.380248700000038],[118.47864070000003,1.381930500000067],[118.47690640000008,1.381381600000054],[118.474985,1.38398710000007],[118.47173960000009,1.379384100000038],[118.4720668000001,1.376737],[118.47054980000007,1.37959230000007],[118.46481590000008,1.376666200000045],[118.4676237000001,1.37678040000003],[118.4635310000001,1.368005],[118.46282670000005,1.369366],[118.46354050000002,1.366444],[118.46240790000002,1.366110900000024],[118.46381660000009,1.366291800000056],[118.46729060000007,1.359181900000067],[118.46341680000012,1.363341200000036],[118.46236560000011,1.358620900000062],[118.461848,1.365378600000042],[118.4566013000001,1.366984700000046],[118.45414060000007,1.369961],[118.45806190000008,1.368704700000023],[118.46162160000006,1.371331600000076],[118.46027010000012,1.373349400000052],[118.46101240000007,1.376623500000051],[118.46592750000002,1.383858700000076],[118.46846170000003,1.385435100000052],[118.4681154000001,1.39091970000004],[118.470828,1.394053500000041],[118.46882930000004,1.395645300000069],[118.46717780000006,1.396060700000021],[118.4671806,1.394040100000041],[118.46527430000003,1.393300500000066],[118.46392520000006,1.394039200000066],[118.46453910000002,1.397587],[118.46191220000003,1.3996],[118.45940660000008,1.399093200000038],[118.45908540000005,1.395695300000057],[118.45666590000008,1.395998100000043],[118.45814710000002,1.395134300000052],[118.4566688000001,1.390233100000046],[118.45411090000005,1.389543100000026],[118.45630590000007,1.389513300000033],[118.45529940000006,1.38611190000006],[118.45008010000004,1.381528500000059],[118.45008010000004,1.379595100000074],[118.44607860000008,1.379472600000042],[118.44579310000006,1.37712410000006],[118.44385860000011,1.377823600000056],[118.4456967000001,1.373663300000032],[118.44272680000006,1.375551900000062],[118.4401712,1.37318190000002],[118.44199190000006,1.375637100000063],[118.44068410000011,1.378410100000053],[118.43844740000009,1.378636100000051],[118.43741240000008,1.377160900000035],[118.43717440000012,1.379409500000065],[118.43552380000006,1.379106200000024],[118.4337316000001,1.381760700000029],[118.43053680000003,1.381926600000043],[118.4322869,1.384155],[118.43450570000005,1.384113300000024],[118.43389900000011,1.385945500000048],[118.43561520000003,1.389341200000047],[118.43332670000007,1.398893900000076],[118.42958480000004,1.400213],[118.42796440000006,1.398085700000024],[118.42216090000011,1.396094100000028],[118.42200390000005,1.393574300000068],[118.4202835000001,1.394052500000043],[118.42024780000008,1.393060300000059],[118.41825620000009,1.393074600000034],[118.41504160000011,1.395368400000052],[118.41563640000004,1.396593800000062],[118.41071090000003,1.399342100000069],[118.40834940000002,1.396408600000029],[118.40992570000003,1.400151100000073],[118.40907630000004,1.401048200000048],[118.40695720000008,1.39952610000006],[118.40868440000008,1.401368200000036],[118.40757080000003,1.403847600000063],[118.4014039000001,1.405268300000046],[118.4067993000001,1.40562680000005],[118.409381,1.402509700000053],[118.41295020000007,1.40142110000005],[118.4149728000001,1.403193800000054],[118.41535940000006,1.402170700000056],[118.4197971000001,1.402670400000034],[118.420154,1.406287100000043],[118.4153007000001,1.40756250000004],[118.4136684,1.409204400000021],[118.415472,1.408842700000037],[118.41404910000006,1.411883600000067],[118.41617640000004,1.40789570000004],[118.41953620000004,1.407829],[118.42137790000004,1.408771300000069],[118.42103050000003,1.410436900000036],[118.42229630000008,1.409604100000024],[118.42927770000006,1.413668200000075],[118.4279107000001,1.415577700000028],[118.43041510000012,1.423007600000062],[118.42888030000006,1.426422100000025],[118.42076740000005,1.428969500000051],[118.41584910000006,1.426862800000038],[118.41912650000006,1.430228300000067],[118.4266851000001,1.432012800000052],[118.42039850000003,1.434192400000029],[118.410017,1.429194300000063],[118.4076434000001,1.426737500000058],[118.40834540000003,1.425512100000049],[118.40419920000011,1.425256300000058],[118.40482970000005,1.424423500000046],[118.40216470000007,1.42469710000006],[118.40237890000003,1.426921900000025],[118.40096310000001,1.427861800000073],[118.40110590000006,1.424456200000066],[118.3930491000001,1.424774500000069],[118.38918480000007,1.422588300000029],[118.38700060000008,1.42320710000007],[118.38343540000005,1.425005800000065],[118.3886099,1.424529900000039],[118.38766770000007,1.430221500000073],[118.3822325000001,1.427760600000056],[118.37914280000007,1.423222100000032],[118.37902830000007,1.426206900000068],[118.37493410000002,1.424111],[118.38856,1.436223400000074],[118.3897081,1.43481950000006],[118.39840150000009,1.43574510000002],[118.4007524000001,1.437453700000049],[118.40479560000006,1.436974100000043],[118.40521990000002,1.441197600000066],[118.40606460000004,1.437223900000049],[118.41258440000001,1.437872300000038],[118.41742660000011,1.441780600000072],[118.41778940000006,1.446063600000059],[118.42154390000007,1.450714800000071],[118.42032310000002,1.455358300000057],[118.41881920000003,1.455796100000043],[118.41950950000012,1.457367800000043],[118.417625,1.459016800000029],[118.41866720000007,1.459402200000056],[118.41743910000002,1.460069600000054],[118.41801040000007,1.461136900000042],[118.416554,1.461116600000025],[118.41755340000009,1.462135],[118.41107050000005,1.458232700000053],[118.41013680000003,1.459373700000071],[118.408031,1.455868700000053],[118.41141460000006,1.461922100000038],[118.410139,1.463806600000055],[118.4133941,1.463678100000038],[118.4122569000001,1.464891600000044],[118.41381310000008,1.466198],[118.41200450000008,1.465548300000023],[118.41510160000007,1.472001500000033],[118.41057680000006,1.482918400000074],[118.40891110000007,1.478166100000067],[118.40727030000005,1.477939100000071],[118.408766,1.478571300000056],[118.41052920000004,1.486725500000034],[118.408213,1.487494100000049],[118.4057027,1.482061800000054],[118.40344370000003,1.484288800000058],[118.40026390000003,1.480098400000031],[118.39920030000008,1.481704500000035],[118.40079780000008,1.485849700000074],[118.3978092000001,1.48350830000004],[118.39628630000004,1.485107300000038],[118.39676220000001,1.486953800000038],[118.3949348000001,1.488134],[118.39274810000006,1.484592100000043],[118.38975950000008,1.485210800000061],[118.3909182000001,1.482379700000024],[118.39099740000006,1.480286300000046],[118.39006230000007,1.484307600000022],[118.38806380000005,1.48362],[118.38753560000009,1.482449300000042],[118.388999,1.480836],[118.38658620000001,1.481606900000031],[118.38698590000001,1.487767400000052],[118.38248870000007,1.484612200000072],[118.38198910000006,1.480964500000027],[118.37779880000005,1.482099500000061],[118.37201670000002,1.488010100000054],[118.37584040000002,1.486728500000027],[118.37807010000006,1.490501400000028],[118.3798561000001,1.489391100000034],[118.38769980000006,1.492393],[118.3878711000001,1.495712400000059],[118.38277430000005,1.496811700000023],[118.37883290000002,1.494102500000054],[118.37710640000012,1.496454800000038],[118.3780915000001,1.498589200000026],[118.37625930000002,1.499212600000021],[118.37409780000007,1.496029800000031],[118.37637010000003,1.501692],[118.37453420000008,1.50385250000005],[118.37229750000006,1.502769900000033],[118.3719168,1.504233200000044],[118.37138140000002,1.502056],[118.3683952,1.500116800000058],[118.36878780000006,1.502722300000073],[118.36734820000004,1.501663400000041],[118.36720550000007,1.502650900000049],[118.36869260000003,1.505958400000054],[118.36444530000006,1.506101100000024],[118.36482600000011,1.508813700000076],[118.36306520000005,1.508968400000072],[118.36252980000006,1.507267100000035],[118.36084040000003,1.507861900000023],[118.361007,1.506505600000025],[118.35944840000002,1.507052900000076],[118.35879410000007,1.50577990000005],[118.35723550000012,1.507481200000029],[118.35652170000003,1.506541300000038],[118.35369380000009,1.509035100000062],[118.34351320000007,1.512760900000046],[118.31270590000008,1.530036],[118.30684010000004,1.531335400000046],[118.30013890000009,1.529755600000044],[118.30356190000009,1.534836600000062],[118.29606130000002,1.541146200000071],[118.2893944000001,1.542115600000045],[118.28490280000005,1.546250600000064],[118.27711290000002,1.543684800000051],[118.27704190000009,1.545058700000027],[118.27490430000012,1.54481050000004],[118.27513740000006,1.549546900000053],[118.26213370000005,1.553557200000057],[118.25630520000004,1.557555900000068],[118.24700790000009,1.558652900000027],[118.24577320000003,1.562544700000046],[118.2275489000001,1.573364800000036],[118.22758390000001,1.575330800000074],[118.21136850000005,1.588782300000048],[118.20659680000006,1.589934700000072],[118.20292160000008,1.593474300000025],[118.19272060000003,1.597941500000047],[118.17919840000002,1.607439800000066],[118.17889620000005,1.609402700000032],[118.17699260000006,1.608722600000021],[118.17383970000003,1.618056100000047],[118.16471890000003,1.626559100000065],[118.15839310000001,1.627743100000032],[118.14985580000007,1.632061],[118.1346291000001,1.633888700000057],[118.11887450000006,1.647548400000062],[118.10947310000006,1.658577],[118.09137080000005,1.684178900000063],[118.08208910000008,1.692046300000072],[118.07992800000011,1.699518900000044],[118.07316420000006,1.709412400000076],[118.06715290000011,1.715141200000062],[118.06214100000011,1.717681800000037],[118.05364020000002,1.729748100000052],[118.0525487000001,1.734487700000045],[118.0593579,1.740485500000034],[118.06038360000002,1.744237],[118.06428850000009,1.748110700000041],[118.06665910000004,1.761829],[118.06062720000011,1.772388300000046],[118.04814930000009,1.783200900000054],[118.04201970000008,1.785860200000059],[118.03158140000005,1.785556900000074],[118.02648240000008,1.782307800000069],[118.0126120000001,1.783243200000072],[117.99060040000006,1.789775100000043],[117.98677730000009,1.788898200000062],[117.98416530000009,1.790880100000038],[117.97264480000001,1.793052600000067],[117.96768810000003,1.789752],[117.96801470000003,1.791254400000071],[117.96645120000005,1.792536600000062],[117.9596749000001,1.795540300000027],[117.9385119000001,1.801150800000073],[117.92942770000002,1.805664700000023],[117.92177730000003,1.812975100000074],[117.91837740000005,1.813217500000064],[117.91652550000003,1.816837300000032],[117.91083830000002,1.821284200000036],[117.90260250000006,1.836156100000039],[117.89838420000001,1.838052800000071],[117.89337670000009,1.847065200000031],[117.89002550000009,1.856937900000048],[117.888119,1.857620900000029],[117.89088560000005,1.865111800000022],[117.889661,1.872691900000063],[117.87090080000007,1.881515100000058],[117.85918840000011,1.883025300000043],[117.85192890000008,1.891386],[117.85014360000002,1.890781],[117.84907510000005,1.892816800000048],[117.84395570000004,1.891028100000028],[117.84550480000007,1.895451],[117.838974,1.905513600000063],[117.83314010000004,1.910003400000051],[117.83207730000004,1.921194100000037],[117.82840240000007,1.923801200000071],[117.8245928,1.937110100000041],[117.82501710000008,1.93967],[117.82685830000003,1.940220900000043],[117.82614870000009,1.948598100000027],[117.8222201000001,1.949441400000069],[117.81770330000006,1.947163900000021],[117.81568170000003,1.948847500000056],[117.81842060000008,1.952555200000063],[117.81663490000005,1.955061800000067],[117.81829860000005,1.960452600000053],[117.82080070000006,1.961166],[117.820328,1.965598900000032],[117.81497960000002,1.970504700000049],[117.815689,1.974457500000028],[117.81355310000004,1.980320600000027],[117.80760960000009,1.983191200000022],[117.80641960000003,1.984747700000071],[117.80903620000004,1.988455400000021],[117.81712340000001,1.98654270000003],[117.82022110000003,1.987138200000061],[117.81915270000002,1.99587740000004],[117.82344080000007,2.00233430000003],[117.82415770000011,2.009869500000036],[117.7896654000001,2.01372230000004],[117.78526330000011,2.013244900000075],[117.7840695000001,2.011626200000023],[117.76694480000003,2.013009500000067],[117.75374620000002,2.023310500000036],[117.74862650000011,2.025465900000029],[117.74399570000003,2.030136],[117.7420886000001,2.035528600000021],[117.74162280000007,2.043182100000024],[117.73971570000003,2.044983200000047],[117.73686250000003,2.043546100000071],[117.73114750000002,2.035768800000028],[117.72138960000007,2.027396200000055],[117.71139530000005,2.026079800000048],[117.70533010000008,2.030271],[117.70129410000004,2.036017300000026],[117.700577,2.042368300000021],[117.69562220000012,2.050413500000047],[117.696002,2.054471700000022],[117.69880300000011,2.057775400000025],[117.70546710000008,2.059717400000068],[117.717598,2.059232500000064],[117.71938300000011,2.060905200000036],[117.7186736000001,2.065338300000064],[117.71105950000003,2.073592200000064],[117.7099912000001,2.078857700000071],[117.71296680000012,2.082212600000048],[117.72605140000007,2.082686100000046],[117.72177910000005,2.099804],[117.72000710000009,2.101116600000069],[117.71939830000008,2.104473100000064],[117.72286240000005,2.120022300000073],[117.7231445000001,2.139381600000036],[117.71749110000007,2.151280400000076],[117.70375850000005,2.165526100000022],[117.6815415000001,2.171814600000062],[117.68293370000004,2.178106800000023],[117.68735520000007,2.180280900000071],[117.70236200000011,2.18163850000002],[117.72013210000011,2.187954],[117.74134050000009,2.191833100000053],[117.79038230000003,2.188967400000024],[117.80229970000005,2.197835400000031],[117.81629150000003,2.201265400000068],[117.83827210000004,2.198910100000035],[117.8689197000001,2.198892500000056],[117.89339460000008,2.194689600000061],[117.89556130000005,2.195773900000063],[117.89839920000009,2.20666360000007],[117.90473170000007,2.209844],[117.90831,2.208837700000061],[117.92012780000005,2.197513800000024],[117.93286130000001,2.180336600000032],[117.94546050000008,2.181087900000023],[117.96809710000002,2.190125],[117.9753118000001,2.191823700000043],[117.98113070000011,2.191394800000069],[117.98657160000005,2.195136300000058],[117.9930346000001,2.197234800000047],[118.01049790000002,2.199972700000046],[118.01319190000004,2.196474300000034],[118.018882,2.196839300000022],[118.03229640000006,2.208245800000043],[118.03257670000005,2.209905800000058],[118.03459790000011,2.209900600000026],[118.04085730000008,2.218499700000052],[118.04950560000009,2.224969800000054],[118.0492954,2.227091300000041],[118.05226440000001,2.22643080000006],[118.0554800000001,2.229249700000025],[118.06159610000009,2.237966200000074],[118.06596760000002,2.24066380000005],[118.06575080000005,2.246185400000059],[118.0735327000001,2.247198500000025],[118.07817190000003,2.250918400000046],[118.07857230000002,2.255883500000039],[118.07325890000004,2.255967500000054],[118.07232790000012,2.256463600000075],[118.07187460000011,2.257344100000068],[118.07212470000002,2.257942600000035],[118.075847,2.258633600000053],[118.0864815000001,2.267370400000061],[118.09335770000007,2.275718600000062],[118.09449360000008,2.275568100000044],[118.09764470000005,2.281632700000046],[118.098226,2.287454],[118.09600830000011,2.291750400000069],[118.0917028,2.292127600000072],[118.08969180000008,2.28759180000003],[118.08533160000002,2.289058800000021],[118.08663510000008,2.294667],[118.08995030000005,2.299835100000053],[118.09274770000002,2.299360500000034],[118.093713,2.30049630000002],[118.09447630000011,2.311213100000032],[118.0857909,2.325814300000047],[118.08241790000011,2.324253100000021],[118.081823,2.314467],[118.07985940000003,2.313513600000022],[118.07765310000002,2.314437300000066],[118.07696170000008,2.31877540000005],[118.07169010000007,2.326106200000027],[118.07549480000011,2.328085500000043],[118.07723040000008,2.32651640000006],[118.0779381000001,2.332803700000056],[118.07528090000005,2.337892400000044],[118.07277340000007,2.339010400000063],[118.07001570000011,2.337730400000055],[118.06886230000009,2.344122900000059],[118.064996,2.349109700000042],[118.06732560000012,2.353234],[118.06652050000002,2.357019300000047],[118.05529960000001,2.36564450000003],[118.04624510000008,2.379468],[118.0431747,2.38045690000007],[118.03930190000005,2.377121200000033],[118.03844580000009,2.37321460000004],[118.0415650000001,2.367389600000024],[118.03794440000001,2.363850200000059],[118.0379431,2.362051800000074],[118.02918870000008,2.357904700000063],[118.02135550000003,2.36000910000007],[118.02074260000006,2.362969400000054],[118.0225766000001,2.36420540000006],[118.0218923000001,2.369294],[118.01555630000007,2.364155600000061],[118.0085375000001,2.362840100000028],[118.00151830000004,2.366553900000042],[118.00092310000002,2.368110200000046],[118.00794230000008,2.364514],[118.01317590000008,2.364030700000058],[118.01627370000006,2.369899100000055],[118.00862130000007,2.369968100000051],[118.00171670000009,2.375074900000072],[117.9990461000001,2.374832600000047],[117.99562860000003,2.369887100000028],[117.99130250000007,2.371654100000057],[117.98505420000004,2.371070600000053],[117.98439010000004,2.374671300000045],[117.98605350000003,2.37341280000004],[117.98571760000004,2.371323400000051],[117.9907988000001,2.372323900000026],[117.99479670000005,2.370647500000075],[117.9977186000001,2.374996400000043],[118.00096110000004,2.375663400000064],[118.00953660000005,2.37030210000006],[118.01736640000001,2.371045400000071],[118.01641240000004,2.372972300000072],[118.01848160000009,2.37413470000007],[118.01308890000007,2.37766890000006],[118.01572150000004,2.379043100000047],[118.01362250000011,2.38300090000007],[118.01878650000003,2.387090500000056],[118.01994830000001,2.390199800000062],[118.01683230000003,2.39625170000005],[118.01152280000008,2.401411],[118.01048560000004,2.406527500000038],[118.0067084000001,2.406944900000042],[117.99809530000005,2.414359200000035],[117.99686950000012,2.420287900000062],[117.9947198000001,2.421749200000022],[118.00116550000007,2.423762200000056],[117.99865650000004,2.435458200000028],[117.991513,2.434565600000042],[117.98593390000008,2.435721800000067]]]]},"properties":{"shapeName":"Berau","shapeISO":"","shapeID":"22746128B80459552544678","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[136.622335,-1.331833899999936],[136.62056770000004,-1.332388599999945],[136.62009860000012,-1.335986699999978],[136.62277280000012,-1.340492099999949],[136.6244991000001,-1.337209399999949],[136.62414290000004,-1.333137399999941],[136.622335,-1.331833899999936]]],[[[136.6161595000001,-1.319186299999956],[136.6162359000001,-1.315944199999933],[136.6126624000001,-1.3177652],[136.61352750000003,-1.319108899999947],[136.6161595000001,-1.319186299999956]]],[[[136.21046810000007,-1.312837],[136.21123380000006,-1.310318699999925],[136.20960710000008,-1.307176499999969],[136.20728740000004,-1.306001299999934],[136.20462170000008,-1.307068699999945],[136.2048235000001,-1.3091639],[136.21046810000007,-1.312837]]],[[[136.2180611000001,-1.305224199999941],[136.21627180000007,-1.305794799999944],[136.21685760000003,-1.308808799999952],[136.21935870000004,-1.307282099999952],[136.2180611000001,-1.305224199999941]]],[[[136.60565510000004,-1.321998],[136.60744120000004,-1.307829],[136.60605220000002,-1.303715499999953],[136.60327890000008,-1.302679699999942],[136.6036028000001,-1.308904799999937],[136.6005881000001,-1.319675699999948],[136.6025277000001,-1.323109099999954],[136.60565510000004,-1.321998]]],[[[136.374167,-1.310219099999927],[136.37553650000007,-1.300100499999928],[136.37367580000011,-1.3058831],[136.374167,-1.310219099999927]]],[[[136.69605710000008,-1.294667599999968],[136.69942150000008,-1.292318699999953],[136.69200150000006,-1.294637299999977],[136.69129640000006,-1.296092],[136.69605710000008,-1.294667599999968]]],[[[136.67858730000012,-1.292761799999937],[136.67696160000003,-1.2906098],[136.67047360000004,-1.293520599999965],[136.670671,-1.2977545],[136.6720639,-1.298627499999952],[136.67836450000004,-1.295444],[136.67858730000012,-1.292761799999937]]],[[[136.315301,-1.286434299999939],[136.3233742000001,-1.281347699999969],[136.3239747,-1.279237399999943],[136.31925220000005,-1.277276599999936],[136.31344120000006,-1.285774799999956],[136.31384320000006,-1.287646099999961],[136.315301,-1.286434299999939]]],[[[136.6705654000001,-1.286074599999949],[136.6736823000001,-1.281858499999942],[136.67429470000002,-1.276735],[136.66953690000003,-1.282687499999952],[136.66921060000004,-1.285869],[136.6705654000001,-1.286074599999949]]],[[[136.59334090000004,-1.269878099999971],[136.59227410000005,-1.269270499999948],[136.58950390000007,-1.273279399999979],[136.5903611000001,-1.279969199999925],[136.59206960000006,-1.283617499999934],[136.5940250000001,-1.284117099999946],[136.5934218000001,-1.285763299999928],[136.59603530000004,-1.287085399999967],[136.59639230000005,-1.289625399999977],[136.59980610000002,-1.291626699999938],[136.60292290000007,-1.301821299999972],[136.6046292000001,-1.301927599999942],[136.60263290000012,-1.292877199999964],[136.60639650000007,-1.285934],[136.6060923000001,-1.2826427],[136.60982290000004,-1.2797066],[136.61053120000008,-1.275484399999925],[136.60320030000003,-1.271691899999951],[136.59334090000004,-1.269878099999971]]],[[[136.42226010000002,-1.268030499999952],[136.4180030000001,-1.267971799999941],[136.4150519000001,-1.270762],[136.4103563000001,-1.2825908],[136.40992380000012,-1.286641599999939],[136.41343510000002,-1.309416599999963],[136.41442060000008,-1.299605099999951],[136.4106733000001,-1.288859899999977],[136.41223550000007,-1.280472799999927],[136.41529650000007,-1.274303599999939],[136.42226010000002,-1.268030499999952]]],[[[136.67522840000004,-1.260580299999958],[136.66644660000009,-1.264469599999927],[136.66406840000002,-1.268602699999974],[136.66468640000005,-1.272155299999952],[136.67125440000007,-1.272522899999956],[136.6724421,-1.268349299999954],[136.6761342000001,-1.264711199999965],[136.67937660000007,-1.264130699999953],[136.67522840000004,-1.260580299999958]]],[[[136.3166321000001,-1.2556761],[136.31710170000008,-1.252355],[136.31405230000007,-1.256051899999932],[136.3143384000001,-1.257724699999926],[136.3166321000001,-1.2556761]]],[[[136.70045430000005,-1.252246099999979],[136.7000121000001,-1.250851199999943],[136.69824270000004,-1.251081099999965],[136.70045430000005,-1.252246099999979]]],[[[136.3746202000001,-1.249293899999941],[136.36743930000011,-1.247592099999963],[136.37815520000004,-1.260576399999934],[136.37699980000002,-1.254801899999961],[136.379086,-1.250089],[136.3746202000001,-1.249293899999941]]],[[[136.22541350000006,-1.230090899999936],[136.21636110000009,-1.229259699999943],[136.19914460000007,-1.234068499999978],[136.188349,-1.2451664],[136.18843890000005,-1.248196],[136.19882340000004,-1.257948099999965],[136.20099260000006,-1.258570799999973],[136.20493150000004,-1.257054299999936],[136.2268563,-1.239446099999952],[136.23094770000012,-1.232806],[136.22992880000004,-1.231069],[136.22541350000006,-1.230090899999936]]],[[[136.60356930000012,-1.2290092],[136.60000420000006,-1.230554699999971],[136.59490830000004,-1.23648],[136.59467970000003,-1.241935799999965],[136.59834110000008,-1.252162899999973],[136.60561760000007,-1.254922099999931],[136.61383560000002,-1.252153399999941],[136.6157951,-1.2491013],[136.61735840000006,-1.240773399999966],[136.6136272000001,-1.231910299999925],[136.61034510000002,-1.229543499999977],[136.60356930000012,-1.2290092]]],[[[136.52054090000001,-1.227799499999946],[136.510171,-1.228862399999969],[136.50479,-1.231023499999935],[136.5007637000001,-1.2300128],[136.50002070000005,-1.231554799999969],[136.50260680000008,-1.2394369],[136.52523270000006,-1.244797],[136.5389712000001,-1.242498799999964],[136.53944980000006,-1.237786],[136.5376979,-1.235056499999928],[136.52780530000007,-1.228984399999945],[136.52054090000001,-1.227799499999946]]],[[[136.3535862000001,-1.2228533],[136.3547579000001,-1.220615899999927],[136.35279850000006,-1.221775699999966],[136.3535862000001,-1.2228533]]],[[[136.323745,-1.217667899999981],[136.31221470000003,-1.220212499999946],[136.2932323000001,-1.2327213],[136.2920137000001,-1.2349819],[136.2966047000001,-1.241787399999964],[136.30131860000006,-1.244575199999929],[136.3053092,-1.242341099999976],[136.3090344000001,-1.235671],[136.3125814000001,-1.2332977],[136.33359040000005,-1.227483899999925],[136.33816720000004,-1.233396499999969],[136.34379610000008,-1.2368533],[136.34421110000005,-1.235234799999944],[136.3403419000001,-1.230717],[136.34139160000007,-1.223406599999976],[136.33753780000006,-1.221874],[136.33701,-1.219698],[136.323745,-1.217667899999981]]],[[[136.70137310000007,-1.224724699999967],[136.70644530000004,-1.222554399999979],[136.70885040000007,-1.216545099999962],[136.70471250000003,-1.212943099999961],[136.6982531000001,-1.212582399999974],[136.6948437000001,-1.214794599999948],[136.69403690000001,-1.220116299999972],[136.6970027000001,-1.224319799999932],[136.70137310000007,-1.224724699999967]]],[[[136.4441408,-1.201651599999934],[136.4431307000001,-1.199207699999931],[136.43685520000008,-1.202633299999945],[136.43002310000008,-1.21328],[136.44222980000006,-1.226699399999973],[136.44793530000004,-1.240347899999961],[136.44774360000008,-1.2313598],[136.45063340000002,-1.220301599999971],[136.4441408,-1.201651599999934]]],[[[136.6001593000001,-1.1910371],[136.59723170000007,-1.189463699999976],[136.58591320000005,-1.191153099999951],[136.57803480000007,-1.195572399999946],[136.57604020000008,-1.199737199999959],[136.5829596000001,-1.201922599999932],[136.58524590000002,-1.208956199999932],[136.58451810000008,-1.214484099999936],[136.58698120000008,-1.218789799999968],[136.5869831000001,-1.222020099999952],[136.59099820000006,-1.2276169],[136.59638310000003,-1.2280085],[136.6119463000001,-1.223656199999937],[136.61433350000004,-1.220352599999956],[136.6138462,-1.210446699999977],[136.60991760000002,-1.200112099999956],[136.60611660000006,-1.194730499999935],[136.6001593000001,-1.1910371]]],[[[136.62323560000004,-1.156973799999946],[136.62590350000005,-1.154123],[136.62608060000002,-1.150498299999924],[136.61936680000008,-1.158743199999947],[136.62219660000005,-1.157172699999933],[136.62033510000003,-1.160293499999966],[136.62323560000004,-1.156973799999946]]],[[[136.60976890000006,-1.137013899999943],[136.60017560000006,-1.1351888],[136.60260240000002,-1.138848499999938],[136.60007710000002,-1.149761199999944],[136.5977071000001,-1.153028699999936],[136.59724710000012,-1.159381899999971],[136.5984423000001,-1.160386199999948],[136.60038930000007,-1.158832799999971],[136.60230820000004,-1.162735],[136.60012460000007,-1.1637681],[136.59722560000012,-1.160763799999927],[136.5927246000001,-1.162605799999938],[136.59897030000002,-1.171979199999953],[136.60514530000012,-1.174353499999938],[136.6078635,-1.173005899999964],[136.61436560000004,-1.1629075],[136.61307150000005,-1.160261199999979],[136.6157644000001,-1.153529899999967],[136.61848440000006,-1.155323],[136.62002210000003,-1.153513499999974],[136.6178136000001,-1.1435059],[136.60976890000006,-1.137013899999943]]],[[[134.78666710000005,-1.099397299999964],[134.78800490000003,-1.09737],[134.78729710000005,-1.092491499999937],[134.78569220000008,-1.090004599999929],[134.78370940000002,-1.090004499999964],[134.78386650000004,-1.094059299999969],[134.78666710000005,-1.099397299999964]]],[[[134.94585080000002,-1.027962099999968],[134.9458999000001,-1.025193599999966],[134.944181,-1.024155399999927],[134.9392696000001,-1.028555199999971],[134.93995710000002,-1.033251699999937],[134.94280560000004,-1.037701],[134.94609620000006,-1.037206699999956],[134.94919040000002,-1.032213699999943],[134.9496325,-1.027665499999955],[134.94830650000006,-1.026775599999951],[134.9467839,-1.028555299999937],[134.94585080000002,-1.027962099999968]]],[[[134.93922050000003,-1.026923799999963],[134.942462,-1.023809399999948],[134.94516340000007,-1.015158],[134.93981,-1.019458899999961],[134.93774710000002,-1.026083299999925],[134.93922050000003,-1.026923799999963]]],[[[134.9535125000001,-1.024205],[134.95488770000009,-1.022524199999964],[134.9549369,-1.018322099999978],[134.9519411000001,-1.013823399999978],[134.94869960000005,-1.014021099999979],[134.94599830000004,-1.0189647],[134.94535970000004,-1.023957699999926],[134.95115510000005,-1.0264791],[134.9535125000001,-1.024205]]],[[[134.95051680000006,-1.009769499999948],[134.9481594,-1.010016699999937],[134.94820850000008,-1.013279499999953],[134.950615,-1.012686299999928],[134.95051680000006,-1.009769499999948]]],[[[134.79272620000006,-0.992239499999926],[134.78954620000002,-0.992597699999976],[134.7902580000001,-0.997343599999965],[134.79203840000002,-0.996182],[134.79272620000006,-0.992239499999926]]],[[[134.85700870000005,-0.931064099999958],[134.84578650000003,-0.932892799999934],[134.8448535000001,-0.931162499999971],[134.84352740000008,-0.931607399999962],[134.82925980000005,-0.944212899999968],[134.820223,-0.947327],[134.81094050000002,-0.953308199999981],[134.80615180000007,-0.958746],[134.80634780000003,-0.965370399999927],[134.80467780000004,-0.969523],[134.7925709000001,-0.981139699999972],[134.793111,-0.983117199999924],[134.7955174000001,-0.984205],[134.80642050000006,-0.982870799999944],[134.80892540000002,-0.980893499999979],[134.81025130000012,-0.982129499999928],[134.7971132,-0.990236299999935],[134.79755510000007,-0.993202499999938],[134.80013330000008,-0.995971099999963],[134.8009187,-1.002645],[134.7994943000001,-1.005314399999975],[134.79585980000002,-1.007143399999961],[134.7937482000001,-1.00304],[134.7928641000001,-1.003682599999934],[134.79355140000007,-1.009021799999971],[134.79610520000006,-1.0097141],[134.7986588000001,-1.014163499999938],[134.79755340000008,-1.020639499999959],[134.79475370000011,-1.024297599999954],[134.79681620000008,-1.027807699999926],[134.79494980000004,-1.029290699999933],[134.79521970000008,-1.032850099999962],[134.79914840000004,-1.038980399999957],[134.80538560000002,-1.042194199999926],[134.81282570000008,-1.052180799999974],[134.81420060000005,-1.056481799999972],[134.81862060000003,-1.060090899999977],[134.81970090000004,-1.064293],[134.82404740000004,-1.066517899999951],[134.823163,-1.0723513],[134.827165,-1.085402699999975],[134.82868750000011,-1.086342099999968],[134.8355146,-1.082288699999935],[134.84062230000006,-1.0854529],[134.8397381000001,-1.089308899999935],[134.84209570000007,-1.086837199999934],[134.84420760000012,-1.087035799999967],[134.8392467000001,-1.0939064],[134.83583260000012,-1.104683299999976],[134.83681480000007,-1.106512499999951],[134.8419718,-1.107748699999945],[134.84403450000002,-1.110418399999958],[134.85066480000012,-1.112791799999968],[134.8526538000001,-1.116944399999966],[134.85599360000003,-1.1189715],[134.85697560000006,-1.122827599999937],[134.85515820000012,-1.125595899999951],[134.85420010000007,-1.132022599999971],[134.85709770000005,-1.1371641],[134.86083040000005,-1.1378069],[134.85857140000007,-1.1324677],[134.86171480000007,-1.131676899999945],[134.86284450000005,-1.129897199999959],[134.86986780000007,-1.133654699999965],[134.87598260000004,-1.133308899999975],[134.88104140000007,-1.135583199999928],[134.88271110000005,-1.139043799999968],[134.8903239000001,-1.140675499999929],[134.90189070000008,-1.138649099999952],[134.92269110000007,-1.131926299999975],[134.93698370000004,-1.131036799999947],[134.94250920000002,-1.128565099999946],[134.95228310000005,-1.127626],[134.9532163,-1.125450799999953],[134.94830490000004,-1.122632899999928],[134.9528725,-1.123572199999956],[134.9538549,-1.121051],[134.95257790000005,-1.12026],[134.95660540000006,-1.117738799999927],[134.9544935,-1.115217499999972],[134.9612959000001,-1.112004199999944],[134.9602645000001,-1.109779599999968],[134.9625721000001,-1.109927899999946],[134.96119780000004,-1.105725799999959],[134.96380090000002,-1.105725899999925],[134.96497970000007,-1.101869799999974],[134.9689089000001,-1.099101399999938],[134.96871240000007,-1.096382399999925],[134.9746308000001,-1.092872499999942],[134.9722733000001,-1.089560199999937],[134.97482730000002,-1.087731099999928],[134.9745326000001,-1.084468299999969],[134.97883020000006,-1.075421499999948],[134.98280850000003,-1.072109199999943],[134.98118770000008,-1.069241899999952],[134.9812369000001,-1.064347699999928],[134.97701310000002,-1.062370199999975],[134.97892850000005,-1.062666899999954],[134.97983710000005,-1.058415299999979],[134.97841290000008,-1.0539166],[134.97978810000006,-1.0508516],[134.9785111000001,-1.049813399999948],[134.9820965,-1.046204499999931],[134.98113880000005,-1.041705799999932],[134.98207190000005,-1.039481199999955],[134.9805494000001,-1.037207099999932],[134.9860010000001,-1.035822899999971],[134.9809179,-1.012093399999969],[134.97816760000012,-1.010560799999951],[134.97320710000008,-1.010758499999952],[134.9619110000001,-1.019953599999951],[134.95913610000002,-1.0200524],[134.95402820000004,-1.026676899999927],[134.9528494000001,-1.0329058],[134.9596024000001,-1.037997899999937],[134.9609775,-1.048181799999952],[134.9491164000001,-1.056487],[134.9424368000001,-1.058464299999969],[134.9387041000001,-1.0633584],[134.9395634000001,-1.072157799999957],[134.92414150000002,-1.075222799999949],[134.9243871000001,-1.072849899999937],[134.9207527000001,-1.070180199999925],[134.92144040000005,-1.068103899999926],[134.91967230000012,-1.065236599999935],[134.9231595000001,-1.063555799999961],[134.9239454000001,-1.059650399999953],[134.9258609000001,-1.059156099999939],[134.92286490000004,-1.057475099999976],[134.9233071000001,-1.052927],[134.9211461000001,-1.0517899],[134.92463320000002,-1.051938299999961],[134.92804680000006,-1.043979099999945],[134.93025690000002,-1.044325199999946],[134.93114090000006,-1.045956699999977],[134.93556120000005,-1.043781499999966],[134.93511910000007,-1.046896],[134.937673,-1.046896099999969],[134.94032520000007,-1.044028799999978],[134.94152860000008,-1.039777299999969],[134.9368876000001,-1.026923799999963],[134.937035,-1.021337399999936],[134.9400065000001,-1.015948899999955],[134.93985930000008,-1.009719899999936],[134.94823320000012,-1.001711399999976],[134.94651380000005,-0.994493599999942],[134.9478160000001,-0.986484899999937],[134.94486940000002,-0.977635799999973],[134.944452,-0.9705169],[134.94130890000008,-0.965771],[134.93305820000012,-0.961024899999927],[134.92728750000003,-0.954054199999973],[134.91726860000006,-0.951631599999928],[134.91270120000001,-0.949159699999939],[134.9101475000001,-0.945847399999934],[134.90118460000008,-0.941299],[134.88316070000008,-0.934674],[134.86388420000003,-0.933536199999935],[134.85700870000005,-0.931064099999958]]],[[[135.70867910000004,-0.803157],[135.71108880000008,-0.805843899999957],[135.71418370000004,-0.806366499999967],[135.7275188000001,-0.801370099999929],[135.73103920000005,-0.803057899999942],[135.7297873000001,-0.804342299999973],[135.7323391000001,-0.806244399999969],[135.73623710000004,-0.805958399999952],[135.7373358000001,-0.807123399999966],[135.73646180000003,-0.807670499999972],[135.7412816000001,-0.8101429],[135.74179060000006,-0.815755099999933],[135.74560750000012,-0.824125399999957],[135.7502978000001,-0.828738],[135.75267350000001,-0.836323799999946],[135.7553905000001,-0.837369599999931],[135.75427020000006,-0.843410199999937],[135.76051960000007,-0.850590899999929],[135.7609341000001,-0.856345799999929],[135.7668063000001,-0.864025899999945],[135.76580320000005,-0.868615899999952],[135.76778880000006,-0.874085099999945],[135.77480570000012,-0.876033699999937],[135.7725382000001,-0.878222],[135.76816780000001,-0.878817499999968],[135.76586570000006,-0.885286399999927],[135.76744910000002,-0.888044599999944],[135.76696590000006,-0.8933004],[135.76949420000005,-0.895463899999925],[135.76995610000006,-0.901432799999952],[135.77521320000005,-0.903976299999954],[135.7772824000001,-0.911347899999953],[135.7762566,-0.922596599999963],[135.78224720000003,-0.929705799999965],[135.78279190000012,-0.936126499999943],[135.78619420000007,-0.937719],[135.78886310000007,-0.936244],[135.78757810000002,-0.945614],[135.7895178000001,-0.956410099999971],[135.787618,-0.965471],[135.7918711000001,-0.967990799999939],[135.79356130000008,-0.9721521],[135.79270040000006,-0.978335299999969],[135.79530090000003,-0.9854214],[135.7986327000001,-0.988060299999972],[135.80097410000008,-0.998523299999931],[135.80345610000006,-1.002588899999978],[135.810781,-1.008699],[135.81434850000005,-1.008721899999955],[135.82354290000012,-1.0254374],[135.8254700000001,-1.031833899999924],[135.82262490000005,-1.038683499999934],[135.8229692000001,-1.0453182],[135.82016150000004,-1.059539799999925],[135.822703,-1.065959899999939],[135.82326010000008,-1.073165299999971],[135.82113430000004,-1.075282399999935],[135.8204703,-1.085331099999962],[135.8181403000001,-1.089194199999952],[135.80228970000007,-1.0923751],[135.80365370000004,-1.094865499999969],[135.80196840000008,-1.097826],[135.8063631000001,-1.103383899999926],[135.80604080000012,-1.1051167],[135.81179960000009,-1.115222599999925],[135.81430960000012,-1.113778],[135.81789680000009,-1.117025799999965],[135.8232984000001,-1.131824399999971],[135.82702930000005,-1.135938499999952],[135.83271450000007,-1.1387524],[135.83960190000005,-1.1447066],[135.857827,-1.166576199999952],[135.8662197000001,-1.1688478],[135.87316050000004,-1.172924599999931],[135.8904649000001,-1.174146399999927],[135.8983022000001,-1.177681399999926],[135.905977,-1.178039899999931],[135.9074799000001,-1.167571299999963],[135.91230210000003,-1.163310199999955],[135.91348440000002,-1.159736299999963],[135.92241380000007,-1.158325599999955],[135.93179070000008,-1.1547128],[135.93544680000002,-1.149224899999979],[135.9426367000001,-1.147526],[135.942923,-1.145721],[135.9404118000001,-1.143086799999935],[135.94163060000005,-1.141642499999932],[135.9439618,-1.142147099999931],[135.94511080000007,-1.146334],[135.95127920000004,-1.146584599999926],[135.9557449,-1.149182],[135.96549920000007,-1.148565099999928],[135.9704296000001,-1.146614199999931],[135.97831940000003,-1.147297299999934],[135.9827653000001,-1.144299799999942],[135.98898740000004,-1.144658599999957],[136.00125140000011,-1.142344199999968],[136.00532220000002,-1.143894899999964],[136.01719260000004,-1.144504299999937],[136.02183760000003,-1.147209799999928],[136.02832820000003,-1.146304199999975],[136.03205850000006,-1.148289],[136.0351422000001,-1.147241099999974],[136.03820880000012,-1.148575499999936],[136.04387730000008,-1.155178899999953],[136.04968760000008,-1.1571981],[136.05015930000002,-1.172141499999952],[136.05625780000003,-1.177661799999953],[136.07334820000005,-1.184080199999926],[136.07467580000002,-1.185848299999975],[136.07912220000003,-1.185016399999938],[136.0846639,-1.187901799999963],[136.087712,-1.187575699999968],[136.10666690000005,-1.193451599999946],[136.13440790000004,-1.199576299999933],[136.14233330000002,-1.2001505],[136.1478552000001,-1.198596099999975],[136.14875130000007,-1.199946099999977],[136.1553484000001,-1.194694799999979],[136.16258840000012,-1.185415399999954],[136.17260970000007,-1.181729699999948],[136.1788137000001,-1.182160199999942],[136.19066350000003,-1.177643199999977],[136.19181140000012,-1.178509099999928],[136.19971770000006,-1.176845399999934],[136.20312400000012,-1.175797199999977],[136.20337410000002,-1.173848],[136.2062069000001,-1.173594099999946],[136.2076422,-1.175723],[136.2085379,-1.173881899999969],[136.207426,-1.173341],[136.21273280000003,-1.1724002],[136.22522920000006,-1.170878799999969],[136.2405232000001,-1.171124],[136.24821380000003,-1.168414299999938],[136.26007990000005,-1.161334799999963],[136.274691,-1.158549099999959],[136.2823072000001,-1.150316499999974],[136.29385220000006,-1.147351699999945],[136.30283250000002,-1.142547299999933],[136.31410890000006,-1.140773599999932],[136.32636890000003,-1.133549599999981],[136.33341170000006,-1.126544499999966],[136.35464950000005,-1.111051399999951],[136.35864170000002,-1.097407099999941],[136.3648962000001,-1.092098799999974],[136.37109810000004,-1.089425199999937],[136.3794888000001,-1.090215299999954],[136.38420170000006,-1.085485199999937],[136.38756820000003,-1.0766775],[136.38557620000006,-1.072347499999978],[136.36235560000011,-1.063551699999948],[136.3531779000001,-1.066731799999957],[136.34512790000008,-1.066157899999951],[136.3408270000001,-1.070454699999971],[136.33156050000002,-1.076089099999933],[136.32365330000005,-1.074107499999968],[136.31952850000005,-1.071041399999956],[136.31116940000004,-1.060614399999963],[136.3027787000001,-1.060004399999968],[136.29630440000005,-1.054990299999929],[136.2923565000001,-1.046041099999968],[136.29199330000006,-1.034672099999966],[136.28994750000004,-1.0299088],[136.28453230000002,-1.027673199999924],[136.27976150000006,-1.022910899999943],[136.27585250000004,-1.021504899999968],[136.2684124000001,-1.021941],[136.25742050000008,-1.017542],[136.25383520000003,-1.018445699999972],[136.2481726000001,-1.0258831],[136.2370045,-1.029460699999959],[136.2240955000001,-1.028888199999926],[136.20808610000006,-1.031493099999977],[136.1989625000001,-1.0375242],[136.1951633000001,-1.042109499999924],[136.18980350000004,-1.044890799999962],[136.18535680000002,-1.044098399999939],[136.17847270000004,-1.045905699999935],[136.1725375000001,-1.044247699999971],[136.16070060000004,-1.034326199999953],[136.16141730000004,-1.033098699999925],[136.1588157000001,-1.027902099999949],[136.15927940000006,-1.021152299999926],[136.15786160000005,-1.017254699999967],[136.1587002000001,-1.007328499999971],[136.15518520000012,-1.003215],[136.1522424000001,-0.996285899999975],[136.14594780000004,-0.991956799999969],[136.13556620000008,-0.990155699999946],[136.13190710000003,-0.985572899999966],[136.11915620000002,-0.9756151],[136.110477,-0.971322699999973],[136.09912440000005,-0.960642399999927],[136.09433320000005,-0.947505299999932],[136.0981114000001,-0.932055499999933],[136.09154480000007,-0.917186399999935],[136.08770720000007,-0.914588699999968],[136.08512560000008,-0.915239199999974],[136.07651870000007,-0.912245899999959],[136.07086860000004,-0.9039818],[136.07031060000008,-0.896365799999955],[136.060447,-0.887056099999938],[136.05322220000005,-0.889476599999966],[136.0503543000001,-0.892076299999928],[136.04752380000002,-0.900198599999953],[136.04393770000001,-0.899225],[136.0400281000001,-0.895724899999948],[136.03984820000005,-0.893667499999935],[136.04622830000005,-0.884064199999955],[136.04493680000007,-0.881935],[136.04678050000007,-0.870889199999965],[136.05160020000005,-0.859156799999937],[136.05095390000008,-0.8563054],[136.04331580000007,-0.854755399999931],[136.03865550000012,-0.859376899999972],[136.03560740000012,-0.859161],[136.03888540000003,-0.847573599999976],[136.036661,-0.843026099999975],[136.02977480000004,-0.8374692],[136.009872,-0.831482499999936],[136.00083360000008,-0.823110499999927],[135.99335660000008,-0.820838299999934],[135.98363740000002,-0.8145961],[135.9819165,-0.815643299999977],[135.98177270000008,-0.814379899999949],[135.97329170000012,-0.812288399999943],[135.96292670000003,-0.804060899999968],[135.95968040000002,-0.799296899999945],[135.94748760000004,-0.795581799999979],[135.94176640000012,-0.787533499999938],[135.93674580000004,-0.785983299999941],[135.93050730000004,-0.790063099999941],[135.92478790000007,-0.790244599999937],[135.91983790000006,-0.783603899999946],[135.91773840000008,-0.775482499999953],[135.91128230000004,-0.767975799999931],[135.90914650000002,-0.757508],[135.90620580000007,-0.756173099999955],[135.89474530000007,-0.744155],[135.89038820000007,-0.736756],[135.8909258000001,-0.735456399999975],[135.88342980000004,-0.727697],[135.8814218000001,-0.727697399999954],[135.87946670000008,-0.723979699999973],[135.87774550000006,-0.7237996],[135.86564,-0.706655599999976],[135.85403850000012,-0.700160199999971],[135.84675890000005,-0.6989342],[135.8122604,-0.685584],[135.8035731000001,-0.686842599999977],[135.80353680000007,-0.740779599999939],[135.7388029000001,-0.794467599999962],[135.70867910000004,-0.803157]]]]},"properties":{"shapeName":"Biak Numfor","shapeISO":"","shapeID":"22746128B46235991871424","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[118.69819040000004,-8.742319099999975],[118.6990297000001,-8.740976199999977],[118.69712030000005,-8.740766399999927],[118.69819040000004,-8.742319099999975]]],[[[118.82247160000009,-8.7309294],[118.82415010000011,-8.7364159],[118.824852,-8.73227309999993],[118.82247160000009,-8.7309294]]],[[[118.78492740000002,-8.731329],[118.78309630000001,-8.730818799999952],[118.78579710000008,-8.734783199999981],[118.78715520000003,-8.732858699999952],[118.78492740000002,-8.731329]]],[[[118.7438965,-8.730857899999933],[118.74098210000011,-8.731016199999942],[118.74108120000005,-8.7348356],[118.74275970000008,-8.736904099999947],[118.74638370000002,-8.734827],[118.74783330000002,-8.732165299999963],[118.7438965,-8.730857899999933]]],[[[118.77481840000007,-8.718562099999929],[118.77444460000004,-8.712816299999929],[118.77286530000003,-8.71588319999995],[118.77481840000007,-8.718562099999929]]],[[[119.20029450000004,-8.6951303],[119.19921110000007,-8.6941786],[119.19918060000009,-8.697799699999962],[119.20029450000004,-8.6951303]]],[[[119.1737518000001,-8.6896124],[119.17394260000003,-8.690837899999963],[119.175499,-8.690535499999953],[119.1737518000001,-8.6896124]]],[[[119.25012970000012,-8.671171199999947],[119.24712370000009,-8.671670899999981],[119.25094600000011,-8.672607399999947],[119.25012970000012,-8.671171199999947]]],[[[119.227539,-8.6538439],[119.22660830000007,-8.652565],[119.22284700000012,-8.653473899999938],[119.22353360000011,-8.655814199999952],[119.2192688,-8.660813299999973],[119.21767430000011,-8.655775099999971],[119.21578220000004,-8.6543865],[119.21701810000002,-8.658514],[119.21433260000003,-8.6598444],[119.2138443,-8.662879],[119.21711730000004,-8.664081599999975],[119.216568,-8.669914199999937],[119.21231840000007,-8.672323199999937],[119.20819090000009,-8.672431],[119.20962530000008,-8.676213299999972],[119.2114563,-8.674325],[119.21524810000005,-8.677202199999954],[119.21456150000006,-8.683502199999964],[119.21698,-8.6827154],[119.21856690000004,-8.684458799999959],[119.221283,-8.683306699999946],[119.222229,-8.684130699999969],[119.22186280000005,-8.688874299999952],[119.2232742000001,-8.690352399999938],[119.223671,-8.683129299999962],[119.22247320000008,-8.682972899999982],[119.22215270000004,-8.678805299999965],[119.22905730000002,-8.674694],[119.23121640000011,-8.67859939999994],[119.23361200000011,-8.679012299999954],[119.23196410000003,-8.676425],[119.23255160000008,-8.6709538],[119.23490140000001,-8.66856189999993],[119.23841860000005,-8.66926189999998],[119.2391510000001,-8.663775399999963],[119.23417660000007,-8.662784599999952],[119.227539,-8.6538439]]],[[[119.12842560000001,-8.593297],[119.12993620000009,-8.59606649999995],[119.13060760000008,-8.59530449999994],[119.12842560000001,-8.593297]]],[[[119.0474746000001,-8.589866699999959],[119.0490172000001,-8.587198499999943],[119.04780820000008,-8.585197299999948],[119.04488980000008,-8.587698799999941],[119.046349,-8.590283599999964],[119.0474746000001,-8.589866699999959]]],[[[119.03819210000006,-8.572206699999981],[119.03724430000011,-8.57119],[119.03713230000005,-8.573197599999958],[119.0346939000001,-8.571750099999974],[119.03212630000007,-8.573232099999927],[119.03468530000009,-8.576006399999926],[119.03990670000007,-8.576127099999951],[119.03819210000006,-8.572206699999981]]],[[[119.04082,-8.569182499999954],[119.04094920000011,-8.567941699999949],[119.03995840000005,-8.5686483],[119.04082,-8.569182499999954]]],[[[119.18661720000011,-8.565975599999945],[119.18600770000012,-8.568413699999951],[119.190712,-8.574468599999932],[119.18816230000004,-8.5826882],[119.1889877000001,-8.583904299999972],[119.19832610000003,-8.584868399999948],[119.199585,-8.582805599999972],[119.19501490000005,-8.5757933],[119.198555,-8.573349],[119.19795990000011,-8.571401599999945],[119.19534210000006,-8.569214599999952],[119.18809850000002,-8.568357],[119.18661720000011,-8.565975599999945]]],[[[119.04497620000006,-8.556756099999973],[119.04394040000011,-8.556656699999962],[119.04297710000003,-8.561159399999951],[119.03823490000002,-8.566267799999935],[119.04060820000007,-8.5668883],[119.04197320000003,-8.565073499999926],[119.04363550000005,-8.568403],[119.04668880000008,-8.568579099999965],[119.04250320000006,-8.57122359999994],[119.04318360000002,-8.575057399999935],[119.0462146000001,-8.574239399999954],[119.04729640000005,-8.575642199999947],[119.04418880000003,-8.576330199999973],[119.04267520000008,-8.579755],[119.04340520000005,-8.5819605],[119.0457292000001,-8.581050699999935],[119.0481258000001,-8.5774157],[119.05308720000005,-8.57612],[119.05600740000011,-8.569805499999973],[119.05581630000006,-8.566365399999938],[119.053198,-8.566258399999981],[119.054662,-8.564354899999955],[119.05293050000012,-8.561167099999977],[119.04497620000006,-8.556756099999973]]],[[[119.04287920000002,-8.556706299999973],[119.04138000000012,-8.556499499999973],[119.0422158,-8.557921199999953],[119.04287920000002,-8.556706299999973]]],[[[119.1778412000001,-8.547143],[119.1762619000001,-8.547811499999966],[119.17700960000002,-8.550915699999962],[119.18009180000001,-8.548456199999976],[119.1778412000001,-8.547143]]],[[[119.26620480000008,-8.550323499999934],[119.26695250000012,-8.548531499999967],[119.26519780000001,-8.54653639999998],[119.26483150000001,-8.550613399999975],[119.26620480000008,-8.550323499999934]]],[[[119.23160550000011,-8.538866],[119.23206330000005,-8.5371551],[119.23078150000003,-8.53804589999993],[119.23160550000011,-8.538866]]],[[[118.69844820000003,-8.446054499999946],[118.69723510000006,-8.447590799999944],[118.69341280000003,-8.447863599999948],[118.69251250000002,-8.449940699999956],[118.6975632000001,-8.451665899999966],[118.69879150000008,-8.450457599999936],[118.69844820000003,-8.446054499999946]]],[[[119.32872770000006,-8.433173199999942],[119.3269577000001,-8.432321499999944],[119.33045960000004,-8.435710899999947],[119.330925,-8.434647599999948],[119.32872770000006,-8.433173199999942]]],[[[119.27494050000007,-8.396696099999929],[119.27561190000006,-8.392903299999944],[119.27204130000007,-8.39656739999998],[119.26331330000005,-8.400928499999964],[119.26747130000001,-8.400900799999931],[119.26876070000003,-8.40250969999994],[119.2686920000001,-8.411245399999927],[119.27070620000006,-8.414343799999926],[119.26588440000012,-8.424410799999976],[119.266098,-8.427158299999974],[119.26947020000011,-8.427113499999962],[119.27082060000009,-8.431201],[119.265419,-8.437801399999955],[119.26625060000003,-8.438484199999948],[119.27202610000006,-8.435352299999977],[119.27430730000003,-8.437058399999955],[119.267662,-8.4455814],[119.27151490000006,-8.449430499999949],[119.27317810000011,-8.453990899999951],[119.27476500000012,-8.454024299999958],[119.27874760000009,-8.44802],[119.28096010000002,-8.448783899999967],[119.27970890000006,-8.459183699999926],[119.27758030000007,-8.463113799999974],[119.279686,-8.467840199999955],[119.28073880000011,-8.468200699999954],[119.28131870000004,-8.463764199999957],[119.28390500000012,-8.462413799999979],[119.289772,-8.462765699999977],[119.2933197000001,-8.458834599999932],[119.29317480000009,-8.455738099999962],[119.295517,-8.452522299999941],[119.29536440000004,-8.443754199999944],[119.30124660000001,-8.440542199999982],[119.30133820000003,-8.433944699999927],[119.29946140000004,-8.432148],[119.30078890000004,-8.429793399999937],[119.30294040000001,-8.429569299999969],[119.30701450000004,-8.432920499999966],[119.30939480000006,-8.449792899999977],[119.3102493,-8.450524299999927],[119.31149290000008,-8.44882389999998],[119.31139380000002,-8.445596699999953],[119.31387330000007,-8.444804199999965],[119.31692510000005,-8.449152],[119.31627660000004,-8.454685199999972],[119.32065580000005,-8.454974199999981],[119.31800080000005,-8.448686599999974],[119.31982420000008,-8.445789299999944],[119.3182068000001,-8.440803499999959],[119.32044220000012,-8.438437499999964],[119.317131,-8.43400379999997],[119.31761930000005,-8.432777399999964],[119.32198330000006,-8.434378599999945],[119.32570650000002,-8.441850699999975],[119.32691190000003,-8.441742899999952],[119.31917570000007,-8.428027099999952],[119.32049560000007,-8.427287099999944],[119.32582860000002,-8.431135199999972],[119.32318880000003,-8.425564799999961],[119.32539370000006,-8.424155199999973],[119.32783510000002,-8.428024299999947],[119.33390040000006,-8.42915819999996],[119.33527370000002,-8.430939699999954],[119.33466340000007,-8.4279108],[119.33094790000007,-8.425429299999962],[119.328331,-8.421184499999981],[119.32794950000005,-8.4147902],[119.31793980000009,-8.409494399999971],[119.31798550000008,-8.40618509999996],[119.31942750000007,-8.403138099999978],[119.32189180000012,-8.402669899999978],[119.32118990000004,-8.401329],[119.3159409000001,-8.39847659999998],[119.31609340000011,-8.402137799999934],[119.31326290000004,-8.407521299999928],[119.30742640000005,-8.409461],[119.30588530000011,-8.411640199999965],[119.29637910000008,-8.4166613],[119.28276060000007,-8.4192123],[119.2776718,-8.416393299999982],[119.27524570000003,-8.4106836],[119.2746201000001,-8.404764199999931],[119.2768860000001,-8.402380899999969],[119.27476500000012,-8.3993845],[119.27494050000007,-8.396696099999929]]],[[[118.71361500000012,-8.496585299999936],[118.71316530000001,-8.498651199999927],[118.7069825000001,-8.504568099999972],[118.706969,-8.5071305],[118.69493100000011,-8.511536599999943],[118.69578,-8.515763299999946],[118.694356,-8.5170507],[118.68895930000008,-8.5172133],[118.6876979000001,-8.5185592],[118.67815150000001,-8.515862099999936],[118.67586790000007,-8.516845299999943],[118.67511890000003,-8.519139199999927],[118.68096040000012,-8.524538499999949],[118.67709350000007,-8.525545099999931],[118.67659,-8.528715099999943],[118.6739960000001,-8.530109399999958],[118.67488490000005,-8.536156099999971],[118.67358090000005,-8.535713499999929],[118.67238280000004,-8.540318],[118.66755320000004,-8.539157],[118.66583070000001,-8.539359],[118.6658744,-8.541088799999955],[118.66056160000005,-8.541161599999953],[118.66035580000005,-8.544616099999928],[118.65728170000011,-8.544872599999962],[118.65315940000005,-8.550761399999942],[118.65035250000005,-8.550830899999937],[118.65088650000007,-8.546059599999978],[118.65537260000008,-8.54246139999998],[118.66086580000001,-8.531228099999964],[118.66404720000003,-8.530835099999933],[118.66552740000009,-8.5277023],[118.66758730000004,-8.527014699999938],[118.67111970000008,-8.519615199999976],[118.66032410000003,-8.510960599999976],[118.66130060000012,-8.506268499999976],[118.66500860000008,-8.503671599999961],[118.66368100000011,-8.501650799999936],[118.66430660000003,-8.496425599999952],[118.6672592000001,-8.494454399999938],[118.66439060000005,-8.488343199999974],[118.66941070000007,-8.481355699999938],[118.67811580000011,-8.475670799999932],[118.67990870000006,-8.472771699999953],[118.67977910000002,-8.468489599999941],[118.68650060000004,-8.459760599999981],[118.68536380000012,-8.453854599999943],[118.68687440000008,-8.448071499999969],[118.6893387,-8.445135099999959],[118.687088,-8.4438915],[118.68707270000004,-8.44068619999996],[118.68975830000011,-8.438806499999941],[118.68990330000008,-8.433847399999934],[118.6920242000001,-8.430494299999964],[118.68905640000003,-8.4273834],[118.69058230000007,-8.4240027],[118.68859860000009,-8.422450099999935],[118.69285580000007,-8.4201117],[118.685936,-8.419354399999975],[118.6859055000001,-8.41798209999996],[118.6903152000001,-8.416982699999949],[118.69174190000001,-8.414386799999932],[118.68328860000008,-8.411637299999938],[118.68922420000001,-8.411469499999953],[118.69100190000006,-8.405849499999931],[118.69021610000004,-8.404531499999962],[118.69382480000002,-8.40341],[118.6934586000001,-8.40138049999996],[118.69007110000007,-8.4015884],[118.69140620000007,-8.3977003],[118.69803620000005,-8.396542599999975],[118.69252010000002,-8.396743799999967],[118.69327570000007,-8.39359849999994],[118.6852417,-8.393747299999973],[118.69005590000006,-8.389820099999952],[118.69113920000007,-8.383561099999952],[118.69342040000004,-8.382738099999926],[118.695755,-8.377907799999946],[118.69448850000003,-8.374636599999974],[118.69161990000009,-8.372373599999946],[118.69190220000007,-8.36831],[118.6877975000001,-8.368155499999943],[118.68821720000005,-8.36567309999998],[118.69108580000011,-8.365043599999979],[118.69065090000004,-8.358408899999972],[118.68774410000003,-8.354331],[118.68579860000011,-8.34488959999993],[118.68317410000009,-8.340298699999948],[118.67963410000004,-8.338585899999941],[118.67793270000004,-8.332305],[118.66861730000005,-8.325338399999964],[118.66946410000003,-8.318217299999958],[118.66146850000007,-8.31384559999998],[118.65942380000001,-8.310533499999963],[118.6601257000001,-8.308222799999953],[118.65750890000004,-8.300052599999958],[118.65080260000002,-8.298747099999957],[118.6489792000001,-8.29639629999997],[118.6491165000001,-8.291686],[118.64497380000012,-8.28921319999995],[118.6386185,-8.288110699999947],[118.63276670000005,-8.291967399999976],[118.62908170000003,-8.291996899999958],[118.62621310000009,-8.288574199999971],[118.62239840000007,-8.288361599999973],[118.61042780000002,-8.278303199999925],[118.60744480000005,-8.277408599999944],[118.60598750000008,-8.274672499999951],[118.60176090000004,-8.276220299999977],[118.5971909000001,-8.273809399999948],[118.59186550000004,-8.275059699999929],[118.58441160000007,-8.266388899999981],[118.57759090000002,-8.270611799999926],[118.57346340000004,-8.271407099999976],[118.56947330000003,-8.270016699999928],[118.56469730000003,-8.26488969999997],[118.55871820000004,-8.263382099999944],[118.54154210000002,-8.264882099999966],[118.53612520000001,-8.263146399999926],[118.53194430000008,-8.264877299999966],[118.52834320000011,-8.262459799999931],[118.5241165000001,-8.262373899999943],[118.520256,-8.260191899999938],[118.51354980000008,-8.260909099999935],[118.50657650000005,-8.255827899999929],[118.50219730000003,-8.249402],[118.49494170000003,-8.2431755],[118.48667150000006,-8.24965],[118.48047640000004,-8.251152],[118.4757919000001,-8.249952299999961],[118.46968840000011,-8.245778099999939],[118.46356960000003,-8.245927799999947],[118.459671,-8.25492],[118.45344540000008,-8.25634],[118.45143130000008,-8.260737399999925],[118.44737240000006,-8.26265909999995],[118.44695280000008,-8.267106099999978],[118.4439066000001,-8.268683299999964],[118.44602970000005,-8.267829899999981],[118.44835660000001,-8.270593599999927],[118.45532230000003,-8.283621799999935],[118.46044920000008,-8.290210699999932],[118.4727554000001,-8.2997551],[118.47598270000003,-8.307218499999976],[118.47998050000001,-8.325884799999926],[118.48698420000005,-8.337101],[118.50721740000006,-8.355607],[118.52738190000002,-8.366074599999934],[118.53345490000004,-8.379045499999961],[118.5406647000001,-8.389037099999939],[118.5426331000001,-8.394870799999978],[118.53894810000008,-8.4067926],[118.52458950000005,-8.428280799999925],[118.51574710000011,-8.434926099999927],[118.51038340000002,-8.435978699999964],[118.50901140000008,-8.438431699999967],[118.50452120000011,-8.440635199999974],[118.50196430000005,-8.444688799999938],[118.50300370000002,-8.451237],[118.50138460000005,-8.456457399999977],[118.50223460000007,-8.461797199999978],[118.50553980000007,-8.465975599999979],[118.50624660000005,-8.470985399999961],[118.514389,-8.485672],[118.51512910000008,-8.493141199999968],[118.51295470000002,-8.500133499999947],[118.51401520000002,-8.510594399999945],[118.50817110000003,-8.518343899999934],[118.50408170000003,-8.519533199999955],[118.4951172000001,-8.527101499999958],[118.492157,-8.53163429999995],[118.49187470000004,-8.535543399999938],[118.49349210000003,-8.539682399999947],[118.50213620000011,-8.55127529999993],[118.50205230000006,-8.554870599999958],[118.504631,-8.558452599999953],[118.50486760000001,-8.564922299999978],[118.50775910000004,-8.565838799999938],[118.50541690000011,-8.5734816],[118.50978090000001,-8.585971799999982],[118.50656130000004,-8.595267299999932],[118.51054380000005,-8.604020099999957],[118.51810450000005,-8.6109924],[118.52062230000001,-8.615185699999927],[118.51813510000011,-8.625000899999975],[118.51954650000005,-8.63917829999997],[118.52468870000007,-8.644548399999962],[118.5360260000001,-8.648971599999982],[118.53388980000011,-8.665318499999955],[118.534195,-8.674202],[118.53636930000005,-8.681393599999979],[118.53124240000011,-8.686298399999941],[118.52091980000012,-8.700762699999927],[118.51341250000007,-8.715004],[118.50836950000007,-8.739678399999946],[118.50527950000003,-8.746491399999968],[118.5043869000001,-8.753372199999944],[118.50226590000011,-8.754841799999951],[118.50749210000004,-8.758635499999968],[118.50885010000002,-8.761232399999926],[118.50159450000001,-8.765345599999932],[118.49501040000007,-8.773914299999944],[118.49484250000012,-8.776492099999928],[118.50000000000011,-8.783704799999953],[118.50137330000007,-8.793233899999962],[118.49388120000003,-8.80618],[118.4919129000001,-8.815283799999975],[118.48351290000005,-8.82046319999995],[118.48064420000003,-8.834457399999962],[118.47706610000012,-8.839859],[118.47821810000005,-8.851307899999938],[118.47566990000007,-8.85732269999994],[118.4774933000001,-8.861631399999965],[118.47752380000009,-8.866970099999946],[118.47560880000003,-8.873417899999936],[118.478302,-8.884838099999968],[118.48880770000005,-8.884450899999933],[118.49025230000007,-8.886482499999943],[118.49164930000006,-8.883010299999967],[118.4936676000001,-8.883394199999941],[118.4943872,-8.879623],[118.49869130000002,-8.878464099999974],[118.50122070000009,-8.879839899999979],[118.50268990000006,-8.883354099999963],[118.50345390000007,-8.881291099999942],[118.50659940000003,-8.882105799999977],[118.50801280000007,-8.876732299999958],[118.50971920000006,-8.87622289999996],[118.515526,-8.876248399999952],[118.51926980000007,-8.8785023],[118.52279720000001,-8.871116499999971],[118.52786540000011,-8.868213099999934],[118.531622,-8.8638453],[118.55267160000005,-8.85345419999993],[118.55804550000005,-8.847749199999953],[118.56586430000004,-8.846692299999972],[118.57353030000002,-8.850206899999932],[118.57339020000006,-8.847634599999935],[118.57508380000002,-8.845991899999945],[118.58201120000001,-8.8446676],[118.5864937,-8.841522199999929],[118.60248780000006,-8.839624799999967],[118.61014110000008,-8.833448699999963],[118.6109815000001,-8.829424699999947],[118.62678470000003,-8.8251588],[118.6270776,-8.822828399999935],[118.625282,-8.820434399999954],[118.63732860000005,-8.813710699999945],[118.64924520000011,-8.814298399999927],[118.650182,-8.812235699999974],[118.65542460000006,-8.812128299999927],[118.65602110000009,-8.809664699999928],[118.6652438000001,-8.806112199999973],[118.67433670000003,-8.806133599999953],[118.68137990000002,-8.809597199999928],[118.68846170000006,-8.805510499999968],[118.70010290000005,-8.806915699999934],[118.70442590000005,-8.803301799999929],[118.70745090000003,-8.797913499999936],[118.7182841,-8.797847],[118.71899410000003,-8.793431299999952],[118.72043610000003,-8.792849599999954],[118.72355650000009,-8.793775599999947],[118.7260437000001,-8.798193899999944],[118.72860720000006,-8.7974586],[118.72863770000004,-8.801251399999956],[118.7301407000001,-8.802397699999972],[118.73143770000001,-8.801755],[118.72971340000004,-8.797995599999979],[118.73284150000006,-8.796055799999976],[118.73796080000011,-8.801952299999925],[118.741188,-8.80139639999993],[118.74603270000011,-8.803742399999976],[118.74719240000002,-8.801896099999965],[118.7466736,-8.797445299999936],[118.74819950000006,-8.79599],[118.75267030000009,-8.795332899999948],[118.75813290000008,-8.797046699999953],[118.76000980000003,-8.798687],[118.76145930000007,-8.8036661],[118.77584840000009,-8.810479199999975],[118.78020480000009,-8.81445789999998],[118.78086850000011,-8.817533499999968],[118.78362270000002,-8.820282],[118.78507230000002,-8.819706],[118.78810120000003,-8.822196],[118.78961950000007,-8.821305299999949],[118.79216,-8.822921699999938],[118.7931976000001,-8.820878],[118.79416650000007,-8.822694799999965],[118.79611970000008,-8.822199799999964],[118.79752350000001,-8.819684],[118.799469,-8.820708299999978],[118.80167390000008,-8.819274899999925],[118.80611420000002,-8.821041099999945],[118.80480960000011,-8.819583899999941],[118.80600740000011,-8.818969699999968],[118.8091965000001,-8.822848299999976],[118.80870060000007,-8.825592],[118.8130493000001,-8.827549],[118.81718440000009,-8.831616399999973],[118.81574250000006,-8.834187499999928],[118.81802370000003,-8.836853],[118.8325195000001,-8.839428899999973],[118.83404540000004,-8.843300799999952],[118.83522030000006,-8.844156299999952],[118.83580020000011,-8.843118699999934],[118.8363571000001,-8.845804199999975],[118.83629610000003,-8.844254499999977],[118.83919530000003,-8.843073799999956],[118.84291080000003,-8.845179599999938],[118.84423830000003,-8.842234599999927],[118.84223940000004,-8.838668799999937],[118.84409330000005,-8.835365299999978],[118.8506546000001,-8.8336334],[118.85206610000012,-8.83464719999995],[118.85260010000002,-8.833438899999976],[118.8632507000001,-8.838444699999968],[118.86469270000009,-8.846420299999977],[118.86566930000004,-8.843076699999926],[118.87073520000001,-8.841038699999956],[118.8727798000001,-8.842165],[118.8766098000001,-8.840309099999956],[118.8872070000001,-8.840346299999965],[118.89611820000005,-8.837462399999936],[118.89836880000007,-8.838006],[118.89888,-8.841427799999963],[118.90217590000009,-8.841671],[118.9036407000001,-8.8436222],[118.909935,-8.840701099999933],[118.91790770000011,-8.840595299999961],[118.93745420000005,-8.831773699999928],[118.94470220000005,-8.830921199999977],[118.94541930000003,-8.8267479],[118.94938660000003,-8.823070499999972],[118.95201870000005,-8.82290269999993],[118.95254520000003,-8.819780299999934],[118.95612330000006,-8.818102799999963],[118.9579010000001,-8.819731699999977],[118.95970150000005,-8.81763929999994],[118.95423890000006,-8.815680499999928],[118.95424650000007,-8.813052199999959],[118.95141600000011,-8.812670699999956],[118.94905090000009,-8.80692],[118.9459915000001,-8.805275],[118.94802090000007,-8.794018699999981],[118.95113370000001,-8.79192729999994],[118.95029450000004,-8.789989499999933],[118.94397730000003,-8.788486499999976],[118.93844600000011,-8.79499149999998],[118.93567660000008,-8.793116599999962],[118.93777470000009,-8.791177699999935],[118.9360352000001,-8.788438799999938],[118.93795010000008,-8.786130899999932],[118.93742370000007,-8.78465179999995],[118.92836000000011,-8.788725899999974],[118.92414090000011,-8.788426399999935],[118.92038730000002,-8.786212899999953],[118.91452030000005,-8.775327699999934],[118.91216280000003,-8.773807499999975],[118.90942380000001,-8.765323599999931],[118.90627290000009,-8.766016],[118.8952713000001,-8.762299599999949],[118.88482670000008,-8.762098299999934],[118.88301850000005,-8.762991899999975],[118.88451390000012,-8.763663299999962],[118.882782,-8.76634409999997],[118.883255,-8.764679],[118.88185880000003,-8.764795299999946],[118.88326260000008,-8.763841599999978],[118.8740921000001,-8.763433499999962],[118.87030030000005,-8.765476199999966],[118.87121580000007,-8.764185899999973],[118.87001040000007,-8.763083499999937],[118.86531830000001,-8.763185499999963],[118.86088560000007,-8.763870199999928],[118.85840610000002,-8.767773599999941],[118.85464480000007,-8.769103],[118.85062410000012,-8.7688093],[118.846199,-8.770429599999943],[118.84122470000011,-8.768934299999955],[118.84002690000011,-8.770199799999943],[118.83863830000007,-8.768680599999925],[118.8348846,-8.771436699999981],[118.82693480000012,-8.76605319999993],[118.81845850000002,-8.76613139999995],[118.81060030000003,-8.762937499999964],[118.80407720000005,-8.765133899999967],[118.79841610000005,-8.765247399999964],[118.78965,-8.763442],[118.77440640000009,-8.762986199999943],[118.76562500000011,-8.76440329999997],[118.76369480000005,-8.76718619999997],[118.75975040000003,-8.768246699999963],[118.74927520000006,-8.766591099999971],[118.74649050000005,-8.763994199999956],[118.74442290000002,-8.765254],[118.73865510000007,-8.764970799999958],[118.72863770000004,-8.777507799999967],[118.72634120000009,-8.7775593],[118.72470090000002,-8.765484799999967],[118.72667700000011,-8.762064899999928],[118.72645570000009,-8.759346],[118.72090150000008,-8.757411],[118.71896360000005,-8.754634899999928],[118.696302,-8.752264799999978],[118.6937736000001,-8.748529899999937],[118.69174880000003,-8.747900399999935],[118.69421420000003,-8.743326299999978],[118.69576690000008,-8.744207499999959],[118.69663770000011,-8.742350599999952],[118.69494370000007,-8.738983],[118.69701390000012,-8.7403393],[118.6984983000001,-8.738664899999947],[118.71221920000005,-8.741240499999947],[118.71617130000004,-8.7399654],[118.71713260000001,-8.738043799999957],[118.719986,-8.738954499999977],[118.7191696000001,-8.73631],[118.72160340000005,-8.730601299999933],[118.7268600000001,-8.727420799999948],[118.73112490000005,-8.729166],[118.73268130000008,-8.726355499999954],[118.73137670000006,-8.723222699999951],[118.7335892000001,-8.718988399999944],[118.7416687000001,-8.715169899999978],[118.74132540000005,-8.71344659999994],[118.74263,-8.713941599999941],[118.743721,-8.712182],[118.74830630000008,-8.701415],[118.76055910000002,-8.692823399999952],[118.76499940000008,-8.693491],[118.7655334000001,-8.696869799999945],[118.76805880000006,-8.694698399999936],[118.76546480000002,-8.699261699999965],[118.77034,-8.701496099999929],[118.7725296000001,-8.7086573],[118.775177,-8.709833099999969],[118.78257750000012,-8.703540799999928],[118.7880096,-8.704894099999933],[118.7911911000001,-8.708011599999963],[118.7932968,-8.707357399999978],[118.7966004000001,-8.7087459],[118.80427550000002,-8.704581299999973],[118.814827,-8.703220399999964],[118.82122040000002,-8.7128801],[118.83452610000006,-8.712247799999943],[118.83934020000004,-8.715318699999955],[118.84611510000002,-8.723578499999974],[118.84375000000011,-8.728125599999942],[118.84616090000009,-8.730101599999955],[118.85003660000007,-8.728429799999958],[118.851593,-8.724786699999981],[118.85578160000011,-8.723860699999932],[118.8597946000001,-8.72038269999996],[118.86463930000002,-8.722857499999975],[118.869751,-8.721816099999955],[118.875473,-8.716889399999957],[118.88114170000006,-8.708665899999971],[118.88791660000004,-8.708695399999954],[118.88628390000008,-8.707115199999976],[118.88267520000011,-8.707346],[118.8807068000001,-8.704272299999957],[118.87519080000004,-8.700458499999968],[118.87607580000008,-8.695317299999942],[118.88134,-8.689064],[118.88806150000005,-8.687117599999965],[118.89240260000008,-8.683944699999927],[118.907547,-8.680279699999971],[118.92864230000009,-8.694706],[118.92979430000003,-8.699173899999948],[118.9380493000001,-8.7049522],[118.94619750000004,-8.7172604],[118.9544601,-8.721878],[118.95746610000003,-8.728932399999962],[118.96300510000003,-8.734972],[118.96577450000007,-8.7438869],[118.9716568,-8.748906099999942],[118.97643280000011,-8.745406199999934],[118.98617550000006,-8.742758699999968],[118.98855590000005,-8.74508],[118.99110410000003,-8.742299099999968],[118.99621580000007,-8.741635299999928],[118.9981156,-8.740068399999927],[119.00373080000008,-8.74152369999996],[119.00747680000006,-8.739606899999956],[119.01124570000002,-8.741097499999967],[119.01165010000011,-8.743441599999926],[119.01366420000011,-8.741640099999927],[119.01783300000011,-8.742765799999972],[119.01901610000004,-8.7397806],[119.02236840000012,-8.739216399999975],[119.023442,-8.737041799999929],[119.02812520000009,-8.735809399999937],[119.0291605000001,-8.736987099999965],[119.03595260000009,-8.732868],[119.04425650000007,-8.736335199999928],[119.04697880000003,-8.735130199999958],[119.059117,-8.738049699999976],[119.06579410000006,-8.744409099999928],[119.0655518000001,-8.743300399999953],[119.06748120000009,-8.74273839999995],[119.0746732,-8.744551499999943],[119.07666150000011,-8.741621],[119.0797672000001,-8.744299499999954],[119.08386440000004,-8.742793199999937],[119.08452720000003,-8.744644599999958],[119.086888,-8.744222899999954],[119.08658680000008,-8.746161899999947],[119.08976920000009,-8.746611],[119.09236550000003,-8.752406299999961],[119.09269970000003,-8.750916399999937],[119.09529110000005,-8.750725699999975],[119.09569590000001,-8.748944499999936],[119.0989138000001,-8.7517597],[119.099617,-8.749725299999966],[119.100412,-8.751053299999967],[119.10115690000009,-8.74811189999997],[119.103326,-8.748561],[119.10234560000004,-8.744650099999944],[119.10403810000003,-8.744754199999932],[119.10226890000001,-8.741336199999978],[119.103956,-8.73929309999994],[119.09840450000002,-8.731111899999974],[119.10480660000007,-8.72619089999995],[119.1085839000001,-8.731278399999951],[119.1111605000001,-8.729556299999956],[119.11490630000003,-8.7328062],[119.11704250000003,-8.744918799999937],[119.12110330000007,-8.743254399999955],[119.12499890000004,-8.7470799],[119.12513920000004,-8.749446199999966],[119.12771580000003,-8.750011499999971],[119.12801380000008,-8.75196589999996],[119.13320640000006,-8.7528072],[119.13466130000006,-8.751996499999962],[119.13470460000008,-8.749931299999957],[119.13652040000011,-8.749364899999932],[119.1363831000001,-8.746386499999971],[119.13942450000002,-8.744446299999936],[119.13779440000008,-8.740892499999973],[119.13387690000002,-8.739582299999938],[119.13390760000004,-8.737518399999942],[119.13914410000007,-8.736059199999943],[119.14132690000008,-8.732383699999957],[119.1473999000001,-8.728946699999938],[119.15305330000001,-8.728478399999972],[119.15959930000008,-8.725232099999971],[119.16445920000001,-8.7262525],[119.16513820000011,-8.723013899999955],[119.16748810000001,-8.724357599999962],[119.17235560000006,-8.723840699999926],[119.16935730000012,-8.721731199999965],[119.170372,-8.7189264],[119.159935,-8.717422499999941],[119.15430450000008,-8.712894499999948],[119.14969630000007,-8.71285439999997],[119.14794920000008,-8.710659],[119.14859010000009,-8.708211],[119.15826420000008,-8.703611399999943],[119.16019440000002,-8.705419499999948],[119.16430670000011,-8.704234099999951],[119.16548920000002,-8.706748],[119.16680150000002,-8.705587399999956],[119.17307280000011,-8.706442799999934],[119.16840360000003,-8.7009439],[119.16767120000009,-8.696765899999946],[119.1707077000001,-8.695152299999961],[119.17540740000004,-8.701055499999939],[119.17614750000007,-8.69814679999996],[119.17142490000003,-8.6928606],[119.17343140000003,-8.692402799999968],[119.1730576000001,-8.689766899999938],[119.17104340000003,-8.691863099999978],[119.16892240000004,-8.691084899999964],[119.16945650000002,-8.685653699999932],[119.1667404000001,-8.685340899999971],[119.16557310000007,-8.686550199999942],[119.161766,-8.684392],[119.16016390000004,-8.676977099999931],[119.15746310000009,-8.672285099999954],[119.159172,-8.670068799999967],[119.15788270000007,-8.6675463],[119.1592865,-8.664806399999975],[119.1571808000001,-8.663585699999942],[119.156807,-8.657064399999967],[119.160698,-8.65264129999997],[119.17169950000005,-8.647406599999954],[119.15622710000002,-8.64709],[119.15592960000004,-8.644241299999976],[119.15850830000011,-8.642442699999947],[119.15852360000008,-8.640693699999929],[119.1556015000001,-8.638806299999942],[119.1528320000001,-8.640082399999926],[119.1504288000001,-8.638459199999943],[119.1505585000001,-8.636976199999935],[119.15265660000011,-8.634216299999935],[119.15470890000006,-8.63696959999993],[119.15605170000003,-8.635969199999977],[119.15852360000008,-8.638303699999938],[119.16165920000003,-8.637512199999946],[119.16111200000012,-8.631955499999947],[119.159523,-8.6303683],[119.1606445000001,-8.627609199999938],[119.16152190000003,-8.630110699999932],[119.16308590000006,-8.627986],[119.16490150000004,-8.635803299999964],[119.1711927,-8.635011599999928],[119.17241560000002,-8.632509299999981],[119.1705856000001,-8.632098199999973],[119.17221060000008,-8.62949089999995],[119.1697507,-8.625617199999965],[119.17081810000002,-8.624804299999937],[119.17448430000002,-8.628176699999926],[119.17531580000002,-8.631758699999978],[119.17819080000004,-8.63075619999995],[119.18267060000005,-8.6335878],[119.18196550000005,-8.627455099999963],[119.17722320000007,-8.624194199999977],[119.18125150000003,-8.622208599999965],[119.18294810000009,-8.623107799999957],[119.18262290000007,-8.621312399999965],[119.18146360000003,-8.619842099999971],[119.17993930000011,-8.620811499999945],[119.17529070000012,-8.618544099999951],[119.17871860000002,-8.617050199999937],[119.17639630000008,-8.614606599999945],[119.17333560000009,-8.61496349999993],[119.17459640000004,-8.61378039999994],[119.17317660000003,-8.6135825],[119.1724822000001,-8.611103699999944],[119.17385160000003,-8.609424],[119.18226950000007,-8.607864499999948],[119.18361170000003,-8.608752899999956],[119.187712,-8.607119699999942],[119.19060590000004,-8.611286],[119.19243310000002,-8.6099942],[119.19137010000009,-8.605544799999961],[119.18465130000004,-8.604284],[119.17983250000009,-8.599185],[119.179973,-8.593914799999936],[119.1845,-8.588150299999938],[119.183022,-8.58541159999993],[119.17559330000006,-8.586408499999948],[119.15986310000005,-8.579821599999946],[119.1640837000001,-8.57884409999997],[119.16915890000007,-8.574008],[119.16849820000004,-8.571946799999978],[119.16182980000008,-8.57359159999993],[119.16382380000005,-8.571535599999947],[119.16386250000005,-8.5689132],[119.16513880000002,-8.57119419999998],[119.16647710000007,-8.570907199999965],[119.16550730000006,-8.567543899999976],[119.16737320000004,-8.569180899999935],[119.1681297,-8.566779699999927],[119.1691383000001,-8.56957269999998],[119.16970470000001,-8.567920199999946],[119.17211370000007,-8.569374899999957],[119.17579650000005,-8.563385],[119.1739291,-8.562780199999963],[119.17205940000008,-8.56436679999996],[119.16914220000001,-8.562981899999954],[119.16604270000005,-8.559261699999979],[119.16693490000011,-8.556922499999928],[119.16503140000009,-8.556453699999963],[119.16141510000011,-8.559060099999954],[119.1624117,-8.560472],[119.16136430000006,-8.563067199999978],[119.15793510000003,-8.564475399999935],[119.15655410000011,-8.566799099999969],[119.15322960000003,-8.567730099999949],[119.15097190000006,-8.565666299999975],[119.1471120000001,-8.5672258],[119.14834180000003,-8.568319699999961],[119.14657120000004,-8.569733799999938],[119.14741850000007,-8.576144099999965],[119.15097190000006,-8.575663099999929],[119.15004090000002,-8.578463899999974],[119.147522,-8.578934699999934],[119.14677840000002,-8.581532399999958],[119.14718190000008,-8.585074099999929],[119.15091760000007,-8.585745199999963],[119.15252690000011,-8.588526699999932],[119.15058010000007,-8.592851899999971],[119.147171,-8.5928288],[119.146472,-8.588332599999944],[119.14067080000007,-8.591440199999965],[119.13708810000003,-8.595012699999927],[119.13449680000008,-8.595443299999943],[119.13407780000011,-8.601622899999938],[119.13083870000003,-8.603430599999967],[119.126653,-8.600944],[119.1249927,-8.597848399999975],[119.12237550000009,-8.598003399999925],[119.12113190000002,-8.594698],[119.12065120000011,-8.60030269999993],[119.11562820000006,-8.596603199999947],[119.11572260000003,-8.594497699999977],[119.11187740000003,-8.594326],[119.1091080000001,-8.596234299999935],[119.10672760000011,-8.606716199999937],[119.11056520000011,-8.605989399999942],[119.11056870000004,-8.611082],[119.1138846,-8.611141],[119.11340330000007,-8.61333849999994],[119.11600950000002,-8.614679099999933],[119.1160202000001,-8.617322899999976],[119.12045030000002,-8.616595699999948],[119.12115480000011,-8.618638],[119.1276236000001,-8.6220295],[119.1304321,-8.626291299999934],[119.12913050000009,-8.630095099999949],[119.12278350000008,-8.6295153],[119.10754110000005,-8.636660799999959],[119.102142,-8.63589],[119.09970090000002,-8.632666599999936],[119.09923590000005,-8.636265],[119.09612830000003,-8.639744],[119.09103130000005,-8.642132799999956],[119.09018760000004,-8.644309799999974],[119.08606280000004,-8.6444626],[119.07990680000012,-8.650754],[119.06237790000012,-8.6514759],[119.06155440000009,-8.650379099999952],[119.0548477000001,-8.652548799999977],[119.03701780000006,-8.642993899999965],[119.031687,-8.633512099999962],[119.03317720000007,-8.624870699999974],[119.03190130000007,-8.619459099999972],[119.03518,-8.614273899999944],[119.03706250000005,-8.614119799999969],[119.03631670000004,-8.609338099999945],[119.03416820000007,-8.608563],[119.03317550000008,-8.605299399999979],[119.03423640000005,-8.602531299999953],[119.03708660000007,-8.6029501],[119.0368218000001,-8.595756299999948],[119.03155590000006,-8.596245299999964],[119.02926150000008,-8.594214199999954],[119.02957740000011,-8.586894599999937],[119.02581610000004,-8.583705],[119.02425130000006,-8.5841488],[119.02409460000001,-8.580237799999963],[119.02652770000009,-8.578122899999926],[119.02294050000012,-8.579389299999946],[119.02305280000007,-8.578029299999969],[119.01785590000009,-8.575845699999945],[119.02207950000002,-8.574679099999969],[119.0209628,-8.57296969999993],[119.0166081000001,-8.575926799999934],[119.0150609000001,-8.575352799999962],[119.014069,-8.570979499999964],[119.01512330000003,-8.566244299999937],[119.01756890000001,-8.565838799999938],[119.0178059000001,-8.563503799999978],[119.0161644000001,-8.560576],[119.01338840000005,-8.559249],[119.01759820000007,-8.5551307],[119.02085880000004,-8.557573299999945],[119.02358250000009,-8.557751699999926],[119.02389760000005,-8.553651199999933],[119.02559350000001,-8.551891199999943],[119.02270320000002,-8.549451],[119.01999300000011,-8.550391099999956],[119.019833,-8.546110699999929],[119.01834870000005,-8.548247299999957],[119.01519260000009,-8.548771],[119.01479340000003,-8.546684199999959],[119.01767690000008,-8.545025],[119.018207,-8.5427477],[119.01587560000007,-8.540470399999947],[119.0135279000001,-8.5404595],[119.01300320000007,-8.537760299999945],[119.01667070000008,-8.529310899999928],[119.01819610000007,-8.528921099999934],[119.02164730000004,-8.531939799999975],[119.02108480000004,-8.525778599999967],[119.0234865000001,-8.5228575],[119.03112450000003,-8.527612399999953],[119.03456480000011,-8.525697499999978],[119.03684220000002,-8.526546699999926],[119.04173760000003,-8.522657399999957],[119.03959010000005,-8.520531499999947],[119.0406666,-8.517826899999932],[119.04400380000004,-8.518609699999956],[119.04844520000006,-8.514884199999926],[119.05165290000002,-8.514478499999939],[119.05296830000009,-8.511027299999967],[119.04997830000002,-8.508100799999966],[119.05010510000011,-8.50573419999995],[119.0401845,-8.505205899999964],[119.03945550000003,-8.503357],[119.04135130000009,-8.5],[119.04755890000001,-8.499363399999936],[119.046027,-8.493637099999944],[119.04435770000009,-8.4922742],[119.048795,-8.486600799999962],[119.04695670000001,-8.483061499999963],[119.04764340000008,-8.477155599999946],[119.04376980000006,-8.474346199999957],[119.0395294000001,-8.47498969999998],[119.03747980000003,-8.473795799999948],[119.03677190000008,-8.471429299999954],[119.03962710000008,-8.470033599999965],[119.03490190000002,-8.467002499999978],[119.03637050000009,-8.464720399999976],[119.0399943000001,-8.463505399999974],[119.04442110000002,-8.46303],[119.04974590000006,-8.465829699999972],[119.053243,-8.465153599999951],[119.05345430000011,-8.464012499999967],[119.05063630000006,-8.464026399999966],[119.0466398000001,-8.460272499999974],[119.05201740000007,-8.453944],[119.05085520000011,-8.451757],[119.0492071000001,-8.451387199999942],[119.04349140000011,-8.455571],[119.03896330000009,-8.455159199999969],[119.044738,-8.4504575],[119.04063880000001,-8.451154799999927],[119.03883210000004,-8.447858499999938],[119.04364980000003,-8.443812],[119.0466609,-8.438054099999931],[119.04326070000002,-8.438208499999973],[119.04011130000004,-8.441502899999932],[119.0359681000001,-8.440288399999929],[119.03507420000005,-8.436889599999972],[119.0307256000001,-8.441879099999937],[119.02708180000002,-8.440309799999966],[119.02701280000008,-8.43651749999998],[119.02942970000004,-8.432388499999945],[119.02817450000009,-8.427052699999933],[119.02212920000011,-8.421804299999962],[119.02151330000004,-8.415991299999973],[119.01889370000004,-8.415431599999977],[119.01967180000008,-8.4121602],[119.01789270000006,-8.412099399999931],[119.01192540000011,-8.403323899999975],[119.0126878000001,-8.400492199999974],[119.01610730000004,-8.4005],[119.01721910000003,-8.3983046],[119.01112060000003,-8.3992008],[119.00429050000002,-8.394917599999928],[119.00185510000006,-8.390153399999974],[118.9992433000001,-8.389304399999958],[118.9949875000001,-8.382524499999931],[118.99371340000005,-8.37741559999995],[118.99210040000003,-8.376517499999977],[118.9909914000001,-8.370586799999955],[118.99306180000008,-8.353016199999956],[118.98908060000008,-8.344510699999944],[118.99699950000002,-8.323786599999949],[119.004124,-8.3145254],[119.000703,-8.31044769999994],[118.98294360000011,-8.30303589999994],[118.96852060000003,-8.305086599999981],[118.95600530000002,-8.300774799999942],[118.9440552000001,-8.293987],[118.928305,-8.295409099999972],[118.92467120000003,-8.294234599999982],[118.9201508000001,-8.289951299999927],[118.90920070000004,-8.289912099999981],[118.897728,-8.287713099999962],[118.88960270000007,-8.284464799999967],[118.87652590000005,-8.286501899999962],[118.86921690000008,-8.289630899999963],[118.86168670000006,-8.289767299999937],[118.858801,-8.2894519],[118.85644820000005,-8.287009199999943],[118.84774460000006,-8.286432499999933],[118.83453370000007,-8.281470299999967],[118.81566620000001,-8.280852299999935],[118.80740360000004,-8.286063199999944],[118.79903410000009,-8.2879257],[118.79573820000007,-8.293647799999974],[118.7899857000001,-8.295887],[118.78642470000011,-8.30215279999993],[118.77615830000002,-8.304573399999981],[118.7706836000001,-8.308551299999976],[118.765213,-8.309770599999979],[118.76373930000011,-8.315479],[118.7594332000001,-8.321174399999961],[118.75545340000008,-8.323473599999943],[118.75510680000002,-8.329572699999972],[118.74809950000008,-8.332767],[118.74600650000002,-8.3388002],[118.74137410000003,-8.336612899999977],[118.7375786,-8.338307699999973],[118.73669010000003,-8.340704499999958],[118.73224750000008,-8.340512599999954],[118.72739580000007,-8.3461978],[118.72903410000004,-8.349069399999962],[118.73258210000006,-8.349920299999951],[118.73852540000007,-8.356828699999937],[118.7467041000001,-8.377842],[118.74154670000007,-8.390121499999964],[118.74214940000002,-8.39991],[118.73936470000001,-8.402668],[118.7506714000001,-8.401968],[118.7534485000001,-8.399027799999942],[118.76512910000008,-8.40094659999994],[118.77593530000001,-8.412551299999961],[118.78725430000009,-8.413194699999963],[118.793396,-8.423331299999973],[118.8001938000001,-8.427797299999952],[118.8052063,-8.425523699999928],[118.80684660000009,-8.412655799999925],[118.80876160000003,-8.409389499999975],[118.83096310000008,-8.421372399999939],[118.841301,-8.424228699999958],[118.86428070000011,-8.424179099999947],[118.86711880000007,-8.438606299999947],[118.87071990000004,-8.441997499999957],[118.8803329000001,-8.445957199999953],[118.88607790000003,-8.451614399999926],[118.88641360000008,-8.454750099999956],[118.8822861000001,-8.462375599999973],[118.88174440000012,-8.468694699999958],[118.89601130000005,-8.48984919999998],[118.88199620000012,-8.490217199999961],[118.87067410000009,-8.492735899999957],[118.8665390000001,-8.489915799999949],[118.85353870000006,-8.496804199999929],[118.84214020000002,-8.49670889999993],[118.83813480000003,-8.501163499999961],[118.83369450000009,-8.50258059999993],[118.82621770000003,-8.508000399999958],[118.81886290000011,-8.522788],[118.801454,-8.53259339999994],[118.79663930000004,-8.524812],[118.79548470000009,-8.5181756],[118.78985320000004,-8.511153699999966],[118.7851415,-8.509599299999934],[118.78233460000001,-8.506663699999933],[118.77575380000007,-8.514937299999929],[118.76758350000011,-8.519199499999957],[118.7606829,-8.515492499999937],[118.75345850000008,-8.519531499999971],[118.73203280000007,-8.514120099999957],[118.72767640000006,-8.508864399999936],[118.72508240000002,-8.500435799999934],[118.71361500000012,-8.496585299999936]]],[[[119.06790160000003,-8.130936599999927],[119.0604019000001,-8.127692199999956],[119.0541,-8.127207799999951],[119.0471649000001,-8.12955949999997],[119.03988650000008,-8.1354255],[119.03505710000002,-8.137450199999932],[119.02416230000006,-8.148493799999926],[119.0124588000001,-8.153924],[119.010376,-8.161728799999935],[119.0001373,-8.179085699999973],[118.99951170000008,-8.183261899999934],[119.0021286000001,-8.188363099999947],[118.99849440000003,-8.202611399999967],[119.00162260000002,-8.207955399999946],[118.99880250000001,-8.216101699999967],[119.00032040000008,-8.229705799999977],[119.01221570000007,-8.247069499999952],[119.0195930000001,-8.248230399999954],[119.03033610000011,-8.256088499999976],[119.0390569000001,-8.260235799999975],[119.05055240000002,-8.261806499999977],[119.05942820000007,-8.25981939999997],[119.06677840000009,-8.256088399999953],[119.0831885,-8.2543211],[119.08831780000003,-8.2507662],[119.0958068000001,-8.237396399999966],[119.102771,-8.230828299999928],[119.11070350000011,-8.227469799999938],[119.11502690000009,-8.2232682],[119.11865290000003,-8.2148448],[119.12028820000012,-8.204308699999956],[119.12312870000005,-8.199240399999951],[119.12322230000007,-8.1864481],[119.11784360000001,-8.174660699999947],[119.11280060000001,-8.156510399999945],[119.10901640000009,-8.155209499999955],[119.103508,-8.146673199999952],[119.0892563000001,-8.132865899999956],[119.079895,-8.129919099999938],[119.07254790000002,-8.131770099999926],[119.06790160000003,-8.130936599999927]]],[[[118.31742860000008,-8.370325099999945],[118.30967710000004,-8.3701849],[118.30149080000001,-8.3676042],[118.2907944000001,-8.367751099999964],[118.28506470000002,-8.359768899999949],[118.28320310000004,-8.360172299999931],[118.2820511000001,-8.363901099999964],[118.28015140000002,-8.364654499999972],[118.273674,-8.360951399999976],[118.27152250000006,-8.358643499999971],[118.27139280000006,-8.356309899999928],[118.272316,-8.352531399999975],[118.2754440000001,-8.349183099999948],[118.2770157000001,-8.343059499999981],[118.27454380000006,-8.3336878],[118.26271820000011,-8.336373299999934],[118.26045990000011,-8.33969209999998],[118.26018520000002,-8.347473099999945],[118.25708770000006,-8.349972699999967],[118.25350950000006,-8.34612459999994],[118.24897770000007,-8.3441362],[118.24582670000007,-8.338989199999958],[118.23352810000006,-8.332251499999927],[118.22972870000001,-8.327194199999951],[118.22969820000003,-8.322635599999956],[118.22359470000004,-8.313855199999978],[118.22269440000002,-8.295618099999956],[118.21962740000004,-8.291276899999957],[118.21801760000005,-8.284101499999963],[118.21272280000005,-8.278552],[118.2080155000001,-8.276452099999972],[118.2061920000001,-8.273005499999954],[118.19541930000003,-8.270509699999934],[118.19422910000003,-8.271255499999938],[118.18914030000008,-8.2672358],[118.18724060000011,-8.269208],[118.18437960000006,-8.268237099999965],[118.1806107000001,-8.261043499999971],[118.18145750000008,-8.2582016],[118.17722320000007,-8.253438],[118.17725370000005,-8.251601199999925],[118.17510990000005,-8.251930199999947],[118.17453000000012,-8.249617599999965],[118.17297360000009,-8.250796299999934],[118.170845,-8.24858469999998],[118.16865540000003,-8.248511299999961],[118.16767880000009,-8.245609299999956],[118.16251370000009,-8.241715399999975],[118.160965,-8.234619099999975],[118.1624680000001,-8.23349],[118.15886690000002,-8.230669],[118.1598282000001,-8.226201],[118.15802760000008,-8.222293799999932],[118.1603622,-8.210322399999939],[118.1567612,-8.2064047],[118.15479280000011,-8.207237299999974],[118.14787290000004,-8.20178409999994],[118.1468430000001,-8.19906039999995],[118.14774320000004,-8.195964799999956],[118.1452637000001,-8.190197],[118.14562990000002,-8.184589399999936],[118.14907070000004,-8.174123699999939],[118.14563750000002,-8.163908],[118.14667510000004,-8.140874899999972],[118.14499660000001,-8.136407799999972],[118.14024350000011,-8.132936499999971],[118.1285706000001,-8.12793449999998],[118.1165390000001,-8.1254025],[118.10982510000008,-8.122001599999976],[118.10233310000001,-8.115188599999954],[118.09179690000008,-8.112104399999964],[118.0811768000001,-8.100467699999967],[118.07646180000006,-8.099939399999926],[118.05940250000003,-8.107462899999973],[118.04418180000005,-8.107713699999977],[118.03002930000002,-8.102742199999966],[118.022728,-8.097808799999939],[118.00617220000004,-8.093958799999939],[117.98336030000007,-8.104696299999944],[117.97141270000009,-8.103450799999962],[117.96057890000009,-8.107197799999938],[117.95073700000012,-8.101350799999977],[117.94370270000002,-8.083914799999945],[117.93144990000008,-8.082468],[117.92382810000004,-8.080054299999972],[117.91254430000004,-8.085698099999945],[117.90105440000002,-8.094181099999957],[117.8923416,-8.093132],[117.88111110000011,-8.09939],[117.87475590000008,-8.099304199999949],[117.86840820000009,-8.101213499999972],[117.84989170000006,-8.115246799999966],[117.83527370000002,-8.122756],[117.82910160000006,-8.12935639999995],[117.81644440000002,-8.130664799999977],[117.80659480000008,-8.126036599999964],[117.79259490000004,-8.124040599999944],[117.7865753000001,-8.123882299999934],[117.7795334000001,-8.1264696],[117.774437,-8.130068799999947],[117.76769260000003,-8.141835199999946],[117.76546480000002,-8.143521299999975],[117.77936550000004,-8.162533799999949],[117.7869644000001,-8.1667604],[117.79002380000009,-8.170431099999973],[117.8023071,-8.172926899999936],[117.81475830000011,-8.187761299999977],[117.8300018000001,-8.19710159999994],[117.85118870000008,-8.213354099999947],[117.86039730000005,-8.217349],[117.87088010000002,-8.2189264],[117.87414550000005,-8.221093199999927],[117.88249970000004,-8.22091679999994],[117.88819890000002,-8.216180799999961],[117.90264890000003,-8.219475799999941],[117.90820310000004,-8.216178],[117.91637420000006,-8.217483499999958],[117.91983030000006,-8.213340799999969],[117.92200470000012,-8.217783],[117.9287872000001,-8.2199946],[117.93098450000002,-8.2223005],[117.93623350000007,-8.229223199999979],[117.938858,-8.235841799999946],[117.95381930000008,-8.25],[117.96127320000005,-8.261257199999932],[117.97331240000005,-8.2729998],[117.99730680000005,-8.286776499999974],[118.01301580000006,-8.292574899999977],[118.02454380000006,-8.29916],[118.03029630000003,-8.306458499999962],[118.04524230000004,-8.335572199999945],[118.04938510000011,-8.33954239999997],[118.06947330000003,-8.353117],[118.07964330000004,-8.356268899999975],[118.08724980000011,-8.360945699999945],[118.10333250000008,-8.377699899999925],[118.11601260000009,-8.3841391],[118.12500000000011,-8.385383599999955],[118.1385193000001,-8.38977049999994],[118.13962560000004,-8.396212599999956],[118.14546210000003,-8.405747399999939],[118.15462490000004,-8.405819],[118.1624756000001,-8.409023299999944],[118.16732790000003,-8.414406799999938],[118.17423250000002,-8.4139652],[118.18515780000007,-8.417740799999933],[118.20519260000003,-8.4367066],[118.22138980000011,-8.439277699999934],[118.2253952000001,-8.437493299999971],[118.23525240000004,-8.4381628],[118.24271390000001,-8.441209799999967],[118.24532320000003,-8.4386187],[118.25111390000006,-8.4377737],[118.25936890000003,-8.434037199999977],[118.26287080000009,-8.437229099999968],[118.26697540000009,-8.436411799999973],[118.27211000000011,-8.439317699999947],[118.27683260000003,-8.436390899999935],[118.28225710000004,-8.435892099999933],[118.28575130000002,-8.433214199999952],[118.29147340000009,-8.431852399999968],[118.29303740000012,-8.429290799999933],[118.29840090000005,-8.428731899999946],[118.29946140000004,-8.425923299999965],[118.30290980000007,-8.423523899999964],[118.30317690000004,-8.420393],[118.30817420000005,-8.41910269999994],[118.30823520000001,-8.4116106],[118.310318,-8.4116869],[118.31094360000009,-8.409605],[118.312912,-8.4075117],[118.31504820000009,-8.407539399999962],[118.31564330000003,-8.405901899999947],[118.31845090000002,-8.4067106],[118.3208237,-8.405037899999968],[118.322876,-8.4055996],[118.31984710000006,-8.39960579999996],[118.3204574,-8.3933382],[118.32277680000004,-8.389448199999947],[118.31973270000003,-8.385955799999977],[118.322258,-8.381637599999976],[118.31696320000003,-8.377306],[118.31742860000008,-8.370325099999945]]]]},"properties":{"shapeName":"Bima","shapeISO":"","shapeID":"22746128B76937279581","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[107.14945490000008,0.513605],[107.15096090000009,0.514990100000034],[107.14918870000008,0.51544240000004],[107.14945490000008,0.513605]]],[[[107.39907910000005,0.506756700000039],[107.40334210000009,0.511045200000069],[107.41442360000008,0.515331],[107.41442520000004,0.519621],[107.40419770000005,0.519624900000053],[107.39482370000007,0.523060500000042],[107.38885370000008,0.51276660000002],[107.39566960000008,0.5059],[107.39907910000005,0.506756700000039]]],[[[107.38715490000004,0.52821160000002],[107.37607480000008,0.528215800000055],[107.37692550000008,0.523925400000053],[107.384595,0.520490400000028],[107.38715490000004,0.52821160000002]]],[[[106.97694960000007,0.557574500000044],[106.97471750000005,0.556976200000065],[106.97879290000009,0.552512200000024],[106.97903230000009,0.556256],[106.97694960000007,0.557574500000044]]],[[[107.19025650000003,0.56817060000003],[107.18827910000005,0.56737940000005],[107.18982970000008,0.565300500000035],[107.19175310000008,0.566708800000072],[107.19025650000003,0.56817060000003]]],[[[107.18342110000003,0.568372],[107.18094640000004,0.569209200000046],[107.17924790000006,0.565633400000024],[107.18274810000008,0.565062700000055],[107.18487030000006,0.567054700000028],[107.184482,0.568638400000054],[107.18342110000003,0.568372]]],[[[107.03256720000007,0.57725720000002],[107.02915870000004,0.581549600000073],[107.02745150000004,0.575542600000063],[107.03256720000007,0.57725720000002]]],[[[107.10793780000006,0.582574700000066],[107.10580670000007,0.582704200000023],[107.10487870000009,0.580323600000042],[107.10767080000005,0.580794400000059],[107.10793780000006,0.582574700000066]]],[[[107.17313490000004,0.582817],[107.170685,0.57904110000004],[107.17203780000006,0.57529420000003],[107.17464240000004,0.579958600000055],[107.17454970000006,0.582296300000053],[107.17313490000004,0.582817]]],[[[107.13588910000004,0.585882800000036],[107.13403550000004,0.589691400000049],[107.13158580000004,0.585997700000064],[107.12790050000007,0.587596],[107.12470160000004,0.584256],[107.12389460000009,0.580301],[107.12842150000006,0.581740100000047],[107.13142290000008,0.579208600000072],[107.13462060000006,0.579354800000033],[107.13588910000004,0.585882800000036]]],[[[107.0936,0.606799300000034],[107.08797480000004,0.599656300000049],[107.08373190000003,0.599802700000055],[107.08174340000005,0.602891600000021],[107.07996810000009,0.599225100000069],[107.08759950000007,0.595356400000071],[107.09290140000007,0.597873],[107.09755390000004,0.603323600000067],[107.09693140000007,0.605229800000075],[107.0936,0.606799300000034]]],[[[106.97571080000006,0.609274500000026],[106.974431,0.609327600000029],[106.97411550000004,0.603675800000076],[106.97623040000008,0.601414200000022],[106.97900660000005,0.600044300000036],[106.98096660000004,0.602830100000062],[106.98639870000005,0.600935400000026],[106.98810170000007,0.60187970000004],[106.98109140000008,0.609141100000045],[106.97571080000006,0.609274500000026]]],[[[107.03439070000007,0.62088],[107.03182810000004,0.61663290000007],[107.03543350000007,0.619352200000037],[107.03439070000007,0.62088]]],[[[107.01979760000006,0.636393400000031],[107.01797080000006,0.638961800000061],[107.02024930000005,0.644721200000049],[107.01556730000004,0.649130300000024],[107.01286280000005,0.646717],[107.01602390000005,0.642832],[107.01545070000009,0.637888400000065],[107.01083890000007,0.630099500000028],[107.01072910000005,0.627020100000038],[107.01503020000007,0.622381300000029],[107.02009440000006,0.621651200000031],[107.02097060000006,0.622647200000074],[107.02357490000009,0.633656600000052],[107.02257750000007,0.636775500000056],[107.01979760000006,0.636393400000031]]],[[[107.23465010000007,0.690451200000041],[107.23039040000003,0.695601900000042],[107.22868190000008,0.687879700000053],[107.23464810000007,0.686160700000073],[107.23465010000007,0.690451200000041]]],[[[104.62033560000003,0.72008610000006],[104.61900740000004,0.721845500000029],[104.61586290000008,0.719723200000033],[104.61304140000004,0.719670500000063],[104.61199430000005,0.71543360000004],[104.60906250000005,0.711891900000069],[104.59774370000008,0.707999200000074],[104.59669970000004,0.705592300000035],[104.60089690000007,0.703557],[104.603629,0.698648400000025],[104.60476030000007,0.699741700000061],[104.60763650000007,0.698922300000049],[104.60845530000006,0.701685200000043],[104.61074430000008,0.698272],[104.61531020000007,0.699221800000032],[104.61962060000008,0.697206200000039],[104.62030960000004,0.700579800000071],[104.622568,0.700608800000055],[104.62166370000006,0.706096100000025],[104.62584630000003,0.710644800000068],[104.61977290000004,0.715855],[104.61900940000004,0.717409900000064],[104.62033560000003,0.72008610000006]]],[[[104.77987410000009,0.724326900000051],[104.77797230000004,0.72191760000004],[104.78087870000007,0.722858700000074],[104.77987410000009,0.724326900000051]]],[[[104.58633340000006,0.749774500000058],[104.58404370000005,0.74977430000007],[104.58363750000007,0.74809840000006],[104.58749560000007,0.745052500000043],[104.58826920000007,0.74695070000007],[104.58633340000006,0.749774500000058]]],[[[104.65895070000005,0.753106100000025],[104.65855010000007,0.753975100000048],[104.65090050000003,0.75036],[104.64790440000007,0.750592],[104.64007790000005,0.744229800000028],[104.63298960000009,0.744095400000049],[104.62861150000003,0.745960800000034],[104.62695480000008,0.743677200000036],[104.622778,0.742316],[104.61716280000007,0.738343900000075],[104.61458910000005,0.733416600000055],[104.61104620000003,0.731835700000033],[104.613062,0.725205],[104.61266670000003,0.721422600000039],[104.62030940000005,0.722334300000057],[104.62055220000008,0.715828800000054],[104.62488660000008,0.713122300000066],[104.62592490000009,0.713747200000057],[104.62671990000007,0.716509500000029],[104.62871280000007,0.715992500000027],[104.63075390000006,0.717520800000045],[104.62986440000009,0.719854],[104.630781,0.721618800000044],[104.63353460000008,0.721915100000047],[104.633269,0.724086500000055],[104.63694910000004,0.725059900000076],[104.63730560000005,0.726236400000062],[104.63597940000005,0.726272200000039],[104.63792980000005,0.729554500000063],[104.64109610000008,0.729054900000051],[104.64126550000009,0.732372700000042],[104.64533930000005,0.733264],[104.64694430000009,0.738951900000075],[104.65165950000005,0.742678400000045],[104.65312410000007,0.747173],[104.65568080000008,0.747190800000055],[104.660983,0.751243],[104.66140120000006,0.752757100000053],[104.65895070000005,0.753106100000025]]],[[[104.79886890000006,0.754901800000027],[104.79748760000007,0.753244600000073],[104.79962830000005,0.75383910000005],[104.79886890000006,0.754901800000027]]],[[[104.718731,0.758317500000032],[104.71624520000006,0.758415200000059],[104.71385990000005,0.753446200000042],[104.71638440000004,0.745719500000064],[104.71413350000006,0.741345300000035],[104.71575010000004,0.738742500000058],[104.72094830000003,0.73633030000002],[104.72551490000006,0.731491500000061],[104.72747910000004,0.726463600000045],[104.73125930000003,0.722659600000043],[104.73193590000005,0.719055700000069],[104.73464170000005,0.717414],[104.73730740000008,0.719376300000022],[104.74017230000004,0.717574500000069],[104.74106580000006,0.719015500000069],[104.74464680000006,0.719416200000069],[104.74504460000009,0.721218200000067],[104.74691470000005,0.721258400000067],[104.754139,0.726917900000046],[104.75596910000007,0.729921400000023],[104.75939090000008,0.731443200000058],[104.75871440000009,0.733004900000026],[104.76122110000006,0.732884900000045],[104.75931110000005,0.734807],[104.75921360000007,0.73991680000006],[104.76068360000005,0.741621400000042],[104.75695660000008,0.742854400000056],[104.75896580000006,0.744709400000033],[104.75756520000004,0.748122],[104.75558370000005,0.746699400000068],[104.75299880000006,0.747309700000073],[104.74824040000004,0.745829700000058],[104.74231190000006,0.748722100000066],[104.73580150000004,0.749181600000043],[104.718731,0.758317500000032]]],[[[104.48527920000004,0.755434600000058],[104.48449470000008,0.761905900000045],[104.48290380000009,0.760677700000031],[104.48084120000004,0.75195240000005],[104.48527920000004,0.755434600000058]]],[[[104.69303210000004,0.762727300000051],[104.69049550000005,0.763302800000019],[104.69116480000008,0.761589],[104.68912570000003,0.759811900000045],[104.69677290000004,0.737457600000027],[104.70123610000007,0.737564500000076],[104.708284,0.74189750000005],[104.71273540000004,0.741497300000049],[104.71545130000004,0.744548900000041],[104.71291320000006,0.752648],[104.714978,0.759368800000061],[104.70983660000007,0.761524],[104.69303210000004,0.762727300000051]]],[[[104.67875320000007,0.769156700000053],[104.67848,0.771843900000022],[104.67700840000003,0.772548400000062],[104.67672380000005,0.770745100000056],[104.67875320000007,0.769156700000053]]],[[[104.43495910000007,0.774188],[104.43426380000005,0.775430300000039],[104.43228650000003,0.775019900000075],[104.432778,0.773765600000047],[104.43495910000007,0.774188]]],[[[104.51579290000006,0.782853],[104.51291330000004,0.782834200000025],[104.51256520000004,0.779677700000036],[104.51683850000006,0.781154900000047],[104.51579290000006,0.782853]]],[[[104.51796290000004,0.783541800000023],[104.51948490000007,0.786592400000075],[104.517724,0.788235],[104.51636690000004,0.785959700000035],[104.51796290000004,0.783541800000023]]],[[[104.81531740000008,0.791594900000064],[104.81089390000005,0.790108800000041],[104.80977440000004,0.786929900000075],[104.81493970000008,0.787072100000046],[104.81531740000008,0.791594900000064]]],[[[104.64433170000007,0.792829300000051],[104.64145260000004,0.791754100000048],[104.64591090000005,0.790258900000026],[104.64702540000008,0.791037900000049],[104.64665370000006,0.792517900000064],[104.64433170000007,0.792829300000051]]],[[[104.59404040000004,0.793672600000036],[104.59262320000005,0.792307200000039],[104.58986030000005,0.792944800000043],[104.58672370000005,0.791472400000032],[104.58991040000006,0.776147],[104.57887540000007,0.768973800000026],[104.57890980000008,0.75874],[104.58328230000006,0.75234480000006],[104.58992850000004,0.752703],[104.59179580000006,0.754831600000045],[104.59434950000008,0.755088900000032],[104.60229740000005,0.762880700000039],[104.60690490000007,0.764451400000041],[104.60816560000006,0.767704500000036],[104.61883860000006,0.775845],[104.62752180000007,0.779408800000056],[104.63149980000009,0.783321400000034],[104.636711,0.784109],[104.63324420000004,0.79191510000004],[104.63000840000007,0.791375800000026],[104.62575030000005,0.786640600000055],[104.62232680000005,0.785475700000063],[104.61496040000009,0.787927500000023],[104.61294510000005,0.78732210000004],[104.60986370000006,0.789486400000044],[104.60747470000007,0.788946400000043],[104.605768,0.79130170000002],[104.60305380000005,0.791808500000059],[104.60246880000005,0.790679800000021],[104.59720970000006,0.793607500000064],[104.59404040000004,0.793672600000036]]],[[[104.69971960000004,0.792537800000048],[104.69953280000004,0.794266200000038],[104.69761630000005,0.793652300000076],[104.69592010000008,0.790517900000054],[104.69319890000008,0.790038600000059],[104.69093150000003,0.786624400000051],[104.68931360000005,0.786749500000042],[104.68979920000004,0.784132],[104.68834040000007,0.781481400000075],[104.685473,0.781115400000033],[104.68697,0.774564800000064],[104.69191730000006,0.769395200000019],[104.69453070000009,0.769395400000064],[104.70337890000008,0.764370900000074],[104.70987880000007,0.764557800000034],[104.722327,0.761069200000065],[104.73640170000004,0.753076300000032],[104.74584190000007,0.75130450000006],[104.75036160000008,0.753449],[104.750907,0.755837800000052],[104.75369440000009,0.758022200000028],[104.75194450000004,0.765331500000059],[104.75377680000008,0.768386600000042],[104.75311960000005,0.769809400000042],[104.75073020000008,0.770069800000044],[104.75252210000008,0.772835200000031],[104.750909,0.772982900000045],[104.74905630000006,0.777220800000066],[104.74899620000008,0.782050200000072],[104.74656640000006,0.783581800000036],[104.74656280000005,0.787618100000032],[104.743795,0.789100800000028],[104.74087820000005,0.788679800000068],[104.73764340000008,0.791456100000062],[104.73061720000004,0.79084510000007],[104.72920430000005,0.78947370000003],[104.72647920000009,0.790260700000033],[104.72488120000008,0.788455400000032],[104.72033930000003,0.79053730000004],[104.71926690000004,0.788277],[104.71712220000006,0.787819800000022],[104.70744450000007,0.791680700000029],[104.70215980000006,0.790766200000064],[104.70064050000008,0.792036900000028],[104.70112570000003,0.794303800000023],[104.69971960000004,0.792537800000048]]],[[[104.54772210000004,0.797145400000034],[104.54448230000008,0.796852900000033],[104.544241,0.793367700000033],[104.54275120000005,0.794224900000074],[104.53947890000006,0.793223300000022],[104.53711,0.790529400000025],[104.53595030000008,0.784860300000048],[104.53400930000004,0.784484200000065],[104.533157,0.785683],[104.533528,0.784055700000067],[104.52840390000006,0.784365500000035],[104.52542190000008,0.781780300000037],[104.52131240000006,0.782592600000044],[104.51676140000006,0.777490600000021],[104.51022950000004,0.77481240000003],[104.506951,0.761994500000071],[104.51087570000004,0.749082600000065],[104.50949860000009,0.743990500000052],[104.51620630000008,0.744424600000059],[104.51447210000003,0.746360800000048],[104.51444890000005,0.75134520000006],[104.51663410000003,0.752899300000024],[104.51592420000009,0.756115300000033],[104.52138690000004,0.761614300000076],[104.52910370000006,0.763108500000044],[104.53062380000006,0.764997200000039],[104.53464590000004,0.764641500000039],[104.53607070000004,0.768108],[104.54178170000006,0.77184440000002],[104.55255530000005,0.775025500000027],[104.56186730000007,0.773905800000023],[104.56272220000005,0.775435800000025],[104.57931630000007,0.771326200000033],[104.58761440000006,0.776826400000061],[104.58553080000007,0.786041500000067],[104.57616860000007,0.790496800000028],[104.57270690000007,0.793668],[104.56988760000007,0.793134900000041],[104.57008630000007,0.791589600000066],[104.56877590000005,0.791656100000068],[104.569901,0.792042500000036],[104.56923770000009,0.795711500000039],[104.55458670000007,0.791896],[104.55360710000008,0.792841700000054],[104.55096640000005,0.790308800000048],[104.54772210000004,0.797145400000034]]],[[[104.50324070000005,0.79737410000007],[104.50252140000003,0.796008],[104.50432040000004,0.793984],[104.50803230000008,0.794264300000066],[104.50747620000004,0.795761800000037],[104.50324070000005,0.79737410000007]]],[[[104.62847430000005,0.794972900000062],[104.62976690000005,0.79664],[104.62662870000008,0.797858100000042],[104.62692770000007,0.795087500000022],[104.62847430000005,0.794972900000062]]],[[[104.57746750000007,0.797976],[104.57507840000005,0.796800200000064],[104.57677770000004,0.793193600000052],[104.58320230000004,0.790629500000023],[104.58383890000005,0.795465300000046],[104.57746750000007,0.797976]]],[[[104.62196890000007,0.798262400000056],[104.62029610000008,0.79825070000004],[104.61637550000006,0.793884300000059],[104.61577980000004,0.791993300000058],[104.61702890000004,0.790529],[104.62315440000003,0.789906200000075],[104.62528590000005,0.791524100000061],[104.62560570000005,0.796198100000026],[104.62196890000007,0.798262400000056]]],[[[104.69881910000004,0.796789300000057],[104.70025980000008,0.799841],[104.69942020000008,0.800610100000029],[104.69786670000008,0.798567200000036],[104.69881910000004,0.796789300000057]]],[[[104.61159630000009,0.800852900000052],[104.60619210000004,0.798542300000065],[104.60645390000008,0.795989700000064],[104.61108260000009,0.793779500000028],[104.61461250000008,0.794990400000074],[104.61632820000005,0.799079500000062],[104.61615970000008,0.800475800000072],[104.61159630000009,0.800852900000052]]],[[[104.557224,0.803223500000058],[104.554424,0.801764500000047],[104.55262920000007,0.79792580000003],[104.55556140000004,0.795340100000033],[104.55940770000007,0.795657600000027],[104.56641010000004,0.799592100000041],[104.56486150000006,0.801664100000039],[104.557224,0.803223500000058]]],[[[104.67600860000005,0.802805200000023],[104.67630360000004,0.804477400000053],[104.67195170000008,0.802717100000052],[104.67014610000007,0.799391400000047],[104.67380110000005,0.799355400000024],[104.67600860000005,0.802805200000023]]],[[[104.74751760000004,0.801757500000065],[104.746708,0.804587300000037],[104.74249680000008,0.80186690000005],[104.73822060000003,0.795228100000031],[104.74170450000008,0.793297300000063],[104.74713490000005,0.797016500000041],[104.74862610000008,0.796716500000059],[104.74751760000004,0.801757500000065]]],[[[104.60917880000005,0.803025],[104.61036620000004,0.804673300000047],[104.60791670000003,0.805464100000052],[104.60768890000008,0.803438700000072],[104.60917880000005,0.803025]]],[[[104.52784090000006,0.806416300000024],[104.52616150000006,0.805148400000064],[104.530547,0.804538500000035],[104.52784090000006,0.806416300000024]]],[[[104.63878680000005,0.806605700000034],[104.63939470000008,0.807957],[104.63759620000008,0.807752900000025],[104.63878680000005,0.806605700000034]]],[[[104.64502740000006,0.809309100000064],[104.63843340000005,0.805414900000073],[104.63549280000007,0.800776100000064],[104.63829690000006,0.798868600000048],[104.64108910000004,0.799212200000056],[104.64304910000004,0.801933400000053],[104.64583820000007,0.801247800000056],[104.64556040000008,0.80677970000005],[104.64720080000006,0.808229200000028],[104.64502740000006,0.809309100000064]]],[[[104.76648840000007,0.813124100000039],[104.76393190000005,0.811399200000039],[104.76737350000008,0.811159],[104.76810390000009,0.812332500000025],[104.76648840000007,0.813124100000039]]],[[[104.77017740000008,0.812908800000059],[104.768375,0.814274700000055],[104.76838620000007,0.81281910000007],[104.77017740000008,0.812908800000059]]],[[[104.66627870000008,0.820575200000064],[104.66457760000009,0.820008700000074],[104.66583390000005,0.819126500000039],[104.66627870000008,0.820575200000064]]],[[[104.67584570000008,0.826264700000024],[104.67585470000006,0.828158400000063],[104.67160920000003,0.824911600000064],[104.67402260000006,0.82250190000002],[104.67862470000006,0.820958500000074],[104.67688560000005,0.828107300000056],[104.67584570000008,0.826264700000024]]],[[[104.67042450000008,0.832311900000036],[104.66872130000007,0.834241200000065],[104.66485920000008,0.833688300000063],[104.664357,0.830456900000058],[104.66788430000008,0.827947100000074],[104.67214630000007,0.831169400000022],[104.67042450000008,0.832311900000036]]],[[[104.63166920000003,0.827251300000057],[104.63121910000007,0.834983600000044],[104.62841150000008,0.823979700000052],[104.63166920000003,0.827251300000057]]],[[[104.62085060000004,0.816599800000063],[104.62676330000005,0.825670900000034],[104.62735840000005,0.831470200000069],[104.62602330000004,0.83548490000004],[104.62395570000007,0.836971700000049],[104.61774540000005,0.835930200000064],[104.60932250000008,0.814963],[104.61819550000007,0.813923],[104.62085060000004,0.816599800000063]]],[[[104.66520140000006,0.841871300000037],[104.66391330000005,0.841805300000033],[104.66430670000005,0.837081200000057],[104.66651160000004,0.839015],[104.66520140000006,0.841871300000037]]],[[[104.622966,0.844609100000071],[104.62104120000004,0.845610600000043],[104.616424,0.843226100000038],[104.61300730000005,0.843223700000067],[104.61249290000006,0.84196350000002],[104.61448580000007,0.838021],[104.61700720000005,0.837952100000052],[104.62536890000007,0.84117150000003],[104.622966,0.844609100000071]]],[[[104.70609850000005,0.847069400000066],[104.702848,0.846739500000069],[104.70233640000004,0.842409400000065],[104.70691690000007,0.841454500000054],[104.70491960000004,0.844131900000036],[104.70757350000008,0.844945300000063],[104.70609850000005,0.847069400000066]]],[[[104.62002720000004,0.846144700000025],[104.62307420000008,0.846820700000023],[104.62152470000007,0.848275800000067],[104.62002720000004,0.846144700000025]]],[[[104.36208680000004,0.84837170000003],[104.35351580000008,0.845453600000042],[104.35845370000004,0.840803],[104.360543,0.834963500000072],[104.35722190000007,0.821252500000071],[104.35096160000006,0.81452],[104.35481920000007,0.815674100000024],[104.35914850000006,0.814158600000042],[104.36554990000008,0.819809300000031],[104.36418070000008,0.823267500000043],[104.36586250000005,0.829115700000045],[104.36422960000004,0.830453],[104.36361730000004,0.842857500000036],[104.36530810000005,0.845676500000025],[104.36208680000004,0.84837170000003]]],[[[104.69736620000003,0.85281660000004],[104.69747750000005,0.854166900000052],[104.69604210000006,0.853624300000035],[104.69736620000003,0.85281660000004]]],[[[104.71830380000006,0.859355400000027],[104.71774980000004,0.859576400000037],[104.71670770000009,0.857371],[104.717596,0.858591900000022],[104.718944,0.857038600000067],[104.71952660000005,0.858769],[104.71830380000006,0.859355400000027]]],[[[104.38868030000003,0.859541500000034],[104.38556130000006,0.85938770000007],[104.38662860000005,0.856126200000062],[104.39079380000004,0.857957100000021],[104.38868030000003,0.859541500000034]]],[[[104.63622130000005,0.860658],[104.63589130000008,0.858243200000061],[104.63763690000008,0.858914300000038],[104.63622130000005,0.860658]]],[[[104.62381010000007,0.849406400000021],[104.62463770000005,0.856481500000029],[104.62165830000004,0.860837600000025],[104.61991190000003,0.860123900000076],[104.61494020000004,0.851037900000051],[104.61372330000006,0.845676],[104.61609730000004,0.844511700000055],[104.62049230000008,0.848936],[104.62381010000007,0.849406400000021]]],[[[104.61414510000009,0.854318900000067],[104.61720990000003,0.85965520000002],[104.61552770000009,0.862116700000058],[104.613333,0.85777360000003],[104.61414510000009,0.854318900000067]]],[[[104.65048380000007,0.866725],[104.64717820000004,0.868113900000026],[104.64108590000006,0.861713300000019],[104.63970710000007,0.856025200000033],[104.63267180000008,0.846393100000057],[104.63286440000007,0.843251],[104.63720590000008,0.836870600000054],[104.63679590000004,0.828931300000022],[104.63554190000008,0.824181100000033],[104.63206440000005,0.821173800000054],[104.63123120000006,0.815217500000074],[104.62895890000004,0.813665],[104.623771,0.813309500000059],[104.62080610000004,0.808439400000054],[104.62476530000004,0.804455500000074],[104.63131120000008,0.804837200000065],[104.63337820000004,0.803202200000044],[104.63748720000007,0.809695500000032],[104.64685010000005,0.811914300000069],[104.65065060000006,0.809708800000067],[104.652388,0.813641500000074],[104.65667710000008,0.816047600000047],[104.65810620000008,0.819059200000027],[104.664908,0.821039400000075],[104.66502340000005,0.826167700000042],[104.66175160000006,0.829382600000031],[104.66113330000007,0.839749500000039],[104.66269550000004,0.847849200000041],[104.66463010000007,0.851041900000041],[104.66064030000007,0.85260420000003],[104.65820130000009,0.856833100000074],[104.65503410000008,0.858064400000046],[104.65192420000005,0.863212600000054],[104.65282830000007,0.865959400000065],[104.65048380000007,0.866725]]],[[[104.65877030000007,0.864671800000053],[104.65830310000007,0.870252700000037],[104.65675130000005,0.871889600000031],[104.65572450000008,0.866239300000075],[104.65877030000007,0.864671800000053]]],[[[104.652973,0.868302500000027],[104.65477720000007,0.872274700000048],[104.65371390000007,0.875035600000047],[104.64940530000007,0.871161500000028],[104.652973,0.868302500000027]]],[[[104.70925680000005,0.876288800000054],[104.70767320000004,0.876089600000057],[104.70854540000005,0.874538700000073],[104.71020710000005,0.875402400000041],[104.70925680000005,0.876288800000054]]],[[[107.51973670000007,0.874664],[107.52251780000006,0.879906300000073],[107.522289,0.883690600000023],[107.52072780000009,0.884826900000064],[107.51840830000003,0.877779500000031],[107.51973670000007,0.874664]]],[[[104.66618450000004,0.885565700000029],[104.66807450000005,0.893673],[104.66565380000009,0.89560860000006],[104.66262420000004,0.891168800000059],[104.66469370000004,0.885968900000023],[104.66618450000004,0.885565700000029]]],[[[107.54651530000007,0.88733250000007],[107.54524910000004,0.890805900000032],[107.545769,0.894666500000028],[107.544062,0.89638670000005],[107.54188780000004,0.89617990000005],[107.53988690000006,0.892610500000046],[107.53951080000007,0.873385],[107.54486630000008,0.866963100000021],[107.54698960000007,0.868576500000074],[107.54777510000008,0.877188300000057],[107.54943350000008,0.880208500000037],[107.54822320000005,0.886992700000064],[107.54651530000007,0.88733250000007]]],[[[104.68754790000008,0.896507700000029],[104.68143720000006,0.895905900000059],[104.67994390000007,0.893877900000064],[104.67880010000005,0.896420100000057],[104.673812,0.892395500000021],[104.67218860000008,0.888003300000037],[104.67266670000004,0.885336700000039],[104.66639330000004,0.870963300000028],[104.660739,0.863860800000054],[104.66149050000007,0.859698300000048],[104.66734070000007,0.852157300000044],[104.672281,0.851570800000047],[104.67325420000009,0.848324300000058],[104.67682780000007,0.845021700000075],[104.68222710000003,0.848699100000033],[104.68405840000008,0.845813600000042],[104.68684070000006,0.845161200000064],[104.68469350000004,0.850731100000075],[104.69169820000008,0.847384400000067],[104.69586290000007,0.848501300000066],[104.69406910000004,0.85395120000004],[104.69087660000008,0.855141600000024],[104.68993740000008,0.858422500000074],[104.69538520000003,0.861905],[104.69401840000006,0.865345],[104.69517860000008,0.87389840000003],[104.69311260000006,0.877304800000047],[104.69437590000007,0.879147300000056],[104.69367640000007,0.883418900000038],[104.69473460000006,0.885016500000063],[104.698629,0.886377700000025],[104.699073,0.885226900000021],[104.70004580000005,0.886549600000023],[104.69362290000004,0.890676300000052],[104.69439090000009,0.89150090000004],[104.689808,0.896456900000032],[104.68754790000008,0.896507700000029]]],[[[104.63128070000005,0.894718],[104.62447640000005,0.896999600000072],[104.619123,0.88470570000004],[104.617064,0.871608300000048],[104.61880290000005,0.863878200000045],[104.62405850000005,0.862000700000067],[104.62785850000006,0.853956900000071],[104.63153680000005,0.857458800000074],[104.63324950000003,0.862861800000076],[104.63810260000008,0.865614300000061],[104.64450210000007,0.873056900000051],[104.65439,0.878201100000069],[104.66064110000008,0.878931500000022],[104.66160070000006,0.880189100000052],[104.65837990000006,0.887937500000021],[104.65923610000004,0.892011100000047],[104.65599910000009,0.894968500000061],[104.65400440000008,0.89414320000003],[104.65118420000005,0.895175],[104.64696730000009,0.892614800000047],[104.63128070000005,0.894718]]],[[[104.63562870000004,0.895643200000052],[104.63651370000008,0.897427700000037],[104.63474370000006,0.899658],[104.62897590000006,0.899657400000024],[104.62941840000008,0.897129600000028],[104.63562870000004,0.895643200000052]]],[[[107.46935210000004,0.90360140000007],[107.46945860000005,0.906854800000076],[107.46804980000007,0.90538650000002],[107.46935210000004,0.90360140000007]]],[[[104.659913,0.908461500000044],[104.66254520000007,0.910582200000022],[104.66307160000008,0.913630400000045],[104.657937,0.912702200000069],[104.65674680000006,0.907798500000069],[104.659913,0.908461500000044]]],[[[104.66976030000006,0.910362400000054],[104.67259540000003,0.913265],[104.67249590000006,0.915794600000027],[104.670925,0.916977600000052],[104.668869,0.916110900000035],[104.667684,0.90979150000004],[104.66976030000006,0.910362400000054]]],[[[104.71887920000006,0.918744600000025],[104.71838120000007,0.922205600000041],[104.71593560000008,0.924660600000038],[104.71681580000006,0.918648900000051],[104.71878450000008,0.917470600000058],[104.71887920000006,0.918744600000025]]],[[[106.74288170000005,0.919452100000058],[106.74384,0.920784900000058],[106.73792840000004,0.927291400000058],[106.73484660000008,0.928710800000033],[106.73871670000005,0.921887900000058],[106.74288170000005,0.919452100000058]]],[[[107.50043390000008,0.923277800000051],[107.50132240000005,0.926188300000035],[107.49941150000006,0.929147800000067],[107.49845220000009,0.925063500000022],[107.50043390000008,0.923277800000051]]],[[[104.92228360000007,0.936982800000067],[104.91954390000006,0.936416],[104.91874950000005,0.934599400000025],[104.922806,0.928850700000055],[104.92793660000007,0.927206300000023],[104.92539690000007,0.931992600000058],[104.92703760000006,0.936417400000039],[104.92228360000007,0.936982800000067]]],[[[104.74058740000004,0.943212300000027],[104.73169940000008,0.943174400000032],[104.73017540000006,0.93997580000007],[104.73342730000007,0.933463800000027],[104.73234650000006,0.931278900000052],[104.75561060000007,0.918725800000061],[104.75446450000004,0.927931800000067],[104.75164890000008,0.930778800000041],[104.75128810000007,0.933983200000057],[104.74664120000006,0.939459200000044],[104.74058740000004,0.943212300000027]]],[[[107.51988030000007,0.944174300000043],[107.52150450000005,0.948051300000031],[107.51854290000006,0.946871100000067],[107.51988030000007,0.944174300000043]]],[[[107.50451990000005,0.951622300000054],[107.50367750000004,0.952212],[107.50383260000007,0.950038400000039],[107.50228690000006,0.949544800000069],[107.50167630000004,0.946906200000058],[107.49933780000003,0.95089],[107.49881720000008,0.945556900000042],[107.49546760000004,0.94358010000002],[107.49878850000005,0.937536400000056],[107.49855350000007,0.934534300000053],[107.50243680000005,0.929795500000068],[107.50358020000004,0.941099300000076],[107.50939050000005,0.941026200000067],[107.50854490000006,0.948697700000025],[107.50594840000008,0.952069],[107.50451990000005,0.951622300000054]]],[[[107.482592,0.960090500000035],[107.48160990000008,0.961613500000055],[107.48282290000009,0.965570500000069],[107.48161330000005,0.96629450000006],[107.48036170000006,0.961271900000042],[107.47630320000007,0.955057100000033],[107.47637640000005,0.951631900000052],[107.47694210000009,0.949500400000034],[107.48049580000009,0.948013600000024],[107.48238330000004,0.943331200000046],[107.48246130000007,0.94664210000002],[107.48595390000008,0.94873240000004],[107.48686540000006,0.954097700000034],[107.48418020000008,0.959937100000047],[107.482592,0.960090500000035]]],[[[107.41759710000008,0.967874400000028],[107.41464730000007,0.968648],[107.41117440000005,0.958910400000036],[107.41260480000005,0.955159700000024],[107.41844170000007,0.953284300000064],[107.41855580000004,0.94916390000003],[107.42070680000006,0.947713],[107.42264820000008,0.950199400000031],[107.42353990000004,0.963386100000037],[107.41759710000008,0.967874400000028]]],[[[107.49306,0.965855300000044],[107.49023680000005,0.97045380000003],[107.48836280000006,0.969191200000068],[107.487437,0.959705],[107.48917770000008,0.953933200000051],[107.49407050000008,0.96062610000007],[107.49418460000004,0.963056100000074],[107.49212290000008,0.96427360000007],[107.49463240000006,0.965835200000072],[107.49394060000009,0.966871900000058],[107.49306,0.965855300000044]]],[[[104.81061930000004,0.974673100000075],[104.80892660000006,0.973277900000028],[104.81349990000007,0.97095390000004],[104.81887820000009,0.971616300000051],[104.81730990000005,0.972865900000045],[104.81286670000009,0.972837500000026],[104.81061930000004,0.974673100000075]]],[[[107.39903770000006,0.968133300000034],[107.39922570000004,0.974440700000059],[107.39594820000008,0.975366800000074],[107.39434780000005,0.974338700000033],[107.39481690000008,0.97024760000005],[107.39903770000006,0.968133300000034]]],[[[107.43203920000008,0.975603800000044],[107.430831,0.977505600000029],[107.426756,0.979076],[107.42888990000006,0.975131500000032],[107.42763,0.974165300000038],[107.428789,0.972963800000059],[107.42741060000009,0.970921700000019],[107.42685620000009,0.960822300000075],[107.43225750000005,0.947539800000072],[107.43597120000004,0.950572],[107.43755940000005,0.945387100000062],[107.43968130000007,0.946906300000023],[107.44241070000004,0.94522360000002],[107.44301490000004,0.936886500000071],[107.43948750000004,0.934701300000029],[107.43983170000007,0.932393500000046],[107.44327670000007,0.930363400000033],[107.44816660000004,0.930197400000054],[107.45285580000007,0.925578700000074],[107.455086,0.920442700000024],[107.45907740000007,0.921377],[107.46196860000003,0.923829400000045],[107.46409660000006,0.921907600000054],[107.46764980000006,0.923185700000033],[107.46958,0.927980700000035],[107.46825560000008,0.929582400000072],[107.46712850000006,0.929049600000042],[107.465374,0.932463300000052],[107.46805390000009,0.944939600000055],[107.470175,0.945388300000047],[107.47518540000004,0.943950200000074],[107.47713870000007,0.941431],[107.47791790000008,0.942180800000074],[107.47374630000007,0.949065700000062],[107.47497830000009,0.957492400000035],[107.47225950000006,0.959957800000041],[107.473342,0.966303],[107.47040220000008,0.970065500000032],[107.46202920000007,0.975840900000037],[107.45884090000004,0.973123900000076],[107.45731760000007,0.974575800000025],[107.45414140000008,0.969435],[107.45183260000005,0.971406700000045],[107.45032370000007,0.969873700000051],[107.44845170000008,0.97032530000007],[107.44868020000007,0.967016700000045],[107.44658250000003,0.965008500000067],[107.43987020000009,0.97106],[107.439658,0.975595700000042],[107.43601990000008,0.97236440000006],[107.43459230000008,0.977552900000035],[107.43203920000008,0.975603800000044]]],[[[107.39787950000004,0.982806800000048],[107.39538270000008,0.982131800000047],[107.39652070000005,0.980387400000041],[107.39821550000005,0.980880800000023],[107.39787950000004,0.982806800000048]]],[[[104.22824820000005,0.981245100000024],[104.22888430000006,0.984697200000028],[104.22483410000007,0.981434900000068],[104.22824820000005,0.981245100000024]]],[[[107.41549730000008,0.991752800000029],[107.41508170000009,0.992800400000021],[107.40942750000005,0.991545700000074],[107.40465060000008,0.988052900000071],[107.40270760000004,0.987751700000047],[107.40240810000006,0.989358],[107.40064940000008,0.98807910000005],[107.40422750000005,0.978874400000052],[107.40963830000004,0.977311100000065],[107.40915550000005,0.981314700000041],[107.41130630000004,0.98122010000003],[107.41155110000005,0.983690700000068],[107.41342420000007,0.983317],[107.41356060000004,0.980081700000028],[107.41508750000008,0.980639100000076],[107.41803960000004,0.989307],[107.41549730000008,0.991752800000029]]],[[[107.52738380000005,0.995595600000058],[107.52155620000008,0.993510600000036],[107.521709,0.990672500000073],[107.52853630000004,0.991852300000062],[107.52905550000008,0.993224200000043],[107.52738380000005,0.995595600000058]]],[[[104.24384320000007,0.996330100000023],[104.24124290000009,0.996803500000055],[104.23882290000006,0.99338350000005],[104.23746610000006,0.994217400000025],[104.23561630000006,0.991859600000055],[104.23103810000003,0.982820400000037],[104.23207520000005,0.979255900000055],[104.233677,0.978213400000072],[104.23568,0.982212600000025],[104.24019320000008,0.980201100000045],[104.24289420000008,0.981243600000028],[104.25084650000008,0.976334300000076],[104.24277360000008,0.979289100000074],[104.24102170000003,0.97748740000003],[104.24170230000004,0.97571860000005],[104.25172150000009,0.974980900000048],[104.25333280000007,0.973521300000073],[104.25823150000008,0.974489400000039],[104.26272010000008,0.980531800000051],[104.26019560000009,0.983157900000037],[104.26226740000004,0.986931700000071],[104.25879320000007,0.988207600000067],[104.25663870000005,0.992992],[104.25065750000005,0.996197100000074],[104.24384320000007,0.996330100000023]]],[[[104.42978650000003,0.997030600000073],[104.42627230000005,0.998509900000045],[104.429035,0.995679400000029],[104.43447840000005,0.996585200000027],[104.42978650000003,0.997030600000073]]],[[[107.41094320000008,1.004230500000062],[107.40700030000005,1.004341700000055],[107.40503180000007,0.999233300000071],[107.40965750000004,0.999823100000071],[107.41094320000008,1.004230500000062]]],[[[107.39278290000004,1.011456400000043],[107.38797680000005,1.008195800000067],[107.38912210000007,0.998884300000043],[107.38735380000008,0.994919],[107.38813040000008,0.990084200000069],[107.39281040000009,0.989419700000042],[107.39523720000005,0.998976600000049],[107.393764,1.005671100000029],[107.39467070000006,1.010339400000021],[107.39278290000004,1.011456400000043]]],[[[107.38348470000005,1.011076700000046],[107.37996680000003,1.012828500000069],[107.377181,1.005396],[107.37973570000008,1.004591600000026],[107.38602710000004,1.007774600000062],[107.386684,1.009838700000046],[107.38348470000005,1.011076700000046]]],[[[104.44225510000007,1.00791],[104.44041890000005,1.01482290000007],[104.43816030000005,1.014988200000062],[104.43691440000003,1.009329600000058],[104.44225510000007,1.00791]]],[[[104.39303940000008,1.015573600000039],[104.383151,1.01535240000004],[104.38324280000006,1.012325300000043],[104.37957740000007,1.008638800000028],[104.378875,1.003638900000055],[104.373507,0.999698],[104.371925,0.996405200000027],[104.36912570000004,0.996168800000021],[104.36485620000008,0.992649700000072],[104.36588530000006,0.990120800000057],[104.37374720000008,0.989848400000028],[104.39915720000005,0.996690400000034],[104.39241880000009,1.002474900000038],[104.39188440000004,1.005475700000034],[104.39427940000007,1.013458700000058],[104.39303940000008,1.015573600000039]]],[[[107.36838690000008,1.023045800000034],[107.366587,1.024828600000035],[107.36454160000005,1.022589],[107.36216960000007,1.02324770000007],[107.36119260000004,1.016591800000072],[107.35670970000007,1.011829700000021],[107.35861780000005,1.009740300000033],[107.36283760000003,1.010169900000051],[107.367159,1.006108500000039],[107.37333660000007,1.015148500000066],[107.37373190000005,1.019023],[107.37155510000008,1.022872600000028],[107.36838690000008,1.023045800000034]]],[[[104.81286570000009,1.02472350000005],[104.81357310000004,1.026321400000029],[104.81191640000009,1.025835],[104.81286570000009,1.02472350000005]]],[[[107.51165180000004,1.026606],[107.50860380000006,1.024186800000052],[107.50966830000004,1.022070900000074],[107.51265470000004,1.02375440000003],[107.51277870000007,1.026482500000043],[107.51165180000004,1.026606]]],[[[107.53793640000004,1.026624200000072],[107.53300690000003,1.02636],[107.52985970000009,1.022420900000043],[107.53268860000009,1.018201600000054],[107.53801790000006,1.018733600000076],[107.53570420000005,1.011621300000058],[107.53333520000007,1.014599500000031],[107.529843,1.012483900000063],[107.53041940000008,1.001314500000035],[107.53210080000008,0.997003100000029],[107.52938790000007,0.994398400000023],[107.52991960000008,0.992815900000039],[107.53215840000007,0.993645400000048],[107.53774150000004,0.985536400000058],[107.54140350000006,0.984798200000057],[107.54267220000008,0.978268800000023],[107.54438810000005,0.978133500000069],[107.54652040000008,0.980900900000051],[107.54675410000004,0.977352600000074],[107.54107390000007,0.974973700000021],[107.54149620000004,0.972832],[107.54298930000004,0.973169400000074],[107.54361890000007,0.971518500000059],[107.54444420000004,0.973664900000074],[107.54606240000004,0.972584500000039],[107.54865060000009,0.975206300000025],[107.55040270000006,0.983318600000075],[107.56096640000004,0.991941300000065],[107.56264830000003,0.991622600000028],[107.56397950000007,0.999630700000068],[107.571247,1.003908600000045],[107.57324760000006,1.007969600000024],[107.57463440000004,1.006847],[107.57402070000006,1.002863500000046],[107.56970930000006,1.001301100000035],[107.56589810000008,0.99608360000002],[107.56898820000004,0.995234800000048],[107.56801940000008,0.992773400000033],[107.56972170000006,0.991671800000063],[107.56961440000003,0.988878900000032],[107.57383040000008,0.992686700000036],[107.57595360000005,0.992113800000027],[107.57696380000004,0.993446],[107.57940080000009,0.990883800000063],[107.57615660000005,0.989040700000032],[107.57449650000007,0.990142200000037],[107.57160040000008,0.987292700000069],[107.57015250000006,0.982335300000045],[107.568711,0.985884300000066],[107.56730930000003,0.985842600000069],[107.564716,0.98289520000003],[107.56382030000009,0.978065600000036],[107.56101680000006,0.977854100000059],[107.55909080000004,0.97244390000003],[107.55717860000004,0.971291200000053],[107.55594770000005,0.972574500000064],[107.55369530000007,0.97099460000004],[107.55607260000005,0.969197500000064],[107.55721650000004,0.965264],[107.55054160000009,0.959740200000056],[107.54765410000005,0.95036390000007],[107.55066990000006,0.950404400000025],[107.55342870000004,0.947581100000036],[107.56268270000004,0.953346500000066],[107.569539,0.961626800000033],[107.57114320000005,0.968613700000049],[107.57627250000007,0.972120600000039],[107.57812330000007,0.975874200000021],[107.58177830000005,0.977469300000052],[107.58331690000006,0.974905600000056],[107.58647020000006,0.975381700000071],[107.58731290000009,0.985671600000046],[107.59421170000007,0.990286100000048],[107.59815450000008,0.989974400000051],[107.60055820000008,0.987801800000057],[107.60238140000007,0.988886300000047],[107.60290690000005,0.997644500000035],[107.60149320000005,0.999647],[107.59375110000008,1.00179780000002],[107.59036080000004,1.008513700000037],[107.587299,1.01135830000004],[107.58070760000004,1.012412100000063],[107.57528530000008,1.015613900000062],[107.57211430000007,1.015133800000058],[107.56969170000008,1.017656100000067],[107.56753210000005,1.015861400000063],[107.56016480000005,1.017129300000022],[107.55355150000008,1.022639800000036],[107.54137060000005,1.022867600000041],[107.53793640000004,1.026624200000072]]],[[[104.78840080000003,1.027565300000049],[104.78599070000007,1.028459300000065],[104.78381370000005,1.025422],[104.782254,1.025562600000058],[104.78261490000006,1.023100400000033],[104.78568850000005,1.021617900000024],[104.78553370000009,1.020332900000028],[104.78396550000008,1.021965500000022],[104.78221560000009,1.019986],[104.78687260000004,1.016026300000021],[104.78330020000004,1.011718400000063],[104.78556780000008,1.007010500000035],[104.78814610000006,1.006663900000035],[104.78852770000009,1.004320800000073],[104.78743850000006,1.004309500000033],[104.79486040000006,1.001059],[104.79872070000005,1.001404800000046],[104.80295660000007,1.003790400000071],[104.805238,1.001211500000068],[104.81101970000009,1.002444900000057],[104.81093910000004,1.000433500000042],[104.80585250000007,0.999824200000035],[104.80432,0.998137400000076],[104.80344040000006,0.99566180000005],[104.80490990000004,0.989284400000031],[104.80800660000006,0.986436300000037],[104.81059210000006,0.987884800000074],[104.81325320000008,0.98709690000004],[104.81772210000008,0.982432600000038],[104.82480040000007,0.980272200000059],[104.82622660000004,0.972524600000042],[104.82153440000008,0.970639],[104.82182930000005,0.967847100000029],[104.81786040000009,0.965879400000063],[104.81262640000006,0.966980100000058],[104.81400020000007,0.962994800000047],[104.82123440000004,0.957741800000065],[104.82556110000007,0.956502500000056],[104.83065210000007,0.957649700000047],[104.83532310000004,0.961314600000037],[104.84004660000005,0.96188010000003],[104.84629330000007,0.970362600000044],[104.84766430000008,0.978262100000052],[104.85012140000003,0.978227600000025],[104.84893870000008,0.98004160000005],[104.85434020000008,0.982651],[104.85257130000008,0.985494900000049],[104.85402480000005,0.987297800000022],[104.85073880000004,0.985876],[104.84856050000008,0.98722790000005],[104.843592,0.99705670000003],[104.84381240000005,1.000855500000057],[104.85019820000008,1.010808800000063],[104.84948370000006,1.013297700000066],[104.84665230000007,1.014462500000036],[104.84072560000004,1.01285770000004],[104.83882980000004,1.014851900000053],[104.83575570000005,1.014266400000054],[104.83547760000005,1.016364200000055],[104.82897170000007,1.014645500000029],[104.81534650000003,1.019040700000062],[104.80384050000004,1.017837400000076],[104.80020730000007,1.019916100000046],[104.799604,1.022832],[104.79573560000006,1.022935500000074],[104.79561120000005,1.025474400000064],[104.79149270000005,1.025681400000053],[104.79075850000004,1.028150500000038],[104.78840080000003,1.027565300000049]]],[[[104.81910220000009,1.027055100000041],[104.81972340000004,1.028878700000064],[104.818291,1.029034900000056],[104.81910220000009,1.027055100000041]]],[[[107.38303480000008,1.027654200000029],[107.38284710000005,1.030295],[107.37824550000005,1.03604660000002],[107.37775320000009,1.033072300000072],[107.38303480000008,1.027654200000029]]],[[[104.82915580000008,1.045407400000045],[104.83066370000006,1.047181900000055],[104.82985430000008,1.047908300000074],[104.82915580000008,1.045407400000045]]],[[[104.21951220000005,1.048740400000042],[104.21819990000006,1.049676600000055],[104.217643,1.04868220000003],[104.22141190000008,1.037948800000038],[104.22491380000008,1.037145],[104.22504350000008,1.04117320000006],[104.22277550000007,1.047184700000059],[104.21951220000005,1.048740400000042]]],[[[107.50184410000008,1.050049200000046],[107.49839120000007,1.048527400000069],[107.497582,1.04493],[107.50413710000004,1.036116700000036],[107.51523090000006,1.040402500000027],[107.51997210000007,1.047140900000045],[107.51978150000008,1.048607700000048],[107.518075,1.048821400000065],[107.51278510000009,1.046487500000069],[107.50184410000008,1.050049200000046]]],[[[104.71045320000007,1.049236200000053],[104.71406190000005,1.05307],[104.71010990000008,1.054453200000069],[104.70689790000006,1.053588200000036],[104.70661560000008,1.050907700000039],[104.71045320000007,1.049236200000053]]],[[[107.48864690000005,1.055259900000067],[107.48633020000005,1.056836300000043],[107.484067,1.052775500000052],[107.48974410000005,1.045980400000076],[107.49415520000008,1.045314700000063],[107.49553060000005,1.051033300000029],[107.49439270000005,1.053250200000036],[107.48864690000005,1.055259900000067]]],[[[104.67106910000007,1.072108400000047],[104.67272,1.065226200000041],[104.67040130000004,1.065487700000062],[104.67014140000003,1.064266400000065],[104.67517170000008,1.054049900000052],[104.67541430000006,1.048564700000043],[104.67638950000008,1.047932400000036],[104.67768950000004,1.049349900000038],[104.67762480000005,1.046820300000036],[104.67848950000007,1.052046100000041],[104.67729510000004,1.061825400000032],[104.67791720000008,1.067093600000021],[104.67544660000004,1.070865900000058],[104.67106910000007,1.072108400000047]]],[[[107.44396550000005,1.089473200000043],[107.44280810000004,1.090361300000041],[107.44130310000008,1.088797],[107.44109340000006,1.085979200000054],[107.44536390000007,1.087332500000059],[107.44521010000005,1.089576500000021],[107.44396550000005,1.089473200000043]]],[[[107.43567690000003,1.08486860000005],[107.43868,1.087105400000041],[107.43850960000009,1.090893900000026],[107.43423810000007,1.093781300000046],[107.43106080000007,1.090285600000072],[107.43034720000009,1.087300900000059],[107.43567690000003,1.08486860000005]]],[[[104.224434,1.101473400000032],[104.22351490000005,1.102662200000054],[104.22150890000006,1.101869],[104.221678,1.100566800000024],[104.224434,1.101473400000032]]],[[[107.41329130000008,1.101966200000049],[107.40357920000008,1.112458500000059],[107.39928,1.103416300000049],[107.39309710000003,1.10163330000006],[107.39307720000005,1.097323],[107.38986830000005,1.094178100000022],[107.38933730000008,1.090941],[107.392857,1.08897840000003],[107.40562170000004,1.090871100000072],[107.40841550000005,1.09282920000004],[107.412254,1.092576600000029],[107.41822540000004,1.099308400000041],[107.41684320000007,1.101571400000068],[107.41329130000008,1.101966200000049]]],[[[106.89385810000005,1.187555100000054],[106.89487270000006,1.190728400000069],[106.89299590000007,1.192892],[106.88895230000008,1.194767],[106.88621340000009,1.193901600000061],[106.88534360000006,1.192170800000042],[106.88664820000008,1.188997400000062],[106.89385810000005,1.187555100000054]]],[[[104.51369410000007,0.843645500000036],[104.51519220000006,0.843160600000033],[104.51478850000007,0.838823300000058],[104.51963870000009,0.828437200000053],[104.51887680000004,0.82729960000006],[104.52198360000006,0.825576300000023],[104.52889070000003,0.826285100000064],[104.53672430000006,0.823528],[104.54103790000005,0.823754],[104.54380170000007,0.820060400000045],[104.551789,0.821827400000075],[104.55355670000006,0.821223300000042],[104.55539170000009,0.814475600000037],[104.57590240000007,0.812195],[104.58263890000006,0.814075700000046],[104.58764190000005,0.81034980000004],[104.59311130000003,0.810283200000072],[104.60795070000006,0.826432700000055],[104.611185,0.833348800000067],[104.60905010000005,0.838417900000024],[104.60948310000003,0.843957300000056],[104.61101350000007,0.845850600000063],[104.61071380000004,0.858379300000024],[104.61402920000006,0.866601],[104.61267380000004,0.870107400000052],[104.61218950000006,0.881138300000032],[104.614806,0.890739300000064],[104.61965010000006,0.898941200000024],[104.62888420000007,0.905758100000071],[104.63927990000008,0.904747200000031],[104.65052170000007,0.906594600000062],[104.65513450000009,0.909210400000063],[104.65760470000004,0.914117300000044],[104.66001370000004,0.91436],[104.65989720000005,0.919353200000046],[104.65543280000009,0.927231200000051],[104.65638760000007,0.935848300000032],[104.65990140000008,0.940365500000041],[104.65890860000007,0.943409200000076],[104.65417740000004,0.943773600000043],[104.64813520000007,0.946747300000027],[104.639906,0.94633],[104.64472290000003,0.952590100000066],[104.64636970000004,0.959841300000051],[104.64280250000007,0.973886300000061],[104.63937430000004,0.977943900000071],[104.63628040000003,0.977642700000047],[104.63803030000008,0.983321800000056],[104.63770120000004,0.986345],[104.635266,0.987720600000046],[104.635937,0.992148200000031],[104.64184260000007,0.992104400000073],[104.64937110000005,1.005708900000059],[104.65156010000004,1.016103200000032],[104.65763350000009,1.032255400000054],[104.65579410000004,1.03954310000006],[104.65749540000007,1.045497600000033],[104.65067970000007,1.052058600000066],[104.65232090000006,1.062624200000073],[104.64484580000004,1.071037100000069],[104.63813390000007,1.083071400000051],[104.63602760000003,1.095542],[104.63268890000006,1.099873200000047],[104.63494110000005,1.105200500000024],[104.63359150000008,1.107933700000046],[104.62591010000006,1.115314800000021],[104.62057380000005,1.118480100000056],[104.61113370000004,1.120110600000032],[104.61022030000004,1.122260200000028],[104.60862050000009,1.121699700000022],[104.60236570000006,1.124844200000041],[104.60168690000006,1.126935800000069],[104.599821,1.125622900000053],[104.59666150000004,1.125921300000073],[104.596788,1.131705300000021],[104.59245120000008,1.134458],[104.58951,1.142514200000051],[104.587423,1.141459400000031],[104.58559980000007,1.14255090000006],[104.58170740000008,1.152681200000075],[104.57773370000007,1.155536300000051],[104.57791180000004,1.161242400000049],[104.58043840000005,1.168581400000051],[104.57803040000005,1.174629800000048],[104.57755090000006,1.180251700000042],[104.57935560000004,1.182778300000052],[104.57682430000006,1.192768700000045],[104.58059630000008,1.201683],[104.58525490000005,1.204745400000036],[104.58787320000005,1.204668300000037],[104.58857420000004,1.206587400000046],[104.58756440000008,1.209628900000041],[104.58336680000008,1.213658800000076],[104.58313490000006,1.219239500000072],[104.58633020000008,1.223309300000039],[104.58394190000007,1.229664800000023],[104.57993790000006,1.226408700000036],[104.56926330000005,1.229823400000043],[104.56391950000005,1.229584100000068],[104.55071340000006,1.223652300000026],[104.544323,1.215435200000059],[104.54703480000006,1.210591400000055],[104.54630340000006,1.203274600000043],[104.54956190000007,1.201639300000068],[104.55040930000007,1.199701600000026],[104.54070670000004,1.19659960000007],[104.53585670000007,1.187723900000037],[104.53628110000005,1.182724600000029],[104.52906480000007,1.177058],[104.51143320000006,1.173772600000063],[104.501153,1.170321500000057],[104.49650970000005,1.172434700000053],[104.49617780000005,1.173936800000035],[104.49256210000004,1.173992500000054],[104.49114650000007,1.175454],[104.48723320000005,1.174017200000037],[104.48270250000007,1.175713200000075],[104.48168150000004,1.174448100000063],[104.47805350000004,1.174500300000034],[104.46889950000008,1.176198900000031],[104.46472770000008,1.178599700000063],[104.46460540000004,1.184039600000062],[104.46156060000004,1.183476900000073],[104.46091570000004,1.181653900000072],[104.45733450000006,1.185103600000048],[104.45496590000005,1.183475200000032],[104.44771980000007,1.184808500000031],[104.43174990000006,1.190221600000029],[104.418799,1.198314500000038],[104.41687460000009,1.197539500000062],[104.40899170000006,1.199828500000024],[104.40718140000007,1.202999300000045],[104.40319330000005,1.201026100000036],[104.40228290000005,1.202425300000073],[104.39623470000004,1.202257300000042],[104.39873480000006,1.201397200000031],[104.39758550000005,1.200343400000065],[104.39546410000008,1.201434400000039],[104.39545450000008,1.204090800000074],[104.39350050000007,1.204543],[104.38910440000006,1.19798830000002],[104.38064470000006,1.197211200000027],[104.37800420000008,1.194115],[104.37631840000006,1.196358600000053],[104.37403060000008,1.194901400000049],[104.37646240000004,1.193441200000052],[104.37515250000007,1.191326100000026],[104.37907350000006,1.187111800000025],[104.382031,1.189561800000035],[104.38493330000006,1.187387400000034],[104.38146450000005,1.182875100000047],[104.37472340000005,1.178921400000036],[104.36506750000007,1.178260500000022],[104.36072060000004,1.180260400000066],[104.36005340000008,1.181938100000025],[104.35884360000006,1.180931100000066],[104.35627480000005,1.182844500000044],[104.35555830000004,1.184000200000071],[104.35724940000006,1.186598100000026],[104.35432250000008,1.188449300000059],[104.35275440000004,1.188324600000044],[104.35219930000005,1.185552900000062],[104.34979160000006,1.185067700000047],[104.34553080000006,1.186455700000067],[104.34512220000005,1.188669800000071],[104.33949540000003,1.191678800000034],[104.338712,1.190966400000036],[104.34107180000007,1.185774900000069],[104.33633280000004,1.181600200000048],[104.33058910000005,1.179125300000067],[104.32839760000007,1.180189200000029],[104.32686110000009,1.178733800000032],[104.321185,1.179804500000046],[104.31962430000004,1.183839900000066],[104.31807240000006,1.183211500000027],[104.31823270000007,1.180952500000046],[104.315631,1.179512200000033],[104.31313540000008,1.179764300000045],[104.31213060000005,1.182046100000036],[104.31038950000004,1.177198200000021],[104.31241340000008,1.176762200000042],[104.31207930000005,1.174035900000035],[104.31657550000006,1.175055500000042],[104.31926160000006,1.173578200000065],[104.32114250000006,1.166625200000055],[104.31983730000007,1.164042600000073],[104.32427990000008,1.16587590000006],[104.33064490000004,1.163895900000057],[104.326601,1.158276],[104.32224380000008,1.160072800000023],[104.32149040000007,1.158573400000023],[104.32490880000006,1.157861600000047],[104.329031,1.145966600000065],[104.33276,1.14298830000007],[104.33021260000004,1.138291700000025],[104.32398530000006,1.136026500000071],[104.30555950000007,1.137502100000063],[104.29622260000008,1.13250290000002],[104.27786710000004,1.126270600000055],[104.24641530000008,1.120498200000043],[104.24164150000007,1.120725700000037],[104.24124650000005,1.124553400000025],[104.23913980000003,1.124842600000022],[104.23820040000004,1.123640300000034],[104.240293,1.119627300000047],[104.23973240000004,1.115322400000025],[104.24096070000007,1.112714900000071],[104.23997460000004,1.110604800000033],[104.23083720000005,1.104007800000034],[104.22797840000004,1.098525700000039],[104.22039650000005,1.090907600000037],[104.21658890000003,1.083704100000034],[104.21556150000004,1.075257800000031],[104.21245,1.074244300000032],[104.21460220000006,1.064764400000058],[104.222278,1.05871430000002],[104.225996,1.053719600000022],[104.23100770000008,1.05099],[104.23319130000004,1.046216500000071],[104.23151170000006,1.042604800000049],[104.23592560000009,1.038934],[104.23576960000008,1.035477300000025],[104.23071350000004,1.033309200000076],[104.22841140000008,1.029755800000032],[104.22786180000008,1.024892600000044],[104.22588490000004,1.022221200000047],[104.22971630000006,1.016351200000031],[104.23685550000005,1.015653500000042],[104.24766250000005,1.006335800000045],[104.25726570000006,1.001094900000055],[104.26346920000009,0.99969260000006],[104.28449340000009,1.001255800000024],[104.30361470000008,1.000807500000064],[104.31105540000004,0.998167500000022],[104.31693580000007,0.992392900000027],[104.319896,0.991343400000062],[104.33330310000008,0.992251600000031],[104.33768010000006,1.008460800000023],[104.33577230000009,1.012500500000044],[104.336776,1.020177100000069],[104.34054550000008,1.025934100000029],[104.343168,1.01986590000007],[104.35828770000006,1.020141600000045],[104.36214050000007,1.019009100000062],[104.37377460000005,1.010334700000044],[104.37909890000009,1.010717200000045],[104.38179190000005,1.014108100000044],[104.37963650000006,1.016445400000066],[104.38124770000007,1.020425800000055],[104.39218710000006,1.024854600000026],[104.39617490000006,1.027945200000033],[104.39873490000008,1.033406800000023],[104.40555890000007,1.034395600000039],[104.40341290000003,1.03873150000004],[104.40553090000009,1.043510900000058],[104.40194260000004,1.046865800000035],[104.40420620000003,1.05413980000003],[104.40686160000007,1.05323450000003],[104.41638960000006,1.055554900000061],[104.41412610000003,1.043715500000076],[104.41734740000004,1.03947370000003],[104.42392980000005,1.042598800000064],[104.426056,1.051583200000039],[104.42832130000005,1.052901700000064],[104.43441230000008,1.053123200000073],[104.43848350000007,1.051248800000053],[104.44644060000007,1.054421800000057],[104.450392,1.053335700000048],[104.45359880000007,1.054360200000076],[104.45563240000007,1.049595],[104.47627070000004,1.026873600000044],[104.47995650000007,1.027034600000036],[104.486477,1.03404960000006],[104.48883950000004,1.034214900000052],[104.48602480000005,1.024766],[104.48754690000004,1.019421800000032],[104.48529210000004,1.016298100000029],[104.48147040000003,1.014405400000044],[104.47227960000004,1.017299500000036],[104.46481440000008,1.023256600000025],[104.45156880000008,1.015170800000021],[104.44942330000003,1.008056],[104.447466,1.017062300000021],[104.44562450000006,1.017429500000048],[104.44488150000006,1.013981800000067],[104.44364830000006,1.01356480000004],[104.44246850000007,1.009054300000059],[104.44646780000005,1.006512900000075],[104.44344590000009,1.005368500000031],[104.44134190000005,1.001395900000034],[104.44141630000007,0.995795800000053],[104.45161690000003,0.989742],[104.452923,0.984571900000049],[104.46754530000004,0.985646600000052],[104.47384160000007,0.978667700000074],[104.47295850000006,0.984288100000072],[104.47543610000008,0.985691400000064],[104.47390370000005,0.986529100000041],[104.47618550000004,0.989010300000075],[104.47817560000004,0.987730400000032],[104.47998830000006,0.98962030000007],[104.48060980000008,0.988188900000068],[104.48423620000005,0.98770380000002],[104.48545,0.989284700000042],[104.49328990000004,0.990787100000034],[104.49913550000008,0.989350100000024],[104.50199580000009,0.98271550000004],[104.50164470000004,0.97719440000003],[104.50404670000006,0.976168800000039],[104.50428050000005,0.972481100000039],[104.50816830000008,0.974995200000023],[104.51001790000004,0.971525200000031],[104.51135720000008,0.97141240000002],[104.51308510000007,0.972404100000062],[104.51499740000008,0.977050200000065],[104.52123330000006,0.977347300000019],[104.51897630000008,0.963920400000063],[104.52003550000006,0.95707630000004],[104.52797080000005,0.944757400000071],[104.53888210000008,0.935701800000061],[104.54522470000006,0.932821800000056],[104.54789330000006,0.926110100000074],[104.55303770000006,0.922203600000046],[104.55018260000008,0.910007],[104.54199390000008,0.902977300000032],[104.540527,0.898474100000044],[104.53806560000004,0.896567700000048],[104.53702540000006,0.886370100000022],[104.53972420000008,0.882081700000072],[104.53398060000006,0.87664570000004],[104.53170290000008,0.861876400000028],[104.52407720000008,0.857766500000025],[104.52099960000004,0.858250200000043],[104.51786130000005,0.855464600000062],[104.51544890000008,0.850932500000056],[104.51400530000006,0.850585600000045],[104.51544910000007,0.848719700000061],[104.51297190000008,0.849247800000057],[104.51351350000004,0.84758],[104.51505560000004,0.847613200000069],[104.51312450000006,0.846863800000051],[104.51385850000008,0.845386700000063],[104.51521980000007,0.845780200000036],[104.51369410000007,0.843645500000036]]],[[[107.04676610000007,1.319906800000069],[107.045566,1.320708],[107.04139530000003,1.315862400000071],[107.04288350000007,1.31354790000006],[107.04560450000008,1.314743],[107.04770620000005,1.319644100000062],[107.04676610000007,1.319906800000069]]]]},"properties":{"shapeName":"Bintan","shapeISO":"","shapeID":"22746128B92757277063778","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[96.65746720000004,4.955386800000042],[96.65835340000007,4.964228700000035],[96.66143170000004,4.973995100000025],[96.702866,4.969695600000023],[96.71971540000004,4.970867],[96.74468040000005,4.966658300000063],[96.74995910000007,4.963088700000071],[96.76408820000006,4.957745],[96.778571,4.947112400000037],[96.78125890000007,4.943455],[96.78598190000008,4.942060800000036],[96.79939310000003,4.956415200000038],[96.80835360000003,4.969092500000045],[96.81658510000005,4.989539100000059],[96.81894170000004,5.004891500000042],[96.81770970000008,5.009317900000042],[96.81862650000005,5.038432400000033],[96.82747280000007,5.054079700000045],[96.82588990000005,5.061404500000037],[96.82129680000008,5.071793200000059],[96.84489040000005,5.08394450000003],[96.85945460000005,5.09509920000005],[96.86749320000007,5.105720100000042],[96.878836,5.134336],[96.89060410000008,5.150681200000065],[96.88983860000008,5.162298900000053],[96.88225670000008,5.170676300000025],[96.88144840000007,5.192407],[96.89896240000007,5.193417500000066],[96.899543,5.181655100000057],[96.90325150000007,5.180912600000056],[96.90378820000006,5.184948800000029],[96.907376,5.190034100000048],[96.90678620000006,5.192753100000061],[96.90395880000005,5.193459300000029],[96.906379,5.200517300000058],[96.91463190000007,5.199651200000062],[96.916033,5.20153490000007],[96.91374120000006,5.203993500000024],[96.91431170000004,5.206261600000062],[96.92046670000008,5.207406500000047],[96.92502040000005,5.210431100000051],[96.92459260000004,5.21297560000005],[96.92182080000003,5.209833700000047],[96.91622630000006,5.213034800000059],[96.91692740000008,5.217401800000061],[96.91276950000008,5.214547700000026],[96.911033,5.214952],[96.911544,5.217011300000024],[96.916452,5.218324900000027],[96.916868,5.222680100000048],[96.91454010000007,5.221078600000055],[96.91118750000004,5.222857600000054],[96.90805050000006,5.221779500000025],[96.90973930000007,5.225279100000023],[96.913077,5.222952300000031],[96.91474080000006,5.225331],[96.91168660000005,5.234857800000043],[96.90814520000004,5.235745400000042],[96.91012980000005,5.242846],[96.906731,5.242692100000056],[96.90612490000007,5.243851900000038],[96.90702220000009,5.245786800000076],[96.91326120000008,5.246816300000035],[96.90779040000007,5.250337500000057],[96.90333380000004,5.250543700000037],[96.88998410000005,5.247413400000028],[96.877761,5.249881900000048],[96.87330820000005,5.252885200000037],[96.86886450000009,5.265530700000056],[96.85852110000008,5.275198500000045],[96.84916850000008,5.27705960000003],[96.84102470000005,5.275216400000033],[96.83166210000007,5.275792100000047],[96.80512290000007,5.269573500000035],[96.79052550000006,5.26220660000007],[96.78629680000006,5.260618500000021],[96.78588430000008,5.261822600000073],[96.77878110000006,5.258213900000044],[96.74474970000006,5.250650300000075],[96.74247120000007,5.249106300000051],[96.73304930000006,5.24939130000007],[96.72734450000007,5.247908600000073],[96.66684980000008,5.222216800000069],[96.64013880000005,5.213985800000046],[96.61111810000006,5.210196500000052],[96.58244910000008,5.210545900000056],[96.580984,5.21170950000004],[96.562505,5.204087300000026],[96.53056950000007,5.19831350000004],[96.50919490000007,5.19989570000007],[96.49852640000006,5.203535800000054],[96.49575510000005,5.203217300000063],[96.48535570000007,5.209141800000054],[96.47994230000006,5.213887700000043],[96.47632260000006,5.226905600000066],[96.47114610000006,5.232961],[96.46547080000005,5.236991400000022],[96.45950940000006,5.235005],[96.43060510000004,5.21920810000006],[96.416327,5.214941800000076],[96.41645390000008,5.213990700000068],[96.39877970000003,5.209695400000044],[96.38656630000008,5.211102500000038],[96.37220870000004,5.216596400000071],[96.37086910000005,5.218782900000065],[96.36625910000004,5.217831900000022],[96.34200580000004,5.227098400000045],[96.33792990000006,5.219860600000061],[96.33762140000005,5.217966900000022],[96.33886920000003,5.217659200000071],[96.33778170000005,5.213074900000038],[96.34165590000003,5.211370700000032],[96.34229760000005,5.206802400000072],[96.34467440000003,5.205891100000031],[96.33509590000006,5.184777300000064],[96.33415380000008,5.175479300000063],[96.33612080000006,5.174053],[96.33677120000004,5.170769500000063],[96.33423240000008,5.166172],[96.33529790000006,5.164717900000028],[96.33505250000007,5.150871600000073],[96.338032,5.143983500000047],[96.33939880000008,5.13562520000005],[96.34458980000005,5.129768500000068],[96.34687150000008,5.129768500000068],[96.34582580000006,5.127590600000076],[96.34886810000006,5.126264900000024],[96.34601590000005,5.124371100000076],[96.34839270000003,5.122761300000036],[96.34772720000007,5.119541800000036],[96.34905820000006,5.116416900000047],[96.34677650000003,5.115375300000039],[96.34791730000006,5.11149290000003],[96.34601590000005,5.109030800000028],[96.34934340000007,5.10798920000002],[96.34972370000008,5.101171200000067],[96.35457240000005,5.096625800000027],[96.35615850000005,5.091724],[96.35410890000009,5.090435],[96.35248080000008,5.08243310000006],[96.34817880000008,5.079781600000047],[96.34896310000005,5.077414100000055],[96.35117350000007,5.076632800000027],[96.35038920000005,5.074289],[96.35157760000004,5.07043],[96.35012780000005,5.069151600000055],[96.35200540000005,5.065813400000025],[96.35397820000009,5.066073800000026],[96.36060940000004,5.060817900000075],[96.36141750000007,5.056153900000027],[96.35963490000006,5.055443600000046],[96.36210680000005,5.054615],[96.36317630000008,5.050140300000066],[96.36636130000005,5.045594600000072],[96.36422210000006,5.033472400000051],[96.35797120000007,5.027032400000053],[96.35740070000008,5.024167600000055],[96.354501,5.022415500000022],[96.352053,5.023031100000026],[96.35167270000005,5.018935],[96.346758,5.015227],[96.34677650000003,5.010671800000068],[96.34858280000003,5.008304100000032],[96.34779850000007,4.990972200000044],[96.34603970000006,4.990782700000068],[96.34656260000008,4.989125300000069],[96.34019280000007,4.981832500000053],[96.34071560000007,4.977144100000032],[96.33876670000006,4.97719150000006],[96.33729310000007,4.974397500000066],[96.33486880000004,4.97387660000004],[96.33339510000008,4.969851200000051],[96.32544060000004,4.962421600000027],[96.32651770000007,4.958231300000023],[96.33270520000008,4.949325800000054],[96.336939,4.945719300000064],[96.341692,4.94408720000007],[96.35349050000008,4.944805500000029],[96.36332680000004,4.941845400000034],[96.36837110000005,4.937618500000042],[96.36971120000004,4.932922],[96.37350090000007,4.931046400000071],[96.37905920000009,4.932190500000047],[96.39746990000003,4.941855600000054],[96.42340360000009,4.94095180000005],[96.43175220000006,4.938345500000025],[96.44958780000007,4.925136100000032],[96.46155990000005,4.913923900000043],[96.46677870000008,4.894833800000072],[96.47557550000005,4.892098400000066],[96.49230190000009,4.891883200000052],[96.496634,4.890067500000043],[96.50252080000007,4.892598300000031],[96.505983,4.895397800000069],[96.50933560000004,4.901655800000071],[96.51278980000006,4.902918400000033],[96.52146420000008,4.918271900000036],[96.53613310000009,4.935074900000075],[96.554628,4.94248],[96.57535940000008,4.948371400000042],[96.58584170000006,4.949815400000034],[96.58935640000004,4.952450400000032],[96.599865,4.954205900000034],[96.61500920000003,4.953546300000028],[96.61635350000006,4.953923600000053],[96.61694230000006,4.956420300000048],[96.62191170000006,4.953508500000055],[96.64397480000008,4.955887100000041],[96.64415170000007,4.953193900000031],[96.64721420000006,4.952215500000023],[96.64589840000008,4.957030200000077],[96.64761560000005,4.955482400000051],[96.64992370000004,4.95681570000005],[96.65355390000008,4.954488100000049],[96.65746720000004,4.955386800000042]]]},"properties":{"shapeName":"Bireuen","shapeISO":"","shapeID":"22746128B81996644163864","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[112.24037930000009,-8.351190499999973],[112.240036,-8.348283599999945],[112.23869320000006,-8.350358899999947],[112.24037930000009,-8.351190499999973]]],[[[112.3072433000001,-8.343169099999955],[112.30832670000007,-8.341435299999944],[112.30570220000004,-8.34283339999996],[112.3072433000001,-8.343169099999955]]],[[[112.3589574,-8.348452599999973],[112.36306760000002,-8.339890299999979],[112.36215210000012,-8.3376053],[112.36429590000012,-8.32848729999995],[112.37009420000004,-8.323683599999981],[112.37136070000008,-8.310913],[112.37524410000003,-8.308343799999932],[112.37618250000003,-8.305806],[112.37931060000005,-8.306700599999942],[112.38063810000006,-8.305599099999938],[112.37944030000006,-8.3020524],[112.38269040000012,-8.2959088],[112.3828582000001,-8.290758],[112.38448330000006,-8.289101499999958],[112.38506310000002,-8.285056],[112.381546,-8.267536],[112.38145640000005,-8.240136199999938],[112.38221030000011,-8.237800199999981],[112.38835140000003,-8.236122],[112.39282220000007,-8.23212609999996],[112.3934326000001,-8.227907],[112.3899841000001,-8.217763799999943],[112.38578790000008,-8.216103399999952],[112.38619990000007,-8.212357399999973],[112.3829498,-8.2078465],[112.38516230000005,-8.205779],[112.386589,-8.200959099999977],[112.38531320000004,-8.192279299999939],[112.382181,-8.191942199999971],[112.37737620000007,-8.18735909999998],[112.36684090000006,-8.183262399999933],[112.36602080000011,-8.17552269999993],[112.37313070000005,-8.169898899999964],[112.37867160000008,-8.170848299999932],[112.3829879000001,-8.169193099999973],[112.39104580000003,-8.16195319999997],[112.39289090000011,-8.161850799999968],[112.39586640000005,-8.164811],[112.41165350000006,-8.160296199999948],[112.41558070000008,-8.166308299999969],[112.41786190000005,-8.159655399999963],[112.42247770000006,-8.158055199999978],[112.42546840000011,-8.159706],[112.4308013000001,-8.15892969999993],[112.4363555000001,-8.154677299999946],[112.44033810000008,-8.148786399999949],[112.44741050000005,-8.148046299999976],[112.45255270000007,-8.1442612],[112.4531707000001,-8.1319283],[112.45510860000002,-8.131924499999968],[112.45519250000007,-8.12739929999998],[112.45773310000004,-8.126562],[112.4567336,-8.122881699999937],[112.45915840000009,-8.114940599999954],[112.45792380000012,-8.114119399999936],[112.4575923000001,-8.109541499999978],[112.4559478000001,-8.11001],[112.45426940000004,-8.106706499999973],[112.45456760000002,-8.099760199999935],[112.4531783000001,-8.097817299999974],[112.454879,-8.093235299999947],[112.45409680000012,-8.08789],[112.45678710000004,-8.0810088],[112.4553274000001,-8.078409499999964],[112.4568614000001,-8.077893099999926],[112.45576470000003,-8.076606599999934],[112.45703760000004,-8.076209699999936],[112.45661160000009,-8.072788099999968],[112.45814440000004,-8.070822199999952],[112.45780160000004,-8.067510199999958],[112.4556947000001,-8.066170299999953],[112.45539090000011,-8.06369189999998],[112.45424650000007,-8.063813099999948],[112.45511620000002,-8.05929649999996],[112.4534225000001,-8.056946599999947],[112.45546720000004,-8.056261899999981],[112.45690150000007,-8.051100599999927],[112.4559478000001,-8.049981899999977],[112.45928190000006,-8.043322399999965],[112.45974730000012,-8.036715399999935],[112.46450040000002,-8.0298518],[112.464241,-8.017930799999931],[112.46303550000005,-8.015174699999932],[112.46484370000007,-8.014855199999943],[112.46672810000007,-8.010782099999972],[112.46796410000002,-8.000295499999936],[112.47133630000008,-7.995301099999949],[112.46842950000007,-7.987055199999929],[112.47895810000011,-7.971164599999952],[112.47451010000009,-7.958117799999968],[112.46535490000008,-7.955359299999941],[112.46440880000011,-7.951796399999978],[112.465866,-7.946248399999945],[112.45786910000004,-7.932967399999939],[112.4507751000001,-7.926610299999936],[112.452423,-7.9186972],[112.44515990000002,-7.910776],[112.437973,-7.913669499999969],[112.43161770000006,-7.921521],[112.42419770000004,-7.925167399999964],[112.4198871000001,-7.929814399999941],[112.41030120000005,-7.934628799999928],[112.40313720000006,-7.934642199999928],[112.38477320000004,-7.948265399999968],[112.37774650000006,-7.950139899999954],[112.37367240000003,-7.953738099999953],[112.37402340000006,-7.955386499999975],[112.370491,-7.957267199999933],[112.3648452000001,-7.955442299999959],[112.363182,-7.950228599999946],[112.36025990000007,-7.950123699999949],[112.36040490000005,-7.947981699999957],[112.34559630000001,-7.945292799999947],[112.3412856000001,-7.939399599999945],[112.33347320000007,-7.938320499999975],[112.31710050000004,-7.931435],[112.30657950000011,-7.929297299999973],[112.30448130000002,-7.929671799999937],[112.30282590000002,-7.9333542],[112.297882,-7.937585199999944],[112.29288480000002,-7.9372586],[112.2863235000001,-7.939706199999932],[112.279602,-7.939896],[112.2749328000001,-7.945266099999969],[112.2631225,-7.944436399999972],[112.25833890000001,-7.948100899999929],[112.25611110000011,-7.948145299999965],[112.25434110000003,-7.952260899999942],[112.24816890000011,-7.953257],[112.244751,-7.951636199999939],[112.24211880000007,-7.952404899999976],[112.2411499000001,-7.9552015],[112.23885340000004,-7.955217699999935],[112.23846430000003,-7.953802],[112.23274990000004,-7.955506199999945],[112.228981,-7.955012699999941],[112.2255249000001,-7.959010499999977],[112.21618650000005,-7.962713599999972],[112.201332,-7.964040199999943],[112.19322960000011,-7.969575799999973],[112.1799923000001,-7.973399],[112.16042290000007,-7.975130399999955],[112.15433460000008,-7.9769037],[112.11412010000004,-7.977420599999959],[112.11352650000003,-7.970675399999948],[112.11181680000004,-7.969854],[112.09607570000003,-7.969933899999944],[112.09826620000001,-7.976842199999965],[112.09629020000011,-7.989083599999958],[112.09080470000004,-7.991576],[112.07416500000011,-7.990107299999977],[112.05357690000005,-7.990620099999944],[112.04824660000008,-7.993560199999934],[112.0367989,-7.993152699999939],[112.03656730000012,-7.994677799999977],[112.018684,-7.999552499999936],[111.97754640000005,-7.996343399999944],[111.97644810000008,-8.002758899999947],[111.97896570000006,-8.004575599999953],[111.97612,-8.012055299999929],[111.969505,-8.007162899999969],[111.96359220000005,-8.0057915],[111.96149240000005,-7.998668899999927],[111.95705490000006,-7.997469],[111.95557470000006,-7.9981325],[111.95805360000008,-8.005955599999936],[111.95673370000009,-8.008941599999957],[111.96260070000005,-8.012118199999975],[111.96212,-8.013971199999958],[111.96507260000004,-8.019864],[111.96815790000005,-8.022760199999937],[111.96883390000005,-8.0267009],[111.97034450000007,-8.027749],[111.96933740000009,-8.030041599999947],[111.97075650000005,-8.03121939999994],[111.97090910000009,-8.037063499999931],[111.97486870000006,-8.044353399999977],[111.97740930000003,-8.044028199999957],[111.979721,-8.04773419999998],[111.98792260000005,-8.04973689999997],[111.98911560000005,-8.054644199999927],[111.99462890000007,-8.059328],[111.99311060000008,-8.065585],[111.99336070000004,-8.073514299999943],[111.99118490000006,-8.078156399999955],[111.99491880000005,-8.088351199999977],[111.99779510000008,-8.092158199999972],[112.0030746000001,-8.095440799999949],[112.03263850000008,-8.100144299999954],[112.04515070000002,-8.108527099999947],[112.066719,-8.111201199999925],[112.071067,-8.116706799999974],[112.0788645,-8.119001699999956],[112.08209390000002,-8.118884599999944],[112.08592220000003,-8.113652099999968],[112.08972160000008,-8.111215499999958],[112.09478800000011,-8.110554799999932],[112.11093890000006,-8.118798199999958],[112.11672070000009,-8.123837799999933],[112.12186980000001,-8.125416899999948],[112.119873,-8.127345899999966],[112.12006370000006,-8.13453759999993],[112.1173248,-8.143616599999973],[112.1165390000001,-8.157614599999931],[112.114685,-8.158826699999963],[112.10365290000004,-8.158392799999945],[112.09751130000006,-8.1664428],[112.09577940000008,-8.171782399999927],[112.09397120000006,-8.1736154],[112.08901970000011,-8.173355],[112.07858270000008,-8.1875171],[112.06716920000008,-8.186864799999967],[112.0576324000001,-8.183625099999972],[112.03787590000002,-8.17321439999995],[112.03544610000006,-8.1692838],[112.03162380000003,-8.1699676],[112.02883910000003,-8.168212799999935],[112.02909850000003,-8.181438399999934],[112.02709960000004,-8.184596],[112.02419280000004,-8.1857156],[112.02541350000001,-8.187633399999982],[112.02297210000006,-8.193277299999977],[112.0261001,-8.195659499999977],[112.0263748000001,-8.199019299999975],[112.02818290000005,-8.200269599999956],[112.0254440000001,-8.20588289999995],[112.02565760000005,-8.214509899999939],[112.023262,-8.221628099999975],[112.02391810000006,-8.225267299999928],[112.02192680000007,-8.226425099999972],[112.0226593000001,-8.228844599999945],[112.025505,-8.2293882],[112.0226593000001,-8.244342699999947],[112.02513120000003,-8.248011499999961],[112.02626120000002,-8.257143399999961],[112.030632,-8.262681899999961],[112.02891880000004,-8.2732135],[112.02379680000001,-8.281103899999948],[112.0243544000001,-8.286929],[112.03232570000011,-8.2952336],[112.03158570000005,-8.307504599999959],[112.02813190000006,-8.312601799999982],[112.02967150000006,-8.3142749],[112.02850290000003,-8.314933499999938],[112.02889670000002,-8.317271],[112.0341681000001,-8.319666799999936],[112.0537,-8.31755],[112.06133000000011,-8.31983],[112.06536,-8.32259],[112.06778,-8.32199],[112.06739,-8.31963],[112.0705200000001,-8.31788],[112.07531,-8.31712],[112.08293,-8.31834],[112.0901,-8.31506],[112.09656,-8.31664],[112.09782,-8.31843],[112.10617,-8.31818],[112.10979,-8.31268],[112.11368,-8.3165],[112.12297,-8.31586],[112.12444,-8.32183],[112.12997,-8.32571],[112.1325,-8.32413],[112.13502,-8.31878],[112.13993,-8.31585],[112.14334,-8.31575],[112.14605,-8.32029],[112.15108,-8.32276],[112.1509,-8.32486],[112.15444,-8.3289],[112.16114,-8.32615],[112.16511,-8.32626],[112.16656000000012,-8.32794],[112.1686,-8.32601],[112.16698,-8.32514],[112.1670600000001,-8.32351],[112.16933,-8.32054],[112.1755700000001,-8.32212],[112.17721,-8.32503],[112.1821900000001,-8.32666],[112.18206,-8.32289],[112.1824600000001,-8.32401],[112.18893,-8.32399],[112.19123,-8.32562],[112.1905200000001,-8.32725],[112.19414,-8.32377],[112.19463,-8.32718],[112.19610000000011,-8.32602],[112.19935,-8.32711],[112.20002000000011,-8.32476],[112.20079,-8.32624],[112.20312,-8.32478],[112.20445,-8.32759],[112.20645,-8.32623],[112.20671,-8.32793],[112.20885,-8.32814],[112.20880000000011,-8.33019],[112.20938,-8.32812],[112.21055,-8.32941],[112.21136,-8.32755],[112.21399,-8.32955],[112.21478,-8.3288],[112.21359,-8.32803],[112.21602,-8.32624],[112.21918,-8.32703],[112.22285000000011,-8.33262],[112.22094,-8.33358],[112.21897,-8.33732],[112.21983000000012,-8.3382],[112.21792,-8.33973],[112.218,-8.3412],[112.21944,-8.34064],[112.22076,-8.34279],[112.2299,-8.3434],[112.23114,-8.34651],[112.23238,-8.34527],[112.23444,-8.34586],[112.23515,-8.34385],[112.23833,-8.3455],[112.23908,-8.34443],[112.24125,-8.34722],[112.24546,-8.3441],[112.25447,-8.3431],[112.25807,-8.34513],[112.25854,-8.34805],[112.2613500000001,-8.34766],[112.26114,-8.34915],[112.26344,-8.35054],[112.26399,-8.3478],[112.26623,-8.34927],[112.27155,-8.34449],[112.27219,-8.33976],[112.27357,-8.33851],[112.2809,-8.33724],[112.28613,-8.33215],[112.29163,-8.33179],[112.29412,-8.33309],[112.2964,-8.33154],[112.29996,-8.3362],[112.30233,-8.3367],[112.30533,-8.33491],[112.3087,-8.33713],[112.30814,-8.3406],[112.31199,-8.3393],[112.3163,-8.34254],[112.31858000000011,-8.34141],[112.31788,-8.33625],[112.3194,-8.33382],[112.32845,-8.33103],[112.33424,-8.33297],[112.3382,-8.33997],[112.33688,-8.3427],[112.343,-8.34369],[112.34789,-8.34172],[112.34989,-8.34416],[112.34966,-8.34624],[112.34689,-8.34775],[112.3463,-8.34996],[112.34898,-8.35187],[112.35273,-8.34857],[112.3589574,-8.348452599999973]],[[112.18488610000009,-8.056107],[112.1891,-8.05798619999996],[112.187371,-8.065269299999954],[112.18895980000002,-8.065818099999944],[112.19033700000011,-8.063394099999925],[112.19771090000006,-8.065845199999956],[112.19672810000009,-8.070019599999966],[112.19488060000003,-8.072284599999932],[112.19260940000004,-8.072515299999964],[112.19123620000005,-8.076382799999976],[112.19314950000012,-8.080633499999976],[112.191142,-8.085267599999952],[112.1972608000001,-8.088444699999968],[112.19681480000008,-8.091170399999953],[112.20054820000007,-8.092748],[112.19782040000007,-8.093765399999938],[112.19401010000001,-8.100623299999938],[112.19306590000008,-8.099872499999947],[112.1875864000001,-8.104668899999979],[112.1842610000001,-8.104956899999934],[112.18257390000008,-8.110632799999962],[112.1809793000001,-8.110326099999952],[112.17761410000003,-8.115562199999943],[112.17630620000011,-8.120429899999976],[112.17084140000009,-8.119093499999963],[112.17052190000004,-8.125722199999927],[112.16780770000003,-8.131632099999933],[112.16389320000008,-8.13305159999993],[112.1631698000001,-8.134903799999961],[112.16019440000002,-8.135084099999972],[112.15965530000005,-8.136718899999948],[112.1559175000001,-8.135672599999964],[112.15980260000003,-8.126894499999935],[112.15792610000005,-8.126133],[112.15679440000008,-8.128297799999928],[112.15284610000003,-8.127097],[112.15228,-8.128521199999966],[112.1491919,-8.127841799999942],[112.15082570000004,-8.121484799999962],[112.1441115,-8.120138399999973],[112.14424860000008,-8.118558],[112.14248450000002,-8.117604099999937],[112.14355820000003,-8.113794299999938],[112.14577680000002,-8.113987699999939],[112.146197,-8.111171399999932],[112.14409150000006,-8.111495099999956],[112.14501020000012,-8.108721299999956],[112.14362710000012,-8.108363199999928],[112.141054,-8.111409099999946],[112.13721190000001,-8.110709399999962],[112.13662440000007,-8.10939449999995],[112.13895620000005,-8.101363899999967],[112.14168350000011,-8.099919099999966],[112.13954970000009,-8.098991099999978],[112.14037870000004,-8.096309399999939],[112.13392910000005,-8.093106399999954],[112.13250360000006,-8.090831799999933],[112.13494750000007,-8.083945099999937],[112.1452025000001,-8.075145],[112.14745070000004,-8.075680599999941],[112.14754130000006,-8.080144799999971],[112.157398,-8.0835571],[112.15710840000008,-8.086340099999973],[112.16160580000007,-8.0847568],[112.1649169000001,-8.076354899999956],[112.16828150000003,-8.073722699999962],[112.16913880000004,-8.067417499999976],[112.1731731000001,-8.057648399999948],[112.18116250000003,-8.060651199999938],[112.18211280000003,-8.05707609999996],[112.18488610000009,-8.056107]]]]},"properties":{"shapeName":"Blitar","shapeISO":"","shapeID":"22746128B97982807871546","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[111.26345540000005,-6.855369199999927],[111.25774380000007,-6.853825499999971],[111.25431820000006,-6.858252],[111.24478250000004,-6.862682499999949],[111.24219260000007,-6.8616599],[111.24178130000007,-6.859301699999946],[111.239936,-6.858367399999963],[111.23881410000007,-6.850552599999958],[111.229296,-6.849447399999974],[111.22486220000008,-6.846145199999967],[111.22276720000008,-6.848050499999943],[111.22422910000006,-6.850461899999971],[111.22273290000004,-6.851702799999941],[111.22400670000007,-6.854959399999927],[111.22223660000009,-6.856164],[111.223793,-6.863524899999959],[111.22193150000004,-6.871529099999975],[111.21672820000003,-6.873121199999957],[111.21508020000005,-6.870492399999932],[111.21196750000007,-6.869328],[111.21115870000006,-6.871340199999963],[111.20822140000007,-6.872147499999926],[111.20874020000008,-6.874879299999975],[111.20491030000005,-6.877247299999965],[111.20332330000008,-6.8799824],[111.20084380000009,-6.889184399999976],[111.20124810000004,-6.894027199999925],[111.19831850000008,-6.8983311],[111.19021610000004,-6.898534699999971],[111.18690490000006,-6.896691799999928],[111.18692780000003,-6.898836099999926],[111.18333430000007,-6.898584299999925],[111.176712,-6.905371599999967],[111.16938780000004,-6.905875599999945],[111.15247340000008,-6.910137599999928],[111.14994050000007,-6.905883699999947],[111.14179230000008,-6.9010915],[111.14034270000008,-6.903384199999948],[111.14380640000007,-6.910817599999973],[111.14202880000005,-6.916444799999965],[111.13806240000008,-6.920822099999953],[111.13250450000004,-6.9203828],[111.125,-6.913475499999947],[111.12033080000003,-6.913022],[111.11525690000008,-6.916257499999972],[111.11302950000004,-6.923531499999967],[111.113121,-6.940294199999926],[111.11058810000009,-6.944917199999963],[111.10985560000006,-6.953637599999979],[111.10654450000004,-6.962053699999956],[111.10986330000009,-6.969973099999947],[111.11129180000006,-6.978038399999946],[111.11379890000006,-6.979028599999936],[111.12115680000005,-6.976562899999976],[111.13272860000006,-6.977285399999971],[111.14007570000007,-6.981140099999948],[111.14721680000008,-6.980653199999949],[111.154808,-6.983628299999964],[111.16106420000006,-6.980772899999977],[111.16511,-6.98137],[111.17137150000008,-6.985499299999958],[111.17366030000005,-6.991140299999927],[111.18822480000006,-6.998092099999951],[111.19181820000006,-7.004290099999935],[111.19688410000003,-7.006845399999975],[111.20166780000005,-7.017956199999958],[111.20679470000005,-7.021322699999928],[111.20991510000005,-7.019552199999964],[111.21315,-7.0208964],[111.21802520000006,-7.030528],[111.21772760000005,-7.044828799999948],[111.21665190000004,-7.046186399999954],[111.21878810000004,-7.050194699999963],[111.21770470000007,-7.0553608],[111.215683,-7.057058299999937],[111.21527860000003,-7.0638938],[111.21739960000008,-7.0702018],[111.21562780000005,-7.076305299999945],[111.21374590000005,-7.077113099999963],[111.21823880000005,-7.083489899999961],[111.22112270000008,-7.085288],[111.22339630000005,-7.103551399999958],[111.23202510000004,-7.119765699999959],[111.23469540000008,-7.131362899999942],[111.23794550000008,-7.137893199999951],[111.24046320000008,-7.138523099999929],[111.24143980000008,-7.165915],[111.24294280000004,-7.1692819],[111.246849,-7.171814899999958],[111.24509430000006,-7.177644699999973],[111.24668120000007,-7.181543799999929],[111.24510950000007,-7.1869225],[111.24579620000009,-7.192688399999952],[111.24335480000008,-7.202057799999977],[111.24428560000007,-7.207516599999963],[111.24237060000007,-7.209690099999932],[111.242691,-7.213636799999961],[111.23941980000006,-7.226774],[111.236644,-7.230798199999981],[111.23786180000008,-7.241020499999934],[111.23435130000007,-7.244025099999931],[111.22719630000006,-7.2438912],[111.21931560000007,-7.246673],[111.21237050000008,-7.246907799999974],[111.217926,-7.248583799999949],[111.21758270000004,-7.250028099999952],[111.22178650000006,-7.252637799999945],[111.22389220000008,-7.256844],[111.22367860000008,-7.261751099999969],[111.22734830000007,-7.264830099999926],[111.229248,-7.268674799999928],[111.23067470000007,-7.267605699999933],[111.23534390000009,-7.270319399999948],[111.23985290000007,-7.275611399999946],[111.23938750000008,-7.276961799999981],[111.24152370000007,-7.278790899999933],[111.24136350000003,-7.282273699999962],[111.244133,-7.2855],[111.24816130000005,-7.286259099999938],[111.24855040000006,-7.283859699999937],[111.25126650000004,-7.284000799999944],[111.25406650000008,-7.284339399999965],[111.25508120000006,-7.287579499999936],[111.25830080000009,-7.2881946],[111.26403050000005,-7.2870702],[111.26691430000005,-7.287657699999954],[111.26805880000006,-7.289576],[111.27548980000006,-7.289751499999966],[111.27923580000004,-7.28796],[111.28076170000008,-7.290587399999936],[111.28191370000008,-7.288746299999957],[111.28623960000004,-7.289055799999971],[111.28808590000006,-7.290113399999939],[111.28684990000005,-7.291064699999936],[111.28855130000005,-7.291389399999957],[111.28876490000005,-7.2935981],[111.29291530000006,-7.295403],[111.29496760000006,-7.299191],[111.29370880000005,-7.300175099999933],[111.29572290000004,-7.300177099999928],[111.29579920000003,-7.301695299999949],[111.29695890000005,-7.300062099999934],[111.30049130000003,-7.301910799999973],[111.30327610000006,-7.299553399999979],[111.30325320000009,-7.3016672],[111.30437470000004,-7.302651799999978],[111.30506130000003,-7.301640499999962],[111.30509950000004,-7.303160599999956],[111.30641940000004,-7.300394],[111.30885310000008,-7.302157299999976],[111.30880740000003,-7.305025499999942],[111.31018830000005,-7.306237199999941],[111.31091310000005,-7.305066599999975],[111.31451410000005,-7.3059854],[111.31423190000004,-7.304716099999951],[111.31533810000008,-7.304819099999975],[111.31916040000004,-7.309179299999926],[111.32234190000008,-7.309310899999957],[111.32173160000008,-7.311895299999946],[111.32667540000006,-7.315235099999938],[111.32621,-7.316625099999953],[111.32998650000008,-7.315019599999971],[111.33155820000007,-7.317559199999948],[111.33316040000005,-7.317358],[111.33332060000004,-7.320845599999927],[111.34014130000008,-7.318277799999976],[111.34471890000009,-7.319059299999935],[111.34480290000005,-7.3210678],[111.34705350000007,-7.322931199999971],[111.34535980000004,-7.3281188],[111.34816740000008,-7.330594499999961],[111.34601590000005,-7.331978799999945],[111.34492490000008,-7.335303799999963],[111.36071770000007,-7.330652699999973],[111.36753080000005,-7.334848399999942],[111.368721,-7.340698199999963],[111.37391660000009,-7.344227699999976],[111.38237760000004,-7.346631499999944],[111.38610080000007,-7.344672199999934],[111.39152530000007,-7.3467064],[111.39491270000008,-7.346344899999963],[111.40041350000007,-7.349422899999979],[111.40364070000004,-7.347772599999928],[111.40889740000006,-7.349532099999976],[111.41207120000007,-7.347701499999971],[111.41626740000004,-7.348817299999951],[111.41731260000006,-7.352372599999967],[111.42013550000007,-7.352513699999975],[111.42639160000004,-7.356068099999959],[111.43160250000005,-7.3644838],[111.43608850000004,-7.366228499999977],[111.43986510000008,-7.369904],[111.44725040000009,-7.372028299999954],[111.45049290000009,-7.371159499999976],[111.45254520000009,-7.374792499999955],[111.46218110000007,-7.374809199999959],[111.46429440000009,-7.373063499999944],[111.46311180000004,-7.371044099999949],[111.45655060000007,-7.36906],[111.46181870000004,-7.362291299999981],[111.46224970000009,-7.357080899999971],[111.45903780000003,-7.352651099999946],[111.45550540000005,-7.3521418],[111.45006560000007,-7.355223599999931],[111.44689180000006,-7.360745899999927],[111.44498440000007,-7.361170199999947],[111.44365690000006,-7.360085499999968],[111.44189450000005,-7.3517933],[111.4431,-7.347720599999946],[111.44977570000009,-7.343160099999977],[111.45362090000003,-7.343276899999978],[111.45933530000008,-7.346558499999958],[111.46250910000003,-7.345831299999929],[111.46250910000003,-7.343147199999976],[111.46023560000003,-7.340947599999936],[111.45083620000008,-7.340535099999954],[111.44620510000004,-7.337403299999949],[111.449974,-7.329919799999971],[111.45743560000005,-7.324513399999944],[111.457283,-7.321166],[111.44744870000005,-7.313455],[111.44125360000004,-7.315421499999957],[111.43402860000003,-7.315066799999954],[111.42604060000008,-7.312661599999956],[111.42371370000006,-7.310316],[111.42464450000006,-7.307143599999961],[111.43011470000005,-7.304424199999971],[111.43763730000006,-7.292955799999959],[111.44222260000004,-7.2888498],[111.44230650000009,-7.283543099999974],[111.44438930000007,-7.278563499999962],[111.43912510000007,-7.273803199999975],[111.43806450000005,-7.269793],[111.43966670000009,-7.267891399999939],[111.44250490000007,-7.267436499999974],[111.44741060000007,-7.275634699999955],[111.45092010000008,-7.274907599999949],[111.45173640000007,-7.248101199999951],[111.45644380000005,-7.249749099999974],[111.45555880000006,-7.258103799999958],[111.46006770000008,-7.261778799999945],[111.46550750000006,-7.2632813],[111.46911620000009,-7.262264699999946],[111.47399140000005,-7.2541041],[111.47719570000004,-7.251959299999953],[111.486702,-7.260756],[111.48993680000007,-7.260722099999953],[111.49098970000006,-7.2581577],[111.48554230000008,-7.250925],[111.48585510000004,-7.246391299999971],[111.48777770000004,-7.243106799999964],[111.50170890000004,-7.248538399999973],[111.51338190000007,-7.238946899999974],[111.52241510000005,-7.237233599999968],[111.52807610000008,-7.227279599999974],[111.54232790000009,-7.227162799999974],[111.54322810000008,-7.224156799999946],[111.53679660000006,-7.218255],[111.53668970000007,-7.215751099999977],[111.54331970000004,-7.213639699999931],[111.54902650000008,-7.205319399999951],[111.55504610000008,-7.201706399999978],[111.55886840000005,-7.206209099999967],[111.56589510000003,-7.207502299999931],[111.56915280000004,-7.198947899999951],[111.56389620000004,-7.190575099999933],[111.56600950000006,-7.187061299999925],[111.56812290000005,-7.185987399999931],[111.57582850000006,-7.188291499999934],[111.58730310000004,-7.185503399999959],[111.58367920000006,-7.175392099999954],[111.58507530000009,-7.169180399999959],[111.589592,-7.162226099999941],[111.59864040000008,-7.1552286],[111.59854890000008,-7.145377099999962],[111.60127260000007,-7.144640399999957],[111.606987,-7.146809],[111.60579680000006,-7.1433291],[111.60820770000004,-7.142072599999949],[111.61062620000007,-7.143263299999944],[111.60893250000004,-7.139519699999937],[111.611824,-7.140739899999971],[111.61213680000009,-7.138456799999972],[111.60979460000004,-7.138175399999966],[111.61112970000005,-7.135453599999948],[111.60771940000006,-7.137077699999963],[111.60923760000009,-7.132169699999963],[111.60716240000005,-7.131272799999977],[111.606163,-7.127667799999927],[111.60764310000008,-7.128473699999972],[111.60754390000005,-7.126695099999949],[111.611618,-7.1254882],[111.61151120000005,-7.121445599999959],[111.61347960000006,-7.122598099999948],[111.61280060000007,-7.120328399999948],[111.61531830000007,-7.116657699999962],[111.61377710000005,-7.116632899999956],[111.61414330000008,-7.114657399999942],[111.61244960000005,-7.114655],[111.61328120000007,-7.110650499999963],[111.62025450000004,-7.110324299999945],[111.62181090000007,-7.108634],[111.61798860000005,-7.106843899999944],[111.61376950000005,-7.098891199999969],[111.61676020000004,-7.097578499999941],[111.61479180000003,-7.096114599999964],[111.61398310000004,-7.092152499999941],[111.61499020000008,-7.090775],[111.612915,-7.087321199999963],[111.61434930000007,-7.085041499999932],[111.61256410000004,-7.084187499999928],[111.61253360000006,-7.082219099999975],[111.61627190000007,-7.082348299999978],[111.61436460000004,-7.078584599999942],[111.61899560000006,-7.073458099999925],[111.62127680000009,-7.074015599999939],[111.62162020000005,-7.075509499999953],[111.62404630000009,-7.0739302],[111.62460320000008,-7.075498499999981],[111.62581630000005,-7.072834],[111.62817380000007,-7.075404099999957],[111.62555690000005,-7.070944299999951],[111.62674710000005,-7.070418299999972],[111.62585450000006,-7.0689263],[111.62841790000004,-7.066905399999939],[111.629097,-7.063616199999956],[111.62804410000007,-7.062108899999942],[111.62985990000004,-7.059412899999927],[111.62495420000005,-7.0591607],[111.62487030000005,-7.056053099999929],[111.62750240000008,-7.055429],[111.62749480000008,-7.053850599999976],[111.62586970000007,-7.054804299999944],[111.62531280000007,-7.052920799999981],[111.62169640000008,-7.053370399999949],[111.62234490000009,-7.050700099999972],[111.61804960000006,-7.050099799999941],[111.61730960000006,-7.047151499999927],[111.61939240000004,-7.0467276],[111.61728670000008,-7.043085499999961],[111.61859130000005,-7.040113399999939],[111.61650080000004,-7.040804799999933],[111.61631010000008,-7.037520399999948],[111.61412810000007,-7.037453599999935],[111.61340330000007,-7.034968299999946],[111.61603540000004,-7.032228399999951],[111.61331180000008,-7.024643399999945],[111.61471560000007,-7.023095099999978],[111.61522670000005,-7.016937699999971],[111.61299890000004,-7.010746],[111.61540980000007,-7.007164899999964],[111.61496730000005,-7.002351699999963],[111.61769860000004,-6.9932379],[111.62209320000005,-6.9891948],[111.62169640000008,-6.986544599999945],[111.62274170000006,-6.986033899999939],[111.62336210000007,-6.987544799999966],[111.62191010000004,-6.9822306],[111.61077880000005,-6.975001799999973],[111.60945890000005,-6.971575199999961],[111.60510250000004,-6.967182099999945],[111.60082240000008,-6.965611899999942],[111.59429930000005,-6.965852699999971],[111.59375,-6.964260499999966],[111.59024810000005,-6.963477599999976],[111.58973690000005,-6.964889],[111.57214350000004,-6.952383499999939],[111.57006070000006,-6.946714799999938],[111.572052,-6.945127899999932],[111.57432550000004,-6.9453778],[111.57698820000007,-6.941839699999946],[111.57503510000004,-6.937857099999974],[111.57632440000003,-6.931314399999962],[111.57309720000006,-6.926347699999951],[111.57329560000005,-6.924118899999939],[111.57621760000006,-6.923811899999976],[111.57692720000006,-6.921983199999943],[111.57686610000007,-6.919641],[111.57497690000008,-6.918127599999934],[111.56824550000005,-6.914704099999938],[111.56889440000003,-6.919142299999976],[111.56574460000007,-6.916879499999936],[111.56380170000006,-6.913172199999963],[111.561148,-6.912195],[111.56003530000004,-6.913655099999971],[111.55553670000006,-6.914345599999933],[111.55565640000009,-6.911766],[111.55329890000007,-6.909753299999977],[111.54854580000006,-6.910721299999977],[111.54410550000006,-6.909255],[111.54197690000007,-6.907662399999936],[111.54526520000007,-6.904141799999934],[111.54330440000007,-6.902985499999943],[111.54054260000004,-6.9038715],[111.53862220000008,-6.900413299999968],[111.51847130000004,-6.8978222],[111.51672,-6.89642],[111.51657,-6.89236],[111.51444890000005,-6.889332],[111.50945280000008,-6.892016899999931],[111.50503540000005,-6.890817099999936],[111.50207520000004,-6.893297199999949],[111.49623110000005,-6.893589899999938],[111.49479670000005,-6.888941199999977],[111.488121,-6.881225499999971],[111.48180390000005,-6.8834676],[111.47996090000004,-6.886214],[111.47671650000007,-6.886523899999929],[111.46987280000008,-6.882036],[111.46578980000004,-6.881082],[111.46035,-6.88244],[111.45942450000007,-6.881648299999938],[111.46030040000005,-6.878779799999961],[111.45820010000006,-6.879097399999978],[111.45895420000005,-6.878012699999942],[111.45435690000005,-6.876269],[111.44753370000006,-6.880328599999928],[111.44334590000005,-6.879893399999958],[111.44145380000003,-6.882625599999926],[111.43977890000008,-6.882737],[111.44125480000008,-6.884432799999956],[111.43929290000005,-6.886636199999941],[111.43708930000008,-6.8841801],[111.43597760000006,-6.884551599999952],[111.43713240000005,-6.886251899999934],[111.434906,-6.890221099999962],[111.42552950000004,-6.894144499999925],[111.42133330000007,-6.893721099999937],[111.41997530000003,-6.891627299999925],[111.41353610000004,-6.890008399999942],[111.41420740000007,-6.884373099999948],[111.41287990000006,-6.882431499999939],[111.40833280000004,-6.885863299999926],[111.40523530000007,-6.884783699999957],[111.40532680000007,-6.887138299999947],[111.40232480000009,-6.887735899999939],[111.39974210000008,-6.891183299999966],[111.38967130000009,-6.892749299999934],[111.38116450000007,-6.890074199999958],[111.37768550000004,-6.891548099999966],[111.363884,-6.884554799999933],[111.35992430000005,-6.886371099999963],[111.35650960000004,-6.884717799999976],[111.34787280000006,-6.886013799999944],[111.34593960000007,-6.8829689],[111.34118170000005,-6.880748399999959],[111.34238470000008,-6.877608899999927],[111.33855090000009,-6.8754617],[111.33836690000004,-6.873161],[111.33394970000006,-6.871941699999979],[111.33010980000006,-6.868704499999978],[111.31360880000005,-6.864800899999977],[111.28475940000004,-6.865131799999972],[111.27262480000007,-6.858266599999979],[111.26519890000009,-6.857092799999975],[111.26345540000005,-6.855369199999927]]]},"properties":{"shapeName":"Blora","shapeISO":"","shapeID":"22746128B24838091363159","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[122.23214450000012,0.434081],[122.22613180000008,0.434476500000073],[122.22527780000007,0.431924],[122.22818310000002,0.430039400000055],[122.23189350000007,0.430630300000075],[122.23342420000006,0.432387600000027],[122.23214450000012,0.434081]]],[[[122.33099240000001,0.454217100000051],[122.332836,0.455544900000064],[122.3329351000001,0.459900700000048],[122.3308621000001,0.462850300000071],[122.3283292000001,0.459433400000023],[122.33099240000001,0.454217100000051]]],[[[122.34921040000006,0.463634400000046],[122.35131210000009,0.465496100000053],[122.3498714000001,0.467937100000029],[122.34650870000007,0.466409500000054],[122.346917,0.464406900000029],[122.34921040000006,0.463634400000046]]],[[[122.36382950000007,0.474948100000063],[122.36188490000006,0.474904300000048],[122.35927210000011,0.470854900000063],[122.35549440000011,0.470175500000039],[122.35485370000004,0.467885200000069],[122.35820430000001,0.467037700000049],[122.36327820000008,0.470187200000055],[122.366105,0.473348800000053],[122.36580850000007,0.474876300000062],[122.36382950000007,0.474948100000063]]],[[[122.12972320000006,0.48023470000004],[122.1246863,0.481493800000067],[122.1259583000001,0.476989600000024],[122.13174910000009,0.479192],[122.12972320000006,0.48023470000004]]],[[[122.35561860000007,0.485644300000047],[122.35440210000002,0.485087400000054],[122.35500320000006,0.482796700000051],[122.35632270000008,0.484308500000054],[122.35561860000007,0.485644300000047]]],[[[122.52992150000011,0.500800200000072],[122.5279316000001,0.498782400000039],[122.52470480000011,0.498720100000071],[122.5244,0.496216600000025],[122.52274790000001,0.498092500000041],[122.52130480000005,0.496567700000071],[122.52385780000009,0.491794700000071],[122.528689,0.488462900000059],[122.532058,0.489245900000071],[122.535658,0.494176700000025],[122.53424360000008,0.499403500000028],[122.52992150000011,0.500800200000072]]],[[[122.38658920000012,0.500765100000024],[122.38497930000005,0.499969700000065],[122.3857061000001,0.498675900000023],[122.38703040000007,0.499148],[122.38658920000012,0.500765100000024]]],[[[122.44522930000005,0.501955500000065],[122.44010260000005,0.500034600000049],[122.44369970000002,0.494491700000026],[122.446471,0.49403650000005],[122.45171530000005,0.496217200000046],[122.4506444000001,0.501304900000036],[122.44787630000008,0.501932600000032],[122.44660620000002,0.500197100000037],[122.44522930000005,0.501955500000065]]],[[[122.2480988000001,0.913956700000028],[122.23284510000008,0.909993],[122.22630970000012,0.90482060000005],[122.20937640000011,0.899324900000067],[122.19920660000002,0.899552200000073],[122.1949317000001,0.901325],[122.18331790000002,0.911319800000058],[122.1748344,0.910961500000042],[122.16986880000002,0.913496400000042],[122.16815140000006,0.913492500000075],[122.1594156000001,0.905932],[122.1555327000001,0.90543150000002],[122.14563720000001,0.908396300000049],[122.14293050000003,0.912103100000024],[122.14017820000004,0.912048900000059],[122.13223230000006,0.90559380000002],[122.11742040000001,0.905357500000036],[122.1161863000001,0.906822300000044],[122.11479180000003,0.921488600000032],[122.1092992,0.92477150000002],[122.10896460000004,0.929102],[122.10538550000001,0.933231700000022],[122.09779850000007,0.925566300000071],[122.09359070000005,0.923101100000054],[122.08409690000008,0.920667900000069],[122.07929680000007,0.905499100000043],[122.07691000000011,0.903975800000069],[122.0807072,0.89774790000007],[122.08753320000005,0.893878100000052],[122.08806520000007,0.892116700000031],[122.0879665000001,0.876276200000063],[122.08212,0.860011200000031],[122.08177740000008,0.843585700000062],[122.0857631,0.837293600000066],[122.08995040000002,0.822938700000066],[122.10260540000002,0.822149800000034],[122.114844,0.818658500000026],[122.11587020000002,0.786242700000059],[122.1206896000001,0.728205],[122.12479230000008,0.682869700000026],[122.13265520000004,0.634751600000072],[122.13271070000008,0.611323900000059],[122.13450610000007,0.595537900000068],[122.130921,0.585225200000025],[122.12915310000005,0.566927200000066],[122.12993430000006,0.557117100000028],[122.1247724000001,0.54692730000005],[122.11862760000008,0.542860400000052],[122.121788,0.507853900000043],[122.11947450000002,0.496857800000043],[122.12197820000006,0.493792700000029],[122.12335630000007,0.495915400000058],[122.12443980000012,0.494470900000067],[122.12377660000004,0.492173200000025],[122.1261717000001,0.492867],[122.12517780000007,0.491084700000044],[122.1267279000001,0.492778200000032],[122.12839070000007,0.492344900000035],[122.14749530000006,0.480958600000065],[122.14838420000001,0.477990600000055],[122.14641470000004,0.475664],[122.14799970000001,0.474083],[122.14787070000011,0.470779500000049],[122.15132520000009,0.469341600000064],[122.15187850000007,0.467774500000075],[122.15028080000002,0.46430330000004],[122.14809430000003,0.463110500000028],[122.1513265000001,0.462984900000038],[122.15267510000001,0.461516800000027],[122.15410730000008,0.465168400000039],[122.15242220000005,0.467646400000035],[122.15502220000008,0.470643500000051],[122.1591165000001,0.469321700000023],[122.1645539000001,0.471186600000067],[122.1693504000001,0.468686800000057],[122.1686049000001,0.470510400000023],[122.17075160000002,0.472293600000057],[122.1747524000001,0.472789400000067],[122.17521570000008,0.474328200000059],[122.17792290000011,0.474482400000056],[122.18175480000002,0.477397400000029],[122.18358730000011,0.475161700000058],[122.18436020000001,0.478080300000045],[122.18799180000008,0.477822100000026],[122.19131610000011,0.479836300000045],[122.197664,0.47511860000003],[122.20221020000008,0.474057800000026],[122.22042910000005,0.484379700000034],[122.22493090000012,0.484087200000033],[122.22507450000012,0.482158],[122.2280032000001,0.481634100000065],[122.2281001,0.479884700000071],[122.22887810000009,0.485611],[122.23072380000008,0.485994700000049],[122.23083860000008,0.484645900000032],[122.2336021000001,0.487496800000031],[122.2335862000001,0.486046500000043],[122.23806740000009,0.483962200000065],[122.23346,0.481632500000046],[122.23375720000001,0.479749100000049],[122.23611030000006,0.479804700000045],[122.24025390000008,0.483658500000047],[122.24787580000009,0.481839600000058],[122.25601490000008,0.485783],[122.25740890000009,0.483190400000069],[122.260743,0.482518500000026],[122.26138260000005,0.478967700000055],[122.2649709000001,0.477724800000033],[122.2670137,0.480524900000034],[122.268783,0.474032600000044],[122.27221270000007,0.473906500000055],[122.27259690000005,0.475598],[122.27507120000007,0.473467800000037],[122.275832,0.480187200000046],[122.277506,0.475899],[122.28147760000002,0.474950300000046],[122.28282210000009,0.476503100000059],[122.27983390000009,0.480557],[122.28584020000005,0.478086400000052],[122.29040510000004,0.477983600000073],[122.2935821000001,0.480999200000042],[122.29181290000008,0.482892600000071],[122.28607640000007,0.484541100000058],[122.28465970000002,0.486684700000069],[122.29226930000004,0.486419100000035],[122.29397390000008,0.484831100000065],[122.2993497000001,0.484040500000049],[122.30106200000012,0.484564500000033],[122.30058310000004,0.486864300000036],[122.30476360000011,0.490960900000061],[122.30941130000008,0.491808],[122.3129990000001,0.488818400000071],[122.31603430000007,0.48996580000005],[122.31551280000008,0.491379700000039],[122.31311930000004,0.49135780000006],[122.31215020000002,0.493918200000053],[122.31386370000007,0.496463200000051],[122.31511390000003,0.494300600000031],[122.31771340000012,0.494819100000029],[122.31626250000011,0.504435600000022],[122.31795850000003,0.508394800000076],[122.31883340000002,0.501845],[122.32232380000005,0.498868100000038],[122.32324740000001,0.496259900000041],[122.3220252000001,0.493874],[122.32428390000007,0.492394500000046],[122.32712560000004,0.49287460000005],[122.32887520000008,0.503536300000064],[122.33298490000004,0.504864400000031],[122.33260510000002,0.509573800000055],[122.3339721000001,0.509378300000037],[122.3347563000001,0.506693700000028],[122.33439050000004,0.501347100000032],[122.33887960000004,0.504499600000031],[122.33826240000008,0.507711],[122.3408227000001,0.503656400000068],[122.33515370000009,0.497546100000022],[122.33673710000005,0.497017800000037],[122.33839190000003,0.499182],[122.33822850000001,0.495721900000035],[122.33692810000002,0.495142300000055],[122.33836830000007,0.492292900000052],[122.339756,0.496861100000046],[122.3415682000001,0.496760100000074],[122.34082910000006,0.493153200000052],[122.34377740000002,0.493098700000075],[122.34277550000002,0.49518740000002],[122.34379590000003,0.497745400000042],[122.34418240000002,0.495237400000065],[122.34580240000003,0.495137400000033],[122.34735300000011,0.497300500000051],[122.34980380000002,0.493343800000048],[122.35160220000012,0.494835200000068],[122.35218470000007,0.493076200000075],[122.3528672000001,0.496637400000054],[122.3476839000001,0.50211390000004],[122.34870160000003,0.504776700000036],[122.35281970000005,0.507500400000026],[122.35137670000006,0.509029100000021],[122.3547132000001,0.50741510000006],[122.35394280000003,0.508811500000036],[122.3562002000001,0.510553],[122.35904380000011,0.507125500000029],[122.36080620000007,0.507127300000036],[122.36043820000009,0.505656200000033],[122.36402310000005,0.506848600000069],[122.36183190000008,0.504092],[122.365988,0.502017],[122.37072390000003,0.506728100000032],[122.37150560000009,0.511521100000039],[122.37381090000008,0.511899600000049],[122.37435790000006,0.513871300000062],[122.376431,0.512793300000055],[122.3794679,0.516007700000046],[122.37976980000008,0.518926200000067],[122.38174040000001,0.514476],[122.38356710000005,0.51440580000002],[122.3848815,0.516908400000034],[122.38825190000011,0.513189600000032],[122.39004580000005,0.516481500000054],[122.38869510000006,0.520883800000036],[122.39227920000008,0.517942100000027],[122.39417820000006,0.519632],[122.3954864000001,0.516774700000042],[122.395608,0.519560300000023],[122.399786,0.518243300000051],[122.39977060000001,0.519895900000051],[122.40133,0.519612700000039],[122.40274230000011,0.522341300000051],[122.40390380000008,0.520581100000072],[122.40235010000004,0.519775300000049],[122.40108870000006,0.515706700000067],[122.40362270000003,0.515833],[122.40487990000008,0.518183500000021],[122.40877240000009,0.519784500000071],[122.41052990000003,0.518854500000032],[122.408298,0.515850300000068],[122.4057577000001,0.516492400000061],[122.404786,0.512931600000059],[122.407922,0.510398100000032],[122.40602710000007,0.510719],[122.405468,0.509435900000028],[122.4108897000001,0.510030800000038],[122.41167570000005,0.511684500000058],[122.41312260000007,0.511066200000073],[122.41472940000006,0.514459200000033],[122.41742890000012,0.511444200000028],[122.41575490000002,0.50637340000003],[122.412461,0.505533400000047],[122.41362110000011,0.501875100000063],[122.41911470000002,0.502872800000034],[122.42342230000008,0.50571],[122.4281674,0.504941100000053],[122.43055990000005,0.502621400000066],[122.43269770000006,0.504250600000034],[122.432105,0.501721400000065],[122.43751940000004,0.499992100000043],[122.4397110000001,0.505928500000039],[122.4429434000001,0.504263700000024],[122.4472631000001,0.506445],[122.446801,0.507831100000033],[122.4440174,0.507382100000029],[122.44330360000004,0.509648],[122.4409207000001,0.508755300000075],[122.44062450000001,0.511500100000035],[122.4420129,0.512601],[122.44304680000005,0.51140330000004],[122.44227560000002,0.513830600000063],[122.4444496000001,0.514919500000076],[122.44495030000007,0.512960700000065],[122.44635040000003,0.513247400000068],[122.4457225000001,0.516288],[122.4468591000001,0.51773060000005],[122.44822320000003,0.516445500000032],[122.44813090000002,0.512733700000069],[122.450753,0.509501500000056],[122.44850430000008,0.509369900000024],[122.44983250000007,0.507831700000054],[122.4694316,0.505915200000061],[122.46706870000003,0.50323620000006],[122.46247110000002,0.503465200000051],[122.46233260000008,0.501768900000059],[122.46530060000009,0.501475300000038],[122.47359680000011,0.50331140000003],[122.47578380000004,0.502575600000057],[122.47548770000003,0.505618800000036],[122.4722997,0.506244400000071],[122.47673450000002,0.506924300000037],[122.47835110000005,0.503333800000064],[122.48149490000003,0.501484500000061],[122.4925085000001,0.501031500000067],[122.4963911000001,0.502335900000048],[122.49597,0.507814],[122.49966540000003,0.507016900000053],[122.49979730000007,0.504603100000054],[122.50044260000004,0.505937300000028],[122.5020621000001,0.505149500000073],[122.50275070000009,0.508112200000028],[122.50898990000007,0.512583300000074],[122.51241920000007,0.513317500000028],[122.50563150000005,0.506161200000065],[122.51154840000004,0.502341900000033],[122.51300780000008,0.49800220000003],[122.51488150000012,0.498815500000035],[122.516512,0.497756100000061],[122.51785660000007,0.49962540000007],[122.51334570000006,0.506374200000039],[122.51298,0.509521500000062],[122.51595140000006,0.512848200000064],[122.51729440000008,0.510813900000073],[122.51577640000005,0.511266400000068],[122.516022,0.509383600000035],[122.51995390000002,0.501735],[122.52305690000003,0.50536070000004],[122.52549240000008,0.50350560000004],[122.52638470000011,0.505971300000056],[122.52767280000012,0.505165600000055],[122.52847880000002,0.506719500000031],[122.53276310000001,0.500732],[122.534639,0.502098200000034],[122.53444610000008,0.504982200000029],[122.53709930000002,0.503289100000075],[122.54417910000006,0.508136100000058],[122.54701190000003,0.504976400000032],[122.54351620000011,0.503025900000068],[122.543855,0.501313700000026],[122.54034070000012,0.494631],[122.54181750000009,0.491247600000065],[122.54576470000006,0.490273700000046],[122.55271940000011,0.49219510000006],[122.55658860000005,0.496236100000033],[122.55781790000003,0.50025990000006],[122.55516630000011,0.506879300000037],[122.55156870000008,0.506847400000026],[122.54979440000011,0.508584800000051],[122.55221440000003,0.51154],[122.55248340000003,0.514299],[122.55692770000007,0.514476],[122.5580159000001,0.51197570000005],[122.55970830000001,0.513470600000062],[122.5665007,0.514064700000063],[122.56995440000003,0.508620600000029],[122.56295420000004,0.505157700000041],[122.56030810000004,0.502298900000028],[122.56060610000009,0.499708500000054],[122.56730620000008,0.49435150000005],[122.56851250000011,0.496484900000041],[122.57560230000001,0.49563390000003],[122.578187,0.493090500000051],[122.58269140000004,0.493793],[122.586611,0.497375900000065],[122.58967920000009,0.496263500000055],[122.59062490000008,0.499828900000068],[122.5949647000001,0.503245700000036],[122.594037,0.505654],[122.58619560000011,0.508395800000073],[122.58449690000009,0.509895],[122.58517490000008,0.511256500000059],[122.59549830000003,0.50738780000006],[122.59957040000006,0.509102900000073],[122.60018060000004,0.51302940000005],[122.60254220000002,0.509288900000058],[122.60205370000006,0.507218600000044],[122.60570320000011,0.507204800000068],[122.60546510000006,0.505428],[122.6000451000001,0.503866900000048],[122.5920291000001,0.498343100000056],[122.59216990000004,0.495793500000048],[122.60126340000011,0.494281300000068],[122.60903180000003,0.487875900000063],[122.6154299000001,0.490204200000051],[122.61466580000001,0.493142700000021],[122.61686580000003,0.493593900000064],[122.61982950000004,0.497888],[122.6200361000001,0.495345800000052],[122.617368,0.491758400000037],[122.618097,0.489732],[122.62371970000004,0.486730200000068],[122.63014420000002,0.487407900000051],[122.63560740000003,0.485764900000049],[122.64349830000003,0.476198],[122.6534392000001,0.485979900000075],[122.65316690000009,0.489300400000047],[122.65548790000003,0.49465790000005],[122.6505658000001,0.501514200000031],[122.64996380000002,0.508857300000045],[122.64834630000007,0.509755400000074],[122.647071,0.515014800000074],[122.64902350000011,0.517143500000032],[122.64711740000007,0.519004100000075],[122.64739670000006,0.521343],[122.64332560000003,0.527309900000034],[122.638251,0.530589900000052],[122.6369767000001,0.534666700000059],[122.62940540000011,0.534206],[122.6283896000001,0.540018800000041],[122.63395150000008,0.548613],[122.63163630000008,0.553354],[122.63331940000012,0.561266800000055],[122.63917860000004,0.563478700000076],[122.63946150000004,0.566465300000061],[122.636927,0.568075],[122.6340550000001,0.576221600000054],[122.63132960000007,0.577612300000055],[122.63240270000006,0.581996300000071],[122.63096380000002,0.583755300000064],[122.62780140000007,0.583634400000051],[122.63123130000008,0.587145600000042],[122.63149190000001,0.589331500000071],[122.62329430000011,0.592579100000023],[122.62212780000004,0.597267800000054],[122.6196083000001,0.595819900000038],[122.617385,0.596567200000038],[122.61755490000007,0.600870900000075],[122.61161530000004,0.607226400000059],[122.60816280000006,0.623662200000069],[122.6058743000001,0.624935300000061],[122.60520880000001,0.628120700000068],[122.60200220000002,0.631235900000036],[122.6030144,0.632518300000072],[122.60658690000002,0.632464700000071],[122.60258930000009,0.635674300000062],[122.60390490000009,0.64082970000004],[122.5954316000001,0.639025],[122.59977230000004,0.642941600000029],[122.60146490000011,0.649702800000057],[122.599971,0.650100400000042],[122.5979099000001,0.647412100000054],[122.5949802,0.647811700000034],[122.59488450000003,0.64957140000007],[122.59796040000003,0.651225700000055],[122.59481360000007,0.653275700000052],[122.59431130000007,0.656892],[122.59244230000002,0.652959800000076],[122.58831430000009,0.653255],[122.58917280000003,0.658854],[122.58765280000011,0.659040300000072],[122.5864815000001,0.656071300000065],[122.58464490000006,0.657054300000027],[122.58615250000003,0.662589500000024],[122.58119770000008,0.659785200000044],[122.57987960000003,0.655776200000048],[122.57817540000008,0.656706500000041],[122.5784268000001,0.662409],[122.57147670000006,0.659469],[122.56903350000005,0.660157800000036],[122.56662560000007,0.664595500000075],[122.56841670000006,0.665146600000071],[122.5705809000001,0.663110500000073],[122.57200090000003,0.664776300000028],[122.56972750000011,0.66638260000002],[122.56893810000008,0.66973710000002],[122.56570860000011,0.670431600000029],[122.5629934000001,0.672922300000039],[122.56686130000003,0.676583900000026],[122.563936,0.677337400000056],[122.55615870000008,0.683371400000055],[122.55157970000005,0.690906600000062],[122.546947,0.691461],[122.547525,0.699182400000041],[122.54632,0.70076750000004],[122.54034750000005,0.694423300000039],[122.53880790000005,0.697050900000022],[122.5422175000001,0.698495900000069],[122.54204240000001,0.70081220000003],[122.53237420000005,0.700451800000053],[122.52722840000001,0.703060500000049],[122.52598480000006,0.706436500000052],[122.52127980000012,0.704606100000035],[122.52035350000006,0.706533300000046],[122.52159490000008,0.70973390000006],[122.51921080000011,0.712460800000031],[122.51418690000003,0.706804500000032],[122.51248930000008,0.70820580000003],[122.512193,0.713514300000043],[122.51098390000004,0.714624],[122.50681210000005,0.708795900000041],[122.50395380000009,0.715747300000032],[122.50528780000002,0.718494700000065],[122.50244220000002,0.718156200000067],[122.49913630000003,0.720292400000062],[122.49706050000009,0.719553200000064],[122.49722570000006,0.724904300000048],[122.493423,0.728394],[122.49813130000007,0.730077],[122.50166980000006,0.733862400000021],[122.50149210000006,0.735491500000023],[122.49791850000008,0.736115300000051],[122.4932745000001,0.740019200000063],[122.4920737000001,0.739199600000063],[122.491923,0.73565160000004],[122.48949710000011,0.73495680000002],[122.485607,0.741826300000071],[122.48437250000006,0.736432600000057],[122.48172470000009,0.735026700000049],[122.48058090000006,0.737657100000035],[122.48085670000012,0.747434],[122.47893720000002,0.746684900000048],[122.47944120000011,0.743363700000032],[122.4775747000001,0.742873300000042],[122.46868330000007,0.75071070000007],[122.47018040000012,0.75513060000003],[122.46452820000002,0.758247600000061],[122.46137380000005,0.756543800000031],[122.45697990000008,0.756626200000028],[122.45302560000005,0.754306600000064],[122.449395,0.757077700000025],[122.44775750000008,0.761807500000032],[122.44362150000006,0.765251700000022],[122.4398311000001,0.761512],[122.43640610000011,0.761474400000054],[122.43684270000006,0.75739550000003],[122.43259660000001,0.758802200000048],[122.4302302000001,0.755460400000061],[122.42746330000011,0.759796800000061],[122.420557,0.75701220000002],[122.41517440000007,0.762015200000064],[122.410238,0.764118900000028],[122.40887120000002,0.763799900000038],[122.4086105,0.757924500000058],[122.4023496000001,0.763621400000034],[122.39860340000007,0.761105400000019],[122.39414510000006,0.767432800000051],[122.39466340000001,0.77297260000006],[122.39232590000006,0.770358200000032],[122.3907455000001,0.770693],[122.3807402000001,0.777414400000055],[122.38046810000003,0.780757100000073],[122.37660960000005,0.77823630000006],[122.37358260000008,0.780934400000035],[122.36971470000003,0.779717600000026],[122.36437650000005,0.78299590000006],[122.35862830000008,0.782598500000063],[122.356062,0.787204900000063],[122.35189330000003,0.788647200000071],[122.34948960000008,0.792053100000032],[122.342683,0.792487600000072],[122.34072120000008,0.794948200000022],[122.33639770000002,0.792521200000067],[122.33469580000008,0.794565200000022],[122.33227750000003,0.792972500000076],[122.32782580000003,0.794617600000038],[122.3266671,0.792854900000066],[122.32506080000007,0.795247700000061],[122.32161450000001,0.794541300000049],[122.32040530000006,0.796205400000019],[122.31627950000006,0.796234200000072],[122.31597340000008,0.794445800000062],[122.31096660000003,0.793778900000063],[122.30166740000004,0.789259500000071],[122.3045833000001,0.787963800000057],[122.30262420000008,0.786213100000055],[122.29721590000008,0.785612900000046],[122.2949192000001,0.786933200000021],[122.29213940000011,0.783800300000053],[122.29053060000001,0.785622600000067],[122.2838756000001,0.784505900000056],[122.28423260000011,0.782410600000048],[122.28245020000008,0.77971180000003],[122.2805565000001,0.781752600000061],[122.27843410000003,0.780419600000073],[122.27228130000003,0.781098200000031],[122.27221910000003,0.783448600000042],[122.27444070000001,0.784836400000074],[122.26776930000005,0.784441],[122.26129220000007,0.791785900000036],[122.25822660000006,0.79171180000003],[122.25583390000008,0.794932600000038],[122.25118350000002,0.790990100000045],[122.25266150000004,0.795091700000057],[122.25033890000009,0.799575400000037],[122.25275590000001,0.799826600000074],[122.252815,0.801284700000053],[122.24963090000006,0.803743],[122.25054910000006,0.807363],[122.24811350000004,0.809568700000057],[122.24793120000004,0.812398100000053],[122.24546730000009,0.811858],[122.244982,0.813216500000067],[122.2478049,0.814653200000066],[122.24680440000009,0.816260700000043],[122.24762220000002,0.820801],[122.25215650000007,0.822756800000036],[122.25389030000008,0.825089600000069],[122.25270730000011,0.826906300000076],[122.24983720000012,0.826322300000072],[122.24937840000007,0.828102200000046],[122.2512551000001,0.829115400000035],[122.25028750000001,0.831442600000059],[122.25277620000008,0.833709100000021],[122.25292130000003,0.835957],[122.25519430000008,0.836576],[122.25508030000003,0.833977100000027],[122.25649220000003,0.836063200000069],[122.25469,0.839264900000046],[122.25669620000008,0.839204500000051],[122.26074480000011,0.84321650000004],[122.26415390000011,0.844244500000059],[122.25975690000007,0.845553800000062],[122.25764350000009,0.847822800000074],[122.253113,0.847149600000023],[122.2524820000001,0.851087],[122.247633,0.85363],[122.24819040000011,0.855347800000061],[122.25221150000004,0.857031400000039],[122.25195250000002,0.859125],[122.25540680000006,0.863021100000026],[122.25484370000004,0.86475310000003],[122.25223770000002,0.865301600000066],[122.25100540000005,0.869460900000036],[122.25365670000008,0.870882900000026],[122.254946,0.873732300000029],[122.24771410000005,0.886628700000074],[122.24475840000002,0.900582900000074],[122.2480988000001,0.913956700000028]]]]},"properties":{"shapeName":"Boalemo","shapeISO":"","shapeID":"22746128B83742682758058","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[106.99397290000007,-6.367133699999954],[106.98806780000007,-6.363652799999954],[106.97972920000007,-6.364279299999964],[106.97917190000004,-6.361946199999977],[106.98194140000004,-6.357862599999976],[106.97843950000004,-6.356841599999939],[106.97678390000004,-6.355122699999981],[106.97707380000008,-6.353251099999966],[106.96997850000008,-6.349535499999945],[106.97263070000008,-6.346660699999973],[106.97003190000004,-6.346407],[106.96804830000008,-6.343018099999938],[106.96618670000004,-6.342419699999937],[106.96863570000005,-6.341450299999963],[106.97148150000004,-6.342945699999973],[106.97573870000008,-6.340936299999953],[106.97574630000008,-6.339444699999945],[106.97283950000008,-6.340076099999976],[106.975464,-6.335207499999967],[106.97248860000008,-6.331926],[106.97409070000003,-6.330133],[106.97523510000008,-6.331782399999952],[106.97696170000006,-6.331386599999973],[106.97633380000008,-6.319182499999954],[106.980858,-6.315075],[106.973282,-6.311603599999955],[106.97084820000003,-6.3023406],[106.96829240000005,-6.303132099999971],[106.96954360000007,-6.302986699999963],[106.96997850000008,-6.305647499999964],[106.96665060000004,-6.303007],[106.96695620000008,-6.305188899999962],[106.96448530000004,-6.305214499999977],[106.96656810000007,-6.306959199999937],[106.96521010000004,-6.307121799999948],[106.96508810000006,-6.310177899999928],[106.96376820000006,-6.310111599999971],[106.964009,-6.308481899999947],[106.961342,-6.308312],[106.96096820000008,-6.309619199999929],[106.96337140000009,-6.312236399999961],[106.96023580000008,-6.312524899999971],[106.960974,-6.315221599999973],[106.96366140000003,-6.316912699999932],[106.960251,-6.3213945],[106.96190660000008,-6.322729199999969],[106.96173880000003,-6.325107199999934],[106.96472950000003,-6.324944099999925],[106.96369190000007,-6.326722199999949],[106.96078220000004,-6.326363299999969],[106.96343250000007,-6.328894199999979],[106.96229570000008,-6.331009499999936],[106.96022820000007,-6.331479599999966],[106.96037310000008,-6.333550099999968],[106.96237960000008,-6.333196199999975],[106.96177690000007,-6.335841699999946],[106.95942710000008,-6.335421199999928],[106.95689410000006,-6.337544],[106.95710010000005,-6.3395043],[106.95282760000003,-6.340188099999978],[106.95464340000007,-6.34441],[106.95025650000008,-6.344151099999976],[106.95213350000006,-6.348633699999937],[106.95400260000008,-6.349453099999948],[106.95332350000007,-6.3511625],[106.95204940000008,-6.349142099999938],[106.95042560000007,-6.350526899999977],[106.952408,-6.3535062],[106.94950880000005,-6.3540855],[106.94735730000008,-6.357559299999934],[106.948662,-6.358650299999965],[106.94621290000003,-6.359419399999979],[106.94704450000006,-6.358204],[106.94390120000008,-6.358025599999962],[106.94382490000004,-6.359596299999964],[106.94713610000008,-6.360190899999964],[106.94393940000003,-6.366423199999929],[106.94505330000004,-6.3662968],[106.94545760000005,-6.368491699999936],[106.94327560000005,-6.369113499999969],[106.94337480000007,-6.367313499999966],[106.94230670000007,-6.367376899999954],[106.94204730000007,-6.369182199999955],[106.93864460000009,-6.370584099999974],[106.93865220000004,-6.372229599999969],[106.94058250000006,-6.371434799999975],[106.93786640000008,-6.374123199999929],[106.93885150000006,-6.375],[106.93777670000009,-6.377407099999971],[106.93307260000006,-6.375833399999976],[106.92973040000004,-6.379998799999953],[106.92951090000008,-6.382310099999927],[106.933766,-6.383556299999952],[106.92922990000005,-6.386208599999975],[106.92652910000004,-6.385491499999944],[106.92581960000007,-6.388285699999926],[106.92467520000008,-6.386166099999969],[106.92322720000004,-6.389883],[106.92179890000006,-6.388900799999931],[106.92076460000004,-6.392713799999967],[106.92297710000008,-6.394430299999954],[106.92145070000004,-6.394718],[106.92095530000006,-6.396948],[106.91884780000004,-6.395603299999948],[106.91826760000004,-6.398231],[106.91609660000006,-6.399744699999928],[106.91815970000005,-6.400571799999966],[106.91595310000008,-6.401262899999949],[106.917069,-6.403695099999936],[106.91583350000008,-6.404936199999952],[106.91721470000005,-6.405603499999927],[106.91505250000006,-6.406617099999949],[106.91721410000008,-6.409099],[106.91466560000003,-6.414962599999967],[106.91449920000008,-6.412801099999967],[106.91291190000004,-6.411936],[106.91069420000008,-6.413576599999942],[106.90849340000005,-6.411593099999948],[106.90798280000007,-6.415164199999936],[106.90534850000006,-6.412663799999962],[106.90607710000006,-6.415634299999965],[106.90409780000005,-6.419028],[106.903247,-6.417977399999927],[106.90045450000008,-6.419072],[106.90027140000007,-6.420613599999967],[106.89896440000007,-6.419777899999929],[106.89866970000008,-6.422540899999944],[106.89996960000008,-6.423032699999965],[106.89912170000008,-6.4260386],[106.89456630000006,-6.424953099999925],[106.89517460000008,-6.427977899999973],[106.89287810000008,-6.426482],[106.89188820000004,-6.4273384],[106.89278130000008,-6.428291299999955],[106.89018220000008,-6.4322965],[106.89170550000006,-6.433965799999953],[106.88821090000005,-6.434697399999948],[106.88756860000007,-6.437318799999957],[106.88601490000008,-6.437312399999939],[106.88540560000007,-6.440628],[106.88726370000006,-6.440554199999951],[106.88706530000007,-6.442905899999971],[106.88508240000004,-6.442194499999971],[106.88513730000005,-6.445507699999951],[106.88246940000005,-6.443681099999935],[106.88215340000005,-6.446701599999926],[106.88340480000005,-6.446598299999948],[106.88382080000008,-6.448716299999944],[106.88094320000005,-6.448276199999952],[106.88303930000006,-6.450017],[106.88200070000005,-6.454149899999948],[106.87882540000004,-6.453552199999933],[106.88198570000009,-6.456677699999943],[106.88024720000004,-6.456166399999972],[106.88035020000007,-6.457652099999962],[106.87859880000008,-6.458590499999957],[106.87882780000007,-6.4573183],[106.87624570000008,-6.458245399999953],[106.87500070000004,-6.455943799999943],[106.85571880000003,-6.456269299999974],[106.85329170000006,-6.4486902],[106.85304040000005,-6.436009399999932],[106.85022080000005,-6.435959299999979],[106.84475370000007,-6.43665],[106.84328080000006,-6.438316],[106.84283360000006,-6.440978499999972],[106.84596480000005,-6.443499599999939],[106.84420950000003,-6.447388699999976],[106.83708560000008,-6.450593],[106.83522910000005,-6.449215099999947],[106.83367070000008,-6.451052699999934],[106.83549470000008,-6.452873499999953],[106.83526460000007,-6.454674899999929],[106.83276070000005,-6.453103499999941],[106.83202770000008,-6.454826199999957],[106.82874730000009,-6.455194],[106.82538340000008,-6.461283099999946],[106.82402390000004,-6.460964],[106.825003,-6.4547583],[106.82117780000004,-6.454136699999935],[106.82056730000005,-6.452301599999942],[106.823646,-6.447399299999972],[106.82308210000008,-6.444290799999976],[106.81635610000006,-6.445032699999956],[106.80503810000005,-6.442827299999976],[106.801589,-6.452040199999942],[106.79320060000003,-6.451794699999937],[106.794061,-6.4416657],[106.78846720000007,-6.440705299999934],[106.78818760000007,-6.438163499999973],[106.78114,-6.43931],[106.76635,-6.43726],[106.75842,-6.43897],[106.73841,-6.43892],[106.73579,-6.4341],[106.73612,-6.43181],[106.73282,-6.4293],[106.73294,-6.42661],[106.73677710000004,-6.424402399999963],[106.73533,-6.42273],[106.73723,-6.41911],[106.73261,-6.4145],[106.73031,-6.41434],[106.73139,-6.40718],[106.73278,-6.40558],[106.73123,-6.40451],[106.73133,-6.40236],[106.72968,-6.40202],[106.73094,-6.39925],[106.72871,-6.39871],[106.72921,-6.39632],[106.72649,-6.39641],[106.72689,-6.39443],[106.72857,-6.3943],[106.72702,-6.38961],[106.72879,-6.3895],[106.7283,-6.38769],[106.72595,-6.38791],[106.72802,-6.38595],[106.72598,-6.38542],[106.72333,-6.38692],[106.72185,-6.38599],[106.72332,-6.38121],[106.72167,-6.37982],[106.72376,-6.37662],[106.72083,-6.37639],[106.72271,-6.37434],[106.71689450000008,-6.369990399999949],[106.718327,-6.367166399999974],[106.71674730000007,-6.365307499999972],[106.72098680000005,-6.363152699999944],[106.72051370000008,-6.360478099999966],[106.71917740000004,-6.362072499999954],[106.71138020000006,-6.360186099999964],[106.66624470000005,-6.3579278],[106.65858480000009,-6.358821399999954],[106.65622730000007,-6.361164099999939],[106.65116030000007,-6.362204],[106.62870050000004,-6.3608708],[106.60339380000005,-6.361899299999948],[106.59809130000008,-6.3587064],[106.59672570000004,-6.359932399999934],[106.59776330000005,-6.362566399999935],[106.59386470000004,-6.3627281],[106.59291860000008,-6.358623899999941],[106.59087390000008,-6.358826099999931],[106.58902760000007,-6.357015499999932],[106.59027890000004,-6.356522499999926],[106.58799770000007,-6.356235899999945],[106.59007290000005,-6.352249599999936],[106.58765430000005,-6.3515501],[106.58853170000003,-6.347480699999949],[106.58727290000007,-6.348288899999943],[106.58239010000005,-6.3458356],[106.58287830000006,-6.3446164],[106.57751490000004,-6.340315299999929],[106.57730890000005,-6.338576299999943],[106.57633230000005,-6.338579099999947],[106.576462,-6.341199299999971],[106.57460050000009,-6.341944599999977],[106.57514980000008,-6.339865599999939],[106.57305930000007,-6.338447499999972],[106.56836720000007,-6.338820899999973],[106.56634540000005,-6.3374786],[106.56394220000004,-6.339595299999928],[106.56033350000007,-6.338638299999957],[106.55923480000007,-6.336999799999944],[106.55931120000008,-6.340109299999938],[106.55789210000006,-6.340592299999969],[106.55628990000008,-6.336268799999971],[106.554024,-6.335036199999934],[106.55183430000005,-6.335967],[106.552048,-6.334052499999927],[106.54879780000005,-6.3338555],[106.551575,-6.333118799999966],[106.54894280000008,-6.332408799999939],[106.54198480000008,-6.334006199999976],[106.54201530000006,-6.332005399999957],[106.54048180000007,-6.333303899999976],[106.53837610000005,-6.330983099999969],[106.53414940000005,-6.3323006],[106.533829,-6.330539599999952],[106.52998380000008,-6.32979],[106.53067040000008,-6.328765799999928],[106.52848080000007,-6.328119699999945],[106.52906060000004,-6.326258099999961],[106.52687860000009,-6.324633499999948],[106.52605460000007,-6.325853699999925],[106.51928740000005,-6.325808499999937],[106.51869220000003,-6.327093499999933],[106.51811240000006,-6.325736],[106.51575490000005,-6.325699199999974],[106.51557950000006,-6.324307799999929],[106.51329830000009,-6.325706399999945],[106.51458760000008,-6.327540299999953],[106.51272610000007,-6.329372799999931],[106.51524380000006,-6.329832899999928],[106.51509880000003,-6.332291099999964],[106.518738,-6.331562899999938],[106.52043180000004,-6.333417399999973],[106.52150750000004,-6.332109399999979],[106.52649710000009,-6.336357499999963],[106.52444480000008,-6.3388757],[106.52827480000008,-6.339386399999967],[106.52995320000008,-6.337597799999969],[106.53188350000005,-6.339636699999971],[106.530411,-6.341283199999964],[106.53137990000005,-6.342922099999953],[106.52839680000005,-6.345214799999951],[106.52969380000008,-6.3468312],[106.52617670000006,-6.349483899999939],[106.52210260000004,-6.350148599999955],[106.52188140000004,-6.352868],[106.51910420000007,-6.355163],[106.51657130000007,-6.353882699999929],[106.51109340000005,-6.355136799999968],[106.50244930000008,-6.346178],[106.50189230000007,-6.353902699999935],[106.49900080000003,-6.355904499999951],[106.47628810000003,-6.350949699999944],[106.47635680000008,-6.344130399999926],[106.48205590000003,-6.344043599999964],[106.483475,-6.342847699999936],[106.48173550000007,-6.334395799999925],[106.48273490000008,-6.332550899999944],[106.481705,-6.332066],[106.48374960000007,-6.331006899999977],[106.48435230000007,-6.328752899999927],[106.48309350000005,-6.326613099999975],[106.48410520000004,-6.325012099999981],[106.483475,-6.322558799999968],[106.48033170000008,-6.3207477],[106.47927120000008,-6.316590699999949],[106.47818780000006,-6.316650299999935],[106.47619780000008,-6.308871899999929],[106.47322490000005,-6.307668],[106.47144390000005,-6.308456499999977],[106.47182310000005,-6.306170699999939],[106.46925380000005,-6.303490099999976],[106.46617910000003,-6.305146099999945],[106.46441680000004,-6.308880199999976],[106.44214650000004,-6.325714],[106.43065670000004,-6.347770599999933],[106.42670470000007,-6.348073799999952],[106.42553740000005,-6.350096099999973],[106.42935970000008,-6.350549099999967],[106.42682670000005,-6.353885],[106.42844420000006,-6.356772799999931],[106.43077110000007,-6.35723],[106.429703,-6.358460799999932],[106.43110680000007,-6.3610214],[106.42982510000007,-6.363017],[106.43199180000005,-6.3668307],[106.42845180000006,-6.369432299999971],[106.42911550000008,-6.3726777],[106.43081690000008,-6.3735035],[106.42742180000005,-6.376501899999937],[106.43192320000009,-6.376958699999932],[106.433861,-6.3849681],[106.43797330000007,-6.387895],[106.43528010000006,-6.3900584],[106.43751550000007,-6.391303899999969],[106.43835470000005,-6.3942917],[106.43485290000007,-6.3922848],[106.434212,-6.394164399999966],[106.44000270000004,-6.397694899999976],[106.44204740000004,-6.396315899999934],[106.44175750000005,-6.398211299999957],[106.438164,-6.399560299999962],[106.43930840000007,-6.404442699999947],[106.44398520000004,-6.404811799999948],[106.444237,-6.407905899999946],[106.44704460000008,-6.410662099999968],[106.45100430000008,-6.407012799999961],[106.45159940000008,-6.409293499999933],[106.44993620000008,-6.412983799999949],[106.45394160000006,-6.4138139],[106.45404080000009,-6.418692],[106.44630460000008,-6.419287599999961],[106.44457270000004,-6.422300199999938],[106.44631220000008,-6.423129899999935],[106.449631,-6.421277399999951],[106.454674,-6.426913599999978],[106.44994380000009,-6.426909799999976],[106.45294210000009,-6.428448499999945],[106.44800590000006,-6.430322499999932],[106.45027950000008,-6.434071399999937],[106.44640370000008,-6.4352964],[106.44644190000008,-6.4368118],[106.44395470000006,-6.4381403],[106.44360520000004,-6.441095599999926],[106.44099450000004,-6.441278299999965],[106.43790460000008,-6.444242399999951],[106.43870570000007,-6.445527],[106.44052910000005,-6.444165599999963],[106.44237540000006,-6.445116399999961],[106.439934,-6.450122699999952],[106.42490410000005,-6.449129399999947],[106.406975,-6.453891599999963],[106.40113860000008,-6.452834899999971],[106.40119960000004,-6.4557064],[106.40274840000006,-6.455221499999936],[106.40203880000007,-6.456014499999981],[106.40338920000005,-6.457303899999943],[106.404877,-6.456772199999932],[106.40467860000007,-6.459167299999933],[106.40748620000005,-6.460405699999967],[106.41171290000005,-6.467389399999945],[106.41126280000009,-6.477284299999951],[106.41259790000004,-6.4830679],[106.40966820000006,-6.492591199999936],[106.40598320000004,-6.496398799999952],[106.40348840000007,-6.516551399999969],[106.40537290000009,-6.520421799999951],[106.40480070000007,-6.5220379],[106.40751670000009,-6.523935199999926],[106.40872220000006,-6.534510399999931],[106.41593190000003,-6.544326599999977],[106.42331720000004,-6.550503599999956],[106.41632870000007,-6.559753299999954],[106.42436240000006,-6.5689601],[106.430443,-6.590501199999949],[106.42736080000009,-6.610804899999948],[106.42877220000008,-6.618564899999967],[106.43151880000005,-6.623274699999968],[106.43031340000005,-6.624999899999978],[106.43174770000007,-6.636523599999975],[106.43149590000007,-6.652736499999946],[106.42895530000004,-6.673036899999943],[106.42939020000006,-6.682105399999955],[106.43601250000006,-6.694980899999962],[106.44911220000006,-6.707098299999927],[106.45148490000008,-6.7144521],[106.45062280000008,-6.726855599999965],[106.45383480000004,-6.730781399999955],[106.463196,-6.736881599999947],[106.46663690000008,-6.750909199999967],[106.47553280000005,-6.752205699999934],[106.49839810000009,-6.752184299999954],[106.51469440000005,-6.759558099999936],[106.52477490000007,-6.762330499999962],[106.525689,-6.757565099999965],[106.53328420000008,-6.751484699999935],[106.54793570000004,-6.750786199999936],[106.55993670000004,-6.738283499999966],[106.56081410000007,-6.733482699999968],[106.56662770000008,-6.727717799999937],[106.56860370000004,-6.722629899999959],[106.57411980000006,-6.720202399999948],[106.57585930000005,-6.717398599999967],[106.58017750000005,-6.718589699999939],[106.58274860000006,-6.721862199999975],[106.58474750000005,-6.737238299999945],[106.588959,-6.743731399999945],[106.59907550000008,-6.748796399999947],[106.62295560000007,-6.748986199999933],[106.62998220000009,-6.752228699999932],[106.63174460000005,-6.754997699999933],[106.64229610000007,-6.749022899999943],[106.65605180000006,-6.747749299999953],[106.65769210000008,-6.745022699999936],[106.65601370000007,-6.739310699999976],[106.659096,-6.7317819],[106.66751880000004,-6.736624199999937],[106.67320230000007,-6.731638499999974],[106.67579670000003,-6.737865899999974],[106.68291490000007,-6.7458534],[106.69380970000009,-6.744809099999941],[106.69938680000007,-6.741781199999934],[106.70272090000009,-6.733360299999958],[106.71392080000004,-6.729131199999927],[106.72524280000005,-6.718351299999938],[106.73263480000008,-6.715714499999933],[106.74060080000004,-6.7153167],[106.75778410000004,-6.727546399999937],[106.76272920000008,-6.736211899999944],[106.76429110000004,-6.736779699999943],[106.76649050000009,-6.744336499999974],[106.77249490000008,-6.751189699999941],[106.77756520000008,-6.754759299999932],[106.78667470000005,-6.755947099999958],[106.78804040000006,-6.754135599999927],[106.79318780000006,-6.752614199999925],[106.79789410000006,-6.755188299999929],[106.80131270000004,-6.762912099999937],[106.80724630000009,-6.764336499999956],[106.81444490000007,-6.768708],[106.82267780000006,-6.769601799999975],[106.831293,-6.766999099999964],[106.83734140000007,-6.768861399999935],[106.83870330000008,-6.771453899999926],[106.84457850000007,-6.7758861],[106.85863790000008,-6.776769199999933],[106.86491420000004,-6.778114099999925],[106.87119880000006,-6.7816206],[106.87875960000008,-6.781304199999965],[106.88447230000008,-6.782788899999957],[106.887288,-6.785449099999937],[106.897022,-6.7862037],[106.89976870000004,-6.7881384],[106.90402240000009,-6.788518],[106.92099820000004,-6.786610899999971],[106.92791480000005,-6.781449099999975],[106.93450950000005,-6.768491799999936],[106.94699880000007,-6.760793299999932],[106.95320150000003,-6.760148099999981],[106.95829030000004,-6.761406499999964],[106.96230330000009,-6.764587899999981],[106.96515670000008,-6.7703377],[106.97434250000003,-6.765287],[106.97580740000006,-6.759130499999969],[106.97423570000007,-6.750592799999936],[106.97840590000004,-6.743418899999938],[106.98576170000007,-6.742903899999931],[106.98809650000004,-6.739822099999969],[106.98789720000008,-6.730605799999978],[106.99082850000008,-6.735445],[106.99445820000005,-6.738047699999981],[106.99649960000005,-6.737847299999942],[106.99890070000004,-6.731692799999962],[106.998725,-6.7282978],[106.99661180000004,-6.725719199999958],[106.99317160000004,-6.715060799999947],[106.99597140000009,-6.706056699999976],[106.99404180000005,-6.706198399999948],[107.00000020000004,-6.699068599999976],[107.00314350000008,-6.697523699999977],[107.00659190000005,-6.692134399999929],[107.00339520000006,-6.6853596],[106.99505630000004,-6.678484499999968],[106.99095120000004,-6.668471199999942],[107.00038920000009,-6.666523499999926],[107.00613420000008,-6.6681538],[107.00940720000006,-6.664727299999981],[107.01183340000006,-6.664846499999953],[107.01589220000005,-6.667966899999954],[107.02543660000003,-6.662424599999952],[107.03314220000004,-6.662932],[107.03531660000004,-6.660541599999931],[107.03847520000005,-6.660855799999979],[107.04279340000005,-6.656684499999926],[107.04592910000008,-6.656701699999928],[107.04684460000004,-6.658236599999952],[107.05132310000005,-6.656587699999932],[107.05519880000008,-6.659223599999962],[107.06591810000003,-6.662019799999939],[107.06851980000005,-6.665221299999928],[107.07148,-6.664731599999925],[107.07334150000008,-6.662501899999938],[107.07893390000004,-6.664932399999941],[107.08493060000006,-6.664931399999944],[107.08625050000006,-6.667184899999938],[107.08868420000005,-6.667453899999941],[107.09696210000004,-6.664042099999961],[107.10037250000005,-6.664440799999966],[107.102477,-6.6667572],[107.10417320000005,-6.663846799999931],[107.10621660000004,-6.664913799999965],[107.107979,-6.663910499999929],[107.10986340000005,-6.665930899999978],[107.11316690000007,-6.663548099999957],[107.121071,-6.663283499999977],[107.130211,-6.669806599999959],[107.13462080000005,-6.670463199999972],[107.13767790000009,-6.666792699999974],[107.14033550000005,-6.667272899999944],[107.15044420000004,-6.662951599999928],[107.15161150000006,-6.660031899999979],[107.150345,-6.654133399999978],[107.15254990000005,-6.649833299999955],[107.15805070000005,-6.650084599999957],[107.15773790000009,-6.647496799999942],[107.160248,-6.6455094],[107.16504680000008,-6.646964199999957],[107.16902940000006,-6.643344499999955],[107.16816730000005,-6.641071499999953],[107.16972360000005,-6.638850799999943],[107.17968,-6.6464974],[107.192177,-6.645480799999973],[107.20266740000005,-6.640502599999934],[107.21507280000009,-6.637297299999943],[107.21300520000005,-6.630593],[107.21459210000006,-6.620125],[107.21882640000007,-6.614388099999928],[107.22200790000005,-6.6124932],[107.22711180000005,-6.602095499999962],[107.22051250000004,-6.590748899999937],[107.21351640000006,-6.590497699999958],[107.20784770000006,-6.588303199999928],[107.19310770000004,-6.578285799999946],[107.19077310000006,-6.5716983],[107.18959060000009,-6.561612199999956],[107.18596660000009,-6.560838799999942],[107.18433390000007,-6.555554],[107.17868820000007,-6.551972499999977],[107.178116,-6.540351099999953],[107.17596450000008,-6.536622699999953],[107.17654430000005,-6.532977699999947],[107.17451490000008,-6.532745499999976],[107.17516340000009,-6.529457199999968],[107.17124950000004,-6.523172],[107.16928880000006,-6.522824],[107.16854110000008,-6.517237299999977],[107.16639720000006,-6.516124799999943],[107.16780870000008,-6.514503099999956],[107.16757980000006,-6.511335499999973],[107.16474930000004,-6.510863899999947],[107.16460430000006,-6.500945199999933],[107.16660320000005,-6.4972044],[107.17005930000005,-6.496563099999946],[107.16972370000008,-6.492325899999969],[107.17438520000007,-6.490553],[107.17377490000007,-6.484410899999943],[107.17167570000004,-6.482019399999956],[107.17084630000005,-6.480668299999934],[107.15968340000006,-6.478255899999965],[107.15613570000005,-6.474626699999931],[107.15187090000006,-6.474224199999981],[107.14664470000008,-6.471608799999956],[107.14559950000006,-6.473295299999961],[107.14083880000004,-6.471645],[107.13481150000007,-6.466070799999954],[107.128586,-6.465746],[107.12272160000003,-6.467378799999949],[107.12595760000005,-6.459173],[107.12039110000006,-6.459010899999953],[107.11695870000005,-6.4621186],[107.10750590000004,-6.462338599999953],[107.10601820000005,-6.458472799999981],[107.09965530000005,-6.453660099999979],[107.08003130000009,-6.448878],[107.08079540000006,-6.444074699999931],[107.06807730000008,-6.437832499999956],[107.06674210000006,-6.4356786],[107.06272140000004,-6.433775],[107.05915090000008,-6.4362732],[107.05538190000004,-6.435730599999943],[107.05526750000007,-6.434757299999944],[107.05943320000006,-6.433568099999945],[107.05781570000005,-6.4296309],[107.05455030000007,-6.429301799999962],[107.058922,-6.426730299999974],[107.05715960000003,-6.424201599999947],[107.05841080000005,-6.423073399999964],[107.05669420000004,-6.422349099999963],[107.05641950000006,-6.417622699999981],[107.05455030000007,-6.419395099999974],[107.05516070000004,-6.420716399999947],[107.05120870000007,-6.417232199999944],[107.05221570000003,-6.415352899999959],[107.055443,-6.415547899999979],[107.05549640000004,-6.4165898],[107.05764790000006,-6.415599],[107.05437490000008,-6.412650199999973],[107.05833450000006,-6.410524499999951],[107.05683150000004,-6.4070746],[107.05438250000009,-6.406795599999953],[107.054474,-6.4051186],[107.05699170000008,-6.402908899999943],[107.05897540000007,-6.403052399999979],[107.05879990000005,-6.4007717],[107.06127180000004,-6.401500799999951],[107.06208820000006,-6.399514299999964],[107.05152650000008,-6.394258199999967],[107.04830190000007,-6.396420599999942],[107.04610460000004,-6.402846899999929],[107.041527,-6.4069396],[107.03829210000004,-6.405292599999939],[107.03538530000009,-6.405669299999943],[107.03071390000008,-6.411526799999933],[107.02961080000006,-6.409962099999973],[107.02685420000006,-6.410270399999945],[107.02682870000007,-6.409009099999935],[107.02320220000007,-6.4096695],[107.02312380000006,-6.404207799999938],[107.02023330000009,-6.403978499999937],[107.02004260000007,-6.400470299999938],[107.01027060000007,-6.402571299999977],[107.00848410000003,-6.395854099999951],[107.01110090000009,-6.391941199999962],[107.00477620000004,-6.387862299999938],[107.00648510000008,-6.383686599999976],[107.00585190000004,-6.378164399999946],[107.00115980000004,-6.379277799999954],[106.99568190000008,-6.378625],[106.99302690000007,-6.370531199999959],[106.99397290000007,-6.367133699999954]],[[106.77890460000003,-6.511734899999965],[106.781747,-6.5109634],[106.78346940000006,-6.515082799999959],[106.78643880000004,-6.514791899999977],[106.78876650000007,-6.518153199999972],[106.78946330000008,-6.527706699999953],[106.790587,-6.526553199999967],[106.79321460000006,-6.532219399999974],[106.79179030000006,-6.5376988],[106.79323680000005,-6.546022199999925],[106.79524120000008,-6.547092799999973],[106.79921810000008,-6.546523099999945],[106.79915810000006,-6.543791499999941],[106.805665,-6.5398831],[106.80544090000006,-6.545434],[106.80889710000008,-6.546061799999961],[106.81136970000006,-6.539340599999946],[106.81837230000008,-6.538134099999979],[106.81818360000005,-6.542594599999973],[106.822876,-6.543626699999948],[106.82354030000005,-6.5424874],[106.82445540000003,-6.5455523],[106.82568290000006,-6.543961599999932],[106.82591880000007,-6.547391699999935],[106.82904830000007,-6.550139399999978],[106.82992710000008,-6.560560799999962],[106.83396710000005,-6.565915599999926],[106.83717370000005,-6.577848],[106.83956690000008,-6.574751299999946],[106.83137530000005,-6.602687399999979],[106.83193220000004,-6.612977],[106.83364120000005,-6.618329499999959],[106.838875,-6.630939],[106.84690950000004,-6.642173499999956],[106.84862710000004,-6.64667],[106.848517,-6.6515841],[106.84517470000009,-6.661483399999952],[106.84811420000005,-6.676239],[106.84336720000005,-6.678800699999954],[106.83978780000007,-6.679584699999964],[106.83421830000009,-6.677660599999967],[106.83044450000006,-6.679191099999969],[106.81909960000007,-6.6719494],[106.81851980000005,-6.666361799999947],[106.81632250000007,-6.665552099999957],[106.81562820000005,-6.661324],[106.80880760000008,-6.656303899999955],[106.80839560000004,-6.652404799999942],[106.81056230000007,-6.649079799999981],[106.80971130000006,-6.646207],[106.80606990000007,-6.651867],[106.80390570000009,-6.651732799999934],[106.80523820000008,-6.648979099999963],[106.80135190000004,-6.648365399999932],[106.799392,-6.645677399999954],[106.79489830000006,-6.649347399999954],[106.79251070000004,-6.653590599999973],[106.79058090000007,-6.653136699999948],[106.786957,-6.659218299999964],[106.78302020000007,-6.658916499999975],[106.77164480000005,-6.653687899999966],[106.78295980000007,-6.644992599999966],[106.78620650000005,-6.633978299999967],[106.79029,-6.6277796],[106.78878920000005,-6.625218199999949],[106.786371,-6.624754099999961],[106.78562470000008,-6.621546899999942],[106.78432670000007,-6.621100299999966],[106.78369880000008,-6.616025299999933],[106.78170780000005,-6.612228099999925],[106.779892,-6.612849799999935],[106.77913690000008,-6.607469099999946],[106.77542890000007,-6.606699499999934],[106.77458090000005,-6.6004511],[106.77147890000003,-6.598732699999971],[106.77017880000005,-6.59578],[106.76660440000006,-6.594771499999979],[106.76313340000007,-6.583105599999953],[106.76073640000004,-6.582340599999952],[106.74982280000006,-6.572345799999937],[106.74563790000008,-6.574395399999958],[106.74454940000004,-6.573657899999944],[106.74452320000006,-6.576278099999968],[106.74105060000005,-6.575363899999957],[106.73845970000008,-6.571042399999953],[106.74159320000007,-6.570083699999941],[106.742266,-6.568290599999955],[106.74042160000005,-6.568230599999936],[106.73987890000006,-6.566116299999976],[106.73542570000006,-6.565329399999939],[106.73570250000006,-6.554569799999967],[106.73801180000004,-6.5548479],[106.73675940000004,-6.552735],[106.74082970000006,-6.542840499999954],[106.74682640000009,-6.543672599999979],[106.74802420000009,-6.547812],[106.74977130000008,-6.547256499999946],[106.75189230000007,-6.550980599999946],[106.75489470000008,-6.548306099999934],[106.75641250000007,-6.551823499999955],[106.75928590000007,-6.549451699999963],[106.75884530000008,-6.548048799999947],[106.76073270000006,-6.549855799999932],[106.76044640000003,-6.5471149],[106.76462090000007,-6.5458536],[106.76449070000007,-6.531001899999978],[106.76632370000004,-6.527267699999925],[106.76462390000006,-6.525095499999964],[106.76486040000009,-6.521028199999932],[106.76740280000007,-6.5159321],[106.77341,-6.515227299999935],[106.77239940000004,-6.512453899999969],[106.77890460000003,-6.511734899999965]]]},"properties":{"shapeName":"Bogor","shapeISO":"","shapeID":"22746128B17406575323949","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[111.46181870000004,-7.362291299999981],[111.46720880000004,-7.361859299999935],[111.46652980000005,-7.359941],[111.47209170000008,-7.357414699999936],[111.47391510000006,-7.357435599999974],[111.47571560000006,-7.359635299999979],[111.47746020000005,-7.359510099999966],[111.47711270000008,-7.358467599999926],[111.482412,-7.359278499999959],[111.48515320000007,-7.358177099999978],[111.488266,-7.360189399999967],[111.49705010000008,-7.361224299999947],[111.50138160000006,-7.3632983],[111.50594330000007,-7.361741],[111.51354220000007,-7.362896399999954],[111.51940150000007,-7.366115],[111.52354430000008,-7.371512899999971],[111.52785490000008,-7.372189],[111.54040240000006,-7.369425399999955],[111.54299070000008,-7.366530799999964],[111.55967650000008,-7.363481099999944],[111.561264,-7.358351199999959],[111.56317140000004,-7.357601599999953],[111.56647490000006,-7.359950499999968],[111.56713870000004,-7.355308],[111.574913,-7.348562199999947],[111.58013920000008,-7.354706699999952],[111.58348850000004,-7.352934299999959],[111.59166710000005,-7.3570661],[111.59272760000005,-7.359108399999968],[111.59624480000008,-7.358935799999927],[111.60493470000006,-7.363618299999928],[111.60726930000004,-7.366765899999962],[111.61009210000009,-7.3678426],[111.61125180000005,-7.370627399999933],[111.61378480000008,-7.369805299999939],[111.61532590000007,-7.372191899999962],[111.61438750000008,-7.375801499999966],[111.61627960000004,-7.379399699999965],[111.62351990000008,-7.3822288],[111.630722,-7.389739499999962],[111.65470890000006,-7.399127899999939],[111.67121890000004,-7.4095425],[111.68453980000004,-7.416615899999954],[111.71086120000007,-7.436645899999974],[111.71670530000006,-7.443213899999932],[111.72718050000009,-7.448848699999928],[111.73731230000004,-7.450903799999935],[111.74629210000006,-7.454985099999931],[111.75112150000007,-7.459290399999929],[111.75727080000007,-7.461837199999934],[111.76731110000009,-7.468756599999949],[111.77372740000004,-7.469328799999971],[111.800415,-7.461098099999958],[111.80525210000008,-7.454309899999942],[111.81487270000008,-7.450680699999964],[111.82099910000005,-7.439554599999951],[111.82820890000005,-7.440618899999947],[111.84460450000006,-7.439828299999931],[111.86157220000007,-7.435905899999966],[111.86788170000005,-7.439303799999948],[111.87763210000008,-7.4409656],[111.88237760000004,-7.437360199999944],[111.89392090000007,-7.437730699999975],[111.90535730000005,-7.433322399999952],[111.92295830000006,-7.435491],[111.93463890000004,-7.440365199999974],[111.940361,-7.440121099999942],[111.94668570000005,-7.4346961],[111.95329340000006,-7.432371399999965],[111.95891430000006,-7.427610199999947],[111.95720770000008,-7.4249755],[111.95846260000008,-7.420682499999941],[111.957695,-7.418284299999925],[111.94644930000004,-7.411237599999936],[111.94242860000008,-7.410962],[111.94154360000005,-7.4092426],[111.94320680000004,-7.409067499999935],[111.94238280000008,-7.407321399999944],[111.94365690000006,-7.406123599999944],[111.95070640000006,-7.407413899999938],[111.958023,-7.413319],[111.96342460000005,-7.408933099999956],[111.96782680000007,-7.4085025],[111.97126,-7.404979599999933],[111.97718810000003,-7.404685899999947],[111.97843170000004,-7.406808299999966],[111.98403930000006,-7.407425799999942],[111.99867250000005,-7.403382699999952],[112.01249690000009,-7.405713499999933],[112.01965330000007,-7.409832899999969],[112.02024080000001,-7.399911299999928],[112.02418510000007,-7.395594],[112.02816770000004,-7.397070799999938],[112.02978510000003,-7.4001765],[112.03171540000005,-7.399766399999976],[112.03517910000005,-7.4018425],[112.04787440000007,-7.399611899999968],[112.04630280000003,-7.393775399999981],[112.0692901000001,-7.397015499999952],[112.07128140000009,-7.391352099999949],[112.07540130000007,-7.387920799999961],[112.07560730000012,-7.383953],[112.08015440000008,-7.3839754],[112.08152770000004,-7.382554899999946],[112.08608640000011,-7.375950799999941],[112.08601770000007,-7.369406699999956],[112.08933650000006,-7.368514499999947],[112.0879179000001,-7.363385599999958],[112.08935940000003,-7.361553199999946],[112.0890045000001,-7.358473199999935],[112.08445870000003,-7.356626799999958],[112.08478940000009,-7.354362899999956],[112.08610170000009,-7.354431099999942],[112.085003,-7.350318299999969],[112.07983790000003,-7.346810699999935],[112.07666410000002,-7.340927],[112.07674230000009,-7.336645],[112.07256710000001,-7.333278499999949],[112.0748367000001,-7.325252],[112.07832730000007,-7.324205199999938],[112.07712550000008,-7.313287699999933],[112.07972710000001,-7.313433099999941],[112.08406060000004,-7.3056969],[112.08581170000002,-7.307849699999963],[112.09003080000002,-7.304021099999943],[112.0872726,-7.302937899999961],[112.09002320000002,-7.298101199999962],[112.0886154000001,-7.293353499999967],[112.08715690000008,-7.2927081],[112.08740990000001,-7.290471499999967],[112.08531650000009,-7.288423299999977],[112.08684170000004,-7.288878699999941],[112.0890237000001,-7.287038499999937],[112.086174,-7.283537799999976],[112.09116360000007,-7.2822246],[112.09010710000007,-7.278303299999948],[112.0916406,-7.277411599999937],[112.09133540000005,-7.274367499999926],[112.09318170000006,-7.2731163],[112.09194580000008,-7.272103],[112.09442540000009,-7.269340199999931],[112.09217830000011,-7.266692599999942],[112.08757020000007,-7.267034],[112.08692930000007,-7.262254599999949],[112.08530420000011,-7.2624196],[112.08434780000005,-7.259602099999938],[112.08533110000008,-7.257431599999961],[112.083851,-7.255018799999959],[112.0880929000001,-7.2530003],[112.08641810000006,-7.250628399999925],[112.08385240000007,-7.250011899999947],[112.08691040000008,-7.247173399999951],[112.0856222000001,-7.244590799999969],[112.08709350000004,-7.244362399999943],[112.08700560000011,-7.242396299999939],[112.08498010000005,-7.242387299999962],[112.08734530000004,-7.241729799999973],[112.08764280000003,-7.238990399999977],[112.08947380000006,-7.2389012],[112.0883371000001,-7.237705699999935],[112.08912650000002,-7.230652299999974],[112.08708190000004,-7.229662299999973],[112.08947750000004,-7.229394399999933],[112.09134310000002,-7.225618299999951],[112.093342,-7.224842499999966],[112.092575,-7.223069099999975],[112.09658050000007,-7.228393],[112.1069480000001,-7.223635299999955],[112.10613030000002,-7.220827],[112.1092149000001,-7.220647499999927],[112.10987090000003,-7.218531499999926],[112.11295310000003,-7.217156799999941],[112.1137619000001,-7.213107],[112.11844630000007,-7.212126599999976],[112.11687870000003,-7.210082899999975],[112.1170806,-7.206932],[112.1211224000001,-7.205632799999933],[112.11917110000002,-7.204479099999958],[112.12074280000002,-7.204152499999964],[112.12023160000001,-7.198729399999934],[112.12336730000004,-7.192956799999934],[112.1221964,-7.191871],[112.12244790000011,-7.187759199999959],[112.1262885000001,-7.183400399999925],[112.12997430000007,-7.183676199999979],[112.1329574,-7.175336299999969],[112.13406370000007,-7.175700599999971],[112.13663480000002,-7.164857299999937],[112.14086320000001,-7.163062099999934],[112.14088890000005,-7.161408],[112.1427824000001,-7.1617188],[112.14301940000007,-7.157505199999946],[112.15147050000007,-7.1579363],[112.15173210000012,-7.1507438],[112.15454790000001,-7.150860499999965],[112.15756980000003,-7.142071199999975],[112.16007230000002,-7.141702099999975],[112.16195670000002,-7.119744199999957],[112.16564170000004,-7.118526399999951],[112.1657791,-7.117148799999939],[112.163992,-7.115082099999938],[112.16007650000006,-7.1159],[112.15454120000004,-7.119654399999945],[112.15333750000002,-7.116641399999935],[112.15454100000011,-7.110118299999954],[112.14612580000005,-7.107024599999932],[112.14691160000007,-7.105140099999971],[112.15183250000007,-7.103160299999956],[112.15155030000005,-7.101025499999935],[112.14752190000002,-7.101232],[112.1418685000001,-7.1047029],[112.13076010000009,-7.096776899999952],[112.12729640000009,-7.098639899999966],[112.12681580000003,-7.106819],[112.12254330000007,-7.108171899999945],[112.11927030000004,-7.103828399999941],[112.11756890000004,-7.096501299999943],[112.12373350000007,-7.092282699999942],[112.12496940000005,-7.090038199999981],[112.12416070000006,-7.08786],[112.115509,-7.089724],[112.10768120000012,-7.0864496],[112.10089110000001,-7.088582899999949],[112.08564750000005,-7.085560699999974],[112.08410640000011,-7.081644],[112.08427620000009,-7.067998799999941],[112.08242030000008,-7.065417699999955],[112.06490440000005,-7.072439],[112.05494810000005,-7.072615],[112.05126970000003,-7.077047099999959],[112.04830930000003,-7.076944799999978],[112.041481,-7.082138899999961],[112.03939810000008,-7.080708899999934],[112.03982540000004,-7.078403399999956],[112.04669950000005,-7.075361199999975],[112.0446167,-7.071659],[112.04225150000002,-7.070370599999933],[112.0390777,-7.071004799999969],[112.03480530000002,-7.0771693],[112.03077690000009,-7.078767199999959],[112.027565,-7.0706381],[112.02323910000007,-7.067668399999945],[112.01994320000006,-7.067400899999939],[112.0160141,-7.069381199999953],[112.01535790000003,-7.072978],[112.01666260000002,-7.077758199999948],[112.02072140000007,-7.083669099999952],[112.02006530000006,-7.088649699999962],[112.01535790000003,-7.092658899999947],[112.0100632000001,-7.094238699999948],[112.00734710000006,-7.093068499999958],[112.00538630000005,-7.094601499999953],[112.00582120000001,-7.096208],[112.01246640000011,-7.099290799999949],[112.01439660000005,-7.101677799999948],[112.01334380000003,-7.103562299999965],[112.00624840000012,-7.105051399999979],[112.00341790000004,-7.108170399999949],[112.0055847000001,-7.116418299999964],[112.0107574000001,-7.125000399999976],[112.01040650000004,-7.13033],[112.00634760000003,-7.131544],[112.00000000000011,-7.125668],[111.997528,-7.121548099999927],[111.99853510000008,-7.115485099999944],[111.99503320000008,-7.114562],[111.99365990000007,-7.127611599999966],[111.98626710000008,-7.138790499999971],[111.98373410000005,-7.148823599999957],[111.98268890000008,-7.154858],[111.98462670000004,-7.1614346],[111.98357390000007,-7.164022399999965],[111.97960660000007,-7.164931699999954],[111.97724910000005,-7.161724499999934],[111.97973630000007,-7.150595099999975],[111.97666170000008,-7.143550799999957],[111.96974180000007,-7.137846399999944],[111.96321870000008,-7.137155],[111.95488730000005,-7.132158699999934],[111.95127860000008,-7.133223499999929],[111.94264980000008,-7.154706899999951],[111.93586730000004,-7.159930599999939],[111.93257140000009,-7.160015499999929],[111.93080140000006,-7.158843899999965],[111.93020630000007,-7.154340699999977],[111.93238060000004,-7.141840399999978],[111.93129730000004,-7.13346],[111.921524,-7.131913099999963],[111.91775510000008,-7.133056599999975],[111.91215510000006,-7.1380033],[111.90718840000005,-7.138004699999954],[111.89904020000006,-7.136618599999963],[111.89706420000005,-7.130198399999927],[111.89372250000008,-7.128481299999976],[111.88438410000003,-7.1281466],[111.88266290000007,-7.1268939],[111.88191220000004,-7.131588399999941],[111.87964630000005,-7.1313958],[111.87913510000004,-7.132603099999926],[111.87677760000008,-7.131154],[111.876868,-7.132809599999973],[111.87117760000007,-7.129903699999943],[111.86782830000004,-7.126414699999941],[111.86655420000005,-7.126883],[111.86828610000003,-7.128867599999978],[111.86643220000008,-7.129024],[111.86465450000009,-7.124216499999932],[111.86312140000007,-7.128834],[111.860064,-7.130214399999943],[111.86133080000008,-7.129231899999979],[111.86113240000009,-7.127990099999977],[111.85919190000004,-7.128061699999932],[111.86032680000005,-7.126882199999955],[111.85989650000005,-7.123946099999955],[111.85800680000006,-7.123748599999942],[111.85659790000005,-7.125791],[111.85494230000006,-7.121835199999964],[111.85630790000005,-7.114820399999928],[111.85440820000008,-7.114853299999936],[111.83866120000005,-7.104125899999929],[111.83330530000006,-7.099363699999969],[111.83393860000007,-7.0978555],[111.83060450000005,-7.095904799999971],[111.82987920000005,-7.092362699999967],[111.826098,-7.090721199999962],[111.82551660000007,-7.0874703],[111.81829830000004,-7.087011],[111.81420180000003,-7.0920448],[111.815323,-7.085792599999934],[111.80874130000007,-7.085849099999962],[111.80773730000004,-7.087742099999957],[111.80655520000005,-7.087152399999979],[111.80748380000006,-7.085616399999935],[111.80164230000008,-7.0851644],[111.79749130000005,-7.086919299999977],[111.79634910000004,-7.082568],[111.78581380000008,-7.079347599999949],[111.77885670000006,-7.080543],[111.77759990000004,-7.0824051],[111.73674780000005,-7.084942699999942],[111.71450590000006,-7.081968699999948],[111.71053310000008,-7.076871299999937],[111.70397950000006,-7.075426099999959],[111.69749450000006,-7.065569799999935],[111.69501490000005,-7.0663347],[111.69230650000009,-7.063542299999938],[111.69515120000005,-7.054358599999944],[111.69235990000004,-7.054948299999978],[111.69133380000005,-7.052876599999934],[111.68718280000007,-7.053855],[111.68043140000009,-7.051466499999947],[111.67679380000004,-7.048554899999942],[111.674057,-7.049889499999949],[111.674675,-7.045358599999929],[111.67301940000004,-7.044782099999964],[111.67180630000007,-7.040576899999962],[111.66011810000003,-7.039155],[111.65579960000008,-7.026234799999941],[111.65753170000005,-7.0142889],[111.65390010000004,-7.010161299999936],[111.65259550000007,-7.000153499999954],[111.64672330000008,-6.996673299999941],[111.63204850000005,-6.993457899999953],[111.62426390000007,-6.989658099999929],[111.62336210000007,-6.987544799999966],[111.62274170000006,-6.986033899999939],[111.62169640000008,-6.986544599999945],[111.62209320000005,-6.9891948],[111.61769860000004,-6.9932379],[111.61496730000005,-7.002351699999963],[111.61540980000007,-7.007164899999964],[111.61299890000004,-7.010746],[111.61522670000005,-7.016937699999971],[111.61471560000007,-7.023095099999978],[111.61331180000008,-7.024643399999945],[111.61603540000004,-7.032228399999951],[111.61340330000007,-7.034968299999946],[111.61412810000007,-7.037453599999935],[111.61631010000008,-7.037520399999948],[111.61650080000004,-7.040804799999933],[111.61859130000005,-7.040113399999939],[111.61728670000008,-7.043085499999961],[111.61939240000004,-7.0467276],[111.61730960000006,-7.047151499999927],[111.61804960000006,-7.050099799999941],[111.62234490000009,-7.050700099999972],[111.62169640000008,-7.053370399999949],[111.62531280000007,-7.052920799999981],[111.62586970000007,-7.054804299999944],[111.62749480000008,-7.053850599999976],[111.62750240000008,-7.055429],[111.62487030000005,-7.056053099999929],[111.62495420000005,-7.0591607],[111.62985990000004,-7.059412899999927],[111.62804410000007,-7.062108899999942],[111.629097,-7.063616199999956],[111.62841790000004,-7.066905399999939],[111.62585450000006,-7.0689263],[111.62674710000005,-7.070418299999972],[111.62555690000005,-7.070944299999951],[111.62817380000007,-7.075404099999957],[111.62581630000005,-7.072834],[111.62460320000008,-7.075498499999981],[111.62404630000009,-7.0739302],[111.62162020000005,-7.075509499999953],[111.62127680000009,-7.074015599999939],[111.61899560000006,-7.073458099999925],[111.61436460000004,-7.078584599999942],[111.61627190000007,-7.082348299999978],[111.61253360000006,-7.082219099999975],[111.61256410000004,-7.084187499999928],[111.61434930000007,-7.085041499999932],[111.612915,-7.087321199999963],[111.61499020000008,-7.090775],[111.61398310000004,-7.092152499999941],[111.61479180000003,-7.096114599999964],[111.61676020000004,-7.097578499999941],[111.61376950000005,-7.098891199999969],[111.61798860000005,-7.106843899999944],[111.62181090000007,-7.108634],[111.62025450000004,-7.110324299999945],[111.61328120000007,-7.110650499999963],[111.61244960000005,-7.114655],[111.61414330000008,-7.114657399999942],[111.61377710000005,-7.116632899999956],[111.61531830000007,-7.116657699999962],[111.61280060000007,-7.120328399999948],[111.61347960000006,-7.122598099999948],[111.61151120000005,-7.121445599999959],[111.611618,-7.1254882],[111.60754390000005,-7.126695099999949],[111.60764310000008,-7.128473699999972],[111.606163,-7.127667799999927],[111.60716240000005,-7.131272799999977],[111.60923760000009,-7.132169699999963],[111.60771940000006,-7.137077699999963],[111.61112970000005,-7.135453599999948],[111.60979460000004,-7.138175399999966],[111.61213680000009,-7.138456799999972],[111.611824,-7.140739899999971],[111.60893250000004,-7.139519699999937],[111.61062620000007,-7.143263299999944],[111.60820770000004,-7.142072599999949],[111.60579680000006,-7.1433291],[111.606987,-7.146809],[111.60127260000007,-7.144640399999957],[111.59854890000008,-7.145377099999962],[111.59864040000008,-7.1552286],[111.589592,-7.162226099999941],[111.58507530000009,-7.169180399999959],[111.58367920000006,-7.175392099999954],[111.58730310000004,-7.185503399999959],[111.57582850000006,-7.188291499999934],[111.56812290000005,-7.185987399999931],[111.56600950000006,-7.187061299999925],[111.56389620000004,-7.190575099999933],[111.56915280000004,-7.198947899999951],[111.56589510000003,-7.207502299999931],[111.55886840000005,-7.206209099999967],[111.55504610000008,-7.201706399999978],[111.54902650000008,-7.205319399999951],[111.54331970000004,-7.213639699999931],[111.53668970000007,-7.215751099999977],[111.53679660000006,-7.218255],[111.54322810000008,-7.224156799999946],[111.54232790000009,-7.227162799999974],[111.52807610000008,-7.227279599999974],[111.52241510000005,-7.237233599999968],[111.51338190000007,-7.238946899999974],[111.50170890000004,-7.248538399999973],[111.48777770000004,-7.243106799999964],[111.48585510000004,-7.246391299999971],[111.48554230000008,-7.250925],[111.49098970000006,-7.2581577],[111.48993680000007,-7.260722099999953],[111.486702,-7.260756],[111.47719570000004,-7.251959299999953],[111.47399140000005,-7.2541041],[111.46911620000009,-7.262264699999946],[111.46550750000006,-7.2632813],[111.46006770000008,-7.261778799999945],[111.45555880000006,-7.258103799999958],[111.45644380000005,-7.249749099999974],[111.45173640000007,-7.248101199999951],[111.45092010000008,-7.274907599999949],[111.44741060000007,-7.275634699999955],[111.44250490000007,-7.267436499999974],[111.43966670000009,-7.267891399999939],[111.43806450000005,-7.269793],[111.43912510000007,-7.273803199999975],[111.44438930000007,-7.278563499999962],[111.44230650000009,-7.283543099999974],[111.44222260000004,-7.2888498],[111.43763730000006,-7.292955799999959],[111.43011470000005,-7.304424199999971],[111.42464450000006,-7.307143599999961],[111.42371370000006,-7.310316],[111.42604060000008,-7.312661599999956],[111.43402860000003,-7.315066799999954],[111.44125360000004,-7.315421499999957],[111.44744870000005,-7.313455],[111.457283,-7.321166],[111.45743560000005,-7.324513399999944],[111.449974,-7.329919799999971],[111.44620510000004,-7.337403299999949],[111.45083620000008,-7.340535099999954],[111.46023560000003,-7.340947599999936],[111.46250910000003,-7.343147199999976],[111.46250910000003,-7.345831299999929],[111.45933530000008,-7.346558499999958],[111.45362090000003,-7.343276899999978],[111.44977570000009,-7.343160099999977],[111.4431,-7.347720599999946],[111.44189450000005,-7.3517933],[111.44365690000006,-7.360085499999968],[111.44498440000007,-7.361170199999947],[111.44689180000006,-7.360745899999927],[111.45006560000007,-7.355223599999931],[111.45550540000005,-7.3521418],[111.45903780000003,-7.352651099999946],[111.46224970000009,-7.357080899999971],[111.46181870000004,-7.362291299999981]]]},"properties":{"shapeName":"Bojonegoro","shapeISO":"","shapeID":"22746128B33380959414680","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[123.81031770000004,0.863436600000057],[123.81005140000002,0.860984200000075],[123.81129510000005,0.860936800000047],[123.81031770000004,0.863436600000057]]],[[[123.80372190000003,0.867586600000038],[123.80496890000006,0.86941580000007],[123.80248830000005,0.871112100000062],[123.80372190000003,0.867586600000038]]],[[[123.78916320000008,0.880665400000055],[123.78696750000006,0.881969100000049],[123.78754090000007,0.876860600000043],[123.78931430000011,0.875604200000055],[123.79090210000004,0.87928990000006],[123.78916320000008,0.880665400000055]]],[[[123.97668990000011,0.902958200000057],[123.97355990000005,0.90303270000004],[123.9753836000001,0.902237900000046],[123.97698520000006,0.898733900000025],[123.97668990000011,0.902958200000057]]],[[[124.29823350000004,1.007235700000024],[124.29705030000002,1.009735700000022],[124.28787760000012,1.003426500000046],[124.27544090000004,0.998956700000065],[124.26247340000009,1.000050400000021],[124.25793190000002,1.002356600000041],[124.25254450000011,0.999943600000051],[124.24395780000009,1.00155680000006],[124.24414890000003,0.99823850000007],[124.2419933000001,0.999373600000069],[124.2371233,0.993552800000032],[124.22883860000002,0.989873100000068],[124.21818370000005,0.99001190000007],[124.21498150000002,0.99298790000006],[124.21251870000003,0.991780500000061],[124.20981540000002,0.987524500000063],[124.20737740000004,0.987106200000028],[124.2031555000001,0.989735100000075],[124.19413220000001,0.984986900000024],[124.193782,0.982737900000075],[124.19071950000011,0.982997900000044],[124.18683980000003,0.977138700000069],[124.18440150000004,0.976116200000035],[124.18400510000004,0.97378],[124.18146910000007,0.973337],[124.18185850000009,0.968546300000071],[124.17872160000002,0.966525300000058],[124.17687790000002,0.963141200000052],[124.17835960000002,0.961204900000041],[124.17587990000004,0.95788170000003],[124.1604473000001,0.946985100000063],[124.1624021,0.946250400000054],[124.15850780000005,0.945548500000029],[124.14771150000001,0.93426],[124.13663520000011,0.92787880000003],[124.11619550000012,0.921372500000075],[124.10134820000007,0.919569600000045],[124.09798460000002,0.919942100000071],[124.09375590000002,0.923106100000041],[124.08825490000004,0.92141410000005],[124.09088280000003,0.924570600000038],[124.07584730000008,0.922584100000051],[124.07495740000002,0.921649500000058],[124.07807910000008,0.922177300000044],[124.07447760000002,0.919052200000067],[124.0746636,0.921167400000058],[124.07160410000006,0.921463800000026],[124.04651,0.909449900000027],[124.0460303000001,0.907086],[124.03197540000008,0.898410300000023],[124.01622370000007,0.89344710000006],[124.001076,0.885478500000033],[123.9741768,0.876756800000067],[123.956486,0.86477960000002],[123.95049190000009,0.862678100000039],[123.93194070000004,0.860144500000047],[123.92947550000008,0.857953800000075],[123.93007320000004,0.854694900000027],[123.93188110000006,0.856486100000041],[123.93586520000008,0.854417800000022],[123.93726840000011,0.855699500000071],[123.94125270000006,0.854954300000031],[123.939157,0.851922800000068],[123.94313010000008,0.848608500000068],[123.94302260000006,0.846040900000048],[123.9521486000001,0.851321800000051],[123.9531866000001,0.845495800000037],[123.9624801000001,0.84543560000003],[123.95926490000011,0.837114600000064],[123.95814940000002,0.838073300000076],[123.9521218000001,0.836465900000064],[123.94427610000002,0.839083300000027],[123.9420689000001,0.836173600000052],[123.93686430000002,0.834049],[123.93491160000008,0.835643800000071],[123.93291240000008,0.842261600000029],[123.93126710000001,0.842865700000061],[123.92909280000003,0.839878400000032],[123.92638150000005,0.839762600000029],[123.92497930000002,0.841996],[123.91666150000003,0.846661100000063],[123.91692280000007,0.848171700000023],[123.91343310000002,0.852178900000069],[123.91091990000007,0.846892400000058],[123.89995810000005,0.845154500000035],[123.88009790000001,0.838884700000051],[123.87134260000005,0.838437200000044],[123.85799980000002,0.840085100000067],[123.849453,0.844816900000069],[123.84719730000006,0.844762500000058],[123.84551550000003,0.841295900000034],[123.82720870000003,0.840572400000042],[123.825499,0.841606500000069],[123.82511770000008,0.844905200000028],[123.81869370000004,0.84196350000002],[123.81629280000004,0.844124600000043],[123.81175530000007,0.844931600000052],[123.80665370000008,0.850159800000029],[123.79156320000004,0.855516300000033],[123.79113840000002,0.853978400000074],[123.79301210000006,0.853813200000047],[123.79513960000008,0.849381700000038],[123.80375270000002,0.841732600000057],[123.80402640000011,0.837198900000033],[123.802134,0.834764],[123.7994781000001,0.834819500000037],[123.79707640000004,0.832934100000045],[123.79009850000011,0.833024],[123.78856520000011,0.830125400000043],[123.785509,0.829924600000027],[123.78133790000004,0.831519100000037],[123.78006520000008,0.835272900000064],[123.77771210000003,0.836194900000066],[123.77556630000004,0.840315100000055],[123.769335,0.837589],[123.76278090000005,0.846789800000067],[123.76156030000004,0.85197990000006],[123.75686150000001,0.854953300000034],[123.75480550000009,0.853067700000054],[123.75846120000006,0.848727500000052],[123.75815090000003,0.844893],[123.765341,0.837795200000073],[123.7632853,0.837374500000067],[123.7612653000001,0.833566400000052],[123.75944630000004,0.834921700000052],[123.75607080000009,0.831052400000033],[123.75339680000002,0.831950100000029],[123.75252340000009,0.830650200000036],[123.74554940000007,0.83523150000002],[123.74718710000002,0.837629800000059],[123.7467143,0.843296400000042],[123.74527720000003,0.843864300000064],[123.74493120000011,0.841813600000023],[123.74097670000003,0.84223650000007],[123.74004760000003,0.845447200000024],[123.74320390000003,0.850091],[123.741136,0.853920800000026],[123.74057870000001,0.850982800000054],[123.73662030000003,0.848860300000069],[123.73533580000003,0.857648400000073],[123.73658300000011,0.86523950000003],[123.73252630000002,0.865726700000039],[123.73070080000002,0.862254900000039],[123.73171120000006,0.859166600000037],[123.72306260000005,0.846841600000062],[123.71974780000005,0.834245900000042],[123.72094510000011,0.828767600000049],[123.71954970000002,0.824083200000075],[123.71957070000008,0.81492140000006],[123.72461250000003,0.810769],[123.7307171000001,0.79813310000003],[123.7315003000001,0.779154900000037],[123.7292202000001,0.776150100000052],[123.72789580000006,0.763424300000054],[123.72453660000008,0.754321300000072],[123.71833310000011,0.725178300000039],[123.71981010000002,0.717221900000027],[123.72217190000003,0.712955600000043],[123.72838620000005,0.710482200000058],[123.72852020000005,0.708673200000021],[123.726426,0.707674600000075],[123.7261036000001,0.705703700000072],[123.72919230000002,0.695082500000069],[123.735088,0.691711300000065],[123.7405903,0.684609600000044],[123.740081,0.677593100000024],[123.73751390000007,0.671333400000037],[123.731821,0.667917800000055],[123.7306211,0.663688],[123.72924380000006,0.663342],[123.72969110000008,0.661091200000044],[123.72807260000002,0.658944600000041],[123.7304137000001,0.658182400000044],[123.72941480000009,0.655660200000057],[123.731377,0.653616900000031],[123.72941420000006,0.651158700000053],[123.73044660000005,0.64779980000003],[123.72789890000001,0.648665900000026],[123.72545430000002,0.643691200000035],[123.72572900000011,0.637873900000045],[123.7170708000001,0.635847300000023],[123.7156586000001,0.631865400000038],[123.70844570000008,0.624572400000034],[123.7067492000001,0.618971600000066],[123.7037193000001,0.61772540000004],[123.70056650000004,0.613968900000032],[123.69209650000005,0.611199900000031],[123.67806360000009,0.610781200000019],[123.67084660000012,0.615507800000046],[123.66554470000005,0.617066700000066],[123.65371180000011,0.613538100000028],[123.64415460000009,0.608743700000048],[123.63335720000009,0.600690300000053],[123.63432300000011,0.587950800000044],[123.6417024000001,0.581623800000045],[123.64365350000003,0.573479],[123.64919940000004,0.572624100000041],[123.66007810000008,0.566570100000035],[123.6742177000001,0.565814700000033],[123.68363950000003,0.56258790000004],[123.703961,0.566509300000064],[123.70955740000011,0.570629100000076],[123.71105610000006,0.569473200000061],[123.71170510000002,0.56510140000006],[123.7143029,0.562990500000069],[123.71357230000001,0.547480300000075],[123.71737650000011,0.536592800000051],[123.71917480000002,0.533828800000038],[123.72082360000002,0.533627600000045],[123.721233,0.525900400000069],[123.71613360000003,0.512106800000026],[123.71141110000008,0.504482400000029],[123.700024,0.494904100000042],[123.69588360000012,0.487760800000046],[123.6912536000001,0.485812300000021],[123.69216690000007,0.478235],[123.6911401000001,0.473855700000058],[123.695661,0.464008700000022],[123.69837470000004,0.461027700000045],[123.69859230000009,0.455959],[123.70303960000001,0.455110200000036],[123.70737290000011,0.456347900000026],[123.7127015000001,0.466585100000032],[123.71787250000011,0.463556800000049],[123.721082,0.465202],[123.72462560000008,0.464554600000042],[123.72834810000006,0.46129540000004],[123.738177,0.465205800000035],[123.74116850000007,0.461508700000024],[123.74659210000004,0.460830500000043],[123.74999350000007,0.45705520000007],[123.759916,0.460181600000055],[123.76702440000008,0.454512100000045],[123.77642430000003,0.454804100000047],[123.78006670000002,0.446158100000048],[123.79036340000005,0.442677600000025],[123.79254920000005,0.440406100000075],[123.795464,0.442091],[123.80194910000012,0.441284300000063],[123.80457260000003,0.443921700000033],[123.8140158000001,0.443268700000033],[123.81736790000002,0.445173300000022],[123.82662170000003,0.443267300000059],[123.83378940000011,0.451873600000056],[123.83940040000005,0.45465710000002],[123.84552110000004,0.454583100000036],[123.86007350000011,0.459123100000056],[123.86415350000004,0.455752300000029],[123.8670681000001,0.455678700000021],[123.86896230000002,0.452894400000048],[123.8761032000001,0.453333100000066],[123.87792460000003,0.451428],[123.88120350000008,0.451061200000026],[123.88222330000008,0.448789800000043],[123.88822170000003,0.448454300000037],[123.89128230000006,0.45087170000005],[123.89477980000004,0.450798],[123.9054900000001,0.44347010000007],[123.90439630000003,0.437609],[123.91047650000007,0.434066500000029],[123.91681560000006,0.433186600000056],[123.92184340000006,0.434431500000073],[123.92942090000008,0.431573200000059],[123.93342860000007,0.432818200000042],[123.94010270000001,0.441581300000053],[123.94760770000005,0.442459500000041],[123.94964840000011,0.446195700000033],[123.95030520000012,0.454547800000057],[123.95671780000009,0.458942900000068],[123.97447790000001,0.46308190000002],[123.98241990000008,0.461981800000046],[123.99028930000009,0.463446],[123.99225720000004,0.467988100000071],[124.00174490000006,0.466942300000028],[124.01441450000004,0.473653900000045],[124.0242108000001,0.476873600000033],[124.02588360000004,0.479133],[124.02378130000011,0.480287100000055],[124.02320820000011,0.482546800000023],[124.02617140000007,0.486007800000039],[124.03228790000003,0.486872300000073],[124.03324450000002,0.492929700000047],[124.03766320000011,0.496376200000043],[124.04612120000002,0.497240200000022],[124.04754040000012,0.502455700000041],[124.04608440000004,0.507830800000022],[124.05091930000003,0.512694100000033],[124.06376100000011,0.518759800000055],[124.069632,0.514960900000062],[124.0742011000001,0.513871800000061],[124.08000270000002,0.51762750000006],[124.08172420000005,0.516405600000041],[124.0836670000001,0.517893400000048],[124.09474820000003,0.519246200000055],[124.10255930000005,0.526167600000065],[124.10679720000007,0.524678800000061],[124.1135743000001,0.527609200000029],[124.1158402000001,0.536378],[124.13063090000003,0.544726100000048],[124.132695,0.553628400000036],[124.13761720000002,0.552939],[124.1392297000001,0.558802],[124.14432880000004,0.55951170000003],[124.150373,0.557190600000069],[124.15690730000006,0.560454100000072],[124.15848630000005,0.562801400000069],[124.1605899000001,0.561706700000059],[124.16620410000007,0.556402600000069],[124.166671,0.551496100000065],[124.17096530000003,0.545922100000041],[124.17790980000007,0.542947200000071],[124.18088910000006,0.539229600000056],[124.17641480000009,0.532271600000058],[124.17872810000006,0.523028200000056],[124.18111780000004,0.527463400000045],[124.19458920000011,0.527634200000023],[124.19798850000006,0.530755800000065],[124.21261640000012,0.537951900000053],[124.21773890000009,0.537876500000039],[124.22190130000001,0.539758900000038],[124.2294319,0.539315100000067],[124.23529370000006,0.541643200000067],[124.24576040000011,0.542062300000055],[124.25879610000004,0.545249200000057],[124.26644210000006,0.54245590000005],[124.26956870000004,0.544551600000034],[124.27399730000002,0.544354100000021],[124.28038160000006,0.552738200000022],[124.28246590000003,0.553589400000021],[124.28285710000011,0.555751100000066],[124.28611390000003,0.557453700000053],[124.29210550000005,0.557124800000054],[124.29799570000011,0.562144600000067],[124.30158010000002,0.572887600000058],[124.31050360000006,0.577733300000034],[124.31291420000002,0.581335800000033],[124.32014370000002,0.583037300000058],[124.32223460000012,0.592650300000059],[124.32614410000008,0.600248500000021],[124.33760040000004,0.616915400000039],[124.3370569000001,0.623889],[124.33536450000008,0.627557900000056],[124.33653840000011,0.633846600000027],[124.3390793000001,0.637579900000048],[124.34068660000003,0.648358700000074],[124.33589490000008,0.648024100000043],[124.3349531,0.650971600000048],[124.32850230000008,0.652593400000057],[124.3259892000001,0.656744200000048],[124.32624940000005,0.660850100000062],[124.31847220000009,0.66682430000003],[124.3153089000001,0.667370700000049],[124.31011390000003,0.665847600000063],[124.30924530000004,0.666866],[124.30651650000004,0.66547810000003],[124.30684520000011,0.663364400000034],[124.3044734,0.661988800000074],[124.30139530000008,0.663221800000031],[124.29864020000002,0.662269200000026],[124.29614890000005,0.658295400000043],[124.29335880000008,0.65964230000003],[124.29396570000006,0.673541400000033],[124.28982750000011,0.686122700000055],[124.29153840000004,0.690168300000039],[124.28882830000009,0.698819900000046],[124.28274220000003,0.704307700000072],[124.27481050000006,0.707345900000064],[124.2707196,0.710595600000033],[124.25904550000007,0.705691400000035],[124.2558623000001,0.708718],[124.25667380000004,0.715751900000043],[124.25543430000005,0.730119600000023],[124.258628,0.740289800000028],[124.25725490000002,0.745049200000039],[124.26614,0.751205],[124.26559730000008,0.747775100000069],[124.26687240000001,0.74424810000005],[124.26937950000001,0.743688100000043],[124.28337330000011,0.74644840000002],[124.29284160000009,0.752187800000058],[124.305122,0.753625200000045],[124.30410920000008,0.762131600000032],[124.310633,0.76294310000003],[124.31497450000006,0.765369100000044],[124.31845550000003,0.769107200000064],[124.32053220000012,0.774527600000056],[124.32993780000004,0.769223600000032],[124.3347927000001,0.77012940000003],[124.34639720000007,0.768656600000043],[124.34726740000008,0.764017400000057],[124.35455730000001,0.758142600000042],[124.35604660000001,0.755383],[124.36818620000008,0.75994490000005],[124.38124110000001,0.762454800000057],[124.38419250000004,0.765286800000069],[124.39719690000004,0.768944200000021],[124.40441670000007,0.767450200000042],[124.4101425,0.770082900000034],[124.41577820000009,0.768562800000041],[124.42137720000005,0.78363470000005],[124.42544810000004,0.787083200000041],[124.42894690000003,0.788016300000038],[124.43187580000006,0.792543300000034],[124.43369220000011,0.79254990000004],[124.43358150000006,0.797021],[124.43048890000011,0.795797800000059],[124.42933770000002,0.796918300000073],[124.43016630000011,0.798585100000025],[124.42787730000009,0.801594500000022],[124.42803340000012,0.804472800000042],[124.4237108000001,0.800840500000049],[124.42372450000005,0.802937400000076],[124.41905440000005,0.80493180000002],[124.41869470000006,0.80823330000004],[124.42014390000008,0.812563700000055],[124.42218860000003,0.813722100000064],[124.42658730000005,0.812717700000064],[124.432605,0.816622800000061],[124.43210160000001,0.820009300000038],[124.43514260000006,0.821310700000026],[124.43638550000003,0.823472200000026],[124.43457740000008,0.832629],[124.43068320000009,0.83349],[124.4279663000001,0.836700500000063],[124.42419410000002,0.836880500000063],[124.4237955000001,0.839024],[124.42179870000007,0.839917800000023],[124.42017450000003,0.843181800000025],[124.41678550000006,0.844652900000028],[124.414701,0.848359900000048],[124.40746810000007,0.851041700000053],[124.40564990000007,0.85479330000004],[124.40698920000011,0.859118800000033],[124.39157160000002,0.861937700000055],[124.38681760000009,0.865468400000054],[124.38170690000004,0.866568700000073],[124.37904540000011,0.870231300000057],[124.38051340000004,0.879742100000044],[124.37865020000004,0.882951600000069],[124.3813669000001,0.889197900000056],[124.37860460000002,0.901494400000047],[124.37859830000002,0.912412500000073],[124.37566,0.913504800000055],[124.37636850000001,0.915335300000038],[124.373941,0.91647260000002],[124.37239230000012,0.919792],[124.37039410000011,0.918936],[124.3670442,0.921291100000076],[124.36787980000008,0.92761280000002],[124.3702019000001,0.931715300000064],[124.37007,0.938316800000052],[124.3718176000001,0.939551700000038],[124.370985,0.941256500000065],[124.37258960000008,0.943393300000025],[124.37080860000003,0.948291],[124.37310700000012,0.949065700000062],[124.37289320000002,0.952213200000074],[124.37728330000004,0.952256500000033],[124.3760919,0.957961900000043],[124.37074650000011,0.957450100000074],[124.37302210000007,0.960096],[124.37049090000005,0.963701800000024],[124.36836060000007,0.961299500000052],[124.36503860000005,0.964158700000041],[124.36103770000011,0.963348400000029],[124.36476610000011,0.968575500000043],[124.36216880000006,0.96815440000006],[124.36291310000001,0.973837400000036],[124.36012210000001,0.97335140000007],[124.35733260000006,0.976324100000056],[124.35798000000011,0.981844800000033],[124.35575590000008,0.986782],[124.35159360000011,0.986134200000038],[124.34460980000006,0.989287300000058],[124.34407850000002,0.992015500000036],[124.33923850000008,0.99092950000005],[124.33553060000008,0.988163400000076],[124.3315434000001,0.989653700000019],[124.3290128000001,0.993496],[124.32587290000004,0.995231200000035],[124.32418930000006,0.998298800000043],[124.32467480000003,1.001624600000071],[124.32311520000007,1.002099700000031],[124.3210391,1.000447200000053],[124.31745440000009,1.003687],[124.31860150000011,1.006499800000029],[124.3168147,1.008111],[124.30903720000003,1.005136400000026],[124.30430070000011,1.005747500000041],[124.30558740000004,1.002130700000066],[124.3043067000001,1.001190800000074],[124.29857430000004,1.001418],[124.29733520000002,1.004276100000027],[124.29823350000004,1.007235700000024]]]]},"properties":{"shapeName":"Bolaang Mongondow","shapeISO":"","shapeID":"22746128B17668073847818","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[124.35424400000011,0.418200400000046],[124.3519199000001,0.41963590000006],[124.3497278000001,0.416402],[124.35424400000011,0.418200400000046]]],[[[124.36176890000002,0.419506500000068],[124.36587320000001,0.422848300000055],[124.35963540000012,0.430171600000051],[124.35894250000001,0.428530800000033],[124.36176890000002,0.419506500000068]]],[[[124.4799713000001,0.449485100000061],[124.47723750000011,0.448554900000033],[124.47623820000001,0.445630400000027],[124.47932170000001,0.446260400000028],[124.4799713000001,0.449485100000061]]],[[[124.46150610000007,0.451994800000023],[124.46020080000005,0.451450200000068],[124.46077230000003,0.450047900000072],[124.46325310000009,0.449181900000042],[124.46150610000007,0.451994800000023]]],[[[123.64365350000003,0.573479],[123.63902960000007,0.56923450000005],[123.634283,0.56848130000003],[123.63153450000004,0.564059500000042],[123.61895210000012,0.561494400000072],[123.60731070000008,0.56300310000006],[123.60105090000002,0.570019],[123.59810370000002,0.576250500000071],[123.59058530000004,0.582456800000045],[123.58778780000011,0.586828900000057],[123.58329060000005,0.583161100000041],[123.56986140000004,0.582295600000066],[123.5654641000001,0.577672900000039],[123.55996820000007,0.579633300000069],[123.55617060000009,0.576719100000048],[123.5468873000001,0.575563800000054],[123.54388960000006,0.577976100000058],[123.53739440000004,0.579333600000041],[123.53337270000009,0.576874500000031],[123.532373,0.573055400000044],[123.53353230000005,0.565324900000064],[123.52882020000004,0.550310900000056],[123.52792690000001,0.540936],[123.53067440000007,0.53440310000002],[123.54732260000003,0.523015900000075],[123.54974670000001,0.514181600000029],[123.5522946000001,0.51071410000003],[123.54515740000011,0.496829300000059],[123.52299850000009,0.490445100000045],[123.52454060000002,0.467214300000023],[123.52360560000011,0.463036700000032],[123.52487480000002,0.462035400000048],[123.52591710000002,0.453608200000076],[123.53761020000002,0.44524750000005],[123.5474028000001,0.442905100000075],[123.5501183,0.433461800000032],[123.53987130000007,0.426017200000047],[123.530017,0.408479300000067],[123.51102480000009,0.396343600000023],[123.49790380000002,0.382130600000039],[123.496733,0.371045800000047],[123.49156470000003,0.365650900000048],[123.49418870000011,0.357364500000074],[123.49165340000002,0.355795100000023],[123.48473020000006,0.356089800000063],[123.48034210000003,0.353735700000072],[123.48004920000005,0.346869],[123.4836567000001,0.339707800000042],[123.48082880000004,0.336274600000024],[123.482876,0.325385900000072],[123.48229070000002,0.321854400000063],[123.47702270000002,0.31697390000005],[123.48168,0.31384120000007],[123.4859464000001,0.314918200000022],[123.48866850000002,0.31075160000006],[123.4863444,0.309231100000034],[123.49418060000005,0.306952200000069],[123.49725760000001,0.309011600000019],[123.49848290000011,0.307965],[123.502327,0.309637200000054],[123.50314230000004,0.308431700000028],[123.50661510000009,0.310166600000059],[123.50975040000003,0.316124100000025],[123.51171330000011,0.313228600000059],[123.51450360000001,0.31317660000002],[123.51819960000012,0.315990600000021],[123.52039960000002,0.313894300000072],[123.52311760000009,0.315065100000027],[123.52527630000009,0.318254700000068],[123.5366408000001,0.318355600000075],[123.53904430000011,0.319397400000071],[123.53847610000003,0.32131830000003],[123.53984050000008,0.32188],[123.54162230000009,0.320345300000042],[123.5470113,0.322849700000063],[123.553954,0.321816500000068],[123.55812150000008,0.322727100000066],[123.56295260000002,0.320464100000038],[123.56509170000004,0.321951800000022],[123.56727330000001,0.319851],[123.56986470000004,0.321700900000053],[123.57431370000006,0.321835700000065],[123.57615680000004,0.317180200000053],[123.5888867000001,0.309131300000047],[123.59465620000003,0.308454400000073],[123.59862930000008,0.310066600000027],[123.60732540000004,0.307682600000021],[123.61257530000012,0.309768800000029],[123.61365710000007,0.307890100000066],[123.61181450000004,0.30413180000005],[123.6137457000001,0.299317600000052],[123.62071780000008,0.294252100000051],[123.62826810000001,0.292254400000047],[123.63350130000003,0.293889100000058],[123.63299350000011,0.29851350000007],[123.63508330000002,0.303046100000074],[123.639676,0.304595800000072],[123.64415580000002,0.302771],[123.6481672000001,0.307434100000023],[123.650506,0.305893600000047],[123.64877650000005,0.305898500000069],[123.64929590000008,0.305091],[123.65320640000004,0.303927700000031],[123.65897140000004,0.303133700000046],[123.66586460000008,0.304280600000027],[123.6698675,0.302976100000024],[123.6736208000001,0.300482500000044],[123.67421030000003,0.297766800000034],[123.67664860000002,0.29575740000007],[123.67968970000004,0.298236700000075],[123.68012150000004,0.303184200000032],[123.68591780000008,0.30389150000002],[123.6874504000001,0.306656900000064],[123.69313970000007,0.307808700000066],[123.69571850000011,0.31264],[123.69945990000008,0.313302900000053],[123.7007579000001,0.315578300000027],[123.7034033000001,0.315661100000057],[123.70766460000004,0.319381200000066],[123.71906380000007,0.316118900000049],[123.72519950000003,0.31999060000004],[123.73648910000009,0.323552300000074],[123.74616630000003,0.317682],[123.75394270000004,0.320577900000046],[123.76374250000003,0.315319500000044],[123.77095980000001,0.314932800000065],[123.77813060000005,0.312409900000034],[123.78786490000005,0.314061700000025],[123.79032210000003,0.316979700000047],[123.79749310000011,0.317298],[123.80132390000006,0.323734200000047],[123.80057540000007,0.326923400000055],[123.80224370000008,0.330514],[123.80822020000005,0.333922200000075],[123.81648940000002,0.33498220000007],[123.81984780000005,0.336759400000062],[123.82366920000004,0.33142650000002],[123.82910020000008,0.331426],[123.83218470000008,0.333855800000038],[123.83815160000006,0.328185200000064],[123.84839640000007,0.328032800000074],[123.85283570000001,0.330749],[123.85504820000006,0.329736300000036],[123.8565436,0.330901],[123.85893690000012,0.327710900000056],[123.86135090000005,0.330680700000073],[123.8653068000001,0.33074780000004],[123.86604450000004,0.332165300000042],[123.86604430000011,0.33054530000004],[123.86808470000005,0.330013600000029],[123.87190870000006,0.331580600000052],[123.87614780000001,0.335992100000055],[123.8807819000001,0.346881300000064],[123.88282120000008,0.347995500000025],[123.88818110000011,0.347936300000072],[123.89296990000003,0.35030340000003],[123.89830580000012,0.348219400000062],[123.90590380000003,0.351786400000037],[123.9104115,0.349153200000046],[123.915642,0.351384300000063],[123.9168654,0.349409],[123.91377370000009,0.347548200000062],[123.91354940000008,0.345818200000053],[123.92107080000005,0.343510700000024],[123.92368650000003,0.350029500000062],[123.92102160000002,0.349904400000071],[123.92534290000003,0.355727],[123.92784630000006,0.354113700000028],[123.92888080000012,0.355743600000039],[123.93102390000001,0.356509500000072],[123.93272620000005,0.355400400000065],[123.93663920000006,0.35828650000002],[123.940184,0.35645130000006],[123.93752,0.354072400000064],[123.93790030000002,0.352459300000021],[123.94008340000005,0.352277600000036],[123.94607220000012,0.355099800000062],[123.945712,0.358567900000025],[123.94322880000004,0.360987700000067],[123.94691420000004,0.36308420000006],[123.94875680000007,0.362559800000042],[123.95037850000006,0.357014800000059],[123.960563,0.358808200000055],[123.97046680000005,0.356911900000057],[123.97254620000001,0.358653300000071],[123.97772680000003,0.359572900000046],[123.97941820000005,0.367364],[123.98213310000006,0.371224],[123.993449,0.375001800000064],[124.00806630000011,0.375142200000028],[124.02541380000002,0.371503500000074],[124.0290576000001,0.371826800000065],[124.032407,0.374375300000054],[124.03577030000008,0.368548200000021],[124.04002900000012,0.370220600000039],[124.04017740000006,0.374116500000071],[124.0467949,0.376787600000057],[124.04631240000003,0.375169300000039],[124.04800020000005,0.373564300000055],[124.04562560000011,0.369374300000061],[124.049329,0.366349400000047],[124.0486595000001,0.364439100000027],[124.05011590000004,0.360501800000065],[124.05223130000002,0.360405700000058],[124.05448360000003,0.361705400000062],[124.05234180000002,0.365191200000027],[124.0557394000001,0.369087300000047],[124.05776330000003,0.370101600000055],[124.06098920000011,0.368698600000073],[124.06440520000001,0.369205100000045],[124.0655551000001,0.370512800000029],[124.06334140000001,0.374141300000019],[124.06627090000006,0.375266500000066],[124.06751110000005,0.379647500000033],[124.0702242000001,0.380966900000033],[124.07494580000002,0.379838300000074],[124.07603380000012,0.385264500000062],[124.08000570000002,0.387345500000038],[124.0867809,0.387336600000026],[124.09572760000003,0.384765],[124.10041110000009,0.385874100000024],[124.10385840000004,0.385065600000075],[124.11414720000005,0.386729],[124.1222428000001,0.391888700000038],[124.14038820000007,0.394494400000042],[124.15067640000007,0.394025800000065],[124.1577665000001,0.390953100000047],[124.1638435000001,0.393689100000074],[124.16722660000005,0.391952600000025],[124.17085370000007,0.394000700000049],[124.18546260000005,0.392520500000046],[124.188329,0.393233400000042],[124.18998090000002,0.39699040000005],[124.19191810000007,0.397513200000049],[124.20641390000003,0.393663700000047],[124.2118104000001,0.397494600000073],[124.212998,0.38836120000002],[124.2161178,0.383519100000058],[124.21971240000005,0.382303300000046],[124.21690930000011,0.389882300000068],[124.21848430000011,0.391142400000035],[124.22121240000001,0.387897800000076],[124.22236320000002,0.392460100000051],[124.22493470000006,0.395057400000042],[124.227029,0.393654100000049],[124.22625220000009,0.391312],[124.22786630000007,0.390614300000038],[124.2281187000001,0.392912800000033],[124.23080030000006,0.391849400000069],[124.230989,0.387714900000049],[124.23925880000002,0.394976200000031],[124.23930630000007,0.396577200000024],[124.24367490000009,0.398085],[124.27834810000002,0.402047500000037],[124.28163250000011,0.405350400000032],[124.28822990000003,0.40645180000007],[124.2848613000001,0.416473],[124.28337320000003,0.417091400000061],[124.28205320000006,0.412801],[124.285045,0.410573300000067],[124.28229780000004,0.409103100000038],[124.27973040000006,0.41541680000006],[124.27462230000003,0.420236200000033],[124.27070550000008,0.427508300000056],[124.2712805000001,0.428594100000055],[124.27721470000006,0.428706700000021],[124.27939010000011,0.426061400000037],[124.2792323000001,0.42411160000006],[124.2819568000001,0.424515400000075],[124.2831010000001,0.422237100000075],[124.28494220000005,0.424441300000069],[124.28467650000005,0.420571700000039],[124.28567470000007,0.423633500000051],[124.2893203000001,0.426699600000063],[124.3038716000001,0.427260300000057],[124.31428420000009,0.420247200000063],[124.31419190000008,0.416634800000054],[124.30993410000008,0.413751200000036],[124.31419720000008,0.410131],[124.3134162,0.412483800000075],[124.32055510000009,0.422227200000066],[124.32227550000005,0.434007700000052],[124.32544170000006,0.43570010000002],[124.32262850000006,0.437649700000065],[124.32170810000002,0.441291300000046],[124.32410990000005,0.446098300000074],[124.32796940000003,0.443157300000053],[124.33147670000005,0.443976100000043],[124.33549330000005,0.439925300000027],[124.33814870000003,0.440001800000061],[124.33653490000006,0.436352500000055],[124.33875300000011,0.433444700000052],[124.3402225000001,0.439881300000025],[124.34305130000007,0.44163930000002],[124.34040010000001,0.44552630000004],[124.34160150000002,0.449409500000058],[124.3461334000001,0.449935900000071],[124.34403920000011,0.44523380000004],[124.34795370000006,0.443213300000025],[124.34835250000003,0.447367100000065],[124.35267180000005,0.446165600000029],[124.35593170000004,0.453069500000026],[124.35756910000009,0.450617900000054],[124.35841860000005,0.442852800000026],[124.3557872,0.439233300000069],[124.35579280000002,0.434334300000046],[124.35750270000005,0.437669700000072],[124.359547,0.43802050000005],[124.35857770000007,0.43458430000004],[124.3607,0.431285900000034],[124.36230660000001,0.434456],[124.36033850000001,0.440209400000072],[124.36201380000011,0.444855700000062],[124.36411770000007,0.443899200000033],[124.36567370000012,0.444903200000056],[124.36980230000006,0.440777300000036],[124.37449490000006,0.441977800000075],[124.37666760000002,0.444853100000046],[124.3855023000001,0.441740200000027],[124.38431340000011,0.445413700000074],[124.38761020000004,0.447193800000036],[124.40316310000003,0.450494400000025],[124.4075577000001,0.450001200000031],[124.40785730000005,0.452543400000025],[124.41265320000002,0.454531200000019],[124.41851930000007,0.45462770000006],[124.42760370000008,0.452169800000036],[124.43130210000004,0.449249700000053],[124.43145140000001,0.447247800000071],[124.42985840000006,0.446238300000061],[124.432667,0.443370900000048],[124.4351931000001,0.446098600000028],[124.43886880000002,0.446269100000052],[124.44091960000003,0.44812],[124.44281810000007,0.446715600000061],[124.44512390000011,0.448105800000064],[124.44848090000005,0.446403900000064],[124.44952850000004,0.448565],[124.45303710000007,0.444058600000062],[124.45421850000002,0.449998600000072],[124.4590392,0.451153600000055],[124.44880260000002,0.456279800000061],[124.44653260000007,0.461112],[124.449825,0.465841800000021],[124.451541,0.466027500000052],[124.45291340000006,0.464379700000052],[124.45587780000005,0.464935100000048],[124.45737340000005,0.463136700000064],[124.45956490000003,0.464340900000025],[124.46113730000002,0.463313],[124.46540290000007,0.465626600000064],[124.46688970000002,0.463500500000066],[124.47044210000001,0.465474900000061],[124.47311700000012,0.464269700000045],[124.4757158000001,0.466294400000038],[124.47420480000005,0.471805500000073],[124.46957170000007,0.47664750000007],[124.46641740000007,0.47728230000007],[124.4670546000001,0.486565900000073],[124.465952,0.493013500000075],[124.46910780000007,0.499354400000072],[124.466563,0.502501700000039],[124.4632974000001,0.512227100000075],[124.45960320000006,0.518000700000073],[124.45405140000003,0.51838680000003],[124.44839890000003,0.521179600000039],[124.44735180000009,0.528492100000051],[124.43801780000001,0.535075300000074],[124.43573880000008,0.534487500000068],[124.44090130000006,0.547264300000052],[124.44149060000007,0.560693100000037],[124.43953840000006,0.566916700000036],[124.4351104000001,0.568424500000049],[124.42047320000006,0.564481600000022],[124.40810130000011,0.571559500000035],[124.40289160000009,0.572543400000029],[124.4015250000001,0.57686730000006],[124.38230970000006,0.580998800000032],[124.37957510000001,0.583619800000065],[124.37944560000005,0.586960800000043],[124.37633530000005,0.591331800000034],[124.3746483000001,0.598669400000063],[124.36064750000003,0.603848200000073],[124.35791210000002,0.603652300000022],[124.34970750000002,0.608960600000046],[124.34384610000006,0.609093100000052],[124.33792090000009,0.614138900000057],[124.33760040000004,0.616915400000039],[124.32614410000008,0.600248500000021],[124.32223460000012,0.592650300000059],[124.32014370000002,0.583037300000058],[124.31291420000002,0.581335800000033],[124.31050360000006,0.577733300000034],[124.30158010000002,0.572887600000058],[124.29799570000011,0.562144600000067],[124.29210550000005,0.557124800000054],[124.28611390000003,0.557453700000053],[124.28285710000011,0.555751100000066],[124.28246590000003,0.553589400000021],[124.28038160000006,0.552738200000022],[124.27399730000002,0.544354100000021],[124.26956870000004,0.544551600000034],[124.26644210000006,0.54245590000005],[124.25879610000004,0.545249200000057],[124.24576040000011,0.542062300000055],[124.23529370000006,0.541643200000067],[124.2294319,0.539315100000067],[124.22190130000001,0.539758900000038],[124.21773890000009,0.537876500000039],[124.21261640000012,0.537951900000053],[124.19798850000006,0.530755800000065],[124.19458920000011,0.527634200000023],[124.18111780000004,0.527463400000045],[124.17872810000006,0.523028200000056],[124.17641480000009,0.532271600000058],[124.18088910000006,0.539229600000056],[124.17790980000007,0.542947200000071],[124.17096530000003,0.545922100000041],[124.166671,0.551496100000065],[124.16620410000007,0.556402600000069],[124.1605899000001,0.561706700000059],[124.15848630000005,0.562801400000069],[124.15690730000006,0.560454100000072],[124.150373,0.557190600000069],[124.14432880000004,0.55951170000003],[124.1392297000001,0.558802],[124.13761720000002,0.552939],[124.132695,0.553628400000036],[124.13063090000003,0.544726100000048],[124.1158402000001,0.536378],[124.1135743000001,0.527609200000029],[124.10679720000007,0.524678800000061],[124.10255930000005,0.526167600000065],[124.09474820000003,0.519246200000055],[124.0836670000001,0.517893400000048],[124.08172420000005,0.516405600000041],[124.08000270000002,0.51762750000006],[124.0742011000001,0.513871800000061],[124.069632,0.514960900000062],[124.06376100000011,0.518759800000055],[124.05091930000003,0.512694100000033],[124.04608440000004,0.507830800000022],[124.04754040000012,0.502455700000041],[124.04612120000002,0.497240200000022],[124.03766320000011,0.496376200000043],[124.03324450000002,0.492929700000047],[124.03228790000003,0.486872300000073],[124.02617140000007,0.486007800000039],[124.02320820000011,0.482546800000023],[124.02378130000011,0.480287100000055],[124.02588360000004,0.479133],[124.0242108000001,0.476873600000033],[124.01441450000004,0.473653900000045],[124.00174490000006,0.466942300000028],[123.99225720000004,0.467988100000071],[123.99028930000009,0.463446],[123.98241990000008,0.461981800000046],[123.97447790000001,0.46308190000002],[123.95671780000009,0.458942900000068],[123.95030520000012,0.454547800000057],[123.94964840000011,0.446195700000033],[123.94760770000005,0.442459500000041],[123.94010270000001,0.441581300000053],[123.93342860000007,0.432818200000042],[123.92942090000008,0.431573200000059],[123.92184340000006,0.434431500000073],[123.91681560000006,0.433186600000056],[123.91047650000007,0.434066500000029],[123.90439630000003,0.437609],[123.9054900000001,0.44347010000007],[123.89477980000004,0.450798],[123.89128230000006,0.45087170000005],[123.88822170000003,0.448454300000037],[123.88222330000008,0.448789800000043],[123.88120350000008,0.451061200000026],[123.87792460000003,0.451428],[123.8761032000001,0.453333100000066],[123.86896230000002,0.452894400000048],[123.8670681000001,0.455678700000021],[123.86415350000004,0.455752300000029],[123.86007350000011,0.459123100000056],[123.84552110000004,0.454583100000036],[123.83940040000005,0.45465710000002],[123.83378940000011,0.451873600000056],[123.82662170000003,0.443267300000059],[123.81736790000002,0.445173300000022],[123.8140158000001,0.443268700000033],[123.80457260000003,0.443921700000033],[123.80194910000012,0.441284300000063],[123.795464,0.442091],[123.79254920000005,0.440406100000075],[123.79036340000005,0.442677600000025],[123.78006670000002,0.446158100000048],[123.77642430000003,0.454804100000047],[123.76702440000008,0.454512100000045],[123.759916,0.460181600000055],[123.74999350000007,0.45705520000007],[123.74659210000004,0.460830500000043],[123.74116850000007,0.461508700000024],[123.738177,0.465205800000035],[123.72834810000006,0.46129540000004],[123.72462560000008,0.464554600000042],[123.721082,0.465202],[123.71787250000011,0.463556800000049],[123.7127015000001,0.466585100000032],[123.70737290000011,0.456347900000026],[123.70303960000001,0.455110200000036],[123.69859230000009,0.455959],[123.69837470000004,0.461027700000045],[123.695661,0.464008700000022],[123.6911401000001,0.473855700000058],[123.69216690000007,0.478235],[123.6912536000001,0.485812300000021],[123.69588360000012,0.487760800000046],[123.700024,0.494904100000042],[123.71141110000008,0.504482400000029],[123.71613360000003,0.512106800000026],[123.721233,0.525900400000069],[123.72082360000002,0.533627600000045],[123.71917480000002,0.533828800000038],[123.71737650000011,0.536592800000051],[123.71357230000001,0.547480300000075],[123.7143029,0.562990500000069],[123.71170510000002,0.56510140000006],[123.71105610000006,0.569473200000061],[123.70955740000011,0.570629100000076],[123.703961,0.566509300000064],[123.68363950000003,0.56258790000004],[123.6742177000001,0.565814700000033],[123.66007810000008,0.566570100000035],[123.64919940000004,0.572624100000041],[123.64365350000003,0.573479]]]]},"properties":{"shapeName":"Bolaang Mongondow Selatan","shapeISO":"","shapeID":"22746128B83561447907339","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[124.56653010000002,0.575129400000037],[124.564869,0.574297900000033],[124.5663264000001,0.570613500000036],[124.56790230000001,0.574940600000048],[124.56653010000002,0.575129400000037]]],[[[124.63334750000001,0.711138900000037],[124.6339958000001,0.712716800000067],[124.63249540000004,0.713026700000057],[124.63334750000001,0.711138900000037]]],[[[124.68498330000011,0.812056400000074],[124.67291220000004,0.808558600000026],[124.66407230000004,0.807991100000038],[124.66026580000005,0.804646900000023],[124.66369850000001,0.803841800000043],[124.6702719000001,0.806248],[124.684689,0.807264900000064],[124.68703110000001,0.808468300000072],[124.68498330000011,0.812056400000074]]],[[[124.35604660000001,0.755383],[124.35618650000004,0.752126200000021],[124.34888080000007,0.74317510000003],[124.34877530000006,0.730644200000029],[124.35647520000009,0.713029300000073],[124.35721360000002,0.707860900000071],[124.359956,0.705329400000039],[124.36461240000006,0.69033010000004],[124.37144440000009,0.686972200000071],[124.36903980000011,0.678311400000041],[124.37045280000007,0.670434100000023],[124.3772494000001,0.661018600000034],[124.37481260000004,0.658462600000064],[124.36865840000007,0.658194600000058],[124.36428070000011,0.655817700000057],[124.35116220000009,0.655511700000034],[124.34068660000003,0.648358700000074],[124.3390793000001,0.637579900000048],[124.33653840000011,0.633846600000027],[124.33536450000008,0.627557900000056],[124.3370569000001,0.623889],[124.33760040000004,0.616915400000039],[124.33792090000009,0.614138900000057],[124.34384610000006,0.609093100000052],[124.34970750000002,0.608960600000046],[124.35791210000002,0.603652300000022],[124.36064750000003,0.603848200000073],[124.3746483000001,0.598669400000063],[124.37633530000005,0.591331800000034],[124.37944560000005,0.586960800000043],[124.37957510000001,0.583619800000065],[124.38230970000006,0.580998800000032],[124.4015250000001,0.57686730000006],[124.40289160000009,0.572543400000029],[124.40810130000011,0.571559500000035],[124.42047320000006,0.564481600000022],[124.4351104000001,0.568424500000049],[124.43953840000006,0.566916700000036],[124.44149060000007,0.560693100000037],[124.44090130000006,0.547264300000052],[124.43573880000008,0.534487500000068],[124.43801780000001,0.535075300000074],[124.44735180000009,0.528492100000051],[124.44839890000003,0.521179600000039],[124.45405140000003,0.51838680000003],[124.45960320000006,0.518000700000073],[124.4632974000001,0.512227100000075],[124.466563,0.502501700000039],[124.46910780000007,0.499354400000072],[124.465952,0.493013500000075],[124.4670546000001,0.486565900000073],[124.46641740000007,0.47728230000007],[124.46957170000007,0.47664750000007],[124.47420480000005,0.471805500000073],[124.4757158000001,0.466294400000038],[124.4821568000001,0.468272900000045],[124.48391550000008,0.472305800000072],[124.48389190000012,0.476941400000044],[124.47950930000002,0.478743],[124.48410720000004,0.483879900000034],[124.48909810000009,0.486938100000032],[124.4911485,0.486179800000059],[124.4913084000001,0.480258100000071],[124.49907270000006,0.477953900000045],[124.492501,0.472436],[124.49261110000009,0.469826300000022],[124.49635390000003,0.466724200000044],[124.50009940000007,0.467486800000074],[124.5008276000001,0.466239700000074],[124.50191710000001,0.473758400000065],[124.51313340000002,0.473070500000063],[124.51246250000008,0.477707],[124.51010870000005,0.478671100000042],[124.50740280000002,0.482582400000069],[124.50948380000011,0.485027800000069],[124.50806820000003,0.487199],[124.50377990000004,0.487566900000047],[124.5013540000001,0.489442200000042],[124.501636,0.492111700000066],[124.508276,0.49245250000007],[124.50539560000004,0.494716800000049],[124.5021369000001,0.503009400000053],[124.4999130000001,0.504269500000021],[124.50148330000002,0.505877500000054],[124.4998068000001,0.508087100000068],[124.5008226000001,0.511847400000022],[124.50407380000001,0.514967200000058],[124.50255360000006,0.515068100000065],[124.499701,0.518745500000023],[124.498388,0.522783200000049],[124.49936260000004,0.526662700000031],[124.49594620000005,0.525273300000038],[124.48928990000002,0.528618900000026],[124.49035750000007,0.535779300000058],[124.4933069000001,0.535527800000068],[124.49351480000007,0.539083600000026],[124.49778920000006,0.540644],[124.498226,0.542128500000047],[124.49329940000007,0.542409600000042],[124.49344870000004,0.547526100000027],[124.4941404000001,0.548827],[124.49653950000004,0.548497300000065],[124.497781,0.553372600000046],[124.505155,0.552044200000068],[124.51670610000008,0.562033900000074],[124.51878420000003,0.562126100000057],[124.520569,0.559908],[124.52329750000001,0.561551],[124.52552860000003,0.564013600000067],[124.5254466,0.569855400000051],[124.52813050000009,0.573679100000049],[124.52703510000003,0.578361600000051],[124.53851670000006,0.588124600000071],[124.54851530000008,0.590826100000072],[124.55842350000012,0.591148400000066],[124.56413590000011,0.577458500000034],[124.5689456,0.579745700000046],[124.56895860000009,0.584099400000071],[124.57019250000008,0.58483],[124.56864970000004,0.587813100000062],[124.57121570000004,0.591116700000043],[124.5686654000001,0.593910400000027],[124.56862750000005,0.601708600000052],[124.5665871000001,0.60692860000006],[124.56770260000008,0.609960900000033],[124.56531570000004,0.614822600000025],[124.56615870000007,0.618720600000074],[124.55976980000003,0.616822600000035],[124.55600010000012,0.623364],[124.55246680000005,0.621650600000066],[124.54729440000006,0.62174280000005],[124.54356840000003,0.624523900000042],[124.54814990000011,0.632266],[124.55096020000008,0.632774200000028],[124.55289930000004,0.635189700000069],[124.55575470000008,0.651348800000051],[124.5604188000001,0.653953800000068],[124.56205880000005,0.658757600000058],[124.5639483000001,0.65834140000004],[124.56344850000005,0.661607900000035],[124.56576210000003,0.665868100000068],[124.57675660000007,0.671691500000065],[124.58000190000007,0.678755],[124.57656220000001,0.685570600000062],[124.57798590000004,0.68763830000006],[124.5824338000001,0.687596900000074],[124.58096630000011,0.690591600000062],[124.58135260000006,0.695883400000071],[124.58644740000011,0.689453],[124.5874983000001,0.683143900000061],[124.59352700000011,0.683411800000044],[124.59760910000011,0.693842400000051],[124.59641370000008,0.702223900000035],[124.59780410000008,0.70600520000005],[124.59930180000003,0.706809400000054],[124.60409560000005,0.705190800000025],[124.60476230000006,0.702618700000073],[124.60928780000006,0.703993500000024],[124.61330750000002,0.699800900000071],[124.61785330000009,0.704488400000059],[124.62035550000007,0.703254700000059],[124.62079630000005,0.704373],[124.62230690000001,0.703908700000056],[124.62245880000012,0.712267],[124.62427230000003,0.711288900000056],[124.624669,0.712440400000048],[124.62581950000003,0.710432700000069],[124.62934360000008,0.712528300000031],[124.62979880000012,0.714442700000063],[124.62828790000003,0.714018300000021],[124.62719340000001,0.716698700000052],[124.630109,0.715825600000073],[124.6306042000001,0.72650520000002],[124.62948270000004,0.727696300000048],[124.62839610000003,0.726416500000028],[124.62648020000006,0.726998600000059],[124.62359050000009,0.733515200000056],[124.62200830000006,0.734251300000039],[124.6236057000001,0.734582100000068],[124.624232,0.763238600000022],[124.62855,0.77398450000004],[124.63917990000004,0.790753600000073],[124.65235710000002,0.803739700000051],[124.65098420000004,0.804247900000064],[124.65416970000001,0.804405200000076],[124.65950620000001,0.808653500000048],[124.66347860000008,0.816819400000043],[124.6696141000001,0.823914800000068],[124.66817870000011,0.825650100000075],[124.67084840000007,0.827009900000064],[124.67047810000008,0.828706600000032],[124.67755780000005,0.829614500000048],[124.6807798000001,0.828068900000062],[124.68386940000005,0.830387300000041],[124.69069060000004,0.829749100000072],[124.687385,0.834007],[124.69022960000007,0.834851900000046],[124.69001590000005,0.836407700000052],[124.69188710000003,0.838078],[124.69960350000008,0.840773100000035],[124.69895950000011,0.84418450000004],[124.69997760000001,0.846879],[124.69743710000012,0.846804700000064],[124.6984969,0.848040400000059],[124.6966718000001,0.85266740000003],[124.69725320000009,0.855099700000039],[124.6948317,0.858026500000051],[124.69602530000009,0.858917500000075],[124.69464820000007,0.860267800000031],[124.6921506000001,0.859055400000045],[124.68698780000011,0.860334200000068],[124.6862599000001,0.862849100000062],[124.68803,0.865658300000064],[124.6823458,0.872776],[124.68065830000012,0.870934600000055],[124.6719055000001,0.869995500000073],[124.6698358000001,0.873631800000055],[124.67079150000006,0.878639900000053],[124.66708460000007,0.881199200000026],[124.66457720000005,0.888609400000064],[124.660411,0.890920200000039],[124.660411,0.89968390000007],[124.65659830000004,0.902634],[124.65864110000007,0.90833340000006],[124.65380510000011,0.913202100000035],[124.65224930000011,0.923739],[124.6479412000001,0.928637300000048],[124.64875440000003,0.93062610000004],[124.64699260000009,0.939329900000075],[124.649787,0.949017200000071],[124.65240070000004,0.951474800000028],[124.6510972000001,0.956369600000073],[124.64495230000011,0.956479200000047],[124.6328347000001,0.947746500000051],[124.62917270000003,0.947102400000063],[124.62214560000007,0.948917400000028],[124.61744740000006,0.946575100000075],[124.6129628000001,0.947891500000026],[124.59831230000009,0.941743900000063],[124.59453320000011,0.941390400000046],[124.59167180000009,0.939757600000064],[124.587127,0.932102],[124.58063840000011,0.934787400000062],[124.57781570000009,0.914821400000051],[124.5731525000001,0.911839500000042],[124.57258580000007,0.907967700000029],[124.56614070000012,0.894688600000052],[124.55842410000002,0.886993700000062],[124.55821110000011,0.884436],[124.56121170000006,0.88106],[124.55827880000004,0.877153600000042],[124.56011150000006,0.867494700000066],[124.5555548000001,0.865436200000033],[124.55420470000001,0.860476100000028],[124.54996440000002,0.85458090000003],[124.54120510000007,0.852843800000073],[124.53519930000004,0.847979400000042],[124.5336205000001,0.841770100000076],[124.52500280000004,0.841063],[124.52237350000007,0.831126900000072],[124.51975990000005,0.830701600000054],[124.51619070000004,0.824948100000029],[124.50895050000008,0.824453500000061],[124.49769990000004,0.821346700000049],[124.49658670000008,0.811032600000033],[124.49219240000002,0.808667700000058],[124.49068020000004,0.805249300000071],[124.48801690000005,0.803464200000064],[124.48798520000003,0.795434500000056],[124.49279750000005,0.787169700000049],[124.4895997000001,0.779892600000039],[124.49038770000004,0.775076800000022],[124.48892200000012,0.771594500000049],[124.48927530000003,0.766459400000031],[124.4812419000001,0.76329190000007],[124.47809290000009,0.768695900000068],[124.47218880000003,0.763295],[124.4694694000001,0.763339200000075],[124.4721072000001,0.75763870000003],[124.46917380000002,0.752392100000066],[124.46586740000009,0.752699],[124.46649280000008,0.747621400000071],[124.46391830000005,0.743958200000066],[124.46634270000004,0.740161900000032],[124.46546440000009,0.732377400000075],[124.46388310000009,0.730315100000041],[124.46051110000008,0.730749200000048],[124.4558482000001,0.736604300000067],[124.45635260000006,0.744140600000037],[124.45192040000006,0.755548],[124.45378270000003,0.761341500000071],[124.45263860000011,0.771047400000043],[124.4478375000001,0.77123210000002],[124.44540740000002,0.778538800000035],[124.4427323000001,0.779877],[124.43819770000005,0.78673850000007],[124.43614840000009,0.786086600000033],[124.43369220000011,0.79254990000004],[124.43187580000006,0.792543300000034],[124.42894690000003,0.788016300000038],[124.42544810000004,0.787083200000041],[124.42137720000005,0.78363470000005],[124.41577820000009,0.768562800000041],[124.4101425,0.770082900000034],[124.40441670000007,0.767450200000042],[124.39719690000004,0.768944200000021],[124.38419250000004,0.765286800000069],[124.38124110000001,0.762454800000057],[124.36818620000008,0.75994490000005],[124.35604660000001,0.755383]]]]},"properties":{"shapeName":"Bolaang Mongondow Timur","shapeISO":"","shapeID":"22746128B19869723664974","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[123.58352060000004,0.89579550000002],[123.58483980000005,0.897324400000059],[123.582434,0.898368300000072],[123.58148160000007,0.901099600000066],[123.58119910000005,0.89730620000006],[123.58352060000004,0.89579550000002]]],[[[123.58468120000009,0.898360900000057],[123.5845246,0.900825900000029],[123.5821188000001,0.901727900000026],[123.5823855000001,0.899519700000042],[123.58468120000009,0.898360900000057]]],[[[123.26448180000011,0.920352800000046],[123.2645983000001,0.923204300000066],[123.26341410000009,0.92142750000005],[123.26448180000011,0.920352800000046]]],[[[123.25716860000011,0.92320890000002],[123.25626710000006,0.922805],[123.25805020000007,0.921977],[123.25716860000011,0.92320890000002]]],[[[123.2598809000001,0.926305300000024],[123.25889780000011,0.926645800000074],[123.25869670000009,0.924624200000039],[123.25973520000002,0.9208],[123.26232520000008,0.920523200000048],[123.26216430000011,0.926283800000022],[123.2598809000001,0.926305300000024]]],[[[123.73070080000002,0.862254900000039],[123.72603450000008,0.863854900000035],[123.7261969000001,0.866460500000073],[123.71811230000003,0.867200600000047],[123.71692880000012,0.871613700000069],[123.7132021000001,0.874063900000067],[123.7069646000001,0.871947800000044],[123.70838480000009,0.870110200000056],[123.7075215000001,0.863516100000027],[123.70897880000007,0.862098400000036],[123.70685320000007,0.861142500000028],[123.70678830000008,0.858353600000044],[123.70307550000007,0.859133200000031],[123.70245030000001,0.85772030000004],[123.70126550000009,0.859170300000073],[123.69944050000004,0.858161700000039],[123.69913990000009,0.860794500000054],[123.6958634,0.862632100000042],[123.6950326000001,0.865059100000053],[123.681141,0.876101800000072],[123.66012410000008,0.880357500000059],[123.6130644000001,0.900078500000063],[123.59141590000002,0.904745400000024],[123.57833240000002,0.903781500000036],[123.58172430000002,0.903427100000044],[123.58612590000007,0.899391900000069],[123.58939740000005,0.89885060000006],[123.58940920000009,0.897717100000023],[123.58676470000012,0.898131500000034],[123.58344000000011,0.895596600000033],[123.58156410000004,0.896345],[123.58062990000008,0.897991500000046],[123.58033250000005,0.902312700000039],[123.57513130000007,0.902549900000054],[123.57525350000003,0.900352400000031],[123.57150720000004,0.895334400000024],[123.560227,0.889476600000023],[123.5474077,0.886660300000074],[123.5261637000001,0.88644110000007],[123.47103620000007,0.891778700000032],[123.45586920000005,0.896771900000033],[123.45040990000007,0.903427500000021],[123.44262120000008,0.904317700000036],[123.44004280000001,0.902861200000075],[123.43788370000004,0.903772600000025],[123.4326367000001,0.902885500000025],[123.42789590000007,0.90076780000004],[123.42509160000009,0.901769700000045],[123.42310110000005,0.899334300000021],[123.42592760000002,0.894849700000066],[123.41673360000004,0.890929100000051],[123.40895460000002,0.898896900000068],[123.40962760000002,0.906536700000061],[123.40043620000006,0.915362600000037],[123.39814820000004,0.913092300000073],[123.39959370000008,0.911093400000027],[123.39689410000005,0.90553570000003],[123.39726980000012,0.899097],[123.394468,0.898250700000062],[123.38848560000008,0.899901200000045],[123.38536670000008,0.904908200000023],[123.37863720000007,0.90798460000002],[123.37291530000005,0.912897900000075],[123.36896180000008,0.912105600000075],[123.36627870000007,0.908865400000025],[123.36231730000009,0.908310100000051],[123.3621515000001,0.906684700000028],[123.3596602,0.90623990000006],[123.35741,0.902530900000045],[123.3530005,0.905463200000042],[123.35055740000007,0.904921700000045],[123.34861160000003,0.909214500000076],[123.35011150000003,0.911639900000068],[123.34914540000011,0.913209800000061],[123.35136780000005,0.914487700000052],[123.35004290000006,0.916113200000041],[123.35198720000005,0.91823080000006],[123.35062090000008,0.920009100000073],[123.34910250000007,0.919189600000038],[123.34683610000002,0.910348400000032],[123.34332760000007,0.907380600000067],[123.33978060000004,0.910214900000028],[123.33820530000003,0.914555900000039],[123.33325170000012,0.908870700000023],[123.3222545000001,0.909239800000023],[123.31844150000006,0.907295100000056],[123.31442860000004,0.90787320000004],[123.31867680000005,0.908153200000072],[123.31817200000012,0.909292200000039],[123.2822771000001,0.911977200000024],[123.27093960000002,0.916403500000058],[123.26916410000001,0.92435],[123.26167090000001,0.913813600000026],[123.25837400000012,0.916358700000046],[123.25813060000007,0.921317800000054],[123.25597180000011,0.922386900000049],[123.2556234000001,0.919600700000046],[123.25391740000009,0.923368400000072],[123.2555367000001,0.925173100000052],[123.25450910000006,0.927582700000073],[123.25607630000002,0.931560400000023],[123.26206560000003,0.932996800000069],[123.25687820000007,0.939419900000075],[123.25518820000002,0.943791],[123.25221090000002,0.943300600000043],[123.25119930000005,0.94993160000007],[123.25450770000009,0.953285700000038],[123.25135670000009,0.958157400000061],[123.24729270000012,0.958883],[123.24019190000001,0.956594400000029],[123.23909270000001,0.954769900000031],[123.2423467000001,0.950279400000056],[123.24156090000008,0.944395500000041],[123.239491,0.942413],[123.23733550000009,0.941795400000046],[123.22934350000003,0.945578900000044],[123.21495390000007,0.94651570000002],[123.21537810000007,0.943392200000062],[123.21050350000007,0.938288300000067],[123.20941870000001,0.938547],[123.20914770000002,0.941607100000056],[123.19532880000008,0.940443800000025],[123.18911450000007,0.949633200000051],[123.18951430000004,0.951084300000048],[123.18434030000003,0.953793300000029],[123.17676570000003,0.951228600000036],[123.1677135000001,0.951229],[123.1671947000001,0.948282900000038],[123.17137830000001,0.946688],[123.17635830000006,0.941428600000052],[123.17565820000004,0.936355900000024],[123.17782670000008,0.933809800000063],[123.17561400000011,0.932812400000046],[123.17602880000004,0.931501700000069],[123.183396,0.932426900000053],[123.18374160000008,0.92993320000005],[123.18874920000007,0.925924200000054],[123.19251290000011,0.927014],[123.19388520000007,0.92356540000003],[123.19861290000006,0.919757],[123.18757320000009,0.90724640000002],[123.17826330000003,0.901558500000021],[123.163163,0.903054300000065],[123.15811840000003,0.907365300000038],[123.15104090000011,0.910666300000059],[123.14807980000012,0.915238500000044],[123.1488187000001,0.91823450000004],[123.14127350000001,0.923013800000035],[123.1350854000001,0.922668100000067],[123.11771370000008,0.926072500000032],[123.115439,0.924145500000066],[123.110851,0.920727200000044],[123.11406870000008,0.920933800000057],[123.11429680000003,0.91937230000002],[123.11562040000001,0.91941810000003],[123.11334670000008,0.914989900000023],[123.11603930000001,0.909662200000071],[123.11330080000005,0.909226],[123.11320950000004,0.908008900000027],[123.11510360000011,0.907664400000044],[123.11601630000007,0.905069500000025],[123.11781910000002,0.905459800000074],[123.11985,0.903691500000036],[123.11850460000005,0.89875980000005],[123.11985080000011,0.89458030000003],[123.12290860000007,0.891709800000058],[123.12094610000008,0.891273500000068],[123.1209917000001,0.889895700000068],[123.1237162000001,0.888757200000043],[123.12503980000008,0.890640200000064],[123.12716200000011,0.890571200000068],[123.13033380000002,0.884233100000074],[123.13541080000005,0.882318800000064],[123.13776130000008,0.883030600000041],[123.13721350000003,0.879356400000063],[123.14198280000005,0.878644400000042],[123.1428499000001,0.87611830000003],[123.14972850000004,0.878040200000044],[123.15173640000012,0.871036200000049],[123.1603070000001,0.871584800000051],[123.16126550000001,0.874340400000051],[123.1637985000001,0.874179500000025],[123.16569250000009,0.873077200000068],[123.16697030000012,0.869724400000052],[123.17572230000007,0.868360700000039],[123.17606450000005,0.864778400000034],[123.17852890000006,0.86190780000004],[123.18433650000009,0.860661200000038],[123.19232350000004,0.862337100000047],[123.19947890000003,0.855650500000024],[123.20607390000009,0.856844300000034],[123.21027630000003,0.849942300000066],[123.21881340000004,0.847753500000067],[123.226157,0.842824300000075],[123.2276601000001,0.838204500000074],[123.231619,0.833983],[123.2434148000001,0.830762],[123.252851,0.816108400000076],[123.2713999,0.802927400000044],[123.26801060000003,0.797937800000057],[123.26763930000004,0.794466500000055],[123.27383250000003,0.789913600000034],[123.27438890000008,0.787823300000071],[123.2698243000001,0.777222900000027],[123.26855570000009,0.768115900000055],[123.26391730000012,0.763637],[123.25438090000011,0.758076],[123.25140580000004,0.753639700000065],[123.24765350000007,0.74437910000006],[123.24621920000004,0.734549400000049],[123.24925140000005,0.726784900000041],[123.24711380000008,0.721896800000025],[123.247145,0.716973900000028],[123.25204860000008,0.717571400000054],[123.273648,0.698161200000072],[123.282204,0.699107],[123.28939070000001,0.69562250000007],[123.29353370000001,0.696696200000019],[123.2975977000001,0.695878700000037],[123.3024319000001,0.698029],[123.322393,0.698537100000067],[123.3285098,0.688686700000062],[123.33896960000004,0.683542800000055],[123.3422359000001,0.679644600000074],[123.34279170000002,0.675128200000074],[123.34826710000004,0.670697500000074],[123.34900360000006,0.66748380000007],[123.35426510000002,0.663096100000075],[123.35453030000008,0.657261900000037],[123.35944830000005,0.651365200000043],[123.364754,0.651540500000067],[123.38423330000012,0.639687600000059],[123.3991152000001,0.640883200000076],[123.42335710000009,0.639072800000065],[123.42898960000002,0.641437400000029],[123.4549905,0.635483900000054],[123.45914,0.636085700000024],[123.4625191,0.632171300000039],[123.4768825000001,0.62969570000007],[123.48064670000008,0.627372700000024],[123.486165,0.626511900000025],[123.491001,0.623032800000033],[123.49219340000002,0.619130600000062],[123.48919830000011,0.611904800000048],[123.48778740000012,0.601424100000031],[123.503403,0.591437900000074],[123.50911220000012,0.584424600000034],[123.520704,0.584323],[123.53337270000009,0.576874500000031],[123.53739440000004,0.579333600000041],[123.54388960000006,0.577976100000058],[123.5468873000001,0.575563800000054],[123.55617060000009,0.576719100000048],[123.55996820000007,0.579633300000069],[123.5654641000001,0.577672900000039],[123.56986140000004,0.582295600000066],[123.58329060000005,0.583161100000041],[123.58778780000011,0.586828900000057],[123.59058530000004,0.582456800000045],[123.59810370000002,0.576250500000071],[123.60105090000002,0.570019],[123.60731070000008,0.56300310000006],[123.61895210000012,0.561494400000072],[123.63153450000004,0.564059500000042],[123.634283,0.56848130000003],[123.63902960000007,0.56923450000005],[123.64365350000003,0.573479],[123.6417024000001,0.581623800000045],[123.63432300000011,0.587950800000044],[123.63335720000009,0.600690300000053],[123.64415460000009,0.608743700000048],[123.65371180000011,0.613538100000028],[123.66554470000005,0.617066700000066],[123.67084660000012,0.615507800000046],[123.67806360000009,0.610781200000019],[123.69209650000005,0.611199900000031],[123.70056650000004,0.613968900000032],[123.7037193000001,0.61772540000004],[123.7067492000001,0.618971600000066],[123.70844570000008,0.624572400000034],[123.7156586000001,0.631865400000038],[123.7170708000001,0.635847300000023],[123.72572900000011,0.637873900000045],[123.72545430000002,0.643691200000035],[123.72789890000001,0.648665900000026],[123.73044660000005,0.64779980000003],[123.72941420000006,0.651158700000053],[123.731377,0.653616900000031],[123.72941480000009,0.655660200000057],[123.7304137000001,0.658182400000044],[123.72807260000002,0.658944600000041],[123.72969110000008,0.661091200000044],[123.72924380000006,0.663342],[123.7306211,0.663688],[123.731821,0.667917800000055],[123.73751390000007,0.671333400000037],[123.740081,0.677593100000024],[123.7405903,0.684609600000044],[123.735088,0.691711300000065],[123.72919230000002,0.695082500000069],[123.7261036000001,0.705703700000072],[123.726426,0.707674600000075],[123.72852020000005,0.708673200000021],[123.72838620000005,0.710482200000058],[123.72217190000003,0.712955600000043],[123.71981010000002,0.717221900000027],[123.71833310000011,0.725178300000039],[123.72453660000008,0.754321300000072],[123.72789580000006,0.763424300000054],[123.7292202000001,0.776150100000052],[123.7315003000001,0.779154900000037],[123.7307171000001,0.79813310000003],[123.72461250000003,0.810769],[123.71957070000008,0.81492140000006],[123.71954970000002,0.824083200000075],[123.72094510000011,0.828767600000049],[123.71974780000005,0.834245900000042],[123.72306260000005,0.846841600000062],[123.73171120000006,0.859166600000037],[123.73070080000002,0.862254900000039]]]]},"properties":{"shapeName":"Bolaang Mongondow Utara","shapeISO":"","shapeID":"22746128B63174399709952","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[122.05863040000008,-5.385001699999975],[122.0618866000001,-5.379621499999928],[122.0638709000001,-5.366844799999967],[122.06351260000008,-5.365156399999933],[122.06086840000012,-5.363745799999947],[122.05761470000004,-5.367558599999938],[122.05426950000003,-5.3786453],[122.05863040000008,-5.385001699999975]]],[[[121.843096,-5.356373299999973],[121.8439955,-5.353004699999929],[121.84185060000004,-5.348050499999943],[121.83707520000007,-5.345039799999938],[121.83491990000005,-5.345667699999979],[121.83496520000006,-5.349459299999978],[121.84020730000009,-5.355788599999926],[121.843096,-5.356373299999973]]],[[[121.83257630000003,-5.334709799999928],[121.83305150000001,-5.333446799999933],[121.831058,-5.331915899999956],[121.83105250000006,-5.334812199999931],[121.83257630000003,-5.334709799999928]]],[[[122.06671470000003,-5.304110499999979],[122.0695627,-5.300536499999964],[122.06897620000007,-5.2948369],[122.07241780000004,-5.2921252],[122.07526940000002,-5.286099399999955],[122.07110450000005,-5.286225699999932],[122.06819330000008,-5.2879442],[122.06011540000009,-5.296546399999954],[122.0581261000001,-5.3005192],[122.0586492000001,-5.304363399999943],[122.06029940000008,-5.305956199999969],[122.0616887000001,-5.305295699999931],[122.06313960000011,-5.307617099999959],[122.06671470000003,-5.304110499999979]]],[[[121.77582340000004,-5.2836913],[121.78009330000009,-5.276924399999928],[121.7765118000001,-5.279412099999945],[121.7749553000001,-5.282530799999961],[121.77582340000004,-5.2836913]]],[[[121.7824544,-5.270442099999968],[121.78052930000001,-5.268772699999943],[121.78022290000001,-5.2704499],[121.782822,-5.271664599999951],[121.7824544,-5.270442099999968]]],[[[121.78668620000008,-5.25374],[121.78496480000001,-5.253977799999973],[121.785962,-5.255018599999971],[121.78300920000004,-5.260392599999932],[121.7839679000001,-5.262268099999972],[121.78668620000008,-5.25374]]],[[[122.04481650000002,-5.251513199999977],[122.0482535000001,-5.248975599999937],[122.04478480000012,-5.249555499999929],[122.04481650000002,-5.251513199999977]]],[[[122.07745120000004,-5.223648399999945],[122.07575870000005,-5.219447099999968],[122.07528860000002,-5.2216563],[122.07745120000004,-5.223648399999945]]],[[[121.812654,-5.165812099999926],[121.81319710000002,-5.163876199999947],[121.81168690000004,-5.161762099999976],[121.80922280000004,-5.167236399999979],[121.81102680000004,-5.170450499999959],[121.81264680000004,-5.169650799999943],[121.812654,-5.165812099999926]]],[[[121.819473,-5.158182],[121.81787720000011,-5.1553],[121.81417240000007,-5.154141399999958],[121.81279540000003,-5.155290499999978],[121.81246010000007,-5.157785099999955],[121.81516740000006,-5.161925599999961],[121.819473,-5.158182]]],[[[121.819702,-5.140482399999939],[121.81758530000002,-5.140729799999974],[121.816561,-5.145055199999945],[121.81885480000005,-5.146944],[121.82226580000008,-5.146964299999979],[121.822943,-5.142135599999961],[121.819702,-5.140482399999939]]],[[[121.83664480000004,-5.1477145],[121.83906230000002,-5.145964],[121.83955160000005,-5.142394499999966],[121.843972,-5.134414499999934],[121.84234690000005,-5.131930499999953],[121.84253300000012,-5.129086599999937],[121.84030170000005,-5.128114299999936],[121.83891910000011,-5.125025499999936],[121.83929210000008,-5.118974699999967],[121.83440010000004,-5.120841799999937],[121.8305812000001,-5.129972499999951],[121.82780040000011,-5.132388],[121.82373310000003,-5.145209699999953],[121.8251153000001,-5.148480099999972],[121.82323960000008,-5.151018199999953],[121.82740060000003,-5.153022899999939],[121.83175010000002,-5.1509129],[121.83434280000006,-5.15237],[121.835974,-5.151525799999945],[121.83664480000004,-5.1477145]]],[[[121.91352350000011,-5.082028299999934],[121.91200460000005,-5.081454199999939],[121.90962130000003,-5.086435199999926],[121.91352350000011,-5.082028299999934]]],[[[121.90896390000012,-5.081957099999954],[121.90852280000001,-5.080622799999958],[121.90769690000002,-5.082177199999933],[121.90690780000011,-5.080683599999929],[121.90488060000007,-5.081092899999931],[121.906109,-5.084936899999946],[121.9082026000001,-5.082749599999943],[121.90949830000011,-5.084244099999978],[121.91134060000002,-5.080849799999953],[121.90896390000012,-5.081957099999954]]],[[[121.90954450000004,-5.075639599999931],[121.90859050000006,-5.078019299999937],[121.9108705000001,-5.077959699999951],[121.910906,-5.075705399999947],[121.90954450000004,-5.075639599999931]]],[[[121.91790330000003,-5.076066399999945],[121.91679510000006,-5.0760328],[121.91878630000008,-5.078195199999925],[121.91907430000003,-5.076385899999934],[121.91790330000003,-5.076066399999945]]],[[[121.9148,-5.076156399999945],[121.91455330000008,-5.072155299999963],[121.91157070000008,-5.075833499999931],[121.9148,-5.076156399999945]]],[[[122.04462710000007,-5.401308299999926],[122.043396,-5.381376799999941],[122.04581280000002,-5.368664499999966],[122.0477462,-5.3656677],[122.0467311000001,-5.365136099999972],[122.0399642000001,-5.371226299999933],[122.0370157000001,-5.369631199999958],[122.03962580000007,-5.3621876],[122.0368224,-5.357402399999955],[122.04194590000009,-5.356822399999942],[122.0381274,-5.353100499999925],[122.03774070000009,-5.350635399999931],[122.03377720000003,-5.348557],[122.03310050000005,-5.3448835],[122.035904,-5.339034899999945],[122.04093090000003,-5.341355],[122.04054420000011,-5.338793199999941],[122.035614,-5.334104699999955],[122.0358073000001,-5.331687899999963],[122.04148670000006,-5.323084199999926],[122.05094970000005,-5.315856799999949],[122.0519035000001,-5.298919399999932],[122.0510796000001,-5.290105],[122.0485771000001,-5.283806],[122.05111020000004,-5.269960599999933],[122.05069850000007,-5.265343599999937],[122.04275370000005,-5.259036299999934],[122.0436,-5.253162199999963],[122.03273330000002,-5.241394599999978],[122.03775890000009,-5.240143399999965],[122.04863710000006,-5.244356699999969],[122.050318,-5.2401625],[122.05534540000008,-5.237652099999934],[122.05911440000011,-5.236818399999947],[122.05994980000003,-5.2380787],[122.06120950000002,-5.235562499999958],[122.06665110000006,-5.235990399999935],[122.07251510000003,-5.233900699999936],[122.07251940000003,-5.230962899999952],[122.06708160000005,-5.228017099999931],[122.06291460000011,-5.215001],[122.0629245,-5.208286099999953],[122.0675318000001,-5.206614299999956],[122.06669640000007,-5.205354],[122.06921430000011,-5.201161],[122.06293010000002,-5.204509099999939],[122.058326,-5.2040825],[122.05581930000005,-5.200721399999964],[122.05414990000008,-5.197361499999943],[122.05457410000008,-5.193585],[122.05541570000003,-5.190648499999952],[122.05960610000011,-5.187717099999929],[122.05751490000011,-5.186454899999944],[122.05835900000011,-5.181839699999955],[122.05416990000003,-5.183931899999948],[122.049569,-5.181406899999956],[122.05041,-5.178890099999933],[122.04539310000007,-5.174685799999963],[122.04539690000001,-5.172167799999954],[122.04372250000006,-5.172165299999961],[122.04205190000005,-5.169644699999935],[122.04289540000002,-5.165449199999955],[122.03913260000002,-5.162505799999963],[122.03578450000009,-5.162081099999966],[122.03494990000002,-5.160401099999945],[122.03621260000011,-5.155786599999942],[122.03371060000006,-5.149487699999952],[122.034967,-5.149069899999972],[122.02450070000009,-5.150313],[122.02199120000012,-5.149050099999954],[122.02120880000007,-5.156381899999928],[122.02028490000009,-5.155142799999965],[122.015108,-5.155711399999973],[122.00936490000004,-5.150512899999967],[122.0099239000001,-5.160892899999965],[122.01280040000006,-5.160320699999943],[122.01509820000001,-5.162054199999943],[122.01682,-5.164363299999934],[122.01509020000003,-5.167243699999972],[122.00876290000008,-5.167810499999973],[121.99784740000007,-5.160297299999968],[121.99152290000006,-5.1591341],[121.99152660000004,-5.156827699999951],[121.98922980000009,-5.154517599999963],[121.9898131000001,-5.149329],[121.98694400000011,-5.145288099999959],[121.98810050000009,-5.141253699999936],[121.98523050000006,-5.137789399999974],[121.98293110000009,-5.137209199999972],[121.98236510000004,-5.131442199999981],[121.98524420000001,-5.1291403],[121.98122590000003,-5.124521],[121.9754779000001,-5.122782],[121.9754852000001,-5.118169099999932],[121.97779650000007,-5.111253499999975],[121.98067370000001,-5.110104799999931],[121.97665280000001,-5.107215399999973],[121.97723520000011,-5.102603399999964],[121.98299480000003,-5.096846399999947],[121.985295,-5.096850099999926],[121.98357620000002,-5.092811099999949],[121.98415490000002,-5.090505499999949],[121.97783390000006,-5.087612499999977],[121.97899130000008,-5.083001399999944],[121.97439730000008,-5.078957799999955],[121.974986,-5.070309599999973],[121.96694840000009,-5.062224299999968],[121.95660170000008,-5.059901299999979],[121.953147,-5.062778699999967],[121.9456699000001,-5.063919799999951],[121.94048160000011,-5.071983799999941],[121.93702770000004,-5.074284499999976],[121.9364498000001,-5.076013399999965],[121.938748,-5.077170399999943],[121.93298920000007,-5.082350299999973],[121.93240660000004,-5.086962199999959],[121.93413170000008,-5.086965099999929],[121.932398,-5.092151599999966],[121.93755250000004,-5.104845399999931],[121.93649550000009,-5.110942899999941],[121.93014260000007,-5.109717199999977],[121.92953580000005,-5.107265899999959],[121.9270921000001,-5.107261799999947],[121.925573,-5.102358799999934],[121.92038530000002,-5.099287299999958],[121.91855110000006,-5.100203099999931],[121.91580710000005,-5.097135599999945],[121.91275050000002,-5.098355599999934],[121.91031160000011,-5.0955949],[121.9130699000001,-5.0900866],[121.90939880000008,-5.0934494],[121.898411,-5.088530299999945],[121.89535490000003,-5.089443899999935],[121.893846,-5.078721599999938],[121.89506930000005,-5.077804799999967],[121.89507870000011,-5.072291799999959],[121.89844220000009,-5.070153599999969],[121.9027162000001,-5.071386],[121.904552,-5.069551399999966],[121.8999725000001,-5.068318499999975],[121.89846190000003,-5.058515099999966],[121.8926633000001,-5.055748699999981],[121.88838680000003,-5.056047599999943],[121.8825773000001,-5.059713],[121.87768090000009,-5.0652175],[121.87584830000003,-5.0652143],[121.871561,-5.071638599999972],[121.86697740000011,-5.072855699999934],[121.86575290000007,-5.074384899999927],[121.86636170000008,-5.075611099999946],[121.8681954000001,-5.075001799999939],[121.86758180000004,-5.076532099999952],[121.86238990000004,-5.076216699999975],[121.85565680000002,-5.083861599999977],[121.8519768000001,-5.092124499999954],[121.84983550000004,-5.0939583],[121.84952620000001,-5.096101699999963],[121.85227310000005,-5.097331699999927],[121.85471340000004,-5.099173699999938],[121.85440140000003,-5.102848399999971],[121.8568385000001,-5.106528],[121.86386820000007,-5.104090299999939],[121.86447590000012,-5.105929],[121.87119740000003,-5.105022],[121.87333130000002,-5.107476],[121.875164,-5.107479199999943],[121.8769893000001,-5.111770299999932],[121.87332540000011,-5.110845],[121.87241230000006,-5.109005799999977],[121.8708812000001,-5.111147],[121.86690870000007,-5.112058799999943],[121.86842090000005,-5.120637199999976],[121.8665909,-5.119102599999962],[121.8653680000001,-5.119713],[121.85958270000003,-5.109289399999966],[121.85535730000004,-5.110588299999961],[121.85431060000008,-5.109291599999949],[121.8523047000001,-5.103950199999929],[121.85253970000008,-5.1000997],[121.85151810000002,-5.097238299999958],[121.8473689000001,-5.099785399999973],[121.84386180000001,-5.104697599999952],[121.84443070000009,-5.105537399999946],[121.84698120000007,-5.103978799999936],[121.84834560000002,-5.106497599999955],[121.84465530000011,-5.107520399999942],[121.84298560000002,-5.105611],[121.839937,-5.109303899999929],[121.83947340000009,-5.113344499999926],[121.84333720000006,-5.121587],[121.8449495000001,-5.120747499999936],[121.84825360000002,-5.124582799999928],[121.85344310000005,-5.1264297],[121.85741680000001,-5.124905499999954],[121.8601605,-5.127973099999963],[121.86352060000002,-5.127979099999948],[121.86595940000007,-5.1307399],[121.8659540000001,-5.133802599999967],[121.86350870000001,-5.134717099999932],[121.86319890000004,-5.137166799999932],[121.86686450000002,-5.137173299999972],[121.86777820000009,-5.138706299999967],[121.87236230000008,-5.1374893],[121.87754940000002,-5.140867499999956],[121.88121610000007,-5.140261399999929],[121.88274020000006,-5.142101699999955],[121.87968340000009,-5.143321399999934],[121.8802826000001,-5.150060599999961],[121.88272150000012,-5.152821299999971],[121.88088440000001,-5.155268299999932],[121.87966520000009,-5.153734799999938],[121.87874770000008,-5.154345699999965],[121.87539230000004,-5.1515833],[121.87539660000004,-5.149133099999972],[121.8726435000001,-5.151272199999937],[121.87110910000001,-5.155251],[121.87202290000005,-5.156784],[121.86866050000003,-5.158003199999939],[121.86255310000001,-5.156767199999933],[121.86071530000004,-5.1595203],[121.85644520000005,-5.155837399999939],[121.85464430000002,-5.155834099999936],[121.8544687000001,-5.153060499999981],[121.8510774,-5.148282],[121.84088090000012,-5.1464455],[121.84132720000002,-5.150309599999957],[121.83792440000002,-5.151894199999958],[121.83678530000009,-5.155073699999946],[121.82270670000003,-5.168910399999959],[121.82042490000003,-5.177087299999926],[121.82336780000003,-5.179138],[121.82222980000006,-5.181635699999958],[121.82380850000004,-5.185956499999975],[121.82765480000012,-5.189827],[121.82901990000005,-5.1871025],[121.83151,-5.188925099999949],[121.83332630000007,-5.187337699999944],[121.83830810000006,-5.190073899999959],[121.8380790000001,-5.191437],[121.83399090000012,-5.195747399999959],[121.8317254000001,-5.195061399999929],[121.83081570000002,-5.196650499999976],[121.83330620000004,-5.198245899999961],[121.83171190000007,-5.202333499999952],[121.82400490000009,-5.202319199999977],[121.82014840000011,-5.2039028],[121.81334970000012,-5.202981],[121.80790220000006,-5.206834],[121.80721960000005,-5.208196199999975],[121.80971000000011,-5.209791699999926],[121.812192,-5.215932299999963],[121.81239770000002,-5.2270681],[121.80807350000009,-5.23615],[121.807377,-5.244784299999935],[121.80364720000011,-5.254348599999958],[121.79482730000007,-5.262184599999955],[121.7932661000001,-5.273845399999971],[121.79439260000004,-5.277483599999925],[121.80274770000005,-5.284997199999964],[121.80983380000009,-5.287733299999957],[121.81015680000007,-5.289368499999966],[121.8121135,-5.289372299999968],[121.814717,-5.292319499999962],[121.8222161000001,-5.293314499999951],[121.8235108,-5.298547599999949],[121.822205,-5.299198899999965],[121.82318150000003,-5.300181499999951],[121.82154220000007,-5.304755199999931],[121.82510680000007,-5.316857699999957],[121.82804210000006,-5.316863299999966],[121.8270606000001,-5.318496],[121.82934610000007,-5.317192699999964],[121.8309743000001,-5.3185034],[121.8290144,-5.3201343],[121.82868330000008,-5.322749],[121.83030910000002,-5.325367399999948],[121.83421730000009,-5.328317],[121.83779270000002,-5.334862],[121.84105430000011,-5.3348682],[121.84267340000008,-5.341082599999936],[121.84527660000003,-5.344356699999935],[121.84951120000005,-5.347306899999978],[121.85179430000005,-5.347311099999956],[121.85472370000002,-5.350585799999976],[121.854069,-5.351892199999952],[121.8595974000001,-5.360729299999946],[121.85763190000011,-5.365302399999962],[121.86349580000001,-5.369236299999955],[121.87520460000007,-5.387565399999971],[121.890848,-5.395113299999934],[121.89084090000006,-5.399036299999977],[121.897038,-5.399374499999965],[121.89768740000011,-5.401010299999939],[121.8996446000001,-5.4010138],[121.90257570000006,-5.403634499999953],[121.90322460000004,-5.405597199999931],[121.9074687000001,-5.403643299999942],[121.910729,-5.404629899999975],[121.9126897000001,-5.402671899999973],[121.91269430000011,-5.400056599999971],[121.91595810000001,-5.399081599999931],[121.91595460000008,-5.401043099999981],[121.92117320000011,-5.401379399999939],[121.92214430000001,-5.405631099999937],[121.92083720000005,-5.406936499999972],[121.92115930000011,-5.409225499999934],[121.9227886000001,-5.410209099999975],[121.92082670000002,-5.412821],[121.9221281,-5.414784899999972],[121.92179260000012,-5.420015],[121.92700220000006,-5.425582],[121.93384750000007,-5.428536399999928],[121.93319110000004,-5.430823699999962],[121.93644640000002,-5.434752599999968],[121.93644230000007,-5.437041],[121.93839910000008,-5.437371399999961],[121.93938060000005,-5.435738499999957],[121.94360040000004,-5.447842099999946],[121.94294570000011,-5.449148599999944],[121.9461983000001,-5.454712099999938],[121.94456480000008,-5.456016899999952],[121.94455850000008,-5.459613099999956],[121.94260050000003,-5.459936499999969],[121.94258850000006,-5.4668019],[121.945207,-5.4678502],[121.94624810000005,-5.473632299999963],[121.95009080000011,-5.467469],[121.95272010000008,-5.456358099999932],[121.95278730000007,-5.417454099999929],[121.95492950000005,-5.404708299999925],[121.97904370000003,-5.404749299999935],[122.00896410000007,-5.403069099999925],[122.00891910000007,-5.402088399999968],[122.04462710000007,-5.401308299999926]]],[[[121.9479794,-4.911799],[121.949024,-4.909753899999941],[121.94666070000005,-4.908311799999979],[121.94624270000008,-4.9102724],[121.9479794,-4.911799]]],[[[122.061346,-4.884167499999933],[122.060126,-4.8845834],[122.06082780000008,-4.885488099999975],[122.0642673000001,-4.886153199999967],[122.061346,-4.884167499999933]]],[[[122.050789,-4.8802154],[122.04841540000007,-4.88064],[122.04907580000008,-4.885028299999931],[122.04765270000007,-4.888124199999936],[122.04030710000006,-4.890283499999953],[122.03813520000006,-4.894806699999947],[122.0405492000001,-4.892049899999961],[122.05145990000005,-4.890333],[122.05143090000001,-4.887125499999968],[122.05831960000012,-4.884295599999973],[122.050789,-4.8802154]]],[[[122.11872950000009,-4.839194499999962],[122.11871110000004,-4.836807299999975],[122.11400160000005,-4.8449957],[122.11111390000008,-4.846838599999955],[122.11618640000006,-4.846114799999953],[122.11880440000004,-4.842217799999958],[122.11872950000009,-4.839194499999962]]],[[[122.1432929,-4.841484799999932],[122.1434269,-4.836566699999935],[122.14178830000003,-4.842416399999934],[122.14301620000003,-4.845676199999957],[122.1432929,-4.841484799999932]]],[[[122.14110950000008,-4.816615799999965],[122.13089820000005,-4.816393299999959],[122.1307581000001,-4.818545699999959],[122.12793510000006,-4.820632699999976],[122.12100590000011,-4.820109199999933],[122.1212571000001,-4.824583699999948],[122.11946630000011,-4.826109],[122.12096960000008,-4.832514099999969],[122.12446450000004,-4.828669],[122.1360059000001,-4.827578299999971],[122.135924,-4.821521799999971],[122.14110950000008,-4.816615799999965]]],[[[122.15199790000008,-4.808571899999947],[122.14971960000003,-4.807873],[122.14660470000001,-4.813785699999926],[122.14262310000004,-4.8166055],[122.14587630000005,-4.817221099999927],[122.1525534000001,-4.814613],[122.15199790000008,-4.808571899999947]]],[[[121.50653440000008,-4.723206799999957],[121.503429,-4.7145501],[121.50109860000009,-4.7209372],[121.50151950000009,-4.7231619],[121.50354460000005,-4.723676799999964],[121.50337150000007,-4.727028699999948],[121.50545120000004,-4.7300463],[121.50708480000003,-4.729273199999966],[121.50653440000008,-4.723206799999957]]],[[[121.90769850000004,-4.377948599999968],[121.88216470000009,-4.377499299999954],[121.88200530000006,-4.375979499999971],[121.87606920000007,-4.381125499999939],[121.84793630000001,-4.396878799999968],[121.80647930000009,-4.404862199999968],[121.80304210000008,-4.4076979],[121.8053622000001,-4.409158699999978],[121.80470050000008,-4.414048199999968],[121.8038,-4.415612099999976],[121.8055223,-4.4206983],[121.80289520000008,-4.420774399999971],[121.7979166,-4.424544599999933],[121.798255,-4.430586499999947],[121.79279310000004,-4.431359899999961],[121.79299950000006,-4.435173899999938],[121.79477250000002,-4.437398799999926],[121.7876695000001,-4.439818599999967],[121.78897460000007,-4.444362099999978],[121.78718620000006,-4.448809],[121.7827876,-4.449824],[121.78248890000009,-4.455714299999954],[121.77861,-4.454155399999934],[121.77469480000002,-4.458288099999947],[121.7721934000001,-4.4588319],[121.77034460000004,-4.463580899999954],[121.7675895000001,-4.465502199999946],[121.76421810000011,-4.464197099999978],[121.76171670000008,-4.464922199999933],[121.76041170000008,-4.467278499999964],[121.7560615000001,-4.466154699999947],[121.75131250000004,-4.4690186],[121.75022500000011,-4.471411199999977],[121.7532701,-4.474963899999977],[121.75105880000001,-4.478625299999976],[121.75287130000004,-4.480220299999928],[121.7501162000001,-4.479205299999933],[121.74601980000011,-4.485549299999946],[121.74217710000005,-4.484896799999945],[121.73724790000006,-4.4870373],[121.73807390000002,-4.490957499999979],[121.733755,-4.491531799999962],[121.7325469000001,-4.492940699999963],[121.72861240000009,-4.491242499999942],[121.726284,-4.492649399999948],[121.72396520000007,-4.491623299999958],[121.7236392000001,-4.493947099999957],[121.72651840000003,-4.494453399999941],[121.726577,-4.495607099999972],[121.72536470000011,-4.498207899999954],[121.72346790000006,-4.498540299999945],[121.7231746000001,-4.501512499999933],[121.72022190000007,-4.500202399999978],[121.71871090000002,-4.513348],[121.72185080000008,-4.513869099999965],[121.72377560000007,-4.511855499999967],[121.72364220000009,-4.513411],[121.72510790000001,-4.513865799999962],[121.72344970000006,-4.517345],[121.72506970000006,-4.519147699999962],[121.72248940000009,-4.521359099999927],[121.72338130000003,-4.524083],[121.71993480000003,-4.523027799999966],[121.71651760000009,-4.527553],[121.71367540000006,-4.524825599999929],[121.71285940000007,-4.527546499999971],[121.7103399,-4.526918],[121.71060340000008,-4.5302086],[121.7138364000001,-4.5315904],[121.710095,-4.532066799999939],[121.71176360000004,-4.535589499999958],[121.70731620000004,-4.536795099999949],[121.70500090000007,-4.536016899999936],[121.69903710000006,-4.539659599999936],[121.698702,-4.541983899999934],[121.69571790000009,-4.544967699999972],[121.69042250000007,-4.544958099999974],[121.6904201000001,-4.546286599999974],[121.686448,-4.546611499999926],[121.68379490000007,-4.549595899999929],[121.6831360000001,-4.547934],[121.68115020000005,-4.547930399999927],[121.67717080000011,-4.552240799999936],[121.66988780000008,-4.553223699999933],[121.66789770000003,-4.555544899999973],[121.66591310000001,-4.554877],[121.66590950000011,-4.556869799999959],[121.66292830000009,-4.5581927],[121.66292470000008,-4.560185499999932],[121.6599447000001,-4.560844199999963],[121.66092960000003,-4.565163699999971],[121.655967,-4.564158],[121.64967490000004,-4.566139],[121.64702780000005,-4.565801799999974],[121.6473625000001,-4.563809699999979],[121.64475160000006,-4.566851399999962],[121.6422162,-4.56549],[121.64098980000006,-4.567856599999971],[121.63936400000011,-4.565975599999945],[121.63809690000005,-4.567955499999925],[121.63428770000007,-4.5629871],[121.632855,-4.563864299999977],[121.63236390000009,-4.562498299999959],[121.62789020000002,-4.562496899999928],[121.626902,-4.561039899999969],[121.62424440000007,-4.561713],[121.62251890000005,-4.559887699999933],[121.6219291000001,-4.562199199999952],[121.61882890000004,-4.563791299999934],[121.61732530000006,-4.568868299999963],[121.61329020000005,-4.571602199999973],[121.61315840000009,-4.573816099999931],[121.61149490000003,-4.571079899999972],[121.61260670000001,-4.569548699999928],[121.61034990000007,-4.571959399999969],[121.60783150000009,-4.570490899999925],[121.60036220000006,-4.571852499999977],[121.599774,-4.573846199999934],[121.59760930000004,-4.570801299999971],[121.59659550000003,-4.575048399999957],[121.59358020000002,-4.573021399999959],[121.5946583000001,-4.576939599999946],[121.59200190000001,-4.577428299999951],[121.59055360000002,-4.574027499999943],[121.58982780000008,-4.576838799999962],[121.58625240000003,-4.573467099999959],[121.58589610000001,-4.576804],[121.58301010000002,-4.576148899999964],[121.581795,-4.578012399999977],[121.57943480000006,-4.575196299999959],[121.58032170000001,-4.573007799999971],[121.57799430000011,-4.574265399999945],[121.57943610000007,-4.571334],[121.577378,-4.570643],[121.57421440000007,-4.5726732],[121.57480270000008,-4.5750289],[121.57303320000005,-4.574834099999975],[121.57483380000008,-4.5777794],[121.5728984000001,-4.576371299999948],[121.57404830000007,-4.578990599999941],[121.57154330000003,-4.579755399999954],[121.56929670000011,-4.577678899999967],[121.56617,-4.578922199999965],[121.56625710000003,-4.5767225],[121.5681178000001,-4.575187299999925],[121.56465930000002,-4.575061399999925],[121.56321850000006,-4.573549699999944],[121.56308950000005,-4.5695169],[121.56035910000003,-4.573609499999975],[121.5590754000001,-4.573541],[121.55815370000005,-4.568974499999968],[121.55565830000012,-4.5719048],[121.55377670000007,-4.571306499999935],[121.55388440000002,-4.573240699999928],[121.55048510000006,-4.570353299999965],[121.55153440000004,-4.572385899999972],[121.55070400000011,-4.57377],[121.54866860000004,-4.572551699999963],[121.5469561000001,-4.574192299999936],[121.54606750000005,-4.5724573],[121.54455380000002,-4.574847199999965],[121.540867,-4.573859199999958],[121.54024160000006,-4.572414299999934],[121.53667580000001,-4.573801],[121.535768,-4.572938199999953],[121.53417220000006,-4.576291799999979],[121.53263790000005,-4.575071899999955],[121.52761730000009,-4.576560099999938],[121.52878640000006,-4.582116],[121.52084590000004,-4.580694299999948],[121.51891180000007,-4.5825546],[121.51341370000011,-4.582531099999926],[121.51336770000012,-4.584458799999936],[121.51137820000008,-4.584512699999948],[121.50990560000002,-4.587126],[121.5052353000001,-4.584126399999946],[121.50501610000003,-4.5819779],[121.50016560000006,-4.584667299999978],[121.499879,-4.586043099999927],[121.49737980000009,-4.5838715],[121.49536130000001,-4.588313099999937],[121.4907885,-4.591604199999949],[121.48560120000002,-4.588656199999946],[121.484493,-4.591661099999953],[121.4785796000001,-4.591030099999955],[121.47789150000006,-4.588927],[121.47355430000005,-4.591950899999972],[121.47062480000011,-4.591276599999958],[121.47176380000008,-4.608230599999956],[121.46618150000006,-4.614139699999953],[121.46951480000007,-4.6197979],[121.46907970000007,-4.638663299999962],[121.46689040000001,-4.642183799999941],[121.46991870000011,-4.649822899999947],[121.46969490000004,-4.663879099999974],[121.47086210000009,-4.668511899999942],[121.4666056000001,-4.683376199999941],[121.47172730000011,-4.689333599999941],[121.47636250000005,-4.688843599999927],[121.47667260000003,-4.686855499999979],[121.47959460000004,-4.686389899999938],[121.4879314000001,-4.688878199999976],[121.49554820000003,-4.6974094],[121.49408750000009,-4.699240399999951],[121.50036670000009,-4.713057899999967],[121.50467580000009,-4.713381699999957],[121.50358230000006,-4.709908499999926],[121.50571180000009,-4.709743599999968],[121.5083495,-4.7152136],[121.50803120000012,-4.727377399999966],[121.5093008,-4.729945599999951],[121.51124550000009,-4.729148299999963],[121.50537640000005,-4.732041399999957],[121.50674790000005,-4.73624],[121.51684340000008,-4.736048099999948],[121.5210135000001,-4.739256199999943],[121.523161,-4.747891099999947],[121.527249,-4.751490799999942],[121.53470860000004,-4.753503799999976],[121.5392058000001,-4.759999099999959],[121.53664730000003,-4.760733199999947],[121.53675410000005,-4.762397699999951],[121.55042720000006,-4.772628399999974],[121.55924270000003,-4.772477],[121.56642140000008,-4.778631099999927],[121.57397730000002,-4.778090299999974],[121.57776840000008,-4.782756],[121.582778,-4.784476799999936],[121.5831581000001,-4.786337099999969],[121.58347010000011,-4.784410599999944],[121.58515120000004,-4.784489399999927],[121.59090340000012,-4.788402599999927],[121.60247220000008,-4.788447099999928],[121.60978570000009,-4.7911503],[121.61636930000009,-4.795649599999933],[121.61997750000012,-4.7947204],[121.61864030000004,-4.787432899999942],[121.62309320000008,-4.776834099999974],[121.62395360000005,-4.7779485],[121.6239561000001,-4.776712199999963],[121.62826890000008,-4.776968099999976],[121.63014350000003,-4.781005],[121.63229590000003,-4.781909799999937],[121.62744,-4.786402299999963],[121.62743310000008,-4.789824],[121.62957590000008,-4.795591199999933],[121.6362114000001,-4.799026199999957],[121.63118080000004,-4.800997199999927],[121.63135390000002,-4.804239099999961],[121.63851870000008,-4.812357599999928],[121.64552670000012,-4.809129899999959],[121.64643,-4.806250199999965],[121.66365460000009,-4.811326799999961],[121.66526550000003,-4.813851299999953],[121.6648990000001,-4.817632499999945],[121.66023230000008,-4.817083099999934],[121.65951170000005,-4.818342299999927],[121.6641777000001,-4.819252],[121.67312980000008,-4.831876],[121.6781476000001,-4.836568299999954],[121.67741480000007,-4.844130799999959],[121.6808218000001,-4.846298599999955],[121.6836843000001,-4.851526899999953],[121.68871420000005,-4.850095899999928],[121.69911680000007,-4.855699],[121.70953170000007,-4.854998599999931],[121.717977,-4.851412799999935],[121.72085570000002,-4.848176499999965],[121.7249882000001,-4.8465634],[121.73452170000007,-4.837036099999978],[121.73721540000008,-4.836681],[121.74385440000003,-4.838854499999968],[121.74564980000002,-4.838857799999971],[121.74665420000008,-4.837018899999975],[121.7499223000001,-4.842754899999932],[121.75355470000011,-4.843855399999939],[121.75573810000003,-4.842401099999961],[121.75700680000011,-4.844226299999946],[121.75918750000005,-4.844230299999936],[121.76792120000005,-4.838230799999963],[121.7799169000001,-4.837158699999975],[121.7804503000001,-4.843722099999979],[121.783537,-4.845186],[121.79137,-4.834627199999943],[121.7931847000001,-4.8360888],[121.80154720000007,-4.834280699999965],[121.81216890000007,-4.835205199999962],[121.82225660000006,-4.838509699999975],[121.83150970000008,-4.847275799999977],[121.8316870000001,-4.849828199999934],[121.83495220000009,-4.853297399999974],[121.85059020000006,-4.859651],[121.8576723000001,-4.865859399999977],[121.86178670000004,-4.8681613],[121.867963,-4.868860199999972],[121.8736745000001,-4.873918699999933],[121.87961940000002,-4.876223599999946],[121.90454850000003,-4.882461099999944],[121.91814150000005,-4.880513299999961],[121.92685860000006,-4.882616699999971],[121.93701390000001,-4.882742899999926],[121.94019580000008,-4.886517399999946],[121.95005820000006,-4.888343099999929],[121.95655670000008,-4.887896],[121.95710420000012,-4.889918399999942],[121.95939540000006,-4.889129],[121.96630160000007,-4.890752099999929],[121.96797620000007,-4.893481399999928],[121.97363070000006,-4.890899099999956],[121.97789980000005,-4.894474099999968],[121.97526370000003,-4.897631899999965],[121.98087490000012,-4.897919699999932],[121.983843,-4.901151199999958],[121.98712880000005,-4.898786399999949],[121.98707790000003,-4.896953899999971],[121.99157490000005,-4.896586199999945],[121.99210430000005,-4.8932118],[122.00005570000008,-4.890505599999926],[122.00217650000002,-4.8860981],[122.00526620000005,-4.884540399999935],[122.00686230000008,-4.885873],[122.00663810000003,-4.889866499999926],[122.00333880000005,-4.892593699999964],[122.00360230000001,-4.895586599999945],[122.00129090000007,-4.899843199999964],[122.00327160000006,-4.898533099999952],[122.00680490000002,-4.899443599999927],[122.01181110000005,-4.893869699999925],[122.01567920000002,-4.892857],[122.02010590000009,-4.893947799999978],[122.0229256,-4.892755199999954],[122.0225392000001,-4.889999],[122.02392710000004,-4.887756599999932],[122.02039480000008,-4.885029199999963],[122.02033240000003,-4.882128499999965],[122.0224449000001,-4.877780299999927],[122.02447370000004,-4.876821799999959],[122.02390080000009,-4.8744838],[122.02578950000009,-4.871009599999979],[122.03076720000001,-4.869818399999929],[122.0330785000001,-4.872724],[122.03453230000002,-4.879416499999934],[122.03716,-4.873766],[122.04027340000005,-4.873480099999938],[122.04383450000012,-4.875487799999974],[122.04497170000002,-4.866086399999972],[122.055001,-4.858273899999972],[122.05748260000007,-4.858031899999958],[122.05881440000007,-4.859765399999958],[122.05904520000001,-4.856539199999929],[122.06559210000012,-4.853630599999974],[122.06760830000007,-4.849504799999977],[122.07104790000005,-4.849423499999943],[122.07391560000008,-4.851922699999932],[122.07335390000003,-4.854770299999927],[122.0752030000001,-4.858476699999926],[122.07756440000003,-4.856718299999955],[122.0745889000001,-4.8520834],[122.07508980000011,-4.842938499999946],[122.07637710000006,-4.842738199999928],[122.07895750000012,-4.8375962],[122.0833589,-4.835075099999926],[122.08340190000001,-4.833244299999933],[122.08951390000004,-4.831240799999932],[122.08907330000011,-4.828264299999944],[122.09142120000001,-4.825763599999959],[122.09556820000012,-4.823774599999979],[122.1022726000001,-4.823106],[122.10288240000011,-4.820176],[122.10965980000003,-4.817458599999952],[122.12033730000007,-4.818724399999951],[122.11703880000005,-4.815920499999947],[122.110163,-4.814630699999952],[122.10634220000009,-4.811317699999961],[122.10246240000004,-4.813116299999933],[122.09901530000002,-4.812306699999965],[122.09464660000003,-4.808781299999964],[122.09288760000004,-4.8017623],[122.09466020000002,-4.800544399999978],[122.094913,-4.797516299999927],[122.09682050000004,-4.797210399999926],[122.09542110000007,-4.795147],[122.09204770000008,-4.795302699999979],[122.09102580000001,-4.796940099999972],[122.086437,-4.796420299999966],[122.07548970000005,-4.791549699999962],[122.06935770000007,-4.785299],[122.06780870000011,-4.779246199999932],[122.06542660000002,-4.7764011],[122.05295250000006,-4.7736836],[122.0463463000001,-4.768128899999965],[122.040974,-4.756243099999949],[122.0406617000001,-4.745299499999931],[122.03791180000007,-4.736326299999973],[122.038928,-4.7338893],[122.0365068000001,-4.732521199999951],[122.0318287,-4.718591599999968],[122.03332950000004,-4.709897],[122.0319611000001,-4.701733299999944],[122.03327160000003,-4.697577799999976],[122.03087,-4.690141399999959],[122.03456490000008,-4.668848699999955],[122.030769,-4.667471599999942],[122.03419560000009,-4.664780299999961],[122.03421480000009,-4.662599],[122.0362503,-4.662040499999932],[122.03163130000007,-4.660753],[122.03045630000008,-4.654886899999951],[122.0192899000001,-4.6470136],[122.02532170000006,-4.647920099999965],[122.03331530000003,-4.654611899999963],[122.04119060000005,-4.648041699999965],[122.05176830000005,-4.626749399999937],[122.05137320000006,-4.624226799999974],[122.04930740000009,-4.624607],[122.049608,-4.622281199999975],[122.05434780000007,-4.620235099999945],[122.05491030000007,-4.617116399999929],[122.05771750000008,-4.616271799999936],[122.06235950000007,-4.610567699999933],[122.063397,-4.606477599999948],[122.06092,-4.603770599999962],[122.06595420000008,-4.6031189],[122.0643940000001,-4.598308599999939],[122.06883810000011,-4.592571299999975],[122.06601910000006,-4.586956],[122.070631,-4.585914599999967],[122.07187080000006,-4.583734499999935],[122.06941410000002,-4.577673],[122.07283590000009,-4.576248199999952],[122.0849895,-4.555677399999979],[122.0861149000001,-4.552206],[122.08518030000005,-4.550123199999973],[122.09014700000012,-4.545612299999959],[122.0893688000001,-4.542343099999925],[122.0916271000001,-4.541536299999962],[122.09645650000004,-4.543882399999973],[122.10658450000005,-4.540382399999942],[122.10790440000005,-4.536668799999973],[122.10386850000009,-4.530329799999947],[122.1037811000001,-4.528188299999954],[122.10745330000009,-4.522256299999981],[122.10575840000001,-4.515476799999931],[122.1071002000001,-4.507779299999925],[122.10328680000009,-4.507073099999957],[122.10258060000001,-4.505731399999945],[122.10455790000003,-4.500929199999973],[122.10138,-4.501423599999953],[122.09940270000004,-4.506013799999948],[122.09382380000011,-4.500152399999934],[122.09480360000009,-4.496656799999926],[122.09310870000002,-4.495279699999969],[122.089719,-4.497398299999929],[122.08924230000002,-4.495597499999974],[122.0880241000001,-4.496497899999952],[122.08288660000005,-4.493955599999936],[122.0826747000001,-4.4975572],[122.0796841,-4.497617499999933],[122.0782051000001,-4.493519599999956],[122.0674457,-4.493133499999942],[122.06559330000005,-4.490897],[122.059655,-4.492378799999926],[122.05743360000008,-4.488652299999956],[122.05149860000006,-4.487527499999942],[122.04816370000003,-4.484171799999956],[122.05114010000011,-4.477845499999944],[122.05003370000009,-4.472630899999956],[122.04817870000011,-4.472628499999928],[122.04632790000005,-4.469274799999937],[122.01946160000011,-4.443625],[122.01157780000005,-4.438554699999941],[122.00000650000004,-4.428253299999938],[121.99930670000003,-4.429093899999941],[121.9997264000001,-4.428093099999955],[121.90769850000004,-4.377948599999968]]]]},"properties":{"shapeName":"Bombana","shapeISO":"","shapeID":"22746128B55015410169284","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[114.22434210000006,-7.986662099999933],[114.2116926000001,-7.977763399999958],[114.20364360000008,-7.975441699999976],[114.19908880000003,-7.975823599999956],[114.19284340000002,-7.972003],[114.17506970000011,-7.969558499999948],[114.16623660000005,-7.970444899999961],[114.163223,-7.9730261],[114.14115120000008,-7.981392599999936],[114.1276395000001,-7.993020799999954],[114.12786840000001,-7.986844799999972],[114.12591530000009,-7.983506],[114.12631970000007,-7.978121099999953],[114.127876,-7.975959099999955],[114.12400790000004,-7.971924099999967],[114.12335180000002,-7.963495099999932],[114.11710340000002,-7.954073199999925],[114.1162336000001,-7.947778],[114.11350990000005,-7.942084099999931],[114.11442540000007,-7.941565299999979],[114.11344120000001,-7.938960799999961],[114.11563090000004,-7.935996799999941],[114.11374640000008,-7.932614599999965],[114.1137159000001,-7.924414899999931],[114.11168650000002,-7.921141],[114.11113720000003,-7.909597699999949],[114.1027219,-7.899220299999968],[114.10224890000006,-7.8924768],[114.09884620000003,-7.8889731],[114.09614540000007,-7.882742699999937],[114.09394050000003,-7.881668399999967],[114.09252910000009,-7.875441399999943],[114.09389470000008,-7.872508299999936],[114.09225440000012,-7.866976099999931],[114.09349040000006,-7.864585199999965],[114.09191110000006,-7.862285499999928],[114.09387190000007,-7.858236099999942],[114.09320810000008,-7.845194699999979],[114.09484080000004,-7.8443325],[114.09414650000008,-7.8417609],[114.09559610000008,-7.840616099999977],[114.08916450000004,-7.824265799999978],[114.089752,-7.819039699999962],[114.0878904000001,-7.815147199999956],[114.08935530000008,-7.806004799999926],[114.08686810000006,-7.799302399999931],[114.0806119,-7.795542099999977],[114.0794141,-7.789364699999965],[114.07489750000002,-7.783171],[114.07929210000009,-7.773635699999943],[114.07935310000005,-7.770710299999962],[114.07458470000006,-7.769578299999978],[114.071262,-7.761195699999973],[114.06204550000007,-7.758764099999951],[114.04423520000012,-7.758394599999974],[114.032461,-7.760215499999958],[114.02078230000006,-7.760117399999956],[114.01193980000005,-7.762610299999949],[114.00721720000001,-7.759719699999948],[114.00646190000009,-7.756792899999937],[114.00475290000008,-7.763401399999964],[113.99990820000005,-7.772096499999975],[113.9914103000001,-7.778337],[113.99046670000007,-7.775602899999967],[113.98058360000005,-7.771468],[113.9631346000001,-7.773503199999936],[113.9622419000001,-7.771407499999953],[113.95974710000007,-7.771497099999976],[113.9508436000001,-7.765230599999938],[113.9409025000001,-7.775495],[113.93570690000001,-7.776435299999946],[113.937721,-7.7869438],[113.93600440000012,-7.790127699999971],[113.93682080000008,-7.791729399999952],[113.93309760000011,-7.7934007],[113.93180830000006,-7.792215299999953],[113.92976360000011,-7.792712599999959],[113.92868790000011,-7.790613599999972],[113.91822800000011,-7.788805899999943],[113.91690040000003,-7.792497099999935],[113.90550210000004,-7.795645599999943],[113.90476970000009,-7.798837599999956],[113.90595990000008,-7.800092099999972],[113.90359210000008,-7.803212299999927],[113.89932230000011,-7.801740099999961],[113.899597,-7.800064499999962],[113.89771250000001,-7.800024],[113.89672070000006,-7.798278299999936],[113.88292090000004,-7.797086599999943],[113.877288,-7.791079699999955],[113.87574010000003,-7.791595599999937],[113.87573110000005,-7.7951444],[113.87232190000009,-7.797525399999927],[113.86449410000012,-7.793307699999957],[113.8532484000001,-7.794363],[113.84900650000009,-7.796058599999981],[113.83688340000003,-7.812307299999929],[113.82941420000009,-7.813191899999936],[113.82142620000002,-7.810972199999981],[113.81610090000004,-7.813310099999967],[113.80908190000002,-7.813111299999946],[113.8041151000001,-7.816607899999951],[113.8013075,-7.816135399999951],[113.79993420000005,-7.807780699999967],[113.793434,-7.802810199999954],[113.78770430000009,-7.802926499999955],[113.78574350000008,-7.799858099999938],[113.78308090000007,-7.799020299999938],[113.78137190000007,-7.800254799999948],[113.76831040000002,-7.794936699999937],[113.76622750000001,-7.798428],[113.75816330000009,-7.795696199999952],[113.74736010000004,-7.796250799999939],[113.7454222,-7.795111199999951],[113.74624620000009,-7.7930932],[113.74404130000005,-7.789669],[113.73971540000002,-7.788903699999935],[113.73851,-7.7910142],[113.73937970000009,-7.804452399999946],[113.7365645000001,-7.808353899999929],[113.7336805000001,-7.809320899999932],[113.73370340000008,-7.815536499999951],[113.73136120000004,-7.819929099999968],[113.73372630000006,-7.831425199999956],[113.73218540000005,-7.8337114],[113.7341245,-7.834099],[113.7347555,-7.835867],[113.73301330000004,-7.837079199999948],[113.73119120000001,-7.8462203],[113.7279909,-7.8532405],[113.72854990000008,-7.858161499999937],[113.721836,-7.871892299999956],[113.72201810000001,-7.879817799999955],[113.7157820000001,-7.8812056],[113.71167530000002,-7.885301299999981],[113.70808760000011,-7.884838899999977],[113.70722980000005,-7.888537399999962],[113.70319350000011,-7.892453699999976],[113.69974860000002,-7.899613599999952],[113.69437390000007,-7.900482699999941],[113.68889800000011,-7.903313399999945],[113.68484480000006,-7.910330299999941],[113.67942030000006,-7.912585799999931],[113.67331680000007,-7.918925299999955],[113.66291850000005,-7.921591599999942],[113.660858,-7.9264288],[113.6616977000001,-7.931609699999967],[113.66043840000009,-7.938458],[113.65150310000001,-7.941723599999932],[113.6483687000001,-7.945510899999931],[113.64424880000001,-7.947674799999959],[113.63712260000011,-7.949588699999936],[113.62377860000004,-7.961455799999953],[113.62667070000009,-7.966709699999967],[113.62927230000003,-7.967410599999937],[113.62849410000001,-7.970107599999949],[113.62951650000002,-7.972459799999967],[113.63567340000009,-7.965575699999931],[113.64356220000002,-7.973120699999981],[113.6504744,-7.973941399999944],[113.65678390000005,-7.969850099999974],[113.6712645,-7.968395699999974],[113.66917400000011,-7.975231199999939],[113.67198930000006,-7.986698599999954],[113.67880230000003,-7.996463799999958],[113.68113690000007,-7.997724099999971],[113.68643170000007,-8.00687739999995],[113.68724040000006,-8.011513299999933],[113.695587,-8.010388899999953],[113.70914470000002,-8.011621399999967],[113.72048030000008,-8.023271099999931],[113.72176420000005,-8.0221105],[113.72618850000003,-8.023572499999943],[113.72800430000007,-8.028247399999941],[113.73329910000007,-8.033624199999963],[113.73551160000011,-8.0396447],[113.7389677000001,-8.042122399999926],[113.73961620000011,-8.046789599999954],[113.74611650000008,-8.051335799999947],[113.7455672000001,-8.057536599999935],[113.74748980000004,-8.061369399999933],[113.74726090000001,-8.064775],[113.74896930000011,-8.065363],[113.75189190000003,-8.060825799999975],[113.7504881000001,-8.0520425],[113.75378400000011,-8.051902299999938],[113.75806410000007,-8.057753099999957],[113.76295160000006,-8.046931599999937],[113.76779150000004,-8.044230099999936],[113.7704619000001,-8.038732],[113.77261340000007,-8.038604199999952],[113.7791893000001,-8.043953299999941],[113.78180820000011,-8.050318299999958],[113.78410960000008,-8.0513892],[113.7859443000001,-8.049375699999928],[113.79051490000006,-8.049409899999944],[113.791104,-8.05148349999996],[113.79464070000006,-8.053030499999977],[113.79539020000004,-8.05543709999995],[113.7998176000001,-8.055460799999935],[113.80220780000002,-8.057663399999967],[113.8056868000001,-8.056484699999942],[113.80750410000007,-8.050307699999962],[113.8097643000001,-8.049915299999952],[113.8096541000001,-8.048465199999953],[113.8125927000001,-8.0461255],[113.81366710000009,-8.046967],[113.81679520000012,-8.045453499999951],[113.82416520000004,-8.0453429],[113.82986430000005,-8.0478949],[113.8356093000001,-8.046005699999967],[113.83931560000008,-8.04639359999993],[113.83905780000009,-8.047711099999958],[113.84149520000005,-8.048800899999947],[113.8494568000001,-8.0473487],[113.8518451000001,-8.044922199999974],[113.8543006000001,-8.045752499999935],[113.85395030000006,-8.033454399999925],[113.8525618000001,-8.031238],[113.84741190000011,-8.030529499999943],[113.84535960000005,-8.024043499999948],[113.85130290000006,-8.0270791],[113.85501840000006,-8.0222067],[113.86061840000002,-8.029895199999942],[113.86842330000002,-8.03583759999998],[113.86986220000006,-8.0312689],[113.87248870000008,-8.029894399999932],[113.8849087000001,-8.030037599999957],[113.88629130000004,-8.026432099999965],[113.88362980000011,-8.025086899999962],[113.88437940000006,-8.01987269999995],[113.88674490000005,-8.017481399999951],[113.8863732000001,-8.014816099999962],[113.89498880000008,-8.015939199999934],[113.89616380000007,-8.0183138],[113.90275560000009,-8.01830519999993],[113.903694,-8.020237399999928],[113.9068754000001,-8.020591199999956],[113.90834790000008,-8.022648199999935],[113.91013320000002,-8.022306899999933],[113.91316970000003,-8.024696699999936],[113.91860940000004,-8.024968599999966],[113.92512490000001,-8.031220799999971],[113.9285963000001,-8.032283199999938],[113.9288328,-8.0345425],[113.93763710000007,-8.039115299999935],[113.93864420000011,-8.04236069999996],[113.94787580000002,-8.044881199999963],[113.95339950000005,-8.051847799999962],[113.9586485000001,-8.055067399999928],[113.9624708,-8.056079299999965],[113.97084790000008,-8.055199],[113.978462,-8.062035899999955],[113.98714430000007,-8.066942599999948],[113.99205,-8.067335499999956],[113.99595620000002,-8.069638599999962],[114.000778,-8.069239],[114.00904830000002,-8.074517599999979],[114.01405310000007,-8.084690399999943],[114.01911140000004,-8.087280599999929],[114.02212510000004,-8.0927471],[114.02823620000004,-8.0951122],[114.02956370000004,-8.1150554],[114.03404210000008,-8.12019859999998],[114.03858930000001,-8.120491399999935],[114.03772720000006,-8.122282299999938],[114.0357130000001,-8.121724399999948],[114.03681160000008,-8.124848699999973],[114.0346144,-8.128877],[114.03735330000006,-8.128639599999929],[114.03937510000003,-8.130669],[114.04331180000008,-8.131634099999928],[114.04329660000008,-8.1338056],[114.05132270000001,-8.132596299999932],[114.06042460000003,-8.122423499999968],[114.06455210000001,-8.121931399999937],[114.07857490000004,-8.126810399999954],[114.08137490000001,-8.125551499999972],[114.08389260000001,-8.120885199999975],[114.09174330000008,-8.116151199999933],[114.10932140000011,-8.112983],[114.11350230000005,-8.114895199999978],[114.11658450000004,-8.11437639999997],[114.12885260000007,-8.109687099999974],[114.135393,-8.102838299999974],[114.13854960000003,-8.103343299999949],[114.14648810000006,-8.101012799999978],[114.152998,-8.105191],[114.161392,-8.105518599999925],[114.17033360000005,-8.108146],[114.17274450000002,-8.107336299999929],[114.17548080000006,-8.111862199999962],[114.17401440000003,-8.1147433],[114.17646,-8.120318699999928],[114.18437930000005,-8.120910899999956],[114.1879527000001,-8.112530799999945],[114.19569290000004,-8.103339499999947],[114.213727,-8.099801],[114.21744360000002,-8.092727],[114.21654120000005,-8.090316899999948],[114.21751170000005,-8.083184699999947],[114.21993870000006,-8.079186],[114.21974920000002,-8.073735399999975],[114.22193120000009,-8.072619599999939],[114.22328920000007,-8.073932899999932],[114.23113990000002,-8.070425199999931],[114.23228430000006,-8.067850299999975],[114.23878360000003,-8.062949899999978],[114.24164560000008,-8.058115199999975],[114.24671910000006,-8.054665799999952],[114.246475,-8.049460599999975],[114.2487638,-8.045647799999927],[114.24667330000011,-8.041979],[114.23889130000009,-8.0371315],[114.2358167000001,-8.031208299999946],[114.2376478000001,-8.019727],[114.24070720000009,-8.0134356],[114.23880740000004,-8.01390859999998],[114.23773930000004,-8.012405599999965],[114.23825810000005,-8.006146599999965],[114.23216980000007,-7.996458699999948],[114.22438790000001,-7.989763],[114.22434210000006,-7.986662099999933]]]},"properties":{"shapeName":"Bondowoso","shapeISO":"","shapeID":"22746128B57150634760753","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[120.31469640000012,-4.9537137],[120.31530960000009,-4.952684499999975],[120.31298250000009,-4.949759499999971],[120.31469640000012,-4.9537137]]],[[[120.4071173000001,-4.5953474],[120.40830110000002,-4.593410199999937],[120.40637030000005,-4.592437699999948],[120.40616020000004,-4.589421199999947],[120.40379850000011,-4.589417499999968],[120.40293410000004,-4.593078799999944],[120.40507760000003,-4.595344199999943],[120.4071173000001,-4.5953474]]],[[[120.42183630000011,-4.587398299999961],[120.42238420000001,-4.579966199999944],[120.4184130000001,-4.579529299999933],[120.41830160000006,-4.582222199999933],[120.41583090000006,-4.583295699999951],[120.41636330000006,-4.586205099999972],[120.41968770000005,-4.588472299999978],[120.42183630000011,-4.587398299999961]]],[[[120.42024320000007,-4.575977299999977],[120.42325040000003,-4.575012299999969],[120.42196710000007,-4.571778699999925],[120.41982140000005,-4.570913699999949],[120.41498740000009,-4.573168499999952],[120.4157351,-4.575647299999957],[120.42024320000007,-4.575977299999977]]],[[[120.43787220000002,-4.559845099999961],[120.43852140000001,-4.556291199999976],[120.43530090000002,-4.556394199999943],[120.43454540000005,-4.559193899999968],[120.43711910000002,-4.560921199999939],[120.43787220000002,-4.559845099999961]]],[[[120.48159590000012,-4.536101199999962],[120.48149290000003,-4.532977099999925],[120.47537720000003,-4.530921599999942],[120.47933240000009,-4.542669299999943],[120.48159590000012,-4.536101199999962]]],[[[120.45807840000009,-4.542423399999961],[120.46173120000003,-4.540274199999942],[120.46292,-4.534674199999927],[120.46196080000004,-4.529825199999948],[120.45552150000003,-4.5289542],[120.44896620000009,-4.534115399999962],[120.44702960000006,-4.537128899999971],[120.44713290000004,-4.539929799999925],[120.45077860000004,-4.542736],[120.45807840000009,-4.542423399999961]]],[[[120.4286201000001,-4.500691299999971],[120.42250420000005,-4.499066399999947],[120.41671420000011,-4.494856599999935],[120.4160683,-4.496148299999959],[120.42282310000007,-4.501221399999963],[120.421953,-4.508976099999927],[120.42333470000005,-4.518242399999963],[120.42730740000002,-4.517494199999931],[120.43009660000007,-4.518575599999963],[120.437086,-4.5101834],[120.44396080000001,-4.506638499999951],[120.44835770000009,-4.509445699999958],[120.45265280000001,-4.508374699999933],[120.44160760000011,-4.500925799999948],[120.4286201000001,-4.500691299999971]]],[[[119.6968458,-4.788008399999967],[119.69648450000011,-4.7926639],[119.69850610000003,-4.799165599999981],[119.70099190000008,-4.802429099999927],[119.71116250000011,-4.809459699999934],[119.71590530000003,-4.817813299999955],[119.72117460000004,-4.821693099999948],[119.72472660000005,-4.821080099999961],[119.72631460000002,-4.823473699999965],[119.72828310000011,-4.817128],[119.74274790000004,-4.806809899999962],[119.7518490000001,-4.803228099999956],[119.759565,-4.804947799999979],[119.76363780000008,-4.807798499999933],[119.76292070000011,-4.813159699999972],[119.76506180000001,-4.814911699999925],[119.76454650000005,-4.817027399999972],[119.76774650000004,-4.824268699999948],[119.77089770000009,-4.822988899999928],[119.771412,-4.821331899999961],[119.7735034000001,-4.821866399999976],[119.7744957000001,-4.818922799999939],[119.7784564000001,-4.817450899999926],[119.77872660000003,-4.814911199999926],[119.78214650000007,-4.8116913],[119.784482,-4.806069499999978],[119.78880130000005,-4.808850099999972],[119.8066123000001,-4.808795699999962],[119.81295780000005,-4.793526199999974],[119.810997,-4.785418],[119.81356810000011,-4.778541599999926],[119.81162530000006,-4.768386299999975],[119.81269840000004,-4.766239599999949],[119.817131,-4.761915199999976],[119.8378646000001,-4.748845],[119.843248,-4.743139399999961],[119.86016460000008,-4.741063599999961],[119.86653120000005,-4.743594199999961],[119.87211730000001,-4.734065799999939],[119.87992860000008,-4.728350199999966],[119.8846347000001,-4.7188204],[119.889835,-4.725146399999971],[119.8972917000001,-4.727825799999948],[119.90052850000006,-4.731977499999971],[119.90542870000002,-4.731152799999961],[119.91116850000003,-4.732429699999955],[119.91261920000011,-4.735188299999948],[119.9230950000001,-4.743718299999955],[119.92473120000011,-4.748391499999968],[119.929924,-4.753311599999961],[119.93687280000006,-4.758513199999925],[119.94455160000007,-4.760278299999925],[119.9554227000001,-4.766330099999948],[119.96273790000009,-4.772568699999965],[119.9678613000001,-4.774967799999956],[119.97290480000004,-4.780258299999957],[119.97147390000009,-4.7864713],[119.96893960000011,-4.789048099999945],[119.95307530000002,-4.792812],[119.95043980000003,-4.795289899999943],[119.944441,-4.808380199999931],[119.94433720000006,-4.813557599999967],[119.94644530000005,-4.818544699999961],[119.9433656000001,-4.823906699999952],[119.94040260000008,-4.836613499999942],[119.93627740000011,-4.843389499999944],[119.93106820000003,-4.846023199999934],[119.92935650000004,-4.849996899999951],[119.92098850000002,-4.8573787],[119.91770470000006,-4.867313299999978],[119.93268000000012,-4.874304499999937],[119.93452530000002,-4.882436799999937],[119.93375730000002,-4.886677599999928],[119.93164150000007,-4.887924599999963],[119.932091,-4.890461399999936],[119.92997890000004,-4.890759799999955],[119.92856830000005,-4.8936572],[119.924856,-4.894197399999939],[119.92374140000004,-4.899912399999948],[119.92041480000012,-4.901372599999945],[119.91680740000004,-4.907252],[119.91210320000005,-4.906911199999968],[119.91155880000008,-4.909127199999944],[119.90843040000004,-4.909321499999976],[119.90651590000004,-4.913784199999952],[119.90300910000008,-4.91136],[119.90261740000005,-4.915282899999966],[119.9002647000001,-4.916648399999929],[119.89714360000005,-4.916038599999979],[119.8991645000001,-4.919083699999931],[119.8961068000001,-4.920515499999965],[119.89441580000005,-4.930633299999954],[119.89671850000002,-4.929828099999952],[119.89797470000008,-4.933725799999934],[119.89469,-4.938013799999965],[119.89596140000003,-4.939453899999933],[119.90056110000012,-4.939641599999959],[119.90083210000012,-4.940860199999975],[119.89993690000006,-4.9428247],[119.8972903,-4.9422309],[119.89638120000006,-4.944710499999928],[119.89481420000004,-4.943551799999966],[119.89461730000005,-4.944745399999931],[119.893154,-4.943992799999933],[119.891523,-4.94531],[119.89192630000002,-4.947549],[119.88893910000002,-4.950859899999955],[119.88952440000003,-4.952863199999967],[119.88533360000008,-4.958718199999964],[119.88614780000012,-4.961190299999942],[119.88397310000005,-4.962184699999966],[119.88715030000003,-4.969010499999968],[119.88840790000006,-4.978492],[119.88387540000008,-4.992236399999967],[119.8843571000001,-5.001947199999961],[119.87864220000006,-5.011576899999966],[119.87084060000007,-5.018089599999939],[119.87018950000004,-5.023595],[119.86676780000005,-5.029067399999974],[119.86291130000006,-5.032644299999959],[119.85687010000004,-5.032797399999936],[119.85392960000001,-5.040074799999957],[119.84655920000012,-5.047308499999929],[119.8467657000001,-5.059126099999958],[119.85183860000006,-5.064778],[119.8559586,-5.080111099999954],[119.85947640000006,-5.0849927],[119.86017240000001,-5.088423099999943],[119.86405620000005,-5.091904199999931],[119.870109,-5.093086299999925],[119.87993170000004,-5.090620899999976],[119.884433,-5.093789199999947],[119.88787910000008,-5.093447499999968],[119.89342240000008,-5.096683599999949],[119.89901840000005,-5.1116591],[119.91010540000002,-5.1181308],[119.91142090000005,-5.122246399999938],[119.92265770000006,-5.132775],[119.93033080000009,-5.134077],[119.93829260000007,-5.1292881],[119.95254120000004,-5.134570899999972],[119.9582746000001,-5.134526199999925],[119.9654954,-5.1399644],[119.97049120000008,-5.139546099999961],[119.96901050000008,-5.136129699999969],[119.969601,-5.133154599999955],[119.98234390000005,-5.123021699999981],[119.98410220000005,-5.123636899999951],[119.98739250000006,-5.1302438],[119.99460510000006,-5.130191899999943],[120.00001440000005,-5.1326796],[120.01109740000004,-5.1226207],[120.0147022000001,-5.124254699999938],[120.018843,-5.131700399999943],[120.02145330000008,-5.129987],[120.023696,-5.130946],[120.0244752000001,-5.128880799999934],[120.02719890000003,-5.127538299999969],[120.03184570000008,-5.1291229],[120.03916,-5.126328399999977],[120.04633320000005,-5.126843299999962],[120.04849270000011,-5.125483299999928],[120.05228000000011,-5.126875699999971],[120.05556970000009,-5.125867199999959],[120.0608734000001,-5.122623499999975],[120.060908,-5.111074499999972],[120.06518810000011,-5.104356],[120.06403520000003,-5.0996881],[120.07196440000007,-5.098690599999941],[120.07273180000004,-5.092601399999978],[120.07652750000011,-5.090514699999972],[120.07677780000006,-5.084424299999966],[120.079624,-5.083113099999935],[120.081423,-5.078052],[120.08537110000009,-5.075177199999928],[120.09659180000006,-5.075957699999947],[120.10614410000005,-5.071323699999937],[120.10925490000011,-5.067107799999974],[120.10939330000008,-5.062799],[120.11588610000001,-5.058460599999933],[120.11961170000006,-5.058825],[120.1251271000001,-5.048058499999968],[120.12470180000003,-5.045444099999941],[120.13142440000001,-5.044324299999971],[120.13327320000008,-5.046067],[120.13279440000008,-5.0483987],[120.13851220000004,-5.054069799999979],[120.1373311000001,-5.057146599999953],[120.1407355,-5.057311599999935],[120.14221920000011,-5.059599699999978],[120.14679210000008,-5.060557399999936],[120.15093130000002,-5.057926],[120.1517804,-5.060544599999957],[120.15022390000001,-5.064964499999974],[120.15134770000009,-5.065644199999952],[120.15537730000005,-5.063307899999927],[120.15911910000011,-5.063014599999974],[120.16146950000007,-5.065566799999942],[120.16196840000009,-5.0700025],[120.15976740000008,-5.073448499999927],[120.16402960000005,-5.078436199999942],[120.16847210000003,-5.074346499999933],[120.17456530000004,-5.0761769],[120.18093050000004,-5.069219399999952],[120.18411340000011,-5.071252199999947],[120.18589630000008,-5.068963199999928],[120.18841290000012,-5.069338799999969],[120.187871,-5.074640899999963],[120.19056010000008,-5.073821199999941],[120.19089450000001,-5.075573399999939],[120.18830320000006,-5.077907099999948],[120.1882862000001,-5.080061899999976],[120.189406,-5.080734599999971],[120.19185830000004,-5.078632199999959],[120.1951580000001,-5.080051499999968],[120.19381450000003,-5.082063499999947],[120.19551790000003,-5.084869099999935],[120.19541450000008,-5.090311],[120.1977250000001,-5.089852599999972],[120.20152270000006,-5.096332899999936],[120.20680420000008,-5.100025699999946],[120.2097649000001,-5.097808499999928],[120.21151550000002,-5.099707199999955],[120.21397,-5.098310799999979],[120.2166883000001,-5.099914199999944],[120.221082,-5.097317099999941],[120.22069650000003,-5.093899199999953],[120.22530830000005,-5.092580899999973],[120.22812040000008,-5.096298499999932],[120.23197790000006,-5.0920778],[120.23198700000012,-5.0874315],[120.24095000000011,-5.092660799999976],[120.24800990000006,-5.093190799999945],[120.250186,-5.095072],[120.24975110000003,-5.096867299999928],[120.25487260000011,-5.106995599999948],[120.25705130000006,-5.108794499999931],[120.25748460000011,-5.112925399999938],[120.25953840000011,-5.115928599999961],[120.26235670000005,-5.116573199999948],[120.26549970000008,-5.114120899999932],[120.26335960000006,-5.1049962],[120.26508290000004,-5.101336499999945],[120.27348,-5.107916499999931],[120.28680860000009,-5.112579399999959],[120.2902964000001,-5.110661099999959],[120.28712660000008,-5.106391099999939],[120.28855720000001,-5.102798599999971],[120.28839490000007,-5.094139799999937],[120.29023660000007,-5.093639899999971],[120.28787480000005,-5.091834399999925],[120.2916163000001,-5.079235499999925],[120.28973350000001,-5.067685199999971],[120.29061280000008,-5.064511],[120.29253230000006,-5.0633972],[120.29448660000003,-5.064119799999958],[120.29602290000003,-5.059352299999944],[120.30052340000009,-5.055175499999962],[120.29855,-5.054360899999949],[120.30030610000006,-5.0492194],[120.29855,-5.047572],[120.30099530000007,-5.043585699999937],[120.28980590000003,-5.044349499999953],[120.29017290000002,-5.041244799999959],[120.28791500000011,-5.0407793],[120.2878617,-5.0386767],[120.28960290000009,-5.038143199999979],[120.28889740000011,-5.036111199999937],[120.2922248000001,-5.0323269],[120.29165910000006,-5.029516099999967],[120.29512680000005,-5.022751699999958],[120.29450370000006,-5.017466899999931],[120.298792,-5.011410299999966],[120.3003079,-5.011869799999943],[120.29927930000008,-5.010346299999981],[120.30178950000004,-5.004573199999925],[120.30513960000008,-5.0040942],[120.3060928000001,-5.002371299999936],[120.3049602000001,-5.0011495],[120.30580470000007,-4.9999474],[120.300369,-4.992350599999952],[120.30252,-4.988456399999961],[120.30198610000002,-4.986540599999955],[120.29828650000002,-4.984127299999955],[120.2971755000001,-4.979371799999967],[120.2985708000001,-4.974821399999939],[120.30351850000011,-4.974497699999972],[120.30083780000007,-4.972343099999932],[120.30335960000002,-4.971534799999972],[120.30239860000006,-4.970575099999962],[120.30463930000008,-4.9660321],[120.30029290000004,-4.967058099999974],[120.295181,-4.958176799999933],[120.294469,-4.953886199999943],[120.29573830000004,-4.952498699999978],[120.29418720000001,-4.950927299999933],[120.29489920000003,-4.949003299999958],[120.29385810000008,-4.949341],[120.29663090000008,-4.946134599999937],[120.303155,-4.946751199999937],[120.30455590000008,-4.945777299999975],[120.30839260000005,-4.940246599999966],[120.3082161000001,-4.937938699999961],[120.3064515000001,-4.937542399999927],[120.30412960000001,-4.932319199999938],[120.299865,-4.933043199999929],[120.2976513000001,-4.9319306],[120.29251320000003,-4.923258799999928],[120.2955816000001,-4.916254299999935],[120.2997186,-4.914322399999946],[120.3055637000001,-4.916130299999963],[120.31198130000007,-4.911002399999973],[120.30967890000011,-4.9100651],[120.30912740000008,-4.908252899999979],[120.31123090000006,-4.903808899999945],[120.3048179000001,-4.903243799999927],[120.30470910000008,-4.8960742],[120.30075270000009,-4.886536],[120.30107620000001,-4.88189],[120.3059177,-4.868127399999935],[120.31206410000004,-4.858981899999947],[120.317517,-4.856206],[120.31776940000009,-4.853468299999975],[120.333917,-4.844170599999927],[120.33566440000004,-4.840961399999969],[120.344889,-4.838684799999953],[120.35542340000006,-4.840275399999939],[120.36011090000011,-4.843355599999938],[120.36468260000004,-4.844217799999967],[120.37895130000004,-4.841841699999975],[120.38021720000006,-4.839117699999974],[120.38303640000004,-4.8383788],[120.3825266,-4.829654099999971],[120.37967460000004,-4.822682799999939],[120.38200270000004,-4.821499599999925],[120.38155970000003,-4.8130169],[120.37894230000006,-4.806936899999926],[120.38300260000005,-4.805306399999949],[120.386353,-4.795456699999932],[120.3863457000001,-4.787980499999946],[120.38386020000007,-4.784671699999933],[120.3853865000001,-4.768205199999954],[120.39206,-4.756678399999942],[120.39864870000008,-4.755027699999971],[120.39535890000002,-4.753202899999962],[120.39378590000001,-4.749097399999926],[120.39847,-4.7402841],[120.40037470000004,-4.733295599999963],[120.4006098000001,-4.725159599999927],[120.39734150000004,-4.719260499999962],[120.40025240000011,-4.709428399999979],[120.40923490000011,-4.6952163],[120.43152670000006,-4.678017799999964],[120.44427150000001,-4.664600399999927],[120.44454430000008,-4.662079699999936],[120.44973180000011,-4.658427099999926],[120.4613448,-4.658251499999949],[120.45143830000006,-4.657025],[120.44958550000001,-4.651244799999972],[120.442043,-4.648455499999955],[120.4406901000001,-4.646379699999954],[120.44101850000004,-4.640616699999953],[120.43872720000002,-4.640319099999942],[120.43997650000006,-4.633194199999934],[120.43257970000002,-4.623151],[120.4295244000001,-4.622942699999953],[120.42408090000004,-4.618376299999966],[120.41906390000008,-4.617973899999924],[120.41410370000006,-4.614733799999954],[120.40836860000002,-4.613214699999958],[120.39955370000007,-4.606094],[120.38737910000009,-4.570292],[120.38718640000002,-4.566566299999977],[120.38382740000009,-4.561261399999978],[120.38388910000003,-4.554788],[120.38561630000004,-4.555234899999959],[120.3862147000001,-4.549307599999963],[120.39355610000007,-4.550701599999968],[120.40645180000001,-4.546971],[120.40743020000002,-4.544320499999969],[120.40585340000007,-4.545647],[120.40529020000008,-4.542288599999949],[120.40564270000004,-4.5459313],[120.39395810000008,-4.550219199999958],[120.38485580000008,-4.548686199999963],[120.38583040000003,-4.542282299999954],[120.3930223000001,-4.540491],[120.38583040000003,-4.542131599999948],[120.384634,-4.538175299999978],[120.38571490000004,-4.536587699999927],[120.38450860000012,-4.533125299999938],[120.38518720000002,-4.528614499999946],[120.38018650000004,-4.522919799999954],[120.3766247000001,-4.511921699999959],[120.38080830000001,-4.507098099999951],[120.38206930000001,-4.5001071],[120.38793460000011,-4.490165699999977],[120.39026170000011,-4.490636599999959],[120.3928522000001,-4.487573099999963],[120.39793380000003,-4.491942599999959],[120.4018645000001,-4.481175099999973],[120.39686190000009,-4.469002099999955],[120.3874522000001,-4.468096799999955],[120.38540450000005,-4.467304699999943],[120.38305620000006,-4.461941799999977],[120.37787650000007,-4.460326299999963],[120.3736295000001,-4.460826],[120.372335,-4.458952199999942],[120.37403680000011,-4.457558],[120.37549490000004,-4.458094599999981],[120.3757614000001,-4.4565823],[120.37214720000009,-4.4519689],[120.37157600000012,-4.446063099999947],[120.36574680000001,-4.444530899999961],[120.36283340000011,-4.441797699999938],[120.36340660000008,-4.439318399999934],[120.35991020000006,-4.439033699999925],[120.35996760000012,-4.437502499999937],[120.35648460000004,-4.435721199999932],[120.3473457,-4.425707399999965],[120.346599,-4.412485099999969],[120.34807930000011,-4.411057099999937],[120.3484161,-4.407201899999961],[120.34712260000003,-4.404672],[120.352786,-4.402333099999964],[120.3550464000001,-4.399908399999958],[120.36349470000005,-4.382552899999951],[120.3631299000001,-4.379629299999976],[120.3612366000001,-4.378092399999957],[120.36090420000005,-4.370725],[120.36303180000004,-4.369370299999957],[120.3690219,-4.373662699999954],[120.37738220000006,-4.366345499999966],[120.38617050000005,-4.353653699999938],[120.38404470000012,-4.3513305],[120.38781770000003,-4.350765199999955],[120.38781640000002,-4.348390599999959],[120.3901949000001,-4.347527899999932],[120.39330890000008,-4.336125399999958],[120.39247480000006,-4.325639099999933],[120.38772810000012,-4.313313899999969],[120.3733562000001,-4.299943299999939],[120.3649329000001,-4.298585799999955],[120.36724530000004,-4.296295399999963],[120.36568100000011,-4.295555199999967],[120.36461550000001,-4.290441],[120.36565050000002,-4.262529699999959],[120.37155810000002,-4.249021],[120.37272760000008,-4.233399399999939],[120.37087520000011,-4.231865899999946],[120.36801450000007,-4.223216499999978],[120.36668970000005,-4.222787299999936],[120.36395340000001,-4.224806499999943],[120.36123580000003,-4.221764699999937],[120.35717420000003,-4.222415199999944],[120.35066310000002,-4.226011199999959],[120.35093130000007,-4.229860699999961],[120.34954410000012,-4.231440699999951],[120.34531320000008,-4.231425199999933],[120.33467760000008,-4.240060699999958],[120.31870980000008,-4.238913799999978],[120.3123293000001,-4.241033499999958],[120.30031870000005,-4.248079099999927],[120.292178,-4.244432199999949],[120.28343440000003,-4.246580699999924],[120.27910980000001,-4.249312399999951],[120.26515440000003,-4.267251199999976],[120.25940480000008,-4.270482299999969],[120.2502948,-4.272701099999949],[120.2443747000001,-4.269558],[120.2396738000001,-4.269456199999979],[120.23407940000004,-4.262517199999934],[120.23419550000006,-4.255119499999978],[120.231876,-4.248273599999948],[120.23181530000011,-4.242246799999975],[120.22543240000005,-4.235382199999947],[120.21842790000005,-4.237537599999939],[120.19232140000008,-4.236939499999949],[120.18312950000006,-4.230884699999933],[120.177969,-4.230098799999951],[120.17367810000007,-4.2266039],[120.16585320000002,-4.225710699999979],[120.1614317000001,-4.227802499999939],[120.15129410000009,-4.225016799999935],[120.14852110000004,-4.2227778],[120.14152630000001,-4.224782299999958],[120.1397558000001,-4.223671899999943],[120.13856160000012,-4.219577],[120.135556,-4.222706799999969],[120.13295770000002,-4.2227727],[120.13061020000009,-4.225804499999981],[120.1248144000001,-4.227529799999957],[120.1199117000001,-4.243228699999975],[120.11068240000009,-4.248213399999941],[120.09989480000002,-4.252214799999933],[120.08941690000006,-4.248375099999976],[120.08350610000002,-4.2490839],[120.0763141000001,-4.247370199999978],[120.07276230000002,-4.260083499999951],[120.07393690000004,-4.2647952],[120.0708919000001,-4.272020699999928],[120.073203,-4.285111099999938],[120.08289740000009,-4.290389799999957],[120.08301590000008,-4.294510199999934],[120.07941670000002,-4.297821399999975],[120.07716840000012,-4.304218599999956],[120.08461690000001,-4.312297499999943],[120.08448320000002,-4.3175735],[120.08255070000007,-4.318776799999966],[120.08533590000002,-4.322437699999966],[120.0767806,-4.335388099999932],[120.07856850000007,-4.341647399999943],[120.07686130000002,-4.346456399999965],[120.07771550000007,-4.347860199999957],[120.08907210000007,-4.350397899999962],[120.0911301000001,-4.3559264],[120.095707,-4.362061],[120.092873,-4.378756099999976],[120.09619680000003,-4.385617699999955],[120.09473590000005,-4.392126699999949],[120.07993090000002,-4.401455899999974],[120.0678842000001,-4.4026011],[120.06156870000007,-4.399883799999941],[120.05434910000008,-4.399566099999959],[120.04896190000011,-4.397434499999974],[120.053169,-4.415327299999944],[120.064553,-4.432981599999948],[120.064475,-4.436071199999958],[120.06196480000006,-4.440081799999973],[120.06240490000005,-4.449416699999972],[120.05996790000006,-4.4532139],[120.05703630000005,-4.4645196],[120.05971650000004,-4.470547599999975],[120.05851970000003,-4.480119799999954],[120.06057740000006,-4.486714599999971],[120.05825550000009,-4.493463299999974],[120.0592898000001,-4.497316299999966],[120.0581585000001,-4.500004199999978],[120.04817830000002,-4.504210099999966],[120.03849570000011,-4.520324799999969],[120.03210060000004,-4.523262],[120.0194001000001,-4.523941499999978],[120.01408120000008,-4.526422199999956],[119.99394550000011,-4.5208147],[119.99098960000003,-4.524305199999958],[119.98678070000005,-4.5253616],[119.98495350000007,-4.533111699999949],[119.9806536000001,-4.534340099999952],[119.97632970000006,-4.538784899999939],[119.97077160000003,-4.531760799999972],[119.9679291000001,-4.533272299999965],[119.96237870000004,-4.532554199999936],[119.96028860000001,-4.535363599999926],[119.95338460000005,-4.532609099999945],[119.95166170000005,-4.533727499999941],[119.94407220000005,-4.533044699999948],[119.94236610000007,-4.53118],[119.94117670000003,-4.533454099999972],[119.93876130000001,-4.533789199999944],[119.93101350000006,-4.529980799999976],[119.9284391000001,-4.530515299999934],[119.92139330000009,-4.525529399999925],[119.91845200000012,-4.525911699999938],[119.91051530000004,-4.51961],[119.90146090000007,-4.515761199999929],[119.898318,-4.516812899999934],[119.89181850000011,-4.523534],[119.88717310000004,-4.524456099999952],[119.87463520000006,-4.532936099999972],[119.86836190000008,-4.528506599999957],[119.85921050000002,-4.529238599999928],[119.8549925000001,-4.537721599999941],[119.85377360000007,-4.537166199999945],[119.85321070000009,-4.533373499999925],[119.85131270000011,-4.5322696],[119.845136,-4.532212699999945],[119.82140780000009,-4.5273271],[119.81272970000009,-4.530351799999949],[119.81056260000003,-4.535483599999964],[119.80625120000002,-4.536602099999925],[119.8030308000001,-4.535591699999941],[119.80671940000002,-4.544801299999961],[119.8073597,-4.551575799999966],[119.798119,-4.565202],[119.8004648000001,-4.5804817],[119.79769790000012,-4.595718199999965],[119.79497620000006,-4.598466799999926],[119.78938920000007,-4.599917399999981],[119.789664,-4.604550899999936],[119.78852620000009,-4.605919799999981],[119.78541070000006,-4.606121799999926],[119.77965110000002,-4.610391399999969],[119.774822,-4.611539799999946],[119.77214770000012,-4.614505099999974],[119.7646535,-4.616486299999963],[119.76364200000012,-4.6177914],[119.76409400000011,-4.623735499999952],[119.75758010000004,-4.626779099999965],[119.75761620000003,-4.632291099999975],[119.75414650000005,-4.641657299999963],[119.75792950000005,-4.650660599999981],[119.75634,-4.658311599999934],[119.76116590000004,-4.667220399999962],[119.758256,-4.679765199999963],[119.75999650000006,-4.684818599999971],[119.76643250000006,-4.685778099999936],[119.77104930000007,-4.6888049],[119.7770564000001,-4.687208699999928],[119.78700630000003,-4.689012399999967],[119.8134841000001,-4.704917499999965],[119.81658870000001,-4.713407599999925],[119.82276410000009,-4.721614],[119.8210011000001,-4.728831799999966],[119.82244060000005,-4.7384671],[119.82140360000005,-4.742844699999978],[119.80789510000011,-4.757221699999945],[119.80606220000004,-4.761819399999979],[119.79984500000012,-4.765260399999931],[119.79518150000001,-4.764791499999944],[119.79078130000005,-4.761664899999971],[119.786679,-4.753134599999953],[119.76975450000009,-4.755108499999949],[119.765971,-4.761331599999949],[119.76612910000006,-4.764123199999972],[119.76346930000011,-4.769908],[119.75735680000003,-4.775085],[119.75539930000002,-4.775127599999962],[119.75451250000003,-4.7824732],[119.75641870000004,-4.783982499999979],[119.75700770000003,-4.782036199999936],[119.7574585000001,-4.783647499999972],[119.759941,-4.783152099999938],[119.75996750000002,-4.785179199999959],[119.75783590000003,-4.785379699999964],[119.75989770000001,-4.787823699999933],[119.75473000000011,-4.790090899999939],[119.75340440000002,-4.789897499999938],[119.75460690000011,-4.788807799999972],[119.75162310000007,-4.7889111],[119.7493449000001,-4.790932199999929],[119.7500768000001,-4.794845599999974],[119.74745660000008,-4.794759699999929],[119.748682,-4.797059],[119.74473540000008,-4.797112299999981],[119.74396390000004,-4.796350099999927],[119.74516640000002,-4.795244699999955],[119.74363610000012,-4.794876599999952],[119.741233,-4.796327299999973],[119.73835550000001,-4.795699399999933],[119.73730020000005,-4.797140599999977],[119.73561360000008,-4.796170299999972],[119.73354210000002,-4.797542599999929],[119.732698,-4.800438399999962],[119.72967430000006,-4.799005399999942],[119.72360970000011,-4.787209899999937],[119.7205848000001,-4.788658799999951],[119.7076604,-4.787436099999979],[119.6989119000001,-4.789278099999933],[119.6968458,-4.788008399999967]]]]},"properties":{"shapeName":"Bone","shapeISO":"","shapeID":"22746128B22012061223704","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[123.53337270000009,0.576874500000031],[123.520704,0.584323],[123.50911220000012,0.584424600000034],[123.503403,0.591437900000074],[123.48778740000012,0.601424100000031],[123.48919830000011,0.611904800000048],[123.49219340000002,0.619130600000062],[123.491001,0.623032800000033],[123.486165,0.626511900000025],[123.48064670000008,0.627372700000024],[123.4768825000001,0.62969570000007],[123.4625191,0.632171300000039],[123.45914,0.636085700000024],[123.4549905,0.635483900000054],[123.42898960000002,0.641437400000029],[123.42335710000009,0.639072800000065],[123.3991152000001,0.640883200000076],[123.38423330000012,0.639687600000059],[123.364754,0.651540500000067],[123.35944830000005,0.651365200000043],[123.35453030000008,0.657261900000037],[123.35426510000002,0.663096100000075],[123.34900360000006,0.66748380000007],[123.34826710000004,0.670697500000074],[123.34279170000002,0.675128200000074],[123.3422359000001,0.679644600000074],[123.33896960000004,0.683542800000055],[123.3285098,0.688686700000062],[123.322393,0.698537100000067],[123.3024319000001,0.698029],[123.2975977000001,0.695878700000037],[123.29353370000001,0.696696200000019],[123.28939070000001,0.69562250000007],[123.282204,0.699107],[123.273648,0.698161200000072],[123.25204860000008,0.717571400000054],[123.247145,0.716973900000028],[123.24711380000008,0.721896800000025],[123.24925140000005,0.726784900000041],[123.24621920000004,0.734549400000049],[123.24765350000007,0.74437910000006],[123.25140580000004,0.753639700000065],[123.23994390000007,0.755699800000059],[123.22951530000012,0.762611700000036],[123.2273752000001,0.762782400000049],[123.22248090000005,0.761060300000054],[123.21419030000004,0.762701800000059],[123.2074573000001,0.757244700000058],[123.19292750000011,0.754778200000032],[123.18796830000008,0.756424500000037],[123.175331,0.756425500000034],[123.16801050000004,0.753244400000028],[123.1636224,0.758509500000059],[123.15989460000003,0.776053400000023],[123.15214920000005,0.770992],[123.14892930000008,0.769719400000042],[123.1442168000001,0.770586800000046],[123.13421670000002,0.765174400000035],[123.13083620000009,0.770700600000055],[123.12548010000012,0.772189700000069],[123.12551280000002,0.780806600000062],[123.12317460000008,0.787942300000054],[123.09911280000006,0.795731],[123.09424330000002,0.798378],[123.09112310000012,0.803301900000065],[123.08475,0.80579460000007],[123.07430740000007,0.805850400000054],[123.069862,0.803079900000057],[123.06974290000005,0.796083900000042],[123.063555,0.780623200000036],[123.06601820000003,0.777459400000055],[123.07811450000008,0.773182],[123.07578990000002,0.771463200000028],[123.07650910000007,0.769801200000074],[123.0736078000001,0.763711800000067],[123.07642710000005,0.755608800000061],[123.076648,0.747509700000023],[123.07378470000003,0.742076200000042],[123.07882540000003,0.728008300000056],[123.07653040000002,0.721772600000065],[123.07895950000011,0.717895300000066],[123.07609930000001,0.717781400000035],[123.07570880000003,0.712855500000046],[123.07825900000012,0.707524400000068],[123.07564470000011,0.704401],[123.07951730000002,0.699635],[123.0805937,0.695011800000032],[123.07816480000008,0.694729700000039],[123.0768273000001,0.689998500000058],[123.07323380000003,0.687971600000026],[123.074153,0.683662500000025],[123.07078260000003,0.675226800000075],[123.06200080000008,0.668800500000032],[123.0556252,0.652539200000035],[123.04266630000006,0.634051],[123.03658830000006,0.628227400000071],[123.04576440000005,0.620329200000072],[123.05743120000011,0.615162800000064],[123.06067710000002,0.615743200000054],[123.06528870000011,0.611301600000047],[123.06870820000006,0.611265900000035],[123.07401450000009,0.608166100000062],[123.0712291000001,0.608575700000074],[123.06967480000003,0.607163400000047],[123.06733550000001,0.597778600000026],[123.0611024000001,0.589081600000043],[123.09101950000002,0.580333800000062],[123.09014190000005,0.566298900000049],[123.08764660000008,0.554822700000045],[123.08915050000007,0.552391],[123.08007820000012,0.531890200000021],[123.07923920000007,0.523035800000059],[123.08213340000009,0.515767200000028],[123.08465760000001,0.514198],[123.08758420000004,0.508976800000028],[123.09654320000004,0.507176500000071],[123.100185,0.502911300000051],[123.09605140000008,0.485499300000072],[123.08687320000001,0.479886400000055],[123.08643230000007,0.478238900000065],[123.08860620000007,0.477393],[123.09111990000008,0.478257900000074],[123.09989310000003,0.475530900000024],[123.10136420000003,0.472809],[123.10445770000001,0.471311100000037],[123.10654160000001,0.466857600000026],[123.11289120000004,0.46374110000005],[123.11396270000012,0.461674300000027],[123.11617880000006,0.461936300000048],[123.11689010000009,0.458531300000061],[123.12165830000004,0.456372300000055],[123.12146780000012,0.45148690000002],[123.1246499,0.44990910000007],[123.126326,0.44695020000006],[123.12535220000007,0.443342],[123.12666030000003,0.441765900000064],[123.13036670000008,0.442136500000061],[123.13189780000005,0.440893100000039],[123.13231040000005,0.434476200000063],[123.13727540000002,0.429062500000043],[123.13812830000006,0.424585100000058],[123.1408401000001,0.42270730000007],[123.1424310000001,0.423753],[123.14633690000005,0.422691600000064],[123.14447960000007,0.415642800000057],[123.15238040000008,0.413724300000069],[123.15332150000006,0.411931100000061],[123.15235220000011,0.408062700000073],[123.15573710000001,0.406415300000049],[123.15647410000008,0.403706],[123.16206570000008,0.399421800000027],[123.16511070000001,0.400802900000031],[123.17189040000005,0.398466300000052],[123.17721930000005,0.399018],[123.18725620000009,0.396210200000041],[123.190962,0.393663400000037],[123.19453110000006,0.393797800000073],[123.207724,0.377424700000063],[123.21669220000001,0.372030600000073],[123.21593,0.365207400000031],[123.22203310000009,0.363697100000024],[123.22254270000008,0.359286700000041],[123.22811990000002,0.348469400000056],[123.23282390000008,0.346904600000073],[123.23514580000005,0.348743500000069],[123.23650980000002,0.345577300000059],[123.24139260000004,0.344737900000041],[123.24662740000008,0.341662],[123.24783920000004,0.338541900000052],[123.25146120000011,0.337656500000037],[123.25381450000009,0.333622100000071],[123.25691170000005,0.333189200000049],[123.26639770000008,0.32713780000006],[123.26758280000001,0.322294100000022],[123.27677050000011,0.324069300000076],[123.27964770000006,0.322123500000032],[123.27898660000005,0.318842700000062],[123.29201680000006,0.315717200000051],[123.29395910000005,0.319660100000021],[123.29583180000009,0.320463200000063],[123.30001520000008,0.317957600000057],[123.30081240000004,0.315999300000044],[123.314206,0.313381800000059],[123.32659860000001,0.313396500000067],[123.32948920000001,0.311261800000068],[123.33398340000008,0.310872500000073],[123.345214,0.306258900000046],[123.35468990000004,0.309775100000024],[123.35872830000005,0.314566500000069],[123.36750490000009,0.312058800000045],[123.3687605,0.313314400000024],[123.3710546000001,0.312091700000053],[123.37852410000005,0.312785100000042],[123.3813374,0.311416500000064],[123.39972220000004,0.315422300000023],[123.41591670000003,0.311784800000055],[123.43539020000003,0.316972],[123.43844160000003,0.319015200000024],[123.44388690000005,0.327581500000065],[123.45280480000008,0.333414300000072],[123.45607940000002,0.33411650000005],[123.45693580000011,0.336835400000041],[123.45916690000001,0.337626400000033],[123.4620662000001,0.335542300000043],[123.46575860000007,0.336820600000067],[123.46354,0.333873100000062],[123.46378260000006,0.329400900000053],[123.46895730000006,0.322938700000066],[123.4722829000001,0.323690300000067],[123.47122410000009,0.322004200000038],[123.47702270000002,0.31697390000005],[123.48229070000002,0.321854400000063],[123.482876,0.325385900000072],[123.48082880000004,0.336274600000024],[123.4836567000001,0.339707800000042],[123.48004920000005,0.346869],[123.48034210000003,0.353735700000072],[123.48473020000006,0.356089800000063],[123.49165340000002,0.355795100000023],[123.49418870000011,0.357364500000074],[123.49156470000003,0.365650900000048],[123.496733,0.371045800000047],[123.49790380000002,0.382130600000039],[123.51102480000009,0.396343600000023],[123.530017,0.408479300000067],[123.53987130000007,0.426017200000047],[123.5501183,0.433461800000032],[123.5474028000001,0.442905100000075],[123.53761020000002,0.44524750000005],[123.52591710000002,0.453608200000076],[123.52487480000002,0.462035400000048],[123.52360560000011,0.463036700000032],[123.52454060000002,0.467214300000023],[123.52299850000009,0.490445100000045],[123.54515740000011,0.496829300000059],[123.5522946000001,0.51071410000003],[123.54974670000001,0.514181600000029],[123.54732260000003,0.523015900000075],[123.53067440000007,0.53440310000002],[123.52792690000001,0.540936],[123.52882020000004,0.550310900000056],[123.53353230000005,0.565324900000064],[123.532373,0.573055400000044],[123.53337270000009,0.576874500000031]]]},"properties":{"shapeName":"Bone Bolango","shapeISO":"","shapeID":"22746128B9214476697769","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[140.8483331000001,-6.618179099999963],[140.8421403000001,-6.614420799999948],[140.84033280000006,-6.6107198],[140.84119350000003,-6.609859],[140.844206,-6.608568],[140.8507475,-6.609428699999967],[140.866963,-6.605239099999949],[140.87239610000006,-6.602039799999943],[140.87907680000012,-6.593367499999943],[140.88367460000006,-6.5917751],[140.88837530000012,-6.594672299999957],[140.8890639000001,-6.597089199999971],[140.88728230000004,-6.603977499999928],[140.89016720000006,-6.6042891],[140.89400850000004,-6.597865],[140.90525370000012,-6.589615099999946],[140.9102514000001,-6.578035499999942],[140.9095612000001,-6.5703063],[140.9056091000001,-6.568390799999975],[140.9033313000001,-6.568961299999955],[140.8926325000001,-6.575568199999964],[140.8896056000001,-6.575567699999965],[140.8858643000001,-6.5714979],[140.88659670000004,-6.565394899999944],[140.88940430000002,-6.560608399999978],[140.89615660000004,-6.558421599999974],[140.90722660000006,-6.558219],[140.91232360000004,-6.555237499999976],[140.93057250000004,-6.563009299999976],[140.93559270000003,-6.561693699999978],[140.93649290000008,-6.559539799999925],[140.93518990000007,-6.556922099999952],[140.9241638000001,-6.55511],[140.9208221,-6.550202799999965],[140.92764280000006,-6.542425199999968],[140.92894090000004,-6.537971399999947],[140.92628950000005,-6.527169],[140.91908260000002,-6.515497699999969],[140.91908260000002,-6.504846599999951],[140.92303470000002,-6.496110899999962],[140.92872620000003,-6.491324899999938],[140.94775390000007,-6.491566699999964],[140.95732120000002,-6.489413299999967],[140.95959470000003,-6.486301899999944],[140.94671070000004,-6.4792666],[140.9451752000001,-6.474333299999955],[140.94654850000006,-6.4688287],[140.9446411,-6.468110599999932],[140.93738070000006,-6.471051699999975],[140.93016050000006,-6.470980599999962],[140.92382810000004,-6.467269899999962],[140.92155460000004,-6.460807299999942],[140.92304990000002,-6.456259699999976],[140.93441770000004,-6.452910399999951],[140.93835450000006,-6.447286599999927],[140.93824770000003,-6.445132299999955],[140.9348907000001,-6.443337],[140.92424010000002,-6.441540199999963],[140.91933310000002,-6.438492],[140.91514590000008,-6.430768],[140.91539000000012,-6.426459799999975],[140.91766360000008,-6.4192801],[140.926545,-6.416183099999955],[140.9308913000001,-6.419628799999941],[140.93669130000012,-6.428138699999977],[140.94673160000002,-6.436516799999936],[140.9514008000001,-6.434483099999966],[140.95532120000007,-6.426675099999954],[140.95600890000003,-6.420362],[140.95516970000006,-6.418806099999927],[140.94753720000006,-6.419154599999956],[140.9418945000001,-6.417129],[140.94129940000005,-6.411264899999935],[140.95027160000006,-6.408034799999939],[140.9572144000001,-6.399777899999947],[140.9617462000001,-6.3967867],[140.97731020000003,-6.393675799999926],[140.9811859,-6.3897266],[140.98059080000007,-6.386136499999964],[140.978618,-6.384883399999978],[140.97077940000008,-6.383264099999963],[140.96192930000007,-6.383741899999961],[140.95117190000008,-6.390682199999958],[140.94674680000003,-6.390442399999927],[140.94435120000003,-6.389245499999959],[140.94076240000004,-6.383961499999941],[140.94052120000003,-6.378115199999968],[140.94219940000005,-6.373209],[140.9454346000001,-6.3694992],[140.95236210000007,-6.371773699999949],[140.96170040000004,-6.371415599999978],[140.977005,-6.365073699999925],[140.977005,-6.363398599999925],[140.97401430000002,-6.361483599999929],[140.96563720000006,-6.359328699999935],[140.95958120000012,-6.354902299999935],[140.95835880000004,-6.351681199999973],[140.95927430000006,-6.348947],[140.9660034000001,-6.347654299999931],[140.96771290000004,-6.3430661],[140.96711730000004,-6.3408194],[140.9605560000001,-6.335633299999927],[140.95817570000008,-6.330845799999963],[140.95817570000008,-6.325819499999966],[140.9606781000001,-6.322468799999967],[140.97360230000004,-6.325820399999941],[140.98657230000003,-6.319119499999942],[140.99476360000006,-6.31885],[141.0000000000001,-6.320285799999965],[140.99999910000008,-5.802588699999944],[140.99974040000006,-5.294657699999959],[140.76444790000005,-5.258234799999968],[140.230737,-5.183647699999938],[140.1470776000001,-5.169007299999976],[140.0981468000001,-5.1604444],[139.64443370000004,-5.041069499999935],[139.70497060000002,-5.235447799999974],[139.72659450000003,-5.438379899999973],[139.72740440000007,-5.716531799999927],[139.869653,-6.191527699999938],[139.8350819000001,-6.194984799999929],[139.8254019000001,-6.206739],[139.8226363000001,-6.221950299999946],[139.8226363000001,-6.238544399999967],[139.82471050000004,-6.257904199999928],[139.8330076000001,-6.269658399999969],[139.8565159000001,-6.281412599999953],[139.8585902000001,-6.286944],[139.85375030000012,-6.306303799999966],[139.85444170000005,-6.3242808],[139.84821890000012,-6.340183499999966],[139.83646470000008,-6.354011899999932],[139.80051070000002,-6.389274499999942],[139.78806510000004,-6.417622799999947],[140.07240350000006,-6.433134799999948],[140.0647858000001,-6.868014199999948],[140.05781510000008,-7.266099299999951],[140.42627,-6.964091599999961],[140.8483331000001,-6.618179099999963]]]},"properties":{"shapeName":"Boven Digoel","shapeISO":"","shapeID":"22746128B78169836601950","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[110.82794190000004,-7.247489899999948],[110.82784270000008,-7.236678599999948],[110.83361050000008,-7.230077199999926],[110.83824160000006,-7.221112199999936],[110.84329810000008,-7.2191126],[110.84303740000007,-7.2164009],[110.84591060000008,-7.214438799999925],[110.85147090000004,-7.217464899999925],[110.85478590000008,-7.2155203],[110.85834940000007,-7.215797799999962],[110.85768650000006,-7.210318499999971],[110.85292050000004,-7.206766099999925],[110.84925080000005,-7.201468],[110.84583280000004,-7.202770699999974],[110.84461970000007,-7.200379799999951],[110.83333590000007,-7.197927399999969],[110.82747650000005,-7.202247099999965],[110.82633210000006,-7.2088003],[110.82419580000004,-7.212311299999953],[110.81203460000006,-7.2187304],[110.80879210000006,-7.223302299999943],[110.80802920000008,-7.228659599999958],[110.79357910000004,-7.240426499999955],[110.78878020000008,-7.243477799999937],[110.78084560000008,-7.245309799999973],[110.76679230000008,-7.244444299999941],[110.77191930000004,-7.235430199999939],[110.77034090000006,-7.226678599999957],[110.77218450000004,-7.226264499999957],[110.77301790000007,-7.223655699999938],[110.77774050000005,-7.222087399999964],[110.77636690000008,-7.221308699999952],[110.77669530000009,-7.2192926],[110.78024290000008,-7.213399399999957],[110.78102870000004,-7.203849299999945],[110.78550720000004,-7.193872899999974],[110.78163150000006,-7.189200399999947],[110.77944940000003,-7.189055899999971],[110.77858730000008,-7.191267499999981],[110.77630620000008,-7.190982799999972],[110.77765160000007,-7.1861821],[110.77043850000007,-7.186440699999935],[110.76843910000008,-7.1834482],[110.76419120000008,-7.185045399999979],[110.76247860000007,-7.187420199999963],[110.76023860000004,-7.186352199999931],[110.759552,-7.182340099999976],[110.76090240000008,-7.179819099999975],[110.76644130000005,-7.180337899999927],[110.76943510000007,-7.177422799999931],[110.76408120000008,-7.1743431],[110.76455990000005,-7.175886699999978],[110.760425,-7.175427199999945],[110.75782780000009,-7.170360499999958],[110.74383550000005,-7.164280399999939],[110.743248,-7.155902799999978],[110.74726870000006,-7.153137699999945],[110.74784850000009,-7.149926199999925],[110.74996190000007,-7.148775099999966],[110.74567410000009,-7.140473799999938],[110.742363,-7.139133399999935],[110.74161530000003,-7.140994099999944],[110.73452,-7.143651],[110.72790530000009,-7.152789599999949],[110.727829,-7.157229899999948],[110.72368620000009,-7.16502],[110.71312710000007,-7.175738299999978],[110.708168,-7.178855399999975],[110.70408630000009,-7.185118199999977],[110.69744110000005,-7.185339399999975],[110.69217680000008,-7.187181],[110.69017790000004,-7.189354399999957],[110.68920140000006,-7.191747199999952],[110.69098660000009,-7.193323599999928],[110.69136810000003,-7.198330899999974],[110.69306180000007,-7.199051299999951],[110.69281770000003,-7.205294099999946],[110.69669340000007,-7.207758899999931],[110.69863130000005,-7.207048899999961],[110.70473480000004,-7.208796],[110.70359040000005,-7.212056599999926],[110.70534520000007,-7.212173499999949],[110.70583340000007,-7.215096899999935],[110.70478820000005,-7.217060099999969],[110.698883,-7.2195358],[110.69747160000009,-7.222861299999977],[110.69436650000006,-7.224107699999934],[110.69307710000004,-7.229238],[110.69460630000009,-7.230680699999937],[110.692131,-7.237511099999949],[110.69248780000004,-7.240438199999971],[110.68296810000004,-7.241555699999935],[110.67379760000006,-7.237567899999931],[110.67218780000007,-7.234204299999931],[110.666893,-7.230979399999967],[110.66902160000006,-7.228826499999968],[110.66796880000004,-7.227539499999978],[110.66218570000007,-7.223627499999964],[110.661705,-7.225249299999973],[110.65932460000005,-7.224726199999964],[110.65624240000005,-7.226382699999931],[110.64804080000005,-7.223061099999939],[110.64407350000005,-7.219048499999928],[110.62759910000005,-7.219434899999953],[110.62680050000006,-7.224632199999974],[110.624095,-7.229494399999965],[110.62397870000007,-7.2340262],[110.62833420000004,-7.247451],[110.63384640000004,-7.253724799999929],[110.63634490000004,-7.263922699999966],[110.63557430000009,-7.265270199999975],[110.63087910000007,-7.265693599999963],[110.62502840000008,-7.270803899999976],[110.62102040000008,-7.268511],[110.62206570000006,-7.276927699999931],[110.62464820000008,-7.278787899999941],[110.62392430000006,-7.285586299999977],[110.61766770000008,-7.286287399999935],[110.621675,-7.289278799999977],[110.60459140000006,-7.290088599999933],[110.60107420000008,-7.291633599999955],[110.60355380000004,-7.300034499999981],[110.59929590000007,-7.307096399999978],[110.59931950000004,-7.315480699999966],[110.60307080000007,-7.322586699999931],[110.61005980000004,-7.324561899999935],[110.60786,-7.33101],[110.61277930000006,-7.333580899999959],[110.62226270000008,-7.332233],[110.63107630000007,-7.327065199999936],[110.63581080000006,-7.328152599999953],[110.64080960000007,-7.325768799999935],[110.64267960000006,-7.326009099999965],[110.64382780000005,-7.331416099999956],[110.64657970000007,-7.332577499999957],[110.64292220000004,-7.334264399999938],[110.63995430000006,-7.338905699999941],[110.63971740000005,-7.343760599999939],[110.64098640000009,-7.343729699999926],[110.640167,-7.350748199999941],[110.63818,-7.35034],[110.63612720000003,-7.352390899999932],[110.63598270000006,-7.361517],[110.62899810000005,-7.369632599999932],[110.63200480000006,-7.3727699],[110.628715,-7.376339599999937],[110.62861520000007,-7.378765099999953],[110.62479110000004,-7.382326199999966],[110.62961620000004,-7.384713799999929],[110.62883760000005,-7.386784099999943],[110.63472750000005,-7.389559199999951],[110.63455770000007,-7.400518299999931],[110.63813280000005,-7.402990699999975],[110.63817320000004,-7.4064605],[110.63569090000004,-7.406351],[110.63515260000008,-7.412095499999964],[110.63665970000005,-7.413218299999926],[110.63637830000005,-7.416296],[110.63184040000004,-7.418352299999981],[110.63257860000004,-7.421053299999926],[110.63479960000006,-7.422490699999969],[110.63372520000007,-7.425871399999949],[110.63579040000008,-7.429658899999936],[110.632262,-7.433632],[110.63141680000007,-7.4390912],[110.625944,-7.441443699999979],[110.62312380000009,-7.445838499999979],[110.62222370000006,-7.444314199999951],[110.61878560000008,-7.446454899999935],[110.62184140000005,-7.448860099999933],[110.62129970000007,-7.454279399999962],[110.62354280000005,-7.455359],[110.63099670000008,-7.451379699999961],[110.63773350000008,-7.452123599999936],[110.64038850000009,-7.448673699999972],[110.64440920000004,-7.446449299999927],[110.648809,-7.447945399999981],[110.64524840000007,-7.451750199999935],[110.639061,-7.453470699999968],[110.63751220000006,-7.455549699999949],[110.63219450000008,-7.457651099999964],[110.62922670000006,-7.464358799999957],[110.63394240000008,-7.467248299999937],[110.635437,-7.470669199999975],[110.63922880000007,-7.472426899999959],[110.640686,-7.470036],[110.65013890000006,-7.470604899999955],[110.65077970000004,-7.471797899999956],[110.66148350000009,-7.474662299999977],[110.65543360000004,-7.4805083],[110.65415190000004,-7.484476099999938],[110.65472410000007,-7.486768199999972],[110.658165,-7.487848699999972],[110.65832520000004,-7.491913799999963],[110.66076650000008,-7.496318799999926],[110.65732570000006,-7.496489],[110.65670120000004,-7.495117499999935],[110.64878950000008,-7.492947099999981],[110.64736880000004,-7.491175299999952],[110.64393490000003,-7.493590099999949],[110.63939780000004,-7.494065499999977],[110.63915110000005,-7.495311399999935],[110.63338980000009,-7.490104799999926],[110.62793850000008,-7.491878899999961],[110.62179620000006,-7.4914605],[110.61838620000009,-7.488186699999972],[110.61500720000004,-7.489645699999926],[110.60600170000004,-7.4877506],[110.60465650000003,-7.489775399999928],[110.60388190000003,-7.488738499999954],[110.60206140000008,-7.490402499999959],[110.60178640000004,-7.4829848],[110.596139,-7.482943099999943],[110.59610660000004,-7.480565399999932],[110.59865930000007,-7.481198799999959],[110.59893240000008,-7.480170899999962],[110.59396220000008,-7.476197399999933],[110.59075070000006,-7.476008599999943],[110.58995040000008,-7.472604399999966],[110.58640350000007,-7.472023799999931],[110.58214180000004,-7.466337],[110.57880950000003,-7.465528399999926],[110.57875190000004,-7.463036899999963],[110.57736470000009,-7.462189],[110.58913510000008,-7.464817],[110.58926460000004,-7.460963499999934],[110.58635490000006,-7.460085099999958],[110.587524,-7.456358299999977],[110.58566730000007,-7.455154599999958],[110.58597370000007,-7.452380099999971],[110.58379420000006,-7.451964199999964],[110.58551520000009,-7.451348499999938],[110.57871640000008,-7.450032599999929],[110.58063510000005,-7.448847699999931],[110.580407,-7.445115],[110.58314640000009,-7.445045199999981],[110.58282380000009,-7.446790499999963],[110.58605860000006,-7.445968],[110.58441630000004,-7.448809899999958],[110.59379380000007,-7.450605199999927],[110.59748170000006,-7.454072699999926],[110.599778,-7.447846099999936],[110.59319120000004,-7.444961099999944],[110.58910940000004,-7.4459223],[110.58945680000005,-7.442423699999949],[110.58596580000005,-7.4419137],[110.58558950000008,-7.437006699999927],[110.58386810000007,-7.435715099999925],[110.58258640000008,-7.429673699999967],[110.57975130000005,-7.4252814],[110.57685980000008,-7.423011199999962],[110.57394650000003,-7.423528599999941],[110.57322670000008,-7.422477399999934],[110.57576290000009,-7.431692399999974],[110.57275290000007,-7.430749599999956],[110.57379940000004,-7.432517399999938],[110.57290470000004,-7.435196699999949],[110.57419690000006,-7.436173399999973],[110.57143630000007,-7.440421399999934],[110.56738590000003,-7.4402625],[110.56980940000005,-7.425171599999942],[110.56720040000005,-7.424909599999978],[110.56620060000006,-7.426724599999943],[110.56462130000006,-7.4258618],[110.56232930000004,-7.430809299999964],[110.55884720000006,-7.431430399999954],[110.55958080000005,-7.436421899999971],[110.55815460000008,-7.4417394],[110.56049250000007,-7.451231499999949],[110.55534980000004,-7.4517102],[110.55099840000008,-7.448236799999961],[110.551008,-7.444554099999948],[110.55404110000006,-7.444626899999946],[110.55425720000005,-7.442158399999926],[110.547482,-7.438861799999927],[110.54783020000008,-7.434724699999947],[110.54596050000004,-7.4349792],[110.544545,-7.433067599999958],[110.53769680000005,-7.4347567],[110.53075410000008,-7.433299499999976],[110.51758940000008,-7.438728499999968],[110.51345950000007,-7.428436399999953],[110.51459020000004,-7.4274033],[110.51235120000007,-7.421458499999972],[110.51556860000005,-7.419562099999951],[110.51727890000006,-7.416361],[110.51129150000008,-7.414896899999974],[110.50811560000005,-7.412044799999933],[110.50918340000004,-7.409805799999958],[110.51125350000007,-7.4095],[110.50894090000008,-7.407241499999941],[110.50629770000006,-7.408273299999962],[110.5042,-7.411487899999941],[110.49756860000008,-7.410822399999972],[110.48359760000005,-7.407386899999949],[110.48352210000007,-7.402409699999964],[110.47731520000008,-7.405499199999952],[110.47560880000009,-7.404447499999947],[110.463885,-7.409109499999943],[110.45871750000003,-7.414044099999956],[110.45647430000008,-7.422580699999969],[110.44840240000008,-7.431370199999947],[110.447319,-7.436971599999936],[110.44297030000007,-7.444252],[110.44270090000003,-7.449649299999976],[110.43929290000005,-7.453609399999948],[110.43430330000007,-7.4648485],[110.43530280000004,-7.469425199999932],[110.43312070000007,-7.477849499999934],[110.42669680000006,-7.485817399999974],[110.41387180000004,-7.497133199999951],[110.41098020000004,-7.496762699999977],[110.40826420000008,-7.4991412],[110.40627740000008,-7.4973855],[110.40219880000006,-7.499002899999937],[110.39571380000007,-7.498441199999945],[110.39529420000008,-7.500715699999944],[110.39396670000008,-7.500298899999962],[110.38937380000004,-7.506820699999935],[110.38005670000007,-7.5117463],[110.38081360000007,-7.514340899999979],[110.38717560000003,-7.513356499999929],[110.40523530000007,-7.517093199999977],[110.42673490000004,-7.529259199999956],[110.42942810000005,-7.532286099999965],[110.43983460000004,-7.536878099999967],[110.44607540000004,-7.5418973],[110.44936540000003,-7.544105299999956],[110.45664380000005,-7.541032499999972],[110.45948960000004,-7.541840799999932],[110.47751810000005,-7.554423899999961],[110.47823020000004,-7.555877899999928],[110.47686940000006,-7.557051499999943],[110.488773,-7.573291799999936],[110.48931290000007,-7.576714199999969],[110.49217260000006,-7.580499199999963],[110.49143320000007,-7.581898399999943],[110.49322660000007,-7.582332099999974],[110.49325210000006,-7.583662799999956],[110.49611250000004,-7.583638899999926],[110.49538810000007,-7.584866899999952],[110.49701840000006,-7.584311599999978],[110.49909220000006,-7.587749299999928],[110.50009030000007,-7.586952],[110.50105010000004,-7.588664899999969],[110.50647740000005,-7.5903301],[110.50848480000008,-7.593244499999969],[110.506687,-7.595659499999954],[110.51469020000008,-7.602179699999965],[110.51673680000005,-7.600753299999951],[110.52346540000008,-7.6041664],[110.52311710000004,-7.605976599999963],[110.51317250000005,-7.605672799999979],[110.51298450000007,-7.610762199999954],[110.52092740000006,-7.617826899999955],[110.52226260000003,-7.621484699999939],[110.53113870000004,-7.626382099999944],[110.53235630000006,-7.629428799999971],[110.53876,-7.63505],[110.54005,-7.63454],[110.53404480000006,-7.628134399999965],[110.53572730000008,-7.6267074],[110.54076380000004,-7.628395099999977],[110.54517260000006,-7.625572399999953],[110.542401,-7.6166274],[110.55037820000007,-7.609216],[110.54476130000006,-7.604738099999963],[110.547656,-7.600784399999952],[110.55046990000005,-7.603232299999945],[110.55182730000007,-7.599917199999936],[110.55390760000006,-7.6003941],[110.55958430000004,-7.594966699999929],[110.56123680000007,-7.596280299999933],[110.56677670000005,-7.587909899999943],[110.57076710000007,-7.588423199999966],[110.57347210000006,-7.584125499999971],[110.57779820000007,-7.584600199999954],[110.58181450000006,-7.587838],[110.58776090000003,-7.586671799999976],[110.58952330000005,-7.58432],[110.59710690000009,-7.5883941],[110.59968120000008,-7.583303],[110.60046940000007,-7.575005199999964],[110.597849,-7.574675399999933],[110.59867350000007,-7.5705931],[110.60034940000008,-7.569154699999956],[110.60073880000004,-7.570546299999933],[110.61161040000007,-7.576182299999971],[110.62949370000007,-7.581193399999961],[110.64129870000005,-7.586257299999943],[110.64838410000004,-7.586676599999976],[110.64918390000008,-7.587742299999945],[110.65028710000007,-7.5850602],[110.65430760000004,-7.587144799999976],[110.65722440000008,-7.586324799999943],[110.65904240000003,-7.588846799999942],[110.661127,-7.5876511],[110.661203,-7.585568799999976],[110.66730580000007,-7.584134499999948],[110.678374,-7.588431799999967],[110.68904350000008,-7.5855204],[110.68821740000004,-7.589388399999962],[110.69022490000009,-7.588682],[110.692983,-7.591380599999979],[110.70303120000005,-7.593487499999981],[110.70305950000005,-7.592163899999946],[110.71313190000006,-7.584387],[110.71538410000005,-7.578603099999953],[110.71239790000004,-7.575913599999978],[110.71484210000006,-7.5739425],[110.71574160000006,-7.575409699999966],[110.72150130000006,-7.565867599999933],[110.72018710000009,-7.565194399999939],[110.72040560000005,-7.562042699999949],[110.71902470000003,-7.560570699999971],[110.72000120000007,-7.558913699999948],[110.72173790000005,-7.559598799999947],[110.72642060000004,-7.5538472],[110.72177890000006,-7.550193799999931],[110.71157870000008,-7.547888799999953],[110.71341260000008,-7.541625099999976],[110.70835870000008,-7.540188299999954],[110.70925140000008,-7.532262299999957],[110.71219640000004,-7.533010899999965],[110.71558380000005,-7.531440699999962],[110.72055820000008,-7.5316739],[110.72393030000006,-7.530196699999976],[110.72436520000008,-7.527540199999976],[110.72719570000004,-7.525990899999954],[110.73075210000007,-7.528669199999968],[110.74233750000008,-7.527515],[110.748909,-7.523275799999965],[110.76447870000004,-7.526787],[110.773433,-7.5263205],[110.78101060000006,-7.523849],[110.79122920000009,-7.526745299999959],[110.79142,-7.528917799999931],[110.79492280000005,-7.530785499999979],[110.79567720000006,-7.533546899999976],[110.80066790000006,-7.533854799999972],[110.803009,-7.531758699999955],[110.80621340000005,-7.532290399999965],[110.80815120000005,-7.534457199999963],[110.81103520000005,-7.528761399999951],[110.81015780000007,-7.527510599999971],[110.81116490000005,-7.525515499999926],[110.81401060000007,-7.526545],[110.81574520000004,-7.523207899999932],[110.80639470000006,-7.4913799],[110.80478370000009,-7.459251399999971],[110.80156710000006,-7.459163199999978],[110.80005980000004,-7.460756299999957],[110.79743190000005,-7.4597702],[110.79612730000008,-7.461554499999977],[110.79316710000006,-7.4604725],[110.79188540000007,-7.457286799999963],[110.78923040000006,-7.458556599999952],[110.78491970000005,-7.454128699999956],[110.78086850000005,-7.453098299999965],[110.77822150000009,-7.445614899999953],[110.77428440000006,-7.444713099999944],[110.77078250000005,-7.440175499999953],[110.774498,-7.435757099999933],[110.78105650000003,-7.43656],[110.782533,-7.432340599999975],[110.78208440000009,-7.431131799999946],[110.774489,-7.429091099999937],[110.76897670000005,-7.4173285],[110.77341780000006,-7.418882399999973],[110.77467030000008,-7.4174991],[110.77281190000008,-7.413285199999962],[110.77273560000003,-7.392242899999928],[110.77636880000006,-7.3878889],[110.77836610000008,-7.388678],[110.77836470000005,-7.386378699999966],[110.781517,-7.386292],[110.78801560000005,-7.379983399999958],[110.78852610000007,-7.3774],[110.79758450000008,-7.371808],[110.79895130000006,-7.369519399999945],[110.80256960000008,-7.368451],[110.79519810000005,-7.366735199999937],[110.79484870000005,-7.364362599999936],[110.79290510000004,-7.365439899999956],[110.79247170000008,-7.3626547],[110.78863480000007,-7.361951499999975],[110.79026030000006,-7.354769699999963],[110.79667170000005,-7.350983699999972],[110.79814910000005,-7.340480299999967],[110.80323030000005,-7.327512199999944],[110.80146790000003,-7.317313199999944],[110.79830170000008,-7.313226199999974],[110.79711910000009,-7.3078279],[110.79514310000008,-7.3071088],[110.796875,-7.305919599999982],[110.79361720000009,-7.295365299999958],[110.79485320000003,-7.2925176],[110.79267880000003,-7.289430099999947],[110.79438780000004,-7.284032299999978],[110.79299920000005,-7.278045599999928],[110.79423520000006,-7.275002499999971],[110.79582210000007,-7.272202],[110.79344940000004,-7.273476599999981],[110.79255680000006,-7.270312299999944],[110.78952790000005,-7.2723283],[110.78645320000004,-7.272043199999928],[110.78665160000008,-7.275432099999932],[110.78446960000008,-7.276605599999925],[110.78620150000006,-7.277612199999965],[110.78448490000005,-7.278981699999974],[110.78617090000006,-7.280700199999956],[110.78476710000007,-7.281820699999969],[110.78546910000006,-7.284117699999967],[110.78407290000007,-7.281135499999948],[110.782814,-7.2815451],[110.78250890000004,-7.278152399999954],[110.77607720000009,-7.281660099999954],[110.77671810000004,-7.284923],[110.77980040000006,-7.285472399999946],[110.77609250000006,-7.287314899999956],[110.78015140000008,-7.291247799999951],[110.77767180000006,-7.293581],[110.78157040000008,-7.293576199999961],[110.78204340000008,-7.295165499999939],[110.77948,-7.296328099999926],[110.77602390000004,-7.294712],[110.77664180000005,-7.295987599999933],[110.77519220000005,-7.296942699999931],[110.77710730000007,-7.298321199999975],[110.77462770000005,-7.297731899999974],[110.77362060000007,-7.3009925],[110.77524570000008,-7.303257899999949],[110.77165220000006,-7.303240799999969],[110.76818080000004,-7.305683599999952],[110.77246860000008,-7.301773],[110.77220150000005,-7.294564199999968],[110.77047730000004,-7.294499899999948],[110.76853110000008,-7.298480499999926],[110.76381710000004,-7.2969679],[110.76252860000005,-7.297981899999968],[110.763237,-7.2991385],[110.75987240000006,-7.296816799999931],[110.76866150000006,-7.296792],[110.77172850000005,-7.289358599999957],[110.76818080000004,-7.287179899999956],[110.77175140000008,-7.285914899999966],[110.76626590000006,-7.281963299999973],[110.76983640000009,-7.282040099999961],[110.76964570000007,-7.280492299999935],[110.77091980000006,-7.2801132],[110.768631,-7.278023699999949],[110.76921840000006,-7.276560699999948],[110.77130120000004,-7.277577899999926],[110.77220920000008,-7.275301399999933],[110.77294160000008,-7.276824],[110.77567290000007,-7.275500299999976],[110.77588650000007,-7.272624899999926],[110.77211760000006,-7.271231099999966],[110.78073120000005,-7.269968],[110.77980810000008,-7.267831799999954],[110.77643590000008,-7.268549899999925],[110.774231,-7.267422199999942],[110.77051540000008,-7.270138199999963],[110.76749420000004,-7.269252299999948],[110.76030730000008,-7.270441],[110.76475520000008,-7.269307599999934],[110.76808930000004,-7.266470399999946],[110.76433560000004,-7.264368499999932],[110.76849360000006,-7.263944099999947],[110.76972960000006,-7.266299199999935],[110.770874,-7.262898399999926],[110.77216340000007,-7.263373299999955],[110.77188110000009,-7.2648377],[110.77566530000007,-7.2644577],[110.77604680000007,-7.262850299999968],[110.77306370000008,-7.260715],[110.77606960000008,-7.261853199999962],[110.77822110000005,-7.2595558],[110.77805330000007,-7.262528399999951],[110.78137210000006,-7.261479299999962],[110.78086090000005,-7.263580299999944],[110.78318020000006,-7.262119699999971],[110.783226,-7.263778199999933],[110.78804020000007,-7.266209099999969],[110.78934480000004,-7.264999899999964],[110.78650670000007,-7.259988299999975],[110.78794860000005,-7.258539599999949],[110.79087070000008,-7.263983199999927],[110.79327390000009,-7.261208499999952],[110.79316710000006,-7.264513],[110.79683690000007,-7.263370499999951],[110.79840090000005,-7.264271699999938],[110.79868320000008,-7.262872699999946],[110.79624940000008,-7.261847],[110.80037690000006,-7.258674599999949],[110.798584,-7.257698499999947],[110.79702760000004,-7.2585482],[110.79852290000008,-7.256977499999948],[110.797905,-7.2559624],[110.80027010000003,-7.256870699999979],[110.79916380000009,-7.252813299999957],[110.80184170000007,-7.256119699999942],[110.80789180000005,-7.256505899999979],[110.80867770000003,-7.250822],[110.81000520000003,-7.254962399999954],[110.81193540000004,-7.255762599999969],[110.81091310000005,-7.256979],[110.81287380000003,-7.256155499999977],[110.81534580000005,-7.257443899999942],[110.81650540000004,-7.257251699999927],[110.81694030000006,-7.254545699999937],[110.813652,-7.252845699999966],[110.81670380000008,-7.253080299999965],[110.81740570000005,-7.251486299999954],[110.81967160000005,-7.253386499999976],[110.81899260000006,-7.255350599999929],[110.82083130000007,-7.260705399999949],[110.82250980000003,-7.2614436],[110.82401280000005,-7.260346399999946],[110.82653050000005,-7.262609],[110.82776640000009,-7.259358899999938],[110.82592770000008,-7.258199199999979],[110.82764430000009,-7.257466299999976],[110.82700350000005,-7.256109199999969],[110.82868960000008,-7.256684299999961],[110.82869720000008,-7.255239],[110.825203,-7.256338599999935],[110.82529450000004,-7.258513899999969],[110.82411960000007,-7.2560982],[110.82300570000007,-7.2576027],[110.82218170000004,-7.2564397],[110.82326510000007,-7.255372],[110.82077030000005,-7.255778799999973],[110.82177730000006,-7.254540399999939],[110.820816,-7.253419799999961],[110.82267760000008,-7.2544837],[110.82498170000008,-7.252477599999963],[110.82346340000004,-7.251001299999928],[110.82302860000004,-7.252481399999965],[110.82151030000006,-7.252195799999981],[110.81993870000008,-7.2507009],[110.82242580000008,-7.249369099999967],[110.81934360000008,-7.248419699999943],[110.81797030000007,-7.246107099999961],[110.82273870000006,-7.247907599999962],[110.82237240000006,-7.245463399999949],[110.82379150000008,-7.246762699999977],[110.82472990000008,-7.245905799999946],[110.82386020000007,-7.247882799999957],[110.828331,-7.251918299999943],[110.82794190000004,-7.247489899999948]],[[110.57141710000008,-7.445131899999978],[110.56497810000008,-7.442579899999942],[110.57226240000006,-7.442265599999928],[110.57141710000008,-7.445131899999978]],[[110.56268050000006,-7.540667299999939],[110.56319610000008,-7.536652299999957],[110.57305320000006,-7.5397572],[110.57577150000009,-7.539318899999955],[110.57495570000009,-7.546218199999942],[110.579511,-7.547349799999949],[110.58322090000007,-7.546538399999974],[110.58846230000006,-7.548477799999944],[110.58596110000008,-7.551139599999942],[110.58559150000008,-7.554041499999926],[110.57153180000006,-7.550939],[110.56921611000007,-7.551758034999978],[110.56651543900006,-7.549608520999925],[110.56680938900007,-7.547146684999973],[110.56317175100008,-7.548175511999943],[110.56120430000004,-7.545485799999938],[110.56268050000006,-7.540667299999939]]]},"properties":{"shapeName":"Boyolali","shapeISO":"","shapeID":"22746128B28348537738112","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[109.16711030000005,-7.268391099999974],[109.162366,-7.262058199999956],[109.16566360000007,-7.255446199999938],[109.16529970000005,-7.248719599999959],[109.17469480000005,-7.250301],[109.17549190000005,-7.239810299999931],[109.16841780000004,-7.239736899999969],[109.15754880000009,-7.244157099999939],[109.15655470000007,-7.246379899999965],[109.14955960000009,-7.246165499999961],[109.14627850000005,-7.242710599999953],[109.13886010000004,-7.238694199999941],[109.13608650000003,-7.232871399999965],[109.132087,-7.231498599999952],[109.12815870000009,-7.2269382],[109.12042530000008,-7.222411],[109.11639210000004,-7.215315699999962],[109.11334850000009,-7.213099299999953],[109.11136780000004,-7.212907399999949],[109.11032510000007,-7.215053699999942],[109.10764950000004,-7.212598499999956],[109.094149,-7.214980399999945],[109.08027240000007,-7.214994799999943],[109.07861280000009,-7.212334],[109.07749450000006,-7.2009214],[109.06793850000008,-7.196619599999963],[109.06523060000006,-7.196917099999951],[109.05756380000008,-7.1915688],[109.05570990000007,-7.184927899999934],[109.06558990000008,-7.170527899999968],[109.08140570000006,-7.155227099999934],[109.08419040000007,-7.147798899999941],[109.082428,-7.135199],[109.07326820000009,-7.124830699999961],[109.07413,-7.11413],[109.06921,-7.12695],[109.06183630000004,-7.128054099999929],[109.05958560000005,-7.130166899999949],[109.05729680000007,-7.13595],[109.05771640000006,-7.138544],[109.060463,-7.141435599999966],[109.059578,-7.146242099999938],[109.05712130000006,-7.149942799999963],[109.05293280000006,-7.150747199999955],[109.04662330000008,-7.150135399999954],[109.04228980000005,-7.1435527],[109.03645330000006,-7.140364099999942],[109.02560430000005,-7.143114499999967],[109.00901030000006,-7.139523899999972],[109,-7.141698799999972],[108.98999790000005,-7.132078599999943],[108.98374940000008,-7.1321396],[108.97862250000009,-7.135114099999953],[108.97484590000005,-7.139677],[108.97225190000006,-7.148076899999978],[108.96811680000008,-7.150663299999962],[108.96540840000006,-7.150715299999945],[108.96263120000003,-7.147799899999939],[108.96056370000008,-7.141023099999927],[108.95744330000008,-7.138041399999963],[108.95715330000007,-7.135435499999971],[108.95149230000004,-7.126871],[108.95256810000006,-7.123471699999925],[108.95553590000009,-7.122281499999929],[108.96418770000008,-7.124261299999944],[108.96756750000009,-7.126373199999932],[108.96751410000007,-7.121571899999935],[108.97728730000006,-7.121305399999926],[108.98010920000007,-7.118759199999943],[108.97949220000004,-7.111990899999967],[108.98101050000008,-7.110880299999963],[108.98357390000007,-7.112436199999934],[108.98446660000008,-7.111257],[108.98505410000007,-7.105836799999963],[108.98032380000006,-7.103644299999928],[108.98144540000004,-7.100244499999974],[108.98490910000004,-7.098984199999961],[108.98588570000004,-7.097065899999961],[108.983635,-7.092592199999956],[108.98377230000006,-7.086953599999958],[108.97783660000005,-7.083907499999953],[108.978592,-7.078870199999926],[108.97713470000008,-7.075024499999927],[108.96690020000005,-7.066929399999935],[108.96927650000003,-7.060370399999954],[108.98422240000008,-7.061542899999949],[108.98837280000004,-7.060232099999951],[108.99365240000009,-7.054634],[108.99511720000004,-7.050911799999938],[109.00057980000008,-7.048996899999963],[109.00203710000005,-7.042496599999936],[109.00411230000009,-7.041134799999952],[109.01096350000006,-7.045386699999938],[109.01325990000004,-7.044547],[109.017067,-7.048549099999946],[109.02166070000004,-7.043914099999938],[109.02425390000008,-7.044922299999939],[109.024971,-7.043977199999972],[109.02619170000008,-7.037567099999933],[109.01850130000008,-7.024398699999949],[109.02658850000006,-7.005276599999945],[109.02744620000004,-6.99931],[109.03496510000008,-7.001313599999946],[109.03230270000006,-6.996944099999951],[109.02803130000007,-6.993848299999968],[109.02611120000006,-6.988518899999974],[109.02724760000007,-6.985697399999935],[109.03265540000007,-6.984365099999934],[109.04517810000004,-6.987442899999962],[109.04838560000007,-6.980921199999955],[109.04810340000006,-6.978454499999941],[109.05326850000006,-6.975477199999943],[109.05552680000005,-6.977292899999952],[109.06414860000007,-6.976674],[109.06338080000006,-6.974119199999961],[109.06616040000006,-6.973951899999975],[109.065904,-6.973057099999949],[109.06877960000008,-6.973908199999926],[109.06990560000008,-6.981350199999952],[109.06980640000006,-6.982927299999972],[109.06813,-6.982883199999947],[109.06914520000004,-6.991045899999961],[109.06651690000007,-6.993780399999935],[109.07480620000007,-6.994173],[109.07051270000005,-6.977085399999964],[109.07163860000009,-6.974532599999975],[109.07026580000007,-6.972671599999956],[109.07685860000004,-6.962254399999949],[109.07502080000006,-6.951789099999928],[109.07781220000004,-6.94492],[109.07780120000007,-6.936137799999926],[109.07887820000008,-6.933363099999951],[109.08118440000004,-6.9321288],[109.08207920000007,-6.927707399999974],[109.07921510000006,-6.919016799999952],[109.07665490000005,-6.919016799999952],[109.07456610000008,-6.912185199999954],[109.07586670000006,-6.907399099999964],[109.07327270000008,-6.9000215],[109.073082,-6.893223699999965],[109.07739260000005,-6.887848299999973],[109.074997,-6.880900299999951],[109.07565310000007,-6.875803899999937],[109.07658390000006,-6.873885099999939],[109.08121490000008,-6.871657299999981],[109.08156590000004,-6.8593873],[109.10226960000006,-6.839863799999932],[109.09201920000004,-6.831824399999959],[109.07442840000004,-6.809455199999945],[109.069907,-6.810496199999932],[109.06669530000005,-6.802853499999969],[109.06741060000007,-6.800769099999968],[109.07055530000008,-6.798893299999975],[109.08056630000004,-6.798600699999952],[109.07595460000005,-6.794896599999959],[109.07528580000007,-6.792473],[109.07841460000009,-6.785440899999969],[109.076916,-6.7851639],[109.07646760000006,-6.782923399999959],[109.07530580000008,-6.784282099999928],[109.07675160000008,-6.772079499999961],[109.07256140000004,-6.775805199999979],[109.06811550000003,-6.785735599999953],[109.06656620000007,-6.784807],[109.06706480000008,-6.781351299999926],[109.06437030000006,-6.773783499999979],[109.06703430000005,-6.7711867],[109.06579830000004,-6.768516799999929],[109.06683430000004,-6.766118399999925],[109.07001930000007,-6.766641],[109.07049950000004,-6.765252699999962],[109.06798110000005,-6.760881499999925],[109.06866590000004,-6.754578299999935],[109.05870910000004,-6.763341799999978],[109.059357,-6.772968],[109.05221,-6.78065],[109.05052,-6.78006],[109.04628,-6.78317],[109.04276,-6.77794],[109.0413,-6.77823],[109.03985,-6.78181],[109.03646,-6.77974],[109.02881620000005,-6.779329299999972],[109.03017,-6.78228],[109.02673,-6.78372],[109.02757,-6.78582],[109.02318,-6.78277],[109.02349,-6.78025],[109.02279,-6.78209],[109.02086,-6.78175],[109.01952,-6.78596],[109.0163,-6.78385],[109.0139,-6.78518],[109.01259,-6.7922],[109.00826,-6.79341],[109.00596,-6.7975],[109.00226,-6.79698],[109.00054,-6.79944],[108.99644,-6.79715],[108.995,-6.79774],[108.99372,-6.80203],[108.9811,-6.80629],[108.96885,-6.80526],[108.96939950000007,-6.808342099999948],[108.96640270000006,-6.813632599999949],[108.95698010000007,-6.820656799999938],[108.946753,-6.824873399999944],[108.93250590000008,-6.823326699999939],[108.92957,-6.82542],[108.92812520000007,-6.823579699999925],[108.913055,-6.816607199999964],[108.89598610000007,-6.813938399999927],[108.8741,-6.80635],[108.87000240000003,-6.807885],[108.86729050000008,-6.807025099999976],[108.86425390000005,-6.801068799999939],[108.85318540000009,-6.7995464],[108.85197190000008,-6.795834499999955],[108.84362,-6.788125],[108.84304890000004,-6.785341],[108.84447660000006,-6.781414899999959],[108.84706,-6.7791],[108.84333440000006,-6.776703599999962],[108.83940830000006,-6.778773699999931],[108.83341210000003,-6.775061799999946],[108.830414,-6.770992899999953],[108.82991430000004,-6.765068],[108.83398,-6.76015],[108.83381950000006,-6.758009499999957],[108.82879640000004,-6.762602299999969],[108.82686620000004,-6.769854799999962],[108.831543,-6.784842799999979],[108.82823190000005,-6.78777],[108.82736210000007,-6.793829199999948],[108.83145910000007,-6.796293],[108.83270270000008,-6.800698099999977],[108.83125310000008,-6.802304699999979],[108.826706,-6.801583199999925],[108.82552350000009,-6.802760899999953],[108.82475280000006,-6.832315799999947],[108.81829840000006,-6.835811],[108.809578,-6.852065499999981],[108.80864720000005,-6.856250199999977],[108.80290230000008,-6.8644013],[108.80223850000004,-6.868607399999973],[108.79779820000005,-6.868526799999927],[108.797966,-6.872716799999978],[108.79406740000007,-6.874937],[108.79264840000008,-6.880382899999972],[108.78840640000004,-6.8776859],[108.78364770000007,-6.879673899999943],[108.78019890000007,-6.874919399999953],[108.77852640000003,-6.875000399999976],[108.77780940000008,-6.877103299999931],[108.78027350000008,-6.883428],[108.77893830000005,-6.884412699999928],[108.77194220000007,-6.883247299999937],[108.77071210000008,-6.895936199999937],[108.76487280000003,-6.8945432],[108.761467,-6.895952099999931],[108.76124380000005,-6.897680899999955],[108.76583870000007,-6.8985213],[108.76691440000008,-6.901963199999955],[108.75911720000005,-6.904822699999954],[108.75818640000006,-6.907122],[108.76107030000009,-6.911602399999936],[108.75511940000007,-6.916220599999974],[108.75289160000005,-6.920200299999976],[108.75520330000006,-6.928449099999966],[108.75743870000008,-6.929386499999964],[108.75845030000005,-6.933492599999965],[108.76223860000005,-6.934701299999972],[108.762259,-6.937431199999935],[108.75976020000007,-6.93883],[108.76410920000006,-6.9391863],[108.761055,-6.947102],[108.760727,-6.951077399999974],[108.76235970000005,-6.952359599999966],[108.76148990000007,-6.953732899999977],[108.75874330000005,-6.953179299999931],[108.75950630000006,-6.958511699999974],[108.75709540000008,-6.957830799999954],[108.75968940000007,-6.963558099999943],[108.76148990000007,-6.961507199999971],[108.76277930000003,-6.962105199999939],[108.75978090000007,-6.968990199999951],[108.76293950000007,-6.970871399999965],[108.76042940000008,-6.973137799999961],[108.76119240000008,-6.978277099999957],[108.75868230000003,-6.983647699999949],[108.75994880000007,-6.987616],[108.76615150000003,-6.990262899999948],[108.76989750000007,-6.993871099999978],[108.77407080000006,-6.992231799999956],[108.77815250000003,-6.993358499999943],[108.78054050000009,-6.9959268],[108.78068550000006,-6.998794],[108.78321080000006,-7.000000399999976],[108.78150940000006,-7.004614299999957],[108.78321840000007,-7.004920399999946],[108.784317,-7.007295299999953],[108.78669740000004,-7.007042799999965],[108.79063420000006,-7.012296099999958],[108.788971,-7.014614],[108.79068,-7.024861699999974],[108.78742990000006,-7.026588299999958],[108.77967080000008,-7.026253399999973],[108.77777870000006,-7.030266199999971],[108.77825170000006,-7.032782499999939],[108.77465060000009,-7.035075099999972],[108.77470020000004,-7.037475],[108.77691270000008,-7.039282899999932],[108.77548220000006,-7.040386099999978],[108.77642060000005,-7.043748299999947],[108.77966310000005,-7.045728099999963],[108.78234870000006,-7.053705599999944],[108.78546910000006,-7.057275499999946],[108.78343970000009,-7.060625199999947],[108.78480530000007,-7.061196],[108.78304290000005,-7.064466399999958],[108.78417590000004,-7.069527],[108.78225280000004,-7.069682399999976],[108.78185280000008,-7.073243099999956],[108.77828220000004,-7.075620099999981],[108.77631380000008,-7.081640199999981],[108.77438360000008,-7.083459299999959],[108.774376,-7.089336299999957],[108.77858740000005,-7.094537199999934],[108.77617650000008,-7.0971593],[108.77091220000005,-7.111848699999939],[108.76662450000003,-7.113634499999932],[108.75397670000007,-7.1150133],[108.74703220000004,-7.111582699999929],[108.73995980000007,-7.114849499999934],[108.73305520000008,-7.113895799999966],[108.72599030000003,-7.115273399999978],[108.723418,-7.118677299999945],[108.72349550000007,-7.123797299999978],[108.71634680000005,-7.1280188],[108.713768,-7.134953899999971],[108.69819790000008,-7.150365099999931],[108.69310220000006,-7.151923199999942],[108.69458640000005,-7.155997399999933],[108.69405390000009,-7.159957099999929],[108.698251,-7.1663884],[108.70218540000008,-7.1666265],[108.70602570000005,-7.163806799999975],[108.71047890000006,-7.1696159],[108.71576650000009,-7.172535699999969],[108.71849670000006,-7.178581899999926],[108.72220710000005,-7.182475099999976],[108.721344,-7.190183499999932],[108.72372440000004,-7.193652499999928],[108.73492440000007,-7.194744499999956],[108.74355320000006,-7.197782],[108.74881240000008,-7.194062499999973],[108.75000010000008,-7.187334899999939],[108.75271880000008,-7.195323199999962],[108.75548560000004,-7.194773099999964],[108.76329830000009,-7.199481399999968],[108.77397160000004,-7.198405699999967],[108.77640540000004,-7.203464399999973],[108.78268440000005,-7.208497],[108.789444,-7.210119599999928],[108.79041290000004,-7.213421299999936],[108.79930880000006,-7.2104968],[108.80261420000005,-7.205931299999975],[108.80856030000007,-7.205523199999959],[108.81069870000005,-7.203938],[108.81423190000004,-7.2115473],[108.81684110000003,-7.211187799999948],[108.81955720000008,-7.215188399999931],[108.821312,-7.220537599999943],[108.821167,-7.226454199999978],[108.81856540000007,-7.228825499999971],[108.81880950000004,-7.231619699999953],[108.823433,-7.232366499999955],[108.82497410000008,-7.235013899999956],[108.83132180000007,-7.232087499999977],[108.83965310000008,-7.2368206],[108.85066220000004,-7.238122899999951],[108.85498050000007,-7.2411527],[108.857338,-7.240546599999959],[108.86262520000008,-7.243416199999956],[108.86460120000004,-7.243123],[108.86302950000004,-7.2464317],[108.85713960000004,-7.247033],[108.85714720000004,-7.250379],[108.85288240000006,-7.252327399999956],[108.85259250000007,-7.253805099999965],[108.85420990000006,-7.254537499999969],[108.85626990000009,-7.260804599999972],[108.86203770000009,-7.263779599999964],[108.86241150000006,-7.268405299999927],[108.86587530000008,-7.272001199999977],[108.88260650000007,-7.272541499999932],[108.88468170000004,-7.275347199999942],[108.89322670000007,-7.275938399999973],[108.89204410000008,-7.282278899999937],[108.894043,-7.284119499999974],[108.90928650000006,-7.288218399999948],[108.91275030000008,-7.290978299999949],[108.91400150000004,-7.302894499999979],[108.918541,-7.3046998],[108.92135620000005,-7.312246699999946],[108.92851260000003,-7.317948699999931],[108.93382270000006,-7.319006799999954],[108.93911750000007,-7.315647],[108.94348150000008,-7.317692699999952],[108.95025640000006,-7.3153667],[108.95161440000004,-7.318651099999954],[108.949173,-7.324370299999941],[108.95166780000005,-7.324613],[108.95240020000006,-7.326159899999936],[108.95230870000006,-7.328883099999928],[108.950058,-7.329517299999964],[108.95152290000004,-7.331161899999927],[108.95734410000006,-7.330954],[108.962204,-7.334203599999967],[108.96709440000006,-7.332210499999974],[108.96962740000004,-7.333648099999948],[108.97201540000009,-7.332425499999943],[108.97563170000006,-7.334855499999946],[108.97706610000006,-7.333360099999936],[108.97826390000006,-7.334989499999949],[108.98382570000007,-7.333044899999948],[108.98407750000007,-7.334818299999938],[108.98773960000005,-7.333468399999958],[108.99724580000009,-7.334600399999943],[108.99924410000006,-7.3334138],[109.00296020000008,-7.3352384],[109.00849920000007,-7.333665799999949],[109.01651770000007,-7.335184],[109.02388770000005,-7.332227199999977],[109.02590180000004,-7.32661],[109.02813720000006,-7.326225699999952],[109.03653720000005,-7.342759099999967],[109.03067020000009,-7.349469099999965],[109.03622720000004,-7.351494499999944],[109.04740910000004,-7.338789399999939],[109.05684660000009,-7.340153099999952],[109.06450660000007,-7.338573399999973],[109.06878670000003,-7.332227599999953],[109.07574470000009,-7.314192699999978],[109.08389090000009,-7.30466],[109.10456390000007,-7.302465099999949],[109.10563450000006,-7.298338299999955],[109.10774940000005,-7.296319],[109.11392440000009,-7.294842599999981],[109.11431120000009,-7.292290299999934],[109.10597170000005,-7.289701499999978],[109.10568090000004,-7.287296599999934],[109.11712410000007,-7.285241199999973],[109.11968950000005,-7.283394199999975],[109.12702710000008,-7.2820848],[109.12721560000006,-7.280983599999956],[109.12556410000008,-7.280058399999973],[109.12575410000005,-7.278589899999929],[109.11766110000008,-7.278556299999934],[109.11637820000004,-7.277449],[109.11712380000006,-7.275064499999928],[109.12485810000004,-7.272892599999977],[109.13036110000007,-7.2765093],[109.13528,-7.267876],[109.142805,-7.268292299999928],[109.14746860000008,-7.266484699999978],[109.15724180000007,-7.267498399999965],[109.16441350000008,-7.271358],[109.16711030000005,-7.268391099999974]]]},"properties":{"shapeName":"Brebes","shapeISO":"","shapeID":"22746128B50057003828274","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[114.5162087000001,-8.092213199999946],[114.50170230000003,-8.09476019999994],[114.51761820000002,-8.100175899999954],[114.523169,-8.098947399999929],[114.5282975,-8.095172],[114.526625,-8.092421599999966],[114.5162087000001,-8.092213199999946]]],[[[115.23214360000009,-8.240200499999958],[115.23717710000005,-8.23332279999994],[115.24256420000006,-8.215994699999953],[115.24300090000008,-8.206562499999961],[115.24523760000011,-8.197977399999957],[115.24236090000011,-8.185726599999953],[115.244531,-8.1825571],[115.24496480000005,-8.176832],[115.24699610000005,-8.178464399999939],[115.24869840000008,-8.174370299999964],[115.25056970000003,-8.175821199999973],[115.25355600000012,-8.175351899999953],[115.25639840000008,-8.173728199999971],[115.25682160000008,-8.171716499999945],[115.25982090000002,-8.171834699999977],[115.2651062000001,-8.16317689999994],[115.26645210000004,-8.165702],[115.27140140000006,-8.168043399999931],[115.27587240000003,-8.162899],[115.27986090000002,-8.160908199999938],[115.28166910000004,-8.164506099999926],[115.28069210000001,-8.166726499999982],[115.28436330000011,-8.17036749999994],[115.28798050000012,-8.171327299999973],[115.2932843000001,-8.168786099999977],[115.30364010000005,-8.173765599999967],[115.30280930000004,-8.168351199999961],[115.31178760000012,-8.16408819999998],[115.31416260000003,-8.159174],[115.3165825000001,-8.158476],[115.31953310000006,-8.154894899999931],[115.31921180000006,-8.151183],[115.3178008000001,-8.148910599999965],[115.31556220000004,-8.148318],[115.31645240000012,-8.146617599999956],[115.31541750000008,-8.145580099999961],[115.319397,-8.143452899999943],[115.32112490000009,-8.14079659999993],[115.32173810000006,-8.14360449999998],[115.32692650000001,-8.148681899999929],[115.32825950000006,-8.152027],[115.3314468000001,-8.152564599999948],[115.33181320000006,-8.15391509999995],[115.33460130000003,-8.153734799999938],[115.33749240000009,-8.150993599999936],[115.33856450000007,-8.1441211],[115.34500570000012,-8.1486469],[115.35154180000006,-8.148028599999975],[115.3538622000001,-8.150579899999968],[115.35805960000005,-8.150456199999951],[115.3641407,-8.146568099999968],[115.3625750000001,-8.152015499999948],[115.36050320000004,-8.153196499999979],[115.36568330000011,-8.152589299999931],[115.36405330000002,-8.155397],[115.3644167000001,-8.160239399999966],[115.36813590000008,-8.165508899999963],[115.37279010000009,-8.166356],[115.37519010000005,-8.163516],[115.37743320000004,-8.164636599999938],[115.38111050000009,-8.168118399999969],[115.37966090000009,-8.171426699999927],[115.39101930000004,-8.178268699999933],[115.39039260000004,-8.181217899999979],[115.39174040000012,-8.182710699999973],[115.40231950000009,-8.188107399999978],[115.40480160000004,-8.191591899999935],[115.40932450000003,-8.191741099999945],[115.41373560000011,-8.188536799999952],[115.42364830000008,-8.190558299999964],[115.42749820000006,-8.189749699999936],[115.42939350000006,-8.183469299999956],[115.43425060000004,-8.180632],[115.43619640000009,-8.181010699999945],[115.44195430000002,-8.177746299999967],[115.44291080000005,-8.1729969],[115.45709410000006,-8.1666],[115.45362380000006,-8.1624313],[115.44232130000012,-8.157755599999973],[115.427207,-8.153065699999956],[115.41517410000006,-8.151887899999963],[115.404852,-8.1433004],[115.38930220000009,-8.135790799999938],[115.37870950000001,-8.134572799999944],[115.3741606000001,-8.131404299999929],[115.35751940000011,-8.12830219999995],[115.3447595,-8.118768899999964],[115.33925940000006,-8.111801799999967],[115.33506920000002,-8.111055799999974],[115.3227313000001,-8.112709299999949],[115.307431,-8.105778],[115.29388260000007,-8.104540199999974],[115.275719,-8.096124],[115.26418810000007,-8.087772099999938],[115.2436689000001,-8.0831513],[115.234966,-8.0832911],[115.2059647000001,-8.074036699999965],[115.18481470000006,-8.061395799999957],[115.15843120000011,-8.064151299999935],[115.13028140000006,-8.07862849999998],[115.12110710000002,-8.081686],[115.11650540000005,-8.08125039999993],[115.11335610000003,-8.085296299999925],[115.09427470000003,-8.100617],[115.08320550000008,-8.105390199999931],[115.07774270000004,-8.109312199999977],[115.07331210000007,-8.116103199999941],[115.06479800000011,-8.121565699999962],[115.05811170000004,-8.131840299999965],[115.05090130000008,-8.1380421],[115.04776390000006,-8.144373499999972],[115.02796750000005,-8.154497499999934],[115.02491820000012,-8.160354499999926],[115.021462,-8.163620299999934],[115.015906,-8.165619099999958],[115.00956470000006,-8.165892699999972],[115.00555540000005,-8.172644399999967],[115.002428,-8.175073299999951],[114.99311360000002,-8.176760899999977],[114.98329430000001,-8.181037299999957],[114.9391534,-8.183384299999943],[114.9289788000001,-8.181044199999974],[114.91300010000009,-8.184005899999931],[114.90644470000007,-8.182536599999935],[114.9025722,-8.187872499999969],[114.89751850000005,-8.189012],[114.8922017000001,-8.188206],[114.87634130000004,-8.195251399999961],[114.86784740000007,-8.196417099999962],[114.8513249,-8.194895499999973],[114.84168190000003,-8.190665299999978],[114.83971880000001,-8.191599199999928],[114.8396097000001,-8.193566799999928],[114.83576890000006,-8.193960799999957],[114.83228420000012,-8.191421899999966],[114.83217950000005,-8.187315],[114.82801540000003,-8.191797899999926],[114.82370860000003,-8.192321399999969],[114.81867370000009,-8.189056799999946],[114.81715390000011,-8.185398299999974],[114.80936050000003,-8.186244199999976],[114.80357210000011,-8.182128899999952],[114.77988320000009,-8.174227599999938],[114.77216220000003,-8.172603699999968],[114.76879290000011,-8.173964699999942],[114.75682460000007,-8.169264099999964],[114.74846560000003,-8.168860799999948],[114.73290240000006,-8.159776],[114.71616290000009,-8.156155699999942],[114.71448780000003,-8.154137899999967],[114.71551570000008,-8.150145099999975],[114.712965,-8.154592799999932],[114.7108664000001,-8.155549299999961],[114.700614,-8.150459599999976],[114.6928180000001,-8.144157399999926],[114.6809326,-8.144097899999963],[114.67900830000008,-8.146612699999935],[114.67539440000007,-8.147601699999939],[114.66667370000005,-8.146031199999982],[114.66250370000012,-8.1425513],[114.66082640000002,-8.144467499999962],[114.657483,-8.144163299999946],[114.65500840000004,-8.143282899999974],[114.6452346000001,-8.13132859999996],[114.64372670000012,-8.132224399999927],[114.64423650000003,-8.135672399999976],[114.64082680000001,-8.13806],[114.6386913,-8.13789939999998],[114.63361410000005,-8.130814599999951],[114.6286622,-8.127895699999954],[114.61991770000009,-8.1266627],[114.61808790000009,-8.122884099999965],[114.61485180000011,-8.127081499999974],[114.61210830000005,-8.127764399999933],[114.6132338000001,-8.131086099999948],[114.61239140000009,-8.132444799999973],[114.60561840000003,-8.134743499999956],[114.603139,-8.138732699999935],[114.59933760000001,-8.13838069999997],[114.60027720000005,-8.136623499999928],[114.59921240000006,-8.136036599999954],[114.59442890000003,-8.139877599999977],[114.58986130000005,-8.1349892],[114.59036870000011,-8.132850299999973],[114.58676330000003,-8.1303022],[114.59396880000008,-8.128543499999978],[114.59463030000006,-8.123765499999934],[114.59104020000007,-8.120349899999951],[114.58871310000006,-8.12173],[114.58542950000003,-8.121753699999942],[114.5845978000001,-8.120010799999932],[114.57987550000007,-8.121311899999966],[114.57354930000008,-8.123701099999948],[114.56638530000009,-8.128557199999932],[114.56622120000009,-8.130008699999962],[114.5631886000001,-8.13011739999996],[114.56127740000011,-8.136198],[114.56894870000008,-8.137262299999975],[114.57053410000003,-8.138916],[114.5681667,-8.139608899999928],[114.5684523000001,-8.141129399999954],[114.566542,-8.140152199999932],[114.56560210000009,-8.14212939999993],[114.56243,-8.143403599999942],[114.56144840000002,-8.140166299999976],[114.55776620000006,-8.1377405],[114.5586704000001,-8.133183799999927],[114.55552240000009,-8.13096379999996],[114.54975460000003,-8.13355139999993],[114.54518220000011,-8.139244599999927],[114.54027030000009,-8.140494699999977],[114.53755060000003,-8.145177499999932],[114.5284342000001,-8.153488599999946],[114.52212870000005,-8.154573599999935],[114.51651310000011,-8.149105599999928],[114.5183929000001,-8.14829659999998],[114.51938750000011,-8.145488799999953],[114.51640840000005,-8.145041499999934],[114.51850710000008,-8.141634099999976],[114.52333740000006,-8.1381648],[114.5226259000001,-8.133850799999948],[114.51138390000006,-8.1163341],[114.50577790000011,-8.111898799999949],[114.50178990000006,-8.104484399999933],[114.49384250000003,-8.095970699999953],[114.48820790000002,-8.093624599999941],[114.48076220000007,-8.09621009999995],[114.4509313000001,-8.0924967],[114.44465900000012,-8.0930487],[114.439172,-8.094471599999963],[114.43542670000011,-8.097798099999977],[114.4334851000001,-8.117181199999948],[114.43204790000004,-8.1191181],[114.4432551000001,-8.133409099999938],[114.445963,-8.14394059999995],[114.44433070000002,-8.148533],[114.44522730000006,-8.157273799999928],[114.45231170000011,-8.161126199999956],[114.45862650000004,-8.159630799999945],[114.46037180000008,-8.161265599999979],[114.45995970000001,-8.163013899999953],[114.46279020000009,-8.162275799999975],[114.4681,-8.165744599999925],[114.470362,-8.1656984],[114.467845,-8.166570699999966],[114.46800150000001,-8.169162899999947],[114.46685940000009,-8.168092199999933],[114.46536170000002,-8.168983699999956],[114.46524380000005,-8.170938199999966],[114.45771830000001,-8.173412699999972],[114.45566050000002,-8.177904099999978],[114.45594850000009,-8.187470299999973],[114.45703190000006,-8.192477],[114.45891990000007,-8.193711199999939],[114.48087280000004,-8.197109199999943],[114.4943479000001,-8.193624299999954],[114.5000066,-8.198527499999955],[114.5061032000001,-8.200054099999932],[114.50998690000006,-8.205336699999975],[114.51369040000009,-8.205654],[114.51983350000012,-8.204475799999955],[114.53195370000003,-8.191226299999926],[114.55324930000006,-8.19777929999998],[114.5624117000001,-8.191864899999928],[114.57296030000009,-8.189340199999947],[114.57700440000008,-8.186453799999981],[114.57758980000006,-8.178623499999958],[114.58313870000006,-8.178022699999929],[114.58496610000009,-8.177080499999931],[114.58519450000006,-8.174467799999945],[114.59001130000001,-8.1734027],[114.59118810000007,-8.177425],[114.59578340000007,-8.176298799999927],[114.6016456000001,-8.178472299999953],[114.60427860000004,-8.177244299999927],[114.6134780000001,-8.184524799999963],[114.61861660000011,-8.18389],[114.62058130000003,-8.190426399999978],[114.6267395000001,-8.19899959999998],[114.62814720000006,-8.205002],[114.63252410000007,-8.21339919999997],[114.637634,-8.217344199999957],[114.6467434000001,-8.220251],[114.65137450000009,-8.223862499999939],[114.65228940000009,-8.226218099999926],[114.66747610000004,-8.222439399999928],[114.67394760000002,-8.22326389999995],[114.68430160000003,-8.231757199999947],[114.69094280000002,-8.219013699999948],[114.69127120000007,-8.209541499999943],[114.70105620000004,-8.1988667],[114.70307880000007,-8.198546199999953],[114.70717270000011,-8.2029733],[114.71986620000007,-8.210146299999963],[114.72752770000011,-8.216917],[114.7442688000001,-8.222574599999973],[114.75595460000011,-8.231829699999935],[114.76054680000004,-8.240717399999937],[114.762828,-8.249040799999932],[114.7662590000001,-8.2534072],[114.770751,-8.2552419],[114.77081150000004,-8.260069899999962],[114.77613080000003,-8.263138499999968],[114.77826120000009,-8.260433199999966],[114.78317830000003,-8.259516299999973],[114.78414120000002,-8.258045899999956],[114.78319510000006,-8.2559726],[114.78505140000004,-8.254291299999977],[114.79559290000009,-8.256645899999967],[114.79865230000007,-8.252692899999943],[114.80193290000011,-8.251427399999955],[114.80797710000002,-8.252318099999968],[114.81658530000004,-8.2599576],[114.815985,-8.264255099999957],[114.81180870000003,-8.263689299999953],[114.81079910000005,-8.266276299999959],[114.81363840000006,-8.271477599999969],[114.813082,-8.279098099999942],[114.81713510000009,-8.281837399999972],[114.81643570000006,-8.292779699999926],[114.81867220000004,-8.29425139999995],[114.82058060000008,-8.301512699999932],[114.81875810000008,-8.315383399999973],[114.82086670000001,-8.317444399999943],[114.82479390000003,-8.317652299999963],[114.82218110000008,-8.325013],[114.824086,-8.332926499999928],[114.83086020000007,-8.334067599999969],[114.83891720000008,-8.33780539999998],[114.84263370000008,-8.335174],[114.84710990000008,-8.337509],[114.85113290000004,-8.336621699999966],[114.85844980000002,-8.341687],[114.86103760000003,-8.340683699999943],[114.8639932000001,-8.335278],[114.87029240000004,-8.337194],[114.87816380000004,-8.344324899999947],[114.88436940000008,-8.346695599999975],[114.88740540000003,-8.351796899999954],[114.8958831000001,-8.3567972],[114.8969522000001,-8.3603622],[114.8962193000001,-8.365882599999964],[114.8973995,-8.366901],[114.89956180000001,-8.366131499999938],[114.9052190000001,-8.372485],[114.90262930000006,-8.375347499999975],[114.91640040000004,-8.380541],[114.92276790000005,-8.381083599999954],[114.92429230000005,-8.3827029],[114.93168670000011,-8.383083099999965],[114.93342840000003,-8.38045619999997],[114.9289394000001,-8.37624779999993],[114.9306825000001,-8.374230299999965],[114.93115550000005,-8.366617599999927],[114.93271060000006,-8.364605],[114.93165410000006,-8.363662699999963],[114.93356720000008,-8.360800199999971],[114.93513770000004,-8.360950099999968],[114.93405980000011,-8.3592726],[114.93561590000002,-8.35849449999995],[114.935419,-8.356798799999979],[114.9472,-8.361612],[114.94995130000007,-8.360655799999961],[114.95046530000002,-8.356365599999947],[114.95261390000007,-8.355037899999957],[114.95199290000005,-8.350726299999963],[114.9556543000001,-8.345500399999935],[114.95495470000003,-8.343837199999939],[114.95666790000007,-8.340988899999957],[114.954762,-8.340110899999956],[114.95533110000008,-8.338163699999939],[114.95889310000007,-8.333959199999981],[114.95814360000008,-8.332510099999979],[114.96065560000011,-8.3313677],[114.95760430000007,-8.318769],[114.96232010000006,-8.313648],[114.96508670000003,-8.305608799999959],[114.97703170000011,-8.30168059999994],[114.98077220000005,-8.2986111],[114.98080070000003,-8.296778899999936],[114.98302790000002,-8.296671899999978],[114.98256390000006,-8.291832],[114.98040810000009,-8.291475099999957],[114.9802439,-8.289719099999957],[114.98518510000008,-8.290425099999936],[114.98701840000001,-8.289197],[114.9918331,-8.2946162],[114.9941047000001,-8.299792],[114.9990183000001,-8.3001965],[115.0009404000001,-8.304088699999966],[115.009021,-8.307091599999978],[115.01098170000012,-8.31028],[115.01210850000007,-8.310054399999956],[115.01336260000005,-8.305408299999954],[115.02265790000001,-8.30650019999996],[115.02427150000005,-8.301271],[115.03037840000002,-8.300774099999956],[115.03663490000008,-8.302527899999973],[115.04424150000011,-8.307059799999934],[115.04920990000005,-8.306440899999927],[115.05831200000011,-8.310791],[115.06078760000003,-8.310178299999961],[115.0629805000001,-8.31231859999997],[115.07249380000007,-8.31443889999997],[115.07438310000009,-8.31153949999998],[115.08740410000007,-8.310928599999954],[115.0927709,-8.306920699999978],[115.10124870000004,-8.307143099999962],[115.10263060000011,-8.298594599999944],[115.106106,-8.297867599999961],[115.10831170000006,-8.299336299999936],[115.10934860000009,-8.297121199999935],[115.10900990000005,-8.285250799999972],[115.1114655,-8.281767299999956],[115.1092949,-8.278809499999966],[115.11597,-8.277609799999937],[115.11754050000002,-8.274361799999951],[115.12310840000009,-8.272612899999956],[115.13163880000002,-8.2723631],[115.14311280000004,-8.266439899999966],[115.150368,-8.259871699999962],[115.15300350000007,-8.260495799999944],[115.15521830000012,-8.258026099999938],[115.15635830000008,-8.258983899999976],[115.15983680000011,-8.2576764],[115.1638094000001,-8.255352899999934],[115.16688190000002,-8.250649599999974],[115.1721262000001,-8.248746],[115.177066,-8.241950299999928],[115.17982610000001,-8.24218049999996],[115.1860984000001,-8.247060099999942],[115.195176,-8.245989399999928],[115.20401570000001,-8.249273],[115.20746120000001,-8.249146899999971],[115.20942570000011,-8.246187299999974],[115.21922430000006,-8.245551399999954],[115.224835,-8.242727499999944],[115.22945120000009,-8.24371259999998],[115.23214360000009,-8.240200499999958]]]]},"properties":{"shapeName":"Buleleng","shapeISO":"","shapeID":"22746128B19744167565294","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[120.47836290000009,-5.675747299999955],[120.476775,-5.676010799999972],[120.47369910000009,-5.680667099999937],[120.47578520000002,-5.681692299999952],[120.47930350000001,-5.6808199],[120.48004710000009,-5.678516],[120.47836290000009,-5.675747299999955]]],[[[120.4290132000001,-5.639284399999951],[120.42503640000007,-5.640303499999959],[120.42053050000004,-5.648203],[120.42045760000008,-5.651069899999925],[120.42152990000011,-5.655588199999954],[120.424866,-5.659442599999977],[120.429789,-5.660935499999937],[120.43354670000008,-5.659573099999932],[120.44197630000008,-5.651705299999946],[120.445594,-5.644688299999927],[120.4434887000001,-5.641792],[120.43525530000011,-5.642178299999955],[120.4290132000001,-5.639284399999951]]],[[[120.101328,-5.585738],[120.1058680000001,-5.5891465],[120.1123761,-5.589482299999929],[120.12265730000001,-5.587178299999948],[120.12953760000005,-5.588321699999938],[120.13611750000007,-5.583616499999948],[120.14815640000006,-5.580313799999942],[120.1552809000001,-5.572989499999949],[120.17057610000006,-5.564658299999962],[120.1897815000001,-5.566185699999949],[120.19636,-5.561488899999972],[120.2014474,-5.555234399999961],[120.212434,-5.549328],[120.21574850000002,-5.543639799999937],[120.22156170000005,-5.539885399999946],[120.2307889000001,-5.537903299999925],[120.23566660000006,-5.5387895],[120.24079540000002,-5.535552],[120.24516530000005,-5.537251],[120.25841050000008,-5.535951],[120.27630340000007,-5.537687499999947],[120.28940120000004,-5.531950199999926],[120.28467920000003,-5.530902699999956],[120.28870920000008,-5.530445699999973],[120.29405760000009,-5.525464799999952],[120.2959340000001,-5.5198183],[120.30089190000001,-5.513619899999981],[120.31131980000009,-5.508168499999954],[120.31615250000004,-5.507272299999954],[120.31925250000006,-5.5093627],[120.34210970000004,-5.512293399999976],[120.35206790000007,-5.519525499999929],[120.36484890000008,-5.535707],[120.3801271000001,-5.570687599999928],[120.39432690000001,-5.586861499999941],[120.42711670000006,-5.608971],[120.43542460000003,-5.611805699999934],[120.44248610000011,-5.607966099999942],[120.4484797,-5.608529],[120.45588650000002,-5.6144576],[120.46027320000007,-5.620528],[120.4673696000001,-5.619574599999964],[120.47207950000006,-5.622690699999964],[120.4732385000001,-5.619474],[120.46830110000008,-5.614681499999961],[120.4672663,-5.609835499999974],[120.46839150000005,-5.608558699999946],[120.46695580000005,-5.609685699999943],[120.46323060000009,-5.607087499999977],[120.46385750000002,-5.605307599999946],[120.46672630000012,-5.605169599999954],[120.46812610000006,-5.607609899999943],[120.46669530000008,-5.604947399999958],[120.463912,-5.604936599999974],[120.4622872000001,-5.601567499999931],[120.4615937000001,-5.593184199999939],[120.46295390000012,-5.583763399999953],[120.45935140000006,-5.572789299999954],[120.4482743000001,-5.568384499999979],[120.44524220000005,-5.557190599999956],[120.44598110000004,-5.5511061],[120.4508823000001,-5.547808799999927],[120.44894090000003,-5.540332699999965],[120.4500514,-5.538008199999979],[120.44890960000009,-5.530769499999963],[120.44671920000008,-5.526495199999943],[120.44848780000007,-5.511684299999956],[120.44342620000009,-5.490316599999971],[120.4460044000001,-5.481669899999929],[120.45105740000008,-5.4787258],[120.45112790000007,-5.476758],[120.44927510000002,-5.474429099999952],[120.443237,-5.474460499999964],[120.44090580000011,-5.4723227],[120.436667,-5.472715899999969],[120.4330261,-5.468898499999966],[120.42830980000008,-5.468926],[120.42424150000011,-5.465418799999952],[120.424875,-5.4637929],[120.42302450000011,-5.4621157],[120.42267490000006,-5.457729899999947],[120.42453640000008,-5.452090699999928],[120.42556320000006,-5.453148099999964],[120.42935410000007,-5.451322399999981],[120.434028,-5.451935599999956],[120.43238870000005,-5.446026299999971],[120.4336872,-5.445216099999925],[120.4303460000001,-5.439679699999942],[120.42840170000011,-5.429991],[120.42592750000006,-5.430092899999977],[120.4225315000001,-5.425884099999962],[120.4208321000001,-5.419595499999957],[120.4130345000001,-5.407378199999926],[120.41212610000002,-5.394743499999947],[120.40983970000002,-5.393506099999968],[120.40272630000004,-5.378439399999934],[120.40374580000002,-5.375413599999945],[120.407364,-5.375200799999959],[120.40683970000009,-5.373934199999951],[120.40411270000004,-5.373599],[120.40387950000002,-5.370873499999959],[120.4004615,-5.365846499999975],[120.40218660000005,-5.3605561],[120.406677,-5.362055199999929],[120.403843,-5.359189199999946],[120.4070312,-5.358044399999926],[120.40684540000007,-5.348799099999951],[120.40465110000002,-5.34157],[120.40273450000007,-5.338982099999953],[120.39766070000007,-5.340554099999963],[120.393444,-5.338621699999976],[120.38767570000005,-5.338801599999954],[120.38337910000007,-5.333637799999963],[120.37622840000006,-5.333076],[120.37449660000004,-5.327363899999966],[120.37001550000002,-5.321735799999942],[120.3641282000001,-5.321775199999934],[120.363242,-5.324685299999942],[120.36179120000008,-5.324623],[120.3610916,-5.319558],[120.3589247000001,-5.316095099999927],[120.35370020000005,-5.314208599999972],[120.34899480000001,-5.3061172],[120.342613,-5.301396],[120.34165070000006,-5.292669299999943],[120.33617490000006,-5.287124],[120.33424,-5.287667399999975],[120.33234880000009,-5.290028599999971],[120.32857510000008,-5.288645299999928],[120.32557480000003,-5.290760699999964],[120.3209230000001,-5.2901906],[120.31858310000007,-5.294942499999934],[120.316172,-5.295008099999961],[120.313205,-5.297457699999939],[120.31155510000008,-5.295329799999934],[120.3066794,-5.294057099999975],[120.30629490000001,-5.29539],[120.30822770000009,-5.297374699999978],[120.30490140000006,-5.301560099999961],[120.30220720000011,-5.300930599999958],[120.30121560000009,-5.298928899999964],[120.3029017,-5.296320399999956],[120.30151160000003,-5.295226499999956],[120.30170510000005,-5.291510499999958],[120.29785980000008,-5.290640699999926],[120.29889490000005,-5.288076499999931],[120.2947127000001,-5.289925],[120.29184930000008,-5.2866832],[120.29111870000008,-5.289115399999957],[120.28883650000012,-5.286556],[120.28571550000004,-5.287399799999946],[120.28491010000005,-5.290309299999933],[120.28156,-5.290072499999951],[120.28322860000003,-5.292836899999941],[120.28049850000002,-5.294053499999961],[120.28129720000004,-5.296924499999932],[120.2793521000001,-5.295248099999981],[120.277181,-5.2967461],[120.27850330000001,-5.297555],[120.277442,-5.301203599999951],[120.27555830000006,-5.298776099999941],[120.2722447000001,-5.299485599999969],[120.27032070000007,-5.297228299999972],[120.26208550000001,-5.298243499999955],[120.26004530000012,-5.296692],[120.25803610000003,-5.297158699999954],[120.25813750000009,-5.298896599999978],[120.25486240000009,-5.3003272],[120.254479,-5.302159299999971],[120.25197820000005,-5.302012],[120.24582960000009,-5.301066099999957],[120.24650840000004,-5.299364599999933],[120.24192260000007,-5.2971077],[120.23911150000004,-5.2983751],[120.23732380000001,-5.296781399999929],[120.231018,-5.297681499999953],[120.23019130000012,-5.296592399999952],[120.22615640000004,-5.299573499999951],[120.22278510000001,-5.300126499999976],[120.22377590000008,-5.3010723],[120.2216734000001,-5.303304199999957],[120.21409040000003,-5.303216599999928],[120.20237820000011,-5.3006277],[120.19644630000005,-5.305613799999946],[120.18970740000009,-5.3065139],[120.17647430000011,-5.312826899999948],[120.17412960000001,-5.310985099999925],[120.16914910000003,-5.311344599999927],[120.16081550000001,-5.303662],[120.15013780000004,-5.299673399999961],[120.14045370000008,-5.288339899999926],[120.14048260000004,-5.289902899999959],[120.1361151000001,-5.294455399999947],[120.1349206000001,-5.300364599999966],[120.1329009000001,-5.300884199999928],[120.13005870000006,-5.304902899999945],[120.13015260000009,-5.307707],[120.12509160000002,-5.306697499999927],[120.12486310000008,-5.311855799999933],[120.12159380000003,-5.310665599999936],[120.11756690000004,-5.312236499999926],[120.115567,-5.314638899999977],[120.1142827000001,-5.313514299999952],[120.10766310000008,-5.316175],[120.10566380000012,-5.3137813],[120.1023752000001,-5.317040599999928],[120.0979976000001,-5.3168106],[120.09828470000002,-5.321173699999974],[120.09715860000006,-5.322297399999968],[120.08945970000002,-5.321143699999936],[120.08163950000005,-5.323995399999944],[120.07671620000008,-5.332842299999925],[120.07435050000004,-5.3332327],[120.07336140000007,-5.335511099999962],[120.06780770000012,-5.333358799999928],[120.06149330000005,-5.333084799999938],[120.05689380000001,-5.335749799999974],[120.05470570000011,-5.339458],[120.03974110000001,-5.3469528],[120.03739030000008,-5.345881299999974],[120.0369928,-5.342343699999958],[120.03320340000005,-5.341309],[120.03305840000007,-5.339511],[120.0203553,-5.338249699999949],[120.01757260000011,-5.3363505],[120.01678040000002,-5.333040599999947],[120.0127089,-5.328787899999952],[120.01205520000008,-5.325347699999952],[120.00795180000011,-5.324740599999927],[120.00537020000002,-5.322541699999931],[119.99789790000011,-5.322074099999952],[119.99515780000002,-5.322882399999969],[119.98833450000006,-5.330043699999976],[119.98522680000008,-5.330429199999969],[119.969142,-5.341511099999934],[119.96231890000001,-5.341562199999942],[119.95824930000003,-5.343461],[119.95501660000002,-5.351653],[119.95511780000004,-5.355242],[119.95970710000006,-5.355599899999959],[119.96359160000009,-5.359224299999937],[119.96343550000006,-5.362103],[119.96959450000008,-5.366986699999927],[119.97018090000006,-5.369993299999976],[119.972475,-5.371518199999969],[119.97293020000006,-5.374683499999946],[119.98001540000007,-5.38573],[119.98064550000004,-5.3906983],[119.98540130000004,-5.392107499999952],[119.9892254,-5.390979199999947],[119.9909613000001,-5.3889579],[119.9998078000001,-5.390459199999952],[120.00323750000007,-5.386945799999978],[120.0068877000001,-5.388644699999929],[120.01174850000007,-5.386980299999948],[120.0157848,-5.3899339],[120.02250290000006,-5.389917199999957],[120.02626240000006,-5.393164],[120.0287340000001,-5.393255],[120.03045580000003,-5.399566199999981],[120.03245960000004,-5.400995299999977],[120.03448350000008,-5.406372399999952],[120.03373540000007,-5.408455499999945],[120.029761,-5.409931499999971],[120.03098910000006,-5.413048199999935],[120.0389282000001,-5.419808799999942],[120.03997060000006,-5.423816199999976],[120.0503278000001,-5.437054799999942],[120.05627620000007,-5.438829099999964],[120.05278040000007,-5.443844799999965],[120.05406560000006,-5.446738499999981],[120.05324240000004,-5.448399],[120.05664950000005,-5.449576299999933],[120.05658590000007,-5.451964199999964],[120.05888360000006,-5.450798599999928],[120.06074260000003,-5.452777599999933],[120.06768290000002,-5.455090899999959],[120.06701790000011,-5.456839599999967],[120.06988380000007,-5.459580899999935],[120.07029940000007,-5.462566599999946],[120.08363570000006,-5.478161399999976],[120.08720830000004,-5.487075699999934],[120.0889562000001,-5.487385899999936],[120.091316,-5.490981599999941],[120.090482,-5.498767199999975],[120.09495220000008,-5.508000799999934],[120.09591960000012,-5.519730699999968],[120.09795330000009,-5.525479099999927],[120.09733720000008,-5.531234599999948],[120.09884560000012,-5.532874499999934],[120.09977,-5.542527],[120.09912660000009,-5.545373099999949],[120.097361,-5.546043499999939],[120.099846,-5.548548199999971],[120.09854560000008,-5.550405299999966],[120.10090590000004,-5.552724799999964],[120.09967180000001,-5.5543982],[120.10208150000005,-5.555927099999963],[120.10106950000011,-5.558752199999958],[120.09560970000007,-5.562643099999946],[120.10002240000006,-5.565867899999944],[120.09818660000008,-5.566950199999951],[120.09858540000005,-5.570361099999957],[120.10044530000005,-5.571850499999925],[120.09809410000003,-5.573921599999949],[120.10017970000001,-5.574918699999955],[120.09870490000003,-5.580167099999926],[120.101328,-5.585738]]]]},"properties":{"shapeName":"Bulukumba","shapeISO":"","shapeID":"22746128B59816946639693","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.62916540000003,2.797807500000033],[117.629814,2.799272700000074],[117.62029240000004,2.807654900000045],[117.61042020000002,2.811486800000068],[117.61089330000004,2.807542300000023],[117.6145782000001,2.802275200000054],[117.62136080000005,2.799159600000053],[117.62916540000003,2.797807500000033]]],[[[117.64919280000004,2.800528600000064],[117.6399305000001,2.810873900000047],[117.635292,2.811826300000064],[117.62898280000002,2.810644600000046],[117.62886790000005,2.809206300000028],[117.63433840000005,2.804652900000065],[117.644333,2.800938400000064],[117.64919280000004,2.800528600000064]]],[[[117.70565970000007,2.839355400000045],[117.70130490000008,2.839931100000058],[117.70178080000005,2.844536900000037],[117.69280680000008,2.85183150000006],[117.67816160000007,2.849272500000041],[117.65756240000007,2.835162900000057],[117.64092260000007,2.814274800000021],[117.65587630000005,2.798534600000039],[117.67753610000011,2.796495800000059],[117.68860610000002,2.798515800000075],[117.70287630000007,2.806552400000044],[117.7291705,2.807119400000033],[117.73363710000001,2.808705900000064],[117.73701180000012,2.815089600000022],[117.7328195,2.818357],[117.72851170000001,2.827105700000061],[117.729482,2.828160600000047],[117.72775130000002,2.828994300000033],[117.72194380000008,2.827851800000076],[117.72111860000007,2.832263700000055],[117.70565970000007,2.839355400000045]]],[[[117.58087910000006,2.90328],[117.56291930000009,2.908490900000061],[117.54635630000007,2.907992500000034],[117.54427360000011,2.904971900000021],[117.543556,2.899200500000063],[117.546417,2.890224800000055],[117.550865,2.892167700000073],[117.5520785000001,2.887263800000028],[117.55587770000011,2.887117200000034],[117.55846420000012,2.885388],[117.5650558000001,2.887040300000024],[117.5726548,2.883580600000073],[117.58004750000009,2.889095300000065],[117.58535020000011,2.888658300000031],[117.59165180000002,2.87301350000007],[117.59358240000006,2.861188600000048],[117.59645060000003,2.858590700000036],[117.60185210000009,2.860351800000046],[117.60397310000008,2.85884],[117.62129860000005,2.855799200000035],[117.63526350000006,2.850435100000027],[117.63841260000004,2.856595900000059],[117.64226760000008,2.85921970000004],[117.6488111000001,2.860558100000048],[117.65639560000011,2.859517100000062],[117.66695450000009,2.855055600000071],[117.6849492,2.863235],[117.70662750000008,2.861687700000061],[117.711426,2.864604800000052],[117.71725570000001,2.871679800000038],[117.71788870000012,2.886077500000056],[117.71949170000005,2.891284700000028],[117.713686,2.895922300000052],[117.69306960000006,2.89449570000005],[117.67426290000003,2.895230800000036],[117.65342710000004,2.892610500000046],[117.60794080000005,2.903998400000035],[117.5873643000001,2.904407400000025],[117.58087910000006,2.90328]]],[[[117.53110490000006,2.904335900000035],[117.54346440000006,2.908708600000068],[117.52718360000006,2.911737900000048],[117.51718890000006,2.909915100000035],[117.51996630000008,2.905779500000051],[117.53110490000006,2.904335900000035]]],[[[117.57096120000006,2.912974],[117.57454690000009,2.915405700000065],[117.5743715000001,2.91765840000005],[117.56663490000005,2.918594100000064],[117.5563810000001,2.914745400000072],[117.56105050000008,2.912734700000044],[117.57096120000006,2.912974]]],[[[117.60554520000005,2.918827100000044],[117.61146530000008,2.922171100000071],[117.6001361000001,2.922593400000039],[117.59296390000009,2.918833800000073],[117.60554520000005,2.918827100000044]]],[[[117.49633010000002,2.92029210000004],[117.4936216000001,2.92402960000004],[117.48926540000002,2.925252900000032],[117.492691,2.921732200000065],[117.49633010000002,2.92029210000004]]],[[[117.68736280000007,2.935048100000074],[117.65801990000011,2.926821700000062],[117.64411180000002,2.927336400000058],[117.62644220000004,2.924162100000046],[117.60560620000001,2.917388600000038],[117.58902750000004,2.914792],[117.58043670000006,2.910191800000064],[117.5948565000001,2.906411800000058],[117.61268630000006,2.907750200000066],[117.645096,2.901779400000066],[117.66250580000008,2.901769300000069],[117.67609430000005,2.904276200000027],[117.69650260000003,2.902671500000054],[117.71057520000011,2.904208700000027],[117.71310520000009,2.905919200000028],[117.71572550000008,2.908562300000028],[117.71587020000004,2.911482300000046],[117.70572830000003,2.929751400000043],[117.70039780000002,2.93323730000003],[117.69351720000009,2.932583400000055],[117.68736280000007,2.935048100000074]]],[[[117.36814140000001,2.935468100000037],[117.368454,2.936743600000057],[117.3641589,2.93986620000004],[117.36468480000008,2.936835300000041],[117.36814140000001,2.935468100000037]]],[[[117.3704222,2.937882800000068],[117.37327560000006,2.94065930000005],[117.3737106000001,2.944847800000048],[117.3668748,2.950450100000069],[117.36652360000005,2.946478700000057],[117.36393730000009,2.941675600000053],[117.36722570000006,2.938508100000035],[117.3704222,2.937882800000068]]],[[[117.46262380000007,2.953157300000044],[117.45427710000001,2.954886800000054],[117.45642110000006,2.949756400000069],[117.45584850000012,2.948028700000066],[117.448349,2.94666570000004],[117.4486313000001,2.941210400000045],[117.45434570000009,2.935463300000038],[117.45562770000004,2.934820500000058],[117.46587350000004,2.939421100000061],[117.47243480000009,2.938079400000049],[117.480934,2.929779800000063],[117.49276710000004,2.925920800000029],[117.49976370000002,2.918291300000021],[117.50700360000008,2.91561020000006],[117.52367420000007,2.916018700000052],[117.54050470000004,2.912328700000046],[117.54766830000005,2.912659900000051],[117.56450630000006,2.919689900000037],[117.57033520000005,2.925133],[117.58109280000008,2.928474700000038],[117.5823438000001,2.930066200000056],[117.57975770000007,2.93384],[117.57076260000008,2.936269100000061],[117.57076240000004,2.939200300000039],[117.57376840000006,2.944816700000047],[117.56268320000004,2.948088200000029],[117.55885320000004,2.95110260000007],[117.55118550000009,2.946338900000057],[117.53218860000004,2.94257570000002],[117.52328480000006,2.937486700000022],[117.50360120000005,2.939486],[117.495941,2.947115900000028],[117.4885253000001,2.945861700000023],[117.4877775000001,2.951389600000027],[117.48477920000005,2.953652600000055],[117.47769170000004,2.954415600000061],[117.46262380000007,2.953157300000044]]],[[[117.5118639000001,2.948402300000055],[117.49811570000008,2.954768400000034],[117.48769350000009,2.953606],[117.48944110000002,2.946395],[117.4961932000001,2.947730900000067],[117.50369240000009,2.940942500000062],[117.50785850000011,2.939520300000027],[117.51135240000008,2.939183900000046],[117.5158540000001,2.940936900000054],[117.5141066000001,2.94705330000005],[117.5118639000001,2.948402300000055]]],[[[117.5083618000001,2.95568650000007],[117.50386810000009,2.960211900000047],[117.50002310000002,2.960385600000052],[117.50011440000003,2.958377200000029],[117.5083618000001,2.95568650000007]]],[[[117.47901170000011,2.95861270000006],[117.4799498000001,2.95721],[117.48719790000007,2.955777500000067],[117.49694850000003,2.957953400000065],[117.499199,2.959960800000033],[117.48236860000009,2.962320400000067],[117.479866,2.96122680000002],[117.47901170000011,2.95861270000006]]],[[[117.667288,2.987271700000065],[117.65562910000006,2.987569],[117.63525420000008,2.978628300000025],[117.61391860000003,2.982197800000051],[117.60300880000011,2.977901400000064],[117.60392020000006,2.972759500000052],[117.58851690000006,2.973681],[117.57910170000002,2.963730300000066],[117.56131770000002,2.951264200000026],[117.56372810000005,2.949091800000076],[117.57456190000005,2.945901800000058],[117.57539340000005,2.943214600000033],[117.57189190000008,2.938611600000058],[117.57197580000002,2.936603200000036],[117.57897180000009,2.935505],[117.58296970000004,2.932155700000067],[117.58271800000011,2.928301900000065],[117.57255570000007,2.924625200000037],[117.57122030000005,2.921685800000034],[117.57205210000006,2.920599700000025],[117.58013170000004,2.920848900000067],[117.59821310000007,2.925281200000029],[117.61696620000009,2.926021900000023],[117.64347840000005,2.93390450000004],[117.66588580000007,2.936551],[117.69315490000008,2.945760200000052],[117.69587520000005,2.948206600000049],[117.69605600000011,2.951784800000041],[117.69236380000007,2.957365700000025],[117.68251970000006,2.961845100000062],[117.6673512000001,2.963963800000045],[117.67144940000003,2.974983400000042],[117.667288,2.987271700000065]]],[[[117.54684430000009,2.957495600000072],[117.559929,2.964518300000066],[117.56426230000011,2.970052600000031],[117.56359850000001,2.975327100000072],[117.55818950000003,2.984457900000052],[117.55319220000001,2.988404800000069],[117.54644010000004,2.990914100000055],[117.54544080000005,2.987648800000045],[117.54952260000005,2.98178450000006],[117.54927050000003,2.976845200000071],[117.5424269,2.969394100000045],[117.5365905000001,2.958079600000076],[117.53308880000009,2.956326200000035],[117.53042620000008,2.956915600000059],[117.5312652,2.966215100000056],[117.53018180000004,2.969309600000031],[117.52168270000004,2.971493900000041],[117.51526650000005,2.97786590000004],[117.51301560000002,2.976437500000031],[117.5149305000001,2.973758800000041],[117.51418290000004,2.972248400000069],[117.50468460000002,2.969909700000073],[117.50009910000006,2.961869200000024],[117.5055086000001,2.960193100000026],[117.514923,2.952643800000033],[117.521919,2.940328],[117.5240023,2.940833600000076],[117.52750420000007,2.945436700000073],[117.54684430000009,2.957495600000072]]],[[[117.62839370000006,2.993100300000037],[117.62412690000008,2.992451700000061],[117.6203627000001,2.988001800000063],[117.63074960000006,2.982777900000031],[117.63645440000005,2.983540500000061],[117.63878080000006,2.98824970000004],[117.6340408000001,2.992704500000059],[117.62839370000006,2.993100300000037]]],[[[117.6404212000001,2.992356100000052],[117.63638360000004,2.992856300000028],[117.64251490000004,2.989961300000061],[117.6404212000001,2.992356100000052]]],[[[117.45628350000004,2.983057700000074],[117.461418,2.986439],[117.462677,2.991088500000046],[117.46071610000001,2.99440050000004],[117.45742770000004,2.995976],[117.45260630000007,2.990893700000072],[117.4505994000001,2.986325900000054],[117.4507215000001,2.985186],[117.45263690000002,2.983330600000045],[117.45628350000004,2.983057700000074]]],[[[117.498497,2.996057500000063],[117.51004020000005,3.002556800000036],[117.51373260000003,3.010136200000034],[117.50419590000001,3.003337500000043],[117.49903860000006,2.998400400000037],[117.49766540000007,2.996528300000023],[117.498497,2.996057500000063]]],[[[117.5159609000001,3.003983300000073],[117.5249483,3.009949900000038],[117.51886740000009,3.009952800000065],[117.514198,3.005929200000026],[117.51421330000005,3.003667500000063],[117.5159609000001,3.003983300000073]]],[[[117.47901170000011,2.95861270000006],[117.4796831000001,2.962213],[117.48168160000012,2.96288160000006],[117.4990156,2.961028400000032],[117.5047684000001,2.971167100000059],[117.512764,2.972167600000034],[117.51384740000003,2.974012600000037],[117.51184830000011,2.976863300000048],[117.51543450000008,2.978788500000064],[117.51827240000011,2.977529700000048],[117.52243070000009,2.972579200000041],[117.53118160000008,2.970150500000045],[117.53234870000006,2.966965500000072],[117.53167750000011,2.958082],[117.5340883,2.957746100000065],[117.539932,2.969223500000055],[117.54751610000005,2.978601100000049],[117.54735560000006,2.981532300000026],[117.54251890000012,2.986058],[117.54418940000005,2.992172700000026],[117.54969010000002,2.992929900000036],[117.55727380000008,2.989904500000023],[117.5571139000001,2.998372200000063],[117.55928040000003,3.003147700000056],[117.55711370000006,3.009173900000064],[117.55361930000004,3.011184],[117.54370150000011,3.011949],[117.52386460000002,3.006512600000065],[117.48160530000007,2.982657800000027],[117.47943850000001,2.978044900000043],[117.4785994,2.968917100000056],[117.47634870000002,2.966321700000037],[117.46363810000003,2.968308400000069],[117.45564260000003,2.966013800000042],[117.45006590000003,2.961818400000027],[117.45535250000012,2.956578100000058],[117.47159590000001,2.955847600000027],[117.47901170000011,2.957273800000053],[117.47901170000011,2.95861270000006]]],[[[117.4932784,2.99982330000006],[117.49478130000011,3.003758],[117.488373,3.016163900000038],[117.48587020000002,3.01758540000003],[117.48378750000006,3.016084600000056],[117.4833681,3.008874500000047],[117.47694400000012,3.000852900000041],[117.47315220000007,2.999506600000075],[117.46151750000001,3.003826900000035],[117.4590151000001,2.99664480000007],[117.462654,2.993911100000048],[117.4645081000001,2.988310400000046],[117.4635770000001,2.986157700000035],[117.45700840000006,2.982930700000054],[117.45557420000011,2.977367500000071],[117.46350070000005,2.97315750000007],[117.46492770000009,2.970859],[117.4731825,2.967915300000072],[117.47673820000011,2.968284700000027],[117.47869130000004,2.982487200000037],[117.48160530000007,2.986593200000073],[117.48935720000009,2.990941200000066],[117.49077610000006,2.997056200000031],[117.4932784,2.99982330000006]]],[[[117.51065810000011,3.014281],[117.5032347,3.016582300000039],[117.4927368000001,3.029876800000068],[117.4903107,3.030303100000026],[117.488098,3.028874700000074],[117.48759460000008,3.018851200000029],[117.49615470000003,3.00383880000004],[117.49565140000004,3.000256500000035],[117.49215720000007,2.996738900000025],[117.49276720000012,2.994856900000059],[117.51358820000007,3.013854400000071],[117.51065810000011,3.014281]]],[[[117.41805880000004,3.030042300000048],[117.41217390000008,3.03247650000003],[117.40346680000005,3.040220300000044],[117.39696440000012,3.038646],[117.40019880000011,3.030334200000027],[117.4082565000001,3.018603600000063],[117.41223140000011,3.018991100000051],[117.41621380000004,3.023087700000076],[117.41805880000004,3.030042300000048]]],[[[117.62281550000012,3.059044],[117.62111950000008,3.060176100000035],[117.59422280000001,3.056404500000042],[117.57305170000006,3.046030500000029],[117.56497210000009,3.047789900000055],[117.55413840000006,3.056344600000045],[117.55512970000007,3.039508300000023],[117.5528792,3.034642400000052],[117.54821040000002,3.034400500000061],[117.54013080000004,3.040601500000037],[117.52829740000004,3.038843300000053],[117.52288050000004,3.040863400000035],[117.52088160000005,3.038430800000071],[117.520798,3.031817700000033],[117.52362850000009,3.029048],[117.51887490000001,3.020926400000064],[117.51378620000003,3.021091700000056],[117.51287080000009,3.018161],[117.52362080000012,3.015478],[117.5411223000001,3.017893900000047],[117.55361960000005,3.016295400000047],[117.5588682,3.013026900000057],[117.56444570000008,3.006655200000068],[117.56677220000006,2.99417870000002],[117.57026680000001,2.985039700000073],[117.57400510000002,2.980849200000023],[117.57648460000007,2.981270100000074],[117.58678650000002,2.993977400000063],[117.60316890000001,3.009676],[117.60236140000006,3.013338600000054],[117.60338650000006,3.015803400000038],[117.60787520000008,3.016739200000075],[117.61453950000009,3.015759100000025],[117.61891440000011,3.01780750000006],[117.61870110000007,3.025284800000065],[117.62291970000001,3.033241400000065],[117.62303380000003,3.038552700000025],[117.62435210000001,3.039846800000021],[117.61995090000005,3.046072600000059],[117.62592770000003,3.04719410000007],[117.6273579000001,3.050065500000073],[117.62281550000012,3.059044]]],[[[117.5165558000001,3.058208900000068],[117.5113070000001,3.059297100000038],[117.50950610000007,3.063025200000027],[117.50714110000001,3.064410400000043],[117.49744850000002,3.060774800000047],[117.4967544000001,3.058382300000062],[117.5036391000001,3.050842],[117.50094590000003,3.045460500000047],[117.50068650000003,3.041389600000059],[117.49779510000008,3.040368700000045],[117.48846450000008,3.042299900000046],[117.48571030000005,3.037443100000075],[117.48821240000007,3.031914400000062],[117.49219520000008,3.032346800000028],[117.49579630000005,3.03090670000006],[117.50162480000006,3.02227350000004],[117.50811770000007,3.017909900000063],[117.511452,3.01849640000006],[117.51261920000002,3.021345500000052],[117.51745610000012,3.021424700000068],[117.51987450000001,3.023603700000024],[117.52279670000007,3.029129900000044],[117.5198746000001,3.032152900000028],[117.51996630000008,3.039272600000061],[117.52363590000004,3.042201900000066],[117.52338420000001,3.045133200000066],[117.5287244000001,3.055181400000038],[117.52747350000004,3.058447900000033],[117.5165558000001,3.058208900000068]]],[[[117.44795060000001,3.060564200000044],[117.44874120000009,3.061467900000025],[117.44727420000004,3.064675600000044],[117.44045860000006,3.055366200000037],[117.44760080000003,3.057241],[117.4487749000001,3.061241100000075],[117.44795060000001,3.060564200000044]]],[[[117.53000630000008,3.067909400000076],[117.5213930000001,3.068085600000074],[117.490876,3.064496500000075],[117.47499990000006,3.059352800000056],[117.46476,3.054393600000026],[117.44600990000004,3.053756600000042],[117.44167990000005,3.050549300000057],[117.43680370000004,3.042794300000025],[117.41939330000002,3.030020500000035],[117.41848730000004,3.024896200000057],[117.41400920000001,3.01896320000003],[117.40914920000012,3.01742710000002],[117.40648650000003,3.018577100000073],[117.40391570000008,3.024711800000034],[117.40011450000009,3.02904250000006],[117.39680340000007,3.017889600000046],[117.37838370000009,3.003678],[117.3792343,2.990822100000059],[117.37018570000009,2.979525700000067],[117.36770640000009,2.972252800000035],[117.3603667000001,2.962918900000034],[117.35884830000009,2.957835],[117.36341880000009,2.955644200000052],[117.3670350000001,2.951906600000029],[117.36817960000008,2.959179900000038],[117.3737943000001,2.961575500000038],[117.3775098000001,2.960615200000063],[117.38188950000006,2.95639790000007],[117.396179,2.957976100000053],[117.40160350000008,2.95682510000006],[117.40360260000011,2.957593400000064],[117.40550990000008,2.962668],[117.4089431000001,2.965055100000029],[117.42037180000011,2.96835290000007],[117.43036630000006,2.968349],[117.44007890000012,2.965187800000024],[117.44789120000007,2.964895200000058],[117.46218080000006,2.970733500000051],[117.4628298,2.971864100000062],[117.45484950000002,2.976526500000034],[117.45561240000006,2.98141140000007],[117.45066050000003,2.984480400000052],[117.4501878000001,2.986579400000039],[117.45056940000006,2.98849720000004],[117.45533010000008,2.995198900000048],[117.45952590000002,3.004958600000066],[117.46628570000007,3.005154700000048],[117.47428880000007,3.002129600000046],[117.47905,3.006632800000034],[117.4811171,3.016085800000042],[117.48487080000007,3.02261580000004],[117.48503860000005,3.026885800000059],[117.48745730000007,3.031326700000022],[117.48472620000007,3.037714900000026],[117.48729710000009,3.042807],[117.48921990000008,3.043475600000022],[117.49871840000003,3.041209600000059],[117.50063340000008,3.042294300000037],[117.50005350000004,3.045732300000054],[117.50255570000002,3.051765300000056],[117.49612480000008,3.057951100000025],[117.49671580000006,3.06138640000006],[117.50647750000007,3.065831100000025],[117.50897960000009,3.065241900000046],[117.51280980000001,3.060381900000039],[117.51597580000009,3.059213400000033],[117.52622230000009,3.060212600000057],[117.5281374000001,3.059035600000072],[117.52980800000012,3.054592800000023],[117.52513110000007,3.045050900000035],[117.52613070000007,3.041784500000063],[117.52971630000002,3.04086],[117.53980260000003,3.042275300000028],[117.5496293000001,3.036408100000074],[117.55221540000002,3.036488200000065],[117.55313110000009,3.039925500000038],[117.55055220000008,3.054084800000055],[117.55139140000006,3.059693300000049],[117.54922490000001,3.064217700000029],[117.54456340000002,3.067657800000063],[117.53000630000008,3.067909400000076]]],[[[117.47723070000006,3.063833300000056],[117.48219310000002,3.068615600000044],[117.465414,3.060318400000028],[117.4704918000001,3.060208700000032],[117.47723070000006,3.063833300000056]]],[[[117.44062010000005,3.056915500000059],[117.4463412,3.063934200000062],[117.4470285000001,3.069247300000029],[117.44044860000008,3.063843700000064],[117.44062010000005,3.056915500000059]]],[[[117.49273320000009,3.072412900000074],[117.4880793000001,3.072420100000045],[117.48645590000001,3.070062300000075],[117.49306410000008,3.070454500000039],[117.49538030000008,3.072600700000066],[117.49273320000009,3.072412900000074]]],[[[117.44075,3.065645300000028],[117.44678560000011,3.070095900000069],[117.44468080000001,3.073238600000025],[117.4402563000001,3.066798900000038],[117.44075,3.065645300000028]]],[[[117.51879860000008,3.073071500000026],[117.51606010000012,3.072050600000068],[117.53118130000007,3.072586],[117.51879860000008,3.073071500000026]]],[[[117.54470060000006,3.073067600000059],[117.54727960000002,3.074522800000068],[117.53839120000009,3.077757],[117.53082280000001,3.074467800000036],[117.53322580000008,3.072503500000039],[117.54470060000006,3.073067600000059]]],[[[117.50617960000011,3.076904400000046],[117.50183090000007,3.078643400000033],[117.49953160000007,3.07691310000007],[117.49778050000009,3.071765800000037],[117.50450910000006,3.069839700000045],[117.51599880000003,3.073127200000044],[117.51338170000008,3.07672],[117.50617960000011,3.076904400000046]]],[[[117.447618,3.07118360000004],[117.45345880000002,3.073544500000025],[117.46159150000005,3.081642100000067],[117.44820460000005,3.079016500000023],[117.44540470000004,3.073793600000045],[117.447618,3.07118360000004]]],[[[117.6231418000001,3.077999100000056],[117.62216940000008,3.082464800000025],[117.62166950000005,3.079786],[117.6231418000001,3.077999100000056]]],[[[117.63096650000011,3.082982300000026],[117.6228195000001,3.082638600000053],[117.62415950000002,3.076833200000067],[117.63068810000004,3.070131700000047],[117.63428420000002,3.069062300000041],[117.63892140000007,3.069996100000026],[117.63961740000002,3.074504300000058],[117.63249220000012,3.079975600000068],[117.63162620000003,3.081065200000069],[117.63279690000002,3.082164400000067],[117.63096650000011,3.082982300000026]]],[[[117.56993850000003,3.051125400000046],[117.58869920000006,3.060686600000054],[117.61930890000008,3.066914800000063],[117.62369390000003,3.070949800000051],[117.62330010000005,3.073620500000061],[117.6032818000001,3.084163700000033],[117.59381850000011,3.081119900000033],[117.57017530000007,3.078853200000026],[117.5522615000001,3.072900900000036],[117.55140670000003,3.071924300000035],[117.55516050000006,3.065544500000044],[117.5673220000001,3.05210390000002],[117.56993850000003,3.051125400000046]]],[[[117.49351500000012,3.082647300000076],[117.49255850000009,3.085738800000058],[117.48929050000004,3.08628340000007],[117.48213470000007,3.082704],[117.47205110000004,3.08282440000005],[117.46574040000007,3.080493400000023],[117.45818,3.073635100000047],[117.44921380000005,3.068283700000052],[117.45049230000006,3.058338800000058],[117.459402,3.058260100000041],[117.48750470000004,3.073468500000047],[117.49633460000007,3.075041200000044],[117.49351500000012,3.082647300000076]]],[[[117.48322240000005,3.083885100000032],[117.48452720000012,3.086634300000071],[117.48113280000007,3.087764],[117.47233680000011,3.083886600000028],[117.48322240000005,3.083885100000032]]],[[[117.49063870000009,3.091106],[117.49465160000011,3.091701200000045],[117.48872370000004,3.095186900000044],[117.48727440000005,3.094364400000075],[117.48683170000004,3.091894800000034],[117.49063870000009,3.091106]]],[[[117.59179670000003,3.084414],[117.60579670000004,3.087454800000046],[117.6074933000001,3.090129500000046],[117.60611030000007,3.094989200000043],[117.59321710000006,3.096951100000069],[117.57597550000003,3.092053800000031],[117.5726264000001,3.089702700000032],[117.57181560000004,3.086514700000066],[117.57213610000008,3.084379600000034],[117.574272,3.083727100000033],[117.59179670000003,3.084414]]],[[[117.52895220000005,3.098182100000031],[117.51799910000011,3.097948100000053],[117.51142640000012,3.096323700000028],[117.50547050000011,3.092817900000057],[117.50000000000011,3.086778300000049],[117.49826310000003,3.083612300000027],[117.498851,3.08092860000005],[117.499917,3.079799],[117.5034409000001,3.080379600000072],[117.50701150000009,3.078161500000022],[117.51350390000005,3.078185500000075],[117.51748680000003,3.074953900000025],[117.51975220000008,3.07477190000003],[117.53712470000005,3.079196100000047],[117.55540470000005,3.076463600000068],[117.56862650000005,3.08354010000005],[117.56976330000009,3.090007800000024],[117.5652612,3.093112800000029],[117.54709340000011,3.092715400000031],[117.52895220000005,3.098182100000031]]],[[[117.52978040000005,3.100161600000035],[117.5279392000001,3.101345900000069],[117.5208467000001,3.100560100000052],[117.52978040000005,3.100161600000035]]],[[[117.55956020000008,3.099549300000035],[117.5587107,3.102605400000073],[117.5556951000001,3.10228920000003],[117.5573961,3.099941600000022],[117.55956020000008,3.099549300000035]]],[[[117.55061560000001,3.102007],[117.54485380000006,3.102847700000041],[117.53697160000002,3.101295900000025],[117.53882680000004,3.097393400000044],[117.5429693000001,3.096074800000054],[117.54980290000003,3.095927700000061],[117.55610210000009,3.098258100000066],[117.55061560000001,3.102007]]],[[[117.50830990000009,3.101950200000033],[117.50516770000002,3.103890500000034],[117.5010711000001,3.101570700000025],[117.49587370000006,3.102379900000074],[117.489371,3.096200300000021],[117.4969698000001,3.091908600000068],[117.50801840000008,3.100186600000029],[117.50830990000009,3.101950200000033]]],[[[117.50005460000011,3.102356500000042],[117.50470740000003,3.10543430000007],[117.50428740000007,3.106941300000074],[117.497874,3.103758700000071],[117.50005460000011,3.102356500000042]]],[[[117.3884733000001,3.090216600000076],[117.38711540000008,3.092895],[117.38206450000007,3.093385400000045],[117.37944020000009,3.09544],[117.37750240000003,3.107735300000058],[117.37575540000012,3.111255200000073],[117.370415,3.113889700000072],[117.36420460000011,3.112426300000038],[117.36254890000009,3.108229100000074],[117.36555510000005,3.089193500000022],[117.37380960000007,3.089878100000021],[117.38089730000002,3.088310500000034],[117.38371250000012,3.085387400000059],[117.38448320000009,3.08089080000002],[117.38137840000002,3.077770800000053],[117.3698194000001,3.08021750000006],[117.36748490000002,3.071135300000037],[117.36282370000004,3.065862500000037],[117.35894040000005,3.065673900000036],[117.35534690000009,3.067529700000023],[117.3520506000001,3.076903300000026],[117.35001360000001,3.077727300000049],[117.3478775000001,3.07666050000006],[117.34719070000006,3.071196400000076],[117.35214220000012,3.063088700000037],[117.35194390000004,3.053327200000069],[117.3545683000001,3.048106300000029],[117.370781,3.048390300000051],[117.37789170000008,3.044262400000036],[117.38311780000004,3.048530700000072],[117.37991340000008,3.051264],[117.37806670000009,3.055760900000053],[117.37884530000008,3.057805300000041],[117.38399520000007,3.057902900000045],[117.39408880000008,3.061898],[117.39642330000004,3.067460900000071],[117.39458470000011,3.072247400000037],[117.39584370000011,3.077322200000026],[117.39827730000002,3.078298300000029],[117.40399950000005,3.077418600000044],[117.4052656,3.079073700000038],[117.40041340000005,3.082594800000038],[117.401291,3.088845800000058],[117.39196780000009,3.088261200000034],[117.3884733000001,3.090216600000076]]],[[[117.58706510000002,3.111228200000028],[117.58549510000012,3.113957800000037],[117.58287650000011,3.115084200000069],[117.56967470000006,3.110017],[117.56339580000008,3.109206700000072],[117.55979850000006,3.105761800000039],[117.56584280000004,3.098793300000068],[117.5696885000001,3.097264700000039],[117.58329830000002,3.102661300000022],[117.58861070000012,3.107301900000039],[117.58706510000002,3.111228200000028]]],[[[117.52228040000011,3.118326100000047],[117.51515190000009,3.114575800000068],[117.52430090000007,3.109416400000043],[117.5329283000001,3.113245200000051],[117.52228040000011,3.118326100000047]]],[[[117.4588854000001,3.112244400000066],[117.4607314000001,3.114785700000027],[117.4526747000001,3.121909100000039],[117.44791410000005,3.122499100000027],[117.44422170000007,3.120646100000044],[117.4346005000001,3.111377200000049],[117.42848230000004,3.108159100000023],[117.41799910000009,3.107331],[117.40391540000007,3.109489600000074],[117.40138980000006,3.107826],[117.39730820000011,3.101196200000061],[117.38915270000007,3.094604100000026],[117.38973220000003,3.09187170000007],[117.3921583,3.090794300000027],[117.402664,3.090392300000076],[117.40390780000007,3.087867700000061],[117.4025497,3.084159],[117.40711230000011,3.079471100000035],[117.40711210000006,3.077227400000027],[117.405266,3.075563500000044],[117.3983687000001,3.076154200000076],[117.3969115000001,3.074978600000065],[117.39846010000008,3.066338300000041],[117.39515680000011,3.06009720000003],[117.38486450000005,3.055704200000037],[117.38059240000007,3.056492800000058],[117.380783,3.052973500000064],[117.38564280000003,3.048873600000036],[117.38253020000002,3.045654],[117.38291920000006,3.041799900000058],[117.3881606000001,3.038667800000042],[117.39116660000002,3.031736800000033],[117.38650490000009,3.024709100000052],[117.38660450000009,3.021787],[117.38942320000001,3.016873100000055],[117.39534690000005,3.02216240000007],[117.39782450000007,3.02666750000003],[117.39518640000006,3.037934800000073],[117.39671790000011,3.040217600000062],[117.40180540000006,3.042404200000021],[117.41191070000002,3.035927],[117.423382,3.036134400000037],[117.43245720000004,3.046781700000054],[117.43796610000004,3.05615460000007],[117.4389278000001,3.068829100000073],[117.44560190000004,3.07971660000004],[117.46438710000007,3.091943900000047],[117.47817580000003,3.096634],[117.477899,3.102707],[117.46994370000004,3.110639300000059],[117.462725,3.115379700000062],[117.46131150000008,3.112731900000028],[117.4588854000001,3.112244400000066]]],[[[117.59703160000004,3.125868500000024],[117.5974533000001,3.126191400000039],[117.5946695,3.126626600000066],[117.59054980000008,3.126126300000067],[117.58345230000009,3.122922900000049],[117.58182370000009,3.119808800000044],[117.5905196000001,3.114565300000038],[117.59682570000007,3.107752100000027],[117.59980120000012,3.106314200000043],[117.61604190000003,3.109201100000064],[117.6205208,3.113339300000064],[117.62062590000005,3.117041800000038],[117.61409810000009,3.123872500000061],[117.61076520000006,3.125384600000075],[117.60383550000006,3.124275600000033],[117.5990981000001,3.126097500000071],[117.59725290000006,3.125545200000033],[117.59519570000009,3.125826400000051],[117.59703160000004,3.125868500000024]]],[[[117.22599050000008,3.174744500000031],[117.22842430000003,3.176055800000029],[117.22618090000003,3.178688900000054],[117.21770470000001,3.178437400000064],[117.22087840000006,3.175496500000065],[117.22599050000008,3.174744500000031]]],[[[117.229545,3.176480800000036],[117.23371870000005,3.180749900000023],[117.23621350000008,3.190836700000034],[117.22786730000007,3.188522600000056],[117.22019970000008,3.181757100000027],[117.22038280000004,3.180445300000031],[117.226738,3.179376400000024],[117.229545,3.176480800000036]]],[[[117.30586220000009,3.230271800000025],[117.30287950000002,3.231955400000061],[117.28386670000009,3.229382600000065],[117.27787020000005,3.230497],[117.27042410000001,3.229811500000039],[117.27119450000009,3.224645500000065],[117.27812170000004,3.209842800000047],[117.28112020000003,3.206395100000066],[117.28437020000001,3.205191],[117.28926820000004,3.20701710000003],[117.29431130000012,3.21448840000005],[117.29901890000008,3.217327700000055],[117.30586220000009,3.230271800000025]]],[[[117.2560347000001,3.241865700000062],[117.25775150000004,3.243330900000046],[117.25706490000005,3.244362400000057],[117.24824500000011,3.244192700000042],[117.24584990000005,3.242990100000043],[117.2560347000001,3.241865700000062]]],[[[117.37874620000002,3.275743600000055],[117.38303370000006,3.281902900000034],[117.38147760000004,3.284943200000043],[117.37592330000007,3.279064900000037],[117.37602230000005,3.275835100000052],[117.37874620000002,3.275743600000055]]],[[[117.45569610000007,3.27808170000003],[117.46600340000009,3.285241900000074],[117.47087120000003,3.293363600000021],[117.46902470000009,3.302565],[117.4665907000001,3.305605800000023],[117.46396650000008,3.306285500000058],[117.4597778000001,3.304432900000052],[117.45022580000011,3.283295100000032],[117.443794,3.278503200000046],[117.43833940000002,3.27723],[117.41672520000009,3.278026400000044],[117.39920040000004,3.27484910000004],[117.39276910000001,3.276226700000052],[117.38410950000002,3.280825900000025],[117.3798217000001,3.275345200000061],[117.38127870000005,3.270848300000068],[117.3859556000001,3.271434600000021],[117.39646930000004,3.265360100000066],[117.40892270000006,3.249256500000058],[117.41641430000004,3.24721610000006],[117.42644540000003,3.249978100000021],[117.437625,3.264149],[117.44482750000009,3.270402100000069],[117.45189010000001,3.273527100000024],[117.45569610000007,3.27808170000003]]],[[[117.37577080000005,3.280295300000034],[117.381615,3.286634900000024],[117.3837205000001,3.29340110000004],[117.388008,3.299569400000053],[117.38810740000008,3.304753100000028],[117.38391850000005,3.309649100000058],[117.38038840000002,3.309573400000033],[117.37275060000002,3.296626200000048],[117.36843460000011,3.294542700000022],[117.36550910000005,3.287192800000071],[117.3672868000001,3.280967900000064],[117.36326610000003,3.279567200000031],[117.36190020000004,3.27486330000005],[117.35936760000004,3.272032500000023],[117.35478960000012,3.271147600000063],[117.35508730000004,3.268017300000054],[117.36121360000004,3.263021200000026],[117.36296840000011,3.254019],[117.36602040000002,3.254497400000048],[117.37054440000009,3.264908600000069],[117.37927220000006,3.271211],[117.37888320000002,3.273554200000035],[117.37529770000003,3.274342700000034],[117.37577080000005,3.280295300000034]]],[[[117.446761,3.3409],[117.4430837000001,3.34101],[117.43523030000006,3.337219100000027],[117.41927010000006,3.324448400000051],[117.40355180000006,3.317617200000029],[117.39759040000001,3.313244700000041],[117.3932228000001,3.314034200000037],[117.38643990000003,3.318952900000056],[117.3849341,3.318428900000072],[117.3825534,3.312846100000058],[117.38791650000007,3.30871570000005],[117.39025140000001,3.303386200000034],[117.38995390000002,3.299179600000059],[117.38352210000005,3.286552700000072],[117.38585690000002,3.28097],[117.39209,3.277547800000036],[117.39881150000008,3.275980100000027],[117.41341380000006,3.27905],[117.4361037000001,3.278551800000059],[117.44467180000004,3.280113100000051],[117.44924920000005,3.284571100000051],[117.4574434000001,3.305112500000064],[117.464256,3.308149],[117.46785760000012,3.306772200000069],[117.47097780000001,3.303541100000075],[117.47360210000011,3.29718],[117.47340380000003,3.294339400000069],[117.47097,3.286904200000038],[117.46882610000011,3.28446260000004],[117.45713830000011,3.276244500000075],[117.4566354000001,3.274381],[117.45822640000006,3.27275590000005],[117.46062070000005,3.272223100000076],[117.47638450000011,3.275666400000034],[117.49027920000003,3.276060400000063],[117.49851170000011,3.274850700000059],[117.50316220000002,3.276116600000023],[117.51134230000002,3.274416700000074],[117.51667770000006,3.275898],[117.52173040000002,3.283481800000061],[117.5241658000001,3.292116600000043],[117.5235732000001,3.29855260000005],[117.5059692000001,3.320826700000055],[117.50000000000011,3.324179800000024],[117.46334820000004,3.332635300000049],[117.446761,3.3409]]],[[[117.4885872000001,3.407899600000064],[117.4548774000001,3.406446500000072],[117.449289,3.402092300000049],[117.44852730000002,3.394879],[117.45040670000003,3.379621300000053],[117.45086270000002,3.356505100000049],[117.45346870000003,3.347873400000026],[117.47864340000001,3.344780100000037],[117.49023140000008,3.341210900000021],[117.49687190000009,3.341279900000075],[117.50131270000008,3.344035700000063],[117.50514580000004,3.356190500000025],[117.50185670000008,3.376419200000043],[117.50219590000006,3.389086500000076],[117.49839540000005,3.404509800000028],[117.49422540000012,3.407082900000034],[117.4885872000001,3.407899600000064]]],[[[117.98593390000008,2.435721800000067],[117.97734550000007,2.440303400000062],[117.9751645,2.440109300000074],[117.96588450000002,2.446833800000036],[117.94402530000002,2.46662850000007],[117.9238984000001,2.489931900000045],[117.90333710000004,2.520369300000027],[117.88774660000001,2.538401800000031],[117.87165990000005,2.554322900000045],[117.86406720000002,2.559452700000065],[117.83724110000003,2.591057600000056],[117.822517,2.603077400000075],[117.81225340000003,2.608713600000044],[117.800178,2.626193300000068],[117.79292620000001,2.640565500000037],[117.78821710000011,2.660269],[117.78829580000001,2.677890500000046],[117.79023070000005,2.686968500000035],[117.78887540000005,2.687553900000069],[117.79055820000008,2.691474500000027],[117.79018440000004,2.71851730000003],[117.786282,2.730607400000054],[117.78520060000005,2.748287800000071],[117.77969140000005,2.750223700000049],[117.7763251,2.747191800000053],[117.77079640000011,2.746788600000059],[117.75121130000002,2.754108],[117.74608660000001,2.751946500000031],[117.74358280000001,2.754391600000076],[117.74286140000004,2.761409300000025],[117.7323474000001,2.77153080000005],[117.72904240000003,2.772396700000058],[117.7288529000001,2.773673700000074],[117.7258528000001,2.772437900000057],[117.723174,2.774881],[117.69784240000001,2.783612900000037],[117.68495960000007,2.782161900000062],[117.6605532000001,2.788879400000042],[117.61522680000007,2.795191400000022],[117.61006180000004,2.791421700000058],[117.60351,2.780819200000053],[117.5989121,2.781097500000044],[117.6031531000001,2.781961300000034],[117.60797900000011,2.792508400000031],[117.61339580000003,2.79820490000003],[117.60981760000004,2.803146200000072],[117.60207390000005,2.809356200000025],[117.59953570000005,2.814063800000042],[117.61128660000008,2.817051800000058],[117.61897360000012,2.813981200000057],[117.63559810000004,2.817016200000069],[117.64131250000003,2.81936840000003],[117.64532680000002,2.823082300000067],[117.65360470000007,2.835561100000064],[117.6646938,2.845320400000048],[117.65312390000008,2.854758200000049],[117.64985210000009,2.856096600000058],[117.64241630000004,2.855353100000059],[117.6374829,2.848194800000044],[117.63200620000009,2.847471100000064],[117.61225150000007,2.854022900000075],[117.59508530000005,2.857505800000069],[117.59185800000012,2.861831800000061],[117.58456440000009,2.888188300000024],[117.58033020000005,2.887611500000048],[117.57337180000002,2.882458500000041],[117.56864160000009,2.882895100000042],[117.56484220000004,2.886072400000046],[117.55752570000004,2.884420500000033],[117.55114730000003,2.887372800000037],[117.55029320000006,2.891272300000026],[117.54727910000008,2.889111600000035],[117.54555540000001,2.890080500000067],[117.54269410000006,2.89837760000006],[117.54370090000009,2.90695340000002],[117.53903980000007,2.906593800000053],[117.53036490000011,2.903205400000047],[117.519539,2.904947400000026],[117.51409160000003,2.910387],[117.484482,2.923128900000052],[117.47308320000002,2.935319800000059],[117.46991710000009,2.935438800000043],[117.45959630000004,2.931599300000073],[117.45662690000006,2.934422],[117.45484170000009,2.933988500000055],[117.4484179000001,2.940351],[117.44699120000007,2.94350890000004],[117.44813560000011,2.947597600000051],[117.45520810000005,2.948535600000071],[117.45321640000009,2.956181],[117.44921860000011,2.959728900000073],[117.43084720000002,2.965481],[117.42084490000002,2.965674800000045],[117.40903450000008,2.962947100000065],[117.405792,2.955964200000039],[117.39826940000012,2.954628],[117.39398170000004,2.956257900000026],[117.383888,2.953864100000033],[117.37646510000002,2.959656600000073],[117.37208570000007,2.959848100000045],[117.36922450000009,2.955732700000056],[117.36912540000003,2.950087500000052],[117.37436690000004,2.946729300000072],[117.37541210000006,2.942332200000067],[117.3748399000001,2.939835500000072],[117.36807250000004,2.934482],[117.36531060000004,2.934672900000066],[117.36245740000004,2.937541700000054],[117.36207600000012,2.942526600000065],[117.36541000000011,2.947790800000064],[117.36446360000002,2.951808],[117.35998510000002,2.954876300000024],[117.35598750000008,2.954687600000057],[117.35140960000001,2.949803800000041],[117.34855630000004,2.94358040000003],[117.34549740000011,2.917779600000074],[117.34200550000003,2.909213500000021],[117.33997880000004,2.90975080000004],[117.34394810000003,2.91797],[117.34345240000005,2.933983200000057],[117.34595510000008,2.94478440000006],[117.3543165000001,2.956235200000037],[117.36454020000008,2.976234500000032],[117.37053690000005,2.983623800000032],[117.37154410000005,2.986645100000032],[117.37018610000007,2.994109300000048],[117.37139910000008,2.993683600000054],[117.37404620000007,2.996442],[117.377711,3.006478100000038],[117.385153,3.01341640000004],[117.38548290000006,3.027713],[117.3894117000001,3.031375600000047],[117.38649010000006,3.037049],[117.37326830000006,3.045494400000052],[117.36798840000006,3.046663300000034],[117.35511040000006,3.046215300000028],[117.35099810000008,3.050713],[117.34966270000007,3.06262810000004],[117.3451007000001,3.07144130000006],[117.34653480000009,3.077918400000044],[117.348686,3.07913],[117.35342390000005,3.07787090000005],[117.357895,3.068062600000076],[117.36075590000007,3.066985],[117.36424280000006,3.069146100000069],[117.36612720000005,3.07957650000003],[117.36836230000006,3.082543100000066],[117.372383,3.082984900000042],[117.38275910000004,3.080647200000044],[117.38231640000004,3.083659900000043],[117.37820440000007,3.087343500000031],[117.36809560000006,3.085465300000067],[117.36326610000003,3.088253400000042],[117.3595123,3.105425600000046],[117.3606797000001,3.111088600000073],[117.36711860000003,3.116568700000073],[117.37454240000011,3.115127700000073],[117.37901330000011,3.10955320000005],[117.381157,3.097411500000021],[117.38464370000008,3.095528500000057],[117.3888472000001,3.099028100000055],[117.39645410000003,3.109411100000045],[117.4060290000001,3.114889800000071],[117.42427840000005,3.112638900000036],[117.42910770000003,3.114925800000037],[117.43590530000006,3.121762400000023],[117.44449640000005,3.126435900000047],[117.45245350000005,3.128133300000059],[117.46425550000004,3.127035900000067],[117.46506540000007,3.131213400000036],[117.46045650000008,3.14186710000007],[117.44867460000012,3.154139600000065],[117.44528420000006,3.160843200000045],[117.438612,3.163645],[117.43629080000005,3.167048100000045],[117.42536310000003,3.173108500000069],[117.41557620000003,3.172203700000068],[117.40732470000012,3.165332500000034],[117.40400950000003,3.164280600000041],[117.3954185,3.16622760000007],[117.3690841,3.181267300000059],[117.34502780000003,3.181672100000071],[117.33921690000011,3.180858700000044],[117.33437430000004,3.177851600000054],[117.32797630000005,3.170530300000053],[117.32699900000011,3.167619900000034],[117.31965070000001,3.161522400000024],[117.318149,3.158476800000074],[117.31243890000007,3.157351800000072],[117.30262010000001,3.158666500000038],[117.28552980000006,3.156726300000059],[117.27773260000004,3.157922600000063],[117.271538,3.157091900000069],[117.269394,3.151791],[117.26927200000011,3.141142800000068],[117.2706449000001,3.135967600000072],[117.26963020000005,3.131896700000027],[117.26224530000002,3.125737600000036],[117.25242650000007,3.122148200000026],[117.26814270000011,3.133064200000035],[117.26659370000004,3.146888300000057],[117.26531650000004,3.148547700000051],[117.265587,3.154460800000038],[117.26761650000003,3.158404800000028],[117.271782,3.160918700000025],[117.29100820000008,3.161184900000023],[117.31268320000004,3.163657400000034],[117.3155365,3.164262700000052],[117.31843030000005,3.167421800000056],[117.31765150000001,3.177713200000028],[117.30936420000012,3.200954600000046],[117.31019250000008,3.205608700000028],[117.304001,3.208451300000036],[117.29352570000003,3.203849400000024],[117.2923889000001,3.202176100000031],[117.29322020000006,3.199724100000026],[117.29149650000011,3.201217400000075],[117.28631570000005,3.197717700000055],[117.2759555,3.187072300000068],[117.2671434,3.182705],[117.26625080000008,3.180805300000031],[117.2542879,3.182599700000026],[117.2451860000001,3.188482400000055],[117.238457,3.188737300000071],[117.23434440000005,3.179030900000043],[117.22998050000001,3.174743600000056],[117.22431160000008,3.173234],[117.21471410000004,3.177623800000049],[117.21160140000006,3.177561100000048],[117.20991520000007,3.175933],[117.21016680000002,3.171427600000072],[117.20212540000011,3.164915400000041],[117.2036819000001,3.167538700000023],[117.20081340000002,3.169484400000044],[117.19795230000011,3.17493120000006],[117.20230870000012,3.169981600000028],[117.20474230000002,3.169483600000035],[117.20710760000009,3.171672500000057],[117.20941920000007,3.178412],[117.21278380000001,3.179976400000044],[117.21527860000003,3.183983700000056],[117.22904970000002,3.191028300000028],[117.23908260000007,3.193776300000025],[117.26618950000011,3.185220300000026],[117.2775957,3.195150800000022],[117.27822120000008,3.199221700000066],[117.28108240000006,3.201790300000027],[117.27952550000009,3.204730900000072],[117.27560430000005,3.207491300000072],[117.27099590000012,3.218104600000061],[117.26345850000007,3.229569],[117.26021550000007,3.22806810000003],[117.255287,3.221175600000038],[117.24794010000005,3.218734700000027],[117.2455063000001,3.215478400000052],[117.24625370000001,3.219368400000064],[117.25379190000001,3.222026400000061],[117.2625882000001,3.231794800000046],[117.23815920000004,3.241101100000037],[117.2302476000001,3.239917800000057],[117.21591190000004,3.244019300000048],[117.2067489000001,3.251159200000075],[117.18955240000003,3.24850280000004],[117.18194590000007,3.249508400000025],[117.1832581000001,3.245120400000076],[117.18088550000004,3.248070100000064],[117.17615520000004,3.248441900000046],[117.160385,3.259246700000062],[117.15661920000002,3.259521800000073],[117.1575984000001,3.261153400000069],[117.17050180000001,3.257797500000038],[117.18016060000002,3.257759600000043],[117.18630970000004,3.255722900000023],[117.19043720000002,3.252356700000064],[117.19168850000005,3.253134500000044],[117.19114690000004,3.261358200000075],[117.18935380000005,3.263548],[117.19020850000004,3.264018200000066],[117.19192490000012,3.262688],[117.19254300000011,3.257368300000053],[117.19425950000004,3.254861900000037],[117.20290390000002,3.255801100000042],[117.2242506,3.249644600000067],[117.232582,3.248701900000071],[117.24333220000005,3.249215],[117.25509670000008,3.252025700000047],[117.26382420000004,3.251480600000036],[117.26771530000008,3.254998800000067],[117.27031770000008,3.260547300000042],[117.27246860000002,3.259973400000035],[117.27036280000004,3.251044600000057],[117.270363,3.245725],[117.2721557000001,3.24258530000003],[117.28368380000006,3.236991100000068],[117.28749860000005,3.237379],[117.29225130000009,3.240426500000069],[117.29380830000002,3.239566600000046],[117.2947464,3.240661],[117.30596160000005,3.240974300000062],[117.30923440000004,3.236748400000067],[117.317169,3.212355500000058],[117.31993050000005,3.211105900000064],[117.3358151000001,3.212560900000028],[117.33683960000008,3.213948900000048],[117.33519650000005,3.214428200000043],[117.338553,3.220392100000026],[117.34811020000006,3.225317300000029],[117.35211520000007,3.22340470000006],[117.36170770000001,3.226275700000031],[117.369565,3.226246700000047],[117.37913970000011,3.229498500000034],[117.38415740000005,3.235519400000044],[117.38741550000009,3.24286],[117.396833,3.256881],[117.38885510000011,3.265525900000057],[117.37981430000002,3.267564900000025],[117.37335220000011,3.261858800000027],[117.3700712000001,3.253953100000047],[117.36404410000011,3.250442700000065],[117.36012280000011,3.253793800000039],[117.35923750000006,3.26197250000007],[117.35436270000002,3.264950700000043],[117.35214210000004,3.269330100000047],[117.35421730000007,3.273680900000045],[117.35495770000011,3.272197],[117.35990880000008,3.27367890000005],[117.36257940000007,3.280074],[117.36650110000005,3.281628600000033],[117.36435680000011,3.286759],[117.367401,3.294240900000034],[117.3600887,3.294818200000066],[117.34949310000002,3.293279],[117.33988050000005,3.295609500000069],[117.33475320000002,3.292286900000022],[117.33924410000009,3.297093],[117.3388026,3.298064600000032],[117.33306670000002,3.297029400000042],[117.32737250000002,3.293346300000053],[117.32740480000007,3.294568100000049],[117.331125,3.296206100000063],[117.32914130000006,3.29533820000006],[117.32744520000006,3.297252],[117.33024820000003,3.296199100000024],[117.3315358000001,3.298204700000042],[117.33011090000002,3.299091500000031],[117.33206140000004,3.298990500000059],[117.33155190000002,3.300516300000027],[117.33288260000006,3.299624600000072],[117.3313164000001,3.303400300000021],[117.333821,3.299004800000034],[117.33671020000008,3.299460400000044],[117.33668920000002,3.300845500000037],[117.34106870000005,3.300865200000032],[117.34436990000006,3.298418500000025],[117.34645830000011,3.304759600000068],[117.34514750000005,3.297037900000021],[117.34633830000007,3.295604900000058],[117.35727250000002,3.297336800000039],[117.369604,3.296260700000062],[117.38159840000003,3.318805300000065],[117.38808860000006,3.322965400000044],[117.39145730000007,3.342481100000043],[117.38649910000004,3.347818700000062],[117.37112760000002,3.356996500000037],[117.36792570000011,3.366220500000054],[117.37145940000005,3.366568800000039],[117.37306190000004,3.368692800000076],[117.37251820000006,3.370821800000044],[117.37058030000003,3.370277300000055],[117.36916940000003,3.373296100000061],[117.36637860000008,3.371700400000066],[117.34913230000006,3.368707900000061],[117.34424110000009,3.372915800000044],[117.33117260000006,3.379551500000048],[117.32894910000005,3.36342540000004],[117.32561470000007,3.359038800000064],[117.31874080000011,3.357928300000026],[117.31023430000005,3.364471900000069],[117.30431390000001,3.366780700000049],[117.29884320000008,3.36592330000002],[117.29595870000003,3.362576700000034],[117.29440290000002,3.356189900000061],[117.29602840000007,3.350978400000031],[117.30364250000002,3.346072100000072],[117.30712150000011,3.341647600000044],[117.30696880000005,3.33741370000007],[117.30399810000006,3.330921200000034],[117.30501630000003,3.329731700000025],[117.302267,3.332939],[117.3045274000001,3.336481500000048],[117.30468010000004,3.342797400000052],[117.29380790000005,3.349603900000034],[117.29248070000006,3.360985300000038],[117.29669950000005,3.367298800000071],[117.30387120000012,3.36889780000007],[117.31319440000004,3.366515600000071],[117.32295230000011,3.360559500000022],[117.325989,3.371230100000048],[117.32925410000007,3.396690500000034],[117.32548550000001,3.401749],[117.31061540000007,3.409109],[117.30684680000002,3.407735100000025],[117.30307,3.408405800000025],[117.301094,3.410550500000056],[117.29930860000002,3.419344600000045],[117.29678330000002,3.424321200000065],[117.29267130000005,3.426014500000065],[117.28614040000002,3.42569960000003],[117.28392780000001,3.423366100000067],[117.28497330000005,3.412040800000057],[117.2785493,3.40177280000006],[117.28296690000002,3.396687200000031],[117.28359990000001,3.39319480000006],[117.27738180000006,3.38187],[117.27548810000008,3.381199200000026],[117.242905,3.31318310000006],[117.23514690000002,3.321110600000054],[117.23092550000001,3.332191900000055],[117.2254137000001,3.335075200000063],[117.22171270000001,3.33439450000003],[117.21995980000008,3.337354800000071],[117.205593,3.340824200000043],[117.19817010000008,3.331906900000035],[117.19470150000006,3.330622400000038],[117.18402620000006,3.33597960000003],[117.18665310000006,3.343340100000034],[117.17317910000008,3.356623400000046],[117.16626190000011,3.358279800000048],[117.16514690000008,3.352885900000047],[117.15769610000007,3.349751900000058],[117.14932640000006,3.356432600000062],[117.14819220000004,3.351953900000069],[117.145421,3.349637],[117.13550940000005,3.34634740000007],[117.13236020000011,3.342219500000056],[117.12593740000011,3.345725500000071],[117.1162591000001,3.34796620000003],[117.110756,3.34672050000006],[117.10966150000002,3.349232700000073],[117.11363410000001,3.352912700000047],[117.1100699000001,3.362416200000041],[117.09872470000005,3.362358900000061],[117.09490770000002,3.364540400000067],[117.092564,3.374257800000066],[117.09350410000002,3.377470800000026],[117.09210010000004,3.386175600000058],[117.08938740000008,3.387909],[117.08115310000005,3.40095690000004],[117.07840150000004,3.400781800000061],[117.07385710000005,3.396128100000055],[117.06930330000012,3.395544200000074],[117.06641620000005,3.39694650000007],[117.06271550000008,3.404054500000029],[117.05668910000009,3.404989600000022],[117.0540248000001,3.406800800000042],[117.05090490000009,3.405788400000063],[117.04784330000007,3.407404800000052],[117.0415551000001,3.404951500000038],[117.03422060000003,3.405282800000066],[117.0298606,3.402556700000048],[117.01936750000004,3.399597],[117.01773,3.395410200000072],[117.00553180000009,3.390386200000023],[116.9899524000001,3.389918800000032],[116.983645,3.392236100000048],[116.9794207000001,3.391301300000066],[116.9762138000001,3.388458100000037],[116.9645584000001,3.385283500000071],[116.96079920000011,3.384971800000073],[116.955538,3.390930500000024],[116.924146,3.398795800000073],[116.91605590000006,3.39786040000007],[116.91189980000001,3.39328370000004],[116.90701690000003,3.391297],[116.9019105000001,3.395678],[116.8904490000001,3.392755800000032],[116.88090540000007,3.394935600000053],[116.85370050000006,3.38766830000003],[116.851763,3.386129600000061],[116.8472379000001,3.389322600000071],[116.8408528000001,3.390957300000025],[116.83546600000011,3.390566900000067],[116.83409080000001,3.386847300000056],[116.82925670000009,3.384139600000026],[116.81957740000007,3.385929400000066],[116.80819450000001,3.37992950000006],[116.80632550000007,3.375255500000037],[116.79589120000003,3.374338100000045],[116.78560330000005,3.368493900000033],[116.7809142000001,3.36783070000007],[116.77765870000007,3.368745200000035],[116.77628030000005,3.380273100000068],[116.772375,3.383660600000042],[116.77006990000007,3.380583200000046],[116.766117,3.380484900000056],[116.76122480000004,3.378088500000047],[116.75820040000008,3.384708700000033],[116.75624320000009,3.385058700000059],[116.75331290000008,3.376669700000036],[116.758626,3.37372],[116.770419,3.359002],[116.774349,3.358644],[116.775243,3.355592],[116.77327900000012,3.352001],[116.77328200000011,3.347831],[116.775782,3.340871],[116.786504,3.322203],[116.790973,3.310535],[116.79151,3.304969],[116.79937,3.29779],[116.80491,3.288097],[116.806162,3.280377],[116.801542,3.257101],[116.80277300000012,3.253987],[116.80355250000002,3.236334600000021],[116.8079570000001,3.231367],[116.807824,3.223583],[116.8052977000001,3.214828500000067],[116.80527590000008,3.199639700000034],[116.79495430000009,3.191841700000055],[116.78610220000007,3.179690700000037],[116.77614310000001,3.176521800000046],[116.76867350000009,3.169052200000067],[116.75758250000001,3.168146900000067],[116.74490710000009,3.170863],[116.7419648,3.170184],[116.7442281000001,3.152981600000032],[116.74027580000006,3.146750200000042],[116.73692110000002,3.131893800000057],[116.72589860000005,3.113203500000054],[116.72446090000005,3.104577300000074],[116.7340458000001,3.096909400000072],[116.74227580000002,3.083083600000066],[116.7479436000001,3.06815510000007],[116.74746440000001,3.055215700000076],[116.7450682000001,3.042755400000033],[116.74219290000008,3.035566800000026],[116.73108610000008,3.030022600000052],[116.69453720000001,3.023208400000044],[116.679113,3.017864800000041],[116.6672023000001,3.007398500000022],[116.66105160000006,3.00492550000007],[116.65781660000005,2.976081400000055],[116.65551010000001,2.97303080000006],[116.63921630000004,2.974194400000044],[116.62358110000002,2.956402600000047],[116.61586370000009,2.950729800000033],[116.608485,2.94831540000007],[116.61037210000006,2.93294990000004],[116.60821540000006,2.92621070000007],[116.60147630000006,2.921358300000065],[116.58638010000004,2.917314600000054],[116.58303130000002,2.910463700000037],[116.58117290000007,2.890020900000025],[116.56909170000006,2.885382900000025],[116.54214580000007,2.870197700000062],[116.50559670000007,2.840462800000068],[116.49568520000003,2.835507100000029],[116.49382650000007,2.828692700000033],[116.45294120000005,2.823117500000023],[116.443649,2.817542200000048],[116.43435670000008,2.807630500000073],[116.43002050000007,2.792143600000031],[116.43064,2.779754100000048],[116.42320630000006,2.774178800000072],[116.41081680000002,2.769842500000038],[116.404622,2.764886600000068],[116.4021441000001,2.754355500000031],[116.3860376,2.743824500000073],[116.37488710000002,2.733293300000071],[116.36063920000004,2.712850700000047],[116.34511830000008,2.704172800000038],[116.3327627000001,2.699222],[116.32532890000004,2.690549400000066],[116.32408830000008,2.68004540000004],[116.31444540000007,2.664319300000045],[116.32409010000003,2.646566700000051],[116.325329,2.629840700000045],[116.32160840000006,2.617444900000066],[116.3234705000001,2.597008500000072],[116.31444550000003,2.591564400000038],[116.3147977000001,2.578424],[116.30674460000012,2.565415100000052],[116.30116940000005,2.544972400000063],[116.295594,2.541874900000039],[116.29373570000007,2.531963500000074],[116.27329710000004,2.489234700000054],[116.26647560000004,2.479326700000058],[116.25534420000008,2.479926300000045],[116.25100630000009,2.488982900000053],[116.2336289000001,2.488619100000051],[116.22676850000005,2.481499],[116.19655460000001,2.440855500000055],[116.19215720000011,2.425996800000064],[116.18228990000011,2.408461],[116.17186470000001,2.40132090000003],[116.1658384000001,2.405995100000041],[116.16116160000001,2.400468],[116.15562430000011,2.39876],[116.14725270000008,2.40078260000007],[116.13259220000009,2.39174330000003],[116.11259470000005,2.391369700000041],[116.10571170000003,2.383798500000069],[116.10433530000012,2.37450640000003],[116.10502340000005,2.365558800000031],[116.110077,2.357928700000059],[116.08935930000007,2.351004800000055],[116.07849560000011,2.334215300000039],[116.05973090000009,2.313475500000038],[116.06069420000006,2.303394600000047],[116.0591591000001,2.301246],[116.05380530000002,2.293723300000067],[116.05305810000004,2.283000700000059],[116.04096640000012,2.263107300000058],[116.028935,2.253364900000065],[116.00242170000001,2.261718300000041],[115.99585080000008,2.266755500000045],[115.98927450000008,2.260828200000049],[115.991271,2.253426200000035],[115.99041000000011,2.24645780000003],[115.9971756000001,2.228520100000026],[116.01738870000008,2.192493200000058],[116.05215,2.150637700000061],[116.06775730000004,2.154894100000035],[116.07981730000006,2.164826],[116.0954243000001,2.170501200000047],[116.11032200000011,2.171210600000052],[116.13003030000004,2.167633600000045],[116.14566510000009,2.152326],[116.15701590000003,2.132802900000058],[116.16948790000004,2.141498900000045],[116.18544450000002,2.146582500000022],[116.20877760000008,2.14051980000005],[116.22837620000007,2.133284500000059],[116.23967180000011,2.119935500000054],[116.25848810000002,2.10840630000007],[116.27218620000008,2.104189100000042],[116.28619090000007,2.102629300000046],[116.28822390000005,2.104162600000052],[116.29093150000006,2.113017700000057],[116.2956742,2.118808900000033],[116.3114369000001,2.115581],[116.31601230000001,2.116774900000053],[116.32169020000003,2.129704100000026],[116.32261310000001,2.251490200000035],[116.31997190000004,2.257308],[116.3134066,2.259803400000067],[116.31015620000005,2.263200500000039],[116.309947,2.265846700000054],[116.31911930000001,2.275913400000036],[116.3201044000001,2.279658700000027],[116.330374,2.283390600000075],[116.33157330000006,2.288130500000022],[116.3378550000001,2.292642],[116.34636280000007,2.308223600000076],[116.36006850000001,2.323999400000048],[116.36890030000006,2.343173900000068],[116.37392690000001,2.350996400000042],[116.3752654000001,2.356052700000021],[116.38217860000009,2.363759300000027],[116.38869340000008,2.375825900000052],[116.39423560000012,2.381333700000027],[116.397755,2.387032],[116.39749240000003,2.389066400000047],[116.40179810000006,2.392515100000026],[116.40151160000005,2.394669200000067],[116.40562350000005,2.40422],[116.41030320000004,2.407735200000047],[116.41251610000006,2.415801600000066],[116.41687050000007,2.420084600000052],[116.418774,2.427817900000036],[116.4275305000001,2.436003200000073],[116.43973230000006,2.459379],[116.4428732,2.466745800000069],[116.44310170000006,2.481936300000029],[116.43670570000006,2.487989700000071],[116.42545560000008,2.494671200000028],[116.42402790000006,2.498211800000036],[116.437104,2.510082300000022],[116.44903940000006,2.509853900000053],[116.4662267000001,2.501648100000068],[116.491568,2.494402600000058],[116.49720730000001,2.485907900000029],[116.50316790000011,2.480411400000037],[116.50658590000012,2.479765],[116.5099351,2.480927800000075],[116.51705230000005,2.479581400000029],[116.52826320000008,2.466340100000025],[116.52932910000004,2.467805700000042],[116.53227970000012,2.466806400000053],[116.55260940000005,2.454618900000071],[116.55951010000001,2.455868100000032],[116.56617260000007,2.453548100000035],[116.56819510000003,2.448670200000038],[116.56679120000001,2.437189300000057],[116.56898030000002,2.433382100000074],[116.57545240000002,2.428908800000045],[116.5811632000001,2.428052200000025],[116.61913940000011,2.430526800000052],[116.62646810000001,2.429289500000039],[116.646132,2.430545800000061],[116.66474890000006,2.435971],[116.69256,2.439797200000044],[116.71209060000001,2.437855500000069],[116.72694190000004,2.443622700000049],[116.73131460000002,2.456488],[116.73624510000002,2.460108300000059],[116.73599220000006,2.464589500000045],[116.73820610000007,2.462293800000054],[116.74006920000011,2.464189],[116.74263990000009,2.462102200000061],[116.74602220000008,2.46538890000005],[116.74963180000009,2.463721700000065],[116.75168940000003,2.472161600000049],[116.75409450000006,2.475823600000069],[116.77653920000012,2.482269],[116.79758090000007,2.491733100000033],[116.81462390000002,2.500807500000064],[116.8357764000001,2.515117400000065],[116.84862550000003,2.519400400000052],[116.91652670000008,2.533530100000064],[116.95298610000009,2.550846100000058],[117.0008755,2.58278],[117.02161510000008,2.588826200000028],[117.04344660000004,2.598225100000036],[117.05349990000002,2.600009700000044],[117.07413250000002,2.608099100000061],[117.14461190000009,2.604940800000065],[117.20093140000006,2.596277400000076],[117.21796790000008,2.59647590000003],[117.25156030000005,2.607358400000066],[117.28240370000003,2.621749200000068],[117.31459780000012,2.626341600000046],[117.33544190000009,2.621915800000068],[117.35304050000002,2.612460200000044],[117.35638950000009,2.612167600000021],[117.36172550000003,2.605271800000025],[117.37446650000004,2.603974900000026],[117.40456190000009,2.609171600000025],[117.42794720000006,2.591345600000068],[117.43665610000005,2.581494700000064],[117.45168450000006,2.557619700000032],[117.47031860000004,2.544730600000037],[117.47873550000008,2.543318500000055],[117.48673830000007,2.539727300000038],[117.49720800000011,2.531637200000034],[117.49731940000004,2.52435470000006],[117.498556,2.522934100000043],[117.516583,2.523104600000067],[117.54079410000008,2.519899600000031],[117.55475400000012,2.515101100000038],[117.56588340000008,2.504268500000023],[117.57148,2.502482200000031],[117.59039790000008,2.52022420000003],[117.60241710000003,2.523236200000042],[117.61178310000003,2.521811800000023],[117.62238150000007,2.510269100000073],[117.6379151000001,2.478019900000049],[117.6672506000001,2.448952700000063],[117.67819860000009,2.421955500000024],[117.68468430000007,2.410360300000036],[117.68937110000002,2.407218500000056],[117.69970760000001,2.403711500000043],[117.7048741000001,2.398637400000041],[117.70835580000005,2.389941700000065],[117.71074620000002,2.376199],[117.71446850000007,2.367986200000075],[117.71506520000003,2.359533500000055],[117.72082870000008,2.34697280000006],[117.741732,2.336141800000064],[117.74605540000005,2.328532400000029],[117.74942040000008,2.327323100000058],[117.7576868000001,2.333017200000029],[117.76105280000002,2.333619100000021],[117.7978309,2.32575010000005],[117.80901030000007,2.326709600000072],[117.81285830000002,2.329363800000067],[117.8209098000001,2.344658200000026],[117.8217562000001,2.353230600000074],[117.82007770000007,2.360717800000032],[117.8210408000001,2.36313210000003],[117.83017830000006,2.366386800000043],[117.8569642000001,2.391909400000031],[117.87031050000007,2.397213700000066],[117.88269230000003,2.398050900000044],[117.89868410000008,2.40468130000005],[117.9098586,2.397670800000071],[117.91935360000002,2.395732600000031],[117.93876920000002,2.408222700000067],[117.95187570000007,2.414129800000069],[117.95464240000001,2.417025700000067],[117.95693290000008,2.426441800000021],[117.95837630000005,2.427768900000046],[117.96715,2.425830800000028],[117.97460300000012,2.426066900000023],[117.97869090000006,2.42739210000002],[117.98593390000008,2.435721800000067]]],[[[117.65931180000007,3.527068700000029],[117.65829250000002,3.529528300000038],[117.64104390000011,3.527130900000031],[117.64719250000007,3.526688500000034],[117.65362270000003,3.524320200000034],[117.65792180000005,3.524867100000051],[117.65921030000004,3.526643900000067],[117.65716750000001,3.526418],[117.65931180000007,3.527068700000029]]],[[[117.5680963000001,3.545701400000041],[117.57461550000005,3.548354200000063],[117.56630460000008,3.553053900000066],[117.55936620000011,3.550632700000051],[117.56292310000003,3.547212500000057],[117.5680963000001,3.545701400000041]]],[[[117.44486940000002,3.550345400000026],[117.4158748000001,3.557002400000044],[117.41231650000009,3.546764400000029],[117.41529710000009,3.541974400000072],[117.4412364000001,3.537002700000073],[117.4462334000001,3.533757900000069],[117.44710680000003,3.529127100000039],[117.44091580000008,3.518655100000046],[117.44206310000004,3.510259500000075],[117.45266090000007,3.514883900000029],[117.46237750000012,3.514846300000045],[117.4740842000001,3.510418200000061],[117.48216990000003,3.5],[117.4860556000001,3.498318500000039],[117.50556190000009,3.508412300000032],[117.5038608000001,3.506183600000043],[117.509878,3.504698200000064],[117.51412960000005,3.505539900000031],[117.51134310000009,3.503908500000023],[117.51863360000004,3.495393200000024],[117.52924310000003,3.488287400000047],[117.53294060000007,3.488588100000072],[117.53496540000003,3.490329900000063],[117.5356825,3.496725400000059],[117.53461450000009,3.500561800000071],[117.53580450000004,3.501529100000027],[117.53818520000004,3.497447700000066],[117.53758490000007,3.486185200000023],[117.53931970000008,3.48061180000002],[117.54718980000007,3.471242400000051],[117.56536340000002,3.474837],[117.57730460000005,3.474687],[117.57653040000002,3.481385400000022],[117.57852750000006,3.474556],[117.60606750000011,3.474385900000073],[117.60518170000012,3.474939],[117.61020440000004,3.477140600000041],[117.61341180000011,3.481221600000026],[117.61509510000008,3.486618800000031],[117.60942870000008,3.500617],[117.56832830000008,3.52043610000004],[117.53508490000002,3.530039500000044],[117.51230840000005,3.541462600000045],[117.5004259000001,3.545505200000036],[117.47649010000009,3.549138600000049],[117.44486940000002,3.550345400000026]]],[[[117.85025830000006,3.584496300000069],[117.848263,3.584181],[117.85331350000001,3.580639500000075],[117.85087250000004,3.577457700000025],[117.85252480000008,3.576015200000029],[117.85501450000004,3.576473600000043],[117.85672620000003,3.579218500000025],[117.85603090000006,3.580882600000052],[117.85025830000006,3.584496300000069]]],[[[117.6224439,3.575866700000063],[117.59636110000008,3.582460200000071],[117.5622201000001,3.588183800000024],[117.5571096000001,3.585865100000035],[117.55143740000005,3.577455800000052],[117.54834720000008,3.575524700000074],[117.54267850000008,3.57470010000003],[117.53311520000011,3.57705],[117.51725780000004,3.584909300000049],[117.50864380000007,3.586414700000034],[117.50606860000005,3.585271200000022],[117.51230320000002,3.577132],[117.53469830000006,3.562140100000022],[117.5409648000001,3.560291],[117.55928910000011,3.560926300000062],[117.57287330000008,3.558490800000072],[117.5820189000001,3.555275300000062],[117.60454640000012,3.542139600000041],[117.62039670000001,3.537027],[117.62813720000008,3.536907300000053],[117.65198670000007,3.542206800000031],[117.65895120000005,3.546055500000023],[117.66261430000009,3.553137700000036],[117.66164960000003,3.554761900000074],[117.65719590000003,3.555961800000034],[117.65566210000009,3.559780600000067],[117.63473310000006,3.571382400000061],[117.6224439,3.575866700000063]]],[[[117.8173981000001,3.576855800000033],[117.80179750000002,3.588944500000025],[117.798701,3.589366100000063],[117.79629210000007,3.584302100000059],[117.78993350000007,3.579637200000036],[117.77467790000003,3.574971100000027],[117.75907870000003,3.566608200000076],[117.75293090000002,3.557756200000028],[117.7511257000001,3.545187200000044],[117.75197960000003,3.533407],[117.75775250000004,3.525729300000023],[117.75914300000011,3.51694290000006],[117.76292810000007,3.511418400000025],[117.76593160000004,3.511480100000028],[117.78608680000002,3.496676400000069],[117.79881790000002,3.491622200000052],[117.81524880000006,3.477990600000055],[117.81995050000012,3.47850150000005],[117.82553130000008,3.475873400000069],[117.83653850000007,3.462271],[117.84276350000005,3.459459200000026],[117.84129750000011,3.457572300000038],[117.84252450000008,3.455350100000032],[117.86014470000009,3.451112600000044],[117.86373110000011,3.448436],[117.86709080000003,3.45007],[117.87061530000005,3.45525740000005],[117.87406650000003,3.470776600000022],[117.87305520000007,3.476541500000053],[117.86655180000002,3.483593700000029],[117.86356190000004,3.495927600000073],[117.8606741000001,3.497766],[117.85726220000004,3.50500020000004],[117.8538258000001,3.521449600000039],[117.85345540000003,3.525939700000038],[117.85480430000007,3.527994500000034],[117.853365,3.52734],[117.85235980000004,3.528801300000055],[117.850875,3.535596100000021],[117.84737110000003,3.541200500000059],[117.84408930000006,3.544142900000054],[117.84354860000008,3.544119400000056],[117.84660370000006,3.541864600000054],[117.84715520000009,3.539790200000027],[117.84294210000007,3.543132900000046],[117.83187510000005,3.558574100000044],[117.82482860000005,3.57199010000005],[117.8173981000001,3.576855800000033]]],[[[117.49285470000007,3.569078500000046],[117.49495150000007,3.569747600000028],[117.49637060000009,3.572942200000057],[117.49470990000009,3.574686500000041],[117.46356120000007,3.59079040000006],[117.45917930000007,3.589641200000074],[117.46002080000005,3.586049200000048],[117.46870260000003,3.574132],[117.49285470000007,3.569078500000046]]]]},"properties":{"shapeName":"Bulungan","shapeISO":"","shapeID":"22746128B37498970316465","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[102.51861370000006,-1.6462143],[102.51996630000008,-1.645779399999981],[102.52029040000008,-1.64224],[102.51858430000004,-1.6385797],[102.49531190000005,-1.641721799999971],[102.48902630000003,-1.646052899999972],[102.48735030000006,-1.637089799999956],[102.48971,-1.623887199999956],[102.48840410000008,-1.618792],[102.488995,-1.595399899999961],[102.48121520000007,-1.595579],[102.47995760000003,-1.569837499999949],[102.47677610000005,-1.568462099999977],[102.45959470000008,-1.563699499999927],[102.42463680000009,-1.565656099999956],[102.41934970000005,-1.564508399999966],[102.40838620000005,-1.566967399999953],[102.40083310000006,-1.565683699999965],[102.39230350000008,-1.566549799999962],[102.35947420000008,-1.573441699999933],[102.33782960000008,-1.574445399999945],[102.323761,-1.572874399999932],[102.31361390000006,-1.568592799999976],[102.30946350000005,-1.558923099999959],[102.31002810000007,-1.549816299999975],[102.31168370000006,-1.541422499999953],[102.31831360000007,-1.525770299999976],[102.32316720000006,-1.502636],[102.32182340000008,-1.498221499999943],[102.31639090000004,-1.498274799999933],[102.31544560000003,-1.496047499999975],[102.31365520000008,-1.495833299999958],[102.31481930000007,-1.491382499999929],[102.30777250000006,-1.482787499999972],[102.30882890000004,-1.480244699999957],[102.30556450000006,-1.479498599999943],[102.30430810000007,-1.4732428],[102.30589320000007,-1.469004599999948],[102.30852740000006,-1.468159699999944],[102.30747630000008,-1.466356399999938],[102.30484470000005,-1.464975099999947],[102.30516330000006,-1.4627494],[102.30010790000006,-1.4624253],[102.29621640000005,-1.457650399999977],[102.28240880000004,-1.465689899999973],[102.27809020000007,-1.465790599999934],[102.27640190000005,-1.4683326],[102.27007870000006,-1.4712929],[102.25859520000006,-1.473716699999954],[102.25532430000004,-1.478376599999933],[102.22825730000005,-1.477176799999938],[102.21193550000004,-1.474612299999933],[102.20407260000007,-1.471223],[102.19052890000006,-1.452776599999936],[102.18722530000008,-1.450298799999928],[102.18485150000004,-1.451665799999944],[102.16858790000003,-1.453554699999927],[102.15286110000005,-1.459808099999975],[102.14948030000005,-1.454348699999969],[102.14271220000006,-1.448612399999945],[102.12408030000006,-1.422173599999951],[102.12106210000007,-1.420650099999932],[102.114559,-1.423347699999965],[102.09807930000005,-1.418426],[102.09455880000007,-1.416226499999937],[102.091378,-1.410650299999929],[102.08277230000004,-1.4063019],[102.07713680000006,-1.394929199999979],[102.06082090000007,-1.393500699999947],[102.05211210000004,-1.3952423],[102.03890690000009,-1.395371599999976],[102.03516970000004,-1.392027],[102.04040270000007,-1.388599499999941],[102.02860550000008,-1.388972799999976],[101.99476430000004,-1.381701899999939],[101.94843760000003,-1.369792799999971],[101.91689610000009,-1.35681],[101.91059090000005,-1.355524399999979],[101.905457,-1.352064299999938],[101.90067330000005,-1.353127699999959],[101.89735050000007,-1.346787],[101.88654920000005,-1.338546599999972],[101.87518390000008,-1.32195],[101.87182280000007,-1.315441],[101.87234620000004,-1.305429099999969],[101.88637470000003,-1.294119099999932],[101.88930380000005,-1.281447599999979],[101.89123810000007,-1.279282699999953],[101.89524630000005,-1.278273799999965],[101.90370870000004,-1.271003199999939],[101.90371720000007,-1.262246299999958],[101.90532560000008,-1.259017],[101.92202680000008,-1.255707299999926],[101.95534020000008,-1.256176099999948],[101.96206180000007,-1.251999],[101.963272,-1.242624299999932],[101.96239620000006,-1.235061499999972],[101.96665420000005,-1.232033199999933],[101.97189110000005,-1.214550599999939],[101.95256810000006,-1.214529699999957],[101.94738010000003,-1.208399699999973],[101.945343,-1.196966099999941],[101.95125970000004,-1.189751099999967],[101.95748470000007,-1.175517399999933],[101.95820170000007,-1.166003899999964],[101.96568670000005,-1.1674922],[101.96737250000007,-1.166513399999928],[101.97137490000006,-1.160298199999943],[101.97204,-1.1546185],[101.96984080000004,-1.150200299999938],[101.96448190000007,-1.153781099999946],[101.96262890000008,-1.153074299999957],[101.96779080000005,-1.1410141],[101.965837,-1.138275499999963],[101.95652780000006,-1.137768],[101.94640580000004,-1.146464299999934],[101.93930120000005,-1.145357899999965],[101.93857020000007,-1.143680299999971],[101.94014950000008,-1.1417309],[101.94890870000006,-1.136225799999977],[101.94730680000004,-1.1318913],[101.94314210000005,-1.129887399999973],[101.93468490000004,-1.128395099999977],[101.92353310000004,-1.129265699999962],[101.92158030000007,-1.130826199999944],[101.91880870000006,-1.138952599999925],[101.91455660000008,-1.140231599999936],[101.91115730000007,-1.138944299999935],[101.90457980000008,-1.128454799999929],[101.89055970000004,-1.121594099999925],[101.888433,-1.122875399999941],[101.88757990000005,-1.125655499999937],[101.88842670000008,-1.128865299999973],[101.89309880000008,-1.1322931],[101.891943,-1.137191199999961],[101.886717,-1.137634299999945],[101.88460670000006,-1.134866799999941],[101.88215080000003,-1.137779],[101.87597470000009,-1.140282799999966],[101.87145650000008,-1.148633799999971],[101.866262,-1.151252799999952],[101.86389820000005,-1.158643899999959],[101.85850970000007,-1.163835199999937],[101.81378290000004,-1.220987699999966],[101.79434770000006,-1.220042599999942],[101.79139420000007,-1.222671599999956],[101.78529950000006,-1.224364599999944],[101.78090630000008,-1.234055799999965],[101.77465470000004,-1.237641599999961],[101.75401720000008,-1.235943899999938],[101.74083580000007,-1.236575199999947],[101.73357710000005,-1.235190299999942],[101.72624490000004,-1.240106],[101.72169830000007,-1.2410692],[101.72078330000005,-1.245858299999952],[101.721794,-1.250165299999935],[101.71604040000005,-1.2541679],[101.71488730000004,-1.26359],[101.69731880000006,-1.286552299999926],[101.69525440000007,-1.291304099999934],[101.70100920000004,-1.309015299999942],[101.70853010000008,-1.320567299999936],[101.71416840000006,-1.336289299999976],[101.72179980000004,-1.348242599999935],[101.72459770000006,-1.361742299999946],[101.722664,-1.366611399999954],[101.70038070000004,-1.388748599999929],[101.69675740000008,-1.3940978],[101.70095810000004,-1.406745],[101.70477820000008,-1.413711499999977],[101.71240460000007,-1.415619599999957],[101.71783750000009,-1.418633899999975],[101.72391650000009,-1.435290399999928],[101.72361380000007,-1.438662699999952],[101.70557030000003,-1.4532045],[101.69527480000005,-1.464068199999929],[101.68830140000006,-1.477147299999956],[101.67184590000005,-1.500921199999937],[101.67096480000004,-1.508042],[101.66478860000007,-1.511651399999948],[101.66178960000008,-1.515547399999946],[101.65269860000006,-1.518301899999926],[101.64991240000006,-1.52268],[101.63662980000004,-1.533470799999975],[101.632788,-1.537819199999944],[101.63077210000006,-1.542701699999952],[101.611963,-1.553058499999963],[101.60463040000008,-1.562588799999958],[101.58166390000008,-1.577434499999924],[101.57047760000006,-1.577225099999964],[101.56155540000003,-1.591079],[101.551969,-1.593995899999925],[101.54905610000009,-1.596257099999946],[101.53221420000006,-1.618472],[101.527592,-1.630199499999947],[101.52153460000005,-1.637179099999969],[101.51894310000006,-1.643863899999928],[101.50997720000004,-1.655949199999952],[101.50639060000003,-1.672837699999945],[101.50160330000006,-1.679176799999937],[101.49680740000008,-1.678776299999925],[101.48414690000004,-1.6728662],[101.48073890000006,-1.673509599999932],[101.47583270000007,-1.677292499999965],[101.464121,-1.682138499999951],[101.45516640000005,-1.682905199999936],[101.44725470000009,-1.685994599999958],[101.43987050000004,-1.695184299999937],[101.43727130000008,-1.695826699999941],[101.43638660000005,-1.694830299999978],[101.438887,-1.701156],[101.44490830000007,-1.702816],[101.45076770000009,-1.709384399999976],[101.46723950000006,-1.731106099999977],[101.47386170000004,-1.742923699999949],[101.48041550000005,-1.749932699999931],[101.50018940000007,-1.763137699999959],[101.50840610000006,-1.776010499999927],[101.56474930000007,-1.829027799999949],[101.58948120000008,-1.848247699999945],[101.61617130000008,-1.878941699999928],[101.63129210000005,-1.891461499999934],[101.63848630000007,-1.890314],[101.64121960000006,-1.882024499999943],[101.64388390000005,-1.879511199999968],[101.65244540000003,-1.879192699999976],[101.66074980000008,-1.874546],[101.67079620000004,-1.874008599999968],[101.67686090000007,-1.8758755],[101.68052640000008,-1.881628099999944],[101.694378,-1.876601299999948],[101.71644860000004,-1.879519599999981],[101.73108810000008,-1.876464099999964],[101.73584440000008,-1.868345399999953],[101.75803660000008,-1.860920199999953],[101.77226890000009,-1.849127799999962],[101.78121490000007,-1.835708799999964],[101.79056750000007,-1.831642399999964],[101.80195330000004,-1.833675599999935],[101.81049270000005,-1.832862299999931],[101.82147190000006,-1.823916299999951],[101.82716480000005,-1.8214765],[101.83892240000006,-1.829949],[101.84212010000005,-1.830880699999966],[101.84939890000004,-1.8291224],[101.85240350000004,-1.833339199999955],[101.86025640000008,-1.838824199999976],[101.86941270000005,-1.837226599999951],[101.87265460000003,-1.840027],[101.87566780000009,-1.839363099999957],[101.885197,-1.848354299999926],[101.88711370000004,-1.848436399999969],[101.88994070000007,-1.842379699999981],[101.89356770000006,-1.839554199999952],[101.90074480000004,-1.838147599999957],[101.90499920000008,-1.843705099999966],[101.90957780000008,-1.842729],[101.91164930000008,-1.843795399999976],[101.91408620000004,-1.837068699999975],[101.91895990000006,-1.836242299999981],[101.92173470000006,-1.839044],[101.92263920000005,-1.8453104],[101.92502150000007,-1.847676299999932],[101.92924850000009,-1.846463399999948],[101.93190920000006,-1.849130399999979],[101.93608950000004,-1.849388199999964],[101.94459750000004,-1.861212],[101.94709850000004,-1.862790899999936],[101.95023140000006,-1.860906899999975],[101.95245920000008,-1.862170399999968],[101.95633880000008,-1.858319499999936],[101.95921560000005,-1.857913199999928],[101.96733370000004,-1.871778599999971],[101.97272950000007,-1.871491899999967],[101.97843350000005,-1.874745799999971],[101.98006,-1.877185699999927],[101.97884010000007,-1.882065299999965],[101.98522720000005,-1.900740599999949],[101.99497780000007,-1.90991],[102.00204350000007,-1.907616399999938],[102.006883,-1.900636499999962],[102.01361650000007,-1.902260499999954],[102.01700830000004,-1.907497899999953],[102.01946510000005,-1.905034499999942],[102.02289440000004,-1.907541099999946],[102.03375230000006,-1.906869],[102.03885560000003,-1.902299599999935],[102.042249,-1.9014247],[102.04291680000006,-1.8948202],[102.04620810000006,-1.889651399999934],[102.05452520000006,-1.888894899999968],[102.05793340000008,-1.879212299999949],[102.06154920000006,-1.876245799999936],[102.071105,-1.872138599999971],[102.07752960000005,-1.87319],[102.08223740000005,-1.871546399999943],[102.08683190000005,-1.872214699999972],[102.09797690000005,-1.8819221],[102.10421,-1.884354799999926],[102.10727470000006,-1.883853899999963],[102.11404660000005,-1.877592299999947],[102.11526650000008,-1.869052899999929],[102.12055280000004,-1.8670198],[102.12150480000008,-1.856617299999925],[102.12827890000005,-1.845061399999963],[102.13557050000009,-1.845061399999963],[102.14306870000007,-1.8347404],[102.14373110000008,-1.825136199999974],[102.13846510000008,-1.812954199999979],[102.13829730000003,-1.806119299999978],[102.13432030000007,-1.792932099999973],[102.13514630000009,-1.791586299999949],[102.14448960000004,-1.790468899999951],[102.14764360000004,-1.788577299999929],[102.15646380000004,-1.7890204],[102.159175,-1.787115699999958],[102.16568940000008,-1.787115699999958],[102.17260220000009,-1.789555599999971],[102.17910840000008,-1.787522399999943],[102.181315,-1.790989899999943],[102.19636780000008,-1.789727399999947],[102.20767250000006,-1.787689599999965],[102.21612090000008,-1.783592],[102.21985340000003,-1.780202899999949],[102.22432640000005,-1.772883499999978],[102.22513960000003,-1.761904299999969],[102.23563380000007,-1.755807],[102.24313670000004,-1.746363899999949],[102.24831620000003,-1.742809],[102.26479980000005,-1.737626399999954],[102.281014,-1.730524799999955],[102.3085,-1.7066018],[102.317446,-1.704162],[102.32435890000005,-1.704162],[102.33289820000005,-1.6976558],[102.33206590000003,-1.6883257],[102.34519230000006,-1.678720399999975],[102.35144670000005,-1.679749799999968],[102.35549560000004,-1.682223399999941],[102.36256160000005,-1.676744299999939],[102.38147,-1.692913499999975],[102.39044610000008,-1.6987374],[102.39926120000007,-1.714531199999954],[102.407394,-1.714937799999973],[102.44399120000008,-1.698265699999979],[102.467156,-1.681081],[102.48702920000005,-1.657561199999975],[102.49765460000003,-1.651214599999946],[102.51861370000006,-1.6462143]]]},"properties":{"shapeName":"Bungo","shapeISO":"","shapeID":"22746128B36148352344770","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[121.964137,1.052269400000057],[121.96768770000006,1.053501100000062],[121.9721105000001,1.058014400000047],[121.9764159,1.065399],[121.976415,1.06797720000003],[121.97309540000003,1.072077900000068],[121.969486,1.072662600000058],[121.9700123,1.065455500000041],[121.96716040000001,1.063696600000071],[121.96669580000002,1.060239300000035],[121.96209910000005,1.053675],[121.9622743000001,1.052034300000059],[121.964137,1.052269400000057]]],[[[121.81340480000006,1.093094],[121.81493030000001,1.096054700000025],[121.81393250000008,1.096901500000058],[121.81041130000006,1.095528600000023],[121.809989,1.092091200000027],[121.81340480000006,1.093094]]],[[[121.84410610000009,1.120681400000024],[121.84631490000004,1.123853100000076],[121.84452940000006,1.125387900000021],[121.8370662000001,1.121796400000051],[121.8344373000001,1.118783600000029],[121.84063590000005,1.116717100000074],[121.84252770000012,1.117244800000037],[121.84258180000006,1.119624600000066],[121.84410610000009,1.120681400000024]]],[[[121.36500710000007,1.27127790000003],[121.36405320000006,1.272369500000025],[121.36125980000008,1.270947800000044],[121.36081110000009,1.269252100000074],[121.36363830000005,1.267697],[121.36500710000007,1.27127790000003]]],[[[122.195257,1.038436900000022],[122.19162580000011,1.040909900000031],[122.18967310000005,1.044993300000044],[122.18597450000004,1.048249200000043],[122.18479250000007,1.051247200000034],[122.1860249,1.052023],[122.18638310000006,1.057037500000035],[122.18432870000004,1.057088700000065],[122.18160790000002,1.052745500000071],[122.18207240000004,1.04411250000004],[122.172519,1.04726340000002],[122.17046520000008,1.04545360000003],[122.169338,1.035010800000066],[122.16327830000012,1.033251600000028],[122.15957320000007,1.036929200000031],[122.15772920000006,1.042762],[122.1546346,1.046624800000075],[122.15530160000003,1.049265200000036],[122.15406140000005,1.049865],[122.1485785000001,1.046222800000066],[122.14129380000008,1.046427900000026],[122.14017850000005,1.052434500000061],[122.13715120000006,1.052375],[122.135113,1.054777],[122.13010570000006,1.056943800000056],[122.12432500000011,1.053625],[122.12682980000011,1.050001400000042],[122.12518440000008,1.050121],[122.12275410000007,1.045388800000069],[122.11915850000003,1.047610700000064],[122.11881330000006,1.051139300000045],[122.11720580000008,1.051590600000054],[122.11864290000005,1.054847700000039],[122.11788030000002,1.056881700000019],[122.11242820000007,1.056551900000045],[122.1103733000001,1.05867070000005],[122.1084734000001,1.05763630000007],[122.10657190000006,1.06223650000004],[122.10965220000003,1.066321300000027],[122.10898380000003,1.068802400000038],[122.10400230000005,1.068077200000062],[122.10266660000002,1.069576],[122.09927720000007,1.069006300000069],[122.09840380000003,1.07004],[122.09301170000003,1.068901100000062],[122.0901368000001,1.065281700000071],[122.07899250000003,1.064761400000066],[122.07919860000004,1.062486900000067],[122.07473140000002,1.059539],[122.0738060000001,1.06289890000005],[122.07164850000004,1.064552400000025],[122.06343150000009,1.064291400000059],[122.06728160000011,1.069720400000051],[122.07010610000009,1.070341600000063],[122.06912940000007,1.073443],[122.06528060000005,1.074440100000061],[122.05587960000003,1.072663500000033],[122.05634250000003,1.070440800000029],[122.05983540000011,1.068322400000056],[122.05916900000011,1.06418670000005],[122.05726830000003,1.065892],[122.0533137000001,1.066304400000035],[122.05126060000009,1.062375],[122.05059530000005,1.054724200000067],[122.04647980000004,1.053137200000037],[122.04166150000003,1.047639500000059],[122.03806640000005,1.048207],[122.03472870000007,1.046913600000039],[122.03103220000003,1.043242300000031],[122.02825840000003,1.045360800000026],[122.02194330000009,1.039982800000075],[122.019067,1.041015700000059],[122.0154212000001,1.039877300000057],[122.01080070000012,1.035016800000051],[122.00278870000011,1.036926900000026],[122.0002234000001,1.028913700000032],[121.99400980000007,1.027981200000056],[121.98677020000002,1.023326600000075],[121.98178880000012,1.023428400000057],[121.97562470000003,1.028233800000066],[121.97238940000011,1.028129400000068],[121.9678176000001,1.031953100000067],[121.95591930000012,1.037948400000062],[121.95307860000003,1.040975200000048],[121.95422250000001,1.049370400000043],[121.95823590000009,1.060801600000048],[121.95627040000011,1.060956400000066],[121.95268020000003,1.056343100000049],[121.9505276000001,1.056093300000043],[121.95135490000007,1.062773200000038],[121.95039560000009,1.067698],[121.94424340000012,1.076049100000034],[121.93542390000005,1.078895100000068],[121.93481960000008,1.084186300000056],[121.9358188000001,1.085719200000028],[121.93355030000009,1.089173900000048],[121.9361881000001,1.094822100000044],[121.93448380000007,1.100401900000065],[121.92695060000005,1.102647500000046],[121.91644040000006,1.098846700000024],[121.91365340000004,1.095040900000072],[121.91228770000009,1.095517700000073],[121.9081354000001,1.09282330000002],[121.89115390000006,1.091066300000023],[121.88787760000002,1.087498100000062],[121.88883770000007,1.08426970000005],[121.88771410000004,1.082333700000049],[121.88418580000007,1.080883400000062],[121.87921490000008,1.080241],[121.874085,1.081858100000034],[121.87424650000003,1.083794700000055],[121.87200180000002,1.083796100000029],[121.8636672,1.088804400000072],[121.86318950000009,1.094292],[121.85837630000003,1.089453200000037],[121.85994770000002,1.085261400000036],[121.8573732000001,1.085531100000026],[121.85520020000001,1.088928200000055],[121.848278,1.093534700000021],[121.84610250000003,1.092865900000049],[121.846294,1.090112200000021],[121.8440855,1.087257800000032],[121.83579740000005,1.086790400000041],[121.831882,1.088482300000067],[121.8293632000001,1.086653600000034],[121.82819470000004,1.090584700000022],[121.82363180000004,1.092147900000043],[121.820553,1.089615500000036],[121.81898190000004,1.081062100000054],[121.81262010000012,1.08221020000002],[121.80991570000003,1.077936400000056],[121.80893830000002,1.080752800000027],[121.80264510000006,1.082727600000055],[121.80012660000011,1.081462],[121.78683940000008,1.082877800000063],[121.783761,1.080908500000021],[121.78317630000004,1.076318100000037],[121.780122,1.077109300000075],[121.77914190000001,1.075420300000076],[121.77536680000003,1.078097600000035],[121.76683040000012,1.071203700000069],[121.7605354000001,1.070362600000067],[121.75228450000009,1.073464800000067],[121.75109740000005,1.072123400000066],[121.74512930000003,1.072683100000063],[121.74213410000004,1.068448700000033],[121.74370610000005,1.066890200000046],[121.7410172000001,1.061888500000066],[121.74031270000012,1.064958100000069],[121.73555350000004,1.06850380000003],[121.7353855,1.072192400000063],[121.7300993,1.076711300000056],[121.72619850000001,1.074553700000024],[121.72239370000011,1.075273700000025],[121.71729660000005,1.080151500000056],[121.71056370000008,1.081839500000058],[121.70651340000006,1.078743800000041],[121.70694360000005,1.07304670000002],[121.70252430000005,1.074213500000042],[121.70013730000005,1.068231200000071],[121.70385690000012,1.068095500000027],[121.70807030000003,1.059718900000064],[121.70792640000002,1.054094300000031],[121.71121560000006,1.045165700000041],[121.7147619000001,1.04312340000007],[121.71729060000007,1.043831300000022],[121.71318950000011,1.040522700000054],[121.70576240000003,1.038527100000067],[121.70732120000002,1.041917200000057],[121.70687250000003,1.045803400000068],[121.70443670000009,1.046122600000047],[121.7084125,1.050863600000071],[121.70570450000002,1.054120500000067],[121.697671,1.05633940000007],[121.69532550000008,1.062203],[121.6966973000001,1.063785500000051],[121.6946147000001,1.064685200000042],[121.69279940000001,1.068430400000068],[121.691874,1.067839],[121.69037530000003,1.070092100000068],[121.68500370000004,1.071976100000029],[121.68346640000004,1.071185],[121.6834798000001,1.067836200000045],[121.6786178000001,1.065428200000042],[121.67185720000009,1.06918120000006],[121.65494300000012,1.065113100000076],[121.64983360000008,1.059087900000065],[121.65112590000001,1.053597400000058],[121.65299920000007,1.052940400000068],[121.65764380000007,1.055274900000029],[121.656002,1.053278800000044],[121.65714590000005,1.052107700000022],[121.6548216000001,1.040700800000025],[121.6515227000001,1.040012400000023],[121.64797110000006,1.045321300000069],[121.64808710000011,1.052958600000068],[121.64330070000005,1.055300200000033],[121.63884880000012,1.054964400000074],[121.63237230000004,1.06105610000003],[121.62810810000008,1.062140600000021],[121.622187,1.059972600000037],[121.62167270000009,1.061663800000076],[121.612691,1.062142],[121.60852360000001,1.059889500000054],[121.60897910000006,1.056071400000064],[121.60208200000011,1.054704900000047],[121.5872174000001,1.058021300000064],[121.58391330000006,1.05751],[121.5733259000001,1.063413600000047],[121.57088830000009,1.062476900000036],[121.56821960000002,1.063475600000061],[121.566158,1.061660900000049],[121.55818820000002,1.062183900000036],[121.55112430000008,1.065370100000052],[121.52738150000005,1.082653500000049],[121.51022490000003,1.087571],[121.50072310000007,1.094552600000043],[121.48928250000006,1.107694],[121.48679950000007,1.108786100000032],[121.48383840000008,1.108069100000023],[121.483399,1.113155],[121.4537663000001,1.14119],[121.44829840000011,1.153211400000032],[121.43420430000003,1.163435900000025],[121.42160180000008,1.188686200000063],[121.42209820000005,1.191250100000047],[121.4237716,1.190937200000064],[121.42188950000002,1.192692900000054],[121.42266610000001,1.193807600000071],[121.4275262000001,1.195186600000056],[121.42896990000008,1.194257800000059],[121.43247330000008,1.20578370000004],[121.43556860000001,1.208787100000052],[121.43443250000007,1.217336],[121.43554510000001,1.223029100000076],[121.43286440000008,1.228432600000076],[121.42862030000003,1.230472100000043],[121.43447470000001,1.234542200000021],[121.43142340000009,1.235669600000051],[121.42625520000001,1.232709],[121.41941180000003,1.231218200000058],[121.41655490000005,1.232554200000038],[121.41321160000007,1.230499700000053],[121.41295580000008,1.232328900000027],[121.41628750000007,1.239518600000054],[121.42146140000011,1.244102200000043],[121.42508340000006,1.242633300000023],[121.430531,1.244061600000066],[121.43212580000011,1.239361400000064],[121.43999020000001,1.240717400000051],[121.44502980000004,1.244424700000025],[121.44417080000005,1.246403800000053],[121.44933090000006,1.245535300000029],[121.45523070000002,1.249489400000073],[121.46273960000008,1.251105600000074],[121.46327140000005,1.256138600000043],[121.46521790000008,1.258773200000064],[121.4721310000001,1.262553400000058],[121.4699558000001,1.278445600000055],[121.46439530000009,1.283621900000071],[121.47150920000001,1.297069800000031],[121.47110960000009,1.30077760000006],[121.4626273,1.308744500000046],[121.44405920000008,1.312758200000076],[121.44380760000001,1.31028660000004],[121.43776570000011,1.309612],[121.43530870000006,1.308005700000024],[121.43405660000008,1.303500400000075],[121.42887080000003,1.298789600000021],[121.43144340000003,1.294315],[121.43134510000004,1.292915200000039],[121.42874740000002,1.291724500000043],[121.42984320000005,1.289131800000064],[121.42592030000003,1.288412200000039],[121.42533130000004,1.284726800000044],[121.42361380000011,1.283338800000024],[121.41272230000004,1.277351500000066],[121.4104622000001,1.277943300000061],[121.41110880000008,1.26822],[121.40445420000003,1.262051100000065],[121.39707020000003,1.26026760000002],[121.3914337000001,1.261818],[121.38508690000003,1.26156990000004],[121.3796142000001,1.257258700000023],[121.36976350000009,1.255561600000021],[121.36100540000007,1.249657200000058],[121.35380650000002,1.248383300000057],[121.3465986000001,1.252330500000028],[121.343756,1.26025020000003],[121.33722710000006,1.262400900000046],[121.33519920000003,1.255271700000037],[121.3325420000001,1.253745200000026],[121.3300901,1.253074200000071],[121.325845,1.255411200000026],[121.32465260000004,1.25405580000006],[121.3182792,1.253954700000065],[121.31589670000005,1.256302800000071],[121.30837910000002,1.255533800000023],[121.3062648,1.252989700000057],[121.30054470000005,1.251575800000069],[121.29506690000005,1.241897200000039],[121.28615310000009,1.238554500000021],[121.27613420000012,1.24143],[121.27306110000006,1.234104600000023],[121.26876260000006,1.232076400000039],[121.2614986000001,1.232337],[121.26094090000004,1.231055500000025],[121.25497130000008,1.230684500000052],[121.24246870000002,1.232840400000043],[121.20295950000002,1.251651],[121.18428030000007,1.26563120000003],[121.17814170000008,1.263071600000046],[121.1767436,1.260527900000056],[121.177473,1.248767100000066],[121.17534880000005,1.245008200000029],[121.1723601000001,1.244582200000025],[121.1711706000001,1.242446400000063],[121.16758450000009,1.242520900000045],[121.16518790000009,1.239960600000074],[121.1588805,1.24467240000007],[121.15792620000002,1.243033400000058],[121.14958,1.241409300000043],[121.15143790000002,1.238780700000063],[121.15096060000008,1.234627800000055],[121.1481447000001,1.231091100000071],[121.14881910000008,1.225868600000069],[121.13703110000006,1.205921500000045],[121.13378100000011,1.204863],[121.12934980000011,1.206215100000065],[121.12579970000002,1.20331230000005],[121.12144250000006,1.196577700000034],[121.11511440000004,1.191642400000035],[121.09827,1.183834900000022],[121.09869660000004,1.176199200000042],[121.0927967,1.175264300000038],[121.092802,1.167286500000046],[121.08016860000009,1.151581800000031],[121.08101750000003,1.142673800000068],[121.08524510000007,1.134686200000033],[121.08014760000003,1.133330500000056],[121.08240520000004,1.131510500000047],[121.08396770000002,1.127213],[121.0892874000001,1.122475700000052],[121.09055390000003,1.112722400000052],[121.09264410000003,1.10755290000003],[121.08926410000004,1.099454500000036],[121.09125240000003,1.095100900000034],[121.09514550000006,1.093447800000035],[121.0867601000001,1.090298300000029],[121.0793043000001,1.089444700000058],[121.07310760000007,1.083697100000052],[121.06525460000012,1.083056100000022],[121.05611380000005,1.078173900000024],[121.05039280000005,1.069753100000071],[121.04805820000001,1.069755],[121.04460210000002,1.063779600000032],[121.041445,1.061353100000076],[121.04018040000005,1.048795300000052],[121.03393280000012,1.046824400000048],[121.02643880000005,1.039294700000028],[121.01112640000008,1.034893500000067],[121.00681080000004,1.032169100000033],[121.0119965,1.024167100000057],[121.01211250000006,1.020370400000047],[121.01443390000009,1.016235800000061],[121.02434110000002,1.014065200000061],[121.02702970000007,1.001967500000035],[121.02646330000005,0.999131],[121.02387130000011,0.998444400000039],[121.02133040000001,0.995056600000055],[121.01942580000002,0.988170900000057],[121.02147460000003,0.981882300000052],[121.0190457000001,0.977718100000061],[121.02036670000007,0.972343900000055],[121.017258,0.965023],[121.01247880000005,0.938442800000075],[121.0052789,0.891985700000021],[121.00596330000008,0.886839900000041],[121.00223920000008,0.882789500000058],[121.002513,0.880639700000074],[121.00724130000003,0.87645660000004],[121.0079498,0.868611900000076],[121.00616890000003,0.86664490000004],[121.0060449,0.861452],[121.00018380000006,0.859550500000068],[120.99855050000008,0.854403500000046],[120.99593860000004,0.852366500000073],[120.9902638000001,0.841590900000028],[120.9844012000001,0.84273150000007],[120.98208430000011,0.841182300000071],[120.97751760000006,0.841035400000067],[120.97277080000003,0.837419200000056],[120.96352390000004,0.83638510000003],[120.95046430000002,0.827275500000042],[120.93178840000007,0.826694],[120.93331290000003,0.822349300000042],[120.93283730000007,0.819284400000072],[120.93008850000001,0.818665400000043],[120.92473040000004,0.811092400000064],[120.91673680000008,0.803632400000026],[120.91530890000001,0.796884800000043],[120.91256890000011,0.794559600000071],[120.90020240000001,0.792646],[120.89186660000007,0.788044800000023],[120.89087080000002,0.780382700000075],[120.8794352000001,0.749936700000035],[120.84227010000006,0.695900400000028],[120.8454719,0.699195100000054],[120.84999810000011,0.700630500000045],[120.8578040000001,0.707845600000041],[120.86082510000006,0.708899],[120.870438,0.704621300000042],[120.87380130000008,0.70039730000002],[120.88320580000004,0.702917300000024],[120.89122750000001,0.698507],[120.90838310000004,0.692499700000042],[120.91828920000012,0.691292],[120.93453580000005,0.686313300000052],[120.9545945000001,0.692817400000024],[120.97059740000009,0.689958100000069],[120.97247850000008,0.692670600000042],[120.9779377000001,0.694919800000037],[121.00239920000001,0.701220900000067],[121.0105886,0.707970100000068],[121.01997130000007,0.703205700000069],[121.026756,0.702791300000058],[121.03588750000006,0.695236600000044],[121.0515074000001,0.690560800000071],[121.05498190000003,0.694003800000075],[121.05779740000003,0.693106200000045],[121.0617936000001,0.697690100000045],[121.062642,0.70106370000002],[121.06875510000009,0.700422900000035],[121.077727,0.696965100000057],[121.09584450000011,0.698714],[121.10200390000011,0.694709200000034],[121.10655270000007,0.694969700000058],[121.108345,0.689867],[121.12045690000002,0.686698],[121.12609610000004,0.681515900000022],[121.13282790000005,0.68052],[121.14982710000004,0.681353200000046],[121.1543233000001,0.679363600000045],[121.15643260000002,0.676248600000065],[121.16251860000011,0.676595500000076],[121.16124520000005,0.678653300000065],[121.17304620000004,0.685382900000036],[121.1742762,0.69297640000002],[121.17885740000008,0.70125070000006],[121.18056610000008,0.713750600000026],[121.18741580000005,0.72212090000005],[121.18481270000007,0.731438300000036],[121.1826847000001,0.734083600000019],[121.1837703000001,0.737412100000029],[121.18206650000002,0.743211600000052],[121.18564660000004,0.750001400000031],[121.18643070000007,0.757249400000035],[121.19042490000004,0.761940600000059],[121.19201670000007,0.766583300000036],[121.20091410000009,0.766099700000041],[121.2083037000001,0.767686400000059],[121.21356910000009,0.773352700000032],[121.21375970000008,0.779290200000048],[121.21720920000007,0.783737700000074],[121.2158736,0.792020100000059],[121.2336216000001,0.796984700000053],[121.23754890000009,0.801185500000031],[121.245851,0.801192400000048],[121.252083,0.798485600000049],[121.25701340000012,0.798687],[121.27015260000007,0.795794200000046],[121.28918550000003,0.79818750000004],[121.29270870000005,0.794933400000048],[121.303248,0.795529],[121.30591290000007,0.791853700000047],[121.317512,0.784517900000026],[121.32349920000001,0.788108200000067],[121.326161,0.792162200000064],[121.33238290000008,0.794565700000021],[121.33711540000002,0.794988400000022],[121.34455620000006,0.79310890000005],[121.35334090000003,0.795310800000038],[121.35412710000003,0.799012800000071],[121.35731810000004,0.800874400000055],[121.36339350000003,0.801009800000031],[121.36450180000008,0.80680730000006],[121.36142990000008,0.814949500000068],[121.3584800000001,0.815568400000075],[121.3504871,0.821345600000029],[121.35318350000011,0.834529700000076],[121.35190420000004,0.840686100000028],[121.34804330000009,0.843776],[121.34702880000009,0.848271500000067],[121.34993340000005,0.850775400000032],[121.3547913000001,0.850163],[121.35896140000011,0.853415],[121.36366140000007,0.852381600000058],[121.36482910000007,0.84999010000007],[121.36718480000002,0.849193800000023],[121.3745738,0.853210700000034],[121.3787565,0.85243730000002],[121.38599880000004,0.854276],[121.39035450000006,0.850536700000021],[121.39385430000004,0.851202600000022],[121.39801550000004,0.849388200000021],[121.40130810000005,0.843443600000057],[121.41121160000012,0.844930100000056],[121.4165306000001,0.847945700000025],[121.42009830000006,0.84420410000007],[121.42634080000005,0.843451500000072],[121.43318660000011,0.84440660000007],[121.43716020000011,0.847026500000027],[121.45097690000011,0.846456800000055],[121.45526910000001,0.847565900000063],[121.46230650000007,0.845039300000053],[121.46679640000002,0.847455300000036],[121.4719937000001,0.842208200000073],[121.4752668000001,0.841474700000049],[121.47658920000003,0.837621400000046],[121.48079380000001,0.837600900000041],[121.48255410000002,0.839661400000068],[121.49368780000009,0.839508200000068],[121.49941,0.843231400000036],[121.50122910000005,0.842874],[121.50138420000007,0.846062],[121.50585300000012,0.845854700000075],[121.52637520000007,0.85223910000002],[121.5324025000001,0.852711800000066],[121.53570710000008,0.860122300000057],[121.5346128000001,0.868014100000039],[121.53694810000002,0.875907200000029],[121.5477552000001,0.878472500000044],[121.55700940000008,0.877992200000051],[121.56321980000007,0.87393830000002],[121.566851,0.874597300000062],[121.57398,0.870631100000026],[121.57744320000006,0.872239900000068],[121.58391090000009,0.87163970000006],[121.58790150000004,0.873244500000055],[121.60307210000008,0.872908600000073],[121.61038170000006,0.882240900000056],[121.62328660000003,0.88214720000002],[121.63518950000002,0.890986600000076],[121.6457888000001,0.895172100000025],[121.64941850000002,0.894727500000045],[121.65456350000011,0.891227700000059],[121.65809780000006,0.891751300000067],[121.67336080000007,0.903459200000043],[121.68412920000003,0.900489800000059],[121.68858850000004,0.902812300000051],[121.691278,0.902602500000057],[121.69617420000009,0.906369400000074],[121.70152650000011,0.907050800000036],[121.70521360000009,0.913847300000043],[121.70916180000006,0.917298600000038],[121.71929430000012,0.920229400000039],[121.73537080000006,0.92966320000005],[121.76168610000002,0.93222570000006],[121.78002770000012,0.939418500000045],[121.7855657,0.939730600000075],[121.79411760000005,0.948249900000064],[121.80637700000011,0.951026],[121.81190650000008,0.950236500000074],[121.82117430000005,0.96164390000007],[121.8274540000001,0.960185500000023],[121.83067130000006,0.960812600000054],[121.83738340000002,0.973842300000058],[121.84793810000008,0.978517100000033],[121.8489234000001,0.980760500000031],[121.84669010000005,0.985767500000065],[121.8514808000001,0.992667900000072],[121.86289840000006,0.990793900000028],[121.86762250000004,0.986152900000036],[121.87606340000002,0.983107700000062],[121.878763,0.979978800000026],[121.8841605,0.978833],[121.89028560000008,0.974766200000033],[121.89602190000005,0.966900100000032],[121.90209470000002,0.963876500000026],[121.91597380000007,0.941797300000076],[121.91779250000002,0.934129600000063],[121.92166110000005,0.927791500000069],[121.92669500000011,0.92748],[121.93203970000002,0.929568300000028],[121.93816390000006,0.927796500000056],[121.94415220000008,0.919581300000061],[121.94726620000006,0.918747500000052],[121.9486687000001,0.914105200000051],[121.9546616,0.907719600000064],[121.96493710000004,0.907305200000053],[121.9757843000001,0.90423050000004],[121.98242730000004,0.907272900000066],[121.98515470000007,0.910456100000033],[121.98650180000004,0.918385700000044],[121.98359460000006,0.921723600000064],[121.98332570000002,0.926504800000032],[121.98851820000004,0.935409200000038],[121.99386170000002,0.942192400000067],[122.0003319000001,0.94306],[122.00765060000003,0.948385300000041],[122.01003980000007,0.952020400000038],[122.01696460000005,0.954609700000049],[122.0178969000001,0.956870400000071],[122.023106,0.958103900000026],[122.04231830000003,0.989477500000021],[122.04489250000006,0.989108600000066],[122.05200050000008,0.99446990000007],[122.062212,0.997997700000042],[122.0759346000001,1.006205400000056],[122.08436060000008,0.998579],[122.09269560000007,0.999813300000028],[122.11312240000007,1.013075400000048],[122.12303370000006,1.012299400000074],[122.12550980000003,1.018218700000034],[122.13629030000004,1.019944100000032],[122.14127130000008,1.018371],[122.15631960000007,1.025601700000038],[122.16062750000003,1.029870900000049],[122.17031290000011,1.027833900000076],[122.17529660000002,1.030174400000021],[122.17552820000003,1.03627380000006],[122.18620370000008,1.037004500000023],[122.18916590000003,1.039314500000046],[122.195257,1.038436900000022]]]]},"properties":{"shapeName":"Buol","shapeISO":"","shapeID":"22746128B90273795525180","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[127.2387235000001,-3.633601399999975],[127.24066470000002,-3.621962499999938],[127.23979430000009,-3.615902],[127.24295350000011,-3.613774399999954],[127.244114,-3.6053929],[127.24740210000004,-3.601911399999949],[127.2515284000001,-3.592304899999931],[127.249981,-3.582763],[127.24862710000002,-3.578443299999947],[127.24591920000012,-3.575542],[127.24475870000003,-3.569094699999937],[127.24869160000003,-3.5561357],[127.24637050000001,-3.550075199999981],[127.25081920000002,-3.544401599999958],[127.25168950000011,-3.529379399999925],[127.24946520000003,-3.525446599999952],[127.25056130000007,-3.521255899999971],[127.25023890000011,-3.494757499999935],[127.248885,-3.491985199999931],[127.25049680000006,-3.481153699999936],[127.25043230000006,-3.467163099999937],[127.2484981,-3.450077799999974],[127.25075470000002,-3.446725199999946],[127.25043230000006,-3.436860899999942],[127.25430070000004,-3.430800399999953],[127.25262440000006,-3.42719],[127.253656,-3.415649299999927],[127.25526780000007,-3.411716499999955],[127.26835580000011,-3.3964364],[127.26887160000001,-3.389408899999978],[127.26661500000012,-3.384831299999973],[127.25687960000005,-3.372001199999943],[127.25159280000003,-3.373032799999976],[127.24824030000002,-3.372130199999958],[127.24359820000006,-3.366843399999937],[127.22386950000009,-3.3618145],[127.21993670000006,-3.357108],[127.20401190000007,-3.358397399999944],[127.18222010000011,-3.355947499999957],[127.17906090000008,-3.353110699999945],[127.17951220000009,-3.346985699999948],[127.1769978000001,-3.34402],[127.17338730000006,-3.341763399999934],[127.16880970000011,-3.3412477],[127.16384530000005,-3.335380599999951],[127.15552830000001,-3.339055599999938],[127.14205350000009,-3.350016],[127.1381206000001,-3.3587198],[127.13850750000006,-3.3600737],[127.14018380000005,-3.3593645],[127.14102190000006,-3.362072399999931],[127.139041,-3.369540799999925],[127.139668,-3.373613],[127.13483250000002,-3.3789643],[127.13141540000004,-3.3787709],[127.12464580000005,-3.382703699999979],[127.12032610000006,-3.383219499999939],[127.10717370000009,-3.380576099999928],[127.09743830000002,-3.376320899999939],[127.09234490000006,-3.372065699999951],[127.07577540000011,-3.373806399999978],[127.07197150000002,-3.364328899999975],[127.07252070000004,-3.358145299999933],[127.07068540000012,-3.358435099999951],[127.06942970000011,-3.351963299999966],[127.0717479000001,-3.349645099999975],[127.06865690000006,-3.345974499999954],[127.07223090000002,-3.341338],[127.06865690000006,-3.337764],[127.07199820000005,-3.3330886],[127.073203,-3.328583399999957],[127.07160910000005,-3.328179599999942],[127.07321600000012,-3.321872199999973],[127.05525210000008,-3.329020299999968],[127.05275540000002,-3.336556499999972],[127.04926920000003,-3.335447699999975],[127.04290360000005,-3.328824],[127.0442164000001,-3.3201121],[127.04163360000007,-3.315799799999979],[127.0437323000001,-3.312899099999925],[127.04056760000003,-3.300372],[127.03992190000008,-3.2907172],[127.03458630000011,-3.276330899999948],[127.03064440000003,-3.274509299999977],[127.03073890000007,-3.273125599999958],[127.03455940000003,-3.272177],[127.034656,-3.265415499999961],[127.03069560000006,-3.265029099999936],[127.03484920000005,-3.263773399999934],[127.04389190000006,-3.265258099999926],[127.05613710000011,-3.261782199999971],[127.061992,-3.266284799999937],[127.06440680000003,-3.265512099999967],[127.06488980000006,-3.260682399999951],[127.06595230000005,-3.262421099999926],[127.06865690000006,-3.262517699999933],[127.0721641,-3.259871799999928],[127.08053790000008,-3.262324499999977],[127.07889580000005,-3.264739299999974],[127.08228710000003,-3.264323799999943],[127.08859450000011,-3.269607199999939],[127.0954355,-3.277311899999972],[127.0953343000001,-3.283593099999962],[127.09905530000003,-3.284722299999942],[127.11181930000009,-3.279595],[127.11682890000009,-3.280376399999966],[127.12208,-3.274462799999981],[127.1195818000001,-3.271822499999928],[127.11971430000006,-3.264634499999943],[127.11352350000004,-3.260669299999961],[127.11209960000008,-3.257192299999929],[127.11130900000012,-3.233589499999937],[127.10631890000002,-3.224954399999945],[127.10191190000012,-3.223268899999937],[127.09061150000002,-3.211027799999954],[127.08347090000007,-3.205263899999977],[127.07954010000003,-3.203938699999981],[127.0596743000001,-3.183415299999979],[127.04872360000002,-3.175847199999964],[127.0439579,-3.174999499999956],[127.03753,-3.170794299999955],[127.02955630000008,-3.172617399999979],[127.02656880000006,-3.168976399999963],[127.02693050000005,-3.166820799999925],[127.01836710000009,-3.15758],[126.98372440000003,-3.137866699999961],[126.978264,-3.139066399999933],[126.95762570000011,-3.137815799999942],[126.950231,-3.140915899999925],[126.93270840000002,-3.143157199999962],[126.92380180000009,-3.139707099999953],[126.91254910000009,-3.125092399999971],[126.90918980000004,-3.122706299999948],[126.90609460000007,-3.122747599999968],[126.90009510000004,-3.127059699999961],[126.89112840000007,-3.127424899999937],[126.88571750000006,-3.123277099999939],[126.88178070000004,-3.107642399999975],[126.87188,-3.101098499999978],[126.86739040000009,-3.095701299999973],[126.85781240000006,-3.090194899999972],[126.84997540000006,-3.089489199999946],[126.83799710000005,-3.085278199999948],[126.83427820000009,-3.0812483],[126.81969780000009,-3.071174299999939],[126.79066590000002,-3.058872099999974],[126.77567790000012,-3.057097799999951],[126.76933670000005,-3.0609087],[126.7602657000001,-3.059665299999949],[126.75260930000002,-3.060673899999927],[126.74030650000009,-3.059740499999975],[126.73457340000004,-3.057790799999964],[126.725629,-3.058160399999963],[126.711013,-3.056145199999946],[126.70506880000005,-3.057378799999981],[126.700037,-3.060237099999938],[126.69744450000007,-3.0665714],[126.69507220000003,-3.067329599999937],[126.68917810000005,-3.065446399999928],[126.68539060000012,-3.061964399999965],[126.6807023,-3.0616002],[126.67992250000009,-3.0675986],[126.67318430000012,-3.070017899999925],[126.6588283000001,-3.069598],[126.65247000000011,-3.071557499999926],[126.64541070000007,-3.071359899999948],[126.61041250000005,-3.067895399999941],[126.59801090000008,-3.063874099999964],[126.58922940000002,-3.068073899999945],[126.5683256000001,-3.071987399999955],[126.51611380000008,-3.071128399999964],[126.50208250000003,-3.077237199999956],[126.48289680000005,-3.078478099999927],[126.473638,-3.083059799999944],[126.46380650000003,-3.084587],[126.4543569000001,-3.082773399999951],[126.43708020000008,-3.083823399999972],[126.4271533000001,-3.081628],[126.42343070000004,-3.079241699999955],[126.41636730000005,-3.081628],[126.4059631,-3.080578],[126.3926954000001,-3.088118699999939],[126.38906830000008,-3.093273],[126.37904590000005,-3.095182099999931],[126.36406010000007,-3.094036599999924],[126.34592430000009,-3.100909099999967],[126.32559320000007,-3.1001455],[126.30548490000001,-3.093925299999967],[126.29963050000003,-3.093416199999979],[126.29250350000007,-3.097997899999939],[126.28446970000005,-3.107833299999925],[126.27280080000003,-3.115063699999951],[126.26070240000001,-3.132388099999957],[126.24924820000001,-3.1311711],[126.23407150000003,-3.132531299999926],[126.22748530000001,-3.137757299999976],[126.2216151,-3.153077199999927],[126.2210424000001,-3.158661099999961],[126.2224026,-3.167466399999967],[126.225982,-3.172191299999952],[126.22805810000011,-3.178061499999956],[126.22569560000011,-3.182070499999952],[126.222331,-3.183502199999964],[126.21531530000004,-3.182643199999973],[126.20343170000001,-3.185936199999958],[126.18925720000004,-3.185291899999925],[126.16305580000005,-3.175913899999955],[126.15883210000004,-3.171475399999963],[126.14422810000008,-3.167108499999927],[126.13298870000006,-3.160236],[126.12804910000011,-3.152790799999934],[126.1256201000001,-3.152159599999948],[126.12153960000012,-3.156358699999942],[126.11259030000008,-3.157233099999928],[126.12294430000009,-3.202871],[126.1300371000001,-3.226145299999928],[126.13261260000002,-3.2646958],[126.1242013000001,-3.295265],[126.1331272000001,-3.302011499999935],[126.22859130000006,-3.336748899999975],[126.32556150000005,-3.361175499999945],[126.38098520000005,-3.384562199999948],[126.46224210000003,-3.411757],[126.509758,-3.435512299999971],[126.72661590000007,-3.4801261],[126.901947,-3.518771899999933],[127.1958542000001,-3.609348],[127.2387235000001,-3.633601399999975]]]},"properties":{"shapeName":"Buru","shapeISO":"","shapeID":"22746128B36348103964295","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[127.20606920000012,-3.8203521],[127.195674,-3.815944599999966],[127.1872624,-3.819577799999934],[127.18541170000003,-3.823761599999955],[127.18234330000007,-3.825532499999952],[127.1793358000001,-3.825856699999974],[127.17460260000007,-3.8235973],[127.163568,-3.824172699999963],[127.15949980000005,-3.831058699999971],[127.15092250000009,-3.834473399999979],[127.14782980000007,-3.838125899999966],[127.14218630000005,-3.848461199999974],[127.1419634,-3.852603199999976],[127.1449014000001,-3.854214599999978],[127.14593020000007,-3.857850699999972],[127.14885070000003,-3.858210299999939],[127.14817850000009,-3.861865199999954],[127.15179230000001,-3.8709464],[127.15379730000006,-3.873499599999946],[127.15834020000011,-3.875363199999981],[127.1585103000001,-3.878152499999942],[127.16414620000012,-3.888894],[127.1677178000001,-3.888472299999933],[127.16993710000008,-3.886233499999946],[127.17486810000003,-3.887869],[127.17620370000009,-3.885792199999969],[127.17778470000007,-3.886634799999968],[127.17779170000006,-3.889220399999942],[127.17989820000003,-3.890262],[127.18834980000008,-3.893052299999965],[127.19544320000011,-3.891991],[127.20005830000002,-3.894334899999933],[127.20370990000004,-3.894201499999951],[127.20061970000006,-3.891880599999979],[127.2026330000001,-3.890604799999949],[127.20733070000006,-3.890821099999926],[127.20693530000005,-3.896878699999945],[127.2118723000001,-3.9005797],[127.2134496000001,-3.9043753],[127.2228146000001,-3.905005599999924],[127.224458,-3.903726199999937],[127.22278410000001,-3.899175899999932],[127.22352220000005,-3.895210099999929],[127.22789290000003,-3.885724599999946],[127.2269917000001,-3.882269599999972],[127.22894330000008,-3.880388799999935],[127.23225020000007,-3.880229099999951],[127.23296710000011,-3.876718099999948],[127.23915080000006,-3.878751499999964],[127.24393180000004,-3.875175499999955],[127.24242870000012,-3.873134899999968],[127.23862340000005,-3.872143599999958],[127.23728950000009,-3.869801],[127.23991440000009,-3.864807599999949],[127.24265530000002,-3.863287399999933],[127.23881740000002,-3.861061099999972],[127.23886530000004,-3.858563199999935],[127.24234030000002,-3.853724099999965],[127.2386246000001,-3.853275599999961],[127.23744450000004,-3.850769399999933],[127.23541730000011,-3.8503357],[127.23794810000004,-3.843279199999927],[127.23580220000008,-3.838114799999971],[127.22643770000002,-3.835142399999938],[127.22423850000007,-3.830260499999952],[127.22173390000012,-3.830696099999955],[127.2175016000001,-3.828296699999953],[127.21575610000002,-3.829104],[127.21325160000004,-3.823458499999958],[127.20606920000012,-3.8203521]]],[[[125.9982781000001,-3.251287599999955],[126.00220320000005,-3.244870299999945],[126.00584270000002,-3.2419614],[126.00657750000005,-3.239043899999956],[126.0052564,-3.237956899999972],[126.004568,-3.232668399999966],[126.0057571000001,-3.231416699999954],[126.00581970000007,-3.224626199999932],[126.00835440000003,-3.222404399999959],[126.0084796000001,-3.217522699999961],[126.006821,-3.2164901],[125.998372,-3.226034299999981],[125.99521140000002,-3.249660399999925],[125.99608760000001,-3.252195099999938],[125.9982781000001,-3.251287599999955]]],[[[126.1256201000001,-3.152159599999948],[126.1202770000001,-3.146663799999942],[126.11812940000004,-3.140949299999932],[126.11057860000005,-3.134664799999939],[126.11033750000001,-3.124645799999939],[126.10728640000002,-3.116989599999954],[126.10123130000011,-3.112879699999951],[126.09271970000009,-3.111847],[126.08865160000005,-3.113881099999958],[126.08708700000011,-3.119920599999944],[126.082174,-3.128338299999939],[126.0742570000001,-3.132531599999936],[126.07150320000005,-3.136975099999972],[126.06483780000008,-3.142795599999943],[126.05300920000002,-3.148741199999961],[126.04650030000005,-3.149367099999949],[126.04224450000004,-3.155813399999943],[126.03517230000011,-3.159380699999929],[126.02243610000005,-3.1727428],[126.01780480000002,-3.172993099999928],[126.01717890000009,-3.174307399999975],[126.01598980000006,-3.184195899999963],[126.0174919000001,-3.1885769],[126.01276670000004,-3.190642199999957],[126.01170270000011,-3.194021799999973],[126.01677210000003,-3.204504899999961],[126.01717890000009,-3.209856],[126.01520750000009,-3.211639699999978],[126.01636530000007,-3.214017899999931],[126.01458160000004,-3.217272399999956],[126.0144878000001,-3.222122699999943],[126.01589590000003,-3.225846599999954],[126.01514490000011,-3.233137799999952],[126.0182013000001,-3.237618399999974],[126.01016940000011,-3.242588199999943],[126.00775980000003,-3.245623599999931],[126.00763460000007,-3.258140699999956],[126.00503730000003,-3.262834599999962],[126.00610130000007,-3.2741],[126.0078224,-3.273943599999939],[126.0100129000001,-3.277323199999955],[126.01013810000006,-3.280296],[126.00904280000009,-3.285521899999935],[126.01012260000005,-3.291490599999975],[126.00596,-3.299253199999953],[126.01237910000009,-3.305226499999947],[126.00601910000012,-3.312243699999954],[126.0062362000001,-3.318710399999929],[126.00787380000008,-3.324705899999969],[126.01774030000001,-3.331534699999963],[126.01844,-3.334817399999963],[126.01027410000006,-3.344444],[126.0068242000001,-3.358839199999977],[126.01114560000008,-3.368979399999944],[126.01804360000006,-3.371948399999951],[126.02198150000004,-3.383799099999976],[126.0359476000001,-3.396156299999973],[126.04001080000012,-3.397975599999938],[126.04038420000006,-3.399640799999929],[126.03829530000007,-3.4020116],[126.03977970000005,-3.406741599999975],[126.037432,-3.4212648],[126.03831670000011,-3.425879399999928],[126.0450479000001,-3.437121099999956],[126.04524990000004,-3.441381],[126.054386,-3.451091899999938],[126.05454250000003,-3.453908299999966],[126.0570772000001,-3.456693299999927],[126.06577660000005,-3.461762799999974],[126.07359980000001,-3.477784699999972],[126.08157950000009,-3.482760199999973],[126.08908970000005,-3.482791499999962],[126.09475370000007,-3.484794199999953],[126.096819,-3.487485399999969],[126.10451710000007,-3.4913657],[126.10670760000005,-3.495715399999938],[126.11550080000006,-3.497248799999966],[126.11734710000007,-3.499188899999979],[126.12517030000004,-3.501848799999948],[126.12635940000007,-3.506886899999927],[126.13527790000012,-3.510986299999956],[126.13674860000003,-3.513239399999975],[126.13662340000008,-3.517776799999979],[126.15123720000008,-3.525850399999968],[126.15236370000002,-3.533266699999956],[126.16093520000004,-3.540995399999929],[126.1617126000001,-3.547589799999969],[126.16429720000008,-3.553065499999946],[126.16582960000005,-3.565301099999942],[126.16372260000003,-3.572025599999961],[126.16322950000006,-3.582022699999925],[126.16739860000007,-3.586797099999956],[126.16690060000008,-3.591726799999947],[126.16894530000002,-3.5957183],[126.17282310000007,-3.5982736],[126.17997340000011,-3.611476],[126.18297710000002,-3.614165799999967],[126.19283960000007,-3.6190074],[126.19671740000001,-3.624050799999964],[126.22218090000001,-3.618222899999978],[126.23204350000003,-3.618783299999961],[126.24188360000005,-3.626718199999971],[126.25219450000009,-3.631044299999928],[126.25468320000004,-3.635038499999951],[126.26488140000004,-3.641601699999967],[126.2692075000001,-3.651217799999927],[126.27638030000003,-3.655005899999935],[126.28021330000001,-3.660228599999925],[126.28045980000002,-3.664196],[126.28861890000007,-3.6654737],[126.29805560000011,-3.669844599999976],[126.30179890000011,-3.670068799999967],[126.31021120000003,-3.674576099999967],[126.32672270000012,-3.676467],[126.33581880000008,-3.679989299999932],[126.3447172000001,-3.688541599999951],[126.34917130000008,-3.7017954],[126.3531597000001,-3.7034059],[126.3720320000001,-3.704703],[126.37346960000002,-3.708324],[126.37907410000003,-3.712148399999933],[126.3801386,-3.714514099999974],[126.38540790000002,-3.717925599999944],[126.39199460000009,-3.719209099999944],[126.39314850000005,-3.713543199999947],[126.39490320000004,-3.713808],[126.39957140000001,-3.709404699999936],[126.40169030000004,-3.7140067],[126.39490320000004,-3.716291099999978],[126.39581140000007,-3.719259799999975],[126.39990250000005,-3.720363299999974],[126.40831180000009,-3.727150399999971],[126.41089420000003,-3.726786199999935],[126.41390700000011,-3.730560499999967],[126.41412670000011,-3.733085099999926],[126.43181830000003,-3.739598899999976],[126.43390410000006,-3.743141399999956],[126.43611150000004,-3.744045299999925],[126.44026070000007,-3.742578599999945],[126.439433,-3.745955599999945],[126.4411215,-3.748471799999948],[126.44963020000012,-3.752510899999947],[126.45198090000008,-3.7469819],[126.45539090000011,-3.747677199999941],[126.45542410000007,-3.757543299999952],[126.4666145000001,-3.7613507],[126.4705212,-3.764992499999948],[126.47614950000002,-3.764992499999948],[126.48164530000008,-3.767111399999976],[126.484294,-3.766383],[126.48690950000002,-3.772243099999969],[126.489856,-3.770488399999977],[126.49313370000004,-3.771514699999955],[126.49674240000002,-3.775587],[126.49770260000003,-3.779129499999954],[126.501841,-3.779758499999957],[126.50203970000007,-3.782903799999929],[126.50054980000004,-3.783996299999956],[126.50197350000008,-3.785419899999965],[126.503662,-3.786049],[126.50571460000003,-3.784195],[126.50591330000009,-3.781678799999952],[126.5115747000001,-3.779261899999938],[126.51329630000009,-3.779195699999946],[126.51829550000002,-3.783069299999966],[126.52170560000002,-3.782009899999935],[126.5217209000001,-3.790163499999949],[126.51521650000007,-3.791511799999967],[126.51395840000009,-3.793167099999948],[126.51511720000008,-3.793465099999935],[126.51481920000003,-3.794988099999955],[126.52197050000007,-3.794723199999964],[126.5314393000001,-3.796544099999949],[126.53633920000004,-3.792505],[126.54984720000004,-3.7906178],[126.55323550000003,-3.790678299999968],[126.55848830000002,-3.793696899999929],[126.56246120000003,-3.792769799999974],[126.56620240000007,-3.796709699999951],[126.58229270000004,-3.8034636],[126.58619940000005,-3.803695399999981],[126.58957640000006,-3.810118299999942],[126.59321820000002,-3.811839899999939],[126.59742290000008,-3.8083636],[126.59983980000004,-3.810416199999963],[126.6017931,-3.810283799999979],[126.6047397000001,-3.813197299999956],[126.60440860000006,-3.817799299999933],[126.60629580000011,-3.820083699999941],[126.609726,-3.820967199999927],[126.61288420000005,-3.8170378],[126.61453960000006,-3.817501299999947],[126.6186603000001,-3.822108599999979],[126.61445670000012,-3.824459],[126.62001630000009,-3.827826399999935],[126.62205030000007,-3.827487399999939],[126.62548540000012,-3.822538],[126.63390390000006,-3.821261099999958],[126.63904530000002,-3.823329],[126.6443789000001,-3.830583599999954],[126.64998360000004,-3.8319848],[126.65854900000011,-3.8396913],[126.66498990000002,-3.840776099999971],[126.6695777000001,-3.843442899999957],[126.67412020000006,-3.855601599999943],[126.6872959000001,-3.861387099999945],[126.69443750000005,-3.861658299999931],[126.70503940000003,-3.855088699999953],[126.7063250000001,-3.851104199999952],[126.71138740000004,-3.849047599999949],[126.71491290000006,-3.849318799999935],[126.715969,-3.847702399999946],[126.72167030000003,-3.845657699999947],[126.728405,-3.846064499999954],[126.73321880000003,-3.848550399999965],[126.7357048,-3.850177599999938],[126.7355692000001,-3.855872799999929],[126.74124170000005,-3.857364399999938],[126.74248470000009,-3.855127],[126.74029250000001,-3.853658],[126.74394230000007,-3.849363799999935],[126.7869386000001,-3.818289299999947],[126.81184360000009,-3.8043],[126.81733530000008,-3.803757599999926],[126.84797240000012,-3.789940399999978],[126.85333680000008,-3.789994299999933],[126.8652244000001,-3.784954499999969],[126.87356370000009,-3.784118299999932],[126.88459240000009,-3.790333299999929],[126.89218590000007,-3.790672299999926],[126.89257850000001,-3.788204099999973],[126.90307910000001,-3.780502399999932],[126.91879050000011,-3.775672399999962],[126.92012150000005,-3.774172399999941],[126.92354390000003,-3.776601899999946],[126.93641470000011,-3.773581699999966],[126.94413730000008,-3.769956],[126.94768590000001,-3.772101699999951],[126.9551957000001,-3.770451199999968],[126.95940450000012,-3.762652499999945],[126.95819090000009,-3.757588099999964],[126.96196270000007,-3.753863599999931],[126.97310370000002,-3.744992099999934],[126.98391450000008,-3.744331899999963],[126.99361120000003,-3.730797799999948],[126.99522040000011,-3.726547699999969],[126.99934670000005,-3.722916599999962],[127.05034730000011,-3.689493899999945],[127.0658208000001,-3.685573899999952],[127.07106890000011,-3.6829538],[127.09505280000008,-3.683276099999944],[127.09653560000004,-3.681277499999965],[127.10021060000008,-3.681470899999965],[127.11658670000008,-3.665546099999972],[127.12367870000003,-3.663676399999929],[127.13070620000008,-3.664127699999938],[127.13631540000006,-3.661226399999975],[127.14476130000003,-3.661935599999936],[127.14773560000003,-3.665319899999929],[127.16204830000004,-3.666559899999925],[127.17235570000003,-3.673562799999956],[127.1848907000001,-3.675266499999964],[127.18705550000004,-3.6742499],[127.18989230000011,-3.676313099999959],[127.1926969000001,-3.675668299999927],[127.19698430000005,-3.672960499999931],[127.19962770000006,-3.673476299999948],[127.20336910000003,-3.668786],[127.20594790000007,-3.668378399999938],[127.20983890000002,-3.664457299999981],[127.21510310000008,-3.663181299999962],[127.21852870000009,-3.660009399999979],[127.226593,-3.6468716],[127.233347,-3.643496399999947],[127.23431410000012,-3.636855699999956],[127.2387235000001,-3.633601399999975],[127.1958542000001,-3.609348],[126.901947,-3.518771899999933],[126.72661590000007,-3.4801261],[126.509758,-3.435512299999971],[126.46224210000003,-3.411757],[126.38098520000005,-3.384562199999948],[126.32556150000005,-3.361175499999945],[126.22859130000006,-3.336748899999975],[126.1331272000001,-3.302011499999935],[126.1242013000001,-3.295265],[126.13261260000002,-3.2646958],[126.1300371000001,-3.226145299999928],[126.12294430000009,-3.202871],[126.11259030000008,-3.157233099999928],[126.12153960000012,-3.156358699999942],[126.1256201000001,-3.152159599999948]]]]},"properties":{"shapeName":"Buru Selatan","shapeISO":"","shapeID":"22746128B32053438426880","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[123.15918420000003,-5.246764399999961],[123.15797870000006,-5.246938099999966],[123.15841180000007,-5.248190499999964],[123.15974660000006,-5.247848899999951],[123.15918420000003,-5.246764399999961]]],[[[122.68269240000006,-5.2951484],[122.68982330000006,-5.292338599999937],[122.69899620000001,-5.283464099999946],[122.70203290000006,-5.274321899999961],[122.70293020000008,-5.258383799999933],[122.70655750000003,-5.253816799999925],[122.71270740000011,-5.240280699999971],[122.71088440000005,-5.240665399999955],[122.70064130000003,-5.252882],[122.69580990000009,-5.267260199999953],[122.68015420000006,-5.289403799999945],[122.68031030000009,-5.293813799999953],[122.68269240000006,-5.2951484]]],[[[122.73756270000001,-5.188757799999962],[122.73576770000011,-5.1890462],[122.72995060000005,-5.19629],[122.72575730000005,-5.199166299999945],[122.71970460000011,-5.207090099999959],[122.71746580000001,-5.212814699999967],[122.72110480000003,-5.212884299999928],[122.7262588000001,-5.210637099999929],[122.7371865,-5.1989353],[122.73871640000004,-5.193747499999972],[122.73756270000001,-5.188757799999962]]],[[[122.95437640000011,-5.140645099999972],[122.93947580000008,-5.1283175],[122.93122640000001,-5.124368799999957],[122.9274282,-5.127904399999977],[122.9273740000001,-5.122524699999929],[122.89191810000011,-5.106087799999955],[122.86744680000004,-5.100064399999951],[122.84205180000004,-5.097280699999942],[122.82912250000004,-5.097716899999966],[122.786137,-5.101010799999926],[122.7911051000001,-5.106652799999949],[122.786047,-5.110345299999949],[122.77114470000004,-5.111457499999972],[122.76982540000006,-5.116156099999955],[122.771329,-5.119732099999965],[122.76533860000006,-5.125078099999939],[122.76186970000003,-5.133547],[122.73716610000008,-5.169800099999975],[122.7371554,-5.175229],[122.73871730000008,-5.178233199999966],[122.74193020000007,-5.180271499999947],[122.74902710000003,-5.173477499999933],[122.75160380000011,-5.173403],[122.75653180000006,-5.184964299999933],[122.75659,-5.1917228],[122.74873190000005,-5.206525699999929],[122.74734390000003,-5.2170807],[122.748236,-5.221307099999933],[122.75361040000007,-5.225629199999958],[122.754387,-5.228506799999934],[122.76010240000005,-5.224350199999947],[122.76906720000011,-5.205462799999964],[122.77822480000009,-5.195942699999932],[122.78418120000003,-5.184421099999952],[122.78790050000009,-5.183955],[122.79016120000006,-5.185985599999981],[122.7930986,-5.185188699999969],[122.79920560000005,-5.191715],[122.80631290000008,-5.2018626],[122.80795010000008,-5.208186099999978],[122.80707560000008,-5.214700499999935],[122.81248210000001,-5.2191587],[122.81088880000004,-5.221556599999928],[122.80384960000004,-5.225432399999931],[122.80477240000005,-5.227599199999929],[122.79357740000012,-5.242270499999961],[122.78821270000003,-5.242360499999961],[122.78679150000005,-5.244266899999957],[122.78128140000001,-5.244711499999937],[122.7712206000001,-5.253969099999949],[122.7616332,-5.255958799999974],[122.75522020000005,-5.254830099999936],[122.74900930000001,-5.247860399999979],[122.74761690000003,-5.2441965],[122.75340280000012,-5.240967],[122.75395630000003,-5.238995399999965],[122.7489902000001,-5.238383299999953],[122.74301770000011,-5.243600499999957],[122.73772130000009,-5.241401499999938],[122.7324013000001,-5.242138399999931],[122.72613980000006,-5.248608099999956],[122.72047380000004,-5.258132299999943],[122.71413810000001,-5.261732799999947],[122.7111427000001,-5.268963399999961],[122.7076379,-5.273039],[122.70772780000004,-5.278584199999955],[122.70387490000007,-5.284858899999961],[122.7055147000001,-5.286082099999931],[122.69965820000004,-5.292700099999934],[122.69674420000001,-5.301187599999935],[122.68793660000006,-5.315834399999972],[122.6861871000001,-5.321071],[122.69523530000004,-5.328195],[122.70122260000005,-5.328053199999943],[122.7078,-5.3318287],[122.71047360000011,-5.3321466],[122.72140250000007,-5.328641699999935],[122.72549640000011,-5.329123],[122.72778080000012,-5.337039599999969],[122.726069,-5.3517483],[122.7269222000001,-5.354978299999971],[122.72981870000001,-5.357458299999962],[122.73645850000003,-5.356466099999977],[122.73938270000008,-5.359805599999959],[122.74231870000006,-5.358024499999942],[122.74654710000004,-5.361093],[122.74823480000009,-5.360731899999962],[122.75942020000002,-5.376350499999944],[122.76249160000009,-5.391142699999932],[122.763204,-5.404350699999952],[122.768434,-5.408876],[122.7697945000001,-5.412504099999978],[122.76287390000005,-5.418318299999953],[122.75996640000005,-5.422768],[122.76218490000008,-5.428088199999934],[122.7619261000001,-5.432131799999979],[122.75941210000008,-5.432637399999976],[122.75455480000005,-5.449854699999946],[122.7498184000001,-5.449249299999963],[122.74935410000012,-5.451883499999951],[122.75193560000002,-5.454484299999933],[122.7508927,-5.455899699999975],[122.75326540000003,-5.459452],[122.74583870000004,-5.466946199999938],[122.74619550000011,-5.472273299999927],[122.74233750000008,-5.475474799999972],[122.74267120000002,-5.481763499999943],[122.74021890000006,-5.483790899999974],[122.74133590000008,-5.488132199999939],[122.73887450000007,-5.491089899999963],[122.80686190000006,-5.531925499999943],[122.81230330000005,-5.588222599999938],[122.82140040000002,-5.624727],[122.83361350000007,-5.639152099999933],[122.84916250000003,-5.620580599999926],[122.8608623,-5.610616399999969],[122.863215,-5.605422],[122.86297480000007,-5.601193499999965],[122.86739570000009,-5.595171899999968],[122.86763750000011,-5.5925141],[122.870146,-5.591209899999967],[122.87275150000005,-5.587151099999971],[122.886968,-5.576904199999944],[122.88930360000006,-5.570864],[122.89851790000012,-5.560475699999927],[122.89682990000006,-5.559460599999966],[122.89374220000002,-5.564679199999944],[122.89286490000006,-5.558859199999972],[122.89829210000005,-5.551988899999969],[122.8963338000001,-5.545947899999931],[122.897298,-5.543047899999976],[122.89459950000003,-5.542614299999968],[122.89803870000003,-5.543049899999971],[122.89816790000009,-5.523734799999943],[122.89729640000007,-5.5177669],[122.89274490000003,-5.513965],[122.88428610000005,-5.510884499999975],[122.88098660000003,-5.506930699999941],[122.8757518000001,-5.506511499999931],[122.87252690000003,-5.508601499999941],[122.86288850000005,-5.522435399999949],[122.84722160000001,-5.528403799999978],[122.84796090000009,-5.526855399999931],[122.84465510000007,-5.524058],[122.84219910000002,-5.518374799999947],[122.84190540000009,-5.517069799999945],[122.84387840000011,-5.522184699999968],[122.84409770000002,-5.517183499999931],[122.84506910000005,-5.517157399999974],[122.84429450000005,-5.508767699999964],[122.8486610000001,-5.485703299999955],[122.85427450000009,-5.478765899999928],[122.85824720000005,-5.471005799999944],[122.86198890000003,-5.4687376],[122.86414350000007,-5.464154699999938],[122.8722457,-5.455033],[122.89519510000002,-5.439153199999964],[122.89936780000005,-5.438594399999943],[122.90151270000001,-5.439743299999975],[122.9044474000001,-5.437785799999972],[122.9030001000001,-5.439557299999933],[122.91263110000011,-5.438486399999931],[122.91402210000001,-5.439773399999979],[122.92311820000009,-5.436986499999932],[122.94141790000003,-5.4248705],[122.94816030000004,-5.413611],[122.96280270000011,-5.408349899999962],[122.97166450000009,-5.396285899999953],[122.97601150000003,-5.3942754],[122.9857085000001,-5.395448599999952],[122.9873804,-5.394443299999978],[122.98868880000009,-5.395357599999954],[122.98793970000008,-5.398005199999943],[122.99001590000012,-5.399641],[122.99497320000012,-5.399279399999955],[122.99694390000002,-5.401171099999942],[122.99760450000008,-5.404142],[123.0003071000001,-5.406966199999943],[122.99897680000004,-5.406624],[122.99898860000008,-5.408602],[123.00058250000006,-5.407231299999978],[123.00212280000005,-5.408854699999949],[123.00091880000002,-5.411922199999935],[123.00389940000002,-5.414852899999971],[123.00282650000008,-5.416748699999971],[123.004381,-5.418757],[123.00334020000003,-5.4199422],[123.00462180000011,-5.420132599999931],[123.003644,-5.421474499999931],[123.00490420000006,-5.422434399999929],[123.004757,-5.425003199999935],[123.01277060000007,-5.434027699999945],[123.017323,-5.443477199999961],[123.02382610000006,-5.4424995],[123.06446790000007,-5.419035199999939],[123.07097070000009,-5.418382799999961],[123.08327610000003,-5.4128582],[123.0841842000001,-5.414514399999973],[123.08763740000006,-5.414109099999962],[123.09166510000011,-5.411578899999938],[123.09725330000003,-5.410850299999936],[123.10004750000007,-5.408451699999944],[123.10163040000009,-5.409280699999954],[123.1014192,-5.4077657],[123.11431890000006,-5.400425899999959],[123.11930230000007,-5.401927899999976],[123.13095550000003,-5.3993521],[123.13113250000004,-5.397757599999977],[123.13403890000006,-5.397530899999936],[123.13898520000009,-5.391458],[123.14164560000006,-5.384274299999959],[123.14314930000012,-5.383760699999925],[123.14135220000003,-5.383204199999966],[123.1426977000001,-5.381179499999973],[123.14401190000001,-5.381942599999945],[123.14630560000012,-5.380094799999938],[123.15181960000007,-5.374974499999951],[123.1540983000001,-5.3705899],[123.15716210000005,-5.3689892],[123.15931810000006,-5.363006699999971],[123.16235330000006,-5.361458099999936],[123.16330520000008,-5.362442199999975],[123.16220940000005,-5.364509899999973],[123.16335970000011,-5.365154799999971],[123.16630010000006,-5.3597],[123.16598270000009,-5.357472299999927],[123.16770930000007,-5.357288],[123.16746740000008,-5.359328],[123.16892690000009,-5.359895799999947],[123.1732406000001,-5.358446099999981],[123.17709860000002,-5.349189099999933],[123.1807040000001,-5.3479412],[123.18520020000005,-5.342912799999965],[123.18537250000008,-5.339575799999977],[123.19370420000007,-5.332140099999947],[123.19699220000007,-5.319546099999968],[123.1990029000001,-5.319021499999963],[123.203495,-5.311653099999944],[123.20848310000008,-5.308479],[123.21090370000002,-5.308579899999927],[123.21688760000006,-5.302893299999937],[123.224475,-5.279401499999949],[123.22393870000008,-5.276160699999934],[123.21813290000011,-5.271821699999975],[123.20763310000007,-5.273531199999979],[123.196179,-5.271405499999958],[123.19908220000002,-5.265908599999932],[123.1970553000001,-5.260266599999966],[123.18677070000001,-5.257964799999968],[123.18486880000012,-5.254247899999939],[123.18518210000002,-5.249668099999951],[123.18103740000004,-5.246796699999948],[123.17581050000001,-5.246104499999944],[123.162216,-5.248293599999954],[123.15993070000002,-5.249884899999927],[123.15672470000004,-5.247109399999943],[123.1520445000001,-5.248344],[123.14723770000012,-5.240635499999939],[123.14058530000011,-5.237907599999971],[123.14148480000006,-5.236415],[123.14026390000004,-5.232432899999935],[123.13729160000003,-5.230220599999939],[123.1377357,-5.226582],[123.13241640000001,-5.223291],[123.12500390000002,-5.213235599999962],[123.11476950000008,-5.2055931],[123.11253030000012,-5.206162899999981],[123.10966810000002,-5.204051799999945],[123.10288360000004,-5.213482499999941],[123.09185450000007,-5.216732799999932],[123.09227580000004,-5.213655],[123.1010394000001,-5.210229],[123.10572980000006,-5.201662099999965],[123.10692580000011,-5.194344],[123.10461850000002,-5.188523799999928],[123.10012820000009,-5.186643699999934],[123.0997049,-5.184251499999959],[123.09461710000005,-5.183796699999959],[123.0876766,-5.175311799999974],[123.08248380000009,-5.172983599999952],[123.07621690000008,-5.177214499999934],[123.07468,-5.181919199999925],[123.06938950000006,-5.185934],[123.06858130000012,-5.191047799999978],[123.05919630000005,-5.192095599999959],[123.05892,-5.182950099999971],[123.0642865000001,-5.177843899999971],[123.0664005000001,-5.178530499999965],[123.06824670000003,-5.176612899999952],[123.0659118000001,-5.175117399999976],[123.06666990000008,-5.169206799999927],[123.06921310000007,-5.166203099999962],[123.0680618,-5.161217499999964],[123.06074160000003,-5.1532983],[123.05061870000009,-5.150571399999933],[123.04641330000004,-5.144504499999925],[123.0434672,-5.143795299999965],[123.03993950000006,-5.139065899999935],[123.03356510000003,-5.135812699999974],[123.02215080000008,-5.138041],[123.02021140000011,-5.140359199999978],[123.00814810000008,-5.145879899999954],[123.00290860000007,-5.149859499999934],[123.00212440000007,-5.152136799999937],[122.99865240000008,-5.154610299999945],[122.99781680000001,-5.158373799999936],[122.9825363000001,-5.175353799999925],[122.98333780000007,-5.179293899999948],[122.97894730000007,-5.179404],[122.9702833,-5.189457299999958],[122.97071710000012,-5.192548299999942],[122.9678689000001,-5.194014699999968],[122.96944530000007,-5.198743399999955],[122.96739490000004,-5.199657099999968],[122.9649978000001,-5.198764],[122.96243460000005,-5.200235099999929],[122.96061570000006,-5.202174599999978],[122.96034940000004,-5.205146399999933],[122.95972140000003,-5.202947499999937],[122.9600842000001,-5.205805799999951],[122.96327280000003,-5.208452799999975],[122.96315340000001,-5.2101607],[122.96190930000012,-5.210900099999947],[122.960455,-5.208203799999978],[122.95657790000007,-5.207722899999965],[122.95626840000011,-5.216330699999958],[122.95191350000005,-5.218097199999931],[122.94454210000004,-5.216282299999932],[122.94393710000008,-5.212925399999961],[122.93679170000007,-5.209266099999979],[122.93425520000005,-5.205754699999943],[122.93422830000009,-5.198856599999942],[122.93139370000006,-5.188867199999947],[122.92433410000001,-5.181438299999968],[122.9225963,-5.1828116],[122.92008750000002,-5.182313599999929],[122.91983980000009,-5.177983899999958],[122.92079710000007,-5.174824699999931],[122.92962380000006,-5.171626499999945],[122.94036740000001,-5.163798199999974],[122.949025,-5.147654699999975],[122.95437640000011,-5.140645099999972]]]]},"properties":{"shapeName":"Buton","shapeISO":"","shapeID":"22746128B64305486976377","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[122.69036030000007,-6.183124199999952],[122.6902176000001,-6.180340299999955],[122.6877905,-6.178127399999937],[122.67036810000002,-6.183971299999939],[122.66815520000011,-6.183471599999962],[122.66679890000012,-6.184970699999951],[122.6729855000001,-6.188420899999926],[122.67286650000005,-6.189753399999972],[122.67722090000007,-6.193370199999947],[122.68036180000001,-6.201079599999957],[122.688458,-6.207403099999965],[122.69146200000012,-6.209098399999959],[122.69321690000004,-6.208414299999959],[122.69604360000005,-6.211956799999939],[122.70002810000005,-6.210139399999946],[122.7106702000001,-6.213087],[122.71733270000004,-6.212682499999971],[122.720496,-6.211529499999926],[122.71991750000007,-6.208150799999942],[122.72618030000001,-6.205276399999946],[122.72621830000003,-6.203677399999947],[122.71513960000004,-6.2050861],[122.71391850000009,-6.203377299999943],[122.69773780000003,-6.198331399999972],[122.69238410000003,-6.1930371],[122.69036030000007,-6.183124199999952]]],[[[122.51068080000005,-5.624017699999968],[122.50808780000011,-5.624100299999952],[122.50687080000012,-5.627672599999926],[122.50325930000008,-5.630616799999927],[122.50600720000011,-5.636897799999929],[122.50553610000009,-5.646790399999929],[122.50223860000006,-5.649499099999957],[122.49493690000008,-5.650912299999959],[122.49462290000008,-5.655073499999958],[122.49140380000006,-5.6591954],[122.49116830000003,-5.661668599999928],[122.48378810000008,-5.671325599999932],[122.47585830000003,-5.673563199999933],[122.46969510000008,-5.680393799999933],[122.46376740000005,-5.679726499999958],[122.45783970000002,-5.6842017],[122.456348,-5.686635599999931],[122.45740790000002,-5.692916599999933],[122.46596580000005,-5.692563299999961],[122.47244300000011,-5.690090099999964],[122.47727160000011,-5.690522],[122.48924480000005,-5.698805],[122.5047207,-5.698457],[122.51955060000012,-5.693898],[122.52667840000004,-5.695083199999942],[122.53560650000009,-5.6931129],[122.53819740000006,-5.689933099999962],[122.54290810000009,-5.687577699999963],[122.54816850000009,-5.6811397],[122.554371,-5.671129299999961],[122.55688340000006,-5.652953699999955],[122.55452800000012,-5.645534199999929],[122.54651970000009,-5.632972199999926],[122.54498870000009,-5.627672599999926],[122.54353620000006,-5.627044499999954],[122.53607750000003,-5.630420499999957],[122.53276040000003,-5.630525199999965],[122.52161160000003,-5.628274499999975],[122.51690080000003,-5.624715299999934],[122.51068080000005,-5.624017699999968]]],[[[122.5127146000001,-5.589582199999938],[122.50207360000002,-5.595278199999939],[122.50012220000008,-5.599340099999949],[122.50599650000004,-5.599689199999943],[122.51202390000003,-5.597102399999926],[122.51465070000006,-5.592146],[122.5127146000001,-5.589582199999938]]],[[[122.52464160000011,-5.500624799999969],[122.51863540000011,-5.500193],[122.5000672000001,-5.508397599999967],[122.48361880000004,-5.513618599999973],[122.4776518000001,-5.522372799999971],[122.47497040000007,-5.530413599999974],[122.47125690000007,-5.530489299999942],[122.46999180000012,-5.539582799999948],[122.47277980000001,-5.547793299999967],[122.48084210000002,-5.553704899999957],[122.48716620000005,-5.561853099999951],[122.5035610000001,-5.562963799999977],[122.50838950000002,-5.558410099999946],[122.5087036000001,-5.549302599999976],[122.511687,-5.540352199999973],[122.5096850000001,-5.536387299999944],[122.51184410000008,-5.531912099999943],[122.5106664000001,-5.525317],[122.5166726000001,-5.519585599999971],[122.52048050000008,-5.506984299999942],[122.52464160000011,-5.500624799999969]]],[[[122.73887450000007,-5.491089899999963],[122.73406720000003,-5.493617599999936],[122.72587180000005,-5.495178499999952],[122.69312460000003,-5.494186],[122.66941180000003,-5.496471099999951],[122.66243970000005,-5.505669799999964],[122.66215870000008,-5.509024],[122.65957230000004,-5.506435899999929],[122.6472533000001,-5.511068699999953],[122.64664010000001,-5.509737899999948],[122.6455032,-5.5114291],[122.643052,-5.510001099999954],[122.6427781000001,-5.512450199999932],[122.64126610000005,-5.512618499999974],[122.6422401000001,-5.5137572],[122.639524,-5.5124944],[122.63832550000006,-5.514554699999962],[122.63726660000009,-5.5142541],[122.6376977000001,-5.512139499999932],[122.63537520000011,-5.513641599999971],[122.63146230000007,-5.511693499999978],[122.63174,-5.509409699999935],[122.62467930000003,-5.509343799999954],[122.622652,-5.511326599999961],[122.62279010000009,-5.505278299999929],[122.62156030000006,-5.505313499999943],[122.6187149000001,-5.509576],[122.6151589000001,-5.511835299999973],[122.61032310000007,-5.520263299999954],[122.60504720000006,-5.52519],[122.57359620000011,-5.538179199999945],[122.57541640000011,-5.543457899999964],[122.57770040000003,-5.545497799999964],[122.579375,-5.568703099999937],[122.58106160000011,-5.573826599999961],[122.58475310000006,-5.57825],[122.58802710000009,-5.579538699999944],[122.58726710000008,-5.581368599999962],[122.59085030000006,-5.586624499999971],[122.59484060000011,-5.603004],[122.60245310000005,-5.619728799999962],[122.61278090000008,-5.633105299999954],[122.61370320000003,-5.638283799999954],[122.61270210000009,-5.643094699999949],[122.61485450000009,-5.647094599999946],[122.61392560000002,-5.651885399999969],[122.6106076000001,-5.653119699999934],[122.61009220000005,-5.654823199999953],[122.62532790000012,-5.675077199999976],[122.62602010000012,-5.678400699999941],[122.62486180000008,-5.680100099999947],[122.62817570000004,-5.685512],[122.63457390000008,-5.693553299999962],[122.6435676000001,-5.698507699999936],[122.64915170000006,-5.699281099999951],[122.655325,-5.697121],[122.66273350000006,-5.693493199999978],[122.67083890000004,-5.685306],[122.6914561000001,-5.650386099999935],[122.69609030000004,-5.639646399999947],[122.70149420000007,-5.632075599999951],[122.70650990000001,-5.628986899999973],[122.70728410000004,-5.623500299999932],[122.71199170000011,-5.619406699999956],[122.720219,-5.621425899999963],[122.7227319000001,-5.628788199999974],[122.71222340000008,-5.659444699999938],[122.7099965000001,-5.674759599999959],[122.713205,-5.681594599999926],[122.72096570000008,-5.686378699999977],[122.72545710000009,-5.691903499999967],[122.72815850000006,-5.689431799999966],[122.7284687,-5.685877],[122.72623360000011,-5.681316299999935],[122.726923,-5.674384199999963],[122.7301728000001,-5.671348799999976],[122.73272620000012,-5.671369199999958],[122.73455740000009,-5.664678],[122.7393082000001,-5.659586799999943],[122.74021060000007,-5.651955599999951],[122.745173,-5.640374599999973],[122.74905840000008,-5.638909399999932],[122.75375970000005,-5.639668899999947],[122.75891780000006,-5.643875499999979],[122.75715620000005,-5.655871099999956],[122.76415780000002,-5.660023899999942],[122.76584850000006,-5.666373799999974],[122.761402,-5.672452899999939],[122.75950420000004,-5.6826616],[122.75447980000001,-5.688703399999952],[122.75393240000005,-5.694113],[122.76539950000006,-5.700720899999965],[122.7729058000001,-5.702608399999974],[122.78462130000003,-5.702477499999929],[122.80266490000008,-5.695774399999948],[122.80614590000005,-5.689112299999977],[122.80670410000005,-5.682186399999978],[122.81066610000005,-5.6715396],[122.81924350000008,-5.655909399999928],[122.83361350000007,-5.639152099999933],[122.82140040000002,-5.624727],[122.81230330000005,-5.588222599999938],[122.80686190000006,-5.531925499999943],[122.73887450000007,-5.491089899999963]]]]},"properties":{"shapeName":"Buton Selatan","shapeISO":"","shapeID":"22746128B70419726166155","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[121.9390184,-5.4939225],[121.93979500000012,-5.492974899999979],[121.93867610000007,-5.492714],[121.9390184,-5.4939225]]],[[[122.05288860000007,-5.491265099999964],[122.04670190000002,-5.490617099999952],[122.03577370000005,-5.500334699999939],[122.03072370000007,-5.501381699999968],[122.0255466000001,-5.505232399999954],[122.01742120000006,-5.507047599999964],[122.01274070000011,-5.513206099999934],[121.99297160000003,-5.522690299999965],[122.00127850000001,-5.523130499999979],[122.0093409000001,-5.521752],[122.01494660000003,-5.519047],[122.0288471,-5.518770399999937],[122.03954410000006,-5.510148199999946],[122.05188350000003,-5.5036576],[122.05797180000002,-5.498746799999935],[122.0631691000001,-5.491651099999956],[122.0611163000001,-5.490912099999946],[122.0573611000001,-5.492644899999959],[122.05288860000007,-5.491265099999964]]],[[[121.93998060000001,-5.485382699999946],[121.93610360000002,-5.486756299999968],[121.9407450000001,-5.491337299999941],[121.94143680000002,-5.489612899999941],[121.93998060000001,-5.485382699999946]]],[[[122.07599940000011,-5.473361699999941],[122.07371310000008,-5.473292399999934],[122.07312410000009,-5.476514099999974],[122.07542350000006,-5.482162899999935],[122.07063730000004,-5.487341799999967],[122.0778428000001,-5.487341799999967],[122.08029080000006,-5.489328],[122.08181280000008,-5.4932786],[122.08553180000001,-5.494074],[122.09197140000003,-5.485547099999962],[122.08992550000005,-5.479043],[122.08704430000012,-5.474063799999954],[122.07599940000011,-5.473361699999941]]],[[[121.94624810000005,-5.473632299999963],[121.94511970000008,-5.481866],[121.9465977000001,-5.483713499999965],[121.95066240000006,-5.484021499999926],[121.95158620000007,-5.485314799999969],[121.9505392000001,-5.489317799999981],[121.94721360000005,-5.492458699999929],[121.95663620000005,-5.495845899999949],[121.95799110000007,-5.495722799999953],[121.95792950000009,-5.493752],[121.95435750000001,-5.492150799999933],[121.95306420000009,-5.489564199999961],[121.95466550000003,-5.480572699999925],[121.96056460000011,-5.477441599999963],[121.96904360000008,-5.477368799999965],[121.97116830000004,-5.475812299999973],[121.97858990000009,-5.476633099999958],[121.9808680000001,-5.474796099999935],[121.9893224000001,-5.472811199999967],[121.99241540000003,-5.474565199999972],[121.99504810000008,-5.473456699999929],[121.99694190000002,-5.466851599999927],[122.00313130000006,-5.468930099999966],[122.00544360000004,-5.4674179],[122.00930130000006,-5.467630299999939],[122.01110060000008,-5.468677299999968],[122.01070630000004,-5.472163399999943],[122.01472480000007,-5.476320399999963],[122.02082180000002,-5.473964699999954],[122.02363930000001,-5.475119499999948],[122.03195340000002,-5.474703799999929],[122.04362620000006,-5.462139899999954],[122.04991920000009,-5.460728199999949],[122.04664720000005,-5.454654099999971],[122.04341060000002,-5.437916099999939],[122.04365690000009,-5.433543499999928],[122.04605880000008,-5.428370299999926],[122.04495020000002,-5.425229499999944],[122.04322580000007,-5.424736799999948],[122.0459972000001,-5.421965399999976],[122.04371850000007,-5.415745299999969],[122.04488870000012,-5.414390399999945],[122.04714760000002,-5.4156534],[122.04844770000011,-5.414381099999957],[122.04462710000007,-5.401308299999926],[122.00891910000007,-5.402088399999968],[122.00896410000007,-5.403069099999925],[121.97904370000003,-5.404749299999935],[121.95492950000005,-5.404708299999925],[121.95278730000007,-5.417454099999929],[121.95272010000008,-5.456358099999932],[121.95009080000011,-5.467469],[121.94624810000005,-5.473632299999963]]],[[[122.316453,-5.141980399999966],[122.31051490000004,-5.1441262],[122.30674620000002,-5.149240899999938],[122.30692570000008,-5.150900899999954],[122.31064950000007,-5.153189],[122.31168140000011,-5.156778199999962],[122.31017340000005,-5.165617899999972],[122.315094,-5.171469499999944],[122.31559620000007,-5.186597499999948],[122.30868010000006,-5.194703499999946],[122.30449270000008,-5.195541],[122.30313180000007,-5.201246199999957],[122.30569660000003,-5.204753099999948],[122.30614470000012,-5.211107099999936],[122.30466940000008,-5.214660299999935],[122.30567570000005,-5.217412199999956],[122.31464050000011,-5.226986799999963],[122.31520360000002,-5.237941699999965],[122.30824780000012,-5.249446299999931],[122.3071658,-5.256843599999968],[122.30345610000006,-5.260619599999927],[122.29190740000001,-5.2795215],[122.28892640000004,-5.282237599999974],[122.28733650000004,-5.281597199999965],[122.28490750000003,-5.286786399999926],[122.27493890000005,-5.2964325],[122.26836830000002,-5.31355],[122.2659149000001,-5.326691199999971],[122.2663457000001,-5.354878699999972],[122.26960440000005,-5.3634014],[122.266822,-5.369870099999957],[122.26714790000005,-5.377338499999951],[122.26941010000007,-5.384016499999973],[122.2789001000001,-5.394608699999935],[122.29142560000003,-5.394237399999952],[122.29995730000007,-5.396645099999944],[122.32622630000003,-5.396710599999949],[122.36505080000006,-5.388977099999977],[122.37140750000003,-5.382198],[122.375837,-5.379945],[122.3819449,-5.366840599999932],[122.3821527,-5.360194699999965],[122.37451420000002,-5.352341699999954],[122.37043790000007,-5.341742199999942],[122.37186450000002,-5.333972],[122.37683140000001,-5.325349899999935],[122.38423970000008,-5.320796799999925],[122.392088,-5.320702],[122.394887,-5.316044499999975],[122.39715030000002,-5.315916299999969],[122.39753380000002,-5.312892199999965],[122.39933670000005,-5.313175699999931],[122.402275,-5.316926899999942],[122.41209360000005,-5.314923699999952],[122.42442870000002,-5.314519399999938],[122.42991060000008,-5.312693099999933],[122.42841410000005,-5.314441299999942],[122.43061190000003,-5.315063499999951],[122.43443900000011,-5.312229],[122.43563960000006,-5.313857199999973],[122.44122420000008,-5.313242199999934],[122.44037920000005,-5.3143813],[122.44184810000002,-5.314890599999956],[122.44927830000006,-5.313440799999967],[122.4473905000001,-5.315753899999947],[122.43528910000009,-5.316142899999932],[122.4340132000001,-5.317231399999969],[122.43516160000001,-5.318445199999928],[122.42517180000004,-5.319709899999964],[122.41832020000004,-5.322638299999937],[122.4060895,-5.323641399999929],[122.39006390000009,-5.327317699999981],[122.38548220000007,-5.326978099999963],[122.3836318000001,-5.332219599999974],[122.38231180000002,-5.332509399999935],[122.38366890000009,-5.340048099999933],[122.39072190000002,-5.352867099999969],[122.39489320000007,-5.372600199999965],[122.39792290000003,-5.377016899999944],[122.39677,-5.382588099999964],[122.40634820000002,-5.397661899999946],[122.41302840000003,-5.401945499999954],[122.417025,-5.402484],[122.42546760000005,-5.400637899999936],[122.4313747000001,-5.403964799999926],[122.431279,-5.402141599999936],[122.43585730000007,-5.402801899999929],[122.43572890000007,-5.401066599999979],[122.44642020000003,-5.406532],[122.45340090000002,-5.402503599999932],[122.46484210000006,-5.402882299999931],[122.46585590000007,-5.399858299999948],[122.46993580000003,-5.398128699999972],[122.46848890000001,-5.394177699999943],[122.4723001000001,-5.390220299999953],[122.47384940000006,-5.385954499999968],[122.47147430000007,-5.3729924],[122.46925280000005,-5.369163399999934],[122.46984730000008,-5.365849],[122.4692731,-5.365085],[122.46907010000007,-5.369192299999952],[122.46704430000011,-5.366105399999981],[122.4681379000001,-5.361275699999965],[122.47023080000008,-5.360855199999946],[122.47396460000004,-5.3667846],[122.47801990000005,-5.366242099999965],[122.482183,-5.373788699999977],[122.48377080000012,-5.373681599999941],[122.4831713000001,-5.371418099999971],[122.487553,-5.367064699999958],[122.48607190000007,-5.362264799999934],[122.49167060000002,-5.351738699999942],[122.49738150000007,-5.347842699999944],[122.49817320000011,-5.345833],[122.49543850000009,-5.343761699999959],[122.4983046000001,-5.339149899999938],[122.49646070000006,-5.338253699999939],[122.49704880000002,-5.335348199999942],[122.49417130000006,-5.333023099999934],[122.494138,-5.330129299999953],[122.4849478000001,-5.323028],[122.48029250000002,-5.316314199999965],[122.47864960000004,-5.307441],[122.48034860000007,-5.30504],[122.478917,-5.301720199999977],[122.4796086,-5.2999268],[122.50058020000006,-5.289612199999965],[122.511042,-5.287797599999976],[122.51166120000005,-5.284009399999945],[122.51878880000004,-5.2794918],[122.52318620000005,-5.278667699999971],[122.5257514000001,-5.275417299999958],[122.52377550000006,-5.275757],[122.52330970000003,-5.273734499999932],[122.52745370000002,-5.268010199999935],[122.53315710000004,-5.264799699999969],[122.53434770000001,-5.262344399999961],[122.53985910000006,-5.260618499999964],[122.54034210000009,-5.262835199999927],[122.54230910000001,-5.263014],[122.54088290000004,-5.265460899999937],[122.54145950000009,-5.267348399999946],[122.53843010000003,-5.269498499999941],[122.53718130000004,-5.2738759],[122.53517130000012,-5.273497099999929],[122.53054810000003,-5.277709799999968],[122.5299721,-5.2797963],[122.53156320000005,-5.283022799999969],[122.52846160000001,-5.285611699999947],[122.523889,-5.294943899999964],[122.52491810000004,-5.300933699999973],[122.52040140000008,-5.311322],[122.5218953000001,-5.312977499999931],[122.52117720000001,-5.316704299999969],[122.52422560000002,-5.3161863],[122.538488,-5.324680199999932],[122.53954230000011,-5.331637299999954],[122.53739990000008,-5.340033399999925],[122.53443130000005,-5.344266499999947],[122.53078710000011,-5.364609],[122.52643770000009,-5.374006799999961],[122.52449380000007,-5.385014099999978],[122.5246039000001,-5.396852099999933],[122.52155770000002,-5.400487899999973],[122.51845760000003,-5.400301899999931],[122.51446080000005,-5.402703],[122.51252520000003,-5.406227299999955],[122.52046370000005,-5.420895299999927],[122.51866180000002,-5.426553099999978],[122.51973740000005,-5.436850099999958],[122.52756980000004,-5.440166699999963],[122.53234640000005,-5.439178],[122.53793230000008,-5.441111899999953],[122.54639710000004,-5.440330599999925],[122.54853860000003,-5.436293299999932],[122.55192870000008,-5.434513699999968],[122.5561143000001,-5.425003199999935],[122.556131,-5.421526],[122.55826750000006,-5.419856599999946],[122.55964210000002,-5.421012299999973],[122.56140360000006,-5.4161369],[122.56626870000002,-5.411153899999931],[122.5705597000001,-5.412044699999967],[122.57086970000012,-5.413650099999927],[122.57456160000004,-5.415202],[122.58344910000005,-5.424497599999938],[122.590315,-5.434722],[122.59483320000004,-5.434376799999939],[122.60004770000012,-5.4261848],[122.59750870000005,-5.426520599999947],[122.59516210000004,-5.4242713],[122.5937116,-5.415497499999958],[122.59712890000003,-5.4164163],[122.6011449,-5.407567399999948],[122.60342750000007,-5.407872099999963],[122.6023282000001,-5.402569],[122.59679280000012,-5.398187899999925],[122.5934727,-5.3917317],[122.5925284000001,-5.372627199999954],[122.59450490000006,-5.364607499999977],[122.599526,-5.357034699999929],[122.6105040000001,-5.351675899999975],[122.61681510000005,-5.345611599999927],[122.61849470000004,-5.346273599999961],[122.61834050000004,-5.347666599999968],[122.62471860000005,-5.345561099999941],[122.61867060000009,-5.354009399999939],[122.61647330000005,-5.368297699999971],[122.61816080000006,-5.371355599999958],[122.62045540000008,-5.371361099999945],[122.62126890000002,-5.369217499999934],[122.63089610000009,-5.360758199999964],[122.63949180000009,-5.356809399999975],[122.64098350000006,-5.353803],[122.64092090000008,-5.344499599999949],[122.64357480000001,-5.333850599999948],[122.6420452000001,-5.30812],[122.64487110000005,-5.302593699999932],[122.64639770000008,-5.290985899999953],[122.64488070000004,-5.279102899999941],[122.63977360000001,-5.264742199999944],[122.62366840000004,-5.250415199999964],[122.61679140000001,-5.249201599999935],[122.61510590000012,-5.25055],[122.612409,-5.249403899999947],[122.6013435000001,-5.249977],[122.58758960000011,-5.25382],[122.58458760000008,-5.256055799999956],[122.57936260000008,-5.254362199999946],[122.5773147000001,-5.247497899999928],[122.58501330000001,-5.240671499999962],[122.59356180000009,-5.229314299999942],[122.61728430000005,-5.217671799999948],[122.62307190000001,-5.210706499999958],[122.6263133000001,-5.203832699999964],[122.61703870000008,-5.209510299999977],[122.61435520000009,-5.210039199999926],[122.61115710000001,-5.208328399999971],[122.60769190000008,-5.212938399999928],[122.59824030000004,-5.212762099999964],[122.56192080000005,-5.2169733],[122.52413450000006,-5.193361099999947],[122.52115330000004,-5.193723499999976],[122.52082260000009,-5.192128499999967],[122.51612360000001,-5.194046699999944],[122.51562300000012,-5.201076499999942],[122.51016430000004,-5.209886199999971],[122.51329670000007,-5.216125799999929],[122.50454940000009,-5.2249513],[122.48699680000004,-5.2250079],[122.468158,-5.227357499999925],[122.441142,-5.227234899999928],[122.40429250000011,-5.209950699999979],[122.3792218000001,-5.194271399999934],[122.376388,-5.192302499999926],[122.376597,-5.186992699999962],[122.3725591000001,-5.182719299999974],[122.36912690000008,-5.182921199999953],[122.36828570000011,-5.1864543],[122.36633410000002,-5.185983199999953],[122.368454,-5.180027299999949],[122.361455,-5.178883299999939],[122.3591669000001,-5.176628799999946],[122.36428950000004,-5.173274299999946],[122.35835930000007,-5.169259699999941],[122.358191,-5.163505699999973],[122.35600390000002,-5.1620252],[122.35694600000011,-5.158660299999951],[122.35472520000008,-5.1571124],[122.35573470000008,-5.155093499999964],[122.35422050000011,-5.1514258],[122.35169680000001,-5.152300599999933],[122.34873570000002,-5.149305899999945],[122.34641390000002,-5.151358499999958],[122.34476510000002,-5.1497097],[122.34614470000008,-5.148969399999942],[122.34607770000002,-5.146631],[122.343722,-5.147354199999938],[122.34284710000009,-5.145739099999957],[122.3362519000001,-5.147455199999968],[122.32672930000001,-5.1457054],[122.3215474000001,-5.146714899999949],[122.32010800000012,-5.144986299999971],[122.31912970000008,-5.146249499999954],[122.31672750000007,-5.145425799999941],[122.316453,-5.141980399999966]]]]},"properties":{"shapeName":"Buton Tengah","shapeISO":"","shapeID":"22746128B74533286605506","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[123.05210140000008,-4.826484899999969],[123.05271360000006,-4.824446399999943],[123.05130880000002,-4.823670899999968],[123.05060650000007,-4.825204299999939],[123.05210140000008,-4.826484899999969]]],[[[123.0515544000001,-4.811673299999939],[123.055811,-4.807177899999942],[123.05621770000005,-4.8048682],[123.05124750000004,-4.802213299999949],[123.04894180000008,-4.804087],[123.048672,-4.8092111],[123.0515544000001,-4.811673299999939]]],[[[123.084719,-4.796744799999942],[123.08480230000009,-4.7955317],[123.08053560000008,-4.793979599999943],[123.0785062000001,-4.796565399999963],[123.07623020000005,-4.796795799999927],[123.0747874000001,-4.803693],[123.07647880000002,-4.803671799999961],[123.07352960000003,-4.808631799999944],[123.0743437000001,-4.805891599999939],[123.07018870000002,-4.804520299999979],[123.067925,-4.800569199999927],[123.05987550000009,-4.805181399999981],[123.05163290000007,-4.813243499999942],[123.04751920000001,-4.812553699999967],[123.04472120000003,-4.814478299999962],[123.04357220000009,-4.817546599999957],[123.04430320000006,-4.8188015],[123.045911,-4.817420799999979],[123.04783210000005,-4.818361899999957],[123.04605730000003,-4.820098099999939],[123.04722680000009,-4.821959599999957],[123.0526483000001,-4.819442599999945],[123.0549453000001,-4.8197561],[123.06052610000006,-4.812173399999949],[123.0571192000001,-4.823850199999981],[123.05782880000004,-4.826647799999932],[123.05605390000005,-4.827170899999942],[123.05686860000003,-4.830684699999949],[123.05454070000008,-4.827166699999964],[123.05044790000011,-4.828254799999968],[123.04730830000005,-4.825675199999978],[123.0387555000001,-4.8232877],[123.03411770000002,-4.8264],[123.03441040000007,-4.833439699999929],[123.04018740000004,-4.833419699999979],[123.05196110000009,-4.840766599999938],[123.05403480000007,-4.8471789],[123.05852470000002,-4.8480987],[123.06169810000006,-4.842102799999964],[123.06521510000005,-4.8417765],[123.07450160000008,-4.845695299999932],[123.07792330000007,-4.851674799999955],[123.07933490000005,-4.851146699999958],[123.08012030000009,-4.847031499999957],[123.07798630000002,-4.845581699999968],[123.0794194,-4.845370499999945],[123.08316060000004,-4.847488899999973],[123.08445070000005,-4.8534837],[123.08886540000003,-4.853810499999952],[123.09354510000003,-4.852674699999966],[123.09679140000003,-4.849492299999952],[123.09471220000012,-4.847550899999931],[123.095408,-4.845070199999952],[123.09074470000007,-4.838538099999937],[123.09514600000011,-4.829333799999972],[123.0936683000001,-4.834591499999931],[123.094861,-4.836060399999951],[123.0985396000001,-4.8334617],[123.0996781,-4.838977799999952],[123.10163210000007,-4.839735099999928],[123.10507230000007,-4.838292799999977],[123.0983232000001,-4.844023499999935],[123.09902250000005,-4.845822],[123.09751390000008,-4.847989899999959],[123.09917270000005,-4.849486099999979],[123.10506,-4.849733399999934],[123.10885330000008,-4.847145299999966],[123.11269140000002,-4.847350499999948],[123.118056,-4.8283079],[123.11740110000005,-4.797601399999962],[123.10721070000011,-4.798887099999945],[123.10617950000005,-4.798450499999944],[123.10675780000008,-4.796975699999962],[123.104231,-4.795763],[123.10046020000004,-4.798379499999953],[123.09389750000003,-4.795347099999958],[123.09205750000001,-4.797915599999953],[123.09301770000002,-4.795593699999927],[123.09097130000009,-4.794945699999971],[123.08791280000003,-4.798152199999947],[123.08695200000011,-4.795977],[123.08513530000005,-4.795559],[123.08450930000004,-4.798926599999959],[123.08166950000009,-4.799721899999952],[123.084719,-4.796744799999942]]],[[[123.11555720000001,-4.788354099999935],[123.1149812000001,-4.785412699999938],[123.11362210000004,-4.785556199999974],[123.113085,-4.788370099999952],[123.11100410000006,-4.786737899999935],[123.11037440000007,-4.788903],[123.10864030000005,-4.787652799999933],[123.101392,-4.792771699999946],[123.10290950000001,-4.794366199999956],[123.11228190000008,-4.796329799999967],[123.11847530000011,-4.791749399999958],[123.11555720000001,-4.788354099999935]]],[[[123.16713940000011,-4.785310399999958],[123.16481650000003,-4.787566499999969],[123.16560560000005,-4.790085],[123.16713940000011,-4.785310399999958]]],[[[123.05068660000006,-4.783495899999934],[123.05214070000011,-4.780403],[123.0493891000001,-4.7771964],[123.04833760000008,-4.778675499999963],[123.05068660000006,-4.783495899999934]]],[[[123.07186480000007,-4.770618099999979],[123.06969550000008,-4.775634299999979],[123.072053,-4.774442699999952],[123.07428550000009,-4.775675499999977],[123.07463990000008,-4.772791299999938],[123.07186480000007,-4.770618099999979]]],[[[123.03994220000004,-4.770510699999932],[123.0387975000001,-4.769898099999978],[123.03682990000004,-4.771384499999954],[123.0393563,-4.777396199999941],[123.04533,-4.778094099999976],[123.04534110000009,-4.774230199999977],[123.04098740000006,-4.773721299999977],[123.03994220000004,-4.770510699999932]]],[[[123.03723020000007,-4.770146299999965],[123.0375649,-4.768631699999958],[123.036284,-4.768608099999938],[123.03723020000007,-4.770146299999965]]],[[[123.11975380000001,-4.772699299999942],[123.11525730000005,-4.7683599],[123.11362310000004,-4.768697199999963],[123.11136370000008,-4.776699599999972],[123.11297460000003,-4.781201099999976],[123.11707220000005,-4.782741899999962],[123.12488780000001,-4.775502699999947],[123.125248,-4.773793299999966],[123.11975380000001,-4.772699299999942]]],[[[123.11140000000012,-4.765604099999962],[123.11097530000006,-4.764146499999981],[123.11038890000009,-4.765617499999962],[123.10937820000004,-4.765091299999938],[123.11127890000012,-4.769565399999976],[123.11140000000012,-4.765604099999962]]],[[[123.14571950000004,-4.772706599999935],[123.13864440000009,-4.769196099999931],[123.13988470000004,-4.762143099999946],[123.1375680000001,-4.760632699999974],[123.13552950000008,-4.768685499999947],[123.13608120000004,-4.773273],[123.14846450000005,-4.776756099999943],[123.15497220000009,-4.775299099999927],[123.15696390000005,-4.773415799999952],[123.15526260000001,-4.772156299999949],[123.14899930000001,-4.773736199999973],[123.14571950000004,-4.772706599999935]]],[[[123.04707110000004,-4.774166799999932],[123.04452490000006,-4.766892299999938],[123.03714260000004,-4.759472599999981],[123.0361802000001,-4.7626251],[123.03782170000011,-4.763340099999937],[123.03777610000009,-4.767821699999956],[123.04200770000011,-4.772168299999976],[123.04707110000004,-4.774166799999932]]],[[[123.03746990000002,-4.766898499999968],[123.03732360000004,-4.763721499999974],[123.0356521000001,-4.762397399999941],[123.03697220000004,-4.759262699999965],[123.0327410000001,-4.754192799999942],[123.02989650000006,-4.7666682],[123.03175360000012,-4.769522499999937],[123.03375530000005,-4.769895499999961],[123.03387920000011,-4.768096499999956],[123.03553010000007,-4.767146],[123.03693340000007,-4.768221799999935],[123.03746990000002,-4.766898499999968]]],[[[123.11448120000011,-4.742589],[123.11309690000007,-4.741580799999952],[123.11000290000004,-4.742703399999925],[123.1099819000001,-4.749745299999972],[123.11303260000011,-4.750714099999925],[123.114445,-4.756101399999977],[123.11791650000009,-4.757154399999934],[123.11699120000003,-4.759704499999941],[123.119225,-4.764399099999935],[123.12227580000001,-4.765346799999975],[123.12562060000005,-4.763639099999978],[123.12669310000001,-4.760751699999958],[123.12498920000007,-4.758697899999959],[123.12217,-4.758782799999949],[123.122422,-4.756085199999973],[123.1204222,-4.754827899999952],[123.12116160000005,-4.749324099999967],[123.11548840000012,-4.745891599999936],[123.11448120000011,-4.742589]]],[[[123.12783740000009,-4.7281497],[123.1263848000001,-4.724847],[123.12493180000001,-4.726871399999936],[123.12713540000004,-4.733665899999949],[123.1254100000001,-4.733478],[123.12470990000008,-4.734795899999938],[123.12569910000002,-4.737186299999962],[123.12855230000002,-4.738537699999938],[123.1229320000001,-4.738829899999928],[123.12188920000006,-4.740859499999942],[123.12890840000011,-4.746378499999935],[123.13278620000006,-4.745522],[123.13374320000003,-4.747472699999946],[123.13480210000012,-4.746257399999934],[123.13369140000009,-4.741336699999977],[123.13479840000002,-4.735359099999926],[123.13021730000003,-4.731325599999934],[123.13218150000012,-4.729579599999965],[123.1295626000001,-4.7271225],[123.12783740000009,-4.7281497]]],[[[123.19430360000001,-4.675944699999945],[123.19568640000011,-4.673878799999954],[123.1950352,-4.6726554],[123.19308260000003,-4.673552199999961],[123.19430360000001,-4.675944699999945]]],[[[123.19208450000008,-4.664599799999962],[123.19201260000011,-4.667178],[123.19413060000011,-4.665580599999942],[123.19208450000008,-4.664599799999962]]],[[[123.187657,-4.668393799999933],[123.185561,-4.662105199999928],[123.18382640000004,-4.668384299999957],[123.17906810000011,-4.668702599999961],[123.17802690000008,-4.672732399999973],[123.17935620000003,-4.674391],[123.1831807000001,-4.675343099999964],[123.187657,-4.668393799999933]]],[[[123.197854,-4.648479799999961],[123.20135770000002,-4.641640099999961],[123.20039910000003,-4.637424099999976],[123.19823420000012,-4.635511099999974],[123.1964521000001,-4.637138299999947],[123.1961013,-4.641335699999956],[123.19702510000002,-4.643919],[123.19603920000009,-4.647013099999981],[123.197854,-4.648479799999961]]],[[[122.95437640000011,-5.140645099999972],[122.96510210000008,-5.131957599999964],[122.96607520000009,-5.124283699999978],[122.97327360000008,-5.115523399999972],[122.97196770000005,-5.113726],[122.97097030000009,-5.095977299999959],[122.96844990000011,-5.089976699999966],[122.9719434000001,-5.086872],[122.9751384000001,-5.071137399999941],[122.97934110000006,-5.059032399999978],[122.97770130000004,-5.056351699999936],[122.97812680000004,-5.053824299999974],[122.97204110000007,-5.0463055],[122.9691491000001,-5.027184699999964],[122.9648807000001,-5.025679499999967],[122.955355,-5.028718499999968],[122.95280040000011,-5.025452799999925],[122.95183960000008,-5.019125899999949],[122.95663320000006,-5.016720599999928],[122.95528750000005,-5.001956399999926],[122.95952420000003,-4.989286899999968],[122.96351290000007,-4.966406099999972],[122.96474460000002,-4.966194],[122.96938550000004,-4.952044099999966],[122.97070350000001,-4.950096899999949],[122.9800282000001,-4.949634799999956],[122.98389810000003,-4.943705399999942],[122.98915540000007,-4.9442504],[122.98767120000002,-4.938903099999948],[122.98901,-4.938611699999967],[122.99073770000007,-4.941299399999934],[122.99334610000005,-4.941330199999925],[122.99960040000008,-4.938967799999944],[123.0016419000001,-4.936165599999981],[123.00150510000003,-4.927036399999963],[123.00385380000012,-4.924137299999927],[123.00448340000003,-4.9183139],[123.00925530000006,-4.904134699999929],[123.00765,-4.888289199999974],[123.0059903,-4.885296499999981],[123.007039,-4.881992399999945],[123.00568080000005,-4.871778199999937],[123.00457670000003,-4.8663614],[123.00217120000002,-4.862662099999966],[123.0034008,-4.861985599999969],[123.00353030000008,-4.853679799999952],[122.99983110000005,-4.842041499999937],[122.9969228000001,-4.8408894],[122.99498460000007,-4.836980199999971],[122.993984,-4.826139],[122.99867310000002,-4.824346199999979],[123.00226180000004,-4.826999499999943],[123.00560750000011,-4.824101699999972],[123.0065806,-4.825859199999968],[123.00802370000008,-4.825497699999971],[123.00830070000006,-4.823700899999949],[123.0054096,-4.819912],[123.00794040000005,-4.815652499999942],[123.01832460000003,-4.811691799999949],[123.02034160000005,-4.809016499999927],[123.02258940000002,-4.810425099999975],[123.02472480000006,-4.807629499999962],[123.02656390000004,-4.808756399999936],[123.03561810000008,-4.805777299999932],[123.03674210000008,-4.804190799999958],[123.03564370000004,-4.803525],[123.0381215000001,-4.801503899999943],[123.03985850000004,-4.801760499999943],[123.03891350000004,-4.796959699999945],[123.03661140000008,-4.795515299999977],[123.03750730000002,-4.791509099999928],[123.03239030000009,-4.773828299999934],[123.0265336000001,-4.770019499999933],[123.0235325000001,-4.765254199999958],[123.0241582000001,-4.763574299999959],[123.02804070000002,-4.763806199999976],[123.03062820000002,-4.749887599999965],[123.0326983000001,-4.745989599999973],[123.03593660000001,-4.745394599999941],[123.03645990000007,-4.750483299999928],[123.03902970000001,-4.755114599999956],[123.04664590000004,-4.759080499999925],[123.04713230000004,-4.7612001],[123.0504959000001,-4.763861],[123.05197940000005,-4.763657499999965],[123.05606160000002,-4.770200799999941],[123.05823070000008,-4.7682961],[123.057357,-4.765156899999965],[123.05972090000012,-4.761250199999949],[123.05803920000005,-4.758645699999931],[123.0622145000001,-4.7527124],[123.0651170000001,-4.752930499999934],[123.06925460000002,-4.755930599999942],[123.07101630000011,-4.754882399999929],[123.07582460000003,-4.756242199999974],[123.07789900000012,-4.751086099999952],[123.0771281000001,-4.750001499999939],[123.07887090000008,-4.748548099999937],[123.0787276000001,-4.743956399999945],[123.07928240000001,-4.748309199999937],[123.07866410000008,-4.749727099999973],[123.08186560000001,-4.754062599999941],[123.08375170000011,-4.759946499999955],[123.08207270000003,-4.761716399999955],[123.08125460000008,-4.766535499999975],[123.07614650000005,-4.773106199999972],[123.07835430000011,-4.774812299999951],[123.08520340000007,-4.775664499999948],[123.07939740000006,-4.775752399999931],[123.07462790000011,-4.783371599999953],[123.07445450000012,-4.786689199999955],[123.07719150000003,-4.791311399999927],[123.08105050000006,-4.790144199999929],[123.08269380000002,-4.792150099999958],[123.08617040000001,-4.791592399999956],[123.08686560000001,-4.789511399999981],[123.08542250000005,-4.787892399999976],[123.09292560000006,-4.794302099999925],[123.10021970000003,-4.794580499999938],[123.0995425000001,-4.791939499999955],[123.10321040000008,-4.791451299999949],[123.1055454000001,-4.788832199999945],[123.10411940000006,-4.787289399999963],[123.10597910000001,-4.785495599999933],[123.10469770000009,-4.783446399999946],[123.10784390000003,-4.782139899999947],[123.10691960000008,-4.778714299999933],[123.10834480000005,-4.777373299999965],[123.10794750000002,-4.773791399999936],[123.10959990000003,-4.770751099999927],[123.107469,-4.763209699999948],[123.1019917000001,-4.761616799999956],[123.10247270000002,-4.735073499999942],[123.1075479000001,-4.732602899999961],[123.1062141000001,-4.727414299999964],[123.10940060000007,-4.727517399999954],[123.11278860000004,-4.731877299999951],[123.11532370000009,-4.7266144],[123.11436060000005,-4.723089099999925],[123.1086193000001,-4.718196599999942],[123.10597180000002,-4.713539699999956],[123.10734190000005,-4.708518199999958],[123.109563,-4.708053899999925],[123.108267,-4.7060316],[123.10961770000006,-4.703081099999963],[123.10889410000004,-4.698598],[123.1050901000001,-4.694227],[123.1093105000001,-4.6988721],[123.11078670000006,-4.705808799999943],[123.11306660000002,-4.702452199999925],[123.11180420000005,-4.697053399999959],[123.1144418,-4.695966899999974],[123.1191841000001,-4.701470899999947],[123.12055,-4.706393399999968],[123.11827470000003,-4.705462499999953],[123.116664,-4.708116199999949],[123.12129440000001,-4.715927499999964],[123.1242899,-4.714558499999953],[123.12451670000007,-4.710624099999961],[123.12624190000008,-4.709768499999939],[123.12489610000011,-4.711270199999944],[123.12529570000004,-4.7152125],[123.12926260000006,-4.721749299999942],[123.13415420000001,-4.721197199999949],[123.13146150000011,-4.719316],[123.1319916000001,-4.7155907],[123.13246650000008,-4.719448899999975],[123.1354811000001,-4.719695399999978],[123.1393518000001,-4.722972299999981],[123.1417593000001,-4.720957099999964],[123.14039460000004,-4.723409199999935],[123.13783510000007,-4.7236188],[123.13789230000009,-4.725424399999952],[123.14225670000008,-4.726757299999974],[123.14292080000007,-4.728981],[123.14485470000011,-4.728904499999942],[123.1454232000001,-4.727478899999937],[123.148742,-4.728834599999971],[123.148989,-4.731077299999981],[123.1481543000001,-4.7291769],[123.1464482,-4.730507699999976],[123.14910310000005,-4.732464799999946],[123.14845910000008,-4.735410899999977],[123.14588020000008,-4.734708299999966],[123.1448567000001,-4.736552099999926],[123.15204580000011,-4.741367],[123.15261580000004,-4.745102899999949],[123.149747,-4.741185299999927],[123.14703550000002,-4.740900899999929],[123.13943140000003,-4.748095699999965],[123.14026640000009,-4.7514217],[123.138408,-4.750813899999969],[123.13249180000003,-4.7548144],[123.13338340000007,-4.757171099999937],[123.13715980000006,-4.755779299999972],[123.14364880000005,-4.7570368],[123.14448360000006,-4.759127399999954],[123.14711920000002,-4.759259899999961],[123.152166,-4.7592408],[123.1525448000001,-4.757663199999968],[123.15668170000004,-4.7614447],[123.16018970000005,-4.761424799999929],[123.1630934000001,-4.763766499999974],[123.16517930000009,-4.762675299999955],[123.16459170000007,-4.765134899999964],[123.16157650000002,-4.765933],[123.160515,-4.769792799999948],[123.16267690000006,-4.768937599999958],[123.16305780000005,-4.772388299999932],[123.16713520000008,-4.772065899999973],[123.16861460000007,-4.773264199999971],[123.17136720000008,-4.770919699999979],[123.17047510000009,-4.766641099999958],[123.17123420000007,-4.768923],[123.1761666000001,-4.770679799999925],[123.17497270000001,-4.775148199999933],[123.16984960000002,-4.778672899999947],[123.16863610000007,-4.781702699999926],[123.17030660000012,-4.790078199999925],[123.16915170000004,-4.7951647],[123.1714472000001,-4.798949299999947],[123.1724216,-4.834117099999958],[123.17363580000006,-4.836874599999931],[123.1836191000001,-4.850985799999933],[123.19123060000004,-4.8570996],[123.20081360000006,-4.861406099999954],[123.20478020000007,-4.866870899999981],[123.20857680000006,-4.866182699999968],[123.21168680000005,-4.863616099999945],[123.21367680000003,-4.850755399999969],[123.2128732000001,-4.832167799999979],[123.21406310000009,-4.826278799999955],[123.20924510000009,-4.821490599999947],[123.20778370000005,-4.817575799999929],[123.20556080000006,-4.7916911],[123.2021817000001,-4.776615099999958],[123.20765910000011,-4.752432599999963],[123.20702950000009,-4.735342499999945],[123.21024250000005,-4.7289018],[123.21026040000004,-4.725518699999952],[123.20823270000005,-4.729453599999943],[123.21222950000003,-4.71507],[123.20677010000009,-4.675246299999969],[123.20467930000007,-4.665402899999947],[123.20354140000006,-4.664927299999931],[123.2042805000001,-4.6626836],[123.20173960000011,-4.662512],[123.20077220000007,-4.660743399999944],[123.20211610000001,-4.658719899999937],[123.19853200000011,-4.656608499999948],[123.19807670000012,-4.659411099999943],[123.19487230000004,-4.660342199999945],[123.19910290000007,-4.670525199999929],[123.19895170000007,-4.673787499999946],[123.19732180000005,-4.677780499999926],[123.19449630000008,-4.676829199999929],[123.1938520000001,-4.6789075],[123.19476240000006,-4.680333799999971],[123.20100320000006,-4.680410799999947],[123.20079520000002,-4.689530199999979],[123.20204750000005,-4.692934199999968],[123.2005309000001,-4.694911499999932],[123.20060590000003,-4.691279599999973],[123.19808430000012,-4.692534099999932],[123.19478430000004,-4.691154299999937],[123.19692650000002,-4.688340399999959],[123.19910720000007,-4.688664099999926],[123.19817740000008,-4.685317199999929],[123.19475940000007,-4.687480299999947],[123.1918386000001,-4.683904799999937],[123.19149770000001,-4.686566899999946],[123.1892600000001,-4.685805899999934],[123.1873816000001,-4.679264199999977],[123.18954320000012,-4.679036399999973],[123.18821560000004,-4.677762099999939],[123.18790740000009,-4.671362199999976],[123.18428630000005,-4.6750125],[123.18127160000006,-4.676742299999944],[123.17819950000012,-4.674954199999945],[123.17700370000011,-4.667983199999981],[123.17833080000003,-4.666728499999977],[123.17621530000008,-4.662251399999946],[123.1768234000001,-4.660901399999943],[123.18116490000011,-4.660672199999965],[123.1834397,-4.655149399999971],[123.1845479000001,-4.659919099999968],[123.1863340000001,-4.658088499999963],[123.18623550000007,-4.652934399999936],[123.18339930000002,-4.649605899999926],[123.18429060000005,-4.64656],[123.18256190000011,-4.645041799999944],[123.18073680000009,-4.646541399999933],[123.18005690000007,-4.645509699999934],[123.18269980000002,-4.641559],[123.1879441000001,-4.645724],[123.19000260000007,-4.645879199999968],[123.19200200000012,-4.642685699999959],[123.19087500000012,-4.640213399999936],[123.18757390000007,-4.640856799999938],[123.18423020000012,-4.633892899999978],[123.18932030000008,-4.627929299999948],[123.19268050000005,-4.630362099999957],[123.19166690000009,-4.623865899999942],[123.19273440000006,-4.621938099999966],[123.1915107000001,-4.620828699999947],[123.19299020000005,-4.617668499999979],[123.193826,-4.620355],[123.196855,-4.619147099999964],[123.19838830000003,-4.616382],[123.20107310000003,-4.622251899999981],[123.20519020000006,-4.62301],[123.2076555000001,-4.619719],[123.20883850000007,-4.613357399999927],[123.20397760000003,-4.609592099999929],[123.19784140000002,-4.6098664],[123.2006563000001,-4.607256699999937],[123.19874980000009,-4.598794399999974],[123.19655490000002,-4.596439299999929],[123.19659270000011,-4.592798499999958],[123.1938924000001,-4.591478399999971],[123.19049870000003,-4.586825499999975],[123.19167740000012,-4.580963599999961],[123.18053510000004,-4.563421799999958],[123.17904460000011,-4.559250399999939],[123.17962110000008,-4.556020099999955],[123.17508790000011,-4.552079699999979],[123.17051060000006,-4.543069199999934],[123.16217960000006,-4.5404338],[123.15744,-4.528995399999928],[123.156302,-4.522610899999961],[123.15164130000005,-4.520044],[123.15064,-4.517071299999941],[123.1498911000001,-4.517952099999945],[123.14732490000006,-4.5164504],[123.14730680000002,-4.513172899999972],[123.14605840000002,-4.5134581],[123.14565340000001,-4.5114425],[123.14722860000006,-4.508984799999951],[123.14630670000008,-4.505851],[123.142101,-4.501870699999927],[123.14045580000004,-4.498184499999979],[123.14156830000002,-4.486717299999953],[123.138933,-4.482271499999968],[123.13641030000008,-4.481805699999938],[123.13407760000007,-4.484387599999934],[123.13078860000007,-4.484198299999946],[123.12499800000012,-4.476681499999927],[123.12148910000008,-4.477086699999973],[123.11844950000011,-4.4750928],[123.11625430000004,-4.476673099999971],[123.11452180000003,-4.474738899999977],[123.1136782000001,-4.476275799999939],[123.11491060000003,-4.483904],[123.1068993,-4.472393699999941],[123.10906000000011,-4.470186099999978],[123.10580210000012,-4.460085],[123.10356850000005,-4.461842199999978],[123.10262440000008,-4.458978799999954],[123.1005348000001,-4.459704899999963],[123.10020840000004,-4.454334299999971],[123.09394330000009,-4.460416199999941],[123.08615390000011,-4.458276199999943],[123.08055430000002,-4.459537799999964],[123.0813051,-4.458857299999977],[123.07672780000007,-4.456621699999971],[123.07608530000005,-4.454316099999971],[123.07766880000008,-4.44999],[123.076484,-4.447068899999977],[123.07810360000008,-4.446534],[123.07828450000011,-4.443393699999945],[123.07621070000005,-4.440962499999955],[123.07423830000005,-4.440970899999968],[123.07344970000008,-4.436217299999953],[123.06987790000005,-4.432228399999929],[123.0663221000001,-4.430838399999971],[123.060984,-4.433586499999933],[123.05857730000002,-4.430699299999958],[123.05199690000006,-4.429866299999958],[123.048984,-4.428213299999925],[123.04797760000008,-4.425531599999943],[123.04512760000011,-4.424523],[123.04453950000004,-4.419698299999936],[123.0496104,-4.417479799999967],[123.0505243,-4.4155016],[123.05261430000007,-4.416146799999979],[123.0515196,-4.412901399999953],[123.05612740000004,-4.410884299999964],[123.0586968,-4.412010799999962],[123.06190210000011,-4.408198099999936],[123.06587600000012,-4.409907],[123.0668260000001,-4.4125304],[123.06939550000004,-4.4081294],[123.07299850000004,-4.407319799999925],[123.07854670000006,-4.401644599999941],[123.08116230000007,-4.391412799999955],[123.082548,-4.388757299999952],[123.0842669000001,-4.3886399],[123.08123300000011,-4.380211199999962],[123.07839220000005,-4.379520399999933],[123.07964980000008,-4.378132099999959],[123.07816720000005,-4.375883399999964],[123.08224730000006,-4.374759399999959],[123.08056450000004,-4.373342899999955],[123.07993030000011,-4.366983699999935],[123.07474410000009,-4.366325],[123.0690770000001,-4.370394499999975],[123.06344970000009,-4.3708023],[123.06132510000009,-4.373042899999973],[123.0574597000001,-4.3741278],[123.05731920000005,-4.366396399999928],[123.05416660000003,-4.370135599999969],[123.05219280000006,-4.367040799999927],[123.04975290000004,-4.368841299999929],[123.042278,-4.369156699999962],[123.033528,-4.376919399999963],[123.0251214000001,-4.379243699999961],[123.01786670000001,-4.384431699999936],[123.01598860000001,-4.388707599999975],[123.01110210000002,-4.393598199999929],[123.003613,-4.394614599999954],[122.99675390000004,-4.398531599999956],[122.99328630000002,-4.394225799999958],[122.98937950000004,-4.397345499999972],[122.98736460000009,-4.402756199999942],[122.97558140000001,-4.413297],[122.96692790000009,-4.414586499999928],[122.96047110000006,-4.420078899999965],[122.95523450000007,-4.421492599999965],[122.9504654000001,-4.424858699999959],[122.94501720000005,-4.431703499999969],[122.94638450000002,-4.435397],[122.93610400000011,-4.443828799999949],[122.9267489,-4.447955499999978],[122.92254450000007,-4.453741599999944],[122.90768230000003,-4.460359599999947],[122.90539300000012,-4.4647995],[122.90683350000006,-4.4711514],[122.90511730000003,-4.470950799999969],[122.90437050000003,-4.473420399999952],[122.90041510000003,-4.476811399999974],[122.89869540000007,-4.481789099999958],[122.89297310000006,-4.487973299999965],[122.89083140000002,-4.4882351],[122.88956080000003,-4.496942099999956],[122.87973140000008,-4.503559899999971],[122.8804745000001,-4.516075699999931],[122.8673563000001,-4.5258309],[122.86857350000002,-4.532034799999963],[122.86789710000005,-4.545746599999973],[122.865629,-4.553068799999949],[122.86311580000006,-4.555736899999943],[122.85768470000005,-4.569107799999927],[122.85430090000011,-4.571625599999948],[122.8508141000001,-4.581441699999971],[122.84829850000006,-4.591282799999931],[122.8492179000001,-4.595050899999933],[122.84807060000003,-4.604046599999947],[122.84971230000008,-4.604796199999953],[122.85008490000007,-4.607116899999937],[122.84912970000005,-4.609226399999955],[122.92546820000007,-4.613082],[122.92799910000008,-4.612261199999978],[122.92717550000009,-4.628490399999976],[122.925169,-4.637546499999928],[122.92619130000003,-4.642478899999958],[122.92059410000002,-4.686312599999951],[122.91723620000005,-4.729644699999938],[122.91756470000007,-4.742252199999939],[122.9140000000001,-4.797462099999962],[122.92380150000008,-4.8373795],[122.92468990000009,-4.857812599999932],[122.92202470000007,-4.872915299999931],[122.90781040000002,-4.904009199999962],[122.8918192000001,-4.947540699999934],[122.89004240000008,-4.972415799999965],[122.87849330000006,-5.026608],[122.86872090000008,-5.048818],[122.86072530000001,-5.049706399999934],[122.85539490000008,-5.0550367],[122.8482878000001,-5.077246699999932],[122.84295740000005,-5.079911899999956],[122.82749920000003,-5.095870099999956],[122.82912250000004,-5.097716899999966],[122.84205180000004,-5.097280699999942],[122.86744680000004,-5.100064399999951],[122.89191810000011,-5.106087799999955],[122.9273740000001,-5.122524699999929],[122.9274282,-5.127904399999977],[122.93122640000001,-5.124368799999957],[122.93947580000008,-5.1283175],[122.95437640000011,-5.140645099999972]]]]},"properties":{"shapeName":"Buton Utara","shapeISO":"","shapeID":"22746128B33022216520053","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[108.38574140000009,-7.073000899999954],[108.38241580000005,-7.072024599999963],[108.38017090000005,-7.067738],[108.38121730000006,-7.063671899999974],[108.37869720000003,-7.064452399999936],[108.37945180000008,-7.063290399999971],[108.37823980000007,-7.063062699999932],[108.37898870000004,-7.061112199999968],[108.37784840000006,-7.059885099999974],[108.37418530000008,-7.059477299999969],[108.372527,-7.0611519],[108.37051140000005,-7.059283],[108.36755190000008,-7.059585],[108.36224910000004,-7.053787599999964],[108.36329530000006,-7.0523376],[108.359976,-7.0515507],[108.348074,-7.055379799999969],[108.34523070000006,-7.064647899999954],[108.34002910000004,-7.069383699999946],[108.34336050000007,-7.069975199999931],[108.34069830000004,-7.071273199999951],[108.32663160000004,-7.064280499999938],[108.32186840000008,-7.0555579],[108.32033650000005,-7.059539899999947],[108.31702430000007,-7.057152599999938],[108.31365970000007,-7.056710599999974],[108.30364850000007,-7.062223499999959],[108.29584130000006,-7.058503499999972],[108.28198380000003,-7.058057399999939],[108.27985260000008,-7.059796499999948],[108.28166810000005,-7.062130699999955],[108.27342230000005,-7.0649036],[108.25759110000007,-7.064551399999971],[108.25246890000005,-7.066344099999981],[108.247783,-7.064950799999963],[108.24548540000006,-7.066717599999947],[108.23805870000007,-7.064330199999972],[108.23923280000008,-7.062346799999943],[108.23700630000008,-7.062672099999929],[108.23792390000006,-7.059320499999956],[108.23446020000006,-7.058681099999944],[108.232126,-7.060267299999964],[108.23103760000004,-7.056962899999974],[108.22672450000005,-7.054628199999968],[108.21931320000004,-7.058666599999981],[108.21444080000003,-7.055562599999973],[108.21307060000004,-7.056041],[108.20828210000008,-7.059999199999936],[108.20826190000008,-7.062535399999945],[108.20483380000007,-7.058893699999942],[108.20400020000005,-7.062495599999977],[108.19997780000006,-7.066309899999965],[108.19363730000003,-7.058719399999973],[108.19275770000007,-7.062581199999954],[108.188145,-7.058641799999975],[108.18463090000006,-7.061229899999944],[108.17742190000007,-7.061235799999963],[108.16992350000004,-7.059174499999926],[108.17618030000006,-7.067677499999945],[108.180593,-7.0701],[108.182993,-7.069658],[108.184894,-7.07182],[108.190896,-7.070127],[108.193641,-7.070921],[108.196166,-7.075109],[108.203952,-7.077165],[108.205112,-7.080753],[108.203661,-7.082952],[108.207097,-7.082152],[108.208369,-7.083135],[108.208998,-7.087722],[108.211134,-7.086401],[108.211682,-7.082645],[108.213361,-7.081588],[108.22188,-7.085878],[108.21957850000007,-7.0884656],[108.21842060000006,-7.097534399999972],[108.215367,-7.098712],[108.21677,-7.100399],[108.218986,-7.100121],[108.217869,-7.102073],[108.218958,-7.104082],[108.21776,-7.105529],[108.216964,-7.104112],[108.21466120000008,-7.104331399999978],[108.21330590000008,-7.111353799999961],[108.219836,-7.123452],[108.217383,-7.124654],[108.21801,-7.126056],[108.215867,-7.125201],[108.217276,-7.129241],[108.21366520000004,-7.132704299999943],[108.21368090000004,-7.134746899999925],[108.20845060000005,-7.135134099999959],[108.20608620000007,-7.138010299999962],[108.20401560000005,-7.136373799999944],[108.20410870000006,-7.138069199999961],[108.201128,-7.137697],[108.20315430000005,-7.141802699999971],[108.200296,-7.144703],[108.201984,-7.14547],[108.199739,-7.146366],[108.203112,-7.15217],[108.199867,-7.15338],[108.201834,-7.155195],[108.199319,-7.157863],[108.19706640000004,-7.156652299999962],[108.19735540000005,-7.159588499999927],[108.19457750000004,-7.161699799999951],[108.19455420000008,-7.165047099999981],[108.19070830000004,-7.167537699999968],[108.19123,-7.168928699999981],[108.19423650000004,-7.169074799999976],[108.192273,-7.169882],[108.192096,-7.173315],[108.194403,-7.173219],[108.194851,-7.17448],[108.192969,-7.175993],[108.194773,-7.182655],[108.192117,-7.187443],[108.19959930000005,-7.189684299999954],[108.19757670000007,-7.193712799999957],[108.198056,-7.197056],[108.195283,-7.205918],[108.19733130000009,-7.208485],[108.195685,-7.212736],[108.198216,-7.214567],[108.196669,-7.21642],[108.196568,-7.220347],[108.198993,-7.225504],[108.197618,-7.228951],[108.19889890000007,-7.231559399999981],[108.196944,-7.232455],[108.195352,-7.230647],[108.195468,-7.23403],[108.19413370000007,-7.233822699999962],[108.19312290000005,-7.239317299999925],[108.195185,-7.241375],[108.19204410000003,-7.24522],[108.19404130000004,-7.246041299999945],[108.19322,-7.248822399999938],[108.19491860000005,-7.2505209],[108.19238290000004,-7.250728899999956],[108.19264230000005,-7.252737399999944],[108.19061210000007,-7.251456099999928],[108.18846040000005,-7.255205899999964],[108.18924440000006,-7.259013599999946],[108.18812440000005,-7.262503899999956],[108.18929110000005,-7.263842199999942],[108.19160280000006,-7.261856799999975],[108.19019220000007,-7.265232799999978],[108.193077,-7.2663505],[108.19314520000006,-7.269289499999957],[108.19523350000009,-7.270171199999936],[108.19382790000009,-7.272969499999931],[108.19660140000008,-7.274334899999928],[108.19547780000005,-7.275707499999953],[108.196509,-7.278125399999965],[108.20181040000006,-7.286182499999938],[108.20909720000009,-7.289094899999952],[108.21166160000007,-7.291972499999929],[108.21920020000005,-7.293218],[108.22886430000005,-7.301119599999936],[108.23128520000006,-7.305814099999964],[108.23554850000005,-7.305032399999959],[108.23573670000007,-7.307288899999946],[108.23802960000006,-7.307754399999965],[108.23787030000005,-7.309298699999943],[108.24245560000008,-7.3116568],[108.24268020000005,-7.312995],[108.24700930000006,-7.314092],[108.24954230000009,-7.3130597],[108.25337220000006,-7.317644399999949],[108.25259360000007,-7.321288699999968],[108.26223550000009,-7.321825799999942],[108.26324480000005,-7.31942],[108.26570240000007,-7.320768299999941],[108.26691810000005,-7.318207599999937],[108.26998970000005,-7.3198472],[108.27305070000006,-7.324186699999927],[108.27577750000006,-7.329423399999939],[108.27509380000004,-7.330872399999976],[108.27731510000007,-7.331376],[108.27797290000007,-7.334089699999936],[108.28152310000007,-7.3334403],[108.28435520000005,-7.336232],[108.287941,-7.33367],[108.28803260000007,-7.3358849],[108.29513560000004,-7.332316299999945],[108.29779060000004,-7.334124899999949],[108.29849250000007,-7.331756899999959],[108.30073550000009,-7.33264],[108.29973610000008,-7.335533899999973],[108.30614480000008,-7.334333299999969],[108.31211930000006,-7.337211799999977],[108.31296690000005,-7.3396216],[108.324118,-7.340267],[108.324143,-7.343152],[108.32675980000005,-7.344018399999925],[108.32540380000006,-7.345833699999957],[108.32699540000004,-7.346225299999958],[108.32593090000006,-7.347568399999943],[108.32950690000007,-7.3481916],[108.32983160000003,-7.350238299999944],[108.33174670000005,-7.349065],[108.331352,-7.346529],[108.334596,-7.347536],[108.33732,-7.345893],[108.33672760000007,-7.351408],[108.33899250000007,-7.3516289],[108.341367,-7.356531699999948],[108.35581770000005,-7.352376899999967],[108.36235650000003,-7.352458],[108.367589,-7.357114],[108.371961,-7.357781],[108.37264470000008,-7.3598675],[108.378711,-7.359279],[108.378703,-7.356837],[108.380411,-7.355868],[108.382053,-7.357751],[108.384811,-7.35688],[108.385721,-7.359049],[108.388478,-7.358821],[108.390264,-7.361891],[108.392959,-7.359557],[108.395512,-7.362439],[108.39876380000004,-7.361401199999932],[108.401701,-7.363147],[108.405509,-7.360814],[108.40768,-7.365456],[108.407151,-7.370585],[108.411737,-7.376896],[108.400674,-7.389857],[108.399871,-7.396912],[108.396483,-7.404603],[108.39534080000004,-7.411324099999945],[108.39915470000005,-7.4170007],[108.40417490000004,-7.4184173],[108.409824,-7.422271499999965],[108.41589140000008,-7.419700299999931],[108.42033880000008,-7.422462899999971],[108.422251,-7.434185],[108.41985410000007,-7.440110299999958],[108.42341760000005,-7.445896199999936],[108.42092630000008,-7.450744899999961],[108.42141190000007,-7.453125599999964],[108.42297730000007,-7.4537064],[108.424377,-7.450561],[108.42537,-7.452981],[108.42638090000008,-7.474112299999945],[108.42387610000009,-7.479360199999974],[108.4235,-7.484590399999945],[108.42120640000007,-7.4878591],[108.42251910000005,-7.489123199999938],[108.42443730000008,-7.487833899999941],[108.42379730000005,-7.489295299999981],[108.42625250000003,-7.490030399999966],[108.431581,-7.489533199999926],[108.43321830000008,-7.4877894],[108.43792430000008,-7.490315899999928],[108.442488,-7.488658],[108.42950210000004,-7.500543099999959],[108.43411940000004,-7.505802799999969],[108.43883630000005,-7.5085929],[108.44490390000004,-7.510096899999951],[108.44748090000007,-7.509157899999934],[108.45568540000005,-7.510239699999943],[108.45774220000004,-7.515149799999961],[108.46074110000006,-7.5174808],[108.47240810000005,-7.518195299999945],[108.47040020000009,-7.519666899999947],[108.47465060000007,-7.524076599999944],[108.47472370000008,-7.52924],[108.47615740000003,-7.531489199999953],[108.48421010000004,-7.534311099999968],[108.48514320000004,-7.536136899999974],[108.49572910000006,-7.530814599999928],[108.50008730000008,-7.534315299999946],[108.50271140000007,-7.534294299999942],[108.51026970000004,-7.527817499999969],[108.51630720000009,-7.528030899999976],[108.518672,-7.525922699999967],[108.51935180000004,-7.527365199999963],[108.52759230000004,-7.526908099999957],[108.52734350000009,-7.5292754],[108.535682,-7.535810399999946],[108.54227540000005,-7.5379246],[108.54063410000003,-7.538914499999976],[108.52823770000003,-7.537614899999937],[108.52523410000003,-7.538949599999967],[108.52089040000004,-7.544345699999951],[108.52213630000006,-7.550769],[108.52507040000006,-7.552883],[108.521828,-7.555502899999965],[108.51915480000008,-7.554843699999935],[108.521102,-7.559082499999931],[108.52774220000003,-7.5648114],[108.52681210000009,-7.567886599999952],[108.528778,-7.571057599999961],[108.54473880000006,-7.569828099999938],[108.548456,-7.564792099999977],[108.54948940000008,-7.556862899999942],[108.55820990000007,-7.561264299999948],[108.56908240000007,-7.563850599999967],[108.57129450000008,-7.566390199999944],[108.57734310000006,-7.566601],[108.58386040000005,-7.560752899999954],[108.59521,-7.56323],[108.60692390000008,-7.553908399999955],[108.61428,-7.55342],[108.62261,-7.55501],[108.62232030000007,-7.550141699999926],[108.62637990000007,-7.548036899999943],[108.62915080000005,-7.548539799999958],[108.63518340000007,-7.54279],[108.64819680000005,-7.537883],[108.64954530000006,-7.533186799999953],[108.65396920000006,-7.529199099999971],[108.65658230000008,-7.511454399999934],[108.65618360000008,-7.5031396],[108.65793040000005,-7.498210799999981],[108.657293,-7.492697799999974],[108.65560850000008,-7.492800299999942],[108.65003370000005,-7.488064],[108.65133780000008,-7.483153399999935],[108.64799640000007,-7.481794099999945],[108.64654460000008,-7.478308599999934],[108.64768240000006,-7.476490899999931],[108.64712230000004,-7.468828299999927],[108.648999,-7.467555199999936],[108.65695940000006,-7.468100099999958],[108.65829370000006,-7.4640648],[108.66455080000009,-7.463258399999972],[108.66741190000005,-7.4616006],[108.66621810000004,-7.460249499999975],[108.66808480000009,-7.45993],[108.67767410000005,-7.461506699999973],[108.68034190000009,-7.463294],[108.68150280000003,-7.462203899999963],[108.684549,-7.463170799999943],[108.68608480000006,-7.460684699999945],[108.69665060000005,-7.461062599999934],[108.695479,-7.464651799999956],[108.69617140000008,-7.467597099999978],[108.70227670000008,-7.476210599999945],[108.70416820000008,-7.476665699999955],[108.70690940000009,-7.475136499999962],[108.70469020000007,-7.472719799999936],[108.70650480000006,-7.470514499999979],[108.71601690000006,-7.466276199999982],[108.71252450000009,-7.4576],[108.72072610000004,-7.4444631],[108.72106940000003,-7.435149599999932],[108.72332,-7.431038799999953],[108.71937570000006,-7.429972599999928],[108.717598,-7.426419199999941],[108.71194460000004,-7.426291799999944],[108.70603950000009,-7.418176499999959],[108.69969180000004,-7.414895],[108.70107270000005,-7.409795199999962],[108.69686890000008,-7.399843099999941],[108.69440470000006,-7.399177899999927],[108.68975070000005,-7.4005322],[108.687088,-7.399546499999929],[108.68654630000009,-7.395163],[108.68917090000008,-7.393096799999967],[108.68428040000003,-7.3863772],[108.68524170000006,-7.379774],[108.67786410000008,-7.376733199999933],[108.68314370000007,-7.371910899999932],[108.68321230000004,-7.369471899999951],[108.67868050000004,-7.367976599999963],[108.67701720000008,-7.365999599999952],[108.67599490000003,-7.357340199999953],[108.67069250000009,-7.357390799999962],[108.667244,-7.353484],[108.661874,-7.352496],[108.66133590000004,-7.359824199999935],[108.650504,-7.387307699999951],[108.63912040000008,-7.385190399999942],[108.636801,-7.381438899999978],[108.63057920000006,-7.3817799],[108.63117020000004,-7.383326499999953],[108.62936920000004,-7.383923599999946],[108.62655230000007,-7.389382299999966],[108.62390910000005,-7.388904599999933],[108.62147670000007,-7.390422],[108.62200180000008,-7.393496199999959],[108.62442330000005,-7.394722799999954],[108.62125220000007,-7.395598699999937],[108.61843850000008,-7.393237599999964],[108.61541790000007,-7.406012699999962],[108.60706830000004,-7.403213199999925],[108.59924360000008,-7.395103899999981],[108.60003050000006,-7.393713199999979],[108.59061540000005,-7.395016399999975],[108.59100380000007,-7.402799899999934],[108.59442060000003,-7.405109299999936],[108.594739,-7.407236599999976],[108.59085980000003,-7.411091899999974],[108.59041480000008,-7.413458399999968],[108.58676880000007,-7.413559099999929],[108.58593280000008,-7.416397699999948],[108.57972660000007,-7.417480299999966],[108.57960680000008,-7.420497599999976],[108.57530690000004,-7.423256299999935],[108.57768250000004,-7.429860899999937],[108.56974040000006,-7.437202799999966],[108.56516450000004,-7.437592099999961],[108.56567440000003,-7.429929799999968],[108.56134660000004,-7.430926299999953],[108.55903350000006,-7.425488899999948],[108.55515330000009,-7.4250368],[108.55504640000004,-7.4191531],[108.55138230000006,-7.422186499999953],[108.54905530000008,-7.421997799999929],[108.54896030000003,-7.419606899999962],[108.54666040000006,-7.418151299999977],[108.54692390000008,-7.415442799999937],[108.54422640000007,-7.412101299999961],[108.54041990000007,-7.4115112],[108.53785670000008,-7.415972099999976],[108.534228,-7.416074499999979],[108.52666520000008,-7.412006],[108.52481250000005,-7.4067709],[108.518142,-7.407634199999961],[108.51698380000005,-7.405545599999925],[108.51237030000004,-7.4054925],[108.50584050000003,-7.402447099999961],[108.50272,-7.398712499999931],[108.493781,-7.394272299999955],[108.493852,-7.391272199999946],[108.49043980000005,-7.392426199999932],[108.48819380000003,-7.390799199999947],[108.48862820000005,-7.3925454],[108.48602790000007,-7.393203799999981],[108.48456890000006,-7.3895771],[108.48382650000008,-7.391902799999968],[108.48125650000009,-7.387302299999931],[108.47288120000007,-7.385032699999954],[108.47274730000004,-7.383279199999947],[108.46939510000004,-7.381705299999965],[108.46735140000004,-7.378335799999945],[108.46996,-7.3790224],[108.47262240000003,-7.374854499999969],[108.46809760000008,-7.3716738],[108.47369350000008,-7.367910399999971],[108.47570350000007,-7.364666899999975],[108.47069550000003,-7.364741199999969],[108.469819,-7.361824099999978],[108.47767960000004,-7.361138199999971],[108.47939880000007,-7.358998399999962],[108.47763560000004,-7.357482199999936],[108.48492010000007,-7.3562556],[108.48948,-7.349820099999931],[108.49673690000009,-7.349046199999975],[108.49604090000008,-7.3544002],[108.50008250000008,-7.355299099999968],[108.50138860000004,-7.3583692],[108.50624670000008,-7.354185],[108.51143470000005,-7.357969399999945],[108.52265650000004,-7.358505199999968],[108.53156180000008,-7.349050199999965],[108.53416990000005,-7.348624],[108.53503240000003,-7.343601399999955],[108.54729350000008,-7.343171799999936],[108.54765070000008,-7.3401134],[108.55036810000007,-7.341848199999959],[108.551433,-7.335574799999961],[108.55559250000005,-7.331656799999962],[108.55073520000008,-7.325287299999957],[108.55173210000004,-7.323484399999927],[108.55943240000005,-7.3264916],[108.55997470000005,-7.323358399999961],[108.56357580000008,-7.320206],[108.56242370000007,-7.318236199999944],[108.56285860000008,-7.314224599999932],[108.55908970000007,-7.307191299999943],[108.56293490000007,-7.306931399999939],[108.56436160000004,-7.304112299999929],[108.56037910000003,-7.300444],[108.56000520000003,-7.292781199999979],[108.55590060000009,-7.288206],[108.56279760000007,-7.281100599999945],[108.56704720000005,-7.278663499999936],[108.56992340000005,-7.271255399999973],[108.56918340000004,-7.267691],[108.57109070000007,-7.266601],[108.56878670000003,-7.261797799999954],[108.57418830000006,-7.253561899999966],[108.57650760000007,-7.253444599999966],[108.57846070000005,-7.255915],[108.58141330000007,-7.254053499999941],[108.58013160000007,-7.250831499999947],[108.58359530000007,-7.243189699999959],[108.58564,-7.242246499999965],[108.58016210000005,-7.238277799999935],[108.58423620000008,-7.230819599999961],[108.58410650000008,-7.22547],[108.582428,-7.223818699999981],[108.58524330000006,-7.218628799999976],[108.58167270000007,-7.217178199999978],[108.58049020000004,-7.213887099999965],[108.58211520000003,-7.210877299999936],[108.58116310000008,-7.206545199999937],[108.57892610000005,-7.208296699999948],[108.57747650000005,-7.205259699999942],[108.57324330000006,-7.203098199999943],[108.574112,-7.206162799999959],[108.572815,-7.206056],[108.56609350000008,-7.200827],[108.563263,-7.194508399999961],[108.55773060000007,-7.192779099999939],[108.55547820000004,-7.193210099999931],[108.55508420000007,-7.190424299999961],[108.54062990000006,-7.189696199999958],[108.54232720000005,-7.186403699999971],[108.53625460000006,-7.184257599999967],[108.53308680000004,-7.1845756],[108.52780630000007,-7.181989299999941],[108.52598780000005,-7.17852],[108.52909520000009,-7.178112499999941],[108.52407150000005,-7.177225299999975],[108.52039590000004,-7.174367],[108.521164,-7.172600099999954],[108.52645970000009,-7.173738499999956],[108.52127080000008,-7.163835899999981],[108.51780320000006,-7.165404099999932],[108.51605370000004,-7.164321399999949],[108.519045,-7.1605555],[108.51353660000007,-7.159543],[108.51234860000005,-7.161538699999937],[108.509519,-7.1608],[108.50886630000008,-7.158940899999948],[108.51034330000005,-7.156207199999926],[108.51345330000004,-7.154817199999968],[108.51547240000008,-7.145482399999935],[108.51173960000006,-7.141107199999965],[108.51066880000008,-7.136132399999951],[108.50877750000006,-7.134978899999965],[108.50855020000006,-7.129958],[108.50514570000007,-7.132661299999938],[108.50364340000004,-7.130943499999944],[108.50388550000008,-7.128506],[108.501309,-7.132392899999957],[108.499105,-7.128969899999959],[108.49528670000007,-7.131118499999957],[108.493666,-7.129991599999926],[108.49498090000009,-7.127455699999928],[108.49351340000004,-7.124797899999976],[108.49148230000009,-7.126110599999947],[108.48972980000008,-7.125011799999982],[108.48892440000009,-7.126463599999965],[108.48117950000005,-7.12378],[108.48141870000006,-7.121642099999974],[108.47936780000003,-7.119010799999955],[108.47735260000007,-7.122436299999947],[108.47463580000004,-7.119918899999959],[108.47252220000007,-7.12354],[108.46825230000007,-7.122478499999943],[108.46814390000009,-7.120919599999979],[108.46382910000005,-7.119337899999948],[108.461149,-7.120746799999949],[108.45713360000008,-7.117932099999962],[108.45431430000008,-7.119366599999978],[108.45013590000008,-7.11739],[108.44764010000006,-7.119006],[108.44243310000007,-7.118848499999956],[108.43698420000004,-7.1126097],[108.43639960000007,-7.109940499999936],[108.43881010000007,-7.107725699999946],[108.43626810000006,-7.108393799999931],[108.43557,-7.106626799999958],[108.43345340000008,-7.1067],[108.43332670000007,-7.104988799999944],[108.43127610000005,-7.104825699999935],[108.43058020000007,-7.102779199999929],[108.42585850000006,-7.102388299999973],[108.42608650000005,-7.100649199999964],[108.42902240000006,-7.098539499999958],[108.42661280000004,-7.095531499999936],[108.42121280000003,-7.094263599999977],[108.41875890000006,-7.092204599999945],[108.41652840000006,-7.09258],[108.41554150000007,-7.094510499999956],[108.41325560000007,-7.0943478],[108.41698560000003,-7.090139099999931],[108.40700460000005,-7.087805199999934],[108.40514050000007,-7.084547699999973],[108.40148010000007,-7.084843799999931],[108.40182830000003,-7.082122699999957],[108.40050670000005,-7.080367499999966],[108.39579030000004,-7.078539599999942],[108.39360050000005,-7.079181499999947],[108.39246350000008,-7.075706899999943],[108.38574140000009,-7.073000899999954]]]},"properties":{"shapeName":"Ciamis","shapeISO":"","shapeID":"22746128B31557305065081","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[107.31175370000005,-7.108123499999977],[107.31116660000004,-7.097310099999959],[107.30639350000007,-7.090333899999962],[107.301978,-7.088155799999981],[107.29933180000006,-7.083868199999927],[107.29640210000008,-7.085122299999966],[107.29566210000007,-7.090492899999958],[107.28829190000005,-7.084921599999973],[107.28533950000008,-7.084789],[107.283271,-7.077955799999927],[107.27185070000007,-7.072530899999947],[107.26615920000006,-7.066850299999942],[107.26519770000004,-7.062373199999968],[107.26338970000006,-7.060834499999942],[107.25969710000004,-7.060589899999968],[107.260193,-7.058607699999925],[107.25653090000009,-7.0576693],[107.25795,-7.055694699999947],[107.25748860000004,-7.053324499999974],[107.25421050000006,-7.053026299999942],[107.25269250000008,-7.048727199999973],[107.24555220000008,-7.050442799999928],[107.24551410000004,-7.049149599999964],[107.23785410000005,-7.046708699999954],[107.23409040000007,-7.048659099999952],[107.23426070000005,-7.049919299999942],[107.23108690000004,-7.049785699999973],[107.22978990000007,-7.051171],[107.22933970000008,-7.049431499999969],[107.22858440000005,-7.050512899999944],[107.22456370000003,-7.049103899999977],[107.22278610000006,-7.050361299999963],[107.22402970000007,-7.0522367],[107.22235880000005,-7.052850399999954],[107.22440040000004,-7.057028299999956],[107.223652,-7.0584812],[107.22171850000007,-7.057087799999977],[107.21727820000007,-7.058263599999975],[107.21682750000008,-7.056530099999975],[107.213112,-7.056211599999926],[107.21223460000004,-7.054663799999958],[107.210106,-7.0562755],[107.20932020000004,-7.054044799999929],[107.20805370000005,-7.056295],[107.205963,-7.0556758],[107.20460520000006,-7.0571023],[107.20295730000004,-7.054173599999956],[107.20225540000007,-7.056520099999943],[107.19973690000006,-7.056079499999953],[107.19824230000006,-7.058936699999947],[107.19548050000009,-7.057650199999955],[107.19546260000004,-7.058859499999926],[107.191147,-7.0587817],[107.19179550000007,-7.060925599999962],[107.190384,-7.061855],[107.18610390000003,-7.058052199999963],[107.18490610000003,-7.059375899999964],[107.18193830000007,-7.058034099999929],[107.18424240000007,-7.055292699999939],[107.18428820000008,-7.052655799999968],[107.18705760000006,-7.0513812],[107.18578350000007,-7.049597899999981],[107.18846140000005,-7.046289599999966],[107.18647840000006,-7.045356199999958],[107.18928540000007,-7.043875299999968],[107.18804940000007,-7.042299399999933],[107.19126910000006,-7.028461099999959],[107.19396220000004,-7.027074],[107.19339,-7.022519199999977],[107.19562540000004,-7.0211149],[107.19142160000007,-7.016502],[107.19106310000006,-7.0133024],[107.18805710000004,-7.011564899999939],[107.189438,-7.008545099999935],[107.18722550000007,-7.0065595],[107.18457040000004,-6.996051899999941],[107.18528760000004,-6.9946567],[107.18961350000006,-6.995003799999949],[107.19019330000003,-6.992829899999947],[107.18853010000004,-6.989174499999933],[107.18595140000008,-6.988841199999968],[107.18655410000008,-6.9862777],[107.18489850000009,-6.983100499999978],[107.186432,-6.973038799999927],[107.19078080000008,-6.97215],[107.19017040000006,-6.968188899999973],[107.19202440000004,-6.96798],[107.19231430000008,-6.966241499999967],[107.19529740000007,-6.9652034],[107.196457,-6.963026599999978],[107.20058450000005,-6.963274599999977],[107.202202,-6.960405499999979],[107.21926890000009,-6.949336199999948],[107.21859750000004,-6.946325],[107.21514140000005,-6.942907],[107.21880350000004,-6.940053599999942],[107.23275770000004,-6.938711299999966],[107.25521870000006,-6.927112299999976],[107.26390850000007,-6.928167899999949],[107.27432260000006,-6.924350899999979],[107.27838910000008,-6.925466699999959],[107.27934280000005,-6.923748599999954],[107.28321090000009,-6.923302299999932],[107.28762070000005,-6.918221099999926],[107.29174060000008,-6.915877499999965],[107.29392260000009,-6.9120142],[107.29350290000008,-6.910067699999956],[107.29918680000009,-6.908783099999937],[107.30154430000005,-6.909622799999966],[107.31168380000008,-6.903971799999965],[107.315056,-6.900083699999925],[107.31448380000006,-6.896562699999947],[107.32324230000006,-6.887883299999942],[107.32769790000003,-6.887041199999942],[107.33099380000004,-6.888582399999962],[107.33396920000007,-6.886495299999979],[107.34168490000008,-6.8862371],[107.34153760000004,-6.881400299999939],[107.34312450000004,-6.879261199999974],[107.34120190000004,-6.875430299999948],[107.343773,-6.873573499999964],[107.34375350000005,-6.871549899999934],[107.34693920000007,-6.870589399999972],[107.34738170000008,-6.867659699999933],[107.34936540000007,-6.8658158],[107.34681080000007,-6.860849899999948],[107.35017410000006,-6.855981499999928],[107.34949510000007,-6.853517699999941],[107.34796480000006,-6.852303599999971],[107.34287270000004,-6.853424699999948],[107.34403240000006,-6.849614299999928],[107.34289560000008,-6.848950599999966],[107.341409,-6.850091499999962],[107.34074410000005,-6.854731299999969],[107.33761960000004,-6.857624899999962],[107.33496110000004,-6.853254],[107.33241290000007,-6.853768499999944],[107.33028420000005,-6.856329099999925],[107.32913390000004,-6.8519106],[107.32508250000006,-6.852666499999941],[107.32389830000005,-6.849663199999952],[107.32677560000008,-6.848821699999974],[107.32747660000007,-6.847060399999975],[107.32250220000009,-6.839558299999965],[107.32285320000005,-6.825381899999968],[107.31653130000007,-6.822963799999968],[107.31488810000008,-6.819500099999971],[107.31918350000007,-6.814619199999981],[107.31599440000008,-6.809525199999939],[107.31166850000005,-6.809628699999962],[107.31418620000005,-6.807353199999966],[107.31266040000008,-6.802868099999955],[107.31340040000003,-6.800786699999946],[107.30408490000008,-6.796697799999947],[107.29572310000009,-6.787988799999937],[107.29213730000004,-6.790432099999975],[107.29009260000004,-6.790135599999928],[107.29051220000008,-6.785749099999975],[107.28736130000004,-6.7840706],[107.28660590000004,-6.785827299999937],[107.28618640000008,-6.784748699999966],[107.288109,-6.781430899999975],[107.282921,-6.779572599999938],[107.28087630000005,-6.7844121],[107.28045670000006,-6.781893399999944],[107.279442,-6.783809799999972],[107.28047190000007,-6.780531599999961],[107.27922830000006,-6.780123899999978],[107.281273,-6.779541599999959],[107.28205120000007,-6.774661199999969],[107.27969370000005,-6.776482699999974],[107.27842730000003,-6.7741],[107.27671060000006,-6.7743856],[107.27359780000006,-6.767783299999962],[107.26932540000007,-6.771243699999957],[107.26553360000008,-6.771029599999963],[107.26361860000009,-6.772394799999972],[107.26302350000009,-6.776455599999963],[107.26132980000006,-6.776963899999942],[107.26042190000004,-6.780394699999931],[107.25757610000005,-6.782563799999934],[107.25820940000006,-6.784882699999969],[107.25675220000005,-6.785679],[107.25608840000007,-6.789260499999955],[107.25312060000005,-6.788654],[107.25504320000005,-6.792462499999942],[107.25063340000008,-6.795051699999931],[107.25291460000005,-6.796890399999938],[107.250992,-6.799129199999925],[107.25070970000007,-6.802479399999982],[107.25218210000008,-6.803258099999937],[107.25039690000006,-6.805729099999951],[107.25186170000006,-6.803350599999931],[107.24980940000006,-6.803495099999964],[107.24984750000004,-6.798936],[107.25202190000005,-6.797870799999941],[107.249611,-6.795432199999937],[107.25230420000008,-6.791424399999926],[107.25106060000007,-6.789125599999977],[107.25408630000004,-6.786123599999939],[107.25314460000004,-6.784689199999946],[107.25592820000008,-6.782748399999946],[107.25502790000007,-6.779540199999929],[107.25902570000005,-6.77344],[107.26229870000009,-6.774421799999971],[107.26058210000008,-6.772239799999966],[107.26168070000006,-6.770642],[107.25877390000005,-6.769965299999967],[107.25817940000007,-6.768263299999944],[107.25965130000009,-6.766618899999969],[107.26163980000007,-6.76713],[107.26049590000008,-6.765133699999978],[107.26105220000005,-6.756196599999953],[107.26678480000004,-6.757384399999978],[107.27067580000005,-6.754436599999963],[107.27290360000006,-6.755409399999962],[107.28331770000005,-6.753503899999941],[107.28239450000007,-6.751486],[107.28433240000004,-6.751515499999925],[107.28301250000004,-6.749604899999952],[107.28028880000005,-6.752780599999937],[107.27487190000005,-6.751538899999957],[107.27108010000006,-6.7529251],[107.26851670000008,-6.749212399999976],[107.27034010000006,-6.745939399999941],[107.26597610000005,-6.741833399999962],[107.26064320000006,-6.743440299999975],[107.25914780000005,-6.746654199999966],[107.26040660000007,-6.747828599999934],[107.25917830000009,-6.749386],[107.25985730000008,-6.750926599999957],[107.25885780000004,-6.752249899999981],[107.25775920000007,-6.7515923],[107.25740070000006,-6.753414799999973],[107.25567640000008,-6.752554599999939],[107.25598920000004,-6.754849599999943],[107.25009170000004,-6.755663099999936],[107.25515760000008,-6.75377],[107.25445570000005,-6.752585499999952],[107.25569930000006,-6.751477399999942],[107.25715650000006,-6.752723799999956],[107.256157,-6.7498323],[107.25873580000007,-6.748204399999963],[107.25763720000003,-6.746183499999972],[107.25919360000006,-6.744539399999951],[107.25552380000005,-6.741794699999957],[107.25347910000005,-6.738524599999948],[107.25572980000004,-6.738778299999979],[107.25601970000008,-6.741518199999973],[107.25828570000004,-6.742072199999939],[107.25909440000004,-6.743641099999934],[107.25925460000008,-6.741434699999957],[107.26206980000006,-6.740732799999932],[107.263672,-6.738355799999965],[107.26757060000006,-6.742218699999967],[107.26948560000005,-6.742112299999974],[107.27062240000004,-6.74427],[107.27551280000006,-6.740552599999944],[107.27027910000004,-6.735241599999938],[107.26927960000006,-6.736530899999934],[107.26494610000009,-6.734546799999976],[107.26048290000006,-6.735416599999951],[107.26165780000008,-6.731972799999937],[107.25857560000009,-6.731503199999963],[107.25795,-6.733490099999926],[107.25447860000008,-6.734063799999944],[107.25800340000006,-6.730246699999952],[107.25631730000003,-6.730077399999971],[107.25534840000006,-6.727741],[107.25028240000006,-6.725994299999968],[107.251381,-6.723050699999931],[107.25000010000008,-6.721511499999963],[107.25071730000008,-6.713859699999944],[107.25167860000005,-6.712811599999952],[107.25383770000008,-6.714262599999927],[107.25373090000005,-6.712699599999951],[107.25717940000004,-6.710081699999932],[107.25975050000005,-6.715855699999963],[107.26200120000004,-6.713498699999946],[107.26195540000003,-6.711099299999944],[107.26454940000008,-6.71238],[107.26419080000005,-6.709448],[107.26667040000007,-6.710463699999934],[107.26696030000005,-6.709095599999955],[107.26931780000007,-6.708421399999963],[107.26970680000005,-6.710243899999966],[107.27286540000006,-6.710410299999978],[107.27259840000005,-6.712773499999969],[107.27642830000008,-6.713284699999974],[107.27545940000005,-6.710275299999978],[107.27837380000005,-6.710148499999946],[107.28131880000007,-6.715072299999974],[107.28431710000007,-6.716787499999953],[107.28528610000006,-6.715699399999949],[107.28311170000006,-6.712985699999933],[107.28434,-6.707010299999979],[107.28022020000009,-6.707791499999928],[107.27473460000004,-6.706654199999946],[107.26662460000006,-6.7021762],[107.26412980000003,-6.699111599999981],[107.25041980000009,-6.696725099999981],[107.24774180000009,-6.692168899999956],[107.24677770000005,-6.690330399999937],[107.25444870000007,-6.687684899999965],[107.25935860000004,-6.680017],[107.25839250000007,-6.6695415],[107.25963510000008,-6.668205099999966],[107.26003280000003,-6.662127599999963],[107.25876630000005,-6.658417799999938],[107.26116960000007,-6.657489899999973],[107.261078,-6.6559607],[107.26250470000008,-6.656384099999968],[107.26218430000006,-6.654623699999945],[107.26469430000009,-6.653039099999944],[107.26377120000006,-6.635773799999981],[107.25984210000007,-6.632396899999947],[107.25875870000004,-6.629476199999942],[107.25713360000009,-6.630349299999978],[107.25366230000009,-6.628878699999973],[107.24874130000006,-6.623552899999936],[107.24092880000006,-6.618358299999954],[107.23832720000007,-6.61578],[107.23488340000006,-6.607081],[107.228798,-6.604543299999932],[107.22711180000005,-6.602095499999962],[107.22200790000005,-6.6124932],[107.21882640000007,-6.614388099999928],[107.21459210000006,-6.620125],[107.21300520000005,-6.630593],[107.21507280000009,-6.637297299999943],[107.20266740000005,-6.640502599999934],[107.192177,-6.645480799999973],[107.17968,-6.6464974],[107.16972360000005,-6.638850799999943],[107.16816730000005,-6.641071499999953],[107.16902940000006,-6.643344499999955],[107.16504680000008,-6.646964199999957],[107.160248,-6.6455094],[107.15773790000009,-6.647496799999942],[107.15805070000005,-6.650084599999957],[107.15254990000005,-6.649833299999955],[107.150345,-6.654133399999978],[107.15161150000006,-6.660031899999979],[107.15044420000004,-6.662951599999928],[107.14033550000005,-6.667272899999944],[107.13767790000009,-6.666792699999974],[107.13462080000005,-6.670463199999972],[107.130211,-6.669806599999959],[107.121071,-6.663283499999977],[107.11316690000007,-6.663548099999957],[107.10986340000005,-6.665930899999978],[107.107979,-6.663910499999929],[107.10621660000004,-6.664913799999965],[107.10417320000005,-6.663846799999931],[107.102477,-6.6667572],[107.10037250000005,-6.664440799999966],[107.09696210000004,-6.664042099999961],[107.08868420000005,-6.667453899999941],[107.08625050000006,-6.667184899999938],[107.08493060000006,-6.664931399999944],[107.07893390000004,-6.664932399999941],[107.07334150000008,-6.662501899999938],[107.07148,-6.664731599999925],[107.06851980000005,-6.665221299999928],[107.06591810000003,-6.662019799999939],[107.05519880000008,-6.659223599999962],[107.05132310000005,-6.656587699999932],[107.04684460000004,-6.658236599999952],[107.04592910000008,-6.656701699999928],[107.04279340000005,-6.656684499999926],[107.03847520000005,-6.660855799999979],[107.03531660000004,-6.660541599999931],[107.03314220000004,-6.662932],[107.02543660000003,-6.662424599999952],[107.01589220000005,-6.667966899999954],[107.01183340000006,-6.664846499999953],[107.00940720000006,-6.664727299999981],[107.00613420000008,-6.6681538],[107.00038920000009,-6.666523499999926],[106.99095120000004,-6.668471199999942],[106.99505630000004,-6.678484499999968],[107.00339520000006,-6.6853596],[107.00659190000005,-6.692134399999929],[107.00314350000008,-6.697523699999977],[107.00000020000004,-6.699068599999976],[106.99404180000005,-6.706198399999948],[106.99597140000009,-6.706056699999976],[106.99317160000004,-6.715060799999947],[106.99661180000004,-6.725719199999958],[106.998725,-6.7282978],[106.99890070000004,-6.731692799999962],[106.99649960000005,-6.737847299999942],[106.99445820000005,-6.738047699999981],[106.99082850000008,-6.735445],[106.98789720000008,-6.730605799999978],[106.98809650000004,-6.739822099999969],[106.98576170000007,-6.742903899999931],[106.97840590000004,-6.743418899999938],[106.97423570000007,-6.750592799999936],[106.97580740000006,-6.759130499999969],[106.97434250000003,-6.765287],[106.96515670000008,-6.7703377],[106.96858230000004,-6.773747],[106.97148150000004,-6.780730299999959],[106.983803,-6.789516],[106.99290480000008,-6.804669899999965],[106.996277,-6.819364099999973],[106.99535390000005,-6.824529699999971],[106.99905410000008,-6.832893899999931],[107.00053420000006,-6.840541],[107.00526440000004,-6.848387799999955],[107.00936910000007,-6.849237],[107.01121540000008,-6.852024099999937],[107.02379620000005,-6.860778899999957],[107.02693190000008,-6.867860899999926],[107.02859510000008,-6.868172699999946],[107.03287570000003,-6.8736958],[107.03121370000008,-6.877926899999977],[107.03520160000005,-6.886653699999954],[107.02931230000007,-6.887963399999933],[107.02867150000009,-6.891586299999972],[107.03090350000008,-6.8930315],[107.03206650000004,-6.897610699999973],[107.04017650000009,-6.899835199999927],[107.04003920000008,-6.904842899999949],[107.04182450000008,-6.909130199999936],[107.04728710000006,-6.909829699999932],[107.04896560000009,-6.915077799999949],[107.05000320000005,-6.929739099999949],[107.04858410000008,-6.932457],[107.04870620000008,-6.942375799999979],[107.05382550000007,-6.950056599999925],[107.06269450000008,-6.956314099999929],[107.06501740000004,-6.964986199999942],[107.06413890000005,-6.966868099999942],[107.05784040000009,-6.967622499999948],[107.04908660000007,-6.960602599999959],[107.046837,-6.960837399999946],[107.04557820000008,-6.9627491],[107.04157270000007,-6.962926],[107.041115,-6.965263899999968],[107.037285,-6.969405699999925],[107.03676620000005,-6.974802599999975],[107.03337110000007,-6.976351299999976],[107.03234120000008,-6.981159799999944],[107.03408830000006,-6.986052599999937],[107.03303540000007,-6.987178899999947],[107.03808610000004,-6.989285499999937],[107.04553240000007,-7.002198799999974],[107.04965990000005,-7.004754599999956],[107.04705830000006,-7.011588199999949],[107.04942340000008,-7.014714799999979],[107.04900380000004,-7.017764599999964],[107.04580750000008,-7.0222201],[107.04292310000005,-7.023213899999973],[107.04747790000005,-7.031469899999934],[107.03942890000008,-7.037366],[107.03884140000008,-7.043379799999968],[107.02823650000005,-7.044504699999948],[107.02251450000006,-7.037323099999981],[107.01206220000006,-7.035637399999928],[107.00750240000008,-7.036704799999939],[107.00165570000007,-7.030568599999981],[106.994713,-7.028416199999981],[106.989052,-7.017023599999959],[106.98261280000008,-7.013744899999949],[106.97706790000007,-7.014613399999973],[106.97568940000008,-7.013576499999942],[106.97508450000004,-7.016760799999929],[106.97092460000005,-7.021951],[106.96545490000005,-7.025712699999929],[106.95915820000005,-7.0335483],[106.95331590000006,-7.058770699999968],[106.95486470000009,-7.0634575],[106.95303360000008,-7.064422599999943],[106.95394150000004,-7.068388],[106.95018780000004,-7.071409299999971],[106.94606030000006,-7.070845599999927],[106.94641130000008,-7.072038199999952],[106.94357320000006,-7.074841],[106.94555680000008,-7.0798164],[106.94689960000005,-7.079702399999974],[106.94635030000006,-7.081566799999962],[106.94827290000006,-7.0859752],[106.94400040000005,-7.087030499999969],[106.94594590000008,-7.0909319],[106.94304670000008,-7.092424],[106.94219990000005,-7.100403799999981],[106.93922440000006,-7.102266799999938],[106.93907180000008,-7.107516299999929],[106.93662280000007,-7.109110899999962],[106.93825550000008,-7.112929399999928],[106.93652360000004,-7.115429],[106.93703480000005,-7.1228309],[106.94203970000007,-7.128411799999981],[106.94402330000008,-7.127272199999936],[106.94531270000004,-7.128175799999951],[106.94395470000006,-7.130891399999939],[106.94168870000004,-7.131210399999929],[106.94236010000009,-7.132854],[106.94679280000008,-7.131249],[106.94552630000004,-7.133324199999947],[106.94901290000007,-7.134927299999958],[106.94898240000003,-7.132670399999938],[106.95253010000005,-7.132783],[106.95443740000007,-7.135806099999968],[106.95681020000006,-7.136500399999932],[106.95832080000008,-7.139849199999958],[106.96267720000009,-7.140071],[106.965912,-7.144946599999969],[106.96536270000007,-7.148260599999958],[106.96743030000005,-7.155955399999925],[106.96607990000007,-7.156349199999966],[106.96474470000004,-7.154218199999946],[106.960457,-7.156425],[106.96038830000003,-7.159234099999935],[106.95773330000009,-7.1613947],[106.95784780000008,-7.1645456],[106.96095290000005,-7.170465499999978],[106.96507280000009,-7.172939799999938],[106.96317310000006,-7.173726099999953],[106.96408860000008,-7.177809799999977],[106.96562980000004,-7.1764055],[106.96789570000004,-7.178281299999981],[106.97039810000007,-7.175936699999966],[106.97247330000005,-7.184207899999933],[106.97474690000007,-7.185556399999939],[106.973694,-7.1899515],[106.97184770000007,-7.189840799999956],[106.97142050000008,-7.188234399999942],[106.96710220000006,-7.189558099999942],[106.96788040000007,-7.196226599999932],[106.969948,-7.196112199999959],[106.97303790000007,-7.1991973],[106.97378560000004,-7.204666199999963],[106.97531150000003,-7.206294599999978],[106.97520460000004,-7.215076499999952],[106.98014080000007,-7.216703],[106.98263570000006,-7.222243399999968],[106.98263570000006,-7.228479899999968],[106.98083510000004,-7.229608599999949],[106.97942370000004,-7.236378699999932],[106.97995780000008,-7.241189],[106.97452560000005,-7.241054099999928],[106.97207660000004,-7.246576299999958],[106.96697250000005,-7.2455173],[106.96837630000005,-7.248688699999946],[106.96671310000005,-7.250698099999966],[106.963402,-7.250472599999966],[106.96473710000004,-7.253813299999933],[106.96191420000008,-7.256311],[106.96031970000007,-7.260272099999952],[106.96476,-7.265717599999959],[106.96999380000005,-7.266302199999927],[106.96997850000008,-7.271258899999964],[106.97283190000007,-7.273929199999941],[106.97225970000005,-7.279396599999927],[106.97599040000006,-7.284421499999951],[106.97418230000005,-7.286999699999967],[106.97498340000004,-7.290116799999964],[106.973015,-7.290167799999949],[106.97309130000008,-7.294911899999931],[106.96717090000004,-7.312165799999946],[106.96146410000006,-7.318206299999929],[106.95716870000007,-7.318083799999954],[106.95374320000008,-7.321148899999969],[106.95024890000008,-7.321446399999957],[106.94675460000008,-7.318467599999963],[106.94059010000007,-7.317816299999947],[106.93582170000008,-7.321240399999965],[106.93393720000006,-7.324397599999941],[106.93359390000006,-7.328734399999973],[106.93531820000004,-7.332808],[106.93411270000007,-7.334126499999968],[106.92757430000006,-7.332996399999956],[106.92622390000008,-7.326958199999979],[106.92169210000009,-7.324732299999937],[106.91953290000004,-7.322002],[106.91507740000009,-7.322981399999946],[106.91141530000004,-7.328292399999953],[106.91082020000005,-7.334748299999944],[106.90798210000008,-7.339463299999977],[106.90980550000006,-7.345118],[106.90940110000008,-7.349299899999949],[106.90345020000007,-7.351259699999957],[106.90318320000006,-7.342561699999976],[106.89527910000004,-7.341423499999962],[106.89286820000007,-7.343349399999965],[106.89492050000007,-7.347577099999967],[106.88998430000004,-7.348712899999953],[106.88471240000007,-7.353368299999943],[106.88112660000007,-7.351450899999975],[106.87683890000005,-7.353525199999979],[106.875931,-7.355833],[106.876877,-7.362344699999937],[106.87536640000008,-7.363961699999948],[106.87266560000006,-7.364385599999935],[106.87107860000003,-7.363175399999932],[106.87029280000007,-7.356995599999948],[106.86864490000005,-7.355588399999931],[106.86111470000009,-7.363424799999962],[106.85565970000005,-7.362029499999949],[106.86081710000008,-7.356307],[106.85855880000008,-7.354219],[106.85330220000009,-7.356870199999946],[106.85080740000006,-7.360733],[106.84491750000007,-7.356429599999956],[106.84251420000004,-7.358471399999928],[106.83564780000006,-7.3572378],[106.83193150000005,-7.358004199999925],[106.82682050000005,-7.365441799999928],[106.82313560000006,-7.362461499999938],[106.81967180000004,-7.372426899999937],[106.80524460000004,-7.388107699999978],[106.79559340000009,-7.3916039],[106.79512810000006,-7.3968186],[106.78277780000008,-7.396905899999979],[106.77714560000004,-7.401955099999952],[106.776047,-7.406256199999973],[106.78084580000007,-7.415598799999941],[106.78335590000006,-7.416240199999947],[106.78644750000007,-7.410625499999981],[106.78916950000007,-7.408812499999954],[106.79205420000005,-7.417283599999962],[106.79282950000004,-7.415118299999961],[106.79388650000004,-7.433649899999978],[106.79134680000004,-7.437560299999973],[106.83636110000003,-7.433511899999928],[106.86202510000004,-7.434330699999975],[106.86360220000006,-7.430585199999939],[106.86584210000007,-7.432817399999976],[106.87235460000005,-7.433866099999932],[106.87570750000003,-7.432553699999971],[106.88136810000009,-7.433294499999931],[106.88217250000008,-7.430484199999967],[106.88385970000007,-7.430015],[106.88323920000005,-7.435059899999942],[106.98648,-7.44491],[107.00581,-7.4479],[107.04158,-7.44914],[107.06219,-7.45206],[107.07801,-7.45254],[107.10535,-7.45759],[107.1076,-7.45685],[107.11375,-7.45942],[107.16489,-7.46933],[107.18607,-7.47557],[107.24765,-7.48911],[107.29083,-7.49439],[107.32036060000007,-7.494313199999965],[107.35216,-7.49993],[107.3749,-7.49862],[107.38479,-7.49989],[107.39107,-7.49785],[107.39349,-7.49476],[107.39973,-7.49581],[107.40169,-7.4993],[107.40777,-7.5032],[107.42305640000006,-7.505569099999946],[107.42622390000008,-7.5024711],[107.42629250000005,-7.494933299999957],[107.42150130000005,-7.488273799999945],[107.42193620000006,-7.480593399999975],[107.423813,-7.476693799999964],[107.42187510000008,-7.473257699999976],[107.42305,-7.469232199999965],[107.42025010000003,-7.462371499999961],[107.42806250000007,-7.449563199999943],[107.42643750000008,-7.444059099999947],[107.429268,-7.443681899999945],[107.42968760000008,-7.441351099999963],[107.42619340000005,-7.439730299999951],[107.43068710000006,-7.434412699999939],[107.42986310000003,-7.431797699999947],[107.43187730000005,-7.423580799999968],[107.433838,-7.420406],[107.43899550000003,-7.417416699999933],[107.45111860000009,-7.413545799999952],[107.45478830000008,-7.408571399999971],[107.45967880000006,-7.407739299999946],[107.473816,-7.401506599999948],[107.47368630000005,-7.382140299999946],[107.47687540000004,-7.376791599999933],[107.476883,-7.370788699999935],[107.48005690000008,-7.367212499999937],[107.479889,-7.364266599999951],[107.48168190000007,-7.364156899999955],[107.48456580000004,-7.356907099999944],[107.48480240000004,-7.352523499999961],[107.48319250000009,-7.348533799999927],[107.47878280000003,-7.346843],[107.47547160000005,-7.343442599999946],[107.47274790000006,-7.332975099999942],[107.46588150000008,-7.326974099999973],[107.46096810000006,-7.309959599999956],[107.45926680000008,-7.308819899999946],[107.45731370000004,-7.302426499999967],[107.45874030000004,-7.298289],[107.45494090000005,-7.292119699999944],[107.45851910000005,-7.2858622],[107.46363080000003,-7.282469899999967],[107.462494,-7.279960799999969],[107.46450820000007,-7.279544499999929],[107.46424110000004,-7.276297299999953],[107.46851360000005,-7.274641699999961],[107.47218330000004,-7.265468799999951],[107.474228,-7.265397299999961],[107.47420510000006,-7.261996],[107.47621160000006,-7.260419499999955],[107.47664650000007,-7.256526199999939],[107.47421280000003,-7.254566399999931],[107.46969610000008,-7.257960499999967],[107.46847550000007,-7.253977],[107.464058,-7.252423],[107.46080790000008,-7.253567399999952],[107.45511640000007,-7.260341799999935],[107.44123090000005,-7.259925099999975],[107.43264780000004,-7.256973399999936],[107.424347,-7.2602407],[107.40660870000005,-7.255157199999928],[107.39876570000007,-7.248053699999957],[107.37979190000004,-7.241673399999968],[107.36905350000006,-7.240102899999954],[107.35675520000007,-7.235624299999927],[107.35234970000005,-7.238111],[107.34611520000004,-7.238515],[107.33901990000004,-7.227210199999945],[107.33748640000005,-7.215970699999957],[107.33045970000006,-7.213022799999976],[107.32531780000005,-7.203826899999967],[107.31294260000004,-7.205226599999946],[107.30156720000008,-7.209388899999965],[107.29042590000006,-7.2077238],[107.25772870000009,-7.208778499999937],[107.25137340000003,-7.207688399999938],[107.25103770000004,-7.199767699999938],[107.25340280000006,-7.195499499999926],[107.27626050000003,-7.184015399999964],[107.27708450000006,-7.178982399999938],[107.28314220000004,-7.174324699999943],[107.29240430000004,-7.1709734],[107.29700480000008,-7.163938199999961],[107.30551920000005,-7.163518099999976],[107.31523910000004,-7.153152599999942],[107.31695570000005,-7.145413499999961],[107.31559,-7.134705699999927],[107.31311810000005,-7.131523299999969],[107.31534930000004,-7.128839099999936],[107.309165,-7.12412],[107.30840080000007,-7.118123799999978],[107.30911250000008,-7.1106196],[107.31175370000005,-7.108123499999977]]]},"properties":{"shapeName":"Cianjur","shapeISO":"","shapeID":"22746128B41887908631953","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[108.96709440000006,-7.332210499999974],[108.962204,-7.334203599999967],[108.95734410000006,-7.330954],[108.95152290000004,-7.331161899999927],[108.950058,-7.329517299999964],[108.95230870000006,-7.328883099999928],[108.95240020000006,-7.326159899999936],[108.95166780000005,-7.324613],[108.949173,-7.324370299999941],[108.95161440000004,-7.318651099999954],[108.95025640000006,-7.3153667],[108.94348150000008,-7.317692699999952],[108.93911750000007,-7.315647],[108.93382270000006,-7.319006799999954],[108.92851260000003,-7.317948699999931],[108.92135620000005,-7.312246699999946],[108.918541,-7.3046998],[108.91400150000004,-7.302894499999979],[108.91275030000008,-7.290978299999949],[108.90928650000006,-7.288218399999948],[108.894043,-7.284119499999974],[108.89204410000008,-7.282278899999937],[108.89322670000007,-7.275938399999973],[108.88468170000004,-7.275347199999942],[108.88260650000007,-7.272541499999932],[108.86587530000008,-7.272001199999977],[108.86241150000006,-7.268405299999927],[108.86203770000009,-7.263779599999964],[108.85626990000009,-7.260804599999972],[108.85420990000006,-7.254537499999969],[108.85259250000007,-7.253805099999965],[108.85288240000006,-7.252327399999956],[108.85714720000004,-7.250379],[108.85713960000004,-7.247033],[108.86302950000004,-7.2464317],[108.86460120000004,-7.243123],[108.86262520000008,-7.243416199999956],[108.857338,-7.240546599999959],[108.85498050000007,-7.2411527],[108.85066220000004,-7.238122899999951],[108.83965310000008,-7.2368206],[108.83132180000007,-7.232087499999977],[108.82497410000008,-7.235013899999956],[108.823433,-7.232366499999955],[108.81880950000004,-7.231619699999953],[108.81856540000007,-7.228825499999971],[108.821167,-7.226454199999978],[108.821312,-7.220537599999943],[108.81955720000008,-7.215188399999931],[108.81684110000003,-7.211187799999948],[108.81423190000004,-7.2115473],[108.81069870000005,-7.203938],[108.80856030000007,-7.205523199999959],[108.80261420000005,-7.205931299999975],[108.79930880000006,-7.2104968],[108.79041290000004,-7.213421299999936],[108.789444,-7.210119599999928],[108.78268440000005,-7.208497],[108.77640540000004,-7.203464399999973],[108.77397160000004,-7.198405699999967],[108.76329830000009,-7.199481399999968],[108.75548560000004,-7.194773099999964],[108.75271880000008,-7.195323199999962],[108.75000010000008,-7.187334899999939],[108.74881240000008,-7.194062499999973],[108.74355320000006,-7.197782],[108.73492440000007,-7.194744499999956],[108.72372440000004,-7.193652499999928],[108.721344,-7.190183499999932],[108.72220710000005,-7.182475099999976],[108.71849670000006,-7.178581899999926],[108.71576650000009,-7.172535699999969],[108.71047890000006,-7.1696159],[108.70602570000005,-7.163806799999975],[108.70218540000008,-7.1666265],[108.698251,-7.1663884],[108.69405390000009,-7.159957099999929],[108.69458640000005,-7.155997399999933],[108.69310220000006,-7.151923199999942],[108.68105320000006,-7.1526054],[108.67490390000006,-7.156739099999982],[108.67243960000008,-7.155819799999961],[108.66705330000008,-7.1567291],[108.66261120000007,-7.154654299999947],[108.65864870000007,-7.155612699999949],[108.65100870000003,-7.1495913],[108.64576720000008,-7.142335299999957],[108.63921360000006,-7.142244199999936],[108.63494090000006,-7.138725299999976],[108.62834930000008,-7.141801199999975],[108.625,-7.139707],[108.61930090000004,-7.141106499999978],[108.61460880000004,-7.147034499999961],[108.60976410000006,-7.149753],[108.603447,-7.151018],[108.60063180000009,-7.149901299999954],[108.59172060000009,-7.150393799999961],[108.58879210000003,-7.155062499999929],[108.58336130000004,-7.157349699999941],[108.58075730000007,-7.164036599999974],[108.57475290000008,-7.165123799999947],[108.57078560000008,-7.164172099999973],[108.56775670000007,-7.165478599999972],[108.56220250000007,-7.171400899999981],[108.56573490000005,-7.180653899999925],[108.56018070000005,-7.1858822],[108.56095430000005,-7.191134699999964],[108.55765540000004,-7.191696099999945],[108.55773060000007,-7.192779099999939],[108.563263,-7.194508399999961],[108.56609350000008,-7.200827],[108.572815,-7.206056],[108.574112,-7.206162799999959],[108.57324330000006,-7.203098199999943],[108.57747650000005,-7.205259699999942],[108.57892610000005,-7.208296699999948],[108.58116310000008,-7.206545199999937],[108.58211520000003,-7.210877299999936],[108.58049020000004,-7.213887099999965],[108.58167270000007,-7.217178199999978],[108.58524330000006,-7.218628799999976],[108.582428,-7.223818699999981],[108.58410650000008,-7.22547],[108.58423620000008,-7.230819599999961],[108.58016210000005,-7.238277799999935],[108.58564,-7.242246499999965],[108.58359530000007,-7.243189699999959],[108.58013160000007,-7.250831499999947],[108.58141330000007,-7.254053499999941],[108.57846070000005,-7.255915],[108.57650760000007,-7.253444599999966],[108.57418830000006,-7.253561899999966],[108.56878670000003,-7.261797799999954],[108.57109070000007,-7.266601],[108.56918340000004,-7.267691],[108.56992340000005,-7.271255399999973],[108.56704720000005,-7.278663499999936],[108.56279760000007,-7.281100599999945],[108.55590060000009,-7.288206],[108.56000520000003,-7.292781199999979],[108.56037910000003,-7.300444],[108.56436160000004,-7.304112299999929],[108.56293490000007,-7.306931399999939],[108.55908970000007,-7.307191299999943],[108.56285860000008,-7.314224599999932],[108.56242370000007,-7.318236199999944],[108.56357580000008,-7.320206],[108.55997470000005,-7.323358399999961],[108.55943240000005,-7.3264916],[108.55853270000006,-7.33507],[108.56279760000007,-7.3333005],[108.56437690000007,-7.336912499999926],[108.56757390000007,-7.332205199999976],[108.57544710000008,-7.334296599999959],[108.57539370000006,-7.339345799999933],[108.57988740000008,-7.340211699999941],[108.58338930000008,-7.34979],[108.59070590000005,-7.344521],[108.59223180000004,-7.345392599999968],[108.59202580000004,-7.348067199999946],[108.59404,-7.347279399999934],[108.59915780000006,-7.350600499999928],[108.61221320000004,-7.343945399999939],[108.61568460000007,-7.345841299999961],[108.61462410000007,-7.349547299999927],[108.61743170000005,-7.350166699999932],[108.61904150000004,-7.349571099999935],[108.61757660000006,-7.3472327],[108.61843880000004,-7.344647799999962],[108.62651070000004,-7.345783599999947],[108.636879,-7.342106199999932],[108.64542390000008,-7.3456305],[108.64746860000008,-7.336957799999936],[108.65108490000006,-7.341501099999959],[108.65599830000008,-7.339000599999963],[108.66175850000008,-7.342062399999975],[108.66479090000007,-7.347532199999932],[108.65975960000009,-7.348911699999974],[108.659607,-7.350726499999951],[108.661874,-7.352496],[108.667244,-7.353484],[108.67069250000009,-7.357390799999962],[108.67599490000003,-7.357340199999953],[108.67701720000008,-7.365999599999952],[108.67868050000004,-7.367976599999963],[108.68321230000004,-7.369471899999951],[108.68314370000007,-7.371910899999932],[108.67786410000008,-7.376733199999933],[108.68524170000006,-7.379774],[108.68428040000003,-7.3863772],[108.68917090000008,-7.393096799999967],[108.68654630000009,-7.395163],[108.687088,-7.399546499999929],[108.68975070000005,-7.4005322],[108.69440470000006,-7.399177899999927],[108.69686890000008,-7.399843099999941],[108.70107270000005,-7.409795199999962],[108.69969180000004,-7.414895],[108.70603950000009,-7.418176499999959],[108.71194460000004,-7.426291799999944],[108.717598,-7.426419199999941],[108.71937570000006,-7.429972599999928],[108.72332,-7.431038799999953],[108.72106940000003,-7.435149599999932],[108.72072610000004,-7.4444631],[108.71252450000009,-7.4576],[108.71601690000006,-7.466276199999982],[108.72018440000005,-7.471951399999966],[108.72003250000006,-7.480479599999967],[108.72337490000007,-7.489340399999946],[108.73545080000008,-7.505031499999973],[108.73721860000006,-7.517505599999936],[108.743866,-7.533063799999979],[108.74414830000006,-7.539790499999981],[108.75124360000007,-7.545062399999949],[108.75137330000007,-7.553417099999933],[108.754715,-7.559193499999935],[108.74854280000005,-7.567302099999949],[108.74949650000008,-7.571932199999935],[108.74768830000005,-7.574964399999942],[108.75113680000004,-7.576595199999929],[108.752266,-7.58467],[108.74864960000008,-7.586123799999939],[108.75063330000006,-7.591903099999968],[108.74745940000008,-7.594066],[108.744278,-7.591354299999978],[108.74097450000005,-7.592513],[108.741478,-7.599824799999965],[108.73760990000005,-7.603243299999974],[108.73716740000003,-7.610501699999929],[108.73569490000006,-7.612053799999956],[108.73217010000008,-7.611971299999936],[108.732193,-7.613706499999978],[108.73468020000007,-7.616054399999939],[108.74168570000006,-7.613743599999964],[108.74082950000007,-7.619061399999964],[108.74552920000008,-7.619222099999945],[108.74723820000008,-7.620766099999969],[108.74800110000007,-7.6304292],[108.75001530000009,-7.634485099999949],[108.75528720000005,-7.635096899999951],[108.75493620000009,-7.639647399999944],[108.764,-7.645776699999942],[108.76484690000007,-7.650125899999978],[108.767952,-7.652984],[108.77273560000003,-7.655473599999937],[108.77766420000006,-7.652329799999961],[108.77922060000009,-7.658097599999962],[108.78530120000005,-7.658918699999958],[108.78485870000009,-7.665093799999966],[108.78644570000006,-7.668131699999947],[108.79122170000005,-7.670302799999945],[108.79581450000006,-7.669038199999932],[108.79783630000009,-7.666854299999954],[108.79950720000005,-7.667864699999939],[108.80138150000005,-7.674432499999966],[108.79428870000004,-7.680813699999931],[108.794449,-7.683981],[108.79686020000008,-7.687805899999944],[108.80218,-7.6867],[108.80255,-7.69044],[108.80135,-7.69192],[108.79897,-7.69187],[108.79875,-7.69325],[108.79745,-7.69283],[108.79617,-7.69496],[108.7922,-7.69453],[108.78778,-7.7022],[108.78292,-7.70234],[108.78676,-7.70884],[108.78935,-7.70585],[108.79356,-7.70497],[108.79681,-7.70681],[108.8,-7.71172],[108.80046,-7.717],[108.79395,-7.71914],[108.79277,-7.72258],[108.78854,-7.72522],[108.79027,-7.72982],[108.78823,-7.73232],[108.78914,-7.73348],[108.78546,-7.73574],[108.78993,-7.73844],[108.79602,-7.73479],[108.79832,-7.73894],[108.79767,-7.74154],[108.7991,-7.74253],[108.80519,-7.74178],[108.8096,-7.73609],[108.81399,-7.73455],[108.82975,-7.73891],[108.83257,-7.73768],[108.83636,-7.73898],[108.83876,-7.737],[108.84541,-7.74089],[108.8477,-7.73961],[108.85541,-7.74393],[108.85859,-7.74316],[108.85649,-7.74041],[108.86292,-7.74116],[108.8694,-7.74462],[108.87823,-7.74453],[108.88278,-7.74559],[108.88459,-7.74829],[108.89161,-7.74934],[108.89313,-7.75081],[108.89542,-7.75006],[108.90366,-7.75197],[108.90488,-7.75452],[108.91045,-7.75155],[108.91386,-7.7527],[108.9139,-7.75389],[108.91578,-7.75272],[108.92058,-7.75489],[108.92151,-7.75385],[108.92558,-7.75494],[108.93351,-7.75899],[108.93963,-7.75871],[108.94678,-7.76214],[108.94958,-7.76077],[108.95633,-7.763],[108.95839,-7.76124],[108.96147,-7.76433],[108.9647,-7.7647],[108.96511,-7.76318],[108.96698,-7.76329],[108.97205,-7.76669],[108.97293,-7.76433],[108.97512,-7.76372],[108.97591,-7.76789],[108.98285,-7.77184],[108.98409,-7.77076],[108.98874,-7.77354],[109.00677,-7.77784],[109.02037,-7.77819],[109.01974,-7.77561],[109.02138,-7.77327],[109.02356,-7.77471],[109.02449,-7.77868],[109.02583,-7.77735],[109.02715,-7.77867],[109.02966,-7.77764],[109.03037,-7.77879],[109.03452,-7.77897],[109.03805,-7.78424],[109.04063,-7.78472],[109.04448,-7.78412],[109.04696,-7.78155],[109.04458,-7.77939],[109.04498,-7.77764],[109.04801,-7.77717],[109.05027,-7.77503],[109.04358,-7.76012],[109.03679,-7.76164],[109.03484,-7.76566],[109.02846,-7.76591],[109.01939,-7.7607],[109.01743,-7.75436],[109.01768,-7.75238],[109.0206,-7.7521],[109.02029,-7.74062],[109.02386,-7.72778],[109.0332,-7.71418],[109.05093,-7.70036],[109.06261,-7.69476],[109.08855,-7.68771],[109.10859,-7.68681],[109.14703,-7.69072],[109.17127,-7.69191],[109.17385,-7.69093],[109.17646,-7.69242],[109.24302,-7.69616],[109.28999,-7.70079],[109.32621,-7.70598],[109.36791,-7.71505],[109.38309,-7.71982],[109.39194980000008,-7.725699799999973],[109.39418030000007,-7.720813199999952],[109.38837430000007,-7.720034099999964],[109.38743590000007,-7.715267099999949],[109.39058690000007,-7.7021007],[109.39524840000007,-7.698649399999965],[109.39534,-7.6957793],[109.38758090000005,-7.687603899999942],[109.38616180000008,-7.687500899999975],[109.38456730000007,-7.690902199999925],[109.37963110000004,-7.686680299999978],[109.38753510000004,-7.680725],[109.38660430000004,-7.673070399999972],[109.391655,-7.672252599999979],[109.39136510000009,-7.669206599999939],[109.38848120000006,-7.668560399999933],[109.38597110000006,-7.670736699999964],[109.38483430000008,-7.669599],[109.38308720000003,-7.665216899999962],[109.38630370000004,-7.660743499999967],[109.38340750000003,-7.663710899999955],[109.38297270000004,-7.660044099999936],[109.37917750000008,-7.6567026],[109.37797110000008,-7.6578688],[109.37254340000004,-7.656407799999954],[109.369545,-7.652703699999961],[109.36203,-7.649683],[109.36200190000005,-7.644859899999972],[109.35883930000006,-7.640083799999957],[109.34558420000008,-7.642363],[109.34382960000005,-7.637969799999951],[109.32900190000004,-7.632288199999948],[109.29869080000009,-7.6273393],[109.29187380000008,-7.624320299999965],[109.26333620000008,-7.620280199999968],[109.26489260000005,-7.608282],[109.26876070000009,-7.598301299999946],[109.26820380000004,-7.592558299999951],[109.25392150000005,-7.590855499999975],[109.21488950000008,-7.564858799999968],[109.19867710000005,-7.557056399999965],[109.17276770000007,-7.552627],[109.16909790000005,-7.553328399999941],[109.170764,-7.565638499999977],[109.16936150000004,-7.571861199999944],[109.16743470000006,-7.575166599999932],[109.15979770000007,-7.577695799999958],[109.13888550000007,-7.578872599999954],[109.13731390000004,-7.5773],[109.13055420000006,-7.576159899999936],[109.11870580000004,-7.578122499999949],[109.11398320000006,-7.576611],[109.11057280000006,-7.578491099999951],[109.10694890000008,-7.577223699999934],[109.09353640000006,-7.577889399999947],[109.08293160000005,-7.573190099999977],[109.067009,-7.573357],[109.06018070000005,-7.568525299999976],[109.05805970000006,-7.556279599999925],[109.05013280000009,-7.559545499999956],[109.042244,-7.559453],[109.025528,-7.549851799999942],[109.02281190000008,-7.550054899999964],[109.01985170000006,-7.547399],[109.01381690000005,-7.545747699999936],[109.01271060000005,-7.543936699999961],[109.00279240000003,-7.543784499999958],[109.00458530000009,-7.529073199999971],[109.00087740000004,-7.529361599999959],[109,-7.52676],[108.98934180000003,-7.523866599999963],[108.98354340000009,-7.524344399999961],[108.98099520000005,-7.519809599999974],[108.97740180000005,-7.520678],[108.97305650000004,-7.518662099999972],[108.97342810000004,-7.513573599999972],[108.96444060000005,-7.504928499999949],[108.96116760000007,-7.495312599999977],[108.95751310000009,-7.4937653],[108.95901610000004,-7.491061599999966],[108.96407440000007,-7.4875655],[108.96481450000005,-7.485208],[108.96339540000008,-7.478227599999968],[108.96431850000005,-7.472876],[108.95990110000008,-7.469879099999957],[108.94826630000006,-7.468025599999976],[108.94610720000009,-7.465783599999952],[108.94184240000004,-7.464428899999973],[108.92074710000009,-7.464246699999933],[108.90976730000006,-7.466069199999936],[108.90753180000007,-7.472658599999932],[108.90328230000006,-7.476377899999932],[108.90107740000008,-7.474470599999961],[108.899933,-7.468163],[108.89756790000007,-7.466912199999967],[108.89788070000009,-7.463714099999947],[108.89530950000005,-7.461952599999961],[108.89514930000007,-7.457461799999976],[108.89251720000004,-7.455821899999933],[108.89138480000008,-7.448460399999931],[108.91453550000006,-7.445004899999958],[108.91723630000007,-7.4407925],[108.92162330000008,-7.439006199999938],[108.92367560000008,-7.436253],[108.927147,-7.435270699999933],[108.931572,-7.431331099999966],[108.93011480000007,-7.423340699999926],[108.93909460000003,-7.412459799999965],[108.93543240000008,-7.405758299999945],[108.93853,-7.3981918],[108.93869020000005,-7.3927988],[108.93554690000008,-7.390024099999948],[108.93981940000003,-7.385689199999945],[108.94503020000008,-7.384449899999936],[108.94936380000007,-7.380885499999977],[108.95184330000006,-7.371707799999967],[108.95449070000006,-7.368461099999934],[108.94960030000004,-7.365518499999951],[108.950058,-7.363578699999948],[108.95465850000005,-7.359383],[108.95418550000005,-7.358432199999982],[108.95642860000004,-7.358707799999934],[108.96249390000008,-7.354402499999935],[108.96290590000007,-7.346850299999971],[108.96162420000007,-7.344966399999976],[108.96292120000004,-7.345423099999948],[108.96493530000004,-7.342419599999971],[108.96725470000007,-7.336075199999925],[108.96709440000006,-7.332210499999974]]]},"properties":{"shapeName":"Cilacap","shapeISO":"","shapeID":"22746128B69387733624627","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[108.68500520000003,-6.769898299999966],[108.68589020000007,-6.769546399999967],[108.68355570000006,-6.768851199999972],[108.68137360000009,-6.771135199999947],[108.68500520000003,-6.769898299999966]]],[[[108.83381950000006,-6.758009499999957],[108.83522590000007,-6.746678899999949],[108.83715320000005,-6.743752099999938],[108.83936610000006,-6.7438949],[108.841579,-6.739611899999943],[108.84688140000009,-6.737361899999939],[108.84642460000003,-6.734677799999929],[108.84282680000007,-6.733021699999938],[108.84065670000007,-6.733992499999943],[108.83940040000005,-6.736962099999971],[108.83391810000006,-6.738104299999975],[108.83317570000008,-6.739874599999951],[108.824267,-6.738732399999947],[108.82392440000007,-6.741530699999942],[108.82832160000004,-6.745242599999926],[108.82792190000004,-6.7472414],[108.82278220000006,-6.748954599999934],[108.82095480000004,-6.752723699999933],[108.81752840000007,-6.754551099999958],[108.81221740000007,-6.753466099999969],[108.80473640000008,-6.7587199],[108.80386,-6.760829899999976],[108.80894,-6.764459899999963],[108.80813,-6.77526],[108.80369660000008,-6.783396599999946],[108.79596330000004,-6.791486799999973],[108.77258510000007,-6.805704],[108.77265,-6.80778],[108.77139540000007,-6.806953199999953],[108.74992080000004,-6.814674599999933],[108.73963370000007,-6.812748899999974],[108.73191440000005,-6.8081941],[108.73226520000009,-6.806203699999969],[108.72988570000007,-6.805489899999941],[108.7294,-6.80763],[108.72479370000008,-6.80687],[108.72458980000005,-6.808843499999966],[108.71242050000006,-6.810153599999978],[108.70095150000009,-6.80687],[108.69952830000005,-6.808164799999929],[108.69904790000004,-6.805870599999935],[108.69246240000007,-6.804839799999968],[108.6851,-6.80073],[108.67986940000009,-6.793830499999956],[108.67672850000008,-6.78555],[108.67530090000008,-6.7770791],[108.67858450000006,-6.768703399999936],[108.67649060000008,-6.766847399999961],[108.67658580000005,-6.764420399999949],[108.67349250000007,-6.764896299999975],[108.66179310000007,-6.759315299999969],[108.65149010000005,-6.748488799999961],[108.65067510000006,-6.7552583],[108.64201980000007,-6.764924899999926],[108.62937890000006,-6.770546399999944],[108.62087240000005,-6.768196699999976],[108.61923650000006,-6.764419299999929],[108.61112970000005,-6.768677099999934],[108.60253980000005,-6.763608799999929],[108.59737,-6.75764],[108.59491920000005,-6.745406899999978],[108.587185,-6.749964499999976],[108.58406080000009,-6.747135],[108.58167720000006,-6.747020199999952],[108.57634210000003,-6.751573399999927],[108.575327,-6.7500323],[108.570096,-6.7503168],[108.56648550000006,-6.7547156],[108.56043250000005,-6.756864499999949],[108.55846870000005,-6.7651669],[108.55706270000007,-6.764244799999972],[108.55543390000008,-6.765866599999981],[108.55480330000006,-6.782526699999949],[108.55301880000007,-6.7865696],[108.55110640000004,-6.787606299999936],[108.54992810000005,-6.792889],[108.54495050000008,-6.796174599999972],[108.54167180000007,-6.793696299999965],[108.54236610000004,-6.791966799999955],[108.54096990000005,-6.788336199999947],[108.537833,-6.785950299999968],[108.53371520000007,-6.786219699999947],[108.53052530000008,-6.783205899999928],[108.529625,-6.779138],[108.53580620000008,-6.762367199999971],[108.53368040000004,-6.759103799999934],[108.53494330000007,-6.757893799999977],[108.53139290000007,-6.758649299999945],[108.528946,-6.756803899999966],[108.53017040000009,-6.752830499999959],[108.526758,-6.7517524],[108.52836450000007,-6.7497913],[108.52696410000004,-6.750253699999973],[108.52757620000006,-6.748799099999928],[108.52246920000005,-6.746163199999955],[108.51924530000008,-6.741401199999927],[108.51873020000005,-6.736943099999962],[108.51951920000005,-6.735484099999951],[108.53491980000007,-6.729762499999936],[108.535884,-6.728037399999948],[108.53428550000007,-6.725582],[108.53704650000009,-6.726382599999965],[108.54087520000007,-6.725441199999977],[108.54098140000008,-6.724314599999957],[108.54479480000003,-6.728081699999962],[108.54476810000006,-6.725729499999943],[108.54724580000004,-6.726610799999946],[108.54783190000006,-6.722897899999964],[108.54664850000006,-6.721312599999976],[108.54886140000008,-6.719202399999972],[108.549092,-6.707387799999935],[108.54428330000007,-6.706236199999978],[108.54455070000006,-6.709141599999953],[108.54288620000005,-6.708277199999941],[108.54218670000006,-6.704022],[108.54434420000007,-6.702873199999942],[108.542906,-6.696438],[108.54697630000004,-6.697988],[108.54812530000004,-6.700975599999936],[108.55071480000004,-6.700089499999933],[108.55208350000004,-6.696927499999958],[108.56228490000007,-6.691201],[108.55611620000008,-6.659338299999945],[108.55813030000007,-6.645772399999942],[108.56031940000008,-6.6441305],[108.55114990000004,-6.624403],[108.55207440000004,-6.622587199999941],[108.54331380000008,-6.590673699999968],[108.54279990000003,-6.572428899999977],[108.54629770000008,-6.560317399999974],[108.54319010000006,-6.540544099999977],[108.54450360000004,-6.5354045],[108.54359580000005,-6.529793199999972],[108.53903080000003,-6.516187899999977],[108.52552040000006,-6.517534599999976],[108.51908120000007,-6.521976799999948],[108.51899720000006,-6.527605899999969],[108.51377870000005,-6.527145299999972],[108.50988010000009,-6.528667299999938],[108.50658420000008,-6.533871],[108.50276950000006,-6.534015099999976],[108.50100710000004,-6.536997199999973],[108.500885,-6.542043599999943],[108.49414830000006,-6.542565699999955],[108.49069220000007,-6.545453899999927],[108.49182440000004,-6.550510699999961],[108.49101870000004,-6.554812199999958],[108.48699960000005,-6.559305599999959],[108.48353580000008,-6.556484599999976],[108.48180390000005,-6.5591487],[108.47763830000008,-6.5595073],[108.47529610000004,-6.558253199999967],[108.47335060000006,-6.561384099999941],[108.47358710000009,-6.564583699999957],[108.470192,-6.564671899999951],[108.47031410000005,-6.567700799999955],[108.46829230000009,-6.567902],[108.46750650000007,-6.569879],[108.460167,-6.568361599999946],[108.45772560000006,-6.572448599999973],[108.45455170000008,-6.573065699999972],[108.448453,-6.5708181],[108.44887190000009,-6.537065],[108.44701480000003,-6.536564799999951],[108.44535830000007,-6.529397399999937],[108.43756870000004,-6.522149899999931],[108.43009950000004,-6.520262099999968],[108.41749580000004,-6.524516499999947],[108.40863320000005,-6.529991199999927],[108.40410920000005,-6.535734399999967],[108.39374880000008,-6.534478699999966],[108.39277270000008,-6.536153699999943],[108.39078130000007,-6.536132799999962],[108.38693240000003,-6.544830199999979],[108.38441510000007,-6.545988499999964],[108.38393710000008,-6.547009799999955],[108.38558360000007,-6.547543699999949],[108.37780770000006,-6.545946],[108.373183,-6.548629],[108.37174730000004,-6.554375499999935],[108.36054870000004,-6.555426199999943],[108.35533670000007,-6.566454599999929],[108.35361570000003,-6.575598899999932],[108.34807860000006,-6.577833099999964],[108.33117680000004,-6.594108499999948],[108.32863620000006,-6.5983528],[108.33038340000007,-6.602840199999946],[108.32871440000008,-6.604531599999973],[108.33024560000007,-6.605225],[108.330719,-6.607929599999977],[108.32550060000005,-6.612955399999976],[108.32349020000004,-6.620803499999965],[108.34324650000008,-6.622710599999948],[108.34598550000004,-6.625000399999976],[108.34453340000005,-6.635081299999968],[108.34732340000005,-6.638716899999963],[108.34425660000005,-6.6470473],[108.34341860000006,-6.654864599999939],[108.33985530000007,-6.659993799999938],[108.33954030000007,-6.674127299999952],[108.35853140000006,-6.681246],[108.36114940000004,-6.688860099999943],[108.36407120000007,-6.691035899999974],[108.36420390000006,-6.693278799999973],[108.36686280000004,-6.693993099999943],[108.36816440000007,-6.697711599999934],[108.36716280000007,-6.699425699999949],[108.36873630000008,-6.702998],[108.36505130000006,-6.703827699999977],[108.36544810000004,-6.706735499999979],[108.36360940000009,-6.709804399999939],[108.36002360000003,-6.710594499999956],[108.35831460000009,-6.713796199999933],[108.36082470000008,-6.714898],[108.36385450000006,-6.721802599999933],[108.36291550000004,-6.72294],[108.364167,-6.724058799999966],[108.366765,-6.721952899999962],[108.36848080000004,-6.723503699999981],[108.36895330000004,-6.730200699999955],[108.37043340000008,-6.7319188],[108.36862950000005,-6.736568299999931],[108.35896010000005,-6.743869099999927],[108.35938690000006,-6.751843],[108.36499410000005,-6.759357099999932],[108.37346650000006,-6.759392099999957],[108.38444530000004,-6.765174699999932],[108.386612,-6.763680799999975],[108.38901520000007,-6.767500299999938],[108.39931490000004,-6.774121099999945],[108.40081790000005,-6.778875199999959],[108.39814510000008,-6.784074201999942],[108.40102910000007,-6.7844368],[108.40296950000004,-6.7827418],[108.402615,-6.785790299999974],[108.40434210000006,-6.787783199999978],[108.40748880000007,-6.788215499999978],[108.40867410000004,-6.786712],[108.40801680000004,-6.784660299999928],[108.40948320000007,-6.785978],[108.40964410000004,-6.7844775],[108.41076520000007,-6.785454899999934],[108.40979260000006,-6.787303899999927],[108.41149690000009,-6.787498299999925],[108.41674950000004,-6.786064799999963],[108.41922010000008,-6.7819099],[108.42048680000005,-6.7839929],[108.43145760000004,-6.786421699999948],[108.449437,-6.784048599999949],[108.44976890000004,-6.7828358],[108.45074770000008,-6.784530199999949],[108.45378410000006,-6.784134799999947],[108.45496370000006,-6.792966299999932],[108.45726020000006,-6.796138199999973],[108.45594030000007,-6.799124099999972],[108.46518810000003,-6.797335399999952],[108.46927720000008,-6.798368499999981],[108.46845230000008,-6.795994499999949],[108.47100260000008,-6.787426599999947],[108.47488930000009,-6.789306299999964],[108.47477240000006,-6.796630299999947],[108.47828680000003,-6.799146099999973],[108.48234110000004,-6.795221499999968],[108.48194,-6.79298],[108.48428,-6.79157],[108.48419,-6.78989],[108.48600290000007,-6.789152299999955],[108.48924430000005,-6.792077899999981],[108.49453710000006,-6.790888],[108.50055990000004,-6.793893099999934],[108.50775910000004,-6.794343799999979],[108.51251230000008,-6.791162899999961],[108.51239780000009,-6.811824699999931],[108.51010530000008,-6.815521099999955],[108.50757210000006,-6.815209099999947],[108.50502780000005,-6.822901599999966],[108.51185610000005,-6.828585499999974],[108.508667,-6.840598],[108.51026160000004,-6.847971299999926],[108.508072,-6.851958599999932],[108.51152810000008,-6.8577823],[108.51799780000005,-6.859562299999936],[108.52467350000006,-6.857621599999959],[108.52320870000005,-6.870391199999972],[108.52716070000008,-6.871102199999939],[108.52666480000005,-6.868984099999977],[108.52803810000006,-6.870404099999973],[108.53349310000004,-6.8702749],[108.53404240000003,-6.868277399999954],[108.53648380000004,-6.8683933],[108.53680740000004,-6.873374499999954],[108.53371510000005,-6.880111399999976],[108.55342110000004,-6.881940699999973],[108.55463420000007,-6.882583499999953],[108.55452730000007,-6.885741099999962],[108.55968480000007,-6.886360499999967],[108.56100470000007,-6.885022499999934],[108.56607820000005,-6.890699299999937],[108.57669840000005,-6.893181699999957],[108.57667550000008,-6.895719399999962],[108.57919320000008,-6.895566299999928],[108.57892610000005,-6.898766899999941],[108.58102420000006,-6.896844299999941],[108.58659370000004,-6.899374899999941],[108.58940130000008,-6.898155599999939],[108.59149940000009,-6.899684299999933],[108.59304810000003,-6.898043499999972],[108.59338380000008,-6.899978499999975],[108.59585570000007,-6.899279499999977],[108.599289,-6.901787199999944],[108.59922030000007,-6.903827099999944],[108.601326,-6.903458],[108.60237130000007,-6.901554],[108.60461430000004,-6.903593],[108.60838990000008,-6.899865],[108.60842840000004,-6.897366099999942],[108.61196290000004,-6.896421199999963],[108.611394,-6.9004883],[108.63742070000006,-6.911192299999925],[108.64536290000007,-6.908894],[108.64721680000008,-6.905365399999937],[108.652092,-6.904511799999966],[108.65357,-6.90186],[108.65587880000004,-6.901822299999935],[108.65502760000004,-6.904388499999925],[108.65643320000004,-6.906833499999948],[108.66065980000008,-6.912867899999981],[108.66577920000009,-6.917182799999978],[108.66194920000004,-6.924978099999976],[108.65242010000009,-6.9315862],[108.65599830000008,-6.936700199999962],[108.66298680000006,-6.94039],[108.66605570000007,-6.940606199999934],[108.66523490000009,-6.937994299999957],[108.66636780000005,-6.934963399999958],[108.66908270000005,-6.937464099999943],[108.67081450000006,-6.935283099999936],[108.66930390000005,-6.933323299999927],[108.67145540000007,-6.933213599999931],[108.67239380000007,-6.931656299999929],[108.67583470000005,-6.932079199999976],[108.67786410000008,-6.9295],[108.67488870000005,-6.929027],[108.67484920000004,-6.927892099999951],[108.67824840000009,-6.9262593],[108.67789840000006,-6.925156699999945],[108.68179780000008,-6.925319499999944],[108.68285370000007,-6.923323499999981],[108.68546670000006,-6.926907799999981],[108.68148380000008,-6.9287398],[108.68312830000008,-6.929691899999966],[108.68318460000006,-6.931537099999957],[108.68647480000004,-6.930882399999973],[108.699012,-6.935960399999942],[108.70547220000009,-6.936241099999961],[108.71545410000004,-6.943839499999967],[108.71551520000008,-6.953389099999981],[108.72560130000005,-6.962715099999969],[108.72242740000007,-6.9891466],[108.71747590000007,-6.994317],[108.726616,-6.998228899999958],[108.73658,-7.006275099999925],[108.74268340000003,-7.000256399999955],[108.74188240000007,-6.990226599999971],[108.74399570000008,-6.987009899999975],[108.74698640000008,-6.985769699999935],[108.74823760000004,-6.986947399999963],[108.75093840000005,-6.985084399999948],[108.75183110000006,-6.986998],[108.75568390000007,-6.983897599999978],[108.75868230000003,-6.983647699999949],[108.76119240000008,-6.978277099999957],[108.76042940000008,-6.973137799999961],[108.76293950000007,-6.970871399999965],[108.75978090000007,-6.968990199999951],[108.76277930000003,-6.962105199999939],[108.76148990000007,-6.961507199999971],[108.75968940000007,-6.963558099999943],[108.75709540000008,-6.957830799999954],[108.75950630000006,-6.958511699999974],[108.75874330000005,-6.953179299999931],[108.76148990000007,-6.953732899999977],[108.76235970000005,-6.952359599999966],[108.760727,-6.951077399999974],[108.761055,-6.947102],[108.76410920000006,-6.9391863],[108.75976020000007,-6.93883],[108.762259,-6.937431199999935],[108.76223860000005,-6.934701299999972],[108.75845030000005,-6.933492599999965],[108.75743870000008,-6.929386499999964],[108.75520330000006,-6.928449099999966],[108.75289160000005,-6.920200299999976],[108.75511940000007,-6.916220599999974],[108.76107030000009,-6.911602399999936],[108.75818640000006,-6.907122],[108.75911720000005,-6.904822699999954],[108.76691440000008,-6.901963199999955],[108.76583870000007,-6.8985213],[108.76124380000005,-6.897680899999955],[108.761467,-6.895952099999931],[108.76487280000003,-6.8945432],[108.77071210000008,-6.895936199999937],[108.77194220000007,-6.883247299999937],[108.77893830000005,-6.884412699999928],[108.78027350000008,-6.883428],[108.77780940000008,-6.877103299999931],[108.77852640000003,-6.875000399999976],[108.78019890000007,-6.874919399999953],[108.78364770000007,-6.879673899999943],[108.78840640000004,-6.8776859],[108.79264840000008,-6.880382899999972],[108.79406740000007,-6.874937],[108.797966,-6.872716799999978],[108.79779820000005,-6.868526799999927],[108.80223850000004,-6.868607399999973],[108.80290230000008,-6.8644013],[108.80864720000005,-6.856250199999977],[108.809578,-6.852065499999981],[108.81829840000006,-6.835811],[108.82475280000006,-6.832315799999947],[108.82552350000009,-6.802760899999953],[108.826706,-6.801583199999925],[108.83125310000008,-6.802304699999979],[108.83270270000008,-6.800698099999977],[108.83145910000007,-6.796293],[108.82736210000007,-6.793829199999948],[108.82823190000005,-6.78777],[108.831543,-6.784842799999979],[108.82686620000004,-6.769854799999962],[108.82879640000004,-6.762602299999969],[108.83381950000006,-6.758009499999957]]]]},"properties":{"shapeName":"Cirebon","shapeISO":"","shapeID":"22746128B86340106136958","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[97.93513880000006,2.989519],[97.95209460000007,2.98649510000007],[97.95939360000006,2.981324900000061],[97.96455660000004,2.973231200000043],[97.96376160000005,2.961892500000033],[97.94869290000008,2.895330500000057],[97.974755,2.888468],[97.98190890000006,2.885628],[97.98501390000007,2.882594],[97.99240170000007,2.882203],[97.99742370000007,2.87428],[98.00256150000007,2.874749],[98.00637330000006,2.87231],[98.02775980000007,2.85589],[98.03192560000008,2.84919],[98.03490660000006,2.847464],[98.03919370000006,2.847892],[98.046201,2.826938],[98.049008,2.823002],[98.05574590000003,2.818716],[98.06265870000004,2.81694],[98.06771950000007,2.817369],[98.09903760000003,2.822818],[98.09797360000005,2.818634],[98.10505560000007,2.790332],[98.11688160000006,2.78500710000003],[98.13068240000007,2.779559600000027],[98.13494910000009,2.775344500000074],[98.144589,2.770452800000044],[98.16095610000008,2.768388400000049],[98.17971980000004,2.756027800000027],[98.18649790000006,2.74999390000005],[98.19074540000008,2.741094300000043],[98.19718930000005,2.735102900000072],[98.21200770000007,2.727610600000048],[98.22544820000007,2.723106100000052],[98.24582560000005,2.710467400000027],[98.251301,2.708340900000053],[98.25286750000004,2.71283],[98.26040990000007,2.719336500000054],[98.27158710000003,2.720312900000067],[98.27979140000008,2.716420600000049],[98.29545870000004,2.704338500000063],[98.30516310000007,2.70097910000004],[98.328632,2.696909],[98.33686290000009,2.690240500000073],[98.340387,2.678493100000026],[98.34470250000004,2.672335700000076],[98.35639660000004,2.660877800000037],[98.37397,2.652584700000034],[98.39388740000004,2.647803700000054],[98.39655560000006,2.644725],[98.40152720000003,2.642479300000048],[98.41991240000004,2.637982200000067],[98.42502150000007,2.632109800000023],[98.44083130000007,2.587753200000066],[98.45356870000006,2.570496900000023],[98.46457870000006,2.562573500000042],[98.46685210000004,2.552821200000039],[98.47528080000006,2.552307100000064],[98.48651120000005,2.546875],[98.49047850000005,2.546875],[98.49871830000006,2.551086400000031],[98.52368160000003,2.56872560000005],[98.546875,2.577880900000025],[98.55407710000009,2.583679200000063],[98.56649680000004,2.686343],[98.572604,2.710079800000074],[98.57309030000005,2.731037100000037],[98.57480690000006,2.73507230000007],[98.57833620000008,2.735183300000074],[98.57325620000006,2.736959100000036],[98.57020450000005,2.742870100000061],[98.56945680000007,2.757341500000052],[98.56281170000005,2.768113600000049],[98.56290330000007,2.76997730000005],[98.55714320000004,2.77069890000007],[98.55324460000008,2.77506690000007],[98.55143640000006,2.780973600000038],[98.54775910000006,2.782266],[98.54441750000007,2.786028],[98.53777230000009,2.78738240000007],[98.52812130000007,2.79365690000003],[98.52848750000004,2.812718500000074],[98.52568750000006,2.816462600000023],[98.52795340000006,2.823818500000073],[98.52590880000008,2.829833700000052],[98.52741940000004,2.832593600000052],[98.52523740000004,2.838789600000041],[98.52626740000005,2.843693300000041],[98.52889180000005,2.847485100000029],[98.52404720000004,2.855055],[98.52436,2.862898700000073],[98.52136170000006,2.867891300000053],[98.52313170000008,2.872523800000067],[98.52490170000004,2.873601200000053],[98.52137910000005,2.874882700000057],[98.511569,2.869293700000071],[98.49939260000008,2.868156400000032],[98.48954290000006,2.869074800000021],[98.47276550000004,2.874156600000049],[98.46248730000008,2.88083940000007],[98.45432990000006,2.884155600000042],[98.44857420000005,2.890659700000072],[98.43996440000006,2.890313],[98.43556320000005,2.893545200000062],[98.43359340000006,2.897273300000052],[98.42936340000006,2.917362600000047],[98.41198910000008,2.922462100000075],[98.38647020000008,2.925193600000057],[98.368501,2.932453],[98.363721,2.937309],[98.34845240000004,2.962724500000036],[98.34426330000008,2.966189800000052],[98.31884530000008,2.967064500000049],[98.31520950000004,2.970381600000053],[98.31138120000008,2.971102100000053],[98.302338,2.965255300000024],[98.29550330000006,2.965933200000052],[98.26949770000004,2.953813500000024],[98.24883060000008,2.93121960000002],[98.24674560000005,2.932427100000041],[98.22194840000009,2.952303500000028],[98.21589910000006,2.965352800000062],[98.20638750000006,2.972329300000069],[98.20440990000009,2.980317200000059],[98.20081640000006,2.98410210000003],[98.19639430000007,2.993922800000064],[98.19633070000003,3.000432600000067],[98.19204760000008,3.021201700000063],[98.19736020000005,3.031983700000069],[98.19803450000006,3.045551],[98.19623030000008,3.049979400000041],[98.19150950000005,3.052981200000033],[98.17383950000004,3.079582],[98.16989010000003,3.078625400000021],[98.15574320000007,3.06718410000002],[98.13905440000008,3.048409100000072],[98.13171630000005,3.048956500000031],[98.12335880000006,3.053808700000047],[98.10928040000005,3.055397400000061],[98.10571950000008,3.058657700000026],[98.09804630000008,3.071045500000025],[98.08540510000006,3.070893500000068],[98.07733330000008,3.074557800000036],[98.07557660000003,3.084769700000038],[98.06777320000003,3.102663800000073],[98.05969780000004,3.110171500000035],[98.05340020000006,3.119061400000021],[98.05041750000004,3.120988400000044],[98.04281630000008,3.121546300000034],[98.03585340000006,3.123893200000055],[98.03006370000008,3.123276],[98.02802060000005,3.121673800000053],[98.031445,3.114711300000067],[98.02800420000005,3.105514500000027],[98.02935120000006,3.100307100000066],[98.03617960000008,3.091229700000042],[98.03839150000005,3.078570900000045],[98.03169670000005,3.078062800000055],[98.02776060000008,3.081699],[98.02311110000005,3.080329800000072],[98.01596060000008,3.083335400000067],[98.01352680000008,3.082501600000057],[98.00426960000004,3.085348300000021],[98.00275370000008,3.087558900000033],[97.999023,3.087264700000048],[97.99129770000008,3.091875500000071],[97.98734560000008,3.091227100000026],[97.982836,3.086754700000029],[97.98248460000008,3.081742900000052],[97.980526,3.079592200000036],[97.97683270000005,3.078997800000025],[97.97452580000004,3.072806400000047],[97.96053680000006,3.065484200000071],[97.95238480000006,3.065674900000033],[97.95102550000007,3.066962300000057],[97.94848780000007,3.066151200000036],[97.94768720000008,3.068242200000043],[97.94946590000006,3.06960840000005],[97.95064,3.074012800000048],[97.94914960000006,3.075267500000052],[97.94363060000006,3.074729900000023],[97.94203860000005,3.073257400000045],[97.93943520000005,3.076223800000037],[97.93202110000004,3.069423],[97.93028680000003,3.063129],[97.93030280000005,3.054254],[97.94236280000007,3.047970700000064],[97.94422820000005,3.045648500000027],[97.94396020000005,3.043052500000044],[97.93912370000004,3.037001],[97.93852790000005,3.028203900000051],[97.94694180000005,3.005719300000067],[97.94043770000007,2.995109],[97.93513880000006,2.989519]]]},"properties":{"shapeName":"Dairi","shapeISO":"","shapeID":"22746128B77207947589957","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[103.94721640000006,-4.897805199999937],[103.93496480000005,-4.885099399999945],[103.94932570000009,-4.875549599999943],[103.95567190000008,-4.873545499999977],[103.96368820000004,-4.8738795],[103.96636030000008,-4.869871399999965],[103.97805070000004,-4.867867299999943],[103.98105680000003,-4.868869399999937],[103.98005480000006,-4.875549599999943],[103.98172490000007,-4.878221699999926],[103.98673510000003,-4.878555699999936],[103.99475140000004,-4.8822299],[103.99909350000007,-4.877219699999955],[104.00911390000005,-4.877219699999955],[104.011118,-4.875549599999943],[104.011452,-4.870205399999975],[104.01579410000005,-4.8648612],[104.01207830000004,-4.855780099999947],[104.00317470000005,-4.844853],[103.99508060000005,-4.842020099999957],[103.99224760000004,-4.838782399999957],[103.98536760000007,-4.839996499999927],[103.98455820000004,-4.830283599999973],[103.97970170000008,-4.828664699999933],[103.97686880000003,-4.824617699999976],[103.967228,-4.819752199999925],[103.95149330000004,-4.820626399999981],[103.94304320000003,-4.815381499999944],[103.94071210000004,-4.812467599999934],[103.92264630000005,-4.814215899999965],[103.92002380000008,-4.813341799999932],[103.91273920000003,-4.816838399999938],[103.91361340000009,-4.824997099999962],[103.90545460000004,-4.833155899999952],[103.90545460000004,-4.839857699999925],[103.90108390000006,-4.843937099999948],[103.89904420000005,-4.849473399999965],[103.88330950000005,-4.8582149],[103.88156110000006,-4.861711499999956],[103.88301810000007,-4.868121899999949],[103.87864730000007,-4.873366899999951],[103.874948,-4.884050399999978],[103.86453860000006,-4.894427499999949],[103.86216530000007,-4.900519599999939],[103.86430970000004,-4.902087799999947],[103.86467110000007,-4.904434399999957],[103.85765050000003,-4.909980899999937],[103.85121670000007,-4.919243499999936],[103.85251510000006,-4.923282599999936],[103.86142930000005,-4.926680099999942],[103.88114790000009,-4.9263627],[103.88528,-4.927656099999979],[103.89036840000006,-4.936088799999936],[103.89993280000004,-4.941697599999941],[103.90094530000005,-4.947584099999972],[103.90274870000007,-4.949808799999971],[103.90918070000004,-4.952889899999946],[103.91587470000007,-4.960017799999946],[103.91871830000008,-4.955520099999944],[103.91790960000009,-4.951476699999944],[103.91941050000008,-4.947172899999941],[103.92299240000006,-4.942679299999952],[103.91823030000006,-4.937568799999951],[103.92492980000009,-4.928942799999959],[103.91881450000005,-4.9278701],[103.91371830000008,-4.920176],[103.91474980000004,-4.914157099999954],[103.91800670000003,-4.911635699999977],[103.92260730000004,-4.9125663],[103.92536070000006,-4.9174943],[103.92827080000006,-4.916418599999929],[103.931732,-4.902336599999956],[103.94336020000009,-4.897184099999947],[103.94721640000006,-4.897805199999937]]],[[[100.57171630000005,-0.608398399999942],[100.571106,-0.601379399999928],[100.56750490000007,-0.598693799999978],[100.56750490000007,-0.591918899999939],[100.56030270000008,-0.577026399999966],[100.55749510000004,-0.574279799999942],[100.552124,-0.563476599999944],[100.54492190000008,-0.556518599999947],[100.54327390000009,-0.553222699999935],[100.53833010000005,-0.5518799],[100.53692630000006,-0.549377399999969],[100.534729,-0.5499878],[100.53210450000006,-0.548217799999975],[100.53070070000007,-0.549194299999954],[100.52667240000005,-0.545898399999942],[100.52270510000005,-0.546325699999954],[100.519104,-0.548706099999947],[100.51647950000006,-0.548217799999975],[100.50952150000006,-0.5426025],[100.50451660000004,-0.535400399999958],[100.49572750000004,-0.535400399999958],[100.49267580000009,-0.538024899999925],[100.487915,-0.539001499999927],[100.48327640000008,-0.544677699999966],[100.48272710000003,-0.548584],[100.48327640000008,-0.556518599999947],[100.48907470000006,-0.565185499999927],[100.48931880000004,-0.568908699999952],[100.48547360000003,-0.574890099999948],[100.49188230000004,-0.580810499999927],[100.494873,-0.586486799999932],[100.49609380000004,-0.592590299999927],[100.49810790000004,-0.5949097],[100.49792480000008,-0.601806599999975],[100.51129150000008,-0.619995099999926],[100.51531980000004,-0.622985799999924],[100.51531980000004,-0.625183099999958],[100.51849370000008,-0.628784199999927],[100.51727290000008,-0.632507299999929],[100.52050780000008,-0.635498],[100.52172850000005,-0.637390099999948],[100.52050780000008,-0.638977099999977],[100.52288820000007,-0.640380899999968],[100.52490230000006,-0.645324699999946],[100.53967290000008,-0.653381299999978],[100.54248050000007,-0.658813499999951],[100.54089360000006,-0.659484899999939],[100.54028320000003,-0.663513199999954],[100.54388430000006,-0.668090799999959],[100.54589840000006,-0.669311499999935],[100.55407710000009,-0.666626],[100.56152340000006,-0.671875],[100.56347660000006,-0.676025399999958],[100.56011960000006,-0.682678199999941],[100.56127930000008,-0.685485799999924],[100.56048580000004,-0.687316899999928],[100.56207280000007,-0.690979],[100.56909180000008,-0.6968994],[100.58349610000005,-0.6984253],[100.59130860000005,-0.695007299999929],[100.59613040000005,-0.692077599999948],[100.59869380000004,-0.685791],[100.59729,-0.679199199999971],[100.59490970000007,-0.678283699999952],[100.59167480000008,-0.671814],[100.585083,-0.643310499999927],[100.579895,-0.630188],[100.572876,-0.619384799999978],[100.57171630000005,-0.608398399999942]]],[[[124.4694694000001,0.763339200000075],[124.46762940000008,0.767246800000066],[124.46550890000003,0.767142900000067],[124.46524470000008,0.770462800000075],[124.46194560000004,0.773821400000031],[124.45379770000011,0.773124],[124.45263860000011,0.771047400000043],[124.45378270000003,0.761341500000071],[124.45192040000006,0.755548],[124.45635260000006,0.744140600000037],[124.4558482000001,0.736604300000067],[124.46051110000008,0.730749200000048],[124.46388310000009,0.730315100000041],[124.46546440000009,0.732377400000075],[124.46634270000004,0.740161900000032],[124.46391830000005,0.743958200000066],[124.46649280000008,0.747621400000071],[124.46586740000009,0.752699],[124.46917380000002,0.752392100000066],[124.4721072000001,0.75763870000003],[124.4694694000001,0.763339200000075]]],[[[124.917039,1.283513],[124.913648,1.285492],[124.9020200000001,1.270741],[124.900643,1.265101],[124.901412,1.254354500000034],[124.8977675000001,1.248237200000062],[124.897016,1.24377],[124.89471320000007,1.242602],[124.89116500000011,1.24454570000006],[124.8891612000001,1.238527800000043],[124.88435310000011,1.239914200000044],[124.87909410000009,1.234647],[124.874852,1.236708],[124.870554,1.234835],[124.87072000000012,1.233393],[124.867882,1.233456],[124.86386,1.224671],[124.86438,1.223293],[124.860429,1.219219],[124.8573530000001,1.211579],[124.857097,1.203973],[124.858468,1.202303],[124.871844,1.195201],[124.879542,1.188529],[124.883222,1.187829],[124.883248,1.185294],[124.886837,1.182535],[124.885917,1.181325],[124.8878,1.180826],[124.887776,1.17809],[124.889604,1.175568],[124.888292,1.17062],[124.889202,1.169526],[124.892666,1.174115],[124.89885,1.174445],[124.89926,1.177615],[124.903698,1.183901],[124.90278300000011,1.185485],[124.904613,1.188748],[124.904162,1.195267],[124.905482,1.198044],[124.9036870000001,1.199705],[124.904879,1.201759],[124.903758,1.203893],[124.907216,1.206912],[124.908482,1.209941],[124.907449,1.212512],[124.911674,1.218281],[124.910114,1.225265],[124.921433,1.233578],[124.92139060000011,1.236391500000025],[124.925333,1.236806],[124.928106,1.239735],[124.930963,1.247316],[124.93151200000011,1.257079],[124.933785,1.263517],[124.931733,1.2731],[124.928214,1.277335],[124.917039,1.283513]]]]},"properties":{"shapeName":"Danau","shapeISO":"","shapeID":"22746128B36560168854740","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[98.57833620000008,2.735183300000074],[98.58405240000008,2.73249990000005],[98.58694850000006,2.733559700000058],[98.58854640000004,2.731552700000066],[98.594546,2.733128100000044],[98.59493150000009,2.72936720000007],[98.59650420000008,2.728615400000024],[98.596335,2.723926600000027],[98.59873070000003,2.720693900000072],[98.59813390000005,2.717302200000063],[98.60352040000004,2.713595500000054],[98.60512090000003,2.706456400000036],[98.60731290000007,2.703553900000031],[98.61402230000004,2.702536500000065],[98.61723,2.69358630000005],[98.622298,2.690695600000026],[98.62269930000008,2.686192800000072],[98.62596420000006,2.685822500000029],[98.62679170000007,2.684475400000053],[98.62439910000006,2.676958400000046],[98.62729410000009,2.675855200000058],[98.62652650000007,2.67312910000004],[98.62759480000005,2.671739700000046],[98.62639730000006,2.670534800000041],[98.62779620000003,2.665817400000037],[98.62290630000007,2.662302700000055],[98.62460340000007,2.661299400000075],[98.62101120000005,2.657483900000045],[98.620122,2.654467600000032],[98.61871640000004,2.654271100000074],[98.61741990000007,2.650757400000032],[98.61482510000008,2.649652400000036],[98.61439130000008,2.645245],[98.61572540000009,2.643027700000061],[98.62211350000007,2.643330800000058],[98.623658,2.642156800000066],[98.62899960000004,2.646946600000035],[98.63149910000004,2.646753900000022],[98.63260270000006,2.645327900000041],[98.63219640000005,2.637612300000058],[98.633994,2.634300300000064],[98.63896260000007,2.633030600000041],[98.64219760000003,2.638261600000021],[98.64499190000004,2.634498500000063],[98.64637260000006,2.628582300000062],[98.64927,2.625821400000063],[98.650872,2.628421900000035],[98.65395850000004,2.628383600000063],[98.65412890000005,2.633864100000039],[98.65773610000008,2.634805700000072],[98.65974790000007,2.627682600000071],[98.67112690000005,2.626782200000036],[98.67321940000005,2.628580300000067],[98.67248030000007,2.624626],[98.67459070000007,2.620071300000063],[98.67828480000009,2.617863300000067],[98.68756790000003,2.616058800000076],[98.69258360000003,2.610253200000045],[98.69329,2.607308200000034],[98.68990290000005,2.606278300000042],[98.68627030000005,2.599428800000055],[98.68740080000003,2.593822400000022],[98.68870650000008,2.593006600000024],[98.68602550000008,2.590734900000029],[98.68715550000007,2.586938300000043],[98.678988,2.582327],[98.67714320000005,2.57885],[98.67298890000006,2.576891],[98.67442310000007,2.570200100000022],[98.67739990000007,2.570783],[98.67731340000006,2.573190700000055],[98.68604830000004,2.571462900000029],[98.68893910000008,2.57003190000006],[98.68948550000005,2.565660600000058],[98.67621080000004,2.564493500000026],[98.67434090000006,2.56816230000004],[98.66717270000004,2.56390360000006],[98.65866330000006,2.562838900000031],[98.65623340000008,2.560681100000068],[98.66345630000006,2.556149800000071],[98.665673,2.556493900000021],[98.66910620000004,2.547438700000043],[98.67264230000006,2.551800200000059],[98.67653170000006,2.553379500000062],[98.678086,2.551104],[98.67646610000008,2.545702500000061],[98.67748080000007,2.540098],[98.68971110000007,2.545079],[98.68691820000004,2.537951300000032],[98.68766850000009,2.536279700000023],[98.69181620000006,2.535769900000048],[98.69363660000005,2.533088700000064],[98.69604890000005,2.533515],[98.69947590000004,2.538027600000021],[98.70112520000004,2.543433700000037],[98.70497650000004,2.543392],[98.70544110000009,2.547606],[98.70696440000006,2.548840700000028],[98.71018030000005,2.551182500000039],[98.71538610000005,2.550545200000045],[98.71602260000009,2.542883700000061],[98.72101730000009,2.539820100000043],[98.72025590000004,2.537691800000061],[98.71784360000004,2.537521],[98.71826720000007,2.53590360000004],[98.72059260000003,2.532898800000055],[98.723538,2.532091],[98.72206880000005,2.528261900000075],[98.733152,2.519621100000052],[98.73371760000003,2.518484],[98.73181160000007,2.516278100000022],[98.73448830000007,2.517694600000027],[98.737533,2.516999700000042],[98.73968070000006,2.511970500000075],[98.74202920000005,2.511643900000024],[98.74231870000006,2.509427300000027],[98.74764020000003,2.507441],[98.75051010000004,2.504089600000043],[98.74929950000006,2.491116600000055],[98.75310940000008,2.487785700000074],[98.75749840000003,2.488119700000027],[98.76197050000007,2.485955],[98.76456390000004,2.480366700000047],[98.76851380000005,2.479126400000041],[98.76984040000008,2.469548400000065],[98.77497510000006,2.466967300000022],[98.77514240000005,2.456389500000057],[98.77770970000006,2.455390500000021],[98.77696530000009,2.45022640000002],[98.781521,2.44239790000006],[98.77928590000005,2.437899900000048],[98.78864370000008,2.434986300000048],[98.79071340000007,2.438401500000055],[98.79112660000004,2.443315600000062],[98.79609560000006,2.440484600000048],[98.79800070000005,2.436986700000034],[98.79742370000008,2.434237100000075],[98.79957470000005,2.432156100000043],[98.80752480000007,2.428575800000033],[98.80678050000006,2.42149610000007],[98.808023,2.41874770000004],[98.81067290000004,2.418498200000045],[98.81406840000005,2.415250400000048],[98.81539410000005,2.40917040000005],[98.81522950000004,2.401674300000025],[98.81059230000005,2.402589800000044],[98.80918470000006,2.401340300000072],[98.808814,2.395245600000067],[98.81274630000007,2.394677600000023],[98.81601170000005,2.391996900000038],[98.81604180000005,2.389075700000035],[98.81767960000008,2.387519200000042],[98.81776650000006,2.381219300000055],[98.82127330000009,2.38082780000002],[98.822832,2.379652300000032],[98.82341690000004,2.376321],[98.83043070000008,2.373382500000048],[98.83044650000005,2.370876900000042],[98.83413310000009,2.366328300000021],[98.84167560000009,2.363269600000024],[98.84132140000008,2.359821900000043],[98.83907610000006,2.357206200000064],[98.83966870000006,2.351881800000058],[98.83831930000008,2.350863600000025],[98.83537130000008,2.35550070000005],[98.824335,2.357619400000033],[98.81740730000007,2.349517500000047],[98.81631430000004,2.346172],[98.82100870000005,2.331508],[98.82765720000003,2.325117600000056],[98.83435160000005,2.321292600000049],[98.84048760000007,2.321905400000048],[98.847181,2.326854200000071],[98.846724,2.332108300000073],[98.84783950000008,2.333893800000055],[98.850223,2.333996],[98.85427950000008,2.338077300000066],[98.85761660000009,2.335451400000068],[98.856513,2.338792800000022],[98.86004460000004,2.344806900000037],[98.85973850000005,2.349068],[98.86610520000005,2.350884600000029],[98.86985310000006,2.349420200000054],[98.86914190000005,2.34549480000004],[98.87419,2.341692300000034],[98.87825820000006,2.344788400000027],[98.881213,2.344463700000063],[98.88460490000006,2.347108],[98.88833140000008,2.347826],[98.89325190000005,2.343365800000072],[98.89261020000004,2.341290400000048],[98.89514290000005,2.338985600000058],[98.90495710000005,2.334370900000067],[98.91031410000005,2.341281600000059],[98.91172620000003,2.348957700000028],[98.91544050000005,2.349247300000059],[98.916692,2.35150150000004],[98.92630980000007,2.354730200000063],[98.93198860000007,2.353965500000072],[98.93461670000005,2.357319600000039],[98.94482660000006,2.359734800000069],[98.94834620000006,2.353310500000021],[98.95409070000005,2.353234200000031],[98.95601310000006,2.34984170000007],[98.95958370000005,2.350592900000038],[98.96013740000006,2.354807600000072],[98.96741790000004,2.342569400000059],[98.96826980000009,2.347760900000026],[98.97162380000003,2.341102700000022],[98.97576760000004,2.339139300000056],[98.97843950000004,2.338430500000072],[98.97991570000005,2.341149],[98.97958260000007,2.346193400000061],[98.98318480000006,2.348728],[98.98542870000006,2.348164500000053],[98.98714160000009,2.346956300000045],[98.98927670000006,2.336876],[98.99216260000009,2.328535700000032],[98.99663630000003,2.322093800000061],[98.99911910000009,2.321463700000038],[99.00362580000007,2.326617500000054],[99.00470610000008,2.334215800000038],[99.00285890000004,2.337760400000036],[99.00857170000006,2.339459300000044],[99.00795580000005,2.342114],[99.01273410000005,2.339629200000047],[99.01466670000008,2.341328200000021],[99.01468780000005,2.34687770000005],[99.02250360000005,2.349230600000055],[99.02558120000003,2.353748900000028],[99.02578720000008,2.361886800000036],[99.02825950000005,2.363947100000075],[99.03001070000005,2.363947100000075],[99.03670640000007,2.354882],[99.03732450000007,2.349731400000053],[99.04186840000006,2.349915700000054],[99.05754620000005,2.335021100000063],[99.06195330000008,2.336252500000057],[99.06286070000004,2.341631800000073],[99.069601,2.347464800000068],[99.07368410000004,2.348955400000023],[99.07947980000006,2.34497650000003],[99.08282080000004,2.344849600000032],[99.08557470000005,2.348944],[99.08392350000008,2.351162800000054],[99.08485230000008,2.352401200000031],[99.10033260000006,2.355032900000026],[99.10575080000007,2.361431500000037],[99.105854,2.359264200000041],[99.11058338300006,2.350635846000046],[99.10737970000008,2.35766140000004],[99.10987890000007,2.359264200000041],[99.11536810000007,2.369852800000046],[99.11558560000003,2.373696100000075],[99.11399030000007,2.375944100000027],[99.122257,2.379062200000021],[99.12223190000003,2.374649],[99.126689,2.37223],[99.13221,2.372823],[99.13867990000006,2.376593],[99.147537,2.384644],[99.15148190000008,2.391701],[99.15012350000006,2.39567530000005],[99.15179620000004,2.39595410000004],[99.15319020000004,2.399113800000066],[99.15168820000008,2.403603],[99.15436780000005,2.409906600000056],[99.15449130000007,2.419651700000031],[99.15120510000008,2.429065700000024],[99.14458590000004,2.43587830000007],[99.137451,2.434032],[99.13604280000004,2.434939500000041],[99.13598030000009,2.437881100000027],[99.13219380000004,2.436285100000021],[99.12998850000008,2.437952900000028],[99.12634020000007,2.436139],[99.12475950000004,2.433570400000065],[99.12130170000006,2.432483600000069],[99.11828840000004,2.423246300000073],[99.11404030000006,2.421863200000075],[99.11468240000005,2.416923500000053],[99.103568,2.414404200000035],[99.09976440000008,2.410106700000028],[99.09887530000003,2.405957300000068],[99.09645480000006,2.409316300000057],[99.09032950000005,2.410057300000062],[99.08474770000004,2.407093400000065],[99.07788140000008,2.405907900000045],[99.07506580000006,2.402548900000056],[99.06834780000008,2.401807900000051],[99.06488990000008,2.397016400000041],[99.05886350000009,2.39874530000003],[99.04834180000006,2.39558390000002],[99.04340210000004,2.404129600000033],[99.04374790000008,2.408229600000027],[99.04162380000008,2.40887170000002],[99.04172260000007,2.410007900000039],[99.044884,2.412280100000032],[99.04483460000006,2.414009],[99.04728470000003,2.413722500000063],[99.04977440000005,2.416429500000049],[99.04937920000003,2.418109],[99.05125630000003,2.418899400000043],[99.05170090000007,2.421616200000074],[99.05323220000008,2.422060800000054],[99.05387430000007,2.429964400000074],[99.05851770000004,2.442857100000026],[99.05411480000004,2.444054],[99.05764420000008,2.448356200000035],[99.05420510000005,2.45201030000004],[99.05237810000006,2.456954],[99.048724,2.459533300000032],[99.048724,2.464262100000042],[99.05098090000007,2.466089200000056],[99.04765820000006,2.46741540000005],[99.04613,2.470089800000039],[99.04597720000004,2.475285800000051],[99.04911,2.480176100000051],[99.04834590000007,2.489039800000057],[99.04284430000007,2.498591100000056],[99.03657860000004,2.505926600000066],[99.03604790000009,2.510042300000066],[99.03894180000003,2.509120500000051],[99.04054050000008,2.511466],[99.03730820000004,2.512796200000025],[99.03740150000004,2.514476600000023],[99.03415440000003,2.514721200000054],[99.03205740000004,2.516674900000055],[99.03168830000004,2.521896500000025],[99.03352220000005,2.523883200000057],[99.02840260000005,2.520826700000043],[99.011363,2.528162200000054],[99.00792450000006,2.532364800000039],[99.007466,2.533969400000046],[99.00914710000006,2.535039200000028],[99.00845940000005,2.536949400000026],[99.00417610000005,2.542518],[98.99345970000007,2.550530200000026],[98.991657,2.549954400000047],[98.99145670000007,2.548376900000051],[98.995613,2.540840400000036],[98.98880260000004,2.541666700000064],[98.98704990000004,2.547751],[98.98281840000004,2.551156200000037],[98.98334450000004,2.558388900000068],[98.98031460000004,2.56097120000004],[98.978637,2.555150500000025],[98.97346770000007,2.55325890000006],[98.96747050000005,2.560781700000064],[98.96558730000004,2.565567700000031],[98.96363740000004,2.564811900000052],[98.96067660000006,2.567350900000065],[98.95457030000006,2.568835500000034],[98.951877,2.567923400000041],[98.95399740000005,2.56205],[98.948336,2.563958300000024],[98.94908230000004,2.567766400000039],[98.94623680000007,2.567902200000049],[98.94097480000005,2.575595100000044],[98.93489620000008,2.57795260000006],[98.93191480000007,2.583014200000036],[98.92590560000008,2.583984900000075],[98.92398720000006,2.585810800000047],[98.92405660000009,2.593738300000041],[98.92800880000004,2.598915400000067],[98.92518910000007,2.601272900000026],[98.92651280000007,2.607977],[98.925166,2.601296],[98.92206890000006,2.601111100000026],[98.91749270000008,2.597158900000068],[98.91545880000007,2.598545600000023],[98.91712290000004,2.603237400000069],[98.91326310000005,2.612667200000033],[98.913193,2.620654800000068],[98.90842410000005,2.627115900000035],[98.90814010000008,2.62950630000006],[98.91377280000006,2.634630200000061],[98.92480160000008,2.653812300000027],[98.93203310000007,2.651922600000034],[98.93315370000005,2.658449],[98.93550580000004,2.659459600000048],[98.94096110000004,2.655635300000029],[98.94244720000006,2.659805],[98.93717780000009,2.67276],[98.93487780000004,2.675871100000052],[98.92773520000009,2.672799500000053],[98.92522620000005,2.673516300000074],[98.92365080000008,2.68374],[98.91576110000005,2.692409],[98.91706610000006,2.694664],[98.92399390000008,2.695506],[98.92364180000004,2.697119],[98.91726410000007,2.701931],[98.90955110000004,2.697741],[98.89556620000008,2.700959],[98.88707480000005,2.717409],[98.88356480000004,2.721198],[98.876912,2.723414],[98.872709,2.727949],[98.865194,2.732525],[98.855114,2.731609],[98.85297820000005,2.736385],[98.84150320000003,2.740768],[98.834553,2.746385],[98.83166110000008,2.752426],[98.82734290000008,2.757075],[98.826687,2.7633],[98.81931710000003,2.770933],[98.81020690000008,2.773713],[98.80884220000007,2.771054],[98.81104720000008,2.765587],[98.80967410000005,2.764946],[98.80592690000003,2.770636],[98.805843,2.775883],[98.79721420000004,2.785125],[98.79167480000007,2.793573],[98.78525780000007,2.794983],[98.77595110000004,2.80053],[98.77111420000006,2.806619],[98.763835,2.808544],[98.76003590000005,2.812792],[98.75619680000005,2.813984],[98.75272610000007,2.82031],[98.747469,2.819419],[98.742861,2.82401],[98.73570490000009,2.824436],[98.72963890000005,2.835996],[98.72602310000008,2.838689],[98.709116,2.84241],[98.69184220000005,2.850744],[98.68676110000007,2.858965],[98.687417,2.865369],[98.68033690000004,2.873234],[98.67661420000007,2.874139],[98.67410390000003,2.87303],[98.67069290000006,2.866959],[98.66946490000004,2.860148],[98.66476510000007,2.86197],[98.64727420000008,2.856298],[98.635581,2.858359],[98.63002130000007,2.86727570000005],[98.62197950000007,2.868048900000076],[98.617793,2.865292700000055],[98.61196240000004,2.86901210000002],[98.604787,2.868668],[98.601363,2.872893],[98.59783210000006,2.874556],[98.597183,2.877782],[98.59848010000007,2.881594],[98.594681,2.886477],[98.586968,2.882863],[98.573508,2.883489],[98.57184520000004,2.884345],[98.569877,2.88941],[98.560935,2.891673],[98.55705890000007,2.89938],[98.54915080000006,2.891162],[98.55108430000007,2.887209600000062],[98.548869,2.881367900000043],[98.55043390000009,2.880575100000044],[98.55403860000007,2.881739200000027],[98.554993,2.876541700000075],[98.55278140000007,2.873857900000075],[98.549252,2.874474900000052],[98.54558160000005,2.872865700000034],[98.544332,2.874396800000056],[98.54117190000005,2.87431],[98.54007240000004,2.87918970000004],[98.54166040000007,2.883119300000033],[98.53488120000009,2.894713100000047],[98.52840810000004,2.897726],[98.52466210000006,2.895812300000046],[98.52043260000005,2.896057900000073],[98.523323,2.885185600000057],[98.51752470000008,2.881149600000072],[98.51693890000007,2.879294300000026],[98.52137910000005,2.874882700000057],[98.52490170000004,2.873601200000053],[98.52313170000008,2.872523800000067],[98.52136170000006,2.867891300000053],[98.52436,2.862898700000073],[98.52404720000004,2.855055],[98.52889180000005,2.847485100000029],[98.52626740000005,2.843693300000041],[98.52523740000004,2.838789600000041],[98.52741940000004,2.832593600000052],[98.52590880000008,2.829833700000052],[98.52795340000006,2.823818500000073],[98.52568750000006,2.816462600000023],[98.52848750000004,2.812718500000074],[98.52812130000007,2.79365690000003],[98.53777230000009,2.78738240000007],[98.54441750000007,2.786028],[98.54775910000006,2.782266],[98.55143640000006,2.780973600000038],[98.55324460000008,2.77506690000007],[98.55714320000004,2.77069890000007],[98.56290330000007,2.76997730000005],[98.56281170000005,2.768113600000049],[98.56945680000007,2.757341500000052],[98.57020450000005,2.742870100000061],[98.57325620000006,2.736959100000036],[98.57833620000008,2.735183300000074]],[[98.73402740000006,2.759103300000049],[98.73740650000008,2.754876800000034],[98.748292,2.752727800000059],[98.75805340000005,2.740538700000059],[98.76030540000005,2.740539200000057],[98.760718,2.742162200000053],[98.76319510000008,2.742917600000055],[98.766236,2.739898700000026],[98.77062690000008,2.742843500000049],[98.78139940000005,2.741939700000046],[98.789614,2.735255400000028],[98.79690270000003,2.732393400000035],[98.79679030000005,2.730959100000064],[98.80437330000007,2.724053300000037],[98.81387120000005,2.711599500000034],[98.81303090000006,2.703988300000049],[98.82580990000008,2.690012],[98.83147780000007,2.687257500000044],[98.83035020000005,2.68452510000003],[98.839811,2.679407900000058],[98.84303860000006,2.680918100000042],[98.84315140000007,2.679597100000024],[98.84945720000007,2.676804900000036],[98.84934490000006,2.674691200000041],[98.85148430000004,2.673672400000044],[98.85336090000004,2.674427500000036],[98.85215950000008,2.677522300000021],[98.85474910000005,2.678126500000076],[98.86015410000005,2.675862500000051],[98.86364490000005,2.672541500000023],[98.86413330000005,2.668427500000064],[98.86225680000007,2.667408200000068],[98.85733990000006,2.669332600000075],[98.85167310000008,2.664047800000048],[98.86852650000009,2.64966940000005],[98.87006580000008,2.645404500000041],[98.88819560000007,2.622043],[98.88902190000005,2.614532100000076],[98.89161190000004,2.609701100000052],[98.89130620000009,2.603347600000063],[98.89633510000004,2.597640800000022],[98.89575560000009,2.596120100000064],[98.90144670000006,2.58641410000007],[98.90291080000009,2.580413],[98.90839370000003,2.575693600000022],[98.90767810000006,2.565354600000035],[98.92584340000008,2.544785400000023],[98.93961690000003,2.533689500000037],[98.94370760000004,2.53240640000007],[98.95455350000003,2.524329600000044],[98.95567940000007,2.522178300000064],[98.96033290000008,2.520744200000024],[98.96183410000003,2.518177600000058],[98.96840160000005,2.514101500000038],[98.97024050000005,2.510968800000057],[98.97234210000005,2.510553600000037],[98.97951,2.498060600000031],[98.98161160000006,2.491455400000063],[98.98393830000003,2.490323200000034],[98.98390090000004,2.486171300000024],[98.98930480000007,2.481340200000034],[98.99335770000005,2.474055700000065],[98.99212930000004,2.472127300000068],[98.99399590000007,2.467015200000048],[98.99149810000006,2.46204640000002],[98.98411880000003,2.458826800000054],[98.97727720000006,2.45270720000002],[98.969507,2.451158700000065],[98.96093060000004,2.445088100000021],[98.95496860000009,2.446169300000065],[98.94954420000005,2.443416600000035],[98.94648990000007,2.444473200000061],[98.94529260000007,2.442851100000041],[98.93964820000008,2.444939500000032],[98.93744930000008,2.439950400000043],[98.93468830000006,2.43771380000004],[98.92376640000003,2.433314100000075],[98.91587390000007,2.436803400000031],[98.90891020000004,2.435058100000049],[98.90060250000005,2.436089700000025],[98.89791510000003,2.430486100000053],[98.891929,2.427192400000024],[98.88848380000007,2.42778190000007],[98.88775040000007,2.431959900000038],[98.88454930000006,2.433925700000032],[98.87780560000004,2.432524300000068],[98.87704830000007,2.43026320000007],[98.87448270000004,2.430803600000047],[98.864391,2.434415400000034],[98.86099430000007,2.438494700000035],[98.85969870000008,2.443680200000074],[98.84950910000003,2.447807900000043],[98.847367,2.44971490000006],[98.84593010000003,2.454297200000042],[98.84252210000005,2.454415200000028],[98.84107140000003,2.458616800000073],[98.83533780000005,2.458494],[98.83381150000008,2.462861700000076],[98.83145210000004,2.463285900000074],[98.82980030000004,2.461635],[98.82715160000004,2.463432800000021],[98.82131130000005,2.468525800000066],[98.82103760000007,2.471170500000028],[98.81906240000006,2.473065600000041],[98.813882,2.474023400000021],[98.80931310000005,2.471024400000033],[98.80718810000008,2.465322400000048],[98.80259460000008,2.464166700000021],[98.80110390000004,2.465198600000065],[98.79917190000003,2.476110200000051],[98.801028,2.482623200000035],[98.79983060000006,2.483262],[98.79924310000007,2.490143300000057],[98.79606630000006,2.491592800000035],[98.79684770000006,2.494861600000036],[98.79398960000003,2.49572390000003],[98.79541630000006,2.497161400000039],[98.79392720000004,2.49572390000003],[98.78819550000009,2.498910600000045],[98.78606520000005,2.500952400000074],[98.78642090000005,2.503674100000069],[98.78598210000007,2.502423400000055],[98.78431120000005,2.502871500000026],[98.77983840000007,2.509039400000063],[98.77587990000006,2.50921070000004],[98.771946,2.507489700000065],[98.76461510000007,2.509307],[98.76117010000007,2.507143700000029],[98.75850750000006,2.502105100000051],[98.75699250000008,2.502055700000028],[98.75244620000007,2.509501400000033],[98.745579,2.513481400000046],[98.74450310000003,2.517757500000073],[98.74328150000008,2.516725],[98.74346580000008,2.52239510000004],[98.74051770000005,2.521564400000045],[98.73548070000004,2.525124300000073],[98.73360720000005,2.529335400000036],[98.73574220000006,2.53180750000007],[98.73357690000006,2.529347100000052],[98.72517540000007,2.536240100000043],[98.72344130000005,2.542743100000052],[98.72199440000009,2.543012300000044],[98.72090410000004,2.546174],[98.72126030000004,2.550934900000073],[98.71979510000006,2.553108300000076],[98.72072290000006,2.558102900000051],[98.71700650000008,2.561964600000067],[98.71730970000004,2.563994800000046],[98.71550540000004,2.564713],[98.71377160000009,2.569599100000062],[98.71203870000005,2.570389200000022],[98.71180370000008,2.582731300000034],[98.70885560000005,2.585551200000054],[98.70874740000005,2.58988080000006],[98.70622810000003,2.592305500000066],[98.70638810000008,2.595647100000065],[98.704744,2.598251700000048],[98.69816840000004,2.606136900000024],[98.69402380000008,2.606980200000066],[98.69236130000007,2.611812500000042],[98.69059220000008,2.613949900000023],[98.69266270000008,2.621010800000022],[98.69183830000009,2.631843600000025],[98.69021190000007,2.635005100000058],[98.68367270000005,2.638740200000029],[98.68290370000005,2.642009700000074],[98.68434310000004,2.645549],[98.68623950000006,2.646261600000059],[98.68502330000007,2.647707100000048],[98.68572440000008,2.649699300000066],[98.69078630000007,2.649656200000038],[98.68572440000008,2.649717500000065],[98.68770650000005,2.652987600000074],[98.688239,2.666659300000049],[98.68948920000008,2.668042900000046],[98.69092620000004,2.708033900000032],[98.69623870000004,2.730299100000025],[98.69775660000005,2.733012200000076],[98.71308990000006,2.743898800000068],[98.716238,2.750720200000046],[98.720742,2.751287400000024],[98.72633290000005,2.758837300000039],[98.73402740000006,2.759103300000049]],[[98.74558850000005,2.757407400000034],[98.74780340000007,2.755407400000024],[98.74363690000007,2.756274700000063],[98.74558850000005,2.757407400000034]],[[98.64464730000009,2.645433300000036],[98.64801510000007,2.642670100000032],[98.64769950000004,2.641032700000039],[98.64414420000008,2.641794200000049],[98.64313560000005,2.645087400000023],[98.64410610000004,2.646404],[98.64464730000009,2.645433300000036]],[[98.89389320000004,2.375918800000022],[98.89458510000009,2.380133600000022],[98.89654530000007,2.38196750000003],[98.901584,2.382333100000039],[98.90388090000005,2.378467700000044],[98.90333470000007,2.372291400000051],[98.90517750000004,2.365606700000058],[98.91084650000005,2.361531],[98.90790990000005,2.358041100000037],[98.91109750000004,2.355997],[98.91059470000005,2.352543600000047],[98.90061820000005,2.346551],[98.89223340000007,2.349077100000045],[98.88849460000006,2.353918800000031],[98.888455,2.35784510000002],[98.88404390000005,2.359868800000072],[98.88587630000006,2.367327700000033],[98.89450580000005,2.368565300000057],[98.89389320000004,2.375918800000022]],[[98.82305740000004,2.342735800000071],[98.823057,2.345943700000021],[98.82446960000004,2.343606700000066],[98.82305740000004,2.342735800000071]]]},"properties":{"shapeName":"Danau Toba","shapeISO":"","shapeID":"22746128B27156063720287","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[136.730657,-4.126525099999981],[136.69382960000007,-4.107755099999963],[136.6887283000001,-4.086074599999961],[136.68617770000003,-4.055466799999977],[136.67852570000002,-4.041438299999925],[136.66067120000002,-4.035061699999972],[136.6470333000001,-4.025729699999943],[136.532575,-4.015630399999964],[136.49386120000008,-4.015630399999964],[136.4803955000001,-4.012264],[136.40128470000002,-4.008056],[136.2767272000001,-3.993748699999969],[136.22728110000003,-3.992240399999957],[136.21318610000003,-4.005204599999956],[136.19264050000004,-4.027764399999967],[136.179941,-4.019611],[136.1608176000001,-4.017486499999961],[136.15140770000005,-4.0183966],[136.12196380000012,-4.031666],[136.10293760000002,-4.051331499999947],[136.10081720000005,-4.058867],[136.09407340000007,-4.06537],[136.0906245000001,-4.087881],[136.08761540000012,-4.138342699999953],[136.0905474000001,-4.175970699999937],[136.08566070000006,-4.224838299999931],[136.09005880000007,-4.243407899999966],[136.09455780000008,-4.254283699999974],[136.11890280000011,-4.257469599999979],[136.12594330000002,-4.254614499999946],[136.13975690000007,-4.242438899999968],[136.149373,-4.238717699999938],[136.15614520000008,-4.237667899999963],[136.174359,-4.238761099999977],[136.1861345000001,-4.242881],[136.2062608000001,-4.258452899999952],[136.21692120000012,-4.263436],[136.2293946000001,-4.274019299999964],[136.2417756000001,-4.2909368],[136.24908570000002,-4.295752199999924],[136.25380810000001,-4.294106599999964],[136.26367190000008,-4.284435499999972],[136.26554550000003,-4.274432799999943],[136.26543920000006,-4.262019699999939],[136.26826930000004,-4.259084099999939],[136.27824160000011,-4.263464],[136.29396370000006,-4.264299599999958],[136.30795970000008,-4.271783399999947],[136.32350730000007,-4.271067099999925],[136.32857750000005,-4.272092699999973],[136.33124320000002,-4.273639699999933],[136.33892360000004,-4.293625],[136.34219280000002,-4.296377599999971],[136.365731,-4.296163399999955],[136.3799395000001,-4.289341299999933],[136.38418490000004,-4.295108599999935],[136.39224260000003,-4.299662799999965],[136.39688130000002,-4.299568099999931],[136.4062279000001,-4.296119399999952],[136.40976220000005,-4.296872199999939],[136.4250383000001,-4.293698499999948],[136.42747010000005,-4.298212699999965],[136.42547460000003,-4.301854499999934],[136.42639320000012,-4.308251299999938],[136.4251925000001,-4.315262],[136.42764060000002,-4.319179],[136.44334960000003,-4.314101599999958],[136.4444486000001,-4.310229899999968],[136.44623480000007,-4.308947199999977],[136.45301330000007,-4.311285399999974],[136.45877540000004,-4.315442699999949],[136.46282230000008,-4.309460799999954],[136.4644446000001,-4.310332799999969],[136.4649505000001,-4.313838199999964],[136.4708323000001,-4.316339399999947],[136.4749273000001,-4.315188899999953],[136.4863034000001,-4.316878699999961],[136.488645,-4.313106799999957],[136.4907121000001,-4.312571899999966],[136.4965076000001,-4.313970099999949],[136.504454,-4.313623599999971],[136.50970070000005,-4.309807899999953],[136.51599470000008,-4.310455],[136.51779870000007,-4.306486],[136.523349,-4.3097473],[136.5261726000001,-4.305884299999946],[136.5304397000001,-4.304405799999927],[136.53043280000009,-4.298590099999956],[136.5359122000001,-4.296002699999974],[136.5366706000001,-4.293166499999927],[136.535563,-4.291714599999978],[136.530612,-4.292262299999948],[136.52524590000007,-4.2874945],[136.52633330000003,-4.283238899999958],[136.5240510000001,-4.278068],[136.5240053000001,-4.271313],[136.51788510000006,-4.267771099999948],[136.51705390000006,-4.265096899999946],[136.51421070000004,-4.263437899999929],[136.5078529000001,-4.254328899999962],[136.50602590000005,-4.233148],[136.5000000000001,-4.224633799999935],[136.49453180000012,-4.221699599999965],[136.49235670000007,-4.217983799999956],[136.48984550000011,-4.2174233],[136.48904070000003,-4.212820499999964],[136.50143570000012,-4.2117244],[136.5451991000001,-4.213407599999925],[136.58222970000008,-4.212566],[136.6217851,-4.217615599999931],[136.6705982000001,-4.217615599999931],[136.703046,-4.189445],[136.7263256000001,-4.146377799999925],[136.730657,-4.126525099999981]]]},"properties":{"shapeName":"Deiyai","shapeISO":"","shapeID":"22746128B88682386682363","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[98.71008230000007,3.794488600000022],[98.70844450000004,3.796758800000021],[98.70804810000004,3.803199800000073],[98.70481160000008,3.808177200000046],[98.70345060000005,3.807899500000076],[98.704012,3.810261800000035],[98.70183880000008,3.812683],[98.70007460000005,3.823379800000055],[98.70093350000008,3.828540500000031],[98.69787080000003,3.842488200000048],[98.69868720000005,3.84548760000007],[98.69711770000004,3.84667010000004],[98.69838050000004,3.851018100000033],[98.69663360000004,3.858844],[98.69755730000008,3.861390500000027],[98.69566030000004,3.862694900000065],[98.69795740000006,3.865576900000065],[98.69166910000007,3.885324900000057],[98.70044650000006,3.86778860000004],[98.69894060000007,3.873590100000058],[98.69312350000007,3.888115800000037],[98.68841140000006,3.894711600000051],[98.679635,3.902982200000054],[98.67160250000006,3.908139800000072],[98.66817070000008,3.909294100000068],[98.66487470000004,3.908039900000063],[98.66228550000005,3.906033200000024],[98.65079530000008,3.904990500000054],[98.64566970000004,3.896726600000022],[98.641122,3.895363900000063],[98.63552170000008,3.884214500000041],[98.61896640000003,3.883301800000027],[98.61219850000003,3.870079900000064],[98.60900670000007,3.866482200000064],[98.60591020000004,3.86628630000007],[98.60397350000005,3.869104100000072],[98.60126430000008,3.868325300000038],[98.600589,3.864048300000036],[98.60639890000004,3.855789300000026],[98.60601280000009,3.853748],[98.59856430000008,3.84810710000005],[98.60176160000003,3.839458200000024],[98.60079640000004,3.834306300000037],[98.59547560000004,3.831485100000066],[98.58873120000004,3.835303400000043],[98.58308830000004,3.834297800000058],[98.58212170000007,3.832061800000076],[98.58405860000005,3.828758100000073],[98.58309370000006,3.823217400000033],[98.58028820000004,3.821855300000038],[98.57670710000008,3.823603100000071],[98.57438530000007,3.822532800000033],[98.57661420000005,3.815730100000053],[98.55262510000006,3.799875],[98.53876240000005,3.792877400000066],[98.531732,3.786548],[98.52506160000007,3.775464100000022],[98.52240150000006,3.767566],[98.51568170000007,3.75905640000002],[98.50671780000005,3.737385300000028],[98.50958680000008,3.729380500000048],[98.50871230000007,3.723302800000056],[98.50682810000006,3.722139900000059],[98.50812280000008,3.717227600000058],[98.50682140000004,3.711985800000036],[98.50860220000004,3.70793690000005],[98.50494440000006,3.698349600000029],[98.50146090000004,3.672508900000025],[98.51088460000005,3.672782300000051],[98.51109920000005,3.667120600000032],[98.51833130000006,3.667432600000041],[98.51842820000007,3.664160800000047],[98.51107980000006,3.663944400000048],[98.51120070000007,3.655467600000065],[98.51693150000006,3.655396300000064],[98.51684780000005,3.653643500000044],[98.51792630000006,3.65361230000002],[98.51792710000007,3.652157],[98.51142440000007,3.652334],[98.51143970000004,3.645871300000067],[98.51785990000008,3.645820900000047],[98.51657670000009,3.641710600000067],[98.51158920000006,3.641667600000062],[98.51183460000004,3.633583100000067],[98.51065650000004,3.633353700000043],[98.51184140000004,3.633361100000059],[98.51187570000008,3.631820900000037],[98.51612680000005,3.631749200000058],[98.51613090000006,3.629551900000024],[98.52557930000006,3.629342200000053],[98.52559270000006,3.620744100000024],[98.53283370000008,3.620813100000021],[98.53313010000005,3.612820500000055],[98.53371530000004,3.61125480000004],[98.53563110000005,3.611353700000052],[98.53625030000006,3.606754],[98.53307350000006,3.596410700000035],[98.53388630000006,3.594257900000059],[98.53251460000007,3.593065300000035],[98.53507880000006,3.593023500000072],[98.53443630000004,3.590651600000058],[98.53625140000008,3.586879600000032],[98.53535090000008,3.585477800000035],[98.53662830000007,3.584163300000057],[98.53694210000003,3.57880590000002],[98.53666810000004,3.572584500000062],[98.53341820000009,3.567786],[98.52134150000006,3.569592200000045],[98.50080870000005,3.569487600000059],[98.50177510000003,3.559848800000054],[98.50812820000004,3.556122900000048],[98.51056320000004,3.552684800000065],[98.509122,3.54854030000007],[98.51135120000004,3.54419050000007],[98.50781820000003,3.54270710000003],[98.50910760000005,3.540468400000066],[98.51197240000005,3.539384],[98.51057450000008,3.531178600000032],[98.52022850000009,3.523683400000039],[98.52460060000004,3.522193900000048],[98.52435430000008,3.520039],[98.52076610000006,3.520783],[98.52101460000006,3.518545500000073],[98.51903660000005,3.515809600000068],[98.520769,3.514940300000035],[98.51891410000007,3.513323200000059],[98.51908060000005,3.51038120000004],[98.51397130000004,3.501925300000039],[98.51315880000004,3.497207400000036],[98.50995450000005,3.495102800000041],[98.51327440000006,3.493844500000023],[98.51094630000006,3.489908],[98.510285,3.480679900000041],[98.50764570000007,3.476016800000025],[98.50958230000003,3.469025200000033],[98.50887570000003,3.464881],[98.50417750000008,3.45438960000007],[98.50688610000003,3.44966450000004],[98.50360590000008,3.438461600000039],[98.50457620000009,3.431081],[98.50225940000007,3.425770600000021],[98.50116920000005,3.415863800000068],[98.50150130000009,3.406876900000043],[98.50470570000004,3.403167500000052],[98.50452730000006,3.400779500000056],[98.49557690000006,3.390803900000037],[98.49873680000007,3.385172600000033],[98.49945080000003,3.374813500000073],[98.501836,3.371901100000059],[98.50467590000005,3.361802],[98.50429680000008,3.346910100000059],[98.50082240000006,3.338102700000036],[98.50488590000003,3.32845750000007],[98.50308710000007,3.318420900000035],[98.50947020000007,3.308450600000072],[98.49833,3.298088],[98.48660870000003,3.291542500000048],[98.48532160000008,3.288822500000038],[98.47965410000006,3.285906],[98.47070390000005,3.277807900000028],[98.47031960000004,3.273599200000035],[98.47489480000007,3.270882200000074],[98.47329180000008,3.256637200000057],[98.46858980000007,3.255534],[98.46846410000006,3.249512500000037],[98.47155950000007,3.243104200000062],[98.47214170000007,3.238313300000073],[98.47162770000006,3.235852600000044],[98.46560530000005,3.230413],[98.47417580000007,3.222964200000035],[98.48093350000005,3.222549400000048],[98.48769060000006,3.226681400000075],[98.49249960000009,3.237831400000061],[98.49980890000006,3.241596],[98.50552860000005,3.240051700000038],[98.51385990000006,3.24355],[98.52012450000007,3.240165500000046],[98.52547140000007,3.241088200000036],[98.53730870000004,3.238239700000065],[98.54519340000007,3.231881600000065],[98.55347830000005,3.220122100000026],[98.55595510000006,3.200307900000041],[98.55901290000008,3.199344600000074],[98.56243460000007,3.201042600000051],[98.56454240000005,3.205449500000043],[98.56805730000008,3.208584700000074],[98.57410760000005,3.209490800000026],[98.587935,3.218642800000055],[98.59424670000004,3.217716400000029],[98.59975820000005,3.222744300000045],[98.62220380000008,3.232344],[98.62674570000007,3.222220700000037],[98.62093320000008,3.217593],[98.62164220000005,3.20694960000003],[98.61214610000007,3.194810200000063],[98.61518110000009,3.183558300000072],[98.61108820000004,3.179142600000034],[98.60495150000008,3.181826100000023],[98.60274970000006,3.181489500000055],[98.60122970000003,3.177323500000057],[98.60348390000007,3.170124900000076],[98.60126020000007,3.162539200000026],[98.60285770000007,3.157877],[98.611917,3.145893800000067],[98.61514910000005,3.136047100000042],[98.61529930000006,3.131334500000037],[98.61630150000008,3.130613700000026],[98.61961580000008,3.132691500000021],[98.623859,3.13173560000007],[98.62746060000006,3.126129],[98.62908410000006,3.117251500000066],[98.62201310000006,3.104839600000048],[98.60957960000007,3.110865600000068],[98.60636410000006,3.109571300000027],[98.60528960000005,3.104056400000047],[98.613383,3.101268],[98.61715190000007,3.097199],[98.62047110000003,3.089058],[98.62213390000005,3.071779],[98.62469890000006,3.063547],[98.62726210000005,3.062462],[98.64609910000007,3.066902],[98.65921,3.066635],[98.67337490000006,3.071343],[98.682269,3.067365],[98.68739690000007,3.052711],[98.69071280000009,3.05045],[98.69447990000003,3.051808],[98.704274,3.059772],[98.70577990000004,3.063753],[98.708783,3.103018],[98.717216,3.132966],[98.72384290000008,3.149071],[98.730468,3.175218],[98.726697,3.185259],[98.72940710000006,3.196931],[98.72774710000004,3.203444],[98.72352610000007,3.207333],[98.73015410000005,3.220272],[98.73422390000007,3.221811],[98.74477580000007,3.216928],[98.74807270000008,3.218392400000027],[98.74807260000006,3.218835100000035],[98.75054730000005,3.228704400000026],[98.74955540000008,3.232688200000041],[98.75286180000006,3.239761700000031],[98.76390980000008,3.247496700000056],[98.76849860000004,3.252834900000039],[98.77086450000007,3.25890030000005],[98.77033980000004,3.261698200000069],[98.77372060000005,3.266647900000066],[98.789083,3.275627600000064],[98.79561730000006,3.285515500000031],[98.79605910000004,3.29835410000004],[98.80764590000007,3.304830100000061],[98.81226850000007,3.304618700000049],[98.81432240000004,3.308502700000076],[98.81989920000007,3.312986300000034],[98.83011120000003,3.315294200000039],[98.83246750000006,3.318176900000026],[98.83597460000004,3.329325400000073],[98.84019220000005,3.329756600000053],[98.84201430000007,3.33469690000004],[98.84477230000005,3.337438200000065],[98.84838780000007,3.336622300000045],[98.85752510000003,3.343825100000061],[98.86015580000009,3.340461700000048],[98.86352840000006,3.342807300000061],[98.87199310000005,3.344964200000049],[98.87552650000003,3.347887700000058],[98.87947140000006,3.347265],[98.87995430000007,3.350412900000038],[98.88348780000007,3.353660900000023],[98.88711220000005,3.35394320000006],[98.89140870000006,3.356755600000042],[98.89830130000007,3.358336500000064],[98.91322,3.35824180000003],[98.91907970000005,3.367021],[98.91887570000006,3.370243400000049],[98.91617590000004,3.373311800000067],[98.92092,3.38117230000006],[98.916641,3.386337800000035],[98.91888180000007,3.388997500000073],[98.91908540000009,3.393573],[98.92142810000007,3.39879],[98.92076530000008,3.405234500000063],[98.91785980000009,3.411298500000044],[98.91867440000004,3.416515600000025],[98.91556210000005,3.428423700000053],[98.91632530000004,3.438755400000048],[98.91429030000006,3.448969600000055],[98.919435,3.454851700000063],[98.91994190000008,3.466134400000044],[98.93464610000007,3.491225900000074],[98.93628810000007,3.499831700000072],[98.933301,3.503418600000032],[98.93682980000006,3.515077800000029],[98.93525960000005,3.522213800000031],[98.93594730000007,3.525148500000057],[98.93102210000006,3.532669800000065],[98.93296740000005,3.53768],[98.92615430000006,3.545289900000057],[98.93110520000005,3.554158900000061],[98.93382370000006,3.567435800000055],[98.92346640000005,3.57537],[98.91911090000008,3.582214500000021],[98.91890170000005,3.586256200000037],[98.92131580000006,3.591385200000047],[98.91880320000007,3.599951300000043],[98.92528720000007,3.612820300000067],[98.92995850000005,3.614833],[98.93851550000005,3.624539600000048],[98.94589340000005,3.647201300000063],[98.94611880000008,3.658148400000073],[98.94902040000005,3.664650700000038],[98.94441110000008,3.668401300000028],[98.94437190000008,3.675837700000045],[98.93301440000005,3.678102100000046],[98.91012120000005,3.680147800000043],[98.90787,3.67931580000004],[98.90189880000008,3.681730400000049],[98.896526,3.681907900000056],[98.87406970000006,3.687464500000033],[98.843257,3.705265900000029],[98.826021,3.707297700000026],[98.82203950000007,3.711438700000031],[98.80480160000008,3.720407],[98.79507820000003,3.725026600000035],[98.79295240000005,3.724077900000054],[98.79181690000007,3.726085300000022],[98.79329440000004,3.726360500000055],[98.79163610000006,3.727130700000032],[98.79173680000008,3.722835900000064],[98.79016230000008,3.726948200000038],[98.78440030000007,3.727674900000068],[98.782356,3.726653700000043],[98.78109570000004,3.730042300000036],[98.7791,3.729088800000056],[98.77391250000005,3.73122840000002],[98.77468220000009,3.734521800000039],[98.76555690000004,3.745944800000075],[98.75940150000008,3.759871800000042],[98.74908410000006,3.764752900000076],[98.747871,3.766600800000049],[98.74582170000008,3.765403500000048],[98.744716,3.767833900000028],[98.74160220000005,3.767108900000039],[98.73868610000005,3.76885290000007],[98.73034290000004,3.769272200000046],[98.72455380000008,3.773525500000062],[98.71858680000008,3.771679900000038],[98.71738820000007,3.76766310000005],[98.70700940000006,3.772041800000068],[98.70404970000004,3.766358],[98.70191410000007,3.751159200000075],[98.705174,3.749707700000044],[98.70338940000005,3.746685800000023],[98.70534050000003,3.744401500000038],[98.70453750000007,3.740850400000056],[98.70720140000009,3.740131200000064],[98.70980970000005,3.741433800000038],[98.71811440000005,3.738370600000053],[98.72179850000003,3.734466500000053],[98.72698220000007,3.733183500000052],[98.72669420000005,3.727462500000058],[98.730993,3.720372600000076],[98.72497440000006,3.719959700000061],[98.72040330000004,3.725336600000048],[98.71718140000007,3.723331500000029],[98.71723210000005,3.724684700000068],[98.71520290000007,3.725454800000023],[98.71530650000005,3.721446800000024],[98.713806,3.72158330000002],[98.71332920000003,3.719750400000066],[98.71227180000005,3.720743500000026],[98.71157330000005,3.718842],[98.70978280000008,3.719715],[98.71003920000004,3.71759110000005],[98.70816380000008,3.717213700000059],[98.70690330000008,3.713684800000067],[98.704708,3.715053700000055],[98.70334750000006,3.711746700000049],[98.70544540000009,3.711194600000056],[98.70486460000006,3.706426800000031],[98.70646080000006,3.706410300000073],[98.70761620000007,3.704460200000028],[98.70624980000008,3.702702700000032],[98.71137350000004,3.693109900000024],[98.71091370000005,3.688072300000044],[98.70883460000005,3.68798460000005],[98.70865610000004,3.685081500000024],[98.71093350000007,3.684193200000038],[98.71065580000004,3.682079500000043],[98.71285250000005,3.678773300000046],[98.70982820000006,3.672959],[98.70327580000009,3.667026600000042],[98.70333710000006,3.671978500000023],[98.69471430000004,3.672365300000024],[98.69659680000007,3.677942400000063],[98.68028670000007,3.678714],[98.68021510000005,3.675424300000032],[98.66937690000003,3.675609],[98.66849310000003,3.671771700000022],[98.68041420000009,3.67252],[98.68138330000005,3.668051300000059],[98.69223120000004,3.664540200000033],[98.68966620000003,3.656513400000051],[98.69187160000007,3.656459900000073],[98.700159,3.662606100000062],[98.70297350000004,3.66262260000002],[98.70168380000007,3.645106100000021],[98.694833,3.645355500000051],[98.69483780000007,3.642160800000056],[98.69269360000004,3.643076400000041],[98.693375,3.62676],[98.70406340000005,3.626252300000033],[98.70395040000005,3.628821300000027],[98.707828,3.628688100000034],[98.70777370000008,3.627242800000033],[98.70989360000004,3.62660180000006],[98.70967530000007,3.617297700000051],[98.70725940000005,3.617378900000062],[98.70663730000007,3.602352600000074],[98.71183630000007,3.602166500000067],[98.71176510000004,3.600277900000037],[98.74150210000005,3.599002300000052],[98.73989820000008,3.593965200000071],[98.74128230000008,3.592273700000021],[98.74079080000007,3.588237],[98.73621430000009,3.585975200000064],[98.73249370000008,3.586059500000033],[98.73079730000006,3.584012900000062],[98.73108120000006,3.582113400000026],[98.73831270000005,3.581390500000055],[98.73829210000008,3.580174900000031],[98.73690060000007,3.574657100000024],[98.73402280000005,3.57484340000002],[98.731754,3.570968600000072],[98.72859160000007,3.571086600000058],[98.72709390000006,3.568077200000062],[98.72684670000007,3.551081],[98.72013290000007,3.551606700000036],[98.72190630000006,3.54882710000004],[98.72130830000003,3.543426100000033],[98.72294710000006,3.543366500000047],[98.72275570000005,3.540754200000038],[98.72665650000005,3.54048750000004],[98.726437,3.538305],[98.72889950000007,3.537987100000066],[98.72902010000007,3.540744],[98.73135380000008,3.539745700000026],[98.73215710000005,3.541164900000069],[98.73494610000006,3.541067400000031],[98.735123,3.538426400000048],[98.73957920000004,3.536817300000052],[98.74643270000007,3.537822100000028],[98.74515190000005,3.536549300000047],[98.74482870000008,3.528109800000038],[98.74215680000003,3.527692300000069],[98.74240170000007,3.529390400000068],[98.69831440000007,3.531490100000042],[98.698235,3.518396600000074],[98.67842070000006,3.519285300000035],[98.67486890000004,3.51578],[98.67706370000008,3.514568200000042],[98.66168620000008,3.514898300000027],[98.66169590000004,3.519077800000048],[98.65568450000006,3.519639300000051],[98.66165650000005,3.519578600000045],[98.66230440000004,3.522439400000053],[98.65763530000004,3.522491900000034],[98.65557930000006,3.519607500000063],[98.65669840000004,3.519048500000054],[98.65430670000006,3.517324900000062],[98.655457,3.510855900000024],[98.657769,3.508270500000037],[98.65839920000008,3.50989160000006],[98.65958320000004,3.508388400000058],[98.65897490000003,3.504569400000037],[98.65554590000005,3.500676500000054],[98.65496730000007,3.496157800000049],[98.65366150000006,3.496972200000073],[98.65165750000006,3.495752400000072],[98.64981740000007,3.49709660000002],[98.64824870000007,3.495790900000031],[98.64746510000003,3.498174400000039],[98.64456580000007,3.488117300000056],[98.63572160000007,3.489340800000036],[98.63706710000008,3.490533200000073],[98.63469250000009,3.493484300000034],[98.63673840000007,3.497212800000057],[98.63384780000007,3.496602700000039],[98.63293020000003,3.497556900000063],[98.63399270000008,3.49818410000006],[98.63212720000007,3.498725100000058],[98.63355190000004,3.499235900000031],[98.63224960000008,3.499803200000031],[98.63244480000009,3.502412],[98.63011380000006,3.503224200000034],[98.631839,3.505806300000074],[98.62999290000005,3.508894700000042],[98.62854170000008,3.508661],[98.62973830000004,3.511616],[98.627607,3.511983800000053],[98.62838820000007,3.517914100000041],[98.62569160000004,3.518836300000032],[98.62342370000005,3.514830800000027],[98.62471040000008,3.507019100000036],[98.62056890000008,3.506803500000046],[98.61575480000005,3.503331600000024],[98.61723870000009,3.498319500000036],[98.60888690000007,3.496674100000064],[98.60011320000007,3.490905400000031],[98.59246740000003,3.497852300000034],[98.59340140000006,3.499739100000056],[98.59672480000006,3.500840800000049],[98.59663480000006,3.505706800000041],[98.60176430000007,3.512709700000073],[98.60218680000008,3.51644280000005],[98.59742960000005,3.528056],[98.59783110000006,3.529532],[98.59940260000008,3.529216900000051],[98.60228660000007,3.531766600000026],[98.600997,3.532889400000045],[98.60261370000006,3.534239100000036],[98.60025460000008,3.538621800000044],[98.59749630000005,3.537948200000073],[98.593054,3.540297900000041],[98.59883730000007,3.546531800000025],[98.60574960000008,3.549996300000032],[98.60619080000004,3.553186100000062],[98.61157930000007,3.553744],[98.61082970000007,3.559557],[98.60664780000008,3.558899],[98.61204560000004,3.562788300000022],[98.60753180000006,3.56570320000003],[98.60729860000004,3.567518700000051],[98.60921410000003,3.570650100000023],[98.60843120000004,3.577212600000053],[98.61023010000008,3.578245300000049],[98.61128370000006,3.583494200000075],[98.60936120000008,3.583393600000022],[98.60777670000004,3.581349],[98.60211580000004,3.587211],[98.60479510000005,3.588427500000023],[98.60444720000004,3.592533500000059],[98.60817650000007,3.593010100000072],[98.60768450000006,3.594640300000037],[98.60390650000005,3.594848100000036],[98.60814550000003,3.595777400000031],[98.60516650000005,3.598932400000024],[98.60677520000007,3.61036850000005],[98.60516950000004,3.61194560000007],[98.60425240000006,3.610645200000022],[98.60162930000007,3.612075200000049],[98.60102370000004,3.614292100000057],[98.60225710000003,3.61639230000003],[98.59930650000007,3.620333600000038],[98.60146510000004,3.61877990000005],[98.60559670000004,3.618631300000061],[98.605434,3.613072200000033],[98.60999160000006,3.613201500000059],[98.61032720000009,3.618436600000052],[98.61308810000008,3.61819470000006],[98.612964,3.612076300000069],[98.62763450000006,3.612671800000044],[98.630442,3.615726400000028],[98.65258810000006,3.61516210000002],[98.66007780000007,3.622719400000051],[98.66429280000006,3.624048100000039],[98.66529930000007,3.625557600000036],[98.66441980000008,3.631997],[98.66653860000008,3.635251500000038],[98.66337780000003,3.635354200000052],[98.66300320000005,3.637252100000069],[98.65933460000008,3.638709400000039],[98.65960620000004,3.643980200000044],[98.657622,3.644110300000023],[98.65600040000004,3.669211300000029],[98.65749380000005,3.670339100000035],[98.65775880000007,3.674970100000053],[98.65164230000005,3.674643600000024],[98.64861160000004,3.683416600000044],[98.63331140000008,3.68367070000005],[98.63390590000006,3.690685500000029],[98.63183930000008,3.699603700000068],[98.62476810000004,3.699681300000066],[98.62615210000007,3.713008700000046],[98.63054940000006,3.714235700000074],[98.63442120000008,3.720309600000064],[98.64401890000005,3.71962910000002],[98.64510140000004,3.725368300000071],[98.64407380000006,3.726504],[98.64570080000004,3.727130700000032],[98.64407270000004,3.729124100000035],[98.645919,3.729611800000043],[98.64459140000008,3.730886600000076],[98.65048930000006,3.729080400000043],[98.65055810000007,3.730816800000071],[98.65274390000008,3.732064200000025],[98.65339890000007,3.73782970000002],[98.65304950000007,3.738769],[98.65096990000006,3.737284700000032],[98.64450320000003,3.737793300000021],[98.64260550000006,3.738648300000023],[98.64259940000005,3.740054200000031],[98.64103980000004,3.739314500000035],[98.63992660000008,3.742603700000075],[98.63612610000007,3.743230100000062],[98.63394510000006,3.746863400000052],[98.63445260000003,3.750358900000037],[98.63076140000004,3.751981800000067],[98.63052280000005,3.755664100000047],[98.62529920000009,3.759596100000067],[98.62754750000005,3.767226400000027],[98.62989380000005,3.76883840000005],[98.63566780000008,3.767763600000023],[98.63638630000008,3.770766600000059],[98.63290550000005,3.772335800000064],[98.63214980000004,3.77514240000005],[98.64453810000003,3.774541100000022],[98.64846320000004,3.780122],[98.65372920000004,3.781857800000068],[98.66339570000008,3.780942700000026],[98.66750240000005,3.776231700000039],[98.67319880000008,3.77398160000007],[98.67446580000006,3.76739850000007],[98.67521010000007,3.768957700000044],[98.68021920000007,3.767386500000043],[98.68074980000006,3.76849720000007],[98.67553660000004,3.770014600000025],[98.67413610000006,3.773219200000028],[98.67864580000008,3.774565600000074],[98.680175,3.777065600000071],[98.67976130000005,3.785813200000064],[98.68144250000006,3.788497500000062],[98.70772360000007,3.790895600000056],[98.71008230000007,3.794488600000022]]]},"properties":{"shapeName":"Deli Serdang","shapeISO":"","shapeID":"22746128B63282180015837","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[110.759152,-6.791549199999963],[110.75767830000007,-6.793998699999975],[110.75423430000006,-6.793396],[110.75107570000006,-6.796255599999938],[110.74826050000007,-6.794684899999936],[110.74191280000008,-6.796358599999962],[110.741066,-6.7940173],[110.73625180000005,-6.793990599999972],[110.73345950000004,-6.791666],[110.72944640000009,-6.793328699999961],[110.72076230000005,-6.788432799999953],[110.71739120000007,-6.789325399999939],[110.71486660000005,-6.792289699999969],[110.71311950000006,-6.788989499999957],[110.710968,-6.789327599999979],[110.70954890000007,-6.792362199999957],[110.70417790000005,-6.794378299999948],[110.70118710000008,-6.787917599999957],[110.70134740000009,-6.784899199999927],[110.69863890000005,-6.782594199999949],[110.69978330000004,-6.776930799999946],[110.69409940000008,-6.775093],[110.69509670000008,-6.768547099999978],[110.69062810000008,-6.769155],[110.686676,-6.766334499999971],[110.68425750000006,-6.770260299999961],[110.67877960000004,-6.767116],[110.67745210000004,-6.762847399999941],[110.67486820000005,-6.764976899999965],[110.67450730000007,-6.768236599999966],[110.67346840000005,-6.766408399999932],[110.67156980000004,-6.766976799999952],[110.66692350000005,-6.764528699999971],[110.67006680000009,-6.759682599999962],[110.66909030000005,-6.757947399999978],[110.66513830000008,-6.757210199999975],[110.66464230000008,-6.755470299999956],[110.66931920000007,-6.752773299999944],[110.67011260000004,-6.747860899999978],[110.66598510000006,-6.740582],[110.66980740000008,-6.7360029],[110.67162120000006,-6.725590499999953],[110.66916660000004,-6.720014499999934],[110.66440580000005,-6.716801199999964],[110.65425870000007,-6.715145599999971],[110.64958190000004,-6.716356699999949],[110.645195,-6.713006499999949],[110.63849640000007,-6.713150499999927],[110.63514710000004,-6.710321399999941],[110.62402340000006,-6.708936199999926],[110.61806490000004,-6.70612],[110.62120820000007,-6.708577099999957],[110.62074350000006,-6.711616799999945],[110.61531070000007,-6.716174099999932],[110.61106110000009,-6.716823499999975],[110.60916140000006,-6.720274],[110.60603330000004,-6.7205815],[110.60471340000004,-6.724591199999963],[110.60065460000004,-6.724413399999946],[110.59814450000005,-6.726799899999946],[110.59225710000004,-6.724284799999964],[110.58445490000008,-6.727116699999954],[110.58315070000003,-6.729798],[110.58395280000008,-6.730831199999955],[110.57469,-6.73583],[110.57327,-6.73544],[110.57366,-6.73039],[110.57076,-6.7299],[110.56976,-6.72702],[110.56654,-6.72587],[110.56455670000008,-6.718848],[110.56176080000006,-6.718729099999962],[110.55952,-6.728],[110.5554,-6.72262],[110.55054760000007,-6.72557],[110.54934520000006,-6.727974899999936],[110.55119,-6.73331],[110.55729,-6.73849],[110.55682,-6.7426],[110.55984,-6.74527],[110.56016,-6.75118],[110.55491990000007,-6.754688699999974],[110.55361120000003,-6.751238499999943],[110.55215380000004,-6.751179],[110.55218350000007,-6.749037399999963],[110.54828710000004,-6.745557499999961],[110.54477740000004,-6.75106],[110.54293330000007,-6.7474908],[110.53986980000008,-6.746241599999962],[110.53737130000007,-6.748621],[110.53820420000005,-6.752130699999952],[110.54049440000006,-6.753082499999948],[110.54509230000008,-6.759272399999929],[110.54555070000004,-6.763968599999941],[110.55104,-6.76293],[110.55063680000006,-6.764474199999938],[110.55182660000008,-6.764295699999934],[110.55361120000003,-6.768162399999937],[110.55491990000007,-6.768162399999937],[110.55706140000007,-6.772742799999946],[110.55932190000004,-6.773099699999932],[110.563367,-6.770303899999931],[110.56223670000008,-6.764474199999938],[110.56468980000005,-6.762697799999955],[110.56773,-6.76353],[110.567531,-6.770541799999933],[110.57545740000006,-6.769503199999974],[110.57572,-6.77206],[110.56848280000008,-6.774586899999974],[110.56598440000005,-6.777382799999941],[110.56419980000004,-6.784878099999958],[110.56497310000009,-6.787317],[110.55718040000005,-6.802307599999949],[110.56021,-6.80292],[110.55999,-6.80393],[110.55450350000007,-6.806174299999952],[110.54995850000006,-6.810420799999974],[110.54448,-6.82079],[110.54359,-6.8199],[110.54079,-6.82262],[110.54016720000004,-6.821938199999977],[110.53552730000007,-6.826756599999953],[110.53618220000004,-6.827772899999957],[110.52937,-6.83253],[110.52143,-6.83498],[110.52202380000006,-6.836809799999969],[110.52789380000007,-6.841014199999961],[110.52827,-6.84716],[110.52538,-6.84773],[110.52523610000009,-6.849718399999972],[110.52201190000005,-6.848748599999965],[110.52017970000009,-6.849896899999976],[110.51843090000006,-6.855112899999938],[110.51526,-6.85911],[110.51833,-6.86338],[110.51619410000006,-6.8649469],[110.514469,-6.871668899999975],[110.48306,-6.9132],[110.47562,-6.92092],[110.47594,-6.92428],[110.47052,-6.92539],[110.46829,-6.92882],[110.46762,-6.92816],[110.46748,-6.93039],[110.46496,-6.92966],[110.46321250000005,-6.931527599999981],[110.47340390000005,-6.942085199999951],[110.48094180000004,-6.945363],[110.48753040000008,-6.946128399999964],[110.48915850000009,-6.946978299999955],[110.48879040000008,-6.948689799999954],[110.49220160000004,-6.947490899999934],[110.49055210000006,-6.955242599999963],[110.50100420000007,-6.9526219],[110.50280760000004,-6.958866599999965],[110.501358,-6.964667799999972],[110.50295430000006,-6.969185399999958],[110.50489790000006,-6.970382599999937],[110.50535780000007,-6.975974],[110.50205990000006,-6.979736299999956],[110.50134110000005,-6.9849819],[110.50301360000009,-6.985882699999934],[110.50164280000007,-6.992863199999931],[110.498394,-6.993114499999933],[110.49549450000006,-6.998933199999954],[110.49336390000008,-6.999693699999966],[110.49038520000005,-7.004347899999971],[110.49576730000007,-7.006843],[110.49882190000005,-7.0063243],[110.49853920000004,-7.007648899999936],[110.503883,-7.010724499999981],[110.50289960000003,-7.012570099999948],[110.50374950000008,-7.014859499999943],[110.50079080000006,-7.016985299999931],[110.49948630000006,-7.016398399999957],[110.49783020000007,-7.020787499999926],[110.49890610000006,-7.021086599999933],[110.49772140000005,-7.024756499999967],[110.49915870000007,-7.026019599999927],[110.49584030000005,-7.027446099999963],[110.49539080000005,-7.029759599999977],[110.48741310000008,-7.029005199999972],[110.48308660000004,-7.042022],[110.48483160000006,-7.043687099999943],[110.48116980000009,-7.044205599999941],[110.48388950000009,-7.045554299999935],[110.48256230000004,-7.046229],[110.48361860000006,-7.046704599999941],[110.48293590000009,-7.048415199999965],[110.48530580000005,-7.049587199999962],[110.48596190000006,-7.0522008],[110.48464970000003,-7.0533332],[110.48481750000008,-7.051573299999973],[110.48307040000009,-7.051183199999969],[110.48073580000005,-7.053910199999962],[110.48080440000007,-7.057360599999981],[110.48435210000008,-7.055984499999965],[110.48551940000004,-7.055109],[110.48667910000006,-7.050144199999977],[110.49099730000006,-7.0552563],[110.49144750000005,-7.060323699999969],[110.49553680000008,-7.063354899999979],[110.49941250000006,-7.063315799999941],[110.50092320000005,-7.067042799999967],[110.49792480000008,-7.067245],[110.49838260000007,-7.069382099999928],[110.49694060000007,-7.068971099999942],[110.49722290000005,-7.067776599999945],[110.49542240000005,-7.068275399999948],[110.49529270000005,-7.071233699999937],[110.49415590000007,-7.071004799999969],[110.48923490000004,-7.077316699999926],[110.47758480000005,-7.085433899999941],[110.47817230000004,-7.087792399999955],[110.48223110000004,-7.090649599999949],[110.48955540000009,-7.091556499999967],[110.49691770000004,-7.094221599999969],[110.49966430000006,-7.096715399999937],[110.49978640000006,-7.101811899999973],[110.50241090000009,-7.101624499999957],[110.502594,-7.102767],[110.49864960000008,-7.108812299999954],[110.49575810000005,-7.109660599999927],[110.49685670000008,-7.110956199999976],[110.49971770000008,-7.109886599999925],[110.50289920000006,-7.111363399999959],[110.501648,-7.113271699999927],[110.49955350000005,-7.112034799999947],[110.49978640000006,-7.118557899999928],[110.50536350000004,-7.123053499999969],[110.51020810000006,-7.1219344],[110.51335150000006,-7.1234922],[110.51339720000004,-7.128255799999977],[110.51634210000009,-7.130700599999955],[110.52091980000006,-7.133235399999933],[110.52716060000006,-7.129183699999942],[110.53163910000006,-7.131872199999975],[110.534935,-7.130744899999968],[110.53526310000007,-7.128314499999931],[110.53639220000008,-7.1299639],[110.53844450000008,-7.127697],[110.54238580000003,-7.128355299999953],[110.54741560000008,-7.132219899999939],[110.54631040000004,-7.134951399999977],[110.54885020000006,-7.138141399999938],[110.55131530000006,-7.137258499999973],[110.55827370000009,-7.139654],[110.58008570000004,-7.132378099999926],[110.58215330000007,-7.130141699999967],[110.58721920000005,-7.128820399999938],[110.59345250000007,-7.123405399999967],[110.59442140000004,-7.119925899999942],[110.59260560000007,-7.115219099999933],[110.58495330000005,-7.1144838],[110.57897950000006,-7.111605599999962],[110.57350160000004,-7.100807199999963],[110.56946560000006,-7.097408299999927],[110.564888,-7.095896699999969],[110.56478120000008,-7.093235],[110.56199650000008,-7.094563],[110.56144330000006,-7.090378299999941],[110.563321,-7.091267599999981],[110.56322650000004,-7.087749299999928],[110.56523280000005,-7.086920499999962],[110.56842290000009,-7.0755381],[110.57096630000007,-7.075687],[110.571803,-7.073949899999946],[110.57378390000008,-7.073815299999978],[110.57529450000004,-7.070209499999976],[110.58357240000004,-7.069443199999967],[110.58547970000006,-7.070160399999963],[110.58483890000008,-7.071592799999962],[110.58731080000007,-7.07096],[110.58808140000008,-7.073221199999978],[110.59123230000006,-7.070788399999969],[110.59214780000008,-7.067194399999948],[110.59384920000008,-7.067987],[110.59506220000009,-7.055835199999933],[110.59936520000008,-7.048691699999949],[110.60433960000006,-7.046463],[110.60924530000005,-7.036408899999969],[110.61952520000006,-7.0211468],[110.61413670000007,-7.020131],[110.62239390000008,-7.010952799999927],[110.62351990000008,-7.007524499999931],[110.62390140000008,-7.004359699999952],[110.62165460000006,-7.000983],[110.62428990000006,-6.9941221],[110.62197310000005,-6.992412],[110.62274250000007,-6.989779699999929],[110.62031,-6.986544899999956],[110.621645,-6.985712799999931],[110.61908370000003,-6.984607199999971],[110.61943050000008,-6.982597799999951],[110.62261940000008,-6.981291599999963],[110.63089940000003,-6.984232199999951],[110.63093540000006,-6.979107599999963],[110.63392640000006,-6.979378699999927],[110.63826750000004,-6.976400299999966],[110.64455410000005,-6.978965699999947],[110.65091710000007,-6.974150599999973],[110.65265660000006,-6.975075699999934],[110.65810390000007,-6.973399099999938],[110.66324620000006,-6.975861],[110.67174530000005,-6.976106099999981],[110.67165380000006,-6.977883299999974],[110.66936490000006,-6.979131199999927],[110.67103570000006,-6.980834499999958],[110.66814420000009,-6.982879199999957],[110.674736,-6.987235],[110.67843630000004,-6.987184],[110.67675780000008,-6.991211399999941],[110.68041230000006,-6.996782799999949],[110.67523190000009,-7.004940499999975],[110.67330930000008,-7.005528399999946],[110.673233,-7.008194899999978],[110.67655790000003,-7.011496899999941],[110.67996220000003,-7.011713499999928],[110.68029020000006,-7.013729099999978],[110.68806460000008,-7.014271699999938],[110.69076540000009,-7.017074599999944],[110.69090270000004,-7.021105299999931],[110.68965150000008,-7.025197],[110.68170170000008,-7.032777799999963],[110.68338780000005,-7.034856299999944],[110.68173980000006,-7.035599199999979],[110.68022920000004,-7.034130499999947],[110.67938230000004,-7.037943799999937],[110.67610170000006,-7.037342099999933],[110.67452240000006,-7.0384469],[110.67417140000003,-7.041754199999957],[110.670433,-7.0427437],[110.66924290000009,-7.047114299999976],[110.67054750000005,-7.049130899999966],[110.66827390000009,-7.049976799999968],[110.66945650000008,-7.052034399999968],[110.66780090000009,-7.052901199999951],[110.66946410000008,-7.054338899999948],[110.67420670000007,-7.0495065],[110.67704040000007,-7.050775399999964],[110.67875670000006,-7.047584499999971],[110.67713160000005,-7.046371],[110.68994140000007,-7.032156899999961],[110.69317630000006,-7.033728099999962],[110.69461820000004,-7.030793599999981],[110.69091840000004,-7.029994599999952],[110.69214570000008,-7.024894599999925],[110.69861610000004,-7.025907699999948],[110.69961190000004,-7.021502899999973],[110.69320060000007,-7.020055],[110.69366450000007,-7.018229499999961],[110.72946930000006,-7.032909899999936],[110.76264950000007,-7.021733299999937],[110.75785830000007,-7.018915199999981],[110.76065830000005,-7.016691699999967],[110.76420590000004,-7.018190799999957],[110.76547240000008,-7.014420499999972],[110.76840970000006,-7.014174399999945],[110.76887510000006,-7.010550499999965],[110.76419830000009,-7.003925799999934],[110.76652530000007,-7.003053199999954],[110.77145380000007,-7.004642],[110.77569580000005,-7.001930699999946],[110.77464290000006,-6.999032499999942],[110.76377870000005,-7.000000399999976],[110.763649,-6.997630599999979],[110.768486,-6.996377399999972],[110.76694490000006,-6.9906645],[110.77201840000004,-6.991160799999932],[110.77268220000008,-6.989680299999975],[110.76741790000005,-6.983979199999965],[110.76224520000005,-6.985246199999949],[110.76136780000007,-6.982946399999946],[110.76271060000005,-6.979759699999931],[110.76854710000003,-6.980073],[110.77424620000005,-6.9753084],[110.76906490000005,-6.972220099999959],[110.77118440000004,-6.969268099999965],[110.77034770000006,-6.967791199999965],[110.76552770000006,-6.969381299999952],[110.76330390000004,-6.968132199999957],[110.76497990000007,-6.965524499999958],[110.76990690000008,-6.962672299999952],[110.77343980000006,-6.965408899999943],[110.77646570000007,-6.964059599999928],[110.77404720000004,-6.958735799999943],[110.77391520000003,-6.951181399999939],[110.77746880000007,-6.949088],[110.77220480000005,-6.946091899999942],[110.77226610000008,-6.944549799999947],[110.779074,-6.9462464],[110.78083740000005,-6.943897099999958],[110.77941730000003,-6.940576799999974],[110.78460630000006,-6.942164899999966],[110.78259210000004,-6.938521],[110.78632420000008,-6.9370655],[110.78344660000005,-6.934687399999973],[110.77886140000004,-6.934939699999973],[110.77710830000007,-6.933622399999933],[110.78215020000005,-6.928027099999952],[110.78317260000006,-6.921651299999951],[110.78685,-6.914895],[110.78598020000004,-6.911261],[110.79180140000005,-6.908011899999963],[110.79538730000007,-6.899220899999932],[110.80115510000007,-6.898987299999931],[110.807511,-6.894013799999925],[110.808803,-6.890649499999938],[110.808464,-6.8808231],[110.81384250000008,-6.877407],[110.81462550000003,-6.873994699999969],[110.81849420000009,-6.8700901],[110.82614760000007,-6.866433599999937],[110.82454430000007,-6.863184899999965],[110.82573820000005,-6.8609651],[110.83269110000003,-6.859775199999945],[110.83302140000006,-6.856403799999953],[110.83738260000007,-6.8550484],[110.83894850000007,-6.847319099999936],[110.838126,-6.846332099999927],[110.83429990000008,-6.847070899999949],[110.83351910000005,-6.844809199999929],[110.83183260000004,-6.8442741],[110.82553680000007,-6.849000199999978],[110.82081140000008,-6.849704299999928],[110.81510650000007,-6.842125499999952],[110.81314690000005,-6.835707],[110.799836,-6.838261199999977],[110.79923610000009,-6.832046799999944],[110.79299690000005,-6.824021899999934],[110.79273080000007,-6.8205455],[110.79023540000009,-6.816979],[110.78657970000006,-6.815462],[110.78340880000007,-6.8069143],[110.777932,-6.802291],[110.76991080000005,-6.801603099999966],[110.759152,-6.791549199999963]]]},"properties":{"shapeName":"Demak","shapeISO":"","shapeID":"22746128B97331723457031","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[101.88460670000006,-1.134866799999941],[101.88513190000003,-1.112987799999928],[101.89291350000008,-1.106408],[101.89291750000007,-1.102557399999966],[101.89143180000008,-1.100630499999966],[101.88399160000006,-1.102120099999979],[101.88144260000007,-1.100833899999941],[101.87889960000007,-1.093771799999956],[101.87634990000004,-1.093127399999958],[101.87251240000006,-1.104675099999952],[101.86783,-1.111087699999928],[101.86506620000006,-1.1119404],[101.86018130000008,-1.108940299999972],[101.85360220000007,-1.100162699999942],[101.84921780000008,-1.099491799999953],[101.84552420000006,-1.101702599999953],[101.84651420000006,-1.110472399999935],[101.84547610000004,-1.111867399999937],[101.84091470000004,-1.112336599999935],[101.836986,-1.110307399999954],[101.830818,-1.102578],[101.82490850000005,-1.088484799999947],[101.82876140000008,-1.071055499999943],[101.82667610000004,-1.064861399999927],[101.82153160000007,-1.059173699999974],[101.82538740000007,-1.0381547],[101.82243880000004,-1.034149399999933],[101.82197410000003,-1.031071299999951],[101.82733070000006,-1.007382399999926],[101.82201170000008,-1],[101.82199060000005,-0.995768899999973],[101.82341140000005,-0.992187],[101.83340560000005,-0.981525699999963],[101.824852,-0.979776499999957],[101.82153320000003,-0.977189099999975],[101.82066140000006,-0.9795682],[101.81833370000004,-0.978789899999924],[101.81496850000008,-0.975670399999956],[101.79866670000007,-0.968398599999944],[101.79271970000008,-0.971265799999969],[101.78366490000008,-0.969451899999967],[101.77357720000003,-0.969980599999928],[101.76271770000005,-0.975714099999948],[101.75573280000003,-0.974939199999938],[101.73269520000008,-0.955702599999938],[101.71820340000005,-0.948428199999967],[101.70371610000007,-0.947138499999937],[101.69026050000008,-0.941944699999965],[101.689483,-0.940123699999958],[101.71394030000005,-0.900340799999981],[101.71262380000007,-0.868595499999969],[101.71106920000005,-0.864953599999978],[101.69943370000004,-0.871987899999965],[101.68856780000004,-0.870174199999951],[101.68390880000004,-0.866274199999964],[101.67872910000006,-0.857690599999955],[101.67121320000007,-0.8371382],[101.66940110000007,-0.835317799999928],[101.65361650000006,-0.8280422],[101.64818390000005,-0.827785699999936],[101.63628570000009,-0.830135699999971],[101.61662140000004,-0.824423699999954],[101.60420520000008,-0.826253599999973],[101.59644990000004,-0.834846599999935],[101.59308730000004,-0.835629599999947],[101.57065390000008,-0.832925099999954],[101.558237,-0.834494799999959],[101.55124780000006,-0.827993099999958],[101.54865770000004,-0.823310299999946],[101.53701120000005,-0.816030699999942],[101.52355550000004,-0.811614899999938],[101.500011,-0.809287299999937],[101.49498480000005,-0.805459699999972],[101.48603470000006,-0.820441399999936],[101.48209910000008,-0.824396299999933],[101.47227070000008,-0.826911299999949],[101.46709590000006,-0.836875199999952],[101.464,-0.839732899999944],[101.46123750000004,-0.840018699999973],[101.45693030000007,-0.835458099999926],[101.45247370000004,-0.8333506],[101.44947930000006,-0.833924099999933],[101.44637720000009,-0.837161],[101.43971070000003,-0.840266699999972],[101.43685130000006,-0.850306599999954],[101.433654,-0.852699599999937],[101.43216650000005,-0.852332499999932],[101.429975,-0.857153799999935],[101.43260480000004,-0.8624134],[101.432824,-0.866577199999938],[101.42646870000004,-0.8654815],[101.42164740000004,-0.880821899999944],[101.41573040000009,-0.884766499999955],[101.40880510000005,-0.884985699999959],[101.40832920000008,-0.886770399999932],[101.40581790000005,-0.887959899999942],[101.40568570000005,-0.889678199999935],[101.40856210000004,-0.892717499999947],[101.41255880000006,-0.894039899999939],[101.414277,-0.897344199999964],[101.41335180000004,-0.906199899999933],[101.41480570000004,-0.912808499999926],[101.41432040000007,-0.914749799999925],[101.40899010000004,-0.917302399999926],[101.41004750000008,-0.921135499999934],[101.411237,-0.9224572],[101.41784570000004,-0.921796299999926],[101.42498310000008,-0.922985899999958],[101.42881610000006,-0.928008499999976],[101.42749440000006,-0.931577199999936],[101.40760940000007,-0.931243699999925],[101.39930160000006,-0.938942699999927],[101.39420450000006,-0.941287599999953],[101.38665280000004,-0.939507599999956],[101.38387710000006,-0.936071099999936],[101.37515370000006,-0.939639799999952],[101.37036830000005,-0.936236099999974],[101.36079490000009,-0.937711699999966],[101.35586830000005,-0.926153299999953],[101.35353190000006,-0.923483099999942],[101.351628,-0.923723699999925],[101.34943450000009,-0.925185799999952],[101.34877150000005,-0.928419799999972],[101.34999420000008,-0.933548],[101.35354520000004,-0.939455099999975],[101.35310740000006,-0.947817899999961],[101.34407610000005,-0.9511091],[101.34357990000007,-0.955517899999961],[101.33786750000007,-0.958365199999946],[101.33445690000008,-0.950596499999961],[101.33218310000007,-0.949080599999945],[101.31569810000008,-0.952491299999963],[101.31228740000006,-0.951354399999957],[101.30668150000008,-0.952235299999927],[101.30268650000005,-0.950737099999969],[101.27954840000007,-0.950737099999969],[101.27338930000008,-0.949571899999967],[101.26275250000003,-0.941015799999946],[101.26115440000007,-0.941282099999967],[101.24916930000006,-0.933558299999959],[101.24144550000005,-0.932493],[101.23935750000004,-0.929862599999979],[101.23665140000008,-0.9292969],[101.23260850000008,-0.931039899999973],[101.224403,-0.927476799999965],[101.21408780000007,-0.918339499999945],[101.20953670000006,-0.912321],[101.208952,-0.908812599999976],[101.194334,-0.905889],[101.19141030000009,-0.913782799999979],[101.18848670000006,-0.9161216],[101.19170270000006,-0.921968899999968],[101.19316450000008,-0.932786199999953],[101.19141030000009,-0.937756299999933],[101.18819440000004,-0.940679899999964],[101.18720520000005,-0.950676199999975],[101.19543990000005,-0.952249799999947],[101.19651510000006,-0.960724099999936],[101.20260640000004,-0.978040199999953],[101.19987150000009,-0.981034899999941],[101.19131490000007,-0.984538199999974],[101.188241,-0.987499799999966],[101.18661730000008,-0.994387899999936],[101.19053190000005,-1.004433399999925],[101.18729680000007,-1.017487699999947],[101.181628,-1.028625099999942],[101.17786770000004,-1.032543399999952],[101.16794180000005,-1.033333399999947],[101.16249040000008,-1.030987699999969],[101.14573190000004,-1.0348851],[101.16153110000005,-1.056753],[101.16231120000003,-1.059101899999973],[101.16023630000007,-1.067293199999938],[101.16853730000008,-1.087329099999977],[101.169346,-1.092397099999971],[101.16826590000005,-1.102126899999973],[101.17207840000003,-1.101375799999971],[101.18226560000005,-1.102804099999958],[101.19555370000006,-1.107924799999978],[101.20626880000003,-1.121360399999958],[101.21466820000006,-1.135042899999974],[101.23232760000008,-1.151082899999949],[101.23667460000007,-1.1512752],[101.24121380000008,-1.148335],[101.24982060000008,-1.147287499999948],[101.26123390000004,-1.140687499999956],[101.27687350000008,-1.146156599999927],[101.28724990000006,-1.141384599999981],[101.30812640000005,-1.1456749],[101.32382220000005,-1.1408333],[101.33475710000005,-1.134020499999963],[101.34435940000009,-1.135187299999927],[101.34851010000006,-1.133813599999939],[101.35071390000007,-1.131462599999963],[101.34407880000003,-1.115823399999954],[101.34179750000004,-1.102121899999929],[101.34399720000005,-1.094485499999962],[101.34042,-1.085898499999928],[101.33950660000005,-1.079178],[101.34306590000006,-1.067821099999946],[101.34794230000006,-1.061695899999961],[101.34267810000006,-1.048845],[101.34351830000008,-1.044668099999967],[101.36005810000006,-1.041523499999926],[101.37083120000005,-1.047649099999944],[101.374966,-1.048105199999952],[101.38579620000007,-1.044051299999978],[101.38968840000007,-1.044113599999946],[101.40494310000008,-1.037732799999958],[101.409285,-1.031987399999934],[101.416482,-1.027675399999964],[101.420303,-1.019450899999924],[101.42245270000006,-1.008119399999941],[101.424981,-1.006094699999949],[101.429391,-1.004786399999944],[101.44915830000008,-1.009281399999963],[101.45383070000008,-1.0120835],[101.45577890000004,-1.015018199999929],[101.455201,-1.022717899999975],[101.45922340000004,-1.032154599999956],[101.45650230000007,-1.0363326],[101.455016,-1.043641599999944],[101.44885640000007,-1.047104599999955],[101.44730250000003,-1.050825],[101.44053450000007,-1.057540399999937],[101.43943740000009,-1.064849199999969],[101.44197890000004,-1.0795282],[101.44049170000005,-1.087092499999926],[101.43557070000008,-1.098254099999963],[101.414285,-1.122004499999946],[101.41150620000008,-1.134926399999927],[101.40391590000007,-1.148759],[101.40301630000005,-1.1590042],[101.40815210000005,-1.171854199999927],[101.40881240000004,-1.180394],[101.41933350000005,-1.194152599999939],[101.43483070000008,-1.207934799999975],[101.44949330000009,-1.21014],[101.45008,-1.2132714],[101.44476650000007,-1.219801099999927],[101.44730740000006,-1.230355199999963],[101.44731730000007,-1.241186499999969],[101.45193220000004,-1.251034699999934],[101.466495,-1.259748699999932],[101.46838390000005,-1.267902799999945],[101.467613,-1.282376199999931],[101.49906860000004,-1.296909599999935],[101.51172070000007,-1.299572099999978],[101.52376690000006,-1.304031],[101.52435520000006,-1.308597599999928],[101.52286730000009,-1.312644299999931],[101.51878510000006,-1.3171503],[101.51697410000008,-1.3225023],[101.51349090000008,-1.335992799999929],[101.51446620000007,-1.3382754],[101.52906060000004,-1.336955399999965],[101.53541470000005,-1.334012799999925],[101.54222580000004,-1.333940499999926],[101.54933470000009,-1.325626799999952],[101.585985,-1.326045199999953],[101.60052180000008,-1.344926099999952],[101.60675390000006,-1.349616699999956],[101.617527,-1.354693699999928],[101.62226710000004,-1.359320599999933],[101.63472790000009,-1.365504699999974],[101.64444890000004,-1.3670369],[101.65003,-1.369575],[101.67087240000006,-1.388601],[101.67093960000005,-1.390688499999953],[101.66471390000004,-1.391739399999949],[101.65829360000004,-1.3984117],[101.64864350000005,-1.4016588],[101.63853040000004,-1.403030699999931],[101.63511710000006,-1.408192099999951],[101.62687420000003,-1.411033099999941],[101.62466410000007,-1.413058199999966],[101.62366480000009,-1.418621499999972],[101.61482180000007,-1.424396],[101.61186420000007,-1.431651799999941],[101.60734550000006,-1.437522599999966],[101.59739390000004,-1.441377],[101.59266670000005,-1.440876799999955],[101.57939970000007,-1.447769],[101.57296250000007,-1.446967299999926],[101.568736,-1.444646099999943],[101.56501710000003,-1.446571799999958],[101.56260110000005,-1.4444508],[101.55888110000006,-1.445365199999969],[101.55788180000008,-1.4510299],[101.55486990000009,-1.455685499999959],[101.555582,-1.462865299999976],[101.54258520000008,-1.474468599999966],[101.534249,-1.484389599999929],[101.52570180000004,-1.485714199999961],[101.52843,-1.496836199999962],[101.53405510000005,-1.505186399999957],[101.53872970000003,-1.508377899999971],[101.53922050000006,-1.513173499999937],[101.53217810000007,-1.521894799999927],[101.52744520000005,-1.523926699999947],[101.52422550000006,-1.527679099999943],[101.52161720000004,-1.5373072],[101.51666090000003,-1.540005599999972],[101.51545620000007,-1.543755699999963],[101.51637520000008,-1.554088799999931],[101.50903570000008,-1.5671674],[101.50843740000005,-1.572436599999946],[101.50451120000008,-1.575176899999974],[101.48879770000008,-1.57885],[101.48639950000006,-1.580745099999945],[101.46462460000004,-1.601324199999965],[101.45292980000005,-1.617824499999927],[101.44006650000006,-1.628341299999931],[101.43216490000003,-1.639965299999972],[101.43087260000004,-1.644403899999929],[101.42875170000008,-1.670168699999977],[101.42664920000004,-1.677036399999963],[101.42837140000006,-1.678595399999949],[101.43078240000006,-1.681599499999948],[101.43050790000007,-1.6875098],[101.43638660000005,-1.694830299999978],[101.43727130000008,-1.695826699999941],[101.43987050000004,-1.695184299999937],[101.44725470000009,-1.685994599999958],[101.45516640000005,-1.682905199999936],[101.464121,-1.682138499999951],[101.47583270000007,-1.677292499999965],[101.48073890000006,-1.673509599999932],[101.48414690000004,-1.6728662],[101.49680740000008,-1.678776299999925],[101.50160330000006,-1.679176799999937],[101.50639060000003,-1.672837699999945],[101.50997720000004,-1.655949199999952],[101.51894310000006,-1.643863899999928],[101.52153460000005,-1.637179099999969],[101.527592,-1.630199499999947],[101.53221420000006,-1.618472],[101.54905610000009,-1.596257099999946],[101.551969,-1.593995899999925],[101.56155540000003,-1.591079],[101.57047760000006,-1.577225099999964],[101.58166390000008,-1.577434499999924],[101.60463040000008,-1.562588799999958],[101.611963,-1.553058499999963],[101.63077210000006,-1.542701699999952],[101.632788,-1.537819199999944],[101.63662980000004,-1.533470799999975],[101.64991240000006,-1.52268],[101.65269860000006,-1.518301899999926],[101.66178960000008,-1.515547399999946],[101.66478860000007,-1.511651399999948],[101.67096480000004,-1.508042],[101.67184590000005,-1.500921199999937],[101.68830140000006,-1.477147299999956],[101.69527480000005,-1.464068199999929],[101.70557030000003,-1.4532045],[101.72361380000007,-1.438662699999952],[101.72391650000009,-1.435290399999928],[101.71783750000009,-1.418633899999975],[101.71240460000007,-1.415619599999957],[101.70477820000008,-1.413711499999977],[101.70095810000004,-1.406745],[101.69675740000008,-1.3940978],[101.70038070000004,-1.388748599999929],[101.722664,-1.366611399999954],[101.72459770000006,-1.361742299999946],[101.72179980000004,-1.348242599999935],[101.71416840000006,-1.336289299999976],[101.70853010000008,-1.320567299999936],[101.70100920000004,-1.309015299999942],[101.69525440000007,-1.291304099999934],[101.69731880000006,-1.286552299999926],[101.71488730000004,-1.26359],[101.71604040000005,-1.2541679],[101.721794,-1.250165299999935],[101.72078330000005,-1.245858299999952],[101.72169830000007,-1.2410692],[101.72624490000004,-1.240106],[101.73357710000005,-1.235190299999942],[101.74083580000007,-1.236575199999947],[101.75401720000008,-1.235943899999938],[101.77465470000004,-1.237641599999961],[101.78090630000008,-1.234055799999965],[101.78529950000006,-1.224364599999944],[101.79139420000007,-1.222671599999956],[101.79434770000006,-1.220042599999942],[101.81378290000004,-1.220987699999966],[101.85850970000007,-1.163835199999937],[101.86389820000005,-1.158643899999959],[101.866262,-1.151252799999952],[101.87145650000008,-1.148633799999971],[101.87597470000009,-1.140282799999966],[101.88215080000003,-1.137779],[101.88460670000006,-1.134866799999941]]]},"properties":{"shapeName":"Dharmasraya","shapeISO":"","shapeID":"22746128B82616287009603","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[136.22728110000003,-3.992240399999957],[136.22728070000005,-3.951865199999929],[136.2045237000001,-3.934981],[136.1905759000001,-3.929108199999973],[136.1494666000001,-3.8549646],[136.13258240000005,-3.826334899999949],[136.1193687000001,-3.8079825],[136.0922071000001,-3.751457199999948],[136.0819298,-3.735307099999943],[136.06945020000012,-3.727232],[136.05645390000007,-3.7226889],[136.0444394000001,-3.724650699999927],[136.02838530000008,-3.730384299999969],[136.02093160000004,-3.734971199999961],[136.000864,-3.762492499999951],[135.99226360000011,-3.767652699999928],[135.98481,-3.769946199999936],[135.96646250000003,-3.766506],[135.95384850000005,-3.769372799999928],[135.94868830000007,-3.7751064],[135.94123460000003,-3.7768265],[135.90912650000007,-3.779693299999963],[135.9039662,-3.783706799999948],[135.89536580000004,-3.785426899999948],[135.8850463000001,-3.7831334],[135.88504540000008,-3.794027299999925],[135.88160520000008,-3.816388299999971],[135.87185810000005,-3.830148899999926],[135.8644044,-3.831869],[135.86669790000008,-3.838176],[135.866124,-3.840469399999961],[135.8609643000001,-3.841042799999968],[135.83860320000008,-3.838176],[135.82770940000012,-3.839896099999976],[135.8179623000001,-3.839322699999968],[135.81337540000004,-3.842189499999961],[135.80764180000006,-3.843336199999953],[135.80190820000007,-3.847349699999938],[135.79961480000009,-3.850789899999938],[135.7938812000001,-3.8530833],[135.7904410000001,-3.858816899999965],[135.7629197000001,-3.860537],[135.75431930000002,-3.862830499999973],[135.74686570000006,-3.859963199999925],[135.73597180000002,-3.865123899999958],[135.7233579000001,-3.8645505],[135.71647760000008,-3.868564399999968],[135.7078772000001,-3.866844],[135.69913350000002,-3.8684924],[135.69196650000004,-3.865625099999932],[135.68336610000006,-3.869925799999976],[135.6625818000001,-3.884976499999937],[135.631047,-3.8978771],[135.6224466000001,-3.903610699999945],[135.6002297000001,-3.907194899999979],[135.59879550000005,-3.916511299999968],[135.59019510000007,-3.925828399999943],[135.5794446000001,-3.934428799999978],[135.559377,-3.935145499999976],[135.54790980000007,-3.932278699999927],[135.52425870000002,-3.907910899999933],[135.51135810000005,-3.900027199999954],[135.50347440000007,-3.892860199999973],[135.4877070000001,-3.882109699999944],[135.46190590000003,-3.867059],[135.44757190000007,-3.8656256],[135.4389715000001,-3.867774599999962],[135.40672,-3.8620421],[135.39883630000008,-3.867059],[135.37733530000003,-3.866342299999928],[135.28201420000005,-3.839824399999941],[135.20292730000006,-3.819873199999961],[135.1771357,-3.851534899999933],[135.1388250000001,-3.905458],[135.04729940000004,-4.045284599999945],[135.06314010000006,-4.144496699999934],[135.065929,-4.149144899999953],[135.29847560000007,-4.155976199999941],[135.29851830000007,-4.160232399999927],[135.3256715000001,-4.170223499999963],[135.33546910000007,-4.177893199999971],[135.3455202,-4.175474599999973],[135.35642870000004,-4.169175499999938],[135.3644809000001,-4.157795799999974],[135.3982466000001,-4.160797199999934],[135.42239670000004,-4.176477099999943],[135.4412648000001,-4.192461299999934],[135.45131660000004,-4.191679599999929],[135.4959050000001,-4.201503199999934],[135.5249460000001,-4.203036099999963],[135.55974560000004,-4.207754],[135.58645410000008,-4.207918799999959],[135.59633340000005,-4.206445599999938],[135.61120470000003,-4.216435499999932],[135.61782230000006,-4.218930599999965],[135.648836,-4.216060099999936],[135.67124,-4.203002499999968],[135.67715910000004,-4.192478699999981],[135.68686550000007,-4.1904872],[135.6917634,-4.191431299999977],[135.7065510000001,-4.203143699999941],[135.73920480000004,-4.2101832],[135.74599520000004,-4.213453],[135.75209580000012,-4.214223],[135.7750979000001,-4.208097799999962],[135.7824859000001,-4.207573099999934],[135.78609560000007,-4.208948899999939],[135.79573010000001,-4.220923099999936],[135.79934050000008,-4.222902399999953],[135.8135191,-4.225560299999927],[135.86050180000007,-4.228807699999948],[135.888937,-4.226878899999974],[135.90457830000003,-4.231429099999957],[135.91737510000007,-4.227794099999926],[135.93205250000005,-4.226752599999941],[135.9493205000001,-4.2265592],[135.9572260000001,-4.227928499999962],[135.96324390000007,-4.231197499999951],[135.9710030000001,-4.241937299999961],[135.98445560000005,-4.256031199999939],[135.9866681000001,-4.255955],[135.98984560000008,-4.252383399999928],[135.99397910000005,-4.254485399999965],[135.99948510000002,-4.254135099999928],[136.0065171000001,-4.2570191],[136.0109533000001,-4.2619587],[136.0129832,-4.261847699999976],[136.01394930000004,-4.259427],[136.01547950000008,-4.259118499999943],[136.03206770000008,-4.262953899999957],[136.0351511,-4.262139099999956],[136.03634140000008,-4.259008],[136.04472450000003,-4.260544599999946],[136.04960990000006,-4.258785499999931],[136.053304,-4.260379499999942],[136.05265570000006,-4.265097099999934],[136.0708178000001,-4.276095099999964],[136.0692179,-4.271695],[136.07324140000003,-4.2634621],[136.0754535000001,-4.262297699999976],[136.0817277000001,-4.262789],[136.09455780000008,-4.254283699999974],[136.09005880000007,-4.243407899999966],[136.08566070000006,-4.224838299999931],[136.0905474000001,-4.175970699999937],[136.08761540000012,-4.138342699999953],[136.0906245000001,-4.087881],[136.09407340000007,-4.06537],[136.10081720000005,-4.058867],[136.10293760000002,-4.051331499999947],[136.12196380000012,-4.031666],[136.15140770000005,-4.0183966],[136.1608176000001,-4.017486499999961],[136.179941,-4.019611],[136.19264050000004,-4.027764399999967],[136.21318610000003,-4.005204599999956],[136.22728110000003,-3.992240399999957]]]},"properties":{"shapeName":"Dogiyai","shapeISO":"","shapeID":"22746128B44403893714358","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[118.42395780000004,-8.6707077],[118.42460630000005,-8.6684685],[118.42300410000007,-8.6690235],[118.42395780000004,-8.6707077]]],[[[118.192421,-8.648713099999952],[118.193367,-8.64810749999998],[118.19123840000009,-8.647769],[118.192421,-8.648713099999952]]],[[[118.21987920000004,-8.646790499999952],[118.21902460000001,-8.644560799999965],[118.21882630000005,-8.646760899999947],[118.2154541000001,-8.64689059999995],[118.21591950000004,-8.6482963],[118.21364590000007,-8.649724],[118.22474670000008,-8.653031399999975],[118.22504430000004,-8.655181899999945],[118.22177120000003,-8.655419399999971],[118.22399140000005,-8.6586332],[118.2253799,-8.655527099999972],[118.22731780000004,-8.65500929999996],[118.22573850000003,-8.64890669999994],[118.21987920000004,-8.646790499999952]]],[[[118.22712710000008,-8.647245399999974],[118.2281494,-8.645627],[118.2268524000001,-8.644159299999956],[118.22537230000012,-8.647214899999938],[118.22712710000008,-8.647245399999974]]],[[[118.1946564000001,-8.642165199999965],[118.19484710000006,-8.6398602],[118.1937180000001,-8.6406841],[118.1946564000001,-8.642165199999965]]],[[[118.20648190000009,-8.642523799999935],[118.20561980000002,-8.639571199999978],[118.20288090000008,-8.637515099999973],[118.2011185,-8.63801189999998],[118.20124050000004,-8.640344599999935],[118.19900510000002,-8.642528499999969],[118.2023163,-8.6450634],[118.19781490000003,-8.6440906],[118.19765470000004,-8.646096199999931],[118.19481660000008,-8.646598799999936],[118.19490050000002,-8.64871979999998],[118.20359040000005,-8.649812699999927],[118.20932770000002,-8.654132799999957],[118.21251680000012,-8.651710499999979],[118.20982360000005,-8.647360799999944],[118.21320350000008,-8.638278],[118.20779420000008,-8.638114],[118.2087021000001,-8.64058209999996],[118.20790860000011,-8.643004399999938],[118.20648190000009,-8.642523799999935]]],[[[118.2238235000001,-8.6374893],[118.22109220000004,-8.635897599999964],[118.22044370000003,-8.637318599999958],[118.22409820000007,-8.640637399999946],[118.22386170000004,-8.643446899999958],[118.22266390000004,-8.643884699999944],[118.22343440000009,-8.6453018],[118.22085570000002,-8.644726699999978],[118.22368620000009,-8.646843],[118.22514340000009,-8.638697599999944],[118.22705080000003,-8.638209299999971],[118.2238235000001,-8.6374893]]],[[[118.39363860000003,-8.620665499999973],[118.39608,-8.617143599999963],[118.39512630000002,-8.612542099999928],[118.39309690000005,-8.61362269999995],[118.39162450000003,-8.616972],[118.39363860000003,-8.620665499999973]]],[[[118.20070680000003,-8.597146799999962],[118.20068250000008,-8.595608599999935],[118.1992067000001,-8.595873899999958],[118.20070680000003,-8.597146799999962]]],[[[118.4439066000001,-8.268683299999964],[118.44243620000009,-8.270069099999944],[118.44281770000009,-8.2743235],[118.439476,-8.278324099999963],[118.43415830000004,-8.276922199999944],[118.43216710000002,-8.280276299999969],[118.42736820000005,-8.282291399999963],[118.42333220000012,-8.286618199999964],[118.41361240000003,-8.289506899999935],[118.41011810000009,-8.29646779999996],[118.39189150000004,-8.302084899999954],[118.38806920000002,-8.304639799999961],[118.38716120000004,-8.3127766],[118.38962550000008,-8.318035099999975],[118.3881149,-8.323246],[118.3892135000001,-8.3271875],[118.38607030000003,-8.331550599999957],[118.38026430000002,-8.334469799999965],[118.37329100000011,-8.334651899999926],[118.36322790000008,-8.338506699999925],[118.36025240000004,-8.340895699999976],[118.35868070000004,-8.348144499999933],[118.35569,-8.352447499999926],[118.35295870000004,-8.351545299999941],[118.35289000000012,-8.349191699999949],[118.3473282000001,-8.34422879999994],[118.33789060000004,-8.345384599999932],[118.33540340000002,-8.348387699999932],[118.33677670000009,-8.352327299999956],[118.33458710000002,-8.360091199999943],[118.336113,-8.3628588],[118.33524320000004,-8.365440399999954],[118.32913970000004,-8.365957299999934],[118.32289890000004,-8.360104499999977],[118.32475280000006,-8.366209],[118.31742860000008,-8.370325099999945],[118.31696320000003,-8.377306],[118.322258,-8.381637599999976],[118.31973270000003,-8.385955799999977],[118.32277680000004,-8.389448199999947],[118.3204574,-8.3933382],[118.31984710000006,-8.39960579999996],[118.322876,-8.4055996],[118.3208237,-8.405037899999968],[118.31845090000002,-8.4067106],[118.31564330000003,-8.405901899999947],[118.31504820000009,-8.407539399999962],[118.312912,-8.4075117],[118.31094360000009,-8.409605],[118.310318,-8.4116869],[118.30823520000001,-8.4116106],[118.30817420000005,-8.41910269999994],[118.30317690000004,-8.420393],[118.30290980000007,-8.423523899999964],[118.29946140000004,-8.425923299999965],[118.29840090000005,-8.428731899999946],[118.29303740000012,-8.429290799999933],[118.29147340000009,-8.431852399999968],[118.28575130000002,-8.433214199999952],[118.28225710000004,-8.435892099999933],[118.27683260000003,-8.436390899999935],[118.27211000000011,-8.439317699999947],[118.26697540000009,-8.436411799999973],[118.26287080000009,-8.437229099999968],[118.25936890000003,-8.434037199999977],[118.25111390000006,-8.4377737],[118.24532320000003,-8.4386187],[118.24271390000001,-8.441209799999967],[118.23525240000004,-8.4381628],[118.2253952000001,-8.437493299999971],[118.22138980000011,-8.439277699999934],[118.20519260000003,-8.4367066],[118.18515780000007,-8.417740799999933],[118.17423250000002,-8.4139652],[118.16732790000003,-8.414406799999938],[118.1624756000001,-8.409023299999944],[118.15462490000004,-8.405819],[118.14546210000003,-8.405747399999939],[118.13962560000004,-8.396212599999956],[118.1385193000001,-8.38977049999994],[118.12500000000011,-8.385383599999955],[118.11601260000009,-8.3841391],[118.10333250000008,-8.377699899999925],[118.08724980000011,-8.360945699999945],[118.07964330000004,-8.356268899999975],[118.06947330000003,-8.353117],[118.04938510000011,-8.33954239999997],[118.04524230000004,-8.335572199999945],[118.03029630000003,-8.306458499999962],[118.02454380000006,-8.29916],[118.01301580000006,-8.292574899999977],[117.99730680000005,-8.286776499999974],[117.97331240000005,-8.2729998],[117.96127320000005,-8.261257199999932],[117.95381930000008,-8.25],[117.938858,-8.235841799999946],[117.93623350000007,-8.229223199999979],[117.93098450000002,-8.2223005],[117.9287872000001,-8.2199946],[117.92200470000012,-8.217783],[117.91983030000006,-8.213340799999969],[117.91637420000006,-8.217483499999958],[117.90820310000004,-8.216178],[117.90264890000003,-8.219475799999941],[117.88819890000002,-8.216180799999961],[117.88249970000004,-8.22091679999994],[117.87414550000005,-8.221093199999927],[117.87088010000002,-8.2189264],[117.86039730000005,-8.217349],[117.85118870000008,-8.213354099999947],[117.8300018000001,-8.19710159999994],[117.81475830000011,-8.187761299999977],[117.8023071,-8.172926899999936],[117.79002380000009,-8.170431099999973],[117.7869644000001,-8.1667604],[117.77936550000004,-8.162533799999949],[117.76546480000002,-8.143521299999975],[117.75009150000005,-8.147752799999978],[117.7399597000001,-8.155727399999932],[117.73408510000002,-8.1529198],[117.7325363000001,-8.146787599999925],[117.72832490000008,-8.149878499999943],[117.723999,-8.150085399999966],[117.7271042000001,-8.158270799999968],[117.7204895000001,-8.161666899999943],[117.71904760000007,-8.163954699999977],[117.72100830000011,-8.172521599999925],[117.71259310000005,-8.182384499999955],[117.71299740000006,-8.190862699999968],[117.71044920000008,-8.195192299999974],[117.71017460000007,-8.202972399999965],[117.706543,-8.210750599999926],[117.71019740000008,-8.215292],[117.70999910000012,-8.220027899999934],[117.69924930000002,-8.226559599999973],[117.69869230000006,-8.230293299999971],[117.69601440000008,-8.233732199999963],[117.69086460000005,-8.234824199999935],[117.69423680000011,-8.241375],[117.699501,-8.243067799999949],[117.71144110000012,-8.2427073],[117.71367640000005,-8.245094299999948],[117.71295930000008,-8.246479],[117.71195220000004,-8.24393559999993],[117.71298980000006,-8.248030699999958],[117.71725460000005,-8.247674],[117.72512820000009,-8.252220199999954],[117.72860720000006,-8.257240299999978],[117.73367310000003,-8.260836599999948],[117.73615260000008,-8.271248799999967],[117.74227140000005,-8.279548599999941],[117.76441190000003,-8.289381],[117.768219,-8.296364799999935],[117.7739868000001,-8.300809899999933],[117.77318570000011,-8.306459399999937],[117.77474210000003,-8.3112049],[117.78373720000002,-8.317610699999932],[117.7882919000001,-8.324981699999967],[117.79672240000002,-8.330437699999948],[117.79763030000004,-8.333089799999925],[117.8170014000001,-8.351355599999977],[117.81829070000003,-8.357914],[117.81671140000003,-8.365911499999982],[117.8179474000001,-8.36869239999993],[117.81923670000003,-8.368903199999977],[117.82003780000002,-8.363367099999948],[117.82606510000005,-8.3625393],[117.82992560000002,-8.36529829999995],[117.82768250000004,-8.372582399999942],[117.84195710000006,-8.370911599999943],[117.846611,-8.371987299999944],[117.8508835,-8.3759985],[117.85560610000005,-8.378085099999964],[117.8579102000001,-8.3835163],[117.86656190000008,-8.3911448],[117.8766098000001,-8.397565799999938],[117.89202880000005,-8.403020899999945],[117.8974075000001,-8.411647799999969],[117.9041214,-8.417340299999978],[117.91312410000012,-8.419804599999964],[117.9172592000001,-8.425119399999971],[117.93196870000008,-8.432654399999933],[117.94583890000001,-8.435455299999944],[117.9589615000001,-8.443294499999979],[117.96830750000004,-8.447064399999931],[117.96873470000003,-8.453274699999952],[117.97272490000012,-8.454153099999928],[117.98036960000002,-8.464784599999973],[117.98629760000006,-8.465696299999934],[118.01209260000007,-8.458927199999948],[118.01898960000005,-8.454977],[118.02640530000008,-8.454130199999952],[118.03074650000008,-8.455757099999971],[118.03952030000005,-8.451921499999969],[118.04411320000008,-8.4534836],[118.04960630000005,-8.45150659999996],[118.07094570000004,-8.449398],[118.0772247000001,-8.451236699999981],[118.08211520000009,-8.450722699999972],[118.09470370000008,-8.464773199999968],[118.09590910000009,-8.473648099999934],[118.10081480000008,-8.479975699999954],[118.101738,-8.483499499999937],[118.10016630000007,-8.484732599999973],[118.1017303000001,-8.4860573],[118.1018295,-8.490282099999945],[118.10539240000003,-8.495225],[118.11006930000008,-8.496960599999966],[118.11380770000005,-8.495919199999946],[118.11717990000011,-8.493809699999929],[118.120079,-8.487724299999968],[118.11964420000004,-8.483979199999965],[118.12293240000008,-8.482364699999948],[118.12413790000005,-8.485181799999964],[118.12612150000007,-8.485137899999927],[118.13098910000008,-8.482189199999937],[118.1313477000001,-8.48732089999993],[118.12879940000005,-8.489546799999971],[118.13456730000007,-8.496844299999964],[118.13684840000008,-8.49681849999996],[118.13718420000009,-8.499042499999973],[118.13504030000001,-8.5],[118.13900760000001,-8.504962899999953],[118.13871770000003,-8.508550599999978],[118.14272310000001,-8.513972299999978],[118.14681240000004,-8.516291599999931],[118.15142060000005,-8.51595969999994],[118.16520690000004,-8.5251503],[118.17162320000011,-8.526858299999958],[118.18009180000001,-8.532462099999975],[118.18430330000001,-8.538901299999964],[118.184433,-8.547176399999955],[118.18853,-8.554010399999981],[118.18650820000005,-8.55691239999993],[118.18771360000005,-8.558812099999955],[118.18724820000011,-8.563196199999936],[118.19390870000007,-8.57092],[118.20249940000008,-8.570743499999935],[118.20416260000002,-8.567160599999966],[118.20309450000002,-8.562348399999962],[118.2065659000001,-8.559343299999966],[118.20671850000008,-8.554397599999959],[118.2090836000001,-8.552227],[118.21600340000009,-8.552360499999963],[118.21713260000001,-8.5542889],[118.220665,-8.555653599999971],[118.22289280000007,-8.55254169999995],[118.22977450000008,-8.5512676],[118.24916080000003,-8.567361799999958],[118.25086970000007,-8.5772161],[118.2506409,-8.587076199999956],[118.26335140000003,-8.585356699999977],[118.2677460000001,-8.587961199999938],[118.27207180000005,-8.586648899999943],[118.2758179000001,-8.590800299999955],[118.27802280000003,-8.590925199999958],[118.2792816000001,-8.594388],[118.27786250000008,-8.597001099999943],[118.28795620000005,-8.619117699999947],[118.28788,-8.625695199999939],[118.28358460000004,-8.637995699999976],[118.27957920000006,-8.64317509999995],[118.27526090000003,-8.644332899999938],[118.27135470000007,-8.6364937],[118.26850130000003,-8.636632899999938],[118.26796720000004,-8.641048499999954],[118.26461790000008,-8.6420231],[118.26972200000012,-8.644472099999973],[118.26969150000002,-8.6474952],[118.27406310000003,-8.652699499999926],[118.2703629,-8.657454499999972],[118.26470190000009,-8.659397099999978],[118.25749970000004,-8.651224099999979],[118.25708010000005,-8.6529169],[118.253952,-8.654455199999973],[118.25534060000007,-8.6608419],[118.24846650000006,-8.666507699999954],[118.24536890000002,-8.663062099999934],[118.24794010000005,-8.6592913],[118.2451172000001,-8.652371399999936],[118.24039460000006,-8.650112099999944],[118.24045560000002,-8.65293689999993],[118.23617550000006,-8.654607799999951],[118.23754880000001,-8.656362499999943],[118.2349091000001,-8.6583948],[118.23370360000001,-8.656949],[118.22890470000004,-8.656525599999952],[118.22835540000005,-8.6548395],[118.227211,-8.655600599999957],[118.22663120000004,-8.6586332],[118.23016360000008,-8.660543399999938],[118.2285614000001,-8.6654635],[118.22105410000006,-8.666746099999955],[118.22088620000011,-8.662694899999963],[118.22020720000012,-8.665036199999975],[118.2178497000001,-8.665535899999952],[118.21775050000008,-8.663834599999973],[118.21213530000011,-8.67097089999993],[118.20814510000002,-8.669668199999933],[118.20378110000001,-8.6728172],[118.19990540000003,-8.670682899999974],[118.19412230000012,-8.672033299999953],[118.19074250000006,-8.669164599999931],[118.18213650000007,-8.667325],[118.175827,-8.654845299999977],[118.17755130000012,-8.663832699999944],[118.1765213000001,-8.669482199999948],[118.17930600000011,-8.677493099999936],[118.17692570000008,-8.6824417],[118.17764280000006,-8.691590299999973],[118.1839523000001,-8.697356199999945],[118.18862920000004,-8.705855399999962],[118.21652990000007,-8.701319699999942],[118.22259520000011,-8.701772699999935],[118.22628020000002,-8.704223599999978],[118.23299410000004,-8.701529499999936],[118.24013520000005,-8.7029428],[118.27204130000007,-8.692796699999974],[118.27760320000004,-8.692674599999975],[118.28953550000006,-8.695706399999949],[118.313652,-8.693553899999927],[118.3197937000001,-8.696776399999976],[118.31961820000004,-8.701451299999974],[118.33076480000011,-8.708681099999978],[118.33303070000011,-8.712858199999971],[118.33618930000011,-8.710340499999973],[118.33663940000008,-8.701271],[118.34596250000004,-8.698918299999946],[118.34980010000004,-8.689649599999939],[118.35379030000001,-8.684533099999953],[118.35868070000004,-8.683226599999955],[118.36489870000003,-8.685228299999949],[118.37100980000002,-8.688558599999965],[118.37140650000003,-8.691584599999942],[118.37365720000003,-8.6941738],[118.374855,-8.692716599999926],[118.37711330000002,-8.694738399999949],[118.38514710000004,-8.683206599999949],[118.39376830000003,-8.682733499999927],[118.39561460000004,-8.678344699999968],[118.40071870000008,-8.678357099999971],[118.40601350000009,-8.67227269999995],[118.40696720000005,-8.668487599999935],[118.40545650000001,-8.6645336],[118.3910141,-8.66233829999993],[118.38552090000007,-8.653934499999934],[118.38552860000004,-8.651327099999946],[118.3910522000001,-8.645411499999966],[118.38881680000009,-8.6426268],[118.3883667,-8.638423899999964],[118.38059240000007,-8.626029],[118.38005830000009,-8.622529],[118.38183590000006,-8.616447499999936],[118.38705440000001,-8.609032599999978],[118.3902359000001,-8.607252099999926],[118.39259340000001,-8.608452799999952],[118.395462,-8.607556299999942],[118.39577480000003,-8.614339799999925],[118.39842990000011,-8.620873399999937],[118.40314480000006,-8.621182399999952],[118.40905,-8.618767699999978],[118.40875240000003,-8.623723],[118.410965,-8.625250799999947],[118.41745760000003,-8.623274799999933],[118.42117310000003,-8.624078699999927],[118.42235560000006,-8.626142499999958],[118.4209595000001,-8.630512199999941],[118.42167660000007,-8.635417],[118.42527770000004,-8.645425799999941],[118.4245529000001,-8.647119499999974],[118.426384,-8.649662],[118.4239960000001,-8.653388],[118.41790010000011,-8.658223199999952],[118.422287,-8.659682299999929],[118.42327880000005,-8.662246699999969],[118.4262619000001,-8.661986299999967],[118.42749030000004,-8.6639213],[118.42663570000002,-8.665946],[118.43309020000004,-8.673725099999956],[118.43098450000002,-8.6798487],[118.42063140000005,-8.685343799999941],[118.41828920000012,-8.692670799999973],[118.42814640000006,-8.712028499999974],[118.42943570000011,-8.716635699999927],[118.42881010000008,-8.720326399999976],[118.42707060000009,-8.723184599999968],[118.41928860000007,-8.728512799999976],[118.414978,-8.735853199999951],[118.41127780000011,-8.742970499999956],[118.40700530000004,-8.759275399999979],[118.39292910000006,-8.766879099999926],[118.38883210000006,-8.763635699999952],[118.38631440000006,-8.763901699999963],[118.3757935000001,-8.772800399999937],[118.37174220000009,-8.7796707],[118.3728943000001,-8.7814674],[118.37773130000005,-8.783328099999949],[118.38000490000002,-8.787936199999933],[118.37908170000003,-8.796865399999945],[118.38225550000004,-8.804074299999968],[118.37965390000011,-8.810221699999943],[118.37969970000006,-8.821207099999981],[118.38121030000002,-8.824441],[118.3796082,-8.828447299999937],[118.3882675000001,-8.843478199999936],[118.39685820000011,-8.854520799999932],[118.41799930000002,-8.871653599999945],[118.42454530000009,-8.872502299999951],[118.43625640000005,-8.880123099999935],[118.43984220000004,-8.880318699999975],[118.45056150000005,-8.88484],[118.45677950000004,-8.883707099999981],[118.45756530000006,-8.884604399999944],[118.46248620000006,-8.879575699999975],[118.46688080000001,-8.880579],[118.46842960000004,-8.882053399999961],[118.46744540000009,-8.889436699999976],[118.47161870000002,-8.885347399999944],[118.478302,-8.884838099999968],[118.47560880000003,-8.873417899999936],[118.47752380000009,-8.866970099999946],[118.4774933000001,-8.861631399999965],[118.47566990000007,-8.85732269999994],[118.47821810000005,-8.851307899999938],[118.47706610000012,-8.839859],[118.48064420000003,-8.834457399999962],[118.48351290000005,-8.82046319999995],[118.4919129000001,-8.815283799999975],[118.49388120000003,-8.80618],[118.50137330000007,-8.793233899999962],[118.50000000000011,-8.783704799999953],[118.49484250000012,-8.776492099999928],[118.49501040000007,-8.773914299999944],[118.50159450000001,-8.765345599999932],[118.50885010000002,-8.761232399999926],[118.50749210000004,-8.758635499999968],[118.50226590000011,-8.754841799999951],[118.5043869000001,-8.753372199999944],[118.50527950000003,-8.746491399999968],[118.50836950000007,-8.739678399999946],[118.51341250000007,-8.715004],[118.52091980000012,-8.700762699999927],[118.53124240000011,-8.686298399999941],[118.53636930000005,-8.681393599999979],[118.534195,-8.674202],[118.53388980000011,-8.665318499999955],[118.5360260000001,-8.648971599999982],[118.52468870000007,-8.644548399999962],[118.51954650000005,-8.63917829999997],[118.51813510000011,-8.625000899999975],[118.52062230000001,-8.615185699999927],[118.51810450000005,-8.6109924],[118.51054380000005,-8.604020099999957],[118.50656130000004,-8.595267299999932],[118.50978090000001,-8.585971799999982],[118.50541690000011,-8.5734816],[118.50775910000004,-8.565838799999938],[118.50486760000001,-8.564922299999978],[118.504631,-8.558452599999953],[118.50205230000006,-8.554870599999958],[118.50213620000011,-8.55127529999993],[118.49349210000003,-8.539682399999947],[118.49187470000004,-8.535543399999938],[118.492157,-8.53163429999995],[118.4951172000001,-8.527101499999958],[118.50408170000003,-8.519533199999955],[118.50817110000003,-8.518343899999934],[118.51401520000002,-8.510594399999945],[118.51295470000002,-8.500133499999947],[118.51512910000008,-8.493141199999968],[118.514389,-8.485672],[118.50624660000005,-8.470985399999961],[118.50553980000007,-8.465975599999979],[118.50223460000007,-8.461797199999978],[118.50138460000005,-8.456457399999977],[118.50300370000002,-8.451237],[118.50196430000005,-8.444688799999938],[118.50452120000011,-8.440635199999974],[118.50901140000008,-8.438431699999967],[118.51038340000002,-8.435978699999964],[118.51574710000011,-8.434926099999927],[118.52458950000005,-8.428280799999925],[118.53894810000008,-8.4067926],[118.5426331000001,-8.394870799999978],[118.5406647000001,-8.389037099999939],[118.53345490000004,-8.379045499999961],[118.52738190000002,-8.366074599999934],[118.50721740000006,-8.355607],[118.48698420000005,-8.337101],[118.47998050000001,-8.325884799999926],[118.47598270000003,-8.307218499999976],[118.4727554000001,-8.2997551],[118.46044920000008,-8.290210699999932],[118.45532230000003,-8.283621799999935],[118.44835660000001,-8.270593599999927],[118.44602970000005,-8.267829899999981],[118.4439066000001,-8.268683299999964]]],[[[117.7477417,-8.098393399999964],[117.737297,-8.099775299999976],[117.7350464000001,-8.107715599999949],[117.73906710000006,-8.115648299999975],[117.74364470000012,-8.117963799999927],[117.7457657000001,-8.117543199999943],[117.75180050000006,-8.121310199999925],[117.75806430000011,-8.116713499999946],[117.75818630000003,-8.1132402],[117.760231,-8.109757399999978],[117.75237270000002,-8.10061449999995],[117.7477417,-8.098393399999964]]]]},"properties":{"shapeName":"Dompu","shapeISO":"","shapeID":"22746128B38326713965348","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[119.65607420000003,-0.790786399999945],[119.65204920000008,-0.795352899999955],[119.653951,-0.793752099999949],[119.6557805000001,-0.7944558],[119.65787680000005,-0.79121],[119.65607420000003,-0.790786399999945]]],[[[119.80539920000001,-0.802651199999957],[119.80636820000007,-0.801476099999945],[119.80347860000006,-0.790978199999927],[119.7951806000001,-0.784022399999969],[119.7931774000001,-0.776143499999932],[119.78803080000012,-0.769750399999964],[119.7918922,-0.764274599999965],[119.7902851,-0.760945499999934],[119.7868118,-0.758672699999977],[119.78769390000002,-0.755111099999965],[119.78289430000007,-0.751309],[119.77984880000008,-0.745982899999944],[119.77582080000002,-0.726230799999939],[119.77563370000007,-0.718598199999974],[119.77178770000012,-0.715005499999961],[119.76897290000011,-0.7033714],[119.76621860000012,-0.701836299999968],[119.76551180000001,-0.7052396],[119.76402840000003,-0.705650499999933],[119.758356,-0.702144799999928],[119.75817210000002,-0.694403899999941],[119.76213230000008,-0.685218099999929],[119.76086830000008,-0.682042299999978],[119.75633420000008,-0.676147499999956],[119.74818240000002,-0.6699309],[119.74525730000005,-0.665379499999972],[119.74059960000011,-0.663581199999953],[119.74081550000005,-0.6563777],[119.73912550000011,-0.653226299999972],[119.73993810000002,-0.645249099999944],[119.73211040000001,-0.644243],[119.72736850000001,-0.6457073],[119.72221860000002,-0.664495799999941],[119.7166946000001,-0.675241599999936],[119.709949,-0.684368399999926],[119.70619970000007,-0.687066299999969],[119.6901305,-0.692154099999925],[119.68835840000008,-0.697658799999942],[119.68986330000007,-0.700672499999939],[119.67919570000004,-0.704930599999955],[119.67006860000004,-0.702639899999951],[119.66601960000003,-0.7116344],[119.66094950000002,-0.716994],[119.66506680000009,-0.721194699999955],[119.6747008000001,-0.720901699999956],[119.6852831000001,-0.741184199999964],[119.68625440000005,-0.747726599999964],[119.68432130000008,-0.753010199999949],[119.6817678000001,-0.755596499999967],[119.68221860000006,-0.761461399999973],[119.68411580000009,-0.76287],[119.6820196000001,-0.768682399999932],[119.67965270000002,-0.7690815],[119.67561120000005,-0.764484],[119.675246,-0.766599],[119.6725401000001,-0.766980299999943],[119.67083050000008,-0.765887799999973],[119.67165840000007,-0.7649564],[119.66941770000005,-0.764569199999926],[119.6675775000001,-0.767634099999952],[119.6638441,-0.769335499999954],[119.66646290000006,-0.769930299999942],[119.66760210000007,-0.772423899999978],[119.6656693000001,-0.775488799999948],[119.66413460000001,-0.775318099999936],[119.66210330000001,-0.778292699999952],[119.65640790000009,-0.781558899999936],[119.65620120000005,-0.784758299999964],[119.6590354000001,-0.789311399999974],[119.656438,-0.794844],[119.65720290000002,-0.796063499999946],[119.65818820000004,-0.795222399999943],[119.65844120000008,-0.798457699999972],[119.6634424,-0.797198199999968],[119.66297930000007,-0.8016048],[119.6568658000001,-0.804656699999953],[119.65462860000002,-0.802787699999953],[119.64899720000005,-0.805440799999928],[119.64942520000011,-0.7992317],[119.65118770000004,-0.797133899999949],[119.6503815000001,-0.801074799999981],[119.65362920000007,-0.8004491],[119.65247350000004,-0.796355799999958],[119.65055020000011,-0.795164099999965],[119.65444080000009,-0.790688],[119.65729890000011,-0.789773399999945],[119.65503250000006,-0.784198699999934],[119.65280240000004,-0.784064599999965],[119.64541950000012,-0.789428599999951],[119.64117090000002,-0.789955499999962],[119.63041050000004,-0.795195199999966],[119.622945,-0.800812399999927],[119.62112280000008,-0.8204707],[119.617635,-0.829720899999927],[119.61367340000004,-0.834556599999928],[119.60735620000003,-0.834976499999925],[119.59682180000004,-0.843226099999924],[119.59247660000005,-0.844828799999959],[119.57155670000009,-0.849313599999959],[119.56275290000008,-0.848723099999972],[119.56147250000004,-0.851433799999938],[119.56203460000006,-0.854810499999928],[119.564418,-0.853124399999956],[119.56568030000005,-0.854480299999977],[119.56456060000005,-0.855855],[119.5659892000001,-0.858846199999959],[119.56478640000012,-0.860554299999933],[119.56242540000005,-0.860322899999971],[119.56246250000004,-0.863354099999924],[119.568821,-0.863568399999963],[119.56633270000009,-0.866651],[119.56799060000003,-0.868496099999959],[119.56958820000011,-0.865516899999932],[119.57164550000005,-0.866023799999937],[119.5703324000001,-0.874745399999938],[119.57203030000005,-0.875247199999933],[119.5707642000001,-0.878185],[119.57278420000011,-0.879667299999937],[119.5701428000001,-0.881844499999943],[119.5711966,-0.884541799999965],[119.56977310000002,-0.88943],[119.56705040000008,-0.888560699999971],[119.564465,-0.895743299999936],[119.56194670000002,-0.895265599999959],[119.5616748000001,-0.898815499999955],[119.56033620000005,-0.899368699999968],[119.5630612000001,-0.903199599999937],[119.5595105000001,-0.906646499999965],[119.560401,-0.908231499999943],[119.56242110000005,-0.908312699999954],[119.56315370000004,-0.910504799999956],[119.56160460000001,-0.911665],[119.56322460000001,-0.914276199999961],[119.55868490000012,-0.926365299999929],[119.55577390000008,-0.927085499999976],[119.55315580000001,-0.938173699999936],[119.55550070000004,-0.943973599999936],[119.55436620000012,-0.951182],[119.55503230000011,-0.964163299999939],[119.5592094000001,-0.975614599999972],[119.56004430000007,-0.9847365],[119.5583358,-0.990309599999932],[119.55905630000007,-0.998536099999967],[119.55685950000009,-1.009547299999952],[119.56586940000011,-1.018698499999971],[119.57337230000007,-1.017202299999951],[119.57544690000009,-1.018624599999953],[119.57812180000008,-1.029931499999975],[119.5740154,-1.039439199999947],[119.57678220000003,-1.04202],[119.5775096000001,-1.045347499999934],[119.57415370000001,-1.046774299999925],[119.5725106000001,-1.049855499999978],[119.57386250000002,-1.052901099999929],[119.58024980000005,-1.055545099999961],[119.57772010000008,-1.061143799999968],[119.57947170000011,-1.063317799999936],[119.57786220000003,-1.0672269],[119.58109270000011,-1.073317599999939],[119.58004230000006,-1.0754848],[119.58245330000011,-1.085417599999971],[119.58804970000006,-1.086770499999943],[119.58903830000008,-1.088293],[119.58750210000005,-1.097518399999956],[119.59043470000006,-1.101489699999945],[119.5905120000001,-1.1148521],[119.593038,-1.124265799999932],[119.59481710000011,-1.124463599999956],[119.60152430000005,-1.1182974],[119.6054736000001,-1.118062099999975],[119.609129,-1.120443099999932],[119.60969330000012,-1.125774199999967],[119.60860960000002,-1.1285237],[119.610421,-1.129879799999969],[119.61058680000008,-1.135432099999946],[119.60700480000003,-1.141495499999962],[119.60725820000005,-1.154105299999969],[119.60314610000012,-1.1591327],[119.60004910000009,-1.159073299999932],[119.59524820000001,-1.155100199999936],[119.58767720000003,-1.152134399999966],[119.57216190000008,-1.1489903],[119.57049170000005,-1.181054199999949],[119.569629,-1.185881],[119.56641590000004,-1.187952499999938],[119.56690790000005,-1.196239399999968],[119.5647676000001,-1.201255599999968],[119.5608241000001,-1.201607499999966],[119.560826,-1.203627099999949],[119.55412890000002,-1.204804399999944],[119.55174290000002,-1.202807],[119.54210480000006,-1.200516299999947],[119.5421976,-1.222974299999976],[119.53826790000005,-1.226689799999974],[119.523986,-1.251484699999935],[119.51863890000004,-1.256529099999966],[119.5037771000001,-1.276477899999975],[119.48053550000009,-1.290253599999971],[119.47330000000011,-1.29779],[119.47595720000004,-1.3058951],[119.47485060000008,-1.307966099999931],[119.47684840000011,-1.309256699999935],[119.47756150000009,-1.306670899999972],[119.4782451000001,-1.308839499999976],[119.48174970000002,-1.3094235],[119.48193190000006,-1.3067608],[119.48399960000006,-1.308544499999925],[119.484499,-1.306112599999949],[119.48735750000003,-1.3082881],[119.4882043,-1.306352899999979],[119.49252530000001,-1.304902399999946],[119.49540890000003,-1.305794399999968],[119.49611490000007,-1.3045463],[119.494699,-1.3030745],[119.498657,-1.302971099999979],[119.49859580000009,-1.2989671],[119.49998990000006,-1.300565499999948],[119.50132050000002,-1.299262599999963],[119.5051228000001,-1.299539],[119.5065992000001,-1.301968899999963],[119.50968990000001,-1.298937899999942],[119.51195370000005,-1.300192],[119.51061690000006,-1.302706],[119.51363760000004,-1.300902299999962],[119.5170051,-1.302446499999974],[119.51891460000002,-1.300594399999966],[119.51647150000008,-1.2971875],[119.51992880000012,-1.296948199999974],[119.52363350000007,-1.2944137],[119.52529950000007,-1.295528],[119.52659430000006,-1.300746599999968],[119.52253550000012,-1.310684],[119.5194993,-1.315359899999976],[119.51283230000001,-1.314554],[119.51056540000002,-1.312973799999952],[119.50101160000008,-1.320033599999931],[119.49194650000004,-1.321814299999971],[119.4890435000001,-1.320624199999941],[119.48631180000007,-1.322344299999941],[119.48196980000012,-1.322005099999956],[119.47330450000004,-1.317045599999972],[119.46430040000007,-1.318633399999953],[119.4565957000001,-1.327896899999928],[119.45584940000003,-1.335002199999963],[119.4479391000001,-1.340885499999956],[119.44755530000009,-1.357707699999935],[119.4519977000001,-1.366904399999953],[119.47844820000012,-1.398331799999937],[119.48130370000001,-1.398500399999932],[119.49052970000002,-1.390889099999924],[119.49539820000007,-1.392763899999977],[119.50216540000008,-1.392946499999937],[119.50470060000009,-1.394896099999926],[119.50267950000011,-1.398775799999953],[119.5033585000001,-1.401269799999966],[119.50952360000008,-1.4047339],[119.50814390000005,-1.413087],[119.50941310000007,-1.4169179],[119.51212380000004,-1.416020099999969],[119.51440180000009,-1.410149499999932],[119.51865470000007,-1.412008899999933],[119.52161920000003,-1.423746599999959],[119.52010030000008,-1.433527899999945],[119.51719930000002,-1.438927099999944],[119.51068790000011,-1.438175099999967],[119.51049840000007,-1.442956599999945],[119.50753060000011,-1.447416],[119.50832240000011,-1.4507864],[119.5117378000001,-1.451117],[119.5156181000001,-1.4455902],[119.52042260000007,-1.445358799999951],[119.52919290000011,-1.436681199999953],[119.53307930000005,-1.428314799999953],[119.54057550000005,-1.431787799999938],[119.53968860000009,-1.424024899999949],[119.542117,-1.421789699999977],[119.54683950000003,-1.423574099999939],[119.54867930000012,-1.426581699999929],[119.54507890000002,-1.435027499999933],[119.54664980000007,-1.4373682],[119.5506971000001,-1.432174099999941],[119.55688,-1.431525499999964],[119.5619306000001,-1.427624399999956],[119.56892080000011,-1.428036299999974],[119.56927860000008,-1.424931799999968],[119.567404,-1.422430299999974],[119.56869270000004,-1.4213443],[119.57340540000007,-1.4216282],[119.582929,-1.425621299999932],[119.58451880000007,-1.421344599999941],[119.58204400000011,-1.409607],[119.5894,-1.409238099999925],[119.59021320000011,-1.405557899999963],[119.58903410000005,-1.402558599999963],[119.59218610000005,-1.396472599999925],[119.59572320000007,-1.3989812],[119.59999460000006,-1.397693],[119.60161950000008,-1.399788],[119.60155810000003,-1.402689199999941],[119.60445940000011,-1.403851799999927],[119.60746690000008,-1.402601199999935],[119.6099094000001,-1.406087099999979],[119.6156284000001,-1.403929599999969],[119.61426740000002,-1.4004607],[119.61820550000004,-1.401233499999933],[119.62198020000005,-1.397035699999947],[119.62327790000006,-1.3971065],[119.62979840000003,-1.4066249],[119.63240790000009,-1.4048957],[119.631265,-1.400721699999963],[119.63918590000003,-1.4043458],[119.64137280000011,-1.404108299999962],[119.64355920000003,-1.4059585],[119.64370980000001,-1.4090492],[119.64614770000003,-1.412932499999954],[119.65139240000008,-1.416369799999927],[119.6551803000001,-1.422890399999972],[119.6583690000001,-1.424124899999924],[119.6636674,-1.422482899999977],[119.66563620000011,-1.427460199999928],[119.67229650000002,-1.431474099999946],[119.6715488000001,-1.4333095],[119.66587750000008,-1.4342199],[119.67164430000003,-1.435243399999933],[119.66946020000012,-1.439855],[119.67086590000008,-1.442564599999969],[119.67989160000002,-1.443041899999969],[119.68203810000011,-1.440463699999952],[119.68407140000011,-1.442323],[119.68605160000004,-1.450119699999959],[119.69250760000011,-1.449795699999925],[119.69700650000004,-1.452524699999969],[119.7099664000001,-1.434003],[119.7181915000001,-1.432185799999957],[119.72787850000009,-1.4202997],[119.74049880000007,-1.42896],[119.75106240000002,-1.428396099999929],[119.75386880000008,-1.4258353],[119.76364200000012,-1.423535299999969],[119.75447510000004,-1.404028899999958],[119.74736770000004,-1.383876199999975],[119.73815450000006,-1.376857299999926],[119.7314636000001,-1.366679699999963],[119.72862150000003,-1.359145699999942],[119.72800130000007,-1.347535099999959],[119.73103260000005,-1.343253799999957],[119.73436120000008,-1.333370199999933],[119.743457,-1.32236],[119.7438489000001,-1.310544599999957],[119.75048110000012,-1.290701599999977],[119.75072840000007,-1.285354],[119.74818790000006,-1.2754262],[119.74286270000005,-1.263718799999936],[119.74487780000004,-1.255313799999954],[119.75320950000003,-1.239008699999943],[119.76762350000001,-1.233137099999965],[119.76938780000012,-1.226769599999955],[119.76649550000002,-1.219448499999942],[119.77023070000007,-1.216478199999926],[119.77471460000004,-1.209732299999928],[119.76955570000007,-1.197819399999958],[119.77737800000011,-1.193671499999937],[119.77973670000006,-1.189548399999978],[119.786965,-1.185420399999941],[119.78682130000004,-1.172408],[119.79068410000002,-1.1720517],[119.79119070000002,-1.170506],[119.78935510000008,-1.164354],[119.793569,-1.155945799999927],[119.79357790000006,-1.151156499999956],[119.79879280000011,-1.146172299999932],[119.80518020000011,-1.142723099999955],[119.80611920000001,-1.134499099999971],[119.80477910000002,-1.132792599999959],[119.80091590000006,-1.133320399999945],[119.79590420000011,-1.130886399999952],[119.79590960000007,-1.120734],[119.79897740000001,-1.101728299999934],[119.804153,-1.088566399999934],[119.80048850000003,-1.087756599999977],[119.79648310000005,-1.084037699999953],[119.79505860000006,-1.078117099999929],[119.79002580000008,-1.0762524],[119.78468690000011,-1.067538499999955],[119.78335430000004,-1.062072599999965],[119.7840354000001,-1.057273599999974],[119.779531,-1.042394399999978],[119.76729360000002,-1.029950099999951],[119.76117540000007,-1.026864899999964],[119.75930360000007,-1.0163658],[119.753487,-1.008653399999957],[119.75036320000004,-1.007255399999963],[119.74637440000004,-1.008659499999965],[119.73995530000002,-1.008312499999931],[119.73700710000003,-1.009535],[119.73012430000006,-1.017104699999948],[119.7247939,-1.011162899999931],[119.72251280000012,-1.006077],[119.71947040000009,-1.005040299999962],[119.7121452,-1.012023099999965],[119.7124033,-1.018141],[119.7039913000001,-1.019720599999971],[119.68286250000006,-1.014469599999927],[119.67470520000006,-1.008160199999963],[119.67069920000006,-0.997019499999965],[119.66519950000009,-0.994728799999962],[119.66052510000009,-0.9883789],[119.65720490000001,-0.9877851],[119.65460670000004,-0.988953099999947],[119.64965020000011,-0.993611399999963],[119.65063110000006,-0.979927799999928],[119.64794360000008,-0.969545699999969],[119.65081690000011,-0.956620599999951],[119.65299440000001,-0.956256599999961],[119.6542806000001,-0.9511584],[119.66092930000002,-0.951053799999954],[119.66559120000011,-0.948149199999932],[119.67245960000002,-0.940868799999976],[119.689356,-0.938316199999974],[119.69502120000004,-0.939197499999977],[119.705404,-0.935393799999929],[119.72377690000008,-0.908232299999952],[119.73104670000009,-0.900509199999931],[119.73957410000003,-0.914528],[119.745601,-0.919041799999945],[119.75162850000004,-0.909919],[119.75381980000009,-0.908995599999969],[119.760169,-0.907716499999935],[119.7652577,-0.908941599999935],[119.76917710000009,-0.906878199999937],[119.77333830000009,-0.907308799999953],[119.78455310000004,-0.904126399999939],[119.78244760000007,-0.903250299999968],[119.78140090000011,-0.897577199999944],[119.7684269,-0.893233399999929],[119.7686318000001,-0.886970899999938],[119.76653280000005,-0.882318599999962],[119.76710230000003,-0.871456],[119.77303110000003,-0.864271],[119.76985270000011,-0.864555099999961],[119.77028010000004,-0.860501399999976],[119.76498530000003,-0.852113599999939],[119.76662620000002,-0.844473799999946],[119.7605172000001,-0.838062799999932],[119.7596172000001,-0.834990699999935],[119.76531140000009,-0.829748399999971],[119.77818710000008,-0.821538699999962],[119.78605570000002,-0.819680699999935],[119.78923760000009,-0.820265899999924],[119.7966163000001,-0.817305399999952],[119.80161070000008,-0.811402699999974],[119.80539920000001,-0.802651199999957]]],[[[119.79970690000005,-0.061152599999957],[119.80063330000007,-0.059363399999938],[119.79905780000001,-0.058649599999967],[119.798446,-0.060520099999962],[119.79970690000005,-0.061152599999957]]],[[[119.80574160000003,-0.055884099999957],[119.805624,-0.051862899999946],[119.80271040000002,-0.049558699999977],[119.80518080000002,-0.055866],[119.80185560000007,-0.054537799999935],[119.80090870000004,-0.052215499999932],[119.8008986000001,-0.054565],[119.80352060000007,-0.056516699999975],[119.8039609000001,-0.058577],[119.8065908000001,-0.057601],[119.80574160000003,-0.055884099999957]]],[[[119.80568530000005,-0.049007399999937],[119.80723030000001,-0.046007199999963],[119.80471870000008,-0.048311599999977],[119.80568530000005,-0.049007399999937]]],[[[119.797672,-0.037784399999964],[119.79526170000008,-0.038724299999956],[119.79949770000007,-0.040567599999974],[119.80123440000011,-0.045519499999955],[119.80301950000012,-0.046531499999958],[119.80425460000004,-0.044805499999939],[119.80078890000004,-0.042212199999938],[119.80051240000012,-0.0383808],[119.797672,-0.037784399999964]]],[[[119.788077,-0.016657299999963],[119.7860535000001,-0.015482599999928],[119.78287410000007,-0.019531],[119.788077,-0.016657299999963]]],[[[119.62233580000009,0.09298670000004],[119.62171130000002,0.095571500000062],[119.61818160000007,0.098418700000025],[119.6158802000001,0.093330600000058],[119.62035060000005,0.089444],[119.6205695000001,0.087103200000058],[119.62480090000008,0.09032940000003],[119.62233580000009,0.09298670000004]]],[[[119.90825440000003,0.484396600000025],[119.90705380000009,0.490234100000066],[119.90356380000003,0.493642],[119.89610630000004,0.493997700000023],[119.89139690000002,0.491831200000036],[119.899553,0.482177600000057],[119.904341,0.481326200000069],[119.90633940000009,0.482265],[119.90546170000005,0.483494200000052],[119.90710080000008,0.484008600000038],[119.90750090000006,0.482761500000038],[119.90825440000003,0.484396600000025]]],[[[119.85916740000005,0.532362500000033],[119.8575393000001,0.532842200000061],[119.85500950000005,0.531036100000051],[119.85338950000005,0.524097200000028],[119.85053280000011,0.521225100000038],[119.84974850000003,0.507734600000049],[119.8511390000001,0.505619600000045],[119.85902450000003,0.515627900000027],[119.86875650000002,0.51553320000005],[119.87625690000004,0.518529700000045],[119.87835790000008,0.520778600000028],[119.86973210000008,0.52903230000004],[119.85916740000005,0.532362500000033]]],[[[119.79524910000009,0.580963],[119.79044570000008,0.581869100000063],[119.7912612,0.576112400000056],[119.792181,0.574675200000058],[119.79818620000003,0.573750500000074],[119.7985589000001,0.576172100000065],[119.79524910000009,0.580963]]],[[[120.08007580000003,0.747279700000036],[120.07877990000009,0.748833200000036],[120.07870890000004,0.74745710000002],[120.08007580000003,0.747279700000036]]],[[[120.13724,0.745031],[120.13629380000009,0.747287],[120.12404570000001,0.741181200000028],[120.11184140000012,0.742880900000046],[120.1037172,0.74111],[120.1018266000001,0.743936900000051],[120.1034029000001,0.747084700000073],[120.10112870000012,0.750539],[120.09730810000008,0.746384400000068],[120.09635280000009,0.742663100000073],[120.09161760000006,0.739129800000057],[120.08171430000004,0.739013700000044],[120.0765957000001,0.742160900000044],[120.072883,0.740538500000071],[120.06474480000008,0.734364700000071],[120.05923430000007,0.727150100000074],[120.06094580000001,0.717572500000074],[120.05880260000004,0.716110400000048],[120.0570404,0.716834300000073],[120.0545628000001,0.712499500000035],[120.0508,0.711219100000051],[120.04517140000007,0.711674600000038],[120.04300970000008,0.713139600000034],[120.04351860000008,0.714801600000044],[120.03841330000012,0.71738890000006],[120.0407298,0.711894400000062],[120.03803950000008,0.701976300000069],[120.03896240000006,0.694693900000061],[120.03510910000011,0.694631600000037],[120.03353270000002,0.692482400000074],[120.0343583,0.688488600000028],[120.03238050000004,0.686701],[120.02917530000002,0.686471900000072],[120.03007,0.682945400000051],[120.02849820000006,0.67942290000002],[120.01844560000006,0.67373740000005],[120.01634960000001,0.670847700000024],[120.01413380000008,0.663964100000044],[120.01416440000003,0.651802500000031],[120.018659,0.642688900000053],[120.02287320000005,0.625796],[120.028091,0.621799700000054],[120.03319540000007,0.609527800000023],[120.03445590000001,0.587957900000049],[120.0380818000001,0.569986300000039],[120.03705250000007,0.561557700000037],[120.03822260000004,0.552603900000065],[120.04010210000001,0.545881200000053],[120.04504250000002,0.538976400000024],[120.04758420000007,0.529452800000058],[120.0465941000001,0.513317800000038],[120.0273810000001,0.502892],[120.01910680000003,0.49512610000005],[120.0010122000001,0.483768600000076],[119.9909176000001,0.481892800000026],[119.9889611000001,0.483114400000034],[119.98088770000004,0.480526600000076],[119.9788397000001,0.481944300000066],[119.96806350000008,0.480557600000054],[119.9509240000001,0.474204300000054],[119.92678510000007,0.476979500000027],[119.92479440000011,0.474342],[119.92533670000012,0.476916900000049],[119.91797040000006,0.477462100000025],[119.91621880000002,0.479441700000052],[119.91181330000006,0.474763100000075],[119.9103732000001,0.477582900000073],[119.90559630000007,0.475868100000071],[119.90420150000011,0.477965],[119.90615610000009,0.478072600000075],[119.90613280000002,0.479933900000049],[119.90797470000007,0.477927200000067],[119.90887370000007,0.478487100000052],[119.90666550000003,0.481036],[119.90076580000004,0.478996500000051],[119.90134150000006,0.471722600000021],[119.89848410000002,0.467368600000043],[119.89021290000005,0.464869100000044],[119.88211860000001,0.458375700000033],[119.87991520000003,0.449196200000074],[119.8782116000001,0.447660800000051],[119.87632250000001,0.436285500000054],[119.87676980000003,0.43504740000003],[119.87781160000009,0.436022800000046],[119.876827,0.433511300000021],[119.87784780000004,0.431559100000072],[119.88427560000002,0.426767700000028],[119.88793460000011,0.419158200000027],[119.88889730000005,0.394155700000056],[119.880383,0.384020600000042],[119.87450020000006,0.381241300000056],[119.87244270000008,0.37654260000005],[119.86907630000007,0.37269660000004],[119.8655715000001,0.371069100000057],[119.86282850000009,0.36580820000006],[119.8552883000001,0.361105800000075],[119.85056960000009,0.355892700000027],[119.84825120000005,0.351766300000065],[119.8474437000001,0.337551200000064],[119.8452162000001,0.335258700000054],[119.85051650000003,0.327137500000049],[119.85613010000009,0.323457400000052],[119.85688790000006,0.324444100000051],[119.8729657,0.293508100000054],[119.87521270000002,0.292433900000049],[119.88172620000012,0.29400430000004],[119.8839359000001,0.296151100000031],[119.88686840000003,0.295],[119.887364,0.296725300000048],[119.890697,0.29614760000004],[119.88842950000003,0.293197400000054],[119.893189,0.287214400000039],[119.89406090000011,0.27041950000006],[119.89672680000001,0.269115100000022],[119.89767840000002,0.266775900000027],[119.89821110000003,0.245860900000025],[119.90595350000001,0.232447500000035],[119.90442940000003,0.225533100000064],[119.90141670000003,0.220327],[119.89834260000009,0.216941400000053],[119.88748840000005,0.210958300000073],[119.8762048000001,0.217175500000053],[119.8687063000001,0.216271100000029],[119.8676819000001,0.218158500000072],[119.85909560000005,0.214398300000028],[119.85449660000006,0.214386600000068],[119.85333480000008,0.216538200000059],[119.84856160000004,0.218406900000048],[119.83423110000001,0.216024100000027],[119.82876320000003,0.224411],[119.82918630000006,0.228572900000074],[119.825275,0.231057400000054],[119.82496420000007,0.232713200000035],[119.82081210000001,0.234406400000069],[119.813211,0.233992300000068],[119.8084483,0.236378800000068],[119.78940390000002,0.230716800000039],[119.78198540000005,0.226579500000071],[119.77261260000012,0.216779700000075],[119.77046030000008,0.2127],[119.7721312000001,0.201421900000071],[119.775096,0.194481300000064],[119.77814680000006,0.19060410000003],[119.78844060000006,0.183337],[119.79467140000008,0.175917100000049],[119.79375270000003,0.174597900000037],[119.79557020000004,0.171660800000041],[119.80137370000011,0.166988100000026],[119.80316060000007,0.167774],[119.80337730000008,0.165867300000059],[119.81172010000012,0.157929300000035],[119.82441230000006,0.152153400000032],[119.8294843000001,0.147426800000062],[119.83349240000007,0.137278600000059],[119.84148790000006,0.129289800000038],[119.8498178000001,0.126424400000076],[119.85592230000009,0.115047400000037],[119.86340220000011,0.115285100000051],[119.85908070000005,0.110811300000023],[119.8586041000001,0.108510900000056],[119.8592691,0.107009600000026],[119.86229020000007,0.107579600000065],[119.8641785000001,0.109670300000062],[119.86436720000006,0.10795950000005],[119.86808520000011,0.105650600000047],[119.87133150000011,0.097391200000061],[119.87142240000003,0.090575700000045],[119.87709390000009,0.084128200000066],[119.8789365,0.077127],[119.87809930000003,0.070221],[119.8793045000001,0.062064],[119.87489610000011,0.04314370000003],[119.88111650000008,0.028868],[119.88569030000008,-0.001156599999945],[119.8826256000001,-0.021472099999926],[119.87784330000011,-0.033363299999962],[119.8714030000001,-0.042381299999931],[119.8710804000001,-0.047143199999937],[119.86678210000002,-0.057760599999938],[119.85719630000006,-0.067854299999965],[119.84345180000003,-0.090617],[119.84180070000002,-0.098162299999956],[119.836713,-0.104316399999959],[119.82808530000011,-0.110461799999939],[119.82237280000004,-0.116489499999943],[119.81869360000007,-0.116733899999929],[119.81743490000008,-0.112694799999929],[119.79797660000008,-0.106524799999931],[119.79080030000011,-0.108260399999949],[119.7828359,-0.112255299999958],[119.78072540000005,-0.110764499999959],[119.77757640000004,-0.114049199999954],[119.77914010000006,-0.109029599999928],[119.77655790000006,-0.110819099999958],[119.77650370000003,-0.107032799999956],[119.77386810000007,-0.107331199999976],[119.77235830000006,-0.103933599999948],[119.77477120000003,-0.0936948],[119.76885860000004,-0.076787699999954],[119.76167480000004,-0.071763699999963],[119.75228420000008,-0.072514399999932],[119.74613260000001,-0.068972299999928],[119.73874980000005,-0.061282299999959],[119.73772480000002,-0.058191699999952],[119.73932490000004,-0.056989699999974],[119.7393753,-0.052344799999958],[119.74287450000008,-0.048006899999962],[119.74177140000006,-0.039521299999933],[119.74283360000004,-0.037397599999963],[119.739618,-0.029535599999974],[119.73266180000007,-0.021050099999968],[119.7224900000001,-0.009699799999964],[119.7171992000001,-0.005895199999941],[119.70358570000008,-0.000463899999943],[119.69840490000001,0.003331700000047],[119.68960930000003,0.00440720000006],[119.67908750000004,0.00790470000004],[119.67394530000001,0.011881200000062],[119.67132640000011,0.012071],[119.67068470000004,0.016309500000034],[119.66726580000011,0.017348900000059],[119.66565690000004,0.019996900000024],[119.65959950000001,0.017701400000021],[119.66200830000002,0.00692870000006],[119.66510730000005,0.005898400000035],[119.66854710000007,0.002111700000057],[119.67223910000007,0.00318720000007],[119.67326230000003,0.001045300000044],[119.66759820000004,-0.010522599999945],[119.666649,-0.014146599999947],[119.66799720000006,-0.015185899999949],[119.66632090000007,-0.017273599999953],[119.65922210000008,-0.017770799999937],[119.64721070000007,-0.011119299999962],[119.63655140000003,-0.008516499999928],[119.63180880000004,-0.010992899999962],[119.62600780000002,-0.011191799999949],[119.61036390000004,-0.004268899999943],[119.60637820000011,-0.004223699999955],[119.60541990000002,-0.0077123],[119.606829,-0.014662499999929],[119.61528590000012,-0.031852299999969],[119.62423170000011,-0.0444507],[119.62946180000006,-0.047749299999964],[119.63200110000002,-0.055693399999939],[119.63308740000002,-0.055449299999964],[119.63465110000004,-0.0581876],[119.63449530000003,-0.060862799999938],[119.6385977000001,-0.0594256],[119.6426914000001,-0.060925699999927],[119.64407590000008,-0.063203099999953],[119.64337880000005,-0.068761199999926],[119.6484005000001,-0.0754307],[119.65097430000003,-0.074291799999969],[119.65179510000007,-0.077129599999978],[119.64964220000002,-0.080717599999957],[119.65002110000012,-0.085046599999941],[119.6530120000001,-0.086474299999963],[119.65416220000009,-0.089366199999972],[119.65373210000007,-0.094490599999972],[119.65686960000005,-0.097843199999943],[119.65858170000001,-0.095791599999927],[119.65978610000002,-0.096207199999981],[119.66362460000005,-0.102009],[119.66308990000005,-0.105949399999929],[119.665679,-0.108741699999939],[119.66801620000001,-0.108660199999974],[119.66748740000003,-0.1115793],[119.670186,-0.111199499999941],[119.67086640000002,-0.114127499999938],[119.67407990000004,-0.1163595],[119.68427650000001,-0.118726299999935],[119.68769450000002,-0.123371099999929],[119.692629,-0.125901],[119.69612840000002,-0.130853099999968],[119.7034973000001,-0.136898199999962],[119.71542710000006,-0.140918299999953],[119.7208968000001,-0.144424],[119.72574620000012,-0.142516599999965],[119.73767870000006,-0.142967099999964],[119.75009550000004,-0.137606699999935],[119.754029,-0.137958699999956],[119.76530070000001,-0.129354399999954],[119.77173930000004,-0.129082599999947],[119.77911820000008,-0.124391799999955],[119.78791740000008,-0.125845799999979],[119.79380810000009,-0.121760699999925],[119.80156050000005,-0.124143],[119.81027610000001,-0.136659499999951],[119.81047400000011,-0.1420003],[119.80399360000001,-0.151540299999965],[119.79977460000009,-0.152754399999935],[119.79874160000008,-0.155441799999949],[119.80141220000007,-0.164803499999948],[119.81321880000007,-0.176497299999937],[119.81818840000005,-0.191654199999959],[119.818189,-0.195408599999951],[119.81613510000011,-0.201290699999959],[119.81201550000003,-0.203967199999965],[119.80980650000004,-0.208362499999964],[119.80512690000012,-0.2129977],[119.80432080000003,-0.225576399999966],[119.79878330000008,-0.236741799999947],[119.79503950000003,-0.255777],[119.792762,-0.2585246],[119.78648730000009,-0.261860499999955],[119.7857365000001,-0.265357799999947],[119.7815111000001,-0.271124099999952],[119.78089380000006,-0.2751275],[119.77870320000011,-0.277242499999943],[119.77634530000012,-0.285894599999949],[119.77710420000005,-0.292283299999951],[119.77343680000001,-0.304384299999924],[119.77392530000009,-0.311902699999962],[119.77133160000005,-0.317723],[119.76993320000008,-0.327437799999927],[119.76313230000005,-0.338446399999953],[119.76393260000009,-0.348769499999946],[119.7623714,-0.352378],[119.756313,-0.355771799999957],[119.75198510000007,-0.364728599999978],[119.75262320000002,-0.373485099999925],[119.76079520000008,-0.3847061],[119.7645424000001,-0.4004854],[119.76150110000003,-0.4125119],[119.75829280000005,-0.416064499999948],[119.7585087000001,-0.4207545],[119.75610570000003,-0.4260509],[119.75715680000008,-0.432590599999969],[119.75436020000006,-0.4374898],[119.76085660000001,-0.4509123],[119.76385040000002,-0.472642899999926],[119.76377520000005,-0.476033699999959],[119.75903260000007,-0.484743699999967],[119.7597267000001,-0.497227699999939],[119.76721290000012,-0.505994499999929],[119.7685666000001,-0.511171899999965],[119.76716640000006,-0.511723699999948],[119.76897350000002,-0.514687],[119.76737430000003,-0.517525599999942],[119.76901690000011,-0.524076],[119.77117310000006,-0.526293199999941],[119.77111180000009,-0.529031399999951],[119.776598,-0.531333199999949],[119.78390180000008,-0.550767599999972],[119.78961270000002,-0.572523499999932],[119.78993810000009,-0.592870699999935],[119.78878010000005,-0.596045799999956],[119.7922943000001,-0.605805399999952],[119.79601790000004,-0.605639],[119.79358800000011,-0.607292099999938],[119.795316,-0.610005299999955],[119.80140950000009,-0.615071299999954],[119.8064376000001,-0.625318899999968],[119.81162250000011,-0.628725699999961],[119.81081060000008,-0.633207399999947],[119.80612140000005,-0.642354699999942],[119.80703310000001,-0.649511],[119.8106997000001,-0.655617399999926],[119.80919480000011,-0.6563498],[119.81205090000003,-0.660058],[119.81670240000005,-0.662393],[119.81806660000007,-0.665103299999942],[119.81707420000009,-0.671948599999951],[119.82246920000011,-0.688373899999931],[119.83109600000012,-0.692671899999937],[119.83463680000011,-0.692830799999967],[119.8350206,-0.691811799999925],[119.8377815,-0.694653699999947],[119.8436623,-0.696802099999957],[119.85010770000008,-0.691017699999975],[119.85472870000001,-0.671882899999957],[119.85976570000003,-0.669042199999978],[119.8550451000001,-0.662707099999977],[119.85993080000003,-0.658616499999937],[119.86982950000004,-0.6579665],[119.874987,-0.648145],[119.87950970000009,-0.6451628],[119.88844360000007,-0.643892],[119.89197860000002,-0.638817299999971],[119.89857280000001,-0.635793],[119.90444860000002,-0.634763699999951],[119.91068570000004,-0.636514899999952],[119.915242,-0.635064399999976],[119.92357770000001,-0.636747299999968],[119.92826560000003,-0.635382599999957],[119.92497120000007,-0.644826599999931],[119.91988040000001,-0.650458599999979],[119.909567,-0.657123799999965],[119.89610660000005,-0.668905199999926],[119.87474480000003,-0.681833799999936],[119.87174880000009,-0.688933399999939],[119.87187810000012,-0.695095299999934],[119.89761850000002,-0.698279899999932],[119.918985,-0.698726699999952],[119.92592660000003,-0.6966442],[119.9547708,-0.680715099999929],[119.9536058000001,-0.688314399999967],[119.95162870000001,-0.690517399999976],[119.95686770000009,-0.687508399999956],[119.95998170000007,-0.687308399999949],[119.96154270000011,-0.691743499999973],[119.96050770000011,-0.698086499999931],[119.95538470000008,-0.703438499999947],[119.9497407,-0.705601499999943],[119.94135570000003,-0.714958499999966],[119.90643970000008,-0.719160699999975],[119.89341510000008,-0.72902],[119.88900910000007,-0.729022899999961],[119.88179780000007,-0.726473899999974],[119.87794520000011,-0.727651799999933],[119.87663750000002,-0.729645499999947],[119.8828473000001,-0.728585399999929],[119.88278450000007,-0.731677899999966],[119.87836960000004,-0.732916799999941],[119.87814490000005,-0.739225699999963],[119.89529510000011,-0.7512417],[119.87734560000001,-0.765278899999942],[119.87715140000012,-0.767511099999979],[119.87284620000003,-0.766135299999974],[119.87414060000003,-0.769138299999952],[119.88549310000008,-0.771545899999978],[119.88735940000004,-0.774187],[119.88656810000009,-0.778194699999972],[119.90357090000009,-0.777996799999926],[119.91272460000005,-0.773802599999954],[119.91397050000012,-0.782916499999942],[119.9165134000001,-0.789059799999961],[119.92106460000002,-0.7928323],[119.91963080000005,-0.794168699999943],[119.92728540000007,-0.792070299999978],[119.9340724000001,-0.796805199999937],[119.93974880000007,-0.798566499999936],[119.95446880000009,-0.797540399999946],[119.97406080000007,-0.808264399999928],[119.97742610000012,-0.806728299999975],[119.98002710000003,-0.803302299999928],[119.98710210000002,-0.801481299999978],[119.9924701000001,-0.795170299999938],[120.0002161000001,-0.793766599999969],[120.0148994000001,-0.794505699999945],[120.0271014000001,-0.811788899999954],[120.02746290000005,-0.817805699999951],[120.03415210000003,-0.833331],[120.033967,-0.841317699999934],[120.03675480000004,-0.848003299999959],[120.04167810000001,-0.842977799999971],[120.04447770000002,-0.829727199999979],[120.0411888000001,-0.822687599999938],[120.042292,-0.822752399999956],[120.04221340000004,-0.821110099999942],[120.0340543000001,-0.807559599999934],[120.03239470000005,-0.790120099999967],[120.02754490000007,-0.787485599999968],[120.02334040000005,-0.780913299999952],[120.02592760000005,-0.774377499999957],[120.02376390000006,-0.763338799999929],[120.01798,-0.750974399999961],[120.01929380000001,-0.747170499999925],[120.02623620000008,-0.747450199999946],[120.02583680000009,-0.745320199999981],[120.02729050000005,-0.744210099999975],[120.02414460000011,-0.737327899999968],[120.02438410000002,-0.728753799999936],[120.01957740000012,-0.723327299999937],[120.02048170000012,-0.708329499999934],[120.02702710000005,-0.708410099999981],[120.03063710000004,-0.705168199999946],[120.0320991000001,-0.701274499999954],[120.0311491000001,-0.696654899999942],[120.03217060000009,-0.69252],[120.03009270000007,-0.691529599999967],[120.02982680000002,-0.689727499999947],[120.03289160000008,-0.684010699999931],[120.02480880000007,-0.671430399999963],[120.01715960000001,-0.664937299999963],[120.0196221000001,-0.660594799999956],[120.01707970000007,-0.650527499999953],[120.0197425,-0.641767499999958],[120.0153547000001,-0.637852899999928],[120.01080230000002,-0.639427599999976],[120.002458,-0.633161],[120.0055086000001,-0.630163399999958],[120.00467530000003,-0.6246113],[120.00699470000006,-0.621026],[120.0080862000001,-0.615285799999924],[120.00677710000002,-0.610226299999965],[120.00348550000001,-0.607159599999932],[120.00146820000009,-0.591142],[119.99924220000003,-0.589177199999938],[119.99032970000007,-0.587091399999963],[119.9881031000001,-0.584812599999964],[119.987899,-0.577192699999955],[119.97860420000006,-0.571023899999943],[119.97599220000006,-0.564309199999968],[119.96872340000004,-0.553103399999941],[119.9592331,-0.547499599999981],[119.95348520000005,-0.546667199999945],[119.9540118000001,-0.540089599999931],[119.95062180000002,-0.527265],[119.94362380000007,-0.516698599999927],[119.938833,-0.515773199999956],[119.9313294000001,-0.504997899999978],[119.93533820000005,-0.497173299999929],[119.93500970000002,-0.483203099999969],[119.93717210000011,-0.480277199999932],[119.93757720000008,-0.469176599999969],[119.9411368000001,-0.4602678],[119.9370427,-0.447640799999931],[119.92706190000001,-0.448349599999972],[119.92267730000003,-0.4435666],[119.92247480000003,-0.433710599999927],[119.9191125000001,-0.427012799999943],[119.92043290000004,-0.418514499999958],[119.91836180000007,-0.413225799999964],[119.92135250000001,-0.412770599999931],[119.92026850000002,-0.408732199999974],[119.92563140000004,-0.398737],[119.92553050000004,-0.393153199999972],[119.92296870000007,-0.390497599999946],[119.92247370000007,-0.3847061],[119.91833440000005,-0.377334499999961],[119.91395010000008,-0.373297099999945],[119.9131609000001,-0.370062699999949],[119.91660490000004,-0.363004799999942],[119.913823,-0.355727799999954],[119.914295,-0.351816099999951],[119.9206458000001,-0.3481999],[119.92989790000001,-0.334788499999945],[119.92694110000002,-0.328898299999935],[119.93038580000007,-0.323024199999963],[119.92048580000005,-0.316322799999966],[119.92888990000006,-0.303878599999962],[119.91938630000004,-0.297158799999977],[119.922654,-0.291433599999948],[119.92086960000006,-0.291433599999948],[119.92446840000002,-0.287188799999967],[119.90958130000001,-0.283779799999934],[119.90947860000006,-0.280298799999969],[119.90652510000007,-0.275897],[119.90499650000004,-0.270061399999975],[119.91895580000005,-0.262548299999935],[119.92241640000009,-0.258759299999952],[119.92109180000011,-0.25405],[119.91454320000003,-0.246700399999952],[119.9124931,-0.236916199999939],[119.91314060000002,-0.235635699999932],[119.9181857000001,-0.234344199999953],[119.92271670000002,-0.228579699999955],[119.92909940000004,-0.214968599999963],[119.9376496000001,-0.209719499999949],[119.93251140000007,-0.206420099999946],[119.92883230000007,-0.194850599999938],[119.92891550000002,-0.188628499999936],[119.9241465,-0.177423799999929],[119.92384640000012,-0.172305399999971],[119.91367570000011,-0.168708399999957],[119.91406680000011,-0.164327599999979],[119.91085150000004,-0.161267199999941],[119.90775010000004,-0.151854],[119.89977170000009,-0.139103899999952],[119.90114890000007,-0.134137],[119.90866910000011,-0.130151199999943],[119.91245760000004,-0.125010799999927],[119.91513870000006,-0.1159679],[119.91821590000006,-0.117585299999973],[119.92220120000002,-0.108835299999953],[119.93579440000008,-0.100891799999943],[119.94141530000002,-0.085965],[119.9432680000001,-0.077010899999948],[119.94759290000002,-0.0716707],[119.94734540000002,-0.068933099999924],[119.9441835,-0.065834099999961],[119.94493460000001,-0.060973099999956],[119.94270890000007,-0.049516499999925],[119.94332650000001,-0.0441676],[119.93998910000005,-0.038321799999949],[119.9418429000001,-0.036704399999962],[119.94004980000011,-0.025627199999974],[119.94412770000008,-0.020034299999963],[119.94079030000012,-0.011577299999942],[119.94480570000007,0.013920400000075],[119.95123170000011,0.017642800000033],[119.95234390000007,0.023868],[119.95432110000002,0.025358800000049],[119.95741060000012,0.032071900000062],[119.95741040000007,0.043393],[119.95530930000007,0.04576030000004],[119.95376460000011,0.054217300000062],[119.96018020000008,0.071935],[119.957589,0.073778800000071],[119.96135760000004,0.084427300000073],[119.967164,0.08833240000007],[119.97154000000012,0.09605],[119.977387,0.096945600000026],[119.98293450000006,0.096000900000035],[119.98364490000006,0.097472900000071],[119.98609790000012,0.095201100000054],[119.99058080000009,0.107391200000052],[120.00090880000005,0.110766800000022],[120.001499,0.123167700000067],[120.03356,0.12723],[120.03776,0.12885],[120.03417,0.13451],[120.03688000000011,0.1389],[120.04595,0.14712],[120.0400800000001,0.15732],[120.04049440000006,0.158657500000061],[120.043507,0.156982800000037],[120.04496270000004,0.15948510000004],[120.04356150000001,0.16828490000006],[120.04502020000007,0.172838],[120.05198410000003,0.178989300000069],[120.05244590000007,0.181184600000051],[120.06864850000011,0.181344500000023],[120.070141,0.182862],[120.06946430000005,0.190441800000031],[120.080251,0.197658200000035],[120.09087470000009,0.198116900000059],[120.09581720000006,0.206996400000037],[120.0969076,0.220727900000043],[120.1008342,0.225211600000023],[120.09591000000012,0.2275],[120.09271,0.23604],[120.09647,0.24437],[120.09254,0.24953],[120.09017,0.24999],[120.07911,0.27432],[120.076715,0.275345900000048],[120.06524,0.27468],[120.06124000000011,0.28087],[120.05464,0.28601],[120.05885,0.2934],[120.05507000000011,0.29945],[120.06184,0.30572],[120.06159,0.3169],[120.05935000000011,0.31965],[120.05924,0.32645],[120.05661,0.33058],[120.0566500000001,0.3345],[120.0623031,0.34049310000006],[120.07282070000008,0.344049200000029],[120.07502990000012,0.346110800000019],[120.0736356000001,0.361548200000072],[120.07896860000005,0.368466500000068],[120.07911710000008,0.379786300000035],[120.0828,0.38579],[120.0957800000001,0.39314],[120.1,0.39133],[120.11381,0.39515],[120.12029,0.4],[120.122595,0.405471700000021],[120.12215070000002,0.407531600000027],[120.12689000000012,0.40843],[120.1286689000001,0.415487700000028],[120.11741160000008,0.422068800000034],[120.11385690000009,0.426767900000073],[120.11385730000006,0.429414800000075],[120.11871430000008,0.43880820000004],[120.12403,0.4441],[120.1299322000001,0.458117400000049],[120.13668,0.46002],[120.14403,0.46785],[120.15666660000011,0.468397],[120.1593382000001,0.479938200000049],[120.158155,0.49273020000004],[120.16107310000007,0.503034100000036],[120.1610396000001,0.524481800000046],[120.15862560000005,0.531157900000039],[120.17609770000001,0.540710500000046],[120.17671510000002,0.543093800000065],[120.18025620000003,0.546301100000051],[120.17990710000004,0.55253440000007],[120.18312480000009,0.56234180000007],[120.18763880000006,0.569673100000045],[120.19238730000006,0.572774800000047],[120.203106,0.57493340000002],[120.2024947000001,0.578885500000069],[120.19588280000005,0.583851700000025],[120.19412850000003,0.587272100000064],[120.192685,0.599852100000021],[120.19393730000002,0.602720500000032],[120.1920371000001,0.615168500000038],[120.193137,0.615745300000071],[120.19344710000007,0.638449200000025],[120.19618090000006,0.646622100000059],[120.19585670000004,0.658066600000041],[120.19888520000006,0.663803],[120.19990660000008,0.673402500000066],[120.1965656000001,0.700646400000039],[120.18884880000007,0.706497400000046],[120.18385340000009,0.707596600000045],[120.1782938,0.713273400000048],[120.15149140000005,0.724615200000073],[120.14978180000003,0.727325],[120.14295430000004,0.731943900000033],[120.143665,0.733112200000051],[120.13832900000011,0.742003600000032],[120.13929240000004,0.743270900000027],[120.13724,0.745031]]]]},"properties":{"shapeName":"Donggala","shapeISO":"","shapeID":"22746128B21858764079137","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[102.99160230000007,-3.412085199999979],[102.99119370000005,-3.417564699999957],[102.99815390000003,-3.425954599999955],[102.99923060000003,-3.435334399999931],[102.99317390000004,-3.438517799999943],[102.992444,-3.448224799999934],[102.99009680000006,-3.451053299999955],[102.99118450000009,-3.461367899999971],[102.99832550000008,-3.468798399999969],[102.99664980000006,-3.474793599999941],[102.98639720000006,-3.495360499999947],[102.98861020000004,-3.498152399999981],[102.98804360000008,-3.503725399999951],[102.990534,-3.506517899999949],[102.99220040000006,-3.512815],[102.99078960000008,-3.516663499999936],[102.98300540000008,-3.524896499999954],[102.978164,-3.527057799999966],[102.95451750000007,-3.530023299999925],[102.95170470000005,-3.530847899999969],[102.94660470000008,-3.5357588],[102.94351840000007,-3.540105],[102.94385650000004,-3.547775599999966],[102.94122820000007,-3.552096099999972],[102.94162810000006,-3.56669],[102.93544510000004,-3.578257899999926],[102.924289,-3.587951099999941],[102.91355530000004,-3.593317899999931],[102.90364720000008,-3.608386399999972],[102.90386020000005,-3.614878699999963],[102.90278260000008,-3.616264499999943],[102.89198130000005,-3.609415699999943],[102.88971130000004,-3.605082099999947],[102.89003860000008,-3.596639],[102.88580020000006,-3.578807799999936],[102.869075,-3.557412299999953],[102.86288420000005,-3.552872299999933],[102.86008970000006,-3.548108299999967],[102.85144340000005,-3.5453153],[102.847578,-3.537108899999964],[102.83793080000004,-3.537375899999972],[102.82736950000003,-3.5351283],[102.82444880000008,-3.529091299999948],[102.81886010000005,-3.527632399999959],[102.81019040000007,-3.530074599999978],[102.81250740000007,-3.537660699999947],[102.811424,-3.551627599999961],[102.80793220000004,-3.559333199999969],[102.80219140000008,-3.563601],[102.79612350000008,-3.5731934],[102.79449770000008,-3.585728599999925],[102.80035410000005,-3.590118899999936],[102.803921,-3.595449299999927],[102.80851540000003,-3.609480099999928],[102.79800020000005,-3.626264299999946],[102.78109,-3.630799599999932],[102.77674240000005,-3.635956199999953],[102.772165,-3.637752699999965],[102.76635170000009,-3.642512899999929],[102.75219890000005,-3.666750899999954],[102.74202780000007,-3.709503099999949],[102.73762910000005,-3.721766599999967],[102.73878720000005,-3.747596599999952],[102.661562,-3.771793799999955],[102.65593320000005,-3.771819799999946],[102.64881530000008,-3.787679399999945],[102.64179640000003,-3.793302399999959],[102.62368840000005,-3.794995799999981],[102.61861490000007,-3.801097399999946],[102.62440840000005,-3.803288899999927],[102.63247970000003,-3.810894699999949],[102.63973260000006,-3.812965299999973],[102.65164440000007,-3.811744899999951],[102.65911560000006,-3.817005799999947],[102.66928820000004,-3.824462299999936],[102.67494150000005,-3.834684399999958],[102.67902060000006,-3.836566799999957],[102.6854,-3.844838299999935],[102.68645420000007,-3.84729],[102.68588740000007,-3.857180599999936],[102.68995860000007,-3.861634799999933],[102.69994080000004,-3.861320199999966],[102.70351950000008,-3.862454199999945],[102.70687780000009,-3.869246],[102.71216850000008,-3.869670099999951],[102.71623840000007,-3.874694],[102.72756990000005,-3.87894],[102.73110490000005,-3.882203699999934],[102.73190950000009,-3.887379099999976],[102.73426670000003,-3.890192499999955],[102.74460810000005,-3.891404199999954],[102.74866410000004,-3.901782799999978],[102.75492060000005,-3.911264699999947],[102.764082,-3.915607799999975],[102.775691,-3.915782799999931],[102.77740640000007,-3.917514799999935],[102.77479730000005,-3.9285202],[102.78037190000003,-3.934293199999956],[102.781787,-3.941206699999952],[102.78434360000006,-3.944835299999966],[102.78296780000005,-3.9448748],[102.791748,-3.953281799999957],[102.80642940000007,-3.959255399999961],[102.81679240000005,-3.966786799999966],[102.81771980000008,-3.972292599999946],[102.815291,-3.979122299999972],[102.81641910000008,-3.981546499999979],[102.82139030000008,-3.980936699999972],[102.82625230000008,-3.978163499999937],[102.84503040000004,-3.976942],[102.85213950000008,-3.982313899999951],[102.86003230000006,-3.992655299999967],[102.86381660000006,-3.991934699999945],[102.86858160000008,-3.986381799999947],[102.88680280000005,-3.989238599999965],[102.89877410000008,-3.9732374],[102.91174970000009,-3.971076099999948],[102.91653010000005,-3.973701099999971],[102.92097380000007,-3.980170899999962],[102.934181,-3.985507899999959],[102.93511240000004,-3.992733599999951],[102.93994640000005,-4.000946899999974],[102.95189,-4.007648199999949],[102.95583060000007,-4.015041599999961],[102.96111030000009,-4.019724599999961],[102.96278150000006,-4.020659599999931],[102.983369,-4.018015],[102.997449,-4.019094499999937],[103.00910130000005,-4.015607199999977],[103.01942280000009,-4.019425],[103.025872,-4.018793199999948],[103.03206040000003,-4.021475499999951],[103.03994050000006,-4.015007],[103.04748380000007,-4.012765099999967],[103.05853740000003,-4.017523799999935],[103.06596810000008,-4.013648099999955],[103.078917,-4.012642299999925],[103.08121050000005,-4.009471699999949],[103.08579620000006,-4.007617299999936],[103.09331480000009,-4.008361099999945],[103.09970250000003,-4.010977299999979],[103.10984290000005,-4.021681199999932],[103.11412160000003,-4.022035599999981],[103.12137910000007,-4.015725],[103.12462010000007,-4.005696799999953],[103.12530570000007,-3.998579399999926],[103.13051690000003,-3.994213899999977],[103.13254660000007,-3.987029],[103.13642270000008,-3.986296],[103.14200680000005,-3.978685899999959],[103.14170040000005,-3.975171499999931],[103.13878950000009,-3.971941199999947],[103.140257,-3.968134599999928],[103.13980140000007,-3.958652],[103.14322870000007,-3.944109899999944],[103.13885290000007,-3.943513899999971],[103.137985,-3.940173299999969],[103.12821150000008,-3.946579899999961],[103.12966130000007,-3.9410545],[103.12805890000004,-3.938940099999968],[103.12434760000008,-3.940049199999976],[103.12312220000007,-3.935204099999964],[103.12444880000004,-3.9251943],[103.12290090000005,-3.923242099999925],[103.10817670000006,-3.919948899999952],[103.10752930000007,-3.881855499999972],[103.11589540000006,-3.860033499999929],[103.14212190000006,-3.853050899999971],[103.14441970000007,-3.845961399999965],[103.15722020000004,-3.829043799999965],[103.16944950000004,-3.809466799999939],[103.17164260000004,-3.800400799999977],[103.16826430000003,-3.791986],[103.16871860000003,-3.786503099999948],[103.16765550000008,-3.785372699999925],[103.16330080000006,-3.786276],[103.164418,-3.779191799999978],[103.15901330000008,-3.777381699999978],[103.15960090000004,-3.774694],[103.15663420000004,-3.774161599999957],[103.15448510000004,-3.772286399999928],[103.15483880000005,-3.770124299999964],[103.15227950000008,-3.769592799999941],[103.14573690000009,-3.7502134],[103.14502110000006,-3.7346211],[103.14750570000007,-3.729102399999931],[103.15322660000004,-3.704960799999981],[103.14923360000006,-3.692723099999967],[103.14915120000006,-3.687891499999978],[103.15193580000005,-3.681734499999948],[103.15492950000004,-3.681574199999943],[103.154666,-3.679000899999949],[103.15818340000004,-3.679681199999948],[103.15818770000004,-3.677603399999953],[103.15568110000004,-3.674466299999949],[103.15761830000008,-3.674105499999939],[103.156139,-3.671827599999972],[103.15291870000004,-3.673085799999967],[103.14497150000005,-3.6704061],[103.13699730000008,-3.659339799999941],[103.13424930000008,-3.658435199999928],[103.12795710000006,-3.652375799999959],[103.128617,-3.6451073],[103.12662170000004,-3.639920699999948],[103.12673410000008,-3.6201268],[103.12867980000004,-3.614588399999946],[103.12783190000005,-3.608828399999936],[103.12912620000009,-3.606527699999958],[103.12576620000004,-3.603065799999968],[103.12971280000005,-3.599906899999951],[103.12757040000008,-3.596591499999931],[103.12940340000006,-3.595569599999976],[103.12786450000004,-3.595819499999948],[103.13070790000006,-3.593435099999965],[103.13235480000009,-3.588858899999934],[103.13619330000006,-3.589193499999965],[103.13869450000004,-3.586753099999953],[103.139058,-3.584162599999956],[103.14127920000004,-3.583951199999944],[103.14597260000005,-3.576975899999979],[103.14583410000006,-3.569496],[103.149777,-3.561870699999929],[103.15500840000004,-3.560945499999946],[103.16007070000006,-3.550173899999947],[103.16273710000007,-3.550595399999963],[103.16367230000009,-3.5490753],[103.17090210000003,-3.528912199999979],[103.16611310000008,-3.5130523],[103.16919370000005,-3.5061606],[103.18367350000005,-3.495768699999928],[103.19468090000004,-3.489778599999966],[103.19092110000008,-3.482582699999966],[103.18917,-3.4820005],[103.19014920000006,-3.481191699999954],[103.18794120000007,-3.476270599999964],[103.18612920000004,-3.476822199999958],[103.17604110000008,-3.463875599999938],[103.16748040000004,-3.4658942],[103.16050480000007,-3.473029],[103.13601470000003,-3.483098599999948],[103.11182610000009,-3.487589599999978],[103.10642430000007,-3.483837599999958],[103.05760020000008,-3.433695599999965],[103.04757720000003,-3.426514399999974],[103.04199720000008,-3.423455099999956],[103.02639420000008,-3.418587299999956],[103.01089320000006,-3.414773299999979],[103.01010930000007,-3.415636799999959],[102.99160230000007,-3.412085199999979]]]},"properties":{"shapeName":"Empat Lawang","shapeISO":"","shapeID":"22746128B43862623591875","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[121.52851110000006,-8.855809199999953],[121.52507020000007,-8.850121499999943],[121.51914220000003,-8.853569],[121.51903530000004,-8.860513699999956],[121.51730350000003,-8.861949899999956],[121.52075260000004,-8.863474599999961],[121.52266720000011,-8.873034599999926],[121.51794690000008,-8.8791164],[121.51556490000007,-8.8798485],[121.51324750000003,-8.877755799999932],[121.51153820000002,-8.878949599999942],[121.5082321000001,-8.884287799999981],[121.50887050000006,-8.890159799999935],[121.50698850000003,-8.891881],[121.50731660000008,-8.893588099999931],[121.50984620000008,-8.899545499999931],[121.51263470000004,-8.903229199999942],[121.51529720000008,-8.904097499999978],[121.51623540000003,-8.9070387],[121.52200320000009,-8.906387299999949],[121.52442930000007,-8.902903599999945],[121.528038,-8.902185499999973],[121.52982960000008,-8.898142699999937],[121.52895630000012,-8.897704199999964],[121.52983860000006,-8.898123699999928],[121.53472140000008,-8.888592699999947],[121.53478240000004,-8.884189599999956],[121.53025050000008,-8.8799334],[121.528389,-8.872398399999952],[121.5294113000001,-8.868239399999936],[121.53317260000006,-8.864787099999944],[121.53341680000005,-8.862273199999947],[121.530899,-8.857255899999927],[121.52851110000006,-8.855809199999953]]],[[[122.00660710000011,-8.513908399999934],[122.00624850000008,-8.508983599999965],[122.01094560000001,-8.507445399999938],[122.0124207,-8.505368199999964],[122.0089951000001,-8.492837],[122.00965240000005,-8.49110539999998],[122.01418310000008,-8.488774299999932],[122.01322170000003,-8.487328499999933],[122.01026920000004,-8.488037099999929],[122.00933840000005,-8.486775399999942],[122.01383210000006,-8.482141499999955],[122.01582340000004,-8.47544],[122.01912690000006,-8.472440699999936],[122.01187130000005,-8.467231699999957],[122.01028440000005,-8.463950099999977],[122.01599950000002,-8.466976299999942],[122.01876070000003,-8.4668531],[122.01808170000004,-8.4624376],[122.01454160000003,-8.460872699999982],[122.01450350000005,-8.459063499999957],[122.022522,-8.457575799999972],[122.0200195000001,-8.452171299999975],[122.0230484000001,-8.451548599999967],[122.0230332000001,-8.448231699999951],[122.025322,-8.446973799999967],[122.02542110000002,-8.442332299999975],[122.02403260000006,-8.440206499999931],[122.02070620000006,-8.442982699999959],[122.0161438,-8.442401899999936],[122.01451110000005,-8.440494499999943],[122.01071930000012,-8.441030499999954],[122.00766360000011,-8.442330099999936],[122.00601960000006,-8.44783119999994],[122.00119020000011,-8.450415599999928],[121.99530030000005,-8.44882389999998],[121.99401090000003,-8.452219],[121.99171450000006,-8.452887499999974],[121.9833374000001,-8.44665809999998],[121.982254,-8.451963399999954],[121.97956090000002,-8.453715299999942],[121.97763060000011,-8.452761599999974],[121.97560880000003,-8.456000299999971],[121.97142030000009,-8.455768599999942],[121.96633150000002,-8.459162699999979],[121.96228030000009,-8.4691086],[121.95917510000004,-8.472608599999944],[121.95584870000005,-8.473306699999966],[121.9527359000001,-8.468413399999974],[121.958435,-8.462444299999959],[121.95520780000004,-8.460400599999957],[121.95452120000004,-8.45828629999994],[121.95055390000005,-8.4595404],[121.94892880000009,-8.4573336],[121.95349890000011,-8.45460509999998],[121.96073920000003,-8.447175],[121.95718380000005,-8.44386],[121.95756590000008,-8.445926199999974],[121.95558170000004,-8.448181199999965],[121.947403,-8.453904199999954],[121.94515990000002,-8.453812599999935],[121.9445343000001,-8.457102799999973],[121.94191740000008,-8.458978699999932],[121.945816,-8.459099799999933],[121.9457169000001,-8.462879199999975],[121.94237520000001,-8.465208],[121.9414825,-8.470031699999936],[121.93230440000002,-8.478495599999974],[121.9315643000001,-8.4825268],[121.92716220000011,-8.485217099999943],[121.92321780000009,-8.490301099999954],[121.91304020000007,-8.495731299999932],[121.9054794000001,-8.493790599999954],[121.8985824,-8.496878599999945],[121.89517210000008,-8.494708],[121.88457490000008,-8.498770699999966],[121.88143160000004,-8.495952599999953],[121.87491610000006,-8.498742099999959],[121.87130740000009,-8.498805],[121.86194610000007,-8.493984199999943],[121.854042,-8.493868799999973],[121.84552770000005,-8.486887899999942],[121.84364320000009,-8.482027099999925],[121.83738710000011,-8.487422899999956],[121.83303070000011,-8.489196799999945],[121.8310623000001,-8.499959899999965],[121.82762150000008,-8.499486],[121.820343,-8.5038376],[121.81484220000004,-8.501631699999962],[121.8131790000001,-8.505589499999928],[121.81043240000008,-8.507541599999968],[121.80529020000006,-8.508057599999972],[121.80033880000008,-8.510572399999944],[121.78774260000012,-8.508764299999939],[121.7854996000001,-8.504704499999946],[121.78661350000004,-8.5003757],[121.77453610000009,-8.500838299999941],[121.77153780000003,-8.502980199999968],[121.76466370000003,-8.500779099999932],[121.76049810000006,-8.501057599999967],[121.75416570000004,-8.497531899999956],[121.7435226,-8.497910499999932],[121.73494720000008,-8.494516399999952],[121.7256546000001,-8.494479199999944],[121.72095490000004,-8.498017299999958],[121.71464540000011,-8.499023399999942],[121.72056580000003,-8.498469399999976],[121.709816,-8.501424799999938],[121.6993642000001,-8.508028899999942],[121.68844210000009,-8.511347799999953],[121.68017510000004,-8.512011499999971],[121.67492520000008,-8.510140899999953],[121.66888430000006,-8.504899],[121.66516450000006,-8.496698299999935],[121.6655187,-8.49378749999994],[121.66039500000011,-8.49270789999997],[121.6592865,-8.496957799999961],[121.65207670000007,-8.5014391],[121.64189150000004,-8.498848],[121.6387482,-8.495578799999976],[121.63964080000005,-8.493191699999954],[121.63677330000007,-8.487144499999943],[121.63715680000007,-8.4857412],[121.64286020000009,-8.483380099999977],[121.64463810000007,-8.478657699999928],[121.64107510000008,-8.478532799999925],[121.6397171000001,-8.477008799999965],[121.64044950000005,-8.474832499999934],[121.63568120000002,-8.474666599999978],[121.62960050000004,-8.471328699999958],[121.62852480000004,-8.474093399999958],[121.62522890000002,-8.474803],[121.62496950000002,-8.477631599999938],[121.62247470000011,-8.477966299999935],[121.62104040000008,-8.476688399999944],[121.62095640000007,-8.472636199999954],[121.61901850000004,-8.471731199999965],[121.6148224000001,-8.475915],[121.61587520000012,-8.477479],[121.61315920000004,-8.481024699999978],[121.61309050000011,-8.484319699999958],[121.61026,-8.484196599999962],[121.60936740000011,-8.479873699999928],[121.60748290000004,-8.478582399999937],[121.60683440000003,-8.479628599999955],[121.60757450000006,-8.483296399999972],[121.60499570000002,-8.491368299999976],[121.60652160000006,-8.498520799999937],[121.60263820000011,-8.506857899999943],[121.60444640000003,-8.511266699999965],[121.60691070000007,-8.512587499999938],[121.60728460000007,-8.515145299999972],[121.60384370000008,-8.519247],[121.60205080000003,-8.524335899999926],[121.60145570000009,-8.540866899999969],[121.6027451000001,-8.54401489999998],[121.60493470000006,-8.544025399999953],[121.60901640000009,-8.547661799999958],[121.6121826000001,-8.553739599999972],[121.61151890000008,-8.55868529999998],[121.60907740000005,-8.558218],[121.60865020000006,-8.560274099999958],[121.60547640000004,-8.559504499999946],[121.59371190000002,-8.549962],[121.59387970000012,-8.548260699999958],[121.59122470000011,-8.546044399999971],[121.59209440000006,-8.542519599999935],[121.58654020000006,-8.543675399999927],[121.58087920000003,-8.540322299999957],[121.5785141,-8.541508699999952],[121.57688140000005,-8.538645799999927],[121.5781098000001,-8.537169499999948],[121.57730870000012,-8.534956],[121.5725632000001,-8.530703499999959],[121.57032640000011,-8.530894499999931],[121.56410540000002,-8.540180899999939],[121.566161,-8.543246299999964],[121.56549380000001,-8.552136099999927],[121.57359020000001,-8.559835699999951],[121.5775933000001,-8.559979899999973],[121.57997350000005,-8.561783099999957],[121.58192090000011,-8.566615699999943],[121.5809111000001,-8.571592499999952],[121.57896370000003,-8.572205599999961],[121.57806630000005,-8.575317699999971],[121.57451890000004,-8.5761831],[121.56563490000008,-8.574238599999944],[121.55908970000007,-8.576819399999977],[121.55317690000004,-8.575959199999943],[121.5409317000001,-8.586081499999977],[121.54223630000001,-8.589083699999946],[121.540062,-8.593182599999977],[121.54151150000007,-8.5955038],[121.54058070000008,-8.600277],[121.53804020000007,-8.601696],[121.531868,-8.601038899999935],[121.5292664000001,-8.598834],[121.53125000000011,-8.59659],[121.53026580000005,-8.594892499999958],[121.52573390000009,-8.595709799999952],[121.525383,-8.599991799999941],[121.52269750000005,-8.601495799999952],[121.5255585000001,-8.602699299999927],[121.52851110000006,-8.6090784],[121.5262375000001,-8.610210399999971],[121.52584840000009,-8.612545],[121.52032470000006,-8.614254],[121.51918030000002,-8.618086799999958],[121.52102660000003,-8.617282899999964],[121.52301020000004,-8.619423899999958],[121.52339080000002,-8.627302199999974],[121.51905970000007,-8.6353286],[121.50460050000004,-8.636166599999967],[121.50042540000004,-8.638642799999957],[121.49472050000008,-8.639450099999976],[121.48240720000001,-8.653327299999944],[121.4726538000001,-8.658059899999955],[121.47163480000006,-8.662963799999943],[121.46450190000007,-8.6639191],[121.46220920000007,-8.668122399999959],[121.45584040000006,-8.669077699999946],[121.4548496000001,-8.670381499999962],[121.44924260000005,-8.668302899999958],[121.44556380000006,-8.671780799999965],[121.4417572000001,-8.669203799999934],[121.43902590000005,-8.669330599999967],[121.43681890000005,-8.67165749999998],[121.432312,-8.670604699999956],[121.42824280000002,-8.677844799999946],[121.4300469000001,-8.6811306],[121.426409,-8.686259199999938],[121.4090245000001,-8.700261199999943],[121.40859980000005,-8.702181199999927],[121.40514240000005,-8.704804399999944],[121.40461940000012,-8.707571799999926],[121.40253610000002,-8.707676099999958],[121.39952490000007,-8.712222899999972],[121.39859590000003,-8.716929199999981],[121.39678190000006,-8.716017199999953],[121.39481350000005,-8.720256799999959],[121.39636230000008,-8.720559099999946],[121.39710240000011,-8.723594699999978],[121.39568330000009,-8.726181],[121.398529,-8.725575399999968],[121.39768220000008,-8.728306699999962],[121.40081020000002,-8.733073199999978],[121.40286250000008,-8.732106199999976],[121.40446470000006,-8.735491799999977],[121.40968320000002,-8.735424],[121.41162870000005,-8.742143599999963],[121.41658020000011,-8.744253199999946],[121.41777800000011,-8.752454799999953],[121.41557310000007,-8.755135499999938],[121.41729740000005,-8.75661279999997],[121.41552740000009,-8.757855399999926],[121.41898350000008,-8.761287699999968],[121.41613770000004,-8.763755799999956],[121.41774750000002,-8.765214],[121.41561130000002,-8.766306899999961],[121.416481,-8.768755],[121.41480250000006,-8.77191259999995],[121.41764830000011,-8.773897199999965],[121.41556550000007,-8.77614019999993],[121.41729740000005,-8.781286199999954],[121.41573630000005,-8.788048599999968],[121.41382910000004,-8.790943499999969],[121.41525430000002,-8.794303199999945],[121.42764410000007,-8.7936391],[121.42941870000004,-8.795003099999974],[121.44102740000005,-8.795447],[121.46239650000007,-8.799058199999934],[121.48556270000006,-8.798756399999945],[121.50461240000004,-8.804767699999957],[121.54196640000009,-8.809379799999931],[121.54562150000004,-8.809563499999967],[121.54581810000002,-8.807717799999978],[121.54866790000005,-8.805543099999966],[121.55261020000012,-8.804955399999926],[121.55724610000004,-8.801317799999936],[121.56746970000006,-8.797844699999928],[121.57588580000004,-8.798802499999965],[121.58690180000008,-8.802892],[121.59485210000003,-8.808664699999952],[121.59676230000002,-8.814395199999979],[121.60090940000009,-8.816836199999955],[121.60383070000012,-8.82239329999993],[121.610968,-8.826581099999942],[121.63299470000004,-8.833312299999932],[121.64099120000003,-8.839622499999962],[121.64285280000001,-8.843940699999962],[121.64247130000001,-8.849280299999975],[121.630104,-8.874244699999963],[121.624939,-8.892796499999974],[121.62716670000009,-8.8991108],[121.63224790000004,-8.89982029999993],[121.63356020000003,-8.902629899999965],[121.63603970000008,-8.901693299999977],[121.63915250000002,-8.905465099999958],[121.64376070000003,-8.905925699999955],[121.64720920000002,-8.904561],[121.6523132000001,-8.899784099999977],[121.6542664000001,-8.893122699999935],[121.65697480000006,-8.890039499999943],[121.66033940000011,-8.889225],[121.66242220000004,-8.8901873],[121.66310880000003,-8.887595199999964],[121.66188050000005,-8.886215199999981],[121.66378780000002,-8.881487799999945],[121.6644821000001,-8.873402599999963],[121.66173550000008,-8.866149899999925],[121.66229250000004,-8.857307399999968],[121.66124730000001,-8.855546],[121.66573330000006,-8.850691799999936],[121.67282510000007,-8.847653299999934],[121.68273610000006,-8.846257099999946],[121.68642940000007,-8.848932199999979],[121.68924,-8.848168599999951],[121.70684440000002,-8.8542452],[121.72277070000007,-8.863239299999975],[121.72876740000004,-8.868421599999976],[121.73324390000005,-8.876678099999936],[121.7351311000001,-8.877601499999969],[121.7431084000001,-8.877261699999963],[121.74550110000007,-8.878691099999969],[121.75061970000002,-8.87843319999996],[121.7510754000001,-8.879993699999943],[121.75356810000005,-8.8791309],[121.75403470000003,-8.877481699999976],[121.75817440000003,-8.8803842],[121.76066360000004,-8.8805301],[121.76085660000001,-8.879521299999965],[121.7719538,-8.883323099999927],[121.77594460000012,-8.883281199999942],[121.78592340000012,-8.879531699999973],[121.78728440000009,-8.877710299999933],[121.79161270000009,-8.877463499999976],[121.79630110000005,-8.874000899999942],[121.80093580000005,-8.873624499999949],[121.80121070000007,-8.87191759999996],[121.80378750000011,-8.872532299999932],[121.80674990000011,-8.870740399999931],[121.81000520000009,-8.872557599999936],[121.81392670000002,-8.870719],[121.81970220000005,-8.866327299999966],[121.8224411000001,-8.859530499999948],[121.83214570000007,-8.8565435],[121.83570750000001,-8.852796],[121.84084130000008,-8.851010899999949],[121.84960490000003,-8.85122519999993],[121.85460110000008,-8.845559299999934],[121.85813740000003,-8.837214],[121.86102380000011,-8.835253099999932],[121.8677196000001,-8.833661799999959],[121.86858450000011,-8.835395399999982],[121.87033230000009,-8.832893799999965],[121.87423180000008,-8.833263599999952],[121.88405870000008,-8.828100199999938],[121.88830260000009,-8.827992399999971],[121.89464180000004,-8.830877099999952],[121.89830640000002,-8.82951509999998],[121.89917160000005,-8.83115909999998],[121.905777,-8.829656299999954],[121.90925310000011,-8.831985599999939],[121.91942830000005,-8.830194699999936],[121.9246141000001,-8.83162079999994],[121.9357609000001,-8.826370199999928],[121.9436224000001,-8.8254267],[121.9524613000001,-8.8200007],[121.95615110000006,-8.820219899999927],[121.9601798000001,-8.817306299999927],[121.96314980000011,-8.817433899999969],[121.96847390000005,-8.812613699999929],[121.9735184000001,-8.812281599999949],[121.97788030000004,-8.8140909],[121.98154180000006,-8.810506],[121.99718580000001,-8.805875199999946],[121.99025730000005,-8.7954264],[121.99189760000002,-8.792596799999956],[121.99136350000003,-8.776616099999956],[121.99543,-8.774072699999977],[121.99553680000008,-8.767597199999955],[121.99048590000007,-8.755200699999932],[121.9838506000001,-8.751201099999946],[121.97084540000003,-8.750881099999958],[121.96902970000008,-8.754155899999944],[121.9690534,-8.759226799999965],[121.96694950000006,-8.760669699999937],[121.96475080000005,-8.7566125],[121.95952110000007,-8.755774299999928],[121.95493940000006,-8.752054499999929],[121.95177750000005,-8.752120699999978],[121.95069460000002,-8.749047099999927],[121.94757360000006,-8.7479525],[121.94380910000007,-8.741482599999927],[121.944311,-8.7370279],[121.94065820000003,-8.7310451],[121.9401256000001,-8.726971899999967],[121.93617780000011,-8.723337399999934],[121.9298487000001,-8.720580199999972],[121.92615150000006,-8.710616499999958],[121.927037,-8.708965099999944],[121.93444820000002,-8.707183799999939],[121.93677520000006,-8.705284099999972],[121.93789670000001,-8.699493399999938],[121.94247440000004,-8.692841499999929],[121.9471410000001,-8.678710099999932],[121.94904330000008,-8.676210399999945],[121.95320890000005,-8.674892399999976],[121.9587097000001,-8.670547499999941],[121.95853420000003,-8.657514599999956],[121.96201230000008,-8.6443919],[121.96057890000009,-8.636451699999952],[121.9629364000001,-8.633574499999952],[121.96251680000012,-8.63212109999995],[121.96582790000002,-8.629971499999954],[121.9642258,-8.629014],[121.96567530000004,-8.627325],[121.96795650000001,-8.626026199999956],[121.97077180000008,-8.626730899999927],[121.971878,-8.625406299999952],[121.96263890000012,-8.616171899999927],[121.9681931,-8.6110058],[121.9844131000001,-8.609864199999947],[121.98210140000003,-8.604767799999934],[121.98565670000005,-8.595676399999945],[121.98548130000006,-8.5913715],[121.98036960000002,-8.584679599999959],[121.97971350000012,-8.577075],[121.98483280000005,-8.576041199999963],[121.98822780000012,-8.567332199999953],[121.98086550000005,-8.562746],[121.97681430000011,-8.550617199999976],[121.98049170000002,-8.545284299999935],[121.9864960000001,-8.543431299999952],[121.98999860000004,-8.53970789999994],[121.990843,-8.5346],[121.99576120000006,-8.529378399999928],[121.99830190000011,-8.524182699999926],[121.998452,-8.519997699999976],[121.99941700000011,-8.518994499999962],[122.00007630000005,-8.519835499999942],[121.99955020000004,-8.516045399999939],[122.00660710000011,-8.513908399999934]]]]},"properties":{"shapeName":"Ende","shapeISO":"","shapeID":"22746128B29276213407200","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[120.0339437,-3.373661399999946],[120.02765150000005,-3.371099499999957],[120.03267240000002,-3.363512499999956],[120.0251922000001,-3.362549599999966],[120.01990790000002,-3.358521899999971],[120.01337850000004,-3.340983599999959],[120.00927700000011,-3.338436699999932],[120.00872490000006,-3.339199399999927],[120.00204990000009,-3.3339139],[120.00579770000002,-3.318203099999948],[119.99912010000003,-3.3048479],[119.99594600000012,-3.302278499999943],[119.99370320000003,-3.302953399999979],[119.99233970000012,-3.306599199999937],[119.98905410000009,-3.309154599999943],[119.984974,-3.304451699999959],[119.98097970000003,-3.302390199999934],[119.97973420000005,-3.298460399999954],[119.97769420000009,-3.297386699999947],[119.9767948000001,-3.298662599999943],[119.9714666000001,-3.298116799999946],[119.96620540000004,-3.291717399999925],[119.96416890000012,-3.293862399999966],[119.95531210000001,-3.292369899999926],[119.9529338000001,-3.296437499999968],[119.94927630000007,-3.296667099999979],[119.94493150000005,-3.2942798],[119.9427108000001,-3.290133499999968],[119.93693480000002,-3.284811099999956],[119.932048,-3.284252699999968],[119.92856760000006,-3.280866899999978],[119.92613570000003,-3.277539399999966],[119.92545770000004,-3.271874499999967],[119.92199460000006,-3.264414699999975],[119.91394180000009,-3.262263599999926],[119.91118130000007,-3.2630842],[119.91091110000002,-3.261621799999944],[119.909242,-3.262146399999949],[119.90655560000005,-3.259654799999964],[119.9046694000001,-3.261271099999931],[119.9031404000001,-3.259867299999939],[119.8957636,-3.2621205],[119.89454750000004,-3.2598494],[119.89212870000006,-3.260352099999977],[119.89132860000007,-3.2585707],[119.89029140000002,-3.260305399999936],[119.88652700000011,-3.259420199999965],[119.8858206000001,-3.257783899999936],[119.88272680000011,-3.258383],[119.88192210000011,-3.256970199999955],[119.87937370000009,-3.259608],[119.8800265000001,-3.261101199999928],[119.87644090000003,-3.266913199999976],[119.87897140000007,-3.269649299999969],[119.87099550000005,-3.269470499999954],[119.87239040000009,-3.271983099999943],[119.87058490000004,-3.274453699999981],[119.86825090000002,-3.271245499999964],[119.86659510000004,-3.273105799999939],[119.86425240000005,-3.270418599999971],[119.86137010000004,-3.269551599999943],[119.863018,-3.272525899999948],[119.861571,-3.273381399999948],[119.86060070000008,-3.271917199999962],[119.85921120000012,-3.274592899999959],[119.85790210000005,-3.272617699999955],[119.85705310000003,-3.277256699999953],[119.85484760000008,-3.277710099999979],[119.85343440000008,-3.280897299999936],[119.85058630000003,-3.280704299999968],[119.85056050000003,-3.278930499999944],[119.84232630000008,-3.270880899999952],[119.84262290000004,-3.2615459],[119.8406893,-3.259491399999945],[119.84045290000006,-3.255959699999948],[119.83302210000011,-3.253457],[119.83100150000007,-3.248684099999934],[119.81385260000002,-3.245229499999937],[119.79585670000006,-3.247211499999935],[119.7873231000001,-3.243666099999928],[119.78260990000001,-3.240084199999956],[119.77855670000008,-3.241403799999944],[119.77478620000011,-3.246682499999963],[119.77393780000011,-3.255166199999962],[119.7754460000001,-3.260444899999925],[119.77525750000007,-3.267326],[119.77003530000002,-3.274319599999956],[119.76287090000005,-3.276607699999943],[119.7567527000001,-3.276491699999951],[119.7526918000001,-3.278973299999961],[119.7371250000001,-3.282357399999967],[119.72277,-3.291298799999936],[119.71655150000004,-3.298456499999929],[119.71337270000004,-3.313512699999933],[119.7154842000001,-3.314939],[119.71765810000011,-3.320456299999933],[119.72233010000002,-3.324702799999955],[119.72356820000005,-3.331704399999978],[119.7293783,-3.3299061],[119.72334790000002,-3.331846299999938],[119.7171896000001,-3.340450799999928],[119.72126360000004,-3.352476599999932],[119.71694290000005,-3.353219099999933],[119.71268410000005,-3.350459099999966],[119.70365830000003,-3.349191099999928],[119.69685930000003,-3.3497872],[119.69502540000008,-3.350388699999939],[119.69021690000011,-3.360147099999949],[119.69319070000006,-3.365515599999981],[119.69398220000005,-3.379903199999944],[119.69863140000007,-3.384564],[119.69491240000002,-3.394653699999935],[119.69731780000006,-3.403623899999957],[119.6965249000001,-3.4078358],[119.69878090000009,-3.416906499999925],[119.698139,-3.422221099999945],[119.6988884000001,-3.4240375],[119.70202820000009,-3.424042],[119.69875620000005,-3.4269511],[119.69461590000003,-3.42727],[119.6934692000001,-3.429252399999939],[119.69523740000011,-3.442025699999931],[119.693688,-3.448112],[119.685599,-3.445984099999976],[119.68846880000001,-3.452555],[119.68999970000004,-3.461452099999974],[119.70593250000002,-3.473467],[119.70216030000006,-3.476081099999931],[119.7023180000001,-3.478008199999977],[119.70011280000006,-3.480614699999933],[119.70168540000009,-3.483147],[119.69945770000004,-3.485775899999965],[119.701884,-3.503513899999973],[119.69962180000005,-3.511944399999948],[119.70679330000007,-3.5320899],[119.70604150000008,-3.535665899999969],[119.70768520000001,-3.538740799999971],[119.7159799000001,-3.546102699999949],[119.71880360000011,-3.556049799999926],[119.72067550000008,-3.588578799999937],[119.72246660000008,-3.592983699999934],[119.72308240000007,-3.626845899999978],[119.72065010000006,-3.632452099999966],[119.7227464,-3.636126099999956],[119.72256170000003,-3.64626],[119.7476689,-3.667673199999967],[119.75594690000003,-3.668153299999972],[119.76077480000004,-3.671496599999955],[119.76281770000003,-3.6748539],[119.75950670000009,-3.676200699999924],[119.75927170000011,-3.699015299999928],[119.77355550000004,-3.710858299999927],[119.778859,-3.717785899999967],[119.78236250000009,-3.718953899999974],[119.79650880000008,-3.723282799999936],[119.79733280000005,-3.726301699999965],[119.80313870000009,-3.731356399999925],[119.80222320000007,-3.734983899999975],[119.80559540000002,-3.740286799999978],[119.80975340000009,-3.741509],[119.8125305000001,-3.744757899999968],[119.81477360000008,-3.744488499999932],[119.81817630000012,-3.748340799999937],[119.81997680000006,-3.751918599999954],[119.82254790000002,-3.767931199999964],[119.83743290000007,-3.773310699999968],[119.8437881000001,-3.778854599999931],[119.84448510000004,-3.785866699999929],[119.84592880000002,-3.787340899999947],[119.845137,-3.789268799999945],[119.84982270000012,-3.794708899999932],[119.84982760000003,-3.797814599999981],[119.85283330000004,-3.800915699999962],[119.852473,-3.803108499999951],[119.85474610000006,-3.802922199999955],[119.8552668000001,-3.805918499999962],[119.86082460000011,-3.805619699999966],[119.85977170000001,-3.807719],[119.86065670000005,-3.810755299999926],[119.86870570000008,-3.816304],[119.87751010000011,-3.819302799999946],[119.88618470000006,-3.816966799999932],[119.8927155,-3.817054],[119.90107730000011,-3.824099099999955],[119.907753,-3.8165441],[119.91722870000001,-3.8106194],[119.91946410000003,-3.810305599999936],[119.9250793000001,-3.815708899999947],[119.9275742000001,-3.815556499999957],[119.9363403000001,-3.802373899999964],[119.94487,-3.8097596],[119.94659420000005,-3.8056214],[119.950325,-3.802405599999929],[119.96022120000009,-3.801999599999931],[119.95928,-3.799973299999976],[119.96330910000006,-3.7948246],[119.96760370000004,-3.796286399999929],[119.96697440000003,-3.790810399999941],[119.96926,-3.788698699999941],[119.9664001000001,-3.786717899999928],[119.96350890000008,-3.781283199999962],[119.95912930000009,-3.778872299999932],[119.95387530000005,-3.781075899999962],[119.95024790000002,-3.779293499999937],[119.94551320000005,-3.771173499999975],[119.94779530000005,-3.766954],[119.94391630000007,-3.765740199999925],[119.94055420000007,-3.761936],[119.94023090000007,-3.758647],[119.94315510000001,-3.758227],[119.944138,-3.756628499999977],[119.94045910000011,-3.752434899999969],[119.94067480000001,-3.738526],[119.9380996000001,-3.735651899999937],[119.93941390000009,-3.731897599999968],[119.93800350000004,-3.729247599999951],[119.9384308000001,-3.726513099999977],[119.93653110000002,-3.724595499999964],[119.93864950000011,-3.723414799999944],[119.93857160000005,-3.7196745],[119.93148070000007,-3.719523299999935],[119.93490930000007,-3.717297899999949],[119.937166,-3.708911399999977],[119.93268850000004,-3.709194099999934],[119.93131630000005,-3.702878899999973],[119.92493530000002,-3.700661699999955],[119.9217016,-3.694116299999962],[119.92364960000009,-3.690531899999939],[119.92272230000003,-3.685841],[119.92707450000012,-3.679176799999937],[119.93695830000001,-3.676034199999947],[119.9405746000001,-3.671737],[119.94798280000009,-3.6682689],[119.95096590000003,-3.660103799999945],[119.96736150000004,-3.6645641],[119.96987150000007,-3.667157599999939],[119.972496,-3.665645799999936],[119.98271720000002,-3.669932699999947],[119.98018610000008,-3.667283299999951],[119.98076020000008,-3.660820499999943],[119.98878480000008,-3.661891199999957],[119.99520870000003,-3.659986699999934],[119.99266050000006,-3.657803299999955],[119.99162660000002,-3.653928299999961],[119.99346220000007,-3.649126899999942],[119.99538170000005,-3.648704599999974],[119.99599810000007,-3.642771799999935],[119.99533040000006,-3.6401136],[119.992466,-3.640218599999969],[119.99371230000008,-3.632845199999963],[119.99149490000002,-3.629269299999976],[119.99620820000007,-3.626991299999929],[119.9993134,-3.627430699999934],[120.00548550000008,-3.6234004],[120.01529690000007,-3.609211699999946],[120.02716060000012,-3.57827],[120.038826,-3.558752099999936],[120.04082490000008,-3.551607599999954],[120.0413132000001,-3.541451199999926],[120.0447845000001,-3.538204199999939],[120.06255340000007,-3.535675],[120.06797030000007,-3.530301099999974],[120.07673780000005,-3.508804599999962],[120.08885710000004,-3.507592699999975],[120.09491670000011,-3.502745],[120.09734050000009,-3.497897299999977],[120.09614310000006,-3.483085799999969],[120.0989512000001,-3.477660399999934],[120.09831570000006,-3.475348799999949],[120.09149800000012,-3.470796399999927],[120.07814110000004,-3.450647499999945],[120.07556020000004,-3.447988899999928],[120.072448,-3.447275499999932],[120.06603590000009,-3.438003899999956],[120.05974910000009,-3.4143964],[120.0530453,-3.404505899999947],[120.05091950000008,-3.403653099999929],[120.04311170000005,-3.405336],[120.03179870000008,-3.403445499999975],[120.02881060000004,-3.394530299999929],[120.0260326,-3.390735],[120.01806210000007,-3.386907299999962],[120.02125580000006,-3.378519299999937],[120.02771730000006,-3.379419899999959],[120.02813830000002,-3.377487699999961],[120.0339437,-3.373661399999946]]]},"properties":{"shapeName":"Enrekang","shapeISO":"","shapeID":"22746128B66939233584462","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[132.766159,-3.539457],[132.767136,-3.536933],[132.766327,-3.532564],[132.7696380000001,-3.521646],[132.769394,-3.512971],[132.765213,-3.509977],[132.765549,-3.50331],[132.764343,-3.501131],[132.762344,-3.501013],[132.758743,-3.503827],[132.755478,-3.503945],[132.754395,-3.505664],[132.75274600000012,-3.519459],[132.754303,-3.524741],[132.752304,-3.528649],[132.752762,-3.531354],[132.75810300000012,-3.538535],[132.764328,-3.541239],[132.766159,-3.539457]]],[[[132.766785,-3.484287],[132.7685550000001,-3.47952],[132.761337,-3.468368],[132.76184100000012,-3.459177],[132.757324,-3.458309],[132.754974,-3.460499],[132.751617,-3.471417],[132.752396,-3.473153],[132.7501830000001,-3.474059],[132.749527,-3.477209],[132.752716,-3.481702],[132.752319,-3.486243],[132.757187,-3.485953],[132.7594150000001,-3.489634],[132.762451,-3.488829],[132.766785,-3.484287]]],[[[132.651123,-3.404073],[132.645462,-3.40752],[132.6407170000001,-3.406941],[132.637634,-3.40999],[132.636368,-3.408036],[132.633972,-3.40924],[132.629577,-3.420041],[132.631637,-3.420619],[132.6323850000001,-3.427802],[132.638794,-3.435273],[132.64241,-3.437461],[132.6483,-3.438899],[132.6654820000001,-3.447409],[132.667908,-3.4472192],[132.6739500000001,-3.452754],[132.678986,-3.45373],[132.683288,-3.456832],[132.68277000000012,-3.461545],[132.680542,-3.462694],[132.681122,-3.465227],[132.677338,-3.467236],[132.678558,-3.474535],[132.677521,-3.479475],[132.679474,-3.480569],[132.680847,-3.48511],[132.680054,-3.491025],[132.6813810000001,-3.49373],[132.68006900000012,-3.495566],[132.683502,-3.498388],[132.689056,-3.50017],[132.693298,-3.506257],[132.6959230000001,-3.507695],[132.69725,-3.51523],[132.701492,-3.517355],[132.707153,-3.517355],[132.714813,-3.516096],[132.722885,-3.512305],[132.72316,-3.507592],[132.725449,-3.50771],[132.727387,-3.500807],[132.725037,-3.492305],[132.726974,-3.49121],[132.725433,-3.489718],[132.724396,-3.482762],[132.716782,-3.476729],[132.719345,-3.475408],[132.715164,-3.468398],[132.711044,-3.466789],[132.7117310000001,-3.464663],[132.709213,-3.463279],[132.710129,-3.461099],[132.707489,-3.459145],[132.694321,-3.454597],[132.692032,-3.455981],[132.688248,-3.452183],[132.6866000000001,-3.449885],[132.688477,-3.448618],[132.687103,-3.439772],[132.690018,-3.43609],[132.68461600000012,-3.426204],[132.68187000000012,-3.426439],[132.680267,-3.422586],[132.666061,-3.41034],[132.651123,-3.404073]]],[[[132.8127290000001,-3.31642],[132.814148,-3.30912],[132.811066,-3.305502],[132.811173,-3.303086],[132.809113,-3.303259],[132.804886,-3.307167],[132.805908,-3.309636],[132.804321,-3.314177],[132.805756,-3.316185],[132.8127290000001,-3.31642]]],[[[132.449509,-3.102947],[132.440643,-3.102181],[132.442474,-3.10634],[132.4478610000001,-3.110654],[132.44873,-3.113585],[132.451523,-3.114616],[132.4541620000001,-3.121056],[132.458405,-3.122087],[132.4596100000001,-3.126682],[132.465271,-3.127152],[132.473068,-3.133184],[132.476669,-3.130832],[132.478668,-3.13227],[132.4773560000001,-3.134848],[132.478668,-3.136802],[132.484848,-3.137787],[132.491654,-3.136122],[132.490463,-3.138184],[132.493729,-3.139514],[132.5020750000001,-3.138997],[132.519012,-3.141302],[132.530289,-3.148021],[132.5332790000001,-3.15211],[132.544205,-3.154922],[132.546326,-3.153945],[132.544373,-3.150327],[132.54689,-3.144872],[132.546219,-3.141949],[132.534119,-3.137971],[132.53331,-3.135782],[132.525696,-3.131993],[132.518768,-3.125779],[132.5167080000001,-3.125952],[132.5073850000001,-3.121357],[132.50412,-3.117559],[132.500061,-3.119739],[132.496338,-3.117388],[132.498276,-3.115605],[132.489181,-3.115426],[132.477737,-3.112378],[132.474869,-3.110886],[132.471954,-3.106744],[132.468109,-3.105423],[132.459763,-3.10594],[132.455521,-3.103299],[132.449509,-3.102947]]],[[[132.137802,-2.971522],[132.131409,-2.969514],[132.11557,-2.971434],[132.113464,-2.972818],[132.11387600000012,-2.97564],[132.11911,-2.975748],[132.12216200000012,-2.974043],[132.125336,-2.975567],[132.12680000000012,-2.973839],[132.135589,-2.976244],[132.140884,-2.972498],[132.137802,-2.971522]]],[[[132.184281,-2.976229],[132.180847,-2.973308],[132.182724,-2.970829],[132.178436,-2.969283],[132.17178300000012,-2.972052],[132.178116,-2.976764],[132.177841,-2.979116],[132.180771,-2.982218],[132.185165,-2.983538],[132.1922760000001,-2.980191],[132.194611,-2.98019],[132.199005,-2.983111],[132.2070920000001,-2.980921],[132.210404,-2.981319],[132.214752,-2.984765],[132.219544,-2.986248],[132.221604,-2.985388],[132.221527,-2.982856],[132.22409,-2.981471],[132.241775,-2.983514],[132.24626200000012,-2.981206],[132.259338,-2.985502],[132.26503,-2.984461],[132.271591,-2.986179],[132.273758,-2.98531],[132.287048,-2.98823],[132.292587,-2.991151],[132.301483,-2.989703],[132.31974800000012,-2.997272],[132.321457,-2.99606],[132.315109,-2.991927],[132.312347,-2.985432],[132.304703,-2.982276],[132.302536,-2.982566],[132.298843,-2.986139],[132.290893,-2.980052],[132.2830960000001,-2.982369],[132.281494,-2.981157],[132.282577,-2.979203],[132.280457,-2.978398],[132.278244,-2.980479],[132.267822,-2.981638],[132.26767,-2.975252],[132.26471,-2.974854],[132.256683,-2.978491],[132.251831,-2.974412],[132.25148,-2.972233],[132.249252,-2.971889],[132.248169,-2.974015],[132.246017,-2.97425],[132.245712,-2.971953],[132.2326660000001,-2.97427],[132.222412,-2.973538],[132.214661,-2.974751],[132.209885,-2.977176],[132.207931,-2.975973],[132.198029,-2.978344],[132.196304,-2.976563],[132.190781,-2.975414],[132.18650800000012,-2.97698],[132.184281,-2.976229]]],[[[132.002853,-2.944009],[132.000916,-2.943367],[132.0002750000001,-2.949789],[132.006027,-2.948881],[132.01373300000012,-2.950942],[132.0148620000001,-2.948699],[132.010742,-2.943525],[132.00549300000011,-2.945371],[132.002853,-2.944009]]],[[[132.122589,-2.944278],[132.120926,-2.942442],[132.11842400000012,-2.942497],[132.120712,-2.945427],[132.122589,-2.944278]]],[[[132.075806,-2.702403],[132.084686,-2.694461],[132.08566570000005,-2.687494499999957],[132.0827180000001,-2.682586],[132.0738070000001,-2.682586],[132.059967,-2.68754],[132.054047,-2.694461],[132.05601500000012,-2.702365],[132.065918,-2.705333],[132.075806,-2.702403]]],[[[132.495987,-2.673046],[132.4947820000001,-2.670404],[132.49153200000012,-2.670351],[132.487946,-2.671048],[132.48761,-2.673237],[132.493713,-2.674258],[132.495987,-2.673046]]],[[[132.447433,-2.649389],[132.444733,-2.645247],[132.44389300000012,-2.648874],[132.446243,-2.651226],[132.447433,-2.649389]]],[[[132.561035,-2.642934],[132.545471,-2.643696],[132.539566,-2.649802],[132.544205,-2.651873],[132.544998,-2.653827],[132.5479580000001,-2.653302],[132.5497858000001,-2.658036],[132.552246,-2.655138],[132.551102,-2.65341],[132.552063,-2.65123],[132.558334,-2.651275],[132.557205,-2.655535],[132.565308,-2.656267],[132.565231,-2.65178],[132.57533740000008,-2.650633199999959],[132.573776,-2.64855],[132.568466,-2.647863],[132.565658,-2.643956],[132.561035,-2.642934]]],[[[132.447235,-2.645982599999968],[132.450623,-2.642567],[132.445999,-2.641301],[132.445618,-2.643633],[132.447235,-2.645982599999968]]],[[[132.4826660000001,-2.633545],[132.47554,-2.632116],[132.472046,-2.625857],[132.467316,-2.626898],[132.467438,-2.630978],[132.470139,-2.634315],[132.468826,-2.636043],[132.464081,-2.631846],[132.458511,-2.635194],[132.45852700000012,-2.639681],[132.46019,-2.640883],[132.461609,-2.639038],[132.463776,-2.639499],[132.465897,-2.644555],[132.469437,-2.646852],[132.467972,-2.648463],[132.469406,-2.652379],[132.468155,-2.654849],[132.4624480000001,-2.650888],[132.464417,-2.645994],[132.4578100000001,-2.646465],[132.455688,-2.64509],[132.453598,-2.646239],[132.457565,-2.658776],[132.46376,-2.668545],[132.47374,-2.669457],[132.484146,-2.661215],[132.492065,-2.659532],[132.49913,-2.660047],[132.500961,-2.659124],[132.5011750000001,-2.656989],[132.506424,-2.656636],[132.511521,-2.650186],[132.5102230000001,-2.639376],[132.508346,-2.637477],[132.503662,-2.636735],[132.5019380000001,-2.632656],[132.500061,-2.631915],[132.49556,-2.634683],[132.492249,-2.634855],[132.4873500000001,-2.632848],[132.4826660000001,-2.633545]]],[[[132.464569,-2.625578],[132.463989,-2.622584],[132.462051,-2.624311],[132.4625850000001,-2.627134],[132.464569,-2.625578]]],[[[132.43182400000012,-2.619693],[132.429825,-2.618607],[132.428116,-2.620163],[132.430008,-2.621421],[132.43182400000012,-2.619693]]],[[[132.437485,-2.6217],[132.436844,-2.618156],[132.434967,-2.620208],[132.4350280000001,-2.622397],[132.437485,-2.6217]]],[[[132.44899,-2.619329],[132.447037,-2.617312],[132.444824,-2.617493],[132.44744900000012,-2.620993],[132.44899,-2.619329]]],[[[132.412582,-2.609537],[132.4118800000001,-2.60695],[132.413529,-2.605285],[132.41095,-2.603268],[132.406692,-2.60449],[132.405335,-2.609149],[132.410583,-2.610921],[132.412582,-2.609537]]],[[[133.6783140000001,-3.004281],[133.6443630000001,-2.964899],[133.5965430000001,-2.936489],[133.499679,-2.856814],[133.43830900000012,-2.826873],[133.38298,-2.791975],[133.369248,-2.778178],[133.195801,-2.644168],[133.04134420000003,-2.514294399999926],[133.0149080000001,-2.545198],[133.006927,-2.559138],[132.98558,-2.584939],[132.97612,-2.598699],[132.956421,-2.6207],[132.94165,-2.633492],[132.934647,-2.64537],[132.930878,-2.647878],[132.924408,-2.658533],[132.889481,-2.693959],[132.82807900000012,-2.751805],[132.810135,-2.764168],[132.810105,-2.768182],[132.806305,-2.772341],[132.7935030000001,-2.775318],[132.7915190000001,-2.779353],[132.794556,-2.783658],[132.79223600000012,-2.786083],[132.784699,-2.784998],[132.778671,-2.786672],[132.77478,-2.783172],[132.772324,-2.783634],[132.74823,-2.804948],[132.744141,-2.806224],[132.734848,-2.807672],[132.730743,-2.806931],[132.726852,-2.802734],[132.716919,-2.800103],[132.710983,-2.796893],[132.70462,-2.790344],[132.705322,-2.784284],[132.70033300000011,-2.785858],[132.696716,-2.791847],[132.693451,-2.789034],[132.688751,-2.781445],[132.689133,-2.77903],[132.687256,-2.777592],[132.682632,-2.778922],[132.678909,-2.773468],[132.674515,-2.773071],[132.674057,-2.770655],[132.671997,-2.769444],[132.670242,-2.771235],[132.667892,-2.770493],[132.667084,-2.767264],[132.669693,-2.763067],[132.66272,-2.75859],[132.663391,-2.75404],[132.656815,-2.749047],[132.6574250000001,-2.74675],[132.65435800000012,-2.746406],[132.654053,-2.742968],[132.6508030000001,-2.740654],[132.6480560000001,-2.740772],[132.644165,-2.735372],[132.640686,-2.736186],[132.639481,-2.734458],[132.643585,-2.732097],[132.641815,-2.730831],[132.6418000000001,-2.728361],[132.633575,-2.725956],[132.626618,-2.725794],[132.6232450000001,-2.722865],[132.6234740000001,-2.719924],[132.618027,-2.712173],[132.615402,-2.712399],[132.613693,-2.714706],[132.609192,-2.713675],[132.609635,-2.71126],[132.60524,-2.708963],[132.600906,-2.709777],[132.599136,-2.708683],[132.594543,-2.699665],[132.592148,-2.699321],[132.59259,-2.697015],[132.588944,-2.695425],[132.584152,-2.697335],[132.58313,-2.695596],[132.57244900000012,-2.69244],[132.571304,-2.690378],[132.56430000000012,-2.689691],[132.555466,-2.691148],[132.552002,-2.693853],[132.546127,-2.693972],[132.53595,-2.68594],[132.535538,-2.683977],[132.524063,-2.681292],[132.516556,-2.682107],[132.516953,-2.684984],[132.513489,-2.686024],[132.509262,-2.683962],[132.50549300000011,-2.68408],[132.501099,-2.680635],[132.497177,-2.683801],[132.493011,-2.684959],[132.488449,-2.683413],[132.4816740000001,-2.685956],[132.481995,-2.695327],[132.479141,-2.695101],[132.477478,-2.690388],[132.471268,-2.693501],[132.472931,-2.696205],[132.474991,-2.696549],[132.48053,-2.701713],[132.491958,-2.706877],[132.496475,-2.711128],[132.494034,-2.712974],[132.487473,-2.712281],[132.489487,-2.715163],[132.487549,-2.716665],[132.48497,-2.714883],[132.485809,-2.712105],[132.479553,-2.711727],[132.479508,-2.714432],[132.477448,-2.714957],[132.475677,-2.712768],[132.469177,-2.711565],[132.466675,-2.712895],[132.463333,-2.720205],[132.45816,-2.722684],[132.459076,-2.724637],[132.455994,-2.725569],[132.458405,-2.728328],[132.455627,-2.733331],[132.447662,-2.735819],[132.44110100000012,-2.739778],[132.435593,-2.740036],[132.433426,-2.739349],[132.432617,-2.737042],[132.44299300000011,-2.729171],[132.44744900000012,-2.727416],[132.449936,-2.719247],[132.453629,-2.71723],[132.454132,-2.714869],[132.45842,-2.715728],[132.457382,-2.712507],[132.4533080000001,-2.70889],[132.44841,-2.707226],[132.444473,-2.708728],[132.445373,-2.70378],[132.438644,-2.704821],[132.434143,-2.702587],[132.42981,-2.704433],[132.420563,-2.700299799999925],[132.420318,-2.697776],[132.426071,-2.695867],[132.429184,-2.690683],[132.436035,-2.691714],[132.440643,-2.690212],[132.441437,-2.687616],[132.4397120000001,-2.683482],[132.44015500000012,-2.679565],[132.435471,-2.680606],[132.426346,-2.67792],[132.421845,-2.680164],[132.41925,-2.685058],[132.415131,-2.683512],[132.4129180000001,-2.684607],[132.411056,-2.682569],[132.407394,-2.686688],[132.395096,-2.689584],[132.389145,-2.685107],[132.378479,-2.683624],[132.364838,-2.676969],[132.362991,-2.672889],[132.356644,-2.668177],[132.351807,-2.669046],[132.3511810000001,-2.671],[132.349014,-2.670087],[132.349808,-2.668133],[132.343414,-2.667907],[132.343063,-2.665492],[132.330582,-2.666317],[132.329773,-2.662807],[132.322983,-2.661261],[132.309601,-2.663063],[132.3091280000001,-2.660765],[132.304642,-2.663533],[132.2795410000001,-2.660578],[132.27561900000012,-2.661963],[132.2694550000001,-2.660019],[132.255615,-2.662969],[132.248367,-2.660908],[132.242828,-2.661198],[132.240372,-2.657643],[132.230209,-2.65541],[132.229141,-2.65731],[132.223892,-2.656053],[132.222412,-2.658242],[132.2189790000001,-2.656054],[132.213059,-2.656063],[132.201675,-2.660452],[132.201828,-2.657982],[132.200226,-2.65649],[132.1979520000001,-2.655857],[132.191849,-2.657594],[132.185135,-2.6603],[132.184174,-2.662091],[132.182983,-2.664506],[132.187042,-2.667835],[132.185623,-2.669734],[132.178848,-2.669229],[132.179291,-2.66704],[132.1693570000001,-2.661704],[132.164566,-2.664536],[132.1545410000001,-2.665179],[132.15039,-2.667604],[132.143036,-2.666401],[132.138321,-2.671811],[132.112564,-2.691751],[132.1133880000001,-2.697106],[132.116073,-2.697269],[132.1195070000001,-2.700262],[132.121887,-2.699737],[132.129395,-2.691613],[132.135193,-2.688329],[132.14602700000012,-2.691195],[132.148422,-2.690616],[132.1617890000001,-2.696404],[132.195328,-2.701303],[132.20472,-2.700891699999943],[132.207928,-2.702679399999965],[132.19975130000012,-2.7071986],[132.172089,-2.707836],[132.172439,-2.710025],[132.16954,-2.713762],[132.165833,-2.711121],[132.156265,-2.715283],[132.155655,-2.717237],[132.152283,-2.716152],[132.15007,-2.717536],[132.149795,-2.72167],[132.1462100000001,-2.723751],[132.141586,-2.723237],[132.140991,-2.717784],[132.133407,-2.719007],[132.134201,-2.71613],[132.138519,-2.712782],[132.137421,-2.710367],[132.129959,-2.712223],[132.125305,-2.715851],[132.12490900000012,-2.717814],[132.126572,-2.71965],[132.125732,-2.725973],[132.122833,-2.727185],[132.118088,-2.722826],[132.11842400000012,-2.720057],[132.116592,-2.719198],[132.11232,-2.720302],[132.11026,-2.718919],[132.106247,-2.711339],[132.10202,-2.709042],[132.098419,-2.709042],[132.096207,-2.710426],[132.0956420000001,-2.712733],[132.097076,-2.714569],[132.09964,-2.714569],[132.099319,-2.718992],[132.096924,-2.720322],[132.09053,-2.712893],[132.089508,-2.714856],[132.09111,-2.716113],[132.089462,-2.721771],[132.0977630000001,-2.729757],[132.10369900000012,-2.730037],[132.108719,-2.732216],[132.10936,-2.735436],[132.107453,-2.743379],[132.1032100000001,-2.740041],[132.100769,-2.739761],[132.09816,-2.743904],[132.098236,-2.74868],[132.091034,-2.746329],[132.087677,-2.74321],[132.084534,-2.742947],[132.083649,-2.735412],[132.087616,-2.728672],[132.085892,-2.727126],[132.0735320000001,-2.727661],[132.06785600000012,-2.734745],[132.072098,-2.743138],[132.06979400000012,-2.750158],[132.0672300000001,-2.751479],[132.064713,-2.750448],[132.05970800000011,-2.75138],[132.057877,-2.749716],[132.056091,-2.743963],[132.058609,-2.734067],[132.051361,-2.731716],[132.045746,-2.737135],[132.04158,-2.735064],[132.038803,-2.74174],[132.031403,-2.744798],[132.0277410000001,-2.739914],[132.025116,-2.739227],[132.016128,-2.744882],[132.013122,-2.749604],[132.01184100000012,-2.75599],[132.008637,-2.753639],[132.005951,-2.754218],[131.999619,-2.758435],[131.998978,-2.761646],[132.000259,-2.775774],[132.001556,-2.780256],[132.003845,-2.781428],[132.0121610000001,-2.779916],[132.025436,-2.779842],[132.027924,-2.773338],[132.03390500000012,-2.771407],[132.04223600000012,-2.77349],[132.047272,-2.779125],[132.051147,-2.778826],[132.051956,-2.783837],[132.053787,-2.785158],[132.056412,-2.784117],[132.057556,-2.786469],[132.0683140000001,-2.788992],[132.068634,-2.791343],[132.061615,-2.790666],[132.055984,-2.792231],[132.058457,-2.796075],[132.058166,-2.798147],[132.051102,-2.795913],[132.050949,-2.80144],[132.05249,-2.803964],[132.051529,-2.805809],[132.045761,-2.80202],[132.044693,-2.80467],[132.048523,-2.808053],[132.047897,-2.810124],[132.044708,-2.810134],[132.037201,-2.813771],[132.028076,-2.812225],[132.024887,-2.81493],[132.019684,-2.812814],[132.0174260000001,-2.815347],[132.018585,-2.820178],[132.017105,-2.822539],[132.0075230000001,-2.819157],[132.0058140000001,-2.820197],[132.00589,-2.82463],[132.00355500000012,-2.824987],[132.002197,-2.829061],[132.003494,-2.832914],[132.0056310000001,-2.832391],[132.008438,-2.836298],[132.010544,-2.835203],[132.01442,-2.837211],[132.015839,-2.835655],[132.018295,-2.835881],[132.02356,-2.839788],[132.0286860000001,-2.839263],[132.0333710000001,-2.840927],[132.037293,-2.838909],[132.03923,-2.839822],[132.036224,-2.843857],[132.031677,-2.845124],[132.022751,-2.854116],[132.025284,-2.858476],[132.0249480000001,-2.863144],[132.027222,-2.865776],[132.030243,-2.865535],[132.028519,-2.869466],[132.028809,-2.871474],[132.031372,-2.871239],[132.031677,-2.875789],[132.029694,-2.878267],[132.0233,-2.878042],[132.02102700000012,-2.881435],[132.004196,-2.877836],[132.001556,-2.878508],[131.999634,-2.888783],[132.002197,-2.899058],[132.004303,-2.900031],[132.00325,-2.893591],[132.005249,-2.892378],[132.01442,-2.893861],[132.02034,-2.906796],[132.031555,-2.901376],[132.03276,-2.903158],[132.033661,-2.916961],[132.037216,-2.920461],[132.038712,-2.924487],[132.0443110000001,-2.927353],[132.048752,-2.925915],[132.048737,-2.923554],[132.045135,-2.92028],[132.044846,-2.918208],[132.052017,-2.914119],[132.053375,-2.911812],[132.054382,-2.906692],[132.0535430000001,-2.898469],[132.056366,-2.890808],[132.05928,-2.890464],[132.064591,-2.910418],[132.068436,-2.914207],[132.080322,-2.919462],[132.07524100000012,-2.937264],[132.079407,-2.952044],[132.083862,-2.955544],[132.086578,-2.963079],[132.101105,-2.959604],[132.103989,-2.955235],[132.110992,-2.953669],[132.112594,-2.955568],[132.11441,-2.953668],[132.118805,-2.954003],[132.115707,-2.946649],[132.113983,-2.9455],[132.116028,-2.94285],[132.1131140000001,-2.942732],[132.112945,-2.940607],[132.106933,-2.936356],[132.103348,-2.935506],[132.105148,-2.93205],[132.107605,-2.932394],[132.11572200000012,-2.938363],[132.119873,-2.936399],[132.128616,-2.940876],[132.132507,-2.944955],[132.13736,-2.945579],[132.139923,-2.943558],[132.145798,-2.945967],[132.15097,-2.943949],[132.153885,-2.944293],[132.154327,-2.941877],[132.146958,-2.935899],[132.15065,-2.932209],[132.1510320000001,-2.934743],[132.154938,-2.935428],[132.1554870000001,-2.930715],[132.1629180000001,-2.935707],[132.16719100000012,-2.933744],[132.165771,-2.931575],[132.169906,-2.931382],[132.178696,-2.934077],[132.186569,-2.931761],[132.184952,-2.926704],[132.1823270000001,-2.925845],[132.184357,-2.922272],[132.1894380000001,-2.921918],[132.190124,-2.926125],[132.194519,-2.926233],[132.193725,-2.928359],[132.196533,-2.928928],[132.200363,-2.933242],[132.2023620000001,-2.933523],[132.205765,-2.928457],[132.208206,-2.927877],[132.206131,-2.921211],[132.20726,-2.911422],[132.2107850000001,-2.914815],[132.211426,-2.917981],[132.217071,-2.920872],[132.220169,-2.926483],[132.23204,-2.926292],[132.236694,-2.923297],[132.237274,-2.925423],[132.243851,-2.926826],[132.2639620000001,-2.927971],[132.26622210000005,-2.929195899999968],[132.26775810000004,-2.932601599999941],[132.27091340000004,-2.933967299999949],[132.27283480000006,-2.933603],[132.27276240000003,-2.926181199999974],[132.27285470000004,-2.933622799999966],[132.27777170000002,-2.934206199999949],[132.27897230000008,-2.931333199999926],[132.28020340000012,-2.932106699999963],[132.28004,-2.922057299999949],[132.28020330000004,-2.932066799999973],[132.2858298000001,-2.931293],[132.28679420000003,-2.929541899999947],[132.293201,-2.934707],[132.3009092000001,-2.936377399999969],[132.30142130000002,-2.935031799999933],[132.3026837000001,-2.935482199999967],[132.3009750000001,-2.931058399999927],[132.30571970000005,-2.935132399999929],[132.30919870000002,-2.9358042],[132.31123860000002,-2.9347229],[132.31199530000004,-2.925944199999947],[132.31288540000003,-2.9234855],[132.3144301000001,-2.923230299999943],[132.315063,-2.927501],[132.313019,-2.934007],[132.314911,-2.938205],[132.32045,-2.940384],[132.323379,-2.944924],[132.330902,-2.947556],[132.333298,-2.947149],[132.335678,-2.94306],[132.34275800000012,-2.942467],[132.3402400000001,-2.949816],[132.343918,-2.952367],[132.345978,-2.952538],[132.346863,-2.947192],[132.351242,-2.943094],[132.347061,-2.939539],[132.348892,-2.938101],[132.3520810000001,-2.939304],[132.3550110000001,-2.946431],[132.354981,-2.951036],[132.3613130000001,-2.952347],[132.360291,-2.954364],[132.346848,-2.956681],[132.346985,-2.961222],[132.351852,-2.968865],[132.362335,-2.968801],[132.366409,-2.971894],[132.368927,-2.977936],[132.370987,-2.978506],[132.3722990000001,-2.976949],[132.38040200000012,-2.980504],[132.383957,-2.984302],[132.392502,-2.984998],[132.393021,-2.989051],[132.400558,-2.990262],[132.404511,-2.992902],[132.406891,-2.99169],[132.414261,-2.995244],[132.420242,-2.995352],[132.422455,-2.996901],[132.418961,-3.002489],[132.4212490000001,-3.005127],[132.427383,-3.005075],[132.4338530000001,-3.010023],[132.436081,-3.009335],[132.440842,-3.015485],[132.45217900000011,-3.023354],[132.456467,-3.024045],[132.47049,-3.034568],[132.473022,-3.039281],[132.48085,-3.038936],[132.482239,-3.040429],[132.48114,-3.042554],[132.482468,-3.044517],[132.489227,-3.050894],[132.494141,-3.051698],[132.496201,-3.053426],[132.501648,-3.063022],[132.509201,-3.065039],[132.509781,-3.070149],[132.517166,-3.076535],[132.51712,-3.080895],[132.52417,-3.084639],[132.526169,-3.084006],[132.534241,-3.09211],[132.534698,-3.094751],[132.542603,-3.097916],[132.5443570000001,-3.100967],[132.561844,-3.112975],[132.569,-3.124127],[132.572571,-3.132919],[132.576736,-3.134936],[132.577149,-3.137351],[132.56970200000012,-3.139469],[132.5654760000001,-3.136195],[132.555573,-3.137001],[132.55421400000012,-3.145793],[132.5525510000001,-3.147458],[132.557541,-3.150099],[132.557083,-3.155155],[132.558914,-3.157001],[132.563782,-3.158203],[132.566757,-3.161197],[132.577515,-3.166252],[132.580215,-3.165221],[132.57608,-3.158726],[132.577622,-3.155176],[132.584457,-3.167062],[132.596344,-3.171144],[132.602463,-3.1689],[132.6040650000001,-3.166719],[132.606125,-3.166955],[132.6068110000001,-3.169189],[132.610931,-3.169885],[132.609909,-3.171947],[132.598694,-3.17373],[132.6004180000001,-3.180171],[132.607773,-3.180389],[132.614166,-3.185],[132.618393,-3.185804],[132.621658,-3.185632],[132.625885,-3.181841],[132.6361240000001,-3.183161],[132.63562,-3.187874],[132.638291,-3.187011],[132.640655,-3.188335],[132.648331,-3.200753],[132.649491,-3.212531],[132.643432,-3.216728],[132.641556,-3.223848],[132.6397250000001,-3.224997],[132.630798,-3.224193],[132.6268460000001,-3.226319],[132.617004,-3.223787],[132.5977170000001,-3.225047],[132.598816,-3.234879],[132.608673,-3.243897],[132.621033,-3.25172],[132.62207,-3.25494],[132.625397,-3.257237],[132.626663,-3.261778],[132.642059,-3.271147],[132.643661,-3.274078],[132.638855,-3.27672],[132.648941,-3.289708],[132.6544500000001,-3.306325],[132.656631,-3.30874],[132.658798,-3.307762],[132.661209,-3.309716],[132.661728,-3.315686],[132.666534,-3.318508],[132.666367,-3.321041],[132.668427,-3.322415],[132.67218,-3.321647],[132.679138,-3.3288],[132.701401,-3.335582],[132.709717,-3.342537],[132.714233,-3.344608],[132.720123,-3.34553],[132.724991,-3.342083],[132.730484,-3.342951],[132.73323,-3.34163],[132.7353210000001,-3.327202],[132.736984,-3.324678],[132.736527,-3.319441],[132.73788500000012,-3.317206],[132.735657,-3.313181],[132.736099,-3.302896],[132.7314,-3.28789],[132.732193,-3.285827],[132.741058,-3.286405],[132.7473450000001,-3.282379],[132.754395,-3.28388],[132.761826,-3.274508],[132.765427,-3.274109],[132.76742500000012,-3.270373],[132.773026,-3.268654],[132.776062,-3.263479],[132.778015,-3.274171],[132.779785,-3.275953],[132.785278,-3.274749],[132.789352,-3.27986],[132.789352,-3.282221],[132.7980960000001,-3.279696],[132.800049,-3.277796],[132.7986760000001,-3.276186],[132.791,-3.275092],[132.789566,-3.273546],[132.790131,-3.26848],[132.801575,-3.270387],[132.813202,-3.268378],[132.81514,-3.269581],[132.814285,-3.273724],[132.810516,-3.272223],[132.808624,-3.276592],[132.808578,-3.279125],[132.8126370000001,-3.285212],[132.810471,-3.28504],[132.809952,-3.286994],[132.805542,-3.285439],[132.803665,-3.28648],[132.807724,-3.289925],[132.813339,-3.298835],[132.8180850000001,-3.300616],[132.82312,-3.300444],[132.82663,-3.306133],[132.833374,-3.308548],[132.840302,-3.308954],[132.845901,-3.304412],[132.845001,-3.311079],[132.8459170000001,-3.312978],[132.843628,-3.313901],[132.838867,-3.312228],[132.8347020000001,-3.314129],[132.833954,-3.316309],[132.835678,-3.322975],[132.833404,-3.327109],[132.834259,-3.331994],[132.831116,-3.337919],[132.828827,-3.338544],[132.827789,-3.331018],[132.825729,-3.33119],[132.8208770000001,-3.339811],[132.820038,-3.350096],[132.8155210000001,-3.35205],[132.814316,-3.349807],[132.810089,-3.354403],[132.803802,-3.365267],[132.806732,-3.378428],[132.804581,-3.381636],[132.808578,-3.387049],[132.814179,-3.390956],[132.817749,-3.407735],[132.822098,-3.414284],[132.8199310000001,-3.417848],[132.823212,-3.433479],[132.821152,-3.437386],[132.824646,-3.439973],[132.81974800000012,-3.451353],[132.820084,-3.45394],[132.825302,-3.460208],[132.833084,-3.466241],[132.839096,-3.468429],[132.8456880000001,-3.478252],[132.852097,-3.479292],[132.858505,-3.483144],[132.8725280000001,-3.48137],[132.875504,-3.478375],[132.874985,-3.476195],[132.870529,-3.478258],[132.862854,-3.477056],[132.863937,-3.475102],[132.870911,-3.474296],[132.87561,-3.470795],[132.881729,-3.469528],[132.891739,-3.470857],[132.900101,-3.468956],[132.901978,-3.470114],[132.894486,-3.475054],[132.893982,-3.477577],[132.891983,-3.477288],[132.89048800000012,-3.478781],[132.89152500000012,-3.481313],[132.888275,-3.491545],[132.895828,-3.495397],[132.89607300000011,-3.501313],[132.893387,-3.505791],[132.893387,-3.510223],[132.894989,-3.513669],[132.899979,-3.51735],[132.901184,-3.526251],[132.906677,-3.531714],[132.905197,-3.537576],[132.909546,-3.53677],[132.91745,-3.541889],[132.919968,-3.540912],[132.927185,-3.54235],[132.925003,-3.544711],[132.912765,-3.546775],[132.91259800000012,-3.553495],[132.915802,-3.557692],[132.920151,-3.558208],[132.922562,-3.557348],[132.925247,-3.553385],[132.928161,-3.553041],[132.931656,-3.555339],[132.94299300000011,-3.556839],[132.945328,-3.558503],[132.945572,-3.561434],[132.937622,-3.564827],[132.932694,-3.568735],[132.924927,-3.581943],[132.921905,-3.583788],[132.9126890000001,-3.583319],[132.909882,-3.584821],[132.904693,-3.599123],[132.899552,-3.606477],[132.901047,-3.610964],[132.898422,-3.621014],[132.905594,-3.640905],[132.9048,-3.644234],[132.902176,-3.644867],[132.896057,-3.650675],[132.890106,-3.649979],[132.889252,-3.651816],[132.886612,-3.651183],[132.885925,-3.649175],[132.880997,-3.647909],[132.878143,-3.651473],[132.874359,-3.649113],[132.86824,-3.651294],[132.858856,-3.648934],[132.853943,-3.65049],[132.8458710000001,-3.646176],[132.842835,-3.647615],[132.838608,-3.646982],[132.837799,-3.645082],[132.832031,-3.643569],[132.823044,-3.645826],[132.821487,-3.64399],[132.811081,-3.642146],[132.805527,-3.641974],[132.7987210000001,-3.643983],[132.7981410000001,-3.64203],[132.790878,-3.644039],[132.768906,-3.642938],[132.767136,-3.638632],[132.753845,-3.632709],[132.738632,-3.637016],[132.738007,-3.634945],[132.73513800000012,-3.638274],[132.735947,-3.64011],[132.733887,-3.644081],[132.7309570000001,-3.64249],[132.733856,-3.668794],[132.738052,-3.688043],[132.736282,-3.692584],[132.742477,-3.699422],[132.747467,-3.709887],[132.747132,-3.712411],[132.753937,-3.719312],[132.755951,-3.725861],[132.75853,-3.729253],[132.756927,-3.731035],[132.760834,-3.738795],[132.759567,-3.743273],[132.762039,-3.749306],[132.764496,-3.750455],[132.764618,-3.752527],[132.7630160000001,-3.753847],[132.768234,-3.759256],[132.768234,-3.764195],[132.770065,-3.766438],[132.772537,-3.768564],[132.775788,-3.765235],[132.779511,-3.77115],[132.778946,-3.778794],[132.7823330000001,-3.782818],[132.783081,-3.790688],[132.78772,-3.796441],[132.790375,-3.820637],[132.788208,-3.825975],[132.783524,-3.827703],[132.783875,-3.833854],[132.786331,-3.83351],[132.78845200000012,-3.829484],[132.791367,-3.829945],[132.79303,-3.834604],[132.7990420000001,-3.837932],[132.80397,-3.852015],[132.801453,-3.851844],[132.800766,-3.853734],[132.805695,-3.859713],[132.807312,-3.864661],[132.811432,-3.86874],[132.812073,-3.87661],[132.818603,-3.886731],[132.824906,-3.889661],[132.825851,-3.891632],[132.852325,-3.867434],[132.881836,-3.831232],[132.946716,-3.769943],[132.992676,-3.720035],[133.0345,-3.682554],[133.123413,-3.588315],[133.14537,-3.55471],[133.18830900000012,-3.497268],[133.220444,-3.451324],[133.233765,-3.439238],[133.2539670000001,-3.411435],[133.26857,-3.396245],[133.294052,-3.36394],[133.33721900000012,-3.320027],[133.3548280000001,-3.298846],[133.364319,-3.291283],[133.373642,-3.280388],[133.395553,-3.264471],[133.415909,-3.241248],[133.4320530000001,-3.219838],[133.449829,-3.202197],[133.46138,-3.19612],[133.514496,-3.141321],[133.549515,-3.113314],[133.56369,-3.098743],[133.576111,-3.090389],[133.6023636000001,-3.067415399999959],[133.609024,-3.063185],[133.620468,-3.050656],[133.6409000000001,-3.03555],[133.6783140000001,-3.004281]]]]},"properties":{"shapeName":"Fakfak","shapeISO":"","shapeID":"22746128B45461663098617","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[122.84629820000009,-8.604630499999928],[122.84477230000005,-8.602268199999969],[122.84398650000003,-8.603303899999958],[122.84629820000009,-8.604630499999928]]],[[[122.80217940000011,-8.446543599999927],[122.797342,-8.446658],[122.79421790000004,-8.44876],[122.79360470000006,-8.453844199999935],[122.7959800000001,-8.457497],[122.80070010000009,-8.457359099999962],[122.80382930000007,-8.453919],[122.80430260000003,-8.448720799999933],[122.80217940000011,-8.446543599999927]]],[[[123.1462021000001,-8.42414089999994],[123.14297480000005,-8.422971699999948],[123.139122,-8.423777599999937],[123.13446810000005,-8.4268389],[123.13082120000001,-8.4274483],[123.12848660000009,-8.4305887],[123.12248230000012,-8.432219499999974],[123.116272,-8.435921699999938],[123.11304470000005,-8.435674699999936],[123.10891720000006,-8.433055899999943],[123.09273530000007,-8.433801599999981],[123.0916519000001,-8.434216499999934],[123.09211730000004,-8.437231099999963],[123.08982850000007,-8.43467709999993],[123.09013370000002,-8.432985299999928],[123.07629390000011,-8.43436239999994],[123.06777190000003,-8.4329948],[123.06395720000012,-8.434691399999963],[123.05513760000008,-8.43535419999995],[123.05118560000005,-8.433571799999982],[123.04678350000006,-8.4337091],[123.03730770000004,-8.435507799999925],[123.03185270000006,-8.4431067],[123.0249176000001,-8.4456167],[123.02135470000007,-8.448654199999964],[123.0133743,-8.447613699999977],[123.00984190000008,-8.44325729999997],[123.00415040000007,-8.442342799999949],[122.99560550000001,-8.434739099999945],[122.993309,-8.434473],[122.99012760000005,-8.437995],[122.984314,-8.435180699999933],[122.97634390000007,-8.4362826],[122.9702152000001,-8.443494],[122.9651305000001,-8.445214699999951],[122.9526217,-8.460217399999976],[122.95196440000007,-8.471334099999979],[122.94970240000009,-8.474794799999927],[122.95051440000009,-8.4775015],[122.948639,-8.480962199999965],[122.94871640000008,-8.486066199999925],[122.945449,-8.493219599999975],[122.92101290000005,-8.500979399999949],[122.91690060000008,-8.504256299999952],[122.90155790000006,-8.5110512],[122.88517760000002,-8.523983],[122.88249210000004,-8.528606399999944],[122.87979890000008,-8.5471439],[122.88105770000004,-8.555376099999933],[122.87586210000006,-8.560226399999976],[122.87181090000001,-8.569565799999964],[122.8703461,-8.584432599999957],[122.87130740000009,-8.586716599999932],[122.87455750000004,-8.587822],[122.88208770000006,-8.595521899999937],[122.88390350000009,-8.60167309999997],[122.88305660000003,-8.603467899999941],[122.88551330000007,-8.6085253],[122.89122770000006,-8.611187],[122.90341190000004,-8.609031699999946],[122.90721890000009,-8.6094904],[122.90842440000006,-8.61140439999997],[122.91151430000002,-8.611158399999965],[122.91275790000009,-8.60956],[122.92484280000008,-8.604847899999982],[122.93321230000004,-8.596550899999954],[122.93636320000007,-8.59569449999998],[122.93814850000001,-8.59169769999994],[122.9421387000001,-8.588580099999945],[122.94517520000011,-8.579012899999952],[122.9485092000001,-8.575796099999934],[122.95066830000007,-8.5681724],[122.95362850000004,-8.566891699999928],[122.950882,-8.561753299999964],[122.9534149000001,-8.552640899999972],[122.97005460000003,-8.5340452],[122.97609710000006,-8.514881099999968],[122.9834747000001,-8.506559399999958],[122.9912796000001,-8.502862899999968],[122.99769590000005,-8.495369],[123.00343320000002,-8.493641799999978],[123.00660710000011,-8.487951299999963],[123.01555630000007,-8.481477799999936],[123.01803590000009,-8.481093399999963],[123.02189640000006,-8.476508099999933],[123.02844240000002,-8.477179499999977],[123.0345764000001,-8.4810858],[123.04012300000011,-8.487932199999932],[123.050148,-8.4919882],[123.05348210000011,-8.490350699999965],[123.057312,-8.491839399999947],[123.0602417,-8.490646399999946],[123.06521610000004,-8.491522799999927],[123.06874080000011,-8.489064199999973],[123.07860560000006,-8.488788599999964],[123.08424380000008,-8.483732199999963],[123.09748080000008,-8.477822299999957],[123.09869380000009,-8.4754],[123.102684,-8.474099099999933],[123.10420230000011,-8.471953399999961],[123.11648560000003,-8.46741869999994],[123.1295242000001,-8.465736399999969],[123.13287350000007,-8.466736799999978],[123.1410446000001,-8.4640198],[123.14321130000008,-8.461864499999933],[123.14842990000011,-8.461561199999949],[123.151825,-8.453274699999952],[123.16528320000009,-8.44591239999994],[123.16806030000009,-8.4413395],[123.16667940000002,-8.438879],[123.16825870000002,-8.43645],[123.1655502000001,-8.435440099999937],[123.16408540000009,-8.431382199999973],[123.16085050000004,-8.430686899999955],[123.15883640000004,-8.427341499999955],[123.156456,-8.42782879999993],[123.15148920000001,-8.423685099999943],[123.1462021000001,-8.42414089999994]]],[[[123.33238330000006,-8.2562332],[123.3325407000001,-8.25276679999996],[123.3281118000001,-8.2488091],[123.328597,-8.253744499999925],[123.33238330000006,-8.2562332]]],[[[123.33782280000003,-8.256394399999976],[123.33942490000004,-8.254745799999966],[123.3393463000001,-8.250802399999941],[123.33636940000008,-8.24632829999996],[123.33355580000011,-8.246391599999981],[123.33208080000009,-8.251108099999954],[123.33509130000004,-8.255747799999938],[123.33782280000003,-8.256394399999976]]],[[[123.2113571000001,-8.22543719999993],[123.20986170000003,-8.224129699999935],[123.20754240000008,-8.225709],[123.2010345000001,-8.22643949999997],[123.1961212000001,-8.22476389999997],[123.192337,-8.23384],[123.18800350000004,-8.236806899999976],[123.18479160000004,-8.23592659999997],[123.18182370000011,-8.240470899999934],[123.17923740000003,-8.2387237],[123.16026310000007,-8.241414099999929],[123.15830990000006,-8.238667499999963],[123.1562881000001,-8.239882499999965],[123.15383910000003,-8.23860929999995],[123.15226750000011,-8.234622],[123.14887240000007,-8.232162499999959],[123.141983,-8.233773199999973],[123.14229590000002,-8.239397099999962],[123.1331024000001,-8.241596199999947],[123.13131710000005,-8.245116199999927],[123.12681580000003,-8.245904],[123.122467,-8.250202199999933],[123.12121580000007,-8.253697399999965],[123.1190491000001,-8.254137],[123.11721040000009,-8.257665599999939],[123.10891720000006,-8.265354199999933],[123.10379030000001,-8.266664499999933],[123.09927370000003,-8.270880699999964],[123.0895081000001,-8.275798799999961],[123.07956690000003,-8.275660499999958],[123.0769577000001,-8.278943099999935],[123.06061550000004,-8.289346699999953],[123.05811310000001,-8.293410299999948],[123.04567720000011,-8.298339799999951],[123.04114530000004,-8.304860099999928],[123.03292080000006,-8.307559],[123.02786250000008,-8.313185699999963],[123.02673340000001,-8.320444099999975],[123.0198822000001,-8.325157199999978],[123.02098080000007,-8.328002],[123.01769260000003,-8.331697499999962],[123.01709750000009,-8.335044899999957],[123.0102386000001,-8.338988299999926],[123.01107020000006,-8.343435299999953],[123.00902560000009,-8.3499222],[123.0058289000001,-8.356672299999957],[123.00324250000006,-8.357591599999978],[123.0017319000001,-8.364400899999964],[122.99901580000005,-8.368064899999979],[123.00176240000008,-8.380012499999964],[122.9997330000001,-8.3833856],[123.00206760000003,-8.389922099999978],[122.99679560000004,-8.400923699999964],[123.00070190000008,-8.410061799999937],[123.00624080000011,-8.412598599999967],[123.01052090000007,-8.410627399999953],[123.01892090000001,-8.402464899999927],[123.02322390000006,-8.404066099999966],[123.02811430000008,-8.399855599999967],[123.03893280000011,-8.401037199999962],[123.040062,-8.399823199999958],[123.0422668000001,-8.401460699999973],[123.04518890000008,-8.399336799999958],[123.0472641,-8.401701],[123.05317690000004,-8.398283899999967],[123.05588530000011,-8.399816499999929],[123.05683140000008,-8.403630299999975],[123.0586929000001,-8.404303499999969],[123.06032560000006,-8.401666599999942],[123.061882,-8.402226399999961],[123.0604935,-8.406001099999969],[123.06413270000007,-8.411722199999929],[123.069725,-8.4117003],[123.07894370000008,-8.401975199999981],[123.0808803000001,-8.40341529999995],[123.0891342000001,-8.404571499999975],[123.10231020000003,-8.401948],[123.10923770000011,-8.402755699999943],[123.11460880000004,-8.399643899999944],[123.11779020000006,-8.39575579999996],[123.12336730000004,-8.394624699999952],[123.1291427000001,-8.390773799999977],[123.14865870000006,-8.391845699999976],[123.15618130000007,-8.389280299999939],[123.16696930000012,-8.391595799999948],[123.1688309000001,-8.391283099999953],[123.17163850000009,-8.387464499999965],[123.1790238000001,-8.385150899999928],[123.21747590000007,-8.387273799999946],[123.22045900000012,-8.391775099999961],[123.22500130000003,-8.39202629999994],[123.22650360000011,-8.394448599999976],[123.22794180000005,-8.394148199999961],[123.23031670000012,-8.39638009999993],[123.235405,-8.394912699999963],[123.23858640000003,-8.396089599999925],[123.24127680000004,-8.393330499999934],[123.25205990000006,-8.395572699999946],[123.26055150000002,-8.395758599999965],[123.26845550000007,-8.393685299999959],[123.27619170000003,-8.3954],[123.28038790000005,-8.391803699999969],[123.28630830000009,-8.39222049999995],[123.2866974000001,-8.390880599999946],[123.29460910000012,-8.388175],[123.29457850000006,-8.38613609999993],[123.2973022000001,-8.384378399999946],[123.29817960000003,-8.380855599999961],[123.29752350000001,-8.37469479999993],[123.30769350000003,-8.360366799999952],[123.30773160000001,-8.350935],[123.30327610000006,-8.327261],[123.30500030000007,-8.296609899999964],[123.30821230000004,-8.293638199999975],[123.3135529000001,-8.293588599999964],[123.32333370000003,-8.284798599999931],[123.32367710000005,-8.279447599999969],[123.33180240000002,-8.274705899999958],[123.333725,-8.270046199999967],[123.3338242000001,-8.264327099999946],[123.32675940000001,-8.259433699999931],[123.322937,-8.254614799999956],[123.32162470000003,-8.257658899999967],[123.31403350000005,-8.2563181],[123.31302640000001,-8.254183799999964],[123.30744170000003,-8.253141399999947],[123.30105590000005,-8.246316899999954],[123.28961950000007,-8.250729599999943],[123.28612520000001,-8.250320399999964],[123.282402,-8.247456499999942],[123.28053280000006,-8.24792],[123.27922820000003,-8.243839299999934],[123.27817530000004,-8.247933399999965],[123.276741,-8.248518],[123.27742,-8.250103],[123.27601620000007,-8.25050639999995],[123.26541630000008,-8.244621699999925],[123.26538190000008,-8.240871699999957],[123.26050540000006,-8.237815099999978],[123.255833,-8.240412399999968],[123.25584590000005,-8.235279899999966],[123.25349070000004,-8.232298499999956],[123.24647960000004,-8.228783699999951],[123.24320360000002,-8.22552],[123.24186970000005,-8.228048599999966],[123.23145380000005,-8.228786599999978],[123.23045370000011,-8.2312484],[123.2273163000001,-8.232713699999977],[123.22792140000001,-8.239764499999978],[123.22679620000008,-8.241230299999927],[123.2216797000001,-8.243839299999934],[123.2181091000001,-8.24397659999994],[123.21461490000002,-8.242219],[123.21200560000011,-8.238539699999933],[123.21192170000006,-8.234415],[123.21371460000012,-8.231624599999975],[123.2113571000001,-8.22543719999993]]],[[[122.65419010000005,-8.637121199999967],[122.66430660000003,-8.626215],[122.67740630000003,-8.62210559999994],[122.69647220000002,-8.626873],[122.69767760000002,-8.623111699999981],[122.70168300000012,-8.623155599999961],[122.718338,-8.629166599999962],[122.7207413000001,-8.633975],[122.72557830000005,-8.633352299999956],[122.72785950000002,-8.632303199999967],[122.728157,-8.626703299999974],[122.72582250000005,-8.625269899999978],[122.72805790000007,-8.6170082],[122.731781,-8.610941899999943],[122.73722840000005,-8.608376499999963],[122.74729160000004,-8.60774989999993],[122.75227360000008,-8.604773499999965],[122.77154540000004,-8.608720799999958],[122.7726593000001,-8.612350499999934],[122.77837370000009,-8.610546099999965],[122.77998350000007,-8.612743399999943],[122.78330230000006,-8.607118599999978],[122.7938004,-8.6017933],[122.79656220000004,-8.601108599999975],[122.80168920000006,-8.602744099999938],[122.80506900000012,-8.59873959999993],[122.80815890000008,-8.598269499999958],[122.8102417,-8.596283899999946],[122.81693270000005,-8.597662899999932],[122.82206730000007,-8.593627899999944],[122.83111570000005,-8.5897036],[122.83242030000008,-8.587766599999952],[122.83151250000003,-8.58388519999994],[122.84173580000004,-8.57182309999996],[122.84119410000005,-8.569535299999927],[122.84449010000003,-8.563022599999954],[122.84223170000007,-8.559953699999937],[122.84311680000008,-8.555694599999981],[122.84169770000005,-8.551970499999982],[122.84349820000011,-8.547362299999975],[122.8422088000001,-8.5425034],[122.838089,-8.529622099999926],[122.8325119000001,-8.521303199999977],[122.83211520000009,-8.517829],[122.82660670000007,-8.515763299999946],[122.821701,-8.509141899999975],[122.81255340000007,-8.501243599999952],[122.79958340000007,-8.4950705],[122.79651640000009,-8.486863099999937],[122.79023740000002,-8.484273899999948],[122.790863,-8.4812012],[122.7882691000001,-8.4788466],[122.7878799,-8.472525599999926],[122.78464510000003,-8.461905499999943],[122.77878570000007,-8.457212399999946],[122.77955630000008,-8.45119189999997],[122.78646090000007,-8.446977599999968],[122.78688810000006,-8.439333899999951],[122.78366850000009,-8.435292199999935],[122.78359990000001,-8.432772599999964],[122.78799440000012,-8.4263525],[122.78330990000006,-8.424458499999957],[122.7830887,-8.4229069],[122.7853851000001,-8.421627],[122.7905273,-8.422822],[122.79757690000008,-8.422054299999957],[122.8023071,-8.424849499999937],[122.80657960000008,-8.422851599999944],[122.8066788000001,-8.424330699999928],[122.81150050000008,-8.425606699999946],[122.8087997,-8.429860099999928],[122.80912780000006,-8.432048799999961],[122.81275940000012,-8.432104099999947],[122.8144913000001,-8.433684399999947],[122.81705470000009,-8.432260499999927],[122.81632230000002,-8.429169699999932],[122.819458,-8.428512599999976],[122.82418060000009,-8.430093799999952],[122.82527160000006,-8.429096199999947],[122.8311615,-8.434688599999959],[122.82822420000002,-8.436390899999935],[122.82868960000008,-8.438125599999978],[122.840538,-8.441504499999951],[122.8441696000001,-8.444949099999974],[122.84792330000005,-8.445600499999955],[122.8534012,-8.449860599999965],[122.86022950000006,-8.452716799999962],[122.86796570000001,-8.4527569],[122.87236790000009,-8.454918899999939],[122.88761140000008,-8.448604599999953],[122.89011380000011,-8.445410699999968],[122.88920590000009,-8.44048689999994],[122.89158630000009,-8.435654599999964],[122.89317320000009,-8.420356799999979],[122.89019010000004,-8.409832],[122.89022060000002,-8.403067599999929],[122.88217920000011,-8.398014099999955],[122.88117980000004,-8.394014399999946],[122.88318640000011,-8.392570499999977],[122.88353730000006,-8.390300799999977],[122.87842560000001,-8.384395599999948],[122.88430790000007,-8.37442969999995],[122.884697,-8.370475799999952],[122.88684080000007,-8.368225099999961],[122.8926239000001,-8.367116899999928],[122.89106750000008,-8.364151],[122.89338690000011,-8.363491099999976],[122.89694980000002,-8.354863199999954],[122.90193180000006,-8.349549299999978],[122.90212250000002,-8.347221399999967],[122.91004940000005,-8.343516299999976],[122.90814970000008,-8.339414599999941],[122.91024780000009,-8.337673199999927],[122.91270450000002,-8.338143299999956],[122.9137955000001,-8.336414299999944],[122.91375730000004,-8.328510299999948],[122.9249344000001,-8.327230499999928],[122.92911530000003,-8.328048699999954],[122.932724,-8.334876099999974],[122.93963620000011,-8.336655599999972],[122.9552460000001,-8.348316199999942],[122.96448520000001,-8.35191919999994],[122.973053,-8.347207099999935],[122.97718810000003,-8.348255199999926],[122.98289490000002,-8.347236599999974],[122.98509980000006,-8.344224],[122.990036,-8.342066799999941],[122.99199670000007,-8.336863499999936],[123.00169370000003,-8.332800899999938],[123.00962070000003,-8.324529699999971],[123.01976780000007,-8.317454299999952],[123.02113340000005,-8.307097399999975],[123.018425,-8.298442799999975],[123.0196304000001,-8.288722],[123.01841740000009,-8.28136059999997],[123.00988010000003,-8.275117899999941],[123.00844570000004,-8.275713899999971],[123.00749210000004,-8.273277299999961],[122.9976196,-8.269556],[122.99207310000008,-8.261664399999972],[122.98966220000011,-8.253806099999963],[122.98295590000009,-8.2510834],[122.98119350000002,-8.244580299999939],[122.9846573000001,-8.237306599999954],[122.9780502000001,-8.222004899999945],[122.97959140000012,-8.2150593],[122.9777984000001,-8.212171499999954],[122.96962740000004,-8.207485199999951],[122.967514,-8.203228],[122.96458440000004,-8.202391599999942],[122.96445470000003,-8.198957499999949],[122.96224980000011,-8.196682899999928],[122.95998380000003,-8.195379199999934],[122.95679470000005,-8.1963139],[122.959137,-8.193994499999974],[122.96250150000003,-8.195005399999957],[122.966217,-8.191835399999945],[122.97146610000004,-8.174211499999956],[122.9719391000001,-8.161964399999931],[122.97315980000008,-8.160594899999978],[122.97205350000002,-8.151512099999934],[122.97357180000006,-8.1502371],[122.97200780000003,-8.150115],[122.973259,-8.148246799999981],[122.97227480000004,-8.145911199999944],[122.9736481000001,-8.142231],[122.97290040000007,-8.134842899999967],[122.9694138000001,-8.129612],[122.96717070000011,-8.128131899999971],[122.96219630000007,-8.1281672],[122.95500950000007,-8.120626499999958],[122.94179530000008,-8.1157904],[122.9408264000001,-8.112501099999974],[122.93534850000003,-8.108655],[122.91664120000007,-8.102061299999946],[122.90721890000009,-8.0949917],[122.89927670000009,-8.091673799999967],[122.896225,-8.087906799999928],[122.89150240000004,-8.087196399999925],[122.88780980000001,-8.083030699999938],[122.88545230000011,-8.076227199999948],[122.86994930000003,-8.068314599999951],[122.86659240000006,-8.063357399999973],[122.85073850000003,-8.0749922],[122.848587,-8.074388499999941],[122.84709170000008,-8.07105919999998],[122.84426120000012,-8.070208499999978],[122.84204870000008,-8.073547399999939],[122.84606170000006,-8.076456099999973],[122.84571840000001,-8.079112],[122.83901980000007,-8.081846199999973],[122.83072660000005,-8.09642219999995],[122.8224411000001,-8.096805599999925],[122.81788640000002,-8.0954933],[122.81655880000005,-8.096596699999964],[122.81445310000004,-8.095194799999945],[122.81346890000009,-8.097638099999926],[122.81008150000002,-8.099718099999961],[122.80249790000005,-8.101227699999981],[122.80374910000012,-8.103007299999945],[122.80297850000011,-8.104880299999934],[122.797081,-8.1089935],[122.795311,-8.109205199999963],[122.7906799000001,-8.105884599999968],[122.7894745000001,-8.103489899999943],[122.78612520000001,-8.107044199999962],[122.78266140000005,-8.107862499999953],[122.78073880000011,-8.111980399999936],[122.78177640000001,-8.12072089999998],[122.77827450000007,-8.136202799999978],[122.78237910000007,-8.140487699999937],[122.78491970000005,-8.150336299999935],[122.7824326000001,-8.151795399999969],[122.78157810000005,-8.156942399999934],[122.77621460000012,-8.164098699999954],[122.76184080000007,-8.178085299999964],[122.75946040000008,-8.194231],[122.75112910000007,-8.197568899999965],[122.74668880000002,-8.203942299999937],[122.742424,-8.207610099999954],[122.74040980000007,-8.2076788],[122.731308,-8.216589],[122.73015590000011,-8.221837],[122.7322845000001,-8.226945899999976],[122.741684,-8.2289457],[122.74962620000008,-8.226017],[122.75585180000007,-8.230067299999973],[122.75963590000003,-8.225872],[122.76236730000005,-8.224954599999933],[122.76678470000002,-8.226366],[122.76972960000012,-8.231814399999962],[122.77561950000006,-8.231246899999974],[122.7815399000001,-8.235555599999941],[122.783989,-8.234348299999965],[122.78778840000007,-8.235517499999958],[122.79239660000007,-8.225904499999956],[122.79722590000006,-8.223560299999974],[122.79705050000007,-8.214903799999945],[122.79938510000011,-8.207531],[122.80908970000007,-8.198263199999928],[122.81929780000007,-8.194826099999943],[122.82032780000009,-8.191146799999956],[122.82168580000007,-8.191383299999927],[122.8228150000001,-8.194863299999952],[122.83333590000007,-8.192972199999929],[122.83791350000001,-8.188201],[122.8413925000001,-8.187955899999963],[122.84172820000003,-8.18648339999993],[122.84539030000008,-8.184939399999962],[122.8470688000001,-8.181337399999961],[122.84819030000006,-8.182833699999946],[122.84748840000009,-8.186231599999928],[122.84990690000006,-8.188706399999944],[122.85570530000007,-8.187989199999947],[122.86252590000004,-8.1823568],[122.862999,-8.17906],[122.86611180000011,-8.176167499999963],[122.871521,-8.180144299999938],[122.87632750000012,-8.178638499999977],[122.88206480000008,-8.180723199999932],[122.88355260000003,-8.176984799999957],[122.88654330000008,-8.175318699999934],[122.89092260000007,-8.17525],[122.89100650000012,-8.176386899999954],[122.897171,-8.179042799999934],[122.90076450000004,-8.175891899999954],[122.901329,-8.179775199999938],[122.91163640000002,-8.188152299999956],[122.91387940000004,-8.188591],[122.91837310000005,-8.193899199999976],[122.9225464000001,-8.195138],[122.92366030000005,-8.1931906],[122.92477420000012,-8.1946316],[122.92544550000002,-8.192038499999967],[122.93186950000006,-8.195305799999971],[122.93769840000004,-8.192550599999947],[122.93918610000003,-8.193581599999959],[122.93849940000007,-8.197935099999938],[122.93969730000003,-8.199670799999978],[122.93507380000005,-8.20340729999998],[122.93457790000002,-8.202440199999955],[122.92440030000012,-8.204272299999957],[122.91910550000011,-8.207959199999948],[122.91227720000006,-8.217510199999936],[122.90841670000009,-8.22487549999994],[122.9078750000001,-8.236764899999969],[122.90286260000005,-8.242999099999963],[122.9002762,-8.2509165],[122.894928,-8.256636599999979],[122.8934326000001,-8.2770062],[122.88674930000002,-8.281854599999974],[122.88449160000005,-8.286841099999947],[122.88184970000009,-8.288852299999974],[122.87664430000007,-8.290398299999936],[122.8720856000001,-8.293738299999973],[122.86466220000011,-8.291475299999945],[122.85112,-8.290165899999977],[122.84636690000002,-8.29251],[122.84201810000002,-8.291995],[122.83485410000003,-8.296421099999975],[122.83358,-8.2944946],[122.82704160000003,-8.2928286],[122.81719970000006,-8.299235299999964],[122.81107330000009,-8.297909799999957],[122.80834960000004,-8.3001595],[122.80588530000011,-8.305396099999939],[122.80231480000009,-8.306585299999938],[122.79869080000003,-8.311546299999975],[122.79296110000007,-8.313102699999945],[122.78898620000007,-8.316594099999975],[122.78150180000011,-8.332452799999942],[122.77428440000006,-8.342333799999949],[122.7729111000001,-8.349890699999946],[122.76943210000002,-8.353849399999945],[122.76778410000009,-8.361100199999953],[122.7659149000001,-8.363177299999961],[122.76020810000011,-8.363669399999935],[122.74698640000008,-8.358395599999938],[122.74340060000009,-8.359163299999977],[122.735611,-8.35781959999997],[122.727684,-8.3606014],[122.72390750000011,-8.360348699999975],[122.71775820000005,-8.365787499999954],[122.7129364000001,-8.366538099999957],[122.705574,-8.374214199999926],[122.70143130000008,-8.374510799999939],[122.6956024000001,-8.377541599999972],[122.68865210000001,-8.378059399999927],[122.68556980000005,-8.38292309999997],[122.68221280000012,-8.383280799999966],[122.68348690000005,-8.386141799999962],[122.68241120000005,-8.395583099999953],[122.68411260000005,-8.399839399999962],[122.68253330000005,-8.406850799999972],[122.67653660000008,-8.413305299999934],[122.67805480000004,-8.419404],[122.68377690000011,-8.421774899999946],[122.68472290000011,-8.438661599999932],[122.67910770000003,-8.4553413],[122.67342380000002,-8.459706299999937],[122.677742,-8.462566399999957],[122.67649840000001,-8.467042],[122.67893220000008,-8.471357299999966],[122.68212890000007,-8.473609],[122.6868591000001,-8.484678299999928],[122.67987820000008,-8.497017899999946],[122.68050390000008,-8.500288],[122.67419430000007,-8.502810499999953],[122.67099760000008,-8.512603799999965],[122.66709140000012,-8.5156145],[122.66484830000002,-8.519599899999946],[122.66653440000005,-8.525812199999962],[122.66396330000009,-8.532190299999968],[122.66336820000004,-8.547658],[122.65921020000008,-8.552731499999936],[122.65847010000005,-8.560545],[122.65565490000006,-8.562332099999935],[122.65612030000011,-8.569153799999981],[122.65186310000001,-8.581785199999956],[122.6515045000001,-8.598850199999958],[122.64918520000003,-8.604332899999974],[122.6513672000001,-8.607213],[122.64889530000005,-8.615232499999934],[122.64994810000007,-8.6201849],[122.64842990000011,-8.627647399999944],[122.65419010000005,-8.637121199999967]]]]},"properties":{"shapeName":"Flores Timur","shapeISO":"","shapeID":"22746128B79955735268239","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[107.47664650000007,-7.256526199999939],[107.47621160000006,-7.260419499999955],[107.47420510000006,-7.261996],[107.474228,-7.265397299999961],[107.47218330000004,-7.265468799999951],[107.46851360000005,-7.274641699999961],[107.46424110000004,-7.276297299999953],[107.46450820000007,-7.279544499999929],[107.462494,-7.279960799999969],[107.46363080000003,-7.282469899999967],[107.45851910000005,-7.2858622],[107.45494090000005,-7.292119699999944],[107.45874030000004,-7.298289],[107.45731370000004,-7.302426499999967],[107.45926680000008,-7.308819899999946],[107.46096810000006,-7.309959599999956],[107.46588150000008,-7.326974099999973],[107.47274790000006,-7.332975099999942],[107.47547160000005,-7.343442599999946],[107.47878280000003,-7.346843],[107.48319250000009,-7.348533799999927],[107.48480240000004,-7.352523499999961],[107.48456580000004,-7.356907099999944],[107.48168190000007,-7.364156899999955],[107.479889,-7.364266599999951],[107.48005690000008,-7.367212499999937],[107.476883,-7.370788699999935],[107.47687540000004,-7.376791599999933],[107.47368630000005,-7.382140299999946],[107.473816,-7.401506599999948],[107.45967880000006,-7.407739299999946],[107.45478830000008,-7.408571399999971],[107.45111860000009,-7.413545799999952],[107.43899550000003,-7.417416699999933],[107.433838,-7.420406],[107.43187730000005,-7.423580799999968],[107.42986310000003,-7.431797699999947],[107.43068710000006,-7.434412699999939],[107.42619340000005,-7.439730299999951],[107.42968760000008,-7.441351099999963],[107.429268,-7.443681899999945],[107.42643750000008,-7.444059099999947],[107.42806250000007,-7.449563199999943],[107.42025010000003,-7.462371499999961],[107.42305,-7.469232199999965],[107.42187510000008,-7.473257699999976],[107.423813,-7.476693799999964],[107.42193620000006,-7.480593399999975],[107.42150130000005,-7.488273799999945],[107.42629250000005,-7.494933299999957],[107.42622390000008,-7.5024711],[107.42305640000006,-7.505569099999946],[107.44598,-7.5082],[107.45514,-7.5116],[107.45753,-7.51398],[107.47391,-7.51886],[107.47736,-7.52219],[107.47719,-7.5275],[107.48079,-7.53057],[107.4794,-7.53369],[107.48066,-7.53778],[107.48329,-7.5391],[107.49205,-7.53518],[107.495867,-7.53485],[107.49743,-7.536943],[107.498837,-7.535395],[107.50523,-7.539606],[107.512776,-7.540326],[107.518993,-7.543973],[107.521011,-7.542113],[107.525362,-7.546519],[107.530516,-7.547997],[107.532795,-7.551335],[107.537407,-7.552835],[107.539787,-7.551953],[107.54273,-7.554235],[107.543571,-7.552833],[107.550391,-7.553962],[107.57391,-7.56462],[107.59597,-7.56911],[107.60559,-7.57339],[107.61062,-7.5815],[107.61768,-7.58338],[107.623549,-7.588954],[107.623061,-7.595389],[107.625035,-7.59797],[107.632056,-7.601072],[107.635135,-7.599174],[107.63965,-7.601727],[107.642148,-7.604579],[107.65426,-7.61087],[107.66892,-7.62147],[107.67389,-7.62674],[107.68295,-7.63825],[107.68338,-7.64466],[107.68827,-7.65115],[107.68885,-7.65754],[107.68597,-7.66171],[107.68909010000004,-7.66399],[107.69069,-7.66853],[107.69676,-7.66907],[107.71475560000005,-7.666095499999926],[107.720857,-7.666817],[107.78488,-7.6798],[107.80658290000008,-7.688234299999976],[107.810099,-7.687591],[107.827559,-7.698747],[107.83472080000007,-7.705369],[107.83759,-7.71349],[107.83433,-7.72152],[107.83637,-7.72765],[107.84328,-7.73521],[107.84717,-7.73696],[107.85019,-7.7344],[107.86438,-7.73938],[107.8666,-7.73851],[107.87503,-7.74014],[107.88507,-7.73866],[107.88823,-7.7397],[107.89411,-7.73535],[107.89644,-7.73836],[107.89991,-7.73959],[107.90298,-7.73829],[107.90376,-7.73568],[107.90683,-7.73718],[107.90974890000007,-7.731702699999971],[107.91332250000005,-7.725436],[107.91333380000003,-7.720043699999962],[107.91583260000004,-7.716285499999969],[107.91809850000004,-7.7154372],[107.91741950000005,-7.7109564],[107.92145550000004,-7.706858899999929],[107.92149360000008,-7.703205399999945],[107.92294320000008,-7.701183599999979],[107.92711650000007,-7.7003458],[107.92404180000005,-7.695442],[107.927765,-7.693219899999974],[107.93125920000006,-7.686004899999944],[107.93093120000009,-7.682076199999926],[107.92863470000009,-7.682022299999971],[107.92551430000009,-7.676355599999965],[107.923611,-7.676723],[107.92777260000008,-7.671368899999948],[107.923509,-7.664662],[107.925321,-7.664044],[107.926569,-7.66631],[107.92841,-7.665979],[107.92851260000003,-7.664010799999971],[107.92614630000008,-7.662114799999927],[107.92951,-7.659885],[107.93027510000007,-7.657339399999955],[107.92942820000007,-7.655148299999951],[107.92482770000004,-7.6544631],[107.923256,-7.652022599999952],[107.92283630000009,-7.6497895],[107.924939,-7.647731],[107.92584240000008,-7.642663299999981],[107.92519390000007,-7.640101199999947],[107.92266090000004,-7.639771199999927],[107.92107960000004,-7.637046599999962],[107.925828,-7.634165],[107.92481010000006,-7.630949599999951],[107.92561350000005,-7.622134499999959],[107.924261,-7.619822699999929],[107.92516330000007,-7.617923499999961],[107.92186740000005,-7.615525499999933],[107.92163860000005,-7.612835699999948],[107.918686,-7.613293899999974],[107.92012790000007,-7.610050499999943],[107.918213,-7.608018699999946],[107.91894540000004,-7.604884399999946],[107.91686260000006,-7.603563099999974],[107.91698460000003,-7.597011399999928],[107.92604110000008,-7.588228199999946],[107.933354,-7.586491],[107.940603,-7.581403],[107.94184880000006,-7.5730246],[107.94052890000006,-7.569758199999967],[107.93316660000005,-7.563964599999963],[107.931359,-7.560453],[107.932904,-7.555769],[107.943193,-7.546833],[107.946601,-7.541804],[107.946996,-7.537585],[107.942253,-7.528139],[107.94184120000006,-7.502498899999978],[107.94483950000006,-7.494996799999967],[107.95041660000004,-7.486667399999931],[107.95130170000004,-7.480610699999943],[107.946785,-7.473415699999975],[107.94821940000008,-7.4653719],[107.95331580000004,-7.460229699999957],[107.94972240000004,-7.454129499999965],[107.950615,-7.451224599999932],[107.94901280000005,-7.445582699999932],[107.95117960000005,-7.435325899999953],[107.95142370000008,-7.421680299999935],[107.943676,-7.414084],[107.94187930000004,-7.409581399999979],[107.94800510000005,-7.404772299999934],[107.94895940000004,-7.401545299999952],[107.936226,-7.399928799999941],[107.93282330000005,-7.394202499999949],[107.93375410000004,-7.388408499999969],[107.91983040000008,-7.376360199999965],[107.91428380000008,-7.3690637],[107.90739450000007,-7.367101],[107.90447240000009,-7.3625524],[107.904979,-7.359524],[107.913698,-7.356221],[107.920652,-7.351288],[107.924245,-7.352237],[107.92832530000004,-7.350641799999948],[107.93163270000008,-7.344161799999938],[107.92997790000004,-7.341802199999961],[107.931183,-7.340062],[107.92931290000007,-7.338562199999956],[107.934641,-7.337123],[107.93416820000004,-7.3343491],[107.93802650000003,-7.330740299999945],[107.94625360000003,-7.330504],[107.94060060000004,-7.322407799999951],[107.940181,-7.316192],[107.93211660000009,-7.316331499999933],[107.92848160000005,-7.3125693],[107.93058780000007,-7.306475],[107.93192410000006,-7.306295099999943],[107.93158990000006,-7.303011899999944],[107.93025020000005,-7.301060199999938],[107.926809,-7.30183],[107.92596440000005,-7.296975399999951],[107.922796,-7.293581],[107.92257860000007,-7.2887772],[107.924412,-7.285682],[107.927267,-7.284267],[107.929112,-7.284875],[107.93196870000008,-7.282406099999946],[107.94222270000006,-7.282900099999949],[107.967465,-7.273161],[107.976756,-7.274047],[107.979448,-7.272853],[107.98074350000007,-7.271002099999976],[107.980763,-7.264601],[107.982447,-7.262077],[107.98503120000004,-7.260390599999937],[107.994538,-7.258569],[107.99475870000003,-7.252785],[108.00013740000009,-7.249999799999955],[108.00498970000007,-7.244917699999974],[108.01354230000004,-7.241119199999957],[108.01480870000006,-7.235746699999936],[108.01857760000007,-7.230915799999934],[108.03317270000008,-7.2268761],[108.06036390000008,-7.224892399999931],[108.06238560000008,-7.223192499999925],[108.06877140000006,-7.211054099999956],[108.06837470000005,-7.208605599999942],[108.066063,-7.207338599999957],[108.068793,-7.200749],[108.07365420000008,-7.199858],[108.07510380000008,-7.198158099999944],[108.07354,-7.193848],[108.067009,-7.187247099999979],[108.07132880000006,-7.179622],[108.06987340000006,-7.177113199999951],[108.07243520000009,-7.17421],[108.07609840000003,-7.174085099999957],[108.076174,-7.169527799999969],[108.08085320000004,-7.167151799999942],[108.08454970000008,-7.162149199999931],[108.08067310000007,-7.142859899999962],[108.07367710000005,-7.135346699999957],[108.070681,-7.135015],[108.068018,-7.130072699999971],[108.08580790000008,-7.109019599999954],[108.09160920000005,-7.105895],[108.096052,-7.106188],[108.09899,-7.102877],[108.101598,-7.104378],[108.106105,-7.102426],[108.108312,-7.103687],[108.110179,-7.102053],[108.11372140000009,-7.1025966],[108.11617090000004,-7.107835],[108.12069380000008,-7.1107586],[108.12250520000003,-7.114639099999977],[108.12599950000003,-7.102023899999949],[108.12202460000009,-7.098028499999941],[108.12101750000005,-7.094143199999962],[108.123581,-7.0919827],[108.12341320000007,-7.085802399999977],[108.11798870000007,-7.077934099999936],[108.12345130000006,-7.069605199999955],[108.124702,-7.069175],[108.127384,-7.071431],[108.13005870000006,-7.064499],[108.134656,-7.062842],[108.136057,-7.060506],[108.133816,-7.055134],[108.135522,-7.050257],[108.132492,-7.049307],[108.131493,-7.046412],[108.128948,-7.045436],[108.127788,-7.0433161],[108.12905890000008,-7.040762299999926],[108.12543490000007,-7.037049099999933],[108.12274940000009,-7.037163599999928],[108.11502080000008,-7.032906899999944],[108.10930640000004,-7.026064199999951],[108.10005960000007,-7.019531599999937],[108.099495,-7.0146039],[108.09413150000006,-7.007139],[108.09499630000005,-7.00488],[108.09315990000005,-7.001999499999954],[108.09412540000005,-6.999794599999973],[108.09208220000005,-6.999729299999956],[108.09351310000005,-6.995769299999949],[108.09147570000005,-6.991356399999972],[108.09137220000008,-6.984459499999957],[108.09015150000005,-6.981781499999954],[108.08772870000007,-6.980504099999962],[108.08323320000005,-6.9828131],[108.07380840000008,-6.9821039],[108.06522970000009,-6.992518599999926],[108.06459480000007,-6.995020899999929],[108.05853310000003,-6.994498799999974],[108.05499130000004,-6.996247299999936],[108.04790430000008,-6.992726499999947],[108.04635310000003,-6.995579],[108.04267330000005,-6.996555899999976],[108.03750790000004,-6.9946894],[108.03716970000005,-6.991749499999969],[108.03048120000005,-6.991562299999941],[108.03073580000006,-6.989314699999966],[108.02883410000004,-6.987580899999955],[108.02736470000008,-6.988901299999952],[108.02541760000008,-6.987444099999948],[108.02655670000007,-6.985520799999961],[108.02379060000004,-6.983954499999925],[108.02322510000005,-6.981808299999955],[108.02069810000006,-6.983244199999945],[108.01808570000009,-6.9804738],[108.01673080000006,-6.981236],[108.01587680000006,-6.9801167],[108.00759130000006,-6.9823747],[108.00400060000004,-6.980985699999962],[108.00323490000005,-6.982953399999928],[108.00000010000008,-6.983578499999965],[107.99675730000007,-6.981150899999932],[107.99069220000007,-6.981968199999926],[107.978386,-6.972795299999973],[107.97656260000008,-6.969438799999978],[107.96858220000007,-6.962644399999931],[107.96650140000008,-6.958736],[107.95811470000007,-6.960360399999956],[107.95339210000009,-6.958300899999927],[107.94662480000005,-6.957757299999969],[107.942936,-6.9530807],[107.93901830000004,-6.956302899999969],[107.934784,-6.9550317],[107.93141940000004,-6.955915299999958],[107.92697150000004,-6.952179199999932],[107.92610940000009,-6.948708299999964],[107.92182170000007,-6.949609599999974],[107.91592540000005,-6.945701799999938],[107.91466530000008,-6.952776699999959],[107.91838840000008,-6.953954499999952],[107.91657270000007,-6.967372699999942],[107.90876780000008,-6.967386499999975],[107.90221410000004,-6.969366899999955],[107.88938150000007,-6.982571399999927],[107.89739230000004,-6.982944799999927],[107.90061960000008,-6.986286399999926],[107.90486150000004,-6.9875052],[107.907486,-6.992482499999937],[107.90743260000005,-7.001806099999953],[107.90885930000007,-7.005447199999935],[107.90768440000005,-7.009366799999952],[107.90578470000008,-7.010698599999955],[107.90594490000007,-7.014426],[107.90794380000006,-7.021272],[107.90728010000004,-7.025171099999966],[107.91050730000006,-7.032650299999943],[107.91021740000008,-7.036261799999977],[107.91340640000004,-7.035671099999945],[107.914758,-7.036796199999969],[107.91960240000009,-7.033486099999948],[107.92895520000008,-7.0341261],[107.93083870000004,-7.032968899999958],[107.93156440000007,-7.040717399999949],[107.92573560000005,-7.050283699999966],[107.92620090000008,-7.052117599999974],[107.923401,-7.053395599999931],[107.894333,-7.0543387],[107.89258580000006,-7.053138],[107.89192970000005,-7.049294699999962],[107.88680280000005,-7.049360599999943],[107.87656410000005,-7.050279],[107.87408460000006,-7.054949099999931],[107.86568460000007,-7.056727199999955],[107.86151890000008,-7.059717899999953],[107.84985720000009,-7.058822599999928],[107.84685520000005,-7.064083799999935],[107.84049230000005,-7.067039799999975],[107.83804330000004,-7.066586799999925],[107.83485540000004,-7.0694936],[107.83552560000004,-7.080455599999937],[107.83325210000004,-7.081939499999976],[107.83000970000006,-7.081767],[107.83072670000007,-7.090782399999966],[107.81150060000004,-7.099199599999963],[107.809929,-7.101808799999958],[107.810875,-7.109873599999958],[107.80776990000004,-7.115743399999928],[107.81171420000004,-7.126721199999963],[107.81127230000004,-7.136527499999943],[107.80772410000009,-7.144482399999958],[107.79798140000008,-7.157425199999977],[107.79328930000008,-7.160048699999948],[107.78556070000008,-7.1615827],[107.77989210000004,-7.158530499999927],[107.77827360000003,-7.155743899999948],[107.77079240000006,-7.156784],[107.76953350000008,-7.162449799999933],[107.77121960000005,-7.165645099999949],[107.77077710000009,-7.168051199999979],[107.76600640000004,-7.171677899999963],[107.75407250000006,-7.172611299999971],[107.73979960000008,-7.167256599999973],[107.73920450000008,-7.171202],[107.73609170000009,-7.173942299999965],[107.73307810000006,-7.182585],[107.72498330000008,-7.191538099999946],[107.721573,-7.197982099999933],[107.72519690000007,-7.206325299999946],[107.73111730000005,-7.213170799999943],[107.72445690000006,-7.218840399999976],[107.72199260000008,-7.218485099999953],[107.71907450000003,-7.220355099999949],[107.71862040000008,-7.222268299999939],[107.71554570000006,-7.222151499999939],[107.70708490000004,-7.228480699999977],[107.70864880000005,-7.231275799999935],[107.70614630000006,-7.237886699999933],[107.71008310000008,-7.248300299999926],[107.73258220000008,-7.260085799999956],[107.73903670000004,-7.266652399999941],[107.73826610000003,-7.273789199999953],[107.72242740000007,-7.289728899999943],[107.72325910000006,-7.293274599999961],[107.73021710000006,-7.292811599999936],[107.73126990000009,-7.294020899999964],[107.73012550000004,-7.296315399999969],[107.72470870000006,-7.299300899999935],[107.72286230000009,-7.314224899999942],[107.71936810000005,-7.314827199999968],[107.71405040000008,-7.310437],[107.709427,-7.308701299999939],[107.69458020000008,-7.310276699999974],[107.69156660000004,-7.308999299999925],[107.67963420000007,-7.310797899999955],[107.677559,-7.312087299999973],[107.67785650000008,-7.314803799999936],[107.67616280000004,-7.316073599999982],[107.67398080000004,-7.313349499999958],[107.67022710000003,-7.312767699999938],[107.671425,-7.308687],[107.67056280000008,-7.304328199999929],[107.66881570000004,-7.300484899999958],[107.66663370000003,-7.301027],[107.66426860000007,-7.298734399999944],[107.66548930000005,-7.2945444],[107.66198740000004,-7.293476799999951],[107.66010290000008,-7.290425099999936],[107.65766920000004,-7.289773199999956],[107.65245070000009,-7.294760499999938],[107.64821630000006,-7.294816199999957],[107.64678970000006,-7.2975871],[107.64759840000005,-7.298639499999979],[107.64095320000007,-7.303977199999963],[107.63536840000006,-7.301540599999953],[107.63014990000005,-7.3013975],[107.62751780000008,-7.298626199999944],[107.62002570000004,-7.3069513],[107.61244970000007,-7.309274899999934],[107.60519420000008,-7.3078496],[107.60147110000008,-7.299408699999958],[107.60377510000006,-7.293526399999962],[107.599228,-7.282952],[107.59660350000007,-7.283275799999956],[107.59259040000006,-7.280576899999971],[107.59074410000005,-7.281659299999944],[107.58215340000004,-7.276700699999935],[107.57895670000005,-7.273254599999973],[107.57825480000008,-7.268914],[107.57373060000003,-7.262856699999929],[107.567093,-7.259510699999964],[107.55729690000004,-7.251430299999981],[107.54845440000008,-7.254920699999957],[107.54602060000008,-7.257777399999952],[107.53401190000005,-7.251313399999958],[107.53183760000007,-7.254253099999971],[107.52415480000008,-7.256026],[107.51153570000008,-7.255696499999942],[107.50074020000005,-7.257239099999936],[107.48006450000008,-7.251455499999963],[107.476761,-7.253935499999955],[107.47772230000004,-7.255353199999945],[107.47664650000007,-7.256526199999939]]]},"properties":{"shapeName":"Garut","shapeISO":"","shapeID":"22746128B84879277787424","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[97.15358140000006,3.74558630000007],[97.18008510000004,3.723951500000055],[97.20615790000005,3.6939],[97.25549870000003,3.695362700000032],[97.25835840000008,3.693750400000056],[97.26423470000003,3.685083600000041],[97.28486860000004,3.68230710000006],[97.30480260000007,3.676829400000031],[97.315936,3.676924100000065],[97.46033310000007,3.697661500000038],[97.47732110000004,3.701662700000043],[97.49380060000004,3.702941400000043],[97.497942,3.700657600000056],[97.51149910000004,3.700076400000057],[97.52842380000004,3.705952300000035],[97.534871,3.70669330000004],[97.53971930000006,3.710242200000039],[97.54959980000007,3.714175900000043],[97.55265780000008,3.714253500000041],[97.55614670000006,3.710687900000039],[97.62170080000004,3.721661],[97.62949070000008,3.729916],[97.63531730000005,3.73327],[97.642256,3.731654],[97.653487,3.731663],[97.70262440000005,3.734941],[97.73055290000008,3.738997],[97.74886020000008,3.744341],[97.78123260000007,3.749222],[97.80927340000005,3.748472500000048],[97.82460930000008,3.749526],[97.83988890000006,3.767805],[97.84894570000006,3.774263],[97.85615830000006,3.775282],[97.86098240000007,3.784309],[97.86944560000006,3.787181],[97.87516610000006,3.792681],[97.88243760000006,3.79627],[97.88517790000009,3.800694],[97.89632170000004,3.80793],[97.90209820000007,3.818153],[97.90770230000004,3.817617],[97.90925120000009,3.818812],[97.909665,3.824431],[97.91562180000005,3.832502],[97.91555980000004,3.836387],[97.92223160000003,3.845235],[97.92115760000007,3.846849],[97.91805780000004,3.847266],[97.91519390000008,3.85121],[97.91518830000007,3.860594],[97.90886590000008,3.868541],[97.90939680000008,3.878642],[97.91573960000005,3.885189400000058],[97.91309360000008,3.885065700000041],[97.911524,3.887484100000052],[97.91055380000006,3.892444800000021],[97.91247430000004,3.898135400000058],[97.90776850000003,3.903151600000058],[97.90957190000006,3.906300600000066],[97.90679390000008,3.91138],[97.90835410000005,3.916222900000037],[97.89989360000004,3.935817500000041],[97.89025530000004,3.934533900000076],[97.88772280000006,3.936103800000069],[97.88663950000006,3.93513420000005],[97.88217910000009,3.936580500000048],[97.871584,3.930031],[97.86821740000005,3.924580400000025],[97.86111080000006,3.922513400000071],[97.84952760000004,3.933873400000039],[97.83068460000004,3.966310700000065],[97.82404790000004,3.972715200000039],[97.823431,3.98288],[97.82198110000007,3.985600800000043],[97.80376050000007,4.002517],[97.79881080000007,4.008681700000068],[97.79168080000005,4.022346200000072],[97.78963070000003,4.023311200000023],[97.79462240000004,4.029702300000054],[97.79267820000007,4.040591],[97.79314980000004,4.047610700000064],[97.79531530000008,4.050155400000051],[97.79410390000004,4.05438920000006],[97.79494480000005,4.056205700000021],[97.79216260000004,4.063220500000057],[97.79348320000008,4.066611100000046],[97.79263330000003,4.070845400000053],[97.77847830000007,4.106977800000038],[97.77564070000005,4.110513100000048],[97.76731760000007,4.115219900000056],[97.76453690000005,4.120782400000053],[97.76212710000004,4.120415600000058],[97.75874690000006,4.124040800000046],[97.75645680000008,4.124158200000068],[97.75283430000007,4.128509100000031],[97.73811730000006,4.136956800000064],[97.72954680000004,4.145383800000047],[97.72785170000009,4.150221700000031],[97.72832520000009,4.155547100000035],[97.72567080000005,4.157358],[97.72300420000005,4.166671700000052],[97.72058960000004,4.169209200000068],[97.72178520000006,4.175140700000043],[97.71864480000005,4.179280400000039],[97.71851320000007,4.18605690000004],[97.71596680000005,4.19549180000007],[97.71704370000003,4.20033410000002],[97.71474740000008,4.20408180000004],[97.71702760000005,4.210166500000071],[97.71606090000006,4.211617100000069],[97.71832420000004,4.227957600000025],[97.72060910000005,4.231228800000054],[97.720845,4.234375500000056],[97.72421720000006,4.236105500000065],[97.71785810000006,4.247182700000053],[97.68498080000006,4.247001600000033],[97.680726,4.240824400000065],[97.66899430000007,4.242235],[97.65491820000005,4.226089800000068],[97.64724570000004,4.22255320000005],[97.64425070000004,4.219561200000044],[97.63685880000008,4.225726400000042],[97.62876730000005,4.228687100000059],[97.62205150000005,4.245113600000025],[97.61986570000005,4.246933500000068],[97.60637050000008,4.253906400000062],[97.60184720000007,4.253719100000069],[97.59453310000004,4.249884],[97.592588,4.239609700000074],[97.58575280000008,4.229349400000046],[97.58558060000007,4.225706600000024],[97.58284630000009,4.223671300000035],[97.58136940000009,4.217398600000024],[97.57626240000008,4.210820800000022],[97.576925,4.206462900000076],[97.57360080000007,4.200926400000071],[97.57575090000006,4.196750400000042],[97.57361810000003,4.191432],[97.57797,4.187498800000071],[97.57666680000005,4.182874],[97.57336710000004,4.186023200000022],[97.56931840000004,4.187339700000052],[97.56123130000003,4.184412300000076],[97.55656160000007,4.18855190000005],[97.54740550000008,4.192771400000026],[97.53077850000005,4.193534600000021],[97.52155220000009,4.188133400000027],[97.51955170000008,4.188652900000022],[97.51515950000004,4.186306700000046],[97.512888,4.178094300000055],[97.50543340000007,4.166430100000071],[97.50453180000005,4.157921],[97.50000010000008,4.155832100000055],[97.46565250000003,4.159090300000059],[97.41968460000004,4.176353200000051],[97.40846570000008,4.182219700000076],[97.40403250000008,4.180411500000048],[97.39947440000003,4.183264200000053],[97.39598440000003,4.187735100000054],[97.37578750000006,4.200118400000065],[97.36882070000007,4.203417200000047],[97.36032550000004,4.204227700000047],[97.35683720000009,4.209138800000062],[97.356464,4.210032],[97.33583120000009,4.197345],[97.31731690000004,4.188919400000032],[97.28920120000004,4.181380200000035],[97.27947040000004,4.173725800000057],[97.27305080000008,4.170486400000073],[97.26202360000008,4.167989400000067],[97.25162880000005,4.170008900000028],[97.24658140000008,4.175695500000074],[97.24215850000007,4.189446400000065],[97.22486150000003,4.212609100000066],[97.22298860000006,4.217275400000062],[97.22254410000005,4.225027400000045],[97.21724360000007,4.235498200000052],[97.193648,4.257613400000025],[97.17718450000007,4.262660100000062],[97.17033330000004,4.271984800000041],[97.16150940000006,4.28084130000002],[97.14927060000008,4.268894300000056],[97.13953390000006,4.263925800000038],[97.12830730000007,4.255406],[97.11000370000005,4.249878800000033],[97.10337120000008,4.246315100000061],[97.06707670000009,4.219854500000054],[97.05236630000007,4.217955600000039],[97.01843870000005,4.207442900000046],[97.01340960000005,4.205387700000074],[97.003259,4.197865500000034],[96.997672,4.198734600000023],[96.99196080000007,4.197244700000056],[96.99183660000006,4.192775100000063],[96.99022260000004,4.190043600000024],[96.98612540000005,4.190291900000034],[96.97755860000007,4.187312200000065],[96.96886760000007,4.186443100000076],[96.95049250000005,4.18656720000007],[96.94213320000006,4.190775300000041],[96.93914030000008,4.194671600000049],[96.92216750000006,4.199172100000055],[96.90981040000008,4.213394100000073],[96.88703550000008,4.221153600000036],[96.87813350000005,4.238110400000039],[96.86214780000006,4.244878200000073],[96.85344810000004,4.253684200000066],[96.84422990000007,4.268417300000067],[96.82898060000008,4.281871600000045],[96.82055870000005,4.285382700000071],[96.80458510000005,4.284117700000024],[96.79327670000004,4.285503100000028],[96.79745840000004,4.267518300000063],[96.79524460000005,4.241269600000066],[96.80222870000006,4.231473],[96.80214230000007,4.223401400000057],[96.78601080000004,4.200886800000035],[96.77731430000006,4.192824800000039],[96.75833640000008,4.178918700000054],[96.75131020000003,4.170623],[96.73462880000005,4.13437870000007],[96.72482160000004,4.096891700000072],[96.73398880000008,4.095966200000021],[96.73913380000005,4.091537],[96.74707610000007,4.094286300000022],[96.747899,4.088026900000045],[96.75596240000004,4.083302600000025],[96.76156610000004,4.078532100000075],[96.76280260000004,4.075522600000056],[96.78850160000007,4.055113900000038],[96.796523,4.041561700000045],[96.80195820000006,4.026774900000021],[96.80296730000003,3.997615400000029],[96.80470940000004,3.990153600000042],[96.80911260000005,3.983135900000036],[96.83598890000007,3.95939020000003],[96.88256580000007,3.950874300000066],[96.96250290000006,3.945020100000022],[96.980414,3.942374100000052],[96.993923,3.946747400000049],[96.999919,3.950137300000051],[97.00174010000006,3.952648200000056],[97.014333,3.958669600000064],[97.042831,3.960999600000036],[97.06680830000005,3.95897530000002],[97.076873,3.95257950000007],[97.098356,3.948876900000073],[97.10238140000007,3.946501700000056],[97.11398130000003,3.933995100000061],[97.11697760000004,3.928560600000026],[97.11784490000008,3.921959700000059],[97.11573180000005,3.911638900000071],[97.10785880000003,3.892204800000059],[97.10923740000004,3.87515060000004],[97.11352460000006,3.864155500000038],[97.10678030000008,3.857123600000023],[97.10558920000005,3.844771200000025],[97.11398710000003,3.824818600000071],[97.13576070000005,3.785210200000051],[97.15358140000006,3.74558630000007]]]},"properties":{"shapeName":"Gayo Lues","shapeISO":"","shapeID":"22746128B66411348021195","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[115.2421786000001,-8.603149899999949],[115.24461330000008,-8.6123049],[115.25558820000003,-8.622910099999956],[115.256024,-8.628212699999949],[115.26015860000007,-8.636071399999935],[115.26448160000007,-8.63743169999998],[115.2659569000001,-8.641523699999937],[115.27035250000006,-8.641175799999928],[115.27458160000003,-8.650148],[115.29822930000012,-8.632153],[115.30242210000006,-8.62461589999998],[115.30621090000011,-8.621554499999945],[115.322292,-8.613631],[115.32249460000003,-8.611225199999978],[115.32646840000007,-8.606078699999955],[115.34632570000008,-8.5944763],[115.34951410000008,-8.590960699999926],[115.35165560000007,-8.585029899999938],[115.35550240000009,-8.58106909999998],[115.36266780000005,-8.576842099999965],[115.370629,-8.574912499999925],[115.37089540000011,-8.566415799999959],[115.36931550000008,-8.566449099999943],[115.36906560000011,-8.563290399999971],[115.36757330000012,-8.563972599999943],[115.36809870000002,-8.561622599999964],[115.3650434000001,-8.561848699999928],[115.36658820000002,-8.559888],[115.364761,-8.557129499999974],[115.36373090000006,-8.549866399999928],[115.36073360000012,-8.54764709999995],[115.36374950000004,-8.545100099999956],[115.36234350000007,-8.53936],[115.36374910000006,-8.536445],[115.36058480000008,-8.532348599999978],[115.3603458,-8.524345399999959],[115.3577696000001,-8.523438399999975],[115.35762760000011,-8.520949599999938],[115.3448158000001,-8.524886699999968],[115.33635460000005,-8.523568],[115.33452000000011,-8.52141219999993],[115.33483590000003,-8.515706699999953],[115.3318322,-8.515467599999965],[115.3291316000001,-8.513087499999926],[115.32976350000001,-8.510395],[115.33241920000012,-8.509478199999933],[115.32966360000012,-8.507955599999946],[115.3300766000001,-8.504865699999925],[115.32745920000002,-8.498364799999933],[115.3273445000001,-8.4941965],[115.3241647000001,-8.490729699999974],[115.32779940000012,-8.484619299999963],[115.327698,-8.477285299999949],[115.32486190000009,-8.46898559999994],[115.3272316,-8.46523419999994],[115.32516490000012,-8.461734099999944],[115.32503440000005,-8.45731369999993],[115.32334820000005,-8.455950199999961],[115.32464570000002,-8.452191199999959],[115.32394380000005,-8.449726],[115.32060980000006,-8.444683],[115.32078660000002,-8.440384199999926],[115.31822340000008,-8.439401399999952],[115.3173766000001,-8.43387619999993],[115.31929460000003,-8.433518599999957],[115.32282850000001,-8.428748],[115.330834,-8.414152],[115.330383,-8.403422699999965],[115.33555960000001,-8.389175799999975],[115.33711420000009,-8.38002119999993],[115.33468220000009,-8.380022699999927],[115.33332060000009,-8.377504],[115.33615840000004,-8.3737906],[115.33660860000009,-8.366317599999945],[115.32568330000004,-8.364396],[115.32563790000006,-8.362431499999957],[115.330275,-8.357934599999965],[115.32980780000003,-8.352280699999937],[115.33100700000011,-8.350150199999973],[115.33097610000004,-8.345587199999954],[115.32734440000002,-8.3383207],[115.32848740000009,-8.330656499999975],[115.32241190000002,-8.328289],[115.32065850000004,-8.332105899999931],[115.31595260000006,-8.336579399999948],[115.31521780000003,-8.329567299999951],[115.3081595000001,-8.327791499999933],[115.3047494000001,-8.331490199999962],[115.30396580000001,-8.33445759999995],[115.29191030000004,-8.332269799999949],[115.29430450000007,-8.328188799999964],[115.29093990000001,-8.325457099999937],[115.2907226000001,-8.317406199999937],[115.28414470000007,-8.314125199999978],[115.27742680000006,-8.319800799999939],[115.27094690000001,-8.322609199999931],[115.264109,-8.332153399999982],[115.26220220000005,-8.332761299999959],[115.26431360000004,-8.324553299999934],[115.26283510000007,-8.319144499999936],[115.25656460000005,-8.31355469999994],[115.25103330000002,-8.314339599999926],[115.24712250000005,-8.31798159999994],[115.2484204000001,-8.321245499999975],[115.24492080000005,-8.322120799999936],[115.24657630000002,-8.3248757],[115.24549360000003,-8.327927],[115.24265260000004,-8.329126199999962],[115.24793470000009,-8.332380399999977],[115.24712120000004,-8.334273],[115.249272,-8.338481799999954],[115.24780650000002,-8.339398399999936],[115.24809180000011,-8.341689299999928],[115.2442751000001,-8.340937399999973],[115.24363740000001,-8.343126499999926],[115.24136670000007,-8.343218499999978],[115.24208370000008,-8.345984199999975],[115.23957310000003,-8.347108599999956],[115.23862150000002,-8.351171399999942],[115.237285,-8.3517392],[115.23781250000002,-8.353562799999963],[115.23419060000003,-8.357866099999967],[115.23680320000005,-8.364904599999932],[115.23316980000004,-8.369487399999969],[115.23424340000008,-8.369396499999937],[115.2350987000001,-8.37419609999995],[115.2319007000001,-8.378626599999961],[115.2313534000001,-8.383956599999976],[115.22828390000006,-8.383956599999976],[115.22539530000006,-8.38823489999993],[115.22522220000008,-8.3914017],[115.22812050000005,-8.394951699999979],[115.22750660000008,-8.401816399999973],[115.228939,-8.407238],[115.22772070000008,-8.408941699999957],[115.22989170000005,-8.411263899999938],[115.22858210000004,-8.4157231],[115.230751,-8.418783099999928],[115.23041660000001,-8.425732099999948],[115.23307590000002,-8.427379199999962],[115.23325880000004,-8.428953899999954],[115.231203,-8.433222599999965],[115.2320016000001,-8.435707699999966],[115.23038430000008,-8.43697179999998],[115.22960560000001,-8.444998],[115.23106960000007,-8.4483447],[115.23167630000012,-8.447099099999946],[115.23270780000007,-8.448152],[115.231229,-8.450294699999972],[115.23454120000008,-8.452545699999973],[115.234043,-8.454488899999944],[115.23554060000004,-8.455001299999935],[115.23635580000007,-8.458640699999933],[115.2385825,-8.459606599999972],[115.23912360000008,-8.462814099999946],[115.2422788,-8.465417199999933],[115.24117710000007,-8.4667039],[115.242549,-8.469328299999972],[115.24107480000009,-8.470819199999937],[115.24414940000008,-8.472136399999954],[115.24244690000012,-8.472763],[115.24162210000009,-8.475655399999937],[115.24475110000003,-8.478046799999959],[115.24364930000002,-8.4836491],[115.24152210000011,-8.486185],[115.24335430000008,-8.487850599999945],[115.2400599,-8.491758599999969],[115.24160660000007,-8.492918599999939],[115.2417613,-8.49594049999996],[115.2430164000001,-8.496136799999931],[115.24314130000005,-8.499759499999925],[115.24014710000006,-8.500215699999956],[115.23777880000011,-8.5031825],[115.23839490000012,-8.508915],[115.23583930000007,-8.5125568],[115.23316240000008,-8.512725699999976],[115.23072900000011,-8.518038399999966],[115.23162650000006,-8.523166299999957],[115.2297522,-8.52532789999998],[115.22996490000003,-8.527472099999954],[115.2329952,-8.529342799999938],[115.2311145000001,-8.538288699999953],[115.233437,-8.538913599999944],[115.23405480000008,-8.544912],[115.23804360000008,-8.546737199999939],[115.24074140000005,-8.550897899999939],[115.24142510000001,-8.559324],[115.24487810000005,-8.558336599999961],[115.24630790000003,-8.568747599999938],[115.249168,-8.570600399999933],[115.24951410000006,-8.585261499999945],[115.24707620000004,-8.589761],[115.246257,-8.596249399999977],[115.2421786000001,-8.603149899999949]]]},"properties":{"shapeName":"Gianyar","shapeISO":"","shapeID":"22746128B77752572399221","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[122.64739670000006,0.521343],[122.65202090000002,0.517373300000031],[122.651765,0.515053700000067],[122.659772,0.515297700000076],[122.66451840000002,0.51250280000005],[122.67386190000002,0.511997100000031],[122.67731130000004,0.510452900000075],[122.676071,0.507924800000069],[122.67707050000001,0.506672],[122.68036860000007,0.506723900000054],[122.68487280000011,0.504374900000073],[122.6885572000001,0.493324100000052],[122.69078680000007,0.490538600000036],[122.69251550000001,0.473166900000024],[122.69693460000008,0.475830600000052],[122.69695370000011,0.478469],[122.70076290000009,0.48131],[122.70644930000003,0.478830500000072],[122.70992930000011,0.481599700000061],[122.71922640000003,0.482986400000073],[122.72345020000012,0.485434],[122.72664370000007,0.482528700000046],[122.72947440000007,0.484523400000057],[122.73255630000006,0.483561],[122.73386170000003,0.485563100000036],[122.73756570000012,0.486328700000058],[122.74350990000005,0.480565],[122.75004940000008,0.484742],[122.75862330000007,0.483162900000025],[122.76329260000011,0.484838600000046],[122.77054240000007,0.483400800000027],[122.7751846000001,0.488349500000027],[122.78616290000002,0.494552500000054],[122.79868240000008,0.493916],[122.80433380000011,0.495068200000048],[122.809822,0.492507300000057],[122.8123802,0.489593100000036],[122.81561950000003,0.488868100000047],[122.82219,0.494362500000022],[122.82221660000005,0.49805850000007],[122.82358050000005,0.497570100000075],[122.82353360000002,0.494725],[122.8280132000001,0.495817500000044],[122.84691840000005,0.492107200000021],[122.86421210000003,0.492449700000066],[122.8663044000001,0.490768600000024],[122.88266880000003,0.48861450000004],[122.88815560000012,0.485768600000029],[122.89610560000006,0.490789],[122.90357780000011,0.492811300000028],[122.90723960000003,0.492261700000029],[122.91331260000004,0.486391300000037],[122.9159939000001,0.486951],[122.91581,0.491286500000058],[122.91803240000002,0.49238680000002],[122.92663630000004,0.486336100000074],[122.929293,0.485892800000045],[122.9357281,0.486711700000058],[122.93979390000004,0.489308],[122.94172680000008,0.488300700000025],[122.94529180000006,0.490125100000057],[122.94742310000004,0.489349100000027],[122.95772270000009,0.491006800000036],[122.95875830000011,0.492749200000048],[122.96156040000005,0.493259],[122.96363880000001,0.491735800000072],[122.96604980000006,0.492508],[122.969822,0.49036],[122.97389050000004,0.490289400000052],[122.97636710000006,0.486480100000051],[122.977783,0.486324400000058],[122.97912960000008,0.488595500000031],[122.98105160000011,0.48655320000006],[122.98588860000007,0.486460800000032],[122.98895030000006,0.48480840000002],[123.00011250000011,0.495383300000071],[123.00252560000001,0.493505200000072],[123.00342620000004,0.489486],[123.0055804000001,0.491026600000055],[123.0103031000001,0.489018900000076],[123.01270190000002,0.490937300000041],[123.01352770000005,0.49389670000005],[123.0178347000001,0.496587100000056],[123.02203190000012,0.495538],[123.0235063,0.492527400000029],[123.027543,0.491411600000049],[123.0293646,0.495119400000021],[123.03517450000004,0.497783200000072],[123.04230140000004,0.496061400000031],[123.04456730000004,0.50033970000004],[123.04162030000009,0.504609100000039],[123.03895860000011,0.513290700000027],[123.02568870000005,0.522986400000036],[123.01453320000007,0.524435400000073],[123.01186230000008,0.526159300000074],[123.00533530000007,0.533637900000031],[123.00414050000006,0.537184],[122.99681840000005,0.542429100000049],[122.994924,0.551864200000068],[122.99939350000011,0.550115800000071],[123.00110660000007,0.553010500000028],[123.0044339000001,0.554403100000059],[123.00558760000001,0.553547200000025],[123.00650960000007,0.55480840000007],[123.01373990000002,0.549788400000068],[123.02073330000007,0.548541800000066],[123.02336560000003,0.549345600000038],[123.02387610000005,0.547899500000028],[123.026136,0.549163600000043],[123.02720520000003,0.547541700000068],[123.0305902,0.546827800000074],[123.02991220000001,0.552212],[123.02554250000003,0.554469600000061],[123.02453560000004,0.558264300000076],[123.02699690000009,0.56367890000007],[123.02920210000002,0.56333120000005],[123.03403220000007,0.566458800000021],[123.0357011000001,0.569002800000021],[123.0345218000001,0.572529300000042],[123.03860780000002,0.571721600000046],[123.03914610000004,0.575622600000031],[123.04108780000001,0.573903100000052],[123.04380270000001,0.574233700000036],[123.05133590000003,0.583043900000064],[123.053261,0.587955],[123.0569862000001,0.586701300000072],[123.0611024000001,0.589081600000043],[123.06733550000001,0.597778600000026],[123.06967480000003,0.607163400000047],[123.0712291000001,0.608575700000074],[123.07401450000009,0.608166100000062],[123.06870820000006,0.611265900000035],[123.06528870000011,0.611301600000047],[123.06067710000002,0.615743200000054],[123.05743120000011,0.615162800000064],[123.04576440000005,0.620329200000072],[123.03658830000006,0.628227400000071],[123.04266630000006,0.634051],[123.0556252,0.652539200000035],[123.06200080000008,0.668800500000032],[123.07078260000003,0.675226800000075],[123.074153,0.683662500000025],[123.07323380000003,0.687971600000026],[123.0768273000001,0.689998500000058],[123.07816480000008,0.694729700000039],[123.0805937,0.695011800000032],[123.07951730000002,0.699635],[123.07564470000011,0.704401],[123.07825900000012,0.707524400000068],[123.07570880000003,0.712855500000046],[123.07609930000001,0.717781400000035],[123.07895950000011,0.717895300000066],[123.07653040000002,0.721772600000065],[123.07882540000003,0.728008300000056],[123.07378470000003,0.742076200000042],[123.076648,0.747509700000023],[123.07642710000005,0.755608800000061],[123.0736078000001,0.763711800000067],[123.07650910000007,0.769801200000074],[123.07578990000002,0.771463200000028],[123.07811450000008,0.773182],[123.06601820000003,0.777459400000055],[123.063555,0.780623200000036],[123.06974290000005,0.796083900000042],[123.069862,0.803079900000057],[123.05581170000005,0.793564900000035],[123.04792170000007,0.791619500000024],[123.04459020000002,0.788449400000047],[123.03849830000001,0.788363200000049],[123.0373287000001,0.782323700000063],[123.0256121000001,0.781448700000055],[123.0214453000001,0.783186700000044],[123.0158374,0.790981200000033],[123.0142796,0.790795700000047],[123.00306750000004,0.780951100000038],[123.001698,0.774915600000043],[122.99736650000011,0.769078400000069],[122.98508970000012,0.762538400000039],[122.98101660000009,0.755412],[122.9785908,0.746509200000048],[122.97760290000008,0.740423600000042],[122.9787692000001,0.730559200000073],[122.97520280000003,0.725793800000019],[122.96943180000005,0.72283230000005],[122.96721040000011,0.716299700000036],[122.96567360000006,0.71479770000002],[122.95247230000007,0.711254900000029],[122.9479636000001,0.711964200000068],[122.94112730000006,0.710492400000021],[122.93638480000004,0.710983400000032],[122.9326099000001,0.713108500000033],[122.93107690000011,0.712470400000029],[122.93086050000011,0.705017300000065],[122.92588060000003,0.693690300000071],[122.9166351,0.689576100000068],[122.913047,0.693865500000072],[122.90637820000006,0.695799600000043],[122.90064140000004,0.699454500000058],[122.90415990000008,0.712891600000034],[122.904038,0.724877500000048],[122.90652960000011,0.731127900000047],[122.90732850000006,0.744030800000075],[122.90657690000012,0.750122200000021],[122.90184390000002,0.758363400000064],[122.89391080000007,0.761671400000068],[122.88183320000007,0.761908300000073],[122.8804593000001,0.763931300000024],[122.87895330000003,0.763398300000063],[122.876538,0.765070500000036],[122.84823080000001,0.760676200000034],[122.84463460000006,0.762359700000047],[122.83821240000009,0.760111600000073],[122.83050890000004,0.755003400000021],[122.8257387000001,0.754570300000069],[122.82115690000012,0.752148300000044],[122.80569120000007,0.751770400000055],[122.801521,0.753636],[122.79826630000002,0.760917300000074],[122.7958258000001,0.761932700000045],[122.79041370000004,0.761886300000072],[122.77778250000006,0.757839100000069],[122.77497690000007,0.759722400000044],[122.77407910000011,0.765395100000035],[122.77273050000008,0.766357300000038],[122.766972,0.765424900000028],[122.76468980000004,0.76296670000005],[122.75567060000003,0.764725200000044],[122.74447580000003,0.77478080000003],[122.7349752,0.778453300000024],[122.730421,0.784718100000021],[122.70954460000007,0.791616100000056],[122.7074103000001,0.793780300000037],[122.70838620000006,0.797072400000047],[122.70743960000004,0.799318500000027],[122.70481880000011,0.798704900000075],[122.70165070000007,0.800254800000062],[122.6989718000001,0.809548800000073],[122.69541980000008,0.81089030000004],[122.68426820000002,0.820829200000048],[122.6760279,0.82336360000005],[122.667748,0.830903300000045],[122.66182640000011,0.83143160000003],[122.66028920000008,0.833771200000058],[122.65737250000006,0.834561800000074],[122.64954940000007,0.840512400000023],[122.64870650000012,0.844013800000027],[122.64473440000006,0.848471200000063],[122.63411810000002,0.847208700000067],[122.62088590000008,0.852459500000066],[122.609071,0.852360300000043],[122.60167580000007,0.847457],[122.59983920000002,0.84775430000002],[122.59577370000011,0.862819600000023],[122.58752470000002,0.869843500000059],[122.58250320000002,0.872252100000026],[122.5752887000001,0.873686600000042],[122.56262960000004,0.871096400000056],[122.55313860000001,0.874952500000063],[122.54401730000006,0.87398150000007],[122.53594750000002,0.871116400000062],[122.52456250000012,0.875787400000036],[122.51459840000007,0.883474],[122.5112352000001,0.884187800000063],[122.50236060000009,0.883197600000074],[122.48880610000003,0.88507050000004],[122.48485040000003,0.883873400000027],[122.47923150000008,0.877961600000049],[122.47370760000001,0.87753710000004],[122.459178,0.887534900000048],[122.45619320000003,0.888121900000044],[122.45124110000006,0.885054900000057],[122.438777,0.88839820000004],[122.42485760000011,0.885126300000024],[122.41860440000005,0.885163400000067],[122.41154050000011,0.888067],[122.4007583,0.89636930000006],[122.39312490000009,0.897824700000058],[122.38338830000009,0.901843900000074],[122.35987790000001,0.906793300000061],[122.35633840000003,0.91629990000007],[122.35122600000011,0.922069300000032],[122.33430870000007,0.921096500000033],[122.3132041,0.931015600000023],[122.30854610000006,0.930523900000026],[122.30550290000008,0.928057900000056],[122.29987620000009,0.916651200000047],[122.2953447000001,0.912595100000033],[122.27920730000005,0.911668300000031],[122.27527420000001,0.913447],[122.26969420000012,0.919984800000066],[122.26001410000003,0.925575300000048],[122.25527810000006,0.923137300000064],[122.2480988000001,0.913956700000028],[122.24475840000002,0.900582900000074],[122.24771410000005,0.886628700000074],[122.254946,0.873732300000029],[122.25365670000008,0.870882900000026],[122.25100540000005,0.869460900000036],[122.25223770000002,0.865301600000066],[122.25484370000004,0.86475310000003],[122.25540680000006,0.863021100000026],[122.25195250000002,0.859125],[122.25221150000004,0.857031400000039],[122.24819040000011,0.855347800000061],[122.247633,0.85363],[122.2524820000001,0.851087],[122.253113,0.847149600000023],[122.25764350000009,0.847822800000074],[122.25975690000007,0.845553800000062],[122.26415390000011,0.844244500000059],[122.26074480000011,0.84321650000004],[122.25669620000008,0.839204500000051],[122.25469,0.839264900000046],[122.25649220000003,0.836063200000069],[122.25508030000003,0.833977100000027],[122.25519430000008,0.836576],[122.25292130000003,0.835957],[122.25277620000008,0.833709100000021],[122.25028750000001,0.831442600000059],[122.2512551000001,0.829115400000035],[122.24937840000007,0.828102200000046],[122.24983720000012,0.826322300000072],[122.25270730000011,0.826906300000076],[122.25389030000008,0.825089600000069],[122.25215650000007,0.822756800000036],[122.24762220000002,0.820801],[122.24680440000009,0.816260700000043],[122.2478049,0.814653200000066],[122.244982,0.813216500000067],[122.24546730000009,0.811858],[122.24793120000004,0.812398100000053],[122.24811350000004,0.809568700000057],[122.25054910000006,0.807363],[122.24963090000006,0.803743],[122.252815,0.801284700000053],[122.25275590000001,0.799826600000074],[122.25033890000009,0.799575400000037],[122.25266150000004,0.795091700000057],[122.25118350000002,0.790990100000045],[122.25583390000008,0.794932600000038],[122.25822660000006,0.79171180000003],[122.26129220000007,0.791785900000036],[122.26776930000005,0.784441],[122.27444070000001,0.784836400000074],[122.27221910000003,0.783448600000042],[122.27228130000003,0.781098200000031],[122.27843410000003,0.780419600000073],[122.2805565000001,0.781752600000061],[122.28245020000008,0.77971180000003],[122.28423260000011,0.782410600000048],[122.2838756000001,0.784505900000056],[122.29053060000001,0.785622600000067],[122.29213940000011,0.783800300000053],[122.2949192000001,0.786933200000021],[122.29721590000008,0.785612900000046],[122.30262420000008,0.786213100000055],[122.3045833000001,0.787963800000057],[122.30166740000004,0.789259500000071],[122.31096660000003,0.793778900000063],[122.31597340000008,0.794445800000062],[122.31627950000006,0.796234200000072],[122.32040530000006,0.796205400000019],[122.32161450000001,0.794541300000049],[122.32506080000007,0.795247700000061],[122.3266671,0.792854900000066],[122.32782580000003,0.794617600000038],[122.33227750000003,0.792972500000076],[122.33469580000008,0.794565200000022],[122.33639770000002,0.792521200000067],[122.34072120000008,0.794948200000022],[122.342683,0.792487600000072],[122.34948960000008,0.792053100000032],[122.35189330000003,0.788647200000071],[122.356062,0.787204900000063],[122.35862830000008,0.782598500000063],[122.36437650000005,0.78299590000006],[122.36971470000003,0.779717600000026],[122.37358260000008,0.780934400000035],[122.37660960000005,0.77823630000006],[122.38046810000003,0.780757100000073],[122.3807402000001,0.777414400000055],[122.3907455000001,0.770693],[122.39232590000006,0.770358200000032],[122.39466340000001,0.77297260000006],[122.39414510000006,0.767432800000051],[122.39860340000007,0.761105400000019],[122.4023496000001,0.763621400000034],[122.4086105,0.757924500000058],[122.40887120000002,0.763799900000038],[122.410238,0.764118900000028],[122.41517440000007,0.762015200000064],[122.420557,0.75701220000002],[122.42746330000011,0.759796800000061],[122.4302302000001,0.755460400000061],[122.43259660000001,0.758802200000048],[122.43684270000006,0.75739550000003],[122.43640610000011,0.761474400000054],[122.4398311000001,0.761512],[122.44362150000006,0.765251700000022],[122.44775750000008,0.761807500000032],[122.449395,0.757077700000025],[122.45302560000005,0.754306600000064],[122.45697990000008,0.756626200000028],[122.46137380000005,0.756543800000031],[122.46452820000002,0.758247600000061],[122.47018040000012,0.75513060000003],[122.46868330000007,0.75071070000007],[122.4775747000001,0.742873300000042],[122.47944120000011,0.743363700000032],[122.47893720000002,0.746684900000048],[122.48085670000012,0.747434],[122.48058090000006,0.737657100000035],[122.48172470000009,0.735026700000049],[122.48437250000006,0.736432600000057],[122.485607,0.741826300000071],[122.48949710000011,0.73495680000002],[122.491923,0.73565160000004],[122.4920737000001,0.739199600000063],[122.4932745000001,0.740019200000063],[122.49791850000008,0.736115300000051],[122.50149210000006,0.735491500000023],[122.50166980000006,0.733862400000021],[122.49813130000007,0.730077],[122.493423,0.728394],[122.49722570000006,0.724904300000048],[122.49706050000009,0.719553200000064],[122.49913630000003,0.720292400000062],[122.50244220000002,0.718156200000067],[122.50528780000002,0.718494700000065],[122.50395380000009,0.715747300000032],[122.50681210000005,0.708795900000041],[122.51098390000004,0.714624],[122.512193,0.713514300000043],[122.51248930000008,0.70820580000003],[122.51418690000003,0.706804500000032],[122.51921080000011,0.712460800000031],[122.52159490000008,0.70973390000006],[122.52035350000006,0.706533300000046],[122.52127980000012,0.704606100000035],[122.52598480000006,0.706436500000052],[122.52722840000001,0.703060500000049],[122.53237420000005,0.700451800000053],[122.54204240000001,0.70081220000003],[122.5422175000001,0.698495900000069],[122.53880790000005,0.697050900000022],[122.54034750000005,0.694423300000039],[122.54632,0.70076750000004],[122.547525,0.699182400000041],[122.546947,0.691461],[122.55157970000005,0.690906600000062],[122.55615870000008,0.683371400000055],[122.563936,0.677337400000056],[122.56686130000003,0.676583900000026],[122.5629934000001,0.672922300000039],[122.56570860000011,0.670431600000029],[122.56893810000008,0.66973710000002],[122.56972750000011,0.66638260000002],[122.57200090000003,0.664776300000028],[122.5705809000001,0.663110500000073],[122.56841670000006,0.665146600000071],[122.56662560000007,0.664595500000075],[122.56903350000005,0.660157800000036],[122.57147670000006,0.659469],[122.5784268000001,0.662409],[122.57817540000008,0.656706500000041],[122.57987960000003,0.655776200000048],[122.58119770000008,0.659785200000044],[122.58615250000003,0.662589500000024],[122.58464490000006,0.657054300000027],[122.5864815000001,0.656071300000065],[122.58765280000011,0.659040300000072],[122.58917280000003,0.658854],[122.58831430000009,0.653255],[122.59244230000002,0.652959800000076],[122.59431130000007,0.656892],[122.59481360000007,0.653275700000052],[122.59796040000003,0.651225700000055],[122.59488450000003,0.64957140000007],[122.5949802,0.647811700000034],[122.5979099000001,0.647412100000054],[122.599971,0.650100400000042],[122.60146490000011,0.649702800000057],[122.59977230000004,0.642941600000029],[122.5954316000001,0.639025],[122.60390490000009,0.64082970000004],[122.60258930000009,0.635674300000062],[122.60658690000002,0.632464700000071],[122.6030144,0.632518300000072],[122.60200220000002,0.631235900000036],[122.60520880000001,0.628120700000068],[122.6058743000001,0.624935300000061],[122.60816280000006,0.623662200000069],[122.61161530000004,0.607226400000059],[122.61755490000007,0.600870900000075],[122.617385,0.596567200000038],[122.6196083000001,0.595819900000038],[122.62212780000004,0.597267800000054],[122.62329430000011,0.592579100000023],[122.63149190000001,0.589331500000071],[122.63123130000008,0.587145600000042],[122.62780140000007,0.583634400000051],[122.63096380000002,0.583755300000064],[122.63240270000006,0.581996300000071],[122.63132960000007,0.577612300000055],[122.6340550000001,0.576221600000054],[122.636927,0.568075],[122.63946150000004,0.566465300000061],[122.63917860000004,0.563478700000076],[122.63331940000012,0.561266800000055],[122.63163630000008,0.553354],[122.63395150000008,0.548613],[122.6283896000001,0.540018800000041],[122.62940540000011,0.534206],[122.6369767000001,0.534666700000059],[122.638251,0.530589900000052],[122.64332560000003,0.527309900000034],[122.64739670000006,0.521343]]]},"properties":{"shapeName":"Gorontalo","shapeISO":"","shapeID":"22746128B50921778065647","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[122.80692990000011,0.865005500000052],[122.80506770000011,0.864051300000028],[122.8095336,0.860787200000061],[122.80692990000011,0.865005500000052]]],[[[122.80063880000012,0.86875660000004],[122.79947560000005,0.867803800000047],[122.80297270000005,0.86655920000004],[122.80063880000012,0.86875660000004]]],[[[122.71961460000011,0.883442200000047],[122.71839910000006,0.882634],[122.71926120000012,0.881111400000066],[122.7205431000001,0.88243970000002],[122.71961460000011,0.883442200000047]]],[[[122.74123020000002,0.885420300000021],[122.73858710000002,0.885199700000044],[122.74203850000004,0.882815300000061],[122.74239770000008,0.885520600000063],[122.74123020000002,0.885420300000021]]],[[[122.8577729000001,0.899573400000065],[122.85227850000001,0.896780900000067],[122.85456130000011,0.896511300000043],[122.856456,0.894071300000064],[122.86131790000002,0.894778600000052],[122.86085620000006,0.893351900000027],[122.86299230000009,0.891632400000049],[122.8644015000001,0.892826500000069],[122.86565360000009,0.891952100000026],[122.86663610000005,0.893484300000068],[122.86766880000005,0.891288600000053],[122.86866720000012,0.893633300000033],[122.87476250000009,0.893298300000026],[122.87788510000007,0.892663200000072],[122.8789958000001,0.89005080000004],[122.88063550000004,0.889630600000032],[122.88359260000004,0.885088200000041],[122.88276570000005,0.883242400000029],[122.88407560000007,0.87812370000006],[122.87849110000002,0.870246100000031],[122.87826640000003,0.864519700000073],[122.8810079000001,0.863393300000041],[122.882282,0.859326700000054],[122.88697720000005,0.858245400000044],[122.89153550000003,0.853702300000066],[122.89558660000012,0.854408300000046],[122.89414570000008,0.855124],[122.8947955000001,0.857074500000067],[122.8957855000001,0.856253600000059],[122.89628020000009,0.860900700000059],[122.89835510000012,0.860934400000076],[122.898209,0.867782400000067],[122.896272,0.870203700000047],[122.89436360000002,0.86956170000002],[122.89383320000002,0.872017300000039],[122.88948040000002,0.874014700000032],[122.89335050000011,0.886717400000066],[122.89127380000002,0.890366500000027],[122.88614540000003,0.890423],[122.88458320000007,0.892607600000019],[122.88483880000001,0.895280100000036],[122.88299450000011,0.896742800000027],[122.8771316000001,0.897574700000064],[122.86978310000006,0.893891600000075],[122.86549620000005,0.898899300000039],[122.8577729000001,0.899573400000065]]],[[[122.77159110000002,0.913531100000057],[122.76996760000009,0.913840400000026],[122.76969670000005,0.912077400000044],[122.76686240000004,0.910965200000021],[122.75853610000001,0.910624900000073],[122.7563517000001,0.909085400000038],[122.75626670000008,0.90550380000002],[122.75989570000002,0.901354200000071],[122.7631520000001,0.90062910000006],[122.76271170000007,0.899144400000068],[122.76766820000012,0.896811800000023],[122.77078110000002,0.892666200000065],[122.77128940000011,0.889587200000051],[122.77569030000006,0.891511300000047],[122.77748940000004,0.885547700000075],[122.78204830000004,0.881880700000067],[122.78414710000004,0.88196030000006],[122.78652330000011,0.875796],[122.78791290000004,0.876655],[122.78821790000006,0.874958700000036],[122.79125480000005,0.874037300000055],[122.79735740000001,0.87737930000003],[122.79972110000006,0.87369990000002],[122.80658160000007,0.874526],[122.80689450000011,0.878803600000026],[122.80896840000003,0.880212400000062],[122.80609160000006,0.881141700000057],[122.80602920000001,0.883447800000056],[122.80872180000006,0.883864600000038],[122.80745690000003,0.887078400000064],[122.81175130000008,0.887861],[122.8134103000001,0.892368200000021],[122.81055210000011,0.891649500000028],[122.80958020000003,0.894428700000049],[122.80785710000009,0.894730600000059],[122.80206650000002,0.891215700000032],[122.79791200000011,0.892626],[122.79866760000004,0.896721800000023],[122.79621510000004,0.898643500000048],[122.79348990000005,0.895503500000075],[122.791568,0.899730200000022],[122.79263460000004,0.901256200000034],[122.788031,0.903500800000074],[122.7812229000001,0.903637400000036],[122.78053380000006,0.901055300000053],[122.77785580000011,0.89947520000004],[122.77586930000007,0.901102200000025],[122.77467160000003,0.90749820000002],[122.77659620000009,0.909679900000071],[122.77159110000002,0.913531100000057]]],[[[122.52725940000005,0.987426200000073],[122.52511940000011,0.988701800000058],[122.52281860000005,0.993198600000028],[122.52105360000007,0.991040200000043],[122.5221140000001,0.98655830000007],[122.53026480000005,0.986396500000069],[122.52725940000005,0.987426200000073]]],[[[122.4990494000001,0.992000200000064],[122.49769630000003,0.993807900000036],[122.495797,0.992288100000053],[122.49738800000011,0.990273400000035],[122.4990494000001,0.992000200000064]]],[[[122.50651040000002,1.004002700000058],[122.50641530000007,1.002583],[122.50752710000006,1.003789600000061],[122.50651040000002,1.004002700000058]]],[[[122.437084,1.007613500000048],[122.43586180000011,1.005506],[122.43689350000011,1.003361200000029],[122.4403066000001,1.002971],[122.44038110000008,1.005162900000073],[122.437084,1.007613500000048]]],[[[122.2480988000001,0.913956700000028],[122.25527810000006,0.923137300000064],[122.26001410000003,0.925575300000048],[122.26969420000012,0.919984800000066],[122.27527420000001,0.913447],[122.27920730000005,0.911668300000031],[122.2953447000001,0.912595100000033],[122.29987620000009,0.916651200000047],[122.30550290000008,0.928057900000056],[122.30854610000006,0.930523900000026],[122.3132041,0.931015600000023],[122.33430870000007,0.921096500000033],[122.35122600000011,0.922069300000032],[122.35633840000003,0.91629990000007],[122.35987790000001,0.906793300000061],[122.38338830000009,0.901843900000074],[122.39312490000009,0.897824700000058],[122.4007583,0.89636930000006],[122.41154050000011,0.888067],[122.41860440000005,0.885163400000067],[122.42485760000011,0.885126300000024],[122.438777,0.88839820000004],[122.45124110000006,0.885054900000057],[122.45619320000003,0.888121900000044],[122.459178,0.887534900000048],[122.47370760000001,0.87753710000004],[122.47923150000008,0.877961600000049],[122.48485040000003,0.883873400000027],[122.48880610000003,0.88507050000004],[122.50236060000009,0.883197600000074],[122.5112352000001,0.884187800000063],[122.51459840000007,0.883474],[122.52456250000012,0.875787400000036],[122.53594750000002,0.871116400000062],[122.54401730000006,0.87398150000007],[122.55313860000001,0.874952500000063],[122.56262960000004,0.871096400000056],[122.5752887000001,0.873686600000042],[122.58250320000002,0.872252100000026],[122.58752470000002,0.869843500000059],[122.59577370000011,0.862819600000023],[122.59983920000002,0.84775430000002],[122.60167580000007,0.847457],[122.609071,0.852360300000043],[122.62088590000008,0.852459500000066],[122.63411810000002,0.847208700000067],[122.64473440000006,0.848471200000063],[122.64870650000012,0.844013800000027],[122.64954940000007,0.840512400000023],[122.65737250000006,0.834561800000074],[122.66028920000008,0.833771200000058],[122.66182640000011,0.83143160000003],[122.667748,0.830903300000045],[122.6760279,0.82336360000005],[122.68426820000002,0.820829200000048],[122.69541980000008,0.81089030000004],[122.6989718000001,0.809548800000073],[122.70165070000007,0.800254800000062],[122.70481880000011,0.798704900000075],[122.70743960000004,0.799318500000027],[122.70838620000006,0.797072400000047],[122.7074103000001,0.793780300000037],[122.70954460000007,0.791616100000056],[122.730421,0.784718100000021],[122.7349752,0.778453300000024],[122.74447580000003,0.77478080000003],[122.75567060000003,0.764725200000044],[122.76468980000004,0.76296670000005],[122.766972,0.765424900000028],[122.77273050000008,0.766357300000038],[122.77407910000011,0.765395100000035],[122.77497690000007,0.759722400000044],[122.77778250000006,0.757839100000069],[122.79041370000004,0.761886300000072],[122.7958258000001,0.761932700000045],[122.79826630000002,0.760917300000074],[122.801521,0.753636],[122.80569120000007,0.751770400000055],[122.82115690000012,0.752148300000044],[122.8257387000001,0.754570300000069],[122.83050890000004,0.755003400000021],[122.83821240000009,0.760111600000073],[122.84463460000006,0.762359700000047],[122.84823080000001,0.760676200000034],[122.876538,0.765070500000036],[122.87895330000003,0.763398300000063],[122.8804593000001,0.763931300000024],[122.88183320000007,0.761908300000073],[122.89391080000007,0.761671400000068],[122.90184390000002,0.758363400000064],[122.90657690000012,0.750122200000021],[122.90732850000006,0.744030800000075],[122.90652960000011,0.731127900000047],[122.904038,0.724877500000048],[122.90415990000008,0.712891600000034],[122.90064140000004,0.699454500000058],[122.90637820000006,0.695799600000043],[122.913047,0.693865500000072],[122.9166351,0.689576100000068],[122.92588060000003,0.693690300000071],[122.93086050000011,0.705017300000065],[122.93107690000011,0.712470400000029],[122.9326099000001,0.713108500000033],[122.93638480000004,0.710983400000032],[122.94112730000006,0.710492400000021],[122.9479636000001,0.711964200000068],[122.95247230000007,0.711254900000029],[122.96567360000006,0.71479770000002],[122.96721040000011,0.716299700000036],[122.96943180000005,0.72283230000005],[122.97520280000003,0.725793800000019],[122.9787692000001,0.730559200000073],[122.97760290000008,0.740423600000042],[122.9785908,0.746509200000048],[122.98101660000009,0.755412],[122.98508970000012,0.762538400000039],[122.99736650000011,0.769078400000069],[123.001698,0.774915600000043],[123.00306750000004,0.780951100000038],[123.0142796,0.790795700000047],[123.0158374,0.790981200000033],[123.0214453000001,0.783186700000044],[123.0256121000001,0.781448700000055],[123.0373287000001,0.782323700000063],[123.03849830000001,0.788363200000049],[123.04459020000002,0.788449400000047],[123.04792170000007,0.791619500000024],[123.05581170000005,0.793564900000035],[123.069862,0.803079900000057],[123.07430740000007,0.805850400000054],[123.08475,0.80579460000007],[123.09112310000012,0.803301900000065],[123.09424330000002,0.798378],[123.09911280000006,0.795731],[123.12317460000008,0.787942300000054],[123.12551280000002,0.780806600000062],[123.12548010000012,0.772189700000069],[123.13083620000009,0.770700600000055],[123.13421670000002,0.765174400000035],[123.1442168000001,0.770586800000046],[123.14892930000008,0.769719400000042],[123.15214920000005,0.770992],[123.15989460000003,0.776053400000023],[123.1636224,0.758509500000059],[123.16801050000004,0.753244400000028],[123.175331,0.756425500000034],[123.18796830000008,0.756424500000037],[123.19292750000011,0.754778200000032],[123.2074573000001,0.757244700000058],[123.21419030000004,0.762701800000059],[123.22248090000005,0.761060300000054],[123.2273752000001,0.762782400000049],[123.22951530000012,0.762611700000036],[123.23994390000007,0.755699800000059],[123.25140580000004,0.753639700000065],[123.25438090000011,0.758076],[123.26391730000012,0.763637],[123.26855570000009,0.768115900000055],[123.2698243000001,0.777222900000027],[123.27438890000008,0.787823300000071],[123.27383250000003,0.789913600000034],[123.26763930000004,0.794466500000055],[123.26801060000003,0.797937800000057],[123.2713999,0.802927400000044],[123.252851,0.816108400000076],[123.2434148000001,0.830762],[123.231619,0.833983],[123.2276601000001,0.838204500000074],[123.226157,0.842824300000075],[123.21881340000004,0.847753500000067],[123.21027630000003,0.849942300000066],[123.20607390000009,0.856844300000034],[123.19947890000003,0.855650500000024],[123.19232350000004,0.862337100000047],[123.18433650000009,0.860661200000038],[123.17852890000006,0.86190780000004],[123.17606450000005,0.864778400000034],[123.17572230000007,0.868360700000039],[123.16697030000012,0.869724400000052],[123.16569250000009,0.873077200000068],[123.1637985000001,0.874179500000025],[123.16126550000001,0.874340400000051],[123.1603070000001,0.871584800000051],[123.15173640000012,0.871036200000049],[123.14972850000004,0.878040200000044],[123.1428499000001,0.87611830000003],[123.14198280000005,0.878644400000042],[123.13721350000003,0.879356400000063],[123.13776130000008,0.883030600000041],[123.13541080000005,0.882318800000064],[123.13033380000002,0.884233100000074],[123.12716200000011,0.890571200000068],[123.12503980000008,0.890640200000064],[123.1237162000001,0.888757200000043],[123.1209917000001,0.889895700000068],[123.12094610000008,0.891273500000068],[123.12290860000007,0.891709800000058],[123.11985080000011,0.89458030000003],[123.11850460000005,0.89875980000005],[123.11985,0.903691500000036],[123.11781910000002,0.905459800000074],[123.11601630000007,0.905069500000025],[123.11510360000011,0.907664400000044],[123.11320950000004,0.908008900000027],[123.11330080000005,0.909226],[123.11603930000001,0.909662200000071],[123.11334670000008,0.914989900000023],[123.11562040000001,0.91941810000003],[123.11429680000003,0.91937230000002],[123.11406870000008,0.920933800000057],[123.110851,0.920727200000044],[123.115439,0.924145500000066],[123.114393,0.926622900000041],[123.09980330000008,0.927255400000035],[123.09453510000003,0.930244900000048],[123.09115310000004,0.924681900000053],[123.09857340000008,0.920845600000064],[123.09809460000008,0.916704500000037],[123.0951798000001,0.912349300000074],[123.08980270000006,0.911243200000058],[123.08895310000003,0.90659160000007],[123.08699070000011,0.906608300000073],[123.0838791000001,0.914180800000054],[123.0799191000001,0.91587880000003],[123.08114960000012,0.920493600000043],[123.08544450000011,0.923066],[123.08608060000006,0.92860550000006],[123.08386410000003,0.930191200000024],[123.08022070000004,0.928549900000064],[123.07954630000006,0.924919500000044],[123.07568490000006,0.922464200000036],[123.076357,0.919770100000051],[123.07505090000006,0.916971600000068],[123.06708540000011,0.916572200000076],[123.06416850000005,0.921945400000027],[123.06483250000008,0.924621500000057],[123.0613853000001,0.919748600000048],[123.0581681000001,0.919576300000074],[123.0565329000001,0.922048],[123.05699270000002,0.925211400000023],[123.0530146000001,0.930172300000038],[123.053574,0.934375],[123.05233140000007,0.932994],[123.0499668000001,0.933156900000029],[123.04693920000011,0.939627300000041],[123.04183460000002,0.938939300000072],[123.0410812,0.934681500000067],[123.03508910000005,0.931399800000065],[123.03235170000005,0.933148200000062],[123.01984950000008,0.933132500000056],[123.01956780000012,0.934789700000067],[123.01328840000008,0.94029850000004],[123.01220890000002,0.944146800000055],[123.00950290000003,0.944796600000075],[123.00222450000001,0.942848200000071],[122.9984746,0.944005200000049],[122.99502640000003,0.946943],[122.99766320000003,0.948540900000069],[122.99888540000006,0.953467700000033],[123.00238170000011,0.956710800000053],[122.9964347,0.957803700000056],[122.99545980000005,0.959715500000073],[122.99739470000009,0.961190300000055],[122.99019880000003,0.964020500000061],[122.98616240000001,0.967902700000025],[122.97613110000009,0.965563300000042],[122.96858680000003,0.966728200000034],[122.95518650000008,0.963253900000041],[122.94572620000008,0.964640800000041],[122.93887490000009,0.958140800000024],[122.94027440000002,0.957098200000075],[122.9402093000001,0.954445400000054],[122.94300680000003,0.951835300000027],[122.93999740000004,0.944985],[122.9429239000001,0.941099],[122.94589050000002,0.941231900000048],[122.94577430000004,0.937833600000033],[122.95003930000007,0.939292300000034],[122.95660450000003,0.935706200000027],[122.97644560000003,0.940291500000058],[122.9754134000001,0.936258600000031],[122.9655146,0.932068100000038],[122.96441170000003,0.929492100000061],[122.96214450000002,0.928903500000047],[122.96197580000012,0.926726900000062],[122.95716060000007,0.923094500000047],[122.9566678000001,0.919708],[122.95028190000005,0.922943700000076],[122.95111660000009,0.921540500000049],[122.94978770000012,0.920070800000076],[122.95115890000011,0.917754700000046],[122.94589570000005,0.91317760000004],[122.94616330000008,0.910776800000065],[122.94998360000011,0.906388500000048],[122.94821530000002,0.901977700000032],[122.95057830000007,0.898939],[122.94968060000008,0.897993900000074],[122.95093970000005,0.894062600000041],[122.94601470000009,0.894773900000075],[122.945101,0.890225900000075],[122.94067170000005,0.89203550000002],[122.93921160000002,0.888767600000051],[122.93539280000005,0.888173100000074],[122.93520650000005,0.883948],[122.9308347000001,0.884910300000058],[122.92829720000009,0.879744300000027],[122.9270557000001,0.879771600000026],[122.92367060000004,0.875012],[122.92685640000002,0.871877200000029],[122.92642880000005,0.868585100000075],[122.924718,0.866533900000036],[122.92193050000003,0.867381900000055],[122.9212827,0.860585700000058],[122.91475960000002,0.858231700000033],[122.91258770000002,0.855020800000034],[122.90767030000006,0.854804300000069],[122.9061918000001,0.856701200000032],[122.90792050000005,0.854044300000055],[122.90545270000007,0.852422600000068],[122.90021740000009,0.852478400000052],[122.89795580000009,0.854308400000036],[122.89638950000005,0.851670800000022],[122.8983584,0.85207360000004],[122.89670770000009,0.845000600000049],[122.894241,0.843069],[122.88961,0.842718],[122.88017090000005,0.830814700000076],[122.87725970000008,0.830945100000065],[122.87106030000007,0.826457600000026],[122.86105870000006,0.827584600000023],[122.85838210000009,0.821412900000041],[122.86068530000011,0.81429890000004],[122.8573755000001,0.812905],[122.85865300000012,0.809124500000053],[122.85186390000001,0.808687400000053],[122.84863230000008,0.800577200000021],[122.84419730000002,0.80278370000002],[122.8412813000001,0.810552700000073],[122.842912,0.816941400000076],[122.83956640000008,0.81905080000007],[122.83912740000005,0.82230480000004],[122.83726110000009,0.823518400000069],[122.83618050000007,0.818742800000052],[122.83236110000007,0.818287600000076],[122.82407190000004,0.824361100000033],[122.82299630000011,0.826269100000047],[122.82596720000004,0.827036900000053],[122.82625750000011,0.83327840000004],[122.82334790000004,0.839459900000065],[122.82077140000001,0.837499200000025],[122.822908,0.83272020000004],[122.8198139000001,0.833372500000053],[122.8181866000001,0.83143350000006],[122.81319930000006,0.833616300000074],[122.8121992,0.840300500000069],[122.810041,0.842061400000034],[122.80747720000011,0.841432200000042],[122.80745,0.839103100000045],[122.8100442000001,0.835878900000068],[122.80935380000005,0.834688500000027],[122.80486,0.835649200000034],[122.79656220000004,0.83460830000007],[122.796151,0.839729900000066],[122.78945350000004,0.849637800000039],[122.79230840000002,0.850255900000036],[122.80077820000008,0.845039900000074],[122.80220050000003,0.847303200000056],[122.8037882000001,0.847227100000055],[122.80196030000002,0.850680300000022],[122.80031670000005,0.850998600000025],[122.801024,0.851889100000051],[122.79999820000012,0.851508100000046],[122.79447290000007,0.857047700000066],[122.79463260000011,0.860188],[122.79084520000004,0.861065600000074],[122.78849060000005,0.859788600000059],[122.78913960000011,0.865117300000065],[122.78753770000003,0.865241500000025],[122.78427550000004,0.869660100000033],[122.77416230000006,0.878158700000029],[122.77106970000011,0.87939410000007],[122.77009270000008,0.875863300000049],[122.76779870000007,0.873554],[122.76611350000007,0.873738500000059],[122.7688104,0.864757300000065],[122.76626940000006,0.86170670000007],[122.763531,0.861905900000068],[122.76010950000011,0.86655810000002],[122.7557895000001,0.864362],[122.75557650000007,0.866618900000049],[122.75142170000004,0.870210300000053],[122.75259370000003,0.875201700000048],[122.74803570000006,0.874765300000035],[122.74225620000004,0.88005940000005],[122.7394852000001,0.880634900000075],[122.73726250000004,0.879729],[122.7370347000001,0.877798800000051],[122.73546610000005,0.87814510000004],[122.73516810000001,0.875733100000048],[122.73232430000007,0.876104400000031],[122.73204690000011,0.870500900000025],[122.72907850000001,0.868535],[122.72656140000004,0.874634900000046],[122.72231060000001,0.870314600000029],[122.72186450000004,0.867127100000062],[122.71306920000006,0.867348400000026],[122.71271990000002,0.870614800000055],[122.71453510000003,0.873622300000022],[122.71354910000002,0.876585500000033],[122.71591740000008,0.879048500000067],[122.71557440000004,0.88141840000003],[122.7223643000001,0.886674],[122.72022470000002,0.886218900000074],[122.71148360000007,0.892131600000027],[122.7020308000001,0.888537500000041],[122.69846310000003,0.889080100000058],[122.6933226000001,0.893779300000062],[122.69443330000001,0.895725300000038],[122.69239510000011,0.897296600000061],[122.68808980000006,0.893328200000042],[122.68229770000005,0.899740800000075],[122.67928560000007,0.911539100000027],[122.6743054000001,0.914054400000055],[122.67170650000003,0.92173710000003],[122.66398860000004,0.934523400000046],[122.66131830000006,0.933238],[122.6579134000001,0.933905700000025],[122.65683760000002,0.942027200000041],[122.6550026000001,0.94430310000007],[122.65186380000011,0.944425600000045],[122.64958220000005,0.94881330000004],[122.642537,0.942016600000045],[122.63968640000007,0.941363200000069],[122.63382090000005,0.950397600000031],[122.6286626000001,0.953589100000045],[122.62934370000005,0.955245200000036],[122.62596230000008,0.953373200000044],[122.62207080000007,0.954521900000032],[122.6212627000001,0.956942800000036],[122.6261654000001,0.962024500000041],[122.62417760000005,0.963980800000058],[122.618841,0.961315400000046],[122.61472910000009,0.956561500000021],[122.61610420000011,0.951634800000022],[122.61450730000001,0.945496100000071],[122.60950850000006,0.94418040000005],[122.60684270000002,0.948808300000053],[122.60227,0.949043900000049],[122.60177410000006,0.952006500000039],[122.59598370000003,0.953441],[122.58673850000002,0.952268300000071],[122.574744,0.958712600000069],[122.56527160000007,0.958752700000048],[122.56007090000003,0.960263700000041],[122.55667,0.964001],[122.553666,0.963768800000025],[122.55140830000005,0.965796500000067],[122.5506325,0.968792500000063],[122.55205840000008,0.971302600000058],[122.55033170000002,0.970303300000069],[122.54265320000002,0.971785500000067],[122.54251030000012,0.969805700000052],[122.53905740000005,0.969735],[122.51811080000004,0.978894500000024],[122.51195450000012,0.979910200000063],[122.50552770000002,0.985025800000074],[122.4926587000001,0.987835400000051],[122.48777060000009,0.990631700000051],[122.48710690000007,0.994985800000052],[122.48402360000011,0.999333200000024],[122.47887120000007,0.998482],[122.47576070000002,1.000221400000044],[122.47010950000004,1.010156],[122.47204190000002,1.013993200000073],[122.47159480000005,1.016483900000026],[122.46878570000001,1.014633200000048],[122.46253460000003,1.016841500000055],[122.4621059000001,1.020549900000049],[122.46426770000005,1.022944300000063],[122.45231210000009,1.03179590000002],[122.44610120000004,1.029151200000058],[122.43948150000006,1.021363700000052],[122.43993140000009,1.019822600000055],[122.4447441000001,1.017706700000076],[122.4404297000001,1.012700600000073],[122.44335360000002,1.005759500000067],[122.4422561,1.002252200000044],[122.444584,1.001660400000048],[122.444904,0.998875300000066],[122.44042130000003,0.998296400000072],[122.4352530000001,0.993948200000034],[122.43218790000003,0.993170400000054],[122.42917110000008,0.993834100000072],[122.42922520000002,0.995834600000023],[122.42194160000008,0.991429700000026],[122.41378820000011,0.992209500000058],[122.41091210000002,0.994116],[122.41054670000005,0.998922],[122.40642130000003,1.000703100000067],[122.4075587000001,1.006017100000065],[122.40614390000007,1.006436],[122.40541870000004,1.003882100000055],[122.40266560000009,1.003627100000074],[122.40050330000008,1.006026800000029],[122.400918,1.008510700000045],[122.3936116000001,1.013561500000037],[122.38972730000012,1.007579600000042],[122.38943690000008,1.003153600000076],[122.38315720000003,1.003866900000048],[122.37391280000008,0.994212400000038],[122.36970680000002,0.993585500000052],[122.36428090000004,0.995128],[122.36212410000007,0.997005300000069],[122.36251940000011,1.001420100000075],[122.35905080000009,1.005172500000072],[122.3604739000001,1.007227100000023],[122.359768,1.010095700000022],[122.34996860000001,1.014327700000024],[122.35105110000006,1.02039080000003],[122.34455390000005,1.022168700000066],[122.33602770000005,1.031196400000056],[122.33586710000009,1.037536800000055],[122.33727370000008,1.039722500000039],[122.3354541000001,1.040581400000065],[122.32883650000008,1.036847],[122.32816620000006,1.033754300000055],[122.32975310000006,1.029876700000045],[122.32798800000012,1.025807300000054],[122.33079140000007,1.022632],[122.33043,1.021216],[122.32702560000007,1.018981600000075],[122.32426250000003,1.020249300000046],[122.318709,1.019949800000063],[122.31566340000006,1.016492400000061],[122.31756360000008,1.013712600000019],[122.31517280000003,1.005755600000043],[122.313103,1.005274],[122.3097259000001,1.007098700000029],[122.3013648000001,1.00263220000005],[122.29923330000008,1.003393500000072],[122.29911630000004,1.006190300000071],[122.2917251,1.008146400000044],[122.29249940000011,1.006664500000056],[122.29037090000008,1.004876500000023],[122.28412550000007,1.004540800000029],[122.26976560000003,1.009838300000069],[122.2681143000001,1.013088300000049],[122.26163470000006,1.012340900000027],[122.25968980000005,1.008392100000037],[122.2558954000001,1.006062400000076],[122.25487250000003,1.002908200000036],[122.25198280000006,1.001580600000068],[122.24872950000008,1.003232800000035],[122.2469886,1.007945500000062],[122.2412892000001,1.010039600000027],[122.23671220000006,1.006191100000024],[122.23841070000003,1.003229],[122.2376011,0.993930900000066],[122.2312247000001,0.992580100000055],[122.226808,0.993367400000068],[122.22348050000005,0.996701800000039],[122.22102530000006,0.996403600000065],[122.22160610000003,0.998639700000069],[122.220172,1.001552200000049],[122.2216423000001,1.002981900000066],[122.22142070000007,1.007989],[122.22310510000011,1.011257500000056],[122.2269698,1.011563600000045],[122.22824660000003,1.013849],[122.2279893000001,1.01652230000002],[122.22219990000008,1.025021700000025],[122.21996790000003,1.02495360000006],[122.22035730000005,1.023256100000026],[122.2174156000001,1.020600600000023],[122.21273080000003,1.01929430000007],[122.20929640000008,1.020562400000074],[122.1997285000001,1.027194300000076],[122.1943298000001,1.034327100000041],[122.19277820000002,1.033409100000029],[122.1929493,1.037104300000067],[122.195257,1.038436900000022],[122.18916590000003,1.039314500000046],[122.18620370000008,1.037004500000023],[122.17552820000003,1.03627380000006],[122.17529660000002,1.030174400000021],[122.17031290000011,1.027833900000076],[122.16062750000003,1.029870900000049],[122.15631960000007,1.025601700000038],[122.14127130000008,1.018371],[122.13629030000004,1.019944100000032],[122.12550980000003,1.018218700000034],[122.12303370000006,1.012299400000074],[122.11312240000007,1.013075400000048],[122.09269560000007,0.999813300000028],[122.08436060000008,0.998579],[122.0759346000001,1.006205400000056],[122.062212,0.997997700000042],[122.05200050000008,0.99446990000007],[122.04489250000006,0.989108600000066],[122.04231830000003,0.989477500000021],[122.023106,0.958103900000026],[122.0178969000001,0.956870400000071],[122.01696460000005,0.954609700000049],[122.01003980000007,0.952020400000038],[122.00765060000003,0.948385300000041],[122.0003319000001,0.94306],[121.99386170000002,0.942192400000067],[121.98851820000004,0.935409200000038],[121.98332570000002,0.926504800000032],[121.98359460000006,0.921723600000064],[121.98650180000004,0.918385700000044],[121.98515470000007,0.910456100000033],[121.98242730000004,0.907272900000066],[121.9902790000001,0.896829700000069],[121.99930370000004,0.890117500000031],[122.0029512000001,0.889445900000055],[122.01128990000007,0.891494700000067],[122.02103350000004,0.887383],[122.03045930000008,0.885753700000066],[122.03892140000005,0.888364500000023],[122.05792320000012,0.901151200000072],[122.06468250000012,0.901145800000052],[122.07059590000006,0.904789500000049],[122.07691000000011,0.903975800000069],[122.07929680000007,0.905499100000043],[122.08409690000008,0.920667900000069],[122.09359070000005,0.923101100000054],[122.09779850000007,0.925566300000071],[122.10538550000001,0.933231700000022],[122.10896460000004,0.929102],[122.1092992,0.92477150000002],[122.11479180000003,0.921488600000032],[122.1161863000001,0.906822300000044],[122.11742040000001,0.905357500000036],[122.13223230000006,0.90559380000002],[122.14017820000004,0.912048900000059],[122.14293050000003,0.912103100000024],[122.14563720000001,0.908396300000049],[122.1555327000001,0.90543150000002],[122.1594156000001,0.905932],[122.16815140000006,0.913492500000075],[122.16986880000002,0.913496400000042],[122.1748344,0.910961500000042],[122.18331790000002,0.911319800000058],[122.1949317000001,0.901325],[122.19920660000002,0.899552200000073],[122.20937640000011,0.899324900000067],[122.22630970000012,0.90482060000005],[122.23284510000008,0.909993],[122.2480988000001,0.913956700000028]]]]},"properties":{"shapeName":"Gorontalo Utara","shapeISO":"","shapeID":"22746128B11712622129816","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[119.42940470000008,-5.452551099999937],[119.42784350000011,-5.451215499999932],[119.41905170000007,-5.454152699999952],[119.42338390000009,-5.463773199999935],[119.42150590000006,-5.467736299999956],[119.42250030000002,-5.469272199999978],[119.42540010000005,-5.460086299999944],[119.42966690000003,-5.460511599999961],[119.43129010000007,-5.458595099999968],[119.42940470000008,-5.452551099999937]]],[[[119.93675710000002,-5.356290199999933],[119.93323220000002,-5.352970399999947],[119.92908810000006,-5.3382441],[119.93780110000012,-5.324758699999961],[119.94103380000001,-5.316846899999973],[119.94494320000001,-5.3131511],[119.94527660000006,-5.3071179],[119.95433680000008,-5.2904196],[119.96330160000002,-5.281757199999959],[119.96603850000008,-5.282248399999958],[119.96942920000004,-5.278893],[119.97410490000004,-5.276967099999979],[119.97305440000002,-5.270453],[119.97646440000005,-5.266129499999977],[119.97604,-5.2570027],[119.9807154,-5.247599599999944],[119.9862121000001,-5.2439453],[119.98763540000004,-5.239097],[119.99160110000003,-5.237142799999958],[119.99797030000002,-5.229967199999976],[119.99633310000002,-5.224926299999936],[119.99720420000006,-5.218878],[119.99627770000006,-5.217867],[119.99455660000001,-5.218964799999981],[119.993184,-5.216473699999938],[119.99186,-5.2058781],[119.99484270000005,-5.206312599999933],[119.99481290000006,-5.203891],[119.99719470000002,-5.203077699999938],[119.9954222,-5.201613399999928],[119.99720330000002,-5.199445499999968],[119.99983050000003,-5.199985899999945],[120.001361,-5.198636299999976],[120.00413050000009,-5.200399199999936],[120.0029085000001,-5.197793599999954],[120.0039230000001,-5.19669],[120.00648400000011,-5.198596699999939],[120.01048970000011,-5.1975843],[120.01473180000005,-5.199903499999948],[120.02307610000003,-5.197653],[120.0260211000001,-5.200431],[120.02683760000002,-5.197334599999976],[120.02504720000002,-5.1934646],[120.02888310000003,-5.192861499999935],[120.03265520000002,-5.184587499999964],[120.02929060000008,-5.1857102],[120.02700830000003,-5.183756399999936],[120.02146770000002,-5.182624499999974],[120.02026770000009,-5.17662],[120.00926190000007,-5.170754399999964],[120.00352040000007,-5.165404299999977],[119.99935440000002,-5.164928799999927],[119.98602830000004,-5.167468099999951],[119.9767753000001,-5.163554],[119.97219040000004,-5.157716899999969],[119.97491220000006,-5.150505799999962],[119.972719,-5.141962899999953],[119.97049120000008,-5.139546099999961],[119.9654954,-5.1399644],[119.9582746000001,-5.134526199999925],[119.95254120000004,-5.134570899999972],[119.93829260000007,-5.1292881],[119.93033080000009,-5.134077],[119.92265770000006,-5.132775],[119.91142090000005,-5.122246399999938],[119.91010540000002,-5.1181308],[119.89901840000005,-5.1116591],[119.89342240000008,-5.096683599999949],[119.88787910000008,-5.093447499999968],[119.884433,-5.093789199999947],[119.87993170000004,-5.090620899999976],[119.870109,-5.093086299999925],[119.86405620000005,-5.091904199999931],[119.85852380000006,-5.107776399999977],[119.86272430000008,-5.113927399999966],[119.870697,-5.1195188],[119.86457060000009,-5.1346879],[119.86087040000007,-5.1382751],[119.86089320000008,-5.140601199999935],[119.85799410000004,-5.142070299999943],[119.85693360000005,-5.150208],[119.86254880000001,-5.154223399999978],[119.86399080000001,-5.158307099999945],[119.86315920000004,-5.161335],[119.85784910000007,-5.168188099999952],[119.84491730000002,-5.176611399999956],[119.84347530000002,-5.182976199999928],[119.83958440000004,-5.186634499999968],[119.83786770000006,-5.186444299999948],[119.83523560000003,-5.191536399999961],[119.82168580000007,-5.198329899999976],[119.81535340000005,-5.203737299999943],[119.80599210000003,-5.203463599999964],[119.79843140000003,-5.2114348],[119.789711,-5.210857399999952],[119.78568270000005,-5.208056],[119.7803345000001,-5.208704],[119.77526860000012,-5.206937299999936],[119.77328490000002,-5.199691799999925],[119.76837920000003,-5.197526499999981],[119.76663210000004,-5.192137199999934],[119.7635117000001,-5.1890974],[119.75684360000002,-5.187306899999953],[119.74809270000003,-5.181971099999942],[119.7204971000001,-5.1822381],[119.71343990000003,-5.179055699999935],[119.707634,-5.1781931],[119.69976040000006,-5.172327499999938],[119.68795010000008,-5.167753199999936],[119.67509460000008,-5.168490899999938],[119.66741940000009,-5.1659684],[119.65722660000006,-5.168342099999961],[119.654007,-5.171191199999953],[119.6506882000001,-5.1773663],[119.6465836000001,-5.1787939],[119.642807,-5.176848399999926],[119.64160160000006,-5.172178699999961],[119.63234710000006,-5.171434399999953],[119.63349910000011,-5.174621099999968],[119.6277847,-5.1723962],[119.62586980000003,-5.1697073],[119.62796780000008,-5.161159],[119.60927580000009,-5.159737599999971],[119.60414890000004,-5.153782799999931],[119.60054780000007,-5.152702799999929],[119.59072880000008,-5.156620499999974],[119.59208680000006,-5.162479899999937],[119.5905457,-5.166459599999939],[119.5876846000001,-5.168975799999942],[119.58152010000003,-5.172229799999968],[119.57730870000012,-5.171355199999937],[119.57167820000006,-5.174906299999975],[119.56586460000005,-5.171313299999952],[119.56339260000004,-5.172283199999981],[119.56043240000008,-5.169772599999931],[119.560997,-5.168403599999976],[119.55665590000001,-5.166030899999953],[119.54772950000006,-5.1637707],[119.54105880000009,-5.167549799999961],[119.54116070000009,-5.1648309],[119.53762250000011,-5.164442599999973],[119.519153,-5.165576499999929],[119.51879990000009,-5.169085],[119.5150734,-5.170321699999931],[119.51484120000009,-5.173236499999973],[119.511656,-5.176558299999954],[119.51367330000005,-5.178782099999978],[119.51325810000003,-5.180553699999962],[119.51643220000005,-5.182522699999936],[119.51503470000011,-5.187162099999966],[119.51585090000003,-5.192881899999975],[119.5138677000001,-5.193157199999973],[119.51295010000001,-5.194948699999941],[119.49252150000007,-5.189931],[119.489357,-5.191400299999941],[119.48658120000005,-5.190947699999981],[119.48617840000009,-5.189293899999939],[119.47605350000003,-5.184301099999971],[119.47041910000007,-5.179091899999946],[119.46357340000009,-5.177082599999949],[119.46110990000011,-5.194583],[119.45485420000011,-5.191529799999955],[119.44111540000006,-5.188273399999957],[119.4391485000001,-5.192414499999927],[119.43352360000006,-5.189608699999951],[119.42323130000011,-5.194274399999927],[119.41948330000002,-5.194577899999956],[119.41353360000005,-5.191817799999967],[119.408034,-5.182681299999956],[119.40587730000004,-5.184364799999969],[119.40596080000012,-5.186046699999963],[119.3965439000001,-5.186530299999959],[119.39518890000011,-5.187716599999931],[119.396192,-5.190947699999981],[119.3941804000001,-5.192849199999955],[119.390742,-5.193176799999947],[119.39071500000011,-5.196988599999941],[119.39358590000006,-5.1989294],[119.3966292,-5.198059899999976],[119.39768990000005,-5.200165699999957],[119.40015890000006,-5.199171099999944],[119.40507410000009,-5.200542799999937],[119.40707980000002,-5.202936399999942],[119.409614,-5.2031402],[119.41107840000006,-5.207717],[119.4103411000001,-5.210134399999959],[119.40760180000007,-5.210301299999969],[119.40737750000005,-5.213681099999974],[119.40466860000004,-5.217766499999925],[119.40509410000004,-5.225453699999946],[119.40126380000004,-5.233322599999951],[119.40397260000009,-5.235007099999962],[119.40352120000011,-5.244156],[119.40920440000002,-5.248411399999952],[119.40775610000003,-5.2526631],[119.3998487,-5.256218699999977],[119.398065,-5.260157399999969],[119.38621350000005,-5.269440499999973],[119.38511950000009,-5.2781129],[119.3802157,-5.281812099999968],[119.3761032000001,-5.292049199999951],[119.377779,-5.297131599999943],[119.38257270000008,-5.302825699999971],[119.38586270000008,-5.304223099999945],[119.38831730000004,-5.303129],[119.39048770000011,-5.305725499999937],[119.3924952000001,-5.310714599999926],[119.39410650000002,-5.32282],[119.39885040000001,-5.327081299999975],[119.4060449000001,-5.330443899999977],[119.40006630000005,-5.344218499999954],[119.40172990000008,-5.348561699999948],[119.40628330000004,-5.351747899999964],[119.40074310000011,-5.361030199999959],[119.39814680000006,-5.3621589],[119.3958967000001,-5.367382899999939],[119.39091710000002,-5.368270099999961],[119.38844490000008,-5.371443399999976],[119.38959390000002,-5.3766],[119.39372630000003,-5.381555099999957],[119.3926891000001,-5.3857601],[119.38724490000004,-5.388504199999943],[119.37815980000005,-5.389253799999949],[119.37285660000009,-5.391534199999967],[119.36955950000004,-5.400920399999961],[119.36322480000001,-5.408917599999938],[119.36367750000011,-5.416695499999946],[119.36601990000008,-5.4178098],[119.36663940000005,-5.421930499999974],[119.370548,-5.425438899999961],[119.37528320000001,-5.423365799999942],[119.37892330000011,-5.423869399999944],[119.38056260000008,-5.421450799999946],[119.3808514000001,-5.415642699999978],[119.38295420000009,-5.415919199999962],[119.38457190000008,-5.414108099999964],[119.3913768000001,-5.413705599999957],[119.39226440000004,-5.415906799999959],[119.39553,-5.416456499999981],[119.39940480000007,-5.413285499999972],[119.40127450000011,-5.407790099999943],[119.40747540000007,-5.408322399999975],[119.40977270000008,-5.4109337],[119.42136160000007,-5.410305799999946],[119.41708990000006,-5.419316199999969],[119.419786,-5.433306099999925],[119.41873260000011,-5.438281599999925],[119.42858520000004,-5.4395899],[119.4333358,-5.437779899999953],[119.43509690000008,-5.431060899999977],[119.43266730000005,-5.427754299999947],[119.4282002000001,-5.426497299999937],[119.42391490000011,-5.422725699999944],[119.42361520000009,-5.416983899999934],[119.42542340000011,-5.413840799999946],[119.42840920000003,-5.412389399999938],[119.4300449000001,-5.4043488],[119.42690290000007,-5.400671699999975],[119.42648190000011,-5.397974899999952],[119.43269530000009,-5.394076799999937],[119.43539640000006,-5.395716799999946],[119.44001810000009,-5.395568399999945],[119.4414723000001,-5.393883099999925],[119.4397302000001,-5.387911299999928],[119.44161720000011,-5.385205499999927],[119.44736580000006,-5.383132899999964],[119.45707820000007,-5.375502599999948],[119.45740850000004,-5.371099199999946],[119.4560143000001,-5.369067399999949],[119.45024320000005,-5.3677965],[119.4490138000001,-5.367892299999937],[119.4489211,-5.369488],[119.44748770000001,-5.365360199999941],[119.44958770000005,-5.356351199999949],[119.45771480000008,-5.355329899999958],[119.46171230000004,-5.350527299999953],[119.46212280000009,-5.345847399999968],[119.46583140000007,-5.342078899999933],[119.4676852,-5.335825],[119.47547740000005,-5.330190099999925],[119.474196,-5.326510599999949],[119.47147870000003,-5.325877899999966],[119.46636160000003,-5.326989499999968],[119.46011340000007,-5.330884],[119.45633260000011,-5.329805699999952],[119.4558373000001,-5.322697599999969],[119.45716020000009,-5.320812899999964],[119.45919890000005,-5.320628499999941],[119.46260240000004,-5.322953899999959],[119.4672829000001,-5.31974],[119.4674232000001,-5.317592499999932],[119.46393150000006,-5.312955199999976],[119.4669583000001,-5.312345099999959],[119.47090920000005,-5.315069699999981],[119.47846650000008,-5.313992699999972],[119.47931720000008,-5.312053399999968],[119.48254310000004,-5.311658199999954],[119.48519890000011,-5.315907399999958],[119.48715850000008,-5.316546099999925],[119.48882430000003,-5.314039099999945],[119.4921538000001,-5.315606799999955],[119.49142470000004,-5.320561899999973],[119.49631690000001,-5.319821699999977],[119.5019565,-5.323309299999949],[119.50454220000006,-5.320881199999974],[119.50548830000002,-5.316966899999954],[119.50220090000005,-5.31254],[119.5117007,-5.309856299999979],[119.52083630000004,-5.301465699999937],[119.52893590000008,-5.298000199999933],[119.53112670000007,-5.3015957],[119.53778320000004,-5.305677],[119.54183220000004,-5.306324599999925],[119.54350290000002,-5.304254499999956],[119.5438736000001,-5.300351],[119.54875160000006,-5.295435599999962],[119.55324570000005,-5.2957331],[119.56058270000005,-5.290938599999947],[119.56602580000003,-5.292403799999931],[119.57803510000008,-5.289904199999967],[119.58127660000002,-5.292500399999938],[119.58473150000009,-5.289401099999964],[119.59331530000009,-5.293400499999962],[119.59067520000008,-5.296194299999968],[119.58512140000005,-5.295215699999972],[119.58552170000007,-5.301892699999939],[119.59509060000005,-5.3173431],[119.59334410000008,-5.321543299999973],[119.6007859,-5.329434499999934],[119.60166320000008,-5.331965499999967],[119.59975180000004,-5.334479699999974],[119.6031355,-5.336793899999975],[119.60455630000001,-5.340100799999959],[119.60670280000011,-5.340312199999971],[119.61547590000009,-5.347932299999968],[119.61915090000002,-5.356173099999978],[119.6170763,-5.362399099999948],[119.61757770000008,-5.367562],[119.623454,-5.373725],[119.63054250000005,-5.37656],[119.63313750000009,-5.376217199999928],[119.6368821000001,-5.380536199999938],[119.63753990000009,-5.384901699999944],[119.64271940000003,-5.387777],[119.64368980000006,-5.392676299999948],[119.64698980000003,-5.396718299999975],[119.64536410000005,-5.407095599999934],[119.641493,-5.414318499999979],[119.63740670000004,-5.413806099999931],[119.6344841,-5.417504299999962],[119.62877130000004,-5.417074],[119.62732010000002,-5.419175],[119.62735910000004,-5.420551699999976],[119.63230340000007,-5.420631299999968],[119.630216,-5.423115299999949],[119.63082680000002,-5.427318799999966],[119.63374870000007,-5.424249799999927],[119.637632,-5.4254252],[119.63617110000007,-5.431197699999927],[119.63907510000001,-5.4308236],[119.6430305,-5.434303099999966],[119.64111320000006,-5.434610199999952],[119.6407630000001,-5.437024599999972],[119.64478340000005,-5.444290799999976],[119.645011,-5.4491697],[119.6483022000001,-5.452824299999975],[119.63876320000008,-5.458396899999968],[119.63800230000004,-5.462412599999936],[119.631131,-5.475401899999952],[119.641914,-5.4706733],[119.6515094,-5.469176],[119.65372570000011,-5.469717399999979],[119.65448010000011,-5.473084899999947],[119.66401630000007,-5.478211599999952],[119.6621149,-5.484518699999967],[119.65834310000002,-5.486433199999965],[119.66287660000012,-5.493579299999965],[119.66493650000007,-5.507504799999936],[119.66961760000004,-5.514252399999975],[119.67198040000005,-5.514494799999966],[119.68091020000008,-5.5045233],[119.68640140000002,-5.500531499999965],[119.6993308000001,-5.501186899999936],[119.7057215000001,-5.506218399999966],[119.70303980000006,-5.510965699999929],[119.705072,-5.516893499999981],[119.70479880000005,-5.522506399999941],[119.70093770000005,-5.530702099999928],[119.70650680000006,-5.545080799999937],[119.71481260000007,-5.548937499999965],[119.721294,-5.549621499999944],[119.72169140000005,-5.555002399999978],[119.7239952000001,-5.556874299999947],[119.72654380000006,-5.556311299999948],[119.72916070000008,-5.557600499999978],[119.73027170000012,-5.561327299999959],[119.73906760000011,-5.560979299999929],[119.74768370000004,-5.566035599999964],[119.75502640000002,-5.567564599999969],[119.76641290000009,-5.566318399999943],[119.76915660000009,-5.569642899999963],[119.77396720000002,-5.568763199999978],[119.77489560000004,-5.5655014],[119.77710910000008,-5.564151899999956],[119.77661540000008,-5.561504399999933],[119.77840440000011,-5.5612968],[119.77950980000003,-5.562133299999971],[119.7778575000001,-5.566484099999968],[119.7789001000001,-5.568339399999957],[119.78002310000011,-5.569035499999927],[119.78195470000003,-5.566912299999956],[119.786393,-5.569388199999935],[119.78650710000011,-5.565720699999929],[119.79063850000011,-5.562686099999951],[119.79462050000006,-5.556412499999965],[119.80439790000003,-5.554903699999954],[119.80498480000006,-5.54441],[119.80750410000007,-5.543487599999935],[119.8066242000001,-5.5409633],[119.80846180000003,-5.5397674],[119.81236840000008,-5.540940399999954],[119.81366680000008,-5.5395928],[119.80957550000005,-5.537666399999978],[119.80891930000007,-5.535161899999935],[119.81608640000002,-5.534993199999974],[119.81428820000008,-5.526369],[119.8188417,-5.521296099999972],[119.818365,-5.517181699999981],[119.8217677,-5.515819299999976],[119.82200530000011,-5.512925799999948],[119.8265937000001,-5.510552799999971],[119.83314760000007,-5.504279299999951],[119.83295160000011,-5.496078699999941],[119.83695640000008,-5.481329199999948],[119.84839020000004,-5.462878699999976],[119.85299440000006,-5.460281699999939],[119.8602241000001,-5.4476159],[119.86294090000001,-5.446943399999952],[119.874051,-5.431873899999971],[119.87751490000005,-5.431667599999969],[119.89189540000007,-5.422310799999934],[119.89648270000009,-5.421403399999974],[119.89971610000009,-5.422372699999926],[119.9084547000001,-5.4201171],[119.91928960000007,-5.400658],[119.93064240000001,-5.395064899999966],[119.93520520000004,-5.387742799999955],[119.93738140000005,-5.386690099999953],[119.9380430000001,-5.384591899999975],[119.93204390000005,-5.377083499999969],[119.93019150000009,-5.370947299999955],[119.93197060000011,-5.363725799999941],[119.93675710000002,-5.356290199999933]],[[119.42506190000006,-5.261703699999941],[119.423912,-5.260941299999956],[119.42419910000001,-5.255177199999935],[119.42726190000008,-5.254702399999928],[119.42793630000006,-5.259158599999978],[119.42506190000006,-5.261703699999941]]]]},"properties":{"shapeName":"Gowa","shapeISO":"","shapeID":"22746128B25431629324256","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[112.66102880000005,-7.193307499999946],[112.66508650000003,-7.191609099999937],[112.66714230000002,-7.1849276],[112.6654148,-7.184013899999968],[112.66705390000004,-7.182007499999941],[112.67628660000003,-7.182108],[112.67642930000011,-7.180287699999951],[112.67443060000005,-7.174791099999936],[112.669755,-7.174184299999979],[112.67082570000002,-7.173149299999977],[112.66632850000008,-7.159407899999962],[112.6636873000001,-7.160692799999936],[112.66290210000011,-7.158694099999934],[112.66450820000011,-7.158444199999963],[112.66404420000003,-7.1575519],[112.66054640000004,-7.158015899999953],[112.66068920000009,-7.155660199999943],[112.66308060000006,-7.155945799999927],[112.66190270000004,-7.152340899999956],[112.662795,-7.151639],[112.66013,-7.1520911],[112.65886890000002,-7.147451099999955],[112.656894,-7.148545699999943],[112.6544288,-7.1472179],[112.65513320000002,-7.146456499999942],[112.65375310000002,-7.147213199999953],[112.6547905000001,-7.145742599999949],[112.650523,-7.144185299999947],[112.647858,-7.141353699999968],[112.64973770000006,-7.139949899999976],[112.64704890000007,-7.1368566],[112.634301,-7.133511399999975],[112.6311482000001,-7.134968799999967],[112.6271435000001,-7.131129699999974],[112.62474770000006,-7.1261578],[112.62853080000002,-7.125956599999938],[112.6221657000001,-7.1188183],[112.6243965000001,-7.118134199999929],[112.62207650000005,-7.117301299999951],[112.62260590000005,-7.111227799999938],[112.6468288000001,-7.112893399999962],[112.64592470000002,-7.10842],[112.64306930000009,-7.110609099999976],[112.63716820000002,-7.110323599999958],[112.63583570000003,-7.111560899999972],[112.6225108000001,-7.110751899999968],[112.62527090000003,-7.103166199999976],[112.63075320000007,-7.098540499999956],[112.62949690000005,-7.088946499999963],[112.62806920000003,-7.087690099999975],[112.63252350000005,-7.069415899999967],[112.63843410000004,-7.058622699999944],[112.6421461000001,-7.056909399999938],[112.645287,-7.059336499999972],[112.64914170000009,-7.058408499999928],[112.65318470000011,-7.042044499999975],[112.6437879,-7.031211299999939],[112.64635770000007,-7.023644599999955],[112.6505026000001,-7.018683399999929],[112.64150360000008,-7.011794899999927],[112.640647,-7.009296399999926],[112.6323665000001,-7.0070121],[112.61626350000006,-6.993116099999952],[112.6090061000001,-6.979672099999959],[112.605318,-6.969202499999938],[112.605199,-6.962896899999976],[112.5992126000001,-6.956023699999946],[112.59568370000011,-6.945045099999959],[112.592802,-6.928918199999941],[112.59557840000002,-6.916117499999928],[112.60041030000002,-6.916836499999931],[112.604039,-6.9232016],[112.60808410000004,-6.9257],[112.61016610000001,-6.924153399999966],[112.61189120000006,-6.919691899999975],[112.61665010000002,-6.9176098],[112.6168881000001,-6.9149924],[112.619446,-6.913445799999977],[112.61980290000008,-6.909757599999978],[112.61867270000005,-6.909698099999957],[112.61284300000011,-6.893696299999931],[112.6104041000001,-6.8906624],[112.61088,-6.886676899999941],[112.6090359000001,-6.879954899999973],[112.60683490000008,-6.878110799999945],[112.60748920000003,-6.875671799999964],[112.60510980000004,-6.876028799999972],[112.60392,-6.880430799999942],[112.5944022000001,-6.884535299999925],[112.59428320000006,-6.887509699999953],[112.60112420000007,-6.891197799999929],[112.60094570000001,-6.893517799999927],[112.59130890000006,-6.890246],[112.58666890000006,-6.8906624],[112.57851930000004,-6.883048199999962],[112.57399830000008,-6.872162099999969],[112.57381980000002,-6.861811499999931],[112.57584240000006,-6.861097599999937],[112.57578290000004,-6.856695599999966],[112.57840030000011,-6.853364399999975],[112.5778054000001,-6.851103899999941],[112.57251110000004,-6.848367499999938],[112.56668150000007,-6.855446399999948],[112.55948360000002,-6.8477727],[112.54900840000005,-6.8465829],[112.54895450000004,-6.851877199999933],[112.54420520000008,-6.853108799999973],[112.53789,-6.858480199999974],[112.53087060000007,-6.858182799999952],[112.53146540000012,-6.8600269],[112.52319680000005,-6.865737599999932],[112.52093630000002,-6.870139599999959],[112.5241486000001,-6.872578499999975],[112.54192120000005,-6.877152499999966],[112.54025550000006,-6.883696],[112.53740020000009,-6.885004699999968],[112.53395,-6.890358499999934],[112.53014280000002,-6.893213799999955],[112.52578660000006,-6.901388599999962],[112.52017320000004,-6.905824199999927],[112.5093495000001,-6.907469299999946],[112.5071908000001,-6.9051389],[112.5068291,-6.906928299999947],[112.50439260000007,-6.906871099999933],[112.50079480000011,-6.903597],[112.49807270000008,-6.903863499999943],[112.49384680000003,-6.901312699999949],[112.49097240000003,-6.904244199999937],[112.49038230000008,-6.901921899999934],[112.48727950000011,-6.900341899999944],[112.48581370000011,-6.902036099999975],[112.48387920000005,-6.901348399999961],[112.48424210000007,-6.898450199999957],[112.48216720000005,-6.89806],[112.48088230000008,-6.899849399999937],[112.47944510000002,-6.898231299999964],[112.47836010000003,-6.899763699999937],[112.47377250000011,-6.898288399999956],[112.4738867000001,-6.893805499999928],[112.46538730000009,-6.891321399999981],[112.46448310000005,-6.889275],[112.4638834000001,-6.890017399999977],[112.46099950000007,-6.886638599999969],[112.4575731000001,-6.885391799999979],[112.4580204,-6.883887899999934],[112.45608750000008,-6.8843083],[112.44770040000003,-6.877746699999932],[112.44606320000003,-6.874378599999943],[112.44061850000003,-6.874750899999981],[112.44564060000005,-6.883987899999966],[112.4406586,-6.898718799999926],[112.43680570000004,-6.901655699999935],[112.428009,-6.903963099999942],[112.42474370000002,-6.909085799999957],[112.42326360000004,-6.922491099999945],[112.42742160000012,-6.934108699999967],[112.42485560000011,-6.936157199999968],[112.42640690000007,-6.945327799999973],[112.42497250000008,-6.948838199999955],[112.40387730000009,-6.958402599999943],[112.39524840000001,-6.955935],[112.39066820000005,-6.96031],[112.3818715000001,-6.957996399999956],[112.37490140000011,-6.958177299999932],[112.36703490000002,-6.9750547],[112.36632270000007,-6.991718899999967],[112.3678867000001,-6.991775599999926],[112.36966430000007,-6.986583399999972],[112.371675,-6.984811799999932],[112.38189440000008,-6.988737199999946],[112.39154560000009,-6.985772199999928],[112.39446770000006,-6.987598],[112.39581040000007,-6.9910761],[112.39851120000003,-6.993333899999925],[112.40102130000002,-6.9933483],[112.40485130000002,-6.990872499999966],[112.41662350000001,-6.993657199999973],[112.422315,-6.996475299999929],[112.4278921,-7.002418699999964],[112.45040890000007,-7.001426199999969],[112.45055140000011,-7.010845899999936],[112.44835660000001,-7.014655499999947],[112.44994350000002,-7.016318699999943],[112.45749610000007,-7.014702799999952],[112.45904540000004,-7.009464099999946],[112.46154150000007,-7.007485799999927],[112.48179630000004,-7.002558199999953],[112.48232270000005,-7.004911399999969],[112.4793777000001,-7.009332099999938],[112.48112480000009,-7.011904099999981],[112.48432920000005,-7.011574099999962],[112.48580350000009,-7.009204399999931],[112.49010470000007,-7.008798599999977],[112.5059357,-7.012045399999977],[112.50888820000011,-7.013855],[112.5094147000001,-7.019427299999961],[112.49738310000009,-7.023761599999943],[112.49682610000002,-7.028737399999955],[112.49999990000003,-7.032171099999971],[112.51400750000005,-7.041187099999945],[112.51905610000006,-7.047128],[112.52212490000011,-7.046226099999956],[112.52371770000002,-7.038922599999978],[112.5415858,-7.053516199999933],[112.54409590000012,-7.053340699999978],[112.54516400000011,-7.047487499999932],[112.55238140000006,-7.050388599999962],[112.54819490000011,-7.058583299999952],[112.54786680000007,-7.065601799999968],[112.54221340000004,-7.070349199999953],[112.54090880000001,-7.076541899999938],[112.5329819000001,-7.083869],[112.53095250000001,-7.087685099999931],[112.53123260000007,-7.0910005],[112.53500440000005,-7.0925979],[112.53556620000006,-7.096232399999963],[112.52099610000005,-7.103313399999934],[112.51794430000007,-7.103402599999981],[112.51672360000009,-7.107727499999953],[112.50145170000008,-7.106831299999953],[112.4964523000001,-7.118644199999949],[112.49744420000002,-7.124671899999953],[112.49647520000008,-7.127373699999964],[112.49123380000003,-7.127328399999953],[112.4876382000001,-7.128861499999971],[112.48746380000011,-7.126244799999938],[112.48503650000009,-7.127348],[112.47609480000006,-7.125655299999949],[112.4744392,-7.133821599999976],[112.4732414,-7.133989],[112.47151720000011,-7.144693099999927],[112.47347030000003,-7.145429299999932],[112.471624,-7.157249199999967],[112.47015910000005,-7.159326299999975],[112.473125,-7.159983],[112.47883610000008,-7.164400099999966],[112.48944090000009,-7.165408599999978],[112.4977798000001,-7.163551299999938],[112.50296020000008,-7.166761899999926],[112.5046082,-7.176578],[112.50428010000007,-7.186720799999932],[112.50231170000006,-7.192283199999963],[112.48411560000011,-7.197180299999957],[112.47772980000002,-7.200296399999957],[112.4730148000001,-7.204614599999957],[112.4704819000001,-7.202668199999948],[112.46846770000002,-7.203189799999961],[112.4650726000001,-7.207247299999949],[112.46181480000007,-7.208169399999974],[112.45737980000001,-7.206480899999974],[112.45258090000004,-7.208244699999966],[112.45085670000003,-7.212400799999955],[112.44714120000003,-7.216061],[112.4413886000001,-7.217173499999944],[112.44125370000006,-7.218852],[112.43643190000012,-7.222676299999932],[112.43582150000009,-7.226697899999976],[112.433754,-7.229057299999965],[112.4224617000001,-7.232716499999981],[112.41880550000008,-7.232251099999928],[112.41244920000008,-7.2399563],[112.413709,-7.244329499999935],[112.412969,-7.2489891],[112.40738420000002,-7.246979299999964],[112.40304350000008,-7.257114699999931],[112.39848330000007,-7.2611289],[112.39701250000007,-7.264568499999939],[112.4077148,-7.269609799999955],[112.41213990000006,-7.273727799999961],[112.41219320000005,-7.281433499999935],[112.40765380000005,-7.287697799999933],[112.40808110000012,-7.2952199],[112.41011050000009,-7.301245199999926],[112.40866850000009,-7.305942499999958],[112.40420530000006,-7.310390499999926],[112.39833830000009,-7.313620599999979],[112.39214320000008,-7.312950499999943],[112.3870773000001,-7.320058199999949],[112.37275690000001,-7.320459299999925],[112.36825560000011,-7.324729799999943],[112.37175,-7.326587],[112.371765,-7.323771],[112.37645,-7.323488],[112.37619,-7.327779],[112.37999700000012,-7.32681],[112.381859,-7.330095],[112.39128040000003,-7.333449399999949],[112.39481,-7.330941],[112.394103,-7.327046],[112.396133,-7.327395],[112.396756,-7.324857],[112.39792000000011,-7.32672],[112.401378,-7.325681],[112.40199040000005,-7.322332199999948],[112.40975190000006,-7.317613599999959],[112.41902920000007,-7.316798199999937],[112.41703240000004,-7.3127533],[112.423188,-7.31255],[112.421161,-7.314501],[112.421452,-7.317191],[112.428669,-7.310806],[112.43224970000006,-7.313972099999944],[112.44034580000005,-7.314096499999948],[112.4432303000001,-7.310784],[112.441498,-7.309281],[112.441978,-7.308053],[112.4474560000001,-7.303109],[112.447555,-7.306414],[112.44973,-7.307398],[112.450752,-7.305495],[112.452103,-7.309813],[112.455589,-7.311],[112.45704660000001,-7.308965],[112.4573256000001,-7.312040799999977],[112.4598999000001,-7.312901],[112.46234890000005,-7.312415099999953],[112.46782680000001,-7.3064504],[112.4716797000001,-7.304948299999978],[112.47738650000008,-7.305738899999938],[112.47866060000001,-7.309124],[112.47970530000009,-7.32926],[112.48449710000011,-7.336791499999947],[112.48468020000007,-7.340868899999975],[112.481907,-7.345164799999964],[112.482101,-7.348994],[112.478989,-7.349411],[112.478821,-7.351797],[112.476601,-7.352898],[112.4788132000001,-7.365692099999933],[112.47583770000006,-7.371327399999927],[112.47637940000004,-7.381835899999942],[112.48467160000007,-7.400149599999963],[112.48522350000007,-7.398938],[112.49208240000007,-7.399090699999931],[112.49372660000006,-7.409214599999927],[112.52375030000007,-7.403612599999974],[112.53068540000004,-7.406185599999958],[112.5381546000001,-7.405073199999947],[112.54248360000008,-7.405951799999968],[112.54282120000005,-7.404457299999933],[112.54909820000012,-7.403572799999949],[112.55232880000005,-7.400400899999966],[112.56738260000009,-7.397271399999966],[112.5683504000001,-7.3877496],[112.57001490000005,-7.387979399999949],[112.57041740000011,-7.391548599999965],[112.5718154000001,-7.391987699999959],[112.57475280000006,-7.388584],[112.57834620000006,-7.387087199999939],[112.5793761000001,-7.383669199999929],[112.5835571,-7.383378799999946],[112.58403770000007,-7.379687599999954],[112.588272,-7.375601099999926],[112.58892820000005,-7.370105599999931],[112.59237670000005,-7.3722146],[112.5968246000001,-7.372170799999935],[112.6131286000001,-7.368735199999946],[112.61824030000002,-7.366362],[112.6215896000001,-7.368008499999974],[112.62499990000003,-7.366806399999973],[112.62893670000005,-7.36808],[112.64264160000005,-7.360835099999974],[112.65353280000011,-7.362098299999957],[112.65397180000002,-7.3590018],[112.65634340000008,-7.356820099999936],[112.65438080000001,-7.356211199999962],[112.65575410000008,-7.342586],[112.65383150000002,-7.338997799999959],[112.64850910000007,-7.335300299999972],[112.650884,-7.321473499999968],[112.64833670000007,-7.318987499999935],[112.64949260000003,-7.314581799999928],[112.637001,-7.313098699999955],[112.63659440000004,-7.311503099999925],[112.62941890000002,-7.311640399999931],[112.62869260000002,-7.301264099999969],[112.62622060000001,-7.300080099999946],[112.62865280000005,-7.289640099999929],[112.62671650000004,-7.282863499999962],[112.62816610000004,-7.278729299999952],[112.62640370000008,-7.277211499999964],[112.63136280000003,-7.274660899999958],[112.63233180000009,-7.2617358],[112.62930290000008,-7.259722599999975],[112.6262283000001,-7.261333299999933],[112.6172027,-7.257561599999974],[112.61790460000009,-7.252652],[112.61424250000005,-7.252400699999953],[112.6145553,-7.248207399999956],[112.6065215000001,-7.248613199999966],[112.6019897000001,-7.246485599999971],[112.6064986,-7.240386299999955],[112.6038665000001,-7.237234],[112.60460660000001,-7.232767],[112.59781640000006,-7.228493599999979],[112.59877010000002,-7.227179399999955],[112.59694660000002,-7.223520099999973],[112.59154500000011,-7.222788199999968],[112.59325400000012,-7.215495899999951],[112.59731290000002,-7.222022899999956],[112.597702,-7.219065499999942],[112.60074610000004,-7.216823],[112.59805290000008,-7.215494499999977],[112.596466,-7.216381399999932],[112.59465780000005,-7.214729599999941],[112.5984496000001,-7.212452299999939],[112.59233860000006,-7.207057],[112.5926895,-7.202303899999947],[112.59916690000011,-7.203226099999938],[112.61344150000002,-7.209043],[112.6348190000001,-7.199635499999943],[112.65445710000006,-7.196051599999976],[112.65917210000009,-7.196354399999962],[112.66102880000005,-7.193307499999946]]],[[[112.745662,-5.808861499999978],[112.74698950000004,-5.806851599999959],[112.74447180000004,-5.807015599999943],[112.74331210000003,-5.808766099999957],[112.745662,-5.808861499999978]]],[[[112.77662210000005,-5.803567599999951],[112.77282260000004,-5.802208199999939],[112.77239540000005,-5.797322],[112.76813820000007,-5.797575199999926],[112.770633,-5.801012199999946],[112.77082370000005,-5.804289099999949],[112.7749665,-5.805416799999932],[112.77662210000005,-5.803567599999951]]],[[[112.56294560000003,-5.801965399999972],[112.56394510000007,-5.798665299999925],[112.5624573,-5.796433199999967],[112.5600922000001,-5.798362],[112.56294560000003,-5.801965399999972]]],[[[112.58577280000009,-5.775264499999935],[112.58782510000003,-5.769690699999956],[112.58701640000004,-5.768257299999959],[112.58179790000008,-5.770298699999955],[112.58308720000002,-5.774605],[112.58577280000009,-5.775264499999935]]],[[[112.545192,-5.751463099999967],[112.54523780000011,-5.749335],[112.54358220000006,-5.750322099999948],[112.545192,-5.751463099999967]]],[[[112.60473180000008,-5.758417299999962],[112.60603640000011,-5.750980599999934],[112.60357980000003,-5.745070699999928],[112.60180980000007,-5.747513499999968],[112.601619,-5.755547699999966],[112.60473180000008,-5.758417299999962]]],[[[112.61651160000008,-5.7369492],[112.6181901000001,-5.731879],[112.61579440000003,-5.729522399999951],[112.613704,-5.734185399999944],[112.61651160000008,-5.7369492]]],[[[112.70341040000005,-5.734726199999955],[112.690265,-5.726689499999964],[112.68863990000011,-5.7238805],[112.68860940000002,-5.719164599999942],[112.68641980000007,-5.717796499999963],[112.680507,-5.719726299999934],[112.67875220000008,-5.723186699999928],[112.67542580000008,-5.724815099999944],[112.6763413000001,-5.7337238],[112.672168,-5.737829899999952],[112.66578990000005,-5.737577199999976],[112.66410380000002,-5.7345383],[112.65724490000002,-5.731240499999956],[112.6481126000001,-5.7313478],[112.6368897000001,-5.737850399999957],[112.63250280000011,-5.744947599999932],[112.62666630000001,-5.749408],[112.61284190000003,-5.752703899999972],[112.61136940000006,-5.757197599999927],[112.61202550000007,-5.770593799999972],[112.60756230000004,-5.774184],[112.602504,-5.774326499999972],[112.60094,-5.771631899999932],[112.59823160000008,-5.770381699999973],[112.58980870000005,-5.774510599999928],[112.58821420000004,-5.777280099999928],[112.58989270000006,-5.778765899999939],[112.58732920000011,-5.783323],[112.58860330000005,-5.784868899999935],[112.58799290000002,-5.7886679],[112.58633740000005,-5.790229499999953],[112.5796769000001,-5.790611],[112.58430790000011,-5.797429299999976],[112.58205730000009,-5.805665699999963],[112.57937170000002,-5.807750399999975],[112.57320720000007,-5.805311399999937],[112.56982730000004,-5.806767699999966],[112.56904150000003,-5.809934799999951],[112.57123880000006,-5.812913099999946],[112.57853250000005,-5.811665699999935],[112.5798066000001,-5.813211599999931],[112.57524420000004,-5.829281499999979],[112.58479620000003,-5.831587499999955],[112.58294230000001,-5.838498299999969],[112.57914280000011,-5.837656699999968],[112.57738040000004,-5.840369399999929],[112.577121,-5.845776299999955],[112.58188180000002,-5.844198],[112.58758860000012,-5.847042299999941],[112.5914338,-5.855532399999959],[112.59836890000008,-5.853194],[112.6100037000001,-5.857903699999952],[112.61378790000003,-5.855295399999932],[112.62193610000008,-5.854445699999928],[112.623401,-5.858865899999955],[112.61967020000009,-5.8697555],[112.62225650000005,-5.869338699999957],[112.62509470000009,-5.863974799999937],[112.6241563000001,-5.860242099999937],[112.6278794000001,-5.858036199999958],[112.62743690000002,-5.851424899999927],[112.62943580000001,-5.848941499999967],[112.6279862,-5.846878699999934],[112.6304963,-5.843759699999964],[112.63422710000009,-5.843394],[112.646724,-5.847639299999969],[112.65174420000005,-5.851407299999948],[112.65784,-5.852466799999945],[112.66553050000005,-5.850066899999945],[112.669864,-5.854298799999981],[112.6788666000001,-5.851489299999969],[112.68381810000005,-5.852727099999981],[112.68478710000011,-5.860428099999979],[112.68326880000006,-5.866590199999962],[112.68970800000011,-5.867647399999953],[112.6894334000001,-5.859483],[112.68596960000002,-5.857201299999929],[112.6865266000001,-5.854553],[112.69140940000011,-5.853951199999926],[112.69397290000006,-5.850428799999975],[112.700702,-5.851197399999933],[112.7057297,-5.845821599999965],[112.71364910000011,-5.844570399999952],[112.7193635000001,-5.838558399999954],[112.72065280000004,-5.833490599999948],[112.72726750000004,-5.834087099999977],[112.73282940000001,-5.831526],[112.7326081000001,-5.824281399999961],[112.72763370000007,-5.818672399999969],[112.727794,-5.816543799999977],[112.73250130000008,-5.805821099999946],[112.73224950000008,-5.802027],[112.73533940000004,-5.798904599999958],[112.73891,-5.791524099999947],[112.74257970000008,-5.789146199999948],[112.73965770000007,-5.781513399999938],[112.73198250000007,-5.775459499999954],[112.73288280000008,-5.771888899999965],[112.7368729000001,-5.766403899999943],[112.73335580000003,-5.764582399999938],[112.73119670000005,-5.759418699999969],[112.7273133000001,-5.762890099999936],[112.725406,-5.761635499999954],[112.72675640000011,-5.747020899999939],[112.72565010000005,-5.743921499999942],[112.72780920000002,-5.740343799999948],[112.72728280000001,-5.7381041],[112.7214768,-5.738538],[112.71749430000011,-5.735684599999956],[112.7162125000001,-5.732815899999935],[112.71374060000005,-5.732426799999928],[112.71088720000012,-5.734915499999943],[112.70341040000005,-5.734726199999955]]],[[[112.7116502,-5.721467699999948],[112.7098496000001,-5.718096],[112.70756840000001,-5.718043099999932],[112.70919350000008,-5.721071399999971],[112.7116502,-5.721467699999948]]],[[[112.696872,-5.717509],[112.6968644000001,-5.715208699999948],[112.6956666000001,-5.716653099999974],[112.696872,-5.717509]]],[[[112.71421360000011,-5.718008699999928],[112.71474770000009,-5.716369399999962],[112.71046,-5.71441],[112.71210790000009,-5.7175457],[112.71421360000011,-5.718008699999928]]],[[[112.70450140000003,-5.714247],[112.70234990000006,-5.7142579],[112.70194560000004,-5.715574],[112.70695050000006,-5.714880199999925],[112.70450140000003,-5.714247]]]]},"properties":{"shapeName":"Gresik","shapeISO":"","shapeID":"22746128B62175087427228","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[111.11525690000008,-6.916257499999972],[111.11484760000008,-6.914797499999963],[111.11588310000008,-6.9148389],[111.11464410000008,-6.913927],[111.11024040000007,-6.912865699999941],[111.11076090000006,-6.915919],[111.104857,-6.919279099999926],[111.10072520000006,-6.926542299999937],[111.10149480000007,-6.927494],[111.09896850000007,-6.928417199999956],[111.09668410000006,-6.933215399999938],[111.09257360000004,-6.934192099999962],[111.09039390000004,-6.937142899999969],[111.08370680000007,-6.937782099999936],[111.07793750000008,-6.942360099999973],[111.07853980000004,-6.945492399999978],[111.08445930000005,-6.948359399999958],[111.08504160000007,-6.950236099999927],[111.08909540000008,-6.948834399999953],[111.09261870000006,-6.950799],[111.08997240000008,-6.954712299999926],[111.08204650000005,-6.959290899999928],[111.07548520000006,-6.961272199999939],[111.069721,-6.969056399999943],[111.05835720000005,-6.968744699999945],[111.05015560000004,-6.966855499999951],[111.04147340000009,-6.970591499999955],[111.03278380000006,-6.972347199999945],[111.02894590000005,-6.971987199999944],[111.02474970000009,-6.969220099999973],[111.01567080000007,-6.9685678],[111.00840760000006,-6.969805699999938],[111.00048060000006,-6.968910199999925],[110.98519360000006,-6.9710861],[110.98036960000007,-6.970110399999953],[110.97842410000004,-6.9672789],[110.97238910000004,-6.966332399999942],[110.97018630000008,-6.964387099999954],[110.96970680000004,-6.968114299999968],[110.96424350000007,-6.965768799999978],[110.96378210000006,-6.969300899999951],[110.96219390000005,-6.970375799999943],[110.95302350000009,-6.9704773],[110.94895120000007,-6.9672404],[110.94798410000004,-6.968606299999976],[110.94997750000005,-6.970390299999963],[110.94717820000005,-6.971532699999955],[110.94675110000009,-6.974773],[110.94546240000005,-6.974904599999945],[110.939489,-6.974120399999947],[110.93603920000004,-6.9721684],[110.93437810000006,-6.974162399999955],[110.92938870000006,-6.971298499999932],[110.92559090000009,-6.972145399999931],[110.92379,-6.969320299999936],[110.92061610000007,-6.969645499999956],[110.92050930000005,-6.967430099999945],[110.91577910000007,-6.9659791],[110.916893,-6.962815299999932],[110.91509250000007,-6.961588399999926],[110.91353720000006,-6.966076899999962],[110.91175020000009,-6.965796299999965],[110.90647890000008,-6.975778599999956],[110.905216,-6.984234299999969],[110.90037730000006,-6.988332599999978],[110.88698280000006,-6.9848145],[110.88461660000007,-6.980140499999948],[110.88576240000003,-6.969131799999957],[110.875,-6.972906099999932],[110.87258910000008,-6.975615499999947],[110.86753080000005,-6.975432399999931],[110.86516570000003,-6.979810199999974],[110.86050410000007,-6.982115699999952],[110.85576630000008,-6.987382899999943],[110.85150910000004,-6.998808399999973],[110.847702,-6.997862299999952],[110.84812160000007,-6.995791399999973],[110.84527590000005,-6.990210499999932],[110.84056850000007,-6.9933729],[110.83554080000005,-6.991060199999936],[110.82640070000008,-7.001667],[110.82365420000008,-7.001076699999942],[110.81983190000005,-6.995999799999936],[110.81819150000007,-6.996435099999928],[110.81505590000006,-7.003669199999933],[110.81089780000008,-7.000000399999976],[110.80831150000006,-6.9924111],[110.80406950000008,-6.989689299999952],[110.80390930000004,-6.979570899999942],[110.80324340000004,-6.9717045],[110.79344180000004,-6.958892299999945],[110.78732170000006,-6.956389699999932],[110.78624540000004,-6.952841699999965],[110.78198240000006,-6.949458599999957],[110.77861020000006,-6.948655099999939],[110.77391520000003,-6.951181399999939],[110.77404720000004,-6.958735799999943],[110.77646570000007,-6.964059599999928],[110.77343980000006,-6.965408899999943],[110.76990690000008,-6.962672299999952],[110.76497990000007,-6.965524499999958],[110.76330390000004,-6.968132199999957],[110.76552770000006,-6.969381299999952],[110.77034770000006,-6.967791199999965],[110.77118440000004,-6.969268099999965],[110.76906490000005,-6.972220099999959],[110.77424620000005,-6.9753084],[110.76854710000003,-6.980073],[110.76271060000005,-6.979759699999931],[110.76136780000007,-6.982946399999946],[110.76224520000005,-6.985246199999949],[110.76741790000005,-6.983979199999965],[110.77268220000008,-6.989680299999975],[110.77201840000004,-6.991160799999932],[110.76694490000006,-6.9906645],[110.768486,-6.996377399999972],[110.763649,-6.997630599999979],[110.76377870000005,-7.000000399999976],[110.77464290000006,-6.999032499999942],[110.77569580000005,-7.001930699999946],[110.77145380000007,-7.004642],[110.76652530000007,-7.003053199999954],[110.76419830000009,-7.003925799999934],[110.76887510000006,-7.010550499999965],[110.76840970000006,-7.014174399999945],[110.76547240000008,-7.014420499999972],[110.76420590000004,-7.018190799999957],[110.76065830000005,-7.016691699999967],[110.75785830000007,-7.018915199999981],[110.76264950000007,-7.021733299999937],[110.72946930000006,-7.032909899999936],[110.69366450000007,-7.018229499999961],[110.69320060000007,-7.020055],[110.69961190000004,-7.021502899999973],[110.69861610000004,-7.025907699999948],[110.69214570000008,-7.024894599999925],[110.69091840000004,-7.029994599999952],[110.69461820000004,-7.030793599999981],[110.69317630000006,-7.033728099999962],[110.68994140000007,-7.032156899999961],[110.67713160000005,-7.046371],[110.67875670000006,-7.047584499999971],[110.67704040000007,-7.050775399999964],[110.67420670000007,-7.0495065],[110.66946410000008,-7.054338899999948],[110.66780090000009,-7.052901199999951],[110.66945650000008,-7.052034399999968],[110.66827390000009,-7.049976799999968],[110.67054750000005,-7.049130899999966],[110.66924290000009,-7.047114299999976],[110.670433,-7.0427437],[110.67417140000003,-7.041754199999957],[110.67452240000006,-7.0384469],[110.67610170000006,-7.037342099999933],[110.67938230000004,-7.037943799999937],[110.68022920000004,-7.034130499999947],[110.68173980000006,-7.035599199999979],[110.68338780000005,-7.034856299999944],[110.68170170000008,-7.032777799999963],[110.68965150000008,-7.025197],[110.69090270000004,-7.021105299999931],[110.69076540000009,-7.017074599999944],[110.68806460000008,-7.014271699999938],[110.68029020000006,-7.013729099999978],[110.67996220000003,-7.011713499999928],[110.67655790000003,-7.011496899999941],[110.673233,-7.008194899999978],[110.67330930000008,-7.005528399999946],[110.67523190000009,-7.004940499999975],[110.68041230000006,-6.996782799999949],[110.67675780000008,-6.991211399999941],[110.67843630000004,-6.987184],[110.674736,-6.987235],[110.66814420000009,-6.982879199999957],[110.67103570000006,-6.980834499999958],[110.66936490000006,-6.979131199999927],[110.67165380000006,-6.977883299999974],[110.67174530000005,-6.976106099999981],[110.66324620000006,-6.975861],[110.65810390000007,-6.973399099999938],[110.65265660000006,-6.975075699999934],[110.65091710000007,-6.974150599999973],[110.64455410000005,-6.978965699999947],[110.63826750000004,-6.976400299999966],[110.63392640000006,-6.979378699999927],[110.63093540000006,-6.979107599999963],[110.63089940000003,-6.984232199999951],[110.62261940000008,-6.981291599999963],[110.61943050000008,-6.982597799999951],[110.61908370000003,-6.984607199999971],[110.621645,-6.985712799999931],[110.62031,-6.986544899999956],[110.62274250000007,-6.989779699999929],[110.62197310000005,-6.992412],[110.62428990000006,-6.9941221],[110.62165460000006,-7.000983],[110.62390140000008,-7.004359699999952],[110.62351990000008,-7.007524499999931],[110.62239390000008,-7.010952799999927],[110.61413670000007,-7.020131],[110.61952520000006,-7.0211468],[110.60924530000005,-7.036408899999969],[110.60433960000006,-7.046463],[110.59936520000008,-7.048691699999949],[110.59506220000009,-7.055835199999933],[110.59384920000008,-7.067987],[110.59214780000008,-7.067194399999948],[110.59123230000006,-7.070788399999969],[110.58808140000008,-7.073221199999978],[110.58731080000007,-7.07096],[110.58483890000008,-7.071592799999962],[110.58547970000006,-7.070160399999963],[110.58357240000004,-7.069443199999967],[110.57529450000004,-7.070209499999976],[110.57378390000008,-7.073815299999978],[110.571803,-7.073949899999946],[110.57096630000007,-7.075687],[110.56842290000009,-7.0755381],[110.56523280000005,-7.086920499999962],[110.56322650000004,-7.087749299999928],[110.563321,-7.091267599999981],[110.56144330000006,-7.090378299999941],[110.56199650000008,-7.094563],[110.56478120000008,-7.093235],[110.564888,-7.095896699999969],[110.56946560000006,-7.097408299999927],[110.57350160000004,-7.100807199999963],[110.57897950000006,-7.111605599999962],[110.58495330000005,-7.1144838],[110.59260560000007,-7.115219099999933],[110.59442140000004,-7.119925899999942],[110.59345250000007,-7.123405399999967],[110.58721920000005,-7.128820399999938],[110.58215330000007,-7.130141699999967],[110.58008570000004,-7.132378099999926],[110.55827370000009,-7.139654],[110.56122540000007,-7.142120199999965],[110.55744510000005,-7.146703599999967],[110.558182,-7.151749499999937],[110.55388920000007,-7.160103899999967],[110.553755,-7.168241899999941],[110.55161070000008,-7.1670628],[110.54784710000007,-7.167845599999964],[110.54196620000005,-7.177212299999951],[110.54160290000004,-7.181665499999951],[110.545166,-7.182937099999947],[110.54389490000005,-7.185389899999961],[110.54597980000005,-7.185079],[110.54404450000004,-7.188552799999968],[110.546196,-7.192299299999945],[110.54600530000005,-7.194927699999937],[110.55089570000007,-7.194138499999951],[110.55148310000004,-7.192739499999959],[110.55390930000004,-7.193763199999978],[110.55425260000004,-7.190207899999962],[110.55662540000009,-7.190456299999937],[110.55420940000005,-7.1891086],[110.55550770000008,-7.187167699999975],[110.55965420000007,-7.192671699999948],[110.56166840000009,-7.191841599999975],[110.56227050000007,-7.188046799999938],[110.563902,-7.191341399999942],[110.56613920000007,-7.190238499999964],[110.56874850000008,-7.194382599999926],[110.57012180000004,-7.192227799999955],[110.56907650000005,-7.189295699999946],[110.57042690000009,-7.1889562],[110.57656640000005,-7.195195299999966],[110.57632320000005,-7.198882399999945],[110.578949,-7.196869299999946],[110.57994840000003,-7.200217699999939],[110.58406210000004,-7.202777],[110.58532490000005,-7.2006503],[110.58900080000006,-7.200796299999979],[110.58971320000006,-7.197527299999933],[110.59339,-7.19944],[110.60082,-7.19993],[110.60084,-7.19515],[110.60641,-7.19489],[110.61296,-7.19941],[110.6116,-7.21226],[110.61322960000007,-7.2151777],[110.616745,-7.217927399999951],[110.62410730000005,-7.2170553],[110.62699890000005,-7.217885899999942],[110.62759910000005,-7.219434899999953],[110.64407350000005,-7.219048499999928],[110.64804080000005,-7.223061099999939],[110.65624240000005,-7.226382699999931],[110.65932460000005,-7.224726199999964],[110.661705,-7.225249299999973],[110.66218570000007,-7.223627499999964],[110.66796880000004,-7.227539499999978],[110.66902160000006,-7.228826499999968],[110.666893,-7.230979399999967],[110.67218780000007,-7.234204299999931],[110.67379760000006,-7.237567899999931],[110.68296810000004,-7.241555699999935],[110.69248780000004,-7.240438199999971],[110.692131,-7.237511099999949],[110.69460630000009,-7.230680699999937],[110.69307710000004,-7.229238],[110.69436650000006,-7.224107699999934],[110.69747160000009,-7.222861299999977],[110.698883,-7.2195358],[110.70478820000005,-7.217060099999969],[110.70583340000007,-7.215096899999935],[110.70534520000007,-7.212173499999949],[110.70359040000005,-7.212056599999926],[110.70473480000004,-7.208796],[110.69863130000005,-7.207048899999961],[110.69669340000007,-7.207758899999931],[110.69281770000003,-7.205294099999946],[110.69306180000007,-7.199051299999951],[110.69136810000003,-7.198330899999974],[110.69098660000009,-7.193323599999928],[110.68920140000006,-7.191747199999952],[110.69017790000004,-7.189354399999957],[110.69217680000008,-7.187181],[110.69744110000005,-7.185339399999975],[110.70408630000009,-7.185118199999977],[110.708168,-7.178855399999975],[110.71312710000007,-7.175738299999978],[110.72368620000009,-7.16502],[110.727829,-7.157229899999948],[110.72790530000009,-7.152789599999949],[110.73452,-7.143651],[110.74161530000003,-7.140994099999944],[110.742363,-7.139133399999935],[110.74567410000009,-7.140473799999938],[110.74996190000007,-7.148775099999966],[110.74784850000009,-7.149926199999925],[110.74726870000006,-7.153137699999945],[110.743248,-7.155902799999978],[110.74383550000005,-7.164280399999939],[110.75782780000009,-7.170360499999958],[110.760425,-7.175427199999945],[110.76455990000005,-7.175886699999978],[110.76408120000008,-7.1743431],[110.76943510000007,-7.177422799999931],[110.76644130000005,-7.180337899999927],[110.76090240000008,-7.179819099999975],[110.759552,-7.182340099999976],[110.76023860000004,-7.186352199999931],[110.76247860000007,-7.187420199999963],[110.76419120000008,-7.185045399999979],[110.76843910000008,-7.1834482],[110.77043850000007,-7.186440699999935],[110.77765160000007,-7.1861821],[110.77630620000008,-7.190982799999972],[110.77858730000008,-7.191267499999981],[110.77944940000003,-7.189055899999971],[110.78163150000006,-7.189200399999947],[110.78550720000004,-7.193872899999974],[110.78102870000004,-7.203849299999945],[110.78024290000008,-7.213399399999957],[110.77669530000009,-7.2192926],[110.77636690000008,-7.221308699999952],[110.77774050000005,-7.222087399999964],[110.77301790000007,-7.223655699999938],[110.77218450000004,-7.226264499999957],[110.77034090000006,-7.226678599999957],[110.77191930000004,-7.235430199999939],[110.76679230000008,-7.244444299999941],[110.78084560000008,-7.245309799999973],[110.78878020000008,-7.243477799999937],[110.79357910000004,-7.240426499999955],[110.80802920000008,-7.228659599999958],[110.80879210000006,-7.223302299999943],[110.81203460000006,-7.2187304],[110.82419580000004,-7.212311299999953],[110.82633210000006,-7.2088003],[110.82747650000005,-7.202247099999965],[110.83333590000007,-7.197927399999969],[110.84461970000007,-7.200379799999951],[110.84583280000004,-7.202770699999974],[110.84925080000005,-7.201468],[110.85292050000004,-7.206766099999925],[110.85768650000006,-7.210318499999971],[110.85834940000007,-7.215797799999962],[110.85478590000008,-7.2155203],[110.85147090000004,-7.217464899999925],[110.84591060000008,-7.214438799999925],[110.84303740000007,-7.2164009],[110.84329810000008,-7.2191126],[110.83824160000006,-7.221112199999936],[110.83361050000008,-7.230077199999926],[110.82784270000008,-7.236678599999948],[110.82794190000004,-7.247489899999948],[110.82904050000008,-7.249135499999966],[110.83002470000008,-7.248408299999937],[110.82987980000007,-7.250104399999941],[110.83146670000008,-7.249771599999974],[110.83181760000008,-7.251739],[110.83494570000005,-7.2524199],[110.83451080000009,-7.254461299999946],[110.83575440000004,-7.254440699999975],[110.83759310000005,-7.259096599999964],[110.84340670000006,-7.263375699999926],[110.84413150000006,-7.262692399999935],[110.84551240000008,-7.267922799999951],[110.85034180000008,-7.265637799999979],[110.85322570000005,-7.265937299999962],[110.846962,-7.268665799999951],[110.84866330000006,-7.269834],[110.84938050000005,-7.268399699999975],[110.854042,-7.2679338],[110.85197450000004,-7.269869299999925],[110.85535430000004,-7.269502599999953],[110.85779570000005,-7.271109099999933],[110.86749270000007,-7.265151],[110.87119290000004,-7.269153599999981],[110.86972810000009,-7.273117499999955],[110.87435150000005,-7.276205],[110.87699890000005,-7.277292699999975],[110.87696840000007,-7.275078299999961],[110.87876130000006,-7.274222799999961],[110.88919070000009,-7.272666899999933],[110.89505010000005,-7.273841399999981],[110.89699550000006,-7.2755213],[110.90083310000006,-7.275914599999965],[110.89984890000005,-7.279437499999972],[110.90074920000006,-7.282012899999927],[110.904686,-7.283214],[110.907753,-7.281441199999961],[110.91735080000007,-7.282009599999981],[110.91970060000006,-7.280487],[110.92224120000009,-7.269586499999946],[110.92454530000003,-7.271908699999926],[110.925209,-7.275075899999933],[110.92884830000008,-7.277649399999973],[110.93194580000005,-7.276108199999953],[110.93847660000006,-7.277828199999931],[110.94498440000007,-7.277204],[110.94792180000007,-7.281345299999941],[110.955368,-7.2827124],[110.96361540000004,-7.275963299999944],[110.96869660000004,-7.275548399999934],[110.970993,-7.277550699999949],[110.97732540000004,-7.276204599999971],[110.978157,-7.277417599999978],[110.981575,-7.277307],[110.985405,-7.276446799999974],[110.98642730000006,-7.274418799999978],[110.99498750000004,-7.273939599999949],[110.99649050000005,-7.267530399999941],[111.00558470000004,-7.2660765],[111.007225,-7.260866599999929],[111.013031,-7.2621612],[111.01808170000004,-7.258871099999965],[111.02096550000005,-7.260689199999945],[111.02338410000004,-7.2581606],[111.02986910000004,-7.256733899999972],[111.03311920000004,-7.257889199999966],[111.03198240000006,-7.2644973],[111.04135130000009,-7.266964399999949],[111.04566950000009,-7.266111799999976],[111.05433650000003,-7.26825],[111.05784610000006,-7.270611699999961],[111.06078340000005,-7.269930799999941],[111.06546780000008,-7.267148899999938],[111.07224270000006,-7.2671251],[111.07486730000005,-7.262598],[111.07925410000007,-7.262044399999979],[111.07872010000006,-7.257393299999933],[111.08020020000004,-7.254268599999932],[111.08510590000009,-7.254842699999926],[111.08896640000006,-7.251056199999937],[111.09146880000009,-7.252872399999944],[111.09530640000008,-7.252455199999929],[111.098175,-7.249058699999978],[111.10707850000006,-7.247235699999976],[111.11185450000005,-7.249248499999965],[111.123436,-7.248821699999951],[111.12586970000007,-7.251235],[111.127449,-7.2579889],[111.13406370000007,-7.259649699999954],[111.13613130000005,-7.261796899999979],[111.143753,-7.261670599999945],[111.14630130000006,-7.264508199999966],[111.148674,-7.264358499999958],[111.15023040000005,-7.260190499999965],[111.15274050000005,-7.260156599999959],[111.155838,-7.257914],[111.16057580000006,-7.2580433],[111.16270450000007,-7.260406899999964],[111.16702270000008,-7.260571],[111.16835780000008,-7.2633986],[111.17472080000005,-7.262608],[111.17766570000003,-7.264386599999966],[111.18249510000004,-7.2595272],[111.18965910000009,-7.259792799999957],[111.19351960000006,-7.256257499999947],[111.19973750000008,-7.2558379],[111.19915770000006,-7.249230799999964],[111.19714350000004,-7.246656899999948],[111.19966890000006,-7.245317399999976],[111.208313,-7.244931699999938],[111.21237050000008,-7.246907799999974],[111.21931560000007,-7.246673],[111.22719630000006,-7.2438912],[111.23435130000007,-7.244025099999931],[111.23786180000008,-7.241020499999934],[111.236644,-7.230798199999981],[111.23941980000006,-7.226774],[111.242691,-7.213636799999961],[111.24237060000007,-7.209690099999932],[111.24428560000007,-7.207516599999963],[111.24335480000008,-7.202057799999977],[111.24579620000009,-7.192688399999952],[111.24510950000007,-7.1869225],[111.24668120000007,-7.181543799999929],[111.24509430000006,-7.177644699999973],[111.246849,-7.171814899999958],[111.24294280000004,-7.1692819],[111.24143980000008,-7.165915],[111.24046320000008,-7.138523099999929],[111.23794550000008,-7.137893199999951],[111.23469540000008,-7.131362899999942],[111.23202510000004,-7.119765699999959],[111.22339630000005,-7.103551399999958],[111.22112270000008,-7.085288],[111.21823880000005,-7.083489899999961],[111.21374590000005,-7.077113099999963],[111.21562780000005,-7.076305299999945],[111.21739960000008,-7.0702018],[111.21527860000003,-7.0638938],[111.215683,-7.057058299999937],[111.21770470000007,-7.0553608],[111.21878810000004,-7.050194699999963],[111.21665190000004,-7.046186399999954],[111.21772760000005,-7.044828799999948],[111.21802520000006,-7.030528],[111.21315,-7.0208964],[111.20991510000005,-7.019552199999964],[111.20679470000005,-7.021322699999928],[111.20166780000005,-7.017956199999958],[111.19688410000003,-7.006845399999975],[111.19181820000006,-7.004290099999935],[111.18822480000006,-6.998092099999951],[111.17366030000005,-6.991140299999927],[111.17137150000008,-6.985499299999958],[111.16511,-6.98137],[111.16106420000006,-6.980772899999977],[111.154808,-6.983628299999964],[111.14721680000008,-6.980653199999949],[111.14007570000007,-6.981140099999948],[111.13272860000006,-6.977285399999971],[111.12115680000005,-6.976562899999976],[111.11379890000006,-6.979028599999936],[111.11129180000006,-6.978038399999946],[111.10986330000009,-6.969973099999947],[111.10654450000004,-6.962053699999956],[111.10985560000006,-6.953637599999979],[111.11058810000009,-6.944917199999963],[111.113121,-6.940294199999926],[111.11302950000004,-6.923531499999967],[111.11525690000008,-6.916257499999972]]]},"properties":{"shapeName":"Grobogan","shapeISO":"","shapeID":"22746128B83161082513953","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[110.33974320000004,-8.028013299999941],[110.344426,-8.030248],[110.348176,-8.04079],[110.35466,-8.051809],[110.363863,-8.060021],[110.368033,-8.061086],[110.375226,-8.071614],[110.387273,-8.072517],[110.391617,-8.07616],[110.396474,-8.076873],[110.398633,-8.07885],[110.40118,-8.077841],[110.404161,-8.079921],[110.408654,-8.079229],[110.409688,-8.081396],[110.41625,-8.082581],[110.415992,-8.08438],[110.417991,-8.084654],[110.418566,-8.086643],[110.430056,-8.088906],[110.43471850000009,-8.093480599999964],[110.433879,-8.098503],[110.435858,-8.098296],[110.43623,-8.100026],[110.438021,-8.09939],[110.43874,-8.100553],[110.44056,-8.098986],[110.441881,-8.100891],[110.450397,-8.100523],[110.46198,-8.106227],[110.467139,-8.110303],[110.468196,-8.109454],[110.469028,-8.110565],[110.468906,-8.107919],[110.472147,-8.110671],[110.476311,-8.109813],[110.481402,-8.112219],[110.485615,-8.112009],[110.485812,-8.113493],[110.489273,-8.113998],[110.491183,-8.117231],[110.496204,-8.116657],[110.496741,-8.118019],[110.50287,-8.118613],[110.506373,-8.121002],[110.509523,-8.121124],[110.512368,-8.124004],[110.514364,-8.121388],[110.514042,-8.123386],[110.516178,-8.122767],[110.516639,-8.124999],[110.521319,-8.125785],[110.52259,-8.128777],[110.523942,-8.127686],[110.526145,-8.128708],[110.525422,-8.130065],[110.527704,-8.129666],[110.527216,-8.131386],[110.52903,-8.131781],[110.530362,-8.130151],[110.532348,-8.131519],[110.534408,-8.129845],[110.535161,-8.131259],[110.545448,-8.13511],[110.544778,-8.131788],[110.546448,-8.131792],[110.54781150000008,-8.1283654],[110.549961,-8.134494],[110.553489,-8.133368],[110.563713,-8.136747],[110.57879560000003,-8.137972799999943],[110.583437,-8.140825],[110.585482,-8.144851],[110.593774,-8.148127],[110.594925,-8.147013],[110.595673,-8.149299],[110.598611,-8.145672],[110.603096,-8.145208],[110.625218,-8.158406],[110.63675,-8.161959],[110.6441,-8.168345],[110.652518,-8.170093],[110.651699,-8.171598],[110.654262,-8.173183],[110.658877,-8.172727],[110.662364,-8.17671],[110.663532,-8.175778],[110.66521,-8.17708],[110.668969,-8.176871],[110.67306,-8.17923],[110.673897,-8.181497],[110.676354,-8.180507],[110.679341,-8.182962],[110.682896,-8.181881],[110.683905,-8.184455],[110.689281,-8.184816],[110.691085,-8.187122],[110.693506,-8.186083],[110.696758,-8.187095],[110.699082,-8.185682],[110.699874,-8.187193],[110.701515,-8.184532],[110.704387,-8.185895],[110.707028,-8.183416],[110.709716,-8.185862],[110.710359,-8.190325],[110.709889,-8.192934],[110.707668,-8.19287],[110.705933,-8.1958],[110.706266,-8.200074],[110.709687,-8.200901],[110.714621,-8.197469],[110.7183,-8.198227],[110.71797,-8.199835],[110.719813,-8.198808],[110.720196,-8.199776],[110.722289,-8.19701],[110.724957,-8.19961],[110.729121,-8.194011],[110.73654250000004,-8.192353199999957],[110.74865460000007,-8.196978499999943],[110.75375990000003,-8.19526],[110.75519230000003,-8.19735989999998],[110.763636,-8.195141],[110.766726,-8.196738],[110.772741,-8.195259],[110.773639,-8.196732],[110.776037,-8.19563],[110.781298,-8.196372],[110.787124,-8.192457],[110.789375,-8.194029],[110.790757,-8.192446],[110.794892,-8.192989],[110.79812060000006,-8.189804899999956],[110.79896020000007,-8.191263699999979],[110.797439,-8.195579099999975],[110.79945020000008,-8.197933699999965],[110.80582810000004,-8.198182499999973],[110.80562070000008,-8.199569599999961],[110.80755020000004,-8.2006281],[110.81001010000006,-8.198731099999975],[110.81826890000008,-8.199869299999932],[110.82127020000007,-8.203323699999942],[110.82500140000008,-8.202350299999978],[110.82894670000007,-8.203964399999961],[110.82982330000004,-8.201424799999927],[110.82923890000006,-8.194750799999952],[110.83463290000009,-8.189838399999928],[110.83255,-8.180794699999979],[110.83421330000004,-8.175752599999953],[110.83318330000009,-8.173638299999936],[110.82636260000004,-8.1697836],[110.82308960000006,-8.161266299999966],[110.81840520000009,-8.1585788],[110.81641390000004,-8.153625499999976],[110.81855770000004,-8.144305199999962],[110.81712340000007,-8.14363],[110.81212620000008,-8.146821],[110.80973820000008,-8.155511799999942],[110.79930110000004,-8.1625547],[110.796196,-8.162288599999954],[110.79099270000006,-8.1589937],[110.78702540000006,-8.153210599999966],[110.78549960000004,-8.139707499999929],[110.78776550000003,-8.128459899999939],[110.78989410000008,-8.125518799999952],[110.78916930000008,-8.114723199999958],[110.78733820000008,-8.102284399999974],[110.77954860000006,-8.0849571],[110.77851870000006,-8.067645],[110.77180480000004,-8.057982399999958],[110.76655580000005,-8.044120799999973],[110.75730130000005,-8.032177899999965],[110.75417330000005,-8.025791099999935],[110.75688170000006,-8.012255599999946],[110.76174930000008,-8.003481799999975],[110.76078030000008,-7.991148399999929],[110.76218410000007,-7.991794599999935],[110.76602170000007,-7.990042699999947],[110.76843260000004,-7.979480699999954],[110.76828770000009,-7.955642199999943],[110.77170560000008,-7.945043099999964],[110.77009580000004,-7.941996499999959],[110.770411,-7.931320199999959],[110.77212520000006,-7.926809299999945],[110.769165,-7.915411399999925],[110.77104950000006,-7.902040899999974],[110.77416230000006,-7.895655599999941],[110.77703860000008,-7.894098299999939],[110.777832,-7.891917199999966],[110.77545930000008,-7.886712],[110.77726740000008,-7.879737299999931],[110.78398890000005,-7.872339199999942],[110.78289030000008,-7.871325],[110.78406520000004,-7.869195399999967],[110.78288270000007,-7.866980499999954],[110.78395840000007,-7.866295799999932],[110.78256220000009,-7.862922599999933],[110.78429410000007,-7.860739199999955],[110.78405760000004,-7.8577652],[110.78620150000006,-7.857655],[110.78828430000004,-7.855024799999967],[110.78800960000007,-7.851132399999926],[110.78311920000004,-7.851540499999942],[110.78453830000007,-7.847318199999961],[110.782486,-7.846478],[110.782959,-7.829908799999941],[110.78472140000008,-7.826713499999926],[110.78567860000004,-7.816686499999946],[110.77983390000009,-7.81388],[110.778102,-7.815381599999967],[110.775363,-7.813848599999972],[110.77505320000006,-7.810979],[110.77218160000007,-7.8085433],[110.76449120000007,-7.809876499999973],[110.76532640000005,-7.813407799999936],[110.76266130000005,-7.815738799999963],[110.76260690000004,-7.818093799999929],[110.764122,-7.819117],[110.76323990000009,-7.824388099999965],[110.756366,-7.827334],[110.75171960000006,-7.823892199999932],[110.75152560000004,-7.8198228],[110.74537420000007,-7.818396099999973],[110.74263970000004,-7.812864899999965],[110.74233190000007,-7.806702499999972],[110.73559890000007,-7.803938],[110.73281480000009,-7.801197799999954],[110.72857920000007,-7.800504199999978],[110.72858560000009,-7.797763599999939],[110.72391890000006,-7.794428599999947],[110.71784590000004,-7.793060499999967],[110.71640640000004,-7.791533099999981],[110.71254790000006,-7.792938399999969],[110.71420590000008,-7.799004699999955],[110.70954860000006,-7.804757699999925],[110.69207730000005,-7.808445099999972],[110.680412,-7.805606499999953],[110.67964140000004,-7.806508199999939],[110.67488830000008,-7.803181799999948],[110.67073030000006,-7.803266699999938],[110.67276730000009,-7.800121499999932],[110.67220270000007,-7.795861399999978],[110.67663790000006,-7.791357799999957],[110.67293790000008,-7.786537099999975],[110.67080570000007,-7.786172099999931],[110.66866480000004,-7.787110499999926],[110.67029280000008,-7.789777],[110.66671970000004,-7.792926099999931],[110.66385350000007,-7.793276399999968],[110.66048580000006,-7.80214],[110.65786120000007,-7.8047855],[110.64700180000006,-7.795245],[110.63817740000007,-7.800393699999972],[110.62874790000006,-7.800422399999945],[110.62490920000005,-7.803590899999961],[110.62459640000009,-7.801769799999931],[110.621392,-7.799615],[110.61846910000008,-7.799112099999945],[110.61608890000008,-7.8021191],[110.61208340000007,-7.798754699999961],[110.60789490000008,-7.798219199999949],[110.60734,-7.79663],[110.60709,-7.798421699999949],[110.59874710000008,-7.799923699999965],[110.60076130000004,-7.804758399999969],[110.60010530000005,-7.806694],[110.59451290000004,-7.806155199999978],[110.58560930000004,-7.808620699999949],[110.58799730000004,-7.804961],[110.58596020000005,-7.802763699999957],[110.57696510000005,-7.807145099999957],[110.57618660000009,-7.801891299999966],[110.58385970000006,-7.798032199999966],[110.58482360000005,-7.790907299999958],[110.58288870000007,-7.7896603],[110.582386,-7.791405299999951],[110.58217080000009,-7.789448799999946],[110.57762370000006,-7.789472099999955],[110.56214550000004,-7.782177599999955],[110.55586950000009,-7.784057399999938],[110.555397,-7.786820399999954],[110.55348970000006,-7.7870879],[110.55439050000007,-7.790735499999926],[110.55332150000004,-7.792459299999962],[110.55516080000007,-7.793048499999941],[110.555369,-7.795130699999959],[110.55130770000005,-7.794808699999976],[110.55059170000004,-7.792442499999936],[110.54838710000007,-7.79118],[110.54395650000004,-7.793773599999952],[110.54399330000007,-7.796499299999937],[110.54652950000008,-7.798026399999969],[110.54457210000004,-7.807414699999981],[110.54647950000009,-7.809836],[110.54526640000006,-7.811069099999941],[110.54554110000004,-7.815713499999958],[110.54207730000007,-7.819781],[110.542365,-7.823536599999954],[110.53762990000007,-7.823987699999975],[110.53473830000007,-7.822551899999951],[110.53246480000007,-7.824756299999933],[110.53230950000005,-7.823468399999967],[110.52989110000004,-7.823750299999972],[110.53096690000007,-7.825875499999938],[110.52269660000007,-7.828147699999931],[110.51951650000007,-7.830975299999977],[110.52132640000008,-7.833734599999957],[110.51630490000008,-7.837657699999966],[110.49785390000005,-7.837922299999946],[110.49450490000004,-7.839391499999977],[110.48902080000005,-7.837466599999971],[110.48757890000007,-7.839889599999935],[110.48287960000005,-7.840888],[110.48196680000007,-7.843994699999939],[110.47381590000003,-7.854408],[110.472771,-7.861120699999958],[110.47047650000007,-7.861788699999977],[110.46754460000005,-7.866708399999936],[110.46822840000004,-7.870654],[110.47371670000007,-7.875208499999928],[110.47061160000004,-7.876890799999956],[110.47686970000007,-7.888281899999981],[110.47651160000004,-7.890034799999967],[110.48351290000005,-7.888629899999955],[110.49273950000008,-7.891801799999939],[110.49510090000007,-7.890970599999946],[110.49655120000006,-7.8929723],[110.49587980000007,-7.896621399999958],[110.49829720000008,-7.900843699999939],[110.49616190000006,-7.914966099999958],[110.49165530000005,-7.926096499999971],[110.49362780000007,-7.932243599999936],[110.49264810000005,-7.938067699999976],[110.49112460000003,-7.939726399999927],[110.48864750000007,-7.939240899999959],[110.48959350000007,-7.942372299999931],[110.48800660000006,-7.945178],[110.48229220000007,-7.942137399999979],[110.47641750000008,-7.942675099999974],[110.47804260000004,-7.950256299999978],[110.472589,-7.953847699999926],[110.47597520000005,-7.964534],[110.47510550000004,-7.966747899999973],[110.47264880000006,-7.967344],[110.47748580000007,-7.971191599999941],[110.47475450000007,-7.9719459],[110.47306840000005,-7.970108599999946],[110.46922320000004,-7.969831599999964],[110.46755230000008,-7.971279299999935],[110.46339430000006,-7.968453599999975],[110.46450820000007,-7.966692099999932],[110.46775070000007,-7.966558099999929],[110.47071090000009,-7.962759699999935],[110.46488810000005,-7.959421499999962],[110.46450060000006,-7.957482],[110.46730690000004,-7.955551899999932],[110.46654,-7.954399399999943],[110.45719650000007,-7.9576443],[110.45743570000008,-7.965308799999946],[110.45466630000004,-7.967261899999926],[110.45071550000006,-7.961161199999935],[110.45132420000004,-7.955502099999933],[110.45374370000008,-7.954306799999927],[110.45488,-7.9516379],[110.45224010000004,-7.947738399999935],[110.44947070000006,-7.946947399999942],[110.44361570000007,-7.951325399999973],[110.44470230000007,-7.957622199999946],[110.44350450000007,-7.966790799999956],[110.43570720000008,-7.96682],[110.432902,-7.964312099999972],[110.42842290000004,-7.970206099999928],[110.42204470000007,-7.973505299999943],[110.41364250000004,-7.971405499999946],[110.408664,-7.971969899999976],[110.40277520000006,-7.968868099999952],[110.39642,-7.9697961],[110.39655010000007,-7.973857799999962],[110.39868880000006,-7.977244199999973],[110.39682270000009,-7.980677599999979],[110.38085440000003,-7.9820447],[110.36724420000007,-7.973375699999963],[110.36440140000008,-7.983556],[110.35776340000007,-7.9812401],[110.350343,-7.975093499999957],[110.351108,-7.977760199999977],[110.35490780000003,-7.980755599999952],[110.350205,-7.988867099999936],[110.35230590000003,-7.989887599999975],[110.35505650000005,-7.987683299999958],[110.35536380000008,-7.991543299999933],[110.35118160000007,-7.995534199999952],[110.34001520000004,-7.994733799999949],[110.33380490000008,-7.997025],[110.33121850000003,-7.9989409],[110.32959350000004,-8.003858099999945],[110.32954540000009,-8.008260199999938],[110.33356040000007,-8.015864799999974],[110.33303020000005,-8.017488699999944],[110.33665160000004,-8.020957],[110.33974320000004,-8.028013299999941]]]},"properties":{"shapeName":"Gunung Kidul","shapeISO":"","shapeID":"22746128B8011111240448","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[113.76099850000003,-0.483579199999951],[113.74723570000003,-0.454922499999952],[113.73565960000008,-0.440195199999948],[113.7267657000001,-0.4322068],[113.72204060000001,-0.422385],[113.71352890000003,-0.411424699999941],[113.69753160000005,-0.404920599999969],[113.68119480000007,-0.401499899999976],[113.62367540000002,-0.392953],[113.59644480000009,-0.383710399999927],[113.57874360000005,-0.374121799999955],[113.53584930000011,-0.341925],[113.49023550000004,-0.325831799999946],[113.482746,-0.320693699999936],[113.44206130000009,-0.302709099999959],[113.40717290000009,-0.304547899999932],[113.36465970000006,-0.319457199999931],[113.34179150000011,-0.341406199999938],[113.30654890000005,-0.381781399999966],[113.27157260000001,-0.412405099999944],[113.26548280000009,-0.420019699999955],[113.26643420000005,-0.426589599999943],[113.26422620000005,-0.441911599999969],[113.25913930000002,-0.4483538],[113.25356220000003,-0.448613],[113.24958550000008,-0.447086299999967],[113.2464920000001,-0.450184399999955],[113.2434783000001,-0.461534799999924],[113.23965080000005,-0.468456599999968],[113.23425750000001,-0.470839599999977],[113.22958050000011,-0.4757131],[113.22706210000001,-0.481921899999975],[113.2261492,-0.498418699999945],[113.21945390000008,-0.506397599999957],[113.21375160000002,-0.538676899999928],[113.20595540000011,-0.562251199999935],[113.16937550000011,-0.621330399999977],[113.15194840000004,-0.655998099999977],[113.13091710000003,-0.691522],[113.07577360000005,-0.766331199999968],[113.03245970000012,-0.813500199999964],[113.01785870000003,-0.8435718],[113.02007660000004,-0.884925],[113.03138600000011,-0.909055899999942],[113.04936610000004,-0.925016299999925],[113.0762188000001,-0.928664099999935],[113.0915030000001,-0.935063899999932],[113.1335166,-0.981142099999943],[113.1448918000001,-0.987869],[113.18556840000008,-1.024528699999962],[113.21643030000007,-1.056960099999969],[113.2290574000001,-1.072471699999937],[113.23327310000002,-1.086578299999928],[113.2346884000001,-1.1049199],[113.23330480000004,-1.128907399999946],[113.220708,-1.154314799999952],[113.19830170000012,-1.183963399999925],[113.18711030000009,-1.213603599999942],[113.18573950000007,-1.251702099999932],[113.19916290000003,-1.283528699999977],[113.33935640000004,-1.484733899999981],[113.3611658000001,-1.525864],[113.4304575000001,-1.560964],[113.43535650000001,-1.5781442],[113.48290760000009,-1.602533799999946],[113.49205720000009,-1.657501099999934],[113.5018741,-1.667248399999949],[113.50734840000007,-1.670234499999935],[113.5191400000001,-1.670860599999969],[113.53330210000001,-1.656251599999962],[113.5448153000001,-1.6470441],[113.552091,-1.641864799999951],[113.56285960000002,-1.636973299999966],[113.56705540000007,-1.637074799999937],[113.57683550000002,-1.643475399999943],[113.583271,-1.650735399999974],[113.58847910000009,-1.653454199999942],[113.6001652000001,-1.655255899999929],[113.66695860000004,-1.644532],[113.70442130000004,-1.630635599999948],[113.73706590000006,-1.624283499999933],[113.7577414000001,-1.623507599999925],[113.79911130000005,-1.630108699999937],[113.82719020000002,-1.631074599999977],[113.88753950000012,-1.616997899999944],[113.91438720000008,-1.574554699999965],[113.93445840000004,-1.561162299999978],[113.95861710000008,-1.549135099999944],[113.969332,-1.5415815],[113.99369970000009,-1.508052699999951],[114.00826060000009,-1.474959799999965],[113.99710120000009,-1.3624838],[113.99484920000009,-1.2829106],[113.99732160000008,-1.229907],[113.96898390000001,-1.111838099999943],[113.97459880000008,-1.088601499999925],[113.97737590000008,-1.0641689],[113.97280890000002,-1.044806299999948],[113.93440470000007,-1.003032099999928],[113.85055330000012,-0.977458099999978],[113.763117,-0.937743699999942],[113.72280480000006,-0.887976699999967],[113.67898990000003,-0.773578799999939],[113.66094,-0.755431499999929],[113.6503785000001,-0.737964299999931],[113.6595764000001,-0.709870499999965],[113.65854170000011,-0.709806899999933],[113.6709800000001,-0.679233599999975],[113.70171950000008,-0.640270399999963],[113.73721550000005,-0.6013066],[113.75589860000002,-0.5461603],[113.76099850000003,-0.483579199999951]]]},"properties":{"shapeName":"Gunung Mas","shapeISO":"","shapeID":"22746128B98104555099390","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[127.5999756000001,0.858759],[127.60132790000011,0.86137350000007],[127.5998978,0.862492300000042],[127.59856330000002,0.859752200000059],[127.5999756000001,0.858759]]],[[[127.51102110000011,0.858842],[127.51415070000007,0.860406400000045],[127.5120875,0.864322400000049],[127.50921710000011,0.860336600000039],[127.51102110000011,0.858842]]],[[[127.51537650000012,0.864162900000053],[127.51402110000004,0.864043400000071],[127.51387150000005,0.86226970000007],[127.51565560000006,0.862379300000043],[127.51537650000012,0.864162900000053]]],[[[127.5083896000001,0.863800300000037],[127.5094322000001,0.865692200000069],[127.50720690000003,0.867952],[127.5066988000001,0.86466740000003],[127.5083896000001,0.863800300000037]]],[[[127.5616864000001,0.869999700000051],[127.5598199000001,0.871486400000038],[127.55808850000005,0.868908800000042],[127.5616864000001,0.869999700000051]]],[[[127.55792620000011,0.873338800000056],[127.55603880000001,0.873265],[127.55591880000009,0.871459700000059],[127.55856410000001,0.871219200000041],[127.55685660000006,0.872168600000066],[127.55792620000011,0.873338800000056]]],[[[127.54745230000003,0.873183600000061],[127.54615580000007,0.874199900000065],[127.54450630000008,0.872864200000038],[127.54696750000005,0.866190800000027],[127.55017850000002,0.864596300000073],[127.55394430000001,0.865161200000045],[127.55417250000005,0.866774600000042],[127.54936150000003,0.869039500000042],[127.55149790000007,0.868603700000051],[127.55167790000007,0.869960400000025],[127.5491128000001,0.870851100000039],[127.54857840000011,0.873629900000026],[127.54745230000003,0.873183600000061]]],[[[127.5220690000001,0.871096400000056],[127.52184220000004,0.873825900000043],[127.51953770000011,0.874447100000054],[127.519718,0.872463200000027],[127.5220690000001,0.871096400000056]]],[[[127.5306213,0.873225700000035],[127.53037910000012,0.876110400000073],[127.529016,0.87414270000005],[127.5306213,0.873225700000035]]],[[[127.52699780000012,0.871921600000064],[127.5271077000001,0.875262900000052],[127.52581010000006,0.876230600000042],[127.52514880000001,0.873344900000063],[127.52699780000012,0.871921600000064]]],[[[127.52999840000007,0.878294700000026],[127.52749340000003,0.876611400000058],[127.5306127,0.877541700000052],[127.52999840000007,0.878294700000026]]],[[[127.5349149000001,0.87888410000005],[127.53566960000012,0.880118300000049],[127.53440710000007,0.880739500000061],[127.53379310000003,0.879318300000023],[127.5349149000001,0.87888410000005]]],[[[127.50850230000003,0.881168400000035],[127.50721880000003,0.880434900000068],[127.50834710000004,0.879899400000056],[127.50850230000003,0.881168400000035]]],[[[127.51477620000003,0.880299],[127.51395810000008,0.881517200000076],[127.51254380000012,0.879814400000043],[127.51475560000006,0.878325500000074],[127.51573220000012,0.879733600000066],[127.51477620000003,0.880299]]],[[[127.53937540000004,0.882451300000071],[127.53652760000011,0.881271100000049],[127.53872430000001,0.880327],[127.53937540000004,0.882451300000071]]],[[[127.52426860000003,0.878623700000048],[127.52444360000004,0.880494800000065],[127.522141,0.883264100000019],[127.51723310000011,0.880258600000047],[127.51822640000012,0.87822570000003],[127.52217370000005,0.876979400000039],[127.52426860000003,0.878623700000048]]],[[[127.51138,0.881441100000075],[127.51115370000002,0.883856500000036],[127.50898450000011,0.883424800000057],[127.50905650000004,0.882016700000065],[127.51138,0.881441100000075]]],[[[127.52417820000005,0.882894],[127.52488010000002,0.884118900000033],[127.52323810000007,0.884478],[127.52417820000005,0.882894]]],[[[127.50281590000009,0.883091],[127.4996268000001,0.884793600000023],[127.4988489000001,0.884001100000035],[127.5011419000001,0.879390900000033],[127.49930170000005,0.878089800000055],[127.49748430000011,0.872359200000062],[127.49781360000009,0.868879600000071],[127.50020170000005,0.865959400000065],[127.50440130000004,0.87011380000007],[127.50378480000006,0.875513800000022],[127.50692560000005,0.880068100000074],[127.5056340000001,0.882298500000047],[127.50281590000009,0.883091]]],[[[127.51504960000011,0.886236300000064],[127.51406220000001,0.885597200000063],[127.5151002,0.884774600000071],[127.51504960000011,0.886236300000064]]],[[[127.51636070000006,1.553906900000072],[127.51494240000011,1.552211900000032],[127.51679310000009,1.552263800000048],[127.51636070000006,1.553906900000072]]],[[[127.49246740000001,1.662668800000063],[127.48990760000004,1.662668800000063],[127.4893542000001,1.660264600000062],[127.49115290000009,1.659555500000067],[127.49246740000001,1.662668800000063]]],[[[127.48928690000002,1.67330510000005],[127.48864120000007,1.676210900000058],[127.48788020000006,1.672682500000064],[127.48552790000008,1.674527400000045],[127.48091560000012,1.671252700000025],[127.48250690000009,1.666640400000063],[127.47946280000008,1.66094430000004],[127.48259910000002,1.65960670000004],[127.48250690000009,1.65594],[127.48543570000004,1.653449400000056],[127.48776480000004,1.656493500000067],[127.48788020000006,1.668416200000024],[127.49228490000007,1.668600600000048],[127.49410670000009,1.671206600000062],[127.49203120000004,1.671229600000061],[127.49170830000003,1.672405800000035],[127.48974810000004,1.671690900000044],[127.48928690000002,1.67330510000005]]],[[[127.54135880000001,1.683927200000028],[127.541602,1.684880600000042],[127.53953940000008,1.682302400000026],[127.53821630000004,1.682506700000033],[127.538333,1.678333],[127.53445120000003,1.679130800000053],[127.534422,1.676795800000036],[127.53227190000007,1.676640200000065],[127.53181460000008,1.675355900000056],[127.53098770000008,1.677885500000059],[127.5293435000001,1.677408800000023],[127.53053040000009,1.674587400000064],[127.52914890000011,1.672952900000041],[127.53161050000006,1.674188600000036],[127.53336150000007,1.673410100000069],[127.53551160000006,1.675122400000021],[127.53569650000009,1.672991800000034],[127.5400843000001,1.672028600000033],[127.5418744000001,1.668866700000024],[127.54342470000006,1.669057900000041],[127.54362560000004,1.670909800000061],[127.5455617,1.669868800000074],[127.54602870000008,1.672281600000076],[127.54807180000012,1.672709700000041],[127.54595080000001,1.674480300000027],[127.547021,1.676221800000064],[127.54416070000002,1.676825],[127.54786740000009,1.678012],[127.54892790000008,1.67982150000006],[127.54769230000011,1.680882],[127.5435089,1.679315600000052],[127.54363530000012,1.681718700000033],[127.54189380000003,1.681923],[127.54135880000001,1.683927200000028]]],[[[127.5486082000001,1.708727500000066],[127.54511120000006,1.708022500000027],[127.5461686000001,1.705666500000063],[127.5498047000001,1.707122800000036],[127.5486082000001,1.708727500000066]]],[[[127.52537350000011,1.720406300000036],[127.52334410000003,1.722135900000069],[127.52299820000007,1.719668300000023],[127.52517860000012,1.716024800000071],[127.52331660000004,1.712814700000024],[127.52074240000002,1.71300320000006],[127.52117640000006,1.708622],[127.516161,1.70055960000002],[127.5161839000001,1.69753460000004],[127.51512510000009,1.695961300000022],[127.51198770000008,1.695642500000019],[127.51154520000011,1.685548800000049],[127.50955350000004,1.682608800000025],[127.50397260000011,1.67974920000006],[127.50060570000005,1.67389170000007],[127.49557830000003,1.67246190000003],[127.49518630000011,1.667480600000033],[127.50042120000012,1.672069800000031],[127.50401880000004,1.670248],[127.50595590000012,1.676866600000039],[127.50883670000007,1.676141700000073],[127.51148030000002,1.679307900000026],[127.51950260000001,1.680776600000058],[127.52060510000001,1.682836500000064],[127.51962090000006,1.684878600000047],[127.5221696000001,1.687536100000045],[127.5250046000001,1.685920300000021],[127.52514080000003,1.684324700000047],[127.52781630000004,1.683741],[127.532817,1.686085700000035],[127.53514220000011,1.68908220000003],[127.53544380000005,1.692030100000068],[127.53302130000009,1.692779200000075],[127.53560920000007,1.69399530000004],[127.53665020000005,1.699764600000037],[127.53564810000012,1.701243400000067],[127.53683510000008,1.701476900000046],[127.53170790000001,1.710709700000052],[127.53332290000003,1.711546400000032],[127.53407450000009,1.714888300000041],[127.5297402000001,1.718923400000051],[127.52891570000008,1.717179500000043],[127.52804010000011,1.718398100000059],[127.52691640000012,1.717179500000043],[127.52537350000011,1.720406300000036]]],[[[127.6040369000001,1.804642600000022],[127.604408,1.806636900000058],[127.60278470000003,1.805050700000038],[127.6040369000001,1.804642600000022]]],[[[127.7093665000001,0.821201400000064],[127.69451860000004,0.818394200000057],[127.67583800000011,0.830764400000021],[127.66543560000002,0.83949130000002],[127.63969610000004,0.871680900000058],[127.6325121000001,0.878296100000057],[127.62120320000008,0.896026800000072],[127.6055718,0.91576340000006],[127.59491380000009,0.966955700000028],[127.59822990000009,0.986699600000065],[127.606247,1.006742300000042],[127.61840070000005,1.027833900000076],[127.61494980000009,1.027752700000065],[127.6095888000001,1.034582],[127.60455740000009,1.048743700000045],[127.60358070000007,1.05607],[127.6045825000001,1.059221300000047],[127.601936,1.063135700000032],[127.60230710000008,1.07132480000007],[127.6102112000001,1.075697500000047],[127.61465050000004,1.081338900000048],[127.61068380000006,1.086755],[127.61318250000011,1.091463600000054],[127.60835150000003,1.094001],[127.60384790000012,1.108404800000073],[127.6096113000001,1.109286200000042],[127.61425540000005,1.117491900000061],[127.62536950000003,1.116420600000026],[127.62590200000011,1.125523300000054],[127.622314,1.136948800000027],[127.61994470000002,1.140364600000055],[127.62206230000004,1.14212120000002],[127.62287,1.146451700000057],[127.6268179000001,1.151783600000044],[127.62815260000002,1.160351200000036],[127.63375540000004,1.167005600000039],[127.63977420000003,1.16802610000002],[127.64430020000009,1.171566900000073],[127.643697,1.17709560000003],[127.6400847000001,1.178523200000029],[127.63770980000004,1.182554],[127.63983640000004,1.195753700000068],[127.6383244000001,1.198751100000038],[127.63933060000011,1.201526],[127.6361554,1.208037],[127.6371722,1.214710900000057],[127.63590390000002,1.219799900000055],[127.6285653000001,1.230012200000033],[127.627464,1.234863400000052],[127.62387810000007,1.237794600000029],[127.62893150000002,1.243714500000067],[127.627419,1.248118200000022],[127.63677750000011,1.252337],[127.64272380000011,1.250421200000062],[127.646952,1.251843700000052],[127.64728240000011,1.263687400000038],[127.64950660000011,1.266005700000051],[127.64944870000011,1.270987400000024],[127.64460710000003,1.272936600000037],[127.63871410000002,1.271442],[127.63453570000001,1.274595800000043],[127.63593050000009,1.27876550000002],[127.63553530000002,1.285452400000054],[127.63911830000006,1.290262200000029],[127.6400724,1.295943300000033],[127.63745660000006,1.304362300000037],[127.63572980000004,1.321603400000072],[127.640424,1.319957500000044],[127.64037570000005,1.327769800000056],[127.64256420000004,1.333799800000065],[127.64581190000001,1.331016500000032],[127.648518,1.332828600000028],[127.64861970000004,1.330493900000022],[127.65201330000002,1.32696130000005],[127.65387890000011,1.327631800000063],[127.6573912,1.334278600000061],[127.65590840000004,1.341542900000036],[127.65974940000001,1.345807500000035],[127.66102200000012,1.354492400000026],[127.6632078,1.358897600000034],[127.66232630000002,1.364813200000071],[127.66676070000005,1.366287],[127.6760862000001,1.377004800000066],[127.66761120000001,1.393186700000058],[127.66125590000001,1.396631],[127.65705650000007,1.411128],[127.65752730000008,1.416834],[127.661235,1.424313500000039],[127.6726215000001,1.430242],[127.67632930000002,1.438609800000052],[127.68023940000012,1.443016100000023],[127.67992440000012,1.445054500000026],[127.6750995000001,1.44893460000003],[127.67312730000003,1.456656],[127.67110570000011,1.457440100000042],[127.67050150000011,1.463906400000042],[127.67655410000009,1.465547900000047],[127.68066840000006,1.468885800000066],[127.68966090000004,1.467412800000034],[127.69391690000009,1.468506500000046],[127.69729310000002,1.472261900000035],[127.70292360000008,1.473137500000064],[127.70566530000008,1.477836],[127.70583570000008,1.483886400000074],[127.70943950000003,1.489132400000074],[127.711251,1.488596500000028],[127.71132850000004,1.49409170000007],[127.7141309000001,1.496412700000064],[127.71237910000002,1.510354],[127.72098270000004,1.514508500000034],[127.71856860000003,1.518273300000033],[127.71910080000009,1.521076100000073],[127.7251073000001,1.525797500000067],[127.72545920000005,1.531798500000036],[127.72831020000001,1.534953900000062],[127.72966970000004,1.539579900000035],[127.72600650000004,1.551932500000021],[127.72591470000009,1.559248500000024],[127.72848950000002,1.573110200000031],[127.72672090000003,1.581097600000021],[127.72688110000001,1.592500800000039],[127.72877630000005,1.595530600000075],[127.73143220000009,1.595481300000074],[127.73163410000006,1.599180700000034],[127.73524930000008,1.60405940000004],[127.73483070000009,1.605556500000034],[127.73038150000002,1.606126500000073],[127.73131100000012,1.611715400000037],[127.72870000000012,1.621139600000049],[127.7323957000001,1.625062100000036],[127.73050950000004,1.630954200000076],[127.72359390000008,1.634934],[127.71828260000007,1.642319400000076],[127.71950580000009,1.655388900000048],[127.71753970000009,1.658411400000034],[127.71443010000007,1.65981110000007],[127.71289640000009,1.663617100000067],[127.71271830000012,1.677427800000032],[127.71423030000005,1.682711],[127.70714940000005,1.69256850000005],[127.7035409,1.703047600000048],[127.70516670000006,1.710271200000022],[127.70313980000003,1.714686800000038],[127.70703020000008,1.718535300000042],[127.70782120000001,1.722782900000027],[127.7097688,1.724293500000044],[127.71070960000009,1.728059400000063],[127.70956390000003,1.734684500000071],[127.713425,1.744064500000036],[127.7106993000001,1.751532200000042],[127.71435910000002,1.763131100000066],[127.717676,1.765026200000023],[127.71771390000004,1.777581200000043],[127.72165440000003,1.779766800000061],[127.721517,1.783861300000069],[127.71926130000008,1.788848700000074],[127.73206130000005,1.799357],[127.73356700000011,1.810480200000029],[127.73593560000006,1.814920200000074],[127.73841230000005,1.815917400000046],[127.7411909000001,1.821900600000049],[127.7405199000001,1.830411300000037],[127.74882190000005,1.846118200000035],[127.74866510000004,1.849129600000026],[127.74377540000012,1.855312600000047],[127.74424390000001,1.85684980000002],[127.75029820000009,1.857239],[127.7474873000001,1.85931480000005],[127.74753050000004,1.860741800000028],[127.74839540000005,1.862039200000027],[127.75034140000002,1.861260800000025],[127.75414690000002,1.864936500000056],[127.75752000000011,1.858795800000053],[127.7645688,1.86485],[127.75970570000004,1.874493600000051],[127.75983730000007,1.884723],[127.77154690000009,1.895873400000028],[127.7717113000001,1.901267700000062],[127.7731586000001,1.902780700000051],[127.77967120000005,1.906267300000025],[127.7848024000001,1.906431800000064],[127.78907830000003,1.911102400000061],[127.78796000000011,1.912681300000031],[127.78351960000009,1.91149710000002],[127.78286170000001,1.912944400000072],[127.78177630000005,1.92768],[127.77496760000008,1.941593400000045],[127.77427690000002,1.947382400000038],[127.770297,1.950901800000054],[127.76809320000007,1.959322200000031],[127.76414610000006,1.961427300000025],[127.75812320000011,1.961924300000021],[127.75350370000001,1.958883600000036],[127.75438090000011,1.947071700000038],[127.75192490000006,1.945785300000068],[127.74853340000004,1.946545400000048],[127.74531730000001,1.950814100000059],[127.74531730000001,1.953094600000043],[127.7425105000001,1.955492100000072],[127.7438929000001,1.958943900000065],[127.73736280000003,1.961065],[127.73326370000007,1.957363600000065],[127.73080760000005,1.957138800000052],[127.7275906000001,1.952520800000059],[127.72074140000007,1.950099300000034],[127.71472240000003,1.945273800000052],[127.71204150000005,1.946726600000034],[127.70898010000008,1.944305200000031],[127.70685270000001,1.945446700000048],[127.7053307000001,1.940794100000062],[127.70083370000009,1.93451570000002],[127.69780690000005,1.931558100000075],[127.69374240000002,1.931385100000057],[127.69318890000011,1.929742],[127.695593,1.929396100000076],[127.69616380000002,1.926715200000046],[127.69362130000002,1.919727600000044],[127.69151120000004,1.918222900000046],[127.68938380000009,1.918897400000048],[127.688346,1.913708600000064],[127.68371070000012,1.908554400000071],[127.68199840000011,1.909938100000034],[127.68168710000009,1.906824800000038],[127.67826250000007,1.905838900000049],[127.677709,1.903832600000044],[127.67625610000005,1.904749300000049],[127.67404230000011,1.903573200000039],[127.67575460000012,1.899197300000026],[127.6752011000001,1.896101300000055],[127.67867760000001,1.894043100000033],[127.67879870000002,1.890877900000021],[127.67606590000003,1.886588500000073],[127.6691475,1.887332300000025],[127.66549810000004,1.883873100000073],[127.66627640000002,1.879151300000046],[127.66190050000012,1.877439],[127.66542890000005,1.872699900000043],[127.66324960000009,1.868012700000065],[127.66004980000002,1.868791],[127.6542730000001,1.876660600000037],[127.66004980000002,1.865314500000068],[127.65811510000003,1.862272],[127.65594080000005,1.862667100000067],[127.65769760000012,1.858084800000029],[127.65461890000006,1.854331500000058],[127.65589880000005,1.852601900000025],[127.65458430000001,1.849108200000046],[127.65122890000009,1.850699400000053],[127.64936090000003,1.845406800000035],[127.64704330000006,1.847741800000051],[127.64600550000011,1.840858],[127.644397,1.838090600000044],[127.64202740000007,1.837260400000048],[127.64597090000007,1.834181700000045],[127.646559,1.824720800000023],[127.64211390000003,1.820639],[127.63844720000009,1.820725500000037],[127.63433070000008,1.816332300000056],[127.62687610000012,1.806093100000055],[127.6267600000001,1.80172170000003],[127.62289810000004,1.801890200000059],[127.62255220000009,1.797652600000049],[127.61369660000003,1.795438800000056],[127.611967,1.791374200000064],[127.61376580000001,1.783418100000063],[127.60390710000001,1.777433700000074],[127.6000739000001,1.771936800000049],[127.59614340000007,1.769348900000068],[127.590125,1.770794200000068],[127.5882921000001,1.769611600000076],[127.585529,1.771080600000062],[127.58443940000006,1.762178600000027],[127.58173470000008,1.762022900000034],[127.57919550000008,1.759551800000054],[127.57654920000004,1.759649100000047],[127.57635460000006,1.761234900000034],[127.57183060000011,1.751612900000055],[127.57342620000009,1.750620600000047],[127.57336780000003,1.746057700000051],[127.56956380000008,1.74370330000005],[127.56981670000005,1.740706700000032],[127.5751269000001,1.736507600000039],[127.5751580000001,1.734840200000065],[127.5734748000001,1.73431480000005],[127.5752844000001,1.734061800000063],[127.57629620000012,1.730812400000048],[127.57403910000005,1.731298800000047],[127.57335810000006,1.732884600000034],[127.57001130000003,1.732446800000048],[127.57324130000006,1.727601800000059],[127.57814910000002,1.729225900000074],[127.57640330000004,1.725082],[127.57475910000005,1.72369070000002],[127.57207390000008,1.724897100000021],[127.571782,1.723223800000028],[127.56943730000012,1.723817200000042],[127.56943730000012,1.720305100000076],[127.5675791000001,1.719925600000067],[127.56650890000003,1.721492],[127.5586479000001,1.715372500000058],[127.552217,1.71336830000007],[127.55052420000004,1.711159800000075],[127.55370550000009,1.706499600000029],[127.5546395,1.709505900000067],[127.561946,1.711840800000061],[127.56682990000002,1.706344],[127.56613920000007,1.703717100000063],[127.56776390000005,1.703366900000049],[127.56843350000008,1.705158],[127.56781260000002,1.701041700000076],[127.57103290000009,1.700759500000061],[127.56881470000008,1.699504500000046],[127.57062420000011,1.698959700000046],[127.57001130000003,1.697821400000066],[127.57464750000008,1.694838],[127.57796830000007,1.694643400000075],[127.57747540000003,1.693112700000029],[127.57961580000006,1.693852100000072],[127.5822621000001,1.688780100000031],[127.58438950000004,1.689986400000066],[127.58377980000012,1.687353100000053],[127.58008280000001,1.685679800000059],[127.5816913000001,1.684330700000032],[127.5804849000001,1.684175],[127.5802384000001,1.681956800000023],[127.58161350000012,1.673538],[127.57920070000011,1.670632300000022],[127.58248260000005,1.669386900000063],[127.58163940000009,1.667168700000047],[127.58087410000007,1.668829200000062],[127.57977140000003,1.667285500000048],[127.58405220000009,1.663886800000057],[127.58243070000003,1.663718200000062],[127.5849343000001,1.660825400000022],[127.584169,1.659567200000026],[127.58153560000005,1.663679300000069],[127.57925850000004,1.663319500000057],[127.57920070000011,1.661772400000075],[127.58060430000012,1.661635200000035],[127.57872070000008,1.659515300000066],[127.5794082000001,1.658555300000046],[127.57777380000005,1.657971600000053],[127.57645710000008,1.659583400000031],[127.57479350000006,1.658415900000023],[127.57467670000005,1.660789800000032],[127.57163150000008,1.662210200000061],[127.57285740000009,1.659661200000073],[127.57166070000005,1.659525],[127.57120350000002,1.65693710000005],[127.57234170000004,1.655964200000028],[127.5702500000001,1.655273400000056],[127.56939390000002,1.652967700000033],[127.56856690000006,1.656314400000042],[127.56660160000001,1.656440900000064],[127.5671757,1.659203900000023],[127.56494770000006,1.661451300000067],[127.56413050000003,1.656547900000021],[127.56200960000001,1.655594500000063],[127.56369270000005,1.65425190000002],[127.56300190000002,1.649105300000031],[127.56063780000011,1.649202500000058],[127.56116310000004,1.64498020000002],[127.559266,1.645651500000042],[127.560547,1.642512100000033],[127.55779690000008,1.643073300000026],[127.55768020000005,1.640981600000032],[127.55528680000009,1.639279],[127.55263080000009,1.649056600000051],[127.55585110000004,1.651576400000067],[127.55956760000004,1.664253300000041],[127.55647380000005,1.66478840000002],[127.55488800000012,1.663183100000026],[127.55103530000008,1.662978800000076],[127.55024720000006,1.66537210000007],[127.54898250000008,1.664652200000035],[127.5493619,1.650321400000053],[127.543865,1.646536800000035],[127.542143,1.650739700000031],[127.54051820000007,1.650623],[127.54261970000005,1.644591],[127.54158840000002,1.643131700000026],[127.54377750000003,1.642032300000039],[127.54262940000001,1.63673],[127.54542170000002,1.636097600000028],[127.54516870000009,1.633470800000055],[127.54827220000004,1.635903],[127.54917380000006,1.633928],[127.54838790000008,1.630778],[127.550324,1.628034400000047],[127.54979650000007,1.624627100000055],[127.5453989,1.621617600000036],[127.55138610000006,1.618271400000026],[127.55348270000002,1.606941200000051],[127.55157580000002,1.598691],[127.55402750000007,1.597303],[127.55123850000007,1.595850200000029],[127.5521864000001,1.592244400000027],[127.5493576,1.59052250000002],[127.5505568000001,1.588554600000066],[127.5488041000001,1.58880060000007],[127.54991310000003,1.586038400000064],[127.54714410000008,1.586485],[127.54689770000005,1.583542600000044],[127.5441303,1.580344800000034],[127.53945660000011,1.580344800000034],[127.53804220000006,1.582681700000023],[127.53967180000006,1.584864800000048],[127.5377347000001,1.586771200000044],[127.53552080000009,1.585172300000067],[127.53379890000008,1.58631],[127.5304781000001,1.583511900000076],[127.52786440000011,1.585725800000034],[127.5269727000001,1.582681700000023],[127.52795670000012,1.580437],[127.52564960000007,1.576826],[127.52312920000008,1.576347500000054],[127.52270480000004,1.570245400000033],[127.51950090000003,1.572319500000049],[127.51977760000011,1.569490600000051],[127.51626040000008,1.569041600000048],[127.51672610000003,1.563808],[127.51430840000012,1.562869200000023],[127.51399110000011,1.559009300000071],[127.51236530000006,1.560462100000052],[127.51077740000005,1.557608800000025],[127.5111892000001,1.554650700000025],[127.51314360000003,1.555653800000073],[127.51962960000003,1.554962],[127.5203388000001,1.550378600000045],[127.526808,1.552199],[127.52911380000012,1.550243400000056],[127.52671880000003,1.545725100000027],[127.52497770000002,1.534381500000052],[127.52739050000002,1.530606700000021],[127.52703050000002,1.52849550000002],[127.52947250000011,1.527785300000062],[127.52754610000011,1.526248100000032],[127.52886930000011,1.525576800000067],[127.52839260000007,1.522891600000037],[127.52991680000002,1.522414900000058],[127.52882710000006,1.521033300000056],[127.53068540000004,1.520546900000056],[127.529119,1.519340500000055],[127.5302061000001,1.519062100000042],[127.52936220000004,1.517462800000033],[127.53031570000007,1.517929800000047],[127.53149970000004,1.515734500000065],[127.52977080000005,1.513240400000029],[127.53456730000005,1.508629600000063],[127.53603630000009,1.500028500000042],[127.53558880000003,1.489219600000069],[127.52816560000008,1.457668500000068],[127.5209781000001,1.434303500000055],[127.51744220000012,1.426904900000068],[127.50658670000007,1.414377700000045],[127.49588480000011,1.405167600000027],[127.48589320000008,1.392223800000068],[127.48500940000008,1.389086600000041],[127.48658000000012,1.38713290000004],[127.48546910000005,1.375345],[127.48631190000003,1.370780900000057],[127.48488960000009,1.36386710000005],[127.48580290000007,1.360671300000035],[127.48262560000012,1.350304300000062],[127.47206060000008,1.338751],[127.47163020000005,1.332939600000032],[127.46821710000006,1.327958300000034],[127.46797110000011,1.323100100000033],[127.46471180000003,1.317811400000039],[127.4576704000001,1.314183100000037],[127.45459560000006,1.307848900000067],[127.44577190000007,1.301831200000038],[127.446478,1.299977300000023],[127.44306490000008,1.298040200000059],[127.44226550000008,1.294258100000036],[127.43826820000004,1.289830300000062],[127.43208770000001,1.276700800000071],[127.43088850000004,1.271135300000026],[127.42366270000002,1.26523160000005],[127.42393940000011,1.261049800000023],[127.41723630000001,1.250318700000037],[127.41725550000001,1.243517500000053],[127.4076811000001,1.233734500000025],[127.40566720000004,1.228685100000064],[127.40735030000008,1.222001300000045],[127.4089848000001,1.220590600000037],[127.40755460000003,1.208390500000064],[127.40405220000002,1.204567],[127.40247610000006,1.198826900000029],[127.399153,1.196130500000038],[127.40129500000012,1.192591200000038],[127.40484190000006,1.192475300000069],[127.40789410000002,1.186192600000027],[127.40985840000008,1.185721700000045],[127.41184740000006,1.187265600000046],[127.41185170000006,1.185663800000043],[127.40933170000005,1.184069100000045],[127.41122240000004,1.181645500000059],[127.41005490000009,1.177413400000034],[127.41498750000005,1.176995],[127.41816890000007,1.171994300000051],[127.41715710000005,1.167664900000034],[127.419385,1.165728900000033],[127.421253,1.166234800000041],[127.42557890000012,1.158685600000069],[127.4277882,1.159625100000028],[127.429018,1.158160700000053],[127.43146940000008,1.146304800000053],[127.43128480000007,1.140717700000039],[127.4285043000001,1.134448],[127.42688450000003,1.119321900000045],[127.42440360000012,1.11298830000004],[127.41970450000008,1.107464700000037],[127.41780730000005,1.102415300000075],[127.41011660000004,1.097183600000051],[127.40597930000001,1.09309010000004],[127.40425730000004,1.08805540000003],[127.39934660000006,1.084217300000034],[127.39867530000004,1.073359700000026],[127.3972159000001,1.070557800000074],[127.39734730000009,1.060612300000059],[127.4006673,1.054162],[127.40206830000011,1.054877100000056],[127.40529340000012,1.051345500000025],[127.41269230000012,1.047449],[127.40413320000005,1.04402680000004],[127.39914230000011,1.048820800000044],[127.39891610000006,1.045311100000049],[127.40086430000008,1.041239500000074],[127.40483370000004,1.039495600000066],[127.40977360000011,1.040553600000067],[127.41414440000005,1.039561200000037],[127.41746440000009,1.033424700000069],[127.41989420000004,1.032016400000032],[127.42422850000003,1.03233750000004],[127.4265415000001,1.038510500000029],[127.42867220000005,1.040247100000045],[127.42506030000004,1.046697400000028],[127.42184970000005,1.047646],[127.42409250000003,1.050229700000045],[127.42757770000003,1.050747100000024],[127.43364120000001,1.045945900000049],[127.43878540000003,1.046434800000043],[127.44129550000002,1.049616100000037],[127.44321460000003,1.047667900000022],[127.44462280000005,1.051090100000067],[127.44973060000007,1.050528200000031],[127.45148910000012,1.052491100000054],[127.455799,1.051936500000068],[127.4588539,1.05543890000007],[127.46553770000003,1.057579300000043],[127.46760030000007,1.056781500000056],[127.46734730000003,1.059155400000066],[127.46904020000011,1.05862030000003],[127.46820990000003,1.061133600000062],[127.47276310000007,1.063805900000034],[127.47417710000002,1.06256060000004],[127.479301,1.06442850000002],[127.48179160000007,1.062366],[127.48221970000009,1.058785700000044],[127.48631880000005,1.06045910000006],[127.4954179,1.054731100000026],[127.499723,1.048477800000057],[127.50189740000008,1.041188300000044],[127.49855550000007,1.04056810000003],[127.49914650000005,1.03433670000004],[127.49762880000003,1.03256360000006],[127.49646130000008,1.027280700000063],[127.49713990000009,1.021085800000037],[127.494929,1.018772700000056],[127.49470280000003,1.01501490000004],[127.48572780000006,1.015481900000054],[127.4836848000001,1.017765800000063],[127.48253190000003,1.013416900000038],[127.48048150000011,1.013759900000025],[127.479314,1.016021900000055],[127.474773,1.006421800000055],[127.472331,1.006353700000034],[127.48037690000001,1.001411400000052],[127.48093140000003,0.993316900000025],[127.48960970000007,0.996002100000055],[127.491575,0.994795700000054],[127.49557360000006,0.995457200000033],[127.49631370000009,0.989588],[127.50126760000012,0.990122100000065],[127.50012450000008,0.989486200000044],[127.50275010000007,0.986335600000075],[127.50301080000008,0.983488800000032],[127.5059781000001,0.98216],[127.506248,0.978232200000036],[127.51000450000004,0.976373800000033],[127.51178530000004,0.972508800000071],[127.51075650000007,0.96807240000004],[127.512639,0.96268740000005],[127.5115518,0.957623500000068],[127.51249310000003,0.953274600000043],[127.50992870000005,0.953033],[127.507627,0.95071850000005],[127.50416910000001,0.943693200000041],[127.49679380000009,0.935791800000061],[127.49716280000007,0.93180220000005],[127.49185870000008,0.928089300000067],[127.490844,0.925714],[127.4902906000001,0.91805770000002],[127.4932023,0.917277600000034],[127.49192280000011,0.912070700000072],[127.49271970000007,0.907631400000071],[127.49107310000011,0.904558200000054],[127.49345760000006,0.899021900000037],[127.49181770000007,0.89299520000003],[127.4943522000001,0.889649],[127.4955572,0.890747600000054],[127.49665030000006,0.889997100000073],[127.49897740000006,0.892551500000025],[127.49988650000012,0.890704300000039],[127.497592,0.889953800000058],[127.49657710000008,0.886735500000043],[127.5020042000001,0.884412900000029],[127.503073,0.885683800000038],[127.50499720000005,0.884914200000026],[127.50733180000009,0.888531600000022],[127.51500280000005,0.887351400000057],[127.51844560000006,0.888656800000035],[127.52179450000006,0.88600230000003],[127.52947240000003,0.885222],[127.52371280000011,0.882572700000026],[127.52525770000011,0.880858],[127.52493950000007,0.87758830000007],[127.52611070000012,0.877172500000029],[127.53745070000002,0.88327490000006],[127.54096560000005,0.881989900000065],[127.54269340000008,0.882913900000062],[127.54304530000002,0.881645200000037],[127.54629390000002,0.880799600000046],[127.54135080000003,0.880211800000041],[127.537049,0.87762],[127.54015990000005,0.873791700000027],[127.53968490000011,0.872588900000039],[127.5369955000001,0.873852600000021],[127.53803760000005,0.871260800000073],[127.53622060000009,0.872864],[127.5338961000001,0.872730400000023],[127.53384260000007,0.869898100000057],[127.53322810000009,0.871340900000064],[127.53079660000003,0.871314200000029],[127.53256110000007,0.86749640000005],[127.53481130000011,0.868000700000039],[127.53531220000002,0.870272200000045],[127.53612790000011,0.866191600000036],[127.53746330000001,0.868930800000044],[127.53944780000006,0.868594400000063],[127.53936390000001,0.867239100000063],[127.53598420000003,0.863983100000041],[127.53101040000001,0.862149500000044],[127.52996830000006,0.86393970000006],[127.52919340000005,0.862309800000048],[127.52681540000003,0.863244900000041],[127.52459770000007,0.860573],[127.52574590000006,0.85850320000003],[127.5388650000001,0.859809600000062],[127.54331740000009,0.861546500000031],[127.54542160000005,0.868247],[127.54340820000004,0.874560300000041],[127.54628050000008,0.876152],[127.54855950000001,0.880574700000068],[127.54755470000009,0.875723700000037],[127.5492809000001,0.874522800000022],[127.55039250000004,0.877169500000036],[127.54970140000012,0.874221100000057],[127.5513525,0.873149700000056],[127.55677390000005,0.874933200000044],[127.55492750000008,0.876136900000063],[127.55998020000004,0.877124200000026],[127.5592325,0.875564900000029],[127.5609138000001,0.872491],[127.56166480000002,0.873314500000049],[127.56236850000005,0.868782200000055],[127.55933890000006,0.866222700000037],[127.55591880000009,0.866035600000032],[127.55557150000004,0.864566100000047],[127.55723180000007,0.863378100000034],[127.56109570000001,0.863315],[127.56348040000012,0.864833300000043],[127.56597620000002,0.876112200000023],[127.5681095000001,0.875793900000076],[127.56679550000001,0.871172400000034],[127.5683398000001,0.870905],[127.56892630000004,0.868868400000053],[127.56631270000003,0.869348900000034],[127.566638,0.86532980000004],[127.57322520000002,0.864976],[127.57417490000012,0.86814030000005],[127.57627520000005,0.866599],[127.57999930000005,0.867145400000027],[127.58216650000008,0.863503700000024],[127.58871910000005,0.860934200000031],[127.59325540000009,0.861771400000066],[127.59476390000009,0.864193700000044],[127.60005510000008,0.865669700000069],[127.60098790000006,0.864587],[127.60354730000006,0.865349400000071],[127.60506790000011,0.86199380000005],[127.61013550000007,0.864482700000053],[127.61084950000009,0.862537],[127.6096490000001,0.860458300000062],[127.61349370000005,0.853937700000074],[127.61852750000003,0.85389680000003],[127.61796640000011,0.861752300000035],[127.61953960000005,0.86303840000005],[127.62879040000007,0.861153900000033],[127.624666,0.85599030000003],[127.624647,0.854850200000044],[127.62687540000002,0.85426190000004],[127.62640950000002,0.849753],[127.6240199,0.846244400000046],[127.62458120000008,0.843959100000063],[127.62807520000001,0.845058700000038],[127.6273533000001,0.848456700000042],[127.63007450000009,0.848457600000074],[127.63053030000003,0.851149700000065],[127.63606320000008,0.85218210000005],[127.63900610000007,0.851954400000068],[127.64014760000009,0.850460300000066],[127.63379470000007,0.840231200000062],[127.63559140000007,0.836158700000055],[127.63939590000007,0.836072700000045],[127.63580650000006,0.826653700000065],[127.638497,0.822648600000036],[127.63823630000002,0.817300300000056],[127.63610310000001,0.810073400000022],[127.63330910000002,0.806653],[127.6218732000001,0.802511500000037],[127.61825670000007,0.790220600000055],[127.62095820000002,0.786734300000035],[127.6233175000001,0.787504],[127.62433830000009,0.786148600000047],[127.62102440000001,0.782028400000058],[127.62160580000011,0.778399900000068],[127.62893880000001,0.777329700000053],[127.63255470000001,0.772665200000063],[127.63851760000011,0.768494600000054],[127.64803010000003,0.76950080000006],[127.64799420000008,0.774050800000055],[127.651038,0.774464300000034],[127.65151130000004,0.776132700000062],[127.65681810000001,0.773107400000072],[127.65762150000012,0.775843100000031],[127.66092540000011,0.776118300000064],[127.66296610000006,0.775511700000038],[127.66368140000009,0.771552200000031],[127.66718190000006,0.77049820000002],[127.66717140000003,0.767658600000061],[127.67267310000011,0.771188800000061],[127.6788467,0.761461500000053],[127.68214630000011,0.758668900000032],[127.68686430000002,0.758758700000044],[127.692283,0.756299300000023],[127.70028430000002,0.756255400000043],[127.70022030000007,0.760265700000048],[127.70212210000011,0.76249260000003],[127.71354570000005,0.761447900000064],[127.71678070000007,0.765035500000067],[127.723579,0.760627200000044],[127.7279635000001,0.758911500000067],[127.73141150000004,0.759244],[127.7310543000001,0.762152300000025],[127.7350963,0.774614300000053],[127.728283,0.77734],[127.72254,0.781800800000042],[127.71985570000004,0.786213500000031],[127.71917050000002,0.790552200000036],[127.72166360000006,0.803162100000065],[127.71463710000012,0.809548200000052],[127.7093665000001,0.821201400000064]]]]},"properties":{"shapeName":"Halmahera Barat","shapeISO":"","shapeID":"22746128B54683707359418","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[127.64557280000008,-1.842101499999956],[127.63863470000001,-1.844474299999945],[127.63993630000004,-1.847122699999943],[127.638134,-1.848218399999951],[127.63773190000006,-1.847121],[127.63360440000008,-1.85122],[127.63955590000012,-1.848672699999952],[127.64557280000008,-1.842101499999956]]],[[[127.64816420000011,-1.829008699999974],[127.64601070000003,-1.828269],[127.64871080000012,-1.830313799999942],[127.64816420000011,-1.829008699999974]]],[[[127.6345874000001,-1.820883199999969],[127.61818290000008,-1.823780299999953],[127.613325,-1.822297899999967],[127.602478,-1.822387699999979],[127.585083,-1.831787099999929],[127.58367920000012,-1.829589799999951],[127.58428960000003,-1.827575699999954],[127.58270260000006,-1.828125],[127.5797119,-1.834777799999927],[127.57452390000003,-1.838012699999979],[127.57208250000008,-1.843627899999944],[127.5726929000001,-1.860412599999961],[127.57373050000001,-1.8613281],[127.57769780000001,-1.860412599999961],[127.57568360000005,-1.8632812],[127.57232670000008,-1.862915],[127.57208250000008,-1.865600599999937],[127.5789185000001,-1.866210899999942],[127.58270260000006,-1.861999499999968],[127.593689,-1.856689499999959],[127.5961304000001,-1.853027299999951],[127.59112550000009,-1.852600099999961],[127.5922852000001,-1.850708],[127.59008790000007,-1.849426299999948],[127.59472660000006,-1.8468018],[127.60089110000001,-1.8457031],[127.60150150000004,-1.848327599999948],[127.6090630000001,-1.847194],[127.6181041000001,-1.849299899999949],[127.61931130000005,-1.851423599999976],[127.62111260000006,-1.851568099999952],[127.62466960000006,-1.849543599999947],[127.62849720000008,-1.850166699999932],[127.63512480000009,-1.846880499999941],[127.63896770000008,-1.842900399999962],[127.63659840000003,-1.841539099999977],[127.64062760000002,-1.841995399999973],[127.641221,-1.840851],[127.63802180000005,-1.839942199999939],[127.64543370000001,-1.833746799999972],[127.64221070000008,-1.832909599999937],[127.64530720000005,-1.828547299999968],[127.64323690000003,-1.823656399999948],[127.64115230000004,-1.821961399999964],[127.6345874000001,-1.820883199999969]]],[[[128.3513587000001,-1.602009299999963],[128.34212890000003,-1.601893399999938],[128.3312009000001,-1.604289599999959],[128.32237670000006,-1.6077028],[128.311812,-1.614390199999946],[128.30381380000006,-1.622603],[128.2972026000001,-1.635192199999949],[128.29449230000012,-1.643745499999966],[128.29700160000004,-1.648404699999958],[128.3175605,-1.663883099999964],[128.3224696000001,-1.665296399999932],[128.32975040000008,-1.6638026],[128.33802880000007,-1.657707199999948],[128.35184690000006,-1.654747399999962],[128.35825880000004,-1.6506276],[128.36218810000003,-1.645801099999971],[128.36536350000006,-1.629229799999962],[128.3654934000001,-1.617400399999951],[128.36245180000003,-1.610143799999946],[128.3513587000001,-1.602009299999963]]],[[[128.102993,-1.561329],[128.10068290000004,-1.560229],[128.08847250000008,-1.562374099999943],[128.08705110000005,-1.566373499999941],[128.0891875000001,-1.569084299999929],[128.08530990000008,-1.566059199999927],[128.0838907000001,-1.568267699999979],[128.084395,-1.5722195],[128.08885750000002,-1.576124599999957],[128.09503640000003,-1.577842299999929],[128.09883580000007,-1.5736859],[128.0975333,-1.564604799999927],[128.1002380000001,-1.562679799999955],[128.10335930000008,-1.562751699999978],[128.102993,-1.561329]]],[[[128.06801440000004,-1.538818],[128.06561550000004,-1.536309899999935],[128.0593569,-1.536949199999981],[128.05738140000005,-1.538721599999974],[128.0578048000001,-1.543093799999951],[128.0616017000001,-1.544593599999928],[128.06664530000012,-1.5435869],[128.06880310000008,-1.541631199999927],[128.06801440000004,-1.538818]]],[[[128.0816569000001,-1.534818799999925],[128.07998670000006,-1.5332282],[128.0787408000001,-1.533900299999971],[128.08074390000002,-1.538517799999966],[128.08375060000003,-1.540812199999948],[128.09356030000004,-1.539823899999931],[128.0922584000001,-1.537819599999978],[128.0816569000001,-1.534818799999925]]],[[[128.03873350000003,-1.526330899999948],[128.03548280000007,-1.526543499999946],[128.03371990000005,-1.528377099999943],[128.0321996,-1.527725099999941],[128.03159290000008,-1.529415599999936],[128.03456920000008,-1.531404299999963],[128.03745330000004,-1.536022199999934],[128.04210020000005,-1.5387453],[128.04562450000003,-1.538349499999924],[128.04687350000006,-1.530462],[128.04523390000008,-1.528443399999958],[128.04410960000007,-1.529023799999948],[128.0441406000001,-1.527648],[128.04231740000012,-1.528595],[128.04177130000005,-1.526852],[128.03931020000005,-1.527676399999962],[128.03873350000003,-1.526330899999948]]],[[[127.35635310000009,-1.528532699999971],[127.35664980000001,-1.524023799999952],[127.35516770000004,-1.526484099999948],[127.35635310000009,-1.528532699999971]]],[[[127.99224830000003,-1.487919399999953],[127.98632110000005,-1.486609899999962],[127.9849938000001,-1.488143299999933],[127.98527400000012,-1.492575],[127.9892516000001,-1.498031099999935],[127.98930630000007,-1.501724199999956],[127.99387760000002,-1.50505],[127.99856000000011,-1.503779],[127.99896,-1.501984299999947],[127.99673310000003,-1.495137],[127.99224830000003,-1.487919399999953]]],[[[127.39739080000004,-1.490586499999949],[127.39607940000008,-1.483607899999924],[127.3921084000001,-1.483207499999935],[127.38717970000005,-1.4874214],[127.385147,-1.491725699999961],[127.3813278,-1.493886799999927],[127.38167290000001,-1.5019466],[127.37813710000012,-1.506536799999935],[127.37932840000008,-1.512565799999948],[127.37716410000007,-1.516781599999945],[127.37790610000002,-1.5220154],[127.38797650000004,-1.522729599999934],[127.39597210000011,-1.525407399999949],[127.39917140000011,-1.516113599999926],[127.3965392,-1.511536699999965],[127.39638080000009,-1.506744699999956],[127.40476850000005,-1.510160199999973],[127.40484060000006,-1.507563499999947],[127.39979720000008,-1.500480599999946],[127.40308650000009,-1.502956099999949],[127.41052600000012,-1.500974299999939],[127.4072953000001,-1.493155099999967],[127.40127450000011,-1.490390599999955],[127.39739080000004,-1.490586499999949]]],[[[127.96380490000001,-1.469551899999942],[127.95881730000008,-1.466831099999979],[127.95666730000005,-1.467163],[127.959422,-1.470382],[127.96911260000002,-1.473890899999958],[127.96859960000006,-1.472022899999956],[127.96380490000001,-1.469551899999942]]],[[[127.464539,-1.432458799999949],[127.464758,-1.434143899999924],[127.4662839,-1.433312499999943],[127.464539,-1.432458799999949]]],[[[127.84637540000006,-1.433007699999962],[127.84686040000008,-1.4294185],[127.84398260000012,-1.427122699999927],[127.84204250000005,-1.431196899999975],[127.84330360000001,-1.433137],[127.84637540000006,-1.433007699999962]]],[[[127.28225420000001,-1.4198594],[127.279148,-1.420603299999925],[127.27912650000007,-1.421992299999943],[127.28225420000001,-1.4198594]]],[[[127.86871340000005,-1.431213399999933],[127.87117220000005,-1.425944899999934],[127.87779190000003,-1.424592],[127.87894580000011,-1.421764799999949],[127.8781024000001,-1.419931399999939],[127.87263890000008,-1.417547899999931],[127.86786790000008,-1.421093299999939],[127.86468510000009,-1.427002],[127.86592460000008,-1.429641799999956],[127.86871340000005,-1.431213399999933]]],[[[127.52315520000002,-1.396006799999952],[127.52376560000005,-1.394082099999935],[127.52205660000004,-1.395249799999931],[127.52315520000002,-1.396006799999952]]],[[[127.395244,-1.379923099999928],[127.39703540000005,-1.379220199999963],[127.39723260000005,-1.377305099999944],[127.39122040000007,-1.370654099999967],[127.39065470000003,-1.379582],[127.395244,-1.379923099999928]]],[[[127.3608458000001,-1.364391499999954],[127.35774090000007,-1.368822499999965],[127.35918260000005,-1.370669],[127.35743940000009,-1.373166899999944],[127.36021770000002,-1.3779861],[127.35722340000007,-1.379398599999945],[127.356997,-1.378072499999973],[127.35294770000007,-1.376852199999973],[127.34874960000002,-1.383894199999929],[127.34674440000003,-1.381080399999973],[127.34832910000011,-1.379625],[127.34917010000004,-1.373900299999946],[127.35117530000002,-1.371798],[127.35069020000003,-1.3701809],[127.34728880000011,-1.365357199999949],[127.34200020000003,-1.364931099999978],[127.34027580000009,-1.368725499999925],[127.3417985000001,-1.373380199999929],[127.33866260000002,-1.3756181],[127.33846990000006,-1.379775],[127.34191780000003,-1.384821899999963],[127.3367948,-1.388945499999977],[127.334066,-1.387451899999974],[127.33390430000009,-1.383991199999969],[127.33041130000004,-1.380174799999963],[127.3274235,-1.382055099999945],[127.32546280000008,-1.375323399999957],[127.32762980000007,-1.373576899999932],[127.32403970000007,-1.370277899999962],[127.32711230000007,-1.367528799999945],[127.32682120000004,-1.365070699999933],[127.3219051000001,-1.364553199999932],[127.31511100000012,-1.380571399999951],[127.32082770000011,-1.389065899999935],[127.31990950000011,-1.393136599999934],[127.31495140000004,-1.396507899999961],[127.3054426000001,-1.396443199999965],[127.30033250000008,-1.400292],[127.30036480000001,-1.403299899999979],[127.2990711000001,-1.404431899999963],[127.2931847000001,-1.404076099999941],[127.2887214000001,-1.406146],[127.28451690000009,-1.406243099999926],[127.28454920000001,-1.411417899999947],[127.2809592000001,-1.413973],[127.283168,-1.4191041],[127.28596670000002,-1.418655499999943],[127.2927466000001,-1.426997],[127.29366990000005,-1.432505399999968],[127.303211,-1.435060499999963],[127.31391640000004,-1.435254499999928],[127.31702130000008,-1.436904],[127.31964570000002,-1.442089799999962],[127.32391040000005,-1.445119099999943],[127.32449090000011,-1.450971099999947],[127.3275327,-1.454336799999965],[127.33157560000006,-1.4533341],[127.32937630000004,-1.448935499999948],[127.33523030000003,-1.442046499999947],[127.33778540000003,-1.4411086],[127.3411814000001,-1.434510599999953],[127.34380120000003,-1.433022899999969],[127.35091660000012,-1.433637399999952],[127.35525050000001,-1.428009699999961],[127.3614927000001,-1.426101499999959],[127.37540760000002,-1.425908099999958],[127.37780550000002,-1.422485],[127.38251920000005,-1.420911099999955],[127.38811950000002,-1.416160799999943],[127.39507340000011,-1.412695699999972],[127.3935183000001,-1.408940899999948],[127.39941050000004,-1.405375799999945],[127.39962480000008,-1.400712499999941],[127.39256310000007,-1.392611599999952],[127.39302680000003,-1.387872399999935],[127.38820780000003,-1.387354899999934],[127.38012210000011,-1.388907299999971],[127.37113080000006,-1.382341799999949],[127.37151890000007,-1.379883699999937],[127.37462290000008,-1.379819299999951],[127.37543190000008,-1.378473099999951],[127.3827907000001,-1.380055399999947],[127.384262,-1.373318099999949],[127.38154520000012,-1.367658099999971],[127.37704950000011,-1.368175599999972],[127.37440220000008,-1.369994899999938],[127.36750840000002,-1.377555],[127.36411240000007,-1.375097],[127.36406620000002,-1.369968099999937],[127.3608458000001,-1.364391499999954]]],[[[127.37823130000004,-1.3349887],[127.38247390000004,-1.333332299999938],[127.38125630000002,-1.330822299999966],[127.37395250000009,-1.330845599999975],[127.37467850000007,-1.333268299999929],[127.37823130000004,-1.3349887]]],[[[127.64195670000004,-1.330205],[127.6373804000001,-1.334710499999971],[127.6344448000001,-1.335063899999966],[127.631762,-1.3373592],[127.62863210000012,-1.340608299999928],[127.626158,-1.346808599999974],[127.6201962,-1.351727],[127.61465170000008,-1.352233799999965],[127.6118497000001,-1.354618499999958],[127.6081832000001,-1.353843499999925],[127.602609,-1.356734899999935],[127.5899104,-1.359835],[127.5862141,-1.362786099999937],[127.5812658000001,-1.363501499999927],[127.57867250000004,-1.367406499999959],[127.57879250000008,-1.370996399999967],[127.576857,-1.374695899999949],[127.57396270000004,-1.375902],[127.56993850000003,-1.375007799999935],[127.56102560000011,-1.379270399999939],[127.56153240000003,-1.3813272],[127.55898090000005,-1.3843177],[127.55906960000004,-1.389006599999959],[127.55455710000001,-1.392326699999956],[127.550354,-1.392922899999974],[127.5479097000001,-1.397543199999973],[127.540219,-1.402670399999977],[127.53989420000005,-1.404879199999925],[127.53422750000004,-1.408662],[127.52936860000011,-1.406992699999932],[127.52220530000011,-1.412014799999952],[127.521309,-1.416809],[127.513433,-1.417103599999962],[127.51339110000004,-1.425802],[127.5164476000001,-1.429182299999979],[127.51712420000001,-1.435779699999955],[127.51216890000012,-1.433969699999977],[127.50742930000001,-1.434029299999963],[127.504985,-1.440169899999944],[127.50585120000005,-1.446047],[127.50844280000001,-1.448427],[127.5045378000001,-1.4530175],[127.49934220000011,-1.453033299999959],[127.49774140000011,-1.4508713],[127.49386370000002,-1.450114499999927],[127.4917498000001,-1.444134499999961],[127.49424170000009,-1.441184599999929],[127.49275490000002,-1.438276799999926],[127.48825720000002,-1.440611199999978],[127.48804550000011,-1.445465699999943],[127.48393590000012,-1.446302],[127.4846255000001,-1.443836399999952],[127.48155520000012,-1.440319],[127.47365370000011,-1.4382041],[127.47180750000007,-1.4408349],[127.46936340000002,-1.437904399999979],[127.46543290000011,-1.439267799999925],[127.46345630000008,-1.437118399999974],[127.45827450000002,-1.438500599999941],[127.454277,-1.434774899999979],[127.4559494,-1.433135],[127.4476029000001,-1.431763799999942],[127.4483183000001,-1.428902199999925],[127.44569520000005,-1.4266367],[127.43717290000006,-1.426159699999971],[127.43657370000005,-1.423119199999974],[127.43460630000004,-1.421420099999978],[127.435772,-1.418406599999969],[127.44793370000002,-1.416017499999953],[127.44733460000009,-1.41364],[127.44386210000005,-1.413545499999941],[127.44387680000011,-1.411851499999955],[127.44081620000009,-1.409060499999953],[127.43635760000006,-1.415506199999925],[127.43541110000001,-1.411404399999981],[127.43262060000006,-1.411380399999928],[127.42620020000004,-1.414146799999969],[127.42636470000002,-1.416170699999952],[127.4236773,-1.417831399999955],[127.42164770000011,-1.417174299999942],[127.41821930000003,-1.418946299999959],[127.4139487000001,-1.416680499999927],[127.412667,-1.417962299999942],[127.41961240000012,-1.427441499999929],[127.42378570000005,-1.427113599999927],[127.42293120000011,-1.424982799999952],[127.42400110000005,-1.424271899999951],[127.427335,-1.4254488],[127.42912210000009,-1.424635],[127.43146710000008,-1.426482499999963],[127.43179690000011,-1.431852699999979],[127.4295565000001,-1.433769],[127.43297240000004,-1.437127499999974],[127.43671190000009,-1.437537599999928],[127.4409303000001,-1.434232299999962],[127.44337260000009,-1.433083199999942],[127.44434870000009,-1.433923],[127.441271,-1.441064799999936],[127.43894720000003,-1.443076899999937],[127.43944560000011,-1.445810199999926],[127.43651460000001,-1.447462299999927],[127.43993100000012,-1.450077699999952],[127.43958260000011,-1.4512481],[127.43493420000004,-1.450960699999939],[127.43266870000002,-1.4532262],[127.43273420000003,-1.454555699999958],[127.43446090000009,-1.454892499999971],[127.433861,-1.4564157],[127.4280781000001,-1.457816799999932],[127.427915,-1.464628399999924],[127.43225140000004,-1.466878599999973],[127.43260910000004,-1.468577699999969],[127.42411360000006,-1.470396099999959],[127.42399430000012,-1.472154799999942],[127.41958260000001,-1.4718269],[127.4160055000001,-1.479666599999973],[127.41634240000008,-1.481649899999979],[127.41882180000005,-1.481540499999937],[127.41639310000005,-1.488162199999977],[127.41898640000011,-1.491470899999968],[127.41880760000004,-1.494899],[127.42041730000005,-1.496031699999946],[127.42491640000003,-1.495208099999957],[127.42822720000004,-1.496806699999979],[127.427631,-1.498565499999927],[127.43076090000011,-1.495077799999933],[127.4324329000001,-1.495254],[127.4314763000001,-1.498833699999977],[127.42867430000001,-1.501963699999976],[127.42470970000011,-1.502500199999929],[127.41788350000002,-1.506733099999963],[127.41755310000008,-1.510042099999964],[127.4121927000001,-1.516606499999966],[127.41049090000001,-1.521339399999931],[127.40733120000004,-1.522621199999946],[127.4064102000001,-1.5248008],[127.4086215000001,-1.526649799999973],[127.40870240000004,-1.528761799999927],[127.405334,-1.531534],[127.4027913000001,-1.538318699999934],[127.40911260000007,-1.542614499999956],[127.4110157,-1.546020099999964],[127.40989470000011,-1.557288899999946],[127.41219,-1.562565099999972],[127.4119515000001,-1.5679605],[127.407361,-1.586292899999933],[127.40005990000009,-1.606062899999927],[127.39154670000005,-1.617491099999938],[127.39561620000006,-1.6224806],[127.40089480000006,-1.634974499999942],[127.40347290000011,-1.643295],[127.4035967000001,-1.652308799999958],[127.4079286000001,-1.657010899999932],[127.40888920000009,-1.662213699999938],[127.4123181000001,-1.664182299999936],[127.41705920000004,-1.663634699999932],[127.41998110000009,-1.658986399999947],[127.4228399000001,-1.658868799999937],[127.42450480000002,-1.662202399999956],[127.42331170000011,-1.664718499999935],[127.42498750000004,-1.669322699999952],[127.430939,-1.674601499999937],[127.4339010000001,-1.679518299999927],[127.4508674000001,-1.688809499999934],[127.48269590000007,-1.703290699999968],[127.49130240000011,-1.710729299999969],[127.49616930000002,-1.717182099999945],[127.49710530000004,-1.723655699999938],[127.50517990000003,-1.725939599999947],[127.5281470000001,-1.725286299999937],[127.55457380000007,-1.733913499999971],[127.5628637000001,-1.735358299999973],[127.58273540000005,-1.7331198],[127.59676470000011,-1.738141],[127.6066320000001,-1.733257499999979],[127.61021360000007,-1.722495399999957],[127.61672140000007,-1.717657299999928],[127.6214007000001,-1.720921299999929],[127.62631010000007,-1.719006799999931],[127.63147890000005,-1.720856699999956],[127.6355622000001,-1.724671599999965],[127.64784,-1.730650299999979],[127.65312940000001,-1.730630099999928],[127.65697890000001,-1.728235299999938],[127.66157750000002,-1.727878899999951],[127.66604640000003,-1.725604399999952],[127.66924160000008,-1.722034399999927],[127.67035710000005,-1.710958499999947],[127.67301630000009,-1.707172199999945],[127.6795231000001,-1.703604399999961],[127.68487080000011,-1.705406299999936],[127.69187680000005,-1.703588899999943],[127.69777870000007,-1.6960166],[127.70429850000005,-1.690962099999979],[127.71629740000003,-1.686870299999953],[127.72910330000002,-1.687693899999942],[127.73176870000009,-1.692538799999966],[127.73566220000009,-1.695610299999942],[127.741524,-1.694751],[127.74730640000007,-1.687705799999947],[127.7546215000001,-1.6868234],[127.763757,-1.689802399999962],[127.77432440000007,-1.689161699999943],[127.79118920000008,-1.696053599999971],[127.79843270000003,-1.695770399999958],[127.81105940000009,-1.69808],[127.81699060000005,-1.700865],[127.82908430000009,-1.698378799999944],[127.837248,-1.693468499999938],[127.8437881000001,-1.694143799999949],[127.84912290000011,-1.6981752],[127.85516330000007,-1.697915],[127.86501840000005,-1.693509099999972],[127.873192,-1.692003299999953],[127.882286,-1.685127099999931],[127.88947120000012,-1.682949299999962],[127.90263440000001,-1.685474399999976],[127.9057087000001,-1.684445099999948],[127.91320070000006,-1.6875664],[127.915584,-1.686632699999961],[127.92436350000003,-1.688268],[127.9416364000001,-1.692281899999955],[127.95258310000008,-1.696436],[127.96143560000007,-1.695529699999952],[127.96722470000009,-1.697714799999972],[127.9692506,-1.6967567],[127.98127060000002,-1.699470199999951],[127.9998634000001,-1.709145699999965],[128.0039286000001,-1.712824099999978],[128.0086616000001,-1.720517599999937],[128.01229180000007,-1.720150899999965],[128.02443330000006,-1.72731],[128.02874870000005,-1.7225405],[128.03924770000003,-1.717894099999967],[128.06456520000006,-1.719321399999956],[128.0755521000001,-1.715706],[128.08092520000002,-1.716595899999959],[128.08554550000008,-1.721897399999932],[128.08860750000008,-1.722018799999944],[128.101753,-1.714207899999963],[128.1057959000001,-1.705913099999975],[128.11084950000009,-1.701815099999976],[128.12473210000007,-1.697193499999969],[128.13280070000008,-1.691729899999928],[128.14785330000007,-1.688241599999969],[128.15649330000008,-1.683869199999947],[128.16315930000007,-1.663279899999964],[128.16842730000008,-1.637384399999974],[128.16489220000005,-1.614542599999936],[128.14947180000001,-1.594063899999981],[128.1451433000001,-1.592245399999968],[128.1405334000001,-1.588050799999962],[128.1211727000001,-1.5656589],[128.11086120000004,-1.560549399999957],[128.105848,-1.568148],[128.10416290000012,-1.573362699999961],[128.1005279000001,-1.576508299999944],[128.1012121000001,-1.578367],[128.09597,-1.578514599999949],[128.08966820000012,-1.583997],[128.0839208000001,-1.581746399999929],[128.08371350000004,-1.578988799999934],[128.0812125000001,-1.576949499999955],[128.07785980000006,-1.581533899999954],[128.07241020000004,-1.579313399999933],[128.07458630000008,-1.575238],[128.077058,-1.575958499999956],[128.08128810000005,-1.574311799999975],[128.081349,-1.571314499999971],[128.07870960000002,-1.566911699999935],[128.07642710000005,-1.565151699999944],[128.07067930000005,-1.564326599999958],[128.0596981000001,-1.566449099999943],[128.05597820000003,-1.559820299999956],[128.05314260000011,-1.559675399999946],[128.05145750000008,-1.557461199999977],[128.05162610000002,-1.553343799999936],[128.04550530000006,-1.550378199999955],[128.0457272000001,-1.545836],[128.041107,-1.544041599999957],[128.03813690000004,-1.540060799999935],[128.03000450000002,-1.535304799999949],[128.020244,-1.526303399999961],[128.01337130000002,-1.530190399999981],[128.0172464000001,-1.524405899999977],[128.0145513000001,-1.518410599999925],[128.0108662,-1.514533],[128.0079135000001,-1.514182299999959],[128.00323980000007,-1.509294599999976],[128.00195870000005,-1.510343099999943],[128.0038628000001,-1.514630099999977],[128.00109540000005,-1.509473499999956],[127.9976253000001,-1.510431],[127.99696840000001,-1.5139375],[127.99848620000012,-1.516515899999945],[127.99542040000006,-1.512468099999978],[127.991519,-1.5122265],[127.98955510000008,-1.508509],[127.99030140000002,-1.5046728],[127.981431,-1.494328099999962],[127.98235540000007,-1.491780799999958],[127.9783235000001,-1.483956099999943],[127.967482,-1.477370599999972],[127.95669160000011,-1.473875199999952],[127.94920690000004,-1.462332299999957],[127.93380180000008,-1.447818499999926],[127.91635320000012,-1.441246299999932],[127.89868160000003,-1.432006799999954],[127.89183460000004,-1.4254927],[127.88705650000009,-1.425556799999924],[127.8855072,-1.426904799999932],[127.8834839000001,-1.432495099999926],[127.8781752000001,-1.439339399999938],[127.86961740000004,-1.435424799999964],[127.86019850000002,-1.435062],[127.85778970000001,-1.437663899999961],[127.85001470000009,-1.437458699999979],[127.84847720000005,-1.4389573],[127.84259220000001,-1.435044799999957],[127.83551710000006,-1.435032],[127.835071,-1.433862899999951],[127.83602360000009,-1.434432899999933],[127.83641620000003,-1.433137],[127.83477410000012,-1.432034499999929],[127.83593640000004,-1.430176899999935],[127.83951040000011,-1.429489399999966],[127.83968210000012,-1.425376599999936],[127.83169530000009,-1.423565899999971],[127.82506660000001,-1.417454599999928],[127.8208307000001,-1.417454599999928],[127.81698290000008,-1.414027],[127.80960560000005,-1.416712299999972],[127.80120340000008,-1.413412699999981],[127.7984226000001,-1.409403099999963],[127.7931843,-1.389323099999956],[127.78925250000009,-1.388784299999941],[127.794025,-1.380786599999965],[127.793055,-1.373090899999966],[127.78914240000006,-1.3706981],[127.7859089000001,-1.370601099999931],[127.7856829000001,-1.373026599999946],[127.77786290000006,-1.379076699999928],[127.7799490000001,-1.375870899999939],[127.78012930000011,-1.372604199999955],[127.77659640000002,-1.370504099999948],[127.77426830000002,-1.366138899999953],[127.77197250000006,-1.365686199999971],[127.76919170000008,-1.362258699999927],[127.7658851000001,-1.3631861],[127.76230090000001,-1.358710699999961],[127.76026720000004,-1.3524935],[127.75780980000002,-1.351911499999972],[127.75050210000006,-1.357149699999979],[127.74523150000005,-1.352913799999953],[127.73761330000002,-1.350266399999953],[127.73206880000009,-1.343350799999939],[127.7233711,-1.343567],[127.7068422000001,-1.335961099999963],[127.7027412000001,-1.339733699999954],[127.69978580000009,-1.3394644],[127.69823580000002,-1.341144899999961],[127.69956460000003,-1.344449899999972],[127.70197680000001,-1.344031599999937],[127.70233230000008,-1.3474483],[127.70429710000008,-1.3484983],[127.70252820000007,-1.348597099999949],[127.70240420000005,-1.352333399999964],[127.70088880000003,-1.352949199999955],[127.69677760000002,-1.349723],[127.69120880000003,-1.349834499999929],[127.69048550000002,-1.347136499999976],[127.68652040000006,-1.347739499999932],[127.68517950000012,-1.344066199999929],[127.6839275000001,-1.3445133],[127.68395730000009,-1.346719199999939],[127.68294380000009,-1.346480699999972],[127.68032890000006,-1.343660299999954],[127.68178130000001,-1.340966],[127.68008220000002,-1.337657299999933],[127.6788302000001,-1.336107199999958],[127.67749010000011,-1.337101399999938],[127.67689260000009,-1.334527299999934],[127.673554,-1.331278199999929],[127.66920190000008,-1.332023399999969],[127.6657143000001,-1.336315899999931],[127.66581450000001,-1.340145899999925],[127.6700995000001,-1.345512799999938],[127.66905660000009,-1.346920799999964],[127.67060860000004,-1.350401699999964],[127.6657143000001,-1.346182599999963],[127.6605872,-1.346182599999963],[127.65414310000006,-1.341292099999976],[127.65539420000005,-1.337293099999954],[127.65134640000008,-1.3310099],[127.64195670000004,-1.330205]]],[[[127.39815640000006,-1.312469799999974],[127.38921570000002,-1.312295],[127.3792797000001,-1.314992399999937],[127.37484250000011,-1.317721399999925],[127.37693880000006,-1.321581399999957],[127.38637890000007,-1.328375299999948],[127.39312350000012,-1.327788299999952],[127.39333560000011,-1.324324099999956],[127.40036170000008,-1.320977],[127.4060118000001,-1.325261799999964],[127.40413630000012,-1.326161899999931],[127.40178680000008,-1.324301499999933],[127.39895920000004,-1.3261022],[127.39408980000007,-1.3264651],[127.393977,-1.327732499999968],[127.40912920000005,-1.329629399999931],[127.41016550000006,-1.32825],[127.407702,-1.326700599999924],[127.40928610000003,-1.324982299999931],[127.40685110000004,-1.325600299999962],[127.41079860000002,-1.322842699999967],[127.41505250000012,-1.322423],[127.41384640000001,-1.3268441],[127.41076680000003,-1.328841899999929],[127.41252910000003,-1.3299133],[127.4129474,-1.332307599999979],[127.41809610000007,-1.3329869],[127.42222460000005,-1.331722099999979],[127.43486830000006,-1.317844599999944],[127.43397360000006,-1.316576599999962],[127.41767330000005,-1.315665],[127.41059540000003,-1.312336899999934],[127.39815640000006,-1.312469799999974]]],[[[127.70353210000007,-1.285545899999931],[127.70060640000008,-1.2829577],[127.70324570000002,-1.287306099999967],[127.70624380000004,-1.287774699999943],[127.70567380000011,-1.285511],[127.70353210000007,-1.285545899999931]]],[[[127.69589770000005,-1.277207099999941],[127.6972191000001,-1.275770699999953],[127.69654150000008,-1.274584799999957],[127.69439860000011,-1.277026699999965],[127.69589770000005,-1.277207099999941]]],[[[127.70146920000002,-1.2709229],[127.6994347000001,-1.270706299999972],[127.69725590000007,-1.273579299999938],[127.7013922000001,-1.281988099999978],[127.70353720000003,-1.275414699999942],[127.70200330000011,-1.273545799999965],[127.70357450000006,-1.272181399999965],[127.70146920000002,-1.2709229]]],[[[127.7074649000001,-1.272901799999943],[127.70687320000002,-1.268926199999953],[127.70621660000006,-1.270817499999964],[127.7074649000001,-1.272901799999943]]],[[[127.70129270000007,-1.266935],[127.69938840000009,-1.264366499999937],[127.70032880000008,-1.267078199999958],[127.69868560000009,-1.269628099999977],[127.7010414,-1.269844899999953],[127.70129270000007,-1.266935]]],[[[127.55826270000011,-1.1790607],[127.54811270000005,-1.171044399999971],[127.53970330000004,-1.179194699999925],[127.5264992000001,-1.176313799999946],[127.51905660000011,-1.178429299999948],[127.5108126,-1.177562699999953],[127.50898920000009,-1.183489099999974],[127.51044410000009,-1.199152399999946],[127.5094428000001,-1.202816],[127.5038899000001,-1.208381],[127.494537,-1.211968099999979],[127.48523880000005,-1.213435699999934],[127.47959750000007,-1.217384],[127.47030840000002,-1.234370099999978],[127.46552280000003,-1.239755699999932],[127.46521330000007,-1.250316699999928],[127.4672637000001,-1.2534431],[127.4843737000001,-1.259955199999979],[127.48790140000006,-1.269800099999941],[127.49261160000003,-1.271634899999924],[127.49898370000005,-1.269555099999934],[127.51069060000009,-1.269418199999961],[127.51622380000003,-1.267625299999963],[127.52488360000007,-1.2595475],[127.52765350000004,-1.252759499999968],[127.5317238,-1.250067599999966],[127.54641090000007,-1.250147699999957],[127.561385,-1.247785],[127.572233,-1.252281399999958],[127.57892520000007,-1.252536599999928],[127.58445540000002,-1.256455299999971],[127.58963,-1.258002899999951],[127.59600110000008,-1.258114099999943],[127.60538640000004,-1.261603899999955],[127.60956250000004,-1.261713899999961],[127.6222471000001,-1.269839699999977],[127.62929230000009,-1.277747],[127.6387840000001,-1.283069],[127.65873640000007,-1.284013699999946],[127.67088620000004,-1.291851899999926],[127.67591860000005,-1.292932299999961],[127.67884640000011,-1.291281199999958],[127.67606400000011,-1.2878309],[127.6664995000001,-1.284808199999929],[127.674316,-1.285818199999937],[127.67570870000009,-1.284633299999939],[127.6733537,-1.282943599999953],[127.67663840000012,-1.281436399999961],[127.68427560000009,-1.2842067],[127.68672160000006,-1.282232],[127.68907610000008,-1.284855799999946],[127.69303810000008,-1.285109399999953],[127.68872050000004,-1.282304899999929],[127.6908992000001,-1.279647499999953],[127.69368180000004,-1.282738599999959],[127.69111480000004,-1.276881299999957],[127.69742480000002,-1.256873799999937],[127.69709060000002,-1.247065799999973],[127.69420350000007,-1.238729499999977],[127.69629410000005,-1.233413499999926],[127.695191,-1.226515099999972],[127.67054630000007,-1.223018099999933],[127.66483430000005,-1.224991199999977],[127.66213970000001,-1.224558699999932],[127.66417380000007,-1.225457899999981],[127.66388760000007,-1.226822899999945],[127.6603536,-1.227467799999943],[127.66110460000004,-1.224558199999933],[127.65385920000006,-1.223979799999938],[127.647329,-1.220635399999935],[127.64151070000003,-1.221351],[127.62563200000011,-1.212217899999928],[127.61119670000005,-1.207719899999972],[127.59886360000007,-1.210407799999928],[127.59315730000003,-1.201818899999978],[127.58592940000005,-1.202318099999957],[127.581827,-1.198292399999957],[127.57736620000003,-1.196889099999964],[127.5653244,-1.188907599999936],[127.56255660000011,-1.182172399999956],[127.55826270000011,-1.1790607]]],[[[128.445152,-1.157906399999945],[128.44406430000004,-1.157593399999939],[128.44591960000002,-1.158477],[128.445152,-1.157906399999945]]],[[[128.44224450000002,-1.154956399999946],[128.43818270000008,-1.151402899999937],[128.43653970000003,-1.153011299999946],[128.43709410000008,-1.155536299999937],[128.44049070000005,-1.155179499999974],[128.4433762000001,-1.157101699999942],[128.44224450000002,-1.154956399999946]]],[[[128.43496360000006,-1.152787599999954],[128.43314390000012,-1.149390899999958],[128.42637390000004,-1.145769799999925],[128.42199940000012,-1.152382799999941],[128.41858050000008,-1.153342899999927],[128.41696220000006,-1.152279699999951],[128.41537270000003,-1.153588],[128.41122170000006,-1.152760399999977],[128.40931190000003,-1.156089299999962],[128.4171917000001,-1.160023499999966],[128.4259058,-1.155377699999974],[128.4347186000001,-1.156563699999936],[128.43496360000006,-1.152787599999954]]],[[[128.4516973000001,-1.142362799999944],[128.4502983000001,-1.144449699999939],[128.45201730000008,-1.148096099999975],[128.45290610000006,-1.1433291],[128.4516973000001,-1.142362799999944]]],[[[127.42596090000006,-1.148432199999945],[127.41855160000011,-1.139709299999936],[127.41091470000003,-1.136539199999959],[127.40774420000002,-1.136889199999928],[127.4039481000001,-1.140103199999942],[127.39759370000002,-1.142461499999968],[127.39556940000011,-1.146731799999941],[127.3970031,-1.149722599999961],[127.40284420000012,-1.150052499999958],[127.4057997000001,-1.154828099999975],[127.40608370000007,-1.160205299999973],[127.4094520000001,-1.163322799999946],[127.40901020000001,-1.172116699999947],[127.407298,-1.176085599999965],[127.40891920000001,-1.178548899999953],[127.407457,-1.181789399999957],[127.40866430000005,-1.1878455],[127.40814590000002,-1.199277499999937],[127.4122506000001,-1.202445799999964],[127.4134213000001,-1.206969199999946],[127.42142830000012,-1.217853599999955],[127.42764210000007,-1.2216011],[127.43206160000011,-1.220121199999937],[127.440441,-1.213090699999952],[127.4439794000001,-1.202665199999956],[127.44443680000006,-1.188368499999967],[127.44353970000009,-1.185478399999965],[127.44013340000004,-1.183114599999953],[127.43978540000012,-1.180576599999938],[127.435144,-1.177207099999976],[127.43448500000011,-1.172608599999933],[127.43161730000008,-1.1671796],[127.43188350000003,-1.159742399999971],[127.42596090000006,-1.148432199999945]]],[[[128.3798858,-1.133783299999948],[128.3668934000001,-1.130777099999932],[128.3630405,-1.133734799999957],[128.3717792000001,-1.139877899999931],[128.3876663000001,-1.143377799999939],[128.4030619,-1.155551499999945],[128.40615750000006,-1.153893499999924],[128.40522310000006,-1.14959],[128.4001462000001,-1.148871699999972],[128.3988998000001,-1.146226699999943],[128.3974078000001,-1.146540199999947],[128.39656190000005,-1.144948599999964],[128.39531480000005,-1.145688],[128.39600540000004,-1.144096799999943],[128.39326630000005,-1.145239299999957],[128.39324450000004,-1.142908299999931],[128.3905946000001,-1.143087099999946],[128.3846277,-1.1392083],[128.38514010000006,-1.137841199999968],[128.38235670000006,-1.137616499999979],[128.38211210000009,-1.136383699999953],[128.38471750000008,-1.135913599999981],[128.3843058000001,-1.134635899999978],[128.3798858,-1.133783299999948]]],[[[128.40145440000003,-1.121953699999949],[128.39042080000002,-1.122220299999981],[128.3872917000001,-1.125426899999979],[128.3847565000001,-1.125938599999927],[128.3878366,-1.127845499999978],[128.38726860000008,-1.128786699999978],[128.3895841000001,-1.130266499999948],[128.39242190000004,-1.136453099999926],[128.40059380000002,-1.138023799999928],[128.40323490000003,-1.126459099999977],[128.40145440000003,-1.121953699999949]]],[[[128.3359,-1.123287799999957],[128.3375648000001,-1.122546199999931],[128.33645,-1.1203199],[128.3336412000001,-1.1220665],[128.3359,-1.123287799999957]]],[[[128.30875350000008,-1.1165095],[128.30674980000003,-1.117619299999944],[128.30818970000007,-1.120655699999929],[128.3105312,-1.118911599999933],[128.30875350000008,-1.1165095]]],[[[128.3183534000001,-1.114774699999941],[128.31917510000005,-1.112793099999976],[128.3175434000001,-1.113097899999957],[128.3183534000001,-1.114774699999941]]],[[[128.34037410000008,-1.108655],[128.33721150000008,-1.107672899999955],[128.33281190000002,-1.108677199999931],[128.329149,-1.111979599999927],[128.3294337000001,-1.114971599999933],[128.335901,-1.119114],[128.3394919000001,-1.118947299999945],[128.34077560000003,-1.1208625],[128.34619740000005,-1.121629599999949],[128.34788630000003,-1.119236399999977],[128.34717440000009,-1.112653799999975],[128.34037410000008,-1.108655]]],[[[128.344214,-1.103118399999971],[128.34140130000003,-1.1011502],[128.33848490000003,-1.103283],[128.33614260000002,-1.103201099999978],[128.3355928000001,-1.105125399999963],[128.3449213,-1.109485499999948],[128.3458015000001,-1.107925099999932],[128.34316720000004,-1.105641],[128.344214,-1.103118399999971]]],[[[128.34177970000007,-1.096567599999958],[128.34032960000002,-1.094389099999944],[128.33742830000006,-1.095058699999925],[128.3341696000001,-1.098792],[128.33490630000006,-1.101042099999972],[128.338045,-1.102287499999932],[128.34177970000007,-1.096567599999958]]],[[[128.316098,-1.092052199999955],[128.31792230000008,-1.088663],[128.314508,-1.086372599999947],[128.31269280000004,-1.088122899999973],[128.316098,-1.092052199999955]]],[[[128.376512,-1.077487],[128.36964050000006,-1.072889799999928],[128.36002120000012,-1.073701599999936],[128.354135,-1.076883899999928],[128.34372860000008,-1.088969299999974],[128.34412040000007,-1.091674199999943],[128.34547570000007,-1.092296799999929],[128.34340620000012,-1.0950969],[128.34383390000005,-1.096748599999955],[128.34752030000004,-1.094643],[128.35564140000008,-1.094166099999939],[128.35585560000004,-1.093136899999934],[128.35835240000006,-1.093951199999935],[128.35656840000001,-1.096105099999932],[128.35759030000008,-1.099097299999926],[128.3561982000001,-1.103429499999947],[128.362059,-1.108505199999968],[128.36011870000004,-1.118773399999952],[128.369202,-1.122437599999955],[128.37671710000006,-1.120644],[128.3805943000001,-1.1159773],[128.38072540000007,-1.114684699999941],[128.37841890000004,-1.113535299999967],[128.37977480000006,-1.111548899999946],[128.38215270000012,-1.112506799999949],[128.38630320000004,-1.108342799999946],[128.3945318000001,-1.106022699999926],[128.39787390000004,-1.100972799999965],[128.40418810000006,-1.099107],[128.40782610000008,-1.101238099999932],[128.4128323000001,-1.099037],[128.41102510000007,-1.098246699999947],[128.4126662000001,-1.097241699999927],[128.41375920000007,-1.101837699999976],[128.41449690000002,-1.099085199999934],[128.41958510000006,-1.1038016],[128.42385390000004,-1.102462],[128.4303688000001,-1.107801099999961],[128.43045140000004,-1.1113677],[128.4230791000001,-1.112850299999934],[128.42719230000012,-1.1172075],[128.43090240000004,-1.115748099999962],[128.43033130000003,-1.117327799999941],[128.43952160000003,-1.122763199999952],[128.44807060000005,-1.1236744],[128.45094690000008,-1.130329299999971],[128.45363410000004,-1.130401599999971],[128.4540515000001,-1.123819199999957],[128.438369,-1.118717699999934],[128.4323544,-1.108232399999963],[128.4207163000001,-1.0951848],[128.41379840000002,-1.092613099999937],[128.4111805000001,-1.087665199999947],[128.3811018,-1.076745899999935],[128.376512,-1.077487]]],[[[128.2331583,-1.047739699999966],[128.2321879000001,-1.039006899999947],[128.22853450000002,-1.037180499999977],[128.22596580000004,-1.040319799999963],[128.22899130000008,-1.061438099999975],[128.23481370000002,-1.067773599999953],[128.23818170000004,-1.068344299999978],[128.24360460000003,-1.0652622],[128.24486050000007,-1.061323899999934],[128.24349040000004,-1.059440399999971],[128.23920920000012,-1.063321599999938],[128.2353846000001,-1.062865],[128.23373020000008,-1.054569799999967],[128.2353855,-1.050745599999971],[128.24137930000006,-1.046065499999941],[128.2453752,-1.047264],[128.2460602000001,-1.0523438],[128.24845760000005,-1.053314099999966],[128.25079720000008,-1.051392499999963],[128.25182470000004,-1.046426899999972],[128.2504546,-1.044315099999949],[128.2394375,-1.039920199999926],[128.2352704000001,-1.043516],[128.23407170000007,-1.048082199999953],[128.2331583,-1.047739699999966]]],[[[128.33501550000005,-1.035813599999926],[128.335745,-1.035038899999961],[128.334092,-1.035538899999949],[128.33501550000005,-1.035813599999926]]],[[[128.3424351000001,-1.034899899999971],[128.33948880000003,-1.035965],[128.34098460000007,-1.037355399999967],[128.34033980000004,-1.038583199999948],[128.33824560000005,-1.037401199999977],[128.33741650000002,-1.039625099999967],[128.3347467000001,-1.039323299999978],[128.3371035,-1.050722299999961],[128.33915130000003,-1.053873599999974],[128.34248860000002,-1.054523],[128.34268440000005,-1.053596299999924],[128.34503170000005,-1.055519699999934],[128.3508322,-1.054154099999948],[128.36050120000004,-1.043892799999981],[128.34767120000004,-1.035549699999933],[128.3424351000001,-1.034899899999971]]],[[[128.17929270000002,-1.037962899999968],[128.17824070000006,-1.033391799999947],[128.17428840000002,-1.031339399999979],[128.1755448,-1.038980799999933],[128.1781022,-1.040193],[128.17929270000002,-1.037962899999968]]],[[[128.13566530000003,-1.021644099999946],[128.134251,-1.020980799999961],[128.13268490000007,-1.022779699999944],[128.13391260000003,-1.026051399999972],[128.1331685,-1.023245399999951],[128.13566530000003,-1.021644099999946]]],[[[128.17269690000012,-0.9981438],[128.16987960000006,-0.998329299999966],[128.16997780000008,-0.999368799999957],[128.1749142000001,-1.002442599999938],[128.17269690000012,-0.9981438]]],[[[128.38003160000005,-0.989850399999966],[128.37938840000004,-0.986875699999928],[128.37885230000006,-0.9896895],[128.38003160000005,-0.989850399999966]]],[[[128.3777864000001,-0.985049799999956],[128.3755768000001,-0.985559099999932],[128.377625,-0.9866947],[128.3777864000001,-0.985049799999956]]],[[[128.36045400000012,-0.974692799999957],[128.35842450000007,-0.974617899999942],[128.3584538,-0.976019599999972],[128.35971260000008,-0.978465399999948],[128.36143120000008,-0.977630699999963],[128.3619347,-0.978957899999955],[128.3622316000001,-0.975483499999939],[128.36045400000012,-0.974692799999957]]],[[[128.36759470000004,-0.974440699999946],[128.36535260000005,-0.974026899999956],[128.368587,-0.975514499999974],[128.36759470000004,-0.974440699999946]]],[[[128.34552740000004,-0.956301899999971],[128.34735520000004,-0.956218799999931],[128.34791780000012,-0.953476299999977],[128.34472490000007,-0.951628],[128.34382420000009,-0.953892499999938],[128.34552740000004,-0.956301899999971]]],[[[128.3590656,-0.954840199999978],[128.36034690000008,-0.951437699999929],[128.3587715000001,-0.948329299999955],[128.35646090000012,-0.948098199999947],[128.35400330000004,-0.9498205],[128.3537722000001,-0.951689699999974],[128.3590656,-0.954840199999978]]],[[[128.32014560000005,-0.9382314],[128.3147868000001,-0.938065299999948],[128.31282050000004,-0.9427561],[128.3139017000001,-0.945327899999938],[128.310726,-0.943033699999944],[128.31246320000002,-0.945258199999955],[128.30815940000002,-0.944608599999924],[128.30584410000006,-0.9561224],[128.3092845000001,-0.958115499999963],[128.3095601000001,-0.961196899999948],[128.30783380000003,-0.961567199999934],[128.30728110000007,-0.963351],[128.30862690000004,-0.966386199999931],[128.322263,-0.970582299999933],[128.32663620000005,-0.969563799999946],[128.32893760000002,-0.970282499999939],[128.3302145,-0.973086],[128.33896040000002,-0.973690099999942],[128.33968390000007,-0.981405099999961],[128.33723220000002,-0.983953099999951],[128.3338354000001,-0.9937755],[128.33617040000001,-0.999266699999964],[128.3317274000001,-1.003528599999925],[128.33520210000006,-1.007491],[128.3354313000001,-1.012101499999972],[128.32963080000002,-1.014208499999938],[128.32887070000004,-1.016849499999978],[128.33135590000006,-1.0196764],[128.33102250000002,-1.0180315],[128.33286380000004,-1.017869699999949],[128.33307020000007,-1.021530199999972],[128.34045820000006,-1.022875499999941],[128.3432312000001,-1.024729499999978],[128.34601510000005,-1.030220799999938],[128.35512870000002,-1.034925699999974],[128.35621,-1.037011],[128.36018030000002,-1.037498399999947],[128.36328680000008,-1.041275399999961],[128.3781332000001,-1.037293499999976],[128.3873741000001,-1.039079199999946],[128.39908960000002,-1.038873],[128.40482120000001,-1.036348699999962],[128.4145933000001,-1.028218599999946],[128.41976190000003,-1.020666799999958],[128.41926890000002,-1.0106117],[128.416543,-1.001784199999975],[128.40900620000002,-0.9956665],[128.405313,-0.9902445],[128.3961756000001,-0.989802699999927],[128.3902485000001,-0.991909799999974],[128.3857829000001,-0.994388],[128.38814150000007,-0.997238099999947],[128.38551740000003,-0.9986508],[128.37945270000012,-0.998070499999926],[128.3736761,-0.995544099999961],[128.37332,-0.991906699999959],[128.36922330000004,-0.990654799999959],[128.36701360000006,-0.991859099999942],[128.3663233000001,-0.9906543],[128.3680267000001,-0.989612],[128.3642410000001,-0.987178699999959],[128.36493180000002,-0.985580199999958],[128.36103050000008,-0.985996499999942],[128.359673,-0.983586799999955],[128.36064010000007,-0.981131199999936],[128.35520850000012,-0.980157099999929],[128.35762650000004,-0.9729524],[128.354634,-0.9754308],[128.35456460000012,-0.977214699999934],[128.3530459000001,-0.9754536],[128.35072090000006,-0.977167599999973],[128.350353,-0.975592099999972],[128.352839,-0.9740867],[128.3527821,-0.970449299999927],[128.34732770000005,-0.968757],[128.3459934000001,-0.965490099999954],[128.3390541000001,-0.9652339],[128.3375813,-0.964376399999935],[128.3371906000001,-0.961132899999939],[128.33373740000002,-0.965186499999959],[128.33235660000003,-0.964560699999936],[128.33366920000003,-0.961109],[128.338584,-0.956545899999981],[128.33757140000012,-0.9556654],[128.33952780000004,-0.955596199999945],[128.34092210000006,-0.950361499999929],[128.3390866000001,-0.950132],[128.3354816000001,-0.953998799999965],[128.33299180000006,-0.952884399999959],[128.32866460000002,-0.953902899999946],[128.33140390000005,-0.951841499999944],[128.33616830000005,-0.951124199999924],[128.33793950000006,-0.947969199999932],[128.33302350000008,-0.943217599999969],[128.32270440000002,-0.949615699999924],[128.32459230000006,-0.946372599999961],[128.33002480000005,-0.942504699999972],[128.32309510000005,-0.938356099999964],[128.32014560000005,-0.9382314]]],[[[128.46273370000006,-0.918882799999949],[128.462829,-0.914642499999957],[128.46111380000002,-0.913689699999964],[128.4591756000001,-0.918299599999955],[128.46273370000006,-0.918882799999949]]],[[[128.1211015,-0.847571499999958],[128.12324230000002,-0.843598799999938],[128.11810690000004,-0.841467399999942],[128.11527660000002,-0.845439899999974],[128.11477650000006,-0.848910399999966],[128.11325460000012,-0.849580199999934],[128.11294480000004,-0.852284699999927],[128.11463230000004,-0.855492399999946],[128.1221703000001,-0.852765599999941],[128.11986490000004,-0.8482653],[128.1211015,-0.847571499999958]]],[[[128.09523410000008,-0.838254899999924],[128.08452230000012,-0.839281599999936],[128.0811685000001,-0.844666],[128.07984740000006,-0.850745099999926],[128.0853744000001,-0.855796599999962],[128.09048670000004,-0.8548644],[128.09549750000008,-0.858503699999972],[128.09720310000012,-0.857618499999944],[128.09877170000004,-0.860610699999938],[128.10347930000012,-0.861665],[128.106143,-0.858889199999965],[128.10495420000007,-0.858625599999925],[128.10640540000009,-0.855514399999947],[128.10973400000012,-0.856161399999962],[128.11168450000002,-0.852811],[128.107559,-0.8489753],[128.1035835,-0.848806899999943],[128.10187860000008,-0.843426299999976],[128.09838320000006,-0.844191399999943],[128.09523410000008,-0.838254899999924]]],[[[127.87588640000001,-0.825881299999935],[127.8749663000001,-0.826264499999979],[127.87605480000002,-0.827234499999975],[127.87588640000001,-0.825881299999935]]],[[[128.13776710000002,-0.821856],[128.1357044,-0.8220631],[128.13610180000012,-0.823961],[128.1338177,-0.827972],[128.13951980000002,-0.823946899999953],[128.13776710000002,-0.821856]]],[[[128.14604250000002,-0.814571899999976],[128.1444921000001,-0.8150691],[128.14428740000005,-0.817321499999935],[128.14604250000002,-0.814571899999976]]],[[[128.14744660000008,-0.812933699999974],[128.146452,-0.811441899999977],[128.1396363,-0.81308],[128.1385004000001,-0.816146299999957],[128.13980650000008,-0.817369499999927],[128.14291590000005,-0.814453399999934],[128.14744660000008,-0.812933699999974]]],[[[128.1344669,-0.8046987],[128.13169070000004,-0.802054799999951],[128.13165960000003,-0.806308399999978],[128.13796680000007,-0.810776],[128.1407186,-0.808224199999927],[128.15103640000007,-0.807831699999952],[128.15323840000008,-0.806030299999975],[128.15285820000008,-0.804860199999951],[128.1494649000001,-0.8042752],[128.1415962000001,-0.806176499999935],[128.1404261,-0.804245899999955],[128.1344669,-0.8046987]]],[[[128.15719660000002,-0.793583299999966],[128.15638680000006,-0.792630699999961],[128.15508090000003,-0.795272299999965],[128.15170650000005,-0.796111699999926],[128.1547809000001,-0.799659599999927],[128.158961,-0.798247099999969],[128.1622665000001,-0.793888599999946],[128.15719660000002,-0.793583299999966]]],[[[128.15855620000002,-0.786777799999925],[128.15647460000002,-0.787511699999925],[128.15737330000002,-0.791046899999969],[128.16168140000002,-0.791168099999936],[128.15855620000002,-0.786777799999925]]],[[[127.197614,-0.777146],[127.19631530000004,-0.777401699999928],[127.19868320000012,-0.778694899999948],[127.197614,-0.777146]]],[[[127.16245750000007,-0.751227299999925],[127.16134490000002,-0.750644399999942],[127.15971890000003,-0.753847499999949],[127.16259890000003,-0.758912099999975],[127.17362530000003,-0.762703099999953],[127.17513670000005,-0.767677499999934],[127.17740580000009,-0.770120599999927],[127.191158,-0.775705199999948],[127.18552940000006,-0.770213699999942],[127.1803000000001,-0.768127799999945],[127.173638,-0.759073599999965],[127.16906470000004,-0.758108299999947],[127.16813090000005,-0.755957],[127.16554960000008,-0.754746099999977],[127.16459410000004,-0.751161],[127.16245750000007,-0.751227299999925]]],[[[127.8818993000001,-0.734578899999974],[127.88123310000003,-0.7322825],[127.87805750000007,-0.730674299999976],[127.87807450000003,-0.732829199999969],[127.8818993000001,-0.734578899999974]]],[[[127.1696889000001,-0.7039054],[127.16697510000006,-0.703357899999958],[127.16280780000011,-0.705438599999979],[127.16486110000005,-0.707049099999949],[127.16938030000006,-0.705426399999965],[127.1696889000001,-0.7039054]]],[[[128.5510826000001,-0.699544499999945],[128.55349380000007,-0.697839699999975],[128.55371320000006,-0.695873899999924],[128.548875,-0.692824599999938],[128.548014,-0.697879299999954],[128.5510826000001,-0.699544499999945]]],[[[127.17586820000008,-0.690515699999935],[127.17779210000003,-0.689522199999942],[127.17636320000008,-0.687663899999961],[127.17368550000003,-0.688997299999926],[127.17586820000008,-0.690515699999935]]],[[[127.6641,-0.676044899999965],[127.6676251,-0.673738699999944],[127.66601050000008,-0.670633599999974],[127.6636284000001,-0.670491199999958],[127.66037030000007,-0.672623699999974],[127.66104630000007,-0.6747845],[127.6641,-0.676044899999965]]],[[[127.31327410000006,-0.669672799999944],[127.31514720000007,-0.668051],[127.31392990000006,-0.666700799999944],[127.31327410000006,-0.669672799999944]]],[[[127.31005160000007,-0.667261199999928],[127.31246240000007,-0.664341699999966],[127.31200250000006,-0.662533699999926],[127.30959310000003,-0.661513099999979],[127.30850270000008,-0.663366899999971],[127.31005160000007,-0.667261199999928]]],[[[128.5762119000001,-0.655008199999941],[128.571206,-0.653633399999933],[128.57319690000008,-0.655733299999952],[128.5805729000001,-0.657967299999939],[128.57938120000006,-0.654327199999955],[128.5762119000001,-0.655008199999941]]],[[[127.30883280000012,-0.656824899999947],[127.31101290000004,-0.654497399999968],[127.3090658000001,-0.651671699999952],[127.30673820000004,-0.651137399999925],[127.3056726000001,-0.654381],[127.30883280000012,-0.656824899999947]]],[[[128.5691793000001,-0.653375599999947],[128.56078320000006,-0.649884199999974],[128.55835850000005,-0.65027],[128.56416190000004,-0.654592699999966],[128.57108130000006,-0.655231],[128.57090460000006,-0.652618799999971],[128.5691793000001,-0.653375599999947]]],[[[127.30444210000007,-0.6533063],[127.304028,-0.649939599999925],[127.30059710000012,-0.649377499999957],[127.30444210000007,-0.6533063]]],[[[127.27870640000003,-0.6511997],[127.27927220000004,-0.648775],[127.27719070000012,-0.6482055],[127.27647640000009,-0.650061299999948],[127.27870640000003,-0.6511997]]],[[[128.5577522000001,-0.648859699999946],[128.55496530000005,-0.647479099999941],[128.5532104,-0.648978],[128.55781320000006,-0.650386399999945],[128.5577522000001,-0.648859699999946]]],[[[127.34012440000004,-0.651593],[127.340775,-0.649117099999955],[127.3381386000001,-0.647516499999938],[127.34012440000004,-0.651593]]],[[[127.30166340000005,-0.646531699999969],[127.3008281000001,-0.644438299999933],[127.29901280000001,-0.644207499999936],[127.30020550000006,-0.647415899999942],[127.30166340000005,-0.646531699999969]]],[[[127.4228184000001,-0.642079499999966],[127.4210541000001,-0.644617],[127.42241750000005,-0.646800699999972],[127.42376860000002,-0.644765399999926],[127.4228184000001,-0.642079499999966]]],[[[128.5304506000001,-0.642065699999932],[128.52797370000008,-0.640840199999957],[128.5266408000001,-0.641583899999944],[128.5289689000001,-0.644123499999978],[128.5395304000001,-0.647923099999957],[128.54413820000002,-0.648152599999946],[128.54358850000006,-0.645938199999932],[128.5403731,-0.645386299999927],[128.53988960000004,-0.647228799999937],[128.53745880000008,-0.643469799999934],[128.5304506000001,-0.642065699999932]]],[[[128.57650920000003,-0.637355099999979],[128.57320130000005,-0.637587699999926],[128.57443160000003,-0.638546499999961],[128.57650920000003,-0.637355099999979]]],[[[128.5205975,-0.640763099999958],[128.52029430000005,-0.638892399999975],[128.51369520000003,-0.633004899999946],[128.5158950000001,-0.6406863],[128.5205975,-0.640763099999958]]],[[[127.32362620000004,-0.655637799999965],[127.31604490000007,-0.647615899999948],[127.31600570000012,-0.644193499999972],[127.30983160000005,-0.633027099999936],[127.30542260000004,-0.6311788],[127.30172850000008,-0.633599499999946],[127.3010829000001,-0.639123799999936],[127.30226650000009,-0.642973799999936],[127.30124030000002,-0.643722799999978],[127.302889,-0.646315399999935],[127.31068280000011,-0.650560599999949],[127.31290380000007,-0.656079699999964],[127.32132050000007,-0.662674299999935],[127.32415760000004,-0.660751399999924],[127.32362620000004,-0.655637799999965]]],[[[128.56835130000002,-0.631476299999974],[128.5657232000001,-0.6312343],[128.5650323000001,-0.632972399999971],[128.56986770000003,-0.635542399999963],[128.56835130000002,-0.631476299999974]]],[[[127.42958350000004,-0.631249599999933],[127.42601780000007,-0.630432499999927],[127.42662730000006,-0.634829],[127.43342240000004,-0.634727799999951],[127.43384420000007,-0.632293299999958],[127.42958350000004,-0.631249599999933]]],[[[128.59301030000006,-0.6280068],[128.59184750000009,-0.630208299999936],[128.58025370000007,-0.634218399999952],[128.5772339,-0.637598399999945],[128.5864739000001,-0.636675],[128.58608730000003,-0.638231399999938],[128.58731920000002,-0.639544599999965],[128.58888940000008,-0.639034099999947],[128.5897347,-0.6411255],[128.5925853000001,-0.639691],[128.59451810000007,-0.636408199999948],[128.59147460000008,-0.633538399999964],[128.5943009,-0.633854799999938],[128.5978516,-0.639083399999947],[128.59710250000012,-0.642269],[128.5985879000001,-0.644336199999941],[128.595665,-0.643655099999933],[128.5932007,-0.647545799999932],[128.5934056000001,-0.652506699999947],[128.59637680000003,-0.654209199999968],[128.60335840000005,-0.651461799999936],[128.60687350000012,-0.647352299999966],[128.60713950000002,-0.643874799999935],[128.6043741000001,-0.636725099999978],[128.5988876,-0.629829899999947],[128.5983652000001,-0.631843],[128.5975377000001,-0.630880899999966],[128.5984837000001,-0.628977],[128.5954491000001,-0.628123899999935],[128.59383780000007,-0.630238199999951],[128.59424190000004,-0.628116],[128.59301030000006,-0.6280068]]],[[[128.55793330000006,-0.629863599999965],[128.55636330000004,-0.627869399999952],[128.55517940000004,-0.630349799999976],[128.55873040000006,-0.630885099999944],[128.55793330000006,-0.629863599999965]]],[[[128.59135240000012,-0.630071599999951],[128.59178280000003,-0.628041],[128.59069290000002,-0.627925399999924],[128.59000420000007,-0.630321699999968],[128.59135240000012,-0.630071599999951]]],[[[128.5532518000001,-0.629231],[128.55274150000002,-0.624193499999933],[128.5477251000001,-0.626626099999953],[128.5532518000001,-0.629231]]],[[[127.1959002000001,-0.623583399999973],[127.19468590000008,-0.623960799999963],[127.19649090000007,-0.624604499999975],[127.1959002000001,-0.623583399999973]]],[[[128.56786220000004,-0.623322899999948],[128.5630308000001,-0.624903199999949],[128.56336870000007,-0.628429299999937],[128.568321,-0.625657499999932],[128.56786220000004,-0.623322899999948]]],[[[127.297125,-0.628555099999971],[127.29830520000007,-0.624779299999943],[127.29517640000006,-0.622253499999943],[127.29318090000004,-0.628532299999961],[127.293845,-0.6295683],[127.297125,-0.628555099999971]]],[[[128.5417318000001,-0.62473],[128.540821,-0.621437899999933],[128.53886190000003,-0.625270799999953],[128.5417318000001,-0.62473]]],[[[128.555036,-0.623514799999953],[128.556103,-0.621435899999938],[128.55510430000004,-0.620305],[128.555036,-0.623514799999953]]],[[[128.55051560000004,-0.624098599999968],[128.552184,-0.622945099999924],[128.5527290000001,-0.619769599999927],[128.55051560000004,-0.624098599999968]]],[[[128.54873150000003,-0.619],[128.54539680000005,-0.619787799999926],[128.5475219000001,-0.623410299999932],[128.55168720000006,-0.620669199999952],[128.551319,-0.6192172],[128.54873150000003,-0.619]]],[[[128.5362103000001,-0.622194399999955],[128.53537330000006,-0.619560899999954],[128.5319488,-0.618612],[128.52855310000007,-0.621011],[128.52783480000005,-0.6233195],[128.53075780000006,-0.622347],[128.5356869000001,-0.623727499999973],[128.5362103000001,-0.622194399999955]]],[[[127.32866880000006,-0.624573299999952],[127.3278448000001,-0.620818299999939],[127.31844590000003,-0.618398399999933],[127.31300080000005,-0.619950399999937],[127.30902290000006,-0.624804299999937],[127.31692780000003,-0.639890499999979],[127.32329210000012,-0.646517299999971],[127.32380550000005,-0.649732799999924],[127.32794190000004,-0.651870499999973],[127.33083390000002,-0.657719399999962],[127.33267720000003,-0.658237899999961],[127.33454310000002,-0.655131099999949],[127.32997100000011,-0.641534799999931],[127.32857830000012,-0.639721699999939],[127.3239268000001,-0.639396499999975],[127.32258760000002,-0.637756099999933],[127.325417,-0.6381238],[127.32565380000005,-0.634995],[127.32749640000009,-0.637822399999948],[127.3306904000001,-0.6376508],[127.33084250000002,-0.6310045],[127.32866880000006,-0.624573299999952]]],[[[128.5451660000001,-0.616067899999962],[128.543834,-0.615750499999933],[128.5426744,-0.619588399999941],[128.5451660000001,-0.616067899999962]]],[[[128.52950280000005,-0.609847499999944],[128.52885020000008,-0.613859899999966],[128.531411,-0.6107474],[128.52950280000005,-0.609847499999944]]],[[[128.52495440000007,-0.608627099999978],[128.523421,-0.608644],[128.5237747000001,-0.610967399999936],[128.52642020000008,-0.609373499999947],[128.52495440000007,-0.608627099999978]]],[[[127.39341380000008,-0.607084399999962],[127.39283670000009,-0.608758399999942],[127.39435450000008,-0.608305299999927],[127.39341380000008,-0.607084399999962]]],[[[127.2442244,-0.6033439],[127.2305086,-0.6053195],[127.220872,-0.603347399999961],[127.21727050000004,-0.605822599999954],[127.206724,-0.6190524],[127.20359950000011,-0.6164793],[127.19628000000012,-0.61418],[127.1928213000001,-0.6161766],[127.19260680000002,-0.617707799999948],[127.19803490000004,-0.623446899999976],[127.1972508,-0.625066499999946],[127.1988669000001,-0.625354199999947],[127.19942420000007,-0.628716],[127.20327290000012,-0.633406799999932],[127.20593430000008,-0.634819299999947],[127.21024850000003,-0.6336604],[127.21687840000004,-0.637155899999925],[127.21609010000009,-0.6484487],[127.20907740000007,-0.652274399999953],[127.20698130000005,-0.665169699999979],[127.21262450000006,-0.669442599999968],[127.2127187000001,-0.6719309],[127.20654950000005,-0.676079799999968],[127.20034740000006,-0.672871399999963],[127.19515350000006,-0.674986899999965],[127.19760080000003,-0.676710499999956],[127.19655480000006,-0.677451799999972],[127.19303760000003,-0.6765652],[127.18780820000006,-0.678070499999933],[127.1868333000001,-0.67941],[127.19358270000009,-0.680584899999928],[127.1910233000001,-0.692510899999945],[127.18645850000007,-0.696433],[127.17841840000006,-0.698889399999928],[127.17750210000008,-0.702226699999926],[127.1730563000001,-0.7058138],[127.1735665000001,-0.707811699999979],[127.16753290000008,-0.708388199999945],[127.16764720000003,-0.710991499999977],[127.16969040000004,-0.713025899999934],[127.17249560000005,-0.711400099999935],[127.17508590000011,-0.711999299999945],[127.17510820000007,-0.715923099999941],[127.1725646000001,-0.717070499999977],[127.1682393000001,-0.716398799999979],[127.16876170000012,-0.7175235],[127.16735930000004,-0.717881899999952],[127.1678333000001,-0.721303399999954],[127.16991220000011,-0.723014899999953],[127.16827150000006,-0.724976099999935],[127.1690403,-0.734032199999945],[127.1718446000001,-0.7345118],[127.17190330000005,-0.7362225],[127.17028660000005,-0.737466],[127.16878980000001,-0.736125499999957],[127.16454230000011,-0.748553],[127.1669293000001,-0.752250499999946],[127.17004330000009,-0.751270799999929],[127.18096960000003,-0.7673295],[127.2024752000001,-0.777172199999939],[127.19952780000006,-0.777601599999969],[127.20016890000011,-0.778941699999962],[127.20959220000009,-0.780584599999941],[127.2265033000001,-0.780316699999958],[127.23121360000005,-0.770413299999973],[127.23458970000002,-0.767950299999939],[127.245864,-0.7655647],[127.24911920000011,-0.768140499999959],[127.2585332000001,-0.771114699999941],[127.26638120000007,-0.776766],[127.27106110000011,-0.777138799999932],[127.27717570000004,-0.7799],[127.28080910000006,-0.787816499999963],[127.28675590000012,-0.793922799999962],[127.29380890000004,-0.798547299999939],[127.30041630000005,-0.799211499999956],[127.311974,-0.796512599999971],[127.33453540000005,-0.786304799999925],[127.3278835000001,-0.777233599999931],[127.32693470000004,-0.7721606],[127.31826250000006,-0.762873399999933],[127.31212650000009,-0.753627799999947],[127.30393620000007,-0.747256099999959],[127.30218850000006,-0.741662799999972],[127.29423,-0.730940399999952],[127.29570930000011,-0.715819099999976],[127.29269040000008,-0.716440099999943],[127.29064740000001,-0.713448399999947],[127.29562740000006,-0.712337699999978],[127.2948699000001,-0.710219799999948],[127.2911772000001,-0.710667599999965],[127.28964750000011,-0.704997],[127.29742010000007,-0.704210299999943],[127.297838,-0.698910599999977],[127.30023930000004,-0.696997299999964],[127.30062060000012,-0.694150099999945],[127.29973,-0.692223699999943],[127.29571270000008,-0.693322899999941],[127.29314610000006,-0.692221299999972],[127.29155490000005,-0.688583799999947],[127.2947832000001,-0.6869436],[127.303382,-0.688999599999931],[127.30417760000012,-0.684018299999934],[127.30202050000003,-0.680964399999937],[127.29545410000003,-0.678614799999934],[127.28937090000011,-0.674186199999951],[127.28902990000006,-0.669240499999944],[127.27399320000006,-0.662658299999975],[127.269536,-0.664531899999929],[127.26422690000004,-0.662273],[127.26432840000007,-0.654892],[127.26120810000009,-0.652462],[127.2611869000001,-0.649721199999931],[127.25256560000003,-0.6481918],[127.2526554000001,-0.644515],[127.250464,-0.644603399999937],[127.2506982000001,-0.639222099999927],[127.24729060000004,-0.635722499999929],[127.24835360000009,-0.634185299999956],[127.246341,-0.629014899999959],[127.24939640000002,-0.626787599999943],[127.25470810000002,-0.629285099999947],[127.26293220000002,-0.627026099999966],[127.26552190000007,-0.627584099999979],[127.27130130000012,-0.621257499999956],[127.26967510000009,-0.6190843],[127.27040590000001,-0.617881199999943],[127.25830090000011,-0.608228499999939],[127.25830170000006,-0.6057105],[127.24992430000009,-0.603045],[127.2452641000001,-0.605483499999934],[127.2442244,-0.6033439]]],[[[128.51769460000003,-0.602569199999948],[128.51653220000003,-0.601399099999981],[128.51598850000005,-0.604119],[128.51757350000003,-0.606048899999962],[128.5189927,-0.6052437],[128.51950570000008,-0.608039699999949],[128.5206684000001,-0.6059428],[128.51769460000003,-0.602569199999948]]],[[[127.3378709000001,-0.6123611],[127.33620740000003,-0.611068499999931],[127.3389188000001,-0.605470299999979],[127.33459470000003,-0.599654599999951],[127.3243364000001,-0.606410899999958],[127.3278054000001,-0.610503599999959],[127.3311801000001,-0.611796699999957],[127.33449380000002,-0.618509399999937],[127.33721320000006,-0.631751099999974],[127.33573030000002,-0.643791699999952],[127.33718520000002,-0.645718299999942],[127.34067730000004,-0.645808],[127.34333520000007,-0.640737799999954],[127.344619,-0.640807499999937],[127.34514580000007,-0.642492499999946],[127.34205380000003,-0.648740799999928],[127.34358010000005,-0.651056799999935],[127.34315970000011,-0.6530639],[127.3480972000001,-0.658467899999948],[127.35757620000004,-0.6615983],[127.361772,-0.660907299999963],[127.3655649000001,-0.665282199999979],[127.36758240000006,-0.665652099999932],[127.36886640000012,-0.665306399999963],[127.3680194000001,-0.661290199999939],[127.3701986000001,-0.657598199999939],[127.37239880000004,-0.6601377],[127.37063280000007,-0.662098899999933],[127.37364690000004,-0.664304],[127.37516110000001,-0.661004099999957],[127.37450950000004,-0.655637899999931],[127.36852680000004,-0.652081599999974],[127.36861890000011,-0.650766099999942],[127.3730786000001,-0.649371299999927],[127.37683730000003,-0.653203699999949],[127.37889890000008,-0.658835799999963],[127.376432,-0.665770499999951],[127.377486,-0.6678018],[127.38009970000007,-0.667664199999933],[127.38592470000003,-0.662727099999927],[127.3831292000001,-0.658017899999948],[127.38441060000002,-0.656619099999944],[127.39002240000002,-0.657377199999928],[127.391225,-0.655381099999943],[127.3987790000001,-0.655485599999963],[127.4115733000001,-0.660568599999976],[127.4148752000001,-0.656355599999927],[127.41284810000002,-0.651953299999946],[127.4158182000001,-0.6436765],[127.41458000000011,-0.636468599999944],[127.407725,-0.636678299999971],[127.4049629000001,-0.631281],[127.4017037000001,-0.628971],[127.40197530000012,-0.625004399999966],[127.400564,-0.624947899999938],[127.39818660000003,-0.621371099999976],[127.39626830000009,-0.621564399999954],[127.38989930000002,-0.617504199999928],[127.38614810000001,-0.612002799999971],[127.38038060000008,-0.609181499999977],[127.37640750000003,-0.608838599999956],[127.37407070000006,-0.6113503],[127.37489830000004,-0.614435799999967],[127.3701469,-0.612665599999957],[127.36739200000011,-0.616623699999934],[127.365059,-0.617315499999961],[127.35823940000012,-0.6168419],[127.35526920000007,-0.613945699999931],[127.35158480000007,-0.6146863],[127.3494224000001,-0.612651799999981],[127.34605870000007,-0.614194099999963],[127.34206620000009,-0.611871899999926],[127.3378709000001,-0.6123611]]],[[[128.51598740000009,-0.599742699999979],[128.51329920000012,-0.599807399999975],[128.513299,-0.602339899999947],[128.51587970000003,-0.601452599999959],[128.51598740000009,-0.599742699999979]]],[[[128.4962478000001,-0.595321699999943],[128.4928344000001,-0.595589299999972],[128.4947601,-0.597906199999954],[128.4962478000001,-0.595321699999943]]],[[[128.49941690000003,-0.592541399999959],[128.49585190000005,-0.592857699999968],[128.49677780000002,-0.595865599999968],[128.4948931,-0.598419199999967],[128.4970644000001,-0.602592399999935],[128.5087032,-0.617537699999957],[128.51023080000004,-0.617619199999979],[128.50699350000002,-0.611617799999976],[128.5038098000001,-0.609188499999959],[128.50884410000003,-0.609685699999943],[128.5119055,-0.613867],[128.5114708000001,-0.618437399999948],[128.51451120000002,-0.618735699999945],[128.51726040000005,-0.615539699999943],[128.5157051000001,-0.615416499999981],[128.51656220000007,-0.609691],[128.51495480000006,-0.606225799999947],[128.5120191000001,-0.6038158],[128.5110711000001,-0.600588499999958],[128.50872920000006,-0.602998],[128.5083452,-0.597422199999926],[128.505175,-0.597875899999963],[128.49941690000003,-0.592541399999959]]],[[[127.39285910000001,-0.599164899999948],[127.39254140000003,-0.5967067],[127.38861450000002,-0.592243399999973],[127.38253550000002,-0.595260899999971],[127.38078120000011,-0.599102099999925],[127.3834101000001,-0.5997767],[127.38513350000005,-0.605762299999981],[127.38815910000005,-0.6064045],[127.39487530000008,-0.602772699999946],[127.39285910000001,-0.599164899999948]]],[[[128.4948544,-0.593146699999977],[128.4957472000001,-0.590641],[128.4925214000001,-0.593903],[128.4948544,-0.593146699999977]]],[[[128.49305530000004,-0.592380799999944],[128.49339010000006,-0.589978699999961],[128.48837140000012,-0.592896699999926],[128.49176150000005,-0.594580699999938],[128.49305530000004,-0.592380799999944]]],[[[127.17012480000005,-0.586206299999958],[127.16932650000001,-0.585064199999977],[127.16680230000009,-0.585690599999964],[127.16660960000002,-0.588826299999937],[127.16779120000001,-0.590515299999936],[127.1692289,-0.590226299999927],[127.16737620000004,-0.589485899999943],[127.1672334000001,-0.586462599999948],[127.16894160000004,-0.589647299999967],[127.17061930000011,-0.588522099999977],[127.17065230000003,-0.585257599999977],[127.17012480000005,-0.586206299999958]]],[[[128.41447870000002,-0.597541599999943],[128.41136360000007,-0.584385399999974],[128.41254440000012,-0.5926429],[128.40926490000004,-0.5999436],[128.4097279,-0.603699099999972],[128.41357440000002,-0.603559599999926],[128.41899690000002,-0.599198199999933],[128.42087440000012,-0.592993699999965],[128.41765320000002,-0.596422299999972],[128.41447870000002,-0.597541599999943]]],[[[128.47792190000007,-0.583282299999951],[128.47482750000006,-0.5871186],[128.475475,-0.590707399999928],[128.48794980000002,-0.592466299999955],[128.48806960000002,-0.588233399999979],[128.47792190000007,-0.583282299999951]]],[[[127.14445720000003,-0.584773699999971],[127.1435077000001,-0.583354],[127.14479640000002,-0.580666699999938],[127.14313770000001,-0.583273399999939],[127.14445720000003,-0.584773699999971]]],[[[127.61226310000006,-0.5780901],[127.60982930000011,-0.575875499999938],[127.60507790000008,-0.575891199999944],[127.60440560000006,-0.578899499999977],[127.60667060000003,-0.585407099999941],[127.614092,-0.582907499999976],[127.6140425000001,-0.579425799999967],[127.61226310000006,-0.5780901]]],[[[127.61835660000008,-0.572610099999963],[127.61939820000009,-0.571118099999978],[127.61756140000011,-0.571657499999958],[127.61835660000008,-0.572610099999963]]],[[[128.40626740000005,-0.5698994],[128.40462230000003,-0.56947],[128.40726310000002,-0.576010899999972],[128.40626740000005,-0.5698994]]],[[[128.34742340000003,-0.566479399999935],[128.3385806000001,-0.572866],[128.33032230000003,-0.575563099999954],[128.3296349000001,-0.577361699999926],[128.3335059000001,-0.579506799999933],[128.3424397000001,-0.579092699999933],[128.347788,-0.583428699999956],[128.35447710000005,-0.581630799999971],[128.36115510000002,-0.576004799999964],[128.3612356000001,-0.573053099999925],[128.3571356000001,-0.5699626],[128.35420290000002,-0.574920199999951],[128.35065210000005,-0.576879899999938],[128.3467465000001,-0.576326],[128.343036,-0.572774299999935],[128.33966870000006,-0.572866099999942],[128.34285280000006,-0.572382299999958],[128.34257810000008,-0.570606599999962],[128.344365,-0.569246199999952],[128.343334,-0.571344599999975],[128.345831,-0.569523099999969],[128.34559070000012,-0.567908899999964],[128.3483166000001,-0.567909199999974],[128.34742340000003,-0.566479399999935]]],[[[128.39551560000007,-0.562223899999935],[128.39440950000005,-0.560766599999965],[128.393303,-0.5619624],[128.39533790000007,-0.563543599999946],[128.3980832000001,-0.563255199999958],[128.39551560000007,-0.562223899999935]]],[[[128.39231560000007,-0.560036699999955],[128.39082570000005,-0.558397199999945],[128.3898207000001,-0.559112099999936],[128.39221140000006,-0.5614318],[128.394204,-0.560577499999965],[128.39231560000007,-0.560036699999955]]],[[[128.41211910000004,-0.559496599999932],[128.40926920000004,-0.558283399999937],[128.4053762000001,-0.561315299999933],[128.40530650000005,-0.563368],[128.40931540000008,-0.560032799999931],[128.40627970000003,-0.563111499999934],[128.406349,-0.565187599999945],[128.40841120000005,-0.565607599999964],[128.40899020000006,-0.568033599999978],[128.41397210000002,-0.567171],[128.4189884000001,-0.568643799999961],[128.41718090000006,-0.570203799999945],[128.41868680000005,-0.572373199999959],[128.42056380000008,-0.571603699999969],[128.4192428,-0.573329699999931],[128.42328580000003,-0.577085599999975],[128.42507000000012,-0.577085699999941],[128.4258112000001,-0.579301799999939],[128.4268310000001,-0.576572699999929],[128.4301441,-0.580398599999967],[128.428522,-0.582007899999951],[128.42749030000004,-0.587442799999963],[128.4229021000001,-0.590707899999927],[128.42788380000002,-0.591594799999939],[128.43347990000007,-0.589052899999956],[128.4392851,-0.581215899999961],[128.4417767000001,-0.574008399999968],[128.44089640000004,-0.571209099999976],[128.43756,-0.569366099999968],[128.4300178000001,-0.569155399999943],[128.4244801000001,-0.567032199999971],[128.41211910000004,-0.559496599999932]]],[[[128.3894570000001,-0.5576123],[128.388764,-0.556967],[128.38957820000007,-0.558449399999972],[128.39047930000004,-0.557106699999963],[128.3894570000001,-0.5576123]]],[[[127.26703220000002,-0.551770699999963],[127.26656190000006,-0.550645399999951],[127.265532,-0.552110699999957],[127.26684040000009,-0.554020899999955],[127.27016440000011,-0.552807899999948],[127.26814450000006,-0.550927099999967],[127.26703220000002,-0.551770699999963]]],[[[127.25362930000006,-0.5510916],[127.25274020000006,-0.549748299999976],[127.2517659,-0.5504941],[127.25362930000006,-0.5510916]]],[[[128.3311827000001,-0.547588399999938],[128.3162834000001,-0.549549599999978],[128.3161914000001,-0.553031699999963],[128.32129930000008,-0.5553844],[128.335009,-0.556077799999969],[128.341738,-0.553149699999949],[128.33872610000003,-0.552193599999953],[128.33894880000003,-0.550909299999944],[128.33725720000007,-0.551730499999962],[128.3378063,-0.550640399999963],[128.33322930000008,-0.553477799999939],[128.33317030000012,-0.550341599999967],[128.33508440000003,-0.550536],[128.3311827000001,-0.547588399999938]]],[[[127.24886580000009,-0.538529199999971],[127.24660680000011,-0.534713499999953],[127.24633960000006,-0.5373798],[127.24886580000009,-0.538529199999971]]],[[[127.235061,-0.537250299999926],[127.23612040000012,-0.535225299999979],[127.23533740000005,-0.533647499999972],[127.23197030000006,-0.533390699999927],[127.22843240000009,-0.538079799999934],[127.23041200000011,-0.539743199999975],[127.23038980000001,-0.543132899999932],[127.227827,-0.544731],[127.22448150000002,-0.543195099999934],[127.22491410000009,-0.548205099999961],[127.22811210000009,-0.547118799999964],[127.23171190000005,-0.548079199999961],[127.23277130000008,-0.546224799999948],[127.23417860000006,-0.549529599999971],[127.23576710000009,-0.548741299999961],[127.24023370000009,-0.552653],[127.25066440000012,-0.551410499999974],[127.24526430000003,-0.551281],[127.241347,-0.549510399999974],[127.24183460000006,-0.547719799999925],[127.2434862,-0.548509],[127.2433175000001,-0.546057299999973],[127.24492630000009,-0.548125699999957],[127.24513890000003,-0.545546199999933],[127.2477225,-0.545291199999951],[127.24850660000004,-0.543458],[127.23858670000004,-0.5383173],[127.23476370000003,-0.540149499999927],[127.23398090000012,-0.537484499999948],[127.235061,-0.537250299999926]]],[[[127.25968510000007,-0.537342599999931],[127.26135690000001,-0.533487],[127.25929950000011,-0.532009599999981],[127.25506,-0.537402899999961],[127.256425,-0.537772399999938],[127.25503890000005,-0.540089799999976],[127.25727910000012,-0.543474799999956],[127.25960220000002,-0.542183299999976],[127.25797290000003,-0.539844499999958],[127.25968510000007,-0.537342599999931]]],[[[127.280504,-0.532553899999925],[127.278498,-0.531426099999976],[127.27733110000008,-0.533069699999942],[127.27700290000007,-0.538776499999926],[127.27872830000001,-0.542252799999972],[127.2838154000001,-0.537228399999947],[127.28754790000005,-0.537816599999928],[127.2863592000001,-0.534129099999973],[127.28411950000009,-0.534292899999969],[127.28338710000003,-0.531507499999975],[127.280504,-0.532553899999925]]],[[[128.37592340000003,-0.532053399999938],[128.37104460000012,-0.527625299999954],[128.36616550000008,-0.527555599999971],[128.357357,-0.535141499999952],[128.34167650000006,-0.541758199999947],[128.33597910000003,-0.5459541],[128.33558140000002,-0.548287499999958],[128.33717520000005,-0.549036299999955],[128.3381472000001,-0.547965699999963],[128.33977950000008,-0.550323299999945],[128.34522590000006,-0.552527699999928],[128.35276250000004,-0.550130199999955],[128.36225760000002,-0.549393299999963],[128.3673427000001,-0.551215599999978],[128.365762,-0.552921899999944],[128.3693922000001,-0.557834199999945],[128.37823420000007,-0.559057299999949],[128.38307910000003,-0.558204599999954],[128.38567940000007,-0.555114799999956],[128.37212990000012,-0.554629099999943],[128.3676521000001,-0.549670599999956],[128.35421750000012,-0.546371599999929],[128.3605864000001,-0.539730899999938],[128.36733270000002,-0.537218],[128.36976070000003,-0.538786399999935],[128.37074540000003,-0.541692099999977],[128.37838440000007,-0.546512499999949],[128.37996470000007,-0.549118499999963],[128.38198060000002,-0.548242399999936],[128.39076490000002,-0.553823899999941],[128.39684660000012,-0.555484899999954],[128.39858730000003,-0.558298499999978],[128.40217250000012,-0.5559005],[128.40182860000004,-0.558483299999978],[128.40403880000008,-0.561873399999968],[128.4045430000001,-0.560143899999957],[128.40678800000012,-0.5594754],[128.4095718000001,-0.553756699999951],[128.405586,-0.552349599999957],[128.40370740000003,-0.554886],[128.40361610000002,-0.551081],[128.40142890000004,-0.547460299999955],[128.39618340000004,-0.5449001],[128.39338870000006,-0.544992],[128.39242680000007,-0.542985699999974],[128.391602,-0.544046399999957],[128.38380270000005,-0.539341299999933],[128.37592340000003,-0.532053399999938]]],[[[127.2612534000001,-0.502063799999974],[127.25874710000005,-0.502986199999953],[127.25600510000004,-0.508974699999953],[127.25720710000007,-0.509282699999972],[127.25321320000012,-0.511086599999942],[127.25278480000009,-0.5129735],[127.25557550000008,-0.515353499999947],[127.26039440000011,-0.514165199999979],[127.26563010000007,-0.516689499999927],[127.26549680000005,-0.51952],[127.26097230000005,-0.524421],[127.26306980000004,-0.528257199999928],[127.26469980000002,-0.528483199999926],[127.26504540000008,-0.531088299999965],[127.26696040000002,-0.532032299999969],[127.27369130000011,-0.527889399999935],[127.27149540000005,-0.526085299999977],[127.2682966000001,-0.525961399999971],[127.26980480000009,-0.524177299999963],[127.2695407000001,-0.521367199999929],[127.2670657000001,-0.519520499999942],[127.26814600000012,-0.517900399999974],[127.26675260000002,-0.509510899999952],[127.26798580000002,-0.507378099999926],[127.26464480000004,-0.505674699999929],[127.268333,-0.5043425],[127.26819100000012,-0.502004199999931],[127.2612534000001,-0.502063799999974]]],[[[127.2555407000001,-0.495676199999934],[127.25377820000006,-0.496524199999953],[127.2557442000001,-0.498504399999945],[127.25929430000008,-0.497836899999925],[127.25749440000004,-0.495504399999959],[127.2555407000001,-0.495676199999934]]],[[[127.26585850000004,-0.495421799999974],[127.26658590000011,-0.494733199999928],[127.26504180000006,-0.493364799999938],[127.26210480000009,-0.493569699999966],[127.26585850000004,-0.495421799999974]]],[[[127.28748940000003,-0.488676799999951],[127.28490170000009,-0.488963299999966],[127.2824151000001,-0.492449599999929],[127.27980730000002,-0.491608],[127.27533420000009,-0.495114299999955],[127.27390730000002,-0.497698299999968],[127.27395620000004,-0.505267],[127.27577930000007,-0.507031499999925],[127.27404720000004,-0.507913],[127.2732721000001,-0.510989499999937],[127.27573710000001,-0.512528499999974],[127.27730670000005,-0.509862399999975],[127.28079090000006,-0.509432599999968],[127.28218460000005,-0.516858199999945],[127.28598250000005,-0.524161299999946],[127.29022980000002,-0.527628899999968],[127.29149340000004,-0.5262755],[127.28945750000003,-0.520388099999934],[127.29070060000004,-0.519424399999934],[127.29540680000002,-0.521251199999938],[127.296528,-0.518954199999939],[127.28979440000012,-0.517660199999966],[127.29845490000002,-0.513703799999973],[127.29376960000002,-0.509866899999963],[127.294361,-0.50798],[127.29599110000004,-0.507652199999939],[127.28988970000012,-0.504143099999965],[127.28750670000011,-0.500573499999973],[127.28913690000002,-0.499979099999962],[127.28956530000005,-0.497989599999926],[127.29203020000011,-0.499815699999942],[127.29381380000007,-0.496842],[127.29890720000003,-0.498238199999946],[127.29931440000007,-0.499469],[127.2999463000001,-0.498217899999929],[127.295791,-0.493396599999926],[127.29120670000009,-0.493005699999969],[127.28907820000006,-0.490543799999955],[127.28722410000012,-0.490543299999956],[127.28748940000003,-0.488676799999951]]],[[[127.68167180000012,-0.488756299999977],[127.68063840000002,-0.484910499999955],[127.67626840000003,-0.488211199999967],[127.67842940000003,-0.490266599999927],[127.67854850000003,-0.49483],[127.68191080000008,-0.494498199999953],[127.68167180000012,-0.488756299999977]]],[[[127.26913160000004,-0.479482299999972],[127.2664248000001,-0.478350299999931],[127.26366530000007,-0.483131699999944],[127.26976860000002,-0.485575799999935],[127.27628160000006,-0.483392099999946],[127.27117480000004,-0.4792],[127.26913160000004,-0.479482299999972]]],[[[128.09015280000006,-0.4665874],[128.0891338,-0.4639287],[128.08880920000001,-0.466494],[128.09015280000006,-0.4665874]]],[[[127.71107990000007,-0.454648599999928],[127.70533490000003,-0.451678299999969],[127.70209520000003,-0.454235],[127.70397020000007,-0.456192],[127.7067664000001,-0.454888099999948],[127.7075334000001,-0.456450099999927],[127.70940890000008,-0.455763899999965],[127.7101755000001,-0.458767599999931],[127.71215350000011,-0.456931499999939],[127.71107990000007,-0.454648599999928]]],[[[127.72226810000006,-0.438853399999971],[127.72107390000008,-0.440308399999935],[127.72299070000008,-0.440826899999934],[127.72226810000006,-0.438853399999971]]],[[[128.1246850000001,-0.435923],[128.12716910000006,-0.438636899999949],[128.1272444000001,-0.436812599999939],[128.1246850000001,-0.435923]]],[[[127.11843110000007,-0.433284499999957],[127.11645030000011,-0.434062499999925],[127.11865680000005,-0.435677099999964],[127.11941910000007,-0.433263],[127.11843110000007,-0.433284499999957]]],[[[127.31069060000004,-0.427641199999925],[127.30988730000001,-0.429848099999958],[127.31184830000007,-0.428511799999967],[127.31069060000004,-0.427641199999925]]],[[[127.75568670000007,-0.414564799999937],[127.7528400000001,-0.415989699999955],[127.75576060000003,-0.415632],[127.75568670000007,-0.414564799999937]]],[[[127.7285154000001,-0.411623399999939],[127.72527610000009,-0.412826399999972],[127.72849670000005,-0.422425399999952],[127.72579230000008,-0.422271899999942],[127.72672710000006,-0.4207599],[127.72476810000012,-0.417736099999956],[127.72475180000004,-0.422832699999958],[127.72824460000004,-0.422990599999935],[127.73379080000007,-0.4296363],[127.736205,-0.42936],[127.73805020000009,-0.430928799999947],[127.7406026000001,-0.430945099999974],[127.74157800000012,-0.4275717],[127.74572360000002,-0.427474099999927],[127.74608120000005,-0.424409699999956],[127.74359390000006,-0.426994599999944],[127.74291920000007,-0.425279399999965],[127.73993590000009,-0.425205799999958],[127.73692840000001,-0.422637599999973],[127.73528650000003,-0.420231599999966],[127.73580670000001,-0.418459599999949],[127.73765190000006,-0.418085599999927],[127.736839,-0.415663299999949],[127.73357950000002,-0.415915299999938],[127.7285154000001,-0.411623399999939]]],[[[127.72946350000007,-0.400779599999964],[127.72838050000007,-0.399465099999929],[127.72131750000005,-0.402643299999966],[127.7226065000001,-0.406281799999931],[127.72946350000007,-0.400779599999964]]],[[[127.11337850000007,-0.381786799999929],[127.11548770000002,-0.379403399999944],[127.11322830000006,-0.379455899999925],[127.11337850000007,-0.381786799999929]]],[[[127.76179810000008,-0.369291099999941],[127.760293,-0.371607],[127.76224960000002,-0.373549099999934],[127.76312350000012,-0.370694199999946],[127.76179810000008,-0.369291099999941]]],[[[127.43299820000004,-0.350852799999927],[127.43198060000009,-0.349903],[127.4239371000001,-0.3531004],[127.41827730000011,-0.353224399999931],[127.42458170000009,-0.358348499999977],[127.43001790000005,-0.359574],[127.43346910000002,-0.355101199999979],[127.43299820000004,-0.350852799999927]]],[[[127.31508270000006,-0.346426099999974],[127.31465810000009,-0.344909099999938],[127.31349150000005,-0.345573599999966],[127.31508270000006,-0.346426099999974]]],[[[127.32070360000012,-0.345898699999964],[127.32085630000006,-0.343955699999924],[127.31955280000011,-0.343359],[127.32070360000012,-0.345898699999964]]],[[[127.40984990000004,-0.345320699999945],[127.4114383000001,-0.343295499999954],[127.41102820000003,-0.341436299999941],[127.40823100000011,-0.341979499999979],[127.40817660000005,-0.344208299999934],[127.40984990000004,-0.345320699999945]]],[[[127.31791070000008,-0.342745099999945],[127.31565960000012,-0.339301899999953],[127.31264620000002,-0.338381],[127.3114438,-0.340596499999947],[127.31237460000011,-0.342897499999935],[127.31548970000006,-0.342881],[127.31713160000004,-0.344688],[127.31791070000008,-0.342745099999945]]],[[[127.29188460000012,-0.334224199999937],[127.28720190000001,-0.334172199999955],[127.28672920000008,-0.3375483],[127.28086330000008,-0.344104],[127.28107870000008,-0.347491199999979],[127.28993720000005,-0.349668],[127.29339490000007,-0.3468719],[127.29484560000003,-0.347245099999952],[127.29768590000003,-0.344076],[127.3024392000001,-0.345817],[127.2975636000001,-0.337550199999953],[127.29515640000011,-0.335063799999944],[127.29188460000012,-0.334224199999937]]],[[[127.76306440000008,-0.332402799999954],[127.76304470000002,-0.333821],[127.7640345000001,-0.332791799999939],[127.76306440000008,-0.332402799999954]]],[[[127.74459720000004,-0.326928699999939],[127.74325750000003,-0.326465699999972],[127.74256050000008,-0.329237],[127.7438873000001,-0.338348499999938],[127.73973880000005,-0.339566199999979],[127.73735390000002,-0.342858099999944],[127.73616140000001,-0.348341799999957],[127.73907540000005,-0.353456],[127.73769820000007,-0.359376399999974],[127.73896620000005,-0.361820099999932],[127.73911740000005,-0.369092599999931],[127.73470020000002,-0.376197],[127.73327260000008,-0.383813799999928],[127.72672240000009,-0.391270899999938],[127.72545430000002,-0.395520199999964],[127.7263865000001,-0.396889],[127.72836830000006,-0.395545399999946],[127.7301486,-0.396620299999938],[127.73185340000009,-0.394562899999926],[127.73417110000003,-0.395814099999939],[127.73323060000007,-0.391976399999976],[127.7367157000001,-0.390380799999946],[127.73960450000004,-0.393487899999968],[127.7396801000001,-0.389356299999974],[127.73743790000003,-0.3891379],[127.7395709000001,-0.382696899999928],[127.74199780000004,-0.381420399999968],[127.74406370000008,-0.382344199999977],[127.7484042000001,-0.376624899999968],[127.753192,-0.3771124],[127.75991020000004,-0.373140299999932],[127.7580795,-0.373199],[127.75686180000002,-0.371183599999938],[127.7586841000001,-0.369562799999926],[127.75660990000006,-0.363222599999972],[127.7543425,-0.362836299999969],[127.75142010000002,-0.364994499999966],[127.75517380000008,-0.369134499999973],[127.75101310000002,-0.368301199999962],[127.74947220000001,-0.365762399999937],[127.75159090000011,-0.360334499999965],[127.75823570000011,-0.3572879],[127.74810650000006,-0.341459399999962],[127.7500394000001,-0.340477],[127.74916580000001,-0.336810699999944],[127.75074170000005,-0.335777699999937],[127.7503091000001,-0.333631299999979],[127.74801900000011,-0.332067],[127.74845570000002,-0.328246],[127.74459720000004,-0.326928699999939]]],[[[127.1313699000001,-0.3264198],[127.12733350000008,-0.328476599999931],[127.12355520000006,-0.328285699999924],[127.120532,-0.330895799999951],[127.1276765,-0.331000899999935],[127.1313699000001,-0.3264198]]],[[[127.41022210000006,-0.324865399999965],[127.40966440000011,-0.320756499999959],[127.4059284000001,-0.319365799999957],[127.3996026000001,-0.323289699999975],[127.39971900000012,-0.335849499999938],[127.40460510000003,-0.340829699999972],[127.40728540000009,-0.340993699999956],[127.40606760000003,-0.337927199999967],[127.41022210000006,-0.324865399999965]]],[[[127.12678670000003,-0.312473899999929],[127.12752520000004,-0.311612399999945],[127.12326240000004,-0.312101599999949],[127.117187,-0.315004399999964],[127.11621260000004,-0.319145599999956],[127.120291,-0.317642699999965],[127.124135,-0.312743799999964],[127.12678670000003,-0.312473899999929]]],[[[127.26172230000009,-0.308201699999927],[127.26253540000005,-0.305046699999934],[127.26010110000004,-0.306098],[127.26172230000009,-0.308201699999927]]],[[[127.06836040000007,-0.304202099999941],[127.065317,-0.307614399999977],[127.07004620000009,-0.309479799999963],[127.07097250000004,-0.307748599999968],[127.06836040000007,-0.304202099999941]]],[[[127.11149620000003,-0.304533899999967],[127.11042120000002,-0.301950399999953],[127.10984090000011,-0.303433799999937],[127.11149620000003,-0.304533899999967]]],[[[127.52505480000002,-0.301758499999949],[127.52060260000007,-0.301624199999935],[127.51843180000003,-0.304392699999937],[127.51886620000005,-0.306183199999964],[127.51724940000008,-0.306059799999957],[127.51584800000012,-0.308602299999961],[127.51423760000011,-0.316470399999957],[127.51492030000009,-0.317811],[127.51833910000005,-0.318297],[127.51877480000007,-0.320246299999951],[127.51387430000011,-0.326181399999939],[127.50156950000007,-0.333350199999927],[127.4977507000001,-0.338264199999969],[127.49275420000004,-0.341509499999972],[127.48481690000006,-0.3399955],[127.48398530000009,-0.347814899999946],[127.48864290000006,-0.350934299999949],[127.48873270000001,-0.352547399999935],[127.48282990000007,-0.354384599999946],[127.48201150000011,-0.360861799999952],[127.47503410000002,-0.365750799999944],[127.47855850000008,-0.371088699999973],[127.47487650000005,-0.376495599999942],[127.47605590000012,-0.380547],[127.47915260000002,-0.383813699999962],[127.47915220000004,-0.387519199999929],[127.47432770000012,-0.391937299999938],[127.47067360000005,-0.399780299999975],[127.46754,-0.402932499999963],[127.465592,-0.403323],[127.46300870000005,-0.401337],[127.46030220000011,-0.403757],[127.45666090000009,-0.402305499999954],[127.4524947000001,-0.403510799999935],[127.452508,-0.405639099999973],[127.45766020000008,-0.408751399999971],[127.45871100000011,-0.411903199999927],[127.45719940000004,-0.416411599999947],[127.4524513,-0.418935899999951],[127.4412612000001,-0.415073599999971],[127.43181690000006,-0.407435599999928],[127.4263456000001,-0.406033099999945],[127.42480030000002,-0.401041],[127.42205930000011,-0.398759299999938],[127.42297330000008,-0.395615799999973],[127.4201346000001,-0.395726899999943],[127.41762110000002,-0.393484499999943],[127.41797720000011,-0.387749699999972],[127.41495220000002,-0.383908299999973],[127.4167222000001,-0.3810042],[127.41384750000009,-0.381452399999944],[127.41434170000002,-0.378184199999964],[127.41183400000011,-0.377411799999948],[127.4123244000001,-0.371204099999943],[127.4149255000001,-0.368304299999977],[127.41194880000012,-0.3635868],[127.41251140000008,-0.358443899999941],[127.40889890000005,-0.356208899999956],[127.40748340000005,-0.352121799999964],[127.40509870000005,-0.352384599999937],[127.40239210000004,-0.350331099999948],[127.401284,-0.3476551],[127.40322950000007,-0.346852399999932],[127.4025673000001,-0.344857199999979],[127.3976166000001,-0.343678399999931],[127.3930792000001,-0.345288],[127.3882612000001,-0.3368101],[127.3863258,-0.335850099999959],[127.38617110000007,-0.332072699999969],[127.38033150000001,-0.325515199999927],[127.37433690000012,-0.323597199999938],[127.372384,-0.316839399999935],[127.369543,-0.3157384],[127.3648409000001,-0.318101399999932],[127.36051830000008,-0.3218823],[127.35987610000006,-0.3248939],[127.35692640000002,-0.327726299999938],[127.35699430000011,-0.330542399999956],[127.35354340000004,-0.333186199999943],[127.34976570000003,-0.330959499999949],[127.34790380000004,-0.335640099999978],[127.3410209000001,-0.334676199999933],[127.3406695000001,-0.336888699999975],[127.33831050000003,-0.3386783],[127.3260848000001,-0.331466399999954],[127.32403150000005,-0.328199699999971],[127.32315660000006,-0.3301271],[127.324205,-0.332348],[127.32091090000006,-0.330071099999941],[127.3204482000001,-0.3417312],[127.32466240000008,-0.345379299999934],[127.3270596000001,-0.345479],[127.3258565000001,-0.348317499999951],[127.32700980000004,-0.3500344],[127.33126370000002,-0.350604499999974],[127.329901,-0.353991099999973],[127.3315047000001,-0.357242199999973],[127.3332031000001,-0.357237899999973],[127.33316140000011,-0.360441399999957],[127.33511120000003,-0.3624029],[127.33525330000009,-0.370017899999937],[127.33694160000005,-0.371825499999943],[127.33556310000006,-0.374102],[127.33767450000005,-0.376341299999979],[127.33652230000007,-0.378004199999964],[127.33834630000001,-0.384265399999947],[127.336494,-0.385388599999942],[127.3357205000001,-0.388876399999958],[127.33293020000008,-0.389353799999981],[127.33375920000003,-0.391747799999962],[127.33071220000011,-0.396597499999928],[127.33240490000003,-0.39903],[127.3308654000001,-0.403702299999964],[127.33148270000004,-0.406198399999937],[127.32457220000003,-0.418115799999953],[127.31871260000003,-0.423838499999931],[127.31878010000003,-0.428546599999947],[127.31593580000003,-0.431523799999979],[127.313102,-0.431521399999951],[127.31205340000008,-0.433987599999966],[127.30315420000011,-0.432327799999939],[127.29612760000009,-0.436103399999979],[127.2951680000001,-0.4379022],[127.29631720000009,-0.442849299999978],[127.29511160000004,-0.4437488],[127.29611950000003,-0.445310499999948],[127.29412580000007,-0.445566499999927],[127.29510830000004,-0.447243499999956],[127.293345,-0.448706799999968],[127.29308150000008,-0.453964299999939],[127.29112920000011,-0.457266599999969],[127.29244520000009,-0.468378499999972],[127.29115160000003,-0.470842599999969],[127.29516650000005,-0.476675399999976],[127.29521960000011,-0.481821],[127.29731260000005,-0.483896099999924],[127.30033830000002,-0.484386499999971],[127.29995470000006,-0.486038599999972],[127.3043861000001,-0.489172899999971],[127.30532850000009,-0.492572799999948],[127.30856070000004,-0.495817099999954],[127.30692870000007,-0.498996199999965],[127.3081714000001,-0.5021371],[127.30483250000009,-0.505294899999967],[127.3064012000001,-0.507629],[127.30515480000008,-0.509543699999938],[127.30653440000003,-0.511231],[127.3061858000001,-0.513812499999972],[127.30823140000007,-0.513154099999952],[127.3099949000001,-0.516745799999967],[127.31604430000004,-0.516749299999958],[127.31746280000004,-0.519411],[127.31571560000009,-0.520336699999973],[127.32201070000008,-0.524140699999975],[127.325329,-0.529248699999926],[127.33323230000008,-0.531050899999968],[127.33401460000005,-0.533573499999932],[127.33575560000008,-0.534241699999939],[127.33555550000005,-0.537634199999957],[127.340275,-0.540256899999974],[127.34638060000009,-0.539160299999935],[127.34637470000007,-0.540716299999929],[127.3484178000001,-0.541504599999939],[127.34537320000004,-0.542306599999961],[127.34513530000004,-0.544595799999968],[127.34240210000007,-0.546904099999949],[127.34824490000005,-0.550922799999967],[127.34800540000003,-0.552982799999938],[127.351638,-0.5589756],[127.3538847000001,-0.560021499999948],[127.36193430000003,-0.55726],[127.35895540000001,-0.567140799999947],[127.3601609000001,-0.572112299999958],[127.3593598000001,-0.579667899999947],[127.36853730000007,-0.583866599999965],[127.37564980000002,-0.591975599999955],[127.37902340000005,-0.5914738],[127.38208070000007,-0.588411599999972],[127.38487390000012,-0.588511],[127.38485620000006,-0.586927899999978],[127.38249280000002,-0.585239],[127.38367750000009,-0.585558],[127.38345270000002,-0.584013599999935],[127.3858699000001,-0.585177599999952],[127.38670460000003,-0.587393299999974],[127.38973050000004,-0.5882224],[127.3931755000001,-0.591998599999954],[127.39414580000005,-0.595410399999935],[127.39738710000006,-0.595497899999941],[127.398633,-0.597716199999979],[127.40078660000006,-0.598335499999962],[127.3994679000001,-0.601424299999962],[127.40257810000003,-0.605915299999936],[127.40225340000006,-0.6082527],[127.40636830000005,-0.611044099999958],[127.40630090000002,-0.613724099999956],[127.4083604000001,-0.614062199999978],[127.40946850000012,-0.616242299999954],[127.407939,-0.620995499999935],[127.409757,-0.621421],[127.4120292,-0.618610099999955],[127.41271860000006,-0.621417199999939],[127.41456630000005,-0.620294799999954],[127.41973680000001,-0.621597599999973],[127.42035270000008,-0.619194],[127.41804660000003,-0.617840799999954],[127.41767880000009,-0.615481199999977],[127.41591230000006,-0.615237],[127.41441740000005,-0.6117],[127.41550920000009,-0.608020099999976],[127.420957,-0.607405099999937],[127.42957400000012,-0.610403099999928],[127.43141010000011,-0.613987599999973],[127.43095360000007,-0.616279099999929],[127.43056580000007,-0.613955699999963],[127.43002010000009,-0.615097699999978],[127.43079790000002,-0.620821099999944],[127.4421794000001,-0.625788099999966],[127.44441740000002,-0.628445299999953],[127.44894710000005,-0.627459699999974],[127.45137180000006,-0.6301715],[127.45761530000004,-0.6319955],[127.45923710000011,-0.630061399999931],[127.45915330000003,-0.625911499999972],[127.46066240000005,-0.625359299999957],[127.46482890000004,-0.629441899999961],[127.47086710000008,-0.626645599999961],[127.48043110000003,-0.630472499999939],[127.47813470000006,-0.6452833],[127.47831090000011,-0.659921399999973],[127.47398930000008,-0.670203099999981],[127.46603590000007,-0.67809],[127.46097810000003,-0.689292899999941],[127.45874790000005,-0.691715199999976],[127.45597820000012,-0.691450499999974],[127.45451780000008,-0.6930218],[127.44230570000002,-0.736653],[127.44348090000005,-0.750743899999975],[127.44819940000002,-0.760762299999953],[127.4478567000001,-0.769897799999967],[127.45304030000011,-0.77962],[127.46035920000008,-0.788442499999974],[127.45960800000012,-0.792951899999935],[127.46306510000011,-0.813977099999931],[127.46770570000001,-0.814575399999967],[127.47211550000009,-0.817481899999962],[127.474975,-0.823642699999937],[127.49424380000005,-0.810581399999933],[127.50009470000009,-0.801250399999958],[127.50590480000005,-0.798728099999948],[127.5214846,-0.795919399999946],[127.5319995000001,-0.789249899999959],[127.5385606000001,-0.786824299999978],[127.54510410000012,-0.786649699999941],[127.552401,-0.779231299999935],[127.56232910000006,-0.776986399999942],[127.57219540000006,-0.770355599999959],[127.59364730000004,-0.768813],[127.611417,-0.762716599999976],[127.62192880000009,-0.750669099999925],[127.6245652,-0.744275],[127.63061010000001,-0.740996499999937],[127.63990550000005,-0.743260099999929],[127.65289080000002,-0.749806599999943],[127.65452630000004,-0.757368099999951],[127.659604,-0.768394799999953],[127.66509170000006,-0.775829],[127.6645569000001,-0.781253499999934],[127.65912380000009,-0.787765399999955],[127.65954810000005,-0.790053499999942],[127.65654460000007,-0.790319699999941],[127.65518840000004,-0.791867299999979],[127.65962410000009,-0.7962195],[127.65782590000003,-0.800853],[127.659024,-0.803598699999952],[127.65901760000008,-0.801753499999961],[127.66082940000001,-0.803523799999937],[127.659623,-0.806003199999964],[127.66248510000003,-0.806269399999962],[127.65999740000007,-0.808407699999975],[127.65935680000007,-0.806552299999964],[127.6575097000001,-0.807617299999947],[127.65789240000004,-0.8114695],[127.6623853000001,-0.816345199999944],[127.66386450000005,-0.814995899999928],[127.67065420000006,-0.814492599999937],[127.665339,-0.819390299999952],[127.66826770000011,-0.8244739],[127.67624260000002,-0.8199241],[127.6789735000001,-0.819780899999955],[127.68215010000006,-0.821837],[127.684858,-0.826054799999952],[127.6860478000001,-0.832311499999946],[127.68176290000008,-0.838576599999953],[127.69495870000003,-0.845640399999979],[127.70178220000003,-0.845228],[127.70765520000009,-0.849101599999926],[127.71319010000002,-0.850528499999939],[127.71775590000004,-0.854551299999969],[127.73016130000008,-0.849459399999944],[127.73999340000012,-0.855506699999978],[127.74799970000004,-0.857438399999978],[127.74977190000004,-0.860841299999947],[127.7532996000001,-0.86169],[127.7490064000001,-0.862821499999939],[127.7481236000001,-0.865230799999949],[127.74725360000002,-0.863819899999953],[127.7437605,-0.864835],[127.74255,-0.861124199999949],[127.7381458000001,-0.8613905],[127.73467360000006,-0.864452299999925],[127.73155630000008,-0.863265299999966],[127.72983680000004,-0.865461799999935],[127.725244,-0.867014899999958],[127.72614370000008,-0.869076599999971],[127.73232680000001,-0.871253499999966],[127.744165,-0.869484299999954],[127.75242270000001,-0.869912399999976],[127.75533,-0.866999],[127.75969020000002,-0.8656819],[127.76382300000012,-0.866341199999965],[127.76954450000005,-0.869733799999949],[127.77093250000007,-0.862833499999965],[127.78048860000001,-0.859000099999946],[127.79130870000006,-0.864537499999926],[127.7967728000001,-0.858061599999928],[127.80539220000003,-0.855956399999968],[127.80899280000006,-0.8566745],[127.81633860000011,-0.8536372],[127.8188613000001,-0.851150399999938],[127.82075640000005,-0.853304699999967],[127.82753820000005,-0.8547784],[127.82782280000004,-0.8524107],[127.83094640000002,-0.851263],[127.83170240000004,-0.848073599999964],[127.830577,-0.846798399999955],[127.83349950000002,-0.8433932],[127.83628570000008,-0.844659499999977],[127.84125970000002,-0.844365499999981],[127.84501120000004,-0.840112699999963],[127.84729750000008,-0.8403628],[127.844443,-0.837880599999949],[127.84466770000006,-0.835148],[127.84719780000012,-0.831759399999953],[127.85106310000003,-0.831442099999947],[127.85186690000012,-0.827048499999933],[127.8550967000001,-0.8270731],[127.85812340000007,-0.825041599999963],[127.86073410000006,-0.827616099999943],[127.86331210000003,-0.8255643],[127.8665095,-0.827196699999945],[127.87040040000011,-0.826904499999955],[127.87177,-0.820917799999961],[127.88031340000009,-0.811591],[127.87616150000008,-0.805035399999952],[127.87976540000011,-0.795512],[127.88479780000011,-0.793975599999953],[127.88395820000005,-0.796385799999939],[127.88876490000007,-0.800170099999946],[127.89725990000011,-0.799234799999965],[127.89921020000008,-0.796243899999979],[127.89913910000007,-0.792806599999949],[127.89706180000007,-0.7936627],[127.89474990000008,-0.791875799999957],[127.89455510000005,-0.789967199999978],[127.89172570000005,-0.791515499999946],[127.89124090000007,-0.790203899999938],[127.8890474000001,-0.790108699999962],[127.88927120000005,-0.788980899999956],[127.88386390000005,-0.787719699999968],[127.8839795,-0.785970899999938],[127.88064680000002,-0.782369899999935],[127.88227010000003,-0.780997199999945],[127.87901840000006,-0.776409699999931],[127.8809232000001,-0.774696],[127.8919462,-0.780477299999973],[127.90212410000004,-0.782376499999941],[127.90557810000007,-0.785401599999943],[127.90581140000006,-0.781697299999962],[127.90241290000006,-0.776307599999939],[127.90291960000002,-0.771294499999954],[127.90063980000002,-0.768935499999941],[127.89634940000008,-0.769412799999941],[127.89095930000008,-0.764013099999943],[127.89145090000011,-0.761939],[127.89338970000006,-0.761486],[127.89380790000007,-0.758349399999929],[127.89068280000004,-0.759663299999943],[127.88495150000006,-0.753336499999932],[127.87948150000011,-0.750020399999926],[127.87808920000009,-0.751833499999975],[127.87999960000002,-0.753112],[127.87794450000001,-0.754651599999931],[127.87753410000005,-0.757725199999925],[127.8793419000001,-0.755065599999966],[127.88046960000008,-0.755920499999945],[127.87906240000007,-0.759496899999931],[127.87737370000002,-0.759908699999926],[127.87233050000009,-0.751214199999936],[127.87596740000004,-0.739656799999977],[127.87650830000007,-0.731652199999928],[127.87247060000004,-0.730579599999942],[127.87115770000003,-0.728335299999969],[127.87014780000004,-0.730033699999979],[127.86872660000006,-0.727921499999979],[127.873535,-0.719486399999937],[127.87322580000011,-0.717625099999964],[127.86899830000004,-0.716308399999946],[127.86796970000012,-0.713571199999933],[127.86331360000008,-0.709318199999927],[127.85828250000009,-0.707723399999963],[127.85684520000007,-0.707952299999931],[127.85506490000012,-0.7115371],[127.85601350000002,-0.713403199999959],[127.8605275000001,-0.711157699999944],[127.8608736000001,-0.712262099999975],[127.85921010000004,-0.712977499999965],[127.85996050000006,-0.7161232],[127.8548647,-0.715974099999926],[127.8540435000001,-0.714436299999932],[127.85163420000003,-0.715432699999951],[127.8511506000001,-0.7091346],[127.845448,-0.709919499999955],[127.84391560000006,-0.7054908],[127.83763020000004,-0.700805],[127.8258575000001,-0.698714199999927],[127.8178663000001,-0.690082399999937],[127.80559970000002,-0.683825499999955],[127.79915410000001,-0.678858299999945],[127.79549210000005,-0.679200699999967],[127.78970020000008,-0.683002599999952],[127.78477730000009,-0.679559499999925],[127.77472280000006,-0.682056099999954],[127.76697820000004,-0.686932499999955],[127.76484440000002,-0.692057199999965],[127.76191160000008,-0.693289899999968],[127.75629,-0.692799799999932],[127.75234140000009,-0.689403399999946],[127.74209530000007,-0.685839899999962],[127.73795930000006,-0.686449099999948],[127.72982250000007,-0.691999],[127.72197720000008,-0.692206399999975],[127.71591020000005,-0.690121799999929],[127.7084463000001,-0.694861399999979],[127.70368470000005,-0.700301199999956],[127.69899140000007,-0.701161699999943],[127.69720670000004,-0.705215799999962],[127.6915269000001,-0.709952599999951],[127.68433770000001,-0.711623],[127.6775745000001,-0.711369899999966],[127.6757371000001,-0.708713],[127.67100570000002,-0.709683],[127.66908110000008,-0.705749399999945],[127.66413060000002,-0.7039965],[127.6634236000001,-0.700784],[127.65578030000006,-0.693652799999938],[127.6557649,-0.690244499999949],[127.652577,-0.685294799999951],[127.65305150000006,-0.679916899999967],[127.65104520000011,-0.682941699999958],[127.64828710000006,-0.682640899999967],[127.65091910000001,-0.676697499999932],[127.65163220000011,-0.670866099999955],[127.64657720000002,-0.664933],[127.65208590000009,-0.660045799999978],[127.65543130000003,-0.646857],[127.651394,-0.644282199999964],[127.6502703000001,-0.640860299999929],[127.6462504000001,-0.637695099999974],[127.64708560000008,-0.629143699999929],[127.64295240000001,-0.629493799999977],[127.64238770000009,-0.626478499999962],[127.63444860000004,-0.629431699999941],[127.62918040000011,-0.628206399999954],[127.62312720000011,-0.630312499999945],[127.61231970000006,-0.631244199999969],[127.60561570000004,-0.628466],[127.6017055000001,-0.621227399999952],[127.5975658000001,-0.619420699999978],[127.600501,-0.609448099999952],[127.59877820000008,-0.600192499999935],[127.5960665,-0.597855099999947],[127.59984440000005,-0.590112199999965],[127.59875240000008,-0.586620299999936],[127.60143860000005,-0.588665799999944],[127.60370090000004,-0.587655799999936],[127.6011228000001,-0.584018499999956],[127.60012930000005,-0.584485699999959],[127.60118410000007,-0.579821599999946],[127.60023510000008,-0.577105899999935],[127.60560410000005,-0.574502399999972],[127.61127490000001,-0.5740558],[127.6139184000001,-0.569284399999958],[127.621455,-0.562802699999963],[127.6294014,-0.548709499999973],[127.63539730000002,-0.542438],[127.6375011,-0.537088899999958],[127.64475490000007,-0.530723299999977],[127.64873630000011,-0.529274899999962],[127.65427740000007,-0.522003099999949],[127.66030550000005,-0.520731499999954],[127.663847,-0.517215199999953],[127.66451130000007,-0.510738099999969],[127.67225380000002,-0.500683199999969],[127.6759962000001,-0.498545399999955],[127.67423970000004,-0.493981699999949],[127.67416880000007,-0.488034499999969],[127.67764220000004,-0.480861],[127.68413270000008,-0.475453899999934],[127.68654790000005,-0.4710095],[127.68842460000008,-0.471262899999942],[127.690266,-0.469517499999938],[127.69262630000003,-0.456428199999948],[127.68468590000009,-0.455330899999979],[127.68101750000005,-0.452856899999972],[127.67952930000001,-0.450784499999941],[127.6828349000001,-0.448330299999952],[127.67978950000008,-0.446120199999939],[127.66259410000009,-0.441381599999943],[127.65839750000009,-0.4387138],[127.65742240000009,-0.436141],[127.65896520000001,-0.432582299999979],[127.65769050000006,-0.426440499999956],[127.65032940000003,-0.423585799999955],[127.6524147,-0.418049699999926],[127.64490990000002,-0.412090299999932],[127.63936350000006,-0.410400799999934],[127.63588080000011,-0.411558299999967],[127.6280071000001,-0.410466499999927],[127.62681070000008,-0.412936899999977],[127.62741910000011,-0.417048499999964],[127.62428290000003,-0.414156499999933],[127.62102650000008,-0.416167899999948],[127.61556790000009,-0.4132077],[127.61504880000007,-0.412153599999954],[127.616921,-0.410699099999931],[127.61900960000003,-0.411151899999936],[127.62081380000006,-0.405574099999967],[127.61964980000005,-0.402684699999952],[127.61763270000006,-0.403992199999948],[127.61485360000006,-0.40198],[127.61630140000011,-0.397499599999946],[127.61410120000005,-0.396708499999932],[127.61533910000003,-0.395392199999947],[127.61451020000004,-0.390981799999963],[127.615739,-0.385980699999948],[127.61394150000001,-0.384159499999953],[127.61392880000005,-0.381596099999967],[127.60836670000003,-0.372602299999926],[127.60419700000011,-0.370282699999962],[127.601693,-0.370853499999953],[127.59762820000003,-0.377430599999968],[127.59257490000005,-0.379680699999938],[127.59527930000002,-0.372643099999948],[127.59430850000001,-0.371109199999978],[127.59573810000006,-0.370202099999972],[127.59526230000006,-0.366475099999946],[127.59153,-0.3637796],[127.59317780000003,-0.359005799999977],[127.58881510000003,-0.357598199999927],[127.58875660000001,-0.352776499999948],[127.58720290000008,-0.350587],[127.58272290000002,-0.349892],[127.57883150000009,-0.347425799999939],[127.57864830000005,-0.343524299999956],[127.57654720000005,-0.341685899999959],[127.581172,-0.337697099999957],[127.58143840000002,-0.333632099999932],[127.57706610000002,-0.328310399999964],[127.57425110000008,-0.328889299999958],[127.57426320000002,-0.3255523],[127.5697666000001,-0.322620799999925],[127.5705114000001,-0.318965899999966],[127.56894250000005,-0.315575599999931],[127.56517780000001,-0.3144426],[127.55314520000002,-0.315761899999927],[127.53976300000011,-0.313216699999941],[127.53760160000002,-0.309335399999952],[127.53119750000008,-0.303339499999936],[127.52505480000002,-0.301758499999949]]],[[[127.54797640000004,-0.299038699999926],[127.54545540000004,-0.296025699999973],[127.54229730000009,-0.300413899999967],[127.54626660000008,-0.309594899999979],[127.55511460000002,-0.310995799999944],[127.55872020000004,-0.308813799999939],[127.55829570000003,-0.311280899999929],[127.5627727000001,-0.312420199999963],[127.56529430000012,-0.310617599999944],[127.56378660000007,-0.308245199999931],[127.56348,-0.309715899999958],[127.562514,-0.309004099999925],[127.56371600000011,-0.307225099999926],[127.56882910000002,-0.309906399999932],[127.56710970000006,-0.3039993],[127.56329270000003,-0.300440399999957],[127.55978180000011,-0.3000604],[127.558391,-0.303879499999937],[127.55485640000006,-0.304116199999953],[127.55619990000002,-0.301246],[127.5551398,-0.299205699999959],[127.55207660000008,-0.297971799999971],[127.54797640000004,-0.299038699999926]]],[[[127.271317,-0.2940028],[127.26965240000004,-0.292285899999968],[127.271521,-0.295936199999971],[127.271317,-0.2940028]]],[[[127.06133940000007,-0.275596],[127.05959840000003,-0.275351199999932],[127.06046860000004,-0.277328299999965],[127.05951690000006,-0.278204599999924],[127.05704710000009,-0.277551899999935],[127.05722870000011,-0.281485599999939],[127.05575070000009,-0.282198699999924],[127.05695460000004,-0.286234299999933],[127.05594620000011,-0.289008],[127.05742960000009,-0.290636799999959],[127.05611260000012,-0.296730499999967],[127.05746880000004,-0.297974],[127.05943270000012,-0.297383299999979],[127.06141730000002,-0.2938373],[127.06781480000006,-0.2942257],[127.0676734000001,-0.2920856],[127.0692527000001,-0.291128],[127.06880780000006,-0.287948399999948],[127.06714780000004,-0.287316299999929],[127.06920390000005,-0.280162799999971],[127.06824260000008,-0.278369],[127.06686510000009,-0.283341899999925],[127.0647593000001,-0.284747799999934],[127.0659432000001,-0.287581],[127.06393900000012,-0.2873769],[127.06175220000011,-0.289170099999978],[127.06130830000006,-0.280446799999936],[127.06362700000011,-0.276370899999961],[127.06133940000007,-0.275596]]],[[[127.02059780000002,-0.260296599999947],[127.02019160000009,-0.258769299999926],[127.01885410000011,-0.259951399999977],[127.02059780000002,-0.260296599999947]]],[[[127.2405635,-0.245719299999962],[127.23078480000004,-0.250740499999949],[127.230669,-0.252203299999962],[127.22602640000002,-0.255179599999963],[127.22413390000008,-0.2540634],[127.22384280000006,-0.256231199999945],[127.21944750000011,-0.258295099999941],[127.21277240000006,-0.257069199999933],[127.20938880000006,-0.258129199999928],[127.20615020000002,-0.254766199999949],[127.199519,-0.257249099999967],[127.1951299000001,-0.252083499999969],[127.19353940000008,-0.257467599999927],[127.18924130000005,-0.255208499999981],[127.1872929000001,-0.257427799999959],[127.18377730000009,-0.257815799999946],[127.183939,-0.260878899999966],[127.1823415,-0.262346299999933],[127.17517390000012,-0.264320699999928],[127.16609790000007,-0.260512899999981],[127.16599780000001,-0.258022899999958],[127.16378210000005,-0.256218399999966],[127.1614833000001,-0.257303299999933],[127.16247370000008,-0.260028499999976],[127.15940210000008,-0.260669399999927],[127.1576854000001,-0.264189699999974],[127.155188,-0.264532299999928],[127.15441950000002,-0.263114799999926],[127.15099120000002,-0.262410899999963],[127.152143,-0.2588629],[127.15047680000009,-0.2566085],[127.15021120000006,-0.258351],[127.14766050000003,-0.258731199999943],[127.1459532,-0.262782799999968],[127.14286890000005,-0.264861],[127.14092130000006,-0.268116299999974],[127.14180910000005,-0.270565599999941],[127.1390808000001,-0.270403],[127.13933820000011,-0.271887099999958],[127.13612160000002,-0.275147199999935],[127.13183030000005,-0.274897599999974],[127.12944950000008,-0.277728599999932],[127.12252850000004,-0.2801705],[127.12327960000005,-0.284278499999971],[127.12098480000009,-0.283085299999925],[127.11838570000009,-0.285997399999928],[127.11350310000012,-0.284399099999973],[127.11257350000005,-0.286761499999955],[127.11103170000001,-0.280902599999933],[127.10934290000012,-0.283041799999978],[127.10853410000004,-0.287429],[127.11050240000009,-0.292368899999929],[127.112227,-0.288621299999932],[127.11352850000003,-0.289689799999962],[127.11683170000003,-0.287783699999977],[127.12179010000011,-0.293030199999976],[127.12189060000003,-0.296357399999977],[127.1192923000001,-0.297444599999949],[127.1195024000001,-0.299153199999978],[127.11646650000012,-0.299722499999973],[127.11449880000009,-0.298092],[127.11332040000002,-0.299536799999942],[127.115147,-0.300418099999945],[127.11500580000006,-0.303096099999948],[127.1234859000001,-0.307775599999957],[127.13000130000012,-0.3057],[127.13590620000002,-0.307594799999947],[127.13616640000009,-0.309824599999956],[127.13841230000003,-0.310010099999943],[127.13986040000009,-0.313414199999954],[127.13672010000005,-0.315008299999931],[127.1388181000001,-0.317941699999949],[127.13927620000004,-0.322912],[127.13818430000003,-0.324002699999937],[127.13695920000009,-0.322920699999941],[127.13341670000011,-0.323357699999974],[127.13205840000012,-0.3277119],[127.13298170000007,-0.328493099999946],[127.13053820000005,-0.332383399999969],[127.13191450000011,-0.3331419],[127.13006550000011,-0.334056],[127.12928570000008,-0.336840299999949],[127.13103620000004,-0.339572099999941],[127.133903,-0.339107099999978],[127.13588370000002,-0.3416444],[127.13326980000011,-0.357935299999951],[127.13545710000005,-0.36086],[127.13372430000004,-0.364056699999935],[127.131222,-0.364455499999963],[127.1313057000001,-0.367873599999939],[127.12865280000005,-0.370268399999929],[127.12169680000011,-0.370383799999956],[127.11890240000002,-0.373706499999969],[127.12017580000008,-0.378100699999948],[127.11677120000002,-0.3823962],[127.1181,-0.384075399999972],[127.11579170000005,-0.387427199999934],[127.10926770000003,-0.388312199999973],[127.11243800000011,-0.388916699999925],[127.1131918000001,-0.390526299999976],[127.11759630000006,-0.389382699999942],[127.1208792000001,-0.392582799999957],[127.11642940000002,-0.394809599999974],[127.11719230000006,-0.397316899999964],[127.11534960000006,-0.399878599999965],[127.11959330000002,-0.403100399999971],[127.116732,-0.407321099999933],[127.1202393000001,-0.407372199999941],[127.12246760000005,-0.409559699999932],[127.1201512,-0.413472899999931],[127.11390420000009,-0.415156599999932],[127.1163735,-0.418340599999965],[127.11577320000004,-0.4194809],[127.1069576000001,-0.417405699999961],[127.10342910000008,-0.415015099999948],[127.10319060000006,-0.421425799999952],[127.10448960000008,-0.423523399999965],[127.10330910000005,-0.425523699999928],[127.10458790000007,-0.425987],[127.10618110000007,-0.423923199999933],[127.12268130000007,-0.427951899999925],[127.12369500000011,-0.430933299999936],[127.12114850000012,-0.433363899999961],[127.12539560000005,-0.435141399999964],[127.12602720000007,-0.437073199999929],[127.1224767000001,-0.441582399999959],[127.12403940000002,-0.4428951],[127.12354980000009,-0.444350499999928],[127.12873,-0.448964499999931],[127.13321440000004,-0.450119599999937],[127.15041180000003,-0.461788599999977],[127.14797120000003,-0.467817599999933],[127.15242520000004,-0.468141599999967],[127.15481260000001,-0.473599499999978],[127.14667950000012,-0.476733399999944],[127.13547590000007,-0.4742453],[127.12091830000008,-0.473166299999946],[127.11817630000007,-0.4759062],[127.11998580000011,-0.480436699999927],[127.11765470000012,-0.483066],[127.11527820000003,-0.482857099999933],[127.11172450000004,-0.485092],[127.11128020000001,-0.486894799999959],[127.1167200000001,-0.486598899999933],[127.11866970000005,-0.488349299999925],[127.12062280000009,-0.492646599999944],[127.11817840000003,-0.497631599999977],[127.11896930000012,-0.499584099999936],[127.128095,-0.497333599999934],[127.13057920000006,-0.498073899999952],[127.131589,-0.500031599999943],[127.13666350000005,-0.499354199999971],[127.13662560000012,-0.503649699999926],[127.12828720000005,-0.505237699999952],[127.1251099000001,-0.506679299999973],[127.12439030000007,-0.509103499999981],[127.12279950000004,-0.507979899999953],[127.12285770000005,-0.509629699999948],[127.12787440000011,-0.518643299999951],[127.12909310000009,-0.518862599999977],[127.13028640000005,-0.515560899999969],[127.13379980000002,-0.514624],[127.136293,-0.516530599999953],[127.13615430000004,-0.519701699999928],[127.13829450000003,-0.522920799999952],[127.1484455000001,-0.526584699999944],[127.15175490000001,-0.524191599999938],[127.15518830000008,-0.526578599999937],[127.16031210000006,-0.526845299999934],[127.16083750000007,-0.5287343],[127.163497,-0.528860599999973],[127.16380790000005,-0.530982499999936],[127.17124780000006,-0.530872899999963],[127.1738461000001,-0.527129599999967],[127.17128990000003,-0.527650199999925],[127.17111060000002,-0.525591799999972],[127.17575010000007,-0.523435699999936],[127.17975400000012,-0.524263799999972],[127.18547430000001,-0.522798],[127.18498850000003,-0.520587099999943],[127.1869273000001,-0.518232699999942],[127.18869870000003,-0.521792699999935],[127.1928974000001,-0.5218215],[127.19801540000003,-0.518899099999942],[127.20156280000003,-0.5192891],[127.203749,-0.516126199999974],[127.20799420000003,-0.514738499999964],[127.21573530000012,-0.5183588],[127.22112430000004,-0.514990399999931],[127.2211357000001,-0.513264499999934],[127.22364440000001,-0.511232099999972],[127.22875010000007,-0.512187199999971],[127.22766210000009,-0.508263099999965],[127.23124170000006,-0.508710399999927],[127.23179320000008,-0.506882],[127.231393,-0.505134299999952],[127.22772980000002,-0.502559499999961],[127.22882130000005,-0.500930199999971],[127.22589520000008,-0.496639699999946],[127.22771110000008,-0.493398299999967],[127.23168310000005,-0.494332099999951],[127.23323530000005,-0.492178399999943],[127.23584640000001,-0.492229899999927],[127.24787770000012,-0.495952299999942],[127.2641483000001,-0.492069599999979],[127.26319150000006,-0.490298299999949],[127.26505190000012,-0.490703399999973],[127.26483130000008,-0.487614199999939],[127.2588525000001,-0.483265899999935],[127.2610562000001,-0.474948499999925],[127.25864280000008,-0.475807],[127.2568940000001,-0.473330099999941],[127.2631970000001,-0.466688899999951],[127.26573960000007,-0.466917099999932],[127.26540820000002,-0.464512],[127.26770150000004,-0.462525599999935],[127.2670657000001,-0.461556799999926],[127.26935990000004,-0.461781599999938],[127.2778492000001,-0.456258199999979],[127.27572150000003,-0.455296799999928],[127.27823560000002,-0.454427099999975],[127.27838340000005,-0.450488899999925],[127.26999550000005,-0.450242899999978],[127.27177380000012,-0.4472605],[127.27359840000008,-0.448154699999975],[127.275389,-0.446912499999939],[127.27610320000008,-0.443952599999932],[127.26741140000001,-0.431380199999978],[127.265772,-0.421590399999957],[127.267177,-0.417980899999975],[127.265659,-0.414645099999973],[127.26406530000008,-0.414994399999955],[127.26257050000004,-0.412636499999962],[127.26310650000005,-0.407665299999962],[127.264662,-0.404864599999939],[127.2735116,-0.399242399999935],[127.2794057000001,-0.399005799999941],[127.28004180000005,-0.3955203],[127.2829627000001,-0.3997228],[127.28694480000001,-0.399549],[127.28747830000009,-0.391165499999943],[127.28408950000005,-0.388153799999941],[127.2839643000001,-0.382972399999971],[127.28708540000002,-0.378752199999951],[127.28811010000004,-0.374139],[127.27938940000001,-0.363538699999935],[127.27471380000009,-0.361926599999947],[127.27619690000006,-0.359192399999927],[127.27280150000001,-0.354964199999927],[127.26905330000011,-0.353753599999948],[127.26614610000001,-0.350225399999943],[127.26551240000003,-0.346348599999942],[127.26791650000007,-0.345390599999973],[127.27028150000001,-0.341318199999932],[127.26794790000008,-0.3360957],[127.26360230000012,-0.333610799999974],[127.26026070000012,-0.3372507],[127.2561971,-0.338689],[127.2539564000001,-0.338035699999978],[127.2529843000001,-0.326699],[127.25421030000007,-0.325589799999932],[127.2505311000001,-0.3208272],[127.25391030000003,-0.318718099999955],[127.2525399000001,-0.316676899999948],[127.25251090000006,-0.312274599999967],[127.25393250000002,-0.312909899999966],[127.25370310000005,-0.311238799999956],[127.26071150000007,-0.305131499999959],[127.26164740000002,-0.302476899999931],[127.25716380000006,-0.2955044],[127.25519070000007,-0.2948358],[127.25721790000011,-0.291875699999935],[127.26203480000004,-0.290572],[127.2627083000001,-0.291829],[127.26427230000002,-0.290346099999965],[127.26546080000003,-0.293651799999964],[127.26749780000011,-0.294655699999964],[127.2682066000001,-0.292171399999972],[127.26513410000007,-0.2887638],[127.27572240000006,-0.290773799999954],[127.27967030000002,-0.290166199999931],[127.283134,-0.291347199999962],[127.27972810000006,-0.292621699999927],[127.2812454000001,-0.292957399999977],[127.28135160000011,-0.296062099999972],[127.28384820000008,-0.294993599999941],[127.28305870000008,-0.293377799999973],[127.28548200000012,-0.293573299999935],[127.28462510000008,-0.291323899999952],[127.28916760000004,-0.292529099999967],[127.29671420000011,-0.288700099999971],[127.2985857000001,-0.289130499999942],[127.30158290000008,-0.285296499999959],[127.30288790000009,-0.287570799999969],[127.30289650000009,-0.281421199999954],[127.30592940000008,-0.279931099999942],[127.3053943000001,-0.270666],[127.30046460000005,-0.268569799999966],[127.292861,-0.270465499999943],[127.28915820000009,-0.276486199999965],[127.28234170000007,-0.279126699999949],[127.281153,-0.281200499999954],[127.27582670000004,-0.280134499999974],[127.27511890000005,-0.282639399999937],[127.27303340000003,-0.282129599999962],[127.27214290000006,-0.279965499999946],[127.26868780000007,-0.281526099999951],[127.26839530000007,-0.279578399999934],[127.27167940000004,-0.278324599999962],[127.26861480000002,-0.277196599999968],[127.266133,-0.278907],[127.26488180000001,-0.276353399999948],[127.26477590000002,-0.278549899999973],[127.26205140000002,-0.280254499999955],[127.26124640000012,-0.276507199999969],[127.26279540000007,-0.275748599999929],[127.25752580000005,-0.274365199999977],[127.25947470000006,-0.272122899999943],[127.25794170000006,-0.270851199999925],[127.2592069000001,-0.269901299999958],[127.25467010000011,-0.267697399999975],[127.2530521000001,-0.263962399999969],[127.2516912000001,-0.264032],[127.250018,-0.257066599999973],[127.2480763000001,-0.256683],[127.24988980000012,-0.255363699999975],[127.24606890000007,-0.256603799999937],[127.2421250000001,-0.253955799999972],[127.24039950000008,-0.254881499999954],[127.24594280000008,-0.2476911],[127.2405635,-0.245719299999962]]],[[[127.0613565000001,-0.2283929],[127.058036,-0.231123499999967],[127.0558496000001,-0.230246899999941],[127.05533240000011,-0.237094899999931],[127.056385,-0.238664399999948],[127.05429970000012,-0.238786399999924],[127.05236590000004,-0.241639499999962],[127.0432052000001,-0.241067499999929],[127.04407440000011,-0.2498722],[127.039326,-0.256862199999944],[127.04290910000009,-0.258350599999972],[127.0431814000001,-0.264729899999963],[127.04676440000003,-0.267074299999933],[127.04725990000009,-0.269887],[127.04584280000006,-0.269703299999946],[127.04312920000007,-0.274798199999964],[127.03878680000003,-0.2737173],[127.03799770000012,-0.271149099999946],[127.04027610000003,-0.265911599999924],[127.038981,-0.262222399999928],[127.03298880000011,-0.260142599999938],[127.03117770000006,-0.255434299999934],[127.02803960000006,-0.2564325],[127.02098340000009,-0.262178799999958],[127.02410080000004,-0.264054299999941],[127.02488990000006,-0.266968899999938],[127.03216740000005,-0.269966099999976],[127.030932,-0.272432],[127.03229850000002,-0.273084399999959],[127.03237890000003,-0.276365699999928],[127.02609180000002,-0.283294199999943],[127.02892610000004,-0.282561],[127.0340073000001,-0.284457299999929],[127.03648670000007,-0.287861299999975],[127.03549410000005,-0.291142499999978],[127.03660760000002,-0.290877699999953],[127.03669840000009,-0.292956599999968],[127.03961420000007,-0.289879599999949],[127.03773200000012,-0.286496],[127.04075650000004,-0.283641799999941],[127.04470690000005,-0.283236199999976],[127.04333070000007,-0.280443799999944],[127.0442217000001,-0.279282199999955],[127.04737950000003,-0.281626599999925],[127.04966750000006,-0.279772299999934],[127.0517526000001,-0.280567499999961],[127.05632850000006,-0.2770831],[127.055813,-0.272313799999949],[127.05777650000005,-0.274005699999975],[127.0616841000001,-0.272253599999942],[127.06380970000009,-0.273273],[127.09186190000003,-0.257970799999953],[127.08967640000003,-0.251509499999941],[127.0910133000001,-0.246679299999926],[127.08728880000001,-0.242011299999945],[127.08859480000001,-0.240421799999979],[127.08748160000005,-0.2382],[127.08420180000007,-0.238464499999964],[127.082035,-0.242683199999931],[127.08486890000006,-0.246128099999964],[127.08416010000008,-0.247330499999975],[127.078006,-0.243987],[127.07774330000007,-0.240481399999965],[127.07326010000008,-0.232756199999926],[127.06665040000007,-0.229596099999981],[127.06135630000006,-0.229921499999932],[127.0613565000001,-0.2283929]]],[[[127.31288670000004,-0.228313899999932],[127.3082581000001,-0.226518499999941],[127.29813580000007,-0.227836399999944],[127.299794,-0.236788899999965],[127.3004601,-0.234475199999963],[127.302479,-0.235751299999947],[127.30479800000012,-0.242282],[127.30643040000007,-0.242476799999963],[127.30911560000004,-0.240012],[127.30977140000005,-0.235017],[127.312843,-0.234584799999936],[127.3145396000001,-0.236574499999961],[127.3166662000001,-0.235623299999929],[127.31288670000004,-0.228313899999932]]],[[[127.1355013000001,-0.177854899999943],[127.13402350000001,-0.176529899999935],[127.13014620000001,-0.178465799999969],[127.12808120000011,-0.1773039],[127.12808070000006,-0.182297499999947],[127.1294673000001,-0.184417399999973],[127.12736210000003,-0.181217099999969],[127.1249322000001,-0.185802899999942],[127.12183440000001,-0.187107],[127.1132285000001,-0.200925],[127.1127418000001,-0.207508299999972],[127.10920830000009,-0.213357499999972],[127.104521,-0.216495699999939],[127.09404460000007,-0.2116435],[127.09324460000005,-0.214211499999976],[127.09146290000001,-0.214537399999926],[127.09182680000004,-0.218756499999927],[127.08895130000008,-0.223749599999962],[127.0879887000001,-0.231005399999958],[127.09162270000002,-0.231556099999978],[127.0906917000001,-0.229436299999975],[127.09320220000006,-0.229314399999964],[127.09378950000007,-0.227357799999936],[127.09711980000009,-0.228499599999964],[127.09786860000008,-0.2302118],[127.09631860000002,-0.239098],[127.09245160000012,-0.240177699999947],[127.09480950000011,-0.245028899999966],[127.09408040000005,-0.2467612],[127.09260640000002,-0.246241299999951],[127.091215,-0.251489399999969],[127.09388680000006,-0.255790299999944],[127.10924360000001,-0.252103499999976],[127.11407350000002,-0.243013799999972],[127.12169630000005,-0.240732099999946],[127.12667750000003,-0.235311199999956],[127.13257080000005,-0.221737399999938],[127.13069890000008,-0.214827599999978],[127.13172180000004,-0.211220099999935],[127.12735950000001,-0.205145699999946],[127.135782,-0.202925099999959],[127.13743240000008,-0.200031],[127.1413199000001,-0.197667099999933],[127.1433651000001,-0.193978099999924],[127.14272750000009,-0.192612399999973],[127.14483310000003,-0.192225399999927],[127.15239580000002,-0.184521699999948],[127.15227450000009,-0.183258],[127.14941980000003,-0.183522599999947],[127.14456110000003,-0.180220199999951],[127.1434068000001,-0.182992099999979],[127.14080550000006,-0.1798937],[127.13714070000003,-0.182706099999962],[127.1364526000001,-0.179811699999959],[127.13825440000005,-0.180810599999973],[127.13987430000009,-0.178568699999971],[127.1355013000001,-0.177854899999943]]],[[[127.14147580000008,-0.176590699999963],[127.13944880000008,-0.175977099999955],[127.14022090000003,-0.178599399999939],[127.1408106,-0.177184199999942],[127.14188380000007,-0.178173499999957],[127.14147580000008,-0.176590699999963]]],[[[127.20627850000005,-0.115120699999977],[127.20635650000008,-0.113804099999925],[127.20521940000003,-0.113898099999972],[127.20627850000005,-0.115120699999977]]],[[[127.41917260000002,-0.093280299999947],[127.41995830000008,-0.092562899999962],[127.41858940000009,-0.092246299999942],[127.41696490000004,-0.088171299999942],[127.417949,-0.092577099999971],[127.41917260000002,-0.093280299999947]]],[[[127.44272540000009,-0.086476499999947],[127.44069660000002,-0.083438699999931],[127.43861570000001,-0.082888699999955],[127.43401150000011,-0.085978499999953],[127.43910960000005,-0.089356899999927],[127.44217880000008,-0.093730299999947],[127.44566440000006,-0.094620799999973],[127.44701710000004,-0.093599599999948],[127.4476936000001,-0.088650199999961],[127.44636710000009,-0.086974199999929],[127.44272540000009,-0.086476499999947]]],[[[127.43104560000006,-0.0839854],[127.43390740000007,-0.081544099999974],[127.43023560000006,-0.080470399999967],[127.4297226000001,-0.082385399999964],[127.43104560000006,-0.0839854]]],[[[127.42639210000004,-0.085337],[127.42628430000002,-0.078989099999944],[127.42393070000003,-0.076380299999926],[127.42071320000002,-0.076401899999951],[127.4200221000001,-0.079793199999926],[127.42215970000007,-0.084554199999957],[127.42639210000004,-0.085337]]],[[[127.43816980000008,-0.080295099999944],[127.43982030000006,-0.0760521],[127.43753350000009,-0.073747],[127.4344678000001,-0.0764967],[127.43564160000005,-0.079302299999938],[127.43816980000008,-0.080295099999944]]],[[[127.26904880000006,-0.071808199999964],[127.259572,-0.076260799999943],[127.2581358000001,-0.0808345],[127.25518370000009,-0.081035799999938],[127.25658480000004,-0.078416599999969],[127.255259,-0.077106799999967],[127.24994520000007,-0.0777312],[127.24826380000002,-0.085186199999953],[127.24657260000004,-0.083977199999936],[127.2464126000001,-0.0817205],[127.24293030000001,-0.081015199999968],[127.2402886000001,-0.078133799999932],[127.235475,-0.084561],[127.23451410000007,-0.089094399999965],[127.23867710000002,-0.086938699999962],[127.2377365000001,-0.085024499999975],[127.23877730000004,-0.082526099999939],[127.240148,-0.089114799999948],[127.23185220000005,-0.090746399999944],[127.22921030000009,-0.092861899999946],[127.22880250000003,-0.098221299999977],[127.23283210000011,-0.101783599999976],[127.229322,-0.100870499999928],[127.23207520000005,-0.106854599999963],[127.230486,-0.109965099999954],[127.22721960000001,-0.110498199999938],[127.2276260000001,-0.104863499999965],[127.22463670000002,-0.102996299999973],[127.22068380000007,-0.105514599999935],[127.21800180000002,-0.109624799999949],[127.2181217000001,-0.112284299999942],[127.21501990000002,-0.108113499999945],[127.21358880000003,-0.11037],[127.21396890000005,-0.112848199999974],[127.211267,-0.114077099999975],[127.21170720000009,-0.1153465],[127.2049326,-0.116534799999954],[127.20081,-0.113915299999974],[127.19781780000005,-0.117682799999955],[127.19829790000006,-0.1202618],[127.204632,-0.122921799999972],[127.21055610000008,-0.129005],[127.21369940000011,-0.1293926],[127.21438880000005,-0.132443299999977],[127.2193208000001,-0.137187799999936],[127.2212621000001,-0.137671499999954],[127.22440440000003,-0.135677099999953],[127.22661560000006,-0.139646499999969],[127.22847690000003,-0.139284],[127.23103890000004,-0.136040199999968],[127.23432130000003,-0.133985299999949],[127.23450130000003,-0.135234599999933],[127.23324050000008,-0.134710599999948],[127.23115880000012,-0.138035],[127.23221940000008,-0.1397477],[127.23416080000004,-0.139002299999959],[127.235372,-0.134851799999979],[127.24083580000001,-0.134026099999971],[127.24413830000003,-0.131286099999954],[127.24522930000012,-0.127639299999942],[127.25618710000003,-0.124255],[127.25758790000009,-0.126431199999956],[127.26139060000003,-0.125988199999938],[127.266555,-0.1143828],[127.2687575000001,-0.0963496],[127.26803710000002,-0.093548899999973],[127.26938810000001,-0.0933072],[127.27422190000004,-0.085267899999963],[127.27237080000009,-0.079142599999955],[127.27024940000001,-0.077369399999952],[127.27157050000005,-0.073118],[127.26904880000006,-0.071808199999964]]],[[[127.4719804,-0.066714599999955],[127.46858490000011,-0.059961499999929],[127.46685860000002,-0.0624241],[127.46823250000011,-0.068403299999943],[127.46988870000007,-0.068788199999972],[127.4702923000001,-0.066864199999941],[127.4719804,-0.066714599999955]]],[[[127.42873580000003,-0.060552399999949],[127.42014190000009,-0.059344899999928],[127.419185,-0.064160299999969],[127.4202375000001,-0.068808099999956],[127.43102990000011,-0.074750699999925],[127.43614130000003,-0.073834399999953],[127.43712710000011,-0.070865399999946],[127.43868770000006,-0.073419],[127.439022,-0.071549799999957],[127.4349360000001,-0.063325799999973],[127.42873580000003,-0.060552399999949]]],[[[127.47043070000007,-0.050146899999959],[127.470091,-0.048522099999957],[127.47236320000002,-0.047239499999932],[127.47231010000007,-0.045358299999975],[127.46918630000005,-0.040909299999953],[127.46383750000007,-0.047431699999947],[127.4655361,-0.051728699999956],[127.46274370000003,-0.054122899999925],[127.4637629,-0.057244099999934],[127.46798520000004,-0.059587299999976],[127.46805240000003,-0.051857],[127.47043070000007,-0.050146899999959]]],[[[127.20521330000008,-0.0448388],[127.20686960000012,-0.043136299999958],[127.2061953000001,-0.039814499999977],[127.20373470000004,-0.042719499999976],[127.20521330000008,-0.0448388]]],[[[127.20047590000001,-0.039533],[127.19908160000011,-0.039343599999938],[127.20002220000003,-0.042463],[127.20214690000012,-0.040903299999968],[127.20047590000001,-0.039533]]],[[[127.17211210000005,-0.038447399999939],[127.17210000000011,-0.035927099999924],[127.17168470000001,-0.0386687],[127.17422470000008,-0.041299699999968],[127.19155360000002,-0.045590899999979],[127.18936770000005,-0.0434762],[127.18859830000008,-0.044607299999939],[127.18646120000005,-0.042972099999929],[127.18139320000012,-0.042615399999931],[127.18106350000005,-0.040254899999979],[127.17664270000012,-0.040672799999925],[127.17499420000001,-0.037058199999933],[127.17211210000005,-0.038447399999939]]],[[[127.2220929,-0.036239599999931],[127.22373040000002,-0.034548399999949],[127.22226310000008,-0.031667399999947],[127.21934980000003,-0.033991599999979],[127.2220929,-0.036239599999931]]],[[[127.23113070000011,-0.032536099999959],[127.232194,-0.0319367],[127.23117330000002,-0.028960799999936],[127.22928070000012,-0.030823399999974],[127.23113070000011,-0.032536099999959]]],[[[127.20790920000002,-0.029003299999943],[127.20722880000005,-0.028318199999944],[127.20378380000011,-0.031572199999971],[127.20416650000004,-0.035019],[127.202848,-0.036153599999977],[127.20376240000007,-0.037930499999959],[127.2062079000001,-0.035682699999938],[127.2046769000001,-0.032813899999951],[127.20754770000008,-0.030908599999975],[127.20790920000002,-0.029003299999943]]],[[[127.23751290000007,-0.027981799999964],[127.23628710000003,-0.028379399999949],[127.23758260000011,-0.028964099999939],[127.23751290000007,-0.027981799999964]]],[[[127.22721790000003,-0.032000799999935],[127.22798350000005,-0.0279546],[127.22672890000001,-0.027248099999952],[127.22518280000008,-0.030052599999976],[127.22721790000003,-0.032000799999935]]],[[[127.21587380000005,-0.028139199999941],[127.21393450000005,-0.026716199999953],[127.21271840000009,-0.028999099999965],[127.21117950000007,-0.028948699999944],[127.21069150000005,-0.031165],[127.21523330000002,-0.030875499999979],[127.21612410000012,-0.029562099999964],[127.21669960000008,-0.030607399999951],[127.21587380000005,-0.028139199999941]]],[[[127.19758720000004,-0.031009799999936],[127.1944185000001,-0.026422299999979],[127.19111980000002,-0.0286079],[127.19111980000002,-0.030169199999932],[127.19399930000009,-0.031465299999979],[127.19669140000008,-0.037704299999973],[127.20096620000004,-0.038939899999946],[127.19830980000006,-0.036500899999965],[127.1991412000001,-0.035613099999978],[127.20019570000011,-0.036745799999949],[127.19957720000002,-0.034949799999936],[127.19712980000008,-0.034249599999953],[127.19870250000008,-0.031826199999955],[127.19758720000004,-0.031009799999936]]],[[[127.251914,-0.024629699999934],[127.242417,-0.028074699999934],[127.24300060000007,-0.031733499999973],[127.24491050000006,-0.033149],[127.24904890000005,-0.032935399999928],[127.25130380000007,-0.029383499999938],[127.251914,-0.024629699999934]]],[[[127.23436310000011,-0.027419499999951],[127.23393790000011,-0.024079699999959],[127.23312970000006,-0.026905699999929],[127.23436310000011,-0.027419499999951]]],[[[127.225196,-0.021838699999932],[127.22299420000002,-0.021809399999938],[127.22280020000005,-0.023293199999955],[127.22497290000001,-0.023137099999929],[127.225196,-0.021838699999932]]],[[[127.23529330000008,-0.0202016],[127.23391870000012,-0.020695199999977],[127.23517040000002,-0.023048899999935],[127.23711390000005,-0.021921],[127.23529330000008,-0.0202016]]],[[[127.41781220000007,-0.017513299999962],[127.41571270000009,-0.016242],[127.4123651000001,-0.019417399999952],[127.41277030000003,-0.02753],[127.40884590000007,-0.0368048],[127.4065548000001,-0.055637499999932],[127.4026818000001,-0.072086399999932],[127.4041975,-0.0778306],[127.40311130000009,-0.088645099999951],[127.41060660000005,-0.104294],[127.41354970000009,-0.099941899999976],[127.41069060000007,-0.0959808],[127.410413,-0.092091899999957],[127.41216950000012,-0.086810699999944],[127.4162391000001,-0.081990099999928],[127.41649410000002,-0.056013599999972],[127.41811540000003,-0.052492899999947],[127.41984580000008,-0.057315399999936],[127.42153030000009,-0.057499899999925],[127.42297180000003,-0.051582599999961],[127.428915,-0.04747],[127.42819220000001,-0.042951799999969],[127.42954060000011,-0.043290399999933],[127.4274703000001,-0.0377591],[127.42644230000008,-0.039765399999965],[127.42444660000001,-0.0334688],[127.42509870000004,-0.030029199999944],[127.4233521000001,-0.028148399999964],[127.42306,-0.0238073],[127.4242061000001,-0.0218673],[127.42152570000007,-0.016641299999947],[127.41781220000007,-0.017513299999962]]],[[[127.17512050000005,-0.012405899999976],[127.16760450000004,-0.013627799999938],[127.1643107000001,-0.016273599999977],[127.1737683,-0.022574899999938],[127.17480570000009,-0.0211824],[127.17387210000004,-0.019493899999929],[127.18299270000011,-0.019232899999963],[127.18451420000008,-0.017161499999929],[127.19059170000003,-0.018310399999962],[127.19125480000002,-0.020037399999978],[127.19376620000003,-0.018978899999979],[127.19339270000012,-0.022822299999973],[127.19697530000008,-0.020427199999972],[127.19809570000007,-0.022627399999976],[127.19929910000008,-0.021847599999944],[127.19976940000004,-0.023797199999933],[127.202688,-0.024632699999927],[127.2026188000001,-0.023003499999959],[127.19512180000004,-0.01728],[127.191975,-0.013004799999976],[127.18582660000004,-0.0136871],[127.17512050000005,-0.012405899999976]]],[[[127.42965720000007,-0.018666499999938],[127.43101360000003,-0.016009699999927],[127.4275096,-0.014181],[127.42694680000011,-0.012236799999926],[127.42300440000008,-0.013475699999958],[127.42534720000003,-0.018998299999964],[127.42965720000007,-0.018666499999938]]],[[[127.42770750000011,0.009132],[127.4241459000001,0.011826400000075],[127.42498090000004,0.009053700000038],[127.42131630000006,0.006119100000035],[127.4187045000001,0.00173680000006],[127.41881070000011,-0.000956799999926],[127.41695270000002,-0.002089699999942],[127.41705890000003,-0.0038427],[127.4196707000001,-0.004334299999925],[127.41973430000007,-0.006771299999969],[127.41633690000003,-0.005959],[127.41875760000005,-0.008203599999945],[127.42033950000007,-0.007327199999963],[127.41976620000003,-0.01032],[127.4215498000001,-0.011517099999935],[127.4238219,-0.009828299999924],[127.42288760000008,-0.006985099999952],[127.42825980000009,-0.007626499999958],[127.42839790000005,-0.005103899999938],[127.4249367000001,-0.001320199999952],[127.42634880000003,0.00101],[127.42475620000005,0.005221300000073],[127.43070180000007,0.00481510000003],[127.42770750000011,0.009132]]],[[[127.43029260000003,0.010673500000053],[127.43029170000011,0.014906],[127.4281893000001,0.015422200000046],[127.42815890000008,0.012750600000061],[127.43029260000003,0.010673500000053]]],[[[127.22593880000011,0.03649020000006],[127.2235419000001,0.037627400000019],[127.22151050000002,0.036567],[127.21672420000004,0.03028450000005],[127.21967510000002,0.024975500000039],[127.223094,0.024914400000057],[127.224845,0.02146],[127.22635020000007,0.021075300000064],[127.23034470000005,0.025663300000076],[127.22593880000011,0.03649020000006]]],[[[127.4365199,0.130373600000041],[127.4302963,0.133956300000023],[127.42829210000002,0.138017900000023],[127.42566890000012,0.138569200000063],[127.42404140000008,0.126870100000076],[127.42514140000003,0.122041900000056],[127.42378560000009,0.115646100000049],[127.42456950000008,0.110695100000044],[127.42256540000005,0.10538020000007],[127.41511890000004,0.095457700000054],[127.4151194000001,0.084189300000048],[127.41154050000011,0.067957],[127.41357850000009,0.055993900000033],[127.40902070000004,0.04001420000003],[127.4093679,0.032084],[127.40797860000009,0.025950500000022],[127.4040692000001,0.019534800000031],[127.40624090000006,0.012353500000074],[127.40500820000011,0.011955],[127.4049791000001,0.009947400000044],[127.41004980000002,0.008805700000039],[127.41403280000009,0.010888300000033],[127.41525640000009,0.014842300000055],[127.41845290000003,0.01662140000002],[127.42349800000011,0.023151200000029],[127.43089830000008,0.021695700000066],[127.43485770000007,0.014746100000025],[127.43463830000007,0.012103400000058],[127.43775210000001,0.010352800000021],[127.4405018000001,0.010976400000061],[127.44268850000003,0.007337700000051],[127.44265670000004,0.005349600000045],[127.43941840000002,0.003169100000036],[127.4323793000001,-0.005809399999976],[127.44037390000005,-0.0133129],[127.44175410000003,-0.017502899999954],[127.44644690000007,-0.021735699999965],[127.4481032000001,-0.021714299999928],[127.44767850000005,-0.023445899999956],[127.45368770000005,-0.031654899999978],[127.45309310000005,-0.033493399999941],[127.45540760000006,-0.037918499999932],[127.46092850000002,-0.040676399999938],[127.46220260000007,-0.039436499999965],[127.46037650000005,-0.0353319],[127.46196910000003,-0.034156199999927],[127.46690610000007,-0.041389799999934],[127.46762810000007,-0.034070799999938],[127.46364690000007,-0.012372399999947],[127.46606760000009,-0.007648],[127.46553940000001,-0.001897399999962],[127.46288510000011,0.000828300000023],[127.45916910000005,0.001175600000067],[127.45754990000012,0.007375100000047],[127.46053990000007,0.017912500000023],[127.46047880000003,0.025878],[127.46936010000002,0.032408800000042],[127.46978840000008,0.034287900000038],[127.46341730000006,0.04184790000005],[127.46277410000005,0.044558700000039],[127.46041610000009,0.045606],[127.46096680000005,0.049967800000047],[127.45863930000007,0.053017400000044],[127.45989470000006,0.055974800000058],[127.46363090000011,0.056498600000054],[127.46467240000004,0.058007900000064],[127.46675440000001,0.072548600000061],[127.46298760000002,0.073965500000043],[127.45462770000006,0.069159600000035],[127.449789,0.070052800000042],[127.447829,0.068619300000023],[127.44853720000003,0.072787100000028],[127.44618660000003,0.075848600000029],[127.44621460000008,0.079769300000066],[127.44279130000007,0.089144500000032],[127.443107,0.097474600000055],[127.4406805000001,0.102301500000067],[127.44272850000004,0.116579900000033],[127.4592186000001,0.131026],[127.45646090000002,0.133092300000044],[127.4365199,0.130373600000041]]],[[[127.21501220000005,0.143638800000076],[127.21058810000011,0.143114800000035],[127.2079989,0.138292700000022],[127.2128014000001,0.133549400000049],[127.21638150000001,0.132161900000028],[127.21997410000006,0.132647700000064],[127.22277170000007,0.136657],[127.22163950000004,0.14068],[127.21986930000003,0.143638100000032],[127.21501220000005,0.143638800000076]]],[[[127.12467250000009,0.143290600000057],[127.11873230000003,0.149562700000047],[127.11654280000005,0.145935500000064],[127.1118437,0.143937200000039],[127.1112065000001,0.140179500000045],[127.11338730000011,0.136718100000053],[127.11346160000005,0.132040300000028],[127.11528320000002,0.130655600000068],[127.11743500000011,0.132086600000036],[127.11955210000008,0.129036100000064],[127.12274520000005,0.129817800000069],[127.12652490000005,0.126678800000036],[127.12424620000002,0.12946020000004],[127.12614270000006,0.129367700000046],[127.1268933,0.130838100000062],[127.13503140000012,0.127728],[127.13500250000004,0.136460500000055],[127.12892230000011,0.142627200000049],[127.12467250000009,0.143290600000057]]],[[[127.433048,0.144748700000036],[127.43396990000008,0.15029880000003],[127.4295982000001,0.152502300000037],[127.42799470000011,0.14854310000004],[127.42890710000006,0.144768200000044],[127.43063710000001,0.143713700000035],[127.433048,0.144748700000036]]],[[[127.17263830000002,0.15709570000007],[127.172408,0.159706400000061],[127.17145540000001,0.158852200000069],[127.17263830000002,0.15709570000007]]],[[[127.15525720000005,0.162003200000072],[127.14593320000006,0.158370600000069],[127.14469940000004,0.156204600000024],[127.14512860000002,0.150941],[127.147038,0.150183700000071],[127.15379540000004,0.156979700000022],[127.15834740000003,0.157248200000026],[127.1579799000001,0.159766],[127.15525720000005,0.162003200000072]]],[[[127.69971630000009,-0.010022799999945],[127.70080320000011,-0.018745199999955],[127.6942911000001,-0.028555299999937],[127.69823710000003,-0.047222399999953],[127.69674080000004,-0.060284899999942],[127.69783910000001,-0.061900499999979],[127.69839720000004,-0.076694699999962],[127.69660090000002,-0.0888002],[127.69984970000007,-0.099890199999948],[127.69531540000003,-0.105361],[127.68934890000003,-0.109022299999936],[127.68998870000007,-0.116737799999953],[127.6871847000001,-0.120710499999973],[127.68774340000004,-0.122354599999937],[127.68593340000007,-0.126153899999963],[127.68747710000002,-0.131306299999949],[127.68710520000002,-0.137391199999968],[127.68044510000004,-0.153033199999925],[127.68140730000005,-0.158292399999937],[127.676546,-0.16291],[127.67576330000009,-0.174060899999972],[127.66788810000003,-0.187808799999971],[127.66911890000006,-0.194075799999951],[127.667022,-0.198525599999925],[127.6672046000001,-0.202181199999927],[127.66108270000007,-0.208500499999957],[127.663174,-0.221232899999961],[127.6669667000001,-0.223869299999933],[127.66835850000007,-0.222304599999973],[127.670982,-0.222807899999964],[127.67107840000006,-0.229344499999968],[127.6754314000001,-0.235636899999975],[127.67917910000006,-0.238435699999968],[127.68006880000007,-0.242900599999928],[127.686034,-0.244850699999972],[127.6893444000001,-0.247618],[127.68964050000011,-0.253403499999934],[127.68663120000008,-0.264023399999928],[127.68688510000004,-0.2699766],[127.7025384000001,-0.277566799999931],[127.70480590000011,-0.276888399999962],[127.71045360000005,-0.283713899999952],[127.7138112,-0.290983299999937],[127.73113210000008,-0.303237399999944],[127.73581710000008,-0.303671],[127.73842380000008,-0.298792499999934],[127.73972380000009,-0.301904799999932],[127.73598120000008,-0.304104399999972],[127.73955970000009,-0.305325699999969],[127.7401506000001,-0.308759699999939],[127.742475,-0.306107],[127.7461257000001,-0.308017699999937],[127.74664440000004,-0.3100794],[127.744668,-0.312311899999941],[127.7466707000001,-0.313920499999938],[127.74946780000005,-0.313172],[127.751779,-0.315168099999937],[127.75051180000003,-0.320112299999948],[127.75558070000011,-0.320033499999965],[127.77130810000006,-0.327400299999965],[127.77922030000002,-0.328619599999968],[127.78325930000005,-0.327508699999953],[127.7857897,-0.329016399999944],[127.7887568000001,-0.3359792],[127.79300440000009,-0.3382688],[127.79762710000011,-0.338168799999949],[127.79875130000005,-0.339728599999944],[127.80302410000002,-0.3400561],[127.81124540000008,-0.336786899999936],[127.81835150000006,-0.337799899999936],[127.82081510000012,-0.341215499999976],[127.8237137000001,-0.341417099999944],[127.8255875000001,-0.3432788],[127.82653650000009,-0.347429599999941],[127.82959720000008,-0.350297699999942],[127.83334510000009,-0.352059099999963],[127.837687,-0.351675599999965],[127.84449990000007,-0.355242399999952],[127.84572120000007,-0.360512599999936],[127.85053520000008,-0.364136099999939],[127.85926860000006,-0.363935899999944],[127.86441580000007,-0.3660245],[127.868687,-0.380313699999931],[127.8743842,-0.3808427],[127.87678270000004,-0.383585],[127.87718210000003,-0.387358499999948],[127.8811674000001,-0.389597899999956],[127.88181640000005,-0.394931099999951],[127.8806039000001,-0.399006199999974],[127.88267730000007,-0.403283099999953],[127.88361340000006,-0.410377199999971],[127.88646170000004,-0.413396399999954],[127.88731070000006,-0.417622699999924],[127.89025870000012,-0.4217991],[127.8945566000001,-0.423283899999944],[127.89569250000011,-0.430378099999928],[127.90026490000002,-0.434403799999927],[127.90007630000002,-0.442000899999925],[127.9052359000001,-0.446127299999944],[127.90639360000011,-0.474151699999936],[127.90951690000009,-0.475913099999957],[127.91347670000005,-0.481624199999942],[127.91914880000002,-0.484115599999939],[127.9192359000001,-0.486203599999953],[127.9214548000001,-0.487588499999958],[127.92148020000002,-0.489750599999979],[127.924682,-0.494220499999926],[127.93218890000003,-0.495545599999957],[127.93390080000006,-0.501131399999963],[127.93836440000007,-0.503597799999966],[127.94119210000008,-0.511028599999975],[127.94136970000011,-0.516551],[127.94593470000007,-0.523290699999961],[127.9465877,-0.530512299999941],[127.95083570000008,-0.533435199999928],[127.95083570000008,-0.539319],[127.95370790000004,-0.541214799999977],[127.95463360000008,-0.556057399999929],[127.95881180000003,-0.567590399999972],[127.964778,-0.5782484],[127.96897690000003,-0.580248799999936],[127.97121980000009,-0.585520699999961],[127.97473860000002,-0.586769799999956],[127.97612720000006,-0.59091],[127.9752142000001,-0.595937899999967],[127.980442,-0.600648699999965],[127.98122480000006,-0.603875899999935],[127.98483870000007,-0.606272499999932],[127.9888204,-0.612454299999968],[127.99083030000008,-0.6227953],[127.99578840000004,-0.6296746],[127.99333820000004,-0.637093899999968],[127.99294160000011,-0.644276299999945],[127.99417160000007,-0.648029699999938],[127.99817630000007,-0.651408599999968],[127.99641610000003,-0.657552799999962],[128.002059,-0.6613253],[128.002376,-0.667595899999981],[128.00885860000005,-0.67198],[128.0120386000001,-0.678596299999924],[128.01832180000008,-0.682660399999975],[128.0195519,-0.686382199999969],[128.0302554000001,-0.6927612],[128.03538990000004,-0.6990057],[128.05250030000002,-0.706626399999948],[128.06048910000004,-0.712085399999978],[128.06559750000008,-0.7179518],[128.0691213,-0.718078399999968],[128.07793790000005,-0.7219303],[128.08600840000008,-0.722854599999948],[128.1118881000001,-0.734261499999945],[128.1153147000001,-0.733416099999943],[128.11815510000008,-0.736628499999938],[128.12319360000004,-0.737586599999929],[128.12567330000002,-0.736707399999943],[128.12893950000012,-0.739321699999948],[128.13244770000006,-0.738082599999927],[128.14762280000002,-0.744963399999961],[128.15114640000002,-0.749067199999956],[128.155331,-0.747868799999935],[128.16354330000001,-0.751145199999939],[128.16654860000006,-0.750203699999929],[128.17429960000004,-0.755134799999951],[128.1801865000001,-0.756181],[128.18696110000008,-0.760794699999963],[128.20187980000003,-0.763080799999955],[128.20371540000008,-0.765325299999972],[128.20796180000002,-0.7662525],[128.2178431000001,-0.772529399999939],[128.22061070000007,-0.770132799999942],[128.21943610000005,-0.765686699999947],[128.22298060000003,-0.763753],[128.22514850000005,-0.756087899999955],[128.22721320000005,-0.756826399999966],[128.23081120000006,-0.753762699999925],[128.2299918000001,-0.752337799999964],[128.2320936000001,-0.752444599999933],[128.2338036000001,-0.7502003],[128.23437360000003,-0.752800899999954],[128.2275694000001,-0.758785699999976],[128.22422070000005,-0.766943599999934],[128.2247195000001,-0.769829099999924],[128.23202240000012,-0.768724799999973],[128.23996650000004,-0.769864799999937],[128.2416479000001,-0.767691499999955],[128.24329480000006,-0.759961399999952],[128.2433152000001,-0.764200499999959],[128.24737630000004,-0.764129299999979],[128.2444551000001,-0.767299799999932],[128.24716260000002,-0.769900399999926],[128.24502510000002,-0.772037799999964],[128.24174770000002,-0.770826599999964],[128.23889780000002,-0.772607799999946],[128.23989530000006,-0.779447599999969],[128.23775780000005,-0.777951399999949],[128.23754410000004,-0.774175299999968],[128.23490790000005,-0.777951399999949],[128.23551350000002,-0.772322799999927],[128.23312670000007,-0.773498399999937],[128.23031240000012,-0.770862199999954],[128.22696380000002,-0.773249],[128.2297781000001,-0.779483199999959],[128.23879090000003,-0.786893],[128.24591570000007,-0.788104199999964],[128.24922880000008,-0.792450299999928],[128.24833820000003,-0.793483399999957],[128.25324420000004,-0.7985824],[128.2547211000001,-0.798105899999939],[128.25324420000004,-0.796533699999941],[128.2560075,-0.796343099999945],[128.25777030000006,-0.803537299999959],[128.2605813,-0.804680799999971],[128.2601049000001,-0.806395899999927],[128.26182,-0.808778099999927],[128.26320170000008,-0.808492299999955],[128.26320170000008,-0.8109697],[128.265441,-0.811398499999939],[128.26806140000008,-0.821927799999969],[128.27037930000006,-0.820448699999929],[128.2714747000001,-0.821587399999942],[128.27101530000004,-0.824452899999926],[128.27392150000003,-0.827121],[128.2751177,-0.825906499999974],[128.279877,-0.826025199999947],[128.28359320000004,-0.832647599999973],[128.2822116000001,-0.838317199999949],[128.27906710000002,-0.838555499999927],[128.27115820000006,-0.831456499999945],[128.25376820000008,-0.821641899999975],[128.24819390000005,-0.820260299999973],[128.24057090000008,-0.821117799999968],[128.2418573000001,-0.8222613],[128.24087010000005,-0.826795799999957],[128.23204270000008,-0.826978],[128.22551550000003,-0.832695299999955],[128.22570610000002,-0.839317799999947],[128.23004160000005,-0.846512],[128.24490650000007,-0.857136499999967],[128.24809260000006,-0.857619599999964],[128.2539097,-0.861743799999942],[128.26042270000005,-0.863318799999945],[128.261963,-0.866665299999966],[128.265298,-0.868714],[128.2685547000001,-0.867206099999976],[128.27401680000003,-0.867856399999937],[128.27959110000006,-0.872382499999958],[128.28116340000008,-0.876003399999945],[128.28593530000012,-0.879084499999976],[128.2904588,-0.881072899999936],[128.2994688000001,-0.881603],[128.30787970000006,-0.879038299999934],[128.31190450000008,-0.874158199999954],[128.31361830000003,-0.864824499999941],[128.31616780000002,-0.8640199],[128.32360260000007,-0.8684492],[128.33084330000008,-0.8762417],[128.3407787000001,-0.880923799999948],[128.34619710000004,-0.886437399999977],[128.35215260000007,-0.8895343],[128.35424890000002,-0.888533799999948],[128.35455490000004,-0.882342599999959],[128.35785410000005,-0.882192199999963],[128.3623007000001,-0.878099799999973],[128.36863730000005,-0.880767799999944],[128.3716865,-0.880053199999963],[128.3724512000001,-0.877968],[128.3802720000001,-0.8779727],[128.38121260000003,-0.880110499999944],[128.39264980000007,-0.882006599999954],[128.40112050000005,-0.885623399999929],[128.41172690000008,-0.894786699999941],[128.4135668,-0.893704499999956],[128.41580350000004,-0.895003199999962],[128.41865350000012,-0.894426],[128.42063770000004,-0.896193699999969],[128.41926680000006,-0.8983943],[128.42034910000007,-0.899693099999979],[128.42428130000008,-0.901388699999927],[128.4384953000001,-0.903084199999967],[128.44433960000003,-0.906800099999941],[128.45007570000007,-0.913979199999972],[128.45386370000006,-0.913871],[128.45763580000005,-0.908020099999931],[128.4562065,-0.902731599999925],[128.4506322000001,-0.896156799999972],[128.4404618000001,-0.888938],[128.43552910000005,-0.882101899999952],[128.4296845,-0.878253899999947],[128.41866330000005,-0.875717599999973],[128.38145350000002,-0.852982599999962],[128.36347390000003,-0.836149499999976],[128.35634230000005,-0.826236599999959],[128.3538499000001,-0.825941799999953],[128.3543055,-0.823797799999966],[128.34849,-0.816347499999949],[128.3435052000001,-0.81281],[128.33107040000004,-0.807515099999932],[128.32439810000005,-0.801651899999968],[128.31970050000007,-0.794958799999961],[128.30919170000004,-0.790101299999947],[128.3072936000001,-0.7772301],[128.2990139000001,-0.764791],[128.2949483000001,-0.763457],[128.2861819000001,-0.753991799999937],[128.26563150000004,-0.742192],[128.2554358000001,-0.732377399999962],[128.25343470000007,-0.733139699999924],[128.24690750000002,-0.729280499999959],[128.23847460000002,-0.721467],[128.23437720000004,-0.721038199999953],[128.23275730000012,-0.714892099999929],[128.22970810000004,-0.714155199999936],[128.2291841000001,-0.712319399999956],[128.22699240000009,-0.712795799999981],[128.22656370000004,-0.709460699999966],[128.2228623000001,-0.708175899999958],[128.21563160000005,-0.699872399999947],[128.20974420000005,-0.691757799999948],[128.2098466000001,-0.681335099999956],[128.1989072,-0.671755],[128.19644,-0.667792099999929],[128.19312360000004,-0.655607399999951],[128.18907390000004,-0.650461899999925],[128.18684760000008,-0.643023],[128.18538740000008,-0.628543199999967],[128.17998380000006,-0.623636499999975],[128.16055730000005,-0.596116599999959],[128.14940820000004,-0.5745733],[128.12620320000008,-0.538719599999979],[128.12058070000012,-0.535605499999974],[128.11041520000003,-0.518087899999955],[128.10830670000007,-0.5173643],[128.10530860000006,-0.512017799999967],[128.10199740000007,-0.5112941],[128.0909418000001,-0.492487099999948],[128.0915043000001,-0.490694699999949],[128.08449330000008,-0.476731199999961],[128.08331160000012,-0.467279099999928],[128.0794353000001,-0.457736499999953],[128.0646001,-0.4372626],[128.06474190000006,-0.426759299999958],[128.06011910000007,-0.424526],[128.05641830000002,-0.417607199999964],[128.05260710000005,-0.419367799999975],[128.0494837000001,-0.417354799999941],[128.04030340000008,-0.387982499999964],[128.040819,-0.386378699999966],[128.02729680000004,-0.355245],[128.01600810000002,-0.322602399999937],[128.011885,-0.321218299999941],[128.005751,-0.312236599999949],[128.00344,-0.306727],[128.00267850000012,-0.299607499999979],[127.99140970000008,-0.285292099999936],[127.98176580000006,-0.263958099999968],[127.977514,-0.231480199999964],[127.97192410000002,-0.211920299999974],[127.97156560000008,-0.200348199999951],[127.96997280000005,-0.197172],[127.96546120000005,-0.163587399999926],[127.953015,-0.138555799999949],[127.94875180000008,-0.126323099999979],[127.94620670000006,-0.111008899999945],[127.933323,-0.086449399999935],[127.92695120000008,-0.079908499999931],[127.91114670000002,-0.056858499999976],[127.90285430000006,-0.025664599999971],[127.89415540000005,-0.0181491],[127.88989190000007,-0.0011372],[127.88764340000012,0.03128270000002],[127.889786,0.042412100000035],[127.89422150000007,0.04928220000005],[127.89291120000007,0.056097200000067],[127.89009970000006,0.058295600000065],[127.89420760000007,0.062939800000038],[127.89510830000006,0.066539700000021],[127.89109580000002,0.068490700000041],[127.8880521000001,0.074288900000056],[127.88799730000005,0.08319240000003],[127.8936063000001,0.092838100000051],[127.90380110000001,0.104874700000039],[127.9087416000001,0.106029],[127.9099642000001,0.104193100000032],[127.91727870000011,0.106565700000033],[127.92941050000002,0.107067900000061],[127.92994620000002,0.108050100000071],[127.93008010000005,0.109623700000043],[127.928819,0.109835800000042],[127.92525870000009,0.108117],[127.92384960000004,0.110647700000072],[127.9262715000001,0.117679],[127.92377150000004,0.134382900000048],[127.92484290000004,0.134963300000038],[127.92506620000006,0.141124],[127.9228131000001,0.149637700000028],[127.92442690000007,0.153658900000039],[127.92181670000002,0.160043400000063],[127.922769,0.161524900000074],[127.92146390000005,0.166181],[127.92158610000001,0.176734700000054],[127.90966060000005,0.175374100000056],[127.89665350000007,0.175831800000026],[127.8946443000001,0.166733100000044],[127.89444690000005,0.14730510000004],[127.8874942000001,0.144168500000035],[127.877036,0.131447100000059],[127.87238910000008,0.130504200000075],[127.86964150000006,0.132376900000054],[127.86326660000009,0.132185100000072],[127.85833650000006,0.134167200000036],[127.8539641000001,0.133367],[127.85199380000006,0.136128300000053],[127.84972390000007,0.135961500000064],[127.84781620000001,0.134096300000067],[127.84419950000006,0.134379],[127.83957280000004,0.128255700000068],[127.83549490000007,0.128868],[127.83449210000003,0.120948800000065],[127.82678410000005,0.126619700000049],[127.82399960000009,0.125357400000041],[127.81736110000008,0.135874],[127.81792240000004,0.137634400000024],[127.81479980000006,0.144770900000026],[127.808705,0.150022600000057],[127.80046850000008,0.150780900000029],[127.79863910000006,0.147525500000029],[127.79671320000011,0.149287500000071],[127.79143540000007,0.14990940000007],[127.78859210000007,0.152249400000073],[127.78906490000008,0.140713300000073],[127.791049,0.135076900000058],[127.78876990000003,0.125592500000039],[127.79201220000004,0.120029600000066],[127.79236530000003,0.116723100000058],[127.79051630000004,0.108719800000074],[127.79205390000004,0.099274500000035],[127.78977810000004,0.093248600000038],[127.79002430000003,0.087471100000073],[127.79264940000007,0.083916],[127.79692950000003,0.081741800000032],[127.79422160000001,0.07446340000007],[127.79530540000007,0.070573700000068],[127.79856460000008,0.06995610000007],[127.7977744000001,0.066901800000039],[127.79584520000003,0.065725200000031],[127.79506,0.06129],[127.79751480000004,0.056245400000023],[127.79656570000009,0.05371370000006],[127.8018760000001,0.049074900000051],[127.80596160000005,0.048022600000024],[127.80735740000011,0.042355600000064],[127.81448320000004,0.038219],[127.81725940000001,0.031895200000065],[127.81613170000003,0.028115300000024],[127.81429760000003,0.027215],[127.8141644000001,0.024809400000038],[127.81139080000003,0.022102100000041],[127.80988220000006,0.017953200000022],[127.80241880000005,0.02149490000005],[127.79573170000003,0.012626600000033],[127.79202060000011,0.012048900000025],[127.78817660000004,0.00914460000007],[127.78653780000002,0.00578710000002],[127.77447080000002,0.004809100000045],[127.77262020000012,0.003337],[127.77011570000002,0.004082500000038],[127.76856250000003,0.008198200000038],[127.76810360000002,0.02551],[127.75387230000001,0.019965100000036],[127.75099330000012,0.022969900000021],[127.7480862000001,0.023511600000063],[127.74019710000005,0.020991500000036],[127.73748290000003,0.018214500000056],[127.73573250000004,0.009714200000076],[127.73282210000002,0.004802300000051],[127.72743570000011,0.003230300000041],[127.7255656000001,0.007314600000029],[127.72303710000006,0.00167730000004],[127.71776180000006,0.001324700000055],[127.71290940000006,0.003220900000031],[127.7109412000001,0],[127.71022760000005,-0.007976399999961],[127.70584030000009,-0.007346799999937],[127.69971630000009,-0.010022799999945]]],[[[127.41722130000005,0.374603300000047],[127.40312170000004,0.373031900000058],[127.39818950000006,0.36973450000005],[127.38788480000005,0.368137300000058],[127.38436550000006,0.365704900000026],[127.37364670000011,0.362302800000066],[127.37067630000001,0.358610300000066],[127.3635531000001,0.354994900000065],[127.34577660000002,0.335672400000021],[127.34360220000008,0.330921400000022],[127.343297,0.32803430000007],[127.35007940000003,0.308928500000036],[127.36174490000008,0.297233500000061],[127.36499020000008,0.295974900000033],[127.37495780000006,0.284802100000036],[127.38557850000007,0.27713650000004],[127.39495890000012,0.275095300000032],[127.39639660000012,0.276676400000042],[127.4020382000001,0.276403500000072],[127.40661730000011,0.278639700000042],[127.4137012000001,0.279188400000066],[127.41720280000004,0.282356600000071],[127.4220600000001,0.282734600000026],[127.42444140000009,0.287402800000052],[127.42741220000005,0.288307400000065],[127.42990980000002,0.291631],[127.42991,0.301166500000022],[127.43200270000011,0.30324840000003],[127.43209410000009,0.30558730000007],[127.44082990000004,0.315567800000053],[127.44347030000006,0.324250500000062],[127.43858180000007,0.331824600000061],[127.44267330000002,0.337358300000062],[127.43986180000002,0.341572],[127.43705430000011,0.350898900000061],[127.42522480000002,0.362905800000021],[127.42000020000012,0.370514900000046],[127.42024320000007,0.372714100000053],[127.41722130000005,0.374603300000047]]]]},"properties":{"shapeName":"Halmahera Selatan","shapeISO":"","shapeID":"22746128B9779130757493","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[129.42246970000008,-0.078835899999945],[129.42078980000008,-0.078394799999955],[129.4183554000001,-0.081948599999976],[129.41299950000007,-0.084473099999968],[129.41047980000008,-0.091899499999954],[129.41606720000004,-0.102658899999938],[129.432403,-0.118148499999961],[129.4345697000001,-0.116089699999975],[129.43380260000004,-0.1049871],[129.43548240000007,-0.099864599999933],[129.43338870000002,-0.0975118],[129.43201310000006,-0.090698299999929],[129.4279474000001,-0.087708199999952],[129.427071,-0.090551299999959],[129.43033330000003,-0.093639399999972],[129.426146,-0.101752],[129.42220210000005,-0.101874599999974],[129.4234924000001,-0.099325599999929],[129.42143520000002,-0.096580599999925],[129.4248679000001,-0.096335499999952],[129.42673020000007,-0.0883454],[129.42229930000008,-0.082781899999929],[129.4214472000001,-0.079522199999928],[129.42246970000008,-0.078835899999945]]],[[[129.63044220000006,-0.031229699999926],[129.6031852000001,-0.004357899999945],[129.5930843000001,-0.001592599999924],[129.58553070000005,-0.00719],[129.58363680000002,-0.010401299999955],[129.5846891000001,-0.032345],[129.5875023000001,-0.044721799999934],[129.59968560000004,-0.058191099999931],[129.60815850000006,-0.065059599999927],[129.61303180000004,-0.066464399999973],[129.61483710000005,-0.068382199999974],[129.61977680000007,-0.068471399999964],[129.6253478000001,-0.071459499999946],[129.62991090000003,-0.069697799999972],[129.62873690000004,-0.067356199999949],[129.6257465000001,-0.069407899999931],[129.62386370000002,-0.066932599999973],[129.61949990000005,-0.065706099999943],[129.6264996000001,-0.065505299999927],[129.62332090000007,-0.0618035],[129.6233873000001,-0.058347],[129.63207050000005,-0.058525299999928],[129.63211480000007,-0.056830499999933],[129.63532670000006,-0.0557154],[129.63181570000006,-0.054823399999975],[129.62929050000002,-0.051701399999956],[129.62707540000008,-0.051701399999956],[129.62680950000004,-0.047999599999969],[129.61995380000008,-0.045613499999945],[129.6152466000001,-0.040462199999979],[129.61619910000002,-0.036961],[129.6193002000001,-0.035689899999966],[129.6221799000001,-0.037273199999959],[129.62533640000004,-0.036514899999929],[129.62495990000002,-0.037986699999976],[129.62635540000008,-0.038098199999979],[129.625713,-0.034664],[129.62376370000004,-0.034262599999977],[129.6255136000001,-0.031430399999977],[129.62839330000008,-0.038834099999974],[129.63167160000012,-0.041264799999965],[129.6277731,-0.039882299999931],[129.62701990000005,-0.043405699999937],[129.6294123,-0.043985499999962],[129.63057520000007,-0.042803599999957],[129.62964490000002,-0.044899799999939],[129.63150560000008,-0.046706099999938],[129.6310847000001,-0.047977199999934],[129.6418169000001,-0.053953599999943],[129.64652410000008,-0.058614299999931],[129.64670130000002,-0.065326699999957],[129.64343410000004,-0.0679136],[129.64070950000007,-0.067244599999924],[129.64192790000004,-0.069831399999941],[129.64952570000003,-0.072016699999949],[129.65369,-0.070767799999942],[129.6564035,-0.0667761],[129.65746660000002,-0.059127099999955],[129.653723,-0.047843199999932],[129.63044220000006,-0.031229699999926]]],[[[129.628339,0.00632040000005],[129.6376603000001,0.009680800000069],[129.6383969000001,0.011378100000059],[129.63602320000007,0.017943600000024],[129.62870220000002,0.023717800000043],[129.6249775000001,0.022261],[129.624379,0.018467500000042],[129.6265442,0.006961400000023],[129.628339,0.00632040000005]]],[[[129.31393430000003,0.035474200000067],[129.28674320000005,0.05099910000007],[129.28251650000004,0.050293500000066],[129.2800446000001,0.048176400000045],[129.27934270000003,0.042883800000027],[129.28781130000004,0.029828800000075],[129.2902832000001,0.028417400000023],[129.293808,0.030887300000074],[129.29698180000003,0.031240100000048],[129.31111140000007,0.025947500000029],[129.32981870000003,0.022772],[129.34146120000003,0.01430380000005],[129.34747730000004,0.005496600000072],[129.35412960000008,0.002452500000061],[129.35994730000004,-0.003733199999942],[129.35975370000006,-0.002369499999929],[129.36268070000006,-0.003221799999949],[129.37274380000008,-0.019562699999938],[129.374679,-0.020220199999926],[129.3817788,-0.030570199999943],[129.38075070000002,-0.031373899999949],[129.38108940000006,-0.036293199999932],[129.3849235,-0.041894399999933],[129.3818877000001,-0.049322099999927],[129.38198450000004,-0.052414899999974],[129.387899,-0.060573099999942],[129.38736690000007,-0.062423899999942],[129.38222650000012,-0.066198699999973],[129.38181530000008,-0.071483299999954],[129.38310950000005,-0.072920099999976],[129.3924469000001,-0.074551699999972],[129.39797420000002,-0.071897199999967],[129.40157850000003,-0.072067599999968],[129.40220750000003,-0.070679499999926],[129.41445970000007,-0.071336899999949],[129.42642160000003,-0.075769],[129.43274730000007,-0.083586199999957],[129.43846830000007,-0.087336499999935],[129.43984710000007,-0.086313699999948],[129.4401858000001,-0.088067099999932],[129.44943840000008,-0.091403299999968],[129.45461510000007,-0.092182499999979],[129.45671950000008,-0.089114],[129.46050530000002,-0.091695399999935],[129.46196880000002,-0.098538499999961],[129.47343490000003,-0.110057199999972],[129.47979710000004,-0.124498199999948],[129.4793859,-0.1256428],[129.47791030000008,-0.124133],[129.4739432,-0.1279077],[129.4695167000001,-0.139451],[129.4762899000001,-0.143225499999971],[129.48047470000006,-0.140376199999935],[129.48559090000003,-0.1418616],[129.48805830000003,-0.147121699999957],[129.49327130000006,-0.149946499999942],[129.4972868000001,-0.1501656],[129.49982680000005,-0.153915799999936],[129.49890760000005,-0.154889899999944],[129.50269330000003,-0.158007],[129.50777330000005,-0.160904799999969],[129.51603410000007,-0.162341399999946],[129.5120187000001,-0.165897],[129.512817,-0.169208899999944],[129.50906770000006,-0.172009599999967],[129.507689,-0.176295699999969],[129.5129747000001,-0.184283199999925],[129.51948170000003,-0.1859389],[129.52104240000006,-0.199600699999962],[129.53109340000003,-0.20676],[129.53693540000006,-0.213481099999967],[129.54681690000007,-0.214430499999935],[129.550808,-0.210071199999959],[129.547264,-0.201937599999951],[129.5474574000001,-0.199210199999925],[129.55767780000008,-0.209072499999934],[129.5637253000001,-0.212481699999955],[129.56367690000002,-0.209681099999955],[129.56058050000001,-0.2060284],[129.5597821,-0.202010299999927],[129.5616566000001,-0.198113799999931],[129.56434160000003,-0.197237],[129.5728927,-0.200159],[129.57536,-0.198965699999974],[129.57327910000004,-0.179410799999971],[129.56723130000012,-0.165554499999928],[129.5465968000001,-0.129562199999953],[129.5406945000001,-0.124984099999949],[129.53523970000003,-0.122889899999961],[129.532482,-0.118920499999945],[129.51199320000012,-0.107913499999938],[129.5054136000001,-0.101046199999928],[129.4729387000001,-0.086702899999977],[129.4695521000001,-0.082684699999959],[129.4660808000001,-0.074331799999925],[129.460118,-0.067172099999937],[129.434017,-0.0537296],[129.41283870000007,-0.024895899999933],[129.40139680000004,-0.0131822],[129.35522460000004,0.012186800000052],[129.3379364000001,0.025594600000034],[129.31393430000003,0.035474200000067]]],[[[128.9399549000001,0.192489500000022],[128.9435205000001,0.185249800000065],[128.95145990000003,0.177859100000035],[128.9569093,0.175300900000025],[128.95825710000008,0.175320300000067],[128.95791050000003,0.177083900000071],[128.96263290000002,0.176541200000031],[128.96349940000005,0.174971400000061],[128.96003340000004,0.175572200000033],[128.9568177000001,0.174138],[128.9646547000001,0.174331800000061],[128.9709441000001,0.167711700000041],[128.978319,0.164843400000052],[128.97872010000003,0.168027100000074],[128.9681065000001,0.175397700000076],[128.96421280000004,0.180771900000025],[128.9566364000001,0.183627],[128.94521170000007,0.191423600000064],[128.9399549000001,0.192489500000022]]],[[[128.296443,0.393220900000074],[128.29533590000005,0.397879900000021],[128.29259890000003,0.394758500000023],[128.296443,0.393220900000074]]],[[[127.912844,0.398325900000032],[127.91157,0.396828700000071],[127.91271920000008,0.395872200000042],[127.912844,0.398325900000032]]],[[[128.17178150000007,0.44307370000007],[128.1707381000001,0.444717400000059],[128.16526380000005,0.446461100000022],[128.1670362000001,0.440829700000052],[128.16876560000003,0.440886800000044],[128.16888,0.442902200000049],[128.17069520000007,0.441844500000059],[128.17033790000005,0.439914900000019],[128.17263910000008,0.440300800000045],[128.17178150000007,0.44307370000007]]],[[[128.86724230000004,0.479043600000068],[128.8621571000001,0.476078400000063],[128.86187470000004,0.473628700000063],[128.86651910000012,0.461439100000064],[128.87445590000004,0.454528500000038],[128.87332720000006,0.469607600000074],[128.8704352000001,0.476792900000021],[128.86724230000004,0.479043600000068]]],[[[128.81061970000007,0.565727600000059],[128.80689830000006,0.564088300000037],[128.80547880000006,0.559771400000045],[128.8059799,0.554031500000065],[128.81421970000008,0.534667700000057],[128.82348390000004,0.519013700000073],[128.82677750000005,0.516032],[128.83022140000003,0.509436],[128.85307120000004,0.495025300000066],[128.85708950000003,0.490068300000075],[128.861497,0.490486900000064],[128.86263410000004,0.497212600000069],[128.8559080000001,0.506708400000036],[128.85434880000003,0.51470340000003],[128.84696760000008,0.527757600000029],[128.8281479000001,0.55335830000007],[128.81853220000005,0.562285200000019],[128.81061970000007,0.565727600000059]]],[[[127.92158610000001,0.176734700000054],[127.92164480000008,0.180061400000056],[127.9196157,0.180610900000033],[127.9186327000001,0.185777100000053],[127.92188690000012,0.186962600000072],[127.919874,0.194242400000064],[127.921329,0.200585600000068],[127.92070060000003,0.202022700000043],[127.91862750000007,0.202017],[127.92094280000003,0.202995700000031],[127.92404790000012,0.215432100000044],[127.91853530000003,0.235731600000065],[127.91803960000004,0.241797800000029],[127.91931580000005,0.243529],[127.91787840000006,0.246541200000024],[127.91461960000004,0.24812380000003],[127.91416410000011,0.245575600000052],[127.91278380000006,0.246136100000058],[127.91444540000009,0.251441],[127.9137866000001,0.25376650000004],[127.91570600000011,0.255215900000053],[127.91709810000009,0.259909600000071],[127.916531,0.268305300000065],[127.91485150000005,0.272213],[127.91648010000006,0.271861900000033],[127.91669070000012,0.273858700000062],[127.92009990000008,0.271937600000058],[127.92113250000011,0.273461900000029],[127.90067320000003,0.283768700000053],[127.88798660000009,0.285550500000056],[127.88046830000008,0.294509400000038],[127.88050930000009,0.300389300000063],[127.87906080000005,0.301902],[127.87580320000006,0.301699100000064],[127.87774480000007,0.299765200000024],[127.875817,0.294902500000035],[127.87917620000007,0.293029],[127.87521780000009,0.29169580000007],[127.8751744000001,0.288685200000032],[127.87258550000001,0.295414400000027],[127.86288170000012,0.295642300000054],[127.86438350000003,0.296898800000065],[127.86322130000008,0.300499500000058],[127.86520270000005,0.300931300000059],[127.8655030000001,0.297880300000031],[127.86749590000011,0.296838600000058],[127.8718166000001,0.297739300000046],[127.87104040000008,0.300242100000048],[127.87386740000011,0.29781870000005],[127.87462670000002,0.29897950000003],[127.87261620000004,0.302554300000054],[127.86942340000007,0.302686100000074],[127.8692876,0.304074200000059],[127.87212150000005,0.305501400000026],[127.86902640000005,0.309046900000055],[127.87209260000009,0.30997],[127.87443150000001,0.313247400000023],[127.87275910000005,0.317483400000071],[127.8820836000001,0.335999400000048],[127.88055240000006,0.336673400000052],[127.880443,0.341062400000055],[127.88253780000002,0.344392500000026],[127.88171770000008,0.345509800000059],[127.8794812000001,0.345078800000067],[127.87860750000004,0.347955800000022],[127.88136920000011,0.349302100000045],[127.87932810000007,0.353481700000032],[127.88058410000008,0.354336500000045],[127.88350250000008,0.348881100000028],[127.88226880000002,0.355151200000023],[127.88402630000007,0.357453],[127.88720740000008,0.358482400000071],[127.89242780000006,0.356294400000024],[127.8934018000001,0.357902],[127.88967380000008,0.35953180000007],[127.886042,0.365296200000046],[127.88722510000002,0.364052100000038],[127.888864,0.367588400000045],[127.88809650000007,0.363406600000076],[127.89132770000003,0.361279800000034],[127.89139720000003,0.362862700000051],[127.89366080000002,0.362006800000074],[127.89233530000001,0.364193600000021],[127.89018110000006,0.364569],[127.8902538000001,0.366154900000026],[127.89150150000012,0.365057600000057],[127.89211220000004,0.366245400000025],[127.89443860000006,0.364087300000051],[127.8921223000001,0.368394500000022],[127.89639710000006,0.36433020000004],[127.89709550000009,0.366017400000032],[127.89914890000011,0.364262],[127.90100070000005,0.365469200000064],[127.90039650000006,0.366785500000049],[127.90280280000002,0.366739100000075],[127.90119370000002,0.364618700000051],[127.90214580000008,0.361618600000043],[127.90363220000006,0.362828900000068],[127.903267,0.364590600000042],[127.9047594000001,0.364411400000051],[127.90518650000001,0.362545800000021],[127.90616580000005,0.364521600000046],[127.90434650000009,0.366159900000071],[127.905061,0.369823100000076],[127.90262710000002,0.37081610000007],[127.90534130000003,0.371464800000069],[127.90438510000001,0.374833900000056],[127.9030153000001,0.37424690000006],[127.90212210000004,0.376614200000063],[127.90085520000002,0.375627800000075],[127.90101760000005,0.377492300000029],[127.89731530000006,0.377080200000023],[127.8993971000001,0.379057200000034],[127.89813150000009,0.380720200000042],[127.89992130000007,0.381181],[127.900607,0.379528600000071],[127.90209720000007,0.380467800000019],[127.9003315000001,0.381861800000024],[127.89611220000006,0.382094500000051],[127.89524540000002,0.384493500000076],[127.8961293000001,0.385688900000048],[127.89735990000008,0.382674700000052],[127.9014912,0.382786300000021],[127.8972020000001,0.386784900000066],[127.90178370000001,0.384460600000068],[127.90101130000005,0.387176300000021],[127.90360550000003,0.385601500000064],[127.90340130000004,0.389428800000076],[127.9046456000001,0.388785],[127.90417860000002,0.390461],[127.90643330000012,0.394641400000069],[127.90978910000001,0.394941700000061],[127.90890500000012,0.400755],[127.912158,0.400500100000045],[127.90657360000012,0.410583700000075],[127.90847830000007,0.415946900000051],[127.90311940000004,0.425854500000071],[127.90075030000003,0.427369700000042],[127.90073940000002,0.430697500000065],[127.90317850000008,0.436028700000065],[127.90938070000004,0.442454400000031],[127.91681520000009,0.455157],[127.92167470000004,0.4591],[127.92636740000012,0.45930420000002],[127.92943360000004,0.46516680000002],[127.93170920000011,0.465573200000051],[127.93525360000001,0.463661900000034],[127.93894020000005,0.468379800000037],[127.95028390000004,0.466665100000057],[127.9561857000001,0.467940100000021],[127.9684291000001,0.481821500000024],[127.97159590000001,0.479930700000068],[127.97724960000005,0.483213200000023],[127.97653230000003,0.478234300000054],[127.97863990000008,0.473782],[127.97801950000007,0.471135100000026],[127.98207820000005,0.47678430000002],[127.98592510000003,0.479217600000027],[127.9914788000001,0.475089800000035],[127.99831990000007,0.473593900000026],[128.00715420000006,0.475408200000061],[128.00950160000002,0.473439800000051],[128.01114250000012,0.474518200000034],[128.01416660000007,0.471460300000047],[128.0180961000001,0.472574800000075],[128.02188150000006,0.476165800000047],[128.026782,0.473031800000058],[128.03983970000002,0.478590100000019],[128.04673980000007,0.475673900000061],[128.05178200000012,0.47171940000004],[128.06425930000012,0.469012400000054],[128.06899120000003,0.470675100000051],[128.07281780000005,0.475912200000039],[128.07890840000005,0.477311900000075],[128.0844872,0.471272500000055],[128.0890372,0.461026100000026],[128.10078090000002,0.461720700000058],[128.10757410000008,0.458783100000062],[128.11108400000012,0.455104200000051],[128.12139170000012,0.45390690000005],[128.12588570000003,0.457867900000053],[128.14053550000006,0.463861200000053],[128.15638740000009,0.45707150000004],[128.1562348000001,0.45398890000007],[128.1577873000001,0.451855100000046],[128.16198040000006,0.454454],[128.16236650000008,0.457021700000041],[128.16823980000004,0.457082300000025],[128.17400840000005,0.454338600000028],[128.1721927000001,0.451508100000069],[128.1723852,0.448605500000042],[128.17569290000006,0.447105900000054],[128.17259060000004,0.445718400000032],[128.17550540000002,0.440541200000041],[128.18177090000006,0.441473900000062],[128.1816917000001,0.440228],[128.18435480000005,0.439648500000033],[128.18423960000007,0.438392600000043],[128.1818144,0.437658500000055],[128.18225940000002,0.436528500000065],[128.17949580000004,0.436559300000056],[128.18237140000008,0.433396400000049],[128.18031040000005,0.431917800000065],[128.17807660000005,0.432358800000031],[128.1789490000001,0.428870500000073],[128.181707,0.428282100000047],[128.19343750000007,0.431396300000074],[128.1986803000001,0.431358200000034],[128.20163810000008,0.429730100000029],[128.2030264000001,0.427305100000069],[128.20138080000004,0.427350400000023],[128.20677190000004,0.422780100000068],[128.2176270000001,0.421148900000048],[128.2175334000001,0.418556600000045],[128.22246080000002,0.413128300000039],[128.23179260000006,0.411068],[128.23629960000005,0.413985],[128.23626160000003,0.422265700000025],[128.2386586,0.421961500000066],[128.2402839,0.424638400000049],[128.24176680000005,0.422154300000045],[128.2410585,0.418841900000075],[128.24282490000007,0.412635400000056],[128.24920010000005,0.408123900000021],[128.2530875000001,0.408147600000063],[128.26084620000006,0.404185400000074],[128.26403630000004,0.404262200000062],[128.26742120000006,0.409040200000049],[128.268989,0.406609900000035],[128.2680597000001,0.40335570000002],[128.27312260000008,0.403105800000048],[128.2751555000001,0.40056990000005],[128.27828850000003,0.399587],[128.28154340000003,0.401524300000062],[128.279554,0.398088],[128.28422280000007,0.396134500000073],[128.28822250000007,0.396878],[128.29097090000005,0.399335300000075],[128.2950148000001,0.397900700000037],[128.2979802000001,0.400204600000052],[128.3158386,0.396615200000042],[128.33877840000002,0.404935900000055],[128.3473609,0.403442400000074],[128.35614,0.399187],[128.3796533000001,0.406429100000025],[128.38873080000008,0.405290200000024],[128.39263360000007,0.403266100000053],[128.3982797000001,0.39655440000007],[128.40519730000005,0.393630500000029],[128.42223810000007,0.392861700000026],[128.42365670000004,0.394807200000059],[128.43344860000002,0.397460700000067],[128.43663960000003,0.400696200000027],[128.4397891000001,0.401076400000022],[128.44118720000006,0.403270900000052],[128.44984910000005,0.403273800000022],[128.45085870000003,0.401475800000071],[128.455858,0.400472500000035],[128.4580376,0.403551600000071],[128.4583490000001,0.402150500000062],[128.4606497000001,0.401865],[128.45801170000004,0.400273600000048],[128.4631667000001,0.398111200000073],[128.46297640000012,0.395334800000057],[128.465848,0.395300200000065],[128.46820920000005,0.391987500000027],[128.47085590000006,0.393120600000032],[128.47319990000005,0.391338800000028],[128.47838940000008,0.39430550000003],[128.48178,0.390802600000029],[128.48502080000003,0.390188200000068],[128.48668410000005,0.386668200000031],[128.48522570000011,0.383424700000035],[128.48694780000005,0.378651400000024],[128.4917613,0.377413500000046],[128.4915969000001,0.375303],[128.4936987000001,0.375925800000061],[128.49276810000003,0.373136100000067],[128.49638420000008,0.368442900000048],[128.5005897000001,0.368999100000053],[128.4982427000001,0.366165200000069],[128.4985402000001,0.364522900000054],[128.50117610000007,0.36461120000007],[128.498213,0.362954900000034],[128.49860050000007,0.361675],[128.50071590000005,0.362751500000059],[128.49978340000007,0.357383700000071],[128.50110410000002,0.354411],[128.5067137000001,0.35398280000004],[128.5075002000001,0.350320500000066],[128.51263290000009,0.347885500000075],[128.51576790000001,0.343508],[128.52747850000003,0.341941400000053],[128.53024440000002,0.339239900000052],[128.53411540000002,0.340331400000025],[128.544283,0.329554500000029],[128.55294130000004,0.32702450000005],[128.5590976000001,0.317814700000042],[128.56825680000009,0.319704500000057],[128.58411460000002,0.318326600000034],[128.59830210000007,0.319645],[128.60404060000008,0.317216100000053],[128.61896680000007,0.315675300000066],[128.62271670000007,0.313245800000061],[128.62897410000005,0.313554],[128.64489780000008,0.308945700000038],[128.64822590000006,0.307042600000045],[128.65149,0.302658100000031],[128.65379340000004,0.303488900000048],[128.65672110000003,0.300845600000059],[128.66318760000001,0.301422600000024],[128.67524460000004,0.295169200000032],[128.69668880000006,0.297097400000041],[128.71346870000002,0.291766],[128.71992290000003,0.286367200000029],[128.7307866000001,0.282714700000042],[128.73561360000008,0.283208100000024],[128.73712280000007,0.281825900000058],[128.7451996000001,0.281187500000044],[128.7548333000001,0.282046800000046],[128.769751,0.276698500000066],[128.7756055000001,0.276829100000043],[128.78448150000008,0.272654700000032],[128.789058,0.272847700000057],[128.8012897000001,0.267887600000051],[128.80716690000008,0.268016800000055],[128.81517830000007,0.263930800000026],[128.82451090000006,0.261883100000034],[128.8289105,0.258893600000022],[128.8428292000001,0.259297600000025],[128.84202760000005,0.260893200000055],[128.84304470000006,0.261384200000066],[128.84575110000003,0.259955],[128.85111730000006,0.251182400000062],[128.84938190000003,0.246469],[128.85216050000008,0.243574200000069],[128.85294090000002,0.238659],[128.86531280000008,0.22352090000004],[128.87718670000004,0.219867600000043],[128.88674250000008,0.210842500000069],[128.893127,0.211355600000047],[128.90341320000005,0.207431400000075],[128.89409080000007,0.216598300000044],[128.87572430000012,0.227841700000056],[128.8683535,0.240841800000055],[128.86898470000006,0.249481400000036],[128.8648694000001,0.265935500000069],[128.85950220000007,0.274039100000039],[128.85335150000003,0.280005500000073],[128.836116,0.292479800000024],[128.81832020000002,0.298773400000073],[128.816179,0.301292200000034],[128.811801,0.30258740000005],[128.81138880000003,0.304834500000027],[128.80557380000005,0.306787600000064],[128.80195520000007,0.310802400000057],[128.79423530000008,0.314236200000039],[128.78940910000006,0.314074900000037],[128.77917950000005,0.318384600000059],[128.76823910000007,0.318779],[128.76292680000006,0.316011700000047],[128.75991140000008,0.317808500000069],[128.75720940000008,0.316739200000029],[128.75061370000003,0.319332900000063],[128.74741010000002,0.318751500000076],[128.7412816000001,0.323774300000025],[128.72941450000008,0.325856100000067],[128.71393250000006,0.332918900000038],[128.7059389000001,0.327574100000049],[128.703639,0.329428300000075],[128.69305540000005,0.329689],[128.68850250000003,0.332322400000066],[128.68458040000007,0.331842100000074],[128.68339420000007,0.334316],[128.67829570000004,0.33629650000006],[128.67199460000006,0.342521100000056],[128.66887420000012,0.347525800000028],[128.66611080000007,0.361179],[128.669908,0.364976100000035],[128.67657950000012,0.377057700000023],[128.67768630000012,0.383977900000048],[128.6797332000001,0.387466600000039],[128.67982830000005,0.392793300000051],[128.68367750000004,0.397352900000044],[128.6869180000001,0.404511400000047],[128.6848808000001,0.410941700000024],[128.68645890000005,0.412828800000057],[128.685705,0.418516],[128.68261660000007,0.42610860000002],[128.68214790000002,0.431067800000051],[128.6853063000001,0.439661300000068],[128.68756710000002,0.440000800000064],[128.68838190000008,0.442728400000021],[128.68752510000002,0.458915600000068],[128.68027340000003,0.477128100000073],[128.66832780000004,0.490944100000036],[128.670159,0.492201400000056],[128.66847570000004,0.494312100000059],[128.6688729000001,0.496168500000067],[128.67111720000003,0.495457800000054],[128.675002,0.50041120000003],[128.67705120000005,0.50081810000006],[128.67912350000006,0.506074100000035],[128.676266,0.511067600000047],[128.6705611000001,0.506198500000039],[128.66803190000007,0.506022800000039],[128.65708870000003,0.50998050000004],[128.65068530000008,0.514159300000074],[128.64444990000004,0.512360100000024],[128.6396036000001,0.503722900000071],[128.6387691000001,0.492497800000024],[128.63368860000003,0.489481100000035],[128.633724,0.486402800000064],[128.62612090000005,0.485476800000072],[128.62843490000012,0.481635900000072],[128.62838650000003,0.478679500000055],[128.6242085,0.476425500000062],[128.61842950000005,0.468451500000072],[128.61897550000003,0.457044],[128.62124110000002,0.450979],[128.6236735000001,0.449131900000054],[128.6210675000001,0.443366800000035],[128.60475710000003,0.438178500000049],[128.5970258000001,0.436796100000038],[128.596193,0.438788],[128.59473890000004,0.438724100000059],[128.5854157000001,0.433924400000024],[128.58121810000011,0.434483700000044],[128.57984340000007,0.433059100000037],[128.5807374000001,0.430117200000041],[128.578739,0.427353700000026],[128.57902920000004,0.424317400000064],[128.57704740000008,0.421520300000054],[128.57252690000007,0.418789200000049],[128.56647850000002,0.41849110000004],[128.56202310000003,0.415934400000026],[128.5601239,0.417743300000041],[128.55890570000008,0.422234400000036],[128.55341970000006,0.420810600000038],[128.54823840000006,0.423455600000068],[128.54638590000002,0.421610300000054],[128.54440210000007,0.421803900000043],[128.53910310000003,0.43158550000004],[128.53315290000012,0.431965300000059],[128.52400750000004,0.437827900000059],[128.52361740000003,0.440389200000027],[128.51984620000007,0.439575800000057],[128.5140424000001,0.442613300000062],[128.509674,0.442910600000062],[128.50854490000006,0.450261500000067],[128.50464460000012,0.451691100000062],[128.50227350000011,0.455165800000032],[128.50304690000007,0.462318100000061],[128.50154540000005,0.469149600000037],[128.5043084,0.477114700000072],[128.5009066,0.480195],[128.4965936000001,0.481459200000074],[128.4959013,0.478099200000031],[128.4887744,0.472345500000074],[128.48772540000004,0.478999800000054],[128.48927930000002,0.484155200000032],[128.48789480000005,0.486006400000065],[128.48505020000005,0.486426],[128.48328630000003,0.490013800000042],[128.47351760000004,0.493787800000064],[128.471146,0.493055500000025],[128.4673716000001,0.495391200000029],[128.45949430000007,0.491128],[128.4570000000001,0.492473500000074],[128.4583278,0.496041400000024],[128.455405,0.498453100000063],[128.45137180000006,0.498899200000039],[128.44700020000005,0.501906800000029],[128.44159880000007,0.501318900000058],[128.43794350000007,0.504805100000056],[128.42731920000006,0.502068800000075],[128.4221457000001,0.504084600000056],[128.40977850000002,0.503027600000053],[128.40693910000005,0.505341800000053],[128.4027373,0.502341200000046],[128.39944990000004,0.509003500000063],[128.3927381000001,0.50682450000005],[128.38877450000007,0.508441700000049],[128.38230840000006,0.507442900000058],[128.375263,0.512223600000027],[128.37205690000008,0.511815700000056],[128.37018870000009,0.513121600000034],[128.36503360000006,0.512977200000023],[128.3584873000001,0.510593800000038],[128.3527858000001,0.513350800000069],[128.35012440000003,0.517534800000021],[128.34442060000003,0.520252400000061],[128.3416542000001,0.52323720000004],[128.33816850000005,0.529734400000052],[128.33732380000004,0.53723530000002],[128.32830690000003,0.539344300000039],[128.3262883000001,0.542498800000033],[128.31839760000003,0.54731090000007],[128.31629150000003,0.551998900000058],[128.31677390000004,0.55454450000002],[128.28571060000002,0.553945],[128.27883470000006,0.548244200000056],[128.2730461000001,0.548857600000019],[128.27064340000004,0.550193500000034],[128.2667573000001,0.566564300000039],[128.2641351000001,0.569968900000049],[128.26213730000006,0.570986900000037],[128.25694270000008,0.569532800000047],[128.251075,0.569844200000034],[128.24225190000004,0.577117300000054],[128.240833,0.582409700000028],[128.237048,0.586601600000051],[128.22688530000005,0.593625300000042],[128.21824780000009,0.594983100000036],[128.21606040000006,0.59806640000005],[128.211065,0.600754400000028],[128.205623,0.601380400000039],[128.20212230000004,0.598039],[128.1890548,0.596633800000063],[128.18535050000003,0.593866700000035],[128.18244360000006,0.596496],[128.17860640000004,0.589992500000051],[128.17228590000002,0.592730900000049],[128.16827740000008,0.589243200000055],[128.16117150000002,0.589927],[128.152035,0.595315500000027],[128.14476790000003,0.594656100000066],[128.14153750000003,0.591185400000029],[128.13495390000003,0.589088300000071],[128.12060930000007,0.594286700000055],[128.1169675000001,0.591137700000047],[128.1104305,0.59826570000007],[128.1067409000001,0.600298100000032],[128.1052403000001,0.605107700000076],[128.09998110000004,0.606629800000064],[128.098759,0.604071800000042],[128.09519440000008,0.602646800000059],[128.0911804000001,0.608926100000076],[128.08433850000006,0.614707900000042],[128.06596490000004,0.616019300000062],[128.0636548000001,0.620394800000042],[128.065279,0.622664400000076],[128.0659700000001,0.635401200000047],[128.06364570000005,0.640033500000072],[128.05696150000006,0.642843500000026],[128.0495697,0.638119300000028],[128.04463280000004,0.638017300000058],[128.03855220000003,0.644939200000067],[128.03503220000005,0.641949100000033],[128.03325070000005,0.644323100000065],[128.02936130000012,0.643186800000024],[128.02849560000004,0.64448950000002],[128.02705190000006,0.643297800000028],[128.02656580000007,0.645163800000034],[128.02439330000004,0.643537300000048],[128.018359,0.650387900000055],[128.01309170000002,0.651012500000036],[128.00919640000006,0.649860700000033],[128.00451650000002,0.655253300000027],[128.001375,0.656651200000056],[127.99542110000004,0.65673270000002],[127.99545000000012,0.653092700000059],[127.99201930000004,0.653740400000061],[127.98873070000002,0.650448400000073],[127.98313660000008,0.651612500000056],[127.98649630000011,0.645420100000024],[127.97794670000007,0.63766970000006],[127.97092410000005,0.638911],[127.97037120000005,0.637198800000021],[127.96418690000007,0.633189800000025],[127.96072020000008,0.636214100000075],[127.9561857000001,0.632482800000048],[127.95263640000007,0.635171500000069],[127.95148260000008,0.634318500000063],[127.95304820000001,0.632791],[127.95208040000011,0.630193900000052],[127.94864220000011,0.630003800000054],[127.94797520000009,0.628316700000028],[127.945708,0.630005200000028],[127.940214,0.630714400000045],[127.9400495000001,0.634039900000062],[127.9361096,0.635164],[127.92798550000009,0.625322700000027],[127.92271360000007,0.627877400000045],[127.91385950000006,0.628558200000043],[127.9054145,0.627357500000073],[127.88371230000007,0.631055200000048],[127.880014,0.629732300000057],[127.87985670000012,0.630727800000045],[127.875956,0.630714500000067],[127.87514580000004,0.632174],[127.87238900000011,0.631547200000057],[127.87251720000006,0.632836800000064],[127.869394,0.631252800000027],[127.86717550000003,0.632661],[127.86342650000006,0.63060280000002],[127.86355670000012,0.625705],[127.85713180000005,0.623037900000043],[127.85374160000003,0.617707400000029],[127.84698880000008,0.619971],[127.8433099,0.618178600000022],[127.8290204000001,0.622723600000029],[127.82548280000003,0.630434100000059],[127.82721320000007,0.635127300000022],[127.82655380000006,0.638547100000039],[127.81891460000008,0.640683400000057],[127.81669220000003,0.643847700000038],[127.80797770000004,0.645985200000041],[127.80254800000012,0.641292300000032],[127.79724230000011,0.640909700000066],[127.79205910000007,0.64263980000004],[127.79091390000008,0.63827340000006],[127.79296160000001,0.629427600000042],[127.79662680000001,0.626509500000054],[127.7977939000001,0.623154500000055],[127.806834,0.618628600000022],[127.80994870000006,0.614541600000052],[127.80891280000003,0.610001300000022],[127.81105550000007,0.604219500000056],[127.81021610000005,0.597852300000056],[127.82071440000004,0.592056100000036],[127.82493560000012,0.582844800000032],[127.82841010000004,0.580745600000057],[127.82896190000008,0.577241600000036],[127.83136800000011,0.576122200000043],[127.83161310000003,0.57273680000003],[127.82964850000008,0.569659400000035],[127.82276500000012,0.567253300000061],[127.82314930000007,0.562496800000019],[127.82117820000008,0.560546600000066],[127.82143760000008,0.55651720000003],[127.825319,0.550715],[127.825867,0.54244140000003],[127.8196597000001,0.537617100000034],[127.81594310000003,0.537226400000065],[127.81350670000006,0.532523500000025],[127.80655510000008,0.526147500000036],[127.81228410000006,0.521664200000032],[127.81276850000006,0.518234500000062],[127.81158810000011,0.515409800000043],[127.80807850000008,0.514594100000068],[127.80551610000009,0.512210200000027],[127.80357550000008,0.508117200000072],[127.80635790000008,0.502563400000042],[127.8050280000001,0.49652530000003],[127.80604490000007,0.490069100000028],[127.80139650000001,0.484919],[127.80028130000005,0.480953400000033],[127.79563410000003,0.482263900000021],[127.79311590000009,0.486728500000027],[127.78683620000004,0.486522700000023],[127.78447960000005,0.488349200000073],[127.77945690000001,0.485507200000029],[127.775376,0.47623980000003],[127.777055,0.474236800000028],[127.77667340000005,0.470533800000055],[127.77956480000012,0.467912800000022],[127.77599480000003,0.466671],[127.77261370000008,0.458427400000062],[127.76862090000009,0.454337800000076],[127.76958320000006,0.450069700000029],[127.773511,0.448425600000064],[127.77221630000008,0.446588200000065],[127.77434320000009,0.443951],[127.77471220000007,0.436534],[127.77231160000008,0.432786],[127.77229280000006,0.429631900000061],[127.7751042000001,0.412851],[127.79013180000004,0.397436400000061],[127.7910462000001,0.393769900000052],[127.7889057000001,0.390451400000074],[127.79021240000009,0.387943900000039],[127.79224230000011,0.388550900000041],[127.7985460000001,0.385671],[127.79994640000007,0.381286800000055],[127.80343810000011,0.380692700000054],[127.806546,0.373654400000021],[127.8013820000001,0.368059100000039],[127.800735,0.361931800000036],[127.807226,0.339978900000062],[127.80194910000012,0.330994900000064],[127.79855580000003,0.317434700000035],[127.7995065,0.310901300000069],[127.80240970000011,0.307197700000074],[127.80203580000011,0.300953100000072],[127.80357720000006,0.296932300000037],[127.81214570000009,0.284279400000059],[127.81732150000005,0.279577900000049],[127.81952110000009,0.272591800000043],[127.81538120000005,0.272254800000042],[127.8115977000001,0.269584],[127.80734010000003,0.256791],[127.80475390000004,0.256401500000038],[127.79731620000007,0.25],[127.79726530000005,0.248489400000039],[127.80128840000009,0.236763100000076],[127.81438830000002,0.23050980000005],[127.81276380000008,0.229717400000027],[127.811836,0.223812500000065],[127.816902,0.215853300000049],[127.823647,0.209434400000021],[127.821633,0.207676900000024],[127.82289170000001,0.205010100000038],[127.82217160000005,0.201723300000026],[127.8095363000001,0.195919700000047],[127.80481170000007,0.19036310000007],[127.80253390000007,0.183195500000068],[127.79863920000003,0.178840200000025],[127.79821040000002,0.17473190000004],[127.7955664000001,0.173944300000073],[127.79398530000003,0.167435400000045],[127.79056660000003,0.162666900000033],[127.79057750000004,0.158882600000027],[127.78771390000009,0.154647500000067],[127.78859210000007,0.152249400000073],[127.79143540000007,0.14990940000007],[127.79671320000011,0.149287500000071],[127.79863910000006,0.147525500000029],[127.80046850000008,0.150780900000029],[127.808705,0.150022600000057],[127.81479980000006,0.144770900000026],[127.81792240000004,0.137634400000024],[127.81736110000008,0.135874],[127.82399960000009,0.125357400000041],[127.82678410000005,0.126619700000049],[127.83449210000003,0.120948800000065],[127.83549490000007,0.128868],[127.83957280000004,0.128255700000068],[127.84419950000006,0.134379],[127.84781620000001,0.134096300000067],[127.84972390000007,0.135961500000064],[127.85199380000006,0.136128300000053],[127.8539641000001,0.133367],[127.85833650000006,0.134167200000036],[127.86326660000009,0.132185100000072],[127.86964150000006,0.132376900000054],[127.87238910000008,0.130504200000075],[127.877036,0.131447100000059],[127.8874942000001,0.144168500000035],[127.89444690000005,0.14730510000004],[127.8946443000001,0.166733100000044],[127.89665350000007,0.175831800000026],[127.90966060000005,0.175374100000056],[127.92158610000001,0.176734700000054]]]]},"properties":{"shapeName":"Halmahera Tengah","shapeISO":"","shapeID":"22746128B21013397827260","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[128.65634770000008,0.559339700000066],[128.65006470000003,0.557201600000042],[128.65079450000007,0.554038900000023],[128.6543306000001,0.55346430000003],[128.65686590000007,0.554972900000053],[128.658304,0.559180500000025],[128.65634770000008,0.559339700000066]]],[[[128.62894860000006,0.567068800000072],[128.6198458,0.566627700000026],[128.61898670000005,0.564770400000043],[128.62116950000006,0.561148700000047],[128.630909,0.560034100000053],[128.6321531000001,0.561822],[128.62894860000006,0.567068800000072]]],[[[128.64796390000004,0.575049600000057],[128.6461607000001,0.577939],[128.64370810000003,0.575051200000075],[128.6411739,0.575241900000037],[128.63667420000002,0.571885700000053],[128.6360747000001,0.56532],[128.6425398,0.562368500000048],[128.6441506000001,0.563087300000063],[128.64818660000003,0.561553200000048],[128.6569356000001,0.564334],[128.66239740000003,0.562835],[128.6703754,0.567830100000037],[128.66613240000004,0.569664100000068],[128.6631046000001,0.57457050000005],[128.6568767000001,0.57536360000006],[128.64730980000002,0.572434300000054],[128.64796390000004,0.575049600000057]]],[[[128.63977450000004,0.633763700000031],[128.632953,0.632323100000065],[128.63569960000007,0.62626860000006],[128.6439395000001,0.621789500000034],[128.64783420000003,0.622397300000046],[128.63977450000004,0.633763700000031]]],[[[128.5220117,0.624339600000042],[128.540024,0.633098800000027],[128.54058350000003,0.637451300000066],[128.53749920000007,0.639115900000036],[128.5327694,0.638758900000028],[128.5225024,0.631931300000076],[128.51969110000005,0.628684],[128.5220117,0.624339600000042]]],[[[128.3801029000001,0.63742620000005],[128.38248980000003,0.639665800000046],[128.38001450000002,0.641934800000058],[128.378217,0.638693300000057],[128.3801029000001,0.63742620000005]]],[[[128.4766787000001,0.667250900000056],[128.4740210000001,0.666572300000041],[128.472885,0.664472300000057],[128.4772289000001,0.665793700000052],[128.4766787000001,0.667250900000056]]],[[[128.30264520000003,0.708523],[128.2995089000001,0.706881500000065],[128.29864370000007,0.703483],[128.30509130000007,0.705332400000032],[128.30264520000003,0.708523]]],[[[128.51869420000003,0.707180200000039],[128.5257256000001,0.713164],[128.519068,0.710852300000056],[128.5174992000001,0.708506700000044],[128.51869420000003,0.707180200000039]]],[[[128.5526036000001,0.729666300000019],[128.55311890000007,0.732036300000061],[128.5486357000001,0.733186900000021],[128.54903080000008,0.731332200000054],[128.5526036000001,0.729666300000019]]],[[[128.4968378000001,0.757222200000058],[128.4976097000001,0.758418500000062],[128.49598860000003,0.758161200000075],[128.4968378000001,0.757222200000058]]],[[[128.50993860000005,0.798389],[128.51078960000007,0.799665200000049],[128.50979680000012,0.800678],[128.50890520000007,0.799644900000033],[128.50993860000005,0.798389]]],[[[128.32079640000006,0.843154800000036],[128.31923670000003,0.839309600000036],[128.3213316,0.833754200000044],[128.3219709000001,0.826202100000046],[128.32388660000004,0.824360600000034],[128.326793,0.824533900000063],[128.33015550000005,0.826909500000056],[128.3325023000001,0.831296500000064],[128.33005060000005,0.836070900000038],[128.32539150000002,0.83795340000006],[128.32268750000003,0.842620700000055],[128.32079640000006,0.843154800000036]]],[[[127.92983350000009,0.995439200000021],[127.92778640000006,0.994046700000069],[127.92462080000007,0.994489700000031],[127.92457860000002,0.992865100000074],[127.9254016000001,0.991198300000065],[127.92683670000008,0.991704700000071],[127.93114190000006,0.98929940000005],[127.93373760000009,0.991810100000066],[127.92983350000009,0.995439200000021]]],[[[127.951452,1.024369900000067],[127.95245650000004,1.025393300000076],[127.951092,1.026644100000055],[127.951452,1.024369900000067]]],[[[127.73141150000004,0.759244],[127.736453,0.75571240000005],[127.7508974000001,0.757693700000061],[127.75759130000006,0.751368],[127.75857780000001,0.747239900000068],[127.75731040000005,0.74249930000002],[127.76725460000011,0.730948900000044],[127.765959,0.721595],[127.76727640000001,0.719462900000053],[127.76801620000003,0.707130100000029],[127.783,0.692341100000021],[127.78090620000012,0.684236300000066],[127.78215490000002,0.672275200000058],[127.785364,0.665646300000049],[127.7886059000001,0.662421900000027],[127.7879147000001,0.656086500000072],[127.79249630000004,0.646859200000051],[127.79205910000007,0.64263980000004],[127.79724230000011,0.640909700000066],[127.80254800000012,0.641292300000032],[127.80797770000004,0.645985200000041],[127.81669220000003,0.643847700000038],[127.81891460000008,0.640683400000057],[127.82655380000006,0.638547100000039],[127.82721320000007,0.635127300000022],[127.82548280000003,0.630434100000059],[127.8290204000001,0.622723600000029],[127.8433099,0.618178600000022],[127.84698880000008,0.619971],[127.85374160000003,0.617707400000029],[127.85713180000005,0.623037900000043],[127.86355670000012,0.625705],[127.86342650000006,0.63060280000002],[127.86717550000003,0.632661],[127.869394,0.631252800000027],[127.87251720000006,0.632836800000064],[127.87238900000011,0.631547200000057],[127.87514580000004,0.632174],[127.875956,0.630714500000067],[127.87985670000012,0.630727800000045],[127.880014,0.629732300000057],[127.88371230000007,0.631055200000048],[127.9054145,0.627357500000073],[127.91385950000006,0.628558200000043],[127.92271360000007,0.627877400000045],[127.92798550000009,0.625322700000027],[127.9361096,0.635164],[127.9400495000001,0.634039900000062],[127.940214,0.630714400000045],[127.945708,0.630005200000028],[127.94797520000009,0.628316700000028],[127.94864220000011,0.630003800000054],[127.95208040000011,0.630193900000052],[127.95304820000001,0.632791],[127.95148260000008,0.634318500000063],[127.95263640000007,0.635171500000069],[127.9561857000001,0.632482800000048],[127.96072020000008,0.636214100000075],[127.96418690000007,0.633189800000025],[127.97037120000005,0.637198800000021],[127.97092410000005,0.638911],[127.97794670000007,0.63766970000006],[127.98649630000011,0.645420100000024],[127.98313660000008,0.651612500000056],[127.98873070000002,0.650448400000073],[127.99201930000004,0.653740400000061],[127.99545000000012,0.653092700000059],[127.99542110000004,0.65673270000002],[128.001375,0.656651200000056],[128.00451650000002,0.655253300000027],[128.00919640000006,0.649860700000033],[128.01309170000002,0.651012500000036],[128.018359,0.650387900000055],[128.02439330000004,0.643537300000048],[128.02656580000007,0.645163800000034],[128.02705190000006,0.643297800000028],[128.02849560000004,0.64448950000002],[128.02936130000012,0.643186800000024],[128.03325070000005,0.644323100000065],[128.03503220000005,0.641949100000033],[128.03855220000003,0.644939200000067],[128.04463280000004,0.638017300000058],[128.0495697,0.638119300000028],[128.05696150000006,0.642843500000026],[128.06364570000005,0.640033500000072],[128.0659700000001,0.635401200000047],[128.065279,0.622664400000076],[128.0636548000001,0.620394800000042],[128.06596490000004,0.616019300000062],[128.08433850000006,0.614707900000042],[128.0911804000001,0.608926100000076],[128.09519440000008,0.602646800000059],[128.098759,0.604071800000042],[128.09998110000004,0.606629800000064],[128.1052403000001,0.605107700000076],[128.1067409000001,0.600298100000032],[128.1104305,0.59826570000007],[128.1169675000001,0.591137700000047],[128.12060930000007,0.594286700000055],[128.13495390000003,0.589088300000071],[128.14153750000003,0.591185400000029],[128.14476790000003,0.594656100000066],[128.152035,0.595315500000027],[128.16117150000002,0.589927],[128.16827740000008,0.589243200000055],[128.17228590000002,0.592730900000049],[128.17860640000004,0.589992500000051],[128.18244360000006,0.596496],[128.18535050000003,0.593866700000035],[128.1890548,0.596633800000063],[128.20212230000004,0.598039],[128.205623,0.601380400000039],[128.211065,0.600754400000028],[128.21606040000006,0.59806640000005],[128.21824780000009,0.594983100000036],[128.22688530000005,0.593625300000042],[128.237048,0.586601600000051],[128.240833,0.582409700000028],[128.24225190000004,0.577117300000054],[128.251075,0.569844200000034],[128.25694270000008,0.569532800000047],[128.26213730000006,0.570986900000037],[128.2641351000001,0.569968900000049],[128.2667573000001,0.566564300000039],[128.27064340000004,0.550193500000034],[128.2730461000001,0.548857600000019],[128.27883470000006,0.548244200000056],[128.28571060000002,0.553945],[128.31677390000004,0.55454450000002],[128.31629150000003,0.551998900000058],[128.31839760000003,0.54731090000007],[128.3262883000001,0.542498800000033],[128.32830690000003,0.539344300000039],[128.33732380000004,0.53723530000002],[128.33816850000005,0.529734400000052],[128.3416542000001,0.52323720000004],[128.34442060000003,0.520252400000061],[128.35012440000003,0.517534800000021],[128.3527858000001,0.513350800000069],[128.3584873000001,0.510593800000038],[128.36503360000006,0.512977200000023],[128.37018870000009,0.513121600000034],[128.37205690000008,0.511815700000056],[128.375263,0.512223600000027],[128.38230840000006,0.507442900000058],[128.38877450000007,0.508441700000049],[128.3927381000001,0.50682450000005],[128.39944990000004,0.509003500000063],[128.4027373,0.502341200000046],[128.40693910000005,0.505341800000053],[128.40977850000002,0.503027600000053],[128.4221457000001,0.504084600000056],[128.42731920000006,0.502068800000075],[128.43794350000007,0.504805100000056],[128.44159880000007,0.501318900000058],[128.44700020000005,0.501906800000029],[128.45137180000006,0.498899200000039],[128.455405,0.498453100000063],[128.4583278,0.496041400000024],[128.4570000000001,0.492473500000074],[128.45949430000007,0.491128],[128.4673716000001,0.495391200000029],[128.471146,0.493055500000025],[128.47351760000004,0.493787800000064],[128.48328630000003,0.490013800000042],[128.48505020000005,0.486426],[128.48789480000005,0.486006400000065],[128.48927930000002,0.484155200000032],[128.48772540000004,0.478999800000054],[128.4887744,0.472345500000074],[128.4959013,0.478099200000031],[128.4965936000001,0.481459200000074],[128.5009066,0.480195],[128.5043084,0.477114700000072],[128.50154540000005,0.469149600000037],[128.50304690000007,0.462318100000061],[128.50227350000011,0.455165800000032],[128.50464460000012,0.451691100000062],[128.50854490000006,0.450261500000067],[128.509674,0.442910600000062],[128.5140424000001,0.442613300000062],[128.51984620000007,0.439575800000057],[128.52361740000003,0.440389200000027],[128.52400750000004,0.437827900000059],[128.53315290000012,0.431965300000059],[128.53910310000003,0.43158550000004],[128.54440210000007,0.421803900000043],[128.54638590000002,0.421610300000054],[128.54823840000006,0.423455600000068],[128.55341970000006,0.420810600000038],[128.55890570000008,0.422234400000036],[128.5601239,0.417743300000041],[128.56202310000003,0.415934400000026],[128.56647850000002,0.41849110000004],[128.57252690000007,0.418789200000049],[128.57704740000008,0.421520300000054],[128.57902920000004,0.424317400000064],[128.578739,0.427353700000026],[128.5807374000001,0.430117200000041],[128.57984340000007,0.433059100000037],[128.58121810000011,0.434483700000044],[128.5854157000001,0.433924400000024],[128.59473890000004,0.438724100000059],[128.596193,0.438788],[128.5970258000001,0.436796100000038],[128.60475710000003,0.438178500000049],[128.6210675000001,0.443366800000035],[128.6236735000001,0.449131900000054],[128.62124110000002,0.450979],[128.61897550000003,0.457044],[128.61842950000005,0.468451500000072],[128.6242085,0.476425500000062],[128.62838650000003,0.478679500000055],[128.62843490000012,0.481635900000072],[128.62612090000005,0.485476800000072],[128.633724,0.486402800000064],[128.63368860000003,0.489481100000035],[128.6387691000001,0.492497800000024],[128.6396036000001,0.503722900000071],[128.64444990000004,0.512360100000024],[128.65068530000008,0.514159300000074],[128.65708870000003,0.50998050000004],[128.66803190000007,0.506022800000039],[128.6705611000001,0.506198500000039],[128.676266,0.511067600000047],[128.67912350000006,0.506074100000035],[128.6878475000001,0.519747600000073],[128.68971790000012,0.529205],[128.6839851000001,0.543707700000027],[128.67978430000005,0.547107600000061],[128.680395,0.548477100000071],[128.67887760000008,0.549909500000069],[128.66764310000008,0.549179200000026],[128.667621,0.546261900000047],[128.66373120000003,0.548361400000033],[128.6611454,0.545134700000062],[128.65344330000005,0.544051800000034],[128.64711760000012,0.547627200000022],[128.64790340000002,0.55108720000004],[128.64596910000012,0.553076200000021],[128.6412242,0.554665],[128.63725580000005,0.553285],[128.63032210000006,0.556682800000033],[128.62292690000004,0.558193200000062],[128.62078710000003,0.555429300000071],[128.61659670000006,0.555088400000045],[128.6130985000001,0.555633900000032],[128.60734,0.559389],[128.58466180000005,0.561998700000061],[128.5716592000001,0.561676300000045],[128.55777430000012,0.568928700000072],[128.5476424000001,0.577185400000076],[128.53376730000002,0.583972700000061],[128.5232916000001,0.591685900000073],[128.5186222000001,0.588894700000026],[128.51244540000005,0.592584200000033],[128.498726,0.595215300000064],[128.4957075000001,0.594372700000065],[128.49108450000006,0.596582700000056],[128.4868537000001,0.595911200000046],[128.48095580000006,0.597924],[128.47622950000004,0.600370500000054],[128.4710262000001,0.607027200000061],[128.45215630000007,0.619519300000036],[128.44616670000005,0.625484400000062],[128.4342187000001,0.63227790000002],[128.42675950000012,0.633503800000028],[128.4248891000001,0.632234100000062],[128.4114498,0.636055500000055],[128.413296,0.634797800000058],[128.41247310000006,0.633339700000022],[128.4021265,0.639989600000035],[128.39692330000003,0.640707600000042],[128.3887151,0.644603800000027],[128.382007,0.644075200000032],[128.38219550000008,0.641035100000067],[128.38484210000001,0.637954100000059],[128.3837364000001,0.638812600000051],[128.3818407000001,0.636665400000027],[128.38513620000003,0.636260700000037],[128.38435990000005,0.634214500000041],[128.38145440000005,0.636448800000039],[128.3795725000001,0.635072900000068],[128.37746230000005,0.640390800000034],[128.37549810000007,0.639826400000061],[128.370941,0.643014300000061],[128.36688980000008,0.643755100000021],[128.36525480000012,0.639051300000062],[128.36022660000003,0.64138250000002],[128.35523420000004,0.64077130000004],[128.35517530000004,0.642182400000024],[128.3486825000001,0.64467540000004],[128.34980140000005,0.64731340000003],[128.3613590000001,0.650033700000051],[128.3633115,0.652044700000033],[128.35718010000005,0.653151900000069],[128.3555398000001,0.65568120000006],[128.3482550000001,0.656063],[128.3462823000001,0.65432050000004],[128.33776530000011,0.658753200000035],[128.33640720000005,0.657847],[128.33472210000002,0.65884920000002],[128.33258630000012,0.657919],[128.33139290000008,0.654635300000052],[128.3292484000001,0.655178800000044],[128.3284232000001,0.653387500000065],[128.32637570000009,0.654219],[128.3257228000001,0.651658400000031],[128.324443,0.651541100000031],[128.3213832,0.65662610000004],[128.3196819000001,0.655368800000076],[128.31229730000007,0.660300300000074],[128.3114965000001,0.664187200000072],[128.2956154000001,0.694629600000042],[128.29529420000006,0.701444800000047],[128.29363050000006,0.700431900000069],[128.28988130000005,0.702321400000073],[128.28635070000007,0.706664200000034],[128.28444450000006,0.706879600000036],[128.28414610000004,0.709117300000059],[128.2797772,0.71241260000005],[128.28102990000002,0.712581600000021],[128.279783,0.714989600000024],[128.2714721000001,0.723448800000028],[128.26023210000005,0.738410300000055],[128.2580617000001,0.738356600000031],[128.2541665000001,0.741506],[128.24969010000007,0.738827600000036],[128.2478843,0.734627100000068],[128.24796720000006,0.731030200000021],[128.25051990000009,0.730731900000023],[128.248912,0.728577],[128.24232640000002,0.733831500000065],[128.23866920000012,0.735054300000058],[128.2340620000001,0.744215700000041],[128.2223262000001,0.754542900000047],[128.21836370000005,0.754838200000052],[128.21844580000004,0.760072300000047],[128.2153631000001,0.761169600000073],[128.2130558,0.764430600000026],[128.2094337000001,0.778437900000029],[128.20268810000005,0.783541600000035],[128.20349110000006,0.785442900000021],[128.198318,0.78961460000005],[128.2032564000001,0.795678500000065],[128.20383890000005,0.79918170000002],[128.20227920000002,0.801378300000067],[128.20576330000006,0.807695800000033],[128.21627550000005,0.807760400000063],[128.2197642000001,0.812416600000063],[128.22334060000003,0.814354800000046],[128.2286477,0.813804300000072],[128.2398158000001,0.816113500000029],[128.2416684000001,0.817989],[128.24086620000003,0.82014920000006],[128.2430538000001,0.822652700000049],[128.2432196000001,0.826103900000021],[128.24450690000003,0.825282600000037],[128.2461555000001,0.826930200000049],[128.2481931000001,0.826770300000021],[128.25123170000006,0.825052600000049],[128.25121390000004,0.826586700000064],[128.2470499000001,0.827907500000038],[128.2459778000001,0.832207700000026],[128.246813,0.83774],[128.24941920000003,0.841412300000059],[128.2575776000001,0.837314],[128.26077610000004,0.837882700000023],[128.26396880000004,0.834533200000067],[128.2683972000001,0.833918100000062],[128.27267370000004,0.827195300000028],[128.28221,0.820176400000037],[128.2864628000001,0.819980900000076],[128.28805610000006,0.822462700000074],[128.2918588000001,0.823499300000037],[128.29519940000012,0.819110200000068],[128.2939023,0.816711400000031],[128.30329640000002,0.817457700000034],[128.3118257000001,0.81582880000002],[128.31366780000008,0.821870400000023],[128.3129748,0.827935700000069],[128.3096164000001,0.832295200000033],[128.30807040000002,0.82983710000002],[128.30421450000006,0.829523100000074],[128.302633,0.830820300000028],[128.29996760000006,0.828154900000072],[128.29543640000009,0.831969400000048],[128.29499210000006,0.834356400000047],[128.30180970000004,0.838970600000039],[128.30122330000006,0.841375300000038],[128.2983624000001,0.8441],[128.29265250000003,0.84413550000005],[128.2901885000001,0.848566100000028],[128.28177170000004,0.852416100000028],[128.28095430000008,0.857527800000071],[128.2824587,0.86152],[128.2796926000001,0.865654300000074],[128.28772890000005,0.876055100000031],[128.2969538000001,0.881661800000074],[128.2987604000001,0.88800260000005],[128.30357950000007,0.893060900000023],[128.31704980000006,0.897391500000026],[128.3252430000001,0.904775100000052],[128.33033690000002,0.906887400000073],[128.33465740000008,0.911874500000067],[128.34191410000005,0.911324900000068],[128.34735920000003,0.908744900000045],[128.3562495000001,0.913248500000066],[128.36320410000008,0.912341300000037],[128.3727712000001,0.913935800000047],[128.384781,0.910896],[128.3920472000001,0.920518900000047],[128.39565090000008,0.921766700000035],[128.40527910000003,0.920301100000074],[128.4112086,0.928408800000057],[128.4159823000001,0.931370300000026],[128.43070310000007,0.928840300000047],[128.44166460000008,0.929608700000074],[128.4469825000001,0.932478900000035],[128.4542087000001,0.94271260000005],[128.46217790000003,0.948758200000043],[128.48416310000005,0.959239400000058],[128.49176580000005,0.960874800000056],[128.50456210000004,0.971549500000037],[128.51395360000004,0.972205700000075],[128.52268560000005,0.96857650000004],[128.53340360000004,0.970820100000026],[128.53944810000007,0.975999100000024],[128.54638090000003,0.988821400000063],[128.55221130000007,0.996015],[128.57449070000007,1.00955010000007],[128.59150640000007,1.025409],[128.60151310000003,1.032061200000044],[128.61026470000002,1.042427300000043],[128.61284100000012,1.043041800000026],[128.6137837000001,1.041377700000055],[128.6161615000001,1.04514480000006],[128.6196423,1.047060700000031],[128.62236740000003,1.04537],[128.6266955000001,1.046576],[128.6299358000001,1.041667800000027],[128.6335617000001,1.044713500000057],[128.644504,1.048732400000063],[128.6443934,1.050381200000061],[128.64820470000006,1.055318],[128.66014660000008,1.056162400000062],[128.6710607000001,1.062151700000072],[128.67615100000012,1.061810800000046],[128.6833908000001,1.067884100000072],[128.6966596000001,1.063205900000071],[128.7008320000001,1.066866400000038],[128.69807060000005,1.07552510000005],[128.6956189000001,1.075441700000056],[128.6932938000001,1.078219100000069],[128.68832710000004,1.094720700000039],[128.68905080000002,1.105287500000031],[128.692172,1.109711400000037],[128.69488610000008,1.117464600000062],[128.69470740000008,1.138925],[128.6965937000001,1.140960600000028],[128.69560300000012,1.148492100000055],[128.69198720000009,1.15387880000003],[128.69386670000006,1.160216200000036],[128.69180370000004,1.16252],[128.69188810000003,1.173701600000072],[128.69011970000008,1.177492900000061],[128.69347630000004,1.184463],[128.6910008000001,1.189172600000063],[128.69097980000004,1.198481800000025],[128.6944046000001,1.201235200000042],[128.69442030000005,1.20706720000004],[128.6980129000001,1.214740100000029],[128.70238160000008,1.234454600000049],[128.70498820000012,1.238440500000024],[128.70988140000009,1.241078500000071],[128.71063660000004,1.244304],[128.719403,1.247735700000021],[128.71885050000003,1.250520300000062],[128.72064060000002,1.256089700000075],[128.71704750000004,1.258371600000032],[128.71113040000012,1.267717400000038],[128.7115152,1.272334100000023],[128.70933720000005,1.282807600000069],[128.71046300000012,1.289534700000047],[128.71309930000007,1.294233900000052],[128.72067950000007,1.301142800000036],[128.7237844000001,1.302030900000034],[128.73004990000004,1.300289700000064],[128.73444840000002,1.302737200000024],[128.73874200000012,1.308597100000043],[128.74028740000006,1.309569100000033],[128.74072090000004,1.308184600000061],[128.741679,1.310023700000045],[128.73819650000007,1.315128400000049],[128.7401023000001,1.318188700000064],[128.74228030000006,1.318051400000058],[128.74269990000005,1.323030300000028],[128.74672080000005,1.331239900000071],[128.7442453000001,1.335330700000043],[128.747719,1.346214],[128.7460112000001,1.355468600000052],[128.74225510000008,1.363888],[128.742092,1.370968600000026],[128.74654170000008,1.378983800000071],[128.7526120000001,1.381193800000062],[128.75499890000003,1.38384590000004],[128.75858820000008,1.393658800000026],[128.7557945000001,1.399198600000034],[128.750343,1.400171],[128.74371280000003,1.397135800000058],[128.73631640000008,1.39875660000007],[128.7218332000001,1.408370700000035],[128.71231510000007,1.418233200000032],[128.69495690000008,1.443026300000042],[128.68681070000002,1.460167100000035],[128.683974,1.463218500000039],[128.6840837000001,1.465093500000023],[128.6858383000001,1.463939],[128.68622140000002,1.46942],[128.68011050000007,1.49534170000004],[128.68278420000001,1.503941500000053],[128.68700590000003,1.508403200000032],[128.696792,1.504631600000039],[128.6958787000001,1.507957],[128.6971374000001,1.515800500000068],[128.7002222000001,1.520669100000021],[128.69730490000006,1.521133300000031],[128.69655350000005,1.524581],[128.69774690000008,1.526304800000048],[128.69618040000012,1.531714100000045],[128.69695130000002,1.536758500000076],[128.70221130000004,1.535587100000043],[128.70906250000007,1.53854860000007],[128.71220080000012,1.536537500000065],[128.7176376000001,1.529244200000051],[128.72203560000003,1.527277300000037],[128.73153890000003,1.53446],[128.73114110000006,1.540338800000029],[128.72966040000006,1.541863800000044],[128.72758290000002,1.54078080000005],[128.72443690000011,1.548583200000053],[128.723627,1.557534700000076],[128.7262469000001,1.564141500000062],[128.72303020000004,1.572407],[128.717947,1.574771800000065],[128.69984650000004,1.578219500000046],[128.698653,1.582330200000058],[128.68404440000006,1.581976600000075],[128.67666280000003,1.588606800000036],[128.66985580000005,1.589910800000041],[128.64276030000008,1.578993],[128.64008610000008,1.578904600000044],[128.63473770000007,1.583103700000038],[128.626693,1.582551200000069],[128.61347680000006,1.575081200000056],[128.61453760000006,1.57105880000006],[128.61305690000006,1.569312900000057],[128.60810630000003,1.572937400000058],[128.60616140000002,1.570970400000022],[128.5996417,1.568959300000074],[128.592017,1.568981400000041],[128.5876852,1.571080900000027],[128.575795,1.569357100000047],[128.56120850000002,1.569843300000059],[128.55327440000008,1.566903900000057],[128.54279860000008,1.56031790000003],[128.54321850000008,1.549245400000075],[128.5381354000001,1.543013],[128.52569260000007,1.536692200000061],[128.50695120000012,1.531631100000027],[128.50509480000005,1.538526500000046],[128.50323830000002,1.540537700000073],[128.499879,1.539653700000031],[128.4999232,1.541598500000021],[128.49731530000008,1.543278200000032],[128.49762470000007,1.544759],[128.4937129000001,1.549466400000028],[128.48230890000002,1.548118300000056],[128.4778887000001,1.549223300000051],[128.47645220000004,1.548118300000056],[128.47614280000005,1.549466400000028],[128.4727835000001,1.549687400000039],[128.4726730000001,1.55158810000006],[128.4673467,1.550748300000066],[128.456893,1.542769900000053],[128.4498208000001,1.541686900000059],[128.4417982000001,1.538062400000058],[128.44142250000004,1.536449100000027],[128.44029540000008,1.537465700000041],[128.43600780000008,1.536139700000035],[128.42380820000005,1.528735900000072],[128.4205373000001,1.5292],[128.41516680000007,1.526835300000073],[128.4122496000001,1.521067],[128.40809460000003,1.521398500000032],[128.3989891000001,1.514480900000024],[128.39790620000008,1.515409200000022],[128.39361860000008,1.513243300000056],[128.38256830000012,1.50469030000005],[128.3697800000001,1.500689200000068],[128.36633080000001,1.497202100000038],[128.35928380000007,1.484035600000027],[128.35941910000008,1.475891200000035],[128.3536831,1.471696700000052],[128.35186380000005,1.467931700000065],[128.34600150000006,1.464899400000036],[128.34731540000007,1.462852700000042],[128.34511710000004,1.459972100000073],[128.32975380000005,1.454160300000069],[128.32098560000009,1.448222200000032],[128.31674050000004,1.446883],[128.31060020000007,1.439782500000035],[128.30309550000004,1.437154600000042],[128.29849660000002,1.433162100000061],[128.29281120000007,1.433111600000075],[128.27931780000006,1.429371800000069],[128.27120660000003,1.425505800000053],[128.26686040000004,1.42517730000003],[128.25675300000012,1.419921400000021],[128.2504106,1.421715500000062],[128.2443714000001,1.420022500000073],[128.22369980000008,1.402194300000076],[128.21928490000005,1.393988700000023],[128.20158920000006,1.39362680000005],[128.1922929000001,1.389801300000045],[128.1710697000001,1.370943100000034],[128.16670610000006,1.366437400000052],[128.166462,1.363081500000021],[128.1639060000001,1.362429100000043],[128.1564866000001,1.353886800000055],[128.14839910000012,1.340128100000072],[128.13813690000006,1.31336390000007],[128.12744830000008,1.302476400000046],[128.11987240000008,1.290338],[128.11069050000003,1.287040400000024],[128.1046497000001,1.289513600000021],[128.09390430000008,1.28499370000003],[128.09334990000002,1.280061600000067],[128.0906778000001,1.275385300000039],[128.08658430000003,1.261598200000037],[128.08651350000002,1.253263700000048],[128.090493,1.24412970000003],[128.10050310000008,1.238637],[128.10395330000006,1.239197600000068],[128.11100320000003,1.248635400000069],[128.11855060000005,1.247413],[128.13046150000002,1.251762400000075],[128.13582010000005,1.251065900000071],[128.146043,1.253571400000055],[128.15728250000006,1.251691300000061],[128.16257,1.247683100000074],[128.163437,1.248806],[128.17138240000008,1.247711500000037],[128.17967640000006,1.242767600000036],[128.18608240000003,1.231980300000032],[128.18530060000012,1.230530500000043],[128.18942030000005,1.223295800000074],[128.18903880000005,1.221362700000043],[128.19792350000012,1.21034880000002],[128.199959,1.205565200000024],[128.19898200000011,1.204506700000024],[128.2009429000001,1.199967500000071],[128.20059680000008,1.195889600000044],[128.1949800000001,1.189481700000044],[128.1950653,1.186283700000047],[128.1985774000001,1.181569300000035],[128.1946389000001,1.164693300000067],[128.19023270000002,1.16176530000007],[128.18996270000002,1.158680900000036],[128.18088020000005,1.155966100000057],[128.17822230000002,1.150707100000034],[128.17556430000002,1.136848900000075],[128.172042,1.133963600000072],[128.17215570000008,1.129230500000062],[128.1705353000001,1.129230500000062],[128.1660723000001,1.124824300000057],[128.15019310000002,1.124341],[128.14447930000006,1.119792600000039],[128.13811160000012,1.12172570000007],[128.13460080000004,1.125293300000067],[128.13335010000003,1.124824200000035],[128.12875910000002,1.127865900000074],[128.1091017000001,1.120730700000024],[128.10681710000006,1.120964500000071],[128.1042407000001,1.124156200000073],[128.0999055000001,1.125904500000047],[128.0892596000001,1.126657800000032],[128.0879235000001,1.124653700000067],[128.09014260000004,1.122912500000041],[128.094364,1.123861300000044],[128.0992251,1.121707900000047],[128.0948757000001,1.121100300000023],[128.0899720000001,1.122592700000041],[128.0862489000001,1.120084800000029],[128.08313470000007,1.12407330000002],[128.07748720000006,1.123959600000035],[128.06888330000004,1.123031],[128.06211760000008,1.116379],[128.0534189000001,1.116511700000046],[128.05110680000007,1.114843900000039],[128.0443130000001,1.113857400000029],[128.03472110000007,1.114253900000051],[128.032705,1.116265300000066],[128.02719020000006,1.112986700000022],[128.0223386,1.112001200000066],[128.02250920000006,1.108400500000073],[128.018205,1.104144200000064],[128.010658,1.102247200000022],[128.00382490000004,1.096298800000056],[127.9813319000001,1.08738690000007],[127.98156580000011,1.07978380000003],[127.9757667,1.069720600000039],[127.97713120000003,1.061533600000075],[127.966689,1.050712400000066],[127.96468010000001,1.046258800000032],[127.96178060000011,1.045235400000024],[127.96363780000001,1.038640300000054],[127.96052980000002,1.034698400000025],[127.95562130000008,1.03240530000005],[127.95533710000007,1.027269500000045],[127.9523617000001,1.01894980000003],[127.94769970000004,1.017130500000064],[127.94616460000009,1.01260110000004],[127.94324610000001,1.012203100000022],[127.94057390000012,1.005627],[127.93513530000007,1.006581600000061],[127.93245690000003,1.005086600000027],[127.93531120000011,0.997075400000028],[127.9378137000001,0.996395800000073],[127.93810950000011,0.999529900000027],[127.93975650000004,1.00041740000006],[127.940508,0.996667700000046],[127.9452811000001,0.994245200000023],[127.94258680000007,0.99287],[127.9397325000001,0.99428510000007],[127.93865320000009,0.992965900000058],[127.93450370000005,0.992918],[127.9369822000001,0.985282600000062],[127.93631860000005,0.977543300000036],[127.92903500000011,0.966686],[127.92478540000002,0.965581800000052],[127.92927490000011,0.943324200000063],[127.92973060000008,0.932322900000031],[127.93117770000003,0.929460600000027],[127.93065,0.922201100000052],[127.9326665000001,0.917102800000066],[127.93023210000001,0.897553900000048],[127.93271940000011,0.894952800000056],[127.9340413000001,0.887178],[127.93094280000003,0.876787900000068],[127.92714770000009,0.873604],[127.9245826,0.874863900000037],[127.9220481000001,0.871314100000063],[127.91494050000006,0.866117300000042],[127.91039120000005,0.858449900000039],[127.907481,0.856171300000028],[127.902532,0.85393270000003],[127.89258610000002,0.854404400000021],[127.88886840000009,0.852333700000031],[127.887765,0.850390800000071],[127.88767710000002,0.839229600000067],[127.88147290000006,0.827668700000061],[127.87096730000007,0.826373500000045],[127.86775320000004,0.820521],[127.8604137000001,0.817874700000061],[127.85389310000005,0.813062800000068],[127.85211210000011,0.810124500000029],[127.843919,0.804881],[127.83153740000012,0.805184200000042],[127.82933910000008,0.801924600000063],[127.82256710000001,0.801495],[127.81934750000005,0.79889380000003],[127.80000230000007,0.797376200000031],[127.79767890000005,0.795859800000073],[127.77968880000003,0.807336500000019],[127.771426,0.804721200000074],[127.76079740000011,0.80542870000005],[127.75397490000012,0.807500700000048],[127.7543462000001,0.810054100000059],[127.75187760000006,0.81465170000007],[127.7486685,0.812908200000038],[127.74081,0.819528600000069],[127.73611930000004,0.821360600000048],[127.7342291000001,0.824886900000024],[127.73546110000007,0.827753600000051],[127.73838420000004,0.829307500000027],[127.73610960000008,0.831795700000043],[127.73642410000002,0.836449],[127.73545750000005,0.837529300000028],[127.73137820000011,0.837122500000021],[127.7287487000001,0.841267400000049],[127.72850710000012,0.844337500000051],[127.72684410000011,0.844351800000027],[127.7249964,0.842049200000019],[127.72370290000003,0.842575100000033],[127.72043020000001,0.846316900000033],[127.72029170000008,0.850108300000045],[127.718515,0.850534700000026],[127.71612710000011,0.848715300000038],[127.71521740000003,0.85052040000005],[127.70880410000007,0.851602200000059],[127.70194990000005,0.862101900000027],[127.70271620000005,0.86584890000006],[127.70058990000007,0.868028],[127.702615,0.868839800000046],[127.70064890000003,0.875150700000063],[127.7039582000001,0.875514800000076],[127.69921110000007,0.878369300000031],[127.69389720000004,0.878897100000074],[127.69179850000012,0.875329],[127.69098250000002,0.866654100000062],[127.69632610000008,0.857273300000031],[127.69528720000005,0.852209300000027],[127.69845250000003,0.842191300000025],[127.69676160000006,0.834144200000026],[127.7067674000001,0.829074100000071],[127.7093665000001,0.821201400000064],[127.71463710000012,0.809548200000052],[127.72166360000006,0.803162100000065],[127.71917050000002,0.790552200000036],[127.71985570000004,0.786213500000031],[127.72254,0.781800800000042],[127.728283,0.77734],[127.7350963,0.774614300000053],[127.7310543000001,0.762152300000025],[127.73141150000004,0.759244]]]]},"properties":{"shapeName":"Halmahera Timur","shapeISO":"","shapeID":"22746128B26808422939079","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[127.66231620000008,0.87799560000002],[127.661378,0.878313500000047],[127.66171630000008,0.876780500000052],[127.66290590000006,0.877093200000047],[127.66231620000008,0.87799560000002]]],[[[127.88430330000006,1.150645700000041],[127.88562500000012,1.146680700000047],[127.88911650000011,1.147908600000051],[127.88858730000004,1.149770700000033],[127.88430330000006,1.150645700000041]]],[[[127.88228890000005,1.152113200000031],[127.88045680000005,1.152970100000061],[127.8763368000001,1.150791600000048],[127.88066640000011,1.147865700000068],[127.88261060000002,1.149086100000034],[127.88228890000005,1.152113200000031]]],[[[128.0241883000001,1.299756700000046],[128.02099940000005,1.29894470000005],[128.01390250000009,1.291175400000043],[128.00766980000003,1.287790100000052],[128.00647170000002,1.281279700000027],[128.0194941000001,1.283282500000041],[128.0218768000001,1.288704500000051],[128.02802170000007,1.295492400000057],[128.02751960000012,1.298162800000057],[128.0241883000001,1.299756700000046]]],[[[128.05346120000002,1.550335800000028],[128.05454340000006,1.552366900000038],[128.04893130000005,1.555258800000047],[128.05346120000002,1.550335800000028]]],[[[128.04716870000004,1.557398200000023],[128.0425646000001,1.562336500000072],[128.04073290000008,1.562641700000029],[128.03970120000008,1.560155100000031],[128.04106960000001,1.558081800000025],[128.04814840000006,1.555742900000041],[128.04716870000004,1.557398200000023]]],[[[128.05871920000004,1.57195930000006],[128.05580040000007,1.574039400000061],[128.05195060000005,1.581048500000065],[128.04931310000006,1.581964800000037],[128.04685640000002,1.575329300000021],[128.04953580000006,1.566446900000074],[128.05232180000007,1.562417700000026],[128.05082490000007,1.55672670000007],[128.05305510000005,1.555125500000031],[128.05714160000002,1.55476630000004],[128.06737280000004,1.564713600000061],[128.0666394000001,1.566883500000074],[128.05871920000004,1.57195930000006]]],[[[128.02379330000008,1.592916700000046],[128.02127530000007,1.591553100000056],[128.02350080000008,1.588600400000075],[128.02504020000003,1.590822700000047],[128.02379330000008,1.592916700000046]]],[[[128.02005670000005,1.593965400000059],[128.0209244,1.595616700000051],[128.0192168000001,1.599940900000036],[128.0179991000001,1.60003880000005],[128.01743910000005,1.597858400000064],[128.02005670000005,1.593965400000059]]],[[[128.05035740000005,1.662334],[128.04880830000002,1.666970700000036],[128.04756040000007,1.664915400000041],[128.04938070000003,1.662502700000061],[128.04687810000007,1.661726900000076],[128.04667530000006,1.658947700000056],[128.04364150000004,1.657548600000041],[128.04985350000004,1.656276100000071],[128.0513998,1.661831200000051],[128.05035740000005,1.662334]]],[[[128.02294130000007,1.666664500000024],[128.01867460000005,1.66612740000005],[128.0204877000001,1.664599700000053],[128.02294130000007,1.666664500000024]]],[[[128.0518006000001,1.677928700000052],[128.04802440000003,1.673253100000068],[128.05178640000008,1.670040800000038],[128.051251,1.665643500000044],[128.0543348000001,1.666121800000042],[128.05626930000005,1.669505400000048],[128.05492090000007,1.676407100000063],[128.0518006000001,1.677928700000052]]],[[[128.0353966,1.68657330000002],[128.03500630000008,1.68815150000006],[128.03147050000007,1.684631600000046],[128.0344401000001,1.68211180000003],[128.036235,1.685358500000063],[128.0353966,1.68657330000002]]],[[[128.0693142,1.698881200000073],[128.06853550000005,1.700148700000057],[128.06725770000003,1.699040900000057],[128.0693142,1.698881200000073]]],[[[128.02619920000006,1.73242410000006],[128.02271050000002,1.733251400000029],[128.01937770000006,1.73052210000003],[128.0233746,1.729578900000035],[128.02140380000003,1.728663500000039],[128.02148950000003,1.726842600000055],[128.02604850000012,1.725822200000039],[128.0283194000001,1.72716390000005],[128.0293958000001,1.730426600000044],[128.02619920000006,1.73242410000006]]],[[[128.05154140000002,1.735234500000047],[128.04876020000006,1.735521200000051],[128.04820160000008,1.732997300000022],[128.053327,1.72426710000002],[128.05460470000003,1.725973200000055],[128.051007,1.733133],[128.05154140000002,1.735234500000047]]],[[[128.0726687,1.729026200000021],[128.07154560000004,1.734784500000046],[128.07306490000008,1.742118100000027],[128.07037490000005,1.744673500000033],[128.06911860000002,1.742855600000041],[128.063741,1.741551700000059],[128.0620563000001,1.734660800000029],[128.0653400000001,1.726799],[128.06729110000003,1.728064900000049],[128.06699060000005,1.717771400000061],[128.069829,1.714761800000076],[128.07488480000006,1.717529],[128.0726687,1.729026200000021]]],[[[128.04012490000002,1.754426800000033],[128.03838310000003,1.754612400000042],[128.03824040000006,1.748851700000046],[128.0358205000001,1.743969],[128.040489,1.743041100000028],[128.04268050000007,1.74440450000003],[128.04289460000007,1.746296200000074],[128.0385973000001,1.746374700000047],[128.0411243000001,1.749073],[128.04651380000007,1.746867200000054],[128.04612120000002,1.74482560000007],[128.0470491000001,1.745311100000038],[128.04860530000008,1.74210590000007],[128.0505041,1.74252],[128.05148210000004,1.74071390000006],[128.0563433000001,1.741827500000056],[128.04970630000003,1.752902],[128.04012490000002,1.754426800000033]]],[[[128.0549344000001,1.75978230000004],[128.05277940000008,1.75738640000003],[128.0549949000001,1.758256200000062],[128.0549344000001,1.75978230000004]]],[[[128.0266885000001,1.75182140000004],[128.02514730000007,1.761258400000031],[128.02266310000005,1.755133700000044],[128.0266885000001,1.75182140000004]]],[[[127.98138910000011,1.774475],[127.97934110000006,1.773927900000047],[127.980067,1.771449],[127.98488710000004,1.772617700000069],[127.98138910000011,1.774475]]],[[[127.97474910000005,1.775433200000066],[127.97320960000002,1.776574500000038],[127.9706675000001,1.774797300000046],[127.9718286000001,1.77269380000007],[127.97474910000005,1.775433200000066]]],[[[128.00873660000002,1.787297600000045],[127.99331410000002,1.802505200000041],[127.99583870000004,1.791031300000043],[127.99923930000011,1.786465],[128.00095950000002,1.786719100000028],[128.00324630000011,1.784035200000062],[128.0043687000001,1.776726],[128.0107392000001,1.769314400000042],[128.01839540000003,1.767758800000024],[128.019471,1.771744200000057],[128.00873660000002,1.787297600000045]]],[[[127.72097470000006,1.95593290000005],[127.72176920000004,1.958504700000049],[127.71814720000009,1.956121400000029],[127.72097470000006,1.95593290000005]]],[[[127.77436810000006,2.107555900000023],[127.77507090000006,2.10861790000007],[127.77361740000003,2.10905710000003],[127.77436810000006,2.107555900000023]]],[[[127.78970190000007,2.123297700000023],[127.78893030000006,2.124538500000028],[127.786977,2.12277210000002],[127.78657770000007,2.12001],[127.79034410000008,2.119767200000069],[127.78970190000007,2.123297700000023]]],[[[127.77427560000001,2.128677400000072],[127.76662920000001,2.122210100000075],[127.76790670000003,2.120697900000039],[127.76716090000002,2.11484820000004],[127.77149280000003,2.113849900000048],[127.77483,2.114716],[127.77583110000012,2.109249800000043],[127.77688830000011,2.109235200000057],[127.7776960000001,2.112186100000031],[127.78026050000005,2.105723900000044],[127.781323,2.108442400000058],[127.77934060000007,2.111716200000046],[127.78291160000003,2.108561300000076],[127.78274380000005,2.110615400000029],[127.78437910000002,2.108729],[127.78272290000007,2.104599800000074],[127.78421140000012,2.103992],[127.78876070000001,2.107222600000057],[127.78530870000009,2.110381100000041],[127.78713850000008,2.113380300000074],[127.78361440000003,2.117344200000048],[127.78598320000003,2.121800800000074],[127.78284220000012,2.121735900000033],[127.78267660000006,2.123615800000039],[127.7780484000001,2.126218400000027],[127.77716790000011,2.128259200000059],[127.77427560000001,2.128677400000072]]],[[[127.72262690000002,2.193186300000036],[127.72137410000005,2.194878800000026],[127.72104910000007,2.193172700000048],[127.72006720000002,2.194100200000037],[127.72297460000004,2.189452900000049],[127.72230490000004,2.18634830000002],[127.72549650000008,2.181663600000036],[127.72822070000007,2.179625900000076],[127.729338,2.180445100000043],[127.7324278000001,2.175967],[127.73638560000006,2.176738900000032],[127.7359454000001,2.173884200000032],[127.73770730000001,2.174579900000026],[127.74197110000011,2.170556400000066],[127.7430816000001,2.172479100000032],[127.74618550000002,2.169647700000041],[127.74793250000005,2.170351800000049],[127.74937490000002,2.168293800000072],[127.753071,2.168523100000073],[127.75378940000007,2.166666],[127.75977360000002,2.164945300000056],[127.76195550000011,2.159626800000069],[127.770591,2.152043800000058],[127.77205360000005,2.152483800000027],[127.77317260000007,2.158445700000073],[127.777834,2.159462900000051],[127.77790070000003,2.161862500000041],[127.77505660000008,2.163209800000061],[127.77550870000005,2.167182700000069],[127.76954610000007,2.169763800000055],[127.76738390000003,2.176087],[127.76344630000006,2.181774],[127.76441440000008,2.184342900000047],[127.759114,2.190346100000056],[127.75918800000011,2.185140700000034],[127.75767120000012,2.183685100000048],[127.7535663000001,2.187282500000038],[127.75360020000005,2.189797200000044],[127.74466160000009,2.191801700000042],[127.74121730000002,2.183558800000071],[127.74009990000002,2.185515200000054],[127.74078090000012,2.188739600000076],[127.73313320000011,2.189749200000051],[127.7247847000001,2.193679900000063],[127.72262690000002,2.193186300000036]]],[[[127.71378160000006,2.203662700000052],[127.71236380000005,2.205143100000043],[127.71226600000011,2.203048200000069],[127.71378160000006,2.203662700000052]]],[[[127.7663060000001,2.210581500000046],[127.7639041000001,2.212126100000035],[127.76357810000002,2.208723200000065],[127.75810720000004,2.204748400000028],[127.75554840000007,2.205448300000057],[127.75477590000003,2.204338100000029],[127.761733,2.202175400000044],[127.76613020000002,2.198058100000026],[127.77222880000011,2.199462500000038],[127.77447530000006,2.203145300000074],[127.77365450000002,2.20811690000005],[127.771514,2.210159800000042],[127.7663060000001,2.210581500000046]]],[[[127.7093665000001,0.821201400000064],[127.7067674000001,0.829074100000071],[127.69676160000006,0.834144200000026],[127.69845250000003,0.842191300000025],[127.69528720000005,0.852209300000027],[127.69632610000008,0.857273300000031],[127.69098250000002,0.866654100000062],[127.69179850000012,0.875329],[127.69389720000004,0.878897100000074],[127.69005020000009,0.880037100000038],[127.68709750000005,0.87761080000007],[127.68258680000008,0.879104200000029],[127.68088490000002,0.876807700000029],[127.67841420000002,0.878724900000066],[127.67683540000007,0.882917900000052],[127.6744159000001,0.883481800000027],[127.67385210000009,0.881041800000048],[127.66934120000008,0.880549700000074],[127.66694960000007,0.874277800000073],[127.6697746000001,0.873603400000036],[127.67103450000002,0.874826600000063],[127.67652020000003,0.873388],[127.67533070000002,0.869783600000062],[127.67737710000006,0.87022010000004],[127.68045260000008,0.867581900000062],[127.67424460000007,0.864283900000032],[127.67262010000002,0.865599800000041],[127.6692174000001,0.865157200000056],[127.66852520000009,0.867556700000023],[127.66168470000002,0.872038100000054],[127.66112420000002,0.868279],[127.65275860000008,0.876467],[127.65740620000008,0.879638200000045],[127.65996460000008,0.878155],[127.66281870000012,0.87904670000006],[127.66233350000005,0.880438300000037],[127.66461960000004,0.881002100000046],[127.66469140000004,0.883021800000051],[127.66165680000006,0.886999500000059],[127.65560810000011,0.884826100000055],[127.6560406000001,0.888101300000073],[127.65887850000001,0.888598900000034],[127.6588068000001,0.891500200000053],[127.656377,0.891930800000068],[127.65725870000006,0.895529200000055],[127.65179010000008,0.899627200000054],[127.65365,0.905740200000025],[127.65175340000008,0.90647830000006],[127.65151760000003,0.909461700000065],[127.6482267,0.912363],[127.64972350000005,0.917540200000076],[127.64682220000009,0.91937530000007],[127.64351080000006,0.915520600000036],[127.63995340000008,0.917140400000051],[127.64061970000012,0.914341600000057],[127.6393485000001,0.912527],[127.63665220000007,0.915264300000047],[127.63421220000009,0.915120800000068],[127.63360740000007,0.917899],[127.63657020000005,0.921251400000074],[127.63258220000012,0.920175],[127.63110590000008,0.922276600000032],[127.63202860000001,0.925854600000036],[127.63412510000012,0.925383],[127.63653430000011,0.927710200000035],[127.63643180000008,0.929412],[127.638759,0.92958630000004],[127.64121950000003,0.934989100000053],[127.63575520000006,0.933738400000038],[127.63314090000006,0.934753300000068],[127.63956120000012,0.940856800000063],[127.63549250000005,0.94406680000003],[127.63440890000004,0.941695100000061],[127.631426,0.942161100000021],[127.62969720000001,0.944920600000046],[127.630861,0.946263900000019],[127.63005160000012,0.950109800000064],[127.63200630000006,0.952652200000045],[127.63087180000002,0.959883300000058],[127.6282883,0.963341700000058],[127.62966890000007,0.966171200000076],[127.62615590000007,0.972267700000032],[127.63147320000007,0.976573600000052],[127.63166460000002,0.97925280000004],[127.62942280000004,0.983968700000048],[127.63082510000004,0.985271500000067],[127.63327760000004,0.984925500000031],[127.6349679000001,0.990614],[127.64055910000002,0.992321],[127.64866770000003,1.002211600000066],[127.64672080000003,1.004099600000075],[127.64691420000008,1.007759200000066],[127.651503,1.015716600000076],[127.65233360000002,1.019808100000034],[127.65127230000007,1.022038400000042],[127.652431,1.021992300000022],[127.655958,1.027739300000064],[127.66729980000002,1.030523900000048],[127.67392410000002,1.035892],[127.68381450000004,1.037158500000032],[127.6865236000001,1.038982],[127.69743370000003,1.03830750000003],[127.70926720000011,1.042053800000076],[127.721921,1.050455500000055],[127.72366430000011,1.05331990000002],[127.734821,1.061721600000055],[127.74293560000001,1.062220600000046],[127.74419350000005,1.063724600000057],[127.74646310000003,1.062959],[127.75848120000012,1.068776600000035],[127.7653203000001,1.081631],[127.77099150000004,1.087077200000067],[127.77389010000002,1.086919900000055],[127.77506590000007,1.089688600000045],[127.78448020000008,1.097319900000059],[127.78417860000002,1.09954730000004],[127.78833520000012,1.099318600000061],[127.7908533000001,1.104343800000038],[127.79039570000009,1.106212],[127.79276,1.107076100000029],[127.79302020000011,1.10869370000006],[127.796859,1.107295800000031],[127.79762170000004,1.108960500000023],[127.80070260000002,1.105503900000031],[127.80313050000007,1.107041700000025],[127.8051388,1.110650900000053],[127.80503830000009,1.114974500000073],[127.80787520000001,1.117304],[127.8086128000001,1.121705300000031],[127.815574,1.130025500000045],[127.81574680000006,1.13475],[127.82405840000001,1.142137200000036],[127.82356220000008,1.144659400000023],[127.82521470000006,1.146946900000046],[127.830906,1.148359500000026],[127.84626070000002,1.14833660000005],[127.84764630000006,1.149366],[127.84743540000011,1.152754900000048],[127.84904870000003,1.155318800000032],[127.850201,1.15520360000005],[127.85026590000007,1.153185400000041],[127.85584040000003,1.154898100000025],[127.85789080000006,1.15221310000004],[127.86214910000001,1.153140900000039],[127.86326020000001,1.151359700000057],[127.87437520000003,1.149655700000039],[127.88039390000006,1.153650200000072],[127.8885706000001,1.150063400000022],[127.89609380000002,1.152117],[127.90338550000001,1.150209200000063],[127.90242540000008,1.172206700000061],[127.91395890000001,1.194799700000033],[127.9142505000001,1.215192900000034],[127.91939900000011,1.227555900000027],[127.9268641000001,1.234784],[127.93182270000011,1.23424620000003],[127.94497560000002,1.242021300000033],[127.94722700000011,1.252722300000073],[127.95041720000006,1.255876100000023],[127.95186650000005,1.260078100000044],[127.95802820000006,1.260296800000049],[127.95957780000003,1.262283900000057],[127.9617836000001,1.262548200000026],[127.96849220000001,1.272675],[127.97247790000006,1.275818600000036],[127.97443520000002,1.280131],[127.970853,1.287678200000073],[127.97095330000002,1.292408900000055],[127.97416170000008,1.301013400000045],[127.97807260000002,1.306849],[127.98479740000005,1.30968480000007],[127.987779,1.309441700000036],[127.98892090000004,1.307247600000039],[127.99499,1.307124500000043],[127.99779330000001,1.308566700000029],[127.99941930000011,1.307597500000043],[128.008229,1.311127],[128.01035170000011,1.31396280000007],[128.00544180000009,1.322648300000026],[127.9940663000001,1.331852400000059],[127.9923811000001,1.336033200000031],[127.9928801000001,1.343221800000038],[127.98748630000011,1.365241300000037],[127.9877871000001,1.367517700000064],[127.98937310000008,1.368303900000058],[127.98855960000003,1.380540800000063],[127.98946200000012,1.379194],[127.99500620000003,1.392162300000052],[128.00124080000012,1.39589490000003],[128.0049461000001,1.394637100000068],[128.00853890000008,1.395402600000068],[128.011003,1.393734700000039],[128.0151936000001,1.400338500000032],[128.01829040000007,1.401842400000021],[128.0219614,1.401076800000055],[128.0240533000001,1.404686300000037],[128.02301420000003,1.407947200000024],[128.0241354000001,1.41144730000002],[128.0228502000001,1.414284400000042],[128.0166018000001,1.416225900000029],[128.0114883000001,1.421441900000048],[128.00962890000005,1.425735100000054],[128.0133068,1.431969700000025],[128.01405880000004,1.439619500000049],[128.01686840000002,1.44160880000004],[128.0190219000001,1.447453800000062],[128.02183160000004,1.465686],[128.02303470000004,1.465706500000067],[128.02423790000012,1.468557200000021],[128.0243951000001,1.476480400000071],[128.02262430000007,1.480806800000039],[128.02382090000003,1.481457200000023],[128.02309630000002,1.489688],[128.02693140000008,1.504932800000063],[128.0254821000001,1.512637200000029],[128.02881820000005,1.514886300000057],[128.03104,1.522953100000052],[128.03528530000006,1.530500300000028],[128.03000080000004,1.545259700000031],[128.02544790000002,1.546982400000047],[128.02397130000008,1.550728700000036],[128.030746,1.552793200000053],[128.034335,1.55877490000006],[128.0300966000001,1.565495],[128.03207910000003,1.567600500000026],[128.03530580000006,1.565371900000059],[128.036632,1.567422800000031],[128.032749,1.578723100000047],[128.03634490000002,1.57957760000005],[128.03739080000003,1.582982],[128.03439650000007,1.589360200000044],[128.02877720000004,1.593079100000068],[128.0268357000001,1.592648500000053],[128.02537270000005,1.584882500000049],[128.01736070000004,1.593263700000023],[128.0096631,1.593967900000052],[128.0093213,1.598719],[128.003237,1.596210100000064],[128.00042050000002,1.59757060000004],[127.99849740000002,1.600642700000037],[128.00033840000003,1.606628600000022],[127.998978,1.609581800000058],[127.99622260000001,1.607173500000044],[127.99163590000012,1.60771550000004],[127.98862110000005,1.61162580000007],[127.98705560000008,1.617505],[127.99004990000003,1.624710400000026],[127.99707070000011,1.621757100000025],[127.99949760000004,1.622119500000053],[127.99976420000007,1.623814800000048],[127.9989541000001,1.63135520000003],[127.99676950000003,1.633430800000042],[127.99888120000003,1.635201700000039],[127.99956480000003,1.639285200000074],[127.99611020000009,1.641600400000073],[127.99649760000011,1.652125200000057],[127.99114370000007,1.660937100000069],[127.99341330000004,1.66400660000005],[127.99315360000003,1.667937400000028],[127.99673990000008,1.670910200000037],[128.00107680000008,1.669345700000065],[128.00731140000005,1.67718],[128.00857610000003,1.681719200000032],[128.01788010000007,1.68570150000005],[128.02102810000008,1.688149400000043],[128.02182470000002,1.69081140000003],[128.02189440000006,1.703928800000028],[128.0151389,1.717500100000052],[128.0155685000001,1.724153200000046],[128.0123714,1.725366500000064],[128.0111455000001,1.731553800000029],[128.00919720000002,1.733609800000067],[128.0091049,1.735686300000054],[128.01169920000007,1.735635100000025],[128.01203610000005,1.737210800000071],[128.0051595000001,1.74183510000006],[127.99730320000003,1.751137500000027],[127.99168930000008,1.762388800000053],[127.98913190000007,1.761454700000058],[127.98232450000012,1.766141400000038],[127.98256010000011,1.767280600000049],[127.97428470000011,1.767343200000028],[127.9709583,1.770798700000057],[127.96521970000003,1.770775],[127.96042980000004,1.767613500000039],[127.95949570000005,1.772680100000059],[127.956119,1.777127600000028],[127.95797230000005,1.779356200000052],[127.95654550000006,1.780718500000035],[127.95661760000007,1.787296800000036],[127.95434210000008,1.792093600000044],[127.95141220000005,1.793872900000054],[127.94931970000005,1.792270100000053],[127.94499660000008,1.793083700000068],[127.93856810000011,1.801251100000059],[127.93998370000008,1.802512200000024],[127.9437061000001,1.79698],[127.94516750000003,1.798070200000041],[127.9419299000001,1.802081600000065],[127.93891070000006,1.805417600000055],[127.93686680000008,1.803217600000039],[127.93553870000005,1.803539700000044],[127.93463740000004,1.805431400000032],[127.93614730000002,1.806777600000032],[127.93308890000003,1.809080600000073],[127.93016680000005,1.807275300000072],[127.92870840000012,1.809672500000033],[127.92923710000002,1.811595800000021],[127.92734120000011,1.811614],[127.92793370000004,1.810037100000045],[127.92563670000004,1.808223200000043],[127.9200082000001,1.807582100000047],[127.9037714000001,1.801311],[127.89967700000011,1.801305800000023],[127.89815160000012,1.797393100000022],[127.88562760000002,1.797673400000065],[127.88369300000011,1.799553400000036],[127.88362460000008,1.807025400000043],[127.8815532000001,1.808283200000062],[127.878894,1.802998800000069],[127.87455030000001,1.805599400000062],[127.87227050000001,1.810053800000048],[127.86286210000003,1.805285500000025],[127.8607651000001,1.805562400000042],[127.85912960000007,1.80991030000007],[127.85713510000005,1.810397300000034],[127.85512520000009,1.814001700000063],[127.85718640000005,1.815252800000053],[127.85644800000011,1.817149800000038],[127.86000830000012,1.818196900000032],[127.85697060000007,1.822113100000024],[127.85560170000008,1.820964600000025],[127.85337650000008,1.822882200000038],[127.85357650000003,1.820928700000024],[127.85227410000005,1.82196440000007],[127.85323810000011,1.820077600000047],[127.85075910000012,1.819353],[127.846866,1.820709300000033],[127.84320750000006,1.834523200000035],[127.84166710000011,1.848200600000041],[127.84573420000004,1.852358200000026],[127.85325950000004,1.866729],[127.850935,1.874967800000036],[127.8497215000001,1.902123600000039],[127.848232,1.906623400000058],[127.8524619000001,1.925887200000034],[127.86693790000004,1.934685900000034],[127.87257510000006,1.936504200000059],[127.87457360000008,1.940419900000052],[127.88846510000008,1.952984700000059],[127.89902960000006,1.954656200000045],[127.90357950000009,1.956979700000034],[127.90846020000004,1.957094900000072],[127.9199268000001,1.961007500000051],[127.92659980000008,1.969120400000065],[127.92939890000002,1.97892980000006],[127.95192780000002,1.991257400000052],[127.95109030000003,2.001487900000029],[127.95341240000005,2.010417600000039],[127.9512903000001,2.01912980000003],[127.94870520000006,2.020676200000025],[127.94795780000004,2.023222200000021],[127.95468180000012,2.040387600000031],[127.96244220000005,2.047853800000041],[127.96589230000006,2.049488800000063],[127.97017690000007,2.063318500000037],[127.97331830000007,2.066048700000067],[127.98052730000006,2.068574900000044],[127.99323410000011,2.083629400000063],[127.9998465000001,2.087829300000067],[127.99898280000002,2.08911020000005],[128.00093630000003,2.091694400000051],[128.00320050000005,2.092534200000046],[128.00513490000003,2.09557570000004],[128.0072996,2.095194400000025],[128.00852870000006,2.098155500000075],[128.01605930000005,2.104035700000054],[128.0320144000001,2.123840100000052],[128.03495930000008,2.129308800000047],[128.03471170000012,2.132332800000029],[128.0380338000001,2.135475400000075],[128.0436059000001,2.145976500000074],[128.05298090000008,2.155912300000068],[128.05748530000005,2.165233400000034],[128.06460760000004,2.172150500000043],[128.06887790000007,2.190141700000027],[128.06787520000012,2.197256400000072],[128.05266170000004,2.201071200000058],[128.0191138,2.196395700000039],[128.00621520000004,2.190833500000053],[128.00561030000006,2.189191500000049],[127.9968239000001,2.187635900000032],[127.98587690000011,2.180664400000069],[127.98354350000011,2.180462700000021],[127.97994440000002,2.183989800000063],[127.97998080000002,2.186354],[127.981523,2.187008100000071],[127.98126600000012,2.19133],[127.97733750000009,2.208588300000031],[127.9626290000001,2.219180400000027],[127.95509890000005,2.221096200000034],[127.95458480000002,2.219133900000031],[127.95610370000009,2.218409700000052],[127.95645420000005,2.214414900000065],[127.9599363000001,2.209941600000036],[127.96052090000012,2.206501],[127.9601444000001,2.197898200000054],[127.95813490000012,2.19507150000004],[127.94903370000009,2.191135300000042],[127.94688910000002,2.18842090000004],[127.9445773000001,2.188528900000051],[127.9424815000001,2.18582820000006],[127.93913260000011,2.186497900000063],[127.93705850000003,2.185417600000051],[127.93690720000006,2.182263200000023],[127.93340710000007,2.181377400000031],[127.93206750000002,2.176148700000056],[127.93046870000012,2.175133300000027],[127.92902110000011,2.168219400000055],[127.92985850000002,2.162819],[127.92077790000008,2.15737230000002],[127.9116067000001,2.158064600000046],[127.91005110000003,2.155558300000052],[127.91139070000008,2.152792800000043],[127.91074250000008,2.149119800000051],[127.90475770000012,2.144496100000026],[127.90268350000008,2.141017600000055],[127.9029852000001,2.138015],[127.89944260000004,2.134233400000028],[127.89313370000002,2.132418500000028],[127.89028180000003,2.132937],[127.88991450000003,2.130236300000035],[127.88645750000012,2.128248500000041],[127.88546370000006,2.122350100000062],[127.87295390000008,2.115220200000067],[127.86869750000005,2.107852600000058],[127.86275590000002,2.103941900000052],[127.85372460000008,2.102904900000055],[127.85091590000002,2.101241200000061],[127.851434,2.097746800000039],[127.85022450000008,2.096012600000051],[127.8375635000001,2.091108100000042],[127.83689370000002,2.082487300000025],[127.829094,2.07535740000003],[127.82490240000004,2.068638],[127.816649,2.065353900000048],[127.81386180000004,2.056085],[127.8064078000001,2.050921100000039],[127.80331250000006,2.042379],[127.79791670000009,2.03890830000006],[127.796306,2.033813900000041],[127.788086,2.024432400000023],[127.78732980000007,2.01868520000005],[127.78832370000009,2.01622210000005],[127.78558,2.009303100000068],[127.77454490000002,1.99904],[127.77112540000007,1.998202800000058],[127.768751,1.99436570000006],[127.76390850000007,1.992373800000053],[127.76477310000007,1.99106560000007],[127.76267750000011,1.988545],[127.76295840000012,1.985628200000065],[127.75963110000009,1.980464400000074],[127.75594930000011,1.977185300000031],[127.75438150000002,1.977907200000061],[127.7528469,1.975689500000044],[127.7533145000001,1.973766900000044],[127.75206910000009,1.973809800000026],[127.75268920000008,1.972769200000073],[127.74976980000008,1.968709500000045],[127.74486650000006,1.967800100000034],[127.7438929000001,1.958943900000065],[127.7425105000001,1.955492100000072],[127.74531730000001,1.953094600000043],[127.74531730000001,1.950814100000059],[127.74853340000004,1.946545400000048],[127.75192490000006,1.945785300000068],[127.75438090000011,1.947071700000038],[127.75350370000001,1.958883600000036],[127.75812320000011,1.961924300000021],[127.76414610000006,1.961427300000025],[127.76809320000007,1.959322200000031],[127.770297,1.950901800000054],[127.77427690000002,1.947382400000038],[127.77496760000008,1.941593400000045],[127.78177630000005,1.92768],[127.78286170000001,1.912944400000072],[127.78351960000009,1.91149710000002],[127.78796000000011,1.912681300000031],[127.78907830000003,1.911102400000061],[127.7848024000001,1.906431800000064],[127.77967120000005,1.906267300000025],[127.7731586000001,1.902780700000051],[127.7717113000001,1.901267700000062],[127.77154690000009,1.895873400000028],[127.75983730000007,1.884723],[127.75970570000004,1.874493600000051],[127.7645688,1.86485],[127.75752000000011,1.858795800000053],[127.75414690000002,1.864936500000056],[127.75034140000002,1.861260800000025],[127.74839540000005,1.862039200000027],[127.74753050000004,1.860741800000028],[127.7474873000001,1.85931480000005],[127.75029820000009,1.857239],[127.74424390000001,1.85684980000002],[127.74377540000012,1.855312600000047],[127.74866510000004,1.849129600000026],[127.74882190000005,1.846118200000035],[127.7405199000001,1.830411300000037],[127.7411909000001,1.821900600000049],[127.73841230000005,1.815917400000046],[127.73593560000006,1.814920200000074],[127.73356700000011,1.810480200000029],[127.73206130000005,1.799357],[127.71926130000008,1.788848700000074],[127.721517,1.783861300000069],[127.72165440000003,1.779766800000061],[127.71771390000004,1.777581200000043],[127.717676,1.765026200000023],[127.71435910000002,1.763131100000066],[127.7106993000001,1.751532200000042],[127.713425,1.744064500000036],[127.70956390000003,1.734684500000071],[127.71070960000009,1.728059400000063],[127.7097688,1.724293500000044],[127.70782120000001,1.722782900000027],[127.70703020000008,1.718535300000042],[127.70313980000003,1.714686800000038],[127.70516670000006,1.710271200000022],[127.7035409,1.703047600000048],[127.70714940000005,1.69256850000005],[127.71423030000005,1.682711],[127.71271830000012,1.677427800000032],[127.71289640000009,1.663617100000067],[127.71443010000007,1.65981110000007],[127.71753970000009,1.658411400000034],[127.71950580000009,1.655388900000048],[127.71828260000007,1.642319400000076],[127.72359390000008,1.634934],[127.73050950000004,1.630954200000076],[127.7323957000001,1.625062100000036],[127.72870000000012,1.621139600000049],[127.73131100000012,1.611715400000037],[127.73038150000002,1.606126500000073],[127.73483070000009,1.605556500000034],[127.73524930000008,1.60405940000004],[127.73163410000006,1.599180700000034],[127.73143220000009,1.595481300000074],[127.72877630000005,1.595530600000075],[127.72688110000001,1.592500800000039],[127.72672090000003,1.581097600000021],[127.72848950000002,1.573110200000031],[127.72591470000009,1.559248500000024],[127.72600650000004,1.551932500000021],[127.72966970000004,1.539579900000035],[127.72831020000001,1.534953900000062],[127.72545920000005,1.531798500000036],[127.7251073000001,1.525797500000067],[127.71910080000009,1.521076100000073],[127.71856860000003,1.518273300000033],[127.72098270000004,1.514508500000034],[127.71237910000002,1.510354],[127.7141309000001,1.496412700000064],[127.71132850000004,1.49409170000007],[127.711251,1.488596500000028],[127.70943950000003,1.489132400000074],[127.70583570000008,1.483886400000074],[127.70566530000008,1.477836],[127.70292360000008,1.473137500000064],[127.69729310000002,1.472261900000035],[127.69391690000009,1.468506500000046],[127.68966090000004,1.467412800000034],[127.68066840000006,1.468885800000066],[127.67655410000009,1.465547900000047],[127.67050150000011,1.463906400000042],[127.67110570000011,1.457440100000042],[127.67312730000003,1.456656],[127.6750995000001,1.44893460000003],[127.67992440000012,1.445054500000026],[127.68023940000012,1.443016100000023],[127.67632930000002,1.438609800000052],[127.6726215000001,1.430242],[127.661235,1.424313500000039],[127.65752730000008,1.416834],[127.65705650000007,1.411128],[127.66125590000001,1.396631],[127.66761120000001,1.393186700000058],[127.6760862000001,1.377004800000066],[127.66676070000005,1.366287],[127.66232630000002,1.364813200000071],[127.6632078,1.358897600000034],[127.66102200000012,1.354492400000026],[127.65974940000001,1.345807500000035],[127.65590840000004,1.341542900000036],[127.6573912,1.334278600000061],[127.65387890000011,1.327631800000063],[127.65201330000002,1.32696130000005],[127.64861970000004,1.330493900000022],[127.648518,1.332828600000028],[127.64581190000001,1.331016500000032],[127.64256420000004,1.333799800000065],[127.64037570000005,1.327769800000056],[127.640424,1.319957500000044],[127.63572980000004,1.321603400000072],[127.63745660000006,1.304362300000037],[127.6400724,1.295943300000033],[127.63911830000006,1.290262200000029],[127.63553530000002,1.285452400000054],[127.63593050000009,1.27876550000002],[127.63453570000001,1.274595800000043],[127.63871410000002,1.271442],[127.64460710000003,1.272936600000037],[127.64944870000011,1.270987400000024],[127.64950660000011,1.266005700000051],[127.64728240000011,1.263687400000038],[127.646952,1.251843700000052],[127.64272380000011,1.250421200000062],[127.63677750000011,1.252337],[127.627419,1.248118200000022],[127.62893150000002,1.243714500000067],[127.62387810000007,1.237794600000029],[127.627464,1.234863400000052],[127.6285653000001,1.230012200000033],[127.63590390000002,1.219799900000055],[127.6371722,1.214710900000057],[127.6361554,1.208037],[127.63933060000011,1.201526],[127.6383244000001,1.198751100000038],[127.63983640000004,1.195753700000068],[127.63770980000004,1.182554],[127.6400847000001,1.178523200000029],[127.643697,1.17709560000003],[127.64430020000009,1.171566900000073],[127.63977420000003,1.16802610000002],[127.63375540000004,1.167005600000039],[127.62815260000002,1.160351200000036],[127.6268179000001,1.151783600000044],[127.62287,1.146451700000057],[127.62206230000004,1.14212120000002],[127.61994470000002,1.140364600000055],[127.622314,1.136948800000027],[127.62590200000011,1.125523300000054],[127.62536950000003,1.116420600000026],[127.61425540000005,1.117491900000061],[127.6096113000001,1.109286200000042],[127.60384790000012,1.108404800000073],[127.60835150000003,1.094001],[127.61318250000011,1.091463600000054],[127.61068380000006,1.086755],[127.61465050000004,1.081338900000048],[127.6102112000001,1.075697500000047],[127.60230710000008,1.07132480000007],[127.601936,1.063135700000032],[127.6045825000001,1.059221300000047],[127.60358070000007,1.05607],[127.60455740000009,1.048743700000045],[127.6095888000001,1.034582],[127.61494980000009,1.027752700000065],[127.61840070000005,1.027833900000076],[127.606247,1.006742300000042],[127.59822990000009,0.986699600000065],[127.59491380000009,0.966955700000028],[127.6055718,0.91576340000006],[127.62120320000008,0.896026800000072],[127.6325121000001,0.878296100000057],[127.63969610000004,0.871680900000058],[127.66543560000002,0.83949130000002],[127.67583800000011,0.830764400000021],[127.69451860000004,0.818394200000057],[127.7093665000001,0.821201400000064]]],[[[127.74653120000005,2.271140400000036],[127.74541580000005,2.27200380000005],[127.74475920000009,2.270717800000057],[127.74711580000007,2.26955780000003],[127.74653120000005,2.271140400000036]]],[[[127.82166990000007,2.272487900000044],[127.81997680000006,2.274001700000042],[127.81989710000005,2.272667200000058],[127.82166990000007,2.272487900000044]]],[[[127.7440391,2.273289200000022],[127.74369,2.274483500000031],[127.74268930000005,2.273545100000035],[127.7440391,2.273289200000022]]],[[[127.778305,2.29447440000007],[127.7755797000001,2.294640100000038],[127.77245520000008,2.287495500000034],[127.7703623000001,2.288444],[127.77026730000011,2.282920900000022],[127.76413510000009,2.276811800000075],[127.76200510000001,2.271078400000022],[127.7594822000001,2.270954400000051],[127.75996820000012,2.269217800000035],[127.75687760000005,2.263379100000066],[127.7626934000001,2.255929900000069],[127.76538170000003,2.255754100000047],[127.76815590000001,2.261590400000046],[127.76960410000004,2.260412100000053],[127.77169260000005,2.262334800000076],[127.77304780000009,2.25961280000007],[127.76959710000006,2.255033600000047],[127.76985060000004,2.252282100000059],[127.77318050000008,2.248068100000069],[127.76991380000004,2.247520300000076],[127.77366530000006,2.240665500000034],[127.77159470000004,2.232737800000052],[127.77382120000004,2.230150700000024],[127.77165480000008,2.226661200000024],[127.7726196000001,2.220121800000072],[127.7790285000001,2.218286800000044],[127.78226490000009,2.21948720000006],[127.78774120000003,2.216990400000043],[127.79515460000005,2.21718420000002],[127.79608730000007,2.224193300000024],[127.79885550000006,2.224885200000074],[127.80445210000005,2.223020100000042],[127.803399,2.230029300000069],[127.80580610000004,2.228886100000068],[127.8052044000001,2.226178800000071],[127.80737080000006,2.222598900000037],[127.81687280000006,2.229882400000065],[127.8175175,2.236148700000058],[127.82292560000008,2.240767400000038],[127.82218590000002,2.242826700000023],[127.82330840000009,2.244253],[127.82113390000006,2.245146400000067],[127.81928570000002,2.248711700000058],[127.8206484000001,2.252009500000042],[127.81913480000003,2.253153400000031],[127.82426480000004,2.260358900000028],[127.8234973000001,2.261838400000045],[127.82507610000005,2.263518200000021],[127.82375900000011,2.265606800000057],[127.825374,2.269738300000029],[127.81481190000011,2.272383200000036],[127.81324760000007,2.271405800000025],[127.80735340000001,2.272905600000058],[127.80213550000008,2.272166800000036],[127.7964333000001,2.275021400000071],[127.79184540000006,2.272950300000048],[127.78926430000001,2.275390600000037],[127.77986370000008,2.275030400000048],[127.77787850000004,2.278088800000035],[127.78175520000002,2.28609780000005],[127.780372,2.288081700000021],[127.78083550000008,2.29110570000006],[127.78002430000004,2.292459700000052],[127.77840640000011,2.292171900000028],[127.778305,2.29447440000007]]]]},"properties":{"shapeName":"Halmahera Utara","shapeISO":"","shapeID":"22746128B89635487569430","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[115.55659260000004,-2.828173799999945],[115.55770970000003,-2.825236599999926],[115.57267150000007,-2.810861599999953],[115.57884270000011,-2.794461299999966],[115.58691410000006,-2.778363799999966],[115.59523020000006,-2.7498207],[115.59670490000008,-2.734924399999954],[115.59929690000001,-2.722224],[115.58840440000006,-2.713618399999973],[115.58361830000001,-2.711909],[115.575295,-2.711232499999937],[115.56958230000009,-2.714448],[115.56530280000004,-2.720369],[115.5547643000001,-2.7242083],[115.54776570000001,-2.729159],[115.527587,-2.724831],[115.523712,-2.721616],[115.510833,-2.722351],[115.49558160000004,-2.717946799999936],[115.488539,-2.723647599999936],[115.486654,-2.727583799999934],[115.4814798000001,-2.730964399999948],[115.47370880000005,-2.743597199999954],[115.46672860000001,-2.750204899999972],[115.46241780000003,-2.752089799999965],[115.4594330000001,-2.76065],[115.450857,-2.766255],[115.45084,-2.771188099999961],[115.4451931000001,-2.780106299999943],[115.43848720000005,-2.782023299999935],[115.43422350000003,-2.775351199999932],[115.42849660000002,-2.777608199999975],[115.42298,-2.77612],[115.42415710000012,-2.771133299999974],[115.41922120000004,-2.767139499999928],[115.40940090000004,-2.766267499999969],[115.406906,-2.761663599999963],[115.4028846000001,-2.758100399999933],[115.40346960000011,-2.753960699999936],[115.40024480000011,-2.747822299999939],[115.37761880000005,-2.7438658],[115.36967630000004,-2.730513599999938],[115.35847190000004,-2.716206099999965],[115.34749310000007,-2.715577699999926],[115.32889300000011,-2.702116],[115.30348630000003,-2.698887],[115.27467,-2.687155],[115.26369100000011,-2.685819],[115.2504540000001,-2.678629],[115.240383,-2.677521],[115.23212,-2.689906],[115.226795,-2.688208],[115.211971,-2.667749],[115.21082700000011,-2.662847],[115.211574,-2.653009],[115.210346,-2.650629],[115.20116,-2.641745],[115.19581670000002,-2.639765199999943],[115.19295780000004,-2.634547599999962],[115.18917990000011,-2.63215],[115.17978320000009,-2.6352643],[115.178546,-2.63767],[115.17232690000003,-2.636379],[115.16841950000003,-2.627979499999981],[115.16640910000001,-2.626443199999926],[115.16435050000007,-2.616197599999964],[115.15791550000006,-2.611246699999981],[115.16196470000011,-2.60127],[115.16237620000004,-2.5938766],[115.16181970000002,-2.587116599999945],[115.1582165000001,-2.581251099999974],[115.1578472000001,-2.574616099999957],[115.15603880000003,-2.571570399999928],[115.16584220000004,-2.568715099999963],[115.17849540000009,-2.554695099999947],[115.14840620000007,-2.546694199999934],[115.14201930000002,-2.549165699999946],[115.11115070000005,-2.535720799999979],[115.06167340000002,-2.521208499999943],[114.997788,-2.498893199999941],[114.91543080000008,-2.519344899999965],[114.90445670000008,-2.518623599999955],[114.8906578000001,-2.514567099999965],[114.87804790000007,-2.525288399999965],[114.8664533000001,-2.531909799999937],[114.96672550000005,-2.705026199999963],[114.98227210000005,-2.733677099999966],[114.98305840000012,-2.737252399999932],[114.98572390000004,-2.739092699999958],[114.997476,-2.756069799999977],[115.02100040000005,-2.7770788],[115.0261273000001,-2.7799959],[115.04373040000007,-2.7852561],[115.05511600000011,-2.784055299999977],[115.05994340000007,-2.784837399999958],[115.06666490000009,-2.782831199999976],[115.06993000000011,-2.783305699999971],[115.07426350000003,-2.786596799999927],[115.0758909000001,-2.789977199999953],[115.07293350000009,-2.810807599999976],[115.06833920000008,-2.818661],[115.0683888000001,-2.826908699999933],[115.06345980000003,-2.834909399999958],[115.0628034,-2.839624299999969],[115.06869070000005,-2.8453136],[115.08061520000001,-2.839572199999964],[115.0860722000001,-2.8407541],[115.088384,-2.835994099999937],[115.0880188000001,-2.832078699999954],[115.0899012000001,-2.830052499999965],[115.09476360000008,-2.829245899999933],[115.09770530000003,-2.831990899999937],[115.09998850000011,-2.831994699999939],[115.099909,-2.835623399999974],[115.10462330000007,-2.835334899999964],[115.10690370000009,-2.837116099999946],[115.11014770000008,-2.835121799999968],[115.12748710000005,-2.838964199999964],[115.17379630000005,-2.855138199999942],[115.18597470000009,-2.862054599999965],[115.186953,-2.864778599999966],[115.19807980000007,-2.8690117],[115.2177028000001,-2.873879599999952],[115.230709,-2.870771899999966],[115.24506250000002,-2.888396899999975],[115.25442090000001,-2.8930369],[115.26312080000002,-2.892688899999939],[115.26724060000004,-2.896250299999963],[115.27002880000009,-2.903513],[115.2810942000001,-2.917491299999938],[115.2827701000001,-2.929640599999971],[115.28715330000011,-2.929610299999979],[115.29657750000001,-2.9331059],[115.30145360000006,-2.923781],[115.31508180000003,-2.924023799999929],[115.31795340000008,-2.924991],[115.32209970000008,-2.935699899999975],[115.33160710000004,-2.932973799999957],[115.33506840000007,-2.933793699999967],[115.33793680000008,-2.936982899999975],[115.34821390000002,-2.936887099999979],[115.354184,-2.934970199999952],[115.36613190000003,-2.925803299999927],[115.3786659000001,-2.918785],[115.38409280000008,-2.910311899999954],[115.38466530000005,-2.903994499999953],[115.37632970000004,-2.897277899999949],[115.3755284,-2.894041399999935],[115.38269690000004,-2.881682099999978],[115.3863014000001,-2.885390699999959],[115.39154910000002,-2.885588499999926],[115.39818190000005,-2.891239699999971],[115.41046580000011,-2.892667399999937],[115.4313466000001,-2.887861399999963],[115.43821730000002,-2.883626],[115.44316880000008,-2.889248],[115.44574780000005,-2.888807199999974],[115.4498784000001,-2.885109299999954],[115.45799780000004,-2.873491],[115.46625480000012,-2.873007],[115.47434610000005,-2.874806699999965],[115.47851580000008,-2.872889099999952],[115.48241610000002,-2.876079399999981],[115.499539,-2.880435499999976],[115.50666750000005,-2.884884299999953],[115.5079300000001,-2.8862984],[115.512795,-2.884304799999938],[115.51825910000002,-2.874756399999967],[115.52290430000005,-2.871725399999946],[115.525414,-2.867950899999926],[115.52745170000003,-2.860055299999942],[115.54013780000002,-2.847266],[115.54151080000008,-2.839230599999951],[115.54505570000003,-2.832272],[115.5502163000001,-2.8293155],[115.55618370000002,-2.829248899999925],[115.55659260000004,-2.828173799999945]]]},"properties":{"shapeName":"Hulu Sungai Selatan","shapeISO":"","shapeID":"22746128B79496532161751","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[115.4015237000001,-2.440968799999951],[115.383955,-2.484731],[115.379072,-2.492276],[115.37644000000012,-2.494036],[115.36883610000007,-2.4959351],[115.36707720000004,-2.4938724],[115.36390110000002,-2.493982299999971],[115.3588734000001,-2.491302499999961],[115.349134,-2.482788],[115.31645890000004,-2.504354899999953],[115.3000882,-2.510636699999964],[115.28819090000002,-2.512540199999933],[115.28534170000012,-2.524393299999929],[115.27058220000004,-2.526910799999939],[115.25981110000009,-2.526529899999957],[115.25533770000004,-2.529004599999951],[115.24972220000006,-2.529194899999936],[115.17849540000009,-2.554695099999947],[115.16584220000004,-2.568715099999963],[115.15603880000003,-2.571570399999928],[115.1578472000001,-2.574616099999957],[115.1582165000001,-2.581251099999974],[115.16181970000002,-2.587116599999945],[115.16237620000004,-2.5938766],[115.16196470000011,-2.60127],[115.15791550000006,-2.611246699999981],[115.16435050000007,-2.616197599999964],[115.16640910000001,-2.626443199999926],[115.16841950000003,-2.627979499999981],[115.17232690000003,-2.636379],[115.178546,-2.63767],[115.17978320000009,-2.6352643],[115.18917990000011,-2.63215],[115.19295780000004,-2.634547599999962],[115.19581670000002,-2.639765199999943],[115.20116,-2.641745],[115.210346,-2.650629],[115.211574,-2.653009],[115.21082700000011,-2.662847],[115.211971,-2.667749],[115.226795,-2.688208],[115.23212,-2.689906],[115.240383,-2.677521],[115.2504540000001,-2.678629],[115.26369100000011,-2.685819],[115.27467,-2.687155],[115.30348630000003,-2.698887],[115.32889300000011,-2.702116],[115.34749310000007,-2.715577699999926],[115.35847190000004,-2.716206099999965],[115.36967630000004,-2.730513599999938],[115.37761880000005,-2.7438658],[115.40024480000011,-2.747822299999939],[115.40346960000011,-2.753960699999936],[115.4028846000001,-2.758100399999933],[115.406906,-2.761663599999963],[115.40940090000004,-2.766267499999969],[115.41922120000004,-2.767139499999928],[115.42415710000012,-2.771133299999974],[115.42298,-2.77612],[115.42849660000002,-2.777608199999975],[115.43422350000003,-2.775351199999932],[115.43848720000005,-2.782023299999935],[115.4451931000001,-2.780106299999943],[115.45084,-2.771188099999961],[115.450857,-2.766255],[115.4594330000001,-2.76065],[115.46241780000003,-2.752089799999965],[115.46672860000001,-2.750204899999972],[115.47370880000005,-2.743597199999954],[115.4814798000001,-2.730964399999948],[115.486654,-2.727583799999934],[115.488539,-2.723647599999936],[115.49558160000004,-2.717946799999936],[115.510833,-2.722351],[115.523712,-2.721616],[115.527587,-2.724831],[115.54776570000001,-2.729159],[115.5547643000001,-2.7242083],[115.56530280000004,-2.720369],[115.56958230000009,-2.714448],[115.575295,-2.711232499999937],[115.58361830000001,-2.711909],[115.58840440000006,-2.713618399999973],[115.59929690000001,-2.722224],[115.59670490000008,-2.734924399999954],[115.62669850000009,-2.722531699999934],[115.64375920000009,-2.720937399999968],[115.65659710000011,-2.723429],[115.66343060000008,-2.72263],[115.6726354000001,-2.718567399999927],[115.67971910000006,-2.710175199999981],[115.68403740000008,-2.709266399999933],[115.69271970000011,-2.710397399999977],[115.70623910000006,-2.7021722],[115.70916110000007,-2.695834899999966],[115.71412040000007,-2.691571],[115.72044140000003,-2.681916199999932],[115.7227256000001,-2.666497299999946],[115.725412,-2.659139],[115.76449800000012,-2.658724899999925],[115.7774796000001,-2.647686599999929],[115.79107840000006,-2.6389263],[115.81178060000002,-2.632907699999976],[115.81435710000005,-2.6250098],[115.82363160000011,-2.611196699999937],[115.82936570000004,-2.605886199999929],[115.83196570000007,-2.608516499999951],[115.85726610000006,-2.616047099999946],[115.86152620000007,-2.614066899999955],[115.88710660000004,-2.612656799999968],[115.88827880000008,-2.614672599999949],[115.89236660000006,-2.6001857],[115.8872166000001,-2.595335299999931],[115.88805660000003,-2.582434099999944],[115.89055660000008,-2.575693499999943],[115.88909660000002,-2.574933499999929],[115.88763460000007,-2.556042599999955],[115.88072850000003,-2.542417599999965],[115.87789670000006,-2.527203],[115.86804960000006,-2.524050699999975],[115.8544051,-2.516156],[115.84553820000008,-2.515149],[115.84072010000011,-2.512739199999942],[115.84046590000003,-2.5089272],[115.82350760000008,-2.504047199999945],[115.8036072000001,-2.504029],[115.79561690000003,-2.512298599999951],[115.77771840000003,-2.523060599999951],[115.7714165000001,-2.528576199999975],[115.76226130000009,-2.553701699999976],[115.7585686000001,-2.568842699999948],[115.74923520000004,-2.575825699999939],[115.73458630000005,-2.581431799999962],[115.72149490000004,-2.591203499999949],[115.71712280000008,-2.590600499999937],[115.71169720000012,-2.585412899999938],[115.70860390000007,-2.578274499999964],[115.69932490000008,-2.5719208],[115.69297070000005,-2.546108299999958],[115.68106050000006,-2.5387209],[115.68090970000003,-2.5363087],[115.68543260000001,-2.527112199999976],[115.68588450000004,-2.513588399999946],[115.63830990000008,-2.509167199999979],[115.6159877,-2.505071799999939],[115.604138,-2.498932799999977],[115.59956940000006,-2.491508899999928],[115.59756790000006,-2.484739699999977],[115.59246430000007,-2.486128599999972],[115.57212190000007,-2.482116699999949],[115.5588672,-2.486245599999961],[115.545313,-2.480569],[115.527541,-2.469814],[115.51911490000009,-2.466778599999941],[115.50127850000001,-2.462041899999974],[115.4708174000001,-2.461689099999944],[115.44560190000004,-2.455726399999946],[115.417614,-2.443560199999979],[115.4015237000001,-2.440968799999951]]]},"properties":{"shapeName":"Hulu Sungai Tengah","shapeISO":"","shapeID":"22746128B27977049547631","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[115.3558799000001,-2.341643599999941],[115.33905220000008,-2.342275599999937],[115.3246593,-2.345451399999945],[115.31065750000005,-2.343817899999976],[115.3044824000001,-2.345984099999953],[115.288205,-2.356743],[115.28250560000004,-2.358923199999936],[115.25055470000007,-2.354006099999935],[115.21274930000004,-2.339755699999955],[115.15375360000007,-2.304807099999948],[115.00294630000008,-2.400244],[114.993752,-2.409415399999943],[114.97891530000004,-2.4203059],[114.91457910000008,-2.459341399999971],[114.88996020000002,-2.4951747],[114.88614590000009,-2.503677899999957],[114.86841120000008,-2.512161299999946],[114.86372230000006,-2.5195363],[114.86063560000002,-2.521844699999974],[114.86179410000011,-2.523846899999967],[114.8664533000001,-2.531909799999937],[114.87804790000007,-2.525288399999965],[114.8906578000001,-2.514567099999965],[114.90445670000008,-2.518623599999955],[114.91543080000008,-2.519344899999965],[114.997788,-2.498893199999941],[115.06167340000002,-2.521208499999943],[115.11115070000005,-2.535720799999979],[115.14201930000002,-2.549165699999946],[115.14840620000007,-2.546694199999934],[115.17849540000009,-2.554695099999947],[115.24972220000006,-2.529194899999936],[115.25533770000004,-2.529004599999951],[115.25981110000009,-2.526529899999957],[115.27058220000004,-2.526910799999939],[115.28534170000012,-2.524393299999929],[115.28819090000002,-2.512540199999933],[115.3000882,-2.510636699999964],[115.31645890000004,-2.504354899999953],[115.349134,-2.482788],[115.3588734000001,-2.491302499999961],[115.36390110000002,-2.493982299999971],[115.36707720000004,-2.4938724],[115.36883610000007,-2.4959351],[115.37644000000012,-2.494036],[115.379072,-2.492276],[115.383955,-2.484731],[115.4015237000001,-2.440968799999951],[115.38543890000005,-2.434970899999939],[115.3714314,-2.425821299999939],[115.3592053000001,-2.420728799999949],[115.34921140000006,-2.410377599999947],[115.3450037,-2.401164399999971],[115.33868880000011,-2.395554599999969],[115.33220190000009,-2.395313499999929],[115.31804740000007,-2.402104899999927],[115.31631660000005,-2.400947],[115.31587330000002,-2.394925199999932],[115.31972610000003,-2.388709399999925],[115.31951250000009,-2.379503599999964],[115.32167920000006,-2.369324799999958],[115.31881820000001,-2.358577799999978],[115.3196345,-2.357575299999951],[115.3302394000001,-2.358901799999956],[115.33811290000006,-2.356887699999959],[115.34301860000005,-2.354326799999967],[115.3558799000001,-2.341643599999941]]]},"properties":{"shapeName":"Hulu Sungai Utara","shapeISO":"","shapeID":"22746128B66733954524632","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[98.82305740000004,2.342735800000071],[98.82446960000004,2.343606700000066],[98.823057,2.345943700000021],[98.82305740000004,2.342735800000071]]],[[[98.83537130000008,2.35550070000005],[98.83397210000004,2.360609600000032],[98.83207660000005,2.362189],[98.82714840000006,2.363114400000029],[98.81531790000008,2.371350600000028],[98.80711220000006,2.374544300000025],[98.79879290000008,2.390611400000068],[98.79082950000009,2.399639100000059],[98.78900310000006,2.404178800000068],[98.78895160000008,2.40943290000007],[98.777579,2.42015850000007],[98.74923490000003,2.439345900000035],[98.70348090000005,2.433735100000035],[98.69411650000006,2.430891300000042],[98.66736880000008,2.428002400000025],[98.65954710000005,2.425820200000032],[98.649936,2.419371900000044],[98.62948820000008,2.409318600000063],[98.61461270000007,2.398116300000027],[98.61563350000006,2.401720400000045],[98.61376020000006,2.434842900000035],[98.610874,2.453363700000068],[98.60392260000003,2.465463100000022],[98.594055,2.476350100000047],[98.58183790000004,2.486574900000051],[98.51059730000009,2.487079100000074],[98.50167620000008,2.478666300000043],[98.48341,2.467350200000055],[98.47371290000007,2.464595100000054],[98.44581250000005,2.487083],[98.43090890000008,2.48703],[98.422789,2.481285600000035],[98.41506150000004,2.480334300000038],[98.41082250000005,2.475972200000058],[98.408469,2.470189],[98.40357020000005,2.466110900000047],[98.39593740000004,2.464211700000021],[98.39358080000005,2.465537700000027],[98.36285780000009,2.465807600000062],[98.35566290000008,2.462114600000064],[98.34578690000006,2.449082500000031],[98.34470310000006,2.439642500000048],[98.34636930000005,2.433186700000022],[98.34004820000007,2.43208530000004],[98.34045290000006,2.42717220000003],[98.33815510000005,2.42514790000007],[98.32913310000004,2.423814],[98.32441970000008,2.425661300000058],[98.31459470000004,2.421494500000051],[98.30988090000005,2.424093300000038],[98.30276860000004,2.425173400000062],[98.29228140000004,2.42365060000003],[98.28869090000006,2.421264300000075],[98.28740140000008,2.414399500000059],[98.29509390000004,2.402481600000044],[98.29761340000005,2.39200610000006],[98.29603870000005,2.381022600000051],[98.29044320000008,2.366352100000029],[98.29641330000004,2.350387],[98.29536280000008,2.340577900000028],[98.29325960000006,2.337882600000057],[98.28752080000004,2.336340100000029],[98.27355350000005,2.338129],[98.25652170000006,2.346459400000072],[98.24714020000005,2.359091600000056],[98.24509890000007,2.360181],[98.24171930000006,2.359281100000032],[98.24160470000004,2.35725640000004],[98.24503820000007,2.354343500000027],[98.24830120000007,2.348120100000074],[98.25121950000005,2.329070100000024],[98.25283180000008,2.275516100000061],[98.26411520000005,2.264502500000049],[98.26608880000003,2.263649100000066],[98.26494610000003,2.266333400000065],[98.27006060000008,2.262341700000036],[98.26159860000007,2.260511100000031],[98.26760030000008,2.256785200000024],[98.26639010000008,2.253769600000055],[98.26981530000006,2.24181180000005],[98.26475360000006,2.237326600000074],[98.26580820000004,2.221121200000027],[98.27977840000005,2.222520100000054],[98.28391190000008,2.200106900000037],[98.27543340000005,2.188000300000056],[98.29184960000003,2.177526200000045],[98.30382310000005,2.161323300000049],[98.31178310000007,2.159285300000022],[98.31446120000004,2.161225900000034],[98.31594350000006,2.158852800000034],[98.32337970000003,2.158470800000032],[98.325851,2.155973300000028],[98.33367920000006,2.159912100000042],[98.33587650000004,2.148315400000058],[98.34189490000006,2.145700400000067],[98.35357910000005,2.143525300000022],[98.35533390000006,2.141228400000045],[98.37280480000004,2.131684900000039],[98.38626940000006,2.11853190000005],[98.41747210000005,2.113029100000062],[98.42915720000008,2.10782],[98.44489540000006,2.097683300000028],[98.44970240000004,2.092661200000066],[98.50606070000003,2.079727900000023],[98.51974770000004,2.083311400000071],[98.52553650000004,2.083495200000073],[98.52831080000004,2.081979400000023],[98.53940570000003,2.083196],[98.54900230000004,2.078548600000033],[98.55394060000003,2.074039600000049],[98.56220160000004,2.07458790000004],[98.57588820000007,2.080719],[98.57992860000007,2.079749400000026],[98.58324450000003,2.081934300000057],[98.59198780000008,2.083028600000034],[98.59602070000005,2.071209400000043],[98.59798430000006,2.070734300000026],[98.60019290000008,2.066347300000075],[98.60652560000005,2.061616900000047],[98.60489990000008,2.054225900000063],[98.60221830000006,2.05136310000006],[98.60230030000008,2.048337400000037],[98.60807350000005,2.039016400000037],[98.60441770000006,2.031819300000052],[98.60637060000005,2.02257910000003],[98.62308570000005,2.012613500000043],[98.62770170000005,2.015268800000058],[98.63194140000007,2.015269800000056],[98.63344960000006,2.011952400000041],[98.63826860000006,2.009292200000061],[98.63876110000007,2.010767500000043],[98.64442290000005,2.003411300000039],[98.64679220000005,2.00753],[98.64824890000006,2.015344],[98.65072260000005,2.01875990000002],[98.65536910000009,2.018040500000041],[98.66411090000008,2.002332300000035],[98.67314370000008,1.992009200000041],[98.67919060000008,1.989629500000035],[98.68293530000005,2.008024800000044],[98.72648190000007,2.116293400000075],[98.72502830000008,2.126174400000025],[98.73560060000005,2.126783300000056],[98.73932980000006,2.131696300000044],[98.74941180000008,2.13141360000003],[98.76589920000004,2.143644600000073],[98.77390790000004,2.146963500000027],[98.78116310000007,2.148007300000074],[98.79934740000004,2.158247500000073],[98.81652230000009,2.161103900000057],[98.816676,2.169508],[98.81105290000005,2.188131200000043],[98.83081490000006,2.195031200000074],[98.85776390000007,2.200058],[98.86388860000005,2.202333700000054],[98.87425310000003,2.210676400000068],[98.89517140000004,2.221958500000028],[98.92163740000007,2.229329100000029],[98.92506390000005,2.233342800000059],[98.92846130000004,2.233573],[98.94067950000004,2.262468600000034],[98.95808950000009,2.267293300000063],[98.964737,2.270653300000049],[98.96462380000008,2.274350800000036],[98.97242760000006,2.272530600000039],[98.97265370000008,2.275033600000029],[98.96829930000007,2.283111100000042],[98.97101330000004,2.297958],[98.96434040000008,2.301029600000049],[98.96162580000004,2.306831800000054],[98.95834580000007,2.310131],[98.95868510000008,2.312292600000035],[98.95387440000007,2.321287100000063],[98.94019570000006,2.320016500000065],[98.93780480000004,2.323878600000057],[98.93274620000005,2.322446],[98.928369,2.326385500000072],[98.92410950000004,2.323965300000054],[98.90000910000003,2.326953300000071],[98.89455590000006,2.325372700000059],[98.88971540000006,2.328452300000038],[98.88601430000006,2.33576510000006],[98.87398190000005,2.33221560000004],[98.86625420000007,2.334766500000057],[98.86392830000005,2.332815800000049],[98.85835840000004,2.331701800000076],[98.85904680000004,2.33415],[98.85761660000009,2.335451400000068],[98.85427950000008,2.338077300000066],[98.850223,2.333996],[98.84783950000008,2.333893800000055],[98.846724,2.332108300000073],[98.847181,2.326854200000071],[98.84048760000007,2.321905400000048],[98.83435160000005,2.321292600000049],[98.82765720000003,2.325117600000056],[98.82100870000005,2.331508],[98.81631430000004,2.346172],[98.81740730000007,2.349517500000047],[98.824335,2.357619400000033],[98.83537130000008,2.35550070000005]]]]},"properties":{"shapeName":"Humbang Hasundutan","shapeISO":"","shapeID":"22746128B77437526121359","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[110.34881250000007,-7.151427599999977],[110.34853520000007,-7.147875],[110.34730250000007,-7.148537],[110.34577930000006,-7.145150799999954],[110.34381950000005,-7.145181199999968],[110.34348290000008,-7.148266099999944],[110.34205370000006,-7.148927599999979],[110.33926890000004,-7.1448971],[110.33882180000006,-7.149478099999953],[110.33401980000008,-7.153663799999947],[110.32990920000009,-7.153522899999928],[110.32799210000007,-7.152059399999928],[110.33148,-7.15767],[110.34143830000005,-7.160506599999962],[110.34396230000004,-7.165815099999975],[110.33875610000007,-7.173331099999928],[110.33148540000008,-7.17273],[110.32994410000003,-7.170377599999938],[110.32714060000006,-7.173166299999934],[110.32458640000004,-7.173665799999981],[110.324127,-7.178188599999942],[110.31801260000009,-7.179479199999946],[110.32453480000004,-7.179721499999971],[110.321673,-7.181642],[110.32624790000006,-7.1812257],[110.32666910000006,-7.182854899999938],[110.33295870000006,-7.182906399999979],[110.33124120000008,-7.184342099999981],[110.33850490000009,-7.184416099999964],[110.34255930000006,-7.18793],[110.34279390000006,-7.191658299999972],[110.34071120000004,-7.194001299999968],[110.340376,-7.2002732],[110.34857060000007,-7.1834402],[110.35351,-7.18637],[110.36320620000004,-7.187295],[110.36100890000006,-7.182832899999937],[110.35754910000009,-7.1800726],[110.362836,-7.174671699999976],[110.367,-7.173131],[110.37386180000004,-7.174613],[110.380636,-7.1731287],[110.38865650000008,-7.169783399999972],[110.39025930000008,-7.1677582],[110.39841830000006,-7.166760099999976],[110.39847580000009,-7.1631823],[110.395203,-7.164273299999934],[110.39061620000007,-7.163446199999953],[110.38658580000003,-7.156561199999942],[110.38386420000006,-7.157328499999949],[110.38311140000008,-7.154601599999978],[110.38060820000004,-7.154601599999978],[110.37924040000007,-7.151415],[110.37726220000008,-7.152246299999945],[110.37759750000004,-7.149780899999939],[110.37203040000009,-7.152628],[110.37058710000008,-7.151247099999978],[110.371795,-7.148195],[110.369433,-7.148049799999967],[110.35282120000005,-7.158193199999971],[110.35030920000008,-7.157803099999967],[110.35115210000004,-7.155127899999968],[110.34828720000007,-7.153511599999945],[110.34881250000007,-7.151427599999977]]]},"properties":{"shapeName":"Hutan","shapeISO":"","shapeID":"22746128B53117320455925","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[103.34186130000006,-0.642038899999932],[103.336291,-0.643458799999962],[103.32482250000004,-0.659623799999963],[103.31619390000009,-0.666395699999953],[103.28451910000007,-0.672403],[103.25410570000008,-0.681064],[103.24072870000003,-0.681220399999972],[103.23547790000003,-0.684963599999946],[103.24082980000009,-0.691407799999979],[103.250223,-0.696541299999978],[103.25404580000009,-0.697524299999941],[103.273706,-0.696978199999933],[103.28735890000007,-0.701893299999938],[103.29161860000005,-0.701784],[103.30210410000007,-0.7001457],[103.32373030000008,-0.692172399999947],[103.34808710000004,-0.692718499999955],[103.37572060000008,-0.688349599999924],[103.39712830000008,-0.6929369],[103.40379090000005,-0.689332599999943],[103.40728610000008,-0.6864928],[103.40739530000008,-0.684854399999949],[103.40979820000007,-0.684963599999946],[103.41056280000004,-0.681577699999934],[103.41447340000008,-0.679577599999959],[103.41667930000006,-0.676335],[103.41509980000006,-0.6753181],[103.41634170000003,-0.675457199999926],[103.41984680000007,-0.669890799999962],[103.42028370000008,-0.660388399999931],[103.41864530000004,-0.657985499999938],[103.41602390000008,-0.656784],[103.41427640000006,-0.657548599999927],[103.41471330000007,-0.655145699999935],[103.41252880000008,-0.655254899999932],[103.41132730000004,-0.652961199999936],[103.40062350000005,-0.647390799999926],[103.39690990000008,-0.646844699999974],[103.37189770000003,-0.6516505],[103.35464050000007,-0.6450971],[103.34186130000006,-0.642038899999932]]],[[[103.42931640000006,-0.606312],[103.42678240000004,-0.603778],[103.41961740000005,-0.603166299999941],[103.40380190000008,-0.605700299999967],[103.39209310000007,-0.611205199999972],[103.37610280000007,-0.610855699999945],[103.36264650000004,-0.620030399999962],[103.35967570000008,-0.624399299999936],[103.35469510000007,-0.628156599999954],[103.34831640000004,-0.6280692],[103.34552030000003,-0.626671199999976],[103.343598,-0.627457599999957],[103.33704460000007,-0.633224599999949],[103.33555920000003,-0.638030399999934],[103.33590870000006,-0.6389916],[103.344297,-0.638379899999961],[103.35827760000006,-0.641525499999943],[103.37243290000004,-0.646593499999938],[103.40423880000009,-0.637331399999937],[103.41341350000005,-0.636457599999972],[103.41970480000003,-0.632525599999951],[103.42800570000009,-0.622127499999976],[103.43019020000008,-0.613040099999978],[103.42931640000006,-0.606312]]],[[[103.36770350000006,-0.3744428],[103.35241220000006,-0.368572099999938],[103.33084060000004,-0.356694],[103.31814340000005,-0.362564799999973],[103.31500330000006,-0.367343299999959],[103.31240920000005,-0.3753985],[103.30831330000007,-0.379630899999938],[103.30790380000008,-0.382498],[103.31031010000004,-0.386747499999956],[103.32140310000005,-0.395792599999936],[103.33329820000006,-0.399427699999933],[103.33602880000007,-0.403250499999956],[103.33548260000003,-0.411988299999962],[103.32891220000005,-0.433338099999958],[103.32976550000006,-0.435044699999935],[103.3348,-0.435744399999976],[103.36662830000006,-0.429754199999934],[103.37174820000007,-0.431972799999926],[103.376356,-0.437092599999971],[103.37874530000005,-0.442212499999926],[103.38181720000006,-0.460814599999935],[103.39205690000006,-0.4949468],[103.39512880000007,-0.510647699999936],[103.39888330000008,-0.515426199999979],[103.41253630000006,-0.5196927],[103.42004540000005,-0.521058],[103.42414120000007,-0.520375399999978],[103.42994370000008,-0.516108799999927],[103.43147970000007,-0.516962099999944],[103.44427930000006,-0.5132076],[103.45588420000007,-0.505527799999925],[103.46185740000004,-0.505698499999937],[103.46783050000005,-0.5039919],[103.46783050000005,-0.502797299999941],[103.47224440000008,-0.505761799999959],[103.47499830000004,-0.5041625],[103.47772890000005,-0.506381099999942],[103.48267810000004,-0.507234399999959],[103.484214,-0.509453],[103.50810660000008,-0.515596899999935],[103.51237320000007,-0.5144022],[103.51305580000007,-0.511671599999943],[103.518517,-0.513378299999943],[103.52978060000004,-0.510306399999934],[103.54514010000008,-0.501773299999968],[103.54479540000005,-0.499380599999938],[103.551458,-0.497086899999942],[103.55386090000007,-0.490205899999978],[103.55681,-0.490315099999975],[103.56500170000004,-0.482451],[103.57166430000007,-0.472839399999941],[103.57823140000005,-0.467282599999976],[103.60021260000008,-0.440522899999962],[103.604445,-0.432604199999957],[103.60512760000006,-0.426050799999928],[103.60144130000003,-0.413899699999945],[103.585604,-0.399564199999929],[103.57591040000005,-0.395741399999963],[103.56908390000007,-0.394922199999939],[103.54013980000008,-0.399154599999974],[103.53413250000006,-0.396970099999976],[103.52389280000006,-0.38714],[103.51788550000003,-0.372531399999957],[103.51283390000003,-0.368981699999949],[103.47023690000003,-0.381269299999929],[103.46300080000003,-0.380586599999958],[103.45480910000003,-0.377173399999947],[103.44634430000008,-0.370483499999978],[103.426411,-0.376217699999927],[103.40279150000003,-0.378538699999979],[103.39268830000003,-0.378675199999975],[103.36770350000006,-0.3744428]]],[[[103.30732720000009,-0.251989699999967],[103.28053330000006,-0.244139299999972],[103.27302420000007,-0.244480599999974],[103.268587,-0.247211199999924],[103.258518,-0.262058699999955],[103.25186220000006,-0.268373199999928],[103.23308950000006,-0.277588899999955],[103.23428410000008,-0.2799782],[103.24674240000007,-0.283391399999971],[103.25135020000005,-0.289705899999944],[103.26329650000008,-0.292265799999939],[103.27046430000007,-0.296020299999952],[103.29282090000004,-0.317523699999924],[103.30810880000007,-0.322189499999979],[103.32198010000008,-0.330272099999945],[103.33617920000006,-0.345017199999972],[103.34142190000006,-0.348621599999944],[103.36435880000005,-0.3574687],[103.37604570000008,-0.359107],[103.40782960000007,-0.3574687],[103.42639760000009,-0.358233199999972],[103.43721070000004,-0.355284199999971],[103.44704080000008,-0.347201699999971],[103.45217430000008,-0.340539099999944],[103.45883690000005,-0.321971099999928],[103.45927380000006,-0.313233199999956],[103.43797530000006,-0.301874],[103.42137330000008,-0.303075499999977],[103.40837580000004,-0.2947745],[103.40378840000005,-0.293245399999932],[103.3909,-0.293245399999932],[103.38088220000009,-0.296703],[103.36825330000005,-0.290047199999947],[103.36159750000007,-0.284756699999946],[103.35647760000006,-0.284074],[103.34709130000005,-0.286634],[103.34453130000009,-0.284756699999946],[103.34436070000004,-0.279636799999935],[103.34982180000009,-0.272127699999942],[103.35238180000005,-0.265130599999964],[103.34316610000008,-0.250965699999938],[103.33377970000004,-0.2521604],[103.30732720000009,-0.251989699999967]]],[[[103.56989960000004,-0.2209074],[103.55461790000004,-0.216065699999945],[103.53625970000007,-0.219596099999933],[103.52667710000009,-0.228270899999927],[103.51714490000006,-0.240022199999942],[103.49192750000009,-0.274267399999928],[103.47477970000006,-0.298022099999969],[103.470291,-0.306848199999934],[103.46388580000007,-0.329947299999958],[103.45107540000004,-0.358644699999957],[103.45384930000006,-0.364999499999954],[103.46116230000007,-0.371505599999978],[103.46847540000005,-0.373169899999937],[103.50050140000008,-0.362225599999931],[103.51245450000005,-0.360208199999931],[103.52339880000005,-0.365201199999944],[103.53530140000004,-0.385324699999956],[103.537924,-0.387695099999974],[103.54271530000005,-0.387796],[103.56273790000006,-0.3832568],[103.57938140000005,-0.383862099999931],[103.58346660000007,-0.385324699999956],[103.59632750000009,-0.394856799999957],[103.598597,-0.394907299999943],[103.60011010000005,-0.392536799999959],[103.60540570000006,-0.395714199999929],[103.62825260000005,-0.387997699999971],[103.65347,-0.374682899999925],[103.66476740000007,-0.366008199999953],[103.66718830000008,-0.366361199999972],[103.66920570000008,-0.364091599999938],[103.67445090000007,-0.3636377],[103.68356210000007,-0.3592868],[103.68998480000005,-0.358089899999925],[103.69396910000006,-0.354660299999978],[103.69886130000003,-0.355215099999953],[103.71560560000006,-0.350373399999967],[103.73941080000009,-0.346086399999933],[103.76372040000007,-0.344876],[103.77834650000005,-0.347196],[103.78344040000007,-0.345783799999936],[103.78565950000007,-0.343514299999924],[103.78621430000004,-0.340488199999925],[103.78439860000009,-0.335444699999925],[103.76755340000005,-0.309319499999958],[103.75923170000004,-0.299938599999962],[103.72604560000008,-0.272905599999945],[103.72146310000005,-0.266736899999955],[103.70985610000008,-0.256665599999963],[103.70294650000005,-0.25601],[103.69159870000004,-0.260599499999955],[103.69129610000005,-0.258128199999931],[103.68423520000005,-0.258077799999967],[103.66794480000004,-0.252832599999977],[103.66522130000004,-0.2537404],[103.66385960000008,-0.250310799999966],[103.65457960000003,-0.246427399999959],[103.65352050000007,-0.2434517],[103.64832570000004,-0.240476099999967],[103.64812390000009,-0.237399599999947],[103.64318130000004,-0.233768199999929],[103.64388740000004,-0.230641299999945],[103.64207180000005,-0.228371699999968],[103.63702830000005,-0.226556099999925],[103.61408050000006,-0.226556099999925],[103.60424570000004,-0.224488299999962],[103.59178830000008,-0.224488299999962],[103.57923010000007,-0.220251699999949],[103.56989960000004,-0.2209074]]],[[[103.47150680000004,-0.283306099999947],[103.520002,-0.212529399999937],[103.52218640000007,-0.2082697],[103.51497770000009,-0.201060899999959],[103.50940730000008,-0.200733299999968],[103.49935880000004,-0.204337599999974],[103.47926170000005,-0.206303599999956],[103.46298740000009,-0.211437099999955],[103.44824230000006,-0.214276899999959],[103.42399470000004,-0.231097299999931],[103.40716410000005,-0.239360699999963],[103.38173550000005,-0.2446513],[103.356307,-0.247552499999927],[103.34453130000009,-0.250795099999948],[103.35289030000007,-0.263536599999952],[103.35299960000003,-0.266485699999976],[103.35201660000007,-0.270417699999939],[103.34579080000003,-0.279592499999978],[103.34557240000004,-0.284726],[103.36162820000004,-0.283524499999942],[103.37921310000007,-0.294556099999966],[103.38259910000005,-0.2947745],[103.39275680000009,-0.290951699999937],[103.40531750000008,-0.291716199999939],[103.42290250000008,-0.301109399999973],[103.43382480000008,-0.299580299999946],[103.44463790000003,-0.301000199999976],[103.45883690000005,-0.310175],[103.46058450000004,-0.309738099999947],[103.46418890000007,-0.2973959],[103.47150680000004,-0.283306099999947]]],[[[103.55593640000006,-0.174847299999954],[103.53201650000005,-0.176485699999944],[103.51104560000005,-0.181619199999943],[103.49881260000006,-0.187626499999965],[103.47926170000005,-0.199859499999945],[103.47915250000005,-0.201060899999959],[103.49073010000006,-0.201060899999959],[103.51355780000006,-0.196801199999925],[103.52917670000005,-0.204556099999934],[103.53256260000006,-0.204556099999934],[103.56740490000004,-0.193961399999978],[103.56915240000006,-0.187517199999945],[103.56751410000004,-0.179653199999962],[103.56205290000008,-0.175611899999979],[103.55593640000006,-0.174847299999954]]],[[[103.59584020000005,-0.119684799999959],[103.59854450000006,-0.1188735],[103.60003180000007,-0.1152228],[103.58975580000003,-0.11982],[103.59584020000005,-0.119684799999959]]],[[[103.51701250000008,-0.1041356],[103.51904060000004,-0.103729899999962],[103.51917590000005,-0.102242599999954],[103.51444350000008,-0.0946708],[103.50862940000007,-0.091561],[103.50443790000008,-0.086423],[103.49916470000005,-0.086017399999946],[103.49253940000006,-0.088721599999928],[103.48983520000007,-0.096428599999967],[103.48726620000008,-0.099538399999972],[103.4801,-0.104541199999971],[103.474962,-0.105487699999969],[103.47482680000007,-0.107245399999954],[103.49253940000006,-0.117656599999975],[103.49781260000009,-0.119414399999926],[103.50389710000007,-0.119008699999938],[103.50538440000008,-0.116304499999956],[103.50430270000004,-0.105487699999969],[103.51701250000008,-0.1041356]]],[[[103.58177830000005,-0.077363899999966],[103.58056140000008,-0.073983599999963],[103.57812770000004,-0.073172399999976],[103.56528270000007,-0.077904699999976],[103.54824610000009,-0.078039899999965],[103.54094480000003,-0.083448399999952],[103.52728850000005,-0.087910299999976],[103.51674210000004,-0.09413],[103.52133920000006,-0.102648299999942],[103.52039270000006,-0.1041356],[103.51552520000007,-0.106298899999956],[103.50673650000004,-0.105758099999946],[103.50660130000006,-0.119008699999938],[103.51904060000004,-0.119955199999936],[103.53161520000003,-0.122929799999952],[103.54784050000006,-0.119549599999971],[103.56014470000008,-0.114952399999936],[103.58538110000006,-0.101986799999963],[103.59097270000007,-0.097239799999954],[103.59367690000005,-0.090344099999925],[103.58678110000005,-0.0854765],[103.58177830000005,-0.077363899999966]]],[[[103.47699020000005,-0.049780899999973],[103.46630850000008,-0.043426],[103.46455080000004,-0.045048599999973],[103.46779580000003,-0.0489697],[103.46752540000006,-0.052349899999967],[103.46522680000004,-0.056271],[103.46657890000006,-0.057758399999955],[103.46941840000005,-0.057623099999944],[103.47509720000005,-0.053161199999977],[103.48050560000007,-0.0550541],[103.48456190000007,-0.0657358],[103.482669,-0.0762822],[103.48915910000005,-0.080608899999959],[103.49145770000007,-0.084800499999972],[103.50051680000007,-0.082501899999954],[103.50579,-0.083854],[103.51417310000005,-0.0904793],[103.51647160000005,-0.090614499999958],[103.52864060000007,-0.081555399999957],[103.52701810000008,-0.078851199999974],[103.523773,-0.077634299999943],[103.51931110000004,-0.078445599999952],[103.51146890000007,-0.082907499999976],[103.50646610000007,-0.083042699999964],[103.50281540000009,-0.080879399999958],[103.50024640000004,-0.077499099999955],[103.50011120000005,-0.070197699999937],[103.48699570000008,-0.061949899999945],[103.47699020000005,-0.049780899999973]]],[[[103.66989150000006,-0.049629699999969],[103.681737,-0.040962199999967],[103.68245930000006,-0.0389398],[103.68000350000005,-0.036195099999929],[103.66396880000008,-0.021171599999946],[103.64056670000008,-0.014815499999941],[103.63608860000005,-0.015537799999947],[103.64215580000007,-0.0240607],[103.64374480000004,-0.032005899999945],[103.64908970000005,-0.044140299999924],[103.65400130000006,-0.046018199999935],[103.65674590000003,-0.050063],[103.65949060000008,-0.051363099999946],[103.66700240000006,-0.052518799999973],[103.66989150000006,-0.049629699999969]]],[[[103.64186690000008,-0.030416899999977],[103.64143350000006,-0.024638599999946],[103.63724420000005,-0.018860299999972],[103.63002140000003,-0.016693399999951],[103.61572010000003,-0.007592599999953],[103.60011880000008,-0.019149199999958],[103.60300790000008,-0.022905099999946],[103.607775,-0.0240607],[103.61514230000006,-0.031717],[103.616298,-0.031283599999938],[103.61889820000005,-0.038506499999926],[103.62496540000006,-0.043995799999948],[103.63868880000007,-0.050496399999929],[103.64807850000005,-0.048762899999929],[103.64865630000008,-0.046018199999935],[103.64186690000008,-0.030416899999977]]],[[[103.58794310000007,0.408046300000024],[103.59132340000008,0.412482900000043],[103.59111210000003,0.416496900000027],[103.58033750000004,0.43234190000004],[103.56512630000009,0.443750300000033],[103.55604190000008,0.447975600000063],[103.54547850000006,0.450299600000051],[103.53914050000009,0.44755310000005],[103.54083070000007,0.442905200000041],[103.54632360000005,0.436356],[103.55899960000005,0.42515880000002],[103.58561920000005,0.407835],[103.58794310000007,0.408046300000024]]],[[[103.44240890000003,-0.7396057],[103.441473,-0.736953899999946],[103.43732250000005,-0.7375],[103.43546570000007,-0.734004899999945],[103.42814770000007,-0.7333496],[103.4195,-0.7301138],[103.43470110000004,-0.720133499999974],[103.43666710000008,-0.716966099999979],[103.43579340000008,-0.712269499999934],[103.42859930000009,-0.707488599999976],[103.42301420000007,-0.705606799999941],[103.39822060000006,-0.704514599999925],[103.37582980000008,-0.695121399999948],[103.36731040000006,-0.695339899999965],[103.35955550000006,-0.697305899999947],[103.32886380000008,-0.697633499999938],[103.32012590000005,-0.698944199999971],[103.31390020000003,-0.702002499999935],[103.28779580000008,-0.705606799999941],[103.268791,-0.699927199999934],[103.25874240000007,-0.701674799999978],[103.25349970000008,-0.7011287],[103.22979830000008,-0.688895699999932],[103.22658440000004,-0.685195699999952],[103.23558710000003,-0.680594699999972],[103.25928850000008,-0.677754899999968],[103.27250460000005,-0.672512199999971],[103.28637590000005,-0.670218499999976],[103.29959190000005,-0.665740299999925],[103.31340590000008,-0.663709299999937],[103.32187350000004,-0.656456399999968],[103.32882360000008,-0.645528],[103.33487110000004,-0.639199099999928],[103.33541720000005,-0.634611699999937],[103.34055070000005,-0.628276799999981],[103.34437350000007,-0.626092299999925],[103.35373390000007,-0.627195499999971],[103.355831,-0.6260595],[103.36937470000004,-0.612515799999926],[103.37400580000008,-0.609719699999971],[103.38990870000003,-0.609545],[103.40598630000005,-0.603079],[103.41831210000004,-0.600207699999942],[103.42660770000003,-0.591195499999969],[103.43158830000004,-0.581234299999949],[103.43700570000004,-0.552836199999945],[103.43610460000008,-0.543344699999977],[103.42889840000004,-0.531191],[103.40436580000005,-0.525217899999973],[103.39035030000008,-0.515938199999937],[103.38710770000006,-0.507405099999971],[103.38710770000006,-0.501943899999958],[103.37738,-0.48027],[103.37482010000008,-0.467641],[103.37260150000009,-0.439140599999973],[103.37038290000004,-0.435215299999925],[103.36423910000008,-0.434362],[103.35161010000007,-0.439311199999963],[103.34102910000007,-0.441359199999965],[103.33369070000003,-0.441359199999965],[103.32413370000006,-0.438628599999959],[103.33420270000005,-0.409786799999949],[103.334032,-0.404667],[103.33130140000009,-0.401253699999927],[103.32157370000004,-0.398864499999945],[103.30911550000008,-0.388966099999948],[103.30570220000004,-0.381969],[103.31583750000004,-0.361214199999949],[103.32417830000009,-0.356402199999934],[103.32626350000004,-0.352713],[103.31888510000005,-0.344853399999977],[103.28263460000005,-0.325765699999977],[103.26178250000004,-0.305394799999931],[103.24604790000006,-0.305045099999973],[103.24482490000008,-0.287965299999939],[103.24339440000006,-0.286391699999967],[103.23178940000008,-0.284002399999963],[103.22786420000006,-0.279906599999947],[103.22684020000008,-0.271373499999925],[103.24663690000006,-0.263864399999932],[103.26199650000007,-0.243897],[103.26950560000006,-0.238435899999956],[103.277356,-0.236217299999964],[103.30944030000006,-0.243726399999957],[103.31899740000006,-0.243726399999957],[103.38504330000006,-0.231268099999966],[103.39681890000008,-0.2275135],[103.40466940000005,-0.222735],[103.43351110000003,-0.198159799999928],[103.45552650000008,-0.184165499999949],[103.46201160000004,-0.175632499999949],[103.47122730000007,-0.172048599999926],[103.49477860000007,-0.157883699999957],[103.50194640000007,-0.145766699999967],[103.49750920000008,-0.133991099999946],[103.48300290000009,-0.1273353],[103.47105660000005,-0.119996899999933],[103.47310460000006,-0.111122499999965],[103.470886,-0.107367899999929],[103.47208060000008,-0.103784],[103.479931,-0.101736099999926],[103.48537320000008,-0.097645499999942],[103.48821260000005,-0.093453899999929],[103.48888870000008,-0.086693399999945],[103.48753660000006,-0.082501899999954],[103.48104650000005,-0.078716],[103.47969440000008,-0.0762822],[103.482669,-0.069792099999972],[103.48131690000008,-0.061679499999968],[103.47793660000008,-0.055730199999971],[103.47536760000008,-0.055459799999937],[103.46860710000004,-0.0600569],[103.465362,-0.059786499999973],[103.46373950000009,-0.058028799999931],[103.46306350000003,-0.055595],[103.46576770000007,-0.050862599999959],[103.46563250000008,-0.048564],[103.46171140000007,-0.045724599999971],[103.46874230000009,-0.040992199999948],[103.48118170000004,-0.049375299999951],[103.487807,-0.057487899999956],[103.50146330000007,-0.066952699999945],[103.50416750000005,-0.070062499999949],[103.50416750000005,-0.078445599999952],[103.50984630000005,-0.078986399999962],[103.517959,-0.0743893],[103.523097,-0.073713199999929],[103.52904620000004,-0.075335699999926],[103.535942,-0.080203299999937],[103.54283770000006,-0.0743893],[103.56366010000005,-0.0707386],[103.57542340000003,-0.062355499999967],[103.57920930000006,-0.062896399999943],[103.58326570000008,-0.061003399999947],[103.593136,-0.050186599999961],[103.59665150000006,-0.04275],[103.59556980000008,-0.035719],[103.59259520000006,-0.032338799999934],[103.58894450000008,-0.031257099999948],[103.58569940000007,-0.0316627],[103.57799240000008,-0.036530299999924],[103.57042070000006,-0.035583799999927],[103.57380090000004,-0.032068299999935],[103.57582910000008,-0.031933099999947],[103.57756270000004,-0.028809899999942],[103.58867410000005,-0.021251499999948],[103.59922050000006,-0.017195199999946],[103.61571620000007,-0.005972699999973],[103.63383440000007,-0.014491],[103.636809,-0.012733199999957],[103.63978370000007,-0.012868399999945],[103.66466240000005,-0.018682499999954],[103.66331030000003,-0.014626199999952],[103.67926520000003,-0.0219276],[103.69048760000004,-0.023144499999944],[103.69238060000004,-0.021521899999925],[103.70482,-0.022198],[103.72456070000004,-0.018006399999933],[103.725372,-0.0161135],[103.72942830000005,-0.0169248],[103.73361980000004,-0.015302199999951],[103.74024510000004,-0.015167],[103.74795210000008,-0.011516299999926],[103.75417180000005,-0.012327599999935],[103.76187880000003,-0.009758599999941],[103.76255490000005,-0.008271299999933],[103.76498870000006,-0.009758599999941],[103.77986180000005,-0.009217799999931],[103.80676870000008,-0.012057199999958],[103.810149,-0.010975499999972],[103.81407010000004,-0.005837499999927],[103.81461090000005,-0.000158699999929],[103.80433490000007,0.024990500000058],[103.78824490000005,0.055683300000055],[103.78229560000005,0.072449400000039],[103.77553510000007,0.101384500000052],[103.77539990000008,0.110578800000042],[103.77132240000009,0.12854070000003],[103.771745,0.134244900000056],[103.76923210000007,0.150703700000065],[103.76794220000005,0.15199130000002],[103.76646330000005,0.185371400000065],[103.75695630000007,0.21896270000002],[103.74267290000006,0.250837900000022],[103.71512550000006,0.296708800000033],[103.70646360000006,0.305793300000062],[103.69273130000005,0.314455200000054],[103.67857640000005,0.326074900000037],[103.67329480000006,0.327131200000053],[103.65090050000003,0.338750800000071],[103.63737950000007,0.342976200000066],[103.61392890000008,0.346567700000037],[103.602943,0.358398600000044],[103.59956280000006,0.368539400000031],[103.58794310000007,0.39199],[103.57780230000009,0.401285700000074],[103.56660520000008,0.408257500000047],[103.55519680000003,0.417764500000033],[103.53449270000004,0.439736200000027],[103.51083080000006,0.449243200000069],[103.496676,0.456637600000022],[103.49561960000005,0.460651600000062],[103.48885910000007,0.461919200000068],[103.48843660000006,0.464665700000069],[103.48505630000005,0.465510700000038],[103.48315490000005,0.468679700000052],[103.47491550000007,0.474595200000067],[103.47216910000009,0.47903180000003],[103.46076070000004,0.489383900000064],[103.45294380000007,0.493186700000024],[103.43942270000008,0.502904900000033],[103.43815510000007,0.506919],[103.43181720000007,0.508609100000058],[103.42738060000005,0.514313300000026],[103.41512710000006,0.523186500000065],[103.39252160000007,0.531848400000058],[103.35725020000007,0.537351200000046],[103.35603260000005,0.531001500000059],[103.34659960000005,0.510894400000041],[103.33887780000003,0.487624800000049],[103.33689060000006,0.485341600000027],[103.29552890000008,0.468591500000059],[103.26362050000006,0.452150600000039],[103.25599350000005,0.44639890000002],[103.20809410000004,0.408388200000047],[103.14501670000004,0.340469300000052],[103.11599920000003,0.32512950000006],[103.07154010000005,0.313853100000074],[103.04404910000005,0.304404300000044],[103.02763930000003,0.301304300000027],[103.015296,0.297073200000057],[103.00393350000007,0.290864800000065],[102.96002270000008,0.256850800000052],[102.91751270000003,0.218596400000024],[102.90292090000008,0.202078500000027],[102.88411930000007,0.176664500000072],[102.87036980000005,0.162122],[102.85900610000004,0.153086200000075],[102.84400540000007,0.145397400000036],[102.83510680000006,0.13786390000007],[102.81412210000008,0.126431],[102.794994,0.119761800000049],[102.78185110000004,0.11714790000002],[102.74494980000009,0.113701300000059],[102.73066980000004,0.108323800000051],[102.71696940000004,0.105364500000064],[102.71681470000004,-0.454336199999943],[102.72014620000004,-0.462093599999946],[102.71775690000004,-0.4668081],[102.707358,-0.477276199999949],[102.70221080000005,-0.477220299999942],[102.694423,-0.469897899999978],[102.69118730000008,-0.469061499999953],[102.68732610000006,-0.539322699999957],[102.66607940000006,-0.590853899999956],[102.66333790000004,-0.604970199999968],[102.66767480000004,-0.656683599999951],[102.66712610000008,-0.672084199999972],[102.65656250000006,-0.679166199999941],[102.64545570000007,-0.689518699999951],[102.63934790000008,-0.716169499999978],[102.63862420000004,-0.805905299999949],[102.63401450000003,-0.817078199999969],[102.62588520000008,-0.827158599999962],[102.59100940000008,-0.858149099999935],[102.58333310000006,-0.869111199999963],[102.57601730000005,-0.889093599999967],[102.57056220000004,-0.913993199999936],[102.56747320000005,-0.937049899999977],[102.56266760000005,-1.020455499999969],[102.559379,-1.060387399999968],[102.55502780000006,-1.090031599999975],[102.55623760000009,-1.0958011],[102.55860580000007,-1.097319699999957],[102.56685190000007,-1.095359599999938],[102.57139910000006,-1.0966127],[102.58677670000009,-1.092201499999931],[102.60279850000006,-1.094744099999957],[102.61681370000008,-1.094634199999973],[102.62316130000005,-1.097864899999934],[102.63034820000007,-1.109973299999979],[102.63778860000008,-1.115886199999977],[102.641659,-1.121008],[102.64680480000004,-1.122272799999962],[102.64957270000008,-1.118519699999979],[102.65406910000007,-1.115818599999955],[102.66329020000006,-1.1139963],[102.67156250000005,-1.110020499999962],[102.67465030000005,-1.096413799999937],[102.67648130000003,-1.094776799999977],[102.68532040000008,-1.095309899999961],[102.68566130000005,-1.084511199999952],[102.690982,-1.087241899999924],[102.70538610000006,-1.081871399999955],[102.709746,-1.082460699999956],[102.716976,-1.074286],[102.72903240000005,-1.078636299999971],[102.73199220000004,-1.076844599999959],[102.734847,-1.072374],[102.733197,-1.054062899999963],[102.74021140000008,-1.048004599999956],[102.74716240000004,-1.0475073],[102.75097860000005,-1.044221199999924],[102.75659760000008,-1.045600599999943],[102.75992920000004,-1.038881699999934],[102.75590570000008,-1.032779399999924],[102.75810730000006,-1.027722099999949],[102.76051940000008,-1.027472599999953],[102.77056660000005,-1.033997699999929],[102.77337150000005,-1.032827699999928],[102.77365780000008,-1.031201299999964],[102.77740070000004,-1.030988699999966],[102.78178360000004,-1.033072799999957],[102.78315180000004,-1.030442599999958],[102.78286920000005,-1.026722899999925],[102.78101870000006,-1.024605599999973],[102.78195980000004,-1.022679],[102.78109440000009,-1.019769899999972],[102.77370520000005,-1.013838599999929],[102.77536280000004,-1.008865899999932],[102.78342430000004,-0.998474499999929],[102.79002130000003,-0.9941076],[102.824717,-0.959897799999965],[102.86159620000006,-0.931586],[102.88303810000008,-0.912560599999949],[102.92805150000004,-0.867494499999964],[102.96164630000004,-0.820907699999964],[102.97234540000005,-0.8082257],[103.00361020000008,-0.762929299999939],[103.01223050000004,-0.755344299999933],[103.04868610000005,-0.754745199999945],[103.06814940000004,-0.756763599999942],[103.082623,-0.756554699999924],[103.092604,-0.758497],[103.09780920000009,-0.757566299999951],[103.10646390000005,-0.752583699999946],[103.12154640000006,-0.746922799999936],[103.13890570000007,-0.749165699999935],[103.14689030000005,-0.751932499999953],[103.22172310000008,-0.767859199999975],[103.25280570000007,-0.772877899999969],[103.26476170000007,-0.776430699999935],[103.345248,-0.792902399999946],[103.34808810000004,-0.793956399999956],[103.35046130000006,-0.803420699999947],[103.35317010000006,-0.805802599999936],[103.35719880000005,-0.8066896],[103.36148980000007,-0.805231699999979],[103.36619890000009,-0.798617599999943],[103.37771660000004,-0.796073799999931],[103.42485740000006,-0.7760149],[103.43972420000006,-0.771243099999936],[103.44335890000008,-0.763867199999936],[103.44557370000007,-0.752214699999968],[103.44214180000006,-0.743934099999933],[103.44240890000003,-0.7396057]]]]},"properties":{"shapeName":"Indragiri Hilir","shapeISO":"","shapeID":"22746128B66305814154539","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[102.71696940000004,0.105364500000064],[102.62677190000005,0.103564400000039],[102.59339460000007,0.101282300000037],[102.565644,0.093202900000051],[102.55115090000004,0.084668700000066],[102.53813640000004,0.074943],[102.51516310000005,0.049138300000038],[102.50007750000003,0.023332100000061],[102.49630160000004,0.012168900000063],[102.48541070000005,-0.069193599999949],[102.47966130000003,-0.088939299999936],[102.475463,-0.097796899999935],[102.458261,-0.119291],[102.43288470000005,-0.147387399999957],[102.40715520000003,-0.1664377],[102.38371580000006,-0.1765558],[102.36807620000008,-0.178831499999944],[102.33909140000009,-0.177701299999967],[102.300557,-0.174092899999948],[102.25264330000005,-0.165841],[102.22509790000004,-0.166468599999973],[102.20733970000003,-0.171979699999952],[102.194754,-0.179636499999958],[102.190576,-0.186268199999972],[102.17934460000004,-0.212384499999928],[102.17411370000008,-0.246734799999956],[102.16914530000008,-0.259148599999946],[102.165246,-0.263565],[102.15021540000004,-0.2695998],[102.11731180000004,-0.270452699999964],[102.10202520000007,-0.273117099999979],[102.09716870000005,-0.275560199999973],[102.04742650000009,-0.312029],[102.03163540000008,-0.329814299999953],[102.01877190000005,-0.350069099999928],[101.96962340000005,-0.400349299999959],[101.96081020000008,-0.406460399999958],[101.95115580000004,-0.407537399999967],[101.93921470000004,-0.404944199999932],[101.92721980000005,-0.400114299999927],[101.90688770000008,-0.399494699999934],[101.89257430000004,-0.395723799999928],[101.88946690000006,-0.413456599999961],[101.88978670000006,-0.424929599999928],[101.89230630000009,-0.4359116],[101.89703610000004,-0.447866699999963],[101.90819680000004,-0.467982499999948],[101.91135160000005,-0.487018],[101.91209280000004,-0.504009699999926],[101.908125,-0.510770499999978],[101.90631620000005,-0.538080799999932],[101.88452340000003,-0.572502],[101.86122810000006,-0.598644099999945],[101.84837890000006,-0.604585899999961],[101.84571990000006,-0.6094839],[101.84448510000004,-0.616213499999958],[101.83972430000006,-0.6226215],[101.80570520000003,-0.660154499999976],[101.80656010000007,-0.6747395],[101.80282510000006,-0.679875399999958],[101.79944270000004,-0.691345599999977],[101.79961970000005,-0.697069499999941],[101.79297390000005,-0.708629799999926],[101.79212420000005,-0.722576699999934],[101.79538180000009,-0.734233899999936],[101.78835410000005,-0.740472299999965],[101.78703120000006,-0.7540848],[101.789192,-0.75644],[101.78517060000007,-0.780075099999976],[101.78065930000008,-0.789910299999974],[101.77698790000005,-0.794235399999934],[101.77757450000007,-0.7987276],[101.78214470000006,-0.800489499999969],[101.78558240000007,-0.814289699999961],[101.78423080000005,-0.823335],[101.77846530000005,-0.833553299999949],[101.78161820000008,-0.837718699999925],[101.78330880000004,-0.843074299999955],[101.78825350000005,-0.844176299999958],[101.79630830000008,-0.850189899999975],[101.798463,-0.857554199999925],[101.805504,-0.856699299999946],[101.81246270000008,-0.859205799999927],[101.81702110000003,-0.861778799999968],[101.82662460000006,-0.874736799999937],[101.83970570000008,-0.880174499999953],[101.84785060000007,-0.899951199999975],[101.84377690000008,-0.911568799999941],[101.84724710000006,-0.915039],[101.85116360000006,-0.922340799999972],[101.85304450000007,-0.922399799999937],[101.85779980000007,-0.914487899999926],[101.86479510000004,-0.912283399999978],[101.86810340000005,-0.909546599999942],[101.87804870000008,-0.910903699999949],[101.88164090000004,-0.909458],[101.89188410000008,-0.895739399999968],[101.89484930000003,-0.894218],[101.89603120000004,-0.891149899999959],[101.90805030000007,-0.887949699999979],[101.91468990000004,-0.883052699999951],[101.91675190000007,-0.884611799999959],[101.918556,-0.893220499999927],[101.92333270000006,-0.8973845],[101.92787370000008,-0.905183499999964],[101.936058,-0.908719899999937],[101.93926240000008,-0.906813099999965],[101.94177250000007,-0.902314599999954],[101.94696810000005,-0.900346899999931],[101.95401760000004,-0.903792499999952],[101.95905620000008,-0.909696599999961],[101.96744790000008,-0.897131099999967],[101.97063450000007,-0.889648099999931],[101.97772220000007,-0.882837199999926],[101.983551,-0.880407499999933],[101.99425510000003,-0.882003199999929],[101.99968720000004,-0.881360399999949],[102.00405880000005,-0.878717599999959],[102.00777440000007,-0.878604399999972],[102.03048970000003,-0.890575199999944],[102.04794380000004,-0.897096],[102.05797580000007,-0.889921699999945],[102.06237030000005,-0.8895209],[102.07064820000005,-0.896380099999931],[102.09126280000004,-0.905435],[102.099144,-0.911545199999978],[102.11708320000008,-0.920966199999953],[102.13346860000007,-0.913234199999977],[102.13930510000006,-0.899412499999926],[102.14781190000008,-0.903103599999952],[102.15523530000007,-0.903798799999947],[102.16500090000005,-0.898734899999965],[102.16677090000007,-0.905706],[102.17042540000006,-0.908127299999933],[102.17396550000007,-0.913774399999966],[102.17722320000007,-0.915561899999943],[102.18430330000007,-0.915680899999927],[102.18766780000004,-0.918044399999928],[102.18875120000007,-0.923402099999976],[102.18692020000009,-0.931638499999963],[102.18788910000006,-0.942468499999961],[102.20359040000005,-0.948525299999972],[102.21939350000008,-0.944979199999977],[102.22981260000006,-0.938689199999942],[102.23564150000004,-0.931146299999966],[102.23952480000008,-0.931436399999939],[102.24303490000005,-0.933539899999971],[102.24813320000004,-0.931249399999956],[102.24975590000008,-0.925451],[102.25432590000008,-0.921536499999945],[102.26300810000004,-0.923384399999975],[102.27523040000005,-0.917861099999925],[102.29351040000006,-0.916315599999962],[102.30681610000005,-0.917359599999941],[102.30989840000007,-0.9205295],[102.312233,-0.933088399999974],[102.32267760000008,-0.947840499999927],[102.32438660000008,-0.960802299999955],[102.32633210000006,-0.963337799999977],[102.32992550000006,-0.9655864],[102.34403230000004,-0.963981],[102.35042570000007,-0.969053599999938],[102.35768130000008,-0.97044],[102.36573030000005,-0.976319799999942],[102.37310030000003,-0.9851372],[102.38623050000007,-0.993381599999964],[102.38531490000008,-0.999947899999938],[102.37882230000008,-1.001558399999965],[102.37538150000006,-1.0057653],[102.37686160000004,-1.011184699999944],[102.37422180000004,-1.0182166],[102.37490080000003,-1.020753399999933],[102.38244630000008,-1.026693699999953],[102.42346950000007,-1.0289],[102.43090060000009,-1.031612399999972],[102.43874360000007,-1.025389699999948],[102.44252010000008,-1.0254487],[102.44994350000007,-1.037211499999955],[102.47023010000004,-1.057510899999954],[102.47171020000008,-1.060163299999942],[102.468895,-1.067829299999971],[102.47649380000007,-1.076882599999976],[102.48193780000008,-1.079921299999967],[102.49957310000008,-1.083500799999968],[102.51716610000005,-1.079550099999949],[102.52471920000005,-1.082492899999977],[102.52780020000006,-1.0854181],[102.53803450000004,-1.087009],[102.54336550000005,-1.082846],[102.54936980000008,-1.085615299999972],[102.55036050000007,-1.090358699999967],[102.55502780000006,-1.090031599999975],[102.559379,-1.060387399999968],[102.56266760000005,-1.020455499999969],[102.56747320000005,-0.937049899999977],[102.57056220000004,-0.913993199999936],[102.57601730000005,-0.889093599999967],[102.58333310000006,-0.869111199999963],[102.59100940000008,-0.858149099999935],[102.62588520000008,-0.827158599999962],[102.63401450000003,-0.817078199999969],[102.63862420000004,-0.805905299999949],[102.63934790000008,-0.716169499999978],[102.64545570000007,-0.689518699999951],[102.65656250000006,-0.679166199999941],[102.66712610000008,-0.672084199999972],[102.66767480000004,-0.656683599999951],[102.66333790000004,-0.604970199999968],[102.66607940000006,-0.590853899999956],[102.68732610000006,-0.539322699999957],[102.69118730000008,-0.469061499999953],[102.694423,-0.469897899999978],[102.70221080000005,-0.477220299999942],[102.707358,-0.477276199999949],[102.71775690000004,-0.4668081],[102.72014620000004,-0.462093599999946],[102.71681470000004,-0.454336199999943],[102.71696940000004,0.105364500000064]]]},"properties":{"shapeName":"Indragiri Hulu","shapeISO":"","shapeID":"22746128B15188202372868","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[108.53903080000003,-6.516187899999977],[108.536461,-6.501292499999977],[108.53782330000007,-6.492732399999966],[108.53475020000008,-6.480757799999935],[108.51923130000006,-6.477374199999929],[108.49353320000006,-6.464406099999962],[108.46845560000008,-6.4471233],[108.45993670000007,-6.439450799999975],[108.45965780000006,-6.436986299999944],[108.45780180000008,-6.437543099999971],[108.44823160000004,-6.431173599999966],[108.43349090000004,-6.413684499999931],[108.43159920000005,-6.4138273],[108.42329490000009,-6.405142299999966],[108.42023730000005,-6.399657599999955],[108.41026850000009,-6.3887811],[108.40783510000006,-6.385005099999944],[108.408542,-6.383736599999963],[108.40354510000009,-6.379529799999943],[108.39255990000004,-6.360039599999936],[108.39131310000005,-6.360748699999931],[108.38890030000005,-6.359392399999933],[108.38834350000008,-6.356508499999961],[108.38523120000008,-6.357579199999975],[108.37346,-6.33188],[108.36889140000005,-6.314023199999951],[108.36840960000006,-6.307122799999945],[108.36955170000005,-6.304695699999968],[108.371836,-6.304600499999935],[108.369359,-6.294593499999962],[108.36975160000009,-6.290560299999981],[108.360892,-6.257520099999965],[108.35851260000004,-6.261327199999926],[108.35292080000005,-6.2589478],[108.34899470000005,-6.2469315],[108.34566350000006,-6.247883299999955],[108.33971480000008,-6.252642199999968],[108.34162950000007,-6.257160699999929],[108.33897,-6.26439],[108.33887,-6.27271],[108.33697,-6.27488],[108.33492,-6.27485],[108.32685,-6.26807],[108.32873,-6.2645],[108.32152,-6.2605],[108.32001980000007,-6.254305099999954],[108.31033120000006,-6.253572299999973],[108.29455960000007,-6.249070199999949],[108.28599350000007,-6.248118499999975],[108.25565540000008,-6.248594399999945],[108.24032730000005,-6.2433196],[108.236699,-6.244129499999929],[108.22051870000007,-6.240147299999933],[108.21195260000007,-6.236161699999968],[108.20671780000004,-6.231700199999977],[108.20201840000004,-6.2272982],[108.19874660000005,-6.221171099999935],[108.19559380000004,-6.221528],[108.19446360000006,-6.223669499999971],[108.18952620000005,-6.226584299999956],[108.17370280000006,-6.224859199999969],[108.172632,-6.228725899999972],[108.16799210000005,-6.231402799999955],[108.17298890000006,-6.231343299999935],[108.17899710000006,-6.233901199999934],[108.19321440000004,-6.236756499999956],[108.194642,-6.237886799999956],[108.19386870000005,-6.240385199999935],[108.19137030000007,-6.240742099999977],[108.18922880000008,-6.243419],[108.19018050000005,-6.244132899999954],[108.19975790000007,-6.241158499999926],[108.20225630000004,-6.242467199999965],[108.20759820000006,-6.264655699999935],[108.20874030000004,-6.267082799999969],[108.21027180000004,-6.267146399999945],[108.20852620000005,-6.270009499999958],[108.21034,-6.27363],[108.20328870000009,-6.276178],[108.20222,-6.27883],[108.19781860000006,-6.279075299999931],[108.19517740000003,-6.281074],[108.19439220000004,-6.283715199999961],[108.19225,-6.28504],[108.19182240000004,-6.2916388],[108.19011440000008,-6.295259099999953],[108.18631150000004,-6.293380599999978],[108.18151450000005,-6.2953222],[108.17063,-6.30385],[108.16923650000007,-6.3076573],[108.158272,-6.3150241],[108.14781,-6.31603],[108.13891270000005,-6.320049599999948],[108.13674260000005,-6.324332599999934],[108.13378610000007,-6.325454499999978],[108.13223950000008,-6.332949799999938],[108.12780770000006,-6.3350616],[108.12087760000009,-6.334169299999928],[108.11986630000007,-6.331492399999945],[108.12408980000004,-6.330540599999949],[108.120937,-6.328815499999962],[108.09836190000004,-6.328369399999929],[108.09200130000005,-6.3267983],[108.08974790000008,-6.324544899999978],[108.09046690000008,-6.322948599999961],[108.0888,-6.31917],[108.08765430000005,-6.320874099999969],[108.07444830000009,-6.319684299999949],[108.031273,-6.306609199999968],[108.03079710000009,-6.305110099999979],[108.02499120000004,-6.303492099999971],[108.01541060000005,-6.295592299999953],[108.010881,-6.293807699999945],[108.00362370000005,-6.287073799999973],[107.99810330000008,-6.285574699999927],[107.99155980000006,-6.280577899999969],[107.98813930000006,-6.280250699999954],[107.975082,-6.2722498],[107.963155,-6.267996499999981],[107.95732530000004,-6.263237599999968],[107.95393460000008,-6.262196499999959],[107.94895350000007,-6.257231399999966],[107.94358390000008,-6.258448899999962],[107.923665,-6.251965699999971],[107.92636280000005,-6.256382699999961],[107.92535,-6.262929699999972],[107.91804260000004,-6.269244899999933],[107.91617510000003,-6.269432],[107.91468820000006,-6.267751499999974],[107.91183480000007,-6.2697752],[107.91551980000008,-6.2706521],[107.91516970000004,-6.273823099999959],[107.91661510000006,-6.273759699999971],[107.91808330000003,-6.271148499999981],[107.91803750000008,-6.272776399999941],[107.92135950000005,-6.27431],[107.92073140000008,-6.276841299999944],[107.92334760000006,-6.2769387],[107.92306530000008,-6.279218499999956],[107.92542270000007,-6.279590399999961],[107.92149360000008,-6.283394199999975],[107.92452250000008,-6.285414499999945],[107.92290510000004,-6.288185399999975],[107.923256,-6.290294],[107.92501840000006,-6.290853799999979],[107.92184460000004,-6.295571199999927],[107.92355360000005,-6.302905899999928],[107.92187510000008,-6.310755599999936],[107.92273190000009,-6.312282399999958],[107.92732640000008,-6.311423],[107.92957140000004,-6.308019599999966],[107.93047670000004,-6.309733699999981],[107.92714530000006,-6.312185],[107.93005130000006,-6.3186065],[107.92800320000003,-6.324946199999943],[107.92158890000007,-6.322037699999953],[107.91797780000007,-6.323521199999959],[107.92394010000004,-6.324072899999976],[107.92829160000008,-6.327468499999952],[107.92393940000005,-6.336930499999937],[107.92426760000006,-6.340019499999926],[107.92253360000007,-6.341153599999927],[107.91967490000008,-6.340363399999944],[107.91661080000006,-6.347509699999932],[107.91757210000009,-6.350590499999953],[107.92031110000005,-6.351093099999957],[107.92351540000004,-6.359858299999928],[107.91464080000009,-6.370474399999978],[107.91888380000006,-6.371031],[107.91537790000007,-6.375434499999926],[107.91401320000006,-6.376910199999941],[107.90827190000005,-6.377573799999936],[107.898079,-6.390274799999929],[107.89483650000005,-6.397199],[107.89869570000008,-6.401365],[107.89890310000004,-6.406225399999926],[107.89662180000005,-6.404213699999957],[107.890503,-6.4036],[107.89310490000008,-6.407898099999954],[107.89135780000004,-6.410301499999946],[107.89170080000008,-6.413956],[107.88794710000008,-6.416313],[107.89314280000008,-6.416518],[107.89457980000009,-6.4229134],[107.89704040000004,-6.425654599999973],[107.89157880000005,-6.433800499999961],[107.89266210000005,-6.4388898],[107.89004520000009,-6.443294299999934],[107.89479390000008,-6.448923],[107.89120570000006,-6.448943399999962],[107.89110330000005,-6.450870899999927],[107.89301950000004,-6.452409099999954],[107.88988030000007,-6.455015099999969],[107.88892520000007,-6.4577528],[107.87890850000008,-6.457212899999945],[107.88729330000007,-6.4579194],[107.88798510000004,-6.459771899999964],[107.89101680000005,-6.4599662],[107.89199710000008,-6.462968499999931],[107.89509670000007,-6.4626924],[107.89517340000003,-6.472044699999969],[107.89918830000005,-6.471598799999981],[107.89775210000005,-6.475178899999946],[107.89940910000007,-6.477354799999944],[107.89653690000006,-6.480426099999931],[107.89829420000007,-6.484991299999933],[107.90286150000009,-6.482397399999968],[107.90561820000005,-6.484217899999976],[107.908464,-6.483365499999934],[107.91064720000008,-6.485613699999931],[107.91169790000004,-6.482511],[107.91341110000008,-6.484546299999977],[107.91231380000005,-6.488389299999938],[107.91876170000006,-6.485829299999978],[107.91904290000008,-6.487992299999974],[107.91307630000006,-6.4912213],[107.91551540000006,-6.494894599999952],[107.92029890000003,-6.490985599999931],[107.91947980000003,-6.493886499999974],[107.91701150000006,-6.495498099999963],[107.90777580000008,-6.496073699999954],[107.90932650000008,-6.498393699999951],[107.90570970000005,-6.505371199999956],[107.90682440000006,-6.507126399999947],[107.91103230000004,-6.506908],[107.91326970000006,-6.501476099999934],[107.91552080000008,-6.5010003],[107.91975770000005,-6.508631899999955],[107.91801440000006,-6.511510499999929],[107.92015140000007,-6.514494799999966],[107.91736610000004,-6.516970399999934],[107.91623690000006,-6.524644699999953],[107.91192640000008,-6.528056899999967],[107.90827950000005,-6.528713],[107.90898610000005,-6.532552199999941],[107.91142870000004,-6.53421],[107.90927450000004,-6.539397599999972],[107.90132080000006,-6.545681],[107.89670140000004,-6.547298299999966],[107.89388290000005,-6.546519199999977],[107.89358630000004,-6.549290299999939],[107.89832210000009,-6.549588299999925],[107.89603430000005,-6.553245799999956],[107.89236460000006,-6.553102299999978],[107.89368450000006,-6.5571401],[107.88670360000003,-6.555251899999973],[107.88443,-6.556770099999937],[107.88357550000006,-6.559950599999979],[107.88043220000009,-6.562109299999975],[107.88101970000008,-6.5666454],[107.877716,-6.5684407],[107.87712150000004,-6.567128599999933],[107.87372820000007,-6.566567299999974],[107.86716110000003,-6.568627],[107.86305,-6.567656299999953],[107.85143290000008,-6.571598299999948],[107.85129550000005,-6.574844599999949],[107.85558360000005,-6.578923],[107.87524420000005,-6.584467699999948],[107.87950910000006,-6.587841799999978],[107.90413670000004,-6.592988799999944],[107.90914160000005,-6.5960167],[107.91832740000007,-6.603174],[107.92065440000005,-6.6072839],[107.92533120000007,-6.610387099999969],[107.92709360000003,-6.614077399999928],[107.92840580000006,-6.613653499999941],[107.93063360000008,-6.615872199999956],[107.93523410000006,-6.614843199999939],[107.936554,-6.621958099999972],[107.94030770000006,-6.625615899999957],[107.95030220000007,-6.627321599999959],[107.95339210000009,-6.631172],[107.96134960000006,-6.632597699999963],[107.97015390000007,-6.638841],[107.97707380000008,-6.654524599999945],[107.98565680000007,-6.662163599999928],[107.98876960000007,-6.669610299999931],[107.99662790000008,-6.667234699999938],[107.99862680000007,-6.668043399999931],[107.99857340000005,-6.670023799999967],[108.00135810000006,-6.669743599999947],[108.00463870000004,-6.6726187],[108.00566110000005,-6.670169199999975],[108.00880440000009,-6.671633099999951],[108.00832,-6.674272],[108.01260290000005,-6.672225399999945],[108.01160460000006,-6.674966199999972],[108.01504530000005,-6.674702899999943],[108.016655,-6.676157799999942],[108.01992810000007,-6.673580499999957],[108.02041920000005,-6.676199699999927],[108.02184880000004,-6.6753537],[108.02559830000007,-6.677756099999954],[108.02475740000006,-6.674023899999952],[108.02661140000004,-6.675480199999981],[108.02751930000005,-6.6741112],[108.02494820000004,-6.669598399999927],[108.02709210000006,-6.668318099999965],[108.027649,-6.664298799999926],[108.02960210000003,-6.663027099999965],[108.028122,-6.660612899999933],[108.03023540000004,-6.659645399999931],[108.02873240000008,-6.656443],[108.03075420000005,-6.654555099999925],[108.03309640000003,-6.655549399999927],[108.03482830000007,-6.654559499999948],[108.03240210000007,-6.652048399999956],[108.03488170000008,-6.647717799999953],[108.03278360000007,-6.644986399999937],[108.03445440000007,-6.643440099999964],[108.03120430000007,-6.638549599999976],[108.03291330000008,-6.637094299999944],[108.03484350000008,-6.640602399999977],[108.03781130000004,-6.641500299999961],[108.042656,-6.640696799999944],[108.04312140000008,-6.639104699999962],[108.042183,-6.637121],[108.04581460000009,-6.633534699999927],[108.04414370000006,-6.631180099999938],[108.04762280000006,-6.633191899999929],[108.04795080000008,-6.630061],[108.04594430000009,-6.629321399999981],[108.04930890000009,-6.628330499999947],[108.05046090000008,-6.626134199999967],[108.05233770000007,-6.626872899999967],[108.04909520000007,-6.62336],[108.05193340000005,-6.623660899999948],[108.05511480000007,-6.621090199999969],[108.05832680000009,-6.622497399999929],[108.05727390000004,-6.618797099999938],[108.05946360000007,-6.620101699999964],[108.06277470000003,-6.6165055],[108.06428530000005,-6.6173232],[108.06490330000008,-6.614725],[108.06687170000004,-6.616535499999941],[108.067833,-6.612943499999972],[108.0709,-6.614144599999975],[108.07124340000007,-6.609414399999935],[108.06893930000007,-6.608501299999944],[108.06990060000004,-6.6033519],[108.07259380000005,-6.602190299999961],[108.06917580000004,-6.601416],[108.071663,-6.600947699999949],[108.069893,-6.599204399999962],[108.07286080000006,-6.599149499999953],[108.07432560000007,-6.596526499999925],[108.07218180000007,-6.594733099999928],[108.073578,-6.589549899999952],[108.07102970000005,-6.588206599999978],[108.07301340000004,-6.587663],[108.074379,-6.589017199999944],[108.07447060000004,-6.583590799999968],[108.07658390000006,-6.582450199999926],[108.073845,-6.5815528],[108.07550060000005,-6.580071799999928],[108.07327280000004,-6.579472899999928],[108.07498180000005,-6.5767],[108.07344830000005,-6.575182299999938],[108.07786570000007,-6.576922299999978],[108.07803350000006,-6.574756],[108.08100130000008,-6.5734213],[108.08271030000009,-6.574330599999939],[108.08367930000009,-6.572175299999969],[108.084343,-6.573398399999974],[108.08575450000006,-6.572905899999967],[108.08847810000009,-6.570651799999951],[108.08863070000007,-6.568678699999964],[108.09177410000007,-6.568111699999974],[108.09387980000008,-6.562787399999934],[108.09557350000006,-6.563817399999948],[108.09779360000005,-6.562272899999925],[108.09721380000008,-6.564829199999963],[108.09933480000007,-6.562167],[108.10015110000006,-6.563566099999946],[108.10292820000006,-6.561517599999945],[108.10478980000005,-6.562071699999933],[108.10747530000003,-6.558730899999944],[108.10644540000004,-6.555489399999942],[108.112526,-6.551962699999933],[108.11332710000005,-6.554031699999939],[108.11597450000005,-6.553322599999944],[108.11552440000008,-6.550277499999936],[108.11763010000004,-6.550730599999952],[108.11830140000006,-6.548760299999969],[108.11708840000006,-6.545662199999981],[108.119957,-6.544785299999944],[108.11804210000008,-6.543005799999946],[108.12059790000006,-6.540998299999956],[108.121605,-6.542525099999978],[108.12277990000007,-6.540738899999951],[108.12223060000008,-6.543247099999974],[108.12780770000006,-6.5444983],[108.12811290000008,-6.549242799999945],[108.13223270000009,-6.554964899999959],[108.13182070000005,-6.557598],[108.12799080000008,-6.561105599999962],[108.12757120000003,-6.565211199999965],[108.14209750000003,-6.565329899999938],[108.14174660000003,-6.571325599999966],[108.14348610000008,-6.572720899999979],[108.14208230000008,-6.574513699999954],[108.14400490000008,-6.574491799999976],[108.14332590000004,-6.576574699999981],[108.14563760000004,-6.577],[108.145752,-6.578316499999971],[108.147667,-6.5780023],[108.14523320000006,-6.583885],[108.14611060000004,-6.585259299999962],[108.14431010000004,-6.5876449],[108.14648440000008,-6.592650799999944],[108.14585120000004,-6.600386499999956],[108.14830790000008,-6.603139299999953],[108.14863590000004,-6.6060012],[108.15826420000008,-6.612192499999935],[108.16456610000006,-6.613482799999929],[108.16586310000008,-6.609206],[108.17346960000003,-6.605720899999938],[108.18022920000004,-6.609349099999974],[108.18476870000006,-6.610640399999966],[108.18773660000005,-6.609824499999945],[108.18968210000008,-6.608269099999973],[108.19071970000005,-6.601153699999941],[108.19763950000004,-6.593526199999928],[108.19998180000005,-6.585086699999977],[108.20593270000006,-6.574995899999976],[108.21012890000009,-6.573154799999941],[108.25,-6.585610299999928],[108.25186930000007,-6.58719],[108.26368720000005,-6.587396499999954],[108.27627570000004,-6.591492499999958],[108.27446750000007,-6.594781299999966],[108.27542120000004,-6.598038499999973],[108.272995,-6.604065299999945],[108.27256780000005,-6.609646199999929],[108.27516940000004,-6.616548899999941],[108.28084570000004,-6.620628699999941],[108.28866580000005,-6.622283299999935],[108.292511,-6.620893799999976],[108.29391480000004,-6.615350599999942],[108.28762820000009,-6.615279499999929],[108.28550730000006,-6.613472299999955],[108.28639230000005,-6.609666699999934],[108.28940590000008,-6.608693899999935],[108.29301460000005,-6.609189899999933],[108.29434970000005,-6.613000199999931],[108.298584,-6.6149501],[108.29905710000008,-6.617170199999975],[108.30039980000004,-6.616355299999952],[108.30203250000005,-6.620475599999963],[108.30379490000007,-6.618542599999955],[108.305069,-6.6195177],[108.30442050000005,-6.623250399999961],[108.30857860000003,-6.623897899999974],[108.31146240000004,-6.620725499999935],[108.31543740000006,-6.607849499999929],[108.31962590000006,-6.613038399999937],[108.32157140000004,-6.619552499999941],[108.32349020000004,-6.620803499999965],[108.32550060000005,-6.612955399999976],[108.330719,-6.607929599999977],[108.33024560000007,-6.605225],[108.32871440000008,-6.604531599999973],[108.33038340000007,-6.602840199999946],[108.32863620000006,-6.5983528],[108.33117680000004,-6.594108499999948],[108.34807860000006,-6.577833099999964],[108.35361570000003,-6.575598899999932],[108.35533670000007,-6.566454599999929],[108.36054870000004,-6.555426199999943],[108.37174730000004,-6.554375499999935],[108.373183,-6.548629],[108.37780770000006,-6.545946],[108.38558360000007,-6.547543699999949],[108.38393710000008,-6.547009799999955],[108.38441510000007,-6.545988499999964],[108.38693240000003,-6.544830199999979],[108.39078130000007,-6.536132799999962],[108.39277270000008,-6.536153699999943],[108.39374880000008,-6.534478699999966],[108.40410920000005,-6.535734399999967],[108.40863320000005,-6.529991199999927],[108.41749580000004,-6.524516499999947],[108.43009950000004,-6.520262099999968],[108.43756870000004,-6.522149899999931],[108.44535830000007,-6.529397399999937],[108.44701480000003,-6.536564799999951],[108.44887190000009,-6.537065],[108.448453,-6.5708181],[108.45455170000008,-6.573065699999972],[108.45772560000006,-6.572448599999973],[108.460167,-6.568361599999946],[108.46750650000007,-6.569879],[108.46829230000009,-6.567902],[108.47031410000005,-6.567700799999955],[108.470192,-6.564671899999951],[108.47358710000009,-6.564583699999957],[108.47335060000006,-6.561384099999941],[108.47529610000004,-6.558253199999967],[108.47763830000008,-6.5595073],[108.48180390000005,-6.5591487],[108.48353580000008,-6.556484599999976],[108.48699960000005,-6.559305599999959],[108.49101870000004,-6.554812199999958],[108.49182440000004,-6.550510699999961],[108.49069220000007,-6.545453899999927],[108.49414830000006,-6.542565699999955],[108.500885,-6.542043599999943],[108.50100710000004,-6.536997199999973],[108.50276950000006,-6.534015099999976],[108.50658420000008,-6.533871],[108.50988010000009,-6.528667299999938],[108.51377870000005,-6.527145299999972],[108.51899720000006,-6.527605899999969],[108.51908120000007,-6.521976799999948],[108.52552040000006,-6.517534599999976],[108.53903080000003,-6.516187899999977]]]},"properties":{"shapeName":"Indramayu","shapeISO":"","shapeID":"22746128B87874205374032","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[136.88159080000003,-3.241375799999958],[136.87978570000007,-3.242581399999949],[136.87412260000008,-3.242214],[136.8689985000001,-3.2524322],[136.8643982000001,-3.251038299999948],[136.85993710000002,-3.254645599999947],[136.8543532000001,-3.255250299999943],[136.85238820000006,-3.256429499999967],[136.85180790000004,-3.259910399999967],[136.84999470000002,-3.261596299999951],[136.8418911000001,-3.265211199999953],[136.83909360000007,-3.268787499999974],[136.8349254000001,-3.269024],[136.833786,-3.2700369],[136.8343946000001,-3.274805],[136.832647,-3.275138499999969],[136.8296755,-3.281062899999938],[136.82748860000004,-3.281762799999967],[136.82058210000002,-3.281429299999957],[136.81965990000003,-3.279122399999949],[136.816486,-3.2794243],[136.81212920000007,-3.277232099999935],[136.80532830000004,-3.269993299999953],[136.80189830000006,-3.268421599999954],[136.8010752,-3.265715199999931],[136.79491410000003,-3.267597399999943],[136.79374710000002,-3.2662562],[136.79030060000002,-3.2668217],[136.78838,-3.265706299999977],[136.78171570000006,-3.273090699999955],[136.78189270000007,-3.276531299999931],[136.77730530000008,-3.278571599999964],[136.77141230000007,-3.273239899999965],[136.7686112,-3.275356399999964],[136.7512799000001,-3.281351799999925],[136.74618550000002,-3.282345799999973],[136.7376121000001,-3.280979],[136.7315238000001,-3.282345799999973],[136.72332310000002,-3.279985],[136.72046530000011,-3.277624199999934],[136.72009260000004,-3.274517899999978],[136.7137557000001,-3.269299299999943],[136.71040090000008,-3.267932599999938],[136.70667330000003,-3.268429599999934],[136.69747870000003,-3.263583799999935],[136.6907691,-3.268305299999952],[136.68492920000006,-3.266068799999971],[136.68157440000004,-3.262092699999926],[136.6701432000001,-3.2581167],[136.6465353000001,-3.257868199999962],[136.644423,-3.256128599999954],[136.6430563,-3.248673499999938],[136.6255367000001,-3.237242299999934],[136.60901120000005,-3.236745299999939],[136.60491090000005,-3.238981799999976],[136.59745570000007,-3.246437],[136.58850960000007,-3.247182499999951],[136.58453350000002,-3.245939899999939],[136.58105440000008,-3.248300699999959],[136.56875350000007,-3.250661499999978],[136.56490170000006,-3.249419],[136.5619196,-3.240597099999945],[136.55458870000007,-3.238112099999967],[136.54626380000002,-3.230408399999931],[136.5371934000001,-3.2269294],[136.53433560000008,-3.227426399999956],[136.53147780000006,-3.230532699999969],[136.5093938000001,-3.232567899999935],[136.498388,-3.228051099999959],[136.48693690000005,-3.226842399999953],[136.48337440000012,-3.224043199999926],[136.48203840000008,-3.218126899999959],[136.4689969000001,-3.204321899999968],[136.468488,-3.197006],[136.465498,-3.193888699999945],[136.45589180000002,-3.189308299999936],[136.45073150000007,-3.1775511],[136.44895760000009,-3.176829199999929],[136.4466033000001,-3.178640899999948],[136.44538860000011,-3.177646599999946],[136.4456229000001,-3.1739896],[136.4491303000001,-3.171716599999968],[136.44749360000003,-3.167419699999925],[136.44354250000004,-3.163416199999972],[136.4435413000001,-3.161049599999956],[136.4406738,-3.158454],[136.44182390000003,-3.141417199999978],[136.44006030000003,-3.135739799999953],[136.4413773000001,-3.128785299999947],[136.44058890000008,-3.1263121],[136.44387820000009,-3.119648699999971],[136.44162470000003,-3.1125117],[136.4378561000001,-3.109444399999973],[136.43724020000002,-3.106339],[136.4338484000001,-3.103816299999949],[136.43236500000012,-3.100104],[136.43176270000004,-3.096888599999943],[136.43411250000008,-3.091592499999933],[136.43486930000006,-3.085271099999943],[136.424587,-3.075882099999944],[136.4082002,-3.072485499999971],[136.4034306000001,-3.069211699999926],[136.398072,-3.060316099999966],[136.38482180000005,-3.049637399999938],[136.37992810000003,-3.049145799999962],[136.3765896000001,-3.046951],[136.37133230000006,-3.046824699999945],[136.36758180000004,-3.042148199999929],[136.36498270000004,-3.042066899999952],[136.36076350000008,-3.034548499999971],[136.35751820000007,-3.034404399999971],[136.35484830000007,-3.031759799999975],[136.35445550000009,-3.025802399999975],[136.35342520000006,-3.023582699999963],[136.35212780000006,-3.0239699],[136.3513031000001,-3.020643499999949],[136.34912960000008,-3.020103899999981],[136.3489075000001,-3.018482],[136.34632370000008,-3.018431799999973],[136.34585990000005,-3.012474299999951],[136.34826280000004,-3.011387899999932],[136.34851070000002,-3.008726099999933],[136.33946980000007,-3.005706399999951],[136.34100890000002,-2.9952288],[136.34211060000007,-2.993358099999966],[136.34570310000004,-2.993019599999968],[136.34802890000003,-2.990263399999947],[136.34821820000002,-2.985597299999938],[136.34699510000007,-2.984020399999963],[136.34452970000007,-2.987740199999962],[136.34129330000007,-2.988467499999956],[136.34657290000007,-2.982473199999959],[136.34587250000004,-2.980798499999935],[136.34310160000007,-2.9800862],[136.34446520000006,-2.973046499999953],[136.34624510000003,-2.971288199999947],[136.3445455000001,-2.970083099999954],[136.34542850000003,-2.967551],[136.3440399000001,-2.966286899999943],[136.34448310000005,-2.963392599999963],[136.34663280000007,-2.958897099999945],[136.35138870000003,-2.956688],[136.3532881000001,-2.953415699999937],[136.3531537,-2.946334799999931],[136.3496857,-2.944589299999961],[136.3515777,-2.941942199999971],[136.3450391,-2.939802099999952],[136.34146140000007,-2.9418803],[136.33614410000007,-2.939589199999944],[136.3338884000001,-2.935680599999955],[136.3351573000001,-2.934128],[136.3346388000001,-2.931348199999945],[136.33160570000007,-2.925659099999962],[136.33139040000003,-2.9223447],[136.32825040000012,-2.923983599999929],[136.32884320000005,-2.925849199999959],[136.32745640000007,-2.926385299999936],[136.32581590000007,-2.920426499999962],[136.3285949000001,-2.920717],[136.32975040000008,-2.918558399999938],[136.3260474000001,-2.918525],[136.32535330000007,-2.9131413],[136.32256740000003,-2.914506699999947],[136.31743,-2.910593199999937],[136.31674830000009,-2.914134699999977],[136.31498720000002,-2.912368299999969],[136.31281910000007,-2.9142073],[136.3059082000001,-2.908205499999951],[136.30566340000007,-2.910730299999955],[136.30082950000008,-2.911030899999957],[136.3002444000001,-2.912221799999941],[136.299919,-2.914183299999934],[136.29666940000004,-2.916229699999974],[136.2960968000001,-2.919756199999938],[136.29715680000004,-2.920514499999967],[136.2999106000001,-2.918549199999973],[136.30050660000006,-2.921774899999946],[136.30273410000007,-2.922780499999931],[136.3041687000001,-2.9184725],[136.31007540000007,-2.920551899999964],[136.30886870000006,-2.923072599999955],[136.3046197000001,-2.923091899999974],[136.30628860000002,-2.9270505],[136.30519090000007,-2.928377299999966],[136.30090330000007,-2.929630299999928],[136.303646,-2.935089499999947],[136.3059071,-2.935321099999953],[136.305014,-2.930133599999976],[136.30961460000003,-2.9318406],[136.31197870000005,-2.930621199999962],[136.30826330000002,-2.933924499999932],[136.309073,-2.936543599999936],[136.31186130000003,-2.9337879],[136.3141363000001,-2.933821399999943],[136.317347,-2.936444499999936],[136.31976380000003,-2.936196699999925],[136.32038190000003,-2.939891499999931],[136.32213930000012,-2.941451699999959],[136.31875,-2.940744],[136.31640270000003,-2.943302199999948],[136.31279160000008,-2.94311],[136.31430650000004,-2.946785499999976],[136.30800030000012,-2.949243399999943],[136.30924990000005,-2.953054899999927],[136.3054657,-2.952429299999949],[136.3002888000001,-2.969561799999951],[136.2971437000001,-2.973884799999951],[136.29937860000007,-2.981458799999928],[136.2974603,-2.985099799999944],[136.30316,-2.990635299999951],[136.30602290000002,-2.988432499999931],[136.3069475000001,-2.9989612],[136.311003,-3.001143199999944],[136.31084160000012,-3.002694],[136.3065338,-3.003746699999965],[136.31277580000005,-3.011360899999943],[136.31818580000004,-3.0127917],[136.3225708000001,-3.018930299999965],[136.3238113000001,-3.031858799999952],[136.32567960000006,-3.03252],[136.3286518000001,-3.030658199999948],[136.32963560000007,-3.032334599999956],[136.32906990000004,-3.034410499999979],[136.32592710000006,-3.0353287],[136.32789660000003,-3.038776199999973],[136.32662960000005,-3.041210899999953],[136.3272624000001,-3.044231499999967],[136.32880310000007,-3.047202899999945],[136.3312221000001,-3.048233099999948],[136.32505560000004,-3.053198499999951],[136.32543410000005,-3.054822],[136.33380680000005,-3.051460599999928],[136.33550360000004,-3.052739299999928],[136.33193970000002,-3.058574299999975],[136.32936410000002,-3.066750399999933],[136.3331015000001,-3.075663199999951],[136.330344,-3.079691299999979],[136.3364544000001,-3.087972899999954],[136.3358521,-3.098519799999963],[136.3202765000001,-3.123755299999971],[136.320816,-3.129650699999956],[136.31901930000004,-3.132517499999949],[136.31440730000008,-3.132705899999962],[136.31586590000006,-3.138516699999968],[136.32019250000008,-3.1432024],[136.323482,-3.150887],[136.32028960000002,-3.157783699999925],[136.3208314000001,-3.164176199999929],[136.32391180000002,-3.16886],[136.33059690000005,-3.173599199999956],[136.34465290000003,-3.177389299999959],[136.3479043000001,-3.180491399999937],[136.3508839000001,-3.180692499999964],[136.3520092000001,-3.183478599999944],[136.35603750000007,-3.186533899999972],[136.35762770000008,-3.194106799999929],[136.3561859,-3.2007773],[136.36425780000002,-3.207147599999928],[136.3746033000001,-3.224690399999929],[136.3791351000001,-3.235586599999976],[136.37712080000006,-3.244645199999979],[136.37746320000008,-3.250445599999978],[136.38008250000007,-3.257109899999932],[136.38092660000007,-3.265656499999977],[136.38403860000005,-3.267410799999936],[136.3849080000001,-3.271748699999932],[136.391178,-3.279180599999961],[136.39377790000003,-3.292333099999951],[136.3939259000001,-3.300289599999928],[136.39113980000002,-3.3077883],[136.39435930000002,-3.313232699999958],[136.39202610000007,-3.352162799999974],[136.34443690000012,-3.377364],[136.3900897000001,-3.441409499999963],[136.4424822000001,-3.525555],[136.51392640000006,-3.631927499999961],[136.53774120000003,-3.660505099999966],[136.62982480000005,-3.744650599999943],[136.706032,-3.824033099999951],[136.72667130000002,-3.843084899999951],[136.7266721000001,-3.905002599999932],[137.09976920000008,-3.906590899999969],[137.1889609000001,-3.909012099999927],[137.17211220000002,-3.876842899999929],[137.143863,-3.843608699999947],[137.126415,-3.817852099999925],[137.1147830000001,-3.7887721],[137.1056443000001,-3.751383499999974],[137.10896700000012,-3.720641799999953],[137.12724580000008,-3.673283],[137.1444352000001,-3.597553699999935],[137.10548890000007,-3.586194299999931],[137.0795246,-3.5910626],[137.02435050000008,-3.552116],[137.02597330000003,-3.516415299999949],[137.02435050000008,-3.501810399999954],[137.00325450000003,-3.492073799999957],[136.98378130000003,-3.485582799999975],[136.978913,-3.4498819],[136.978913,-3.417426499999976],[136.9561943000001,-3.412558199999978],[136.9529487000001,-3.399576099999933],[136.94970320000004,-3.336288099999933],[136.91562510000006,-3.308701099999951],[136.88159080000003,-3.241375799999958]]]},"properties":{"shapeName":"Intan Jaya","shapeISO":"","shapeID":"22746128B6234274657916","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[140.65281070000003,-2.476179099999968],[140.64834540000004,-2.470459399999925],[140.6498865000001,-2.466889399999957],[140.64465280000002,-2.4632594],[140.6412196000001,-2.466759399999944],[140.63415470000007,-2.468309399999953],[140.63096570000005,-2.463849299999936],[140.63365120000003,-2.457239399999935],[140.63297980000004,-2.4548592],[140.63023320000002,-2.452779299999975],[140.62658640000006,-2.455749299999979],[140.62213080000004,-2.4510593],[140.6169886,-2.449129299999925],[140.61550850000003,-2.444819399999972],[140.6117243000001,-2.442209199999979],[140.61321970000006,-2.439609299999972],[140.60903880000012,-2.4403493],[140.604217,-2.444309199999964],[140.60487310000008,-2.446689399999968],[140.59997510000005,-2.450609399999962],[140.6007532000001,-2.453229399999941],[140.59699960000012,-2.455069299999934],[140.58396860000005,-2.453039399999966],[140.57904,-2.446080199999926],[140.57034250000004,-2.451009299999953],[140.559875,-2.450109199999929],[140.56065320000005,-2.4468994],[140.55923410000003,-2.439759199999969],[140.5546412000001,-2.439819299999954],[140.5514826000001,-2.445409299999938],[140.546905,-2.444569299999955],[140.54374640000003,-2.448569299999974],[140.539474,-2.447139299999947],[140.53773450000006,-2.444859199999939],[140.53922980000004,-2.438799399999937],[140.5335841000001,-2.439509399999963],[140.52976980000005,-2.438139399999955],[140.52859450000005,-2.429999299999963],[140.52494760000002,-2.427850099999944],[140.52233840000008,-2.428319399999964],[140.51881360000004,-2.431529299999966],[140.51263380000012,-2.429499399999941],[140.51101640000002,-2.431999399999938],[140.5091853,-2.431519299999934],[140.5068507000001,-2.436279299999967],[140.50280710000004,-2.439129299999934],[140.5021968000001,-2.4428694],[140.4974360000001,-2.443939399999977],[140.49494890000005,-2.441199299999937],[140.48625130000005,-2.438417899999934],[140.48690750000003,-2.435627899999929],[140.48547310000004,-2.433247799999947],[140.48809770000003,-2.431407899999954],[140.48774670000012,-2.428197799999964],[140.48506120000002,-2.431227899999953],[140.4792933000001,-2.428847799999971],[140.47459360000005,-2.4300279],[140.4723964000001,-2.4288378],[140.46739150000008,-2.4296679],[140.46751360000007,-2.431397899999979],[140.4660182,-2.432167799999945],[140.4612575000001,-2.431867799999964],[140.4526975000001,-2.427407699999947],[140.44276380000008,-2.4197879],[140.44187880000004,-2.417767699999956],[140.4408565000001,-2.418897899999934],[140.4359889000001,-2.417877899999951],[140.43331860000012,-2.411997799999938],[140.42729140000006,-2.416327899999942],[140.4230189000001,-2.414427699999976],[140.41349750000006,-2.4141779],[140.41230730000007,-2.411087699999939],[140.4052425000001,-2.406907799999942],[140.39456130000008,-2.406877799999961],[140.39144850000002,-2.4020879],[140.3860317000001,-2.399707799999931],[140.37275650000004,-2.398987799999929],[140.37181050000004,-2.397797799999978],[140.369308,-2.403327899999965],[140.36727860000008,-2.403737799999931],[140.3628841000001,-2.402187799999979],[140.357101,-2.402307699999938],[140.34825090000004,-2.395347799999968],[140.3468166,-2.396887799999945],[140.3444972000001,-2.396827899999948],[140.34266620000005,-2.400287899999967],[140.343246,-2.403247799999974],[140.34571790000007,-2.404967799999952],[140.34562640000001,-2.4081077],[140.348907,-2.410548],[140.35034140000005,-2.405297699999949],[140.35235550000004,-2.405108],[140.3539730000001,-2.402437899999939],[140.3563686000001,-2.402967899999965],[140.35865740000008,-2.4060678],[140.35754350000002,-2.409787899999969],[140.3599849000001,-2.408597899999961],[140.3608852000001,-2.409547799999928],[140.3602138000001,-2.414507899999933],[140.36303670000007,-2.414698199999975],[140.36241110000003,-2.4178479],[140.3663173000001,-2.419997899999942],[140.37263440000004,-2.428237899999942],[140.37576250000006,-2.430107799999973],[140.3757472000001,-2.432497699999942],[140.36796520000007,-2.444267699999955],[140.3684383000001,-2.445838],[140.3717799000001,-2.446798199999932],[140.3731990000001,-2.449707699999976],[140.3695216000001,-2.460287799999946],[140.36743120000006,-2.461190899999963],[140.36428790000002,-2.455320799999924],[140.362289,-2.457560799999953],[140.3596645,-2.4561808],[140.357513,-2.452170799999976],[140.3611903000001,-2.451270799999975],[140.35642960000007,-2.448790799999927],[140.35566670000003,-2.445591],[140.3543849,-2.445931],[140.35279800000012,-2.448741],[140.3545223000001,-2.450840899999946],[140.35241650000012,-2.452070899999967],[140.35307310000007,-2.4550309],[140.34873920000007,-2.461051],[140.34576370000002,-2.4630108],[140.33975180000004,-2.4624714],[140.33563190000007,-2.464911],[140.33326680000005,-2.462590899999952],[140.33451800000012,-2.461160899999925],[140.3341518000001,-2.458611],[140.33940080000002,-2.455280799999969],[140.33886680000012,-2.451420799999937],[140.33685260000004,-2.448920899999962],[140.33517410000002,-2.448260799999957],[140.32782050000003,-2.450900799999943],[140.3263545000001,-2.4426908],[140.323608,-2.447980899999948],[140.3218227000001,-2.446610899999939],[140.31777910000005,-2.448100799999963],[140.31468160000009,-2.445061],[140.31617690000007,-2.440900799999952],[140.31510880000008,-2.440190799999925],[140.30903580000006,-2.440960899999936],[140.3077846000001,-2.439710799999943],[140.30509910000012,-2.445350899999937],[140.30004840000004,-2.443511],[140.29795790000003,-2.4406509],[140.29385330000002,-2.439160799999968],[140.29388360000007,-2.435601],[140.2961421000001,-2.432447],[140.29489090000004,-2.430597099999943],[140.2962642000001,-2.429177],[140.2956233000001,-2.425847],[140.2926937000001,-2.428997],[140.2896114,-2.425127],[140.28561360000003,-2.428157099999964],[140.28507950000005,-2.425477],[140.28282120000006,-2.426847],[140.28015130000006,-2.426247099999955],[140.2799678,-2.423397099999931],[140.2773433000001,-2.423687],[140.27604630000008,-2.421847099999979],[140.2720485000001,-2.423447099999976],[140.26887470000008,-2.416827199999943],[140.26928670000007,-2.419967199999974],[140.2660671000001,-2.423567],[140.26481590000003,-2.423147],[140.26138260000005,-2.419637199999954],[140.25793420000002,-2.410777099999962],[140.2532344000001,-2.404597],[140.25353960000007,-2.400666899999976],[140.25158650000003,-2.401087],[140.24908410000012,-2.399057099999936],[140.2451473000001,-2.400007],[140.24586450000004,-2.403217099999949],[140.24366720000012,-2.404767],[140.233688,-2.403517],[140.232452,-2.402277],[140.2316128000001,-2.404237],[140.22904930000004,-2.405247],[140.22708090000003,-2.408807],[140.22958330000006,-2.412377099999958],[140.227676,-2.414627099999962],[140.2327266000001,-2.416957099999934],[140.23065140000006,-2.418857099999968],[140.23278770000002,-2.420227],[140.23194840000008,-2.421707099999935],[140.22969020000005,-2.418137099999967],[140.22357140000008,-2.416647199999943],[140.22476160000008,-2.415517099999931],[140.22401390000005,-2.413247099999978],[140.227737,-2.411287099999925],[140.22059590000003,-2.412272199999961],[140.20794640000008,-2.407812099999944],[140.2028957000001,-2.4018621],[140.20260580000001,-2.398652099999936],[140.2004085000001,-2.397702199999969],[140.1975857000001,-2.390562099999954],[140.19104,-2.386932099999967],[140.1892696000001,-2.380332199999941],[140.18087750000007,-2.377293499999951],[140.178619,-2.374912],[140.16648830000008,-2.375092],[140.16642720000004,-2.373182099999951],[140.1652981000001,-2.373782199999937],[140.1618496000001,-2.371222],[140.16178860000002,-2.367352],[140.1598202,-2.367772099999968],[140.15850790000002,-2.372172099999943],[140.1524502000001,-2.369962199999975],[140.15197720000003,-2.365622],[140.15566980000006,-2.363722099999961],[140.15513570000007,-2.361342199999967],[140.1574551000001,-2.357842199999936],[140.15657010000007,-2.353382099999976],[140.1549679000001,-2.355042199999957],[140.15204540000002,-2.354902799999934],[140.15043920000005,-2.3583068],[140.15039490000004,-2.356744799999944],[140.1478164,-2.357997399999931],[140.1481993000001,-2.355934299999944],[140.14650460000007,-2.357437399999981],[140.14576780000004,-2.355993299999966],[140.1496731000001,-2.351652099999967],[140.1504513000001,-2.345942],[140.1540218,-2.342852099999959],[140.15521200000012,-2.338992099999928],[140.1545254,-2.326562199999955],[140.15136680000012,-2.3234122],[140.1439815000001,-2.325492099999963],[140.14297450000004,-2.322512099999926],[140.13977010000008,-2.323702099999934],[140.14056360000006,-2.329532099999938],[140.14323390000004,-2.330542099999946],[140.14799460000006,-2.336732099999949],[140.14602620000005,-2.339162099999953],[140.1464992000001,-2.340952099999924],[140.14375270000005,-2.341362],[140.14494290000005,-2.342492099999959],[140.14292870000008,-2.3441021],[140.14428670000007,-2.345522199999948],[140.1437522000001,-2.348262099999943],[140.13410910000005,-2.347302199999945],[140.12239040000009,-2.339272],[140.12055930000008,-2.336002099999973],[140.11651570000004,-2.335462099999972],[140.11512720000007,-2.336532099999943],[140.11102260000007,-2.327095],[140.11170920000006,-2.325412],[140.11444050000011,-2.324662199999977],[140.1157528000001,-2.320722099999955],[140.1112362,-2.319212199999924],[140.08819540000002,-2.327062099999978],[140.08312950000004,-2.329972],[140.07972680000012,-2.338532199999975],[140.07995570000003,-2.3490522],[140.06982390000007,-2.356302],[140.05834920000007,-2.3596821],[140.03525890000003,-2.3601699],[140.02831690000005,-2.358811699999933],[140.0016809000001,-2.360320899999977],[139.99981920000005,-2.3622036],[140.00116330000003,-2.367273399999931],[140.00380560000008,-2.369206799999972],[140.0007766000001,-2.371397899999977],[140.00064770000006,-2.375715799999966],[139.998521,-2.373460199999954],[139.99368750000008,-2.3728802],[139.99626540000008,-2.375780299999974],[139.99568540000007,-2.379969299999971],[139.99400980000007,-2.380227099999956],[139.99400980000007,-2.382740499999954],[139.99284970000008,-2.381516],[139.98917630000005,-2.384802699999966],[139.98659840000005,-2.391505099999961],[139.98414950000006,-2.391827399999954],[139.98485840000012,-2.395758599999965],[139.98324720000005,-2.404072199999973],[139.98472950000007,-2.409807899999976],[139.98659840000005,-2.4107101],[139.98518060000004,-2.413416899999959],[139.9887252000001,-2.421150399999931],[139.98356020000006,-2.429915799999947],[139.7893392000001,-2.408230299999957],[139.7466898,-2.402332],[139.74328690000004,-2.404827499999953],[139.69156320000002,-2.414355499999942],[139.6160192000001,-2.431143],[139.60830610000005,-2.431596799999966],[139.59832430000006,-2.434545899999932],[139.592426,-2.434092199999952],[139.5452394,-2.445662],[139.5372993000001,-2.445435099999941],[139.5202849000001,-2.450426],[139.45494970000004,-2.462903199999971],[139.4474633000001,-2.465625499999931],[139.44088440000007,-2.465625499999931],[139.4227357000001,-2.470616399999926],[139.42681920000007,-2.511224099999936],[139.43135640000003,-2.536178599999971],[139.43067580000002,-2.556822699999941],[139.4322638000001,-2.563174699999934],[139.43317120000006,-2.591305199999965],[139.4347593000001,-2.593120099999965],[139.43725470000004,-2.630098],[139.4392964000001,-2.635769499999981],[139.441112,-2.661631399999976],[139.44269930000007,-2.663673099999926],[139.443153,-2.679326299999957],[139.4644777000001,-2.844025599999952],[139.47355330000005,-2.931366199999957],[139.47718180000004,-2.9483806],[139.4799041000001,-2.986946499999931],[139.48602930000004,-3.0300497],[139.4926117000001,-3.0960338],[139.49697230000004,-3.120097899999962],[139.50111760000004,-3.1276347],[139.50574740000002,-3.130918699999938],[139.5157786000001,-3.132790899999975],[139.51442970000005,-3.135135199999979],[139.51064310000004,-3.134301099999959],[139.509424,-3.1366008],[139.50693880000006,-3.1364741],[139.50825780000002,-3.139737499999967],[139.50678470000003,-3.141822699999977],[139.5031487000001,-3.141289],[139.50228920000006,-3.145735299999956],[139.50733920000005,-3.146692199999961],[139.50103840000008,-3.150752399999931],[139.50008620000006,-3.153873399999952],[139.49834610000005,-3.152209699999958],[139.49700610000002,-3.152928499999973],[139.4996807000001,-3.155765499999973],[139.49936900000012,-3.159838099999945],[139.49728990000006,-3.160425399999951],[139.49520370000005,-3.158047799999963],[139.49212720000003,-3.158645399999955],[139.4965644,-3.162348099999974],[139.49416040000006,-3.163827699999956],[139.49060450000002,-3.161116899999968],[139.49000260000003,-3.162999699999943],[139.49133890000007,-3.165139299999964],[139.48653400000012,-3.165181299999972],[139.48777670000004,-3.168043699999942],[139.4869338000001,-3.169514899999967],[139.48322940000003,-3.167593099999976],[139.48009600000012,-3.168840599999953],[139.47838550000006,-3.166974599999946],[139.4770803,-3.168312899999933],[139.47860620000006,-3.173015599999928],[139.47583510000004,-3.175554899999952],[139.47879090000004,-3.176241699999935],[139.48175070000002,-3.174972399999945],[139.48134230000005,-3.176931399999944],[139.48281840000004,-3.178040299999964],[139.4814619000001,-3.179416499999945],[139.4824073000001,-3.1824896],[139.4813643000001,-3.184302899999977],[139.483269,-3.187247699999944],[139.47595060000003,-3.186440299999958],[139.47560190000002,-3.187770899999975],[139.47980210000003,-3.188639099999932],[139.48457310000003,-3.194541199999946],[139.48050220000005,-3.198759],[139.48237070000005,-3.200008],[139.48552330000007,-3.199503299999947],[139.48382730000003,-3.203046799999925],[139.48471050000012,-3.2045903],[139.4873795000001,-3.202270299999952],[139.49012830000004,-3.205743199999972],[139.49308650000012,-3.203886299999965],[139.49246190000008,-3.2079103],[139.48989530000006,-3.207815499999981],[139.49079870000003,-3.210476399999948],[139.48785240000007,-3.212568799999929],[139.49053290000006,-3.217641799999967],[139.48859090000008,-3.220021499999973],[139.48719290000008,-3.217911299999969],[139.485663,-3.2181968],[139.4871985000001,-3.2240468],[139.4889644000001,-3.223946699999942],[139.48980490000008,-3.220446],[139.4914086000001,-3.222390099999927],[139.48853370000006,-3.227847899999972],[139.48714010000003,-3.224945699999978],[139.48468350000007,-3.224871699999937],[139.48689950000005,-3.232101399999976],[139.484973,-3.234377599999959],[139.48676410000007,-3.234830199999976],[139.48845430000006,-3.233229599999959],[139.48936930000002,-3.235907499999939],[139.49219930000004,-3.237537699999962],[139.48719270000004,-3.243661399999951],[139.4898611000001,-3.245462099999941],[139.48976920000007,-3.246925699999963],[139.48683070000004,-3.246377499999937],[139.48623980000002,-3.247779499999979],[139.48850990000005,-3.249370299999953],[139.4914347,-3.248148199999946],[139.49319050000008,-3.253413899999941],[139.49158940000007,-3.254949799999963],[139.49209570000005,-3.2568002],[139.49327060000007,-3.258160299999929],[139.4962614000001,-3.256630499999972],[139.49551370000006,-3.259940099999938],[139.49914790000003,-3.263622],[139.499115,-3.264873699999953],[139.496277,-3.265237199999945],[139.49525430000006,-3.267658399999959],[139.49597030000007,-3.269063899999935],[139.50067120000006,-3.269644599999936],[139.4970413000001,-3.271871499999975],[139.49615280000012,-3.277694299999951],[139.49687170000004,-3.279470199999935],[139.49949320000007,-3.278886399999976],[139.4965118,-3.2834093],[139.49749880000002,-3.285936],[139.49899140000002,-3.287157699999966],[139.50151330000006,-3.286140199999977],[139.4990726000001,-3.290064899999948],[139.50407370000005,-3.290468799999928],[139.5057604000001,-3.296378],[139.50799540000003,-3.291939299999967],[139.5094425000001,-3.293169099999943],[139.50812140000005,-3.297869599999956],[139.5043098000001,-3.299647199999924],[139.5039365,-3.301882699999965],[139.50559970000006,-3.302932699999928],[139.5101645000001,-3.300432499999943],[139.51222210000003,-3.302452799999969],[139.5126951000001,-3.307103899999959],[139.50702220000005,-3.307219599999939],[139.5079191000001,-3.309962699999971],[139.5109251,-3.3122771],[139.50585910000007,-3.314982899999961],[139.5082982,-3.319100499999934],[139.50421210000002,-3.318894599999965],[139.50519730000008,-3.323764],[139.50148410000008,-3.322559499999954],[139.50227330000007,-3.3261338],[139.50049080000008,-3.330201099999954],[139.496063,-3.330662699999948],[139.4989164000001,-3.334662899999955],[139.4959318000001,-3.336123699999973],[139.4959285000001,-3.340028199999949],[139.49423950000005,-3.340919299999939],[139.4965701000001,-3.3423017],[139.49714870000003,-3.346134199999938],[139.49311000000012,-3.348283199999969],[139.4961393000001,-3.350891099999956],[139.4938823000001,-3.352994099999933],[139.496063,-3.358096599999953],[139.49371310000004,-3.360313699999949],[139.4950007000001,-3.362702799999965],[139.49216450000006,-3.362186599999973],[139.490536,-3.367281],[139.49577310000006,-3.3666416],[139.49533410000004,-3.3683751],[139.48567480000008,-3.370911199999966],[139.49027920000003,-3.377738299999976],[139.48631910000006,-3.3755303],[139.48471640000002,-3.378648399999975],[139.48229420000007,-3.379658799999959],[139.48243890000003,-3.387615799999935],[139.47875610000006,-3.386685199999931],[139.47720960000004,-3.391308599999945],[139.47529210000005,-3.392499499999929],[139.4772415000001,-3.398712299999943],[139.47508170000003,-3.3992378],[139.47218750000002,-3.396677],[139.4696877,-3.3988186],[139.4718696000001,-3.404641799999979],[139.4768299000001,-3.405454099999929],[139.47607620000008,-3.407022199999972],[139.47043710000003,-3.406657299999949],[139.4761879,-3.411330699999951],[139.47374620000005,-3.414598699999942],[139.4665579000001,-3.413622],[139.4627848,-3.415890199999978],[139.4620007000001,-3.419565399999954],[139.46645580000006,-3.417722899999944],[139.46774370000003,-3.421125199999949],[139.4546656000001,-3.4190976],[139.45406120000007,-3.420244199999956],[139.45601460000012,-3.422835099999929],[139.45103340000003,-3.424082899999974],[139.44932930000004,-3.421362899999963],[139.4478124000001,-3.426051],[139.44340490000002,-3.428904399999965],[139.44464950000008,-3.433057399999939],[139.44086830000003,-3.437606799999969],[139.4451216000001,-3.438317699999971],[139.44636260000004,-3.441703299999972],[139.45231610000008,-3.443112099999951],[139.4518021,-3.445464299999969],[139.4493599000001,-3.443813099999943],[139.44804240000008,-3.445858299999941],[139.45017380000002,-3.4479973],[139.45427340000003,-3.446360099999936],[139.45672810000008,-3.450716099999966],[139.4531253,-3.4518749],[139.45383730000003,-3.454863199999977],[139.45607990000008,-3.454356599999926],[139.45936830000005,-3.448509199999933],[139.4626005,-3.453010899999981],[139.45988450000004,-3.454912599999943],[139.46134690000008,-3.458425499999976],[139.47017710000011,-3.456355799999926],[139.47632470000008,-3.458265],[139.4871346000001,-3.475507899999968],[139.4871052000001,-3.479527399999938],[139.48487240000009,-3.482580499999926],[139.48157220000007,-3.485705399999972],[139.47140830000012,-3.489091899999949],[139.46700620000001,-3.494876399999953],[139.46694910000008,-3.498409799999934],[139.4725555000001,-3.516995399999928],[139.47429870000008,-3.518879199999958],[139.47701010000003,-3.519612],[139.48149710000007,-3.5177374],[139.48414580000008,-3.514888099999951],[139.484099,-3.510174],[139.4812657000001,-3.501632799999925],[139.48260570000002,-3.497022799999968],[139.48690310000006,-3.491117199999962],[139.49536610000007,-3.487542499999961],[139.50139450000006,-3.4897],[139.50469880000003,-3.493856199999925],[139.5055811000001,-3.5008069],[139.5026160000001,-3.5117144],[139.50307070000008,-3.515600399999926],[139.50588070000003,-3.518882699999949],[139.530102,-3.527552799999967],[139.53645240000003,-3.533293799999967],[139.54481350000003,-3.537047499999971],[139.55110890000003,-3.536887199999967],[139.56119320000005,-3.532581099999959],[139.57752860000005,-3.510001199999977],[139.58362320000003,-3.504281699999979],[139.59675590000006,-3.497443],[139.6019831000001,-3.496446899999967],[139.60846350000008,-3.498018799999954],[139.61200530000008,-3.501936099999966],[139.6150510000001,-3.508390099999929],[139.6132070000001,-3.514040799999975],[139.6088635000001,-3.518017599999951],[139.59403780000002,-3.523460599999964],[139.58829580000008,-3.527125399999932],[139.58548640000004,-3.532526099999927],[139.5865874000001,-3.538562499999955],[139.59056420000002,-3.545738599999936],[139.59578650000003,-3.550064899999938],[139.6106751000001,-3.545030099999963],[139.61668020000002,-3.551443799999959],[139.62521880000008,-3.554874],[139.63174830000003,-3.553825],[139.63905570000009,-3.547937299999944],[139.64477510000006,-3.536949899999968],[139.6526841000001,-3.528692699999965],[139.6605287000001,-3.527585099999953],[139.66565140000012,-3.5353134],[139.66651830000012,-3.547065099999941],[139.67382830000008,-3.554167],[139.68194460000007,-3.549428099999943],[139.6746604000001,-3.535292599999934],[139.67605980000008,-3.529132199999935],[139.68252530000007,-3.526739299999974],[139.68756830000007,-3.528909399999975],[139.69794230000002,-3.540449899999942],[139.70317740000007,-3.541128599999979],[139.70712660000004,-3.535782199999971],[139.70893980000005,-3.528344899999979],[139.7130492000001,-3.522311299999956],[139.71772420000002,-3.520607499999926],[139.7231448000001,-3.525005699999952],[139.72590950000006,-3.539302599999928],[139.7316373000001,-3.545299799999952],[139.74201660000006,-3.5400835],[139.74552890000007,-3.545693699999958],[139.738854,-3.550455099999965],[139.7504364,-3.553713099999925],[139.75367030000007,-3.556597899999929],[139.75234710000007,-3.567279499999927],[139.76023840000005,-3.56055],[139.76565950000008,-3.558190099999933],[139.77184080000006,-3.561973299999977],[139.78467850000004,-3.566641199999935],[139.80403020000006,-3.5644956],[139.8073141000001,-3.567409699999928],[139.8057487000001,-3.575386899999955],[139.80028620000007,-3.580327199999942],[139.8014608000001,-3.584379599999977],[139.8090393000001,-3.584526099999948],[139.8149102000001,-3.5785155],[139.82245450000005,-3.575824799999964],[139.8304134000001,-3.578339799999981],[139.83585790000006,-3.5848272],[139.84482350000008,-3.588819399999977],[139.85533110000006,-3.583049299999971],[139.86231490000011,-3.583077299999957],[139.8696992,-3.589320399999963],[139.872756,-3.595392199999935],[139.88232240000002,-3.606059799999969],[139.88918090000004,-3.620067499999948],[139.8906981,-3.621349799999962],[139.89385430000004,-3.620540499999947],[139.901516,-3.616133199999979],[139.906959,-3.616251499999976],[139.9173237000001,-3.623991699999976],[139.92501540000012,-3.624400399999956],[139.9385569000001,-3.619868099999962],[139.93876330000012,-3.615809],[139.94519470000012,-3.612949899999933],[139.9568306000001,-3.6113731],[139.96110720000001,-3.609206499999971],[139.9651523000001,-3.610039099999938],[139.97036320000007,-3.613348499999972],[139.971302,-3.620643299999927],[139.9665636000001,-3.6222291],[139.96411540000008,-3.624668299999939],[139.95917040000006,-3.631550399999981],[139.95807560000003,-3.639019599999926],[139.96111580000002,-3.641703799999959],[139.9666129000001,-3.640157],[139.97091390000003,-3.641180799999972],[139.97808640000005,-3.651848899999948],[139.98296630000004,-3.656066799999962],[139.99057630000004,-3.657276],[139.999399,-3.6525746],[140.00379340000006,-3.651700499999947],[140.00588860000005,-3.649563899999976],[140.00904850000006,-3.639903699999934],[140.01642990000005,-3.638427],[140.0191952,-3.636107],[140.02555790000008,-3.6394874],[140.0268651,-3.642013599999927],[140.03404210000008,-3.647664],[140.0315064,-3.653670499999976],[140.03290390000006,-3.659631499999932],[140.04109160000007,-3.670786799999973],[140.04341340000008,-3.671686899999941],[140.04444640000008,-3.668026899999973],[140.04963820000012,-3.6659274],[140.05669910000006,-3.655176],[140.06554270000004,-3.648264599999948],[140.07260320000012,-3.657441799999958],[140.07568320000007,-3.657666899999981],[140.0749101,-3.664494299999944],[140.07618090000005,-3.670450899999935],[140.0826171000001,-3.674666199999933],[140.0880307000001,-3.682243],[140.09193060000007,-3.682350799999938],[140.0960232000001,-3.678376899999932],[140.09561830000007,-3.676797499999964],[140.09766680000007,-3.676526799999976],[140.10247090000007,-3.680586299999959],[140.11751630000003,-3.683110699999929],[140.1181702,-3.687345899999968],[140.12229700000012,-3.692175899999938],[140.12717220000002,-3.695361299999945],[140.1342998,-3.69579],[140.14471070000002,-3.694804399999953],[140.15428610000004,-3.695916099999977],[140.158965,-3.699369099999956],[140.16065590000005,-3.705704199999957],[140.16335750000007,-3.706997699999931],[140.20712130000004,-3.712467499999946],[140.24689590000003,-3.721306299999981],[140.31521850000001,-3.739467499999932],[140.32321850000005,-3.744867499999941],[140.32411850000005,-3.747567499999946],[140.31911850000006,-3.750767499999938],[140.3203185000001,-3.753067499999929],[140.32641850000005,-3.752467499999966],[140.3284185000001,-3.750567499999931],[140.32921850000002,-3.746767499999976],[140.3312185000001,-3.745967499999949],[140.3334185000001,-3.747267499999964],[140.34581850000006,-3.744967499999973],[140.34771850000004,-3.741367499999967],[140.35211850000007,-3.738267499999949],[140.36351850000005,-3.744067499999971],[140.3697185000001,-3.742867499999932],[140.3724185000001,-3.744267499999978],[140.3751185000001,-3.743667499999958],[140.38186650000011,-3.737325799999951],[140.38368570000011,-3.736219499999947],[140.3845947000001,-3.736090199999978],[140.38487120000002,-3.732369299999959],[140.38748160000011,-3.729639499999962],[140.38578680000012,-3.720419],[140.3742218000001,-3.715972],[140.37592530000006,-3.712786299999948],[140.37184550000006,-3.708458299999961],[140.37036960000012,-3.710619799999961],[140.36186080000004,-3.708645699999977],[140.3601271000001,-3.710685299999966],[140.3579429,-3.7107593],[140.3635971000001,-3.704002399999979],[140.36329720000003,-3.702112599999964],[140.35945760000004,-3.700069],[140.35885670000005,-3.697725399999968],[140.36036500000012,-3.694929799999954],[140.3656387000001,-3.692666],[140.36541940000006,-3.683293099999958],[140.35623060000012,-3.684042399999953],[140.35479570000007,-3.6895591],[140.3487676000001,-3.693560799999943],[140.34206820000009,-3.688642699999946],[140.34282330000008,-3.6874],[140.34967770000003,-3.686195599999962],[140.35171260000004,-3.684231899999929],[140.35103860000004,-3.678940399999931],[140.34697610000012,-3.672890499999937],[140.34690310000008,-3.669715899999971],[140.34938870000008,-3.6692642],[140.3562405,-3.671612299999936],[140.36046040000008,-3.668214],[140.3660344000001,-3.666933],[140.36364530000003,-3.662042099999951],[140.36439960000007,-3.660304099999962],[140.36748770000008,-3.659777199999951],[140.36951890000012,-3.6630288],[140.37238030000003,-3.663635499999941],[140.3775041,-3.659859799999936],[140.3742688000001,-3.655398],[140.37517910000008,-3.649460899999951],[140.37819390000004,-3.645986],[140.38821430000007,-3.639946],[140.39017880000006,-3.630916299999967],[140.39695660000007,-3.630996499999981],[140.39455140000007,-3.6238897],[140.38898050000012,-3.621013699999935],[140.3867259000001,-3.613982599999929],[140.3813053,-3.605391899999972],[140.38417,-3.600934199999926],[140.38899020000008,-3.600030499999946],[140.38936750000005,-3.598896899999943],[140.38470040000004,-3.591069299999958],[140.3775498000001,-3.585924599999942],[140.37589580000008,-3.581917399999952],[140.377103,-3.578441199999929],[140.3789832000001,-3.582146299999977],[140.38101660000007,-3.581845299999941],[140.3823006,-3.5719814],[140.37996670000007,-3.5712239],[140.37620040000002,-3.572884299999942],[140.374094,-3.569632599999977],[140.38019450000002,-3.568351799999959],[140.37756170000011,-3.564117199999941],[140.385548,-3.558],[140.38592240000003,-3.554481399999929],[140.37877,-3.552511299999935],[140.37997990000008,-3.5448779],[140.3725985000001,-3.547518399999944],[140.37207280000007,-3.545477199999937],[140.3739567,-3.5434377],[140.3721521000001,-3.539430399999958],[140.37034460000007,-3.539807099999962],[140.36936430000003,-3.5418472],[140.36808470000005,-3.541166099999941],[140.36500650000005,-3.532423699999924],[140.36222280000004,-3.528944799999977],[140.3625257000001,-3.526375099999939],[140.36456010000006,-3.524486799999977],[140.36899730000005,-3.5326532],[140.3726861,-3.534091799999942],[140.37449390000006,-3.533337199999949],[140.3688532000001,-3.523053599999969],[140.37239290000002,-3.522224599999959],[140.37540410000008,-3.523436],[140.37925040000005,-3.514443699999958],[140.37729400000012,-3.512326],[140.3748091000001,-3.512324299999932],[140.3760089000001,-3.519808199999943],[140.3742761000001,-3.521167599999956],[140.37111290000007,-3.514405499999953],[140.3641093000001,-3.515458899999942],[140.3632864000001,-3.5075218],[140.36569610000004,-3.507372299999929],[140.3697598000001,-3.510927599999945],[140.371342,-3.509568099999967],[140.3702145000001,-3.506619499999942],[140.37081970000008,-3.502387],[140.3671846000001,-3.497826399999951],[140.36620830000004,-3.4938952],[140.35536320000006,-3.497138],[140.352424,-3.500915299999974],[140.35069190000002,-3.501216399999976],[140.35340960000008,-3.491089699999975],[140.35100010000008,-3.491088099999956],[140.34708210000008,-3.494713499999932],[140.34437160000004,-3.494484799999952],[140.34361940000008,-3.4932749],[140.3452433000001,-3.490496899999926],[140.3372396000001,-3.486807599999963],[140.3385105000001,-3.4821202],[140.3441812000001,-3.48266],[140.34638970000003,-3.477943499999981],[140.35473260000003,-3.4733949],[140.35473620000005,-3.468036899999959],[140.36141,-3.465161499999965],[140.3632189000001,-3.455948599999942],[140.366423,-3.453472599999941],[140.367564,-3.443226099999947],[140.36229680000008,-3.432337199999949],[140.36163680000004,-3.4179582],[140.35896900000012,-3.416750799999932],[140.35442970000008,-3.420766299999968],[140.34936090000008,-3.418619599999943],[140.35036420000006,-3.414668799999959],[140.35616720000007,-3.416481],[140.3570387000001,-3.410118899999929],[140.3557065000001,-3.406480099999953],[140.353173,-3.404134299999953],[140.349104,-3.403260799999941],[140.34837130000005,-3.401652899999931],[140.34937270000012,-3.400515],[140.35651080000002,-3.400921699999969],[140.3566459000001,-3.3983097],[140.3526435000001,-3.397704199999964],[140.35278130000006,-3.395852199999979],[140.35545150000007,-3.393375899999967],[140.36005550000004,-3.392106399999932],[140.3589929000001,-3.384805299999925],[140.35352020000005,-3.388284399999975],[140.35018790000004,-3.383326],[140.350256,-3.381316799999979],[140.3542605,-3.378573499999959],[140.3599964000001,-3.380586499999936],[140.36159480000003,-3.384606099999928],[140.363129,-3.385009],[140.370609,-3.374071799999967],[140.37067940000009,-3.368312],[140.36781150000002,-3.367372399999965],[140.36360660000003,-3.3705845],[140.36133990000008,-3.366197099999965],[140.3616091,-3.362580599999944],[140.36768010000003,-3.362048699999946],[140.36467990000006,-3.3592338],[140.36428380000007,-3.352803899999969],[140.3593459000001,-3.354876899999965],[140.3580747000001,-3.360569],[140.35540770000011,-3.358357],[140.34379930000011,-3.359554799999955],[140.34693730000004,-3.355605399999945],[140.34240420000003,-3.350914],[140.35068090000004,-3.3481597],[140.35200670000006,-3.343579],[140.35101830000008,-3.337934399999938],[140.3488357000001,-3.338264899999956],[140.3462535000001,-3.342712],[140.34182280000005,-3.342111399999965],[140.34261930000002,-3.337796],[140.34613170000011,-3.336184399999979],[140.34407910000004,-3.3309191],[140.33883260000005,-3.3362827],[140.33153370000002,-3.3361745],[140.32804210000006,-3.330701799999929],[140.32427540000003,-3.328692799999942],[140.3233643000001,-3.324307699999963],[140.32489040000007,-3.320230199999969],[140.32285930000012,-3.320228799999938],[140.31886010000005,-3.323573499999952],[140.3101269000001,-3.322649699999943],[140.31429470000012,-3.316840699999943],[140.30897090000008,-3.314157499999965],[140.30600830000003,-3.308077699999956],[140.30744040000002,-3.304641099999969],[140.31341580000003,-3.3031797],[140.31702840000003,-3.298876199999938],[140.31660210000007,-3.292588599999931],[140.32014790000005,-3.286240499999963],[140.324225,-3.273741199999961],[140.32030380000003,-3.260304599999927],[140.32234670000003,-3.2539193],[140.32813270000008,-3.249580899999955],[140.33185020000008,-3.243540399999972],[140.33386980000012,-3.234359599999948],[140.33285280000007,-3.221286899999939],[140.33576470000003,-3.217009799999971],[140.33510520000004,-3.212893299999962],[140.33748350000008,-3.209077199999967],[140.3336505000001,-3.202136099999962],[140.32962190000012,-3.204196099999933],[140.32521010000005,-3.202646199999947],[140.32192320000001,-3.195180799999946],[140.3185281000001,-3.193676799999935],[140.32065540000008,-3.190358199999935],[140.3203621,-3.188177799999949],[140.32348690000003,-3.186596799999961],[140.3228858000001,-3.184551899999974],[140.32566780000002,-3.177036099999953],[140.3312274000001,-3.177112199999954],[140.3358555000001,-3.174555],[140.33783590000007,-3.177930599999968],[140.34202470000002,-3.176666799999964],[140.35473760000002,-3.166280499999971],[140.35715340000002,-3.166471899999976],[140.36309540000002,-3.163001799999961],[140.36783720000005,-3.156988799999965],[140.36634490000006,-3.1536588],[140.36751130000005,-3.151235],[140.36146080000003,-3.142682399999956],[140.35995230000003,-3.131581399999959],[140.35679390000007,-3.125699299999951],[140.3637778000001,-3],[140.3602863000001,-2.804857399999946],[140.3878826,-2.770296899999948],[140.43777420000004,-2.7758748],[140.44665480000003,-2.779611599999953],[140.4481654000001,-2.774825599999929],[140.44482370000003,-2.7745685],[140.44647170000007,-2.769990199999938],[140.45120190000011,-2.769830199999944],[140.46069290000003,-2.761344399999928],[140.4648585000001,-2.760872599999971],[140.46490430000006,-2.7591562],[140.46266130000004,-2.758690099999967],[140.46333270000002,-2.757181599999967],[140.46861220000005,-2.759048899999925],[140.46928360000004,-2.755303799999979],[140.466476,-2.754318199999943],[140.46873430000005,-2.752095899999972],[140.47615,-2.7539973],[140.476562,-2.750876399999925],[140.4868464000001,-2.7529476],[140.48857070000008,-2.752165399999967],[140.49026440000011,-2.754764799999975],[140.4929042000001,-2.755542699999978],[140.49275160000002,-2.758403299999941],[140.49732920000008,-2.757255099999952],[140.49441480000007,-2.7618861],[140.49789380000004,-2.761935],[140.4976954000001,-2.764535699999954],[140.5011287000001,-2.765104799999961],[140.5014338000001,-2.766768699999943],[140.49851940000008,-2.766719299999977],[140.49829050000005,-2.767811499999937],[140.5021968000001,-2.773321099999976],[140.50572160000002,-2.771491],[140.50701860000004,-2.776184499999943],[140.50915480000003,-2.774933099999942],[140.510757,-2.775883699999952],[140.51165720000006,-2.772729399999946],[140.5133204000001,-2.7730255],[140.5136103000001,-2.775643099999968],[140.518722,-2.771414],[140.52032420000012,-2.772245599999962],[140.51986640000007,-2.774328499999967],[140.52210950000006,-2.772720099999958],[140.52412360000005,-2.773789399999941],[140.52407790000007,-2.7756338],[140.52740430000006,-2.773845899999969],[140.5264582000001,-2.776940599999932],[140.52490180000007,-2.776584899999932],[140.52450510000006,-2.779679299999941],[140.52752640000006,-2.779557699999941],[140.52687020000008,-2.777713799999958],[140.52847240000006,-2.776165499999934],[140.53091380000012,-2.779078499999969],[140.53233290000003,-2.776042899999936],[140.5340724,-2.776279399999964],[140.53388930000006,-2.777885899999944],[140.5363307,-2.777348299999971],[140.5347743000001,-2.775445899999966],[140.53643750000003,-2.774254299999939],[140.53507950000005,-2.772946599999955],[140.53573560000007,-2.771874899999943],[140.5375514000001,-2.773003799999969],[140.5391383000001,-2.771693499999969],[140.53921460000004,-2.7736571],[140.54168650000008,-2.773595099999966],[140.54531810000003,-2.771152499999971],[140.5466914000001,-2.771686799999941],[140.54650830000003,-2.773174499999925],[140.5486598000001,-2.772220399999981],[140.55055190000007,-2.7744799],[140.55097910000006,-2.771385399999929],[140.5488276000001,-2.769959399999948],[140.55276440000011,-2.769836899999973],[140.5497279000001,-2.768530599999963],[140.5506739000001,-2.767280599999935],[140.55508370000007,-2.767990599999962],[140.5562586000001,-2.765550099999928],[140.55868480000004,-2.765964299999951],[140.5587458000001,-2.768820299999959],[140.56103460000008,-2.7689371],[140.561584,-2.771375899999953],[140.563415,-2.7698274],[140.5627131000001,-2.767745699999978],[140.5652613000001,-2.767267499999946],[140.56513930000006,-2.766196499999978],[140.56169080000006,-2.766913599999953],[140.56306410000002,-2.764651499999957],[140.562469,-2.762985899999933],[140.56372020000003,-2.762508899999943],[140.56591750000007,-2.764886799999942],[140.56692450000003,-2.763101099999972],[140.5652613000001,-2.762626599999976],[140.56692450000003,-2.760602199999937],[140.568542,-2.763278199999945],[140.57115120000003,-2.7639303],[140.568542,-2.761909699999933],[140.571136,-2.760420099999976],[140.57257030000005,-2.761608799999976],[140.5740809,-2.758561099999952],[140.5752711,-2.759940399999948],[140.57498120000002,-2.763795799999968],[140.57664440000008,-2.762747299999944],[140.57540840000001,-2.761368299999958],[140.5763545000001,-2.760272699999973],[140.5793910000001,-2.762126199999955],[140.58343450000007,-2.758505099999979],[140.58637950000002,-2.760168499999963],[140.58613530000002,-2.76212],[140.58752390000006,-2.762594899999954],[140.58666940000012,-2.763643],[140.5882868000001,-2.763212899999928],[140.5886683000001,-2.764926199999934],[140.590713,-2.763877399999956],[140.5913081000001,-2.761068299999977],[140.59326120000003,-2.761352299999942],[140.5912776,-2.763543399999946],[140.5942378000001,-2.765254499999969],[140.59454290000008,-2.770585299999937],[140.60176030000002,-2.770102699999939],[140.6044459000001,-2.772480199999961],[140.60630750000007,-2.772335799999951],[140.606399,-2.773906499999953],[140.6094965000001,-2.773760799999934],[140.61334180000006,-2.775969499999974],[140.61430310000003,-2.774397799999974],[140.61634770000012,-2.775014899999974],[140.6154322000001,-2.7727783],[140.6196284,-2.773822099999961],[140.62489270000003,-2.769533399999943],[140.62123050000002,-2.768441699999926],[140.6206049000001,-2.765205599999945],[140.61909430000003,-2.764350199999967],[140.6212763000001,-2.761111699999958],[140.62313790000007,-2.761062599999946],[140.6253657000001,-2.757871399999942],[140.6278986000001,-2.758821],[140.62777660000006,-2.757155199999943],[140.629394,-2.759295699999939],[140.63268990000006,-2.759153799999979],[140.62690680000003,-2.750477799999942],[140.62277170000004,-2.751209],[140.62168830000007,-2.746691899999973],[140.62289380000004,-2.744006599999977],[140.6203455000001,-2.744249799999977],[140.62022350000007,-2.743273199999976],[140.6205897000001,-2.738268099999971],[140.62307690000011,-2.737048099999924],[140.622848,-2.7310665],[140.62570140000003,-2.728747799999951],[140.62873790000003,-2.730213599999956],[140.62945500000012,-2.727650399999959],[140.62957710000012,-2.724476299999935],[140.627273,-2.7210574],[140.6236407,-2.720567899999935],[140.62411450000002,-2.7169058],[140.62692210000012,-2.715197599999954],[140.62800540000012,-2.7166629],[140.63218050000012,-2.716129499999965],[140.6312610000001,-2.711403399999938],[140.6266068000001,-2.704235899999958],[140.6211211000001,-2.614881399999945],[140.61408820000008,-2.6125371],[140.61728,-2.599754399999938],[140.62259910000012,-2.593957299999943],[140.623573,-2.585325399999931],[140.626313,-2.5832526],[140.6255003000001,-2.566802499999937],[140.62204320000012,-2.566820299999961],[140.6249074000001,-2.53157],[140.65281070000003,-2.476179099999968]]]},"properties":{"shapeName":"Jayapura","shapeISO":"","shapeID":"22746128B74121780595550","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[138.97777540000004,-3.922503699999936],[138.96388390000004,-3.911853299999962],[138.94258360000003,-3.903518399999939],[138.918968,-3.899814],[138.90600260000008,-3.876661499999955],[138.89448310000012,-3.85964],[138.89991940000004,-3.842728],[138.89810740000007,-3.822796],[138.89991940000004,-3.810716],[138.90173140000002,-3.803468],[138.90683580000007,-3.7975791],[138.8905493000001,-3.794865099999924],[138.87129240000002,-3.786479],[138.86027830000012,-3.784073899999953],[138.8236223,-3.7661531],[138.804887,-3.7596375],[138.7842654000001,-3.8231966],[138.7570515000001,-3.810579699999948],[138.73767720000012,-3.797148899999968],[138.71364890000007,-3.787746599999934],[138.6796845,-3.785557499999925],[138.6422470000001,-3.780992],[138.6240590000001,-3.781198899999936],[138.6113253000001,-3.784304899999938],[138.60763960000008,-3.795213599999954],[138.60175870000012,-3.845607899999948],[138.60956010000007,-3.848009],[138.6581691,-3.842608],[138.68037320000008,-3.8432081],[138.69573590000005,-3.848211099999958],[138.7178375000001,-3.8489201],[138.7178375000001,-3.854707399999938],[138.70842370000003,-3.887642],[138.72597170000006,-3.898857599999928],[138.7280383000001,-3.911774],[138.7042722000001,-3.945873199999937],[138.6898059,-3.959822899999949],[138.67727460000003,-3.968696799999975],[138.6609836,-4.0057988],[138.64796720000004,-4.027367099999935],[138.63366380000002,-4.077413199999967],[138.61474450000003,-4.096333199999947],[138.60423330000003,-4.119457699999941],[138.59949930000005,-4.140903299999934],[138.63995880000004,-4.138204499999972],[138.68041470000003,-4.148992799999974],[138.72626390000005,-4.173266699999942],[138.7046467,-4.192823699999963],[138.66031180000004,-4.244397],[138.628644,-4.287827199999981],[138.6100189000001,-4.328705199999945],[138.6086249000001,-4.351676699999928],[138.59387980000008,-4.378898599999957],[138.5927455000001,-4.401583499999958],[138.60068480000007,-4.436745099999939],[138.61656470000003,-4.467369699999949],[138.6233701000001,-4.4855176],[138.72024870000007,-4.471603],[138.7166188000001,-4.457413799999927],[138.71471610000003,-4.442192],[138.70917070000007,-4.328543],[138.8390902000001,-4.266552099999956],[138.8985331,-4.252456],[139.0142009000001,-4.204750799999943],[139.0479448000001,-4.192911599999945],[139.16162670000006,-4.162273899999946],[139.282565,-4.132443099999932],[139.35109660000012,-4.118736099999978],[139.362384,-4.113898699999936],[139.34885540000005,-4.0888848],[139.2908195000001,-4.047995799999967],[139.24729260000004,-4.012382899999977],[139.2052238000001,-4.009842399999968],[139.14712480000003,-4.018414299999961],[139.0251512000001,-4.043424],[139.00486380000007,-3.9943631],[138.98009060000004,-3.940562399999976],[138.97777540000004,-3.922503699999936]]]},"properties":{"shapeName":"Jayawijaya","shapeISO":"","shapeID":"22746128B27389394670937","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[113.74699380000004,-8.544191799999965],[113.7469099000001,-8.5426221],[113.7442397000001,-8.5446467],[113.74699380000004,-8.544191799999965]]],[[[113.83551770000008,-8.534240199999942],[113.835861,-8.533153],[113.83452590000002,-8.533945499999959],[113.83551770000008,-8.534240199999942]]],[[[113.70586380000009,-8.531166499999927],[113.70323930000006,-8.533274199999937],[113.70953350000002,-8.533868299999938],[113.70884690000003,-8.531878],[113.70586380000009,-8.531166499999927]]],[[[113.71506490000002,-8.5042739],[113.714424,-8.503279199999952],[113.71321090000004,-8.504725899999926],[113.71506490000002,-8.5042739]]],[[[113.61878190000004,-8.497120399999972],[113.61690510000005,-8.498634799999934],[113.61853770000005,-8.498878],[113.61878190000004,-8.497120399999972]]],[[[113.30101,-8.447164199999975],[113.2959059000001,-8.444142],[113.29070270000011,-8.445450499999936],[113.2901687000001,-8.447499899999968],[113.29267870000001,-8.447349199999962],[113.29314410000006,-8.450695699999926],[113.29035180000005,-8.457797699999958],[113.28763570000001,-8.460892299999955],[113.28242480000006,-8.463392899999974],[113.27392570000006,-8.4635588],[113.26801290000003,-8.467456499999969],[113.26890550000007,-8.470236499999942],[113.26240530000007,-8.486736899999926],[113.26425160000008,-8.489493099999947],[113.26972950000004,-8.490265499999964],[113.26808920000008,-8.497039499999971],[113.26978290000011,-8.495654699999932],[113.27075950000005,-8.497842499999933],[113.27383410000004,-8.496561699999972],[113.27738940000006,-8.498444199999938],[113.27806080000005,-8.500425],[113.27920520000009,-8.498828499999945],[113.2814330000001,-8.49995869999998],[113.28083790000005,-8.498647399999982],[113.282112,-8.498130499999945],[113.28571310000007,-8.4989125],[113.28563680000002,-8.502497399999982],[113.28697960000011,-8.501013399999977],[113.28735340000003,-8.503368],[113.28807820000009,-8.501899399999957],[113.289688,-8.50228949999996],[113.28849020000007,-8.503999399999941],[113.28949730000011,-8.505907699999966],[113.2912444000001,-8.504275899999925],[113.29410540000003,-8.5054862],[113.293434,-8.508187899999939],[113.2952193000001,-8.50804869999996],[113.29642480000007,-8.503628399999968],[113.29870590000007,-8.5024649],[113.30054460000008,-8.505078899999944],[113.30319970000005,-8.504443799999933],[113.30245960000002,-8.508446399999968],[113.30494680000004,-8.50751839999998],[113.3068694000001,-8.508763899999963],[113.30927270000007,-8.503807699999982],[113.30870040000002,-8.501817399999936],[113.31186670000011,-8.500000599999964],[113.31355270000006,-8.500983799999972],[113.31108080000001,-8.50267279999997],[113.311653,-8.504872],[113.3096389000001,-8.505940099999975],[113.30960830000004,-8.508747699999958],[113.31107320000001,-8.508739099999957],[113.31089010000005,-8.506806],[113.31276690000004,-8.5070397],[113.31382740000004,-8.505375499999957],[113.31556690000002,-8.506593399999929],[113.3236769,-8.502929299999948],[113.3265990000001,-8.5038601],[113.3265914000001,-8.501970899999947],[113.32772820000002,-8.503674199999978],[113.32977280000011,-8.502464],[113.33039080000003,-8.503743799999938],[113.33444970000005,-8.50119079999996],[113.33696740000005,-8.502310399999942],[113.340515,-8.500532799999974],[113.347145,-8.503472899999963],[113.3485793000001,-8.502935],[113.35022720000006,-8.505181899999968],[113.3513488000001,-8.502645099999938],[113.35831440000004,-8.500900899999976],[113.36070240000004,-8.498797099999933],[113.36415850000003,-8.501928],[113.366722,-8.498311599999965],[113.368225,-8.500749199999973],[113.37325270000008,-8.4991013],[113.37187950000009,-8.498432799999932],[113.3741606000001,-8.497884399999975],[113.3744200000001,-8.496288899999968],[113.37543480000011,-8.498425099999963],[113.38040910000007,-8.4966618],[113.37963090000005,-8.495002399999976],[113.381607,-8.496441499999946],[113.38429250000002,-8.496463399999925],[113.38546740000004,-8.494505499999946],[113.38607780000007,-8.49620779999998],[113.38953390000006,-8.496065699999974],[113.39022050000005,-8.494272799999976],[113.39249410000002,-8.495341899999971],[113.39385210000012,-8.493659599999944],[113.39868150000007,-8.496578799999952],[113.40097030000004,-8.4954487],[113.40069570000003,-8.493291499999941],[113.40122980000001,-8.494470199999967],[113.40267170000004,-8.493058799999972],[113.40428910000003,-8.494154599999945],[113.40129840000009,-8.489493],[113.40287010000009,-8.490441],[113.40362540000001,-8.489471099999946],[113.40341180000007,-8.490835799999957],[113.4067305000001,-8.492966299999978],[113.40967550000005,-8.490860599999962],[113.40827170000011,-8.487760199999968],[113.41003410000008,-8.484093299999927],[113.41036970000005,-8.475777299999947],[113.41187270000012,-8.475440599999956],[113.412712,-8.47256429999993],[113.41481010000007,-8.47453939999997],[113.4133528000001,-8.474673799999948],[113.41546620000008,-8.47513829999997],[113.41986070000007,-8.469740499999943],[113.41661820000002,-8.46798949999993],[113.41547380000009,-8.470537799999931],[113.41259750000006,-8.470547299999964],[113.41049940000005,-8.467221799999948],[113.40370930000006,-8.472136099999943],[113.4057997000001,-8.465800899999977],[113.4029997,-8.46724759999995],[113.40292340000008,-8.462731],[113.4003447,-8.457877699999926],[113.39826190000008,-8.458082799999943],[113.39672070000006,-8.455170299999963],[113.3929061,-8.4559017],[113.39031210000007,-8.453891399999975],[113.38678730000004,-8.458509099999958],[113.38478840000005,-8.457155799999953],[113.38194260000012,-8.458697],[113.378189,-8.456651299999976],[113.37594590000003,-8.4591099],[113.37271110000006,-8.457399],[113.371292,-8.458763699999963],[113.3674926000001,-8.454744],[113.36735520000002,-8.450519199999974],[113.36400590000005,-8.452720299999953],[113.3590163,-8.452909099999943],[113.35260760000006,-8.44927089999993],[113.34877,-8.453092199999958],[113.34881580000001,-8.455028199999958],[113.34523,-8.455281899999932],[113.34300990000008,-8.458071399999938],[113.34014880000007,-8.456148699999972],[113.33995040000002,-8.453835099999935],[113.3353575000001,-8.452917699999944],[113.33157340000002,-8.448416399999928],[113.32810960000006,-8.449004799999955],[113.3255233000001,-8.452598199999954],[113.31749710000008,-8.452746099999956],[113.30957020000005,-8.449624699999958],[113.30471030000001,-8.450266499999941],[113.30226890000006,-8.448126399999978],[113.30091850000008,-8.448489799999948],[113.30101,-8.447164199999975]]],[[[113.57853680000005,-8.442414799999938],[113.580223,-8.441862599999979],[113.57967360000009,-8.440579],[113.57800280000004,-8.440991],[113.57853680000005,-8.442414799999938]]],[[[113.55175,-8.438146199999949],[113.55177290000006,-8.436524899999938],[113.5502699000001,-8.438043199999981],[113.55175,-8.438146199999949]]],[[[113.53726940000001,-8.432588199999941],[113.535652,-8.431015599999967],[113.5358275000001,-8.433136499999932],[113.53697190000003,-8.433839399999954],[113.53726940000001,-8.432588199999941]]],[[[114.04329660000008,-8.1338056],[114.04331180000008,-8.131634099999928],[114.03937510000003,-8.130669],[114.03735330000006,-8.128639599999929],[114.0346144,-8.128877],[114.03681160000008,-8.124848699999973],[114.0357130000001,-8.121724399999948],[114.03772720000006,-8.122282299999938],[114.03858930000001,-8.120491399999935],[114.03404210000008,-8.12019859999998],[114.02956370000004,-8.1150554],[114.02823620000004,-8.0951122],[114.02212510000004,-8.0927471],[114.01911140000004,-8.087280599999929],[114.01405310000007,-8.084690399999943],[114.00904830000002,-8.074517599999979],[114.000778,-8.069239],[113.99595620000002,-8.069638599999962],[113.99205,-8.067335499999956],[113.98714430000007,-8.066942599999948],[113.978462,-8.062035899999955],[113.97084790000008,-8.055199],[113.9624708,-8.056079299999965],[113.9586485000001,-8.055067399999928],[113.95339950000005,-8.051847799999962],[113.94787580000002,-8.044881199999963],[113.93864420000011,-8.04236069999996],[113.93763710000007,-8.039115299999935],[113.9288328,-8.0345425],[113.9285963000001,-8.032283199999938],[113.92512490000001,-8.031220799999971],[113.91860940000004,-8.024968599999966],[113.91316970000003,-8.024696699999936],[113.91013320000002,-8.022306899999933],[113.90834790000008,-8.022648199999935],[113.9068754000001,-8.020591199999956],[113.903694,-8.020237399999928],[113.90275560000009,-8.01830519999993],[113.89616380000007,-8.0183138],[113.89498880000008,-8.015939199999934],[113.8863732000001,-8.014816099999962],[113.88674490000005,-8.017481399999951],[113.88437940000006,-8.01987269999995],[113.88362980000011,-8.025086899999962],[113.88629130000004,-8.026432099999965],[113.8849087000001,-8.030037599999957],[113.87248870000008,-8.029894399999932],[113.86986220000006,-8.0312689],[113.86842330000002,-8.03583759999998],[113.86061840000002,-8.029895199999942],[113.85501840000006,-8.0222067],[113.85130290000006,-8.0270791],[113.84535960000005,-8.024043499999948],[113.84741190000011,-8.030529499999943],[113.8525618000001,-8.031238],[113.85395030000006,-8.033454399999925],[113.8543006000001,-8.045752499999935],[113.8518451000001,-8.044922199999974],[113.8494568000001,-8.0473487],[113.84149520000005,-8.048800899999947],[113.83905780000009,-8.047711099999958],[113.83931560000008,-8.04639359999993],[113.8356093000001,-8.046005699999967],[113.82986430000005,-8.0478949],[113.82416520000004,-8.0453429],[113.81679520000012,-8.045453499999951],[113.81366710000009,-8.046967],[113.8125927000001,-8.0461255],[113.8096541000001,-8.048465199999953],[113.8097643000001,-8.049915299999952],[113.80750410000007,-8.050307699999962],[113.8056868000001,-8.056484699999942],[113.80220780000002,-8.057663399999967],[113.7998176000001,-8.055460799999935],[113.79539020000004,-8.05543709999995],[113.79464070000006,-8.053030499999977],[113.791104,-8.05148349999996],[113.79051490000006,-8.049409899999944],[113.7859443000001,-8.049375699999928],[113.78410960000008,-8.0513892],[113.78180820000011,-8.050318299999958],[113.7791893000001,-8.043953299999941],[113.77261340000007,-8.038604199999952],[113.7704619000001,-8.038732],[113.76779150000004,-8.044230099999936],[113.76295160000006,-8.046931599999937],[113.75806410000007,-8.057753099999957],[113.75378400000011,-8.051902299999938],[113.7504881000001,-8.0520425],[113.75189190000003,-8.060825799999975],[113.74896930000011,-8.065363],[113.74726090000001,-8.064775],[113.74748980000004,-8.061369399999933],[113.7455672000001,-8.057536599999935],[113.74611650000008,-8.051335799999947],[113.73961620000011,-8.046789599999954],[113.7389677000001,-8.042122399999926],[113.73551160000011,-8.0396447],[113.73329910000007,-8.033624199999963],[113.72800430000007,-8.028247399999941],[113.72618850000003,-8.023572499999943],[113.72176420000005,-8.0221105],[113.72048030000008,-8.023271099999931],[113.70914470000002,-8.011621399999967],[113.695587,-8.010388899999953],[113.68724040000006,-8.011513299999933],[113.68643170000007,-8.00687739999995],[113.68113690000007,-7.997724099999971],[113.67880230000003,-7.996463799999958],[113.67198930000006,-7.986698599999954],[113.66917400000011,-7.975231199999939],[113.6712645,-7.968395699999974],[113.65678390000005,-7.969850099999974],[113.6504744,-7.973941399999944],[113.64356220000002,-7.973120699999981],[113.63870220000001,-7.975614099999973],[113.62768540000002,-7.9759059],[113.62698350000005,-7.981813],[113.61882010000011,-7.983492399999932],[113.61957540000003,-7.987587],[113.61505870000008,-7.989986499999929],[113.6147231000001,-7.992711099999951],[113.61329640000008,-7.991068399999961],[113.61378460000003,-7.988571699999966],[113.60725390000005,-7.989990299999931],[113.60562120000009,-7.989082899999971],[113.60398850000001,-7.980618499999935],[113.60259990000009,-7.979587099999947],[113.59891490000007,-7.980421099999944],[113.5924758000001,-7.979192299999966],[113.58992750000004,-7.984974899999941],[113.58734110000012,-7.985787],[113.57541640000011,-7.985127],[113.57051830000012,-7.987849799999935],[113.56080610000004,-7.986625299999957],[113.55763230000002,-7.993346299999928],[113.55480180000006,-7.994677599999932],[113.55253590000007,-7.998210499999971],[113.5428237000001,-8.000651],[113.54203780000012,-8.003391799999974],[113.53893270000003,-8.005037899999934],[113.53926070000011,-8.006372099999965],[113.53563680000002,-8.007600399999944],[113.53440840000007,-8.006651499999975],[113.53310380000005,-8.009174899999948],[113.530197,-8.0081087],[113.52790820000007,-8.012635799999941],[113.5281371000001,-8.01692449999996],[113.51415240000006,-8.013751599999978],[113.504196,-8.007227499999942],[113.49442280000005,-8.005124699999953],[113.49417860000005,-8.002202599999976],[113.49000540000009,-7.997093799999959],[113.4829863000001,-7.996491099999957],[113.48042280000004,-7.992403099999933],[113.47627240000008,-7.996930199999952],[113.48200980000001,-8.008248],[113.4817885000001,-8.010221099999967],[113.47991170000012,-8.011122299999954],[113.47939290000011,-8.017639699999961],[113.47124470000006,-8.022325099999932],[113.46622450000007,-8.022910699999954],[113.46244800000011,-8.021156899999937],[113.45825950000005,-8.024674],[113.45329270000002,-8.023612599999979],[113.44443500000011,-8.024370799999929],[113.44457230000012,-8.020385399999952],[113.44149770000001,-8.016619299999945],[113.43851460000008,-8.021037699999965],[113.43363180000006,-8.021306599999946],[113.4321364000001,-8.01994579999996],[113.43277730000011,-8.016007099999968],[113.42536910000001,-8.011185299999966],[113.4135817,-8.010317399999963],[113.40871420000008,-8.01323],[113.4057921000001,-8.008654299999932],[113.39672840000003,-8.002780599999937],[113.39557630000002,-8.000000599999964],[113.39128860000005,-7.997275],[113.38863360000005,-8.004092799999967],[113.38716880000004,-8.0136563],[113.383026,-8.013877499999978],[113.37870010000006,-8.017633099999955],[113.37973010000007,-8.018598199999929],[113.3788985000001,-8.020440699999938],[113.37529740000002,-8.022882099999947],[113.37179550000008,-8.021492599999931],[113.37153610000007,-8.023387599999978],[113.36980430000006,-8.022770499999979],[113.36898790000009,-8.024883899999963],[113.366661,-8.025753599999973],[113.366722,-8.02760189999998],[113.36304460000008,-8.027681],[113.36102280000011,-8.027791599999944],[113.35660540000003,-8.034946099999956],[113.35498030000008,-8.03529229999998],[113.35598740000012,-8.037802399999975],[113.35468280000009,-8.043073299999946],[113.35247790000005,-8.044655499999976],[113.35185230000002,-8.0509373],[113.34866320000003,-8.054896],[113.35128010000005,-8.06064189999995],[113.34995260000005,-8.060927],[113.35007470000005,-8.063472399999966],[113.35364520000007,-8.066716799999938],[113.35403430000008,-8.07069839999997],[113.357376,-8.072684899999956],[113.35822280000002,-8.07638609999998],[113.35707080000009,-8.078250499999967],[113.36035140000001,-8.081200199999955],[113.36212150000006,-8.08077869999994],[113.3618239000001,-8.08383619999995],[113.36489090000009,-8.083892499999934],[113.36665330000005,-8.085650099999953],[113.36524190000011,-8.0906092],[113.36295310000003,-8.091659199999981],[113.36456290000001,-8.096369399999958],[113.36413560000005,-8.100842099999966],[113.3619536000001,-8.1006228],[113.3684005,-8.1106726],[113.36623370000007,-8.1145636],[113.36506640000005,-8.11388549999998],[113.36362450000001,-8.115106199999957],[113.362358,-8.118204699999978],[113.36759170000005,-8.120246599999973],[113.37015520000011,-8.1277901],[113.37587730000007,-8.130837099999951],[113.37652580000008,-8.1357609],[113.37287890000005,-8.141519199999948],[113.37239060000002,-8.146483099999955],[113.37581620000003,-8.149074199999973],[113.3790206000001,-8.148526799999956],[113.37947070000007,-8.15793],[113.37761680000006,-8.161750499999926],[113.376213,-8.161499599999956],[113.37449630000003,-8.163496599999974],[113.37485490000006,-8.165076899999974],[113.37268050000011,-8.164807899999971],[113.37249740000004,-8.166808699999933],[113.36839280000004,-8.166406299999949],[113.36840810000001,-8.168075199999976],[113.365982,-8.168323199999975],[113.36627180000005,-8.174300799999969],[113.36859880000009,-8.179781599999956],[113.36785110000005,-8.185211799999934],[113.36331160000009,-8.18944229999994],[113.3606261000001,-8.189457599999969],[113.35282880000011,-8.200521099999946],[113.35314170000004,-8.203741699999966],[113.3485564,-8.207224499999938],[113.3443373,-8.207821499999966],[113.33861530000001,-8.206195499999978],[113.33338920000006,-8.2082831],[113.33052810000004,-8.212736699999937],[113.33134450000011,-8.2155272],[113.32769760000008,-8.217373499999951],[113.3268432000001,-8.221261599999934],[113.3226012,-8.223440799999935],[113.3200988000001,-8.226678499999935],[113.31760390000011,-8.226130099999978],[113.31749710000008,-8.227440499999943],[113.31301110000004,-8.228893899999946],[113.31171410000002,-8.233677499999942],[113.31558220000011,-8.238295199999925],[113.31533040000011,-8.248509099999978],[113.31944260000012,-8.25835],[113.319702,-8.2655684],[113.312477,-8.291300399999955],[113.30862420000005,-8.300553],[113.30341150000004,-8.307480599999963],[113.32883,-8.32225],[113.33778,-8.32922],[113.35841,-8.35026],[113.37230000000011,-8.36931],[113.38805,-8.40033],[113.39491,-8.39865],[113.40636,-8.38882],[113.40859000000012,-8.38921],[113.42209,-8.38215],[113.43217,-8.37934],[113.45406,-8.37856],[113.47285000000011,-8.38373],[113.4754,-8.38595],[113.47584,-8.39689],[113.4747,-8.39854],[113.47953,-8.40284],[113.47778,-8.4043],[113.47945,-8.41046],[113.4849,-8.41639],[113.49417,-8.41337],[113.4978,-8.4152],[113.49832,-8.41779],[113.50103,-8.41749],[113.50477,-8.41964],[113.50445,-8.42331],[113.50770000000011,-8.42269],[113.50833000000011,-8.4201],[113.50987,-8.4221],[113.51186,-8.42157],[113.51438,-8.42519],[113.52007,-8.42553],[113.52154,-8.42875],[113.52724,-8.43061],[113.52961,-8.42711],[113.53498,-8.42991],[113.54501,-8.42911],[113.5491300000001,-8.43034],[113.54936,-8.43275],[113.54739,-8.43333],[113.54964,-8.4332],[113.55283,-8.43648],[113.55492,-8.43518],[113.55347,-8.43439],[113.55364,-8.4303],[113.55702,-8.42709],[113.56168,-8.42521],[113.56999,-8.42554],[113.57758,-8.42926],[113.58122,-8.43264],[113.58159,-8.43468],[113.58012,-8.43503],[113.58079,-8.4367],[113.57929,-8.43823],[113.5833,-8.44085],[113.5818200000001,-8.44275],[113.58279,-8.44439],[113.5869100000001,-8.44285],[113.58723,-8.44034],[113.58894,-8.44063],[113.58897,-8.44186],[113.59274,-8.43633],[113.60059,-8.43598],[113.62367,-8.4463],[113.62729,-8.45089],[113.62437000000011,-8.45484],[113.62566,-8.45413],[113.62765,-8.4561],[113.6306,-8.45652],[113.63264,-8.45549],[113.63336,-8.45668],[113.63829,-8.45505],[113.64095,-8.45883],[113.64201,-8.46526],[113.64055,-8.46782],[113.63679,-8.46912],[113.63621,-8.47245],[113.63789,-8.47598],[113.64441000000011,-8.47778],[113.64835,-8.48129],[113.6489,-8.48672],[113.64722,-8.48918],[113.6439,-8.49041],[113.64569,-8.49173],[113.64615,-8.49501],[113.65604,-8.49401],[113.65969,-8.49554],[113.66024,-8.49833],[113.66908,-8.49823],[113.67008,-8.49496],[113.67284,-8.4926],[113.67738,-8.49169],[113.67839,-8.4934],[113.68098,-8.49365],[113.68359,-8.49138],[113.68609,-8.49376],[113.68574,-8.49645],[113.68706,-8.49744],[113.68637,-8.50343],[113.6895,-8.50565],[113.69160000000011,-8.50218],[113.6950700000001,-8.50032],[113.69495,-8.49566],[113.7032200000001,-8.49061],[113.70374,-8.48949],[113.7004,-8.48629],[113.70293,-8.48276],[113.70843,-8.4817],[113.71714,-8.48527],[113.72182,-8.49684],[113.71983000000012,-8.49989],[113.72072,-8.50199],[113.71788,-8.5049],[113.71641000000011,-8.50946],[113.71920000000011,-8.5122],[113.71257,-8.51546],[113.71342,-8.52031],[113.7104,-8.5232],[113.71223,-8.5286],[113.71604,-8.52737],[113.71807,-8.52097],[113.72232,-8.51746],[113.7248,-8.51845],[113.7252,-8.52096],[113.7269500000001,-8.51755],[113.73137,-8.51542],[113.73383,-8.51742],[113.73284,-8.52391],[113.73439,-8.52606],[113.73911,-8.5263],[113.73896,-8.52436],[113.74141,-8.52429],[113.74394,-8.52125],[113.74879,-8.52098],[113.74922,-8.51869],[113.75378,-8.51985],[113.76166,-8.51434],[113.75471,-8.51037],[113.7582900000001,-8.503],[113.76012,-8.50255],[113.762,-8.50448],[113.76194,-8.50237],[113.76467,-8.50119],[113.76714,-8.50479],[113.77107,-8.50401],[113.77245,-8.50118],[113.77499000000012,-8.50057],[113.78015,-8.49602],[113.78327,-8.49691],[113.78507,-8.49577],[113.78598000000011,-8.4989],[113.78735,-8.49913],[113.78645,-8.49292],[113.78907,-8.48989],[113.7960700000001,-8.48983],[113.80756,-8.49562],[113.81152,-8.4989],[113.81252,-8.50314],[113.80981,-8.50564],[113.80706,-8.50564],[113.8056,-8.50782],[113.80553,-8.50987],[113.80774,-8.50995],[113.80826,-8.51325],[113.81012,-8.51357],[113.81049,-8.5156],[113.80945,-8.51783],[113.80664,-8.51751],[113.80376,-8.52065],[113.80553,-8.52131],[113.80699,-8.51975],[113.80761,-8.52065],[113.80698,-8.52558],[113.80903,-8.52916],[113.80766,-8.53222],[113.80891,-8.53205],[113.80986,-8.53437],[113.81465,-8.53383],[113.81611,-8.53667],[113.81250000000011,-8.53833],[113.81469,-8.54189],[113.8119200000001,-8.54272],[113.81213,-8.54578],[113.80983,-8.54796],[113.80698,-8.54756],[113.8068300000001,-8.55599],[113.80989000000011,-8.55685],[113.81107,-8.55567],[113.8109,-8.55825],[113.81452,-8.55894],[113.81657,-8.55475],[113.8153,-8.55198],[113.81555,-8.54647],[113.82026,-8.54501],[113.82172,-8.54199],[113.82518,-8.54309],[113.82571,-8.53517],[113.8273200000001,-8.52848],[113.82877,-8.5277],[113.83405,-8.5279],[113.8370000000001,-8.53026],[113.83589,-8.53227],[113.8382600000001,-8.53632],[113.83364,-8.54167],[113.83449,-8.54561],[113.83683,-8.54744],[113.8339,-8.55081],[113.8357400000001,-8.55167],[113.8359200000001,-8.55421],[113.83714920000011,-8.554029199999945],[113.84377270000005,-8.5457567],[113.8472746000001,-8.532645599999967],[113.85291270000005,-8.526025199999935],[113.85501840000006,-8.519502099999954],[113.85542280000004,-8.515369799999974],[113.84728990000008,-8.508923899999957],[113.84305560000007,-8.503391699999952],[113.84213240000008,-8.494321299999967],[113.84482560000004,-8.475021799999979],[113.84822830000007,-8.4622311],[113.848152,-8.454422399999942],[113.854637,-8.429845299999954],[113.87499980000007,-8.415971199999944],[113.8819502,-8.417146099999968],[113.89034250000009,-8.40985429999995],[113.89421060000006,-8.413352399999951],[113.90032940000003,-8.423871399999939],[113.90102370000011,-8.426577],[113.89923080000005,-8.434336099999939],[113.905403,-8.439960799999938],[113.91024,-8.441873],[113.93206770000006,-8.425376299999925],[113.936302,-8.417659199999946],[113.9374312000001,-8.409064599999965],[113.94727310000007,-8.401679399999978],[113.94512920000011,-8.400248899999951],[113.94427470000005,-8.397385],[113.93595870000001,-8.392880799999944],[113.93301370000006,-8.388799099999972],[113.9304274000001,-8.3888515],[113.92367540000009,-8.384262399999955],[113.92720780000002,-8.380032899999946],[113.9277495,-8.376713199999926],[113.927162,-8.37519969999994],[113.92443070000002,-8.375076699999966],[113.92164590000004,-8.369896299999937],[113.92140940000002,-8.364370699999938],[113.92253090000008,-8.363458],[113.91870860000006,-8.35848939999994],[113.92122630000006,-8.357324],[113.91899850000004,-8.353686699999969],[113.915901,-8.353169799999932],[113.91686230000005,-8.350528099999963],[113.91582470000003,-8.34811819999993],[113.91151410000009,-8.350018899999952],[113.91155990000004,-8.3478769],[113.90901170000006,-8.346860299999946],[113.91049940000005,-8.346265199999948],[113.91349770000011,-8.34001],[113.92393470000002,-8.33425939999995],[113.925041,-8.329299299999946],[113.927162,-8.327596099999937],[113.92572,-8.323368399999936],[113.92833690000009,-8.319819799999948],[113.9238203000001,-8.315934499999969],[113.92352270000004,-8.3105396],[113.92031080000004,-8.308166899999947],[113.92481210000005,-8.299395899999979],[113.92591080000011,-8.293994299999952],[113.92909220000001,-8.292674399999953],[113.93010690000006,-8.286097899999959],[113.93429550000008,-8.281473499999947],[113.93379190000007,-8.275267],[113.93508130000009,-8.269269299999962],[113.937332,-8.266300599999965],[113.9359816000001,-8.265050299999928],[113.93703440000002,-8.263843899999927],[113.93404370000007,-8.261379599999941],[113.93434120000006,-8.255194099999926],[113.94423660000007,-8.244485299999951],[113.95162950000008,-8.242918399999951],[113.95937330000004,-8.243258799999978],[113.96416450000004,-8.238546699999972],[113.96664410000005,-8.232213399999978],[113.9652479,-8.225468],[113.96807080000008,-8.2205547],[113.96308120000003,-8.2150405],[113.96001420000005,-8.208154099999945],[113.95748880000008,-8.206427],[113.96582780000006,-8.198713699999928],[113.97072580000008,-8.189533599999947],[113.98080430000005,-8.187439299999937],[113.99088270000004,-8.182614699999931],[114.00389840000003,-8.165488599999946],[114.0042188000001,-8.1622146],[114.02255230000003,-8.141417799999942],[114.02671790000011,-8.139418],[114.0372923000001,-8.139760299999978],[114.04329660000008,-8.1338056]]]]},"properties":{"shapeName":"Jember","shapeISO":"","shapeID":"22746128B6952948756414","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[114.45006460000002,-8.172285399999964],[114.4470851000001,-8.17876089999993],[114.45363430000009,-8.173108099999979],[114.451174,-8.173959899999943],[114.45171170000003,-8.17291769999997],[114.45006460000002,-8.172285399999964]]],[[[114.451544,-8.165179699999953],[114.4503257,-8.165750799999955],[114.45135340000002,-8.167858199999955],[114.451544,-8.165179699999953]]],[[[114.44543910000004,-8.164519199999972],[114.44350140000006,-8.16401849999994],[114.44471370000008,-8.165636499999948],[114.44666130000007,-8.164722799999936],[114.44543910000004,-8.164519199999972]]],[[[114.45771830000001,-8.173412699999972],[114.45927840000002,-8.166688299999976],[114.4513928,-8.178352599999926],[114.444095,-8.180429199999935],[114.44228620000001,-8.1845625],[114.44286680000005,-8.181669099999965],[114.44079480000005,-8.1771627],[114.445073,-8.175773099999958],[114.4451825000001,-8.1709618],[114.44330750000006,-8.167935099999966],[114.44187980000004,-8.16846339999995],[114.44137060000003,-8.165498599999978],[114.43836650000003,-8.164398099999971],[114.4389662000001,-8.160604],[114.43325190000007,-8.165279599999963],[114.43322930000011,-8.1692348],[114.43168690000005,-8.1707077],[114.4334358000001,-8.179284399999972],[114.439201,-8.186317299999928],[114.44299860000001,-8.204016899999942],[114.4482144000001,-8.219159799999943],[114.453335,-8.225784199999964],[114.454382,-8.230133899999942],[114.4598595000001,-8.234459699999945],[114.468535,-8.245195899999942],[114.47341540000002,-8.2560299],[114.4784955,-8.262323599999945],[114.48363990000007,-8.275790699999959],[114.50942410000005,-8.30103],[114.51818660000004,-8.307525599999963],[114.52054930000008,-8.312294399999928],[114.51808690000007,-8.324673599999926],[114.51947220000011,-8.328857099999937],[114.52358120000008,-8.333766],[114.52248810000003,-8.333950499999958],[114.52902950000009,-8.338859299999967],[114.5384332000001,-8.342610599999944],[114.5452729000001,-8.348241199999961],[114.54707170000006,-8.35554559999997],[114.55355170000007,-8.360168299999941],[114.55651410000007,-8.363841599999944],[114.55647850000003,-8.366165199999955],[114.5656024000001,-8.372009899999966],[114.57540080000001,-8.383703199999957],[114.57394220000003,-8.385873799999956],[114.5757182000001,-8.388103599999965],[114.57340710000005,-8.388925299999926],[114.58074890000012,-8.394946499999946],[114.58184040000003,-8.398165699999936],[114.5964719000001,-8.40320079999998],[114.6052681000001,-8.400084799999945],[114.60411230000011,-8.401703399999974],[114.606077,-8.403476399999931],[114.62309490000007,-8.407385099999942],[114.63864990000002,-8.4066485],[114.68693750000011,-8.3980027],[114.70686190000004,-8.396759299999928],[114.73077320000004,-8.396339299999966],[114.75191160000008,-8.399622299999976],[114.79994640000007,-8.413067],[114.80438950000007,-8.416029099999946],[114.80606160000002,-8.4211512],[114.81639870000004,-8.42598309999994],[114.81655930000011,-8.431902],[114.8193725000001,-8.431159199999968],[114.82507370000008,-8.434975899999927],[114.83535570000004,-8.435658599999954],[114.85101610000004,-8.439333],[114.87524850000011,-8.4489407],[114.8846615000001,-8.450513499999943],[114.90308470000002,-8.459084099999927],[114.91588840000009,-8.46767639999996],[114.91544990000011,-8.466101199999969],[114.91863840000008,-8.461996599999964],[114.9167705000001,-8.459581399999934],[114.91865030000008,-8.459617099999946],[114.91840050000008,-8.457618399999944],[114.92075610000006,-8.45602409999998],[114.92004230000009,-8.454358499999955],[114.92192210000007,-8.45437039999996],[114.92155320000006,-8.4527762],[114.92356390000009,-8.452633399999968],[114.92428960000007,-8.449968399999932],[114.92555070000003,-8.450194499999952],[114.92650250000008,-8.448457399999938],[114.925036,-8.445866799999976],[114.92553090000001,-8.442326099999946],[114.92848140000001,-8.440879399999972],[114.92728220000004,-8.4390901],[114.92861470000003,-8.43678669999997],[114.92534060000003,-8.432979599999953],[114.92712990000007,-8.4323324],[114.927049,-8.425599699999964],[114.92448390000004,-8.4217973],[114.92604490000008,-8.416372199999955],[114.92438880000009,-8.414659],[114.92861470000003,-8.411232499999926],[114.92867180000007,-8.4077871],[114.93055630000003,-8.407558599999959],[114.930366,-8.405788299999926],[114.93562170000007,-8.400394099999971],[114.9370732000001,-8.394374],[114.93684,-8.391837499999951],[114.93171460000008,-8.38616639999998],[114.93272890000003,-8.385181799999941],[114.93168670000011,-8.383083099999965],[114.92429230000005,-8.3827029],[114.92276790000005,-8.381083599999954],[114.91640040000004,-8.380541],[114.90262930000006,-8.375347499999975],[114.9052190000001,-8.372485],[114.89956180000001,-8.366131499999938],[114.8973995,-8.366901],[114.8962193000001,-8.365882599999964],[114.8969522000001,-8.3603622],[114.8958831000001,-8.3567972],[114.88740540000003,-8.351796899999954],[114.88436940000008,-8.346695599999975],[114.87816380000004,-8.344324899999947],[114.87029240000004,-8.337194],[114.8639932000001,-8.335278],[114.86103760000003,-8.340683699999943],[114.85844980000002,-8.341687],[114.85113290000004,-8.336621699999966],[114.84710990000008,-8.337509],[114.84263370000008,-8.335174],[114.83891720000008,-8.33780539999998],[114.83086020000007,-8.334067599999969],[114.824086,-8.332926499999928],[114.82218110000008,-8.325013],[114.82479390000003,-8.317652299999963],[114.82086670000001,-8.317444399999943],[114.81875810000008,-8.315383399999973],[114.82058060000008,-8.301512699999932],[114.81867220000004,-8.29425139999995],[114.81643570000006,-8.292779699999926],[114.81713510000009,-8.281837399999972],[114.813082,-8.279098099999942],[114.81363840000006,-8.271477599999969],[114.81079910000005,-8.266276299999959],[114.81180870000003,-8.263689299999953],[114.815985,-8.264255099999957],[114.81658530000004,-8.2599576],[114.80797710000002,-8.252318099999968],[114.80193290000011,-8.251427399999955],[114.79865230000007,-8.252692899999943],[114.79559290000009,-8.256645899999967],[114.78505140000004,-8.254291299999977],[114.78319510000006,-8.2559726],[114.78414120000002,-8.258045899999956],[114.78317830000003,-8.259516299999973],[114.77826120000009,-8.260433199999966],[114.77613080000003,-8.263138499999968],[114.77081150000004,-8.260069899999962],[114.770751,-8.2552419],[114.7662590000001,-8.2534072],[114.762828,-8.249040799999932],[114.76054680000004,-8.240717399999937],[114.75595460000011,-8.231829699999935],[114.7442688000001,-8.222574599999973],[114.72752770000011,-8.216917],[114.71986620000007,-8.210146299999963],[114.70717270000011,-8.2029733],[114.70307880000007,-8.198546199999953],[114.70105620000004,-8.1988667],[114.69127120000007,-8.209541499999943],[114.69094280000002,-8.219013699999948],[114.68430160000003,-8.231757199999947],[114.67394760000002,-8.22326389999995],[114.66747610000004,-8.222439399999928],[114.65228940000009,-8.226218099999926],[114.65137450000009,-8.223862499999939],[114.6467434000001,-8.220251],[114.637634,-8.217344199999957],[114.63252410000007,-8.21339919999997],[114.62814720000006,-8.205002],[114.6267395000001,-8.19899959999998],[114.62058130000003,-8.190426399999978],[114.61861660000011,-8.18389],[114.6134780000001,-8.184524799999963],[114.60427860000004,-8.177244299999927],[114.6016456000001,-8.178472299999953],[114.59578340000007,-8.176298799999927],[114.59118810000007,-8.177425],[114.59001130000001,-8.1734027],[114.58519450000006,-8.174467799999945],[114.58496610000009,-8.177080499999931],[114.58313870000006,-8.178022699999929],[114.57758980000006,-8.178623499999958],[114.57700440000008,-8.186453799999981],[114.57296030000009,-8.189340199999947],[114.5624117000001,-8.191864899999928],[114.55324930000006,-8.19777929999998],[114.53195370000003,-8.191226299999926],[114.51983350000012,-8.204475799999955],[114.51369040000009,-8.205654],[114.50998690000006,-8.205336699999975],[114.5061032000001,-8.200054099999932],[114.5000066,-8.198527499999955],[114.4943479000001,-8.193624299999954],[114.48087280000004,-8.197109199999943],[114.45891990000007,-8.193711199999939],[114.45703190000006,-8.192477],[114.45594850000009,-8.187470299999973],[114.45566050000002,-8.177904099999978],[114.45771830000001,-8.173412699999972]]]]},"properties":{"shapeName":"Jembrana","shapeISO":"","shapeID":"22746128B77741300405223","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[119.59817670000007,-5.647479099999941],[119.59605710000005,-5.646710599999949],[119.59779950000006,-5.649347499999976],[119.6018792000001,-5.649075799999935],[119.6018868000001,-5.647941499999945],[119.59817670000007,-5.647479099999941]]],[[[119.52706790000002,-5.594972299999938],[119.52804880000008,-5.5926317],[119.5271289000001,-5.589757499999962],[119.5244378000001,-5.593674499999963],[119.52706790000002,-5.594972299999938]]],[[[119.5177251,-5.587739399999975],[119.51437890000011,-5.590633199999957],[119.51580390000004,-5.593547299999955],[119.51826050000011,-5.5935003],[119.52011730000004,-5.591562299999964],[119.5201843000001,-5.589271599999961],[119.5177251,-5.587739399999975]]],[[[119.93738140000005,-5.386690099999953],[119.93520520000004,-5.387742799999955],[119.93064240000001,-5.395064899999966],[119.91928960000007,-5.400658],[119.9084547000001,-5.4201171],[119.89971610000009,-5.422372699999926],[119.89648270000009,-5.421403399999974],[119.89189540000007,-5.422310799999934],[119.87751490000005,-5.431667599999969],[119.874051,-5.431873899999971],[119.86294090000001,-5.446943399999952],[119.8602241000001,-5.4476159],[119.85299440000006,-5.460281699999939],[119.84839020000004,-5.462878699999976],[119.83695640000008,-5.481329199999948],[119.83295160000011,-5.496078699999941],[119.83314760000007,-5.504279299999951],[119.8265937000001,-5.510552799999971],[119.82200530000011,-5.512925799999948],[119.8217677,-5.515819299999976],[119.818365,-5.517181699999981],[119.8188417,-5.521296099999972],[119.81428820000008,-5.526369],[119.81608640000002,-5.534993199999974],[119.80891930000007,-5.535161899999935],[119.80957550000005,-5.537666399999978],[119.81366680000008,-5.5395928],[119.81236840000008,-5.540940399999954],[119.80846180000003,-5.5397674],[119.8066242000001,-5.5409633],[119.80750410000007,-5.543487599999935],[119.80498480000006,-5.54441],[119.80439790000003,-5.554903699999954],[119.79462050000006,-5.556412499999965],[119.79063850000011,-5.562686099999951],[119.78650710000011,-5.565720699999929],[119.786393,-5.569388199999935],[119.78195470000003,-5.566912299999956],[119.78002310000011,-5.569035499999927],[119.7789001000001,-5.568339399999957],[119.7778575000001,-5.566484099999968],[119.77950980000003,-5.562133299999971],[119.77840440000011,-5.5612968],[119.77661540000008,-5.561504399999933],[119.77710910000008,-5.564151899999956],[119.77489560000004,-5.5655014],[119.77396720000002,-5.568763199999978],[119.76915660000009,-5.569642899999963],[119.76641290000009,-5.566318399999943],[119.75502640000002,-5.567564599999969],[119.74768370000004,-5.566035599999964],[119.73906760000011,-5.560979299999929],[119.73027170000012,-5.561327299999959],[119.72916070000008,-5.557600499999978],[119.72654380000006,-5.556311299999948],[119.7239952000001,-5.556874299999947],[119.72169140000005,-5.555002399999978],[119.721294,-5.549621499999944],[119.71481260000007,-5.548937499999965],[119.70650680000006,-5.545080799999937],[119.70093770000005,-5.530702099999928],[119.70479880000005,-5.522506399999941],[119.705072,-5.516893499999981],[119.70303980000006,-5.510965699999929],[119.7057215000001,-5.506218399999966],[119.6993308000001,-5.501186899999936],[119.68640140000002,-5.500531499999965],[119.68091020000008,-5.5045233],[119.67198040000005,-5.514494799999966],[119.66961760000004,-5.514252399999975],[119.66493650000007,-5.507504799999936],[119.66287660000012,-5.493579299999965],[119.65834310000002,-5.486433199999965],[119.6621149,-5.484518699999967],[119.66401630000007,-5.478211599999952],[119.65448010000011,-5.473084899999947],[119.65372570000011,-5.469717399999979],[119.6515094,-5.469176],[119.641914,-5.4706733],[119.631131,-5.475401899999952],[119.63800230000004,-5.462412599999936],[119.63876320000008,-5.458396899999968],[119.6483022000001,-5.452824299999975],[119.645011,-5.4491697],[119.64478340000005,-5.444290799999976],[119.6407630000001,-5.437024599999972],[119.64111320000006,-5.434610199999952],[119.6430305,-5.434303099999966],[119.63907510000001,-5.4308236],[119.63617110000007,-5.431197699999927],[119.6328138,-5.434917599999949],[119.61239970000008,-5.437337899999932],[119.6082626000001,-5.440970799999945],[119.60016970000004,-5.4395417],[119.59201140000005,-5.441293899999948],[119.583518,-5.441149699999926],[119.57342690000007,-5.446859299999971],[119.56679580000002,-5.443715499999939],[119.56461720000004,-5.445152699999937],[119.56203090000008,-5.442425299999968],[119.55640170000004,-5.440397699999949],[119.55085780000002,-5.440005499999927],[119.5495671000001,-5.436531399999978],[119.54188250000004,-5.433473],[119.536422,-5.435240199999953],[119.52993120000008,-5.431905499999971],[119.52845780000007,-5.437018],[119.52734380000004,-5.436444199999926],[119.52421760000004,-5.440434],[119.52164540000001,-5.440526099999943],[119.523751,-5.443843199999947],[119.52356010000005,-5.446058199999925],[119.5057375,-5.457032399999946],[119.50538570000003,-5.459998399999961],[119.50805180000009,-5.462002699999971],[119.509634,-5.468747399999927],[119.51751960000001,-5.475275799999963],[119.52154230000008,-5.485399299999926],[119.51363110000011,-5.489373199999932],[119.51195460000008,-5.492017099999941],[119.50600330000009,-5.4909004],[119.50549990000002,-5.492144599999961],[119.501502,-5.492151299999932],[119.49634920000005,-5.488476099999957],[119.49589430000003,-5.4913164],[119.49226320000002,-5.4907392],[119.49120870000002,-5.492214499999932],[119.48682010000005,-5.492418199999975],[119.48615780000011,-5.4992312],[119.48860660000003,-5.505059599999925],[119.48717170000009,-5.510958399999936],[119.50531690000003,-5.523264199999971],[119.51103090000004,-5.536798599999941],[119.51254630000005,-5.5398694],[119.5149824,-5.540681499999948],[119.51402080000003,-5.5419147],[119.51594810000006,-5.547202699999957],[119.5184183,-5.548358],[119.51178930000003,-5.553483599999936],[119.51202410000008,-5.555136599999969],[119.51764590000005,-5.558805199999938],[119.51563550000003,-5.562553599999944],[119.51029240000003,-5.565195399999936],[119.51277890000006,-5.569288299999926],[119.5233531,-5.574238499999979],[119.52463550000004,-5.577499199999977],[119.526023,-5.577292899999975],[119.52495190000002,-5.578555399999971],[119.53084030000002,-5.580936699999938],[119.53384690000007,-5.586011099999951],[119.54216960000008,-5.583697599999937],[119.54689070000006,-5.586609499999952],[119.55212470000004,-5.5937264],[119.55636260000006,-5.591565399999979],[119.55525110000008,-5.593574099999955],[119.55730860000006,-5.595517],[119.55768670000009,-5.598320299999955],[119.56345290000002,-5.599958],[119.57323680000002,-5.606891899999937],[119.56902140000011,-5.605690399999958],[119.56378930000005,-5.612101799999948],[119.56043100000011,-5.611257099999932],[119.55746770000007,-5.605144199999927],[119.55598490000011,-5.5950008],[119.55333860000007,-5.594979299999977],[119.55379190000008,-5.599388499999975],[119.550498,-5.603568199999927],[119.5500568000001,-5.613268599999969],[119.54487760000006,-5.619484],[119.54671480000002,-5.622802099999944],[119.54570850000005,-5.633891099999971],[119.54717630000005,-5.638056],[119.55675020000001,-5.648518899999942],[119.56986370000004,-5.655514799999935],[119.57326080000007,-5.656035599999939],[119.57458480000003,-5.6580525],[119.5780496000001,-5.658276],[119.58200150000005,-5.6534708],[119.58230320000007,-5.650075199999947],[119.58762540000009,-5.645898599999953],[119.587433,-5.641824899999961],[119.58891150000011,-5.641637],[119.58813540000006,-5.638490299999944],[119.58686560000001,-5.638096299999972],[119.58818630000007,-5.631605699999966],[119.58758250000005,-5.6265114],[119.58988440000007,-5.622020799999973],[119.58890330000008,-5.622322599999961],[119.58890330000008,-5.620020699999941],[119.58705420000001,-5.618247099999962],[119.587092,-5.6211151],[119.58362020000004,-5.621718899999962],[119.58505420000006,-5.6147],[119.58928070000002,-5.612549],[119.591658,-5.613115],[119.59373490000007,-5.6179243],[119.59561530000008,-5.618538099999967],[119.599277,-5.616061399999978],[119.60349930000007,-5.617134399999941],[119.60759470000005,-5.616077299999972],[119.60885180000002,-5.612926799999968],[119.61205560000008,-5.612828099999945],[119.6165304000001,-5.616955299999972],[119.61478360000001,-5.621773399999938],[119.61703890000001,-5.625133199999937],[119.62797190000003,-5.624677],[119.63786630000004,-5.629421799999932],[119.65020430000004,-5.628371699999946],[119.65317840000012,-5.6344487],[119.6543276000001,-5.633843799999966],[119.65327170000012,-5.636871399999961],[119.65407080000011,-5.6382733],[119.65618680000011,-5.637848299999973],[119.65411630000006,-5.638923299999931],[119.65776630000005,-5.642698099999961],[119.65831720000006,-5.646607],[119.65991660000009,-5.648190199999931],[119.657632,-5.651874599999928],[119.65856420000011,-5.653266299999927],[119.65675280000005,-5.654473799999948],[119.65041320000012,-5.654171899999938],[119.64716790000011,-5.657983299999955],[119.64052630000003,-5.660247399999946],[119.63965840000003,-5.664058799999964],[119.6408282000001,-5.672097699999938],[119.64758640000002,-5.679656899999941],[119.64736160000007,-5.682129],[119.65886560000001,-5.683603699999935],[119.66584570000009,-5.6880281],[119.6729481000001,-5.6948777],[119.6760025000001,-5.694264399999952],[119.67969940000012,-5.6964508],[119.6851249,-5.696501099999978],[119.69248090000008,-5.700842399999942],[119.69623120000006,-5.700422599999968],[119.704607,-5.702939899999933],[119.72981820000007,-5.702254499999981],[119.735336,-5.701172299999939],[119.7394498000001,-5.698170199999936],[119.74398070000007,-5.698500299999978],[119.74587610000003,-5.700851799999953],[119.76433350000002,-5.702962299999967],[119.79430460000003,-5.700706399999945],[119.8104168000001,-5.688312199999928],[119.8223197000001,-5.673199199999942],[119.83905090000007,-5.672589],[119.85003470000004,-5.665152899999953],[119.853994,-5.659774499999969],[119.85439140000005,-5.656453799999952],[119.84912940000004,-5.651176199999952],[119.84740060000001,-5.652585199999976],[119.84567980000008,-5.649036299999977],[119.84434270000008,-5.6491587],[119.84388920000004,-5.641570699999932],[119.83825270000011,-5.641570699999932],[119.83657850000009,-5.639338399999929],[119.84136400000011,-5.638232599999981],[119.84003860000007,-5.634539099999927],[119.84377760000007,-5.633925199999965],[119.84637310000005,-5.636069499999962],[119.84652960000005,-5.634542899999929],[119.85061660000008,-5.633209],[119.84790740000005,-5.627518599999974],[119.84857550000004,-5.626512399999967],[119.85083650000001,-5.6292932],[119.85437640000009,-5.629646299999933],[119.85327250000012,-5.633175499999936],[119.85794480000004,-5.636034799999948],[119.86255640000002,-5.633518399999957],[119.86059980000005,-5.627284599999939],[119.86619830000006,-5.6175421],[119.86665240000002,-5.613994399999967],[119.86473760000001,-5.612735599999951],[119.86501270000008,-5.610448299999973],[119.86694200000011,-5.6089209],[119.87061170000004,-5.610858199999939],[119.872641,-5.614533599999959],[119.87491150000005,-5.613795699999969],[119.87675640000009,-5.607977399999925],[119.88214890000006,-5.601307599999927],[119.88806660000012,-5.595787299999927],[119.8953891000001,-5.594027599999947],[119.8978158000001,-5.5921686],[119.8997174000001,-5.587911299999973],[119.904514,-5.584562299999959],[119.90733640000008,-5.576793599999974],[119.9048120000001,-5.572215599999936],[119.90868750000004,-5.570047899999963],[119.90675460000011,-5.565163799999937],[119.90791750000005,-5.564246099999934],[119.9026798000001,-5.563811599999951],[119.90119990000005,-5.560650099999975],[119.9020071000001,-5.559035699999981],[119.90009010000006,-5.557185899999979],[119.89813930000003,-5.557185899999979],[119.89417070000002,-5.561524499999962],[119.89067280000006,-5.562466299999926],[119.88276910000002,-5.556715],[119.87439450000011,-5.556580499999939],[119.86628,-5.552862699999935],[119.86420370000008,-5.554596199999935],[119.85627080000006,-5.554329499999938],[119.85756920000006,-5.547782199999972],[119.86143920000006,-5.540534599999944],[119.86252480000007,-5.530535899999961],[119.86041510000007,-5.5260109],[119.85473790000003,-5.521122699999978],[119.853351,-5.516299499999946],[119.85497260000011,-5.515858],[119.8584489000001,-5.519282099999941],[119.86891560000004,-5.523369399999979],[119.86942450000004,-5.525231499999961],[119.87375750000001,-5.528030399999977],[119.8760089000001,-5.527387199999964],[119.8734012000001,-5.518714399999965],[119.87594160000003,-5.509326299999941],[119.8741414000001,-5.504235799999947],[119.87859860000003,-5.499438199999929],[119.87962550000009,-5.490656899999976],[119.88397140000006,-5.485729699999979],[119.8869396,-5.484807899999964],[119.89628950000008,-5.476736],[119.8991866,-5.461567899999977],[119.9063973000001,-5.455818099999931],[119.91230080000003,-5.442764099999977],[119.92349420000005,-5.434955],[119.92414240000005,-5.4284168],[119.926446,-5.424770499999966],[119.926255,-5.420261599999947],[119.930802,-5.416650699999934],[119.9368584,-5.408091499999955],[119.93738140000005,-5.386690099999953]]]]},"properties":{"shapeName":"Jeneponto","shapeISO":"","shapeID":"22746128B95068168659925","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[110.62825240000006,-6.5736873],[110.62608930000005,-6.573691899999972],[110.62518510000007,-6.575231599999938],[110.63156790000005,-6.577742499999943],[110.630202,-6.573968599999944],[110.62825240000006,-6.5736873]]],[[[110.759152,-6.791549199999963],[110.762046,-6.784339599999953],[110.76360540000007,-6.784765499999935],[110.76435850000007,-6.782920799999943],[110.76752840000006,-6.769763599999976],[110.77851230000005,-6.761832199999958],[110.78081070000007,-6.762168299999928],[110.78154270000005,-6.759832099999926],[110.78359320000004,-6.761379699999964],[110.78500690000004,-6.758929499999965],[110.78694140000005,-6.759040399999947],[110.78745970000006,-6.756412699999942],[110.79022730000008,-6.756782399999963],[110.79025210000009,-6.754853399999945],[110.79276210000006,-6.752786499999957],[110.79683690000007,-6.755817399999955],[110.79803470000007,-6.758565399999952],[110.80659960000008,-6.751542599999937],[110.81483080000004,-6.748939699999937],[110.82827760000004,-6.755569],[110.83020780000004,-6.754680099999973],[110.83049010000008,-6.75],[110.836937,-6.737998499999946],[110.83130650000004,-6.736478799999929],[110.82943730000005,-6.738604499999951],[110.82501980000006,-6.736041499999942],[110.82399,-6.729932899999937],[110.827095,-6.720801799999947],[110.82315830000005,-6.715966699999967],[110.82036590000007,-6.708916699999975],[110.82534030000005,-6.703706199999942],[110.83219910000008,-6.704240299999981],[110.83912660000004,-6.702826499999958],[110.83786010000006,-6.700760799999955],[110.83909610000006,-6.699573],[110.83594510000006,-6.69663],[110.83695220000004,-6.694461799999942],[110.83556370000008,-6.693573],[110.83683660000008,-6.692397],[110.83322140000007,-6.689067299999977],[110.83669280000004,-6.684738099999947],[110.83641050000006,-6.682679599999972],[110.83885960000003,-6.6807441],[110.84341430000006,-6.667918199999974],[110.85087580000004,-6.664536899999973],[110.84912870000005,-6.657787299999939],[110.84669230000009,-6.655741699999965],[110.84716030000004,-6.651906],[110.85110470000006,-6.648961499999928],[110.85606740000009,-6.649128399999938],[110.85919280000007,-6.647026299999936],[110.85980050000006,-6.623292599999957],[110.86216290000004,-6.623939899999925],[110.86358510000008,-6.627079],[110.86635030000008,-6.623294399999963],[110.87248010000008,-6.620772399999964],[110.87145920000006,-6.618308599999978],[110.87683850000008,-6.618354099999976],[110.87380310000009,-6.616686899999934],[110.87614690000004,-6.615605899999935],[110.88005250000003,-6.616267799999946],[110.88233370000006,-6.625581699999941],[110.88413630000008,-6.626183],[110.884558,-6.621376199999929],[110.891528,-6.623480799999925],[110.89597510000004,-6.621679099999938],[110.89581860000004,-6.624562199999957],[110.90219540000004,-6.623776899999939],[110.90328980000004,-6.619113399999947],[110.90769190000009,-6.614595399999928],[110.90801240000008,-6.606406199999981],[110.91200260000005,-6.600664599999959],[110.90977480000004,-6.591133099999979],[110.91222380000005,-6.577853199999936],[110.90950770000006,-6.571845499999938],[110.91070560000009,-6.568239199999937],[110.90828050000005,-6.5607672],[110.909218,-6.552758599999947],[110.91086150000007,-6.551240399999926],[110.91067480000004,-6.548348899999951],[110.91336820000004,-6.542091299999981],[110.91780850000004,-6.540288399999952],[110.91734310000004,-6.535690799999941],[110.91457370000006,-6.532260399999927],[110.91416170000008,-6.528802799999937],[110.90832520000004,-6.524968099999967],[110.91025540000004,-6.522472799999946],[110.90860750000007,-6.520859199999961],[110.91100310000007,-6.518267599999945],[110.90988970000006,-6.512139799999943],[110.91147,-6.51298],[110.91331910000008,-6.5058706],[110.91255950000004,-6.499658599999975],[110.91474390000008,-6.495863199999974],[110.91963670000007,-6.496936199999936],[110.92942050000005,-6.4958339],[110.93453230000006,-6.4910724],[110.93714930000004,-6.483543],[110.94129910000004,-6.485555499999975],[110.94280790000005,-6.485017099999936],[110.94299210000008,-6.486791899999957],[110.94641870000004,-6.482704599999977],[110.94993590000007,-6.482008399999927],[110.95001220000006,-6.479700099999945],[110.95488740000008,-6.475291699999957],[110.95369720000008,-6.473386299999959],[110.958107,-6.470419799999945],[110.95616150000006,-6.4697728],[110.95711520000009,-6.467143499999963],[110.96203610000003,-6.467013799999961],[110.96526990000007,-6.464662899999951],[110.96553040000003,-6.462265499999944],[110.96875,-6.464018799999963],[110.968811,-6.460783499999934],[110.97074130000004,-6.4599705],[110.96978760000007,-6.457963899999925],[110.97386930000005,-6.455650799999944],[110.97122950000005,-6.453192199999933],[110.97238160000006,-6.446820199999934],[110.97389980000008,-6.4459724],[110.97195430000005,-6.444927699999937],[110.97389980000008,-6.4414048],[110.97291560000008,-6.440076799999929],[110.97701260000008,-6.437239099999942],[110.97664640000005,-6.4352369],[110.97369380000004,-6.4352369],[110.97394560000004,-6.4333114],[110.97174830000006,-6.432964799999979],[110.97412110000005,-6.430981599999939],[110.97182460000005,-6.430307899999946],[110.97215270000004,-6.428363299999944],[110.97390750000005,-6.428074799999933],[110.976181,-6.423473299999955],[110.97505630000006,-6.410037799999941],[110.97086850000005,-6.408443499999976],[110.96975010000006,-6.409633299999939],[110.96551470000009,-6.409633299999939],[110.96218340000007,-6.412821699999938],[110.95514020000007,-6.413892499999974],[110.92601560000008,-6.408039],[110.91995,-6.40563],[110.91775,-6.4026],[110.91456,-6.40509],[110.90697990000007,-6.405826099999956],[110.90132640000007,-6.4044508],[110.88496520000007,-6.409390599999938],[110.87488580000007,-6.40802],[110.86681940000005,-6.4085625],[110.86263630000008,-6.406592299999943],[110.85741370000005,-6.406335299999967],[110.85182880000008,-6.408177],[110.84055020000005,-6.40802],[110.83926520000006,-6.409476199999972],[110.83606730000008,-6.407777299999964],[110.822747,-6.420455],[110.81068330000005,-6.426693599999965],[110.80784,-6.42552],[110.80568630000005,-6.427208],[110.799276,-6.427522],[110.79682,-6.42624],[110.79385090000005,-6.427179399999943],[110.78502280000004,-6.425615099999959],[110.77637610000005,-6.431990699999972],[110.75633150000004,-6.442184299999951],[110.749236,-6.441970099999935],[110.744339,-6.443540599999949],[110.74154080000005,-6.442027199999927],[110.735773,-6.442655399999978],[110.73357430000004,-6.4451967],[110.73041920000009,-6.444982499999981],[110.72288110000005,-6.448266199999978],[110.71771290000004,-6.452534899999932],[110.71352980000006,-6.458502599999974],[110.71262,-6.46555],[110.713901,-6.467654],[110.7111,-6.47237],[110.70684820000008,-6.475720399999943],[110.70486380000006,-6.474335599999961],[110.702707,-6.474820899999941],[110.69498,-6.48558],[110.68999,-6.48821],[110.689615,-6.491284199999939],[110.69154,-6.49553],[110.6902,-6.49876],[110.68706060000005,-6.499772],[110.683758,-6.496821499999953],[110.67690060000007,-6.496314199999972],[110.672,-6.49855],[110.67330740000006,-6.5003811],[110.67254550000007,-6.503116099999943],[110.66941460000004,-6.502931899999965],[110.66788,-6.50106],[110.66412510000004,-6.502604],[110.66609,-6.50933],[110.66838,-6.51126],[110.67434520000006,-6.513161299999979],[110.678959,-6.511912499999937],[110.68319,-6.51447],[110.68362,-6.51811],[110.68186,-6.52771],[110.6778,-6.53332],[110.67167370000004,-6.536189599999943],[110.66847360000008,-6.533059499999979],[110.66517880000004,-6.532517399999961],[110.66538640000005,-6.541785199999936],[110.660314,-6.545603599999936],[110.65602240000004,-6.544140599999935],[110.65309770000005,-6.554125299999953],[110.64670860000007,-6.553660499999978],[110.64486990000006,-6.555683899999963],[110.64481450000005,-6.557429499999955],[110.64795490000006,-6.560371599999939],[110.65517590000007,-6.563839799999926],[110.65655450000008,-6.566766799999925],[110.65974630000005,-6.568551599999978],[110.66202460000005,-6.573989299999937],[110.65908870000004,-6.580512099999964],[110.65505790000009,-6.584725799999944],[110.64803990000007,-6.586009699999977],[110.64511690000006,-6.583247299999925],[110.64392450000008,-6.584748899999965],[110.64489420000007,-6.589125599999932],[110.65470950000008,-6.592514599999959],[110.65579470000006,-6.597021199999972],[110.65444130000009,-6.599278],[110.65356990000004,-6.608741399999928],[110.64721060000005,-6.617223399999943],[110.64457860000005,-6.618671499999948],[110.63946990000005,-6.617436199999929],[110.63821940000008,-6.618958899999939],[110.63764690000005,-6.630860599999949],[110.64030480000008,-6.633990799999935],[110.64060510000007,-6.638455199999953],[110.64373540000008,-6.640674699999977],[110.64601740000006,-6.645145099999979],[110.64579870000006,-6.652695899999969],[110.63415910000003,-6.677811299999973],[110.62561960000005,-6.690948899999967],[110.61517970000006,-6.703589699999952],[110.61533,-6.70681],[110.61000440000004,-6.709716899999933],[110.60084350000005,-6.719859299999939],[110.59225710000004,-6.724284799999964],[110.59814450000005,-6.726799899999946],[110.60065460000004,-6.724413399999946],[110.60471340000004,-6.724591199999963],[110.60603330000004,-6.7205815],[110.60916140000006,-6.720274],[110.61106110000009,-6.716823499999975],[110.61531070000007,-6.716174099999932],[110.62074350000006,-6.711616799999945],[110.62120820000007,-6.708577099999957],[110.61806490000004,-6.70612],[110.62402340000006,-6.708936199999926],[110.63514710000004,-6.710321399999941],[110.63849640000007,-6.713150499999927],[110.645195,-6.713006499999949],[110.64958190000004,-6.716356699999949],[110.65425870000007,-6.715145599999971],[110.66440580000005,-6.716801199999964],[110.66916660000004,-6.720014499999934],[110.67162120000006,-6.725590499999953],[110.66980740000008,-6.7360029],[110.66598510000006,-6.740582],[110.67011260000004,-6.747860899999978],[110.66931920000007,-6.752773299999944],[110.66464230000008,-6.755470299999956],[110.66513830000008,-6.757210199999975],[110.66909030000005,-6.757947399999978],[110.67006680000009,-6.759682599999962],[110.66692350000005,-6.764528699999971],[110.67156980000004,-6.766976799999952],[110.67346840000005,-6.766408399999932],[110.67450730000007,-6.768236599999966],[110.67486820000005,-6.764976899999965],[110.67745210000004,-6.762847399999941],[110.67877960000004,-6.767116],[110.68425750000006,-6.770260299999961],[110.686676,-6.766334499999971],[110.69062810000008,-6.769155],[110.69509670000008,-6.768547099999978],[110.69409940000008,-6.775093],[110.69978330000004,-6.776930799999946],[110.69863890000005,-6.782594199999949],[110.70134740000009,-6.784899199999927],[110.70118710000008,-6.787917599999957],[110.70417790000005,-6.794378299999948],[110.70954890000007,-6.792362199999957],[110.710968,-6.789327599999979],[110.71311950000006,-6.788989499999957],[110.71486660000005,-6.792289699999969],[110.71739120000007,-6.789325399999939],[110.72076230000005,-6.788432799999953],[110.72944640000009,-6.793328699999961],[110.73345950000004,-6.791666],[110.73625180000005,-6.793990599999972],[110.741066,-6.7940173],[110.74191280000008,-6.796358599999962],[110.74826050000007,-6.794684899999936],[110.75107570000006,-6.796255599999938],[110.75423430000006,-6.793396],[110.75767830000007,-6.793998699999975],[110.759152,-6.791549199999963]]],[[[110.92019650000009,-6.385189499999967],[110.92359160000007,-6.380951899999957],[110.92165370000004,-6.380622399999936],[110.91943360000005,-6.382337599999971],[110.92019650000009,-6.385189499999967]]],[[[110.40652930000005,-5.896540899999934],[110.41109640000008,-5.892877099999964],[110.41197630000005,-5.888267699999972],[110.41082670000009,-5.884917199999961],[110.40594580000004,-5.891479599999968],[110.40531150000004,-5.895802599999968],[110.40652930000005,-5.896540899999934]]],[[[110.43031820000004,-5.887074299999938],[110.42901280000007,-5.883074499999964],[110.425977,-5.881276399999933],[110.42626330000007,-5.884694699999955],[110.422278,-5.887646399999937],[110.42591730000004,-5.887198799999965],[110.42774750000007,-5.892273899999964],[110.43050580000005,-5.892631399999971],[110.43333570000004,-5.896439199999975],[110.43411310000005,-5.891904199999942],[110.43031820000004,-5.887074299999938]]],[[[110.35533890000005,-5.880023599999959],[110.35772440000005,-5.872714],[110.35572390000004,-5.87304],[110.35339180000005,-5.8766729],[110.35271590000008,-5.879856399999937],[110.35533890000005,-5.880023599999959]]],[[[110.58066420000006,-5.859446799999944],[110.57889250000005,-5.859654699999965],[110.57934920000008,-5.861829399999976],[110.58527950000007,-5.866879399999959],[110.58519460000008,-5.8620148],[110.58066420000006,-5.859446799999944]]],[[[110.48600640000006,-5.860056799999938],[110.48908810000006,-5.857446399999958],[110.48760290000007,-5.854910199999949],[110.48457290000005,-5.858174],[110.48600640000006,-5.860056799999938]]],[[[110.23904180000005,-5.850151899999958],[110.24000510000008,-5.847723099999939],[110.23856780000006,-5.8486432],[110.23904180000005,-5.850151899999958]]],[[[110.58598760000007,-5.843514599999935],[110.58373730000005,-5.843651799999975],[110.58254170000004,-5.845317399999942],[110.58488410000007,-5.845604599999945],[110.58598760000007,-5.843514599999935]]],[[[110.60446570000005,-5.842018399999972],[110.60273850000004,-5.839805699999943],[110.60158980000006,-5.8404372],[110.60044520000008,-5.850617899999975],[110.59925520000007,-5.851871899999935],[110.60046260000007,-5.852999399999931],[110.59899550000006,-5.854336399999966],[110.60093540000008,-5.8555678],[110.59909370000008,-5.8564059],[110.60005230000007,-5.858888399999955],[110.59791220000005,-5.862465199999974],[110.600168,-5.8667991],[110.60353730000008,-5.863790899999969],[110.60721370000005,-5.849609099999952],[110.606701,-5.843877799999973],[110.60446570000005,-5.842018399999972]]],[[[110.19062130000009,-5.809467899999959],[110.18450250000006,-5.811850199999981],[110.18319680000008,-5.814908899999978],[110.180629,-5.816453899999942],[110.18095790000007,-5.818187499999965],[110.182736,-5.819517599999926],[110.18826460000008,-5.819648899999947],[110.19638740000005,-5.815981299999976],[110.19062130000009,-5.809467899999959]]],[[[110.50861190000006,-5.810449099999971],[110.50885540000007,-5.808780699999943],[110.50706340000005,-5.8077168],[110.50861190000006,-5.810449099999971]]],[[[110.373277,-5.807593],[110.37576090000005,-5.803705599999944],[110.37203210000007,-5.807641899999965],[110.373277,-5.807593]]],[[[110.16322360000004,-5.801594499999965],[110.164048,-5.800523699999928],[110.16303230000005,-5.799352799999951],[110.16322360000004,-5.801594499999965]]],[[[110.50974550000007,-5.801367499999969],[110.51006810000007,-5.799963199999979],[110.50738140000004,-5.798585699999933],[110.50767120000006,-5.801365699999963],[110.50974550000007,-5.801367499999969]]],[[[110.455293,-5.7980623],[110.45410730000009,-5.7979889],[110.456604,-5.798387099999957],[110.455293,-5.7980623]]],[[[110.56015980000006,-5.798698699999932],[110.56143460000004,-5.797321699999941],[110.553459,-5.804201499999976],[110.55549250000007,-5.804124799999954],[110.56015980000006,-5.798698699999932]]],[[[110.34547060000006,-5.794284399999981],[110.34219920000004,-5.796115799999939],[110.34239310000004,-5.799786499999925],[110.34607660000006,-5.798600299999976],[110.34700520000007,-5.795212],[110.34547060000006,-5.794284399999981]]],[[[110.51371790000007,-5.785545899999931],[110.51427380000007,-5.782671099999959],[110.51015460000008,-5.779711499999962],[110.51009380000005,-5.7833777],[110.51371790000007,-5.785545899999931]]],[[[110.484013,-5.770323799999971],[110.48269040000008,-5.769856299999958],[110.47582490000008,-5.775751599999978],[110.463936,-5.795432699999935],[110.45821,-5.800592699999925],[110.45385960000004,-5.802097599999968],[110.44995690000007,-5.809222299999931],[110.450972,-5.811014599999965],[110.44967040000006,-5.814142],[110.45440970000004,-5.816060599999958],[110.45719320000006,-5.813400799999954],[110.45826280000006,-5.809402099999943],[110.45683070000007,-5.8081124],[110.45902420000004,-5.807537899999943],[110.45992460000008,-5.801085099999966],[110.46112580000005,-5.800509599999941],[110.461746,-5.805270599999972],[110.45992810000007,-5.810311599999977],[110.46084540000004,-5.811932],[110.46467930000006,-5.812610499999948],[110.46863150000007,-5.8046882],[110.468703,-5.806884499999967],[110.470356,-5.807830799999977],[110.46684780000004,-5.812563399999931],[110.46928360000004,-5.814798799999949],[110.47604650000005,-5.814498299999968],[110.47743330000009,-5.811849399999971],[110.47669090000005,-5.806499299999928],[110.47113650000006,-5.798482299999932],[110.472399,-5.797722799999974],[110.47648690000005,-5.801935],[110.479409,-5.808280899999943],[110.479271,-5.811740699999973],[110.475687,-5.8190131],[110.46373630000005,-5.8251733],[110.45939930000009,-5.825279599999931],[110.45404080000009,-5.830108499999938],[110.44485390000006,-5.8342827],[110.43525570000008,-5.833967099999938],[110.42676370000004,-5.835663899999929],[110.42103940000004,-5.838504499999942],[110.41542890000005,-5.837909799999977],[110.41035470000008,-5.839855299999954],[110.41192050000006,-5.842126699999938],[110.41658710000007,-5.843383099999926],[110.43156710000005,-5.859164399999941],[110.42915060000007,-5.861947],[110.43296180000004,-5.873226299999942],[110.43094340000005,-5.882131699999945],[110.43574820000003,-5.880345299999931],[110.439422,-5.882287499999961],[110.43952990000008,-5.884631],[110.44056060000008,-5.883086099999957],[110.44569610000008,-5.885900799999945],[110.44848320000006,-5.889517],[110.44952070000005,-5.884440799999936],[110.44602270000007,-5.876115299999981],[110.44899360000005,-5.869485199999929],[110.446627,-5.864549],[110.44722170000006,-5.862625199999968],[110.45299380000006,-5.8659781],[110.46191060000007,-5.862629199999958],[110.46414810000005,-5.863726699999972],[110.46398590000007,-5.862293399999942],[110.46559030000009,-5.862745399999937],[110.46448890000005,-5.860093099999972],[110.46532940000009,-5.857678199999953],[110.46778530000006,-5.854875799999945],[110.47215050000005,-5.854276],[110.47424410000008,-5.856304699999953],[110.47570830000006,-5.853654899999981],[110.47752730000008,-5.854158199999972],[110.4771,-5.851936499999965],[110.47344340000006,-5.848995299999956],[110.47435760000008,-5.844226],[110.47686180000005,-5.844330699999944],[110.47420570000008,-5.842741599999954],[110.47297310000005,-5.838144399999976],[110.46790980000009,-5.831199399999946],[110.47880340000006,-5.833758399999965],[110.48483120000009,-5.836906499999941],[110.485099,-5.834644599999933],[110.481607,-5.830608299999938],[110.48367450000006,-5.8275188],[110.48287050000005,-5.823730599999976],[110.49019010000006,-5.8223861],[110.49472160000005,-5.818459399999938],[110.49359990000005,-5.815500099999952],[110.48717440000007,-5.8116557],[110.48894650000005,-5.807327399999963],[110.48669230000007,-5.802248099999929],[110.48405480000008,-5.802737099999945],[110.48168680000003,-5.799203399999953],[110.477936,-5.799005499999964],[110.474889,-5.794412399999942],[110.47605960000004,-5.787051899999938],[110.48220270000007,-5.780861499999958],[110.48412030000009,-5.7735507],[110.48668260000005,-5.771405899999934],[110.484013,-5.770323799999971]]],[[[110.23623890000005,-5.769611099999963],[110.239168,-5.768575099999964],[110.238954,-5.766841799999952],[110.23354160000008,-5.769852899999933],[110.23623890000005,-5.769611099999963]]],[[[110.18869120000005,-5.737316],[110.18728640000006,-5.7360602],[110.18534050000005,-5.7380522],[110.18968010000009,-5.739442399999973],[110.19120350000009,-5.743274799999938],[110.191273,-5.740971499999944],[110.18869120000005,-5.737316]]],[[[110.41044590000007,-5.734200199999975],[110.40896880000008,-5.731372599999929],[110.40689860000003,-5.734218699999929],[110.40275230000009,-5.733285799999976],[110.40738720000007,-5.746311099999957],[110.41004460000005,-5.745184599999959],[110.41229160000006,-5.741096499999969],[110.41229780000003,-5.736673899999971],[110.41044590000007,-5.734200199999975]]],[[[110.25113870000007,-5.731352199999947],[110.25098380000009,-5.728138299999955],[110.24898830000006,-5.725698],[110.24701610000005,-5.730909299999951],[110.24295750000005,-5.730915099999947],[110.24027980000005,-5.729312499999935],[110.24064090000007,-5.735076499999934],[110.23110840000004,-5.737875499999973],[110.23482310000009,-5.740564199999938],[110.23444110000008,-5.743498199999976],[110.23890210000008,-5.749602699999969],[110.23962980000005,-5.7481612],[110.23951470000009,-5.750744099999963],[110.24485830000003,-5.758500799999979],[110.24554510000007,-5.762706199999968],[110.25441380000007,-5.755916499999955],[110.25452710000008,-5.754378599999939],[110.25057870000006,-5.750873499999955],[110.24738620000005,-5.740649499999961],[110.24816130000005,-5.737257499999942],[110.25158040000008,-5.735528699999975],[110.25113870000007,-5.731352199999947]]]]},"properties":{"shapeName":"Jepara","shapeISO":"","shapeID":"22746128B53363188070395","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[112.0692901000001,-7.397015499999952],[112.07232660000011,-7.399568899999963],[112.06873320000011,-7.403220599999941],[112.07077790000005,-7.403789],[112.07157890000008,-7.406159299999956],[112.0626373,-7.417429799999979],[112.06896210000002,-7.434415699999931],[112.07265470000004,-7.437734],[112.07339470000011,-7.440669],[112.07736200000011,-7.443453199999965],[112.07769770000004,-7.449064199999953],[112.08089440000003,-7.452210299999933],[112.07616420000011,-7.460112],[112.07900230000007,-7.463351599999953],[112.07947540000009,-7.473585499999956],[112.08356470000001,-7.4746827],[112.087059,-7.472472099999948],[112.08663170000011,-7.470780799999943],[112.09154510000008,-7.4703645],[112.09108730000003,-7.4686712],[112.09358970000005,-7.469245299999955],[112.09464260000004,-7.467359],[112.09300230000008,-7.465070599999933],[112.09828180000011,-7.464011099999937],[112.09812920000002,-7.4609803],[112.09984580000003,-7.461221599999931],[112.10057830000005,-7.463225299999976],[112.10175320000008,-7.462254899999948],[112.10385130000009,-7.463229099999978],[112.10448450000001,-7.459832099999971],[112.10658260000002,-7.462416099999928],[112.11049650000007,-7.4621462],[112.1124115,-7.4651755],[112.11255640000002,-7.4625501],[112.11433410000006,-7.463890499999934],[112.11661530000003,-7.459338599999967],[112.1200103000001,-7.462011699999948],[112.12357330000009,-7.462427099999957],[112.1224975,-7.459404399999926],[112.12419890000001,-7.458517499999971],[112.12344360000009,-7.454870599999936],[112.12519070000008,-7.452071599999954],[112.12761680000006,-7.453260799999953],[112.12751420000006,-7.457219299999963],[112.133934,-7.458802599999956],[112.1343994,-7.460817299999974],[112.1384124000001,-7.460629399999959],[112.13990780000006,-7.458905099999981],[112.14126580000004,-7.461331299999927],[112.14267730000006,-7.460071899999946],[112.14350120000006,-7.461532],[112.15092460000005,-7.462051799999927],[112.15224450000005,-7.466015699999957],[112.15298460000008,-7.463854699999956],[112.15485380000007,-7.463254399999926],[112.15478510000003,-7.464817399999959],[112.15702820000001,-7.465809299999933],[112.15602870000009,-7.467762899999968],[112.15923310000005,-7.470667299999945],[112.15712740000004,-7.471923699999934],[112.15978240000004,-7.474230699999964],[112.15782930000012,-7.476577599999928],[112.1607361,-7.477247199999965],[112.15936270000009,-7.479185],[112.16241450000007,-7.479910699999948],[112.16229240000007,-7.477387799999974],[112.164299,-7.478543699999932],[112.16505430000007,-7.482086099999947],[112.16390220000005,-7.484456899999941],[112.166008,-7.485454499999946],[112.16426840000008,-7.489805599999954],[112.167839,-7.488296899999966],[112.16909790000011,-7.489644899999973],[112.16628720000006,-7.495541499999945],[112.15194940000003,-7.5044427],[112.15279380000004,-7.513556899999969],[112.15078730000005,-7.529247699999928],[112.14421080000011,-7.5353541],[112.13800810000009,-7.5340318],[112.13414000000012,-7.535344],[112.13172910000003,-7.5411481],[112.12680810000006,-7.547223],[112.11930840000002,-7.553018],[112.1143264000001,-7.563738299999955],[112.11186980000002,-7.565367599999945],[112.1152191000001,-7.579576399999951],[112.1133976000001,-7.589314],[112.11194630000011,-7.591070599999966],[112.11160810000001,-7.594954199999961],[112.11317120000001,-7.595097299999964],[112.11391720000006,-7.598537499999964],[112.121841,-7.606872499999952],[112.12734180000007,-7.606744699999979],[112.138084,-7.6114258],[112.14002190000008,-7.609749199999953],[112.14838760000009,-7.611137],[112.15555250000011,-7.610167299999944],[112.165586,-7.613229499999932],[112.17126240000005,-7.618745199999978],[112.1712543000001,-7.622022699999945],[112.1766632,-7.625138199999981],[112.18270830000006,-7.632728899999961],[112.182899,-7.640531899999928],[112.18514970000001,-7.644132499999955],[112.19148970000003,-7.6472324],[112.19472460000009,-7.651245],[112.19459370000004,-7.654636],[112.20344960000011,-7.660018199999968],[112.209996,-7.669552599999975],[112.217842,-7.676069599999948],[112.2153545000001,-7.689237499999933],[112.22188530000005,-7.691571099999976],[112.22883560000002,-7.700070199999971],[112.23508410000011,-7.702144],[112.233406,-7.707126499999958],[112.23983720000001,-7.710306499999945],[112.24068940000006,-7.714066799999955],[112.24352180000005,-7.717240299999958],[112.25497430000007,-7.7272347],[112.26227570000003,-7.728253299999949],[112.2677116000001,-7.727209599999981],[112.2666263000001,-7.7228737],[112.27935,-7.725603899999953],[112.29361680000011,-7.725741699999958],[112.29562450000003,-7.727710499999944],[112.29938460000005,-7.726685799999927],[112.30117790000008,-7.728139299999953],[112.30179590000012,-7.726817],[112.31025690000001,-7.7306618],[112.31835930000011,-7.737556299999937],[112.32488250000006,-7.738018899999929],[112.3284301000001,-7.741354299999955],[112.33408350000002,-7.741345299999978],[112.3415222000001,-7.74796],[112.34863280000002,-7.748789699999975],[112.35733790000006,-7.755977],[112.36119840000003,-7.761156899999946],[112.36536400000011,-7.7608088],[112.37528220000002,-7.763970699999959],[112.38462060000006,-7.768760099999952],[112.38810720000004,-7.772402599999964],[112.39347830000008,-7.773349699999926],[112.39726250000001,-7.776074799999947],[112.41439050000008,-7.771810399999936],[112.41623680000009,-7.768500199999949],[112.422203,-7.766941399999951],[112.42767330000004,-7.771106599999939],[112.430397,-7.7714728],[112.43593590000012,-7.767039199999942],[112.44332120000001,-7.776852499999961],[112.45583320000003,-7.779130799999962],[112.45002740000007,-7.7705171],[112.4508972000001,-7.767267599999968],[112.4476783,-7.764938499999971],[112.446785,-7.759148],[112.448334,-7.751154],[112.446228,-7.744949099999928],[112.44809,-7.743893],[112.447739,-7.741866],[112.438591,-7.732868],[112.430283,-7.699743],[112.424347,-7.6925],[112.4217681,-7.685287799999969],[112.41557300000011,-7.680299],[112.41167440000004,-7.673535699999945],[112.412056,-7.665775],[112.410881,-7.663517799999966],[112.41205590000004,-7.657669899999973],[112.41042320000008,-7.6535147],[112.410538,-7.645973],[112.40409100000011,-7.635592],[112.4038925000001,-7.622851299999979],[112.387352,-7.606703],[112.38322440000002,-7.5958327],[112.376439,-7.594425],[112.375879,-7.590616],[112.37076560000003,-7.583994299999972],[112.37562900000012,-7.583847],[112.37670130000004,-7.5763258],[112.37296290000006,-7.575732599999981],[112.37357320000001,-7.572248399999978],[112.37158370000009,-7.570790299999942],[112.37264870000001,-7.5652727],[112.374901,-7.563066],[112.36798890000011,-7.561676899999952],[112.36955200000011,-7.559528],[112.36883540000008,-7.556331],[112.36667180000006,-7.556067599999949],[112.36671400000012,-7.553626],[112.363716,-7.552638],[112.365379,-7.548903],[112.364305,-7.548666],[112.3648,-7.544157],[112.368433,-7.543733],[112.370801,-7.539841],[112.368869,-7.539142],[112.36986380000008,-7.529858799999943],[112.36736510000003,-7.529286099999979],[112.36707150000007,-7.5242806],[112.374118,-7.524639599999944],[112.373217,-7.519159],[112.371642,-7.517822],[112.371796,-7.516519],[112.37444770000002,-7.51695],[112.374982,-7.503939],[112.37612600000011,-7.503232],[112.376708,-7.497687],[112.374622,-7.493467],[112.37410000000011,-7.487193499999933],[112.37573240000006,-7.487007499999947],[112.37651060000007,-7.482960599999956],[112.3840255,-7.478748199999927],[112.388756,-7.480921399999943],[112.39009990000011,-7.478789099999972],[112.3905105,-7.469966299999953],[112.39269250000007,-7.467259299999967],[112.399742,-7.46483],[112.40321360000007,-7.466614599999957],[112.40272,-7.462677],[112.404532,-7.461755],[112.3975448000001,-7.457509899999934],[112.38120260000005,-7.458895599999948],[112.368813,-7.456493],[112.3582,-7.457599],[112.350647,-7.454658],[112.34166710000011,-7.459694799999966],[112.332756,-7.453563699999961],[112.3343374000001,-7.446954199999936],[112.33794720000003,-7.447384199999931],[112.3407592000001,-7.4406723],[112.34595160000003,-7.441489],[112.347554,-7.436979699999938],[112.341181,-7.436054],[112.34469600000011,-7.421627],[112.34636300000011,-7.420139],[112.349238,-7.420884799999953],[112.34667700000011,-7.415905],[112.347066,-7.410074699999939],[112.3455437,-7.409650099999965],[112.3462518,-7.405641899999978],[112.347543,-7.405775],[112.348331,-7.398716],[112.33709710000005,-7.380484499999966],[112.33523550000007,-7.370165199999974],[112.33700560000011,-7.361339],[112.34469600000011,-7.353458799999942],[112.34327690000009,-7.348949299999958],[112.341171,-7.34828],[112.344849,-7.347514],[112.34403220000002,-7.346144099999947],[112.34573360000002,-7.345046899999943],[112.3355,-7.34575],[112.33595,-7.34702],[112.33830000000012,-7.34659],[112.33859,-7.34784],[112.33713000000012,-7.34809],[112.33842,-7.34923],[112.33724,-7.34929],[112.33776000000012,-7.35059],[112.33264,-7.34983],[112.33005,-7.35182],[112.32878,-7.35071],[112.32927,-7.3477],[112.32806,-7.34804],[112.32891,-7.34591],[112.3343,-7.347],[112.33499,-7.34592],[112.33313910000004,-7.343805299999929],[112.32890310000005,-7.343983499999979],[112.31681050000009,-7.349623599999973],[112.30849450000005,-7.351468],[112.30287170000008,-7.354716699999926],[112.28955070000006,-7.358869],[112.27476500000012,-7.356952599999943],[112.2641906,-7.361967],[112.25325010000006,-7.363401799999963],[112.25000000000011,-7.363159099999962],[112.24622340000008,-7.359671],[112.24167630000011,-7.358034],[112.23999020000008,-7.355419],[112.23459620000006,-7.352979599999969],[112.22725670000011,-7.350429399999939],[112.22183220000011,-7.351131799999962],[112.2113571000001,-7.348574099999951],[112.20729820000008,-7.3507527],[112.20299520000003,-7.349976499999968],[112.2031402,-7.351778899999942],[112.200386,-7.353357199999948],[112.19899740000005,-7.352188],[112.1904297000001,-7.353487899999948],[112.18711850000011,-7.352175199999976],[112.17908470000009,-7.356356099999971],[112.16968530000008,-7.3571805],[112.16402430000005,-7.360298499999942],[112.16381070000011,-7.3616098],[112.15296930000011,-7.366581799999949],[112.1377639000001,-7.367927499999951],[112.1334915000001,-7.371079399999928],[112.12302390000002,-7.373477399999956],[112.11062620000007,-7.381997],[112.10697930000003,-7.381434799999965],[112.10661310000012,-7.383774199999948],[112.10250090000011,-7.383167699999944],[112.10155490000011,-7.384637299999952],[112.09713740000007,-7.384820899999966],[112.09159850000003,-7.383707899999933],[112.08953850000012,-7.381591199999946],[112.08657830000004,-7.382349899999952],[112.08612820000008,-7.384417],[112.08152770000004,-7.382554899999946],[112.08015440000008,-7.3839754],[112.07560730000012,-7.383953],[112.07540130000007,-7.387920799999961],[112.07128140000009,-7.391352099999949],[112.0692901000001,-7.397015499999952]]]},"properties":{"shapeName":"Jombang","shapeISO":"","shapeID":"22746128B21636165503667","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[132.908966,-4.129165],[132.905502,-4.121587],[132.904007,-4.123127],[132.903381,-4.128132],[132.907699,-4.130939],[132.908966,-4.129165]]],[[[133.22140500000012,-4.111786],[133.213593,-4.101344],[133.209152,-4.098133],[133.206879,-4.098111],[133.19912460000012,-4.102356699999973],[133.1984771000001,-4.105123499999934],[133.20253,-4.109992],[133.203537,-4.115819],[133.197312,-4.130964],[133.19661,-4.133492],[133.198242,-4.136157],[133.194183,-4.143086],[133.19136,-4.156019],[133.193527,-4.155924],[133.194824,-4.157549],[133.199249,-4.155116],[133.202148,-4.156007],[133.206436,-4.162442],[133.206711,-4.173503],[133.199936,-4.182077],[133.2097470000001,-4.182344],[133.2227630000001,-4.187308],[133.227524,-4.192077],[133.2291560000001,-4.199407],[133.228805,-4.20718],[133.2300570000001,-4.209322],[133.234344,-4.207636],[133.241791,-4.210242],[133.25679,-4.21269],[133.261109,-4.216591],[133.2693180000001,-4.236137],[133.278747,-4.244868],[133.278473,-4.247457],[133.273209,-4.254203],[133.276459,-4.256711],[133.27931200000012,-4.256681],[133.288147,-4.251755],[133.295807,-4.253153],[133.3034060000001,-4.250059],[133.312653,-4.254698],[133.327927,-4.25427],[133.3374020000001,-4.242422],[133.346878,-4.235313],[133.34924300000011,-4.216358],[133.3421330000001,-4.20451],[133.327301,-4.19995],[133.311386,-4.198126],[133.29133600000011,-4.189869],[133.285584,-4.186185],[133.274964,-4.175427],[133.270431,-4.15966],[133.2676090000001,-4.158999],[133.265182,-4.160819],[133.261582,-4.160439],[133.258591,-4.158049],[133.255295,-4.152027],[133.2509920000001,-4.150142],[133.250473,-4.147891],[133.248413,-4.146662],[133.2491450000001,-4.141427],[133.247421,-4.140028],[133.240021,-4.142203],[133.233185,-4.139776],[133.231445,-4.13544],[133.232727,-4.111895],[133.229477,-4.110885],[133.224441,-4.113082],[133.22140500000012,-4.111786]]],[[[132.970368,-4.085235],[132.97319,-4.084629],[132.97345,-4.080652],[132.968552,-4.083259],[132.968201,-4.086308],[132.970368,-4.085235]]],[[[134.262192,-4.036889],[134.2647250000001,-4.034264],[134.264923,-4.031909],[134.261658,-4.028209],[134.259872,-4.016762],[134.258087,-4.013934],[134.240738,-4.000227],[134.230179,-3.996691],[134.226013,-3.993472],[134.2215420000001,-3.993065],[134.221939,-3.995417],[134.22703500000011,-3.996746],[134.22874500000012,-3.998754],[134.226654,-4.010205],[134.231125,-4.013799],[134.2298280000001,-4.019249],[134.231064,-4.026669],[134.2353210000001,-4.034054],[134.244064,-4.037909],[134.259552,-4.039685],[134.260834,-4.042108],[134.262192,-4.036889]]],[[[134.3907620000001,-3.984579],[134.386597,-3.985774],[134.382599,-3.985132],[134.379959,-3.98799],[134.3825230000001,-3.997343],[134.380752,-3.998773],[134.382111,-4.004647],[134.380783,-4.007339],[134.383347,-4.01339],[134.385727,-4.015475],[134.379517,-4.015201],[134.3797,-4.019397],[134.376389,-4.020063],[134.372696,-4.018485],[134.36972,-4.01967],[134.368988,-4.025124],[134.363678,-4.027097],[134.365112,-4.030785],[134.367737,-4.031435],[134.374023,-4.029871],[134.3824770000001,-4.032862],[134.393341,-4.02886],[134.404572,-4.029572],[134.411759,-4.028359],[134.421555,-4.023487],[134.432358,-4.025173],[134.4357450000001,-4.021979],[134.441299,-4.019836],[134.4424130000001,-4.016798],[134.44107,-4.014663],[134.428162,-4.011526],[134.425949,-4.009499],[134.4265140000001,-4.004561],[134.419296,-4.001982],[134.413712,-4.002747],[134.412705,-3.995296],[134.401962,-3.991543],[134.392883,-3.990486],[134.390595,-3.988939],[134.3907620000001,-3.984579]]],[[[134.90061900000012,-3.945714],[134.904388,-3.9445],[134.903992,-3.939129],[134.897537,-3.938307],[134.8936460000001,-3.941853],[134.893066,-3.945236],[134.897583,-3.946448],[134.90061900000012,-3.945714]]],[[[134.6959230000001,-3.935589],[134.680771,-3.934116],[134.6754,-3.936912],[134.674255,-3.939436],[134.6758420000001,-3.944031],[134.686356,-3.950018],[134.686584,-3.952424],[134.6841730000001,-3.956603],[134.687378,-3.960167],[134.702759,-3.956076],[134.709778,-3.951828],[134.73162800000011,-3.949036],[134.733002,-3.947489],[134.727921,-3.942379],[134.7141570000001,-3.936437],[134.6959230000001,-3.935589]]],[[[134.100861,-3.914264],[134.096512,-3.914943],[134.095413,-3.917005],[134.091873,-3.914301],[134.089416,-3.914808],[134.080551,-3.918635],[134.071579,-3.917406],[134.067459,-3.920437],[134.055054,-3.917254],[134.051849,-3.923152],[134.054245,-3.925793],[134.060822,-3.928506],[134.0626370000001,-3.933843],[134.064408,-3.934992],[134.06515500000012,-3.939985],[134.0699,-3.938962],[134.074005,-3.943503],[134.07486,-3.95016],[134.0737610000001,-3.959559],[134.078659,-3.971498],[134.0855100000001,-3.981321],[134.091797,-3.983293],[134.091675,-3.985527],[134.093338,-3.987309],[134.0968170000001,-3.988466],[134.103912,-3.987335],[134.106369,-3.988194],[134.10791,-3.98671],[134.1133420000001,-3.992119],[134.118363,-3.994651],[134.122879,-3.995003],[134.12413,-3.996731],[134.126587,-3.99645],[134.127625,-3.994216],[134.131912,-3.995138],[134.133743,-3.993998],[134.136474,-3.998131],[134.140549,-3.996132],[134.143341,-3.999352],[134.150833,-3.999487],[134.154968,-4.003374],[134.158432,-4.004548],[134.166061,-4.006211],[134.168808,-4.005541],[134.17083800000012,-4.006992],[134.166351,-4.011441],[134.167343,-4.014551],[134.1730500000001,-4.014649],[134.174393,-4.016785],[134.1765140000001,-4.014904],[134.186493,-4.021123],[134.196792,-4.022058],[134.197128,-4.024129],[134.194428,-4.025317],[134.195267,-4.028023],[134.202484,-4.029741],[134.205124,-4.02838],[134.205688,-4.022754],[134.2079010000001,-4.023804],[134.209961,-4.022325],[134.2043460000001,-4.012746],[134.200455,-4.015879],[134.193237,-4.012725],[134.1875920000001,-4.007686],[134.18132,-4.007986],[134.177826,-4.003881],[134.178818,-4.000289],[134.176437,-3.998172],[134.1748960000001,-3.993812],[134.169586,-3.99317],[134.166229,-3.979738],[134.16806,-3.975441],[134.15715000000012,-3.965492],[134.1565250000001,-3.96779],[134.160461,-3.971869],[134.161209,-3.974628],[134.16354400000012,-3.97394],[134.164459,-3.976066],[134.164337,-3.978418],[134.162293,-3.979214],[134.154922,-3.971336],[134.150696,-3.968976],[134.1473390000001,-3.959279],[134.136643,-3.952713],[134.122543,-3.939435],[134.1213530000001,-3.935302],[134.1232910000001,-3.931928],[134.116608,-3.933629],[134.11666900000012,-3.931331],[134.1141050000001,-3.928745],[134.11198400000012,-3.92955],[134.106567,-3.923272],[134.102905,-3.924304],[134.1011350000001,-3.922523],[134.099533,-3.920515],[134.102508,-3.915648],[134.100861,-3.914264]]],[[[134.04866,-3.910643],[134.05072,-3.910018],[134.0514680000001,-3.90801],[134.041351,-3.908102],[134.044372,-3.910516],[134.04866,-3.910643]]],[[[133.93396,-3.887074],[133.9376830000001,-3.883003],[133.936096,-3.877096],[133.9312900000001,-3.879204],[133.9313350000001,-3.881384],[133.929566,-3.883157],[133.92923,-3.88522],[133.931793,-3.88758],[133.93396,-3.887074]]],[[[134.037521,-3.856424],[134.039993,-3.850065],[134.034332,-3.850798],[134.023697,-3.858569],[134.014374,-3.857114],[134.01123,-3.858137],[134.01179500000012,-3.860552],[134.014603,-3.861076],[134.014252,-3.866178],[134.020767,-3.865499],[134.023453,-3.869234],[134.032821,-3.866737],[134.037521,-3.856424]]],[[[134.098312,-3.83942],[134.100449,-3.833298],[134.095749,-3.839421],[134.097,-3.841139],[134.098312,-3.83942]]],[[[134.0128790000001,-3.815079],[134.013855,-3.813017],[134.011063,-3.812782],[134.008591,-3.81489],[134.009964,-3.816445],[134.0128790000001,-3.815079]]],[[[134.032089,-3.816615],[134.03111300000012,-3.814543],[134.027115,-3.81259],[134.024552,-3.812925],[134.022705,-3.818199],[134.028305,-3.821536],[134.023453,-3.82491],[134.020874,-3.824847],[134.020371,-3.818479],[134.017227,-3.818643],[134.012863,-3.825626],[134.010635,-3.824414],[134.012131,-3.822072],[134.0112150000001,-3.820235],[134.002472,-3.82153],[134.001312,-3.828694],[134.005661,-3.83347],[134.010635,-3.833768],[134.009888,-3.836056],[134.003937,-3.83622],[134.003189,-3.839078],[134.007416,-3.842759],[134.006729,-3.84551],[134.000702,-3.841729],[134.0002750000001,-3.846243],[134.002258,-3.85347],[134.004196,-3.854628],[134.008896,-3.849589],[134.020279,-3.848068],[134.023697,-3.850655],[134.025696,-3.849976],[134.024277,-3.847099],[134.043488,-3.843479],[134.048355,-3.835979],[134.051117,-3.827214],[134.049973,-3.824853],[134.044434,-3.823009],[134.042892,-3.819047],[134.040604,-3.819617],[134.036896,-3.816225],[134.032089,-3.816615]]],[[[134.168854,-3.800371],[134.169144,-3.792737],[134.167252,-3.793714],[134.1657100000001,-3.799503],[134.167068,-3.801565],[134.168854,-3.800371]]],[[[133.888992,-3.730652],[133.889572,-3.725378],[133.888092,-3.723822],[133.878433,-3.721508],[133.876999,-3.720016],[133.874542,-3.721499],[133.869843,-3.73164],[133.872558,-3.747877],[133.881165,-3.773475],[133.884537,-3.776921],[133.886871,-3.783461],[133.88679500000012,-3.79986],[133.891022,-3.806988],[133.891296,-3.810543],[133.894898,-3.814848],[133.898132,-3.833726],[133.908112,-3.849003],[133.910339,-3.85027],[133.912567,-3.849129],[133.913025,-3.852567],[133.916229,-3.855615],[133.922607,-3.867735],[133.923126,-3.871173],[133.921341,-3.875126],[133.925964,-3.878581],[133.928146,-3.877377],[133.926269,-3.870322],[133.931656,-3.861221],[133.931992,-3.858182],[133.9294890000001,-3.854048],[133.929321,-3.846188],[133.922974,-3.847609],[133.926361,-3.83953],[133.926087,-3.833732],[133.914734,-3.809853],[133.90834,-3.805647],[133.9082790000001,-3.803295],[133.91005,-3.802101],[133.903671,-3.787403],[133.903854,-3.775363],[133.901245,-3.760908],[133.898895,-3.760556],[133.901535,-3.753789],[133.9007570000001,-3.74393],[133.896591,-3.73474],[133.8926540000001,-3.731411],[133.891052,-3.733184],[133.888992,-3.730652]]],[[[133.636902,-3.469903],[133.632965,-3.46519],[133.629303,-3.471025],[133.635529,-3.473684],[133.637131,-3.472372],[133.636902,-3.469903]]],[[[133.674774,-3.440627],[133.67997800000012,-3.438862],[133.682358,-3.433877],[133.677978,-3.434032],[133.670715,-3.437344],[133.6698,-3.43918],[133.674774,-3.440627]]],[[[133.6171200000001,-3.423586199999932],[133.6159060000001,-3.422235],[133.61390440000002,-3.423095199999977],[133.6125177,-3.429246399999954],[133.610764,-3.431281],[133.601518,-3.434472],[133.6041567000001,-3.439045199999953],[133.610809,-3.44029],[133.613495,-3.443221],[133.613495,-3.44873],[133.614853,-3.450629],[133.618973,-3.451786],[133.622452,-3.456273],[133.62490800000012,-3.456679],[133.628815,-3.44814],[133.628586,-3.442857],[133.63385,-3.436045],[133.633789,-3.432888],[133.62860100000012,-3.425824],[133.6171200000001,-3.423586199999932]]],[[[133.77056,-3.124800099999959],[133.773764,-3.1207921],[133.7738250000001,-3.118441099999927],[133.770575,-3.117057099999954],[133.768226,-3.1253071],[133.77056,-3.124800099999959]]],[[[133.774063,-3.054899],[133.772278,-3.056445],[133.772568,-3.058861],[133.767303,-3.063375],[133.76741,-3.07973],[133.772491,-3.083239],[133.774429,-3.088521],[133.772995,-3.090348],[133.777054,-3.094383],[133.7796780000001,-3.101157],[133.781784,-3.100985],[133.7827,-3.103862],[133.78476000000012,-3.104721],[133.7869260000001,-3.103119],[133.79219100000012,-3.102739],[133.796707,-3.10642],[133.798019,-3.113711],[133.800079,-3.112969],[133.800934,-3.110391],[133.798874,-3.102123],[133.799515,-3.089387],[133.7906190000001,-3.078117],[133.782974,-3.05573],[133.775772,-3.056336],[133.774063,-3.054899]]],[[[135.20292730000006,-3.819873199999961],[135.25798,-3.75193],[135.163559,-3.726844],[135.11734,-3.703116],[135.04451,-3.675407],[135.00058,-3.660682],[134.888657,-3.631025],[134.748306,-3.579676],[134.6358801,-3.5426395],[134.525162,-3.505782],[134.487427,-3.489891],[134.41301,-3.474069],[134.3852230000001,-3.462114],[134.3356480000001,-3.436207],[134.283875,-3.414061],[134.25141440000004,-3.402180499999929],[134.22426380000002,-3.350043199999959],[134.237625,-3.31085],[134.2564850000001,-3.282468],[134.279465,-3.240215],[134.323089,-3.184835],[134.296997,-3.144476],[134.297882,-3.143202],[134.292648,-3.137738],[134.2334750000001,-3.043154],[134.204849,-2.950433],[134.1931,-2.902854],[134.1772,-2.860749],[134.176071,-2.860866],[134.172607,-2.852346],[134.13327,-2.839965],[134.074051,-2.86883],[133.916794,-2.935107],[133.865204,-2.955449],[133.80948540000009,-2.982701299999974],[133.7915885000001,-2.992962199999965],[133.77560060000008,-2.999882299999967],[133.7696350000001,-3.005609299999946],[133.76080580000007,-3.006325199999935],[133.7519767000001,-3.0094273],[133.712982,-3.013584],[133.6783140000001,-3.004281],[133.6409000000001,-3.03555],[133.620468,-3.050656],[133.609024,-3.063185],[133.6023636000001,-3.067415399999959],[133.576111,-3.090389],[133.56369,-3.098743],[133.549515,-3.113314],[133.514496,-3.141321],[133.46138,-3.19612],[133.449829,-3.202197],[133.4320530000001,-3.219838],[133.415909,-3.241248],[133.395553,-3.264471],[133.373642,-3.280388],[133.364319,-3.291283],[133.3548280000001,-3.298846],[133.33721900000012,-3.320027],[133.294052,-3.36394],[133.26857,-3.396245],[133.2539670000001,-3.411435],[133.233765,-3.439238],[133.220444,-3.451324],[133.18830900000012,-3.497268],[133.14537,-3.55471],[133.123413,-3.588315],[133.0345,-3.682554],[132.992676,-3.720035],[132.946716,-3.769943],[132.881836,-3.831232],[132.852325,-3.867434],[132.825851,-3.891632],[132.8273620000001,-3.89725],[132.833679,-3.906503],[132.834366,-3.91506],[132.839356,-3.924033],[132.849716,-3.932996],[132.847656,-3.933856],[132.8476720000001,-3.935991],[132.845612,-3.935873],[132.845428,-3.937881],[132.8512270000001,-3.950527],[132.852783,-3.963398],[132.851013,-3.964665],[132.846085,-3.956497],[132.838059,-3.948511],[132.83194,-3.946042],[132.830902,-3.941782],[132.833191,-3.940922],[132.8318180000001,-3.936381],[132.827972,-3.930864],[132.823654,-3.928745],[132.825165,-3.9273],[132.82069400000012,-3.922127],[132.819046,-3.923339],[132.821793,-3.927644],[132.817154,-3.929255],[132.812134,-3.93954],[132.812027,-3.945692],[132.820862,-3.962416],[132.822983,-3.964768],[132.8272700000001,-3.965979],[132.827621,-3.968394],[132.831512,-3.968448],[132.8327640000001,-3.959547],[132.8374480000001,-3.95989],[132.842316,-3.965634],[132.84729,-3.966384],[132.848724,-3.968166],[132.844681,-3.97524],[132.845276,-3.999777],[132.848007,-4.007956],[132.8493350000001,-4.019791],[132.852829,-4.024145],[132.861893,-4.028206],[132.8668060000001,-4.032573],[132.86647,-4.037926],[132.868347,-4.045893],[132.872971,-4.04732],[132.877136,-4.056806],[132.876419,-4.063595],[132.87294,-4.070646],[132.873779,-4.076817],[132.871185,-4.077828],[132.86941500000012,-4.082074],[132.866745,-4.084352],[132.865509,-4.089523],[132.866592,-4.091722],[132.868256,-4.089896],[132.870743,-4.090956],[132.879181,-4.100426],[132.88974,-4.101852],[132.89502,-4.111579],[132.902237,-4.109921],[132.908172,-4.110842],[132.91160600000012,-4.114331],[132.920181,-4.110151],[132.925293,-4.109509],[132.927857,-4.112644],[132.934631,-4.11438],[132.9368280000001,-4.118203],[132.943527,-4.123508],[132.94635,-4.121635],[132.9504700000001,-4.11194],[132.950882,-4.104399],[132.94899,-4.099773],[132.950119,-4.097826],[132.956177,-4.096041],[132.963379,-4.091503],[132.96136500000011,-4.088489],[132.9642030000001,-4.080395],[132.9662780000001,-4.081221],[132.975678,-4.070772],[132.987717,-4.069217],[133.001236,-4.060823],[133.016953,-4.061378],[133.023758,-4.064496],[133.029343,-4.064953],[133.044205,-4.07195],[133.0647120000001,-4.076064],[133.083023,-4.072324],[133.095306,-4.074977],[133.106262,-4.074852],[133.125839,-4.078554],[133.139709,-4.079091],[133.145996,-4.076674],[133.155426,-4.070314],[133.162201,-4.057478],[133.164688,-4.055602],[133.17279,-4.039265],[133.1775050000001,-4.035912],[133.202804,-4.027919],[133.20668000000012,-4.023181],[133.20842,-4.024172],[133.2209620000001,-4.011679],[133.2225340000001,-4.00317],[133.227112,-4.002178],[133.23143,-3.99836],[133.24736,-3.995993],[133.261566,-3.995993],[133.268677,-3.998363],[133.2758030000001,-4.005472],[133.299484,-4.010211],[133.320801,-4.010211],[133.333649,-4.00148],[133.338989,-3.989439],[133.354996,-3.975824],[133.362656,-3.966343],[133.3638,-3.960888],[133.409973,-3.908201],[133.410996,-3.906247],[133.408768,-3.901932],[133.408981,-3.893194],[133.4129180000001,-3.88688],[133.4193319000001,-3.882393299999933],[133.4090873,-3.8813149],[133.39425960000005,-3.886437199999932],[133.37943180000002,-3.882662799999935],[133.3664913,-3.876462199999935],[133.35813380000002,-3.8702615],[133.3392622,-3.8627128],[133.33009590000006,-3.861095199999966],[133.3257824000001,-3.867295899999931],[133.3244344000001,-3.8651392],[133.32766960000004,-3.860556],[133.3333311,-3.842493199999979],[133.33360070000003,-3.850311399999953],[133.33144390000007,-3.853546599999959],[133.33225270000003,-3.858399299999974],[133.3624473000001,-3.868374299999971],[133.3708048000001,-3.875114199999928],[133.39075480000008,-3.880506099999934],[133.39452920000008,-3.880775699999958],[133.40369540000006,-3.876462199999935],[133.41097450000007,-3.875923],[133.426758,-3.879353],[133.434372,-3.876023],[133.441742,-3.866425],[133.448776,-3.868323],[133.454849,-3.864768],[133.46307400000012,-3.86436],[133.465317,-3.861492],[133.4660490000001,-3.858389],[133.461746,-3.840461],[133.4589840000001,-3.836373],[133.459442,-3.827644],[133.458176,-3.825346],[133.442886,-3.8112],[133.438995,-3.809129],[133.428802,-3.807403],[133.419296,-3.801542],[133.417633,-3.798612],[133.415512,-3.787802],[133.414978,-3.770625],[133.400833,-3.755737],[133.399323,-3.740333],[133.406631,-3.722982],[133.412506,-3.714189],[133.412277,-3.706301],[133.413925,-3.700322],[133.416443,-3.697526],[133.4394380000001,-3.688216],[133.4598390000001,-3.674428],[133.476425,-3.655756],[133.487045,-3.633905],[133.4954990000001,-3.627947],[133.47992810000005,-3.606660699999964],[133.4912753000001,-3.595675699999958],[133.5005149000001,-3.588891099999955],[133.4939488000001,-3.576127199999974],[133.493147,-3.568737699999929],[133.48924640000007,-3.561369799999966],[133.4840455000001,-3.563320099999942],[133.47169340000005,-3.563103399999932],[133.4645422000001,-3.555085399999939],[133.45500730000003,-3.548367599999949],[133.4186807000001,-3.551158499999929],[133.39382740000008,-3.545682299999953],[133.351282,-3.552843399999972],[133.34243590000005,-3.542733599999963],[133.307894,-3.542733599999963],[133.28809560000002,-3.539363699999967],[133.28472570000008,-3.532202499999926],[133.29652050000004,-3.537257499999953],[133.30326030000003,-3.537257499999953],[133.31126390000009,-3.539363699999967],[133.32895610000003,-3.539363699999967],[133.332827,-3.537356299999942],[133.33780220000006,-3.540206199999943],[133.34369960000004,-3.538521199999934],[133.3508607000001,-3.543997299999944],[133.35423070000002,-3.549052199999949],[133.38034770000002,-3.543997299999944],[133.39053610000008,-3.539951699999961],[133.4077284000001,-3.545261099999948],[133.44858890000012,-3.545261099999948],[133.433003,-3.534308799999963],[133.4220507000001,-3.529675099999963],[133.39846110000008,-3.507349199999965],[133.43510920000006,-3.511561699999959],[133.43932160000008,-3.519565299999954],[133.44564030000004,-3.523356499999977],[133.45111640000005,-3.535151199999973],[133.4589079000001,-3.546633899999961],[133.47321030000012,-3.552701599999978],[133.4781945000001,-3.559852799999931],[133.4864292000001,-3.557035699999972],[133.49162060000003,-3.557690899999955],[133.4953141000001,-3.564620299999945],[133.5091831000001,-3.5605029],[133.50094830000012,-3.550101199999972],[133.49921470000004,-3.541433099999949],[133.50289870000006,-3.534932],[133.5067993,-3.532764899999961],[133.5146006000001,-3.531464699999958],[133.515034,-3.535365399999932],[133.50528240000006,-3.539266],[133.50333210000008,-3.547934199999929],[133.51330040000005,-3.557902499999955],[133.51395050000008,-3.560936399999946],[133.51265030000002,-3.564620299999945],[133.4983479000001,-3.570254599999942],[133.49704770000005,-3.571988199999964],[133.49748110000007,-3.5741552],[133.5015985000001,-3.575672199999929],[133.5061492000001,-3.5806563],[133.50855460000002,-3.591339799999957],[133.50611220000008,-3.598743099999979],[133.49878130000002,-3.611211499999968],[133.49596420000012,-3.621829899999966],[133.508164,-3.617878],[133.525955,-3.607075],[133.53345380000007,-3.597125799999958],[133.539108,-3.596671],[133.543793,-3.594274],[133.55217,-3.588993],[133.55504660000008,-3.585625499999935],[133.5603559000001,-3.583787699999959],[133.56689040000003,-3.583787699999959],[133.58731080000007,-3.574394299999938],[133.5936411,-3.549685599999975],[133.60180920000005,-3.535187099999973],[133.60221760000002,-3.5313073],[133.5979294000001,-3.522118099999943],[133.59119060000012,-3.513541499999974],[133.5854729,-3.509253299999955],[133.57832580000002,-3.497001],[133.5758369,-3.495786399999929],[133.57907790000002,-3.497275499999944],[133.563843,-3.478903],[133.55580280000004,-3.460253899999941],[133.554015,-3.458045399999946],[133.55075490000002,-3.4574145],[133.54959810000003,-3.454785299999969],[133.52088820000006,-3.444163699999933],[133.4964900000001,-3.4301768],[133.49386090000007,-3.426601199999936],[133.49680550000005,-3.424603099999956],[133.49512290000007,-3.421763699999929],[133.47840170000006,-3.422605],[133.47209180000004,-3.4211327],[133.4701989,-3.418819099999951],[133.47040920000006,-3.413981499999977],[133.46672850000004,-3.406935499999975],[133.4701989,-3.408512899999948],[133.47871720000012,-3.420186199999932],[133.49848810000003,-3.417872599999953],[133.50227410000002,-3.426601199999936],[133.51689190000002,-3.436802199999931],[133.52709290000007,-3.440062299999965],[133.54630780000002,-3.442741099999978],[133.55335430000002,-3.440797199999963],[133.5569,-3.43448],[133.559586,-3.433512],[133.5543225,-3.426556699999935],[133.5543225,-3.424195499999939],[133.54798460000006,-3.419473099999948],[133.54885450000006,-3.411022499999945],[133.5574471000001,-3.4161626],[133.56451290000007,-3.430906199999924],[133.569015,-3.432498],[133.57902500000012,-3.430235],[133.587204,-3.431057],[133.589035,-3.430252],[133.59001200000012,-3.425901],[133.600815,-3.42495],[133.606415,-3.422896],[133.609222,-3.421014],[133.6105960000001,-3.415107],[133.613052,-3.414365],[133.6203,-3.417603],[133.6305390000001,-3.416416],[133.63591,-3.41827],[133.642715,-3.415076],[133.655365,-3.399037],[133.666992,-3.379045],[133.668823,-3.37131],[133.667175,-3.357254],[133.671189,-3.343666],[133.668686,-3.332929],[133.663132,-3.333889],[133.66182,-3.331365],[133.665146,-3.322998],[133.667603,-3.321451],[133.665222,-3.311347],[133.667099,-3.308832],[133.67157,-3.30695],[133.662842,-3.279163],[133.6610260000001,-3.257643],[133.661728,-3.252885],[133.655991,-3.235954],[133.659683,-3.231881],[133.661636,-3.226381],[133.66547460000004,-3.222784199999978],[133.67476640000007,-3.218958099999952],[133.67777260000003,-3.2126725],[133.6717602000001,-3.208573199999933],[133.67121370000007,-3.202014199999951],[133.6673876000001,-3.194362199999944],[133.66684110000006,-3.190536099999974],[133.66957390000005,-3.1823375],[133.66957390000005,-3.175778499999979],[133.664928,-3.1746854],[133.6643815000001,-3.168946299999959],[133.65782250000007,-3.162660699999947],[133.659189,-3.154188699999963],[133.66137530000003,-3.1547353],[133.66274170000008,-3.153368899999975],[133.66274170000008,-3.149816099999953],[133.6600088,-3.1435305],[133.661102,-3.136425],[133.657276,-3.127953099999957],[133.65782250000007,-3.122760599999935],[133.66875410000011,-3.121120799999971],[133.67039380000006,-3.124127],[133.6731267,-3.125493499999948],[133.677226,-3.120301],[133.682831,-3.102923],[133.691757,-3.097441],[133.698456,-3.087761],[133.705536,-3.08198],[133.711609,-3.072074],[133.72139,-3.060332],[133.730103,-3.043777],[133.735703,-3.038232],[133.74301430000003,-3.033738799999981],[133.75191780000011,-3.034789399999966],[133.75671440000008,-3.034383299999945],[133.75799210000002,-3.032740499999932],[133.757627,-3.030185],[133.7530637000001,-3.0261692],[133.74704,-3.024526399999957],[133.73572280000008,-3.025804099999959],[133.72618320000004,-3.031574199999966],[133.72203260000003,-3.032557899999972],[133.71235820000004,-3.031462699999963],[133.69921560000012,-3.027264399999979],[133.72203260000003,-3.030915099999959],[133.72677640000006,-3.029817299999934],[133.73538810000002,-3.024854699999935],[133.74941290000004,-3.023248599999931],[133.76049280000007,-3.030572399999926],[133.76140880000003,-3.026158399999929],[133.76856480000004,-3.022955399999944],[133.78176380000002,-3.027811399999962],[133.78850780000005,-3.026164399999971],[133.7956488000001,-3.027447399999971],[133.79935680000006,-3.030432399999938],[133.80153880000012,-3.029120399999954],[133.79960180000012,-3.023376399999961],[133.8006563,-3.014199799999972],[133.811633,-3.0072797],[133.82451880000008,-3.004654799999969],[133.83835910000005,-2.995348399999955],[133.84551780000004,-2.9893828],[133.84862,-2.979360499999927],[133.85601730000008,-2.972679],[133.86342910000008,-2.961428199999943],[133.86630750000006,-2.959438699999964],[133.86688990000005,-2.9584098],[133.8644948000001,-2.9564741],[133.86797,-2.958289599999944],[133.87893080000003,-2.952897899999925],[133.8688581,-2.958672],[133.873058,-2.961034599999948],[133.87912770000003,-2.961034599999948],[133.873058,-2.961559499999964],[133.86836630000005,-2.959197199999949],[133.863937,-2.962116],[133.861771,-2.967281],[133.861786,-2.981817],[133.866593,-3.005055],[133.871323,-3.01401],[133.876068,-3.019247],[133.872055,-3.022449],[133.868225,-3.028519],[133.875244,-3.038858],[133.88324000000011,-3.047432],[133.889526,-3.062818],[133.8971100000001,-3.076494],[133.90528560000007,-3.084709],[133.91075580000006,-3.081243499999971],[133.9351213000001,-3.078506599999969],[133.9506186000001,-3.079020799999967],[133.9540257000001,-3.0727806],[133.96164410000006,-3.071222499999976],[133.9707373000001,-3.062330799999927],[133.96334610000008,-3.071512799999937],[133.95430790000012,-3.074184399999979],[133.9518554000001,-3.080109399999969],[133.933561,-3.080413599999929],[133.91258370000003,-3.082840799999929],[133.9039266000001,-3.087155299999949],[133.89670450000006,-3.094672699999933],[133.8983962000001,-3.097744499999976],[133.89759490000006,-3.100059499999929],[133.9022586000001,-3.100919499999975],[133.90583090000007,-3.099124599999925],[133.9108615,-3.100549199999932],[133.9162037000001,-3.099881399999958],[133.92270340000005,-3.104689399999927],[133.91580310000006,-3.100415599999963],[133.897399,-3.101257799999928],[133.90084480000007,-3.104644899999926],[133.90148940000006,-3.1079438],[133.89975970000012,-3.1100178],[133.90053310000008,-3.111990499999933],[133.89639290000002,-3.113281599999937],[133.900177,-3.111634399999957],[133.8991976000001,-3.109987199999978],[133.9009420000001,-3.107714199999975],[133.8999989,-3.104600399999924],[133.89652650000005,-3.101884799999937],[133.895547,-3.095073399999933],[133.89728330000003,-3.091511899999944],[133.9023297000001,-3.087121399999944],[133.894989,-3.081425],[133.883057,-3.061652],[133.879181,-3.059699],[133.870438,-3.058641],[133.86792,-3.056],[133.863861,-3.047959],[133.8629,-3.036824],[133.8530270000001,-3.024984],[133.8483890000001,-3.023474],[133.842163,-3.024949],[133.833862,-3.039279],[133.835861,-3.047429],[133.834762,-3.064236],[133.8392030000001,-3.082661],[133.835297,-3.093372],[133.828323,-3.097488],[133.825684,-3.104083],[133.823349,-3.106254],[133.81510900000012,-3.107268],[133.812988,-3.108924],[133.814422,-3.113808],[133.812927,-3.118738],[133.8106990000001,-3.120683],[133.802185,-3.123127],[133.799316,-3.121969],[133.796188,-3.116624],[133.7907560000001,-3.118216],[133.784286,-3.11459],[133.783829,-3.116543],[133.779953,-3.116589],[133.778397,-3.118878],[133.77845800000011,-3.128231],[133.782791,-3.13535],[133.784378,-3.142414],[133.782944,-3.149298],[133.78025800000012,-3.152446],[133.781403,-3.15658],[133.777969,-3.162533],[133.777679,-3.170104],[133.7794950000001,-3.172745],[133.77850300000011,-3.174934],[133.772415,-3.178689],[133.762695,-3.178907],[133.753372,-3.176755],[133.745712,-3.17312],[133.733536,-3.17493],[133.723419,-3.181734],[133.712555,-3.178659],[133.7088470000001,-3.173893],[133.705765,-3.174282],[133.704147,-3.179963],[133.70958,-3.190356],[133.7089840000001,-3.212789],[133.704178,-3.218],[133.700867,-3.219303],[133.687134,-3.218988],[133.68016000000011,-3.228034],[133.675415,-3.231292],[133.6719660000001,-3.244824],[133.67337,-3.270695],[133.682083,-3.322236],[133.680984,-3.324298],[133.675217,-3.322445],[133.6730960000001,-3.323069],[133.673782,-3.325195],[133.677673,-3.326587],[133.681274,-3.333915],[133.680405,-3.33594],[133.684692,-3.347138],[133.6847990000001,-3.352077],[133.68840000000012,-3.354438],[133.687927,-3.360399],[133.69125730000007,-3.371512099999961],[133.69110750000004,-3.3751815],[133.70334530000002,-3.405581099999949],[133.70287760000008,-3.409868199999949],[133.70124070000008,-3.413765599999977],[133.6958678000001,-3.417278099999976],[133.69069600000012,-3.423606699999937],[133.68391780000002,-3.438895899999977],[133.6717374000001,-3.445232399999952],[133.66913820000002,-3.449326499999927],[133.66105190000007,-3.4531319],[133.6459592000001,-3.451280699999927],[133.64219480000008,-3.452457099999947],[133.6428165000001,-3.458840599999974],[133.64121340000008,-3.462777499999959],[133.64056470000003,-3.473584799999969],[133.6353984000001,-3.477536499999928],[133.630157,-3.477619],[133.62816240000006,-3.479898499999933],[133.6311919000001,-3.489534899999967],[133.63721940000005,-3.494046899999944],[133.64384780000012,-3.502106099999935],[133.64631210000005,-3.501578299999949],[133.64636310000003,-3.499424],[133.6525299000001,-3.502005799999949],[133.65384820000008,-3.504426099999932],[133.6515908,-3.508340799999928],[133.65359100000012,-3.510741099999962],[133.65586570000005,-3.518506199999933],[133.65796330000012,-3.5193643],[133.6590659000001,-3.516658099999972],[133.6626354000001,-3.5160272],[133.66102560000002,-3.527436499999965],[133.668609,-3.535169],[133.66983,-3.539741],[133.675949,-3.536945],[133.676346,-3.539071],[133.672852,-3.545828],[133.6737670000001,-3.548189],[133.6748500000001,-3.549907],[133.67822300000012,-3.548625],[133.6901521000001,-3.562574199999972],[133.692154,-3.577603],[133.696488,-3.579674],[133.699066,-3.576472],[133.700256,-3.578652],[133.697342,-3.587372],[133.69848600000012,-3.590701],[133.7015080000001,-3.591967],[133.706406,-3.590025],[133.706421,-3.597312],[133.708878,-3.604259],[133.712006,-3.608347],[133.712921,-3.614544],[133.710114,-3.622857],[133.699234,-3.639692],[133.698593,-3.662406],[133.694519,-3.672438],[133.695557,-3.674736],[133.70372,-3.676589],[133.706528,-3.675964],[133.715622,-3.668012],[133.72374,-3.66603],[133.730484,-3.662257],[133.736557,-3.65275],[133.738724,-3.651492],[133.7409060000001,-3.652297],[133.75085400000012,-3.649401],[133.755173,-3.649611],[133.764557,-3.662805],[133.765976,-3.673018],[133.771408,-3.673026],[133.7732850000001,-3.6747],[133.77597,-3.685265],[133.7849880000001,-3.694409],[133.786759,-3.699112],[133.792938,-3.702739],[133.795441,-3.706646],[133.802078,-3.708672],[133.803604,-3.713665],[133.81794800000011,-3.730741],[133.8209230000001,-3.729719],[133.823151,-3.718538],[133.819229,-3.701831],[133.808609,-3.686663],[133.800339,-3.667596],[133.796234,-3.65192],[133.793152,-3.646122],[133.7896730000001,-3.643363],[133.790649,-3.632807],[133.78923,-3.618171],[133.792099,-3.606249],[133.803833,-3.591593],[133.808288,-3.587929],[133.812164,-3.58097],[133.8181300000001,-3.57597],[133.822434,-3.568805],[133.839874,-3.559478],[133.843292,-3.569662],[133.842423,-3.577975],[133.8468170000001,-3.600933],[133.8419490000001,-3.611535],[133.841705,-3.6148],[133.846832,-3.6384],[133.849808,-3.643338],[133.86174,-3.653007],[133.866135,-3.660415],[133.8870700000001,-3.672111],[133.886871,-3.677337],[133.891952,-3.686011],[133.895782,-3.687277],[133.9044040000001,-3.693843],[133.910523,-3.703612],[133.911468,-3.71841],[133.915588,-3.722263],[133.914322,-3.727194],[133.919098,-3.747871],[133.92366,-3.750349],[133.929779,-3.757585],[133.9320070000001,-3.757196],[133.932129,-3.754726],[133.936584,-3.755079],[133.936066,-3.760352],[133.946152,-3.776263],[133.9395290000001,-3.773098],[133.938797,-3.770745],[133.933701,-3.769751],[133.92897,-3.761945],[133.921265,-3.755677],[133.91748,-3.767021],[133.916534,-3.78457],[133.930099,-3.815676],[133.93428,-3.816662],[133.9348450000001,-3.81867],[133.933014,-3.822687],[133.937058,-3.834048],[133.948639,-3.850591],[133.9587550000001,-3.856008],[133.9596100000001,-3.859789],[133.964523,-3.863938],[133.973099,-3.859254],[133.975449,-3.855472],[133.968643,-3.855862],[133.967743,-3.849666],[133.972595,-3.848869],[133.97792,-3.844753],[133.978424,-3.848652],[133.97694400000012,-3.850542],[133.981796,-3.850668],[133.983246,-3.83634],[133.989548,-3.824715],[133.9918980000001,-3.824317],[133.994629,-3.829482],[134.0073400000001,-3.809906],[134.012726,-3.807562],[134.015976,-3.804133],[134.021179,-3.802821],[134.029709,-3.793042],[134.037842,-3.790309],[134.043213,-3.785152],[134.045441,-3.785966],[134.0460210000001,-3.787974],[134.048065,-3.787178],[134.049835,-3.789014],[134.0495,-3.791538],[134.0526880000001,-3.795563],[134.05159,-3.802782],[134.052735,-3.81047],[134.062897,-3.822192],[134.065125,-3.823458],[134.069641,-3.820771],[134.0708310000001,-3.822843],[134.073013,-3.822616],[134.0756990000001,-3.818554],[134.082108,-3.815297],[134.09018,-3.808548],[134.092636,-3.803799],[134.09996,-3.801862],[134.104309,-3.79809],[134.1139680000001,-3.795475],[134.120773,-3.791647],[134.118149,-3.787514],[134.11731,-3.779255],[134.113357,-3.779762],[134.111252,-3.774824],[134.103317,-3.769931],[134.113907,-3.752354],[134.118271,-3.748471],[134.119018,-3.750825],[134.122833,-3.750878],[134.125977,-3.754334],[134.124588,-3.759716],[134.1260830000001,-3.762013],[134.127503,-3.763913],[134.131958,-3.764147],[134.133621,-3.763007],[134.132995,-3.758132],[134.135239,-3.750452],[134.1400671,-3.746083899999974],[134.14251320000005,-3.745630899999981],[134.145019,-3.747267],[134.14517200000012,-3.757072],[134.148651,-3.762065],[134.153061,-3.761621],[134.15431200000012,-3.767935],[134.158707,-3.768287],[134.158081,-3.77224],[134.162475,-3.773171],[134.163849,-3.775641],[134.1637270000001,-3.778508],[134.16127,-3.781765],[134.16629000000012,-3.781203],[134.171448,-3.774563],[134.174988,-3.777159],[134.1775050000001,-3.776987],[134.174988,-3.780886],[134.172287,-3.790285],[134.176803,-3.790926],[134.1784060000001,-3.792536],[134.1729580000001,-3.798254],[134.174728,-3.799466],[134.175018,-3.803654],[134.178162,-3.807326],[134.177002,-3.812256],[134.183975,-3.820876],[134.1819,-3.82804],[134.184296,-3.829424],[134.185913,-3.825127],[134.18808,-3.825244],[134.194595,-3.831105],[134.192703,-3.833394],[134.183212,-3.838017],[134.165863,-3.855007],[134.154083,-3.862327],[134.14978,-3.870685],[134.145325,-3.874232],[134.142624,-3.875661],[134.135605,-3.875472],[134.1295930000001,-3.881072],[134.1186070000001,-3.885062],[134.106705,-3.893576],[134.104416,-3.898217],[134.106705,-3.89885],[134.111465,-3.895862],[134.11018400000012,-3.906085],[134.1159060000001,-3.901571],[134.117508,-3.903642],[134.1167600000001,-3.906157],[134.11853,-3.908111],[134.120697,-3.908002],[134.120239,-3.903642],[134.1260830000001,-3.903886],[134.13237,-3.900981],[134.133743,-3.895879],[134.1360320000001,-3.894793],[134.153977,-3.896501],[134.161056,-3.904605],[134.165924,-3.899168],[134.1657560000001,-3.896699],[134.168793,-3.892519],[134.1701660000001,-3.895794],[134.170776,-3.907435],[134.173691,-3.910945],[134.169968,-3.913804],[134.168823,-3.91678],[134.171677,-3.920859],[134.170181,-3.922632],[134.165497,-3.923827],[134.16893,-3.925328],[134.173218,-3.925047],[134.175095,-3.926775],[134.17543000000012,-3.932338],[134.181717,-3.93809],[134.184387,-3.945607],[134.193817,-3.954054],[134.198379,-3.960892],[134.218994,-3.972586],[134.226654,-3.974204],[134.23146,-3.977487],[134.239517,-3.980489],[134.243179,-3.980616],[134.247513,-3.978562],[134.238907,-3.968785],[134.23982300000011,-3.966722],[134.2447360000001,-3.968341],[134.254669,-3.979665],[134.261856,-3.985589],[134.262604,-3.989894],[134.275482,-3.998153],[134.280243,-4.003059],[134.282745,-4.009455],[134.292129,-4.024002],[134.289429,-4.032084],[134.291992,-4.037561],[134.290817,-4.04146],[134.292908,-4.043371],[134.297836,-4.043725],[134.3026890000001,-4.046485],[134.31060800000012,-4.045852],[134.317642,-4.0428],[134.325119,-4.02958],[134.329559,-4.025302],[134.327255,-4.020575],[134.329666,-4.018926],[134.332214,-4.021472],[134.332748,-4.024349],[134.334991,-4.023273],[134.335205,-4.01839],[134.3275450000001,-4.007763],[134.322174,-4.004335],[134.3219610000001,-4.001575],[134.325592,-4.000136],[134.325409,-3.997549],[134.3116450000001,-3.9841],[134.311996,-3.97888],[134.30954,-3.978989],[134.302811,-3.971862],[134.300415,-3.968823],[134.3017880000001,-3.967104],[134.30098,-3.96515],[134.29408200000012,-3.95814],[134.291794,-3.956929],[134.289276,-3.957671],[134.278992,-3.948183],[134.274887,-3.949432],[134.270615,-3.936406],[134.27153,-3.93239],[134.2759860000001,-3.934181],[134.283936,-3.933628],[134.286102,-3.934668],[134.305573,-3.948243],[134.309738,-3.956339],[134.312149,-3.956519],[134.313461,-3.958817],[134.323456,-3.963257],[134.3272250000001,-3.961773],[134.336426,-3.965236],[134.33757,-3.9634],[134.3393400000001,-3.965128],[134.348099,-3.962513],[134.351288,-3.965271],[134.353241,-3.963959],[134.352951,-3.958857],[134.3577570000001,-3.954623],[134.360519,-3.944537],[134.35469100000012,-3.939644],[134.351669,-3.933331],[134.350662,-3.918242],[134.34964,-3.915719],[134.3456880000001,-3.913304],[134.346039,-3.910952],[134.356384,-3.916767],[134.361923,-3.917065],[134.362274,-3.915066],[134.340622,-3.899239],[134.337997,-3.895738],[134.329422,-3.892447],[134.3292540000001,-3.889236],[134.327209,-3.886884],[134.3211060000001,-3.883122],[134.324234,-3.882687],[134.326813,-3.884071],[134.32869,-3.882867],[134.328644,-3.880687],[134.335159,-3.877494],[134.345383,-3.882106],[134.351837,-3.893186],[134.372238,-3.90127],[134.379196,-3.905358],[134.3825680000001,-3.90903],[134.394058,-3.910033],[134.392685,-3.913018],[134.403427,-3.918255],[134.410675,-3.920343],[134.4118810000001,-3.918507],[134.411255,-3.916038],[134.41806,-3.91439],[134.421036,-3.916751],[134.427612,-3.918089],[134.43367000000012,-3.915176],[134.4404750000001,-3.916685],[134.445954,-3.925468],[134.446396,-3.929828],[134.4549710000001,-3.931283],[134.456345,-3.933183],[134.453995,-3.938511],[134.4561000000001,-3.94591],[134.4578090000001,-3.947864],[134.46226500000012,-3.947701],[134.466385,-3.949717],[134.465805,-3.955335],[134.4771730000001,-3.965691],[134.478134,-3.974293],[134.4770360000001,-3.98048],[134.4753270000001,-3.982145],[134.469208,-3.982354],[134.45195,-3.97606],[134.449829,-3.977318],[134.451202,-3.982084],[134.454621,-3.984499],[134.4571380000001,-3.984047],[134.461014,-3.989329],[134.46936,-3.993598],[134.4707340000001,-3.995434],[134.470383,-3.998129],[134.473999,-4.002141],[134.4835210000001,-4.004479],[134.489075,-4.010542],[134.5038760000001,-4.013605],[134.502426,-4.017264],[134.5037390000001,-4.022117],[134.500595,-4.024498],[134.496048,-4.024962],[134.505508,-4.036729],[134.511093,-4.041412],[134.51918000000012,-4.036085],[134.526901,-4.037205],[134.5322420000001,-4.036261],[134.539017,-4.028381],[134.5416110000001,-4.027221],[134.54313700000012,-4.031549],[134.5462500000001,-4.032733],[134.548203,-4.02107],[134.5569,-4.008196],[134.56665,-4.005757],[134.5736240000001,-3.997059],[134.581344,-3.995068],[134.584549,-3.995882],[134.587112,-3.999609],[134.60553,-3.99616],[134.612503,-3.987059],[134.614807,-3.981216],[134.614578,-3.97473],[134.611099,-3.969221],[134.612473,-3.966354],[134.61763,-3.965159],[134.6196900000001,-3.961613],[134.624313,-3.961685],[134.625351,-3.959903],[134.622559,-3.955136],[134.625015,-3.949817],[134.633255,-3.944099],[134.637665,-3.943076],[134.64537,-3.944414],[134.657043,-3.936869],[134.664657,-3.93448],[134.66449000000011,-3.932074],[134.66259800000012,-3.930753],[134.651337,-3.927398],[134.651337,-3.924703],[134.655457,-3.921211],[134.672669,-3.917183],[134.6848450000001,-3.920249],[134.692169,-3.915969],[134.69783,-3.917642],[134.7049710000001,-3.916918],[134.7273100000001,-3.932283],[134.736099,-3.936082],[134.738403,-3.931504],[134.74252300000012,-3.927958],[134.7476190000001,-3.918505],[134.755463,-3.913764],[134.75975,-3.912687],[134.766144,-3.913509],[134.781006,-3.918302],[134.789566,-3.922733],[134.800995,-3.931479],[134.826309,-3.936705],[134.84346,-3.936748],[134.8476260000001,-3.939162],[134.8573,-3.937289],[134.873749,-3.947482],[134.878616,-3.942216],[134.8823850000001,-3.94028],[134.883255,-3.937015],[134.881988,-3.933686],[134.883026,-3.930411],[134.885025,-3.929389],[134.887146,-3.929569],[134.893707,-3.934399],[134.904801,-3.936433],[134.911209,-3.9357],[134.920532,-3.930733],[134.930984,-3.93151],[134.929733,-3.934078],[134.926407,-3.935797],[134.922699,-3.935273],[134.92247,-3.932632],[134.919784,-3.933374],[134.914108,-3.940584],[134.9073790000001,-3.944612],[134.904785,-3.952263],[134.909866,-3.959671],[134.922439,-3.958439],[134.93016000000011,-3.952839],[134.941773,-3.949943],[134.950455,-3.95053],[134.957321,-3.944243],[134.959442,-3.944242],[134.9687500000001,-3.950573],[134.9679410000001,-3.957511],[134.96411100000012,-3.960778],[134.944946,-3.966008],[134.942841,-3.968749],[134.94751,-3.974556],[134.945907,-3.978798],[134.939972,-3.977515],[134.929382,-3.977896],[134.920639,-3.982574],[134.912979,-3.97797],[134.907776,-3.976813],[134.903671,-3.977944],[134.890244,-3.972238],[134.883835,-3.97383],[134.867142,-3.972702],[134.864044,-3.976881],[134.864273,-3.97917],[134.861069,-3.978528],[134.86297600000012,-3.969762],[134.861999,-3.967293],[134.858231,-3.964589],[134.859619,-3.959722],[134.85791,-3.949627],[134.856476,-3.948071],[134.832291,-3.950571],[134.826645,-3.94708],[134.812759,-3.944639],[134.805267,-3.939348],[134.78395100000012,-3.936311],[134.761444,-3.930416],[134.756241,-3.932063],[134.7500920000001,-3.939934],[134.7419890000001,-3.942467],[134.733917,-3.950591],[134.724228,-3.956508],[134.7197880000001,-3.953714],[134.694916,-3.962364],[134.6903380000001,-3.9662],[134.682739,-3.965721],[134.677872,-3.975889],[134.67552200000011,-3.977862],[134.66809100000012,-3.979708],[134.657562,-3.979944],[134.656998,-3.982748],[134.6646270000001,-3.9959],[134.6684110000001,-4.009998],[134.667481,-4.018932],[134.664017,-4.024312],[134.66333,-4.033814],[134.665207,-4.036295],[134.673324,-4.039532],[134.671402,-4.042284],[134.6767430000001,-4.046054],[134.679031,-4.05111],[134.68186900000012,-4.05345],[134.692474,-4.05553],[134.70726,-4.053247],[134.718857,-4.056394],[134.715134,-4.060975],[134.710144,-4.06191],[134.7108,-4.066825],[134.707703,-4.067434],[134.706787,-4.064871],[134.701385,-4.067772],[134.698181,-4.067741],[134.697739,-4.070397],[134.695709,-4.069242],[134.693115,-4.070288],[134.693619,-4.067802],[134.68602,-4.066679],[134.679504,-4.073402],[134.656967,-4.080372],[134.653091,-4.080703],[134.652145,-4.074347],[134.648392,-4.082033],[134.642883,-4.087868],[134.6352240000001,-4.092207],[134.6354520000001,-4.096743],[134.633087,-4.105197],[134.6288760000001,-4.112608],[134.621994,-4.118307],[134.63049300000011,-4.120614],[134.648453,-4.134747],[134.661392,-4.134408],[134.672623,-4.139001],[134.682465,-4.140296],[134.697647,-4.14082],[134.706253,-4.137835],[134.7079920000001,-4.1394],[134.707977,-4.143367],[134.711472,-4.15138],[134.713806,-4.153169],[134.715622,-4.157884],[134.715134,-4.163932],[134.7206880000001,-4.173905],[134.722412,-4.186622],[134.719437,-4.198254],[134.722336,-4.200305],[134.727493,-4.20109],[134.735977,-4.197937],[134.736603,-4.20068],[134.7343750000001,-4.205337],[134.7373960000001,-4.207443],[134.743271,-4.207634],[134.750565,-4.204569],[134.759445,-4.206464],[134.768005,-4.215956],[134.773132,-4.228066],[134.786911,-4.236387],[134.795914,-4.238164],[134.799454,-4.236402],[134.80961600000012,-4.245682],[134.809647,-4.251832],[134.815781,-4.253167],[134.817429,-4.250422],[134.828384,-4.255424],[134.847702,-4.249976],[134.8570453000001,-4.253748899999948],[134.86360580000007,-4.251276899999937],[134.8702538000001,-4.251240399999972],[134.87833280000007,-4.240780099999938],[134.889938,-4.221521],[134.923175,-4.183060199999943],[134.979447,-4.130203],[135.002106,-4.105765],[135.04729940000004,-4.045284599999945],[135.1388250000001,-3.905458],[135.1771357,-3.851534899999933],[135.20292730000006,-3.819873199999961]]]]},"properties":{"shapeName":"Kaimana","shapeISO":"","shapeID":"22746128B27986300503799","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[100.74499160000005,0.869792100000041],[100.75108550000004,0.877622700000074],[100.75836960000004,0.877619300000049],[100.75821050000008,0.871640200000058],[100.77642660000004,0.872827400000062],[100.77642980000007,0.879603700000075],[100.76573810000008,0.879608800000028],[100.76534430000004,0.884392400000024],[100.75854420000007,0.884159600000032],[100.75861360000005,0.886787300000037],[100.74001460000005,0.887372200000073],[100.73405690000004,0.876036200000044],[100.74499160000005,0.869792100000041]]],[[[100.74499160000005,0.869792100000041],[100.73998890000007,0.858494300000075],[100.75042590000004,0.849097900000061],[100.74452890000003,0.848440400000072],[100.72825590000008,0.833237200000042],[100.724258,0.841401900000051],[100.70331140000008,0.83211110000002],[100.691439,0.82158910000004],[100.70042230000007,0.810769],[100.69169990000006,0.803922400000033],[100.67962010000008,0.813360100000068],[100.647755,0.825503],[100.64362710000006,0.823958],[100.63524110000009,0.833414400000038],[100.62764630000004,0.823209700000064],[100.61751880000008,0.823231900000053],[100.61793760000006,0.817369800000051],[100.61254650000006,0.807444900000064],[100.64140850000007,0.797519900000054],[100.67807020000004,0.778627500000027],[100.65659110000007,0.745894600000042],[100.61142150000006,0.716152600000044],[100.59538,0.704063800000029],[100.59396930000008,0.700128900000038],[100.59722290000008,0.698874200000034],[100.60436430000004,0.690832],[100.61002220000006,0.670979600000067],[100.61573370000008,0.658609600000034],[100.624301,0.647086900000033],[100.62614610000008,0.644637900000021],[100.64134580000007,0.63774630000006],[100.64445880000005,0.63487],[100.65046290000004,0.625917700000059],[100.65227860000005,0.618448500000056],[100.66224960000005,0.607524700000056],[100.66694150000006,0.604999],[100.67390740000008,0.59832670000003],[100.67421,0.593883500000061],[100.67678960000006,0.589494200000047],[100.67997740000004,0.587567700000022],[100.68971770000007,0.587028400000065],[100.70948990000005,0.569750400000032],[100.71479610000006,0.566962200000034],[100.72262670000003,0.55783230000003],[100.73365290000004,0.554426200000023],[100.74583780000006,0.544558800000061],[100.77159430000006,0.528202600000043],[100.77700420000008,0.528408],[100.78549570000007,0.540939900000069],[100.78960450000005,0.54470630000003],[100.79316550000004,0.544911700000057],[100.80857350000008,0.529435200000023],[100.81955080000006,0.511014800000055],[100.825071,0.492781900000068],[100.83871480000005,0.476031100000057],[100.84080210000008,0.466614],[100.84126390000006,0.427745500000071],[100.84226390000003,0.424967200000026],[100.84134930000005,0.392269900000031],[100.83943340000008,0.386668500000042],[100.84009240000006,0.380981600000041],[100.838933,0.375392400000067],[100.83477160000007,0.370425600000033],[100.815185,0.354890500000067],[100.81049970000004,0.353156600000034],[100.80276370000007,0.354905],[100.77512350000006,0.376016700000037],[100.77753560000008,0.376950100000045],[100.77011520000008,0.381994700000064],[100.77271430000008,0.389839],[100.76046810000008,0.385732300000029],[100.75453,0.381064],[100.74989130000006,0.379570700000045],[100.74251930000008,0.377811800000075],[100.73505530000006,0.380808700000046],[100.728001,0.385939],[100.72671840000004,0.388504200000057],[100.72046610000007,0.390547200000071],[100.71645770000003,0.397696200000041],[100.70683820000005,0.403467900000066],[100.69443980000005,0.418004],[100.69037420000006,0.420674700000063],[100.68246820000007,0.431899100000066],[100.66258860000005,0.447289900000044],[100.65083150000004,0.459688400000061],[100.64078450000005,0.467170200000055],[100.60893260000006,0.50628990000007],[100.60358920000004,0.510778300000027],[100.58563280000004,0.518474],[100.578151,0.524887],[100.57686840000008,0.528521],[100.571738,0.532155100000068],[100.56233250000008,0.524887],[100.55463670000006,0.51484],[100.54736880000007,0.511419600000067],[100.54120620000003,0.503162600000053],[100.53026740000007,0.478072200000042],[100.51979280000006,0.470162900000048],[100.51423490000008,0.463108600000055],[100.51209730000005,0.457764500000053],[100.49756120000006,0.459047100000021],[100.49136190000007,0.457978200000071],[100.48815550000006,0.454130400000054],[100.47725340000005,0.451137700000061],[100.47447440000008,0.449427600000035],[100.47233680000005,0.445152300000075],[100.46528250000006,0.443014600000026],[100.46186220000004,0.434036400000025],[100.45267030000008,0.424630700000023],[100.44781370000004,0.422033],[100.44789550000007,0.41885],[100.43532820000007,0.417534900000021],[100.43815610000007,0.413141500000052],[100.45350710000008,0.405968200000075],[100.46509210000005,0.397915],[100.46757950000006,0.39969160000004],[100.46906220000005,0.405508],[100.47075,0.40710480000007],[100.48236320000007,0.401113500000065],[100.488906,0.392979500000024],[100.49751620000006,0.376801100000023],[100.49895330000004,0.364492900000073],[100.51519910000007,0.354079200000058],[100.52151640000005,0.346006100000068],[100.52723310000005,0.345198],[100.53405240000006,0.340555400000028],[100.53812350000004,0.332503700000075],[100.53175430000005,0.318216800000073],[100.53591640000008,0.311811200000022],[100.54146660000004,0.307376300000044],[100.55462580000005,0.302811600000041],[100.56433870000006,0.29706230000005],[100.57719530000008,0.279102],[100.58413270000005,0.272696300000064],[100.59409050000005,0.267686200000071],[100.60159910000004,0.25930980000004],[100.61337940000004,0.24274870000005],[100.62015350000007,0.235850600000049],[100.62980220000009,0.219214800000032],[100.64906390000004,0.203611800000033],[100.66730450000006,0.195603600000027],[100.67620040000008,0.18624230000006],[100.682404,0.188951300000042],[100.68477250000007,0.203566300000034],[100.69546650000007,0.216948800000068],[100.69458810000003,0.23184980000002],[100.70014710000004,0.237494100000049],[100.70146430000005,0.245988],[100.71345360000004,0.238604400000042],[100.72324850000007,0.241969500000039],[100.73155270000007,0.236230600000056],[100.738572,0.236229700000024],[100.74126620000004,0.241484100000037],[100.74804050000006,0.24033380000003],[100.75489610000005,0.237212900000031],[100.764772,0.236883200000022],[100.76664960000005,0.239181900000062],[100.76803810000007,0.247228],[100.77269090000004,0.25125040000006],[100.78787230000006,0.253465200000051],[100.800357,0.257910400000071],[100.80427450000008,0.256432],[100.80794660000004,0.251997900000049],[100.81896450000005,0.249040700000023],[100.82590060000007,0.239351700000043],[100.83438810000007,0.235081300000047],[100.84132430000005,0.225967100000048],[100.84148710000005,0.222600900000032],[100.83897240000005,0.218518900000049],[100.83905330000005,0.213018100000056],[100.84525540000004,0.20759860000004],[100.84345870000004,0.197172],[100.84550760000008,0.186771400000055],[100.84265040000008,0.180942500000072],[100.84893430000005,0.175441100000057],[100.84885220000007,0.170350800000051],[100.84035250000005,0.15207730000003],[100.84067840000006,0.145591200000069],[100.83496490000005,0.140090900000075],[100.82468160000008,0.14354],[100.81994780000008,0.143047800000033],[100.80285970000006,0.128469600000074],[100.78784210000003,0.127978100000064],[100.78425050000004,0.121984700000041],[100.79012660000006,0.115580300000033],[100.78668130000005,0.106993100000068],[100.77713190000009,0.104284200000052],[100.77443840000007,0.102067500000032],[100.781049,0.093199900000059],[100.78129360000008,0.089176800000075],[100.779327,0.083864400000039],[100.78144880000008,0.077788600000019],[100.78659070000003,0.076474700000063],[100.79205880000006,0.070563],[100.79499670000007,0.061367300000029],[100.79924060000008,0.058165100000053],[100.80105950000006,0.049496500000032],[100.80440570000007,0.048839600000065],[100.80905790000008,0.050892100000056],[100.81428170000004,0.060908400000073],[100.81673020000005,0.062468300000035],[100.828483,0.06435620000002],[100.83248220000007,0.066901200000075],[100.83533870000008,0.065177],[100.83721570000006,0.060579200000063],[100.85017110000007,0.05326210000004],[100.85172170000004,0.049567500000023],[100.85147670000003,0.044395200000054],[100.84788550000007,0.038237700000025],[100.84429420000004,0.027318300000047],[100.84767430000005,0],[100.826168,-0.016951699999936],[100.82435630000003,-0.020597],[100.82797970000007,-0.028408199999944],[100.827721,-0.031272399999978],[100.82621480000006,-0.033393899999965],[100.82508080000008,-0.031910599999946],[100.81920090000006,-0.032602699999927],[100.81454470000006,-0.040252],[100.81192970000006,-0.040727499999946],[100.81089860000009,-0.039344399999948],[100.80922340000006,-0.030274599999927],[100.80106360000008,-0.023982199999978],[100.78902620000008,-0.020829799999944],[100.78594280000004,-0.013978099999974],[100.78228440000004,-0.011317499999961],[100.77530020000006,-0.014310699999953],[100.76250050000004,-0.026065799999969],[100.75856640000006,-0.031946399999924],[100.75701370000007,-0.039497599999947],[100.75067480000007,-0.044645],[100.74527390000009,-0.046400799999958],[100.74270260000009,-0.0632753],[100.74336570000008,-0.072331899999938],[100.75338910000005,-0.082980299999974],[100.75390980000009,-0.092855499999928],[100.757787,-0.112664199999926],[100.761418,-0.119710899999973],[100.761413,-0.124644499999931],[100.75596610000008,-0.129081399999961],[100.75416830000006,-0.132454799999948],[100.75493950000003,-0.136091199999953],[100.75622590000006,-0.139468699999952],[100.76329750000008,-0.145410899999945],[100.76822450000009,-0.161542199999928],[100.767939,-0.171725699999968],[100.76925380000006,-0.177198899999951],[100.76324640000007,-0.200031699999954],[100.763147,-0.212315],[100.76578550000005,-0.214530699999955],[100.77085760000006,-0.215067599999941],[100.77290450000004,-0.2173965],[100.77704230000006,-0.217978199999948],[100.78095820000004,-0.2240693],[100.79377330000005,-0.237415299999952],[100.80151550000005,-0.243147499999964],[100.805121,-0.2556434],[100.80449950000008,-0.265318199999967],[100.80601310000009,-0.271499],[100.822432,-0.283724199999938],[100.83195310000008,-0.285066299999926],[100.83747060000007,-0.289275599999939],[100.84112,-0.296889199999953],[100.83867470000007,-0.306519299999934],[100.84107830000005,-0.313058199999944],[100.84041330000008,-0.326092],[100.84455590000005,-0.339450499999941],[100.85869170000007,-0.332574399999942],[100.861598,-0.332574399999942],[100.86959050000007,-0.337781699999937],[100.875161,-0.339477],[100.88182150000006,-0.338750399999924],[100.88890570000007,-0.334875299999965],[100.90319530000005,-0.334875299999965],[100.90876590000005,-0.332332199999939],[100.91663730000005,-0.320101299999976],[100.92036680000007,-0.319073199999934],[100.92030560000006,-0.323609799999929],[100.92429650000008,-0.319620199999974],[100.93262360000006,-0.314791499999956],[100.94340010000008,-0.313077599999929],[100.94766110000006,-0.310830099999976],[100.969195,-0.314631499999962],[100.97900410000005,-0.312886399999968],[100.99436290000006,-0.319263599999942],[101.00064030000004,-0.320451799999944],[101.00583440000008,-0.323678],[101.01862250000005,-0.336126899999954],[101.02474090000004,-0.339525299999934],[101.04098290000007,-0.362731499999938],[101.04743350000007,-0.376978399999928],[101.061114,-0.378998499999966],[101.06776540000004,-0.37814],[101.07999320000005,-0.381079399999976],[101.09519960000006,-0.381980799999951],[101.10092160000005,-0.383078199999943],[101.11459950000005,-0.389152899999942],[101.11891060000005,-0.386527],[101.12522050000007,-0.363795899999957],[101.12573,-0.355565599999977],[101.14054440000007,-0.339379399999928],[101.14297430000005,-0.333618199999933],[101.14294020000006,-0.319079099999954],[101.13940790000004,-0.306066499999929],[101.14179860000007,-0.289488399999925],[101.14512990000009,-0.283884],[101.15042070000004,-0.279729699999962],[101.15265960000005,-0.274237899999946],[101.15946910000008,-0.270073799999977],[101.16647460000007,-0.260569799999928],[101.16637670000006,-0.256405699999959],[101.15844030000005,-0.2488123],[101.15657870000007,-0.241022899999962],[101.15799940000005,-0.236222],[101.16142870000004,-0.231323],[101.17049180000004,-0.237544699999944],[101.17690940000006,-0.234115399999951],[101.17744830000004,-0.230686099999957],[101.174166,-0.224954299999979],[101.17514580000005,-0.218732699999975],[101.188226,-0.199381799999969],[101.19973860000005,-0.188653],[101.20189410000006,-0.1831662],[101.20062040000005,-0.165480899999977],[101.20184510000007,-0.151812799999959],[101.20419660000005,-0.147060799999963],[101.19773,-0.135156399999971],[101.19650530000007,-0.127465],[101.19318130000005,-0.121400299999948],[101.19376840000007,-0.118424399999924],[101.20290010000008,-0.110374],[101.20220470000004,-0.101417399999946],[101.20414480000005,-0.097212],[101.213776,-0.089635899999962],[101.21918880000004,-0.087207199999966],[101.223018,-0.072781099999929],[101.23027390000004,-0.065547899999956],[101.23289950000009,-0.061007199999949],[101.23893120000008,-0.059672499999976],[101.242721,-0.046274599999947],[101.25092230000007,-0.045047],[101.25527230000006,-0.042243499999927],[101.25880470000004,-0.028631099999927],[101.25935860000004,-0.016859899999929],[101.26441510000006,-0.010346599999934],[101.272236,-0.004544199999941],[101.28044960000005,-0.005808099999967],[101.279939,-0.0091428],[101.28257050000008,-0.010635199999967],[101.28637590000005,-0.0162536],[101.28994540000008,-0.018165599999975],[101.29121290000006,-0.024831899999924],[101.29560530000003,-0.028475199999946],[101.29867920000004,-0.037335],[101.30776180000004,-0.042727599999978],[101.30340240000004,-0.051707199999953],[101.31154050000004,-0.055984599999931],[101.31125280000003,-0.064974899999925],[101.31355750000006,-0.067222299999969],[101.314062,-0.075705099999936],[101.32040040000004,-0.0920901],[101.33912570000007,-0.107894099999953],[101.34625520000009,-0.107386],[101.34855990000005,-0.109415899999931],[101.35929220000008,-0.134064899999942],[101.36476590000007,-0.139356899999939],[101.36817110000004,-0.148801899999967],[101.37237810000005,-0.147569499999975],[101.37229270000006,-0.139529499999981],[101.37685860000005,-0.129056399999968],[101.38415590000005,-0.126915],[101.39075270000006,-0.127899599999978],[101.39397050000008,-0.0992156],[101.40622140000005,-0.088172899999961],[101.40793890000003,-0.083440699999926],[101.40729690000006,-0.079962799999976],[101.40990160000007,-0.073862199999951],[101.41430020000007,-0.076275499999952],[101.41594290000006,-0.082908],[101.42230490000009,-0.0874307],[101.42400420000007,-0.092428799999936],[101.43268850000004,-0.104153899999972],[101.43601110000009,-0.106377099999975],[101.43786140000009,-0.111071],[101.45117110000007,-0.127318399999979],[101.460213,-0.125930299999936],[101.46721410000004,-0.129421299999933],[101.47007790000004,-0.128860599999939],[101.48302870000003,-0.110564099999976],[101.48307170000004,-0.107101799999953],[101.48051690000005,-0.103969799999959],[101.48308360000004,-0.1007128],[101.48940640000006,-0.102294499999971],[101.50230120000003,-0.113463699999954],[101.508077,-0.113362099999961],[101.51754380000006,-0.117957199999978],[101.524827,-0.1174274],[101.52276810000006,-0.117220799999927],[101.52129060000004,-0.107815199999948],[101.518118,-0.067666699999961],[101.51433360000004,-0.046563],[101.51474230000008,-0.037606699999969],[101.529065,-0.004114799999968],[101.53194730000007,0.014478900000029],[101.53187130000003,0.023115500000074],[101.534007,0.029600400000049],[101.53957340000005,0.036367100000064],[101.54969090000009,0.04165340000003],[101.55634250000008,0.043838300000061],[101.56183860000004,0.042146400000036],[101.56244620000007,0.046019900000033],[101.56859540000005,0.051908600000047],[101.57587910000007,0.091768200000047],[101.57090910000005,0.104350400000044],[101.572416,0.122923400000047],[101.57885960000004,0.144491500000072],[101.58012190000005,0.161478500000044],[101.59038210000006,0.184807800000044],[101.59209880000009,0.193794400000058],[101.58713810000006,0.204746600000021],[101.58643690000008,0.202211400000067],[101.57791160000005,0.201892300000054],[101.57406260000005,0.205390200000068],[101.57066850000007,0.213015800000051],[101.56518480000005,0.218406900000048],[101.56536,0.225199400000065],[101.57433240000006,0.253945100000067],[101.58051640000008,0.267966900000033],[101.68168340000005,0.270835],[101.68269340000006,0.275898100000063],[101.67955230000007,0.294812700000023],[101.65905860000004,0.318652200000031],[101.65875270000004,0.321843200000046],[101.67194820000009,0.343146900000022],[101.68146580000007,0.373509200000058],[101.687399,0.38308],[101.67727770000005,0.386274100000037],[101.66725680000008,0.383909800000026],[101.63893740000003,0.394109300000025],[101.614193,0.39463180000007],[101.59058210000006,0.423565300000064],[101.57414740000007,0.454135],[101.57108020000004,0.453374200000042],[101.56680460000007,0.447352700000067],[101.57011410000007,0.440360500000054],[101.56996460000005,0.436413500000072],[101.56707240000009,0.433981600000038],[101.56655350000005,0.430810400000041],[101.56810650000006,0.429202400000065],[101.56713420000005,0.425227600000028],[101.55695020000007,0.426773300000036],[101.55431930000003,0.431531300000074],[101.55171130000008,0.432693],[101.52901410000004,0.433999],[101.52746780000007,0.437894400000062],[101.52488790000007,0.436077700000055],[101.51586190000006,0.441014300000063],[101.51586240000006,0.442572300000052],[101.510188,0.442833900000039],[101.50543330000005,0.446065200000021],[101.49593150000004,0.44630490000003],[101.48560110000005,0.452859],[101.47697230000006,0.455950100000052],[101.47103880000009,0.447151500000075],[101.46749720000008,0.443764700000031],[101.46644780000008,0.444195700000023],[101.46526330000006,0.441847600000074],[101.463405,0.441667100000075],[101.46320340000005,0.440086300000075],[101.45609260000003,0.440786800000069],[101.45361630000008,0.442664800000045],[101.45107770000004,0.438665700000058],[101.450559,0.434544200000062],[101.44724940000003,0.432132300000035],[101.44866690000003,0.430479400000024],[101.44693290000004,0.422715400000072],[101.44529540000008,0.421482800000035],[101.44878180000006,0.419528300000025],[101.44744360000004,0.416975],[101.43956940000004,0.419861200000071],[101.43680960000006,0.422458300000073],[101.43753510000005,0.423903600000074],[101.43117740000008,0.427673900000059],[101.43079920000008,0.423661600000059],[101.43224840000005,0.421075300000041],[101.42872180000006,0.422677700000065],[101.42726890000006,0.422022200000072],[101.403748,0.432288800000038],[101.39803370000004,0.43278650000002],[101.391733,0.436455],[101.39071850000005,0.433213800000033],[101.389023,0.43278250000003],[101.38122020000009,0.434366900000043],[101.37044980000007,0.433974300000045],[101.37010690000005,0.435391100000061],[101.36286560000008,0.431954500000074],[101.35724170000003,0.471362500000055],[101.35390670000004,0.473240200000021],[101.35023070000005,0.479596300000026],[101.34968770000006,0.490554900000063],[101.35083240000006,0.494707700000049],[101.35606150000007,0.500629700000047],[101.35853330000003,0.501580200000035],[101.35940520000008,0.497647900000061],[101.36298540000007,0.498943900000029],[101.36294550000008,0.536071200000038],[101.36533270000007,0.536787900000036],[101.36777730000006,0.542152200000032],[101.37104740000007,0.544354500000054],[101.37065790000008,0.547294800000032],[101.37298870000006,0.549165500000072],[101.37479410000009,0.554186],[101.37232470000004,0.556563200000028],[101.37255990000006,0.563766700000031],[101.370191,0.565779100000043],[101.36833230000008,0.565545900000075],[101.36888740000006,0.559371200000044],[101.36464720000004,0.563298400000065],[101.36107830000009,0.563832200000036],[101.35883330000007,0.569289100000049],[101.35592520000006,0.569556500000033],[101.35579180000008,0.566495800000041],[101.35407330000004,0.566496500000028],[101.34944830000006,0.570623700000056],[101.34892070000006,0.573418500000059],[101.34508740000007,0.574085500000024],[101.34231350000005,0.579409700000042],[101.33729120000004,0.581674100000043],[101.33901060000005,0.583935600000075],[101.34125780000005,0.583668600000067],[101.340069,0.586064400000055],[101.335046,0.586865],[101.32870240000005,0.59072690000005],[101.33068740000004,0.595783],[101.32606180000005,0.598579600000051],[101.33214360000005,0.600706200000047],[101.33122010000005,0.604965100000072],[101.32804740000006,0.604966400000023],[101.32791570000006,0.606031100000052],[101.33352460000003,0.613325400000065],[101.34402210000007,0.620309600000041],[101.34670240000008,0.620796],[101.35864620000007,0.633020700000031],[101.37527360000007,0.644767900000033],[101.37738940000008,0.648791100000039],[101.37693530000007,0.653479400000037],[101.38017340000005,0.655380100000059],[101.38152590000004,0.658164],[101.38038080000007,0.661735200000066],[101.37819080000008,0.662582100000066],[101.37776030000003,0.66870670000003],[101.37818940000005,0.662598400000036],[101.32259960000005,0.695952200000022],[101.317609,0.694668900000067],[101.31432950000004,0.697235500000033],[101.31775160000007,0.702368700000022],[101.31119250000006,0.708642600000076],[101.31547020000005,0.711779600000057],[101.32345520000007,0.722473800000046],[101.33482870000006,0.797439900000029],[101.32263540000008,0.80323960000004],[101.32053910000008,0.802401],[101.32008490000004,0.800269800000024],[101.31805850000006,0.800269800000024],[101.31477440000003,0.806453800000043],[101.311071,0.805825],[101.30956860000003,0.802715500000033],[101.30565560000008,0.800759],[101.30027520000004,0.804602100000068],[101.30094510000004,0.808074800000043],[101.29865690000008,0.810470100000032],[101.27336540000005,0.828258500000061],[100.90687270000006,1.029913100000044],[100.77150050000006,0.865332900000055],[100.76384260000003,0.858181700000046],[100.75928360000006,0.85580310000006],[100.74499160000005,0.869792100000041]]]]},"properties":{"shapeName":"Kampar","shapeISO":"","shapeID":"22746128B46844001634887","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[114.25716380000006,-3.3818924],[114.26006310000002,-3.379643499999929],[114.25988790000008,-3.377663299999938],[114.25675390000004,-3.378754299999969],[114.25585200000012,-3.381362599999932],[114.25716380000006,-3.3818924]]],[[[114.7920160000001,-2.624420399999963],[114.75931390000005,-2.598518],[114.73237720000009,-2.582690299999967],[114.71368160000009,-2.572245899999928],[114.6979837,-2.571877899999947],[114.70139050000012,-2.568147099999976],[114.70647190000011,-2.5541576],[114.71939490000011,-2.534459399999946],[114.72259430000008,-2.5261786],[114.73608190000004,-2.517396],[114.7429826,-2.499579799999935],[114.7518907000001,-2.497321399999976],[114.7557174000001,-2.4944357],[114.757223,-2.490734399999951],[114.75647020000008,-2.486907699999961],[114.74825210000006,-2.481763599999965],[114.74116330000004,-2.486845],[114.73821480000004,-2.486531299999967],[114.736772,-2.4751139],[114.73776310000005,-2.470684199999937],[114.72238690000006,-2.4644336],[114.70270990000006,-2.479844299999968],[114.65450840000005,-2.560123499999975],[114.6175687000001,-2.544027899999946],[114.60164450000002,-2.558568099999945],[114.5988407000001,-2.56268],[114.5541204000001,-2.546348299999977],[114.68181120000008,-2.2332411],[114.71567330000005,-2.144422899999938],[114.71812940000007,-2.115003299999955],[114.71736610000005,-2.097574799999961],[114.7057301000001,-2.039802399999928],[114.67934950000006,-2.0035778],[114.639602,-1.975330399999962],[114.62086010000007,-1.949686199999974],[114.61649340000008,-1.915159],[114.61792020000007,-1.892323799999929],[114.6359457000001,-1.812565599999971],[114.63733190000005,-1.788360399999931],[114.6215648000001,-1.743840299999931],[114.60108080000009,-1.705774299999973],[114.59932340000012,-1.678298199999972],[114.614621,-1.643921099999943],[114.63397050000003,-1.619427],[114.65375350000011,-1.576872399999957],[114.67456250000009,-1.521452],[114.66539940000007,-1.441862499999957],[114.66208560000007,-1.425586499999952],[114.66328020000003,-1.411657099999957],[114.67035990000011,-1.391745699999944],[114.66780890000007,-1.316926399999943],[114.68509260000008,-1.296626499999945],[114.6839245000001,-1.276330299999927],[114.7005511000001,-1.252468199999953],[114.70117990000006,-1.210087299999941],[114.71187830000008,-1.181443699999932],[114.71070510000004,-1.165325799999948],[114.7002030000001,-1.156307099999935],[114.694026,-1.147515],[114.67859280000005,-1.138761],[114.65929530000005,-1.135831699999926],[114.62745130000008,-1.135806],[114.57340910000005,-1.142560199999934],[114.54060620000007,-1.137676599999963],[114.4991381000001,-1.111419499999954],[114.4802863000001,-1.086275099999966],[114.45696090000001,-1.034806399999979],[114.45902350000006,-0.989001799999926],[114.46556120000002,-0.980316899999934],[114.50163080000004,-0.916404099999966],[114.53959880000002,-0.886029699999938],[114.56938450000007,-0.857618699999932],[114.50818730000003,-0.848066699999947],[114.459085,-0.833620799999949],[114.424383,-0.832582599999967],[114.40594320000002,-0.833144699999934],[114.385336,-0.836711399999956],[114.34330810000006,-0.845483699999932],[114.27041080000004,-0.864883599999928],[114.24640570000008,-0.866630499999928],[114.22829880000006,-0.859166],[114.20026410000003,-0.827542499999936],[114.18392340000003,-0.811590799999976],[114.15647720000004,-0.7989199],[114.13395820000005,-0.782662899999934],[114.12379650000003,-0.7584183],[114.1193379,-0.729063399999973],[114.107582,-0.688863199999957],[114.08027690000006,-0.618993299999943],[114.07519960000002,-0.609741699999972],[114.06916330000001,-0.586129899999946],[114.06089150000003,-0.540924399999938],[114.05211950000012,-0.522065],[114.0289570000001,-0.483948699999928],[114.01209630000005,-0.416172899999935],[113.99146320000011,-0.381017499999928],[113.97336540000003,-0.375092499999937],[113.9429464000001,-0.386101399999973],[113.9275755000001,-0.405458199999941],[113.9288772000001,-0.458351499999935],[113.92055060000007,-0.4660956],[113.9070944,-0.465456099999926],[113.90196960000003,-0.468683599999963],[113.8949199000001,-0.465461199999936],[113.89427810000007,-0.4628812],[113.889157,-0.463456399999927],[113.88466470000003,-0.458369599999969],[113.8263505000001,-0.4525871],[113.81609580000008,-0.448075299999971],[113.79622490000008,-0.433245199999931],[113.77571750000004,-0.430672299999969],[113.7718751000001,-0.437770199999932],[113.77764960000002,-0.456476799999962],[113.77573340000004,-0.472605899999962],[113.76099850000003,-0.483579199999951],[113.75589860000002,-0.5461603],[113.73721550000005,-0.6013066],[113.70171950000008,-0.640270399999963],[113.6709800000001,-0.679233599999975],[113.65854170000011,-0.709806899999933],[113.6595764000001,-0.709870499999965],[113.6503785000001,-0.737964299999931],[113.66094,-0.755431499999929],[113.67898990000003,-0.773578799999939],[113.72280480000006,-0.887976699999967],[113.763117,-0.937743699999942],[113.85055330000012,-0.977458099999978],[113.93440470000007,-1.003032099999928],[113.97280890000002,-1.044806299999948],[113.97737590000008,-1.0641689],[113.97459880000008,-1.088601499999925],[113.96898390000001,-1.111838099999943],[113.99732160000008,-1.229907],[113.99484920000009,-1.2829106],[113.99710120000009,-1.3624838],[114.00826060000009,-1.474959799999965],[113.99369970000009,-1.508052699999951],[113.969332,-1.5415815],[113.98341890000006,-1.556303899999932],[113.991783,-1.579371799999933],[113.99042780000002,-1.6209268],[113.98393820000001,-1.649557099999925],[113.97131180000008,-1.672567399999934],[113.98135920000004,-1.694484799999941],[113.98339220000003,-1.750398699999948],[113.98918450000008,-1.797205899999938],[113.99850320000007,-1.832658899999956],[114.01589120000006,-1.8694499],[114.0208785000001,-1.903255799999954],[114.03256580000004,-1.924275],[114.07266960000004,-1.965679799999975],[114.0985343000001,-1.979031499999962],[114.11664570000005,-2.000160499999936],[114.133451,-2.040400799999929],[114.13683890000004,-2.065263],[114.12983650000001,-2.101267599999971],[114.1257667000001,-2.157026499999972],[114.13381170000002,-2.218770799999959],[114.16134620000003,-2.247634],[114.21564870000009,-2.268228299999976],[114.2519804000001,-2.293941],[114.2759655000001,-2.331598399999962],[114.29607110000006,-2.432366099999967],[114.3178435000001,-2.523576899999966],[114.3313108000001,-2.637249899999972],[114.33494760000008,-2.718499799999961],[114.34899890000008,-2.734952399999941],[114.3480621000001,-2.7458687],[114.3303029000001,-2.762281899999948],[114.3010508000001,-2.7812467],[114.28719400000011,-2.792574499999944],[114.2836946000001,-2.814943599999935],[114.29107980000003,-2.820498399999963],[114.29309030000002,-2.825843299999974],[114.29145010000002,-2.833873799999935],[114.281628,-2.848947799999962],[114.2652369000001,-2.911236599999938],[114.22324760000004,-2.953122],[114.28368110000008,-3.043305799999928],[114.2266211000001,-3.194123199999979],[114.2038040000001,-3.187502799999947],[114.19180370000004,-3.215668699999981],[114.17554310000003,-3.273402399999952],[114.1323076000001,-3.381609899999944],[114.15353420000008,-3.384679699999936],[114.16604890000008,-3.3882668],[114.17519120000009,-3.393242499999928],[114.18319380000003,-3.393385499999965],[114.21670680000011,-3.377976199999978],[114.24094430000002,-3.369866199999933],[114.24501540000006,-3.365517599999976],[114.24957680000011,-3.3663911],[114.26259180000011,-3.375871],[114.25994230000003,-3.380650199999934],[114.25592480000012,-3.382867099999942],[114.25347770000008,-3.383376599999963],[114.247509,-3.388152499999933],[114.24685850000003,-3.391782699999965],[114.24857350000002,-3.396134299999972],[114.25462740000012,-3.403391799999952],[114.27914460000011,-3.419113799999934],[114.29526120000003,-3.436590099999933],[114.29516930000011,-3.437980699999969],[114.29858450000006,-3.439382699999953],[114.29880770000011,-3.441229199999952],[114.30147130000012,-3.441667199999927],[114.30339520000007,-3.4445611],[114.30898780000007,-3.446733699999925],[114.32178220000003,-3.455647499999941],[114.32787510000003,-3.456826799999931],[114.33432760000005,-3.456197],[114.33711970000002,-3.457563099999959],[114.341671,-3.455575899999928],[114.34143370000004,-3.458731499999942],[114.34713850000003,-3.46089],[114.35010250000005,-3.457116199999973],[114.3543403000001,-3.4417],[114.35094150000009,-3.4402952],[114.3476343000001,-3.435997799999939],[114.3466016000001,-3.430341],[114.34814440000002,-3.4248027],[114.34689340000011,-3.419424],[114.34815430000003,-3.416899499999943],[114.35452270000008,-3.4134523],[114.36274650000007,-3.386775099999966],[114.35150260000012,-3.368082699999945],[114.3625588000001,-3.359101599999974],[114.3492695000001,-3.348347399999966],[114.36217450000004,-3.329721],[114.35776140000007,-3.321643699999925],[114.375218,-3.287349099999972],[114.376223,-3.2884839],[114.41048670000009,-3.262924699999928],[114.41210330000001,-3.263116399999944],[114.43113440000002,-3.247900199999947],[114.43596130000003,-3.242483599999957],[114.449366,-3.209654899999975],[114.43378410000003,-3.186586199999965],[114.42688750000002,-3.190773699999966],[114.42345530000011,-3.179883],[114.44394310000007,-3.164293399999963],[114.45828140000003,-3.143304299999954],[114.47414640000011,-3.129434199999935],[114.48026770000001,-3.126279099999977],[114.50363190000007,-3.104187099999933],[114.5260512000001,-3.086583899999937],[114.51839490000009,-3.077651099999969],[114.524099,-3.072209099999952],[114.533344,-3.081012399999963],[114.54594880000002,-3.067735699999957],[114.53974090000008,-3.061999799999967],[114.52800050000008,-3.044675099999949],[114.5327883000001,-3.034573599999931],[114.52644980000002,-3.028172299999937],[114.530961,-3.023259399999972],[114.51907910000011,-3.010059499999954],[114.50671370000009,-2.999378899999954],[114.52964940000004,-2.970293],[114.54626840000003,-2.951663],[114.54458080000006,-2.950146699999948],[114.5496379000001,-2.943287599999962],[114.5164797000001,-2.921278399999949],[114.51785470000004,-2.918844599999943],[114.53822080000009,-2.927122699999927],[114.5456421,-2.907929599999932],[114.5672760000001,-2.864029799999969],[114.5923140000001,-2.881108199999971],[114.599098,-2.890908299999978],[114.61545090000004,-2.884554],[114.60772480000003,-2.857082799999944],[114.60339060000001,-2.848083599999939],[114.602179,-2.836967199999947],[114.59691410000005,-2.815767],[114.61747590000004,-2.810720699999933],[114.62705720000008,-2.806913699999939],[114.6568559000001,-2.803326799999979],[114.6647114000001,-2.800233299999945],[114.67884120000008,-2.781605899999931],[114.67969360000006,-2.771382899999935],[114.6721645,-2.759708299999943],[114.6708698000001,-2.752769699999931],[114.6744417000001,-2.743899899999974],[114.68106060000002,-2.737543],[114.685844,-2.735656499999948],[114.69301810000002,-2.735402499999964],[114.70707120000009,-2.739964399999963],[114.71770760000004,-2.740214499999979],[114.73513760000003,-2.733502699999974],[114.75000000000011,-2.724703299999931],[114.75944720000007,-2.722137799999928],[114.76261840000006,-2.719865599999935],[114.76585910000006,-2.708786299999929],[114.77145360000009,-2.6974],[114.7846042000001,-2.685560299999963],[114.78954370000008,-2.676601199999936],[114.79392060000009,-2.653099199999929],[114.7920160000001,-2.624420399999963]]]]},"properties":{"shapeName":"Kapuas","shapeISO":"","shapeID":"22746128B72570694432935","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[114.20538780000004,1.410366700000054],[114.20216370000003,1.417070100000046],[114.2021357000001,1.421108700000048],[114.19470580000007,1.422806100000059],[114.19181620000006,1.425580400000058],[114.1910808,1.428743800000063],[114.18398980000006,1.430192600000055],[114.17785230000004,1.436397200000044],[114.17555560000005,1.436387700000068],[114.16514250000012,1.442629],[114.15868620000003,1.442048700000043],[114.15618990000007,1.451496500000076],[114.15170130000001,1.453373900000031],[114.14802930000008,1.462815100000057],[114.14076970000008,1.466506],[114.1377893,1.465361900000062],[114.1356201000001,1.466121900000076],[114.1332546000001,1.463496500000076],[114.12030430000004,1.463361900000052],[114.11854310000001,1.459262800000033],[114.1142784000001,1.456244900000058],[114.10783530000003,1.455829700000038],[114.10449470000003,1.456425200000069],[114.1021161000001,1.463274500000068],[114.09590220000007,1.466842],[114.0847559,1.462940700000047],[114.07786460000011,1.465908],[114.06369080000002,1.459595800000045],[114.06071540000005,1.459894600000041],[114.05790800000011,1.457531500000073],[114.05166520000012,1.458167],[114.04679190000002,1.452547800000048],[114.03652770000008,1.452927300000056],[114.03152470000009,1.451106100000061],[114.02635710000004,1.453538900000069],[114.01534740000011,1.449120700000037],[114.00896790000002,1.450835300000051],[113.99611820000007,1.443998100000044],[113.98278990000006,1.449058300000047],[113.97469430000001,1.449753300000054],[113.97014630000001,1.447033800000042],[113.96740050000005,1.442095600000073],[113.9625486000001,1.443999900000051],[113.95498910000003,1.442845],[113.95024660000001,1.44014240000007],[113.943906,1.433481],[113.93766790000006,1.418807100000038],[113.93617720000009,1.417289700000026],[113.9302044000001,1.416427],[113.92611380000005,1.412261500000056],[113.91712380000001,1.41093660000007],[113.91286350000007,1.414953],[113.9101184000001,1.414498600000059],[113.90907740000011,1.411194100000046],[113.90344670000002,1.406103100000053],[113.88407530000006,1.400383100000056],[113.87942840000005,1.396374800000046],[113.876239,1.389946100000031],[113.86750180000001,1.387383500000055],[113.8491345000001,1.388927100000046],[113.8489545000001,1.383498300000042],[113.84494170000005,1.380785500000059],[113.83575790000009,1.380420400000048],[113.82636850000006,1.374242200000026],[113.82163330000003,1.373557300000073],[113.821272,1.37065],[113.81469640000012,1.366267],[113.82284750000008,1.359510300000068],[113.8240618000001,1.356778],[113.82982660000005,1.355691400000069],[113.83045340000001,1.350724800000023],[113.828512,1.34245640000006],[113.83044810000001,1.337367900000061],[113.82945350000011,1.334397600000045],[113.82477070000004,1.330791500000032],[113.82532980000008,1.327064200000052],[113.82351060000008,1.323931900000048],[113.8183676000001,1.322021200000052],[113.81552020000004,1.313347800000031],[113.80442460000006,1.30768850000004],[113.80369940000003,1.300375100000053],[113.78555960000006,1.296595],[113.77575610000008,1.289480300000037],[113.7741410000001,1.289886400000057],[113.76167260000011,1.284736],[113.76188560000003,1.282599800000071],[113.75561450000009,1.276702700000044],[113.74891150000008,1.277996500000029],[113.74055220000002,1.274450100000024],[113.73732460000008,1.27506980000004],[113.73509460000002,1.270497400000068],[113.72565640000005,1.271522100000027],[113.72467820000008,1.270051400000057],[113.720179,1.269601700000067],[113.71479330000011,1.264219600000047],[113.7104647000001,1.266100100000074],[113.70327070000008,1.265455700000075],[113.70102730000008,1.259211100000073],[113.69255280000004,1.248513100000025],[113.68985280000004,1.242439300000058],[113.67760020000003,1.233965800000021],[113.67007120000005,1.233932300000049],[113.6667155,1.229997300000036],[113.66460020000011,1.224340200000029],[113.66749620000007,1.220009900000036],[113.66673290000006,1.218422300000043],[113.66106310000009,1.217777600000034],[113.65733450000005,1.222754],[113.65046450000011,1.224057500000072],[113.6444289000001,1.22364790000006],[113.632103,1.219121],[113.62697390000005,1.22140580000007],[113.62401960000011,1.228418600000055],[113.61885310000002,1.22995190000006],[113.62067730000001,1.23461020000002],[113.628103,1.241494300000056],[113.62578040000005,1.25240610000003],[113.61968840000009,1.254477300000076],[113.61710060000007,1.25387070000005],[113.6114586000001,1.257828800000027],[113.59725880000008,1.262793300000055],[113.5956427000001,1.278625800000043],[113.5917730000001,1.281529700000021],[113.59261210000011,1.288283100000058],[113.5845581000001,1.293563100000028],[113.58322140000007,1.308125700000062],[113.57952080000007,1.30902130000004],[113.57466250000004,1.306325400000048],[113.5676793,1.310322900000074],[113.5632951,1.308420500000068],[113.56001520000007,1.309115500000075],[113.55814550000002,1.312933900000075],[113.54928340000004,1.320248700000036],[113.53696140000011,1.322578300000032],[113.52748730000008,1.320502],[113.5148206,1.314286600000059],[113.50997070000005,1.315545400000076],[113.50898280000001,1.317098900000076],[113.50322520000009,1.316186600000037],[113.49984290000009,1.318089200000031],[113.48779130000003,1.307651800000031],[113.48331330000008,1.308829500000058],[113.47898140000007,1.30500470000004],[113.47343870000009,1.305722200000048],[113.465975,1.303951500000039],[113.46464120000007,1.300725700000044],[113.45668670000009,1.29351070000007],[113.45374840000011,1.287503600000036],[113.45431470000005,1.286290600000029],[113.44579250000004,1.285468200000025],[113.44100230000004,1.283517900000049],[113.42758150000009,1.286118200000033],[113.42131870000003,1.285371400000031],[113.420045,1.290793500000063],[113.4113612000001,1.298713900000052],[113.40965230000006,1.302575300000058],[113.41010560000007,1.304947900000059],[113.4039428000001,1.309771500000068],[113.39846160000002,1.318002800000045],[113.38112970000009,1.319588100000033],[113.3767348,1.322909300000049],[113.3697654,1.323642],[113.36784590000002,1.326919900000064],[113.36968600000012,1.333641900000032],[113.365779,1.337655900000073],[113.36527,1.346043],[113.36167770000009,1.348746200000051],[113.35693640000011,1.35781],[113.35144380000008,1.357279800000072],[113.34700210000005,1.358930600000065],[113.34348960000011,1.36298110000007],[113.33514230000003,1.364359300000046],[113.33002660000011,1.368639900000062],[113.32799190000003,1.375327500000026],[113.3162843,1.375041700000054],[113.31298130000005,1.372085300000037],[113.30671240000004,1.37078230000003],[113.30265270000007,1.374311300000045],[113.28563990000009,1.381297500000073],[113.28224560000001,1.381357300000047],[113.28018760000009,1.379260700000032],[113.2748213000001,1.380279],[113.26783280000006,1.387691600000039],[113.26461990000007,1.386532],[113.26075650000007,1.387955800000043],[113.25784050000004,1.382718400000044],[113.24996650000003,1.382126500000027],[113.24493380000001,1.385969600000067],[113.24107190000007,1.392587400000025],[113.23235740000007,1.39435590000005],[113.22705030000009,1.392004200000031],[113.22476430000006,1.389263],[113.22258980000004,1.389528800000051],[113.22195620000002,1.38320520000002],[113.21958630000006,1.38141360000003],[113.21191340000007,1.382410800000059],[113.2005299000001,1.378771200000074],[113.19681670000011,1.38138820000006],[113.19439950000003,1.379513400000064],[113.19103890000008,1.37944],[113.18876530000011,1.376708300000075],[113.1810382000001,1.378036900000041],[113.17526790000011,1.38310430000007],[113.172245,1.38375910000002],[113.17099260000009,1.386542200000065],[113.15980330000002,1.391882400000043],[113.15529580000009,1.390965600000072],[113.15222840000001,1.392132200000049],[113.144163,1.387614700000029],[113.1415426000001,1.394965900000045],[113.13712770000006,1.397420500000067],[113.1333704000001,1.401659100000074],[113.13239440000007,1.405678200000068],[113.13319130000002,1.412614900000051],[113.13154510000004,1.414425600000072],[113.12576420000005,1.414829],[113.12222330000009,1.420994700000051],[113.12368120000008,1.428698],[113.12080720000006,1.432679600000029],[113.11067910000008,1.43599480000006],[113.10554090000005,1.445829300000071],[113.09621960000004,1.442428800000073],[113.09521660000007,1.440097600000058],[113.09129550000011,1.437508100000059],[113.09271610000008,1.434993],[113.08995560000005,1.433872600000029],[113.08818470000006,1.428789],[113.08423080000011,1.428133600000024],[113.07424350000008,1.431421100000023],[113.06352120000008,1.423090900000034],[113.05724480000003,1.421083800000019],[113.04366850000008,1.42406260000007],[113.03759510000009,1.415371300000061],[113.02701390000004,1.411288100000036],[113.02421760000004,1.407608900000071],[113.02079220000007,1.407332500000052],[113.01851170000009,1.405449600000054],[113.01208140000006,1.405919400000073],[113.00623,1.408974200000046],[112.99372770000002,1.408398200000022],[112.99088610000001,1.40956140000003],[112.9856443000001,1.407859100000053],[112.97513320000007,1.410549200000048],[112.97427630000004,1.411194400000056],[112.97671880000007,1.415593600000022],[112.97814810000011,1.423915200000067],[112.97519750000004,1.437185900000031],[112.98130810000009,1.440555600000039],[112.98330170000008,1.445850700000051],[112.98255460000007,1.450038500000062],[112.9863808,1.452567200000033],[113.00717760000009,1.458186900000044],[113.0140517000001,1.463664600000072],[113.02423770000007,1.466343800000061],[113.0283574,1.471142900000075],[113.03488630000004,1.469976],[113.040502,1.473893500000031],[113.04123830000003,1.476172500000075],[113.03914330000009,1.482469900000069],[113.03160720000005,1.492756400000076],[113.03417460000003,1.494774300000074],[113.03944950000005,1.495953400000076],[113.04039580000006,1.498185700000022],[113.046893,1.498098700000071],[113.04979090000006,1.499593900000036],[113.05012090000002,1.500650200000052],[113.04667860000006,1.502767],[113.04682720000005,1.510975],[113.04485360000001,1.514666100000056],[113.0520924000001,1.519364100000075],[113.05525870000008,1.52645270000005],[113.0594029,1.525954200000058],[113.06109660000004,1.529678600000068],[113.06474060000005,1.530820100000028],[113.06689420000009,1.529338800000062],[113.070667,1.529484300000036],[113.0682379000001,1.540503800000067],[113.0641587,1.542608200000075],[113.061568,1.547272300000031],[113.06389,1.552588800000024],[113.058679,1.55858070000005],[113.05299030000003,1.556902500000035],[113.0462040000001,1.561469100000068],[113.04129650000004,1.561568],[113.0342710000001,1.566431800000032],[113.02996360000009,1.565365800000052],[113.02670850000004,1.568231500000024],[113.02159330000006,1.567479400000025],[113.01845590000005,1.56955430000005],[113.01153270000009,1.570537800000068],[113.0052935000001,1.569117100000028],[113.00012830000003,1.573346800000024],[112.99927150000008,1.578206300000033],[112.98959800000011,1.578998],[112.98451140000009,1.564209],[112.97463630000004,1.562998],[112.96655440000006,1.568371600000035],[112.96430690000011,1.567155],[112.95784050000009,1.569818800000064],[112.95684680000011,1.574250100000029],[112.951853,1.574039300000038],[112.94876720000002,1.567804800000033],[112.94254440000009,1.570188500000029],[112.94246020000003,1.566941],[112.93337280000003,1.567361],[112.92357020000009,1.570894900000042],[112.919948,1.575496300000054],[112.9208106000001,1.577752300000043],[112.915508,1.583001900000056],[112.9042889000001,1.584034],[112.8946274000001,1.588395200000036],[112.89070540000012,1.584919300000024],[112.88449010000011,1.586636200000044],[112.88034790000006,1.584851900000046],[112.87747180000008,1.58141390000003],[112.87517460000004,1.574121600000069],[112.87176280000006,1.570243300000072],[112.86654180000005,1.567601300000035],[112.86626650000005,1.561352],[112.86054170000011,1.558947200000034],[112.8582278,1.559976900000038],[112.8562697000001,1.55843150000004],[112.85433940000007,1.559280600000022],[112.85412780000001,1.557605700000067],[112.85036960000002,1.554944800000044],[112.85124840000003,1.550474800000075],[112.84729060000006,1.549023100000056],[112.845843,1.545131100000049],[112.8462287000001,1.539928100000054],[112.84084740000003,1.538164700000038],[112.8376373000001,1.53997320000002],[112.835897,1.544038200000045],[112.82923210000001,1.547447600000055],[112.8255153,1.544914],[112.8231042000001,1.540323200000046],[112.81759580000005,1.541163400000073],[112.81251970000005,1.540020700000071],[112.8104,1.543415300000049],[112.79932760000008,1.547559500000034],[112.79678720000004,1.554737400000022],[112.79465020000009,1.556209500000023],[112.78044980000004,1.55957230000007],[112.77793630000008,1.56296930000002],[112.774577,1.563756500000068],[112.7684981000001,1.562948400000039],[112.76666440000008,1.564663300000063],[112.76312210000003,1.561898600000063],[112.7495583000001,1.557642],[112.745708,1.561337300000048],[112.73484330000008,1.567472800000075],[112.72717740000007,1.56795980000004],[112.7243913000001,1.563761800000066],[112.70560210000008,1.560847600000045],[112.69408520000002,1.554013500000053],[112.688644,1.555417],[112.68544520000012,1.554349],[112.68261860000007,1.556428900000071],[112.67690990000006,1.554560200000026],[112.67344790000004,1.55767110000005],[112.66799390000006,1.559335400000066],[112.6622824000001,1.569363800000076],[112.65773500000012,1.571379800000045],[112.6520954,1.569112200000063],[112.64894330000004,1.570396],[112.6454185,1.567325700000026],[112.64051530000006,1.565767300000061],[112.6325438,1.565585200000044],[112.60864030000005,1.57240790000003],[112.60513320000007,1.571698],[112.60139370000002,1.573690300000067],[112.59754420000002,1.572320200000036],[112.58478890000004,1.573184400000059],[112.577391,1.572108100000037],[112.5686836000001,1.574431100000027],[112.56027080000001,1.572322400000076],[112.55774860000008,1.575488],[112.54808620000006,1.574112],[112.54585570000006,1.575194100000033],[112.54379620000009,1.57392260000006],[112.54027,1.576030200000048],[112.5337508,1.575947500000041],[112.5274564,1.577871300000027],[112.52503590000003,1.580380600000069],[112.5152905000001,1.575965600000075],[112.50753510000004,1.577572],[112.5040378000001,1.581772300000068],[112.5040404,1.583862500000066],[112.5010271000001,1.583720300000039],[112.49241240000003,1.578644800000063],[112.48598540000012,1.579649800000027],[112.4815532,1.571415400000035],[112.47596140000007,1.572651800000074],[112.47330230000011,1.567792700000041],[112.47091100000011,1.568656800000042],[112.46964670000011,1.567681400000026],[112.46463480000011,1.559768],[112.4553479000001,1.55940060000006],[112.4463601000001,1.553170800000032],[112.44331050000005,1.549211600000035],[112.44226920000006,1.544740300000058],[112.4443559,1.537840300000028],[112.43397240000002,1.527158],[112.4259846000001,1.529976900000065],[112.423969,1.527500900000064],[112.41540240000006,1.52596],[112.40353280000011,1.519955300000049],[112.40083450000009,1.523598700000036],[112.39358520000008,1.522656300000051],[112.39107050000007,1.517612800000052],[112.38915820000011,1.517754100000047],[112.38631,1.513667],[112.37423680000006,1.516603500000031],[112.37332440000012,1.514536700000065],[112.36882580000008,1.513292600000057],[112.36408140000003,1.508306100000027],[112.3602227,1.506091500000025],[112.35464460000003,1.506384300000036],[112.35204270000008,1.503736400000037],[112.34521720000009,1.507935300000042],[112.33961650000003,1.505355200000054],[112.329279,1.508389200000067],[112.31928,1.507596],[112.31934020000006,1.501962800000058],[112.31368290000012,1.497609900000043],[112.31223190000003,1.49474790000005],[112.30665570000008,1.493545800000049],[112.30299220000006,1.486791500000038],[112.29792040000007,1.486572700000067],[112.29364510000005,1.484071200000074],[112.288566,1.474018700000045],[112.28213760000006,1.472035800000072],[112.278172,1.468160800000021],[112.26837280000007,1.468612],[112.25969470000007,1.460194600000023],[112.25391520000005,1.459913300000039],[112.25207320000004,1.45791040000006],[112.24512790000006,1.45962940000004],[112.23997640000005,1.456146400000023],[112.23552140000004,1.458852900000068],[112.230692,1.45813540000006],[112.2270261000001,1.456580300000041],[112.22312080000006,1.45151130000005],[112.22013230000005,1.452499300000056],[112.21223020000002,1.44950620000003],[112.2096835000001,1.441796200000056],[112.20634790000008,1.43959940000002],[112.20408530000009,1.435407200000043],[112.20446660000005,1.42927160000005],[112.20609950000005,1.427081700000031],[112.20492260000003,1.422134300000039],[112.206498,1.41990450000003],[112.19999240000004,1.411915100000044],[112.20000260000006,1.407361500000036],[112.20140190000006,1.404580600000031],[112.20457980000003,1.402761800000064],[112.2097341000001,1.402945100000068],[112.21180580000009,1.40590880000002],[112.22382090000008,1.39225],[112.2284922,1.395261400000038],[112.22894130000009,1.398083100000065],[112.23231810000004,1.398185],[112.23348020000003,1.392609100000072],[112.231239,1.387542800000062],[112.23232130000008,1.379186200000049],[112.22862040000007,1.370776300000045],[112.22361990000002,1.366711800000076],[112.22351540000011,1.361404700000037],[112.225677,1.35900010000006],[112.22410800000011,1.351417400000059],[112.2190548000001,1.348060400000065],[112.2131667000001,1.346444700000063],[112.21800790000009,1.336665100000062],[112.20667710000009,1.323130900000024],[112.20239290000006,1.314177700000073],[112.194155,1.312358900000049],[112.186268,1.306971100000055],[112.18117360000008,1.306230300000038],[112.17874560000007,1.304416],[112.17706410000005,1.29296110000007],[112.17826590000004,1.285714100000064],[112.17609530000004,1.28313490000005],[112.1707004000001,1.281710300000043],[112.16974830000004,1.276617100000067],[112.1705803000001,1.269568100000072],[112.16916890000005,1.265618700000061],[112.17388010000002,1.252932900000076],[112.16839520000008,1.24817580000007],[112.1682813000001,1.244708500000058],[112.16120830000011,1.244708],[112.15763350000009,1.242207400000041],[112.15941970000006,1.238847300000032],[112.15863500000012,1.236067800000058],[112.1602931000001,1.230544900000041],[112.15784320000012,1.228309600000046],[112.16163010000002,1.223685700000033],[112.163379,1.216710100000057],[112.1622397000001,1.213799200000039],[112.16473970000004,1.20986970000007],[112.15777220000007,1.207197500000063],[112.1569267000001,1.204126],[112.15869870000006,1.197419500000024],[112.15194570000006,1.19160480000005],[112.14894550000008,1.185375500000021],[112.13962020000008,1.179621300000065],[112.13625510000008,1.18014590000007],[112.13530880000008,1.178020500000059],[112.13503580000008,1.176489300000071],[112.13980160000006,1.173866700000076],[112.14169070000003,1.167236600000024],[112.14560080000001,1.166089200000044],[112.14762080000003,1.162692400000026],[112.14182730000005,1.152098500000022],[112.1440467000001,1.146951700000045],[112.14295090000007,1.135026400000072],[112.13929420000011,1.137805700000058],[112.1356191000001,1.138320400000055],[112.13203040000008,1.135357900000031],[112.13122720000001,1.136579200000028],[112.12983020000001,1.136048100000039],[112.12911270000006,1.133590600000048],[112.12567290000004,1.134166400000026],[112.11959980000006,1.132398700000067],[112.10949330000005,1.134080100000062],[112.1003151000001,1.132649100000037],[112.09451080000008,1.134634600000027],[112.09133230000009,1.133649700000035],[112.08997670000008,1.13540560000007],[112.0867588000001,1.133305600000028],[112.08201130000009,1.132958400000064],[112.07972440000003,1.13523710000004],[112.07263980000005,1.133699500000034],[112.06072490000008,1.134636200000045],[112.05586190000008,1.137203200000044],[112.05298060000007,1.134225100000037],[112.04886170000009,1.133895500000051],[112.0451786000001,1.13138680000003],[112.03741620000005,1.133628600000065],[112.0274912000001,1.133624200000042],[112.02366830000005,1.131375500000047],[112.01502190000008,1.130809300000067],[112.01276110000003,1.132856900000036],[112.0104156000001,1.132670200000064],[112.00912630000005,1.135015400000043],[112.0036712000001,1.135686700000065],[111.99733640000005,1.139573700000028],[111.99561480000006,1.137475300000062],[111.99458530000004,1.130145500000026],[111.99131660000006,1.131794300000024],[111.98695350000008,1.127583600000037],[111.98455270000005,1.128704],[111.98207410000003,1.126999700000056],[111.97730420000005,1.12864380000002],[111.97125970000008,1.125950100000068],[111.96507350000007,1.126799800000072],[111.96283240000008,1.125735200000065],[111.95481650000005,1.128318400000069],[111.948825,1.119762],[111.93533810000008,1.122149700000023],[111.93323340000006,1.111376500000063],[111.93478680000004,1.109217500000057],[111.933695,1.10525610000002],[111.92831420000005,1.098406300000022],[111.928883,1.095557100000065],[111.92744490000007,1.092979800000023],[111.92895020000009,1.090952400000049],[111.923384,1.092682900000057],[111.92335290000005,1.091259700000023],[111.92123720000006,1.091649700000062],[111.91990480000004,1.089876200000049],[111.91897220000004,1.091566400000033],[111.91307450000005,1.090976100000034],[111.91350410000007,1.087848],[111.90791620000005,1.085588800000039],[111.91118270000004,1.083000100000049],[111.91078640000006,1.080584700000031],[111.90880220000008,1.07813150000004],[111.90585670000007,1.078412100000037],[111.90493820000006,1.075946400000021],[111.902198,1.074571],[111.89432150000005,1.075732600000038],[111.892639,1.073157300000048],[111.89071980000006,1.076379600000053],[111.88692,1.078673],[111.88099130000006,1.065514],[111.88598110000004,1.061253500000021],[111.88214520000008,1.059718900000064],[111.88188410000004,1.054945900000064],[111.87751890000004,1.053835400000025],[111.87695530000008,1.051785300000063],[111.878845,1.050340400000039],[111.87323660000004,1.049912400000039],[111.87097130000006,1.045122700000036],[111.87193480000008,1.042894600000068],[111.87398810000008,1.042154400000072],[111.87272660000008,1.039665400000047],[111.87589310000004,1.037896600000067],[111.87646750000005,1.031919500000072],[111.87758740000004,1.031754100000057],[111.87582250000008,1.027086],[111.87248990000006,1.026994600000023],[111.87335530000007,1.021761100000049],[111.87220820000005,1.022058],[111.872829,1.020607900000073],[111.870835,1.018343800000025],[111.87102250000004,1.016274900000042],[111.86913720000007,1.015421],[111.86961180000009,1.013131200000032],[111.86318070000004,1.012265500000069],[111.859795,1.007952700000033],[111.85942890000007,1.003916900000036],[111.85150110000006,1.002574600000059],[111.84190060000009,0.997863600000073],[111.84199,0.996047],[111.83758530000006,0.994884400000046],[111.82861220000007,0.98618410000006],[111.82286180000006,0.98682290000005],[111.81929920000005,0.985053600000072],[111.81301370000006,0.998947600000065],[111.80503310000006,0.998576700000058],[111.79953830000005,1.001131600000065],[111.79416810000004,0.995075200000031],[111.79187070000006,0.99430330000007],[111.77735620000004,0.999781],[111.77248070000007,1.006301300000075],[111.77122620000006,1.017254700000024],[111.76260150000007,1.021343300000069],[111.75960770000006,1.016189],[111.74870380000004,1.008495200000027],[111.74154420000008,1.008683900000051],[111.73378380000008,1.006149400000027],[111.73019810000005,1.007130800000027],[111.72105010000007,1.005558500000063],[111.71742340000009,1.006770600000038],[111.71041040000006,1.014544100000023],[111.713101,1.025253],[111.70075980000007,1.022861600000056],[111.69610310000007,1.017510300000026],[111.69297270000004,1.01838390000006],[111.69149240000007,1.024959200000069],[111.68668610000009,1.029841900000065],[111.68048140000008,1.031343500000048],[111.67598970000006,1.034310800000071],[111.66757690000009,1.043176800000026],[111.65952360000006,1.041993400000024],[111.65727470000007,1.036373500000025],[111.65161450000005,1.032934700000055],[111.63917230000004,1.030758],[111.638246,1.025943100000063],[111.64053760000007,1.024177900000041],[111.63994070000007,1.022111100000075],[111.63584130000004,1.021210100000076],[111.63117350000005,1.022309800000073],[111.62797530000006,1.020463600000028],[111.624791,1.022099300000036],[111.62229520000005,1.021463],[111.61672870000007,1.016950800000075],[111.61674920000007,1.015009900000052],[111.61378790000003,1.013542800000039],[111.59615490000004,1.009142900000029],[111.58909050000005,1.002336200000059],[111.58897960000007,0.996257800000024],[111.58066790000004,0.992487],[111.58321890000008,0.986373800000024],[111.58095470000006,0.978979700000025],[111.57458780000007,0.979291100000069],[111.57348930000006,0.981720100000075],[111.57097720000007,0.979780500000061],[111.57026,0.977162600000042],[111.56719710000004,0.979550800000027],[111.56731150000007,0.984681300000034],[111.56184,0.983939200000066],[111.56027640000008,0.988202500000057],[111.55726290000007,0.989195700000039],[111.55758360000004,0.986941200000047],[111.55567280000008,0.984315600000059],[111.55402330000004,0.984506700000054],[111.55168280000004,0.987483400000031],[111.54876840000009,0.988430300000061],[111.54729020000008,0.985900500000071],[111.54949360000006,0.983444300000031],[111.54998260000008,0.980034800000055],[111.54655280000009,0.97849240000005],[111.54649,0.976555100000041],[111.54754540000005,0.974665500000071],[111.55045230000007,0.974825700000054],[111.55068160000008,0.969187200000022],[111.54908660000007,0.967385700000023],[111.55313630000006,0.964481200000023],[111.55055190000007,0.96282960000002],[111.55068180000006,0.955611],[111.54636570000008,0.954466400000058],[111.55146150000007,0.947468900000047],[111.54816980000004,0.947163500000045],[111.54406590000008,0.949398100000053],[111.53913250000005,0.955077],[111.53512490000008,0.955977400000052],[111.53050280000008,0.953746300000034],[111.53589660000006,0.93771780000003],[111.54019210000007,0.932181400000047],[111.55239220000004,0.921973200000025],[111.56115610000006,0.918166100000064],[111.56679530000008,0.916453500000046],[111.58452810000006,0.918854300000021],[111.59587170000009,0.926982800000076],[111.605668,0.931132800000057],[111.61467740000006,0.92964390000003],[111.62341310000005,0.924875100000065],[111.62920230000009,0.9177],[111.62772830000006,0.907347800000025],[111.63709090000009,0.882735900000057],[111.63811330000004,0.860963],[111.65653060000005,0.85177630000004],[111.66428210000004,0.845418900000027],[111.66821130000005,0.840574500000059],[111.67248370000004,0.831502200000045],[111.67563630000006,0.815772200000026],[111.67771910000005,0.811936],[111.70095060000006,0.799798500000065],[111.72662350000007,0.78100610000007],[111.73922730000004,0.767742300000066],[111.748436,0.750037600000041],[111.74894560000007,0.74431960000004],[111.74489440000008,0.737203900000054],[111.72926330000007,0.730135700000062],[111.72650910000004,0.726527300000043],[111.72567750000007,0.716099900000074],[111.71670530000006,0.69835930000005],[111.71565250000003,0.685635400000024],[111.71815490000006,0.675544900000034],[111.71726990000008,0.666742200000044],[111.696579,0.64190080000003],[111.687767,0.626028700000063],[111.69229130000008,0.616155],[111.69924160000005,0.610578400000065],[111.71918490000007,0.602981700000043],[111.72187040000006,0.604161300000044],[111.72616580000005,0.602801100000022],[111.73455050000007,0.597063200000036],[111.73944850000004,0.591347600000063],[111.74086,0.57834820000005],[111.73771670000008,0.572890800000039],[111.73234560000009,0.569717800000035],[111.71632220000004,0.564581700000076],[111.71245360000006,0.560238100000049],[111.71011950000008,0.554387400000053],[111.71016530000009,0.54749860000004],[111.71203450000007,0.541037700000061],[111.72368460000007,0.515657],[111.72939140000005,0.499136400000054],[111.73143610000005,0.479835],[111.72953640000009,0.471695900000043],[111.713768,0.444615300000066],[111.71037290000004,0.428723],[111.698555,0.409864800000037],[111.68727870000004,0.378245600000071],[111.67960190000008,0.371951100000047],[111.67059920000008,0.368288300000074],[111.66173390000006,0.361594400000058],[111.65550830000006,0.352724200000068],[111.65280750000005,0.345142800000076],[111.65169360000004,0.336605300000031],[111.66540530000009,0.293076300000052],[111.67391970000006,0.277174700000046],[111.68183140000008,0.267731500000025],[111.69382480000007,0.261095800000021],[111.73102340000008,0.246519800000044],[111.76345890000005,0.23868090000002],[111.78421780000008,0.237187],[111.80775640000007,0.230841500000054],[111.81739430000005,0.229907900000057],[111.82521820000005,0.230969],[111.83650210000008,0.228500500000052],[111.84267430000006,0.224445100000025],[111.85094070000008,0.213485900000023],[111.85761190000005,0.192027600000074],[111.86150380000004,0.185869900000057],[111.87173050000007,0.180410800000061],[111.88575750000007,0.178495300000066],[111.89764490000005,0.178732],[111.910721,0.17969080000006],[111.91885230000008,0.182647400000064],[111.95744940000009,0.185366100000067],[111.96942,0.189614200000051],[111.97648480000004,0.195702100000062],[111.98657090000006,0.207575800000029],[111.995337,0.213247800000033],[111.99863290000008,0.214184600000067],[112.0102601000001,0.211717700000065],[112.02740340000003,0.202632700000038],[112.05209980000006,0.18596290000005],[112.0849138000001,0.173129],[112.08950670000002,0.170165300000065],[112.09559500000012,0.154886600000054],[112.09147510000003,0.133116900000061],[112.09248980000007,0.127008300000057],[112.10675680000008,0.115121200000033],[112.11037310000006,0.107287500000041],[112.11315020000006,0.094047900000021],[112.11733120000008,0.085409],[112.12084070000003,0.081637900000032],[112.1234194000001,0.080907400000058],[112.1384799000001,0.083510900000022],[112.14975630000004,0.079720500000064],[112.15773650000006,0.082072800000049],[112.17093530000011,0.089835100000073],[112.18891780000001,0.093147200000033],[112.2054736,0.105283600000064],[112.21639890000006,0.109938500000055],[112.23298650000004,0.107566],[112.24354430000005,0.10916990000004],[112.2496784000001,0.112588600000038],[112.25916170000005,0.122743800000023],[112.27278020000006,0.128216100000031],[112.27998230000003,0.127671],[112.29767490000006,0.121153700000036],[112.31757240000002,0.117063900000062],[112.32826120000004,0.116025400000069],[112.33438,0.117621800000052],[112.33701970000004,0.11634250000003],[112.34760930000004,0.117158800000027],[112.3722676000001,0.121011800000019],[112.39774210000007,0.128604700000039],[112.40401350000002,0.131905600000039],[112.41757860000007,0.142871900000046],[112.42280470000003,0.144406700000047],[112.46550650000006,0.132302700000025],[112.4736775,0.131106100000068],[112.49970140000005,0.121129900000028],[112.51332750000006,0.119162700000061],[112.51505940000004,0.121211900000048],[112.51496020000002,0.12880750000005],[112.5065221000001,0.143059600000072],[112.50504200000012,0.152680500000031],[112.50685020000003,0.15921910000003],[112.51769920000004,0.179361],[112.52170160000003,0.183711100000039],[112.535408,0.179502200000059],[112.54113010000003,0.179750800000022],[112.54286960000002,0.181242700000041],[112.54685210000002,0.19143710000003],[112.56798550000008,0.202874800000075],[112.5749588000001,0.201233],[112.58215330000007,0.187956100000065],[112.58894740000005,0.181434],[112.60636810000005,0.152487500000063],[112.61428740000008,0.14756310000007],[112.61913210000012,0.148108700000023],[112.64045620000002,0.161314100000027],[112.646308,0.166806800000074],[112.64858920000006,0.171656200000029],[112.64484310000012,0.180692300000032],[112.6280508000001,0.198966800000051],[112.62764650000008,0.202594200000021],[112.63052280000011,0.209235800000044],[112.63874730000009,0.21636060000003],[112.6608801000001,0.227674900000068],[112.6770163000001,0.238920300000075],[112.68316560000005,0.241023200000029],[112.69149690000006,0.240927400000032],[112.7017661000001,0.23790340000005],[112.72155680000003,0.224089400000025],[112.73732670000004,0.216819800000053],[112.74787820000006,0.216746300000068],[112.75463020000007,0.218722700000058],[112.77922740000008,0.237192500000049],[112.78790970000011,0.240463700000021],[112.79360120000001,0.241010200000062],[112.80862350000007,0.237367500000062],[112.81877820000011,0.233250300000066],[112.84468,0.215774900000042],[112.85817640000005,0.21004970000007],[112.89203570000006,0.209195700000066],[112.92278220000003,0.205905400000063],[112.94858480000005,0.199888800000053],[112.96043330000009,0.200358200000039],[112.96591880000005,0.205861500000026],[112.9700616,0.224788300000057],[112.96176080000009,0.247279700000036],[112.96188290000009,0.256740400000069],[112.96946650000007,0.270594200000062],[112.97865230000002,0.28088450000007],[112.9859689000001,0.292602500000044],[112.99117980000005,0.296938300000022],[113.00174650000008,0.298854400000039],[113.01216060000002,0.308367200000021],[113.03599480000003,0.308790400000021],[113.05738010000005,0.317379200000062],[113.06159910000008,0.317563700000051],[113.06491030000007,0.315955200000076],[113.06880890000002,0.311480900000049],[113.07501160000004,0.299744900000064],[113.08206120000011,0.291816500000039],[113.0873712,0.289351500000066],[113.09815920000005,0.287250100000051],[113.10095920000003,0.285307800000055],[113.10394990000009,0.278624700000023],[113.10096680000004,0.262069300000064],[113.10216460000004,0.257881700000041],[113.11103,0.249031600000023],[113.12330570000006,0.243592900000067],[113.13014930000008,0.24188730000003],[113.13670290000005,0.242832300000032],[113.15264840000009,0.257397800000035],[113.1678538000001,0.262010700000076],[113.17760410000005,0.261112400000059],[113.20483350000006,0.25418940000003],[113.25675150000006,0.245018800000025],[113.27147890000003,0.240828600000043],[113.2850112000001,0.248810900000024],[113.29640180000001,0.259031400000026],[113.317375,0.270554100000027],[113.32313520000002,0.272987100000023],[113.33643330000007,0.274244100000033],[113.34886920000008,0.277843800000028],[113.35679610000011,0.278151200000025],[113.375244,0.272904900000071],[113.38916760000006,0.271846500000038],[113.40727220000008,0.264239500000031],[113.42314130000011,0.262954900000068],[113.4379652,0.265405800000053],[113.45256790000008,0.271782200000075],[113.4580916000001,0.275716600000067],[113.49580370000001,0.308539600000074],[113.51375560000008,0.320514700000047],[113.51671580000004,0.325643],[113.5145338000001,0.330943300000058],[113.51544170000011,0.333710900000028],[113.52170550000005,0.338965900000062],[113.53100570000004,0.343433900000036],[113.54934680000008,0.358393700000022],[113.5554350000001,0.365493800000024],[113.55736520000005,0.373100400000055],[113.56100440000012,0.378237800000022],[113.56294230000003,0.379513100000054],[113.57019020000007,0.379702900000041],[113.574745,0.381846500000051],[113.57924630000002,0.387553700000069],[113.58197,0.398108900000068],[113.58634930000005,0.404566800000055],[113.60236340000006,0.412272800000039],[113.6077269000001,0.41326760000004],[113.634178,0.424500800000033],[113.64779640000006,0.434160500000075],[113.65720350000004,0.43850180000004],[113.65999580000005,0.441622300000063],[113.6632307000001,0.450323300000036],[113.66041550000011,0.460914800000069],[113.66677840000011,0.476426500000059],[113.66863990000002,0.490310300000033],[113.6772701000001,0.494628600000055],[113.68513160000009,0.501168100000029],[113.69376060000002,0.517817800000046],[113.7047334,0.519138100000021],[113.71587690000001,0.527416100000039],[113.71727830000009,0.532396200000051],[113.71985360000008,0.53519840000007],[113.73390170000005,0.537796200000059],[113.73849960000007,0.543624300000033],[113.74865020000004,0.549835400000063],[113.75000000000011,0.55739310000007],[113.75859050000008,0.565290200000049],[113.76412180000011,0.566800600000022],[113.77239970000005,0.563707200000067],[113.77468090000002,0.565669900000046],[113.77607710000007,0.581805800000041],[113.77863290000005,0.590045500000031],[113.78324870000006,0.595752700000048],[113.7937849000001,0.604598400000043],[113.8001097,0.60460740000002],[113.80204750000007,0.605936900000074],[113.80619790000003,0.616428800000051],[113.8085096000001,0.633885200000066],[113.81181550000008,0.641506400000026],[113.82109050000008,0.651070100000027],[113.83956120000005,0.659345900000062],[113.84218580000004,0.662005],[113.84323860000006,0.665645300000051],[113.84088110000005,0.666730600000051],[113.83594490000007,0.68243990000002],[113.840431,0.698974],[113.84367350000002,0.705658500000027],[113.849037,0.70929540000003],[113.860214,0.712833900000021],[113.8700864000001,0.71181370000005],[113.87476320000007,0.712800500000071],[113.88200360000008,0.720136900000057],[113.89634680000006,0.741692600000022],[113.89608140000007,0.754587400000048],[113.88478450000002,0.758888800000022],[113.88506260000008,0.763247800000045],[113.87946540000007,0.771903],[113.87347040000009,0.776457400000027],[113.87395540000011,0.779788800000063],[113.87930730000005,0.784262300000023],[113.88161910000008,0.784664100000043],[113.88814320000006,0.795255700000041],[113.90977680000003,0.811795400000051],[113.91362740000011,0.823869900000034],[113.9201888,0.828260600000021],[113.92639230000009,0.840358],[113.92538220000006,0.844935700000065],[113.92245230000003,0.847528500000067],[113.91081870000005,0.851090300000067],[113.90617010000005,0.854126],[113.90495380000004,0.857892600000071],[113.89960710000003,0.859661600000038],[113.89844830000004,0.862990400000058],[113.89633030000005,0.864422600000069],[113.89495690000001,0.872547300000065],[113.88960250000002,0.870750200000032],[113.88033760000008,0.876800600000024],[113.87688530000003,0.879191400000025],[113.87119990000008,0.888686700000051],[113.87851820000003,0.896499200000051],[113.87796810000009,0.901388800000063],[113.87315930000011,0.901950300000067],[113.87216630000012,0.916737500000067],[113.8806105000001,0.926057700000058],[113.88367180000012,0.927687700000035],[113.88437130000011,0.93702],[113.89120480000008,0.941804500000046],[113.89627510000003,0.948844600000029],[113.89488860000006,0.956244900000058],[113.89791670000011,0.958463700000038],[113.90263460000006,0.959025300000064],[113.90586270000006,0.964242100000035],[113.91188690000001,0.96791010000004],[113.91462080000008,0.976629800000069],[113.91221580000001,0.981225900000027],[113.91572480000002,1.002998700000035],[113.9081384000001,1.013789],[113.89710040000011,1.016445500000032],[113.89336130000004,1.019242600000041],[113.88853090000009,1.038105400000063],[113.88969530000008,1.047393400000033],[113.89527450000003,1.055175600000041],[113.90034850000006,1.058246700000041],[113.942438,1.058978300000035],[113.94823880000001,1.061240600000076],[113.9494932,1.066481700000054],[113.954731,1.073124700000051],[113.95764040000006,1.083494200000075],[113.96215110000003,1.088188],[113.96312340000009,1.09110540000006],[113.96087810000006,1.099049500000035],[113.96281890000012,1.110061400000063],[113.97184990000005,1.119774],[113.98264050000012,1.120901300000071],[113.9866760000001,1.126083200000039],[113.99801290000005,1.124150100000065],[114.02866840000002,1.111764100000073],[114.03631020000012,1.110891],[114.04156850000004,1.114361100000053],[114.04972370000007,1.12403450000005],[114.05461920000005,1.127504400000021],[114.05824780000012,1.127690500000028],[114.06187890000001,1.125505800000042],[114.06551700000011,1.116208900000061],[114.0720559,1.109285600000021],[114.07846660000007,1.105617700000039],[114.0866324000001,1.104896300000064],[114.09370740000008,1.106362200000035],[114.1100302000001,1.114220300000056],[114.12823160000005,1.127437800000052],[114.14616220000005,1.134992400000044],[114.16287950000003,1.138232500000072],[114.1730348000001,1.144990600000028],[114.17557040000008,1.149917500000072],[114.18018790000008,1.15202290000002],[114.20903590000012,1.15734070000002],[114.2219166000001,1.161183600000072],[114.22264040000005,1.163373],[114.22068880000006,1.167196800000056],[114.21156050000002,1.173575700000072],[114.20728840000004,1.185034700000074],[114.20311020000008,1.186478],[114.19892840000011,1.191540100000054],[114.19775670000001,1.195953200000019],[114.20026970000004,1.211769700000048],[114.2011748000001,1.213959300000056],[114.20335360000001,1.21564520000004],[114.20770560000005,1.216154800000027],[114.2089734000001,1.218527100000074],[114.20780150000007,1.236122600000044],[114.20520310000006,1.241765200000032],[114.19440920000011,1.254675100000043],[114.1921039,1.259218],[114.1923389000001,1.262736],[114.1870037000001,1.268840100000034],[114.18799120000006,1.280555],[114.19626830000004,1.285379800000044],[114.19692830000008,1.289519400000074],[114.194778,1.294136800000047],[114.19632230000002,1.298800200000073],[114.21052840000004,1.305988500000069],[114.2087772000001,1.309747200000061],[114.20856440000011,1.324264500000027],[114.20690030000003,1.32653],[114.20918670000003,1.333904200000063],[114.2071476000001,1.341961200000071],[114.20568720000006,1.347461],[114.2036508000001,1.349015800000075],[114.19984350000004,1.349603],[114.19552740000006,1.346496200000047],[114.1889000000001,1.352646100000072],[114.19060230000002,1.359234700000059],[114.18907620000004,1.362099200000046],[114.18025650000004,1.362976100000026],[114.17930780000006,1.365903100000025],[114.17692550000004,1.367675700000063],[114.16907160000005,1.369966100000056],[114.16629010000008,1.375603300000023],[114.16565440000011,1.381546400000047],[114.17874760000007,1.394646600000044],[114.1872446000001,1.396126300000049],[114.19053890000009,1.395096400000057],[114.19765660000007,1.396900200000061],[114.19964330000005,1.402906600000051],[114.20538780000004,1.410366700000054]]]},"properties":{"shapeName":"Kapuas Hulu","shapeISO":"","shapeID":"22746128B88774469034371","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[115.58635270000002,-8.532363799999928],[115.58506390000002,-8.532285799999954],[115.58495520000008,-8.534391399999947],[115.5866175000001,-8.533813899999927],[115.58635270000002,-8.532363799999928]]],[[[115.40152660000001,-8.462649899999974],[115.4003394,-8.4665188],[115.39478310000004,-8.470969799999978],[115.3899599,-8.482381699999962],[115.3957706000001,-8.481399099999976],[115.40243610000005,-8.477018399999963],[115.40486320000002,-8.47708979999993],[115.40624090000006,-8.4739989],[115.41195070000003,-8.472468899999967],[115.41453250000006,-8.474223499999937],[115.412985,-8.478839599999958],[115.41020810000009,-8.479799699999944],[115.41188920000002,-8.482019699999967],[115.4103295000001,-8.483615099999952],[115.41135740000004,-8.4856603],[115.40960490000009,-8.486641799999973],[115.41224260000001,-8.4939265],[115.41180710000003,-8.498077499999965],[115.415246,-8.503174299999955],[115.41377490000002,-8.504663799999946],[115.41530180000007,-8.507795299999941],[115.4051852,-8.514574799999934],[115.40831790000004,-8.5189636],[115.40629150000007,-8.5237398],[115.40956970000002,-8.530247299999928],[115.41327230000002,-8.524634],[115.4126314,-8.523499199999947],[115.41656660000001,-8.524192899999946],[115.42878640000004,-8.519595799999934],[115.43428890000007,-8.519146],[115.44930180000006,-8.506696899999952],[115.45454860000007,-8.5053882],[115.4576621000001,-8.502851599999929],[115.46292110000002,-8.503673099999958],[115.46931350000011,-8.5098266],[115.47018520000006,-8.512948299999948],[115.4738162000001,-8.51505179999998],[115.47675250000009,-8.520072399999947],[115.47490620000008,-8.537012],[115.47998410000002,-8.542608299999927],[115.47950190000006,-8.5507729],[115.5091437000001,-8.540756299999941],[115.5089756000001,-8.537004199999956],[115.5107518000001,-8.535875699999963],[115.50742030000004,-8.534060099999977],[115.509243,-8.534986],[115.50967980000007,-8.533915899999954],[115.50808670000004,-8.5332111],[115.511378,-8.530809799999929],[115.51380370000004,-8.534578],[115.51485480000008,-8.533424099999934],[115.51372490000006,-8.530347799999959],[115.51521770000011,-8.529679399999964],[115.507489,-8.518777499999942],[115.50855970000009,-8.512877],[115.52028280000002,-8.504674499999965],[115.53042220000009,-8.501024299999926],[115.53783080000005,-8.500461099999939],[115.54700560000003,-8.505818599999941],[115.55361890000006,-8.504606499999966],[115.58081320000008,-8.515137399999958],[115.58098560000008,-8.517724499999929],[115.593723,-8.509892299999933],[115.60486390000005,-8.505683699999963],[115.60623710000004,-8.503621099999975],[115.60868260000007,-8.503800099999978],[115.6110208,-8.506627399999957],[115.6126279,-8.506309],[115.6102327000001,-8.50305],[115.61234860000002,-8.498275199999966],[115.61382980000008,-8.498648299999957],[115.612668,-8.495091899999977],[115.61672830000009,-8.487528399999974],[115.61658230000012,-8.485200499999962],[115.62257760000011,-8.478160099999968],[115.63142620000008,-8.4719895],[115.63407530000006,-8.462222699999927],[115.64437520000001,-8.456659799999954],[115.65411460000007,-8.453879499999971],[115.66374350000001,-8.446856299999979],[115.67174450000005,-8.445067499999936],[115.68011330000002,-8.438951499999973],[115.68264140000008,-8.435363799999948],[115.68854150000004,-8.432298899999978],[115.68970700000011,-8.429060099999958],[115.69556580000005,-8.423169799999926],[115.69608730000004,-8.419923499999982],[115.70014950000007,-8.4177357],[115.70025540000006,-8.413010499999928],[115.70496280000009,-8.410041199999966],[115.71089330000007,-8.400478],[115.70945860000006,-8.395459499999959],[115.711536,-8.393585599999938],[115.71049720000008,-8.392381099999966],[115.71156140000005,-8.390240699999936],[115.71008350000011,-8.385878],[115.7103555000001,-8.377719899999931],[115.70297040000003,-8.370205599999963],[115.69781260000002,-8.358459799999935],[115.69079540000007,-8.355783199999962],[115.6866662000001,-8.35127129999995],[115.68297,-8.350230199999942],[115.68141320000007,-8.347000899999955],[115.66897270000004,-8.342444899999975],[115.66400480000004,-8.337415599999929],[115.65987510000002,-8.338490299999933],[115.65706670000009,-8.335030099999926],[115.64195590000008,-8.3337063],[115.6345884000001,-8.326997499999948],[115.62918940000009,-8.324552799999935],[115.62014340000007,-8.306796],[115.61847180000007,-8.299861699999951],[115.60715830000004,-8.290247099999931],[115.604355,-8.28417449999995],[115.60243340000011,-8.284167799999977],[115.59862720000001,-8.27916829999998],[115.59528040000009,-8.2787306],[115.58092460000012,-8.255094],[115.56479230000002,-8.239705],[115.5604925,-8.233296699999926],[115.50944660000005,-8.205204099999946],[115.50092330000007,-8.1924323],[115.48985890000006,-8.1871276],[115.48434350000002,-8.180053899999962],[115.47086980000006,-8.1782901],[115.45937020000008,-8.17045],[115.45709410000006,-8.1666],[115.44291080000005,-8.1729969],[115.44195430000002,-8.177746299999967],[115.43619640000009,-8.181010699999945],[115.43554730000005,-8.183228699999972],[115.44195410000009,-8.185113599999966],[115.44155910000006,-8.187887299999943],[115.44393720000005,-8.1899689],[115.4480886,-8.189126599999952],[115.45411060000004,-8.198226],[115.4468151000001,-8.204056499999979],[115.44346590000009,-8.211591599999963],[115.44121280000002,-8.212847899999929],[115.43777030000001,-8.2184807],[115.444966,-8.225500799999963],[115.4448291000001,-8.233505],[115.4487031000001,-8.239696699999968],[115.44747510000002,-8.242475499999955],[115.44820890000005,-8.245928799999945],[115.45763660000011,-8.242430399999932],[115.4591051000001,-8.247725699999933],[115.45442990000004,-8.251238899999976],[115.44874120000009,-8.252286399999946],[115.4403486000001,-8.261906499999952],[115.43024660000003,-8.267187499999977],[115.42867280000007,-8.273380399999951],[115.43169530000011,-8.276138099999969],[115.42785050000009,-8.282386599999938],[115.42535540000006,-8.291518199999928],[115.42199820000008,-8.294852799999944],[115.422519,-8.302260799999942],[115.4191224000001,-8.305105099999935],[115.41858060000004,-8.307252499999947],[115.42049980000002,-8.308431199999973],[115.41977830000008,-8.309528599999965],[115.42210210000007,-8.3113766],[115.4217288000001,-8.312823399999957],[115.42003490000002,-8.3123138],[115.416691,-8.314535699999965],[115.4160088000001,-8.316371899999979],[115.417475,-8.316420199999925],[115.41819270000008,-8.31952149999995],[115.41587230000005,-8.322695],[115.41355260000012,-8.321326899999974],[115.40911010000002,-8.322842599999944],[115.40928980000001,-8.334829199999945],[115.41077730000006,-8.338256199999933],[115.40586960000007,-8.341021099999978],[115.40228680000007,-8.340985299999943],[115.403484,-8.344889699999953],[115.39875340000003,-8.344511799999964],[115.39797190000002,-8.350597199999982],[115.3991281000001,-8.355721499999959],[115.39613760000009,-8.357427099999938],[115.39592520000008,-8.361797099999933],[115.40002460000005,-8.370907099999954],[115.40479940000012,-8.377041299999973],[115.40376120000008,-8.380668699999944],[115.40839990000006,-8.384864499999935],[115.4076404000001,-8.387308899999937],[115.40909870000007,-8.395568399999945],[115.4125858000001,-8.399415099999942],[115.41563130000009,-8.400209599999926],[115.4168155000001,-8.403574299999946],[115.41356270000006,-8.417943199999968],[115.41511360000004,-8.421193499999958],[115.41509760000008,-8.4268992],[115.41314160000002,-8.429302899999925],[115.41450420000001,-8.4301122],[115.41471820000004,-8.4342],[115.41126840000004,-8.436434799999972],[115.41332540000008,-8.438735],[115.4110217000001,-8.441548699999942],[115.41165930000011,-8.4430824],[115.40886240000009,-8.445468199999937],[115.41002030000004,-8.446688199999926],[115.40830620000008,-8.45019069999995],[115.40572760000009,-8.450586899999962],[115.40592560000005,-8.452094899999963],[115.40383110000005,-8.451660199999935],[115.40424510000003,-8.4532125],[115.4031811000001,-8.453387599999928],[115.40471790000004,-8.455104399999925],[115.40296460000002,-8.454627099999925],[115.40327320000006,-8.459213399999953],[115.40191670000002,-8.460695899999962],[115.40310430000011,-8.4618979],[115.40152660000001,-8.462649899999974]]]]},"properties":{"shapeName":"Karang Asem","shapeISO":"","shapeID":"22746128B25144240501989","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[110.71341260000008,-7.541625099999976],[110.71681630000006,-7.542847799999947],[110.71794940000007,-7.541165199999966],[110.72550960000007,-7.537985399999968],[110.73085490000005,-7.539238699999942],[110.73131380000007,-7.538206199999934],[110.73768520000004,-7.538326099999949],[110.73744320000009,-7.539505299999973],[110.74847630000005,-7.541692799999964],[110.74863810000005,-7.544069899999954],[110.75505490000006,-7.546116299999937],[110.75675660000007,-7.549098399999934],[110.75886010000005,-7.549896199999978],[110.75979640000008,-7.547382599999935],[110.76184510000007,-7.547117199999946],[110.76225750000009,-7.543392499999925],[110.76386720000005,-7.543787099999975],[110.76288180000006,-7.541770499999927],[110.77098130000007,-7.545269399999938],[110.77725040000007,-7.546742699999982],[110.78153420000007,-7.545425499999965],[110.787241,-7.548151],[110.78967510000007,-7.5470616],[110.796348,-7.549091699999963],[110.80066790000006,-7.533854799999972],[110.79567720000006,-7.533546899999976],[110.79492280000005,-7.530785499999979],[110.79142,-7.528917799999931],[110.79122920000009,-7.526745299999959],[110.78101060000006,-7.523849],[110.773433,-7.5263205],[110.76447870000004,-7.526787],[110.748909,-7.523275799999965],[110.74233750000008,-7.527515],[110.73075210000007,-7.528669199999968],[110.72719570000004,-7.525990899999954],[110.72436520000008,-7.527540199999976],[110.72393030000006,-7.530196699999976],[110.72055820000008,-7.5316739],[110.71558380000005,-7.531440699999962],[110.71219640000004,-7.533010899999965],[110.70925140000008,-7.532262299999957],[110.70835870000008,-7.540188299999954],[110.71341260000008,-7.541625099999976]]],[[[110.81574520000004,-7.523207899999932],[110.81738710000008,-7.528864799999951],[110.82312620000005,-7.529058299999974],[110.82345860000004,-7.527943499999935],[110.82728160000005,-7.530416899999977],[110.82740980000005,-7.529053599999941],[110.83427810000006,-7.531228699999929],[110.83523510000003,-7.5328409],[110.83759270000007,-7.531173899999942],[110.83928130000004,-7.533306699999969],[110.84869430000003,-7.533110799999974],[110.85496740000008,-7.535014],[110.85649370000004,-7.541743199999928],[110.85776170000008,-7.5407477],[110.86273050000005,-7.5414047],[110.86111710000006,-7.547144599999967],[110.86346420000007,-7.548063399999933],[110.86554160000009,-7.545596499999931],[110.86827090000008,-7.546309],[110.86717990000005,-7.556797899999935],[110.866005,-7.558950899999957],[110.86251570000007,-7.560124099999939],[110.86102950000009,-7.567144799999937],[110.86336020000005,-7.568158599999947],[110.86579990000007,-7.566959],[110.86771690000006,-7.568283599999972],[110.86839880000008,-7.566652199999965],[110.91227380000004,-7.584244099999978],[110.90840810000009,-7.595681799999966],[110.90485110000009,-7.613247],[110.902946,-7.614452399999948],[110.91628580000008,-7.612623799999938],[110.93644720000009,-7.617535099999941],[110.94668440000004,-7.618356899999981],[110.94540130000007,-7.6195616],[110.94786610000006,-7.623615399999949],[110.94744440000005,-7.629344099999969],[110.94474140000005,-7.636427799999979],[110.94231670000005,-7.637552399999947],[110.94460050000004,-7.641107699999964],[110.94645890000004,-7.653221899999949],[110.94832860000008,-7.655335599999944],[110.94690270000007,-7.6591156],[110.94765030000008,-7.669935799999962],[110.95321490000003,-7.680855799999961],[110.958417,-7.681478699999957],[110.96023070000007,-7.684179],[110.95821610000007,-7.6840453],[110.95820860000003,-7.682699599999978],[110.95760640000009,-7.684425399999952],[110.95368830000007,-7.683235599999932],[110.949351,-7.695267099999967],[110.94771250000008,-7.708904799999971],[110.94516150000004,-7.712451699999974],[110.94410320000009,-7.720027199999947],[110.94125620000005,-7.739679],[110.95937110000006,-7.733873499999959],[110.96165590000004,-7.737629299999981],[110.96670330000006,-7.738573799999926],[110.96738320000009,-7.741341299999931],[110.96902280000006,-7.740680899999973],[110.96908450000006,-7.7434136],[110.97058010000006,-7.744632299999978],[110.96971890000009,-7.748435899999947],[110.96543250000008,-7.749666599999955],[110.96454980000004,-7.751464399999975],[110.97182240000006,-7.751141099999927],[110.97464160000004,-7.753694199999927],[110.97462110000004,-7.7576346],[110.97155330000004,-7.759017],[110.97184840000006,-7.763669],[110.965616,-7.766694299999926],[110.96893340000008,-7.771692199999961],[110.968053,-7.769284],[110.96905870000006,-7.767873099999974],[110.97001650000004,-7.769080599999938],[110.97321180000006,-7.765312299999948],[110.98021670000008,-7.761714599999948],[110.986392,-7.7611369],[110.98636350000004,-7.763777399999981],[110.98870980000004,-7.763652799999932],[110.989346,-7.767120499999976],[110.99565770000004,-7.763868199999933],[110.99882780000007,-7.7652791],[110.99956630000008,-7.767211299999929],[111.00086210000006,-7.765474299999937],[111.00324770000009,-7.765664399999935],[111.00425320000005,-7.763426299999935],[111.00568390000007,-7.764945499999953],[111.00901790000006,-7.762294699999927],[111.00975440000008,-7.763503199999946],[111.01746580000008,-7.7594567],[111.020601,-7.763256],[111.02487090000005,-7.762675199999933],[111.02786360000005,-7.764125199999967],[111.03126390000006,-7.763142899999934],[111.03461350000003,-7.771405699999946],[111.03758840000006,-7.771459899999968],[111.03750510000003,-7.7756367],[111.039705,-7.775833599999942],[111.04018980000006,-7.778243799999927],[111.04588920000003,-7.783098299999949],[111.05163860000005,-7.778078099999959],[111.04786250000006,-7.767336499999942],[111.05048960000005,-7.759278499999937],[111.05623290000005,-7.759464899999955],[111.05968470000005,-7.756475399999943],[111.06141660000009,-7.757636],[111.06104410000006,-7.756178199999965],[111.06229110000004,-7.755929199999969],[111.06330110000005,-7.757163499999933],[111.06412290000009,-7.755092799999943],[111.06499920000005,-7.756266399999959],[111.06601450000005,-7.755431099999953],[111.06570430000005,-7.757041399999935],[111.06871370000005,-7.756026],[111.07028960000008,-7.757364699999926],[111.072775,-7.751947199999961],[111.074325,-7.752142399999968],[111.07889130000007,-7.748183399999959],[111.09355160000007,-7.751738499999931],[111.10140990000008,-7.746238699999935],[111.10985560000006,-7.737362799999971],[111.11177820000006,-7.741582899999969],[111.10832210000007,-7.745545399999969],[111.11179350000003,-7.74862],[111.11281590000004,-7.746771799999976],[111.12081910000006,-7.742334799999981],[111.12105560000003,-7.738271199999929],[111.12305450000008,-7.7377],[111.12293240000008,-7.734914299999957],[111.12562020000007,-7.733288399999935],[111.12867540000008,-7.727395099999967],[111.13808440000008,-7.719812799999943],[111.15131380000008,-7.714806499999952],[111.15811920000004,-7.714780799999971],[111.16172030000007,-7.713137099999926],[111.16671750000006,-7.716542699999934],[111.17614670000006,-7.713933699999927],[111.17750550000005,-7.7157983],[111.17936710000004,-7.712893899999926],[111.18186190000006,-7.712306699999942],[111.18411250000008,-7.699890599999947],[111.181984,-7.693176199999925],[111.18917840000006,-7.686008899999933],[111.19059750000008,-7.676073],[111.19220730000006,-7.673207699999978],[111.18852990000005,-7.668430299999955],[111.18756860000008,-7.656320099999959],[111.18964380000006,-7.648923399999944],[111.18865970000007,-7.642529899999943],[111.18991090000009,-7.635812199999975],[111.19429010000005,-7.629092599999979],[111.19449190000006,-7.620408299999951],[111.19299540000009,-7.613826899999935],[111.190247,-7.6101078],[111.17835820000005,-7.600084899999956],[111.17309680000005,-7.5917765],[111.16896430000008,-7.590243599999951],[111.16683380000006,-7.582265899999925],[111.16327520000004,-7.580254299999979],[111.16217280000006,-7.574776699999973],[111.15307960000007,-7.562765],[111.15326830000004,-7.557052799999951],[111.15189270000008,-7.554584],[111.15211980000004,-7.551019199999928],[111.15380780000004,-7.549775],[111.15006670000008,-7.542960799999946],[111.15194460000004,-7.541090799999949],[111.15063150000009,-7.5401376],[111.15152080000007,-7.538932799999941],[111.15057080000008,-7.539242699999932],[111.15024390000008,-7.533462499999928],[111.14607950000004,-7.527474699999971],[111.14630080000006,-7.525402],[111.14776860000006,-7.525037099999963],[111.13964080000005,-7.523897599999941],[111.12986490000009,-7.514042699999948],[111.12969270000008,-7.511022499999967],[111.12455750000004,-7.513350499999945],[111.12392880000004,-7.519133099999976],[111.119445,-7.522156499999937],[111.116746,-7.521416899999963],[111.11765140000006,-7.525862299999972],[111.11597760000006,-7.526186299999949],[111.11540280000008,-7.529164199999968],[111.11133460000008,-7.531277],[111.09627180000007,-7.529166299999929],[111.092279,-7.530570599999976],[111.08842430000004,-7.528330599999947],[111.08141,-7.527599799999962],[111.07882690000008,-7.524755],[111.08075710000008,-7.521859599999971],[111.07926540000005,-7.517249899999968],[111.08290230000006,-7.513149899999974],[111.08023070000007,-7.5113678],[111.08118440000004,-7.508194399999979],[111.07890890000004,-7.508005899999944],[111.07925680000005,-7.499393099999963],[111.07484580000005,-7.496663399999932],[111.073745,-7.497637399999974],[111.07299990000007,-7.496624199999928],[111.07224870000005,-7.4987496],[111.06392170000004,-7.495842699999969],[111.06215540000005,-7.498902399999963],[111.06298830000009,-7.502775199999974],[111.058258,-7.503790799999933],[111.05708070000009,-7.5092821],[111.04980150000006,-7.508021099999951],[111.04817330000009,-7.509555299999931],[111.04507760000007,-7.508863699999949],[111.04033770000007,-7.511293799999976],[111.04125220000009,-7.520744299999933],[111.04575670000008,-7.527067399999964],[111.04942860000006,-7.537316699999963],[111.04305270000009,-7.536970499999939],[111.03175830000004,-7.534075199999961],[111.02425340000008,-7.527728599999932],[111.02106640000005,-7.531929099999957],[111.01764480000008,-7.529592299999933],[111.01345360000005,-7.528238499999929],[111.00912610000006,-7.529133199999933],[111.0026,-7.524690799999973],[110.98860170000006,-7.521132],[110.97552160000004,-7.515695199999925],[110.96402740000008,-7.507466799999975],[110.95413270000006,-7.5035277],[110.95157620000003,-7.500231699999972],[110.939472,-7.494905299999971],[110.92053480000004,-7.49092],[110.91808450000008,-7.496095199999957],[110.89512940000009,-7.493450299999949],[110.89246780000008,-7.489601499999935],[110.88919110000006,-7.4916089],[110.88685330000004,-7.490827899999942],[110.88280490000005,-7.491981],[110.88321040000005,-7.487597699999981],[110.88074040000004,-7.486240099999975],[110.87937390000008,-7.487934299999949],[110.87612150000007,-7.488338399999975],[110.87470810000008,-7.486244799999952],[110.87380520000005,-7.488608299999953],[110.87197530000009,-7.488798699999961],[110.87200930000006,-7.485429299999964],[110.86559120000004,-7.482922699999961],[110.865654,-7.480644199999972],[110.86355590000005,-7.479352],[110.86511230000008,-7.476332199999945],[110.86372120000004,-7.472997699999951],[110.85726930000004,-7.473085399999945],[110.85752820000005,-7.469464899999934],[110.85557530000005,-7.468496399999935],[110.85316030000007,-7.469930699999964],[110.85109710000006,-7.4676437],[110.84780880000005,-7.468719399999941],[110.84754270000008,-7.471641],[110.84516860000008,-7.465541499999972],[110.84266270000006,-7.464443199999948],[110.84215860000006,-7.460721399999954],[110.84075160000003,-7.4596486],[110.82808680000005,-7.457488],[110.82588960000004,-7.458505099999968],[110.82415770000006,-7.456098499999939],[110.82342530000005,-7.457949099999951],[110.81859590000005,-7.459554199999957],[110.81362150000007,-7.458879],[110.81271120000008,-7.4603302],[110.809298,-7.458268199999964],[110.80478370000009,-7.459251399999971],[110.80639470000006,-7.4913799],[110.81574520000004,-7.523207899999932]]]]},"properties":{"shapeName":"Karanganyar","shapeISO":"","shapeID":"22746128B4967545799083","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[107.17167570000004,-6.482019399999956],[107.17377490000007,-6.484410899999943],[107.17438520000007,-6.490553],[107.16972370000008,-6.492325899999969],[107.17005930000005,-6.496563099999946],[107.16660320000005,-6.4972044],[107.16460430000006,-6.500945199999933],[107.16474930000004,-6.510863899999947],[107.16757980000006,-6.511335499999973],[107.16780870000008,-6.514503099999956],[107.16639720000006,-6.516124799999943],[107.16854110000008,-6.517237299999977],[107.16928880000006,-6.522824],[107.17124950000004,-6.523172],[107.17516340000009,-6.529457199999968],[107.17451490000008,-6.532745499999976],[107.17654430000005,-6.532977699999947],[107.17596450000008,-6.536622699999953],[107.178116,-6.540351099999953],[107.17868820000007,-6.551972499999977],[107.18433390000007,-6.555554],[107.18596660000009,-6.560838799999942],[107.18959060000009,-6.561612199999956],[107.19077310000006,-6.5716983],[107.19310770000004,-6.578285799999946],[107.20784770000006,-6.588303199999928],[107.21351640000006,-6.590497699999958],[107.22051250000004,-6.590748899999937],[107.22376270000007,-6.585694899999964],[107.23602310000007,-6.577244899999926],[107.25044270000006,-6.573389199999951],[107.25595110000006,-6.5621606],[107.25869,-6.558896199999936],[107.26499190000004,-6.555263699999955],[107.26720440000008,-6.546387299999935],[107.27256030000007,-6.536013299999979],[107.27781690000006,-6.535283299999946],[107.283928,-6.529939299999967],[107.28598030000006,-6.522198799999956],[107.28433620000004,-6.515749099999937],[107.28550730000006,-6.511456199999941],[107.28446970000005,-6.510538299999951],[107.28614820000007,-6.508600399999978],[107.28547680000008,-6.504831],[107.28898630000003,-6.504430499999955],[107.28913890000007,-6.501724899999942],[107.30122390000008,-6.495498299999952],[107.30581680000006,-6.491047599999945],[107.32784280000004,-6.4844124],[107.33583080000005,-6.4854214],[107.34026350000005,-6.488093599999956],[107.350403,-6.485556299999928],[107.36643230000004,-6.496642799999961],[107.37500010000008,-6.495175099999926],[107.37745680000006,-6.497158299999967],[107.39029710000005,-6.499770299999966],[107.38922890000003,-6.491233499999964],[107.38224040000006,-6.488196599999981],[107.38069930000006,-6.480546199999935],[107.37235270000008,-6.473835599999973],[107.37322250000005,-6.468302899999969],[107.38822190000008,-6.468714899999952],[107.43325820000007,-6.459513899999934],[107.43507260000007,-6.458074],[107.43479170000006,-6.452898199999936],[107.43747720000005,-6.447897199999943],[107.44492350000007,-6.444451],[107.45187390000007,-6.444073399999979],[107.45529950000008,-6.438585499999931],[107.45888530000008,-6.436860299999978],[107.45828260000008,-6.431517799999938],[107.46106730000008,-6.428669199999945],[107.46117410000005,-6.426714599999968],[107.46952830000004,-6.428820299999927],[107.47386180000007,-6.4323361],[107.47834030000007,-6.431863],[107.48046120000004,-6.429812199999958],[107.48065960000008,-6.426636899999949],[107.490471,-6.419434299999978],[107.49196640000008,-6.4148585],[107.50280770000006,-6.407946799999934],[107.50799570000004,-6.412924],[107.51238260000008,-6.420877699999949],[107.51372540000006,-6.421338799999944],[107.519188,-6.418081],[107.52940380000007,-6.418358099999978],[107.531128,-6.418096799999944],[107.53238690000006,-6.414861],[107.53484360000004,-6.415009199999929],[107.53709420000007,-6.404984199999944],[107.53964250000007,-6.403827399999955],[107.53981790000006,-6.396142299999951],[107.53731550000003,-6.389689199999964],[107.53776560000006,-6.386966899999948],[107.54210670000003,-6.384701],[107.54296120000004,-6.381917199999975],[107.54830180000005,-6.379542599999979],[107.54953780000005,-6.3738897],[107.548607,-6.371395299999961],[107.55339060000006,-6.365805399999942],[107.55351270000006,-6.363282899999945],[107.55500040000004,-6.362726],[107.55576330000008,-6.365091099999972],[107.55806740000008,-6.364610899999946],[107.559456,-6.358849799999973],[107.56204230000009,-6.3586523],[107.56224070000007,-6.355064599999935],[107.56542980000006,-6.3526485],[107.56292730000007,-6.349894699999936],[107.57047280000006,-6.340965499999925],[107.57073980000007,-6.337323399999946],[107.56851970000008,-6.338850699999966],[107.56804670000008,-6.336302499999931],[107.57279220000004,-6.333011399999975],[107.57209790000007,-6.331993299999965],[107.57035840000009,-6.332769199999973],[107.57156380000004,-6.330471699999975],[107.57633980000008,-6.3283703],[107.57558450000005,-6.327332699999943],[107.579033,-6.3223545],[107.57989510000004,-6.313741899999968],[107.58273330000009,-6.312414399999966],[107.57989510000004,-6.308817199999964],[107.58125320000005,-6.306557399999974],[107.57886520000005,-6.306432],[107.58020030000006,-6.300528299999939],[107.58471690000005,-6.298510299999975],[107.58614360000007,-6.294452],[107.58473220000008,-6.293324299999938],[107.58459480000005,-6.289283],[107.58226790000003,-6.288500099999965],[107.578888,-6.280449199999964],[107.57982650000008,-6.271259099999952],[107.57820140000007,-6.2678325],[107.58172620000005,-6.266316199999949],[107.58217630000007,-6.261414299999956],[107.58388530000008,-6.260282299999972],[107.58063520000007,-6.256424199999969],[107.58580030000007,-6.252431599999966],[107.59211740000006,-6.250898599999971],[107.599434,-6.252996199999927],[107.59925850000008,-6.251138],[107.60173810000003,-6.248693699999933],[107.60258490000007,-6.242731799999945],[107.60014230000007,-6.241032599999926],[107.60037470000009,-6.237899099999936],[107.60507950000004,-6.235575599999947],[107.60872150000006,-6.235444399999949],[107.61104550000005,-6.231857699999978],[107.61302730000006,-6.231887499999971],[107.62233190000006,-6.222124699999938],[107.62560840000003,-6.224411599999939],[107.62995120000005,-6.224188699999956],[107.63985070000007,-6.214621099999931],[107.64121580000005,-6.216564499999947],[107.64357770000004,-6.214957899999945],[107.63476790000004,-6.206416599999955],[107.62484560000007,-6.192818],[107.62423880000006,-6.190034],[107.62095520000008,-6.187428499999953],[107.59836220000005,-6.186036499999943],[107.59011730000009,-6.187571299999945],[107.58005220000007,-6.187321499999939],[107.56241310000007,-6.181451799999934],[107.54137,-6.17837],[107.5043,-6.16138],[107.49055010000006,-6.156047099999967],[107.48870470000008,-6.157393799999966],[107.47645050000006,-6.149779499999966],[107.46981180000006,-6.142450799999949],[107.46757510000003,-6.141903499999955],[107.46763460000005,-6.139714399999946],[107.44887250000005,-6.108317399999976],[107.44643830000007,-6.107065899999952],[107.44548180000004,-6.101119499999925],[107.44060390000004,-6.101595399999951],[107.43447590000005,-6.091191899999956],[107.431562,-6.090887799999962],[107.41664540000005,-6.064576799999941],[107.41211790000006,-6.055736],[107.41285350000004,-6.054607],[107.40318690000004,-6.036850299999969],[107.38895,-6.01763],[107.36652,-5.99187],[107.34299720000007,-5.970468099999948],[107.33800990000009,-5.968202799999972],[107.32201990000004,-5.964852599999972],[107.30557690000006,-5.958454899999936],[107.30263630000007,-5.958138499999961],[107.301271,-5.960550499999954],[107.29431570000008,-5.958665099999962],[107.28008430000006,-5.959237],[107.26462730000009,-5.961083499999972],[107.26007780000003,-5.963615199999936],[107.24818050000005,-5.966737099999932],[107.24020930000006,-5.9716737],[107.22716980000007,-5.975576],[107.20277140000007,-5.979460899999935],[107.19809280000004,-5.983142699999974],[107.18592,-5.98803],[107.16782610000007,-5.9887582],[107.14593730000007,-5.982819599999971],[107.13354990000005,-5.975909099999967],[107.11470460000004,-5.957777599999929],[107.10255750000005,-5.942691799999977],[107.09815230000004,-5.940092199999981],[107.09529130000004,-5.955207],[107.09358230000004,-5.957870199999945],[107.09713760000005,-5.961317199999939],[107.08949290000004,-5.968626599999936],[107.09098830000005,-5.972685],[107.088463,-5.975605599999938],[107.09003460000008,-5.976444899999933],[107.08563250000009,-5.979469],[107.08862320000009,-5.980072199999938],[107.08763140000008,-5.982266599999946],[107.08992020000005,-5.983525899999961],[107.08775340000005,-5.985330699999963],[107.08489240000006,-5.984919199999979],[107.08721940000004,-5.987206599999979],[107.08438130000008,-5.990820099999951],[107.08750170000008,-5.992797],[107.08834860000007,-5.995445399999937],[107.08461780000005,-6.002277499999934],[107.09204120000004,-6.005757],[107.09355940000006,-6.014279],[107.09965530000005,-6.014455399999974],[107.10157790000005,-6.016244599999936],[107.095009,-6.022052],[107.09394850000007,-6.027396799999963],[107.09609240000009,-6.027930899999944],[107.09929670000008,-6.025037899999973],[107.10513320000007,-6.028780099999949],[107.11132070000008,-6.028898399999946],[107.11329670000003,-6.0388447],[107.11911790000005,-6.039592],[107.12168140000006,-6.047082599999953],[107.12653370000004,-6.046107399999926],[107.127823,-6.0473911],[107.12435930000004,-6.050889599999948],[107.12659470000006,-6.054319],[107.12850970000005,-6.054610899999943],[107.13616190000005,-6.049636],[107.13684860000006,-6.055627],[107.13271350000008,-6.055733399999951],[107.13034070000003,-6.061526899999933],[107.13442250000008,-6.063488599999971],[107.13892380000004,-6.057297399999925],[107.14054120000009,-6.057171],[107.14041150000008,-6.063615],[107.143593,-6.0713045],[107.15156570000005,-6.072830799999963],[107.15682240000007,-6.067925099999968],[107.15963760000005,-6.067674299999965],[107.171898,-6.0759265],[107.17701740000007,-6.081719599999929],[107.18215190000006,-6.077293599999962],[107.18568430000005,-6.0765602],[107.18806470000004,-6.079007799999943],[107.18704240000005,-6.086324399999967],[107.18912520000003,-6.089252599999952],[107.20256060000008,-6.093543199999942],[107.21173110000007,-6.099679099999946],[107.221634,-6.103863399999966],[107.23014080000007,-6.102629799999931],[107.23748790000008,-6.104367399999944],[107.24334730000004,-6.100956599999961],[107.24679580000009,-6.101092],[107.24815380000007,-6.103693699999951],[107.24850480000003,-6.116098099999931],[107.25147260000006,-6.116168199999947],[107.26245130000007,-6.111018899999976],[107.26532760000003,-6.111335899999972],[107.26938640000009,-6.115561199999945],[107.27063,-6.129683199999931],[107.27281960000005,-6.130534299999965],[107.27789320000005,-6.127033399999959],[107.28118910000006,-6.127599399999951],[107.27947250000005,-6.133368699999949],[107.28342450000008,-6.135372299999972],[107.28392040000006,-6.137252499999931],[107.28103650000008,-6.144830399999933],[107.28241740000004,-6.148042399999952],[107.28576670000007,-6.148701399999936],[107.28895580000005,-6.141915499999925],[107.29104630000006,-6.140503099999933],[107.29265610000004,-6.141432],[107.28920760000005,-6.149304099999938],[107.28845230000007,-6.156322599999953],[107.28120430000007,-6.1573269],[107.27858750000007,-6.162015199999928],[107.27990730000005,-6.165825599999948],[107.27937330000009,-6.171085099999971],[107.28597270000006,-6.175322199999925],[107.28695690000006,-6.178236599999934],[107.28620160000008,-6.183889599999929],[107.29055040000009,-6.187070099999971],[107.29213730000004,-6.19015],[107.29083270000007,-6.200613699999963],[107.29205330000008,-6.201693199999966],[107.29598250000004,-6.201320799999962],[107.29662340000004,-6.202945899999975],[107.29396830000007,-6.206624199999965],[107.29308330000003,-6.214167299999929],[107.29103860000004,-6.216982099999939],[107.27862560000005,-6.215370899999925],[107.27221690000005,-6.216876699999943],[107.27494830000006,-6.222477099999935],[107.28071610000006,-6.223443699999962],[107.28368390000009,-6.225881799999968],[107.28208940000007,-6.228919699999949],[107.27442180000008,-6.233573599999943],[107.26913470000005,-6.231987199999935],[107.27450570000008,-6.241206399999953],[107.27783980000004,-6.253597],[107.27340710000004,-6.2583653],[107.276024,-6.263124599999969],[107.27614610000006,-6.26705],[107.26665260000004,-6.273805899999957],[107.265409,-6.278752199999929],[107.26784530000003,-6.280109099999947],[107.26710520000006,-6.284608],[107.26326,-6.2800867],[107.26189440000007,-6.281950199999926],[107.26429760000008,-6.286034699999959],[107.26113140000007,-6.286111499999947],[107.25505080000005,-6.290549399999975],[107.25498980000003,-6.294834799999933],[107.25092330000007,-6.292867799999954],[107.248665,-6.293299399999967],[107.24775710000006,-6.2982942],[107.24571240000006,-6.299630299999933],[107.24201220000003,-6.296673],[107.23645030000006,-6.2966735],[107.239319,-6.303705899999954],[107.238495,-6.306086199999925],[107.23549670000006,-6.307101899999964],[107.23506940000004,-6.300659799999949],[107.23313920000004,-6.299007099999926],[107.23301710000004,-6.303733],[107.22943130000004,-6.302201899999943],[107.22776050000004,-6.304490199999975],[107.22380840000005,-6.306096699999955],[107.22417460000008,-6.307789499999956],[107.22760020000004,-6.309338699999955],[107.22460950000004,-6.310211799999934],[107.22393810000005,-6.316335799999933],[107.221779,-6.316588099999933],[107.21991740000004,-6.313146299999971],[107.21739970000004,-6.315149],[107.21860520000007,-6.318253699999957],[107.22312180000006,-6.31838],[107.22473920000004,-6.320559699999933],[107.21861280000007,-6.321387499999958],[107.21913920000009,-6.325950299999931],[107.21472180000006,-6.329958599999941],[107.21869670000007,-6.331131199999959],[107.22055070000005,-6.334493299999963],[107.22364060000007,-6.335398899999973],[107.22338880000007,-6.338813499999958],[107.22560130000005,-6.341807499999959],[107.22660080000009,-6.349158399999965],[107.22298440000009,-6.3518921],[107.21498890000004,-6.349893699999939],[107.21308150000004,-6.356709199999955],[107.21530930000006,-6.361815099999944],[107.21324940000005,-6.363807299999962],[107.21067060000007,-6.361295899999959],[107.20750440000006,-6.3615252],[107.21012130000008,-6.363820699999962],[107.21036540000006,-6.3658892],[107.20551320000004,-6.3692466],[107.204796,-6.375670599999978],[107.21046460000008,-6.3795897],[107.21277630000009,-6.374544299999968],[107.21443950000008,-6.379629299999976],[107.21907060000007,-6.380638799999929],[107.218712,-6.383435899999938],[107.22122210000003,-6.384235099999955],[107.21987170000006,-6.396245199999953],[107.22212230000008,-6.400389299999972],[107.22141280000005,-6.408061699999962],[107.21727010000006,-6.407697799999937],[107.21297470000007,-6.409221799999955],[107.21218120000009,-6.417228399999942],[107.20195780000006,-6.413947699999937],[107.20542920000008,-6.421652],[107.20347610000005,-6.423519799999951],[107.20013440000008,-6.4220311],[107.19621290000003,-6.422990899999945],[107.19767010000004,-6.424946],[107.20371260000007,-6.426079399999935],[107.20668040000004,-6.4348866],[107.201996,-6.436088199999972],[107.207039,-6.441059299999949],[107.21170820000003,-6.449280899999962],[107.21106740000005,-6.452452299999948],[107.20788590000006,-6.449283299999934],[107.20537580000007,-6.451929699999937],[107.21265420000009,-6.454964799999971],[107.21687330000009,-6.461359699999946],[107.21503450000006,-6.464478899999961],[107.21315020000009,-6.464500599999951],[107.20891920000008,-6.468561499999964],[107.20104290000006,-6.461092],[107.19544890000009,-6.461073799999951],[107.19561630000004,-6.463796399999978],[107.18942280000005,-6.4640924],[107.18849960000006,-6.470314599999938],[107.18397190000007,-6.471637099999953],[107.18548960000004,-6.467292799999939],[107.18178690000008,-6.467756099999974],[107.18281570000005,-6.473480399999971],[107.17835150000008,-6.473878799999966],[107.18103040000005,-6.474781199999939],[107.18076340000005,-6.478116199999931],[107.17829910000006,-6.479723599999943],[107.17227190000006,-6.479813199999967],[107.17167570000004,-6.482019399999956]]]},"properties":{"shapeName":"Karawang","shapeISO":"","shapeID":"22746128B52241444778659","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[103.62132840000004,0.489824400000032],[103.62331980000005,0.49369420000005],[103.62014290000008,0.492433600000027],[103.619588,0.489846400000033],[103.62132840000004,0.489824400000032]]],[[[103.63064720000006,0.497519],[103.62961980000006,0.497786900000051],[103.62412470000004,0.488319900000022],[103.62554830000005,0.484192800000073],[103.62982810000005,0.484640700000057],[103.635169,0.490526200000033],[103.63064720000006,0.497519]]],[[[103.63666160000008,0.506963700000028],[103.63588430000004,0.508006400000056],[103.62987520000007,0.506310500000041],[103.63288450000005,0.499787400000059],[103.63550110000006,0.497963],[103.63798750000007,0.499371300000064],[103.639719,0.502949500000057],[103.63666160000008,0.506963700000028]]],[[[103.62855650000006,0.50992750000006],[103.63295350000004,0.510486200000059],[103.63324870000008,0.512457400000073],[103.62134850000007,0.522086800000068],[103.62386280000004,0.514352],[103.62855650000006,0.50992750000006]]],[[[103.62092850000005,0.532274100000052],[103.62229090000005,0.534015300000021],[103.61961750000006,0.534542300000055],[103.62092850000005,0.532274100000052]]],[[[103.63622510000005,0.532014700000047],[103.63421950000009,0.535784],[103.63102850000007,0.53283650000003],[103.62544760000009,0.530598200000043],[103.62191290000004,0.531420400000059],[103.62017320000007,0.525818400000048],[103.629768,0.517360200000041],[103.63509670000008,0.515317200000027],[103.63699660000003,0.520346400000051],[103.63622510000005,0.532014700000047]]],[[[103.57083820000008,0.533685],[103.56998760000005,0.536937200000068],[103.56793120000003,0.536725500000045],[103.56855070000006,0.534666500000071],[103.57083820000008,0.533685]]],[[[103.56966870000008,0.538673300000028],[103.56985440000005,0.540466500000036],[103.568791,0.539409100000057],[103.56966870000008,0.538673300000028]]],[[[103.56608810000006,0.54722780000003],[103.56234380000006,0.548220300000025],[103.557716,0.543183500000055],[103.55778550000008,0.54023],[103.56010050000003,0.538072400000033],[103.56432140000004,0.53673740000005],[103.56707810000006,0.537868500000059],[103.56952640000009,0.544488100000024],[103.56744940000004,0.547947500000021],[103.56608810000006,0.54722780000003]]],[[[103.62678620000008,0.53605710000005],[103.62851030000007,0.537537300000054],[103.62916210000009,0.54221560000002],[103.625405,0.548608400000035],[103.62386340000006,0.548042200000054],[103.62295830000005,0.539378800000065],[103.62368420000007,0.537498600000049],[103.62678620000008,0.53605710000005]]],[[[103.55389140000005,0.547660200000053],[103.55661370000007,0.548443700000064],[103.55505750000003,0.550706800000057],[103.552775,0.549600100000021],[103.55389140000005,0.547660200000053]]],[[[103.781362,0.540355900000066],[103.77613540000004,0.548476700000037],[103.77467450000006,0.553349500000024],[103.77329130000004,0.553813400000024],[103.77398510000006,0.542752300000075],[103.77636770000004,0.53942660000007],[103.781362,0.540355900000066]]],[[[103.598854,0.530891100000019],[103.59369870000006,0.532468900000026],[103.58968860000004,0.536994800000059],[103.586203,0.545924700000057],[103.58310190000009,0.548818800000049],[103.578277,0.557884900000033],[103.57633450000009,0.558147600000041],[103.56960770000006,0.551109900000029],[103.57611990000004,0.536344700000029],[103.58752640000006,0.529121900000064],[103.59418830000004,0.519395600000053],[103.59620670000004,0.513380700000027],[103.59692170000005,0.495902400000034],[103.59852910000006,0.490413700000033],[103.60454310000006,0.490753300000051],[103.60758990000005,0.495749600000067],[103.61154940000006,0.496690400000034],[103.61926290000008,0.495004900000026],[103.62400140000005,0.506154300000048],[103.62015290000005,0.510552300000029],[103.613184,0.51323560000003],[103.60754260000004,0.517294700000036],[103.60248760000007,0.525729800000022],[103.60195430000005,0.531455700000038],[103.598854,0.530891100000019]]],[[[103.65678650000007,0.558326],[103.65710210000009,0.559620900000027],[103.65565740000005,0.56018860000006],[103.65678650000007,0.558326]]],[[[103.57275030000005,0.55829650000004],[103.57534620000007,0.56128620000004],[103.57347880000003,0.56347210000007],[103.57191830000005,0.560226400000033],[103.57275030000005,0.55829650000004]]],[[[103.63054920000008,0.562915400000065],[103.63234680000005,0.566384200000073],[103.63177010000004,0.568124],[103.62917680000004,0.564130300000045],[103.63054920000008,0.562915400000065]]],[[[103.65750080000004,0.57115310000006],[103.656214,0.57215240000005],[103.65307680000006,0.571220200000027],[103.65282920000004,0.568198700000039],[103.65832080000007,0.560348200000021],[103.66020360000005,0.55275690000002],[103.66273170000005,0.552530300000058],[103.66643290000007,0.554916500000047],[103.66737950000004,0.562103200000024],[103.664443,0.566901100000052],[103.65750080000004,0.57115310000006]]],[[[103.64921160000006,0.570080200000064],[103.65097660000004,0.574330900000064],[103.64895390000004,0.577318600000069],[103.64624090000007,0.577704200000028],[103.64506450000005,0.573582600000066],[103.64642170000008,0.570852400000035],[103.64921160000006,0.570080200000064]]],[[[103.77597620000006,0.574930900000027],[103.77805060000009,0.575936900000045],[103.77605220000004,0.578875800000048],[103.77267110000008,0.58019],[103.770904,0.579261400000064],[103.77597620000006,0.574930900000027]]],[[[103.566709,0.584475600000076],[103.56721090000008,0.585551],[103.56580060000005,0.585410900000056],[103.566709,0.584475600000076]]],[[[103.57080610000008,0.587639700000068],[103.57155620000003,0.589399],[103.57036580000005,0.590197300000057],[103.56900420000005,0.589031400000067],[103.57080610000008,0.587639700000068]]],[[[103.56469760000004,0.589353500000072],[103.56431860000004,0.59113050000002],[103.56308110000003,0.590567],[103.56469760000004,0.589353500000072]]],[[[103.64298580000008,0.587814800000046],[103.64478610000003,0.590710400000034],[103.64376020000009,0.591792700000042],[103.639158,0.590331400000025],[103.638258,0.588543700000059],[103.63985940000003,0.586278400000026],[103.64283590000008,0.586681900000031],[103.64298580000008,0.587814800000046]]],[[[103.63862020000005,0.591929500000049],[103.638872,0.594676700000036],[103.63452320000005,0.5953],[103.63514880000008,0.59205350000002],[103.63862020000005,0.591929500000049]]],[[[103.53559580000007,0.593482400000028],[103.53038760000004,0.59885040000006],[103.527093,0.593399300000044],[103.52425130000006,0.592584500000044],[103.52628350000003,0.59147710000002],[103.526115,0.588408800000025],[103.53128090000007,0.582486900000049],[103.53161880000005,0.585129],[103.53525870000004,0.58743110000006],[103.53559580000007,0.593482400000028]]],[[[103.66035870000007,0.598227100000031],[103.65780420000004,0.599170500000071],[103.65908230000008,0.595294500000023],[103.66209530000003,0.596379800000022],[103.66035870000007,0.598227100000031]]],[[[103.69933960000009,0.607142200000055],[103.69803490000004,0.607859400000052],[103.69736790000007,0.606073200000026],[103.70132710000007,0.604547500000024],[103.70158470000007,0.606257300000038],[103.69933960000009,0.607142200000055]]],[[[103.512774,0.603624600000046],[103.515071,0.604553],[103.51639250000005,0.607592100000033],[103.51469770000006,0.6093],[103.51030930000007,0.608272],[103.51121120000005,0.603718300000025],[103.512774,0.603624600000046]]],[[[103.49449810000004,0.612024400000053],[103.490511,0.611988900000028],[103.49191460000009,0.607449],[103.49509860000006,0.609116500000027],[103.49449810000004,0.612024400000053]]],[[[103.70731580000006,0.612079700000038],[103.70399610000004,0.608678800000064],[103.70518330000004,0.606516300000067],[103.71199220000005,0.60495080000004],[103.71775330000008,0.605620400000021],[103.71420230000007,0.609385900000063],[103.70731580000006,0.612079700000038]]],[[[103.68014630000005,0.60865270000005],[103.67799120000006,0.610481200000038],[103.66857320000008,0.612628800000039],[103.67015990000004,0.61039420000003],[103.68014630000005,0.60865270000005]]],[[[103.56579340000008,0.619834600000047],[103.56526840000004,0.622746100000029],[103.56290450000006,0.622204600000032],[103.563136,0.620398],[103.56579340000008,0.619834600000047]]],[[[103.64068580000009,0.624614800000074],[103.63603950000004,0.625636100000065],[103.632408,0.624320500000067],[103.63298780000008,0.621399200000042],[103.63822150000004,0.615849800000035],[103.65172560000008,0.611179],[103.661598,0.611035400000048],[103.66392490000004,0.613811300000066],[103.663635,0.616440600000033],[103.65418990000006,0.617752900000028],[103.65143570000004,0.62184220000006],[103.64620190000005,0.621256500000072],[103.64068580000009,0.624614800000074]]],[[[103.57337050000007,0.625783900000044],[103.57137180000007,0.62527810000006],[103.57281630000006,0.623647500000061],[103.573996,0.624472200000071],[103.57337050000007,0.625783900000044]]],[[[103.76036330000005,0.623423400000036],[103.76098660000008,0.625796],[103.75765970000003,0.624957900000027],[103.75824930000005,0.623108900000034],[103.76036330000005,0.623423400000036]]],[[[103.55979710000008,0.634288400000059],[103.55744660000005,0.634166600000071],[103.55565810000007,0.632050200000037],[103.55828160000004,0.631534100000067],[103.56046320000007,0.633497200000022],[103.55979710000008,0.634288400000059]]],[[[103.63863540000006,0.635640600000045],[103.62977770000003,0.635346100000049],[103.62919790000007,0.633739200000036],[103.63108240000008,0.630964300000073],[103.63659840000008,0.63155],[103.64197710000008,0.62863],[103.642557,0.632135900000037],[103.63863540000006,0.635640600000045]]],[[[103.67739030000007,0.634845200000029],[103.67443190000006,0.63635110000007],[103.67185190000004,0.635091],[103.67393480000004,0.622628],[103.671069,0.617566600000032],[103.67524940000004,0.612916600000062],[103.682912,0.613061800000025],[103.68530030000005,0.610334400000056],[103.68652150000008,0.604379200000039],[103.68995230000007,0.609346400000049],[103.69366760000008,0.611027100000058],[103.69952250000006,0.608905900000025],[103.70182460000007,0.613508300000035],[103.70697580000007,0.614709800000071],[103.704892,0.619930500000066],[103.69795180000006,0.62343020000003],[103.69424320000007,0.627486300000044],[103.68085470000005,0.633037600000023],[103.67983310000005,0.634974800000066],[103.67739030000007,0.634845200000029]]],[[[103.67102950000009,0.63456750000006],[103.67178880000006,0.636766600000044],[103.67012640000007,0.637315800000067],[103.66948560000009,0.635881700000027],[103.67102950000009,0.63456750000006]]],[[[103.659172,0.632895400000052],[103.66003840000008,0.636564],[103.65805870000008,0.637659800000051],[103.65609160000008,0.633036],[103.659172,0.632895400000052]]],[[[103.55566960000004,0.640381],[103.55520230000008,0.641665700000033],[103.55309640000007,0.639962500000024],[103.55269240000007,0.637695700000052],[103.55607480000003,0.638574100000028],[103.55566960000004,0.640381]]],[[[103.62930470000003,0.639467500000023],[103.628435,0.642713800000024],[103.62520770000003,0.642962700000055],[103.62520770000003,0.639841],[103.62930470000003,0.639467500000023]]],[[[103.58432180000005,0.648497600000042],[103.58419210000005,0.650998900000047],[103.58183470000006,0.652578100000028],[103.58065970000007,0.649154800000019],[103.58340630000004,0.647575800000027],[103.58432180000005,0.648497600000042]]],[[[103.58130820000008,0.654684300000042],[103.57777580000004,0.66231920000007],[103.57175630000006,0.662054100000034],[103.57384670000005,0.655735500000048],[103.57973660000005,0.653894],[103.58130820000008,0.654684300000042]]],[[[103.58601670000007,0.66432960000003],[103.583483,0.664786],[103.58533420000003,0.662234900000044],[103.58717530000007,0.663238400000068],[103.58601670000007,0.66432960000003]]],[[[103.55880160000004,0.671476100000064],[103.559061,0.675689],[103.55631440000008,0.676214800000025],[103.55579560000007,0.672001800000032],[103.55880160000004,0.671476100000064]]],[[[103.57230840000005,0.679502800000023],[103.56868670000006,0.680647],[103.56769250000008,0.679368300000021],[103.56772930000005,0.675417],[103.57205080000006,0.669524900000056],[103.58134680000006,0.669190800000024],[103.58529610000005,0.671039900000039],[103.58596670000009,0.672728500000062],[103.58285770000003,0.673733200000072],[103.58031460000007,0.677004],[103.57496030000004,0.680022200000053],[103.57230840000005,0.679502800000023]]],[[[103.56047170000005,0.683295600000065],[103.56021490000006,0.686845100000028],[103.55810180000009,0.68807350000003],[103.55420730000009,0.682551600000068],[103.55550640000007,0.681557],[103.56047170000005,0.683295600000065]]],[[[103.529436,0.685973500000046],[103.52929110000008,0.688310500000057],[103.52710910000008,0.689770500000066],[103.52696410000004,0.686264900000026],[103.529436,0.685973500000046]]],[[[103.54532040000004,0.686216800000068],[103.54505340000009,0.688849700000048],[103.54230680000006,0.689770400000043],[103.54296290000008,0.686611],[103.54413790000007,0.685426500000062],[103.54532040000004,0.686216800000068]]],[[[103.521035,0.690917],[103.50000190000009,0.689252600000032],[103.49227330000008,0.685387800000058],[103.48233980000003,0.671489700000052],[103.47088260000004,0.644255100000066],[103.46380270000009,0.636034300000063],[103.46496670000005,0.630477900000074],[103.46244660000008,0.62192310000006],[103.47169710000009,0.621828300000061],[103.47503930000005,0.620464500000026],[103.47981330000005,0.62389330000002],[103.48614810000004,0.62553],[103.49003480000005,0.624037200000032],[103.49729810000008,0.637281500000029],[103.511811,0.657592600000044],[103.51557340000005,0.665525900000034],[103.51792330000006,0.68139780000007],[103.52257940000004,0.688328200000058],[103.521035,0.690917]]],[[[103.53386660000007,0.690329500000075],[103.534973,0.690792300000055],[103.53442880000006,0.692037900000059],[103.53305060000008,0.69092390000003],[103.53386660000007,0.690329500000075]]],[[[103.58646190000007,0.67766210000002],[103.590408,0.682183],[103.58973550000007,0.68519150000003],[103.59222440000008,0.690981],[103.58873330000006,0.693599600000027],[103.58797430000004,0.696433600000034],[103.58532910000008,0.697393100000056],[103.58075550000007,0.695383700000036],[103.57787670000005,0.686933200000055],[103.58069870000008,0.681323],[103.58646190000007,0.67766210000002]]],[[[103.55712310000007,0.701503],[103.55285060000006,0.700328],[103.55349910000007,0.697850200000062],[103.55557370000008,0.696519800000033],[103.55726040000008,0.697199300000023],[103.55712310000007,0.701503]]],[[[103.50936680000007,0.702646900000047],[103.50262640000005,0.706163],[103.49746890000006,0.697735500000022],[103.49637240000004,0.69187960000005],[103.51733230000008,0.694232700000043],[103.51623990000007,0.696667500000046],[103.517996,0.698960100000022],[103.513818,0.70017450000006],[103.51262360000004,0.702829400000041],[103.50936680000007,0.702646900000047]]],[[[103.56522960000007,0.710042100000067],[103.56527630000005,0.711512600000049],[103.56373780000007,0.711156100000039],[103.56339180000003,0.710136400000067],[103.56522960000007,0.710042100000067]]],[[[103.65279020000008,0.718383500000073],[103.652814,0.72210270000005],[103.65129410000009,0.719642700000065],[103.65279020000008,0.718383500000073]]],[[[103.74498410000007,0.736236900000051],[103.74431830000003,0.737113200000067],[103.73659170000008,0.732895600000063],[103.72118450000005,0.731067900000028],[103.71217460000008,0.72549870000006],[103.70393540000003,0.727840300000025],[103.69919670000007,0.726988],[103.69278760000009,0.728551100000061],[103.69375860000008,0.723232100000075],[103.69209980000005,0.720515900000066],[103.69544770000005,0.714085200000056],[103.69324680000005,0.71187290000006],[103.69387170000005,0.710219300000063],[103.70557850000006,0.698523700000067],[103.70895070000006,0.700121100000047],[103.71048120000006,0.696238900000026],[103.71380660000005,0.693033700000058],[103.722045,0.687684400000023],[103.72384120000004,0.687621900000067],[103.72451430000007,0.691917],[103.72750340000005,0.692893800000036],[103.73021950000003,0.690304],[103.73460450000005,0.69000010000002],[103.74198690000009,0.685263700000064],[103.74181320000008,0.689981100000068],[103.74080710000004,0.689313800000036],[103.73818040000003,0.695914200000061],[103.73477360000004,0.699577300000044],[103.73659740000005,0.702112100000022],[103.73416080000004,0.704977400000075],[103.731964,0.711852],[103.73397890000007,0.71236870000007],[103.73277910000007,0.713278],[103.73447340000007,0.716980700000022],[103.73572620000004,0.71671],[103.73756750000007,0.7194],[103.74024980000007,0.719426100000021],[103.74177160000005,0.721788200000049],[103.741024,0.723528900000076],[103.74471770000008,0.725653700000066],[103.74445410000004,0.728208800000061],[103.74673930000006,0.729261800000074],[103.74885470000004,0.728280200000029],[103.74769570000007,0.730231400000037],[103.74966560000007,0.735881800000072],[103.74498410000007,0.736236900000051]]],[[[103.65670650000004,0.740314500000068],[103.65413480000007,0.741289700000038],[103.65691330000004,0.736795],[103.66618780000005,0.72951850000004],[103.666541,0.727448200000026],[103.66349910000008,0.724525200000073],[103.66941580000008,0.719470700000045],[103.66978680000005,0.716627],[103.671506,0.716553600000054],[103.67430340000004,0.712438700000064],[103.67544970000006,0.712098800000035],[103.67976030000005,0.716814200000044],[103.67959950000005,0.722873900000025],[103.688424,0.723601300000041],[103.68425490000004,0.730682100000024],[103.68035830000008,0.733625400000051],[103.66329640000004,0.739902500000028],[103.66170990000006,0.738645],[103.65913090000004,0.740818],[103.65670650000004,0.740314500000068]]],[[[103.72554410000004,0.74077920000002],[103.72399580000007,0.741365700000074],[103.72350830000005,0.740063500000076],[103.72536460000003,0.738388500000042],[103.72930150000008,0.738526200000024],[103.726859,0.741217100000028],[103.72554410000004,0.74077920000002]]],[[[103.567995,0.725967100000048],[103.56839170000006,0.734071],[103.57201560000004,0.736638400000061],[103.56798730000008,0.741904500000032],[103.55845060000007,0.748519400000021],[103.55711550000007,0.745817700000032],[103.56100640000005,0.73960610000006],[103.56571380000008,0.726641700000073],[103.567995,0.725967100000048]]],[[[103.58615290000006,0.745332900000051],[103.58511530000004,0.748071400000072],[103.58122430000009,0.749635200000057],[103.58200250000004,0.745592400000021],[103.585245,0.744419700000037],[103.58615290000006,0.745332900000051]]],[[[103.85489610000008,0.749782100000061],[103.85379320000004,0.750657900000022],[103.85371070000008,0.749231100000031],[103.85489610000008,0.749782100000061]]],[[[103.97255550000006,0.753409],[103.96887880000008,0.754682200000047],[103.96439890000005,0.752978900000073],[103.96313730000008,0.747590800000069],[103.97171470000006,0.750088300000073],[103.97454010000007,0.750283200000069],[103.97587020000009,0.748880400000075],[103.97745170000007,0.749739800000043],[103.97255550000006,0.753409]]],[[[103.94187650000003,0.750327800000036],[103.94199960000009,0.754874500000028],[103.93891360000003,0.751497500000028],[103.94147450000008,0.748169500000074],[103.94187650000003,0.750327800000036]]],[[[103.55105490000005,0.755335500000058],[103.54877280000005,0.756236500000057],[103.54740570000007,0.752698700000053],[103.55064180000005,0.749495600000046],[103.55329920000008,0.751648500000044],[103.55274610000004,0.754982700000028],[103.55105490000005,0.755335500000058]]],[[[103.73561540000009,0.756491800000049],[103.73058170000007,0.757823500000029],[103.72422990000007,0.754176600000051],[103.71947790000007,0.75417520000002],[103.725221,0.750472900000034],[103.73307560000006,0.749370900000031],[103.73893510000005,0.751684200000057],[103.73953060000008,0.754821100000072],[103.73561540000009,0.756491800000049]]],[[[103.62834340000006,0.758641300000022],[103.62937340000008,0.760277700000074],[103.62653520000003,0.75994380000003],[103.62834340000006,0.758641300000022]]],[[[103.68791780000004,0.762569800000051],[103.68566640000006,0.763364300000035],[103.68380350000007,0.761348500000054],[103.68493780000006,0.757417700000076],[103.68642890000007,0.756607900000063],[103.68961830000006,0.760345],[103.68791780000004,0.762569800000051]]],[[[103.85856420000005,0.76145310000004],[103.85689980000006,0.764921700000059],[103.85667590000008,0.761497900000052],[103.85856420000005,0.76145310000004]]],[[[103.55234470000005,0.765784100000076],[103.55326260000004,0.767171200000064],[103.55191550000006,0.767633],[103.55234470000005,0.765784100000076]]],[[[103.68007440000008,0.760911100000044],[103.68018320000004,0.765937700000052],[103.67851990000008,0.768370900000036],[103.66890940000008,0.761766400000056],[103.678443,0.757807500000069],[103.680317,0.758173200000044],[103.68007440000008,0.760911100000044]]],[[[103.85250340000005,0.769548900000075],[103.85113460000008,0.76968480000005],[103.84870420000004,0.765969100000063],[103.85264,0.76295680000004],[103.85432340000006,0.769216400000062],[103.85250340000005,0.769548900000075]]],[[[103.98081540000004,0.76191730000005],[103.98016650000005,0.766351300000053],[103.97753910000006,0.770467200000041],[103.97646060000005,0.769815600000072],[103.97684610000005,0.767397],[103.98081540000004,0.76191730000005]]],[[[103.96544530000006,0.767530600000043],[103.96671690000005,0.770242400000029],[103.96530440000004,0.775962500000048],[103.96275940000004,0.777859900000067],[103.95783910000006,0.767968500000052],[103.95463550000005,0.767522900000074],[103.95093230000003,0.763756100000023],[103.95546850000005,0.761417800000061],[103.96544530000006,0.767530600000043]]],[[[103.52965810000006,0.776846300000045],[103.53023690000003,0.781103300000041],[103.52842220000008,0.778993200000059],[103.52965810000006,0.776846300000045]]],[[[103.77326870000007,0.778960500000039],[103.77309660000009,0.781771100000071],[103.76981720000003,0.785761400000069],[103.76818750000007,0.785602700000027],[103.77326870000007,0.778960500000039]]],[[[103.72535930000004,0.788194500000031],[103.72421090000006,0.788740700000062],[103.72480130000008,0.786164300000053],[103.72535930000004,0.788194500000031]]],[[[103.86752870000004,0.781603300000029],[103.85957750000006,0.791641900000059],[103.85851410000004,0.788593200000037],[103.86324060000004,0.784494],[103.86507380000006,0.777758600000027],[103.86865540000008,0.773685],[103.87066780000004,0.774080300000037],[103.86902970000006,0.781027],[103.86752870000004,0.781603300000029]]],[[[103.54009680000007,0.793708200000026],[103.53782520000004,0.795540100000039],[103.53416020000009,0.79340030000003],[103.534419,0.787161400000059],[103.53122650000006,0.78145150000006],[103.53056450000008,0.776137800000072],[103.53198880000008,0.760731900000053],[103.53705380000008,0.757031200000029],[103.542854,0.755160100000069],[103.54445530000004,0.755465600000036],[103.54605620000007,0.759707900000024],[103.54432410000004,0.762364400000024],[103.54440880000004,0.767809200000045],[103.54879670000008,0.769939100000045],[103.550504,0.774523500000043],[103.552717,0.774765600000023],[103.55472890000004,0.777568900000063],[103.55335720000005,0.779431300000056],[103.55430990000008,0.784595500000023],[103.55097990000007,0.786913900000059],[103.54964620000004,0.792763500000035],[103.54581060000004,0.794638],[103.54258180000005,0.794442200000049],[103.54110410000004,0.792652],[103.54009680000007,0.793708200000026]]],[[[103.71011010000007,0.798202500000059],[103.70867550000008,0.797978],[103.71073540000003,0.791147500000022],[103.71716770000006,0.788386200000048],[103.71827480000007,0.792802900000027],[103.71011010000007,0.798202500000059]]],[[[103.84400590000007,0.784177600000021],[103.83842340000007,0.791258],[103.83601750000008,0.802155800000037],[103.83172650000006,0.792148200000042],[103.83379510000003,0.783989800000029],[103.84093790000009,0.783063900000059],[103.84356150000008,0.78058580000004],[103.84400590000007,0.784177600000021]]],[[[103.72582720000008,0.80046470000002],[103.72579610000008,0.801639300000033],[103.72325160000008,0.802158400000053],[103.72309920000004,0.800233],[103.72582720000008,0.80046470000002]]],[[[103.535036,0.802641100000073],[103.53431120000005,0.805562100000031],[103.53192920000004,0.805614300000059],[103.53358640000005,0.802494400000057],[103.535036,0.802641100000073]]],[[[103.52344510000006,0.811350900000036],[103.52424520000005,0.813865300000032],[103.52295110000006,0.814579200000026],[103.52174560000009,0.81295810000006],[103.52344510000006,0.811350900000036]]],[[[103.53154960000006,0.809357800000043],[103.53198460000004,0.811988500000041],[103.52943110000007,0.814529400000026],[103.52660520000006,0.814761600000054],[103.52529990000005,0.813445900000033],[103.52544430000006,0.81052580000005],[103.53154960000006,0.809357800000043]]],[[[103.52335540000007,0.815524800000048],[103.52381980000007,0.81766],[103.52198180000005,0.818181100000061],[103.52120390000005,0.816064200000028],[103.52335540000007,0.815524800000048]]],[[[103.47339820000008,0.813437800000031],[103.471674,0.817198400000052],[103.46664620000007,0.820605200000045],[103.45423320000003,0.822522900000024],[103.45002180000006,0.820756500000073],[103.45329480000004,0.818230600000049],[103.46389960000005,0.815873100000033],[103.46764560000008,0.812936],[103.47293280000008,0.812174],[103.47339820000008,0.813437800000031]]],[[[103.44708450000007,0.822343800000056],[103.451377,0.823842600000035],[103.450107,0.827786700000047],[103.44510110000004,0.828479400000049],[103.44076730000006,0.826383200000066],[103.44708450000007,0.822343800000056]]],[[[103.521036,0.827193400000056],[103.51618060000004,0.831840300000067],[103.51434340000009,0.830226800000048],[103.51547590000007,0.826242600000057],[103.521036,0.827193400000056]]],[[[103.66754840000004,0.830014600000027],[103.66507760000007,0.832245200000045],[103.66083890000004,0.826756400000022],[103.66976110000007,0.815351100000044],[103.67499980000008,0.803447800000072],[103.698229,0.767159100000072],[103.70313840000006,0.75564410000004],[103.70625490000003,0.752926400000035],[103.71386470000004,0.752319400000033],[103.71598420000004,0.75539230000004],[103.71591680000006,0.757772300000056],[103.72042740000006,0.757184600000073],[103.727358,0.758643600000028],[103.72887220000007,0.765714],[103.72592840000004,0.770028700000069],[103.71860590000006,0.774965200000054],[103.70872570000006,0.787942600000065],[103.70435340000006,0.803337700000043],[103.69374030000006,0.80568820000002],[103.67996340000008,0.811608900000067],[103.66754840000004,0.830014600000027]]],[[[103.91701110000008,0.817367400000023],[103.91408480000007,0.819820100000072],[103.90864860000005,0.831922700000064],[103.90663410000008,0.83258630000006],[103.90545460000004,0.816937300000063],[103.89598,0.802332400000068],[103.88759580000004,0.796237500000075],[103.888378,0.793214300000045],[103.89125040000005,0.790918600000055],[103.89931970000004,0.789414],[103.90449580000006,0.781695400000046],[103.91073760000006,0.782943500000044],[103.91379750000004,0.781270300000074],[103.91573420000009,0.773251400000049],[103.91249,0.770408600000053],[103.91365490000004,0.767716500000063],[103.91685590000009,0.766631],[103.91740210000006,0.761484600000074],[103.91601590000005,0.757894400000055],[103.91970750000007,0.754579700000022],[103.92551360000004,0.757672400000047],[103.92390290000009,0.760115100000064],[103.92546270000008,0.763107],[103.93332270000008,0.767260700000065],[103.93605150000008,0.77245750000003],[103.93538210000008,0.774676100000022],[103.94064430000009,0.77899960000002],[103.94131240000007,0.781991300000072],[103.93883430000005,0.783121300000062],[103.94101310000008,0.787210300000027],[103.93696960000005,0.794037500000059],[103.93669620000009,0.79745280000003],[103.92811390000008,0.812223600000038],[103.92331030000008,0.815622],[103.91701110000008,0.817367400000023]]],[[[103.65676820000004,0.833329700000036],[103.659908,0.836739800000032],[103.65285540000008,0.846339],[103.65152080000007,0.840885400000047],[103.65676820000004,0.833329700000036]]],[[[103.344215,0.848703800000067],[103.34294840000007,0.848815400000035],[103.34280710000007,0.847408200000075],[103.344215,0.848703800000067]]],[[[103.34833350000008,0.847982700000045],[103.34844610000005,0.850327400000026],[103.34698040000006,0.849457600000051],[103.34833350000008,0.847982700000045]]],[[[103.50156780000003,0.844452400000023],[103.50316870000006,0.847915800000067],[103.50109490000006,0.848911100000066],[103.50114120000006,0.851045700000043],[103.49798350000003,0.852182900000059],[103.49595810000005,0.850095],[103.49672890000005,0.847194300000069],[103.49916480000007,0.843977100000075],[103.50156780000003,0.844452400000023]]],[[[103.411522,0.854624100000024],[103.412559,0.855639],[103.41147570000004,0.858295100000021],[103.40998270000006,0.857438700000046],[103.411522,0.854624100000024]]],[[[103.70056340000008,0.858697600000028],[103.69741670000008,0.85909810000004],[103.69363210000006,0.856465100000037],[103.69188860000008,0.856865500000026],[103.69360880000005,0.854024],[103.69568820000006,0.838760600000057],[103.69740730000007,0.836655800000074],[103.705726,0.839182300000061],[103.70443510000007,0.839922100000024],[103.70233470000005,0.847464800000068],[103.70250680000004,0.856342300000051],[103.70056340000008,0.858697600000028]]],[[[103.80042890000004,0.854844600000035],[103.79822840000008,0.859843600000033],[103.79489070000005,0.86178330000007],[103.795965,0.858273300000064],[103.80042890000004,0.854844600000035]]],[[[103.65579720000005,0.865081900000064],[103.65643980000004,0.866916600000025],[103.65452550000003,0.865944700000057],[103.65579720000005,0.865081900000064]]],[[[103.90446310000004,0.869557800000052],[103.90310250000005,0.870021700000052],[103.90149010000005,0.868480200000022],[103.90514010000004,0.865562900000043],[103.90446310000004,0.869557800000052]]],[[[103.62494170000008,0.868246300000067],[103.62375720000006,0.87096850000006],[103.62129410000006,0.868877],[103.622696,0.866543900000067],[103.62361350000003,0.867443700000024],[103.62602930000008,0.866545100000053],[103.62494170000008,0.868246300000067]]],[[[103.67631230000006,0.854903100000058],[103.67225170000006,0.860475600000029],[103.67215320000008,0.862747200000058],[103.66262520000004,0.868697200000042],[103.65729030000006,0.874022800000034],[103.65525150000008,0.873351200000059],[103.65497770000007,0.871378],[103.65968420000007,0.868735600000036],[103.67669140000004,0.849067500000046],[103.68219540000007,0.838581],[103.68377560000005,0.829348500000037],[103.69221450000003,0.823311200000035],[103.69408310000006,0.825614],[103.67631230000006,0.854903100000058]]],[[[103.79738960000009,0.875758700000063],[103.79588720000004,0.875483300000042],[103.79829220000005,0.872487400000068],[103.79915160000007,0.875814200000036],[103.79738960000009,0.875758700000063]]],[[[103.79384580000004,0.879366],[103.79246630000006,0.879200600000047],[103.79161930000004,0.876585200000022],[103.79480430000007,0.86985210000006],[103.79674580000005,0.868021900000031],[103.80355370000007,0.866967400000021],[103.80078180000004,0.872352600000056],[103.79937590000009,0.871045800000047],[103.79597180000007,0.872603100000049],[103.79384580000004,0.879366]]],[[[103.80347950000004,0.87948380000006],[103.80248270000004,0.879985],[103.802741,0.878152],[103.80605790000004,0.876579400000026],[103.80600590000006,0.878239600000029],[103.80347950000004,0.87948380000006]]],[[[103.78005820000004,0.879965100000049],[103.77906660000008,0.880287400000043],[103.78048330000007,0.87914],[103.78005820000004,0.879965100000049]]],[[[103.42347310000008,0.877562],[103.42471160000008,0.87987970000006],[103.42174640000007,0.880912800000033],[103.42347310000008,0.877562]]],[[[103.77039840000003,0.882365900000025],[103.76723810000004,0.881134300000042],[103.77225630000004,0.87491110000002],[103.77508010000008,0.873767200000032],[103.77731690000007,0.876061500000048],[103.77595360000004,0.87912110000002],[103.77039840000003,0.882365900000025]]],[[[103.64297320000009,0.881091900000058],[103.64076770000008,0.884594700000036],[103.64110040000008,0.882372500000031],[103.64297320000009,0.881091900000058]]],[[[103.41015430000004,0.88537320000006],[103.40970530000004,0.883806600000071],[103.41122750000005,0.883076300000027],[103.41441530000009,0.875613300000055],[103.411754,0.869125200000042],[103.41446140000005,0.858979100000056],[103.41256150000004,0.85263],[103.41443030000005,0.847328200000049],[103.43877280000004,0.830125800000076],[103.45179820000004,0.830476],[103.45604040000006,0.829092900000035],[103.45923120000003,0.824873800000034],[103.46758030000007,0.825526400000058],[103.47611680000006,0.820549400000061],[103.48430860000008,0.808106400000042],[103.48736250000007,0.800148500000034],[103.49277090000004,0.793810800000074],[103.49544020000008,0.791262800000027],[103.49891470000006,0.79100550000004],[103.50427150000007,0.783439300000055],[103.51529520000008,0.776954600000067],[103.52598130000007,0.766185900000039],[103.52792260000007,0.766577500000039],[103.52871050000005,0.770368200000064],[103.52740450000005,0.780128800000057],[103.53316630000006,0.78741720000005],[103.53175910000004,0.790612800000019],[103.53254550000008,0.795727100000022],[103.53151470000006,0.800820800000054],[103.52523990000009,0.80859010000006],[103.522417,0.809939700000029],[103.51838870000006,0.81696130000006],[103.51057620000006,0.82214220000003],[103.50359530000009,0.829837800000064],[103.49946020000004,0.835981900000036],[103.49958990000005,0.837942600000019],[103.49401280000006,0.844971700000031],[103.47182910000004,0.856724600000064],[103.46157220000003,0.855503300000066],[103.45306640000007,0.856281500000023],[103.44526420000005,0.862995900000044],[103.43395830000009,0.868704200000025],[103.43219830000004,0.871601200000043],[103.421062,0.876320600000042],[103.41015430000004,0.88537320000006]]],[[[103.70246220000007,0.874582100000055],[103.70218890000007,0.88421610000006],[103.70015110000008,0.885648100000026],[103.698237,0.88411590000004],[103.69831130000006,0.882263200000068],[103.70246220000007,0.874582100000055]]],[[[103.79906480000005,0.886050600000033],[103.79909050000003,0.884219900000062],[103.79999540000006,0.885620700000061],[103.79906480000005,0.886050600000033]]],[[[103.75336750000008,0.881581],[103.74915910000004,0.886173800000051],[103.73188830000004,0.881311],[103.72508310000006,0.881806800000049],[103.72477170000008,0.874742600000047],[103.71797590000006,0.873361200000033],[103.71759090000006,0.871695400000021],[103.72098930000004,0.865738],[103.72054890000004,0.85142460000003],[103.73183730000005,0.841095700000039],[103.73766330000007,0.827843700000074],[103.74230080000007,0.822842600000058],[103.75269720000006,0.815502400000071],[103.75978040000007,0.804287300000055],[103.77224610000007,0.795653600000037],[103.78453940000009,0.793151700000067],[103.79036740000004,0.785452200000066],[103.796724,0.782150700000045],[103.80097890000008,0.777514600000075],[103.80797980000006,0.777274],[103.82024460000008,0.772388400000068],[103.82302550000009,0.766486],[103.82315590000007,0.762895700000058],[103.82083870000008,0.754816400000038],[103.818759,0.752869200000021],[103.82394190000008,0.750868800000035],[103.82699840000004,0.75242940000004],[103.830502,0.75219160000006],[103.83010590000004,0.756491],[103.83173270000003,0.759898600000042],[103.83446960000003,0.761148200000036],[103.83456190000004,0.764094500000056],[103.835894,0.764186700000039],[103.83478040000006,0.765912700000058],[103.83578320000004,0.770181800000046],[103.83342640000006,0.776985700000068],[103.83459350000004,0.779931300000044],[103.831156,0.793147900000065],[103.83542130000006,0.804302800000073],[103.83392150000009,0.810858200000041],[103.83486480000005,0.81197190000006],[103.82937770000007,0.814956300000063],[103.82406370000007,0.820616200000075],[103.80935510000006,0.845273900000052],[103.79576150000008,0.855352500000038],[103.783716,0.870981300000039],[103.778875,0.874011500000051],[103.775204,0.872289200000068],[103.77224290000004,0.872697500000072],[103.76553860000007,0.880471400000033],[103.75857810000008,0.87968],[103.75336750000008,0.881581]]],[[[103.80632310000004,0.881251700000064],[103.80479560000003,0.88698590000007],[103.80219010000008,0.882244100000037],[103.80379320000009,0.880601600000034],[103.80632310000004,0.881251700000064]]],[[[103.80093750000003,0.888370800000075],[103.801157,0.890484400000048],[103.79904070000003,0.88835320000004],[103.79412940000009,0.88806180000006],[103.79755380000006,0.881511500000045],[103.79739850000004,0.886031900000035],[103.80093750000003,0.888370800000075]]],[[[103.79582820000007,0.894446],[103.79427080000005,0.893680800000027],[103.79535420000008,0.891406200000063],[103.79921080000008,0.890298700000073],[103.80019750000008,0.893357700000024],[103.79582820000007,0.894446]]],[[[103.39763850000008,0.891817600000024],[103.39775290000006,0.893239700000038],[103.395609,0.894725400000027],[103.39763850000008,0.891817600000024]]],[[[103.37826140000004,0.894881100000021],[103.37634390000005,0.896969100000035],[103.37138250000004,0.894767400000035],[103.36959990000008,0.891927700000053],[103.37186380000009,0.885907700000075],[103.370415,0.875970900000027],[103.36919260000008,0.87265130000003],[103.36553390000006,0.871207600000048],[103.36692250000004,0.869989900000064],[103.36583150000007,0.868234],[103.36857810000004,0.866974800000037],[103.36828820000005,0.862935100000072],[103.36607560000004,0.856474],[103.35990350000009,0.847000600000058],[103.35367360000004,0.843679],[103.35323520000009,0.836399300000039],[103.350376,0.833381300000042],[103.35189030000004,0.825972400000069],[103.35138260000008,0.817602600000043],[103.35011480000009,0.818404500000042],[103.35089220000003,0.816944100000057],[103.34938090000009,0.811339500000031],[103.34240160000007,0.800938600000052],[103.34964520000005,0.787464500000056],[103.351649,0.765660900000057],[103.351527,0.740765600000032],[103.35666920000006,0.733655700000043],[103.35975990000009,0.725210100000027],[103.36559570000009,0.717444400000034],[103.36775990000007,0.712171200000057],[103.396349,0.679841100000033],[103.401331,0.670661300000063],[103.40048720000004,0.64902010000003],[103.40696940000004,0.647718900000029],[103.41179280000006,0.649074700000028],[103.41332970000008,0.648357100000055],[103.41293220000006,0.64703140000006],[103.41396590000005,0.647928200000024],[103.415064,0.646409700000049],[103.41781590000005,0.646599700000024],[103.42200770000005,0.642850600000031],[103.42924570000008,0.640516600000069],[103.43159970000005,0.636851100000058],[103.44804880000004,0.638486800000067],[103.45732660000004,0.637563600000021],[103.45982310000005,0.639621800000043],[103.46714210000005,0.653262500000039],[103.47596170000008,0.672448400000064],[103.49183840000006,0.696540900000059],[103.501749,0.716090500000064],[103.50429720000005,0.718387300000074],[103.50737950000007,0.733244800000023],[103.51301760000007,0.744456600000035],[103.51288030000006,0.755126200000063],[103.50910540000007,0.762730800000043],[103.48957490000004,0.789286200000049],[103.47248270000006,0.809229800000026],[103.46415140000005,0.814505900000029],[103.45449260000004,0.816483900000037],[103.44119780000005,0.82290080000007],[103.41130260000006,0.844929700000023],[103.40671130000004,0.859207600000047],[103.41093320000004,0.86296040000002],[103.40832710000007,0.869895700000029],[103.40873880000004,0.876571600000034],[103.40554250000008,0.882346],[103.40367420000007,0.883172300000069],[103.40271390000004,0.880613600000061],[103.400391,0.880132500000059],[103.39846080000007,0.882741],[103.39990780000005,0.885375],[103.39812350000005,0.886334400000067],[103.39638180000009,0.884809800000028],[103.39087270000005,0.886879200000067],[103.39220010000008,0.88721380000004],[103.392116,0.889885700000036],[103.384453,0.891559500000028],[103.37826140000004,0.894881100000021]]],[[[103.82251320000006,0.89170770000004],[103.81052740000007,0.899536900000044],[103.80963340000005,0.897188700000072],[103.81373410000003,0.891769500000066],[103.81028810000004,0.893584800000042],[103.80934060000004,0.890495],[103.81483960000008,0.882817600000067],[103.82146410000007,0.861482600000045],[103.83237970000005,0.843151100000057],[103.85172350000005,0.824327800000049],[103.85903460000009,0.819386700000052],[103.86305240000007,0.820074300000044],[103.86544180000004,0.817980500000033],[103.872514,0.807751300000064],[103.87481480000008,0.807183100000032],[103.87911090000006,0.800677200000052],[103.88372830000009,0.797039200000029],[103.88406690000005,0.800488100000052],[103.88752460000006,0.806937800000071],[103.88961860000006,0.799634400000059],[103.89414780000004,0.801761900000031],[103.90487550000006,0.819275900000036],[103.90463050000005,0.839880300000061],[103.90615880000007,0.842989],[103.90236720000007,0.84955530000002],[103.89253230000008,0.859464800000069],[103.87269680000009,0.874037],[103.86853540000004,0.874633],[103.86872470000009,0.876315],[103.86285680000009,0.88110480000006],[103.85509110000004,0.880075200000022],[103.83677930000005,0.883938700000044],[103.83099460000005,0.888170700000046],[103.82251320000006,0.89170770000004]]],[[[103.75266810000005,0.901154700000063],[103.74564240000007,0.899439700000073],[103.74438070000008,0.896673100000044],[103.74496490000007,0.894002100000023],[103.74882770000005,0.891375],[103.75176970000007,0.886018100000058],[103.75761310000007,0.883145900000045],[103.76788250000004,0.884030500000051],[103.768619,0.886755400000027],[103.76762410000003,0.888104400000032],[103.75266810000005,0.901154700000063]]],[[[103.83682890000006,0.903418200000033],[103.835142,0.905680700000062],[103.83177110000008,0.90146210000006],[103.83825970000004,0.902955800000029],[103.83682890000006,0.903418200000033]]],[[[103.36931970000006,0.901521900000034],[103.36820730000005,0.905433300000027],[103.36575710000005,0.906286900000055],[103.36402810000004,0.901420900000062],[103.36546730000003,0.897115300000053],[103.37337160000004,0.898105],[103.37242330000004,0.900339900000063],[103.36931970000006,0.901521900000034]]],[[[103.79797970000004,0.903615900000034],[103.794852,0.908730500000047],[103.79061310000009,0.90224],[103.794787,0.900021500000037],[103.797163,0.896880200000055],[103.80048730000004,0.898964600000056],[103.80150430000003,0.901628900000048],[103.79797970000004,0.903615900000034]]],[[[103.40255940000009,0.906218700000068],[103.40499310000007,0.910955900000033],[103.40162860000004,0.911884600000064],[103.39876760000004,0.910783900000069],[103.39918720000009,0.90769720000003],[103.40255940000009,0.906218700000068]]],[[[103.358399,0.912342300000034],[103.35752,0.905701700000066],[103.35928450000006,0.904387600000064],[103.36281,0.909287200000051],[103.358399,0.912342300000034]]],[[[103.80252530000007,0.915389400000038],[103.80789340000007,0.907907700000067],[103.80938030000004,0.90777810000003],[103.80905580000007,0.911682400000075],[103.80252530000007,0.915389400000038]]],[[[103.34147030000008,0.914429200000029],[103.33838,0.916677700000037],[103.33638880000007,0.915490500000033],[103.33736640000006,0.910991100000047],[103.33484750000008,0.908249200000057],[103.33432080000006,0.90504530000004],[103.33265440000008,0.904717300000073],[103.33456560000008,0.903081900000075],[103.33330670000004,0.900545100000045],[103.33432820000007,0.898901],[103.34018370000007,0.89399480000003],[103.34399170000006,0.911771500000043],[103.34147030000008,0.914429200000029]]],[[[103.34285170000004,0.916567600000064],[103.34045370000007,0.916034700000068],[103.34179560000007,0.915012700000034],[103.34285170000004,0.916567600000064]]],[[[103.46393,0.922769300000027],[103.46218720000007,0.922344],[103.464339,0.921068200000036],[103.46393,0.922769300000027]]],[[[103.35019810000006,0.921392800000035],[103.35112540000006,0.923222800000076],[103.34990450000004,0.924181800000042],[103.34862120000008,0.922415600000022],[103.35019810000006,0.921392800000035]]],[[[103.43759240000009,0.925381200000061],[103.43495550000006,0.924670900000024],[103.42864240000006,0.916245400000037],[103.42279750000006,0.911614800000052],[103.41741310000003,0.910577700000033],[103.41198160000005,0.91141790000006],[103.40633590000004,0.908835400000044],[103.40531360000006,0.902901300000053],[103.41018220000007,0.892476100000067],[103.41965330000005,0.88233230000003],[103.42508150000003,0.881026100000042],[103.42573760000005,0.877168100000063],[103.43351070000006,0.872524],[103.43541080000006,0.869254700000056],[103.43953710000005,0.868668],[103.45312450000006,0.859512],[103.45936720000009,0.857381],[103.472147,0.858325300000047],[103.47999760000005,0.855335800000034],[103.48682590000004,0.854822500000068],[103.48790170000007,0.856061300000022],[103.48739050000006,0.861685400000056],[103.48347660000007,0.867590200000052],[103.483204,0.880977500000029],[103.47809870000003,0.895302800000024],[103.47901980000006,0.906834600000025],[103.47545020000007,0.913913600000058],[103.46038350000003,0.921942700000045],[103.44939010000007,0.921734600000036],[103.43759240000009,0.925381200000061]]],[[[103.52732790000005,0.867736900000068],[103.52856520000006,0.869294600000046],[103.52687170000007,0.878799],[103.51686610000007,0.898792200000059],[103.51119780000005,0.906008400000076],[103.50932550000005,0.912389300000029],[103.50569860000007,0.916481],[103.49656560000005,0.921695100000022],[103.49215960000004,0.925949200000048],[103.489728,0.926142800000036],[103.48655080000003,0.916035200000067],[103.48628570000005,0.898953400000039],[103.49512350000003,0.874219400000072],[103.50102420000007,0.864541400000064],[103.50397680000003,0.861436300000037],[103.51284210000006,0.86022440000005],[103.51810220000004,0.866641300000026],[103.52732790000005,0.867736900000068]]],[[[103.38597010000007,0.927095100000031],[103.38197240000005,0.926584],[103.38051930000006,0.92471850000004],[103.38642,0.923571],[103.38597010000007,0.927095100000031]]],[[[103.34761990000004,0.92671770000004],[103.34749440000007,0.928287200000057],[103.34621140000007,0.927596],[103.34761990000004,0.92671770000004]]],[[[103.34082140000004,0.926483700000063],[103.34418790000007,0.929221],[103.343221,0.930893500000025],[103.33877440000003,0.928942100000029],[103.34082140000004,0.926483700000063]]],[[[103.37391630000008,0.930651600000033],[103.37513650000005,0.935005700000033],[103.37239550000004,0.932249800000022],[103.37391630000008,0.930651600000033]]],[[[103.44029380000006,0.938257700000065],[103.43921130000007,0.935592800000052],[103.44140970000007,0.92830680000003],[103.44408780000003,0.924812],[103.45359290000005,0.923237700000072],[103.46114980000004,0.925121500000046],[103.460908,0.929622300000062],[103.457097,0.934141400000044],[103.448157,0.935319900000025],[103.44029380000006,0.938257700000065]]],[[[103.34425330000005,0.938357200000041],[103.34484090000007,0.939268100000049],[103.343484,0.939221900000064],[103.34425330000005,0.938357200000041]]],[[[103.41737680000006,0.949878],[103.41638370000004,0.948446100000069],[103.41716420000006,0.946034600000075],[103.413146,0.940804200000059],[103.40889830000003,0.940723800000058],[103.41531720000006,0.932571200000041],[103.41233920000008,0.920235900000023],[103.41458480000006,0.916717300000073],[103.41966160000004,0.913285200000075],[103.42400610000004,0.914757800000075],[103.42859860000004,0.918636200000037],[103.43358670000003,0.92613590000002],[103.43869470000004,0.929162400000052],[103.43935770000007,0.931723],[103.43617690000008,0.937589600000024],[103.42951940000006,0.944798100000071],[103.42105080000005,0.947307500000022],[103.41737680000006,0.949878]]],[[[103.49372760000006,0.944821500000046],[103.49428250000005,0.949876700000061],[103.49037760000004,0.950453400000072],[103.48860280000008,0.946796300000074],[103.48965130000005,0.94275250000004],[103.49415830000004,0.943923],[103.49372760000006,0.944821500000046]]],[[[103.49578350000007,0.951762200000076],[103.49397530000005,0.953785800000048],[103.49274130000003,0.95247930000005],[103.49644590000008,0.949647600000048],[103.49578350000007,0.951762200000076]]],[[[103.445051,0.961739100000045],[103.43704480000008,0.96143150000006],[103.43298490000006,0.958268900000064],[103.427653,0.957965900000033],[103.42654030000006,0.956064300000037],[103.43004870000004,0.954316300000073],[103.43873740000004,0.940792400000021],[103.44813530000005,0.936295800000039],[103.45647220000006,0.935671400000047],[103.46158330000009,0.930244300000027],[103.46378180000005,0.924783400000024],[103.47593720000003,0.920153200000073],[103.47838440000004,0.924091100000055],[103.47661340000008,0.933781100000033],[103.47797740000004,0.935402600000032],[103.47575940000007,0.93934820000004],[103.47672980000004,0.943747900000062],[103.47361160000008,0.949736600000051],[103.47187670000005,0.949295100000029],[103.46978080000008,0.951003700000058],[103.470082,0.952637500000037],[103.46300190000005,0.959212500000035],[103.45927370000004,0.959180900000035],[103.45584710000008,0.957329400000049],[103.445051,0.961739100000045]]],[[[103.358058,0.961984500000028],[103.355914,0.961363],[103.35728330000006,0.956535300000041],[103.36158130000007,0.951270900000054],[103.364101,0.95100240000005],[103.36511120000006,0.956941900000061],[103.36197190000007,0.960799500000064],[103.358058,0.961984500000028]]],[[[103.29569250000009,0.98703770000003],[103.29278360000006,0.988796],[103.29238540000006,0.990782200000069],[103.290934,0.989619600000026],[103.290999,0.986919800000067],[103.29712350000005,0.984484100000032],[103.29746950000003,0.980167600000073],[103.29981110000006,0.978424500000074],[103.303045,0.978772400000025],[103.29733720000007,0.986635900000067],[103.29569250000009,0.98703770000003]]],[[[103.39012160000004,0.988318500000048],[103.37914290000003,0.995074200000033],[103.37604540000007,0.994878400000061],[103.37149070000004,0.99168990000004],[103.37458060000006,0.987728],[103.37813590000007,0.987729800000068],[103.387375,0.983110300000021],[103.38935110000006,0.983616500000039],[103.39012160000004,0.988318500000048]]],[[[103.28890770000004,1.087630900000022],[103.29258890000006,1.095794600000033],[103.28939990000003,1.101224100000024],[103.28524010000007,1.089412100000061],[103.28890770000004,1.087630900000022]]],[[[103.32651940000005,1.117914],[103.32390230000004,1.11674720000002],[103.32468250000005,1.113016900000048],[103.32705440000007,1.114867600000025],[103.32651940000005,1.117914]]],[[[103.29123930000009,1.119499900000051],[103.28838290000004,1.118904100000066],[103.29168280000005,1.117639],[103.29123930000009,1.119499900000051]]],[[[103.33267090000004,1.123651800000061],[103.33229690000007,1.125382900000034],[103.33115450000008,1.124091],[103.33357720000004,1.119896600000061],[103.333998,1.122496500000068],[103.33267090000004,1.123651800000061]]],[[[103.29304480000008,1.130074900000068],[103.29193350000008,1.129152100000056],[103.29282290000003,1.127727800000059],[103.29304480000008,1.130074900000068]]],[[[103.37499170000007,1.136683],[103.37397920000006,1.13742620000005],[103.37315630000006,1.136163700000054],[103.37467670000007,1.130772300000046],[103.37230850000009,1.126982600000076],[103.37279880000006,1.125191700000073],[103.36976520000007,1.122642800000051],[103.36450110000004,1.127787700000056],[103.36366110000006,1.133350500000063],[103.35840630000007,1.130814200000032],[103.35718640000005,1.133571],[103.3511,1.13472820000004],[103.34772550000008,1.129905200000053],[103.34870690000008,1.130189700000074],[103.35012140000003,1.126872800000058],[103.34861490000009,1.125531],[103.346327,1.127967700000056],[103.34640020000006,1.124450400000057],[103.34464250000008,1.124172],[103.34483810000006,1.126252],[103.34302690000004,1.124631300000033],[103.34400290000008,1.122868800000049],[103.34231630000005,1.122119800000064],[103.341673,1.118022300000064],[103.33975820000006,1.116871200000048],[103.33329390000006,1.118145200000072],[103.33463,1.116669500000057],[103.33423190000008,1.113948500000049],[103.33263240000008,1.112416900000028],[103.32997630000006,1.113982400000054],[103.32787290000005,1.112034400000027],[103.32843510000004,1.103268300000025],[103.32648660000007,1.100108100000057],[103.32682230000006,1.097245],[103.32382170000005,1.094935700000065],[103.32272680000005,1.090563600000053],[103.32104080000005,1.089696200000049],[103.31759660000006,1.090714300000059],[103.32010340000005,1.088641700000039],[103.31870160000005,1.08684640000007],[103.31153380000006,1.087109800000064],[103.31012020000009,1.076515700000073],[103.31226860000004,1.070975600000054],[103.31304190000009,1.072458200000028],[103.31881160000006,1.07159050000007],[103.32091460000004,1.067444700000067],[103.32313390000007,1.066802500000051],[103.31483420000006,1.060346200000026],[103.31168520000006,1.055771500000048],[103.31625880000007,1.044382],[103.31981340000004,1.044009200000062],[103.32062690000004,1.041829500000063],[103.32066010000005,1.037114400000064],[103.31701980000008,1.03682770000006],[103.31635860000006,1.034880700000031],[103.31892410000006,1.034711200000061],[103.32026250000007,1.03626840000004],[103.32779520000008,1.035716800000046],[103.331659,1.027456100000052],[103.33061460000005,1.022799200000065],[103.32719770000006,1.019057900000064],[103.33148780000005,1.01756430000006],[103.33271820000004,1.020001],[103.33441820000007,1.017523100000062],[103.34455810000009,1.016513800000041],[103.35070010000004,1.013631600000053],[103.35312480000005,1.011060600000064],[103.35053140000008,1.010240100000033],[103.352387,1.009993300000076],[103.35072570000005,1.004836400000045],[103.35523310000008,1.004159200000061],[103.35688520000008,1.007824],[103.36111490000008,1.006683100000032],[103.36651520000004,1.01045780000004],[103.37506620000005,1.010230600000057],[103.38566420000006,1.006578900000022],[103.39485270000006,0.992300900000032],[103.40679360000007,0.991060400000038],[103.40946380000008,0.992361100000039],[103.414292,0.991945100000066],[103.41640910000007,0.994893300000058],[103.41563990000009,0.99765130000003],[103.41797550000007,0.997974400000032],[103.41903230000008,0.996150400000033],[103.42050380000006,0.996687700000052],[103.41826480000009,0.995033800000044],[103.41805230000006,0.992547500000057],[103.42075440000008,0.993740900000034],[103.42625480000004,0.992693400000064],[103.43748890000006,0.98760180000005],[103.44581740000007,0.993529200000069],[103.44642460000006,0.995279],[103.44142090000008,1.003752800000029],[103.43230830000005,1.013305100000025],[103.43040320000006,1.018983200000037],[103.43137090000005,1.023374900000022],[103.42544980000008,1.026009400000021],[103.42554290000004,1.031366500000047],[103.42089550000009,1.039860800000042],[103.42180970000004,1.04340940000003],[103.42450040000006,1.045283900000072],[103.42217450000004,1.046753200000069],[103.41836790000008,1.045570700000042],[103.41518250000007,1.046588800000052],[103.41072320000006,1.044966],[103.41151110000004,1.047757],[103.41049470000007,1.049242100000072],[103.40780150000006,1.050867400000072],[103.40524920000007,1.050058],[103.40352750000005,1.052238],[103.39985520000005,1.051902700000028],[103.39725840000006,1.055303800000047],[103.39845010000005,1.058162300000049],[103.39000110000006,1.064933100000076],[103.389052,1.074490100000048],[103.38679420000005,1.075679],[103.38164370000004,1.086890800000049],[103.38178920000007,1.091310100000044],[103.38497670000004,1.09245420000002],[103.38004440000009,1.096263],[103.38120310000005,1.100741600000049],[103.37979740000009,1.105136],[103.38033770000004,1.110459300000059],[103.38329040000008,1.111562100000071],[103.38258210000004,1.115961200000072],[103.39024880000005,1.119521400000053],[103.38186680000007,1.133301800000027],[103.37499170000007,1.136683]]],[[[103.30098220000008,1.14178830000003],[103.29818110000008,1.139594500000044],[103.30066150000005,1.137953300000049],[103.30126190000004,1.132039900000052],[103.29544140000007,1.127246],[103.29509850000005,1.125182400000028],[103.29894580000007,1.124279500000057],[103.30065390000004,1.12176160000007],[103.296164,1.120196700000065],[103.29467190000008,1.121360400000071],[103.29533540000006,1.119694100000061],[103.29391360000005,1.118361500000049],[103.29437980000006,1.115864300000055],[103.29756650000007,1.114243300000055],[103.30365410000007,1.113647],[103.30593640000006,1.115011200000026],[103.30850190000007,1.119951100000037],[103.31018260000008,1.131237200000044],[103.30749090000006,1.134102900000073],[103.30868250000003,1.139839700000039],[103.30198890000008,1.138586400000065],[103.30098220000008,1.14178830000003]]],[[[103.296605,1.14297780000004],[103.29629840000007,1.145011900000043],[103.29542170000008,1.144163100000071],[103.296605,1.14297780000004]]],[[[103.39010580000007,1.165139700000054],[103.38890060000006,1.165886500000056],[103.38188760000008,1.16116420000003],[103.38015060000004,1.155457100000035],[103.380818,1.152637500000026],[103.37924560000005,1.15124430000003],[103.381915,1.148793700000056],[103.38568880000008,1.141130800000042],[103.39170970000004,1.135879700000032],[103.39468970000007,1.129390400000034],[103.39825350000007,1.131842200000051],[103.40672850000004,1.128982800000074],[103.40939180000004,1.129356600000051],[103.41115530000008,1.132008800000051],[103.41004770000006,1.133551300000022],[103.41074920000005,1.139164100000073],[103.40848250000005,1.142583100000024],[103.40942690000008,1.143600800000058],[103.40503090000004,1.149433],[103.40185440000005,1.149867100000051],[103.40094970000007,1.153291300000035],[103.39897740000004,1.153086300000041],[103.39533710000006,1.156199100000038],[103.39486810000005,1.161324900000068],[103.39010580000007,1.165139700000054]]],[[[103.34604160000004,1.187166700000034],[103.34540470000007,1.188376800000071],[103.34468790000005,1.186518],[103.34626910000009,1.186126],[103.34604160000004,1.187166700000034]]]]},"properties":{"shapeName":"Karimun","shapeISO":"","shapeID":"22746128B34497928430318","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[97.982836,3.086754700000029],[97.98734560000008,3.091227100000026],[97.99129770000008,3.091875500000071],[97.999023,3.087264700000048],[98.00275370000008,3.087558900000033],[98.00426960000004,3.085348300000021],[98.01352680000008,3.082501600000057],[98.01596060000008,3.083335400000067],[98.02311110000005,3.080329800000072],[98.02776060000008,3.081699],[98.03169670000005,3.078062800000055],[98.03839150000005,3.078570900000045],[98.03617960000008,3.091229700000042],[98.02935120000006,3.100307100000066],[98.02800420000005,3.105514500000027],[98.031445,3.114711300000067],[98.02802060000005,3.121673800000053],[98.03006370000008,3.123276],[98.03585340000006,3.123893200000055],[98.04281630000008,3.121546300000034],[98.05041750000004,3.120988400000044],[98.05340020000006,3.119061400000021],[98.05969780000004,3.110171500000035],[98.06777320000003,3.102663800000073],[98.07557660000003,3.084769700000038],[98.07733330000008,3.074557800000036],[98.08540510000006,3.070893500000068],[98.09804630000008,3.071045500000025],[98.10571950000008,3.058657700000026],[98.10928040000005,3.055397400000061],[98.12335880000006,3.053808700000047],[98.13171630000005,3.048956500000031],[98.13905440000008,3.048409100000072],[98.15574320000007,3.06718410000002],[98.16989010000003,3.078625400000021],[98.17383950000004,3.079582],[98.19150950000005,3.052981200000033],[98.19623030000008,3.049979400000041],[98.19803450000006,3.045551],[98.19736020000005,3.031983700000069],[98.19204760000008,3.021201700000063],[98.19633070000003,3.000432600000067],[98.19639430000007,2.993922800000064],[98.20081640000006,2.98410210000003],[98.20440990000009,2.980317200000059],[98.20638750000006,2.972329300000069],[98.21589910000006,2.965352800000062],[98.22194840000009,2.952303500000028],[98.24674560000005,2.932427100000041],[98.24883060000008,2.93121960000002],[98.26949770000004,2.953813500000024],[98.29550330000006,2.965933200000052],[98.302338,2.965255300000024],[98.31138120000008,2.971102100000053],[98.31520950000004,2.970381600000053],[98.31884530000008,2.967064500000049],[98.34426330000008,2.966189800000052],[98.34845240000004,2.962724500000036],[98.363721,2.937309],[98.368501,2.932453],[98.38647020000008,2.925193600000057],[98.41198910000008,2.922462100000075],[98.42936340000006,2.917362600000047],[98.43359340000006,2.897273300000052],[98.43556320000005,2.893545200000062],[98.43996440000006,2.890313],[98.44857420000005,2.890659700000072],[98.45432990000006,2.884155600000042],[98.46248730000008,2.88083940000007],[98.47276550000004,2.874156600000049],[98.48954290000006,2.869074800000021],[98.49939260000008,2.868156400000032],[98.511569,2.869293700000071],[98.52137910000005,2.874882700000057],[98.51693890000007,2.879294300000026],[98.51752470000008,2.881149600000072],[98.523323,2.885185600000057],[98.52043260000005,2.896057900000073],[98.52466210000006,2.895812300000046],[98.52840810000004,2.897726],[98.53488120000009,2.894713100000047],[98.54166040000007,2.883119300000033],[98.54007240000004,2.87918970000004],[98.54117190000005,2.87431],[98.544332,2.874396800000056],[98.54558160000005,2.872865700000034],[98.549252,2.874474900000052],[98.55278140000007,2.873857900000075],[98.554993,2.876541700000075],[98.55403860000007,2.881739200000027],[98.55043390000009,2.880575100000044],[98.548869,2.881367900000043],[98.55108430000007,2.887209600000062],[98.54915080000006,2.891162],[98.54859140000008,2.89533380000006],[98.54486250000008,2.898136500000021],[98.54044110000007,2.897206],[98.53263060000006,2.905176200000028],[98.53484820000006,2.928232300000047],[98.54549560000004,2.944330900000068],[98.54746390000008,2.949507100000062],[98.54699380000005,2.95475650000003],[98.54860320000006,2.960539],[98.55361360000006,2.968898500000023],[98.54999130000004,2.973057100000062],[98.54922570000008,2.978058800000042],[98.55151250000006,2.987543800000026],[98.55449120000009,2.991358400000024],[98.55333140000005,2.996855200000027],[98.55107250000003,3.000069300000064],[98.55325350000004,3.006611500000076],[98.55431450000003,3.016839100000027],[98.55747390000005,3.021633500000064],[98.55620330000005,3.026559700000064],[98.56010190000006,3.030141700000058],[98.56613020000003,3.032957500000066],[98.57561370000008,3.048025500000051],[98.58010290000004,3.050891700000022],[98.58636980000006,3.062428900000043],[98.58287540000003,3.075492500000053],[98.58373950000004,3.079931800000054],[98.59541020000006,3.095106100000066],[98.60059290000004,3.095157800000038],[98.60454960000004,3.099212900000055],[98.60528960000005,3.104056400000047],[98.60636410000006,3.109571300000027],[98.60957960000007,3.110865600000068],[98.62201310000006,3.104839600000048],[98.62908410000006,3.117251500000066],[98.62746060000006,3.126129],[98.623859,3.13173560000007],[98.61961580000008,3.132691500000021],[98.61630150000008,3.130613700000026],[98.61529930000006,3.131334500000037],[98.61514910000005,3.136047100000042],[98.611917,3.145893800000067],[98.60285770000007,3.157877],[98.60126020000007,3.162539200000026],[98.60348390000007,3.170124900000076],[98.60122970000003,3.177323500000057],[98.60274970000006,3.181489500000055],[98.60495150000008,3.181826100000023],[98.61108820000004,3.179142600000034],[98.61518110000009,3.183558300000072],[98.61214610000007,3.194810200000063],[98.62164220000005,3.20694960000003],[98.62093320000008,3.217593],[98.62674570000007,3.222220700000037],[98.62220380000008,3.232344],[98.59975820000005,3.222744300000045],[98.59424670000004,3.217716400000029],[98.587935,3.218642800000055],[98.57410760000005,3.209490800000026],[98.56805730000008,3.208584700000074],[98.56454240000005,3.205449500000043],[98.56243460000007,3.201042600000051],[98.55901290000008,3.199344600000074],[98.55595510000006,3.200307900000041],[98.55347830000005,3.220122100000026],[98.54519340000007,3.231881600000065],[98.53730870000004,3.238239700000065],[98.52547140000007,3.241088200000036],[98.52012450000007,3.240165500000046],[98.51385990000006,3.24355],[98.50552860000005,3.240051700000038],[98.49980890000006,3.241596],[98.49249960000009,3.237831400000061],[98.48769060000006,3.226681400000075],[98.48093350000005,3.222549400000048],[98.47417580000007,3.222964200000035],[98.46560530000005,3.230413],[98.46126350000009,3.231196300000022],[98.457364,3.234421900000029],[98.45155890000007,3.245492400000046],[98.44782860000004,3.248282700000061],[98.44458860000003,3.247447400000055],[98.43593960000004,3.237646200000029],[98.43191480000007,3.235963300000037],[98.42988510000004,3.236477400000069],[98.41949030000006,3.246498100000053],[98.40483010000008,3.247484900000075],[98.39931350000006,3.249553900000024],[98.39998340000005,3.257372900000064],[98.39844020000004,3.262885500000039],[98.388309,3.269604300000026],[98.38110120000005,3.270116300000041],[98.37736890000008,3.273299300000076],[98.37362630000007,3.273931700000048],[98.35889820000006,3.286345400000073],[98.35515050000004,3.287392300000022],[98.35116540000007,3.287649400000021],[98.35503250000005,3.271043400000053],[98.35904840000006,3.260816200000022],[98.36096210000005,3.250940900000046],[98.36626250000006,3.245337100000029],[98.35694630000006,3.229466200000047],[98.34854220000005,3.222101400000042],[98.34004950000008,3.219048600000065],[98.32611870000005,3.222259200000053],[98.31397940000005,3.227134200000023],[98.29795190000004,3.228866100000062],[98.29309830000005,3.243221500000061],[98.28822250000007,3.247159600000032],[98.28888210000008,3.252814700000044],[98.28752470000006,3.254843600000072],[98.28466830000008,3.254986600000052],[98.27967920000003,3.252054200000032],[98.27494620000004,3.254080700000031],[98.27125490000009,3.251816100000042],[98.26651970000006,3.252184500000055],[98.26240820000004,3.249349600000073],[98.25885780000004,3.24997],[98.23266280000007,3.263690200000042],[98.22324770000006,3.27065250000004],[98.21788750000007,3.283857200000057],[98.207716,3.281528900000069],[98.20094,3.277544600000056],[98.18107340000006,3.280169300000068],[98.174244,3.277346700000066],[98.16667320000005,3.279696100000024],[98.14116530000007,3.265573],[98.12419980000004,3.265161100000057],[98.12078890000004,3.266318300000023],[98.11731170000007,3.27069380000006],[98.10769750000009,3.291217300000028],[98.10845540000008,3.299561],[98.09907420000008,3.314011200000039],[98.07983910000007,3.319640500000048],[98.07167570000007,3.314879],[98.06464310000007,3.318362200000024],[98.05874590000008,3.315292400000033],[98.05564030000005,3.315516400000035],[98.04414310000004,3.323336],[98.02889460000006,3.33101460000006],[98.0226,3.322097],[98.02018280000004,3.315992400000027],[98.02075090000005,3.302636],[98.01697730000006,3.302540200000067],[98.01138,3.294712300000072],[98.002701,3.29131760000007],[97.99299520000005,3.281694],[97.98245160000005,3.28110520000007],[97.98016080000008,3.282505300000025],[97.97828770000007,3.282136900000069],[97.97768510000009,3.28013720000007],[97.969748,3.277656900000068],[97.96726770000004,3.279045900000028],[97.96716850000007,3.283708900000022],[97.96534860000008,3.287270300000046],[97.95451970000005,3.283507],[97.95206370000005,3.283832800000027],[97.95132990000008,3.278644800000052],[97.94563340000008,3.271168100000068],[97.93591230000004,3.271573],[97.93658450000004,3.265390700000069],[97.91295410000004,3.26425050000006],[97.908339,3.262283400000058],[97.90156660000008,3.26229630000006],[97.89403820000007,3.256775],[97.87652440000005,3.255767200000037],[97.87055810000004,3.251101900000037],[97.870368,3.24961890000003],[97.88181860000003,3.238108900000043],[97.892902,3.240484500000036],[97.89337120000005,3.237669100000062],[97.89854330000009,3.234039600000074],[97.904532,3.232043400000066],[97.91707530000008,3.23071],[97.92243420000005,3.228475],[97.92689530000007,3.223063],[97.93247980000007,3.20979],[97.934534,3.208023900000057],[97.93562430000009,3.209103500000026],[97.93462430000005,3.207946200000038],[97.93783330000008,3.204136],[97.941273,3.20547380000005],[97.943537,3.20126920000007],[97.93975240000003,3.193633800000043],[97.94296460000004,3.175129500000025],[97.93849640000008,3.163513600000044],[97.96379870000004,3.144923700000049],[97.96931450000005,3.142752],[97.98091110000007,3.118860600000062],[97.981749,3.110903800000074],[97.97936410000005,3.097179700000027],[97.982836,3.086754700000029]]]},"properties":{"shapeName":"Karo","shapeISO":"","shapeID":"22746128B30813428093980","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[113.40202040000008,-3.259217],[113.39956,-3.252971299999956],[113.39600320000011,-3.249727],[113.38659350000012,-3.256214899999975],[113.37324580000006,-3.262486],[113.36868950000007,-3.272544699999969],[113.36410780000006,-3.275897899999961],[113.3593929000001,-3.277293199999974],[113.3606023000001,-3.284257299999979],[113.36345740000002,-3.287500199999954],[113.36349080000002,-3.283672399999944],[113.3652135000001,-3.287117399999943],[113.3642569000001,-3.291322399999956],[113.36631330000012,-3.301741499999935],[113.3739316000001,-3.301468799999952],[113.38397730000008,-3.294877699999972],[113.40530320000005,-3.270187399999941],[113.40627720000009,-3.265438099999926],[113.4046704000001,-3.266450199999952],[113.40287740000008,-3.265444099999968],[113.40057980000006,-3.269006599999955],[113.40311670000006,-3.264213199999972],[113.40202040000008,-3.259217]]],[[[113.32963930000005,-3.225508899999966],[113.32695490000003,-3.221914899999945],[113.3248628,-3.221359299999961],[113.32236490000003,-3.229682299999979],[113.32284850000008,-3.232414299999959],[113.32822440000007,-3.239295199999958],[113.33284750000007,-3.235529399999962],[113.33201180000003,-3.231987699999934],[113.33328520000009,-3.2336193],[113.3344393000001,-3.232982599999957],[113.32963930000005,-3.225508899999966]]],[[[113.21945390000008,-0.506397599999957],[113.21065460000011,-0.5062691],[113.20630840000001,-0.494773799999962],[113.19974580000007,-0.484086],[113.19449770000006,-0.481052199999965],[113.190035,-0.473135199999945],[113.18541140000002,-0.469936799999971],[113.17772350000007,-0.4687663],[113.16507850000005,-0.471262899999942],[113.158913,-0.471660799999938],[113.15580780000005,-0.470424499999979],[113.15300740000009,-0.463743799999975],[113.15379070000006,-0.451337499999966],[113.14961910000011,-0.448532499999942],[113.13320380000005,-0.454070299999955],[113.12899820000007,-0.456756199999973],[113.11968790000003,-0.470353],[113.11275300000011,-0.475412899999981],[113.1135753000001,-0.480285199999969],[113.11653110000009,-0.4826792],[113.11735390000001,-0.489285399999972],[113.11481130000004,-0.495892799999979],[113.11210370000003,-0.499279599999966],[113.109231,-0.500354199999947],[113.10471570000004,-0.498621299999968],[113.10321720000002,-0.487825899999962],[113.1003505000001,-0.486353699999938],[113.09733390000008,-0.488466199999948],[113.09509420000006,-0.499142499999948],[113.0922213,-0.499804099999949],[113.08704850000004,-0.495594],[113.0836005000001,-0.495182099999965],[113.06540980000011,-0.507904499999938],[113.062555,-0.509407],[113.05918940000004,-0.509160299999962],[113.05516530000011,-0.503711],[113.046676,-0.499166299999956],[113.029922,-0.477687699999933],[113.02417520000006,-0.475459499999943],[113.0181391000001,-0.4848134],[113.01538710000011,-0.495241399999941],[113.00882760000002,-0.4966955],[113.002266,-0.490493799999967],[112.99701770000001,-0.488779499999964],[112.99376570000004,-0.490598299999931],[112.97760670000002,-0.510828299999957],[112.97275250000007,-0.512017699999944],[112.96402400000011,-0.511522799999966],[112.9498516000001,-0.516005499999949],[112.93633970000008,-0.5226095],[112.9293861000001,-0.523007799999959],[112.91745790000004,-0.521086],[112.9104972,-0.527359699999977],[112.90012980000006,-0.531200699999943],[112.88275180000005,-0.542198],[112.86648370000012,-0.5480111],[112.84457590000011,-0.562010399999963],[112.8395518000001,-0.568412599999931],[112.835638,-0.576920899999948],[112.8146253000001,-0.580565],[112.80517780000002,-0.580700099999945],[112.78746490000003,-0.584930099999951],[112.78418390000002,-0.582423],[112.78024540000001,-0.576087899999948],[112.77334610000003,-0.573188499999958],[112.75405730000011,-0.573722699999962],[112.74526520000006,-0.572405199999935],[112.72978590000002,-0.5873273],[112.729262,-0.590363899999943],[112.73293950000004,-0.600527499999941],[112.73252160000004,-0.624383899999941],[112.73436040000001,-0.629135699999949],[112.7333595,-0.632519199999933],[112.72884490000001,-0.6335083],[112.710477,-0.626503299999968],[112.7053595000001,-0.627032899999961],[112.70299860000011,-0.630202199999928],[112.70326390000002,-0.639311099999929],[112.69760130000009,-0.641458299999954],[112.69300980000003,-0.645552499999951],[112.68894540000008,-0.655850899999962],[112.68697740000005,-0.657435699999951],[112.678054,-0.6565146],[112.66742550000004,-0.659158499999933],[112.65246450000006,-0.656127199999958],[112.64656,-0.657845399999928],[112.6451651000001,-0.662834199999963],[112.6460518,-0.673201799999958],[112.64359920000004,-0.676461099999926],[112.63905110000007,-0.678272199999981],[112.6188998,-0.676212699999951],[112.60937880000006,-0.677284699999973],[112.60182270000007,-0.680859399999974],[112.59612790000006,-0.687982799999929],[112.59102870000004,-0.6891576],[112.585498,-0.687854299999969],[112.57964040000002,-0.681755399999929],[112.57777520000002,-0.681361199999969],[112.57316270000001,-0.683534899999927],[112.56923780000011,-0.687782399999946],[112.56705970000007,-0.696592],[112.54053440000007,-0.694916499999977],[112.5339586,-0.697288599999979],[112.5237509000001,-0.693173799999954],[112.51031380000006,-0.698339199999964],[112.50331810000012,-0.69862],[112.49472550000007,-0.6975843],[112.47302960000002,-0.686551799999961],[112.46657940000011,-0.680745299999955],[112.46363310000004,-0.672867899999972],[112.45978560000003,-0.672730599999966],[112.45281710000006,-0.675854099999924],[112.4494135000001,-0.675855199999944],[112.44249880000007,-0.672539],[112.43143640000005,-0.671364899999958],[112.4277727000001,-0.673362099999963],[112.42452570000012,-0.682070899999928],[112.42005960000006,-0.686353799999949],[112.41559230000007,-0.686783299999945],[112.40885460000004,-0.693359599999951],[112.40464140000006,-0.703377899999964],[112.39602680000007,-0.707341099999951],[112.38754540000002,-0.713541],[112.38504960000012,-0.713671099999942],[112.3810645000001,-0.710171599999967],[112.35708780000004,-0.715437399999928],[112.35016460000008,-0.705096899999944],[112.34593960000007,-0.705505099999925],[112.33868130000008,-0.710484399999928],[112.32871330000012,-0.713566499999956],[112.32276650000006,-0.720836],[112.31470640000009,-0.722593199999949],[112.31015890000003,-0.720484799999952],[112.30179930000008,-0.706830399999944],[112.30169190000004,-0.703297899999939],[112.29525230000002,-0.696400799999935],[112.29011830000002,-0.682918499999971],[112.28517910000005,-0.675200899999936],[112.28517740000007,-0.668768499999942],[112.27372360000004,-0.646700899999928],[112.25606240000002,-0.632789199999934],[112.24333380000007,-0.624747899999932],[112.23457130000008,-0.616737099999966],[112.21397210000009,-0.613841599999944],[112.21040930000004,-0.615172799999925],[112.20713610000007,-0.6294764],[112.20419850000008,-0.6328789],[112.192149,-0.635069699999974],[112.1806911000001,-0.6396286],[112.17771330000005,-0.642733699999951],[112.17431340000007,-0.660826099999952],[112.17592920000004,-0.671091799999942],[112.1749569000001,-0.682557199999962],[112.1727237,-0.685448099999974],[112.16612880000002,-0.687483699999973],[112.16538470000012,-0.689839],[112.17006750000007,-0.698830099999952],[112.170111,-0.705846799999961],[112.1763734000001,-0.715808799999934],[112.17701250000005,-0.719020199999932],[112.17514210000002,-0.725783099999944],[112.16139380000004,-0.726089599999966],[112.1516683000001,-0.728795299999945],[112.15480670000011,-0.728859899999975],[112.17963570000006,-0.776139599999965],[112.18097080000007,-0.796213499999965],[112.16950860000009,-0.824436099999957],[112.121005,-0.924451499999975],[112.09903340000005,-0.990108599999928],[112.11326810000003,-1.166468],[112.1275376000001,-1.313127699999939],[112.2137044000001,-1.2962383],[112.28949150000005,-1.285873199999969],[112.31607020000001,-1.273654499999964],[112.33308410000006,-1.254868899999963],[112.34719510000002,-1.241804399999978],[112.39317260000007,-1.214551399999948],[112.52314960000001,-1.194500499999947],[112.55818760000011,-1.198259],[112.59698190000006,-1.207052399999952],[112.64703880000002,-1.229658099999938],[112.66809010000009,-1.255153099999973],[112.74426620000008,-1.302722199999948],[112.80197030000011,-1.361459199999956],[112.82114460000003,-1.389580399999943],[112.84119090000002,-1.432453199999941],[112.85466970000004,-1.509235099999955],[112.86378550000006,-1.593457499999943],[112.92869710000002,-1.659266499999944],[112.92849160000003,-1.676566499999979],[112.931274,-1.677030299999956],[112.93124690000002,-1.7044226],[112.98125960000004,-1.7052473],[113.026693,-1.768444799999941],[113.09716860000003,-1.794680599999936],[113.15887,-1.8382463],[113.18598830000008,-1.8529879],[113.19571260000009,-1.8559101],[113.20106750000002,-1.862750099999971],[113.19996250000008,-1.888194299999952],[113.191813,-1.902978699999949],[113.19099290000008,-1.916026699999975],[113.19628720000003,-1.926332799999955],[113.22449150000011,-1.936565799999926],[113.2531732000001,-1.940439899999944],[113.27177760000006,-1.951521899999932],[113.27994070000011,-1.966811099999973],[113.284354,-1.998712799999964],[113.28199410000002,-2.045540699999947],[113.26210270000001,-2.071976599999971],[113.24380040000005,-2.085328499999946],[113.23130060000005,-2.102728299999967],[113.2298343000001,-2.122918599999934],[113.234508,-2.1451668],[113.24533440000005,-2.163929899999971],[113.24712690000001,-2.186282199999937],[113.2393221000001,-2.203196499999933],[113.19641020000006,-2.248158799999942],[113.17510230000005,-2.290011],[113.17227140000011,-2.321874699999967],[113.18192460000012,-2.356802399999935],[113.194204,-2.387539499999946],[113.2127852000001,-2.449472299999968],[113.20272820000002,-2.499405],[113.13760820000005,-2.605999399999973],[113.09114150000005,-2.673333799999966],[113.08052010000006,-2.716642299999933],[113.098049,-2.800273499999946],[113.16707420000012,-3.018236799999954],[113.15704440000002,-3.063754499999959],[113.17426090000004,-3.073599099999967],[113.1739927000001,-3.075135299999943],[113.18455210000002,-3.083913199999927],[113.19097980000004,-3.094700299999943],[113.192308,-3.101313499999947],[113.190447,-3.103723099999968],[113.1880440000001,-3.103864499999929],[113.1919749000001,-3.1101528],[113.20709940000006,-3.127355399999942],[113.24848410000004,-3.1657118],[113.250489,-3.165950499999951],[113.25256480000007,-3.170215399999961],[113.27349440000012,-3.190737299999967],[113.27317520000008,-3.191786],[113.29089710000005,-3.210635899999943],[113.310381,-3.239972],[113.3350517,-3.272916599999974],[113.34387930000003,-3.280543799999975],[113.34569330000011,-3.28034],[113.34563340000011,-3.277944799999943],[113.327152,-3.251790199999959],[113.32418650000011,-3.241106099999968],[113.31892180000011,-3.231701699999974],[113.316977,-3.231795299999931],[113.3185582000001,-3.228668],[113.32007830000009,-3.212829199999931],[113.32742460000009,-3.212812399999962],[113.32992920000004,-3.222231699999952],[113.33496570000011,-3.230620899999963],[113.3355802000001,-3.233549799999935],[113.32922940000003,-3.242039299999931],[113.33222070000011,-3.248958],[113.34998850000011,-3.267208],[113.35505,-3.267548099999942],[113.36567410000009,-3.271568499999944],[113.36751960000004,-3.27059],[113.37247620000005,-3.260474199999976],[113.38150470000005,-3.255942599999969],[113.393174,-3.246883799999978],[113.40006320000009,-3.244162499999959],[113.40961270000003,-3.243494],[113.42902720000006,-3.235354399999949],[113.43336060000001,-3.231082199999946],[113.43567510000003,-3.225832],[113.43645640000011,-3.221238399999947],[113.43540530000007,-3.218970099999979],[113.43631330000005,-3.212066],[113.43871360000003,-3.208361699999955],[113.438113,-3.206422399999951],[113.43961420000005,-3.205895099999964],[113.44044970000004,-3.202506699999958],[113.44142850000003,-3.2029061],[113.44387680000011,-3.198409],[113.44971260000011,-3.193480799999975],[113.45025980000003,-3.190463699999952],[113.45205110000006,-3.19086],[113.45276150000007,-3.189453299999968],[113.47247840000011,-3.180612499999938],[113.50503630000003,-3.170364399999926],[113.50698590000002,-3.168081099999938],[113.50924370000007,-3.168924199999935],[113.53773250000006,-3.162648399999966],[113.55865930000004,-3.161180699999932],[113.59336730000007,-3.166987099999972],[113.61312260000011,-3.135101599999928],[113.62105780000002,-3.138799699999936],[113.62660190000008,-3.137192299999981],[113.628958,-3.132949699999926],[113.63236470000004,-3.1172332],[113.63149930000009,-3.103048599999966],[113.63771670000006,-3.0916187],[113.63642460000005,-3.080504299999973],[113.63883930000009,-3.049621299999956],[113.64696340000012,-3.001970599999936],[113.64500240000007,-2.964037],[113.64189460000011,-2.9390408],[113.638551,-2.929034599999966],[113.61776280000004,-2.887235],[113.58403520000002,-2.8368899],[113.57761270000003,-2.820453099999952],[113.57587230000001,-2.800018099999932],[113.57736250000005,-2.777442199999939],[113.58314750000011,-2.741479099999935],[113.6049772,-2.696113399999945],[113.62110170000005,-2.668335899999931],[113.6579703000001,-2.595364899999936],[113.68237560000011,-2.556379499999935],[113.713362,-2.489040799999941],[113.7631841000001,-2.398832],[113.76664620000008,-2.388545099999931],[113.76729960000011,-2.369537699999967],[113.7639329000001,-2.356680499999925],[113.7529416000001,-2.333234199999936],[113.73255130000007,-2.311954199999946],[113.71881210000004,-2.301559899999972],[113.70618790000003,-2.284938499999953],[113.69691970000008,-2.257430299999953],[113.695436,-2.233674],[113.6965183000001,-2.195135899999968],[113.69962050000004,-2.158043],[113.6946008000001,-2.086774499999933],[113.68304660000001,-2.066512],[113.65592620000007,-2.037292599999944],[113.62303820000011,-1.991001799999935],[113.61783930000001,-1.979756299999963],[113.61402980000003,-1.9504336],[113.59353220000003,-1.918589299999951],[113.57190450000007,-1.899786799999958],[113.53352680000012,-1.848552199999972],[113.50613190000001,-1.823379599999953],[113.48947980000003,-1.786178399999926],[113.48861010000007,-1.761711699999978],[113.496799,-1.745573499999978],[113.49882,-1.737700799999971],[113.4985967,-1.731716499999948],[113.49757920000002,-1.719388099999946],[113.483766,-1.694107599999938],[113.48201620000009,-1.684927399999935],[113.48435670000003,-1.670432299999959],[113.49205720000009,-1.657501099999934],[113.48290760000009,-1.602533799999946],[113.43535650000001,-1.5781442],[113.4304575000001,-1.560964],[113.3611658000001,-1.525864],[113.33935640000004,-1.484733899999981],[113.19916290000003,-1.283528699999977],[113.18573950000007,-1.251702099999932],[113.18711030000009,-1.213603599999942],[113.19830170000012,-1.183963399999925],[113.220708,-1.154314799999952],[113.23330480000004,-1.128907399999946],[113.2346884000001,-1.1049199],[113.23327310000002,-1.086578299999928],[113.2290574000001,-1.072471699999937],[113.21643030000007,-1.056960099999969],[113.18556840000008,-1.024528699999962],[113.1448918000001,-0.987869],[113.1335166,-0.981142099999943],[113.0915030000001,-0.935063899999932],[113.0762188000001,-0.928664099999935],[113.04936610000004,-0.925016299999925],[113.03138600000011,-0.909055899999942],[113.02007660000004,-0.884925],[113.01785870000003,-0.8435718],[113.03245970000012,-0.813500199999964],[113.07577360000005,-0.766331199999968],[113.13091710000003,-0.691522],[113.15194840000004,-0.655998099999977],[113.16937550000011,-0.621330399999977],[113.20595540000011,-0.562251199999935],[113.21375160000002,-0.538676899999928],[113.21945390000008,-0.506397599999957]]]]},"properties":{"shapeName":"Katingan","shapeISO":"","shapeID":"22746128B26554824579615","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.07020330000006,-4.559131599999944],[103.11974690000005,-4.579622],[103.12350250000009,-4.583471599999939],[103.12615980000004,-4.589268699999934],[103.13817570000003,-4.593200899999943],[103.15391620000008,-4.601409],[103.16281760000004,-4.6120373],[103.174122,-4.621330799999953],[103.19992790000003,-4.637122199999965],[103.20398540000008,-4.6420086],[103.20926140000006,-4.645496199999968],[103.21204380000006,-4.650196499999936],[103.22384380000005,-4.656199599999979],[103.23898370000006,-4.671163],[103.24505,-4.674102199999936],[103.250712,-4.680893599999933],[103.25248190000008,-4.686554899999976],[103.25734570000009,-4.691240099999959],[103.25717050000009,-4.695994699999972],[103.270717,-4.704414499999928],[103.27842820000006,-4.705612],[103.28372480000007,-4.709180299999957],[103.28540950000007,-4.712200399999972],[103.284144,-4.720885599999974],[103.28672420000004,-4.728102299999932],[103.29499590000006,-4.740346399999964],[103.29941570000005,-4.744371899999976],[103.311177,-4.750412799999935],[103.31789650000007,-4.7585185],[103.32069480000007,-4.766295],[103.32045460000006,-4.770948199999964],[103.31137790000008,-4.778236199999981],[103.31009090000003,-4.782360299999937],[103.32183390000006,-4.801331299999958],[103.32760250000007,-4.807697099999928],[103.33508030000007,-4.811230699999953],[103.346359,-4.811617799999965],[103.34717730000006,-4.802707899999973],[103.35115220000006,-4.7991326],[103.35740590000006,-4.796564299999943],[103.36677480000009,-4.796207299999935],[103.37961730000006,-4.800452399999926],[103.38210160000006,-4.802395799999942],[103.38254280000007,-4.805293099999972],[103.38546160000004,-4.808735599999977],[103.38901,-4.811200799999938],[103.39605450000005,-4.813015099999973],[103.40486870000007,-4.820146699999952],[103.40520280000004,-4.826279599999964],[103.41174690000008,-4.833585599999935],[103.41196870000005,-4.836682099999962],[103.41484710000009,-4.840504],[103.40685430000008,-4.848115399999926],[103.40591,-4.855903099999978],[103.410525,-4.862245899999948],[103.41822910000008,-4.867477399999927],[103.42629330000005,-4.872090399999934],[103.43053380000003,-4.8725797],[103.433086,-4.871167499999956],[103.433024,-4.867831599999931],[103.43458210000006,-4.865757899999949],[103.43915870000006,-4.862972099999979],[103.443602,-4.861843799999974],[103.45672340000004,-4.862573099999963],[103.47098540000007,-4.865302299999939],[103.48493080000009,-4.871685899999932],[103.49740230000003,-4.873811299999943],[103.51982090000007,-4.885227],[103.52738290000008,-4.892414799999926],[103.52789890000008,-4.897769399999959],[103.53374220000006,-4.907769899999948],[103.53265840000006,-4.916117299999939],[103.54431870000008,-4.9163426],[103.54840190000004,-4.9207661],[103.55301990000004,-4.9219548],[103.55630840000003,-4.920863199999928],[103.56166510000008,-4.925868799999932],[103.57125420000006,-4.926142399999947],[103.57961990000007,-4.910828199999969],[103.59325960000007,-4.894756399999949],[103.594013,-4.891275699999937],[103.59188660000007,-4.884930399999973],[103.59556630000009,-4.881989199999964],[103.59658140000005,-4.876437599999974],[103.60196330000008,-4.867756399999962],[103.60857430000004,-4.8700132],[103.61584450000004,-4.870006299999943],[103.62266620000008,-4.864564399999949],[103.62337360000004,-4.859514899999965],[103.634025,-4.853107799999975],[103.63654440000005,-4.849320099999943],[103.643826,-4.851659],[103.649543,-4.848251],[103.653944,-4.848747],[103.655811,-4.847527],[103.657185,-4.843062],[103.66068,-4.842174],[103.660453,-4.839592],[103.663295,-4.838338],[103.667803,-4.839031],[103.673689,-4.835799],[103.67706,-4.835587],[103.678945,-4.830949],[103.684408,-4.829478499999937],[103.68450080000008,-4.827687499999968],[103.69058050000007,-4.826559499999973],[103.69115030000006,-4.824932499999932],[103.69632420000005,-4.822988499999951],[103.69980370000007,-4.8192954],[103.70300130000004,-4.819066299999974],[103.70824730000004,-4.814245899999946],[103.708222,-4.811242799999945],[103.71001310000008,-4.809545499999956],[103.70870840000003,-4.807923899999935],[103.71200560000005,-4.805704699999978],[103.717958,-4.793585499999949],[103.72844540000006,-4.792112599999939],[103.73133980000006,-4.786581099999978],[103.73835480000008,-4.785713699999974],[103.74239310000007,-4.779567699999973],[103.75028820000006,-4.779406899999969],[103.75713360000009,-4.775552199999936],[103.761384,-4.775119599999925],[103.76347840000005,-4.758517799999936],[103.76190510000004,-4.754468299999928],[103.74725170000005,-4.745099],[103.74543680000005,-4.741191699999945],[103.73956880000009,-4.7440688],[103.73506420000007,-4.744380499999977],[103.732586,-4.741994299999931],[103.732524,-4.737159199999951],[103.72307460000007,-4.7339282],[103.71496240000005,-4.729113899999959],[103.70787120000006,-4.728247599999975],[103.70285230000007,-4.725070699999947],[103.69593630000008,-4.725448699999959],[103.68175530000008,-4.730713599999945],[103.67288710000008,-4.731940899999927],[103.67175690000005,-4.729485799999964],[103.67279340000005,-4.725293199999953],[103.67930860000007,-4.716712399999949],[103.70073440000004,-4.7041133],[103.70454620000004,-4.698405599999944],[103.70409620000004,-4.692325899999958],[103.69823130000003,-4.682904299999961],[103.69991810000005,-4.672029299999963],[103.69743050000005,-4.669403099999954],[103.69474860000008,-4.653869399999962],[103.68416120000006,-4.64578],[103.68539690000006,-4.639456399999972],[103.68754090000004,-4.63662],[103.68586040000008,-4.6336596],[103.67090560000008,-4.622762099999932],[103.66182930000008,-4.6097917],[103.65627460000007,-4.607987899999955],[103.64851530000004,-4.602605099999948],[103.64489360000005,-4.597452199999964],[103.64073370000006,-4.594852299999957],[103.62802040000008,-4.594852299999957],[103.62289380000004,-4.593299],[103.61372820000008,-4.597339399999953],[103.59659740000006,-4.595037899999966],[103.59824650000007,-4.589436599999942],[103.60732630000007,-4.583733499999937],[103.60741570000005,-4.578908],[103.61913140000007,-4.570790299999942],[103.62429090000006,-4.556519399999956],[103.63013670000004,-4.556246199999975],[103.62889640000009,-4.550709],[103.61842770000004,-4.532956499999955],[103.61492240000007,-4.530532599999958],[103.60529290000005,-4.529481299999929],[103.59768060000005,-4.524454399999968],[103.59257860000008,-4.522809099999961],[103.58791160000004,-4.5231602],[103.576767,-4.528016],[103.573762,-4.524858],[103.570593,-4.524796],[103.565086,-4.530853],[103.564198,-4.534441],[103.56078,-4.535162],[103.556727,-4.539516],[103.549783,-4.542844],[103.541173,-4.558911],[103.53686970000007,-4.564008099999967],[103.53019480000006,-4.568793399999947],[103.52037880000006,-4.573860099999933],[103.51098180000008,-4.574871499999972],[103.50286640000007,-4.573255099999926],[103.49469540000007,-4.577077599999939],[103.48478270000004,-4.579071499999941],[103.47333790000005,-4.571399699999972],[103.47179750000004,-4.565718],[103.46635740000005,-4.559127799999942],[103.45154410000004,-4.546915099999978],[103.44607090000005,-4.544201499999929],[103.44350680000008,-4.538581799999974],[103.43699340000006,-4.531286699999953],[103.41676750000005,-4.520733499999949],[103.40690490000009,-4.521124],[103.39823820000004,-4.5175331],[103.39778930000006,-4.5140061],[103.41073230000006,-4.485215899999957],[103.41277790000004,-4.468094099999973],[103.42353610000004,-4.457962],[103.42543990000007,-4.423719],[103.42858510000008,-4.405251799999974],[103.43302370000004,-4.400178199999971],[103.44834620000006,-4.372038399999951],[103.46398250000004,-4.359935299999961],[103.46805760000007,-4.3530811],[103.46735610000007,-4.343658599999969],[103.46375210000008,-4.337679],[103.45769060000003,-4.333041499999979],[103.43391670000005,-4.329466599999932],[103.42094140000006,-4.322555499999964],[103.41127120000004,-4.319513],[103.39052640000006,-4.318269399999963],[103.38172140000006,-4.316327399999977],[103.37615730000005,-4.3142549],[103.35616370000008,-4.300449799999967],[103.34252860000004,-4.295016899999951],[103.328451,-4.292159199999958],[103.31811920000007,-4.279132],[103.31061870000008,-4.2594433],[103.30506740000004,-4.254524899999979],[103.29119170000007,-4.258117899999945],[103.28500650000007,-4.257180199999937],[103.28833380000003,-4.2630515],[103.28813360000004,-4.265974799999981],[103.285646,-4.267846299999974],[103.28298540000009,-4.277832699999976],[103.27997510000006,-4.283304799999939],[103.28253750000005,-4.286686499999973],[103.28014340000004,-4.290751299999954],[103.26822880000009,-4.294393],[103.25969680000009,-4.292073099999925],[103.25662870000008,-4.292750199999944],[103.251634,-4.299586799999929],[103.24606240000008,-4.2944362],[103.23993750000005,-4.291327599999931],[103.22894440000005,-4.293028399999969],[103.22467330000006,-4.297403799999927],[103.21928660000003,-4.307029499999942],[103.200686,-4.307877799999972],[103.20012810000009,-4.309628699999962],[103.20313560000005,-4.316024399999947],[103.19881190000007,-4.320320599999945],[103.19740070000006,-4.3451891],[103.19849160000007,-4.352739399999962],[103.20314330000008,-4.3612105],[103.20174970000005,-4.367964299999926],[103.20427070000005,-4.374877499999968],[103.19905760000006,-4.3814038],[103.201926,-4.3877579],[103.20119240000008,-4.391688],[103.19380920000003,-4.397012299999972],[103.17578620000006,-4.397780399999931],[103.16796710000006,-4.400256799999966],[103.16418590000006,-4.407967699999972],[103.16226080000007,-4.416610899999966],[103.15309580000007,-4.422921299999928],[103.15187590000005,-4.425209499999937],[103.154459,-4.432519499999955],[103.14943730000005,-4.444884499999944],[103.13948780000004,-4.456384499999956],[103.128535,-4.465929299999971],[103.11703010000008,-4.483728399999961],[103.11188710000005,-4.486214599999926],[103.107625,-4.493563699999925],[103.10448030000003,-4.493765899999971],[103.09732040000006,-4.506579299999942],[103.09835920000006,-4.510158199999978],[103.09519970000008,-4.51604],[103.08510630000006,-4.528214299999945],[103.08349230000005,-4.536192099999937],[103.08646590000006,-4.550048499999946],[103.08512970000004,-4.556373099999973],[103.082798,-4.5568254],[103.08023140000006,-4.559707499999945],[103.07753920000005,-4.5582787],[103.07020330000006,-4.559131599999944]]]},"properties":{"shapeName":"Kaur","shapeISO":"","shapeID":"22746128B5396626056978","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[109.29681940000006,-1.730021],[109.29656160000008,-1.726639099999943],[109.29574820000005,-1.729028899999946],[109.29681940000006,-1.730021]]],[[[109.29648770000006,-1.7146463],[109.297271,-1.713597499999935],[109.29561960000007,-1.713304499999936],[109.29338670000004,-1.71511],[109.29648770000006,-1.7146463]]],[[[108.74493280000007,-1.699926599999969],[108.72796510000006,-1.701858299999969],[108.72274140000007,-1.707800799999973],[108.71902170000004,-1.709463099999937],[108.71525450000007,-1.703483699999936],[108.71199830000006,-1.7074062],[108.70672180000008,-1.7067245],[108.70628210000007,-1.705074199999956],[108.703834,-1.704787199999942],[108.70144530000005,-1.706365799999958],[108.70038760000006,-1.7092],[108.69921110000007,-1.706306],[108.69452880000006,-1.710706799999969],[108.69279370000004,-1.710790499999973],[108.688468,-1.706174399999952],[108.68863440000007,-1.703675099999941],[108.68491470000004,-1.703280399999926],[108.68066020000003,-1.706042899999943],[108.685497,-1.711364499999945],[108.68266860000006,-1.717810199999974],[108.67863990000006,-1.7177624],[108.67789120000003,-1.719843199999957],[108.68067210000004,-1.722175099999959],[108.69568160000006,-1.721086899999932],[108.69992410000003,-1.723968899999932],[108.71108320000008,-1.724208099999942],[108.71577740000004,-1.726707399999952],[108.719402,-1.726815],[108.73002630000008,-1.72538],[108.73686670000006,-1.720665899999972],[108.74029880000006,-1.721144299999935],[108.74174390000007,-1.718905599999971],[108.74302740000007,-1.720120599999973],[108.75172970000006,-1.716465],[108.77316840000009,-1.716488899999945],[108.77704260000007,-1.713881899999933],[108.78298460000008,-1.713092699999947],[108.78694190000004,-1.709074499999929],[108.78441060000006,-1.703992099999937],[108.78044610000006,-1.702564199999927],[108.77837360000007,-1.703119099999981],[108.76787760000008,-1.700325499999963],[108.75413020000008,-1.701837099999977],[108.74493280000007,-1.699926599999969]]],[[[109.09494380000007,-1.700039099999969],[109.09640720000004,-1.6982188],[109.09562190000008,-1.695553799999971],[109.09152930000005,-1.696243899999956],[109.09494380000007,-1.700039099999969]]],[[[109.11251230000005,-1.697116799999947],[109.11308340000005,-1.694956299999944],[109.111513,-1.695641599999931],[109.11251230000005,-1.697116799999947]]],[[[108.76374690000006,-1.623477099999945],[108.76012230000003,-1.6237263],[108.76309330000004,-1.625055699999962],[108.76374690000006,-1.623477099999945]]],[[[108.78719110000009,-1.613241899999935],[108.78551540000007,-1.611828299999956],[108.78251360000007,-1.613658099999952],[108.782756,-1.615358699999945],[108.78509480000008,-1.616384799999935],[108.78719110000009,-1.613241899999935]]],[[[109.15540480000004,-1.604091099999948],[109.15689780000008,-1.599258199999952],[109.15414720000007,-1.598092299999962],[109.15018770000006,-1.600459899999976],[109.14943820000008,-1.604088499999932],[109.15077070000007,-1.6059921],[109.15540480000004,-1.604091099999948]]],[[[109.192391,-1.594215399999939],[109.19032570000007,-1.591300599999954],[109.18800570000008,-1.592835399999956],[109.19047560000007,-1.595105399999966],[109.192391,-1.594215399999939]]],[[[109.20391540000008,-1.587403499999937],[109.20093630000008,-1.587046599999951],[109.20652330000007,-1.588164899999924],[109.20391540000008,-1.587403499999937]]],[[[108.75255110000006,-1.585517799999934],[108.75264380000004,-1.583838699999944],[108.748831,-1.589049099999954],[108.74890830000004,-1.591578499999969],[108.75274360000009,-1.5880293],[108.75255110000006,-1.585517799999934]]],[[[109.15555870000009,-1.577552499999967],[109.15654380000007,-1.576638799999955],[109.15463070000004,-1.578023599999938],[109.15555870000009,-1.577552499999967]]],[[[108.77659280000006,-1.5754154],[108.76525540000006,-1.576180799999975],[108.76327080000004,-1.581144],[108.76314010000004,-1.5912019],[108.773396,-1.5893123],[108.77629570000005,-1.587075899999945],[108.77775740000004,-1.583464099999958],[108.77618870000003,-1.582363899999962],[108.77659280000006,-1.5754154]]],[[[108.78488150000004,-1.576206399999933],[108.78606990000009,-1.571671299999934],[108.784216,-1.573154299999942],[108.78488150000004,-1.576206399999933]]],[[[108.73993060000004,-1.575934599999925],[108.73867090000005,-1.571277599999974],[108.73669340000004,-1.569268399999942],[108.73246270000004,-1.5685891],[108.73039960000006,-1.570866199999955],[108.73152150000004,-1.575965699999927],[108.73499160000006,-1.577429599999959],[108.73676940000007,-1.576731099999961],[108.73926030000007,-1.578778599999964],[108.74088610000007,-1.577754899999945],[108.73993060000004,-1.575934599999925]]],[[[108.781503,-1.566763499999979],[108.78190350000006,-1.565534699999944],[108.78061770000005,-1.566567099999929],[108.781503,-1.566763499999979]]],[[[108.78166340000007,-1.5587458],[108.78151630000008,-1.557334599999933],[108.78053230000006,-1.5581],[108.78166340000007,-1.5587458]]],[[[108.80769940000005,-1.558616899999947],[108.80575040000008,-1.555961899999943],[108.799951,-1.559202899999946],[108.79657080000004,-1.558104899999933],[108.79601740000004,-1.5600521],[108.80356370000004,-1.5604587],[108.80563160000008,-1.5620971],[108.80595240000008,-1.5595019],[108.80769940000005,-1.558616899999947]]],[[[108.77465370000004,-1.553741699999932],[108.77196320000007,-1.553866],[108.77167790000004,-1.557980099999952],[108.77821890000007,-1.557310399999949],[108.77732520000006,-1.5542966],[108.77465370000004,-1.553741699999932]]],[[[108.82569220000005,-1.553341899999964],[108.82455430000005,-1.5545648],[108.82537430000008,-1.557345399999974],[108.82699350000007,-1.5560508],[108.82569220000005,-1.553341899999964]]],[[[108.89750670000006,-1.534755799999971],[108.89188790000009,-1.535980499999937],[108.89119390000008,-1.546198899999979],[108.89287670000004,-1.547232199999939],[108.89257240000006,-1.549451899999951],[108.88248770000007,-1.558703899999955],[108.87708050000003,-1.567972499999939],[108.87302270000004,-1.568558499999938],[108.87041770000008,-1.566587599999934],[108.87043670000008,-1.561239299999954],[108.86799340000005,-1.559488399999964],[108.86355350000008,-1.562703099999965],[108.85793470000004,-1.572299499999929],[108.85379910000006,-1.571007799999961],[108.85551990000005,-1.564741],[108.85472130000005,-1.563889499999959],[108.85203080000008,-1.564071299999966],[108.84609830000005,-1.569419599999947],[108.84427290000008,-1.569237799999939],[108.84266620000005,-1.568204499999979],[108.84201020000006,-1.563612099999943],[108.83790310000006,-1.5626553],[108.83768440000006,-1.559852],[108.8397,-1.5605313],[108.84046050000006,-1.559048299999972],[108.83805840000008,-1.554691799999944],[108.83471190000006,-1.552955299999951],[108.82931650000006,-1.555452399999979],[108.83108490000006,-1.557772599999964],[108.83057130000009,-1.560710799999924],[108.82478860000003,-1.5617628],[108.82427080000008,-1.567405399999927],[108.82042040000005,-1.570873699999936],[108.81281470000005,-1.567692399999942],[108.79955220000005,-1.571770599999979],[108.79148290000006,-1.5777384],[108.78977480000009,-1.581319599999972],[108.79613020000005,-1.584602899999936],[108.80028020000009,-1.581403299999977],[108.807169,-1.580865099999926],[108.80637280000008,-1.583436399999925],[108.80844850000005,-1.586036799999931],[108.80135610000008,-1.591040699999951],[108.79713570000007,-1.591745499999945],[108.79765860000003,-1.593013199999973],[108.81710550000008,-1.590984799999944],[108.82051860000007,-1.589473199999929],[108.82073730000008,-1.586201099999926],[108.82650820000003,-1.583330799999942],[108.84026520000003,-1.584795899999961],[108.83968840000006,-1.587568399999952],[108.83114620000003,-1.587066099999959],[108.82748120000008,-1.589778499999966],[108.83031910000005,-1.591974299999947],[108.83171660000005,-1.595289399999956],[108.83031910000005,-1.597829599999955],[108.83241540000006,-1.598418],[108.83465430000007,-1.603096499999936],[108.82909070000005,-1.608469599999978],[108.83137250000004,-1.613789099999963],[108.83467140000005,-1.616573199999948],[108.83315030000006,-1.6172046],[108.83531790000006,-1.622801599999946],[108.83960570000005,-1.6241506],[108.84097470000006,-1.628111399999966],[108.83956760000007,-1.632837699999925],[108.83692460000009,-1.635746199999971],[108.83407250000005,-1.634932899999967],[108.83169570000007,-1.637009099999943],[108.828739,-1.637248199999931],[108.82830160000009,-1.639142599999957],[108.83079250000009,-1.6425676],[108.828178,-1.645925799999929],[108.82261630000005,-1.644863799999939],[108.81857820000005,-1.648719399999948],[108.827408,-1.650166399999932],[108.82813490000007,-1.656079399999953],[108.830312,-1.660480299999961],[108.82943730000005,-1.662565899999947],[108.83189020000009,-1.666699],[108.83750420000007,-1.666964499999949],[108.84405460000005,-1.670352299999934],[108.85154160000008,-1.671199],[108.857688,-1.677054099999964],[108.86183780000005,-1.675102399999957],[108.86617310000008,-1.676135599999952],[108.87160650000004,-1.672849299999939],[108.87552820000008,-1.673896899999932],[108.88063360000007,-1.672906699999942],[108.88297230000006,-1.6695774],[108.88678,-1.667998799999964],[108.891101,-1.668501099999958],[108.89475170000009,-1.665329499999928],[108.89719030000003,-1.660536399999955],[108.90617460000004,-1.659919299999956],[108.91049560000005,-1.657938899999976],[108.92080220000008,-1.659845599999926],[108.93710710000005,-1.653832099999931],[108.94611930000008,-1.6417563],[108.95751540000003,-1.639416499999925],[108.96147720000005,-1.634348299999942],[108.96074490000007,-1.630460899999946],[108.96646830000009,-1.628738699999928],[108.98280160000007,-1.6017012],[108.97205990000003,-1.593625599999939],[108.97123990000006,-1.587951799999928],[108.96085330000005,-1.581637199999932],[108.95291480000009,-1.573720099999946],[108.95294680000006,-1.566145899999981],[108.94881110000006,-1.564969099999928],[108.94233670000006,-1.560104],[108.93955590000007,-1.551823099999979],[108.92607940000005,-1.548350099999936],[108.91939660000008,-1.549364199999957],[108.91485230000006,-1.553053699999964],[108.91490930000003,-1.547140799999966],[108.91044360000006,-1.542895099999953],[108.90717310000008,-1.542187099999978],[108.90166840000006,-1.545134],[108.89938670000004,-1.540618],[108.90110040000008,-1.537042499999927],[108.89750670000006,-1.534755799999971]]],[[[109.33324050000004,-1.521925899999928],[109.32909320000005,-1.522740499999941],[109.33386220000006,-1.525626299999942],[109.33491860000004,-1.524991099999966],[109.33324050000004,-1.521925899999928]]],[[[109.34460190000004,-1.517385599999955],[109.33931470000005,-1.518593499999952],[109.34176,-1.523523699999942],[109.34620730000006,-1.518739599999947],[109.34460190000004,-1.517385599999955]]],[[[109.35247430000004,-1.499833699999954],[109.35024380000004,-1.500541399999975],[109.35063370000006,-1.501821499999949],[109.35323990000006,-1.500967699999933],[109.35247430000004,-1.499833699999954]]],[[[109.388625,-1.490687099999946],[109.38734010000007,-1.486232799999925],[109.38420880000007,-1.487384399999939],[109.38152470000006,-1.491381899999965],[109.38226710000004,-1.496940299999949],[109.37699110000005,-1.500198699999942],[109.37628430000007,-1.501979399999925],[109.38124260000006,-1.505574],[109.38402370000006,-1.504606799999976],[109.38472390000004,-1.501758499999937],[109.38227930000005,-1.500094],[109.38678810000005,-1.496236],[109.388625,-1.490687099999946]]],[[[109.38287940000004,-1.477531],[109.38132090000005,-1.478578],[109.38306980000004,-1.4795893],[109.38424760000004,-1.478221099999928],[109.38287940000004,-1.477531]]],[[[109.04456580000004,-1.476141599999949],[109.04278,-1.473722099999975],[109.03931790000007,-1.479111599999953],[109.03987460000008,-1.486407],[109.04090260000004,-1.488120199999969],[109.04277280000008,-1.486878099999956],[109.044329,-1.488705599999946],[109.04282990000007,-1.493702399999961],[109.04512610000006,-1.49639],[109.04751150000004,-1.496699399999954],[109.049772,-1.494688699999926],[109.05160420000004,-1.495396599999935],[109.05307490000007,-1.501646599999958],[109.05361480000005,-1.494635199999948],[109.05605740000004,-1.491461],[109.05512340000007,-1.489563399999952],[109.05686160000005,-1.484068799999932],[109.05213240000006,-1.478048799999954],[109.04373290000007,-1.484330499999942],[109.04456580000004,-1.476141599999949]]],[[[109.228611,-1.411636199999975],[109.22657510000005,-1.4116114],[109.22762690000008,-1.414038499999947],[109.228611,-1.411636199999975]]],[[[109.22133530000008,-1.410304599999961],[109.21832290000003,-1.408947099999978],[109.21711530000005,-1.411231399999963],[109.22070240000005,-1.413307499999974],[109.22407170000008,-1.4133111],[109.22405150000009,-1.411232599999948],[109.22133530000008,-1.410304599999961]]],[[[109.88773150000009,-1.3672198],[109.888279,-1.366047299999934],[109.88674520000006,-1.366142299999979],[109.885995,-1.368619],[109.88773150000009,-1.3672198]]],[[[109.90306010000006,-1.345947],[109.90016170000007,-1.343063299999926],[109.89776750000004,-1.346179199999938],[109.89648110000007,-1.351300299999934],[109.89971080000004,-1.3523124],[109.90530360000008,-1.346594599999946],[109.90306010000006,-1.345947]]],[[[109.11483680000003,-1.342502099999933],[109.11313790000008,-1.342959],[109.11298080000006,-1.344857799999943],[109.11592180000008,-1.347306299999957],[109.11647150000005,-1.343751299999951],[109.11483680000003,-1.342502099999933]]],[[[110.02898540000007,-1.312129099999936],[110.02933110000004,-1.309831499999973],[110.02814160000008,-1.310956],[110.02898540000007,-1.312129099999936]]],[[[109.31175730000007,-1.289994799999931],[109.31222860000008,-1.288870599999939],[109.31104420000008,-1.289351199999942],[109.31175730000007,-1.289994799999931]]],[[[109.13521170000007,-1.287531],[109.13012170000007,-1.2900425],[109.12793880000004,-1.294393899999932],[109.11905520000005,-1.300414299999943],[109.11741450000005,-1.308898299999953],[109.11637230000008,-1.3100928],[109.11377870000007,-1.309521699999948],[109.11354670000009,-1.313476399999956],[109.11806180000008,-1.314029599999969],[109.11973330000006,-1.311935699999935],[109.12402230000004,-1.311168299999963],[109.12634110000005,-1.304986399999962],[109.13003760000004,-1.303379099999972],[109.13130820000003,-1.299215099999969],[109.13424450000008,-1.297083099999952],[109.13417150000004,-1.294224],[109.138399,-1.290625199999965],[109.13834670000006,-1.289202299999943],[109.13521170000007,-1.287531]]],[[[109.14580310000008,-1.287884499999961],[109.14485540000004,-1.286605599999973],[109.14099690000006,-1.288273099999969],[109.13903320000009,-1.3118713],[109.14017920000003,-1.315909],[109.13537480000008,-1.323291499999925],[109.13685,-1.325325899999939],[109.13616630000007,-1.330783],[109.13776610000008,-1.3280861],[109.14271540000004,-1.325730399999941],[109.14653440000006,-1.318473099999949],[109.152031,-1.311977199999944],[109.15294710000006,-1.300543799999957],[109.15443740000006,-1.299721499999976],[109.15831280000003,-1.301674099999957],[109.16112050000004,-1.299175699999978],[109.16100160000008,-1.296748599999944],[109.16337390000007,-1.293514899999934],[109.16340720000005,-1.292206199999953],[109.16067080000005,-1.290873699999963],[109.15532680000007,-1.290927],[109.15422730000006,-1.294292699999971],[109.15192910000007,-1.295687699999974],[109.14968130000005,-1.294343],[109.14896740000006,-1.290869],[109.14568380000009,-1.289286599999969],[109.14580310000008,-1.287884499999961]]],[[[108.90198420000007,-1.2861544],[108.90217440000004,-1.283540499999958],[108.90055820000003,-1.2861068],[108.89870430000008,-1.285821699999929],[108.89898950000008,-1.288197899999943],[108.90198420000007,-1.2861544]]],[[[109.133059,-1.276730699999973],[109.13045820000008,-1.277599199999941],[109.12629180000005,-1.2819988],[109.12637750000005,-1.286738699999944],[109.13324460000007,-1.284704199999965],[109.13544320000005,-1.2800286],[109.133059,-1.276730699999973]]],[[[109.19208660000004,-1.272458599999936],[109.19173210000008,-1.270014899999978],[109.19023,-1.272813699999972],[109.18676780000004,-1.271277199999929],[109.18549550000006,-1.273191399999973],[109.18746850000008,-1.275545699999952],[109.19208660000004,-1.272458599999936]]],[[[109.158039,-1.266228699999942],[109.15316350000006,-1.270547499999964],[109.15293510000004,-1.276136799999961],[109.15641150000005,-1.278149799999937],[109.15754290000007,-1.282240099999967],[109.16157970000006,-1.283296599999971],[109.16208290000009,-1.2883042],[109.16404240000008,-1.291059599999926],[109.16787930000004,-1.291091699999924],[109.170304,-1.289403499999935],[109.17241690000009,-1.291973299999938],[109.17237890000007,-1.296313399999974],[109.17554830000006,-1.296027899999956],[109.17873680000008,-1.292258799999956],[109.17956480000004,-1.283559499999967],[109.17843220000009,-1.280742299999929],[109.16964720000004,-1.271119699999929],[109.16654440000008,-1.2701965],[109.16240890000006,-1.266318],[109.158039,-1.266228699999942]]],[[[109.95075180000003,-1.268399799999941],[109.95082070000007,-1.266408799999965],[109.94831170000003,-1.2665335],[109.94928180000005,-1.269637799999941],[109.95075180000003,-1.268399799999941]]],[[[109.17135310000003,-1.265692099999967],[109.17078210000005,-1.2637219],[109.17009680000007,-1.2650925],[109.17135310000003,-1.265692099999967]]],[[[109.25431540000005,-1.237094299999967],[109.25432610000007,-1.235362099999975],[109.25244240000006,-1.236786799999948],[109.25431540000005,-1.237094299999967]]],[[[109.29803310000005,-1.2361049],[109.29805770000007,-1.234872699999926],[109.29621060000005,-1.234744299999932],[109.29614270000008,-1.236869299999967],[109.29803310000005,-1.2361049]]],[[[109.20801850000004,-1.235613899999976],[109.20527050000004,-1.232297399999936],[109.20414650000004,-1.235572],[109.19980510000005,-1.237744499999962],[109.20042030000008,-1.242332099999942],[109.20355510000007,-1.241463599999975],[109.20464260000006,-1.2443058],[109.20768110000006,-1.242934099999957],[109.20801850000004,-1.235613899999976]]],[[[109.29765620000006,-1.230613399999925],[109.29750330000007,-1.228112899999928],[109.29541140000003,-1.228027899999972],[109.29598010000007,-1.230863599999964],[109.29765620000006,-1.230613399999925]]],[[[109.28517870000007,-1.212499299999934],[109.28340440000005,-1.210179699999969],[109.28218830000009,-1.210472599999946],[109.28256090000008,-1.213215499999933],[109.28517870000007,-1.212499299999934]]],[[[109.276566,-1.205807899999968],[109.274651,-1.200408899999957],[109.27303270000004,-1.199517799999967],[109.27173580000004,-1.201624899999956],[109.27153650000008,-1.208597],[109.27467260000009,-1.211434299999951],[109.276635,-1.209382599999969],[109.276566,-1.205807899999968]]],[[[109.26090860000005,-1.182583199999954],[109.25891180000008,-1.182635799999957],[109.25684140000004,-1.186343099999931],[109.25417250000004,-1.187154899999939],[109.24788130000007,-1.193058899999926],[109.24564820000006,-1.198300499999959],[109.24264650000003,-1.196930399999928],[109.23677160000005,-1.197183799999948],[109.23479070000008,-1.198329499999943],[109.234912,-1.200710099999981],[109.22700150000009,-1.200931399999945],[109.22412530000008,-1.212629499999935],[109.22652640000007,-1.212265899999977],[109.22827530000006,-1.213895799999932],[109.22770640000005,-1.219954599999937],[109.22624540000004,-1.222843299999965],[109.22328420000008,-1.223540499999956],[109.22203730000007,-1.227123899999924],[109.21870010000004,-1.230382599999928],[109.21704050000005,-1.236792899999955],[109.22212660000008,-1.238702399999966],[109.223716,-1.242409899999927],[109.22528020000004,-1.240781699999957],[109.23252980000007,-1.243928099999948],[109.24295280000007,-1.2434985],[109.24539410000006,-1.239261799999952],[109.248767,-1.238169699999958],[109.25095720000007,-1.235605],[109.25354260000006,-1.229950499999973],[109.25376750000004,-1.2239858],[109.26286270000008,-1.220180199999959],[109.26547590000007,-1.215365499999962],[109.26755740000004,-1.216845499999977],[109.26961870000008,-1.216430499999944],[109.27092830000004,-1.209217499999966],[109.267964,-1.199802799999929],[109.268811,-1.194826599999942],[109.26649170000007,-1.187790799999959],[109.26320610000005,-1.186514599999953],[109.26090860000005,-1.182583199999954]]],[[[109.49809180000005,-0.9790336],[109.491545,-0.973479],[109.48826440000005,-0.973274099999969],[109.48005430000006,-0.992389799999955],[109.47246080000008,-1.002843399999961],[109.468329,-1.003887899999938],[109.46130040000008,-1.001067399999954],[109.45786990000005,-1.003889299999969],[109.460186,-1.007503699999972],[109.45935320000007,-1.009226199999944],[109.46158140000006,-1.010262199999943],[109.46109210000009,-1.0168819],[109.45477980000004,-1.0183433],[109.457238,-1.023068099999932],[109.45644460000005,-1.026807799999972],[109.45301370000004,-1.027782399999978],[109.45076540000008,-1.031471099999976],[109.45112160000008,-1.037166399999933],[109.45494390000005,-1.041166399999952],[109.45551240000009,-1.0453806],[109.45491210000006,-1.062429599999973],[109.44869410000007,-1.107142299999964],[109.44609660000003,-1.109993199999963],[109.44339620000005,-1.127478899999971],[109.43693780000007,-1.153317799999968],[109.43338210000007,-1.156139399999972],[109.43610230000007,-1.159467],[109.43139250000007,-1.185618399999953],[109.429025,-1.189337899999941],[109.42490280000004,-1.2056309],[109.41696320000005,-1.224757],[109.40565840000005,-1.245364499999937],[109.40012970000004,-1.247514699999954],[109.38741040000008,-1.248093099999949],[109.38260910000008,-1.250525499999981],[109.37957530000006,-1.255193799999972],[109.38503620000006,-1.263403199999971],[109.40125930000005,-1.2769328],[109.42695750000007,-1.292237499999942],[109.45667220000007,-1.303663599999936],[109.47662160000004,-1.307946699999945],[109.49654250000009,-1.309536099999946],[109.50253970000006,-1.308598399999937],[109.51213830000006,-1.295825799999932],[109.54222280000005,-1.272650599999963],[109.58838310000004,-1.249023699999952],[109.589903,-1.246868399999926],[109.64241710000005,-1.224455],[109.66441630000008,-1.216757099999938],[109.681718,-1.214378499999953],[109.68386960000004,-1.214666799999975],[109.68307370000008,-1.217060699999934],[109.68663270000008,-1.217737299999953],[109.68891420000006,-1.215548799999965],[109.68370930000009,-1.210899],[109.68251680000009,-1.203645799999947],[109.68381720000008,-1.199094699999932],[109.68945160000004,-1.192919499999959],[109.71291310000004,-1.180889099999945],[109.71401730000008,-1.177993799999967],[109.71942690000009,-1.1778578],[109.72411660000006,-1.1757635],[109.725135,-1.173945199999935],[109.72663740000007,-1.174587199999962],[109.73479920000005,-1.170819299999948],[109.73610320000006,-1.1686086],[109.73771970000007,-1.169107099999962],[109.74568220000003,-1.164467899999977],[109.74586360000006,-1.1628502],[109.74809850000008,-1.163195799999926],[109.75541880000009,-1.157254699999953],[109.76736650000004,-1.15188],[109.76925050000006,-1.149851399999932],[109.77714510000004,-1.148246599999936],[109.78005710000008,-1.144074099999955],[109.777438,-1.130154],[109.76823570000005,-1.120749599999954],[109.76563430000004,-1.1099503],[109.76468740000007,-1.099783599999967],[109.76655420000009,-1.093045099999927],[109.76571820000004,-1.090900399999953],[109.77002130000005,-1.080084899999974],[109.76589820000004,-1.069036199999971],[109.76426650000008,-1.058677699999976],[109.759402,-1.046460899999943],[109.75923510000007,-1.035643599999958],[109.75568340000007,-1.022297699999967],[109.75620050000003,-1.0130697],[109.76089930000006,-1.011099499999943],[109.76230790000005,-1.008132499999931],[109.76084460000004,-1.004704899999979],[109.73765860000009,-1.002388699999926],[109.72705420000005,-0.998165299999926],[109.71942560000008,-0.989714499999934],[109.714849,-0.989509299999952],[109.70099870000007,-0.993165399999953],[109.69674120000008,-1.0068651],[109.68745970000003,-1.018006199999945],[109.68219680000004,-1.020391399999937],[109.67442640000007,-1.021164499999941],[109.66294450000004,-1.010930899999948],[109.652704,-1.0128316],[109.64274840000007,-1.012404199999935],[109.64330690000008,-1.007330399999944],[109.64066750000006,-1.001206599999932],[109.64009450000009,-0.991799499999956],[109.63638320000007,-0.986298699999963],[109.61662210000009,-0.986544199999969],[109.59634520000009,-0.981155699999931],[109.59039130000008,-0.983488799999975],[109.57753980000007,-0.9933617],[109.57066360000005,-0.995244399999933],[109.56598860000008,-0.9993132],[109.55184890000004,-1.003303499999959],[109.53518510000004,-1.000227],[109.53157580000004,-0.996980099999973],[109.52835380000005,-0.998510099999976],[109.51836120000007,-0.989591799999971],[109.51470020000005,-0.98965],[109.51063680000004,-0.985651899999937],[109.50124860000005,-0.980885699999931],[109.49936410000004,-0.978017099999931],[109.49809180000005,-0.9790336]]],[[[110.06842820000008,-1.368424199999936],[110.10484310000004,-1.352861],[110.13282780000009,-1.337756],[110.16080480000005,-1.326869],[110.18483730000008,-1.32497],[110.20497890000007,-1.317434],[110.22009280000009,-1.308197],[110.23491180000008,-1.306271399999957],[110.25222780000007,-1.309414],[110.27068330000009,-1.304404],[110.317749,-1.261507],[110.35302730000006,-1.236294],[110.38127140000006,-1.22681],[110.41871640000005,-1.225508],[110.44131190000007,-1.234093499999972],[110.44405080000007,-1.2316938],[110.44474180000009,-1.227960099999962],[110.44785610000008,-1.227960099999962],[110.447739,-1.223687799999936],[110.44436390000004,-1.220332599999949],[110.44443970000009,-1.215798399999926],[110.44627030000004,-1.212116099999946],[110.44539220000007,-1.208852499999978],[110.44674610000004,-1.207112199999926],[110.45171250000004,-1.207790199999977],[110.45027060000007,-1.204301599999951],[110.45441040000009,-1.200161799999933],[110.45275140000007,-1.198176299999943],[110.45005660000004,-1.198727],[110.44975720000008,-1.1968831],[110.45107750000005,-1.1957121],[110.45334050000008,-1.197184799999945],[110.45450340000008,-1.196487099999956],[110.453284,-1.192872499999964],[110.45496850000006,-1.191277499999956],[110.45574390000007,-1.185738599999979],[110.45862780000004,-1.183147],[110.45678260000005,-1.182067599999925],[110.45744290000005,-1.179144699999938],[110.46507250000008,-1.170175299999926],[110.46848710000006,-1.170301099999961],[110.46255040000005,-1.167973599999925],[110.46199230000008,-1.166438599999935],[110.46580050000006,-1.161606199999937],[110.46544760000006,-1.156447399999934],[110.46900320000009,-1.148581099999944],[110.46517920000008,-1.141524699999934],[110.470644,-1.138995],[110.47059750000005,-1.1339714],[110.46455060000005,-1.130482799999925],[110.46105950000003,-1.130094299999939],[110.46087590000008,-1.125319699999977],[110.45727650000003,-1.125506399999949],[110.46141670000009,-1.121715699999925],[110.45760270000005,-1.114299699999947],[110.46023480000008,-1.1126994],[110.46034250000008,-1.110745099999974],[110.445831,-1.10997],[110.44117590000008,-1.1068995],[110.43186990000004,-1.107876499999975],[110.42615820000009,-1.100434499999949],[110.42090610000008,-1.104337],[110.41604880000006,-1.102985399999966],[110.41315180000004,-1.100062199999968],[110.41398910000004,-1.098620199999971],[110.42448180000008,-1.092669799999953],[110.42179260000006,-1.086610099999973],[110.41349270000006,-1.080423599999961],[110.40528560000007,-1.079721199999938],[110.40450510000005,-1.081672399999945],[110.39927590000008,-1.0803456],[110.39857340000009,-1.078472399999953],[110.40083680000004,-1.076521199999945],[110.39997830000004,-1.071448],[110.39654420000005,-1.072306599999933],[110.39365640000005,-1.070823699999949],[110.39412460000005,-1.0698871],[110.39638810000008,-1.070667599999979],[110.39513930000004,-1.063174899999979],[110.39927590000008,-1.064189499999941],[110.40036850000007,-1.059740799999929],[110.40431710000007,-1.059216799999945],[110.40019990000008,-1.049396],[110.39108280000005,-1.011403],[110.37588370000009,-0.958136399999944],[110.36437750000005,-0.903580699999964],[110.35310640000006,-0.873764599999959],[110.34605540000007,-0.875085699999943],[110.28189060000005,-0.8741506],[110.233583,-0.866010299999971],[110.21947070000004,-0.861126099999979],[110.19070330000005,-0.842674699999975],[110.13772080000007,-0.797765099999936],[110.12696410000007,-0.790083099999947],[110.09776740000007,-0.775871299999949],[110.05727440000004,-0.759670299999925],[110.01621690000007,-0.758039],[109.97171990000004,-0.752503399999966],[109.93226360000006,-0.752274199999931],[109.93965710000003,-0.757333599999924],[109.93980410000006,-0.758804199999929],[109.938699,-0.761788],[109.93151560000007,-0.769247699999937],[109.93206820000006,-0.781140299999947],[109.92835180000009,-0.784458],[109.91550960000006,-0.789702],[109.90695030000006,-0.799108799999942],[109.89797470000008,-0.800016599999935],[109.89421730000004,-0.802079499999934],[109.89259640000006,-0.808120899999949],[109.89386040000005,-0.8221469],[109.88019370000006,-0.823775299999966],[109.86687110000008,-0.830286899999976],[109.86434320000006,-0.8301257],[109.86018920000004,-0.824287699999957],[109.85627750000003,-0.823207599999932],[109.85358230000008,-0.824110799999971],[109.84501840000007,-0.837227899999959],[109.84266340000005,-0.838517299999978],[109.83834680000007,-0.837752499999965],[109.82818040000006,-0.831703699999935],[109.824914,-0.832838099999947],[109.81784470000008,-0.8403105],[109.80046060000006,-0.842332],[109.79634310000006,-0.846591399999966],[109.79461040000007,-0.853252599999962],[109.79669010000003,-0.8587819],[109.80280680000004,-0.862746699999946],[109.80321740000005,-0.867252299999961],[109.79698410000009,-0.871562599999947],[109.78033570000008,-0.875069499999938],[109.77785880000005,-0.876563899999951],[109.77166230000006,-0.885512199999937],[109.75960640000005,-0.887827499999958],[109.75682630000006,-0.889477299999953],[109.754443,-0.894777099999942],[109.75776350000007,-0.895880499999976],[109.75868020000007,-0.898910599999965],[109.75565070000005,-0.907642399999929],[109.746875,-0.9141235],[109.73369140000005,-0.915435099999968],[109.726913,-0.922803599999952],[109.726912,-0.925627599999927],[109.73150870000006,-0.936219],[109.73370190000009,-0.952708799999925],[109.73266410000008,-0.988386599999956],[109.74259080000007,-0.993172],[109.74694520000008,-0.990048199999933],[109.753829,-0.989298],[109.763052,-0.994111799999928],[109.76890570000006,-1.003056],[109.76788240000008,-1.033567099999971],[109.77536290000006,-1.0443251],[109.78210120000006,-1.043834699999934],[109.78626270000007,-1.041969599999959],[109.79531610000004,-1.043533499999967],[109.803607,-1.049409699999956],[109.80377650000008,-1.053771499999925],[109.81081970000008,-1.064524699999936],[109.81989020000009,-1.083650299999931],[109.82046390000005,-1.087958399999934],[109.81856560000006,-1.090322199999946],[109.81907390000003,-1.091787099999976],[109.82574920000008,-1.094862599999942],[109.82940350000007,-1.089062799999965],[109.84284230000009,-1.088685099999964],[109.86337930000008,-1.092809399999965],[109.93969780000003,-1.123667499999954],[109.94241820000008,-1.130545599999948],[109.937202,-1.141725399999928],[109.93329770000008,-1.154523599999948],[109.92218920000005,-1.177801799999941],[109.91993120000006,-1.187556099999938],[109.916258,-1.192274299999951],[109.91321450000004,-1.192052899999965],[109.91081690000004,-1.1939379],[109.91014960000007,-1.197834],[109.91150860000005,-1.200610799999936],[109.90974780000005,-1.203673499999979],[109.90657060000007,-1.204687],[109.90777660000003,-1.209445499999958],[109.91096330000005,-1.208518099999935],[109.91295910000008,-1.212539699999979],[109.91208210000008,-1.217345199999954],[109.91457420000006,-1.217183399999954],[109.91659860000004,-1.220831699999962],[109.91845430000006,-1.218582699999956],[109.92197370000008,-1.218038499999977],[109.925352,-1.213674399999945],[109.93450940000008,-1.21902],[109.93549810000007,-1.220331899999962],[109.93285240000006,-1.224284699999941],[109.93469630000004,-1.2276169],[109.93301060000005,-1.233006099999955],[109.93676780000004,-1.2326629],[109.93938230000003,-1.235660499999938],[109.94309320000008,-1.232033599999966],[109.94808930000005,-1.239414499999953],[109.94837710000007,-1.2436292],[109.94465370000006,-1.250212199999964],[109.94153930000004,-1.24957],[109.93876140000003,-1.251697899999954],[109.94295420000009,-1.256121499999949],[109.94817,-1.258349499999952],[109.948575,-1.2566216],[109.95042190000004,-1.257695499999954],[109.95058730000005,-1.260357],[109.94834180000004,-1.262046899999973],[109.95064240000005,-1.2650874],[109.95179930000006,-1.262034],[109.95377550000006,-1.261730799999953],[109.96077270000006,-1.264311299999974],[109.96012480000007,-1.272946299999944],[109.96183290000005,-1.277161699999965],[109.96422720000004,-1.278551799999946],[109.96859180000007,-1.277051],[109.97019690000008,-1.278131499999972],[109.97139040000008,-1.27557],[109.97573590000007,-1.275245699999971],[109.98515270000007,-1.277792199999965],[109.98764820000008,-1.274149499999965],[109.99187190000004,-1.274993799999947],[109.993494,-1.274046599999963],[110.01496190000006,-1.2857551],[110.02222510000007,-1.291552699999954],[110.03238180000005,-1.303319399999964],[110.03234210000005,-1.307742399999938],[110.03072450000008,-1.308967199999927],[110.03140840000009,-1.311552399999925],[110.03464330000008,-1.3096198],[110.03958820000008,-1.313202199999978],[110.04780190000008,-1.322628299999963],[110.05721,-1.336819499999933],[110.06358760000006,-1.352016099999958],[110.065791,-1.361016399999926],[110.06886270000007,-1.362980099999959],[110.06722110000004,-1.364803299999949],[110.06842820000008,-1.368424199999936]]]]},"properties":{"shapeName":"Kayong Utara","shapeISO":"","shapeID":"22746128B92420893686373","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[109.43273930000004,-7.536139899999966],[109.43392950000003,-7.539],[109.43187720000009,-7.541454699999974],[109.43285370000007,-7.549708799999962],[109.428627,-7.556179],[109.41905980000007,-7.558919399999979],[109.41514590000008,-7.565723399999968],[109.41539010000008,-7.569726899999978],[109.42105870000006,-7.578542699999957],[109.42025760000007,-7.585841099999925],[109.42329410000008,-7.587739899999974],[109.42350770000007,-7.5893182],[109.42505650000004,-7.588479],[109.42682650000006,-7.5933275],[109.42861180000006,-7.594772299999931],[109.42984010000004,-7.593858199999943],[109.43254850000005,-7.598742899999934],[109.43775180000006,-7.601180499999941],[109.43741610000006,-7.604005799999925],[109.44011690000008,-7.605366199999935],[109.44115670000008,-7.612988899999948],[109.44387210000008,-7.615313799999967],[109.44583430000006,-7.620661],[109.44388140000007,-7.621739699999978],[109.44397140000007,-7.624469799999929],[109.44253540000005,-7.625071],[109.44223790000007,-7.623992399999963],[109.44138340000006,-7.626336499999979],[109.440033,-7.626412799999969],[109.44097140000008,-7.6277389],[109.44006350000006,-7.6305508],[109.43488690000004,-7.635769],[109.42869570000005,-7.633350399999927],[109.42501550000009,-7.633809199999973],[109.423935,-7.637124],[109.41935730000006,-7.638485899999978],[109.41474060000007,-7.647975],[109.40792920000007,-7.649087399999928],[109.407237,-7.651288],[109.40571820000008,-7.648126599999955],[109.40422010000009,-7.651474],[109.40225710000004,-7.649903599999959],[109.40332060000009,-7.646665499999926],[109.40174050000007,-7.646411499999942],[109.39910890000004,-7.649362499999938],[109.39611060000004,-7.647048899999959],[109.39450070000004,-7.648135599999932],[109.39207580000004,-7.647170199999948],[109.39256840000007,-7.644673599999976],[109.39075650000007,-7.6442732],[109.38899660000004,-7.645848799999953],[109.38997650000005,-7.649780699999951],[109.386934,-7.651409699999931],[109.38479740000008,-7.6506022],[109.38354490000006,-7.6530628],[109.38668,-7.656987599999979],[109.38760770000005,-7.656185299999947],[109.38946240000007,-7.658126699999968],[109.38630370000004,-7.660743499999967],[109.38308720000003,-7.665216899999962],[109.38483430000008,-7.669599],[109.38597110000006,-7.670736699999964],[109.38848120000006,-7.668560399999933],[109.39136510000009,-7.669206599999939],[109.391655,-7.672252599999979],[109.38660430000004,-7.673070399999972],[109.38753510000004,-7.680725],[109.37963110000004,-7.686680299999978],[109.38456730000007,-7.690902199999925],[109.38616180000008,-7.687500899999975],[109.38758090000005,-7.687603899999942],[109.39534,-7.6957793],[109.39524840000007,-7.698649399999965],[109.39058690000007,-7.7021007],[109.38743590000007,-7.715267099999949],[109.38837430000007,-7.720034099999964],[109.39418030000007,-7.720813199999952],[109.39194980000008,-7.725699799999973],[109.39374,-7.72805],[109.39133,-7.72967],[109.3896,-7.73566],[109.38759,-7.73628],[109.38812,-7.7456],[109.38629,-7.75099],[109.38725,-7.75449],[109.38852,-7.75617],[109.39147,-7.75463],[109.39384,-7.75563],[109.39433,-7.75745],[109.39685,-7.75707],[109.39619,-7.75857],[109.39802,-7.76373],[109.40013,-7.7626],[109.40917,-7.76585],[109.41278,-7.77031],[109.41047,-7.7749],[109.41206,-7.77638],[109.41669,-7.77119],[109.42087,-7.77041],[109.42641,-7.77243],[109.43062,-7.77233],[109.43427,-7.77589],[109.43427,-7.77419],[109.43702,-7.7723],[109.43645,-7.76855],[109.43951,-7.76649],[109.44425,-7.76826],[109.4491,-7.76534],[109.451,-7.76673],[109.45347,-7.76331],[109.45598,-7.76541],[109.46077,-7.76251],[109.46127,-7.76387],[109.46257,-7.76229],[109.46439,-7.7632],[109.46609,-7.76229],[109.46699,-7.75865],[109.49868,-7.76205],[109.569935,-7.77328],[109.60876050000007,-7.781919199999948],[109.61017690000006,-7.781152],[109.60879560000006,-7.780123899999978],[109.59429,-7.77714],[109.62114,-7.78126],[109.625,-7.78248],[109.62363,-7.7841],[109.61428,-7.78309],[109.68753,-7.79698],[109.81963870000004,-7.830032699999947],[109.82672880000007,-7.8259243],[109.82884980000006,-7.823113899999953],[109.83296720000004,-7.804364299999975],[109.82939450000003,-7.803721799999948],[109.83402530000006,-7.793417899999952],[109.83901870000005,-7.773258899999973],[109.83523070000007,-7.773085299999934],[109.83356530000009,-7.756887199999937],[109.83157460000007,-7.753216799999961],[109.83247140000009,-7.741653],[109.83093060000004,-7.741629299999943],[109.83024880000005,-7.7398068],[109.83033290000009,-7.738585099999966],[109.83215950000005,-7.738324599999942],[109.831253,-7.72653],[109.82807160000004,-7.718616899999972],[109.83043670000006,-7.715808299999935],[109.81233980000007,-7.7123632],[109.81131880000004,-7.710415099999977],[109.80836370000009,-7.710613899999942],[109.80794530000009,-7.7086439],[109.80545810000007,-7.707826599999976],[109.80261230000008,-7.708991],[109.80200960000008,-7.706900599999926],[109.80021670000008,-7.706591099999969],[109.79809570000003,-7.698959799999955],[109.79817960000008,-7.696389599999975],[109.80324560000008,-7.693082299999958],[109.80391690000005,-7.689908899999978],[109.80641180000003,-7.690286599999979],[109.80673220000006,-7.688541799999939],[109.80493160000009,-7.688375899999926],[109.80793,-7.670501199999933],[109.80207060000004,-7.662662],[109.80348190000007,-7.654860199999973],[109.80218110000004,-7.654639499999973],[109.80202910000008,-7.652043499999934],[109.799786,-7.651060499999971],[109.80018050000007,-7.648683099999971],[109.79828670000006,-7.648885899999925],[109.79936450000008,-7.647704099999942],[109.79842090000005,-7.646797099999958],[109.79967940000006,-7.6439157],[109.80396440000004,-7.642724699999974],[109.80812840000004,-7.632217399999945],[109.809545,-7.633904399999949],[109.81474420000006,-7.631292299999927],[109.81362280000008,-7.624528099999964],[109.81053440000005,-7.622873599999934],[109.81203150000005,-7.6121332],[109.811966,-7.6042299],[109.81498820000007,-7.599243199999933],[109.81076810000008,-7.599923099999955],[109.80822760000007,-7.606926399999963],[109.80563360000008,-7.6068143],[109.80046080000005,-7.612314699999956],[109.78891370000008,-7.610048],[109.78788180000004,-7.608506899999952],[109.78586180000008,-7.611363],[109.78029110000006,-7.605642499999931],[109.76452640000008,-7.603243299999974],[109.76003270000007,-7.599883499999976],[109.75616270000006,-7.594357299999956],[109.75228120000008,-7.582068399999969],[109.75080110000005,-7.580075699999952],[109.74980960000005,-7.581906699999934],[109.74973170000004,-7.579265699999951],[109.74633380000006,-7.576154],[109.74122620000009,-7.574204899999927],[109.74195290000006,-7.560794299999941],[109.74063960000007,-7.555530699999963],[109.74218690000004,-7.5510731],[109.73715130000005,-7.544065799999942],[109.739357,-7.542885299999966],[109.73791530000005,-7.5353062],[109.74114990000004,-7.530339699999956],[109.74530030000005,-7.530493199999967],[109.750267,-7.528228199999944],[109.75204470000006,-7.523615799999959],[109.76157380000006,-7.523355],[109.76730350000008,-7.518206099999929],[109.77291870000005,-7.518685299999959],[109.77429960000006,-7.517135099999962],[109.76709750000003,-7.510118399999953],[109.768219,-7.506082],[109.75819820000004,-7.495447499999955],[109.75805930000007,-7.491409],[109.76127640000004,-7.487966799999981],[109.761111,-7.478843099999949],[109.75916170000005,-7.468814899999927],[109.75605180000008,-7.468055599999957],[109.75216460000007,-7.461879899999929],[109.75070950000008,-7.457782],[109.74913010000006,-7.458333399999958],[109.74648550000006,-7.462919399999976],[109.74183160000007,-7.465901899999949],[109.74100310000006,-7.468762099999935],[109.737457,-7.4687797],[109.73493150000007,-7.471098299999937],[109.73223880000006,-7.470199099999945],[109.73461150000009,-7.474702299999933],[109.73600770000007,-7.474792899999954],[109.73310090000007,-7.478360599999974],[109.725914,-7.476061299999969],[109.71939090000006,-7.478104099999939],[109.71511840000005,-7.482253],[109.71125030000007,-7.4827914],[109.706604,-7.488982599999929],[109.69890590000006,-7.495585399999925],[109.688858,-7.4968919],[109.687912,-7.501870099999962],[109.68441770000004,-7.503458499999965],[109.67869570000005,-7.501764699999967],[109.67752840000009,-7.503167099999928],[109.67253110000007,-7.5029974],[109.672287,-7.500837799999942],[109.66509250000007,-7.492921299999978],[109.65477750000008,-7.495949699999926],[109.64829250000008,-7.495361799999955],[109.64295960000004,-7.485676299999966],[109.63932040000009,-7.482024599999932],[109.63306430000006,-7.481577399999935],[109.61911010000006,-7.491640099999927],[109.61517340000006,-7.496563399999957],[109.61513520000005,-7.501235399999928],[109.612854,-7.502527199999975],[109.61318210000007,-7.504241399999955],[109.60224150000005,-7.506075799999962],[109.59392550000007,-7.5129561],[109.58868410000008,-7.5136022],[109.58711240000008,-7.515574899999933],[109.58490760000007,-7.513647099999957],[109.57210540000005,-7.5132417],[109.56872560000005,-7.5098738],[109.55981450000007,-7.5096574],[109.55585480000008,-7.511560899999949],[109.55139160000004,-7.5115256],[109.54514310000008,-7.522700699999973],[109.53749850000008,-7.515646899999979],[109.526001,-7.515668399999981],[109.51870730000007,-7.510991099999956],[109.50817110000008,-7.508728399999939],[109.5,-7.510482299999978],[109.49786380000006,-7.503248199999973],[109.49114990000004,-7.510047899999961],[109.48480990000007,-7.5112109],[109.48274230000004,-7.514779499999975],[109.48329160000009,-7.516946699999949],[109.48181920000007,-7.517865099999938],[109.46804810000003,-7.522433199999966],[109.46279910000004,-7.519260299999928],[109.455574,-7.523302],[109.43711850000005,-7.527172],[109.43439480000006,-7.529796599999941],[109.43273930000004,-7.536139899999966]]]},"properties":{"shapeName":"Kebumen","shapeISO":"","shapeID":"22746128B37655376864116","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[112.30657950000011,-7.929297299999973],[112.310554,-7.926438599999926],[112.31349130000001,-7.921697],[112.31352190000007,-7.908249199999943],[112.31195020000007,-7.904717199999936],[112.3178249,-7.895637299999976],[112.323257,-7.892198899999926],[112.32263140000009,-7.889774599999953],[112.32522540000002,-7.883159899999953],[112.32598070000006,-7.872869799999933],[112.32257030000005,-7.865529399999957],[112.31819870000004,-7.861468099999968],[112.3190227,-7.8573406],[112.32125040000005,-7.855447099999935],[112.320312,-7.850091799999973],[112.31731370000011,-7.846856899999977],[112.31935070000009,-7.839080199999955],[112.31558180000002,-7.837501799999927],[112.307632,-7.838922799999978],[112.30950880000012,-7.833977499999946],[112.3066401000001,-7.8284753],[112.30842180000002,-7.823220299999946],[112.30534560000001,-7.812165599999958],[112.30655110000009,-7.806387199999961],[112.30578050000008,-7.802408499999956],[112.30714320000004,-7.799251899999945],[112.30537230000004,-7.795533099999943],[112.30174210000007,-7.793227],[112.30038410000009,-7.789264499999945],[112.29607340000007,-7.788902099999973],[112.2926936,-7.7812823],[112.2882919000001,-7.779549499999973],[112.28770440000005,-7.770967799999937],[112.29207610000003,-7.768800599999963],[112.29914850000011,-7.769389499999932],[112.30065150000007,-7.771792799999957],[112.30609890000005,-7.772753099999932],[112.30680840000002,-7.774748199999976],[112.31045590000008,-7.7752679],[112.31038350000006,-7.776838699999928],[112.32873490000009,-7.777273],[112.33331250000003,-7.775723299999981],[112.33937420000007,-7.768169099999966],[112.34940180000001,-7.761085],[112.35756640000011,-7.766259499999933],[112.3673576000001,-7.768479599999978],[112.37042630000008,-7.772887],[112.37371630000007,-7.774856599999964],[112.37700240000004,-7.781204399999979],[112.38185880000003,-7.784899099999961],[112.38902280000002,-7.782931699999949],[112.396759,-7.785429399999941],[112.4053192,-7.782097699999952],[112.41811370000005,-7.7742876],[112.42210380000006,-7.769044699999938],[112.422203,-7.766941399999951],[112.41623680000009,-7.768500199999949],[112.41439050000008,-7.771810399999936],[112.39726250000001,-7.776074799999947],[112.39347830000008,-7.773349699999926],[112.38810720000004,-7.772402599999964],[112.38462060000006,-7.768760099999952],[112.37528220000002,-7.763970699999959],[112.36536400000011,-7.7608088],[112.36119840000003,-7.761156899999946],[112.35733790000006,-7.755977],[112.34863280000002,-7.748789699999975],[112.3415222000001,-7.74796],[112.33408350000002,-7.741345299999978],[112.3284301000001,-7.741354299999955],[112.32488250000006,-7.738018899999929],[112.31835930000011,-7.737556299999937],[112.31025690000001,-7.7306618],[112.30179590000012,-7.726817],[112.30117790000008,-7.728139299999953],[112.29938460000005,-7.726685799999927],[112.29562450000003,-7.727710499999944],[112.29361680000011,-7.725741699999958],[112.27935,-7.725603899999953],[112.2666263000001,-7.7228737],[112.2677116000001,-7.727209599999981],[112.26227570000003,-7.728253299999949],[112.25497430000007,-7.7272347],[112.24352180000005,-7.717240299999958],[112.24068940000006,-7.714066799999955],[112.23983720000001,-7.710306499999945],[112.233406,-7.707126499999958],[112.23508410000011,-7.702144],[112.22883560000002,-7.700070199999971],[112.22188530000005,-7.691571099999976],[112.2153545000001,-7.689237499999933],[112.217842,-7.676069599999948],[112.209996,-7.669552599999975],[112.20344960000011,-7.660018199999968],[112.19459370000004,-7.654636],[112.19472460000009,-7.651245],[112.19148970000003,-7.6472324],[112.18514970000001,-7.644132499999955],[112.182899,-7.640531899999928],[112.18270830000006,-7.632728899999961],[112.1766632,-7.625138199999981],[112.1712543000001,-7.622022699999945],[112.17126240000005,-7.618745199999978],[112.165586,-7.613229499999932],[112.15555250000011,-7.610167299999944],[112.14838760000009,-7.611137],[112.14002190000008,-7.609749199999953],[112.138084,-7.6114258],[112.12734180000007,-7.606744699999979],[112.121841,-7.606872499999952],[112.11391720000006,-7.598537499999964],[112.11317120000001,-7.595097299999964],[112.11160810000001,-7.594954199999961],[112.11194630000011,-7.591070599999966],[112.10894130000008,-7.596653499999945],[112.109085,-7.603904099999966],[112.103088,-7.609467399999971],[112.10388910000006,-7.6143469],[112.10085260000005,-7.628332499999942],[112.10126330000003,-7.635185499999977],[112.09821320000003,-7.639743199999941],[112.09835010000006,-7.644111499999951],[112.09175070000003,-7.649576099999933],[112.08970750000003,-7.6565229],[112.08478370000012,-7.659061799999961],[112.08441120000009,-7.663213599999949],[112.082008,-7.666957299999979],[112.08278650000011,-7.672911499999941],[112.07859040000005,-7.674885699999948],[112.07598150000001,-7.678754499999968],[112.07655330000011,-7.685347899999954],[112.07514190000006,-7.693074399999944],[112.07630920000008,-7.701496499999962],[112.06578060000004,-7.711658399999976],[112.0626827000001,-7.720532299999945],[112.0590664,-7.723518699999943],[112.05311920000008,-7.723964199999955],[112.04909480000003,-7.726267199999938],[112.03974110000001,-7.7243894],[112.031921,-7.726372099999935],[112.02680090000001,-7.726053599999943],[112.020607,-7.742540799999972],[112.02227750000009,-7.761946599999931],[112.02017180000007,-7.763172499999939],[112.01057240000011,-7.761141],[112.00833910000006,-7.759251099999972],[112.00854410000011,-7.757563399999981],[112.00595220000002,-7.757038299999977],[112.004969,-7.752478],[112.00207000000012,-7.749963899999955],[112.001087,-7.744531199999926],[111.99823730000008,-7.742918399999951],[111.99928250000005,-7.7417425],[111.99755820000007,-7.7292985],[111.99331630000006,-7.728381499999955],[111.98812860000004,-7.723866899999962],[111.98839320000008,-7.717753699999946],[111.98425040000006,-7.711366199999929],[111.98225260000004,-7.7113255],[111.98347440000003,-7.708292899999947],[111.98113050000006,-7.704231799999945],[111.98156360000007,-7.702342399999964],[111.98265720000006,-7.702513499999952],[111.98311610000007,-7.688060199999939],[111.98209380000009,-7.684413799999959],[111.97741650000006,-7.68231],[111.97568420000005,-7.683860899999956],[111.96386860000007,-7.681892299999959],[111.95772310000007,-7.679047399999945],[111.95376080000005,-7.679470299999934],[111.95007130000005,-7.6912669],[111.94792620000004,-7.694093199999941],[111.94229640000009,-7.693640099999925],[111.93909440000004,-7.700840299999982],[111.93771950000007,-7.700397],[111.93184660000009,-7.708774499999947],[111.93186950000006,-7.716168299999936],[111.92804710000007,-7.722563199999968],[111.91829680000006,-7.725753699999927],[111.91414720000006,-7.731855699999926],[111.90484950000007,-7.735991699999943],[111.89936530000006,-7.7429631],[111.89623020000005,-7.744435],[111.895889,-7.7472781],[111.89311220000008,-7.748099699999955],[111.88571160000004,-7.754864199999929],[111.88156890000005,-7.763595499999951],[111.86220550000007,-7.776545399999975],[111.85397340000009,-7.786261499999966],[111.84266660000009,-7.792967199999964],[111.83790590000007,-7.799215299999958],[111.82511140000008,-7.811097599999925],[111.81404110000005,-7.812996299999952],[111.81329340000008,-7.822655099999963],[111.80450440000004,-7.828648],[111.799202,-7.836567299999956],[111.79701970000008,-7.842717499999935],[111.79717230000006,-7.847897899999964],[111.801994,-7.856285899999932],[111.80271120000003,-7.8656663],[111.81037110000005,-7.866426299999944],[111.81684080000008,-7.872048699999937],[111.820152,-7.871923299999935],[111.83037540000004,-7.877434099999959],[111.84465760000006,-7.891560399999946],[111.85124940000009,-7.900854899999956],[111.86302920000008,-7.907657499999971],[111.86289210000007,-7.910702199999946],[111.86911740000005,-7.917832499999975],[111.87824240000003,-7.932869199999971],[111.88002010000008,-7.942537199999947],[111.88198850000003,-7.943711699999938],[111.88362880000005,-7.947909799999934],[111.88668820000004,-7.948485799999958],[111.89180750000008,-7.952731099999937],[111.89468380000005,-7.953566],[111.89395870000004,-7.952260799999976],[111.89544680000006,-7.953186],[111.89619440000007,-7.9521765],[111.90260310000008,-7.957068399999969],[111.90695190000008,-7.956078],[111.90682980000008,-7.957452199999977],[111.90820310000004,-7.957711099999926],[111.91004180000004,-7.956123299999945],[111.91065210000005,-7.958948499999963],[111.91307060000008,-7.958671],[111.91712190000004,-7.961213],[111.91823550000004,-7.960037499999942],[111.91778530000005,-7.956562799999972],[111.92288940000009,-7.956855099999927],[111.92527770000004,-7.960389],[111.92909970000005,-7.962510899999927],[111.93122070000004,-7.9622997],[111.935188,-7.956729699999926],[111.94106260000007,-7.9561318],[111.94375630000008,-7.9533529],[111.94524180000008,-7.9535693],[111.94659390000004,-7.960888199999943],[111.94387050000006,-7.964491299999963],[111.94699850000006,-7.966652699999941],[111.94753230000003,-7.972261299999957],[111.95036280000005,-7.974756499999955],[111.95361320000006,-7.987917799999934],[111.95580290000004,-7.98913],[111.95550530000008,-7.990868],[111.95648890000007,-7.990152599999931],[111.95705490000006,-7.997469],[111.96149240000005,-7.998668899999927],[111.96359220000005,-8.0057915],[111.969505,-8.007162899999969],[111.97612,-8.012055299999929],[111.97896570000006,-8.004575599999953],[111.97644810000008,-8.002758899999947],[111.97754640000005,-7.996343399999944],[112.018684,-7.999552499999936],[112.03656730000012,-7.994677799999977],[112.0367989,-7.993152699999939],[112.04824660000008,-7.993560199999934],[112.05357690000005,-7.990620099999944],[112.07416500000011,-7.990107299999977],[112.09080470000004,-7.991576],[112.09629020000011,-7.989083599999958],[112.09826620000001,-7.976842199999965],[112.09607570000003,-7.969933899999944],[112.11181680000004,-7.969854],[112.11352650000003,-7.970675399999948],[112.11412010000004,-7.977420599999959],[112.15433460000008,-7.9769037],[112.16042290000007,-7.975130399999955],[112.1799923000001,-7.973399],[112.19322960000011,-7.969575799999973],[112.201332,-7.964040199999943],[112.21618650000005,-7.962713599999972],[112.2255249000001,-7.959010499999977],[112.228981,-7.955012699999941],[112.23274990000004,-7.955506199999945],[112.23846430000003,-7.953802],[112.23885340000004,-7.955217699999935],[112.2411499000001,-7.9552015],[112.24211880000007,-7.952404899999976],[112.244751,-7.951636199999939],[112.24816890000011,-7.953257],[112.25434110000003,-7.952260899999942],[112.25611110000011,-7.948145299999965],[112.25833890000001,-7.948100899999929],[112.2631225,-7.944436399999972],[112.2749328000001,-7.945266099999969],[112.279602,-7.939896],[112.2863235000001,-7.939706199999932],[112.29288480000002,-7.9372586],[112.297882,-7.937585199999944],[112.30282590000002,-7.9333542],[112.30448130000002,-7.929671799999937],[112.30657950000011,-7.929297299999973]],[[112.00128940000002,-7.771071],[112.00536350000004,-7.772607799999946],[112.00619510000001,-7.782842599999981],[112.00883480000005,-7.785831499999972],[112.00921360000007,-7.790074799999957],[112.01596360000008,-7.791594699999962],[112.01596790000008,-7.795739499999968],[112.02448470000002,-7.799587499999973],[112.02484130000005,-7.802661399999977],[112.02859500000011,-7.8061967],[112.03032680000001,-7.813746499999979],[112.03199270000005,-7.8112692],[112.0358351000001,-7.8128296],[112.03329410000003,-7.818812399999956],[112.04318340000009,-7.823142],[112.04273160000002,-7.827258299999926],[112.04901960000007,-7.830046],[112.0496859000001,-7.831830899999943],[112.051116,-7.831682299999954],[112.05136190000007,-7.829618499999981],[112.05299580000008,-7.830210399999942],[112.05254840000009,-7.831334099999935],[112.05530640000006,-7.832812299999944],[112.05419510000002,-7.833508799999947],[112.05790710000008,-7.8362184],[112.06067660000008,-7.836919299999977],[112.06234740000002,-7.835642299999961],[112.07099910000011,-7.837490099999968],[112.07082620000006,-7.840499899999941],[112.07246110000006,-7.8414749],[112.0745396000001,-7.836504499999933],[112.0783795000001,-7.841489099999933],[112.08138930000007,-7.842675399999962],[112.08003580000002,-7.8470109],[112.078695,-7.846569899999963],[112.07756860000006,-7.8492065],[112.0695343000001,-7.845167099999969],[112.0677581000001,-7.849044799999945],[112.06480510000006,-7.848167599999954],[112.0690833000001,-7.850847],[112.06832170000007,-7.852477199999953],[112.0651861,-7.851977799999929],[112.06658,-7.85417],[112.06591790000004,-7.860404399999936],[112.07374220000008,-7.868063799999959],[112.07239240000001,-7.872756899999956],[112.07018340000002,-7.872586],[112.06928060000007,-7.874990899999943],[112.06666330000007,-7.868778099999929],[112.05930320000004,-7.865301099999954],[112.05659780000008,-7.8655763],[112.0557371000001,-7.871457599999928],[112.04757690000008,-7.867765899999938],[112.04241180000008,-7.871709299999964],[112.02223970000011,-7.868484499999965],[112.019989,-7.866986299999951],[112.01897430000008,-7.862638499999946],[112.0172424000001,-7.8614845],[112.01096340000004,-7.8617644],[112.01129830000002,-7.8557435],[111.99987510000005,-7.8526804],[112.0043793000001,-7.846183799999949],[112.00360870000009,-7.842511199999933],[111.98438230000005,-7.8380598],[111.986969,-7.829600299999981],[111.98500060000003,-7.827250499999934],[111.97499050000005,-7.8244394],[111.95809140000006,-7.822859599999958],[111.95781330000005,-7.819101299999943],[111.95440640000004,-7.812404],[111.95629880000007,-7.796742399999971],[111.96926120000006,-7.791213],[111.97657010000006,-7.793538599999977],[111.98226130000006,-7.788132599999926],[111.98348970000006,-7.780929899999933],[111.99063310000008,-7.781457299999943],[111.99259950000004,-7.775538399999959],[111.99642690000007,-7.774312799999961],[111.99737890000006,-7.771489],[112.00128940000002,-7.771071]]]},"properties":{"shapeName":"Kediri","shapeISO":"","shapeID":"22746128B80156816270405","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[140.38186650000011,-3.737325799999951],[140.3837185000001,-3.7362675],[140.39431850000005,-3.739367499999958],[140.39841850000005,-3.738967499999944],[140.39981850000004,-3.734667499999944],[140.40421850000007,-3.738667499999963],[140.40341850000004,-3.743467499999952],[140.39831850000007,-3.745867499999974],[140.39851850000002,-3.7488675],[140.40161850000004,-3.7496675],[140.4086185000001,-3.756367499999953],[140.40211850000003,-3.766167499999938],[140.3987185000001,-3.766467499999976],[140.39781850000008,-3.770267499999932],[140.40781850000008,-3.774667499999964],[140.40961850000008,-3.778567499999951],[140.41241850000006,-3.780667499999936],[140.40891850000003,-3.784867499999962],[140.4050185000001,-3.784067499999935],[140.40331850000007,-3.788367499999936],[140.41741850000005,-3.7987675],[140.41761850000012,-3.802667499999927],[140.41331850000006,-3.804167499999949],[140.4113185000001,-3.8070675],[140.3999185,-3.811167499999954],[140.3996185000001,-3.814567499999953],[140.4050185000001,-3.814767499999959],[140.41071850000003,-3.822267499999953],[140.41391850000002,-3.819367499999942],[140.41331850000006,-3.816467499999931],[140.42051850000007,-3.818067499999927],[140.4222185000001,-3.821667499999933],[140.41911850000008,-3.821467499999926],[140.4203185,-3.825167499999964],[140.42021850000003,-3.835367499999961],[140.41571850000003,-3.840367499999957],[140.41671850000012,-3.846667499999967],[140.42651850000004,-3.850967499999967],[140.4308185000001,-3.850467499999979],[140.43101850000005,-3.855967499999963],[140.42771850000008,-3.861767499999928],[140.42371850000006,-3.863767499999938],[140.42101850000006,-3.868267499999945],[140.42091850000008,-3.871867499999951],[140.4158185000001,-3.877667499999973],[140.41431850000004,-3.8815675],[140.4140185000001,-3.885867499999961],[140.41781850000007,-3.892967499999941],[140.4181185000001,-3.898967499999969],[140.41331850000006,-3.900367499999959],[140.4064185000001,-3.892967499999941],[140.40471850000006,-3.896267499999965],[140.4045185000001,-3.903167499999938],[140.41381850000005,-3.910867499999938],[140.41161850000003,-3.913667499999974],[140.40571850000003,-3.911667499999965],[140.40571850000003,-3.915867499999933],[140.4109185000001,-3.917967499999975],[140.41701850000004,-3.917667499999936],[140.41981850000002,-3.909667499999955],[140.4254185000001,-3.907067499999926],[140.4353185000001,-3.910167499999943],[140.43821850000006,-3.909067499999935],[140.44181850000007,-3.911967499999946],[140.44251850000012,-3.907767499999977],[140.4461185,-3.910167499999943],[140.44831850000003,-3.907067499999926],[140.44831850000003,-3.903167499999938],[140.4553185000001,-3.892967499999941],[140.45551850000004,-3.904867499999966],[140.45961850000003,-3.902567499999975],[140.46961850000002,-3.902467499999943],[140.4661185000001,-3.905367499999954],[140.45941850000008,-3.907067499999926],[140.4634185000001,-3.910167499999943],[140.47861850000004,-3.910567499999956],[140.47901850000005,-3.917767499999968],[140.48441850000006,-3.9186675],[140.4879185000001,-3.921367499999974],[140.4860185000001,-3.924167499999953],[140.4856185000001,-3.928167499999972],[140.48841850000008,-3.929367499999955],[140.49001850000002,-3.927167499999939],[140.49401850000004,-3.9286675],[140.49461850000012,-3.925567499999943],[140.50021850000007,-3.922267499999975],[140.50271850000001,-3.925367499999936],[140.50801850000005,-3.928067499999941],[140.5068185,-3.925067499999955],[140.5001185000001,-3.919267499999933],[140.50031850000005,-3.913967499999956],[140.49861850000002,-3.912067499999978],[140.4960185000001,-3.913967499999956],[140.4941185,-3.911967499999946],[140.49491850000004,-3.909667499999955],[140.49751850000007,-3.908467499999972],[140.49761850000004,-3.904867499999966],[140.50341850000007,-3.907567499999971],[140.50631850000002,-3.9046675],[140.50891850000005,-3.907667499999945],[140.51441850000003,-3.907167499999957],[140.51701850000006,-3.904967499999941],[140.51941850000003,-3.906567499999937],[140.51471850000007,-3.912667499999941],[140.5169185000001,-3.914867499999957],[140.52391850000004,-3.913767499999949],[140.52601850000008,-3.915767499999959],[140.52541850000011,-3.917967499999975],[140.53491850000012,-3.917667499999936],[140.54201850000004,-3.912667499999941],[140.54421850000006,-3.914567499999976],[140.5445185000001,-3.919667499999946],[140.5471185,-3.921467499999949],[140.54871850000006,-3.916967499999942],[140.55161850000002,-3.914367499999969],[140.5522185000001,-3.916867499999967],[140.55781850000005,-3.916867499999967],[140.5603185000001,-3.921367499999974],[140.56601850000004,-3.923867499999972],[140.5680185000001,-3.926267499999938],[140.57001850000006,-3.924667499999941],[140.58241850000002,-3.929067499999974],[140.5934185000001,-3.925567499999943],[140.59621850000008,-3.927767499999959],[140.5951185,-3.930567499999938],[140.58991850000007,-3.930167499999925],[140.5902185000001,-3.932967499999961],[140.58531850000008,-3.933067499999936],[140.58721850000006,-3.937267499999962],[140.59451850000005,-3.938867499999958],[140.59651850000012,-3.941867499999944],[140.6088185000001,-3.9446675],[140.61091850000003,-3.947267499999953],[140.61361850000003,-3.944567499999948],[140.61281850000012,-3.940667499999961],[140.6151185000001,-3.937667499999975],[140.6178185000001,-3.938467499999945],[140.62031850000005,-3.935867499999972],[140.62881850000008,-3.933367499999974],[140.63711850000004,-3.933467499999949],[140.63981850000005,-3.9314675],[140.63991850000002,-3.923567499999933],[140.64481850000004,-3.921667499999955],[140.65121850000003,-3.915567499999952],[140.67881850000003,-3.906767499999944],[140.69101850000004,-3.9103675],[140.69421850000003,-3.910067499999968],[140.69691850000004,-3.912467499999934],[140.70061850000002,-3.912567499999966],[140.70221850000007,-3.910067499999968],[140.7152185000001,-3.916367499999978],[140.7306185000001,-3.911967499999946],[140.73271850000003,-3.915767499999959],[140.7414185,-3.917767499999968],[140.74251850000007,-3.920467499999972],[140.73931850000008,-3.924167499999953],[140.74861850000002,-3.928467499999954],[140.7524185000001,-3.928367499999979],[140.75161850000006,-3.931367499999965],[140.75501850000012,-3.935467499999959],[140.75941850000004,-3.931967499999928],[140.76061850000008,-3.926967499999932],[140.76531850000003,-3.927567499999952],[140.76391850000005,-3.925567499999943],[140.76891850000004,-3.925767499999949],[140.77041850000012,-3.9286675],[140.76881850000007,-3.930967499999952],[140.77331850000007,-3.934467499999926],[140.77531850000003,-3.933667499999956],[140.77881850000006,-3.9383675],[140.78871850000007,-3.940367499999979],[140.83461850000003,-3.940367499999979],[140.86491850000004,-3.933367499999974],[140.86811850000004,-3.936167499999954],[140.87311850000003,-3.935267499999952],[140.8759185,-3.938467499999945],[140.8801185000001,-3.938067499999931],[140.88111850000007,-3.931867499999953],[140.88611850000007,-3.930467499999963],[140.8851185000001,-3.938667499999951],[140.88681850000012,-3.941167499999949],[140.89571850000004,-3.938767499999926],[140.8972185,-3.935267499999952],[140.89941850000002,-3.936667499999942],[140.8986185000001,-3.940267499999948],[140.90351850000002,-3.9363675],[140.9058185,-3.938267499999938],[140.90871850000008,-3.938067499999931],[140.91191850000007,-3.946267499999976],[140.9163185000001,-3.946367499999951],[140.9195185000001,-3.944367499999942],[140.9177185000001,-3.938767499999926],[140.9141185000001,-3.936567499999967],[140.91691850000007,-3.933467499999949],[140.9158185000001,-3.926967499999932],[140.91741850000005,-3.922067499999969],[140.92501850000008,-3.9249675],[140.92801850000012,-3.928167499999972],[140.93251850000001,-3.926667499999951],[140.93421850000004,-3.921867499999962],[140.93681850000007,-3.919567499999971],[140.93601850000005,-3.917067499999973],[140.9430185000001,-3.913967499999956],[140.95231850000005,-3.917567499999961],[140.95791850000012,-3.914067499999931],[140.96171850000007,-3.913967499999956],[140.9639185000001,-3.917067499999973],[140.9634185000001,-3.919567499999971],[140.96651850000012,-3.923667499999965],[140.97121850000008,-3.923167499999977],[140.97301850000008,-3.918867499999976],[140.97551850000002,-3.919367499999964],[140.98011850000012,-3.915367499999945],[140.9829185000001,-3.9152675],[140.9861185000001,-3.922767499999964],[140.98941850000006,-3.925767499999949],[140.99621850000005,-3.921667499999955],[140.99791850000008,-3.924667499999941],[140.99641850000012,-3.929167499999949],[140.99955390000002,-3.931170699999939],[140.9985379000001,-3.913931399999967],[140.99997630000007,-3.914038499999947],[140.9999822000001,-3.427595099999962],[140.99998970000001,-2.913254299999949],[140.99905490000003,-2.913252099999966],[140.999986,-2.8289057],[140.9652579000001,-2.8064022],[140.93790840000008,-2.790747199999942],[140.88085460000002,-2.766854499999965],[140.824537,-2.734150899999975],[140.77591970000003,-2.721925299999953],[140.75844170000005,-2.718858],[140.729866,-2.707206799999938],[140.71695210000007,-2.706058499999926],[140.70726620000005,-2.707010699999955],[140.68954960000008,-2.720540699999958],[140.6640073000001,-2.725600399999962],[140.6334240000001,-2.722521599999936],[140.63218050000012,-2.716129499999965],[140.62800540000012,-2.7166629],[140.62692210000012,-2.715197599999954],[140.62411450000002,-2.7169058],[140.6236407,-2.720567899999935],[140.627273,-2.7210574],[140.62957710000012,-2.724476299999935],[140.62945500000012,-2.727650399999959],[140.62873790000003,-2.730213599999956],[140.62570140000003,-2.728747799999951],[140.622848,-2.7310665],[140.62307690000011,-2.737048099999924],[140.6205897000001,-2.738268099999971],[140.62022350000007,-2.743273199999976],[140.6203455000001,-2.744249799999977],[140.62289380000004,-2.744006599999977],[140.62168830000007,-2.746691899999973],[140.62277170000004,-2.751209],[140.62690680000003,-2.750477799999942],[140.63268990000006,-2.759153799999979],[140.629394,-2.759295699999939],[140.62777660000006,-2.757155199999943],[140.6278986000001,-2.758821],[140.6253657000001,-2.757871399999942],[140.62313790000007,-2.761062599999946],[140.6212763000001,-2.761111699999958],[140.61909430000003,-2.764350199999967],[140.6206049000001,-2.765205599999945],[140.62123050000002,-2.768441699999926],[140.62489270000003,-2.769533399999943],[140.6196284,-2.773822099999961],[140.6154322000001,-2.7727783],[140.61634770000012,-2.775014899999974],[140.61430310000003,-2.774397799999974],[140.61334180000006,-2.775969499999974],[140.6094965000001,-2.773760799999934],[140.606399,-2.773906499999953],[140.60630750000007,-2.772335799999951],[140.6044459000001,-2.772480199999961],[140.60176030000002,-2.770102699999939],[140.59454290000008,-2.770585299999937],[140.5942378000001,-2.765254499999969],[140.5912776,-2.763543399999946],[140.59326120000003,-2.761352299999942],[140.5913081000001,-2.761068299999977],[140.590713,-2.763877399999956],[140.5886683000001,-2.764926199999934],[140.5882868000001,-2.763212899999928],[140.58666940000012,-2.763643],[140.58752390000006,-2.762594899999954],[140.58613530000002,-2.76212],[140.58637950000002,-2.760168499999963],[140.58343450000007,-2.758505099999979],[140.5793910000001,-2.762126199999955],[140.5763545000001,-2.760272699999973],[140.57540840000001,-2.761368299999958],[140.57664440000008,-2.762747299999944],[140.57498120000002,-2.763795799999968],[140.5752711,-2.759940399999948],[140.5740809,-2.758561099999952],[140.57257030000005,-2.761608799999976],[140.571136,-2.760420099999976],[140.568542,-2.761909699999933],[140.57115120000003,-2.7639303],[140.568542,-2.763278199999945],[140.56692450000003,-2.760602199999937],[140.5652613000001,-2.762626599999976],[140.56692450000003,-2.763101099999972],[140.56591750000007,-2.764886799999942],[140.56372020000003,-2.762508899999943],[140.562469,-2.762985899999933],[140.56306410000002,-2.764651499999957],[140.56169080000006,-2.766913599999953],[140.56513930000006,-2.766196499999978],[140.5652613000001,-2.767267499999946],[140.5627131000001,-2.767745699999978],[140.563415,-2.7698274],[140.561584,-2.771375899999953],[140.56103460000008,-2.7689371],[140.5587458000001,-2.768820299999959],[140.55868480000004,-2.765964299999951],[140.5562586000001,-2.765550099999928],[140.55508370000007,-2.767990599999962],[140.5506739000001,-2.767280599999935],[140.5497279000001,-2.768530599999963],[140.55276440000011,-2.769836899999973],[140.5488276000001,-2.769959399999948],[140.55097910000006,-2.771385399999929],[140.55055190000007,-2.7744799],[140.5486598000001,-2.772220399999981],[140.54650830000003,-2.773174499999925],[140.5466914000001,-2.771686799999941],[140.54531810000003,-2.771152499999971],[140.54168650000008,-2.773595099999966],[140.53921460000004,-2.7736571],[140.5391383000001,-2.771693499999969],[140.5375514000001,-2.773003799999969],[140.53573560000007,-2.771874899999943],[140.53507950000005,-2.772946599999955],[140.53643750000003,-2.774254299999939],[140.5347743000001,-2.775445899999966],[140.5363307,-2.777348299999971],[140.53388930000006,-2.777885899999944],[140.5340724,-2.776279399999964],[140.53233290000003,-2.776042899999936],[140.53091380000012,-2.779078499999969],[140.52847240000006,-2.776165499999934],[140.52687020000008,-2.777713799999958],[140.52752640000006,-2.779557699999941],[140.52450510000006,-2.779679299999941],[140.52490180000007,-2.776584899999932],[140.5264582000001,-2.776940599999932],[140.52740430000006,-2.773845899999969],[140.52407790000007,-2.7756338],[140.52412360000005,-2.773789399999941],[140.52210950000006,-2.772720099999958],[140.51986640000007,-2.774328499999967],[140.52032420000012,-2.772245599999962],[140.518722,-2.771414],[140.5136103000001,-2.775643099999968],[140.5133204000001,-2.7730255],[140.51165720000006,-2.772729399999946],[140.510757,-2.775883699999952],[140.50915480000003,-2.774933099999942],[140.50701860000004,-2.776184499999943],[140.50572160000002,-2.771491],[140.5021968000001,-2.773321099999976],[140.49829050000005,-2.767811499999937],[140.49851940000008,-2.766719299999977],[140.5014338000001,-2.766768699999943],[140.5011287000001,-2.765104799999961],[140.4976954000001,-2.764535699999954],[140.49789380000004,-2.761935],[140.49441480000007,-2.7618861],[140.49732920000008,-2.757255099999952],[140.49275160000002,-2.758403299999941],[140.4929042000001,-2.755542699999978],[140.49026440000011,-2.754764799999975],[140.48857070000008,-2.752165399999967],[140.4868464000001,-2.7529476],[140.476562,-2.750876399999925],[140.47615,-2.7539973],[140.46873430000005,-2.752095899999972],[140.466476,-2.754318199999943],[140.46928360000004,-2.755303799999979],[140.46861220000005,-2.759048899999925],[140.46333270000002,-2.757181599999967],[140.46266130000004,-2.758690099999967],[140.46490430000006,-2.7591562],[140.4648585000001,-2.760872599999971],[140.46069290000003,-2.761344399999928],[140.45120190000011,-2.769830199999944],[140.44647170000007,-2.769990199999938],[140.44482370000003,-2.7745685],[140.4481654000001,-2.774825599999929],[140.44665480000003,-2.779611599999953],[140.43777420000004,-2.7758748],[140.3878826,-2.770296899999948],[140.3602863000001,-2.804857399999946],[140.3637778000001,-3],[140.35679390000007,-3.125699299999951],[140.35995230000003,-3.131581399999959],[140.36146080000003,-3.142682399999956],[140.36751130000005,-3.151235],[140.36634490000006,-3.1536588],[140.36783720000005,-3.156988799999965],[140.36309540000002,-3.163001799999961],[140.35715340000002,-3.166471899999976],[140.35473760000002,-3.166280499999971],[140.34202470000002,-3.176666799999964],[140.33783590000007,-3.177930599999968],[140.3358555000001,-3.174555],[140.3312274000001,-3.177112199999954],[140.32566780000002,-3.177036099999953],[140.3228858000001,-3.184551899999974],[140.32348690000003,-3.186596799999961],[140.3203621,-3.188177799999949],[140.32065540000008,-3.190358199999935],[140.3185281000001,-3.193676799999935],[140.32192320000001,-3.195180799999946],[140.32521010000005,-3.202646199999947],[140.32962190000012,-3.204196099999933],[140.3336505000001,-3.202136099999962],[140.33748350000008,-3.209077199999967],[140.33510520000004,-3.212893299999962],[140.33576470000003,-3.217009799999971],[140.33285280000007,-3.221286899999939],[140.33386980000012,-3.234359599999948],[140.33185020000008,-3.243540399999972],[140.32813270000008,-3.249580899999955],[140.32234670000003,-3.2539193],[140.32030380000003,-3.260304599999927],[140.324225,-3.273741199999961],[140.32014790000005,-3.286240499999963],[140.31660210000007,-3.292588599999931],[140.31702840000003,-3.298876199999938],[140.31341580000003,-3.3031797],[140.30744040000002,-3.304641099999969],[140.30600830000003,-3.308077699999956],[140.30897090000008,-3.314157499999965],[140.31429470000012,-3.316840699999943],[140.3101269000001,-3.322649699999943],[140.31886010000005,-3.323573499999952],[140.32285930000012,-3.320228799999938],[140.32489040000007,-3.320230199999969],[140.3233643000001,-3.324307699999963],[140.32427540000003,-3.328692799999942],[140.32804210000006,-3.330701799999929],[140.33153370000002,-3.3361745],[140.33883260000005,-3.3362827],[140.34407910000004,-3.3309191],[140.34613170000011,-3.336184399999979],[140.34261930000002,-3.337796],[140.34182280000005,-3.342111399999965],[140.3462535000001,-3.342712],[140.3488357000001,-3.338264899999956],[140.35101830000008,-3.337934399999938],[140.35200670000006,-3.343579],[140.35068090000004,-3.3481597],[140.34240420000003,-3.350914],[140.34693730000004,-3.355605399999945],[140.34379930000011,-3.359554799999955],[140.35540770000011,-3.358357],[140.3580747000001,-3.360569],[140.3593459000001,-3.354876899999965],[140.36428380000007,-3.352803899999969],[140.36467990000006,-3.3592338],[140.36768010000003,-3.362048699999946],[140.3616091,-3.362580599999944],[140.36133990000008,-3.366197099999965],[140.36360660000003,-3.3705845],[140.36781150000002,-3.367372399999965],[140.37067940000009,-3.368312],[140.370609,-3.374071799999967],[140.363129,-3.385009],[140.36159480000003,-3.384606099999928],[140.3599964000001,-3.380586499999936],[140.3542605,-3.378573499999959],[140.350256,-3.381316799999979],[140.35018790000004,-3.383326],[140.35352020000005,-3.388284399999975],[140.3589929000001,-3.384805299999925],[140.36005550000004,-3.392106399999932],[140.35545150000007,-3.393375899999967],[140.35278130000006,-3.395852199999979],[140.3526435000001,-3.397704199999964],[140.3566459000001,-3.3983097],[140.35651080000002,-3.400921699999969],[140.34937270000012,-3.400515],[140.34837130000005,-3.401652899999931],[140.349104,-3.403260799999941],[140.353173,-3.404134299999953],[140.3557065000001,-3.406480099999953],[140.3570387000001,-3.410118899999929],[140.35616720000007,-3.416481],[140.35036420000006,-3.414668799999959],[140.34936090000008,-3.418619599999943],[140.35442970000008,-3.420766299999968],[140.35896900000012,-3.416750799999932],[140.36163680000004,-3.4179582],[140.36229680000008,-3.432337199999949],[140.367564,-3.443226099999947],[140.366423,-3.453472599999941],[140.3632189000001,-3.455948599999942],[140.36141,-3.465161499999965],[140.35473620000005,-3.468036899999959],[140.35473260000003,-3.4733949],[140.34638970000003,-3.477943499999981],[140.3441812000001,-3.48266],[140.3385105000001,-3.4821202],[140.3372396000001,-3.486807599999963],[140.3452433000001,-3.490496899999926],[140.34361940000008,-3.4932749],[140.34437160000004,-3.494484799999952],[140.34708210000008,-3.494713499999932],[140.35100010000008,-3.491088099999956],[140.35340960000008,-3.491089699999975],[140.35069190000002,-3.501216399999976],[140.352424,-3.500915299999974],[140.35536320000006,-3.497138],[140.36620830000004,-3.4938952],[140.3671846000001,-3.497826399999951],[140.37081970000008,-3.502387],[140.3702145000001,-3.506619499999942],[140.371342,-3.509568099999967],[140.3697598000001,-3.510927599999945],[140.36569610000004,-3.507372299999929],[140.3632864000001,-3.5075218],[140.3641093000001,-3.515458899999942],[140.37111290000007,-3.514405499999953],[140.3742761000001,-3.521167599999956],[140.3760089000001,-3.519808199999943],[140.3748091000001,-3.512324299999932],[140.37729400000012,-3.512326],[140.37925040000005,-3.514443699999958],[140.37540410000008,-3.523436],[140.37239290000002,-3.522224599999959],[140.3688532000001,-3.523053599999969],[140.37449390000006,-3.533337199999949],[140.3726861,-3.534091799999942],[140.36899730000005,-3.5326532],[140.36456010000006,-3.524486799999977],[140.3625257000001,-3.526375099999939],[140.36222280000004,-3.528944799999977],[140.36500650000005,-3.532423699999924],[140.36808470000005,-3.541166099999941],[140.36936430000003,-3.5418472],[140.37034460000007,-3.539807099999962],[140.3721521000001,-3.539430399999958],[140.3739567,-3.5434377],[140.37207280000007,-3.545477199999937],[140.3725985000001,-3.547518399999944],[140.37997990000008,-3.5448779],[140.37877,-3.552511299999935],[140.38592240000003,-3.554481399999929],[140.385548,-3.558],[140.37756170000011,-3.564117199999941],[140.38019450000002,-3.568351799999959],[140.374094,-3.569632599999977],[140.37620040000002,-3.572884299999942],[140.37996670000007,-3.5712239],[140.3823006,-3.5719814],[140.38101660000007,-3.581845299999941],[140.3789832000001,-3.582146299999977],[140.377103,-3.578441199999929],[140.37589580000008,-3.581917399999952],[140.3775498000001,-3.585924599999942],[140.38470040000004,-3.591069299999958],[140.38936750000005,-3.598896899999943],[140.38899020000008,-3.600030499999946],[140.38417,-3.600934199999926],[140.3813053,-3.605391899999972],[140.3867259000001,-3.613982599999929],[140.38898050000012,-3.621013699999935],[140.39455140000007,-3.6238897],[140.39695660000007,-3.630996499999981],[140.39017880000006,-3.630916299999967],[140.38821430000007,-3.639946],[140.37819390000004,-3.645986],[140.37517910000008,-3.649460899999951],[140.3742688000001,-3.655398],[140.3775041,-3.659859799999936],[140.37238030000003,-3.663635499999941],[140.36951890000012,-3.6630288],[140.36748770000008,-3.659777199999951],[140.36439960000007,-3.660304099999962],[140.36364530000003,-3.662042099999951],[140.3660344000001,-3.666933],[140.36046040000008,-3.668214],[140.3562405,-3.671612299999936],[140.34938870000008,-3.6692642],[140.34690310000008,-3.669715899999971],[140.34697610000012,-3.672890499999937],[140.35103860000004,-3.678940399999931],[140.35171260000004,-3.684231899999929],[140.34967770000003,-3.686195599999962],[140.34282330000008,-3.6874],[140.34206820000009,-3.688642699999946],[140.3487676000001,-3.693560799999943],[140.35479570000007,-3.6895591],[140.35623060000012,-3.684042399999953],[140.36541940000006,-3.683293099999958],[140.3656387000001,-3.692666],[140.36036500000012,-3.694929799999954],[140.35885670000005,-3.697725399999968],[140.35945760000004,-3.700069],[140.36329720000003,-3.702112599999964],[140.3635971000001,-3.704002399999979],[140.3579429,-3.7107593],[140.3601271000001,-3.710685299999966],[140.36186080000004,-3.708645699999977],[140.37036960000012,-3.710619799999961],[140.37184550000006,-3.708458299999961],[140.37592530000006,-3.712786299999948],[140.3742218000001,-3.715972],[140.38578680000012,-3.720419],[140.38748160000011,-3.729639499999962],[140.38487120000002,-3.732369299999959],[140.3845947000001,-3.736090199999978],[140.38368570000011,-3.736219499999947],[140.38186650000011,-3.737325799999951]]]},"properties":{"shapeName":"Keerom","shapeISO":"","shapeID":"22746128B26009363395789","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[109.92475370000005,-7.188596899999936],[109.92697860000004,-7.192716399999938],[109.93089340000006,-7.195230899999956],[109.93407560000009,-7.202319899999964],[109.94862180000007,-7.195230399999957],[109.95639490000008,-7.194727399999977],[109.96390130000009,-7.191396699999927],[109.97476960000006,-7.1832184],[109.98155410000004,-7.1799989],[109.98612230000003,-7.173158],[109.99364470000006,-7.171944799999949],[109.99275270000004,-7.168986599999926],[109.99734320000005,-7.166605799999957],[109.99886550000008,-7.163233799999944],[110.00737440000006,-7.160351399999968],[110.00725620000009,-7.1590361],[110.01003590000005,-7.157727099999931],[110.00996660000004,-7.154802299999972],[110.01250460000006,-7.154724599999952],[110.01232910000004,-7.152781899999979],[110.01376340000007,-7.153262599999948],[110.01611950000006,-7.150906199999952],[110.017663,-7.1519786],[110.01785290000004,-7.149114],[110.01963810000007,-7.150241299999948],[110.02185060000005,-7.148029299999962],[110.02315520000008,-7.149237099999937],[110.02735140000004,-7.146751399999971],[110.02645110000009,-7.145261299999959],[110.02778630000006,-7.143790199999955],[110.02952650000009,-7.144196199999953],[110.03223420000006,-7.139221599999928],[110.033577,-7.140756099999976],[110.03437810000008,-7.138762899999961],[110.03659060000007,-7.138819199999944],[110.03892520000005,-7.133927799999981],[110.04096990000005,-7.134729799999945],[110.04099270000006,-7.132849199999953],[110.04426570000004,-7.131500699999947],[110.04312130000005,-7.130561799999953],[110.04403690000004,-7.1296176],[110.04597470000004,-7.130251399999963],[110.04712680000006,-7.127944399999933],[110.04875190000007,-7.128176699999926],[110.04862980000007,-7.125975099999948],[110.05091,-7.12757],[110.04996490000008,-7.124355799999933],[110.05505650000003,-7.123587899999961],[110.05564880000009,-7.121102299999961],[110.057873,-7.121374299999957],[110.05985660000005,-7.119020299999931],[110.06894740000007,-7.121362099999942],[110.07659150000006,-7.120904899999971],[110.08261870000007,-7.114927299999977],[110.08463290000009,-7.11451],[110.08370210000004,-7.113110499999948],[110.08595630000008,-7.108990899999981],[110.08840720000006,-7.110264799999925],[110.09130550000003,-7.106791399999963],[110.09454680000005,-7.107147899999973],[110.09503170000005,-7.104669],[110.10240350000004,-7.099592199999961],[110.103216,-7.100420699999972],[110.10439910000008,-7.098436399999969],[110.108057,-7.098751399999969],[110.109954,-7.095169899999973],[110.11782350000004,-7.095240599999954],[110.12042480000008,-7.092880199999968],[110.12500830000005,-7.095381199999963],[110.12510520000006,-7.097271599999942],[110.12780010000006,-7.0978287],[110.13016450000003,-7.09606],[110.132285,-7.099342499999977],[110.13315960000006,-7.097286699999927],[110.13825140000006,-7.096677299999953],[110.13926930000008,-7.098552599999948],[110.14182280000006,-7.097099299999968],[110.14402770000004,-7.098027199999933],[110.14475770000007,-7.100520199999949],[110.15246740000003,-7.098625399999946],[110.15491630000008,-7.1001447],[110.15746240000004,-7.098809499999959],[110.16154030000007,-7.100074699999936],[110.16356440000004,-7.098684299999945],[110.16490980000009,-7.0992997],[110.16504870000006,-7.097869799999955],[110.16343070000005,-7.097236899999928],[110.16527330000008,-7.096218699999952],[110.16720980000008,-7.099831599999959],[110.170333,-7.097521699999959],[110.17533740000005,-7.101208199999974],[110.17383040000004,-7.098587599999973],[110.17677950000007,-7.093841899999973],[110.17569610000004,-7.089889399999947],[110.17742030000005,-7.086071899999979],[110.17715330000004,-7.082434],[110.18265890000004,-7.079550599999948],[110.18317680000007,-7.077573299999926],[110.18694940000006,-7.080924399999958],[110.19026820000005,-7.079590699999926],[110.193442,-7.080612499999972],[110.19109220000007,-7.084936499999969],[110.19332,-7.088854599999934],[110.19068780000003,-7.092087599999957],[110.193648,-7.095440699999926],[110.19153830000005,-7.096129],[110.187693,-7.102047199999959],[110.18879960000004,-7.102798299999961],[110.19088140000008,-7.101439899999946],[110.190926,-7.105134599999928],[110.19337940000008,-7.105717699999957],[110.19013710000007,-7.107908399999928],[110.17913920000007,-7.110272599999973],[110.17605580000009,-7.1093648],[110.17386990000006,-7.111727499999972],[110.17279750000006,-7.110942399999942],[110.16609590000007,-7.112819199999933],[110.16121240000007,-7.116722699999968],[110.15898420000008,-7.126136199999962],[110.15358610000004,-7.127846199999965],[110.15054830000008,-7.125690899999938],[110.14813580000003,-7.126747],[110.14632840000007,-7.124978899999974],[110.14477810000005,-7.125347599999941],[110.14396680000004,-7.131067499999972],[110.141776,-7.128582399999971],[110.14209860000005,-7.133471699999973],[110.13973070000009,-7.135482899999943],[110.14042220000005,-7.138053199999945],[110.14449070000006,-7.136816799999963],[110.14610790000006,-7.138618299999962],[110.14514230000009,-7.141494],[110.14602430000008,-7.143264099999953],[110.15230830000007,-7.147280799999976],[110.16135880000007,-7.143416099999968],[110.16523720000004,-7.145297899999946],[110.16895180000006,-7.143429799999979],[110.17770790000009,-7.148547399999927],[110.18054020000005,-7.152506399999936],[110.18301220000006,-7.151041],[110.184929,-7.151666899999952],[110.19271670000006,-7.164734099999976],[110.19125460000004,-7.169274299999927],[110.19237120000008,-7.172216],[110.19596170000005,-7.175015199999962],[110.20304290000007,-7.177544199999943],[110.20826220000004,-7.177191199999982],[110.20938060000009,-7.181189099999926],[110.21213090000003,-7.182265299999926],[110.21352390000004,-7.185625],[110.22104640000003,-7.184079099999963],[110.22982790000009,-7.187575299999935],[110.23884580000004,-7.187660199999925],[110.24636670000007,-7.184113099999934],[110.24856550000004,-7.187400299999979],[110.25213860000008,-7.188829799999951],[110.25263850000005,-7.1915471],[110.25765730000006,-7.195728799999927],[110.25862930000005,-7.1985153],[110.25999320000005,-7.199276599999962],[110.26968950000008,-7.196536299999934],[110.27252240000007,-7.199944099999925],[110.27249820000009,-7.198885099999927],[110.27596310000007,-7.199657799999954],[110.27545180000004,-7.195898199999931],[110.28062440000008,-7.195766899999967],[110.28144070000008,-7.193679799999927],[110.285614,-7.193460899999934],[110.284322,-7.187524699999926],[110.29162340000005,-7.193445299999951],[110.29691630000008,-7.195216199999948],[110.32007260000006,-7.194940299999928],[110.32216470000009,-7.196848199999977],[110.33253920000004,-7.193312799999944],[110.34071120000004,-7.194001299999968],[110.34279390000006,-7.191658299999972],[110.34255930000006,-7.18793],[110.33850490000009,-7.184416099999964],[110.33124120000008,-7.184342099999981],[110.33295870000006,-7.182906399999979],[110.32666910000006,-7.182854899999938],[110.32624790000006,-7.1812257],[110.321673,-7.181642],[110.32453480000004,-7.179721499999971],[110.31801260000009,-7.179479199999946],[110.324127,-7.178188599999942],[110.32458640000004,-7.173665799999981],[110.32714060000006,-7.173166299999934],[110.32994410000003,-7.170377599999938],[110.33148540000008,-7.17273],[110.33875610000007,-7.173331099999928],[110.34396230000004,-7.165815099999975],[110.34143830000005,-7.160506599999962],[110.33148,-7.15767],[110.32799210000007,-7.152059399999928],[110.32990920000009,-7.153522899999928],[110.33401980000008,-7.153663799999947],[110.33882180000006,-7.149478099999953],[110.33926890000004,-7.1448971],[110.34205370000006,-7.148927599999979],[110.34348290000008,-7.148266099999944],[110.34381950000005,-7.145181199999968],[110.34577930000006,-7.145150799999954],[110.34730250000007,-7.148537],[110.34853520000007,-7.147875],[110.34881250000007,-7.151427599999977],[110.35257850000005,-7.144323799999938],[110.35295220000006,-7.136801799999944],[110.35096370000008,-7.132446899999934],[110.35261330000009,-7.122856699999943],[110.34855220000009,-7.119342599999925],[110.34993690000005,-7.116266],[110.34887730000008,-7.112319299999967],[110.34939,-7.110949699999935],[110.35087390000007,-7.112021899999945],[110.35397120000005,-7.110623499999974],[110.35348540000007,-7.106881699999974],[110.35502510000003,-7.107831],[110.35612470000007,-7.106565699999976],[110.35176480000007,-7.101597599999934],[110.34617820000005,-7.0853056],[110.34612020000009,-7.087706399999945],[110.34359620000004,-7.088041199999964],[110.34270310000005,-7.090580099999954],[110.34484930000008,-7.097032],[110.33706670000004,-7.104332],[110.33284760000004,-7.103756399999952],[110.33218380000005,-7.099082],[110.328738,-7.102139399999942],[110.32399750000008,-7.101481899999953],[110.31733,-7.106755899999939],[110.31712050000004,-7.104580599999963],[110.31325950000007,-7.106295599999953],[110.31009670000009,-7.102925699999957],[110.30507770000008,-7.101411799999937],[110.30332950000007,-7.097061099999962],[110.30481720000006,-7.084932799999933],[110.30108640000009,-7.079965099999981],[110.30322260000008,-7.079116299999953],[110.30291750000004,-7.076863799999956],[110.30188750000008,-7.072675199999935],[110.30072780000006,-7.072508299999981],[110.301384,-7.068422799999951],[110.29915620000008,-7.067564499999946],[110.30080410000005,-7.064708699999926],[110.29198460000003,-7.055620199999964],[110.29433440000008,-7.053705699999966],[110.28770450000007,-7.0505214],[110.28566740000008,-7.052134],[110.28315740000005,-7.049366],[110.27458920000004,-7.048724299999947],[110.27367370000007,-7.050247699999943],[110.27076360000007,-7.050707799999941],[110.26946260000005,-7.047966],[110.27242820000004,-7.037460399999929],[110.27095740000004,-7.035307699999976],[110.27386710000007,-7.034908199999961],[110.27128030000006,-7.033229399999925],[110.27251210000009,-7.031940499999962],[110.27229410000007,-7.026511699999958],[110.27082760000008,-7.023008499999946],[110.27485660000008,-7.019342399999971],[110.27355960000006,-7.014405699999941],[110.27494780000006,-7.011674199999959],[110.28453890000009,-7.012741199999937],[110.28578950000008,-7.010044599999958],[110.28527070000007,-7.0081853],[110.28252410000005,-7.006845899999973],[110.28282930000006,-7.005200399999978],[110.28025050000008,-7.004458899999975],[110.28092960000004,-6.998907499999973],[110.28379820000004,-6.996952499999963],[110.28764340000004,-6.997078899999963],[110.28695680000004,-6.993057199999953],[110.28633880000007,-6.993833],[110.28486120000008,-6.991739199999927],[110.28373240000008,-6.992704599999968],[110.283371,-6.9908514],[110.28166490000007,-6.9904202],[110.28233650000004,-6.988997899999958],[110.28384420000003,-6.98936],[110.28186050000005,-6.987354799999935],[110.28249930000004,-6.986196799999959],[110.28453020000006,-6.986512199999936],[110.28523230000008,-6.982828099999949],[110.293444,-6.981890699999951],[110.29339970000007,-6.977284399999974],[110.28954870000007,-6.971334399999932],[110.28594230000004,-6.968996599999969],[110.28766020000006,-6.968732],[110.28811330000008,-6.965417],[110.29573060000007,-6.968442399999958],[110.29965970000006,-6.959940399999937],[110.29187010000004,-6.955469099999959],[110.29306650000007,-6.9515254],[110.29170990000006,-6.9501958],[110.29941350000007,-6.9408512],[110.30591730000003,-6.937503699999979],[110.31112150000007,-6.937040299999978],[110.31032760000005,-6.934399199999973],[110.306553,-6.93215],[110.30976740000006,-6.934353399999964],[110.30968340000004,-6.936234799999966],[110.306428,-6.936647],[110.302435,-6.934398],[110.30803,-6.9286345],[110.29337250000009,-6.924175399999967],[110.28769150000005,-6.919077399999935],[110.28813770000005,-6.918006699999978],[110.282427,-6.917233299999964],[110.27971990000009,-6.915272499999958],[110.27870910000007,-6.916132799999957],[110.26853690000007,-6.914169799999968],[110.26214210000006,-6.911492899999928],[110.26113080000005,-6.912236499999949],[110.24945420000006,-6.906592199999977],[110.24277920000009,-6.897662299999979],[110.24072930000005,-6.889822399999957],[110.23228340000009,-6.885108399999979],[110.23088090000005,-6.886148899999966],[110.22627430000006,-6.879901299999972],[110.22208620000004,-6.867397099999948],[110.22029760000004,-6.867202],[110.21875660000006,-6.863569799999937],[110.21877730000006,-6.860453299999961],[110.193838,-6.853405],[110.19378250000005,-6.851823499999966],[110.190448,-6.853539],[110.17958,-6.848351799999932],[110.176842,-6.844748],[110.17623560000004,-6.836857099999975],[110.17473650000005,-6.835215299999959],[110.17195260000005,-6.836071899999979],[110.17251020000003,-6.846648199999947],[110.17108250000007,-6.850645699999973],[110.15774720000007,-6.863197799999966],[110.15561360000004,-6.867816299999959],[110.13525740000006,-6.878441],[110.12929360000004,-6.881008],[110.12640250000004,-6.880472599999962],[110.117069,-6.886072799999965],[110.10718680000008,-6.889897699999949],[110.07028590000004,-6.901287],[110.06468230000007,-6.901536799999974],[110.06475370000004,-6.902667099999974],[110.06231470000006,-6.903154899999947],[110.05905490000004,-6.903012099999955],[110.058805,-6.901358399999936],[110.05647170000009,-6.904270299999951],[110.056236,-6.903192099999956],[110.04683710000006,-6.904822099999933],[110.04008360000006,-6.903782599999943],[110.04207090000006,-6.905251],[110.04140950000004,-6.906380799999965],[110.03925850000007,-6.904834],[110.02834240000004,-6.910828399999957],[110.03002010000006,-6.912409099999934],[110.02793170000007,-6.914815199999964],[110.03311250000007,-6.913754199999971],[110.03363,-6.918111899999928],[110.03896750000007,-6.918007899999964],[110.03904890000007,-6.916939],[110.04518890000008,-6.921471099999962],[110.04280860000006,-6.925476499999945],[110.04184720000006,-6.923686],[110.04017640000006,-6.9237675],[110.03076940000005,-6.930123299999934],[110.03544620000008,-6.932031099999961],[110.03415680000006,-6.938056399999937],[110.04029850000006,-6.939213199999926],[110.04035320000008,-6.942969099999971],[110.043663,-6.940530299999978],[110.045929,-6.941810099999941],[110.04956050000004,-6.940712399999938],[110.05095670000009,-6.9415369],[110.04699710000006,-6.9463734],[110.04960630000005,-6.9481639],[110.04941410000004,-6.950922099999957],[110.05347440000008,-6.954622299999926],[110.051651,-6.9587521],[110.04802710000007,-6.9585924],[110.04780580000005,-6.959962299999972],[110.04877470000008,-6.965752099999975],[110.050766,-6.966807399999936],[110.05097960000006,-6.980200699999955],[110.04509740000009,-6.979557899999975],[110.04311370000005,-6.988947799999949],[110.03967290000008,-6.989700299999981],[110.03614180000005,-6.993731099999934],[110.03269860000006,-6.9914543],[110.03055570000004,-6.994189699999936],[110.03096920000007,-6.996352499999944],[110.02520180000005,-6.997180899999933],[110.024765,-6.999382899999944],[110.02632140000009,-7.001649399999962],[110.02306370000008,-7.006338599999935],[110.01518250000004,-7.010435099999938],[110.01347350000009,-7.018571399999928],[110.01193240000003,-7.017117499999927],[110.00978850000007,-7.018390599999975],[110.00765990000008,-7.017827499999953],[110.00641630000007,-7.019766799999957],[110.00366210000004,-7.01932],[109.99587640000004,-7.027086699999927],[109.99384320000007,-7.025167899999929],[109.99126290000004,-7.025909599999977],[109.98844490000005,-7.024610799999948],[109.98301370000007,-7.032017],[109.97759760000008,-7.031277599999953],[109.97420250000005,-7.033867699999973],[109.97359590000008,-7.037781499999937],[109.97484690000005,-7.041729299999929],[109.97439030000004,-7.043728599999952],[109.97226680000006,-7.044300199999952],[109.974049,-7.046345199999962],[109.97230870000004,-7.0470303],[109.97745530000009,-7.0494894],[109.97601320000007,-7.050449599999979],[109.97789170000004,-7.051982099999975],[109.98042960000004,-7.062786099999926],[109.97756530000004,-7.066785399999958],[109.97965420000008,-7.068763699999977],[109.97985040000009,-7.071768],[109.97803440000007,-7.075033],[109.979112,-7.077674699999932],[109.97695640000006,-7.081208],[109.97756070000008,-7.082994099999951],[109.97452540000006,-7.08319],[109.97384990000006,-7.0880834],[109.96635950000007,-7.091168799999934],[109.96534790000004,-7.095778799999948],[109.96336270000006,-7.095107499999926],[109.96354470000006,-7.099801799999966],[109.96126570000007,-7.101345399999957],[109.96202850000009,-7.103434],[109.95967870000004,-7.105947899999933],[109.959343,-7.110451699999942],[109.95540620000008,-7.114331199999981],[109.953743,-7.120032299999934],[109.94911960000007,-7.124214099999961],[109.94911450000006,-7.132090299999959],[109.94688420000006,-7.132023799999956],[109.93988040000005,-7.141726899999981],[109.93881230000005,-7.147740299999953],[109.939827,-7.157551699999942],[109.93212890000007,-7.171676099999956],[109.93011470000005,-7.180086099999926],[109.92267610000005,-7.1867904],[109.92475370000005,-7.188596899999936]]]},"properties":{"shapeName":"Kendal","shapeISO":"","shapeID":"22746128B34598322743179","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[102.61428480000006,-3.800461],[102.61861490000007,-3.801097399999946],[102.62368840000005,-3.794995799999981],[102.64179640000003,-3.793302399999959],[102.64881530000008,-3.787679399999945],[102.65593320000005,-3.771819799999946],[102.661562,-3.771793799999955],[102.73878720000005,-3.747596599999952],[102.73762910000005,-3.721766599999967],[102.74202780000007,-3.709503099999949],[102.75219890000005,-3.666750899999954],[102.76635170000009,-3.642512899999929],[102.772165,-3.637752699999965],[102.77674240000005,-3.635956199999953],[102.78109,-3.630799599999932],[102.79800020000005,-3.626264299999946],[102.80851540000003,-3.609480099999928],[102.803921,-3.595449299999927],[102.80035410000005,-3.590118899999936],[102.79449770000008,-3.585728599999925],[102.79612350000008,-3.5731934],[102.80219140000008,-3.563601],[102.80793220000004,-3.559333199999969],[102.811424,-3.551627599999961],[102.81250740000007,-3.537660699999947],[102.81019040000007,-3.530074599999978],[102.796376,-3.537381],[102.78490730000004,-3.540675399999941],[102.77491910000003,-3.546911399999942],[102.75101020000005,-3.543156799999963],[102.729481,-3.551221899999973],[102.72219140000004,-3.552597299999945],[102.70594850000003,-3.547264],[102.68753160000006,-3.546270499999935],[102.67744860000005,-3.548420399999941],[102.68246090000008,-3.545116399999927],[102.68475460000008,-3.539596199999949],[102.66905830000007,-3.539669699999934],[102.66337320000008,-3.5383489],[102.661519,-3.542057299999954],[102.65504250000004,-3.540660699999933],[102.63750790000006,-3.532632799999931],[102.63069960000007,-3.523050799999965],[102.62819810000008,-3.5164362],[102.62458930000008,-3.516417499999932],[102.60101360000004,-3.525936499999943],[102.59438230000006,-3.525643699999932],[102.58371380000006,-3.517836899999963],[102.56564130000004,-3.507663899999955],[102.53314270000004,-3.496133399999962],[102.51846980000005,-3.496025],[102.51212330000004,-3.4977503],[102.51174680000008,-3.493973899999958],[102.50875990000009,-3.4956643],[102.50901410000006,-3.498091599999952],[102.50054070000004,-3.500789499999939],[102.49760830000008,-3.506769199999951],[102.49688050000003,-3.513582499999927],[102.48716260000003,-3.516072599999973],[102.48088750000005,-3.519705599999952],[102.47203940000009,-3.530932499999949],[102.46585460000006,-3.5321247],[102.45545680000004,-3.529283299999975],[102.45066790000004,-3.530109],[102.44294660000008,-3.5275336],[102.44309180000005,-3.5349631],[102.45443380000006,-3.547329699999977],[102.45643390000004,-3.549026599999934],[102.47863620000004,-3.552673199999958],[102.50295910000006,-3.575899499999935],[102.50732160000007,-3.583468799999935],[102.51182760000006,-3.586419399999954],[102.51407240000003,-3.594335],[102.51272820000008,-3.601921699999934],[102.51920190000004,-3.612465],[102.51321860000007,-3.621187199999952],[102.51689880000004,-3.626478],[102.52398720000008,-3.631228799999974],[102.52862430000005,-3.643821199999934],[102.52833640000006,-3.656939399999942],[102.54297190000005,-3.6593047],[102.54658990000007,-3.661428799999953],[102.55118830000004,-3.661211],[102.55279110000004,-3.662595899999928],[102.55292510000004,-3.670225799999969],[102.55447320000007,-3.672070799999972],[102.56346140000005,-3.678604499999949],[102.57594330000006,-3.682064799999978],[102.577239,-3.683500299999935],[102.575363,-3.695118799999932],[102.57873220000005,-3.704814399999975],[102.57828840000008,-3.713867899999968],[102.58266030000004,-3.7401596],[102.60645840000007,-3.781233099999952],[102.61063540000004,-3.7976278],[102.61428480000006,-3.800461]]]},"properties":{"shapeName":"Kepahiang","shapeISO":"","shapeID":"22746128B69924814067550","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[105.88304930000004,2.364741400000071],[105.88049830000006,2.364643],[105.88053530000008,2.363085800000022],[105.87805560000004,2.361956500000076],[105.87831570000009,2.357671700000026],[105.88034980000003,2.35573080000006],[105.88338120000009,2.355933800000059],[105.88633830000003,2.359607600000061],[105.88304930000004,2.364741400000071]]],[[[106.05083270000006,2.505202],[106.04891390000006,2.503716900000029],[106.04909790000005,2.498445900000036],[106.05347420000004,2.502893300000039],[106.05083270000006,2.505202]]],[[[106.04345450000005,2.507963600000039],[106.04407580000009,2.511448900000062],[106.04276080000005,2.509484400000076],[106.04345450000005,2.507963600000039]]],[[[106.05360360000009,2.511050300000022],[106.05228130000006,2.510905200000025],[106.05282730000005,2.509860600000025],[106.05360360000009,2.511050300000022]]],[[[106.04082850000003,2.510059100000035],[106.04079230000008,2.511543200000062],[106.03967350000005,2.508902300000045],[106.04102870000008,2.506812800000034],[106.04082850000003,2.510059100000035]]],[[[106.05086010000008,2.515066900000022],[106.0509,2.520218900000032],[106.04819920000006,2.525710600000025],[106.03981120000009,2.514424800000029],[106.04067,2.513504100000034],[106.04432610000003,2.515034300000025],[106.05066240000008,2.51264720000006],[106.04971110000008,2.51371940000007],[106.05086010000008,2.515066900000022]]],[[[106.28641430000005,2.616245900000024],[106.28615970000004,2.620527200000026],[106.28443360000006,2.617265900000064],[106.28641430000005,2.616245900000024]]],[[[106.28167350000007,2.62013],[106.28082010000008,2.620989900000041],[106.28024050000005,2.619917900000075],[106.28034990000003,2.61700170000006],[106.27745030000005,2.617547200000047],[106.27872710000008,2.615695500000072],[106.27799920000007,2.61464890000002],[106.27321690000008,2.61360650000006],[106.27442490000004,2.606767],[106.27967160000009,2.611375100000032],[106.28254060000006,2.617022200000065],[106.28167350000007,2.62013]]],[[[106.30251850000008,2.635335400000031],[106.30110780000007,2.635451600000067],[106.30001550000009,2.632705900000076],[106.30156740000007,2.628647300000068],[106.30541010000007,2.632996200000036],[106.30251850000008,2.635335400000031]]],[[[106.24776510000004,2.716898700000058],[106.24915770000007,2.71981640000007],[106.24701640000006,2.717884500000025],[106.24776510000004,2.716898700000058]]],[[[106.27044320000005,2.719393300000036],[106.26945720000003,2.719814],[106.26969820000005,2.718005700000049],[106.27152740000008,2.718576],[106.27044320000005,2.719393300000036]]],[[[106.28055140000004,2.720262500000047],[106.27926340000005,2.720967900000062],[106.27675140000008,2.719318700000031],[106.27976320000005,2.718384],[106.28322070000007,2.720172500000047],[106.28055140000004,2.720262500000047]]],[[[106.26666820000008,2.725811800000031],[106.26067830000005,2.725372900000025],[106.259557,2.722186],[106.257695,2.721146],[106.25278330000003,2.721355600000038],[106.25223030000006,2.715676400000063],[106.250716,2.715630200000021],[106.25147570000007,2.712438500000076],[106.25269320000007,2.711800900000071],[106.25365210000007,2.71364630000005],[106.25699220000007,2.712152300000071],[106.26348590000003,2.715847200000042],[106.26571640000009,2.714780200000064],[106.26705650000008,2.716493700000058],[106.26471340000006,2.721937],[106.26709170000004,2.722951500000022],[106.26726530000008,2.72449830000005],[106.268905,2.724120400000061],[106.26869980000004,2.725797500000056],[106.26666820000008,2.725811800000031]]],[[[106.28805740000007,2.728785300000027],[106.28330490000008,2.727539700000023],[106.28751460000007,2.727407800000037],[106.28805740000007,2.728785300000027]]],[[[106.27635430000004,2.733299],[106.26827340000006,2.732079100000021],[106.27807010000004,2.731858500000044],[106.27635430000004,2.733299]]],[[[106.22410030000009,2.737892400000021],[106.22270470000007,2.739425100000062],[106.22048050000006,2.738510700000063],[106.22151420000006,2.737072400000045],[106.22410030000009,2.737892400000021]]],[[[106.28460960000007,2.738462700000071],[106.28462940000009,2.740206800000067],[106.28346250000004,2.738945500000057],[106.28460960000007,2.738462700000071]]],[[[106.17030730000005,2.761029400000041],[106.16714730000007,2.762203200000044],[106.17586760000006,2.748556400000041],[106.17631670000009,2.745387700000038],[106.18057820000007,2.745658900000024],[106.18540090000005,2.740332600000045],[106.18896610000007,2.744934200000046],[106.19316670000006,2.746194400000036],[106.19185640000006,2.752557600000046],[106.18803420000006,2.756838500000072],[106.18535330000009,2.757921200000055],[106.180781,2.756864600000029],[106.17821420000007,2.759261300000048],[106.17030730000005,2.761029400000041]]],[[[106.01753420000006,2.790864700000043],[106.01485080000003,2.790606500000024],[106.01369490000008,2.788007900000025],[106.01589510000008,2.783979600000066],[106.01870620000005,2.782113800000047],[106.02150970000008,2.785174700000027],[106.0187,2.789925600000061],[106.01514780000008,2.789264],[106.01753420000006,2.790864700000043]]],[[[106.20948540000006,2.80893],[106.20029920000007,2.811990600000058],[106.19788580000005,2.811598900000035],[106.19514920000006,2.809812700000066],[106.19358420000003,2.801515600000073],[106.19809540000006,2.795957700000031],[106.20060960000006,2.79657160000005],[106.20289060000005,2.795316],[106.20264740000005,2.79344640000005],[106.19919620000007,2.791089300000067],[106.20036090000008,2.78950130000004],[106.21604470000005,2.783623700000021],[106.22329560000009,2.766639400000031],[106.22089020000004,2.764044400000046],[106.20301220000005,2.763191400000039],[106.20056740000007,2.761506],[106.20102060000005,2.759458500000051],[106.20279930000004,2.757241100000044],[106.20809290000005,2.758833100000061],[106.21392640000005,2.755936],[106.21469180000008,2.75147190000007],[106.21790690000006,2.750386500000047],[106.21520070000008,2.747864600000071],[106.22683260000008,2.743430400000022],[106.22604380000007,2.73820610000007],[106.233407,2.734308],[106.23805630000004,2.733733100000052],[106.24366670000006,2.725468400000068],[106.24666250000007,2.724473],[106.24914360000008,2.727008800000021],[106.25090380000006,2.724808600000074],[106.25435620000007,2.723950800000068],[106.24954950000006,2.730921400000057],[106.24615110000008,2.730550900000026],[106.24669670000009,2.733228800000063],[106.24407230000008,2.733124],[106.24419740000008,2.737318400000049],[106.24155460000009,2.738675400000034],[106.24462710000006,2.741081700000052],[106.24893950000006,2.740501],[106.24734680000006,2.745602],[106.25239430000005,2.746263800000065],[106.24816950000007,2.747859300000073],[106.24764820000007,2.749254600000029],[106.24903710000007,2.750702900000022],[106.24384220000007,2.753386700000021],[106.254911,2.75567570000004],[106.25243110000008,2.758872100000076],[106.25487690000006,2.761467100000061],[106.25153390000008,2.761480800000072],[106.25030610000005,2.760188300000038],[106.24574790000008,2.761115600000039],[106.24295960000006,2.757864100000063],[106.23909230000004,2.761183300000027],[106.23909840000005,2.764877],[106.242296,2.765318300000047],[106.24365850000004,2.768020300000046],[106.248225,2.770127800000068],[106.24618,2.77644040000007],[106.24048580000004,2.77763090000002],[106.23313660000008,2.781899300000021],[106.23289490000008,2.783654100000035],[106.23598360000005,2.785642],[106.23618640000007,2.787349900000038],[106.23094380000003,2.78690510000007],[106.22693510000005,2.789698900000076],[106.22704750000008,2.791497800000059],[106.23113160000008,2.79410770000004],[106.23042040000007,2.796524100000056],[106.22266260000004,2.800358500000073],[106.22255380000007,2.802066800000034],[106.22852810000006,2.804233600000032],[106.225965,2.807261800000049],[106.22091110000008,2.806175500000052],[106.21671060000006,2.80825180000005],[106.20948540000006,2.80893]]],[[[105.77503110000004,2.841317400000037],[105.774761,2.845355100000063],[105.77344730000004,2.845693200000028],[105.772231,2.842089500000043],[105.77515860000005,2.839867100000049],[105.77503110000004,2.841317400000037]]],[[[106.11837530000008,2.846453100000076],[106.11658730000005,2.847861300000034],[106.11737820000008,2.850230500000066],[106.11615570000004,2.848850600000048],[106.116476,2.846673900000042],[106.11969090000008,2.844996],[106.12089190000006,2.841764],[106.12408940000006,2.842547400000058],[106.12215860000003,2.84770240000006],[106.11837530000008,2.846453100000076]]],[[[106.10128970000005,2.874043900000061],[106.09897310000008,2.875429600000075],[106.09702770000007,2.870797100000061],[106.10017030000006,2.869206800000029],[106.10400120000008,2.870205700000042],[106.10390620000004,2.872870900000066],[106.10545690000004,2.874444],[106.10128970000005,2.874043900000061]]],[[[105.792356,2.884349900000075],[105.79002740000004,2.885971100000063],[105.78523640000009,2.880162900000073],[105.79161940000006,2.874825700000031],[105.79276710000005,2.876245400000073],[105.79136650000004,2.878573600000038],[105.79315720000005,2.881976800000075],[105.792356,2.884349900000075]]],[[[106.15261770000006,2.901475800000071],[106.15113370000006,2.900500200000067],[106.15303910000006,2.89912030000005],[106.15403780000008,2.900898100000063],[106.15261770000006,2.901475800000071]]],[[[106.13434720000004,2.906364800000063],[106.13210320000007,2.904321700000025],[106.13546150000008,2.904236900000058],[106.13434720000004,2.906364800000063]]],[[[106.16122580000007,2.904447600000026],[106.16185860000007,2.907473100000061],[106.16024130000005,2.910466700000029],[106.15809,2.90734290000006],[106.16122580000007,2.904447600000026]]],[[[105.67380480000008,2.91924240000003],[105.67156240000008,2.918481900000074],[105.67529590000004,2.917822],[105.67380480000008,2.91924240000003]]],[[[105.68361850000008,2.92394070000006],[105.681401,2.92476],[105.68129560000006,2.922033500000055],[105.678613,2.919192100000032],[105.68350010000006,2.912565],[105.68822650000004,2.909891200000061],[105.690488,2.912532300000066],[105.68998630000004,2.913912],[105.69488150000006,2.916734],[105.69564030000004,2.918933300000049],[105.68978980000009,2.923865500000034],[105.68361850000008,2.92394070000006]]],[[[106.12938760000009,2.938040900000033],[106.12500340000008,2.939733300000057],[106.12151220000004,2.938760700000046],[106.11914010000004,2.935366100000067],[106.11463150000009,2.932537100000047],[106.112635,2.927441300000055],[106.11492870000006,2.925207600000022],[106.12504920000003,2.927359],[106.12875610000003,2.926497400000073],[106.13351220000004,2.93014560000006],[106.13384810000008,2.923067600000024],[106.13550210000005,2.922279300000071],[106.13803390000004,2.923504200000025],[106.13922250000007,2.921994500000039],[106.13577950000007,2.920149700000024],[106.13718290000008,2.918194300000039],[106.14497250000005,2.919202900000073],[106.14708920000004,2.918114800000069],[106.14959020000003,2.919254400000057],[106.14962550000007,2.925279500000045],[106.14552340000006,2.930512400000055],[106.13896680000005,2.934252300000026],[106.13497550000005,2.934722400000055],[106.13299120000005,2.938190600000041],[106.12938760000009,2.938040900000033]]],[[[106.18309260000007,2.957899600000076],[106.18041720000008,2.958789700000068],[106.17506830000008,2.952668300000028],[106.175468,2.948913400000038],[106.17903740000008,2.947387200000037],[106.17900260000005,2.943854700000031],[106.18382270000006,2.945758700000056],[106.18829170000004,2.942298600000072],[106.19284210000006,2.952127400000052],[106.19059190000007,2.953321900000049],[106.18912660000007,2.950643400000047],[106.18603010000004,2.950806200000045],[106.18460790000006,2.953171],[106.18481860000009,2.956757300000049],[106.18309260000007,2.957899600000076]]],[[[106.164152,2.973717600000043],[106.16188020000004,2.972647],[106.16266090000005,2.968879500000071],[106.16069520000008,2.966408500000057],[106.16080320000003,2.96090410000005],[106.15941560000005,2.960528500000066],[106.15965960000005,2.964023800000064],[106.15662510000004,2.965833600000053],[106.15528980000005,2.965519300000039],[106.15615060000005,2.962180100000069],[106.155023,2.960225600000058],[106.156469,2.957882500000039],[106.16171630000008,2.956586200000061],[106.16469310000008,2.953967100000057],[106.16830930000003,2.955868900000041],[106.16964930000006,2.960668700000042],[106.16814660000006,2.967119800000035],[106.17019220000009,2.96944510000003],[106.16590260000004,2.970751600000028],[106.164152,2.973717600000043]]],[[[105.85343030000007,2.974607100000071],[105.85217940000007,2.975820800000065],[105.85092670000006,2.974864400000058],[105.85343030000007,2.974607100000071]]],[[[105.69321040000005,2.977727200000061],[105.68977560000008,2.976081400000055],[105.69021860000004,2.974375100000032],[105.69186470000005,2.974205200000029],[105.691629,2.969757],[105.693409,2.968614500000058],[105.69889780000005,2.970111200000076],[105.69979640000008,2.967290700000035],[105.698263,2.965171],[105.69863130000005,2.962492400000031],[105.70409680000006,2.959347300000047],[105.707109,2.960204100000055],[105.70848840000008,2.964245500000061],[105.70264290000006,2.974509900000044],[105.69618220000007,2.973244500000021],[105.69321040000005,2.977727200000061]]],[[[105.69955790000006,2.976406800000063],[105.700386,2.979317300000048],[105.69827160000006,2.977745200000072],[105.69955790000006,2.976406800000063]]],[[[105.77122060000005,2.983659100000068],[105.76980210000005,2.983431600000074],[105.77018770000006,2.982275300000026],[105.77122060000005,2.983659100000068]]],[[[105.68707850000004,2.98575180000006],[105.68844220000005,2.988342100000068],[105.68565140000004,2.990143100000068],[105.68490570000006,2.985730500000045],[105.68707850000004,2.98575180000006]]],[[[105.69728990000004,2.990725],[105.69611140000006,2.992082700000026],[105.69447580000008,2.990653200000054],[105.69825790000004,2.988367600000061],[105.69898120000005,2.990110800000025],[105.69728990000004,2.990725]]],[[[106.41516890000008,2.981676800000059],[106.41658530000007,2.988667300000031],[106.41546380000005,2.994115800000031],[106.41386230000006,2.991254],[106.41325050000006,2.984408400000063],[106.41516890000008,2.981676800000059]]],[[[106.12941,2.993886800000041],[106.12617990000007,2.995191100000056],[106.12432560000008,2.993684100000053],[106.12648580000007,2.988274100000069],[106.13085520000004,2.992499400000042],[106.12941,2.993886800000041]]],[[[106.25118180000004,3.003798],[106.25058670000004,3.005314],[106.24103580000008,3.002796800000056],[106.239428,2.997135600000036],[106.240347,2.997402900000054],[106.240311,2.992370400000027],[106.24246270000003,2.992604700000072],[106.24551010000005,2.998418400000048],[106.24935380000005,2.998280600000044],[106.25118180000004,3.003798]]],[[[106.14643620000004,3.006013100000075],[106.14251490000004,3.005077500000027],[106.13667090000007,2.996590200000071],[106.13619730000005,2.990569600000072],[106.138796,2.98882320000007],[106.13656550000007,2.980565300000023],[106.13901360000006,2.976680100000067],[106.14197460000008,2.97706450000004],[106.14375920000003,2.979787300000055],[106.14266320000007,2.982789100000048],[106.14481650000005,2.985750500000051],[106.14328320000004,2.986032300000034],[106.143196,2.988064300000076],[106.14565570000008,2.992475600000034],[106.14728780000007,2.992482100000075],[106.14969440000004,2.995427100000029],[106.14898720000008,3.002323800000056],[106.14643620000004,3.006013100000075]]],[[[105.80534990000007,3.008589],[105.80271730000004,3.007870400000058],[105.80219410000007,3.005896800000073],[105.80486120000006,3.003489400000035],[105.80493310000008,2.999445500000036],[105.80676040000009,2.996942800000056],[105.80797230000007,2.997914800000046],[105.80705070000005,2.999157500000024],[105.81034560000006,3.000711400000057],[105.81234030000007,2.999626400000068],[105.81468870000003,3.002428],[105.81407510000008,3.004240500000037],[105.80534990000007,3.008589]]],[[[105.67209720000005,3.010250400000075],[105.67049560000004,3.012254200000029],[105.67082140000008,3.009688500000038],[105.67209720000005,3.010250400000075]]],[[[105.84048980000006,3.010902100000067],[105.84025360000004,3.012694900000042],[105.83406890000003,3.009755],[105.83526310000008,3.008065200000033],[105.83810390000008,3.007781],[105.84048980000006,3.010902100000067]]],[[[106.39647290000005,3.016827300000045],[106.396583,3.01785620000004],[106.39515790000007,3.017395700000066],[106.395233,3.014194100000054],[106.39647290000005,3.016827300000045]]],[[[105.75314940000004,3.032325100000037],[105.753527,3.033874700000069],[105.75184610000008,3.034949600000061],[105.75075120000008,3.033098900000027],[105.75314940000004,3.032325100000037]]],[[[105.74925880000006,3.03440020000005],[105.74657590000004,3.034099],[105.74786810000006,3.031336800000076],[105.74640090000008,3.028957500000047],[105.74819830000007,3.028991400000052],[105.75004810000007,3.033304700000031],[105.74925880000006,3.03440020000005]]],[[[106.40756750000008,3.037163200000066],[106.406932,3.038630700000056],[106.40596210000007,3.034875100000022],[106.40682210000006,3.03200320000002],[106.404394,3.025124400000038],[106.40274680000005,3.027870500000063],[106.403155,3.035562900000059],[106.40067650000009,3.036693],[106.40073770000004,3.037998],[106.39930020000008,3.038233],[106.39723580000003,3.035499800000025],[106.39814360000008,3.032663800000023],[106.39333630000004,3.029320600000062],[106.39503330000008,3.028093700000056],[106.39458950000005,3.025657800000033],[106.39705280000004,3.020585],[106.39836210000004,3.01978710000003],[106.40025870000005,3.021772100000021],[106.40173160000006,3.020475800000042],[106.40490770000008,3.021663],[106.40668920000007,3.014428400000043],[106.40876650000007,3.013396],[106.41030880000005,3.020692500000052],[106.411284,3.022741100000076],[106.41300540000009,3.022744800000055],[106.41612850000007,3.031928700000037],[106.41602130000007,3.036480600000061],[106.41387310000005,3.03586480000007],[106.41154590000008,3.02927260000007],[106.41130510000005,3.037344400000052],[106.40756750000008,3.037163200000066]]],[[[106.38555380000008,3.039216400000043],[106.38068450000009,3.03926610000002],[106.38259860000005,3.034480400000064],[106.380201,3.032518400000072],[106.38029190000009,3.02984680000003],[106.38526190000005,3.024273900000026],[106.38771750000006,3.026786500000071],[106.38814980000006,3.03157],[106.38555380000008,3.039216400000043]]],[[[106.37444760000005,3.041130200000055],[106.37182280000007,3.040399600000057],[106.37114910000008,3.037496],[106.37345710000005,3.034636],[106.37720660000008,3.038820700000031],[106.37444760000005,3.041130200000055]]],[[[105.95497440000008,3.034244500000057],[105.95515410000007,3.04186240000007],[105.95765490000008,3.046307600000034],[105.954837,3.045832800000028],[105.95111860000009,3.041947900000025],[105.95003840000004,3.035894300000052],[105.94619250000005,3.028778700000032],[105.94548170000007,3.02327630000002],[105.94816090000006,3.027021800000057],[105.95251980000006,3.026205400000038],[105.95443850000004,3.02889],[105.95332380000008,3.02977560000005],[105.956253,3.03239590000004],[105.95497440000008,3.034244500000057]]],[[[106.39315370000008,3.046431900000073],[106.38969520000006,3.044255700000065],[106.38992860000008,3.039821200000063],[106.394539,3.03678960000002],[106.39538550000009,3.043059400000061],[106.39315370000008,3.046431900000073]]],[[[106.38018280000006,3.039717400000029],[106.38209940000007,3.044237100000032],[106.38131320000008,3.047836800000027],[106.37896410000008,3.042890800000066],[106.38018280000006,3.039717400000029]]],[[[106.22253880000005,3.040138900000045],[106.22413290000009,3.042209200000059],[106.22384730000005,3.048061700000062],[106.21958160000008,3.049515],[106.21830620000009,3.046069200000034],[106.22253880000005,3.040138900000045]]],[[[106.33727770000007,3.059419400000024],[106.33550950000006,3.059683500000062],[106.33371020000004,3.057012600000064],[106.33447550000005,3.055027500000051],[106.33337750000004,3.053981600000043],[106.33588320000007,3.051415600000041],[106.33785830000005,3.052171],[106.33735380000007,3.054417600000022],[106.33948290000006,3.057763200000068],[106.33937560000004,3.059595900000033],[106.33727770000007,3.059419400000024]]],[[[105.69851310000007,3.063374200000055],[105.69559530000004,3.063647800000069],[105.69484840000007,3.061131200000034],[105.69228870000006,3.060648900000047],[105.69151890000006,3.058599100000038],[105.69737440000006,3.045348300000057],[105.69385150000005,3.044314900000074],[105.697285,3.044038200000045],[105.70575650000006,3.036172900000054],[105.70560170000005,3.032076700000061],[105.704317,3.030906],[105.701848,3.033021400000052],[105.70017390000004,3.030475700000068],[105.69670640000004,3.030372800000066],[105.69566660000004,3.028913400000022],[105.69511690000007,3.025504300000023],[105.69809410000005,3.018475600000045],[105.69623220000005,3.013888100000031],[105.69220770000004,3.012437100000056],[105.69238670000004,3.006005800000025],[105.68953140000008,3.005319900000075],[105.68530850000008,3.01037830000007],[105.68062670000006,3.012368],[105.67567360000004,3.009209200000043],[105.68403550000005,2.999916900000073],[105.69144530000005,2.99642220000004],[105.69673180000007,2.996542500000032],[105.70537940000008,2.989894700000036],[105.70628990000006,2.987841900000035],[105.71000660000004,2.9877],[105.71502240000007,2.984592600000042],[105.71224460000008,2.980569600000024],[105.71367940000005,2.975819500000057],[105.70876010000006,2.979052400000057],[105.70681650000006,2.977658900000051],[105.70838120000008,2.96649050000002],[105.71409860000006,2.964518500000054],[105.71529910000004,2.961945400000047],[105.71302550000007,2.952030500000035],[105.70691770000008,2.952647300000024],[105.70804690000006,2.949075],[105.70452380000006,2.941898900000069],[105.70736350000004,2.939944800000035],[105.70710260000004,2.935683500000039],[105.70493340000007,2.932569600000022],[105.69714340000007,2.935506500000031],[105.69443970000003,2.933518900000024],[105.69716060000007,2.930426900000043],[105.70663140000005,2.928799100000049],[105.70744140000005,2.926113900000075],[105.70591550000006,2.923074400000075],[105.70305550000006,2.921542600000066],[105.703676,2.917622300000062],[105.70186220000005,2.915750800000069],[105.69905210000007,2.915815800000075],[105.69870990000004,2.912073400000054],[105.70252320000009,2.90779660000004],[105.70042920000009,2.90236230000005],[105.695465,2.89859320000005],[105.69635840000007,2.895158800000047],[105.69458360000004,2.893092200000069],[105.69667020000009,2.889394100000061],[105.69959050000006,2.888895200000036],[105.70306950000008,2.881949400000053],[105.70048070000007,2.881307900000024],[105.69929470000005,2.882501500000046],[105.69896410000007,2.880990700000041],[105.696473,2.88249],[105.69321910000008,2.882266700000059],[105.69286050000005,2.879407100000037],[105.69152180000003,2.878804800000069],[105.69338820000007,2.876153400000021],[105.69238430000007,2.873264600000027],[105.69630020000005,2.872884500000055],[105.69804590000007,2.870281400000067],[105.69473430000005,2.868009500000028],[105.69494470000006,2.865301600000066],[105.69366320000006,2.864725800000031],[105.69739480000004,2.861036300000023],[105.69779140000009,2.858550500000035],[105.69302520000008,2.855896100000052],[105.69423870000008,2.852870900000028],[105.69347920000007,2.851370700000075],[105.69423920000008,2.849943400000029],[105.69616550000006,2.851087],[105.70114850000004,2.846720600000026],[105.70433280000009,2.841488800000036],[105.70361260000004,2.837651900000026],[105.70709320000009,2.837135500000045],[105.70874320000007,2.835389200000066],[105.71069930000004,2.837227100000064],[105.71218970000007,2.836690200000021],[105.71285050000006,2.830995900000062],[105.71426960000008,2.830835],[105.71619080000005,2.83325480000002],[105.71777320000007,2.830790300000046],[105.72007250000007,2.830176600000073],[105.72038020000008,2.82648770000003],[105.72502350000008,2.820923600000071],[105.72570490000004,2.817511200000069],[105.730777,2.817428200000052],[105.73293830000006,2.815367500000036],[105.73863030000007,2.821808100000055],[105.73868440000007,2.830769400000065],[105.74012340000007,2.832737900000041],[105.74292610000003,2.829042300000026],[105.74310440000005,2.82554250000004],[105.74590760000007,2.82541260000005],[105.74477620000005,2.823696400000074],[105.74602270000008,2.821411900000044],[105.74446330000006,2.818797600000039],[105.74889490000004,2.819599900000071],[105.74996090000008,2.822341100000074],[105.74686780000008,2.826551],[105.74742610000004,2.827659500000038],[105.74983140000006,2.826972300000023],[105.75268970000008,2.829960200000073],[105.759055,2.825528800000029],[105.75992870000005,2.829358800000023],[105.75784920000007,2.8328],[105.75951020000008,2.83490560000007],[105.76166010000009,2.834218300000032],[105.76537640000004,2.835768800000039],[105.769668,2.833622100000071],[105.77004790000007,2.843660800000066],[105.765746,2.850361900000053],[105.764468,2.850995200000057],[105.761924,2.849277800000038],[105.75734260000007,2.851833800000065],[105.75516790000006,2.856923700000038],[105.75240110000004,2.856798400000059],[105.75001160000005,2.854758300000071],[105.743762,2.855167100000074],[105.73908270000004,2.851497400000028],[105.73559560000007,2.854556500000058],[105.73501740000006,2.860421500000029],[105.73322960000007,2.863161900000023],[105.72794850000008,2.866283],[105.72678680000007,2.870477900000026],[105.72231880000004,2.874019500000031],[105.73041440000009,2.875674900000035],[105.73185860000007,2.879953900000032],[105.73420240000007,2.880760700000053],[105.73682740000004,2.879267],[105.74106460000007,2.867870900000071],[105.74345680000005,2.867967200000066],[105.74409030000004,2.869648400000074],[105.74774060000004,2.867602200000022],[105.75525180000005,2.873548400000061],[105.76115760000005,2.87161],[105.767569,2.87218660000002],[105.76991850000007,2.874772500000063],[105.77069980000005,2.880453400000022],[105.77277450000008,2.881354400000021],[105.77152440000003,2.885501800000043],[105.76774980000005,2.888576500000056],[105.76614240000004,2.894665400000065],[105.76927270000004,2.895200700000032],[105.77029230000005,2.898158600000045],[105.77797140000007,2.895159100000058],[105.78136270000005,2.897696300000064],[105.78304870000005,2.896991],[105.785547,2.906757300000038],[105.78825130000007,2.900810500000034],[105.79211430000004,2.897218600000031],[105.79254770000006,2.894668700000068],[105.79801230000004,2.89247290000003],[105.80039310000006,2.888222900000073],[105.80635450000005,2.88850530000002],[105.80951280000005,2.887128],[105.81142420000003,2.888097200000061],[105.81270120000005,2.886086800000044],[105.81535760000008,2.888673100000062],[105.819603,2.886002900000051],[105.82195640000003,2.886705200000051],[105.82139420000004,2.89105],[105.81745070000005,2.894023400000037],[105.81835520000004,2.897156400000028],[105.81174590000006,2.901894200000072],[105.80851270000005,2.902001],[105.80573730000003,2.904923900000028],[105.79568260000008,2.909029500000031],[105.79647550000004,2.910485400000027],[105.80245,2.910399100000063],[105.80277530000006,2.90902490000002],[105.80375520000007,2.909871800000076],[105.80814360000005,2.907392300000026],[105.81375980000007,2.906617400000073],[105.81804950000009,2.908993800000076],[105.82276440000004,2.907493600000066],[105.82836470000007,2.910793500000068],[105.82474770000005,2.91453180000002],[105.82147670000006,2.915706],[105.82239110000006,2.917360900000062],[105.82676430000004,2.918239400000061],[105.82675890000007,2.920078100000069],[105.822493,2.92092370000006],[105.82152890000003,2.926009600000043],[105.81469330000004,2.928606800000068],[105.81418590000004,2.93218550000006],[105.81871070000005,2.93513310000003],[105.81497040000005,2.937954800000057],[105.81099540000008,2.944170800000052],[105.81355430000008,2.944430700000055],[105.81731550000006,2.948991900000067],[105.82142970000007,2.948893200000043],[105.81875430000008,2.953985800000055],[105.82081990000006,2.956699600000036],[105.82402970000004,2.956697200000065],[105.82441170000004,2.958347400000036],[105.81907990000008,2.967882400000065],[105.82051,2.970615500000065],[105.82949760000008,2.969911500000023],[105.82964690000006,2.96756380000005],[105.83480260000005,2.959260200000074],[105.84465090000003,2.958637400000043],[105.84931630000005,2.956590400000039],[105.85203030000008,2.957435900000064],[105.85145370000004,2.959295500000053],[105.84494770000003,2.959570400000075],[105.84467710000007,2.961306700000023],[105.848652,2.963602800000046],[105.84597290000005,2.966519400000038],[105.84272010000007,2.96650470000003],[105.84141780000004,2.970097600000031],[105.84258240000008,2.972345500000074],[105.84559140000005,2.973631200000057],[105.84739710000008,2.978062200000068],[105.84166110000007,2.97804160000004],[105.84081220000007,2.979675900000075],[105.84137970000006,2.981982300000027],[105.85095120000005,2.987439900000027],[105.84730570000005,2.989830600000062],[105.84507130000009,2.989483800000073],[105.84486830000009,2.990734900000064],[105.84108350000008,2.990054800000053],[105.83367460000005,2.993064400000037],[105.82745850000003,2.988936200000069],[105.82440350000007,2.99101150000007],[105.81942820000006,2.989832900000067],[105.81592480000006,2.992285300000049],[105.81710270000008,2.994143700000052],[105.815222,2.992031800000063],[105.81068330000005,2.99177560000004],[105.80897950000008,2.990231300000062],[105.80457080000008,2.991993400000069],[105.80387890000009,2.99671520000004],[105.80133620000004,2.997694700000068],[105.80099520000005,3.000320200000033],[105.79753120000004,2.996833800000047],[105.80091040000008,2.99561250000005],[105.79820910000007,2.993686800000035],[105.80058970000005,2.992411],[105.79918360000005,2.989711300000067],[105.79759850000005,2.989049400000056],[105.79664120000007,2.991128100000026],[105.79414860000009,2.991129700000045],[105.78783220000008,2.987335600000051],[105.78886450000005,2.98540040000006],[105.78739370000005,2.983149900000058],[105.79003060000008,2.979932400000052],[105.78866550000004,2.974444600000027],[105.78550580000007,2.972353300000066],[105.78148260000006,2.971701500000052],[105.77851250000003,2.974824800000022],[105.77932310000006,2.97685430000007],[105.77774360000006,2.976352100000042],[105.77601460000005,2.979360900000074],[105.77159780000005,2.97981070000003],[105.77019110000003,2.981981700000063],[105.76777840000005,2.98091050000005],[105.76261830000004,2.98149920000003],[105.75964650000009,2.978052700000035],[105.76122460000005,2.974972500000035],[105.75715420000006,2.969789200000037],[105.75402040000006,2.968439900000021],[105.74921110000008,2.96953],[105.740587,2.974259800000027],[105.73597920000009,2.978545],[105.72470420000008,2.994567500000073],[105.72562290000008,2.997429200000056],[105.72863320000005,2.99785380000003],[105.72846220000008,3.001065600000061],[105.73007080000008,3.003697800000054],[105.73696150000006,3.009467400000062],[105.73789340000008,3.015801500000066],[105.73341780000004,3.022328100000038],[105.73503780000004,3.026318700000047],[105.73938230000005,3.029494],[105.73394010000004,3.039650700000038],[105.73552310000008,3.045445400000062],[105.74077210000007,3.045825100000059],[105.73884880000008,3.04813850000005],[105.739208,3.050371600000062],[105.73575260000007,3.049682200000063],[105.73451280000006,3.045266500000025],[105.73040570000006,3.047072800000024],[105.72663350000005,3.045979100000068],[105.72697910000005,3.036236],[105.72463330000005,3.035172300000056],[105.72420950000009,3.032988500000044],[105.72222280000005,3.033051600000022],[105.72221490000004,3.031098],[105.72039140000004,3.030049500000075],[105.71879430000007,3.030611400000055],[105.71892330000009,3.033356900000058],[105.71563120000008,3.03087290000002],[105.71463160000008,3.036262200000067],[105.71631140000005,3.037797300000022],[105.71434080000006,3.038863800000058],[105.71371290000008,3.041378300000076],[105.71543970000005,3.043515900000045],[105.71228940000009,3.051337],[105.70968140000008,3.053147],[105.70553450000006,3.060582900000043],[105.69851310000007,3.063374200000055]]],[[[106.32033890000008,3.064223800000036],[106.31984010000008,3.06700040000004],[106.31856520000008,3.064798],[106.32033890000008,3.064223800000036]]],[[[106.32282690000005,3.071140900000046],[106.32319780000006,3.073260300000072],[106.32183980000008,3.071562800000038],[106.32282690000005,3.071140900000046]]],[[[106.28798740000008,3.07416070000005],[106.287078,3.07492730000007],[106.28693990000005,3.07337160000003],[106.28961510000005,3.073424300000056],[106.28798740000008,3.07416070000005]]],[[[105.60842890000004,3.078416100000027],[105.60687460000008,3.077793900000074],[105.60865910000007,3.076248600000042],[105.61455890000008,3.074913400000071],[105.61460030000006,3.076520500000072],[105.60842890000004,3.078416100000027]]],[[[105.727279,3.080438800000024],[105.72660280000008,3.082514200000048],[105.72602730000006,3.081072900000038],[105.727279,3.080438800000024]]],[[[105.98304830000006,3.087423800000067],[105.98137150000008,3.088050400000043],[105.97695160000006,3.084231700000032],[105.96936540000007,3.075657900000067],[105.96699390000003,3.070786100000021],[105.96929680000005,3.064389200000051],[105.96743610000004,3.05964],[105.97008020000004,3.052388900000039],[105.96795450000008,3.048319400000025],[105.97065680000009,3.04602570000003],[105.96384460000007,3.040041],[105.968404,3.035827900000072],[105.96685650000006,3.031491900000049],[105.96806350000008,3.02872160000004],[105.96571360000007,3.024866600000053],[105.96977730000003,3.025694800000053],[105.97038990000004,3.02972950000003],[105.97391770000007,3.028500300000076],[105.97586320000005,3.029689800000028],[105.97674570000004,3.024475300000063],[105.97569630000004,3.021138900000039],[105.97692060000008,3.020876900000076],[105.97670860000005,3.01941510000006],[105.97867780000007,3.019738200000063],[105.97835470000007,3.017735300000027],[105.98323450000004,3.022879900000021],[105.98651970000009,3.029515],[105.98380750000007,3.034591800000044],[105.981075,3.035101300000065],[105.98034860000007,3.039577200000053],[105.98294,3.043502100000069],[105.988226,3.045336200000065],[105.986921,3.050836700000048],[105.98300120000005,3.056432700000073],[105.98347330000007,3.05863080000006],[105.98580360000005,3.060206],[105.98943580000008,3.071127500000046],[105.99186660000004,3.072631500000057],[105.98831030000008,3.074340600000028],[105.98470920000005,3.080578900000035],[105.98529710000008,3.08597270000007],[105.98304830000006,3.087423800000067]]],[[[105.67518560000008,3.08694550000007],[105.67251050000004,3.088713200000029],[105.670061,3.083933],[105.67427750000007,3.082789300000059],[105.67623840000005,3.084662600000058],[105.67518560000008,3.08694550000007]]],[[[105.95466010000007,3.091617900000074],[105.95510090000005,3.09270250000003],[105.94500360000006,3.090352800000062],[105.94672270000007,3.089513500000066],[105.94726560000004,3.085413700000061],[105.94999680000006,3.080823500000065],[105.94804760000005,3.073879400000067],[105.95442950000006,3.070685300000036],[105.95816770000005,3.077229300000056],[105.95357310000009,3.081774800000062],[105.955948,3.08482],[105.95425780000005,3.087862500000028],[105.95466010000007,3.091617900000074]]],[[[105.97120040000004,3.092031600000041],[105.97071910000005,3.093184300000075],[105.96775040000006,3.092111100000068],[105.96814070000005,3.089122100000054],[105.96308580000004,3.083880300000033],[105.96275510000004,3.081796],[105.96594230000005,3.081002],[105.97395040000004,3.087315500000045],[105.97120040000004,3.092031600000041]]],[[[105.58857810000006,3.093107],[105.58550550000007,3.093055200000038],[105.58446060000006,3.091759100000047],[105.58932450000003,3.083673400000066],[105.59207630000009,3.083549300000072],[105.59338710000009,3.081618],[105.59984890000004,3.081768200000056],[105.60598540000007,3.078715800000055],[105.60960510000007,3.081624100000056],[105.60781550000007,3.084829200000058],[105.599134,3.089736600000037],[105.59837470000008,3.091817900000024],[105.59436760000006,3.091192900000067],[105.58857810000006,3.093107]]],[[[106.34376860000003,3.093862500000057],[106.34189980000008,3.091814200000044],[106.34277940000004,3.08457130000005],[106.34473840000004,3.087256700000069],[106.34484880000008,3.093134500000076],[106.34376860000003,3.093862500000057]]],[[[106.356704,3.091606600000034],[106.35610410000004,3.094630500000051],[106.35465610000006,3.09187060000005],[106.35149760000007,3.090256600000032],[106.35103220000008,3.084139],[106.34849520000006,3.080007900000055],[106.34724120000004,3.079830700000059],[106.34567680000004,3.082398100000034],[106.34240140000009,3.073015200000043],[106.34374420000006,3.070208800000046],[106.34174580000007,3.064936800000055],[106.34220740000006,3.061402],[106.34442970000003,3.05930660000007],[106.34192610000008,3.056094800000039],[106.34339630000005,3.05193550000007],[106.34816560000007,3.049864500000069],[106.35200390000006,3.053138400000023],[106.35444460000008,3.048387500000047],[106.35493740000004,3.05203640000002],[106.35288680000008,3.055792200000042],[106.35581410000009,3.05781630000007],[106.35337430000004,3.064008400000034],[106.35533780000009,3.067236],[106.35328760000004,3.078034500000058],[106.35444480000007,3.080162],[106.35637420000006,3.080186200000071],[106.35748980000005,3.082941900000037],[106.35862030000004,3.088885700000048],[106.35822950000005,3.091817500000047],[106.356704,3.091606600000034]]],[[[106.33557520000005,3.084726100000069],[106.33545770000006,3.091566600000021],[106.33283560000007,3.094589],[106.33102690000004,3.092817800000034],[106.33089110000009,3.085820600000034],[106.32929150000007,3.083310300000051],[106.330845,3.082463800000028],[106.330654,3.080943900000022],[106.32930810000005,3.079763400000047],[106.32731320000005,3.080314800000053],[106.32638630000008,3.078246900000067],[106.326215,3.075608100000068],[106.32820990000005,3.07503550000007],[106.32839650000005,3.072987400000045],[106.33083720000008,3.076296800000023],[106.33185240000006,3.081015],[106.334936,3.077443200000062],[106.337438,3.079276800000059],[106.33717120000006,3.084280700000022],[106.33557520000005,3.084726100000069]]],[[[105.64178430000004,3.09164880000003],[105.64133530000004,3.09490610000006],[105.63990680000006,3.091207200000042],[105.64178430000004,3.09164880000003]]],[[[106.25678560000006,3.088807400000064],[106.257292,3.095076100000028],[106.25547970000008,3.097095800000034],[106.25362310000008,3.090384200000074],[106.25678560000006,3.088807400000064]]],[[[105.97203280000008,3.096965700000055],[105.96968550000008,3.096980500000029],[105.97212030000009,3.094659900000067],[105.974767,3.09628390000006],[105.97203280000008,3.096965700000055]]],[[[105.95616740000008,3.100991600000043],[105.95162850000008,3.101578300000028],[105.947877,3.097292300000049],[105.95048570000006,3.097287100000074],[105.96054910000004,3.091665100000057],[105.962131,3.09214170000007],[105.96393590000008,3.094774100000052],[105.96244450000006,3.096487],[105.96242520000004,3.101136200000042],[105.95616740000008,3.100991600000043]]],[[[105.70145640000004,3.099754],[105.70110010000008,3.101886500000035],[105.70030420000006,3.099726500000031],[105.69789340000005,3.100933],[105.69637380000006,3.097601500000053],[105.70031660000006,3.090998900000045],[105.69941570000009,3.08847650000007],[105.70181440000005,3.086324200000035],[105.70139940000007,3.08192420000006],[105.70453220000007,3.081253300000071],[105.71193040000009,3.074710800000048],[105.71672280000007,3.076591600000029],[105.72016860000008,3.083723700000064],[105.72390420000005,3.086791500000061],[105.72603060000006,3.086997200000042],[105.73047970000005,3.081296200000054],[105.73549430000008,3.084346],[105.73353020000008,3.091168300000049],[105.72869590000005,3.094807700000047],[105.726876,3.094969500000047],[105.72416480000004,3.092372200000057],[105.71800010000004,3.099411900000064],[105.71444910000008,3.098134],[105.70762280000008,3.099673400000029],[105.70589830000006,3.098356700000068],[105.70429440000004,3.099450900000022],[105.701952,3.098567600000024],[105.70145640000004,3.099754]]],[[[106.35445620000007,3.103032],[106.35536950000005,3.108777400000065],[106.35304340000005,3.10976340000002],[106.35013090000007,3.104923600000063],[106.35093190000003,3.09999],[106.352647,3.099600400000043],[106.35521720000008,3.10252980000007],[106.35445620000007,3.103032]]],[[[106.34499480000005,3.105560300000036],[106.34410720000005,3.111125900000047],[106.34083710000004,3.104957900000045],[106.34443570000008,3.102812500000027],[106.34546030000007,3.100106700000026],[106.34461370000008,3.095248500000025],[106.34599030000004,3.094295],[106.34832030000007,3.097018800000058],[106.347608,3.101719400000036],[106.34552790000004,3.102209600000037],[106.34618040000004,3.104954700000064],[106.34499480000005,3.105560300000036]]],[[[106.11504460000003,3.115682],[106.11060930000008,3.11444350000005],[106.10956750000008,3.108966400000043],[106.11132380000004,3.110806900000057],[106.11280880000004,3.109764],[106.11731770000006,3.111456600000054],[106.11504460000003,3.115682]]],[[[105.66986570000006,3.116802],[105.66997960000003,3.118048100000067],[105.66890360000008,3.11786920000003],[105.66986570000006,3.116802]]],[[[105.68588040000009,3.117778300000055],[105.68484060000009,3.118547400000068],[105.68452420000006,3.115722100000028],[105.68008690000005,3.11633130000007],[105.67890530000005,3.114946],[105.67379330000006,3.118009700000073],[105.67333530000008,3.114326300000073],[105.67602680000005,3.107148900000027],[105.68061550000004,3.104516300000057],[105.68318420000008,3.107357400000069],[105.68977420000004,3.104291200000034],[105.69412860000006,3.104764700000032],[105.69575830000008,3.103236600000059],[105.69753240000006,3.10585240000006],[105.69253780000008,3.108796600000062],[105.69191580000006,3.113742100000024],[105.68781640000009,3.118248900000026],[105.68588040000009,3.117778300000055]]],[[[105.65375220000004,3.119478900000047],[105.65227620000007,3.120704500000045],[105.65016560000004,3.118383700000038],[105.64394850000008,3.118374],[105.64172450000007,3.115129800000034],[105.64238850000004,3.110531600000058],[105.64481890000008,3.10927520000007],[105.64460850000006,3.10646730000002],[105.64725560000005,3.104736500000058],[105.64799440000007,3.10171820000005],[105.64595770000005,3.103363500000057],[105.64367020000009,3.103192900000067],[105.64337640000008,3.105409200000054],[105.63833390000008,3.104348600000037],[105.63915290000006,3.101757900000052],[105.64027160000006,3.102457700000059],[105.64427090000004,3.099186600000053],[105.64262190000005,3.095554100000072],[105.64384650000005,3.09368980000005],[105.65009770000006,3.09251560000007],[105.65282040000005,3.08836320000006],[105.65633430000008,3.087698],[105.65687440000005,3.089876300000071],[105.652392,3.093838],[105.65335010000007,3.09726790000002],[105.656167,3.096840600000064],[105.65847720000005,3.098321],[105.65979640000006,3.096478400000024],[105.66037330000006,3.098780500000032],[105.66314720000008,3.098981700000024],[105.66549110000005,3.094598200000064],[105.66945850000008,3.094439900000054],[105.67095350000005,3.091129300000034],[105.67538530000007,3.091533300000037],[105.675965,3.092730600000039],[105.67217620000008,3.099823600000036],[105.66520170000007,3.101050300000054],[105.66282630000006,3.10303440000007],[105.66617130000009,3.109765200000027],[105.65375220000004,3.119478900000047]]],[[[106.40448410000005,3.12130540000004],[106.40360920000006,3.124068800000032],[106.40100550000005,3.122921900000051],[106.40146030000005,3.118930800000044],[106.396642,3.113177300000075],[106.39911990000007,3.106589900000074],[106.40212720000005,3.10927920000006],[106.40123810000006,3.113357],[106.40460630000007,3.119117600000038],[106.40448410000005,3.12130540000004]]],[[[106.43033180000003,3.124445],[106.42881830000005,3.123333900000034],[106.43139990000009,3.121218900000031],[106.43275580000005,3.122807300000034],[106.43033180000003,3.124445]]],[[[105.67562720000006,3.124816200000055],[105.67489380000006,3.126986100000067],[105.67367620000005,3.124358200000074],[105.67632850000007,3.123500400000069],[105.67562720000006,3.124816200000055]]],[[[105.66693790000005,3.126815100000044],[105.664603,3.127094700000043],[105.666451,3.122852100000046],[105.66693790000005,3.126815100000044]]],[[[106.14663310000009,3.127579900000057],[106.14304290000007,3.126948900000059],[106.14389,3.122455600000023],[106.14805480000007,3.123470700000041],[106.14663310000009,3.127579900000057]]],[[[106.44953430000004,3.128302800000029],[106.44655510000007,3.130247100000076],[106.44500680000004,3.125337200000047],[106.44751590000004,3.122770200000048],[106.449282,3.125538900000038],[106.45095870000006,3.125563900000031],[106.45272980000004,3.121699400000068],[106.45483080000008,3.120485100000053],[106.45684910000006,3.123506600000042],[106.44953430000004,3.128302800000029]]],[[[106.407177,3.129296200000056],[106.40676770000005,3.131299400000046],[106.40603140000007,3.129704300000071],[106.407177,3.129296200000056]]],[[[106.11953740000007,3.133780700000045],[106.115565,3.141262700000027],[106.11414670000005,3.141229],[106.11029660000008,3.127266300000031],[106.11208710000005,3.119908200000054],[106.11371370000006,3.118155600000023],[106.12319220000006,3.117881300000022],[106.12639150000007,3.119446700000026],[106.12369440000003,3.130386200000032],[106.11953740000007,3.133780700000045]]],[[[106.10939680000007,3.137795600000061],[106.11236240000005,3.14166670000003],[106.11032650000004,3.144185700000037],[106.10257670000004,3.138506200000052],[106.10513750000007,3.13665670000006],[106.10519410000006,3.134350900000072],[106.10939680000007,3.137795600000061]]],[[[106.38412,3.153937800000051],[106.38254060000008,3.153642400000024],[106.38179120000007,3.150406600000053],[106.38529310000007,3.152342600000054],[106.38412,3.153937800000051]]],[[[106.41753950000003,3.154733],[106.40926350000007,3.148057700000038],[106.40814180000007,3.144129200000066],[106.40352460000008,3.139882800000066],[106.40319910000005,3.13528720000005],[106.40507250000007,3.133799100000033],[106.40834350000006,3.133893700000044],[106.40813190000006,3.132364],[106.41012880000005,3.132472200000052],[106.41041260000009,3.130232300000046],[106.41187940000003,3.129953200000045],[106.411264,3.131739],[106.413622,3.134619900000075],[106.41672060000008,3.130868600000042],[106.418541,3.131021300000043],[106.42002540000004,3.135136700000032],[106.42265380000003,3.137228400000026],[106.42522140000005,3.133561900000075],[106.42520630000007,3.130579600000033],[106.42636750000008,3.132706700000028],[106.42927530000009,3.132879],[106.42964760000007,3.130827500000066],[106.43349690000008,3.13029],[106.43474080000004,3.128359300000056],[106.43665020000009,3.129055100000073],[106.43692650000008,3.130527],[106.43420250000008,3.133399700000041],[106.437683,3.13596380000007],[106.43756060000004,3.13816410000004],[106.43277350000005,3.14717580000007],[106.43064250000003,3.149845900000059],[106.42692250000005,3.150591800000029],[106.42055280000005,3.146219300000041],[106.41905030000004,3.153456500000061],[106.41753950000003,3.154733]]],[[[106.39552770000006,3.154831900000033],[106.39319240000003,3.154076500000031],[106.39218440000008,3.151492700000063],[106.38728940000004,3.151169400000072],[106.38553490000004,3.147095700000023],[106.38145740000004,3.144080300000041],[106.38009710000006,3.139007800000059],[106.38814650000006,3.137055700000076],[106.38963340000004,3.135412400000064],[106.39559970000005,3.135393800000031],[106.39613220000007,3.137553100000048],[106.39816740000003,3.137737400000049],[106.395771,3.140469],[106.39524810000006,3.144744600000024],[106.39278620000005,3.144841300000053],[106.39313460000005,3.150426700000025],[106.39618660000008,3.152531900000042],[106.39552770000006,3.154831900000033]]],[[[106.38857510000008,3.157959800000071],[106.385737,3.153895100000057],[106.38690140000006,3.151560300000028],[106.38983030000009,3.156567100000075],[106.38857510000008,3.157959800000071]]],[[[106.08768890000005,3.158420400000068],[106.08315750000008,3.156755100000055],[106.07468830000005,3.14744920000004],[106.076473,3.146786400000053],[106.08300940000004,3.148957800000062],[106.08507730000008,3.147645600000033],[106.08012610000009,3.139602300000035],[106.07972880000005,3.133981400000039],[106.08216320000008,3.125187600000061],[106.08667510000004,3.125286300000027],[106.08913910000007,3.123484400000052],[106.09331370000007,3.12638110000006],[106.09888050000006,3.135030100000051],[106.09839180000006,3.137879600000076],[106.09950410000005,3.138921400000072],[106.09889380000004,3.141488700000025],[106.09556540000005,3.142169],[106.09213920000008,3.153303300000061],[106.08795210000005,3.151839700000039],[106.08875660000007,3.157006900000056],[106.08768890000005,3.158420400000068]]],[[[106.43944350000004,3.159025200000031],[106.43765730000007,3.158740100000045],[106.43932890000008,3.156591500000047],[106.43944350000004,3.159025200000031]]],[[[106.40779890000005,3.159920100000022],[106.40520460000005,3.159932400000059],[106.40472310000007,3.158199900000056],[106.39930880000009,3.155192300000067],[106.39766950000006,3.152805800000067],[106.39724550000005,3.15123920000002],[106.39959440000007,3.147142],[106.40181460000008,3.146662200000037],[106.40747280000005,3.149577500000021],[106.40944120000006,3.157620700000052],[106.40779890000005,3.159920100000022]]],[[[106.405294,3.160856700000068],[106.40622860000008,3.161896],[106.40504960000004,3.162599400000033],[106.40333840000005,3.161561200000051],[106.405294,3.160856700000068]]],[[[106.37134020000008,3.160336800000039],[106.371967,3.164751900000056],[106.36979020000007,3.161237100000051],[106.364777,3.159040300000072],[106.36268040000004,3.153876],[106.36913430000004,3.155880700000068],[106.37134020000008,3.160336800000039]]],[[[106.43697590000005,3.163932],[106.43773560000005,3.165716],[106.43639960000007,3.166394300000036],[106.43224170000008,3.163795100000073],[106.42810040000006,3.157370900000046],[106.43191330000008,3.16126840000004],[106.43633430000006,3.160595300000068],[106.43697590000005,3.163932]]],[[[106.29378260000004,3.166950300000053],[106.29236830000008,3.162373],[106.294922,3.158455200000049],[106.29584660000006,3.162282],[106.29378260000004,3.166950300000053]]],[[[106.39736070000004,3.166524500000037],[106.39676740000004,3.168035100000054],[106.39558320000003,3.165952],[106.39736070000004,3.166524500000037]]],[[[106.31570920000007,3.159483900000055],[106.31759030000006,3.164485500000069],[106.31697990000004,3.169632300000046],[106.31400440000004,3.16605880000003],[106.31439270000004,3.164292200000034],[106.31224850000007,3.163265],[106.31170510000004,3.159917800000073],[106.30787220000008,3.15797550000002],[106.30761390000004,3.151822],[106.30075810000005,3.149632800000063],[106.30029110000004,3.144326],[106.30183570000008,3.142864100000054],[106.29960940000007,3.138619],[106.29656880000005,3.144104800000036],[106.29605480000004,3.141362700000059],[106.29479040000007,3.142070800000056],[106.29248140000004,3.138058900000033],[106.29218320000007,3.13160780000004],[106.28960870000009,3.129355800000042],[106.28668470000008,3.129398700000024],[106.28532840000008,3.125211900000068],[106.287056,3.117557400000067],[106.28914920000005,3.115323400000023],[106.28874120000006,3.112989800000037],[106.28985610000007,3.111379300000067],[106.29080290000007,3.112853800000039],[106.29216890000004,3.112208500000065],[106.291925,3.109206900000061],[106.29625770000007,3.104497700000024],[106.29878630000007,3.10874560000002],[106.30016910000006,3.127355900000055],[106.30147310000007,3.127134500000068],[106.30116680000003,3.125231800000051],[106.30285960000003,3.12359710000004],[106.302334,3.120336100000031],[106.30827940000006,3.117403500000023],[106.30982990000007,3.114418900000032],[106.31163470000007,3.114871900000026],[106.30859280000004,3.105711900000074],[106.31002860000007,3.099902800000052],[106.30860430000007,3.097534100000075],[106.30645130000005,3.099687500000073],[106.30535310000005,3.095758900000021],[106.30633660000007,3.08824130000005],[106.30882010000005,3.086406500000066],[106.31554530000005,3.089652500000057],[106.31603330000007,3.092466800000068],[106.31492510000004,3.093158900000049],[106.31730640000006,3.09786280000003],[106.31682680000006,3.101646800000026],[106.32006250000006,3.101701200000036],[106.32098530000007,3.113532400000054],[106.32304930000004,3.11522530000002],[106.32202460000008,3.120344300000056],[106.32402010000004,3.123505],[106.32790290000008,3.112567600000034],[106.33024930000005,3.11525690000002],[106.33054240000007,3.124849600000061],[106.33398250000005,3.118617300000039],[106.33436390000008,3.122521200000051],[106.33693730000005,3.125555600000041],[106.33880820000007,3.120251800000062],[106.34360070000008,3.124081600000068],[106.34182920000006,3.125253400000076],[106.34217690000008,3.134634800000072],[106.340708,3.140511900000035],[106.34226230000007,3.146828200000073],[106.34064150000006,3.151417800000047],[106.33865130000004,3.140933400000051],[106.33659380000006,3.14705],[106.33455660000004,3.148073],[106.32881640000005,3.139971500000058],[106.327098,3.139887400000021],[106.329018,3.149047900000028],[106.33488,3.156467200000066],[106.334266,3.158814900000039],[106.33079090000007,3.155817100000036],[106.32804330000005,3.158921400000054],[106.32727020000004,3.149046200000043],[106.32536650000009,3.145905700000071],[106.32002770000008,3.144938700000068],[106.31529390000009,3.13463930000006],[106.31159830000007,3.135233600000049],[106.31040570000005,3.143806900000072],[106.31289990000005,3.151237],[106.31217010000006,3.154675900000029],[106.31570920000007,3.159483900000055]]],[[[106.30698810000007,3.17509160000003],[106.303695,3.181295800000044],[106.30012170000003,3.174908100000039],[106.29844480000008,3.177728900000034],[106.29710440000008,3.176740300000063],[106.297477,3.171648400000038],[106.29878150000008,3.169964200000038],[106.300046,3.170838700000047],[106.301505,3.165580400000067],[106.30594250000007,3.16787290000002],[106.30728710000005,3.171174500000063],[106.31044730000008,3.173004900000024],[106.31022170000006,3.174478],[106.30698810000007,3.17509160000003]]],[[[106.30547390000004,3.18368490000006],[106.30609190000007,3.18567790000003],[106.304624,3.18726],[106.30407340000005,3.18454550000007],[106.30547390000004,3.18368490000006]]],[[[106.368288,3.190467200000057],[106.36268810000007,3.184000400000059],[106.36277420000005,3.181804900000031],[106.36522470000006,3.179755800000066],[106.36329440000009,3.177450700000065],[106.36623060000005,3.173783],[106.36136340000007,3.16883480000007],[106.36149960000006,3.165666500000043],[106.364294,3.161684500000035],[106.36769030000005,3.16351],[106.36506260000004,3.169421500000055],[106.36823960000004,3.174130300000058],[106.36689660000008,3.175485500000036],[106.36982740000008,3.17709160000004],[106.368288,3.190467200000057]]],[[[106.355002,3.189885700000048],[106.35365030000008,3.191602100000068],[106.35317780000008,3.189492400000063],[106.355002,3.189885700000048]]],[[[106.44413420000006,3.19314090000006],[106.44495070000005,3.194201100000043],[106.44375980000007,3.196535100000062],[106.44160850000009,3.193169800000021],[106.43267850000007,3.188598600000034],[106.43391260000004,3.184128300000054],[106.43638070000009,3.184217200000035],[106.43680710000007,3.185439300000041],[106.43966460000007,3.184858500000075],[106.43842990000007,3.179687500000057],[106.43322390000009,3.176136700000029],[106.43350180000004,3.169325],[106.43532470000008,3.16766130000002],[106.43789870000006,3.169699500000036],[106.438685,3.173805100000038],[106.43903380000006,3.168763600000034],[106.44100920000005,3.169476],[106.43932720000004,3.17338890000002],[106.44089540000004,3.177752800000064],[106.44350870000005,3.174969],[106.44500270000009,3.176224300000058],[106.44767850000005,3.174291500000038],[106.44555050000008,3.179066400000067],[106.44642230000005,3.186777800000073],[106.44143020000007,3.187696100000039],[106.44188410000004,3.19218660000007],[106.44413420000006,3.19314090000006]]],[[[106.30895210000006,3.19351910000006],[106.31053420000006,3.195857300000057],[106.30892250000005,3.201337600000045],[106.30774130000003,3.19529250000005],[106.30895210000006,3.19351910000006]]],[[[106.30549010000004,3.199781600000051],[106.30528770000006,3.20150220000005],[106.30364120000007,3.20211020000005],[106.29997120000007,3.198802],[106.29575140000009,3.199445700000069],[106.29317450000008,3.197682300000054],[106.29352430000006,3.193267500000047],[106.29136690000007,3.190193],[106.29390590000008,3.185415],[106.29627320000009,3.184297500000071],[106.29872310000007,3.188994800000046],[106.29819190000006,3.194643400000075],[106.30074330000008,3.191277700000057],[106.30257750000004,3.194369800000061],[106.30145860000005,3.196010700000045],[106.30549010000004,3.199781600000051]]],[[[106.35029150000008,3.20299730000005],[106.34774320000008,3.198201900000072],[106.35167050000007,3.202065600000026],[106.35029150000008,3.20299730000005]]],[[[106.30447320000007,3.204425400000048],[106.301335,3.20893140000004],[106.30151360000008,3.20514],[106.30447320000007,3.204425400000048]]],[[[106.48673290000005,3.211312400000054],[106.48261390000005,3.207939900000042],[106.47996420000004,3.207600600000035],[106.47719370000004,3.190065300000072],[106.48405160000004,3.194655200000057],[106.48632450000008,3.19357],[106.48605890000005,3.189340700000059],[106.48837050000009,3.189478500000064],[106.49210330000005,3.198799300000076],[106.49266180000006,3.191581100000064],[106.49594470000005,3.188651600000071],[106.49464230000007,3.185474100000022],[106.49782460000006,3.183693],[106.50117550000004,3.19178],[106.49900130000009,3.192149800000038],[106.49802290000008,3.18985310000005],[106.496081,3.190694800000074],[106.50118540000005,3.202684400000066],[106.49907460000009,3.205487700000049],[106.49658460000006,3.205752200000063],[106.49299470000005,3.204168400000071],[106.49068380000006,3.199708600000065],[106.48802450000005,3.199352900000065],[106.48659230000004,3.204138],[106.48787150000004,3.210810800000047],[106.48673290000005,3.211312400000054]]],[[[106.45538620000008,3.21097270000007],[106.45563230000005,3.21271310000003],[106.454286,3.211255300000062],[106.45538620000008,3.21097270000007]]],[[[106.48514180000006,3.223316300000022],[106.483612,3.222451900000067],[106.48289740000007,3.218538500000022],[106.477692,3.215814],[106.47706770000008,3.207426300000066],[106.47976340000008,3.209258500000033],[106.48097810000007,3.213672900000063],[106.48718320000006,3.220590900000047],[106.48514180000006,3.223316300000022]]],[[[106.47289990000007,3.232764400000065],[106.46929320000004,3.229798],[106.47037470000004,3.229095800000039],[106.46977820000006,3.226828900000044],[106.47185780000007,3.225220600000057],[106.47425630000004,3.22596690000006],[106.47501390000008,3.229040200000043],[106.47504280000004,3.232115300000032],[106.47289990000007,3.232764400000065]]],[[[106.30505390000008,3.234152900000026],[106.30405290000004,3.235604600000045],[106.30126040000005,3.234483900000043],[106.30075780000004,3.231185400000072],[106.29896320000006,3.230067600000041],[106.29698320000006,3.231934100000046],[106.29225220000006,3.230321],[106.29384360000006,3.227456700000062],[106.293419,3.221754100000055],[106.29640610000007,3.223288],[106.29606490000003,3.218234700000039],[106.297755,3.216258],[106.29973860000007,3.220925200000067],[106.30430430000007,3.224941700000045],[106.30841080000005,3.224708100000043],[106.30855640000004,3.229068400000074],[106.30485390000007,3.231418100000042],[106.30505390000008,3.234152900000026]]],[[[106.23524990000004,3.229064100000073],[106.22662950000006,3.236260100000038],[106.226391,3.234444500000052],[106.229678,3.230786500000022],[106.22668830000003,3.228983800000037],[106.22163820000009,3.229009200000064],[106.22233120000004,3.22365590000004],[106.21961320000008,3.218711800000051],[106.21703040000006,3.217942400000027],[106.21475280000004,3.219276300000047],[106.20945880000005,3.230085700000075],[106.20754670000008,3.229761200000041],[106.20384140000004,3.225229400000046],[106.20046510000009,3.232363300000031],[106.19707530000005,3.232406900000058],[106.19485610000004,3.230745900000045],[106.19646940000007,3.22831780000007],[106.19733820000005,3.219780300000025],[106.20149250000009,3.213764600000047],[106.20138960000008,3.210021600000061],[106.20331740000006,3.205716500000051],[106.20238540000008,3.200820700000065],[106.20454350000006,3.200897300000065],[106.20562730000006,3.199237700000026],[106.20818830000007,3.189283100000068],[106.20672180000008,3.183754700000065],[106.208217,3.181054900000049],[106.20920780000006,3.168437],[106.20616580000006,3.163033400000074],[106.20702120000004,3.153257900000028],[106.20445210000008,3.146996800000068],[106.203774,3.138055800000075],[106.20661490000003,3.130749800000046],[106.21020670000007,3.126074100000039],[106.21073410000008,3.121973900000057],[106.21368350000006,3.118937100000039],[106.21635570000007,3.120617400000071],[106.22167330000008,3.131661600000029],[106.223545,3.131243500000039],[106.22286040000006,3.108673],[106.22481550000003,3.107403400000067],[106.22633680000007,3.11073870000007],[106.22901460000008,3.106482300000039],[106.23220620000006,3.105795300000068],[106.23170160000006,3.104033300000026],[106.23725450000006,3.095920400000068],[106.23962180000007,3.100751200000047],[106.23985090000008,3.108627],[106.24284720000009,3.105944600000043],[106.24445090000006,3.101124700000071],[106.24839520000006,3.105697400000054],[106.25016770000008,3.111355400000036],[106.24800970000007,3.118719400000032],[106.24853070000006,3.122452],[106.25572850000003,3.113709100000051],[106.25819870000004,3.113745],[106.25951320000007,3.111792800000046],[106.262424,3.112430600000039],[106.26055830000007,3.109087800000054],[106.26139910000006,3.100211700000045],[106.25960230000004,3.097485900000038],[106.25973950000008,3.094674700000041],[106.26547860000005,3.092144100000041],[106.268125,3.096512200000063],[106.27429730000006,3.100749800000074],[106.27497510000006,3.093561600000044],[106.27278950000004,3.08896210000006],[106.27310130000006,3.081287900000063],[106.27568050000008,3.077431300000057],[106.27900770000008,3.076805400000069],[106.27834430000007,3.080248800000049],[106.28242690000008,3.088521300000025],[106.28030260000008,3.095293200000071],[106.28405970000006,3.094480600000054],[106.28624460000009,3.100045200000068],[106.28891150000004,3.097884],[106.28913530000005,3.104112600000065],[106.28842970000005,3.105668500000036],[106.286683,3.104213200000061],[106.28593760000007,3.112346900000034],[106.28320910000008,3.120288600000038],[106.28180420000007,3.11813630000006],[106.28187310000004,3.112136300000031],[106.27960210000003,3.113854300000071],[106.27591290000004,3.106240400000047],[106.27653680000009,3.119904700000063],[106.27494660000008,3.120067],[106.27144690000006,3.115535100000045],[106.26916450000004,3.11484310000003],[106.26839490000003,3.117950500000063],[106.27396080000005,3.123297200000025],[106.27741060000005,3.124283200000036],[106.27648710000005,3.126552],[106.27967720000004,3.137977400000068],[106.28116150000005,3.13993720000002],[106.28363440000004,3.139716300000032],[106.28582670000009,3.143520300000034],[106.285401,3.148138800000027],[106.28828370000008,3.15074420000002],[106.29150040000007,3.161019200000055],[106.29060080000005,3.168310400000053],[106.28868120000004,3.169827800000064],[106.28802540000004,3.173854],[106.28919150000007,3.176565800000049],[106.28812840000006,3.180126600000051],[106.28647340000003,3.180485200000021],[106.28188730000005,3.171083800000076],[106.28019230000007,3.174453700000072],[106.27433390000004,3.170113900000047],[106.27326330000005,3.173604900000043],[106.275016,3.180352600000049],[106.27882390000008,3.180159300000071],[106.28243250000008,3.181932300000028],[106.28206050000006,3.187206],[106.27879370000005,3.190982900000051],[106.27791940000009,3.195418400000051],[106.27583980000009,3.195064600000023],[106.27520290000007,3.197966700000052],[106.27197570000004,3.197615800000051],[106.26586020000008,3.204141600000071],[106.26440810000008,3.201291600000047],[106.26234840000006,3.203278600000033],[106.26191830000005,3.206180500000073],[106.25985770000005,3.205272100000059],[106.25770940000007,3.20767520000004],[106.25813,3.215219600000069],[106.24853480000007,3.223386],[106.24562840000004,3.223845],[106.24387720000004,3.221757],[106.243169,3.222797600000035],[106.24285880000008,3.218896400000062],[106.24172780000004,3.220749600000033],[106.24169550000005,3.218482],[106.24055280000005,3.218810100000042],[106.23708820000007,3.223603],[106.23886560000005,3.228376500000024],[106.23773370000004,3.22955630000007],[106.23524990000004,3.229064100000073]]],[[[106.28463050000005,3.234505500000068],[106.28393150000005,3.236579100000029],[106.28336870000004,3.235381300000029],[106.28463050000005,3.234505500000068]]],[[[106.31552310000006,3.239936700000044],[106.31486540000009,3.241104200000052],[106.31604010000007,3.23586210000002],[106.31739810000005,3.238428200000044],[106.31679520000006,3.240276900000026],[106.31552310000006,3.239936700000044]]],[[[106.45276920000003,3.25129940000005],[106.445717,3.246064200000035],[106.44145460000004,3.247591800000066],[106.44147710000004,3.245469600000035],[106.43768810000006,3.240103800000043],[106.439627,3.238301800000045],[106.44129540000006,3.238922400000035],[106.440901,3.236519800000053],[106.44362230000007,3.23597170000005],[106.44461750000005,3.232308800000055],[106.44909040000005,3.233326900000066],[106.45178240000007,3.232220300000051],[106.45139340000009,3.228285600000049],[106.45629560000003,3.225835],[106.45826840000007,3.229682700000069],[106.45729690000007,3.233438700000022],[106.45588140000007,3.234698300000048],[106.45213630000006,3.23386540000007],[106.45401770000007,3.241621900000041],[106.45157730000005,3.242545500000062],[106.45276920000003,3.25129940000005]]],[[[106.44932270000004,3.251050300000031],[106.44943570000004,3.25203920000007],[106.44822670000008,3.250821200000075],[106.449038,3.249237600000072],[106.44932270000004,3.251050300000031]]],[[[106.30583310000009,3.239888800000074],[106.30775440000008,3.241066300000057],[106.30847070000004,3.246668700000043],[106.30605460000004,3.252724100000023],[106.30322720000004,3.242598600000065],[106.303914,3.240387600000076],[106.30583310000009,3.239888800000074]]],[[[106.451733,3.258541900000068],[106.44704310000009,3.25812030000003],[106.44446550000004,3.25180210000002],[106.44969060000005,3.253779200000054],[106.451733,3.258541900000068]]],[[[106.31064410000005,3.257719200000054],[106.30994060000006,3.261682200000052],[106.30897390000007,3.259896900000058],[106.31064410000005,3.257719200000054]]],[[[106.39083670000008,3.257901100000026],[106.39063090000008,3.263688100000024],[106.38861250000008,3.261979],[106.38916880000005,3.260022800000058],[106.38631740000005,3.257636400000024],[106.38621090000004,3.255848600000036],[106.39083670000008,3.257901100000026]]],[[[106.30077820000008,3.274104100000045],[106.29915220000004,3.278643600000066],[106.29734270000006,3.26958680000007],[106.29837520000007,3.268596100000025],[106.29722720000007,3.263056900000038],[106.29832760000005,3.25675160000003],[106.29566470000009,3.247489100000053],[106.29403650000006,3.246844500000066],[106.29561080000008,3.246149900000034],[106.293924,3.242742700000065],[106.29607050000004,3.240390300000058],[106.29633530000007,3.235559900000055],[106.30191490000004,3.245036200000072],[106.30554620000004,3.260215300000027],[106.30077820000008,3.274104100000045]]],[[[106.30579480000006,3.284091400000023],[106.30181410000006,3.285329400000023],[106.301394,3.279814600000066],[106.30622940000006,3.26840530000004],[106.30751460000005,3.271613800000068],[106.30586030000006,3.278471],[106.30690970000006,3.282760600000074],[106.30579480000006,3.284091400000023]]],[[[106.33263180000006,3.292776700000047],[106.33229190000009,3.295479100000023],[106.32893160000003,3.292554800000062],[106.33111740000004,3.29047120000007],[106.33291460000004,3.291484500000024],[106.33263180000006,3.292776700000047]]],[[[106.41717740000007,3.300998100000072],[106.41271820000009,3.297526300000072],[106.410851,3.288396900000066],[106.41171310000004,3.286029800000051],[106.40952810000005,3.283919100000048],[106.40886550000005,3.280297200000064],[106.40628680000003,3.278298900000038],[106.40693060000007,3.273599700000034],[106.41013290000006,3.275442100000021],[106.41266680000007,3.274178],[106.41184470000007,3.269970500000056],[106.41319890000005,3.269388900000024],[106.41854210000008,3.278264600000057],[106.41725350000007,3.282732800000076],[106.419303,3.290024],[106.42127260000007,3.291897500000061],[106.41653470000006,3.290515800000037],[106.41814130000006,3.292892900000027],[106.41537880000004,3.294989700000031],[106.41717740000007,3.300998100000072]]],[[[106.32868490000004,3.304466400000024],[106.32687120000008,3.302848],[106.32602180000004,3.292758500000048],[106.32822350000004,3.292701100000045],[106.32989150000009,3.303728100000058],[106.32868490000004,3.304466400000024]]],[[[106.20179430000007,3.306114300000047],[106.20028810000008,3.307545400000038],[106.19758740000009,3.305123800000047],[106.19388320000007,3.300701500000059],[106.19247120000006,3.296292],[106.19447130000003,3.291311400000041],[106.19744050000008,3.290671800000041],[106.19903270000003,3.288663300000053],[106.20168520000004,3.291772300000048],[106.20179430000007,3.306114300000047]]],[[[106.40893420000003,3.308032100000048],[106.40869920000006,3.312340400000039],[106.40621030000005,3.309125100000074],[106.40637060000006,3.306880400000068],[106.40509460000004,3.306083],[106.40614440000007,3.302451500000075],[106.40435520000005,3.300888400000076],[106.40128230000005,3.304625200000032],[106.39963710000006,3.304737],[106.40041410000003,3.308176600000024],[106.39930450000008,3.309492],[106.39673340000007,3.309791300000029],[106.39371170000004,3.307397800000047],[106.39084250000008,3.300004400000034],[106.39196080000005,3.297090500000024],[106.39517590000008,3.295153400000061],[106.39458060000004,3.290205400000048],[106.40034930000007,3.293558500000074],[106.40087750000004,3.297236500000054],[106.41139110000006,3.299512600000071],[106.41324460000004,3.304944100000057],[106.41289860000006,3.306701700000076],[106.41117750000006,3.307087300000035],[106.411705,3.310272600000076],[106.40893420000003,3.308032100000048]]],[[[106.38987,3.312911100000065],[106.39020680000004,3.316665],[106.38484810000006,3.307435100000021],[106.38582840000004,3.305513800000028],[106.38987,3.312911100000065]]],[[[106.32572740000006,3.316739],[106.32414750000004,3.316443700000036],[106.32233010000004,3.312803700000075],[106.32379740000005,3.306323400000053],[106.32524580000006,3.305098600000065],[106.32715920000004,3.313992900000073],[106.32572740000006,3.316739]]],[[[106.32013160000008,3.314996200000053],[106.32207890000007,3.317433300000062],[106.32028760000009,3.317095300000062],[106.32013160000008,3.314996200000053]]],[[[106.30732360000007,3.320620600000041],[106.306531,3.321800100000075],[106.30396920000004,3.318982700000049],[106.30215640000006,3.302916900000071],[106.30335320000006,3.307193],[106.30653060000009,3.30479820000005],[106.30879,3.309434700000054],[106.30844290000005,3.312612700000045],[106.31022940000008,3.315834400000028],[106.30818830000004,3.315614500000038],[106.30732360000007,3.320620600000041]]],[[[106.04750130000008,3.337821400000053],[106.04357370000008,3.339171400000055],[106.04289840000007,3.33390090000006],[106.04671150000007,3.329792],[106.05229110000005,3.32853],[106.052829,3.330548100000044],[106.05135870000004,3.333465700000033],[106.05287890000005,3.335505300000023],[106.04750130000008,3.337821400000053]]],[[[106.38944770000006,3.337142800000038],[106.38991450000009,3.342489700000044],[106.38854150000009,3.343438500000047],[106.38744290000005,3.34015050000005],[106.38944770000006,3.337142800000038]]],[[[106.29931720000008,3.348355100000049],[106.29967190000008,3.350044],[106.298489,3.350171800000055],[106.29931720000008,3.348355100000049]]],[[[106.30025470000004,3.353242900000055],[106.29864130000004,3.351927100000069],[106.29923960000008,3.35069],[106.30098,3.351924],[106.30025470000004,3.353242900000055]]],[[[106.17513860000008,3.350972400000046],[106.17685090000003,3.354658800000038],[106.17510110000006,3.35632060000006],[106.17403850000005,3.352145300000075],[106.17513860000008,3.350972400000046]]],[[[106.30372520000009,3.337776400000052],[106.30667650000004,3.347336],[106.30562960000009,3.358131800000024],[106.30163980000003,3.354594100000043],[106.30073810000005,3.347895400000027],[106.30218390000005,3.345241100000067],[106.30110270000006,3.34395980000005],[106.301713,3.338223200000073],[106.30372520000009,3.337776400000052]]],[[[106.315685,3.365733],[106.31383350000004,3.362170700000036],[106.31512060000006,3.355751500000054],[106.31984120000004,3.35733620000002],[106.31799780000006,3.36091330000005],[106.31878740000008,3.362851],[106.315685,3.365733]]],[[[106.32660530000004,3.374109100000055],[106.32310280000007,3.372346700000037],[106.32382480000007,3.368805100000031],[106.32204910000007,3.365780800000039],[106.32527530000004,3.365578800000037],[106.32660530000004,3.374109100000055]]],[[[106.26351190000008,3.374691600000062],[106.26235220000007,3.376535],[106.26150840000008,3.37471],[106.26351190000008,3.374691600000062]]],[[[106.31674170000008,3.379455800000073],[106.31529920000008,3.380111600000021],[106.31637790000008,3.36851820000004],[106.31833460000007,3.371684800000025],[106.31674170000008,3.379455800000073]]],[[[106.35134970000007,3.380505800000037],[106.34669620000005,3.381357200000025],[106.346169,3.380255800000043],[106.34868050000006,3.372040900000059],[106.35024360000006,3.373507700000062],[106.35134970000007,3.380505800000037]]],[[[106.45579730000009,3.382184800000061],[106.45270310000006,3.380771],[106.45001180000008,3.381436800000074],[106.44594770000003,3.378575200000057],[106.45082310000004,3.370425500000067],[106.45547270000009,3.378143],[106.45885340000007,3.378799800000024],[106.46004810000005,3.380470400000036],[106.45579730000009,3.382184800000061]]],[[[106.46414620000007,3.381857700000069],[106.46508120000004,3.384213600000066],[106.46330120000005,3.384459900000024],[106.46264220000006,3.381759200000033],[106.46414620000007,3.381857700000069]]],[[[106.28632410000006,3.384801],[106.28080210000007,3.384802500000035],[106.27605280000006,3.381999600000029],[106.27092980000003,3.382594600000061],[106.26900280000007,3.380951500000037],[106.26941680000004,3.378773700000067],[106.26728350000008,3.374929400000042],[106.26994620000005,3.36954350000002],[106.26893490000003,3.362624],[106.26678560000005,3.365183500000057],[106.26456430000007,3.36222280000004],[106.26640450000008,3.356105900000045],[106.27057010000004,3.356304900000055],[106.27075360000003,3.353866800000048],[106.268492,3.352278600000034],[106.26864930000005,3.349174300000072],[106.26675560000007,3.347314],[106.26604090000006,3.343973400000039],[106.26721920000006,3.340954500000066],[106.26476740000004,3.336097500000051],[106.26424820000005,3.338754800000061],[106.261508,3.338433800000075],[106.26356390000007,3.340706500000067],[106.26327480000003,3.343760600000053],[106.25985830000008,3.344416900000056],[106.26111810000003,3.346879300000069],[106.25908280000004,3.346138],[106.25938360000004,3.348953100000074],[106.26154850000006,3.348844],[106.26067230000007,3.359526900000048],[106.258536,3.35769190000002],[106.25715870000005,3.347651600000063],[106.25570320000008,3.347878500000036],[106.25451390000006,3.352307300000064],[106.25088370000009,3.3518],[106.24580810000003,3.34693980000003],[106.24396670000004,3.343138700000054],[106.24218070000006,3.338884600000029],[106.24124010000008,3.323767400000065],[106.23730950000004,3.318183100000056],[106.23486370000006,3.303161],[106.236012,3.301059200000054],[106.23947250000003,3.300308200000075],[106.23859890000006,3.292989100000057],[106.24554920000008,3.292152],[106.24565940000008,3.290701700000056],[106.24741030000007,3.290491300000042],[106.23971260000008,3.281565700000044],[106.23722810000004,3.276280700000029],[106.24078730000008,3.269999600000062],[106.23930030000008,3.265304100000037],[106.23658190000003,3.263064300000053],[106.23471680000006,3.265832300000056],[106.23264550000005,3.266072400000041],[106.22732690000004,3.260092600000064],[106.23163340000008,3.255831600000022],[106.23484040000005,3.256007900000043],[106.24010820000007,3.251677800000039],[106.24048960000005,3.247324400000025],[106.24179820000006,3.249135600000045],[106.24357760000004,3.241423900000029],[106.24548920000007,3.242934300000059],[106.24629610000005,3.241483],[106.24905480000007,3.241728400000056],[106.24978590000006,3.243810300000064],[106.24972450000007,3.238524900000073],[106.25947170000006,3.235840300000064],[106.26156530000009,3.23242730000004],[106.265616,3.230350800000053],[106.26627210000004,3.227339900000061],[106.269381,3.231052700000021],[106.27147650000006,3.228849400000058],[106.27372730000008,3.235258100000067],[106.27540420000008,3.231827900000042],[106.27679840000008,3.232476200000065],[106.27790530000004,3.230659500000058],[106.27676880000007,3.227191700000049],[106.279396,3.228857400000038],[106.27965040000004,3.227035300000068],[106.28242170000004,3.227225800000042],[106.28406790000008,3.225486],[106.28473060000005,3.232195100000069],[106.28125090000009,3.235710200000028],[106.28306790000005,3.236141500000031],[106.28301990000006,3.237504300000069],[106.282024,3.237043],[106.28361440000003,3.239818600000035],[106.28086350000007,3.244541100000049],[106.28124690000004,3.247831800000029],[106.27819640000007,3.251765100000057],[106.27849,3.253205900000069],[106.27452980000004,3.253949300000045],[106.27301250000005,3.249885400000039],[106.26577150000008,3.258208100000047],[106.26516910000004,3.260400400000037],[106.26623840000008,3.259867700000029],[106.26785960000007,3.263051500000074],[106.26442670000006,3.269618500000036],[106.26350140000005,3.276821300000051],[106.26474650000006,3.287870500000054],[106.26243970000007,3.288989500000071],[106.26012010000005,3.285533],[106.25913290000005,3.287059500000055],[106.26148830000005,3.290335300000038],[106.26157860000006,3.29293210000003],[106.26424150000008,3.293172500000026],[106.26505510000004,3.295247800000027],[106.27039570000005,3.290030100000024],[106.27138420000006,3.297874200000024],[106.27357630000006,3.298992700000042],[106.27445570000003,3.295878600000037],[106.27306040000008,3.294340200000022],[106.27280760000008,3.285835800000029],[106.27643640000008,3.275456700000063],[106.27953,3.274769],[106.28008660000006,3.271683800000062],[106.27809930000006,3.269996],[106.27759690000005,3.266186400000038],[106.27592450000009,3.266994900000043],[106.27521950000005,3.265345600000046],[106.277231,3.261951700000054],[106.27918390000008,3.261630400000058],[106.28001230000007,3.25690910000003],[106.28175320000008,3.256225500000028],[106.28461780000004,3.251057500000059],[106.28706010000008,3.252080200000023],[106.28869490000005,3.251140500000076],[106.28931260000007,3.255856],[106.29242250000004,3.258813100000054],[106.29591190000008,3.276053800000057],[106.29438910000005,3.27712740000004],[106.295528,3.281468400000051],[106.29189850000006,3.291180200000042],[106.29141390000007,3.301748800000041],[106.28882220000008,3.305406300000072],[106.29158320000005,3.308312100000023],[106.29032580000006,3.30773240000002],[106.29050240000004,3.30962],[106.29448230000008,3.30646280000002],[106.29314430000005,3.310893600000043],[106.29659740000005,3.315382500000055],[106.29604020000005,3.317411600000071],[106.29372760000007,3.318639800000028],[106.29637860000008,3.32388080000004],[106.29834220000004,3.335335800000053],[106.29613350000005,3.345219400000076],[106.29247570000007,3.345405500000027],[106.29261980000007,3.349294600000064],[106.29509860000007,3.349728600000049],[106.29559180000007,3.351084400000047],[106.29545250000007,3.358468600000037],[106.298547,3.354380900000024],[106.30213970000005,3.357733500000052],[106.30512980000009,3.363950500000044],[106.30848240000006,3.366372400000046],[106.30566730000004,3.375014800000031],[106.30135140000004,3.37632080000003],[106.30292260000004,3.379735100000062],[106.30207790000009,3.380836400000021],[106.29835510000004,3.381348500000058],[106.29672980000004,3.380200500000058],[106.29313,3.38457180000006],[106.29064460000006,3.384470300000032],[106.28922930000004,3.382196900000054],[106.28632410000006,3.384801]]],[[[106.23174930000005,3.385156],[106.230322,3.386547700000051],[106.22794040000008,3.384572700000035],[106.22720770000006,3.379114300000026],[106.23069070000008,3.378885300000036],[106.23374770000004,3.380714800000021],[106.23371090000006,3.383692300000064],[106.23174930000005,3.385156]]],[[[106.24773040000008,3.385992800000054],[106.24799920000004,3.388307],[106.24584760000005,3.387993900000026],[106.24561210000007,3.385763900000029],[106.24773040000008,3.385992800000054]]],[[[106.22789050000006,3.394347],[106.224392,3.394907300000057],[106.21418960000005,3.390045300000054],[106.20476410000003,3.382646400000056],[106.20009880000003,3.376253800000029],[106.20057130000004,3.368650700000046],[106.20503790000004,3.365958],[106.20426920000006,3.358755300000041],[106.20533190000003,3.352834400000063],[106.20167870000006,3.346276700000033],[106.19476740000005,3.34693290000007],[106.19198540000008,3.344974200000024],[106.19073830000008,3.341066400000045],[106.18637890000008,3.344388800000047],[106.182019,3.338720100000046],[106.17924720000008,3.339405300000067],[106.17205760000007,3.333024200000068],[106.17502920000004,3.323688600000025],[106.17498330000006,3.317585],[106.17865810000006,3.314755700000035],[106.17942290000008,3.312424800000031],[106.17977540000004,3.31366330000003],[106.18145720000007,3.313447900000028],[106.18205240000009,3.308396800000025],[106.18511430000007,3.306018],[106.18513050000007,3.301926],[106.18821820000005,3.300018700000066],[106.19088360000006,3.300708300000053],[106.19586050000004,3.306633800000043],[106.198272,3.306078300000024],[106.19751040000006,3.31283970000004],[106.20069290000004,3.318891800000074],[106.20180020000004,3.326042],[106.20404870000004,3.322486600000047],[106.20566380000008,3.323096400000054],[106.20373690000008,3.31302160000007],[106.20697480000007,3.304566800000032],[106.20989330000003,3.30202920000005],[106.21034290000006,3.299172800000065],[106.21236610000005,3.300906300000065],[106.21296030000008,3.297864200000049],[106.21605370000009,3.300574400000073],[106.21639080000006,3.297178700000075],[106.21858850000007,3.297434600000031],[106.22139820000007,3.306851400000028],[106.22695310000006,3.31270040000004],[106.22728680000006,3.319604600000048],[106.23554940000008,3.332201500000053],[106.23595350000005,3.337347900000054],[106.23925140000006,3.343918500000029],[106.23583250000007,3.347897200000034],[106.23530980000004,3.35062860000005],[106.23215710000005,3.351877400000035],[106.22738170000008,3.344839300000046],[106.22465180000006,3.344879900000024],[106.22381550000006,3.346460600000057],[106.22556110000005,3.351547100000062],[106.22387050000003,3.355501900000036],[106.22223550000007,3.356117100000063],[106.22265520000008,3.358690700000068],[106.215285,3.359905600000047],[106.21557740000009,3.362974500000064],[106.21963,3.365021600000034],[106.221387,3.369882200000063],[106.22089850000003,3.371591200000069],[106.21835970000006,3.372395300000051],[106.21821730000005,3.374192900000025],[106.21903770000006,3.376729400000045],[106.22170260000007,3.377594400000021],[106.22277470000006,3.379553200000032],[106.22222320000009,3.383724700000073],[106.22448040000006,3.387170900000058],[106.22858340000005,3.388835],[106.22789050000006,3.394347]]],[[[106.44128940000007,3.394694100000038],[106.43940590000005,3.39586410000004],[106.43703750000009,3.39343260000004],[106.43348430000009,3.394758100000047],[106.43758490000005,3.389907600000072],[106.43576010000004,3.381444300000055],[106.42808220000006,3.37622],[106.42756170000007,3.373285500000065],[106.43471380000005,3.374742500000025],[106.43961150000007,3.379075400000033],[106.44365770000007,3.379755200000034],[106.44182940000007,3.383719500000041],[106.443049,3.38753550000007],[106.44095990000005,3.389594],[106.44128940000007,3.394694100000038]]],[[[106.22986270000007,3.395970900000066],[106.22921660000009,3.399682800000051],[106.22776940000006,3.399391],[106.22709370000007,3.397958],[106.22986270000007,3.395970900000066]]],[[[106.451705,3.402050400000064],[106.45193570000004,3.403011900000024],[106.44934290000003,3.401881200000048],[106.44543150000004,3.394491],[106.45191920000008,3.399669],[106.451705,3.402050400000064]]],[[[106.15217520000004,3.396078100000068],[106.15270050000004,3.402950500000031],[106.14981940000007,3.405010900000036],[106.146543,3.403754400000025],[106.14528640000009,3.400132300000053],[106.14564250000006,3.389778800000045],[106.14687,3.389995400000032],[106.14922780000006,3.395804800000064],[106.15217520000004,3.396078100000068]]],[[[106.27817730000004,3.402495800000054],[106.27674720000005,3.405549],[106.27340940000005,3.401079100000061],[106.27305580000007,3.396843800000056],[106.27036790000005,3.398767900000053],[106.26841790000009,3.398027900000045],[106.26880760000006,3.394561400000043],[106.27159780000005,3.393441500000051],[106.272462,3.390443600000026],[106.27445110000008,3.390576800000076],[106.27660490000005,3.38805050000002],[106.28710050000007,3.386682500000063],[106.28901870000004,3.388842900000043],[106.29141860000004,3.388193800000067],[106.29177620000007,3.390537800000061],[106.28973280000008,3.391184900000042],[106.28903860000008,3.394092],[106.28215360000007,3.399946400000033],[106.28172910000006,3.401873100000046],[106.27817730000004,3.402495800000054]]],[[[106.34469520000005,3.417283],[106.34168150000005,3.416925900000024],[106.34068770000005,3.411909900000069],[106.33819680000005,3.409748100000058],[106.335327,3.409686200000067],[106.32973780000003,3.405188700000053],[106.33371830000004,3.400991600000054],[106.33258740000008,3.394531200000074],[106.33417660000003,3.391441800000052],[106.33368680000007,3.384843500000045],[106.33249260000008,3.383843800000022],[106.33185830000008,3.384869700000024],[106.330756,3.383173500000055],[106.32874320000008,3.37496770000007],[106.33023750000007,3.371207900000059],[106.32943440000008,3.36926150000005],[106.33174060000005,3.368588200000033],[106.32943530000006,3.359984900000029],[106.32703890000005,3.357812],[106.32715320000005,3.35503280000006],[106.32401160000006,3.355716200000074],[106.32426720000007,3.353930800000057],[106.32140410000005,3.349357500000053],[106.31794710000008,3.347498200000075],[106.316468,3.343813900000043],[106.31700720000003,3.342062800000065],[106.31963680000007,3.342626900000027],[106.32019180000009,3.340319900000054],[106.32372760000004,3.33783150000005],[106.320152,3.330390400000056],[106.31639220000005,3.329688300000043],[106.31899070000009,3.323143600000037],[106.32167210000006,3.324378],[106.32551450000005,3.332949500000041],[106.32615360000005,3.340252100000043],[106.32748010000006,3.341051400000026],[106.33130910000006,3.33529290000007],[106.33130450000004,3.342821],[106.33444770000006,3.344058500000074],[106.338387,3.351682600000061],[106.33915190000005,3.357154800000046],[106.33754210000006,3.364475800000037],[106.33830510000007,3.367665800000054],[106.34036660000004,3.369127500000047],[106.34041170000006,3.372770400000036],[106.34252940000005,3.375704300000052],[106.34119710000004,3.378653200000031],[106.34281480000004,3.380255100000056],[106.34089770000008,3.390107900000032],[106.33958290000004,3.390705500000024],[106.34112870000007,3.396984400000065],[106.34518640000005,3.39988],[106.34309120000006,3.402488800000071],[106.34358370000007,3.408704200000045],[106.34652520000009,3.412815200000068],[106.34469520000005,3.417283]]]]},"properties":{"shapeName":"Kepulauan Anambas","shapeISO":"","shapeID":"22746128B1863309621691","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[134.5020366000001,-7.069645299999934],[134.49695910000003,-7.064746799999966],[134.49086230000012,-7.062432199999932],[134.4846672000001,-7.065472],[134.48346230000004,-7.068701899999951],[134.48564280000005,-7.071095499999956],[134.4758637000001,-7.086880599999972],[134.4917577000001,-7.088744599999927],[134.49480440000002,-7.0916099],[134.50201460000005,-7.090140599999927],[134.51827520000006,-7.095143099999973],[134.52215260000003,-7.099301499999967],[134.52521590000003,-7.086287399999947],[134.5323803000001,-7.083385299999975],[134.53391020000004,-7.079372],[134.53262330000007,-7.072446599999978],[134.52616080000007,-7.0659776],[134.51451840000004,-7.064119199999936],[134.50499480000008,-7.068817499999966],[134.50639460000002,-7.0702123],[134.5020366000001,-7.069645299999934]]],[[[134.68502650000005,-7.022648699999934],[134.68725490000008,-7.019314099999974],[134.68678650000004,-7.015806299999952],[134.6830926,-7.012341699999979],[134.6835599000001,-7.007875899999931],[134.681596,-7.0049548],[134.6777853000001,-7.003567399999952],[134.67420330000004,-7.005526799999927],[134.6698762000001,-7.011250599999926],[134.6696564,-7.016212399999972],[134.67361470000003,-7.022581099999968],[134.6827376000001,-7.024805199999946],[134.68502650000005,-7.022648699999934]]],[[[134.20010890000003,-6.943801399999927],[134.20060590000003,-6.941938],[134.19899320000002,-6.942391099999952],[134.20010890000003,-6.943801399999927]]],[[[134.51209230000006,-6.930077299999937],[134.5097826000001,-6.930074899999966],[134.50642990000006,-6.933533499999953],[134.50250530000005,-6.931683],[134.49511010000003,-6.935598899999945],[134.4952237000001,-6.937445399999945],[134.49095130000012,-6.936863899999935],[134.48921510000002,-6.940439499999968],[134.49101040000005,-6.952814799999942],[134.49263530000007,-6.953924399999948],[134.51192980000008,-6.950990399999966],[134.51614070000005,-6.953136599999937],[134.5286357000001,-6.949604],[134.52996860000007,-6.947094199999981],[134.52058310000007,-6.945681499999978],[134.51612180000006,-6.942198699999949],[134.51209230000006,-6.930077299999937]]],[[[134.5440523000001,-6.905230499999959],[134.54087390000007,-6.905670599999951],[134.52770920000012,-6.915037699999971],[134.5240913,-6.911415],[134.52416860000005,-6.908017699999959],[134.522987,-6.907130199999926],[134.52068680000002,-6.916212399999949],[134.5297005000001,-6.919323399999939],[134.540869,-6.910766799999976],[134.54855540000005,-6.910700299999974],[134.5440523000001,-6.905230499999959]]],[[[134.7032464,-6.870362599999964],[134.69928530000004,-6.8640641],[134.69520680000005,-6.862643399999968],[134.69331850000003,-6.857028899999932],[134.68681430000004,-6.858501899999965],[134.6887035000001,-6.862580199999968],[134.69677750000005,-6.868200599999966],[134.69836290000012,-6.871952299999975],[134.715316,-6.875987299999963],[134.7459258,-6.875908599999946],[134.751426,-6.872543499999949],[134.75272930000006,-6.867403499999966],[134.74806230000002,-6.860606],[134.7440987000001,-6.865271899999925],[134.74403860000007,-6.866926299999932],[134.74628430000007,-6.868700099999955],[134.74303190000012,-6.870116499999938],[134.73044030000005,-6.867450599999927],[134.7239948,-6.8696923],[134.7203909000001,-6.865317699999935],[134.71826260000012,-6.865080099999943],[134.7092583000001,-6.869519099999934],[134.7032464,-6.870362599999964]]],[[[134.75899040000002,-6.864052499999957],[134.7600585,-6.853660699999978],[134.7582959,-6.849266399999976],[134.75533810000002,-6.852869299999952],[134.7568278000001,-6.859290899999962],[134.7553,-6.869679699999949],[134.75899040000002,-6.864052499999957]]],[[[134.64364440000008,-6.849688299999968],[134.64661180000007,-6.8465114],[134.642892,-6.843826299999932],[134.64025960000004,-6.848526299999946],[134.64227230000006,-6.850396299999943],[134.64364440000008,-6.849688299999968]]],[[[134.68237280000005,-6.853749199999925],[134.68052980000004,-6.846939099999929],[134.67648960000008,-6.845320699999945],[134.66124920000004,-6.843579199999965],[134.66268860000002,-6.849691],[134.66187990000003,-6.853882399999975],[134.65107790000002,-6.857882099999927],[134.64922750000005,-6.861804499999948],[134.64622420000012,-6.863187099999948],[134.64656920000004,-6.865149299999928],[134.64437420000002,-6.866532499999948],[134.640798,-6.862029099999972],[134.64611050000008,-6.860879],[134.647269,-6.855686599999956],[134.6462309000001,-6.854185599999937],[134.63976250000007,-6.857065899999952],[134.63630100000012,-6.853716499999962],[134.632605,-6.854983199999936],[134.63306250000005,-6.860753799999941],[134.6351009000001,-6.864818799999966],[134.63328730000012,-6.868716799999959],[134.6261257000001,-6.871711799999957],[134.6228635000001,-6.877555099999938],[134.6047526000001,-6.884735299999932],[134.60013790000005,-6.879653699999949],[134.59471210000004,-6.877918099999931],[134.59055780000006,-6.874683299999958],[134.58674560000009,-6.876526399999932],[134.58523850000006,-6.883334],[134.60539240000003,-6.9009303],[134.6058925000001,-6.902739299999951],[134.6149038000001,-6.897899699999925],[134.64402560000008,-6.869532799999945],[134.6563853,-6.8636562],[134.659275,-6.859503599999925],[134.66562740000006,-6.857315399999948],[134.68225570000004,-6.856172699999945],[134.68410390000008,-6.855250599999977],[134.68237280000005,-6.853749199999925]]],[[[134.48266080000008,-6.8356482],[134.48252150000008,-6.8320799],[134.47878530000003,-6.830651699999976],[134.4802611,-6.834290499999952],[134.48266080000008,-6.8356482]]],[[[134.5429478000001,-6.7498497],[134.53365530000008,-6.747599399999956],[134.53099680000003,-6.751290799999936],[134.52297410000006,-6.750886899999955],[134.5196677,-6.752272],[134.51686440000003,-6.759150599999941],[134.5224154000001,-6.760899499999937],[134.5119055,-6.770327899999927],[134.50942350000003,-6.778282],[134.51124890000006,-6.781509399999948],[134.51329070000008,-6.783339299999966],[134.5228052000001,-6.783120799999949],[134.52684740000007,-6.779697],[134.53448680000008,-6.777231399999948],[134.53556560000004,-6.773899299999925],[134.54299330000003,-6.767670099999975],[134.5443951000001,-6.763908099999981],[134.55300550000004,-6.7578949],[134.5524749000001,-6.750045299999954],[134.55075440000007,-6.749613599999975],[134.54784840000002,-6.751761399999964],[134.5429478000001,-6.7498497]]],[[[134.41229250000004,-6.736158099999955],[134.41453120000006,-6.734784599999955],[134.4149671,-6.730054199999927],[134.41333280000003,-6.729622199999937],[134.411867,-6.732200899999953],[134.4108275000001,-6.738048699999979],[134.41229250000004,-6.736158099999955]]],[[[134.44407810000007,-6.726278799999932],[134.44730980000008,-6.724058499999956],[134.44721130000005,-6.719717599999967],[134.444159,-6.718244],[134.439422,-6.718991899999935],[134.44006190000005,-6.724193799999966],[134.44196460000012,-6.727060899999969],[134.44407810000007,-6.726278799999932]]],[[[134.51150230000007,-6.7164593],[134.5069225000001,-6.715880899999945],[134.50181940000004,-6.719809599999962],[134.4984597,-6.718596499999933],[134.49375390000012,-6.719129299999963],[134.49186440000005,-6.726250599999958],[134.48823040000002,-6.730144399999972],[134.48741930000006,-6.734444399999973],[134.4784495,-6.742682599999966],[134.47478730000012,-6.756277699999941],[134.47597740000003,-6.760725599999944],[134.48644830000012,-6.762802099999931],[134.49196830000005,-6.755550199999959],[134.504874,-6.756773099999975],[134.50635540000007,-6.754355399999952],[134.5093845,-6.756497199999956],[134.51751600000011,-6.7528881],[134.51819010000008,-6.751007199999947],[134.52867830000002,-6.749539],[134.5294265000001,-6.747326899999962],[134.52721410000004,-6.734350199999938],[134.51238490000003,-6.730400599999939],[134.51104220000002,-6.727792799999975],[134.51364890000002,-6.720896699999969],[134.51150230000007,-6.7164593]]],[[[134.4710722000001,-6.704737699999953],[134.4725912,-6.700693899999976],[134.47032250000007,-6.697855599999968],[134.46682050000004,-6.702673499999946],[134.46824990000005,-6.705078699999945],[134.4710722000001,-6.704737699999953]]],[[[134.49476,-6.694715899999949],[134.49566660000005,-6.683224899999971],[134.493122,-6.681226699999968],[134.4852816,-6.6865113],[134.4800997000001,-6.694562899999937],[134.47727720000012,-6.695041599999968],[134.47624310000003,-6.696623299999942],[134.47335310000005,-6.695932],[134.47369430000003,-6.698684899999932],[134.480845,-6.705780299999958],[134.4805669000001,-6.708395],[134.48204350000003,-6.709681399999965],[134.48703910000006,-6.706337399999938],[134.49476,-6.694715899999949]]],[[[134.7764539000001,-6.664621],[134.77628460000005,-6.662750099999926],[134.774073,-6.663429399999927],[134.7739232,-6.664495],[134.7764539000001,-6.664621]]],[[[134.52806340000006,-6.6900654],[134.52387670000007,-6.675445199999956],[134.52119160000007,-6.671914499999957],[134.5185034000001,-6.671575899999937],[134.5164916000001,-6.666869799999972],[134.5086473,-6.660642199999927],[134.50372130000005,-6.667025199999955],[134.50153010000008,-6.673743],[134.50185220000003,-6.687519599999973],[134.50369460000002,-6.690105299999971],[134.49949930000002,-6.691176299999938],[134.4908818,-6.7047151],[134.49324650000005,-6.706007799999952],[134.49819520000005,-6.704507599999943],[134.5011618000001,-6.705495099999951],[134.50808270000005,-6.711291399999936],[134.51006230000007,-6.711216199999967],[134.52200760000005,-6.696779699999979],[134.52637920000006,-6.694095899999979],[134.52806340000006,-6.6900654]]],[[[134.53077610000003,-6.661592299999938],[134.53163970000003,-6.656917699999951],[134.5306518000001,-6.655948299999977],[134.5290771000001,-6.656673199999943],[134.52877020000005,-6.661091599999963],[134.53077610000003,-6.661592299999938]]],[[[134.7754605,-6.602679799999976],[134.7705628000001,-6.601589099999956],[134.7691463000001,-6.604853899999966],[134.76675120000004,-6.605614699999933],[134.76620790000004,-6.603546299999948],[134.7591758000001,-6.605539],[134.75551360000009,-6.607967],[134.7562765,-6.614135799999929],[134.7627765000001,-6.621818799999971],[134.7623033000001,-6.633325299999967],[134.7645311000001,-6.634850699999959],[134.76989450000008,-6.634460499999932],[134.77131020000002,-6.633155],[134.7827364000001,-6.641650199999958],[134.787358,-6.640557399999977],[134.79074550000007,-6.637320299999942],[134.79677270000002,-6.635153099999968],[134.79648290000011,-6.6312927],[134.79471290000004,-6.627413099999956],[134.7899675000001,-6.6248762],[134.78946410000003,-6.620667699999956],[134.787633,-6.619320099999925],[134.78549680000003,-6.620328099999938],[134.7813923000001,-6.6169367],[134.7754605,-6.602679799999976]]],[[[134.59245040000008,-6.628911799999969],[134.59517510000012,-6.624778],[134.60338360000003,-6.618706699999962],[134.60193130000005,-6.615640399999961],[134.60659590000012,-6.604192],[134.601837,-6.598838199999932],[134.59446060000005,-6.603359199999943],[134.58720330000006,-6.604192],[134.58292030000007,-6.610140699999931],[134.58309670000006,-6.619652299999927],[134.58766560000004,-6.623139099999946],[134.58907580000005,-6.629017899999951],[134.59245040000008,-6.628911799999969]]],[[[134.78747540000006,-6.6026394],[134.78531810000004,-6.5974834],[134.7835073000001,-6.596298399999966],[134.77967390000003,-6.600755099999958],[134.78343470000004,-6.603194899999949],[134.78747540000006,-6.6026394]]],[[[134.7588796000001,-6.587790699999971],[134.75945990000002,-6.586230599999965],[134.757989,-6.585605699999974],[134.75749770000004,-6.587255],[134.7588796000001,-6.587790699999971]]],[[[134.7312776000001,-6.584045199999935],[134.72812080000006,-6.5846965],[134.7295339000001,-6.588071499999955],[134.7370409,-6.594606399999975],[134.74128550000012,-6.595479299999965],[134.73769570000002,-6.591341299999954],[134.73563060000004,-6.585680199999956],[134.7312776000001,-6.584045199999935]]],[[[134.73471790000008,-6.599610299999938],[134.72920280000005,-6.596561399999928],[134.72801160000006,-6.585349599999972],[134.70948010000006,-6.5783304],[134.70308670000009,-6.578650899999957],[134.6993788000001,-6.580560099999957],[134.69371230000002,-6.587329],[134.694721,-6.5892049],[134.68675990000008,-6.591967],[134.67940670000007,-6.624827],[134.6726761000001,-6.630064899999979],[134.67623140000012,-6.635176599999966],[134.6760779000001,-6.641154799999981],[134.67353470000012,-6.647154299999954],[134.67430880000006,-6.650809199999969],[134.6718979000001,-6.660293499999966],[134.67260140000008,-6.662271799999928],[134.6661285,-6.6758854],[134.6454146000001,-6.704404199999942],[134.63326910000012,-6.706955099999959],[134.62751660000004,-6.710334499999931],[134.6263417,-6.715672699999971],[134.62829480000005,-6.719382],[134.636055,-6.721593499999926],[134.63561830000003,-6.726642099999935],[134.6307005000001,-6.7420739],[134.62795630000005,-6.745389699999976],[134.62838780000004,-6.747265299999981],[134.62333380000007,-6.751589199999955],[134.623185,-6.757359299999962],[134.62457440000003,-6.759026499999948],[134.62780280000004,-6.757362799999953],[134.63529870000002,-6.757119299999943],[134.64136640000004,-6.758959799999957],[134.64987150000002,-6.771516299999973],[134.6508774,-6.777431599999943],[134.65376220000007,-6.779453199999978],[134.66112450000003,-6.7761405],[134.66530950000003,-6.776287699999955],[134.67353140000012,-6.782063499999936],[134.676131,-6.779180099999962],[134.68493660000001,-6.775291],[134.68696440000008,-6.763896],[134.69014090000007,-6.761157199999957],[134.6927419000001,-6.755677],[134.69158860000005,-6.753801],[134.6948774000001,-6.745422299999973],[134.70186590000003,-6.736532599999975],[134.70626040000002,-6.735496],[134.71117370000002,-6.730091],[134.7116009,-6.725606399999947],[134.7057721000001,-6.722710099999972],[134.70687070000008,-6.719040299999961],[134.7080655000001,-6.722038],[134.7106351000001,-6.721586299999956],[134.71370660000002,-6.715617599999973],[134.72539480000012,-6.705119499999967],[134.73812050000004,-6.7013697],[134.73874610000007,-6.698326499999951],[134.73621320000007,-6.687471799999969],[134.7385935000001,-6.682149399999957],[134.73757120000005,-6.671083899999928],[134.74037880000003,-6.6676087],[134.73839380000004,-6.6602049],[134.73914290000005,-6.647387899999956],[134.7449259000001,-6.638425299999938],[134.75669040000002,-6.630748199999971],[134.76108220000003,-6.623789399999964],[134.74977,-6.606694899999979],[134.7401946000001,-6.6001592],[134.73471790000008,-6.599610299999938]]],[[[134.7634386000001,-6.563494799999944],[134.76316940000004,-6.567061299999978],[134.76544400000012,-6.565145299999926],[134.7634386000001,-6.563494799999944]]],[[[134.73124380000002,-6.567546899999968],[134.7350987000001,-6.560656799999947],[134.7326686,-6.556398599999966],[134.724116,-6.55193],[134.7226207000001,-6.544945299999938],[134.7170661,-6.5472681],[134.70202130000007,-6.561660099999926],[134.70569870000008,-6.562570899999969],[134.71093230000008,-6.5667833],[134.7259715,-6.571192799999949],[134.73124380000002,-6.567546899999968]]],[[[134.21625730000005,-6.524913799999979],[134.2170158,-6.520654599999943],[134.2110322000001,-6.526660899999968],[134.21625730000005,-6.524913799999979]]],[[[134.2143996000001,-6.520604799999944],[134.21404890000008,-6.517454199999975],[134.2097232000001,-6.522375799999963],[134.20993940000005,-6.5249518],[134.2143996000001,-6.520604799999944]]],[[[134.58897390000004,-6.517900499999939],[134.58250820000012,-6.508518399999957],[134.5783795000001,-6.507398699999953],[134.57201320000001,-6.512863099999947],[134.56464660000006,-6.513191699999936],[134.55526250000003,-6.52323],[134.55235530000004,-6.529255299999932],[134.55242570000007,-6.532898599999953],[134.54933660000006,-6.534945599999958],[134.5491108000001,-6.537847699999929],[134.5526801000001,-6.54053],[134.55770210000003,-6.5413158],[134.5633964000001,-6.539199799999949],[134.55971920000002,-6.544160599999941],[134.5627710000001,-6.545006099999966],[134.57086970000012,-6.545010899999966],[134.573547,-6.546799199999953],[134.5775662000001,-6.545686299999943],[134.58058490000008,-6.539661],[134.589857,-6.529957],[134.59611670000004,-6.518352799999946],[134.58897390000004,-6.517900499999939]]],[[[134.76761090000002,-6.493936199999951],[134.7705343,-6.492077299999949],[134.77186410000002,-6.489154799999937],[134.76947380000001,-6.487293499999964],[134.76389440000003,-6.487290899999948],[134.7628304000001,-6.489947899999947],[134.75911050000002,-6.490477599999963],[134.75607350000007,-6.493841699999962],[134.75565340000003,-6.497119399999974],[134.76707840000006,-6.496327599999972],[134.76761090000002,-6.493936199999951]]],[[[134.82808620000003,-6.482203699999957],[134.82110340000008,-6.480262599999946],[134.81768410000006,-6.482253699999944],[134.81106450000004,-6.491926599999942],[134.79542440000012,-6.508820499999956],[134.78971760000002,-6.5090346],[134.78719990000002,-6.511304799999948],[134.7814016000001,-6.510711599999979],[134.7792502000001,-6.507805799999971],[134.77516290000005,-6.5091083],[134.7734614000001,-6.511318499999959],[134.77572540000006,-6.5197334],[134.77484040000002,-6.5249028],[134.77784640000004,-6.531331],[134.77810990000012,-6.549811],[134.7926778000001,-6.547755699999925],[134.8026265000001,-6.548460399999954],[134.81329060000007,-6.561764099999948],[134.82287470000006,-6.545786299999975],[134.82438530000002,-6.538265199999955],[134.82984790000012,-6.531715799999972],[134.82923090000008,-6.529028199999971],[134.8343797000001,-6.517671],[134.8486524000001,-6.499882599999978],[134.8508382000001,-6.4934894],[134.849318,-6.490233799999942],[134.8450580000001,-6.4892358],[134.84301690000007,-6.491446199999928],[134.8330370000001,-6.482194399999969],[134.82958710000003,-6.4810673],[134.82808620000003,-6.482203699999957]]],[[[134.58387570000002,-6.4741382],[134.57520750000003,-6.475399899999957],[134.5541789,-6.486392],[134.53510230000006,-6.479706299999975],[134.5313414000001,-6.478924399999926],[134.52861570000005,-6.480868],[134.52627780000012,-6.484239],[134.52575500000012,-6.488519899999972],[134.52798610000002,-6.497083599999939],[134.520417,-6.509402699999953],[134.5201525000001,-6.514721699999939],[134.5163871000001,-6.518480499999953],[134.5140725000001,-6.5286617],[134.5168949,-6.530027599999926],[134.52005180000003,-6.529604399999926],[134.52038590000006,-6.526085399999943],[134.5215928,-6.530443899999966],[134.52346950000003,-6.5308144],[134.53103640000006,-6.528094899999928],[134.53850980000004,-6.534906399999954],[134.54833170000006,-6.535391199999935],[134.5511255,-6.531486799999925],[134.55361260000006,-6.522925899999962],[134.55672960000004,-6.518777],[134.56487130000005,-6.511517499999968],[134.5708753,-6.511394099999961],[134.57775620000007,-6.504394],[134.5821837000001,-6.496015799999952],[134.58219410000004,-6.483290299999965],[134.58387570000002,-6.4741382]]],[[[134.18369410000003,-6.462493799999947],[134.18209480000007,-6.460728299999971],[134.17777740000008,-6.463470399999949],[134.1725206000001,-6.462804399999925],[134.17333180000003,-6.469215399999939],[134.17587630000003,-6.470616499999949],[134.17769050000004,-6.4664285],[134.18064870000012,-6.466022399999929],[134.181878,-6.467914399999927],[134.18369410000003,-6.462493799999947]]],[[[134.62847870000007,-6.497139699999934],[134.633638,-6.480204599999979],[134.6433637,-6.462169299999971],[134.64214660000005,-6.453531199999929],[134.63590620000002,-6.448599899999977],[134.62719520000007,-6.449725099999966],[134.6233956000001,-6.456866599999955],[134.62328190000005,-6.459768799999949],[134.62004250000007,-6.463785],[134.61546540000006,-6.465790899999945],[134.60452740000005,-6.467345299999977],[134.58990170000004,-6.474812799999938],[134.58688570000004,-6.478159199999936],[134.5853089000001,-6.495683499999927],[134.57949830000007,-6.5041625],[134.5791614000001,-6.506729599999971],[134.58105840000007,-6.507066099999975],[134.58551980000004,-6.510753499999964],[134.58897490000004,-6.516672599999936],[134.59421980000002,-6.517681499999981],[134.59812750000003,-6.516010199999926],[134.6030436000001,-6.509428],[134.61407510000004,-6.501847],[134.6239075000001,-6.504111099999932],[134.62627840000005,-6.502345399999967],[134.62847870000007,-6.497139699999934]]],[[[134.7257393000001,-6.487189],[134.72979550000002,-6.482163699999944],[134.73061070000006,-6.473730899999964],[134.71197530000006,-6.455232599999931],[134.69382410000003,-6.442572299999938],[134.6853929,-6.443540199999973],[134.66066650000005,-6.461581199999955],[134.65709020000008,-6.469169499999964],[134.6503911000001,-6.473518499999955],[134.6420197000001,-6.475298699999939],[134.64023240000006,-6.477530099999967],[134.63810580000006,-6.486235599999929],[134.6392148000001,-6.496059699999932],[134.64072790000012,-6.498294499999929],[134.64871490000007,-6.497196299999928],[134.651957,-6.498333799999955],[134.65628970000012,-6.501620699999933],[134.66024370000002,-6.509484199999974],[134.66225770000005,-6.516418299999941],[134.66539740000007,-6.520681499999966],[134.6674177000001,-6.530615599999976],[134.66761180000003,-6.543589099999963],[134.66618930000004,-6.549061299999948],[134.6678091000001,-6.551697599999954],[134.6679488000001,-6.5571894],[134.67559330000006,-6.562008399999968],[134.68300370000009,-6.563464499999952],[134.6874649,-6.560426699999937],[134.7015520000001,-6.557872499999974],[134.7101719000001,-6.551926499999979],[134.71402580000006,-6.547266399999955],[134.72193330000005,-6.542608499999972],[134.7251079,-6.543883899999969],[134.7311350000001,-6.552941399999952],[134.7407779,-6.553564899999969],[134.74584630000004,-6.551540399999965],[134.75071360000004,-6.546272399999964],[134.75132230000008,-6.539733299999966],[134.75619010000003,-6.538369399999965],[134.76348960000007,-6.532697],[134.76511340000002,-6.527832699999976],[134.76167080000005,-6.521344299999953],[134.75761870000008,-6.518099],[134.75640650000003,-6.50999],[134.7509367,-6.504919499999971],[134.74607730000002,-6.495389699999976],[134.746284,-6.487281399999972],[134.7407181000001,-6.485543],[134.7399094000001,-6.481560899999977],[134.7323940000001,-6.474218399999927],[134.7310923000001,-6.4828131],[134.7281723000001,-6.485568499999943],[134.72476360000007,-6.492378099999939],[134.7257393000001,-6.487189]]],[[[134.77181630000007,-6.418697599999973],[134.7691642000001,-6.4172983],[134.765284,-6.419322399999942],[134.7630557000001,-6.426654599999949],[134.76396660000012,-6.430763799999966],[134.76927190000004,-6.4313655],[134.77132640000002,-6.429854099999943],[134.7744385000001,-6.423207099999956],[134.77181630000007,-6.418697599999973]]],[[[134.7639319000001,-6.406983799999978],[134.75890890000005,-6.413236099999949],[134.75938710000003,-6.415404799999976],[134.76137190000009,-6.416410199999973],[134.76874440000006,-6.411985099999981],[134.7668523000001,-6.407966699999974],[134.7639319000001,-6.406983799999978]]],[[[134.34320060000005,-6.397717599999964],[134.3456142000001,-6.396295],[134.3417277000001,-6.392232299999932],[134.34046610000007,-6.392998399999954],[134.34017920000008,-6.397600099999977],[134.34320060000005,-6.397717599999964]]],[[[134.7765974,-6.416399],[134.78715940000006,-6.3983348],[134.78726910000012,-6.396157799999969],[134.780743,-6.390930399999945],[134.7788965000001,-6.383528],[134.77454610000007,-6.379607599999929],[134.77411310000002,-6.374709199999927],[134.77759570000012,-6.372424899999942],[134.77890320000006,-6.367853899999943],[134.77759830000002,-6.3664383],[134.7702002000001,-6.365890799999931],[134.76889370000004,-6.367740599999934],[134.77008750000005,-6.3744897],[134.76888810000003,-6.380367],[134.76529460000006,-6.386896199999967],[134.76528740000003,-6.402788],[134.77104840000004,-6.415743499999962],[134.775291,-6.418031199999973],[134.7765974,-6.416399]]],[[[134.7461138000001,-6.432418],[134.74774700000012,-6.430378],[134.74706980000008,-6.424663099999975],[134.75428240000008,-6.416503099999943],[134.75292560000003,-6.409699399999965],[134.7566104000001,-6.383169599999974],[134.75563550000004,-6.379683299999954],[134.75212520000002,-6.377044799999965],[134.75457430000006,-6.374869],[134.75566460000005,-6.370107399999938],[134.75471750000008,-6.359630399999958],[134.75245470000004,-6.358482399999957],[134.74397110000007,-6.365067499999952],[134.74206490000006,-6.369420499999933],[134.73213050000004,-6.381932899999981],[134.73239,-6.406015499999967],[134.72980340000004,-6.410640199999932],[134.72843740000008,-6.421796299999926],[134.72938810000005,-6.424382],[134.73496380000006,-6.426017599999966],[134.74094520000006,-6.432415399999968],[134.7461138000001,-6.432418]]],[[[134.3544405,-6.352402299999937],[134.3525731000001,-6.352750199999946],[134.34687080000003,-6.360367099999962],[134.34875910000005,-6.367066899999941],[134.3596788000001,-6.362682399999926],[134.3631842000001,-6.358950899999968],[134.36063420000005,-6.353215199999966],[134.3544405,-6.352402299999937]]],[[[134.3394697000001,-6.352231599999925],[134.3338338000001,-6.352335399999959],[134.3313882000001,-6.355385699999943],[134.33034880000002,-6.360317],[134.33137440000007,-6.366049499999974],[134.33447200000012,-6.367181],[134.341034,-6.361212699999953],[134.34187930000007,-6.358689499999969],[134.34316090000004,-6.358816399999967],[134.34523190000004,-6.353472199999942],[134.34227740000006,-6.353194799999926],[134.34206830000005,-6.356004699999971],[134.3394697000001,-6.352231599999925]]],[[[134.3683493000001,-6.378423399999974],[134.37378020000006,-6.377550199999973],[134.3770038,-6.368028599999946],[134.3741496,-6.3567399],[134.36490820000006,-6.3469354],[134.36212970000008,-6.351146],[134.36268240000004,-6.353512499999965],[134.366694,-6.356195299999968],[134.36508790000005,-6.356308099999978],[134.36146480000002,-6.364165],[134.36449830000004,-6.378119099999935],[134.3683493000001,-6.378423399999974]]],[[[134.6026796000001,-6.403715699999964],[134.60241150000002,-6.398265599999945],[134.59900470000002,-6.394112799999959],[134.59900920000007,-6.388308099999961],[134.596334,-6.384733899999958],[134.58155610000006,-6.3798104],[134.57737440000005,-6.373332599999969],[134.5539381000001,-6.363910899999951],[134.5438368,-6.361707899999942],[134.54123790000006,-6.356111],[134.5411295,-6.352538799999934],[134.53778720000003,-6.346954499999981],[134.532991,-6.345275699999945],[134.52147780000007,-6.368260499999963],[134.517458,-6.371494],[134.51600380000002,-6.3753996],[134.51756260000002,-6.378861499999971],[134.516371,-6.387071499999934],[134.51871440000002,-6.397522399999957],[134.51482320000002,-6.407340899999951],[134.508505,-6.4137812],[134.495832,-6.433389499999976],[134.48762580000005,-6.437797299999943],[134.4850987000001,-6.443865599999981],[134.48537450000003,-6.448162099999934],[134.48359470000003,-6.453857599999935],[134.4775287000001,-6.450769299999934],[134.4748614,-6.454837399999974],[134.4712896000001,-6.455503499999963],[134.47328530000004,-6.468119299999955],[134.48108450000007,-6.480629499999964],[134.4808164000001,-6.487907099999973],[134.48498040000004,-6.490568199999927],[134.48933450000004,-6.489009899999928],[134.49378710000008,-6.489945499999976],[134.50361370000007,-6.4952752],[134.5084042000001,-6.504098299999953],[134.50616350000007,-6.512803],[134.50939660000006,-6.516489899999954],[134.5132308000001,-6.516907299999957],[134.51450750000004,-6.515261099999975],[134.51966210000012,-6.514522099999965],[134.51982610000005,-6.509633299999962],[134.52738290000002,-6.496780399999977],[134.52515860000005,-6.489126],[134.5260671000001,-6.4833877],[134.52830130000007,-6.480467],[134.53111890000002,-6.478503399999965],[134.54854080000007,-6.483461299999931],[134.54850360000012,-6.4748707],[134.5413449,-6.461289099999931],[134.54510310000012,-6.464925199999925],[134.54898580000008,-6.474496899999963],[134.55239440000003,-6.470283399999971],[134.55353460000003,-6.464284],[134.55271730000004,-6.471743199999935],[134.54930790000003,-6.476929799999937],[134.5494966000001,-6.481226099999958],[134.552841,-6.484828],[134.583991,-6.469673099999966],[134.5907271000001,-6.464270599999963],[134.59509090000006,-6.462660099999937],[134.59539510000002,-6.4605981],[134.596705,-6.461944099999926],[134.60018120000007,-6.459304699999961],[134.6028655,-6.451716099999942],[134.60744560000012,-6.445803299999966],[134.61203180000007,-6.43163],[134.60902550000003,-6.422809],[134.60233340000002,-6.418450399999927],[134.6006628,-6.414318799999933],[134.60179530000005,-6.407568599999934],[134.59864220000009,-6.4046311],[134.6015192000001,-6.406682299999943],[134.6026796000001,-6.403715699999964]]],[[[134.33165780000002,-6.342322699999954],[134.32807800000012,-6.343897199999958],[134.32796770000004,-6.347792499999969],[134.33062670000004,-6.350319199999944],[134.33354610000004,-6.346852199999944],[134.33165780000002,-6.342322699999954]]],[[[134.53768680000007,-6.336041799999975],[134.53625720000002,-6.333126],[134.530155,-6.329047799999955],[134.52201520000006,-6.327513099999976],[134.5235365000001,-6.333114399999943],[134.5267566000001,-6.335832499999981],[134.5375361,-6.337461299999973],[134.53768680000007,-6.336041799999975]]],[[[134.3605116000001,-6.330737899999974],[134.3609705,-6.326674099999934],[134.35829390000004,-6.325889399999937],[134.3567247000001,-6.331803599999944],[134.3596242000001,-6.332811799999945],[134.3605116000001,-6.330737899999974]]],[[[134.7893633000001,-6.328231899999935],[134.792222,-6.325267199999928],[134.78894220000006,-6.3255512],[134.78781460000005,-6.328133],[134.7893633000001,-6.328231899999935]]],[[[134.34899610000002,-6.342752899999937],[134.3541567000001,-6.336557899999946],[134.35693270000002,-6.326175699999965],[134.35596510000005,-6.323559499999931],[134.3507221000001,-6.3193597],[134.3405153000001,-6.317039799999975],[134.33961770000008,-6.318159399999956],[134.34065640000006,-6.323540299999934],[134.338591,-6.327782],[134.3380446000001,-6.337634899999955],[134.34190510000008,-6.3399795],[134.34345020000012,-6.342782499999942],[134.34899610000002,-6.342752899999937]]],[[[134.3260514000001,-6.3458204],[134.3230334000001,-6.339393799999925],[134.3204558000001,-6.325217499999951],[134.32184460000008,-6.324369799999943],[134.31848120000006,-6.314156],[134.31619610000007,-6.308464399999934],[134.311979,-6.307633099999975],[134.30132660000004,-6.318904399999951],[134.29673050000008,-6.327064099999973],[134.29589420000002,-6.3351371],[134.2973502000001,-6.343488499999978],[134.2949225000001,-6.346224899999925],[134.30118670000002,-6.354779199999939],[134.30788350000012,-6.353228399999978],[134.30752610000002,-6.348394599999949],[134.30993690000003,-6.350775499999941],[134.313551,-6.351040499999954],[134.31533250000007,-6.353156799999965],[134.3154194000001,-6.358465299999978],[134.3169521000001,-6.361222899999973],[134.3208939000001,-6.362512599999945],[134.3249932000001,-6.362377],[134.32715560000008,-6.360500799999954],[134.3285188000001,-6.352521599999932],[134.3260514000001,-6.3458204]]],[[[134.5441135000001,-6.331340199999943],[134.53963850000002,-6.324686199999974],[134.53852230000007,-6.320276799999931],[134.544288,-6.302573499999937],[134.5294163000001,-6.314888899999971],[134.52235710000002,-6.324628599999926],[134.5348557000001,-6.328417899999977],[134.54168470000002,-6.333130799999935],[134.5441135000001,-6.331340199999943]]],[[[134.71093130000008,-6.303184199999976],[134.70688010000003,-6.299926199999959],[134.70099890000006,-6.302493099999936],[134.69917110000006,-6.304205599999932],[134.69939820000002,-6.306433399999946],[134.7040799,-6.305293699999936],[134.70698930000003,-6.308722399999965],[134.7155497000001,-6.313182299999937],[134.7236573,-6.3106735],[134.72805520000009,-6.306334899999968],[134.71737940000003,-6.307928499999946],[134.71093130000008,-6.303184199999976]]],[[[134.833147,-6.310675899999978],[134.8337855000001,-6.307274599999971],[134.8312797000001,-6.298986399999933],[134.8261010000001,-6.295362199999943],[134.82203460000005,-6.296642599999927],[134.8052484000001,-6.312210099999959],[134.80084780000004,-6.318105299999957],[134.79868670000008,-6.318884599999933],[134.7876841000001,-6.332528799999977],[134.78660220000006,-6.3412724],[134.78829880000012,-6.349351699999943],[134.7976463000001,-6.3548829],[134.8021089,-6.354246799999942],[134.8063892,-6.351606299999958],[134.81561970000007,-6.338722099999927],[134.81544680000002,-6.335413],[134.82549260000008,-6.326405399999942],[134.82995720000008,-6.318966],[134.831446,-6.3142894],[134.8293202000001,-6.311062199999981],[134.833147,-6.310675899999978]]],[[[134.86937580000006,-6.282121399999937],[134.8625965000001,-6.283443199999965],[134.85168420000002,-6.282943899999964],[134.8530049000001,-6.290058199999976],[134.8470483000001,-6.304946199999961],[134.84853480000004,-6.310571699999969],[134.84621960000004,-6.311563599999943],[134.8443959000001,-6.3279417],[134.84041990000003,-6.326460699999927],[134.83877270000005,-6.331579699999963],[134.82853330000012,-6.339086299999963],[134.82057620000012,-6.353081],[134.79956490000006,-6.379709199999979],[134.797411,-6.390131099999962],[134.80036510000002,-6.405956199999935],[134.80352310000012,-6.407835499999976],[134.8098712000001,-6.405215799999951],[134.80616830000008,-6.410152699999969],[134.80451140000002,-6.418258599999945],[134.8064955000001,-6.419417399999929],[134.8051703000001,-6.425207299999954],[134.80682280000008,-6.428682199999969],[134.81505890000005,-6.4310141],[134.8200515000001,-6.434973699999944],[134.80698710000001,-6.431494699999973],[134.806655,-6.434968799999979],[134.80351210000003,-6.436456599999929],[134.80185310000002,-6.449691099999939],[134.80863030000012,-6.459951],[134.81971090000002,-6.462767499999927],[134.84484710000004,-6.4765073],[134.855936,-6.45186],[134.85676420000004,-6.447558799999968],[134.85213380000005,-6.445572199999958],[134.8529628000001,-6.438458499999967],[134.86851860000002,-6.402562199999977],[134.86885070000005,-6.397268199999928],[134.8799352000001,-6.378907],[134.8934987,-6.363854799999956],[134.89564990000008,-6.356906699999968],[134.90028080000002,-6.352937099999963],[134.90210050000007,-6.348966799999971],[134.90193650000003,-6.342183699999964],[134.90855450000004,-6.321339299999977],[134.90723330000003,-6.312239799999929],[134.9019436000001,-6.304463099999964],[134.898473,-6.295528599999955],[134.89268750000008,-6.287917199999981],[134.88657060000003,-6.2844416],[134.87962570000002,-6.287087099999951],[134.88078,-6.300819],[134.8728393,-6.317692099999931],[134.86523190000003,-6.322488],[134.86291610000012,-6.325630799999942],[134.86555650000003,-6.346146099999942],[134.86159080000004,-6.335226],[134.8614285000001,-6.323645099999965],[134.86357880000003,-6.320998599999939],[134.87201290000007,-6.316203],[134.87863,-6.302803799999936],[134.87912710000012,-6.298337],[134.87499620000006,-6.287086],[134.86937580000006,-6.282121399999937]]],[[[134.31483,-6.280226699999957],[134.3144989000001,-6.277801599999975],[134.3129117000001,-6.277548699999954],[134.31190660000004,-6.2794704],[134.30806310000003,-6.2794653],[134.30329170000005,-6.283620299999939],[134.30746880000004,-6.286571],[134.31246690000012,-6.298198899999932],[134.31538750000004,-6.301129],[134.3168127,-6.297535799999935],[134.3191538000001,-6.296368299999926],[134.31948490000002,-6.298793299999943],[134.3173935000001,-6.300713599999938],[134.31722320000006,-6.303137899999967],[134.31889180000007,-6.305063],[134.3173829000001,-6.308823399999937],[134.32080110000004,-6.314763899999946],[134.32598120000011,-6.315188599999942],[134.32990410000002,-6.318705199999954],[134.33056850000003,-6.3218831],[134.33390640000005,-6.325398799999959],[134.33549930000004,-6.321304099999963],[134.33134230000007,-6.304911899999979],[134.3213333000001,-6.291020399999979],[134.3222548000001,-6.289182199999971],[134.32042160000003,-6.285250299999973],[134.3184165,-6.285080499999935],[134.31483,-6.280226699999957]]],[[[134.4530334000001,-6.273726299999964],[134.44949870000005,-6.273864399999979],[134.43967070000008,-6.2841236],[134.43353250000007,-6.286461199999962],[134.42114660000004,-6.285474699999952],[134.40641390000008,-6.295137899999929],[134.3962322000001,-6.311748199999954],[134.40015170000004,-6.312593299999946],[134.4010823000001,-6.315022599999963],[134.39893270000005,-6.317355099999929],[134.40387640000006,-6.331235099999958],[134.39845650000007,-6.325573399999939],[134.3967821000001,-6.320528099999933],[134.3917477000001,-6.315105199999948],[134.39137760000006,-6.312302899999963],[134.38899060000006,-6.3121965],[134.38597460000005,-6.315430099999958],[134.3822943,-6.314309499999979],[134.37905380000007,-6.318659],[134.37436660000003,-6.319881299999963],[134.3700258,-6.326877],[134.36531590000004,-6.331367599999965],[134.3659808000001,-6.335052099999928],[134.36382720000006,-6.346329],[134.368346,-6.348822499999926],[134.374722,-6.356414],[134.3775534,-6.367678599999977],[134.3761455,-6.3739811],[134.37200310000003,-6.3814408],[134.3713246000001,-6.386595399999976],[134.36769730000003,-6.391089799999975],[134.36847090000003,-6.397230099999945],[134.37605470000005,-6.400253199999952],[134.382526,-6.400707499999953],[134.3988230000001,-6.395592099999931],[134.40730110000004,-6.397387899999956],[134.42145850000009,-6.409459599999934],[134.4304810000001,-6.423757799999976],[134.43092260000003,-6.428000099999963],[134.44869730000005,-6.447879299999954],[134.45782420000012,-6.447454299999947],[134.46391210000002,-6.443983],[134.47706330000005,-6.449367799999948],[134.48303190000001,-6.446176399999956],[134.48804990000008,-6.434758099999954],[134.49477930000012,-6.432711799999936],[134.51721020000002,-6.397726199999966],[134.51350920000004,-6.387518899999975],[134.51610970000002,-6.381427599999938],[134.5148881,-6.375286899999935],[134.51667780000002,-6.370488599999931],[134.52036140000007,-6.368929299999934],[134.53333150000003,-6.338913299999945],[134.52516750000007,-6.336642299999937],[134.5220822000001,-6.332931099999939],[134.5206449000001,-6.328397299999949],[134.51460280000003,-6.322486799999979],[134.50925860000007,-6.310599599999932],[134.50040050000007,-6.300317399999926],[134.497951,-6.299497799999926],[134.48324680000007,-6.302051899999981],[134.47645520000003,-6.299818],[134.4735716,-6.296995899999956],[134.46098760000007,-6.275215899999978],[134.4530334000001,-6.273726299999964]]],[[[134.74080620000007,-6.260314899999969],[134.7388731000001,-6.260374399999932],[134.73718080000003,-6.2620661],[134.7410463000001,-6.263579299999947],[134.7424367000001,-6.261585199999956],[134.74080620000007,-6.260314899999969]]],[[[134.8599849000001,-6.225276599999972],[134.8580886000001,-6.224027],[134.85972650000008,-6.230454099999974],[134.86102460000006,-6.230454399999928],[134.8607521,-6.227514499999927],[134.8626485000001,-6.225036499999931],[134.8599849000001,-6.225276599999972]]],[[[134.3688638000001,-6.224071699999968],[134.37032110000007,-6.219618499999967],[134.36902150000003,-6.219814799999938],[134.36739010000008,-6.223436799999945],[134.3688638000001,-6.224071699999968]]],[[[134.36338640000008,-6.222001599999942],[134.3645491000001,-6.218186899999978],[134.3632626000001,-6.216873699999951],[134.3623265000001,-6.220151599999951],[134.36338640000008,-6.222001599999942]]],[[[134.34097450000002,-6.217937499999948],[134.33993840000005,-6.215273399999944],[134.33830460000001,-6.216113699999937],[134.34097450000002,-6.217937499999948]]],[[[134.36083670000005,-6.218770399999926],[134.36211050000009,-6.216521799999953],[134.3611631000001,-6.215180699999962],[134.35977580000008,-6.217813599999943],[134.36083670000005,-6.218770399999926]]],[[[134.36662020000006,-6.220060699999976],[134.3688671000001,-6.216609],[134.366781,-6.213140899999928],[134.36662020000006,-6.220060699999976]]],[[[134.35699770000008,-6.221326799999929],[134.35979040000007,-6.215105599999958],[134.35835830000008,-6.212729399999944],[134.35545350000007,-6.213562499999966],[134.35339890000012,-6.216816499999936],[134.3548290000001,-6.220770099999925],[134.35699770000008,-6.221326799999929]]],[[[134.36890490000008,-6.213301699999931],[134.36869190000004,-6.211922],[134.36779850000005,-6.212582399999974],[134.36890490000008,-6.213301699999931]]],[[[134.36503670000002,-6.2166666],[134.36584470000003,-6.211896],[134.363716,-6.210921],[134.3616462000001,-6.212767199999973],[134.36503670000002,-6.2166666]]],[[[134.34396950000007,-6.217268499999932],[134.3439466000001,-6.213],[134.34073680000006,-6.2091742],[134.34015090000003,-6.212435599999935],[134.34396950000007,-6.217268499999932]]],[[[134.33961350000004,-6.213011599999959],[134.3376809,-6.2089669],[134.3349485000001,-6.211931599999957],[134.3367022000001,-6.214534399999934],[134.33961350000004,-6.213011599999959]]],[[[134.22002110000005,-6.207340399999964],[134.2164319000001,-6.196511399999963],[134.21114690000002,-6.194819799999948],[134.20801820000008,-6.197701499999937],[134.205124,-6.204432],[134.20863610000004,-6.208874499999979],[134.21664880000003,-6.212386599999945],[134.22002110000005,-6.207340399999964]]],[[[134.8748706,-6.196245199999964],[134.8754186000001,-6.192850199999953],[134.87120640000012,-6.188304],[134.86715730000003,-6.188303],[134.86321850000002,-6.185016299999972],[134.85998970000003,-6.186658299999976],[134.8631454,-6.195618699999955],[134.8696870000001,-6.197119],[134.86361810000005,-6.196486499999935],[134.86148860000003,-6.201928599999974],[134.8582338000001,-6.205495599999949],[134.85484150000002,-6.204125699999963],[134.8548955000001,-6.206918499999972],[134.85172120000004,-6.208943799999929],[134.85817340000006,-6.219991199999981],[134.8617987,-6.2216486],[134.86813540000003,-6.215519399999948],[134.86936960000003,-6.205401299999949],[134.8748706,-6.196245199999964]]],[[[134.8858619,-6.182489699999962],[134.88633520000008,-6.180596699999967],[134.88460110000005,-6.181464],[134.8858619,-6.182489699999962]]],[[[134.84526520000009,-6.162145799999962],[134.84181620000004,-6.165102699999977],[134.84304720000011,-6.166582099999971],[134.84551040000008,-6.165843299999949],[134.84526520000009,-6.162145799999962]]],[[[134.1213560000001,-6.161612599999955],[134.1165128,-6.1593138],[134.09583570000007,-6.165051699999935],[134.0953429000001,-6.172266499999978],[134.1025132000001,-6.195609299999944],[134.1053899000001,-6.199943499999961],[134.1129016000001,-6.201052899999979],[134.1293227000001,-6.217044899999962],[134.1317606,-6.216431099999966],[134.13612050000006,-6.219958],[134.1602369000001,-6.228717699999947],[134.13635770000008,-6.221882499999936],[134.1314331000001,-6.218023899999935],[134.1294497,-6.218866],[134.11259440000003,-6.203322899999932],[134.10558880000008,-6.201953699999933],[134.11755690000007,-6.233561399999928],[134.12376480000012,-6.238862499999925],[134.11831140000004,-6.2416866],[134.1182195,-6.244644],[134.12524530000007,-6.2573432],[134.13021230000004,-6.272072599999944],[134.13084830000003,-6.275084699999979],[134.1285252,-6.273706199999936],[134.1339958000001,-6.304242199999976],[134.13642620000007,-6.308412399999952],[134.1447545000001,-6.308070499999928],[134.1494834,-6.304064499999981],[134.15481480000005,-6.304276399999935],[134.16882640000006,-6.294290599999954],[134.1547644000001,-6.304889799999955],[134.14975260000006,-6.304747299999974],[134.14654570000005,-6.308287599999971],[134.13690270000006,-6.309207],[134.13672340000005,-6.311506299999962],[134.13470330000007,-6.311633],[134.13344080000002,-6.3335118],[134.12836890000005,-6.362487399999964],[134.1251942,-6.3701152],[134.11726840000006,-6.381741899999952],[134.12428940000007,-6.382223099999976],[134.1346589000001,-6.368764799999951],[134.14301050000006,-6.362998699999935],[134.14600670000004,-6.363003599999956],[134.14961720000008,-6.3600628],[134.15743810000004,-6.359974],[134.1627089000001,-6.3665875],[134.16372490000003,-6.366436699999952],[134.1639867,-6.361559599999964],[134.16556550000007,-6.358767799999953],[134.17030750000004,-6.358984899999939],[134.1658192000001,-6.358920599999976],[134.16418940000005,-6.361814],[134.16403260000004,-6.366880299999934],[134.16232390000005,-6.366950299999928],[134.1582485,-6.361296299999935],[134.15591430000006,-6.360174699999959],[134.14981980000005,-6.360418799999934],[134.14615790000005,-6.363715199999945],[134.1437208000001,-6.363406299999951],[134.1377725000001,-6.367359399999941],[134.12573980000002,-6.382578399999943],[134.1218275000001,-6.383638699999949],[134.12170830000002,-6.391853199999957],[134.12126880000005,-6.383637799999974],[134.11557930000004,-6.384542599999975],[134.116665,-6.410365899999931],[134.1156688000001,-6.416445],[134.11780260000012,-6.417599099999961],[134.118257,-6.422685799999954],[134.1260685000001,-6.435609399999976],[134.12565410000002,-6.437745199999938],[134.12926260000006,-6.441284799999949],[134.13042240000004,-6.447003699999925],[134.137705,-6.452557],[134.13785230000008,-6.4625825],[134.13941290000002,-6.462749499999973],[134.14812370000004,-6.461202899999932],[134.14978930000007,-6.4593963],[134.1603689000001,-6.458593599999972],[134.17731170000002,-6.446623699999975],[134.18298260000006,-6.445071499999926],[134.189897,-6.436454099999935],[134.19055990000004,-6.432839499999943],[134.1959862000001,-6.429971899999941],[134.19997,-6.424157699999967],[134.1999283,-6.430635499999937],[134.20395150000002,-6.4320388],[134.2091375000001,-6.425589199999933],[134.21069390000002,-6.428372499999966],[134.20779470000002,-6.429946499999971],[134.209125,-6.433279399999947],[134.20624210000005,-6.438205499999981],[134.20163350000007,-6.443457499999965],[134.19555120000007,-6.445420199999944],[134.19341040000006,-6.448457299999973],[134.18798320000008,-6.451735699999972],[134.18486430000007,-6.449922899999933],[134.18329920000008,-6.45255],[134.18345620000002,-6.457152],[134.18460130000005,-6.460276499999964],[134.1898556000001,-6.462503599999934],[134.19635560000006,-6.4562686],[134.19652510000003,-6.452981899999941],[134.2026068,-6.451430099999925],[134.20441920000007,-6.448228099999938],[134.20721190000006,-6.448478899999941],[134.21839440000008,-6.442086499999959],[134.21510080000007,-6.447012],[134.21682060000012,-6.450548199999957],[134.21533580000005,-6.454490299999975],[134.20612670000003,-6.459571],[134.2053919000001,-6.456611499999951],[134.20005220000007,-6.456438799999944],[134.19543670000007,-6.465881699999954],[134.2004501,-6.464656899999966],[134.19715940000003,-6.467527899999936],[134.19969630000003,-6.473777199999972],[134.20133690000011,-6.475423299999932],[134.2048701000001,-6.475100199999929],[134.21366870000008,-6.487989499999969],[134.22299480000004,-6.495918699999947],[134.22298960000012,-6.499287899999956],[134.21854630000007,-6.503636299999926],[134.22248050000007,-6.509805599999936],[134.23168240000007,-6.509984],[134.238271,-6.499639799999954],[134.232995,-6.511300799999958],[134.2295832000001,-6.515883699999961],[134.2234800000001,-6.518514],[134.21918290000008,-6.525493399999959],[134.21369890000005,-6.529930599999943],[134.21242080000002,-6.5350887],[134.215201,-6.545459799999946],[134.23215750000008,-6.565571],[134.2342864000001,-6.575021299999946],[134.2335485000001,-6.590341899999942],[134.2358445000001,-6.594394199999954],[134.2400484000001,-6.596782299999973],[134.24378580000007,-6.592739199999926],[134.24506350000001,-6.587819099999933],[134.25157790000003,-6.578465],[134.2455341000001,-6.5880028],[134.24434140000005,-6.592819399999939],[134.2417163,-6.596308499999964],[134.24036490000003,-6.597497199999964],[134.23615890000008,-6.596458799999937],[134.23605810000004,-6.610430799999961],[134.23835750000012,-6.612339599999927],[134.248915,-6.613308299999971],[134.2522417,-6.618473499999936],[134.25365620000002,-6.628160899999955],[134.26142210000012,-6.638016599999958],[134.27094610000006,-6.6404123],[134.2771404,-6.639389299999948],[134.27951860000007,-6.641933199999926],[134.2798438000001,-6.651406399999928],[134.2809119000001,-6.653319499999952],[134.28553810000005,-6.655164499999955],[134.2861445000001,-6.657809499999928],[134.29309420000004,-6.660240099999953],[134.302968,-6.660414899999978],[134.2891777000001,-6.660920899999951],[134.2867176000001,-6.660044099999936],[134.279977,-6.654318399999966],[134.27482830000008,-6.6459751],[134.2751502000001,-6.643038299999944],[134.2611793000001,-6.641112299999975],[134.2556598000001,-6.638645399999973],[134.2531669000001,-6.636734],[134.2526213000001,-6.629985199999965],[134.24913560000005,-6.624978599999963],[134.24930540000003,-6.617675199999951],[134.24756290000005,-6.6149734],[134.23708520000002,-6.613687199999958],[134.2310668,-6.603754599999945],[134.22955180000008,-6.605306699999971],[134.23154640000007,-6.601611799999944],[134.23061510000002,-6.587797],[134.23205730000006,-6.579146],[134.23063890000003,-6.572316599999965],[134.22525830000006,-6.560955899999954],[134.22026160000007,-6.558169599999928],[134.21835940000005,-6.556261399999926],[134.21678090000012,-6.550384199999939],[134.2147963000001,-6.550460499999929],[134.20915160000004,-6.544804099999965],[134.2068190000001,-6.538111499999957],[134.209526,-6.5328155],[134.2080023000001,-6.529984099999979],[134.20810110000002,-6.520137699999964],[134.1851733000001,-6.532409099999938],[134.20504730000005,-6.519452299999955],[134.2114564000001,-6.518992099999934],[134.2132716000001,-6.514146599999947],[134.2003022,-6.484880899999951],[134.1937630000001,-6.485190199999977],[134.18324430000007,-6.494426099999941],[134.17944380000006,-6.5047922],[134.1718691000001,-6.509125],[134.15923580000003,-6.521438599999954],[134.15627040000004,-6.527047699999969],[134.1513695000001,-6.532218099999966],[134.14909490000002,-6.532941799999946],[134.1487413000001,-6.5316362],[134.15123240000003,-6.530395799999951],[134.15109440000003,-6.529134],[134.14311930000008,-6.521271299999967],[134.14364690000002,-6.517908899999952],[134.14339940000002,-6.521412],[134.14675740000007,-6.524641499999973],[134.15193710000005,-6.528014199999973],[134.154321,-6.527177199999926],[134.15670780000005,-6.524658199999976],[134.15741550000007,-6.520454399999949],[134.1632363000001,-6.514159899999981],[134.1780453,-6.502967799999965],[134.18167590000007,-6.491333899999972],[134.18086670000002,-6.483690399999944],[134.17512320000003,-6.479079299999967],[134.1694679000001,-6.478119],[134.16822060000004,-6.479971899999953],[134.15613930000006,-6.485786899999937],[134.15579960000002,-6.489237099999968],[134.1509519000001,-6.489475599999935],[134.14419610000004,-6.483118399999967],[134.13548040000012,-6.480891],[134.1351631000001,-6.478412399999968],[134.1325452000001,-6.476400799999965],[134.13269090000006,-6.473177199999952],[134.12919150000005,-6.470928599999979],[134.126528,-6.471484699999962],[134.1248419000001,-6.474144899999942],[134.1263881000001,-6.471344299999942],[134.13101530000006,-6.469670299999962],[134.13213990000008,-6.467569699999956],[134.12878380000006,-6.463499199999944],[134.1221987,-6.462927299999933],[134.11799760000008,-6.461378199999956],[134.121919,-6.462646399999926],[134.1279452000001,-6.462236299999972],[134.13088430000005,-6.464343799999938],[134.12460840000006,-6.451921699999957],[134.11600320000002,-6.446113],[134.11110170000006,-6.457392199999958],[134.10642040000005,-6.461299899999972],[134.09783660000005,-6.493911399999945],[134.08912280000004,-6.645022099999949],[134.086306,-6.646624599999939],[134.08179450000011,-6.694847799999934],[134.0789698000001,-6.7004695],[134.07734060000007,-6.711720399999933],[134.07169770000007,-6.719346399999949],[134.06925950000004,-6.7330073],[134.06442420000008,-6.738625],[134.0579557000001,-6.757101199999966],[134.0535291000001,-6.759102199999973],[134.0510869000001,-6.774370599999941],[134.0562959,-6.783625],[134.0703837000001,-6.8289769],[134.08608270000002,-6.837253],[134.09128060000012,-6.847627599999953],[134.0967177000001,-6.849729399999944],[134.10404460000007,-6.848488199999963],[134.1090733000001,-6.845150899999965],[134.1237837000001,-6.845569299999966],[134.13398670000004,-6.852263299999947],[134.14292250000005,-6.863274299999944],[134.14722060000008,-6.865969799999959],[134.1502335,-6.865545],[134.1527857000001,-6.864013799999952],[134.15311570000006,-6.861388899999952],[134.14735970000004,-6.851076899999953],[134.15050340000005,-6.846752199999969],[134.1540649000001,-6.846278],[134.16745120000007,-6.850484599999959],[134.1793857,-6.847158499999978],[134.1841962000001,-6.84884],[134.18964130000006,-6.846548399999961],[134.18986470000004,-6.838182199999949],[134.1889906,-6.835121099999981],[134.1810273000001,-6.826224199999956],[134.19088740000007,-6.832974],[134.194048,-6.839444199999946],[134.1929907000001,-6.845926599999927],[134.18817030000002,-6.850101699999925],[134.1802192,-6.849251599999945],[134.1685668,-6.851686399999949],[134.15411430000006,-6.848736799999926],[134.15050140000005,-6.849618299999975],[134.1495466,-6.852513199999976],[134.1535818000001,-6.857939],[134.1543266000001,-6.8625419],[134.15046410000002,-6.868942899999979],[134.15587270000003,-6.876435299999969],[134.1724114000001,-6.909969499999931],[134.174381,-6.911258099999941],[134.17952590000004,-6.910667199999978],[134.18235070000003,-6.913156599999979],[134.17926840000007,-6.910838099999978],[134.17446570000004,-6.911857899999973],[134.17086790000008,-6.910223899999949],[134.17086340000003,-6.912794099999928],[134.16862960000003,-6.915531699999974],[134.17445440000006,-6.9183691],[134.1770206000001,-6.921714799999961],[134.188869,-6.924612499999967],[134.19663290000005,-6.933828199999937],[134.19773810000004,-6.939398899999958],[134.19619330000012,-6.940253],[134.19731410000009,-6.941658299999972],[134.1999499000001,-6.940511299999969],[134.20572540000012,-6.932131799999979],[134.204505,-6.928148299999975],[134.2010447,-6.928167299999927],[134.20266540000011,-6.919743499999981],[134.214007,-6.906757399999947],[134.21607240000003,-6.906898499999954],[134.23571370000002,-6.895920799999942],[134.266744,-6.881361399999946],[134.27525960000003,-6.879295599999978],[134.2750139000001,-6.875994499999933],[134.27645870000003,-6.872184799999957],[134.2756260000001,-6.8765186],[134.27946340000005,-6.8777799],[134.29313420000005,-6.872424399999943],[134.2988878000001,-6.868109299999958],[134.31509,-6.865844],[134.3148252000001,-6.862886899999978],[134.31778040000006,-6.8651759],[134.32295480000005,-6.864347499999951],[134.33256690000007,-6.860120099999961],[134.33593370000006,-6.8553337],[134.337908,-6.848267899999939],[134.34937890000003,-6.838209499999948],[134.36538210000003,-6.821117699999945],[134.37448510000002,-6.820042599999965],[134.37774160000004,-6.816743299999928],[134.37960280000004,-6.812195199999962],[134.37839570000006,-6.809970499999963],[134.37484490000008,-6.810826],[134.365384,-6.806943],[134.35813630000007,-6.806288099999961],[134.35027330000003,-6.817356199999949],[134.35033770000007,-6.820659299999932],[134.3538410000001,-6.826513],[134.35059980000005,-6.830499699999962],[134.34577790000003,-6.832488699999942],[134.3397252000001,-6.828282899999977],[134.3368336000001,-6.828057799999954],[134.33979350000004,-6.828054299999962],[134.34606250000002,-6.831973499999947],[134.35067,-6.829536399999938],[134.35136320000004,-6.826028],[134.3527408000001,-6.825479299999927],[134.3491653000001,-6.822171499999968],[134.34944830000006,-6.816529399999979],[134.3562088000001,-6.806216699999936],[134.3456900000001,-6.809043499999973],[134.34114030000012,-6.813441299999965],[134.338593,-6.813506599999926],[134.33030210000004,-6.809323],[134.34065050000004,-6.8119337],[134.34517110000002,-6.808636899999954],[134.36057510000012,-6.8043826],[134.3655781000001,-6.795357599999932],[134.36428990000002,-6.793377599999928],[134.36689780000006,-6.780360499999972],[134.3740232,-6.768861099999981],[134.37663190000012,-6.768341599999928],[134.38180060000002,-6.762803699999949],[134.3936870000001,-6.761754199999928],[134.4019227000001,-6.755625099999975],[134.4024856000001,-6.747903099999974],[134.3918255000001,-6.745183199999929],[134.39053740000008,-6.743138699999975],[134.39226010000004,-6.741635599999938],[134.39216940000006,-6.736721799999941],[134.38993590000007,-6.733880599999964],[134.39037810000002,-6.7311544],[134.3863934000001,-6.725093899999933],[134.3826795000001,-6.722749699999952],[134.386325,-6.724749799999927],[134.3914803,-6.730467699999963],[134.39423710000005,-6.729734699999938],[134.40069340000002,-6.732001499999967],[134.4071537000001,-6.725988299999926],[134.40824210000005,-6.719576099999927],[134.41038330000003,-6.720649699999967],[134.417834,-6.7159373],[134.42284870000003,-6.717265199999929],[134.423924,-6.713069799999971],[134.43316310000012,-6.707423199999937],[134.43799710000008,-6.707383299999947],[134.44126180000012,-6.700275699999963],[134.44723650000003,-6.695524599999942],[134.45460350000008,-6.693390799999975],[134.45728450000001,-6.690716299999963],[134.45782350000002,-6.687637799999948],[134.45461290000003,-6.684956799999952],[134.447116,-6.683609699999977],[134.44176360000006,-6.680524599999956],[134.433463,-6.679578],[134.42997780000007,-6.67593],[134.42904480000004,-6.6676181],[134.430418,-6.665820399999973],[134.432217,-6.666250899999966],[134.43367120000005,-6.668480199999976],[134.4339215000001,-6.674392299999965],[134.43554860000006,-6.675336699999946],[134.43769250000003,-6.673968299999956],[134.4374425000001,-6.667799099999968],[134.44061990000012,-6.661805199999947],[134.43839330000003,-6.660603199999969],[134.43616270000007,-6.662914],[134.43410690000007,-6.662226199999964],[134.43137050000007,-6.657253699999956],[134.4293143000001,-6.656908599999952],[134.41970670000012,-6.665636599999971],[134.40993630000003,-6.666910199999961],[134.40478960000007,-6.6712736],[134.40034320000007,-6.673806799999966],[134.40599080000004,-6.669989899999962],[134.4088233000001,-6.666137799999944],[134.41859340000008,-6.665035499999931],[134.42665550000004,-6.658961799999929],[134.42725860000007,-6.656135099999972],[134.42460970000002,-6.649706099999946],[134.43086340000002,-6.651084199999957],[134.4283829000001,-6.647225799999944],[134.42898480000008,-6.646158799999967],[134.43466560000002,-6.652537799999948],[134.4385026000001,-6.654255699999965],[134.43973760000006,-6.653297499999951],[134.44522940000002,-6.646449399999938],[134.4423505000001,-6.646309099999939],[134.444003,-6.639799399999958],[134.442625,-6.645966699999974],[134.4456411000001,-6.6461072],[134.438982,-6.6546675],[134.44363770000007,-6.659813499999927],[134.4472039000001,-6.658583799999974],[134.4515278,-6.653996199999938],[134.4514637000001,-6.6499521],[134.45207760000005,-6.652763],[134.4520764,-6.653791199999944],[134.44816390000005,-6.658310699999959],[134.44761,-6.663176599999929],[134.4448625000001,-6.667971499999965],[134.44725770000002,-6.671675499999935],[134.457744,-6.674017699999979],[134.4642506,-6.679713899999967],[134.4630237,-6.673132399999929],[134.46744890000002,-6.6628143],[134.47139890000005,-6.6624487],[134.47181550000005,-6.657514],[134.47180980000007,-6.662860399999943],[134.48099390000004,-6.664789299999939],[134.48709740000004,-6.662739399999964],[134.49389010000004,-6.656988699999943],[134.49552540000002,-6.649947499999939],[134.4930442000001,-6.646260799999936],[134.4997293,-6.644896699999947],[134.50074060000009,-6.642958399999941],[134.50130520000005,-6.635484199999951],[134.50015540000004,-6.6352854],[134.5003196,-6.63277],[134.4965301000001,-6.630839599999945],[134.49975480000012,-6.627964],[134.49941490000003,-6.625221899999929],[134.50280370000007,-6.615206299999954],[134.50908690000006,-6.617100299999947],[134.51361620000011,-6.613240899999937],[134.51656960000003,-6.607143299999962],[134.523696,-6.609686299999964],[134.52863,-6.599869899999931],[134.52863580000007,-6.5937652],[134.531537,-6.583593399999927],[134.52434870000002,-6.574440299999935],[134.5211773000001,-6.575808199999926],[134.51928770000006,-6.5806901],[134.51191990000007,-6.580168899999933],[134.50877620000006,-6.581235099999958],[134.5036163000001,-6.586713499999973],[134.49216020000006,-6.582424899999978],[134.48859530000004,-6.583134099999938],[134.48662290000004,-6.581541799999968],[134.483868,-6.581631499999958],[134.48432630000002,-6.575288299999954],[134.48147480000011,-6.575449899999967],[134.4844912000001,-6.574849799999981],[134.48432830000002,-6.573369099999979],[134.47652920000007,-6.569075199999929],[134.47189060000005,-6.564363199999946],[134.4644859000001,-6.566658399999938],[134.45510350000006,-6.572186599999952],[134.44644170000004,-6.570641699999953],[134.443257,-6.574641099999951],[134.439376,-6.572873399999935],[134.443861,-6.573819299999968],[134.44556490000002,-6.5702021],[134.45515890000001,-6.571748],[134.46421220000002,-6.566164599999979],[134.47189130000004,-6.56376],[134.48003820000008,-6.569311899999946],[134.48941920000004,-6.5648251],[134.4969436,-6.552494799999977],[134.49650950000012,-6.547997899999928],[134.4879495,-6.554240399999969],[134.47380840000005,-6.549181],[134.4760027000001,-6.5481962],[134.47469030000002,-6.544849899999974],[134.48147130000007,-6.529950199999973],[134.48172850000003,-6.525445599999955],[134.485019,-6.524626499999954],[134.4896576000001,-6.530720199999962],[134.49104380000006,-6.530774099999974],[134.49323920000006,-6.5285281],[134.49872260000006,-6.528040099999942],[134.5043257000001,-6.522927699999968],[134.5032294,-6.516913],[134.5007657000001,-6.513346299999967],[134.50186070000007,-6.512642699999958],[134.50071570000011,-6.508520699999963],[134.4962769000001,-6.506377699999973],[134.49540290000004,-6.503196399999979],[134.49260870000012,-6.501274399999943],[134.49233550000008,-6.5002871],[134.49485750000008,-6.500289599999974],[134.493601,-6.495846699999959],[134.47960820000003,-6.490341299999955],[134.47770850000006,-6.486340499999926],[134.47942850000004,-6.479868099999976],[134.47448570000006,-6.473198399999944],[134.46858280000004,-6.452956799999981],[134.46548010000004,-6.4507044],[134.459484,-6.4509123],[134.4532733000001,-6.451548299999956],[134.45091160000004,-6.453690299999948],[134.44843040000012,-6.449368499999935],[134.43708650000008,-6.438718299999948],[134.430177,-6.430116299999952],[134.4197296000001,-6.410491599999943],[134.41436570000008,-6.407255199999952],[134.40940080000007,-6.400372799999957],[134.40487010000004,-6.397587599999952],[134.39594910000005,-6.396992],[134.39030450000007,-6.4007979],[134.3819757000001,-6.402023099999951],[134.38145410000004,-6.410069699999951],[134.3816032000001,-6.407728799999973],[134.3787903000001,-6.403077599999961],[134.3718268,-6.400944399999958],[134.36868690000006,-6.403422199999966],[134.368314,-6.3997376],[134.36624140000004,-6.398772899999926],[134.3656525,-6.3889107],[134.35834150000005,-6.392344099999946],[134.36102360000007,-6.387931599999945],[134.3602287000001,-6.3852059],[134.36154770000007,-6.381872199999975],[134.3526306000001,-6.377961899999946],[134.34905880000008,-6.380353299999967],[134.35172760000012,-6.386604599999941],[134.3515275000001,-6.3963287],[134.34797350000008,-6.394433599999957],[134.34758610000006,-6.397339299999942],[134.3398012,-6.398535699999968],[134.32877120000012,-6.408227],[134.32356240000001,-6.409371699999951],[134.3151653000001,-6.417311499999926],[134.3236727000001,-6.408823499999926],[134.32954030000008,-6.406912],[134.3378278,-6.3986429],[134.3393645000001,-6.388621199999932],[134.3371757000001,-6.385767],[134.3360782000001,-6.3866868],[134.3365635,-6.384450199999947],[134.33523550000007,-6.382493899999929],[134.33100130000003,-6.3793106],[134.32436230000008,-6.379281899999967],[134.32436570000004,-6.375388899999962],[134.32145320000006,-6.372102499999926],[134.32031040000004,-6.373111299999948],[134.32140020000008,-6.378025899999955],[134.31945110000004,-6.383615],[134.31902810000008,-6.381268899999952],[134.32113750000008,-6.377674599999978],[134.31891930000006,-6.371276699999953],[134.31671160000008,-6.369590599999981],[134.30987660000005,-6.370647799999972],[134.308201,-6.373502899999949],[134.3084238,-6.370816399999967],[134.31363360000012,-6.36863],[134.31467730000008,-6.366876699999978],[134.3113476000001,-6.354914199999939],[134.3046518000001,-6.356188299999928],[134.3007215,-6.3596414],[134.29806140000005,-6.360096499999941],[134.2989811000001,-6.358171],[134.29779440000004,-6.354040599999962],[134.29367630000002,-6.3476123],[134.2956997000001,-6.343302799999947],[134.29377750000003,-6.340639299999964],[134.29498560000002,-6.328896799999939],[134.29747340000006,-6.320183699999973],[134.30527940000002,-6.311753],[134.3098755000001,-6.303409699999975],[134.30379890000006,-6.293195199999957],[134.30035510000005,-6.289710199999945],[134.29537530000005,-6.289301699999953],[134.28935250000006,-6.2909],[134.27782650000006,-6.305342199999927],[134.2738091000001,-6.307880199999943],[134.28171540000005,-6.2989218],[134.28707810000003,-6.2908969],[134.28748330000008,-6.2880861],[134.2793322000001,-6.280712],[134.2723942,-6.267047599999955],[134.26709110000002,-6.261263499999927],[134.25005170000009,-6.259689199999968],[134.247355,-6.249608699999953],[134.2338271000001,-6.230598699999973],[134.2238662000001,-6.221863],[134.2122197000001,-6.2184966],[134.20328580000012,-6.224685399999942],[134.19920750000006,-6.216616399999964],[134.19065910000006,-6.213874399999952],[134.18251580000003,-6.214740199999937],[134.16698970000004,-6.210612599999934],[134.15670870000008,-6.206378899999947],[134.149156,-6.2012811],[134.14433070000007,-6.195939499999952],[134.14139490000002,-6.184132899999952],[134.1370366000001,-6.179451599999936],[134.13622870000006,-6.176757499999951],[134.13788090000003,-6.171856],[134.13380250000012,-6.16752],[134.127313,-6.167990399999951],[134.1213560000001,-6.161612599999955]]],[[[134.86352380000005,-6.157992299999933],[134.86151370000005,-6.159451099999956],[134.8624589000001,-6.161659899999961],[134.86482350000006,-6.160556199999974],[134.86352380000005,-6.157992299999933]]],[[[134.77468470000008,-6.149070399999971],[134.7749636000001,-6.146498899999926],[134.77378340000007,-6.1457338],[134.7710754000001,-6.144898599999976],[134.768783,-6.146635199999935],[134.76907810000012,-6.149250399999971],[134.77468470000008,-6.149070399999971]]],[[[134.88875610000002,-6.1383488],[134.87778850000007,-6.143300699999941],[134.87337330000003,-6.150674099999947],[134.87063780000005,-6.156443],[134.873103,-6.157174699999928],[134.87355910000008,-6.159459599999934],[134.8758871000001,-6.161287899999934],[134.88283660000002,-6.1572238],[134.88666390000003,-6.159453499999927],[134.88875610000002,-6.1383488]]],[[[134.264747,-6.125615099999948],[134.2679276,-6.123092499999927],[134.26828980000005,-6.118891699999949],[134.2659308000001,-6.121291399999961],[134.264747,-6.125615099999948]]],[[[134.28205590000005,-6.123078299999975],[134.27403540000012,-6.118757599999981],[134.27104250000002,-6.1198691],[134.26461060000008,-6.127237899999955],[134.2702766000001,-6.139208399999973],[134.2737006000001,-6.1383989],[134.27664740000012,-6.139646699999957],[134.28216370000007,-6.145545099999936],[134.2857110000001,-6.141349299999945],[134.28766940000003,-6.134024899999929],[134.286894,-6.128717],[134.28205590000005,-6.123078299999975]]],[[[134.2481315000001,-6.110397899999953],[134.24691630000007,-6.109563099999946],[134.2448005000001,-6.111739],[134.24300830000004,-6.111416],[134.2416601000001,-6.114105599999959],[134.24396360000003,-6.115006],[134.2481315000001,-6.110397899999953]]],[[[134.7921698,-6.092989399999965],[134.79070750000005,-6.092231599999934],[134.78687370000011,-6.094299899999953],[134.79085550000002,-6.100864199999933],[134.79408310000008,-6.101168399999949],[134.79453950000004,-6.094807699999933],[134.7921698,-6.092989399999965]]],[[[134.89731770000003,-6.078180199999963],[134.89534860000003,-6.073742799999934],[134.887038,-6.071769099999926],[134.8838981,-6.072754499999974],[134.8832817000001,-6.076575099999957],[134.8848819000001,-6.078547499999956],[134.88919140000007,-6.078301899999929],[134.89325420000011,-6.080151399999977],[134.89731770000003,-6.078180199999963]]],[[[134.86609220000003,-6.019899499999951],[134.866782,-6.018322099999978],[134.865517,-6.017331599999977],[134.86609220000003,-6.019899499999951]]],[[[134.86872080000012,-6.008420099999967],[134.8676468000001,-6.006953099999976],[134.86816290000002,-6.009842799999944],[134.86658720000003,-6.009349399999962],[134.86588740000002,-6.012428399999976],[134.8634455,-6.0127212],[134.86678240000003,-6.016645899999958],[134.86894990000008,-6.013688399999978],[134.86872080000012,-6.008420099999967]]],[[[134.15163070000006,-6.004182299999968],[134.14123370000004,-6.013311199999976],[134.12438610000004,-6.037837],[134.1217918000001,-6.052035499999931],[134.1249944000001,-6.0662629],[134.12233170000002,-6.072677399999975],[134.12182460000008,-6.081664],[134.11657820000005,-6.091966199999945],[134.11466560000008,-6.100749899999926],[134.11595980000004,-6.107577499999934],[134.1275806000001,-6.127811299999962],[134.13274390000004,-6.132381],[134.14024460000007,-6.143750599999976],[134.14613620000011,-6.146178199999952],[134.15047630000004,-6.151032699999973],[134.15163610000002,-6.149886699999968],[134.1504354000001,-6.148756499999934],[134.1511806000001,-6.1474901],[134.14656590000004,-6.145527],[134.1490152,-6.145617299999969],[134.15012120000006,-6.141543199999944],[134.14924010000004,-6.142528],[134.148094,-6.140294599999947],[134.149939,-6.137068699999929],[134.15235340000004,-6.136387099999979],[134.1567232000001,-6.138285699999926],[134.16354840000008,-6.132863799999939],[134.16426490000003,-6.130304599999931],[134.17284440000003,-6.131541],[134.17461090000006,-6.1285738],[134.1795962000001,-6.126639699999942],[134.1797768,-6.1213355],[134.18367940000007,-6.123040799999956],[134.18713330000003,-6.121576699999935],[134.195702,-6.127895499999966],[134.19982750000008,-6.127670399999943],[134.1987140000001,-6.134014199999967],[134.20016070000008,-6.136025599999925],[134.2002629000001,-6.1422765],[134.20215550000012,-6.144511799999975],[134.19656710000004,-6.144892499999969],[134.1880982,-6.1480625],[134.1866615,-6.1568253],[134.1830880000001,-6.157713599999965],[134.1819915000001,-6.160805499999981],[134.1782147,-6.163471299999969],[134.1754046000001,-6.162899799999934],[134.17663320000008,-6.163961299999926],[134.1756875000001,-6.164760799999954],[134.1691433000001,-6.166504299999929],[134.16926790000002,-6.169514399999969],[134.16802010000004,-6.169562199999973],[134.16766010000003,-6.172484399999973],[134.16555030000006,-6.173901399999977],[134.1630216000001,-6.180849899999941],[134.16402070000004,-6.187239299999931],[134.167978,-6.191737899999964],[134.1795102000001,-6.200151],[134.1838951000001,-6.196645499999931],[134.1899763,-6.198878599999944],[134.20139590000008,-6.199871],[134.2036938000001,-6.199028699999928],[134.20730250000008,-6.194092499999954],[134.215384,-6.1906222],[134.221238,-6.196999499999947],[134.22459290000006,-6.203739199999973],[134.22843980000005,-6.202782699999943],[134.23418270000002,-6.220349699999929],[134.24209440000004,-6.234311799999944],[134.2536163000001,-6.2451522],[134.2735454000001,-6.260574],[134.28222660000006,-6.277089699999976],[134.28818910000007,-6.284069399999964],[134.29684350000002,-6.285293599999932],[134.29843920000008,-6.2829055],[134.3072744000001,-6.277953399999944],[134.30992860000003,-6.277956899999936],[134.3128153,-6.275692099999958],[134.31461920000004,-6.2764381],[134.31737170000008,-6.282497099999944],[134.32638840000004,-6.288457899999969],[134.33540950000008,-6.301429199999973],[134.33721850000006,-6.312558699999954],[134.35617130000003,-6.318784599999958],[134.36363970000002,-6.3240837],[134.3680028000001,-6.3236688],[134.3725836000001,-6.318204699999967],[134.37136240000007,-6.313180099999954],[134.37750330000006,-6.309057399999972],[134.38620260000005,-6.311300199999948],[134.3932364000001,-6.306099499999959],[134.40887390000012,-6.290117499999951],[134.42280590000007,-6.280991],[134.42595010000002,-6.283215699999971],[134.439118,-6.279434699999968],[134.44838640000012,-6.270737699999927],[134.43845650000003,-6.272066699999925],[134.42530180000006,-6.264015299999926],[134.4154820000001,-6.2628211],[134.4045532,-6.263657299999977],[134.39323480000007,-6.260864],[134.3912914000001,-6.252367899999967],[134.39207910000005,-6.246452599999941],[134.38985130000003,-6.243659399999956],[134.38115160000007,-6.2427563],[134.38238120000005,-6.240525199999979],[134.38126810000006,-6.238514599999974],[134.37457910000012,-6.235269599999981],[134.3711277000001,-6.229795799999977],[134.36689300000012,-6.226442],[134.35710270000004,-6.2232765],[134.34459060000006,-6.227569299999971],[134.34130990000006,-6.227719],[134.338365,-6.225806899999952],[134.32843040000012,-6.210543799999925],[134.32731400000011,-6.211323799999946],[134.32653870000001,-6.206969399999934],[134.3111725000001,-6.1867457],[134.31396160000008,-6.186191199999939],[134.30998480000005,-6.179495499999973],[134.3104065000001,-6.175359],[134.30650780000008,-6.171558699999935],[134.2988762000001,-6.168480199999976],[134.290011,-6.161037199999953],[134.282992,-6.158738299999925],[134.277413,-6.160469299999932],[134.27629550000006,-6.162142199999948],[134.27628130000005,-6.172634799999969],[134.2724872000001,-6.174080699999934],[134.27185310000004,-6.183258599999931],[134.27159530000006,-6.173856199999932],[134.27527780000003,-6.172410099999979],[134.27417370000012,-6.164148499999953],[134.26778750000005,-6.158814699999937],[134.2698779000001,-6.1473272],[134.26307960000008,-6.1435327],[134.25401620000002,-6.143135599999937],[134.24498640000002,-6.140555599999971],[134.24532750000003,-6.135867899999937],[134.2439915000001,-6.134303299999942],[134.23941890000003,-6.134408399999927],[134.23659070000008,-6.1316154],[134.23338300000012,-6.126846299999954],[134.23263440000005,-6.121562199999971],[134.23330670000007,-6.119330699999978],[134.23877570000002,-6.116101399999934],[134.24190190000002,-6.101156],[134.24582320000002,-6.092032699999947],[134.2493035000001,-6.087690499999951],[134.25231070000007,-6.086317],[134.2518956,-6.084100199999966],[134.25431890000004,-6.085650099999953],[134.2569966000001,-6.084649199999944],[134.2642585000001,-6.074613],[134.26448520000008,-6.071934299999953],[134.26864520000004,-6.072443799999974],[134.27709360000006,-6.066146899999978],[134.27966290000006,-6.06269],[134.2791099000001,-6.059228899999937],[134.27436790000002,-6.0540995],[134.2704179000001,-6.055087199999946],[134.2614797000001,-6.062991499999953],[134.262019,-6.065129299999967],[134.2599014000001,-6.069061199999965],[134.25224260000005,-6.071306399999969],[134.25028470000007,-6.073157499999979],[134.2472064000001,-6.072745299999951],[134.245188,-6.075139599999943],[134.24107830000003,-6.064646499999981],[134.23447260000012,-6.060658],[134.22971760000007,-6.055365799999947],[134.2288413000001,-6.044313899999963],[134.2321952000001,-6.038067799999965],[134.23254580000003,-6.026571099999956],[134.22696410000003,-6.022444299999961],[134.2279873000001,-6.017411599999946],[134.22531370000002,-6.015733499999953],[134.21182090000002,-6.016830399999947],[134.2026208000001,-6.020684299999971],[134.19702040000004,-6.018497],[134.19321720000005,-6.025225199999966],[134.19615180000005,-6.034969499999931],[134.19265180000002,-6.0380679],[134.1909902000001,-6.038207499999942],[134.19039390000012,-6.036810899999978],[134.18506880000007,-6.037680499999965],[134.18285880000008,-6.036027899999965],[134.1793858000001,-6.037744399999951],[134.1766500000001,-6.034481099999937],[134.17022610000004,-6.040179399999943],[134.1660548000001,-6.038103],[134.1624243000001,-6.040916799999934],[134.1597597000001,-6.038163],[134.15861160000009,-6.031940099999929],[134.15632260000007,-6.031036699999959],[134.15522180000005,-6.026211199999977],[134.1557388000001,-6.0163],[134.15875270000004,-6.014072299999953],[134.1595374000001,-6.011283],[134.15675810000005,-6.006032499999947],[134.15336020000007,-6.006127599999957],[134.15163070000006,-6.004182299999968]]],[[[134.68167460000006,-5.963985199999968],[134.68069360000004,-5.9612369],[134.6780744,-5.959686199999965],[134.67856970000003,-5.962400299999956],[134.68167460000006,-5.963985199999968]]],[[[134.69005950000007,-5.965601299999946],[134.6892491000001,-5.960704599999929],[134.678957,-5.956673199999955],[134.68301910000002,-5.9631153],[134.69005950000007,-5.965601299999946]]],[[[134.86236930000007,-5.953377199999977],[134.8590464,-5.950295099999948],[134.8553534,-5.950417399999935],[134.85325950000004,-5.955100399999935],[134.85350460000006,-5.959414199999969],[134.85522730000002,-5.962002899999959],[134.8612588000001,-5.963606699999957],[134.8622441000001,-5.961758199999963],[134.8643369,-5.961389],[134.8633529000001,-5.958061],[134.864708,-5.953870799999947],[134.86236930000007,-5.953377199999977]]],[[[134.74877260000005,-5.951202499999965],[134.74779050000006,-5.950116499999979],[134.7385402000001,-5.951667],[134.7418752000001,-5.956593099999964],[134.745568,-5.957222399999978],[134.74936700000012,-5.960424299999943],[134.74877260000005,-5.951202499999965]]],[[[134.7976685000001,-5.948636599999929],[134.7964736,-5.947279399999957],[134.796782,-5.949326499999927],[134.7976685000001,-5.948636599999929]]],[[[134.65935290000004,-5.935210699999971],[134.65737940000008,-5.930511099999933],[134.65547440000012,-5.933902199999977],[134.65935290000004,-5.935210699999971]]],[[[134.72619720000012,-5.9264955],[134.7277954000001,-5.926044],[134.72632190000002,-5.925466599999936],[134.72619720000012,-5.9264955]]],[[[134.56936860000008,-5.935304199999962],[134.561259,-5.930220399999939],[134.5548411000001,-5.923445299999969],[134.53659,-5.918522199999927],[134.53084060000003,-5.921394599999928],[134.51950750000003,-5.930862799999943],[134.5142595000001,-5.9399976],[134.50783030000002,-5.946592499999952],[134.49842260000003,-5.952982899999938],[134.4981597000001,-5.9582788],[134.49841560000004,-5.960604099999955],[134.49996080000005,-5.963964],[134.4981580000001,-5.960216299999956],[134.4975148000001,-5.958149],[134.4975191000001,-5.953369599999974],[134.4873639000001,-5.9606214],[134.4764851000001,-5.9585169],[134.47441890000005,-5.960581699999977],[134.469617,-5.958235199999933],[134.46690390000003,-5.967033399999934],[134.46740440000008,-5.973973],[134.46537190000004,-5.9780329],[134.4562360000001,-5.98564],[134.45047870000008,-5.995281299999931],[134.4416778000001,-6.005427099999963],[134.43913250000003,-6.014733],[134.4330423,-6.018788599999937],[134.4179898000001,-6.024865599999941],[134.40814480000006,-6.024968199999932],[134.39619730000004,-6.021600199999966],[134.38977340000008,-6.021960599999943],[134.38163510000004,-6.018772],[134.380279,-6.021479499999941],[134.38129160000005,-6.023343],[134.387375,-6.027921299999946],[134.3922692000001,-6.037238899999977],[134.3995331000001,-6.045035299999938],[134.40003790000003,-6.047406199999955],[134.40274220000003,-6.049102299999959],[134.40477310000006,-6.047919299999933],[134.4106905000001,-6.049957499999948],[134.41475090000006,-6.048776699999962],[134.42388140000003,-6.051326199999949],[134.42706950000002,-6.053231399999959],[134.4267522,-6.055562],[134.4291174000001,-6.058104199999946],[134.43047300000012,-6.055735299999981],[134.44447230000003,-6.068075199999953],[134.438915,-6.064714399999957],[134.43064120000008,-6.056582],[134.42946590000008,-6.058948599999951],[134.4259065000001,-6.055561099999977],[134.42624620000004,-6.054207],[134.42455670000004,-6.052512099999944],[134.4149192000001,-6.049623499999939],[134.4100132000001,-6.050634099999968],[134.40697010000008,-6.049445599999956],[134.4003732000001,-6.0501156],[134.39841890000002,-6.045349599999952],[134.3943954,-6.043787499999951],[134.39608910000004,-6.041622199999949],[134.3947019000001,-6.041993199999979],[134.39352010000005,-6.040129499999978],[134.3926394,-6.041178199999933],[134.3872047000001,-6.028937],[134.38578030000008,-6.028662199999928],[134.3848538000001,-6.031427599999972],[134.3854216000001,-6.028231799999958],[134.3843515000001,-6.026957399999958],[134.3837724000001,-6.030579899999964],[134.3837096000001,-6.026279399999964],[134.37820130000011,-6.021871199999964],[134.37332960000003,-6.022881499999926],[134.37292160000004,-6.024675599999966],[134.37261840000008,-6.023693299999934],[134.36439170000006,-6.030898499999978],[134.35868770000002,-6.0403216],[134.35943180000004,-6.040920099999937],[134.35335810000004,-6.0413354],[134.34902060000002,-6.044451799999933],[134.348646,-6.048313599999972],[134.34658250000007,-6.050215799999933],[134.34177280000006,-6.050660899999968],[134.33800140000005,-6.0582787],[134.3440098000001,-6.044036399999925],[134.3472279,-6.040904799999964],[134.34638710000002,-6.036882799999944],[134.3427474,-6.032635599999935],[134.3260511000001,-6.022862599999939],[134.3115897,-6.0260254],[134.306082,-6.029214099999933],[134.2915624000001,-6.040814499999954],[134.29501090000008,-6.047065099999941],[134.28955410000003,-6.041654],[134.28269970000008,-6.044337599999949],[134.28259350000008,-6.046439499999963],[134.2841356,-6.046658299999933],[134.28036960000009,-6.047879199999954],[134.27939620000006,-6.049658799999975],[134.28141970000001,-6.054185199999949],[134.2851545000001,-6.057784899999945],[134.2856194000001,-6.063327499999957],[134.29091240000002,-6.066743499999973],[134.2914879000001,-6.071510099999955],[134.28614670000002,-6.071007399999928],[134.28163510000002,-6.076654699999949],[134.27784910000003,-6.077949299999943],[134.27751480000006,-6.080390299999976],[134.27481690000002,-6.0833321],[134.2769733,-6.088383599999929],[134.27310080000007,-6.086897199999953],[134.2718850000001,-6.087958399999934],[134.270585,-6.091937199999961],[134.27047170000003,-6.097161899999946],[134.2722609000001,-6.1009654],[134.2711236,-6.111879699999974],[134.2731619000001,-6.117355],[134.28205790000004,-6.121220199999925],[134.28750060000004,-6.126193799999953],[134.28799920000006,-6.1376015],[134.28352170000005,-6.145933499999956],[134.2896234000001,-6.149198099999978],[134.2890966000001,-6.150932499999954],[134.29431380000005,-6.155424699999969],[134.29764760000012,-6.155388],[134.3003334000001,-6.161938299999974],[134.30498480000006,-6.164358399999969],[134.31238120000012,-6.171463199999948],[134.31603270000005,-6.1784047],[134.31559630000004,-6.183939],[134.32140980000008,-6.192228799999953],[134.32267990000003,-6.197414699999968],[134.32472370000005,-6.198327499999948],[134.3283252000001,-6.2048563],[134.33172430000002,-6.20624],[134.33244810000008,-6.210204099999942],[134.33497350000005,-6.210082899999975],[134.336795,-6.208100799999954],[134.34201940000003,-6.209051399999964],[134.34405430000004,-6.212689199999943],[134.34537260000002,-6.220170499999938],[134.34928160000004,-6.220525799999962],[134.3532288,-6.212689199999943],[134.3595729000001,-6.208089199999961],[134.3632623000001,-6.207748799999933],[134.36818570000003,-6.210027499999967],[134.37032910000005,-6.212839799999927],[134.369633,-6.218662199999926],[134.371343,-6.2201398],[134.3696341000001,-6.225329099999954],[134.37313560000007,-6.2296866],[134.38171820000002,-6.235166399999969],[134.38395650000007,-6.228918],[134.3871904,-6.229703099999938],[134.39142070000003,-6.236963699999933],[134.39675440000008,-6.254941599999938],[134.400025,-6.257786],[134.42457610000008,-6.259888199999978],[134.43202230000009,-6.265740899999969],[134.44124920000002,-6.268497599999932],[134.443482,-6.266937199999973],[134.43869040000004,-6.262833699999931],[134.4383395000001,-6.259605499999964],[134.44627390000005,-6.263853299999937],[134.4541934,-6.264827499999967],[134.4597771000001,-6.259028699999931],[134.467545,-6.258172399999978],[134.46779750000007,-6.261967099999936],[134.465994,-6.260584199999926],[134.46418790000007,-6.261857199999952],[134.46196,-6.260261399999933],[134.4576,-6.267162299999939],[134.46232980000002,-6.271756799999935],[134.476074,-6.295547799999952],[134.48150120000003,-6.297466],[134.48618780000004,-6.296936399999936],[134.49410960000012,-6.290375899999958],[134.50168840000003,-6.2936747],[134.5048094000001,-6.29658],[134.50469570000007,-6.298812399999974],[134.5111534,-6.3126604],[134.520855,-6.323865],[134.523946,-6.3213956],[134.52827660000003,-6.314188799999954],[134.54537870000001,-6.3008125],[134.54493720000005,-6.290660199999934],[134.5472311000001,-6.301638199999957],[134.53911390000007,-6.320488799999964],[134.54514670000003,-6.330685599999981],[134.5410240000001,-6.335626499999933],[134.5415177000001,-6.340264499999932],[134.54569850000007,-6.349470799999949],[134.55296160000012,-6.352673299999935],[134.5693189000001,-6.3557057],[134.57250790000012,-6.354365299999927],[134.57400330000007,-6.351506699999959],[134.5682144000001,-6.348628399999939],[134.5668455000001,-6.346982099999934],[134.5676903000001,-6.344441199999949],[134.56855870000004,-6.346503799999937],[134.57707030000006,-6.350049499999955],[134.59170340000003,-6.353347499999927],[134.61262280000005,-6.3703116],[134.62287330000004,-6.373322799999926],[134.6269181,-6.370035499999972],[134.62880660000008,-6.3573144],[134.62110740000003,-6.338131399999952],[134.6325442000001,-6.359042799999941],[134.63918310000008,-6.356153599999971],[134.637983,-6.350210299999958],[134.64176710000004,-6.353496399999926],[134.655683,-6.346116399999971],[134.67764410000007,-6.344645],[134.68675410000003,-6.339176299999963],[134.70076480000012,-6.327824199999952],[134.70458280000003,-6.324428499999954],[134.7050984000001,-6.321287299999938],[134.70909670000003,-6.318361899999957],[134.70971520000012,-6.314372499999934],[134.70790150000005,-6.310722],[134.70190580000008,-6.312393799999938],[134.69904740000004,-6.315665799999977],[134.70001580000007,-6.3125835],[134.6966334000001,-6.311130699999978],[134.69476340000006,-6.306172799999956],[134.69011410000007,-6.301757299999963],[134.69082660000004,-6.297314699999959],[134.69074870000009,-6.301319399999954],[134.69414590000008,-6.303134899999975],[134.69467530000009,-6.301850599999966],[134.69626030000006,-6.303438399999948],[134.70736380000005,-6.299288799999943],[134.7186114000001,-6.307606799999974],[134.72571140000002,-6.305419299999926],[134.72699660000012,-6.302775299999951],[134.72492050000005,-6.301489699999934],[134.72903630000008,-6.301416299999971],[134.741438,-6.267499699999973],[134.73443110000005,-6.262276499999928],[134.7258991000001,-6.264447],[134.7384333000001,-6.259754799999939],[134.74164770000004,-6.260342699999967],[134.74274850000006,-6.260877],[134.75169330000006,-6.244902399999944],[134.74923190000004,-6.241168099999925],[134.741694,-6.238325499999974],[134.7503881,-6.239617399999929],[134.75341650000007,-6.237346699999932],[134.75606820000007,-6.231289],[134.75615740000012,-6.226309199999946],[134.7578956000001,-6.22718],[134.75930040000003,-6.218628399999943],[134.764783,-6.205921099999955],[134.7636854000001,-6.1987331],[134.75760490000005,-6.1902622],[134.76025030000005,-6.188120899999944],[134.764809,-6.179705199999944],[134.76766670000006,-6.177832699999954],[134.7679098000001,-6.171543699999972],[134.76692850000006,-6.171165499999972],[134.7689855000001,-6.165423299999929],[134.7672377,-6.159073099999944],[134.7646486000001,-6.155533199999979],[134.76200340000003,-6.1549386],[134.7451694,-6.162189199999943],[134.7358561000001,-6.171854099999962],[134.74120030000006,-6.163922],[134.73045080000009,-6.169409199999961],[134.72289590000003,-6.169697199999973],[134.70676120000007,-6.183705],[134.70349290000001,-6.188092299999937],[134.6944085,-6.193767399999956],[134.6922032000001,-6.191604699999971],[134.68911630000002,-6.191282599999965],[134.6831502000001,-6.192746399999976],[134.67555370000002,-6.188834499999928],[134.6839182000001,-6.191064899999958],[134.69576790000008,-6.189734399999963],[134.7027197000001,-6.184656199999949],[134.7057678000001,-6.179762499999981],[134.69550690000005,-6.178678299999945],[134.70652560000008,-6.177869499999929],[134.7122031,-6.174464499999942],[134.71327580000002,-6.1700522],[134.7101514000001,-6.165717599999937],[134.71063520000007,-6.160662699999932],[134.70871380000006,-6.155606499999976],[134.70150150000006,-6.150066],[134.6998202000001,-6.145972799999981],[134.7007089000001,-6.143959399999972],[134.7015027000001,-6.147899499999937],[134.71183970000004,-6.157052599999929],[134.71224870000003,-6.163563799999963],[134.71498010000005,-6.162423199999978],[134.71956050000006,-6.164113399999962],[134.72087190000002,-6.163942899999938],[134.719534,-6.161148899999944],[134.72053640000001,-6.157049499999971],[134.72744260000002,-6.1508454],[134.72759830000007,-6.147456099999943],[134.72867430000008,-6.150383799999929],[134.72318470000005,-6.157429499999978],[134.723998,-6.160459699999933],[134.7288588,-6.160083199999974],[134.73853740000004,-6.155862699999943],[134.74854040000002,-6.145702899999947],[134.75323860000003,-6.144626099999925],[134.7617802000001,-6.1387728],[134.76510580000001,-6.130009],[134.76060170000005,-6.123933199999954],[134.75740550000012,-6.123766199999977],[134.7551251000001,-6.121592899999939],[134.7671580000001,-6.123324699999955],[134.76908290000006,-6.121159],[134.7694080000001,-6.117934499999933],[134.76682530000005,-6.114494699999966],[134.76980630000003,-6.116199699999925],[134.7729452000001,-6.1151941],[134.7771345000001,-6.107573],[134.776278,-6.105502799999954],[134.78278840000007,-6.094752599999936],[134.78057230000002,-6.087482199999954],[134.77603420000003,-6.0852086],[134.77063210000006,-6.087890199999947],[134.7636020000001,-6.086183399999925],[134.76877560000003,-6.086345799999947],[134.7729322,-6.0837285],[134.7735411000001,-6.075657199999966],[134.76436250000006,-6.06758],[134.75392120000004,-6.063281599999925],[134.7559936,-6.059811599999932],[134.753903,-6.0543877],[134.7550169000001,-6.047626399999956],[134.74479780000001,-6.042305],[134.74266480000006,-6.043875599999978],[134.74266020000005,-6.053504399999952],[134.73679320000008,-6.057060399999955],[134.74109850000002,-6.054381699999965],[134.742427,-6.038338799999963],[134.74102720000008,-6.033229799999958],[134.72703620000004,-6.022998499999972],[134.72020540000005,-6.028823799999941],[134.71895840000002,-6.034972],[134.71856350000007,-6.030739499999925],[134.71681910000007,-6.030567],[134.7115176000001,-6.033444],[134.702973,-6.033469099999934],[134.69996390000006,-6.034836399999961],[134.6999604,-6.041133599999966],[134.6931161000001,-6.053450299999952],[134.6819025000001,-6.053443799999968],[134.69256940000002,-6.052902399999937],[134.69859310000004,-6.040859],[134.69750120000003,-6.037025399999948],[134.69996520000007,-6.032372299999963],[134.7130366,-6.030186299999968],[134.71795550000002,-6.027538099999958],[134.7221197,-6.021102499999927],[134.71493820000012,-6.010495699999979],[134.71153390000006,-6.010493899999972],[134.70775270000001,-6.007841099999951],[134.6882289,-5.990475899999979],[134.67483420000008,-5.981433],[134.6617116000001,-5.975401699999964],[134.66335590000006,-5.969653199999925],[134.65543090000006,-5.961160799999959],[134.64640070000007,-5.970737699999972],[134.64721880000002,-5.974297499999977],[134.64392850000002,-5.987984799999936],[134.64062840000008,-5.988886799999932],[134.6376351,-5.993456399999957],[134.6367994000001,-6.016454099999976],[134.63708830000007,-5.993182299999944],[134.64013740000007,-5.987763799999925],[134.64338220000002,-5.986889299999973],[134.64639810000006,-5.974844499999961],[134.64448650000008,-5.9707365],[134.65309060000004,-5.959993399999973],[134.65835390000007,-5.957373299999972],[134.65712760000008,-5.956641399999967],[134.6586473000001,-5.9551801],[134.65706180000006,-5.953853199999969],[134.66118140000003,-5.951254399999925],[134.65998170000012,-5.947342],[134.65571520000003,-5.943638399999941],[134.648606,-5.9430864],[134.6360320000001,-5.936233499999958],[134.63138330000004,-5.936504199999945],[134.6231765000001,-5.941700699999956],[134.6155182000001,-5.944433299999957],[134.61551480000003,-5.949361499999952],[134.6209758000001,-5.960864399999934],[134.61469440000008,-5.949360899999931],[134.61415150000005,-5.943611],[134.6081365000001,-5.942511599999932],[134.6023914000001,-5.946340499999963],[134.5881578000001,-5.965769],[134.5777594000001,-5.975069899999937],[134.5703751000001,-5.976159299999949],[134.569004,-5.981086399999981],[134.56297870000003,-5.9925806],[134.56654090000006,-5.983548499999927],[134.56873030000008,-5.98136],[134.56846030000008,-5.9769792],[134.5701034000001,-5.973968799999966],[134.57311290000007,-5.972054599999979],[134.57694030000005,-5.9734265],[134.58542320000004,-5.965766899999949],[134.59746760000007,-5.948801],[134.5968011000001,-5.942512499999964],[134.59374,-5.940539],[134.58872320000012,-5.940854799999954],[134.58434510000006,-5.944958299999939],[134.5814345000001,-5.952669599999979],[134.58414990000006,-5.944668499999977],[134.58805070000005,-5.94049],[134.587774,-5.938259699999946],[134.57917140000006,-5.936835],[134.57322920000001,-5.937955599999952],[134.56936860000008,-5.935304199999962]]],[[[134.1805237000001,-5.919524899999942],[134.1718496000001,-5.917841299999964],[134.16830930000003,-5.914202199999977],[134.164966,-5.918332199999952],[134.16667040000004,-5.922261],[134.17401130000007,-5.922856799999977],[134.1805237000001,-5.919524899999942]]],[[[134.71995850000008,-5.913731599999949],[134.71894880000002,-5.911622099999931],[134.71721530000002,-5.911672099999976],[134.71995850000008,-5.913731599999949]]],[[[134.76210930000002,-5.908626799999979],[134.760483,-5.9091011],[134.76407,-5.912025699999958],[134.76474640000004,-5.9150508],[134.7662193000001,-5.916872],[134.76842710000005,-5.9169945],[134.7689193000001,-5.914764199999979],[134.76581580000004,-5.909643299999971],[134.76210930000002,-5.908626799999979]]],[[[134.63476680000008,-5.928971799999943],[134.6290269000001,-5.922857199999953],[134.62687610000012,-5.918182899999977],[134.631906,-5.912075499999958],[134.6272418000001,-5.908118399999978],[134.62436880000007,-5.909913699999947],[134.6219351000001,-5.916957099999934],[134.61178790000008,-5.933629099999962],[134.61860580000007,-5.937947299999962],[134.63476680000008,-5.928971799999943]]],[[[134.7350566,-5.903228299999967],[134.7340571000001,-5.903442699999971],[134.73442850000004,-5.905930599999976],[134.7365109000001,-5.908413699999926],[134.7350566,-5.903228299999967]]],[[[134.74484730000006,-5.903560899999945],[134.7449219,-5.900965699999972],[134.74185540000008,-5.901942499999961],[134.74309090000008,-5.904244199999937],[134.74484730000006,-5.903560899999945]]],[[[134.7895648000001,-5.895062799999948],[134.7862818000001,-5.894055199999968],[134.7817153000001,-5.897920699999929],[134.77824910000004,-5.896076099999959],[134.77593080000008,-5.897420799999963],[134.7760763000001,-5.900575799999956],[134.77397530000007,-5.901793399999974],[134.7755135000001,-5.910094],[134.77771870000004,-5.909447499999942],[134.77692030000003,-5.908016699999962],[134.779201,-5.909041],[134.77836050000008,-5.9070278],[134.77970430000005,-5.907243199999925],[134.779479,-5.905925799999977],[134.7810029000001,-5.907399199999929],[134.7837419000001,-5.906170599999939],[134.78466460000004,-5.907437399999935],[134.78734670000006,-5.907404499999927],[134.7858649000001,-5.9064286],[134.78679410000007,-5.905555499999934],[134.78562910000005,-5.902827],[134.78731730000004,-5.903025499999956],[134.78732090000005,-5.901190799999938],[134.78923440000005,-5.902848199999937],[134.78826950000007,-5.901131799999973],[134.7904688000001,-5.9008839],[134.78840320000006,-5.898358599999938],[134.7895648000001,-5.895062799999948]]],[[[134.72707120000007,-5.894460899999956],[134.72793680000007,-5.8908711],[134.7265923000001,-5.892329199999949],[134.72707120000007,-5.894460899999956]]],[[[134.77798930000006,-5.877368299999944],[134.77619390000007,-5.877164],[134.77574130000005,-5.879583699999955],[134.77802210000004,-5.88015],[134.77989190000005,-5.877736499999969],[134.77798930000006,-5.877368299999944]]],[[[134.77230280000003,-5.8770765],[134.7718072,-5.874017599999945],[134.76800790000004,-5.872546],[134.77060290000009,-5.877918299999976],[134.77230280000003,-5.8770765]]],[[[134.65133320000007,-5.894574899999952],[134.64919270000007,-5.891166],[134.65058380000005,-5.8836575],[134.64846340000008,-5.874734899999964],[134.6456131000001,-5.871601599999963],[134.6415174000001,-5.870968],[134.62941580000006,-5.877925599999969],[134.6229486000001,-5.886548199999936],[134.61073750000003,-5.895526199999949],[134.60175170000002,-5.911695299999963],[134.59312980000004,-5.920315899999935],[134.5877352000001,-5.933611699999972],[134.60340340000005,-5.939826],[134.60852440000008,-5.935887499999978],[134.6247297000001,-5.907038299999954],[134.62831330000006,-5.906795299999942],[134.63226570000006,-5.910997399999928],[134.6348752,-5.910024699999951],[134.65133320000007,-5.894574899999952]]],[[[134.78884360000006,-5.870324099999948],[134.78367350000008,-5.8732763],[134.785245,-5.875662899999952],[134.78827400000011,-5.876028699999949],[134.7906517,-5.874401299999931],[134.78884360000006,-5.870324099999948]]],[[[134.76652510000008,-5.869973899999934],[134.76829140000007,-5.872128799999928],[134.76814530000001,-5.870313799999963],[134.76652510000008,-5.869973899999934]]],[[[134.7718728000001,-5.867669299999932],[134.77056920000007,-5.866260899999929],[134.7710651000001,-5.868421],[134.76894240000001,-5.8679112],[134.77229480000005,-5.871338899999955],[134.7718728000001,-5.867669299999932]]],[[[134.80147420000003,-5.867600299999935],[134.79582290000008,-5.866402499999936],[134.79530180000006,-5.871103599999969],[134.79801730000008,-5.871735],[134.79106390000004,-5.8743223],[134.7828234000001,-5.881296099999929],[134.78384430000006,-5.884163],[134.78242550000004,-5.888301199999944],[134.78669360000004,-5.889569299999948],[134.78679450000004,-5.891372899999965],[134.78966750000006,-5.894008799999938],[134.79251910000005,-5.893438799999956],[134.79460340000003,-5.891325],[134.79422570000008,-5.889758699999959],[134.7949989000001,-5.890595799999971],[134.79391060000012,-5.886626299999932],[134.79707910000002,-5.884190599999954],[134.7954986000001,-5.882889599999942],[134.79796610000005,-5.882432599999959],[134.7998288000001,-5.884016299999928],[134.80124260000002,-5.877904899999976],[134.80496960000005,-5.876159199999961],[134.802068,-5.8748973],[134.80152110000006,-5.872669499999972],[134.7983137000001,-5.871910299999968],[134.7999678000001,-5.872272799999962],[134.8000588000001,-5.870695399999931],[134.8024468000001,-5.871428399999957],[134.80264490000002,-5.870142199999975],[134.80406460000006,-5.870931399999961],[134.80604770000002,-5.867183599999976],[134.80147420000003,-5.867600299999935]]],[[[134.76028910000002,-5.866491699999926],[134.75935260000006,-5.864648099999954],[134.7577378000001,-5.864760499999932],[134.76028910000002,-5.866491699999926]]],[[[134.32062120000012,-5.863885499999981],[134.32272160000002,-5.861403699999926],[134.31902560000003,-5.859163299999977],[134.31742050000003,-5.8623459],[134.32062120000012,-5.863885499999981]]],[[[134.75567690000003,-5.859559299999944],[134.75233750000007,-5.858214099999941],[134.75610140000003,-5.863579399999935],[134.761504,-5.865043299999968],[134.75810150000007,-5.860318],[134.75567690000003,-5.859559299999944]]],[[[134.76354390000006,-5.849134399999969],[134.75794580000002,-5.849739799999952],[134.75398890000008,-5.851916399999936],[134.75166090000005,-5.856201],[134.7524056000001,-5.857614799999965],[134.75783150000007,-5.859611499999971],[134.76535510000008,-5.865387299999952],[134.76719910000008,-5.864169699999934],[134.765958,-5.861520299999938],[134.76663730000007,-5.857297099999926],[134.76958360000003,-5.852529199999935],[134.76354390000006,-5.849134399999969]]],[[[134.7655830000001,-5.847031899999934],[134.7640874000001,-5.845646099999954],[134.7638442000001,-5.846675],[134.7655830000001,-5.847031899999934]]],[[[134.7697346000001,-5.842261699999938],[134.76879810000003,-5.840514299999938],[134.76834510000003,-5.843906499999946],[134.7697346000001,-5.842261699999938]]],[[[134.77324790000011,-5.838745699999947],[134.7696962000001,-5.840056],[134.77352330000008,-5.841917699999954],[134.77324790000011,-5.838745699999947]]],[[[134.75069120000012,-5.844034299999976],[134.7425002000001,-5.842295199999967],[134.73541330000012,-5.837874699999929],[134.7243879,-5.834004299999947],[134.7057509000001,-5.831703299999958],[134.70296440000004,-5.832889],[134.69815470000003,-5.8421943],[134.6931135000001,-5.842507099999978],[134.68807060000006,-5.845817299999965],[134.681946,-5.844873699999937],[134.67264380000006,-5.846282799999926],[134.6729372000001,-5.849733899999933],[134.6712625,-5.851310599999977],[134.65954280000005,-5.856233499999973],[134.66042740000012,-5.858797699999968],[134.6550118,-5.859287399999971],[134.6463414000001,-5.868550299999981],[134.65027650000002,-5.874074299999961],[134.65140220000012,-5.884920099999931],[134.64969730000007,-5.890535199999931],[134.65221480000002,-5.895585099999948],[134.649628,-5.900442399999974],[134.64824210000006,-5.899684299999933],[134.64509650000002,-5.901806699999952],[134.62811010000007,-5.918131499999959],[134.62897820000012,-5.9200445],[134.63406870000006,-5.924096],[134.63742460000003,-5.929978199999937],[134.64304960000004,-5.928444],[134.65461730000004,-5.931911499999956],[134.6576457000001,-5.929092099999934],[134.6666887,-5.933852499999944],[134.6683184000001,-5.937602],[134.67320130000007,-5.940081299999974],[134.679275,-5.953750299999967],[134.69374430000005,-5.960345299999972],[134.6953052,-5.956134],[134.7001673000001,-5.966381499999954],[134.706038,-5.970495099999937],[134.70619510000006,-5.972293099999945],[134.7118792000001,-5.977243199999975],[134.72135480000009,-5.977779599999963],[134.72302170000012,-5.975807199999963],[134.73307740000007,-5.9797021],[134.73677340000006,-5.973942499999964],[134.7388972000001,-5.972942799999942],[134.741097,-5.966413599999953],[134.74562550000007,-5.967314699999974],[134.73636840000006,-5.958772899999929],[134.731838,-5.950329499999953],[134.7351179000001,-5.952202499999942],[134.73434540000005,-5.949799199999973],[134.73624790000008,-5.951010099999962],[134.73650880000002,-5.948584699999969],[134.73466930000006,-5.945609799999943],[134.73638670000003,-5.944084099999941],[134.74023750000003,-5.944685299999946],[134.7400033,-5.938409299999933],[134.74830280000003,-5.941160899999943],[134.74849530000006,-5.9400868],[134.74479270000006,-5.9364666],[134.72841,-5.927876199999957],[134.72258220000003,-5.928800499999966],[134.7237464000001,-5.926799599999981],[134.7221214000001,-5.924435499999959],[134.72596170000008,-5.923227499999939],[134.7245961000001,-5.921383599999956],[134.720858,-5.921472199999926],[134.71576670000002,-5.917839799999967],[134.7110156000001,-5.9115163],[134.7121128000001,-5.908056699999975],[134.7099257000001,-5.9008073],[134.7131905000001,-5.89857],[134.7114147000001,-5.892253499999981],[134.7092424000001,-5.889755299999933],[134.7124020000001,-5.890909599999929],[134.71752030000005,-5.889164099999959],[134.7198006000001,-5.890725699999962],[134.71937290000005,-5.888000299999931],[134.72329230000003,-5.886125199999981],[134.72797220000007,-5.887438799999927],[134.73045020000006,-5.889306199999965],[134.7279459,-5.895354699999928],[134.7286954000001,-5.8984251],[134.73287870000001,-5.899897199999941],[134.7388489000001,-5.907566699999961],[134.73908160000008,-5.905124299999954],[134.7411932000001,-5.905419299999949],[134.73818070000004,-5.899764],[134.73926640000002,-5.896326899999963],[134.74381,-5.899964499999953],[134.74634650000007,-5.897076499999969],[134.74942770000007,-5.900950799999976],[134.75167550000003,-5.899753199999964],[134.753047,-5.901076799999942],[134.75489420000008,-5.899899699999935],[134.75539230000004,-5.897081499999956],[134.75650110000004,-5.898554799999943],[134.75678690000007,-5.897186699999963],[134.75825180000004,-5.897993],[134.7597545000001,-5.896079799999939],[134.76160630000004,-5.8966488],[134.761009,-5.893643499999939],[134.7636798000001,-5.893636099999981],[134.76350250000007,-5.8922028],[134.76489770000012,-5.890784199999928],[134.7659814000001,-5.891912699999978],[134.76697330000002,-5.889431],[134.7701151000001,-5.890416099999925],[134.77247310000007,-5.888706699999943],[134.77289740000003,-5.8865641],[134.7689948000001,-5.882271099999969],[134.769719,-5.878732099999979],[134.7680583,-5.873541099999954],[134.75809850000007,-5.867097],[134.75836440000012,-5.865986199999952],[134.75086950000002,-5.858360499999947],[134.75090390000003,-5.854067899999961],[134.75569330000008,-5.848791199999937],[134.75431830000002,-5.846028299999944],[134.75069120000012,-5.844034299999976]]],[[[134.3065352000001,-5.829728899999964],[134.3026132000001,-5.832775],[134.30254720000005,-5.842629899999963],[134.30308330000003,-5.844030799999928],[134.3102279000001,-5.844926399999963],[134.3129245,-5.843719799999974],[134.31357250000008,-5.841566399999977],[134.31185510000012,-5.838710099999957],[134.3136833000001,-5.838873899999953],[134.3141716,-5.835320199999956],[134.3125046,-5.835264399999971],[134.31115770000008,-5.837363],[134.30600170000002,-5.832186799999931],[134.3151981000001,-5.831336399999941],[134.3065352000001,-5.829728899999964]]],[[[134.76578160000008,-5.830946599999947],[134.7646360000001,-5.829741799999965],[134.764426,-5.83258],[134.76578160000008,-5.830946599999947]]],[[[134.69870750000007,-5.839433799999938],[134.70146810000006,-5.832336099999964],[134.70525020000002,-5.829656199999931],[134.70532160000005,-5.827888199999961],[134.69914990000007,-5.827001899999971],[134.69563930000004,-5.828869199999929],[134.6942974000001,-5.832518199999981],[134.69010830000002,-5.834061199999951],[134.6889424000001,-5.836036699999966],[134.69032590000006,-5.839138699999978],[134.68745790000003,-5.843331499999977],[134.68878040000004,-5.844161199999974],[134.69870750000007,-5.839433799999938]]],[[[134.76670020000006,-5.826567599999976],[134.76497260000008,-5.826651699999957],[134.7662028000001,-5.827873499999953],[134.76670020000006,-5.826567599999976]]],[[[134.82206760000008,-5.826451399999939],[134.82046460000004,-5.825365399999953],[134.81903010000008,-5.826914099999954],[134.82431330000009,-5.830624799999953],[134.82289690000005,-5.828323199999943],[134.8245736,-5.828651599999944],[134.82206760000008,-5.826451399999939]]],[[[134.76306820000002,-5.825240699999938],[134.7612789000001,-5.825575499999957],[134.76129590000005,-5.827459],[134.76507760000004,-5.828861599999925],[134.76306820000002,-5.825240699999938]]],[[[134.81679010000005,-5.822955599999943],[134.8147074000001,-5.821038199999975],[134.81498320000003,-5.823633499999971],[134.81679010000005,-5.822955599999943]]],[[[134.80870190000007,-5.807085799999925],[134.8040582000001,-5.807895499999972],[134.80062,-5.816225399999951],[134.80479680000008,-5.818969099999947],[134.80887030000008,-5.818489899999975],[134.81378660000007,-5.819933299999946],[134.8130767,-5.816919499999926],[134.81216770000003,-5.817153799999971],[134.8130999000001,-5.815147],[134.81172520000007,-5.8152879],[134.80870190000007,-5.807085799999925]]],[[[134.78211870000007,-5.805576499999972],[134.77437480000003,-5.808476799999937],[134.7700195000001,-5.814965699999959],[134.7655585000001,-5.817463],[134.76684310000007,-5.823773299999971],[134.76972200000012,-5.8245886],[134.77143920000003,-5.822327799999925],[134.775741,-5.8226122],[134.77584320000005,-5.821176099999946],[134.7775931000001,-5.821866599999964],[134.77594460000012,-5.821888599999966],[134.7767119,-5.8230423],[134.7866259000001,-5.822198],[134.786998,-5.8235777],[134.787134,-5.8223226],[134.790104,-5.821125099999961],[134.79563670000005,-5.821104499999933],[134.79499270000008,-5.8223368],[134.7963701000001,-5.822653899999978],[134.79616750000002,-5.820957699999951],[134.79880990000004,-5.820144499999969],[134.80035770000006,-5.817589399999974],[134.80098120000002,-5.8105109],[134.79426850000004,-5.811144599999977],[134.78653020000002,-5.806448899999964],[134.78211870000007,-5.805576499999972]]],[[[134.74402070000008,-5.809145599999965],[134.74211430000003,-5.805367899999965],[134.74179720000006,-5.8073466],[134.74402070000008,-5.809145599999965]]],[[[134.78179230000012,-5.796488899999929],[134.78011920000006,-5.794568699999957],[134.7789299000001,-5.7970249],[134.78250030000004,-5.797724499999958],[134.78179230000012,-5.796488899999929]]],[[[134.77736430000004,-5.795894699999963],[134.77828990000012,-5.789231899999947],[134.77659130000006,-5.787605699999972],[134.7720322,-5.7889071],[134.7690500000001,-5.792629],[134.7690745000001,-5.794983899999977],[134.77095370000006,-5.796505599999932],[134.77736430000004,-5.795894699999963]]],[[[134.76137070000004,-5.799644199999932],[134.76029660000006,-5.796570799999927],[134.7534932000001,-5.794546099999934],[134.7491050000001,-5.788250699999935],[134.7488886000001,-5.787103799999954],[134.7415086000001,-5.796468299999958],[134.74786010000003,-5.808118299999933],[134.74988120000012,-5.808096599999942],[134.74981060000005,-5.806281799999965],[134.76137070000004,-5.799644199999932]]],[[[134.7529102000001,-5.791668],[134.75242350000008,-5.787862699999948],[134.75024280000002,-5.785091299999976],[134.74937160000002,-5.785899],[134.74923690000003,-5.788055499999928],[134.7529102000001,-5.791668]]],[[[134.75372320000008,-5.787581799999941],[134.75201890000005,-5.783117399999981],[134.75127670000006,-5.784384599999953],[134.75372320000008,-5.787581799999941]]],[[[134.78620390000003,-5.775244199999975],[134.78282490000004,-5.776257799999939],[134.77861980000011,-5.782153299999948],[134.77812730000005,-5.785754599999962],[134.78753580000011,-5.791545099999951],[134.79146,-5.789573299999972],[134.7939070000001,-5.7902131],[134.79391610000005,-5.788531],[134.796805,-5.792667899999969],[134.79494090000003,-5.787920799999938],[134.79574620000005,-5.7855577],[134.79414870000005,-5.785226399999942],[134.79400410000005,-5.779156799999953],[134.78620390000003,-5.775244199999975]]],[[[134.33078690000002,-5.771406699999943],[134.32803780000006,-5.771705099999963],[134.32623480000007,-5.775245599999948],[134.32715080000003,-5.7768345],[134.3313260000001,-5.7741652],[134.33078690000002,-5.771406699999943]]],[[[134.3231098000001,-5.771857199999943],[134.322569,-5.770519399999955],[134.31969060000006,-5.770223499999929],[134.31312150000008,-5.776494699999944],[134.32260070000007,-5.778918399999952],[134.3231098000001,-5.771857199999943]]],[[[134.32523950000007,-5.770146499999953],[134.32695090000004,-5.769438199999968],[134.32674540000005,-5.766805399999953],[134.32311320000008,-5.768932199999938],[134.32523950000007,-5.770146499999953]]],[[[134.7869608000001,-5.763141099999928],[134.7825263000001,-5.765371799999969],[134.78483540000002,-5.770764699999972],[134.7884130000001,-5.769851899999935],[134.79029250000008,-5.767603299999962],[134.79004830000008,-5.763792499999965],[134.7869608000001,-5.763141099999928]]],[[[134.197717,-5.751160099999936],[134.19550130000005,-5.751192799999956],[134.1927399000001,-5.761049],[134.1924672,-5.765479299999981],[134.1949684000001,-5.768152],[134.19092530000012,-5.785005099999978],[134.18674410000006,-5.818546499999968],[134.18741780000005,-5.824145899999962],[134.1916351000001,-5.830706199999952],[134.2067628000001,-5.835643399999981],[134.22178370000006,-5.825065],[134.22768970000004,-5.824553699999967],[134.24013790000004,-5.828933199999938],[134.24300080000012,-5.828145799999959],[134.24824750000005,-5.824251299999958],[134.25166720000004,-5.817181599999969],[134.2505248000001,-5.815269899999976],[134.2443776,-5.814903799999968],[134.2417,-5.812645099999941],[134.24098930000002,-5.809529899999973],[134.251269,-5.792970399999945],[134.2518861000001,-5.785776299999952],[134.2494223000001,-5.784054899999944],[134.2523556000001,-5.782054199999948],[134.25039450000008,-5.778579399999956],[134.2511492000001,-5.7753946],[134.24954550000007,-5.771920399999942],[134.2380266,-5.761371499999939],[134.23810630000003,-5.756533199999978],[134.2308977,-5.759977699999979],[134.21170250000011,-5.753601699999933],[134.197717,-5.751160099999936]]],[[[134.72314160000008,-5.746853499999929],[134.72506650000003,-5.743887499999971],[134.7241401000001,-5.742360499999961],[134.71863960000007,-5.744427099999939],[134.72314160000008,-5.746853499999929]]],[[[134.810123,-5.733952599999952],[134.80747730000007,-5.7312291],[134.80011690000003,-5.7282608],[134.79473870000004,-5.727578699999981],[134.7897127000001,-5.729590299999927],[134.7863695000001,-5.735058],[134.78856910000002,-5.736813599999948],[134.78611580000006,-5.736984599999971],[134.78488420000008,-5.738939799999969],[134.78234510000004,-5.757460499999979],[134.783406,-5.758141199999955],[134.7879914,-5.754656799999964],[134.79158260000008,-5.755255699999964],[134.79777760000002,-5.751628899999957],[134.803256,-5.751218699999981],[134.8090654,-5.745590499999935],[134.8086916000001,-5.743262],[134.8127671000001,-5.744095199999947],[134.81259810000006,-5.741748399999949],[134.8137524000001,-5.742225],[134.8143302000001,-5.7404906],[134.81239570000002,-5.737633099999925],[134.8139917000001,-5.737429499999962],[134.81372080000006,-5.734946699999966],[134.81181930000002,-5.734980099999973],[134.8113095000001,-5.736680399999955],[134.810777,-5.73489],[134.80945930000007,-5.735280899999964],[134.810123,-5.733952599999952]]],[[[134.68691980000006,-5.729481499999963],[134.6750181000001,-5.726949],[134.67087070000002,-5.729335399999968],[134.66591990000006,-5.735031599999957],[134.6596032000001,-5.733189],[134.6570888000001,-5.737444899999957],[134.6585785000001,-5.742882],[134.65682190000007,-5.747060599999941],[134.6606564000001,-5.751412099999925],[134.66592900000012,-5.750972799999943],[134.6695489000001,-5.7531404],[134.67097350000006,-5.756862899999931],[134.67017080000005,-5.758824299999958],[134.67695990000004,-5.771900099999925],[134.6790605000001,-5.770640399999934],[134.68407890000003,-5.770835499999976],[134.6877965000001,-5.775372],[134.6924699000001,-5.776635299999953],[134.68894350000005,-5.783746],[134.6916129000001,-5.795626399999946],[134.69705010000007,-5.804766],[134.70036920000007,-5.805446299999971],[134.7033259000001,-5.808286099999975],[134.71356980000007,-5.813402499999938],[134.71677660000012,-5.813070599999946],[134.71835380000005,-5.808813899999961],[134.72196810000003,-5.806361899999956],[134.72631300000012,-5.810689299999979],[134.72815420000006,-5.808988399999976],[134.73122480000006,-5.810194099999933],[134.73111820000008,-5.808763599999963],[134.73220750000007,-5.809267299999931],[134.7318298,-5.808125099999927],[134.7356754000001,-5.805893599999933],[134.73433910000006,-5.8024836],[134.74035190000006,-5.801383899999962],[134.73880680000002,-5.797651599999938],[134.74453370000003,-5.792056799999955],[134.747461,-5.785245099999941],[134.74493640000003,-5.775264799999945],[134.7462237000001,-5.774779099999932],[134.7454080000001,-5.7682485],[134.7416972000001,-5.760184299999935],[134.74071440000012,-5.749024299999974],[134.7419493000001,-5.748849599999971],[134.7409838000001,-5.746374199999934],[134.7419499,-5.741236599999979],[134.7377063,-5.738390699999968],[134.7330088000001,-5.737838699999941],[134.72694150000007,-5.747931],[134.72193990000005,-5.748492499999941],[134.7007201,-5.739209399999936],[134.6932488000001,-5.729500399999949],[134.68691980000006,-5.729481499999963]]],[[[134.79717930000004,-5.721399399999939],[134.79987830000005,-5.718959599999948],[134.7962679000001,-5.718271],[134.7961447,-5.721209599999952],[134.79717930000004,-5.721399399999939]]],[[[134.3385637,-5.694997799999953],[134.33130030000007,-5.6932251],[134.3314048000001,-5.698049499999968],[134.33409760000006,-5.701691499999981],[134.3379758000001,-5.703653299999928],[134.34477820000006,-5.699526],[134.34582850000004,-5.695474699999977],[134.34549970000012,-5.694233799999949],[134.3385637,-5.694997799999953]]],[[[134.77028140000004,-5.690300899999954],[134.77153970000006,-5.687591699999928],[134.76938130000008,-5.686142],[134.76832520000005,-5.687887299999943],[134.77028140000004,-5.690300899999954]]],[[[134.772052,-5.6765017],[134.76928740000005,-5.6740383],[134.76590580000004,-5.675960699999962],[134.75943860000007,-5.676841399999944],[134.7596026000001,-5.682776799999942],[134.7668794000001,-5.686340299999927],[134.7719958,-5.679494],[134.772052,-5.6765017]]],[[[134.77093160000004,-5.652147299999967],[134.7720428,-5.650742799999932],[134.77066950000005,-5.6493344],[134.76914350000004,-5.650370699999939],[134.77093160000004,-5.652147299999967]]],[[[134.31293820000008,-5.626984299999947],[134.31322250000005,-5.625417499999969],[134.31174550000003,-5.625111],[134.31124440000008,-5.626351099999965],[134.31293820000008,-5.626984299999947]]],[[[134.74043890000007,-5.607293899999945],[134.73912830000006,-5.604526499999963],[134.7367111000001,-5.606323799999927],[134.73728540000002,-5.6082109],[134.74043890000007,-5.607293899999945]]],[[[134.70083720000002,-5.573529599999972],[134.69887390000008,-5.57443],[134.69928160000006,-5.576806599999941],[134.70304220000003,-5.579922299999964],[134.7096686000001,-5.576647899999955],[134.707692,-5.573812699999962],[134.70083720000002,-5.573529599999972]]],[[[134.66455630000007,-5.568758299999956],[134.66449540000008,-5.566154899999958],[134.66348,-5.567999899999961],[134.66455630000007,-5.568758299999956]]],[[[134.55232660000001,-5.560681799999941],[134.5473972000001,-5.569137],[134.53571670000008,-5.571490099999949],[134.5339256000001,-5.570540299999948],[134.530863,-5.572346899999957],[134.52906710000002,-5.578857099999937],[134.5299176000001,-5.583335099999942],[134.53310950000002,-5.584232499999928],[134.53391190000002,-5.586762],[134.5332185000001,-5.595456499999955],[134.5357514000001,-5.599943],[134.535747,-5.605512899999951],[134.53422890000002,-5.607874699999968],[134.53556140000012,-5.627117099999964],[134.5406852000001,-5.634651799999972],[134.54364150000004,-5.635900299999946],[134.545324,-5.638771],[134.5473376000001,-5.649405899999977],[134.5611530000001,-5.649754099999939],[134.57457280000006,-5.654486],[134.5727677000001,-5.664278299999978],[134.57900030000008,-5.677093399999933],[134.58269810000002,-5.678801],[134.5890965000001,-5.684881899999937],[134.5931346000001,-5.693155199999978],[134.5956605,-5.695351199999948],[134.59414160000006,-5.6988946],[134.59717280000007,-5.701428499999963],[134.59874380000008,-5.7003185],[134.60255990000007,-5.7085212],[134.6084545000001,-5.712913699999945],[134.61047250000001,-5.718822499999931],[134.61619910000002,-5.722708499999953],[134.61906460000012,-5.7213601],[134.61974120000002,-5.7174785],[134.62378810000007,-5.7132615],[134.631138,-5.711194],[134.6396284000001,-5.711752599999954],[134.6473721000001,-5.72391],[134.65074120000008,-5.725599899999963],[134.65377520000004,-5.724251399999957],[134.6537512000001,-5.721631699999932],[134.6608523000001,-5.724593299999981],[134.6699523000001,-5.723585799999967],[134.6913522000001,-5.724779299999966],[134.69792310000003,-5.726470599999971],[134.7014594000001,-5.731029699999965],[134.7002427000001,-5.734700099999941],[134.70218260000001,-5.738215],[134.7161953000001,-5.741948099999945],[134.72228110000003,-5.734521799999925],[134.72816000000012,-5.719691499999954],[134.73064450000004,-5.717932899999937],[134.7299796000001,-5.715306299999952],[134.732864,-5.7152709],[134.73167050000006,-5.708612799999969],[134.73289650000004,-5.709026199999926],[134.733943,-5.707272499999931],[134.73619180000003,-5.708377499999926],[134.7358342000001,-5.703537499999925],[134.73342820000005,-5.700662799999975],[134.72566110000002,-5.703821199999936],[134.72949140000003,-5.700116799999932],[134.73193690000005,-5.694085099999938],[134.72824690000004,-5.6849396],[134.73180600000012,-5.684104399999967],[134.73314040000002,-5.682155899999941],[134.73420540000006,-5.676727099999937],[134.73209430000009,-5.6740292],[134.73787030000005,-5.67247],[134.74351090000005,-5.674213899999927],[134.7473526000001,-5.672167499999944],[134.749311,-5.6729929],[134.75171890000001,-5.670866099999955],[134.75239580000004,-5.671827599999972],[134.75701950000007,-5.668889499999977],[134.75977180000007,-5.669013699999937],[134.7615704000001,-5.671544499999925],[134.76227280000012,-5.669886499999961],[134.76690230000008,-5.668889299999933],[134.7640282000001,-5.665033499999936],[134.7636626000001,-5.658570899999972],[134.75813730000004,-5.654731],[134.7603772000001,-5.649688599999934],[134.76203880000003,-5.650845499999946],[134.76294790000009,-5.649867699999959],[134.76358370000003,-5.645833599999946],[134.7620319,-5.6461581],[134.75714520000008,-5.638899599999945],[134.757436,-5.634517699999947],[134.75405580000006,-5.633522599999935],[134.75052290000008,-5.62988],[134.74756990000003,-5.619939],[134.74523890000012,-5.617123799999945],[134.74206890000005,-5.616603599999962],[134.73908290000008,-5.620847],[134.73940960000004,-5.626952599999925],[134.74222310000005,-5.632057399999951],[134.74208380000005,-5.634685799999943],[134.73697210000012,-5.639940499999966],[134.7289608000001,-5.644363599999963],[134.74042640000005,-5.635515099999964],[134.741256,-5.633163699999955],[134.7351275000001,-5.624747299999967],[134.72967960000005,-5.613135399999976],[134.716618,-5.612070799999969],[134.7180340000001,-5.606304199999954],[134.71487850000005,-5.607157],[134.71854130000008,-5.602422399999966],[134.71264710000003,-5.597524599999929],[134.69438620000005,-5.599434899999949],[134.6982,-5.588943399999948],[134.69000070000004,-5.586395599999946],[134.6904638000001,-5.593680199999937],[134.68817850000005,-5.599867199999949],[134.6900690000001,-5.615258399999959],[134.687657,-5.606783899999925],[134.68748860000005,-5.598829299999977],[134.69008610000003,-5.593011699999977],[134.68817560000002,-5.5899366],[134.68880030000003,-5.585793599999931],[134.6867109000001,-5.581645299999934],[134.68121150000002,-5.582846099999927],[134.68001540000012,-5.5862173],[134.6683451,-5.586867699999971],[134.66733020000004,-5.5941249],[134.6631523000001,-5.598297],[134.66413230000012,-5.588721899999939],[134.66076370000008,-5.587538499999937],[134.6594186000001,-5.582811699999979],[134.65436570000008,-5.580952099999934],[134.6519062000001,-5.5831358],[134.65352550000011,-5.577407099999959],[134.6518416,-5.576055799999949],[134.6416524000001,-5.577848499999959],[134.6408894000001,-5.579424899999935],[134.64296500000012,-5.586872199999959],[134.6405449,-5.5930959],[134.64192890000004,-5.587736199999938],[134.6410684000001,-5.5835855],[134.63903430000005,-5.582630699999925],[134.634557,-5.5846911],[134.62960080000005,-5.581612099999973],[134.62437670000008,-5.584309399999938],[134.62134490000005,-5.583294699999954],[134.6084671000001,-5.574077599999953],[134.60994490000007,-5.573371899999927],[134.60951150000005,-5.571356599999945],[134.60821060000012,-5.571518599999933],[134.6071442000001,-5.569347099999959],[134.60012830000005,-5.568427499999927],[134.59641740000006,-5.575345199999958],[134.59490110000002,-5.575513],[134.59288420000007,-5.568760099999963],[134.5876591000001,-5.572807399999931],[134.58236840000006,-5.571629099999939],[134.5828775000001,-5.570378],[134.58120640000004,-5.568777199999943],[134.5740505000001,-5.571568599999978],[134.5695018,-5.569588899999928],[134.5697861000001,-5.563148399999932],[134.56598180000003,-5.568958299999963],[134.5621308000001,-5.565019899999925],[134.55232660000001,-5.560681799999941]]],[[[134.32761240000002,-5.563247099999955],[134.3231115000001,-5.560018199999945],[134.3171675000001,-5.561034],[134.31069780000007,-5.564193],[134.304045,-5.563722299999938],[134.2934706000001,-5.586558899999943],[134.29070880000006,-5.588842],[134.28864880000003,-5.596897199999944],[134.283888,-5.602922],[134.2822096000001,-5.607708],[134.26551740000002,-5.612817799999959],[134.2630732,-5.611783199999934],[134.25676260000012,-5.614869899999974],[134.25406060000012,-5.6140928],[134.25149120000003,-5.610350099999948],[134.24357830000008,-5.622483599999953],[134.2459976,-5.629297599999973],[134.26185110000006,-5.636939599999948],[134.26792420000004,-5.643768299999977],[134.2764089000001,-5.645552599999974],[134.2801952000001,-5.643666699999926],[134.28515890000006,-5.638428199999964],[134.2890586000001,-5.626270599999941],[134.29412650000006,-5.621785699999975],[134.3110332000001,-5.612757899999963],[134.32150720000004,-5.6121118],[134.32793980000008,-5.610059099999944],[134.34083080000005,-5.5970468],[134.34159880000004,-5.587455299999931],[134.34306790000005,-5.587273],[134.34616920000008,-5.581993799999964],[134.3476773000001,-5.574488199999962],[134.34523720000004,-5.569714399999953],[134.34181020000005,-5.56712],[134.3374920000001,-5.567749],[134.32761240000002,-5.563247099999955]]],[[[134.71507880000001,-5.551166199999955],[134.7129870000001,-5.548702499999933],[134.7086183,-5.550425599999926],[134.70763580000005,-5.552555599999948],[134.70700560000012,-5.549055299999964],[134.7024034000001,-5.549193399999979],[134.7015847,-5.550831799999969],[134.705344,-5.556487799999957],[134.70084380000003,-5.560582699999941],[134.70075840000004,-5.567629699999941],[134.6987931000001,-5.572463299999981],[134.70410920000006,-5.572466],[134.7073005000001,-5.569108],[134.71081690000005,-5.570011099999931],[134.71171760000004,-5.567717099999925],[134.71065580000004,-5.564848599999948],[134.71474880000005,-5.557229899999925],[134.71507880000001,-5.551166199999955]]],[[[134.6991356000001,-5.535808799999927],[134.69536660000006,-5.536908199999971],[134.69029000000012,-5.536066399999925],[134.6897120000001,-5.540418899999963],[134.69127990000004,-5.544825],[134.69525670000007,-5.547082099999955],[134.69860360000007,-5.547080899999969],[134.7023776000001,-5.541893899999934],[134.6991356000001,-5.535808799999927]]],[[[134.45880910000005,-5.530546799999968],[134.45736910000005,-5.52863],[134.45685390000006,-5.530517299999929],[134.45349950000002,-5.531681699999979],[134.44902850000005,-5.540048],[134.45097280000005,-5.543235699999968],[134.44863840000005,-5.543269199999941],[134.44821430000002,-5.544832099999951],[134.451202,-5.547371699999928],[134.45159880000006,-5.549770399999943],[134.45057580000002,-5.549682399999938],[134.4524262000001,-5.552027],[134.44986830000005,-5.558728899999949],[134.443496,-5.568209399999944],[134.44535050000002,-5.574559199999953],[134.435852,-5.581294],[134.4334295000001,-5.586567199999934],[134.43378660000008,-5.588969799999973],[134.42913680000004,-5.589479799999935],[134.42771630000004,-5.5919519],[134.42538560000003,-5.592076299999974],[134.42529320000006,-5.593599899999958],[134.42312220000008,-5.591951399999971],[134.4206249,-5.592831499999932],[134.41794660000005,-5.596841899999959],[134.4189573000001,-5.597460199999944],[134.42258660000005,-5.594392699999958],[134.42616770000006,-5.596090099999969],[134.43054890000008,-5.595702599999925],[134.43354380000005,-5.599160499999925],[134.43173050000007,-5.599233899999945],[134.429285,-5.607724599999926],[134.42698540000004,-5.608331799999974],[134.427466,-5.609701599999937],[134.42541760000006,-5.611884199999963],[134.4242263000001,-5.622224299999971],[134.41977370000006,-5.626652499999977],[134.417656,-5.6270184],[134.41886590000001,-5.629853299999979],[134.4150426000001,-5.640982199999939],[134.41031240000007,-5.646312299999977],[134.40651150000008,-5.646862499999941],[134.40596730000004,-5.6497866],[134.4042452000001,-5.649428599999965],[134.3965171000001,-5.653999599999963],[134.3703134000001,-5.675493099999926],[134.36295070000006,-5.6778516],[134.35524170000008,-5.6859759],[134.35245020000002,-5.6986013],[134.36413210000012,-5.7029123],[134.359775,-5.705812299999934],[134.359449,-5.707573],[134.36529880000012,-5.708984499999929],[134.3660993000001,-5.7103586],[134.36178940000002,-5.710946899999954],[134.36162390000004,-5.712896399999977],[134.36309710000012,-5.713318699999945],[134.36091980000003,-5.716072],[134.3476075000001,-5.7226123],[134.34384050000006,-5.7273153],[134.338822,-5.726303899999948],[134.33503660000008,-5.727906899999937],[134.32964010000012,-5.720591],[134.32530710000003,-5.719553],[134.3223795,-5.7161976],[134.3199803000001,-5.716950599999961],[134.31741550000004,-5.7141733],[134.31520380000006,-5.710189399999933],[134.31435440000007,-5.704468199999951],[134.30919270000004,-5.705041399999971],[134.3048602,-5.703754],[134.3012993000001,-5.698185399999943],[134.29708060000007,-5.694910499999935],[134.294365,-5.695446299999958],[134.29139290000012,-5.693123499999956],[134.29032460000008,-5.6912701],[134.29375720000007,-5.688472399999966],[134.2963413000001,-5.688265799999954],[134.29547810000008,-5.689796299999955],[134.29938260000006,-5.688871],[134.2951958000001,-5.684813399999939],[134.287364,-5.682836899999927],[134.28365710000003,-5.683778199999949],[134.2822258000001,-5.687852599999928],[134.28025290000005,-5.689057199999979],[134.2771762000001,-5.688301499999966],[134.27452110000002,-5.691693699999973],[134.2753236000001,-5.688132899999971],[134.28053650000004,-5.686540599999944],[134.28159770000002,-5.684598799999947],[134.27233840000008,-5.683700699999974],[134.26336730000003,-5.679898099999946],[134.26251420000006,-5.6765885],[134.25436220000006,-5.671928],[134.25152850000006,-5.666708399999948],[134.25160560000006,-5.662034699999936],[134.24108920000003,-5.668182799999954],[134.23805890000006,-5.671380499999941],[134.2167244000001,-5.704289199999948],[134.21137690000012,-5.716497699999934],[134.21153430000004,-5.720496899999944],[134.21462950000011,-5.721154],[134.2178355000001,-5.726917799999967],[134.22911210000007,-5.7362718],[134.23735410000006,-5.745541],[134.23972530000003,-5.747012299999938],[134.2447519000001,-5.746319799999981],[134.25544860000002,-5.755020499999944],[134.2565241000001,-5.751828],[134.2567818000001,-5.754292299999975],[134.2586771000001,-5.754645499999981],[134.2593839000001,-5.758424099999957],[134.26074040000003,-5.759021099999927],[134.2650456,-5.756741499999976],[134.26686890000008,-5.7582455],[134.2691105,-5.757407499999943],[134.27143850000004,-5.753093499999977],[134.2743603,-5.755912399999943],[134.2801061,-5.754736699999967],[134.28232620000006,-5.751736199999925],[134.28238640000006,-5.7556536],[134.2846015,-5.7566358],[134.28480290000005,-5.752000399999929],[134.28745630000003,-5.745342899999969],[134.28902440000002,-5.744846799999948],[134.28771210000002,-5.752975599999957],[134.29177130000005,-5.757232299999941],[134.2937919000001,-5.757365399999969],[134.29777220000005,-5.754105799999934],[134.29952950000006,-5.756393099999968],[134.3035767,-5.751697199999967],[134.30624440000008,-5.755748399999959],[134.30976780000003,-5.753010499999959],[134.3134834000001,-5.753015],[134.31344290000004,-5.7505252],[134.314732,-5.753398799999957],[134.31331360000001,-5.754787799999974],[134.3111464000001,-5.754485599999953],[134.310856,-5.756548799999962],[134.3078061000001,-5.7580546],[134.3081565000001,-5.762385699999925],[134.30614040000012,-5.762648899999931],[134.3068846000001,-5.765412199999957],[134.3135986000001,-5.765616199999954],[134.31751470000006,-5.761638199999936],[134.3183576,-5.765360799999939],[134.32287960000008,-5.758129],[134.32496650000007,-5.757347899999957],[134.32646060000002,-5.760662599999932],[134.3244998,-5.760618399999942],[134.32365470000002,-5.764201899999932],[134.32782620000012,-5.764598599999943],[134.32958340000005,-5.767081699999949],[134.33154070000012,-5.765647599999966],[134.3364891000001,-5.7706808],[134.336552,-5.772639599999934],[134.3344598000001,-5.777925699999969],[134.330614,-5.777594699999952],[134.3304637000001,-5.778977],[134.32683040000006,-5.7798754],[134.3219329000001,-5.786790399999973],[134.32936860000007,-5.783404099999927],[134.33343170000012,-5.783736799999929],[134.3328203000001,-5.786281],[134.3272598000001,-5.785996599999976],[134.3256735000001,-5.790793],[134.3267191000001,-5.792841499999952],[134.328119,-5.792739199999971],[134.32764190000012,-5.795306599999947],[134.33079930000008,-5.795469],[134.3343063000001,-5.797708599999964],[134.3424761000001,-5.7922377],[134.35714180000002,-5.7754516],[134.35998470000004,-5.7732767],[134.3642609000001,-5.7731093],[134.36704350000002,-5.769102099999941],[134.37352250000004,-5.772358299999951],[134.39276730000006,-5.788604199999952],[134.39969070000006,-5.789100599999927],[134.41161240000008,-5.785398699999973],[134.41487360000008,-5.785581099999945],[134.41665320000004,-5.784049399999958],[134.41662,-5.785697499999969],[134.41866240000002,-5.787032299999964],[134.42362360000004,-5.784105599999975],[134.42555090000008,-5.784605299999953],[134.42705,-5.788959699999964],[134.4312973000001,-5.792314699999963],[134.4366192000001,-5.793706099999952],[134.4419789000001,-5.798662499999978],[134.4420569,-5.800670899999943],[134.4343073000001,-5.794135],[134.4307738000001,-5.793385499999943],[134.4226361000001,-5.78614],[134.42005480000012,-5.789015799999959],[134.41237030000002,-5.788142599999958],[134.40567540000006,-5.792334199999971],[134.39671250000004,-5.793276],[134.39098260000003,-5.797315],[134.374603,-5.7988085],[134.37215850000007,-5.801784099999963],[134.36931720000007,-5.8024033],[134.36842650000006,-5.805069399999979],[134.37077920000002,-5.804849799999943],[134.37295160000008,-5.802126399999963],[134.37566430000004,-5.802321399999926],[134.37800220000008,-5.8046813],[134.3784098000001,-5.808192099999928],[134.37450390000004,-5.808098899999948],[134.373614,-5.810098299999936],[134.37915850000002,-5.813527199999953],[134.37263380000002,-5.813475499999981],[134.36934670000005,-5.815738899999928],[134.37675410000008,-5.820370199999957],[134.3724505,-5.818720699999972],[134.36982910000006,-5.820984799999962],[134.36055420000002,-5.819329699999969],[134.360197,-5.821196199999974],[134.36210280000012,-5.823776599999974],[134.35818410000002,-5.827675299999953],[134.3616905,-5.831445099999939],[134.36657890000004,-5.8299605],[134.37011330000007,-5.830525799999975],[134.37323350000008,-5.833035199999927],[134.37451690000012,-5.836548299999947],[134.37176010000007,-5.840768199999957],[134.37147,-5.847463],[134.37386960000003,-5.847684099999981],[134.3719053000001,-5.848337399999934],[134.3607809,-5.846358499999951],[134.3543506000001,-5.849016499999948],[134.34736370000007,-5.846124599999939],[134.34669540000004,-5.849329799999964],[134.3398612000001,-5.851971899999967],[134.3315483,-5.858876199999941],[134.33104190000006,-5.862063699999965],[134.3393244,-5.868468899999925],[134.33918170000004,-5.874546],[134.33795250000003,-5.8748802],[134.3362902,-5.881756399999972],[134.33018090000007,-5.886785599999939],[134.3157695000001,-5.8916888],[134.31039270000008,-5.896082799999931],[134.31673120000005,-5.903869699999973],[134.3104294000001,-5.902306099999976],[134.30271070000003,-5.897851299999957],[134.2995598000001,-5.897091699999976],[134.29822650000006,-5.898290199999963],[134.29688080000005,-5.909401399999979],[134.2934540000001,-5.916109199999937],[134.296949,-5.925670599999933],[134.30000830000006,-5.928786099999968],[134.30201310000007,-5.924959099999967],[134.31122940000012,-5.928031899999951],[134.31325870000012,-5.931654399999957],[134.31370120000008,-5.936556799999948],[134.315929,-5.939321499999949],[134.32892930000003,-5.940887499999974],[134.3293721000001,-5.944416499999932],[134.333113,-5.946604799999932],[134.33657720000008,-5.9463313],[134.33297240000002,-5.949121599999955],[134.33200460000012,-5.954255099999955],[134.32911680000007,-5.956872399999952],[134.32654360000004,-5.964277],[134.3273991000001,-5.9677736],[134.31630940000002,-5.993794399999956],[134.3081737000001,-6.007363899999973],[134.3052434000001,-6.007870199999957],[134.30358480000007,-6.010035899999934],[134.30179570000007,-6.0146243],[134.3033223000001,-6.016156499999965],[134.30079180000007,-6.017434899999955],[134.3016622,-6.019469899999933],[134.3039546000001,-6.019727799999941],[134.305358,-6.017944399999976],[134.30765070000007,-6.018074799999965],[134.3086664000001,-6.020626499999935],[134.3112129000001,-6.021522299999958],[134.32063160000007,-6.017297599999949],[134.3259902000001,-6.018560199999968],[134.341834,-6.026000899999929],[134.34397380000007,-6.029222799999957],[134.34834840000008,-6.014591199999927],[134.35077520000004,-6.011926799999969],[134.345788,-6.025892899999974],[134.34875230000011,-6.032529],[134.35354360000008,-6.034904599999948],[134.35681510000006,-6.033739399999945],[134.35746170000004,-6.031155099999978],[134.3705543000001,-6.019433099999958],[134.3699779000001,-6.012885199999971],[134.3715118,-6.009670099999937],[134.3719522,-6.019504499999925],[134.379929,-6.015765599999952],[134.3833502000001,-6.015912199999946],[134.3892178000001,-6.019893099999933],[134.38950820000002,-6.016599],[134.39058850000004,-6.020256499999959],[134.41798530000005,-6.022800899999936],[134.43367410000008,-6.0162522],[134.43781350000006,-6.011261199999979],[134.43867340000008,-6.006837699999949],[134.43696380000006,-6.005694099999971],[134.4403866,-6.004413199999931],[134.45009320000008,-5.991863399999943],[134.4512383000001,-5.987154699999962],[134.46208050000007,-5.979030299999977],[134.46450750000008,-5.975321899999926],[134.4662224000001,-5.9708991],[134.4650875000001,-5.965189099999975],[134.4625331000001,-5.963410499999952],[134.4660083000001,-5.962982199999942],[134.4685393000001,-5.956298499999946],[134.48636470000008,-5.959396499999968],[134.50563020000004,-5.946532899999966],[134.51621880000005,-5.929911499999946],[134.5314727000001,-5.917925599999933],[134.5386204,-5.915985099999943],[134.55551920000005,-5.921076399999947],[134.56294990000004,-5.929375499999935],[134.5685264000001,-5.931410899999946],[134.58019710000008,-5.932527599999958],[134.5849961,-5.929894799999943],[134.59573590000002,-5.913828399999943],[134.604052,-5.905458499999952],[134.6071478,-5.895523699999956],[134.6252618000001,-5.878707199999951],[134.63803570000005,-5.870382699999936],[134.64406940000003,-5.869039099999952],[134.64665720000005,-5.864304799999957],[134.65504270000008,-5.857053099999973],[134.66960240000003,-5.851319399999966],[134.6713046000001,-5.849995199999967],[134.67168530000004,-5.845515099999943],[134.68699960000004,-5.841800699999965],[134.68920650000007,-5.8391516],[134.68750720000003,-5.8354275],[134.69009210000002,-5.8328417],[134.699368,-5.825382699999977],[134.70536110000012,-5.825106699999935],[134.710799,-5.820363899999961],[134.71298,-5.816393099999971],[134.6966966000001,-5.805967299999963],[134.690185,-5.797043699999961],[134.68792430000008,-5.784251499999925],[134.68986330000007,-5.7793506],[134.6889142000001,-5.7763717],[134.6819587000001,-5.771696499999962],[134.6755227000001,-5.772721899999965],[134.669185,-5.760132699999929],[134.6685364000001,-5.754297399999928],[134.6653960000001,-5.752609299999961],[134.6610998000001,-5.753302199999951],[134.65432120000003,-5.747179199999948],[134.65459410000005,-5.744031599999971],[134.65664720000007,-5.741858899999954],[134.65513050000004,-5.736734099999978],[134.6606849000001,-5.729566899999952],[134.6604522,-5.724492399999974],[134.65789670000004,-5.7243085],[134.6531248000001,-5.727986299999941],[134.64898040000003,-5.7278114],[134.64265250000005,-5.721477899999968],[134.64006840000002,-5.71511],[134.6373867000001,-5.713786699999957],[134.62505940000005,-5.715667199999928],[134.62193600000012,-5.718753599999957],[134.61995090000005,-5.724626699999931],[134.61543470000004,-5.725491499999976],[134.61012590000007,-5.721401599999979],[134.6065774000001,-5.713165299999957],[134.6015718000001,-5.710217599999964],[134.5990713000001,-5.705418],[134.5946103000001,-5.702252599999952],[134.5887431000001,-5.686437199999943],[134.576667,-5.677050699999938],[134.57172050000008,-5.666266199999939],[134.57260650000012,-5.656184499999938],[134.56055820000006,-5.651206],[134.54637420000006,-5.650653599999941],[134.54440840000007,-5.639135499999952],[134.540179,-5.636376699999971],[134.53348670000003,-5.626762499999927],[134.53293860000008,-5.606555199999946],[134.5345625000001,-5.604083599999967],[134.5314026000001,-5.593610599999977],[134.53204330000005,-5.586354799999981],[134.52759340000011,-5.583451399999944],[134.5263139000001,-5.579592],[134.5285655,-5.5721201],[134.5277814000001,-5.565607399999976],[134.5216190000001,-5.556898899999965],[134.5164708000001,-5.564503],[134.5136450000001,-5.564801399999965],[134.51150430000007,-5.564278599999966],[134.504585,-5.555454199999929],[134.50269560000004,-5.5459316],[134.50469510000005,-5.531641799999932],[134.5019079000001,-5.53306],[134.49615970000002,-5.532875599999954],[134.4923778000001,-5.535871799999939],[134.49250490000009,-5.539703],[134.49016910000012,-5.541422599999976],[134.4906678000001,-5.544767199999967],[134.4871759,-5.554199299999937],[134.4828083000001,-5.557432899999981],[134.479723,-5.557913],[134.48199680000005,-5.559513899999956],[134.48238460000005,-5.563202799999942],[134.48087740000005,-5.565734299999974],[134.4796156000001,-5.563208199999963],[134.46959130000005,-5.563628],[134.4639059000001,-5.560459799999933],[134.4584919,-5.549139599999933],[134.458869,-5.547105699999975],[134.45587410000007,-5.543822],[134.45623530000012,-5.537529699999936],[134.4596332000001,-5.532071199999962],[134.45880910000005,-5.530546799999968]]],[[[134.4855881000001,-5.525822399999981],[134.4858785,-5.518039099999953],[134.4829790000001,-5.516820099999961],[134.47826940000004,-5.519113599999969],[134.47582980000004,-5.525851499999931],[134.4737388000001,-5.525561],[134.4729837000001,-5.528378199999963],[134.4779499000001,-5.526838899999973],[134.48094130000004,-5.529394599999932],[134.48192870000003,-5.532473099999947],[134.4849491000001,-5.531137199999932],[134.4855881000001,-5.525822399999981]]],[[[134.50190810000004,-5.509784699999955],[134.49984970000003,-5.5088045],[134.49703570000008,-5.509934099999953],[134.495584,-5.5135971],[134.49715420000007,-5.522216599999979],[134.4992380000001,-5.524050799999941],[134.50385210000002,-5.5230825],[134.50752780000005,-5.524438399999951],[134.51457240000002,-5.517138699999975],[134.50190810000004,-5.509784699999955]]],[[[134.50506070000006,-5.492116399999929],[134.504318,-5.490735299999926],[134.50104670000007,-5.490184],[134.49717490000012,-5.492524099999969],[134.48911610000005,-5.487213899999972],[134.48805490000007,-5.4905295],[134.48585950000006,-5.490948399999979],[134.48584950000009,-5.497325399999966],[134.48778730000004,-5.497599],[134.49072590000003,-5.505181199999981],[134.4985551000001,-5.5056713],[134.4991063000001,-5.50169],[134.50195240000005,-5.498233899999946],[134.50189430000012,-5.494999099999973],[134.50506070000006,-5.492116399999929]]],[[[134.27373150000005,-5.535920399999952],[134.27574120000008,-5.530252599999926],[134.27778510000007,-5.5299201],[134.28579590000004,-5.522948799999938],[134.2861316000001,-5.516975],[134.28245440000012,-5.500132699999938],[134.27630520000002,-5.487766799999974],[134.27080940000008,-5.4835569],[134.2536156000001,-5.487200199999961],[134.24961770000004,-5.505615099999943],[134.25079260000007,-5.508639199999948],[134.2544101000001,-5.510094],[134.25672810000003,-5.526751899999965],[134.2533558,-5.542940499999929],[134.2539356000001,-5.553311699999938],[134.2562091000001,-5.554064599999947],[134.2668291000001,-5.538998599999957],[134.27373150000005,-5.535920399999952]]],[[[134.66036670000005,-5.472616099999925],[134.66144020000002,-5.471541599999966],[134.66065630000003,-5.4694959],[134.6576735000001,-5.469232],[134.65720110000007,-5.471591599999954],[134.65897960000007,-5.473113499999954],[134.66036670000005,-5.472616099999925]]],[[[134.6866678,-5.476651499999946],[134.68833760000007,-5.476118799999938],[134.69001490000005,-5.471085099999925],[134.6858843000001,-5.463740799999925],[134.68337140000006,-5.465470099999948],[134.68237470000008,-5.469979699999953],[134.68456980000008,-5.475539899999944],[134.6866678,-5.476651499999946]]],[[[134.6794407000001,-5.476166499999977],[134.68241120000005,-5.463629199999957],[134.6801819000001,-5.4600667],[134.67845340000008,-5.462792899999954],[134.67499880000003,-5.464049699999975],[134.67269190000002,-5.471705199999974],[134.6738927,-5.477002599999935],[134.67729420000012,-5.477633799999978],[134.6794407000001,-5.476166499999977]]],[[[134.66910540000003,-5.474640099999931],[134.67416150000008,-5.463996799999961],[134.66993170000012,-5.459771599999954],[134.66858610000008,-5.456226299999969],[134.66605990000005,-5.455887299999972],[134.66438,-5.4479534],[134.66219190000004,-5.445251499999927],[134.6549513000001,-5.442040499999962],[134.65151070000002,-5.442519899999979],[134.6501221000001,-5.447141899999963],[134.6559549000001,-5.454362499999945],[134.656264,-5.462937899999929],[134.66264520000004,-5.469103699999948],[134.6644219000001,-5.473903199999938],[134.66910540000003,-5.474640099999931]]],[[[134.56054760000006,-5.4244],[134.55696390000003,-5.426825699999938],[134.55714210000008,-5.428676899999971],[134.559417,-5.429316399999948],[134.563172,-5.426685199999952],[134.56330900000012,-5.425506599999949],[134.56054760000006,-5.4244]]],[[[134.4918374,-5.428382099999965],[134.49485860000004,-5.424170199999935],[134.49269750000008,-5.422251699999947],[134.4853101000001,-5.428404199999932],[134.48361210000007,-5.427963199999965],[134.47723540000004,-5.432376199999965],[134.47408570000005,-5.4381511],[134.47088810000002,-5.4385922],[134.46621070000003,-5.442438099999947],[134.46033810000006,-5.452449],[134.46058620000008,-5.458403],[134.46262050000007,-5.461380099999928],[134.46512380000001,-5.459834799999953],[134.4692361000001,-5.459759199999951],[134.4707115000001,-5.457115399999964],[134.47808440000006,-5.454487899999947],[134.48914360000003,-5.440414799999928],[134.4894558000001,-5.432814599999972],[134.4918374,-5.428382099999965]]],[[[134.639387,-5.415665],[134.63554510000006,-5.417939799999942],[134.6363841000001,-5.420498699999939],[134.64041980000002,-5.419793],[134.64097130000005,-5.417357899999956],[134.639387,-5.415665]]],[[[134.50506070000006,-5.492116399999929],[134.50274080000008,-5.494516899999951],[134.5024462,-5.498669599999971],[134.49995680000006,-5.501747899999941],[134.50067070000011,-5.505751299999929],[134.50422170000002,-5.508966399999963],[134.5123351000001,-5.510158199999978],[134.51445780000006,-5.511019699999963],[134.51453360000005,-5.512494599999968],[134.5203984000001,-5.511134299999981],[134.51664460000006,-5.514787399999932],[134.518181,-5.517725499999926],[134.511675,-5.5239627],[134.51527780000004,-5.526955499999929],[134.51563440000007,-5.529105799999968],[134.514244,-5.530413499999952],[134.5155982000001,-5.531524799999943],[134.50893550000012,-5.538249599999972],[134.50607190000005,-5.545655799999963],[134.50592030000007,-5.553933],[134.5138184000001,-5.561865599999976],[134.51775870000006,-5.558914],[134.5183326,-5.556593299999975],[134.52337060000002,-5.555476799999951],[134.52910940000004,-5.5626764],[134.53103050000004,-5.569337599999926],[134.5383279,-5.567722],[134.539484,-5.5654157],[134.54218570000012,-5.567823199999964],[134.54493020000007,-5.566826699999979],[134.54862220000007,-5.5592609],[134.5522611,-5.557386299999962],[134.55533990000004,-5.560537599999975],[134.5656229000001,-5.563952799999981],[134.56732190000002,-5.560467699999947],[134.56899910000004,-5.560315299999957],[134.57155450000005,-5.563053699999955],[134.57111190000012,-5.569463599999949],[134.5810444000001,-5.566740899999957],[134.5851685,-5.570331],[134.59237990000008,-5.567240699999957],[134.59592870000006,-5.569713699999966],[134.5985372,-5.567304],[134.598967,-5.559771799999965],[134.59908280000002,-5.564968],[134.60099220000006,-5.564916199999971],[134.60175690000005,-5.567088199999944],[134.60308280000004,-5.565783799999963],[134.6115311000001,-5.568973699999958],[134.613098,-5.571136799999977],[134.61275920000003,-5.574005899999975],[134.62053430000003,-5.580834799999934],[134.62693380000007,-5.580664399999932],[134.62876140000003,-5.573690699999929],[134.62875770000005,-5.579669099999933],[134.63351950000003,-5.578718199999969],[134.63600270000006,-5.581278599999962],[134.63721010000006,-5.5810029],[134.6386487000001,-5.572279],[134.639712,-5.574041],[134.64087740000002,-5.572404799999958],[134.64217840000003,-5.573267399999963],[134.6410528,-5.569758099999945],[134.64404020000006,-5.573120699999947],[134.649148,-5.573016],[134.648981,-5.570484099999931],[134.6459268000001,-5.569330799999932],[134.649749,-5.568532399999981],[134.6490443,-5.566192099999967],[134.64656020000007,-5.565115899999967],[134.64910940000004,-5.559437599999967],[134.64748210000005,-5.555933599999946],[134.6479193,-5.551630899999964],[134.6530276000001,-5.557438599999955],[134.65331850000007,-5.559508199999925],[134.655865,-5.558421299999964],[134.65726070000005,-5.562542099999973],[134.6559810000001,-5.568286499999942],[134.65692490000004,-5.568700899999953],[134.65772,-5.565486799999974],[134.65946110000004,-5.5705942],[134.66109380000012,-5.5704236],[134.6646264000001,-5.565620299999978],[134.66527860000008,-5.568596299999967],[134.671983,-5.571751699999936],[134.67951430000005,-5.572164099999952],[134.6805114000001,-5.5701129],[134.6821338000001,-5.570585799999947],[134.68171710000001,-5.568807099999958],[134.6828624000001,-5.568316099999947],[134.6813105000001,-5.564627799999926],[134.68270030000008,-5.565611899999965],[134.6843365000001,-5.564547499999946],[134.6829487000001,-5.559876],[134.6892474000001,-5.563586399999963],[134.6872228000001,-5.569492899999943],[134.69177530000002,-5.571516599999939],[134.69635590000007,-5.570371799999975],[134.69897520000006,-5.566194],[134.6976684000001,-5.562833699999942],[134.69447920000005,-5.561930699999948],[134.68824050000012,-5.556328],[134.68453780000004,-5.549912099999972],[134.67688910000004,-5.545656399999928],[134.67811660000007,-5.544182099999944],[134.67376280000008,-5.5384287],[134.677572,-5.534958299999971],[134.68369570000004,-5.535119],[134.6879864000001,-5.537271399999952],[134.6898199000001,-5.534178199999928],[134.6903426,-5.535594499999945],[134.69500040000003,-5.536540899999977],[134.69954840000003,-5.535012499999937],[134.7009944,-5.535577099999955],[134.70317350000005,-5.5324394],[134.69961990000002,-5.530469],[134.70111370000006,-5.526152],[134.69954350000012,-5.524893099999929],[134.69969690000005,-5.522932699999956],[134.7032491000001,-5.521415099999956],[134.7036696,-5.519092],[134.7064448000001,-5.519868899999949],[134.70550050000008,-5.516017099999942],[134.6990959000001,-5.512017599999979],[134.69133520000003,-5.511214299999949],[134.6817986000001,-5.507212199999969],[134.680227,-5.505616199999963],[134.68025750000004,-5.500554099999931],[134.67556030000003,-5.490365899999972],[134.67267590000006,-5.489259],[134.6715749000001,-5.485559799999976],[134.66449210000007,-5.481389499999977],[134.66228520000004,-5.482876199999964],[134.66065170000002,-5.488460299999929],[134.66219580000006,-5.501864299999966],[134.6642485000001,-5.506370299999958],[134.66201480000007,-5.510892299999966],[134.66350240000008,-5.5063018],[134.66206090000003,-5.504894099999945],[134.6609830000001,-5.498419],[134.65529270000002,-5.492563699999948],[134.65176270000006,-5.495531199999959],[134.6540844000001,-5.492095599999971],[134.65157140000008,-5.486277099999938],[134.654084,-5.485924699999941],[134.6517202000001,-5.475428099999931],[134.64928140000006,-5.4742576],[134.6482198000001,-5.475957499999936],[134.648062,-5.473725399999978],[134.644984,-5.477443499999936],[134.6446135000001,-5.476274199999978],[134.6472040000001,-5.472700599999939],[134.646189,-5.4703811],[134.6482797000001,-5.470093399999939],[134.65077040000006,-5.467190599999981],[134.65109940000002,-5.462861199999963],[134.6528383000001,-5.460711199999935],[134.65161260000002,-5.459174099999927],[134.6514092000001,-5.450984199999937],[134.64818320000006,-5.447527699999966],[134.6475422000001,-5.439166799999953],[134.63777740000012,-5.432578299999932],[134.6310419,-5.430211199999974],[134.62834880000003,-5.427508899999964],[134.613195,-5.420916699999964],[134.60918330000004,-5.420644599999946],[134.60798450000004,-5.4220024],[134.6118418000001,-5.430030399999964],[134.60774880000008,-5.4370593],[134.60586640000008,-5.446777899999972],[134.6093849,-5.454808],[134.60440610000012,-5.447105699999952],[134.60480760000007,-5.444486099999949],[134.6021962000001,-5.4442327],[134.60522660000004,-5.441251],[134.60586350000005,-5.437447899999938],[134.60441550000007,-5.4361149],[134.60864130000004,-5.430703499999936],[134.60780120000004,-5.4276647],[134.60477130000004,-5.424962199999925],[134.597438,-5.422636199999943],[134.6012372,-5.420909],[134.601744,-5.418546299999946],[134.59753630000012,-5.414323799999977],[134.5911351000001,-5.416176199999938],[134.589446,-5.423432899999966],[134.58557670000005,-5.417016399999966],[134.5837844,-5.416290799999956],[134.57904010000004,-5.419616299999973],[134.57469130000004,-5.41785],[134.57159720000004,-5.418678299999954],[134.56636490000005,-5.424793699999952],[134.56791040000007,-5.427750399999979],[134.56562570000006,-5.426484],[134.56459710000001,-5.427548799999954],[134.56406990000005,-5.431378099999961],[134.56929390000005,-5.439103899999964],[134.57220230000007,-5.439917199999968],[134.57523550000008,-5.437873599999932],[134.57801640000002,-5.439248599999928],[134.57652550000012,-5.440845299999978],[134.56997320000005,-5.4414523],[134.56593170000008,-5.439947299999972],[134.55964440000002,-5.434417599999961],[134.55544110000005,-5.4348311],[134.55493890000002,-5.438934599999925],[134.55736020000006,-5.440983899999935],[134.5580394000001,-5.445693399999925],[134.5608446000001,-5.448803299999952],[134.559818,-5.449881799999957],[134.55460030000006,-5.445011399999942],[134.55304260000003,-5.4399467],[134.550776,-5.4382622],[134.5486694000001,-5.437627199999952],[134.54795190000004,-5.438791],[134.54682750000006,-5.436231599999928],[134.54244810000012,-5.436660399999937],[134.53965240000002,-5.432616799999948],[134.538528,-5.43487],[134.5367255000001,-5.433697499999937],[134.5352861,-5.435140699999977],[134.53397510000002,-5.430081499999972],[134.5305029000001,-5.426516699999979],[134.52708180000002,-5.427562799999976],[134.51994280000008,-5.425422699999956],[134.51398010000003,-5.421354899999926],[134.50831950000008,-5.419666199999938],[134.500037,-5.419764199999975],[134.4907789,-5.432416499999931],[134.4930654000001,-5.440007],[134.49587530000008,-5.441951],[134.49347380000006,-5.443323299999975],[134.4942049000001,-5.446911099999966],[134.498187,-5.448210599999925],[134.5001718000001,-5.451174899999955],[134.5027325000001,-5.450795099999937],[134.502904,-5.454421799999977],[134.5008259000001,-5.456408099999976],[134.50156330000004,-5.459456899999964],[134.5034829000001,-5.460454499999969],[134.5014827000001,-5.463831499999969],[134.5019238000001,-5.467004899999949],[134.5006618000001,-5.467727799999977],[134.50284280000005,-5.470398799999941],[134.5018871000001,-5.471758799999975],[134.50044130000003,-5.471329899999944],[134.49974290000011,-5.475728499999946],[134.49562620000006,-5.476292099999966],[134.49416810000002,-5.479404199999976],[134.4908997000001,-5.479551799999967],[134.4909305000001,-5.484487299999955],[134.493395,-5.4845],[134.4918848000001,-5.486736199999939],[134.49769330000004,-5.488769199999979],[134.5028566000001,-5.487800399999969],[134.5073063000001,-5.484819399999935],[134.51221450000003,-5.485952099999963],[134.51583760000005,-5.479697099999953],[134.52261170000008,-5.481701],[134.52688820000003,-5.488250099999959],[134.52948020000008,-5.488707499999975],[134.53296530000011,-5.478775],[134.5365101000001,-5.479043499999932],[134.53324120000002,-5.479098099999931],[134.53206340000008,-5.4857281],[134.52979460000006,-5.489618499999949],[134.52647130000003,-5.489929899999936],[134.52122,-5.4860439],[134.51490610000008,-5.488795699999969],[134.5081090000001,-5.488628],[134.50616620000005,-5.489437199999941],[134.50506070000006,-5.492116399999929]]],[[[134.64548710000008,-5.413110199999949],[134.64210580000008,-5.414070799999934],[134.643671,-5.4218685],[134.6470207000001,-5.424378],[134.65062850000004,-5.424532799999952],[134.6513364000001,-5.4222419],[134.64548710000008,-5.413110199999949]]],[[[134.6476954000001,-5.406223299999965],[134.64762440000004,-5.404491199999939],[134.6460403000001,-5.404273799999942],[134.64603920000002,-5.406078],[134.6476954000001,-5.406223299999965]]],[[[134.68253660000005,-5.397501699999964],[134.67819830000008,-5.397523499999977],[134.6773909000001,-5.398806499999978],[134.6811527000001,-5.400884899999937],[134.68249560000004,-5.400397899999973],[134.68253660000005,-5.397501699999964]]],[[[134.56569780000007,-5.399912899999947],[134.5669273000001,-5.3982869],[134.56559120000009,-5.3970393],[134.564384,-5.398929599999974],[134.56569780000007,-5.399912899999947]]],[[[134.6279009000001,-5.3967286],[134.6212309000001,-5.399619299999927],[134.62088720000008,-5.401287],[134.62239750000003,-5.401594699999976],[134.6196126000001,-5.402996599999938],[134.61762010000007,-5.406831499999953],[134.618224,-5.4087302],[134.62487480000004,-5.414155099999959],[134.6295778000001,-5.413096399999972],[134.6310353,-5.409779899999933],[134.6314437000001,-5.406205399999976],[134.63037770000005,-5.403312799999981],[134.6282093000001,-5.402214599999979],[134.62953760000005,-5.400270399999954],[134.6279009000001,-5.3967286]]],[[[134.593993,-5.396878],[134.59219210000003,-5.394561499999952],[134.588451,-5.393729199999939],[134.5780092000001,-5.401333699999952],[134.58256460000007,-5.403556],[134.59271830000012,-5.4049],[134.594196,-5.403303799999946],[134.59276010000008,-5.4015289],[134.59477620000007,-5.400395199999934],[134.593993,-5.396878]]],[[[134.6851736000001,-5.392803199999946],[134.68369310000003,-5.392169199999955],[134.68626460000007,-5.394001],[134.6851736000001,-5.392803199999946]]],[[[134.6602802000001,-5.388735899999972],[134.65694410000003,-5.387348799999927],[134.65233520000004,-5.389711],[134.6501704000001,-5.394443499999966],[134.65109840000002,-5.397057599999926],[134.6547104000001,-5.399348099999941],[134.663079,-5.4003804],[134.67204,-5.406608899999981],[134.67642640000008,-5.406437399999959],[134.676824,-5.403890499999932],[134.6692511000001,-5.394630899999925],[134.66476010000008,-5.390120799999977],[134.6602802000001,-5.388735899999972]]],[[[134.6227265000001,-5.396452599999975],[134.6253667000001,-5.391794],[134.62266980000004,-5.3876918],[134.61579910000012,-5.389163199999928],[134.6169308000001,-5.392762599999969],[134.6227265000001,-5.396452599999975]]],[[[134.6777767000001,-5.389298099999962],[134.6718714000001,-5.386940099999947],[134.66988870000012,-5.3891539],[134.67758590000005,-5.395415599999978],[134.6821774000001,-5.393858899999941],[134.682296,-5.391020699999956],[134.6777767000001,-5.389298099999962]]],[[[134.61072450000006,-5.389469499999961],[134.61311390000003,-5.386822199999926],[134.61203890000002,-5.382931599999949],[134.6095395000001,-5.381270499999971],[134.605302,-5.386972599999979],[134.5955484000001,-5.390768499999979],[134.59322090000012,-5.393605199999968],[134.59659120000003,-5.398537699999963],[134.59578950000002,-5.401612899999975],[134.60305520000009,-5.404453199999978],[134.60647590000008,-5.408027299999958],[134.6105659000001,-5.4082122],[134.6128391000001,-5.406486399999949],[134.6163408000001,-5.400225499999976],[134.62025630000005,-5.39749],[134.61373950000007,-5.390017],[134.61072450000006,-5.389469499999961]]],[[[134.59908630000007,-5.381010799999956],[134.59563750000007,-5.381925799999976],[134.59029240000007,-5.386154199999964],[134.58917,-5.387808699999937],[134.59002250000003,-5.391046099999926],[134.6045977000001,-5.385594],[134.6036789000001,-5.382285899999943],[134.59908630000007,-5.381010799999956]]],[[[134.70522440000002,-5.378702299999929],[134.70781180000006,-5.376976199999945],[134.70666240000003,-5.373956499999963],[134.70234170000003,-5.372946499999955],[134.69997020000005,-5.374496],[134.699696,-5.378657199999964],[134.70522440000002,-5.378702299999929]]],[[[134.6072782000001,-5.368827599999975],[134.6045037,-5.373994899999957],[134.6100792000001,-5.375214099999937],[134.61051510000004,-5.370696899999928],[134.6072782000001,-5.368827599999975]]],[[[134.47767780000004,-5.376982299999952],[134.47335940000005,-5.372157299999969],[134.47364420000008,-5.368908],[134.47179590000007,-5.366683],[134.46807300000012,-5.368096099999946],[134.46679920000008,-5.371705],[134.46804970000005,-5.377102599999944],[134.47846550000008,-5.377669899999944],[134.47767780000004,-5.376982299999952]]],[[[134.58949230000007,-5.357197099999951],[134.58626870000012,-5.356813299999942],[134.5823087000001,-5.361000099999956],[134.5780800000001,-5.362089899999944],[134.575869,-5.365692699999954],[134.5769163000001,-5.368528899999944],[134.57462440000006,-5.372838399999978],[134.5711606000001,-5.375072099999954],[134.5738699000001,-5.3788692],[134.56985270000007,-5.3778798],[134.5667036000001,-5.385578199999941],[134.5654376000001,-5.384987799999976],[134.56261110000003,-5.387213499999973],[134.56268750000004,-5.392796699999963],[134.5702828000001,-5.395975399999941],[134.5731601000001,-5.393595699999935],[134.57689430000005,-5.394207499999936],[134.5775731000001,-5.391607199999953],[134.58004060000007,-5.392431599999952],[134.58244120000006,-5.390112299999942],[134.58303990000002,-5.386945099999934],[134.5909772000001,-5.380736799999966],[134.59353580000004,-5.373902899999962],[134.59617470000012,-5.3713562],[134.60359070000004,-5.370395599999938],[134.60487000000012,-5.36578],[134.60137740000005,-5.358152],[134.58949230000007,-5.357197099999951]]],[[[134.526421,-5.330202299999939],[134.51681010000004,-5.3326062],[134.51099980000004,-5.340149499999939],[134.51095320000002,-5.345591299999967],[134.5129875,-5.346308199999953],[134.51364020000005,-5.3413305],[134.52112280000006,-5.339409799999942],[134.522235,-5.336448],[134.52890170000012,-5.331884799999955],[134.52646730000004,-5.330458199999953],[134.52950580000004,-5.331144599999959],[134.53186370000003,-5.334728199999972],[134.53459740000005,-5.335612199999957],[134.53603470000007,-5.333339],[134.5382829,-5.334868699999959],[134.5389252000001,-5.337773899999945],[134.5411782000001,-5.338466799999935],[134.53867490000005,-5.334860499999934],[134.53605490000007,-5.332734099999925],[134.526421,-5.330202299999939]]],[[[134.5827382000001,-5.328583599999945],[134.57012310000005,-5.325920399999973],[134.5576837000001,-5.3299471],[134.55858420000004,-5.330913199999941],[134.55192770000008,-5.3352831],[134.5528584000001,-5.339203299999951],[134.5497858000001,-5.338818],[134.5473115000001,-5.3418212],[134.54738410000004,-5.344769799999938],[134.55065330000002,-5.3462465],[134.54876860000002,-5.3490932],[134.55152920000012,-5.353886899999964],[134.5479216000001,-5.3560215],[134.54611540000008,-5.355533899999955],[134.547454,-5.353315699999939],[134.54433360000007,-5.348815699999932],[134.5336635000001,-5.351063599999975],[134.52995970000006,-5.355442599999947],[134.5264922,-5.355001699999946],[134.5260879000001,-5.3599768],[134.52937040000006,-5.364372399999979],[134.5276917000001,-5.365058099999942],[134.5271656000001,-5.3633262],[134.52172550000012,-5.360514799999976],[134.51970330000006,-5.362178299999925],[134.52022580000005,-5.363138399999968],[134.5179756000001,-5.362435599999969],[134.51405220000004,-5.364188],[134.5150334000001,-5.366489899999976],[134.50751230000003,-5.368438699999956],[134.5057597000001,-5.376642499999946],[134.5067593000001,-5.378832699999975],[134.50458350000008,-5.380202],[134.504353,-5.379216699999972],[134.50291760000005,-5.382333599999981],[134.5035610000001,-5.387182299999949],[134.5066402000001,-5.388369299999965],[134.508679,-5.392477099999951],[134.51633960000004,-5.398179499999969],[134.51629320000006,-5.399836],[134.51887610000006,-5.399111499999947],[134.51986460000012,-5.401166099999955],[134.52298230000008,-5.401808899999935],[134.5291059000001,-5.407505699999945],[134.5387372,-5.411360499999944],[134.5424322,-5.409773199999961],[134.54751480000004,-5.398931399999981],[134.54925880000008,-5.399698799999953],[134.54982560000008,-5.398008699999934],[134.550768,-5.399524699999972],[134.5510190000001,-5.397659099999942],[134.55237590000002,-5.397506],[134.55174680000005,-5.395718899999963],[134.556932,-5.398529899999971],[134.55791620000002,-5.393015199999979],[134.55598750000001,-5.3901586],[134.55806210000003,-5.3882505],[134.5564475000001,-5.385994799999935],[134.55870830000003,-5.385897499999942],[134.56105050000008,-5.380468599999972],[134.56518590000007,-5.377907499999935],[134.5734251,-5.361487299999965],[134.57748860000004,-5.356561299999953],[134.57978030000004,-5.356527599999936],[134.5803873000001,-5.351638699999967],[134.59177020000004,-5.354587899999956],[134.6025224000001,-5.351831599999969],[134.60266420000005,-5.348413899999969],[134.59871580000004,-5.341462599999943],[134.59774040000002,-5.336445499999968],[134.59439020000002,-5.335702699999956],[134.58962050000002,-5.329986199999951],[134.5827382000001,-5.328583599999945]]]]},"properties":{"shapeName":"Kepulauan Aru","shapeISO":"","shapeID":"22746128B5849615346104","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[101.03528180000006,-4.016246599999931],[101.05160220000005,-4.004512299999931],[101.05411060000006,-3.9966596],[101.05217530000004,-3.993054399999949],[101.048442,-3.992200499999967],[101.03957350000007,-4.000925499999937],[101.03303040000009,-4.010235399999942],[101.03269920000008,-4.013986799999941],[101.03528180000006,-4.016246599999931]]],[[[100.66874060000004,-3.481573499999968],[100.65972030000006,-3.474108299999955],[100.64600980000006,-3.471491],[100.63830680000007,-3.466381],[100.63757650000008,-3.467057],[100.63555340000005,-3.481858699999975],[100.64534280000004,-3.487910599999964],[100.65838160000004,-3.487928299999965],[100.66543210000003,-3.491605899999968],[100.67080730000004,-3.491178499999933],[100.67589450000008,-3.488827599999979],[100.67758680000009,-3.4843195],[100.67662960000007,-3.480108099999939],[100.66874060000004,-3.481573499999968]]],[[[100.68178130000007,-3.455598099999975],[100.68105780000008,-3.45313],[100.67917940000007,-3.452791],[100.67915140000008,-3.454967699999941],[100.68178130000007,-3.455598099999975]]],[[[100.46323910000007,-3.292280699999935],[100.463144,-3.287236499999949],[100.46089490000008,-3.285798399999976],[100.45808120000004,-3.286640299999931],[100.46323910000007,-3.292280699999935]]],[[[100.33682740000006,-3.283607199999949],[100.33206240000004,-3.283114599999976],[100.33026230000007,-3.285113199999955],[100.33019280000008,-3.287803599999961],[100.33347420000007,-3.293085499999961],[100.33852520000005,-3.296263199999942],[100.33793340000005,-3.293916499999966],[100.34642420000006,-3.294717799999944],[100.34879720000004,-3.290741499999967],[100.34889190000007,-3.292774599999973],[100.34751620000009,-3.2957709],[100.34477510000005,-3.295608199999947],[100.34731480000005,-3.296399599999972],[100.34903980000007,-3.293347399999959],[100.349423,-3.291381499999943],[100.34872230000008,-3.290125599999953],[100.34160310000004,-3.283675399999936],[100.33682740000006,-3.283607199999949]]],[[[100.44626530000005,-3.270352399999979],[100.444053,-3.266195299999936],[100.44412560000006,-3.262025299999948],[100.43820820000008,-3.257353499999965],[100.43874130000006,-3.266046199999948],[100.44106270000003,-3.270367399999941],[100.44626530000005,-3.270352399999979]]],[[[100.56964160000007,-3.275090599999942],[100.57258450000006,-3.271861199999933],[100.57220550000005,-3.261845199999925],[100.56869660000007,-3.256560699999966],[100.56638620000007,-3.258841099999927],[100.56541730000004,-3.271173399999952],[100.56650660000008,-3.274175099999979],[100.56964160000007,-3.275090599999942]]],[[[100.53098790000007,-3.250650599999972],[100.53373630000004,-3.244757],[100.53099210000005,-3.237062499999979],[100.52958950000004,-3.237437099999966],[100.52689980000008,-3.243367399999954],[100.52772860000005,-3.248713399999929],[100.53098790000007,-3.250650599999972]]],[[[100.41345170000005,-3.224842099999933],[100.41227710000004,-3.221874699999944],[100.40937220000006,-3.224939199999938],[100.415626,-3.232451399999945],[100.42220450000008,-3.237081399999965],[100.42470220000007,-3.235422],[100.42693040000006,-3.236104],[100.42285410000005,-3.230315899999937],[100.42157190000006,-3.224763499999938],[100.41920550000003,-3.225234399999977],[100.41490260000006,-3.222213599999975],[100.41345170000005,-3.224842099999933]]],[[[100.34825180000007,-3.218502699999931],[100.34547470000007,-3.217909499999962],[100.34762620000004,-3.224255699999958],[100.34999890000006,-3.224668699999938],[100.34914450000008,-3.222761299999945],[100.35263870000006,-3.223588899999925],[100.351006,-3.218752299999949],[100.34825180000007,-3.218502699999931]]],[[[100.49288490000004,-3.230276],[100.49453580000005,-3.228252899999973],[100.49215150000003,-3.218047499999955],[100.48661970000006,-3.2122678],[100.48262870000008,-3.211260699999968],[100.48149430000007,-3.215807199999972],[100.49288490000004,-3.230276]]],[[[100.463287,-3.209046099999966],[100.45889180000006,-3.209443499999963],[100.460281,-3.216342399999974],[100.46581110000005,-3.222704399999941],[100.46840670000006,-3.2229452],[100.46944310000003,-3.221737399999938],[100.463287,-3.209046099999966]]],[[[100.29929530000004,-3.207992599999955],[100.29531280000003,-3.206867299999942],[100.29351230000003,-3.21103],[100.29457280000008,-3.213344099999972],[100.29930290000004,-3.2160426],[100.30162990000008,-3.214311899999927],[100.30070670000003,-3.209121599999946],[100.29929530000004,-3.207992599999955]]],[[[100.45402180000008,-3.205398],[100.45152580000007,-3.206796899999972],[100.45152920000004,-3.209181899999976],[100.45279190000008,-3.211248599999976],[100.45589,-3.2120035],[100.45712510000004,-3.210475799999926],[100.45664840000006,-3.207829299999958],[100.45402180000008,-3.205398]]],[[[100.40136180000007,-3.202286699999945],[100.39893270000005,-3.2008499],[100.39569170000004,-3.203407899999945],[100.398521,-3.210094099999935],[100.39896790000006,-3.216191799999933],[100.40813260000004,-3.219813299999942],[100.409934,-3.218626099999938],[100.41216,-3.212882799999932],[100.40981290000008,-3.204696],[100.40536610000004,-3.201351399999965],[100.40136180000007,-3.202286699999945]]],[[[100.527887,-3.201343399999928],[100.52508920000008,-3.2002681],[100.52436120000004,-3.201696199999958],[100.52975040000007,-3.202185499999928],[100.527887,-3.201343399999928]]],[[[100.50026150000008,-3.205996399999947],[100.50097390000008,-3.198740199999975],[100.49875940000004,-3.202171799999974],[100.50026150000008,-3.205996399999947]]],[[[100.49464680000006,-3.196896199999969],[100.49357460000004,-3.196935099999962],[100.49393210000005,-3.1982148],[100.49464680000006,-3.196896199999969]]],[[[100.533213,-3.196959699999979],[100.53162240000006,-3.1965386],[100.53362610000005,-3.197777199999962],[100.533213,-3.196959699999979]]],[[[100.48437050000007,-3.190207499999929],[100.48236670000006,-3.191480399999932],[100.48399130000007,-3.193990399999961],[100.48533480000003,-3.192069699999934],[100.48437050000007,-3.190207499999929]]],[[[100.45619310000006,-3.187814499999945],[100.45533860000006,-3.188693099999966],[100.45711630000005,-3.187740899999937],[100.45619310000006,-3.187814499999945]]],[[[100.48789310000006,-3.1820479],[100.486062,-3.182168],[100.48941130000009,-3.183375199999944],[100.48789310000006,-3.1820479]]],[[[100.40561860000008,-3.176900299999943],[100.40345060000004,-3.177275299999962],[100.40471060000004,-3.178198399999928],[100.40561860000008,-3.176900299999943]]],[[[100.41110810000004,-3.174205699999959],[100.409086,-3.175221599999929],[100.41154260000008,-3.177594499999941],[100.41110810000004,-3.174205699999959]]],[[[100.40225480000004,-3.167501099999924],[100.40045470000007,-3.164056599999981],[100.39890160000004,-3.164521399999956],[100.40259180000004,-3.1695262],[100.40225480000004,-3.167501099999924]]],[[[100.39689930000009,-3.1657895],[100.39753540000004,-3.1643536],[100.39612450000004,-3.161983899999939],[100.39547880000003,-3.163847399999952],[100.39689930000009,-3.1657895]]],[[[100.49165750000009,-3.1412046],[100.48901390000003,-3.141526799999951],[100.48602960000005,-3.147783899999979],[100.48767310000005,-3.152001],[100.48550430000006,-3.153346599999963],[100.48457230000008,-3.1573639],[100.48835580000008,-3.166089799999952],[100.48590440000004,-3.166785699999934],[100.48389970000005,-3.171017399999926],[100.49009430000007,-3.175743599999976],[100.49157120000007,-3.184675599999935],[100.49626640000008,-3.187035599999945],[100.50346640000004,-3.1991723],[100.50921990000006,-3.202162599999951],[100.51159510000008,-3.197294899999974],[100.516086,-3.1953513],[100.51992140000004,-3.195470499999942],[100.52635730000009,-3.1997624],[100.53117960000009,-3.199695299999973],[100.53213270000003,-3.197327599999937],[100.52890360000004,-3.193456599999934],[100.52449540000003,-3.193779399999926],[100.52010970000003,-3.190335499999946],[100.51838570000007,-3.183560099999966],[100.50781940000007,-3.179368],[100.50711860000007,-3.177674099999933],[100.50928450000004,-3.171302699999956],[100.50854110000006,-3.167987299999936],[100.50389690000009,-3.1677027],[100.50230720000008,-3.166498899999965],[100.50367720000008,-3.166179099999965],[100.50321450000007,-3.165035799999941],[100.49926750000009,-3.164120299999979],[100.49806030000008,-3.162509499999942],[100.49919620000009,-3.162759499999936],[100.49902730000008,-3.161434199999974],[100.50076550000006,-3.162656599999934],[100.50256550000006,-3.160321499999952],[100.50065780000006,-3.1469032],[100.49582270000008,-3.142188099999942],[100.49165750000009,-3.1412046]]],[[[100.30462850000004,-3.1224436],[100.29443570000007,-3.122275499999944],[100.30224050000004,-3.137587399999973],[100.30381210000007,-3.1382548],[100.30432330000008,-3.137232],[100.30754290000004,-3.139760599999931],[100.31037340000006,-3.137649499999952],[100.31110580000006,-3.128613],[100.30462850000004,-3.1224436]]],[[[100.23849570000004,-3.121230899999944],[100.24200280000008,-3.126397299999951],[100.244621,-3.1280507],[100.246359,-3.127121599999953],[100.24053740000005,-3.1213805],[100.23849570000004,-3.121230899999944]]],[[[100.23151630000007,-3.1167203],[100.22809330000007,-3.116495],[100.22726870000008,-3.118709699999954],[100.23689690000003,-3.120672699999943],[100.23396130000003,-3.117380299999979],[100.23151630000007,-3.1167203]]],[[[100.22685570000004,-3.115895799999976],[100.22632090000008,-3.116822699999943],[100.22782080000007,-3.116444],[100.22685570000004,-3.115895799999976]]],[[[100.47127490000008,-3.082598599999926],[100.46998360000003,-3.082774899999947],[100.47013260000006,-3.088396099999954],[100.47626130000003,-3.091390199999978],[100.47664890000004,-3.088171299999942],[100.47430880000007,-3.084277199999974],[100.47127490000008,-3.082598599999926]]],[[[100.24550860000005,-3.0656233],[100.24228620000008,-3.066156299999932],[100.24261230000008,-3.0696254],[100.244146,-3.069099299999948],[100.24550860000005,-3.0656233]]],[[[100.17474120000008,-3.053697899999975],[100.17222950000007,-3.054023899999947],[100.17010380000005,-3.057105199999967],[100.17027770000004,-3.062046799999962],[100.17744650000009,-3.068998199999953],[100.18098110000005,-3.075526299999979],[100.18640620000008,-3.0780912],[100.19083410000007,-3.076559699999962],[100.19240890000003,-3.074301599999956],[100.19081030000007,-3.067962099999932],[100.19303070000007,-3.067436199999975],[100.19545310000007,-3.069527199999925],[100.19759290000007,-3.065946199999928],[100.19379570000007,-3.059234899999979],[100.18602870000007,-3.057965799999977],[100.18166560000009,-3.054814],[100.17474120000008,-3.053697899999975]]],[[[100.46148170000004,-3.038891399999955],[100.45967720000004,-3.0367126],[100.45737960000008,-3.038375099999939],[100.45910780000008,-3.039505499999962],[100.45777090000007,-3.040222599999936],[100.45812780000006,-3.045515599999931],[100.45979660000006,-3.046626099999969],[100.45851520000008,-3.049370099999976],[100.46192190000005,-3.046885399999951],[100.46224520000004,-3.042404399999953],[100.46013190000008,-3.039767599999948],[100.46148170000004,-3.038891399999955]]],[[[100.45604940000004,-3.036283599999933],[100.45555850000005,-3.0353962],[100.45556110000007,-3.037332799999945],[100.45604940000004,-3.036283599999933]]],[[[100.45475580000004,-3.033686099999954],[100.45239270000008,-3.030870199999924],[100.4517,-3.032842099999925],[100.45349150000004,-3.034653599999956],[100.45475580000004,-3.033686099999954]]],[[[100.161717,-3.006366199999945],[100.15966040000006,-3.006550299999958],[100.15910270000006,-3.008138499999973],[100.160833,-3.010634],[100.16614890000005,-3.011885199999938],[100.16863250000006,-3.011039],[100.16706580000005,-3.007650399999932],[100.161717,-3.006366199999945]]],[[[100.154233,-3.010810899999967],[100.14715140000004,-3.006097799999964],[100.14451860000008,-3.0083221],[100.14503770000005,-3.016929599999969],[100.14851690000006,-3.025053],[100.15293970000005,-3.027483299999972],[100.15453240000005,-3.026370899999961],[100.15683880000006,-3.019356699999946],[100.15663450000005,-3.011000599999932],[100.154233,-3.010810899999967]]],[[[100.17901720000003,-2.884909099999959],[100.174506,-2.887048899999968],[100.17259260000009,-2.889615],[100.17630510000004,-2.894509699999958],[100.18173970000004,-2.891012399999966],[100.18072470000004,-2.885612699999967],[100.17901720000003,-2.884909099999959]]],[[[100.16757230000007,-2.874745899999937],[100.16200420000007,-2.871519099999944],[100.16052230000008,-2.8725834],[100.15945530000005,-2.877366699999925],[100.16523390000003,-2.884024899999929],[100.16749570000007,-2.884613],[100.17004930000007,-2.881745099999932],[100.16892390000004,-2.875482499999976],[100.16757230000007,-2.874745899999937]]],[[[100.14447860000007,-2.846823899999947],[100.13986140000009,-2.847532599999965],[100.13407830000006,-2.852007899999933],[100.131017,-2.852089099999944],[100.130267,-2.8545414],[100.13135940000006,-2.857357],[100.14011290000008,-2.859486799999956],[100.143748,-2.862456299999963],[100.14756210000007,-2.862817599999971],[100.14968820000007,-2.861589699999968],[100.15121980000004,-2.859064099999955],[100.14993010000006,-2.850208899999927],[100.14697190000004,-2.849559799999952],[100.14447860000007,-2.846823899999947]]],[[[100.17482230000007,-2.834530399999949],[100.17565810000008,-2.831921799999975],[100.17401280000007,-2.833817299999964],[100.17482230000007,-2.834530399999949]]],[[[100.27409850000004,-2.8307884],[100.27230460000004,-2.830732199999943],[100.27250870000006,-2.832186199999967],[100.27480860000009,-2.831980099999953],[100.27409850000004,-2.8307884]]],[[[100.28156570000004,-2.829901899999925],[100.28016060000004,-2.825286899999981],[100.27936,-2.830602399999975],[100.28078580000005,-2.833652299999926],[100.28275580000007,-2.832411499999978],[100.28156570000004,-2.829901899999925]]],[[[100.17131350000005,-2.829714899999942],[100.17599410000008,-2.826521199999945],[100.17533670000006,-2.823092599999939],[100.17268290000004,-2.820518899999968],[100.16943150000009,-2.821232899999927],[100.16740230000005,-2.8246017],[100.16807760000006,-2.828296799999976],[100.17131350000005,-2.829714899999942]]],[[[100.27060250000005,-2.818138799999929],[100.268648,-2.817305],[100.26583780000004,-2.819304799999941],[100.26429130000008,-2.823287],[100.26441420000003,-2.824926199999936],[100.26637520000008,-2.825104899999928],[100.26547260000007,-2.826574799999946],[100.26743540000007,-2.8275384],[100.26742880000006,-2.8289424],[100.26920380000007,-2.8279747],[100.26834470000006,-2.829999199999975],[100.27039640000004,-2.831149299999936],[100.27181380000007,-2.828015199999925],[100.27005910000008,-2.825448199999926],[100.27349,-2.823300699999947],[100.27248820000005,-2.822603899999933],[100.27343760000008,-2.819604599999934],[100.27060250000005,-2.818138799999929]]],[[[100.16749960000004,-2.820777499999963],[100.16986490000005,-2.810263599999928],[100.16473580000007,-2.811824699999931],[100.16266030000008,-2.813997799999925],[100.16383280000008,-2.818178],[100.16749960000004,-2.820777499999963]]],[[[100.256752,-2.807985699999961],[100.25718020000005,-2.806843399999934],[100.25551850000005,-2.807221199999958],[100.256752,-2.807985699999961]]],[[[100.25466630000005,-2.8006909],[100.25303230000009,-2.800943299999972],[100.25303480000008,-2.8033383],[100.25466630000005,-2.8006909]]],[[[100.16706410000006,-2.798051099999952],[100.16505730000006,-2.7983269],[100.16538910000008,-2.800387599999965],[100.16848560000005,-2.800211599999955],[100.16869890000004,-2.798481799999934],[100.16706410000006,-2.798051099999952]]],[[[100.22684240000007,-2.784959799999967],[100.22281960000004,-2.782650399999966],[100.22077330000008,-2.788060099999939],[100.21507220000007,-2.785162599999978],[100.20404470000005,-2.786874],[100.20066930000007,-2.785309299999938],[100.19948610000006,-2.787404799999933],[100.19708230000003,-2.788156499999957],[100.19928070000009,-2.793087199999945],[100.19264040000007,-2.793792199999928],[100.190923,-2.795466399999953],[100.19022450000006,-2.790198799999928],[100.18590280000006,-2.794049899999948],[100.18177930000007,-2.793975899999964],[100.17751260000006,-2.797408799999971],[100.17579690000008,-2.800811199999941],[100.17490740000005,-2.813271499999928],[100.177575,-2.8150252],[100.18287230000004,-2.824689699999965],[100.18440830000009,-2.8349705],[100.18330170000007,-2.837480299999925],[100.17870150000005,-2.840300399999933],[100.17856460000007,-2.842028699999958],[100.18331480000006,-2.843234399999972],[100.18184890000003,-2.846859599999959],[100.18285020000008,-2.849869],[100.18865780000004,-2.852713499999936],[100.19475840000007,-2.872516],[100.19478670000007,-2.876875199999972],[100.19257240000007,-2.880807799999957],[100.19618280000009,-2.885471799999948],[100.19588770000007,-2.894708499999979],[100.19007370000008,-2.905225599999937],[100.19676940000005,-2.915322199999935],[100.20136580000008,-2.9320442],[100.199707,-2.940598199999954],[100.19607420000006,-2.94063],[100.196964,-2.942831099999978],[100.19605010000004,-2.944058599999948],[100.19075290000006,-2.943478899999945],[100.19067190000004,-2.945625299999961],[100.19383710000005,-2.948704],[100.19173530000006,-2.954086],[100.18858320000004,-2.956794899999977],[100.18422660000004,-2.954263],[100.18211970000004,-2.9548785],[100.18292890000004,-2.959492699999942],[100.17971460000007,-2.962004799999931],[100.180495,-2.965655499999968],[100.18755370000008,-2.9688327],[100.19074780000005,-2.972080199999937],[100.19122450000003,-2.977891399999976],[100.18911950000006,-2.980318699999941],[100.18962320000009,-2.984610799999928],[100.18652610000004,-2.9890373],[100.19436530000007,-2.997760099999937],[100.19753350000008,-2.994352399999968],[100.20111310000004,-2.996271799999931],[100.20087480000007,-3.002751899999964],[100.20206830000006,-3.0037262],[100.20487510000004,-3.002951899999971],[100.20454750000005,-3.007663],[100.20599750000008,-3.010343399999954],[100.20788260000006,-3.009588699999938],[100.21188490000009,-3.012042199999939],[100.21288670000007,-3.014505799999938],[100.21114330000006,-3.018019899999956],[100.21392110000005,-3.021974899999975],[100.21803850000003,-3.023507399999971],[100.22067050000004,-3.021190799999943],[100.22300210000009,-3.022972099999947],[100.22339460000006,-3.024909199999968],[100.21885060000005,-3.028705199999933],[100.22196670000005,-3.035796699999935],[100.22707770000005,-3.0366331],[100.22935060000003,-3.0355156],[100.230489,-3.036740699999939],[100.23035210000006,-3.038273899999979],[100.22735920000008,-3.040312099999937],[100.22914390000005,-3.045034399999963],[100.227983,-3.048408399999971],[100.22959330000003,-3.0499675],[100.23143640000006,-3.057117],[100.23490270000008,-3.056722799999932],[100.23762060000007,-3.051576099999977],[100.24278770000006,-3.049003699999957],[100.24594790000003,-3.043807199999947],[100.24874830000005,-3.0431629],[100.25450340000003,-3.049329599999965],[100.25559330000004,-3.055808199999944],[100.24965670000006,-3.057329799999934],[100.24775550000004,-3.059654299999977],[100.24811330000006,-3.062308199999961],[100.251269,-3.064127],[100.25244920000006,-3.062184299999956],[100.25855640000003,-3.059800099999961],[100.261279,-3.062173899999948],[100.26211330000007,-3.067679799999951],[100.26109010000005,-3.069186399999978],[100.25468980000005,-3.0700272],[100.24985130000005,-3.073325299999965],[100.24704130000003,-3.073051],[100.246945,-3.080687],[100.25294740000004,-3.083435099999974],[100.25916310000008,-3.089384199999927],[100.26335010000008,-3.090865099999974],[100.26806980000003,-3.089854099999968],[100.26723240000007,-3.080693499999938],[100.27112140000008,-3.07721],[100.27870930000006,-3.076801199999977],[100.28123910000005,-3.077705699999967],[100.28298260000008,-3.080398],[100.28769350000005,-3.079559899999936],[100.29372,-3.081792199999938],[100.301115,-3.087917899999979],[100.31162160000008,-3.102742499999977],[100.31158560000006,-3.106696799999952],[100.30708210000006,-3.109383099999945],[100.30755190000008,-3.114079299999958],[100.30980990000006,-3.114517099999944],[100.31237930000003,-3.119039799999939],[100.31894830000005,-3.118017599999973],[100.32358890000006,-3.119306399999971],[100.32363860000004,-3.1229485],[100.32158310000005,-3.123650099999963],[100.32198750000003,-3.126346799999965],[100.33148910000006,-3.131028199999946],[100.33158520000006,-3.140127],[100.33935710000009,-3.140814399999954],[100.33871670000008,-3.1428322],[100.33447570000004,-3.143864599999972],[100.33320590000005,-3.147353099999975],[100.33502160000006,-3.150977799999964],[100.33448490000006,-3.155882499999962],[100.33557480000007,-3.157300899999939],[100.33889930000004,-3.157641],[100.33948720000006,-3.162995399999943],[100.33587610000006,-3.1661848],[100.32981020000005,-3.167080399999975],[100.32460730000008,-3.170540099999926],[100.32721560000005,-3.175839899999971],[100.32673440000008,-3.178229199999976],[100.32916790000007,-3.1832725],[100.33444940000004,-3.189224499999966],[100.34033990000006,-3.191159],[100.34064620000004,-3.192939399999943],[100.33763420000008,-3.194395899999961],[100.33924770000004,-3.201319799999965],[100.34277210000005,-3.202039199999945],[100.34730570000005,-3.209370299999932],[100.352533,-3.212492699999927],[100.35212310000009,-3.214908199999968],[100.35676480000006,-3.221349499999974],[100.36298750000009,-3.222149599999966],[100.36858830000006,-3.226695499999948],[100.36616880000008,-3.230572],[100.36103710000003,-3.227537],[100.35541990000007,-3.231064099999969],[100.34563370000006,-3.227236699999935],[100.34388460000008,-3.2292111],[100.34187270000007,-3.225383499999964],[100.34025290000005,-3.225584199999957],[100.34081210000005,-3.220705299999963],[100.33808,-3.216314599999976],[100.32894260000006,-3.207916299999965],[100.32438480000008,-3.207379499999945],[100.32390130000005,-3.210398],[100.32784340000006,-3.221391899999958],[100.32535860000007,-3.224557599999969],[100.32543230000005,-3.228759899999943],[100.33056850000008,-3.231685],[100.33600580000007,-3.2318995],[100.33363930000007,-3.2350167],[100.33512570000005,-3.239773399999933],[100.33358810000004,-3.242689799999937],[100.33650920000008,-3.246586],[100.34255770000004,-3.248252599999944],[100.34447750000004,-3.245443899999941],[100.35388920000008,-3.2437029],[100.36820640000008,-3.248592499999972],[100.376756,-3.253369899999939],[100.38269330000008,-3.259786799999972],[100.38103050000007,-3.263841],[100.37735,-3.264773599999955],[100.37885850000004,-3.273838299999966],[100.38093640000005,-3.277128499999947],[100.37972390000004,-3.280865199999937],[100.37726940000005,-3.282457099999931],[100.38022930000005,-3.287548899999933],[100.38481020000006,-3.289503099999934],[100.38710120000007,-3.293299299999944],[100.39495450000004,-3.297435199999939],[100.39886320000005,-3.297000399999945],[100.40175050000005,-3.299464799999953],[100.40665210000009,-3.300168599999949],[100.40864390000007,-3.303793399999961],[100.41703130000008,-3.308016099999975],[100.42090960000007,-3.314867],[100.41969540000008,-3.317294299999958],[100.42028110000007,-3.323205499999972],[100.43331030000007,-3.332058899999936],[100.43993410000007,-3.344361599999957],[100.44482170000003,-3.3471891],[100.45866020000005,-3.350002299999971],[100.472168,-3.348329099999944],[100.47263040000007,-3.343281],[100.47710690000008,-3.341724599999964],[100.47858250000007,-3.336660199999926],[100.47763830000008,-3.333680499999957],[100.46943090000008,-3.324778699999968],[100.47109710000007,-3.319433699999934],[100.47051760000005,-3.314815099999976],[100.46834010000003,-3.311984799999948],[100.457519,-3.3071535],[100.45646160000007,-3.299856899999952],[100.44444260000006,-3.283070299999963],[100.43784850000009,-3.279721599999959],[100.43272220000006,-3.279986599999972],[100.43106590000008,-3.271982399999956],[100.43212810000006,-3.2675483],[100.42918410000004,-3.257734399999947],[100.42492180000005,-3.253934399999935],[100.41501370000003,-3.249050199999942],[100.41349220000006,-3.245510499999966],[100.41129120000005,-3.244891099999961],[100.40740420000009,-3.232457099999976],[100.40193970000007,-3.225440899999967],[100.39864920000008,-3.224629799999946],[100.39576830000004,-3.226715899999931],[100.39700320000009,-3.223572299999944],[100.39531140000008,-3.220440599999961],[100.39740190000003,-3.218645099999947],[100.39323130000008,-3.214808499999947],[100.39268470000007,-3.2084885],[100.38713640000003,-3.198139099999935],[100.39057640000004,-3.198842799999966],[100.38965340000004,-3.195538299999953],[100.37358360000007,-3.179601299999945],[100.37537770000006,-3.179491599999949],[100.38941420000003,-3.190473099999963],[100.39224290000004,-3.197316799999953],[100.397276,-3.199068899999929],[100.40114010000008,-3.197539499999948],[100.40253010000004,-3.198761099999956],[100.40504440000007,-3.194185399999981],[100.40852910000007,-3.196456099999978],[100.40969990000008,-3.1934922],[100.40536320000007,-3.192982899999947],[100.40380980000003,-3.184086599999944],[100.398664,-3.176378099999965],[100.39562810000007,-3.174257099999977],[100.39274230000007,-3.172629599999937],[100.38525780000003,-3.1733915],[100.38192330000004,-3.1716572],[100.37998020000003,-3.172132099999942],[100.38016210000006,-3.169918699999926],[100.37781090000004,-3.168676799999957],[100.37478010000007,-3.170419599999946],[100.36954530000008,-3.169181499999979],[100.36632250000008,-3.171031899999946],[100.36140190000003,-3.167229],[100.35913290000008,-3.163453899999979],[100.36437120000005,-3.167482599999971],[100.36577870000008,-3.165699099999927],[100.36366130000005,-3.163598199999967],[100.36466340000004,-3.162201599999946],[100.37723560000006,-3.164159799999936],[100.38026620000005,-3.1623311],[100.38355780000006,-3.156995399999971],[100.386003,-3.159892199999945],[100.39081010000007,-3.160808799999927],[100.39144980000003,-3.159992299999942],[100.387535,-3.155446799999936],[100.38798090000006,-3.153428399999939],[100.39018040000008,-3.153124899999966],[100.39175760000006,-3.150504],[100.40068370000006,-3.155967099999941],[100.40700260000006,-3.153511499999979],[100.41142790000004,-3.156424799999968],[100.41816090000003,-3.152289199999927],[100.42327620000003,-3.156101799999931],[100.42346590000005,-3.154255599999942],[100.42564240000007,-3.1527071],[100.42414460000003,-3.148216099999956],[100.42574570000005,-3.147612799999933],[100.42699990000006,-3.143232199999943],[100.43020950000005,-3.147499399999958],[100.43400230000003,-3.1494919],[100.44310350000006,-3.151260899999954],[100.44514790000005,-3.146942499999966],[100.44887120000004,-3.145308799999952],[100.45290830000005,-3.1475126],[100.46429320000004,-3.146378699999957],[100.47024460000006,-3.143924899999945],[100.47179630000005,-3.139536499999963],[100.47229130000005,-3.127769699999931],[100.47030240000004,-3.124941],[100.46615010000005,-3.122813099999973],[100.46226610000008,-3.123204599999951],[100.46213620000003,-3.121810499999981],[100.45946950000007,-3.122715099999937],[100.45818710000003,-3.121429899999953],[100.45668190000004,-3.1133023],[100.45738090000003,-3.107865899999979],[100.46113370000006,-3.108490899999936],[100.46259870000006,-3.106582499999945],[100.46107290000003,-3.102290299999936],[100.45594680000005,-3.101244899999926],[100.45916590000007,-3.100247],[100.46105030000007,-3.094448799999952],[100.46267370000004,-3.084527399999956],[100.46188980000005,-3.078636599999925],[100.46365220000007,-3.0762452],[100.46187390000006,-3.073758699999928],[100.46388170000006,-3.070478599999944],[100.46824640000006,-3.067919599999925],[100.46878260000005,-3.063853299999948],[100.46517090000003,-3.057410799999957],[100.46772680000004,-3.053433499999926],[100.46636890000008,-3.047512099999949],[100.46839390000008,-3.0436801],[100.464826,-3.040595099999962],[100.46504740000006,-3.039345],[100.46379390000004,-3.039795399999946],[100.46237210000004,-3.049643499999945],[100.46037320000005,-3.051921299999947],[100.45760870000004,-3.051081099999976],[100.45590880000003,-3.047331],[100.45460210000005,-3.047813399999939],[100.45419440000006,-3.044983199999933],[100.45086720000006,-3.044695599999955],[100.45160690000006,-3.041436499999975],[100.45020530000005,-3.042421199999978],[100.45247550000005,-3.039309499999945],[100.45183520000006,-3.037287599999956],[100.453164,-3.037542099999939],[100.45291680000008,-3.035430099999928],[100.451631,-3.035549299999957],[100.44715730000007,-3.028478499999949],[100.44783560000008,-3.027035499999954],[100.44608660000006,-3.022504],[100.44937640000006,-3.018856899999946],[100.45077160000005,-3.021023599999978],[100.44968780000005,-3.021249399999931],[100.44953710000004,-3.019786099999976],[100.44861520000006,-3.021849],[100.45199910000008,-3.023077399999977],[100.45015150000006,-3.024340399999971],[100.451246,-3.0241681],[100.45313610000005,-3.028606399999944],[100.45435640000005,-3.027119899999946],[100.45775820000006,-3.027767],[100.45604470000006,-3.025985299999945],[100.45402620000004,-3.026618299999939],[100.454882,-3.022586299999944],[100.45234160000007,-3.022333299999957],[100.45503920000004,-3.020919599999957],[100.452751,-3.018583299999932],[100.45308750000004,-3.015848099999971],[100.45872190000006,-3.0228125],[100.45910820000006,-3.026924699999938],[100.45721340000006,-3.028828499999975],[100.458356,-3.029295],[100.45856160000005,-3.033178699999951],[100.46178780000008,-3.034641099999931],[100.46324620000007,-3.033854599999927],[100.46293520000006,-3.029761599999972],[100.46822540000005,-3.027454299999931],[100.46537240000004,-3.025923199999966],[100.46506470000008,-3.024218],[100.46679590000008,-3.0244204],[100.46818510000008,-3.0227812],[100.46862210000006,-3.0196423],[100.46546520000004,-3.019169],[100.46370550000006,-3.022991899999965],[100.464285,-3.0248672],[100.461536,-3.024973299999942],[100.46040680000004,-3.020299],[100.46169440000006,-3.018796299999963],[100.45891040000004,-3.018015499999933],[100.45800170000007,-3.015236],[100.45502560000006,-3.013911299999961],[100.45607070000005,-3.012885599999947],[100.45506070000005,-3.010306199999945],[100.42902840000005,-3.003284],[100.42951280000005,-3.000226099999963],[100.42749330000004,-3.0009205],[100.42524710000004,-2.998022399999968],[100.42573320000008,-2.996236499999952],[100.42753360000006,-2.9977739],[100.42877030000005,-2.994507299999952],[100.42643970000006,-2.991420399999924],[100.42627940000006,-2.988190599999939],[100.42399550000005,-2.986192399999936],[100.42444310000008,-2.984290199999975],[100.42137540000004,-2.983911],[100.41934170000007,-2.9811471],[100.41982780000006,-2.9772136],[100.42218850000006,-2.975942099999941],[100.42157670000006,-2.974223399999971],[100.41599910000008,-2.969463499999961],[100.40447360000007,-2.966305399999953],[100.39454450000005,-2.957113199999981],[100.39163710000008,-2.947837899999968],[100.38755450000008,-2.946685299999956],[100.38450960000006,-2.942492299999969],[100.38203460000005,-2.933463199999949],[100.37174210000006,-2.927189],[100.36541110000007,-2.917402899999956],[100.35914320000006,-2.913152099999934],[100.35612860000003,-2.908160599999974],[100.35490160000006,-2.901641099999949],[100.34950020000008,-2.898501],[100.346502,-2.894253399999968],[100.34392890000004,-2.894937499999969],[100.33970270000003,-2.893170199999929],[100.33728310000004,-2.888610399999948],[100.32864390000003,-2.881180499999971],[100.32298450000008,-2.880564399999969],[100.31550770000007,-2.875675599999965],[100.31005940000006,-2.873969299999942],[100.30860310000008,-2.8705457],[100.29922020000004,-2.860289499999965],[100.29403370000006,-2.8514325],[100.28940560000007,-2.852184299999976],[100.28827320000005,-2.854168499999957],[100.28359370000004,-2.8531033],[100.28240460000006,-2.850441799999942],[100.28516070000006,-2.848631299999965],[100.28549960000004,-2.845851399999958],[100.28399680000007,-2.844344],[100.278016,-2.844613699999968],[100.27704130000006,-2.847124099999974],[100.27533110000007,-2.847599799999955],[100.27421250000003,-2.846355199999948],[100.275534,-2.841686],[100.26911870000004,-2.843918599999938],[100.26711010000008,-2.842920599999957],[100.26613040000007,-2.840903699999956],[100.26716370000008,-2.838016599999946],[100.27086260000004,-2.836292899999933],[100.26863570000006,-2.833440799999948],[100.26622770000006,-2.834320799999944],[100.26514280000004,-2.831882899999925],[100.26647010000005,-2.832460499999968],[100.26707980000003,-2.8313543],[100.26118660000009,-2.825243399999977],[100.26393110000004,-2.8254114],[100.26207820000008,-2.823026899999945],[100.26389310000008,-2.822551199999964],[100.26286060000007,-2.820711599999925],[100.26486050000005,-2.818323699999951],[100.26021360000004,-2.818900399999961],[100.26307840000004,-2.816263],[100.26426570000007,-2.817007299999943],[100.26342340000008,-2.815293499999939],[100.26465880000006,-2.814670799999931],[100.26026930000006,-2.813379699999928],[100.25989530000004,-2.810422799999969],[100.25880780000006,-2.810548199999971],[100.26051990000008,-2.816485799999953],[100.25906410000005,-2.819071899999926],[100.25760110000004,-2.8148985],[100.25915850000007,-2.814871899999957],[100.25860860000006,-2.813451399999963],[100.257397,-2.813179399999967],[100.25485430000003,-2.816537099999948],[100.255567,-2.812510399999951],[100.25354,-2.812686499999927],[100.25465510000004,-2.815120799999931],[100.25364210000004,-2.815718299999958],[100.25064860000003,-2.813559399999974],[100.25034930000004,-2.811099499999955],[100.25521680000008,-2.808708599999932],[100.25491850000009,-2.806632199999967],[100.25726490000005,-2.804691299999945],[100.25696470000008,-2.801436099999933],[100.25493910000006,-2.802805099999944],[100.254548,-2.806980499999952],[100.24970260000003,-2.806811699999969],[100.25202090000005,-2.801665],[100.25073450000008,-2.8007718],[100.25323050000009,-2.800073299999951],[100.25245150000006,-2.798443499999962],[100.245164,-2.796857299999942],[100.24014750000003,-2.798925199999928],[100.24216590000003,-2.7932518],[100.24035780000008,-2.787790499999971],[100.23814990000005,-2.787509599999964],[100.23475380000008,-2.783452],[100.22684240000007,-2.784959799999967]]],[[[100.22688460000006,-2.777885899999944],[100.22586690000009,-2.776031099999955],[100.22229080000005,-2.77467],[100.22248,-2.7779916],[100.22582140000009,-2.779009299999927],[100.22688460000006,-2.777885899999944]]],[[[99.979152,-2.758631199999968],[99.97970710000004,-2.756573],[99.97859310000007,-2.756059499999935],[99.979152,-2.758631199999968]]],[[[99.98886330000005,-2.757745399999976],[99.98991580000006,-2.756609699999956],[99.98756730000008,-2.755734099999927],[99.98704140000007,-2.756672699999967],[99.98886330000005,-2.757745399999976]]],[[[99.98405210000004,-2.747002599999973],[99.98236540000005,-2.745490899999936],[99.97965730000004,-2.746491799999944],[99.979058,-2.749760399999957],[99.98097660000008,-2.756904599999928],[99.98431690000007,-2.756009199999937],[99.98711230000004,-2.753294199999971],[99.987335,-2.749496299999976],[99.98302930000006,-2.747654],[99.98405210000004,-2.747002599999973]]],[[[99.99390580000005,-2.502490499999965],[99.98522870000005,-2.505930299999932],[99.976727,-2.507266099999924],[99.97299380000004,-2.5113616],[99.972009,-2.516732099999956],[99.97532880000006,-2.530420799999945],[99.97152770000008,-2.533190099999956],[99.97474070000004,-2.537277299999971],[99.97270290000006,-2.5400004],[99.97460890000008,-2.541998199999966],[99.96993550000008,-2.55371],[99.97414860000004,-2.563741099999959],[99.97380660000005,-2.566979799999956],[99.97141350000004,-2.569417899999962],[99.96178650000007,-2.570484099999931],[99.95859960000007,-2.569620599999951],[99.96349890000005,-2.581276499999944],[99.97082010000008,-2.589134399999978],[99.98140270000005,-2.595604599999945],[99.98146710000003,-2.598383499999954],[99.98809530000005,-2.607769699999949],[99.98741380000007,-2.621906899999942],[99.98221630000006,-2.625202199999933],[99.97758990000005,-2.622706299999948],[99.97475140000006,-2.626828399999965],[99.97504460000005,-2.629927799999962],[99.97673350000008,-2.632558199999949],[99.98495520000006,-2.6347297],[99.98870030000006,-2.638528099999974],[99.99370220000009,-2.6478262],[99.99231010000005,-2.652828799999952],[99.99413940000005,-2.658238199999971],[99.99859260000005,-2.664270099999953],[100.00564370000006,-2.666837599999951],[100.009512,-2.673961399999939],[100.011989,-2.686537699999974],[100.01050380000004,-2.691279899999927],[100.00820950000008,-2.695605499999942],[100.00625480000008,-2.69542],[100.00572850000003,-2.696699199999955],[100.00218890000008,-2.693146399999932],[99.99889230000008,-2.696926099999928],[100.00001410000004,-2.703007399999933],[100.002535,-2.7063],[100.00204790000004,-2.716541],[100.00947350000007,-2.727155299999936],[100.00897830000008,-2.728528099999949],[100.00494520000007,-2.728749799999946],[100.00469710000004,-2.731537199999934],[100.007804,-2.736837],[100.01122810000004,-2.737907399999926],[100.011975,-2.740713899999946],[100.01045690000007,-2.743272899999965],[100.000109,-2.744044699999961],[99.99893390000005,-2.748661899999945],[99.99495980000006,-2.751050099999929],[99.99638960000004,-2.759950199999935],[99.99235650000008,-2.760265499999946],[99.98890890000007,-2.765180499999929],[99.99325450000003,-2.767547399999955],[99.99368960000004,-2.768420399999968],[99.99167310000007,-2.768609199999958],[99.994902,-2.771288899999945],[99.99257550000004,-2.771758699999964],[99.98300150000006,-2.765637399999946],[99.97838260000003,-2.766308599999945],[99.97633870000004,-2.770064499999933],[99.97672770000008,-2.7722332],[99.98001040000008,-2.7665407],[99.98557140000008,-2.767815299999938],[99.98662450000006,-2.770178099999953],[99.98026430000004,-2.772602799999959],[99.98131790000008,-2.775605199999973],[99.97705920000004,-2.779323199999965],[99.97324670000006,-2.785305199999925],[99.973663,-2.786862199999973],[99.97795120000006,-2.787609399999951],[99.98082630000005,-2.785438],[99.98018780000007,-2.782768899999951],[99.98317520000006,-2.782543899999951],[99.98259130000008,-2.778957099999957],[99.98552890000008,-2.773821799999951],[99.99395770000007,-2.776605],[99.99440420000008,-2.781276499999933],[99.98961510000004,-2.785103299999946],[99.99075390000007,-2.790691899999956],[99.99737390000007,-2.796873799999958],[100.00890070000008,-2.803076099999942],[100.00974580000008,-2.8079814],[100.01626330000005,-2.810461699999962],[100.01629390000005,-2.8137987],[100.01352850000006,-2.814746599999978],[100.01333440000008,-2.816790099999935],[100.01696060000006,-2.819539899999938],[100.01265250000006,-2.829041399999937],[100.00450830000005,-2.830395199999941],[99.99992850000007,-2.827143399999954],[99.99699650000008,-2.827424],[99.99564220000008,-2.828871299999946],[99.99606,-2.832207899999958],[99.99954930000007,-2.836570799999947],[100.00326340000004,-2.8375563],[100.00412390000008,-2.841003699999931],[100.01005960000003,-2.846439399999952],[100.014488,-2.848966099999927],[100.016036,-2.847713299999953],[100.01929030000008,-2.850857899999937],[100.02780960000007,-2.849738],[100.03241530000008,-2.846250899999973],[100.03689760000003,-2.847220199999924],[100.03921360000004,-2.852146],[100.040845,-2.851338099999964],[100.04123070000009,-2.849502399999949],[100.03948610000003,-2.847474],[100.04125690000006,-2.847945099999947],[100.04241760000008,-2.846692699999949],[100.04257810000007,-2.840945799999929],[100.03758510000006,-2.830282],[100.03907230000004,-2.822589799999946],[100.04454460000005,-2.817134499999952],[100.04820460000008,-2.815422799999965],[100.05171960000007,-2.817588599999965],[100.05859360000005,-2.818586599999946],[100.07377890000004,-2.841803599999935],[100.078757,-2.840631099999939],[100.08021220000006,-2.842528099999925],[100.08306090000008,-2.841941499999962],[100.08341950000005,-2.840884399999936],[100.08092840000006,-2.8393018],[100.08355610000007,-2.836113599999976],[100.08148070000004,-2.835309099999961],[100.08075820000005,-2.8318338],[100.08261130000005,-2.8314984],[100.08759320000007,-2.834413499999926],[100.09139530000004,-2.829700199999934],[100.09400660000006,-2.833351099999959],[100.10195090000008,-2.835739199999978],[100.10422310000007,-2.839007299999935],[100.10859920000007,-2.836205199999938],[100.11053780000003,-2.837784399999975],[100.11817720000005,-2.837777],[100.12367450000005,-2.835587699999962],[100.12415030000005,-2.834148199999959],[100.13045240000008,-2.837302399999942],[100.13296570000006,-2.832598599999926],[100.13735080000004,-2.837149799999963],[100.13983550000006,-2.837028199999963],[100.14071920000004,-2.839808299999959],[100.14332950000005,-2.840642299999956],[100.14744690000003,-2.838031699999931],[100.14735850000005,-2.836339899999928],[100.14346080000007,-2.825916799999959],[100.13997970000008,-2.823222099999953],[100.139729,-2.815991399999973],[100.13814810000008,-2.814056799999946],[100.14129740000004,-2.808130399999925],[100.14499830000005,-2.806602899999973],[100.14756650000004,-2.803539399999977],[100.15580860000006,-2.801196799999957],[100.16341060000008,-2.793861299999946],[100.16672420000003,-2.793456799999944],[100.17231740000005,-2.789085],[100.17452150000008,-2.789641],[100.17961220000007,-2.786508899999944],[100.18378820000004,-2.785768899999937],[100.18606120000004,-2.783283899999958],[100.18997930000006,-2.785419799999943],[100.19326820000003,-2.784351699999945],[100.195079,-2.781596899999954],[100.19340940000006,-2.777646899999979],[100.19648210000008,-2.775040099999956],[100.20524780000005,-2.776354099999935],[100.20850260000009,-2.778898499999968],[100.21628960000004,-2.775924499999974],[100.21789780000006,-2.771262299999933],[100.21675290000007,-2.764827099999934],[100.21813330000003,-2.756657099999927],[100.22162560000004,-2.751351099999965],[100.21830650000004,-2.736975199999961],[100.21232110000005,-2.725407],[100.20646080000006,-2.722315199999969],[100.20260840000009,-2.716786299999967],[100.19936260000009,-2.699414299999944],[100.19363870000007,-2.693643099999974],[100.19082140000006,-2.686067599999944],[100.17985350000004,-2.6676842],[100.17730880000005,-2.6551542],[100.17207480000008,-2.647663299999977],[100.16439310000004,-2.643334699999969],[100.1479,-2.638963699999977],[100.14384470000005,-2.636009099999967],[100.14398190000009,-2.634250799999961],[100.14136020000007,-2.631359],[100.12840380000006,-2.624135499999966],[100.12541790000006,-2.619301699999937],[100.11651470000004,-2.614474299999927],[100.111644,-2.608940799999971],[100.10894250000007,-2.602984299999946],[100.09995980000008,-2.595224599999938],[100.098313,-2.588569599999971],[100.09456750000004,-2.590582199999972],[100.08999740000007,-2.590531599999963],[100.08608190000007,-2.588497599999926],[100.082213,-2.584136299999955],[100.07087010000004,-2.579930199999978],[100.06379210000006,-2.572380499999952],[100.059749,-2.570448799999951],[100.06025340000008,-2.568586699999969],[100.05842360000008,-2.5688047],[100.05572570000004,-2.564936199999977],[100.05244470000008,-2.563603199999932],[100.05193590000005,-2.560708899999952],[100.048365,-2.558410799999933],[100.040768,-2.545019599999932],[100.03525750000006,-2.542987299999936],[100.03464650000006,-2.538863099999958],[100.03122610000008,-2.535861699999941],[100.03165350000006,-2.532695599999954],[100.027133,-2.5262889],[100.01943460000007,-2.521614599999964],[100.01670290000004,-2.517357199999935],[100.00946350000004,-2.514173],[99.998454,-2.5028115],[99.99390580000005,-2.502490499999965]]],[[[99.74793740000007,-2.371498599999939],[99.74969160000006,-2.369267099999945],[99.74691490000004,-2.367831799999976],[99.74246690000007,-2.370748899999967],[99.74131160000007,-2.373185399999954],[99.74230510000007,-2.3734585],[99.74241320000004,-2.372049],[99.74275450000005,-2.374142499999948],[99.74592480000007,-2.373826],[99.74942010000007,-2.370580899999936],[99.74793740000007,-2.371498599999939]]],[[[99.71745720000007,-2.356682],[99.712397,-2.358269899999925],[99.71111210000004,-2.360356499999966],[99.71244470000005,-2.368834399999969],[99.71057870000004,-2.370226],[99.71018,-2.374717899999951],[99.71223090000007,-2.377140299999951],[99.72196310000004,-2.383982499999945],[99.725019,-2.383730599999978],[99.72845950000004,-2.378819899999939],[99.73253460000006,-2.380584899999974],[99.73361420000003,-2.382642399999952],[99.73254890000004,-2.381627799999933],[99.73242830000004,-2.388156599999945],[99.73632020000008,-2.394248],[99.739251,-2.392939199999944],[99.74299860000008,-2.387048399999969],[99.748861,-2.385877099999959],[99.74413630000004,-2.3761128],[99.74126050000007,-2.379915899999958],[99.741925,-2.381167099999971],[99.74460730000004,-2.380692899999929],[99.74365440000008,-2.383029599999929],[99.74046030000005,-2.383295499999974],[99.73968180000008,-2.385187499999972],[99.73464940000008,-2.3871231],[99.73451080000007,-2.381527299999959],[99.73972070000008,-2.3759687],[99.73822460000008,-2.372460599999954],[99.73590130000008,-2.371975099999929],[99.73862460000004,-2.370457899999963],[99.738333,-2.368247],[99.73688120000008,-2.368414599999937],[99.727158,-2.358205399999974],[99.71745720000007,-2.356682]]],[[[99.72239940000009,-2.338904299999967],[99.72269660000006,-2.337030199999958],[99.72137670000006,-2.337908899999945],[99.72239940000009,-2.338904299999967]]],[[[99.54232660000008,-2.223030399999971],[99.54459870000005,-2.221532099999934],[99.54424280000006,-2.212665499999957],[99.54051980000008,-2.210972399999946],[99.53766050000007,-2.213692499999979],[99.53652630000005,-2.219485799999973],[99.54232660000008,-2.223030399999971]]],[[[99.52789820000004,-2.1287444],[99.52591,-2.128123799999969],[99.52585280000005,-2.129759699999966],[99.52834420000005,-2.134107299999926],[99.53974050000005,-2.131227],[99.53588850000006,-2.128275699999961],[99.52789820000004,-2.1287444]]],[[[99.52607530000006,-2.125081499999965],[99.52462410000004,-2.122730299999944],[99.521442,-2.123145199999954],[99.52248170000007,-2.125017399999933],[99.52607530000006,-2.125081499999965]]],[[[99.64112090000003,-2.047034499999938],[99.63976450000007,-2.045599399999958],[99.63996760000003,-2.048063899999931],[99.64112090000003,-2.047034499999938]]],[[[99.59265210000007,-2.030993],[99.59365270000006,-2.029786599999966],[99.59215660000007,-2.027648599999964],[99.58758860000006,-2.025424199999975],[99.58130650000004,-2.033879499999955],[99.57274330000007,-2.037400499999933],[99.56897410000005,-2.037300799999969],[99.55917930000004,-2.045054599999958],[99.55672410000005,-2.049391699999944],[99.55933880000003,-2.053308399999935],[99.56701950000007,-2.059636199999943],[99.56653430000006,-2.062961599999937],[99.56434890000008,-2.065414099999941],[99.55970020000007,-2.065516799999955],[99.55538060000003,-2.069448799999975],[99.55228940000006,-2.068742199999974],[99.54707940000009,-2.070856799999945],[99.54696770000004,-2.079246499999954],[99.55253580000004,-2.096515499999953],[99.550829,-2.104652899999962],[99.55767530000008,-2.118741299999954],[99.56600860000003,-2.122372199999973],[99.56646220000005,-2.12586],[99.56397460000005,-2.126669699999979],[99.56324770000003,-2.129563899999937],[99.56606610000006,-2.134907299999952],[99.56682180000007,-2.139835699999935],[99.569335,-2.140517199999977],[99.57388890000004,-2.145382599999948],[99.57285990000008,-2.148694099999943],[99.56943290000004,-2.153359399999943],[99.56616630000008,-2.154346399999952],[99.55712640000007,-2.151786099999924],[99.55466240000004,-2.148374799999942],[99.55007190000003,-2.146245199999953],[99.53842180000004,-2.14383],[99.53133620000006,-2.147244599999965],[99.52836980000006,-2.153832799999975],[99.52993390000006,-2.159908099999939],[99.53169350000007,-2.161171299999978],[99.53172140000004,-2.168261399999949],[99.53577540000003,-2.174471],[99.53648090000007,-2.179627],[99.53819060000006,-2.182204399999932],[99.54110580000008,-2.182077],[99.54388460000007,-2.184085599999946],[99.54806380000008,-2.191579799999943],[99.55096540000005,-2.208692199999973],[99.55557770000007,-2.211761599999932],[99.55899730000004,-2.216638499999931],[99.56214710000006,-2.2178607],[99.56285180000003,-2.220767099999932],[99.57120810000004,-2.222743699999967],[99.57467960000008,-2.227231899999936],[99.57480630000003,-2.230012099999954],[99.57189240000008,-2.233577099999934],[99.57486350000005,-2.245582599999977],[99.57844450000005,-2.244365499999958],[99.579925,-2.238409099999956],[99.58357,-2.232884099999978],[99.58444640000005,-2.223876],[99.58923250000004,-2.222125499999947],[99.59441,-2.223488299999929],[99.59781090000007,-2.228480699999977],[99.59793750000006,-2.230780699999968],[99.59265620000008,-2.236486299999967],[99.59301190000008,-2.241098299999976],[99.59459610000005,-2.2432208],[99.59205920000005,-2.249099699999931],[99.59246270000006,-2.252461199999971],[99.59510130000007,-2.251979799999958],[99.60041730000006,-2.244710199999929],[99.60402110000007,-2.242107799999928],[99.61015490000005,-2.2465536],[99.61033420000007,-2.252960399999949],[99.60647920000008,-2.256182799999976],[99.59903590000005,-2.257963399999937],[99.59798140000004,-2.260289199999931],[99.59866480000005,-2.270715199999927],[99.601507,-2.276426199999946],[99.60072620000005,-2.283623199999965],[99.60625440000007,-2.286123199999963],[99.607674,-2.290296399999932],[99.614751,-2.293066199999942],[99.62078680000008,-2.284838],[99.622482,-2.274582],[99.62622880000004,-2.272734399999933],[99.62870410000005,-2.274029499999926],[99.62896380000007,-2.277493799999945],[99.631904,-2.281018299999971],[99.62879120000008,-2.286793899999964],[99.63219540000006,-2.290266199999962],[99.63381940000005,-2.290447],[99.63464350000004,-2.288657899999976],[99.63831280000005,-2.287132099999951],[99.64063050000004,-2.282049899999947],[99.64446280000004,-2.281112399999927],[99.65656810000007,-2.283183199999939],[99.67399950000004,-2.288992399999927],[99.68459360000008,-2.295728399999973],[99.68459550000006,-2.299824399999977],[99.69308790000008,-2.300443299999927],[99.69793970000006,-2.304702299999974],[99.69904980000007,-2.3083052],[99.70669430000004,-2.310792299999946],[99.70858140000007,-2.313557],[99.70688220000005,-2.317965],[99.71057610000008,-2.327493499999946],[99.71394270000008,-2.330195],[99.72205450000007,-2.332759199999941],[99.73051310000005,-2.333486099999959],[99.73818210000007,-2.345206399999938],[99.74172460000005,-2.3453583],[99.74571460000004,-2.347655499999973],[99.75933680000009,-2.3413377],[99.76790340000008,-2.340853799999934],[99.78411650000004,-2.344112699999926],[99.78840850000006,-2.346804499999962],[99.78934960000004,-2.351888899999949],[99.79284850000005,-2.355387699999937],[99.79068980000005,-2.361890399999936],[99.79578290000006,-2.369231299999967],[99.79862020000007,-2.370902099999967],[99.80166490000005,-2.369439899999975],[99.80253590000007,-2.367289899999946],[99.811652,-2.370431899999971],[99.81798130000004,-2.365073099999961],[99.82055270000006,-2.365703499999938],[99.82113280000004,-2.368214399999943],[99.82289420000006,-2.369053199999939],[99.82875980000006,-2.362572],[99.83806120000008,-2.363947799999949],[99.84087350000004,-2.367071599999974],[99.84032770000005,-2.374814699999945],[99.84212880000007,-2.378737299999955],[99.83941190000007,-2.387618599999939],[99.84263160000006,-2.395202499999925],[99.84514180000008,-2.398551],[99.85019070000004,-2.401595399999962],[99.85585860000003,-2.402876599999956],[99.86107880000009,-2.402228899999955],[99.86353060000005,-2.396622799999932],[99.86349030000008,-2.385047899999961],[99.86166350000008,-2.378766799999937],[99.857616,-2.377268399999934],[99.85488830000008,-2.372204199999942],[99.85087780000003,-2.3559312],[99.84419770000005,-2.348048199999937],[99.84434430000005,-2.344439199999954],[99.84765620000007,-2.339414699999963],[99.84664540000006,-2.335606899999959],[99.84458610000007,-2.334119699999974],[99.83895270000005,-2.334518099999968],[99.83493250000004,-2.33013],[99.83164650000003,-2.320331799999963],[99.82248560000005,-2.306280399999935],[99.81679250000008,-2.303410699999972],[99.81222970000005,-2.303995399999963],[99.81435370000008,-2.297313199999962],[99.80761960000007,-2.2947828],[99.80054170000005,-2.288991899999928],[99.79806020000007,-2.288594599999954],[99.79569390000006,-2.290507499999933],[99.79073160000007,-2.291067399999974],[99.78784640000003,-2.293515599999978],[99.78176420000005,-2.291278399999953],[99.785148,-2.287432899999942],[99.781261,-2.278363099999979],[99.78435610000008,-2.278809299999978],[99.78546530000006,-2.271823099999949],[99.78183770000004,-2.268686499999944],[99.77990690000007,-2.264316199999939],[99.78072730000008,-2.255074399999955],[99.75388490000006,-2.235786699999949],[99.75427510000009,-2.234355499999936],[99.751342,-2.2318883],[99.74542790000004,-2.2188654],[99.74539520000008,-2.213019699999961],[99.74006350000008,-2.212208099999941],[99.73504390000005,-2.204609499999947],[99.73555720000007,-2.201675499999965],[99.73260150000004,-2.195187199999964],[99.73605950000007,-2.190382199999931],[99.73600740000006,-2.187022499999955],[99.73234230000008,-2.1851008],[99.73379220000004,-2.189295],[99.728797,-2.188504099999932],[99.72660730000007,-2.1854035],[99.72530290000009,-2.1859973],[99.72043890000003,-2.1822689],[99.72210020000006,-2.180182799999955],[99.72188780000005,-2.177370399999973],[99.72606910000007,-2.175013399999955],[99.72084890000008,-2.167597699999931],[99.715845,-2.169038199999932],[99.71443130000006,-2.1655514],[99.715378,-2.164210299999979],[99.71098040000004,-2.162756299999955],[99.71428670000006,-2.162143499999956],[99.71652240000009,-2.165342299999963],[99.71750520000006,-2.1649104],[99.71696290000006,-2.157064699999978],[99.71387070000009,-2.156652699999938],[99.71154350000006,-2.152290599999958],[99.70988530000005,-2.1293305],[99.70687530000004,-2.115412299999946],[99.70404350000007,-2.1099899],[99.70650330000007,-2.098156099999926],[99.70315820000008,-2.0954309],[99.70421060000007,-2.090522799999974],[99.70277720000007,-2.0887712],[99.69982830000004,-2.0889523],[99.70195440000003,-2.087459299999978],[99.70177530000007,-2.084933799999931],[99.69861620000006,-2.086555799999928],[99.69697130000009,-2.085154399999965],[99.69650720000004,-2.086628599999926],[99.69284320000008,-2.086450499999955],[99.694647,-2.083249899999942],[99.691511,-2.076040699999965],[99.68442250000004,-2.074372599999947],[99.68321510000004,-2.071509399999968],[99.67996210000007,-2.071007399999928],[99.68006850000006,-2.06903],[99.67783480000008,-2.069893799999932],[99.67926520000003,-2.0713313],[99.67478180000006,-2.070787799999948],[99.67381520000004,-2.067085],[99.668031,-2.066358899999955],[99.66373980000009,-2.062046299999963],[99.66228720000004,-2.057884199999933],[99.65521440000003,-2.055704799999944],[99.65397530000007,-2.0492397],[99.65222310000007,-2.047532599999954],[99.645579,-2.045771199999933],[99.64290860000006,-2.048526599999946],[99.64305240000004,-2.050701799999956],[99.63917130000004,-2.048188],[99.63951040000006,-2.050158099999976],[99.63742720000005,-2.050714199999959],[99.63639320000004,-2.047902399999941],[99.63728060000005,-2.04567],[99.63400340000004,-2.044112899999959],[99.63455490000007,-2.042787199999964],[99.64011620000008,-2.042614699999945],[99.64146860000005,-2.040196099999946],[99.63706230000008,-2.035196599999949],[99.63496170000008,-2.036845399999947],[99.63112150000006,-2.035289099999943],[99.62948450000005,-2.038621399999954],[99.62554050000006,-2.039182099999948],[99.62764260000006,-2.041062],[99.62359350000008,-2.038536599999929],[99.622508,-2.040543099999979],[99.62104750000003,-2.039898899999969],[99.62143870000006,-2.038501599999961],[99.62037090000007,-2.040167899999972],[99.61632840000004,-2.039936499999953],[99.61586180000006,-2.034126599999979],[99.61912660000007,-2.032803399999978],[99.62083740000008,-2.035991099999933],[99.62350860000004,-2.036169099999938],[99.62635470000004,-2.033681199999933],[99.62609990000004,-2.028783499999975],[99.62272870000004,-2.028891899999962],[99.62114910000008,-2.027429],[99.61563760000007,-2.032006499999966],[99.61202360000004,-2.031036599999936],[99.610592,-2.032705399999941],[99.60359220000004,-2.032144099999925],[99.60306490000005,-2.033205799999962],[99.59846460000006,-2.028026199999942],[99.59266820000005,-2.035573299999953],[99.58817040000008,-2.036004699999978],[99.587066,-2.0391645],[99.58392540000006,-2.040328299999942],[99.58763630000004,-2.0350978],[99.587717,-2.032820099999981],[99.59265210000007,-2.030993]]],[[[99.61259530000007,-2.0197846],[99.60902190000007,-2.020738799999947],[99.61159580000003,-2.024137699999926],[99.61427490000005,-2.02104],[99.61259530000007,-2.0197846]]],[[[99.56457930000005,-2.004506],[99.55936450000007,-2.001733399999978],[99.55406540000007,-2.005758699999944],[99.54719610000006,-2.008407],[99.55030750000009,-2.012324499999977],[99.55225330000007,-2.018505199999936],[99.55571090000007,-2.022406199999978],[99.55679,-2.022083099999975],[99.55569570000006,-2.020352399999979],[99.55841310000005,-2.018768799999975],[99.55909920000005,-2.020822399999929],[99.56197240000006,-2.021334799999977],[99.56629370000007,-2.019367],[99.57557610000003,-2.024615499999925],[99.57236150000006,-2.017141399999957],[99.57316270000007,-2.012254699999971],[99.57125150000007,-2.010274899999956],[99.57093850000007,-2.0067483],[99.56457930000005,-2.004506]]],[[[99.57886220000006,-1.993534499999953],[99.57765750000004,-1.990429899999924],[99.574169,-1.988665199999957],[99.569539,-1.988994399999967],[99.56522170000005,-1.992756099999951],[99.56363890000006,-1.9994693],[99.56603250000006,-2.001519499999972],[99.56972770000004,-2.000122399999952],[99.56799870000003,-1.995821499999977],[99.56988560000008,-1.993828899999926],[99.57206640000004,-1.994611499999962],[99.57310250000006,-1.998960899999929],[99.57689740000006,-1.999500799999964],[99.57514180000004,-1.999871699999971],[99.57495820000008,-2.001338799999928],[99.57793250000003,-2.003602399999977],[99.57991620000007,-2.000292399999978],[99.57886220000006,-1.993534499999953]]],[[[99.58189720000007,-1.968534399999953],[99.58033880000005,-1.967557299999953],[99.57794810000007,-1.968597899999963],[99.57662390000007,-1.975355499999978],[99.582306,-1.984143],[99.58790750000009,-1.989106599999957],[99.58693970000007,-1.992355299999929],[99.590519,-1.993409199999974],[99.59142840000004,-1.991329499999949],[99.59286390000005,-1.993811799999946],[99.59817050000004,-1.993422],[99.60453590000009,-1.997345799999948],[99.60623250000003,-1.996383099999946],[99.60700280000003,-1.993682699999965],[99.60570570000004,-1.990098599999953],[99.60033370000008,-1.98474],[99.601012,-1.9832966],[99.59934520000007,-1.981124799999975],[99.59545440000005,-1.9785758],[99.59374070000007,-1.974634899999955],[99.59242610000007,-1.975126599999953],[99.59040430000005,-1.972473799999932],[99.58189720000007,-1.968534399999953]]],[[[99.56892940000006,-1.964670299999966],[99.56843,-1.965908],[99.56978870000006,-1.966732599999943],[99.56892940000006,-1.964670299999966]]],[[[99.316146,-1.903890099999956],[99.31593320000007,-1.901925699999936],[99.31366980000007,-1.901391899999965],[99.316146,-1.903890099999956]]],[[[99.30429690000005,-1.899746599999958],[99.30126580000007,-1.899133899999924],[99.295195,-1.901030299999945],[99.29260470000008,-1.908669599999939],[99.29336750000004,-1.919784299999947],[99.29809570000003,-1.928756399999941],[99.30391240000006,-1.930784099999926],[99.31007230000006,-1.930834399999981],[99.31384780000008,-1.927972099999977],[99.31592150000006,-1.924279199999944],[99.312484,-1.923854],[99.31446510000006,-1.923359599999969],[99.31412590000008,-1.920736499999975],[99.31510810000003,-1.9207875],[99.31315890000008,-1.916009299999928],[99.30857750000007,-1.912493599999948],[99.30358850000005,-1.904575299999976],[99.30643290000006,-1.902377499999943],[99.30429690000005,-1.899746599999958]]],[[[99.28039210000009,-1.8714103],[99.27547240000007,-1.873541199999977],[99.27952640000007,-1.879107399999953],[99.28311410000003,-1.880236599999932],[99.29000360000003,-1.879400499999974],[99.29056350000008,-1.875845],[99.28824960000009,-1.872973],[99.28039210000009,-1.8714103]]],[[[99.09115350000008,-1.860163299999954],[99.08015230000007,-1.8612584],[99.077002,-1.8638137],[99.07696520000007,-1.866066699999976],[99.08137550000004,-1.867801799999938],[99.091431,-1.866166299999975],[99.09530160000008,-1.862780699999973],[99.09115350000008,-1.860163299999954]]],[[[99.31133260000007,-1.844408099999953],[99.30406830000004,-1.850552499999935],[99.30292910000009,-1.854765799999939],[99.313574,-1.85596],[99.319108,-1.854761199999928],[99.32059140000007,-1.851679],[99.31957490000008,-1.848961799999927],[99.31610490000008,-1.845946],[99.31133260000007,-1.844408099999953]]],[[[99.148773,-1.836815299999955],[99.14635180000005,-1.832992199999978],[99.144009,-1.833254199999942],[99.14153630000004,-1.835820799999965],[99.14637840000006,-1.840193599999964],[99.15054350000008,-1.840978799999959],[99.148773,-1.836815299999955]]],[[[99.04701260000007,-1.815597299999979],[99.04899410000007,-1.809014],[99.04634330000005,-1.805239399999948],[99.04479290000006,-1.805575099999942],[99.04249480000004,-1.810239899999942],[99.04512850000003,-1.8149261],[99.04701260000007,-1.815597299999979]]],[[[99.26006640000008,-1.791670199999942],[99.25490910000008,-1.790506],[99.25618770000005,-1.793315499999949],[99.261532,-1.795869099999948],[99.26645640000004,-1.801548199999957],[99.26971380000003,-1.809058299999947],[99.26946060000006,-1.812491099999932],[99.26662020000003,-1.817429199999935],[99.26420030000008,-1.818446199999926],[99.25813640000007,-1.8254601],[99.25697570000005,-1.829251199999931],[99.25418550000006,-1.829761099999928],[99.25410220000003,-1.8333731],[99.25139140000005,-1.838400899999954],[99.24655960000007,-1.839802499999962],[99.24554930000005,-1.843828899999949],[99.24101950000005,-1.8456693],[99.24194380000006,-1.850959499999931],[99.24639640000004,-1.849605299999951],[99.25188780000008,-1.845142599999974],[99.26002020000004,-1.844754799999976],[99.26405870000008,-1.839357199999938],[99.26992210000009,-1.837933],[99.27477890000006,-1.837932199999955],[99.28154870000009,-1.840978299999961],[99.28694320000005,-1.840296299999977],[99.28783210000006,-1.838102],[99.29470570000007,-1.833211799999958],[99.29435080000007,-1.827381],[99.29080970000007,-1.823909899999933],[99.29238630000003,-1.821242899999959],[99.29166430000004,-1.817783],[99.28847090000005,-1.812335],[99.28949520000003,-1.809743899999944],[99.29117290000005,-1.809321699999941],[99.28946790000003,-1.805884899999967],[99.27992610000007,-1.801305099999979],[99.272314,-1.795318699999939],[99.267758,-1.79684],[99.26365690000006,-1.792277299999967],[99.26006640000008,-1.791670199999942]]],[[[99.29706030000006,-1.781791099999964],[99.29703740000008,-1.7795644],[99.294474,-1.7790083],[99.29457320000006,-1.780703399999936],[99.29706030000006,-1.781791099999964]]],[[[99.26943440000008,-1.771042499999965],[99.266268,-1.768316599999935],[99.26393790000009,-1.768571699999939],[99.26667420000007,-1.774635499999931],[99.26890290000006,-1.773896299999933],[99.26943440000008,-1.771042499999965]]],[[[99.27192040000006,-1.746651699999973],[99.26945180000007,-1.744652699999961],[99.26589390000004,-1.746878399999957],[99.269196,-1.749135299999978],[99.27192040000006,-1.746651699999973]]],[[[99.29762610000006,-1.737102899999968],[99.29478510000007,-1.734191199999941],[99.29194440000003,-1.733837799999947],[99.29340580000007,-1.737158099999931],[99.29746420000004,-1.738953699999968],[99.29762610000006,-1.737102899999968]]],[[[99.30951920000007,-1.728759599999933],[99.31007130000006,-1.726935799999978],[99.30902320000007,-1.7263803],[99.30951920000007,-1.728759599999933]]],[[[99.25377150000008,-1.714491299999963],[99.25131490000007,-1.715411899999935],[99.258639,-1.724854],[99.25955450000004,-1.723062199999958],[99.25858560000006,-1.715992],[99.25377150000008,-1.714491299999963]]],[[[99.24633290000008,-1.695217699999944],[99.245898,-1.692138899999975],[99.24389150000007,-1.6919467],[99.24494440000007,-1.695265899999924],[99.24633290000008,-1.695217699999944]]],[[[99.21490880000005,-1.63411],[99.21808610000005,-1.636973699999942],[99.21731890000007,-1.634462199999973],[99.21490880000005,-1.63411]]],[[[99.18199410000005,-1.489575799999955],[99.18138690000006,-1.488225599999964],[99.17840620000004,-1.491624699999932],[99.18128280000008,-1.495882699999925],[99.186799,-1.497950499999945],[99.18861950000007,-1.494542199999955],[99.18478720000007,-1.495288699999946],[99.18199410000005,-1.489575799999955]]],[[[99.17657,-1.4812934],[99.17320820000003,-1.472919799999943],[99.16942430000006,-1.480981],[99.17301470000007,-1.488066299999957],[99.17533090000006,-1.489247099999943],[99.17626090000005,-1.488372399999946],[99.173373,-1.481613599999946],[99.17581970000003,-1.483089599999971],[99.17810350000008,-1.482170899999971],[99.17657,-1.4812934]]],[[[99.11273310000007,-1.354067199999974],[99.11405710000008,-1.355356399999948],[99.11314280000005,-1.356455399999959],[99.11462490000008,-1.361342699999966],[99.11329050000006,-1.361068099999954],[99.11189280000008,-1.357697299999927],[99.11058040000006,-1.364242899999965],[99.11582520000007,-1.365164599999957],[99.11717,-1.364107699999977],[99.12124910000006,-1.366359599999953],[99.12241490000008,-1.361039699999935],[99.11273310000007,-1.354067199999974]]],[[[98.95530330000008,-1.059717899999953],[98.95379420000006,-1.059073799999965],[98.95504890000007,-1.065973099999951],[98.95840140000007,-1.070513299999959],[98.95988450000004,-1.068615799999975],[98.958296,-1.0664139],[98.95946280000004,-1.0654698],[98.95763710000006,-1.060609299999953],[98.95530330000008,-1.059717899999953]]],[[[98.94890950000007,-1.039182199999971],[98.94915360000005,-1.037384199999963],[98.94747360000008,-1.039312199999927],[98.94795470000008,-1.041208],[98.95056920000007,-1.043953],[98.952163,-1.043635399999971],[98.94984280000006,-1.038806799999975],[98.94890950000007,-1.039182199999971]]],[[[98.94846120000005,-0.991817399999945],[98.94763730000005,-0.988956799999926],[98.94663020000007,-0.989085099999954],[98.94630980000005,-0.992577399999959],[98.94846120000005,-0.991817399999945]]],[[[98.931013,-0.928793699999972],[98.92873180000004,-0.926414399999942],[98.92757220000004,-0.927065899999945],[98.931013,-0.928793699999972]]],[[[98.89930760000004,-0.905877699999962],[98.89372970000005,-0.908283799999936],[98.88415750000007,-0.921443899999929],[98.86703280000006,-0.932227099999977],[98.86353520000006,-0.933359699999926],[98.86517370000007,-0.932042699999954],[98.86431820000007,-0.931521],[98.85523570000004,-0.935757699999954],[98.82476610000003,-0.939507499999934],[98.81043160000007,-0.951233399999978],[98.79763190000006,-0.956512699999962],[98.78155390000006,-0.957538399999976],[98.77477690000006,-0.955472499999928],[98.75785340000004,-0.9586337],[98.741796,-0.959064099999978],[98.73008130000005,-0.954533599999934],[98.72610690000005,-0.947332199999948],[98.72097660000009,-0.943864699999949],[98.71435540000004,-0.945884799999931],[98.71163730000006,-0.944991699999946],[98.70148430000006,-0.953764299999932],[98.69146940000007,-0.958952199999942],[98.68718150000007,-0.958008],[98.68516540000007,-0.959093099999961],[98.67360670000005,-0.975162099999977],[98.66533910000004,-0.9802],[98.66362380000004,-0.979749499999969],[98.66440310000007,-0.9947464],[98.66252370000007,-0.998974499999974],[98.66284780000007,-1.004292],[98.66018140000006,-1.008460599999978],[98.66125290000008,-1.016214199999979],[98.66023390000004,-1.035751599999969],[98.66201910000007,-1.057529199999976],[98.66046980000004,-1.060682299999939],[98.66068230000008,-1.067095599999959],[98.65819630000004,-1.0802618],[98.65615960000008,-1.083103499999936],[98.65681810000007,-1.0883617],[98.65090350000008,-1.106551499999966],[98.64656470000006,-1.109571099999926],[98.64487280000009,-1.107907299999965],[98.64351490000007,-1.109689599999967],[98.64113420000007,-1.109629899999959],[98.63714590000006,-1.141603699999962],[98.63355150000007,-1.1487355],[98.62935030000006,-1.148958799999946],[98.62709090000004,-1.146850599999937],[98.62828070000006,-1.150940399999968],[98.62706560000004,-1.158458199999927],[98.62345920000007,-1.161162499999932],[98.62276910000008,-1.168184199999928],[98.61797390000004,-1.174537599999951],[98.61574360000009,-1.183064899999977],[98.60840740000003,-1.190203799999949],[98.60144740000004,-1.191351099999963],[98.59667980000006,-1.198873699999979],[98.59765170000009,-1.206254599999966],[98.60317790000005,-1.216687199999967],[98.60232610000008,-1.221302799999933],[98.60426830000006,-1.227152199999978],[98.63549730000005,-1.258727199999953],[98.64183870000005,-1.275878],[98.64157710000006,-1.279794799999934],[98.63871470000004,-1.282341699999961],[98.63708280000009,-1.286792299999945],[98.65234460000005,-1.307792],[98.65401390000005,-1.3135617],[98.68620170000008,-1.349506099999928],[98.68872660000005,-1.354548699999953],[98.69458070000007,-1.361075199999959],[98.69532390000006,-1.364609399999949],[98.70408740000005,-1.378679699999964],[98.72508690000006,-1.403682799999956],[98.73663130000006,-1.421467899999925],[98.74476150000004,-1.437893699999961],[98.74658570000008,-1.445382],[98.75269790000004,-1.452742199999932],[98.75322420000003,-1.451351599999953],[98.75502570000003,-1.452892599999927],[98.75646250000005,-1.455041699999924],[98.75567110000009,-1.456351699999971],[98.76281610000007,-1.464845499999967],[98.76653280000005,-1.4731876],[98.79174140000003,-1.503591799999924],[98.796263,-1.507025399999975],[98.80399520000003,-1.518446299999937],[98.80531030000009,-1.522503299999926],[98.80340230000007,-1.529073399999959],[98.80617680000006,-1.536708899999951],[98.81583650000005,-1.548042599999974],[98.81995770000003,-1.559933499999943],[98.83168210000008,-1.5759439],[98.83697130000007,-1.585754599999973],[98.83802660000003,-1.592926],[98.83724680000006,-1.602065699999969],[98.83484410000005,-1.606778599999927],[98.82993590000007,-1.609366499999965],[98.82519090000005,-1.6148344],[98.825461,-1.616103399999929],[98.86157060000005,-1.6451036],[98.86527040000004,-1.650409699999955],[98.86833850000005,-1.663448499999959],[98.87730070000003,-1.6785587],[98.91299550000008,-1.699655199999938],[98.92505660000006,-1.705098899999939],[98.92813670000004,-1.708283899999969],[98.95655260000007,-1.724684799999977],[98.99388090000008,-1.750167],[99.00534260000006,-1.756345299999964],[99.01181980000007,-1.762611399999969],[99.04023550000005,-1.775925499999971],[99.05507640000008,-1.786346799999933],[99.06905990000007,-1.7897928],[99.07793580000003,-1.793879],[99.083295,-1.798245599999973],[99.08873090000009,-1.799544499999968],[99.09083330000004,-1.802777099999957],[99.10543620000004,-1.806266499999936],[99.10744540000007,-1.808879299999944],[99.106613,-1.811421699999926],[99.10836730000005,-1.812378699999954],[99.11027010000004,-1.811586],[99.11171220000006,-1.812991699999941],[99.11246770000008,-1.808828099999971],[99.116526,-1.806749099999934],[99.12244120000008,-1.806223599999953],[99.12551860000008,-1.808601199999941],[99.139946,-1.804230599999926],[99.14214,-1.804829899999959],[99.14450430000005,-1.800693499999966],[99.142303,-1.794582499999933],[99.14605270000004,-1.788023],[99.15369360000005,-1.781607],[99.157306,-1.782219899999973],[99.167316,-1.779493099999968],[99.19683740000005,-1.779580199999941],[99.19849660000006,-1.780868599999962],[99.22608630000008,-1.785006499999952],[99.228154,-1.7859929],[99.233881,-1.795694799999978],[99.24109860000004,-1.796844199999953],[99.24367260000008,-1.794941799999947],[99.24712870000008,-1.7866872],[99.24742380000004,-1.778010199999926],[99.25165190000007,-1.776147499999979],[99.25550920000006,-1.778454199999942],[99.26101790000007,-1.779014599999925],[99.26330670000004,-1.773167099999966],[99.26051160000009,-1.768021799999929],[99.25806590000008,-1.768465599999956],[99.25671780000005,-1.762204099999963],[99.253869,-1.758554899999979],[99.24878760000007,-1.756851799999936],[99.24325840000006,-1.743162499999926],[99.24045980000005,-1.7404874],[99.24191930000006,-1.735482899999965],[99.24648,-1.731960099999981],[99.24171160000009,-1.7274024],[99.24213840000004,-1.721768399999974],[99.23852280000006,-1.7141864],[99.24013710000008,-1.706285199999968],[99.23942330000006,-1.701204],[99.23779620000005,-1.70037],[99.23996940000006,-1.698619399999927],[99.23443510000004,-1.692847099999938],[99.22903550000007,-1.683507899999938],[99.22581980000007,-1.681437899999935],[99.22084910000007,-1.663392599999952],[99.22986580000008,-1.668944199999942],[99.23480320000004,-1.684580499999925],[99.23705390000003,-1.683631299999945],[99.23701380000006,-1.678736699999945],[99.23933970000007,-1.679452099999935],[99.24068010000008,-1.676368799999977],[99.22942690000008,-1.655968399999949],[99.22602410000007,-1.651655299999959],[99.22378050000003,-1.652426299999945],[99.22476520000004,-1.649508199999957],[99.22115330000008,-1.649288399999932],[99.21997660000005,-1.647719399999971],[99.21949980000005,-1.649057499999969],[99.219527,-1.647433299999932],[99.21829570000006,-1.647708699999953],[99.21903420000007,-1.644983299999978],[99.21725560000004,-1.644322799999941],[99.21665320000005,-1.640166099999931],[99.21402210000008,-1.639138299999956],[99.213694,-1.641891199999975],[99.21084790000003,-1.637734699999953],[99.20787970000003,-1.639414599999952],[99.20697690000009,-1.640763599999957],[99.20790740000007,-1.642057399999942],[99.20473370000008,-1.645003299999928],[99.20086580000009,-1.643627799999933],[99.19864960000007,-1.644811699999934],[99.19977130000007,-1.643352599999957],[99.19853990000007,-1.642389199999968],[99.20009950000008,-1.641976199999931],[99.20195970000003,-1.638094499999966],[99.19949710000009,-1.637571699999967],[99.20349190000007,-1.637213399999951],[99.20198690000007,-1.633598699999936],[99.20425810000006,-1.635966],[99.20822550000008,-1.634286299999928],[99.20822930000008,-1.626294799999926],[99.20595790000004,-1.624355299999934],[99.21771410000008,-1.624987499999975],[99.22348790000007,-1.629584099999931],[99.22809710000007,-1.637363799999946],[99.22845950000004,-1.642199],[99.23056660000003,-1.644153299999971],[99.23328030000005,-1.652312099999961],[99.23810340000006,-1.660089699999958],[99.23832560000005,-1.6641235],[99.24334410000006,-1.674272099999939],[99.24413830000003,-1.6803833],[99.24158970000008,-1.683048],[99.24230130000007,-1.684699599999931],[99.24558510000008,-1.686873899999966],[99.24547530000007,-1.684231199999942],[99.25191560000007,-1.6928842],[99.25356580000005,-1.700219299999958],[99.25110370000004,-1.7047068],[99.25414410000008,-1.708874399999956],[99.25387090000004,-1.711902599999974],[99.26186890000008,-1.717033799999967],[99.26374530000004,-1.712397099999976],[99.26507880000008,-1.723959499999978],[99.261948,-1.73147],[99.26240970000003,-1.736668699999939],[99.265326,-1.740153299999974],[99.27706210000008,-1.746294899999953],[99.275789,-1.7510453],[99.28206880000005,-1.752231499999937],[99.29212060000003,-1.750524799999937],[99.28767270000009,-1.7435366],[99.29011080000004,-1.734563299999934],[99.28829410000009,-1.730755199999976],[99.28654670000009,-1.730428399999937],[99.28607030000006,-1.727218],[99.29292130000005,-1.726015],[99.29599560000008,-1.723057599999947],[99.30119360000003,-1.7228482],[99.30239870000008,-1.720545099999924],[99.30025580000006,-1.715517599999941],[99.29470850000007,-1.713961799999936],[99.29149390000003,-1.7086693],[99.29588670000004,-1.703902199999959],[99.29602190000008,-1.702089799999953],[99.29912730000007,-1.700436],[99.30073930000003,-1.701076099999966],[99.29162630000008,-1.687285399999951],[99.29341390000008,-1.684941399999957],[99.29810620000006,-1.688077599999929],[99.30452380000008,-1.68576],[99.30109120000009,-1.682069499999955],[99.29299630000008,-1.678595199999961],[99.29242170000003,-1.669980099999975],[99.286994,-1.663274699999931],[99.28558920000006,-1.664550099999929],[99.28583870000006,-1.673161299999947],[99.28309680000007,-1.675181599999974],[99.28463950000008,-1.676856399999963],[99.28290110000006,-1.676585699999976],[99.28517850000009,-1.67895],[99.28503110000008,-1.675649299999975],[99.28679380000005,-1.674786899999958],[99.28871010000006,-1.680172],[99.28917490000003,-1.677782599999944],[99.29030120000004,-1.677733099999955],[99.28836750000005,-1.681305099999975],[99.28777960000008,-1.679580899999962],[99.28591870000008,-1.679211699999939],[99.28694750000005,-1.682167499999935],[99.27832550000005,-1.6777024],[99.27726010000003,-1.674631799999929],[99.27994790000008,-1.671877299999949],[99.27836940000009,-1.6709843],[99.27989840000004,-1.671058499999958],[99.27982280000003,-1.668318399999976],[99.27691270000008,-1.668294],[99.27491530000003,-1.670204799999965],[99.27627130000008,-1.667326499999945],[99.27500870000006,-1.661708],[99.27794370000004,-1.663444499999969],[99.27819010000007,-1.662079799999958],[99.28680840000004,-1.658774],[99.29090070000007,-1.654732199999955],[99.29196290000004,-1.6553462],[99.29242870000007,-1.652946099999951],[99.28905920000005,-1.651914899999952],[99.28481550000004,-1.647434799999928],[99.27941930000009,-1.6499079],[99.28006810000005,-1.648220399999957],[99.28234930000008,-1.647571899999946],[99.28116390000008,-1.644115399999976],[99.27775090000006,-1.645605099999955],[99.275452,-1.644554199999959],[99.27412160000006,-1.646501599999965],[99.27163130000008,-1.645853699999975],[99.27058660000006,-1.647273],[99.27013350000004,-1.644890299999929],[99.27471340000005,-1.642255],[99.27481770000009,-1.640888399999938],[99.28074910000004,-1.640849899999978],[99.27545220000007,-1.632567499999936],[99.27905680000003,-1.631480799999963],[99.282314,-1.636841499999946],[99.28571840000006,-1.636950199999944],[99.28740780000004,-1.638579399999969],[99.28895750000004,-1.637317699999926],[99.28700690000005,-1.636039],[99.28777310000004,-1.632404299999962],[99.28043820000005,-1.628403799999944],[99.27860410000005,-1.622720299999969],[99.27206470000004,-1.616644299999962],[99.27298740000003,-1.614313899999956],[99.26946520000007,-1.6155193],[99.26782570000006,-1.618432],[99.26584030000004,-1.617346],[99.27012370000006,-1.613876399999924],[99.270071,-1.610378199999957],[99.26761330000005,-1.607059099999958],[99.26834450000007,-1.605762499999969],[99.26682950000009,-1.605464799999936],[99.26679430000007,-1.6030996],[99.26562610000008,-1.602392],[99.26451180000004,-1.603671199999951],[99.26206640000004,-1.600376],[99.25758250000007,-1.599744299999941],[99.25660790000006,-1.604282199999943],[99.25423480000006,-1.603582899999935],[99.25574960000006,-1.601865699999962],[99.25451310000005,-1.600937299999941],[99.26173150000005,-1.596039899999937],[99.25993770000008,-1.594743699999981],[99.25470880000006,-1.596566799999948],[99.25212570000008,-1.600529699999925],[99.24474420000007,-1.605780599999946],[99.23573040000008,-1.606363199999976],[99.23309410000007,-1.609344],[99.22648640000006,-1.608049],[99.22036020000007,-1.604677899999956],[99.21589650000004,-1.596662399999957],[99.21582510000007,-1.589743699999929],[99.21399660000009,-1.588990499999966],[99.21462140000006,-1.5874746],[99.21020770000007,-1.578876599999944],[99.20797880000003,-1.579034499999977],[99.20813110000006,-1.576735699999972],[99.205937,-1.577804699999945],[99.20560610000007,-1.576648399999954],[99.20035120000006,-1.5803681],[99.19829630000004,-1.579615],[99.19661960000008,-1.577015899999935],[99.19726370000006,-1.571384799999976],[99.19400490000004,-1.567611699999929],[99.19788350000005,-1.560556399999939],[99.19621950000004,-1.557271299999968],[99.20004650000004,-1.557413599999961],[99.202066,-1.554596799999956],[99.20660170000008,-1.554810299999929],[99.20897560000009,-1.552314399999943],[99.20766460000004,-1.552385899999933],[99.20879910000008,-1.549630199999967],[99.20791310000004,-1.548239899999942],[99.19345270000008,-1.543698799999959],[99.19664150000006,-1.540810699999952],[99.20224,-1.538884899999971],[99.20543820000006,-1.533660399999974],[99.20688910000007,-1.526551299999937],[99.201358,-1.516370799999947],[99.19521970000005,-1.509335],[99.19436940000008,-1.510190699999953],[99.19596410000008,-1.511616699999934],[99.19529090000003,-1.513042799999937],[99.193094,-1.5126508],[99.19230560000005,-1.518151199999977],[99.18924810000004,-1.517788],[99.18906320000008,-1.519397399999946],[99.18532060000007,-1.521064199999955],[99.18447210000005,-1.517240899999933],[99.18315230000007,-1.516765799999973],[99.18490350000008,-1.513489199999981],[99.18298640000006,-1.512413099999947],[99.18087010000005,-1.5044296],[99.17832180000005,-1.503534199999933],[99.17585610000003,-1.505704199999968],[99.17445290000006,-1.504250699999943],[99.17306370000006,-1.504781899999955],[99.17126340000004,-1.503195199999936],[99.17087420000007,-1.499735799999939],[99.17202710000004,-1.498435899999947],[99.16709290000006,-1.495664399999953],[99.16254560000004,-1.495133199999941],[99.16023310000008,-1.489322199999947],[99.15938580000005,-1.490733899999952],[99.15579150000008,-1.487726],[99.15374950000006,-1.4888024],[99.15117470000007,-1.485374899999954],[99.14818250000008,-1.485918899999945],[99.14823690000009,-1.482767899999942],[99.14431610000008,-1.4803471],[99.142421,-1.4742849],[99.13100710000003,-1.463599199999976],[99.13055310000004,-1.462000699999976],[99.13273180000004,-1.4599909],[99.12923650000005,-1.458529599999963],[99.12742060000005,-1.455469599999958],[99.12424310000006,-1.456931299999951],[99.12387340000004,-1.4540324],[99.12006010000005,-1.449008499999934],[99.12264740000006,-1.448003599999936],[99.11815340000004,-1.446131199999968],[99.11506050000008,-1.441544699999952],[99.11601370000005,-1.4397177],[99.11873730000008,-1.439671899999951],[99.11959980000006,-1.441042],[99.12295880000005,-1.4399],[99.12482010000008,-1.444467299999928],[99.12704440000005,-1.444512799999927],[99.14309750000007,-1.459749399999964],[99.14918020000005,-1.459429299999954],[99.15031520000008,-1.462352299999964],[99.15272110000006,-1.463265599999943],[99.15440060000009,-1.461986599999932],[99.15714950000006,-1.465609899999947],[99.16041780000006,-1.465472599999941],[99.16645550000004,-1.471272699999929],[99.16990540000006,-1.470861399999933],[99.16958730000005,-1.465609],[99.16618230000006,-1.459489],[99.16045890000004,-1.454988199999946],[99.162093,-1.455033699999944],[99.16354530000007,-1.449826899999948],[99.15991380000008,-1.449781499999972],[99.16163850000004,-1.445716399999981],[99.16000430000008,-1.445351199999948],[99.16104820000004,-1.444026599999972],[99.165406,-1.444208899999978],[99.16914080000004,-1.440959899999939],[99.16570160000003,-1.4328772],[99.16704890000005,-1.4313971],[99.15974160000007,-1.421409799999935],[99.15334790000009,-1.415997299999958],[99.152155,-1.406508799999926],[99.14884440000009,-1.401430299999959],[99.14673230000005,-1.400503499999957],[99.14700180000006,-1.399192199999959],[99.14148540000008,-1.397219799999959],[99.13849710000005,-1.399096499999928],[99.134286,-1.405594],[99.12996280000004,-1.4064819],[99.12807550000008,-1.408313299999975],[99.126907,-1.406188099999952],[99.13238920000003,-1.4018018],[99.13398470000004,-1.395299299999976],[99.13272530000006,-1.390044199999977],[99.12984890000007,-1.386618299999952],[99.12218050000007,-1.383653299999935],[99.11493130000008,-1.387729699999966],[99.11299630000008,-1.391512399999954],[99.11506360000004,-1.395604499999934],[99.11337850000007,-1.397277599999939],[99.11324360000003,-1.395649799999944],[99.11113150000006,-1.394677699999932],[99.11101190000005,-1.3914823],[99.10811330000007,-1.3894025],[99.10698990000009,-1.390939899999978],[99.106855,-1.388950399999942],[99.10453540000003,-1.389177099999927],[99.10316490000008,-1.391777099999956],[99.10343440000008,-1.389109299999973],[99.10473760000008,-1.388589299999978],[99.10165690000008,-1.3882722],[99.10633040000005,-1.387051099999951],[99.109229,-1.388746599999934],[99.111768,-1.388203899999951],[99.11257680000006,-1.386078599999962],[99.11030740000007,-1.385197],[99.109274,-1.381414099999972],[99.11041990000007,-1.380012299999976],[99.10979080000004,-1.3821602],[99.111184,-1.384149599999944],[99.114861,-1.385011],[99.11713010000005,-1.378171799999961],[99.10936770000006,-1.379464],[99.10792910000004,-1.370650099999978],[99.09910740000004,-1.365348199999971],[99.09636340000009,-1.345808099999942],[99.08938430000006,-1.329924],[99.09082220000005,-1.325831799999946],[99.09017060000008,-1.320327299999974],[99.09208370000005,-1.317195699999957],[99.08911390000009,-1.311531199999934],[99.087249,-1.310604299999966],[99.08729380000005,-1.307642599999951],[99.08378170000003,-1.305232],[99.08369160000007,-1.298992],[99.08114960000006,-1.294348099999979],[99.07720880000005,-1.290173699999968],[99.072415,-1.291465099999925],[99.07342560000006,-1.299887299999966],[99.07057210000005,-1.29731],[99.06867580000005,-1.297471899999948],[99.06779960000006,-1.299190099999976],[99.06912530000005,-1.3036214],[99.06638410000005,-1.300885799999946],[99.06246470000008,-1.300976899999966],[99.06426210000006,-1.296251599999948],[99.061184,-1.296952599999941],[99.05751620000007,-1.293305499999974],[99.05646020000006,-1.296063799999956],[99.05312160000005,-1.292688699999928],[99.05233530000004,-1.294633099999942],[99.05431250000004,-1.297278199999937],[99.05058270000006,-1.294700899999953],[99.05296430000004,-1.290088799999978],[99.05444720000008,-1.289681799999926],[99.05622220000004,-1.291467799999964],[99.05858130000007,-1.289953],[99.06340980000004,-1.290332],[99.06484770000009,-1.288930299999947],[99.06291540000007,-1.285697299999924],[99.05857080000004,-1.285302699999932],[99.05910990000007,-1.280939299999943],[99.05605010000005,-1.276606],[99.05236530000008,-1.274413099999947],[99.05281460000003,-1.273124399999972],[99.05960010000007,-1.275837199999955],[99.06518550000004,-1.27518],[99.06673570000004,-1.2727156],[99.06916230000007,-1.2727156],[99.067274,-1.270106599999963],[99.065836,-1.270287499999938],[99.06539010000006,-1.264648],[99.06914220000004,-1.263969699999961],[99.06869290000009,-1.265710499999955],[99.07037790000004,-1.264127899999949],[99.06759050000005,-1.260702],[99.06853510000008,-1.252935099999945],[99.05769640000005,-1.242516699999953],[99.05733580000003,-1.233641899999952],[99.05382740000005,-1.228883699999926],[99.05056310000003,-1.227504099999976],[99.05090010000004,-1.226441499999964],[99.04716320000006,-1.225237399999969],[99.04608480000007,-1.22838],[99.04702850000007,-1.229419899999925],[99.04478170000004,-1.231341699999973],[99.044597,-1.230124599999954],[99.03033070000004,-1.227563],[99.03343120000005,-1.22329],[99.02872760000008,-1.2219078],[99.02758180000006,-1.223038299999928],[99.02409930000005,-1.220664399999976],[99.02740190000009,-1.215859399999943],[99.03039010000003,-1.215113299999928],[99.02870490000004,-1.210942],[99.03281650000008,-1.210715799999946],[99.03624490000004,-1.213070199999947],[99.04121020000008,-1.208684099999971],[99.04146020000007,-1.205645],[99.03754960000003,-1.198693599999956],[99.03399510000008,-1.195357699999931],[99.03390450000006,-1.189647899999954],[99.031499,-1.182833699999946],[99.02562910000006,-1.179849699999977],[99.02612310000006,-1.177558199999964],[99.02420510000007,-1.177421799999934],[99.02409270000004,-1.175206199999934],[99.02011230000005,-1.1721864],[99.01558530000005,-1.171530899999937],[99.00823490000005,-1.163404699999944],[99.00735090000006,-1.155880099999933],[99.00325810000004,-1.147343699999965],[99.00327880000003,-1.141207],[98.999463,-1.134765099999925],[99.00001660000004,-1.118572599999936],[99.00219790000006,-1.117872699999964],[99.00229280000008,-1.114882299999977],[98.99867440000008,-1.111467299999958],[98.98618280000005,-1.1052089],[98.97212110000004,-1.0957253],[98.96219630000007,-1.084457599999951],[98.96190990000008,-1.080457899999942],[98.95798020000007,-1.075866399999938],[98.95586210000005,-1.075993599999947],[98.95632970000008,-1.078742],[98.96027560000005,-1.082145599999933],[98.95493270000009,-1.082365099999947],[98.95539950000006,-1.084172799999976],[98.95350410000003,-1.086862899999971],[98.95621740000007,-1.087083399999926],[98.95860560000006,-1.0904281],[98.95299830000005,-1.091015099999936],[98.948833,-1.089058799999975],[98.94859420000006,-1.087967299999946],[98.95229960000006,-1.086868599999946],[98.95489690000005,-1.083814399999937],[98.94830460000009,-1.083822399999974],[98.94901,-1.082385099999954],[98.94625360000003,-1.080101799999966],[98.946879,-1.067950099999962],[98.94262330000004,-1.070135499999935],[98.94059120000009,-1.069132799999977],[98.93981170000006,-1.062899799999968],[98.93530880000009,-1.060423699999944],[98.93639350000007,-1.058721399999968],[98.93944850000008,-1.058721399999968],[98.94043860000005,-1.057395],[98.93935260000006,-1.047793099999978],[98.93668220000006,-1.042483499999946],[98.93702980000006,-1.0365881],[98.935486,-1.034988399999975],[98.937039,-1.031155299999966],[98.93615340000008,-1.028121],[98.93364340000005,-1.023784199999966],[98.929668,-1.022000499999933],[98.92908970000008,-1.0180481],[98.92245170000007,-1.010630899999967],[98.91659,-0.9993847],[98.91783550000008,-0.992253799999958],[98.92006840000005,-0.988379699999939],[98.92682110000004,-0.988108599999975],[98.93318130000006,-0.995307099999934],[98.93510630000009,-1.0019386],[98.94436540000004,-1.016167799999948],[98.94660070000003,-1.016670699999963],[98.94832450000007,-1.012921199999937],[98.94924990000004,-1.014333199999953],[98.95021510000004,-1.0131115],[98.95165480000009,-1.013881699999956],[98.95201310000004,-1.011758799999939],[98.94888360000004,-1.005524099999946],[98.947182,-1.006916],[98.94662060000007,-1.005444699999941],[98.94444860000004,-1.006626199999971],[98.94401080000006,-1.0055146],[98.94468740000008,-1.001813099999936],[98.94325330000004,-0.9966248],[98.94548280000004,-0.986745699999972],[98.94313610000006,-0.9830033],[98.94529680000005,-0.9813046],[98.94194640000006,-0.978052199999979],[98.94270260000008,-0.9743811],[98.94042390000004,-0.973259499999926],[98.93585710000008,-0.962933699999951],[98.93172170000008,-0.958272799999975],[98.93335510000009,-0.95401],[98.93594460000008,-0.953286599999956],[98.93574560000008,-0.950164899999947],[98.93405220000005,-0.947785799999963],[98.93492960000003,-0.944885199999931],[98.93290840000009,-0.939137599999924],[98.92782390000008,-0.931130899999971],[98.92309810000006,-0.931683499999963],[98.92155310000004,-0.937543799999958],[98.91180310000004,-0.941110199999969],[98.91124910000008,-0.943141799999978],[98.91150510000006,-0.941388199999949],[98.90730440000004,-0.945735299999967],[98.90372350000007,-0.945101399999942],[98.89868360000008,-0.941705099999979],[98.89878090000008,-0.937422899999945],[98.89713660000007,-0.935184799999945],[98.90037910000007,-0.931792399999949],[98.90026120000005,-0.928663299999926],[98.90240580000005,-0.926564],[98.90768930000007,-0.934097899999927],[98.90718640000006,-0.942665499999976],[98.91103290000007,-0.9406752],[98.909095,-0.936149799999953],[98.91158420000005,-0.926079],[98.91004970000006,-0.920652399999938],[98.91258790000006,-0.914592199999959],[98.91179380000005,-0.910690799999941],[98.90976470000004,-0.908858599999974],[98.89930760000004,-0.905877699999962]]]]},"properties":{"shapeName":"Kepulauan Mentawai","shapeISO":"","shapeID":"22746128B21689144387279","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[102.90442730000007,0.767766700000038],[102.901912,0.77000490000006],[102.89576950000009,0.77199],[102.88587920000003,0.773710300000062],[102.89786890000005,0.766639500000053],[102.90381250000007,0.766024600000037],[102.90442730000007,0.767766700000038]]],[[[102.83428260000005,0.772429400000021],[102.84637480000004,0.772531800000024],[102.84657970000006,0.774069],[102.84166090000008,0.775401200000033],[102.82301030000008,0.774171400000057],[102.82577710000004,0.772326900000053],[102.83428260000005,0.772429400000021]]],[[[103.09078940000006,0.717231600000048],[103.100977,0.719022500000051],[103.10949120000004,0.725187900000037],[103.11410060000009,0.732381],[103.11556860000007,0.738546400000075],[103.11254460000004,0.756426200000021],[103.11368960000004,0.76679],[103.11169320000005,0.775480300000027],[103.11254460000004,0.782732100000032],[103.10943250000008,0.788662600000066],[103.10990220000008,0.794828100000075],[103.10549840000004,0.798586100000023],[103.09604470000005,0.799525600000038],[103.09129670000004,0.796502],[103.08456520000004,0.787693800000056],[103.08086590000005,0.778357600000049],[103.07933930000007,0.75815840000007],[103.07561060000006,0.738106],[103.08239260000005,0.722692400000028],[103.08779470000007,0.717525200000068],[103.09078940000006,0.717231600000048]]],[[[103.08435970000005,0.79676580000006],[103.09381340000004,0.803812],[103.10949120000004,0.806219500000054],[103.108493,0.810917],[103.11007840000008,0.813207],[103.10737730000005,0.817669600000045],[103.10567450000008,0.819020100000046],[103.07385970000007,0.82376320000003],[103.07740150000006,0.807129600000053],[103.08227520000008,0.796560300000067],[103.08435970000005,0.79676580000006]]],[[[103.21874370000006,0.863487100000043],[103.21503940000008,0.866369],[103.21490180000006,0.867911200000037],[103.21114260000007,0.868896800000073],[103.20812380000007,0.867731900000024],[103.20886270000005,0.864226300000041],[103.21874370000006,0.863487100000043]]],[[[103.23751290000007,0.871110100000067],[103.23426920000009,0.876253900000052],[103.23129880000005,0.87677130000003],[103.23189650000006,0.871677200000022],[103.23696830000006,0.869257900000036],[103.23751290000007,0.871110100000067]]],[[[102.74913180000004,0.998121100000049],[102.74711240000005,0.999900800000034],[102.74924730000004,1.007953600000064],[102.74533330000008,1.017560600000024],[102.74008970000006,1.021193700000026],[102.73552020000005,1.022167600000046],[102.72786080000009,1.021549600000071],[102.71595020000007,1.01649320000007],[102.69334640000005,1.010631600000067],[102.65838260000004,0.995069200000046],[102.64931860000007,0.991960500000062],[102.63714320000008,0.991208700000072],[102.635434,0.988604200000054],[102.63356210000006,0.991493500000047],[102.62251990000004,0.993252700000028],[102.61375550000008,0.996810800000048],[102.609003,1.000100400000065],[102.60846170000008,1.003349200000059],[102.58871680000004,1.001138100000048],[102.57779030000006,0.992409200000054],[102.56938690000004,0.97993630000002],[102.56157360000009,0.97261130000004],[102.55681230000005,0.969681300000047],[102.53762490000008,0.965306600000019],[102.52970980000003,0.961868],[102.51072590000007,0.947930100000065],[102.49916860000008,0.94349440000002],[102.48780610000006,0.930870300000038],[102.47214850000006,0.928237800000034],[102.45197320000005,0.936265],[102.44052820000007,0.935522800000058],[102.43261820000004,0.918784900000048],[102.42257940000007,0.907535200000041],[102.41806780000007,0.899195500000076],[102.41240390000007,0.893687800000066],[102.40890780000007,0.887848100000042],[102.40791180000008,0.877125700000022],[102.41113440000004,0.85757540000003],[102.42855580000008,0.833435400000042],[102.44466870000008,0.819861500000059],[102.51476470000006,0.784335],[102.56105270000006,0.768593100000032],[102.57894150000004,0.766072200000053],[102.59244390000003,0.76684],[102.60128320000007,0.769012300000043],[102.62002920000003,0.778582],[102.63840060000007,0.78493050000003],[102.65523640000004,0.78899430000007],[102.68461950000005,0.791297800000052],[102.708241,0.791805700000054],[102.76233770000005,0.788301400000023],[102.84352040000005,0.794163100000048],[102.86619910000007,0.791372700000068],[102.88713620000004,0.782196300000066],[102.91840330000008,0.774341700000036],[102.92747340000005,0.76930550000003],[102.95213830000006,0.740426900000045],[102.969428,0.72394810000003],[102.97554,0.71512690000003],[102.98101620000006,0.702943],[102.99451840000006,0.68908440000007],[103.01755290000006,0.685563600000023],[103.02500640000005,0.687436400000024],[103.049408,0.720340200000066],[103.05010090000007,0.754929400000037],[103.05648690000004,0.781166300000052],[103.05514390000008,0.796847500000069],[103.05099980000006,0.807440700000029],[103.04933310000007,0.820606],[103.04710450000005,0.82433270000007],[103.03094290000007,0.83746050000002],[102.99520270000005,0.860850200000073],[102.96131490000005,0.876937600000076],[102.94195090000005,0.889597200000026],[102.92650090000006,0.904335600000024],[102.91556420000006,0.922913],[102.88134950000006,0.950760500000058],[102.867098,0.957446100000027],[102.85228480000006,0.96147250000007],[102.82956860000007,0.970742500000028],[102.80874390000008,0.975873700000022],[102.79703240000003,0.980312500000025],[102.78806890000004,0.98879560000006],[102.78127090000004,1.002073200000041],[102.774398,1.005462800000032],[102.75834880000008,1.009526600000072],[102.75396720000003,0.999709400000029],[102.74913180000004,0.998121100000049]]],[[[102.53334680000006,1.128579400000035],[102.52575590000004,1.12776260000004],[102.52316470000005,1.125261600000044],[102.49700560000008,1.125509500000021],[102.48445820000006,1.128015],[102.48130380000003,1.126212500000065],[102.46212940000004,1.084506500000032],[102.45956080000008,1.07576430000006],[102.46070990000004,1.061546900000053],[102.48333160000004,1.011707100000024],[102.488266,0.983339800000067],[102.49921640000008,0.952381400000036],[102.500005,0.944968600000038],[102.51014420000007,0.948618700000054],[102.52170290000004,0.95823960000007],[102.53341750000004,0.964754],[102.55490360000005,0.97014710000002],[102.560066,0.972656200000074],[102.56916520000004,0.980947900000047],[102.57845180000004,0.994474],[102.58740670000009,1.001410100000044],[102.59158860000008,1.003198200000043],[102.60817180000004,1.005274700000029],[102.60310670000007,1.017470600000024],[102.60245330000004,1.026325500000041],[102.60783840000005,1.037163200000066],[102.61054210000003,1.039146],[102.60869460000004,1.042210300000022],[102.611128,1.041128800000024],[102.61356140000004,1.042570800000021],[102.61423730000007,1.047662900000034],[102.60569790000005,1.053318400000023],[102.59945660000005,1.06311960000005],[102.59540090000007,1.065598100000045],[102.57246380000004,1.08776910000006],[102.56741670000008,1.095159500000022],[102.54923380000008,1.109376900000029],[102.54574140000005,1.120214600000054],[102.54321780000004,1.123954800000035],[102.53828340000007,1.127492300000029],[102.53334680000006,1.128579400000035]]],[[[102.77093140000005,1.158445300000039],[102.75957680000005,1.159022700000037],[102.74749080000004,1.15756],[102.72974680000004,1.151209100000074],[102.71819970000007,1.143896],[102.687677,1.117915100000062],[102.67709210000004,1.102634400000056],[102.66866280000005,1.085968200000025],[102.66400550000009,1.054367700000057],[102.65981,1.04717],[102.66027190000005,1.044321700000069],[102.65642290000005,1.034545200000025],[102.64745470000008,1.026500700000042],[102.63629250000008,1.02242080000002],[102.62405260000008,1.020034400000043],[102.62282090000008,1.018956600000024],[102.62320580000005,1.013875900000073],[102.62659290000005,1.008949200000075],[102.634291,1.006100900000035],[102.64360560000006,1.006947700000069],[102.68217290000007,1.024114300000065],[102.73178680000007,1.039548900000057],[102.74352630000004,1.039356500000054],[102.76354130000004,1.024114300000065],[102.77805210000008,1.01938],[102.78143920000008,1.020303800000022],[102.78713580000004,1.029310500000065],[102.79314030000006,1.033929300000068],[102.79910620000004,1.035584400000062],[102.80911370000007,1.034429700000032],[102.811885,1.035892300000057],[102.81442540000006,1.044822100000033],[102.82012330000003,1.049511100000075],[102.81946760000005,1.040395700000033],[102.81654230000004,1.033005600000024],[102.80957560000007,1.029195],[102.79725870000004,1.030349800000067],[102.79410250000006,1.029195],[102.79063840000003,1.025192100000027],[102.79009950000005,1.020342300000038],[102.79760510000006,1.002444300000036],[102.805842,0.991821],[102.80965260000005,0.989704],[102.82874370000008,0.986162900000068],[102.84764250000006,0.977887500000065],[102.85880460000004,0.974577400000044],[102.86496310000007,0.974192500000072],[102.88493950000009,0.966609900000037],[102.91977320000007,0.944324],[102.92377620000008,0.938627500000052],[102.93482290000009,0.929890200000045],[102.94463790000003,0.91553330000005],[102.95541520000006,0.905448900000067],[102.98486020000007,0.893709400000034],[103.02812320000004,0.866535200000044],[103.04251860000005,0.859914900000035],[103.05391170000007,0.85144710000003],[103.07250250000004,0.83193250000005],[103.10210150000006,0.827121200000022],[103.12354060000007,0.83093180000003],[103.14532610000003,0.83986150000004],[103.15390940000003,0.847982900000034],[103.15483320000004,0.858221300000025],[103.157412,0.862724700000058],[103.15464070000007,0.872193300000049],[103.15814330000006,0.882932100000062],[103.16029880000008,0.884779600000059],[103.15491010000005,0.895402900000022],[103.14270870000007,0.907912300000021],[103.13685820000006,0.91630310000005],[103.12350210000005,0.928581500000064],[103.11865230000006,0.935740700000053],[103.12073080000005,0.938512],[103.11106970000009,0.944939900000065],[103.10514220000005,0.951560200000074],[103.09555820000008,0.96399260000004],[103.08732130000004,0.98008150000004],[103.07958470000005,0.986355400000036],[103.07088590000006,0.999288100000058],[103.04605970000006,1.022035900000049],[103.02573680000006,1.045207],[103.02081010000006,1.049056],[103.01950140000008,1.052366200000051],[103.00522150000006,1.070341100000064],[102.98917110000008,1.084082100000046],[102.97223540000005,1.096245100000033],[102.95325970000005,1.100286500000038],[102.87393130000004,1.132579900000053],[102.83286150000004,1.144865800000048],[102.82443280000007,1.145204700000022],[102.79009950000005,1.155597],[102.77093140000005,1.158445300000039]]],[[[102.37586390000007,1.326466100000061],[102.37524750000006,1.32986],[102.37174670000007,1.332364900000073],[102.37342580000006,1.32758560000002],[102.37586390000007,1.326466100000061]]],[[[102.292011,1.411974300000054],[102.28407160000006,1.415823700000033],[102.27118020000006,1.418490200000065],[102.25668490000004,1.414019300000064],[102.24331230000007,1.411994400000026],[102.23054120000006,1.411934200000076],[102.214062,1.414269],[102.20990340000009,1.40667140000005],[102.20959010000007,1.401345900000024],[102.21416370000009,1.390882900000065],[102.22685720000004,1.368603600000029],[102.22898740000005,1.347226500000033],[102.22701260000008,1.327849300000025],[102.22015590000007,1.310567100000071],[102.20588110000006,1.281857200000047],[102.20582090000005,1.276945200000057],[102.21013140000008,1.266940800000043],[102.22278230000006,1.247152600000049],[102.22488740000006,1.24155890000003],[102.22701260000008,1.24059660000006],[102.23421010000004,1.22967],[102.24601890000008,1.194564400000047],[102.24942720000007,1.176119500000027],[102.24760280000004,1.149514600000032],[102.24329220000004,1.136382600000047],[102.24241010000009,1.128122500000075],[102.23719740000007,1.114529300000072],[102.23649570000003,1.101196800000025],[102.278057,1.00229580000007],[102.294477,0.987239100000068],[102.33026420000004,0.963160400000049],[102.34824810000003,0.942570200000034],[102.36432730000007,0.926811800000053],[102.37954430000008,0.915644600000064],[102.39081180000005,0.91271740000002],[102.41855940000005,0.921138],[102.42724060000006,0.93868070000002],[102.43119020000006,0.943632800000046],[102.43933010000006,0.949166300000059],[102.449575,0.949467],[102.47325270000005,0.940745800000059],[102.48000920000004,0.941447500000038],[102.48289620000008,0.945096400000068],[102.48335740000005,0.953978],[102.474175,0.978678200000047],[102.46749870000008,1.011097200000052],[102.45085820000008,1.038804800000037],[102.45001610000008,1.042934800000069],[102.43955060000008,1.062823300000048],[102.43860830000006,1.070622300000025],[102.440553,1.079423800000029],[102.44239750000008,1.080386100000055],[102.445465,1.092595900000049],[102.45174030000004,1.106048700000031],[102.45007630000003,1.112925400000051],[102.460642,1.13131020000003],[102.45949920000004,1.138708300000076],[102.46423080000005,1.159759600000029],[102.47644050000008,1.178545400000075],[102.47986890000004,1.189111100000048],[102.48337740000005,1.194544400000041],[102.47904690000007,1.201802],[102.48016960000007,1.202203],[102.48233490000007,1.198874900000021],[102.48546250000004,1.198754600000029],[102.48596370000007,1.233900300000073],[102.48462040000004,1.239012700000046],[102.48125220000009,1.243583900000033],[102.47547820000005,1.247433300000068],[102.46683710000008,1.256715900000074],[102.44554520000008,1.272474300000056],[102.42679950000007,1.29009730000007],[102.399092,1.306858100000056],[102.37429150000008,1.325764200000037],[102.35937520000004,1.345211600000027],[102.32286620000008,1.37911420000006],[102.30289750000009,1.402250600000059],[102.292011,1.411974300000054]]]]},"properties":{"shapeName":"Kepulauan Meranti","shapeISO":"","shapeID":"22746128B27361617484023","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[125.48560940000004,3.062824700000021],[125.48310160000005,3.062188700000036],[125.49017250000009,3.059270200000071],[125.48848050000004,3.061930300000029],[125.48560940000004,3.062824700000021]]],[[[125.50436630000002,3.084906500000045],[125.50287860000003,3.086679300000071],[125.5030650000001,3.093687500000044],[125.49743930000011,3.086267600000042],[125.49503430000004,3.080288900000028],[125.4956734000001,3.077386700000034],[125.4995431000001,3.078334400000074],[125.501912,3.075450900000021],[125.50161390000005,3.073963300000059],[125.50442580000004,3.074784400000055],[125.5053775,3.073149500000056],[125.50436560000003,3.070031],[125.50272530000007,3.072783700000059],[125.50139210000009,3.069514100000049],[125.49989590000007,3.069282200000032],[125.49954120000007,3.064552300000059],[125.50157550000006,3.060690100000045],[125.50525540000001,3.058008600000051],[125.507845,3.059096],[125.50496470000007,3.061327600000027],[125.50515060000009,3.064934],[125.51041120000002,3.071224100000052],[125.5095037000001,3.073990200000026],[125.512327,3.079701400000033],[125.51064030000009,3.078763800000047],[125.507826,3.081731900000023],[125.5093528000001,3.086975300000063],[125.506563,3.084278600000061],[125.50436630000002,3.084906500000045]]],[[[125.48444040000004,3.09628],[125.48259610000002,3.100498300000027],[125.48316910000005,3.098065800000029],[125.48049960000003,3.09534],[125.47762530000011,3.094901],[125.47702760000004,3.092940200000044],[125.48109020000004,3.091784500000074],[125.48444040000004,3.09628]]],[[[125.496908,3.096217900000056],[125.49276170000007,3.101257],[125.492693,3.098362300000076],[125.48735080000006,3.09612930000003],[125.48720220000007,3.094982400000049],[125.49057360000006,3.095294600000045],[125.49688620000006,3.091620100000057],[125.498409,3.096841300000051],[125.496908,3.096217900000056]]],[[[125.45293850000007,3.14948140000007],[125.44938570000011,3.148943],[125.44728920000011,3.146443300000044],[125.44688030000009,3.143047200000069],[125.4525695000001,3.139577300000042],[125.45662570000002,3.14008780000006],[125.4575152000001,3.142655600000069],[125.45550290000006,3.147463],[125.45293850000007,3.14948140000007]]],[[[125.52655140000002,3.191335300000048],[125.527163,3.192216600000052],[125.5208143000001,3.190736900000047],[125.52422760000002,3.186566700000071],[125.52483,3.183700600000066],[125.52342840000006,3.182244800000035],[125.52751560000002,3.178829700000051],[125.526769,3.17400310000005],[125.52420640000003,3.174171600000022],[125.52364570000009,3.17210110000002],[125.51995320000003,3.171966],[125.51739420000001,3.173647800000026],[125.5162223000001,3.181920200000036],[125.5131292000001,3.188774],[125.50898310000002,3.18646],[125.50862,3.184533100000067],[125.50410590000001,3.18569720000005],[125.50329670000008,3.184600200000034],[125.50323460000004,3.181159200000025],[125.50707230000012,3.181978600000036],[125.50916630000006,3.180694300000027],[125.50299980000011,3.17670970000006],[125.50507720000007,3.17594790000004],[125.5083605000001,3.177309200000025],[125.51110740000001,3.174811800000043],[125.51185220000002,3.175877400000047],[125.51561190000007,3.174120600000037],[125.51426530000003,3.173151],[125.51623370000004,3.171849],[125.51504620000003,3.169960200000048],[125.513168,3.171496200000036],[125.50908210000011,3.171812400000022],[125.50724150000008,3.174105],[125.498848,3.171945400000027],[125.50035130000003,3.171004900000071],[125.50020250000011,3.168735100000049],[125.50606460000006,3.169189300000028],[125.50491230000011,3.167030200000056],[125.50132330000008,3.165237200000036],[125.50146350000011,3.163903600000026],[125.50435090000008,3.163690200000076],[125.50432580000006,3.161626600000034],[125.51094630000011,3.164181100000064],[125.50853370000004,3.159922900000026],[125.50977550000005,3.158316400000047],[125.5128059000001,3.158849500000031],[125.51267430000007,3.156291500000066],[125.51450430000011,3.157043700000031],[125.51602370000012,3.15538250000003],[125.51673030000006,3.158515700000066],[125.5196317000001,3.157625800000062],[125.5208546,3.159316400000023],[125.52352730000007,3.156481300000053],[125.52546820000009,3.159234],[125.523034,3.162260300000071],[125.52375680000011,3.163422700000069],[125.53094290000001,3.158087900000055],[125.53203210000004,3.160316],[125.53361650000011,3.159555400000045],[125.5347435000001,3.166038400000048],[125.53619450000008,3.165710600000068],[125.5369452000001,3.16853720000006],[125.53941940000004,3.168891500000029],[125.53849260000004,3.171001600000068],[125.54021870000008,3.173249400000032],[125.53846290000001,3.173542],[125.53484460000004,3.178127],[125.538611,3.179126600000075],[125.5394937000001,3.180926],[125.53710840000008,3.18031940000003],[125.53351240000006,3.181998300000032],[125.53469310000003,3.185802200000069],[125.53275790000009,3.186023200000022],[125.53217020000011,3.187556],[125.53082140000004,3.185721700000045],[125.52910450000002,3.187239300000044],[125.52964970000005,3.190318700000034],[125.5282135000001,3.189385400000049],[125.52655140000002,3.191335300000048]]],[[[125.46049010000002,3.254950600000029],[125.45795420000002,3.255312400000037],[125.4567039000001,3.253386500000033],[125.4530466000001,3.253978800000027],[125.45254030000001,3.251773300000025],[125.44947760000002,3.252969],[125.4474795000001,3.249690200000032],[125.4485552000001,3.242528600000071],[125.44630240000004,3.239139300000033],[125.44824710000012,3.238798400000064],[125.45466290000002,3.231447100000025],[125.46462670000005,3.233825300000035],[125.46855320000009,3.236749800000041],[125.47259240000005,3.243789700000036],[125.47112920000006,3.244638700000053],[125.4724298000001,3.246923400000071],[125.46953930000006,3.248285900000042],[125.4655557000001,3.254488600000059],[125.46243360000005,3.255334900000037],[125.46071350000011,3.253487300000074],[125.46049010000002,3.254950600000029]]],[[[125.58030910000002,3.342646500000058],[125.57518990000005,3.341848],[125.5724914000001,3.339835500000049],[125.569903,3.340300300000024],[125.56788560000007,3.337286600000027],[125.5655445000001,3.337292700000035],[125.56770820000008,3.332789800000057],[125.57068850000007,3.331657600000028],[125.5733987000001,3.338209100000029],[125.58030910000002,3.342646500000058]]],[[[125.57836110000005,3.36245260000004],[125.57740950000004,3.362694600000054],[125.57799180000006,3.359084800000062],[125.57935060000011,3.361779900000045],[125.57836110000005,3.36245260000004]]],[[[125.57334380000009,3.36529390000004],[125.57268740000006,3.367235200000039],[125.57189390000008,3.364863700000058],[125.57334380000009,3.36529390000004]]],[[[125.61619310000003,3.366010900000049],[125.61261030000003,3.371193900000037],[125.6119318000001,3.367345300000068],[125.60800480000012,3.365174300000035],[125.607928,3.361031],[125.60545610000008,3.359699800000044],[125.60706550000009,3.357435600000031],[125.60558560000004,3.352400700000032],[125.60771180000006,3.349373900000046],[125.60620670000003,3.341177],[125.60958630000005,3.342466700000045],[125.61166720000006,3.341357200000061],[125.61141780000003,3.338662900000031],[125.61451270000009,3.34222630000005],[125.61678690000008,3.340905200000066],[125.62102020000009,3.341267200000061],[125.61957760000007,3.342949300000043],[125.6171634000001,3.34278740000002],[125.61555910000004,3.346980300000041],[125.61778490000006,3.351731100000052],[125.62025670000003,3.351838100000066],[125.618359,3.355025300000023],[125.62013850000005,3.355978300000061],[125.62167680000005,3.363377200000059],[125.61619310000003,3.366010900000049]]],[[[125.64394980000009,3.379863600000022],[125.6446403000001,3.381374700000038],[125.64109580000002,3.38004],[125.6401962000001,3.377975],[125.63853130000007,3.37865],[125.63558480000006,3.373285500000065],[125.64107540000009,3.370852800000023],[125.64401880000003,3.37333330000007],[125.64165580000008,3.376519300000041],[125.64394980000009,3.379863600000022]]],[[[125.57141600000011,3.406872800000031],[125.56883690000006,3.413409900000033],[125.56378340000003,3.416879400000028],[125.56209430000001,3.413865100000066],[125.56018720000009,3.413320400000032],[125.55984630000012,3.411322300000052],[125.56098970000005,3.41085060000006],[125.55886570000007,3.409237400000052],[125.561024,3.40778320000004],[125.560257,3.406294100000025],[125.56153190000009,3.405735500000048],[125.56156820000001,3.401953200000037],[125.55854120000004,3.400119600000039],[125.55566520000002,3.401935],[125.55521120000003,3.395107400000029],[125.55675940000003,3.393777700000044],[125.55892070000004,3.395085100000074],[125.56085910000002,3.392678100000069],[125.57234960000005,3.397939800000074],[125.57628020000004,3.393418900000029],[125.57425750000004,3.389781400000061],[125.578392,3.389476100000024],[125.57787050000002,3.391129500000034],[125.57988040000009,3.392961],[125.57958750000012,3.398333100000059],[125.57379380000009,3.406991300000072],[125.57141600000011,3.406872800000031]]],[[[125.49348110000005,3.460267],[125.49055540000006,3.460329700000045],[125.49068680000005,3.458296],[125.49279250000006,3.458372900000029],[125.49348110000005,3.460267]]],[[[125.71138130000008,3.47502170000007],[125.71100820000004,3.476660400000071],[125.70919590000005,3.476180700000043],[125.70506720000003,3.474249400000076],[125.703698,3.471333300000026],[125.69660250000004,3.469696300000066],[125.6970725000001,3.467513600000075],[125.69072540000002,3.463807300000042],[125.69758860000002,3.456372400000021],[125.69995830000005,3.456157],[125.70142590000012,3.454366700000037],[125.70401110000012,3.455201300000056],[125.70184330000006,3.452320600000064],[125.70261080000012,3.451566700000058],[125.70596250000006,3.455071500000031],[125.70953070000007,3.462769600000058],[125.71138130000008,3.47502170000007]]],[[[125.73389740000005,3.482890800000064],[125.73296760000005,3.484688100000028],[125.72718180000004,3.480701],[125.72904160000007,3.475143900000035],[125.73164520000012,3.478325300000051],[125.7362323000001,3.480763],[125.7359431000001,3.482994100000042],[125.73389740000005,3.482890800000064]]],[[[125.65647840000008,3.536126900000056],[125.65403250000008,3.530799700000046],[125.65629430000001,3.527421200000049],[125.6626007000001,3.530149200000039],[125.66321540000001,3.532611700000075],[125.65647840000008,3.536126900000056]]],[[[125.64287990000003,3.552418500000044],[125.64190850000011,3.553296100000068],[125.6392168000001,3.551109500000052],[125.63638540000011,3.551725500000032],[125.63562250000007,3.553269600000021],[125.63547040000003,3.551668800000073],[125.63365580000004,3.551792600000056],[125.63235240000006,3.547467100000063],[125.63677170000005,3.544845],[125.63418400000012,3.540285900000072],[125.6353428000001,3.537880800000039],[125.63768770000001,3.537444100000073],[125.6452948000001,3.542863500000067],[125.64287990000003,3.552418500000044]]],[[[125.45332690000009,3.735593300000062],[125.44619300000011,3.737008600000024],[125.44053750000012,3.733872200000064],[125.42683060000002,3.734292100000062],[125.42073330000005,3.730672300000037],[125.41279570000006,3.721613600000069],[125.404031,3.718895900000064],[125.39802050000003,3.703921100000059],[125.3973956000001,3.694323300000065],[125.398739,3.691896900000074],[125.39910530000009,3.681458300000031],[125.39760440000009,3.67317330000003],[125.39913860000001,3.668354100000045],[125.40238180000006,3.667431100000044],[125.40498190000005,3.661374900000055],[125.40785960000005,3.659889200000066],[125.4054162000001,3.656467400000054],[125.41239770000004,3.649774600000057],[125.41386780000005,3.643706300000076],[125.41773250000006,3.639871300000038],[125.42585620000011,3.637707500000033],[125.4326238000001,3.627900600000032],[125.44230230000005,3.620454],[125.46527020000008,3.612896400000068],[125.48039530000005,3.604981700000053],[125.48548470000003,3.605555300000049],[125.48870810000005,3.608131700000058],[125.50071130000003,3.610380200000066],[125.50369510000007,3.606295800000055],[125.5041318000001,3.601270100000022],[125.50962960000004,3.601948500000049],[125.50434990000008,3.60078210000006],[125.5029128000001,3.601196600000037],[125.50364810000008,3.602613600000041],[125.5005513000001,3.602321200000063],[125.49662660000001,3.599561200000039],[125.4856089000001,3.597294300000044],[125.48221300000012,3.593609900000047],[125.48716090000005,3.583234700000048],[125.4862859000001,3.57814250000007],[125.48951750000003,3.575073100000054],[125.4894207000001,3.572925],[125.49149790000001,3.572797500000036],[125.49425970000004,3.579128200000071],[125.49661330000004,3.578708400000039],[125.49725030000002,3.57629170000007],[125.50072440000008,3.578089700000021],[125.50267340000005,3.57544850000005],[125.49973490000002,3.571053300000074],[125.50803660000008,3.57323290000005],[125.51070770000001,3.570810700000038],[125.5116273000001,3.567584400000044],[125.51295160000006,3.567822500000034],[125.51218290000008,3.564879100000041],[125.50882760000002,3.561309900000026],[125.50848040000005,3.558337700000038],[125.50463890000003,3.557767400000046],[125.500637,3.548247500000059],[125.49644240000009,3.545879300000024],[125.49478620000002,3.536600200000066],[125.49206680000009,3.535587],[125.49180170000011,3.528471],[125.48678890000008,3.525297100000046],[125.48886170000003,3.52362050000005],[125.48796070000003,3.523755200000039],[125.49021920000007,3.519545],[125.486426,3.51221860000004],[125.487908,3.510936400000048],[125.48843380000005,3.506250600000044],[125.48705540000003,3.502050200000042],[125.4870006000001,3.491636300000039],[125.48553550000008,3.485595],[125.4810404000001,3.481622700000059],[125.48623750000002,3.482185900000047],[125.48756970000011,3.478485300000045],[125.489888,3.476955500000031],[125.4887566000001,3.475043800000037],[125.49064290000001,3.472859300000039],[125.48713180000004,3.468664500000045],[125.48434010000005,3.467710200000056],[125.49621230000002,3.46949230000007],[125.49593430000004,3.467761900000028],[125.499295,3.466736400000059],[125.49446520000004,3.460763200000031],[125.49551310000004,3.458570900000041],[125.49763470000005,3.459060800000032],[125.5010727,3.453848900000025],[125.50196140000003,3.454292500000065],[125.4997859,3.452019],[125.50155930000005,3.451370200000042],[125.50071690000004,3.449786800000027],[125.50421660000006,3.44933160000005],[125.50263210000003,3.446808800000042],[125.50011740000002,3.446815400000048],[125.498486,3.445184600000061],[125.499468,3.443596400000047],[125.5022772000001,3.443043900000021],[125.501182,3.439082800000051],[125.50320680000004,3.436797600000034],[125.50284760000011,3.434916300000054],[125.51272310000002,3.440241600000036],[125.51915840000004,3.440244500000063],[125.52114760000006,3.437543600000026],[125.52588150000008,3.437729200000035],[125.52424610000003,3.434562400000061],[125.52187980000008,3.434717400000068],[125.52074220000009,3.433382600000073],[125.52537510000002,3.432627],[125.52358690000005,3.42762730000004],[125.52038240000002,3.42778450000003],[125.51944220000007,3.426498700000025],[125.5213993000001,3.420696300000031],[125.5236632000001,3.419104700000048],[125.522661,3.412963300000058],[125.52532130000009,3.412114],[125.526955,3.414636600000051],[125.52995360000011,3.411160300000063],[125.53129080000008,3.413436],[125.5338451,3.409812200000033],[125.5346508,3.416249300000061],[125.53371420000008,3.416350900000054],[125.53771040000004,3.417281700000046],[125.54198750000012,3.41246620000004],[125.54124500000012,3.411378200000058],[125.544742,3.409981500000072],[125.54668190000007,3.416417600000045],[125.5475679000001,3.415870200000029],[125.54821270000002,3.417305400000032],[125.54954140000007,3.41636040000003],[125.55147190000002,3.419229100000052],[125.54906090000009,3.421118300000046],[125.547494,3.425235],[125.54952870000011,3.435181400000033],[125.5521285000001,3.432173],[125.55455610000001,3.432867300000055],[125.55521270000008,3.435421100000042],[125.55878890000008,3.43677150000002],[125.55950220000011,3.435360100000025],[125.56488700000011,3.438004400000068],[125.56577140000002,3.439921600000048],[125.56712080000011,3.439933200000041],[125.56838160000007,3.437020700000062],[125.57085280000001,3.43924370000002],[125.57018890000006,3.436329400000034],[125.57227680000005,3.434708800000067],[125.57200040000009,3.433414500000026],[125.56773470000007,3.434792800000025],[125.56411130000004,3.428575700000067],[125.5610617000001,3.428518300000064],[125.56317360000003,3.425440700000024],[125.55808680000007,3.422283300000061],[125.5609902000001,3.420145],[125.56380050000007,3.420137500000067],[125.56714410000006,3.416709700000069],[125.56951270000002,3.417446600000062],[125.57291340000006,3.415135600000042],[125.57473590000006,3.41661],[125.57567520000009,3.411647200000061],[125.58179020000011,3.406375800000035],[125.5860861000001,3.404547800000046],[125.58789020000006,3.39771120000006],[125.58707290000007,3.39657040000003],[125.58871350000004,3.396280300000058],[125.58923620000007,3.393577300000061],[125.59263780000003,3.389671700000065],[125.59095190000005,3.387507200000073],[125.59197640000002,3.383945700000027],[125.59015000000011,3.382418],[125.59040310000012,3.380391200000076],[125.58450710000011,3.379393900000025],[125.58107280000002,3.375818300000049],[125.58178640000006,3.374993600000039],[125.58802750000007,3.376423200000033],[125.58808350000004,3.378059600000029],[125.59098970000002,3.377428300000076],[125.59509320000006,3.379911100000072],[125.597193,3.377359800000022],[125.59828060000007,3.378110100000072],[125.60240810000005,3.375033900000062],[125.60445450000009,3.375097900000071],[125.60552750000011,3.368132600000024],[125.60662250000007,3.37065860000007],[125.61196280000001,3.37101],[125.61280490000001,3.374115600000039],[125.61539670000002,3.370297200000039],[125.61692640000001,3.37208540000006],[125.6190041000001,3.370962900000052],[125.62201950000008,3.372539200000062],[125.62106330000006,3.379104300000051],[125.61800950000008,3.381076700000051],[125.62168310000004,3.388410900000054],[125.62328390000005,3.383282700000052],[125.63049740000008,3.380268200000046],[125.63140770000007,3.388964800000053],[125.63488380000001,3.390646300000071],[125.63524960000007,3.38016390000007],[125.63809720000006,3.37928770000002],[125.64459490000002,3.382789100000025],[125.648297,3.387024600000075],[125.650861,3.387485800000036],[125.65074390000007,3.39214080000005],[125.6527354000001,3.391343900000038],[125.65412560000004,3.388530400000036],[125.65762020000011,3.388520800000038],[125.65821850000009,3.392150400000048],[125.65565640000011,3.393207600000039],[125.65424710000002,3.398939600000062],[125.65511050000009,3.401992300000074],[125.65691730000003,3.402655500000037],[125.6574773000001,3.399026200000037],[125.66251770000008,3.401017100000047],[125.66198430000009,3.403261600000064],[125.6651141000001,3.406294700000046],[125.66336220000005,3.414113100000066],[125.66692560000001,3.415097200000048],[125.66763290000006,3.417763600000058],[125.67120120000004,3.416535900000042],[125.6712884000001,3.420664100000067],[125.6737419000001,3.422561500000029],[125.67644310000003,3.428998],[125.67494460000012,3.432567],[125.67634590000011,3.437651200000062],[125.67436490000011,3.439439200000038],[125.67545240000004,3.443427500000041],[125.67237770000008,3.444411100000025],[125.67443690000005,3.446203],[125.67101330000003,3.44711140000004],[125.67345050000006,3.451294],[125.67245490000005,3.453048700000068],[125.6701892000001,3.450602400000037],[125.66719020000005,3.451570600000025],[125.66858280000008,3.458955300000071],[125.6661841,3.460439800000074],[125.66699230000006,3.46214370000007],[125.66440520000003,3.47216],[125.6655611000001,3.476148100000046],[125.6687323000001,3.477098800000022],[125.6713347000001,3.480625800000041],[125.66913230000011,3.481866],[125.671138,3.493695500000058],[125.6685275000001,3.495868],[125.66869,3.500764300000071],[125.6667675000001,3.503429200000028],[125.663714,3.503955900000051],[125.66340450000007,3.501702100000045],[125.6611137000001,3.501205900000059],[125.65925320000008,3.502734600000053],[125.65606930000001,3.502682800000059],[125.65462720000005,3.504782400000067],[125.65461360000006,3.513579600000071],[125.65914350000003,3.51643370000005],[125.66273680000006,3.516488700000025],[125.6610353000001,3.517954800000041],[125.66229320000002,3.523178400000063],[125.66022480000004,3.524340800000061],[125.65818820000004,3.520460900000046],[125.65584360000003,3.521624100000054],[125.65413710000007,3.520518800000048],[125.65559850000011,3.516351300000053],[125.64960140000005,3.511973900000044],[125.647122,3.514340100000027],[125.64786570000001,3.516836],[125.64446540000006,3.51911240000004],[125.64426770000011,3.514302],[125.64007330000004,3.512509800000032],[125.64209730000005,3.511949],[125.64420160000009,3.507178300000021],[125.64295250000009,3.505007700000021],[125.6433459000001,3.497558900000058],[125.6471735,3.497311800000034],[125.64900390000003,3.495583],[125.653605,3.496320900000057],[125.657358,3.495264700000064],[125.65948820000006,3.490707800000052],[125.66220980000003,3.488693700000056],[125.66080640000007,3.487799400000029],[125.66012310000008,3.483294700000044],[125.6593875000001,3.486695500000053],[125.65765650000003,3.485951900000032],[125.65785930000004,3.48915530000005],[125.65535650000004,3.493609200000037],[125.64706460000002,3.493793500000038],[125.64265260000002,3.49038],[125.64169450000009,3.491047900000069],[125.63852020000002,3.498208300000044],[125.63931980000007,3.500068700000043],[125.63716590000001,3.499243300000046],[125.63592930000004,3.506863800000076],[125.6346208000001,3.506534900000077],[125.63230990000011,3.50877],[125.63301430000001,3.512061],[125.63173080000001,3.514725700000042],[125.62663570000007,3.515737900000033],[125.62207560000002,3.518644700000038],[125.62355410000009,3.519401600000037],[125.62173040000005,3.524153100000035],[125.62656850000008,3.527514500000052],[125.6236206000001,3.528597700000034],[125.61858130000007,3.526329700000076],[125.61703640000007,3.528576700000031],[125.61645510000005,3.531182900000033],[125.62183290000007,3.534878100000071],[125.6204163000001,3.535510100000067],[125.61867470000004,3.533848600000056],[125.6154467,3.536311100000034],[125.61538150000001,3.53856],[125.61799970000004,3.542299300000025],[125.6151324000001,3.542150500000048],[125.61290470000006,3.539989300000059],[125.61148440000011,3.541490600000031],[125.61065850000011,3.54062360000006],[125.60975660000008,3.54261850000006],[125.6113147000001,3.545369700000037],[125.6103988000001,3.544520900000066],[125.60842910000008,3.545747900000038],[125.60746130000007,3.54829490000003],[125.60594880000008,3.546856300000059],[125.60690580000005,3.549528200000054],[125.6048052000001,3.549360400000069],[125.60318250000012,3.552428200000065],[125.60184160000006,3.550077400000021],[125.60144190000005,3.551135],[125.59971420000011,3.550198100000046],[125.60146970000005,3.554793500000073],[125.60043630000007,3.558571100000052],[125.59779060000005,3.556803900000034],[125.59785010000007,3.555317900000034],[125.5956139000001,3.555189800000051],[125.59460610000008,3.552051900000038],[125.58994120000011,3.552614],[125.58968740000012,3.556639300000029],[125.5913187000001,3.559505],[125.59346090000008,3.560095200000035],[125.59293920000005,3.560953],[125.5879112,3.559298500000068],[125.58694890000004,3.560645800000032],[125.5885512000001,3.562122300000055],[125.58915950000005,3.567632],[125.58584110000004,3.568944100000067],[125.58954770000003,3.573242900000025],[125.58636550000006,3.574922100000038],[125.58531440000002,3.573910200000057],[125.58299260000001,3.574601800000039],[125.5808717000001,3.579546900000025],[125.58448950000002,3.581208300000071],[125.58491720000006,3.582868900000051],[125.5815718,3.580416300000024],[125.57870930000001,3.581997500000057],[125.57723320000002,3.579245400000048],[125.57272440000008,3.577730900000063],[125.57182120000004,3.580772800000034],[125.56978430000004,3.581736400000068],[125.5692173000001,3.578329],[125.55951730000004,3.577798900000062],[125.55930610000007,3.58120150000002],[125.5624352000001,3.589810700000044],[125.5678885000001,3.59017590000002],[125.57298850000006,3.586237100000062],[125.5724662,3.590494300000046],[125.57621640000002,3.591747400000031],[125.5759756000001,3.59367],[125.57815260000007,3.596985700000062],[125.57909140000004,3.596266400000047],[125.57925680000005,3.598011900000074],[125.5824434000001,3.597191],[125.57888810000009,3.599911600000041],[125.5782415000001,3.602161300000034],[125.57270230000006,3.604432100000054],[125.58101270000009,3.608211500000039],[125.5846739000001,3.606072400000073],[125.58670490000009,3.608161100000075],[125.58411490000003,3.609989400000075],[125.58483540000009,3.611228800000049],[125.58419170000002,3.61006610000004],[125.585348,3.609746500000028],[125.58845810000003,3.611302100000046],[125.594705,3.61102980000004],[125.58814660000007,3.612482700000044],[125.58723740000005,3.615904800000067],[125.58384850000004,3.619358100000056],[125.5839873000001,3.621579600000075],[125.58687470000007,3.622715800000037],[125.58450940000012,3.624760200000026],[125.57585030000007,3.626713800000061],[125.57531470000004,3.625411300000053],[125.57359350000002,3.625697],[125.57303530000002,3.622773500000051],[125.57255470000007,3.624966400000062],[125.56953440000007,3.626773100000037],[125.56843620000006,3.625315300000068],[125.56312080000009,3.625537200000053],[125.5636177,3.628244800000061],[125.56640060000007,3.629193500000042],[125.56387690000008,3.628877500000044],[125.56344680000007,3.631580900000074],[125.565618,3.63312970000004],[125.56959430000006,3.63275630000004],[125.57664710000006,3.636619800000062],[125.57477510000001,3.639211],[125.57493840000006,3.642409200000031],[125.569448,3.649978500000032],[125.56723350000004,3.647895800000072],[125.56056190000004,3.648970800000029],[125.5620441000001,3.656813400000033],[125.55856340000003,3.658838200000048],[125.55685710000012,3.665885800000069],[125.5532664000001,3.668422300000032],[125.55327280000006,3.670682500000055],[125.5477859,3.673093],[125.54317950000006,3.677631800000029],[125.5422436,3.684867600000075],[125.53595580000001,3.689627500000029],[125.51824440000007,3.712282500000072],[125.51431760000003,3.714898400000038],[125.50797240000009,3.722811900000067],[125.48996970000007,3.729353300000071],[125.46694510000009,3.73120670000003],[125.45875540000009,3.735014500000034],[125.45332690000009,3.735593300000062]]],[[[125.57224250000002,3.769857400000035],[125.56687590000001,3.769201400000043],[125.556164,3.755607800000064],[125.55503080000005,3.753365300000041],[125.55760820000012,3.745276300000057],[125.5602166000001,3.746356200000037],[125.55974020000008,3.750504400000068],[125.56252690000008,3.753864900000053],[125.56710890000011,3.748060100000032],[125.56822210000007,3.749515700000075],[125.57020820000002,3.748466500000063],[125.57059960000004,3.754389300000071],[125.57299770000009,3.754267300000038],[125.57464830000004,3.755845],[125.57940910000002,3.754044900000054],[125.58015970000008,3.751911900000039],[125.58269690000009,3.752700100000027],[125.586449,3.750593500000036],[125.58291270000007,3.755732100000046],[125.58311790000005,3.758171800000071],[125.58647090000011,3.758029200000067],[125.5814557000001,3.761616100000026],[125.57782450000002,3.768930100000034],[125.57224250000002,3.769857400000035]]],[[[125.60464180000008,3.792623900000024],[125.60363020000011,3.793866100000059],[125.602027,3.792384],[125.6006628,3.793131600000038],[125.59703260000003,3.789673100000073],[125.59212160000004,3.791041300000074],[125.58933530000002,3.787408700000071],[125.5861096000001,3.78756130000005],[125.58811830000002,3.784981800000025],[125.58693930000004,3.779371300000037],[125.58928780000008,3.769794700000034],[125.59489460000009,3.769482500000038],[125.59549980000008,3.775199500000042],[125.59722610000006,3.776595400000076],[125.6010586000001,3.776317],[125.600623,3.781389],[125.60465640000007,3.781653300000073],[125.605989,3.787806500000045],[125.61055930000009,3.788336],[125.61207320000005,3.790075600000023],[125.61469920000002,3.787723],[125.61469820000002,3.784234500000025],[125.61651110000003,3.784457800000041],[125.6179833000001,3.781775100000061],[125.623232,3.783913200000029],[125.62659770000005,3.783026100000029],[125.629701,3.784799],[125.63266610000005,3.783245900000054],[125.6343,3.783850900000061],[125.6326633000001,3.790156],[125.6310562000001,3.788979],[125.62652900000012,3.790127],[125.62449960000004,3.793640700000026],[125.6208415000001,3.79353750000007],[125.619954,3.791872200000057],[125.610164,3.790986900000064],[125.60464180000008,3.792623900000024]]],[[[125.56622830000003,3.793649],[125.56700110000008,3.797595500000057],[125.56579040000008,3.798321600000065],[125.56501780000008,3.794408800000042],[125.56622830000003,3.793649]]],[[[125.575666,3.807709600000067],[125.57295680000004,3.807949],[125.57400480000001,3.804962900000021],[125.57661830000006,3.806319],[125.575666,3.807709600000067]]],[[[125.72355090000008,3.870504400000073],[125.72081020000007,3.87266980000004],[125.72246060000009,3.866305800000021],[125.724369,3.86942010000007],[125.72355090000008,3.870504400000073]]],[[[125.39071840000008,3.912950100000046],[125.39002570000002,3.915302600000075],[125.38811680000003,3.91569990000005],[125.38765290000003,3.913377600000047],[125.38417960000004,3.912279800000022],[125.384696,3.909387400000071],[125.387406,3.906934500000034],[125.39139030000001,3.907990300000051],[125.39071840000008,3.912950100000046]]],[[[125.3201242,4.236803200000054],[125.31739590000007,4.235065400000053],[125.3187656,4.231145500000025],[125.3243953000001,4.227166300000022],[125.33056480000005,4.227897600000063],[125.33210450000001,4.231548300000043],[125.330987,4.234371900000042],[125.3269888000001,4.236586600000066],[125.32380620000004,4.235682600000075],[125.3201242,4.236803200000054]]],[[[125.69328710000002,4.437210400000026],[125.69247440000004,4.438213500000074],[125.69093260000011,4.436942300000055],[125.6881562000001,4.437292900000045],[125.68946180000012,4.431872100000021],[125.69704280000008,4.432142400000032],[125.69639040000004,4.433506800000032],[125.69550740000011,4.43265880000007],[125.69328710000002,4.437210400000026]]],[[[125.63099940000006,4.591085300000032],[125.62968070000011,4.59146110000006],[125.62620030000005,4.588548600000024],[125.63105040000005,4.588912700000037],[125.63245390000009,4.591016800000034],[125.63099940000006,4.591085300000032]]],[[[125.43816,4.651443300000039],[125.43799850000005,4.65912110000005],[125.43506550000006,4.662692700000036],[125.43349790000002,4.659012],[125.43498430000011,4.656681400000025],[125.4334649000001,4.64804950000007],[125.43816,4.651443300000039]]],[[[125.43069520000006,4.670589500000062],[125.42900970000005,4.670504100000073],[125.4290926000001,4.669044800000052],[125.43109690000006,4.669254600000045],[125.43069520000006,4.670589500000062]]],[[[125.49115930000005,4.745010200000024],[125.48796620000007,4.743359100000021],[125.48698410000009,4.741079500000069],[125.48250030000008,4.740205600000024],[125.48191,4.737883900000043],[125.4776802,4.736331600000028],[125.47674560000007,4.731920700000046],[125.47811690000003,4.728296500000056],[125.4794389000001,4.727485300000069],[125.48277070000006,4.729101800000024],[125.4892066000001,4.735472700000059],[125.49012260000006,4.740137100000027],[125.49194520000003,4.73994870000007],[125.492287,4.74367710000007],[125.49115930000005,4.745010200000024]]]]},"properties":{"shapeName":"Kepulauan Sangihe","shapeISO":"","shapeID":"22746128B62884198452464","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[121.20519070000012,-7.515156],[121.20630090000009,-7.513350899999978],[121.20546390000004,-7.5122182],[121.20338820000006,-7.515944899999965],[121.20519070000012,-7.515156]]],[[[121.21014140000011,-7.496294199999966],[121.20403240000007,-7.496795599999928],[121.20227620000003,-7.498961799999961],[121.21113350000007,-7.498711299999968],[121.20971920000011,-7.499207099999978],[121.21153630000003,-7.499716],[121.2113614000001,-7.501682599999981],[121.21536120000007,-7.501077899999927],[121.20749610000007,-7.5103602],[121.20780120000006,-7.511842199999933],[121.21450140000002,-7.507058399999949],[121.21782750000011,-7.500608399999976],[121.2172706,-7.497206799999958],[121.21014140000011,-7.496294199999966]]],[[[121.803074,-7.490175199999953],[121.803039,-7.486283699999944],[121.80175530000008,-7.491474799999935],[121.803074,-7.490175199999953]]],[[[121.79658070000005,-7.472143199999948],[121.79195490000006,-7.472500099999934],[121.79169630000001,-7.474821],[121.7865498000001,-7.477519799999925],[121.77957860000004,-7.476049399999965],[121.77157130000012,-7.4805359],[121.756289,-7.485826599999939],[121.7471412000001,-7.484017899999969],[121.73911670000007,-7.486090299999944],[121.73398120000002,-7.490386899999976],[121.7236736000001,-7.488847399999941],[121.7235482000001,-7.492552299999943],[121.7259097000001,-7.493889099999933],[121.73489430000006,-7.492737799999929],[121.73868290000007,-7.4944869],[121.75322630000005,-7.495339099999967],[121.76571620000004,-7.492111799999975],[121.77230190000012,-7.4888576],[121.7796906000001,-7.487838299999964],[121.78346930000009,-7.489118099999928],[121.790508,-7.486700599999949],[121.7970332000001,-7.488297199999977],[121.80053140000007,-7.487403299999926],[121.80313540000009,-7.479072899999949],[121.79943320000007,-7.472619899999927],[121.79658070000005,-7.472143199999948]]],[[[121.42120450000004,-7.450243],[121.41503340000008,-7.450643099999979],[121.41292580000004,-7.457151299999964],[121.41601860000003,-7.462377799999956],[121.42048250000005,-7.464608299999952],[121.42331490000004,-7.464168499999971],[121.4230884000001,-7.465814],[121.42477960000008,-7.465928199999951],[121.42802490000008,-7.463805599999944],[121.42836680000005,-7.458883399999934],[121.42580540000006,-7.454373799999928],[121.42120450000004,-7.450243]]],[[[121.04346880000003,-7.364069899999947],[121.04180950000011,-7.364180899999951],[121.04197210000007,-7.366301699999951],[121.04596290000006,-7.3675142],[121.04582440000001,-7.364921099999947],[121.04346880000003,-7.364069899999947]]],[[[121.81842350000011,-7.3307986],[121.80443790000004,-7.331687899999963],[121.79055170000004,-7.334880899999973],[121.78536520000011,-7.333996899999931],[121.7806035000001,-7.338842499999942],[121.7723185000001,-7.339543899999967],[121.76983080000002,-7.344577899999933],[121.76387940000006,-7.346442899999943],[121.7592158000001,-7.344734199999948],[121.7555655000001,-7.3496471],[121.7536156000001,-7.356651399999976],[121.75400900000011,-7.375295],[121.75120130000005,-7.3790503],[121.74692490000007,-7.378997199999958],[121.7453028000001,-7.383108299999947],[121.7445838000001,-7.397413899999947],[121.7459583000001,-7.398664899999972],[121.74437750000004,-7.404635699999972],[121.74612060000004,-7.414566499999978],[121.75460210000006,-7.422928899999931],[121.7592548,-7.4218147],[121.76370430000009,-7.423628099999974],[121.7680822000001,-7.422694],[121.77135480000004,-7.424229099999934],[121.77419270000007,-7.4224042],[121.77807450000012,-7.422253699999942],[121.78111960000001,-7.423646],[121.78201880000006,-7.421297699999968],[121.78928070000006,-7.417988199999968],[121.79059260000008,-7.415579899999955],[121.79515220000008,-7.413370199999974],[121.8025381000001,-7.406491099999926],[121.8232286000001,-7.397178699999927],[121.82951710000009,-7.384179299999971],[121.8397543000001,-7.371635899999944],[121.83817880000004,-7.370226],[121.83871350000004,-7.356798499999968],[121.84021040000005,-7.352095199999951],[121.8386243000001,-7.347288599999956],[121.8292748,-7.334365499999933],[121.8229606000001,-7.331215699999973],[121.81842350000011,-7.3307986]]],[[[121.08580830000005,-7.303559],[121.08148210000002,-7.304212199999938],[121.08125040000004,-7.317916299999979],[121.07827760000009,-7.330219899999975],[121.0793278000001,-7.3429319],[121.0816956000001,-7.349521099999947],[121.0836594000001,-7.351198099999976],[121.08222350000005,-7.362817599999971],[121.07367180000006,-7.3695402],[121.06214210000007,-7.370173699999953],[121.06028640000011,-7.370972199999926],[121.06097020000004,-7.372805199999959],[121.0711179000001,-7.376205099999936],[121.0793327,-7.385448],[121.08759840000005,-7.388242899999966],[121.0987497000001,-7.3975268],[121.1073464000001,-7.391703199999938],[121.11698700000011,-7.388599699999929],[121.12351020000006,-7.383224299999938],[121.12960310000005,-7.382282799999928],[121.136247,-7.379078499999935],[121.14214470000002,-7.378604],[121.1499741,-7.372257],[121.15674430000001,-7.371752699999945],[121.16230260000009,-7.362337299999979],[121.16721170000005,-7.357811399999946],[121.16820270000005,-7.354121899999939],[121.16536360000009,-7.345648399999959],[121.15787450000005,-7.344648499999948],[121.14740210000002,-7.337749699999961],[121.1369932,-7.339616099999944],[121.13392990000011,-7.338533],[121.12943350000012,-7.33425],[121.12926820000007,-7.324317199999939],[121.12634870000011,-7.321084499999927],[121.1190150000001,-7.318589199999963],[121.11469870000008,-7.314496599999927],[121.1112465000001,-7.315225099999964],[121.11460420000003,-7.314797299999952],[121.115356,-7.315873299999964],[121.1111714000001,-7.317878399999927],[121.10594340000011,-7.3182929],[121.10167990000002,-7.314992099999927],[121.10220470000002,-7.311776],[121.09646160000011,-7.304601899999966],[121.08580830000005,-7.303559]]],[[[121.09776990000012,-7.3029031],[121.09632940000006,-7.3033166],[121.09929780000004,-7.30462],[121.102411,-7.310184399999969],[121.10023290000004,-7.305184899999972],[121.09776990000012,-7.3029031]]],[[[121.7612372000001,-7.261267099999941],[121.7597621000001,-7.260815899999955],[121.76184260000002,-7.262879799999951],[121.7616686,-7.265860199999963],[121.75596870000004,-7.263443299999949],[121.75372690000006,-7.264281799999935],[121.75201030000005,-7.2671752],[121.747984,-7.267925499999933],[121.74613090000003,-7.266165],[121.74427340000011,-7.270985899999971],[121.74047080000003,-7.272349899999938],[121.73727670000005,-7.278742099999931],[121.73224540000001,-7.280450299999927],[121.73112520000006,-7.277648399999975],[121.7300785000001,-7.278241699999967],[121.73028150000005,-7.288370499999928],[121.72783660000005,-7.290615799999955],[121.72742710000011,-7.294622299999958],[121.73018730000001,-7.2950249],[121.73712100000012,-7.291847399999938],[121.74846350000007,-7.289903799999934],[121.7540666000001,-7.286740099999975],[121.75939560000006,-7.2878491],[121.77336150000008,-7.286377099999982],[121.77936450000004,-7.275486099999966],[121.77879160000009,-7.272602899999981],[121.76994760000002,-7.263927099999933],[121.76516970000011,-7.260930099999939],[121.7612372000001,-7.261267099999941]]],[[[120.82087710000008,-7.259320499999944],[120.814315,-7.258816899999943],[120.81004230000008,-7.2625779],[120.79901140000004,-7.264607699999942],[120.79575520000003,-7.271509899999955],[120.79792060000011,-7.2765329],[120.80140490000008,-7.277022199999976],[120.80462040000009,-7.281677599999966],[120.8060302,-7.287863199999947],[120.8188722000001,-7.292638899999929],[120.82055920000005,-7.292172699999981],[120.82995430000005,-7.298328499999968],[120.83278370000005,-7.297284599999955],[120.83820060000005,-7.298257299999932],[120.8506006,-7.293075299999941],[120.8550136,-7.293738499999961],[120.86580650000008,-7.298856799999953],[120.87362870000004,-7.305277],[120.88750070000003,-7.3078054],[120.89160570000001,-7.309756299999947],[120.90100030000008,-7.310278099999948],[120.90207750000002,-7.308242599999971],[120.90828350000004,-7.306865799999969],[120.92168760000004,-7.307594499999936],[120.92878280000002,-7.306527099999926],[120.93641630000002,-7.309716399999957],[120.9560239000001,-7.324389899999971],[120.97566890000007,-7.324882599999967],[120.985872,-7.326655899999935],[121.00391560000003,-7.332701899999961],[121.01278820000005,-7.332080699999949],[121.0139531000001,-7.330473299999937],[121.02782820000004,-7.328423],[121.03522790000011,-7.3256085],[121.0514945000001,-7.326597699999979],[121.05225180000002,-7.318508699999938],[121.063919,-7.300976699999978],[121.06250090000003,-7.298297699999978],[121.05906080000011,-7.297488199999975],[121.04566120000004,-7.297306699999979],[121.02994560000002,-7.287504199999944],[121.02420210000002,-7.2894516],[121.0145083000001,-7.286418199999957],[121.01254840000001,-7.2840564],[121.00842840000007,-7.284536699999933],[121.00440530000003,-7.281843199999969],[120.99379780000004,-7.284388899999954],[120.98593740000001,-7.281516299999964],[120.96380540000007,-7.281351499999971],[120.96075250000001,-7.278023299999973],[120.9505018000001,-7.283110399999941],[120.94831950000003,-7.281921499999953],[120.94203020000009,-7.283670799999925],[120.92633590000003,-7.282840399999941],[120.91910130000008,-7.284537299999954],[120.91525350000006,-7.282442299999957],[120.91300150000006,-7.2789379],[120.90595150000001,-7.277689],[120.90138370000011,-7.273137599999927],[120.895394,-7.273685299999954],[120.89219750000007,-7.275617699999941],[120.8874121,-7.274871],[120.8822712000001,-7.2718676],[120.87451910000004,-7.273194799999942],[120.8717047,-7.27158],[120.86315350000007,-7.271127399999955],[120.85997080000004,-7.267066899999975],[120.85757330000001,-7.2685088],[120.8539922000001,-7.268098599999973],[120.85139990000005,-7.265138699999966],[120.839433,-7.259825599999942],[120.82843850000006,-7.259825],[120.827785,-7.260800399999937],[120.82087710000008,-7.259320499999944]]],[[[121.7542539000001,-7.222432099999935],[121.74788330000001,-7.222761499999933],[121.74752060000003,-7.224007399999948],[121.74950380000007,-7.224508199999946],[121.73852270000009,-7.229704899999945],[121.7419705000001,-7.232652399999949],[121.7436159,-7.2315979],[121.747116,-7.234221],[121.75308220000011,-7.231642799999975],[121.75572180000006,-7.229907699999956],[121.7542539000001,-7.222432099999935]]],[[[121.47927090000007,-7.153326899999968],[121.48067060000005,-7.151295499999947],[121.47990020000009,-7.148888899999974],[121.47710060000009,-7.146032099999957],[121.47426750000011,-7.146077],[121.47226830000011,-7.151203899999928],[121.4761380000001,-7.153714199999968],[121.47927090000007,-7.153326899999968]]],[[[120.6766407,-7.126229699999953],[120.6750326,-7.126289899999961],[120.67503560000011,-7.1279524],[120.6766407,-7.126229699999953]]],[[[121.4434136000001,-7.118053099999941],[121.44131170000003,-7.1177446],[121.44184590000009,-7.120459399999959],[121.4434136000001,-7.118053099999941]]],[[[120.5914782000001,-7.104023],[120.58944330000008,-7.104118599999936],[120.58947970000008,-7.105555399999957],[120.5914782000001,-7.104023]]],[[[120.56135440000003,-7.073354199999926],[120.55958310000005,-7.073415299999965],[120.5548126000001,-7.080260199999941],[120.55669940000007,-7.080461899999932],[120.55912020000005,-7.088562799999977],[120.56145090000007,-7.089435799999933],[120.5635645000001,-7.092620199999942],[120.5652669000001,-7.092125],[120.56731450000007,-7.093574399999966],[120.569487,-7.089016699999945],[120.57650190000004,-7.087371399999938],[120.58346950000009,-7.091191499999979],[120.58676040000012,-7.089929199999972],[120.5902536000001,-7.091211399999963],[120.59050230000003,-7.096864],[120.59559980000006,-7.100338099999931],[120.59847490000004,-7.098865299999943],[120.60278260000007,-7.099524599999938],[120.60352090000003,-7.095563],[120.61189270000011,-7.090131],[120.613166,-7.0822878],[120.61126150000007,-7.080758199999934],[120.5956278000001,-7.081130799999926],[120.58946460000004,-7.082890199999952],[120.58602240000005,-7.081341899999927],[120.58526820000009,-7.0787533],[120.58280390000004,-7.077202],[120.57580310000003,-7.077646],[120.571758,-7.075813699999969],[120.56924490000006,-7.078445],[120.56417570000008,-7.078042699999969],[120.56396670000004,-7.074274099999968],[120.56135440000003,-7.073354199999926]]],[[[121.12139320000006,-7.078958499999942],[121.12281370000005,-7.072636299999942],[121.1220767000001,-7.068307199999936],[121.12013390000004,-7.075437099999931],[121.12139320000006,-7.078958499999942]]],[[[120.59749990000012,-7.064989299999979],[120.59634430000006,-7.066656899999941],[120.60021080000001,-7.067324299999939],[120.59749990000012,-7.064989299999979]]],[[[120.56121810000002,-7.067343699999981],[120.55930500000011,-7.063389799999925],[120.5573538000001,-7.066688699999929],[120.55719650000003,-7.070888399999944],[120.55866050000009,-7.072814],[120.55973480000011,-7.071685099999968],[120.5646564000001,-7.071859399999937],[120.56259350000005,-7.0706871],[120.56717150000009,-7.064173799999935],[120.565497,-7.063719299999946],[120.56121810000002,-7.067343699999981]]],[[[121.09616770000002,-7.067121399999962],[121.10001580000005,-7.062673699999948],[121.09865710000008,-7.0579455],[121.09596640000007,-7.064367699999934],[121.09616770000002,-7.067121399999962]]],[[[120.60412310000004,-7.064079199999981],[120.60448280000003,-7.058276699999965],[120.60312230000011,-7.057124499999929],[120.60080280000011,-7.059167599999967],[120.60155830000008,-7.064960199999973],[120.60412310000004,-7.064079199999981]]],[[[120.54914610000003,-7.055825699999957],[120.53872430000001,-7.058907199999965],[120.5372162000001,-7.063880799999936],[120.53900870000007,-7.067115899999976],[120.54522340000005,-7.069671299999925],[120.54359260000001,-7.0686799],[120.55143370000008,-7.067610599999966],[120.55082020000009,-7.059158599999932],[120.5531519000001,-7.056616499999961],[120.54914610000003,-7.055825699999957]]],[[[120.53965650000009,-7.0544182],[120.53863,-7.056183799999928],[120.54266380000001,-7.0549695],[120.53965650000009,-7.0544182]]],[[[120.60677580000004,-7.041597],[120.60350580000011,-7.040380299999981],[120.60155240000006,-7.042697299999929],[120.60677580000004,-7.041597]]],[[[120.61989320000009,-7.042497899999944],[120.620079,-7.040863699999932],[120.61779540000009,-7.039883],[120.61989320000009,-7.042497899999944]]],[[[121.06307130000005,-7.045984399999952],[121.06392950000009,-7.039294],[121.06263,-7.042296699999952],[121.06307130000005,-7.045984399999952]]],[[[120.6128212000001,-7.040051499999947],[120.6110278000001,-7.039569699999959],[120.61297060000004,-7.041676299999949],[120.6128212000001,-7.040051499999947]]],[[[120.63191890000007,-7.000369899999953],[120.62242220000007,-7.001495599999942],[120.619903,-7.003666599999974],[120.62172930000008,-7.022217099999978],[120.62446890000001,-7.025892899999974],[120.62399570000002,-7.035159699999951],[120.62780530000009,-7.045880299999965],[120.62747840000009,-7.052925399999936],[120.62285110000005,-7.05212],[120.62006350000001,-7.054822299999955],[120.6189839000001,-7.059278799999959],[120.61417740000002,-7.066007099999979],[120.60829330000001,-7.065049199999976],[120.60770570000011,-7.067177699999945],[120.61054880000006,-7.069399799999928],[120.61059880000005,-7.071803299999942],[120.608557,-7.072956099999942],[120.60541530000012,-7.0715092],[120.60472290000007,-7.074341799999956],[120.6107558000001,-7.078806199999974],[120.61529580000001,-7.078454799999975],[120.61895720000007,-7.081431799999962],[120.6183545,-7.084102399999949],[120.6208583,-7.087731799999972],[120.62022580000007,-7.098126799999932],[120.6240259000001,-7.096722899999975],[120.62714480000011,-7.091863399999966],[120.6296827000001,-7.093957],[120.63183220000008,-7.093798599999957],[120.63544220000006,-7.099043],[120.633984,-7.105042199999957],[120.631091,-7.104048599999942],[120.62644640000008,-7.105682299999955],[120.62882850000005,-7.112301399999978],[120.62390190000008,-7.113635199999976],[120.625684,-7.115055699999971],[120.62630520000005,-7.118646299999966],[120.62956120000001,-7.121358899999962],[120.6320280000001,-7.121338],[120.63393620000011,-7.124503],[120.632399,-7.1327784],[120.63450570000009,-7.133432899999946],[120.63670370000011,-7.129037499999981],[120.64030370000012,-7.129005499999948],[120.640705,-7.130932399999949],[120.64761270000008,-7.132456799999943],[120.6504556000001,-7.135275199999967],[120.65381260000004,-7.135747599999945],[120.65849730000002,-7.144341599999962],[120.66128850000007,-7.142533699999944],[120.66508210000006,-7.143641199999934],[120.66769870000007,-7.147244099999966],[120.6691307000001,-7.146956799999941],[120.6684457,-7.148820399999977],[120.67008970000006,-7.150527099999977],[120.67019490000007,-7.146432199999936],[120.67635740000003,-7.145354599999962],[120.67843140000002,-7.141915799999936],[120.6802977000001,-7.142803599999979],[120.675487,-7.137055],[120.67633830000011,-7.134891799999934],[120.67314080000006,-7.133625399999971],[120.66881620000004,-7.128846499999952],[120.66220320000002,-7.129926399999931],[120.65406990000008,-7.128087499999936],[120.6535335000001,-7.126223],[120.6554552,-7.124021199999959],[120.66189940000004,-7.121043],[120.6696253,-7.121153499999934],[120.67341770000007,-7.123643299999969],[120.6768608000001,-7.122281899999962],[120.68211990000009,-7.122901199999944],[120.69314980000001,-7.128335199999981],[120.69499830000007,-7.127695799999969],[120.6989033000001,-7.133707299999969],[120.71030690000009,-7.134010499999931],[120.71142140000006,-7.131269699999962],[120.7157271000001,-7.129586299999971],[120.72861030000001,-7.128701899999953],[120.73193120000008,-7.130670399999929],[120.73425810000003,-7.13436],[120.73537850000002,-7.132852799999966],[120.7416899000001,-7.131409799999972],[120.74246790000007,-7.129439399999967],[120.74543290000008,-7.128155599999957],[120.74755650000009,-7.130523099999948],[120.74894620000009,-7.129211199999929],[120.75885130000006,-7.130628899999977],[120.75427190000005,-7.131187599999976],[120.75385460000007,-7.133692599999961],[120.75681660000009,-7.135466],[120.7596933000001,-7.134432899999979],[120.7601079000001,-7.131373599999961],[120.761264,-7.133531299999959],[120.76181190000011,-7.132116199999928],[120.76334210000005,-7.133896499999935],[120.76379480000003,-7.131319799999972],[120.7672692000001,-7.135379],[120.7776745000001,-7.103951699999925],[120.78200740000011,-7.1006587],[120.78317370000002,-7.097631499999977],[120.78401270000006,-7.075387099999944],[120.787209,-7.063017599999966],[120.78617220000001,-7.059608],[120.78261150000003,-7.059732699999927],[120.777002,-7.065391799999929],[120.77624960000003,-7.068088299999943],[120.77816020000012,-7.068014199999936],[120.77715720000003,-7.069257099999959],[120.76462720000006,-7.077590399999963],[120.75290460000008,-7.079474699999935],[120.74035750000007,-7.076033299999949],[120.7307661000001,-7.070907499999976],[120.716036,-7.059481699999935],[120.70633340000006,-7.055165199999976],[120.7022161000001,-7.055275799999947],[120.6859988000001,-7.048754499999973],[120.68325180000011,-7.048819299999934],[120.67884340000012,-7.044880499999977],[120.67341640000006,-7.042941299999939],[120.66630140000007,-7.034107199999937],[120.65849550000007,-7.019088899999929],[120.65126020000002,-7.012729599999943],[120.64165390000005,-7.009807299999977],[120.63980740000011,-7.005504499999972],[120.63191890000007,-7.000369899999953]]],[[[120.521925,-6.986728],[120.5157,-6.990119099999959],[120.51812630000006,-6.991076],[120.52926520000005,-7.004030399999976],[120.52939050000009,-7.0000816],[120.521925,-6.986728]]],[[[120.7918714000001,-6.960501],[120.794283,-6.957884299999932],[120.78896040000006,-6.956337499999961],[120.78563150000002,-6.959600199999954],[120.7858996000001,-6.960697],[120.7918714000001,-6.960501]]],[[[120.44435160000012,-6.949222299999974],[120.44131210000012,-6.949413799999945],[120.43917060000001,-6.951507299999946],[120.43759520000003,-6.958898799999929],[120.43378360000008,-6.964850199999944],[120.43492780000008,-6.9696338],[120.43809540000007,-6.968404],[120.43722360000004,-6.970767499999965],[120.4502801000001,-6.966361499999948],[120.45557510000003,-6.961727699999926],[120.45438260000003,-6.959856399999978],[120.45555,-6.957775599999934],[120.45062980000012,-6.949748099999965],[120.44435160000012,-6.949222299999974]]],[[[121.00157580000007,-6.948037799999952],[121.00042440000004,-6.944863899999973],[121.00154570000007,-6.942592199999979],[121.00041190000002,-6.942485899999951],[121.00004080000008,-6.945584899999972],[121.00157580000007,-6.948037799999952]]],[[[121.17823030000011,-6.8474414],[121.178086,-6.845738199999971],[121.177355,-6.847633899999948],[121.17518210000003,-6.848047599999973],[121.17893970000011,-6.851241],[121.17823030000011,-6.8474414]]],[[[121.13846690000003,-6.7881231],[121.13854780000008,-6.782495199999971],[121.13640910000004,-6.783671899999945],[121.13713710000002,-6.787081199999932],[121.13510420000011,-6.799248],[121.13682680000011,-6.798366],[121.1388981,-6.791620099999932],[121.13846690000003,-6.7881231]]],[[[120.79097210000009,-6.778542899999934],[120.78794280000011,-6.779414199999962],[120.7866279000001,-6.786616099999947],[120.78343120000011,-6.788446699999952],[120.77956010000003,-6.799027899999942],[120.78229880000004,-6.812562599999978],[120.78623330000005,-6.815832499999942],[120.78669050000008,-6.817968699999938],[120.78913080000007,-6.8174465],[120.79182920000005,-6.820832799999948],[120.793608,-6.8623477],[120.79618210000001,-6.866388799999982],[120.79884350000009,-6.865306799999928],[120.80168550000008,-6.849769199999969],[120.80437660000007,-6.845738299999937],[120.80792290000011,-6.844309799999962],[120.81060490000004,-6.838389499999948],[120.81350840000005,-6.835905599999933],[120.81402390000005,-6.831816799999956],[120.81078510000009,-6.826107],[120.80897140000002,-6.818352899999979],[120.81011720000004,-6.812679],[120.80725550000011,-6.807217799999933],[120.80742310000005,-6.794616599999927],[120.79766810000001,-6.785830199999964],[120.79386090000003,-6.780213899999978],[120.79274220000002,-6.779625799999963],[120.79425910000009,-6.782534],[120.7912636000001,-6.781096499999933],[120.79245820000006,-6.779765199999929],[120.79097210000009,-6.778542899999934]]],[[[121.17128280000009,-6.759315499999957],[121.17147630000011,-6.756037299999946],[121.1707391000001,-6.759373799999935],[121.169981,-6.757580599999926],[121.167036,-6.758419099999969],[121.16577390000009,-6.767526699999962],[121.16741480000007,-6.7647368],[121.16498060000004,-6.769736499999965],[121.16565340000011,-6.772776499999964],[121.17128280000009,-6.759315499999957]]],[[[121.073414,-6.756786899999952],[121.07265330000007,-6.754579499999977],[121.07133570000008,-6.754847699999971],[121.0718587,-6.756627],[121.06992320000006,-6.757490799999971],[121.072438,-6.757141899999965],[121.06989320000002,-6.760737499999948],[121.0715679000001,-6.7609663],[121.07125540000004,-6.7621612],[121.0739827000001,-6.764308099999937],[121.073414,-6.756786899999952]]],[[[120.97013260000006,-6.750402399999928],[120.96641210000007,-6.753516099999956],[120.96746410000003,-6.764829599999928],[120.97203710000008,-6.751371699999936],[120.97013260000006,-6.750402399999928]]],[[[121.140424,-6.761798099999965],[121.140009,-6.753618499999959],[121.142185,-6.748682799999926],[121.14081580000004,-6.746856199999968],[121.13843480000003,-6.756772199999943],[121.13893790000009,-6.771085599999935],[121.14066080000009,-6.767969699999981],[121.140424,-6.761798099999965]]],[[[121.10342350000008,-6.733642299999929],[121.1052800000001,-6.731519499999933],[121.10292790000005,-6.7301344],[121.10193430000004,-6.733466899999939],[121.10342350000008,-6.733642299999929]]],[[[121.08460570000011,-6.722545799999978],[121.08124260000011,-6.723991199999944],[121.087911,-6.725445299999933],[121.08460570000011,-6.722545799999978]]],[[[121.08214520000001,-6.722739299999944],[121.07994760000008,-6.721037499999966],[121.07893880000006,-6.723246899999936],[121.08214520000001,-6.722739299999944]]],[[[121.21120560000008,-6.719752899999946],[121.2132769000001,-6.717184399999951],[121.21111870000004,-6.7162292],[121.21120560000008,-6.719752899999946]]],[[[121.15534690000004,-6.716346599999952],[121.15414120000003,-6.715329099999963],[121.15383810000003,-6.717680499999972],[121.15289310000003,-6.716892799999926],[121.1482304000001,-6.729336299999943],[121.141726,-6.737643399999968],[121.14019830000007,-6.743910899999946],[121.14120550000007,-6.745548399999961],[121.142442,-6.738495599999965],[121.14360880000004,-6.741146599999979],[121.14493950000008,-6.736184599999945],[121.14814730000012,-6.735118499999942],[121.15261180000005,-6.722119499999962],[121.1564509000001,-6.718311099999937],[121.15534690000004,-6.716346599999952]]],[[[120.2745718000001,-6.676945799999942],[120.27286130000005,-6.6758473],[120.27116650000005,-6.676977199999953],[120.2699659000001,-6.680963199999951],[120.26984040000002,-6.696695499999976],[120.27251610000008,-6.699716399999943],[120.2818142000001,-6.7012543],[120.27958580000006,-6.698413899999935],[120.27989180000009,-6.696844599999963],[120.27857360000007,-6.697307499999965],[120.28053520000003,-6.695306699999946],[120.28073920000008,-6.6924741],[120.28283420000002,-6.693337199999974],[120.28153170000007,-6.680610099999967],[120.2783382,-6.677612799999963],[120.2745718000001,-6.676945799999942]]],[[[120.43826160000003,-6.654294199999981],[120.43802720000008,-6.652470799999946],[120.43738210000004,-6.654306399999939],[120.43326460000003,-6.656241499999965],[120.43454270000007,-6.657104599999968],[120.43230430000006,-6.656856299999959],[120.43104420000009,-6.65753],[120.43283370000006,-6.657713699999931],[120.42968660000008,-6.658663799999943],[120.430265,-6.688945699999977],[120.42722020000008,-6.695132599999965],[120.43118120000008,-6.6988568],[120.42850710000005,-6.716854799999965],[120.4320169,-6.710855699999968],[120.43365760000006,-6.698866099999975],[120.43892030000006,-6.687218599999937],[120.43803910000008,-6.685275299999944],[120.43973430000005,-6.6839389],[120.44251440000005,-6.674438],[120.44178940000006,-6.662460799999963],[120.43892180000012,-6.657534299999952],[120.4374183000001,-6.658751],[120.4363102000001,-6.657897699999978],[120.43666830000006,-6.655155399999956],[120.43826160000003,-6.654294199999981]]],[[[120.42698330000007,-6.6477054],[120.42573230000005,-6.648381399999948],[120.4267642000001,-6.650492799999938],[120.42891610000004,-6.649069],[120.42698330000007,-6.6477054]]],[[[120.4347371,-6.644403699999941],[120.43359220000002,-6.644583499999953],[120.43549410000003,-6.644950899999969],[120.4347371,-6.644403699999941]]],[[[120.43629410000005,-6.580729099999928],[120.43336170000009,-6.581491199999959],[120.42769350000003,-6.586113699999942],[120.42476540000007,-6.597006699999952],[120.42316770000002,-6.598501799999951],[120.42110080000009,-6.597135399999956],[120.42048940000006,-6.598402599999929],[120.42123530000003,-6.600599599999953],[120.42661910000004,-6.602189099999975],[120.42787450000003,-6.606062099999974],[120.4256961000001,-6.6400472],[120.42666080000004,-6.641552499999932],[120.43249960000003,-6.639837799999952],[120.43095040000003,-6.640396499999952],[120.44003880000002,-6.644300499999929],[120.44255020000003,-6.640508],[120.44386880000002,-6.622811799999965],[120.44292870000004,-6.617679899999928],[120.43958880000002,-6.612175899999954],[120.4419679,-6.605210899999975],[120.43891130000009,-6.590494699999965],[120.43984750000004,-6.585346099999981],[120.43629410000005,-6.580729099999928]]],[[[121.02429430000007,-6.578669899999966],[121.02546870000003,-6.574860899999976],[121.02481110000008,-6.565564599999959],[121.02339390000009,-6.570762899999977],[121.02429430000007,-6.578669899999966]]],[[[121.09849860000008,-6.574116199999935],[121.10028780000005,-6.568856299999936],[121.09887170000002,-6.565320299999939],[121.09849860000008,-6.574116199999935]]],[[[121.0784933000001,-6.569274299999961],[121.08007690000011,-6.567012799999929],[121.07918830000006,-6.564843799999949],[121.0784933000001,-6.569274299999961]]],[[[121.037794,-6.535695899999951],[121.03552230000003,-6.536454699999979],[121.03877010000008,-6.536119199999973],[121.037794,-6.535695899999951]]],[[[120.9997191000001,-6.544612699999959],[120.99957340000003,-6.531314599999973],[120.99700530000007,-6.537963499999933],[120.99850270000002,-6.545521299999962],[120.99946110000008,-6.546100499999966],[120.9997191000001,-6.544612699999959]]],[[[121.00149640000006,-6.4940658],[120.99713940000004,-6.494845899999973],[120.97988060000012,-6.504927599999974],[120.9953637000001,-6.502765299999965],[121.00149640000006,-6.4940658]]],[[[121.13552570000002,-6.496498699999961],[121.13509560000011,-6.493329099999926],[121.13175390000004,-6.490381499999955],[121.13269690000004,-6.495421],[121.13552570000002,-6.496498699999961]]],[[[120.43380420000005,-6.464838699999973],[120.4307586000001,-6.466838099999961],[120.43008490000011,-6.4695318],[120.42453920000003,-6.4696614],[120.42570200000011,-6.472356199999979],[120.42499770000006,-6.4769294],[120.42162690000009,-6.483386699999926],[120.42167930000005,-6.488614499999926],[120.42796350000003,-6.489254399999936],[120.4323538000001,-6.4835717],[120.43081370000004,-6.470364899999936],[120.43420650000007,-6.466622099999938],[120.43380420000005,-6.464838699999973]]],[[[121.131149,-6.461851799999977],[121.12600860000009,-6.4536981],[121.13234630000011,-6.464010299999927],[121.131149,-6.461851799999977]]],[[[121.09626770000011,-6.412284799999952],[121.0980651000001,-6.409651699999927],[121.09645510000007,-6.405834],[121.09626770000011,-6.412284799999952]]],[[[120.451486,-6.341474799999958],[120.44997100000012,-6.34102],[120.45017490000009,-6.343583199999955],[120.4485472,-6.344281499999965],[120.44976080000004,-6.3467927],[120.44642610000005,-6.346967799999959],[120.4464991000001,-6.348074299999951],[120.4508436000001,-6.349058399999933],[120.45437490000006,-6.345124],[120.45654270000011,-6.345847499999934],[120.451486,-6.341474799999958]]],[[[120.45491660000005,-6.323390599999925],[120.4530248000001,-6.321749399999931],[120.44968810000012,-6.324093],[120.453639,-6.325159199999973],[120.4555233000001,-6.330006699999956],[120.45676880000008,-6.3304723],[120.46278460000008,-6.326903699999946],[120.46053460000007,-6.323869],[120.45491660000005,-6.323390599999925]]],[[[120.4601216000001,-6.307406699999945],[120.4556219000001,-6.307496599999979],[120.453633,-6.309877799999981],[120.45888160000004,-6.312075499999935],[120.46403540000006,-6.311177899999961],[120.46459670000002,-6.308135499999935],[120.4601216000001,-6.307406699999945]]],[[[120.45537070000012,-6.291253499999925],[120.45337590000008,-6.289228799999933],[120.45351920000007,-6.291224199999931],[120.45173080000006,-6.291387899999961],[120.45601020000004,-6.302240199999972],[120.46059260000004,-6.304715899999962],[120.46781460000011,-6.300945399999932],[120.46489530000008,-6.294087299999944],[120.46223220000002,-6.295874099999935],[120.45568930000002,-6.292622399999971],[120.45537070000012,-6.291253499999925]]],[[[120.4294291000001,-6.105829799999981],[120.42523310000001,-6.108548499999927],[120.42215970000007,-6.115962799999977],[120.41736650000007,-6.116358799999944],[120.41443360000005,-6.115010499999926],[120.4125117000001,-6.1200437],[120.4085146000001,-6.1226708],[120.40637630000003,-6.128013199999941],[120.40172380000001,-6.155685399999925],[120.40031120000003,-6.159887199999957],[120.39548550000006,-6.162654599999939],[120.394782,-6.172614],[120.3922113000001,-6.180292699999939],[120.39492580000001,-6.185908499999925],[120.39634200000012,-6.197743699999933],[120.39853610000011,-6.202504099999942],[120.401448,-6.200957899999935],[120.40299750000008,-6.2025595],[120.40728020000006,-6.202099799999928],[120.41083320000007,-6.207261399999936],[120.41460020000011,-6.2087325],[120.42032820000009,-6.206880699999942],[120.42687420000004,-6.196682299999964],[120.42344860000003,-6.188745],[120.42038030000003,-6.1869359],[120.41891490000012,-6.1817651],[120.42181120000009,-6.172524499999952],[120.41728890000002,-6.1580841],[120.41627460000007,-6.140297399999952],[120.42131230000007,-6.130439699999954],[120.4189798000001,-6.123376099999973],[120.4220888000001,-6.120230499999934],[120.42337180000004,-6.122218299999929],[120.4268389,-6.119982599999958],[120.429361,-6.112512099999947],[120.43227210000009,-6.110588899999925],[120.43244020000009,-6.1063271],[120.4294291000001,-6.105829799999981]]],[[[120.49461630000008,-5.767897099999971],[120.48370690000002,-5.767847099999926],[120.47613320000005,-5.772879299999943],[120.4685621000001,-5.782114399999955],[120.46615810000003,-5.788004599999965],[120.46411300000011,-5.788329899999951],[120.46201320000011,-5.791158399999972],[120.46106870000006,-5.794335399999966],[120.45928790000005,-5.8222246],[120.45720840000001,-5.826810399999943],[120.45580440000003,-5.843094699999938],[120.45323,-5.845986899999957],[120.45273080000004,-5.890481099999931],[120.44712040000002,-5.9205796],[120.44548580000003,-5.960509799999954],[120.45059890000005,-5.977055899999925],[120.44909060000009,-6.001701199999957],[120.4527491,-6.010817299999928],[120.44815710000012,-6.035316199999954],[120.4492560000001,-6.042036199999927],[120.45322670000007,-6.050144599999953],[120.453284,-6.054359699999964],[120.4505646,-6.058385],[120.45054530000004,-6.0612017],[120.455176,-6.076947],[120.46114670000009,-6.086072599999966],[120.4653267000001,-6.0890924],[120.4659564000001,-6.0939093],[120.463205,-6.108385099999964],[120.45701440000005,-6.116261299999962],[120.4561083000001,-6.124998199999936],[120.44791730000009,-6.140411499999971],[120.44870020000008,-6.142855299999951],[120.45018550000009,-6.140792799999929],[120.45082920000004,-6.142702699999973],[120.448764,-6.158249499999954],[120.44664840000007,-6.159374899999932],[120.44612,-6.1616408],[120.4478319000001,-6.1622545],[120.4464177000001,-6.164353399999925],[120.43274810000003,-6.166364499999929],[120.43294690000005,-6.168263499999966],[120.43033320000006,-6.168305299999929],[120.43265660000009,-6.176418599999977],[120.42968070000006,-6.176961499999948],[120.42646180000008,-6.179928299999972],[120.42783760000009,-6.181652],[120.4292855000001,-6.179905799999972],[120.4318932000001,-6.180108099999927],[120.429412,-6.181553299999962],[120.4284229000001,-6.185228299999949],[120.4387071000001,-6.192364699999928],[120.44067010000003,-6.192377099999931],[120.44309120000003,-6.195377899999926],[120.44163860000003,-6.197100099999943],[120.4450849000001,-6.198145499999953],[120.44434880000006,-6.200987099999963],[120.44646570000009,-6.205960299999958],[120.44537890000004,-6.208125699999925],[120.44738890000008,-6.211268299999972],[120.447941,-6.216182499999945],[120.44538110000008,-6.225811299999975],[120.44738160000009,-6.245622599999933],[120.446109,-6.248961],[120.44435110000006,-6.249801],[120.4446223000001,-6.252347899999961],[120.442377,-6.256499599999927],[120.44456350000007,-6.260125499999958],[120.44548330000009,-6.266370299999949],[120.448469,-6.268479699999943],[120.45435940000004,-6.265550299999973],[120.4593943000001,-6.267692799999963],[120.46843700000011,-6.2688811],[120.47321620000002,-6.271384599999976],[120.47529320000001,-6.276677099999972],[120.47906450000005,-6.277833599999951],[120.4810460000001,-6.281634],[120.4797066000001,-6.291236199999958],[120.47470740000006,-6.298626599999977],[120.47162290000006,-6.299476499999969],[120.4775244000001,-6.309126499999934],[120.47626960000002,-6.320683799999927],[120.47290180000005,-6.327720699999929],[120.471486,-6.340873899999963],[120.47241250000002,-6.357967699999961],[120.47416540000006,-6.362412199999937],[120.47355170000003,-6.366685599999926],[120.4748426000001,-6.368005699999969],[120.471886,-6.381408599999929],[120.470003,-6.385193399999935],[120.46442600000012,-6.389074],[120.461075,-6.384683699999925],[120.45397070000001,-6.381734799999947],[120.45580630000006,-6.3843986],[120.45524340000009,-6.385598199999947],[120.45781680000005,-6.388060699999926],[120.4568058000001,-6.390815499999974],[120.457966,-6.393371099999968],[120.4600018000001,-6.394153],[120.46078060000002,-6.399314899999979],[120.46482930000002,-6.397684799999979],[120.46901510000009,-6.398553799999945],[120.470139,-6.400986399999965],[120.46832140000004,-6.406441899999948],[120.46642440000005,-6.403161699999941],[120.460543,-6.402929699999959],[120.46014490000005,-6.408492099999933],[120.46850070000005,-6.430411599999957],[120.47370500000011,-6.437560499999961],[120.47555570000009,-6.457390399999952],[120.4775992000001,-6.462087199999928],[120.47806960000003,-6.472108099999957],[120.47974380000005,-6.476744],[120.48053780000009,-6.494019499999979],[120.483723,-6.498547699999961],[120.4857062000001,-6.496810799999935],[120.48632310000005,-6.490268199999946],[120.4907392,-6.481062599999973],[120.49340410000002,-6.466973399999972],[120.49606870000002,-6.462025899999958],[120.500761,-6.457400099999973],[120.502538,-6.448453],[120.509475,-6.445293099999958],[120.50988880000011,-6.443126899999925],[120.50299340000004,-6.435940099999925],[120.49794740000004,-6.422594799999956],[120.50057580000009,-6.421074099999942],[120.50141340000005,-6.416196699999944],[120.49715210000011,-6.410251],[120.49642080000001,-6.404861899999958],[120.49226970000007,-6.4023271],[120.49281050000002,-6.3997536],[120.496555,-6.397412499999973],[120.49493980000011,-6.392020799999955],[120.49652760000004,-6.391063499999973],[120.49922820000006,-6.394568199999981],[120.5046612000001,-6.393781899999965],[120.50639020000006,-6.3919556],[120.50513950000004,-6.389231099999961],[120.50706130000003,-6.389120199999979],[120.50764780000009,-6.3868545],[120.50555710000003,-6.385052099999939],[120.50542,-6.381127],[120.50964420000003,-6.378337199999976],[120.51319520000004,-6.372016799999926],[120.51325440000005,-6.367770899999925],[120.51041540000006,-6.366648899999973],[120.51040220000004,-6.365132899999935],[120.51346880000006,-6.3626903],[120.51914280000005,-6.365500899999972],[120.52093750000006,-6.364646099999959],[120.52138040000011,-6.357635499999958],[120.52025550000008,-6.356518799999947],[120.52276830000005,-6.353313299999968],[120.51755720000006,-6.350740299999927],[120.51724910000007,-6.348917699999959],[120.5203864,-6.347182199999963],[120.52617480000004,-6.347745099999941],[120.5271901000001,-6.346181899999976],[120.5247796000001,-6.344186399999955],[120.5247951,-6.341728899999964],[120.52190530000007,-6.340017499999931],[120.52149470000006,-6.336249799999962],[120.52440950000005,-6.334460899999954],[120.52733590000003,-6.335627399999964],[120.5285732000001,-6.331821099999956],[120.53811380000002,-6.327522],[120.53705090000005,-6.323928199999955],[120.53785220000009,-6.312649499999964],[120.53659920000007,-6.309699],[120.53775460000008,-6.306856799999935],[120.53532440000004,-6.298406899999975],[120.53791030000002,-6.297379599999942],[120.53915180000001,-6.291924299999948],[120.53728640000008,-6.288333699999953],[120.53853960000004,-6.285865899999976],[120.53731960000005,-6.283118699999932],[120.53907190000007,-6.279653199999927],[120.53813750000006,-6.275779899999975],[120.53606570000011,-6.274364399999968],[120.53746920000003,-6.271348199999977],[120.53488090000008,-6.269646699999953],[120.53410430000008,-6.264933],[120.53629970000009,-6.255291899999975],[120.53840490000005,-6.253390799999977],[120.53830570000002,-6.247582199999954],[120.53735390000008,-6.245836899999972],[120.53206850000004,-6.246589699999959],[120.52979760000005,-6.244926599999928],[120.52983370000004,-6.2411664],[120.53111330000002,-6.240480199999979],[120.52952020000009,-6.2378725],[120.53080790000001,-6.235174499999971],[120.5280007,-6.2338229],[120.52755020000006,-6.231939499999953],[120.5289931000001,-6.230059199999971],[120.52658880000001,-6.2286329],[120.52579490000005,-6.224168],[120.52400100000011,-6.222526],[120.52647530000002,-6.220707],[120.5298242,-6.221213899999952],[120.529607,-6.219732499999964],[120.52787660000001,-6.219950899999958],[120.526272,-6.217839699999956],[120.52760760000001,-6.2150049],[120.52957020000008,-6.215223],[120.526242,-6.207666499999959],[120.52979390000007,-6.204497299999957],[120.531621,-6.196649099999945],[120.52851680000003,-6.187449799999968],[120.531238,-6.183289199999933],[120.53161280000006,-6.179329099999961],[120.53342780000003,-6.177760699999965],[120.53274840000006,-6.174050799999975],[120.534792,-6.1739813],[120.53664540000011,-6.171453699999972],[120.53540320000002,-6.169336599999951],[120.53717110000002,-6.168253099999959],[120.53857960000005,-6.164225699999974],[120.53883660000008,-6.1569407],[120.54066870000008,-6.1550827],[120.54298370000004,-6.155162799999971],[120.54157550000002,-6.151467699999955],[120.54524780000008,-6.147540399999968],[120.5465349000001,-6.1370969],[120.54835430000003,-6.135423],[120.54807970000002,-6.128827599999966],[120.53949410000007,-6.124100099999964],[120.54071480000005,-6.122651499999961],[120.5508618,-6.122701799999959],[120.5502044000001,-6.118470099999968],[120.5458599000001,-6.1142079],[120.54390920000003,-6.108901199999934],[120.54721790000008,-6.105957099999955],[120.55269010000006,-6.108145699999966],[120.55482960000006,-6.1029418],[120.55546290000007,-6.093829199999959],[120.5524117000001,-6.090052299999968],[120.55390230000012,-6.088593599999967],[120.55611560000011,-6.089833099999964],[120.55726980000009,-6.081250799999964],[120.55628500000012,-6.078977799999961],[120.55163960000004,-6.076657199999943],[120.5515061000001,-6.074988499999961],[120.55650520000006,-6.075194599999975],[120.55469220000009,-6.073059699999931],[120.55738730000007,-6.070645099999979],[120.55509860000006,-6.063549199999954],[120.5584285000001,-6.063420699999938],[120.56212960000005,-6.066142799999966],[120.56222360000004,-6.063748099999941],[120.56425860000002,-6.062738799999977],[120.568147,-6.054906399999936],[120.56729540000003,-6.051094399999954],[120.56547410000007,-6.0498266],[120.56689130000007,-6.047851199999968],[120.56614980000006,-6.035463399999969],[120.56336350000004,-6.0239035],[120.56392380000011,-6.0213697],[120.55944340000008,-6.006749699999943],[120.55837550000001,-5.991931299999976],[120.5538659,-5.981998099999942],[120.55158110000002,-5.980544799999961],[120.55345020000004,-5.973192499999925],[120.55292150000002,-5.969887299999925],[120.54959210000004,-5.965246499999978],[120.54996170000004,-5.961661599999957],[120.54843610000012,-5.960820399999932],[120.5493464000001,-5.9589985],[120.54635150000001,-5.953286699999978],[120.54623150000009,-5.944916699999965],[120.54380880000008,-5.942215799999929],[120.54255910000006,-5.934072799999967],[120.54091210000001,-5.931654099999946],[120.5380616000001,-5.931227899999953],[120.53874150000001,-5.929701],[120.53451650000011,-5.919439],[120.53501580000011,-5.914041699999927],[120.53297640000005,-5.911760099999981],[120.53415790000008,-5.909661899999946],[120.53221230000008,-5.900733099999968],[120.53332980000005,-5.894838299999947],[120.53247190000002,-5.890024699999969],[120.53454460000012,-5.888334],[120.5339193000001,-5.8754119],[120.53034180000009,-5.864089499999977],[120.52739570000006,-5.859512299999949],[120.52611950000005,-5.852945099999943],[120.52719290000005,-5.846279699999968],[120.53016900000011,-5.844051299999933],[120.5247227000001,-5.834780499999965],[120.5188978000001,-5.837541399999964],[120.51752180000005,-5.836922399999935],[120.5181004000001,-5.834698699999933],[120.516903,-5.834896599999979],[120.51733880000006,-5.836615399999971],[120.51565650000009,-5.836027099999967],[120.51075280000009,-5.825976699999956],[120.5078559000001,-5.823269899999957],[120.5064258000001,-5.817790499999944],[120.50247910000007,-5.812953],[120.50119210000003,-5.809736099999952],[120.5020515000001,-5.800127599999939],[120.5059963000001,-5.793477099999961],[120.508573,-5.7925666],[120.50710220000008,-5.791335],[120.50570560000006,-5.783805299999926],[120.49907010000004,-5.777266699999927],[120.49695810000003,-5.769123899999954],[120.49461630000008,-5.767897099999971]]],[[[120.48984960000007,-5.739481599999976],[120.48888050000005,-5.738209599999948],[120.4831759000001,-5.739891299999954],[120.47896680000008,-5.738901],[120.47412520000012,-5.7447148],[120.47379500000011,-5.749662799999953],[120.48492740000006,-5.755421199999944],[120.49136250000004,-5.752925399999981],[120.4925535000001,-5.751452599999936],[120.49025990000007,-5.7465525],[120.48984960000007,-5.739481599999976]]]]},"properties":{"shapeName":"Kepulauan Selayar","shapeISO":"","shapeID":"22746128B3480225800285","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[106.74676170000004,-6.037141399999939],[106.747784,-6.036833299999955],[106.74752460000008,-6.034005199999967],[106.74563250000006,-6.035089099999936],[106.74676170000004,-6.037141399999939]]],[[[106.73549670000006,-6.034821499999964],[106.73663350000004,-6.033019099999933],[106.733452,-6.032489799999951],[106.73343680000005,-6.034070499999928],[106.73549670000006,-6.034821499999964]]],[[[106.78200160000006,-6.005426199999931],[106.782555,-6.003412399999945],[106.77953310000004,-6.002797499999929],[106.78200160000006,-6.005426199999931]]],[[[106.84752890000004,-5.985541499999954],[106.84785570000008,-5.983817599999952],[106.84636520000004,-5.983591],[106.84752890000004,-5.985541499999954]]],[[[106.70632560000007,-5.974554299999966],[106.70241480000004,-5.9761759],[106.70532110000005,-5.979217799999958],[106.70864440000008,-5.980296199999941],[106.71088450000008,-5.976349899999946],[106.70632560000007,-5.974554299999966]]],[[[106.69191990000007,-5.970799799999952],[106.68940040000007,-5.970641099999966],[106.68962160000007,-5.974921299999949],[106.69165210000006,-5.977355799999941],[106.69488010000003,-5.978086499999961],[106.69520150000005,-5.972015399999975],[106.69191990000007,-5.970799799999952]]],[[[106.84327250000007,-5.954603799999973],[106.84122080000009,-5.956653099999926],[106.84610910000004,-5.960522899999944],[106.84726950000004,-5.956524499999944],[106.84327250000007,-5.954603799999973]]],[[[106.522202,-5.959464099999934],[106.522962,-5.9542172],[106.52116790000008,-5.953462099999967],[106.51966840000006,-5.954925599999967],[106.51922560000008,-5.959563499999945],[106.522202,-5.959464099999934]]],[[[106.63273150000003,-5.945542299999943],[106.63403760000006,-5.943304599999976],[106.63308670000004,-5.942314599999975],[106.62756050000007,-5.942900299999962],[106.63273150000003,-5.945542299999943]]],[[[106.59266060000004,-5.934598499999936],[106.59140180000009,-5.934916099999953],[106.59340830000008,-5.938921099999959],[106.59735270000004,-5.937892499999975],[106.59266060000004,-5.934598499999936]]],[[[106.58452390000008,-5.925645699999961],[106.58147220000006,-5.925424],[106.58120510000003,-5.926814499999978],[106.58550050000008,-5.929856199999961],[106.58766720000006,-5.933854499999939],[106.58959740000006,-5.932398199999966],[106.58792660000006,-5.931564199999968],[106.58702640000007,-5.927104399999962],[106.58452390000008,-5.925645699999961]]],[[[106.60677250000003,-5.858601199999953],[106.60605230000004,-5.856640199999958],[106.60236230000004,-5.858299699999975],[106.60322860000008,-5.859579699999927],[106.60677250000003,-5.858601199999953]]],[[[106.60169520000005,-5.85747],[106.59991960000008,-5.855145599999958],[106.59968810000004,-5.856481099999939],[106.60169520000005,-5.85747]]],[[[106.62987530000004,-5.853813299999956],[106.61483580000004,-5.856485299999974],[106.61334810000005,-5.860489399999949],[106.60968280000009,-5.863598299999978],[106.62311250000005,-5.856561399999975],[106.63154160000005,-5.854498199999966],[106.62987530000004,-5.853813299999956]]],[[[106.62046330000004,-5.853242399999942],[106.62053720000006,-5.852175799999941],[106.619467,-5.854554599999972],[106.62046330000004,-5.853242399999942]]],[[[106.55192880000004,-5.819813699999941],[106.54830060000006,-5.819781499999976],[106.55456680000009,-5.823092],[106.55792860000008,-5.821740899999952],[106.55700660000008,-5.8201383],[106.55192880000004,-5.819813699999941]]],[[[106.52059960000008,-5.802145799999948],[106.51613640000005,-5.802230699999939],[106.52219410000004,-5.803898599999968],[106.53063990000004,-5.803896299999963],[106.52059960000008,-5.802145799999948]]],[[[106.49126290000004,-5.795820399999968],[106.48184820000006,-5.792868799999951],[106.47827,-5.793229799999949],[106.48411420000008,-5.795838599999968],[106.50102850000007,-5.799680899999942],[106.50138710000004,-5.800851499999965],[106.50176860000005,-5.799970799999926],[106.51154180000009,-5.802714099999946],[106.50514080000005,-5.800541599999974],[106.49689340000003,-5.795286799999928],[106.49126290000004,-5.795820399999968]]],[[[106.55971530000005,-5.771813499999951],[106.561264,-5.769330099999934],[106.55937960000006,-5.7701526],[106.55971530000005,-5.771813499999951]]],[[[106.58337890000007,-5.764828299999976],[106.583657,-5.7601979],[106.58223940000005,-5.7627662],[106.58337890000007,-5.764828299999976]]],[[[106.61241420000005,-5.749296499999957],[106.61590850000005,-5.744329299999947],[106.615588,-5.741711899999927],[106.61339080000005,-5.743766599999958],[106.61152920000006,-5.748566499999981],[106.61241420000005,-5.749296499999957]]],[[[106.60424660000007,-5.743158799999946],[106.60201880000005,-5.737170699999979],[106.598143,-5.737867799999947],[106.60106510000008,-5.738886299999933],[106.60424660000007,-5.743158799999946]]],[[[106.60107270000009,-5.735687199999973],[106.60345310000008,-5.734216199999935],[106.59872290000004,-5.735033499999929],[106.60107270000009,-5.735687199999973]]],[[[106.53774330000005,-5.699366899999973],[106.53396680000009,-5.700034499999958],[106.54003970000008,-5.701564599999926],[106.54372470000004,-5.700148899999931],[106.53774330000005,-5.699366899999973]]],[[[106.71121930000004,-5.696401699999967],[106.71317720000008,-5.694880099999978],[106.71292210000007,-5.693333699999926],[106.71121930000004,-5.696401699999967]]],[[[106.68096180000003,-5.686806199999978],[106.67921470000005,-5.687222499999962],[106.67827630000005,-5.690225099999964],[106.68096180000003,-5.686806199999978]]],[[[106.58259440000006,-5.668561299999965],[106.57997210000008,-5.668937899999946],[106.57889150000005,-5.671034499999962],[106.58501430000007,-5.669129399999974],[106.58259440000006,-5.668561299999965]]],[[[106.56638810000004,-5.663164199999926],[106.57054610000006,-5.660397099999955],[106.56884480000008,-5.660252699999944],[106.56545730000005,-5.662766599999941],[106.56638810000004,-5.663164199999926]]],[[[106.57272440000008,-5.652361799999937],[106.56750280000006,-5.653293699999949],[106.56435950000008,-5.656196699999953],[106.56713650000006,-5.656425599999977],[106.57272440000008,-5.652361799999937]]],[[[106.57818390000006,-5.652037199999938],[106.57623080000008,-5.651539399999933],[106.576193,-5.653273499999955],[106.58125090000004,-5.652709099999981],[106.57818390000006,-5.652037199999938]]],[[[106.56462290000007,-5.643996699999946],[106.567072,-5.643067299999927],[106.55903060000009,-5.644254599999954],[106.55748940000007,-5.646199199999955],[106.56462290000007,-5.643996699999946]]],[[[106.58271790000003,-5.633879],[106.57503510000004,-5.634424499999966],[106.57605750000005,-5.635999],[106.58566280000008,-5.634664399999963],[106.58271790000003,-5.633879]]],[[[106.54543920000003,-5.623296499999981],[106.54369210000004,-5.624176199999965],[106.54823920000007,-5.624086599999941],[106.54543920000003,-5.623296499999981]]],[[[106.58388330000008,-5.620503299999939],[106.58547780000004,-5.618673199999932],[106.58350180000008,-5.618153899999925],[106.58154870000004,-5.619683599999973],[106.58388330000008,-5.620503299999939]]],[[[106.55034840000008,-5.620150399999943],[106.55633840000007,-5.616738799999951],[106.55500140000004,-5.613897599999973],[106.55054650000005,-5.616696],[106.54922390000007,-5.619983899999966],[106.55034840000008,-5.620150399999943]]],[[[106.574627,-5.614162499999964],[106.58298120000006,-5.6097909],[106.57340630000004,-5.610586199999943],[106.57279590000007,-5.613532599999928],[106.574627,-5.614162499999964]]],[[[106.54351270000006,-5.605752],[106.54651870000004,-5.603628899999933],[106.54365290000004,-5.604309499999943],[106.54351270000006,-5.605752]]],[[[106.56150010000005,-5.592554099999973],[106.55693960000008,-5.595439],[106.56129620000007,-5.593945499999961],[106.56150010000005,-5.592554099999973]]],[[[106.56981530000007,-5.591127399999948],[106.56753680000008,-5.5912992],[106.567671,-5.593379],[106.56994760000003,-5.592489299999954],[106.56981530000007,-5.591127399999948]]],[[[106.54305580000005,-5.592322799999977],[106.54431460000006,-5.591735799999981],[106.54326180000004,-5.590715399999965],[106.54172060000008,-5.591809199999943],[106.54305580000005,-5.592322799999977]]],[[[106.552246,-5.5902851],[106.55587760000009,-5.588948],[106.55141440000006,-5.589463899999942],[106.552246,-5.5902851]]],[[[106.54583620000005,-5.586152399999946],[106.54431790000007,-5.586778],[106.54608790000009,-5.588080199999979],[106.54820130000007,-5.5870932],[106.54583620000005,-5.586152399999946]]],[[[106.59038570000007,-5.587054899999941],[106.59214930000007,-5.586021499999958],[106.59197850000004,-5.583635399999935],[106.58818520000005,-5.586011599999949],[106.59038570000007,-5.587054899999941]]],[[[106.59505730000006,-5.578655],[106.59287310000008,-5.5802618],[106.59612750000008,-5.580426],[106.59505730000006,-5.578655]]],[[[106.54874810000007,-5.582906299999934],[106.55093010000007,-5.576616299999955],[106.54716880000007,-5.580062899999973],[106.54874810000007,-5.582906299999934]]],[[[106.58050550000007,-5.576760899999954],[106.58260170000005,-5.575264299999958],[106.58082340000004,-5.573655499999973],[106.58050550000007,-5.576760899999954]]],[[[106.55702410000004,-5.570723499999929],[106.55551690000004,-5.571502799999962],[106.559625,-5.572225799999956],[106.55702410000004,-5.570723499999929]]],[[[106.54090190000005,-5.574224799999968],[106.54325180000006,-5.572176699999943],[106.54296180000006,-5.570387199999971],[106.54064250000005,-5.571257899999978],[106.53929970000007,-5.574513199999956],[106.54090190000005,-5.574224799999968]]],[[[106.55025110000008,-5.5704279],[106.55144130000008,-5.568617399999937],[106.54962550000005,-5.568942099999958],[106.55025110000008,-5.5704279]]],[[[106.52760990000007,-5.570259199999953],[106.52938750000004,-5.567540699999938],[106.52543550000007,-5.566895599999953],[106.52522190000008,-5.5683151],[106.52760990000007,-5.570259199999953]]],[[[106.52631350000007,-5.557450499999959],[106.52767550000004,-5.5562428],[106.52536130000004,-5.556895099999963],[106.52631350000007,-5.557450499999959]]],[[[106.53103850000008,-5.5559056],[106.53237140000005,-5.553942899999981],[106.53049270000008,-5.554913799999952],[106.53103850000008,-5.5559056]]],[[[106.54578770000006,-5.551638299999979],[106.54140770000004,-5.551619099999925],[106.54070020000006,-5.554382199999964],[106.54342670000005,-5.554569399999934],[106.54578770000006,-5.551638299999979]]],[[[106.53000820000005,-5.5487145],[106.52638170000006,-5.549817799999971],[106.52997850000008,-5.550029499999937],[106.53000820000005,-5.5487145]]],[[[106.519485,-5.550862699999925],[106.52083520000008,-5.548273499999937],[106.518852,-5.549206799999979],[106.51838110000006,-5.550567199999932],[106.519485,-5.550862699999925]]],[[[106.53605140000008,-5.5352727],[106.53639160000006,-5.534125599999925],[106.53463390000007,-5.534406],[106.53017060000008,-5.537342799999976],[106.53605140000008,-5.5352727]]],[[[106.54446190000004,-5.528069799999969],[106.54105460000005,-5.527917899999977],[106.53949280000006,-5.530977499999949],[106.54442970000008,-5.529427899999973],[106.54446190000004,-5.528069799999969]]],[[[106.52617280000004,-5.522309299999961],[106.52618040000004,-5.520506399999931],[106.524418,-5.520864499999959],[106.52425780000004,-5.522095699999966],[106.52617280000004,-5.522309299999961]]],[[[106.52744460000008,-5.511963199999968],[106.52579530000008,-5.513149799999951],[106.52885370000007,-5.5136726],[106.52744460000008,-5.511963199999968]]],[[[106.53813690000004,-5.510487199999943],[106.53382260000006,-5.511651699999959],[106.53225690000005,-5.515292],[106.53710740000008,-5.513451699999962],[106.53813690000004,-5.510487199999943]]],[[[106.53357510000006,-5.501038799999947],[106.53159530000005,-5.501014299999952],[106.53180590000005,-5.502479],[106.53461490000007,-5.503226599999948],[106.53511390000006,-5.501937699999928],[106.53357510000006,-5.501038799999947]]],[[[106.549077,-5.499039399999958],[106.54671820000004,-5.499331499999926],[106.54299560000004,-5.504609799999969],[106.54963870000006,-5.502125199999966],[106.55477430000008,-5.502271499999949],[106.557284,-5.500437799999929],[106.549077,-5.499039399999958]]],[[[106.58006960000006,-5.491179699999975],[106.57654530000008,-5.491684],[106.57621840000007,-5.494763899999953],[106.578636,-5.493767599999956],[106.58006960000006,-5.491179699999975]]],[[[106.39419790000005,-5.479588599999943],[106.39471670000006,-5.477394199999935],[106.39056630000005,-5.478796599999953],[106.39210750000007,-5.480897499999969],[106.39419790000005,-5.479588599999943]]],[[[106.52449180000008,-5.478705299999945],[106.52766560000003,-5.475084699999968],[106.52233270000005,-5.478271899999925],[106.52449180000008,-5.478705299999945]]],[[[106.43845390000007,-5.464522799999941],[106.43736290000004,-5.464853199999936],[106.438164,-5.466009099999951],[106.43845390000007,-5.464522799999941]]],[[[106.54539380000006,-5.463326299999949],[106.54597380000007,-5.462137399999961],[106.54469420000004,-5.462375699999939],[106.54539380000006,-5.463326299999949]]],[[[106.55676740000007,-5.460213799999963],[106.55348680000009,-5.460864199999946],[106.55347920000008,-5.464512899999932],[106.55699630000004,-5.463960799999938],[106.55845360000006,-5.460901899999953],[106.55676740000007,-5.460213799999963]]],[[[106.57269,-5.455819799999972],[106.57079030000006,-5.454662],[106.56819630000007,-5.455487399999981],[106.56635760000006,-5.456623699999966],[106.566144,-5.458651199999963],[106.56817340000003,-5.459173399999941],[106.57269,-5.455819799999972]]],[[[106.492027,-5.422460199999932],[106.49476380000004,-5.418369499999926],[106.49061370000004,-5.418276099999957],[106.49020710000008,-5.421103399999936],[106.492027,-5.422460199999932]]],[[[106.47093450000006,-5.415396299999941],[106.47288,-5.411773799999935],[106.47049970000006,-5.412253899999939],[106.47093450000006,-5.415396299999941]]],[[[106.46334530000007,-5.202155499999947],[106.45954150000006,-5.203457699999944],[106.45980650000007,-5.206466899999953],[106.46187760000004,-5.205726499999969],[106.46334530000007,-5.202155499999947]]]]},"properties":{"shapeName":"Kepulauan Seribu","shapeISO":"","shapeID":"22746128B65981863865572","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[125.92916880000007,-1.976804399999935],[125.92806760000008,-1.9775334],[125.92899580000005,-1.978346699999975],[125.92916880000007,-1.976804399999935]]],[[[125.91507220000005,-1.980473199999949],[125.91396960000009,-1.977900399999953],[125.9157765000001,-1.975521299999969],[125.91242230000012,-1.973956299999941],[125.90669080000009,-1.976539299999956],[125.90293560000009,-1.982870899999966],[125.8996082000001,-1.982803399999966],[125.8978499000001,-1.987221299999931],[125.8978499000001,-1.995076499999925],[125.8896926000001,-1.999709],[125.88007510000011,-2.019044899999926],[125.87730560000011,-2.021663299999943],[125.87544250000008,-2.021109399999943],[125.87186740000004,-2.025490199999979],[125.8579327000001,-2.060214299999927],[125.85751310000012,-2.082400499999949],[125.85591990000012,-2.091822],[125.85997140000006,-2.096463],[125.86297960000002,-2.1057395],[125.86787970000012,-2.110526299999947],[125.88068210000006,-2.138567],[125.88167340000007,-2.148622],[125.8807379000001,-2.152082699999937],[125.88529630000005,-2.164858599999945],[125.88726840000004,-2.175156299999969],[125.88298760000009,-2.1889838],[125.87955550000004,-2.193956399999934],[125.8796215000001,-2.210165599999925],[125.886852,-2.2237495],[125.89884840000002,-2.238145499999973],[125.90531690000012,-2.242871399999956],[125.91577630000006,-2.261509199999978],[125.92288810000002,-2.268509199999926],[125.93080490000011,-2.287576499999943],[125.94593780000002,-2.303818299999932],[125.95152860000007,-2.315227399999969],[125.9570126000001,-2.322257799999932],[125.95859930000006,-2.326038],[125.95886150000001,-2.335463899999979],[125.96161830000005,-2.343658399999924],[125.95949980000012,-2.362939],[125.96176920000005,-2.366018899999972],[125.96076030000006,-2.371564899999953],[125.96348530000012,-2.3866113],[125.96657080000011,-2.396310799999981],[125.97300280000002,-2.402875799999947],[125.97386160000008,-2.412704199999951],[125.9784155000001,-2.419566],[125.97850920000008,-2.421827499999949],[125.9904527000001,-2.439935899999966],[125.99593760000005,-2.444998899999973],[126.01699370000006,-2.459674599999971],[126.03899010000009,-2.4711702],[126.04246110000008,-2.475509099999954],[126.04953560000001,-2.477341099999933],[126.05809870000007,-2.470432899999935],[126.07055810000008,-2.450998599999934],[126.07347550000009,-2.441453099999933],[126.07241240000008,-2.420073799999955],[126.06431170000008,-2.405373599999962],[126.0624140000001,-2.399368899999956],[126.06071270000007,-2.398934399999973],[126.05917190000002,-2.392192399999942],[126.04885410000009,-2.374816],[126.0469412000001,-2.367966399999943],[126.0391833000001,-2.359500099999934],[126.0398722000001,-2.354313899999966],[126.03867850000006,-2.3475927],[126.0355062000001,-2.340370099999973],[126.03258790000007,-2.337727699999959],[126.03223670000011,-2.331889599999954],[126.0213635,-2.313202499999932],[126.01994430000002,-2.299000599999943],[126.00556370000004,-2.266723],[126.00001370000007,-2.260140799999931],[126.00002940000002,-2.254625099999942],[125.9817905000001,-2.226111299999957],[125.98108890000003,-2.221431699999926],[125.9769827,-2.214352199999951],[125.97344640000006,-2.2037656],[125.96732180000004,-2.193975399999943],[125.96255040000005,-2.181377899999973],[125.95771780000007,-2.158673],[125.95705070000008,-2.145381],[125.95943510000006,-2.134379599999932],[125.96040470000003,-2.120287599999926],[125.96977620000007,-2.094392399999947],[125.97746110000003,-2.078006099999925],[125.9780879000001,-2.0733364],[125.98337870000012,-2.0647536],[125.98347330000001,-2.059964599999944],[125.98131350000006,-2.058437399999946],[125.98120230000006,-2.055969499999946],[125.98808520000011,-2.053399899999931],[125.99284630000011,-2.045411799999954],[125.9930432000001,-2.044154],[125.99144880000006,-2.044122199999947],[125.99124340000003,-2.040085799999929],[125.99303050000003,-2.0299771],[125.99231480000003,-2.025992],[125.98794010000006,-2.021511399999952],[125.98889720000011,-2.020643299999961],[125.9871270000001,-2.015205599999945],[125.9851493000001,-2.015358099999958],[125.98351040000011,-2.012021],[125.98223140000005,-2.012851],[125.97669640000004,-2.008045899999956],[125.97458740000002,-2.004333],[125.9754196,-2.003256199999953],[125.973787,-2.002751199999977],[125.97246510000002,-2.004841599999963],[125.97043320000012,-2.004372699999976],[125.97099220000007,-2.0030231],[125.96910060000005,-1.999652099999935],[125.95941530000005,-1.995465899999942],[125.9561883,-1.987813399999936],[125.95293590000006,-1.987465],[125.95191100000011,-1.989952],[125.94693490000009,-1.986128399999927],[125.947332,-1.9837463],[125.94448610000006,-1.9851343],[125.94481010000004,-1.9831206],[125.9429139,-1.981891399999938],[125.9446703000001,-1.980509699999971],[125.94202140000004,-1.978673899999933],[125.93598660000009,-1.977022299999931],[125.935831,-1.978254599999957],[125.93835600000011,-1.978861299999949],[125.9371205000001,-1.981125899999938],[125.93383630000005,-1.9789693],[125.9294341000001,-1.9822662],[125.92601330000002,-1.979769699999963],[125.92583860000002,-1.977695599999947],[125.922633,-1.980497699999944],[125.92261470000005,-1.977390199999945],[125.920692,-1.976585599999964],[125.91507220000005,-1.980473199999949]]],[[[125.93278970000006,-1.971976599999948],[125.92888270000003,-1.972236899999928],[125.9265646,-1.9755749],[125.92955890000007,-1.975355],[125.93278970000006,-1.971976599999948]]],[[[125.78447840000001,-1.941010099999971],[125.782773,-1.941467],[125.784983,-1.943430199999966],[125.785835,-1.9417935],[125.78447840000001,-1.941010099999971]]],[[[125.77278690000003,-1.929831799999931],[125.77327430000003,-1.9282124],[125.7718804000001,-1.928977299999929],[125.77278690000003,-1.929831799999931]]],[[[125.80773940000006,-1.913844399999959],[125.80669870000008,-1.912465399999974],[125.80265710000003,-1.913835699999936],[125.79561150000006,-1.921255199999962],[125.79812630000004,-1.921819899999946],[125.79950890000009,-1.920245],[125.8020067000001,-1.9202797],[125.80601620000004,-1.917286899999965],[125.80773940000006,-1.913844399999959]]],[[[125.4184805000001,-1.8845199],[125.41204430000005,-1.890788599999951],[125.41112270000008,-1.892741599999965],[125.41250820000005,-1.8954],[125.41617810000002,-1.896169599999951],[125.4166901000001,-1.893669799999941],[125.41959770000005,-1.8918061],[125.42154770000002,-1.885601799999961],[125.4184805000001,-1.8845199]]],[[[125.38444360000005,-1.878670299999953],[125.38133710000011,-1.881265099999951],[125.37684180000008,-1.880972799999938],[125.37391800000012,-1.882580799999971],[125.37220030000003,-1.889671],[125.3872943,-1.891790799999967],[125.38864660000002,-1.887258899999949],[125.38674830000002,-1.8830473],[125.3882446,-1.880351399999938],[125.38711160000003,-1.878524099999936],[125.38444360000005,-1.878670299999953]]],[[[126.3457552000001,-1.822628],[126.34585850000008,-1.8214773],[126.34291970000004,-1.821286699999973],[126.3457552000001,-1.822628]]],[[[125.62359930000002,-1.805180199999938],[125.62049510000008,-1.806553899999926],[125.62152060000005,-1.811460299999965],[125.624586,-1.809538499999974],[125.62359930000002,-1.805180199999938]]],[[[125.7499878000001,-1.803549199999964],[125.75037270000007,-1.801146299999971],[125.74777210000002,-1.801085099999966],[125.74846750000006,-1.803356699999938],[125.7499878000001,-1.803549199999964]]],[[[126.45722400000011,-1.800687899999957],[126.44842540000002,-1.802635499999951],[126.4406484000001,-1.8013838],[126.43241520000004,-1.809145399999977],[126.42538940000009,-1.8122492],[126.4072331000001,-1.813965699999926],[126.40516800000012,-1.813070099999948],[126.39020070000004,-1.816385499999967],[126.38278160000004,-1.815387899999962],[126.37454250000008,-1.82185],[126.352006,-1.824596299999939],[126.35014820000004,-1.826292599999931],[126.35144060000005,-1.8279889],[126.35612560000004,-1.829362099999969],[126.37833890000002,-1.826292599999931],[126.376158,-1.830573699999945],[126.3831047000001,-1.830008299999974],[126.38229690000003,-1.836389599999961],[126.38463940000008,-1.837278099999935],[126.39507360000005,-1.836025599999971],[126.40159340000002,-1.831223199999954],[126.41292510000005,-1.8281257],[126.43291490000001,-1.830592299999978],[126.4389460000001,-1.8347811],[126.44083870000009,-1.8351974],[126.44138140000007,-1.834022499999946],[126.443953,-1.836334],[126.451881,-1.838086899999951],[126.46433450000006,-1.837668699999938],[126.47968280000009,-1.833052099999975],[126.48254380000003,-1.829746399999976],[126.48364490000006,-1.823760199999924],[126.48665740000001,-1.820345799999927],[126.46597090000012,-1.821035799999947],[126.4634870000001,-1.819097199999931],[126.47560340000007,-1.812857299999962],[126.47027220000007,-1.810979299999929],[126.46996930000012,-1.808919499999945],[126.47889840000005,-1.805790499999944],[126.46339730000011,-1.803853499999946],[126.4567181000001,-1.806587799999932],[126.44981470000005,-1.807231499999943],[126.45722400000011,-1.800687899999957]]],[[[125.79887680000002,-1.804431299999976],[125.799497,-1.801902499999926],[125.79770430000008,-1.800118199999929],[125.79618790000006,-1.801716099999965],[125.79679850000002,-1.804634199999953],[125.79887680000002,-1.804431299999976]]],[[[125.41765280000004,-1.797438199999931],[125.41841860000011,-1.792715099999953],[125.41637390000005,-1.7935644],[125.41765280000004,-1.797438199999931]]],[[[125.40494990000002,-1.7752944],[125.3933439000001,-1.7777503],[125.3911309,-1.7847962],[125.38591570000006,-1.779203],[125.37511590000008,-1.777284299999963],[125.36664610000003,-1.779066],[125.35623010000006,-1.795430099999976],[125.35992320000003,-1.799731399999928],[125.36165730000005,-1.796225],[125.37347130000012,-1.798582299999964],[125.37629460000005,-1.8021456],[125.37573310000005,-1.807138499999951],[125.37029410000002,-1.807005799999956],[125.36189250000007,-1.810493399999928],[125.36142230000007,-1.8087509],[125.35508830000003,-1.808111099999962],[125.35625750000008,-1.805900899999926],[125.35414690000005,-1.803927299999941],[125.34726680000006,-1.805818699999975],[125.346953,-1.810948199999928],[125.34170250000011,-1.812972799999955],[125.3376594,-1.822611499999937],[125.3313528000001,-1.826729299999954],[125.32826590000002,-1.831207799999959],[125.32953580000003,-1.837576799999965],[125.32950480000011,-1.857514899999956],[125.33283360000007,-1.8756366],[125.34050160000004,-1.881555599999956],[125.34508270000003,-1.888316399999951],[125.35791290000009,-1.886917799999935],[125.35981330000004,-1.884578799999929],[125.36281020000001,-1.877452],[125.36288330000002,-1.8726643],[125.3655513000001,-1.8686807],[125.36504990000003,-1.864579],[125.36745170000006,-1.862248299999976],[125.36558780000007,-1.853074899999967],[125.3679069000001,-1.850682],[125.36756180000009,-1.847860599999933],[125.36919210000008,-1.846171199999958],[125.3729624,-1.846494499999949],[125.37458260000005,-1.848283899999956],[125.37265090000005,-1.856506499999966],[125.3743730000001,-1.862842299999954],[125.37775810000005,-1.861992499999928],[125.3787751000001,-1.858416699999964],[125.380426,-1.863015799999971],[125.38347920000001,-1.864181099999939],[125.384082,-1.8659567],[125.38893420000011,-1.867252599999972],[125.39098820000004,-1.860201699999948],[125.39245060000007,-1.859317899999951],[125.39369990000012,-1.860346499999935],[125.3938035000001,-1.864865099999975],[125.39763320000009,-1.867353299999934],[125.39434590000008,-1.874049099999979],[125.39611290000005,-1.874804599999948],[125.39617280000004,-1.873065099999963],[125.39987070000006,-1.873971799999936],[125.399644,-1.871733799999959],[125.4014466000001,-1.871796599999925],[125.40131320000012,-1.868954599999938],[125.40293570000006,-1.867329799999936],[125.40284760000009,-1.869313399999953],[125.40626250000003,-1.8699007],[125.40551510000012,-1.874331],[125.40699810000001,-1.877901799999961],[125.41060030000006,-1.8777309],[125.4123456000001,-1.879907499999945],[125.41522020000002,-1.876113199999963],[125.42036770000004,-1.878190199999949],[125.42213620000007,-1.883014299999957],[125.42374790000008,-1.882171099999937],[125.42438550000008,-1.883567699999958],[125.43052950000003,-1.884118099999966],[125.43380480000008,-1.885937199999944],[125.43671030000007,-1.891638499999942],[125.4363777000001,-1.897685799999977],[125.43883060000007,-1.900702099999933],[125.43430870000009,-1.909355499999947],[125.43313770000009,-1.915758299999936],[125.4382647000001,-1.921128199999941],[125.44065160000002,-1.927377499999977],[125.4324782000001,-1.935447199999942],[125.42392060000009,-1.939217399999961],[125.42275860000007,-1.941694199999972],[125.41982480000001,-1.943147599999975],[125.41876160000004,-1.948364799999979],[125.4229610000001,-1.950629099999958],[125.430122,-1.948710799999958],[125.43356670000003,-1.949692899999945],[125.4374749000001,-1.946219399999961],[125.44680950000009,-1.947218699999951],[125.45935150000003,-1.943145299999969],[125.46738420000008,-1.942796399999963],[125.47442280000007,-1.9400222],[125.4854160000001,-1.938876099999959],[125.48789130000011,-1.935069799999951],[125.49401000000012,-1.934244899999953],[125.49873920000005,-1.936877699999968],[125.50249430000008,-1.941483099999971],[125.505914,-1.942300299999943],[125.50537050000003,-1.944560399999943],[125.51003130000004,-1.948727399999939],[125.51358020000009,-1.9473052],[125.51598600000011,-1.949114499999951],[125.52780540000003,-1.9484757],[125.53870760000007,-1.943114099999946],[125.55515380000008,-1.939549299999953],[125.56217350000009,-1.935504099999946],[125.57234310000001,-1.935541299999954],[125.5745558000001,-1.931066399999963],[125.57854450000002,-1.928924199999926],[125.59343330000002,-1.930342399999972],[125.604356,-1.928213899999946],[125.631197,-1.930708099999947],[125.63152420000006,-1.928424099999972],[125.63386420000006,-1.927107199999966],[125.63430530000005,-1.929191099999969],[125.63972970000009,-1.931016799999952],[125.670396,-1.931476299999929],[125.69061240000008,-1.928761699999939],[125.731982,-1.930045299999961],[125.74104510000006,-1.929351499999939],[125.74865120000004,-1.926654199999973],[125.75889390000009,-1.9291],[125.76272730000005,-1.927452099999925],[125.76524240000003,-1.924260499999946],[125.765121,-1.921303099999932],[125.76757540000006,-1.920626599999935],[125.77460040000005,-1.923349899999948],[125.77409740000007,-1.929126],[125.77804960000003,-1.926948099999947],[125.78181980000011,-1.928953499999977],[125.78442680000012,-1.9331448],[125.78536350000002,-1.932057399999962],[125.783837,-1.931034],[125.78393720000008,-1.928487299999972],[125.78618740000002,-1.924650799999938],[125.7847650000001,-1.922352499999931],[125.78721940000003,-1.916732499999966],[125.78965650000009,-1.914659599999936],[125.79408840000008,-1.912508799999955],[125.801946,-1.913783699999954],[125.80786950000004,-1.907660599999929],[125.81271570000001,-1.906367099999954],[125.81858580000005,-1.902287799999954],[125.83919480000009,-1.896296799999959],[125.8427071000001,-1.8938819],[125.84377570000004,-1.895755799999961],[125.85798390000002,-1.900752799999964],[125.86595120000004,-1.906819699999971],[125.87986720000004,-1.913746799999956],[125.90246580000007,-1.9346238],[125.9107484000001,-1.937858799999958],[125.9199503000001,-1.938752099999931],[125.92811360000007,-1.934921899999949],[125.95033350000006,-1.920065299999976],[125.95792440000002,-1.917866699999934],[125.96832210000002,-1.919181499999979],[125.984226,-1.916791],[125.99949070000002,-1.909166],[126.012048,-1.906551099999945],[126.02742980000005,-1.896257499999933],[126.03266930000007,-1.894623199999955],[126.03853330000004,-1.895350099999973],[126.04985620000002,-1.888076299999966],[126.058257,-1.884958899999958],[126.0661943,-1.8831148],[126.07991750000008,-1.882944099999975],[126.08916220000003,-1.878865699999949],[126.09793370000011,-1.878626599999961],[126.10053390000007,-1.881183],[126.13892610000005,-1.8914],[126.15124710000009,-1.888845099999969],[126.15644140000006,-1.885972799999934],[126.16069020000009,-1.8863793],[126.17717920000007,-1.878340599999945],[126.186801,-1.876263],[126.19639980000011,-1.869375899999966],[126.20611960000008,-1.867131399999948],[126.21890140000005,-1.870554299999981],[126.23001810000005,-1.877600599999937],[126.23033690000011,-1.879603],[126.23697570000002,-1.878582399999971],[126.24573160000011,-1.879491399999949],[126.25224790000004,-1.875692599999979],[126.27421440000012,-1.8576629],[126.28985280000006,-1.855736699999966],[126.29537960000005,-1.853683099999955],[126.30321760000004,-1.847733299999959],[126.31229510000003,-1.846984799999973],[126.320207,-1.8437467],[126.32327450000003,-1.8404343],[126.32596970000009,-1.8328406],[126.33743730000003,-1.819903],[126.33957750000002,-1.818606199999977],[126.34551880000004,-1.819865],[126.35276780000004,-1.815092899999968],[126.34821770000008,-1.815092899999968],[126.34676890000003,-1.812386699999934],[126.34037830000011,-1.811008699999945],[126.33730260000004,-1.8126151],[126.32776940000008,-1.811885899999936],[126.32774560000007,-1.815043],[126.32458980000001,-1.817368],[126.3160994000001,-1.8185677],[126.31240900000012,-1.815746699999977],[126.3158145000001,-1.819029299999954],[126.31485150000003,-1.819753799999944],[126.315491,-1.823428299999932],[126.30516820000003,-1.8285776],[126.29989290000003,-1.821808499999975],[126.2967407000001,-1.822521199999926],[126.29340690000004,-1.826453499999957],[126.28938420000009,-1.826667499999928],[126.28426780000007,-1.820104899999933],[126.27517190000003,-1.821367299999963],[126.27295730000003,-1.818548399999941],[126.26686260000008,-1.815723799999944],[126.25495510000007,-1.818807599999957],[126.24535050000009,-1.816923599999939],[126.22316130000002,-1.8180781],[126.20806070000003,-1.815393799999924],[126.205047,-1.813475599999947],[126.2040813000001,-1.808921099999964],[126.20515180000007,-1.806826499999943],[126.20082530000002,-1.808256299999925],[126.19879690000005,-1.805371899999955],[126.19665550000002,-1.804840799999965],[126.18344720000005,-1.808559899999977],[126.17938440000012,-1.806684099999927],[126.17899080000007,-1.809004699999946],[126.17629880000004,-1.809638199999938],[126.16160680000007,-1.808459499999969],[126.1599347,-1.806568199999958],[126.14605590000008,-1.810469699999942],[126.12771590000011,-1.811179399999958],[126.0888361000001,-1.808611199999973],[126.05731120000007,-1.801826499999947],[126.0511881000001,-1.8024683],[126.00274150000007,-1.797906299999966],[125.99508340000011,-1.799120499999958],[125.95732170000008,-1.795634],[125.95203130000004,-1.797810899999945],[125.9127056000001,-1.7931589],[125.90617980000002,-1.797341],[125.8849947000001,-1.794691899999975],[125.88297640000008,-1.801216099999976],[125.8776487,-1.800429799999961],[125.8774294000001,-1.804705899999931],[125.87538280000001,-1.806496699999968],[125.86383380000007,-1.8060947],[125.85842480000008,-1.802622699999972],[125.85371020000002,-1.802549599999963],[125.85184330000004,-1.80378],[125.85128610000004,-1.806861799999979],[125.8498727000001,-1.806862199999955],[125.847022,-1.804157699999962],[125.8439155000001,-1.8045597],[125.84227080000005,-1.802330299999937],[125.83594810000011,-1.804303899999979],[125.8323299000001,-1.802366799999959],[125.82580550000011,-1.804570899999931],[125.82288410000001,-1.810054099999945],[125.81785720000005,-1.809676299999978],[125.8154085000001,-1.811174799999947],[125.80100880000009,-1.809347399999979],[125.79658660000007,-1.806387099999938],[125.79395520000003,-1.806387099999938],[125.79220280000004,-1.808294499999931],[125.78980410000008,-1.805475899999976],[125.78389430000004,-1.805003899999974],[125.78600210000002,-1.799480699999947],[125.780192,-1.798049499999934],[125.77947230000007,-1.800309099999936],[125.7813728000001,-1.807472399999938],[125.77879550000011,-1.809594199999935],[125.77684090000002,-1.808203399999968],[125.77615870000011,-1.805133399999931],[125.77485850000005,-1.805383899999924],[125.77523280000003,-1.809860199999946],[125.772617,-1.812569599999961],[125.77080360000002,-1.812456499999939],[125.7693733000001,-1.8098649],[125.7706088000001,-1.808448899999973],[125.77011620000007,-1.806302899999935],[125.76781310000001,-1.807670299999927],[125.767484,-1.805776399999957],[125.76608610000005,-1.805570799999941],[125.76239240000007,-1.808253399999955],[125.7570813000001,-1.806473899999958],[125.75510270000007,-1.807152],[125.75405160000003,-1.814559599999939],[125.74952730000007,-1.815321099999949],[125.74869080000008,-1.806547099999932],[125.7455126000001,-1.805969799999957],[125.7431501000001,-1.807504699999924],[125.74143790000005,-1.811964799999942],[125.73005720000003,-1.815558799999963],[125.73155080000004,-1.824105399999951],[125.72399340000004,-1.828708899999924],[125.72215380000011,-1.827444399999933],[125.72347950000005,-1.822947699999929],[125.7191729000001,-1.822572199999968],[125.71712140000011,-1.816846199999929],[125.7148969000001,-1.816096499999958],[125.70452050000006,-1.819505699999979],[125.70183530000008,-1.825450299999943],[125.69727880000005,-1.829931899999963],[125.69242710000003,-1.829027399999973],[125.6907208,-1.823435599999925],[125.68874720000008,-1.822325499999977],[125.67701160000001,-1.826073299999962],[125.65987450000011,-1.824459],[125.65211210000007,-1.821982499999933],[125.65037330000007,-1.822968599999967],[125.647842,-1.821337099999937],[125.64164480000011,-1.82902],[125.63887920000002,-1.830004199999962],[125.62889840000003,-1.828267299999936],[125.62925270000005,-1.8227161],[125.62503830000003,-1.818049499999972],[125.62281810000002,-1.812190499999929],[125.61893260000011,-1.814061199999969],[125.61666800000012,-1.819982399999958],[125.61282,-1.820802899999933],[125.60415150000006,-1.819282899999962],[125.60034830000006,-1.816466499999933],[125.60237670000004,-1.811849],[125.5995534000001,-1.810862199999974],[125.59840210000004,-1.807847],[125.59438570000009,-1.810712899999942],[125.593162,-1.813959599999976],[125.588178,-1.811629699999969],[125.58911000000012,-1.804722199999958],[125.58714220000002,-1.808210499999973],[125.58502580000004,-1.808888599999932],[125.56707190000009,-1.804585199999963],[125.56287810000003,-1.802200499999969],[125.55476460000011,-1.803872499999954],[125.55037890000006,-1.801487799999961],[125.54332560000012,-1.810048199999926],[125.54193550000002,-1.810050199999978],[125.54071650000003,-1.808111599999961],[125.5421831000001,-1.803872499999954],[125.53944050000007,-1.803695],[125.544047,-1.793292],[125.54007250000006,-1.786028199999976],[125.53338430000008,-1.7892901],[125.53138920000004,-1.793785499999956],[125.52606570000012,-1.797458399999925],[125.52651360000004,-1.811328199999934],[125.52453070000001,-1.809875399999953],[125.52115920000006,-1.801487799999961],[125.51789740000004,-1.800583199999949],[125.51820490000011,-1.8033924],[125.51521680000008,-1.8062058],[125.5171140000001,-1.810605499999951],[125.51674610000009,-1.817605199999946],[125.51477260000001,-1.817358499999955],[125.51348430000007,-1.811328199999934],[125.50945490000004,-1.808093699999972],[125.5061965000001,-1.813787499999933],[125.50347950000003,-1.812698699999942],[125.5019400000001,-1.821305799999948],[125.49997090000011,-1.821470099999942],[125.49675050000008,-1.816882799999973],[125.49851810000007,-1.811711899999978],[125.49761360000002,-1.806695799999943],[125.4891712000001,-1.819523899999979],[125.48730720000003,-1.818509699999936],[125.48619810000002,-1.814289099999939],[125.48786490000009,-1.809585399999946],[125.48437430000001,-1.809217599999954],[125.48272970000005,-1.806531299999961],[125.483689,-1.802693899999952],[125.4786729000001,-1.801350699999944],[125.47559920000003,-1.803302],[125.47359770000003,-1.7996455],[125.480699,-1.795555299999933],[125.48292160000005,-1.7906058],[125.48826660000009,-1.784822199999951],[125.48815700000011,-1.782574499999953],[125.48050940000007,-1.778353299999935],[125.47485040000004,-1.781438099999946],[125.470532,-1.778627399999948],[125.4654336000001,-1.779696399999978],[125.4573749000001,-1.777558399999975],[125.45409540000003,-1.781570899999963],[125.45433240000011,-1.784657699999968],[125.45226070000001,-1.789466599999969],[125.45315370000003,-1.792771199999947],[125.45014660000004,-1.799825099999964],[125.44561580000004,-1.800692899999945],[125.44331330000011,-1.797184299999969],[125.43389040000011,-1.8050715],[125.42999180000004,-1.805599399999949],[125.42849160000003,-1.809477399999935],[125.42634790000011,-1.809843699999931],[125.42052980000005,-1.806863799999974],[125.41971290000004,-1.799322399999937],[125.412847,-1.797057199999927],[125.411709,-1.786357199999941],[125.4093951000001,-1.782069399999955],[125.41002360000005,-1.777729499999964],[125.40494990000002,-1.7752944]]],[[[125.42208510000012,-1.767000099999962],[125.416893,-1.769846799999925],[125.41976660000012,-1.774880799999949],[125.42547900000011,-1.769583499999953],[125.42436240000006,-1.767403599999966],[125.42208510000012,-1.767000099999962]]],[[[125.54130430000009,-1.755635499999926],[125.53806840000004,-1.755563499999937],[125.5312173000001,-1.760930099999939],[125.52784840000004,-1.769549799999936],[125.525876,-1.761746399999936],[125.5238432000001,-1.760088799999949],[125.52185660000009,-1.7604084],[125.51690770000005,-1.765347599999927],[125.51532350000002,-1.770241399999975],[125.50823610000009,-1.773785299999929],[125.50775340000007,-1.778199299999926],[125.5090024000001,-1.779410499999926],[125.51414820000002,-1.779370399999948],[125.5185636000001,-1.776382],[125.5224296,-1.776595099999952],[125.5261564000001,-1.774310599999978],[125.52660890000004,-1.771655399999929],[125.53129160000003,-1.774733199999957],[125.53372020000006,-1.771998799999949],[125.53567140000007,-1.7767212],[125.53797250000002,-1.776062499999966],[125.5358063000001,-1.780107299999941],[125.5384441000001,-1.780990599999939],[125.54561060000003,-1.780914899999971],[125.55146660000003,-1.778344699999934],[125.55288710000002,-1.776933499999927],[125.55229760000009,-1.774640399999953],[125.54698030000009,-1.772030199999961],[125.54607510000005,-1.769114899999977],[125.54299350000008,-1.766379399999948],[125.54353240000012,-1.757216299999925],[125.54130430000009,-1.755635499999926]]],[[[125.69518860000005,-1.762156399999981],[125.70134070000006,-1.756855799999926],[125.70060850000004,-1.754855699999951],[125.69487620000007,-1.751533],[125.6886766,-1.752540099999976],[125.68773370000008,-1.755332899999928],[125.69518860000005,-1.762156399999981]]]]},"properties":{"shapeName":"Kepulauan Sula","shapeISO":"","shapeID":"22746128B12990938075001","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[126.780641,3.840860300000031],[126.767329,3.851502800000048],[126.76123630000006,3.854678700000022],[126.75253440000006,3.852678500000025],[126.74390810000011,3.842930400000057],[126.74277840000002,3.828063500000042],[126.74491150000006,3.811707600000034],[126.75177180000003,3.799481900000046],[126.75400470000011,3.786384700000042],[126.7650384000001,3.77776840000007],[126.76551670000003,3.774508800000035],[126.76389370000004,3.772857200000033],[126.76740150000012,3.769522100000074],[126.768159,3.764258400000074],[126.77177170000004,3.760427600000071],[126.77624930000002,3.760253700000021],[126.78550640000003,3.746008700000061],[126.79232260000003,3.742224300000032],[126.80305310000006,3.74293380000006],[126.8101746000001,3.740120600000068],[126.8158605000001,3.73590020000006],[126.82082330000003,3.728272900000036],[126.82295340000007,3.72765],[126.83088570000007,3.735584700000061],[126.83516370000007,3.742471200000068],[126.83998120000001,3.740109800000027],[126.84274890000006,3.741037],[126.84582350000005,3.748185800000044],[126.851462,3.752885400000025],[126.85066240000003,3.757874100000038],[126.84062790000007,3.773973800000022],[126.83922110000003,3.784228700000028],[126.83794590000002,3.78767670000002],[126.83589970000003,3.788941900000054],[126.83494340000004,3.793940100000043],[126.83199790000003,3.7969],[126.82860220000009,3.797760800000049],[126.82541060000005,3.805661800000053],[126.81849530000011,3.808563900000024],[126.81636360000005,3.81480010000007],[126.81449420000001,3.815278100000057],[126.809793,3.82474940000003],[126.80594990000009,3.827783100000033],[126.803356,3.833954700000049],[126.7999592000001,3.835551700000053],[126.7936476000001,3.835642700000051],[126.7891264000001,3.839380500000061],[126.780641,3.840860300000031]]],[[[126.71087680000005,3.946381600000052],[126.7088705000001,3.943601600000022],[126.71475310000005,3.938684800000033],[126.71801110000001,3.944470100000046],[126.7147192000001,3.946353600000066],[126.71087680000005,3.946381600000052]]],[[[126.70907350000004,3.952484200000072],[126.71300070000007,3.953182900000058],[126.71335270000009,3.955277700000067],[126.71174770000005,3.956105500000035],[126.707695,3.954414400000076],[126.70907350000004,3.952484200000072]]],[[[126.61796970000012,4.04346780000003],[126.61211890000004,4.043476600000076],[126.60814460000006,4.040224],[126.616298,4.03014840000003],[126.6162882000001,4.023681300000021],[126.6176362000001,4.020774800000027],[126.61384220000002,4.01587180000007],[126.61341990000005,4.013351800000066],[126.61532120000004,4.011541500000021],[126.61208140000008,4.001423700000032],[126.6150507000001,3.998100800000032],[126.62030470000002,3.996961100000021],[126.62131030000012,3.992298700000049],[126.61346230000004,3.983344200000033],[126.61847640000008,3.983456],[126.62049850000005,3.985889800000052],[126.62663040000007,3.984943900000076],[126.62866550000001,3.983268700000053],[126.63150370000005,3.978698500000064],[126.63360850000004,3.970573100000024],[126.63683760000004,3.969456800000046],[126.63495730000011,3.95818950000006],[126.63773390000006,3.950812400000075],[126.64545750000002,3.945516600000076],[126.64872140000011,3.936534400000028],[126.65061260000004,3.935860600000069],[126.65508290000002,3.939172],[126.65845680000007,3.939545],[126.66124610000008,3.936785800000052],[126.66058210000006,3.933487100000036],[126.66348930000004,3.934010100000023],[126.66827090000004,3.930565200000046],[126.66738640000005,3.928619600000047],[126.66902610000011,3.925652700000057],[126.66855340000006,3.919562100000064],[126.66990750000002,3.91656050000006],[126.66433390000009,3.907496300000048],[126.66574270000001,3.893815600000039],[126.66175250000003,3.883501300000034],[126.66327960000001,3.87566460000005],[126.6667728000001,3.873463300000026],[126.66739040000004,3.870591500000046],[126.66937240000004,3.869141300000024],[126.67005040000004,3.862180900000055],[126.67286540000009,3.861764500000049],[126.67650020000008,3.854835600000058],[126.67504190000011,3.836005100000023],[126.68481970000005,3.82052230000005],[126.68386950000001,3.816921],[126.68112440000004,3.814601200000027],[126.6827257000001,3.812526600000069],[126.6931833000001,3.809733100000074],[126.7009756000001,3.811655900000062],[126.70528530000001,3.814601200000027],[126.70609330000002,3.819579200000021],[126.69303980000007,3.84426940000003],[126.69122070000003,3.852908900000045],[126.68836770000007,3.858631100000025],[126.68992030000004,3.862372600000072],[126.68589330000009,3.863306500000022],[126.68529,3.869407300000034],[126.68724680000003,3.87155290000004],[126.6929831000001,3.86824740000003],[126.69754510000007,3.872718600000042],[126.70060010000009,3.872983600000055],[126.70660250000003,3.881548100000032],[126.71644260000005,3.887422900000047],[126.7195895000001,3.892288700000051],[126.71851680000009,3.894187800000054],[126.72112990000005,3.894856700000048],[126.72260690000007,3.898567300000025],[126.72147020000011,3.903167500000052],[126.72290940000005,3.909471200000041],[126.72187240000005,3.914160200000026],[126.7197112,3.91985870000002],[126.71485990000008,3.926136100000065],[126.6993175,3.938542400000074],[126.69022610000002,3.941006300000026],[126.67071450000003,3.956389],[126.6646740000001,3.959037400000057],[126.65659070000004,3.968751500000053],[126.65322780000008,3.970081700000037],[126.64699650000011,3.976857400000029],[126.64197430000002,3.990408500000058],[126.64362430000006,4.006686700000046],[126.64217410000003,4.019837600000074],[126.63672660000009,4.028104],[126.6220277000001,4.037346900000045],[126.62139260000004,4.041362700000036],[126.61796970000012,4.04346780000003]]],[[[126.74397580000004,4.545748800000069],[126.74106870000003,4.545418200000029],[126.73724510000011,4.542627400000072],[126.73141150000004,4.534634200000028],[126.7296927000001,4.530152200000032],[126.724812,4.524083800000028],[126.7202797000001,4.510018500000058],[126.72169630000008,4.50223230000006],[126.72134760000006,4.493794],[126.72911180000006,4.487090500000022],[126.72849340000005,4.484162600000047],[126.72499550000009,4.483570100000065],[126.72601430000009,4.481919900000037],[126.72432680000009,4.478874700000063],[126.7218951000001,4.477847900000029],[126.72180930000002,4.475594800000067],[126.7223815000001,4.474282900000048],[126.72546100000011,4.475523400000043],[126.72991470000011,4.474273100000062],[126.73383700000011,4.465750600000035],[126.73402070000009,4.461749900000029],[126.727834,4.454372100000057],[126.72292460000006,4.451592700000049],[126.72018880000007,4.455042200000037],[126.71761630000003,4.455981200000053],[126.71450720000007,4.44991310000006],[126.71846810000011,4.440806],[126.71646810000004,4.43434730000007],[126.71005610000009,4.427418400000022],[126.707892,4.427438900000027],[126.7077230000001,4.429090100000053],[126.70337240000003,4.42866870000006],[126.70616760000007,4.422545900000046],[126.70178820000001,4.42121110000005],[126.6991445000001,4.412386],[126.70291280000004,4.405474300000037],[126.70049030000007,4.401429300000075],[126.69596810000007,4.401626600000043],[126.69226450000008,4.394429],[126.6930182000001,4.392724600000065],[126.697989,4.392760500000065],[126.69949830000007,4.388000700000021],[126.699285,4.382123400000069],[126.69500940000012,4.376176],[126.68705970000008,4.37457930000005],[126.68533450000007,4.367146200000036],[126.68971460000012,4.358816300000058],[126.68301770000005,4.350827300000049],[126.68015560000003,4.334472600000026],[126.68139740000004,4.331236],[126.68740900000012,4.327951800000051],[126.6910454,4.32710940000004],[126.69363970000006,4.329680800000062],[126.69534710000005,4.327863100000059],[126.69581270000003,4.329304],[126.69788180000012,4.327951],[126.69923440000002,4.329303200000027],[126.7080016000001,4.322223],[126.70720530000006,4.319289400000059],[126.708957,4.316806500000041],[126.70649580000008,4.313237400000048],[126.70705050000004,4.307887400000027],[126.71365820000005,4.306756800000073],[126.7155471000001,4.302558],[126.713263,4.288959800000043],[126.7108459000001,4.283098],[126.71117820000006,4.277615200000071],[126.7090495000001,4.272893400000044],[126.71228680000002,4.273137200000065],[126.71537220000005,4.270335100000068],[126.71721260000004,4.26811820000006],[126.717124,4.264305300000046],[126.72674710000001,4.267985300000021],[126.7326567,4.26723110000006],[126.74110470000005,4.261578300000053],[126.7470598000001,4.26306180000006],[126.75163070000008,4.256249400000058],[126.7515419,4.254387200000053],[126.75773120000008,4.247816500000056],[126.76065810000011,4.247328700000025],[126.77361260000009,4.250391500000035],[126.787384,4.272065700000041],[126.8001660000001,4.286340500000051],[126.80631970000002,4.277429700000027],[126.78255320000005,4.251634900000056],[126.7811541000001,4.247243400000059],[126.78977730000008,4.240787100000034],[126.79259310000009,4.235673200000065],[126.79189720000011,4.229193],[126.78893750000009,4.229577],[126.78979650000008,4.228258100000062],[126.78804060000004,4.226363500000048],[126.79084120000005,4.213908300000071],[126.7894037000001,4.210162500000024],[126.78456920000008,4.205902200000025],[126.77117980000003,4.196754400000032],[126.76978510000004,4.19229660000002],[126.76468220000004,4.188063600000021],[126.76359580000008,4.184339400000056],[126.76002180000012,4.181628800000055],[126.75761340000008,4.174210200000061],[126.7548872000001,4.171743],[126.756211,4.169645600000024],[126.74895660000004,4.153898100000049],[126.7482275000001,4.147049200000026],[126.75031190000004,4.143846900000028],[126.74974910000003,4.14167290000006],[126.74674450000009,4.138185300000032],[126.74271240000007,4.137059],[126.74072430000001,4.131888300000071],[126.73536500000012,4.126900100000057],[126.7359858000001,4.124611600000037],[126.7324278000001,4.116374300000075],[126.7343059000001,4.114557800000057],[126.73298450000004,4.109228900000062],[126.72795170000006,4.104446200000041],[126.72081390000005,4.101292100000023],[126.72239810000008,4.096050600000069],[126.72167910000007,4.094386600000064],[126.72000360000004,4.092645300000072],[126.7170837000001,4.092998800000032],[126.715405,4.091739500000074],[126.71198590000006,4.084724400000027],[126.7101818000001,4.084048],[126.70515720000003,4.086270600000034],[126.69815340000002,4.082632400000023],[126.69732940000006,4.07772650000004],[126.69375180000009,4.075330800000074],[126.68968770000004,4.074376600000051],[126.68736980000006,4.076264300000048],[126.68572010000003,4.075064],[126.6815534000001,4.069134400000053],[126.68115890000001,4.063203600000065],[126.66749570000002,4.04490370000002],[126.66609340000002,4.039995100000056],[126.66716620000011,4.034257100000048],[126.66530910000006,4.029161],[126.66597400000012,4.025294300000041],[126.66967220000004,4.019024500000057],[126.668482,4.014322100000072],[126.67014,4.005390100000056],[126.6713377000001,4.002213300000051],[126.67526340000006,3.999303200000043],[126.68022840000003,3.992580100000055],[126.68081140000004,3.993534900000043],[126.68529930000011,3.992783800000041],[126.69557280000004,4.002694100000042],[126.70214090000002,4.004875100000049],[126.71095690000004,4.003944900000022],[126.71442790000003,4.002199],[126.71497550000004,4.000104900000053],[126.74136850000002,3.993220200000053],[126.7617130000001,3.994577],[126.76606450000008,3.996922600000062],[126.76670710000008,4.000217300000031],[126.7715174000001,4.001364100000046],[126.77278280000007,4.007473400000038],[126.774569,4.009150300000044],[126.77996460000008,4.006508200000042],[126.78321290000008,4.010133800000062],[126.78489330000002,4.017327900000055],[126.78888470000004,4.01602360000004],[126.791354,4.017126],[126.79516940000008,4.023672500000032],[126.79335230000004,4.028113400000052],[126.79462790000002,4.031582900000046],[126.80105770000011,4.033244300000035],[126.80633040000009,4.029906],[126.80870650000008,4.032157400000074],[126.807122,4.038981700000022],[126.80271130000006,4.040984700000024],[126.80171730000006,4.043236200000024],[126.80160780000006,4.055160400000034],[126.80485410000006,4.062497400000041],[126.80308370000012,4.065991],[126.8060349000001,4.067816],[126.80802270000004,4.075136800000053],[126.8049162000001,4.082798600000046],[126.80945280000003,4.089962900000046],[126.808303,4.095374200000037],[126.81133150000005,4.098603800000035],[126.81213930000001,4.10493],[126.80486670000005,4.10737510000007],[126.80354660000012,4.109688700000049],[126.80482020000011,4.124301],[126.80065800000011,4.128369100000043],[126.80062550000002,4.133936],[126.79601130000003,4.139160100000026],[126.7983564000001,4.143655100000046],[126.79686550000008,4.148297700000057],[126.80119860000002,4.150688900000034],[126.80126110000003,4.154918200000054],[126.8027062000001,4.156959100000051],[126.80790890000003,4.159785],[126.80682180000008,4.164231700000073],[126.80818850000003,4.166716],[126.81882160000009,4.170539500000075],[126.82476040000006,4.179277800000023],[126.827014,4.185154500000067],[126.8450319000001,4.197029200000031],[126.8505143000001,4.198286900000028],[126.85662450000007,4.201862200000051],[126.87056840000002,4.216429100000028],[126.87171780000006,4.225130400000069],[126.86946550000005,4.231347],[126.86777170000005,4.233854],[126.8617147000001,4.234708],[126.860348,4.23789110000007],[126.85916680000003,4.245419300000037],[126.86134120000008,4.250263700000062],[126.87445240000011,4.252769300000068],[126.87924240000007,4.256159],[126.88197580000008,4.260071800000048],[126.88713830000006,4.259065100000043],[126.89408550000007,4.259843900000021],[126.89959170000009,4.262236500000029],[126.90386260000002,4.267407],[126.91264660000002,4.269260100000054],[126.90954060000001,4.275042400000075],[126.91014630000006,4.279738300000076],[126.899736,4.301842],[126.89650250000011,4.306336200000032],[126.89414180000006,4.304783500000042],[126.89224360000003,4.306755100000032],[126.89312890000008,4.308416500000021],[126.89152930000012,4.312593400000026],[126.88761150000005,4.313049700000022],[126.88455180000005,4.317816600000072],[126.88614930000006,4.321845500000052],[126.87850370000001,4.328092600000048],[126.86718760000008,4.341707500000041],[126.86595670000008,4.343998],[126.8670595000001,4.34597],[126.86466770000004,4.346001],[126.86078120000002,4.352110900000071],[126.86112280000009,4.353958600000055],[126.85548210000002,4.361077100000045],[126.85042910000004,4.375440400000059],[126.84940250000011,4.390131200000042],[126.852198,4.390829900000028],[126.85250860000008,4.394680600000072],[126.85379770000009,4.395286100000021],[126.85233810000011,4.396023800000023],[126.85106410000003,4.405659900000046],[126.85222880000003,4.413649300000031],[126.85501670000008,4.414764],[126.85857570000007,4.420427500000073],[126.86702370000012,4.423867900000062],[126.86978240000008,4.429068200000074],[126.8662438,4.442305500000032],[126.8682447000001,4.456321500000058],[126.86645460000011,4.459016500000075],[126.86177960000009,4.458679600000039],[126.85334420000004,4.466197100000045],[126.8569288000001,4.481257700000072],[126.85562670000002,4.48929320000002],[126.854387,4.489975],[126.85146320000001,4.487031200000047],[126.8421571,4.489458700000057],[126.83730820000005,4.487671400000067],[126.83085280000012,4.49152760000004],[126.82939560000011,4.494579],[126.8311728000001,4.498880200000031],[126.830221,4.503036700000052],[126.82193140000004,4.50928],[126.8165762000001,4.51148470000004],[126.817743,4.516488700000025],[126.81671910000011,4.52151340000006],[126.81427970000004,4.525598200000047],[126.81163020000008,4.524410300000056],[126.8102252000001,4.525391500000069],[126.81014160000007,4.529569600000059],[126.807992,4.533683600000074],[126.79447720000007,4.532184900000061],[126.7898143000001,4.529537700000049],[126.7873115000001,4.524781400000052],[126.78497650000008,4.524750400000073],[126.77963140000008,4.526237700000024],[126.77524470000003,4.529425500000059],[126.77439740000011,4.532565600000055],[126.77706300000011,4.537135200000023],[126.77539940000008,4.538770900000031],[126.76141050000001,4.543288600000039],[126.74397580000004,4.545748800000069]]],[[[127.14981030000001,4.616189800000029],[127.14664930000004,4.618789800000059],[127.1315863000001,4.612304900000026],[127.12596640000004,4.613601200000062],[127.12105210000004,4.617320500000062],[127.1186169,4.616054200000065],[127.12179540000011,4.612385300000028],[127.14175000000012,4.60647460000007],[127.14336450000008,4.606969700000036],[127.14822070000002,4.61569350000002],[127.14981030000001,4.616189800000029]]],[[[127.16303410000012,4.627562700000055],[127.158875,4.633638500000075],[127.15677270000003,4.625893400000052],[127.15809680000007,4.621951900000056],[127.16257930000006,4.623313400000029],[127.16393560000006,4.62682460000002],[127.16303410000012,4.627562700000055]]],[[[127.161348,4.643448200000023],[127.15560490000007,4.643845800000065],[127.15497620000008,4.64055860000002],[127.15827550000006,4.638308700000039],[127.158859,4.640534400000035],[127.16135940000004,4.640741100000071],[127.161348,4.643448200000023]]],[[[127.14012240000011,4.704917700000067],[127.13329310000006,4.702731100000051],[127.13108440000008,4.695096200000023],[127.13265330000002,4.692176800000027],[127.14153220000003,4.687034900000072],[127.14424930000007,4.690880900000025],[127.14427180000007,4.700792],[127.14012240000011,4.704917700000067]]],[[[127.06466130000001,4.741384900000071],[127.06140430000005,4.739792600000044],[127.05983550000008,4.735356200000069],[127.05560330000003,4.734657200000072],[127.05399810000006,4.731522700000028],[127.05683660000011,4.726857900000027],[127.0684424000001,4.718459500000051],[127.0756239000001,4.71662120000002],[127.08394930000009,4.718062800000041],[127.0884248000001,4.72528],[127.0935555000001,4.729344300000037],[127.09255030000008,4.733074200000033],[127.0835267000001,4.735478],[127.07945780000011,4.73944750000004],[127.07129040000007,4.739342800000031],[127.06466130000001,4.741384900000071]]],[[[127.13293010000007,4.731753600000047],[127.141677,4.737916700000028],[127.145908,4.748005900000067],[127.1460843000001,4.753339200000028],[127.1423453000001,4.768186],[127.1368553000001,4.775773800000024],[127.13300840000011,4.778412],[127.12906020000003,4.776553600000057],[127.11664690000009,4.763077500000065],[127.11041200000011,4.746447],[127.1141348000001,4.732152300000052],[127.12486420000005,4.730682700000045],[127.13293010000007,4.731753600000047]]],[[[127.06247010000004,4.807256700000039],[127.05907790000003,4.804832100000056],[127.05635120000011,4.797928900000045],[127.05655790000003,4.793208400000026],[127.05878210000003,4.79061710000002],[127.064195,4.793222],[127.06546910000009,4.796631800000057],[127.065173,4.804554300000063],[127.06247010000004,4.807256700000039]]],[[[126.5818756000001,5.544512],[126.58028630000001,5.544085400000029],[126.58224320000011,5.542731],[126.5818756000001,5.544512]]],[[[126.58838330000003,5.564164],[126.58253580000007,5.565693],[126.57704250000006,5.557572500000049],[126.57721560000005,5.550831200000061],[126.57962860000009,5.544853100000068],[126.582456,5.549507700000049],[126.5896183000001,5.555259600000056],[126.5913346000001,5.561890700000049],[126.59021370000005,5.565095400000075],[126.58838330000003,5.564164]]]]},"properties":{"shapeName":"Kepulauan Talaud","shapeISO":"","shapeID":"22746128B61759308751778","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[136.3899536,-1.974856699999975],[136.38848880000012,-1.975336699999957],[136.39175410000007,-1.976756599999931],[136.3899536,-1.974856699999975]]],[[[136.32208250000008,-1.963936599999954],[136.3217926000001,-1.962186599999939],[136.31861880000008,-1.959986599999979],[136.318573,-1.962426499999935],[136.32208250000008,-1.963936599999954]]],[[[136.36198420000005,-1.958676599999933],[136.36174010000002,-1.957066699999928],[136.36096190000012,-1.957996599999944],[136.36198420000005,-1.958676599999933]]],[[[136.37777710000012,-1.962566599999946],[136.3793793000001,-1.958576599999958],[136.37644960000011,-1.9566766],[136.374939,-1.959556599999928],[136.37777710000012,-1.962566599999946]]],[[[136.31559750000008,-1.949316599999975],[136.31179810000003,-1.9501465],[136.31726070000002,-1.955746699999963],[136.31559750000008,-1.949316599999975]]],[[[136.3069,-1.940286599999979],[136.3041687000001,-1.939776499999937],[136.306488,-1.9409366],[136.3064422000001,-1.943326599999978],[136.30921940000007,-1.9442566],[136.3099975,-1.947416499999974],[136.3114624000001,-1.947856599999966],[136.31242370000007,-1.946976499999948],[136.31073,-1.944256499999938],[136.31097410000007,-1.9411866],[136.3069,-1.940286599999979]]],[[[136.369049,-1.921616299999926],[136.36897280000005,-1.920156199999951],[136.36807250000004,-1.921516299999951],[136.369049,-1.921616299999926]]],[[[136.38330080000003,-1.924406199999964],[136.3813934000001,-1.915536199999963],[136.38076780000006,-1.9184562],[136.38330080000003,-1.924406199999964]]],[[[136.36524960000008,-1.905396199999927],[136.36329650000005,-1.905436299999963],[136.36344910000003,-1.906806199999949],[136.36116030000005,-1.907636299999979],[136.360672,-1.905246299999931],[136.35925290000012,-1.907776199999944],[136.3634949000001,-1.9108462],[136.36833190000004,-1.9080362],[136.36851500000012,-1.906946299999959],[136.36656190000008,-1.907536299999947],[136.3665161,-1.905686199999934],[136.36524960000008,-1.905396199999927]]],[[[136.3743591000001,-1.9054362],[136.37269590000005,-1.904856199999927],[136.37149050000005,-1.906996299999946],[136.37480160000007,-1.908846099999948],[136.37596130000009,-1.905826199999979],[136.3743591000001,-1.9054362]]],[[[136.39836120000007,-1.903766399999938],[136.39431760000002,-1.9038163],[136.3895874000001,-1.906986399999937],[136.38861080000004,-1.9095664],[136.38978570000006,-1.909226299999943],[136.3906555000001,-1.910546299999965],[136.389389,-1.909766299999944],[136.3883819,-1.911266299999966],[136.38783260000002,-1.910006299999964],[136.3875885000001,-1.912886399999934],[136.3865661000001,-1.910546299999965],[136.38583370000003,-1.912296399999946],[136.3827209000001,-1.913646299999925],[136.38861080000004,-1.9144864],[136.3899841000001,-1.911226399999975],[136.39183040000012,-1.911176299999966],[136.39154050000002,-1.9133264],[136.39016720000006,-1.912936299999956],[136.39241030000005,-1.914346299999977],[136.39178470000002,-1.915806299999929],[136.39031980000004,-1.914096299999926],[136.38456730000007,-1.915466299999935],[136.38612360000002,-1.918586399999924],[136.38778680000007,-1.917606299999932],[136.3900757,-1.9190264],[136.3912964000001,-1.9179063],[136.3914337000001,-1.919946299999935],[136.393341,-1.920676399999934],[136.39294430000007,-1.9180464],[136.39505,-1.918586399999924],[136.39801020000004,-1.916826399999934],[136.396698,-1.918776399999956],[136.39952090000008,-1.9198064],[136.4044037000001,-1.916246299999955],[136.40464780000002,-1.9125464],[136.40776060000007,-1.913616399999967],[136.40820310000004,-1.909376399999928],[136.39836120000007,-1.903766399999938]]],[[[136.3315887000001,-1.906446499999959],[136.32928470000002,-1.903756499999929],[136.32519530000002,-1.909076399999947],[136.32739260000005,-1.911366499999929],[136.32704160000003,-1.914476499999978],[136.3287964000001,-1.915216399999963],[136.32768250000004,-1.916336399999977],[136.32928460000005,-1.917746399999942],[136.3285522000001,-1.919206499999973],[136.33123780000005,-1.920326499999931],[136.3325043000001,-1.923546399999964],[136.33445740000002,-1.923786399999926],[136.3363495000001,-1.927836499999955],[136.33815,-1.927486399999964],[136.34263610000005,-1.933096499999976],[136.33654780000006,-1.9321165],[136.330368,-1.927876499999968],[136.329483,-1.932556499999976],[136.33085630000005,-1.9355265],[136.33918760000006,-1.942156399999931],[136.34332270000004,-1.9519965],[136.34912110000005,-1.953706499999953],[136.35403440000005,-1.959946499999944],[136.35603330000004,-1.9612064],[136.3584747000001,-1.960676399999954],[136.36105350000003,-1.962766399999964],[136.36091610000005,-1.958916399999964],[136.3594971000001,-1.9586265],[136.35643,-1.948836399999948],[136.35983280000005,-1.947566499999937],[136.36393740000005,-1.950586399999963],[136.36889650000012,-1.942646499999967],[136.3660278000001,-1.941376399999967],[136.36700440000004,-1.938986399999976],[136.36540220000006,-1.937476499999946],[136.3656311000001,-1.934216499999934],[136.3636474000001,-1.932506399999966],[136.3594055000001,-1.935046399999976],[136.36091610000005,-1.939136499999961],[136.35540770000011,-1.938256399999943],[136.35682680000002,-1.9364564],[136.35667420000004,-1.930506499999979],[136.3577881000001,-1.9316765],[136.359787,-1.930166499999928],[136.35960390000002,-1.927006499999948],[136.36100770000007,-1.925346499999932],[136.3576965000001,-1.921596499999964],[136.35935970000003,-1.918426499999953],[136.35842890000004,-1.916336399999977],[136.3542787,-1.9194965],[136.3534088,-1.917356499999926],[136.3567200000001,-1.915986399999952],[136.35536190000005,-1.914726499999972],[136.3568725,-1.913656499999945],[136.3546295000001,-1.912386399999946],[136.35643,-1.910246499999971],[136.35794070000009,-1.911216499999966],[136.35667420000004,-1.909076399999947],[136.3577881000001,-1.905366399999934],[136.3522339000001,-1.9050264],[136.34785460000012,-1.910096499999952],[136.34794620000002,-1.913066499999957],[136.34609980000005,-1.916036499999962],[136.34385680000003,-1.913696499999958],[136.34312440000008,-1.915746399999932],[136.34127810000007,-1.912926399999947],[136.34283440000002,-1.917306399999973],[136.34205630000008,-1.920036399999958],[136.33927920000008,-1.915216499999929],[136.33737180000003,-1.914776399999937],[136.3381042000001,-1.911366499999929],[136.33537290000004,-1.911316499999941],[136.33650210000008,-1.909656499999926],[136.3353271000001,-1.9058565],[136.33386230000008,-1.904736499999956],[136.33323670000004,-1.9069265],[136.3315887000001,-1.906446499999959]]],[[[136.31761170000004,-1.903746599999977],[136.3179474000001,-1.900236599999971],[136.31657410000003,-1.901766499999951],[136.31761170000004,-1.903746599999977]]],[[[136.35360720000006,-1.899006199999974],[136.35311890000003,-1.897156199999927],[136.35174560000007,-1.899826299999972],[136.3534088,-1.9008563],[136.35482790000003,-1.899496299999953],[136.35360720000006,-1.899006199999974]]],[[[136.33108520000008,-1.892136199999925],[136.3281250000001,-1.893646199999978],[136.3249969000001,-1.892526299999929],[136.3236389000001,-1.896086299999979],[136.32548520000012,-1.896276199999932],[136.32504270000004,-1.901886199999979],[136.33421320000002,-1.901936299999932],[136.33061220000002,-1.897886299999925],[136.33323670000004,-1.894326299999932],[136.33108520000008,-1.892136199999925]]],[[[135.81298830000003,-1.897317799999939],[135.8162079000001,-1.893417799999952],[135.8114624000001,-1.890377799999953],[135.8089294,-1.896357799999976],[135.81073,-1.897867799999972],[135.81298830000003,-1.897317799999939]]],[[[136.28277590000005,-1.8891092],[136.2821960000001,-1.8854092],[136.28013610000005,-1.887789299999952],[136.279068,-1.896559399999944],[136.28302,-1.897539299999949],[136.284729,-1.899879299999952],[136.2830047000001,-1.910310399999958],[136.28634640000007,-1.916952],[136.29008480000005,-1.930229299999951],[136.2890625000001,-1.932909199999926],[136.29299930000002,-1.939739199999963],[136.296051,-1.938159399999961],[136.29548640000007,-1.937009299999943],[136.2973938,-1.934469399999955],[136.2990417000001,-1.934419299999945],[136.30021670000008,-1.931789299999934],[136.29846190000012,-1.928769199999977],[136.30094910000003,-1.926729299999977],[136.30070490000003,-1.923169299999927],[136.29656980000004,-1.922829299999933],[136.29841610000005,-1.920099199999925],[136.29544070000009,-1.916489199999944],[136.29258730000004,-1.917312399999958],[136.29150390000007,-1.914929299999926],[136.29432680000002,-1.911616099999947],[136.29335020000008,-1.907329299999958],[136.29130550000002,-1.906069299999956],[136.29602050000005,-1.903429299999971],[136.294281,-1.8979293],[136.29188540000007,-1.896469399999944],[136.28462220000006,-1.895829299999946],[136.29071040000008,-1.888529299999959],[136.29037470000003,-1.886919299999931],[136.28277590000005,-1.8891092]]],[[[136.36407470000006,-1.887066199999936],[136.3621826000001,-1.885266299999955],[136.36038210000004,-1.887556299999972],[136.36236570000005,-1.8956063],[136.35798640000007,-1.896426299999973],[136.35842890000004,-1.899256199999968],[136.36051940000004,-1.901006199999927],[136.3586120000001,-1.903666299999941],[136.36207580000007,-1.902806299999952],[136.36227410000004,-1.899736299999972],[136.36378480000008,-1.901586299999963],[136.36471560000007,-1.900326299999961],[136.36689760000002,-1.901886199999979],[136.36909480000008,-1.900226199999963],[136.37113950000003,-1.900716199999977],[136.37095640000007,-1.899156099999971],[136.3727569,-1.898326199999929],[136.37113950000003,-1.8934561],[136.3686523,-1.893256299999962],[136.367691,-1.889746299999956],[136.36407470000006,-1.887066199999936]]],[[[135.8221893000001,-1.885407799999939],[135.82472230000008,-1.882977699999969],[135.8211212000001,-1.884897799999976],[135.8221893000001,-1.885407799999939]]],[[[135.80361940000012,-1.879487799999936],[135.79949950000002,-1.875587799999948],[135.80003360000012,-1.880917799999963],[135.80361940000012,-1.879487799999936]]],[[[136.350296,-1.878836299999932],[136.35520930000007,-1.875966299999959],[136.35125730000004,-1.874356299999931],[136.3493194,-1.871716299999946],[136.34373470000003,-1.875576299999977],[136.3446808000001,-1.877426299999968],[136.350296,-1.878836299999932]]],[[[137.02354430000003,-1.830657599999938],[137.01647950000006,-1.830977799999971],[136.99110410000003,-1.837087799999949],[136.98255920000008,-1.837047599999948],[136.972702,-1.834637599999951],[136.96876520000012,-1.836277699999926],[136.9555511000001,-1.833307699999978],[136.95042590000003,-1.836488599999939],[136.95452880000005,-1.842277799999977],[136.98602290000008,-1.850367799999958],[136.98797600000012,-1.850377799999933],[136.9879608000001,-1.847667699999931],[136.98989870000003,-1.846027699999979],[136.9924621,-1.845928599999979],[137.00035090000006,-1.850307699999973],[137.00180050000006,-1.852637799999968],[137.0072937000001,-1.853497699999934],[137.01316830000007,-1.857627699999966],[137.0167236000001,-1.855407699999944],[137.0202484,-1.856457699999964],[137.02301020000004,-1.859217799999954],[137.03541560000008,-1.862737599999946],[137.03942870000003,-1.862647699999968],[137.04844660000003,-1.870327599999939],[137.0549774000001,-1.868747499999927],[137.05696100000011,-1.863917499999957],[137.04792780000002,-1.848597599999948],[137.03634640000007,-1.839817599999947],[137.03340150000008,-1.8345176],[137.02354430000003,-1.830657599999938]]],[[[135.93725580000012,-1.796137599999952],[135.93243410000002,-1.796087499999942],[135.9300995000001,-1.797597499999938],[135.93389890000003,-1.8041775],[135.9374084000001,-1.800617599999953],[135.93725580000012,-1.796137599999952]]],[[[135.8129272000001,-1.784967799999947],[135.8022919000001,-1.785457699999938],[135.79815670000005,-1.790997899999979],[135.79936220000002,-1.799827899999968],[135.7944946,-1.7995279],[135.79669190000004,-1.8041579],[135.7945251000001,-1.809887899999978],[135.79711910000003,-1.8133479],[135.79858400000012,-1.811277899999936],[135.8005829000001,-1.811647899999969],[135.80204770000012,-1.815547899999956],[135.80400090000012,-1.815477899999962],[135.80412290000004,-1.816887899999927],[135.80715940000005,-1.817007799999942],[135.80874630000005,-1.814077699999928],[135.81216430000006,-1.812257799999941],[135.8177032000001,-1.816027799999972],[135.819046,-1.814137799999969],[135.81697080000004,-1.8094478],[135.8249512000001,-1.804217799999947],[135.82415770000011,-1.802387799999963],[135.82531740000002,-1.8002578],[135.82330320000005,-1.798187699999971],[135.82318110000006,-1.795507799999939],[135.8215332000001,-1.794777699999941],[135.81935120000003,-1.795687799999939],[135.81935120000003,-1.796967699999925],[135.81855770000004,-1.795077799999945],[135.817337,-1.795747799999958],[135.8188629000001,-1.792767799999979],[135.81758120000006,-1.7920377],[135.81764220000002,-1.788747799999953],[135.8129272000001,-1.784967799999947]]],[[[135.77464290000012,-1.779247899999973],[135.77378840000006,-1.778447899999946],[135.77233890000002,-1.780077899999981],[135.77464290000012,-1.779247899999973]]],[[[135.869339,-1.768748399999936],[135.867157,-1.769328499999972],[135.86917110000002,-1.7713584],[135.87034610000012,-1.769798399999956],[135.869339,-1.768748399999936]]],[[[135.8326111,-1.765367699999956],[135.829422,-1.761957799999948],[135.829483,-1.765167799999972],[135.8326111,-1.765367699999956]]],[[[135.7880401000001,-1.760847899999931],[135.7881622000001,-1.759077899999966],[135.7823181000001,-1.761577799999941],[135.77049250000005,-1.760117899999955],[135.77183530000002,-1.764987899999937],[135.76593020000007,-1.770717899999966],[135.76593020000007,-1.772907799999928],[135.770462,-1.775897899999961],[135.76995850000003,-1.774367899999959],[135.77391050000006,-1.773887899999977],[135.77932740000006,-1.770347799999968],[135.7825623000001,-1.771807899999942],[135.78480530000002,-1.769127799999978],[135.78913880000005,-1.768827899999962],[135.7924805,-1.770897899999966],[135.79084780000005,-1.767607899999973],[135.78663630000005,-1.764197899999942],[135.7880401000001,-1.760847899999931]]],[[[135.7897491000001,-1.7581079],[135.7888336000001,-1.755797899999948],[135.7874451,-1.757997899999964],[135.7897491000001,-1.7581079]]],[[[135.8088226000001,-1.740297799999951],[135.80703730000005,-1.738707799999929],[135.80488590000004,-1.744707799999958],[135.8029785000001,-1.744707799999958],[135.80102540000007,-1.747317799999962],[135.79194640000003,-1.745797699999969],[135.79202270000008,-1.749187799999959],[135.7934265,-1.750047799999948],[135.79826350000008,-1.748367799999926],[135.80079650000005,-1.749807799999928],[135.80059810000012,-1.751447799999937],[135.80302430000006,-1.749777799999947],[135.8074951000001,-1.750517799999955],[135.80734250000012,-1.746457799999973],[135.8090668000001,-1.742327799999941],[135.81237790000012,-1.741507799999965],[135.8088226000001,-1.740297799999951]]],[[[135.68597410000007,-1.709198],[135.6846008000001,-1.708488],[135.68077090000008,-1.714218099999925],[135.68258670000012,-1.714898099999971],[135.68299860000002,-1.716718199999946],[135.6856232,-1.716218],[135.68721010000002,-1.712868],[135.69132990000003,-1.710868],[135.68852230000005,-1.708468],[135.68597410000007,-1.709198]]],[[[135.7308044,-1.6987861],[135.7324066000001,-1.697126099999934],[135.72958370000003,-1.697756199999958],[135.72967530000005,-1.699026099999969],[135.7308044,-1.6987861]]],[[[135.60516360000008,-1.695964599999968],[135.6029205000001,-1.694624499999975],[135.6019745000001,-1.695664499999964],[135.60481260000006,-1.697384599999964],[135.60516360000008,-1.695964599999968]]],[[[135.59028620000004,-1.689144699999929],[135.58738710000011,-1.687744699999939],[135.58535770000003,-1.689504699999929],[135.58961490000002,-1.691184599999929],[135.59028620000004,-1.689144699999929]]],[[[135.58447260000003,-1.688572799999974],[135.58552550000002,-1.687782799999979],[135.5830383000001,-1.689193599999953],[135.58447260000003,-1.688572799999974]]],[[[135.4687500000001,-1.658718699999952],[135.46698,-1.657988799999941],[135.46824650000008,-1.660938699999974],[135.47038270000007,-1.659528699999953],[135.4687500000001,-1.658718699999952]]],[[[135.47544860000005,-1.599121099999934],[135.459259,-1.601461799999925],[135.45425420000004,-1.599418],[135.4416351000001,-1.602780199999927],[135.44018560000006,-1.6018311],[135.4384308000001,-1.602853899999957],[135.436264,-1.601320699999974],[135.43630980000012,-1.603088699999944],[135.43495180000002,-1.603258699999969],[135.41876220000006,-1.600828799999931],[135.4103851000001,-1.601848799999971],[135.4111481000001,-1.604658799999925],[135.41581730000007,-1.607918899999959],[135.42044070000009,-1.607778799999949],[135.43307490000007,-1.611858699999971],[135.44200130000002,-1.611470599999961],[135.44366460000003,-1.612784899999951],[135.44393920000005,-1.619638799999962],[135.44194030000006,-1.6207787],[135.4440770000001,-1.6225387],[135.4423065000001,-1.624798799999951],[135.44267270000012,-1.631598699999927],[135.44433590000006,-1.636848799999939],[135.44886780000002,-1.642918699999939],[135.45959470000003,-1.633088699999973],[135.46766660000003,-1.638888699999939],[135.46992490000002,-1.646488799999929],[135.4665222000001,-1.6532787],[135.46951290000004,-1.6549988],[135.47019960000011,-1.6572688],[135.473053,-1.657718799999941],[135.47363280000002,-1.659618699999953],[135.4768524000001,-1.660118],[135.470108,-1.665458699999931],[135.47151180000003,-1.668318799999952],[135.47372440000004,-1.669078699999943],[135.4741821,-1.680308699999955],[135.47712710000008,-1.681258699999944],[135.4862213,-1.679588499999966],[135.49029540000004,-1.674788599999943],[135.4928284,-1.674468599999955],[135.49423220000006,-1.679448599999944],[135.50044250000008,-1.679628599999944],[135.50926210000011,-1.685968599999967],[135.51356510000005,-1.686608699999965],[135.51425170000005,-1.683748599999944],[135.5078125000001,-1.679538599999944],[135.50746160000006,-1.675018499999965],[135.5122986,-1.675288699999953],[135.5131226000001,-1.673568599999953],[135.51004030000001,-1.672248599999932],[135.50914060000002,-1.670128599999941],[135.51289370000006,-1.669758699999932],[135.5164642000001,-1.664328599999976],[135.52189640000006,-1.660528699999929],[135.52230830000008,-1.663238599999943],[135.52597040000012,-1.664688799999965],[135.5283813000001,-1.667638699999941],[135.52362060000007,-1.672618599999964],[135.52297970000006,-1.675508599999944],[135.51977540000007,-1.677598599999953],[135.5186920000001,-1.686608699999965],[135.52447510000002,-1.684928599999978],[135.52670290000003,-1.680898699999943],[135.53236390000006,-1.679048499999965],[135.53245540000012,-1.677418499999931],[135.5345764000001,-1.679538499999978],[135.53556820000006,-1.677778499999931],[135.54141230000005,-1.676828499999942],[135.5422363,-1.675328499999978],[135.54231260000006,-1.676648499999942],[135.5449066000001,-1.676738499999942],[135.5441284000001,-1.675558499999966],[135.54603580000003,-1.675508499999978],[135.546524,-1.673018499999955],[135.54440310000007,-1.670488499999976],[135.54893490000006,-1.6652385],[135.55110170000012,-1.665188599999965],[135.55345150000005,-1.662468399999966],[135.5550842,-1.662878499999977],[135.55577090000008,-1.6653285],[135.5546875000001,-1.666588499999932],[135.56169130000012,-1.667908499999953],[135.56164550000005,-1.671208499999977],[135.5641022000001,-1.672618499999942],[135.56654360000005,-1.671848499999953],[135.57006840000008,-1.676558499999942],[135.5754700000001,-1.674198499999932],[135.5774536,-1.679588399999943],[135.57542420000004,-1.680628499999955],[135.57826230000012,-1.687288499999966],[135.57980350000003,-1.686788399999955],[135.58044430000007,-1.681808299999943],[135.5821228000001,-1.679818399999931],[135.5855103,-1.680990599999973],[135.58483890000002,-1.683368799999926],[135.59280400000011,-1.683888399999944],[135.59687810000003,-1.680718299999967],[135.60366820000002,-1.682528299999944],[135.60774230000004,-1.681128299999955],[135.6101685000001,-1.684491899999955],[135.61820980000005,-1.683978299999978],[135.62640380000005,-1.687058199999967],[135.6148376000001,-1.690306299999975],[135.6136169,-1.691807499999925],[135.6160278000001,-1.694848299999933],[135.61259460000008,-1.696718199999964],[135.62852480000004,-1.696748299999967],[135.62997440000004,-1.695658199999968],[135.6287079000001,-1.694438199999979],[135.629425,-1.692448299999967],[135.631424,-1.692308199999957],[135.63197330000003,-1.689998099999968],[135.6374512000001,-1.687598099999946],[135.6407776000001,-1.684079399999973],[135.64442440000005,-1.685428099999967],[135.65126040000007,-1.684028199999943],[135.65609740000002,-1.6864111],[135.65220640000007,-1.690088199999934],[135.64695740000002,-1.692218199999957],[135.64627070000006,-1.694208099999969],[135.64985660000002,-1.693898099999956],[135.6499023,-1.6971081],[135.65959170000008,-1.696158199999957],[135.6616669000001,-1.698828099999957],[135.66419980000012,-1.695618099999933],[135.66387940000004,-1.693808199999978],[135.66642760000002,-1.692178099999978],[135.66656490000003,-1.695708199999956],[135.66864010000006,-1.697558199999946],[135.66822810000008,-1.702088099999969],[135.67076110000005,-1.7026281],[135.67080690000012,-1.7048081],[135.67298890000006,-1.7066182],[135.677475,-1.705118199999959],[135.67941280000002,-1.701908099999969],[135.681778,-1.701548],[135.68127440000012,-1.703178],[135.68276980000007,-1.703897899999959],[135.6833954000001,-1.701768],[135.68589780000002,-1.701768],[135.68960570000002,-1.699328099999946],[135.68960570000002,-1.701858099999924],[135.69490050000002,-1.706568],[135.69775390000007,-1.703488],[135.6950836000001,-1.699368],[135.69775390000007,-1.695528],[135.70118710000008,-1.696388],[135.70979310000007,-1.689818],[135.71351620000007,-1.689818],[135.71540830000004,-1.694348],[135.7220764000001,-1.696108],[135.72573850000003,-1.691037899999969],[135.732254,-1.687957899999958],[135.73425290000012,-1.695438299999978],[135.73289490000002,-1.6974279],[135.73606870000003,-1.701133599999935],[135.734787,-1.706657899999925],[135.73565670000005,-1.708967899999948],[135.73841860000005,-1.711777899999959],[135.7398071,-1.710417899999925],[135.74647520000008,-1.717437899999936],[135.75112910000007,-1.717527899999936],[135.75195310000004,-1.721467899999936],[135.75765990000002,-1.723187899999971],[135.7579651000001,-1.718477899999925],[135.76145940000004,-1.7146779],[135.76005550000002,-1.711687899999959],[135.7611389000001,-1.706657899999925],[135.76638790000004,-1.711547799999948],[135.77192690000004,-1.713752899999974],[135.77287290000004,-1.714847899999938],[135.7717133000001,-1.717696299999943],[135.77337650000004,-1.716235199999971],[135.77592470000002,-1.717329499999948],[135.78532410000003,-1.715769699999953],[135.78492740000002,-1.7198087],[135.7897491000001,-1.719747799999936],[135.78689570000006,-1.724137799999937],[135.79165650000004,-1.727257699999939],[135.7914734000001,-1.729207699999961],[135.78523250000012,-1.7278478],[135.78355410000006,-1.728167799999937],[135.78318790000003,-1.729977799999972],[135.77934260000006,-1.723327899999958],[135.776947,-1.723817899999972],[135.7775269000001,-1.725858],[135.775589,-1.728707899999961],[135.77784730000008,-1.729797799999972],[135.77987670000005,-1.733967899999925],[135.77716060000012,-1.735187899999971],[135.77671810000004,-1.7378979],[135.77381900000012,-1.737267899999949],[135.77377320000005,-1.734597899999926],[135.7715912000001,-1.7319279],[135.7674713,-1.731067899999971],[135.76702880000005,-1.738987899999927],[135.7619476000001,-1.744057899999973],[135.76251220000006,-1.748662699999954],[135.7673492,-1.745007899999962],[135.7688293000001,-1.741067899999962],[135.771286,-1.743337899999972],[135.77322390000006,-1.741707899999938],[135.77626040000007,-1.741887899999938],[135.77798460000008,-1.744737899999961],[135.78065490000006,-1.743377899999928],[135.78065490000006,-1.744967899999949],[135.7836456000001,-1.747277899999972],[135.78518680000002,-1.744467799999939],[135.78355410000006,-1.743247899999972],[135.78717040000004,-1.737537699999962],[135.79034420000005,-1.738487699999951],[135.7940979000001,-1.737357699999961],[135.79441830000007,-1.738947799999949],[135.7993011000001,-1.740387799999951],[135.8011169,-1.736457799999926],[135.806366,-1.733107799999971],[135.81294250000008,-1.735367799999949],[135.8163757000001,-1.7341478],[135.82130430000007,-1.734917799999948],[135.82307430000003,-1.737947799999972],[135.822403,-1.743337699999927],[135.81918330000008,-1.744967799999927],[135.8234863,-1.750007699999969],[135.82438660000003,-1.748527799999977],[135.8296051000001,-1.747437799999943],[135.828476,-1.750357699999938],[135.82659910000007,-1.749887799999954],[135.8258972000001,-1.751837899999941],[135.82945250000012,-1.752427799999964],[135.83155820000002,-1.754407799999967],[135.83271790000003,-1.757837799999947],[135.8317413000001,-1.761737799999935],[135.83557130000008,-1.761777799999948],[135.83670040000004,-1.758977799999968],[135.8343658000001,-1.755657799999938],[135.83557130000008,-1.754797799999949],[135.835144,-1.756557799999939],[135.83627320000005,-1.756907799999965],[135.840744,-1.748647699999935],[135.845932,-1.746347699999944],[135.84986880000008,-1.752387599999963],[135.852951,-1.753317699999968],[135.85357670000008,-1.758037699999932],[135.85603330000004,-1.757957699999963],[135.8576660000001,-1.759747599999969],[135.8570099000001,-1.764647699999955],[135.858139,-1.767397599999924],[135.86355590000005,-1.765327699999943],[135.86476130000005,-1.768097599999976],[135.8668365000001,-1.763607599999943],[135.8657379000001,-1.7603377],[135.86936950000006,-1.7606476],[135.86952210000004,-1.759007699999927],[135.87200930000006,-1.758657699999958],[135.87232970000002,-1.7573177],[135.86524960000008,-1.752287599999931],[135.8617859000001,-1.754037599999947],[135.8594971000001,-1.753207699999962],[135.85774230000004,-1.749747599999978],[135.852478,-1.745657699999924],[135.85150150000004,-1.7424877],[135.8576508000001,-1.738887699999964],[135.8691864000001,-1.740365199999928],[135.8718719000001,-1.744744699999956],[135.87309260000006,-1.7442477],[135.8791351000001,-1.748047699999972],[135.8807220000001,-1.750363199999924],[135.882904,-1.749266899999952],[135.88269040000012,-1.752772099999959],[135.88517760000002,-1.753697599999953],[135.88619990000007,-1.759257699999978],[135.88531490000003,-1.760717599999964],[135.8867798000001,-1.763297699999953],[135.89106750000008,-1.761547599999972],[135.8921967000001,-1.762707599999942],[135.89082340000004,-1.768417599999964],[135.8932648000001,-1.771437499999934],[135.895462,-1.7719675],[135.8948669,-1.775327599999969],[135.8973999000001,-1.776987599999927],[135.89944460000004,-1.788097499999935],[135.90544130000012,-1.786347499999977],[135.90885920000005,-1.7803476],[135.91343690000008,-1.7776675],[135.91177370000003,-1.773917599999947],[135.90657040000008,-1.770997499999964],[135.90530390000004,-1.766077499999938],[135.89999390000003,-1.760807499999942],[135.9005737000001,-1.758867499999951],[135.90408330000002,-1.756967599999939],[135.90608210000005,-1.757397499999968],[135.9081268000001,-1.755257499999971],[135.91148380000004,-1.754717599999935],[135.91596980000008,-1.760277499999972],[135.9164581000001,-1.768117599999925],[135.920105,-1.768507599999964],[135.92390440000008,-1.765537499999937],[135.935852,-1.781667599999935],[135.9367218000001,-1.780837499999961],[135.9393616000001,-1.7864876],[135.9393616000001,-1.791797499999973],[135.94169620000002,-1.791117499999928],[135.9458313,-1.786147399999948],[135.94827270000008,-1.786197399999935],[135.94998170000008,-1.790587399999936],[135.95285030000002,-1.789467399999978],[135.953537,-1.791947499999935],[135.95669550000002,-1.793897399999935],[135.95387270000003,-1.795597399999963],[135.95480350000003,-1.797207499999956],[135.95693970000002,-1.797307499999931],[135.95753480000008,-1.796087399999976],[135.9602661,-1.797497399999941],[135.96366880000005,-1.7967675],[135.97097780000001,-1.802227399999936],[135.9782867,-1.816947499999969],[135.99334720000002,-1.820747499999925],[136.00971980000008,-1.820647399999928],[136.01770020000004,-1.823717399999964],[136.0212097000001,-1.821817299999964],[136.02243040000008,-1.819237199999975],[136.02520750000008,-1.819187299999953],[136.03515630000004,-1.824247399999933],[136.0394897000001,-1.830737299999953],[136.0494232000001,-1.831417299999941],[136.05322260000003,-1.836917299999925],[136.0603943000001,-1.839797099999942],[136.0659485000001,-1.846667199999956],[136.07159420000005,-1.849837199999968],[136.0755005000001,-1.8497872],[136.0888519,-1.844717199999934],[136.0998535000001,-1.843397099999947],[136.10891720000006,-1.846326899999951],[136.11827090000008,-1.853387],[136.1454162000001,-1.853246899999931],[136.1545714,-1.857726899999932],[136.158966,-1.862257],[136.16821290000007,-1.867426899999941],[136.17257690000008,-1.871581899999967],[136.17236330000003,-1.874536899999953],[136.17713930000002,-1.873126899999932],[136.18132020000007,-1.866936799999962],[136.1827383000001,-1.866446899999971],[136.18205260000002,-1.870196799999974],[136.18716430000006,-1.869116799999972],[136.18769830000008,-1.865026799999953],[136.18867490000002,-1.865806799999973],[136.18945310000004,-1.864776799999959],[136.18867490000002,-1.862196799999936],[136.19261170000004,-1.864046799999926],[136.19358820000002,-1.862346799999955],[136.19236750000005,-1.860636799999952],[136.19416810000007,-1.859766799999932],[136.194519,-1.862636799999962],[136.1917419,-1.865856899999926],[136.1897888000001,-1.865856899999926],[136.19110110000008,-1.867456799999957],[136.1891022000001,-1.866826799999956],[136.18812560000003,-1.870576899999946],[136.18492130000004,-1.872286799999927],[136.1855011,-1.873746899999958],[136.18983460000004,-1.875106799999969],[136.19285580000007,-1.872386799999958],[136.1926575000001,-1.869606799999929],[136.195343,-1.866826799999956],[136.19709780000005,-1.860346799999945],[136.19578550000006,-1.856936799999971],[136.19787540000004,-1.854986799999949],[136.20031740000002,-1.857126799999946],[136.19749450000006,-1.859276799999975],[136.19792170000005,-1.861616899999945],[136.20065310000007,-1.860346799999945],[136.20123290000004,-1.861666799999966],[136.20401,-1.861416799999972],[136.2032928000001,-1.8625368],[136.205719,-1.863856799999951],[136.2008972000001,-1.863706799999932],[136.20172120000007,-1.866046799999936],[136.1977386000001,-1.864976899999931],[136.19934080000007,-1.868386899999962],[136.19865420000008,-1.869706899999926],[136.20202640000002,-1.870236899999952],[136.2028961000001,-1.866246799999942],[136.20513920000008,-1.866876799999943],[136.2043152000001,-1.875306799999976],[136.20727540000007,-1.878866799999969],[136.20942690000004,-1.879786799999977],[136.21244810000007,-1.877746799999954],[136.2124023,-1.875596899999948],[136.21755980000012,-1.874676699999952],[136.22531130000004,-1.882226699999933],[136.22677610000005,-1.8869067],[136.22491450000007,-1.889146699999969],[136.223999,-1.8956267],[136.2219543000001,-1.897716799999955],[136.2235565000001,-1.903516799999977],[136.22315980000008,-1.907806699999981],[136.22744750000004,-1.905076699999938],[136.2299805,-1.909806699999933],[136.23106380000002,-1.906096699999978],[136.22866820000002,-1.901816699999927],[136.2321319,-1.897526699999958],[136.23110960000008,-1.900256799999966],[136.2328186000001,-1.901076699999976],[136.2339783000001,-1.898356699999965],[136.2322845000001,-1.896106699999962],[136.23388670000008,-1.896156699999949],[136.2351532,-1.893336699999963],[136.2372894,-1.893386699999951],[136.238266,-1.890946799999938],[136.24099730000012,-1.890166799999975],[136.2429046000001,-1.886806699999966],[136.249527,-1.885876699999926],[136.2542572000001,-1.8898268],[136.25230410000006,-1.896206699999937],[136.25868220000007,-1.907606699999974],[136.25952150000012,-1.910676699999954],[136.2584991000001,-1.913266699999951],[136.2632599000001,-1.912726799999973],[136.2618103000001,-1.910096799999963],[136.26223750000008,-1.903366699999935],[136.26585390000002,-1.902786699999979],[136.26409910000007,-1.897916699999939],[136.26556390000007,-1.894855],[136.26475520000008,-1.893103199999928],[136.26795960000004,-1.890983499999948],[136.27174380000008,-1.892306599999927],[136.27178950000007,-1.889336599999979],[136.275589,-1.882806499999958],[136.28129580000007,-1.884026699999936],[136.28402710000012,-1.881006599999978],[136.28607180000006,-1.882856599999968],[136.2911835000001,-1.882126599999935],[136.29180910000002,-1.876436199999944],[136.29684450000002,-1.873406599999953],[136.298645,-1.8690666],[136.30088810000007,-1.869996499999957],[136.3022919000001,-1.868586499999935],[136.30444330000012,-1.8690666],[136.3130188,-1.862786399999948],[136.3200836000001,-1.866146499999957],[136.3212433000001,-1.869166499999949],[136.32461550000005,-1.866096499999969],[136.32817080000007,-1.8648264],[136.33181760000002,-1.865516399999933],[136.3362121,-1.862296399999934],[136.342926,-1.860445599999935],[136.34405520000007,-1.863226399999974],[136.342926,-1.864346499999954],[136.344635,-1.865906499999937],[136.3612518000001,-1.868626499999948],[136.3621826000001,-1.872086499999966],[136.36656190000008,-1.876526399999932],[136.3665161,-1.8802264],[136.37113950000003,-1.882226399999979],[136.38040160000003,-1.881196399999965],[136.38011170000004,-1.8750163],[136.38430790000007,-1.874916299999938],[136.3883972000001,-1.872676399999932],[136.390152,-1.8773063],[136.39439390000007,-1.881106399999965],[136.39297480000005,-1.882366299999944],[136.39784240000006,-1.885976299999925],[136.3983307000001,-1.888166299999966],[136.40032960000008,-1.8877764],[136.39945980000005,-1.880376299999966],[136.4075928000001,-1.883296399999949],[136.40750120000007,-1.880616299999929],[136.41178890000003,-1.878716299999951],[136.40988160000006,-1.874426399999948],[136.4118347000001,-1.873306399999933],[136.42327880000005,-1.877546199999927],[136.4226532,-1.880566199999976],[136.42483520000008,-1.882076299999937],[136.4253235000001,-1.884416199999976],[136.43589780000002,-1.889096299999949],[136.4418945000001,-1.889146099999948],[136.449646,-1.883196099999964],[136.45864870000003,-1.891916199999969],[136.4649353000001,-1.8931861],[136.46722410000007,-1.895186099999933],[136.46888730000012,-1.894596099999944],[136.46791070000006,-1.892606099999966],[136.47006220000003,-1.889876099999981],[136.4704895000001,-1.884316],[136.4805755000001,-1.884266],[136.4849243000001,-1.879295899999931],[136.48725890000003,-1.879156],[136.49578850000012,-1.885736],[136.49734490000003,-1.883686],[136.4948578000001,-1.882276],[136.49874880000004,-1.879645899999957],[136.50274660000002,-1.880956099999935],[136.50421140000003,-1.885096],[136.5095672000001,-1.888165899999933],[136.51240540000003,-1.893086],[136.51560970000003,-1.8937759],[136.5166931000001,-1.895476],[136.51911930000006,-1.892356],[136.5238495000001,-1.894255899999962],[136.52691650000008,-1.893335799999932],[136.52935790000004,-1.895475899999951],[136.53096010000002,-1.895035899999925],[136.53227230000005,-1.898055899999974],[136.53504940000005,-1.897865899999942],[136.5366821,-1.899325799999929],[136.53710940000008,-1.8976259],[136.54675290000012,-1.896495899999934],[136.54830930000003,-1.889625899999942],[136.5461120000001,-1.8902159],[136.54441830000007,-1.889045799999963],[136.54382320000002,-1.892945899999972],[136.5385132,-1.892355899999927],[136.5384216000001,-1.889195899999947],[136.53700250000009,-1.890165899999943],[136.5357361,-1.887725799999942],[136.53096010000002,-1.8852959],[136.53482050000002,-1.881835899999942],[136.5308685000001,-1.8822259],[136.52687070000002,-1.8778359],[136.52369690000012,-1.877305899999953],[136.52020260000006,-1.871015899999975],[136.5161438,-1.869165899999928],[136.5090332000001,-1.859516],[136.5028076000001,-1.857956],[136.50285340000005,-1.849526099999935],[136.510498,-1.848996099999965],[136.51089480000007,-1.851725899999963],[136.51531980000004,-1.855225899999937],[136.5142975000001,-1.856545899999958],[136.528183,-1.863705899999957],[136.5302276000001,-1.867365799999959],[136.53569030000006,-1.869505899999979],[136.5449066000001,-1.865465899999947],[136.54919430000007,-1.867215899999962],[136.55030820000002,-1.870335799999964],[136.5515289000001,-1.870385899999974],[136.56230160000007,-1.868145799999979],[136.5697937000001,-1.862875699999961],[136.57238770000004,-1.862735699999973],[136.57545470000002,-1.864875799999936],[136.58651730000008,-1.863465799999972],[136.59513850000008,-1.865025799999955],[136.5969848000001,-1.863125699999955],[136.60746760000006,-1.865945799999963],[136.6118011000001,-1.863955699999963],[136.6161346,-1.864385699999957],[136.61862180000003,-1.862395599999957],[136.6226196,-1.8640456],[136.62734980000005,-1.868435599999941],[136.62821960000008,-1.873055699999952],[136.6359863,-1.871435599999927],[136.63650510000002,-1.869535699999972],[136.63871760000006,-1.868795599999942],[136.64360050000005,-1.870345599999951],[136.6505737000001,-1.867531099999951],[136.6500397000001,-1.865155799999968],[136.6516723000001,-1.861877399999969],[136.65638730000012,-1.860889899999961],[136.65423580000004,-1.859130599999958],[136.6556091000001,-1.855115199999943],[136.6685943000001,-1.852071899999942],[136.67547600000012,-1.842132399999969],[136.68316650000008,-1.838356699999963],[136.6828613,-1.836657199999934],[136.68771360000005,-1.833867299999952],[136.689743,-1.834070199999928],[136.68769830000008,-1.841196799999977],[136.68893430000003,-1.841853399999934],[136.69349670000008,-1.84189],[136.69898980000005,-1.845243399999958],[136.70680230000005,-1.843351699999971],[136.7121277000001,-1.834048699999926],[136.709198,-1.832863799999927],[136.70297240000002,-1.826603599999942],[136.701004,-1.831156699999951],[136.69950860000006,-1.827873199999942],[136.70066830000007,-1.8262637],[136.697052,-1.823845499999948],[136.7031555000001,-1.824375399999951],[136.70356750000008,-1.8217154],[136.70626830000003,-1.822515399999929],[136.70877070000006,-1.819865299999947],[136.71817010000007,-1.816025299999978],[136.72412110000005,-1.815235299999927],[136.72900390000007,-1.816895199999976],[136.72996520000004,-1.819135299999971],[136.7337341000001,-1.8186853],[136.74217220000003,-1.822795299999939],[136.76051330000007,-1.8262953],[136.76162720000002,-1.825615299999924],[136.76055910000002,-1.824745299999961],[136.7627258000001,-1.824415299999941],[136.7651214000001,-1.821165199999939],[136.7688137,-1.820884499999977],[136.7731781000001,-1.817395199999964],[136.77819820000002,-1.8170951],[136.77948020000008,-1.814935199999979],[136.78216550000002,-1.816045199999962],[136.78627010000002,-1.813035099999979],[136.78887940000004,-1.814235199999928],[136.792221,-1.811985099999958],[136.79353330000004,-1.813365099999942],[136.80142210000008,-1.812765099999979],[136.81005860000005,-1.819585199999949],[136.81483460000004,-1.821445099999949],[136.82368470000006,-1.823035],[136.82476810000003,-1.821985],[136.828659,-1.824175],[136.83311270000002,-1.822115099999962],[136.8492126000001,-1.827385099999958],[136.85566710000012,-1.817415],[136.86116030000005,-1.815195099999926],[136.8693085000001,-1.814354899999955],[136.871521,-1.811484899999925],[136.873825,-1.801034899999934],[136.88247680000006,-1.797385],[136.8952789000001,-1.797724199999948],[136.90380860000005,-1.793574899999953],[136.89891050000006,-1.787114899999949],[136.8915558000001,-1.784634899999958],[136.8869476000001,-1.780685],[136.88511660000006,-1.781984899999941],[136.8805999000001,-1.778244899999947],[136.874527,-1.779014899999936],[136.8645325000001,-1.776494899999932],[136.848114,-1.770105],[136.80189510000002,-1.747945099999924],[136.79461670000012,-1.742255199999931],[136.78877260000002,-1.740105099999937],[136.78713990000006,-1.742585199999951],[136.7775726000001,-1.741985199999931],[136.77262880000012,-1.747475099999974],[136.7684173,-1.747405199999946],[136.74754330000007,-1.743485199999952],[136.715393,-1.731965299999956],[136.71154780000006,-1.733465299999978],[136.70455930000003,-1.730915299999936],[136.693573,-1.731775399999947],[136.68212890000007,-1.728485499999977],[136.6741333000001,-1.728415499999926],[136.66947930000003,-1.726305499999967],[136.66719050000006,-1.728595499999926],[136.6509552000001,-1.729416],[136.64404290000004,-1.726585499999942],[136.639801,-1.727485499999943],[136.63645930000007,-1.725055499999939],[136.63354490000006,-1.7265255],[136.62632750000012,-1.724885599999936],[136.62350460000005,-1.726185699999974],[136.61569210000005,-1.725845699999979],[136.61320490000003,-1.727375599999959],[136.60301210000011,-1.727935699999932],[136.59060670000008,-1.725366599999973],[136.58824160000006,-1.729015599999968],[136.58512880000012,-1.7291857],[136.5576324000001,-1.721595799999932],[136.55320740000002,-1.722675799999934],[136.54512020000004,-1.721545799999944],[136.5275726000001,-1.715145699999937],[136.5073089000001,-1.711585899999932],[136.4966736,-1.705135799999937],[136.4924774000001,-1.707505799999979],[136.47714230000008,-1.7053572],[136.47177120000003,-1.705866],[136.4620361000001,-1.704456],[136.45376580000004,-1.699525899999969],[136.44618220000007,-1.698166],[136.4450836000001,-1.698825899999974],[136.44725040000003,-1.701496],[136.44639590000008,-1.705306099999973],[136.4389648,-1.710556199999928],[136.4289093000001,-1.714266099999975],[136.41891480000004,-1.714676299999951],[136.40980530000002,-1.720066199999962],[136.40126040000007,-1.720466299999941],[136.39332580000007,-1.718206299999963],[136.3890686000001,-1.719746199999975],[136.37902830000007,-1.716346299999941],[136.37403870000003,-1.717666299999962],[136.36860650000006,-1.717076299999974],[136.3556976000001,-1.711186399999974],[136.35113520000004,-1.7054364],[136.34275820000005,-1.706616399999973],[136.32478330000004,-1.703766299999927],[136.31813050000005,-1.699366299999951],[136.31571960000008,-1.694616399999973],[136.31143190000012,-1.693166499999961],[136.31069950000006,-1.690996499999926],[136.30567930000007,-1.687736499999971],[136.2968902,-1.685566399999971],[136.2900085000001,-1.687146399999961],[136.2868347000001,-1.685606499999949],[136.28013610000005,-1.678406499999937],[136.26995850000003,-1.678676499999938],[136.26538080000012,-1.675236499999926],[136.25447080000004,-1.672526599999969],[136.2408905000001,-1.671346599999936],[136.23907470000006,-1.6691266],[136.23707580000007,-1.6707066],[136.23037720000002,-1.6691266],[136.2224579000001,-1.6649166],[136.21086120000007,-1.6521466],[136.20330810000007,-1.648386699999946],[136.18293760000006,-1.655636699999945],[136.172287,-1.653326799999945],[136.15861510000002,-1.654316699999924],[136.1496582000001,-1.652556799999957],[136.14199830000007,-1.648976799999957],[136.12864680000007,-1.653596899999968],[136.117279,-1.653146899999967],[136.10841370000003,-1.6511068],[136.09930420000012,-1.6526871],[136.092514,-1.649337],[136.0880737000001,-1.650517099999945],[136.07780460000004,-1.649477],[136.0637207000001,-1.657947099999944],[136.05226130000005,-1.659617199999957],[136.04682920000005,-1.657487199999935],[136.04537960000005,-1.655087199999969],[136.02984620000007,-1.653507199999979],[136.0274048000001,-1.650607199999968],[136.0182648000001,-1.648027199999945],[136.0159149000001,-1.648617199999933],[136.0144653000001,-1.647217099999978],[136.01065060000008,-1.649427199999934],[136.00898740000002,-1.647257199999956],[136.0063934000001,-1.646717199999955],[136.003418,-1.651157299999966],[135.99617000000012,-1.653957299999945],[135.99105830000008,-1.652557199999933],[135.9890137000001,-1.648937399999966],[135.98937990000002,-1.646937299999934],[135.98471070000005,-1.648077399999977],[135.98181150000005,-1.645947299999932],[135.97357180000006,-1.653867399999967],[135.96913150000012,-1.654727299999934],[135.96130370000003,-1.651337299999966],[135.9617157,-1.643777199999931],[135.95423890000006,-1.641327299999944],[135.95108030000006,-1.641147399999966],[135.95057680000002,-1.643497499999967],[135.9477234000001,-1.645218599999964],[135.9421539000001,-1.641507399999966],[135.93798830000003,-1.642917399999931],[135.93251040000007,-1.640057399999932],[135.92376710000008,-1.641187399999978],[135.91444400000012,-1.635307399999931],[135.90475460000005,-1.636617399999977],[135.8989563,-1.635217599999976],[135.89614870000003,-1.637297499999931],[135.8904877000001,-1.637927499999932],[135.89112850000004,-1.639877599999977],[135.88899230000004,-1.642097599999943],[135.8844299000001,-1.641377599999942],[135.8814850000001,-1.637977599999942],[135.87918090000005,-1.639837499999942],[135.87840270000004,-1.645037499999944],[135.87057490000007,-1.644317499999943],[135.87242130000004,-1.645987499999933],[135.87255860000005,-1.648847599999954],[135.87165830000004,-1.652687599999979],[135.8690643000001,-1.655000199999961],[135.87112430000002,-1.658673599999929],[135.87020870000003,-1.661067599999967],[135.86740110000005,-1.660207499999956],[135.8664093000001,-1.662927499999967],[135.86445620000006,-1.659707499999968],[135.85565180000003,-1.654641],[135.85057070000005,-1.662821899999926],[135.8476105000001,-1.656447699999944],[135.8485260000001,-1.652917599999967],[135.8441772000001,-1.657987699999978],[135.8358459000001,-1.658217699999966],[135.83575440000004,-1.655587699999955],[135.8377991000001,-1.653867699999978],[135.83915710000008,-1.654867599999932],[135.84132380000005,-1.653957599999956],[135.8380585000001,-1.650197599999956],[135.836441,-1.645037599999966],[135.84725950000006,-1.638657699999953],[135.84304810000003,-1.637927599999955],[135.83792110000002,-1.640377599999965],[135.835083,-1.6392777],[135.83222960000012,-1.642457599999943],[135.82850650000012,-1.642968799999949],[135.8200836000001,-1.638207699999953],[135.8114471,-1.638207699999953],[135.80818180000006,-1.6364026],[135.80752560000008,-1.633995399999947],[135.80476380000005,-1.635091899999964],[135.80236820000005,-1.632829099999981],[135.7990417000001,-1.633268599999951],[135.797409,-1.631727799999965],[135.79142760000002,-1.631187799999964],[135.78872680000006,-1.627503599999955],[135.7860412000001,-1.626409399999943],[135.78015140000002,-1.627567799999952],[135.76623540000003,-1.625394699999958],[135.7632599000001,-1.628024699999969],[135.75195310000004,-1.629507899999965],[135.74081420000005,-1.626337899999953],[135.73777770000004,-1.629557899999952],[135.7374566000001,-1.6340879],[135.73384090000002,-1.633497899999952],[135.72850040000003,-1.635807899999975],[135.72650150000004,-1.634177899999941],[135.72691350000002,-1.631097899999929],[135.7203522000001,-1.626477899999941],[135.71405030000005,-1.627067899999929],[135.70019530000002,-1.625118],[135.70237730000008,-1.627108],[135.70323180000003,-1.632498],[135.7005157000001,-1.631638099999975],[135.6995697000001,-1.629328],[135.69264220000002,-1.634578],[135.68901060000007,-1.631638099999975],[135.69277950000003,-1.628018],[135.6921387000001,-1.623938],[135.68882750000012,-1.620008],[135.68006900000012,-1.620528],[135.6781311000001,-1.619508],[135.6709442,-1.623238],[135.66336060000003,-1.623638],[135.657135,-1.6222781],[135.65431210000008,-1.619108099999949],[135.6414642000001,-1.626468199999977],[135.63179020000007,-1.6261281],[135.62986750000005,-1.624938099999952],[135.62385560000007,-1.6258482],[135.61672970000006,-1.620808099999977],[135.6096497000001,-1.621768199999963],[135.60421750000012,-1.620128299999976],[135.59782410000003,-1.621258299999965],[135.5937500000001,-1.616278399999942],[135.58735660000002,-1.614128299999948],[135.5871277000001,-1.612828399999955],[135.58135990000005,-1.613558399999931],[135.58062740000003,-1.610618399999964],[135.5719147000001,-1.615148399999953],[135.56640620000007,-1.611108399999978],[135.56138610000005,-1.611698399999966],[135.55781550000006,-1.614748499999962],[135.55056760000002,-1.611748499999976],[135.5457001000001,-1.614298499999961],[135.54100040000003,-1.611578499999951],[135.5329742,-1.611128399999927],[135.5285034000001,-1.607108499999924],[135.52459720000002,-1.611409199999969],[135.519043,-1.6082385],[135.50257870000007,-1.607168699999932],[135.49980160000007,-1.609038599999963],[135.4949951000001,-1.608468699999946],[135.47914120000007,-1.599588599999947],[135.47544860000005,-1.599121099999934]]],[[[135.83042910000006,-1.520837499999971],[135.82617190000008,-1.522027499999979],[135.82583620000003,-1.524297599999954],[135.82833860000005,-1.526167499999929],[135.835083,-1.526907599999959],[135.835434,-1.522987599999965],[135.83042910000006,-1.520837499999971]]],[[[135.3391113,-1.509668199999965],[135.33659360000001,-1.512608199999931],[135.34014890000003,-1.514598099999944],[135.34796140000003,-1.514118199999928],[135.3515778000001,-1.512128099999927],[135.3486938000001,-1.510038],[135.3391113,-1.509668199999965]]],[[[135.37008670000012,-1.506288099999949],[135.37136840000005,-1.503128099999969],[135.3703766000001,-1.497678],[135.365036,-1.498098099999936],[135.36277770000004,-1.500608099999965],[135.3642731000001,-1.507668099999933],[135.37008670000012,-1.506288099999949]]],[[[135.0190735000001,-1.481588699999975],[135.01301580000006,-1.484388799999977],[135.0166931000001,-1.486768799999936],[135.01913450000006,-1.486108799999954],[135.021225,-1.483318699999927],[135.0190735000001,-1.481588699999975]]],[[[135.353241,-1.481598],[135.3522034,-1.480188099999964],[135.3477478000001,-1.4828581],[135.35005190000004,-1.488408099999958],[135.3528748000001,-1.488668099999927],[135.35560610000005,-1.486468099999968],[135.35560610000005,-1.482908099999975],[135.353241,-1.481598]]],[[[135.00842290000003,-1.471598899999947],[135.00723270000003,-1.473148799999933],[135.0103302000001,-1.471418899999946],[135.00842290000003,-1.471598899999947]]],[[[135.0993195000001,-1.471547],[135.0993195000001,-1.467917099999966],[135.09782410000003,-1.469937099999925],[135.0982361,-1.471727],[135.0993195000001,-1.471547]]],[[[135.11964420000004,-1.465559399999961],[135.11714170000005,-1.463239399999964],[135.11737060000007,-1.4657294],[135.1144104000001,-1.465259399999979],[135.11232,-1.467879399999958],[135.11297610000008,-1.470019499999978],[135.1114960000001,-1.471499499999936],[135.11448670000004,-1.475729399999977],[135.1129456000001,-1.480009399999972],[135.1051483000001,-1.483339499999943],[135.10015870000007,-1.481259499999965],[135.10176090000004,-1.484349499999951],[135.10069280000005,-1.486429599999951],[135.0946808000001,-1.489289499999927],[135.09690860000012,-1.490599499999973],[135.09643560000006,-1.493099599999937],[135.0944214000001,-1.493689499999959],[135.0957184,-1.496959599999968],[135.0913849000001,-1.500889499999971],[135.09863280000002,-1.507977599999947],[135.10203550000006,-1.506443699999977],[135.103241,-1.5082016],[135.1046143000001,-1.507959799999981],[135.11436460000004,-1.499681099999975],[135.11949160000006,-1.5020511],[135.12219240000002,-1.5004475],[135.12442020000003,-1.505580799999962],[135.12904360000005,-1.508990899999958],[135.13035580000007,-1.506630799999925],[135.1350708000001,-1.506420899999966],[135.13595580000003,-1.503750799999978],[135.14349370000002,-1.512180799999953],[135.1455383000001,-1.512490899999932],[135.1528015,-1.519410799999946],[135.15908810000008,-1.520930899999939],[135.1680298000001,-1.518050699999947],[135.16908260000002,-1.520300799999973],[135.17567440000005,-1.524170799999979],[135.1785126000001,-1.521240699999964],[135.1757355000001,-1.514850699999954],[135.1769409000001,-1.510870699999941],[135.186203,-1.512290699999937],[135.1860504000001,-1.518410699999947],[135.1876221000001,-1.518390699999941],[135.18966680000005,-1.515430699999968],[135.1936951,-1.518310699999972],[135.196991,-1.516470699999957],[135.1999359,-1.516630699999951],[135.20108030000006,-1.518200799999931],[135.20343020000007,-1.517470699999933],[135.20773310000004,-1.523130799999933],[135.20491030000005,-1.5271107],[135.20558170000004,-1.5280007],[135.20974730000012,-1.525850699999978],[135.20933530000002,-1.524490699999944],[135.21263120000003,-1.520770599999935],[135.21498110000005,-1.520770599999935],[135.21551510000006,-1.523070599999926],[135.2191772000001,-1.522080499999959],[135.2193909,-1.524750599999948],[135.22152710000012,-1.525170599999967],[135.22367860000008,-1.519040599999926],[135.2298584,-1.519880599999965],[135.2302704000001,-1.518360599999937],[135.24255370000003,-1.521610599999974],[135.24502560000008,-1.528620599999954],[135.24726870000006,-1.529812699999979],[135.25614930000006,-1.5284105],[135.2572937000001,-1.526580599999932],[135.26170350000007,-1.526740399999937],[135.26448060000007,-1.5239605],[135.2791443000001,-1.516470399999946],[135.28222660000006,-1.517210499999976],[135.28558350000003,-1.521080499999925],[135.2891846000001,-1.518670399999962],[135.2990417000001,-1.519300499999929],[135.3055267000001,-1.516110399999945],[135.3089294,-1.512550399999952],[135.31370540000012,-1.5137503],[135.3204346000001,-1.509200299999975],[135.32540890000007,-1.509460299999944],[135.32597350000003,-1.505320299999937],[135.3237305,-1.502650399999936],[135.3289642000001,-1.500970399999972],[135.33612060000007,-1.492960299999936],[135.33390810000003,-1.487620399999969],[135.33444210000005,-1.4849503],[135.33737180000003,-1.483220299999971],[135.33525090000012,-1.481040399999927],[135.3288116000001,-1.488350399999945],[135.3250885000001,-1.488510399999939],[135.32063290000008,-1.494370299999957],[135.315506,-1.494010299999957],[135.31086730000004,-1.496000399999957],[135.3087769000001,-1.493380299999956],[135.30888370000002,-1.4903404],[135.30500790000008,-1.490710399999955],[135.303833,-1.4873804],[135.30072020000011,-1.486210299999925],[135.29846190000012,-1.4882504],[135.2960968000001,-1.486990299999945],[135.29898070000002,-1.479970299999934],[135.29725650000012,-1.474680399999954],[135.295105,-1.475840299999959],[135.2934265,-1.475100399999974],[135.29039000000012,-1.478980399999955],[135.2856293000001,-1.478560499999958],[135.28327940000008,-1.481960399999934],[135.27923580000004,-1.481750499999976],[135.271225,-1.490810499999952],[135.2698669,-1.490500399999974],[135.26939390000007,-1.488040499999954],[135.271759,-1.486570499999971],[135.2713318000001,-1.483010499999978],[135.26541140000006,-1.481860499999925],[135.26153560000012,-1.478770499999939],[135.25970460000008,-1.482380499999977],[135.26039120000007,-1.488980399999946],[135.258316,-1.491650499999935],[135.26335140000003,-1.492330399999958],[135.26382450000006,-1.496160499999974],[135.26042170000005,-1.502540499999952],[135.26145940000004,-1.506790499999966],[135.257843,-1.511710499999936],[135.25947570000005,-1.518050399999936],[135.25350950000006,-1.521820599999955],[135.2493591000001,-1.519510599999933],[135.24963380000008,-1.516840599999966],[135.2473755000001,-1.514170599999943],[135.25009150000005,-1.511450599999932],[135.2505188,-1.507050599999957],[135.2473450000001,-1.5041705],[135.24342350000006,-1.505010599999935],[135.24169920000008,-1.5036405],[135.24394230000007,-1.498040599999968],[135.2493439000001,-1.494170499999939],[135.245575,-1.484270599999945],[135.237915,-1.484530599999971],[135.23582460000011,-1.482910599999968],[135.23194890000002,-1.486210599999936],[135.2303009000001,-1.491130599999963],[135.2253876000001,-1.494270599999936],[135.23040770000011,-1.498670599999969],[135.23077390000003,-1.500760599999978],[135.22480770000004,-1.504950599999972],[135.2241821,-1.507680499999935],[135.2216644,-1.508040499999936],[135.21885680000003,-1.503850599999964],[135.21508790000007,-1.501920599999949],[135.2077637000001,-1.504320599999971],[135.2062988,-1.499350499999935],[135.2071228000001,-1.493170599999928],[135.21763610000005,-1.489190599999972],[135.21705630000008,-1.482120599999973],[135.2185211000001,-1.477150599999959],[135.21569820000002,-1.474420499999951],[135.20993040000008,-1.476830599999971],[135.20678710000004,-1.476150599999926],[135.20516970000006,-1.477620599999966],[135.20291140000006,-1.476670599999977],[135.1983795000001,-1.478090799999961],[135.19702150000012,-1.480710699999975],[135.1924133000001,-1.476570699999968],[135.1929321,-1.4799207],[135.19178770000008,-1.481810699999926],[135.18655390000004,-1.483270799999957],[135.18157960000008,-1.488460799999928],[135.17869570000005,-1.477770699999951],[135.1745605000001,-1.477930699999945],[135.17036440000004,-1.481540699999925],[135.1681824000001,-1.477660699999944],[135.1651306000001,-1.477880699999957],[135.1608887000001,-1.487360699999954],[135.15496830000006,-1.490450899999928],[135.14959720000002,-1.483320799999944],[135.14981080000007,-1.481280799999979],[135.1468201,-1.479610799999932],[135.14624020000008,-1.474680899999953],[135.1406403000001,-1.473320799999954],[135.13880920000008,-1.471120799999937],[135.1369324000001,-1.471590899999967],[135.13383480000005,-1.478140799999949],[135.131012,-1.473270899999932],[135.128891,-1.474251899999956],[135.12863160000006,-1.477510799999948],[135.12570190000008,-1.478399399999944],[135.12124630000005,-1.476739399999929],[135.12557980000008,-1.472459399999934],[135.11964420000004,-1.465559399999961]]]]},"properties":{"shapeName":"Kepulauan Yapen","shapeISO":"","shapeID":"22746128B52061246775735","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[101.43638660000005,-1.694830299999978],[101.43050790000007,-1.6875098],[101.43078240000006,-1.681599499999948],[101.42837140000006,-1.678595399999949],[101.41119660000004,-1.672098799999958],[101.40323170000005,-1.678557699999942],[101.40179720000003,-1.686694199999977],[101.39717840000009,-1.6896633],[101.39030240000005,-1.689613699999938],[101.380894,-1.684642899999972],[101.37564370000007,-1.6910992],[101.36287710000005,-1.693729699999949],[101.35335930000008,-1.691594399999929],[101.34671460000004,-1.691893099999959],[101.33548040000005,-1.686775799999964],[101.33276770000003,-1.688160299999936],[101.33250240000007,-1.693886],[101.32996380000009,-1.697143099999948],[101.32259,-1.696803399999965],[101.30884260000005,-1.701178099999936],[101.28405960000003,-1.696273799999972],[101.26727030000006,-1.696072199999946],[101.24284810000006,-1.710719],[101.23153730000007,-1.724156199999925],[101.225348,-1.718991499999959],[101.21842990000005,-1.723636099999965],[101.21201560000009,-1.723876],[101.199175,-1.713953599999968],[101.19714860000005,-1.710585399999957],[101.19439230000006,-1.695544799999936],[101.19458020000008,-1.686356299999943],[101.19038490000008,-1.677650299999925],[101.18818890000006,-1.677652799999976],[101.18317390000004,-1.6889326],[101.18170150000009,-1.696076],[101.17503040000008,-1.705075099999931],[101.16885310000004,-1.710661199999947],[101.16330210000007,-1.707936099999927],[101.15186670000008,-1.694019199999957],[101.13440270000007,-1.683868299999972],[101.13162660000006,-1.685208599999953],[101.13152660000009,-1.743907399999955],[101.13385130000006,-1.755411699999968],[101.12862640000009,-1.763944799999933],[101.136128,-1.776138099999969],[101.14046640000004,-1.779503799999929],[101.14244920000004,-1.786287699999946],[101.142055,-1.795179899999937],[101.15182940000005,-1.801328499999954],[101.15333490000006,-1.803767599999958],[101.15875150000005,-1.832055699999955],[101.17151830000006,-1.851673699999935],[101.17597270000005,-1.855155099999934],[101.17863850000003,-1.861079399999937],[101.176832,-1.865489899999943],[101.16592590000005,-1.879451],[101.16360940000004,-1.894372899999951],[101.15194530000008,-1.903104699999972],[101.14703380000009,-1.904157],[101.14182990000006,-1.90242],[101.14453380000003,-1.911375599999928],[101.142784,-1.925878399999931],[101.15837280000005,-1.936303],[101.182529,-1.959908399999961],[101.19248770000007,-1.973319499999945],[101.20274070000005,-1.977468899999963],[101.20609780000007,-1.981125599999928],[101.20814150000007,-1.996755199999939],[101.206782,-2.009301],[101.24083320000005,-2.064946299999974],[101.27200650000003,-2.0331345],[101.28977630000009,-2.027296199999967],[101.400919,-2.031209299999944],[101.42087320000007,-2.030222199999969],[101.42693630000008,-2.026356699999951],[101.43979640000003,-2.045810299999971],[101.43751640000005,-2.0472869],[101.43935480000005,-2.059463499999936],[101.44863990000005,-2.0717698],[101.44649260000006,-2.074611299999958],[101.44667440000006,-2.076780799999938],[101.45047550000004,-2.080249599999945],[101.44865780000003,-2.082928799999934],[101.45694490000005,-2.089078399999948],[101.44405720000003,-2.105421199999967],[101.43909310000004,-2.107094599999925],[101.42256390000006,-2.102123199999937],[101.41752170000007,-2.1048575],[101.41557340000008,-2.1140743],[101.40903840000004,-2.118315399999972],[101.41536,-2.149472299999957],[101.41533590000006,-2.1564061],[101.41159080000006,-2.166465199999948],[101.40812050000005,-2.171384299999943],[101.39357040000004,-2.1804519],[101.38859370000006,-2.180776099999946],[101.37877790000005,-2.175855699999943],[101.36814050000004,-2.175049899999976],[101.36708410000006,-2.181186699999955],[101.36768750000005,-2.184217599999954],[101.370496,-2.187151299999925],[101.37001620000007,-2.191368099999977],[101.28210620000004,-2.2502573],[101.28095580000007,-2.260418899999934],[101.28538520000006,-2.276711],[101.30303280000004,-2.29285],[101.31947780000007,-2.3046],[101.41016020000006,-2.362497499999961],[101.41901190000004,-2.369887399999925],[101.43646780000006,-2.374404599999934],[101.44857180000008,-2.386727899999926],[101.48506560000004,-2.409759399999928],[101.52944170000006,-2.432277699999929],[101.54920970000006,-2.443553799999961],[101.55667,-2.449359799999968],[101.55680930000005,-2.449533599999938],[101.55750330000006,-2.450368399999945],[101.55976880000009,-2.443064699999979],[101.56073010000006,-2.422173099999952],[101.55937970000008,-2.416657399999963],[101.55360420000005,-2.4115083],[101.55023210000007,-2.405919099999949],[101.55591580000004,-2.367928599999971],[101.55515290000005,-2.363936699999954],[101.55062880000008,-2.358838499999933],[101.54923240000005,-2.354994799999929],[101.54987350000005,-2.351802599999928],[101.57045760000005,-2.355458799999951],[101.58243550000009,-2.361246599999959],[101.58696,-2.360290799999973],[101.59495560000005,-2.361385799999937],[101.59650430000005,-2.358807299999967],[101.59859490000008,-2.345471799999927],[101.598381,-2.336788199999944],[101.60227190000006,-2.334112599999969],[101.60901650000005,-2.334269899999924],[101.61706530000004,-2.332079],[101.620819,-2.333530899999971],[101.62708270000007,-2.346774899999957],[101.63949590000004,-2.350938299999939],[101.64436340000003,-2.349637499999972],[101.64615630000009,-2.347878399999956],[101.64708720000004,-2.343672],[101.651184,-2.342230799999925],[101.665985,-2.345766799999979],[101.67782580000005,-2.340611199999955],[101.69123080000008,-2.345872799999938],[101.69616710000008,-2.345667899999967],[101.71006020000004,-2.335848099999964],[101.71860510000005,-2.327581599999974],[101.72051250000004,-2.324104499999976],[101.72218320000007,-2.310225899999978],[101.72680670000005,-2.304578099999958],[101.73487860000006,-2.299585799999932],[101.74276730000008,-2.290269199999955],[101.74657430000008,-2.281760399999939],[101.74433150000004,-2.265036899999927],[101.74818420000008,-2.260998399999949],[101.748123,-2.249893199999974],[101.754036,-2.246739799999943],[101.75833120000004,-2.246732499999951],[101.76634980000006,-2.237729599999966],[101.77407070000004,-2.222658399999943],[101.77081310000005,-2.220060199999978],[101.77323910000007,-2.216774899999962],[101.77534480000008,-2.204977499999927],[101.78331770000005,-2.1970968],[101.79233570000008,-2.197651399999927],[101.79674530000005,-2.196019599999943],[101.81208240000007,-2.17771],[101.815332,-2.177652199999955],[101.817163,-2.180032599999947],[101.81695760000008,-2.182403499999964],[101.82100810000009,-2.184261599999957],[101.82299760000006,-2.186893399999974],[101.825731,-2.185969899999975],[101.82943110000008,-2.189700599999981],[101.83215270000005,-2.187429699999939],[101.83297130000005,-2.184377],[101.836,-2.184059699999978],[101.83730460000004,-2.181813299999931],[101.83516080000004,-2.177398799999935],[101.82959170000004,-2.180554799999925],[101.825514,-2.177465099999949],[101.82301480000007,-2.172015],[101.82088610000005,-2.170814],[101.82174080000004,-2.167363199999954],[101.820087,-2.162691299999949],[101.81818230000005,-2.1623453],[101.81731440000004,-2.160194399999966],[101.81477510000008,-2.160852699999964],[101.81112380000008,-2.157521899999949],[101.80902180000004,-2.1507594],[101.80697790000005,-2.150943799999936],[101.80380970000004,-2.146269],[101.80062080000005,-2.145842499999958],[101.80108790000008,-2.143945499999973],[101.79800710000006,-2.144279],[101.79842950000005,-2.140969199999972],[101.79500710000008,-2.142002199999979],[101.79271420000003,-2.144480299999941],[101.79168080000005,-2.143542099999934],[101.79224560000006,-2.140006799999981],[101.78875110000007,-2.139465899999948],[101.78955250000007,-2.125215499999968],[101.78378450000008,-2.1172434],[101.78710340000003,-2.109162599999934],[101.78287660000007,-2.1053348],[101.780992,-2.100241799999935],[101.77279050000004,-2.094772199999966],[101.76856370000007,-2.095700499999964],[101.76302480000004,-2.081611499999951],[101.75833280000006,-2.078689399999973],[101.75746310000005,-2.072925399999974],[101.75947730000007,-2.061155099999951],[101.75829470000008,-2.057221699999957],[101.75289290000006,-2.051808199999925],[101.74677430000008,-2.0508302],[101.72112440000006,-2.025287599999956],[101.72059770000004,-2.0198448],[101.72258170000003,-2.009791899999925],[101.71853780000004,-1.997565799999961],[101.70836020000007,-1.987075499999946],[101.68783730000007,-1.977321299999971],[101.67047890000003,-1.972514799999942],[101.65566240000004,-1.954913499999975],[101.65683740000009,-1.945355699999936],[101.64493870000007,-1.927463499999931],[101.64188770000004,-1.909635399999956],[101.63796860000008,-1.896563699999945],[101.63129210000005,-1.891461499999934],[101.61617130000008,-1.878941699999928],[101.58948120000008,-1.848247699999945],[101.56474930000007,-1.829027799999949],[101.50840610000006,-1.776010499999927],[101.50018940000007,-1.763137699999959],[101.48041550000005,-1.749932699999931],[101.47386170000004,-1.742923699999949],[101.46723950000006,-1.731106099999977],[101.45076770000009,-1.709384399999976],[101.44490830000007,-1.702816],[101.438887,-1.701156],[101.43638660000005,-1.694830299999978]]]},"properties":{"shapeName":"Kerinci","shapeISO":"","shapeID":"22746128B54947459217393","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[110.20398260000007,-3.064629],[110.20228560000004,-3.066138499999965],[110.20375450000006,-3.067918499999962],[110.20496690000004,-3.066726899999935],[110.20398260000007,-3.064629]]],[[[110.22462820000004,-3.041828599999974],[110.22541260000008,-3.041031099999941],[110.22406490000009,-3.039186899999947],[110.22462820000004,-3.041828599999974]]],[[[110.09185940000003,-2.87702],[110.08919050000009,-2.877550299999939],[110.08957680000009,-2.881854799999928],[110.09231720000008,-2.879542],[110.09185940000003,-2.87702]]],[[[110.16980840000008,-2.852911699999936],[110.165076,-2.853138],[110.15888410000008,-2.856943799999954],[110.16167610000008,-2.864981499999942],[110.15502370000007,-2.879854299999977],[110.15200770000007,-2.882954],[110.14716580000004,-2.883065199999976],[110.13308810000007,-2.887954499999978],[110.13133440000007,-2.8901934],[110.13247330000007,-2.895057799999961],[110.13439360000007,-2.899233399999957],[110.136011,-2.900900499999977],[110.13869640000007,-2.9006919],[110.14042750000004,-2.903297299999963],[110.14395250000007,-2.900734199999931],[110.14477330000005,-2.898322199999939],[110.14703890000004,-2.899109],[110.14800710000009,-2.903130699999963],[110.15183780000007,-2.899438099999941],[110.154998,-2.9008574],[110.15650130000006,-2.902467],[110.15577560000008,-2.905281099999968],[110.15977380000004,-2.9067393],[110.159694,-2.9116411],[110.16129190000004,-2.914112299999942],[110.16302620000005,-2.9123903],[110.16641640000006,-2.9120099],[110.17199420000009,-2.9149819],[110.17990170000007,-2.909492299999954],[110.18477780000006,-2.908442699999966],[110.19206880000007,-2.912603099999956],[110.19196170000004,-2.902550399999939],[110.19567940000007,-2.896904499999948],[110.20061430000004,-2.8933465],[110.20006510000007,-2.888961199999926],[110.20170740000009,-2.883666399999925],[110.18952840000009,-2.870685199999969],[110.179593,-2.862971099999925],[110.17445690000005,-2.855092899999931],[110.16980840000008,-2.852911699999936]]],[[[110.08315140000008,-2.829482599999949],[110.08160690000005,-2.832061499999952],[110.08388870000005,-2.836275699999931],[110.08502450000009,-2.832739099999969],[110.08315140000008,-2.829482599999949]]],[[[110.11308260000004,-2.674983599999962],[110.11145740000006,-2.672664],[110.10588620000004,-2.675244899999939],[110.10270270000007,-2.673863899999958],[110.098135,-2.674710199999936],[110.09450710000004,-2.680965899999933],[110.09153730000008,-2.690920699999936],[110.08672610000008,-2.693667499999947],[110.08580810000007,-2.695880699999975],[110.080383,-2.693914],[110.075667,-2.701165599999968],[110.07135820000008,-2.718653699999948],[110.06808490000009,-2.7240123],[110.06656960000004,-2.731383599999958],[110.05289150000004,-2.742241899999954],[110.05027550000005,-2.741651199999978],[110.04923190000005,-2.743029],[110.04387990000004,-2.744175299999938],[110.04405840000004,-2.747878599999979],[110.05485420000008,-2.7481049],[110.06019180000004,-2.752642099999946],[110.069783,-2.753767299999936],[110.07303590000004,-2.757829099999981],[110.08245360000006,-2.761288899999954],[110.09135360000005,-2.757590799999946],[110.09607920000008,-2.759533099999942],[110.10234960000008,-2.758159199999966],[110.10475210000004,-2.753896],[110.114017,-2.752272499999947],[110.11501960000004,-2.750143099999946],[110.12022260000003,-2.75],[110.12304230000007,-2.744701],[110.12829220000003,-2.742371299999945],[110.12873350000007,-2.741162899999949],[110.12577040000008,-2.740741899999932],[110.123333,-2.737616699999933],[110.12504830000006,-2.735475799999961],[110.12463460000004,-2.731610099999955],[110.12644330000006,-2.7295189],[110.12327810000005,-2.727978499999949],[110.12063560000007,-2.7222359],[110.11628670000005,-2.7211263],[110.11536010000009,-2.718813599999976],[110.11605670000006,-2.716655199999934],[110.12059550000004,-2.716265399999941],[110.12252180000007,-2.712098499999968],[110.11880020000007,-2.708362],[110.11967220000008,-2.706645899999955],[110.11759470000004,-2.702573399999949],[110.12398840000009,-2.697864299999935],[110.127733,-2.703079099999968],[110.12674810000004,-2.6957927],[110.12788210000008,-2.694185199999936],[110.119323,-2.686839299999974],[110.12171370000004,-2.680657099999962],[110.120942,-2.6781554],[110.11938350000008,-2.677508],[110.11727610000008,-2.678966499999945],[110.11458750000008,-2.6778037],[110.11308260000004,-2.674983599999962]]],[[[110.11819130000003,-2.6697244],[110.11725810000007,-2.670135399999936],[110.11855060000005,-2.6732383],[110.12060730000007,-2.672722699999952],[110.12040560000008,-2.670347],[110.11819130000003,-2.6697244]]],[[[110.12024040000006,-2.668366299999946],[110.11975020000006,-2.666180499999939],[110.11799490000004,-2.665459399999975],[110.12024040000006,-2.668366299999946]]],[[[110.12673260000008,-2.627294799999959],[110.11824580000007,-2.630424199999936],[110.11403070000006,-2.634095099999968],[110.11614930000007,-2.633522199999959],[110.11995610000008,-2.635080699999946],[110.120323,-2.637965],[110.12188150000009,-2.638528599999972],[110.12856420000008,-2.628672299999948],[110.12673260000008,-2.627294799999959]]],[[[110.15231060000008,-2.632885099999953],[110.15025530000008,-2.630151099999978],[110.15072270000007,-2.627162399999975],[110.14868840000008,-2.627365199999929],[110.14785390000009,-2.630619799999977],[110.15021420000005,-2.632935099999941],[110.15023040000005,-2.637195499999962],[110.15276140000009,-2.638394699999935],[110.15382970000007,-2.636727599999972],[110.15231060000008,-2.632885099999953]]],[[[110.06154480000004,-2.372715],[110.06003690000006,-2.372908399999972],[110.05861320000008,-2.377033799999936],[110.07032310000005,-2.378634499999976],[110.07111780000008,-2.375103099999933],[110.069814,-2.373624699999937],[110.06625990000003,-2.374448],[110.06154480000004,-2.372715]]],[[[110.07165440000006,-2.372585899999933],[110.072804,-2.370396299999925],[110.07062770000005,-2.3699232],[110.07165440000006,-2.372585899999933]]],[[[109.99147970000007,-2.259613099999967],[109.98835120000007,-2.255695],[109.98925210000004,-2.2584346],[109.99147970000007,-2.259613099999967]]],[[[110.08227510000006,-2.170354799999927],[110.081253,-2.168804499999965],[110.08107950000004,-2.170348099999956],[110.08373660000007,-2.173060299999975],[110.08459940000006,-2.172456499999953],[110.08227510000006,-2.170354799999927]]],[[[110.08021830000007,-2.1682301],[110.07866380000007,-2.166768699999977],[110.07843290000005,-2.1699451],[110.08021830000007,-2.1682301]]],[[[109.91967810000006,-1.819741299999976],[109.91844930000008,-1.819927799999959],[109.918406,-1.821761599999945],[109.922426,-1.823376699999926],[109.91967810000006,-1.819741299999976]]],[[[109.93805620000006,-1.772402099999965],[109.93636110000006,-1.770878099999948],[109.93493790000008,-1.771507099999951],[109.93805620000006,-1.772402099999965]]],[[[109.92925760000008,-1.763818199999946],[109.92957330000007,-1.765164],[109.93282360000006,-1.765339499999925],[109.92925760000008,-1.763818199999946]]],[[[110.023014,-1.435857699999929],[110.02167090000006,-1.434492899999952],[110.02432130000005,-1.437521699999934],[110.023014,-1.435857699999929]]],[[[110.04806910000008,-1.430364699999927],[110.046886,-1.435566299999948],[110.04968150000008,-1.438626299999953],[110.05395590000006,-1.4341974],[110.04927,-1.432910599999957],[110.04806910000008,-1.430364699999927]]],[[[110.01491450000009,-1.429246099999943],[110.01314620000005,-1.426985899999977],[110.01266940000005,-1.429685499999948],[110.01626230000005,-1.4361588],[110.019192,-1.436619599999972],[110.020734,-1.434456599999976],[110.01833740000006,-1.432962099999941],[110.01814840000009,-1.430032499999925],[110.01620880000007,-1.427963699999964],[110.01491450000009,-1.429246099999943]]],[[[110.00648240000004,-1.429413099999977],[110.00775810000005,-1.426982],[110.00657960000007,-1.424473199999966],[110.00446750000003,-1.425391299999944],[110.00351520000004,-1.427899199999956],[110.00648240000004,-1.429413099999977]]],[[[110.06842820000008,-1.368424199999936],[110.07454870000004,-1.387709],[110.07441110000008,-1.405150799999944],[110.07189210000007,-1.420989799999973],[110.06445440000005,-1.429756299999951],[110.05705640000008,-1.434611899999936],[110.06140410000006,-1.445049099999949],[110.06408850000008,-1.460072099999934],[110.06034980000004,-1.464327799999978],[110.05646820000004,-1.476556599999981],[110.04422450000004,-1.494767599999932],[110.03537120000004,-1.525264099999958],[110.03551350000004,-1.534877699999925],[110.04033410000005,-1.555387899999971],[110.041976,-1.5827822],[110.03311540000004,-1.663640099999952],[110.02656540000004,-1.682745799999964],[110.016874,-1.700251],[110.00016890000006,-1.714384199999927],[109.98410150000007,-1.739956799999959],[109.97620620000004,-1.748032499999965],[109.962352,-1.7575588],[109.95795,-1.762317699999926],[109.95128380000006,-1.763862199999949],[109.95043090000007,-1.762769799999944],[109.94022710000007,-1.762765599999966],[109.93998920000007,-1.765454399999953],[109.94426980000009,-1.770573199999944],[109.94574030000007,-1.774777699999959],[109.94099630000005,-1.777091799999937],[109.92976240000007,-1.776777699999968],[109.91685150000006,-1.7726647],[109.91326230000004,-1.773974299999963],[109.90832870000008,-1.800142499999936],[109.90851,-1.805194299999926],[109.92391230000004,-1.819441899999958],[109.92809710000006,-1.830204799999933],[109.92477610000009,-1.83157],[109.91295440000005,-1.826633],[109.90770760000004,-1.827432499999929],[109.90655120000008,-1.825291],[109.902568,-1.8258764],[109.90116890000007,-1.828403299999934],[109.91537430000005,-1.849247399999967],[109.92439720000004,-1.857599299999947],[109.94363230000005,-1.864844299999959],[109.96283450000004,-1.874652399999945],[109.97571410000006,-1.883063399999969],[109.99370520000008,-1.898239599999954],[110.01020570000009,-1.907613699999956],[110.01644110000007,-1.910446299999933],[110.04572360000009,-1.918217599999934],[110.067382,-1.931484399999931],[110.07507070000008,-1.939401299999929],[110.085453,-1.954744199999936],[110.09995490000006,-1.980184799999961],[110.09990930000004,-1.985311599999932],[110.102962,-1.9886449],[110.10275940000008,-1.993699799999945],[110.10441480000009,-1.994275099999925],[110.10551170000008,-1.998325399999942],[110.104608,-2.001222],[110.10866860000004,-2.014771199999927],[110.10726320000003,-2.018025499999965],[110.10892380000007,-2.026523199999929],[110.11106390000003,-2.028271599999925],[110.11691630000007,-2.028059399999961],[110.12026390000005,-2.029853499999945],[110.11663810000005,-2.033639199999925],[110.11238490000005,-2.0440181],[110.11812820000006,-2.060598399999947],[110.11733660000004,-2.0622219],[110.11955710000007,-2.0778081],[110.11878810000007,-2.098103],[110.11503550000003,-2.112140899999929],[110.11594340000005,-2.126394399999924],[110.10889620000006,-2.155786699999965],[110.10588710000007,-2.159116599999948],[110.10255180000007,-2.166677899999968],[110.08957060000006,-2.179586299999926],[110.08519690000008,-2.179063],[110.08581040000007,-2.1853821],[110.08448660000005,-2.191047699999956],[110.08753950000005,-2.194267],[110.08840420000007,-2.192447299999969],[110.09085210000006,-2.192998099999954],[110.09386350000005,-2.199882199999934],[110.09427710000006,-2.207714799999962],[110.09137230000005,-2.224893099999974],[110.08736930000003,-2.234440399999926],[110.08191950000008,-2.2404253],[110.07743220000003,-2.242343199999937],[110.07166470000004,-2.238863099999946],[110.07116020000007,-2.237139499999955],[110.06183410000006,-2.2458157],[110.06435430000005,-2.248515899999973],[110.07220110000009,-2.246725799999979],[110.07691130000006,-2.247877699999947],[110.07836920000005,-2.246927199999959],[110.07888270000007,-2.243696399999976],[110.08489840000004,-2.244151399999964],[110.08747670000008,-2.241525],[110.09277890000004,-2.243517299999951],[110.10214,-2.25],[110.11395520000008,-2.262578499999961],[110.12185790000007,-2.274437],[110.12542730000007,-2.283516399999939],[110.13197130000009,-2.292124899999976],[110.13886940000003,-2.305478599999958],[110.14572430000004,-2.3315057],[110.14546420000005,-2.349893499999951],[110.14353110000008,-2.3533123],[110.14869460000006,-2.372474699999941],[110.14874750000007,-2.383257299999968],[110.15306290000007,-2.4082478],[110.15292760000006,-2.415392199999928],[110.15034990000004,-2.419375699999932],[110.15118480000007,-2.424594],[110.14716610000005,-2.427877899999942],[110.15282280000008,-2.430877899999928],[110.15527140000006,-2.435092199999929],[110.15982330000008,-2.4348126],[110.16450250000008,-2.4382078],[110.17244750000003,-2.447020799999962],[110.17368530000005,-2.450606799999946],[110.17477080000003,-2.449918099999934],[110.17674870000008,-2.453155299999935],[110.18084030000006,-2.455608799999936],[110.18562770000005,-2.489152499999932],[110.18438770000006,-2.498596199999952],[110.18696340000008,-2.498943899999972],[110.18967390000006,-2.502094299999953],[110.19372950000007,-2.509703599999966],[110.19714390000007,-2.520908199999951],[110.19735320000007,-2.524500199999977],[110.19076660000007,-2.547202899999945],[110.19003060000006,-2.571197899999959],[110.18580580000008,-2.579332],[110.18357180000004,-2.590310399999964],[110.17906060000007,-2.590867599999967],[110.17813630000006,-2.593629799999974],[110.17622520000003,-2.593305399999963],[110.17669920000009,-2.596066699999938],[110.17272860000008,-2.597899799999936],[110.17609090000008,-2.598383099999978],[110.17395380000005,-2.600234399999977],[110.17432390000005,-2.602732399999979],[110.17038360000004,-2.602503399999932],[110.16919110000003,-2.5996947],[110.16738530000003,-2.6025047],[110.166169,-2.599950099999944],[110.16263770000006,-2.601882699999976],[110.16342620000006,-2.6052836],[110.16191330000004,-2.609051699999952],[110.15729740000006,-2.608614399999965],[110.15938120000004,-2.610130799999979],[110.15902320000004,-2.611609699999974],[110.15562040000009,-2.612118099999975],[110.15718630000003,-2.614674499999978],[110.15294470000003,-2.614069499999971],[110.15607640000007,-2.615684199999976],[110.15729350000004,-2.618029799999931],[110.153955,-2.616548],[110.15333770000007,-2.618544099999951],[110.15084610000008,-2.617408599999976],[110.14867420000007,-2.621900899999957],[110.15110550000009,-2.621616899999935],[110.152035,-2.623196],[110.15058,-2.625862],[110.15779050000003,-2.628958299999965],[110.15921190000006,-2.6349935],[110.16504290000006,-2.631884699999944],[110.16721020000006,-2.6324782],[110.17093860000006,-2.630952299999933],[110.18003740000006,-2.634378499999968],[110.19002290000009,-2.634512],[110.19974870000004,-2.638507],[110.214084,-2.648087],[110.218921,-2.663117899999975],[110.21884950000003,-2.667028599999981],[110.21699180000007,-2.6705113],[110.219161,-2.671701499999926],[110.21836390000004,-2.6739363],[110.22115050000008,-2.675362499999949],[110.22201810000007,-2.683090599999957],[110.230656,-2.689674799999977],[110.23347,-2.697386599999959],[110.23243360000004,-2.703243599999951],[110.22810210000006,-2.712813599999947],[110.23022830000008,-2.713940299999933],[110.23173720000005,-2.717134699999974],[110.23131530000006,-2.723346899999967],[110.22736180000004,-2.730525599999964],[110.222415,-2.734088899999961],[110.218056,-2.739819799999964],[110.22423860000004,-2.740270499999951],[110.22700620000006,-2.743757],[110.23522060000005,-2.746331099999963],[110.24675610000008,-2.754698599999927],[110.25614950000005,-2.758759099999963],[110.25868030000004,-2.7615754],[110.26141760000007,-2.769447],[110.26449340000005,-2.784059],[110.26497950000004,-2.7986502],[110.26281740000007,-2.814924799999972],[110.25663150000008,-2.836762699999952],[110.25105170000006,-2.851539],[110.24242290000007,-2.865781799999979],[110.22410240000005,-2.887239099999931],[110.24771830000009,-2.918188699999973],[110.25296820000005,-2.934527399999979],[110.25727510000007,-2.955847299999959],[110.25979730000006,-2.960784699999977],[110.26515110000008,-2.964865499999974],[110.28071270000004,-2.970017],[110.29384740000006,-2.978880499999946],[110.30020050000007,-2.984365199999957],[110.30188990000005,-2.987720199999956],[110.30060810000003,-2.989866699999936],[110.30598330000004,-2.9964055],[110.30667570000008,-2.990930299999945],[110.31502040000004,-2.983263699999952],[110.31812560000009,-2.978002699999934],[110.35174740000008,-2.946615299999962],[110.37336960000005,-2.929418899999973],[110.38970220000004,-2.918761299999971],[110.39691910000005,-2.911363799999947],[110.41886250000005,-2.896822899999961],[110.47092510000004,-2.870458499999927],[110.47586250000006,-2.866722699999968],[110.496314,-2.857603399999959],[110.50882740000009,-2.853278699999976],[110.53314270000004,-2.850959199999977],[110.53509530000008,-2.845016199999975],[110.54750020000006,-2.840268599999945],[110.55785650000007,-2.838687199999924],[110.56895890000004,-2.839885099999947],[110.58427340000009,-2.847512699999925],[110.58576750000009,-2.849856299999942],[110.59651840000004,-2.8529563],[110.60565760000009,-2.861413399999947],[110.61612870000005,-2.874486799999943],[110.61783390000005,-2.880061599999976],[110.62346050000008,-2.889466899999945],[110.62919280000006,-2.9057429],[110.63402570000005,-2.929943699999967],[110.63752370000009,-2.981728199999964],[110.64404750000006,-2.989816599999926],[110.63536510000006,-2.992503299999953],[110.61211690000005,-2.98451],[110.61058390000005,-2.987854199999958],[110.61359650000009,-2.995641299999932],[110.62798820000006,-3.012825299999975],[110.62557070000008,-3.015206199999966],[110.62760570000006,-3.017433],[110.62511730000006,-3.018162199999949],[110.622783,-3.021081699999968],[110.62286550000005,-3.023451399999942],[110.62672070000008,-3.029185499999926],[110.64963070000005,-3.039549799999975],[110.65210390000004,-3.039918599999964],[110.65249750000004,-3.0378542],[110.65417550000006,-3.039697899999965],[110.65527140000006,-3.037816199999952],[110.65710410000008,-3.039884299999926],[110.65904220000004,-3.038329099999942],[110.65879610000007,-3.035214199999928],[110.66091510000007,-3.033812399999931],[110.67240040000007,-3.031522299999949],[110.67683060000007,-3.026281599999948],[110.70304970000007,-3.011065299999927],[110.72415780000006,-3.003373499999952],[110.72661430000005,-3.001468099999954],[110.728333,-2.992154],[110.73447880000003,-2.988270799999952],[110.74110150000007,-2.973838299999954],[110.744321,-2.9628793],[110.75517330000008,-2.942372099999943],[110.780672,-2.921624899999927],[110.788194,-2.913119],[110.79364960000004,-2.909267399999976],[110.79969480000005,-2.907045799999935],[110.824784,-2.906713399999944],[110.82884860000007,-2.905523],[110.83813180000004,-2.895586399999956],[110.879834,-2.8818107],[110.888565,-2.871518],[110.91482620000005,-2.866549],[110.92703290000009,-2.868314899999973],[110.93124960000006,-2.867692899999952],[110.94640210000006,-2.864950599999929],[110.96664270000008,-2.857847499999934],[110.97129630000006,-2.8528202],[110.97550760000007,-2.842319299999929],[110.99314810000004,-2.832795899999951],[110.99889670000005,-2.826704199999938],[111.00584620000006,-2.802769199999943],[111.01154740000004,-2.794880399999954],[111.03291930000006,-2.785654799999975],[111.04141330000004,-2.785776699999928],[111.05786340000009,-2.782491499999935],[111.074158,-2.777366099999938],[111.08315150000004,-2.7719043],[111.10152470000008,-2.767778699999951],[111.11236480000008,-2.758616199999949],[111.127694,-2.752986499999963],[111.14637280000005,-2.741369899999938],[111.15586910000007,-2.724731199999951],[111.15730790000003,-2.718254899999977],[111.16931710000006,-2.706264499999975],[111.17133750000005,-2.697717699999941],[111.17163080000006,-2.685922099999971],[111.16632840000005,-2.674326599999972],[111.16380690000005,-2.671698899999967],[111.15933990000008,-2.670844299999942],[111.14396670000008,-2.671956499999965],[111.13566590000005,-2.670355299999926],[111.12815850000004,-2.666059],[111.118576,-2.652645299999961],[111.11832430000004,-2.647019599999965],[111.12002560000008,-2.642705199999966],[111.12796020000008,-2.634944899999937],[111.13370510000004,-2.624434899999926],[111.13629910000009,-2.611283799999967],[111.13442990000004,-2.595491599999946],[111.11608890000008,-2.541729],[111.11429590000006,-2.515155499999935],[111.10546110000007,-2.484213099999977],[111.10599520000005,-2.448956499999952],[111.10318760000007,-2.424110399999961],[111.09602360000008,-2.399725399999966],[111.09362790000006,-2.380948499999931],[111.08951570000005,-2.362922199999957],[111.07978820000005,-2.338881],[111.06958390000005,-2.299576499999944],[111.06421660000007,-2.291314099999965],[111.05852510000005,-2.278117599999973],[111.04941560000009,-2.2722745],[111.04138940000007,-2.262460899999951],[111.03349340000005,-2.248665099999926],[111.03189090000006,-2.241056399999934],[111.03506850000008,-2.231559399999981],[111.04064180000006,-2.2222207],[111.06300350000004,-2.202901399999973],[111.06584930000008,-2.197212199999967],[111.06361770000007,-2.185128299999974],[111.06529230000007,-2.182342499999947],[111.07233810000008,-2.178227199999981],[111.07878110000007,-2.161196],[111.07822040000008,-2.153856099999928],[111.070755,-2.141464699999972],[111.06755060000006,-2.130904899999962],[111.06620180000004,-2.117956499999934],[111.05731570000006,-2.071797199999935],[111.058697,-2.063078399999938],[111.06005290000007,-2.058235299999978],[111.06670960000008,-2.053049399999963],[111.08307090000005,-2.0451037],[111.08843390000004,-2.024158599999964],[111.09030230000008,-2.021915499999977],[111.09001130000007,-2.016204699999946],[111.08879020000006,-2.014725899999974],[111.08584520000005,-2.015466199999935],[111.08477220000009,-2.012643499999967],[111.073392,-2.015060299999959],[111.05933790000006,-2.014586699999938],[111.05667540000007,-2.012994799999944],[111.05457440000004,-2.009799499999929],[111.05378320000005,-2.002934699999969],[111.05603690000004,-1.999542199999951],[111.05531890000009,-1.993253899999957],[111.05316520000008,-1.989645399999972],[111.01799,-1.956085599999938],[111.01279020000004,-1.9543442],[110.99035580000009,-1.957189699999958],[110.98447490000007,-1.955719699999975],[110.97979510000005,-1.9502641],[110.981131,-1.941041899999959],[110.99043060000008,-1.929578899999967],[110.994145,-1.921185699999967],[110.99602190000007,-1.9090789],[110.99574780000006,-1.903049599999974],[110.99355490000005,-1.897294399999964],[110.981694,-1.889217899999949],[110.97683390000009,-1.883591499999966],[110.97462860000007,-1.878446899999972],[110.974211,-1.870842099999948],[110.97807620000009,-1.837725899999953],[110.98649240000009,-1.817371799999933],[111.00492160000005,-1.8010967],[111.01385720000007,-1.777685899999938],[111.01215230000008,-1.757876],[111.01614830000005,-1.74428],[111.01354050000003,-1.737135299999977],[111.00580460000003,-1.7272663],[111.00493720000009,-1.721281599999941],[111.00638740000005,-1.705435099999931],[111.004878,-1.700391399999944],[111.00327990000005,-1.696781399999963],[110.98602420000009,-1.676415199999951],[110.97449410000007,-1.669120599999928],[110.96296390000003,-1.672179599999936],[110.95567320000004,-1.678968],[110.95267490000003,-1.684106899999961],[110.94856670000007,-1.700039099999969],[110.94292450000006,-1.71038],[110.92881770000008,-1.718078],[110.91660240000004,-1.720295799999974],[110.90425430000005,-1.712417499999958],[110.90060420000009,-1.713092],[110.89355470000004,-1.70162],[110.89265340000009,-1.689234],[110.88650510000008,-1.681535],[110.882454,-1.679426],[110.86384580000004,-1.682592],[110.85514830000005,-1.673833],[110.85664840000004,-1.644901599999969],[110.85378050000008,-1.636412599999971],[110.858899,-1.630497],[110.88155370000004,-1.618873],[110.88965920000004,-1.612459799999954],[110.89385990000005,-1.60106],[110.899767,-1.591943599999979],[110.91352080000007,-1.584604],[110.94517520000005,-1.582189],[110.95192720000006,-1.579168],[110.95568770000006,-1.573936499999945],[110.95627590000004,-1.570256],[110.96243290000007,-1.559083],[110.96887970000006,-1.552289],[110.97323610000007,-1.54383],[110.97866510000006,-1.5395949],[110.98403930000006,-1.5387],[110.98973850000004,-1.540510099999949],[110.99589160000005,-1.555854099999976],[111.00842210000008,-1.561858699999959],[111.01330050000007,-1.562509],[111.01687790000005,-1.562509],[111.02110590000007,-1.558607099999961],[111.02737220000006,-1.548254],[111.03562540000007,-1.540494],[111.04907530000008,-1.5397478],[111.05980770000008,-1.535520799999972],[111.06768230000006,-1.538690799999927],[111.06956450000007,-1.544950399999948],[111.06956450000007,-1.551453599999945],[111.07476810000009,-1.559257399999979],[111.078996,-1.5599077],[111.08452480000005,-1.558607099999961],[111.09720390000007,-1.552683799999954],[111.11867350000006,-1.552754199999924],[111.12229750000006,-1.549254299999973],[111.12311350000004,-1.5441135],[111.11860990000008,-1.531097699999975],[111.11828250000008,-1.518794299999968],[111.11914510000008,-1.512759899999935],[111.12774380000008,-1.498836499999925],[111.12896340000009,-1.473428799999965],[111.13270530000005,-1.459794199999976],[111.13837630000006,-1.451035199999978],[111.14790710000005,-1.441456099999925],[111.15726540000009,-1.434291],[111.16336560000008,-1.433307599999978],[111.196481,-1.437963699999955],[111.20070710000005,-1.4370601],[111.20794310000008,-1.433765],[111.21861470000005,-1.422758499999929],[111.22277970000005,-1.420794099999966],[111.24868590000005,-1.4192983],[111.25962710000005,-1.4162588],[111.27560830000004,-1.407475099999942],[111.28284920000004,-1.401872399999945],[111.31745050000006,-1.369974299999967],[111.32459810000006,-1.365184199999931],[111.33174540000005,-1.349838499999976],[111.33208960000007,-1.334299399999963],[111.37043660000006,-1.329845599999942],[111.354353,-1.315620199999955],[111.32467460000004,-1.301342],[111.31536780000005,-1.293088199999943],[111.31418530000008,-1.271185199999934],[111.31540990000008,-1.2623728],[111.31332,-1.257423599999925],[111.301978,-1.255475199999978],[111.27138530000008,-1.258478299999979],[111.26597240000007,-1.253763899999967],[111.25732140000008,-1.235426],[111.25687330000005,-1.230776599999956],[111.26113560000005,-1.214229399999965],[111.26040830000005,-1.209117399999968],[111.24730950000009,-1.197687],[111.23960330000006,-1.193528499999957],[111.23512110000007,-1.183037799999966],[111.23706670000007,-1.175057199999969],[111.26176770000006,-1.135619799999972],[111.26467310000004,-1.125395599999933],[111.26411170000006,-1.1135654],[111.26621050000006,-1.101787499999944],[111.26538660000006,-1.097907299999974],[111.24104030000007,-1.062702399999978],[111.23864270000007,-1.057100599999956],[111.23689740000009,-1.056662199999948],[111.22486680000009,-1.039977399999941],[111.21790120000009,-1.035136199999954],[111.21153820000006,-1.023756599999956],[111.20594590000007,-1.018578399999967],[111.19837750000005,-1.014952599999958],[111.15297050000004,-1.009663799999942],[111.143908,-1.007204],[111.14605440000008,-0.977426499999979],[111.15017030000007,-0.964407799999947],[111.14409350000005,-0.960660299999972],[111.122531,-0.9598722],[111.11861040000008,-0.958097],[111.11429770000007,-0.951587899999936],[111.11516290000009,-0.944238299999938],[111.12123940000004,-0.939109599999938],[111.12163120000008,-0.934178299999928],[111.12437540000008,-0.930825],[111.13182420000004,-0.929246699999965],[111.14162490000007,-0.922145299999954],[111.15573830000005,-0.919580499999938],[111.17004730000008,-0.909914599999979],[111.17063510000008,-0.904194299999972],[111.16789040000003,-0.895318199999963],[111.15580390000008,-0.874563499999965],[111.16370950000004,-0.863082799999972],[111.17079720000004,-0.861063099999967],[111.17776290000006,-0.862207],[111.18456830000008,-0.867974499999946],[111.19374650000009,-0.880029799999932],[111.19667620000007,-0.880544099999952],[111.20181840000004,-0.879731599999957],[111.20520580000004,-0.877488799999981],[111.21770860000004,-0.863609],[111.21640480000008,-0.855786499999965],[111.218291,-0.8474842],[111.21731060000008,-0.842158499999925],[111.21176180000003,-0.8319423],[111.2339,-0.783930599999962],[111.22903290000005,-0.740962499999966],[111.23730270000004,-0.7325972],[111.24102620000008,-0.7187896],[111.24024230000003,-0.7072029],[111.24200610000008,-0.700693599999965],[111.24024140000006,-0.689845],[111.22154120000005,-0.663673199999948],[111.22167770000004,-0.658692099999939],[111.24614520000006,-0.628309099999967],[111.24773710000005,-0.620527],[111.26081830000004,-0.613508499999966],[111.26513030000007,-0.609760499999936],[111.26806990000006,-0.601278699999966],[111.26552440000006,-0.587813299999937],[111.24612150000007,-0.587005699999963],[111.23933310000007,-0.588618199999928],[111.23450920000005,-0.577309699999944],[111.22843290000009,-0.571589699999947],[111.22627660000006,-0.564883299999963],[111.22158950000005,-0.562008099999957],[111.21945750000003,-0.551216499999953],[111.21524610000006,-0.540321199999937],[111.20206530000007,-0.5251554],[111.19640910000004,-0.519456399999967],[111.18046370000008,-0.513784299999941],[111.15057170000006,-0.515926499999978],[111.13308510000007,-0.513162],[111.11919190000003,-0.504160799999966],[111.09580780000005,-0.503649799999948],[111.09163450000005,-0.501977899999929],[111.08886980000005,-0.495542399999977],[111.08848570000004,-0.4972374],[111.084191,-0.499125399999969],[111.06885680000005,-0.501931899999931],[111.06538920000008,-0.500698799999952],[111.05088490000009,-0.502856599999973],[111.02960540000004,-0.501221399999963],[111.01782730000008,-0.503618199999949],[110.97180170000007,-0.484997],[110.94698120000004,-0.481505899999945],[110.93565440000003,-0.470103499999937],[110.92578020000008,-0.4677645],[110.92142440000003,-0.4622097],[110.90724460000007,-0.458028099999979],[110.89959740000006,-0.459164199999975],[110.88143720000005,-0.477983299999948],[110.86693530000008,-0.4903578],[110.87210280000005,-0.50589],[110.85991950000005,-0.515987199999927],[110.85039750000004,-0.527219499999944],[110.84626280000003,-0.541266],[110.84677930000004,-0.555312499999957],[110.84367820000006,-0.567798299999936],[110.81267040000006,-0.589647499999955],[110.80905270000005,-0.595890299999951],[110.80388460000006,-0.601092499999936],[110.78269610000007,-0.606814399999962],[110.77546110000009,-0.606814099999951],[110.77442740000004,-0.608895],[110.76512520000006,-0.609414799999968],[110.748858,-0.622146699999973],[110.73618440000007,-0.625540899999976],[110.73194220000005,-0.629404199999954],[110.728144,-0.6226059],[110.72032260000009,-0.622348199999976],[110.71535740000007,-0.623123299999975],[110.70321460000008,-0.6320132],[110.698279,-0.632818],[110.67816360000006,-0.621614499999964],[110.67011580000008,-0.6195892],[110.64913870000004,-0.616388799999925],[110.63693240000003,-0.619130199999972],[110.629853,-0.567173299999979],[110.63166930000006,-0.546766799999943],[110.63013590000008,-0.542318199999954],[110.62183720000007,-0.5302431],[110.61373940000004,-0.507212899999956],[110.61567720000005,-0.487500299999965],[110.61321790000005,-0.467857599999945],[110.61679970000006,-0.459417599999938],[110.60415910000006,-0.422943099999941],[110.59323930000005,-0.404761599999972],[110.56629710000004,-0.379291099999932],[110.56178580000005,-0.365678399999979],[110.52815180000005,-0.338292799999977],[110.47163770000009,-0.325566499999979],[110.45838740000005,-0.330829199999926],[110.43838320000003,-0.346235399999955],[110.43380090000005,-0.354759599999966],[110.42688440000006,-0.362979199999927],[110.41648220000008,-0.367447799999979],[110.40236640000006,-0.377065799999968],[110.40646680000003,-0.383127499999944],[110.41289870000008,-0.402239799999961],[110.41088590000004,-0.412268199999971],[110.41304130000009,-0.420361899999932],[110.41098960000005,-0.425319399999978],[110.41442940000007,-0.434134],[110.41195350000004,-0.437683],[110.41177210000006,-0.443085799999949],[110.41002240000006,-0.444056899999964],[110.40585950000008,-0.443024599999944],[110.40444680000007,-0.448029],[110.40015550000004,-0.449946],[110.39806350000003,-0.455692599999963],[110.39852570000005,-0.459840899999961],[110.39507420000007,-0.4631806],[110.39618940000008,-0.468659099999968],[110.39171230000005,-0.466669099999933],[110.39210560000004,-0.472518099999945],[110.39063650000008,-0.474081199999944],[110.38451280000004,-0.469913399999939],[110.381815,-0.471021599999972],[110.37622680000004,-0.467410199999961],[110.36973320000004,-0.465991299999928],[110.36845370000009,-0.461630099999979],[110.37125780000008,-0.449465699999962],[110.36966250000006,-0.445747599999947],[110.36684290000005,-0.444650699999954],[110.35611160000008,-0.445258099999933],[110.35205590000004,-0.442061099999933],[110.35059670000004,-0.437927299999956],[110.35051710000005,-0.433621799999969],[110.35715680000004,-0.420665499999927],[110.37129420000008,-0.4124339],[110.37147530000004,-0.401067499999954],[110.36681160000006,-0.395508499999949],[110.35770980000007,-0.396100099999956],[110.34516150000007,-0.392823699999951],[110.33400120000005,-0.398654199999953],[110.33075690000004,-0.402754899999934],[110.31819620000005,-0.409365699999967],[110.31287220000007,-0.414889],[110.311546,-0.425965299999973],[110.30719670000008,-0.431991699999969],[110.30658070000004,-0.437812199999939],[110.30272390000005,-0.441774699999939],[110.30239530000006,-0.446398],[110.29993340000004,-0.448998399999937],[110.29529760000008,-0.4480072],[110.27464760000004,-0.437186499999939],[110.26384430000007,-0.438547799999981],[110.25111190000007,-0.443961199999933],[110.24561510000007,-0.437727399999972],[110.23135770000005,-0.432599299999936],[110.22618910000006,-0.427067299999976],[110.21533630000005,-0.423693599999979],[110.21545180000004,-0.420794599999965],[110.21300290000005,-0.419315899999958],[110.194301,-0.421285699999942],[110.19136370000007,-0.418483799999933],[110.18408360000006,-0.418483099999946],[110.167182,-0.422952799999962],[110.15644390000006,-0.428432599999951],[110.15052940000004,-0.435426399999926],[110.146749,-0.434372199999927],[110.14135980000009,-0.428871399999935],[110.13526540000004,-0.428114499999936],[110.13054010000008,-0.424798399999929],[110.12001610000004,-0.424848699999927],[110.120093,-0.422329899999966],[110.11384190000007,-0.421865599999933],[110.113098,-0.424159299999928],[110.11216810000008,-0.422485499999937],[110.11037030000006,-0.425709199999972],[110.11099030000008,-0.427568899999926],[110.10844860000009,-0.427383],[110.10634080000005,-0.426143099999933],[110.10807660000006,-0.423911399999952],[110.10615480000007,-0.420811699999945],[110.10795260000003,-0.418456],[110.10317920000006,-0.418766],[110.104233,-0.414426499999934],[110.10224930000004,-0.413000599999975],[110.10001750000004,-0.407297299999925],[110.10057550000005,-0.405313499999977],[110.10317920000006,-0.404259699999955],[110.09976960000006,-0.400726099999929],[110.09877770000008,-0.396820499999933],[110.09233040000004,-0.398432299999968],[110.08575920000004,-0.397998399999949],[110.07939840000006,-0.394356199999947],[110.07732820000007,-0.388513499999931],[110.06028020000008,-0.388451499999974],[110.05785820000006,-0.385664599999927],[110.05128410000009,-0.386489799999936],[110.04829020000005,-0.392643899999939],[110.042552,-0.395637799999975],[110.03980760000007,-0.399795899999958],[110.03989080000008,-0.404453],[110.04363310000008,-0.414266299999952],[110.04188670000008,-0.418008599999951],[110.03648110000006,-0.423247899999978],[110.03606530000008,-0.427156499999967],[110.03806120000007,-0.4328116],[110.03606530000008,-0.436470799999938],[110.02633520000006,-0.444703899999979],[110.01527450000009,-0.447032499999978],[110.014526,-0.458176299999934],[110.01011840000007,-0.460005899999942],[110.00504550000005,-0.472147699999937],[109.99656280000005,-0.471399299999973],[109.99365210000008,-0.472646699999927],[109.99215520000007,-0.478717599999925],[109.99598070000008,-0.483291599999973],[109.99598070000008,-0.485370599999953],[109.99057510000006,-0.483956899999953],[109.98749810000004,-0.485204299999964],[109.980845,-0.490776199999971],[109.97585520000007,-0.498427199999981],[109.96444270000006,-0.496466199999929],[109.95566680000007,-0.496936199999936],[109.94737480000003,-0.499212099999966],[109.93806590000008,-0.513448699999969],[109.92581750000005,-0.522024699999974],[109.91874320000005,-0.531037599999934],[109.88703080000005,-0.551057799999967],[109.87995750000005,-0.561214399999926],[109.87914130000007,-0.565113799999949],[109.88204320000006,-0.577174699999944],[109.881044,-0.586383499999954],[109.86823280000004,-0.593767799999966],[109.86353830000007,-0.605928899999981],[109.85997290000006,-0.610675],[109.82642840000005,-0.631820699999935],[109.81608460000007,-0.640790799999934],[109.81395270000007,-0.645485],[109.81082980000008,-0.664954299999977],[109.81070060000008,-0.671027899999956],[109.81326640000009,-0.680213499999979],[109.81477970000009,-0.681755],[109.81850210000005,-0.682172699999967],[109.82188420000006,-0.680454099999963],[109.824638,-0.672330799999941],[109.83846440000008,-0.6754284],[109.84061580000008,-0.672642099999962],[109.84163660000007,-0.664523799999927],[109.84631340000004,-0.659034],[109.85431420000003,-0.657213399999932],[109.85924560000007,-0.657565699999964],[109.86873420000006,-0.672304799999949],[109.88042430000007,-0.684985599999948],[109.88425490000009,-0.691498399999944],[109.88495940000007,-0.6997174],[109.87910480000005,-0.7109977],[109.87906080000005,-0.714599799999974],[109.88868110000004,-0.7267679],[109.897994,-0.731731899999943],[109.90287,-0.732215099999962],[109.93444990000006,-0.720039399999962],[109.94108970000008,-0.729928499999971],[109.941231,-0.7339547],[109.93981830000007,-0.741724699999963],[109.93774990000009,-0.744921199999965],[109.93262080000005,-0.748305399999936],[109.93226360000006,-0.752274199999931],[109.97171990000004,-0.752503399999966],[110.01621690000007,-0.758039],[110.05727440000004,-0.759670299999925],[110.09776740000007,-0.775871299999949],[110.12696410000007,-0.790083099999947],[110.13772080000007,-0.797765099999936],[110.19070330000005,-0.842674699999975],[110.21947070000004,-0.861126099999979],[110.233583,-0.866010299999971],[110.28189060000005,-0.8741506],[110.34605540000007,-0.875085699999943],[110.35310640000006,-0.873764599999959],[110.36437750000005,-0.903580699999964],[110.37588370000009,-0.958136399999944],[110.39108280000005,-1.011403],[110.40019990000008,-1.049396],[110.40431710000007,-1.059216799999945],[110.40036850000007,-1.059740799999929],[110.39927590000008,-1.064189499999941],[110.39513930000004,-1.063174899999979],[110.39638810000008,-1.070667599999979],[110.39412460000005,-1.0698871],[110.39365640000005,-1.070823699999949],[110.39654420000005,-1.072306599999933],[110.39997830000004,-1.071448],[110.40083680000004,-1.076521199999945],[110.39857340000009,-1.078472399999953],[110.39927590000008,-1.0803456],[110.40450510000005,-1.081672399999945],[110.40528560000007,-1.079721199999938],[110.41349270000006,-1.080423599999961],[110.42179260000006,-1.086610099999973],[110.42448180000008,-1.092669799999953],[110.41398910000004,-1.098620199999971],[110.41315180000004,-1.100062199999968],[110.41604880000006,-1.102985399999966],[110.42090610000008,-1.104337],[110.42615820000009,-1.100434499999949],[110.43186990000004,-1.107876499999975],[110.44117590000008,-1.1068995],[110.445831,-1.10997],[110.46034250000008,-1.110745099999974],[110.46023480000008,-1.1126994],[110.45760270000005,-1.114299699999947],[110.46141670000009,-1.121715699999925],[110.45727650000003,-1.125506399999949],[110.46087590000008,-1.125319699999977],[110.46105950000003,-1.130094299999939],[110.46455060000005,-1.130482799999925],[110.47059750000005,-1.1339714],[110.470644,-1.138995],[110.46517920000008,-1.141524699999934],[110.46900320000009,-1.148581099999944],[110.46544760000006,-1.156447399999934],[110.46580050000006,-1.161606199999937],[110.46199230000008,-1.166438599999935],[110.46255040000005,-1.167973599999925],[110.46848710000006,-1.170301099999961],[110.46507250000008,-1.170175299999926],[110.45744290000005,-1.179144699999938],[110.45678260000005,-1.182067599999925],[110.45862780000004,-1.183147],[110.45574390000007,-1.185738599999979],[110.45496850000006,-1.191277499999956],[110.453284,-1.192872499999964],[110.45450340000008,-1.196487099999956],[110.45334050000008,-1.197184799999945],[110.45107750000005,-1.1957121],[110.44975720000008,-1.1968831],[110.45005660000004,-1.198727],[110.45275140000007,-1.198176299999943],[110.45441040000009,-1.200161799999933],[110.45027060000007,-1.204301599999951],[110.45171250000004,-1.207790199999977],[110.44674610000004,-1.207112199999926],[110.44539220000007,-1.208852499999978],[110.44627030000004,-1.212116099999946],[110.44443970000009,-1.215798399999926],[110.44436390000004,-1.220332599999949],[110.447739,-1.223687799999936],[110.44785610000008,-1.227960099999962],[110.44474180000009,-1.227960099999962],[110.44405080000007,-1.2316938],[110.44131190000007,-1.234093499999972],[110.41871640000005,-1.225508],[110.38127140000006,-1.22681],[110.35302730000006,-1.236294],[110.317749,-1.261507],[110.27068330000009,-1.304404],[110.25222780000007,-1.309414],[110.23491180000008,-1.306271399999957],[110.22009280000009,-1.308197],[110.20497890000007,-1.317434],[110.18483730000008,-1.32497],[110.16080480000005,-1.326869],[110.13282780000009,-1.337756],[110.10484310000004,-1.352861],[110.06842820000008,-1.368424199999936]]]]},"properties":{"shapeName":"Ketapang","shapeISO":"","shapeID":"22746128B91722807719705","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[110.44607540000004,-7.5418973],[110.45626070000009,-7.557588499999952],[110.45744320000006,-7.565381499999944],[110.45969390000005,-7.569947699999943],[110.46051020000004,-7.590043],[110.46325680000007,-7.6047482],[110.46849790000005,-7.617576199999974],[110.46870420000005,-7.638313299999936],[110.49181370000008,-7.742148399999962],[110.49177820000006,-7.766842199999928],[110.50709,-7.768972099999928],[110.51005020000008,-7.770693399999971],[110.51244350000007,-7.779113699999925],[110.51888280000009,-7.782807299999945],[110.523333,-7.783382599999925],[110.52526320000004,-7.788182399999926],[110.52949030000008,-7.790832499999965],[110.530672,-7.798137],[110.53363580000007,-7.79601],[110.53495340000006,-7.796665799999971],[110.53613280000008,-7.794014],[110.53743740000004,-7.794723499999975],[110.53621670000007,-7.7977109],[110.53958340000008,-7.7980376],[110.54015530000004,-7.795046599999978],[110.54395650000004,-7.793773599999952],[110.54838710000007,-7.79118],[110.55059170000004,-7.792442499999936],[110.55130770000005,-7.794808699999976],[110.555369,-7.795130699999959],[110.55516080000007,-7.793048499999941],[110.55332150000004,-7.792459299999962],[110.55439050000007,-7.790735499999926],[110.55348970000006,-7.7870879],[110.555397,-7.786820399999954],[110.55586950000009,-7.784057399999938],[110.56214550000004,-7.782177599999955],[110.57762370000006,-7.789472099999955],[110.58217080000009,-7.789448799999946],[110.582386,-7.791405299999951],[110.58288870000007,-7.7896603],[110.58482360000005,-7.790907299999958],[110.58385970000006,-7.798032199999966],[110.57618660000009,-7.801891299999966],[110.57696510000005,-7.807145099999957],[110.58596020000005,-7.802763699999957],[110.58799730000004,-7.804961],[110.58560930000004,-7.808620699999949],[110.59451290000004,-7.806155199999978],[110.60010530000005,-7.806694],[110.60076130000004,-7.804758399999969],[110.59874710000008,-7.799923699999965],[110.60709,-7.798421699999949],[110.60734,-7.79663],[110.60789490000008,-7.798219199999949],[110.61208340000007,-7.798754699999961],[110.61608890000008,-7.8021191],[110.61846910000008,-7.799112099999945],[110.621392,-7.799615],[110.62459640000009,-7.801769799999931],[110.62490920000005,-7.803590899999961],[110.62874790000006,-7.800422399999945],[110.63817740000007,-7.800393699999972],[110.64700180000006,-7.795245],[110.65786120000007,-7.8047855],[110.66048580000006,-7.80214],[110.66385350000007,-7.793276399999968],[110.66671970000004,-7.792926099999931],[110.67029280000008,-7.789777],[110.66866480000004,-7.787110499999926],[110.67080570000007,-7.786172099999931],[110.67293790000008,-7.786537099999975],[110.67663790000006,-7.791357799999957],[110.67220270000007,-7.795861399999978],[110.67276730000009,-7.800121499999932],[110.67073030000006,-7.803266699999938],[110.67488830000008,-7.803181799999948],[110.67964140000004,-7.806508199999939],[110.680412,-7.805606499999953],[110.69207730000005,-7.808445099999972],[110.70954860000006,-7.804757699999925],[110.71420590000008,-7.799004699999955],[110.71254790000006,-7.792938399999969],[110.71244560000008,-7.790124299999945],[110.71495050000004,-7.789796799999976],[110.71909170000004,-7.783477199999936],[110.72118040000004,-7.783257299999946],[110.72256540000006,-7.778053199999931],[110.72159650000009,-7.777785199999926],[110.72498520000005,-7.777221199999929],[110.72717390000008,-7.769991799999957],[110.72895690000007,-7.770663199999944],[110.72853010000006,-7.767042599999968],[110.73018650000006,-7.762459699999965],[110.73491670000004,-7.762646199999949],[110.73727420000006,-7.760213399999941],[110.74221850000004,-7.761143899999979],[110.74306850000005,-7.7579624],[110.73967660000005,-7.757356199999947],[110.74312990000004,-7.756532599999957],[110.74154840000006,-7.755172199999947],[110.74473330000006,-7.752164],[110.74444580000005,-7.750514499999952],[110.74684140000005,-7.749209399999927],[110.74927740000004,-7.744371099999967],[110.75143740000004,-7.744155899999953],[110.750136,-7.7430419],[110.75092510000007,-7.740272],[110.75485230000004,-7.738775199999964],[110.75620990000004,-7.735757699999965],[110.75877830000007,-7.734293],[110.75764820000006,-7.732211899999982],[110.75933890000005,-7.732534799999939],[110.75969810000004,-7.727593799999966],[110.76191520000003,-7.727161599999931],[110.76226280000009,-7.724813],[110.76409470000004,-7.724465399999929],[110.76601120000004,-7.720519799999977],[110.76361850000006,-7.719788499999936],[110.76467890000004,-7.716599899999949],[110.76659360000008,-7.715315299999929],[110.76712040000007,-7.716788699999938],[110.76842550000003,-7.715644099999963],[110.77034,-7.716938499999969],[110.76918790000008,-7.713096599999972],[110.770462,-7.712128599999971],[110.77137760000005,-7.713800899999967],[110.77223970000006,-7.712430899999958],[110.76933290000005,-7.7103233],[110.76981350000005,-7.708254799999963],[110.76786990000005,-7.704128699999956],[110.76922960000007,-7.702576399999941],[110.76736550000004,-7.700809499999934],[110.76962550000007,-7.699973899999975],[110.76840480000004,-7.697361599999965],[110.77417750000006,-7.6933641],[110.76714970000006,-7.6893925],[110.76759870000006,-7.687828099999933],[110.76994170000006,-7.688876599999958],[110.77051180000007,-7.687098799999944],[110.76849360000006,-7.684162599999979],[110.77612270000009,-7.6823814],[110.77604170000006,-7.678735099999926],[110.78141650000003,-7.681193],[110.78160560000003,-7.678816199999972],[110.77732720000006,-7.676557099999968],[110.77777150000009,-7.673339299999952],[110.77885,-7.67463],[110.78053010000008,-7.673123199999964],[110.77807940000008,-7.671718899999973],[110.77923280000005,-7.667003499999964],[110.77784740000004,-7.664791499999978],[110.78095270000006,-7.661925599999961],[110.78556960000009,-7.661177499999951],[110.78783420000008,-7.663162199999931],[110.79007720000004,-7.6630974],[110.79021450000005,-7.659237399999938],[110.78630830000009,-7.657469299999946],[110.78641510000006,-7.656132199999945],[110.79009240000005,-7.655589799999973],[110.79383090000005,-7.657141599999932],[110.79426570000004,-7.655225199999961],[110.79180780000007,-7.651634399999978],[110.79392440000004,-7.650891699999931],[110.79411010000007,-7.648960799999941],[110.79143650000009,-7.647549799999979],[110.79899010000008,-7.644318599999963],[110.79974940000005,-7.642737499999953],[110.79797190000005,-7.641274399999929],[110.79559540000008,-7.643353799999943],[110.78761290000006,-7.6419749],[110.78181460000008,-7.637918899999931],[110.78082020000005,-7.635120899999947],[110.77774490000007,-7.635083799999961],[110.77698060000006,-7.633003799999926],[110.77253440000004,-7.6403212],[110.76350080000009,-7.635968199999979],[110.76836450000008,-7.626689],[110.76644320000008,-7.625743599999964],[110.76689520000008,-7.622772099999963],[110.76459270000004,-7.619811099999936],[110.761223,-7.619947799999977],[110.75787330000009,-7.617313599999932],[110.75661470000006,-7.618895],[110.75054750000004,-7.616014499999949],[110.74646940000008,-7.617662499999938],[110.74492080000005,-7.616393799999969],[110.74575810000005,-7.611302799999976],[110.74234010000004,-7.609859],[110.747055,-7.603942399999937],[110.74519350000008,-7.602976299999966],[110.74356840000007,-7.599007599999936],[110.74175990000003,-7.600214],[110.73936460000004,-7.597926099999938],[110.731987,-7.599923099999955],[110.72915650000004,-7.596238099999937],[110.72580250000004,-7.597132],[110.72059540000004,-7.594896299999959],[110.71769330000006,-7.597364399999947],[110.70821330000007,-7.595850499999926],[110.70303120000005,-7.593487499999981],[110.692983,-7.591380599999979],[110.69022490000009,-7.588682],[110.68821740000004,-7.589388399999962],[110.68904350000008,-7.5855204],[110.678374,-7.588431799999967],[110.66730580000007,-7.584134499999948],[110.661203,-7.585568799999976],[110.661127,-7.5876511],[110.65904240000003,-7.588846799999942],[110.65722440000008,-7.586324799999943],[110.65430760000004,-7.587144799999976],[110.65028710000007,-7.5850602],[110.64918390000008,-7.587742299999945],[110.64838410000004,-7.586676599999976],[110.64129870000005,-7.586257299999943],[110.62949370000007,-7.581193399999961],[110.61161040000007,-7.576182299999971],[110.60073880000004,-7.570546299999933],[110.60034940000008,-7.569154699999956],[110.59867350000007,-7.5705931],[110.597849,-7.574675399999933],[110.60046940000007,-7.575005199999964],[110.59968120000008,-7.583303],[110.59710690000009,-7.5883941],[110.58952330000005,-7.58432],[110.58776090000003,-7.586671799999976],[110.58181450000006,-7.587838],[110.57779820000007,-7.584600199999954],[110.57347210000006,-7.584125499999971],[110.57076710000007,-7.588423199999966],[110.56677670000005,-7.587909899999943],[110.56123680000007,-7.596280299999933],[110.55958430000004,-7.594966699999929],[110.55390760000006,-7.6003941],[110.55182730000007,-7.599917199999936],[110.55046990000005,-7.603232299999945],[110.547656,-7.600784399999952],[110.54476130000006,-7.604738099999963],[110.55037820000007,-7.609216],[110.542401,-7.6166274],[110.54517260000006,-7.625572399999953],[110.54076380000004,-7.628395099999977],[110.53572730000008,-7.6267074],[110.53404480000006,-7.628134399999965],[110.54005,-7.63454],[110.53876,-7.63505],[110.53235630000006,-7.629428799999971],[110.53113870000004,-7.626382099999944],[110.52226260000003,-7.621484699999939],[110.52092740000006,-7.617826899999955],[110.51298450000007,-7.610762199999954],[110.51317250000005,-7.605672799999979],[110.52311710000004,-7.605976599999963],[110.52346540000008,-7.6041664],[110.51673680000005,-7.600753299999951],[110.51469020000008,-7.602179699999965],[110.506687,-7.595659499999954],[110.50848480000008,-7.593244499999969],[110.50647740000005,-7.5903301],[110.50105010000004,-7.588664899999969],[110.50009030000007,-7.586952],[110.49909220000006,-7.587749299999928],[110.49701840000006,-7.584311599999978],[110.49538810000007,-7.584866899999952],[110.49611250000004,-7.583638899999926],[110.49325210000006,-7.583662799999956],[110.49322660000007,-7.582332099999974],[110.49143320000007,-7.581898399999943],[110.49217260000006,-7.580499199999963],[110.48931290000007,-7.576714199999969],[110.488773,-7.573291799999936],[110.47686940000006,-7.557051499999943],[110.47823020000004,-7.555877899999928],[110.47751810000005,-7.554423899999961],[110.45948960000004,-7.541840799999932],[110.45664380000005,-7.541032499999972],[110.44936540000003,-7.544105299999956],[110.44607540000004,-7.5418973]]]},"properties":{"shapeName":"Klaten","shapeISO":"","shapeID":"22746128B55048880298141","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[115.629616,-8.776151199999958],[115.62950300000011,-8.778982699999972],[115.63049640000008,-8.777620499999955],[115.629616,-8.776151199999958]]],[[[115.62288220000005,-8.774235699999963],[115.62518430000011,-8.776793599999962],[115.629152,-8.775038799999948],[115.62288220000005,-8.774235699999963]]],[[[115.46506250000004,-8.687103199999967],[115.460883,-8.689184],[115.45927680000011,-8.688198899999975],[115.45468690000007,-8.693474199999969],[115.4502496,-8.694996299999957],[115.44887260000007,-8.697839299999941],[115.44096690000003,-8.700915899999927],[115.43884680000008,-8.706148399999961],[115.43697650000001,-8.707194099999981],[115.43723350000005,-8.708425499999976],[115.4395535000001,-8.708425499999976],[115.43862550000006,-8.710045899999955],[115.44051360000003,-8.709032299999933],[115.44020310000008,-8.71184119999998],[115.44423270000004,-8.71212319999995],[115.44431120000002,-8.709178599999973],[115.446628,-8.710028099999931],[115.44913240000005,-8.705591599999934],[115.45115340000007,-8.705877099999952],[115.45980860000009,-8.698817299999973],[115.465655,-8.688184599999943],[115.46506250000004,-8.687103199999967]]],[[[115.55271010000001,-8.672309],[115.54598580000004,-8.674975199999949],[115.52767230000006,-8.677366499999948],[115.51649350000002,-8.676763299999948],[115.500757,-8.672330399999964],[115.49358710000001,-8.672311699999966],[115.49015070000007,-8.67388479999994],[115.48704170000008,-8.683331599999974],[115.48085990000004,-8.684712899999965],[115.47575230000007,-8.688924499999928],[115.46811810000008,-8.699658799999952],[115.46955290000005,-8.700054899999941],[115.46907820000001,-8.701910899999973],[115.46684030000006,-8.701521899999932],[115.4638814000001,-8.705344499999967],[115.46489510000004,-8.706886399999973],[115.46277740000005,-8.706224899999938],[115.46095,-8.70804759999993],[115.46154960000001,-8.709023099999968],[115.46005530000002,-8.708761399999958],[115.45752670000002,-8.711389399999973],[115.45703480000009,-8.713272399999937],[115.45896620000008,-8.716117699999927],[115.45467610000003,-8.717209],[115.45602760000008,-8.719550399999946],[115.45265830000005,-8.717873399999974],[115.45371670000009,-8.72010629999994],[115.45121730000005,-8.719156399999974],[115.4503949000001,-8.721050399999967],[115.44902060000004,-8.720814399999938],[115.44955360000006,-8.722638],[115.44773370000007,-8.721768099999963],[115.44874260000006,-8.724052399999948],[115.44727310000007,-8.72458729999994],[115.44740060000004,-8.72662029999998],[115.451084,-8.727990899999952],[115.4518359000001,-8.729593699999953],[115.4470199000001,-8.732087299999932],[115.4467744000001,-8.733872899999938],[115.45273060000011,-8.733633],[115.45252690000007,-8.7367644],[115.4551672,-8.736067699999978],[115.45556310000006,-8.73705179999996],[115.452863,-8.741170799999963],[115.45479410000007,-8.740366],[115.45519380000007,-8.742185799999959],[115.45366910000007,-8.741951599999936],[115.45338980000008,-8.74371039999994],[115.45091220000006,-8.744888199999934],[115.45220010000003,-8.74694349999993],[115.45122660000004,-8.7482145],[115.464029,-8.747645399999953],[115.46621510000011,-8.7459798],[115.46721450000007,-8.74827],[115.47292950000008,-8.750457],[115.47284920000004,-8.752241599999934],[115.47076780000009,-8.753520899999955],[115.47537190000003,-8.751905799999975],[115.47588950000011,-8.754600099999948],[115.47919700000011,-8.754990299999974],[115.48168110000006,-8.7579373],[115.48192030000007,-8.760864],[115.48587850000001,-8.760278699999958],[115.48622780000005,-8.767192],[115.48505880000005,-8.768877299999929],[115.48661680000009,-8.768277],[115.48860890000003,-8.7701239],[115.48978270000009,-8.768880199999955],[115.49353190000011,-8.77240439999997],[115.49676330000011,-8.770374],[115.49732440000002,-8.773225099999934],[115.49877590000006,-8.772815799999933],[115.50203330000011,-8.776523],[115.51055660000009,-8.7760733],[115.51198260000001,-8.778844899999967],[115.5138267000001,-8.778612899999928],[115.52123630000006,-8.784104699999943],[115.523987,-8.787807099999952],[115.52332550000006,-8.791633299999944],[115.52802110000005,-8.794249299999933],[115.5284779000001,-8.7991653],[115.53082250000011,-8.799399799999946],[115.53514260000009,-8.797087799999929],[115.53942030000007,-8.7987196],[115.53917760000002,-8.800793299999953],[115.54053030000011,-8.798801699999956],[115.54753320000009,-8.7998502],[115.55126020000012,-8.801305799999966],[115.55126640000003,-8.804462399999977],[115.55271010000001,-8.802683699999932],[115.55536030000007,-8.804633699999954],[115.55845120000004,-8.8043125],[115.5610627000001,-8.805471099999977],[115.56166750000011,-8.807505399999968],[115.56495250000012,-8.807008399999972],[115.56856270000003,-8.812518099999977],[115.57782630000008,-8.812544399999979],[115.58247360000007,-8.817998299999942],[115.58852800000011,-8.819347599999958],[115.590515,-8.818271],[115.58982770000011,-8.816312899999957],[115.59133780000002,-8.816782499999931],[115.59434270000008,-8.814873299999931],[115.59279010000012,-8.812606899999935],[115.59659130000011,-8.811298199999953],[115.5987507000001,-8.8075981],[115.60720370000001,-8.807884899999976],[115.60541560000001,-8.804308499999934],[115.60717870000008,-8.802852299999927],[115.6046798000001,-8.798318699999982],[115.60581170000012,-8.794978699999945],[115.60741790000009,-8.795021499999962],[115.60615790000008,-8.79104179999996],[115.60772840000004,-8.788900299999966],[115.60934440000005,-8.789382199999977],[115.6106658000001,-8.7836536],[115.61563420000004,-8.782168799999965],[115.61564840000005,-8.778207],[115.61698690000003,-8.77937769999994],[115.61760430000004,-8.777496799999938],[115.61896420000005,-8.778296299999965],[115.6182119,-8.7764389],[115.620868,-8.774999299999934],[115.621561,-8.7760047],[115.621924,-8.773037099999954],[115.62849430000006,-8.772639399999946],[115.62629760000004,-8.771046299999966],[115.62858580000011,-8.76995379999994],[115.62652590000005,-8.763917099999958],[115.62323120000008,-8.760769],[115.62344430000007,-8.759399199999962],[115.62502440000003,-8.760198199999934],[115.62531220000005,-8.7576622],[115.62312550000001,-8.755147099999931],[115.622,-8.750320899999963],[115.62054560000001,-8.750213899999949],[115.62112260000004,-8.748640499999965],[115.6141487000001,-8.742221],[115.6103240000001,-8.735233799999946],[115.59675040000002,-8.72482249999996],[115.59488370000008,-8.71613869999993],[115.59014380000008,-8.713176199999964],[115.58440460000008,-8.705099099999927],[115.58339180000007,-8.69767969999998],[115.57920780000006,-8.68608249999994],[115.56909160000009,-8.675271],[115.5607801000001,-8.67177],[115.55271010000001,-8.672309]]],[[[115.45307390000005,-8.663318799999956],[115.4491968000001,-8.664757099999974],[115.44552450000003,-8.679415499999948],[115.43728250000004,-8.681559099999959],[115.43532840000012,-8.679409599999929],[115.43290590000004,-8.682832899999937],[115.43149560000006,-8.681753],[115.42712460000007,-8.682883299999958],[115.4292994000001,-8.686487199999931],[115.427748,-8.688609699999972],[115.43018690000008,-8.689452499999959],[115.428971,-8.691284699999926],[115.43019880000008,-8.690638599999943],[115.43104470000003,-8.69228759999993],[115.43286620000003,-8.690618899999947],[115.43703380000011,-8.694521899999927],[115.45069250000006,-8.693468199999927],[115.45743610000011,-8.686793],[115.46073460000002,-8.686159499999974],[115.45925340000008,-8.684309499999927],[115.4620344000001,-8.684128],[115.46097850000001,-8.682129299999929],[115.46301590000007,-8.682920499999966],[115.46251640000003,-8.681005399999947],[115.46556810000004,-8.682650799999976],[115.46572520000007,-8.680134499999951],[115.46954990000006,-8.677017899999953],[115.46913590000008,-8.675383199999942],[115.4716274000001,-8.675563],[115.4717104,-8.671433299999933],[115.4680413000001,-8.667669],[115.46822380000003,-8.666227499999934],[115.45307390000005,-8.663318799999956]]],[[[115.35762760000011,-8.520949599999938],[115.3577696000001,-8.523438399999975],[115.3603458,-8.524345399999959],[115.36058480000008,-8.532348599999978],[115.36374910000006,-8.536445],[115.36234350000007,-8.53936],[115.36374950000004,-8.545100099999956],[115.36073360000012,-8.54764709999995],[115.36373090000006,-8.549866399999928],[115.364761,-8.557129499999974],[115.36658820000002,-8.559888],[115.3650434000001,-8.561848699999928],[115.36809870000002,-8.561622599999964],[115.36757330000012,-8.563972599999943],[115.36906560000011,-8.563290399999971],[115.36931550000008,-8.566449099999943],[115.37089540000011,-8.566415799999959],[115.370629,-8.574912499999925],[115.38938360000009,-8.574788799999965],[115.40141310000001,-8.577368799999931],[115.40747510000006,-8.575509699999941],[115.42695690000005,-8.574748299999953],[115.443652,-8.571966799999927],[115.44847040000002,-8.570253599999944],[115.46354130000009,-8.554961299999945],[115.47950190000006,-8.5507729],[115.47998410000002,-8.542608299999927],[115.47490620000008,-8.537012],[115.47675250000009,-8.520072399999947],[115.4738162000001,-8.51505179999998],[115.47018520000006,-8.512948299999948],[115.46931350000011,-8.5098266],[115.46292110000002,-8.503673099999958],[115.4576621000001,-8.502851599999929],[115.45454860000007,-8.5053882],[115.44930180000006,-8.506696899999952],[115.43428890000007,-8.519146],[115.42878640000004,-8.519595799999934],[115.41656660000001,-8.524192899999946],[115.4126314,-8.523499199999947],[115.41327230000002,-8.524634],[115.40956970000002,-8.530247299999928],[115.40629150000007,-8.5237398],[115.40831790000004,-8.5189636],[115.4051852,-8.514574799999934],[115.41530180000007,-8.507795299999941],[115.41377490000002,-8.504663799999946],[115.415246,-8.503174299999955],[115.41180710000003,-8.498077499999965],[115.41224260000001,-8.4939265],[115.40960490000009,-8.486641799999973],[115.41135740000004,-8.4856603],[115.4103295000001,-8.483615099999952],[115.41188920000002,-8.482019699999967],[115.41020810000009,-8.479799699999944],[115.412985,-8.478839599999958],[115.41453250000006,-8.474223499999937],[115.41195070000003,-8.472468899999967],[115.40624090000006,-8.4739989],[115.40486320000002,-8.47708979999993],[115.40243610000005,-8.477018399999963],[115.3957706000001,-8.481399099999976],[115.3899599,-8.482381699999962],[115.39478310000004,-8.470969799999978],[115.4003394,-8.4665188],[115.40152660000001,-8.462649899999974],[115.39253430000008,-8.459938499999964],[115.38569960000007,-8.467032599999925],[115.38384,-8.461618499999929],[115.37628770000003,-8.460316599999942],[115.37520560000007,-8.461288099999933],[115.37075770000001,-8.470281299999954],[115.36634790000005,-8.475274699999943],[115.36829410000007,-8.476557499999956],[115.36877740000011,-8.479237599999976],[115.3677517000001,-8.479058],[115.36510780000003,-8.483717199999944],[115.36368130000005,-8.483698899999979],[115.36362010000005,-8.488549099999943],[115.35789780000005,-8.493118399999958],[115.35631300000011,-8.499742899999944],[115.35678060000009,-8.50525639999995],[115.35415610000007,-8.507657799999947],[115.35360130000004,-8.511393599999963],[115.355876,-8.513278699999944],[115.35517170000003,-8.514582599999926],[115.35740840000005,-8.517057299999976],[115.35762760000011,-8.520949599999938]]]]},"properties":{"shapeName":"Klungkung","shapeISO":"","shapeID":"22746128B63981254637220","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[121.49144060000003,-4.194254699999931],[121.490791,-4.192807599999981],[121.47933680000006,-4.195851499999947],[121.46965560000001,-4.207399399999929],[121.472256,-4.214378],[121.47058540000012,-4.218824299999937],[121.47352840000008,-4.2259022],[121.47475710000003,-4.222187799999972],[121.47772310000005,-4.222817599999928],[121.47792460000005,-4.218892799999935],[121.4806099000001,-4.215814399999942],[121.47951160000002,-4.213732199999924],[121.4830280000001,-4.203565],[121.49678490000008,-4.205979199999945],[121.50132880000001,-4.202858799999944],[121.50090330000012,-4.201021099999934],[121.49536520000004,-4.203967699999964],[121.49350730000003,-4.202074],[121.49581670000009,-4.200180299999943],[121.49660950000009,-4.196273899999937],[121.4906572000001,-4.200766199999975],[121.48742850000008,-4.200768899999957],[121.4883814000001,-4.197144799999933],[121.49144060000003,-4.194254699999931]]],[[[121.55959840000003,-4.167222199999969],[121.55831490000003,-4.167035799999951],[121.559183,-4.169219299999952],[121.55959840000003,-4.167222199999969]]],[[[121.47746810000001,-4.111977],[121.47624840000003,-4.110878299999968],[121.47569870000007,-4.112745299999972],[121.47814570000003,-4.117270399999938],[121.4782044000001,-4.121982699999933],[121.48621890000004,-4.123199899999975],[121.4866429000001,-4.119953],[121.484181,-4.117537199999958],[121.48446210000009,-4.118757],[121.48244310000007,-4.119266699999969],[121.48032340000009,-4.116531299999963],[121.4797115,-4.113944],[121.4810599000001,-4.113418599999932],[121.48170820000007,-4.114801499999942],[121.48179090000008,-4.111858699999971],[121.47746810000001,-4.111977]]],[[[121.42643550000003,-4.0853985],[121.4251144000001,-4.083639],[121.41711410000005,-4.085452499999974],[121.41213950000008,-4.084089499999948],[121.41486880000002,-4.088908599999968],[121.4126463,-4.098636699999929],[121.41335920000006,-4.1045232],[121.40458910000007,-4.113597099999936],[121.40097440000011,-4.113789399999973],[121.3990688,-4.110134199999948],[121.39539980000006,-4.111933299999976],[121.392599,-4.110887699999978],[121.38907130000007,-4.103773799999942],[121.3826984000001,-4.1048186],[121.38445370000011,-4.108096599999953],[121.3862481000001,-4.125385599999959],[121.392342,-4.124660399999925],[121.39968850000002,-4.126094],[121.40190780000012,-4.130988899999977],[121.40253890000008,-4.1368392],[121.40106860000003,-4.1395099],[121.4013010000001,-4.143166099999974],[121.39811630000008,-4.148573299999953],[121.39371060000008,-4.149675699999932],[121.394421,-4.1619],[121.39291580000008,-4.166719099999966],[121.40856090000011,-4.156804499999964],[121.4188071000001,-4.1555959],[121.42172370000003,-4.1580271],[121.42573770000001,-4.158229699999936],[121.42886150000004,-4.1619159],[121.428266,-4.169958599999973],[121.43370890000006,-4.16833],[121.4433385000001,-4.168588199999931],[121.44345120000003,-4.165205699999944],[121.44569790000003,-4.161466099999927],[121.43757890000006,-4.158474699999942],[121.43780790000005,-4.151403199999947],[121.4339106000001,-4.148474399999941],[121.4345403000001,-4.144279499999925],[121.43176320000009,-4.140502799999979],[121.43155220000006,-4.137183499999935],[121.42965560000005,-4.136266299999932],[121.4302738,-4.129602399999953],[121.4385152000001,-4.127991899999927],[121.44231030000003,-4.128564299999937],[121.4439258000001,-4.130976199999964],[121.45078290000004,-4.1308746],[121.45809340000005,-4.137381499999947],[121.463368,-4.134106799999927],[121.4604571000001,-4.131948699999953],[121.45608360000006,-4.118773099999942],[121.45913040000005,-4.116936799999962],[121.46691080000005,-4.118163099999947],[121.46968820000006,-4.114893299999949],[121.471349,-4.110346499999935],[121.464395,-4.104201499999931],[121.4593681,-4.102547299999969],[121.456085,-4.105153199999961],[121.450526,-4.102340199999958],[121.44550650000008,-4.110107299999925],[121.4454075000001,-4.112915099999952],[121.4406629,-4.116744],[121.43356530000005,-4.116404499999931],[121.42933760000005,-4.113527199999965],[121.4274812000001,-4.115262099999939],[121.425202,-4.1131143],[121.42280030000006,-4.114438899999925],[121.41579110000009,-4.111133099999961],[121.41701960000012,-4.102102199999933],[121.42358160000003,-4.100667299999941],[121.42358450000006,-4.099202299999945],[121.42015660000004,-4.097441],[121.42031780000002,-4.091771899999969],[121.42239350000011,-4.087254499999972],[121.42560630000003,-4.087634299999934],[121.42643550000003,-4.0853985]]],[[[121.33361,-4.085537299999942],[121.33729890000006,-4.084380899999928],[121.337548,-4.077285399999937],[121.33388220000006,-4.076839499999949],[121.33178170000008,-4.083380199999965],[121.32855130000007,-4.086105499999974],[121.33361,-4.085537299999942]]],[[[121.3692913000001,-4.079858299999955],[121.3683,-4.071818],[121.36419690000002,-4.080853899999966],[121.3659391000001,-4.0823336],[121.36312950000001,-4.0851564],[121.36111230000006,-4.084973799999943],[121.35538110000005,-4.088434699999937],[121.35450780000008,-4.090563199999963],[121.3614361000001,-4.094505899999945],[121.3641675,-4.098282],[121.36785580000003,-4.098800199999971],[121.36957060000009,-4.101248299999952],[121.37368440000012,-4.100665599999957],[121.378262,-4.102805],[121.3797267000001,-4.100244799999928],[121.37782490000006,-4.098495599999978],[121.37679620000006,-4.0920909],[121.37537370000007,-4.092558299999951],[121.36862520000011,-4.086548899999968],[121.37041350000004,-4.0860823],[121.36855560000004,-4.084505],[121.36981890000004,-4.083965],[121.3692913000001,-4.079858299999955]]],[[[121.22447180000006,-3.873264199999937],[121.22728360000008,-3.8666057],[121.22652860000005,-3.865600399999948],[121.22170130000006,-3.868791299999941],[121.22447180000006,-3.873264199999937]]],[[[121.80470050000008,-4.414048199999968],[121.79953450000005,-4.402633599999945],[121.79876270000011,-4.397111099999961],[121.80522360000009,-4.383572199999946],[121.79432530000008,-4.353602899999942],[121.79558440000005,-4.353037899999947],[121.77664610000011,-4.293553499999973],[121.76921660000005,-4.287155],[121.759708,-4.274236599999938],[121.75174040000002,-4.2691701],[121.73906350000004,-4.267066599999964],[121.73819670000012,-4.259582099999932],[121.73542240000006,-4.256898299999932],[121.737434,-4.246400499999936],[121.74792810000008,-4.242519899999934],[121.74877160000005,-4.240578899999946],[121.74914310000008,-4.231425199999933],[121.75099290000003,-4.226264699999945],[121.75165170000002,-4.200286199999937],[121.77579520000006,-4.172351499999934],[121.77869620000001,-4.162659],[121.77820440000005,-4.142238799999973],[121.77301110000008,-4.113165899999956],[121.7732721000001,-4.102323299999966],[121.77197730000012,-4.0953688],[121.76935980000007,-4.092743799999937],[121.76879610000003,-4.079494299999965],[121.76359760000003,-4.046813699999973],[121.75998260000006,-4.040047099999981],[121.71980610000003,-3.997553799999935],[121.69761280000012,-3.992550399999971],[121.6882121000001,-3.986861599999941],[121.67758130000004,-3.976734399999941],[121.67547450000006,-3.968390499999941],[121.67652280000004,-3.963023799999974],[121.68545820000008,-3.957751199999961],[121.69648150000012,-3.955809699999975],[121.69826620000003,-3.953326599999968],[121.69917040000007,-3.948180399999956],[121.69387590000008,-3.936283699999933],[121.68485030000011,-3.924205699999959],[121.6733934,-3.912204299999928],[121.67010570000002,-3.904641],[121.66605290000007,-3.901662199999976],[121.66431350000005,-3.903815399999928],[121.6591585000001,-3.905633099999932],[121.65396470000007,-3.901638699999978],[121.63902810000002,-3.901452399999926],[121.63160080000011,-3.899305699999957],[121.62414690000003,-3.893701399999941],[121.61646240000005,-3.872840799999949],[121.610469,-3.862625099999946],[121.6092000000001,-3.837735599999974],[121.605156,-3.822647],[121.57110540000008,-3.8008487],[121.56409540000004,-3.794992099999945],[121.54985870000007,-3.780967699999962],[121.54283530000009,-3.768275699999947],[121.53512320000004,-3.758101599999975],[121.52697870000009,-3.754234699999927],[121.52356410000004,-3.747799799999939],[121.50481370000011,-3.735525099999961],[121.48652270000002,-3.726552099999935],[121.4782159,-3.723492599999929],[121.46053330000007,-3.720649699999967],[121.45636860000002,-3.716375699999958],[121.44021870000006,-3.709156],[121.43166280000003,-3.703036099999963],[121.42865190000009,-3.694141199999933],[121.42894380000007,-3.6858093],[121.43405670000004,-3.636588599999925],[121.43209950000005,-3.626241499999935],[121.42839960000003,-3.619855499999971],[121.41971810000007,-3.612968199999955],[121.40866710000012,-3.611675399999967],[121.3917652,-3.617300799999953],[121.37024020000001,-3.6306129],[121.35385110000004,-3.645040299999948],[121.33562630000006,-3.667437099999972],[121.336062,-3.669938099999968],[121.34388210000009,-3.675587899999925],[121.34444110000004,-3.678901399999972],[121.34303920000002,-3.687412799999947],[121.33687610000004,-3.692642499999977],[121.31539280000004,-3.694571199999928],[121.28989820000004,-3.689888],[121.259958,-3.668084699999952],[121.25285010000005,-3.659348299999976],[121.23145910000005,-3.670108],[121.22299060000012,-3.676077799999973],[121.18543770000008,-3.691837],[121.16135220000001,-3.703823199999931],[121.11406820000002,-3.742244],[121.10551310000005,-3.747489599999938],[121.11662830000012,-3.758395399999927],[121.12118840000005,-3.760557299999959],[121.14186560000007,-3.779102099999932],[121.1563139000001,-3.794131299999947],[121.16163440000003,-3.801912299999969],[121.17002350000007,-3.826069899999936],[121.18019040000001,-3.8295043],[121.18836410000006,-3.829774799999939],[121.19355450000012,-3.829360799999961],[121.2075939,-3.823485699999935],[121.215614,-3.8227429],[121.23997580000002,-3.825479],[121.24552820000008,-3.829424],[121.25105350000001,-3.837040299999956],[121.255655,-3.848081799999932],[121.25877160000005,-3.850602099999946],[121.25879720000012,-3.8548974],[121.25528240000006,-3.855893899999955],[121.25471870000001,-3.859717899999964],[121.25189000000012,-3.862234899999976],[121.24979990000008,-3.862248699999952],[121.24795840000002,-3.860373099999947],[121.24550240000008,-3.865386699999931],[121.23896450000007,-3.866024099999947],[121.23333090000006,-3.870099699999969],[121.2429327000001,-3.871638799999971],[121.24676590000001,-3.877967599999977],[121.25279580000006,-3.875855099999967],[121.25638870000012,-3.876893399999972],[121.26183630000003,-3.882863799999939],[121.2610777000001,-3.887021899999979],[121.253885,-3.8905789],[121.25164170000005,-3.896795599999962],[121.24893280000003,-3.899918699999944],[121.243886,-3.9031183],[121.24026230000004,-3.902694799999949],[121.2429092000001,-3.908777],[121.2424496000001,-3.913170699999966],[121.2494822000001,-3.914243499999941],[121.25227860000007,-3.920751],[121.25576750000005,-3.919544899999948],[121.25331050000011,-3.915786599999933],[121.25371660000008,-3.911087399999928],[121.265073,-3.911138199999925],[121.267722,-3.909886699999959],[121.26649170000007,-3.906032099999948],[121.27100530000007,-3.901731699999971],[121.27047290000007,-3.896644699999968],[121.27641290000008,-3.897190499999965],[121.27280270000006,-3.890102599999977],[121.28140680000001,-3.889671399999941],[121.28012090000004,-3.8846828],[121.29133780000006,-3.8860745],[121.29996410000001,-3.889792299999954],[121.31326450000006,-3.914147499999956],[121.3172694000001,-3.932143899999971],[121.31626580000011,-3.937068199999942],[121.31895,-3.944567],[121.32056480000006,-3.9467371],[121.32281380000006,-3.946420399999965],[121.32142650000003,-3.947235199999966],[121.32310410000002,-3.949887499999932],[121.32324790000007,-3.947293799999954],[121.32636080000009,-3.945909099999938],[121.32589220000011,-3.944737399999951],[121.32710110000005,-3.941589799999974],[121.327687,-3.941435399999932],[121.3289066000001,-3.942718899999932],[121.33053160000009,-3.940031799999929],[121.3290637,-3.942866699999968],[121.32737810000003,-3.941643099999965],[121.32701060000011,-3.9439652],[121.32603060000008,-3.944732099999953],[121.32660050000004,-3.946090199999958],[121.32361010000011,-3.947592],[121.32361010000011,-3.949227099999973],[121.3342252000001,-3.961796099999958],[121.34036240000012,-3.979030199999954],[121.34305940000002,-3.980768499999954],[121.3433874000001,-3.984995099999935],[121.34952270000008,-3.990661799999941],[121.362608,-3.997453199999939],[121.37100120000002,-4.003673699999979],[121.40150260000007,-4.0003698],[121.4077827000001,-3.997307299999932],[121.410689,-3.999315199999955],[121.41386620000003,-3.998784099999966],[121.42374140000004,-4.006238799999949],[121.42791430000011,-4.006637799999964],[121.44360630000006,-4.0219003],[121.45223610000005,-4.0239268],[121.45492260000003,-4.017628199999933],[121.4518402000001,-4.009709199999975],[121.45624850000002,-4.007836499999939],[121.45946060000006,-4.010460299999977],[121.4800282000001,-4.017225899999971],[121.48585250000008,-4.016049399999929],[121.5007491,-4.018946899999946],[121.50587980000012,-4.017836299999942],[121.51330120000011,-4.023259899999971],[121.53007920000005,-4.027826199999936],[121.53075740000008,-4.030786599999942],[121.53460170000005,-4.030373],[121.54014060000009,-4.032545899999946],[121.54308090000006,-4.035574299999951],[121.5480937000001,-4.037358499999925],[121.5528111000001,-4.042814199999953],[121.55535110000005,-4.043402599999979],[121.55529510000008,-4.045098799999948],[121.55848260000005,-4.040257699999927],[121.56304150000005,-4.038958199999968],[121.56187120000004,-4.041799499999968],[121.56376050000006,-4.039373599999976],[121.57241490000001,-4.047815],[121.57789250000008,-4.050017199999957],[121.5777035000001,-4.052637499999946],[121.5790429000001,-4.052986399999952],[121.57930650000003,-4.0507282],[121.58073920000004,-4.050643],[121.57906690000004,-4.049599099999966],[121.5824176000001,-4.049603899999966],[121.5816645000001,-4.052123599999959],[121.58261980000009,-4.049777199999937],[121.58791080000003,-4.051424099999963],[121.58729390000008,-4.055175299999974],[121.58871670000008,-4.057634599999972],[121.58484940000005,-4.058187],[121.587206,-4.058213599999931],[121.58639650000009,-4.058799499999964],[121.5904068000001,-4.057292299999972],[121.59108060000005,-4.061987],[121.60215060000007,-4.063429399999961],[121.60972740000011,-4.067073099999959],[121.6081177000001,-4.072451799999953],[121.61104300000011,-4.075749599999938],[121.6076445000001,-4.084918],[121.60811810000007,-4.088971699999945],[121.60657760000004,-4.090206899999941],[121.6063630000001,-4.1039733],[121.60768240000004,-4.111186699999962],[121.6116022000001,-4.116810799999939],[121.61568260000001,-4.127441199999964],[121.61752940000008,-4.141422499999976],[121.61726340000007,-4.150973099999931],[121.61007660000007,-4.161889],[121.60797580000008,-4.162227499999972],[121.60882970000011,-4.170365599999968],[121.60789090000003,-4.17307],[121.60309920000009,-4.172148499999935],[121.60291490000009,-4.173237499999971],[121.60636950000003,-4.173712399999943],[121.60575260000007,-4.175955099999953],[121.60401620000005,-4.176519799999937],[121.60733320000008,-4.179423799999938],[121.60539630000005,-4.179703199999949],[121.606781,-4.181673699999976],[121.5997589000001,-4.178904299999942],[121.60004920000006,-4.180717799999968],[121.59616670000003,-4.182070499999952],[121.59429470000009,-4.176907099999937],[121.59317090000002,-4.178962899999931],[121.591717,-4.176126899999929],[121.58917660000009,-4.176808599999958],[121.5906678,-4.178811099999962],[121.59074240000007,-4.1834126],[121.58797830000003,-4.188365599999941],[121.59436920000007,-4.192562299999963],[121.594238,-4.194976399999973],[121.58625080000002,-4.200765799999942],[121.58413110000004,-4.209530099999938],[121.58143380000001,-4.209122699999966],[121.58064710000008,-4.210817],[121.57970490000002,-4.208798499999943],[121.5789635000001,-4.210298499999965],[121.5821499000001,-4.211665399999958],[121.5820470000001,-4.213749899999925],[121.58092090000002,-4.2138202],[121.58306860000005,-4.214231099999949],[121.5842606000001,-4.217611199999965],[121.58254920000002,-4.2249473],[121.585082,-4.229107699999929],[121.58348660000001,-4.229611299999931],[121.58387660000005,-4.233139199999925],[121.58113530000003,-4.237109],[121.57962240000006,-4.245316199999934],[121.57572860000005,-4.247238099999947],[121.568192,-4.260037399999931],[121.56560590000004,-4.261993099999927],[121.56298920000006,-4.262190099999941],[121.559208,-4.2648932],[121.54955930000006,-4.264961299999925],[121.54857930000003,-4.262831],[121.5426192000001,-4.259580299999925],[121.54042950000007,-4.255009],[121.54458910000005,-4.251862299999971],[121.55704730000002,-4.250895899999932],[121.56093250000004,-4.245325099999945],[121.5602563000001,-4.243747699999972],[121.557769,-4.243487699999946],[121.55715260000011,-4.246485599999971],[121.5549516000001,-4.248334199999931],[121.55230470000004,-4.24892],[121.5510958000001,-4.246273099999939],[121.55119160000004,-4.247828199999958],[121.54823580000004,-4.249042499999973],[121.54616410000006,-4.243623499999956],[121.5405134,-4.244070799999974],[121.53323670000009,-4.2399825],[121.528702,-4.242155099999934],[121.5263725000001,-4.2455435],[121.52645550000011,-4.251077299999963],[121.53016070000001,-4.252967699999942],[121.53093950000004,-4.260118899999952],[121.53278670000009,-4.262973199999976],[121.53141890000006,-4.266086399999949],[121.52631050000002,-4.266419599999949],[121.53208330000007,-4.2772711],[121.53122760000008,-4.281511499999965],[121.53377870000008,-4.282066199999974],[121.53109630000006,-4.290084199999967],[121.53334590000009,-4.291071399999964],[121.5354933000001,-4.288477199999932],[121.54219920000003,-4.2909031],[121.54350570000008,-4.290608499999962],[121.5437217000001,-4.287257599999975],[121.54473470000005,-4.287032899999929],[121.54381360000002,-4.287545499999965],[121.54469360000007,-4.288512299999979],[121.54304170000012,-4.291450699999928],[121.53513870000006,-4.289364499999976],[121.5331926,-4.292245799999932],[121.52967590000003,-4.291479199999969],[121.52859720000004,-4.293123199999968],[121.52643710000007,-4.292712799999947],[121.526732,-4.297007299999962],[121.52312630000006,-4.307222599999932],[121.5236771000001,-4.317730899999958],[121.51842030000012,-4.3323499],[121.5159192000001,-4.344994699999972],[121.5179812,-4.369315099999938],[121.51675630000011,-4.369693199999972],[121.5184286000001,-4.37054],[121.51833810000005,-4.374853899999948],[121.52080390000003,-4.378369],[121.52099110000006,-4.385667599999977],[121.52340960000004,-4.388999299999966],[121.5212686000001,-4.3958056],[121.52407460000006,-4.401805099999933],[121.52099250000003,-4.406082499999968],[121.516371,-4.4416502],[121.51278390000004,-4.448551599999973],[121.51186380000001,-4.457415599999933],[121.5003412000001,-4.483463499999971],[121.49428940000007,-4.503858399999956],[121.49438260000011,-4.508603299999947],[121.4921088000001,-4.510152399999924],[121.48632420000001,-4.530256099999974],[121.47497110000006,-4.550876399999936],[121.47676380000007,-4.574593599999957],[121.47365220000006,-4.584634299999948],[121.46958290000009,-4.587854199999981],[121.47062480000011,-4.591276599999958],[121.47355430000005,-4.591950899999972],[121.47789150000006,-4.588927],[121.4785796000001,-4.591030099999955],[121.484493,-4.591661099999953],[121.48560120000002,-4.588656199999946],[121.4907885,-4.591604199999949],[121.49536130000001,-4.588313099999937],[121.49737980000009,-4.5838715],[121.499879,-4.586043099999927],[121.50016560000006,-4.584667299999978],[121.50501610000003,-4.5819779],[121.5052353000001,-4.584126399999946],[121.50990560000002,-4.587126],[121.51137820000008,-4.584512699999948],[121.51336770000012,-4.584458799999936],[121.51341370000011,-4.582531099999926],[121.51891180000007,-4.5825546],[121.52084590000004,-4.580694299999948],[121.52878640000006,-4.582116],[121.52761730000009,-4.576560099999938],[121.53263790000005,-4.575071899999955],[121.53417220000006,-4.576291799999979],[121.535768,-4.572938199999953],[121.53667580000001,-4.573801],[121.54024160000006,-4.572414299999934],[121.540867,-4.573859199999958],[121.54455380000002,-4.574847199999965],[121.54606750000005,-4.5724573],[121.5469561000001,-4.574192299999936],[121.54866860000004,-4.572551699999963],[121.55070400000011,-4.57377],[121.55153440000004,-4.572385899999972],[121.55048510000006,-4.570353299999965],[121.55388440000002,-4.573240699999928],[121.55377670000007,-4.571306499999935],[121.55565830000012,-4.5719048],[121.55815370000005,-4.568974499999968],[121.5590754000001,-4.573541],[121.56035910000003,-4.573609499999975],[121.56308950000005,-4.5695169],[121.56321850000006,-4.573549699999944],[121.56465930000002,-4.575061399999925],[121.5681178000001,-4.575187299999925],[121.56625710000003,-4.5767225],[121.56617,-4.578922199999965],[121.56929670000011,-4.577678899999967],[121.57154330000003,-4.579755399999954],[121.57404830000007,-4.578990599999941],[121.5728984000001,-4.576371299999948],[121.57483380000008,-4.5777794],[121.57303320000005,-4.574834099999975],[121.57480270000008,-4.5750289],[121.57421440000007,-4.5726732],[121.577378,-4.570643],[121.57943610000007,-4.571334],[121.57799430000011,-4.574265399999945],[121.58032170000001,-4.573007799999971],[121.57943480000006,-4.575196299999959],[121.581795,-4.578012399999977],[121.58301010000002,-4.576148899999964],[121.58589610000001,-4.576804],[121.58625240000003,-4.573467099999959],[121.58982780000008,-4.576838799999962],[121.59055360000002,-4.574027499999943],[121.59200190000001,-4.577428299999951],[121.5946583000001,-4.576939599999946],[121.59358020000002,-4.573021399999959],[121.59659550000003,-4.575048399999957],[121.59760930000004,-4.570801299999971],[121.599774,-4.573846199999934],[121.60036220000006,-4.571852499999977],[121.60783150000009,-4.570490899999925],[121.61034990000007,-4.571959399999969],[121.61260670000001,-4.569548699999928],[121.61149490000003,-4.571079899999972],[121.61315840000009,-4.573816099999931],[121.61329020000005,-4.571602199999973],[121.61732530000006,-4.568868299999963],[121.61882890000004,-4.563791299999934],[121.6219291000001,-4.562199199999952],[121.62251890000005,-4.559887699999933],[121.62424440000007,-4.561713],[121.626902,-4.561039899999969],[121.62789020000002,-4.562496899999928],[121.63236390000009,-4.562498299999959],[121.632855,-4.563864299999977],[121.63428770000007,-4.5629871],[121.63809690000005,-4.567955499999925],[121.63936400000011,-4.565975599999945],[121.64098980000006,-4.567856599999971],[121.6422162,-4.56549],[121.64475160000006,-4.566851399999962],[121.6473625000001,-4.563809699999979],[121.64702780000005,-4.565801799999974],[121.64967490000004,-4.566139],[121.655967,-4.564158],[121.66092960000003,-4.565163699999971],[121.6599447000001,-4.560844199999963],[121.66292470000008,-4.560185499999932],[121.66292830000009,-4.5581927],[121.66590950000011,-4.556869799999959],[121.66591310000001,-4.554877],[121.66789770000003,-4.555544899999973],[121.66988780000008,-4.553223699999933],[121.67717080000011,-4.552240799999936],[121.68115020000005,-4.547930399999927],[121.6831360000001,-4.547934],[121.68379490000007,-4.549595899999929],[121.686448,-4.546611499999926],[121.6904201000001,-4.546286599999974],[121.69042250000007,-4.544958099999974],[121.69571790000009,-4.544967699999972],[121.698702,-4.541983899999934],[121.69903710000006,-4.539659599999936],[121.70500090000007,-4.536016899999936],[121.70731620000004,-4.536795099999949],[121.71176360000004,-4.535589499999958],[121.710095,-4.532066799999939],[121.7138364000001,-4.5315904],[121.71060340000008,-4.5302086],[121.7103399,-4.526918],[121.71285940000007,-4.527546499999971],[121.71367540000006,-4.524825599999929],[121.71651760000009,-4.527553],[121.71993480000003,-4.523027799999966],[121.72338130000003,-4.524083],[121.72248940000009,-4.521359099999927],[121.72506970000006,-4.519147699999962],[121.72344970000006,-4.517345],[121.72510790000001,-4.513865799999962],[121.72364220000009,-4.513411],[121.72377560000007,-4.511855499999967],[121.72185080000008,-4.513869099999965],[121.71871090000002,-4.513348],[121.72022190000007,-4.500202399999978],[121.7231746000001,-4.501512499999933],[121.72346790000006,-4.498540299999945],[121.72536470000011,-4.498207899999954],[121.726577,-4.495607099999972],[121.72651840000003,-4.494453399999941],[121.7236392000001,-4.493947099999957],[121.72396520000007,-4.491623299999958],[121.726284,-4.492649399999948],[121.72861240000009,-4.491242499999942],[121.7325469000001,-4.492940699999963],[121.733755,-4.491531799999962],[121.73807390000002,-4.490957499999979],[121.73724790000006,-4.4870373],[121.74217710000005,-4.484896799999945],[121.74601980000011,-4.485549299999946],[121.7501162000001,-4.479205299999933],[121.75287130000004,-4.480220299999928],[121.75105880000001,-4.478625299999976],[121.7532701,-4.474963899999977],[121.75022500000011,-4.471411199999977],[121.75131250000004,-4.4690186],[121.7560615000001,-4.466154699999947],[121.76041170000008,-4.467278499999964],[121.76171670000008,-4.464922199999933],[121.76421810000011,-4.464197099999978],[121.7675895000001,-4.465502199999946],[121.77034460000004,-4.463580899999954],[121.7721934000001,-4.4588319],[121.77469480000002,-4.458288099999947],[121.77861,-4.454155399999934],[121.78248890000009,-4.455714299999954],[121.7827876,-4.449824],[121.78718620000006,-4.448809],[121.78897460000007,-4.444362099999978],[121.7876695000001,-4.439818599999967],[121.79477250000002,-4.437398799999926],[121.79299950000006,-4.435173899999938],[121.79279310000004,-4.431359899999961],[121.798255,-4.430586499999947],[121.7979166,-4.424544599999933],[121.80289520000008,-4.420774399999971],[121.8055223,-4.4206983],[121.8038,-4.415612099999976],[121.80470050000008,-4.414048199999968]],[[121.57847570000001,-4.051732099999981],[121.57910950000007,-4.050693599999931],[121.57885380000005,-4.052834599999926],[121.57847570000001,-4.051732099999981]]]]},"properties":{"shapeName":"Kolaka","shapeISO":"","shapeID":"22746128B24250314639398","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[121.90769850000004,-4.377948599999968],[121.97659380000005,-4.378928799999926],[121.97989450000011,-4.373515499999939],[121.9830981,-4.372234299999946],[121.98931870000001,-4.372334599999931],[122.00384340000005,-4.3690942],[122.00712720000001,-4.366884599999935],[122.01039820000005,-4.360441399999957],[122.01069860000007,-4.277162499999974],[122.01481400000011,-4.201752899999974],[122.01115450000009,-4.182974499999943],[121.99444710000012,-4.131675199999961],[121.98775890000002,-4.106185699999969],[121.97245590000011,-4.091858599999966],[121.96441650000008,-4.080244299999947],[121.96153950000007,-4.0720783],[121.9554882000001,-4.042331799999943],[121.95324380000011,-4.003298599999937],[121.954868,-3.999506099999962],[121.95392680000009,-3.996794399999942],[121.95569410000007,-3.986497],[121.95921340000007,-3.977963599999953],[121.96626820000006,-3.947615499999927],[121.96956390000003,-3.900999699999943],[121.96139290000008,-3.8772003],[121.94946520000008,-3.859479399999941],[121.93576180000002,-3.843063499999971],[121.93098860000009,-3.832261899999935],[121.92564980000009,-3.831269299999974],[121.91849270000012,-3.826737599999944],[121.90814960000012,-3.8230434],[121.90268770000012,-3.817237299999931],[121.8946625000001,-3.813816899999949],[121.89358520000008,-3.8112467],[121.89125050000007,-3.811804499999937],[121.887525,-3.8083625],[121.883842,-3.807688399999961],[121.87350210000011,-3.797869899999966],[121.8698812,-3.797783799999934],[121.86750540000003,-3.794786699999975],[121.86269020000009,-3.792494099999942],[121.85539940000001,-3.7835831],[121.85539940000001,-3.774672099999975],[121.8645067000001,-3.756452899999942],[121.85733970000001,-3.749365399999931],[121.8538711000001,-3.747230899999977],[121.85205680000001,-3.748671699999932],[121.8505626000001,-3.74579],[121.84213120000004,-3.741627699999981],[121.83908950000011,-3.737251899999933],[121.83236580000005,-3.733036199999958],[121.825055,-3.735117399999979],[121.81955860000005,-3.731382],[121.81566310000005,-3.7339434],[121.8117142000001,-3.7342102],[121.80792540000004,-3.729887799999972],[121.80146850000006,-3.729514299999948],[121.7994407000001,-3.730581499999971],[121.79799990000004,-3.726632699999925],[121.79122270000005,-3.726846099999932],[121.7848725,-3.733996799999943],[121.77916270000003,-3.735597699999971],[121.77494700000011,-3.738639399999954],[121.7745734,-3.740773899999965],[121.77009090000001,-3.744456],[121.77121150000005,-3.749632199999951],[121.77014430000008,-3.751446499999929],[121.7650748000001,-3.755662199999961],[121.76112590000002,-3.753901199999973],[121.76037880000001,-3.757796799999937],[121.75247220000006,-3.761621099999957],[121.7518318000001,-3.763399899999968],[121.7491281,-3.764040299999976],[121.74834540000006,-3.766459399999974],[121.74172840000006,-3.765249799999935],[121.74026090000007,-3.765854599999955],[121.74090130000002,-3.768629499999975],[121.73951380000005,-3.7693766],[121.73393370000008,-3.765136599999948],[121.73223320000011,-3.768206],[121.72767070000009,-3.768952499999955],[121.72609590000002,-3.7656595],[121.72090990000004,-3.768454799999972],[121.72128320000002,-3.771316699999943],[121.71452250000004,-3.7720219],[121.71236560000011,-3.775423],[121.70631,-3.775298499999963],[121.70062760000008,-3.777787199999977],[121.69959070000004,-3.776418399999955],[121.70091800000012,-3.774054199999966],[121.69863670000007,-3.774593399999958],[121.69652140000005,-3.772312199999931],[121.69751680000002,-3.769325799999933],[121.69453050000004,-3.768371899999977],[121.69536,-3.765178099999957],[121.69233220000001,-3.764514499999962],[121.69241510000006,-3.760740099999964],[121.68772820000004,-3.760906],[121.68428560000007,-3.758707699999945],[121.68380720000005,-3.751409199999955],[121.67902260000005,-3.753550699999948],[121.680184,-3.750564399999973],[121.67856640000002,-3.747412099999963],[121.68474650000007,-3.747204699999941],[121.68499530000008,-3.744467199999974],[121.68064030000005,-3.741605299999947],[121.67997660000003,-3.738826299999971],[121.67640030000007,-3.738342499999931],[121.675451,-3.736697],[121.67333570000005,-3.737236199999927],[121.67159360000005,-3.7311391],[121.67030780000005,-3.730973199999937],[121.66927090000001,-3.734125399999925],[121.66611860000012,-3.732756699999925],[121.66674080000007,-3.729728799999975],[121.66217830000005,-3.729936199999941],[121.66056070000002,-3.728360099999975],[121.659109,-3.72948],[121.66031190000001,-3.731636799999933],[121.65757440000004,-3.732051599999977],[121.65682780000009,-3.733918],[121.6538829000001,-3.733710599999938],[121.6538829000001,-3.731512399999929],[121.65226530000007,-3.733420299999977],[121.64861530000007,-3.732010099999968],[121.64898860000005,-3.738107199999945],[121.64770280000005,-3.736074799999926],[121.64484090000008,-3.736862899999949],[121.64293290000012,-3.734540199999969],[121.6409006,-3.7380243],[121.63861930000007,-3.737609499999962],[121.63658690000011,-3.7348305],[121.63181710000003,-3.736323699999957],[121.63048980000008,-3.7388123],[121.62053530000003,-3.735784499999966],[121.61858590000008,-3.736448099999961],[121.60793130000002,-3.699872599999935],[121.61220230000004,-3.690455199999974],[121.612007,-3.681392499999959],[121.58772080000006,-3.656835399999977],[121.58035,-3.644804],[121.56596030000003,-3.600275],[121.5602477000001,-3.586781199999962],[121.53324820000012,-3.541970299999946],[121.53075870000009,-3.5337323],[121.53360780000003,-3.511592099999973],[121.52671160000011,-3.498648299999957],[121.52436810000006,-3.477056599999969],[121.520924,-3.470403899999951],[121.50330810000003,-3.449520799999959],[121.4974274000001,-3.443207899999948],[121.47577350000006,-3.4116829],[121.44102580000003,-3.350937899999963],[121.42195170000002,-3.355740699999956],[121.41559660000007,-3.355557799999929],[121.36512270000003,-3.340111],[121.35431010000002,-3.335086899999965],[121.33715470000004,-3.322888199999966],[121.318123,-3.303177399999925],[121.30630580000002,-3.283306299999936],[121.29091270000004,-3.245390799999939],[121.27960960000007,-3.226642899999945],[121.25333650000005,-3.225389599999971],[121.22791550000011,-3.228107199999954],[121.22361360000002,-3.233105399999943],[121.220157,-3.245699799999954],[121.22100020000005,-3.254504299999951],[121.19177710000008,-3.270418199999938],[121.19177220000006,-3.273179899999946],[121.185759,-3.274549799999932],[121.1807669000001,-3.2810997],[121.17748950000009,-3.289033599999925],[121.17525480000006,-3.290237699999977],[121.17267060000006,-3.294720699999971],[121.16974760000005,-3.296613899999954],[121.16665790000002,-3.295745199999942],[121.1652878000001,-3.293671399999937],[121.16065290000006,-3.2926272],[121.15755280000008,-3.2974543],[121.15908500000012,-3.304706499999952],[121.1585397,-3.321016499999928],[121.15733430000012,-3.322740299999964],[121.15836120000006,-3.324640799999941],[121.15183090000005,-3.326872399999957],[121.15388570000005,-3.330155699999978],[121.15749,-3.331370699999979],[121.1578181000001,-3.339656299999945],[121.15111170000011,-3.344131299999958],[121.14283910000006,-3.359477099999935],[121.14214120000008,-3.365257899999961],[121.13406820000012,-3.365760199999954],[121.13112880000006,-3.376110599999947],[121.133524,-3.380948],[121.132145,-3.383534399999974],[121.1355698000001,-3.388891599999965],[121.13315470000009,-3.394410199999925],[121.1334892000001,-3.399071],[121.129537,-3.400098899999932],[121.1229892,-3.4110462],[121.13259730000004,-3.416243],[121.13738580000006,-3.426953599999933],[121.1409953000001,-3.4255798],[121.148027,-3.430944199999942],[121.14870970000004,-3.433189299999981],[121.14974230000007,-3.432155699999953],[121.15059680000002,-3.434401199999968],[121.15197250000006,-3.433540899999969],[121.1552309000001,-3.436136199999964],[121.15350200000012,-3.442001299999959],[121.14971630000002,-3.445618599999932],[121.14470760000006,-3.459848399999942],[121.13714940000011,-3.460178699999972],[121.13336430000004,-3.463450699999953],[121.13180820000002,-3.468625599999939],[121.1278608,-3.4670644],[121.12408060000007,-3.467747199999963],[121.1225290000001,-3.470678299999975],[121.12663150000003,-3.480697299999974],[121.12301800000012,-3.483969399999978],[121.12112860000002,-3.483965699999942],[121.12009080000007,-3.487588199999948],[121.122321,-3.488973399999963],[121.11974250000003,-3.490003799999954],[121.12403490000008,-3.490875399999936],[121.12763480000001,-3.4945072],[121.1291821000001,-3.493819899999949],[121.13003560000004,-3.496496899999954],[121.13741,-3.502380099999925],[121.14393220000011,-3.5049821],[121.15063060000011,-3.505340599999954],[121.15027850000001,-3.509655],[121.1542167,-3.516049],[121.15162820000012,-3.522085],[121.15488410000012,-3.526061299999981],[121.15487420000011,-3.5310667],[121.15709750000008,-3.536076599999944],[121.160184,-3.538844399999959],[121.17117310000003,-3.541282699999954],[121.17426080000007,-3.543532699999957],[121.17768030000002,-3.551738099999966],[121.186075,-3.563319199999967],[121.19362250000006,-3.569030099999964],[121.2018663,-3.570082],[121.21181260000003,-3.579077],[121.21951420000005,-3.594109],[121.23719,-3.604068499999926],[121.24369180000008,-3.617889899999966],[121.24793290000002,-3.645861],[121.2496708000001,-3.653416099999959],[121.25285010000005,-3.659348299999976],[121.259958,-3.668084699999952],[121.28989820000004,-3.689888],[121.31539280000004,-3.694571199999928],[121.33687610000004,-3.692642499999977],[121.34303920000002,-3.687412799999947],[121.34444110000004,-3.678901399999972],[121.34388210000009,-3.675587899999925],[121.336062,-3.669938099999968],[121.33562630000006,-3.667437099999972],[121.35385110000004,-3.645040299999948],[121.37024020000001,-3.6306129],[121.3917652,-3.617300799999953],[121.40866710000012,-3.611675399999967],[121.41971810000007,-3.612968199999955],[121.42839960000003,-3.619855499999971],[121.43209950000005,-3.626241499999935],[121.43405670000004,-3.636588599999925],[121.42894380000007,-3.6858093],[121.42865190000009,-3.694141199999933],[121.43166280000003,-3.703036099999963],[121.44021870000006,-3.709156],[121.45636860000002,-3.716375699999958],[121.46053330000007,-3.720649699999967],[121.4782159,-3.723492599999929],[121.48652270000002,-3.726552099999935],[121.50481370000011,-3.735525099999961],[121.52356410000004,-3.747799799999939],[121.52697870000009,-3.754234699999927],[121.53512320000004,-3.758101599999975],[121.54283530000009,-3.768275699999947],[121.54985870000007,-3.780967699999962],[121.56409540000004,-3.794992099999945],[121.57110540000008,-3.8008487],[121.605156,-3.822647],[121.6092000000001,-3.837735599999974],[121.610469,-3.862625099999946],[121.61646240000005,-3.872840799999949],[121.62414690000003,-3.893701399999941],[121.63160080000011,-3.899305699999957],[121.63902810000002,-3.901452399999926],[121.65396470000007,-3.901638699999978],[121.6591585000001,-3.905633099999932],[121.66431350000005,-3.903815399999928],[121.66605290000007,-3.901662199999976],[121.67010570000002,-3.904641],[121.6733934,-3.912204299999928],[121.68485030000011,-3.924205699999959],[121.69387590000008,-3.936283699999933],[121.69917040000007,-3.948180399999956],[121.69826620000003,-3.953326599999968],[121.69648150000012,-3.955809699999975],[121.68545820000008,-3.957751199999961],[121.67652280000004,-3.963023799999974],[121.67547450000006,-3.968390499999941],[121.67758130000004,-3.976734399999941],[121.6882121000001,-3.986861599999941],[121.69761280000012,-3.992550399999971],[121.71980610000003,-3.997553799999935],[121.75998260000006,-4.040047099999981],[121.76359760000003,-4.046813699999973],[121.76879610000003,-4.079494299999965],[121.76935980000007,-4.092743799999937],[121.77197730000012,-4.0953688],[121.7732721000001,-4.102323299999966],[121.77301110000008,-4.113165899999956],[121.77820440000005,-4.142238799999973],[121.77869620000001,-4.162659],[121.77579520000006,-4.172351499999934],[121.75165170000002,-4.200286199999937],[121.75099290000003,-4.226264699999945],[121.74914310000008,-4.231425199999933],[121.74877160000005,-4.240578899999946],[121.74792810000008,-4.242519899999934],[121.737434,-4.246400499999936],[121.73542240000006,-4.256898299999932],[121.73819670000012,-4.259582099999932],[121.73906350000004,-4.267066599999964],[121.75174040000002,-4.2691701],[121.759708,-4.274236599999938],[121.76921660000005,-4.287155],[121.77664610000011,-4.293553499999973],[121.79558440000005,-4.353037899999947],[121.79432530000008,-4.353602899999942],[121.80522360000009,-4.383572199999946],[121.79876270000011,-4.397111099999961],[121.79953450000005,-4.402633599999945],[121.80470050000008,-4.414048199999968],[121.8053622000001,-4.409158699999978],[121.80304210000008,-4.4076979],[121.80647930000009,-4.404862199999968],[121.84793630000001,-4.396878799999968],[121.87606920000007,-4.381125499999939],[121.88200530000006,-4.375979499999971],[121.88216470000009,-4.377499299999954],[121.90769850000004,-4.377948599999968]]]},"properties":{"shapeName":"Kolaka Timur","shapeISO":"","shapeID":"22746128B13149723358829","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[121.05247670000006,-3.065011399999946],[121.05252860000007,-3.062232199999926],[121.05133330000001,-3.063961699999936],[121.05247670000006,-3.065011399999946]]],[[[121.25285010000005,-3.659348299999976],[121.2496708000001,-3.653416099999959],[121.24793290000002,-3.645861],[121.24369180000008,-3.617889899999966],[121.23719,-3.604068499999926],[121.21951420000005,-3.594109],[121.21181260000003,-3.579077],[121.2018663,-3.570082],[121.19362250000006,-3.569030099999964],[121.186075,-3.563319199999967],[121.17768030000002,-3.551738099999966],[121.17426080000007,-3.543532699999957],[121.17117310000003,-3.541282699999954],[121.160184,-3.538844399999959],[121.15709750000008,-3.536076599999944],[121.15487420000011,-3.5310667],[121.15488410000012,-3.526061299999981],[121.15162820000012,-3.522085],[121.1542167,-3.516049],[121.15027850000001,-3.509655],[121.15063060000011,-3.505340599999954],[121.14393220000011,-3.5049821],[121.13741,-3.502380099999925],[121.13003560000004,-3.496496899999954],[121.1291821000001,-3.493819899999949],[121.12763480000001,-3.4945072],[121.12403490000008,-3.490875399999936],[121.11974250000003,-3.490003799999954],[121.122321,-3.488973399999963],[121.12009080000007,-3.487588199999948],[121.12112860000002,-3.483965699999942],[121.12301800000012,-3.483969399999978],[121.12663150000003,-3.480697299999974],[121.1225290000001,-3.470678299999975],[121.12408060000007,-3.467747199999963],[121.1278608,-3.4670644],[121.13180820000002,-3.468625599999939],[121.13336430000004,-3.463450699999953],[121.13714940000011,-3.460178699999972],[121.14470760000006,-3.459848399999942],[121.14971630000002,-3.445618599999932],[121.15350200000012,-3.442001299999959],[121.1552309000001,-3.436136199999964],[121.15197250000006,-3.433540899999969],[121.15059680000002,-3.434401199999968],[121.14974230000007,-3.432155699999953],[121.14870970000004,-3.433189299999981],[121.148027,-3.430944199999942],[121.1409953000001,-3.4255798],[121.13738580000006,-3.426953599999933],[121.13259730000004,-3.416243],[121.1229892,-3.4110462],[121.129537,-3.400098899999932],[121.1334892000001,-3.399071],[121.13315470000009,-3.394410199999925],[121.1355698000001,-3.388891599999965],[121.132145,-3.383534399999974],[121.133524,-3.380948],[121.13112880000006,-3.376110599999947],[121.13406820000012,-3.365760199999954],[121.14214120000008,-3.365257899999961],[121.14283910000006,-3.359477099999935],[121.15111170000011,-3.344131299999958],[121.1578181000001,-3.339656299999945],[121.15749,-3.331370699999979],[121.15388570000005,-3.330155699999978],[121.15183090000005,-3.326872399999957],[121.15836120000006,-3.324640799999941],[121.15733430000012,-3.322740299999964],[121.1585397,-3.321016499999928],[121.15908500000012,-3.304706499999952],[121.15755280000008,-3.2974543],[121.16065290000006,-3.2926272],[121.1652878000001,-3.293671399999937],[121.16665790000002,-3.295745199999942],[121.16974760000005,-3.296613899999954],[121.17267060000006,-3.294720699999971],[121.17525480000006,-3.290237699999977],[121.17748950000009,-3.289033599999925],[121.1807669000001,-3.2810997],[121.185759,-3.274549799999932],[121.19177220000006,-3.273179899999946],[121.19177710000008,-3.270418199999938],[121.22100020000005,-3.254504299999951],[121.220157,-3.245699799999954],[121.22361360000002,-3.233105399999943],[121.22791550000011,-3.228107199999954],[121.25333650000005,-3.225389599999971],[121.27960960000007,-3.226642899999945],[121.29091270000004,-3.245390799999939],[121.30630580000002,-3.283306299999936],[121.318123,-3.303177399999925],[121.33715470000004,-3.322888199999966],[121.35431010000002,-3.335086899999965],[121.36512270000003,-3.340111],[121.41559660000007,-3.355557799999929],[121.42195170000002,-3.355740699999956],[121.44102580000003,-3.350937899999963],[121.4298887000001,-3.333398299999942],[121.4278385,-3.326489899999956],[121.43080370000007,-3.297752199999934],[121.43127510000011,-3.273299399999928],[121.43019420000007,-3.247948199999939],[121.43556070000011,-3.220422299999939],[121.44199390000006,-3.168384599999968],[121.4366844000001,-3.158709399999964],[121.421242,-3.149536699999942],[121.41644460000009,-3.142106399999932],[121.41184210000006,-3.119399],[121.41202830000009,-3.109732199999939],[121.40928710000003,-3.105412399999977],[121.39271710000003,-3.101162099999954],[121.38852010000005,-3.097612699999956],[121.3888813000001,-3.085874799999942],[121.38169160000007,-3.070931799999926],[121.36676940000007,-3.059515899999951],[121.36125760000004,-3.052082199999973],[121.36061130000007,-3.043970399999978],[121.36287120000009,-3.025589599999932],[121.36872480000011,-3.015241099999969],[121.36993470000004,-3.009891599999946],[121.35776510000005,-2.974743099999955],[121.34957380000003,-2.970116599999926],[121.33868780000012,-2.950187],[121.3287835000001,-2.938614799999925],[121.32903390000001,-2.935196899999937],[121.336916,-2.924989799999935],[121.35532,-2.907879899999955],[121.35767790000011,-2.903868099999954],[121.3577259000001,-2.899346499999979],[121.3534671000001,-2.885883799999931],[121.34046200000012,-2.859720699999968],[121.33255880000002,-2.834044399999925],[121.31866190000005,-2.807735699999967],[121.30813250000006,-2.805622399999947],[121.29538580000008,-2.807123],[121.2805466000001,-2.8185768],[121.241304,-2.825263799999959],[121.23522240000011,-2.828808299999935],[121.23081320000006,-2.837166199999956],[121.23323140000002,-2.842080099999976],[121.23122630000012,-2.8441659],[121.22471760000008,-2.844897399999979],[121.2207542000001,-2.843146],[121.22375310000007,-2.8492635],[121.22121,-2.850833],[121.2232934000001,-2.853594299999941],[121.22131560000003,-2.857723699999951],[121.21898070000009,-2.857810499999971],[121.2183152,-2.856172699999945],[121.21954920000007,-2.854935799999964],[121.21785630000011,-2.8539294],[121.214708,-2.855407499999956],[121.21444950000011,-2.858110899999929],[121.21207350000009,-2.857926299999974],[121.2076244000001,-2.853307599999937],[121.20604240000011,-2.855656199999942],[121.20354830000008,-2.855941599999937],[121.20321740000009,-2.857614],[121.19844360000002,-2.8552825],[121.19693540000003,-2.851943399999925],[121.19475280000006,-2.851750099999947],[121.1871612000001,-2.838753],[121.18128420000005,-2.835850099999959],[121.17702230000009,-2.830589699999962],[121.17412510000008,-2.820641699999953],[121.1718876000001,-2.817569399999968],[121.16385120000007,-2.814482299999952],[121.15401710000003,-2.815226199999927],[121.13303750000011,-2.797831499999972],[121.12143590000005,-2.7913386],[121.08008820000009,-2.779408399999966],[121.06874060000007,-2.787536599999953],[121.06247270000006,-2.786712399999942],[121.05304220000005,-2.791868799999975],[121.04477380000003,-2.792632599999934],[121.037056,-2.791489399999932],[121.03160260000004,-2.793487499999969],[121.02953810000008,-2.796205599999951],[121.0276510000001,-2.808001899999965],[121.0194196000001,-2.819832499999961],[120.98827040000003,-2.831327099999953],[120.98666060000005,-2.836887099999956],[120.98921990000008,-2.842271799999935],[120.98864720000006,-2.845357099999944],[120.99512320000008,-2.852623],[120.99681750000002,-2.869798499999945],[120.99983,-2.869523899999933],[121.00357630000008,-2.865948299999957],[121.00507830000004,-2.868066699999929],[121.0105731000001,-2.870272799999952],[121.01144840000006,-2.862963499999978],[121.00939170000004,-2.863453399999969],[121.00656850000007,-2.861000399999966],[121.00384660000009,-2.860770499999944],[121.00124920000007,-2.854916199999934],[120.99728920000007,-2.853126299999929],[120.996944,-2.850891499999932],[120.99394540000003,-2.849035199999946],[120.994242,-2.846389699999975],[120.99162010000009,-2.840774599999975],[120.9938552000001,-2.839425099999971],[120.9940911000001,-2.8368583],[120.9968735000001,-2.836068299999965],[121.00212330000011,-2.839130599999976],[121.00419940000006,-2.838105799999937],[121.00483080000004,-2.835925799999927],[121.00707370000009,-2.836487299999931],[121.00884880000001,-2.838399799999934],[121.00870710000004,-2.842308099999968],[121.01636410000003,-2.837915899999928],[121.02067470000009,-2.840708199999938],[121.0207233000001,-2.846743],[121.02290320000009,-2.845475699999952],[121.02612390000002,-2.849730699999952],[121.027318,-2.849491499999942],[121.03269590000002,-2.839639699999964],[121.03246590000003,-2.836331599999937],[121.02800830000001,-2.835512199999926],[121.02709960000004,-2.831748],[121.035603,-2.8305939],[121.03517080000006,-2.825351399999931],[121.03239870000004,-2.823364899999945],[121.03204420000009,-2.816373299999952],[121.0348907,-2.809044799999981],[121.03697340000008,-2.807440699999972],[121.03917720000004,-2.821069699999953],[121.04363790000002,-2.824344499999938],[121.04516,-2.829876399999932],[121.04335680000008,-2.833501799999965],[121.04305470000008,-2.847415399999932],[121.04570160000003,-2.850368],[121.04473380000002,-2.855206599999974],[121.04895590000001,-2.8611274],[121.04623660000004,-2.865268199999946],[121.0502269000001,-2.869845299999952],[121.05363660000012,-2.870294499999943],[121.05536070000005,-2.872741499999961],[121.05773720000002,-2.872501399999976],[121.06075830000009,-2.876805099999956],[121.06314830000008,-2.876160699999957],[121.06433780000009,-2.877547899999968],[121.0668247000001,-2.873634399999958],[121.06522560000008,-2.870284899999945],[121.06725060000008,-2.867240599999946],[121.06512980000002,-2.865755],[121.06211270000006,-2.859099599999979],[121.06563690000007,-2.853955799999937],[121.06918340000004,-2.853924699999936],[121.07416680000006,-2.8566092],[121.07829230000004,-2.865180299999963],[121.077235,-2.874066299999924],[121.07450250000011,-2.876652699999966],[121.0761040000001,-2.882486],[121.07514590000005,-2.887152299999968],[121.07210520000001,-2.890720299999941],[121.07346910000001,-2.894970599999965],[121.0725615,-2.898344],[121.07736210000007,-2.895409099999938],[121.080102,-2.895806399999969],[121.07856190000007,-2.906730699999969],[121.08170810000001,-2.908871099999942],[121.09066320000011,-2.923342399999967],[121.08885840000005,-2.925780399999951],[121.0895025000001,-2.927807799999925],[121.08498190000012,-2.9325172],[121.08714930000008,-2.9365973],[121.08655420000002,-2.939540499999964],[121.09030880000012,-2.9448541],[121.08221540000011,-2.947599],[121.08346350000011,-2.950395799999967],[121.08174310000004,-2.957186],[121.08376040000007,-2.959111099999973],[121.08200490000002,-2.959583099999975],[121.08353120000004,-2.961197],[121.08285160000003,-2.962881099999947],[121.0846375000001,-2.962669399999925],[121.08518570000001,-2.964193299999977],[121.08486980000009,-2.967040599999962],[121.08213980000005,-2.968136299999969],[121.08149460000004,-2.971902],[121.07668,-2.971993099999963],[121.07756050000012,-2.9690306],[121.07311170000003,-2.964551799999981],[121.0699436000001,-2.963610499999959],[121.06812570000011,-2.960418199999935],[121.0661579,-2.960097299999973],[121.06506650000006,-2.958288399999958],[121.06610830000011,-2.957206499999927],[121.06395850000001,-2.956477],[121.06285590000005,-2.958382399999948],[121.06793540000001,-2.9633349],[121.06671530000006,-2.964519099999961],[121.068061,-2.967579299999954],[121.06654320000007,-2.965206299999977],[121.06399040000008,-2.965428599999939],[121.06540870000003,-2.966323799999941],[121.0642802000001,-2.968095399999925],[121.0679503,-2.977329099999963],[121.06632730000001,-2.983483699999965],[121.06913620000012,-2.983492799999965],[121.07344730000011,-2.979820099999927],[121.07868530000007,-2.981417299999976],[121.07446070000003,-2.9831238],[121.07599690000006,-2.985876399999938],[121.07435190000001,-2.988322699999969],[121.076211,-2.991063899999972],[121.07477370000004,-2.991531699999939],[121.07750250000004,-2.993906799999934],[121.07366370000011,-2.996299099999931],[121.07328490000009,-2.998375199999941],[121.07856990000005,-2.998570699999959],[121.08101870000007,-2.9940372],[121.08223590000011,-2.994559699999968],[121.08071020000011,-2.995335199999943],[121.081872,-2.997636],[121.080867,-2.999345799999958],[121.08276880000005,-2.998045799999943],[121.08699620000004,-2.998829],[121.0888562,-2.997008499999936],[121.087455,-2.995826799999975],[121.09152080000001,-2.996702899999946],[121.08708210000009,-3.005041799999958],[121.08752970000012,-3.011380199999962],[121.08964220000007,-3.015732599999978],[121.0863955000001,-3.015920699999981],[121.08407060000002,-3.012882399999967],[121.08278060000009,-3.014314499999955],[121.08298810000008,-3.0109133],[121.08236760000011,-3.010212599999932],[121.08261860000005,-3.011977299999955],[121.08117240000001,-3.012197399999934],[121.07934730000011,-3.008596299999965],[121.07577930000002,-3.008965799999942],[121.07518450000009,-3.011549499999944],[121.077416,-3.013147699999934],[121.07586220000007,-3.015561099999957],[121.07682100000011,-3.0198478],[121.07313120000003,-3.032378699999924],[121.06808890000002,-3.0324863],[121.06432560000007,-3.037124399999925],[121.06345450000003,-3.034645299999966],[121.06488760000002,-3.031710299999929],[121.06059990000006,-3.029602],[121.05896380000001,-3.023862299999962],[121.05613960000005,-3.022846199999947],[121.05149860000006,-3.026751],[121.04965330000005,-3.036374499999965],[121.04468780000002,-3.033833299999969],[121.04349610000008,-3.037087499999927],[121.04502490000004,-3.042352299999948],[121.043221,-3.044675],[121.04602620000003,-3.045969899999932],[121.04676330000007,-3.04741],[121.04509670000004,-3.048579599999925],[121.04542780000008,-3.050712899999951],[121.04778770000007,-3.051925499999925],[121.04842130000009,-3.054740899999956],[121.05037980000009,-3.054075399999931],[121.05215620000001,-3.059061799999938],[121.0526579000001,-3.056990399999961],[121.055811,-3.056301099999928],[121.0584606000001,-3.059458599999971],[121.05793410000001,-3.062936399999955],[121.06006180000008,-3.067525099999955],[121.05995760000008,-3.070115499999929],[121.05668160000005,-3.07469],[121.05782480000005,-3.089375099999927],[121.05597630000011,-3.097555199999931],[121.05218760000002,-3.102329399999974],[121.049608,-3.102227699999958],[121.04990570000007,-3.103275799999949],[121.04759380000007,-3.104621799999961],[121.04586340000003,-3.103765],[121.04446980000012,-3.108102599999938],[121.05110860000002,-3.108387499999935],[121.05178650000005,-3.112671199999966],[121.05614390000005,-3.117735899999957],[121.05894660000001,-3.133129699999927],[121.061005,-3.134169099999951],[121.05979780000007,-3.1371009],[121.0609856000001,-3.144697199999939],[121.05564970000012,-3.151849899999945],[121.05786770000009,-3.159448199999929],[121.05666570000005,-3.1594459],[121.05579120000004,-3.168073899999968],[121.05819310000004,-3.169114],[121.05578660000003,-3.170490199999961],[121.05593220000003,-3.184470599999941],[121.0574749000001,-3.185854199999937],[121.05678360000002,-3.188269199999979],[121.06072540000002,-3.192246399999931],[121.06054790000007,-3.195352699999944],[121.06449170000008,-3.1982943],[121.0653453000001,-3.200884799999926],[121.06877730000008,-3.202099499999974],[121.06911550000007,-3.204861599999958],[121.06258530000002,-3.207610699999975],[121.05040990000009,-3.199130499999967],[121.03322490000005,-3.206605199999956],[121.02995160000012,-3.212294399999962],[121.02873570000008,-3.219540799999947],[121.02564130000007,-3.221433299999944],[121.0221911000001,-3.2297109],[121.02166790000001,-3.233852],[121.02303790000008,-3.235753199999976],[121.02149090000012,-3.236613099999943],[121.02044480000006,-3.244722699999954],[121.017354,-3.244716599999947],[121.01339890000008,-3.2476429],[121.00738970000009,-3.247285799999929],[120.994451,-3.254085299999929],[120.98392050000007,-3.256431099999929],[120.98143720000007,-3.259401299999979],[120.97895620000008,-3.258085899999969],[120.97481930000004,-3.260899],[120.9702598,-3.267490199999941],[120.97059630000001,-3.270942599999955],[120.96800630000007,-3.278013199999975],[120.96046700000011,-3.287541899999951],[120.96009890000005,-3.291024799999946],[120.95665780000002,-3.291962],[120.95555280000008,-3.296710299999972],[120.95892970000011,-3.301669599999968],[120.95736240000008,-3.3013246],[120.95886890000008,-3.303693899999928],[120.9579202000001,-3.317813499999943],[120.95933120000007,-3.319181499999956],[120.95780790000003,-3.320975899999951],[120.95699450000006,-3.330337199999974],[120.93807040000002,-3.335418699999934],[120.93134640000005,-3.342536899999971],[120.92975590000003,-3.3471655],[120.92080840000006,-3.353118],[120.91415470000004,-3.367294099999981],[120.91461580000009,-3.369395399999974],[120.90642480000008,-3.377464099999941],[120.90458750000005,-3.377336699999944],[120.8992148000001,-3.381543],[120.89466190000007,-3.386913099999958],[120.89636080000002,-3.402653199999975],[120.88988870000003,-3.409287199999937],[120.88786940000011,-3.414048899999955],[120.87465740000005,-3.4199],[120.86936690000005,-3.423985],[120.86618360000011,-3.428745799999945],[120.86472440000011,-3.437065099999927],[120.87309540000001,-3.494049199999949],[120.87480620000008,-3.496986899999968],[120.87694560000011,-3.512132899999926],[120.87841580000008,-3.512497099999962],[120.88210480000009,-3.521464699999967],[120.88046290000011,-3.529562],[120.88884640000003,-3.539326399999936],[120.8889458000001,-3.541919499999949],[120.8984501000001,-3.547369499999945],[120.90327370000011,-3.553538],[120.9035692000001,-3.555827099999931],[120.9063344000001,-3.557764899999938],[120.9068598,-3.561398899999972],[120.9108218,-3.568111099999953],[120.90901980000001,-3.568665199999941],[120.9022682000001,-3.565428899999972],[120.89926240000011,-3.565888299999926],[120.90039700000011,-3.568378399999972],[120.90371310000012,-3.570313899999974],[120.90579370000012,-3.576547099999971],[120.90926170000012,-3.576561399999946],[120.91314980000004,-3.580271],[120.917437,-3.581394799999941],[120.91918120000003,-3.584154699999942],[120.91897680000011,-3.587104899999929],[120.9222476000001,-3.588551699999925],[120.92444430000012,-3.592615599999931],[120.92834220000009,-3.5920154],[120.934504,-3.595056799999952],[120.93691730000012,-3.600880599999925],[120.93579490000002,-3.604300099999932],[120.942389,-3.607224899999949],[120.94583890000001,-3.611511899999925],[120.94462980000003,-3.620211299999937],[120.94773590000011,-3.622545799999955],[120.95738240000003,-3.624305099999958],[120.97136770000009,-3.635527],[120.97513640000011,-3.640195199999937],[120.98577180000007,-3.646949899999925],[120.99262690000012,-3.654213899999945],[121.00632240000004,-3.675559],[121.00957990000006,-3.678500299999939],[121.01806490000001,-3.682690599999944],[121.02842320000002,-3.6907569],[121.03678190000005,-3.693444099999965],[121.0413774000001,-3.696879],[121.0493967000001,-3.696365399999934],[121.0571622000001,-3.701298899999927],[121.063779,-3.702079099999935],[121.07273310000005,-3.709843599999942],[121.0840323000001,-3.714760199999944],[121.0917975000001,-3.723526399999969],[121.09474610000007,-3.730878899999936],[121.09648730000004,-3.731199299999957],[121.09980510000003,-3.742612299999962],[121.10551310000005,-3.747489599999938],[121.11406820000002,-3.742244],[121.16135220000001,-3.703823199999931],[121.18543770000008,-3.691837],[121.22299060000012,-3.676077799999973],[121.23145910000005,-3.670108],[121.25285010000005,-3.659348299999976]]]]},"properties":{"shapeName":"Kolaka Utara","shapeISO":"","shapeID":"22746128B97153246559386","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[122.697428,-3.913032699999974],[122.69500490000007,-3.908499499999948],[122.68981840000004,-3.90958],[122.68388990000005,-3.913433599999962],[122.67830050000009,-3.911063799999965],[122.68139680000002,-3.916341399999965],[122.6889397000001,-3.917900199999963],[122.69143210000004,-3.9170893],[122.6916347,-3.915601199999969],[122.69251,-3.916278],[122.69318260000011,-3.918984099999932],[122.69116030000009,-3.923583299999962],[122.69311290000007,-3.925207499999942],[122.69809930000008,-3.919053499999961],[122.697428,-3.913032699999974]]],[[[122.71283840000001,-3.891310699999963],[122.7011539,-3.8923665],[122.697015,-3.896783],[122.69853770000009,-3.901245299999971],[122.70554650000008,-3.910083799999938],[122.70911730000012,-3.911397299999976],[122.71320920000005,-3.910714299999938],[122.7205815000001,-3.9062652],[122.72635920000005,-3.900059],[122.72636050000006,-3.89609],[122.72433450000005,-3.8943592],[122.71987690000003,-3.891915199999971],[122.71283840000001,-3.891310699999963]]],[[[122.71704050000005,-3.889878899999928],[122.7186627000001,-3.886724499999957],[122.71765040000003,-3.883976299999972],[122.71197710000001,-3.881328399999973],[122.70772050000005,-3.883973],[122.70822520000002,-3.889468799999975],[122.71704050000005,-3.889878899999928]]],[[[121.99444710000012,-4.131675199999961],[121.9999338,-4.129328099999952],[122.00989940000011,-4.128163499999971],[122.01048770000011,-4.126398699999925],[122.0210416000001,-4.123469199999931],[122.03042030000006,-4.122892199999967],[122.03920860000005,-4.125845499999969],[122.04155530000003,-4.124082699999974],[122.0515223000001,-4.121740599999953],[122.05914750000011,-4.117041399999948],[122.06266220000009,-4.118811099999959],[122.06911370000012,-4.115287499999965],[122.07438890000003,-4.115293699999938],[122.07557830000007,-4.116690399999925],[122.079547,-4.116392899999937],[122.0839085,-4.11799],[122.09121610000011,-4.1143298],[122.09252780000008,-4.111578399999928],[122.09139540000001,-4.105313199999955],[122.09376620000012,-4.101797499999975],[122.09715930000004,-4.102717199999972],[122.10488340000006,-4.101203599999963],[122.107816,-4.099441199999944],[122.1078179000001,-4.097675599999945],[122.1113385000001,-4.094148299999972],[122.117105,-4.092976499999963],[122.13376240000002,-4.085530099999971],[122.13724700000012,-4.082490499999949],[122.14958400000012,-4.077067899999975],[122.15124260000005,-4.0741193],[122.15603410000006,-4.071308899999963],[122.16880340000012,-4.070079499999963],[122.17499380000004,-4.065701399999966],[122.17878840000003,-4.065169399999945],[122.17961880000007,-4.059686099999965],[122.17702270000007,-4.056551199999944],[122.17644130000008,-4.051842199999953],[122.1807334,-4.041375499999958],[122.188512,-4.039074699999958],[122.18736710000007,-4.034647599999971],[122.18923710000001,-4.034952899999951],[122.1900386000001,-4.032777599999974],[122.192443,-4.032510399999978],[122.19469470000001,-4.028579499999978],[122.19770970000002,-4.028388599999971],[122.19935080000005,-4.024114199999929],[122.20236580000005,-4.021671699999956],[122.20377790000009,-4.023312699999963],[122.2035198000001,-4.0199356],[122.2122587,-4.020279699999946],[122.21073210000009,-4.016272399999934],[122.21237320000012,-4.012265099999979],[122.21500650000007,-4.010738499999945],[122.2187848000001,-4.012265099999979],[122.21950990000005,-4.008067],[122.22405150000009,-4.010318699999971],[122.22118920000003,-4.007761699999946],[122.22233410000001,-4.004975699999932],[122.22534910000002,-4.004937499999926],[122.22691390000011,-4.006654899999944],[122.22882210000012,-4.005166499999973],[122.230196,-4.007036599999935],[122.23271490000002,-4.006540399999949],[122.23305840000012,-4.004746699999941],[122.22973810000008,-4.003525399999944],[122.23462310000002,-4.0006631],[122.23676030000001,-4.004555899999957],[122.24011880000012,-4.004059699999971],[122.24198890000002,-4.0066931],[122.24668310000004,-4.004288699999961],[122.24992710000004,-4.0061588],[122.25076680000006,-4.002876599999979],[122.25748370000008,-4.001388199999951],[122.26168180000002,-4.002647599999932],[122.26416250000011,-4.005777099999932],[122.26851330000011,-4.003945199999976],[122.27110850000008,-4.000624899999934],[122.27202440000008,-3.994289599999945],[122.2710449000001,-3.991682799999978],[122.26869670000008,-3.990900099999976],[122.26774770000009,-3.986401799999953],[122.27071850000004,-3.983533799999975],[122.27511530000004,-3.984365799999978],[122.27632110000002,-3.988396699999953],[122.27489060000005,-3.993946],[122.27810280000006,-3.995307199999957],[122.27825550000011,-3.999696099999937],[122.28424730000006,-4.005344499999978],[122.29153680000002,-4.006489399999964],[122.293674,-4.005420799999968],[122.29844460000004,-3.997062699999958],[122.30264270000009,-3.997520699999939],[122.29554410000003,-4.005726099999947],[122.29230010000003,-4.017862499999978],[122.29249090000008,-4.021068299999968],[122.29622260000008,-4.024646299999972],[122.29990810000004,-4.0233533],[122.29794840000011,-4.020839299999977],[122.29813890000003,-4.018515599999944],[122.30519970000012,-4.014198599999929],[122.30458910000004,-4.012328599999933],[122.30207020000012,-4.0112218],[122.30279530000007,-4.009237199999973],[122.30706980000002,-4.007443499999965],[122.31061910000005,-4.002291299999968],[122.31287080000004,-4.003512599999965],[122.31252730000006,-4.008321299999977],[122.308062,-4.009504399999969],[122.31397760000004,-4.014236799999935],[122.3133107000001,-4.022017099999971],[122.31636930000002,-4.022304099999928],[122.32056590000002,-4.016334899999947],[122.32603760000006,-4.020915599999967],[122.32916710000006,-4.020953799999972],[122.32920520000005,-4.016183199999944],[122.33253270000012,-4.016865699999926],[122.3332507,-4.013091899999949],[122.33599850000007,-4.012862899999959],[122.34042560000012,-4.016297699999939],[122.33855560000006,-4.022251399999959],[122.3450054000001,-4.023472599999934],[122.34660830000007,-4.025648],[122.35458470000003,-4.025151899999969],[122.35658810000007,-4.0232197],[122.3561304000001,-4.02131],[122.35170330000005,-4.019478099999958],[122.35017550000009,-4.011214799999948],[122.35147070000005,-4.007748699999979],[122.35673420000012,-4.0074728],[122.35916150000003,-4.005846],[122.35910440000009,-3.9993844],[122.36300050000011,-3.996563499999979],[122.36681650000003,-3.997749699999929],[122.371969,-4.001915],[122.40765420000002,-4.007152599999927],[122.4212702000001,-4.010410699999966],[122.4268588000001,-4.008076899999935],[122.44044860000008,-4.008071299999926],[122.45225490000007,-3.966429],[122.45180850000008,-3.940314799999953],[122.468595,-3.918817799999943],[122.48116450000009,-3.909149899999932],[122.50668860000007,-3.909143499999971],[122.52247310000007,-3.934649499999978],[122.53893430000005,-3.941120199999943],[122.54856970000003,-3.941882299999975],[122.5806993000001,-3.939594899999975],[122.594869,-3.941210499999954],[122.61715850000007,-3.949179599999979],[122.62419340000008,-3.949239899999952],[122.62696310000001,-3.946225499999969],[122.62501290000012,-3.942178899999931],[122.6280283000001,-3.938299399999948],[122.63380720000009,-3.938351499999953],[122.64884470000004,-3.933623699999941],[122.64848470000004,-3.931823799999961],[122.64515490000008,-3.930788899999925],[122.64689280000005,-3.928028599999948],[122.64682160000007,-3.924532099999965],[122.6602663000001,-3.927583899999945],[122.66447380000011,-3.925162199999932],[122.66554480000002,-3.919488199999932],[122.6671586000001,-3.9178747],[122.6637214000001,-3.912189099999978],[122.66409880000003,-3.904690399999936],[122.6663936000001,-3.9004157],[122.66531370000007,-3.896455899999978],[122.6395702000001,-3.890891899999929],[122.62554980000004,-3.892679599999951],[122.62137630000007,-3.888497899999948],[122.61680280000007,-3.892992699999979],[122.61551120000001,-3.889476299999956],[122.61374940000007,-3.890416099999925],[122.61035780000009,-3.8962368],[122.60773230000007,-3.896141099999966],[122.6051973000001,-3.893126099999961],[122.59745260000011,-3.893342899999936],[122.59529290000012,-3.895356],[122.58737330000008,-3.894141099999956],[122.58863330000008,-3.898865799999953],[122.58759830000008,-3.900350699999933],[122.58611340000004,-3.899765699999932],[122.58576370000003,-3.894816599999956],[122.58275420000007,-3.895100899999932],[122.57497460000002,-3.898180599999932],[122.57647660000009,-3.9026214],[122.57486170000004,-3.901856199999941],[122.57268590000001,-3.904444699999942],[122.57239630000004,-3.902542899999958],[122.56912000000011,-3.904024399999969],[122.56946240000002,-3.899494899999979],[122.56299510000008,-3.899280099999942],[122.560105,-3.902285599999971],[122.55614520000006,-3.902555599999971],[122.55370720000008,-3.900521499999968],[122.5419710000001,-3.897965799999952],[122.54003610000007,-3.894051099999956],[122.53801130000011,-3.893286099999955],[122.53400650000003,-3.893646099999955],[122.5368863000001,-3.898775799999953],[122.53348010000002,-3.899796399999957],[122.53073910000012,-3.895335399999965],[122.52473710000004,-3.894951],[122.51506260000008,-3.886041599999942],[122.51056290000008,-3.8847816],[122.5066931,-3.8817218],[122.50597320000008,-3.875287199999946],[122.5079531,-3.869392499999947],[122.50580140000011,-3.863406299999951],[122.508223,-3.8630479],[122.508628,-3.860978],[122.50607420000006,-3.854264299999954],[122.49819020000007,-3.8463459],[122.47962970000003,-3.820858799999939],[122.47760490000007,-3.819823799999938],[122.475175,-3.822478699999976],[122.48106970000003,-3.825583499999937],[122.47764990000007,-3.826933399999973],[122.46878890000005,-3.820079],[122.45949180000002,-3.819317699999942],[122.459482,-3.834974899999963],[122.45286780000004,-3.836868599999946],[122.44720160000008,-3.8335437],[122.43963990000009,-3.839706699999965],[122.43208310000011,-3.838278299999956],[122.42924430000005,-3.845393399999978],[122.42347170000005,-3.848459899999966],[122.42923550000012,-3.857730899999979],[122.42687200000012,-3.861048899999957],[122.41633390000004,-3.862123799999949],[122.4144993000001,-3.867065399999944],[122.39963340000008,-3.867511699999966],[122.39900720000003,-3.864082599999961],[122.38467220000007,-3.866073599999936],[122.3569202000001,-3.864313099999947],[122.34372520000011,-3.875221299999964],[122.3361579000001,-3.877121299999942],[122.330496,-3.870470699999942],[122.31397070000003,-3.868556199999944],[122.3120861000001,-3.862859699999944],[122.31068940000011,-3.837239899999929],[122.3064432000001,-3.831068599999981],[122.284255,-3.816816899999935],[122.28142420000006,-3.813019],[122.27672030000008,-3.789767099999949],[122.2767305000001,-3.777431499999977],[122.26918030000002,-3.769359599999973],[122.23377540000001,-3.748928099999944],[122.21252660000005,-3.744164699999942],[122.20308090000003,-3.744156199999964],[122.19646510000007,-3.74842],[122.18984560000001,-3.756479399999932],[122.18747850000011,-3.762644799999975],[122.18133380000006,-3.767857899999967],[122.17708270000003,-3.768328299999951],[122.16575990000001,-3.755507699999953],[122.15584650000005,-3.7507539],[122.15254370000002,-3.747429599999975],[122.15160920000005,-3.736991199999977],[122.14548470000011,-3.721329],[122.13745580000011,-3.7217956],[122.13131260000011,-3.725584899999944],[122.12611680000009,-3.726528599999938],[122.1048750000001,-3.716544299999953],[122.08078940000007,-3.716993899999977],[122.06496980000009,-3.700595499999963],[122.05814140000007,-3.697993099999962],[122.05390080000006,-3.688974499999972],[122.05296880000003,-3.677113],[122.04683540000008,-3.671887899999945],[122.042595,-3.662869299999954],[122.04496610000001,-3.653383499999961],[122.05536630000006,-3.642482799999925],[122.04169620000005,-3.619696199999964],[122.03083870000012,-3.616838099999939],[122.0223443000001,-3.612084799999934],[122.01479480000012,-3.606858],[122.00630730000012,-3.5959372],[121.99451220000003,-3.587384799999938],[121.970443,-3.576920899999948],[121.9298262000001,-3.56667],[121.92011080000009,-3.562443599999938],[121.90577440000004,-3.562139399999978],[121.88971290000006,-3.569236099999955],[121.88215800000012,-3.569701299999963],[121.86516770000003,-3.563987599999962],[121.85573130000012,-3.558757599999979],[121.840143,-3.564905099999976],[121.82644860000005,-3.5667852],[121.81782840000005,-3.569739099999936],[121.80634120000002,-3.578417299999956],[121.79420450000009,-3.582753799999978],[121.7794745000001,-3.564352],[121.77476420000005,-3.556044099999951],[121.77300630000002,-3.546554199999946],[121.7753801,-3.536476799999946],[121.765379,-3.512744699999928],[121.76598700000011,-3.499107099999947],[121.76835910000011,-3.490215699999965],[121.76364830000011,-3.482500799999968],[121.74830640000005,-3.481887499999971],[121.7418090000001,-3.486622599999976],[121.72587220000003,-3.489565899999945],[121.700507,-3.483008499999926],[121.66983990000006,-3.470513599999947],[121.66217640000002,-3.465166199999942],[121.65864770000007,-3.456859899999927],[121.6595665000001,-3.449190899999962],[121.66338810000002,-3.442635899999971],[121.67106870000009,-3.4355313],[121.671671,-3.4266378],[121.662831,-3.418917199999953],[121.63981950000004,-3.418884699999978],[121.62624280000011,-3.423015899999939],[121.61857150000003,-3.423597699999959],[121.59956140000008,-3.410822],[121.55431440000007,-3.386148499999933],[121.5466143000001,-3.392772799999932],[121.5312550000001,-3.399293599999964],[121.51258990000008,-3.438061799999957],[121.50330810000003,-3.449520799999959],[121.520924,-3.470403899999951],[121.52436810000006,-3.477056599999969],[121.52671160000011,-3.498648299999957],[121.53360780000003,-3.511592099999973],[121.53075870000009,-3.5337323],[121.53324820000012,-3.541970299999946],[121.5602477000001,-3.586781199999962],[121.56596030000003,-3.600275],[121.58035,-3.644804],[121.58772080000006,-3.656835399999977],[121.612007,-3.681392499999959],[121.61220230000004,-3.690455199999974],[121.60793130000002,-3.699872599999935],[121.61858590000008,-3.736448099999961],[121.62053530000003,-3.735784499999966],[121.63048980000008,-3.7388123],[121.63181710000003,-3.736323699999957],[121.63658690000011,-3.7348305],[121.63861930000007,-3.737609499999962],[121.6409006,-3.7380243],[121.64293290000012,-3.734540199999969],[121.64484090000008,-3.736862899999949],[121.64770280000005,-3.736074799999926],[121.64898860000005,-3.738107199999945],[121.64861530000007,-3.732010099999968],[121.65226530000007,-3.733420299999977],[121.6538829000001,-3.731512399999929],[121.6538829000001,-3.733710599999938],[121.65682780000009,-3.733918],[121.65757440000004,-3.732051599999977],[121.66031190000001,-3.731636799999933],[121.659109,-3.72948],[121.66056070000002,-3.728360099999975],[121.66217830000005,-3.729936199999941],[121.66674080000007,-3.729728799999975],[121.66611860000012,-3.732756699999925],[121.66927090000001,-3.734125399999925],[121.67030780000005,-3.730973199999937],[121.67159360000005,-3.7311391],[121.67333570000005,-3.737236199999927],[121.675451,-3.736697],[121.67640030000007,-3.738342499999931],[121.67997660000003,-3.738826299999971],[121.68064030000005,-3.741605299999947],[121.68499530000008,-3.744467199999974],[121.68474650000007,-3.747204699999941],[121.67856640000002,-3.747412099999963],[121.680184,-3.750564399999973],[121.67902260000005,-3.753550699999948],[121.68380720000005,-3.751409199999955],[121.68428560000007,-3.758707699999945],[121.68772820000004,-3.760906],[121.69241510000006,-3.760740099999964],[121.69233220000001,-3.764514499999962],[121.69536,-3.765178099999957],[121.69453050000004,-3.768371899999977],[121.69751680000002,-3.769325799999933],[121.69652140000005,-3.772312199999931],[121.69863670000007,-3.774593399999958],[121.70091800000012,-3.774054199999966],[121.69959070000004,-3.776418399999955],[121.70062760000008,-3.777787199999977],[121.70631,-3.775298499999963],[121.71236560000011,-3.775423],[121.71452250000004,-3.7720219],[121.72128320000002,-3.771316699999943],[121.72090990000004,-3.768454799999972],[121.72609590000002,-3.7656595],[121.72767070000009,-3.768952499999955],[121.73223320000011,-3.768206],[121.73393370000008,-3.765136599999948],[121.73951380000005,-3.7693766],[121.74090130000002,-3.768629499999975],[121.74026090000007,-3.765854599999955],[121.74172840000006,-3.765249799999935],[121.74834540000006,-3.766459399999974],[121.7491281,-3.764040299999976],[121.7518318000001,-3.763399899999968],[121.75247220000006,-3.761621099999957],[121.76037880000001,-3.757796799999937],[121.76112590000002,-3.753901199999973],[121.7650748000001,-3.755662199999961],[121.77014430000008,-3.751446499999929],[121.77121150000005,-3.749632199999951],[121.77009090000001,-3.744456],[121.7745734,-3.740773899999965],[121.77494700000011,-3.738639399999954],[121.77916270000003,-3.735597699999971],[121.7848725,-3.733996799999943],[121.79122270000005,-3.726846099999932],[121.79799990000004,-3.726632699999925],[121.7994407000001,-3.730581499999971],[121.80146850000006,-3.729514299999948],[121.80792540000004,-3.729887799999972],[121.8117142000001,-3.7342102],[121.81566310000005,-3.7339434],[121.81955860000005,-3.731382],[121.825055,-3.735117399999979],[121.83236580000005,-3.733036199999958],[121.83908950000011,-3.737251899999933],[121.84213120000004,-3.741627699999981],[121.8505626000001,-3.74579],[121.85205680000001,-3.748671699999932],[121.8538711000001,-3.747230899999977],[121.85733970000001,-3.749365399999931],[121.8645067000001,-3.756452899999942],[121.85539940000001,-3.774672099999975],[121.85539940000001,-3.7835831],[121.86269020000009,-3.792494099999942],[121.86750540000003,-3.794786699999975],[121.8698812,-3.797783799999934],[121.87350210000011,-3.797869899999966],[121.883842,-3.807688399999961],[121.887525,-3.8083625],[121.89125050000007,-3.811804499999937],[121.89358520000008,-3.8112467],[121.8946625000001,-3.813816899999949],[121.90268770000012,-3.817237299999931],[121.90814960000012,-3.8230434],[121.91849270000012,-3.826737599999944],[121.92564980000009,-3.831269299999974],[121.93098860000009,-3.832261899999935],[121.93576180000002,-3.843063499999971],[121.94946520000008,-3.859479399999941],[121.96139290000008,-3.8772003],[121.96956390000003,-3.900999699999943],[121.96626820000006,-3.947615499999927],[121.95921340000007,-3.977963599999953],[121.95569410000007,-3.986497],[121.95392680000009,-3.996794399999942],[121.954868,-3.999506099999962],[121.95324380000011,-4.003298599999937],[121.9554882000001,-4.042331799999943],[121.96153950000007,-4.0720783],[121.96441650000008,-4.080244299999947],[121.97245590000011,-4.091858599999966],[121.98775890000002,-4.106185699999969],[121.99444710000012,-4.131675199999961]]],[[[121.43127510000011,-3.273299399999928],[121.488184,-3.240314199999943],[121.5035051000001,-3.224423099999967],[121.52174020000007,-3.224449799999945],[121.55368270000008,-3.202730299999928],[121.56396060000009,-3.187852499999963],[121.579935,-3.174127899999974],[121.59135030000004,-3.160396699999978],[121.61185670000009,-3.1661524],[121.62439630000006,-3.163878],[121.6335183000001,-3.160453299999972],[121.649465,-3.167347899999925],[121.65968540000006,-3.182266399999946],[121.67791530000011,-3.200607699999978],[121.67219280000006,-3.218930099999966],[121.68813790000002,-3.228115799999955],[121.70700240000008,-3.2329663],[121.73495130000003,-3.244712799999945],[121.7474003000001,-3.2339191],[121.75593,-3.240054499999928],[121.7644782000001,-3.249979399999972],[121.77588490000005,-3.243119299999933],[121.79070280000008,-3.243137199999978],[121.81236940000008,-3.235143299999947],[121.8283378000001,-3.225996499999951],[121.84440540000003,-3.209145199999966],[121.84191980000003,-3.205274499999973],[122.0680377000001,-2.974185899999952],[122.07873610000001,-2.9618532],[122.0725364000001,-2.954201199999943],[122.0611695,-2.949111499999958],[122.05043880000005,-2.951826],[122.038563,-2.959566499999937],[122.03186160000007,-2.957997199999966],[122.02403630000003,-2.959481699999969],[122.01608370000008,-2.957361],[122.00622250000004,-2.957594299999926],[121.981262,-2.966161799999952],[121.963427,-2.975344399999926],[121.9491336000001,-2.976638],[121.93920880000007,-2.979543399999955],[121.92837210000005,-2.983933199999967],[121.9233885000001,-2.989128899999969],[121.92073760000005,-2.990040799999974],[121.89933990000009,-2.983275799999944],[121.88239560000011,-2.975132299999927],[121.87043490000008,-2.971484699999962],[121.8652393000001,-2.967285799999956],[121.85749880000003,-2.963913899999966],[121.85317260000011,-2.964507699999956],[121.85115790000009,-2.967285799999956],[121.84587740000006,-2.968006799999955],[121.84146640000006,-2.970997],[121.83554970000012,-2.970657699999947],[121.833281,-2.972139199999958],[121.82794890000002,-2.968974199999934],[121.82534680000003,-2.968924199999947],[121.8190919000001,-2.959116399999971],[121.8041300000001,-2.952986599999974],[121.79134490000001,-2.944404799999973],[121.78408920000004,-2.945405599999958],[121.78221270000006,-2.943604099999959],[121.77810940000006,-2.945780899999932],[121.77543230000003,-2.943178799999941],[121.77095380000003,-2.942828499999962],[121.76672540000004,-2.933671299999958],[121.75594190000004,-2.9251646],[121.75173860000007,-2.923463199999958],[121.74150550000002,-2.924238799999955],[121.7389535000001,-2.919259899999929],[121.73263610000004,-2.917975499999955],[121.73037170000009,-2.915932299999952],[121.72801980000008,-2.917258299999958],[121.72486730000003,-2.916807899999981],[121.7216648000001,-2.91941],[121.71418390000008,-2.920360799999969],[121.71258260000002,-2.919510099999968],[121.71073120000005,-2.913805599999932],[121.7028954000001,-2.911724699999979],[121.69389280000007,-2.902171399999929],[121.68553620000012,-2.900770299999976],[121.67540550000001,-2.900443399999972],[121.66783170000008,-2.896899899999937],[121.65416270000003,-2.898379299999931],[121.64280050000002,-2.894423299999971],[121.63779410000006,-2.894145499999979],[121.62982820000002,-2.897161799999935],[121.61992010000006,-2.904769099999953],[121.6168272000001,-2.905710599999964],[121.6008624000001,-2.903515899999945],[121.59693640000012,-2.905006399999934],[121.58880990000011,-2.910977799999955],[121.57445870000004,-2.917077199999937],[121.57039860000009,-2.917479899999933],[121.56579180000006,-2.922232],[121.557541,-2.919502699999953],[121.54711880000002,-2.921664399999941],[121.5446859000001,-2.924949499999968],[121.54019280000011,-2.940822899999944],[121.52535980000005,-2.962103599999978],[121.50829390000001,-2.973771499999941],[121.49912940000002,-2.974100899999939],[121.49192510000012,-2.978225499999951],[121.4651775000001,-2.999242399999957],[121.46097,-3.010676899999964],[121.45736640000007,-3.013158799999928],[121.44033780000007,-3.006749599999978],[121.4123935,-3.002567099999965],[121.38152,-2.980048599999975],[121.37265150000007,-2.976797899999951],[121.35776510000005,-2.974743099999955],[121.36993470000004,-3.009891599999946],[121.36872480000011,-3.015241099999969],[121.36287120000009,-3.025589599999932],[121.36061130000007,-3.043970399999978],[121.36125760000004,-3.052082199999973],[121.36676940000007,-3.059515899999951],[121.38169160000007,-3.070931799999926],[121.3888813000001,-3.085874799999942],[121.38852010000005,-3.097612699999956],[121.39271710000003,-3.101162099999954],[121.40928710000003,-3.105412399999977],[121.41202830000009,-3.109732199999939],[121.41184210000006,-3.119399],[121.41644460000009,-3.142106399999932],[121.421242,-3.149536699999942],[121.4366844000001,-3.158709399999964],[121.44199390000006,-3.168384599999968],[121.43556070000011,-3.220422299999939],[121.43019420000007,-3.247948199999939],[121.43127510000011,-3.273299399999928]]]]},"properties":{"shapeName":"Konawe","shapeISO":"","shapeID":"22746128B44724559794672","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[123.02098130000002,-3.980363099999977],[123.01528170000006,-3.978203199999939],[123.01138190000006,-3.978623199999959],[123.0077821000001,-3.989302599999974],[122.9967428000001,-4.003761699999927],[122.99836270000003,-4.007901499999946],[122.99694430000011,-4.015479399999947],[122.99423720000004,-4.020286099999964],[122.99086310000007,-4.021389299999953],[122.98675220000007,-4.025988599999948],[122.98396780000007,-4.023306499999933],[122.97457570000006,-4.035056299999951],[122.9716893000001,-4.042591699999946],[122.97168910000005,-4.0489679],[122.96995720000007,-4.054184799999973],[122.96533920000002,-4.055343899999968],[122.95841240000004,-4.054763899999955],[122.94802230000005,-4.0507057],[122.94167270000003,-4.050705299999947],[122.94629010000006,-4.058820799999978],[122.94398080000008,-4.063457899999946],[122.9393626000001,-4.065776199999959],[122.93532190000008,-4.065775899999949],[122.9353215000001,-4.070413099999939],[122.9393490000001,-4.073661299999969],[122.93936170000006,-4.0785286],[122.9445568000001,-4.082006899999953],[122.94455640000001,-4.086644199999967],[122.9364743000001,-4.091860499999939],[122.93647420000002,-4.094179099999963],[122.94667230000005,-4.121852],[122.9525440000001,-4.127558299999976],[122.95321260000003,-4.134756099999947],[122.95538470000008,-4.139921399999935],[122.961825,-4.144676799999957],[122.96504490000007,-4.152284899999927],[122.97072770000011,-4.155328299999951],[122.9748949000001,-4.165979599999957],[122.98133550000011,-4.168452399999978],[122.99000350000006,-4.191430299999979],[122.98927210000011,-4.198567399999945],[122.99023850000003,-4.200976599999933],[122.99383790000002,-4.203259],[122.99762670000007,-4.203639399999929],[123.00236280000001,-4.201927599999976],[123.00998980000008,-4.204485799999929],[123.02166910000005,-4.214725199999975],[123.0254288000001,-4.221284799999978],[123.02974860000006,-4.222804699999926],[123.039908,-4.230004299999962],[123.04470770000012,-4.231204199999979],[123.04974740000011,-4.2372039],[123.055587,-4.238483799999926],[123.06030680000003,-4.243683499999975],[123.07030620000012,-4.248163199999965],[123.09262480000007,-4.250723099999959],[123.11011380000002,-4.259722499999953],[123.11719340000002,-4.260742499999935],[123.122773,-4.260082499999953],[123.12919270000009,-4.256602699999974],[123.13609230000009,-4.255882799999938],[123.14335180000012,-4.247183299999961],[123.14638260000004,-4.246226499999977],[123.15215980000005,-4.240003199999933],[123.15374010000005,-4.233181299999956],[123.15578130000006,-4.230334499999969],[123.15445410000007,-4.229189299999973],[123.15535410000007,-4.225148499999932],[123.16543350000006,-4.207809599999962],[123.171078,-4.202916199999947],[123.173113,-4.203429799999981],[123.17557290000002,-4.20091],[123.18025260000002,-4.20049],[123.18439230000001,-4.197910199999967],[123.187358,-4.193874199999925],[123.18571230000009,-4.188730699999951],[123.18661220000001,-4.184111],[123.189612,-4.183211],[123.19309180000005,-4.186030899999935],[123.19591170000001,-4.185610899999972],[123.19905930000004,-4.180034399999954],[123.2020281,-4.178697299999953],[123.20714120000002,-4.172419399999967],[123.207191,-4.164072199999964],[123.21244050000007,-4.154349199999956],[123.21357670000009,-4.153017499999976],[123.21641840000007,-4.153967699999953],[123.22105020000004,-4.153032799999949],[123.22129020000011,-4.146133199999952],[123.230972,-4.145653299999935],[123.2394359000001,-4.137080799999978],[123.24720860000002,-4.125134499999945],[123.25260830000002,-4.110555399999953],[123.25074840000002,-4.100775899999974],[123.25476820000006,-4.093276399999979],[123.257648,-4.092916399999979],[123.25908790000005,-4.090876499999979],[123.257528,-4.087036799999964],[123.25725250000005,-4.076162],[123.25440820000006,-4.066518],[123.231442,-4.039660899999944],[123.22522330000004,-4.035398],[123.22506770000007,-4.026201199999946],[123.21963480000011,-4.024706599999945],[123.21471050000002,-4.020527399999935],[123.2119024000001,-4.021703699999932],[123.21069080000007,-4.018787499999974],[123.19853410000007,-4.014744499999949],[123.19160650000003,-4.010108899999977],[123.1841108000001,-4.008228899999949],[123.18051180000009,-4.010181299999942],[123.1652127000001,-4.008021499999927],[123.15237080000009,-4.012046199999929],[123.14675020000004,-4.011666899999966],[123.14211410000007,-4.008801399999925],[123.13833430000011,-4.008681399999944],[123.13299470000004,-4.011321299999963],[123.12903490000008,-4.016181],[123.12518260000002,-4.018297899999936],[123.10461630000009,-4.019960799999978],[123.0965768000001,-4.022960599999976],[123.08673740000006,-4.022000599999956],[123.07855660000007,-4.017833199999927],[123.0676585000001,-4.006281599999966],[123.059859,-4.004541699999947],[123.05331940000008,-4.000401899999929],[123.05157950000012,-3.997822099999951],[123.04656020000004,-3.9971924],[123.027221,-3.9809631],[123.02098130000002,-3.980363099999977]]]},"properties":{"shapeName":"Konawe Kepulauan","shapeISO":"","shapeID":"22746128B23488303500651","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[122.21902780000005,-4.487418399999967],[122.219153,-4.4858036],[122.21599480000009,-4.489233099999979],[122.21665270000005,-4.490445199999954],[122.21853140000007,-4.489667099999963],[122.21902780000005,-4.487418399999967]]],[[[122.6830149000001,-4.483238099999937],[122.68354480000005,-4.481680399999959],[122.68135740000002,-4.481679399999962],[122.6830149000001,-4.483238099999937]]],[[[122.88101140000003,-4.4173063],[122.8814225000001,-4.415652299999977],[122.88031850000004,-4.415944299999978],[122.88101140000003,-4.4173063]]],[[[122.90144370000007,-4.176341299999933],[122.9032621,-4.184120299999961],[122.90575740000008,-4.186249],[122.90696520000006,-4.184255499999949],[122.90632180000011,-4.178893899999935],[122.90465840000002,-4.176846099999977],[122.90144370000007,-4.176341299999933]]],[[[122.894669,-4.147065299999952],[122.89229690000002,-4.147329899999932],[122.89424770000005,-4.154069],[122.89588060000005,-4.158513599999935],[122.89858630000003,-4.159401699999933],[122.89732750000007,-4.149422299999969],[122.894669,-4.147065299999952]]],[[[122.892509,-4.141543799999965],[122.89150640000003,-4.141651499999966],[122.891316,-4.1451258],[122.89279310000006,-4.145977699999946],[122.89396470000008,-4.144527899999957],[122.892509,-4.141543799999965]]],[[[122.81345340000007,-4.132362099999966],[122.812072,-4.131595499999946],[122.8112446,-4.133842699999946],[122.8141763000001,-4.135329199999944],[122.81345340000007,-4.132362099999966]]],[[[122.8293983000001,-4.131044499999973],[122.828312,-4.131649299999935],[122.83013470000003,-4.131769199999951],[122.8293983000001,-4.131044499999973]]],[[[122.72628390000011,-4.1252453],[122.723984,-4.123705799999925],[122.72369550000008,-4.126318199999957],[122.72173040000007,-4.1268304],[122.72214470000006,-4.129683499999942],[122.72388690000002,-4.127167799999938],[122.72843980000005,-4.127682199999981],[122.72927130000005,-4.1255027],[122.72628390000011,-4.1252453]]],[[[122.66780270000004,-4.121745699999963],[122.66683980000005,-4.123131099999966],[122.66785270000003,-4.123284099999978],[122.66780270000004,-4.121745699999963]]],[[[122.67342320000012,-4.119769599999927],[122.67148540000005,-4.119057],[122.67033260000005,-4.122006099999965],[122.67342320000012,-4.119769599999927]]],[[[122.669152,-4.1026536],[122.66993330000003,-4.101297399999964],[122.66837910000004,-4.100281],[122.669152,-4.1026536]]],[[[122.79544190000001,-4.099015099999974],[122.79334520000009,-4.099587099999951],[122.7923343000001,-4.101964899999928],[122.79384960000004,-4.102565499999969],[122.79544190000001,-4.099015099999974]]],[[[122.77829380000003,-4.036452899999972],[122.77691490000007,-4.038830399999938],[122.7785209000001,-4.038621099999943],[122.77829380000003,-4.036452899999972]]],[[[122.10386850000009,-4.530329799999947],[122.11873430000003,-4.536723699999925],[122.12574640000003,-4.534623599999975],[122.12701330000004,-4.5301186],[122.1320697000001,-4.5301847],[122.13533960000007,-4.532476499999973],[122.14383410000005,-4.533823599999948],[122.14803440000003,-4.533064],[122.1533885,-4.529255499999977],[122.15593190000004,-4.530113099999937],[122.16321870000002,-4.528374],[122.16535140000008,-4.524848899999938],[122.16575770000009,-4.519294399999978],[122.1674723000001,-4.517979699999955],[122.17356680000012,-4.518465399999968],[122.18086310000001,-4.511549399999979],[122.18260520000001,-4.504187599999966],[122.18197420000001,-4.501749199999949],[122.18302930000004,-4.502810299999965],[122.18323510000005,-4.507650399999932],[122.18995080000002,-4.504013599999951],[122.19065960000012,-4.4998457],[122.19316070000002,-4.498682599999938],[122.19383290000007,-4.495821799999931],[122.19081230000006,-4.493401399999925],[122.19412060000002,-4.494606199999964],[122.1943956,-4.5007183],[122.20584460000009,-4.485446099999933],[122.21373270000004,-4.484253499999966],[122.2113405,-4.482343199999946],[122.21071010000003,-4.479269],[122.21229060000007,-4.482874199999969],[122.21384150000006,-4.481286099999977],[122.212682,-4.479094499999974],[122.21570560000009,-4.482795899999928],[122.21737580000001,-4.481601599999976],[122.21721190000005,-4.476224499999944],[122.21586740000009,-4.474629599999957],[122.20679920000009,-4.473110099999928],[122.1983623000001,-4.475891],[122.18943650000006,-4.472299699999951],[122.19322470000009,-4.472308799999951],[122.19925780000005,-4.475089699999955],[122.20910870000012,-4.471884599999953],[122.21523610000008,-4.471978899999954],[122.21859820000009,-4.474408199999971],[122.22003570000004,-4.472780499999942],[122.22107620000008,-4.474770899999953],[122.21880260000012,-4.475128699999971],[122.22039040000004,-4.476742399999978],[122.2195862000001,-4.478496599999971],[122.22297390000006,-4.481311799999958],[122.22565450000002,-4.4807384],[122.22440080000001,-4.476758299999972],[122.2253306,-4.4767044],[122.22644520000006,-4.482989299999929],[122.23868510000011,-4.487189799999953],[122.24855570000011,-4.4856113],[122.2489256,-4.484047],[122.2506002,-4.485132799999974],[122.24752510000008,-4.487644899999964],[122.24784780000005,-4.488882],[122.25000000000011,-4.487593699999934],[122.25345190000007,-4.493033899999944],[122.260657,-4.492954599999962],[122.26495630000011,-4.491849699999932],[122.26578260000008,-4.489158199999963],[122.28504040000007,-4.486808499999938],[122.28722040000002,-4.485382],[122.28669430000002,-4.480709599999955],[122.287481,-4.483223299999963],[122.29037850000009,-4.484844099999975],[122.29906430000005,-4.482198899999958],[122.3093014000001,-4.4755066],[122.33291610000003,-4.473559699999953],[122.34171390000006,-4.474671299999954],[122.34486320000008,-4.471946699999933],[122.34316130000002,-4.464698899999973],[122.3449872000001,-4.464678699999979],[122.345767,-4.467820299999971],[122.34736980000002,-4.466013799999928],[122.35036720000005,-4.468308899999954],[122.35188920000007,-4.466967],[122.36388020000004,-4.465703899999937],[122.36736780000001,-4.464414899999952],[122.369784,-4.461509899999953],[122.37445160000004,-4.460168099999976],[122.37580280000009,-4.457142],[122.38114690000009,-4.4575583],[122.38954280000007,-4.455616799999973],[122.40085720000002,-4.445109199999933],[122.4015475000001,-4.443538299999943],[122.39935690000004,-4.441210799999965],[122.39998450000007,-4.4397656],[122.401696,-4.438910699999951],[122.40862850000008,-4.440652599999964],[122.41502360000004,-4.433554699999945],[122.41906430000006,-4.4330968],[122.42075860000011,-4.429200899999955],[122.4227585000001,-4.435174],[122.42708120000009,-4.4347374],[122.42965130000005,-4.432413599999961],[122.43148010000004,-4.438721899999962],[122.4301,-4.441360799999927],[122.4326688000001,-4.440734199999952],[122.43654830000003,-4.4463945],[122.4386158000001,-4.446081799999945],[122.4391816000001,-4.4434421],[122.43694640000001,-4.442108099999928],[122.43620690000012,-4.437015499999973],[122.44076730000006,-4.435350099999937],[122.44516470000008,-4.436430099999939],[122.4439827000001,-4.439067099999932],[122.445137,-4.440418099999931],[122.44433140000001,-4.444592099999966],[122.44899050000004,-4.447234599999945],[122.45054220000009,-4.451684099999966],[122.45450610000012,-4.447385199999928],[122.45484820000001,-4.445480499999974],[122.45291840000004,-4.444485799999939],[122.45559460000004,-4.444648199999961],[122.4534231,-4.443873199999928],[122.4550005000001,-4.4426439],[122.4533186000001,-4.443064499999934],[122.45171110000001,-4.438266899999974],[122.45398770000008,-4.439042],[122.45613880000008,-4.436502899999937],[122.4635598000001,-4.439781499999981],[122.46780960000001,-4.437329699999964],[122.46939640000005,-4.438622899999928],[122.46798030000002,-4.438751099999934],[122.46789170000011,-4.442584],[122.4688777,-4.443833699999971],[122.4720536000001,-4.4431038],[122.47290970000006,-4.446119199999941],[122.47063470000012,-4.4471081],[122.4705715,-4.452848699999947],[122.4773914000001,-4.4490532],[122.47949330000006,-4.450840899999946],[122.48105340000006,-4.449858399999925],[122.48368130000006,-4.451291],[122.485063,-4.450621299999966],[122.4852876000001,-4.4479836],[122.48858210000003,-4.451920299999927],[122.48960270000009,-4.455778899999927],[122.49375140000006,-4.452550599999938],[122.4939409000001,-4.446895899999959],[122.495463,-4.446454299999971],[122.49773320000008,-4.448646899999972],[122.49802080000006,-4.447385599999961],[122.50093780000009,-4.449445899999944],[122.50162110000008,-4.445464499999957],[122.503489,-4.4473237],[122.50287680000008,-4.451360399999942],[122.50472650000006,-4.455734599999971],[122.50723190000008,-4.450925499999926],[122.50693940000008,-4.447219],[122.5051046000001,-4.448146799999961],[122.50426740000012,-4.446218099999953],[122.51112490000003,-4.442657199999928],[122.52005850000012,-4.443119399999944],[122.52403590000006,-4.439474799999971],[122.52260750000005,-4.434399099999951],[122.5201614,-4.433303199999955],[122.520477,-4.431445399999973],[122.52389970000002,-4.433095199999968],[122.52646530000004,-4.436444799999947],[122.53256420000002,-4.427011899999968],[122.53594340000006,-4.427628199999958],[122.53580650000004,-4.425903299999959],[122.53750140000011,-4.425080599999944],[122.54074900000012,-4.427326199999925],[122.54357390000007,-4.420767799999965],[122.552203,-4.422772699999939],[122.55651290000003,-4.421571399999948],[122.5582022000001,-4.419521299999928],[122.55643960000009,-4.416102],[122.55878050000001,-4.418228499999941],[122.56344550000006,-4.417384099999936],[122.56431470000007,-4.408061799999928],[122.56934980000005,-4.411553499999968],[122.56997560000002,-4.410612399999934],[122.5663876000001,-4.404092599999956],[122.56639030000008,-4.402585899999963],[122.56771350000008,-4.402360599999952],[122.564054,-4.402047799999934],[122.57460650000007,-4.398841599999969],[122.57465190000005,-4.397102599999926],[122.5764282,-4.398263],[122.57642910000004,-4.396746899999926],[122.57882630000006,-4.399557399999935],[122.58464740000011,-4.396662399999968],[122.59393160000002,-4.396979599999952],[122.594219,-4.3940844],[122.5991259000001,-4.4031357],[122.60778590000007,-4.4080006],[122.61438220000002,-4.4092525],[122.63003450000008,-4.423752],[122.6330971000001,-4.429327199999932],[122.64017920000003,-4.437089299999968],[122.6564565000001,-4.447308],[122.660275,-4.452080899999942],[122.66285130000006,-4.452973799999938],[122.66418320000002,-4.454981],[122.66164950000007,-4.458101099999965],[122.66180350000002,-4.461311599999931],[122.6643338,-4.465771699999948],[122.66762060000008,-4.4677351],[122.66748640000003,-4.469741599999963],[122.6648202,-4.470855099999937],[122.6687955000001,-4.473086399999943],[122.666263,-4.473441899999955],[122.66666160000011,-4.4761175],[122.66440940000007,-4.476715599999977],[122.66071750000003,-4.473432399999979],[122.66040810000004,-4.471222699999942],[122.65730370000006,-4.470626399999958],[122.65707740000005,-4.471674399999927],[122.66376160000004,-4.482413399999928],[122.66698480000002,-4.5012805],[122.6716963,-4.5079217],[122.68025250000005,-4.507394399999953],[122.68289980000009,-4.5047665],[122.68985050000003,-4.504238399999963],[122.69503820000011,-4.501337099999944],[122.69220360000008,-4.498971199999971],[122.68674840000006,-4.497898899999939],[122.6820431000001,-4.4915545],[122.67929930000003,-4.491304099999979],[122.6781466000001,-4.489251299999978],[122.67990770000006,-4.488973],[122.67655840000009,-4.483447799999965],[122.68114890000004,-4.474208099999942],[122.68510830000002,-4.475447299999928],[122.68958140000007,-4.470489599999951],[122.6935820000001,-4.470018899999957],[122.69287530000008,-4.471908],[122.69405150000011,-4.472853199999975],[122.69711120000011,-4.471437399999957],[122.70628660000011,-4.476164599999947],[122.7055792000001,-4.479943099999957],[122.70887230000005,-4.483250799999951],[122.70557470000006,-4.491043199999979],[122.71074890000011,-4.498602799999958],[122.71427770000003,-4.501438299999961],[122.71710160000009,-4.501439399999981],[122.71851450000008,-4.498842],[122.72192080000002,-4.501601299999948],[122.7434664000001,-4.510170399999936],[122.749333,-4.505178399999977],[122.75995720000003,-4.488817599999948],[122.76184820000003,-4.480301499999939],[122.76213530000007,-4.463409399999932],[122.76387490000002,-4.452435899999955],[122.76379230000009,-4.447613499999932],[122.76047570000003,-4.443600199999935],[122.76206460000003,-4.437781799999925],[122.761243,-4.43544],[122.75667890000011,-4.430857199999934],[122.75718790000008,-4.426803899999925],[122.75616720000005,-4.4261776],[122.75336070000003,-4.425846599999943],[122.74988350000001,-4.429116399999941],[122.74671180000007,-4.428243],[122.74353840000003,-4.432254299999954],[122.74158320000004,-4.431861099999935],[122.7366747000001,-4.427323699999931],[122.7334595000001,-4.426581099999964],[122.72929030000012,-4.420691899999952],[122.72368530000006,-4.420210099999963],[122.72507710000002,-4.416503599999942],[122.72125460000007,-4.413144],[122.7179092,-4.412226899999951],[122.712914,-4.407907299999977],[122.70422470000005,-4.405985],[122.69928120000009,-4.398545699999943],[122.70296910000002,-4.396674399999938],[122.70128340000008,-4.390609499999925],[122.69840810000005,-4.391634199999942],[122.69753950000006,-4.3905872],[122.694633,-4.379290399999945],[122.6865471000001,-4.369572699999935],[122.6804734000001,-4.368119699999966],[122.6754787000001,-4.363887199999965],[122.6670074000001,-4.361528399999941],[122.66285070000004,-4.355768699999942],[122.66187610000009,-4.349793299999931],[122.6628545000001,-4.347162899999944],[122.65990440000007,-4.338600399999962],[122.6668218000001,-4.331375699999967],[122.67376850000005,-4.326790299999971],[122.6820752000001,-4.326169599999957],[122.689404,-4.330911499999957],[122.69177190000005,-4.330665199999942],[122.6923021,-4.327826],[122.69435650000003,-4.330176],[122.69651450000003,-4.327786799999956],[122.69519070000001,-4.3305031],[122.6964269,-4.3363146],[122.70014750000007,-4.340754599999968],[122.70387060000007,-4.338832699999955],[122.70584720000011,-4.339997],[122.70704440000009,-4.343908099999965],[122.71057220000012,-4.347688199999936],[122.71339510000007,-4.348634],[122.71715770000003,-4.3535951],[122.71715620000009,-4.35761],[122.718567,-4.360208499999942],[122.72044910000011,-4.360681499999941],[122.72109730000011,-4.364567399999942],[122.72642940000003,-4.369138499999963],[122.73026080000011,-4.368011699999954],[122.72922030000007,-4.366506899999933],[122.73009590000004,-4.363247799999954],[122.73201110000002,-4.363875299999961],[122.73009470000011,-4.366549],[122.7313018000001,-4.367803099999946],[122.735567,-4.365048],[122.73523630000011,-4.369362899999942],[122.74299340000005,-4.382845799999927],[122.75435220000008,-4.389131899999938],[122.75566650000007,-4.392766799999947],[122.7590226000001,-4.3943287],[122.76358570000002,-4.400139],[122.76595930000008,-4.400265199999978],[122.76987660000009,-4.408803699999964],[122.7758397,-4.409475099999952],[122.77996270000006,-4.413537299999973],[122.78585850000002,-4.415183],[122.78983490000007,-4.419552199999941],[122.80495560000008,-4.427611299999967],[122.80953650000004,-4.427529],[122.81183560000011,-4.429811099999938],[122.81595520000008,-4.425143699999978],[122.8156527000001,-4.431184199999961],[122.81345940000006,-4.434575],[122.81449080000004,-4.435714299999972],[122.81629680000003,-4.434161499999959],[122.81814070000007,-4.435249299999953],[122.8151481000001,-4.437759699999958],[122.8205726000001,-4.442809699999941],[122.83199810000008,-4.448756],[122.83570980000002,-4.448756899999978],[122.83762880000006,-4.445911],[122.83917280000003,-4.4414745],[122.83733840000002,-4.438795299999981],[122.8387983,-4.4376655],[122.83850680000012,-4.43574],[122.84121750000008,-4.435740599999974],[122.84176060000004,-4.429862399999934],[122.84554120000007,-4.426475],[122.84790840000005,-4.420948799999962],[122.84609730000011,-4.420173299999931],[122.84393140000009,-4.422554799999943],[122.84293220000006,-4.421217399999932],[122.84389020000003,-4.420214599999952],[122.84788820000006,-4.4192126],[122.84932680000009,-4.421069],[122.851894,-4.420283599999948],[122.84968950000007,-4.420516],[122.84913860000006,-4.419395299999962],[122.85098070000004,-4.418726199999981],[122.85940060000007,-4.418151299999977],[122.87106,-4.413232799999946],[122.8692244,-4.417387199999951],[122.8729413000001,-4.416915699999947],[122.87642270000003,-4.4185215],[122.87967920000006,-4.408778599999948],[122.877935,-4.406414699999971],[122.88007420000008,-4.406878099999972],[122.8794454,-4.4042261],[122.88091350000002,-4.4039738],[122.88074640000002,-4.4000592],[122.8827705000001,-4.397985499999947],[122.8839865000001,-4.400763799999936],[122.8810913000001,-4.406361699999934],[122.88297850000004,-4.408887599999957],[122.88264270000002,-4.410402799999929],[122.8807131000001,-4.410739299999932],[122.88327140000001,-4.413854499999957],[122.88742550000006,-4.404342199999974],[122.89001340000004,-4.404201399999977],[122.88969530000008,-4.399925099999962],[122.89233280000008,-4.398936399999968],[122.8910297000001,-4.391532599999948],[122.89633420000007,-4.385671599999966],[122.8978131,-4.379911899999968],[122.90071120000005,-4.379941299999928],[122.901494,-4.377701499999944],[122.90172660000007,-4.372116099999971],[122.89795860000004,-4.371681699999954],[122.896654,-4.3700636],[122.89854910000008,-4.365439299999935],[122.901383,-4.366900699999974],[122.90119780000009,-4.365038799999979],[122.89678340000012,-4.364516899999956],[122.89435780000008,-4.362009099999966],[122.89680990000011,-4.352266399999962],[122.897994,-4.350886799999955],[122.9002908000001,-4.351900599999965],[122.9005515,-4.350786199999959],[122.89988080000012,-4.3468352],[122.89481610000007,-4.339977599999941],[122.89474,-4.334815599999956],[122.89634010000009,-4.331721499999958],[122.90124530000003,-4.329281099999946],[122.9032337000001,-4.325572099999931],[122.90816330000007,-4.323516],[122.90530590000003,-4.321018299999935],[122.89493360000006,-4.320550599999933],[122.89359120000006,-4.317095199999926],[122.8910959000001,-4.319007099999965],[122.88944660000004,-4.318096199999957],[122.88745190000009,-4.312933899999962],[122.8856101,-4.311700899999948],[122.88591780000002,-4.306962699999929],[122.884153,-4.304728199999943],[122.88474880000001,-4.298160099999961],[122.88116120000007,-4.295328299999937],[122.88206360000004,-4.292511499999932],[122.88534520000007,-4.290733399999965],[122.88624660000005,-4.279699],[122.89075710000009,-4.277686599999925],[122.89091140000005,-4.272370499999965],[122.8883790000001,-4.270983399999977],[122.88784210000006,-4.268980099999965],[122.89367630000004,-4.257270199999937],[122.89352310000004,-4.254804699999966],[122.898624,-4.250149099999931],[122.902349,-4.251261899999975],[122.90319370000009,-4.247409699999935],[122.90626380000003,-4.243634899999961],[122.90480650000006,-4.237702299999967],[122.90703280000002,-4.230614499999945],[122.90383440000005,-4.229190199999948],[122.90192960000002,-4.225420499999927],[122.89525780000008,-4.222750499999961],[122.89424420000012,-4.220574499999941],[122.8929012000001,-4.207454399999961],[122.89500210000006,-4.2061],[122.89705730000003,-4.206715899999949],[122.89535850000004,-4.204697499999952],[122.89812990000007,-4.204419599999937],[122.89705110000011,-4.200921299999948],[122.89986670000008,-4.1949902],[122.89113020000002,-4.177178199999958],[122.89204680000012,-4.175370899999962],[122.88985450000007,-4.171378],[122.8915247000001,-4.164362299999937],[122.88848180000002,-4.157937499999946],[122.88661810000008,-4.144644699999958],[122.8886149000001,-4.142541899999969],[122.88324890000001,-4.1323541],[122.88511460000007,-4.130908399999953],[122.8843955000001,-4.125091899999973],[122.882105,-4.122183299999961],[122.87873420000005,-4.121032599999978],[122.87693480000007,-4.117598299999941],[122.87297500000011,-4.116086099999961],[122.87330290000011,-4.11257],[122.8706525,-4.109431299999926],[122.86908320000009,-4.099490399999979],[122.8602155000001,-4.093031599999961],[122.85668190000001,-4.088463299999944],[122.85344430000009,-4.076041099999941],[122.84987840000008,-4.069747399999926],[122.84663940000007,-4.066066399999954],[122.83145720000005,-4.055350499999975],[122.8273339000001,-4.055382499999951],[122.8252063000001,-4.057780899999955],[122.82075540000005,-4.059357299999931],[122.81558530000007,-4.057729499999937],[122.81041390000007,-4.061901699999964],[122.79974620000007,-4.059500199999945],[122.79709630000002,-4.056246299999941],[122.79447860000005,-4.055522599999961],[122.79064850000009,-4.060516599999971],[122.78861940000002,-4.0611733],[122.78331850000006,-4.059430199999952],[122.78041320000011,-4.060032799999931],[122.77517090000003,-4.056601899999976],[122.76630280000006,-4.055975],[122.76266930000008,-4.059555899999964],[122.7610969000001,-4.065174699999943],[122.76950580000005,-4.069942],[122.7676719000001,-4.074443499999973],[122.771143,-4.077723799999944],[122.77110650000009,-4.079899399999931],[122.77596440000002,-4.0813739],[122.77643960000012,-4.084041499999955],[122.77509770000006,-4.084599699999956],[122.77624280000009,-4.085651599999949],[122.77457350000009,-4.086702699999933],[122.77706,-4.0889708],[122.7771901000001,-4.091829799999971],[122.77979560000006,-4.091041099999927],[122.78188790000002,-4.0928505],[122.78307890000008,-4.096973899999966],[122.78607310000007,-4.094288099999972],[122.78779450000002,-4.096549599999946],[122.78991380000002,-4.096417199999962],[122.79134480000005,-4.094502299999931],[122.7913708000001,-4.096337699999935],[122.7930133000001,-4.096285],[122.79314670000008,-4.092587499999979],[122.798312,-4.094331199999942],[122.79995370000006,-4.097576899999979],[122.80159650000007,-4.095981199999926],[122.80390550000004,-4.100012299999946],[122.80095770000003,-4.101416599999936],[122.79922980000003,-4.105930299999955],[122.80152140000007,-4.109338899999955],[122.80429160000006,-4.103599799999927],[122.80646500000012,-4.103540499999951],[122.80813300000011,-4.100252499999954],[122.80905550000011,-4.102225799999928],[122.8070067000001,-4.105834099999925],[122.808667,-4.108144899999957],[122.80676110000002,-4.110117499999944],[122.80762350000009,-4.114452399999948],[122.8101421,-4.114153099999953],[122.81190270000002,-4.111797199999955],[122.81514210000012,-4.112004199999944],[122.81700310000008,-4.109043699999972],[122.82152870000004,-4.107908699999939],[122.82367170000009,-4.110779099999945],[122.82090180000012,-4.115561699999944],[122.8242954000001,-4.117894199999967],[122.82411580000007,-4.122408299999961],[122.82518750000008,-4.122946699999943],[122.82765930000005,-4.119868],[122.82990410000002,-4.119908699999939],[122.83426950000012,-4.123763599999961],[122.83397780000007,-4.130508199999952],[122.83101580000005,-4.131605299999933],[122.83216080000011,-4.133856499999979],[122.83076010000002,-4.135838899999953],[122.82834720000005,-4.136076699999933],[122.8265838000001,-4.133502699999951],[122.82456810000008,-4.133296199999961],[122.82427330000007,-4.1344792],[122.83231110000008,-4.140118299999926],[122.83179220000011,-4.146734599999945],[122.8349227000001,-4.147267599999964],[122.83565380000005,-4.149833],[122.83338060000005,-4.153914499999928],[122.82692750000001,-4.150693599999954],[122.82248890000005,-4.14548],[122.81719510000005,-4.145156699999973],[122.81813760000011,-4.140903499999979],[122.81435940000006,-4.141331499999978],[122.816172,-4.136716799999931],[122.81497530000001,-4.136076699999933],[122.81264450000003,-4.140754399999935],[122.80967740000006,-4.140359799999942],[122.80947920000006,-4.148694499999976],[122.80613740000001,-4.150643599999967],[122.802707,-4.150427599999944],[122.80312880000008,-4.154050499999926],[122.8008860000001,-4.154033899999945],[122.79973590000009,-4.156149699999958],[122.7961752000001,-4.155207099999927],[122.79323480000005,-4.151890799999933],[122.78911490000007,-4.15355],[122.77377850000005,-4.151653199999942],[122.76897740000004,-4.154990299999952],[122.77189790000011,-4.1622829],[122.77031670000008,-4.162907599999926],[122.767821,-4.160692199999971],[122.76565280000011,-4.161749599999951],[122.767319,-4.157349699999941],[122.76595730000008,-4.157110899999964],[122.76513840000007,-4.159609399999965],[122.7631589,-4.154433899999958],[122.76018480000005,-4.153839699999935],[122.76042220000011,-4.156777],[122.75868590000005,-4.155754499999944],[122.7560572000001,-4.156935],[122.75629640000011,-4.153779399999962],[122.75453440000001,-4.151647699999955],[122.75433,-4.154232499999978],[122.75336020000009,-4.153054],[122.75077920000001,-4.155928599999925],[122.74885570000004,-4.152503399999944],[122.74867490000008,-4.150113],[122.75032990000011,-4.148758099999952],[122.74820330000011,-4.146692599999938],[122.74847090000003,-4.144570299999941],[122.74558760000002,-4.142344899999955],[122.74566830000003,-4.143374699999981],[122.7432123000001,-4.143459699999937],[122.7440554000001,-4.144821299999933],[122.741307,-4.144094799999948],[122.73780150000005,-4.139765299999965],[122.73701460000007,-4.143969099999936],[122.73597240000004,-4.144054499999925],[122.73759220000011,-4.147339299999942],[122.73603760000003,-4.146772799999951],[122.7341358000001,-4.148778099999959],[122.72867640000004,-4.146732899999961],[122.72691580000003,-4.149236299999927],[122.725857,-4.147709499999962],[122.72725820000005,-4.147195499999953],[122.7275495,-4.144725899999969],[122.73167010000009,-4.141872399999954],[122.73131260000002,-4.138270699999964],[122.72796210000001,-4.138024499999972],[122.72847360000003,-4.140923099999952],[122.72681630000011,-4.141282699999977],[122.72695250000004,-4.142483299999981],[122.72638920000009,-4.141059599999949],[122.72794410000006,-4.140597099999979],[122.72715860000005,-4.139602099999934],[122.72551150000004,-4.142232399999955],[122.7221972000001,-4.141425099999935],[122.71993680000003,-4.138163399999939],[122.7197665000001,-4.132454099999961],[122.715046,-4.131318],[122.71490580000011,-4.135221199999933],[122.71211480000011,-4.137761],[122.70686210000008,-4.136797599999966],[122.702055,-4.133995699999957],[122.69673090000003,-4.135417299999972],[122.69766990000005,-4.137064099999975],[122.6959442000001,-4.137303599999939],[122.6967638000001,-4.138521599999933],[122.69838740000012,-4.137287399999934],[122.70113930000002,-4.141106899999954],[122.70400940000002,-4.141365299999961],[122.70257360000005,-4.143131199999971],[122.70440220000012,-4.141931399999976],[122.70622220000007,-4.142656799999941],[122.70576050000011,-4.143754299999955],[122.70993040000008,-4.148840399999926],[122.70690600000012,-4.150545899999941],[122.70921250000004,-4.156295299999954],[122.714447,-4.159029699999962],[122.71354430000008,-4.163801],[122.70851630000004,-4.1650744],[122.702115,-4.158961399999953],[122.69815710000012,-4.159408099999951],[122.69593980000002,-4.156777799999929],[122.69066740000005,-4.158590499999946],[122.6803748000001,-4.159140899999954],[122.67650930000002,-4.157879099999946],[122.67736370000011,-4.155812599999933],[122.6757172,-4.150469899999962],[122.66730230000007,-4.147754499999962],[122.66647110000008,-4.145962399999974],[122.66565120000007,-4.146107399999948],[122.6642025000001,-4.147634799999935],[122.66590470000006,-4.145381099999952],[122.66691730000002,-4.145914199999936],[122.66797760000009,-4.147561099999962],[122.67294520000007,-4.147684199999958],[122.67282520000003,-4.146183],[122.66867820000004,-4.144534799999974],[122.66792880000003,-4.140522499999975],[122.665242,-4.140573499999959],[122.66637,-4.137546199999974],[122.6631215000001,-4.1331178],[122.66478340000003,-4.130498],[122.66879630000005,-4.130033099999935],[122.67062910000004,-4.128325299999972],[122.66398540000012,-4.126179599999944],[122.66317030000005,-4.118501699999968],[122.660537,-4.118322599999942],[122.65994770000009,-4.1204415],[122.65987660000008,-4.118746099999953],[122.660965,-4.117654099999925],[122.66497930000003,-4.117279099999962],[122.667712,-4.113776],[122.66669290000004,-4.112759499999925],[122.66652020000004,-4.114584499999978],[122.6650833000001,-4.1136221],[122.66445650000003,-4.114497399999948],[122.6648626000001,-4.112758699999972],[122.66384290000008,-4.1128323],[122.66537920000007,-4.111168099999929],[122.66245120000008,-4.104891899999927],[122.66384140000002,-4.104057699999942],[122.66276660000005,-4.101676299999951],[122.66471990000002,-4.099989799999946],[122.660924,-4.095623499999931],[122.65678090000006,-4.094724199999973],[122.66138540000009,-4.090573199999938],[122.66094740000005,-4.0879559],[122.65954210000007,-4.091664599999945],[122.65812,-4.091422899999941],[122.659396,-4.087639899999942],[122.66192710000007,-4.085971799999925],[122.66043020000006,-4.08447],[122.66184020000003,-4.083606799999927],[122.66195260000006,-4.081004499999949],[122.65955760000008,-4.083973199999946],[122.65483720000009,-4.086053199999981],[122.652714,-4.086362399999928],[122.65089680000006,-4.083436099999972],[122.6508659000001,-4.074581799999976],[122.6521193000001,-4.072706499999981],[122.650107,-4.070480699999962],[122.65202660000011,-4.069748699999934],[122.65232460000004,-4.065732399999945],[122.64922840000008,-4.057892699999968],[122.6508017000001,-4.056108299999948],[122.65296650000005,-4.056772899999942],[122.65458360000002,-4.055503],[122.6551869000001,-4.0506673],[122.6585970000001,-4.046180699999979],[122.66151330000002,-4.045089099999927],[122.66483970000002,-4.048007],[122.66737850000004,-4.047305699999924],[122.67257880000011,-4.036308299999973],[122.66600910000011,-4.035994499999958],[122.6650489000001,-4.034842799999979],[122.66368660000012,-4.031699799999956],[122.66511340000011,-4.028589],[122.66049810000004,-4.020636099999933],[122.66201840000008,-4.016249699999946],[122.65907370000002,-4.013341399999945],[122.65883760000008,-4.007906299999945],[122.65498020000007,-4.006439199999932],[122.65107350000005,-4.002783499999964],[122.63610040000003,-4.018451099999936],[122.61582870000007,-4.025652399999956],[122.5963355,-4.076435199999935],[122.58916560000011,-4.083990799999981],[122.5756282000001,-4.082583299999953],[122.57506940000007,-4.069918],[122.5729583000001,-4.069033099999956],[122.54646960000002,-4.077654199999927],[122.53198550000002,-4.085789],[122.52876550000008,-4.090667199999928],[122.52691690000006,-4.091319099999964],[122.5068533000001,-4.083164299999964],[122.51416460000007,-4.068063],[122.5000308000001,-4.0712743],[122.48633360000008,-4.051471],[122.48161140000002,-4.0544134],[122.470085,-4.0323197],[122.46287270000005,-4.027510399999926],[122.44855930000006,-4.0241464],[122.44047520000004,-4.018320299999971],[122.44044860000008,-4.008071299999926],[122.4268588000001,-4.008076899999935],[122.4212702000001,-4.010410699999966],[122.40765420000002,-4.007152599999927],[122.371969,-4.001915],[122.36681650000003,-3.997749699999929],[122.36300050000011,-3.996563499999979],[122.35910440000009,-3.9993844],[122.35916150000003,-4.005846],[122.35673420000012,-4.0074728],[122.35147070000005,-4.007748699999979],[122.35017550000009,-4.011214799999948],[122.35170330000005,-4.019478099999958],[122.3561304000001,-4.02131],[122.35658810000007,-4.0232197],[122.35458470000003,-4.025151899999969],[122.34660830000007,-4.025648],[122.3450054000001,-4.023472599999934],[122.33855560000006,-4.022251399999959],[122.34042560000012,-4.016297699999939],[122.33599850000007,-4.012862899999959],[122.3332507,-4.013091899999949],[122.33253270000012,-4.016865699999926],[122.32920520000005,-4.016183199999944],[122.32916710000006,-4.020953799999972],[122.32603760000006,-4.020915599999967],[122.32056590000002,-4.016334899999947],[122.31636930000002,-4.022304099999928],[122.3133107000001,-4.022017099999971],[122.31397760000004,-4.014236799999935],[122.308062,-4.009504399999969],[122.31252730000006,-4.008321299999977],[122.31287080000004,-4.003512599999965],[122.31061910000005,-4.002291299999968],[122.30706980000002,-4.007443499999965],[122.30279530000007,-4.009237199999973],[122.30207020000012,-4.0112218],[122.30458910000004,-4.012328599999933],[122.30519970000012,-4.014198599999929],[122.29813890000003,-4.018515599999944],[122.29794840000011,-4.020839299999977],[122.29990810000004,-4.0233533],[122.29622260000008,-4.024646299999972],[122.29249090000008,-4.021068299999968],[122.29230010000003,-4.017862499999978],[122.29554410000003,-4.005726099999947],[122.30264270000009,-3.997520699999939],[122.29844460000004,-3.997062699999958],[122.293674,-4.005420799999968],[122.29153680000002,-4.006489399999964],[122.28424730000006,-4.005344499999978],[122.27825550000011,-3.999696099999937],[122.27810280000006,-3.995307199999957],[122.27489060000005,-3.993946],[122.27632110000002,-3.988396699999953],[122.27511530000004,-3.984365799999978],[122.27071850000004,-3.983533799999975],[122.26774770000009,-3.986401799999953],[122.26869670000008,-3.990900099999976],[122.2710449000001,-3.991682799999978],[122.27202440000008,-3.994289599999945],[122.27110850000008,-4.000624899999934],[122.26851330000011,-4.003945199999976],[122.26416250000011,-4.005777099999932],[122.26168180000002,-4.002647599999932],[122.25748370000008,-4.001388199999951],[122.25076680000006,-4.002876599999979],[122.24992710000004,-4.0061588],[122.24668310000004,-4.004288699999961],[122.24198890000002,-4.0066931],[122.24011880000012,-4.004059699999971],[122.23676030000001,-4.004555899999957],[122.23462310000002,-4.0006631],[122.22973810000008,-4.003525399999944],[122.23305840000012,-4.004746699999941],[122.23271490000002,-4.006540399999949],[122.230196,-4.007036599999935],[122.22882210000012,-4.005166499999973],[122.22691390000011,-4.006654899999944],[122.22534910000002,-4.004937499999926],[122.22233410000001,-4.004975699999932],[122.22118920000003,-4.007761699999946],[122.22405150000009,-4.010318699999971],[122.21950990000005,-4.008067],[122.2187848000001,-4.012265099999979],[122.21500650000007,-4.010738499999945],[122.21237320000012,-4.012265099999979],[122.21073210000009,-4.016272399999934],[122.2122587,-4.020279699999946],[122.2035198000001,-4.0199356],[122.20377790000009,-4.023312699999963],[122.20236580000005,-4.021671699999956],[122.19935080000005,-4.024114199999929],[122.19770970000002,-4.028388599999971],[122.19469470000001,-4.028579499999978],[122.192443,-4.032510399999978],[122.1900386000001,-4.032777599999974],[122.18923710000001,-4.034952899999951],[122.18736710000007,-4.034647599999971],[122.188512,-4.039074699999958],[122.1807334,-4.041375499999958],[122.17644130000008,-4.051842199999953],[122.17702270000007,-4.056551199999944],[122.17961880000007,-4.059686099999965],[122.17878840000003,-4.065169399999945],[122.17499380000004,-4.065701399999966],[122.16880340000012,-4.070079499999963],[122.15603410000006,-4.071308899999963],[122.15124260000005,-4.0741193],[122.14958400000012,-4.077067899999975],[122.13724700000012,-4.082490499999949],[122.13376240000002,-4.085530099999971],[122.117105,-4.092976499999963],[122.1113385000001,-4.094148299999972],[122.1078179000001,-4.097675599999945],[122.107816,-4.099441199999944],[122.10488340000006,-4.101203599999963],[122.09715930000004,-4.102717199999972],[122.09376620000012,-4.101797499999975],[122.09139540000001,-4.105313199999955],[122.09252780000008,-4.111578399999928],[122.09121610000011,-4.1143298],[122.0839085,-4.11799],[122.079547,-4.116392899999937],[122.07557830000007,-4.116690399999925],[122.07438890000003,-4.115293699999938],[122.06911370000012,-4.115287499999965],[122.06266220000009,-4.118811099999959],[122.05914750000011,-4.117041399999948],[122.0515223000001,-4.121740599999953],[122.04155530000003,-4.124082699999974],[122.03920860000005,-4.125845499999969],[122.03042030000006,-4.122892199999967],[122.0210416000001,-4.123469199999931],[122.01048770000011,-4.126398699999925],[122.00989940000011,-4.128163499999971],[121.9999338,-4.129328099999952],[121.99444710000012,-4.131675199999961],[122.01115450000009,-4.182974499999943],[122.01481400000011,-4.201752899999974],[122.01069860000007,-4.277162499999974],[122.01039820000005,-4.360441399999957],[122.00712720000001,-4.366884599999935],[122.00384340000005,-4.3690942],[121.98931870000001,-4.372334599999931],[121.9830981,-4.372234299999946],[121.97989450000011,-4.373515499999939],[121.97659380000005,-4.378928799999926],[121.90769850000004,-4.377948599999968],[121.9997264000001,-4.428093099999955],[121.99930670000003,-4.429093899999941],[122.00000650000004,-4.428253299999938],[122.01157780000005,-4.438554699999941],[122.01946160000011,-4.443625],[122.04632790000005,-4.469274799999937],[122.04817870000011,-4.472628499999928],[122.05003370000009,-4.472630899999956],[122.05114010000011,-4.477845499999944],[122.04816370000003,-4.484171799999956],[122.05149860000006,-4.487527499999942],[122.05743360000008,-4.488652299999956],[122.059655,-4.492378799999926],[122.06559330000005,-4.490897],[122.0674457,-4.493133499999942],[122.0782051000001,-4.493519599999956],[122.0796841,-4.497617499999933],[122.0826747000001,-4.4975572],[122.08288660000005,-4.493955599999936],[122.0880241000001,-4.496497899999952],[122.08924230000002,-4.495597499999974],[122.089719,-4.497398299999929],[122.09310870000002,-4.495279699999969],[122.09480360000009,-4.496656799999926],[122.09382380000011,-4.500152399999934],[122.09940270000004,-4.506013799999948],[122.10138,-4.501423599999953],[122.10455790000003,-4.500929199999973],[122.10258060000001,-4.505731399999945],[122.10328680000009,-4.507073099999957],[122.1071002000001,-4.507779299999925],[122.10575840000001,-4.515476799999931],[122.10745330000009,-4.522256299999981],[122.1037811000001,-4.528188299999954],[122.10386850000009,-4.530329799999947]]]]},"properties":{"shapeName":"Konawe Selatan","shapeISO":"","shapeID":"22746128B30396454346431","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[122.32579030000011,-3.5305484],[122.3059654000001,-3.530635899999936],[122.29366180000011,-3.5332826],[122.29477670000006,-3.537778199999934],[122.29141770000001,-3.543087599999978],[122.29060090000007,-3.547683899999925],[122.28590930000007,-3.553916799999968],[122.282757,-3.564930599999968],[122.2782251000001,-3.570246099999963],[122.28030810000007,-3.579139199999929],[122.27948930000002,-3.586085],[122.282129,-3.590888299999961],[122.28751950000003,-3.588440899999966],[122.28884790000006,-3.579758799999979],[122.29698240000005,-3.578743599999939],[122.30511830000012,-3.575685199999953],[122.31619610000007,-3.581516299999976],[122.32615880000003,-3.583158199999957],[122.33225920000007,-3.583060599999953],[122.34975280000003,-3.574594299999944],[122.36449420000008,-3.576034899999968],[122.36449790000006,-3.570620599999927],[122.349859,-3.568158599999947],[122.33420620000004,-3.561916],[122.33573930000011,-3.550577899999951],[122.33401360000005,-3.546899099999962],[122.34601040000007,-3.547009799999955],[122.34570970000004,-3.540880299999969],[122.33940640000003,-3.540671499999974],[122.33564610000008,-3.53883],[122.33331080000005,-3.534537899999975],[122.32914220000009,-3.534841299999925],[122.32579030000011,-3.5305484]]],[[[122.48650640000005,-3.484221599999955],[122.48463990000005,-3.478980799999931],[122.483066,-3.478584499999954],[122.4829956000001,-3.487449199999958],[122.4861773,-3.486363399999959],[122.48650640000005,-3.484221599999955]]],[[[122.40007030000004,-3.465192699999932],[122.40135640000005,-3.463076299999955],[122.39889,-3.462661599999933],[122.39899490000005,-3.459305],[122.39678550000008,-3.458683899999926],[122.39570470000001,-3.461213599999951],[122.39323680000007,-3.463019499999973],[122.39313270000002,-3.465085],[122.39909250000005,-3.467412699999954],[122.40007030000004,-3.465192699999932]]],[[[122.3965290000001,-3.457909099999938],[122.39647920000004,-3.455482],[122.39165170000001,-3.450469799999951],[122.39164630000005,-3.4589905],[122.39529360000006,-3.461161699999934],[122.3965290000001,-3.457909099999938]]],[[[122.4417678000001,-3.444084199999963],[122.42337120000002,-3.428141799999935],[122.41842080000004,-3.416745099999957],[122.41627160000007,-3.399431299999947],[122.41323090000003,-3.395533],[122.40297160000011,-3.400864699999943],[122.40343450000012,-3.410524],[122.40155670000001,-3.414292099999955],[122.40319390000002,-3.420418299999938],[122.40201750000006,-3.427249499999959],[122.39802720000012,-3.435256799999934],[122.3977880000001,-3.442795299999943],[122.40106810000009,-3.446095599999978],[122.40411570000003,-3.446097499999951],[122.40552,-3.4498677],[122.4041112000001,-3.453400599999952],[122.40668870000002,-3.4555224],[122.4052756000001,-3.465887199999941],[122.40832010000008,-3.471072],[122.41042450000009,-3.480025499999954],[122.41581570000005,-3.481677899999966],[122.42143680000004,-3.490869199999963],[122.41838880000012,-3.4911029],[122.41651190000005,-3.4932219],[122.42002720000005,-3.49558],[122.42331110000009,-3.492990599999928],[122.42495150000002,-3.494169499999941],[122.4265888000001,-3.500531299999977],[122.431509,-3.505952699999966],[122.44088670000008,-3.506429599999933],[122.44484080000007,-3.504033599999957],[122.45079810000004,-3.503418899999929],[122.45113590000005,-3.499541],[122.44904090000011,-3.495324499999981],[122.44663650000007,-3.494030399999929],[122.44571570000005,-3.4904609],[122.44065680000006,-3.485343299999954],[122.4379196000001,-3.479524599999934],[122.43912360000002,-3.477108499999929],[122.4423954,-3.477475799999979],[122.44756440000003,-3.485572199999979],[122.4532405000001,-3.487430299999971],[122.45654150000007,-3.485633699999937],[122.4583381000001,-3.478965599999981],[122.46074470000008,-3.476451499999939],[122.46260570000004,-3.484048399999949],[122.46742030000007,-3.476504699999964],[122.46619950000002,-3.465258199999937],[122.46384560000001,-3.461458899999968],[122.46060620000003,-3.4611611],[122.45427720000009,-3.456077099999959],[122.45246410000004,-3.450847799999963],[122.4480463000001,-3.451387799999964],[122.4417678000001,-3.444084199999963]]],[[[121.50330810000003,-3.449520799999959],[121.51258990000008,-3.438061799999957],[121.5312550000001,-3.399293599999964],[121.5466143000001,-3.392772799999932],[121.55431440000007,-3.386148499999933],[121.59956140000008,-3.410822],[121.61857150000003,-3.423597699999959],[121.62624280000011,-3.423015899999939],[121.63981950000004,-3.418884699999978],[121.662831,-3.418917199999953],[121.671671,-3.4266378],[121.67106870000009,-3.4355313],[121.66338810000002,-3.442635899999971],[121.6595665000001,-3.449190899999962],[121.65864770000007,-3.456859899999927],[121.66217640000002,-3.465166199999942],[121.66983990000006,-3.470513599999947],[121.700507,-3.483008499999926],[121.72587220000003,-3.489565899999945],[121.7418090000001,-3.486622599999976],[121.74830640000005,-3.481887499999971],[121.76364830000011,-3.482500799999968],[121.76835910000011,-3.490215699999965],[121.76598700000011,-3.499107099999947],[121.765379,-3.512744699999928],[121.7753801,-3.536476799999946],[121.77300630000002,-3.546554199999946],[121.77476420000005,-3.556044099999951],[121.7794745000001,-3.564352],[121.79420450000009,-3.582753799999978],[121.80634120000002,-3.578417299999956],[121.81782840000005,-3.569739099999936],[121.82644860000005,-3.5667852],[121.840143,-3.564905099999976],[121.85573130000012,-3.558757599999979],[121.86516770000003,-3.563987599999962],[121.88215800000012,-3.569701299999963],[121.88971290000006,-3.569236099999955],[121.90577440000004,-3.562139399999978],[121.92011080000009,-3.562443599999938],[121.9298262000001,-3.56667],[121.970443,-3.576920899999948],[121.99451220000003,-3.587384799999938],[122.00630730000012,-3.5959372],[122.01479480000012,-3.606858],[122.0223443000001,-3.612084799999934],[122.03083870000012,-3.616838099999939],[122.04169620000005,-3.619696199999964],[122.05536630000006,-3.642482799999925],[122.04496610000001,-3.653383499999961],[122.042595,-3.662869299999954],[122.04683540000008,-3.671887899999945],[122.05296880000003,-3.677113],[122.05390080000006,-3.688974499999972],[122.05814140000007,-3.697993099999962],[122.06496980000009,-3.700595499999963],[122.08078940000007,-3.716993899999977],[122.1048750000001,-3.716544299999953],[122.12611680000009,-3.726528599999938],[122.13131260000011,-3.725584899999944],[122.13745580000011,-3.7217956],[122.14548470000011,-3.721329],[122.15160920000005,-3.736991199999977],[122.15254370000002,-3.747429599999975],[122.15584650000005,-3.7507539],[122.16575990000001,-3.755507699999953],[122.17708270000003,-3.768328299999951],[122.18133380000006,-3.767857899999967],[122.18747850000011,-3.762644799999975],[122.18984560000001,-3.756479399999932],[122.19646510000007,-3.74842],[122.20308090000003,-3.744156199999964],[122.21252660000005,-3.744164699999942],[122.23377540000001,-3.748928099999944],[122.26918030000002,-3.769359599999973],[122.2767305000001,-3.777431499999977],[122.27672030000008,-3.789767099999949],[122.28142420000006,-3.813019],[122.284255,-3.816816899999935],[122.3064432000001,-3.831068599999981],[122.31068940000011,-3.837239899999929],[122.3120861000001,-3.862859699999944],[122.31397070000003,-3.868556199999944],[122.330496,-3.870470699999942],[122.3361579000001,-3.877121299999942],[122.34372520000011,-3.875221299999964],[122.3569202000001,-3.864313099999947],[122.38467220000007,-3.866073599999936],[122.39900720000003,-3.864082599999961],[122.39963340000008,-3.867511699999966],[122.4144993000001,-3.867065399999944],[122.41633390000004,-3.862123799999949],[122.42687200000012,-3.861048899999957],[122.42923550000012,-3.857730899999979],[122.42347170000005,-3.848459899999966],[122.42924430000005,-3.845393399999978],[122.43208310000011,-3.838278299999956],[122.43963990000009,-3.839706699999965],[122.44720160000008,-3.8335437],[122.45286780000004,-3.836868599999946],[122.459482,-3.834974899999963],[122.45949180000002,-3.819317699999942],[122.46878890000005,-3.820079],[122.47219550000011,-3.821522899999934],[122.47280350000005,-3.820671599999969],[122.47043560000009,-3.808635],[122.4574407,-3.794751799999972],[122.45054980000009,-3.781010399999957],[122.44662740000001,-3.7681861],[122.44350520000012,-3.750091],[122.43303870000011,-3.745785499999954],[122.4267152000001,-3.746393499999954],[122.42067550000002,-3.751541499999973],[122.40197890000002,-3.749896199999966],[122.39376030000005,-3.7380838],[122.392909,-3.726571899999954],[122.3843561000001,-3.726531399999942],[122.38739630000009,-3.731841499999973],[122.382978,-3.739299899999935],[122.3732496,-3.745299099999954],[122.36830430000009,-3.750487599999929],[122.36595330000011,-3.750325399999952],[122.36311580000006,-3.752838599999961],[122.353428,-3.749636299999963],[122.3451884000001,-3.742947799999968],[122.34201670000004,-3.745621099999937],[122.3434817000001,-3.742879799999969],[122.34073290000003,-3.741233],[122.33834890000003,-3.742623799999933],[122.33526830000005,-3.7382054],[122.33632220000004,-3.734435699999949],[122.33214710000004,-3.733908699999972],[122.32987710000009,-3.735895],[122.32740450000006,-3.734030299999972],[122.32586420000007,-3.7344762],[122.32546560000003,-3.726261099999931],[122.3237256000001,-3.7237262],[122.31643980000001,-3.719829599999969],[122.31335910000007,-3.714154699999938],[122.31300780000004,-3.710263299999951],[122.30933260000006,-3.709975099999951],[122.30428830000005,-3.706011699999976],[122.30464860000006,-3.697508299999924],[122.30082930000003,-3.691455099999928],[122.29383930000006,-3.687779899999953],[122.292398,-3.685257799999931],[122.28829050000002,-3.686482799999965],[122.28497560000005,-3.684248899999943],[122.27647230000002,-3.683384099999955],[122.27041910000003,-3.681006099999934],[122.2662395000001,-3.677114699999947],[122.264298,-3.670799799999941],[122.25401850000003,-3.6652171],[122.24659240000005,-3.664642699999945],[122.24577690000001,-3.6608912],[122.24689350000006,-3.655512899999962],[122.23653480000007,-3.650679899999943],[122.22913040000003,-3.645275199999958],[122.22093730000006,-3.633684399999936],[122.21553010000002,-3.630565099999956],[122.2069173000001,-3.621981099999971],[122.20180330000005,-3.611288599999966],[122.19649060000006,-3.609223199999974],[122.19583770000008,-3.591606899999931],[122.19778340000005,-3.580095],[122.19664840000007,-3.574852499999963],[122.19999930000006,-3.564961899999957],[122.20480940000004,-3.56507],[122.207782,-3.568691099999967],[122.207782,-3.564097199999935],[122.21264620000011,-3.562421699999959],[122.22107750000009,-3.562800099999947],[122.2302654,-3.565286199999946],[122.2323192,-3.562367699999925],[122.23945330000004,-3.560692199999949],[122.24302040000009,-3.563502699999958],[122.24615510000001,-3.560259899999949],[122.24804670000003,-3.564583599999935],[122.24999240000011,-3.564043099999935],[122.2496681,-3.559070799999972],[122.2518841000001,-3.557557499999973],[122.25307310000005,-3.561178699999971],[122.26139630000011,-3.556584699999974],[122.26469310000004,-3.556260399999928],[122.26696310000011,-3.559070799999972],[122.26939520000008,-3.553828299999964],[122.27085440000008,-3.538154799999973],[122.26642260000006,-3.536965799999962],[122.26031530000012,-3.537884599999927],[122.25593760000004,-3.541343499999925],[122.25404590000005,-3.540803099999948],[122.25799130000007,-3.535938899999962],[122.2652336000001,-3.531182799999954],[122.26734140000008,-3.521130099999937],[122.26890880000008,-3.522427199999925],[122.26842230000011,-3.530858499999965],[122.27415130000009,-3.535722699999951],[122.27474580000012,-3.5382629],[122.27242180000007,-3.545721299999968],[122.27300910000008,-3.550766099999976],[122.275016,-3.553071699999975],[122.27717790000008,-3.553287799999964],[122.27863720000005,-3.551990699999976],[122.27771840000003,-3.547829099999944],[122.28177190000008,-3.548639799999933],[122.27782650000006,-3.543019],[122.27717790000008,-3.537452199999962],[122.27961,-3.506645599999956],[122.28409590000001,-3.492161099999976],[122.28393370000003,-3.488648099999978],[122.28215020000005,-3.487405],[122.272638,-3.487891399999967],[122.26934110000002,-3.4918368],[122.25701850000007,-3.488864199999966],[122.25112740000009,-3.4923232],[122.24864130000003,-3.496917199999928],[122.247128,-3.495349799999929],[122.25372160000006,-3.486864499999967],[122.2589101000001,-3.486324099999933],[122.264585,-3.488864199999966],[122.26739540000005,-3.488269699999933],[122.26653070000009,-3.4850269],[122.26096390000009,-3.484486499999946],[122.26123410000002,-3.483081299999981],[122.2671252,-3.483459599999946],[122.27042210000002,-3.486107899999979],[122.2816097000001,-3.480757199999971],[122.28782510000008,-3.4923773],[122.29506730000003,-3.479189899999938],[122.29679680000004,-3.4724341],[122.29917490000003,-3.468272499999955],[122.30171510000002,-3.468002199999944],[122.2931757,-3.462111199999924],[122.29144620000011,-3.451680199999942],[122.283123,-3.449302099999954],[122.2836635000001,-3.443519099999946],[122.27950190000001,-3.440114199999925],[122.27923170000008,-3.435898499999951],[122.27620510000008,-3.434601399999963],[122.27053020000005,-3.436060699999928],[122.266909,-3.434871599999951],[122.26199080000004,-3.427305099999955],[122.25945060000004,-3.426710599999979],[122.25836970000012,-3.422711099999958],[122.261072,-3.419954799999971],[122.26388240000006,-3.4197386],[122.2622070000001,-3.415847199999973],[122.2553971000001,-3.4174686],[122.25458640000011,-3.415739099999939],[122.25323520000006,-3.4174686],[122.24885740000002,-3.415577],[122.24815480000007,-3.410118299999965],[122.24512820000007,-3.409091399999966],[122.24264210000001,-3.405956699999933],[122.24318260000007,-3.404011],[122.24669560000007,-3.402822],[122.24193950000006,-3.4036867],[122.23750770000004,-3.3982821],[122.2399938000001,-3.395633799999928],[122.23794,-3.392499099999952],[122.23912910000001,-3.388715799999943],[122.24415540000007,-3.390715499999942],[122.244804,-3.389040099999931],[122.247182,-3.389796699999977],[122.24799270000005,-3.388337499999977],[122.252965,-3.388121299999966],[122.25210020000009,-3.393526],[122.25447830000007,-3.3937421],[122.258748,-3.397903699999972],[122.26799,-3.399092799999949],[122.2636662000001,-3.393201699999963],[122.26588210000011,-3.390229099999942],[122.2701518,-3.3915803],[122.27144890000011,-3.390607399999965],[122.26701710000009,-3.388067199999966],[122.26404460000003,-3.381797799999958],[122.26739540000005,-3.381311399999959],[122.268044,-3.379581899999948],[122.27420530000006,-3.380608799999948],[122.27452960000005,-3.374555599999951],[122.27739410000004,-3.371907299999975],[122.274962,-3.365043399999934],[122.276151,-3.363097699999969],[122.2790695000001,-3.365367699999979],[122.280495,-3.364111099999946],[122.28491330000008,-3.368853699999931],[122.29419580000001,-3.368205099999955],[122.29524970000011,-3.369380599999943],[122.29273660000001,-3.371569499999964],[122.294966,-3.373028799999929],[122.292615,-3.374528599999962],[122.28929110000001,-3.374082699999974],[122.28957480000008,-3.376839099999927],[122.29776290000007,-3.377487599999938],[122.29841150000004,-3.379027899999926],[122.29687110000009,-3.382270699999935],[122.3039242000001,-3.3797981],[122.30907220000006,-3.384662299999945],[122.31438230000003,-3.382635599999958],[122.31397690000006,-3.379595399999971],[122.31863840000005,-3.375339299999951],[122.32439440000007,-3.373069299999941],[122.32820470000001,-3.373272],[122.32824520000008,-3.3765553],[122.32248930000003,-3.382108599999981],[122.32455650000009,-3.383486799999957],[122.32317830000011,-3.386567499999956],[122.32970450000005,-3.386770099999978],[122.3300693000001,-3.390783099999965],[122.3267049000001,-3.394552799999929],[122.32305670000005,-3.394471799999963],[122.32005720000006,-3.396214799999939],[122.32605630000012,-3.399173799999971],[122.32751560000008,-3.402416599999981],[122.31936810000002,-3.407807799999944],[122.31973290000008,-3.410442599999953],[122.32431330000009,-3.410442599999953],[122.32577260000005,-3.414212299999974],[122.32240820000004,-3.418103699999961],[122.31503080000005,-3.420414199999925],[122.31470650000006,-3.425075699999979],[122.31649010000001,-3.426494399999967],[122.32265140000004,-3.423211099999946],[122.32475920000002,-3.426129599999967],[122.3267049000001,-3.426129599999967],[122.33423430000005,-3.414019799999949],[122.34400320000009,-3.407899],[122.34704330000011,-3.408061099999941],[122.3496781,-3.409763599999962],[122.35000240000011,-3.417384199999958],[122.35669060000009,-3.4163303],[122.3590822000001,-3.4195731],[122.35652850000008,-3.425572199999976],[122.3505699000001,-3.429017699999974],[122.35069150000004,-3.430558],[122.35531250000008,-3.429463599999963],[122.3593254000001,-3.431855199999973],[122.36025770000003,-3.434935799999948],[122.35717710000006,-3.438827199999935],[122.36410850000004,-3.440408],[122.36346,-3.442921199999944],[122.3595686000001,-3.445758699999942],[122.36264930000004,-3.447015199999953],[122.364068,-3.451555199999973],[122.35681220000004,-3.457027399999959],[122.35604210000008,-3.459297299999946],[122.35754190000011,-3.462864399999944],[122.36017670000001,-3.464323699999966],[122.364068,-3.460391799999968],[122.36771620000002,-3.460108],[122.36889170000006,-3.464121],[122.37570160000007,-3.457838099999947],[122.37886330000003,-3.459013599999935],[122.38076840000008,-3.463067099999932],[122.3830789000001,-3.458040799999935],[122.38324110000008,-3.450663399999939],[122.37926860000005,-3.448636599999929],[122.38080900000011,-3.441016099999956],[122.38324110000008,-3.439475699999946],[122.38178180000011,-3.435098],[122.38741620000008,-3.424639899999931],[122.38680810000005,-3.418519199999935],[122.3895645,-3.413614399999972],[122.39057790000004,-3.406642399999953],[122.3789038000001,-3.392738899999927],[122.37493140000004,-3.390023099999951],[122.37582320000001,-3.382483599999944],[122.3715264000001,-3.379240799999934],[122.36572990000002,-3.382280899999955],[122.3604815000001,-3.380157599999961],[122.35689330000002,-3.381794499999955],[122.35425850000001,-3.385199399999976],[122.34923220000007,-3.379970399999934],[122.34631370000011,-3.379727199999934],[122.34096310000007,-3.375227799999948],[122.33788240000001,-3.364567099999931],[122.331032,-3.365175099999931],[122.32393840000009,-3.362621399999966],[122.3204118000001,-3.369350199999928],[122.311859,-3.369512399999962],[122.30971060000002,-3.365256199999976],[122.30472480000003,-3.363878],[122.30448160000003,-3.355446699999959],[122.301482,-3.356095299999936],[122.3024143,-3.3584868],[122.30136040000002,-3.360351399999956],[122.29321290000007,-3.359419099999968],[122.29341550000004,-3.351758],[122.29552340000009,-3.3481099],[122.29288860000008,-3.3462047],[122.29228060000003,-3.343448399999943],[122.29463160000012,-3.339921799999956],[122.29142930000012,-3.338949],[122.28924040000004,-3.334530699999959],[122.29114560000005,-3.3262615],[122.29451,-3.322451199999932],[122.29138880000005,-3.321559499999978],[122.29065920000005,-3.319735399999956],[122.29252380000003,-3.312885],[122.28778120000004,-3.309804299999939],[122.28311960000008,-3.31402],[122.27947150000011,-3.3128444],[122.2825927,-3.311709499999949],[122.28393030000007,-3.3082235],[122.29710520000003,-3.298734699999955],[122.30019610000011,-3.288086599999929],[122.30192560000012,-3.287149799999952],[122.3045919000001,-3.281240699999955],[122.30934800000011,-3.277133099999958],[122.30949220000002,-3.27353],[122.31072540000002,-3.272946],[122.29966890000003,-3.262316799999951],[122.29556330000003,-3.255266799999958],[122.29763040000012,-3.245972599999959],[122.30204390000006,-3.2377147],[122.3002954000001,-3.232558399999959],[122.29555330000005,-3.226183099999957],[122.29538910000008,-3.220628399999953],[122.29847130000007,-3.212533699999938],[122.30258770000012,-3.208874399999956],[122.31092860000001,-3.194221299999981],[122.31536010000002,-3.174634099999935],[122.31445450000001,-3.164983499999948],[122.31060510000009,-3.161913599999934],[122.29638260000002,-3.155669099999955],[122.289367,-3.143234599999971],[122.2849222000001,-3.141454],[122.2789064000001,-3.141154699999959],[122.26643700000011,-3.1451788],[122.25335980000011,-3.135006399999952],[122.25000100000011,-3.134904],[122.2325399,-3.140648599999963],[122.22870720000003,-3.139876699999945],[122.22220790000006,-3.134865299999944],[122.21157480000011,-3.1184201],[122.20559090000006,-3.111611899999957],[122.19182130000002,-3.098963799999979],[122.17560150000008,-3.088995799999964],[122.17184980000002,-3.084046199999932],[122.17322840000008,-3.071318899999937],[122.17968630000007,-3.047028099999977],[122.18087220000007,-3.035937699999977],[122.17931290000001,-3.032533799999953],[122.17654610000011,-3.030011099999967],[122.16147020000005,-3.025860699999953],[122.14201,-3.021957099999952],[122.1306863000001,-3.022098799999981],[122.1080720000001,-3.013653899999952],[122.1000438000001,-3.009015099999942],[122.0914570000001,-2.999998699999935],[122.08361330000002,-2.9860112],[122.08116760000007,-2.978080099999943],[122.08548610000003,-2.969030299999929],[122.0849,-2.966988899999933],[122.07873610000001,-2.9618532],[122.0680377000001,-2.974185899999952],[121.84191980000003,-3.205274499999973],[121.84440540000003,-3.209145199999966],[121.8283378000001,-3.225996499999951],[121.81236940000008,-3.235143299999947],[121.79070280000008,-3.243137199999978],[121.77588490000005,-3.243119299999933],[121.7644782000001,-3.249979399999972],[121.75593,-3.240054499999928],[121.7474003000001,-3.2339191],[121.73495130000003,-3.244712799999945],[121.70700240000008,-3.2329663],[121.68813790000002,-3.228115799999955],[121.67219280000006,-3.218930099999966],[121.67791530000011,-3.200607699999978],[121.65968540000006,-3.182266399999946],[121.649465,-3.167347899999925],[121.6335183000001,-3.160453299999972],[121.62439630000006,-3.163878],[121.61185670000009,-3.1661524],[121.59135030000004,-3.160396699999978],[121.579935,-3.174127899999974],[121.56396060000009,-3.187852499999963],[121.55368270000008,-3.202730299999928],[121.52174020000007,-3.224449799999945],[121.5035051000001,-3.224423099999967],[121.488184,-3.240314199999943],[121.43127510000011,-3.273299399999928],[121.43080370000007,-3.297752199999934],[121.4278385,-3.326489899999956],[121.4298887000001,-3.333398299999942],[121.44102580000003,-3.350937899999963],[121.47577350000006,-3.4116829],[121.4974274000001,-3.443207899999948],[121.50330810000003,-3.449520799999959]]]]},"properties":{"shapeName":"Konawe Utara","shapeISO":"","shapeID":"22746128B69042111199040","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[128.27133160000005,-3.618191599999932],[128.27029530000004,-3.616475899999955],[128.2680332000001,-3.616139199999964],[128.26889970000002,-3.614028299999973],[128.26792850000004,-3.610244199999954],[128.2703312000001,-3.599378499999943],[128.25121390000004,-3.583259],[128.250055,-3.577868399999943],[128.2472759000001,-3.577996],[128.23861980000004,-3.572988799999962],[128.2350633000001,-3.575388499999974],[128.2335078000001,-3.580776699999944],[128.231956,-3.581619599999954],[128.22588380000002,-3.578237899999976],[128.21737810000002,-3.580069699999967],[128.215861,-3.586543],[128.21261920000006,-3.586502099999962],[128.20793430000003,-3.590503099999978],[128.20602540000004,-3.600281299999949],[128.2004644000001,-3.598925799999961],[128.19761970000002,-3.602603399999964],[128.1980476000001,-3.606375],[128.194895,-3.607117399999936],[128.19349810000006,-3.609888099999978],[128.1930056000001,-3.614420099999961],[128.19552140000008,-3.617437],[128.19431960000009,-3.622762199999954],[128.18881040000008,-3.629255099999966],[128.18593850000002,-3.628729399999941],[128.1839222000001,-3.623470399999974],[128.1824137000001,-3.623121399999945],[128.153067,-3.623595],[128.14650570000003,-3.624903899999936],[128.14356610000004,-3.623566099999948],[128.13976150000008,-3.624812099999929],[128.13585510000007,-3.629412299999956],[128.1279886000001,-3.632772699999975],[128.12067560000003,-3.630980099999931],[128.11821340000006,-3.633847199999934],[128.1091202,-3.635241099999973],[128.10379220000004,-3.631840299999965],[128.10088710000002,-3.633256099999926],[128.09617480000009,-3.633060099999966],[128.0942209000001,-3.6353856],[128.0885552000001,-3.636511699999971],[128.08652150000012,-3.639219699999956],[128.0799522000001,-3.641191699999979],[128.0783226000001,-3.644994399999973],[128.07371260000002,-3.648358199999961],[128.06840610000006,-3.648528499999941],[128.06467340000006,-3.651095299999952],[128.06182220000005,-3.651074],[128.0606269000001,-3.6479529],[128.0562142000001,-3.647765799999945],[128.04966380000008,-3.642741599999965],[128.04430590000004,-3.643429199999957],[128.0394338000001,-3.648368299999959],[128.03886580000005,-3.653093099999978],[128.03431680000006,-3.661572],[128.02837390000002,-3.665780099999949],[128.02858880000008,-3.668517],[128.03276,-3.673757799999976],[128.03219410000008,-3.677606699999956],[128.03511240000012,-3.682286499999975],[128.03404110000008,-3.6842119],[128.0394741,-3.687748],[128.03955610000003,-3.689659199999937],[128.04501070000003,-3.693851],[128.0503265000001,-3.693419099999971],[128.05519550000008,-3.6968994],[128.06203760000005,-3.698055499999953],[128.06463380000002,-3.6994648],[128.0646617000001,-3.7020854],[128.0704264000001,-3.706654299999968],[128.0774451000001,-3.706340599999976],[128.0828,-3.712716599999965],[128.08587940000007,-3.715555299999949],[128.08373920000008,-3.722476599999936],[128.0849624000001,-3.722670699999981],[128.0996464000001,-3.713679099999979],[128.1056013000001,-3.700198099999966],[128.10582080000006,-3.694479899999976],[128.106976,-3.695073299999933],[128.10867240000005,-3.691864499999951],[128.1114057000001,-3.691884699999946],[128.1173463,-3.6860329],[128.1229340000001,-3.6863171],[128.13615820000007,-3.677929499999948],[128.1398861,-3.677248099999929],[128.1424316,-3.674237399999924],[128.1520180000001,-3.6686675],[128.1589782000001,-3.665858399999934],[128.1665759000001,-3.665834599999926],[128.17782720000002,-3.661053299999935],[128.1836542000001,-3.661655099999962],[128.1858615000001,-3.663359],[128.2014994000001,-3.6589319],[128.198875,-3.657784699999979],[128.19985570000006,-3.656154399999934],[128.19885060000001,-3.653586599999926],[128.19424270000002,-3.649081899999942],[128.19310130000008,-3.6448376],[128.19470840000008,-3.641240299999936],[128.2013406000001,-3.637933],[128.20444470000007,-3.637857099999962],[128.21252170000002,-3.632577199999957],[128.2219328000001,-3.633747299999925],[128.22486880000008,-3.635672199999931],[128.22412440000005,-3.634238299999936],[128.2273851000001,-3.631527199999937],[128.2309143000001,-3.630718799999954],[128.23187340000004,-3.628344499999969],[128.233606,-3.628327799999965],[128.23606930000005,-3.630517199999929],[128.2397499000001,-3.630549899999949],[128.24124,-3.6331805],[128.24012290000007,-3.634726699999931],[128.243258,-3.635425899999973],[128.24438440000006,-3.639093499999944],[128.238624,-3.641801099999952],[128.23767070000008,-3.6438144],[128.23666490000005,-3.643085299999939],[128.23419350000006,-3.644606],[128.23218840000004,-3.650030499999957],[128.22433420000004,-3.655325599999969],[128.21617240000012,-3.654129799999964],[128.2034592000001,-3.663347599999952],[128.1997569,-3.663685199999975],[128.19591790000004,-3.6704776],[128.19422250000002,-3.671002],[128.1941670000001,-3.673010199999965],[128.18901190000008,-3.6754938],[128.18652210000005,-3.683290599999964],[128.1787889000001,-3.6924588],[128.1747064000001,-3.695087399999977],[128.17174620000003,-3.701899099999935],[128.16814380000005,-3.7033239],[128.1628512000001,-3.701188499999944],[128.1547561000001,-3.707099199999959],[128.15042280000011,-3.713016299999936],[128.1477566000001,-3.720661099999973],[128.13631280000004,-3.733801399999948],[128.1302068000001,-3.745077299999934],[128.13162940000007,-3.751739799999939],[128.12961810000002,-3.755973199999971],[128.12340430000006,-3.762437699999964],[128.11289420000003,-3.766266299999927],[128.10464510000008,-3.771285599999942],[128.0956622000001,-3.783058],[128.09128040000007,-3.786065399999927],[128.08961210000007,-3.792613399999937],[128.09290510000005,-3.794351799999959],[128.09545680000008,-3.793942499999957],[128.10796990000006,-3.786332899999934],[128.11333920000004,-3.784663599999931],[128.11661290000006,-3.781384199999934],[128.12732210000001,-3.776969799999961],[128.14664040000002,-3.771581199999957],[128.1513311000001,-3.771444299999928],[128.15337180000006,-3.766914199999974],[128.15218310000012,-3.761099499999943],[128.15599970000005,-3.751852799999938],[128.15962940000009,-3.749420499999928],[128.1708582000001,-3.750645499999962],[128.1718184,-3.7487194],[128.18283670000005,-3.743968399999972],[128.186621,-3.748000799999943],[128.19192980000003,-3.745249],[128.19293630000004,-3.751482799999962],[128.1943126000001,-3.7520725],[128.19750520000002,-3.751345699999945],[128.19858940000006,-3.7495757],[128.20406720000005,-3.750153499999954],[128.20692040000006,-3.748756199999946],[128.2069322000001,-3.747161099999971],[128.20903450000003,-3.748522199999968],[128.21299670000008,-3.748340799999937],[128.21590990000004,-3.745069699999931],[128.21644420000007,-3.747057899999959],[128.21968890000005,-3.748487599999976],[128.22277140000006,-3.746832],[128.2267,-3.748376599999972],[128.232131,-3.745908799999938],[128.23247220000007,-3.744128599999954],[128.23480310000002,-3.744964899999957],[128.23771110000007,-3.743165099999942],[128.23868240000002,-3.744326899999976],[128.2400751,-3.742755799999941],[128.24128170000006,-3.7440854],[128.24104740000007,-3.737711299999944],[128.248261,-3.738453899999968],[128.25139890000003,-3.736617899999942],[128.25064910000003,-3.734855099999947],[128.25223870000002,-3.733348699999965],[128.264478,-3.729400699999928],[128.2635368000001,-3.725772199999938],[128.26629390000005,-3.715313599999945],[128.2674621000001,-3.713610599999924],[128.27147160000004,-3.712968799999942],[128.27180350000003,-3.711460199999976],[128.26943330000006,-3.708427899999947],[128.2699451000001,-3.706067299999972],[128.27449890000003,-3.700858499999981],[128.28516220000006,-3.698025599999937],[128.28849320000006,-3.695849199999941],[128.29412230000003,-3.695246699999927],[128.29574920000005,-3.696992199999954],[128.29915690000007,-3.694219799999928],[128.30096060000005,-3.679484899999977],[128.2955687000001,-3.664315599999952],[128.28284810000002,-3.650233699999944],[128.27095430000008,-3.641911899999968],[128.26670510000008,-3.640636599999937],[128.2607736000001,-3.632020499999953],[128.2568659000001,-3.630149599999925],[128.25717580000003,-3.625112299999955],[128.2612309000001,-3.618393699999956],[128.27133160000005,-3.618191599999932]]]},"properties":{"shapeName":"Kota Ambon","shapeISO":"","shapeID":"22746128B52900458084328","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.83717550000006,-1.045987199999956],[116.83360260000006,-1.050129799999979],[116.82562140000005,-1.0524102],[116.82296090000011,-1.055450699999938],[116.81764010000006,-1.054690599999958],[116.81612040000005,-1.056571699999949],[116.81269930000008,-1.054690599999958],[116.80623520000006,-1.058103299999971],[116.80433790000006,-1.053170299999977],[116.80053730000009,-1.049369699999943],[116.7811541000001,-1.039488099999971],[116.77504250000004,-1.041834199999926],[116.77317290000008,-1.045569099999966],[116.77093450000007,-1.060138399999971],[116.76537480000002,-1.070312499999943],[116.761771,-1.071033199999931],[116.7595215,-1.075622599999974],[116.749609,-1.071413299999961],[116.74200780000001,-1.071033199999931],[116.73948140000005,-1.073777699999937],[116.72946580000007,-1.066852499999925],[116.72680530000002,-1.075593899999944],[116.73149590000003,-1.086057499999924],[116.71616360000007,-1.109799499999951],[116.72376480000003,-1.120821299999932],[116.75692530000003,-1.138549399999931],[116.77529290000007,-1.187609899999927],[116.76643460000003,-1.212144499999965],[116.78014650000011,-1.224881099999948],[116.79186310000011,-1.235764299999971],[116.81566150000003,-1.240220299999976],[116.81602530000009,-1.249518199999955],[116.81446040000003,-1.249369699999932],[116.8159207000001,-1.249671399999954],[116.81409530000008,-1.251391599999977],[116.81557930000008,-1.252282199999968],[116.81361950000007,-1.2527081],[116.81309980000003,-1.256694099999947],[116.8145707000001,-1.254733299999941],[116.816235,-1.258753899999931],[116.81501910000009,-1.2587598],[116.81567010000003,-1.260031599999934],[116.81412110000008,-1.261548499999947],[116.81272980000006,-1.261344899999926],[116.81291130000011,-1.258996099999933],[116.81237310000006,-1.261473599999931],[116.81409440000004,-1.261734],[116.81212320000009,-1.263170099999968],[116.81217950000007,-1.266811599999926],[116.81070790000001,-1.266566099999977],[116.8115491000001,-1.2675237],[116.8099509000001,-1.267319699999973],[116.80527570000004,-1.273253899999929],[116.80910770000003,-1.276949299999956],[116.81083300000012,-1.282138699999962],[116.83264650000001,-1.278101199999981],[116.8425363,-1.2788442],[116.84273850000011,-1.277698199999975],[116.85431280000012,-1.274531],[116.8628384000001,-1.276824099999942],[116.87442150000004,-1.276063499999964],[116.88094540000009,-1.273504099999968],[116.88209760000007,-1.276118599999961],[116.88412870000002,-1.2766494],[116.90549120000003,-1.267539699999929],[116.90710460000003,-1.263486099999966],[116.91415470000004,-1.262675799999954],[116.93545840000002,-1.251917499999934],[116.94516370000008,-1.244801199999927],[116.95341540000004,-1.2363706],[116.97132410000006,-1.225053099999968],[116.97522190000007,-1.216026699999929],[116.9773623000001,-1.216878899999926],[116.9820999000001,-1.211938199999963],[117.0001856,-1.200716],[117.0110552000001,-1.183952899999952],[117.01701520000006,-1.166616399999953],[117.01701150000008,-1.153262799999936],[117.022483,-1.141324099999963],[117.018043,-1.13653],[117.003676,-1.130302],[116.995144,-1.131637],[116.972382,-1.125441],[116.968667,-1.12199],[116.963464,-1.120921],[116.957534,-1.112851],[116.948776,-1.108405],[116.940539,-1.10727],[116.934047,-1.108284],[116.929107,-1.106055],[116.9325275000001,-1.098126399999956],[116.92671770000004,-1.096117299999946],[116.92253710000011,-1.090416399999924],[116.91759630000001,-1.090796399999931],[116.91303550000009,-1.082435099999941],[116.9080947000001,-1.0809148],[116.9039140000001,-1.071413299999961],[116.90277390000006,-1.063432],[116.90049350000004,-1.062291799999969],[116.897453,-1.063051899999948],[116.89365240000006,-1.0607715],[116.88757140000007,-1.059631399999944],[116.88415080000004,-1.055830699999944],[116.8818705000001,-1.055450699999938],[116.86780820000001,-1.059251299999971],[116.860587,-1.058491199999935],[116.85526620000007,-1.055070599999965],[116.84652470000003,-1.053170299999977],[116.84500450000007,-1.0489896],[116.83930360000011,-1.0489896],[116.83854340000005,-1.046329199999946],[116.83717550000006,-1.045987199999956]]]},"properties":{"shapeName":"Kota Balikpapan","shapeISO":"","shapeID":"22746128B32561191561166","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[95.30284050000006,5.567893600000048],[95.30320040000004,5.568890500000066],[95.29864160000005,5.567384],[95.30284050000006,5.567893600000048]]],[[[95.36696170000005,5.608283500000027],[95.36034290000003,5.606310600000029],[95.34655870000006,5.605010900000025],[95.32696690000006,5.593302900000026],[95.32135590000007,5.586652500000071],[95.31451350000003,5.582481600000051],[95.31368410000005,5.583498200000065],[95.310533,5.579963900000052],[95.31204170000007,5.575274700000023],[95.31090850000004,5.574846200000025],[95.31168040000006,5.569271800000024],[95.30991370000004,5.561954600000035],[95.30344160000004,5.562200500000074],[95.30282690000007,5.565774200000021],[95.28965980000004,5.560139800000059],[95.28717720000009,5.555960600000049],[95.28471490000004,5.556475],[95.28440930000005,5.557439300000055],[95.28738110000006,5.55852630000004],[95.28757380000008,5.560702800000058],[95.29772710000003,5.565832900000032],[95.29707650000006,5.570466300000021],[95.29765590000005,5.565981200000067],[95.29496790000007,5.564592900000036],[95.29406160000008,5.566047400000059],[95.29605930000008,5.567645800000037],[95.29583110000004,5.569400800000039],[95.29575060000008,5.567518600000028],[95.29224890000006,5.564985600000057],[95.29159910000004,5.563635800000043],[95.28267030000006,5.55921440000003],[95.28414970000006,5.557457300000067],[95.28258430000005,5.554710700000044],[95.283665,5.553459800000041],[95.280262,5.551891900000044],[95.284142,5.552683300000069],[95.28563580000008,5.550629700000059],[95.28256120000003,5.550426500000071],[95.28199910000006,5.546527200000071],[95.28400550000003,5.542611100000045],[95.28023770000004,5.536018400000046],[95.28247130000005,5.535606800000039],[95.28496060000003,5.530661700000053],[95.29033040000007,5.531075300000055],[95.29292230000004,5.526630900000043],[95.29609360000006,5.527712200000053],[95.30092080000009,5.521479300000067],[95.30898050000008,5.519317900000033],[95.30970510000009,5.515850500000056],[95.31456790000004,5.515407],[95.31481420000006,5.517993200000035],[95.31746080000005,5.517272700000035],[95.32343680000008,5.519552400000066],[95.32656740000004,5.527041200000042],[95.330219,5.528957300000059],[95.33018520000007,5.525969900000064],[95.33654490000004,5.528806800000041],[95.34381270000006,5.528118200000051],[95.34448760000004,5.534893300000022],[95.35058710000004,5.535488200000032],[95.35406160000008,5.532997900000055],[95.35391690000006,5.538252300000067],[95.35533490000006,5.538406],[95.355221,5.542318200000068],[95.35685180000007,5.542238800000064],[95.35492010000007,5.545040400000062],[95.36058,5.544757200000049],[95.35998190000004,5.552163300000075],[95.35723810000007,5.558726700000022],[95.35321370000008,5.558242],[95.35390120000005,5.564202400000056],[95.357946,5.566552700000045],[95.35756060000006,5.571125700000039],[95.36066180000006,5.573050600000045],[95.36901730000005,5.563264],[95.37533270000006,5.565667200000064],[95.37725660000007,5.567867200000023],[95.37619550000005,5.570546700000023],[95.37210270000008,5.571396700000037],[95.37053420000007,5.575267600000075],[95.37162590000008,5.575794700000074],[95.36875790000005,5.589083600000038],[95.36443160000005,5.587139],[95.364611,5.586163400000032],[95.36407430000008,5.58819520000003],[95.36010370000008,5.585229200000072],[95.35543930000006,5.585700300000042],[95.354473,5.596329400000059],[95.35747790000005,5.603100300000051],[95.36216360000003,5.604506100000037],[95.36696170000005,5.608283500000027]]]]},"properties":{"shapeName":"Kota Banda Aceh","shapeISO":"","shapeID":"22746128B24124025632695","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[105.25895070000007,-5.485798399999965],[105.25767860000008,-5.484524799999974],[105.25704340000004,-5.485799199999974],[105.25746770000006,-5.486967],[105.25895070000007,-5.485798399999965]]],[[[105.26470810000006,-5.461800899999957],[105.26328690000008,-5.462781399999926],[105.26464620000007,-5.466274699999929],[105.26664260000007,-5.464626799999962],[105.26470810000006,-5.461800899999957]]],[[[105.34707770000006,-5.521939699999962],[105.35941930000007,-5.514499699999931],[105.35058030000005,-5.498899],[105.34572660000003,-5.4975151],[105.34059430000008,-5.493738],[105.33935340000005,-5.489958699999931],[105.33148830000005,-5.4797029],[105.32729610000007,-5.451627],[105.33080730000006,-5.448492299999941],[105.33580740000008,-5.438574399999936],[105.33897650000006,-5.4358674],[105.34200090000007,-5.419627799999944],[105.33539450000006,-5.407164099999932],[105.32476440000005,-5.406894099999931],[105.32526970000004,-5.396942199999955],[105.32170150000007,-5.3959312],[105.32167950000007,-5.388713],[105.315647,-5.387800099999936],[105.31705660000006,-5.382420099999933],[105.31563240000008,-5.375667599999929],[105.31023170000009,-5.375037499999962],[105.31014790000006,-5.373738499999945],[105.30840370000004,-5.374688699999979],[105.30811440000008,-5.361265599999967],[105.30528960000004,-5.361150399999929],[105.305687,-5.358452199999931],[105.29188620000008,-5.367837299999962],[105.29163330000006,-5.359046299999932],[105.28923510000004,-5.359442399999978],[105.28958430000006,-5.361266199999932],[105.28801150000004,-5.361909799999978],[105.28685720000004,-5.361657],[105.28805080000006,-5.360701499999948],[105.28683550000005,-5.358881],[105.28979010000006,-5.358553299999926],[105.29441770000005,-5.348400099999935],[105.29164850000006,-5.347674499999926],[105.28933030000007,-5.349087099999963],[105.28592410000005,-5.344541099999958],[105.28055570000004,-5.3442146],[105.27942550000006,-5.350444799999934],[105.275129,-5.355615099999966],[105.26702870000008,-5.355406399999936],[105.264116,-5.353391299999942],[105.26660320000008,-5.348557399999947],[105.262962,-5.341299699999979],[105.26261720000008,-5.337360599999954],[105.26177410000008,-5.336166499999933],[105.26124510000005,-5.337463699999944],[105.25317020000006,-5.335307499999942],[105.25033380000008,-5.338620499999934],[105.24758940000004,-5.338808599999936],[105.24289950000008,-5.342820599999925],[105.241657,-5.347393499999953],[105.23657870000005,-5.348883599999965],[105.23575150000005,-5.350025399999936],[105.23751840000006,-5.352423299999941],[105.23182890000004,-5.359369199999946],[105.22582260000007,-5.361845399999936],[105.224484,-5.365853499999957],[105.21946010000005,-5.365517899999929],[105.21520670000007,-5.367324499999938],[105.21480450000007,-5.369249799999977],[105.21128890000006,-5.369811],[105.211576,-5.373162199999967],[105.20951260000004,-5.373312399999975],[105.20713940000007,-5.3763531],[105.20604680000008,-5.381891499999938],[105.20800240000005,-5.387254199999973],[105.20749270000005,-5.389548399999967],[105.20311620000007,-5.387399],[105.19866760000008,-5.3896864],[105.19753420000006,-5.3850977],[105.19380030000008,-5.391182799999967],[105.19233710000009,-5.391985599999941],[105.19109520000006,-5.390955599999927],[105.19003740000005,-5.394511499999965],[105.18512040000007,-5.399415599999941],[105.18275720000008,-5.399519199999929],[105.179283,-5.4023437],[105.17569630000008,-5.408120199999928],[105.18143130000004,-5.417116699999951],[105.18427160000005,-5.419200399999966],[105.18683130000005,-5.419617799999969],[105.18988990000008,-5.416168899999946],[105.19576180000007,-5.416687199999956],[105.19536290000008,-5.420113699999945],[105.20224220000006,-5.420007299999952],[105.20459380000005,-5.421264899999926],[105.20623610000007,-5.432124899999963],[105.204787,-5.434765],[105.20590270000008,-5.441910699999937],[105.207576,-5.443532],[105.21110930000003,-5.442486299999928],[105.21277950000007,-5.445489499999951],[105.21426770000005,-5.445684899999947],[105.21404420000005,-5.447250299999951],[105.21772870000007,-5.447365699999978],[105.22116120000004,-5.451721799999973],[105.22196990000003,-5.4556719],[105.22413950000004,-5.457964799999957],[105.22402490000007,-5.463168199999927],[105.23242630000004,-5.476778499999966],[105.23307070000004,-5.480650699999956],[105.22940930000004,-5.484920899999963],[105.23140520000004,-5.485281199999974],[105.23052640000009,-5.4872],[105.23414810000008,-5.489895899999965],[105.22891750000008,-5.492219899999952],[105.22836040000004,-5.494740399999955],[105.23930270000005,-5.491982199999939],[105.25038850000004,-5.4841663],[105.25024940000009,-5.491503399999942],[105.25211450000006,-5.491623],[105.25289410000005,-5.488967899999977],[105.25383430000005,-5.482185499999957],[105.25177320000006,-5.477882199999954],[105.25299540000009,-5.477846199999931],[105.25149940000006,-5.473663],[105.25219790000006,-5.4713336],[105.25035760000009,-5.471539699999937],[105.25025060000007,-5.468991199999948],[105.25277950000009,-5.468423799999925],[105.25475450000005,-5.461209099999962],[105.26157750000004,-5.4585089],[105.26344470000004,-5.455558899999971],[105.26722570000004,-5.461437899999964],[105.26792450000005,-5.455804899999976],[105.26966570000008,-5.454026399999975],[105.26610320000003,-5.452878299999952],[105.26501040000005,-5.45387],[105.26535590000009,-5.451845299999945],[105.26804150000004,-5.4533108],[105.271347,-5.4484296],[105.27704060000008,-5.447050599999955],[105.28171,-5.447630299999958],[105.28488480000004,-5.446164099999976],[105.28701560000007,-5.447150299999976],[105.28735530000006,-5.445609099999956],[105.29079290000004,-5.445196199999941],[105.29677730000009,-5.448993499999972],[105.30552840000007,-5.451958699999977],[105.31131370000008,-5.457728399999951],[105.31647920000006,-5.4672063],[105.32026460000009,-5.4693496],[105.31906770000006,-5.4720356],[105.31760310000004,-5.471248899999978],[105.31575190000007,-5.474038],[105.317863,-5.472915799999953],[105.31550320000008,-5.476099899999952],[105.31529880000005,-5.478856899999926],[105.318763,-5.478688299999931],[105.31911310000004,-5.480710099999953],[105.32102490000005,-5.4814557],[105.32030930000008,-5.483203],[105.32133790000006,-5.484282499999949],[105.322825,-5.483483399999955],[105.32392050000004,-5.487159299999973],[105.32479810000007,-5.486836499999981],[105.322836,-5.489346099999977],[105.32519680000007,-5.490523],[105.32490640000009,-5.493485799999974],[105.32354910000004,-5.494110899999953],[105.32522340000008,-5.502234899999962],[105.32867010000007,-5.504589799999962],[105.330373,-5.503902899999957],[105.33144340000007,-5.505461499999967],[105.33478490000005,-5.505385499999932],[105.33771770000004,-5.509594],[105.342361,-5.512500299999942],[105.34211510000006,-5.514135099999976],[105.34707770000006,-5.521939699999962]]]]},"properties":{"shapeName":"Kota Bandar Lampung","shapeISO":"","shapeID":"22746128B35224920077335","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[107.62857570000006,-6.855709],[107.62500020000004,-6.848201],[107.62185680000005,-6.856038299999966],[107.618805,-6.852544],[107.61920180000004,-6.850430299999971],[107.61589060000006,-6.849563799999942],[107.61605080000004,-6.847083199999929],[107.61431890000006,-6.849308699999938],[107.61154190000008,-6.849825099999975],[107.60917670000003,-6.855239099999949],[107.60454570000007,-6.859351899999979],[107.60348520000008,-6.8559773],[107.60139920000006,-6.854393199999947],[107.60281910000003,-6.852011],[107.60353130000004,-6.843558299999927],[107.60286620000005,-6.845876399999952],[107.60081490000005,-6.842334499999936],[107.59873970000007,-6.842056499999956],[107.59859850000004,-6.843485399999963],[107.59691660000004,-6.842604299999948],[107.59759530000008,-6.836887099999956],[107.59207930000008,-6.847929699999952],[107.58959970000006,-6.849599599999976],[107.59039320000005,-6.853054699999973],[107.58874520000006,-6.853674699999942],[107.58915720000005,-6.857234699999935],[107.58638770000005,-6.859673699999973],[107.58396160000007,-6.859609299999931],[107.576706,-6.865570799999944],[107.575785,-6.867667],[107.57676710000004,-6.868579599999975],[107.57148560000007,-6.882230599999957],[107.57233680000007,-6.886198799999931],[107.57630880000005,-6.8907393],[107.56240010000005,-6.88804],[107.55606710000006,-6.888976499999956],[107.56903350000005,-6.9103134],[107.56543020000004,-6.912386699999956],[107.56457790000007,-6.915861699999937],[107.56512870000006,-6.9243795],[107.56271220000008,-6.9273398],[107.56520020000005,-6.929703299999971],[107.56432910000007,-6.932720599999925],[107.55913470000007,-6.930829399999936],[107.56040110000004,-6.927938199999971],[107.558688,-6.9261776],[107.55789170000008,-6.929813399999944],[107.55025930000005,-6.926228399999957],[107.54729010000005,-6.926714499999946],[107.54590080000008,-6.928081299999974],[107.54700530000008,-6.930006],[107.56260190000006,-6.950782699999934],[107.58481330000006,-6.962376199999937],[107.61678640000008,-6.960920199999975],[107.62654890000005,-6.964209299999936],[107.63896950000009,-6.965876299999934],[107.64942940000009,-6.964673299999959],[107.66579450000006,-6.967585299999939],[107.69432840000007,-6.969734],[107.70336160000005,-6.968046899999933],[107.715985,-6.961688099999947],[107.71565590000006,-6.956154199999958],[107.71364960000005,-6.95611],[107.71262740000009,-6.954072199999928],[107.71311250000008,-6.947535],[107.71588870000005,-6.945772399999953],[107.71785180000006,-6.939160399999935],[107.72090960000008,-6.937383199999942],[107.72580780000004,-6.928320799999938],[107.72692840000008,-6.9246742],[107.72619640000005,-6.917639],[107.72849280000008,-6.916978099999938],[107.72966430000008,-6.913244199999951],[107.73430640000004,-6.908535299999926],[107.73685320000004,-6.908761499999969],[107.73934050000008,-6.902053],[107.73817020000007,-6.899639699999966],[107.734631,-6.899497899999972],[107.72992990000006,-6.895681199999956],[107.72717550000004,-6.896382199999948],[107.72611750000004,-6.895037599999966],[107.72350320000004,-6.898557],[107.71931760000007,-6.898951199999942],[107.71909320000009,-6.901590099999964],[107.71669680000008,-6.901228299999957],[107.71518350000008,-6.903589799999963],[107.71399490000005,-6.901527899999962],[107.71461180000006,-6.890188899999941],[107.70761860000005,-6.889726],[107.704239,-6.892605099999969],[107.70450060000007,-6.898386099999925],[107.70182390000008,-6.897777499999961],[107.70063350000004,-6.901611199999934],[107.704686,-6.903239299999939],[107.70399450000008,-6.9076111],[107.7,-6.908241799999928],[107.69290250000006,-6.905419599999959],[107.69480140000007,-6.904343799999936],[107.69487670000007,-6.902681599999937],[107.69045860000006,-6.899946299999954],[107.68903950000004,-6.897091899999964],[107.68460670000007,-6.895590899999945],[107.68415150000004,-6.892888699999958],[107.68076770000005,-6.891168799999946],[107.68077150000005,-6.889416299999937],[107.67776170000008,-6.892712699999947],[107.66806470000006,-6.891013799999939],[107.67019110000007,-6.883989],[107.66532890000008,-6.890099199999952],[107.66423040000006,-6.889685899999961],[107.66588040000005,-6.885324499999967],[107.66355950000008,-6.883605099999954],[107.65650090000008,-6.894275599999958],[107.64926540000005,-6.893321899999933],[107.64898260000007,-6.891962699999965],[107.64567340000008,-6.891150799999934],[107.647315,-6.889501199999927],[107.64654260000009,-6.888498099999936],[107.64231870000003,-6.893824499999937],[107.63647520000006,-6.886034199999926],[107.63542,-6.888355699999977],[107.63255140000007,-6.889324],[107.63405290000009,-6.884755699999971],[107.629468,-6.880499199999974],[107.63090840000007,-6.872069],[107.62711580000007,-6.87113],[107.62652520000006,-6.866944099999955],[107.62537160000005,-6.866490499999941],[107.62622080000006,-6.863662899999952],[107.62336970000007,-6.864278],[107.62522250000006,-6.858348399999954],[107.62735190000006,-6.858016299999974],[107.62857570000006,-6.855709]]]},"properties":{"shapeName":"Kota Bandung","shapeISO":"","shapeID":"22746128B10669146200819","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[108.661874,-7.352496],[108.659607,-7.350726499999951],[108.65975960000009,-7.348911699999974],[108.66479090000007,-7.347532199999932],[108.66175850000008,-7.342062399999975],[108.65599830000008,-7.339000599999963],[108.65108490000006,-7.341501099999959],[108.64746860000008,-7.336957799999936],[108.64542390000008,-7.3456305],[108.636879,-7.342106199999932],[108.62651070000004,-7.345783599999947],[108.61843880000004,-7.344647799999962],[108.61757660000006,-7.3472327],[108.61904150000004,-7.349571099999935],[108.61743170000005,-7.350166699999932],[108.61462410000007,-7.349547299999927],[108.61568460000007,-7.345841299999961],[108.61221320000004,-7.343945399999939],[108.59915780000006,-7.350600499999928],[108.59404,-7.347279399999934],[108.59202580000004,-7.348067199999946],[108.59223180000004,-7.345392599999968],[108.59070590000005,-7.344521],[108.58338930000008,-7.34979],[108.57988740000008,-7.340211699999941],[108.57539370000006,-7.339345799999933],[108.57544710000008,-7.334296599999959],[108.56757390000007,-7.332205199999976],[108.56437690000007,-7.336912499999926],[108.56279760000007,-7.3333005],[108.55853270000006,-7.33507],[108.55943240000005,-7.3264916],[108.55173210000004,-7.323484399999927],[108.55073520000008,-7.325287299999957],[108.55559250000005,-7.331656799999962],[108.551433,-7.335574799999961],[108.55036810000007,-7.341848199999959],[108.54765070000008,-7.3401134],[108.54729350000008,-7.343171799999936],[108.53503240000003,-7.343601399999955],[108.53416990000005,-7.348624],[108.53156180000008,-7.349050199999965],[108.52265650000004,-7.358505199999968],[108.51143470000005,-7.357969399999945],[108.50624670000008,-7.354185],[108.50138860000004,-7.3583692],[108.50008250000008,-7.355299099999968],[108.49604090000008,-7.3544002],[108.49673690000009,-7.349046199999975],[108.48948,-7.349820099999931],[108.48492010000007,-7.3562556],[108.47763560000004,-7.357482199999936],[108.47939880000007,-7.358998399999962],[108.47767960000004,-7.361138199999971],[108.469819,-7.361824099999978],[108.47069550000003,-7.364741199999969],[108.47570350000007,-7.364666899999975],[108.47369350000008,-7.367910399999971],[108.46809760000008,-7.3716738],[108.47262240000003,-7.374854499999969],[108.46996,-7.3790224],[108.46735140000004,-7.378335799999945],[108.46939510000004,-7.381705299999965],[108.47274730000004,-7.383279199999947],[108.47288120000007,-7.385032699999954],[108.48125650000009,-7.387302299999931],[108.48382650000008,-7.391902799999968],[108.48456890000006,-7.3895771],[108.48602790000007,-7.393203799999981],[108.48862820000005,-7.3925454],[108.48819380000003,-7.390799199999947],[108.49043980000005,-7.392426199999932],[108.493852,-7.391272199999946],[108.493781,-7.394272299999955],[108.50272,-7.398712499999931],[108.50584050000003,-7.402447099999961],[108.51237030000004,-7.4054925],[108.51698380000005,-7.405545599999925],[108.518142,-7.407634199999961],[108.52481250000005,-7.4067709],[108.52666520000008,-7.412006],[108.534228,-7.416074499999979],[108.53785670000008,-7.415972099999976],[108.54041990000007,-7.4115112],[108.54422640000007,-7.412101299999961],[108.54692390000008,-7.415442799999937],[108.54666040000006,-7.418151299999977],[108.54896030000003,-7.419606899999962],[108.54905530000008,-7.421997799999929],[108.55138230000006,-7.422186499999953],[108.55504640000004,-7.4191531],[108.55515330000009,-7.4250368],[108.55903350000006,-7.425488899999948],[108.56134660000004,-7.430926299999953],[108.56567440000003,-7.429929799999968],[108.56516450000004,-7.437592099999961],[108.56974040000006,-7.437202799999966],[108.57768250000004,-7.429860899999937],[108.57530690000004,-7.423256299999935],[108.57960680000008,-7.420497599999976],[108.57972660000007,-7.417480299999966],[108.58593280000008,-7.416397699999948],[108.58676880000007,-7.413559099999929],[108.59041480000008,-7.413458399999968],[108.59085980000003,-7.411091899999974],[108.594739,-7.407236599999976],[108.59442060000003,-7.405109299999936],[108.59100380000007,-7.402799899999934],[108.59061540000005,-7.395016399999975],[108.60003050000006,-7.393713199999979],[108.59924360000008,-7.395103899999981],[108.60706830000004,-7.403213199999925],[108.61541790000007,-7.406012699999962],[108.61843850000008,-7.393237599999964],[108.62125220000007,-7.395598699999937],[108.62442330000005,-7.394722799999954],[108.62200180000008,-7.393496199999959],[108.62147670000007,-7.390422],[108.62390910000005,-7.388904599999933],[108.62655230000007,-7.389382299999966],[108.62936920000004,-7.383923599999946],[108.63117020000004,-7.383326499999953],[108.63057920000006,-7.3817799],[108.636801,-7.381438899999978],[108.63912040000008,-7.385190399999942],[108.650504,-7.387307699999951],[108.66133590000004,-7.359824199999935],[108.661874,-7.352496]]]},"properties":{"shapeName":"Kota Banjar","shapeISO":"","shapeID":"22746128B89178562251951","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[114.70435140000006,-3.513475699999958],[114.73549660000003,-3.510033699999951],[114.76183650000007,-3.509306],[114.77549820000002,-3.51183],[114.78019930000005,-3.514407099999971],[114.7858834000001,-3.514269399999932],[114.787979,-3.518731399999979],[114.7958499,-3.521462799999938],[114.80887590000009,-3.523326],[114.82144,-3.521278499999937],[114.83168450000005,-3.523102499999936],[114.83337870000003,-3.5284951],[114.83247430000006,-3.532771599999933],[114.8349584,-3.535596399999974],[114.8348334000001,-3.538260899999955],[114.84005560000003,-3.539828799999952],[114.850808,-3.5482361],[114.85730320000005,-3.549583799999937],[114.85799710000003,-3.546174],[114.8594700000001,-3.545787399999938],[114.860334,-3.549941099999955],[114.86127980000003,-3.549029],[114.863365,-3.5509529],[114.86806740000009,-3.549045299999932],[114.86973820000003,-3.552012],[114.86919210000008,-3.554765699999962],[114.87726020000002,-3.557743099999925],[114.87859150000008,-3.554264099999955],[114.8833998,-3.549885299999971],[114.88979930000005,-3.550974],[114.88899980000008,-3.553886499999976],[114.89208360000009,-3.5563992],[114.89031320000004,-3.559540099999936],[114.890936,-3.5613857],[114.89720330000011,-3.5691583],[114.8939673000001,-3.574202799999966],[114.89868390000004,-3.575851299999954],[114.90587650000009,-3.581039199999964],[114.90536960000009,-3.583911],[114.90814880000005,-3.588117899999929],[114.91761910000002,-3.596398399999941],[114.92004610000004,-3.595912699999928],[114.9217205000001,-3.592222199999981],[114.92280390000008,-3.582227699999976],[114.91872220000005,-3.577388799999937],[114.91779140000006,-3.573247899999956],[114.9287968000001,-3.557998699999928],[114.93095210000001,-3.552402499999971],[114.93183660000011,-3.540448499999968],[114.92482270000005,-3.5423818],[114.92334320000009,-3.541434899999956],[114.9300455,-3.505479299999934],[114.93008,-3.494216599999959],[114.91507050000007,-3.4685943],[114.926587,-3.470923299999924],[114.9300756,-3.446469099999945],[114.90438530000006,-3.443943099999956],[114.89650960000006,-3.442035099999941],[114.89317580000011,-3.439679199999944],[114.89020360000006,-3.444554899999957],[114.886292,-3.44373],[114.8836993000001,-3.438553399999932],[114.88129010000011,-3.439005299999963],[114.87725060000002,-3.435914799999978],[114.86767740000005,-3.435286599999927],[114.868511,-3.434049899999934],[114.86683830000004,-3.432273399999929],[114.86700540000004,-3.429059],[114.86157010000011,-3.4226688],[114.85955380000007,-3.422549899999979],[114.85640620000004,-3.428809299999955],[114.85527280000008,-3.426956899999936],[114.849714,-3.4247827],[114.84919780000007,-3.4260549],[114.83851720000007,-3.4247377],[114.82474170000012,-3.425195099999939],[114.82353890000002,-3.421768799999938],[114.81456720000006,-3.418086],[114.8097054000001,-3.419382599999949],[114.8068009000001,-3.418504],[114.80312210000011,-3.414746299999933],[114.80093420000003,-3.414308399999925],[114.79860760000008,-3.409401199999934],[114.79559230000007,-3.406746299999952],[114.7408613,-3.371314799999936],[114.72414050000009,-3.406255499999929],[114.72354580000001,-3.412828699999977],[114.719527,-3.415537699999959],[114.71636510000008,-3.422468],[114.71887320000008,-3.425991499999952],[114.70500660000005,-3.436807199999976],[114.70776240000009,-3.440994799999942],[114.7069629,-3.444336399999941],[114.69838210000012,-3.458940899999959],[114.69642970000007,-3.467805799999951],[114.69661970000004,-3.474666399999933],[114.7002576000001,-3.484343699999954],[114.70435140000006,-3.513475699999958]]]},"properties":{"shapeName":"Kota Banjar Baru","shapeISO":"","shapeID":"22746128B44418327230080","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[114.6386089,-3.275600399999973],[114.63508030000003,-3.280500399999937],[114.62508960000002,-3.285078],[114.621664,-3.284509699999944],[114.61439560000008,-3.279697499999941],[114.6060973000001,-3.280409299999974],[114.60621250000008,-3.286306099999933],[114.60237540000003,-3.288994699999932],[114.59693030000005,-3.286455499999931],[114.59476640000003,-3.279575299999976],[114.584267,-3.273092799999972],[114.5779295000001,-3.276628899999935],[114.5763677000001,-3.270034899999928],[114.56914940000001,-3.267227299999945],[114.56655780000006,-3.270967799999937],[114.56601520000004,-3.299161899999945],[114.56093030000011,-3.316257499999949],[114.54833030000009,-3.336027099999967],[114.52194820000011,-3.363251399999967],[114.52933210000003,-3.366695],[114.52895820000003,-3.368643899999938],[114.53787510000006,-3.369267499999978],[114.54501430000005,-3.373581599999966],[114.54902080000011,-3.374026499999957],[114.55472040000006,-3.374085599999944],[114.56987190000007,-3.366779299999962],[114.5666218,-3.373579],[114.56956670000011,-3.375259399999948],[114.57705120000003,-3.375740099999973],[114.57853890000001,-3.378715499999942],[114.58614920000002,-3.382139199999926],[114.59573000000012,-3.36679],[114.60562980000009,-3.369880299999977],[114.60781170000007,-3.372350399999959],[114.61594960000002,-3.3684292],[114.62020970000003,-3.363300899999956],[114.624136,-3.361225099999956],[114.62504030000002,-3.350639899999976],[114.6327007000001,-3.34803],[114.63290210000002,-3.346519499999943],[114.64022250000005,-3.345510499999932],[114.64079860000004,-3.346506099999942],[114.64597890000005,-3.344059],[114.65702250000004,-3.348350499999981],[114.65809060000004,-3.347391099999925],[114.65702250000004,-3.34095],[114.65846060000001,-3.340148899999974],[114.65958980000005,-3.335596099999975],[114.65301320000003,-3.333562899999947],[114.64566990000003,-3.326206199999945],[114.64233940000008,-3.3260797],[114.63695610000002,-3.322925399999974],[114.62820560000011,-3.312353099999939],[114.63985250000007,-3.288269],[114.6386089,-3.275600399999973]]]},"properties":{"shapeName":"Kota Banjarmasin","shapeISO":"","shapeID":"22746128B80301207684676","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[115.6672536000001,-4.744462],[115.67400710000004,-4.740978499999926],[115.68315810000001,-4.727444799999944],[115.68227820000004,-4.7232918],[115.67950380000002,-4.723473399999932],[115.67483840000011,-4.729201599999953],[115.6672109000001,-4.7304368],[115.66481750000003,-4.741872099999966],[115.66482440000004,-4.744123],[115.6672536000001,-4.744462]]],[[[115.77552560000004,-4.669434399999943],[115.7769674000001,-4.6649605],[115.77545780000003,-4.662639699999943],[115.77393240000004,-4.669351699999936],[115.77552560000004,-4.669434399999943]]],[[[115.77170850000005,-4.665430899999933],[115.7740248,-4.661997699999972],[115.7716349000001,-4.661913599999934],[115.7645371000001,-4.666137799999944],[115.76302340000007,-4.666135099999963],[115.76281590000008,-4.662545499999965],[115.75960050000003,-4.662555399999974],[115.75728560000005,-4.667084199999977],[115.74891610000009,-4.6735562],[115.72551140000007,-4.687003599999969],[115.72043710000003,-4.692503099999954],[115.71859630000006,-4.7038781],[115.7353422000001,-4.703425799999934],[115.73774970000011,-4.702080899999942],[115.76541140000006,-4.678722299999947],[115.76794540000003,-4.6749693],[115.768116,-4.669661299999973],[115.77170850000005,-4.665430899999933]]],[[[115.77902230000007,-4.661156499999947],[115.78223520000006,-4.660344],[115.78209460000005,-4.658204299999966],[115.77780610000002,-4.657816199999957],[115.77714690000005,-4.661296],[115.77902230000007,-4.661156499999947]]],[[[115.77513030000011,-4.659028199999966],[115.77432020000003,-4.657024399999955],[115.77137520000008,-4.657836],[115.77513030000011,-4.659028199999966]]],[[[115.78824150000003,-4.6529688],[115.78674990000002,-4.647221699999932],[115.78367670000011,-4.649906399999963],[115.78128120000008,-4.655130299999939],[115.78356380000002,-4.656728499999929],[115.78451070000006,-4.659668299999964],[115.79280790000007,-4.656566199999929],[115.79293730000006,-4.655094599999927],[115.78824150000003,-4.6529688]]],[[[115.69020740000008,-4.641984],[115.69127060000005,-4.639171899999951],[115.68645,-4.639989199999945],[115.68712560000006,-4.641859699999941],[115.69020740000008,-4.641984]]],[[[115.68510530000003,-4.638388199999952],[115.684161,-4.636251],[115.6828220000001,-4.636522599999978],[115.68336580000005,-4.639062299999978],[115.68510530000003,-4.638388199999952]]],[[[115.69636690000004,-4.640895099999966],[115.69970760000001,-4.638076],[115.70917770000005,-4.624403799999925],[115.70983600000011,-4.620656599999961],[115.7079533000001,-4.6183885],[115.70407060000002,-4.619203],[115.68642580000005,-4.632097599999952],[115.68697110000005,-4.635172399999931],[115.69368670000006,-4.640635799999927],[115.69636690000004,-4.640895099999966]]],[[[115.80236230000003,-4.351055499999973],[115.80376230000002,-4.3487589],[115.80292780000002,-4.346654899999976],[115.801029,-4.346455699999979],[115.80032410000001,-4.350715799999932],[115.80236230000003,-4.351055499999973]]],[[[115.8066477000001,-4.343212599999958],[115.8065117000001,-4.340885499999956],[115.80447310000011,-4.340770199999952],[115.80446920000009,-4.343265199999962],[115.8066477000001,-4.343212599999958]]],[[[115.77492010000003,-4.344086799999957],[115.77542690000007,-4.3415646],[115.77261120000003,-4.338476199999945],[115.77107220000005,-4.340324],[115.77145860000007,-4.343156099999931],[115.77302010000005,-4.344644399999936],[115.77492010000003,-4.344086799999957]]],[[[115.805845,-4.338585599999931],[115.80607120000002,-4.336847899999952],[115.80411680000009,-4.336508299999934],[115.80386210000006,-4.338610499999959],[115.805845,-4.338585599999931]]],[[[115.80174440000008,-4.335551399999929],[115.80180360000008,-4.333448899999951],[115.80046260000006,-4.333699099999933],[115.8000138000001,-4.334988],[115.80174440000008,-4.335551399999929]]],[[[115.774153,-4.334890399999949],[115.774267,-4.333460799999955],[115.77211760000012,-4.332784499999946],[115.77189120000003,-4.334690399999943],[115.774153,-4.334890399999949]]],[[[115.78813900000011,-4.325260499999956],[115.78336620000005,-4.322042099999976],[115.7808897000001,-4.322050099999956],[115.77472060000002,-4.328823],[115.7753997000001,-4.332625299999961],[115.78016630000002,-4.333941399999958],[115.78332860000012,-4.339828199999943],[115.78789960000006,-4.339528099999939],[115.78968330000009,-4.331533],[115.792717,-4.327147899999943],[115.79213780000009,-4.324772099999961],[115.78813900000011,-4.325260499999956]]],[[[115.7896664000001,-4.308647199999939],[115.7851147,-4.308443699999941],[115.78393740000001,-4.311189199999944],[115.7860012000001,-4.312986699999954],[115.79222840000011,-4.313276899999948],[115.7952772000001,-4.310226],[115.79374440000004,-4.308233199999961],[115.7896664000001,-4.308647199999939]]],[[[116.11959030000003,-4.230771299999958],[116.12226710000004,-4.224274799999932],[116.1169245000001,-4.227478399999939],[116.11959030000003,-4.230771299999958]]],[[[116.19641320000005,-4.089471],[116.19382050000002,-4.0887908],[116.19737650000002,-4.090294299999925],[116.19641320000005,-4.089471]]],[[[116.208462,-4.085294699999963],[116.20388570000011,-4.0856257],[116.19974910000008,-4.088617799999952],[116.2009025000001,-4.091167899999959],[116.20579750000002,-4.094612899999959],[116.20649560000004,-4.102122099999974],[116.20821740000008,-4.101323399999956],[116.20831970000006,-4.0978145],[116.21360880000009,-4.096256],[116.21237930000007,-4.095197799999937],[116.21150210000008,-4.0872997],[116.208462,-4.085294699999963]]],[[[116.0455088000001,-4.076674099999934],[116.04220840000005,-4.076969399999939],[116.043561,-4.082272499999931],[116.0412894000001,-4.087096599999938],[116.04426130000002,-4.0917631],[116.04425480000009,-4.094843899999944],[116.04238140000007,-4.096552699999961],[116.04421090000005,-4.098073099999965],[116.04632680000009,-4.096395599999937],[116.04609610000011,-4.090819899999929],[116.04914150000002,-4.088876099999936],[116.04709880000007,-4.077552199999957],[116.0455088000001,-4.076674099999934]]],[[[116.0488395000001,-4.068754],[116.04823410000006,-4.063806599999964],[116.047591,-4.068338099999949],[116.04523390000008,-4.069291],[116.04578430000004,-4.075024599999949],[116.04942170000004,-4.071245799999929],[116.0488395000001,-4.068754]]],[[[116.1784106,-4.043823499999974],[116.17007030000002,-4.045726199999933],[116.1672,-4.0481276],[116.16693850000001,-4.0500618],[116.16282650000005,-4.052297199999941],[116.16334070000005,-4.057032599999957],[116.16529780000008,-4.057567399999925],[116.17862410000009,-4.050314799999967],[116.18079740000007,-4.045911599999954],[116.1784106,-4.043823499999974]]],[[[116.19864740000003,-4.025701899999945],[116.1972819,-4.025142199999948],[116.2000485000001,-4.029525399999955],[116.20017970000004,-4.032517899999959],[116.20393880000006,-4.033753199999978],[116.20321500000011,-4.036472299999957],[116.20671980000009,-4.035341099999926],[116.20629970000005,-4.037719899999956],[116.20978680000007,-4.034394299999974],[116.20944520000012,-4.031539399999929],[116.21104280000009,-4.032131499999934],[116.2150726000001,-4.030310799999938],[116.21331090000001,-4.027772],[116.2103677,-4.027884599999936],[116.208604,-4.026383099999975],[116.19864740000003,-4.025701899999945]]],[[[116.30647250000004,-3.920793899999978],[116.30756860000008,-3.919532699999934],[116.305998,-3.919360099999949],[116.30647250000004,-3.920793899999978]]],[[[116.31095760000005,-3.893470299999933],[116.30979350000007,-3.894334],[116.31265480000002,-3.895084199999928],[116.31400180000003,-3.898333799999932],[116.31272530000001,-3.894219599999929],[116.31095760000005,-3.893470299999933]]],[[[116.29610120000007,-3.846744799999954],[116.29574250000007,-3.844078599999932],[116.29464430000007,-3.845627899999954],[116.29610120000007,-3.846744799999954]]],[[[116.32133440000007,-3.815827199999944],[116.31418970000004,-3.819417499999929],[116.3118316,-3.824104299999931],[116.30957120000005,-3.825157199999978],[116.3118684000001,-3.827198199999941],[116.31111720000001,-3.829571099999953],[116.3074411,-3.829811599999971],[116.30351180000002,-3.836489099999937],[116.30040180000003,-3.837080399999934],[116.29665510000007,-3.843399099999942],[116.2972658000001,-3.846402799999964],[116.30557510000006,-3.850138199999947],[116.30796160000011,-3.845970099999931],[116.31424940000011,-3.844221299999958],[116.315891,-3.834057599999937],[116.31502610000007,-3.832871599999976],[116.31694570000002,-3.831257699999981],[116.31810810000002,-3.827002799999946],[116.32012010000005,-3.827142399999957],[116.32163610000009,-3.825049399999955],[116.320103,-3.822814499999936],[116.32133440000007,-3.815827199999944]]],[[[116.31533310000009,-3.785677199999952],[116.31642550000004,-3.783716599999934],[116.31399970000007,-3.782516599999951],[116.3133289000001,-3.784145],[116.31533310000009,-3.785677199999952]]],[[[116.3375933000001,-3.723852399999942],[116.33825750000005,-3.722441799999956],[116.33657240000002,-3.722300099999927],[116.3375933000001,-3.723852399999942]]],[[[116.34427820000008,-3.703217599999959],[116.3417813000001,-3.703794199999948],[116.3433103000001,-3.705870599999969],[116.34289520000004,-3.709011099999941],[116.34547830000008,-3.7114043],[116.3484347000001,-3.707422399999928],[116.34427820000008,-3.703217599999959]]],[[[116.38209760000007,-3.669512399999974],[116.3799398000001,-3.669060399999978],[116.37967030000004,-3.6728826],[116.38196240000002,-3.672141699999941],[116.38209760000007,-3.669512399999974]]],[[[116.38555450000001,-3.658443499999976],[116.38703070000008,-3.655987599999946],[116.38528380000002,-3.654053099999942],[116.38325760000009,-3.657031399999937],[116.38555450000001,-3.658443499999976]]],[[[116.3406255000001,-3.618023799999946],[116.34308990000011,-3.616843099999926],[116.34539130000007,-3.610657599999968],[116.35090800000012,-3.603287099999932],[116.350164,-3.601213299999927],[116.34386770000003,-3.596674199999939],[116.33246870000005,-3.591609499999947],[116.33422560000008,-3.595253499999956],[116.33521280000002,-3.615111099999979],[116.33763390000001,-3.617872199999965],[116.3406255000001,-3.618023799999946]]],[[[116.30764660000011,-3.590821499999947],[116.306579,-3.5902532],[116.3065117000001,-3.592144799999971],[116.30764660000011,-3.590821499999947]]],[[[116.29928160000009,-3.507441399999948],[116.30232060000003,-3.506582499999979],[116.29496820000008,-3.506747299999972],[116.29928160000009,-3.507441399999948]]],[[[116.3846946000001,-3.375132599999972],[116.38458070000001,-3.373457899999948],[116.38251120000007,-3.374871299999938],[116.3846946000001,-3.375132599999972]]],[[[116.3702565000001,-3.366968],[116.36918490000005,-3.369399299999941],[116.37147740000012,-3.371126499999946],[116.37231370000006,-3.369095399999935],[116.3702565000001,-3.366968]]],[[[116.41050740000003,-3.361709599999926],[116.4090513000001,-3.360307099999943],[116.40637440000012,-3.3665189],[116.4095549000001,-3.370575299999928],[116.404509,-3.375265399999932],[116.40588090000006,-3.380647499999952],[116.40384740000002,-3.382928799999945],[116.3998477,-3.383302299999968],[116.400379,-3.389208199999928],[116.39850700000011,-3.391017799999929],[116.3985378000001,-3.399734199999955],[116.39325560000009,-3.405647299999941],[116.39098740000009,-3.412501799999973],[116.38526920000004,-3.417598299999952],[116.37467130000005,-3.422880199999952],[116.36424960000011,-3.430616899999961],[116.35409120000008,-3.440238299999976],[116.34523890000003,-3.451592699999935],[116.34438610000007,-3.465407299999924],[116.33728990000009,-3.482178899999951],[116.3331521,-3.504433499999948],[116.32184430000007,-3.528373599999952],[116.31920490000005,-3.541622099999927],[116.31262420000007,-3.5548428],[116.31253020000008,-3.557287899999949],[116.3142808,-3.558771099999944],[116.32399070000008,-3.556426099999953],[116.33339890000002,-3.558712],[116.33964560000004,-3.563118],[116.34321860000011,-3.568635099999938],[116.3470158,-3.567022599999973],[116.34877070000005,-3.567349599999943],[116.3500295,-3.565785399999925],[116.3514411000001,-3.568138499999975],[116.35260070000004,-3.567560299999968],[116.3512273,-3.568464],[116.35017460000006,-3.566246899999953],[116.34921330000009,-3.567766],[116.34719920000009,-3.567574599999944],[116.34369260000005,-3.570107],[116.34884120000004,-3.5850627],[116.34800130000008,-3.593871899999954],[116.35472820000007,-3.602527899999927],[116.35430950000011,-3.6058731],[116.34989220000011,-3.610528199999976],[116.3517915000001,-3.612707299999954],[116.35368320000009,-3.624405099999933],[116.3586342000001,-3.636066299999925],[116.36028970000007,-3.645686299999966],[116.36182450000001,-3.646807699999954],[116.36164530000008,-3.653002399999934],[116.3677384,-3.650836699999957],[116.37063020000005,-3.651660899999968],[116.37371570000005,-3.649581299999966],[116.37876690000007,-3.652121399999942],[116.3822867,-3.650242299999945],[116.3843849000001,-3.6470942],[116.38331750000009,-3.642466599999977],[116.38434970000003,-3.638265399999966],[116.38305380000008,-3.6382933],[116.386694,-3.627485099999944],[116.39055750000011,-3.625654199999929],[116.398879,-3.627140499999939],[116.39870940000003,-3.614087499999926],[116.402487,-3.607076499999948],[116.40157380000005,-3.6027704],[116.40312070000004,-3.595088799999928],[116.40251410000008,-3.589628799999957],[116.40820050000002,-3.570162699999969],[116.40885330000003,-3.557270299999971],[116.4055078,-3.553961199999947],[116.4079666,-3.526787099999979],[116.40993910000009,-3.520949099999939],[116.41523860000007,-3.512839299999939],[116.42007180000007,-3.492098099999964],[116.420128,-3.463545099999976],[116.42256960000009,-3.45207],[116.43475390000003,-3.4216783],[116.43247680000002,-3.416077199999961],[116.43148750000012,-3.407991599999946],[116.43344030000003,-3.404299699999967],[116.431854,-3.402666199999942],[116.43554740000002,-3.390605499999936],[116.43537350000008,-3.384595499999932],[116.43138350000004,-3.367549599999961],[116.42874260000008,-3.362553],[116.42164560000003,-3.3650249],[116.412954,-3.361148899999932],[116.41050740000003,-3.361709599999926]]],[[[116.1634074000001,-3.285205799999972],[116.16465760000006,-3.284455699999967],[116.16304810000008,-3.283881299999962],[116.1634074000001,-3.285205799999972]]],[[[116.18607650000001,-3.234417],[116.18317320000006,-3.235998599999959],[116.181724,-3.241404699999975],[116.18277880000005,-3.243088199999931],[116.1843692000001,-3.242948],[116.18693890000009,-3.239393299999961],[116.18607650000001,-3.234417]]],[[[116.25975490000008,-3.212041399999976],[116.25825250000003,-3.209729599999946],[116.25325540000006,-3.211833499999955],[116.2481087000001,-3.215508899999975],[116.24682830000006,-3.218767599999978],[116.2444263000001,-3.218910199999925],[116.23967610000011,-3.2233662],[116.2360781000001,-3.223919699999954],[116.22884140000008,-3.234725099999935],[116.22631010000009,-3.236979299999973],[116.22433560000002,-3.236273599999947],[116.22093130000007,-3.238558099999977],[116.21883430000003,-3.241038399999979],[116.219672,-3.242272],[116.21746320000011,-3.242595399999971],[116.21749950000003,-3.244636899999932],[116.21572220000007,-3.244550899999979],[116.21291740000004,-3.247266],[116.21182080000005,-3.2465972],[116.21153580000009,-3.248477799999932],[116.208045,-3.2479638],[116.2047639000001,-3.252721199999939],[116.19528490000005,-3.2585217],[116.1841687000001,-3.269157099999973],[116.16970090000007,-3.278134399999942],[116.1685778000001,-3.281177099999979],[116.16943220000007,-3.281268299999965],[116.16987480000012,-3.279414199999962],[116.17188130000011,-3.279045],[116.17352930000004,-3.281090799999959],[116.172568,-3.282655],[116.17158370000004,-3.279479],[116.16926440000009,-3.2818652],[116.16830320000008,-3.281312599999978],[116.16811640000003,-3.279722199999981],[116.166541,-3.280805499999929],[116.16585780000003,-3.284769799999935],[116.16788340000005,-3.286622299999976],[116.16676960000007,-3.289244699999927],[116.16437380000002,-3.290219699999966],[116.1671358000001,-3.290303399999971],[116.16664760000003,-3.293921399999931],[116.16666260000011,-3.290764399999944],[116.1638094000001,-3.290164899999979],[116.16618210000001,-3.289217099999973],[116.1671510000001,-3.286594499999978],[116.1622867000001,-3.2850161],[116.1631456,-3.283461199999977],[116.165816,-3.284024299999942],[116.165198,-3.282413599999927],[116.15816330000007,-3.285002399999939],[116.15702660000011,-3.287553899999978],[116.16044480000005,-3.290632499999958],[116.1604066000001,-3.292884899999933],[116.1629167000001,-3.295175699999959],[116.1619707000001,-3.298585199999934],[116.16217670000003,-3.294777],[116.15999450000004,-3.293255399999964],[116.15939960000003,-3.2902878],[116.15601560000005,-3.288021299999969],[116.14346400000011,-3.293583199999944],[116.14282070000002,-3.296171699999945],[116.14606320000007,-3.300697499999956],[116.14229030000001,-3.2964445],[116.13874550000003,-3.301871299999959],[116.12341470000001,-3.298726899999963],[116.11887180000008,-3.301698399999964],[116.11423730000001,-3.307532699999967],[116.1133142000001,-3.315437199999963],[116.1050404,-3.340546199999949],[116.11208150000004,-3.3455263],[116.12006960000008,-3.345524499999954],[116.12371650000011,-3.347219399999972],[116.12739380000005,-3.347087],[116.12618850000001,-3.343304699999976],[116.12686750000012,-3.341758399999947],[116.12813380000011,-3.341117299999951],[116.13040750000005,-3.342213899999933],[116.13146030000007,-3.341319299999952],[116.1294004,-3.338305099999957],[116.12992680000002,-3.335257099999978],[116.127287,-3.335598499999946],[116.12896560000002,-3.334297399999969],[116.13055240000006,-3.3355019],[116.12987350000003,-3.338269399999945],[116.1320098000001,-3.342124799999965],[116.13034630000004,-3.343028],[116.1274168000001,-3.341523699999925],[116.12689030000001,-3.343368599999962],[116.13052950000008,-3.352499199999954],[116.12769890000004,-3.348127499999975],[116.12368590000005,-3.347852499999931],[116.11949740000011,-3.346220499999959],[116.11385150000001,-3.346893799999975],[116.103918,-3.342768899999953],[116.1008524,-3.343854399999941],[116.098042,-3.349430799999936],[116.10050760000001,-3.351875],[116.10577200000012,-3.353146199999969],[116.110937,-3.360532399999954],[116.11620130000006,-3.362256],[116.12039770000001,-3.366466099999968],[116.11987870000007,-3.372137499999951],[116.11804020000011,-3.373393199999953],[116.11446940000008,-3.372259199999974],[116.11585800000012,-3.377977499999929],[116.111204,-3.381202599999938],[116.11455350000006,-3.381929299999967],[116.11318770000003,-3.384587599999975],[116.11375220000002,-3.388912],[116.11504920000004,-3.388614699999948],[116.11534690000008,-3.386036899999965],[116.11605650000001,-3.385295799999938],[116.12047390000009,-3.3862044],[116.12338840000007,-3.389201299999968],[116.12373930000001,-3.393163699999945],[116.12232010000002,-3.3938409],[116.12168710000003,-3.392374899999936],[116.11984830000006,-3.393938099999957],[116.12151150000011,-3.391895299999931],[116.12238120000006,-3.393198699999971],[116.1233959000001,-3.392475899999965],[116.12304510000001,-3.389689399999952],[116.11953540000002,-3.386321199999941],[116.11566730000004,-3.385738699999933],[116.11552250000011,-3.388823199999933],[116.11357690000011,-3.389264699999956],[116.11257750000004,-3.384632199999942],[116.113737,-3.381874299999936],[116.11036490000004,-3.381183699999951],[116.11452280000003,-3.377894799999979],[116.11354630000005,-3.372140699999932],[116.1190626,-3.372218099999941],[116.11929140000007,-3.366103299999963],[116.114996,-3.362634799999967],[116.1100977000001,-3.3610835],[116.10570330000007,-3.3547744],[116.10381350000011,-3.354628],[116.08936440000002,-3.391489399999955],[116.07985070000007,-3.406827],[116.07771080000009,-3.416016499999955],[116.07895440000004,-3.417708499999947],[116.0843331000001,-3.417677499999968],[116.08415,-3.416202799999951],[116.08231130000001,-3.415712599999949],[116.08111330000008,-3.409732099999928],[116.08187650000002,-3.408846399999959],[116.084356,-3.407455699999957],[116.08653030000005,-3.407575399999928],[116.08894120000002,-3.409775799999977],[116.09071130000007,-3.4095061],[116.09164210000006,-3.409823599999925],[116.09248890000003,-3.4111903],[116.09211510000011,-3.4132886],[116.08890320000012,-3.414181099999951],[116.0898264000001,-3.415783099999942],[116.08512650000011,-3.424082699999929],[116.09190160000003,-3.427870299999938],[116.09303820000002,-3.425022],[116.09364860000005,-3.424841599999979],[116.09737940000002,-3.4275318],[116.09480840000003,-3.428379599999971],[116.09648690000006,-3.427205299999969],[116.09341210000002,-3.425040399999943],[116.09287050000012,-3.427473199999952],[116.09171830000003,-3.428394799999978],[116.08443220000004,-3.424434799999972],[116.08917030000009,-3.415592499999946],[116.08859020000011,-3.413846099999944],[116.0915506,-3.413152399999944],[116.0920082,-3.4117507],[116.09124540000005,-3.4098956],[116.08907850000003,-3.409974899999952],[116.08820120000007,-3.409666499999958],[116.08548510000003,-3.407719099999952],[116.08418050000012,-3.407754],[116.08279950000008,-3.4084492],[116.08164750000003,-3.410004],[116.08262410000009,-3.415378199999964],[116.0849588000001,-3.416429699999981],[116.08466890000011,-3.418066799999963],[116.07652080000003,-3.4185459],[116.07157530000006,-3.428652],[116.069379,-3.439632599999925],[116.06010170000002,-3.454873599999928],[116.0460888,-3.468758499999979],[116.0393193000001,-3.480974199999935],[116.0420127000001,-3.493489],[116.04014940000002,-3.519273599999963],[116.04672190000008,-3.531918499999961],[116.04596620000007,-3.542876899999953],[116.0470590000001,-3.543621499999972],[116.04574510000009,-3.544045899999958],[116.04579390000004,-3.546780699999942],[116.0425067000001,-3.553116899999964],[116.03814780000005,-3.554665599999964],[116.03568180000002,-3.557816799999955],[116.04056460000004,-3.560758199999952],[116.04117320000012,-3.563075799999979],[116.03661410000007,-3.582101699999953],[116.0337565000001,-3.586853499999961],[116.03075640000009,-3.588854099999935],[116.02872900000011,-3.595195899999965],[116.01830640000003,-3.601648699999942],[116.01452060000008,-3.609149199999933],[116.00997510000002,-3.6120595],[116.00888970000005,-3.6187878],[116.01062630000001,-3.627841599999954],[116.00698530000011,-3.629027899999926],[116.00728060000006,-3.630255199999965],[116.00479430000007,-3.6322277],[116.00556360000007,-3.634173499999974],[116.00235970000006,-3.637984599999925],[116.00311750000003,-3.639326099999948],[116.00490420000006,-3.638074899999935],[116.00672980000002,-3.6400362],[116.01022090000004,-3.640217299999961],[116.01174530000003,-3.6433138],[116.00874930000009,-3.645358499999929],[116.01229510000007,-3.653988399999946],[116.00775810000005,-3.660615199999938],[116.0074254000001,-3.666245799999956],[116.00884520000011,-3.670289399999945],[116.01114340000004,-3.672075799999959],[116.00949790000004,-3.6729174],[116.0057488000001,-3.68179],[116.01407080000001,-3.690556299999969],[116.01301820000003,-3.694388199999935],[116.01595860000009,-3.697971099999961],[116.01508590000003,-3.6990347],[116.0164152000001,-3.706036799999936],[116.0211154000001,-3.707117699999969],[116.025525,-3.720893799999942],[116.02581020000002,-3.726856],[116.02422320000005,-3.729567199999963],[116.03060470000003,-3.7362726],[116.03236630000004,-3.740944399999933],[116.04428380000002,-3.754009899999971],[116.05023620000009,-3.759937099999945],[116.052941,-3.760786199999927],[116.05301220000001,-3.7632896],[116.07262130000004,-3.79539],[116.08136600000012,-3.825063],[116.08165780000002,-3.833398299999942],[116.07722720000004,-3.837574299999972],[116.07872610000004,-3.840608599999939],[116.07408010000006,-3.847756499999946],[116.07706980000012,-3.849506799999972],[116.07665770000006,-3.852192899999977],[116.0755898000001,-3.851540499999942],[116.0761314,-3.849650499999939],[116.0720497000001,-3.847632799999928],[116.06862130000002,-3.848490499999969],[116.06498880000004,-3.846940599999925],[116.0622029000001,-3.849252499999977],[116.06251480000003,-3.851549],[116.06511030000001,-3.854078199999947],[116.0640499000001,-3.856853599999965],[116.06060510000009,-3.858507599999939],[116.06248920000007,-3.859255799999971],[116.06396410000002,-3.863346299999932],[116.05984420000004,-3.873405699999978],[116.0665404,-3.875756199999955],[116.066474,-3.880451699999981],[116.06448220000004,-3.886594299999956],[116.06513890000008,-3.894859599999961],[116.05715010000006,-3.903228899999931],[116.05733920000011,-3.905182599999932],[116.05925360000003,-3.906525299999942],[116.0640509000001,-3.903589699999941],[116.07101680000005,-3.908137799999963],[116.07260620000011,-3.907682699999953],[116.07743040000003,-3.917388099999926],[116.07855010000003,-3.925454599999966],[116.07720170000005,-3.931793399999947],[116.07347020000009,-3.936516299999937],[116.07519310000009,-3.939392099999964],[116.0817009000001,-3.937391099999957],[116.08147970000005,-3.934568599999977],[116.08525630000008,-3.932311399999946],[116.090902,-3.934434299999964],[116.09332050000012,-3.937612],[116.09615880000001,-3.936828099999957],[116.09683780000012,-3.935426699999937],[116.0981349000001,-3.935527599999944],[116.10217850000004,-3.938499],[116.09966820000011,-3.939518499999963],[116.10357480000005,-3.940174],[116.1050547000001,-3.943061199999931],[116.1034297000001,-3.943448399999966],[116.10410880000006,-3.946895599999948],[116.101591,-3.946503899999925],[116.10365080000008,-3.946415699999932],[116.10311680000007,-3.943122399999936],[116.10429190000002,-3.942336699999942],[116.10334560000001,-3.940716499999951],[116.09929450000004,-3.939961299999936],[116.099325,-3.938812499999926],[116.101423,-3.938588699999968],[116.10122480000007,-3.937819599999955],[116.09726520000004,-3.935770899999966],[116.0961665000001,-3.9374884],[116.093603,-3.938263599999971],[116.09051310000007,-3.935112299999957],[116.0855461000001,-3.9330987],[116.0826469000001,-3.93438],[116.08198330000005,-3.9378709],[116.07715380000002,-3.940081699999951],[116.074903,-3.940024899999969],[116.072203,-3.936818],[116.07173240000009,-3.938719099999958],[116.06854120000003,-3.937305299999935],[116.0669878000001,-3.943231199999957],[116.0679867,-3.9445593],[116.06458930000008,-3.953773799999965],[116.06601530000012,-3.954063899999937],[116.06606640000007,-3.955901499999925],[116.06362860000002,-3.956358099999932],[116.0650247000001,-3.963559399999951],[116.0608006000001,-3.970668],[116.05925780000007,-3.978146199999969],[116.05002020000006,-3.989353799999947],[116.0512079,-3.9908986],[116.05041420000009,-3.992927699999939],[116.0532763000001,-3.992370699999981],[116.05420720000006,-3.993981099999928],[116.053913,-4.001594399999931],[116.05658640000001,-4.004074],[116.0580212000001,-4.003119],[116.05182980000006,-4.0123931],[116.04839960000004,-4.014479899999969],[116.04335990000004,-4.010934799999973],[116.0444374000001,-4.0148889],[116.04139920000011,-4.0155459],[116.03888920000009,-4.022759599999972],[116.0408139000001,-4.025558499999931],[116.0438904,-4.026057099999946],[116.04947120000008,-4.035490699999968],[116.04930940000008,-4.041429199999925],[116.05052420000004,-4.042154599999947],[116.05180440000004,-4.053378399999929],[116.04833450000001,-4.062141499999939],[116.05488990000003,-4.052534499999979],[116.054156,-4.049341099999936],[116.055677,-4.046799599999929],[116.05465570000001,-4.045630699999947],[116.05575840000006,-4.042313899999954],[116.06180330000007,-4.038450099999977],[116.06884630000002,-4.0370252],[116.07139660000007,-4.034594399999946],[116.07006480000007,-4.038595699999973],[116.0734192000001,-4.044824199999937],[116.07220730000006,-4.048395599999935],[116.07816910000008,-4.048897199999942],[116.07942260000004,-4.051648399999976],[116.0813022000001,-4.047684799999956],[116.08372140000006,-4.051966499999935],[116.08704420000004,-4.0502088],[116.08454990000007,-4.055610199999933],[116.08542840000007,-4.057265299999926],[116.08833740000011,-4.052908499999944],[116.0899147,-4.052580599999942],[116.09117320000007,-4.056130499999938],[116.09689960000003,-4.055398499999967],[116.09448170000007,-4.059884299999965],[116.09080680000011,-4.060680399999967],[116.09264860000008,-4.0624129],[116.09213100000011,-4.064136699999949],[116.08801640000001,-4.063421399999925],[116.08735320000005,-4.066345899999931],[116.08516650000001,-4.065832599999965],[116.08369390000007,-4.070818],[116.085303,-4.071402699999965],[116.08776790000002,-4.069066299999974],[116.09026130000007,-4.071742],[116.09169660000009,-4.070399699999939],[116.09472160000007,-4.0709411],[116.09483320000004,-4.075115499999924],[116.09023940000009,-4.075380899999971],[116.08801610000012,-4.079981699999962],[116.09101080000005,-4.085667899999976],[116.09087380000005,-4.081793699999935],[116.09485670000004,-4.081313899999941],[116.09816790000002,-4.076185099999975],[116.097752,-4.069327299999941],[116.1010887000001,-4.061204799999928],[116.09890510000002,-4.059246799999926],[116.09904510000001,-4.0556123],[116.10053420000008,-4.0517776],[116.10772610000004,-4.042709799999955],[116.1074695000001,-4.037395699999934],[116.10907480000003,-4.034843899999942],[116.11402510000005,-4.0352459],[116.11586210000007,-4.0392705],[116.11595040000009,-4.036060099999929],[116.1174866,-4.037606299999936],[116.11888010000007,-4.036434099999951],[116.1153557,-4.030649099999948],[116.11910980000005,-4.029592],[116.12134880000008,-4.027134699999976],[116.122832,-4.027291499999933],[116.1237311000001,-4.030993499999965],[116.12628390000009,-4.032802299999958],[116.1293525000001,-4.032704799999976],[116.13577980000002,-4.035533499999929],[116.13773620000006,-4.033890799999938],[116.14116260000003,-4.035779799999943],[116.14332070000012,-4.034992199999976],[116.14890610000009,-4.030605599999944],[116.15072590000011,-4.024798899999951],[116.1563139000001,-4.021571899999969],[116.16088690000004,-4.013568299999974],[116.1656425000001,-4.0085994],[116.16748830000006,-4.002631099999974],[116.17244180000012,-3.996931699999948],[116.17913890000011,-3.994874399999958],[116.18146500000012,-3.991356],[116.18616370000007,-3.992037799999935],[116.19358050000005,-3.984569199999953],[116.20289390000005,-3.982971499999962],[116.2099859000001,-3.985325599999953],[116.20932720000008,-3.979771099999937],[116.2063710000001,-3.977875599999948],[116.20792510000001,-3.975488199999972],[116.20483220000006,-3.974934099999928],[116.20230210000011,-3.970391599999971],[116.20502150000004,-3.966239399999949],[116.20254490000002,-3.959881499999938],[116.20751060000009,-3.951521899999932],[116.2222614000001,-3.943666299999961],[116.22658160000003,-3.942565599999966],[116.22807180000007,-3.944268699999952],[116.230273,-3.943890599999975],[116.23057040000003,-3.940446599999973],[116.22782670000004,-3.937404099999981],[116.227139,-3.933668299999965],[116.22891620000007,-3.933703],[116.22818680000012,-3.936364199999957],[116.23198430000002,-3.940628499999946],[116.23666860000003,-3.941549899999927],[116.24183930000004,-3.940217699999948],[116.24350410000011,-3.942264399999942],[116.24845730000004,-3.936691799999949],[116.25622540000006,-3.931762599999956],[116.25581270000009,-3.927585599999929],[116.2639213000001,-3.916515499999946],[116.26282810000009,-3.914803499999948],[116.27211430000011,-3.907559],[116.27564180000002,-3.906348799999932],[116.2814062000001,-3.9063113],[116.28653180000003,-3.909177299999953],[116.28894190000005,-3.912962299999947],[116.28874760000008,-3.917506599999967],[116.29012540000008,-3.919148399999926],[116.29422560000012,-3.917878],[116.29723790000003,-3.919311099999959],[116.2999526000001,-3.917682199999945],[116.30216230000008,-3.918350799999928],[116.31021050000004,-3.916489],[116.31129310000006,-3.9075999],[116.30955250000011,-3.903801299999941],[116.310359,-3.900503899999933],[116.30557390000001,-3.895592199999953],[116.30399530000011,-3.885948],[116.3047,-3.884084799999926],[116.30659720000006,-3.8848981],[116.30840550000005,-3.883618399999932],[116.3059584,-3.878441199999941],[116.307992,-3.872170099999948],[116.3116864000001,-3.870286499999963],[116.313974,-3.871214],[116.3132045000001,-3.868887399999949],[116.31449260000011,-3.869007899999929],[116.31492480000009,-3.864966199999969],[116.3167016000001,-3.862620399999969],[116.31552110000007,-3.861968],[116.31142310000007,-3.865439499999979],[116.31076080000003,-3.867713799999933],[116.3076258000001,-3.867598199999975],[116.30559530000005,-3.870026899999971],[116.29482410000003,-3.862941699999965],[116.29420420000008,-3.855212699999925],[116.29847040000004,-3.848217],[116.2928214000001,-3.845683099999974],[116.2905991,-3.843048599999975],[116.28593190000004,-3.842105799999956],[116.2846958,-3.8380111],[116.27504290000002,-3.827660699999967],[116.27186110000002,-3.820791399999962],[116.27279780000003,-3.8178839],[116.27119470000002,-3.8164204],[116.27317070000004,-3.812743399999931],[116.27556310000011,-3.811637699999949],[116.27314220000005,-3.807182399999931],[116.27512720000004,-3.805029599999955],[116.27621970000007,-3.7976147],[116.28049310000006,-3.795649499999968],[116.28551290000007,-3.797212499999944],[116.2894983000001,-3.791124199999956],[116.287761,-3.789147899999932],[116.29112920000011,-3.7885053],[116.292318,-3.785245],[116.29412860000002,-3.784438299999977],[116.29758620000007,-3.7856999],[116.29764470000009,-3.784418],[116.3015931000001,-3.782759299999952],[116.3034388000001,-3.7803248],[116.30719880000004,-3.780659399999934],[116.31479720000004,-3.773004199999946],[116.31435750000003,-3.770208899999943],[116.32058940000002,-3.758086],[116.32286380000005,-3.75],[116.32800940000004,-3.740983099999937],[116.33348450000005,-3.738606899999979],[116.3348668000001,-3.7325],[116.33905430000004,-3.727667199999928],[116.33673010000007,-3.725836399999935],[116.330296,-3.724740299999951],[116.32570730000009,-3.727620899999977],[116.31490890000009,-3.728633799999955],[116.31140690000007,-3.7242464],[116.30588260000002,-3.721649199999945],[116.30104820000008,-3.7243487],[116.29856130000007,-3.722076099999981],[116.29817960000003,-3.724346399999945],[116.29727950000006,-3.725313599999936],[116.296814,-3.722454599999935],[116.29412840000009,-3.722009199999945],[116.29459390000011,-3.725818],[116.28996280000001,-3.727641699999936],[116.29425060000005,-3.725745399999937],[116.29324350000002,-3.722895],[116.29415910000012,-3.721629299999961],[116.2972946000001,-3.722246899999959],[116.2972185000001,-3.724110399999972],[116.2977601,-3.724318899999957],[116.29841620000002,-3.721940299999972],[116.29900370000007,-3.721615099999951],[116.30137630000002,-3.724014199999942],[116.30470380000008,-3.721697799999959],[116.29938320000008,-3.708647],[116.30140150000011,-3.7015],[116.30097730000011,-3.696014899999966],[116.30293780000011,-3.692579299999977],[116.3025927000001,-3.686777099999972],[116.30507180000006,-3.682230699999934],[116.29967380000005,-3.682343699999933],[116.29633080000008,-3.678515899999979],[116.29507940000008,-3.670842599999958],[116.29737010000008,-3.6633768],[116.29576550000002,-3.657881499999974],[116.297182,-3.655425599999944],[116.29886850000003,-3.656190899999956],[116.2967192000001,-3.653567199999941],[116.29676460000007,-3.651197599999932],[116.29921230000002,-3.6453497],[116.30137190000005,-3.645082899999977],[116.30016260000002,-3.642075],[116.30094180000003,-3.640064399999972],[116.29750700000011,-3.6366774],[116.29754710000009,-3.628746099999944],[116.295637,-3.6282039],[116.29090470000006,-3.621713],[116.28950970000005,-3.611362299999939],[116.29323620000002,-3.601883399999963],[116.30647920000001,-3.589891699999953],[116.29144270000006,-3.56638],[116.28898,-3.564961099999948],[116.28028630000006,-3.564153099999942],[116.27292250000005,-3.553047899999967],[116.27140330000009,-3.539279099999931],[116.27492640000003,-3.530105499999934],[116.27390260000004,-3.528168299999948],[116.27073640000003,-3.527813],[116.2647627,-3.531390599999952],[116.2529750000001,-3.529526699999963],[116.25083890000008,-3.534337499999936],[116.2519373,-3.5377489],[116.24983930000008,-3.539185499999974],[116.2489313000001,-3.543454599999961],[116.24709280000002,-3.544086299999947],[116.24423940000008,-3.5413249],[116.24276670000006,-3.5445712],[116.23911220000002,-3.542976099999976],[116.24286610000001,-3.544191399999931],[116.24275160000002,-3.541993099999956],[116.244453,-3.540936099999954],[116.24777950000009,-3.543815499999937],[116.24906130000011,-3.539347699999951],[116.251495,-3.53707],[116.25011410000002,-3.534382199999925],[116.25268520000009,-3.5288932],[116.26412940000012,-3.530585],[116.26687590000006,-3.529447299999958],[116.27015660000006,-3.525976199999945],[116.28622050000001,-3.51602],[116.29156260000002,-3.509466399999951],[116.27917470000011,-3.508017399999972],[116.27472680000005,-3.505101],[116.27081280000004,-3.505179399999975],[116.27496310000004,-3.504721299999972],[116.2785186000001,-3.507311199999947],[116.28531650000002,-3.507488399999943],[116.30234570000005,-3.505379099999971],[116.31057680000004,-3.507604],[116.31380560000002,-3.502773299999944],[116.31384760000003,-3.472639],[116.30990680000002,-3.455616299999974],[116.30579220000004,-3.446150699999976],[116.28792360000011,-3.423146599999939],[116.25938250000002,-3.397628499999939],[116.253115,-3.388625299999944],[116.24936560000003,-3.375209599999948],[116.2517362000001,-3.362459199999932],[116.2504977000001,-3.361516499999937],[116.25563910000005,-3.353899299999966],[116.25578180000002,-3.347512799999947],[116.26202500000011,-3.336243399999944],[116.26258210000003,-3.330333199999927],[116.26485820000005,-3.325821],[116.26359840000009,-3.319629599999928],[116.265408,-3.316756399999974],[116.26419420000002,-3.309775099999968],[116.26849960000004,-3.304759199999978],[116.26938470000005,-3.297419699999978],[116.2678376,-3.296039599999972],[116.26742160000003,-3.290230299999962],[116.26967580000007,-3.285629299999925],[116.27385460000005,-3.283214599999951],[116.27404720000004,-3.279745099999957],[116.27217630000007,-3.277988099999959],[116.271188,-3.2709301],[116.27201580000008,-3.267941399999927],[116.27584610000008,-3.264254199999925],[116.2724333000001,-3.260667699999942],[116.27302870000005,-3.258777099999975],[116.26989790000005,-3.252851199999952],[116.27233750000005,-3.238497699999925],[116.27486390000001,-3.236488],[116.277118,-3.228417099999945],[116.28133550000007,-3.222679],[116.28033330000005,-3.214233399999955],[116.27499580000006,-3.219794199999967],[116.26954290000003,-3.2211027],[116.2670826000001,-3.220684899999981],[116.26454480000007,-3.216022899999928],[116.25975490000008,-3.212041399999976]]],[[[116.078466,-3.146097499999939],[116.07690960000002,-3.143346099999974],[116.07461300000011,-3.145777399999929],[116.07214890000012,-3.146109899999942],[116.0708135000001,-3.149473799999953],[116.07209520000004,-3.148941199999967],[116.071981,-3.150243699999976],[116.06932590000008,-3.149807099999975],[116.06883760000005,-3.151489199999958],[116.06920370000012,-3.154031399999951],[116.07259880000004,-3.157607599999949],[116.07954170000005,-3.162661399999934],[116.08271550000006,-3.159923299999946],[116.08333370000003,-3.155961799999943],[116.08228070000007,-3.154793899999959],[116.08559940000009,-3.151269],[116.08575990000008,-3.147858799999938],[116.08307420000006,-3.145929699999954],[116.07991570000002,-3.147374199999945],[116.078466,-3.146097499999939]]],[[[116.26643980000006,-3.095730899999978],[116.2636625,-3.089728899999955],[116.26047970000002,-3.091402],[116.26012320000007,-3.095356399999957],[116.26411130000008,-3.096008499999925],[116.26538030000006,-3.097794],[116.26643980000006,-3.095730899999978]]],[[[116.27586660000009,-3.079410699999926],[116.27458160000003,-3.079451199999937],[116.27223070000002,-3.089542],[116.27885040000001,-3.0934781],[116.27920260000008,-3.090113499999973],[116.28264800000011,-3.085097599999926],[116.28251480000006,-3.082465899999931],[116.28141070000004,-3.082675299999948],[116.2814155000001,-3.0808146],[116.27586660000009,-3.079410699999926]]],[[[116.248262,-3.077401899999927],[116.25066890000005,-3.075228699999968],[116.24806550000005,-3.072393499999976],[116.248262,-3.077401899999927]]],[[[116.28094750000002,-3.069372199999975],[116.2785209000001,-3.069641399999966],[116.28153280000004,-3.072016599999927],[116.2831347,-3.071603499999981],[116.283628,-3.069278399999973],[116.28094750000002,-3.069372199999975]]],[[[116.06081150000011,-3.039132799999948],[116.06178040000009,-3.036899299999959],[116.05999520000012,-3.036563],[116.06081150000011,-3.039132799999948]]],[[[116.17562020000003,-3.036957099999938],[116.17291840000007,-3.036082799999974],[116.17175930000008,-3.039187799999979],[116.16704420000008,-3.0409481],[116.17394890000003,-3.059597499999938],[116.17844370000012,-3.057678099999976],[116.186886,-3.043449199999941],[116.186112,-3.041119599999945],[116.18036230000007,-3.037039499999935],[116.17562020000003,-3.036957099999938]]],[[[116.05478030000006,-3.011031099999968],[116.05548610000005,-3.010136399999965],[116.0538901000001,-3.010694599999965],[116.05478030000006,-3.011031099999968]]],[[[116.070959,-2.996535499999936],[116.06699550000008,-2.997509099999945],[116.0637259,-3.001513599999953],[116.07067720000009,-2.997901199999944],[116.070959,-2.996535499999936]]],[[[116.10640310000008,-2.994882599999926],[116.10203210000009,-2.9945624],[116.09401910000008,-2.998192199999949],[116.10043220000011,-2.999328299999945],[116.10386460000007,-3.007246299999963],[116.10795380000002,-3.0087333],[116.10947980000003,-3.007422799999972],[116.10893050000004,-3.003360699999973],[116.11185250000005,-3.000332699999944],[116.11177150000003,-2.998279199999956],[116.11021610000012,-2.995003299999951],[116.10640310000008,-2.994882599999926]]],[[[116.12849910000011,-2.994194899999968],[116.12301470000011,-2.991241499999944],[116.11465220000002,-2.995594899999958],[116.10988410000004,-3.003931399999942],[116.1104183000001,-3.007134099999973],[116.11801710000009,-3.007529299999931],[116.1229,-3.011649199999965],[116.1333906000001,-3.007731699999965],[116.1400741000001,-3.0120519],[116.14282050000008,-3.011366599999974],[116.14284690000011,-3.008474399999955],[116.13740690000009,-3.006752099999972],[116.1328251000001,-3.000238199999956],[116.12940660000004,-3.0012301],[116.1273347,-3.005342499999927],[116.126121,-3.0046634],[116.13192780000008,-2.997479699999928],[116.13188960000002,-2.994242799999938],[116.12849910000011,-2.994194899999968]]],[[[116.09960200000012,-2.989476599999932],[116.10586020000005,-2.985791],[116.10075710000001,-2.986356699999931],[116.09769330000006,-2.988905099999954],[116.09960200000012,-2.989476599999932]]],[[[116.10090710000009,-2.981734299999971],[116.0962277000001,-2.985249299999964],[116.10192670000004,-2.983716199999947],[116.10243280000009,-2.982368799999961],[116.10090710000009,-2.981734299999971]]],[[[116.14854510000009,-2.990027199999929],[116.1438415,-2.986691899999926],[116.1386801000001,-2.977384],[116.13629560000004,-2.976706099999944],[116.13486050000006,-2.985741899999937],[116.13829470000007,-2.989562099999944],[116.13358230000006,-2.995646299999976],[116.13516070000003,-2.999835899999937],[116.13766320000002,-3.001004799999976],[116.13651060000007,-3.002772899999968],[116.13844210000002,-3.005667899999935],[116.14127940000003,-3.005476399999964],[116.14307070000007,-3.002897699999949],[116.14236280000011,-2.999805399999957],[116.14382,-3.002203699999939],[116.14179810000007,-3.006263799999942],[116.14421670000002,-3.006220499999927],[116.14593360000003,-3.008818099999928],[116.15053410000007,-3.010314299999948],[116.1528383000001,-3.010180399999967],[116.15534820000005,-3.006509599999958],[116.15725570000006,-3.007008699999972],[116.15891890000012,-3.009642399999962],[116.15902570000003,-3.007109499999956],[116.1608642000001,-3.006984299999942],[116.16110850000007,-3.012973],[116.159781,-3.011805],[116.16066580000006,-3.007508799999925],[116.15875850000009,-3.010121699999956],[116.15614940000012,-3.007080199999962],[116.15404350000006,-3.008978199999945],[116.15405120000003,-3.010642699999948],[116.1594301,-3.012899299999958],[116.16036090000011,-3.016147599999954],[116.15505080000003,-3.029667399999937],[116.16925680000008,-3.037458099999981],[116.17309090000003,-3.032755499999951],[116.17271330000005,-3.018715899999961],[116.17703590000008,-2.998348799999974],[116.168819,-2.995471499999951],[116.16824540000005,-2.997790099999975],[116.1653778000001,-2.9992534],[116.1655108000001,-3.000791299999946],[116.1680818000001,-3.001752199999942],[116.16605990000005,-3.003098499999965],[116.16740290000007,-3.001534499999934],[116.16505310000002,-3.001125699999932],[116.164824,-2.999804799999936],[116.16576670000006,-2.998584299999948],[116.16774150000003,-2.997771599999965],[116.16818190000004,-2.996674599999949],[116.16041920000009,-2.992851299999927],[116.15815280000004,-2.992253299999959],[116.15777590000005,-2.993631099999959],[116.14854510000009,-2.990027199999929]]],[[[116.1366882000001,-2.991442399999926],[116.13721270000008,-2.988765199999932],[116.1339987,-2.985714099999939],[116.13563330000011,-2.975059199999976],[116.1339005000001,-2.974261699999943],[116.127948,-2.978789099999972],[116.12753140000007,-2.983338899999978],[116.12372080000011,-2.987895],[116.12460350000003,-2.990709099999947],[116.1281236000001,-2.991806399999973],[116.13378820000003,-2.993077399999947],[116.1366882000001,-2.991442399999926]]],[[[116.07933580000008,-2.909719499999937],[116.07878070000004,-2.910787099999936],[116.0807886,-2.912321199999951],[116.07933580000008,-2.909719499999937]]],[[[116.1501472000001,-2.899017799999967],[116.148388,-2.899395199999958],[116.14494810000008,-2.916524599999946],[116.1455006000001,-2.924970599999938],[116.15004220000003,-2.935760399999936],[116.16482930000006,-2.9425097],[116.17592860000002,-2.945454899999959],[116.18111790000012,-2.950384299999939],[116.18834270000002,-2.950492499999939],[116.20342820000008,-2.942943799999966],[116.20205720000001,-2.939178],[116.19933990000004,-2.937222],[116.19251940000004,-2.933399599999973],[116.19152850000012,-2.935325699999964],[116.18761460000007,-2.927109],[116.18119690000003,-2.926706199999956],[116.18029380000007,-2.929646499999933],[116.17703070000005,-2.930270599999972],[116.17872890000001,-2.9330928],[116.1760729,-2.936572499999954],[116.17798230000005,-2.932335299999977],[116.17475720000004,-2.931153499999937],[116.171494,-2.931851399999971],[116.17934090000006,-2.929314099999942],[116.18000210000002,-2.927434799999958],[116.17652280000004,-2.922898799999928],[116.17157250000002,-2.924738],[116.17179050000004,-2.927428799999973],[116.17116930000009,-2.924700899999948],[116.17544950000001,-2.9211748],[116.16940390000002,-2.915290399999947],[116.1697282,-2.911726399999964],[116.16433560000007,-2.907642599999974],[116.16074850000007,-2.906862],[116.15828540000007,-2.902499899999953],[116.15411270000004,-2.901718799999969],[116.1501472000001,-2.899017799999967]]],[[[116.10581020000006,-2.865452299999959],[116.10243020000007,-2.865060699999958],[116.10291840000002,-2.868091499999935],[116.10697730000004,-2.867832399999941],[116.11308110000004,-2.8701348],[116.1180783000001,-2.870021099999974],[116.11603360000004,-2.867685599999959],[116.10581020000006,-2.865452299999959]]],[[[116.09824170000002,-2.862397899999962],[116.09399960000007,-2.862629699999957],[116.10141540000006,-2.865530299999932],[116.10201060000009,-2.864155799999935],[116.09824170000002,-2.862397899999962]]],[[[116.08574450000003,-2.860786799999971],[116.08677450000005,-2.859964499999933],[116.08465360000002,-2.859781799999951],[116.08574450000003,-2.860786799999971]]],[[[116.09959190000006,-2.859015799999952],[116.09576960000004,-2.859157499999981],[116.09734120000007,-2.861338799999942],[116.10019470000009,-2.860463599999946],[116.09959190000006,-2.859015799999952]]],[[[116.10380350000003,-2.859815099999935],[116.10275060000004,-2.856910499999969],[116.1006374000001,-2.857026499999961],[116.10173580000003,-2.859542099999942],[116.10380350000003,-2.859815099999935]]],[[[116.090986,-2.858981799999981],[116.0844552000001,-2.855466799999931],[116.08481360000007,-2.858316499999944],[116.08617190000007,-2.859014199999933],[116.09560170000009,-2.860333299999979],[116.094816,-2.858740599999976],[116.090986,-2.858981799999981]]],[[[116.08420340000009,-2.858089899999925],[116.08401260000005,-2.855131699999959],[116.08546220000005,-2.854119699999956],[116.082891,-2.852145699999937],[116.0795647000001,-2.8514917],[116.08196780000003,-2.856957399999942],[116.08420340000009,-2.858089899999925]]],[[[116.0794883000001,-2.8538978],[116.0789314000001,-2.851319299999943],[116.0763756,-2.849833699999976],[116.07737510000004,-2.854420799999957],[116.0794883000001,-2.8538978]]],[[[116.1259966,-2.828654699999959],[116.12675810000007,-2.827426899999978],[116.12283670000011,-2.823943399999962],[116.12236080000002,-2.827512599999977],[116.1259966,-2.828654699999959]]],[[[116.1117402000001,-2.814935299999945],[116.10812460000011,-2.815006699999969],[116.1182510000001,-2.824263799999926],[116.12100570000007,-2.824265899999943],[116.11771560000011,-2.816646299999945],[116.1117402000001,-2.814935299999945]]],[[[116.11788980000006,-2.8139508],[116.11703010000008,-2.812367299999949],[116.11670930000002,-2.813875699999926],[116.11788980000006,-2.8139508]]],[[[116.26332050000008,-2.642111],[116.25418800000011,-2.639952499999936],[116.26208450000001,-2.644380899999931],[116.26572380000005,-2.642483399999946],[116.26332050000008,-2.642111]]],[[[116.21073460000002,-2.619456199999945],[116.21080350000011,-2.615286099999935],[116.20818380000003,-2.613916599999925],[116.20794770000009,-2.620088299999964],[116.2034695000001,-2.619851899999958],[116.20323760000008,-2.619318],[116.20370340000011,-2.617149799999936],[116.19895980000001,-2.617046699999946],[116.19773220000002,-2.6173795],[116.19670310000004,-2.618479699999966],[116.19889110000008,-2.620683],[116.19623720000004,-2.620881399999973],[116.19616870000004,-2.624184099999979],[116.1977604000001,-2.625052499999924],[116.19703170000003,-2.623350699999946],[116.19865740000012,-2.623084799999958],[116.1999485,-2.627155699999946],[116.20213920000003,-2.625122099999942],[116.20251810000002,-2.629175699999962],[116.206398,-2.631346599999972],[116.20842340000002,-2.628545599999939],[116.21177260000002,-2.630482699999959],[116.21416450000004,-2.625013],[116.21273860000008,-2.624111299999925],[116.21129660000008,-2.622459],[116.2107003000001,-2.621190899999931],[116.21073460000002,-2.619456199999945]]],[[[116.31428370000003,-2.537824699999931],[116.31032570000002,-2.535564499999964],[116.30702230000009,-2.538653799999963],[116.30541990000006,-2.550965199999951],[116.307091,-2.566290799999933],[116.30473350000011,-2.568786299999942],[116.2985916,-2.569705699999929],[116.29647050000005,-2.574164399999972],[116.2987442000001,-2.582678399999963],[116.30523690000007,-2.583885199999941],[116.30508420000001,-2.587051299999928],[116.30702990000009,-2.588174199999969],[116.30790720000005,-2.5908524],[116.30707570000004,-2.591385699999933],[116.30694590000007,-2.588716899999952],[116.30451990000006,-2.586815799999954],[116.30244440000001,-2.586977499999932],[116.30478690000007,-2.585884199999953],[116.30448920000003,-2.584282799999926],[116.298729,-2.5836283],[116.29664620000005,-2.579384299999958],[116.290863,-2.585297499999967],[116.29138180000007,-2.590056199999935],[116.29323560000012,-2.589496299999951],[116.293892,-2.590464699999927],[116.29243460000009,-2.591269],[116.29624950000004,-2.593252299999961],[116.29627220000009,-2.596834699999931],[116.29552460000002,-2.593034799999941],[116.29134370000008,-2.591720699999939],[116.29128260000005,-2.594552199999953],[116.28990170000009,-2.5951666],[116.29266360000008,-2.599637099999939],[116.29198470000006,-2.605299799999955],[116.28633880000007,-2.610100199999977],[116.28901670000005,-2.614887299999964],[116.31617770000003,-2.59301],[116.32233470000006,-2.582447],[116.32409310000003,-2.575788399999965],[116.324269,-2.565869199999952],[116.32120040000007,-2.559733199999926],[116.31952700000011,-2.559675499999969],[116.31332430000009,-2.571468799999934],[116.31430090000003,-2.574545099999966],[116.31618530000003,-2.574627499999963],[116.31405670000004,-2.574943],[116.31343090000007,-2.572880099999963],[116.31172210000011,-2.572897199999943],[116.30660810000006,-2.575911799999972],[116.31297330000007,-2.570681499999978],[116.31712370000002,-2.561257299999966],[116.3227518000001,-2.554241399999967],[116.31428370000003,-2.537824699999931]]],[[[116.27326180000011,-2.542308],[116.2786407000001,-2.537308399999972],[116.27246820000005,-2.531849899999941],[116.26797470000008,-2.533095799999955],[116.26690650000012,-2.534741599999961],[116.267593,-2.537474],[116.27326180000011,-2.542308]]],[[[115.8036072000001,-2.504029],[115.82350760000008,-2.504047199999945],[115.84046590000003,-2.5089272],[115.84072010000011,-2.512739199999942],[115.84553820000008,-2.515149],[115.8544051,-2.516156],[115.86804960000006,-2.524050699999975],[115.87789670000006,-2.527203],[115.88072850000003,-2.542417599999965],[115.88763460000007,-2.556042599999955],[115.88909660000002,-2.574933499999929],[115.89055660000008,-2.575693499999943],[115.88805660000003,-2.582434099999944],[115.8872166000001,-2.595335299999931],[115.89236660000006,-2.6001857],[115.88827880000008,-2.614672599999949],[115.88710660000004,-2.612656799999968],[115.86152620000007,-2.614066899999955],[115.85726610000006,-2.616047099999946],[115.83196570000007,-2.608516499999951],[115.82936570000004,-2.605886199999929],[115.82363160000011,-2.611196699999937],[115.81435710000005,-2.6250098],[115.81178060000002,-2.632907699999976],[115.79107840000006,-2.6389263],[115.7774796000001,-2.647686599999929],[115.76449800000012,-2.658724899999925],[115.725412,-2.659139],[115.7227256000001,-2.666497299999946],[115.72044140000003,-2.681916199999932],[115.71412040000007,-2.691571],[115.70916110000007,-2.695834899999966],[115.70623910000006,-2.7021722],[115.69271970000011,-2.710397399999977],[115.68403740000008,-2.709266399999933],[115.67971910000006,-2.710175199999981],[115.6726354000001,-2.718567399999927],[115.66343060000008,-2.72263],[115.65659710000011,-2.723429],[115.64375920000009,-2.720937399999968],[115.62669850000009,-2.722531699999934],[115.59670490000008,-2.734924399999954],[115.59523020000006,-2.7498207],[115.58691410000006,-2.778363799999966],[115.57884270000011,-2.794461299999966],[115.57267150000007,-2.810861599999953],[115.55770970000003,-2.825236599999926],[115.55659260000004,-2.828173799999945],[115.55631210000001,-2.838841499999944],[115.56578790000003,-2.844985299999962],[115.57160940000006,-2.851576799999975],[115.57111350000002,-2.860683799999947],[115.57691950000003,-2.871625599999959],[115.57701870000005,-2.883455599999934],[115.5948562000001,-2.888877399999956],[115.59576430000004,-2.892007899999953],[115.58155060000001,-2.911507699999959],[115.58086380000009,-2.9200718],[115.575241,-2.933893399999931],[115.56813780000004,-2.9405046],[115.55398510000009,-2.944167299999947],[115.54685940000002,-2.940409399999965],[115.53343180000002,-2.982525899999928],[115.51665660000003,-2.999658099999976],[115.51229330000001,-3.029397199999948],[115.51499310000008,-3.029934499999968],[115.51649780000002,-3.032586499999979],[115.5234114000001,-3.035897099999943],[115.52402210000002,-3.037932799999965],[115.52826430000005,-3.038626],[115.5296581,-3.041612399999963],[115.53337580000004,-3.041002499999934],[115.5421722000001,-3.046133499999939],[115.55961580000007,-3.047667399999966],[115.56177510000009,-3.0604892],[115.5637885000001,-3.065625799999964],[115.56844600000011,-3.068806599999959],[115.57245750000004,-3.0685045],[115.57600320000006,-3.0654251],[115.58538650000003,-3.065247699999929],[115.5930436000001,-3.061839099999929],[115.60126030000004,-3.060918299999969],[115.60373310000011,-3.061491299999943],[115.60936460000005,-3.066681099999926],[115.6122898000001,-3.0666668],[115.61586870000008,-3.0687608],[115.6171706,-3.067324399999961],[115.62417810000011,-3.068644899999924],[115.62963570000011,-3.0656854],[115.62859220000007,-3.0631787],[115.6332235000001,-3.060154799999964],[115.63677990000008,-3.059661899999981],[115.63839180000002,-3.057194799999934],[115.63862960000006,-3.060107399999936],[115.6437,-3.064479699999936],[115.64746130000003,-3.066279499999951],[115.6497710000001,-3.064570299999957],[115.65196710000009,-3.065843399999949],[115.65267970000002,-3.067169899999953],[115.651192,-3.070592399999953],[115.65217930000006,-3.071919299999934],[115.65333280000004,-3.072196899999938],[115.65883370000006,-3.066901499999972],[115.66625240000008,-3.065750899999955],[115.66629970000008,-3.071881799999971],[115.6683306000001,-3.073486099999968],[115.6706402000001,-3.071887299999958],[115.673826,-3.072664499999973],[115.67260820000001,-3.080009],[115.6769766000001,-3.079710699999964],[115.67938580000009,-3.086452099999974],[115.68383990000007,-3.0835303],[115.6819269,-3.075298199999963],[115.68396320000011,-3.072594299999935],[115.6860501000001,-3.073370099999977],[115.68845880000003,-3.080608699999971],[115.69197330000009,-3.082159599999954],[115.69472050000002,-3.082162899999958],[115.69675660000007,-3.079624699999954],[115.700546,-3.081065399999943],[115.70466870000007,-3.0794687],[115.70699520000005,-3.086624299999926],[115.71166480000011,-3.087292799999943],[115.71259530000009,-3.090221399999962],[115.706663,-3.088722799999971],[115.70561520000001,-3.091925099999969],[115.70720250000011,-3.096953299999939],[115.709234,-3.098170899999957],[115.71528110000008,-3.095637599999975],[115.7181898,-3.098458],[115.71587430000011,-3.104917599999965],[115.71098360000008,-3.105353499999978],[115.7108713,-3.107341799999972],[115.71268270000007,-3.108835299999953],[115.71774010000001,-3.106853099999967],[115.7145177000001,-3.113560099999972],[115.71226330000002,-3.114827699999978],[115.71610910000004,-3.115219099999933],[115.717261,-3.116822299999967],[115.71814430000006,-3.1133988],[115.7197341000001,-3.116438599999981],[115.72127450000005,-3.114894],[115.72324480000009,-3.121303499999954],[115.7256135,-3.116335299999946],[115.72803050000005,-3.116945799999939],[115.728906,-3.119929599999978],[115.73198530000002,-3.118110599999966],[115.73082620000002,-3.122417399999961],[115.7322544000001,-3.122750599999961],[115.73516040000004,-3.1280014],[115.73304180000002,-3.130567199999973],[115.7353419000001,-3.136977199999933],[115.73440090000008,-3.142665199999954],[115.73571490000006,-3.1466437],[115.74082420000002,-3.147423199999935],[115.7404653000001,-3.148831199999961],[115.73771760000011,-3.149104],[115.74029690000009,-3.151813699999934],[115.741115,-3.156951499999934],[115.74353170000006,-3.157838199999958],[115.74182780000001,-3.158222799999976],[115.74188060000006,-3.159990299999947],[115.7435832000001,-3.160710399999971],[115.74556450000011,-3.158116799999959],[115.74830910000003,-3.160495199999957],[115.74940890000005,-3.159778499999959],[115.7524254000001,-3.164642799999967],[115.75458690000005,-3.172129799999936],[115.75348460000009,-3.174890199999936],[115.75611920000006,-3.177434199999936],[115.7562802000001,-3.180693199999951],[115.75754590000008,-3.179092899999944],[115.75985390000005,-3.179040499999928],[115.76078670000004,-3.180201499999953],[115.7596837000001,-3.183514299999956],[115.76358660000005,-3.182359099999928],[115.76275750000002,-3.186445499999934],[115.76464680000004,-3.191888399999925],[115.7687681000001,-3.192003799999952],[115.76852680000002,-3.193206799999928],[115.77283810000006,-3.193267299999945],[115.77550850000011,-3.191036399999973],[115.77957440000012,-3.190399099999979],[115.79250550000006,-3.181785499999933],[115.8012189000001,-3.183261],[115.8083213000001,-3.181333599999959],[115.81290020000006,-3.1852645],[115.82888280000009,-3.186386299999981],[115.83042770000009,-3.1856735],[115.83659790000002,-3.172239399999967],[115.84061530000008,-3.170145499999933],[115.84878420000007,-3.170507399999963],[115.85199990000001,-3.168828599999927],[115.85578510000005,-3.1702438],[115.86277670000004,-3.166733],[115.86945850000006,-3.166912199999956],[115.93445940000004,-3.152752799999973],[115.94849770000008,-3.177842399999975],[115.95143750000011,-3.192225599999972],[115.95052350000003,-3.198044599999946],[115.946818,-3.205195499999945],[115.93107810000004,-3.216101799999933],[115.92841950000002,-3.220965799999931],[115.9279385000001,-3.2265959],[115.9305845,-3.235951],[115.93788990000007,-3.245506699999964],[115.94680540000002,-3.253913299999965],[115.95247740000002,-3.2476367],[115.95819090000009,-3.247276199999931],[115.96013390000007,-3.249049699999944],[115.96426930000007,-3.246549399999935],[115.97394210000004,-3.223733899999957],[115.97894990000009,-3.222581499999933],[115.9782901000001,-3.2206436],[115.98180230000003,-3.222237399999926],[115.98215860000005,-3.220939699999974],[115.99004030000003,-3.219950099999949],[115.99586860000011,-3.223445199999958],[116.0011187,-3.234417699999938],[116.00982440000007,-3.236888099999931],[116.01713680000012,-3.243425799999955],[116.03074350000009,-3.249654799999973],[116.03905220000001,-3.257007899999962],[116.041135,-3.261550899999975],[116.0520461000001,-3.260313],[116.06028720000006,-3.260981099999981],[116.06145430000004,-3.256613],[116.0647163000001,-3.258624299999951],[116.06771050000009,-3.263774099999978],[116.07113690000006,-3.264844699999969],[116.07785380000007,-3.258962099999962],[116.08275110000011,-3.257573499999978],[116.08482910000009,-3.264893499999971],[116.08421090000002,-3.277258599999925],[116.08724340000003,-3.280870499999935],[116.09002680000003,-3.2803977],[116.092458,-3.282914499999947],[116.10018280000008,-3.281488299999978],[116.11459980000006,-3.274593699999969],[116.1466104000001,-3.265620499999955],[116.15024380000011,-3.258987599999955],[116.16692840000007,-3.252101099999948],[116.16526660000011,-3.251051],[116.16420610000011,-3.245866699999965],[116.1608414000001,-3.243186299999934],[116.16439690000004,-3.245695],[116.16537330000006,-3.249947499999962],[116.16716630000008,-3.251595299999963],[116.17394220000006,-3.252289299999973],[116.17687850000004,-3.250581599999975],[116.17767910000009,-3.245866499999977],[116.18080940000004,-3.241978],[116.18395550000002,-3.228700299999957],[116.17865190000009,-3.216755499999977],[116.18003440000007,-3.211238199999968],[116.17919040000004,-3.206456],[116.1729054000001,-3.192105899999945],[116.16769040000008,-3.175093699999934],[116.16798260000007,-3.1656312],[116.16036070000007,-3.161762299999964],[116.15138080000008,-3.159565799999939],[116.1388611000001,-3.152336799999944],[116.13188760000003,-3.150576],[116.13072790000001,-3.1575857],[116.13276510000003,-3.159595599999932],[116.13202480000007,-3.162743],[116.13467990000004,-3.160673699999961],[116.13857860000007,-3.164413],[116.13759450000009,-3.165841399999977],[116.13432140000009,-3.165350199999978],[116.13439760000006,-3.167467],[116.13352020000002,-3.1653224],[116.13775470000007,-3.164629399999967],[116.13426030000005,-3.161369899999954],[116.13232230000006,-3.163096099999962],[116.13152130000003,-3.162851099999955],[116.13203250000004,-3.1599207],[116.13001840000004,-3.1574946],[116.13107130000003,-3.150683899999933],[116.12136650000002,-3.148378],[116.12273980000009,-3.154304299999978],[116.1257078000001,-3.156740199999945],[116.12534160000007,-3.161163399999964],[116.122137,-3.161866199999963],[116.1237546000001,-3.166562499999941],[116.12647830000003,-3.167252299999973],[116.12621130000002,-3.168437099999949],[116.1234952000001,-3.167023599999936],[116.12257210000007,-3.164535199999932],[116.12183960000004,-3.161051899999961],[116.12477710000007,-3.160982],[116.12514320000002,-3.156613099999959],[116.12245760000008,-3.155118199999947],[116.12040530000002,-3.14873],[116.10604670000009,-3.147243299999957],[116.09871460000011,-3.149932599999943],[116.09117660000004,-3.154856],[116.08910150000008,-3.158011199999976],[116.09004740000012,-3.158509599999945],[116.09251170000005,-3.1556623],[116.0959984000001,-3.155891499999939],[116.09643330000006,-3.157710099999974],[116.0942209000001,-3.160946599999932],[116.09513650000008,-3.162684199999944],[116.09371740000006,-3.161118],[116.09610530000009,-3.157556],[116.0932901000001,-3.1557625],[116.08534770000006,-3.162549],[116.0863855,-3.164449499999932],[116.08428720000006,-3.164511],[116.0815864000001,-3.168515899999932],[116.08202150000011,-3.172975899999926],[116.08384480000007,-3.1738278],[116.0840204000001,-3.170797599999958],[116.08420340000009,-3.174126699999931],[116.08222730000011,-3.174016399999971],[116.08060990000001,-3.171464],[116.072538,-3.1779336],[116.07581850000008,-3.177031899999974],[116.07649750000007,-3.178814599999953],[116.07513960000006,-3.181762299999946],[116.0740257000001,-3.1807572],[116.07565060000002,-3.1795104],[116.07529220000004,-3.177447599999937],[116.0722555000001,-3.179335399999957],[116.069097,-3.185637499999928],[116.0692878000001,-3.189617899999973],[116.07456730000001,-3.196859299999971],[116.07358310000006,-3.203914199999929],[116.06995160000008,-3.2069412],[116.06595370000002,-3.207679299999938],[116.06262730000003,-3.201733199999978],[116.06046050000009,-3.200455699999964],[116.05173230000003,-3.2054048],[116.04551430000004,-3.202938499999959],[116.04477430000009,-3.200540699999976],[116.04202,-3.201026599999977],[116.041364,-3.197651899999926],[116.03996770000003,-3.200635699999964],[116.03480250000007,-3.198061799999948],[116.03706080000006,-3.197349299999928],[116.03522220000002,-3.195538399999975],[116.032834,-3.195825699999943],[116.03412360000004,-3.197708399999954],[116.03008760000012,-3.197198],[116.02928650000001,-3.196482599999968],[116.029912,-3.194954499999938],[116.02608210000005,-3.191432099999929],[116.02898880000009,-3.192438899999956],[116.03030120000005,-3.194954899999971],[116.0300721000001,-3.1965919],[116.03325370000005,-3.197463299999924],[116.03242210000008,-3.195382],[116.03572570000006,-3.195113799999945],[116.03755690000003,-3.197440299999926],[116.03539,-3.198017099999959],[116.03944120000006,-3.200065299999949],[116.041173,-3.197054699999967],[116.04232530000002,-3.197915099999932],[116.0422946000001,-3.200656],[116.04482,-3.199799],[116.04585760000009,-3.202414199999964],[116.049886,-3.203874299999939],[116.05291480000005,-3.204646],[116.06060530000002,-3.1998136],[116.06286380000006,-3.200503199999957],[116.06751,-3.2065681],[116.07050070000003,-3.205195899999978],[116.07274380000001,-3.202800799999977],[116.07343820000006,-3.195890399999939],[116.06807480000009,-3.1899515],[116.06800610000005,-3.184994299999971],[116.07643640000003,-3.167733399999975],[116.07385020000004,-3.163434299999949],[116.06628180000007,-3.170039899999949],[116.06717430000003,-3.167706899999928],[116.07246170000008,-3.163197799999978],[116.06969220000008,-3.156193799999926],[116.06446580000011,-3.152923599999951],[116.058843,-3.159865699999955],[116.0519154000001,-3.1589276],[116.05051160000005,-3.156049799999948],[116.05183920000002,-3.151446699999951],[116.05056490000004,-3.149989199999936],[116.0456822000001,-3.149640899999952],[116.04590330000008,-3.147949599999947],[116.046735,-3.149343399999964],[116.05200700000012,-3.150044699999967],[116.05162560000008,-3.157534299999952],[116.05751550000002,-3.1594212],[116.059606,-3.157632099999944],[116.0623448,-3.145775499999957],[116.06350470000007,-3.1471515],[116.06198640000002,-3.148995499999955],[116.06294,-3.1516106],[116.06775420000008,-3.151976699999977],[116.07181320000007,-3.145449299999939],[116.07383490000007,-3.145686299999966],[116.07701640000005,-3.142830599999968],[116.07857270000011,-3.143338599999936],[116.07954170000005,-3.146641199999976],[116.08192210000004,-3.144915499999968],[116.0875833,-3.148891599999956],[116.09020010000006,-3.147193299999969],[116.07969430000003,-3.135867699999949],[116.07024910000007,-3.139305699999966],[116.067884,-3.144152199999951],[116.06775430000005,-3.141347899999971],[116.06648,-3.141120599999965],[116.06221520000008,-3.135010799999975],[116.05866,-3.134808599999928],[116.06159720000005,-3.134232299999951],[116.06677750000006,-3.1405419],[116.06789170000002,-3.140280599999926],[116.06918850000011,-3.134374799999932],[116.07378140000003,-3.132090299999959],[116.07385010000007,-3.129720299999974],[116.0715384,-3.124761199999966],[116.06290180000008,-3.125024799999949],[116.05697370000007,-3.119483499999944],[116.0472539000001,-3.125155399999926],[116.04780310000001,-3.120461199999966],[116.045171,-3.120983399999943],[116.04279830000007,-3.117118699999935],[116.04279050000002,-3.114821099999972],[116.04124930000012,-3.118130399999927],[116.03970070000003,-3.117812399999934],[116.0380755000001,-3.113242799999966],[116.03987610000001,-3.117568299999959],[116.04279050000002,-3.114233099999979],[116.0443623000001,-3.119399699999974],[116.0485354000001,-3.120353299999977],[116.04799390000005,-3.124360099999933],[116.05599720000009,-3.118659399999956],[116.06277990000001,-3.123957299999972],[116.07117990000006,-3.124317599999927],[116.0738732000001,-3.127477],[116.074819,-3.129278],[116.07513960000006,-3.132118599999956],[116.07005060000006,-3.137713499999961],[116.0756431000001,-3.134887099999958],[116.08063290000007,-3.135045299999945],[116.08910910000009,-3.143782099999953],[116.09242040000004,-3.146127799999931],[116.09586880000006,-3.146058499999981],[116.0983103000001,-3.144577099999935],[116.109639,-3.128342499999974],[116.10788530000002,-3.126674499999979],[116.10221660000002,-3.127610299999958],[116.0938241,-3.124409799999967],[116.09264160000009,-3.123422799999958],[116.09185570000011,-3.118103099999928],[116.09045190000006,-3.116428399999961],[116.09177950000003,-3.1171261],[116.09313740000005,-3.123730799999976],[116.09794410000006,-3.124259599999959],[116.10094250000009,-3.126505599999973],[116.10464260000003,-3.125649399999929],[116.1065731000001,-3.118758],[116.10763340000005,-3.120269599999972],[116.10548970000002,-3.123551499999962],[116.10577950000004,-3.125795099999948],[116.11124970000003,-3.128079399999933],[116.1139889000001,-3.126643399999978],[116.11525520000009,-3.123252199999968],[116.11050210000008,-3.115179199999943],[116.11290550000001,-3.107682099999977],[116.11150930000008,-3.107934199999931],[116.11045630000001,-3.110855199999946],[116.1109523,-3.107888499999945],[116.11320290000003,-3.106804899999929],[116.113638,-3.097931199999948],[116.11133390000009,-3.0971513],[116.107992,-3.099826099999973],[116.1059093,-3.098494599999981],[116.10788520000006,-3.099428],[116.11044890000005,-3.097159599999941],[116.10947980000003,-3.093459],[116.11117350000006,-3.096934099999942],[116.11297410000009,-3.096564699999931],[116.11470610000003,-3.098547199999928],[116.1142407000001,-3.106624899999929],[116.11648380000008,-3.103759199999956],[116.11191370000006,-3.1146467],[116.11364540000011,-3.117036299999938],[116.1156443000001,-3.1170289],[116.11758240000006,-3.113412199999971],[116.116911,-3.116622899999925],[116.11439320000011,-3.118638],[116.11710920000007,-3.121345099999928],[116.11636150000004,-3.125315599999965],[116.10670260000006,-3.137818],[116.10712220000005,-3.141156299999977],[116.1083734,-3.141736299999934],[116.11247810000009,-3.138781799999947],[116.11724670000001,-3.1384602],[116.12187770000003,-3.140092399999958],[116.13223080000012,-3.137450599999966],[116.14221020000002,-3.144379],[116.1593385000001,-3.152923499999929],[116.17001970000001,-3.155600699999979],[116.17990050000003,-3.161040799999967],[116.18731,-3.1545673],[116.18841410000005,-3.149119],[116.1947441000001,-3.143396799999948],[116.19423910000012,-3.141255699999931],[116.19582930000001,-3.141657099999975],[116.20493820000002,-3.131825399999968],[116.21110710000005,-3.127666499999975],[116.22585490000006,-3.125207499999931],[116.2332904000001,-3.127529799999934],[116.235799,-3.126863499999956],[116.23913990000005,-3.128966799999944],[116.2399961000001,-3.1277491],[116.23888940000006,-3.126278099999979],[116.24915080000005,-3.126151299999947],[116.2502065000001,-3.1241423],[116.2526818,-3.1236098],[116.25357610000003,-3.125637199999971],[116.25632550000012,-3.126728],[116.26485140000011,-3.126012599999967],[116.27340490000006,-3.130231699999968],[116.27459770000007,-3.125012399999946],[116.26832560000003,-3.110027099999968],[116.26490860000001,-3.111183399999959],[116.25000000000011,-3.105023299999971],[116.2400391000001,-3.099350399999935],[116.23696540000003,-3.096250199999929],[116.23681970000007,-3.093906799999957],[116.23345440000003,-3.094605499999943],[116.22722010000007,-3.092289199999925],[116.21902940000007,-3.091666],[116.21733770000003,-3.097244299999943],[116.215232,-3.09945],[116.22088530000008,-3.098260099999948],[116.2225333,-3.103164399999969],[116.22042760000011,-3.104709699999944],[116.22221290000005,-3.103354099999933],[116.22086260000003,-3.099390899999946],[116.20902150000006,-3.100648499999977],[116.20475680000004,-3.094322],[116.20208660000003,-3.096319199999925],[116.202262,-3.099720699999978],[116.200797,-3.100334799999928],[116.19774530000007,-3.097193399999981],[116.19949240000005,-3.097013799999957],[116.2013462000001,-3.099919099999966],[116.20131580000009,-3.095830199999966],[116.2043751000001,-3.093625199999963],[116.20955570000001,-3.100124299999948],[116.21624680000002,-3.097270699999967],[116.21821520000003,-3.091516499999955],[116.21543120000001,-3.080278699999951],[116.21140380000008,-3.077457699999968],[116.20650290000003,-3.077810399999976],[116.19766590000006,-3.075702799999931],[116.18928030000006,-3.068575299999964],[116.18848,-3.0651184],[116.1803119000001,-3.063731399999938],[116.17706970000006,-3.061706499999957],[116.17606990000002,-3.064827799999932],[116.17947260000005,-3.070692299999962],[116.18385190000004,-3.073138099999937],[116.1822039000001,-3.0773795],[116.18654530000003,-3.079119699999978],[116.18258550000007,-3.078447299999937],[116.17973970000003,-3.075432699999965],[116.17795450000006,-3.078154199999972],[116.17512380000005,-3.077111699999932],[116.17718390000005,-3.077520399999969],[116.17985420000002,-3.074998599999958],[116.18274560000009,-3.075471199999924],[116.18328730000007,-3.073409099999935],[116.17996090000008,-3.072628599999973],[116.1753374000001,-3.065496699999926],[116.17567310000004,-3.063063499999942],[116.17019520000008,-3.059079],[116.16899730000011,-3.052085399999953],[116.16419840000003,-3.054126099999962],[116.16139850000002,-3.057027699999935],[116.16401530000007,-3.053737],[116.16737230000001,-3.052310299999931],[116.16886000000011,-3.0503304],[116.16377870000008,-3.039308299999959],[116.1585146000001,-3.035486699999979],[116.15699610000001,-3.036580099999981],[116.15921630000003,-3.040019299999926],[116.15768280000009,-3.042668599999956],[116.1510224000001,-3.042563899999948],[116.15071720000003,-3.038465799999926],[116.14802380000003,-3.036346899999955],[116.14576560000012,-3.039538299999947],[116.14777210000011,-3.041059699999948],[116.14670400000011,-3.043772599999954],[116.14230180000004,-3.044501899999943],[116.14153140000008,-3.039797299999975],[116.13936440000009,-3.039153299999953],[116.13691540000002,-3.042462199999932],[116.1383115000001,-3.039252],[116.1408904000001,-3.038485099999946],[116.14259170000003,-3.040621299999941],[116.14285120000011,-3.043896199999949],[116.14549850000003,-3.043798799999934],[116.14705490000006,-3.041683299999931],[116.14500260000011,-3.038940699999955],[116.1475127000001,-3.035559499999977],[116.15126630000009,-3.037769699999956],[116.1517166000001,-3.041976399999953],[116.1576447000001,-3.041872599999977],[116.15821690000007,-3.038951099999963],[116.15637830000003,-3.037294199999963],[116.156401,-3.034526199999959],[116.15388340000004,-3.0339091],[116.15292980000004,-3.028553],[116.15777430000003,-3.017792],[116.1579805,-3.015521599999943],[116.15629440000009,-3.014588499999945],[116.14508650000005,-3.012571499999979],[116.14077610000004,-3.014476799999954],[116.13342120000004,-3.011332],[116.13300140000001,-3.0173654],[116.13654150000002,-3.016762099999937],[116.1378767000001,-3.018418599999961],[116.13768590000006,-3.020001499999978],[116.13702230000001,-3.017477099999951],[116.13524450000011,-3.0176024],[116.13469530000009,-3.018814099999929],[116.13272670000003,-3.017681799999934],[116.13277260000007,-3.011539499999969],[116.12978940000005,-3.011663799999951],[116.12643250000008,-3.014583],[116.1220379,-3.013674799999933],[116.12208380000004,-3.018225],[116.12192360000006,-3.0163433],[116.11778840000011,-3.015616199999954],[116.11784160000002,-3.018746199999953],[116.116476,-3.016139799999962],[116.11820020000005,-3.015146199999947],[116.12058850000005,-3.016034599999955],[116.12128260000009,-3.014786799999968],[116.11829190000003,-3.009791],[116.10960950000003,-3.008734599999968],[116.10722160000012,-3.0108313],[116.10680180000008,-3.013210099999981],[116.10700040000006,-3.009709399999963],[116.10183510000002,-3.008882],[116.10085090000007,-3.0103195],[116.10183510000002,-3.013314499999979],[116.09911130000012,-3.014225899999929],[116.0989512000001,-3.0167858],[116.09618940000007,-3.019877199999939],[116.09975220000001,-3.026094699999931],[116.09847040000011,-3.0266454],[116.09872240000004,-3.024917899999934],[116.09432,-3.020536],[116.09650980000004,-3.022048499999926],[116.0958154000001,-3.019225499999948],[116.09832540000002,-3.014207099999965],[116.10113330000001,-3.012934],[116.10009550000007,-3.009721799999966],[116.10258280000005,-3.0073991],[116.09938590000002,-3.000033],[116.09380950000002,-2.999259499999937],[116.08712530000003,-3.003550699999948],[116.08614110000008,-3.010741399999972],[116.08324950000008,-3.014628699999946],[116.0888725000001,-3.014832399999932],[116.08926180000003,-3.015348399999937],[116.08852180000008,-3.017681599999946],[116.08902510000007,-3.0156105],[116.08398960000011,-3.015289699999926],[116.08220430000006,-3.018725599999925],[116.08389820000002,-3.022363499999926],[116.07983160000003,-3.022405299999946],[116.08029720000002,-3.026195899999948],[116.08501980000005,-3.026172799999927],[116.08550800000012,-3.029474899999968],[116.08481360000007,-3.026597799999934],[116.07998420000001,-3.026593599999956],[116.0793129000001,-3.022332499999948],[116.08090740000011,-3.021103599999947],[116.08316570000011,-3.021756799999935],[116.08089220000011,-3.01981],[116.07452930000011,-3.026353799999924],[116.0781684000001,-3.027704699999958],[116.078916,-3.031450399999926],[116.08176960000003,-3.032031699999948],[116.08144920000007,-3.032908899999939],[116.07774130000007,-3.031042299999967],[116.07479630000012,-3.033156499999961],[116.0721946000001,-3.032267799999943],[116.07259120000003,-3.035768899999937],[116.0708519000001,-3.036590599999954],[116.07216390000008,-3.035307199999977],[116.0718207000001,-3.031905599999959],[116.07461310000008,-3.0323422],[116.07756580000012,-3.029441],[116.0773292,-3.028237699999977],[116.07321700000011,-3.028994099999977],[116.07308730000011,-3.026054],[116.08124310000005,-3.017847299999971],[116.0853403000001,-3.009076299999947],[116.08338690000005,-3.006677499999967],[116.07791650000001,-3.016659499999946],[116.07283550000011,-3.021250499999951],[116.067205,-3.022982399999933],[116.0646872000001,-3.025368399999934],[116.06394710000006,-3.0282533],[116.0660832000001,-3.029322599999944],[116.0657476,-3.030814899999939],[116.06785330000002,-3.0313142],[116.067838,-3.032444899999973],[116.06702170000005,-3.033068399999934],[116.06741850000003,-3.0317752],[116.0650687000001,-3.0310043],[116.06560280000008,-3.029204599999957],[116.06466420000004,-3.029176599999971],[116.062261,-3.032024],[116.0625050000001,-3.033987199999956],[116.0608572000001,-3.035306399999968],[116.0613608000001,-3.032457399999942],[116.05874370000004,-3.034472299999948],[116.06223050000006,-3.036420199999952],[116.06107830000008,-3.040770299999963],[116.0629325000001,-3.0414232],[116.06280260000005,-3.043006099999957],[116.05943040000011,-3.0405608],[116.05842340000004,-3.036163599999952],[116.05527230000007,-3.040439599999956],[116.05695850000006,-3.034344099999942],[116.05339550000008,-3.033445499999971],[116.04742170000009,-3.038849599999935],[116.04655190000005,-3.046329699999944],[116.0455981,-3.044094599999937],[116.04328640000006,-3.045992099999978],[116.04164620000006,-3.045384599999977],[116.04226420000009,-3.048053599999946],[116.04060860000004,-3.050214099999948],[116.04187500000012,-3.047781899999961],[116.0410968000001,-3.045040299999926],[116.04338560000008,-3.045422299999927],[116.0455449000001,-3.043497499999944],[116.04818460000001,-3.034969599999954],[116.045461,-3.03788],[116.04578120000008,-3.039191899999935],[116.0427218000001,-3.040265599999941],[116.04503360000001,-3.039155],[116.04514030000007,-3.037716899999964],[116.04842110000004,-3.03402],[116.04241660000002,-3.034638899999948],[116.03541280000002,-3.039019799999949],[116.04224120000003,-3.033933099999956],[116.0483752,-3.033088299999974],[116.044179,-3.030280399999981],[116.04419440000004,-3.028435],[116.04427830000009,-3.029864299999929],[116.05020650000006,-3.033496899999932],[116.0527088,-3.031581399999936],[116.051267,-3.031761099999926],[116.05096190000006,-3.030521499999963],[116.04971810000006,-3.032212],[116.04996990000006,-3.031063399999937],[116.05141170000002,-3.029897799999958],[116.05259440000009,-3.031228499999941],[116.05305220000002,-3.029537399999981],[116.052709,-3.032648799999947],[116.0597967000001,-3.031614799999943],[116.06004070000006,-3.02806],[116.05803420000007,-3.026773699999978],[116.05963660000009,-3.026865599999951],[116.06110880000006,-3.024623499999961],[116.05933140000002,-3.023409799999968],[116.06233740000005,-3.024271799999951],[116.06891380000002,-3.016986499999973],[116.07458250000002,-3.014060499999971],[116.09069230000011,-2.995177199999944],[116.07126570000003,-2.999285699999973],[116.06726590000005,-3.001607099999944],[116.06821190000005,-3.006746],[116.0672125000001,-3.006600399999968],[116.0668998000001,-3.001923399999953],[116.05650070000002,-3.008671699999979],[116.053197,-3.009084899999948],[116.0535559000001,-3.010007899999948],[116.05571490000011,-3.009856],[116.05653890000008,-3.010978399999942],[116.05294540000011,-3.012612599999954],[116.052358,-3.009048],[116.05618790000005,-3.0071969],[116.05341840000006,-3.006018599999948],[116.05139650000001,-3.008594899999935],[116.04774980000002,-3.0070539],[116.05144990000008,-3.007925499999942],[116.05328110000005,-3.005159099999958],[116.05562320000001,-3.006273799999974],[116.0614905000001,-3.001213199999938],[116.06384460000004,-2.997795899999971],[116.06181470000001,-2.993931499999974],[116.06399670000008,-2.996231099999932],[116.06891870000004,-2.992924499999958],[116.07944780000003,-2.994588799999974],[116.0838189000001,-2.992367199999933],[116.08468070000004,-2.9890119],[116.0796812000001,-2.980115599999976],[116.06761070000005,-2.975881],[116.06303160000004,-2.969707799999981],[116.04846080000004,-2.9705365],[116.04329830000006,-2.9642271],[116.04853830000002,-2.969758699999943],[116.05199170000003,-2.967970599999944],[116.05305460000011,-2.968957499999931],[116.0580308000001,-2.968247099999928],[116.05982430000006,-2.966412399999967],[116.05532010000002,-2.964879699999926],[116.05465850000007,-2.961487],[116.05209140000011,-2.958952],[116.0546,-2.9608718],[116.05555890000005,-2.964364299999943],[116.06113230000005,-2.965671699999973],[116.06222830000002,-2.9643519],[116.06203940000012,-2.959005699999977],[116.06236550000006,-2.966767299999958],[116.06962050000004,-2.973974],[116.07282080000004,-2.9750079],[116.07661650000011,-2.972442099999967],[116.0752854000001,-2.967773299999976],[116.07718710000006,-2.971999299999936],[116.07441580000011,-2.976058599999931],[116.08079470000007,-2.97904],[116.08775670000011,-2.987132899999949],[116.09913670000003,-2.978376799999978],[116.11448280000002,-2.972210899999936],[116.11327170000004,-2.968356299999925],[116.10908730000006,-2.966525699999977],[116.10753770000008,-2.967311399999971],[116.10914920000005,-2.971772399999963],[116.10623470000007,-2.972231399999941],[116.10760320000009,-2.968740699999955],[116.10679830000004,-2.966451499999948],[116.11212410000007,-2.966428599999972],[116.11151530000006,-2.963316299999974],[116.0981571000001,-2.957226599999956],[116.09231430000011,-2.956850899999949],[116.08871320000003,-2.960882399999946],[116.08512960000007,-2.96059],[116.08309510000004,-2.963202599999931],[116.08521220000011,-2.960246299999937],[116.08837,-2.960719299999937],[116.0906695000001,-2.957157099999961],[116.08577480000008,-2.957569199999966],[116.08162330000005,-2.9555757],[116.080807,-2.9590486],[116.07884740000009,-2.959146499999974],[116.07886310000004,-2.9554919],[116.07622150000009,-2.9567743],[116.07901390000006,-2.955048799999929],[116.07950380000011,-2.958676599999933],[116.08113060000005,-2.957040699999936],[116.078512,-2.947856899999977],[116.0723772,-2.9461331],[116.07037990000003,-2.9405863],[116.06847830000004,-2.940991799999949],[116.0681843000001,-2.942918299999974],[116.065781,-2.943051899999944],[116.0645058,-2.938799299999971],[116.06573490000005,-2.942744299999958],[116.0677425,-2.942700799999955],[116.06775490000007,-2.939525699999933],[116.07096540000009,-2.937058899999954],[116.071612,-2.938181099999952],[116.07037190000005,-2.937664499999926],[116.06814310000004,-2.940068799999949],[116.07079720000002,-2.940197699999942],[116.07401850000008,-2.945311299999958],[116.07578220000005,-2.944381],[116.07917430000009,-2.9463016],[116.08141410000007,-2.951468599999941],[116.08666910000011,-2.955697399999963],[116.09404590000008,-2.9546632],[116.09996360000002,-2.9555184],[116.11088590000008,-2.959941699999945],[116.11742430000004,-2.967455099999938],[116.12054590000002,-2.965377],[116.12242260000005,-2.961637099999962],[116.1210029,-2.955951],[116.10837920000006,-2.950995299999931],[116.10337130000005,-2.945618299999978],[116.101863,-2.933258099999932],[116.10695380000004,-2.9202017],[116.09994310000002,-2.916186499999981],[116.0981882000001,-2.911752599999943],[116.09590710000009,-2.911099499999978],[116.09815010000011,-2.9101243],[116.09655550000002,-2.9050754],[116.09270250000009,-2.905723599999931],[116.08771280000008,-2.913309099999935],[116.08283010000002,-2.915476099999978],[116.08160170000008,-2.917600899999968],[116.08212820000006,-2.919826599999965],[116.08095320000007,-2.922304199999928],[116.08186110000008,-2.919148],[116.07965620000004,-2.918133],[116.08128120000003,-2.917618699999935],[116.08197560000008,-2.914878399999964],[116.07788610000011,-2.910107799999935],[116.07278970000004,-2.913921],[116.07258370000011,-2.915947099999926],[116.0702566000001,-2.916840699999966],[116.07033290000004,-2.919789799999933],[116.06525160000001,-2.9220198],[116.07026420000011,-2.919292199999973],[116.0697609,-2.916921699999932],[116.07249980000006,-2.915693799999929],[116.0723928000001,-2.914174],[116.07366710000008,-2.912383899999952],[116.0776039000001,-2.909320599999944],[116.07588720000001,-2.903330799999935],[116.07655110000007,-2.9011242],[116.07454450000012,-2.898662],[116.07655870000008,-2.900409499999967],[116.07773350000002,-2.908208099999968],[116.08015220000004,-2.9090604],[116.08157870000002,-2.913358399999936],[116.08548520000011,-2.913361499999951],[116.09256520000008,-2.901562299999966],[116.0929086000001,-2.903923599999928],[116.10074390000011,-2.901487499999973],[116.10169760000008,-2.897897],[116.09987440000009,-2.8963849],[116.10343730000011,-2.8901731],[116.10268970000004,-2.8888247],[116.09821110000007,-2.888197],[116.09686060000001,-2.886151499999926],[116.09848570000008,-2.887862499999926],[116.10297190000006,-2.888544499999966],[116.10385680000002,-2.891204699999946],[116.10059160000003,-2.895354199999929],[116.10210970000003,-2.898105399999963],[116.1011942,-2.901614499999937],[116.09773810000002,-2.903909399999975],[116.09974450000004,-2.907791699999962],[116.10042370000008,-2.914214899999934],[116.10294140000008,-2.916804099999979],[116.10501660000011,-2.916968599999961],[116.12426540000001,-2.895098099999927],[116.13059880000003,-2.890001099999949],[116.131942,-2.886131399999954],[116.1312464,-2.875893699999949],[116.12361720000001,-2.872096899999974],[116.12026030000004,-2.8719315],[116.12068750000003,-2.880607],[116.11943620000011,-2.871306699999934],[116.11156270000004,-2.870332599999927],[116.10643560000005,-2.868456099999946],[116.09631900000011,-2.870275399999969],[116.102148,-2.868543199999976],[116.10213250000004,-2.867150099999947],[116.09605190000002,-2.863472599999966],[116.09364110000001,-2.863326],[116.0933281,-2.8616613],[116.09056630000009,-2.860636899999975],[116.07435360000011,-2.864938799999948],[116.0843407000001,-2.860496199999943],[116.07951120000007,-2.854784399999971],[116.07672660000003,-2.854646399999979],[116.0752844000001,-2.850665099999958],[116.07211830000006,-2.851087699999937],[116.0695548000001,-2.849385],[116.06727350000006,-2.850287699999967],[116.06715910000003,-2.847809],[116.06294750000006,-2.844702899999959],[116.0670143000001,-2.847130499999935],[116.06825770000012,-2.848886399999969],[116.07269040000006,-2.850183499999957],[116.07754280000006,-2.849264799999958],[116.0842338000001,-2.852436199999943],[116.08604960000002,-2.853939299999979],[116.08637770000007,-2.855441199999973],[116.09083350000003,-2.858040899999935],[116.0979747,-2.858363199999928],[116.09679960000005,-2.856833499999937],[116.09338930000001,-2.855989499999964],[116.09269490000008,-2.853790799999956],[116.08945230000006,-2.852178],[116.09268730000008,-2.853157599999975],[116.09456430000012,-2.855990399999939],[116.09699030000002,-2.856281799999977],[116.09670030000007,-2.8518129],[116.098234,-2.856870799999967],[116.10000390000005,-2.857822],[116.09905030000004,-2.854827099999966],[116.10024810000004,-2.852928299999974],[116.09984370000006,-2.855596599999956],[116.10349840000003,-2.8566397],[116.10464260000003,-2.860259],[116.10840210000003,-2.863347499999975],[116.1128979,-2.863684899999953],[116.1140421,-2.861234299999978],[116.11213480000004,-2.859450699999968],[116.1128672000001,-2.857596899999976],[116.112524,-2.859360599999945],[116.11433210000007,-2.860682699999927],[116.114256,-2.864273899999944],[116.12239640000007,-2.865763799999968],[116.12810350000007,-2.864420299999949],[116.12465490000011,-2.860582099999931],[116.1284008,-2.862728899999979],[116.1296446,-2.8661131],[116.13274130000002,-2.865864299999942],[116.13488230000007,-2.853207299999951],[116.13112640000008,-2.840070199999957],[116.12365530000011,-2.836672699999951],[116.1164073000001,-2.838141699999937],[116.1143320000001,-2.836882699999933],[116.12169470000003,-2.8361375],[116.12777530000005,-2.837661799999978],[116.1285286000001,-2.836329899999953],[116.12186910000003,-2.831275399999925],[116.1009805000001,-2.822697299999959],[116.11973400000011,-2.828691099999958],[116.11801720000005,-2.824691499999972],[116.10333040000012,-2.812169599999947],[116.10721660000002,-2.814455099999975],[116.11293280000007,-2.814157299999977],[116.11114260000011,-2.810712199999955],[116.116456,-2.813378499999942],[116.11542860000009,-2.810761399999933],[116.1098535000001,-2.807807599999933],[116.11096640000005,-2.807426199999952],[116.10682110000005,-2.803705599999944],[116.11751430000004,-2.810955399999955],[116.11893250000003,-2.810264899999936],[116.11873780000008,-2.806527599999924],[116.11949670000001,-2.809172699999976],[116.1217726000001,-2.8074725],[116.11906190000002,-2.810941699999944],[116.11934190000011,-2.814547699999935],[116.12189890000002,-2.817751599999951],[116.1254689000001,-2.819355199999961],[116.12755220000008,-2.819341799999961],[116.1293988000001,-2.817383199999938],[116.12795090000009,-2.8140789],[116.12969750000002,-2.8159021],[116.13294050000002,-2.811151799999948],[116.12879770000006,-2.804508899999973],[116.12711910000007,-2.804453299999977],[116.1284161000001,-2.803088299999956],[116.127226,-2.799450899999954],[116.12908770000001,-2.803206399999965],[116.130873,-2.803153499999951],[116.13007160000006,-2.8051521],[116.13435690000006,-2.811099099999979],[116.13529890000007,-2.810568299999943],[116.13862490000008,-2.803938699999946],[116.13285640000004,-2.796650899999975],[116.13407720000009,-2.791911599999935],[116.1329482000001,-2.789206],[116.14154650000012,-2.774241099999927],[116.13378740000007,-2.789161399999955],[116.13510730000007,-2.7975933],[116.13852010000005,-2.799008199999946],[116.14218720000008,-2.793992599999967],[116.14149320000001,-2.788859499999944],[116.1428284000001,-2.792289],[116.145018,-2.790092399999935],[116.143852,-2.793347299999937],[116.1465363000001,-2.795394499999929],[116.14958030000003,-2.791624499999955],[116.1473830000001,-2.795820299999946],[116.14479660000006,-2.794597199999941],[116.1419605000001,-2.796176099999968],[116.14265030000001,-2.800361799999962],[116.14657430000011,-2.799130499999933],[116.14714640000011,-2.800343099999964],[116.1442320000001,-2.800910899999963],[116.14731440000003,-2.803219899999931],[116.1431639000001,-2.801344299999926],[116.14199970000004,-2.802560899999946],[116.13908480000009,-2.810064799999964],[116.13865740000006,-2.815694199999939],[116.1448425000001,-2.813512599999967],[116.13762930000007,-2.817725499999938],[116.13520320000009,-2.826647499999979],[116.14353390000008,-2.837704599999938],[116.14533070000004,-2.836354299999925],[116.1475891,-2.829535199999953],[116.1511521000001,-2.828235199999938],[116.1515869000001,-2.82696],[116.150618,-2.825068699999974],[116.150885,-2.8233139],[116.15186160000007,-2.822618099999943],[116.15263960000004,-2.822862899999961],[116.15170910000006,-2.822835099999963],[116.15092320000008,-2.824128099999939],[116.15185380000003,-2.827928099999951],[116.14806210000006,-2.830177799999944],[116.14449880000006,-2.838924599999928],[116.1438184000001,-2.843098099999963],[116.14575050000008,-2.844378499999948],[116.14865720000012,-2.844136399999968],[116.15249480000011,-2.841488699999957],[116.15219720000005,-2.834821499999975],[116.15691360000005,-2.832048],[116.15738540000007,-2.828248799999926],[116.15777450000007,-2.831768],[116.15997180000011,-2.833162699999946],[116.160994,-2.833190599999966],[116.16148980000003,-2.831038],[116.1622301000001,-2.8306767],[116.16303120000009,-2.830849099999966],[116.16400010000007,-2.832704299999932],[116.16239010000004,-2.830912],[116.16090240000005,-2.833570499999951],[116.15717170000005,-2.8325546],[116.15331890000004,-2.834505699999966],[116.15248730000008,-2.836748599999964],[116.15414270000008,-2.841761299999973],[116.1480289000001,-2.847069099999942],[116.149445,-2.853482799999938],[116.15651570000011,-2.857512299999939],[116.15856020000001,-2.857070599999929],[116.16161950000003,-2.851934599999936],[116.16081860000008,-2.849871499999949],[116.16403820000005,-2.853655199999935],[116.16672380000011,-2.852381599999944],[116.16558690000011,-2.854298599999936],[116.1616424,-2.852956899999981],[116.15862140000002,-2.858427499999948],[116.1519684000001,-2.856939099999977],[116.15080120000005,-2.857960399999968],[116.151188,-2.867706299999952],[116.1540513000001,-2.869912699999929],[116.15749960000005,-2.868802599999981],[116.1561034,-2.869534299999941],[116.15881950000005,-2.870893199999955],[116.159079,-2.867464899999959],[116.160132,-2.869293],[116.15957490000005,-2.871825499999943],[116.15632470000003,-2.874537],[116.15709520000007,-2.876174899999967],[116.16045230000009,-2.874919899999952],[116.1587128000001,-2.878021499999932],[116.16026160000001,-2.875109799999962],[116.15753790000008,-2.876718],[116.15604250000001,-2.875468499999954],[116.15655370000002,-2.873478699999964],[116.15868990000001,-2.872060099999942],[116.15811770000005,-2.870919799999967],[116.15526440000008,-2.870700599999964],[116.1537499000001,-2.873719699999981],[116.1552785,-2.878942499999937],[116.15279680000003,-2.888367599999981],[116.1555595000001,-2.900191099999972],[116.16079220000006,-2.901814299999955],[116.1616944000001,-2.906419399999947],[116.16634920000001,-2.9066943],[116.171507,-2.910452199999952],[116.1738855000001,-2.9171662],[116.178579,-2.918752799999936],[116.17718080000009,-2.915983599999947],[116.17929720000006,-2.917857699999956],[116.18089490000011,-2.9162577],[116.17855280000003,-2.921186099999943],[116.1823346000001,-2.924201299999936],[116.18717270000002,-2.9230869],[116.18985830000008,-2.920835199999942],[116.18907810000007,-2.918840699999976],[116.19157440000004,-2.9174515],[116.19063330000006,-2.920655099999976],[116.19446380000011,-2.919093],[116.19752950000009,-2.9160399],[116.19691590000002,-2.910400799999934],[116.18819780000001,-2.906097299999942],[116.1872327000001,-2.908406699999944],[116.18479190000005,-2.9013256],[116.1881307000001,-2.8963849],[116.1859085000001,-2.894594799999936],[116.18328870000005,-2.895984],[116.18205400000011,-2.895113699999968],[116.18358550000005,-2.895537099999956],[116.1854148000001,-2.893923799999925],[116.18450170000006,-2.892532099999926],[116.18914350000011,-2.896485],[116.19186190000005,-2.895418799999959],[116.1919865000001,-2.893854],[116.18791010000007,-2.893925599999932],[116.18682460000002,-2.891714099999945],[116.18808310000009,-2.893751899999927],[116.19176460000006,-2.893208],[116.19255450000003,-2.894227],[116.19218290000003,-2.895617799999968],[116.18943890000003,-2.898000399999944],[116.19062450000001,-2.898349],[116.195496,-2.891993499999955],[116.195328,-2.884988599999929],[116.19792160000009,-2.880030699999963],[116.19718560000001,-2.877033099999949],[116.19835670000009,-2.873291399999971],[116.19508930000006,-2.869411899999932],[116.19665280000004,-2.868176399999925],[116.19677810000007,-2.8648885],[116.1989039,-2.8666576],[116.20184960000006,-2.864892],[116.20310540000003,-2.862184799999966],[116.20201550000002,-2.861897],[116.20101760000011,-2.860960899999952],[116.2019825000001,-2.860360899999932],[116.20112150000011,-2.858832799999959],[116.20228970000005,-2.860361099999977],[116.20127370000012,-2.860969699999941],[116.20148680000011,-2.8613045],[116.203525,-2.862140699999941],[116.2020447000001,-2.865350499999977],[116.19904840000004,-2.866883199999961],[116.19704550000006,-2.865354199999956],[116.19699270000001,-2.868402099999969],[116.19575480000003,-2.869543299999975],[116.198646,-2.8734298],[116.198124,-2.880125299999975],[116.1958962000001,-2.885013899999933],[116.1969547000001,-2.890454499999976],[116.19227950000004,-2.8987725],[116.18726330000004,-2.900159899999949],[116.18612530000007,-2.902345],[116.187779,-2.904507199999955],[116.19074340000009,-2.904807399999925],[116.19257410000012,-2.902848699999936],[116.19583410000007,-2.902923299999941],[116.19559790000005,-2.899947199999929],[116.20169370000008,-2.896792],[116.19632700000011,-2.899653399999977],[116.19600690000004,-2.903171799999939],[116.19257260000006,-2.903417699999977],[116.19160820000002,-2.904758399999935],[116.19883140000002,-2.909912],[116.1997679000001,-2.914124299999969],[116.2023742,-2.912789299999929],[116.2037798,-2.916491399999927],[116.20362920000002,-2.919844699999942],[116.20244450000007,-2.918204399999979],[116.2030635000001,-2.916267399999981],[116.20019810000008,-2.9156443],[116.19060470000011,-2.926095],[116.1927353000001,-2.928759099999979],[116.20352450000007,-2.935479099999952],[116.21069220000004,-2.934226799999976],[116.20538590000001,-2.935788],[116.20879420000006,-2.944348199999979],[116.2078570000001,-2.962680899999953],[116.20951450000007,-2.9761941],[116.21304650000002,-2.989354599999956],[116.213022,-2.993310399999928],[116.21054430000004,-2.996596499999953],[116.21437090000006,-3.002512599999932],[116.22056210000005,-3.005941399999926],[116.22032590000003,-3.007467099999928],[116.23027880000006,-3.005157099999963],[116.23723040000004,-3.007642799999928],[116.247649,-3.004631],[116.2584816000001,-3.003517899999963],[116.26412070000003,-3.004878099999928],[116.27054070000008,-3.0025498],[116.28642730000001,-2.978976499999931],[116.28860840000004,-2.978684699999974],[116.30043740000008,-2.9659453],[116.31559820000007,-2.947336299999961],[116.3188149,-2.9405914],[116.318456,-2.9388252],[116.32259540000007,-2.935241599999927],[116.32627990000003,-2.923607499999946],[116.33632090000003,-2.905919299999937],[116.34453560000009,-2.893880099999933],[116.3507072000001,-2.887944899999979],[116.34984520000012,-2.883737799999949],[116.35172190000003,-2.887466],[116.3531028000001,-2.887640499999975],[116.35966760000008,-2.883157599999947],[116.36391590000005,-2.877865],[116.36023470000009,-2.870044599999972],[116.35969960000011,-2.860070599999972],[116.3658703000001,-2.830256799999972],[116.37129290000007,-2.816376599999955],[116.37027840000007,-2.814480499999945],[116.37212050000005,-2.804168299999958],[116.37201430000005,-2.802873599999941],[116.36975,-2.803268099999968],[116.367198,-2.798160799999948],[116.3616158000001,-2.779344],[116.35910690000003,-2.765185],[116.36060180000004,-2.720163899999932],[116.36642640000002,-2.685186899999962],[116.36626030000002,-2.673335699999939],[116.37011080000002,-2.6558613],[116.380509,-2.631494399999951],[116.4107656000001,-2.587913899999933],[116.41474310000001,-2.5782291],[116.41322830000001,-2.577194199999951],[116.4112249000001,-2.579390899999964],[116.400167,-2.581065199999955],[116.39778980000006,-2.582803],[116.39614060000008,-2.5820708],[116.39332610000008,-2.585692799999947],[116.39094150000005,-2.585224199999971],[116.38462830000003,-2.575139199999967],[116.37985910000009,-2.571111899999948],[116.3783932,-2.567304399999955],[116.37694680000004,-2.567851099999928],[116.37218750000011,-2.565410399999962],[116.35886720000008,-2.566572199999939],[116.35888180000006,-2.5637751],[116.36130060000005,-2.5638092],[116.35890630000006,-2.5615247],[116.3583609000001,-2.552413099999967],[116.35649020000005,-2.549706399999934],[116.3448115000001,-2.561036499999943],[116.33213,-2.577063599999974],[116.33245130000012,-2.581611099999975],[116.33511390000001,-2.582272899999964],[116.33527420000007,-2.583684199999936],[116.33293960000003,-2.585456099999931],[116.33497660000012,-2.582987499999945],[116.33247410000001,-2.582244299999957],[116.33158910000009,-2.579728899999964],[116.3295293000001,-2.5817],[116.32756080000001,-2.5921929],[116.32233450000001,-2.599201099999959],[116.323685,-2.600540699999954],[116.32625610000002,-2.598334799999975],[116.32804150000004,-2.599557],[116.3264163,-2.598805299999981],[116.3239215000001,-2.600993199999948],[116.321938,-2.600024099999928],[116.3177875,-2.602138799999977],[116.31607840000004,-2.608253199999979],[116.31580380000003,-2.615589799999952],[116.32335690000002,-2.620741399999929],[116.318741,-2.627116599999965],[116.32091560000003,-2.631324399999926],[116.32764470000006,-2.632576499999971],[116.33025390000012,-2.6344415],[116.33389330000011,-2.630354399999931],[116.33892090000006,-2.631569399999933],[116.34111070000006,-2.627463399999954],[116.34679460000007,-2.6239202],[116.34818330000007,-2.620736499999964],[116.34748900000011,-2.623793899999953],[116.34160670000006,-2.627689799999928],[116.341126,-2.630412599999943],[116.33794450000005,-2.632292599999971],[116.333649,-2.630915199999947],[116.33019290000004,-2.635337099999958],[116.3270725000001,-2.632983299999978],[116.3205723000001,-2.632093199999929],[116.31735250000008,-2.626726899999937],[116.32273140000007,-2.620822399999952],[116.3149264000001,-2.616141099999936],[116.313965,-2.608433],[116.28781110000011,-2.625208599999951],[116.28135650000002,-2.635192099999927],[116.2717358000001,-2.642993499999932],[116.27055340000004,-2.648891099999958],[116.26808130000006,-2.652282],[116.26262640000004,-2.655960599999958],[116.25698810000006,-2.664922099999956],[116.25176180000005,-2.670156799999972],[116.2422557000001,-2.667826],[116.24341530000004,-2.671463399999936],[116.23989050000012,-2.6745279],[116.23975310000003,-2.676653699999974],[116.24093570000002,-2.677658599999972],[116.2424539000001,-2.676474399999961],[116.24558980000006,-2.676946799999939],[116.24700880000012,-2.679363],[116.24670360000005,-2.680466499999966],[116.24468190000005,-2.6799858],[116.24520830000006,-2.682917099999941],[116.243934,-2.682907299999954],[116.244346,-2.679831799999931],[116.24667310000007,-2.679435199999944],[116.24475040000004,-2.676846799999964],[116.2422021000001,-2.677261299999941],[116.23990580000009,-2.680625099999929],[116.24189710000007,-2.677704399999925],[116.24013460000003,-2.678029],[116.23941730000001,-2.676490699999931],[116.23715160000006,-2.676778699999943],[116.242782,-2.6714539],[116.24112630000002,-2.669842699999947],[116.24130960000002,-2.6675179],[116.23775420000004,-2.666457299999934],[116.23104790000002,-2.670732],[116.2293922,-2.674123299999962],[116.23137580000002,-2.6798599],[116.23044530000004,-2.683152099999973],[116.23453470000004,-2.6899304],[116.23611390000008,-2.695567299999936],[116.23503820000008,-2.6975749],[116.23093340000003,-2.697762199999943],[116.23024670000007,-2.699019199999952],[116.23086480000006,-2.697291799999959],[116.23553390000006,-2.696435299999962],[116.23348930000009,-2.689341699999943],[116.22974330000011,-2.684581],[116.22919390000004,-2.680600299999981],[116.22366250000005,-2.683962],[116.223281,-2.686702799999978],[116.22530290000009,-2.689644099999953],[116.22349480000003,-2.689643],[116.22116010000002,-2.693685199999948],[116.22357870000008,-2.688032799999974],[116.22258680000004,-2.684676],[116.21792510000012,-2.686382699999967],[116.21784140000011,-2.689440299999944],[116.21551420000003,-2.691329499999938],[116.21453770000005,-2.696403799999928],[116.21491150000008,-2.691292899999951],[116.2170784000001,-2.688580399999978],[116.21153920000006,-2.68997],[116.21052450000002,-2.696301699999935],[116.2023991000001,-2.699688699999967],[116.2025976000001,-2.7035787],[116.20169720000001,-2.705233599999929],[116.20055280000008,-2.704409599999963],[116.19700520000004,-2.705899899999963],[116.19854640000005,-2.7090671],[116.19528850000006,-2.706522899999925],[116.20016370000008,-2.703911799999958],[116.20187270000008,-2.704636599999958],[116.2018346000001,-2.699706399999968],[116.20984570000007,-2.696183599999927],[116.20989910000003,-2.690964],[116.2126991,-2.687799599999948],[116.2090902000001,-2.686349899999925],[116.21200470000008,-2.686125599999968],[116.21466730000009,-2.688018],[116.22709570000006,-2.680535599999928],[116.22552410000003,-2.676273799999933],[116.223159,-2.678343899999959],[116.22166360000006,-2.6775921],[116.22096940000006,-2.679075299999965],[116.22058040000002,-2.677338199999951],[116.21678830000008,-2.678339899999969],[116.22031330000004,-2.6763972],[116.22354050000001,-2.677394299999946],[116.22460090000004,-2.674518299999932],[116.2179023000001,-2.671827299999961],[116.21350770000004,-2.665148299999942],[116.2168266000001,-2.667638199999942],[116.21866510000007,-2.671529199999952],[116.2253409000001,-2.673894599999926],[116.230117,-2.668198399999937],[116.228202,-2.666903599999955],[116.23313070000006,-2.666535799999963],[116.2348396000001,-2.662402699999973],[116.23716680000007,-2.664403399999969],[116.25159410000003,-2.666809499999943],[116.25777390000007,-2.660001399999942],[116.261024,-2.650812299999927],[116.25054880000005,-2.644962],[116.24716880000005,-2.637876699999936],[116.24090520000004,-2.636009299999955],[116.23887590000004,-2.636550799999952],[116.23818150000011,-2.638024899999948],[116.24153070000011,-2.640614199999959],[116.23541180000007,-2.651140399999974],[116.24108080000008,-2.640387799999928],[116.2385782,-2.639680699999928],[116.237716,-2.638368399999933],[116.23789140000008,-2.636568299999965],[116.24104250000005,-2.6354033],[116.24572690000002,-2.636690699999974],[116.24706230000004,-2.633706199999949],[116.24642890000007,-2.629092199999945],[116.24746660000005,-2.628921],[116.24659680000002,-2.625654699999927],[116.2418513,-2.623688799999968],[116.238952,-2.627314599999977],[116.24167570000009,-2.630898599999966],[116.2389902000001,-2.633420899999976],[116.2359689000001,-2.633880399999953],[116.231437,-2.6309737],[116.23062060000007,-2.633831799999939],[116.22900310000011,-2.634310299999925],[116.23104780000006,-2.630729199999962],[116.23652590000006,-2.633582199999978],[116.24018810000007,-2.631892799999946],[116.24098920000006,-2.630074899999954],[116.23826530000008,-2.627268899999933],[116.24101210000003,-2.622892199999967],[116.24661970000011,-2.624487699999975],[116.23736520000011,-2.6170913],[116.23398530000009,-2.617007799999953],[116.22624130000008,-2.623299199999963],[116.21542280000006,-2.625481599999944],[116.21242440000003,-2.630717499999946],[116.21097470000007,-2.6308071],[116.20893770000009,-2.629132199999958],[116.2067939000001,-2.632016599999929],[116.20195660000002,-2.629498599999977],[116.202117,-2.625654099999963],[116.20056040000009,-2.627697499999954],[116.19945410000003,-2.627479699999981],[116.1983633000001,-2.623688699999946],[116.19766140000002,-2.625868299999979],[116.18909340000005,-2.623311799999954],[116.18975730000011,-2.628721799999937],[116.18858970000008,-2.630629799999952],[116.18668250000007,-2.630583299999955],[116.18507280000006,-2.626421],[116.18279140000004,-2.6268537],[116.18195220000007,-2.6300917],[116.17839680000009,-2.628723399999956],[116.17826720000005,-2.6326132],[116.17572650000011,-2.6366461],[116.17459250000002,-2.635921599999961],[116.17778650000002,-2.631853],[116.1759479000001,-2.6286946],[116.17914460000009,-2.628208299999926],[116.181441,-2.629449099999931],[116.1821658,-2.626618099999973],[116.18463770000005,-2.625914099999932],[116.18641550000007,-2.62663],[116.18678940000007,-2.629624499999977],[116.18803280000009,-2.629941899999949],[116.18921540000008,-2.628052],[116.18816250000009,-2.623121199999957],[116.19477740000002,-2.623957699999949],[116.19576160000008,-2.620303699999965],[116.19831750000003,-2.620594799999935],[116.19608950000008,-2.618304699999953],[116.19781390000003,-2.616876499999933],[116.20350560000008,-2.616862],[116.2038563000001,-2.617016],[116.20405490000007,-2.617676499999959],[116.20396330000005,-2.619784299999935],[116.20755680000002,-2.619587499999966],[116.20786180000005,-2.613255399999957],[116.21109690000003,-2.61513],[116.21082210000009,-2.621245099999953],[116.21281350000004,-2.623887799999977],[116.21482760000004,-2.624685199999931],[116.223922,-2.622284599999944],[116.23434370000007,-2.614628799999934],[116.2463603000001,-2.619665899999973],[116.25029710000001,-2.629212199999927],[116.2559582,-2.6346705],[116.26292380000007,-2.637840899999958],[116.27307120000012,-2.637548399999957],[116.2757643000001,-2.632990599999971],[116.2781599000001,-2.631598799999949],[116.27709190000007,-2.626839799999971],[116.27284210000005,-2.622504099999958],[116.27137730000004,-2.622439899999961],[116.27295650000008,-2.624494399999946],[116.27217080000003,-2.626402699999971],[116.27179680000006,-2.6236795],[116.26894350000009,-2.623343099999943],[116.27275830000008,-2.6200887],[116.27320840000004,-2.615547599999957],[116.27014130000009,-2.614053199999944],[116.2604520000001,-2.615992499999948],[116.25519530000008,-2.619915399999968],[116.25456190000011,-2.6105521],[116.25600380000003,-2.618848499999956],[116.25859020000007,-2.615548099999955],[116.265205,-2.614828299999942],[116.2689894,-2.612062299999934],[116.2678601,-2.606850899999927],[116.26248120000002,-2.601555599999926],[116.26946220000002,-2.6066981],[116.26999620000004,-2.609728899999936],[116.28021220000005,-2.622291299999972],[116.281723,-2.617669399999954],[116.279785,-2.615307199999961],[116.28214250000008,-2.6129836],[116.27975450000008,-2.614167299999963],[116.27870170000006,-2.6137596],[116.27753440000004,-2.608629599999972],[116.27874740000004,-2.607038199999977],[116.27809900000011,-2.609344599999929],[116.27923570000007,-2.610964599999932],[116.27911350000011,-2.613687499999969],[116.2817381000001,-2.611924899999963],[116.28298940000002,-2.6131379],[116.2803573000001,-2.615388899999971],[116.28220370000008,-2.616747],[116.28267660000006,-2.619560699999965],[116.28755940000008,-2.615483499999925],[116.28553770000008,-2.609611199999961],[116.29064930000004,-2.605534199999965],[116.292038,-2.601418899999942],[116.28906240000003,-2.595509899999968],[116.28737640000008,-2.594559],[116.28399640000009,-2.596167399999956],[116.27888470000005,-2.595856899999944],[116.27676380000003,-2.589948399999969],[116.27577190000011,-2.593774399999973],[116.2743832000001,-2.594289299999957],[116.271423,-2.591383699999938],[116.26751680000007,-2.5928379],[116.26699790000009,-2.590006099999925],[116.26492280000002,-2.5910452],[116.263725,-2.590049399999941],[116.26700570000003,-2.589644199999952],[116.26766940000005,-2.592394699999943],[116.27075920000004,-2.590532899999971],[116.27348310000002,-2.593402199999957],[116.27546680000012,-2.593439499999931],[116.27700780000009,-2.588492],[116.272621,-2.586426899999935],[116.27194960000008,-2.5831789],[116.2731930000001,-2.586535799999979],[116.27684760000011,-2.586872599999936],[116.27915170000006,-2.594590499999924],[116.28215780000005,-2.595388299999968],[116.287094,-2.593808],[116.29084010000008,-2.5940454],[116.29032890000008,-2.590797399999929],[116.28675830000009,-2.590949199999955],[116.289398,-2.589629899999977],[116.2888795,-2.5864362],[116.29309840000008,-2.582033],[116.295044,-2.575204],[116.28926080000008,-2.576530599999955],[116.28745260000005,-2.571264499999927],[116.28926840000008,-2.576033],[116.290474,-2.576106099999947],[116.29442580000011,-2.5746518],[116.29599770000004,-2.569577599999946],[116.2977677,-2.568085899999971],[116.30499270000007,-2.567058599999939],[116.3047563,-2.562924199999941],[116.30301660000009,-2.560860699999978],[116.30155190000005,-2.560733199999959],[116.3033828,-2.564579],[116.3018571,-2.566468899999961],[116.29954530000009,-2.562604799999974],[116.29544830000009,-2.56367],[116.29501340000002,-2.562747],[116.295288,-2.561236399999927],[116.29724880000003,-2.560387099999957],[116.29538730000002,-2.561679699999956],[116.29568480000012,-2.563055],[116.29986570000005,-2.562197799999979],[116.30222320000007,-2.565781499999957],[116.3011474000001,-2.560669699999949],[116.30277250000006,-2.560001099999965],[116.304825,-2.561223499999926],[116.30352040000002,-2.554003799999975],[116.30432150000001,-2.537232],[116.30252850000011,-2.532943],[116.3005382,-2.533001699999943],[116.2831572,-2.5389031],[116.27591670000004,-2.544245399999966],[116.28044110000008,-2.546355799999958],[116.28218830000003,-2.543850899999939],[116.28405740000005,-2.545154599999933],[116.28679650000004,-2.5442787],[116.285736,-2.549398399999973],[116.28395080000007,-2.547389],[116.2856978000001,-2.548828399999934],[116.28645330000006,-2.544929799999977],[116.2840652000001,-2.545760799999925],[116.28225710000004,-2.544583699999976],[116.28020450000008,-2.547169799999949],[116.27769440000009,-2.545160099999976],[116.2730557000001,-2.545492199999956],[116.27425370000003,-2.549998],[116.27192670000011,-2.545156899999938],[116.2678145000001,-2.543580399999939],[116.264877,-2.547170199999925],[116.26673850000009,-2.547415499999943],[116.2642972000001,-2.548110699999938],[116.26029170000004,-2.552523],[116.25648460000002,-2.552520799999968],[116.25017510000009,-2.548410099999955],[116.24931290000006,-2.5500379],[116.24865680000005,-2.548617199999967],[116.25029710000001,-2.547903499999961],[116.25581310000007,-2.551425799999947],[116.25883450000003,-2.551454699999965],[116.26733370000011,-2.542784099999949],[116.26708960000008,-2.539970499999924],[116.26539580000008,-2.5378346],[116.25778930000001,-2.539359099999956],[116.25115160000007,-2.538224399999933],[116.24481150000008,-2.528939199999968],[116.2417673000001,-2.528448899999944],[116.24535320000007,-2.532123799999965],[116.24568130000011,-2.534458],[116.24175960000002,-2.534537099999966],[116.24085950000006,-2.533631899999932],[116.24114930000007,-2.531623799999977],[116.2380442000001,-2.530626899999959],[116.23849430000007,-2.531477499999937],[116.23758650000002,-2.530409499999962],[116.24095100000011,-2.530890899999974],[116.24135520000004,-2.531931499999928],[116.24096630000008,-2.533116299999961],[116.2415995,-2.5338314],[116.24483420000001,-2.534285599999976],[116.24537610000004,-2.533444599999939],[116.2404931000001,-2.527570599999933],[116.23829580000006,-2.527234599999929],[116.23175750000007,-2.530216099999961],[116.22813350000001,-2.526921],[116.22157960000004,-2.526202399999931],[116.213134,-2.529046899999969],[116.20640480000009,-2.528762399999948],[116.1999197,-2.535597299999949],[116.20451260000004,-2.529539199999931],[116.2035512000001,-2.522808199999929],[116.20139210000002,-2.521278],[116.1989506000001,-2.521285499999976],[116.19802,-2.525355799999943],[116.19239690000006,-2.527324399999941],[116.19010060000005,-2.525884599999927],[116.19252680000011,-2.523715],[116.18680470000004,-2.521757399999956],[116.18652220000001,-2.518066399999952],[116.18392830000005,-2.516011299999946],[116.18263880000006,-2.516842699999927],[116.18424870000001,-2.518327299999953],[116.18369940000002,-2.519819599999948],[116.17720660000009,-2.519607399999927],[116.1747425000001,-2.5227268],[116.17372010000008,-2.520193199999937],[116.17241530000001,-2.520653699999968],[116.171042,-2.518861699999945],[116.17069870000012,-2.520725],[116.16973730000007,-2.519566499999939],[116.16921860000002,-2.520778299999961],[116.16734930000007,-2.518759799999941],[116.16303870000002,-2.518702799999971],[116.16293940000003,-2.517526699999962],[116.16076520000001,-2.519063099999926],[116.15863650000006,-2.516510699999969],[116.1552263000001,-2.5178202],[116.15878150000003,-2.515732899999932],[116.1609102000001,-2.518258099999969],[116.163199,-2.516821299999947],[116.16349650000006,-2.518495],[116.16735710000012,-2.5179999],[116.16828020000003,-2.519683099999952],[116.16973740000003,-2.518661799999961],[116.17069870000012,-2.519820399999958],[116.17061480000007,-2.5187167],[116.17130150000003,-2.518337199999962],[116.1726595,-2.520246799999939],[116.17433030000007,-2.519750299999941],[116.17455170000005,-2.522192899999936],[116.17675640000004,-2.519073399999968],[116.18041860000005,-2.519401399999936],[116.17851130000008,-2.517961799999966],[116.18244040000002,-2.5185704],[116.18218120000006,-2.516444399999955],[116.18414960000007,-2.515387199999964],[116.18715550000002,-2.518084899999963],[116.18717850000007,-2.521341499999949],[116.19363310000006,-2.523299599999973],[116.1913211000001,-2.526120499999934],[116.19737140000007,-2.524287899999933],[116.19804290000002,-2.521013599999947],[116.20118620000005,-2.520047599999941],[116.20413870000004,-2.522835699999973],[116.20479490000002,-2.528064799999925],[116.22470020000003,-2.524793099999954],[116.23260430000005,-2.528407299999969],[116.24149260000002,-2.5242603],[116.2442850000001,-2.525085099999956],[116.24190470000008,-2.522252199999969],[116.2450937000001,-2.516229199999941],[116.24257620000003,-2.5170148],[116.24153840000008,-2.516046199999948],[116.24476560000005,-2.515315299999941],[116.2455668,-2.516591299999959],[116.24242330000004,-2.522243499999945],[116.24470470000006,-2.525456299999973],[116.24285060000011,-2.5261427],[116.24600150000003,-2.527546699999959],[116.2529522000001,-2.535837199999946],[116.25769750000006,-2.537224099999946],[116.25830790000009,-2.536500699999976],[116.2555767,-2.5318855],[116.25430250000011,-2.526592599999958],[116.25662950000003,-2.524667099999931],[116.2576825000001,-2.519095099999959],[116.26080290000004,-2.519884],[116.26251960000002,-2.517704799999933],[116.26129880000008,-2.520390799999973],[116.258041,-2.519412],[116.2574459000001,-2.524468499999955],[116.2548442000001,-2.526864299999943],[116.25619480000012,-2.528963899999951],[116.25579040000002,-2.531759],[116.25928470000008,-2.537469199999975],[116.26508300000012,-2.5353105],[116.26990480000006,-2.531242299999974],[116.27590160000011,-2.532620799999961],[116.27785460000007,-2.529464699999949],[116.280899,-2.530506699999933],[116.28141010000002,-2.528960099999949],[116.278923,-2.5289858],[116.27748080000003,-2.527374699999939],[116.28154740000002,-2.523459899999978],[116.2811431,-2.519624],[116.28215020000005,-2.523152699999969],[116.28006730000004,-2.5264625],[116.27806080000005,-2.527158],[116.27899910000008,-2.528596899999968],[116.28131090000011,-2.5282453],[116.28255450000006,-2.529250199999979],[116.28043360000004,-2.531465399999945],[116.27812940000001,-2.530206599999929],[116.2764661000001,-2.5329106],[116.28025040000011,-2.536341299999947],[116.29193820000012,-2.531781299999977],[116.29771390000008,-2.5233555],[116.2969614000001,-2.521715299999926],[116.29949990000011,-2.521559099999934],[116.29518890000008,-2.518519],[116.29314420000003,-2.512863899999957],[116.2895966000001,-2.5099852],[116.29365550000011,-2.511887099999967],[116.29570010000009,-2.510368399999948],[116.2937621000001,-2.512249],[116.29455560000008,-2.515940399999977],[116.3004251000001,-2.520337899999959],[116.31037930000002,-2.512529399999949],[116.30888370000002,-2.5113616],[116.30777,-2.508239899999978],[116.30773190000002,-2.507082],[116.3086932000001,-2.5064673],[116.30791490000001,-2.507453],[116.30898310000009,-2.5105565],[116.31156950000002,-2.510847299999966],[116.31136350000008,-2.512294699999927],[116.30153020000012,-2.520111699999973],[116.30124680000006,-2.524051199999974],[116.304032,-2.525208099999929],[116.315388,-2.5245442],[116.31612590000009,-2.525369199999943],[116.31414690000008,-2.527736799999957],[116.31700540000008,-2.530846399999973],[116.32766750000008,-2.531393199999968],[116.33713740000007,-2.534136599999954],[116.35251970000002,-2.518398199999979],[116.35028890000001,-2.511310599999945],[116.34670320000009,-2.5083867],[116.3443684,-2.508539299999939],[116.34135470000001,-2.511658899999929],[116.3400732,-2.509523199999933],[116.33572430000004,-2.508851599999957],[116.33404580000001,-2.512035099999935],[116.3354498000001,-2.508145799999966],[116.33960780000007,-2.508356],[116.3415609000001,-2.510944299999949],[116.3435141000001,-2.507100499999979],[116.33889620000002,-2.497454599999969],[116.33594290000008,-2.499063299999932],[116.33444190000012,-2.499008299999957],[116.33313140000007,-2.4965289],[116.32985570000005,-2.496988599999952],[116.331106,-2.495216099999936],[116.33021230000008,-2.494419599999958],[116.33149530000003,-2.4951801],[116.33039770000005,-2.496844099999976],[116.33311550000008,-2.496185099999934],[116.3353522000001,-2.498809699999924],[116.3373626,-2.496802399999979],[116.33887510000011,-2.496812199999965],[116.343621,-2.505825],[116.35023550000005,-2.509166499999935],[116.35308110000005,-2.518362199999956],[116.36155960000008,-2.524695599999973],[116.38292290000004,-2.522811199999978],[116.38896250000005,-2.523943799999927],[116.39842260000012,-2.528630199999952],[116.40863760000002,-2.521178299999974],[116.41245870000012,-2.51657],[116.417262,-2.503687699999944],[116.40588940000009,-2.490104599999938],[116.37990730000001,-2.4808281],[116.37186930000007,-2.474372799999969],[116.3695901000001,-2.474815],[116.36676620000003,-2.478589099999965],[116.36345010000002,-2.480268499999966],[116.3539300000001,-2.477687199999934],[116.3495180000001,-2.475046099999929],[116.34316180000008,-2.449611899999979],[116.34299210000006,-2.440204],[116.33904330000007,-2.436696099999949],[116.33201410000004,-2.436049799999978],[116.32376350000004,-2.438090899999963],[116.32204800000011,-2.441508299999953],[116.32082170000001,-2.454070899999977],[116.31599910000011,-2.455295499999977],[116.300199,-2.451430699999946],[116.29816750000009,-2.447865199999967],[116.29611240000008,-2.433869399999935],[116.29349910000008,-2.4318813],[116.27909260000001,-2.430062299999975],[116.27578230000006,-2.4280153],[116.272938,-2.423631399999977],[116.26939430000004,-2.423571],[116.26720990000001,-2.425045499999953],[116.2607815,-2.433705699999962],[116.25691160000008,-2.435685899999953],[116.25282320000008,-2.436785],[116.24953820000007,-2.437003399999981],[116.24581720000003,-2.433770799999934],[116.24604180000006,-2.4235653],[116.24102090000008,-2.416660699999966],[116.24603130000003,-2.421745],[116.2462686,-2.431822899999929],[116.2488168000001,-2.435794299999941],[116.25306720000003,-2.436407499999973],[116.2587764000001,-2.4342119],[116.26661500000012,-2.424627],[116.26890420000007,-2.422766799999977],[116.27195090000009,-2.422812799999974],[116.27409970000008,-2.424099399999932],[116.27813460000004,-2.429097599999977],[116.29207630000008,-2.430974899999967],[116.29695490000006,-2.433665399999938],[116.3001124000001,-2.450291199999981],[116.31544760000008,-2.454447899999934],[116.31922380000003,-2.454449899999929],[116.32064850000006,-2.451850299999933],[116.32135160000007,-2.440105599999924],[116.32361880000008,-2.437009799999942],[116.32603040000004,-2.435778],[116.33764970000004,-2.435316399999977],[116.34211030000006,-2.437702699999932],[116.3445253000001,-2.441350099999966],[116.34442410000008,-2.448881],[116.348065,-2.459293499999944],[116.34907620000001,-2.469535499999949],[116.35165440000003,-2.4749937],[116.36344740000004,-2.479062599999963],[116.36947840000005,-2.473471299999972],[116.37201490000007,-2.473291899999936],[116.379309,-2.478944799999965],[116.40806160000011,-2.489126399999975],[116.4186519000001,-2.501116099999933],[116.4256031000001,-2.499986799999931],[116.4488477000001,-2.502286099999935],[116.46174540000004,-2.504971099999977],[116.47141310000006,-2.509115699999938],[116.47569360000011,-2.51265],[116.477074,-2.516843399999971],[116.47540290000006,-2.522555],[116.47856930000012,-2.529955499999971],[116.47910680000007,-2.539220799999953],[116.47604050000007,-2.547819799999957],[116.47813930000007,-2.547456099999977],[116.47925090000001,-2.548715499999958],[116.47838110000009,-2.550386199999934],[116.48042360000011,-2.552083799999934],[116.4816062000001,-2.560441],[116.4792069,-2.562665699999968],[116.47912630000008,-2.565999799999929],[116.48079990000008,-2.571179099999938],[116.49330420000001,-2.567520399999978],[116.49766770000008,-2.564835599999981],[116.5121898000001,-2.56201],[116.51674030000004,-2.557275799999957],[116.51516650000008,-2.555923],[116.516553,-2.551225],[116.53091710000001,-2.5371021],[116.52786990000004,-2.534135899999967],[116.52916450000009,-2.525605699999971],[116.52605060000008,-2.523799599999961],[116.5229809000001,-2.517969199999925],[116.52696530000003,-2.497229299999958],[116.536866,-2.478890199999967],[116.53915920000009,-2.471163599999954],[116.54615650000005,-2.459614399999964],[116.54364020000003,-2.456491099999937],[116.54619070000001,-2.441594499999951],[116.55235270000003,-2.4279478],[116.555635,-2.409009499999968],[116.5589314,-2.405192799999952],[116.55053510000005,-2.401372499999979],[116.54102580000006,-2.401979199999971],[116.5396449000001,-2.400250799999981],[116.49283820000005,-2.380973499999925],[116.45450760000006,-2.370518799999957],[116.38093650000008,-2.356420199999945],[116.33429,-2.345122699999934],[116.3080920000001,-2.340669699999978],[116.272932,-2.339293699999928],[116.254747,-2.334959699999956],[116.236233,-2.327163699999971],[116.235696,-2.316161699999952],[116.226646,-2.308784699999933],[116.180505,-2.307307699999967],[116.171554,-2.305716699999948],[116.161139,-2.306529],[116.15593300000012,-2.308308],[116.151362,-2.311356],[116.14815780000004,-2.319511299999931],[116.08147950000011,-2.317039699999953],[116.03434220000008,-2.324911899999961],[116.02171710000005,-2.319224499999962],[116.01761650000003,-2.315849599999979],[116.0061270000001,-2.314678699999945],[115.99819610000009,-2.317256699999973],[115.99745810000002,-2.318291299999942],[115.9991169000001,-2.3183234],[115.99816350000003,-2.319898599999931],[115.99570690000007,-2.318676299999936],[115.9934472000001,-2.321455599999979],[115.99178720000009,-2.319082399999957],[115.98838230000001,-2.318989299999942],[115.98607320000008,-2.3150876],[115.98341690000007,-2.313907699999959],[115.97634460000006,-2.320916099999977],[115.96960920000004,-2.322453],[115.96943970000007,-2.325175599999966],[115.966874,-2.327860299999941],[115.97039680000012,-2.331191699999977],[115.97044730000005,-2.335117599999933],[115.96352600000012,-2.337459899999942],[115.96160010000006,-2.335869],[115.95451040000012,-2.3422854],[115.9515149,-2.339935099999934],[115.94853,-2.333840699999939],[115.94640750000008,-2.337043799999947],[115.94606520000002,-2.340836899999942],[115.94366960000002,-2.3417065],[115.94403340000008,-2.3390093],[115.94185630000004,-2.336024399999928],[115.93627030000005,-2.334075199999972],[115.91970890000005,-2.336917299999925],[115.90844310000011,-2.335884699999951],[115.9001727000001,-2.332820799999979],[115.8954271,-2.332979899999941],[115.89084180000009,-2.335111],[115.8895295000001,-2.337850699999933],[115.89150560000007,-2.34934],[115.88693540000008,-2.360968799999966],[115.88691250000011,-2.374518899999941],[115.877124,-2.371256899999935],[115.87183890000006,-2.372384599999975],[115.86606250000011,-2.379412399999978],[115.86071570000001,-2.380568],[115.85753880000004,-2.387334199999941],[115.84991680000007,-2.388621399999977],[115.8466194,-2.394338399999981],[115.84463570000003,-2.394706299999939],[115.8423927,-2.393021199999964],[115.83479390000002,-2.395406299999934],[115.83241350000003,-2.400195599999961],[115.8173531000001,-2.413837199999932],[115.81456830000002,-2.414095499999974],[115.8120659000001,-2.410239499999932],[115.81008230000009,-2.410670799999934],[115.808564,-2.420416699999976],[115.80294110000011,-2.429243199999974],[115.80259020000005,-2.4329048],[115.80805280000004,-2.445373599999925],[115.80825880000009,-2.459950699999979],[115.8124855000001,-2.477608199999963],[115.81263050000007,-2.483522199999925],[115.8036072000001,-2.504029]]]]},"properties":{"shapeName":"Kota Baru","shapeISO":"","shapeID":"22746128B21624588198846","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[104.30226880000004,0.464206200000035],[104.30075950000008,0.463089300000036],[104.30377830000003,0.463402300000041],[104.30226880000004,0.464206200000035]]],[[[104.26482360000006,0.50172740000005],[104.26256910000006,0.503912800000023],[104.26207740000007,0.502180700000054],[104.25736410000007,0.501685400000042],[104.25674950000007,0.500118300000054],[104.25843010000006,0.498510200000055],[104.26084820000005,0.499129],[104.26367670000008,0.494881900000053],[104.26609480000008,0.495830600000033],[104.27085,0.488614600000062],[104.27080930000005,0.485851700000069],[104.27445720000009,0.484161300000039],[104.27523570000005,0.487006800000074],[104.27306290000007,0.491955100000041],[104.26572550000009,0.499212100000022],[104.26482360000006,0.50172740000005]]],[[[104.28399320000005,0.52685770000005],[104.28210750000005,0.526584],[104.28404820000009,0.525297300000034],[104.28361620000004,0.522764300000063],[104.28165390000004,0.522912200000064],[104.283273,0.520444400000031],[104.28189970000005,0.518075100000033],[104.28415640000009,0.517729800000041],[104.28307730000006,0.51654510000003],[104.285138,0.513978700000052],[104.28484450000008,0.50618],[104.28729780000003,0.501886100000036],[104.28606430000008,0.496270700000025],[104.28718590000005,0.487677900000051],[104.29031690000005,0.480718400000057],[104.29201730000005,0.480446400000062],[104.29186290000007,0.478307800000039],[104.29572770000004,0.475003300000026],[104.29567770000006,0.483440600000051],[104.29429090000008,0.484402600000067],[104.29605980000008,0.486711900000046],[104.29376470000005,0.487385200000062],[104.29218660000004,0.489934700000049],[104.293573,0.491185600000051],[104.29316590000008,0.498467100000028],[104.29068120000005,0.499240600000064],[104.29210090000004,0.499955],[104.29103580000009,0.50281190000004],[104.29210050000006,0.503764400000023],[104.28926010000004,0.510847100000035],[104.29150720000007,0.519239900000059],[104.28399320000005,0.52685770000005]]],[[[104.30561720000009,0.530576600000074],[104.30633460000007,0.532188900000051],[104.30316360000006,0.530998600000032],[104.30561720000009,0.530576600000074]]],[[[104.249504,0.539454300000045],[104.24979940000009,0.541090300000064],[104.24824780000006,0.540926500000069],[104.249504,0.539454300000045]]],[[[104.19791940000005,0.542007500000068],[104.19874880000003,0.542761],[104.19708940000004,0.544797100000039],[104.19600710000009,0.543575200000021],[104.19791940000005,0.542007500000068]]],[[[104.22405090000007,0.556800800000076],[104.22152810000006,0.556488900000033],[104.221941,0.552705800000069],[104.22006340000007,0.548857100000021],[104.21978360000008,0.541605300000072],[104.22353060000006,0.538088200000061],[104.22258420000009,0.53524120000003],[104.22649030000008,0.53208520000004],[104.22846450000009,0.535166700000048],[104.23206290000007,0.535742900000059],[104.23888030000006,0.530755],[104.24071560000004,0.532616200000064],[104.23938250000003,0.535857100000044],[104.23694980000005,0.537522],[104.23475220000006,0.546401200000048],[104.23304550000006,0.547942300000045],[104.23640510000007,0.549220900000023],[104.23579570000004,0.55090610000002],[104.23745540000004,0.553275500000041],[104.23471370000004,0.552482200000043],[104.23326720000006,0.554777900000033],[104.22921010000005,0.554229600000042],[104.22916010000006,0.555694800000026],[104.2272,0.55516590000002],[104.227772,0.556402500000047],[104.22453150000007,0.555837200000042],[104.22405090000007,0.556800800000076]]],[[[104.23937520000004,0.558213700000067],[104.23509590000003,0.562509],[104.23145340000008,0.556691200000046],[104.23687620000004,0.554684200000054],[104.24086690000007,0.554910100000029],[104.23937520000004,0.558213700000067]]],[[[104.21237140000005,0.567039900000054],[104.20964830000008,0.567134300000021],[104.21017220000004,0.56470070000006],[104.21123390000008,0.565536800000075],[104.21034380000003,0.562348],[104.21237140000005,0.567039900000054]]],[[[104.20962660000004,0.566288900000075],[104.20903940000005,0.567470100000037],[104.20654470000005,0.566854500000034],[104.20835510000006,0.563286500000061],[104.20979820000008,0.563508200000058],[104.20962660000004,0.566288900000075]]],[[[104.21977720000007,0.562136900000041],[104.21815670000007,0.563585800000055],[104.21758610000006,0.567449700000054],[104.21611580000007,0.568023100000062],[104.21335550000003,0.567237900000066],[104.21116590000008,0.562015],[104.20828540000008,0.562859900000035],[104.209276,0.559026200000062],[104.21173680000004,0.55636990000005],[104.21407670000008,0.559298500000068],[104.21968750000008,0.559450200000072],[104.22064740000008,0.561140900000055],[104.21977720000007,0.562136900000041]]],[[[104.21403290000006,0.570481100000052],[104.21240870000008,0.573239700000045],[104.20856580000009,0.575012100000038],[104.20636960000007,0.573231200000066],[104.20812880000005,0.569618900000023],[104.21403290000006,0.570481100000052]]],[[[104.17929640000006,0.584002700000042],[104.17710570000008,0.583630200000073],[104.17753110000007,0.581816100000026],[104.17941670000005,0.582690900000046],[104.17929640000006,0.584002700000042]]],[[[104.09897290000004,0.60342780000002],[104.09819420000008,0.60433850000004],[104.09743390000006,0.603281800000047],[104.09897290000004,0.60342780000002]]],[[[104.10149220000005,0.608936200000073],[104.10098130000006,0.607352100000071],[104.103887,0.607393200000047],[104.10149220000005,0.608936200000073]]],[[[104.19811740000006,0.608696200000054],[104.19441560000007,0.60895910000005],[104.19393210000004,0.599826600000029],[104.18840980000004,0.593192700000031],[104.186199,0.593206500000065],[104.18523370000008,0.587930500000027],[104.18697330000003,0.573997400000053],[104.19039450000008,0.561013200000048],[104.19169590000007,0.560267],[104.19040960000007,0.553161200000034],[104.19290490000009,0.547456600000032],[104.194682,0.547414600000025],[104.19452830000006,0.545147400000076],[104.19654330000009,0.544950500000027],[104.19290770000003,0.563374],[104.19280560000004,0.570377300000075],[104.19433840000005,0.570809500000053],[104.19462870000007,0.562674500000071],[104.198248,0.561023200000022],[104.202,0.564373100000068],[104.20386140000005,0.572922],[104.20710280000009,0.575603900000033],[104.21238330000006,0.573980400000039],[104.21438330000007,0.571788800000036],[104.21512560000008,0.573034200000052],[104.222819,0.574558],[104.22833190000006,0.569238900000073],[104.22990170000008,0.570143700000074],[104.22534820000004,0.579332900000054],[104.216665,0.590834700000073],[104.20844150000005,0.59532310000003],[104.20518570000007,0.594960400000048],[104.20552910000004,0.596162200000038],[104.20227430000006,0.594754800000032],[104.20080250000007,0.599190300000032],[104.20201340000006,0.602211600000032],[104.19980670000007,0.606789100000071],[104.20056480000005,0.608176400000048],[104.19811740000006,0.608696200000054]]],[[[104.29444,0.62395390000006],[104.29261370000006,0.623135800000057],[104.296532,0.61836640000007],[104.29658480000006,0.621349700000053],[104.29444,0.62395390000006]]],[[[104.29125410000006,0.631165900000042],[104.28899770000004,0.629799900000023],[104.29113580000006,0.628745300000048],[104.29125410000006,0.631165900000042]]],[[[104.03459360000005,0.633231700000067],[104.03220630000004,0.63291090000007],[104.03304230000003,0.630468400000041],[104.03568830000006,0.630969400000026],[104.03608580000008,0.632671400000049],[104.03459360000005,0.633231700000067]]],[[[104.24389110000004,0.634963],[104.24451540000007,0.636386500000071],[104.24302580000005,0.63580330000002],[104.24389110000004,0.634963]]],[[[104.26084160000005,0.636814700000059],[104.25834590000005,0.632613700000036],[104.26214040000008,0.631167100000027],[104.26233940000009,0.635970800000052],[104.26084160000005,0.636814700000059]]],[[[104.04141750000008,0.633361800000046],[104.04123110000006,0.636559900000066],[104.03953830000006,0.637577200000067],[104.03660810000008,0.63300780000003],[104.04141750000008,0.633361800000046]]],[[[104.07793160000006,0.63697650000006],[104.07903130000005,0.638074900000049],[104.07732360000006,0.638486100000023],[104.07793160000006,0.63697650000006]]],[[[104.08557760000008,0.642953400000067],[104.08380940000006,0.645087400000023],[104.08231710000007,0.641767],[104.08058850000003,0.64200390000002],[104.08031320000003,0.643980100000022],[104.07783830000005,0.643465800000058],[104.07946030000005,0.638635800000031],[104.08261270000008,0.638793400000054],[104.082082,0.632407200000046],[104.08512250000007,0.628343100000052],[104.08538190000007,0.620884600000068],[104.08152170000005,0.615885200000037],[104.08437760000004,0.609680300000036],[104.08351110000007,0.602862800000025],[104.08600210000009,0.60269420000003],[104.08728940000009,0.60432830000002],[104.08619460000006,0.608402800000022],[104.08976160000009,0.617062800000042],[104.09389960000004,0.618586100000073],[104.09678490000005,0.61783470000006],[104.09853890000005,0.620960300000036],[104.10418630000004,0.624507300000062],[104.09948020000007,0.626007300000026],[104.09701720000004,0.629523800000072],[104.09390550000006,0.630002400000023],[104.08876010000006,0.640898600000071],[104.08699180000008,0.643388400000049],[104.08557760000008,0.642953400000067]]],[[[104.24235060000007,0.645168200000057],[104.24060080000004,0.646980100000064],[104.23964970000009,0.646227700000054],[104.24333990000008,0.640529900000047],[104.24200290000005,0.638816900000052],[104.244398,0.637877100000026],[104.243396,0.636731500000053],[104.24991760000006,0.636613700000055],[104.24653560000007,0.64066820000005],[104.24537680000009,0.644964200000061],[104.24235060000007,0.645168200000057]]],[[[104.24317280000008,0.65315],[104.243173,0.652059800000075],[104.24478250000004,0.652558400000032],[104.24317280000008,0.65315]]],[[[104.23632330000004,0.656909400000075],[104.23246290000009,0.656676200000049],[104.23467420000009,0.65453530000002],[104.23443740000005,0.651647600000047],[104.23652420000008,0.651330400000063],[104.236662,0.649086100000034],[104.23988830000008,0.647168900000054],[104.24104920000008,0.649035900000058],[104.23772060000005,0.65279750000002],[104.23632330000004,0.656909400000075]]],[[[104.240312,0.65862130000005],[104.24034110000008,0.660101900000029],[104.23937650000005,0.659699800000055],[104.240312,0.65862130000005]]],[[[104.24345630000005,0.663974500000052],[104.24379280000005,0.66560370000002],[104.24161180000004,0.663795100000073],[104.24193610000003,0.662513300000057],[104.24345630000005,0.663974500000052]]],[[[104.22236290000006,0.668133600000033],[104.22136620000003,0.668096600000069],[104.22597570000005,0.664958200000058],[104.22837320000008,0.665430700000059],[104.22236290000006,0.668133600000033]]],[[[104.30655240000004,0.669800400000042],[104.30735830000003,0.673691400000052],[104.30598280000004,0.672545400000047],[104.30655240000004,0.669800400000042]]],[[[104.30434650000007,0.672446700000023],[104.30431250000004,0.67416],[104.30276210000005,0.672124200000042],[104.30434650000007,0.672446700000023]]],[[[104.27734290000006,0.673984700000062],[104.27644050000004,0.676495500000044],[104.27430540000006,0.677251500000068],[104.27734290000006,0.673984700000062]]],[[[104.33471820000005,0.677766100000042],[104.33385770000007,0.678693700000053],[104.33120310000004,0.677394600000071],[104.33044060000009,0.672923800000035],[104.33267060000009,0.673278900000071],[104.33539210000004,0.67064460000006],[104.34234050000003,0.670644],[104.34117280000004,0.674942],[104.33471820000005,0.677766100000042]]],[[[104.34215070000005,0.679402],[104.33954020000004,0.679263700000035],[104.33861910000007,0.677409200000056],[104.342493,0.677457900000036],[104.34604080000008,0.675615400000027],[104.34826810000004,0.676816600000052],[104.34215070000005,0.679402]]],[[[104.305745,0.678883700000029],[104.300992,0.677509],[104.304232,0.674758200000042],[104.30470370000006,0.676335900000026],[104.30700940000008,0.676695600000073],[104.305745,0.678883700000029]]],[[[104.29989070000005,0.676626400000032],[104.29764640000008,0.679553400000032],[104.29645950000008,0.674010700000053],[104.29846840000005,0.67238530000003],[104.30169720000004,0.672275600000035],[104.30232620000004,0.674726700000065],[104.29989070000005,0.676626400000032]]],[[[104.31870420000007,0.684870100000069],[104.31784530000004,0.68634],[104.31440820000006,0.684617700000047],[104.31552680000004,0.682212],[104.31766850000008,0.683235400000058],[104.31677050000008,0.682033400000023],[104.31798960000003,0.679133200000024],[104.31258510000004,0.677308400000072],[104.31137270000005,0.673415],[104.309143,0.67499840000005],[104.30852260000006,0.668710100000055],[104.31246340000007,0.661787300000071],[104.316563,0.661712600000044],[104.31820730000004,0.665606900000057],[104.32171320000003,0.663878500000067],[104.32552020000008,0.664373300000022],[104.32912880000003,0.659507200000064],[104.33007350000008,0.664082600000029],[104.32607220000006,0.667607400000065],[104.32539110000005,0.670432800000071],[104.32697050000007,0.67306190000005],[104.32506390000003,0.677389300000073],[104.326791,0.678670900000043],[104.31870420000007,0.684870100000069]]],[[[104.29400950000007,0.689102900000023],[104.29088580000007,0.691078700000048],[104.28831020000007,0.687709],[104.28872850000005,0.689685300000065],[104.28640990000008,0.690494900000033],[104.28573430000006,0.686995900000056],[104.28354490000004,0.684727800000076],[104.279745,0.686314700000025],[104.27874650000007,0.688549900000055],[104.27723320000007,0.687772100000075],[104.27526870000008,0.689067700000066],[104.274969,0.686162600000046],[104.27102510000009,0.682869100000062],[104.27413070000006,0.679604700000027],[104.27455020000008,0.68058990000003],[104.280314,0.673019700000054],[104.28496250000006,0.671142100000054],[104.29446820000004,0.672050700000057],[104.29662940000009,0.677183600000035],[104.29641870000006,0.680299],[104.29439750000006,0.68089070000002],[104.29424380000006,0.682666700000027],[104.29629010000008,0.68083960000007],[104.30077210000007,0.686155800000051],[104.297487,0.690172600000039],[104.29400950000007,0.689102900000023]]],[[[104.26441990000006,0.695236200000068],[104.26544150000007,0.697242300000028],[104.262077,0.696690100000069],[104.26441990000006,0.695236200000068]]],[[[104.31330230000003,0.700204900000074],[104.30980150000005,0.699395100000061],[104.309295,0.697709900000063],[104.31174620000007,0.695961100000034],[104.31210740000006,0.69368030000004],[104.31670950000006,0.691333400000076],[104.31715580000008,0.688835800000049],[104.31912870000008,0.688887800000032],[104.32094160000008,0.684917700000028],[104.323129,0.684791800000028],[104.32841690000004,0.680973],[104.33070370000007,0.68303590000005],[104.33339230000007,0.681616400000053],[104.33625020000005,0.68231],[104.33712470000006,0.684666200000038],[104.33562890000007,0.687047200000052],[104.32871110000008,0.686898500000041],[104.32269480000008,0.691011500000059],[104.32437920000007,0.695341700000029],[104.32143690000004,0.698592200000064],[104.31330230000003,0.700204900000074]]],[[[104.21422060000003,0.718863800000065],[104.210464,0.717258300000026],[104.21211820000008,0.711176900000055],[104.20975350000003,0.710244],[104.21312220000004,0.704915700000072],[104.21244040000005,0.698466],[104.21395180000007,0.700098300000036],[104.21479330000005,0.698756400000036],[104.21678170000007,0.698980400000039],[104.21910330000009,0.695618500000023],[104.21901040000006,0.691379100000063],[104.22153830000008,0.683073800000045],[104.22732350000007,0.687714400000061],[104.23443420000007,0.675852400000053],[104.23480290000003,0.669839100000047],[104.23771150000005,0.672316300000034],[104.23963240000006,0.67067110000005],[104.24378310000009,0.671024300000056],[104.24728330000005,0.668603100000041],[104.250942,0.650728500000071],[104.25339040000006,0.649189900000067],[104.25351780000005,0.646681600000022],[104.25572810000006,0.644361200000048],[104.25738190000004,0.645366],[104.25863920000006,0.639109100000042],[104.26245140000003,0.638147700000047],[104.26343580000008,0.636438300000066],[104.26429540000004,0.628241700000046],[104.26569240000003,0.62744310000005],[104.26431160000004,0.625813400000027],[104.26447170000006,0.621797600000036],[104.26832040000005,0.625063100000034],[104.27331420000007,0.624558200000024],[104.28234910000003,0.615679500000056],[104.28712920000004,0.613402600000029],[104.28845630000006,0.610923],[104.28785760000005,0.615754],[104.28537720000008,0.617086800000038],[104.28795860000008,0.621683500000074],[104.28662110000005,0.622661200000039],[104.28732460000003,0.624502900000039],[104.284444,0.631371500000057],[104.288014,0.630708100000049],[104.289015,0.631768600000044],[104.28872560000008,0.638962700000036],[104.28524260000006,0.649657800000057],[104.28650640000006,0.656050100000073],[104.28421040000006,0.658776700000033],[104.28612280000004,0.660347400000035],[104.28207540000005,0.661458900000071],[104.28173920000006,0.667813],[104.27899620000005,0.671937200000059],[104.27241450000008,0.676738500000056],[104.26890760000003,0.677199600000051],[104.26703880000008,0.681255200000066],[104.26008960000007,0.688343800000041],[104.25802190000007,0.684871200000032],[104.26170520000005,0.677837700000055],[104.25770370000004,0.67746070000004],[104.25792720000004,0.67616270000002],[104.25733160000004,0.677360800000031],[104.25844910000006,0.678174500000068],[104.25688240000005,0.680304100000058],[104.25128580000006,0.682843700000035],[104.24907190000005,0.686647600000072],[104.24237130000006,0.688779],[104.23796850000008,0.693367500000022],[104.22127290000009,0.715437100000031],[104.21422060000003,0.718863800000065]]],[[[104.20869520000008,0.717070600000056],[104.21031410000006,0.719293300000061],[104.208842,0.719325900000058],[104.20869520000008,0.717070600000056]]],[[[104.18383750000004,0.737967600000047],[104.18246610000006,0.739231200000063],[104.18133040000004,0.73728170000004],[104.18383750000004,0.737967600000047]]],[[[104.36973740000008,0.739394300000072],[104.36487870000008,0.738674800000069],[104.37059210000007,0.737417900000025],[104.36973740000008,0.739394300000072]]],[[[104.18054060000009,0.742575500000044],[104.178759,0.742095100000029],[104.17985860000005,0.741456600000049],[104.18054060000009,0.742575500000044]]],[[[104.308975,0.763084],[104.30249510000004,0.759934],[104.29878120000006,0.755966700000045],[104.31404220000007,0.752719600000034],[104.31649360000006,0.748896],[104.32261290000008,0.752405900000042],[104.32781310000007,0.753442],[104.33219740000004,0.75166310000003],[104.33322930000008,0.749290500000029],[104.33842370000008,0.749662],[104.34389680000004,0.74788970000003],[104.34428860000008,0.746151500000053],[104.34753590000008,0.745433500000047],[104.35316430000006,0.739149500000053],[104.35655550000007,0.740282800000045],[104.35809870000008,0.745097900000076],[104.35554610000008,0.749383500000022],[104.33563040000007,0.755442500000072],[104.33192140000006,0.75844],[104.33230020000008,0.760220600000025],[104.32755580000008,0.758436800000027],[104.308975,0.763084]]],[[[104.18544760000003,0.778349],[104.18382070000007,0.778371700000037],[104.18599780000005,0.776942400000053],[104.18544760000003,0.778349]]],[[[104.19847170000008,0.787012300000072],[104.19828770000004,0.790561],[104.19427890000009,0.787534],[104.19728610000004,0.786629300000072],[104.19746640000005,0.784223900000029],[104.19847170000008,0.787012300000072]]],[[[104.21427260000007,0.791239700000062],[104.21195970000008,0.790075300000069],[104.21461970000007,0.788799300000051],[104.21667970000004,0.78649530000007],[104.21980890000003,0.790488900000071],[104.21427260000007,0.791239700000062]]],[[[104.20269660000008,0.794918],[104.20109240000005,0.795718100000045],[104.19906730000008,0.791119600000059],[104.19903480000005,0.786740500000064],[104.20164280000006,0.781268500000067],[104.20299280000006,0.780699300000038],[104.20506610000007,0.783019100000047],[104.21219420000006,0.782547400000055],[104.20963720000009,0.789297800000043],[104.21031430000005,0.793153],[104.20750260000005,0.794996500000025],[104.20269660000008,0.794918]]],[[[104.21054110000006,0.797311200000024],[104.20971780000008,0.797884700000054],[104.20894240000007,0.796195600000033],[104.21206130000007,0.795702300000073],[104.21054110000006,0.797311200000024]]],[[[104.21728290000004,0.798496700000044],[104.21256710000006,0.797296300000028],[104.21479570000008,0.794671300000061],[104.22238320000008,0.793530100000055],[104.22286140000006,0.797453700000062],[104.21728290000004,0.798496700000044]]],[[[104.26171620000008,0.800914100000057],[104.25088610000006,0.80060050000003],[104.24627780000009,0.795418400000074],[104.24573340000006,0.792386500000021],[104.23991870000003,0.789998900000057],[104.22892640000003,0.789609100000064],[104.21672680000006,0.784581900000035],[104.21524060000007,0.787618],[104.21257850000006,0.789084400000036],[104.21331740000005,0.782936300000074],[104.21202350000004,0.781574300000045],[104.20497490000008,0.782482100000038],[104.20381650000007,0.780352600000072],[104.20188860000007,0.780266100000063],[104.19901830000003,0.786274],[104.19811380000004,0.784271],[104.19712870000006,0.78411090000003],[104.19716010000008,0.786077800000044],[104.193291,0.787243700000033],[104.19062190000005,0.786043900000038],[104.19067990000008,0.782802200000049],[104.18621090000005,0.779322900000068],[104.18741870000008,0.777868],[104.18591370000007,0.776038500000027],[104.18336030000006,0.777993200000026],[104.17910240000003,0.776585200000056],[104.17617010000004,0.781967300000076],[104.17338470000004,0.782750800000031],[104.17155770000005,0.781759],[104.17090460000009,0.779066],[104.17216260000004,0.77269270000005],[104.18184990000009,0.764459800000054],[104.18557690000006,0.757186400000023],[104.18554730000005,0.754169700000034],[104.18961530000007,0.751723900000059],[104.19011780000005,0.737510600000064],[104.18902240000006,0.736326400000053],[104.19007770000007,0.735020200000065],[104.18902290000005,0.733672800000022],[104.19344630000006,0.731673100000023],[104.19717110000005,0.724118100000055],[104.19653980000004,0.72102510000002],[104.20070710000005,0.728489300000035],[104.20733150000007,0.722119700000064],[104.20736050000005,0.720385300000032],[104.20919860000004,0.720877100000052],[104.21126680000003,0.719200900000033],[104.21276,0.721137900000031],[104.21604920000004,0.719866400000058],[104.21871960000004,0.724665400000049],[104.22456310000007,0.716508500000032],[104.23134920000007,0.71048920000004],[104.24064280000005,0.697377600000038],[104.25248250000004,0.69235070000002],[104.25519910000008,0.692225800000074],[104.25664430000006,0.693956200000059],[104.25719290000006,0.692301300000054],[104.25936120000006,0.691800200000046],[104.25906160000005,0.695335600000021],[104.26302360000005,0.699498600000027],[104.258994,0.700504500000022],[104.25885540000007,0.701943500000027],[104.26780170000006,0.705917600000021],[104.27272120000003,0.701335200000074],[104.27447450000005,0.701519300000029],[104.27608140000007,0.704019500000072],[104.27582530000006,0.707070900000076],[104.27828590000007,0.709470400000043],[104.28473710000009,0.707583200000045],[104.288428,0.70952630000005],[104.29851430000008,0.706628700000067],[104.304492,0.70851840000006],[104.30857870000006,0.706682500000056],[104.30952960000008,0.707432800000049],[104.30837240000005,0.711829800000032],[104.299774,0.711702700000046],[104.29697230000005,0.713926700000059],[104.29709810000008,0.716520500000058],[104.295453,0.717994600000054],[104.29283160000006,0.717451],[104.28683290000004,0.720586100000048],[104.28505910000007,0.723534500000028],[104.28600760000006,0.72659550000003],[104.284414,0.727009100000032],[104.28391980000004,0.729035700000054],[104.28124690000004,0.728906],[104.27889890000006,0.731183300000055],[104.27301360000007,0.730302900000027],[104.27001940000008,0.734158],[104.27109620000004,0.736080900000047],[104.26744650000006,0.737244200000021],[104.26793160000005,0.74157340000005],[104.26464170000008,0.742555800000048],[104.26322780000004,0.745038700000066],[104.25899850000008,0.764346800000055],[104.25779040000003,0.765355400000033],[104.258809,0.767345200000022],[104.25791610000005,0.76947640000003],[104.26110280000006,0.773806600000057],[104.26395570000005,0.77292760000006],[104.26768210000006,0.774532],[104.26763580000005,0.777153300000066],[104.26483390000004,0.779687700000068],[104.26509120000009,0.781196200000068],[104.26966560000005,0.783783500000027],[104.27002730000004,0.788498600000025],[104.27546080000008,0.789516800000058],[104.27811240000005,0.79563330000002],[104.27659590000007,0.796719400000029],[104.26387820000008,0.795808700000066],[104.26156560000004,0.793299300000058],[104.26171620000008,0.800914100000057]]],[[[104.20545750000008,0.798849100000041],[104.20502720000007,0.801918],[104.20249060000003,0.802210500000058],[104.20188170000006,0.798466700000063],[104.20545750000008,0.798849100000041]]],[[[104.23150230000005,0.806457300000034],[104.23518840000008,0.807493700000066],[104.23518820000004,0.808585900000026],[104.23204420000008,0.810412],[104.227142,0.808132400000034],[104.22747910000004,0.806531800000073],[104.23150230000005,0.806457300000034]]],[[[104.15089910000006,0.78988030000005],[104.14746220000006,0.803071600000067],[104.14778140000004,0.813299500000028],[104.14191990000006,0.819934700000033],[104.14333550000003,0.806264300000066],[104.14709470000008,0.795639700000038],[104.14982660000004,0.789787600000068],[104.15089910000006,0.78988030000005]]],[[[104.29963690000005,0.821619400000031],[104.29077860000007,0.819210200000043],[104.300366,0.818308700000046],[104.30182480000008,0.819869700000027],[104.29963690000005,0.821619400000031]]],[[[104.28130610000005,0.822062300000027],[104.27971330000008,0.82151170000003],[104.27786,0.814859900000044],[104.27931010000003,0.816056400000036],[104.28114090000008,0.815291100000024],[104.28289980000005,0.818114700000024],[104.28311320000006,0.821320900000046],[104.28130610000005,0.822062300000027]]],[[[104.24551680000008,0.831192200000032],[104.24601520000004,0.832520200000033],[104.24422610000005,0.832047700000032],[104.24551680000008,0.831192200000032]]],[[[103.96461430000005,0.879216],[103.962137,0.881091900000058],[103.96020650000008,0.880683800000043],[103.96229740000007,0.879774500000053],[103.96309860000008,0.877547500000048],[103.96520810000004,0.877462800000046],[103.96461430000005,0.879216]]],[[[103.97191110000006,0.881722500000024],[103.96623870000008,0.881114400000058],[103.96958380000007,0.878855500000043],[103.972018,0.879986200000076],[103.97191110000006,0.881722500000024]]],[[[104.185567,0.87756360000003],[104.18729560000008,0.882284600000048],[104.184543,0.884996400000034],[104.18156450000004,0.882911500000034],[104.18048710000005,0.880056100000047],[104.183575,0.877419600000053],[104.185567,0.87756360000003]]],[[[103.97032620000004,0.885007600000051],[103.96842390000006,0.883353900000031],[103.97040940000005,0.883045200000026],[103.97032620000004,0.885007600000051]]],[[[103.98085580000009,0.887116],[103.98136440000007,0.88873650000005],[103.97991030000009,0.888370200000054],[103.98085580000009,0.887116]]],[[[104.03911150000005,0.887953400000072],[104.03756310000006,0.88919930000003],[104.03126140000006,0.887129800000025],[104.037338,0.885479100000055],[104.04046720000008,0.887225100000023],[104.03911150000005,0.887953400000072]]],[[[103.97293580000007,0.886925500000075],[103.97390140000005,0.888546200000064],[103.97305930000005,0.890950300000043],[103.97144960000008,0.889622200000076],[103.97293580000007,0.886925500000075]]],[[[103.95232130000005,0.895495400000073],[103.95089140000005,0.893839600000035],[103.95352390000005,0.891796100000022],[103.95348020000006,0.894992],[103.95232130000005,0.895495400000073]]],[[[104.18837250000007,0.895749],[104.18735780000009,0.898862],[104.18551890000003,0.89906910000002],[104.18412770000003,0.895350300000075],[104.18717010000006,0.892929600000059],[104.18837250000007,0.895749]]],[[[103.95308810000006,0.904749],[103.95031360000007,0.902804700000047],[103.95041550000008,0.899706],[103.95183160000005,0.899907900000073],[103.95737550000007,0.893039600000066],[103.95992160000009,0.893241800000055],[103.96055020000006,0.895761300000061],[103.95821480000006,0.90405880000003],[103.95308810000006,0.904749]]],[[[103.96677330000006,0.90360110000006],[103.96659290000008,0.906210300000055],[103.96428280000003,0.90537],[103.96677330000006,0.90360110000006]]],[[[103.95081460000006,0.904312700000048],[103.95152930000006,0.906083500000022],[103.95017020000006,0.907105200000046],[103.946939,0.901461200000028],[103.95081460000006,0.904312700000048]]],[[[103.93980220000009,0.907498],[103.93826710000008,0.906736200000068],[103.94023760000005,0.902359],[103.94282860000004,0.906390400000021],[103.93980220000009,0.907498]]],[[[103.77378650000009,0.911291100000028],[103.77371030000006,0.912401200000033],[103.77228740000004,0.912092200000075],[103.77378650000009,0.911291100000028]]],[[[103.903265,0.915083300000049],[103.90564060000008,0.918193],[103.902329,0.916248900000028],[103.903265,0.915083300000049]]],[[[104.05004650000006,0.920347500000048],[104.04712760000007,0.920859900000039],[104.04470340000006,0.916142100000059],[104.03925870000006,0.912796600000036],[104.04204070000009,0.912442300000066],[104.04421710000008,0.91020160000005],[104.04128560000004,0.906593800000053],[104.04094120000008,0.903464300000053],[104.03831,0.902159400000073],[104.03569170000009,0.903646600000059],[104.033273,0.901004200000045],[104.03682930000008,0.898868800000059],[104.03592750000007,0.892445800000075],[104.04186240000007,0.896791500000063],[104.046742,0.897060700000054],[104.04853440000005,0.901058800000044],[104.05143180000005,0.900667],[104.04937010000003,0.903190400000028],[104.050314,0.912395200000049],[104.052725,0.912766400000066],[104.05366670000006,0.916531700000064],[104.05604730000005,0.915585400000055],[104.05717730000003,0.916677],[104.05352810000005,0.920441600000061],[104.05004650000006,0.920347500000048]]],[[[103.94628140000003,0.917211700000053],[103.94686230000008,0.919280600000036],[103.944876,0.92133780000006],[103.94419660000005,0.919462300000021],[103.94628140000003,0.917211700000053]]],[[[103.96571420000004,0.921868200000063],[103.96425220000003,0.920326500000044],[103.96801910000005,0.919286200000045],[103.96571420000004,0.921868200000063]]],[[[103.94672570000006,0.920727400000033],[103.94588050000004,0.923352600000044],[103.94535170000006,0.921843200000069],[103.94672570000006,0.920727400000033]]],[[[104.21159760000006,0.923283900000058],[104.20956820000004,0.924056700000051],[104.20457490000007,0.92262160000007],[104.202169,0.916348200000073],[104.19904670000005,0.917020200000024],[104.19750920000007,0.91197550000004],[104.19492840000004,0.911955100000057],[104.19518470000008,0.906578],[104.19289930000008,0.90470410000006],[104.19329390000007,0.90224580000006],[104.19873970000003,0.901687600000059],[104.20740310000008,0.905127500000049],[104.20966930000009,0.908128100000056],[104.20771740000004,0.910810200000071],[104.20984450000009,0.913427800000022],[104.21161780000006,0.912516100000062],[104.21386780000006,0.915860100000032],[104.21159760000006,0.923283900000058]]],[[[103.97029890000005,0.923040600000036],[103.96948450000008,0.924137300000041],[103.96769120000005,0.923289700000055],[103.97029890000005,0.923040600000036]]],[[[103.95080750000005,0.92341],[103.94740290000004,0.923768900000027],[103.94723450000004,0.915708],[103.94943790000008,0.914038700000049],[103.95237340000006,0.905882200000065],[103.964757,0.908048800000074],[103.96581680000008,0.909838600000057],[103.963313,0.911873600000035],[103.96558690000006,0.913817600000073],[103.96451050000007,0.919090700000027],[103.95909550000005,0.921899400000029],[103.95080750000005,0.92341]]],[[[103.95316260000004,0.924329400000033],[103.95071040000005,0.924559500000043],[103.95462680000009,0.924028],[103.95316260000004,0.924329400000033]]],[[[104.03795460000003,0.926546300000041],[104.03668450000004,0.925088200000062],[104.03776530000005,0.924037],[104.03929660000006,0.925387700000044],[104.03795460000003,0.926546300000041]]],[[[103.95327470000007,0.925941600000044],[103.95471430000003,0.926336500000048],[103.95453560000004,0.928043600000024],[103.94864180000008,0.926757900000041],[103.95327470000007,0.925941600000044]]],[[[104.15336750000006,0.931149600000026],[104.15019360000008,0.934445400000072],[104.14805830000006,0.93396],[104.14931730000006,0.931061800000066],[104.15336750000006,0.931149600000026]]],[[[103.96597260000004,0.933509800000024],[103.96437580000008,0.934654900000055],[103.961142,0.932446500000026],[103.96597260000004,0.933509800000024]]],[[[104.14747240000008,0.937727400000028],[104.14656150000008,0.936151100000075],[104.148185,0.934833300000037],[104.14747240000008,0.937727400000028]]],[[[104.18628640000009,0.93491460000007],[104.18878320000005,0.938027800000043],[104.18501870000006,0.936414300000024],[104.18628640000009,0.93491460000007]]],[[[103.77048680000007,0.938013100000035],[103.76820950000007,0.935594600000059],[103.76934620000009,0.933458300000041],[103.77105140000003,0.935922600000026],[103.77048680000007,0.938013100000035]]],[[[104.18340510000007,0.931704700000068],[104.18273240000008,0.936955400000045],[104.17244580000005,0.938380500000051],[104.16277970000004,0.93056260000003],[104.15814540000008,0.925374300000044],[104.15856770000005,0.914909500000022],[104.16105890000006,0.912856100000056],[104.16140530000007,0.910593300000073],[104.16618550000004,0.914384900000073],[104.17557580000005,0.913134600000035],[104.17772030000003,0.91400550000003],[104.17906880000004,0.916825600000038],[104.18843560000005,0.91918940000005],[104.18902160000005,0.924891100000025],[104.19152840000004,0.92867810000007],[104.19095710000005,0.93061],[104.18877690000005,0.93209760000002],[104.18340510000007,0.931704700000068]]],[[[103.98287260000006,0.934097200000053],[103.98200590000005,0.941000600000052],[103.98112130000004,0.936784800000055],[103.98287260000006,0.934097200000053]]],[[[103.89389650000004,0.936166200000059],[103.89218780000004,0.940380900000036],[103.88982410000006,0.941158100000052],[103.88738490000009,0.939456700000051],[103.88726470000006,0.935983200000067],[103.89389650000004,0.936166200000059]]],[[[103.79027750000006,0.935926400000028],[103.78899190000004,0.942010900000071],[103.785326,0.943819],[103.79027750000006,0.935926400000028]]],[[[104.00998720000007,0.941539100000057],[104.00884420000006,0.94433360000005],[104.00738850000005,0.944017600000052],[104.00808610000007,0.936459300000024],[104.00954230000008,0.93479190000005],[104.00990030000008,0.936076700000058],[104.01325840000004,0.936761800000056],[104.01280960000008,0.939601500000038],[104.00998720000007,0.941539100000057]]],[[[104.20560110000008,0.942720100000031],[104.20479890000007,0.945987400000035],[104.20576880000004,0.947006],[104.204672,0.947557400000051],[104.20285860000007,0.946029300000021],[104.20361850000006,0.943441],[104.20188960000007,0.941149200000041],[104.20560110000008,0.942720100000031]]],[[[103.77429770000003,0.946943300000044],[103.772665,0.94807620000006],[103.77123830000005,0.94620320000007],[103.767561,0.94621090000004],[103.77279090000007,0.938955300000032],[103.770895,0.931139],[103.77397350000007,0.931947700000023],[103.77802090000006,0.93966480000006],[103.77590370000007,0.941576],[103.77687650000007,0.946237600000075],[103.77429770000003,0.946943300000044]]],[[[103.76582150000007,0.945322],[103.76626010000007,0.94856070000003],[103.76403240000008,0.946535100000062],[103.76582150000007,0.945322]]],[[[103.97990230000005,0.950790300000051],[103.98033370000007,0.953484200000048],[103.97636980000004,0.958407900000054],[103.97828160000006,0.951272200000062],[103.97990230000005,0.950790300000051]]],[[[104.16787910000005,0.960908400000051],[104.15692050000007,0.957222300000069],[104.14916110000007,0.957917],[104.14583410000006,0.955214600000033],[104.14211520000003,0.954622700000073],[104.14421820000007,0.949601200000075],[104.14648330000006,0.949038900000062],[104.14805440000004,0.94193370000005],[104.14989720000005,0.939873800000044],[104.14923180000005,0.937822100000062],[104.15177130000006,0.934347600000024],[104.15809750000005,0.933553600000039],[104.16046940000007,0.935019600000032],[104.15971910000007,0.939834400000052],[104.16021750000004,0.944147],[104.15863570000005,0.945402700000045],[104.16046710000006,0.944565800000021],[104.16001050000006,0.939708800000062],[104.16175880000009,0.938034500000072],[104.16476180000006,0.938668500000063],[104.16736040000006,0.942820400000073],[104.17454010000006,0.943693900000028],[104.17891440000005,0.942158900000038],[104.18126610000007,0.943778500000064],[104.18312340000006,0.94166180000002],[104.18691880000006,0.945357300000069],[104.18906450000009,0.945689900000048],[104.19348030000003,0.943324700000062],[104.19793590000006,0.947186500000043],[104.19719230000004,0.948685300000022],[104.18819860000008,0.952289700000051],[104.17391890000005,0.956330800000046],[104.17146740000004,0.96022430000005],[104.16787910000005,0.960908400000051]]],[[[104.11933270000009,0.958020600000054],[104.12055180000004,0.961447100000044],[104.11961530000008,0.962246300000061],[104.11555170000008,0.958044600000051],[104.11155160000004,0.957158500000048],[104.11109860000005,0.953503800000021],[104.10708450000004,0.95976150000007],[104.10131510000008,0.960617],[104.09896040000007,0.959959600000047],[104.09424090000005,0.954383200000052],[104.08925020000004,0.952839300000051],[104.084817,0.95696],[104.07779590000007,0.959789900000033],[104.08408,0.951584100000048],[104.08376380000004,0.948034300000074],[104.07817660000006,0.944673900000055],[104.07855250000006,0.942593],[104.08303610000007,0.937201300000027],[104.08763380000005,0.935946200000046],[104.09490620000008,0.926631600000064],[104.09126330000004,0.911484700000074],[104.09075140000004,0.898300100000029],[104.09280780000006,0.895085],[104.09406690000009,0.87972910000002],[104.09263620000007,0.87662860000006],[104.09368110000008,0.873064800000066],[104.09221530000008,0.870468500000072],[104.09318730000007,0.869455300000027],[104.09460020000006,0.871322600000042],[104.09762130000007,0.871287700000039],[104.09889270000008,0.873955],[104.09781480000004,0.874826],[104.10041740000008,0.879833900000051],[104.11615,0.87716770000003],[104.11874750000004,0.875550400000066],[104.11838120000004,0.865967],[104.12115530000005,0.864545300000032],[104.12108720000003,0.861783900000034],[104.12219970000007,0.864006600000039],[104.12528240000006,0.86550440000002],[104.13172130000004,0.86586090000003],[104.13956570000005,0.862834400000054],[104.13907150000006,0.860469600000044],[104.14630620000008,0.855663100000072],[104.14811470000006,0.852845],[104.149534,0.839695],[104.15756510000006,0.824347300000056],[104.15707220000007,0.819229300000075],[104.15435210000004,0.816206100000045],[104.16084440000009,0.813604200000043],[104.16059730000006,0.811126300000069],[104.16238190000007,0.810255400000074],[104.16135950000006,0.805195800000035],[104.16415430000006,0.799834800000042],[104.164758,0.791461800000036],[104.16761040000006,0.787542900000062],[104.17421090000005,0.78565530000003],[104.17768450000005,0.78252180000004],[104.18098810000004,0.783038100000056],[104.18473530000006,0.788787900000045],[104.18956580000008,0.789698700000031],[104.20014890000004,0.797576100000072],[104.19972820000004,0.802756700000032],[104.20233810000008,0.80793170000004],[104.20334750000006,0.807965300000035],[104.20322950000008,0.805624800000032],[104.21143770000003,0.805842900000073],[104.21299290000007,0.803353900000047],[104.21552720000005,0.803566200000034],[104.23120010000008,0.812756700000023],[104.23143720000007,0.817944800000021],[104.23405230000009,0.816327300000069],[104.236172,0.818248],[104.24516750000004,0.820262400000047],[104.24523730000004,0.829686400000071],[104.24312810000004,0.832016600000031],[104.26036,0.840265700000032],[104.25962150000004,0.843583500000022],[104.26253820000005,0.84912010000005],[104.264713,0.858190300000047],[104.26609090000005,0.859026200000073],[104.25770990000007,0.866347900000051],[104.25610210000008,0.866418700000054],[104.23648030000004,0.859997],[104.23575640000007,0.86108930000006],[104.23887650000006,0.864822400000037],[104.23799140000006,0.867557600000055],[104.23955850000004,0.867850900000064],[104.23487340000008,0.875228],[104.22882340000007,0.875543200000038],[104.22420120000004,0.879967100000044],[104.21991540000005,0.878659600000049],[104.20973240000006,0.881815300000028],[104.20583710000005,0.880282300000033],[104.20105810000007,0.88045870000002],[104.19612530000006,0.87723120000004],[104.19567810000007,0.874820300000067],[104.19221930000003,0.875286900000049],[104.18850330000004,0.873010400000055],[104.18128190000004,0.878057600000034],[104.17335510000004,0.874935900000025],[104.16917610000007,0.868529200000069],[104.16650950000007,0.867358],[104.165516,0.870041700000058],[104.16715290000008,0.876003800000035],[104.16519460000006,0.879172600000061],[104.16885320000006,0.88508360000003],[104.17001670000008,0.891120400000034],[104.16831410000003,0.892861700000026],[104.16567560000004,0.892632700000036],[104.17046720000008,0.899270700000045],[104.16728950000004,0.899783900000045],[104.165299,0.904964],[104.16215050000005,0.90207950000007],[104.16288880000008,0.899281600000052],[104.15723080000004,0.901961],[104.15524570000008,0.898220200000026],[104.15323130000007,0.898419600000068],[104.15086680000007,0.90730620000005],[104.151434,0.908591200000046],[104.15594530000004,0.906936200000075],[104.157165,0.908021500000075],[104.15574610000004,0.912427800000046],[104.15633870000005,0.92224340000007],[104.15454770000008,0.927219200000025],[104.15026380000006,0.926818500000024],[104.14765330000006,0.928245400000037],[104.14633690000005,0.931883800000037],[104.14338590000006,0.933681800000045],[104.14355510000007,0.937850400000059],[104.14096740000008,0.940117900000075],[104.14014390000006,0.94314410000004],[104.13869740000007,0.94137360000002],[104.13545250000004,0.942486100000053],[104.13505560000004,0.941087],[104.13236020000005,0.941743],[104.13155640000008,0.937399],[104.12562730000008,0.935684400000071],[104.12449210000005,0.93748290000002],[104.12511560000007,0.939995500000066],[104.12659090000005,0.940167200000076],[104.12626830000005,0.952263800000026],[104.12365850000003,0.951006900000039],[104.12005520000008,0.951548400000036],[104.11936640000005,0.954613800000061],[104.11752220000005,0.954955900000073],[104.11933270000009,0.958020600000054]]],[[[104.08838120000007,0.95756],[104.084795,0.962462200000061],[104.08415890000003,0.960066200000028],[104.08838120000007,0.95756]]],[[[103.98037970000007,0.962464700000055],[103.97757930000006,0.96165],[103.98031020000008,0.956951900000035],[103.98219460000007,0.959908700000028],[103.98037970000007,0.962464700000055]]],[[[104.02191110000007,0.962593600000048],[104.02158860000009,0.959795400000075],[104.02323730000006,0.960251400000061],[104.02543620000006,0.958267400000068],[104.02825070000006,0.951826200000028],[104.02993020000008,0.957780600000035],[104.02601750000008,0.96051250000005],[104.02637270000008,0.961976700000037],[104.02191110000007,0.962593600000048]]],[[[103.83262020000006,0.958371500000055],[103.832132,0.961231600000076],[103.82833250000004,0.963828400000068],[103.82930910000005,0.960591900000054],[103.83262020000006,0.958371500000055]]],[[[103.97034410000003,0.964681400000075],[103.96868060000008,0.96542050000005],[103.96630860000005,0.96043190000006],[103.96820760000008,0.958312800000044],[103.96823550000005,0.952748800000052],[103.97146310000005,0.950748400000066],[103.97467450000005,0.953648],[103.97477420000007,0.955795800000033],[103.97244930000005,0.962474200000031],[103.97034410000003,0.964681400000075]]],[[[104.07179610000009,0.96449350000006],[104.07001180000009,0.965356],[104.07155330000006,0.96236220000003],[104.07581370000008,0.961045500000068],[104.07179610000009,0.96449350000006]]],[[[103.84423350000009,0.965728700000057],[103.84205,0.965515400000072],[103.84301780000004,0.96016080000004],[103.84670250000005,0.95907660000006],[103.85030510000007,0.961497500000064],[103.84938780000004,0.96360020000003],[103.84423350000009,0.965728700000057]]],[[[104.10099870000005,0.961889300000053],[104.10194620000004,0.963022100000046],[104.09914160000005,0.966141],[104.09641720000008,0.964749400000073],[104.09653650000007,0.961689400000068],[104.10099870000005,0.961889300000053]]],[[[103.99439920000003,0.966210100000069],[103.99292,0.965578],[103.99410930000005,0.962134400000025],[103.99208020000003,0.957964],[103.99434280000008,0.951908700000047],[103.99611470000008,0.952518600000076],[103.99799480000007,0.951156500000025],[103.99581640000008,0.954697700000054],[103.99785710000003,0.957223],[103.99761960000006,0.961602400000061],[103.99439920000003,0.966210100000069]]],[[[103.76749990000008,0.966474500000061],[103.76547810000005,0.966058700000076],[103.76546290000005,0.964811300000065],[103.76685520000007,0.964426],[103.76749990000008,0.966474500000061]]],[[[103.78836250000006,0.966955200000029],[103.78013420000008,0.963895800000046],[103.78362080000005,0.960889800000075],[103.78572270000006,0.961237],[103.78721810000008,0.958559],[103.79193690000005,0.958887100000027],[103.79449650000004,0.956880600000034],[103.79278760000005,0.964166600000055],[103.78836250000006,0.966955200000029]]],[[[103.711012,0.967291500000044],[103.70881960000008,0.967278300000032],[103.70882020000005,0.96566370000005],[103.712335,0.966614],[103.711012,0.967291500000044]]],[[[104.03520660000004,0.962856800000054],[104.03634080000006,0.967326300000025],[104.03500860000008,0.969114700000034],[104.033342,0.967664200000058],[104.03520660000004,0.962856800000054]]],[[[103.97776430000005,0.969913600000041],[103.97516580000007,0.968510300000048],[103.97667450000006,0.964278200000024],[103.97899360000008,0.964116300000057],[103.97776430000005,0.969913600000041]]],[[[103.82500270000008,0.963972100000035],[103.82094760000007,0.970892],[103.82280920000005,0.965192800000068],[103.82500270000008,0.963972100000035]]],[[[104.02411570000004,0.970015800000056],[104.02257350000008,0.971101500000032],[104.02008150000006,0.968385300000023],[104.025813,0.965671500000042],[104.02694280000009,0.969111400000031],[104.02411570000004,0.970015800000056]]],[[[103.80589870000006,0.971120800000051],[103.80136680000004,0.970811800000035],[103.79926110000008,0.967268],[103.80285070000008,0.960687600000028],[103.80730250000005,0.96572690000005],[103.80589870000006,0.971120800000051]]],[[[104.08433870000005,0.971849300000031],[104.08279660000005,0.972093200000074],[104.08431050000007,0.968224700000064],[104.09182850000008,0.957118600000058],[104.09483010000008,0.958050700000058],[104.09486030000005,0.966683500000045],[104.09336120000006,0.966553800000042],[104.09351740000005,0.969734200000062],[104.09018780000008,0.968930700000044],[104.08772610000005,0.971605],[104.08433870000005,0.971849300000031]]],[[[104.06202880000006,0.967672600000071],[104.05889470000005,0.973817700000041],[104.05762340000007,0.972312800000054],[104.05912020000005,0.968277200000045],[104.05768780000005,0.967062],[104.04910180000007,0.966626],[104.04552480000007,0.963574900000026],[104.04628460000004,0.954271300000073],[104.04413670000008,0.95238130000007],[104.04408880000005,0.949573800000053],[104.049315,0.94649140000007],[104.04660020000006,0.944830400000058],[104.04515850000007,0.937848200000076],[104.04743120000006,0.932299500000056],[104.04693350000008,0.929705300000023],[104.05008390000006,0.930365300000062],[104.05173740000004,0.933307200000058],[104.05476630000004,0.932647900000063],[104.05753780000003,0.924473700000021],[104.06153340000009,0.922566600000039],[104.06143050000009,0.921511600000031],[104.06376770000008,0.921425800000065],[104.06810190000004,0.91443460000005],[104.07072620000008,0.915397300000052],[104.07022740000008,0.916970900000024],[104.07426930000008,0.927596200000039],[104.08007610000004,0.93508520000006],[104.07732620000007,0.93607030000004],[104.07379910000009,0.942792900000029],[104.07996840000004,0.949036200000023],[104.07836670000006,0.95433410000004],[104.06891480000007,0.962697900000023],[104.06612530000007,0.960203400000069],[104.06550610000005,0.961915400000066],[104.06377080000004,0.960687],[104.06227450000006,0.956791400000043],[104.06012620000007,0.957465200000058],[104.06340980000004,0.961003500000061],[104.06202880000006,0.967672600000071]]],[[[104.09062420000004,0.97136450000005],[104.09291190000005,0.972109700000033],[104.09202270000009,0.97396550000002],[104.08962750000006,0.971791600000074],[104.09062420000004,0.97136450000005]]],[[[104.01994340000005,0.971083700000065],[104.01957930000003,0.97410990000003],[104.01820960000003,0.971250700000041],[104.01994340000005,0.971083700000065]]],[[[104.15460880000006,0.970201300000042],[104.145725,0.974692300000072],[104.142789,0.97404430000006],[104.144132,0.971033600000055],[104.14606170000008,0.970161700000062],[104.145253,0.963642],[104.147861,0.962861600000053],[104.14905670000007,0.959505100000058],[104.15485990000008,0.957499600000062],[104.16563780000007,0.960451],[104.16954280000004,0.96501070000005],[104.17394610000008,0.967303400000048],[104.17460360000007,0.969646100000034],[104.17146430000008,0.97321],[104.15460880000006,0.970201300000042]]],[[[104.03072440000005,0.973231800000065],[104.03116090000003,0.974344],[104.02877080000007,0.975119200000051],[104.03072440000005,0.973231800000065]]],[[[103.98178640000003,0.975875300000041],[103.97965820000007,0.973416100000065],[103.98055060000007,0.965813300000036],[103.98527450000006,0.962376300000074],[103.98470760000004,0.956050300000072],[103.98695960000003,0.954103400000065],[103.98862160000004,0.946037400000023],[103.99105370000007,0.945643300000029],[103.99213370000007,0.947932],[103.99436610000004,0.947603400000048],[103.99532280000005,0.948881800000038],[103.99133090000004,0.95568970000005],[103.99264640000007,0.963195700000028],[103.98637120000006,0.974112800000057],[103.98178640000003,0.975875300000041]]],[[[104.17688820000006,0.972052100000042],[104.17875140000007,0.97580430000005],[104.17441040000006,0.975726100000031],[104.174017,0.974132],[104.17688820000006,0.972052100000042]]],[[[104.05583060000004,0.977049],[104.05446140000004,0.978981],[104.05084650000003,0.976410300000055],[104.05111310000007,0.972559300000057],[104.04945950000007,0.970928100000037],[104.05023650000004,0.968173600000057],[104.05742680000009,0.968607300000031],[104.05515880000007,0.972172500000056],[104.05681170000008,0.975116900000046],[104.05583060000004,0.977049]]],[[[103.77286720000006,0.979131700000039],[103.76723670000007,0.979017300000066],[103.76576420000004,0.976827600000036],[103.77203560000004,0.969354600000031],[103.77660560000004,0.972826],[103.77286720000006,0.979131700000039]]],[[[104.044576,0.979106300000069],[104.04287510000006,0.980464200000029],[104.04000120000006,0.978597600000057],[104.04001840000006,0.973886900000025],[104.04770280000008,0.976283],[104.044576,0.979106300000069]]],[[[103.78102680000006,0.977693600000066],[103.78092,0.979581800000062],[103.77922250000006,0.980196],[103.78102680000006,0.977693600000066]]],[[[104.07664730000005,0.982350800000063],[104.07418890000008,0.983128900000054],[104.06981920000004,0.981547200000023],[104.07221280000005,0.978586800000073],[104.07906470000006,0.975359],[104.08017970000009,0.977717400000074],[104.07664730000005,0.982350800000063]]],[[[104.11129870000008,0.98330640000006],[104.10777660000008,0.982662100000027],[104.10844870000005,0.978552300000047],[104.103399,0.974128900000039],[104.10757750000005,0.969168700000068],[104.120833,0.96533880000004],[104.12097460000007,0.967786],[104.11388530000005,0.974316600000066],[104.11464240000004,0.976901800000064],[104.11312020000008,0.981835400000023],[104.11129870000008,0.98330640000006]]],[[[103.81924630000009,0.978464100000053],[103.82103160000008,0.982278800000074],[103.820261,0.983633],[103.81755260000006,0.981203100000073],[103.81823160000005,0.978311500000075],[103.81924630000009,0.978464100000053]]],[[[103.98023230000007,0.986444900000038],[103.979832,0.984208600000045],[103.98158670000004,0.982746300000031],[103.98496160000008,0.98229340000006],[103.98671530000007,0.983891200000073],[103.98023230000007,0.986444900000038]]],[[[103.813982,0.981157300000064],[103.81242940000004,0.98606680000006],[103.80920980000008,0.987356200000022],[103.80968670000004,0.979845],[103.81155970000003,0.977735500000051],[103.814661,0.979578],[103.813982,0.981157300000064]]],[[[104.07480140000007,0.984977700000059],[104.07508930000006,0.987436600000024],[104.07350930000007,0.98854410000007],[104.06896150000006,0.985072500000058],[104.068898,0.98369150000002],[104.07106820000007,0.982985600000063],[104.07480140000007,0.984977700000059]]],[[[103.97415940000008,0.987860700000056],[103.97270880000008,0.988689],[103.97401270000006,0.985263],[103.97797090000006,0.983532600000046],[103.97752740000004,0.986798],[103.97415940000008,0.987860700000056]]],[[[103.97872430000007,0.989423600000066],[103.97795030000003,0.988767800000062],[103.98006470000007,0.98768],[103.97872430000007,0.989423600000066]]],[[[103.96884280000006,0.99022350000007],[103.97119770000006,0.987243200000023],[103.97110690000005,0.989328700000044],[103.96884280000006,0.99022350000007]]],[[[104.100488,0.987292300000036],[104.098247,0.990562900000043],[104.09558210000006,0.990199500000074],[104.09861040000004,0.986505],[104.100488,0.987292300000036]]],[[[103.81228830000003,0.991807900000026],[103.81025120000004,0.99096110000005],[103.815836,0.985036900000068],[103.815691,0.987924600000042],[103.81228830000003,0.991807900000026]]],[[[104.04636360000006,0.988943],[104.04504560000004,0.991911300000027],[104.04146020000007,0.990486200000021],[104.04348570000008,0.987582800000041],[104.04636360000006,0.988943]]],[[[103.96341570000004,0.994335300000046],[103.96227580000004,0.994119200000057],[103.96637820000007,0.992286900000067],[103.96341570000004,0.994335300000046]]],[[[104.044772,0.992736500000035],[104.04710280000006,0.995730900000069],[104.04414430000008,0.99487240000002],[104.044772,0.992736500000035]]],[[[104.11848370000007,0.995833400000038],[104.115318,0.995457700000031],[104.11732960000006,0.990213500000038],[104.11662150000006,0.986531700000057],[104.12008060000005,0.987958300000059],[104.12908190000007,0.987101800000062],[104.131937,0.988526800000045],[104.12690930000008,0.995659500000045],[104.11848370000007,0.995833400000038]]],[[[104.07315940000007,0.997606200000064],[104.07104720000007,0.997878700000058],[104.07462430000004,0.99539180000005],[104.07479470000004,0.997299600000019],[104.07315940000007,0.997606200000064]]],[[[104.14156920000005,0.99827190000002],[104.13854080000004,0.999198600000057],[104.14597190000006,0.984486],[104.14861840000003,0.990310900000054],[104.14428130000005,0.994085700000028],[104.14308010000008,0.998772700000075],[104.14156920000005,0.99827190000002]]],[[[103.95222970000003,0.998171400000047],[103.95116660000008,0.999647500000037],[103.94975720000008,0.997997700000042],[103.94259120000004,0.998792500000036],[103.94743870000008,0.995371],[103.949367,0.991338800000051],[103.95816220000006,0.986648700000046],[103.95924790000004,0.983946300000071],[103.96603010000007,0.97920060000007],[103.96674270000005,0.975281],[103.97563590000004,0.974120300000038],[103.97808730000008,0.978705700000035],[103.97796180000006,0.981852900000035],[103.97162650000007,0.985371800000053],[103.96654310000008,0.991018800000063],[103.96033070000004,0.99357260000005],[103.95846020000005,0.996272300000044],[103.95313220000008,0.997068600000034],[103.95214580000004,0.995259300000043],[103.95299250000005,0.992971700000055],[103.95170190000005,0.995032],[103.95222970000003,0.998171400000047]]],[[[103.97815810000009,0.998464900000045],[103.97638720000003,1.000961500000074],[103.97171290000006,0.998386700000026],[103.97815810000009,0.998464900000045]]],[[[103.90020930000009,1.00215490000005],[103.899565,1.001014],[103.90119750000008,1.001391200000057],[103.90020930000009,1.00215490000005]]],[[[103.81144910000006,1.003210100000047],[103.809206,1.001436200000057],[103.80934330000008,0.997823700000026],[103.81083490000003,0.998060200000054],[103.81000710000006,0.999784500000032],[103.81144910000006,1.003210100000047]]],[[[103.96864560000006,1.003463900000042],[103.96767460000007,1.001067300000045],[103.97110010000006,1.001997600000038],[103.96864560000006,1.003463900000042]]],[[[103.96631310000004,1.003732200000059],[103.96121110000007,1.002336800000023],[103.96658120000006,1.000602400000048],[103.96747940000006,1.003512500000056],[103.96631310000004,1.003732200000059]]],[[[103.82720760000007,0.995252600000072],[103.82902720000004,0.997388800000067],[103.82789420000006,1.005708700000071],[103.82292370000005,0.998907100000054],[103.82414820000008,0.994886400000041],[103.82720760000007,0.995252600000072]]],[[[103.92936770000006,1.005585100000076],[103.92682420000006,1.004012900000021],[103.92935740000007,0.998940600000026],[103.93296490000006,0.998250800000051],[103.93427120000007,0.999769600000036],[103.93187480000006,1.001150500000051],[103.92936770000006,1.005585100000076]]],[[[103.97249350000004,1.002411600000073],[103.97506830000003,1.004613100000029],[103.97489790000009,1.00598240000005],[103.97154560000007,1.003536200000042],[103.97249350000004,1.002411600000073]]],[[[103.970207,1.004616100000021],[103.97312180000006,1.007429],[103.96974480000006,1.006376500000044],[103.96894330000003,1.005300300000044],[103.970207,1.004616100000021]]],[[[104.13116670000005,1.007539400000041],[104.12949430000003,1.00730980000003],[104.12868180000004,1.00409970000004],[104.12902840000004,1.002628],[104.13125770000005,1.002036400000065],[104.13369990000007,1.002856200000053],[104.13477170000004,1.005065],[104.13116670000005,1.007539400000041]]],[[[103.82205770000007,1.006208400000048],[103.82184030000008,1.008165400000053],[103.820322,1.008321800000033],[103.82205770000007,1.006208400000048]]],[[[104.13712990000005,1.007327800000041],[104.13666420000004,1.01054970000007],[104.13552110000006,1.009390400000029],[104.13712990000005,1.007327800000041]]],[[[104.13966140000008,1.007551900000067],[104.14134290000004,1.011302900000032],[104.13976570000005,1.010118400000067],[104.13966140000008,1.007551900000067]]],[[[104.14516480000003,1.011984900000073],[104.14455630000003,1.010222300000066],[104.14620690000004,1.009146600000065],[104.14719280000008,1.010122400000057],[104.14516480000003,1.011984900000073]]],[[[103.99343190000008,1.009362200000055],[103.992021,1.012022400000035],[103.98729070000007,1.010475800000052],[103.98262610000006,1.007022500000062],[103.98276860000004,1.003751200000067],[103.98470710000004,1.001971200000071],[103.98723460000008,1.002622100000053],[103.989482,1.000587800000062],[103.99178510000007,1.000673300000074],[103.99346990000004,1.001691300000061],[103.99343190000008,1.009362200000055]]],[[[103.87992240000005,1.015046300000051],[103.88171540000008,1.016786600000046],[103.88103630000006,1.017995100000064],[103.87900690000004,1.015771400000062],[103.87992240000005,1.015046300000051]]],[[[103.75979810000007,1.014993700000048],[103.757082,1.018278100000032],[103.75483890000004,1.015703200000075],[103.75496860000004,1.006792100000041],[103.75720790000008,1.00354580000004],[103.76063350000004,1.005807900000036],[103.76047710000006,1.008562100000063],[103.762373,1.009805700000072],[103.75979810000007,1.014993700000048]]],[[[104.11535430000004,1.016924900000049],[104.113073,1.019240600000046],[104.11104140000003,1.016888600000073],[104.10975810000008,1.019071200000042],[104.10296490000007,1.015778300000022],[104.10129650000005,1.013458600000035],[104.10006810000004,1.004842],[104.10829860000007,1.004482600000074],[104.11024890000004,1.010904900000071],[104.11535430000004,1.016924900000049]]],[[[103.75453380000005,1.01808740000007],[103.75453,1.019289],[103.75307660000004,1.018671],[103.75453380000005,1.01808740000007]]],[[[104.14416180000006,1.017578900000046],[104.14034540000006,1.020635200000072],[104.13815380000005,1.017348300000037],[104.13827010000006,1.01457860000005],[104.14206360000009,1.014061600000048],[104.14416180000006,1.017578900000046]]],[[[103.80661960000003,1.01459310000007],[103.80585290000005,1.018983800000058],[103.80292320000007,1.020662300000026],[103.80661960000003,1.01459310000007]]],[[[103.93119960000007,1.013215800000069],[103.93150470000006,1.014375400000063],[103.92466880000006,1.021088900000052],[103.92619470000005,1.01724390000004],[103.93119960000007,1.013215800000069]]],[[[104.14310830000005,1.018781300000057],[104.14515110000008,1.019860400000027],[104.14403490000007,1.021966200000065],[104.14161340000004,1.020530200000053],[104.14310830000005,1.018781300000057]]],[[[104.11864190000006,1.016318],[104.12155980000006,1.019621800000039],[104.12098030000004,1.022568600000056],[104.11895330000004,1.021552300000053],[104.11864190000006,1.016318]]],[[[104.08999840000007,1.019972400000029],[104.09031340000007,1.022743400000024],[104.08879210000003,1.023377900000071],[104.08735740000009,1.021963200000073],[104.08839110000008,1.02034720000006],[104.08999840000007,1.019972400000029]]],[[[103.89076380000006,1.01059],[103.89082480000008,1.015289500000051],[103.886911,1.022552200000064],[103.88465270000006,1.023650800000041],[103.88337090000005,1.021941900000058],[103.88489680000004,1.016754200000037],[103.89076380000006,1.01059]]],[[[104.154509,1.023726],[104.15189860000004,1.022291400000029],[104.15292730000004,1.018418100000019],[104.15711560000005,1.022338],[104.154509,1.023726]]],[[[104.09936690000006,1.024018200000057],[104.09532870000004,1.020886500000074],[104.09240960000005,1.013106200000038],[104.09586680000007,1.006030400000043],[104.09881820000004,1.01335940000007],[104.09825940000007,1.015524700000071],[104.10457490000005,1.021634200000051],[104.10376160000004,1.023651400000062],[104.09936690000006,1.024018200000057]]],[[[103.91593320000004,1.021577200000024],[103.91495660000004,1.024567700000034],[103.912088,1.024872900000048],[103.91233210000007,1.02261470000002],[103.91593320000004,1.021577200000024]]],[[[104.08396960000005,1.026003100000025],[104.08127240000005,1.023953],[104.08138810000008,1.020720400000073],[104.08532070000007,1.018527900000038],[104.08862120000003,1.01852880000007],[104.088908,1.01933710000003],[104.087214,1.021905400000037],[104.08684,1.024907100000064],[104.08396960000005,1.026003100000025]]],[[[103.92283780000008,1.02340810000004],[103.91855770000006,1.026276600000074],[103.91898490000005,1.023591200000055],[103.92283780000008,1.02340810000004]]],[[[104.18076120000006,1.024510100000043],[104.17822990000008,1.028396600000065],[104.17200870000005,1.020276800000033],[104.17009380000007,1.020310700000039],[104.16746350000005,1.017233100000055],[104.16504690000005,1.012340300000062],[104.16124220000006,1.017286200000058],[104.15901440000005,1.01766820000006],[104.15553750000004,1.015726800000039],[104.15214940000004,1.007760300000029],[104.1557,1.007782700000064],[104.15444690000004,1.000221400000044],[104.15766860000008,0.996659600000044],[104.16425470000007,0.996155300000055],[104.16621630000009,0.997525],[104.16605790000006,1.000796600000058],[104.16687650000006,0.995373400000062],[104.17140620000004,0.995322],[104.174267,0.997724400000038],[104.18402650000007,1.014229200000045],[104.18321770000006,1.023694700000021],[104.18076120000006,1.024510100000043]]],[[[103.79863930000005,1.026872600000047],[103.79937170000005,1.028730400000029],[103.79821970000006,1.030221900000072],[103.79693410000004,1.028570200000047],[103.79863930000005,1.026872600000047]]],[[[103.89380310000007,1.032524600000045],[103.89260930000006,1.031719100000032],[103.89407490000008,1.031241900000055],[103.89380310000007,1.032524600000045]]],[[[103.80285070000008,1.032384900000068],[103.80127140000008,1.033254600000021],[103.80280490000007,1.024797400000068],[103.80443380000008,1.025594700000056],[103.80519680000003,1.031152700000064],[103.80285070000008,1.032384900000068]]],[[[104.13655330000006,1.034814700000027],[104.13497150000006,1.030998900000043],[104.12927640000004,1.02973060000005],[104.12918790000003,1.026163300000064],[104.13211570000004,1.025532300000066],[104.13840630000004,1.030456300000026],[104.13655330000006,1.034814700000027]]],[[[104.11331780000006,1.028530800000055],[104.11771350000004,1.031631],[104.11638450000004,1.035609],[104.11203470000004,1.030751100000032],[104.11331780000006,1.028530800000055]]],[[[103.86466190000004,1.033682700000043],[103.86513440000004,1.035110700000075],[103.86389110000005,1.035907200000054],[103.86326480000008,1.034136],[103.86466190000004,1.033682700000043]]],[[[104.15231380000006,1.032626900000025],[104.15206570000004,1.036010200000021],[104.15095620000005,1.03459870000006],[104.15231380000006,1.032626900000025]]],[[[103.87258650000007,1.034081800000024],[103.868317,1.037687300000073],[103.86585480000008,1.03513490000006],[103.867812,1.032616300000029],[103.86623920000005,1.031280400000071],[103.86174390000008,1.033372700000029],[103.85872090000004,1.032586900000069],[103.85755080000007,1.034185700000023],[103.85377510000006,1.033977800000059],[103.85331240000005,1.03058610000005],[103.85488520000007,1.029093400000022],[103.85433230000007,1.028361300000029],[103.85235150000005,1.030673500000034],[103.85223550000006,1.02941450000003],[103.85418970000006,1.026880100000028],[103.85444940000008,1.022842400000059],[103.850536,1.02541530000002],[103.84830640000007,1.024671200000057],[103.84995380000004,1.019860200000039],[103.85438740000006,1.016612900000041],[103.86062040000007,1.007512100000042],[103.84696140000005,1.014395600000057],[103.83966350000009,1.015074900000059],[103.83789390000004,1.016737500000033],[103.83395970000004,1.01729830000005],[103.83151750000007,1.010889600000041],[103.83342780000004,1.006650300000047],[103.832872,0.977455100000043],[103.83899080000003,0.971176800000023],[103.84835970000006,0.966993],[103.86813510000007,0.954438900000071],[103.88028870000005,0.95100780000007],[103.88722380000007,0.94309620000007],[103.89224560000008,0.942095100000074],[103.89678510000005,0.937695800000029],[103.91142420000006,0.934337200000073],[103.93954770000005,0.91091270000004],[103.94409970000004,0.910198300000047],[103.94572670000008,0.913618500000041],[103.94153560000007,0.919558400000028],[103.94351170000004,0.926039200000048],[103.94673510000007,0.928887400000065],[103.95534060000006,0.93028970000006],[103.95847360000005,0.933875200000045],[103.96089180000007,0.933732700000064],[103.96307490000004,0.937126700000022],[103.96781260000006,0.957478500000036],[103.965851,0.961175500000024],[103.96780210000009,0.964087],[103.96722580000005,0.967036500000063],[103.96045550000008,0.976451900000029],[103.94247,0.990851700000064],[103.93806640000008,0.997516500000074],[103.92657270000007,0.998291100000074],[103.92753580000004,1.000848700000063],[103.92592780000007,1.005786300000068],[103.92265550000008,1.00872460000005],[103.91823360000006,1.009046100000035],[103.91213040000008,1.005046500000049],[103.90868340000009,1.006191700000045],[103.90123870000008,0.999136900000053],[103.88824610000006,1.009632100000033],[103.88446960000005,1.015336300000058],[103.88084560000004,1.01465950000005],[103.87987670000007,1.012726],[103.87745820000004,1.013161],[103.878862,1.017124900000056],[103.87750390000008,1.017801800000029],[103.87648920000004,1.016496600000039],[103.87523040000008,1.019107],[103.88079980000003,1.019832],[103.88384750000006,1.024861800000053],[103.88387280000006,1.027979800000026],[103.878172,1.034634100000062],[103.87631140000008,1.035005100000035],[103.87617540000008,1.032540800000049],[103.87404170000008,1.031672800000024],[103.87258650000007,1.034081800000024]]],[[[103.903955,1.031035700000075],[103.90229940000006,1.035369],[103.89588250000008,1.038808600000038],[103.894353,1.03630140000007],[103.89459370000009,1.030806700000028],[103.89072910000004,1.032138100000054],[103.88680440000007,1.02959850000002],[103.88480580000004,1.029889900000057],[103.89149620000006,1.016506500000048],[103.89271690000004,1.01095250000003],[103.90311350000007,1.002913500000034],[103.90810360000006,1.007985700000063],[103.91325110000008,1.007841300000052],[103.91523620000004,1.011258700000042],[103.92019960000005,1.012093400000026],[103.91708980000004,1.017318500000044],[103.91178980000007,1.019496700000047],[103.90770740000005,1.019138],[103.90906230000007,1.020648600000072],[103.90633460000004,1.022921],[103.903955,1.031035700000075]]],[[[103.83465,1.038801200000023],[103.83313180000005,1.03734780000002],[103.83706860000007,1.036176700000055],[103.83465,1.038801200000023]]],[[[103.80551340000005,1.039247500000045],[103.80253790000006,1.039236100000039],[103.80202670000006,1.036985400000049],[103.80529980000006,1.03529930000002],[103.80947690000005,1.035486200000037],[103.80551340000005,1.039247500000045]]],[[[103.82327080000005,1.04131510000002],[103.82089420000005,1.038991900000042],[103.82883260000006,1.036813700000039],[103.828474,1.038969],[103.82327080000005,1.04131510000002]]],[[[103.79855160000005,1.040002800000025],[103.79920010000006,1.041818600000056],[103.79796030000006,1.042417500000056],[103.79725460000009,1.040670400000067],[103.79855160000005,1.040002800000025]]],[[[103.821188,1.044153200000039],[103.82130620000004,1.045312900000056],[103.819849,1.04550740000002],[103.81976890000004,1.044118900000058],[103.821188,1.044153200000039]]],[[[103.796072,1.045541800000024],[103.79486660000003,1.045106900000064],[103.79585080000004,1.041021300000068],[103.79793360000008,1.04464530000007],[103.796072,1.045541800000024]]],[[[103.87698060000008,1.045871500000032],[103.87597780000004,1.044593700000064],[103.87892830000004,1.03982080000003],[103.87886570000006,1.037112300000047],[103.88262910000009,1.032785800000056],[103.88788210000007,1.032248200000026],[103.88963820000004,1.033623300000045],[103.889238,1.038099600000066],[103.89044520000004,1.039303800000027],[103.88906290000006,1.042139100000043],[103.88657330000007,1.042480400000045],[103.88655850000004,1.040112500000021],[103.88486170000004,1.038911300000052],[103.88290170000005,1.041202],[103.883296,1.044896400000027],[103.87698060000008,1.045871500000032]]],[[[103.88916760000006,1.046685100000047],[103.88661890000009,1.046002300000055],[103.88812630000007,1.045115400000043],[103.88916760000006,1.046685100000047]]],[[[103.88187980000004,1.047369],[103.88277630000005,1.048273100000074],[103.88133050000005,1.049779900000033],[103.88187980000004,1.047369]]],[[[103.77649880000007,1.049200100000064],[103.77445790000007,1.050619100000063],[103.76910590000006,1.048574400000064],[103.77069660000006,1.033060100000057],[103.764864,1.030881900000054],[103.75624280000005,1.034383800000057],[103.750021,1.031278600000064],[103.749239,1.029367400000069],[103.75071530000008,1.026273700000047],[103.75584980000008,1.02493480000004],[103.76245310000007,1.012956600000052],[103.763998,1.012693400000046],[103.76545520000008,1.014730500000042],[103.76540950000003,1.01153370000003],[103.76835440000008,1.009901],[103.76522640000007,1.009714100000053],[103.76780890000003,1.000623700000062],[103.77179910000007,1.004507100000069],[103.77417180000003,1.00461770000004],[103.77546880000006,1.002138100000025],[103.77179910000007,0.999116900000047],[103.77595710000008,0.993722900000023],[103.77455330000004,0.98876],[103.77784920000005,0.986303300000031],[103.78200720000007,0.97859],[103.78954120000009,0.973485900000071],[103.79281430000003,0.973184600000025],[103.79535870000007,0.969129600000031],[103.79805180000005,0.968545900000038],[103.80076410000004,0.971517600000027],[103.80558970000004,0.973058700000024],[103.80076410000004,0.978475600000024],[103.801775,0.981500600000061],[103.79987910000006,0.984903300000042],[103.80086710000006,0.990686400000072],[103.796896,0.996843300000023],[103.79795270000005,1.00545690000007],[103.79687690000009,1.010816600000055],[103.795145,1.011919],[103.79929540000006,1.016683600000022],[103.79959680000007,1.025087400000075],[103.79495430000009,1.028844800000059],[103.796545,1.02937890000004],[103.79706380000005,1.033475900000042],[103.79236790000004,1.041223500000058],[103.791853,1.046163600000057],[103.78940010000008,1.046377200000052],[103.78811450000006,1.043279600000062],[103.78669170000006,1.043153800000027],[103.78817560000005,1.036764100000028],[103.78322410000004,1.036699300000066],[103.78606220000006,1.038011600000061],[103.78550910000007,1.040895500000033],[103.78227420000007,1.040693300000044],[103.78135110000005,1.043073700000036],[103.77949710000007,1.04335210000005],[103.77868080000007,1.047670400000072],[103.77649880000007,1.049200100000064]]],[[[103.83123210000008,1.052354800000046],[103.82863040000007,1.054067600000053],[103.82744790000004,1.052011500000049],[103.82540320000004,1.053159700000037],[103.82486920000008,1.050958600000058],[103.81883810000005,1.049070400000062],[103.81891060000004,1.047445300000049],[103.82403370000009,1.043794600000069],[103.82671170000003,1.045549400000027],[103.82956120000006,1.043840400000022],[103.83125110000009,1.044599500000061],[103.83091930000006,1.046495400000026],[103.83217810000008,1.047376600000064],[103.83020210000007,1.049581500000045],[103.83159070000005,1.049886700000059],[103.83123210000008,1.052354800000046]]],[[[104.08674110000004,1.053044500000055],[104.08161580000007,1.055896],[104.08041930000007,1.052994700000056],[104.07559990000004,1.053560900000036],[104.07389010000009,1.052374300000054],[104.07629250000008,1.049647500000049],[104.07722880000006,1.052463200000034],[104.07896620000008,1.049941100000069],[104.08047810000005,1.052650100000051],[104.081823,1.05115040000004],[104.08403760000004,1.052730900000029],[104.08691260000006,1.050627700000064],[104.08944130000003,1.051554300000021],[104.08873580000005,1.053195300000027],[104.08674110000004,1.053044500000055]]],[[[104.08663780000006,1.056042],[104.08488910000005,1.054729100000031],[104.08885910000004,1.054495700000075],[104.08663780000006,1.056042]]],[[[103.81738090000005,1.055673600000034],[103.81578250000007,1.057760200000075],[103.81505010000006,1.054960300000062],[103.81072430000006,1.051679600000057],[103.81242560000004,1.049444200000039],[103.81866650000006,1.05241970000003],[103.81820870000007,1.053812],[103.81997490000003,1.054792400000053],[103.81738090000005,1.055673600000034]]],[[[103.82201190000006,1.055093800000066],[103.82157710000007,1.057889900000021],[103.82084080000004,1.056020700000033],[103.82201190000006,1.055093800000066]]],[[[103.81307410000005,1.05973240000003],[103.810606,1.059423400000071],[103.810957,1.055971100000022],[103.81472210000004,1.057092700000055],[103.81307410000005,1.05973240000003]]],[[[104.09882970000007,1.062184400000035],[104.099954,1.063615300000038],[104.09838680000007,1.064535100000057],[104.09736480000004,1.063172400000042],[104.09882970000007,1.062184400000035]]],[[[103.89769010000003,1.061542],[103.89463790000008,1.065062900000044],[103.89185380000004,1.058655200000032],[103.894673,1.05125890000005],[103.89291560000004,1.048938900000053],[103.89570770000006,1.049121200000059],[103.89406020000007,1.047878500000024],[103.892631,1.040596300000061],[103.90004290000007,1.038848400000063],[103.90094440000007,1.039710400000047],[103.89848140000004,1.045905800000071],[103.90045270000007,1.055688400000065],[103.89769010000003,1.061542]]],[[[103.88919710000005,1.065777700000069],[103.88830430000007,1.065664200000072],[103.889307,1.064599900000076],[103.88919710000005,1.065777700000069]]],[[[104.16820430000007,1.065916300000026],[104.16447440000007,1.065744700000039],[104.16108230000003,1.057508100000064],[104.16481690000006,1.048408100000074],[104.16139910000004,1.048161200000038],[104.158583,1.042491400000074],[104.15695390000008,1.043066700000054],[104.15523730000007,1.041737600000033],[104.15501790000008,1.038991600000031],[104.15902430000006,1.038549700000033],[104.16369040000006,1.040809800000034],[104.16382290000007,1.039171100000033],[104.16188590000007,1.038594800000055],[104.16421940000004,1.037886800000024],[104.163692,1.034609200000034],[104.16166710000005,1.033767200000057],[104.16078750000008,1.030179500000031],[104.16241710000008,1.027744100000064],[104.16523450000005,1.028187700000046],[104.16505930000005,1.025043100000062],[104.16743740000004,1.022032100000047],[104.17441160000004,1.026144200000033],[104.17569430000003,1.029995700000029],[104.17891850000007,1.032055300000025],[104.17831380000007,1.035355100000061],[104.18122050000005,1.034673400000031],[104.180759,1.040920300000039],[104.18308360000003,1.045707300000061],[104.182308,1.047486400000025],[104.18431420000007,1.050202700000057],[104.18349030000007,1.051567500000033],[104.180796,1.051496400000076],[104.17870970000007,1.056865600000037],[104.17590010000004,1.056669900000031],[104.17628640000004,1.061357900000075],[104.17385880000006,1.064605],[104.17165440000008,1.065408700000035],[104.16939160000004,1.064064200000075],[104.16820430000007,1.065916300000026]]],[[[103.81777760000006,1.067541100000028],[103.81265070000006,1.063257200000066],[103.81591990000004,1.06199840000005],[103.81718250000006,1.058870300000024],[103.81630130000008,1.057680100000027],[103.81966590000007,1.055879600000026],[103.82144360000007,1.058691],[103.82510190000005,1.060129200000063],[103.81777760000006,1.067541100000028]]],[[[104.17878250000007,1.067866800000047],[104.17637360000003,1.067604600000038],[104.17513190000005,1.064602200000024],[104.17596090000006,1.063341600000058],[104.18225760000007,1.067491],[104.17878250000007,1.067866800000047]]],[[[104.06920710000009,1.067864600000064],[104.07005970000006,1.068433],[104.06863870000007,1.070252],[104.06733130000003,1.069683600000076],[104.06920710000009,1.067864600000064]]],[[[103.81678960000005,1.072137800000064],[103.81474110000005,1.071146],[103.81525610000006,1.068880100000058],[103.81769370000006,1.069288300000039],[103.81678960000005,1.072137800000064]]],[[[103.87475010000009,1.073038100000076],[103.87309840000006,1.07283590000003],[103.87254140000005,1.069223400000055],[103.87533,1.069685],[103.87627220000007,1.071596100000022],[103.87475010000009,1.073038100000076]]],[[[104.05882780000007,1.071090500000025],[104.05846360000004,1.073549],[104.05664460000008,1.071104700000035],[104.05882780000007,1.071090500000025]]],[[[103.84893610000006,1.068197300000065],[103.847929,1.072763400000042],[103.84341620000004,1.07510190000005],[103.84406470000005,1.069749800000068],[103.842886,1.067850100000044],[103.83300590000005,1.063524200000074],[103.83447840000008,1.059183100000041],[103.83763310000006,1.057909],[103.83453180000004,1.05617710000007],[103.83679390000003,1.052942300000041],[103.83564950000005,1.048425700000053],[103.83797650000008,1.047044800000037],[103.83503910000007,1.043420800000035],[103.83797650000008,1.036134700000048],[103.836771,1.031217600000048],[103.83469580000008,1.028802900000073],[103.84576610000005,1.027769100000057],[103.84630390000007,1.03294180000006],[103.84400370000009,1.034143400000062],[103.84443860000005,1.03536420000006],[103.85735130000006,1.039434400000061],[103.86133,1.042211500000064],[103.86497690000004,1.03883170000006],[103.86564830000003,1.039922700000034],[103.86849020000005,1.039289500000052],[103.86784940000007,1.042982100000074],[103.87583350000006,1.038881300000071],[103.87615780000004,1.041414300000042],[103.87335780000006,1.046880700000031],[103.86708640000006,1.048429500000054],[103.87170980000008,1.047906900000044],[103.87071040000006,1.052007700000047],[103.87381170000003,1.048299800000052],[103.87993050000006,1.047864900000036],[103.88233380000008,1.05293080000007],[103.87785910000008,1.060380900000041],[103.875452,1.058458300000041],[103.87128640000009,1.061380400000075],[103.86866190000006,1.058237100000042],[103.86950490000004,1.060049100000072],[103.86756710000009,1.064443600000061],[103.86244770000008,1.06516460000006],[103.85338780000006,1.074686100000065],[103.85259820000005,1.070928600000059],[103.84893610000006,1.068197300000065]]],[[[103.82896610000006,1.076864200000045],[103.820673,1.076532400000076],[103.81806370000004,1.070676800000058],[103.82054330000005,1.069822300000055],[103.822546,1.066705700000057],[103.82634540000004,1.066690400000027],[103.82760810000008,1.070344900000066],[103.82665820000005,1.072256100000061],[103.82934380000006,1.074846300000047],[103.82896610000006,1.076864200000045]]],[[[103.87388040000008,1.076974900000039],[103.87235070000008,1.077531800000031],[103.87025640000007,1.075929600000052],[103.87461280000008,1.07448770000002],[103.87533760000008,1.076036500000043],[103.87388040000008,1.076974900000039]]],[[[103.86503030000006,1.077837],[103.85944560000007,1.082822800000031],[103.85769080000006,1.082391700000073],[103.85592840000004,1.07894710000005],[103.85870170000004,1.076406500000076],[103.85984230000008,1.069509500000038],[103.862009,1.066862100000037],[103.86677740000005,1.066324200000054],[103.87001230000004,1.06394],[103.87073330000004,1.066907900000047],[103.86503030000006,1.077837]]],[[[103.872076,1.079202700000053],[103.87287330000004,1.081537200000071],[103.87044330000003,1.083410300000025],[103.86770060000003,1.080873500000052],[103.86971090000009,1.078836400000057],[103.86986350000006,1.076467500000035],[103.872076,1.079202700000053]]],[[[103.87099270000004,1.08422280000002],[103.87157630000007,1.085634200000072],[103.87014960000005,1.085977600000035],[103.87099270000004,1.08422280000002]]],[[[103.86900140000006,1.083852800000045],[103.86847110000008,1.086214100000063],[103.86645320000008,1.086149200000023],[103.86900140000006,1.083852800000045]]],[[[104.04375890000006,1.085693400000025],[104.04380860000003,1.086853900000051],[104.042011,1.086546],[104.04375890000006,1.085693400000025]]],[[[103.82456780000007,1.086076700000035],[103.82400320000005,1.087888700000065],[103.82302280000005,1.087465300000019],[103.82456780000007,1.086076700000035]]],[[[103.85325050000006,1.090063100000066],[103.85216330000009,1.090215700000044],[103.85372350000006,1.088880500000073],[103.851923,1.087392800000032],[103.85536380000008,1.089963900000043],[103.85325050000006,1.090063100000066]]],[[[103.78172490000009,1.09095190000005],[103.78260230000006,1.092134500000043],[103.78043560000003,1.090913800000067],[103.78032880000006,1.088232],[103.78172490000009,1.09095190000005]]],[[[103.86056710000008,1.092794400000059],[103.85951040000003,1.092630400000075],[103.86305430000004,1.087545400000067],[103.86475940000008,1.087129600000026],[103.86445810000004,1.090856600000052],[103.86056710000008,1.092794400000059]]],[[[103.88254220000005,1.097112700000025],[103.88139610000007,1.096857200000045],[103.88296420000006,1.092986500000052],[103.88254220000005,1.097112700000025]]],[[[103.871397,1.091997100000071],[103.868742,1.098505],[103.86256220000007,1.095003100000042],[103.86644170000005,1.087278400000059],[103.86868480000004,1.088689800000054],[103.87022970000004,1.087949800000047],[103.874258,1.091005300000063],[103.871397,1.091997100000071]]],[[[103.87209890000008,1.098177],[103.87090490000008,1.099039100000027],[103.869463,1.098089200000061],[103.87063030000007,1.09559820000004],[103.87209890000008,1.098177]]],[[[103.77990150000005,1.094556800000021],[103.78123660000006,1.09619710000004],[103.77912710000004,1.099687600000038],[103.77859690000008,1.096994400000028],[103.77990150000005,1.094556800000021]]],[[[103.86702540000005,1.101110500000061],[103.86558340000005,1.101972600000067],[103.86268430000007,1.100900700000068],[103.859148,1.096136100000024],[103.86744880000003,1.098161700000048],[103.86865810000006,1.100893],[103.86702540000005,1.101110500000061]]],[[[103.905447,1.101987800000074],[103.90387920000006,1.099710500000072],[103.90549660000005,1.097757300000069],[103.90744970000009,1.100664100000074],[103.905447,1.101987800000074]]],[[[103.90147210000003,1.099107700000047],[103.90187260000005,1.100893],[103.89872930000007,1.102220500000044],[103.89820670000006,1.100633600000037],[103.90147210000003,1.099107700000047]]],[[[103.91594890000005,1.100954100000024],[103.91511340000005,1.102579100000071],[103.91326710000004,1.10128590000005],[103.91594890000005,1.100954100000024]]],[[[103.87346460000003,1.101587300000062],[103.87462040000008,1.102937700000041],[103.87248420000009,1.102262500000052],[103.87346460000003,1.101587300000062]]],[[[103.86081120000006,1.102205300000037],[103.86137580000008,1.103529],[103.85999490000006,1.103239100000053],[103.86081120000006,1.102205300000037]]],[[[103.91996960000006,1.102613400000052],[103.92012210000007,1.103864700000031],[103.91859250000005,1.103261900000064],[103.91996960000006,1.102613400000052]]],[[[103.92435260000008,1.101839100000063],[103.92280770000008,1.104967100000067],[103.92143060000006,1.103036900000063],[103.92435260000008,1.101839100000063]]],[[[103.856657,1.102499],[103.85817910000009,1.10481070000003],[103.85647770000008,1.105989500000021],[103.856657,1.102499]]],[[[103.86166570000006,1.110323],[103.85951040000003,1.110029200000042],[103.85999490000006,1.107526800000073],[103.86248590000008,1.108060800000032],[103.86166570000006,1.110323]]],[[[103.80274010000005,1.101118100000065],[103.79173090000006,1.110929500000054],[103.79110910000009,1.09712410000003],[103.79945950000007,1.085977600000035],[103.81236080000008,1.084047300000066],[103.81518750000004,1.086542100000031],[103.81465340000005,1.089971500000047],[103.81095310000006,1.09562870000002],[103.80880550000006,1.094610200000034],[103.80640220000004,1.09544180000006],[103.80492590000006,1.101156200000048],[103.80274010000005,1.101118100000065]]],[[[103.90716360000005,1.110742600000037],[103.90832330000006,1.11123850000007],[103.90766330000008,1.112611800000025],[103.90614510000006,1.111146900000051],[103.90716360000005,1.110742600000037]]],[[[103.84695240000008,1.110612900000035],[103.84761620000006,1.113336600000025],[103.84623530000005,1.111814500000037],[103.84695240000008,1.110612900000035]]],[[[103.90524480000005,1.11383630000006],[103.902895,1.113134400000035],[103.90452380000005,1.112310400000069],[103.90608410000004,1.113081],[103.90524480000005,1.11383630000006]]],[[[103.90937230000009,1.114355100000068],[103.90901760000008,1.115881],[103.90647320000005,1.114259700000048],[103.90937230000009,1.114355100000068]]],[[[103.71361730000007,1.117120700000044],[103.711977,1.117013900000074],[103.71651270000007,1.114511500000049],[103.71361730000007,1.117120700000044]]],[[[103.90658760000008,1.115842800000053],[103.90492440000008,1.117803600000059],[103.90470310000006,1.115781800000036],[103.90612980000009,1.114870100000076],[103.90658760000008,1.115842800000053]]],[[[103.90835380000004,1.118997600000057],[103.90789990000007,1.117811200000062],[103.90989880000006,1.116979600000036],[103.91043280000008,1.118299500000035],[103.90835380000004,1.118997600000057]]],[[[103.87787440000005,1.118238400000052],[103.87645150000009,1.119329500000049],[103.87560460000009,1.118532200000061],[103.87848470000006,1.11596110000005],[103.88047220000004,1.116380700000036],[103.87787440000005,1.118238400000052]]],[[[103.87296870000006,1.116746900000066],[103.87372780000004,1.117700600000035],[103.87194250000005,1.119810100000052],[103.87140460000006,1.117704400000036],[103.87296870000006,1.116746900000066]]],[[[103.88884540000004,1.118532200000061],[103.88988690000008,1.120672200000058],[103.88630870000009,1.120187800000053],[103.88884540000004,1.118532200000061]]],[[[103.91477010000006,1.119772],[103.91201590000009,1.124876],[103.91028790000007,1.122167600000068],[103.91194730000007,1.119707100000028],[103.91380120000008,1.119421],[103.91397290000003,1.117528900000025],[103.91157720000007,1.11619],[103.91025730000007,1.110254300000065],[103.90772060000006,1.11022760000003],[103.90628240000007,1.108060800000032],[103.90342520000007,1.109319700000071],[103.90027810000004,1.10570720000004],[103.90226940000008,1.101190600000052],[103.90499690000007,1.102869],[103.90816690000008,1.101610200000039],[103.90960880000006,1.103178],[103.91201970000009,1.103040700000065],[103.91306880000008,1.105993300000023],[103.92072110000004,1.105936100000065],[103.91965290000007,1.11125370000002],[103.91586490000009,1.109125100000028],[103.91191290000006,1.109827],[103.91720770000006,1.112550700000043],[103.91961860000004,1.115888600000062],[103.91736790000004,1.119009],[103.91477010000006,1.119772]]],[[[103.84091380000007,1.124586100000045],[103.83822060000006,1.124868400000025],[103.834898,1.120756100000051],[103.836153,1.116182300000048],[103.83820920000005,1.120149600000047],[103.84143260000008,1.121912],[103.84091380000007,1.124586100000045]]],[[[103.88275340000007,1.126554500000054],[103.87842750000004,1.124464],[103.88388250000008,1.12190060000006],[103.88539310000004,1.126363800000036],[103.88275340000007,1.126554500000054]]],[[[103.82860760000005,1.126165400000048],[103.82594110000008,1.128843300000028],[103.82681080000003,1.125452],[103.82878690000007,1.124532700000032],[103.82860760000005,1.126165400000048]]],[[[103.89365580000003,1.129838900000038],[103.88954730000006,1.12708850000007],[103.88940620000005,1.125803],[103.89171410000006,1.124746300000027],[103.88937950000008,1.123708700000066],[103.89009670000007,1.121957800000075],[103.89180950000008,1.121458100000041],[103.89413640000004,1.126600300000064],[103.89365580000003,1.129838900000038]]],[[[103.87815280000007,1.12884710000003],[103.87685970000007,1.13058280000007],[103.87513920000004,1.129026400000043],[103.87407490000004,1.124231300000019],[103.880228,1.125906],[103.88014790000005,1.128107100000022],[103.87815280000007,1.12884710000003]]],[[[103.85493660000009,1.127180100000032],[103.85008810000005,1.132944100000032],[103.85134320000009,1.130430200000035],[103.85054210000004,1.127706500000045],[103.85288430000008,1.125860200000034],[103.85493660000009,1.127180100000032]]],[[[103.87387280000007,1.132764800000075],[103.87257580000005,1.133028],[103.87105750000006,1.130655300000058],[103.87190440000006,1.128274900000065],[103.87575720000007,1.130647700000054],[103.87387280000007,1.132764800000075]]],[[[103.87752340000009,1.136571900000035],[103.876112,1.135942500000056],[103.87792780000007,1.134523400000035],[103.87752340000009,1.136571900000035]]],[[[103.83893780000005,1.136907600000029],[103.83769040000004,1.13829990000005],[103.83763310000006,1.137002900000027],[103.836134,1.136869400000023],[103.84073450000005,1.134248700000057],[103.83893780000005,1.136907600000029]]],[[[104.07405790000007,1.13808240000003],[104.07242630000007,1.139135700000054],[104.06954620000005,1.138126200000045],[104.06847770000007,1.134909900000025],[104.07325520000006,1.132622800000036],[104.07405790000007,1.13808240000003]]],[[[103.83612250000004,1.140283600000032],[103.83414270000009,1.139364200000045],[103.83611490000004,1.138879800000041],[103.83612250000004,1.140283600000032]]],[[[103.94647810000004,1.147069100000067],[103.94491140000008,1.148747800000024],[103.94351610000007,1.145687],[103.94647810000004,1.147069100000067]]],[[[103.97529790000004,1.142641100000048],[103.97763250000008,1.146474800000021],[103.97690010000008,1.148996400000044],[103.97473720000005,1.149889],[103.97226140000004,1.14787860000007],[103.97529790000004,1.142641100000048]]],[[[103.65725140000006,1.150342900000055],[103.65551190000008,1.150575600000025],[103.65844150000004,1.146272700000054],[103.65855980000003,1.144792600000073],[103.65708350000006,1.144220400000052],[103.65924640000009,1.144670500000075],[103.65992930000004,1.142820400000062],[103.66033740000006,1.145120600000041],[103.65725140000006,1.150342900000055]]],[[[103.87381940000006,1.143995300000029],[103.87520410000008,1.146127700000022],[103.876482,1.146383300000025],[103.87642480000005,1.147005100000058],[103.87421990000007,1.154932],[103.87160680000005,1.155210500000067],[103.86901280000006,1.152250300000048],[103.869421,1.147562],[103.87170980000008,1.14441110000007],[103.87381940000006,1.143995300000029]]],[[[103.88917350000008,1.157899900000075],[103.88731580000007,1.158739100000048],[103.88556860000006,1.157587100000057],[103.88389780000006,1.149679200000037],[103.88240240000005,1.149961500000074],[103.882616,1.153089500000021],[103.88095670000007,1.154008900000065],[103.88100620000006,1.149095500000044],[103.87611580000004,1.149862300000052],[103.8771,1.146249800000021],[103.87536430000006,1.146032300000059],[103.87446020000004,1.143327700000043],[103.87915610000005,1.140211100000045],[103.88176160000006,1.14308740000007],[103.88448910000005,1.142118500000038],[103.88863560000004,1.142988200000048],[103.88934140000003,1.141931500000055],[103.89261440000007,1.14399910000003],[103.89601330000005,1.150667200000044],[103.89277840000005,1.15619090000007],[103.88917350000008,1.157899900000075]]],[[[103.86518670000004,1.154573400000061],[103.86780740000006,1.161680200000035],[103.86308860000008,1.15701480000007],[103.86518670000004,1.154573400000061]]],[[[103.88133810000005,1.162138],[103.87986180000007,1.163980500000036],[103.87782860000004,1.163484600000061],[103.87788580000006,1.161226300000067],[103.87504010000004,1.157510800000068],[103.87677190000005,1.154920600000025],[103.88230710000005,1.158037200000024],[103.88322260000007,1.161073700000031],[103.88133810000005,1.162138]]],[[[103.89762690000003,1.165247],[103.895258,1.165746700000057],[103.89800070000007,1.157045400000072],[103.90484430000004,1.154966400000035],[103.90517230000006,1.156786],[103.89762690000003,1.165247]]],[[[103.89047430000005,1.171850200000051],[103.88878060000008,1.173021300000073],[103.89156910000008,1.168123200000025],[103.89307590000004,1.168043100000034],[103.89047430000005,1.171850200000051]]],[[[104.11393010000006,1.196393200000045],[104.10677450000009,1.200846100000035],[104.09871730000003,1.200205600000061],[104.09868890000007,1.197397800000033],[104.09714450000007,1.195784500000059],[104.09570960000008,1.196407800000031],[104.094878,1.193894500000056],[104.08470130000006,1.195441500000072],[104.08291250000008,1.194518300000027],[104.08387480000005,1.192583300000024],[104.08273480000008,1.191165300000023],[104.072393,1.18676],[104.07362380000006,1.184217600000068],[104.06961710000007,1.178037800000027],[104.06897040000007,1.173886400000072],[104.06875110000004,1.168428600000027],[104.07063740000007,1.162160300000039],[104.08515310000007,1.154975200000024],[104.09277850000007,1.156057800000042],[104.08926830000007,1.153581200000076],[104.090055,1.14233280000002],[104.08739560000004,1.141884700000048],[104.08387830000004,1.146930200000043],[104.07899940000004,1.14436180000007],[104.07915770000005,1.140205800000047],[104.07759990000005,1.139391600000067],[104.07729040000004,1.136861200000055],[104.08358730000003,1.128459900000053],[104.07730850000007,1.124839100000031],[104.07542560000007,1.120669300000031],[104.07294090000005,1.119318900000053],[104.07293270000008,1.129280200000039],[104.06890520000007,1.133223],[104.06723840000006,1.132051],[104.06396240000004,1.132470600000033],[104.06496330000004,1.13619790000007],[104.06175260000003,1.136833300000035],[104.06139460000009,1.138508],[104.05970960000008,1.138168200000052],[104.06100890000005,1.136183],[104.06044850000006,1.132075900000075],[104.05436330000003,1.131501600000036],[104.05440660000005,1.139677100000029],[104.05234340000004,1.139777600000059],[104.05217860000005,1.146849300000042],[104.050962,1.144973600000071],[104.05034550000005,1.148941500000035],[104.05683440000007,1.151904100000024],[104.05864970000005,1.158548400000029],[104.05342910000007,1.158496700000057],[104.05204040000007,1.166183900000021],[104.04882830000008,1.162159900000063],[104.05005990000006,1.168762500000071],[104.04908440000008,1.169892700000048],[104.04472990000005,1.16923840000004],[104.04465260000006,1.173396500000024],[104.04127970000008,1.17764980000004],[104.04026850000008,1.175627200000065],[104.03622230000008,1.175457],[104.03555710000006,1.17807810000005],[104.03277320000007,1.179315400000064],[104.02883510000004,1.175865200000032],[104.02883090000006,1.179640100000029],[104.02506720000008,1.176097300000038],[104.02477570000008,1.178628],[104.02631020000007,1.179295],[104.02407240000008,1.17913580000004],[104.02580770000009,1.179534],[104.02402920000009,1.179914200000042],[104.02552070000007,1.181711600000028],[104.02387480000004,1.182185200000049],[104.026149,1.181972900000062],[104.02443730000005,1.183329800000024],[104.02597360000004,1.184662],[104.02724070000005,1.184025600000041],[104.026416,1.187970500000063],[104.02496260000004,1.19086040000002],[104.02373780000005,1.188432200000022],[104.02041340000005,1.188870300000076],[104.02062490000009,1.192403600000034],[104.01451180000004,1.192479200000037],[104.01432790000007,1.189564800000028],[104.01175240000003,1.189869500000043],[104.00589920000004,1.186808300000052],[104.00688550000007,1.185885400000075],[104.00578750000005,1.185162800000057],[104.00209360000008,1.184847400000024],[103.99861340000007,1.180481200000031],[103.99831870000008,1.168065100000035],[104.001759,1.167338600000051],[104.00183120000008,1.165387500000065],[103.99659580000008,1.164881800000046],[103.99902150000008,1.162348800000075],[103.996344,1.160665900000026],[103.99735240000007,1.15823720000003],[103.99560570000006,1.153867800000057],[104.000671,1.149992700000041],[103.99286840000008,1.148000700000068],[103.99368860000004,1.148920100000055],[103.99214740000008,1.150121700000057],[103.99272350000007,1.148996400000044],[103.99085810000008,1.148576700000035],[103.99225430000007,1.147851900000035],[103.99241070000005,1.143159900000057],[103.99081610000007,1.141092300000025],[103.987711,1.14171790000006],[103.98660090000004,1.144056300000045],[103.98535350000009,1.142950100000064],[103.98614310000005,1.14464380000004],[103.98456380000005,1.144029600000067],[103.98496440000008,1.14248850000007],[103.98665430000005,1.142751700000076],[103.98756220000007,1.140462900000045],[103.99010280000005,1.13902470000005],[103.99279430000007,1.130447100000026],[103.997941,1.123007200000075],[103.999439,1.121844],[104.00219830000003,1.122603600000048],[104.00027650000004,1.120293900000036],[103.99535140000006,1.122183700000051],[103.99569410000004,1.12502980000005],[103.99041570000009,1.12993750000004],[103.98799720000005,1.131028700000059],[103.98721590000008,1.129027700000051],[103.988601,1.13366080000003],[103.98684,1.131988900000067],[103.98434560000004,1.133909],[103.98468990000003,1.131816800000024],[103.98182630000008,1.132257],[103.98102290000008,1.129895],[103.97786880000007,1.13756920000003],[103.97610570000006,1.134194200000024],[103.97494930000005,1.133762600000068],[103.97340730000008,1.135948800000051],[103.96969230000008,1.134353400000066],[103.97070810000008,1.129517700000065],[103.96884050000006,1.12921110000002],[103.96553630000005,1.124547100000029],[103.96756460000006,1.129121],[103.96736710000005,1.13698880000004],[103.96590240000006,1.139822400000071],[103.96057930000006,1.143091900000059],[103.96104440000005,1.140981100000033],[103.95833040000008,1.139490200000068],[103.956808,1.136304700000039],[103.95667980000007,1.138519300000041],[103.95186060000003,1.140102900000045],[103.94801330000007,1.145455800000036],[103.944056,1.144332600000041],[103.94193260000009,1.141739100000052],[103.94303750000006,1.137148500000023],[103.93146550000006,1.140376400000036],[103.93030080000005,1.143496900000059],[103.92832350000003,1.14096150000006],[103.92648590000005,1.141149600000062],[103.92551710000004,1.143193600000075],[103.92107420000008,1.143146900000033],[103.91871620000006,1.13956150000007],[103.92352680000005,1.126846600000022],[103.92535680000009,1.124017700000024],[103.92991850000004,1.123829500000056],[103.93282820000007,1.121454800000038],[103.93404440000006,1.118433400000072],[103.93227240000004,1.116447],[103.932259,1.113972100000069],[103.93513220000006,1.114937200000043],[103.93466070000005,1.113972900000022],[103.93750540000008,1.111788800000056],[103.93476370000008,1.110159],[103.93360260000009,1.106994600000064],[103.932066,1.111402500000054],[103.92966650000005,1.11142540000003],[103.92920110000006,1.105936100000065],[103.930933,1.105478300000073],[103.92956730000009,1.105238],[103.92957880000006,1.102914800000065],[103.93190190000007,1.102048900000057],[103.92846870000005,1.09996220000005],[103.93004040000005,1.097093600000051],[103.93268010000008,1.095922500000029],[103.93514820000007,1.088941600000055],[103.93651770000008,1.088296900000046],[103.93568610000005,1.086919800000032],[103.93762020000008,1.084138900000028],[103.93668170000007,1.082532900000047],[103.93530080000005,1.081464800000049],[103.93247110000004,1.082935100000043],[103.92872980000004,1.073317700000075],[103.92625570000007,1.074427700000058],[103.92475090000005,1.071321700000055],[103.92215950000008,1.069811300000026],[103.92388820000008,1.072044400000038],[103.92329820000003,1.075606300000061],[103.92044120000008,1.077928300000053],[103.92301050000003,1.081944800000031],[103.92110970000004,1.081380200000069],[103.92086340000009,1.084120300000052],[103.91601510000004,1.079464600000051],[103.91808250000008,1.08415610000003],[103.91560530000004,1.085424],[103.91215970000007,1.083346800000072],[103.90919860000008,1.087822600000038],[103.91500830000007,1.08659410000007],[103.91630290000006,1.088455400000043],[103.91131260000009,1.088845500000048],[103.91191180000004,1.090666800000065],[103.91521640000008,1.090754],[103.91589910000005,1.091647500000022],[103.91527450000007,1.09514340000004],[103.91382730000004,1.090981100000022],[103.91144330000009,1.091356100000041],[103.91197750000003,1.097897300000056],[103.90430820000006,1.095374],[103.89915540000004,1.095684100000028],[103.89843360000003,1.098130200000071],[103.89388380000008,1.096944600000029],[103.89395250000007,1.098572800000056],[103.89153490000007,1.098284400000068],[103.88956160000004,1.093841],[103.89409970000008,1.082654800000057],[103.89588610000004,1.083131300000048],[103.89521270000006,1.081682600000022],[103.89646460000006,1.080057200000056],[103.89780350000007,1.08040740000007],[103.89694190000006,1.079285200000072],[103.89876080000005,1.07818930000002],[103.89794790000008,1.077549200000021],[103.89980810000009,1.07465140000005],[103.90144420000007,1.074570600000072],[103.90030620000005,1.073616800000025],[103.90400540000007,1.072335200000055],[103.90254480000004,1.071219700000029],[103.90677060000007,1.065925600000071],[103.90843040000004,1.066879],[103.90695550000004,1.065381900000034],[103.90961430000004,1.058879500000046],[103.90915810000007,1.056042400000024],[103.91056160000005,1.055878],[103.90928430000008,1.05542250000002],[103.90929470000003,1.053558900000041],[103.91069080000005,1.053502200000025],[103.90779350000008,1.051304400000049],[103.91038920000005,1.046551900000054],[103.908777,1.044398600000022],[103.91109190000009,1.037811],[103.91650410000005,1.032457700000066],[103.91799460000004,1.036422900000048],[103.91561260000009,1.039906500000029],[103.91901580000007,1.042211900000041],[103.91931420000009,1.040805500000033],[103.91656880000005,1.039959700000054],[103.91660090000005,1.038759800000037],[103.92004110000005,1.037276700000064],[103.918055,1.031772300000057],[103.92303480000004,1.028038300000048],[103.92464160000009,1.029077600000051],[103.92406380000006,1.027478500000029],[103.93134790000005,1.021701500000063],[103.93360190000004,1.023564],[103.93119030000008,1.020964],[103.93529520000004,1.015845200000058],[103.93560130000009,1.020206500000029],[103.93757240000008,1.021203800000023],[103.93779670000004,1.019880900000032],[103.93954770000005,1.022377900000038],[103.93802760000005,1.01939770000007],[103.93586930000004,1.019306200000074],[103.94114830000007,1.009226400000045],[103.94313490000008,1.008143400000051],[103.953836,1.008278300000029],[103.95988610000006,1.00496],[103.96347190000006,1.005157500000053],[103.97177960000005,1.010085400000037],[103.98174330000006,1.008339700000022],[103.98912260000009,1.013207800000032],[103.98989660000007,1.017284500000073],[103.99285120000008,1.016303700000037],[103.99864810000008,1.009958800000049],[103.99976330000004,1.004263700000024],[104.00187840000007,1.002587500000061],[104.00368370000007,1.00345550000003],[104.00853750000005,0.995207300000061],[104.00962460000005,0.990087700000061],[104.00779290000008,0.986779300000023],[104.008853,0.985760500000026],[104.01190360000004,0.988465400000052],[104.01869210000007,0.985135900000046],[104.01991190000007,0.987117700000056],[104.01882150000006,0.98842680000007],[104.02006290000008,0.988758],[104.02299530000005,0.986380300000064],[104.02426370000006,0.982544700000062],[104.02616120000005,0.983472900000038],[104.02861890000008,0.982147200000043],[104.03115560000003,0.982643100000075],[104.03210740000009,0.980631800000026],[104.03411740000007,0.98024010000006],[104.03849860000008,0.981346400000064],[104.03905070000008,0.98312020000003],[104.04086640000008,0.98274710000004],[104.04240490000007,0.986148700000058],[104.04085640000005,0.988625700000057],[104.03975330000009,0.987836400000049],[104.03880170000008,0.991111700000033],[104.03704060000007,0.98932910000002],[104.034786,0.992832300000032],[104.03651490000004,0.992653800000028],[104.03869850000007,0.995048],[104.03697280000006,0.994524600000034],[104.03378380000004,0.996775700000057],[104.02944590000004,1.000539300000071],[104.02923410000005,1.003173400000037],[104.02749410000007,1.003239800000074],[104.02506180000006,1.010929400000066],[104.02660310000005,1.013137700000073],[104.02432710000005,1.014466200000072],[104.02626,1.016106900000068],[104.02381070000007,1.016447200000073],[104.02438610000007,1.017430700000034],[104.02085580000005,1.02157040000003],[104.020054,1.025264400000026],[104.02240380000006,1.028243400000065],[104.02983440000008,1.02123430000006],[104.03221880000007,1.021363800000074],[104.03325590000009,1.01743840000006],[104.03214610000003,1.016706500000055],[104.03480670000005,1.016467300000045],[104.03762180000007,1.01038490000002],[104.044255,1.007015300000035],[104.04860430000008,1.000424600000031],[104.05225240000004,0.998361100000068],[104.05251080000005,0.99551740000004],[104.057611,0.991740500000049],[104.05822590000008,0.989018],[104.06215350000008,0.985212500000046],[104.06410530000005,0.985661500000049],[104.06729290000004,0.982999800000073],[104.07213550000006,0.991518400000075],[104.07208580000008,0.995831600000031],[104.07059970000006,0.998019700000043],[104.07162940000006,0.998938500000065],[104.07586790000005,0.998350900000048],[104.07968040000009,0.990594800000054],[104.08432560000006,0.987958200000037],[104.08421290000007,0.984873600000071],[104.08928640000005,0.985208500000056],[104.09766880000006,0.982256500000062],[104.10106780000007,0.982407500000022],[104.09556170000008,0.987158400000055],[104.09064760000007,0.998418300000026],[104.08242960000007,1.008335100000068],[104.082551,1.018218600000068],[104.08022610000006,1.019937300000038],[104.07990610000007,1.023444700000027],[104.08370730000007,1.027785700000038],[104.09054280000004,1.028434100000027],[104.09599990000004,1.026663800000051],[104.09575590000009,1.025516100000061],[104.100575,1.028728300000068],[104.10173040000006,1.037438],[104.09975870000005,1.04134810000005],[104.10453940000008,1.043069],[104.10630790000005,1.043474],[104.10582590000007,1.04185590000003],[104.10983740000006,1.036308500000075],[104.11016380000007,1.032835900000066],[104.11345020000005,1.034014100000036],[104.11495290000005,1.03836130000002],[104.11736450000006,1.038375500000029],[104.119933,1.03435010000004],[104.12487480000004,1.034458100000052],[104.12945750000006,1.031938100000048],[104.13346630000007,1.03441],[104.13344670000004,1.03676710000002],[104.13667030000005,1.038947800000074],[104.13949520000006,1.053607800000066],[104.13505470000007,1.066888200000051],[104.13672710000009,1.072750300000052],[104.13871280000006,1.07275930000003],[104.13855520000004,1.069299900000033],[104.13938050000007,1.07330120000006],[104.13696680000004,1.073494],[104.13702470000004,1.075089300000059],[104.13444660000005,1.076174300000048],[104.13589610000008,1.076564900000051],[104.13726140000006,1.080488100000025],[104.14020770000008,1.080345800000032],[104.13574580000005,1.081711900000073],[104.13813130000005,1.084037500000022],[104.14091710000008,1.100552200000038],[104.14762880000006,1.10732530000007],[104.14565460000006,1.112340900000049],[104.147007,1.113105700000062],[104.149776,1.110076],[104.15070580000008,1.111347200000068],[104.14854770000005,1.115263700000071],[104.15443740000006,1.136338700000067],[104.15415830000006,1.138039300000059],[104.14910650000007,1.14086020000002],[104.14958170000006,1.144659800000056],[104.14596940000007,1.145576800000072],[104.14506790000007,1.147106300000075],[104.14236690000007,1.146507300000053],[104.14098850000005,1.149338900000032],[104.14261940000006,1.151238100000057],[104.14618080000008,1.149360500000057],[104.14790570000008,1.159395700000061],[104.14724330000007,1.165257500000052],[104.14898530000005,1.17062240000007],[104.13562260000003,1.179144400000041],[104.12434440000004,1.189598300000057],[104.11393010000006,1.196393200000045]],[[104.04014390000003,1.092351400000041],[104.03917010000004,1.093215800000053],[104.04132950000007,1.096989],[104.04363820000003,1.088341700000058],[104.04685490000008,1.089683],[104.04586290000009,1.087103800000023],[104.04903170000006,1.083475600000043],[104.05034990000007,1.083421800000053],[104.05124050000006,1.085482300000024],[104.05168710000004,1.08245880000004],[104.054605,1.080531700000051],[104.05679550000008,1.07578],[104.06022230000008,1.087968600000067],[104.06032270000009,1.083748400000047],[104.06314320000007,1.087317600000063],[104.05876450000005,1.078477],[104.059921,1.076432800000021],[104.061633,1.077238],[104.063007,1.07538930000004],[104.06475250000005,1.077448700000048],[104.06406610000005,1.079908600000067],[104.06544450000007,1.078675400000066],[104.06766140000008,1.081591900000035],[104.06453710000005,1.075089],[104.06508590000004,1.073537100000067],[104.06596980000006,1.075035100000036],[104.06938860000008,1.075094400000069],[104.070986,1.077966200000049],[104.07046190000005,1.079989700000056],[104.07219180000004,1.078821100000027],[104.07132960000007,1.07498750000002],[104.07427660000008,1.075686700000063],[104.07468080000007,1.081831500000021],[104.07253690000005,1.084619900000064],[104.07529370000009,1.084585700000048],[104.07655060000008,1.089945],[104.07771580000008,1.087911],[104.07644740000006,1.083947500000022],[104.07717120000007,1.081169700000032],[104.07940480000008,1.080266700000038],[104.08042920000008,1.082283500000074],[104.0834,1.081542800000022],[104.08454980000005,1.084028400000022],[104.08329940000004,1.086320100000023],[104.08493410000005,1.085008600000037],[104.08579990000004,1.086001900000042],[104.08506240000008,1.088836],[104.08317640000007,1.088811900000053],[104.08450680000004,1.090363700000069],[104.08325110000004,1.093515100000047],[104.08673230000005,1.089608100000021],[104.08983020000005,1.09511150000003],[104.089731,1.090344800000025],[104.088892,1.088077],[104.08744,1.087894800000072],[104.08686980000004,1.084157900000037],[104.08849350000008,1.082824200000061],[104.08563610000004,1.08078880000005],[104.08716540000006,1.079085400000054],[104.08676120000007,1.076550300000065],[104.08342820000007,1.079058900000064],[104.08238840000007,1.078687400000035],[104.08302860000003,1.076366500000063],[104.07949430000008,1.077407200000039],[104.07984740000006,1.074106900000061],[104.07689560000006,1.075017100000025],[104.07838120000008,1.069301100000075],[104.07601980000004,1.065477100000066],[104.080248,1.062513700000068],[104.07963570000004,1.068066100000067],[104.081401,1.070799200000067],[104.08292660000006,1.068262900000036],[104.08193520000003,1.066416400000037],[104.08405510000006,1.066376400000024],[104.08326440000008,1.068199700000037],[104.08447650000005,1.071121800000071],[104.08694850000006,1.067687800000044],[104.089038,1.068200800000056],[104.09034730000008,1.065696800000069],[104.09166560000006,1.066127200000039],[104.09135410000005,1.064335700000072],[104.09637730000009,1.063616600000046],[104.09604760000008,1.065810800000065],[104.09864420000008,1.066003800000033],[104.09421920000005,1.069182],[104.09765870000007,1.07025630000004],[104.09943050000004,1.068120600000043],[104.10241450000007,1.069998200000043],[104.09858920000005,1.073004],[104.09558040000007,1.072547200000031],[104.09692130000008,1.078724200000067],[104.09825770000003,1.074735],[104.10107520000008,1.072998100000063],[104.10190710000006,1.073830300000054],[104.10182570000006,1.076734700000031],[104.10047810000003,1.077603100000033],[104.10155450000008,1.078156700000022],[104.10128770000006,1.08078370000004],[104.09948430000009,1.083106],[104.10038110000005,1.084927],[104.09836860000007,1.08699370000005],[104.10028280000006,1.086957400000074],[104.10127950000003,1.089502700000025],[104.10288360000004,1.08059430000003],[104.105059,1.079352700000072],[104.10315290000005,1.078677800000037],[104.10458760000006,1.076449700000069],[104.10377770000008,1.073300500000073],[104.10641780000009,1.073262900000032],[104.10768720000004,1.07604],[104.10777020000006,1.07366090000005],[104.10921260000003,1.07347180000005],[104.10671990000009,1.071995500000071],[104.10674540000008,1.070636200000024],[104.10465710000005,1.070456100000058],[104.10410810000008,1.0673],[104.10559490000009,1.066307],[104.10902760000005,1.068149100000028],[104.11194430000006,1.067726300000061],[104.11089010000006,1.065814400000022],[104.10886590000007,1.067351600000052],[104.10660810000007,1.065889600000048],[104.10967430000005,1.063200900000027],[104.10343240000009,1.06474860000003],[104.10426530000007,1.058843100000047],[104.106427,1.060178],[104.108356,1.058737],[104.10524130000005,1.057085800000038],[104.10700220000007,1.053348200000073],[104.10992990000005,1.055669400000056],[104.10572240000005,1.047684300000071],[104.10633510000008,1.044079400000044],[104.09879440000009,1.041992900000025],[104.09776010000007,1.044171900000038],[104.09507040000005,1.042177800000047],[104.09357140000009,1.043003800000065],[104.09036810000003,1.037966600000061],[104.08984840000005,1.039650600000073],[104.08664020000003,1.039727200000073],[104.08426690000005,1.042373600000076],[104.07837930000005,1.040872],[104.07465750000006,1.041942900000038],[104.07866780000006,1.043958300000043],[104.07995560000006,1.043046400000037],[104.08315620000008,1.045487700000024],[104.08483220000005,1.044090600000061],[104.08709170000009,1.044900600000062],[104.08602190000005,1.047233500000061],[104.08386090000005,1.047996500000067],[104.08020780000004,1.045164],[104.07889850000004,1.047830300000044],[104.07699170000006,1.045415800000058],[104.07226670000006,1.044703800000036],[104.07516480000004,1.04690370000003],[104.07282510000005,1.048211600000059],[104.07352240000006,1.049389200000064],[104.07202410000008,1.050664],[104.07095810000004,1.047763300000042],[104.06970420000005,1.049914800000067],[104.06939030000007,1.04698140000005],[104.07003040000006,1.042622600000072],[104.07245040000004,1.039861100000053],[104.07102940000004,1.038563600000032],[104.06907990000008,1.039356800000064],[104.06723550000004,1.037636900000052],[104.06808320000005,1.035829700000022],[104.06670590000004,1.033806700000071],[104.06125990000004,1.031337700000051],[104.06011790000008,1.034106700000052],[104.06231370000006,1.037328900000034],[104.05900880000007,1.036850100000038],[104.05908640000007,1.039228600000058],[104.05730860000006,1.039885300000037],[104.05855340000005,1.042911200000049],[104.05687350000005,1.044023400000071],[104.05945890000004,1.044925600000056],[104.06093180000005,1.042277700000056],[104.06296170000007,1.043615200000033],[104.06164530000007,1.04625720000007],[104.05919570000003,1.046170400000051],[104.05915830000004,1.048348600000054],[104.05654120000008,1.048074700000029],[104.057283,1.04975410000003],[104.05485480000004,1.051226100000065],[104.05748390000008,1.051870100000031],[104.05710490000007,1.053794500000038],[104.05394,1.054090700000074],[104.05528520000007,1.055817900000022],[104.05269560000005,1.056081300000073],[104.05342110000004,1.059505100000024],[104.05203590000008,1.060910900000067],[104.05800880000004,1.060297700000035],[104.05772750000006,1.061898],[104.05350530000004,1.062107200000071],[104.05284970000008,1.064021400000058],[104.05532180000006,1.063158600000065],[104.05909820000005,1.066674200000023],[104.06332540000005,1.067366400000026],[104.06093190000007,1.070080100000041],[104.05852230000005,1.070591100000058],[104.05883140000009,1.06782620000007],[104.05687240000009,1.067896500000074],[104.05426240000008,1.065634800000055],[104.055975,1.06970270000005],[104.05105230000004,1.065533200000061],[104.04884390000007,1.06906790000005],[104.04897420000003,1.063570200000072],[104.04595860000006,1.068898200000035],[104.044065,1.066463800000065],[104.03964930000006,1.066133400000069],[104.04108810000008,1.067384300000072],[104.03991020000007,1.068700100000058],[104.04353970000005,1.072781600000042],[104.04625460000005,1.072749500000043],[104.04838010000009,1.074922],[104.05181470000008,1.074495300000024],[104.05050540000008,1.077423500000066],[104.04792110000005,1.078113700000074],[104.04494560000006,1.074591800000064],[104.04543560000008,1.076862500000061],[104.04370210000008,1.0765],[104.04357040000008,1.079198200000064],[104.04039820000008,1.07719],[104.04115120000006,1.074821],[104.03889480000004,1.073240800000065],[104.03859950000003,1.076037700000029],[104.03558880000008,1.080347400000051],[104.03558970000006,1.077517500000056],[104.03264630000007,1.07597],[104.03513170000008,1.07778060000004],[104.03464620000005,1.080667100000028],[104.03635990000004,1.085117800000035],[104.03973160000004,1.083473500000025],[104.038363,1.090851100000066],[104.04014390000003,1.092351400000041]]]]},"properties":{"shapeName":"Kota Batam","shapeISO":"","shapeID":"22746128B70690805151397","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[112.57454130000008,-7.733932099999947],[112.54900530000009,-7.730437599999959],[112.5401094,-7.725769399999933],[112.533253,-7.725356],[112.52916120000009,-7.7369393],[112.5219896000001,-7.738192899999945],[112.51485610000009,-7.741796399999942],[112.51336070000002,-7.751242],[112.5074098,-7.755042899999978],[112.5026262,-7.756044299999928],[112.50055860000009,-7.762549699999965],[112.49655320000011,-7.762488699999949],[112.47816550000005,-7.768938299999945],[112.48379690000002,-7.775921699999969],[112.48394180000003,-7.781954599999949],[112.48779470000011,-7.788575],[112.488479,-7.795471899999939],[112.48981640000011,-7.7969073],[112.48731420000001,-7.803337299999953],[112.49169330000007,-7.807051499999943],[112.49511890000008,-7.814054399999975],[112.4924744000001,-7.823511099999962],[112.49617940000007,-7.837767499999927],[112.49285850000001,-7.845776699999931],[112.49504850000005,-7.854374599999971],[112.49041410000007,-7.859645799999953],[112.48684220000007,-7.858318299999951],[112.48880440000005,-7.860954699999979],[112.48762680000004,-7.871347799999967],[112.48960280000006,-7.876242],[112.48804640000003,-7.881661799999961],[112.47885130000009,-7.894932],[112.47531290000006,-7.904307199999948],[112.47612930000003,-7.915203],[112.47365570000011,-7.9317731],[112.47409120000009,-7.942272199999934],[112.48488020000002,-7.933914499999958],[112.51265120000005,-7.922521899999936],[112.5227331000001,-7.927209499999947],[112.53149770000005,-7.924711099999968],[112.53426150000007,-7.925503699999979],[112.54286680000007,-7.922732],[112.54812370000002,-7.922899699999959],[112.54904340000007,-7.919433899999945],[112.55075980000004,-7.9204554],[112.55119960000002,-7.919111599999951],[112.55666420000011,-7.917457699999943],[112.55688140000007,-7.916191399999946],[112.56058680000001,-7.916177599999969],[112.56074430000001,-7.9146755],[112.56716730000005,-7.912579899999969],[112.57448340000008,-7.914456299999927],[112.5797047000001,-7.918843899999956],[112.57994170000006,-7.911599199999955],[112.58561370000007,-7.908699499999955],[112.589999,-7.908847199999968],[112.59421710000004,-7.905582799999934],[112.5947053000001,-7.903395],[112.58347490000006,-7.8905357],[112.5724351,-7.891088299999979],[112.57046680000008,-7.889384099999972],[112.56628650000005,-7.882505699999967],[112.5651031000001,-7.882846299999926],[112.56419160000007,-7.878202399999964],[112.56556410000007,-7.868228],[112.564421,-7.853102099999944],[112.565442,-7.848261899999954],[112.56413830000008,-7.8436407],[112.56568120000009,-7.835071299999981],[112.56358310000007,-7.8318011],[112.56458180000004,-7.828731699999935],[112.56315940000002,-7.813688399999933],[112.56516720000002,-7.809955399999978],[112.56918180000002,-7.806971699999963],[112.57195330000002,-7.799630799999932],[112.577057,-7.791907699999967],[112.58607940000002,-7.7846963],[112.5831849000001,-7.779569899999956],[112.58269670000004,-7.773647599999947],[112.58472610000001,-7.769303699999966],[112.58819590000007,-7.76669],[112.58453540000005,-7.763921599999946],[112.58152170000005,-7.759131299999979],[112.58117080000011,-7.750386599999956],[112.57754680000005,-7.738593],[112.57550980000008,-7.737122399999976],[112.57454130000008,-7.733932099999947]]]},"properties":{"shapeName":"Kota Batu","shapeISO":"","shapeID":"22746128B69801999957816","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[122.63115140000002,-5.418858599999965],[122.631098,-5.417519299999981],[122.62565430000006,-5.420022099999926],[122.62425930000006,-5.422038499999928],[122.62282980000009,-5.437386299999957],[122.62795950000009,-5.435893599999929],[122.63091220000001,-5.430130599999927],[122.63115140000002,-5.418858599999965]]],[[[122.6861871000001,-5.321071],[122.68169680000005,-5.322416499999974],[122.67867590000003,-5.321004699999946],[122.6761345000001,-5.308246599999961],[122.67476470000008,-5.315341299999943],[122.67260320000003,-5.318775199999948],[122.66402640000001,-5.3232641],[122.65464830000008,-5.324427499999956],[122.6496045,-5.334060799999975],[122.6490897000001,-5.341559599999925],[122.6457779000001,-5.346464399999945],[122.64943950000008,-5.3501603],[122.64844210000001,-5.357181599999933],[122.64023570000006,-5.367080599999952],[122.6301049000001,-5.387122],[122.6199865000001,-5.3995776],[122.61886980000008,-5.406335699999943],[122.62648920000004,-5.407563899999957],[122.6279651000001,-5.408946199999946],[122.62701880000009,-5.410879499999965],[122.62810290000004,-5.4089857],[122.62880810000001,-5.409813399999962],[122.635663,-5.407028599999933],[122.63916270000004,-5.409377599999971],[122.64315540000007,-5.4149892],[122.64243340000007,-5.417234199999939],[122.64390620000006,-5.417258699999934],[122.64743340000007,-5.423324399999956],[122.64558260000001,-5.424875399999962],[122.64761620000002,-5.423453799999947],[122.64864590000002,-5.424445699999978],[122.65017960000011,-5.435689],[122.64671450000003,-5.443707099999926],[122.63615610000011,-5.455735299999958],[122.62774980000006,-5.459666499999969],[122.62158150000005,-5.457651699999928],[122.616184,-5.457864099999938],[122.61590330000001,-5.456231599999967],[122.61409330000004,-5.457184199999972],[122.61070640000003,-5.454960299999925],[122.61167050000006,-5.453819],[122.60997390000011,-5.453665799999953],[122.60989510000002,-5.454892399999949],[122.60869690000004,-5.453763399999957],[122.60849280000002,-5.455139499999973],[122.6046510000001,-5.453947699999958],[122.60395890000007,-5.452487699999949],[122.60351330000003,-5.456013499999926],[122.60230830000012,-5.4543246],[122.59369330000004,-5.455373],[122.59400440000002,-5.456611399999929],[122.59259830000008,-5.456707299999948],[122.59038190000001,-5.460340499999973],[122.58964360000004,-5.459641599999941],[122.5894039000001,-5.462930099999937],[122.5865784,-5.466993199999933],[122.57931180000003,-5.470527199999935],[122.57256210000003,-5.478047599999968],[122.56764690000011,-5.4793711],[122.56394540000008,-5.4829953],[122.5605723000001,-5.496150199999931],[122.557111,-5.501136899999949],[122.55783350000002,-5.502992199999937],[122.55579970000008,-5.503483099999926],[122.55799520000005,-5.503157399999964],[122.55936880000002,-5.508118199999956],[122.55698770000004,-5.512613299999941],[122.55644490000009,-5.518298],[122.56667390000007,-5.522787699999981],[122.56986360000008,-5.525943],[122.57359620000011,-5.538179199999945],[122.60504720000006,-5.52519],[122.61032310000007,-5.520263299999954],[122.6151589000001,-5.511835299999973],[122.6187149000001,-5.509576],[122.62156030000006,-5.505313499999943],[122.62279010000009,-5.505278299999929],[122.622652,-5.511326599999961],[122.62467930000003,-5.509343799999954],[122.63174,-5.509409699999935],[122.63146230000007,-5.511693499999978],[122.63537520000011,-5.513641599999971],[122.6376977000001,-5.512139499999932],[122.63726660000009,-5.5142541],[122.63832550000006,-5.514554699999962],[122.639524,-5.5124944],[122.6422401000001,-5.5137572],[122.64126610000005,-5.512618499999974],[122.6427781000001,-5.512450199999932],[122.643052,-5.510001099999954],[122.6455032,-5.5114291],[122.64664010000001,-5.509737899999948],[122.6472533000001,-5.511068699999953],[122.65957230000004,-5.506435899999929],[122.66215870000008,-5.509024],[122.66243970000005,-5.505669799999964],[122.66941180000003,-5.496471099999951],[122.69312460000003,-5.494186],[122.72587180000005,-5.495178499999952],[122.73406720000003,-5.493617599999936],[122.73887450000007,-5.491089899999963],[122.74133590000008,-5.488132199999939],[122.74021890000006,-5.483790899999974],[122.74267120000002,-5.481763499999943],[122.74233750000008,-5.475474799999972],[122.74619550000011,-5.472273299999927],[122.74583870000004,-5.466946199999938],[122.75326540000003,-5.459452],[122.7508927,-5.455899699999975],[122.75193560000002,-5.454484299999933],[122.74935410000012,-5.451883499999951],[122.7498184000001,-5.449249299999963],[122.75455480000005,-5.449854699999946],[122.75941210000008,-5.432637399999976],[122.7619261000001,-5.432131799999979],[122.76218490000008,-5.428088199999934],[122.75996640000005,-5.422768],[122.76287390000005,-5.418318299999953],[122.7697945000001,-5.412504099999978],[122.768434,-5.408876],[122.763204,-5.404350699999952],[122.76249160000009,-5.391142699999932],[122.75942020000002,-5.376350499999944],[122.74823480000009,-5.360731899999962],[122.74654710000004,-5.361093],[122.74231870000006,-5.358024499999942],[122.73938270000008,-5.359805599999959],[122.73645850000003,-5.356466099999977],[122.72981870000001,-5.357458299999962],[122.7269222000001,-5.354978299999971],[122.726069,-5.3517483],[122.72778080000012,-5.337039599999969],[122.72549640000011,-5.329123],[122.72140250000007,-5.328641699999935],[122.71047360000011,-5.3321466],[122.7078,-5.3318287],[122.70122260000005,-5.328053199999943],[122.69523530000004,-5.328195],[122.6861871000001,-5.321071]]]]},"properties":{"shapeName":"Kota Baubau","shapeISO":"","shapeID":"22746128B66993074063511","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[106.97162650000007,-6.172236599999962],[106.97126790000004,-6.1876336],[106.96958180000007,-6.1949535],[106.966488,-6.195695799999953],[106.96756,-6.197811699999932],[106.96574420000007,-6.201041799999928],[106.966202,-6.206918299999927],[106.96283680000005,-6.211464099999944],[106.96239490000005,-6.214485699999955],[106.95904560000008,-6.212894099999971],[106.95775620000006,-6.217614699999956],[106.955766,-6.219511199999943],[106.95082870000005,-6.219086699999934],[106.94723530000005,-6.226147199999957],[106.94549090000004,-6.236821299999974],[106.94175740000009,-6.238182199999926],[106.94362660000007,-6.2389055],[106.94388760000004,-6.252337799999964],[106.93349470000004,-6.253953099999933],[106.92944250000005,-6.253188899999941],[106.92794050000003,-6.254637299999956],[106.92202010000005,-6.253936899999928],[106.92169970000003,-6.251299],[106.91991440000004,-6.2503401],[106.91624470000005,-6.252508699999964],[106.91572590000004,-6.258374299999957],[106.90973680000008,-6.255546199999969],[106.90992750000004,-6.257999499999926],[106.90531940000005,-6.260093799999936],[106.90435040000006,-6.262069299999951],[106.90568560000008,-6.267637799999932],[106.90425890000006,-6.270325699999944],[106.91007320000006,-6.272799],[106.90797640000005,-6.282501699999955],[106.91045650000007,-6.286988899999926],[106.90934060000006,-6.290873199999965],[106.91180580000008,-6.290250599999979],[106.91019380000006,-6.294266899999968],[106.91237770000004,-6.294688099999973],[106.91107280000006,-6.295957],[106.91182720000006,-6.298256499999979],[106.91348290000008,-6.298887799999932],[106.91489180000008,-6.297059699999977],[106.91770190000005,-6.297984699999972],[106.91892260000009,-6.300593899999967],[106.92065450000007,-6.300198099999932],[106.92182940000004,-6.303387199999975],[106.92062390000007,-6.308298199999967],[106.92153190000005,-6.310939799999971],[106.920128,-6.311414299999967],[106.922806,-6.314239599999951],[106.92072310000009,-6.318261699999937],[106.92169210000009,-6.3229676],[106.91815970000005,-6.327909],[106.92040270000007,-6.328868499999942],[106.92088340000004,-6.331506299999944],[106.91950240000006,-6.3386274],[106.91822770000005,-6.339170799999977],[106.91942750000004,-6.343601299999932],[106.91735860000006,-6.3437877],[106.91718310000005,-6.346124699999962],[106.91592080000004,-6.346298199999978],[106.91724680000004,-6.347945699999968],[106.91613210000008,-6.348916699999961],[106.91780110000008,-6.350381599999935],[106.91546290000008,-6.354991199999972],[106.91714010000004,-6.356434],[106.91360490000005,-6.358816199999978],[106.91622180000007,-6.362806899999953],[106.91437840000003,-6.3654609],[106.91247570000007,-6.368375799999967],[106.91191080000004,-6.367093899999929],[106.91014690000009,-6.367907499999944],[106.90763390000006,-6.370752099999947],[106.90820330000008,-6.376705199999947],[106.90390030000003,-6.380260499999963],[106.90506,-6.384386599999971],[106.90352650000005,-6.388213699999937],[106.90407580000004,-6.392219599999976],[106.90125290000009,-6.394579],[106.89844650000003,-6.394424699999945],[106.89772810000005,-6.396414299999947],[106.90027250000009,-6.3977925],[106.90618150000006,-6.394360099999972],[106.91884780000004,-6.395603299999948],[106.92095530000006,-6.396948],[106.92145070000004,-6.394718],[106.92297710000008,-6.394430299999954],[106.92076460000004,-6.392713799999967],[106.92179890000006,-6.388900799999931],[106.92322720000004,-6.389883],[106.92467520000008,-6.386166099999969],[106.92581960000007,-6.388285699999926],[106.92652910000004,-6.385491499999944],[106.92922990000005,-6.386208599999975],[106.933766,-6.383556299999952],[106.92951090000008,-6.382310099999927],[106.92973040000004,-6.379998799999953],[106.93307260000006,-6.375833399999976],[106.93777670000009,-6.377407099999971],[106.93885150000006,-6.375],[106.93786640000008,-6.374123199999929],[106.94058250000006,-6.371434799999975],[106.93865220000004,-6.372229599999969],[106.93864460000009,-6.370584099999974],[106.94204730000007,-6.369182199999955],[106.94230670000007,-6.367376899999954],[106.94337480000007,-6.367313499999966],[106.94327560000005,-6.369113499999969],[106.94545760000005,-6.368491699999936],[106.94505330000004,-6.3662968],[106.94393940000003,-6.366423199999929],[106.94713610000008,-6.360190899999964],[106.94382490000004,-6.359596299999964],[106.94390120000008,-6.358025599999962],[106.94704450000006,-6.358204],[106.94621290000003,-6.359419399999979],[106.948662,-6.358650299999965],[106.94735730000008,-6.357559299999934],[106.94950880000005,-6.3540855],[106.952408,-6.3535062],[106.95042560000007,-6.350526899999977],[106.95204940000008,-6.349142099999938],[106.95332350000007,-6.3511625],[106.95400260000008,-6.349453099999948],[106.95213350000006,-6.348633699999937],[106.95025650000008,-6.344151099999976],[106.95464340000007,-6.34441],[106.95282760000003,-6.340188099999978],[106.95710010000005,-6.3395043],[106.95689410000006,-6.337544],[106.95942710000008,-6.335421199999928],[106.96177690000007,-6.335841699999946],[106.96237960000008,-6.333196199999975],[106.96037310000008,-6.333550099999968],[106.96022820000007,-6.331479599999966],[106.96229570000008,-6.331009499999936],[106.96343250000007,-6.328894199999979],[106.96078220000004,-6.326363299999969],[106.96369190000007,-6.326722199999949],[106.96472950000003,-6.324944099999925],[106.96173880000003,-6.325107199999934],[106.96190660000008,-6.322729199999969],[106.960251,-6.3213945],[106.96366140000003,-6.316912699999932],[106.960974,-6.315221599999973],[106.96023580000008,-6.312524899999971],[106.96337140000009,-6.312236399999961],[106.96096820000008,-6.309619199999929],[106.961342,-6.308312],[106.964009,-6.308481899999947],[106.96376820000006,-6.310111599999971],[106.96508810000006,-6.310177899999928],[106.96521010000004,-6.307121799999948],[106.96656810000007,-6.306959199999937],[106.96448530000004,-6.305214499999977],[106.96695620000008,-6.305188899999962],[106.96665060000004,-6.303007],[106.96997850000008,-6.305647499999964],[106.96954360000007,-6.302986699999963],[106.96829240000005,-6.303132099999971],[106.97084820000003,-6.3023406],[106.973282,-6.311603599999955],[106.980858,-6.315075],[106.97633380000008,-6.319182499999954],[106.97696170000006,-6.331386599999973],[106.97523510000008,-6.331782399999952],[106.97409070000003,-6.330133],[106.97248860000008,-6.331926],[106.975464,-6.335207499999967],[106.97283950000008,-6.340076099999976],[106.97574630000008,-6.339444699999945],[106.97573870000008,-6.340936299999953],[106.97148150000004,-6.342945699999973],[106.96863570000005,-6.341450299999963],[106.96618670000004,-6.342419699999937],[106.96804830000008,-6.343018099999938],[106.97003190000004,-6.346407],[106.97263070000008,-6.346660699999973],[106.96997850000008,-6.349535499999945],[106.97707380000008,-6.353251099999966],[106.97678390000004,-6.355122699999981],[106.97843950000004,-6.356841599999939],[106.98194140000004,-6.357862599999976],[106.97917190000004,-6.361946199999977],[106.97972920000007,-6.364279299999964],[106.98806780000007,-6.363652799999954],[106.99397290000007,-6.367133699999954],[106.99462960000005,-6.366022699999974],[106.99265220000007,-6.3648242],[106.99428770000009,-6.355293],[106.99839950000006,-6.356295799999941],[107.00160660000006,-6.3538975],[107.00455950000008,-6.355427099999929],[107.00392,-6.35975],[107.00679690000004,-6.3625891],[107.017235,-6.353578199999959],[107.01810090000004,-6.348385399999927],[107.01612110000008,-6.343642799999941],[107.016447,-6.330406599999947],[107.02100390000004,-6.328049299999975],[107.02886980000005,-6.330399099999966],[107.03038040000007,-6.325437699999952],[107.03252430000003,-6.323114],[107.03405780000008,-6.323545099999933],[107.03705980000007,-6.321470699999963],[107.03671210000005,-6.317764],[107.03825040000004,-6.316801899999973],[107.03708890000007,-6.314133599999934],[107.03945870000007,-6.309213199999931],[107.04110990000004,-6.3093806],[107.04118810000006,-6.307487399999957],[107.03831510000003,-6.306286799999953],[107.04093950000004,-6.296051099999943],[107.04005450000005,-6.287696],[107.03745290000006,-6.283712],[107.03143120000004,-6.282065699999976],[107.02812240000009,-6.277938099999972],[107.02252210000006,-6.280394699999931],[107.02117940000005,-6.277621899999929],[107.01657120000004,-6.276174199999957],[107.01783010000008,-6.27132],[107.01638050000008,-6.2702118],[107.01638810000009,-6.265633699999967],[107.01783390000008,-6.262806599999976],[107.01998880000008,-6.263575899999978],[107.02439010000006,-6.255007499999977],[107.02960990000008,-6.252996499999938],[107.03055210000008,-6.249891699999978],[107.03514340000004,-6.2467322],[107.04148120000008,-6.246151099999963],[107.04252640000004,-6.232816299999968],[107.03873460000005,-6.232362799999976],[107.03519450000005,-6.226589799999942],[107.03036520000006,-6.226734299999976],[107.03303540000007,-6.220132899999953],[107.03086110000004,-6.215143299999966],[107.033806,-6.2123886],[107.03216570000006,-6.208786099999941],[107.03421540000005,-6.205349399999932],[107.03275690000004,-6.203344399999935],[107.03247360000006,-6.198399599999959],[107.02987050000007,-6.198048299999925],[107.02941170000008,-6.2000147],[107.02968760000005,-6.198079399999926],[107.02791280000008,-6.197017499999959],[107.01994510000009,-6.1963811],[107.019663,-6.198819499999956],[107.01803470000004,-6.199803399999951],[107.01492950000005,-6.195097499999974],[107.01132180000008,-6.196507699999927],[107.00594350000006,-6.195881499999928],[107.007494,-6.184865799999955],[107.00697950000006,-6.177694599999938],[107.00834960000009,-6.177663],[107.00829850000008,-6.174577699999929],[107.01084190000006,-6.174752699999942],[107.01071330000008,-6.172381799999926],[106.97162650000007,-6.172236599999962]]]},"properties":{"shapeName":"Kota Bekasi","shapeISO":"","shapeID":"22746128B27999641394314","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[102.25008080000003,-3.738427899999976],[102.26104530000003,-3.761258199999929],[102.26251260000004,-3.774354699999947],[102.26121160000008,-3.780538199999967],[102.25800870000006,-3.784645499999954],[102.25166310000009,-3.7843403],[102.24731110000005,-3.786982],[102.24760770000006,-3.792562399999952],[102.25491080000006,-3.800392899999963],[102.25370280000004,-3.8014872],[102.27230530000008,-3.819301199999927],[102.27810070000004,-3.8294593],[102.29256280000004,-3.846321199999977],[102.30134450000008,-3.865852199999949],[102.30273320000003,-3.873662699999954],[102.30314210000006,-3.882867399999952],[102.30122660000006,-3.890014599999972],[102.29881120000005,-3.893324499999949],[102.28760610000006,-3.901779499999975],[102.28173720000007,-3.900796599999978],[102.27978320000005,-3.898423799999932],[102.27545180000004,-3.897024299999941],[102.27236660000005,-3.905665899999974],[102.26564880000006,-3.912072699999953],[102.26508460000008,-3.915976699999931],[102.26914210000007,-3.923728199999971],[102.27703870000005,-3.933144],[102.28753290000009,-3.939572899999973],[102.29941730000007,-3.941143299999965],[102.30329210000008,-3.944762699999956],[102.30386450000003,-3.94173],[102.31024310000004,-3.936954299999968],[102.310707,-3.929818],[102.315437,-3.930397],[102.313606,-3.925449],[102.316193,-3.921493],[102.314289,-3.919706],[102.313367,-3.915491],[102.31557040000007,-3.911948299999949],[102.31845320000008,-3.910512199999971],[102.33481950000004,-3.909129299999961],[102.34781690000005,-3.900575699999933],[102.34435260000004,-3.891207399999928],[102.34715890000007,-3.886713399999962],[102.35318940000008,-3.883438699999942],[102.35995330000009,-3.886635099999978],[102.36317160000004,-3.879704099999969],[102.36530550000003,-3.879527899999971],[102.37062470000006,-3.882802499999968],[102.37751330000003,-3.882824],[102.38231370000005,-3.877457499999934],[102.38518630000004,-3.876697599999943],[102.38788170000004,-3.871324499999957],[102.39449960000007,-3.867259099999956],[102.39811910000009,-3.862625499999979],[102.40597660000009,-3.8610348],[102.3982,-3.858215],[102.3838,-3.856782],[102.3595,-3.841563],[102.358,-3.838345],[102.3601,-3.831239],[102.3628,-3.828454],[102.3586,-3.821898],[102.3553,-3.806689],[102.3498,-3.796104],[102.34,-3.783138],[102.3343,-3.768528],[102.3317,-3.731861],[102.3279,-3.730794],[102.3141,-3.731455],[102.3041,-3.735125],[102.2973,-3.740237],[102.2896,-3.741681],[102.2847,-3.737451],[102.2817,-3.736697],[102.2754,-3.727211],[102.2622,-3.731254],[102.25489160000006,-3.736842499999966],[102.25008080000003,-3.738427899999976]]]},"properties":{"shapeName":"Kota Bengkulu","shapeISO":"","shapeID":"22746128B10321458259031","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[118.72903410000004,-8.349069399999962],[118.72719840000002,-8.350986199999966],[118.72960210000008,-8.355393],[118.72881040000004,-8.359005199999956],[118.71866220000004,-8.367875599999934],[118.71913960000006,-8.370533199999954],[118.71537300000011,-8.374988199999962],[118.71251810000001,-8.381733],[118.70787480000001,-8.384136299999966],[118.70657280000012,-8.386405899999943],[118.70285090000004,-8.387443399999938],[118.701543,-8.39034289999995],[118.70512810000002,-8.396072699999934],[118.71078380000006,-8.39752889999994],[118.71035130000007,-8.400245899999959],[118.7078907,-8.399494799999957],[118.7074861000001,-8.400803099999962],[118.712352,-8.40624189999994],[118.71079530000009,-8.406972099999962],[118.70396160000007,-8.405001599999935],[118.70195160000003,-8.407623299999955],[118.69919080000011,-8.407622499999945],[118.69805620000011,-8.410091399999942],[118.7016427000001,-8.4161572],[118.70809740000004,-8.418773199999976],[118.70577930000002,-8.421958099999927],[118.7092209000001,-8.420096399999977],[118.7135412,-8.422489499999926],[118.7140227000001,-8.424049099999934],[118.71184290000008,-8.425805299999979],[118.71223110000005,-8.429594899999927],[118.71352530000001,-8.430596099999946],[118.716835,-8.428213099999937],[118.71846990000006,-8.428694299999961],[118.72240350000004,-8.431523099999936],[118.724756,-8.436136199999964],[118.72298490000003,-8.44163059999994],[118.71891390000008,-8.441507499999943],[118.71798320000005,-8.443034099999977],[118.71978420000005,-8.446084499999927],[118.7187047000001,-8.448001699999963],[118.720986,-8.44866019999995],[118.71785550000004,-8.449352899999951],[118.71312210000008,-8.4470387],[118.71247720000008,-8.448281099999974],[118.71907250000004,-8.451336799999979],[118.71862140000007,-8.453092399999946],[118.71317220000003,-8.452071],[118.71146420000002,-8.453639499999952],[118.71241770000006,-8.456839699999932],[118.7109905000001,-8.458620699999926],[118.715716,-8.463134599999933],[118.72105580000004,-8.4618344],[118.72338390000004,-8.4635861],[118.7226415,-8.468474499999957],[118.72081670000011,-8.470669499999929],[118.7142831000001,-8.47357519999997],[118.7121767000001,-8.472993],[118.71130660000006,-8.470723599999928],[118.7092315000001,-8.47441669999995],[118.71132670000009,-8.478079099999945],[118.70968710000011,-8.480914],[118.71145460000002,-8.488791599999956],[118.7135793000001,-8.49208429999993],[118.71361500000012,-8.496585299999936],[118.72508240000002,-8.500435799999934],[118.72767640000006,-8.508864399999936],[118.73203280000007,-8.514120099999957],[118.75345850000008,-8.519531499999971],[118.7606829,-8.515492499999937],[118.76758350000011,-8.519199499999957],[118.77575380000007,-8.514937299999929],[118.78233460000001,-8.506663699999933],[118.7851415,-8.509599299999934],[118.78985320000004,-8.511153699999966],[118.79548470000009,-8.5181756],[118.79663930000004,-8.524812],[118.801454,-8.53259339999994],[118.81886290000011,-8.522788],[118.82621770000003,-8.508000399999958],[118.83369450000009,-8.50258059999993],[118.83813480000003,-8.501163499999961],[118.84214020000002,-8.49670889999993],[118.85353870000006,-8.496804199999929],[118.8665390000001,-8.489915799999949],[118.87067410000009,-8.492735899999957],[118.88199620000012,-8.490217199999961],[118.89601130000005,-8.48984919999998],[118.88174440000012,-8.468694699999958],[118.8822861000001,-8.462375599999973],[118.88641360000008,-8.454750099999956],[118.88607790000003,-8.451614399999926],[118.8803329000001,-8.445957199999953],[118.87071990000004,-8.441997499999957],[118.86711880000007,-8.438606299999947],[118.86428070000011,-8.424179099999947],[118.841301,-8.424228699999958],[118.83096310000008,-8.421372399999939],[118.80876160000003,-8.409389499999975],[118.80684660000009,-8.412655799999925],[118.8052063,-8.425523699999928],[118.8001938000001,-8.427797299999952],[118.793396,-8.423331299999973],[118.78725430000009,-8.413194699999963],[118.77593530000001,-8.412551299999961],[118.76512910000008,-8.40094659999994],[118.7534485000001,-8.399027799999942],[118.7506714000001,-8.401968],[118.73936470000001,-8.402668],[118.74214940000002,-8.39991],[118.74154670000007,-8.390121499999964],[118.7467041000001,-8.377842],[118.73852540000007,-8.356828699999937],[118.73258210000006,-8.349920299999951],[118.72903410000004,-8.349069399999962]]]},"properties":{"shapeName":"Kota Bima","shapeISO":"","shapeID":"22746128B52632568882047","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[98.50146090000004,3.672508900000025],[98.50104560000005,3.668288800000028],[98.49510930000008,3.669534100000021],[98.49495170000006,3.667766200000074],[98.49215940000005,3.668285600000047],[98.49168440000005,3.666142600000057],[98.48926060000008,3.667192],[98.47246030000008,3.647797700000069],[98.47116630000005,3.64914820000007],[98.46811430000008,3.649042500000064],[98.46785480000005,3.650497500000029],[98.46485470000005,3.65008],[98.45970230000006,3.654572],[98.45770620000008,3.655168600000025],[98.45398970000008,3.653087700000071],[98.44669170000009,3.655941600000062],[98.44669450000004,3.651471700000059],[98.45161150000007,3.650799500000062],[98.45750880000008,3.652621100000033],[98.46035410000007,3.649713900000052],[98.46087510000007,3.644100900000069],[98.47194790000003,3.640925],[98.47438130000006,3.635582100000022],[98.47375910000005,3.616867800000023],[98.44275180000005,3.612803800000052],[98.44268850000003,3.610571600000071],[98.44066980000008,3.608444500000076],[98.44051010000004,3.605404600000043],[98.44508580000007,3.604256500000076],[98.44516070000009,3.598340500000063],[98.45896540000007,3.594383300000061],[98.46001990000008,3.596145300000046],[98.46086330000009,3.594259200000067],[98.45721,3.592109900000025],[98.46033960000005,3.587111800000059],[98.459071,3.583950400000049],[98.45644550000009,3.584097800000052],[98.45488220000004,3.582546],[98.45788020000003,3.580538],[98.45834550000006,3.5767],[98.45659950000004,3.575480300000038],[98.45648920000008,3.577024800000061],[98.45313630000004,3.579086800000027],[98.45030720000005,3.572901],[98.45038890000006,3.569609200000059],[98.44684250000006,3.566781500000047],[98.44648220000005,3.558048300000053],[98.44474540000004,3.554755100000023],[98.446344,3.550451600000031],[98.44502720000008,3.546131400000036],[98.44708860000009,3.541270700000041],[98.44574870000008,3.537926700000071],[98.45145330000008,3.534816900000067],[98.45349110000006,3.529497200000037],[98.47786080000009,3.528261],[98.47772590000005,3.537311800000055],[98.47494770000009,3.544270900000072],[98.47569370000008,3.556434500000023],[98.49360360000009,3.555041600000038],[98.49751380000004,3.559792200000061],[98.49665080000005,3.568773400000055],[98.50080870000005,3.569487600000059],[98.52134150000006,3.569592200000045],[98.53341820000009,3.567786],[98.53666810000004,3.572584500000062],[98.53694210000003,3.57880590000002],[98.53662830000007,3.584163300000057],[98.53535090000008,3.585477800000035],[98.53625140000008,3.586879600000032],[98.53443630000004,3.590651600000058],[98.53507880000006,3.593023500000072],[98.53251460000007,3.593065300000035],[98.53388630000006,3.594257900000059],[98.53307350000006,3.596410700000035],[98.53625030000006,3.606754],[98.53563110000005,3.611353700000052],[98.53371530000004,3.61125480000004],[98.53313010000005,3.612820500000055],[98.53283370000008,3.620813100000021],[98.52559270000006,3.620744100000024],[98.52557930000006,3.629342200000053],[98.51613090000006,3.629551900000024],[98.51612680000005,3.631749200000058],[98.51187570000008,3.631820900000037],[98.51184140000004,3.633361100000059],[98.51065650000004,3.633353700000043],[98.51183460000004,3.633583100000067],[98.51158920000006,3.641667600000062],[98.51657670000009,3.641710600000067],[98.51785990000008,3.645820900000047],[98.51143970000004,3.645871300000067],[98.51142440000007,3.652334],[98.51792710000007,3.652157],[98.51792630000006,3.65361230000002],[98.51684780000005,3.653643500000044],[98.51693150000006,3.655396300000064],[98.51120070000007,3.655467600000065],[98.51107980000006,3.663944400000048],[98.51842820000007,3.664160800000047],[98.51833130000006,3.667432600000041],[98.51109920000005,3.667120600000032],[98.51088460000005,3.672782300000051],[98.50146090000004,3.672508900000025]]]},"properties":{"shapeName":"Kota Binjai","shapeISO":"","shapeID":"22746128B17726208784530","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[125.2161420000001,1.388978],[125.215084,1.391138],[125.212825,1.388836],[125.216448,1.387806],[125.2161420000001,1.388978]]],[[[125.161932,1.387524],[125.160682,1.392212],[125.159703,1.390292],[125.161932,1.387524]]],[[[125.23309390000009,1.461456300000066],[125.23127980000004,1.460284800000068],[125.23229440000011,1.45920030000002],[125.23462290000009,1.460844100000031],[125.23309390000009,1.461456300000066]]],[[[125.276958,1.522474],[125.277441,1.523617],[125.276157,1.52291],[125.276958,1.522474]]],[[[125.296184,1.545579],[125.29426300000011,1.545387],[125.293255,1.543166],[125.29502,1.54327],[125.296184,1.545579]]],[[[125.292483,1.549237],[125.2885050000001,1.548053],[125.285912,1.544578],[125.285581,1.540657],[125.279607,1.530584],[125.28015,1.52896],[125.278342,1.528483],[125.278062,1.52405],[125.27985600000011,1.520167],[125.277983,1.516751],[125.271735,1.514229],[125.269738,1.509859],[125.267857,1.509178],[125.269674,1.50756],[125.2682870000001,1.503686],[125.261684,1.499729],[125.263986,1.498265],[125.264288,1.495551],[125.261946,1.495025],[125.261456,1.492076],[125.256463,1.487488],[125.2562190000001,1.483404],[125.254524,1.4813],[125.250414,1.479818],[125.251319,1.47608],[125.2490120000001,1.47129],[125.245337,1.470237],[125.242206,1.465229],[125.23739100000012,1.462036],[125.23936,1.460359],[125.24304,1.464179],[125.244567,1.462411],[125.242862,1.460847],[125.245128,1.460185],[125.2432950000001,1.459668],[125.24247,1.457447],[125.242515,1.455907],[125.245102,1.454066],[125.244651,1.45235],[125.2424850000001,1.455131],[125.240834,1.451854],[125.237511,1.453133],[125.239407,1.450292],[125.24302000000012,1.448517],[125.242911,1.447148],[125.240011,1.447067],[125.240406,1.443137],[125.238491,1.442814],[125.238089,1.445375],[125.234812,1.443453],[125.2299220000001,1.443103],[125.233374,1.440555],[125.232245,1.438441],[125.227863,1.437389],[125.225766,1.439951],[125.223635,1.438406],[125.219054,1.438483],[125.218487,1.435134],[125.216445,1.43587],[125.21496800000011,1.438952],[125.21316500000012,1.436867],[125.214478,1.43533],[125.213793,1.433919],[125.211614,1.433831],[125.210258,1.435413],[125.20886,1.434484],[125.2095240000001,1.432545],[125.205586,1.431985],[125.202883,1.43399],[125.18839900000012,1.427581],[125.186863,1.429535],[125.1891240000001,1.431108],[125.185998,1.431953],[125.185605,1.428248],[125.183077,1.425531],[125.183548,1.422759],[125.181179,1.420701],[125.182609,1.419844],[125.181705,1.417019],[125.166912,1.403972],[125.168539,1.40018],[125.169928,1.405885],[125.172078,1.40547],[125.171961,1.40322],[125.17551,1.406698],[125.176439,1.405006],[125.179137,1.406126],[125.179828,1.404487],[125.176087,1.401045],[125.17502700000011,1.402138],[125.174965,1.401174],[125.171229,1.400976],[125.168945,1.397529],[125.1694490000001,1.393931],[125.171191,1.395306],[125.174923,1.392359],[125.174564,1.389508],[125.172593,1.389014],[125.17372200000011,1.387161],[125.175172,1.387078],[125.177891,1.392766],[125.177471,1.395488],[125.173874,1.397086],[125.17475600000012,1.398569],[125.176037,1.397146],[125.178415,1.39878],[125.177784,1.396811],[125.179194,1.396462],[125.179743,1.394244],[125.189747,1.39978],[125.192209,1.397352],[125.195147,1.397285],[125.198424,1.398665],[125.201915,1.403893],[125.20600800000011,1.404914],[125.208902,1.40387],[125.208879,1.40182],[125.2104680000001,1.401967],[125.210403,1.399367],[125.217821,1.397715],[125.21924500000011,1.39926],[125.2209160000001,1.397451],[125.224973,1.400145],[125.225477,1.398844],[125.22698900000012,1.399653],[125.226425,1.397464],[125.2282100000001,1.399825],[125.234093,1.40068],[125.235763,1.410565],[125.239565,1.411042],[125.239256,1.407708],[125.24117400000011,1.407015],[125.244179,1.41526],[125.250572,1.414315],[125.250697,1.411385],[125.25225100000011,1.411491],[125.252123,1.408589],[125.254128,1.40732],[125.255878,1.409354],[125.255414,1.411595],[125.256834,1.411426],[125.257831,1.413422],[125.25977100000011,1.412704],[125.25689200000011,1.41533],[125.258668,1.418268],[125.25643700000012,1.419531],[125.255873,1.422754],[125.259718,1.42281],[125.259481,1.426889],[125.262679,1.427222],[125.261987,1.429149],[125.263609,1.430197],[125.26224700000012,1.431266],[125.263581,1.43371],[125.261517,1.432761],[125.26017900000011,1.434618],[125.26116,1.435665],[125.260158,1.437575],[125.26362,1.438834],[125.261459,1.439508],[125.262308,1.443901],[125.260739,1.445504],[125.262084,1.4457],[125.26139300000011,1.447317],[125.263758,1.448802],[125.26391560000002,1.452168800000038],[125.26643400000012,1.454304],[125.268053,1.458893],[125.27039800000011,1.458464],[125.270158,1.464357],[125.273891,1.465592],[125.273346,1.469903],[125.274653,1.469962],[125.274244,1.471898],[125.275652,1.47264],[125.272943,1.473371],[125.271587,1.476095],[125.274952,1.479208],[125.279163,1.479822],[125.283196,1.487391],[125.281872,1.486949],[125.28165300000012,1.495177],[125.27872800000011,1.495967],[125.2774366000001,1.494416500000057],[125.27533210000001,1.49553880000002],[125.275003,1.497813],[125.276281,1.498727],[125.274703,1.504324],[125.2778780000001,1.507128],[125.277522,1.512811],[125.284209,1.519736],[125.28489600000012,1.523788],[125.2864770000001,1.523821],[125.287391,1.525998],[125.286359,1.527629],[125.28863600000011,1.529758],[125.288113,1.530925],[125.291141,1.531729],[125.29087,1.534131],[125.29309500000011,1.53377],[125.29212,1.538023],[125.293851,1.541749],[125.29192000000012,1.540798],[125.291053,1.541917],[125.293667,1.546432],[125.292483,1.549237]]],[[[125.10448350000001,1.396835600000031],[125.10783,1.393305],[125.117681,1.400311],[125.12065,1.403843],[125.12065670000004,1.406824200000074],[125.12270400000011,1.406636],[125.1203660000001,1.408055],[125.126456,1.428241],[125.14158910000003,1.437443100000053],[125.15252880000003,1.439710500000047],[125.15445420000003,1.438707400000055],[125.16532230000007,1.43977730000006],[125.17374830000006,1.438711100000035],[125.18094790000009,1.44055910000003],[125.1957006,1.438332800000069],[125.19568860000004,1.439661200000046],[125.19345160000012,1.439769900000044],[125.19357420000006,1.441112],[125.19675180000002,1.44182150000006],[125.197966,1.439214],[125.19840870000007,1.44160770000002],[125.20020040000009,1.440943900000036],[125.19926630000009,1.442402900000047],[125.20276640000009,1.443006500000024],[125.20299610000006,1.444186200000047],[125.2033947000001,1.443145600000037],[125.20317350000005,1.444693700000073],[125.2057549000001,1.444384800000023],[125.20949930000006,1.446748800000023],[125.2077561000001,1.449796500000048],[125.211762,1.452868],[125.21447010000009,1.459514700000057],[125.21685390000005,1.459812],[125.21807980000006,1.458438800000067],[125.22390280000002,1.461284200000023],[125.22604,1.46057380000002],[125.23114690000011,1.466062500000021],[125.23382090000007,1.466547],[125.23525770000003,1.469517100000076],[125.23339510000005,1.474416400000052],[125.23431560000006,1.478823500000033],[125.23657170000001,1.479796700000065],[125.23787670000002,1.483895800000028],[125.2413193000001,1.485922600000038],[125.23975570000005,1.488691700000061],[125.23672160000001,1.489387300000033],[125.23609660000011,1.49317190000005],[125.237476,1.495424],[125.241707,1.496816],[125.241126,1.504799],[125.24227,1.506426],[125.244217,1.508323],[125.24688,1.505545],[125.24662200000012,1.506943],[125.242231,1.509625],[125.247336,1.507472],[125.246976,1.508661],[125.2478880000001,1.508364],[125.245153,1.510929],[125.24529,1.514651],[125.241766,1.515638],[125.241598,1.518168],[125.238736,1.519509],[125.237491,1.523421],[125.2356400000001,1.523869],[125.234928,1.529076],[125.229655,1.531606],[125.2280750000001,1.534261],[125.223789,1.535554],[125.223418,1.537281],[125.218083,1.539031],[125.217198,1.542845],[125.212514,1.544951],[125.2078580000001,1.550439],[125.206272,1.550005],[125.2030380000001,1.55266],[125.198505,1.552815],[125.195673,1.555488],[125.184051,1.557837],[125.169389,1.566256],[125.15517100000011,1.581901],[125.155721,1.585671],[125.158,1.585931],[125.155499,1.588786],[125.15512,1.595726],[125.14662,1.590096],[125.147579,1.583867],[125.146026,1.576821],[125.136174,1.563851],[125.1260850000001,1.558183],[125.11221100000012,1.560665],[125.109923,1.559828],[125.105734,1.555552],[125.095216,1.549871],[125.09064100000012,1.544041],[125.085204,1.540453],[125.07170610000003,1.536361900000031],[125.07625380000002,1.526223400000049],[125.08352040000011,1.524561700000049],[125.08322190000001,1.512690700000064],[125.0652993000001,1.497118100000023],[125.05712030000007,1.486588100000063],[125.04941,1.479847],[125.040331,1.464014],[125.0306498000001,1.453617100000031],[125.04646800000012,1.453045],[125.05427,1.447929],[125.064461,1.444855],[125.079862,1.450194],[125.08717500000012,1.446047],[125.09214150000003,1.447173500000076],[125.092297,1.422478],[125.10448350000001,1.396835600000031]]]]},"properties":{"shapeName":"Kota Bitung","shapeISO":"","shapeID":"22746128B10668839046428","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[112.18488610000009,-8.056107],[112.18211280000003,-8.05707609999996],[112.18116250000003,-8.060651199999938],[112.1731731000001,-8.057648399999948],[112.16913880000004,-8.067417499999976],[112.16828150000003,-8.073722699999962],[112.1649169000001,-8.076354899999956],[112.16160580000007,-8.0847568],[112.15710840000008,-8.086340099999973],[112.157398,-8.0835571],[112.14754130000006,-8.080144799999971],[112.14745070000004,-8.075680599999941],[112.1452025000001,-8.075145],[112.13494750000007,-8.083945099999937],[112.13250360000006,-8.090831799999933],[112.13392910000005,-8.093106399999954],[112.14037870000004,-8.096309399999939],[112.13954970000009,-8.098991099999978],[112.14168350000011,-8.099919099999966],[112.13895620000005,-8.101363899999967],[112.13662440000007,-8.10939449999995],[112.13721190000001,-8.110709399999962],[112.141054,-8.111409099999946],[112.14362710000012,-8.108363199999928],[112.14501020000012,-8.108721299999956],[112.14409150000006,-8.111495099999956],[112.146197,-8.111171399999932],[112.14577680000002,-8.113987699999939],[112.14355820000003,-8.113794299999938],[112.14248450000002,-8.117604099999937],[112.14424860000008,-8.118558],[112.1441115,-8.120138399999973],[112.15082570000004,-8.121484799999962],[112.1491919,-8.127841799999942],[112.15228,-8.128521199999966],[112.15284610000003,-8.127097],[112.15679440000008,-8.128297799999928],[112.15792610000005,-8.126133],[112.15980260000003,-8.126894499999935],[112.1559175000001,-8.135672599999964],[112.15965530000005,-8.136718899999948],[112.16019440000002,-8.135084099999972],[112.1631698000001,-8.134903799999961],[112.16389320000008,-8.13305159999993],[112.16780770000003,-8.131632099999933],[112.17052190000004,-8.125722199999927],[112.17084140000009,-8.119093499999963],[112.17630620000011,-8.120429899999976],[112.17761410000003,-8.115562199999943],[112.1809793000001,-8.110326099999952],[112.18257390000008,-8.110632799999962],[112.1842610000001,-8.104956899999934],[112.1875864000001,-8.104668899999979],[112.19306590000008,-8.099872499999947],[112.19401010000001,-8.100623299999938],[112.19782040000007,-8.093765399999938],[112.20054820000007,-8.092748],[112.19681480000008,-8.091170399999953],[112.1972608000001,-8.088444699999968],[112.191142,-8.085267599999952],[112.19314950000012,-8.080633499999976],[112.19123620000005,-8.076382799999976],[112.19260940000004,-8.072515299999964],[112.19488060000003,-8.072284599999932],[112.19672810000009,-8.070019599999966],[112.19771090000006,-8.065845199999956],[112.19033700000011,-8.063394099999925],[112.18895980000002,-8.065818099999944],[112.187371,-8.065269299999954],[112.1891,-8.05798619999996],[112.18488610000009,-8.056107]]]},"properties":{"shapeName":"Kota Blitar","shapeISO":"","shapeID":"22746128B14285318633078","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[106.77890460000003,-6.511734899999965],[106.77239940000004,-6.512453899999969],[106.77341,-6.515227299999935],[106.76740280000007,-6.5159321],[106.76486040000009,-6.521028199999932],[106.76462390000006,-6.525095499999964],[106.76632370000004,-6.527267699999925],[106.76449070000007,-6.531001899999978],[106.76462090000007,-6.5458536],[106.76044640000003,-6.5471149],[106.76073270000006,-6.549855799999932],[106.75884530000008,-6.548048799999947],[106.75928590000007,-6.549451699999963],[106.75641250000007,-6.551823499999955],[106.75489470000008,-6.548306099999934],[106.75189230000007,-6.550980599999946],[106.74977130000008,-6.547256499999946],[106.74802420000009,-6.547812],[106.74682640000009,-6.543672599999979],[106.74082970000006,-6.542840499999954],[106.73675940000004,-6.552735],[106.73801180000004,-6.5548479],[106.73570250000006,-6.554569799999967],[106.73542570000006,-6.565329399999939],[106.73987890000006,-6.566116299999976],[106.74042160000005,-6.568230599999936],[106.742266,-6.568290599999955],[106.74159320000007,-6.570083699999941],[106.73845970000008,-6.571042399999953],[106.74105060000005,-6.575363899999957],[106.74452320000006,-6.576278099999968],[106.74454940000004,-6.573657899999944],[106.74563790000008,-6.574395399999958],[106.74982280000006,-6.572345799999937],[106.76073640000004,-6.582340599999952],[106.76313340000007,-6.583105599999953],[106.76660440000006,-6.594771499999979],[106.77017880000005,-6.59578],[106.77147890000003,-6.598732699999971],[106.77458090000005,-6.6004511],[106.77542890000007,-6.606699499999934],[106.77913690000008,-6.607469099999946],[106.779892,-6.612849799999935],[106.78170780000005,-6.612228099999925],[106.78369880000008,-6.616025299999933],[106.78432670000007,-6.621100299999966],[106.78562470000008,-6.621546899999942],[106.786371,-6.624754099999961],[106.78878920000005,-6.625218199999949],[106.79029,-6.6277796],[106.78620650000005,-6.633978299999967],[106.78295980000007,-6.644992599999966],[106.77164480000005,-6.653687899999966],[106.78302020000007,-6.658916499999975],[106.786957,-6.659218299999964],[106.79058090000007,-6.653136699999948],[106.79251070000004,-6.653590599999973],[106.79489830000006,-6.649347399999954],[106.799392,-6.645677399999954],[106.80135190000004,-6.648365399999932],[106.80523820000008,-6.648979099999963],[106.80390570000009,-6.651732799999934],[106.80606990000007,-6.651867],[106.80971130000006,-6.646207],[106.81056230000007,-6.649079799999981],[106.80839560000004,-6.652404799999942],[106.80880760000008,-6.656303899999955],[106.81562820000005,-6.661324],[106.81632250000007,-6.665552099999957],[106.81851980000005,-6.666361799999947],[106.81909960000007,-6.6719494],[106.83044450000006,-6.679191099999969],[106.83421830000009,-6.677660599999967],[106.83978780000007,-6.679584699999964],[106.84336720000005,-6.678800699999954],[106.84811420000005,-6.676239],[106.84517470000009,-6.661483399999952],[106.848517,-6.6515841],[106.84862710000004,-6.64667],[106.84690950000004,-6.642173499999956],[106.838875,-6.630939],[106.83364120000005,-6.618329499999959],[106.83193220000004,-6.612977],[106.83137530000005,-6.602687399999979],[106.83956690000008,-6.574751299999946],[106.83717370000005,-6.577848],[106.83396710000005,-6.565915599999926],[106.82992710000008,-6.560560799999962],[106.82904830000007,-6.550139399999978],[106.82591880000007,-6.547391699999935],[106.82568290000006,-6.543961599999932],[106.82445540000003,-6.5455523],[106.82354030000005,-6.5424874],[106.822876,-6.543626699999948],[106.81818360000005,-6.542594599999973],[106.81837230000008,-6.538134099999979],[106.81136970000006,-6.539340599999946],[106.80889710000008,-6.546061799999961],[106.80544090000006,-6.545434],[106.805665,-6.5398831],[106.79915810000006,-6.543791499999941],[106.79921810000008,-6.546523099999945],[106.79524120000008,-6.547092799999973],[106.79323680000005,-6.546022199999925],[106.79179030000006,-6.5376988],[106.79321460000006,-6.532219399999974],[106.790587,-6.526553199999967],[106.78946330000008,-6.527706699999953],[106.78876650000007,-6.518153199999972],[106.78643880000004,-6.514791899999977],[106.78346940000006,-6.515082799999959],[106.781747,-6.5109634],[106.77890460000003,-6.511734899999965]]]},"properties":{"shapeName":"Kota Bogor","shapeISO":"","shapeID":"22746128B73100896723382","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.51594190000003,0.051103900000044],[117.5138713,0.052632700000061],[117.51107480000007,0.050931],[117.51328590000003,0.049306200000046],[117.51594190000003,0.051103900000044]]],[[[117.51782520000006,0.067130500000076],[117.51432740000007,0.067892],[117.51173370000004,0.065131800000074],[117.51713510000002,0.061729200000059],[117.52348830000005,0.062942700000065],[117.52272690000007,0.065798],[117.51782520000006,0.067130500000076]]],[[[117.49214340000003,0.065268],[117.49871070000006,0.073929200000066],[117.48900250000008,0.06907510000002],[117.48795560000008,0.064696900000058],[117.49214340000003,0.065268]]],[[[117.51239690000011,0.19101820000003],[117.51182590000008,0.191803400000026],[117.5105410000001,0.190232900000069],[117.51239690000011,0.19101820000003]]],[[[117.5115604,0.017409100000066],[117.51664340000002,0.02244630000007],[117.51771410000003,0.02158970000005],[117.517079,0.023647100000062],[117.51883250000003,0.026253500000053],[117.51585820000003,0.029061200000058],[117.51266970000006,0.029346800000042],[117.51195580000001,0.032130700000039],[117.51431150000008,0.035105100000067],[117.51440670000011,0.037484500000062],[117.50412740000002,0.033653600000036],[117.50289010000006,0.03472430000005],[117.50341360000004,0.038103200000023],[117.50127210000005,0.038507700000025],[117.49588330000006,0.028883600000029],[117.49463420000006,0.029663400000061],[117.49416430000008,0.028348700000038],[117.49070090000009,0.03009140000006],[117.49022680000007,0.032856500000037],[117.49208410000006,0.036778500000025],[117.4897989000001,0.036425500000064],[117.489166,0.038326900000072],[117.49082040000008,0.039343],[117.48876650000011,0.042132300000048],[117.49455910000006,0.042235100000028],[117.49563710000007,0.048665700000072],[117.50029890000008,0.05154710000005],[117.50783810000007,0.049755900000036],[117.51093620000006,0.051183600000059],[117.5121497,0.052782600000057],[117.51212480000004,0.058780700000057],[117.50915050000003,0.06373],[117.49906160000012,0.060104700000068],[117.49100950000002,0.059876200000076],[117.48872530000006,0.057078],[117.48745640000004,0.058631300000059],[117.48824610000008,0.062243700000067],[117.48712630000011,0.063359800000057],[117.48491500000011,0.062660300000061],[117.48466530000007,0.05952220000006],[117.48078740000005,0.056621100000029],[117.47781780000003,0.048340600000074],[117.47404870000003,0.045942100000048],[117.47130760000005,0.04736980000007],[117.46770310000011,0.046437600000047],[117.472564,0.049083],[117.47501960000011,0.055307700000071],[117.47444850000011,0.05879120000003],[117.47296370000004,0.059190900000033],[117.47718960000009,0.063531100000034],[117.4751338000001,0.065415600000051],[117.47239260000003,0.065586900000028],[117.46662480000009,0.06427350000007],[117.46588240000005,0.06296],[117.46605380000005,0.065050900000074],[117.47178350000002,0.067868200000021],[117.47349670000006,0.070932900000059],[117.4793026000001,0.071675300000038],[117.47798910000006,0.07344560000007],[117.47918840000011,0.077405100000021],[117.47783680000009,0.078737600000068],[117.47423910000009,0.077995200000032],[117.47570480000002,0.083839100000034],[117.47665660000007,0.08454340000003],[117.47743710000009,0.083268],[117.4740792,0.089796300000046],[117.4737937000001,0.088178200000073],[117.46951070000011,0.087749900000063],[117.46774990000006,0.084942200000057],[117.46508490000008,0.089177600000028],[117.46399030000009,0.087321600000053],[117.46541800000011,0.083514500000035],[117.4624199000001,0.084323500000039],[117.46370480000007,0.086227100000031],[117.461135,0.088273400000048],[117.46203920000005,0.090177],[117.4591438000001,0.08988480000005],[117.459258,0.091669400000058],[117.46536850000007,0.090712800000063],[117.46581110000011,0.092882900000063],[117.4627273000001,0.098793500000056],[117.4599290000001,0.098036800000045],[117.4567882,0.100078400000029],[117.45818730000008,0.101920100000029],[117.46139960000005,0.10084930000005],[117.46285580000006,0.103033700000026],[117.4655398000001,0.095481300000074],[117.46920890000001,0.09262590000003],[117.47170740000001,0.092211900000052],[117.4687378000001,0.097351500000059],[117.47090790000004,0.097822700000052],[117.47279240000012,0.094067900000027],[117.4738774000001,0.095995200000061],[117.47539080000001,0.095381300000042],[117.47574770000006,0.089642100000049],[117.47896,0.081954600000074],[117.48375690000012,0.082735],[117.48454220000008,0.085209700000064],[117.4870644,0.083734400000026],[117.48839690000011,0.08616150000006],[117.4905146000001,0.086708700000031],[117.49065740000003,0.090230400000053],[117.49003870000001,0.087541600000066],[117.4856367000001,0.08530490000004],[117.48249580000004,0.087898500000051],[117.48499430000004,0.089135800000065],[117.48587470000007,0.091396300000042],[117.4846136000001,0.092586],[117.47866490000001,0.091182100000026],[117.47616650000009,0.093323700000042],[117.480164,0.100604800000042],[117.47766550000006,0.103650500000072],[117.48263860000009,0.101675600000021],[117.48718340000005,0.102246600000058],[117.48773060000008,0.100390700000048],[117.49287030000005,0.098772600000075],[117.49306060000004,0.102246600000058],[117.4941076,0.102532200000041],[117.4975578000001,0.098154],[117.49958040000001,0.098225300000024],[117.50079390000008,0.101271100000019],[117.49489280000012,0.105221],[117.49415520000002,0.102865300000076],[117.49191850000011,0.102413200000058],[117.4910857000001,0.104673700000035],[117.49225160000003,0.105601700000022],[117.48685020000005,0.104007400000057],[117.486993,0.102627300000051],[117.48228170000004,0.102508400000033],[117.4832573000001,0.105102],[117.47890280000001,0.109979900000042],[117.48342380000008,0.109765700000025],[117.48516080000002,0.106839],[117.48704060000011,0.108790100000022],[117.489896,0.108433200000036],[117.4864933,0.112002400000051],[117.4856201,0.110870800000043],[117.48461120000002,0.111803500000065],[117.48481670000001,0.117083900000068],[117.4883493000001,0.112573500000053],[117.49156160000007,0.115857100000028],[117.49356030000001,0.111003],[117.49351270000011,0.112954200000047],[117.4957018,0.112121400000035],[117.49470250000002,0.110194],[117.5033826,0.110820700000033],[117.50441060000003,0.112376900000072],[117.50676620000002,0.110192500000039],[117.5054242000001,0.108407900000032],[117.50636650000001,0.107108700000026],[117.50962160000006,0.109493],[117.51399030000005,0.117916300000047],[117.52214230000004,0.125711400000057],[117.52162840000005,0.128909400000055],[117.51808770000002,0.132036],[117.51793070000008,0.135391],[117.5155205000001,0.136857400000054],[117.517688,0.136904300000026],[117.5191870000001,0.141587100000038],[117.51194870000006,0.141944],[117.51273390000006,0.143814300000031],[117.50745410000002,0.147541200000035],[117.51080660000002,0.151081200000021],[117.50748010000007,0.155606900000066],[117.50733730000002,0.159004800000048],[117.49920170000007,0.154302100000052],[117.49801370000012,0.150840100000039],[117.49662670000009,0.151044300000024],[117.49463350000008,0.147953700000073],[117.49683820000007,0.146553600000061],[117.4944604000001,0.145591800000034],[117.49243950000005,0.147626500000058],[117.49428210000008,0.14705790000005],[117.49359860000004,0.149062700000059],[117.49577560000012,0.15856610000003],[117.49092150000001,0.157566700000075],[117.49101670000005,0.152284300000019],[117.48833800000011,0.146878600000036],[117.48717890000012,0.148524200000054],[117.48892280000007,0.153283700000031],[117.48744750000003,0.15989860000002],[117.4835452000001,0.155996300000027],[117.47574050000003,0.153807200000074],[117.47394440000005,0.154723600000068],[117.47564540000008,0.157566700000075],[117.47851550000007,0.158045300000026],[117.480275,0.161073300000055],[117.47043150000002,0.163957900000071],[117.47405750000007,0.165406],[117.47642330000008,0.164687900000047],[117.47787370000003,0.16645920000002],[117.47911940000006,0.164752700000065],[117.48238480000009,0.166080400000055],[117.48312830000009,0.163443],[117.48111810000012,0.161992500000053],[117.48211750000007,0.160612400000048],[117.4867336000001,0.165181],[117.4867336000001,0.167084600000067],[117.4898270000001,0.166989400000034],[117.49054080000008,0.170558600000049],[117.48540120000007,0.172652500000027],[117.48607290000007,0.176088100000072],[117.48392590000003,0.179981200000043],[117.48961220000001,0.175200200000063],[117.48965030000011,0.177817300000072],[117.48834480000005,0.17858160000003],[117.48896680000007,0.179736800000057],[117.490668,0.178956700000072],[117.49325340000007,0.173651900000038],[117.50413070000002,0.175470800000028],[117.50323130000004,0.179097100000035],[117.49872610000011,0.17860120000006],[117.49684270000012,0.181795100000045],[117.4933486000001,0.180171600000051],[117.48996970000007,0.189879800000028],[117.493063,0.188547300000039],[117.49667980000004,0.189023200000065],[117.50078990000009,0.18679220000007],[117.49954180000009,0.192493400000046],[117.49479380000002,0.19598650000006],[117.49834540000006,0.195542900000021],[117.4998207000001,0.199469],[117.49984450000011,0.195385900000019],[117.50775130000011,0.191784200000029],[117.51032120000002,0.192331500000023],[117.51013130000001,0.195036],[117.5137476000001,0.197875700000054],[117.51817340000002,0.198208800000032],[117.51634120000006,0.202872500000069],[117.51443760000006,0.202206300000057],[117.50785680000001,0.204663],[117.50471990000005,0.204057500000033],[117.50452710000002,0.205642100000034],[117.49269860000004,0.198140300000034],[117.48879380000005,0.201763300000039],[117.468202,0.199341400000037],[117.46912280000004,0.187831900000049],[117.46774160000007,0.175401700000066],[117.44978680000008,0.167575200000044],[117.44027340000002,0.136197200000026],[117.4332131000001,0.121076800000026],[117.43091120000008,0.110948400000041],[117.42354510000007,0.10128050000003],[117.40160330000003,0.092229900000063],[117.38855620000004,0.061687800000072],[117.3896668000001,0.053913900000055],[117.3892049000001,0.022504800000036],[117.389802,0.018670100000065],[117.42822730000012,0.019743400000038],[117.5115604,0.017409100000066]]]]},"properties":{"shapeName":"Kota Bontang","shapeISO":"","shapeID":"22746128B49262260961747","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.39747340000008,-0.299302199999943],[100.39747710000006,-0.296558699999935],[100.39600990000008,-0.2904116],[100.39264620000006,-0.290793099999973],[100.38932940000007,-0.285024],[100.38462180000005,-0.2828608],[100.38158860000004,-0.285167],[100.37482540000008,-0.286482899999953],[100.36850890000005,-0.281112699999937],[100.36598860000004,-0.283154299999978],[100.35814410000006,-0.284602099999972],[100.34889880000009,-0.275931499999956],[100.33671190000007,-0.272690299999965],[100.33801620000008,-0.275742799999932],[100.337305,-0.276773],[100.33479680000005,-0.276258199999972],[100.33479460000007,-0.278190299999949],[100.33252870000007,-0.280290899999954],[100.33457520000007,-0.280712799999947],[100.33400650000004,-0.283076599999958],[100.336067,-0.283799899999963],[100.33567420000008,-0.285258399999975],[100.341584,-0.291913099999931],[100.34281880000003,-0.297472299999924],[100.34535210000007,-0.296022099999959],[100.347503,-0.300472899999932],[100.34883650000006,-0.300108799999975],[100.35232660000008,-0.302909499999942],[100.35504040000006,-0.302357099999938],[100.35870720000008,-0.3063296],[100.35966420000005,-0.310452099999964],[100.36424290000008,-0.310955599999943],[100.36465870000006,-0.316315199999963],[100.37091510000005,-0.322279],[100.37702320000005,-0.322036499999967],[100.395208,-0.3257679],[100.40133140000006,-0.322741299999961],[100.40563570000006,-0.318013099999973],[100.40185030000004,-0.3114572],[100.39640050000008,-0.305885599999954],[100.39747340000008,-0.299302199999943]]]},"properties":{"shapeName":"Kota Bukittinggi","shapeISO":"","shapeID":"22746128B71944059423589","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[105.99121130000009,-5.931145799999967],[105.98545110000003,-5.93175],[105.98742710000005,-5.937145899999962],[105.99103580000008,-5.936831199999972],[105.99373660000003,-5.933586299999945],[105.99328650000007,-5.931876799999941],[105.99121130000009,-5.931145799999967]]],[[[105.92320850000004,-6.046801499999958],[105.92358850000005,-6.049373899999978],[105.92752110000004,-6.04909],[105.92902410000005,-6.047455899999932],[105.93823280000004,-6.052165199999934],[105.94317660000007,-6.045138],[105.95145450000007,-6.055016199999955],[105.96376070000008,-6.058093199999973],[105.96913180000007,-6.055053899999962],[105.969134,-6.0519798],[105.97111210000008,-6.049415299999964],[105.97284010000004,-6.0500524],[105.97183640000009,-6.052353299999936],[105.973412,-6.053714],[105.975741,-6.053856699999926],[105.97588140000005,-6.051887699999952],[105.98447640000006,-6.054998699999942],[105.98801630000008,-6.053165599999943],[105.98753390000007,-6.050615899999968],[105.98117,-6.04473],[105.98069620000007,-6.0398842],[105.98375940000005,-6.039318499999979],[105.98437660000008,-6.037207199999955],[105.987923,-6.038018399999942],[105.98818240000008,-6.042583599999944],[105.99136390000007,-6.042508699999928],[105.99129520000008,-6.040608599999928],[105.99377480000004,-6.040392099999963],[106.00304080000006,-6.046370099999933],[106.00746410000005,-6.046085199999936],[106.00972490000004,-6.039984499999946],[106.01114,-6.042206499999963],[106.01504910000006,-6.042938699999979],[106.01770820000007,-6.039415099999928],[106.02995330000005,-6.040578099999948],[106.03025090000006,-6.044478599999934],[106.02882420000009,-6.045415099999957],[106.02995330000005,-6.0476434],[106.02614630000005,-6.049968399999955],[106.02708470000005,-6.054012899999975],[106.02344550000004,-6.057360299999971],[106.025101,-6.057863399999974],[106.02391850000004,-6.0592467],[106.02290380000005,-6.058466099999976],[106.02368960000007,-6.060543699999926],[106.02222470000004,-6.0605356],[106.022652,-6.062351899999953],[106.02066080000009,-6.062258],[106.02188910000007,-6.063233099999934],[106.01969180000003,-6.064867199999981],[106.01976050000007,-6.070939199999941],[106.02144660000005,-6.071758399999965],[106.02021820000004,-6.0782401],[106.02817570000008,-6.078273899999942],[106.03644380000009,-6.080764599999952],[106.05024480000009,-6.075473099999954],[106.05255260000007,-6.069026399999927],[106.05328030000004,-6.061219899999969],[106.05885690000008,-6.061259899999925],[106.06039610000005,-6.057696399999941],[106.06381860000005,-6.055844099999945],[106.06246450000003,-6.053552399999944],[106.06275420000009,-6.049786099999949],[106.06499320000006,-6.045695299999977],[106.07260040000006,-6.0395834],[106.07693750000004,-6.038389699999925],[106.07611550000007,-6.040121499999941],[106.07776970000003,-6.040407499999958],[106.08243590000006,-6.037132],[106.08517530000006,-6.030297599999926],[106.08789760000008,-6.002466899999945],[106.077427,-6.0014428],[106.07752290000008,-5.998009499999966],[106.07416120000005,-5.997532199999966],[106.07348170000006,-5.995785099999978],[106.06256710000008,-5.989524399999937],[106.06470480000007,-5.986523199999965],[106.05934330000008,-5.983190799999932],[106.06082870000006,-5.979010399999936],[106.05858650000005,-5.972749],[106.062569,-5.959781899999939],[106.06182130000008,-5.955689599999971],[106.05885350000005,-5.951766699999951],[106.04792050000003,-5.946439],[106.03311870000005,-5.934350599999959],[106.03912390000005,-5.926625499999943],[106.04003940000007,-5.918971699999929],[106.04431950000009,-5.911249899999973],[106.03968840000005,-5.898134899999945],[106.04139740000005,-5.876696799999934],[106.03794240000008,-5.883689499999946],[106.03074370000007,-5.884268899999938],[106.03092960000004,-5.885859399999958],[106.02809710000008,-5.887299299999938],[106.02893710000006,-5.8890254],[106.02739020000007,-5.889671499999963],[106.02546,-5.88817],[106.02302650000007,-5.889481499999931],[106.02135,-5.89448],[106.016488,-5.897889599999928],[106.018324,-5.901671599999929],[106.01454,-5.90462],[106.00799,-5.90545],[106.00760210000004,-5.908630899999935],[106.009491,-5.909834899999964],[106.00426830000004,-5.909989699999926],[106.00136,-5.91307],[106.00128890000008,-5.914778199999944],[106.00436850000006,-5.9169027],[106.00306990000007,-5.921860599999945],[105.99933210000006,-5.922327],[105.99768460000007,-5.920418599999948],[105.99576380000008,-5.922253599999976],[105.99474580000003,-5.921271799999943],[105.996645,-5.918710899999951],[105.99244460000006,-5.922564799999975],[105.99564740000005,-5.9273652],[105.99337230000003,-5.929026299999975],[105.99990080000003,-5.935276099999953],[106.00051780000007,-5.937697199999945],[105.99863440000007,-5.939064199999962],[106.002318,-5.9436545],[106.00258,-5.94759],[105.99813020000005,-5.954790399999979],[105.99876070000005,-5.960501099999931],[105.99590840000008,-5.964516899999978],[105.99705980000005,-5.967106699999931],[105.99581960000006,-5.968467699999962],[105.99630250000007,-5.974206199999969],[105.99180610000008,-5.9783149],[105.9941,-5.98093],[105.98945270000007,-5.980842699999926],[105.99078820000005,-5.984482499999956],[105.98647340000008,-5.985359399999936],[105.98371780000008,-5.988194799999974],[105.98297810000008,-5.991873699999928],[105.98005710000007,-5.993572299999926],[105.98276880000009,-5.996788699999968],[105.97843140000003,-5.997077199999978],[105.97252640000005,-6.000840799999935],[105.97139570000007,-6.000275099999953],[105.97202960000004,-6.001299699999947],[105.96735260000008,-6.007020299999965],[105.97008250000005,-6.0094771],[105.96939520000006,-6.010899499999937],[105.96774570000008,-6.011929499999951],[105.96564270000005,-6.0095475],[105.96000170000008,-6.012635499999931],[105.96036080000005,-6.010138899999959],[105.95786120000008,-6.013411],[105.95641850000004,-6.011403599999937],[105.95967150000007,-6.0079715],[105.95407080000007,-6.013161],[105.95618560000008,-6.011974799999962],[105.95707660000005,-6.013268499999981],[105.95572,-6.015151599999967],[105.95904090000005,-6.019293],[105.95731680000006,-6.020131399999968],[105.95259020000009,-6.015353199999936],[105.95459,-6.0175716],[105.95172930000007,-6.0182884],[105.95203860000004,-6.020480799999973],[105.950532,-6.019333299999971],[105.95192170000007,-6.020897899999966],[105.95090640000006,-6.021899699999949],[105.94744030000004,-6.019946399999981],[105.94182,-6.02147],[105.94109480000009,-6.023887499999944],[105.93015,-6.03351],[105.92963,-6.03603],[105.9221,-6.04382],[105.92320850000004,-6.046801499999958]]]]},"properties":{"shapeName":"Kota Cilegon","shapeISO":"","shapeID":"22746128B28377479966703","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[107.54729010000005,-6.926714499999946],[107.55025930000005,-6.926228399999957],[107.55789170000008,-6.929813399999944],[107.558688,-6.9261776],[107.56040110000004,-6.927938199999971],[107.55913470000007,-6.930829399999936],[107.56432910000007,-6.932720599999925],[107.56520020000005,-6.929703299999971],[107.56271220000008,-6.9273398],[107.56512870000006,-6.9243795],[107.56457790000007,-6.915861699999937],[107.56543020000004,-6.912386699999956],[107.56903350000005,-6.9103134],[107.55606710000006,-6.888976499999956],[107.56240010000005,-6.88804],[107.57630880000005,-6.8907393],[107.57233680000007,-6.886198799999931],[107.57148560000007,-6.882230599999957],[107.56971580000004,-6.881633199999953],[107.57065860000006,-6.877226399999927],[107.56505370000008,-6.875896],[107.56181460000005,-6.8729485],[107.56285920000005,-6.868788299999949],[107.56581920000008,-6.865768299999957],[107.56655520000004,-6.861609499999929],[107.56303190000006,-6.858679699999925],[107.56353540000003,-6.856080599999927],[107.56266520000008,-6.854897499999936],[107.559357,-6.854404699999975],[107.55877010000006,-6.855755399999964],[107.55567840000003,-6.854492799999946],[107.55377780000003,-6.849926799999935],[107.550902,-6.848441099999945],[107.55495920000004,-6.840958299999954],[107.54931920000007,-6.840098299999966],[107.55027980000006,-6.8335386],[107.54562610000005,-6.831747299999961],[107.54279690000004,-6.833925399999941],[107.53959940000004,-6.833788299999981],[107.53716930000007,-6.843562],[107.53228430000007,-6.850116599999978],[107.53764930000006,-6.852144],[107.53588830000007,-6.8585253],[107.533008,-6.859342699999956],[107.52988860000005,-6.864130699999976],[107.52311730000008,-6.865286499999968],[107.52676820000005,-6.867646399999956],[107.52518470000007,-6.872830099999931],[107.524453,-6.874117699999942],[107.52347060000005,-6.871959299999958],[107.51874550000008,-6.875000199999931],[107.51999,-6.87909],[107.51735,-6.88494],[107.51701,-6.8921],[107.51449,-6.89208],[107.51020510000006,-6.898321799999962],[107.51089920000004,-6.9011783],[107.52095,-6.9106],[107.5185,-6.91524],[107.52414920000007,-6.918598299999928],[107.52505010000004,-6.920748699999933],[107.52650920000008,-6.920838299999957],[107.52662920000006,-6.9194083],[107.53080920000008,-6.916468299999963],[107.53639150000004,-6.9189353],[107.53697820000008,-6.917388299999971],[107.54376570000005,-6.919023],[107.54538950000006,-6.927012899999966],[107.54729010000005,-6.926714499999946]]]},"properties":{"shapeName":"Kota Cimahi","shapeISO":"","shapeID":"22746128B13560614656044","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[108.59491920000005,-6.745406899999978],[108.59016660000009,-6.743502399999954],[108.587018,-6.739261699999929],[108.58573010000003,-6.736864499999967],[108.58693360000007,-6.735516099999927],[108.58584850000005,-6.7314967],[108.583353,-6.7345616],[108.58218230000006,-6.732891199999926],[108.58510660000007,-6.7308506],[108.57763570000009,-6.724217199999941],[108.57455510000005,-6.718392],[108.57322580000005,-6.711351299999933],[108.57199820000005,-6.715292799999929],[108.57355920000003,-6.715801899999974],[108.569619,-6.714532099999929],[108.571599,-6.714301199999966],[108.57198160000007,-6.712881299999935],[108.568943,-6.712232699999959],[108.56918090000005,-6.711062],[108.57150950000005,-6.711518399999932],[108.57235990000004,-6.7072929],[108.56814350000008,-6.705874799999947],[108.56228490000007,-6.691201],[108.55208350000004,-6.696927499999958],[108.55071480000004,-6.700089499999933],[108.54812530000004,-6.700975599999936],[108.54697630000004,-6.697988],[108.542906,-6.696438],[108.54434420000007,-6.702873199999942],[108.54218670000006,-6.704022],[108.54288620000005,-6.708277199999941],[108.54455070000006,-6.709141599999953],[108.54428330000007,-6.706236199999978],[108.549092,-6.707387799999935],[108.54886140000008,-6.719202399999972],[108.54664850000006,-6.721312599999976],[108.54783190000006,-6.722897899999964],[108.54724580000004,-6.726610799999946],[108.54476810000006,-6.725729499999943],[108.54479480000003,-6.728081699999962],[108.54098140000008,-6.724314599999957],[108.54087520000007,-6.725441199999977],[108.53704650000009,-6.726382599999965],[108.53428550000007,-6.725582],[108.535884,-6.728037399999948],[108.53491980000007,-6.729762499999936],[108.51951920000005,-6.735484099999951],[108.51873020000005,-6.736943099999962],[108.51924530000008,-6.741401199999927],[108.52246920000005,-6.746163199999955],[108.52757620000006,-6.748799099999928],[108.52696410000004,-6.750253699999973],[108.52836450000007,-6.7497913],[108.526758,-6.7517524],[108.53017040000009,-6.752830499999959],[108.528946,-6.756803899999966],[108.53139290000007,-6.758649299999945],[108.53494330000007,-6.757893799999977],[108.53368040000004,-6.759103799999934],[108.53580620000008,-6.762367199999971],[108.529625,-6.779138],[108.53052530000008,-6.783205899999928],[108.53371520000007,-6.786219699999947],[108.537833,-6.785950299999968],[108.54096990000005,-6.788336199999947],[108.54236610000004,-6.791966799999955],[108.54167180000007,-6.793696299999965],[108.54495050000008,-6.796174599999972],[108.54992810000005,-6.792889],[108.55110640000004,-6.787606299999936],[108.55301880000007,-6.7865696],[108.55480330000006,-6.782526699999949],[108.55543390000008,-6.765866599999981],[108.55706270000007,-6.764244799999972],[108.55846870000005,-6.7651669],[108.56043250000005,-6.756864499999949],[108.56648550000006,-6.7547156],[108.570096,-6.7503168],[108.575327,-6.7500323],[108.57634210000003,-6.751573399999927],[108.58167720000006,-6.747020199999952],[108.58406080000009,-6.747135],[108.587185,-6.749964499999976],[108.59491920000005,-6.745406899999978]]]},"properties":{"shapeName":"Kota Cirebon","shapeISO":"","shapeID":"22746128B32690997468028","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[115.18730210000001,-8.735829699999954],[115.18908950000002,-8.738794699999971],[115.19274790000009,-8.735832199999948],[115.1948109000001,-8.737063599999942],[115.19700120000005,-8.733248699999933],[115.1989714,-8.73411249999998],[115.19949250000002,-8.731892399999936],[115.20149480000009,-8.731232099999943],[115.2026512000001,-8.732891799999948],[115.20455640000011,-8.7326937],[115.204769,-8.729132199999981],[115.21048520000011,-8.730174199999965],[115.21194490000005,-8.7311798],[115.21093210000004,-8.736844299999973],[115.20574090000002,-8.736315899999965],[115.20545780000009,-8.737491299999931],[115.2081478,-8.738149699999951],[115.20613260000005,-8.746025199999963],[115.21177670000009,-8.746708099999978],[115.21043470000006,-8.744952],[115.21193520000008,-8.744777399999975],[115.2134254,-8.738738799999965],[115.21136500000011,-8.736374099999978],[115.21376790000011,-8.726283599999931],[115.22708260000002,-8.726360099999965],[115.223814,-8.731195399999933],[115.22187610000003,-8.73167419999993],[115.2222614000001,-8.734413099999927],[115.22082710000007,-8.735248599999977],[115.21790890000011,-8.746807099999955],[115.2193966000001,-8.748868899999934],[115.22881510000002,-8.752548199999978],[115.23493,-8.7463551],[115.2335491,-8.744211199999938],[115.22745320000001,-8.741762199999926],[115.228693,-8.740829499999961],[115.22798730000011,-8.739189099999976],[115.229414,-8.73493],[115.22991750000006,-8.7375698],[115.22836490000009,-8.739055599999972],[115.2321720000001,-8.739608799999928],[115.23595620000003,-8.7436314],[115.2393330000001,-8.743494099999964],[115.2436,-8.739702],[115.2438833000001,-8.736983399999929],[115.24655760000007,-8.736156499999936],[115.24726590000012,-8.732695499999977],[115.25061460000006,-8.7310317],[115.25046590000011,-8.729369099999928],[115.2473437000001,-8.728458],[115.24468080000008,-8.731067399999972],[115.24455290000003,-8.734012],[115.23751270000002,-8.737512799999934],[115.2366353000001,-8.736394399999938],[115.23984460000008,-8.734294499999976],[115.24000520000004,-8.731929899999955],[115.24204,-8.731255],[115.2392794000001,-8.727652899999953],[115.24100750000002,-8.726840899999956],[115.24453210000001,-8.729737899999975],[115.24456870000006,-8.725101799999948],[115.23915450000004,-8.721156899999926],[115.23653120000006,-8.72134129999995],[115.23304940000003,-8.725261699999976],[115.2309742000001,-8.723453499999948],[115.2298717000001,-8.724163099999942],[115.22979530000009,-8.727630499999975],[115.2243731000001,-8.722535599999958],[115.22779560000004,-8.719832599999961],[115.23904860000005,-8.717295699999966],[115.2417263000001,-8.714665899999943],[115.24796530000003,-8.712386399999957],[115.24743230000001,-8.711444099999937],[115.24317780000001,-8.713630299999977],[115.2456016000001,-8.7108732],[115.2481302000001,-8.711267],[115.24815520000004,-8.713738099999944],[115.25076970000009,-8.7134525],[115.25923220000004,-8.710176599999954],[115.2637175000001,-8.706716899999947],[115.26729920000002,-8.691001099999937],[115.26414310000007,-8.681956],[115.265233,-8.676957099999981],[115.26076360000002,-8.669121399999938],[115.2609294,-8.666043199999933],[115.26668170000005,-8.65668889999995],[115.27458160000003,-8.650148],[115.27035250000006,-8.641175799999928],[115.2659569000001,-8.641523699999937],[115.26448160000007,-8.63743169999998],[115.26015860000007,-8.636071399999935],[115.256024,-8.628212699999949],[115.25558820000003,-8.622910099999956],[115.24461330000008,-8.6123049],[115.2421786000001,-8.603149899999949],[115.23726380000005,-8.602146399999981],[115.23859870000001,-8.599272],[115.23820130000001,-8.597844299999963],[115.23652270000002,-8.597995],[115.23575210000001,-8.59152309999996],[115.22573220000004,-8.592761499999938],[115.22616040000003,-8.595602699999972],[115.22388400000011,-8.597352],[115.21453070000007,-8.596074199999975],[115.21339570000009,-8.598083599999939],[115.20976640000003,-8.597812399999953],[115.20922740000003,-8.599975299999926],[115.20348720000004,-8.602684899999929],[115.19990880000012,-8.606240599999978],[115.1965474000001,-8.606063499999948],[115.19768170000009,-8.611617399999943],[115.18880750000005,-8.612591699999939],[115.1863959000001,-8.615939099999935],[115.18014280000011,-8.616241899999977],[115.18232340000009,-8.62870289999995],[115.18007540000008,-8.628351799999962],[115.18154890000005,-8.633576],[115.180311,-8.633625299999949],[115.181569,-8.637321499999928],[115.18043050000006,-8.644569899999965],[115.18152120000002,-8.647155299999952],[115.17915090000008,-8.652917399999978],[115.17983670000001,-8.656335699999943],[115.17878170000006,-8.656540899999925],[115.18051820000005,-8.659936399999935],[115.17805090000002,-8.660713399999963],[115.17756280000003,-8.6581243],[115.1755329,-8.657958099999973],[115.17415420000009,-8.658010299999944],[115.1738064000001,-8.659704899999952],[115.17970690000004,-8.674875799999938],[115.17383040000004,-8.682974299999955],[115.17560620000006,-8.683174699999938],[115.17735260000006,-8.690890899999943],[115.18022240000005,-8.693054],[115.17946830000005,-8.695138799999938],[115.17613790000007,-8.696345599999972],[115.18082980000008,-8.698290199999974],[115.1820034000001,-8.704551699999968],[115.185301,-8.706117199999937],[115.18703570000002,-8.711407899999926],[115.18758470000012,-8.718229299999962],[115.185571,-8.718977299999949],[115.1848007000001,-8.7216965],[115.18673120000005,-8.721578299999976],[115.18730210000001,-8.735829699999954]]]},"properties":{"shapeName":"Kota Denpasar","shapeISO":"","shapeID":"22746128B51230995423873","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[106.91884780000004,-6.395603299999948],[106.90618150000006,-6.394360099999972],[106.90027250000009,-6.3977925],[106.89772810000005,-6.396414299999947],[106.89844650000003,-6.394424699999945],[106.90125290000009,-6.394579],[106.90407580000004,-6.392219599999976],[106.90352650000005,-6.388213699999937],[106.90506,-6.384386599999971],[106.90390030000003,-6.380260499999963],[106.90820330000008,-6.376705199999947],[106.90763390000006,-6.370752099999947],[106.91014690000009,-6.367907499999944],[106.91191080000004,-6.367093899999929],[106.91247570000007,-6.368375799999967],[106.91437840000003,-6.3654609],[106.90663170000005,-6.360801299999935],[106.901169,-6.369519799999978],[106.89759080000005,-6.368752499999971],[106.89437050000004,-6.370833399999981],[106.88911460000008,-6.367465099999947],[106.88774130000007,-6.369716199999971],[106.88349020000004,-6.370231599999954],[106.883629,-6.3651033],[106.88108080000006,-6.366613399999949],[106.88065360000007,-6.364637899999934],[106.877968,-6.363197799999966],[106.87883010000007,-6.361035399999935],[106.87661760000009,-6.361892299999965],[106.87147540000007,-6.360035499999981],[106.87390150000004,-6.356351899999936],[106.871216,-6.352892499999939],[106.86221330000006,-6.357338],[106.86024490000005,-6.353737399999943],[106.85561390000004,-6.352387],[106.85665910000006,-6.347175199999981],[106.85446950000005,-6.346851399999935],[106.85461450000008,-6.343823],[106.849991,-6.340187599999979],[106.85214250000007,-6.338164399999926],[106.851555,-6.336623199999963],[106.84942650000005,-6.336128299999928],[106.84891530000004,-6.337711799999965],[106.84699270000004,-6.3380304],[106.84608480000009,-6.342052499999966],[106.84094340000007,-6.341976799999941],[106.83802810000009,-6.341218],[106.83532320000006,-6.344055799999978],[106.83633670000006,-6.345072699999946],[106.83807470000005,-6.343331599999942],[106.83979050000005,-6.343941699999959],[106.83754280000005,-6.3471336],[106.83913440000003,-6.351900099999966],[106.83532730000007,-6.3520017],[106.83531210000007,-6.354968099999951],[106.82734180000006,-6.356854599999963],[106.81591970000005,-6.356030799999928],[106.81058210000003,-6.363991699999929],[106.802994,-6.363421499999959],[106.79986450000007,-6.365513799999974],[106.79468790000004,-6.364917899999966],[106.79309860000006,-6.363530199999957],[106.792473,-6.359365],[106.79396840000004,-6.354495499999928],[106.79259510000009,-6.352284499999939],[106.79399130000007,-6.350950699999942],[106.79243640000004,-6.348418699999968],[106.79534170000005,-6.345989699999961],[106.79667680000006,-6.346479],[106.79937480000007,-6.343154599999934],[106.79911820000007,-6.333960099999956],[106.801697,-6.333417899999972],[106.80132310000005,-6.331503399999974],[106.80339070000008,-6.329963699999951],[106.80458850000008,-6.324332699999957],[106.806122,-6.324241699999959],[106.80915850000008,-6.314913799999943],[106.79241960000007,-6.315701],[106.79057330000006,-6.314519],[106.78951280000007,-6.316242199999976],[106.77989980000007,-6.3165441],[106.77859520000004,-6.3174],[106.77924060000004,-6.321405599999935],[106.77772540000007,-6.323257],[106.77884690000008,-6.326871399999959],[106.77679460000007,-6.327005899999961],[106.77755760000008,-6.329489699999954],[106.775284,-6.333162799999968],[106.77642,-6.335915899999975],[106.77240010000008,-6.338206799999966],[106.77366660000007,-6.3388663],[106.77253740000003,-6.344069],[106.77443710000006,-6.345799399999976],[106.77325460000009,-6.346584299999961],[106.77368180000008,-6.350258399999973],[106.77210250000007,-6.3500877],[106.77185010000005,-6.352414199999942],[106.77002730000004,-6.352325899999926],[106.771065,-6.357180099999937],[106.76126120000004,-6.357379899999955],[106.75943010000009,-6.360786899999937],[106.72051370000008,-6.360478099999966],[106.72098680000005,-6.363152699999944],[106.71674730000007,-6.365307499999972],[106.718327,-6.367166399999974],[106.71689450000008,-6.369990399999949],[106.72271,-6.37434],[106.72083,-6.37639],[106.72376,-6.37662],[106.72167,-6.37982],[106.72332,-6.38121],[106.72185,-6.38599],[106.72333,-6.38692],[106.72598,-6.38542],[106.72802,-6.38595],[106.72595,-6.38791],[106.7283,-6.38769],[106.72879,-6.3895],[106.72702,-6.38961],[106.72857,-6.3943],[106.72689,-6.39443],[106.72649,-6.39641],[106.72921,-6.39632],[106.72871,-6.39871],[106.73094,-6.39925],[106.72968,-6.40202],[106.73133,-6.40236],[106.73123,-6.40451],[106.73278,-6.40558],[106.73139,-6.40718],[106.73031,-6.41434],[106.73261,-6.4145],[106.73723,-6.41911],[106.73533,-6.42273],[106.73677710000004,-6.424402399999963],[106.73294,-6.42661],[106.73282,-6.4293],[106.73612,-6.43181],[106.73579,-6.4341],[106.73841,-6.43892],[106.75842,-6.43897],[106.76635,-6.43726],[106.78114,-6.43931],[106.78818760000007,-6.438163499999973],[106.78846720000007,-6.440705299999934],[106.794061,-6.4416657],[106.79320060000003,-6.451794699999937],[106.801589,-6.452040199999942],[106.80503810000005,-6.442827299999976],[106.81635610000006,-6.445032699999956],[106.82308210000008,-6.444290799999976],[106.823646,-6.447399299999972],[106.82056730000005,-6.452301599999942],[106.82117780000004,-6.454136699999935],[106.825003,-6.4547583],[106.82402390000004,-6.460964],[106.82538340000008,-6.461283099999946],[106.82874730000009,-6.455194],[106.83202770000008,-6.454826199999957],[106.83276070000005,-6.453103499999941],[106.83526460000007,-6.454674899999929],[106.83549470000008,-6.452873499999953],[106.83367070000008,-6.451052699999934],[106.83522910000005,-6.449215099999947],[106.83708560000008,-6.450593],[106.84420950000003,-6.447388699999976],[106.84596480000005,-6.443499599999939],[106.84283360000006,-6.440978499999972],[106.84328080000006,-6.438316],[106.84475370000007,-6.43665],[106.85022080000005,-6.435959299999979],[106.85304040000005,-6.436009399999932],[106.85329170000006,-6.4486902],[106.85571880000003,-6.456269299999974],[106.87500070000004,-6.455943799999943],[106.87624570000008,-6.458245399999953],[106.87882780000007,-6.4573183],[106.87859880000008,-6.458590499999957],[106.88035020000007,-6.457652099999962],[106.88024720000004,-6.456166399999972],[106.88198570000009,-6.456677699999943],[106.87882540000004,-6.453552199999933],[106.88200070000005,-6.454149899999948],[106.88303930000006,-6.450017],[106.88094320000005,-6.448276199999952],[106.88382080000008,-6.448716299999944],[106.88340480000005,-6.446598299999948],[106.88215340000005,-6.446701599999926],[106.88246940000005,-6.443681099999935],[106.88513730000005,-6.445507699999951],[106.88508240000004,-6.442194499999971],[106.88706530000007,-6.442905899999971],[106.88726370000006,-6.440554199999951],[106.88540560000007,-6.440628],[106.88601490000008,-6.437312399999939],[106.88756860000007,-6.437318799999957],[106.88821090000005,-6.434697399999948],[106.89170550000006,-6.433965799999953],[106.89018220000008,-6.4322965],[106.89278130000008,-6.428291299999955],[106.89188820000004,-6.4273384],[106.89287810000008,-6.426482],[106.89517460000008,-6.427977899999973],[106.89456630000006,-6.424953099999925],[106.89912170000008,-6.4260386],[106.89996960000008,-6.423032699999965],[106.89866970000008,-6.422540899999944],[106.89896440000007,-6.419777899999929],[106.90027140000007,-6.420613599999967],[106.90045450000008,-6.419072],[106.903247,-6.417977399999927],[106.90409780000005,-6.419028],[106.90607710000006,-6.415634299999965],[106.90534850000006,-6.412663799999962],[106.90798280000007,-6.415164199999936],[106.90849340000005,-6.411593099999948],[106.91069420000008,-6.413576599999942],[106.91291190000004,-6.411936],[106.91449920000008,-6.412801099999967],[106.91466560000003,-6.414962599999967],[106.91721410000008,-6.409099],[106.91505250000006,-6.406617099999949],[106.91721470000005,-6.405603499999927],[106.91583350000008,-6.404936199999952],[106.917069,-6.403695099999936],[106.91595310000008,-6.401262899999949],[106.91815970000005,-6.400571799999966],[106.91609660000006,-6.399744699999928],[106.91826760000004,-6.398231],[106.91884780000004,-6.395603299999948]]]},"properties":{"shapeName":"Kota Depok","shapeISO":"","shapeID":"22746128B54822658544572","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[101.72595250000006,1.671998700000074],[101.71131480000008,1.671265700000049],[101.69412640000007,1.666771100000062],[101.66430930000007,1.665305700000033],[101.66087220000009,1.661857700000041],[101.64522170000004,1.659046500000045],[101.63403120000004,1.654586600000073],[101.62684120000006,1.648937300000057],[101.62016480000005,1.646612700000048],[101.61419110000008,1.64245],[101.60294660000005,1.640179500000045],[101.60189240000005,1.638665800000069],[101.59418880000004,1.638665800000069],[101.58935050000008,1.637044],[101.56174040000008,1.637061700000061],[101.55103590000004,1.641011200000037],[101.54162570000005,1.642462600000044],[101.52430820000006,1.649510100000043],[101.50673160000008,1.66032320000005],[101.502945,1.665223200000071],[101.49737050000005,1.66678],[101.49299020000007,1.675652100000036],[101.48141030000005,1.682813],[101.47343720000003,1.68576360000003],[101.46357590000008,1.68728980000003],[101.44890550000008,1.687274700000046],[101.44474390000005,1.689162100000033],[101.44058630000006,1.686582],[101.43146520000005,1.68923170000005],[101.41581820000005,1.695560300000068],[101.40050250000007,1.706812100000036],[101.39352440000005,1.713209500000062],[101.38942750000007,1.71993150000003],[101.38743050000005,1.720338],[101.38188610000009,1.732257100000027],[101.36470870000005,1.759331600000053],[101.357529,1.778169700000035],[101.35623740000005,1.79469290000003],[101.35882070000008,1.812038100000052],[101.363786,1.831597500000044],[101.35425790000005,1.843507600000066],[101.35006420000008,1.856189400000062],[101.34721250000007,1.871605500000044],[101.34122940000003,1.886036700000034],[101.33703020000007,1.89168490000003],[101.33536950000007,1.903091800000027],[101.33224940000008,1.911395300000038],[101.33283650000004,1.915253500000063],[101.33067260000007,1.920084700000075],[101.32866680000006,1.936016],[101.32708270000006,1.938167900000053],[101.32834090000006,1.947243100000037],[101.32496910000003,1.967456800000036],[101.32295610000006,1.970325200000048],[101.32315740000007,1.977488100000073],[101.32154710000003,1.982403100000056],[101.32314070000007,1.997903],[101.31810820000004,2.005787200000043],[101.30504060000004,2.041098200000022],[101.29405310000004,2.051364400000068],[101.28481020000004,2.057386500000064],[101.26832060000004,2.081357800000035],[101.24164860000008,2.091640700000028],[101.22685320000005,2.098971300000073],[101.17926310000007,2.128461400000049],[101.112298,2.189689500000043],[101.09612520000007,2.203114800000037],[101.08817520000008,2.206777200000033],[101.08129710000009,2.213119300000074],[101.07638420000006,2.218300200000044],[101.06825550000008,2.231609800000058],[101.06818760000004,2.237431900000047],[101.06459320000005,2.245187300000055],[101.06016860000005,2.248594500000024],[101.05757410000007,2.261826500000041],[101.05861190000007,2.268183],[101.061816,2.275299600000039],[101.05616870000006,2.270582],[101.05454070000008,2.267374400000051],[101.05172780000004,2.257579700000065],[101.05165870000008,2.248175400000036],[101.05008440000006,2.24327820000002],[101.03644320000006,2.215759400000024],[101.01277450000003,2.144779800000038],[101.00932370000004,2.119869700000038],[101.012846,2.098195500000031],[101.01860550000004,2.090581200000031],[101.018712,2.075536800000066],[101.02586120000007,2.065034600000047],[101.03263430000004,2.04457530000002],[101.05400620000006,1.993919400000038],[101.05791150000005,1.975578900000073],[101.06023660000005,1.955078200000059],[101.07308040000004,1.929098700000054],[101.07901930000008,1.919293800000048],[101.084533,1.915803500000038],[101.08798870000004,1.910465100000067],[101.08809340000005,1.907525700000065],[101.09855220000009,1.89201840000004],[101.10832010000007,1.881779700000038],[101.11292580000008,1.872328],[101.117078,1.869690400000025],[101.12106630000005,1.857640700000047],[101.12607990000004,1.851623],[101.12994880000008,1.840755100000024],[101.20293020000008,1.752829200000065],[101.241986,1.694264900000064],[101.25290670000004,1.681451300000049],[101.26373850000004,1.661398700000063],[101.26962080000004,1.654909800000041],[101.27147040000006,1.647010700000067],[101.28177840000006,1.631620800000064],[101.28140920000004,1.626173100000074],[101.28466010000005,1.615330800000038],[101.29296590000007,1.598093800000072],[101.29996580000005,1.588604],[101.30792960000008,1.547073],[101.31104870000007,1.541827100000035],[101.31394860000006,1.526824900000065],[101.33303440000009,1.496340500000031],[101.31741720000008,1.474730100000045],[101.34103680000004,1.46722120000004],[101.36643140000007,1.451548100000025],[101.42217150000005,1.431061900000032],[101.42220860000003,1.458307],[101.47551270000008,1.456392200000039],[101.48123270000008,1.482076600000028],[101.51488310000008,1.481691],[101.57587190000004,1.53599],[101.578758,1.540005300000075],[101.60012610000007,1.524514400000044],[101.62620940000005,1.517351800000029],[101.68998480000005,1.515800200000058],[101.72816930000005,1.660943600000053],[101.72595250000006,1.671998700000074]]]},"properties":{"shapeName":"Kota Dumai","shapeISO":"","shapeID":"22746128B92122355032575","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[123.0611024000001,0.589081600000043],[123.0569862000001,0.586701300000072],[123.053261,0.587955],[123.05133590000003,0.583043900000064],[123.04380270000001,0.574233700000036],[123.04108780000001,0.573903100000052],[123.03914610000004,0.575622600000031],[123.03860780000002,0.571721600000046],[123.0345218000001,0.572529300000042],[123.0357011000001,0.569002800000021],[123.03403220000007,0.566458800000021],[123.02920210000002,0.56333120000005],[123.02699690000009,0.56367890000007],[123.02453560000004,0.558264300000076],[123.02554250000003,0.554469600000061],[123.02991220000001,0.552212],[123.0305902,0.546827800000074],[123.02720520000003,0.547541700000068],[123.026136,0.549163600000043],[123.02387610000005,0.547899500000028],[123.02336560000003,0.549345600000038],[123.02073330000007,0.548541800000066],[123.01373990000002,0.549788400000068],[123.00650960000007,0.55480840000007],[123.00558760000001,0.553547200000025],[123.0044339000001,0.554403100000059],[123.00110660000007,0.553010500000028],[122.99939350000011,0.550115800000071],[122.994924,0.551864200000068],[122.99681840000005,0.542429100000049],[123.00414050000006,0.537184],[123.00533530000007,0.533637900000031],[123.01186230000008,0.526159300000074],[123.01453320000007,0.524435400000073],[123.02568870000005,0.522986400000036],[123.03895860000011,0.513290700000027],[123.04162030000009,0.504609100000039],[123.04456730000004,0.50033970000004],[123.04230140000004,0.496061400000031],[123.0444480000001,0.495447600000034],[123.04512360000001,0.491359],[123.0473429000001,0.490520600000025],[123.04969160000007,0.495932],[123.0489569,0.501938100000075],[123.05899850000003,0.507358400000044],[123.06072620000009,0.510261900000046],[123.06217,0.523836300000028],[123.06646850000004,0.52922650000005],[123.06289820000006,0.52277440000006],[123.062932,0.50539150000003],[123.0703923000001,0.49630170000006],[123.07024090000004,0.497500400000035],[123.07358950000003,0.493611500000043],[123.077968,0.492212100000074],[123.07882630000006,0.488557600000036],[123.08540460000006,0.486804100000029],[123.08687320000001,0.479886400000055],[123.09605140000008,0.485499300000072],[123.100185,0.502911300000051],[123.09654320000004,0.507176500000071],[123.08758420000004,0.508976800000028],[123.08465760000001,0.514198],[123.08213340000009,0.515767200000028],[123.07923920000007,0.523035800000059],[123.08007820000012,0.531890200000021],[123.08915050000007,0.552391],[123.08764660000008,0.554822700000045],[123.09014190000005,0.566298900000049],[123.09101950000002,0.580333800000062],[123.0611024000001,0.589081600000043]]]},"properties":{"shapeName":"Kota Gorontalo","shapeISO":"","shapeID":"22746128B20076308302421","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[97.63634220000006,1.094199400000036],[97.6321,1.09552780000007],[97.63100940000004,1.088545600000032],[97.63240560000008,1.08157],[97.64330780000006,1.08062110000003],[97.65527060000005,1.082786100000021],[97.64896890000006,1.09396890000005],[97.63634220000006,1.094199400000036]]],[[[97.69019060000005,1.178496100000075],[97.68053330000004,1.193065600000068],[97.67954560000004,1.210684400000048],[97.67618940000006,1.219293300000061],[97.67155,1.224003900000071],[97.65205220000007,1.237298900000042],[97.65173440000007,1.243023900000026],[97.64741060000006,1.24635],[97.64010890000009,1.255626100000029],[97.63996220000007,1.261369400000035],[97.63665110000005,1.269118900000024],[97.62579560000006,1.285773300000074],[97.62241940000007,1.289367800000036],[97.61397560000006,1.291528300000039],[97.61060440000006,1.294068300000049],[97.60902610000005,1.304025600000045],[97.61142390000003,1.307418300000052],[97.60985780000004,1.311605],[97.60209830000008,1.319496700000059],[97.59917220000005,1.328856100000053],[97.59222110000007,1.337010600000042],[97.58789780000006,1.338446100000056],[97.58568560000003,1.341583300000025],[97.57837670000004,1.346101100000055],[97.56947940000003,1.360230600000023],[97.56298060000006,1.36578170000007],[97.56171890000007,1.371650600000066],[97.55867720000003,1.376233900000045],[97.55308720000005,1.378302200000064],[97.54943060000005,1.378127800000073],[97.545545,1.386023300000033],[97.54142440000004,1.388230600000043],[97.54196330000008,1.406459400000074],[97.53998670000004,1.41990670000007],[97.53761330000003,1.421705],[97.52602940000008,1.421887800000036],[97.52125440000003,1.423448300000075],[97.50407110000003,1.409951700000022],[97.49037670000007,1.389778900000067],[97.48637890000003,1.386736700000029],[97.48900330000004,1.37805220000007],[97.47805670000008,1.371506200000056],[97.47071210000007,1.346656200000041],[97.47897830000005,1.337146100000041],[97.48391270000008,1.326599300000055],[97.48778620000007,1.313042300000063],[97.49482880000005,1.304943300000048],[97.49821920000005,1.292014600000073],[97.51022490000008,1.274484100000052],[97.527484,1.279166800000041],[97.54116040000008,1.284876200000042],[97.54717510000006,1.284433600000057],[97.55939220000005,1.280841100000032],[97.56581260000007,1.276994400000035],[97.57112650000005,1.271285600000056],[97.57990340000003,1.268781300000057],[97.58318770000005,1.262491100000034],[97.58191740000007,1.26051810000007],[97.569751,1.261267300000043],[97.56528,1.25817],[97.56450240000004,1.246071700000073],[97.56899190000007,1.232983600000068],[97.567929,1.22805],[97.56032190000008,1.221176600000035],[97.57834330000009,1.215077800000074],[97.57614820000003,1.20094030000007],[97.58130190000008,1.194252900000038],[97.58706390000003,1.199742800000024],[97.60135390000005,1.195585],[97.61559,1.19992220000006],[97.62097670000009,1.195017800000073],[97.62273110000007,1.180640600000061],[97.62627890000005,1.173941100000036],[97.61903110000009,1.160487200000034],[97.60595440000009,1.130085600000029],[97.59940060000008,1.127983900000061],[97.58619390000007,1.12043280000006],[97.59315750000007,1.110109],[97.61369060000004,1.109808900000075],[97.61981670000006,1.108027800000059],[97.626355,1.112079400000027],[97.63024610000008,1.11657],[97.63277940000006,1.104876700000034],[97.64598560000007,1.100113300000032],[97.67741110000009,1.11163670000002],[97.68512440000006,1.117301700000041],[97.680745,1.121837800000037],[97.67341330000005,1.121095],[97.67049890000004,1.12322],[97.66838560000008,1.12272280000002],[97.66245,1.118948900000021],[97.65524780000004,1.118327800000031],[97.64681720000004,1.112437200000045],[97.64555060000004,1.119157200000075],[97.64358220000008,1.120169400000066],[97.65355390000008,1.12833610000007],[97.66336560000008,1.139035600000057],[97.66518110000004,1.146017800000038],[97.66882060000006,1.152517800000055],[97.69019060000005,1.178496100000075]]]]},"properties":{"shapeName":"Kota Gunungsitoli","shapeISO":"","shapeID":"22746128B93880184548390","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[106.71137910000004,-6.09595],[106.70410180000005,-6.095236799999952],[106.70214860000004,-6.0967608],[106.69196760000005,-6.095673899999952],[106.68723570000009,-6.097140699999954],[106.68895740000005,-6.106362299999944],[106.69368760000003,-6.107194399999969],[106.69788380000006,-6.110893699999963],[106.69640370000008,-6.112876899999947],[106.68901850000009,-6.114240699999925],[106.68969750000008,-6.121171],[106.68708060000006,-6.128622099999973],[106.69139880000006,-6.133455799999979],[106.691704,-6.136499899999933],[106.68621080000008,-6.1430645],[106.68810270000006,-6.159980499999961],[106.68997210000003,-6.1600332],[106.68882770000005,-6.172126799999944],[106.70488760000006,-6.179064299999936],[106.71706410000007,-6.186707],[106.71691150000004,-6.193122399999936],[106.72405090000007,-6.191571899999929],[106.72439580000008,-6.207603099999972],[106.72016930000007,-6.209604299999967],[106.71814310000008,-6.217743899999959],[106.71823040000004,-6.224172299999964],[106.73731550000008,-6.223623099999941],[106.76555,-6.222980799999959],[106.76703,-6.22541],[106.76430820000007,-6.227256],[106.77841620000004,-6.226909],[106.77774830000004,-6.213585899999941],[106.78317280000005,-6.212946899999963],[106.78314230000007,-6.206719899999939],[106.788994,-6.2084933],[106.79238910000004,-6.207788],[106.79605880000008,-6.2075811],[106.79771440000007,-6.203137],[106.80428330000007,-6.197340499999939],[106.80674760000005,-6.189106],[106.81065390000003,-6.188723099999947],[106.80963150000008,-6.179301799999962],[106.79814930000003,-6.161384599999963],[106.80061360000008,-6.160232599999972],[106.80142990000007,-6.158043],[106.80159020000008,-6.160112399999946],[106.80400870000005,-6.161744599999963],[106.82028220000007,-6.159548299999926],[106.82830830000006,-6.162252899999942],[106.82633230000005,-6.147045699999978],[106.821274,-6.136870899999963],[106.81674550000008,-6.137063599999976],[106.81503310000005,-6.1302419],[106.81318690000006,-6.130124199999955],[106.80114,-6.133650799999941],[106.80052210000008,-6.141887199999928],[106.79001070000004,-6.142329899999936],[106.77508560000007,-6.145231699999954],[106.77488730000005,-6.1414137],[106.76822680000004,-6.140689899999927],[106.75085470000005,-6.134427099999925],[106.733252,-6.123161099999948],[106.72741720000005,-6.1175809],[106.71137910000004,-6.09595]]]},"properties":{"shapeName":"Kota Jakarta Barat","shapeISO":"","shapeID":"22746128B49521512592184","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[106.79238910000004,-6.207788],[106.79342970000005,-6.211732199999972],[106.79576130000004,-6.212493],[106.79686760000004,-6.2184596],[106.79561630000006,-6.2284151],[106.79752370000006,-6.229304799999966],[106.79959130000009,-6.228997299999946],[106.81859610000004,-6.214367899999957],[106.82159540000004,-6.209226199999932],[106.82270830000004,-6.202698699999928],[106.837166,-6.205395299999964],[106.84609010000008,-6.208558399999959],[106.84905260000005,-6.207543],[106.84993,-6.205592199999955],[106.85508750000008,-6.205792499999973],[106.85528580000005,-6.202552399999945],[106.85102860000006,-6.201626799999929],[106.861725,-6.193864399999939],[106.87502310000008,-6.192334699999947],[106.87608360000007,-6.175885799999946],[106.87880730000006,-6.166463399999941],[106.881432,-6.1624789],[106.876877,-6.163494199999946],[106.86017630000003,-6.153843499999937],[106.86116050000004,-6.150890899999979],[106.859823,-6.152616099999932],[106.85627,-6.151831199999947],[106.84356710000009,-6.153652699999952],[106.84119440000006,-6.151069699999937],[106.84405530000004,-6.1449857],[106.83835620000008,-6.1417847],[106.83711260000007,-6.146111099999928],[106.83567070000004,-6.143171799999948],[106.83117690000006,-6.140411],[106.83066580000008,-6.135321199999964],[106.821274,-6.136870899999963],[106.82633230000005,-6.147045699999978],[106.82830830000006,-6.162252899999942],[106.82028220000007,-6.159548299999926],[106.80400870000005,-6.161744599999963],[106.80159020000008,-6.160112399999946],[106.80142990000007,-6.158043],[106.80061360000008,-6.160232599999972],[106.79814930000003,-6.161384599999963],[106.80963150000008,-6.179301799999962],[106.81065390000003,-6.188723099999947],[106.80674760000005,-6.189106],[106.80428330000007,-6.197340499999939],[106.79771440000007,-6.203137],[106.79605880000008,-6.2075811],[106.79238910000004,-6.207788]]]},"properties":{"shapeName":"Kota Jakarta Pusat","shapeISO":"","shapeID":"22746128B41653875825542","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[106.84094340000007,-6.341976799999941],[106.83923360000006,-6.340447899999958],[106.84037040000004,-6.338213],[106.83985160000009,-6.332842399999947],[106.84339920000008,-6.331596899999965],[106.840233,-6.329210299999943],[106.84130880000004,-6.3266898],[106.84217850000005,-6.327716399999929],[106.84310930000004,-6.326263499999925],[106.84004230000005,-6.322776399999952],[106.84087390000008,-6.321370199999933],[106.83829520000006,-6.320729799999981],[106.83999650000004,-6.318625499999939],[106.84383410000004,-6.318456199999957],[106.84427240000008,-6.316648699999973],[106.84615710000008,-6.317046699999935],[106.84835070000008,-6.3151141],[106.84847680000007,-6.317138799999952],[106.84679480000005,-6.317993599999966],[106.84926130000008,-6.318787099999952],[106.85172660000006,-6.315987799999959],[106.85236380000003,-6.311065699999972],[106.85488150000003,-6.3138295],[106.85832230000005,-6.311088099999949],[106.85677360000005,-6.309880299999975],[106.858452,-6.305379],[106.85473650000006,-6.303328599999929],[106.85481280000005,-6.299657899999943],[106.85162370000006,-6.301093599999945],[106.84977740000005,-6.299765699999966],[106.85214250000007,-6.298979299999928],[106.85065480000009,-6.295853199999954],[106.85424060000008,-6.295954299999948],[106.85396590000005,-6.2937923],[106.85227980000008,-6.294538099999954],[106.854439,-6.290829199999962],[106.85021990000007,-6.292498599999931],[106.84928910000008,-6.290471599999933],[106.85115830000007,-6.288453599999968],[106.848488,-6.288068399999929],[106.847336,-6.285711799999945],[106.84876270000007,-6.283681399999978],[106.84746160000009,-6.283037199999967],[106.85034380000008,-6.279704],[106.84658830000006,-6.279078499999969],[106.85164660000004,-6.276172199999962],[106.85130330000004,-6.273455199999944],[106.85334030000007,-6.273264899999958],[106.85358450000007,-6.271981799999935],[106.85672010000008,-6.272686499999963],[106.85484330000008,-6.270412499999964],[106.85650650000008,-6.270156899999961],[106.85397340000009,-6.265087599999958],[106.85712030000008,-6.263782299999946],[106.85432450000008,-6.262162699999976],[106.85920280000005,-6.262845199999958],[106.86050430000006,-6.257686199999966],[106.85931410000006,-6.256818799999962],[106.86071030000005,-6.255185599999947],[106.85778090000008,-6.255272399999967],[106.85773490000008,-6.253223],[106.86018020000006,-6.250985199999946],[106.86116730000003,-6.254006599999968],[106.86268510000008,-6.253499599999941],[106.86219040000009,-6.250467799999967],[106.864052,-6.249419299999943],[106.86198450000006,-6.246113799999932],[106.86301440000005,-6.238899299999957],[106.864731,-6.236797799999977],[106.86684440000005,-6.238765299999955],[106.865204,-6.235170399999959],[106.86612720000005,-6.233753299999933],[106.86322040000005,-6.230864099999962],[106.86483780000003,-6.2288804],[106.86353320000006,-6.224649499999941],[106.86529560000008,-6.223348199999975],[106.86287710000005,-6.2197013],[106.86155720000005,-6.219972699999971],[106.86133480000007,-6.221832099999972],[106.86006180000004,-6.221212499999979],[106.86352590000007,-6.216260099999943],[106.86045320000005,-6.217326299999968],[106.85866840000006,-6.216321499999935],[106.85722370000008,-6.217577],[106.85628530000008,-6.216156499999954],[106.85823080000006,-6.213580699999966],[106.85752820000005,-6.212212499999964],[106.84905260000005,-6.207543],[106.84609010000008,-6.208558399999959],[106.837166,-6.205395299999964],[106.82270830000004,-6.202698699999928],[106.82159540000004,-6.209226199999932],[106.81859610000004,-6.214367899999957],[106.79959130000009,-6.228997299999946],[106.79752370000006,-6.229304799999966],[106.79561630000006,-6.2284151],[106.79686760000004,-6.2184596],[106.79576130000004,-6.212493],[106.79342970000005,-6.211732199999972],[106.79238910000004,-6.207788],[106.788994,-6.2084933],[106.78314230000007,-6.206719899999939],[106.78317280000005,-6.212946899999963],[106.77774830000004,-6.213585899999941],[106.77841620000004,-6.226909],[106.76430820000007,-6.227256],[106.76703,-6.22541],[106.76555,-6.222980799999959],[106.73731550000008,-6.223623099999941],[106.73777880000006,-6.225320299999964],[106.740303,-6.2261041],[106.74030740000006,-6.227635599999928],[106.743211,-6.2274659],[106.74389930000007,-6.230478499999947],[106.74538780000006,-6.230721699999947],[106.74391940000004,-6.236242299999958],[106.746999,-6.236389599999939],[106.74858880000005,-6.240682599999957],[106.74667320000003,-6.246667699999932],[106.74815340000004,-6.249611899999934],[106.75178730000005,-6.249973599999976],[106.75464510000006,-6.255559399999981],[106.75351680000006,-6.25605],[106.75437390000008,-6.259847],[106.75235950000007,-6.259796499999936],[106.751465,-6.261748799999964],[106.75631050000004,-6.261482],[106.75652330000008,-6.262475],[106.75245750000005,-6.264694599999928],[106.75301420000005,-6.269033899999954],[106.75029880000005,-6.271841199999926],[106.75158710000005,-6.274566199999981],[106.75696380000005,-6.274247399999979],[106.75719040000007,-6.277839799999981],[106.76221250000003,-6.277862899999946],[106.76010290000005,-6.286402599999974],[106.76293350000009,-6.286850799999968],[106.76306860000005,-6.288749399999972],[106.76591060000004,-6.288837099999967],[106.76813530000004,-6.291791899999964],[106.76739520000007,-6.295490799999925],[106.77008080000007,-6.295619],[106.76979850000004,-6.297561199999961],[106.77128620000008,-6.299055599999974],[106.77375050000006,-6.298570699999971],[106.77374290000006,-6.299531499999944],[106.77152270000005,-6.299374099999966],[106.77312490000008,-6.301498],[106.770859,-6.302105399999959],[106.77346820000008,-6.303120199999967],[106.77315540000006,-6.304795799999965],[106.77446,-6.3032952],[106.77559680000007,-6.304074799999967],[106.77532980000007,-6.306140399999947],[106.773926,-6.3065629],[106.77496360000004,-6.308388299999933],[106.77327750000006,-6.309679],[106.77533740000007,-6.310543099999961],[106.77471940000004,-6.312135199999943],[106.77653520000007,-6.311933499999952],[106.77684040000008,-6.315314299999955],[106.77989980000007,-6.3165441],[106.78951280000007,-6.316242199999976],[106.79057330000006,-6.314519],[106.79241960000007,-6.315701],[106.80915850000008,-6.314913799999943],[106.806122,-6.324241699999959],[106.80458850000008,-6.324332699999957],[106.80339070000008,-6.329963699999951],[106.80132310000005,-6.331503399999974],[106.801697,-6.333417899999972],[106.79911820000007,-6.333960099999956],[106.79937480000007,-6.343154599999934],[106.79667680000006,-6.346479],[106.79534170000005,-6.345989699999961],[106.79243640000004,-6.348418699999968],[106.79399130000007,-6.350950699999942],[106.79259510000009,-6.352284499999939],[106.79396840000004,-6.354495499999928],[106.792473,-6.359365],[106.79309860000006,-6.363530199999957],[106.79468790000004,-6.364917899999966],[106.79986450000007,-6.365513799999974],[106.802994,-6.363421499999959],[106.81058210000003,-6.363991699999929],[106.81591970000005,-6.356030799999928],[106.82734180000006,-6.356854599999963],[106.83531210000007,-6.354968099999951],[106.83532730000007,-6.3520017],[106.83913440000003,-6.351900099999966],[106.83754280000005,-6.3471336],[106.83979050000005,-6.343941699999959],[106.83807470000005,-6.343331599999942],[106.83633670000006,-6.345072699999946],[106.83532320000006,-6.344055799999978],[106.83802810000009,-6.341218],[106.84094340000007,-6.341976799999941]]]},"properties":{"shapeName":"Kota Jakarta Selatan","shapeISO":"","shapeID":"22746128B4563589047380","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[106.97189350000008,-6.1546145],[106.96391850000003,-6.156266099999925],[106.95974490000003,-6.155641599999967],[106.95859290000004,-6.159534299999962],[106.95433010000005,-6.157600799999955],[106.95303470000005,-6.158399699999961],[106.95157760000006,-6.163381],[106.94439710000006,-6.162994],[106.94423690000008,-6.155086599999947],[106.94015520000005,-6.155268699999965],[106.93997110000004,-6.151422799999978],[106.93555240000006,-6.158545099999969],[106.92189080000009,-6.162368399999934],[106.92036450000006,-6.169804599999964],[106.922455,-6.183112199999925],[106.91008010000007,-6.182484199999976],[106.90136360000008,-6.178538599999968],[106.89643120000005,-6.177996199999939],[106.89123550000005,-6.173327099999938],[106.87880730000006,-6.166463399999941],[106.87608360000007,-6.175885799999946],[106.87502310000008,-6.192334699999947],[106.861725,-6.193864399999939],[106.85102860000006,-6.201626799999929],[106.85528580000005,-6.202552399999945],[106.85508750000008,-6.205792499999973],[106.84993,-6.205592199999955],[106.84905260000005,-6.207543],[106.85752820000005,-6.212212499999964],[106.85823080000006,-6.213580699999966],[106.85628530000008,-6.216156499999954],[106.85722370000008,-6.217577],[106.85866840000006,-6.216321499999935],[106.86045320000005,-6.217326299999968],[106.86352590000007,-6.216260099999943],[106.86006180000004,-6.221212499999979],[106.86133480000007,-6.221832099999972],[106.86155720000005,-6.219972699999971],[106.86287710000005,-6.2197013],[106.86529560000008,-6.223348199999975],[106.86353320000006,-6.224649499999941],[106.86483780000003,-6.2288804],[106.86322040000005,-6.230864099999962],[106.86612720000005,-6.233753299999933],[106.865204,-6.235170399999959],[106.86684440000005,-6.238765299999955],[106.864731,-6.236797799999977],[106.86301440000005,-6.238899299999957],[106.86198450000006,-6.246113799999932],[106.864052,-6.249419299999943],[106.86219040000009,-6.250467799999967],[106.86268510000008,-6.253499599999941],[106.86116730000003,-6.254006599999968],[106.86018020000006,-6.250985199999946],[106.85773490000008,-6.253223],[106.85778090000008,-6.255272399999967],[106.86071030000005,-6.255185599999947],[106.85931410000006,-6.256818799999962],[106.86050430000006,-6.257686199999966],[106.85920280000005,-6.262845199999958],[106.85432450000008,-6.262162699999976],[106.85712030000008,-6.263782299999946],[106.85397340000009,-6.265087599999958],[106.85650650000008,-6.270156899999961],[106.85484330000008,-6.270412499999964],[106.85672010000008,-6.272686499999963],[106.85358450000007,-6.271981799999935],[106.85334030000007,-6.273264899999958],[106.85130330000004,-6.273455199999944],[106.85164660000004,-6.276172199999962],[106.84658830000006,-6.279078499999969],[106.85034380000008,-6.279704],[106.84746160000009,-6.283037199999967],[106.84876270000007,-6.283681399999978],[106.847336,-6.285711799999945],[106.848488,-6.288068399999929],[106.85115830000007,-6.288453599999968],[106.84928910000008,-6.290471599999933],[106.85021990000007,-6.292498599999931],[106.854439,-6.290829199999962],[106.85227980000008,-6.294538099999954],[106.85396590000005,-6.2937923],[106.85424060000008,-6.295954299999948],[106.85065480000009,-6.295853199999954],[106.85214250000007,-6.298979299999928],[106.84977740000005,-6.299765699999966],[106.85162370000006,-6.301093599999945],[106.85481280000005,-6.299657899999943],[106.85473650000006,-6.303328599999929],[106.858452,-6.305379],[106.85677360000005,-6.309880299999975],[106.85832230000005,-6.311088099999949],[106.85488150000003,-6.3138295],[106.85236380000003,-6.311065699999972],[106.85172660000006,-6.315987799999959],[106.84926130000008,-6.318787099999952],[106.84679480000005,-6.317993599999966],[106.84847680000007,-6.317138799999952],[106.84835070000008,-6.3151141],[106.84615710000008,-6.317046699999935],[106.84427240000008,-6.316648699999973],[106.84383410000004,-6.318456199999957],[106.83999650000004,-6.318625499999939],[106.83829520000006,-6.320729799999981],[106.84087390000008,-6.321370199999933],[106.84004230000005,-6.322776399999952],[106.84310930000004,-6.326263499999925],[106.84217850000005,-6.327716399999929],[106.84130880000004,-6.3266898],[106.840233,-6.329210299999943],[106.84339920000008,-6.331596899999965],[106.83985160000009,-6.332842399999947],[106.84037040000004,-6.338213],[106.83923360000006,-6.340447899999958],[106.84094340000007,-6.341976799999941],[106.84608480000009,-6.342052499999966],[106.84699270000004,-6.3380304],[106.84891530000004,-6.337711799999965],[106.84942650000005,-6.336128299999928],[106.851555,-6.336623199999963],[106.85214250000007,-6.338164399999926],[106.849991,-6.340187599999979],[106.85461450000008,-6.343823],[106.85446950000005,-6.346851399999935],[106.85665910000006,-6.347175199999981],[106.85561390000004,-6.352387],[106.86024490000005,-6.353737399999943],[106.86221330000006,-6.357338],[106.871216,-6.352892499999939],[106.87390150000004,-6.356351899999936],[106.87147540000007,-6.360035499999981],[106.87661760000009,-6.361892299999965],[106.87883010000007,-6.361035399999935],[106.877968,-6.363197799999966],[106.88065360000007,-6.364637899999934],[106.88108080000006,-6.366613399999949],[106.883629,-6.3651033],[106.88349020000004,-6.370231599999954],[106.88774130000007,-6.369716199999971],[106.88911460000008,-6.367465099999947],[106.89437050000004,-6.370833399999981],[106.89759080000005,-6.368752499999971],[106.901169,-6.369519799999978],[106.90663170000005,-6.360801299999935],[106.91437840000003,-6.3654609],[106.91622180000007,-6.362806899999953],[106.91360490000005,-6.358816199999978],[106.91714010000004,-6.356434],[106.91546290000008,-6.354991199999972],[106.91780110000008,-6.350381599999935],[106.91613210000008,-6.348916699999961],[106.91724680000004,-6.347945699999968],[106.91592080000004,-6.346298199999978],[106.91718310000005,-6.346124699999962],[106.91735860000006,-6.3437877],[106.91942750000004,-6.343601299999932],[106.91822770000005,-6.339170799999977],[106.91950240000006,-6.3386274],[106.92088340000004,-6.331506299999944],[106.92040270000007,-6.328868499999942],[106.91815970000005,-6.327909],[106.92169210000009,-6.3229676],[106.92072310000009,-6.318261699999937],[106.922806,-6.314239599999951],[106.920128,-6.311414299999967],[106.92153190000005,-6.310939799999971],[106.92062390000007,-6.308298199999967],[106.92182940000004,-6.303387199999975],[106.92065450000007,-6.300198099999932],[106.91892260000009,-6.300593899999967],[106.91770190000005,-6.297984699999972],[106.91489180000008,-6.297059699999977],[106.91348290000008,-6.298887799999932],[106.91182720000006,-6.298256499999979],[106.91107280000006,-6.295957],[106.91237770000004,-6.294688099999973],[106.91019380000006,-6.294266899999968],[106.91180580000008,-6.290250599999979],[106.90934060000006,-6.290873199999965],[106.91045650000007,-6.286988899999926],[106.90797640000005,-6.282501699999955],[106.91007320000006,-6.272799],[106.90425890000006,-6.270325699999944],[106.90568560000008,-6.267637799999932],[106.90435040000006,-6.262069299999951],[106.90531940000005,-6.260093799999936],[106.90992750000004,-6.257999499999926],[106.90973680000008,-6.255546199999969],[106.91572590000004,-6.258374299999957],[106.91624470000005,-6.252508699999964],[106.91991440000004,-6.2503401],[106.92169970000003,-6.251299],[106.92202010000005,-6.253936899999928],[106.92794050000003,-6.254637299999956],[106.92944250000005,-6.253188899999941],[106.93349470000004,-6.253953099999933],[106.94388760000004,-6.252337799999964],[106.94362660000007,-6.2389055],[106.94175740000009,-6.238182199999926],[106.94549090000004,-6.236821299999974],[106.94723530000005,-6.226147199999957],[106.95082870000005,-6.219086699999934],[106.955766,-6.219511199999943],[106.95775620000006,-6.217614699999956],[106.95904560000008,-6.212894099999971],[106.96239490000005,-6.214485699999955],[106.96283680000005,-6.211464099999944],[106.966202,-6.206918299999927],[106.96574420000007,-6.201041799999928],[106.96756,-6.197811699999932],[106.966488,-6.195695799999953],[106.96958180000007,-6.1949535],[106.97126790000004,-6.1876336],[106.97162650000007,-6.172236599999962],[106.97189350000008,-6.1546145]]]},"properties":{"shapeName":"Kota Jakarta Timur","shapeISO":"","shapeID":"22746128B510087515162","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[106.87676710000005,-6.100300399999981],[106.87819480000007,-6.098967899999934],[106.87833760000007,-6.094684899999947],[106.87700510000008,-6.094542099999956],[106.87676710000005,-6.100300399999981]]],[[[106.96876680000008,-6.092243899999971],[106.96518790000005,-6.093733099999952],[106.96108310000005,-6.092163],[106.95904660000008,-6.093828899999949],[106.95399590000005,-6.094475799999941],[106.95367130000005,-6.096017399999937],[106.94301130000008,-6.097920899999963],[106.94033920000004,-6.098151899999948],[106.93838340000008,-6.096011799999928],[106.92791650000004,-6.097753799999964],[106.92581610000008,-6.100061399999959],[106.92033930000008,-6.100667199999975],[106.91972730000003,-6.103402499999959],[106.92154810000005,-6.103540299999963],[106.91965,-6.10434],[106.91876580000007,-6.099112399999967],[106.91626920000004,-6.098958899999957],[106.91521,-6.10051],[106.91336670000004,-6.098734699999966],[106.90926730000007,-6.098938699999962],[106.90787740000007,-6.100901],[106.91035,-6.10168],[106.91038,-6.10344],[106.90720080000006,-6.104091],[106.90692520000005,-6.108699],[106.90515630000004,-6.107000899999946],[106.90544930000004,-6.097563],[106.89261760000005,-6.097351599999968],[106.89233210000003,-6.106853299999955],[106.89069,-6.10674],[106.89089440000004,-6.097306199999935],[106.88832510000009,-6.097253199999955],[106.88797,-6.10655],[106.88668,-6.10651],[106.88697,-6.09729],[106.88445,-6.09613],[106.88377,-6.10644],[106.88222,-6.10637],[106.88170870000005,-6.093527399999971],[106.87984,-6.09854],[106.87964,-6.09431],[106.87905,-6.095],[106.87872,-6.10138],[106.8802,-6.10211],[106.87867570000009,-6.102348799999959],[106.87851,-6.10991],[106.87732,-6.11018],[106.87715,-6.10679],[106.87556,-6.11133],[106.87742,-6.10522],[106.87770520000004,-6.101598199999955],[106.876672,-6.101537699999938],[106.874816,-6.103155799999968],[106.87281490000004,-6.114389899999935],[106.87026,-6.11471],[106.87137,-6.11037],[106.86533120000007,-6.113569],[106.86615080000007,-6.119867599999964],[106.86246490000008,-6.121488699999929],[106.86472,-6.12018],[106.86485,-6.11247],[106.87206,-6.10844],[106.87282930000003,-6.104380899999967],[106.86388,-6.1116],[106.86339080000005,-6.113994899999966],[106.86128580000008,-6.114512599999955],[106.86079850000004,-6.110167199999978],[106.85764540000008,-6.110998099999961],[106.858826,-6.114435599999979],[106.85737140000003,-6.116388],[106.84731890000006,-6.120496099999968],[106.846291,-6.119304],[106.84360250000009,-6.121326499999952],[106.84335,-6.1235],[106.84071290000009,-6.123839199999964],[106.839336,-6.122594499999934],[106.84247610000006,-6.122604299999978],[106.84264,-6.12109],[106.83008790000008,-6.120906099999956],[106.82756050000006,-6.116326099999981],[106.8172,-6.1149],[106.81647250000009,-6.119910299999958],[106.81451360000005,-6.119444499999929],[106.81326,-6.12072],[106.81192470000008,-6.119190099999969],[106.8118,-6.12266],[106.80745040000005,-6.1148928],[106.80363,-6.09451],[106.80440340000007,-6.101947099999961],[106.80226320000008,-6.102331799999945],[106.80025,-6.09652],[106.79869,-6.09683],[106.8006,-6.10831],[106.79630150000008,-6.109515499999929],[106.79713160000006,-6.0950951],[106.79436820000006,-6.092965],[106.79127370000003,-6.093466599999942],[106.79034380000007,-6.108044],[106.78567960000004,-6.108132699999942],[106.78514150000007,-6.111138099999948],[106.78444990000008,-6.10859],[106.77647110000004,-6.1059998],[106.77448860000004,-6.1101027],[106.77668250000005,-6.103634099999965],[106.77203,-6.10499],[106.77165990000009,-6.103372799999931],[106.76511580000005,-6.099438099999929],[106.76424780000008,-6.102482499999951],[106.75914340000008,-6.1040542],[106.75402750000006,-6.102935899999977],[106.75031560000008,-6.099461899999937],[106.74685070000004,-6.099897099999964],[106.74499620000006,-6.1019371],[106.73578220000007,-6.099761099999967],[106.72831610000009,-6.094187499999975],[106.72631290000004,-6.091314],[106.72694370000005,-6.089639099999943],[106.72465820000008,-6.089184499999931],[106.72233330000006,-6.091892199999961],[106.71373450000004,-6.093319299999962],[106.71137910000004,-6.09595],[106.72741720000005,-6.1175809],[106.733252,-6.123161099999948],[106.75085470000005,-6.134427099999925],[106.76822680000004,-6.140689899999927],[106.77488730000005,-6.1414137],[106.77508560000007,-6.145231699999954],[106.79001070000004,-6.142329899999936],[106.80052210000008,-6.141887199999928],[106.80114,-6.133650799999941],[106.81318690000006,-6.130124199999955],[106.81503310000005,-6.1302419],[106.81674550000008,-6.137063599999976],[106.821274,-6.136870899999963],[106.83066580000008,-6.135321199999964],[106.83117690000006,-6.140411],[106.83567070000004,-6.143171799999948],[106.83711260000007,-6.146111099999928],[106.83835620000008,-6.1417847],[106.84405530000004,-6.1449857],[106.84119440000006,-6.151069699999937],[106.84356710000009,-6.153652699999952],[106.85627,-6.151831199999947],[106.859823,-6.152616099999932],[106.86116050000004,-6.150890899999979],[106.86017630000003,-6.153843499999937],[106.876877,-6.163494199999946],[106.881432,-6.1624789],[106.87880730000006,-6.166463399999941],[106.89123550000005,-6.173327099999938],[106.89643120000005,-6.177996199999939],[106.90136360000008,-6.178538599999968],[106.91008010000007,-6.182484199999976],[106.922455,-6.183112199999925],[106.92036450000006,-6.169804599999964],[106.92189080000009,-6.162368399999934],[106.93555240000006,-6.158545099999969],[106.93997110000004,-6.151422799999978],[106.94015520000005,-6.155268699999965],[106.94423690000008,-6.155086599999947],[106.94439710000006,-6.162994],[106.95157760000006,-6.163381],[106.95303470000005,-6.158399699999961],[106.95433010000005,-6.157600799999955],[106.95859290000004,-6.159534299999962],[106.95974490000003,-6.155641599999967],[106.96391850000003,-6.156266099999925],[106.97189350000008,-6.1546145],[106.97168010000007,-6.1461203],[106.97282540000003,-6.146198799999979],[106.97071030000006,-6.139853799999969],[106.96960470000005,-6.117495599999927],[106.97039180000007,-6.1045784],[106.96876540000005,-6.099796399999946],[106.96876680000008,-6.092243899999971]]]]},"properties":{"shapeName":"Kota Jakarta Utara","shapeISO":"","shapeID":"22746128B13724509604814","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.61423680000007,-1.546965099999966],[103.60608580000007,-1.546262599999977],[103.60076320000007,-1.547474899999941],[103.56624220000003,-1.573766899999953],[103.560836,-1.568692599999963],[103.554843,-1.565778],[103.55006760000003,-1.565533699999946],[103.54632590000006,-1.569315499999959],[103.54394050000008,-1.5770873],[103.54544610000005,-1.587569499999972],[103.54334030000007,-1.589772099999948],[103.53688740000007,-1.589138599999956],[103.54888730000005,-1.609458899999936],[103.53970650000008,-1.631137],[103.53938480000005,-1.645240799999954],[103.528571,-1.650245199999972],[103.52525880000007,-1.662595099999976],[103.52666540000007,-1.6766367],[103.54256720000006,-1.680355299999974],[103.55122140000009,-1.675931],[103.55880010000004,-1.679694799999936],[103.56363540000007,-1.670511599999941],[103.56820410000006,-1.665336399999944],[103.57249280000008,-1.665978899999971],[103.57605560000007,-1.663662699999975],[103.57694760000004,-1.668678399999976],[103.59438360000007,-1.673750599999948],[103.60893440000007,-1.690858899999967],[103.61444710000006,-1.691886699999941],[103.616648,-1.688949],[103.62117,-1.694957899999963],[103.62079650000004,-1.691221299999938],[103.63094330000007,-1.676428599999952],[103.62721320000009,-1.676365299999929],[103.626162,-1.672167299999956],[103.61833450000006,-1.668466899999942],[103.61875180000004,-1.666024],[103.61240590000006,-1.6659336],[103.608018,-1.659581099999969],[103.61387310000003,-1.656530799999928],[103.62670810000009,-1.66437],[103.62789770000006,-1.656424699999945],[103.63088180000005,-1.653276499999947],[103.63227080000007,-1.6560177],[103.63979430000006,-1.655135799999925],[103.64075330000009,-1.656555899999944],[103.64386920000004,-1.655158299999925],[103.64719820000005,-1.656925399999977],[103.652214,-1.656603299999972],[103.653994,-1.655787399999952],[103.65490630000005,-1.651728399999968],[103.65778590000008,-1.652001],[103.66022720000007,-1.649805799999967],[103.65863880000006,-1.644138199999929],[103.66358690000004,-1.642708699999957],[103.66586740000008,-1.639867799999934],[103.67011920000004,-1.640464899999927],[103.66921340000005,-1.6327969],[103.67309570000003,-1.6289142],[103.67468990000003,-1.628970599999946],[103.67646710000008,-1.621747],[103.68097120000004,-1.616608399999961],[103.67746570000008,-1.612873199999967],[103.66688170000003,-1.608609799999954],[103.66413370000004,-1.605859599999974],[103.65962610000008,-1.609311899999966],[103.65760730000005,-1.6089485],[103.65725640000005,-1.611035699999945],[103.655102,-1.607916699999976],[103.65473650000007,-1.6012547],[103.65693590000006,-1.596661099999949],[103.65126080000005,-1.583965099999944],[103.651631,-1.567865499999925],[103.65297140000007,-1.567831699999942],[103.65469430000007,-1.561417099999971],[103.65306850000007,-1.552071],[103.64864260000007,-1.549954],[103.62682380000007,-1.550017199999957],[103.62209090000005,-1.551157199999977],[103.61423680000007,-1.546965099999966]]]},"properties":{"shapeName":"Kota Jambi","shapeISO":"","shapeID":"22746128B21855628804941","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[140.7081594000001,-2.597139599999934],[140.7057191,-2.597043299999939],[140.70648970000002,-2.598584499999959],[140.70899420000012,-2.598070699999937],[140.7081915000001,-2.599451399999964],[140.7067145000001,-2.598937599999942],[140.70880150000005,-2.600960499999928],[140.71018220000008,-2.598391799999945],[140.7081594000001,-2.597139599999934]]],[[[140.71830020000004,-2.549801199999933],[140.7169268,-2.551842599999929],[140.7182789000001,-2.551736],[140.71830020000004,-2.549801199999933]]],[[[140.72137750000002,-2.544512699999927],[140.7194704000001,-2.544642599999975],[140.7263402000001,-2.546675],[140.72538310000004,-2.545198],[140.72137750000002,-2.544512699999927]]],[[[140.63218050000012,-2.716129499999965],[140.6334240000001,-2.722521599999936],[140.6640073000001,-2.725600399999962],[140.68954960000008,-2.720540699999958],[140.70726620000005,-2.707010699999955],[140.71695210000007,-2.706058499999926],[140.729866,-2.707206799999938],[140.75844170000005,-2.718858],[140.77591970000003,-2.721925299999953],[140.824537,-2.734150899999975],[140.88085460000002,-2.766854499999965],[140.93790840000008,-2.790747199999942],[140.9652579000001,-2.8064022],[140.999986,-2.8289057],[140.999972,-2.604344199999957],[140.9723616000001,-2.607729799999959],[140.9616291000001,-2.606707699999959],[140.95918730000005,-2.609660499999961],[140.95118050000008,-2.6126134],[140.93522370000005,-2.615168799999935],[140.9259108000001,-2.610796199999925],[140.92176540000003,-2.615736599999934],[140.9224524000001,-2.621920299999942],[140.91587590000006,-2.623627399999975],[140.9084113,-2.620185299999946],[140.8870673,-2.615175],[140.80872680000004,-2.605861599999969],[140.8024358,-2.604092199999968],[140.80146960000002,-2.6019055],[140.79816070000004,-2.6011269],[140.7964479000001,-2.598324099999957],[140.7890126000001,-2.5954824],[140.7873776,-2.596338799999955],[140.7883508000001,-2.598402],[140.7867159000001,-2.601165899999955],[140.78321230000006,-2.6014384],[140.7819667000001,-2.604474699999969],[140.78290090000007,-2.605837199999939],[140.77896920000012,-2.608211799999935],[140.780721,-2.609846799999957],[140.7846916000001,-2.607783599999948],[140.78807830000005,-2.611131399999977],[140.78857470000003,-2.614479199999948],[140.786531,-2.621097],[140.78024270000003,-2.626539899999955],[140.77237950000006,-2.628574299999968],[140.7672966,-2.627637099999959],[140.76304270000003,-2.628538299999946],[140.748075,-2.62437],[140.735395,-2.618020199999933],[140.72401190000005,-2.60945],[140.71111330000008,-2.595309399999962],[140.70931530000007,-2.6012815],[140.71153070000003,-2.5972359],[140.71069590000002,-2.600286199999971],[140.7118197000001,-2.603304399999956],[140.72025830000007,-2.606520099999955],[140.72405770000012,-2.612820099999965],[140.72787240000002,-2.613720099999966],[140.7328010000001,-2.618770099999949],[140.73780250000004,-2.62728],[140.73415350000005,-2.633078799999964],[140.7289770000001,-2.633644499999946],[140.7252873000001,-2.633294799999931],[140.71937660000003,-2.628458499999965],[140.71402010000008,-2.630045199999927],[140.70894040000007,-2.627328099999943],[140.70613990000004,-2.628495599999951],[140.703131,-2.626105099999961],[140.69995270000004,-2.625802799999974],[140.6972075000001,-2.621660599999927],[140.70761890000006,-2.618050399999959],[140.70624610000004,-2.616971],[140.70360530000005,-2.616452299999935],[140.69910950000008,-2.618757799999969],[140.69002810000006,-2.616653499999927],[140.68577820000007,-2.613307599999928],[140.69012320000002,-2.608683],[140.68927280000003,-2.606155299999955],[140.69365430000005,-2.604618099999925],[140.69436280000002,-2.603006799999946],[140.69403140000009,-2.600161399999934],[140.69099180000012,-2.598698699999943],[140.69130030000008,-2.595441899999969],[140.6897385000001,-2.594791],[140.69141270000011,-2.592253699999958],[140.693794,-2.592430399999955],[140.69364840000003,-2.590589899999941],[140.69715280000003,-2.58929],[140.69648730000006,-2.587979699999948],[140.70095560000004,-2.586868799999934],[140.698512,-2.5847763],[140.701408,-2.583244799999932],[140.6999776,-2.581337299999973],[140.70012540000005,-2.577778599999931],[140.69338890000006,-2.5743505],[140.69724010000004,-2.572620099999938],[140.6980149000001,-2.574243699999954],[140.69840610000006,-2.573284299999955],[140.70156250000002,-2.574117699999931],[140.70313440000007,-2.570707399999947],[140.70322740000006,-2.574091399999929],[140.7017065000001,-2.575809599999957],[140.7056679000001,-2.581850499999973],[140.7016833,-2.58666],[140.7069342000001,-2.586671599999931],[140.70732920000012,-2.5877636],[140.70511030000011,-2.588809099999935],[140.70924600000012,-2.5914695],[140.71045420000007,-2.590702699999952],[140.70823530000007,-2.589680399999963],[140.70835150000005,-2.5876358],[140.70858380000004,-2.589517799999953],[140.7101986,-2.589785],[140.71045420000007,-2.588611699999944],[140.711128,-2.589912799999979],[140.71318420000011,-2.588181799999973],[140.71323070000005,-2.589854699999933],[140.7112674000001,-2.5910629],[140.71378830000003,-2.591004799999951],[140.71283570000003,-2.592817],[140.71533340000008,-2.593792899999926],[140.7171340000001,-2.591667],[140.7106401000001,-2.582425499999943],[140.7090270000001,-2.573328599999968],[140.7102897000001,-2.569073499999945],[140.7129152000001,-2.567427299999963],[140.71507520000011,-2.563208599999939],[140.71696540000005,-2.563249],[140.718083,-2.558455],[140.72005410000008,-2.556948299999931],[140.7182864,-2.553511699999945],[140.7154087,-2.552471799999978],[140.71816080000008,-2.549776699999939],[140.71839110000008,-2.547571299999959],[140.714975,-2.547245499999974],[140.71335010000007,-2.544245199999978],[140.71212820000005,-2.545268699999951],[140.7076518,-2.543973799999947],[140.70665960000008,-2.538734799999929],[140.70874070000002,-2.537432099999933],[140.7116225000001,-2.539134199999978],[140.72005150000007,-2.534135],[140.7252360000001,-2.534989499999938],[140.725201,-2.528900599999929],[140.72358240000005,-2.527414799999974],[140.7269357,-2.5263623],[140.7309123000001,-2.5181973],[140.732493,-2.52486],[140.73848080000005,-2.531090699999936],[140.737814,-2.535247199999958],[140.7389919000001,-2.534595],[140.74630220000006,-2.538045699999941],[140.7482539,-2.534264],[140.7423404000001,-2.529285],[140.7422474000001,-2.5220586],[140.73817340000005,-2.513398099999961],[140.7326789000001,-2.508973199999957],[140.7299998000001,-2.500722699999926],[140.7205193000001,-2.495668399999943],[140.71984370000007,-2.492628099999934],[140.72096980000003,-2.490961499999969],[140.71667960000002,-2.492481699999928],[140.71162370000002,-2.488056399999948],[140.71265960000005,-2.486648799999955],[140.708786,-2.486682599999938],[140.7040499000001,-2.483566],[140.70010710000008,-2.484031699999946],[140.69395610000004,-2.478237299999932],[140.6876728000001,-2.480320499999948],[140.68673820000004,-2.477820699999938],[140.68481270000007,-2.477471599999944],[140.67749770000012,-2.481594799999925],[140.67329160000008,-2.480027799999959],[140.67246680000005,-2.476014099999929],[140.67070740000008,-2.474804499999948],[140.66320230000008,-2.473979799999938],[140.65764910000007,-2.477058799999952],[140.65281070000003,-2.476179099999968],[140.6249074000001,-2.53157],[140.62204320000012,-2.566820299999961],[140.6255003000001,-2.566802499999937],[140.626313,-2.5832526],[140.623573,-2.585325399999931],[140.62259910000012,-2.593957299999943],[140.61728,-2.599754399999938],[140.61408820000008,-2.6125371],[140.6211211000001,-2.614881399999945],[140.6266068000001,-2.704235899999958],[140.6312610000001,-2.711403399999938],[140.63218050000012,-2.716129499999965]]]]},"properties":{"shapeName":"Kota Jayapura","shapeISO":"","shapeID":"22746128B50071939050143","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[112.00128940000002,-7.771071],[111.99737890000006,-7.771489],[111.99642690000007,-7.774312799999961],[111.99259950000004,-7.775538399999959],[111.99063310000008,-7.781457299999943],[111.98348970000006,-7.780929899999933],[111.98226130000006,-7.788132599999926],[111.97657010000006,-7.793538599999977],[111.96926120000006,-7.791213],[111.95629880000007,-7.796742399999971],[111.95440640000004,-7.812404],[111.95781330000005,-7.819101299999943],[111.95809140000006,-7.822859599999958],[111.97499050000005,-7.8244394],[111.98500060000003,-7.827250499999934],[111.986969,-7.829600299999981],[111.98438230000005,-7.8380598],[112.00360870000009,-7.842511199999933],[112.0043793000001,-7.846183799999949],[111.99987510000005,-7.8526804],[112.01129830000002,-7.8557435],[112.01096340000004,-7.8617644],[112.0172424000001,-7.8614845],[112.01897430000008,-7.862638499999946],[112.019989,-7.866986299999951],[112.02223970000011,-7.868484499999965],[112.04241180000008,-7.871709299999964],[112.04757690000008,-7.867765899999938],[112.0557371000001,-7.871457599999928],[112.05659780000008,-7.8655763],[112.05930320000004,-7.865301099999954],[112.06666330000007,-7.868778099999929],[112.06928060000007,-7.874990899999943],[112.07018340000002,-7.872586],[112.07239240000001,-7.872756899999956],[112.07374220000008,-7.868063799999959],[112.06591790000004,-7.860404399999936],[112.06658,-7.85417],[112.0651861,-7.851977799999929],[112.06832170000007,-7.852477199999953],[112.0690833000001,-7.850847],[112.06480510000006,-7.848167599999954],[112.0677581000001,-7.849044799999945],[112.0695343000001,-7.845167099999969],[112.07756860000006,-7.8492065],[112.078695,-7.846569899999963],[112.08003580000002,-7.8470109],[112.08138930000007,-7.842675399999962],[112.0783795000001,-7.841489099999933],[112.0745396000001,-7.836504499999933],[112.07246110000006,-7.8414749],[112.07082620000006,-7.840499899999941],[112.07099910000011,-7.837490099999968],[112.06234740000002,-7.835642299999961],[112.06067660000008,-7.836919299999977],[112.05790710000008,-7.8362184],[112.05419510000002,-7.833508799999947],[112.05530640000006,-7.832812299999944],[112.05254840000009,-7.831334099999935],[112.05299580000008,-7.830210399999942],[112.05136190000007,-7.829618499999981],[112.051116,-7.831682299999954],[112.0496859000001,-7.831830899999943],[112.04901960000007,-7.830046],[112.04273160000002,-7.827258299999926],[112.04318340000009,-7.823142],[112.03329410000003,-7.818812399999956],[112.0358351000001,-7.8128296],[112.03199270000005,-7.8112692],[112.03032680000001,-7.813746499999979],[112.02859500000011,-7.8061967],[112.02484130000005,-7.802661399999977],[112.02448470000002,-7.799587499999973],[112.01596790000008,-7.795739499999968],[112.01596360000008,-7.791594699999962],[112.00921360000007,-7.790074799999957],[112.00883480000005,-7.785831499999972],[112.00619510000001,-7.782842599999981],[112.00536350000004,-7.772607799999946],[112.00128940000002,-7.771071]]]},"properties":{"shapeName":"Kota Kediri","shapeISO":"","shapeID":"22746128B16740083438744","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[122.60708810000006,-3.977121],[122.60413370000003,-3.9761491],[122.60175420000007,-3.980113099999926],[122.60255120000011,-3.980622099999948],[122.59946430000002,-3.982035099999962],[122.59935280000002,-3.983486],[122.60681280000006,-3.983144399999958],[122.6097999000001,-3.9850301],[122.61124260000008,-3.992433799999958],[122.61815250000006,-3.990849299999979],[122.61757610000006,-3.985718899999938],[122.61283530000003,-3.982884099999978],[122.61189490000004,-3.97762],[122.60708810000006,-3.977121]]],[[[122.44044860000008,-4.008071299999926],[122.44047520000004,-4.018320299999971],[122.44855930000006,-4.0241464],[122.46287270000005,-4.027510399999926],[122.470085,-4.0323197],[122.48161140000002,-4.0544134],[122.48633360000008,-4.051471],[122.5000308000001,-4.0712743],[122.51416460000007,-4.068063],[122.5068533000001,-4.083164299999964],[122.52691690000006,-4.091319099999964],[122.52876550000008,-4.090667199999928],[122.53198550000002,-4.085789],[122.54646960000002,-4.077654199999927],[122.5729583000001,-4.069033099999956],[122.57506940000007,-4.069918],[122.5756282000001,-4.082583299999953],[122.58916560000011,-4.083990799999981],[122.5963355,-4.076435199999935],[122.61582870000007,-4.025652399999956],[122.63610040000003,-4.018451099999936],[122.65107350000005,-4.002783499999964],[122.6486536000001,-4.0013836],[122.64515420000009,-4.001707099999976],[122.63981580000006,-4.005229699999973],[122.6405856,-4.003960199999938],[122.63177980000012,-4.003028299999926],[122.62871260000009,-4.005909299999928],[122.62792370000011,-4.001399799999945],[122.61928520000004,-4.003379499999937],[122.61582240000007,-3.997299799999951],[122.6135177000001,-3.996862],[122.6124301000001,-3.994600699999978],[122.60758970000006,-3.991843],[122.60761830000001,-3.989265399999965],[122.60445360000006,-3.985374899999954],[122.59972850000008,-3.984821799999963],[122.59696450000001,-3.9817072],[122.5927517,-3.980945099999929],[122.59277250000002,-3.9796887],[122.590697,-3.979256899999939],[122.58997060000002,-3.980533599999944],[122.58965650000005,-3.9783849],[122.58740190000003,-3.981490099999974],[122.585593,-3.979160599999943],[122.58326520000003,-3.978986899999938],[122.58388920000004,-3.980404699999951],[122.57968180000012,-3.98199],[122.57914890000006,-3.98097],[122.57925710000006,-3.982061899999962],[122.57506540000008,-3.982579099999953],[122.57416660000001,-3.980796199999929],[122.57276730000001,-3.980912199999977],[122.57285360000003,-3.982178699999963],[122.5663829,-3.982953899999927],[122.56092740000008,-3.984945599999946],[122.56111410000005,-3.985905499999944],[122.56046060000006,-3.984444199999928],[122.55919690000007,-3.984809599999949],[122.5600442000001,-3.985497199999941],[122.55480260000002,-3.987903899999935],[122.55301470000006,-3.992918],[122.54702630000008,-3.990009799999939],[122.53589690000001,-3.989441],[122.53706350000004,-3.983447699999942],[122.5340331000001,-3.9785],[122.53268490000005,-3.978826799999979],[122.533697,-3.976245799999958],[122.5316702,-3.974418599999979],[122.532815,-3.9726755],[122.5311071000001,-3.973077299999943],[122.5300095,-3.970046799999977],[122.53616080000006,-3.966991399999927],[122.55758460000004,-3.967062399999975],[122.56526130000009,-3.9700988],[122.57476760000009,-3.971221899999932],[122.57629180000004,-3.973597299999938],[122.58096420000004,-3.971648099999925],[122.58498710000003,-3.974425499999938],[122.585293,-3.973446099999933],[122.5872084,-3.9745389],[122.58878840000011,-3.970665099999962],[122.5920039,-3.973107299999981],[122.59232630000008,-3.976516099999969],[122.59924450000005,-3.979028199999959],[122.6030733,-3.971762699999942],[122.60862240000006,-3.970961099999954],[122.60984340000005,-3.969544599999949],[122.61089330000004,-3.966974199999925],[122.608774,-3.9628322],[122.62022680000007,-3.962035599999979],[122.62199170000008,-3.959523],[122.62520260000008,-3.9586029],[122.62613540000007,-3.949237299999936],[122.62419340000008,-3.949239899999952],[122.61715850000007,-3.949179599999979],[122.594869,-3.941210499999954],[122.5806993000001,-3.939594899999975],[122.54856970000003,-3.941882299999975],[122.53893430000005,-3.941120199999943],[122.52247310000007,-3.934649499999978],[122.50668860000007,-3.909143499999971],[122.48116450000009,-3.909149899999932],[122.468595,-3.918817799999943],[122.45180850000008,-3.940314799999953],[122.45225490000007,-3.966429],[122.44044860000008,-4.008071299999926]]]]},"properties":{"shapeName":"Kota Kendari","shapeISO":"","shapeID":"22746128B79038001583373","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[124.34068660000003,0.648358700000074],[124.35116220000009,0.655511700000034],[124.36428070000011,0.655817700000057],[124.36865840000007,0.658194600000058],[124.37481260000004,0.658462600000064],[124.3772494000001,0.661018600000034],[124.37045280000007,0.670434100000023],[124.36903980000011,0.678311400000041],[124.37144440000009,0.686972200000071],[124.36461240000006,0.69033010000004],[124.359956,0.705329400000039],[124.35721360000002,0.707860900000071],[124.35647520000009,0.713029300000073],[124.34877530000006,0.730644200000029],[124.34888080000007,0.74317510000003],[124.35618650000004,0.752126200000021],[124.35604660000001,0.755383],[124.35455730000001,0.758142600000042],[124.34726740000008,0.764017400000057],[124.34639720000007,0.768656600000043],[124.3347927000001,0.77012940000003],[124.32993780000004,0.769223600000032],[124.32053220000012,0.774527600000056],[124.31845550000003,0.769107200000064],[124.31497450000006,0.765369100000044],[124.310633,0.76294310000003],[124.30410920000008,0.762131600000032],[124.305122,0.753625200000045],[124.29284160000009,0.752187800000058],[124.28337330000011,0.74644840000002],[124.26937950000001,0.743688100000043],[124.26687240000001,0.74424810000005],[124.26559730000008,0.747775100000069],[124.26614,0.751205],[124.25725490000002,0.745049200000039],[124.258628,0.740289800000028],[124.25543430000005,0.730119600000023],[124.25667380000004,0.715751900000043],[124.2558623000001,0.708718],[124.25904550000007,0.705691400000035],[124.2707196,0.710595600000033],[124.27481050000006,0.707345900000064],[124.28274220000003,0.704307700000072],[124.28882830000009,0.698819900000046],[124.29153840000004,0.690168300000039],[124.28982750000011,0.686122700000055],[124.29396570000006,0.673541400000033],[124.29335880000008,0.65964230000003],[124.29614890000005,0.658295400000043],[124.29864020000002,0.662269200000026],[124.30139530000008,0.663221800000031],[124.3044734,0.661988800000074],[124.30684520000011,0.663364400000034],[124.30651650000004,0.66547810000003],[124.30924530000004,0.666866],[124.31011390000003,0.665847600000063],[124.3153089000001,0.667370700000049],[124.31847220000009,0.66682430000003],[124.32624940000005,0.660850100000062],[124.3259892000001,0.656744200000048],[124.32850230000008,0.652593400000057],[124.3349531,0.650971600000048],[124.33589490000008,0.648024100000043],[124.34068660000003,0.648358700000074]]]},"properties":{"shapeName":"Kota Kotamobagu","shapeISO":"","shapeID":"22746128B85795804227716","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[123.52833790000011,-10.209876099999974],[123.5312,-10.21115],[123.53428,-10.20828],[123.54591,-10.21441],[123.54979,-10.22006],[123.55253,-10.22037],[123.55687000000012,-10.2274699],[123.56608,-10.22638],[123.5700088000001,-10.224009699999954],[123.57195280000008,-10.217976799999974],[123.5741187000001,-10.217089599999952],[123.57552090000001,-10.22505659999996],[123.578497,-10.22434809999993],[123.57075,-10.24649],[123.57443,-10.25012],[123.58039,-10.2617],[123.58385,-10.27432],[123.58548,-10.28885],[123.58965,-10.2867],[123.5945200000001,-10.28691],[123.6003,-10.28922],[123.60035,-10.29159],[123.60217000000011,-10.29326],[123.60597,-10.29141],[123.6111,-10.29324],[123.61363,-10.29286],[123.62203000000011,-10.28699],[123.6252,-10.28796],[123.62988,-10.28496],[123.63222,-10.26861],[123.63907,-10.244300099999975],[123.63046,-10.24121],[123.62051,-10.23122],[123.63348,-10.22549],[123.63559,-10.222],[123.63913,-10.22137],[123.63951010000005,-10.21779],[123.66294,-10.22667],[123.66477,-10.22873],[123.66873,-10.2264],[123.66818,-10.2227],[123.66321,-10.22103],[123.65937,-10.21267],[123.65484,-10.20819],[123.6508500000001,-10.18852],[123.65507,-10.18676],[123.65865,-10.19053],[123.66187590000004,-10.187916],[123.66226340000003,-10.185491899999931],[123.66996590000008,-10.184030699999937],[123.67387950000011,-10.176925799999935],[123.67737780000004,-10.180240599999934],[123.68140570000003,-10.175444399999947],[123.6833600000001,-10.16521],[123.6757,-10.16466],[123.66707,-10.16623],[123.66248460000008,-10.15893129999995],[123.65944710000008,-10.15727819999995],[123.66716,-10.15359],[123.67333,-10.15374],[123.67394,-10.15238],[123.68283,-10.15134],[123.6796,-10.14835],[123.68083,-10.14433],[123.68281,-10.14301],[123.68306,-10.13987],[123.6784,-10.1387],[123.67888,-10.13722],[123.67650010000011,-10.13571339999993],[123.67534810000006,-10.132451],[123.6722635000001,-10.129570399999977],[123.6678568000001,-10.133631099999945],[123.66084500000011,-10.1334121],[123.65002470000002,-10.145899399999962],[123.64448010000001,-10.146367],[123.64100910000002,-10.144139099999961],[123.6326041000001,-10.143679299999974],[123.62974990000009,-10.140798899999936],[123.62479180000003,-10.140342199999964],[123.59576680000009,-10.154523499999925],[123.592136,-10.152301799999975],[123.58949340000004,-10.153485499999931],[123.59025680000002,-10.155126799999948],[123.58834230000002,-10.156791],[123.58215470000005,-10.1571033],[123.57007310000006,-10.16528649999998],[123.568785,-10.168973799999947],[123.56301370000006,-10.172496599999931],[123.55829920000008,-10.172657799999968],[123.55658670000003,-10.169740599999955],[123.55213770000012,-10.168495],[123.54714150000007,-10.16883649999994],[123.54351140000006,-10.171657],[123.53478990000008,-10.174002899999948],[123.53107460000001,-10.177673199999958],[123.52797680000003,-10.186707799999965],[123.52745040000002,-10.193951899999945],[123.52872450000007,-10.194515499999966],[123.52716050000004,-10.195844],[123.52890760000003,-10.196749],[123.53022750000002,-10.201924599999927],[123.52833790000011,-10.209876099999974]]]},"properties":{"shapeName":"Kota Kupang","shapeISO":"","shapeID":"22746128B4199303960453","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[98.04713530000004,4.545522],[98.04324110000005,4.545292600000039],[98.04038640000005,4.541798400000062],[98.04153550000007,4.536605400000042],[98.04998860000006,4.538415200000031],[98.04713530000004,4.545522]]],[[[98.06679340000005,4.551074700000072],[98.06484460000007,4.553530500000022],[98.06401390000008,4.550587500000063],[98.06647720000007,4.550464300000044],[98.06528890000004,4.546400300000073],[98.06928070000004,4.548350700000071],[98.06679340000005,4.551074700000072]]],[[[98.07932,4.512530100000049],[98.07871530000006,4.519367600000066],[98.07733780000007,4.52139],[98.07992710000008,4.52411840000002],[98.08014760000003,4.527816200000075],[98.08232230000004,4.529788400000029],[98.08381360000004,4.529100100000051],[98.08573210000009,4.533135200000061],[98.08129830000007,4.540378300000043],[98.07182080000007,4.547484500000053],[98.06790650000005,4.545450600000038],[98.06338390000008,4.546488300000021],[98.05499120000007,4.535877],[98.03965660000006,4.528175300000044],[98.03576880000008,4.53341690000002],[98.03914550000007,4.545429400000046],[98.03784020000006,4.54670550000003],[98.03432570000007,4.543325300000049],[98.02688220000005,4.542017700000031],[98.02738130000006,4.539618],[98.02492310000008,4.53706],[98.02058170000004,4.537076],[98.01943790000007,4.538344300000063],[98.00149480000005,4.530645500000048],[97.99515730000007,4.532812500000034],[97.98961,4.531713700000068],[97.98253940000006,4.53627160000002],[97.98590910000007,4.539606200000037],[97.98443490000005,4.546439],[97.97559630000006,4.55774880000007],[97.97606410000009,4.553812100000073],[97.98110790000004,4.543463200000076],[97.96925040000008,4.531355100000042],[97.96223060000005,4.52665920000004],[97.96254960000005,4.528322100000025],[97.955012,4.535129100000063],[97.95078010000003,4.533905300000072],[97.950633,4.531800400000066],[97.95232440000007,4.530535900000075],[97.95093570000006,4.529452500000048],[97.94505970000006,4.529157200000043],[97.94490710000008,4.527381400000024],[97.93560830000007,4.528383],[97.93678,4.532872],[97.93194810000006,4.533970100000033],[97.92148880000008,4.53229790000006],[97.91665890000007,4.529452800000058],[97.91296320000004,4.521327300000053],[97.90796510000007,4.518991100000051],[97.90863190000005,4.51753130000003],[97.90461630000004,4.512041100000033],[97.89756090000009,4.506310700000029],[97.89681530000007,4.502451600000029],[97.89087230000007,4.493194500000072],[97.88867020000004,4.477139900000054],[97.87740620000005,4.458184500000073],[97.88077760000004,4.45669810000004],[97.88168420000005,4.453431600000044],[97.88682180000006,4.448340300000041],[97.90398760000005,4.448264300000062],[97.90503080000008,4.449019300000032],[97.90409210000007,4.450328200000058],[97.907848,4.453070900000057],[97.90944050000007,4.45152980000006],[97.907331,4.452423100000033],[97.90673210000006,4.451150600000062],[97.90897570000004,4.44799],[97.90978,4.450869800000021],[97.91452230000004,4.448754],[97.91236280000004,4.451875],[97.91743450000007,4.45245970000002],[97.91864830000009,4.451310300000046],[97.91818440000009,4.446596900000031],[97.922646,4.437963900000057],[97.925444,4.434979],[97.93572150000006,4.432480600000076],[97.94226420000007,4.437971400000038],[97.96169240000006,4.442171200000075],[97.96692310000009,4.445125700000062],[97.96648620000008,4.442021700000055],[97.97111570000004,4.43820560000006],[97.96832350000005,4.42607380000004],[97.97340440000005,4.422659700000054],[97.97854970000009,4.423119300000053],[97.97920660000005,4.421344],[97.981664,4.421260800000027],[97.98180860000008,4.41436310000006],[97.991641,4.41209740000005],[97.99450470000005,4.408978],[97.99994750000008,4.409535700000049],[98.00051690000004,4.407652],[98.00372170000009,4.411822400000062],[98.00941230000006,4.412734900000032],[98.01257740000005,4.414984400000037],[98.01503120000007,4.414401100000021],[98.01945560000007,4.417563900000061],[98.02376920000006,4.418138700000043],[98.02416250000005,4.415778800000055],[98.02546610000007,4.415952700000048],[98.02567510000006,4.40825940000002],[98.02822290000006,4.412889200000052],[98.03143060000008,4.413614100000075],[98.02861650000006,4.41916980000002],[98.03501390000008,4.421540400000026],[98.04045320000006,4.425917800000036],[98.04082930000004,4.428354100000035],[98.03906810000007,4.430889900000068],[98.03990430000005,4.435115200000041],[98.03631280000008,4.438020100000074],[98.03619550000008,4.439921200000072],[98.04132810000004,4.443874600000072],[98.04380190000006,4.448140200000068],[98.045992,4.455642700000055],[98.04590480000007,4.46369240000007],[98.04857330000004,4.468195900000069],[98.04565880000007,4.470364700000061],[98.03954870000007,4.467199100000073],[98.03651520000005,4.471901700000046],[98.03567920000006,4.476714300000026],[98.036858,4.479575500000067],[98.04786950000005,4.482467200000031],[98.05677390000005,4.481115800000055],[98.058739,4.478392400000075],[98.061606,4.478396100000055],[98.06371210000003,4.483396400000061],[98.06250070000004,4.486726500000032],[98.06686760000008,4.493849800000021],[98.06142060000008,4.505352200000061],[98.06216930000005,4.509896400000059],[98.06714610000006,4.512174400000049],[98.07932,4.512530100000049]]],[[[98.06132970000004,4.555864],[98.063585,4.557540500000073],[98.06282380000005,4.558916500000066],[98.055832,4.561779100000024],[98.05613980000004,4.558350200000064],[98.05942870000007,4.555256],[98.06132970000004,4.555864]]]]},"properties":{"shapeName":"Kota Langsa","shapeISO":"","shapeID":"22746128B48861747960466","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[97.17727210000004,5.142118200000027],[97.16291630000006,5.145616100000041],[97.14854010000005,5.153137400000048],[97.14760190000004,5.151970500000061],[97.14541710000003,5.156126700000073],[97.142536,5.155621100000076],[97.13998190000007,5.165378700000076],[97.13349230000006,5.175007200000039],[97.13610720000008,5.173742300000072],[97.13958670000005,5.16913930000004],[97.14260190000005,5.173666900000057],[97.14825210000004,5.173834100000022],[97.14588810000004,5.170066900000052],[97.147642,5.166083600000036],[97.14886650000005,5.168524400000024],[97.15058760000005,5.166462200000069],[97.15400290000008,5.176175300000068],[97.15343340000004,5.181188200000065],[97.14952050000005,5.190840100000059],[97.14112350000005,5.200303500000075],[97.11866410000005,5.211771100000021],[97.11640360000007,5.214157100000023],[97.11704660000004,5.216595300000051],[97.10862040000006,5.220419400000026],[97.10739650000005,5.214942300000075],[97.11121750000007,5.213128300000051],[97.10985510000006,5.21031],[97.10083580000008,5.214504800000043],[97.09954560000006,5.217553900000041],[97.09630390000007,5.218317400000046],[97.09601540000006,5.220039400000076],[97.09721190000005,5.22260540000002],[97.09949160000008,5.223229400000037],[97.10359940000006,5.221534100000042],[97.10435270000005,5.224100600000043],[97.10316990000007,5.224983500000064],[97.08842590000006,5.228215100000057],[97.07534650000008,5.232938800000056],[97.06436060000004,5.234766600000057],[97.04650360000005,5.241348],[97.03694160000003,5.22958680000005],[97.03722430000005,5.222747300000037],[97.03476950000004,5.219385600000066],[97.03867950000006,5.216170500000032],[97.03682280000004,5.213309300000049],[97.02731570000003,5.210516300000052],[97.025976,5.208765],[97.03106170000007,5.204711700000075],[97.02804640000005,5.198620100000028],[97.02974620000003,5.197324900000069],[97.04535320000008,5.198462300000074],[97.05272920000004,5.192991800000073],[97.05455340000003,5.185881],[97.06074840000008,5.178306700000064],[97.05664050000007,5.170141600000022],[97.060569,5.164902900000072],[97.06605920000004,5.158832],[97.07130490000009,5.157237],[97.08050750000007,5.157178200000033],[97.08557090000005,5.147718600000076],[97.09438410000007,5.140385500000036],[97.10790920000005,5.125578500000074],[97.10123160000006,5.114446600000065],[97.10164670000006,5.109615800000029],[97.10563870000004,5.106371500000023],[97.11748340000008,5.104060300000071],[97.124869,5.099348700000064],[97.12875230000009,5.095404700000074],[97.13005940000005,5.090657700000065],[97.13550510000005,5.091695600000037],[97.14601430000005,5.090018800000053],[97.156336,5.083704200000057],[97.17513220000006,5.082686800000033],[97.17938420000007,5.083705200000054],[97.17682970000004,5.092048800000043],[97.17718140000005,5.098731300000054],[97.175043,5.100073300000076],[97.17407690000005,5.103834100000029],[97.17616190000007,5.114935400000036],[97.17776520000007,5.115220700000066],[97.17864960000009,5.119791200000066],[97.17665050000005,5.121190500000068],[97.17727210000004,5.142118200000027]]]},"properties":{"shapeName":"Kota Lhokseumawe","shapeISO":"","shapeID":"22746128B77253086412816","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[102.96596140000008,-3.3620911],[102.97037950000004,-3.260749799999928],[102.95629690000004,-3.259542599999975],[102.94988160000008,-3.262578899999937],[102.94051010000004,-3.262444499999958],[102.93777840000007,-3.261208],[102.93791260000006,-3.258369899999934],[102.94112820000004,-3.255151099999978],[102.94833290000008,-3.2534602],[102.94931340000005,-3.250593399999957],[102.94662670000008,-3.246464499999945],[102.95083070000004,-3.246652799999936],[102.95601480000005,-3.237840799999958],[102.95606170000008,-3.235434099999964],[102.94623890000008,-3.232681099999979],[102.94465510000003,-3.226497499999937],[102.94758240000004,-3.217959],[102.94090510000007,-3.2175497],[102.93696690000007,-3.212484699999948],[102.93532380000005,-3.206225699999948],[102.92767380000004,-3.199380299999973],[102.92853240000005,-3.195033099999932],[102.92252290000005,-3.194217],[102.91621020000008,-3.190554099999929],[102.91785560000005,-3.187109699999951],[102.91716110000004,-3.182936899999959],[102.91898440000006,-3.179293199999961],[102.91915940000007,-3.174376199999926],[102.92314250000004,-3.172267499999975],[102.92383840000008,-3.1696398],[102.91015390000007,-3.161417399999948],[102.90031770000007,-3.157993899999951],[102.88526190000005,-3.154148899999939],[102.88106080000006,-3.156668199999956],[102.86907980000007,-3.139155399999936],[102.86432480000008,-3.135610499999927],[102.86030020000004,-3.129259799999943],[102.85210860000007,-3.135689399999933],[102.84478380000007,-3.145685399999934],[102.839667,-3.147472099999959],[102.83607990000007,-3.151316],[102.83221680000008,-3.164916],[102.83213340000003,-3.174979299999961],[102.82504130000007,-3.173578799999973],[102.81814210000005,-3.174158],[102.81281920000004,-3.174938399999974],[102.81044920000005,-3.177308499999981],[102.81142710000006,-3.180873299999973],[102.81003030000005,-3.188985299999956],[102.81131060000007,-3.194652899999937],[102.80692250000004,-3.198309399999971],[102.805699,-3.201483799999949],[102.80861140000007,-3.205155899999966],[102.81174070000009,-3.221292399999925],[102.80856810000006,-3.2254402],[102.80780820000007,-3.231626499999948],[102.81602040000007,-3.2364167],[102.79760230000005,-3.254355],[102.79415280000006,-3.252769899999976],[102.78933490000009,-3.254915299999936],[102.78901550000006,-3.257438599999944],[102.77860270000008,-3.258151799999951],[102.77990020000004,-3.265483599999925],[102.778596,-3.268489199999976],[102.77472580000006,-3.269881599999962],[102.77207720000007,-3.267872],[102.76942050000008,-3.269523299999946],[102.76401030000005,-3.269209899999964],[102.76575380000008,-3.273793499999954],[102.75834920000005,-3.280616299999963],[102.75321680000008,-3.283361599999978],[102.76046320000006,-3.2836779],[102.76236650000004,-3.282481],[102.76888060000005,-3.283964],[102.77312770000003,-3.280442],[102.77539330000008,-3.281008399999962],[102.77981110000007,-3.287351899999976],[102.78875990000006,-3.288031499999931],[102.79068560000007,-3.289617399999941],[102.79612290000006,-3.306042499999933],[102.79600960000005,-3.311366499999963],[102.79884150000004,-3.321108299999935],[102.80903640000008,-3.330510199999935],[102.81311440000007,-3.336627199999953],[102.81775870000007,-3.333568699999944],[102.83282450000007,-3.333455399999934],[102.83486350000004,-3.3339085],[102.83475020000009,-3.341384799999958],[102.83599620000007,-3.3420644],[102.85151510000009,-3.341158199999938],[102.85683910000006,-3.344669799999963],[102.86439170000006,-3.343510699999968],[102.87000480000006,-3.344501199999968],[102.87924980000008,-3.333605299999931],[102.89477040000008,-3.328025399999945],[102.89147050000008,-3.336789],[102.886591,-3.340753199999938],[102.88293490000007,-3.347151399999973],[102.89100630000007,-3.360590899999977],[102.88572070000004,-3.365747399999975],[102.89235210000004,-3.375901399999975],[102.89985810000007,-3.376150699999926],[102.90199080000008,-3.377397099999939],[102.90830580000005,-3.3766493],[102.91007850000005,-3.3782834],[102.91428850000005,-3.375735299999974],[102.91655970000005,-3.372217699999965],[102.92378880000007,-3.370140399999968],[102.92293020000005,-3.368423099999973],[102.92852510000006,-3.368810899999971],[102.93157180000009,-3.370528099999945],[102.93389840000003,-3.368146099999933],[102.93489550000004,-3.369392499999947],[102.939798,-3.368783199999939],[102.93796990000004,-3.366844299999968],[102.94259540000007,-3.363936099999933],[102.94307190000006,-3.366329499999949],[102.94632510000008,-3.365000399999929],[102.94730030000005,-3.366130799999951],[102.948741,-3.362961299999938],[102.95033560000007,-3.364537399999961],[102.95244240000005,-3.363382399999978],[102.95574480000005,-3.363936499999966],[102.95765090000003,-3.360412499999939],[102.95809420000006,-3.362894799999935],[102.95906940000003,-3.361520699999971],[102.96093120000006,-3.362296399999934],[102.96144090000007,-3.360589799999957],[102.96253160000003,-3.3622417],[102.96372380000008,-3.360900099999981],[102.96457510000005,-3.3641418],[102.96596140000008,-3.3620911]]]},"properties":{"shapeName":"Kota Lubuklinggau","shapeISO":"","shapeID":"22746128B23040478620628","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[111.51173360000007,-7.674067199999968],[111.50698490000008,-7.672578599999952],[111.50581110000007,-7.676564199999973],[111.50795720000008,-7.677109299999927],[111.50762810000003,-7.680564299999958],[111.50981910000007,-7.679329299999949],[111.51173360000007,-7.674067199999968]]],[[[111.51098210000004,-7.659417799999972],[111.51510620000005,-7.662032599999975],[111.51971410000004,-7.661646599999926],[111.52800390000004,-7.6642215],[111.53288330000004,-7.663309099999935],[111.53332320000004,-7.660216499999933],[111.54170650000009,-7.659029],[111.54150610000005,-7.651810599999976],[111.538759,-7.651132599999926],[111.53901130000008,-7.648385899999937],[111.53974110000007,-7.646258599999953],[111.54596220000008,-7.647600099999977],[111.54621810000003,-7.646287499999971],[111.54924570000009,-7.6456379],[111.55139060000005,-7.642032099999938],[111.55023450000004,-7.635887399999945],[111.55081770000004,-7.634081499999979],[111.55322460000008,-7.633652499999926],[111.55246890000006,-7.629331699999966],[111.554239,-7.628228399999955],[111.55303480000003,-7.6264297],[111.55103160000004,-7.628073499999971],[111.54833440000004,-7.626633],[111.55213620000006,-7.6217874],[111.55314510000005,-7.614108499999929],[111.554651,-7.616013099999975],[111.55527830000005,-7.613554199999953],[111.55676230000006,-7.613726799999938],[111.55860120000006,-7.608204799999953],[111.55731460000004,-7.604027],[111.55899960000005,-7.596533299999976],[111.55126380000007,-7.594821799999977],[111.54594420000006,-7.5993618],[111.54027890000009,-7.599251799999934],[111.53900770000007,-7.6013342],[111.53666860000004,-7.599026],[111.53475980000007,-7.602069],[111.53261920000006,-7.6027476],[111.53189250000008,-7.600933099999963],[111.53409570000008,-7.600267799999926],[111.53371720000007,-7.598503199999925],[111.53121320000008,-7.600181],[111.52115560000004,-7.5973495],[111.51819190000003,-7.599786199999926],[111.51757270000007,-7.603036799999927],[111.51358680000004,-7.603006299999947],[111.51380120000005,-7.606187899999952],[111.51172750000006,-7.608152899999936],[111.50111060000006,-7.606401],[111.50046540000005,-7.611309899999981],[111.50237760000005,-7.619964299999936],[111.500278,-7.623289499999942],[111.49866560000004,-7.623268],[111.49802670000008,-7.625673],[111.50042160000004,-7.626262399999973],[111.49601980000006,-7.638004],[111.49915360000006,-7.640774599999929],[111.49975510000007,-7.639556],[111.50322140000009,-7.639244599999927],[111.50739710000005,-7.640987799999948],[111.508224,-7.636577899999963],[111.51125930000006,-7.635243699999933],[111.511674,-7.648936299999946],[111.51234430000005,-7.65245],[111.50992250000007,-7.657659],[111.51098210000004,-7.659417799999972]]]]},"properties":{"shapeName":"Kota Madiun","shapeISO":"","shapeID":"22746128B28239898238223","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[110.22557830000005,-7.437707399999965],[110.219223,-7.438693499999943],[110.21774280000005,-7.441457399999933],[110.21884670000009,-7.444187499999941],[110.21627120000005,-7.4435931],[110.21178090000006,-7.446691699999974],[110.213888,-7.451393199999927],[110.21173860000005,-7.453208899999936],[110.21204890000007,-7.455727],[110.209977,-7.4598061],[110.21189660000005,-7.462306399999932],[110.20879190000005,-7.471403499999951],[110.20988040000009,-7.474056399999938],[110.20829610000004,-7.476573499999972],[110.20629880000007,-7.476802299999974],[110.20607,-7.479667199999938],[110.20764580000008,-7.481817199999966],[110.20437560000005,-7.488346199999967],[110.20151520000007,-7.490580499999965],[110.20288090000008,-7.492506499999934],[110.20609280000008,-7.492179399999941],[110.20193480000006,-7.498651499999937],[110.20406340000005,-7.502532899999949],[110.20665130000003,-7.504044],[110.21017260000008,-7.5007226],[110.21426310000004,-7.504653],[110.21284420000006,-7.506933699999934],[110.21440890000008,-7.507424299999968],[110.21562270000004,-7.507459599999947],[110.21819980000004,-7.501435099999981],[110.22033190000008,-7.501438899999926],[110.21956350000005,-7.502667699999961],[110.22179370000003,-7.503702299999929],[110.22052480000008,-7.505362399999967],[110.224205,-7.503138499999977],[110.23796080000005,-7.505313399999977],[110.23358920000004,-7.499504499999944],[110.23737340000008,-7.493557399999929],[110.23556350000007,-7.489472599999942],[110.23714450000006,-7.488194899999939],[110.235252,-7.485699099999977],[110.23637390000005,-7.4840803],[110.23447420000008,-7.483157099999971],[110.23468020000007,-7.480174],[110.23276520000007,-7.479356299999949],[110.23332210000007,-7.4782924],[110.23175810000004,-7.477330599999959],[110.22732540000004,-7.466367199999979],[110.22885130000009,-7.465862199999947],[110.22737120000005,-7.465330599999959],[110.22875210000007,-7.464214299999981],[110.22863770000004,-7.4609985],[110.23012540000008,-7.461054299999944],[110.22873690000006,-7.457100899999944],[110.23005680000006,-7.455341799999928],[110.22825570000003,-7.453547],[110.22783660000005,-7.449327399999959],[110.23094180000004,-7.445650099999966],[110.22737120000005,-7.442626399999938],[110.22809850000004,-7.438407799999936],[110.22557830000005,-7.437707399999965]]]},"properties":{"shapeName":"Kota Magelang","shapeISO":"","shapeID":"22746128B39681053581775","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[119.26546230000008,-5.145524499999965],[119.26248420000002,-5.145986],[119.26376190000008,-5.151345899999967],[119.262782,-5.153341099999977],[119.2669691000001,-5.146929899999975],[119.26546230000008,-5.145524499999965]]],[[[119.38932380000006,-5.131033199999933],[119.38983840000003,-5.137],[119.393221,-5.139132099999927],[119.39403230000005,-5.137542699999926],[119.3905042,-5.135604],[119.38932380000006,-5.131033199999933]]],[[[119.40052430000003,-5.113421499999959],[119.40012850000005,-5.115462799999932],[119.4012143000001,-5.114630799999929],[119.40052430000003,-5.113421499999959]]],[[[119.28785760000005,-5.102567799999974],[119.28554820000011,-5.1025505],[119.2841082000001,-5.104412799999977],[119.28386630000011,-5.107746299999974],[119.28537270000004,-5.110335799999973],[119.2897944,-5.104875899999968],[119.28785760000005,-5.102567799999974]]],[[[119.40307610000002,-5.0867937],[119.40067890000012,-5.086336499999959],[119.40023660000008,-5.088640699999928],[119.40008980000005,-5.090903799999978],[119.40251970000008,-5.092589799999928],[119.39759950000007,-5.095822899999973],[119.39999870000008,-5.096816899999965],[119.40101360000006,-5.100711899999965],[119.40422980000005,-5.101632199999926],[119.40648920000001,-5.098147],[119.4050380000001,-5.094842099999937],[119.40612140000007,-5.094400199999939],[119.4059956000001,-5.087531499999955],[119.40307610000002,-5.0867937]]],[[[119.31796870000005,-5.089411799999937],[119.31988650000005,-5.08742],[119.32233440000005,-5.079857599999968],[119.3185830000001,-5.076654899999937],[119.3161874000001,-5.078335899999956],[119.31515990000003,-5.083228299999973],[119.31796870000005,-5.089411799999937]]],[[[119.41022320000002,-5.077639599999941],[119.40608590000011,-5.076782499999979],[119.4033922000001,-5.079803899999945],[119.4034180000001,-5.082577199999946],[119.40814460000001,-5.0830581],[119.41193010000006,-5.081061099999943],[119.411686,-5.078117199999951],[119.41022320000002,-5.077639599999941]]],[[[119.41003500000011,-5.07438],[119.41101890000004,-5.072008199999971],[119.40825390000009,-5.073076],[119.41003500000011,-5.07438]]],[[[119.4047567,-5.075122799999974],[119.4095559000001,-5.069139299999961],[119.40463860000011,-5.065885699999967],[119.40272950000008,-5.070502599999941],[119.40468510000005,-5.072818199999972],[119.40338010000005,-5.075046599999951],[119.4047567,-5.075122799999974]]],[[[119.519153,-5.165576499999929],[119.51526830000012,-5.163158899999928],[119.51355580000006,-5.165368699999931],[119.51348680000001,-5.162116399999945],[119.5019512,-5.162034499999947],[119.49627450000003,-5.153606799999977],[119.49362190000011,-5.152697199999977],[119.49324,-5.150674899999956],[119.498944,-5.150976899999932],[119.50230090000002,-5.146501099999966],[119.50792430000001,-5.151442699999961],[119.51066850000007,-5.146772399999975],[119.51796280000008,-5.150467799999944],[119.52099710000005,-5.147417099999927],[119.52131040000006,-5.143407099999934],[119.5276364,-5.137014099999931],[119.528342,-5.132359099999974],[119.53609470000004,-5.130805299999963],[119.53943310000011,-5.124413],[119.54031180000004,-5.116820099999927],[119.54280810000012,-5.11146],[119.54198480000002,-5.106570499999975],[119.5387124,-5.104254799999978],[119.54047620000006,-5.103442799999925],[119.54087330000004,-5.100694699999963],[119.53893750000009,-5.099863],[119.53743660000009,-5.093725],[119.54135420000011,-5.083405899999946],[119.53807720000009,-5.079822899999954],[119.53854350000006,-5.078106099999957],[119.537143,-5.077763199999936],[119.5362785000001,-5.073587499999974],[119.53255080000008,-5.071920699999964],[119.52772510000011,-5.063995499999976],[119.51607540000009,-5.062298399999975],[119.5138429000001,-5.0646625],[119.5137046000001,-5.068019599999957],[119.50915370000007,-5.069240799999932],[119.50777990000006,-5.067618899999957],[119.50490470000011,-5.067365799999948],[119.5018361000001,-5.069469699999956],[119.49756780000007,-5.066769699999952],[119.49543430000006,-5.067246799999964],[119.49484280000001,-5.063478199999963],[119.49415590000001,-5.065319599999953],[119.492534,-5.065462699999955],[119.49297280000008,-5.066931899999929],[119.48846010000011,-5.063258799999971],[119.489004,-5.065195499999959],[119.48789720000002,-5.065768],[119.486304,-5.064155599999935],[119.48753470000008,-5.061427],[119.48593190000008,-5.062715],[119.48459130000003,-5.059553],[119.47800280000001,-5.058988399999976],[119.47110180000004,-5.065378399999929],[119.46615740000004,-5.077978199999961],[119.4612988,-5.083434799999964],[119.45876520000002,-5.082798799999978],[119.45060160000003,-5.086230799999953],[119.4467241000001,-5.085477399999945],[119.44992150000007,-5.089868099999933],[119.44955190000007,-5.096354099999928],[119.45371870000008,-5.100543],[119.4514984000001,-5.102459499999952],[119.44789460000004,-5.102753799999959],[119.44663960000003,-5.101942299999962],[119.44785190000005,-5.101254099999949],[119.44545140000002,-5.100247599999932],[119.43847140000003,-5.102957099999969],[119.43719940000005,-5.105650399999945],[119.43655970000009,-5.104512599999964],[119.42874540000003,-5.104799399999933],[119.42500970000003,-5.107174199999974],[119.4269624000001,-5.10906],[119.42298590000007,-5.111172899999929],[119.42189110000004,-5.111546299999929],[119.42092050000008,-5.109866799999963],[119.42393520000007,-5.107537399999956],[119.4182714000001,-5.110242],[119.41865960000007,-5.111594499999967],[119.41505740000002,-5.112363799999969],[119.4145737,-5.110667399999954],[119.4170061000001,-5.108053299999938],[119.41448,-5.110605299999975],[119.4145208000001,-5.112111599999935],[119.41276320000009,-5.111191299999973],[119.41262680000011,-5.112317599999926],[119.40926800000011,-5.113194899999939],[119.4064555000001,-5.125719],[119.40762290000009,-5.126296599999932],[119.40520620000007,-5.126844],[119.40174880000006,-5.1330128],[119.40405040000007,-5.132637],[119.4039474000001,-5.133910899999933],[119.40264530000002,-5.133804399999974],[119.40385050000009,-5.134109699999954],[119.402887,-5.135942099999966],[119.40386380000007,-5.135677],[119.40330460000007,-5.136784399999954],[119.40801580000004,-5.144859599999961],[119.39976370000011,-5.158176499999968],[119.39904550000006,-5.156859699999927],[119.40201040000011,-5.153486799999939],[119.40027390000012,-5.149658899999963],[119.40309700000012,-5.146533799999929],[119.40413920000003,-5.146912099999952],[119.40372050000008,-5.1444155],[119.40068470000006,-5.1466147],[119.39603880000004,-5.155739899999958],[119.38882680000006,-5.161683],[119.39034460000005,-5.158203899999933],[119.38864420000004,-5.159442299999967],[119.38683910000009,-5.168067299999962],[119.38714670000002,-5.183630499999936],[119.37869920000003,-5.195021699999927],[119.382408,-5.204144399999961],[119.38029050000011,-5.205255299999976],[119.38247520000004,-5.2046037],[119.38415020000002,-5.209475],[119.38374990000011,-5.2144387],[119.39210260000004,-5.217500899999948],[119.39187530000004,-5.226264599999979],[119.395525,-5.228574599999945],[119.3981463,-5.2325166],[119.40126380000004,-5.233322599999951],[119.40509410000004,-5.225453699999946],[119.40466860000004,-5.217766499999925],[119.40737750000005,-5.213681099999974],[119.40760180000007,-5.210301299999969],[119.4103411000001,-5.210134399999959],[119.41107840000006,-5.207717],[119.409614,-5.2031402],[119.40707980000002,-5.202936399999942],[119.40507410000009,-5.200542799999937],[119.40015890000006,-5.199171099999944],[119.39768990000005,-5.200165699999957],[119.3966292,-5.198059899999976],[119.39358590000006,-5.1989294],[119.39071500000011,-5.196988599999941],[119.390742,-5.193176799999947],[119.3941804000001,-5.192849199999955],[119.396192,-5.190947699999981],[119.39518890000011,-5.187716599999931],[119.3965439000001,-5.186530299999959],[119.40596080000012,-5.186046699999963],[119.40587730000004,-5.184364799999969],[119.408034,-5.182681299999956],[119.41353360000005,-5.191817799999967],[119.41948330000002,-5.194577899999956],[119.42323130000011,-5.194274399999927],[119.43352360000006,-5.189608699999951],[119.4391485000001,-5.192414499999927],[119.44111540000006,-5.188273399999957],[119.45485420000011,-5.191529799999955],[119.46110990000011,-5.194583],[119.46357340000009,-5.177082599999949],[119.47041910000007,-5.179091899999946],[119.47605350000003,-5.184301099999971],[119.48617840000009,-5.189293899999939],[119.48658120000005,-5.190947699999981],[119.489357,-5.191400299999941],[119.49252150000007,-5.189931],[119.51295010000001,-5.194948699999941],[119.5138677000001,-5.193157199999973],[119.51585090000003,-5.192881899999975],[119.51503470000011,-5.187162099999966],[119.51643220000005,-5.182522699999936],[119.51325810000003,-5.180553699999962],[119.51367330000005,-5.178782099999978],[119.511656,-5.176558299999954],[119.51484120000009,-5.173236499999973],[119.5150734,-5.170321699999931],[119.51879990000009,-5.169085],[119.519153,-5.165576499999929]]],[[[119.32290300000011,-5.055858099999966],[119.32438980000006,-5.053985599999976],[119.3215394,-5.052536299999929],[119.32129010000006,-5.054841],[119.32290300000011,-5.055858099999966]]],[[[119.35468580000008,-5.055170799999928],[119.35650590000012,-5.053527499999973],[119.35448240000005,-5.051690899999926],[119.35284540000009,-5.054428],[119.35468580000008,-5.055170799999928]]],[[[119.428847,-5.058366099999944],[119.43093370000008,-5.056866899999932],[119.42697540000006,-5.050771699999927],[119.42278750000003,-5.051528599999926],[119.42186210000011,-5.054605199999969],[119.42354440000008,-5.057979299999943],[119.428847,-5.058366099999944]]],[[[119.27298780000001,-5.050878199999943],[119.2705820000001,-5.050329899999952],[119.2706409000001,-5.053642699999955],[119.27370580000002,-5.052871599999946],[119.2741655000001,-5.050717899999938],[119.27298780000001,-5.050878199999943]]],[[[119.27575350000006,-5.043326],[119.27365120000002,-5.042881199999954],[119.27289560000008,-5.046997],[119.277533,-5.045800799999938],[119.27575350000006,-5.043326]]],[[[119.33128030000012,-5.049869799999954],[119.33183640000004,-5.045293899999933],[119.32906490000005,-5.041597799999977],[119.32465730000001,-5.041514199999938],[119.3220768000001,-5.043014899999946],[119.321381,-5.045557499999973],[119.32358670000008,-5.047312199999965],[119.32293620000007,-5.049737],[119.32470410000008,-5.050065099999927],[119.32424910000009,-5.052344699999935],[119.32581320000008,-5.0547525],[119.33031210000001,-5.054673099999945],[119.33182240000008,-5.051784099999963],[119.33128030000012,-5.049869799999954]]],[[[119.42315190000011,-5.044274],[119.41988730000003,-5.040923899999939],[119.41826110000011,-5.040896],[119.4190933000001,-5.046055199999955],[119.42315190000011,-5.044274]]],[[[119.41257770000004,-5.0375529],[119.41388350000011,-5.036029599999949],[119.4122192000001,-5.035366899999929],[119.41068410000003,-5.037053799999967],[119.41257770000004,-5.0375529]]],[[[119.32217450000007,-5.036125899999945],[119.32105940000008,-5.034727399999952],[119.3206934000001,-5.035977499999944],[119.32217450000007,-5.036125899999945]]],[[[119.27656550000006,-5.032092399999954],[119.2746648000001,-5.031323199999974],[119.27376540000012,-5.032323899999938],[119.27458030000003,-5.033521899999926],[119.27464960000009,-5.032228499999974],[119.27640240000005,-5.032887399999936],[119.27561960000003,-5.035624399999961],[119.27409180000006,-5.03611],[119.27607050000006,-5.038116799999955],[119.2751426000001,-5.0415194],[119.27704140000003,-5.041752899999949],[119.28082040000004,-5.036880899999971],[119.27656550000006,-5.032092399999954]]],[[[119.4076778000001,-5.028795099999968],[119.4058973000001,-5.028214199999979],[119.40524520000008,-5.029373599999929],[119.40769580000006,-5.0329076],[119.41219010000009,-5.030324],[119.41074130000004,-5.028512599999942],[119.4076778000001,-5.028795099999968]]],[[[119.32462190000001,-5.005749699999967],[119.32280890000004,-5.006236],[119.323349,-5.015160399999957],[119.321591,-5.017089099999964],[119.32546350000007,-5.018125099999963],[119.323379,-5.020801699999936],[119.32519080000009,-5.0199555],[119.3259240000001,-5.021452499999953],[119.32899280000004,-5.019920199999945],[119.32959140000003,-5.017208799999935],[119.32750150000004,-5.015863899999943],[119.32682690000001,-5.008971],[119.32462190000001,-5.005749699999967]]]]},"properties":{"shapeName":"Kota Makassar","shapeISO":"","shapeID":"22746128B33344866309153","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[112.63149750000002,-7.912425199999973],[112.6275945000001,-7.9115112],[112.6176809000001,-7.919878099999949],[112.610578,-7.9197161],[112.61117690000003,-7.9228978],[112.60970730000008,-7.923881699999981],[112.60248560000002,-7.921647899999925],[112.60018950000006,-7.924060299999951],[112.59947790000001,-7.922013099999958],[112.59723020000001,-7.922875799999929],[112.59618010000008,-7.920219199999963],[112.5917985000001,-7.917319],[112.59406560000002,-7.9200206],[112.5931882000001,-7.923239399999943],[112.59612410000011,-7.922689899999966],[112.6000997000001,-7.926371499999959],[112.59916020000003,-7.930329799999981],[112.59741530000008,-7.9302962],[112.59859110000002,-7.936677],[112.596117,-7.937640699999974],[112.58526570000004,-7.936621299999956],[112.58534510000004,-7.937883899999974],[112.573912,-7.935210299999937],[112.57072760000005,-7.935807699999941],[112.56909890000009,-7.938773899999944],[112.57995430000005,-7.943214099999977],[112.58657380000011,-7.947859299999948],[112.58747740000001,-7.946831],[112.58899370000006,-7.947993699999927],[112.58958170000005,-7.9467698],[112.59256290000008,-7.947978699999965],[112.59181,-7.95],[112.59005720000005,-7.950157],[112.58982450000008,-7.954394499999978],[112.59109110000009,-7.955601899999976],[112.59661960000005,-7.955021199999976],[112.59925410000005,-7.956740099999934],[112.5980320000001,-7.962892599999975],[112.6027001000001,-7.968200499999966],[112.6027964000001,-7.971738099999925],[112.59981230000005,-7.972073199999954],[112.59877730000005,-7.974668599999973],[112.59103840000012,-7.973100799999941],[112.58942410000009,-7.975187799999958],[112.59845,-7.979655899999955],[112.5977157000001,-7.981203099999959],[112.59925420000002,-7.981823499999962],[112.59795230000009,-7.984584799999936],[112.59209110000006,-7.984882699999957],[112.59040920000007,-7.9826302],[112.58560940000007,-7.982775499999946],[112.58185170000002,-7.980071199999941],[112.57823570000005,-7.984837299999981],[112.58287040000005,-7.987266899999952],[112.5884704,-7.985274599999968],[112.59104910000008,-7.985943599999928],[112.5891094000001,-7.992435599999965],[112.59813680000002,-7.996059799999955],[112.599943,-7.991590799999926],[112.60136480000006,-7.992426399999943],[112.59697660000006,-8.006212],[112.60097730000007,-8.006362899999942],[112.60615710000002,-8.010798],[112.60810660000004,-8.019074699999976],[112.60933510000007,-8.016679099999976],[112.6133248000001,-8.015164899999945],[112.61601980000012,-8.010005],[112.61852370000008,-8.011304],[112.61791220000009,-8.016704599999969],[112.61349650000011,-8.019584599999973],[112.61348540000006,-8.021269099999927],[112.61887580000007,-8.023424599999942],[112.61759830000005,-8.026597099999947],[112.6209,-8.027419699999939],[112.62192890000006,-8.029509399999938],[112.63093560000004,-8.035035899999968],[112.6316845,-8.045888299999945],[112.64228130000004,-8.049856899999952],[112.6454427000001,-8.04828809999998],[112.64553190000004,-8.051314499999933],[112.64876550000008,-8.047944799999925],[112.65641010000002,-8.050208899999973],[112.65984340000011,-8.041954799999928],[112.66263570000001,-8.039922599999954],[112.66545860000008,-8.040863799999954],[112.6679382000001,-8.034989199999927],[112.67281090000006,-8.031920499999956],[112.6754145000001,-8.027695499999936],[112.6720130000001,-8.024908899999957],[112.6732214000001,-8.018492699999967],[112.67201960000011,-8.00891329999996],[112.67894620000004,-8.0102806],[112.67928820000009,-8.005376199999944],[112.68426760000011,-8.004951],[112.69166590000009,-7.9923123],[112.69475360000001,-7.982663899999977],[112.6887726000001,-7.980687],[112.68971510000006,-7.9754667],[112.684271,-7.974845699999946],[112.67850670000007,-7.976727799999935],[112.67551390000006,-7.974648699999932],[112.67639740000004,-7.972417099999973],[112.66808380000009,-7.969213799999977],[112.66338340000004,-7.971390099999951],[112.663533,-7.968216499999926],[112.657227,-7.965018799999939],[112.65913850000004,-7.963835699999947],[112.65921690000005,-7.961543],[112.66358590000004,-7.958336899999949],[112.6636433000001,-7.948088699999971],[112.66595450000011,-7.9460838],[112.6668198000001,-7.948938799999951],[112.66863630000012,-7.946128099999953],[112.66545850000011,-7.943417499999953],[112.66438210000001,-7.940478299999938],[112.66563670000005,-7.939445399999954],[112.66215610000006,-7.932125799999937],[112.6627916000001,-7.926985599999966],[112.64971440000011,-7.919777499999952],[112.6500072,-7.918220199999951],[112.64585670000008,-7.916397199999949],[112.64594690000001,-7.913811],[112.64274710000007,-7.919673799999941],[112.639786,-7.920867299999941],[112.63149750000002,-7.912425199999973]]]},"properties":{"shapeName":"Kota Malang","shapeISO":"","shapeID":"22746128B57588556010985","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[124.891599,1.458429],[124.89370530000008,1.463119200000051],[124.89208740000004,1.476554200000066],[124.89050550000002,1.478194200000075],[124.89407010000002,1.484677300000044],[124.90143060000003,1.490802100000053],[124.90446010000005,1.490963700000066],[124.90450910000004,1.495848700000067],[124.91327870000009,1.497675400000048],[124.91791100000012,1.502355700000066],[124.93316530000004,1.50756430000007],[124.93296690000011,1.513251],[124.92776250000009,1.517640500000027],[124.92276440000012,1.52827110000004],[124.92443020000007,1.531545200000039],[124.92388360000007,1.533464800000047],[124.92734,1.53729],[124.9282,1.56424],[124.92285,1.5648],[124.92398270000001,1.559743100000048],[124.92262540000002,1.559692300000052],[124.91641560000005,1.565980100000047],[124.91333270000007,1.565725500000042],[124.91098110000007,1.567864500000042],[124.91000780000002,1.57363870000006],[124.90260970000008,1.575441200000057],[124.89712960000008,1.57448450000004],[124.89635040000007,1.568882900000062],[124.88992140000005,1.570375300000023],[124.88886610000009,1.569050100000027],[124.8868546000001,1.574267400000053],[124.88279890000001,1.571767300000033],[124.88252840000007,1.573930500000074],[124.87699850000001,1.571419700000035],[124.87804430000006,1.575294500000041],[124.87160040000003,1.571780900000022],[124.86666190000005,1.570904100000064],[124.85846880000008,1.563483800000029],[124.85445270000002,1.571166],[124.85081610000009,1.566856900000062],[124.84374020000007,1.564455900000041],[124.83327580000002,1.570830800000067],[124.82245540000008,1.581636],[124.82133650000003,1.580095500000027],[124.82060950000005,1.582499600000062],[124.81877650000001,1.582216800000026],[124.81917370000008,1.580698100000063],[124.81740180000008,1.582247500000051],[124.81663450000008,1.580658200000073],[124.8141759,1.580221600000073],[124.81447260000004,1.579022],[124.81201830000009,1.579992700000048],[124.81015230000003,1.576824400000021],[124.80826070000012,1.579144300000053],[124.80853910000008,1.577823700000067],[124.80566940000006,1.575839300000041],[124.80781090000005,1.57419740000006],[124.80616910000003,1.574318800000071],[124.80419890000007,1.571120800000074],[124.80525540000008,1.569314800000029],[124.80347790000008,1.567701500000055],[124.80488420000006,1.565602800000022],[124.80315670000005,1.563696900000025],[124.80559090000008,1.562504800000056],[124.8052411000001,1.560827200000062],[124.80941970000003,1.554026200000067],[124.81362450000006,1.551778300000024],[124.81352490000006,1.550074100000074],[124.8156044000001,1.550235],[124.81651190000002,1.546911],[124.82168540000009,1.543896600000039],[124.8236998000001,1.538844900000072],[124.82878170000004,1.537273800000037],[124.83000570000002,1.535593500000061],[124.83220920000008,1.53577770000004],[124.83336640000005,1.534215500000073],[124.83230680000008,1.533666500000038],[124.836754,1.530510900000024],[124.83750830000008,1.52837820000002],[124.83904870000003,1.528808600000048],[124.8414580000001,1.526895600000046],[124.8428325000001,1.524320800000055],[124.8400775,1.523686400000031],[124.84165380000002,1.522351],[124.84315860000004,1.524071],[124.84495,1.51505990000004],[124.84091930000011,1.500025400000027],[124.83863510000003,1.499468600000057],[124.84029120000002,1.49940440000006],[124.83976650000011,1.497359600000038],[124.83874680000008,1.497545],[124.84172450000005,1.495991900000035],[124.83980340000005,1.494974600000035],[124.8385353000001,1.496688200000051],[124.83516650000001,1.487424400000066],[124.83309820000011,1.485500900000034],[124.832973,1.486955300000034],[124.83003910000002,1.485672500000021],[124.83257370000001,1.482380100000057],[124.83362340000008,1.474975200000074],[124.83042460000001,1.472915],[124.830042,1.470293800000036],[124.83112360000007,1.469964],[124.82663050000008,1.465720400000066],[124.8267383000001,1.463094],[124.8261738000001,1.464327300000036],[124.82158740000011,1.462932900000055],[124.82039920000011,1.46221010000005],[124.8213588000001,1.461059600000056],[124.81567780000012,1.458363200000065],[124.81171210000002,1.45820290000006],[124.805271,1.460455900000056],[124.79333090000011,1.459979700000076],[124.78846580000004,1.461563300000023],[124.78426500000012,1.461228],[124.78449300000011,1.446982],[124.786827,1.443918],[124.800007,1.441301],[124.80574400000012,1.438482],[124.805529,1.437285],[124.811353,1.43643],[124.81621,1.432578],[124.823614,1.431465],[124.8256070000001,1.429394],[124.82994,1.430997],[124.834641,1.435363],[124.837799,1.432862],[124.840531,1.435569],[124.846936,1.436854],[124.850896,1.44014],[124.855122,1.437322],[124.861479,1.436762],[124.861399,1.44679],[124.86352000000011,1.44951],[124.868054,1.448209],[124.8699150000001,1.450681],[124.87113000000011,1.46386],[124.872711,1.465731],[124.879465,1.462597],[124.878982,1.460869],[124.88332900000012,1.462051],[124.881817,1.459044],[124.884174,1.458277],[124.88366,1.456648],[124.885346,1.453995],[124.888837,1.457982],[124.891599,1.458429]]],[[[124.74419840000007,1.633493100000067],[124.73948830000006,1.631461600000023],[124.73694850000004,1.62751],[124.7356658000001,1.621468800000059],[124.73632670000006,1.617328600000064],[124.74047530000007,1.616404400000022],[124.73894630000007,1.616800200000057],[124.747366,1.619304400000033],[124.7469311000001,1.620186100000069],[124.74985590000006,1.618694500000061],[124.75578170000006,1.620714200000066],[124.76358260000006,1.62048],[124.76972730000011,1.613465400000052],[124.77235280000002,1.601087800000073],[124.77755530000002,1.596596],[124.78141990000006,1.595277400000043],[124.78038540000011,1.608955200000025],[124.78178850000006,1.612787900000058],[124.77515170000004,1.627668400000061],[124.77290230000006,1.628684700000065],[124.7674866000001,1.626738300000056],[124.757688,1.627147500000035],[124.75164530000006,1.629196800000045],[124.74602320000008,1.633145600000034],[124.74499320000007,1.632108800000026],[124.74419840000007,1.633493100000067]]],[[[124.80089740000005,1.636874400000067],[124.79928230000007,1.629971],[124.80011510000008,1.627731400000073],[124.80344900000011,1.627019],[124.80500490000009,1.628650400000026],[124.804996,1.631244],[124.80089740000005,1.636874400000067]]],[[[124.70248220000008,1.648784800000044],[124.69173620000004,1.647479200000021],[124.68414160000009,1.642026800000053],[124.68125740000005,1.631925800000033],[124.68330030000004,1.621631300000047],[124.68460130000005,1.622268],[124.68750210000007,1.619335],[124.69754020000005,1.616562800000054],[124.71050020000007,1.62340480000006],[124.7160348000001,1.628021400000023],[124.71523030000003,1.641013200000032],[124.70248220000008,1.648784800000044]]]]},"properties":{"shapeName":"Kota Manado","shapeISO":"","shapeID":"22746128B77286188036730","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.07401320000008,-8.625266199999942],[116.074688,-8.623047399999962],[116.07760210000004,-8.62274659999997],[116.08514950000006,-8.626382299999932],[116.101292,-8.625181399999974],[116.10522920000005,-8.620858399999975],[116.1091977000001,-8.619248699999957],[116.108845,-8.617194799999936],[116.11105210000005,-8.616679899999951],[116.11032110000008,-8.621222899999964],[116.1114616000001,-8.621849599999962],[116.11371340000005,-8.622078099999953],[116.11855290000005,-8.618275399999959],[116.1229770000001,-8.6187468],[116.12704880000001,-8.617010499999935],[116.13100640000005,-8.618900699999926],[116.13345320000008,-8.615442299999927],[116.13670520000005,-8.616562],[116.13614440000003,-8.6120025],[116.14181730000007,-8.614023],[116.15071680000005,-8.612197699999967],[116.15341190000004,-8.607663399999979],[116.15582410000002,-8.607668699999977],[116.16216620000012,-8.599823],[116.17102290000003,-8.593321199999934],[116.17011900000011,-8.591483299999936],[116.16069720000007,-8.590133299999934],[116.15999490000002,-8.584886099999949],[116.15612390000001,-8.584235499999977],[116.15587770000002,-8.5829416],[116.14991210000005,-8.583869099999959],[116.1478019000001,-8.582453499999929],[116.14747790000001,-8.579404899999929],[116.150151,-8.5757392],[116.1483591000001,-8.572641699999963],[116.15029230000005,-8.571479199999942],[116.148031,-8.571808099999942],[116.14769780000006,-8.569755099999952],[116.144524,-8.5695724],[116.1427440000001,-8.56558819999998],[116.13581560000011,-8.56602049999998],[116.13225940000007,-8.563536599999964],[116.13055150000002,-8.565115599999956],[116.1235445000001,-8.56450689999997],[116.12317630000007,-8.563179099999957],[116.1194369000001,-8.561925199999962],[116.11935430000005,-8.559997599999974],[116.11581420000005,-8.557216599999947],[116.10682110000005,-8.554786499999977],[116.0970807000001,-8.555051899999967],[116.0900421,-8.55956459999993],[116.0848668000001,-8.560019199999942],[116.06942550000008,-8.551040199999932],[116.0721737,-8.56378369999993],[116.07107420000011,-8.58044039999993],[116.074376,-8.6127179],[116.07401320000008,-8.625266199999942]]]},"properties":{"shapeName":"Kota Mataram","shapeISO":"","shapeID":"22746128B10864551066178","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[98.70700940000006,3.772041800000068],[98.70695120000005,3.77388940000003],[98.71558030000006,3.783956100000069],[98.71629410000008,3.788528300000053],[98.71983910000006,3.793477800000062],[98.71829680000008,3.796616500000027],[98.71279650000008,3.791877500000055],[98.71008230000007,3.794488600000022],[98.70772360000007,3.790895600000056],[98.68144250000006,3.788497500000062],[98.67976130000005,3.785813200000064],[98.680175,3.777065600000071],[98.67864580000008,3.774565600000074],[98.67413610000006,3.773219200000028],[98.67553660000004,3.770014600000025],[98.68074980000006,3.76849720000007],[98.68021920000007,3.767386500000043],[98.67521010000007,3.768957700000044],[98.67446580000006,3.76739850000007],[98.67319880000008,3.77398160000007],[98.66750240000005,3.776231700000039],[98.66339570000008,3.780942700000026],[98.65372920000004,3.781857800000068],[98.64846320000004,3.780122],[98.64453810000003,3.774541100000022],[98.63214980000004,3.77514240000005],[98.63290550000005,3.772335800000064],[98.63638630000008,3.770766600000059],[98.63566780000008,3.767763600000023],[98.62989380000005,3.76883840000005],[98.62754750000005,3.767226400000027],[98.62529920000009,3.759596100000067],[98.63052280000005,3.755664100000047],[98.63076140000004,3.751981800000067],[98.63445260000003,3.750358900000037],[98.63394510000006,3.746863400000052],[98.63612610000007,3.743230100000062],[98.63992660000008,3.742603700000075],[98.64103980000004,3.739314500000035],[98.64259940000005,3.740054200000031],[98.64260550000006,3.738648300000023],[98.64450320000003,3.737793300000021],[98.65096990000006,3.737284700000032],[98.65304950000007,3.738769],[98.65339890000007,3.73782970000002],[98.65274390000008,3.732064200000025],[98.65055810000007,3.730816800000071],[98.65048930000006,3.729080400000043],[98.64459140000008,3.730886600000076],[98.645919,3.729611800000043],[98.64407270000004,3.729124100000035],[98.64570080000004,3.727130700000032],[98.64407380000006,3.726504],[98.64510140000004,3.725368300000071],[98.64401890000005,3.71962910000002],[98.63442120000008,3.720309600000064],[98.63054940000006,3.714235700000074],[98.62615210000007,3.713008700000046],[98.62476810000004,3.699681300000066],[98.63183930000008,3.699603700000068],[98.63390590000006,3.690685500000029],[98.63331140000008,3.68367070000005],[98.64861160000004,3.683416600000044],[98.65164230000005,3.674643600000024],[98.65775880000007,3.674970100000053],[98.65749380000005,3.670339100000035],[98.65600040000004,3.669211300000029],[98.657622,3.644110300000023],[98.65960620000004,3.643980200000044],[98.65933460000008,3.638709400000039],[98.66300320000005,3.637252100000069],[98.66337780000003,3.635354200000052],[98.66653860000008,3.635251500000038],[98.66441980000008,3.631997],[98.66529930000007,3.625557600000036],[98.66429280000006,3.624048100000039],[98.66007780000007,3.622719400000051],[98.65258810000006,3.61516210000002],[98.630442,3.615726400000028],[98.62763450000006,3.612671800000044],[98.612964,3.612076300000069],[98.61308810000008,3.61819470000006],[98.61032720000009,3.618436600000052],[98.60999160000006,3.613201500000059],[98.605434,3.613072200000033],[98.60559670000004,3.618631300000061],[98.60146510000004,3.61877990000005],[98.59930650000007,3.620333600000038],[98.60225710000003,3.61639230000003],[98.60102370000004,3.614292100000057],[98.60162930000007,3.612075200000049],[98.60425240000006,3.610645200000022],[98.60516950000004,3.61194560000007],[98.60677520000007,3.61036850000005],[98.60516650000005,3.598932400000024],[98.60814550000003,3.595777400000031],[98.60390650000005,3.594848100000036],[98.60768450000006,3.594640300000037],[98.60817650000007,3.593010100000072],[98.60444720000004,3.592533500000059],[98.60479510000005,3.588427500000023],[98.60211580000004,3.587211],[98.60777670000004,3.581349],[98.60936120000008,3.583393600000022],[98.61128370000006,3.583494200000075],[98.61023010000008,3.578245300000049],[98.60843120000004,3.577212600000053],[98.60921410000003,3.570650100000023],[98.60729860000004,3.567518700000051],[98.60753180000006,3.56570320000003],[98.61204560000004,3.562788300000022],[98.60664780000008,3.558899],[98.61082970000007,3.559557],[98.61157930000007,3.553744],[98.60619080000004,3.553186100000062],[98.60574960000008,3.549996300000032],[98.59883730000007,3.546531800000025],[98.593054,3.540297900000041],[98.59749630000005,3.537948200000073],[98.60025460000008,3.538621800000044],[98.60261370000006,3.534239100000036],[98.600997,3.532889400000045],[98.60228660000007,3.531766600000026],[98.59940260000008,3.529216900000051],[98.59783110000006,3.529532],[98.59742960000005,3.528056],[98.60218680000008,3.51644280000005],[98.60176430000007,3.512709700000073],[98.59663480000006,3.505706800000041],[98.59672480000006,3.500840800000049],[98.59340140000006,3.499739100000056],[98.59246740000003,3.497852300000034],[98.60011320000007,3.490905400000031],[98.60888690000007,3.496674100000064],[98.61723870000009,3.498319500000036],[98.61575480000005,3.503331600000024],[98.62056890000008,3.506803500000046],[98.62471040000008,3.507019100000036],[98.62342370000005,3.514830800000027],[98.62569160000004,3.518836300000032],[98.62838820000007,3.517914100000041],[98.627607,3.511983800000053],[98.62973830000004,3.511616],[98.62854170000008,3.508661],[98.62999290000005,3.508894700000042],[98.631839,3.505806300000074],[98.63011380000006,3.503224200000034],[98.63244480000009,3.502412],[98.63224960000008,3.499803200000031],[98.63355190000004,3.499235900000031],[98.63212720000007,3.498725100000058],[98.63399270000008,3.49818410000006],[98.63293020000003,3.497556900000063],[98.63384780000007,3.496602700000039],[98.63673840000007,3.497212800000057],[98.63469250000009,3.493484300000034],[98.63706710000008,3.490533200000073],[98.63572160000007,3.489340800000036],[98.64456580000007,3.488117300000056],[98.64746510000003,3.498174400000039],[98.64824870000007,3.495790900000031],[98.64981740000007,3.49709660000002],[98.65165750000006,3.495752400000072],[98.65366150000006,3.496972200000073],[98.65496730000007,3.496157800000049],[98.65554590000005,3.500676500000054],[98.65897490000003,3.504569400000037],[98.65958320000004,3.508388400000058],[98.65839920000008,3.50989160000006],[98.657769,3.508270500000037],[98.655457,3.510855900000024],[98.65430670000006,3.517324900000062],[98.65669840000004,3.519048500000054],[98.65557930000006,3.519607500000063],[98.65763530000004,3.522491900000034],[98.66230440000004,3.522439400000053],[98.66165650000005,3.519578600000045],[98.65568450000006,3.519639300000051],[98.66169590000004,3.519077800000048],[98.66168620000008,3.514898300000027],[98.67706370000008,3.514568200000042],[98.67486890000004,3.51578],[98.67842070000006,3.519285300000035],[98.698235,3.518396600000074],[98.69831440000007,3.531490100000042],[98.74240170000007,3.529390400000068],[98.74215680000003,3.527692300000069],[98.74482870000008,3.528109800000038],[98.74515190000005,3.536549300000047],[98.74643270000007,3.537822100000028],[98.73957920000004,3.536817300000052],[98.735123,3.538426400000048],[98.73494610000006,3.541067400000031],[98.73215710000005,3.541164900000069],[98.73135380000008,3.539745700000026],[98.72902010000007,3.540744],[98.72889950000007,3.537987100000066],[98.726437,3.538305],[98.72665650000005,3.54048750000004],[98.72275570000005,3.540754200000038],[98.72294710000006,3.543366500000047],[98.72130830000003,3.543426100000033],[98.72190630000006,3.54882710000004],[98.72013290000007,3.551606700000036],[98.72684670000007,3.551081],[98.72709390000006,3.568077200000062],[98.72859160000007,3.571086600000058],[98.731754,3.570968600000072],[98.73402280000005,3.57484340000002],[98.73690060000007,3.574657100000024],[98.73829210000008,3.580174900000031],[98.73831270000005,3.581390500000055],[98.73108120000006,3.582113400000026],[98.73079730000006,3.584012900000062],[98.73249370000008,3.586059500000033],[98.73621430000009,3.585975200000064],[98.74079080000007,3.588237],[98.74128230000008,3.592273700000021],[98.73989820000008,3.593965200000071],[98.74150210000005,3.599002300000052],[98.71176510000004,3.600277900000037],[98.71183630000007,3.602166500000067],[98.70663730000007,3.602352600000074],[98.70725940000005,3.617378900000062],[98.70967530000007,3.617297700000051],[98.70989360000004,3.62660180000006],[98.70777370000008,3.627242800000033],[98.707828,3.628688100000034],[98.70395040000005,3.628821300000027],[98.70406340000005,3.626252300000033],[98.693375,3.62676],[98.69269360000004,3.643076400000041],[98.69483780000007,3.642160800000056],[98.694833,3.645355500000051],[98.70168380000007,3.645106100000021],[98.70297350000004,3.66262260000002],[98.700159,3.662606100000062],[98.69187160000007,3.656459900000073],[98.68966620000003,3.656513400000051],[98.69223120000004,3.664540200000033],[98.68138330000005,3.668051300000059],[98.68041420000009,3.67252],[98.66849310000003,3.671771700000022],[98.66937690000003,3.675609],[98.68021510000005,3.675424300000032],[98.68028670000007,3.678714],[98.69659680000007,3.677942400000063],[98.69471430000004,3.672365300000024],[98.70333710000006,3.671978500000023],[98.70327580000009,3.667026600000042],[98.70982820000006,3.672959],[98.71285250000005,3.678773300000046],[98.71065580000004,3.682079500000043],[98.71093350000007,3.684193200000038],[98.70865610000004,3.685081500000024],[98.70883460000005,3.68798460000005],[98.71091370000005,3.688072300000044],[98.71137350000004,3.693109900000024],[98.70624980000008,3.702702700000032],[98.70761620000007,3.704460200000028],[98.70646080000006,3.706410300000073],[98.70486460000006,3.706426800000031],[98.70544540000009,3.711194600000056],[98.70334750000006,3.711746700000049],[98.704708,3.715053700000055],[98.70690330000008,3.713684800000067],[98.70816380000008,3.717213700000059],[98.71003920000004,3.71759110000005],[98.70978280000008,3.719715],[98.71157330000005,3.718842],[98.71227180000005,3.720743500000026],[98.71332920000003,3.719750400000066],[98.713806,3.72158330000002],[98.71530650000005,3.721446800000024],[98.71520290000007,3.725454800000023],[98.71723210000005,3.724684700000068],[98.71718140000007,3.723331500000029],[98.72040330000004,3.725336600000048],[98.72497440000006,3.719959700000061],[98.730993,3.720372600000076],[98.72669420000005,3.727462500000058],[98.72698220000007,3.733183500000052],[98.72179850000003,3.734466500000053],[98.71811440000005,3.738370600000053],[98.70980970000005,3.741433800000038],[98.70720140000009,3.740131200000064],[98.70453750000007,3.740850400000056],[98.70534050000003,3.744401500000038],[98.70338940000005,3.746685800000023],[98.705174,3.749707700000044],[98.70191410000007,3.751159200000075],[98.70404970000004,3.766358],[98.70700940000006,3.772041800000068]]]},"properties":{"shapeName":"Kota Medan","shapeISO":"","shapeID":"22746128B85071221407496","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[105.27606530000008,-5.179964799999937],[105.28229350000004,-5.177848299999937],[105.28536170000007,-5.181594],[105.29159070000009,-5.181302899999935],[105.29465920000007,-5.185336799999959],[105.29580910000004,-5.185144099999945],[105.29887470000006,-5.182932799999946],[105.30174970000007,-5.1830275],[105.30241860000007,-5.179088],[105.31123580000008,-5.180428799999959],[105.31803760000008,-5.175909799999943],[105.31851540000008,-5.173219399999937],[105.32033580000007,-5.172449799999981],[105.32465040000005,-5.176867199999947],[105.32618230000008,-5.174272299999927],[105.32541440000006,-5.1716786],[105.33095990000004,-5.168134899999927],[105.32654590000004,-5.160445799999934],[105.33028880000006,-5.156031699999971],[105.33277630000003,-5.155737],[105.33367850000008,-5.152443499999947],[105.331862,-5.151773899999966],[105.33247010000008,-5.150204699999961],[105.33012720000005,-5.143414099999973],[105.33071250000006,-5.138996899999938],[105.32767010000003,-5.139712599999939],[105.32480850000007,-5.136501099999975],[105.32422740000004,-5.132944],[105.32538490000007,-5.1309105],[105.323501,-5.128443],[105.32540410000007,-5.128068399999961],[105.32698180000006,-5.12419],[105.33114270000004,-5.124220699999967],[105.33076530000005,-5.120635399999969],[105.328849,-5.118693199999939],[105.33388370000006,-5.111679399999957],[105.33654870000004,-5.111965699999928],[105.33953880000007,-5.106537799999955],[105.34347520000006,-5.107645699999978],[105.34807840000008,-5.103519499999948],[105.34386330000007,-5.098372599999948],[105.33613820000005,-5.095199399999956],[105.33702560000006,-5.093502299999955],[105.33335650000004,-5.092901099999949],[105.33212240000006,-5.090935099999967],[105.33364470000004,-5.088388],[105.349257,-5.079085699999951],[105.35179390000008,-5.074373599999944],[105.35877310000006,-5.067240099999935],[105.35346950000007,-5.062214099999949],[105.35200570000006,-5.063844899999935],[105.35035260000006,-5.063475],[105.35072330000008,-5.065350399999943],[105.34730930000006,-5.066399099999956],[105.34852760000007,-5.067074499999933],[105.34722360000006,-5.068950799999925],[105.34818090000005,-5.069582799999978],[105.34659330000005,-5.069605399999944],[105.34642030000003,-5.071524699999941],[105.34453960000008,-5.070686599999931],[105.33585280000005,-5.071876699999962],[105.33123680000006,-5.070095399999957],[105.33051630000006,-5.071252799999968],[105.33027550000008,-5.070337],[105.32633410000005,-5.071688699999925],[105.32493960000005,-5.070918099999972],[105.32321530000007,-5.074459299999944],[105.31628860000006,-5.0756466],[105.31494150000009,-5.073526199999947],[105.31647790000005,-5.069620799999939],[105.31458550000008,-5.0704464],[105.31080330000003,-5.068203199999971],[105.31209530000007,-5.064959899999963],[105.31863320000008,-5.060478499999931],[105.32119780000005,-5.056066699999974],[105.32032570000007,-5.053206599999953],[105.31816410000005,-5.051560799999947],[105.31504710000007,-5.055298],[105.30605650000007,-5.057255899999973],[105.30409990000004,-5.062890599999946],[105.30090320000005,-5.064783099999943],[105.29584110000008,-5.073138099999937],[105.280536,-5.083504099999971],[105.28209930000008,-5.0876993],[105.28028480000006,-5.088376],[105.278397,-5.0927308],[105.26949750000006,-5.096827499999961],[105.26897120000007,-5.102507099999968],[105.27349980000008,-5.1070415],[105.28384820000008,-5.103899599999977],[105.29053120000003,-5.108778699999959],[105.28883360000003,-5.109513799999945],[105.28930790000004,-5.111333899999977],[105.28780280000007,-5.111953599999936],[105.28462530000007,-5.120176899999933],[105.27864960000005,-5.123920699999928],[105.27786940000004,-5.1300844],[105.27383010000005,-5.132749699999977],[105.27535270000004,-5.137395599999934],[105.271082,-5.1409549],[105.27511640000006,-5.145196099999964],[105.27508580000006,-5.147035499999959],[105.27122960000008,-5.1477068],[105.26927530000006,-5.149522699999977],[105.26844790000007,-5.152790099999947],[105.2624,-5.158891199999971],[105.263198,-5.162521],[105.27137890000006,-5.158088799999973],[105.27572080000004,-5.160540799999978],[105.27481330000006,-5.165649599999938],[105.27778530000006,-5.168434599999955],[105.27510430000007,-5.173720099999969],[105.27606530000008,-5.179964799999937]]]},"properties":{"shapeName":"Kota Metro","shapeISO":"","shapeID":"22746128B27614844412832","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[112.4575119000001,-7.456762699999956],[112.45504290000008,-7.447397099999932],[112.447418,-7.450203],[112.433937,-7.45983],[112.43074800000011,-7.460143099999925],[112.42289730000005,-7.457092599999953],[112.41528070000004,-7.457378199999937],[112.4151548000001,-7.464225499999941],[112.4174991000001,-7.465841],[112.414017,-7.466577],[112.41170240000008,-7.4690084],[112.41218460000005,-7.472479899999939],[112.40992520000009,-7.477384899999947],[112.40653930000008,-7.477143499999954],[112.40758480000011,-7.489386],[112.413267,-7.489855],[112.4149691,-7.4940506],[112.42280990000006,-7.492911399999969],[112.42610760000002,-7.480852099999936],[112.42816230000005,-7.480607199999952],[112.4275927000001,-7.483640199999968],[112.43294670000012,-7.484869],[112.432962,-7.487127],[112.43620220000003,-7.4879531],[112.43634210000005,-7.481618899999944],[112.43948560000001,-7.481368099999941],[112.4435482,-7.481765799999948],[112.443412,-7.490551399999958],[112.4494,-7.492266899999947],[112.45069940000008,-7.4817565],[112.46051020000004,-7.483081699999957],[112.46138760000008,-7.473154399999942],[112.46476740000003,-7.473194],[112.46553260000007,-7.467224499999929],[112.46746270000006,-7.467166],[112.468403,-7.462337799999943],[112.46714870000005,-7.462195099999974],[112.46683,-7.455186399999945],[112.4575119000001,-7.456762699999956]]]},"properties":{"shapeName":"Kota Mojokerto","shapeISO":"","shapeID":"22746128B93625349600332","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[100.17375940000005,-1.135284399999932],[100.17154860000005,-1.135431799999935],[100.17145030000006,-1.1367583],[100.17375940000005,-1.135284399999932]]],[[[100.35594930000008,-1.122858],[100.35006380000004,-1.123822799999971],[100.34855230000005,-1.131091199999958],[100.34961360000005,-1.132634899999971],[100.35186480000004,-1.132795699999974],[100.35594930000008,-1.122858]]],[[[100.34101060000006,-1.123955099999932],[100.342074,-1.121703299999979],[100.34144850000007,-1.119107399999962],[100.34026,-1.118951],[100.33835220000009,-1.122954299999947],[100.34101060000006,-1.123955099999932]]],[[[100.38300940000005,-1.120492],[100.38110330000006,-1.1179701],[100.37919720000008,-1.118673899999976],[100.38300940000005,-1.120492]]],[[[100.36760350000009,-1.1161447],[100.36384070000008,-1.1165628],[100.36943670000005,-1.119618],[100.36760350000009,-1.1161447]]],[[[100.29711050000009,-1.076113699999951],[100.29667260000008,-1.073205099999939],[100.295578,-1.075300599999935],[100.29711050000009,-1.076113699999951]]],[[[100.17521910000005,-1.039056899999935],[100.175506,-1.035948799999971],[100.17062870000007,-1.033892699999967],[100.17024620000007,-1.036761699999943],[100.17148940000004,-1.038530899999955],[100.17521910000005,-1.039056899999935]]],[[[100.33969350000007,-0.990796699999976],[100.33821350000005,-0.990644599999939],[100.33844150000004,-0.996056799999963],[100.34232160000005,-0.994256699999937],[100.34212560000003,-0.9922927],[100.33969350000007,-0.990796699999976]]],[[[100.20805730000006,-0.984457799999973],[100.209989,-0.983789099999967],[100.21021190000005,-0.981708799999979],[100.20627410000009,-0.98052],[100.20582840000009,-0.982674599999939],[100.20805730000006,-0.984457799999973]]],[[[100.23069480000004,-0.955997699999955],[100.22942680000006,-0.954339599999969],[100.22932930000007,-0.955705099999932],[100.23069480000004,-0.955997699999955]]],[[[100.13822690000006,-0.946215199999926],[100.137233,-0.949818199999925],[100.13936990000008,-0.951110299999925],[100.14150690000008,-0.947855199999935],[100.14063720000007,-0.946364299999971],[100.13822690000006,-0.946215199999926]]],[[[100.20421030000006,-0.875278499999979],[100.20623210000008,-0.873184199999969],[100.20462990000004,-0.872139],[100.20351220000003,-0.873115499999926],[100.20421030000006,-0.875278499999979]]],[[[100.10026560000006,-0.874873099999945],[100.10140650000005,-0.872021],[100.09960010000003,-0.870943499999953],[100.09773040000005,-0.872876599999927],[100.10026560000006,-0.874873099999945]]],[[[100.30251880000009,-0.858532],[100.30226330000005,-0.8567562],[100.29972650000008,-0.857391399999926],[100.30150410000005,-0.859420799999953],[100.30251880000009,-0.858532]]],[[[100.45614430000006,-0.729042099999958],[100.44773670000006,-0.733324799999934],[100.43904440000006,-0.7353753],[100.43125070000008,-0.740914199999963],[100.42381650000004,-0.743046399999969],[100.41820840000008,-0.742880599999978],[100.41497810000004,-0.745694499999956],[100.40016090000006,-0.748665899999935],[100.39573780000006,-0.754609499999958],[100.38066790000005,-0.760592],[100.37567520000005,-0.768390699999941],[100.36646130000008,-0.772552],[100.35991830000006,-0.780264599999953],[100.35070480000007,-0.785898799999927],[100.34677410000006,-0.7862691],[100.34023280000008,-0.798659899999961],[100.33739130000004,-0.801086599999962],[100.32160060000007,-0.805295399999977],[100.31706640000004,-0.803667099999927],[100.31281560000008,-0.805471499999953],[100.29839420000008,-0.805763099999979],[100.29585310000004,-0.808156399999973],[100.29122310000008,-0.806158799999935],[100.290707,-0.808045199999924],[100.29368450000004,-0.812607499999956],[100.29173160000005,-0.816250499999967],[100.29263880000008,-0.820497499999931],[100.30966,-0.833494199999961],[100.32584570000006,-0.851720799999953],[100.34221840000004,-0.883974099999932],[100.34464070000007,-0.9048595],[100.34219550000006,-0.906555199999957],[100.34550290000004,-0.911882399999968],[100.34675270000008,-0.911724799999945],[100.34550290000004,-0.9124088],[100.35022540000006,-0.9252281],[100.34970670000007,-0.93186],[100.35296060000007,-0.957565299999942],[100.35175510000005,-0.9634895],[100.34766950000005,-0.964058299999976],[100.34694930000006,-0.965979599999969],[100.34748810000008,-0.968738199999962],[100.35093,-0.968071499999951],[100.35407710000004,-0.973874099999932],[100.35723670000004,-0.974214299999971],[100.35874310000008,-0.976348099999939],[100.35936010000006,-0.981363699999974],[100.35709360000004,-0.989291599999945],[100.365473,-0.996195399999976],[100.36322740000008,-1.001340199999959],[100.364968,-1.005651],[100.36835360000003,-1.0015317],[100.37073860000004,-1.000995299999943],[100.371835,-1.0022115],[100.37297880000006,-1.001156599999945],[100.37096590000004,-0.998703399999954],[100.37408220000003,-0.995977399999958],[100.37741670000008,-0.995990699999936],[100.37799760000007,-0.997850599999936],[100.37923020000005,-0.995574499999975],[100.37995280000007,-0.997265699999957],[100.37945780000007,-0.995557199999951],[100.38237720000006,-0.993094199999973],[100.38542710000007,-0.996321899999941],[100.38724360000003,-1.0016624],[100.38589790000003,-1.008525099999929],[100.38875460000008,-1.007394599999941],[100.39041930000008,-1.008581099999958],[100.38700090000003,-1.024732],[100.37939490000008,-1.033907899999974],[100.37797590000008,-1.040576499999929],[100.38048160000005,-1.043632899999977],[100.38542550000005,-1.043240399999945],[100.38770190000008,-1.039141099999938],[100.39283860000006,-1.036113799999953],[100.39438730000006,-1.030746199999953],[100.39812680000006,-1.028803799999935],[100.39972210000008,-1.0312968],[100.40168250000005,-1.031491099999926],[100.40221860000008,-1.033962899999949],[100.403194,-1.0335679],[100.40157640000007,-1.035155799999927],[100.40194330000008,-1.0366952],[100.40701240000004,-1.036625299999969],[100.41191940000004,-1.040919199999962],[100.41261250000008,-1.044984699999929],[100.41151360000003,-1.048769099999959],[100.40592240000007,-1.051848299999961],[100.40971540000004,-1.051611599999944],[100.413226,-1.056009399999937],[100.41380590000006,-1.058896599999969],[100.41104230000008,-1.066435299999966],[100.412085,-1.070327899999938],[100.40900070000004,-1.0738118],[100.40478630000007,-1.0733168],[100.40409120000004,-1.070119299999931],[100.39776580000006,-1.070188799999926],[100.39693160000007,-1.065045099999963],[100.39338660000004,-1.067895],[100.38976670000005,-1.076220899999953],[100.38825290000005,-1.076320899999928],[100.38713070000006,-1.066643799999952],[100.38101370000004,-1.065114599999959],[100.38101370000004,-1.062403699999948],[100.376426,-1.064210899999978],[100.37468820000004,-1.071370499999944],[100.37281150000007,-1.073108299999944],[100.36768550000005,-1.076083199999971],[100.36568830000004,-1.074405599999977],[100.36354750000004,-1.075402699999927],[100.365483,-1.078423099999952],[100.36476450000004,-1.084970699999928],[100.36632850000007,-1.087629499999935],[100.36523370000003,-1.0901319],[100.36851810000007,-1.091330899999946],[100.37269930000008,-1.096713699999952],[100.37076390000004,-1.101522899999964],[100.37627690000005,-1.104044899999963],[100.381735,-1.110052799999949],[100.38506220000005,-1.1154775],[100.38394780000004,-1.121430399999952],[100.38777640000006,-1.123277799999926],[100.38726680000008,-1.125683399999957],[100.38185770000007,-1.128286099999968],[100.38007630000004,-1.122877599999924],[100.37389710000008,-1.118876099999966],[100.37294780000008,-1.123734],[100.36799190000005,-1.125346899999954],[100.36544060000006,-1.123088899999971],[100.36242020000009,-1.123822],[100.35922380000005,-1.131182499999966],[100.359429,-1.133000699999968],[100.36371050000008,-1.131241199999977],[100.36570450000005,-1.135024099999953],[100.36584420000008,-1.138134499999978],[100.36247880000008,-1.142238],[100.36250640000009,-1.143809399999952],[100.36349230000008,-1.1431839],[100.36812820000006,-1.1383212],[100.38874980000008,-1.130644899999936],[100.39437760000004,-1.122353199999964],[100.39805060000003,-1.119424599999945],[100.40444440000005,-1.1178662],[100.42073930000004,-1.108518099999969],[100.420725,-1.099864799999978],[100.41495660000004,-1.094260199999951],[100.41206090000009,-1.093744699999945],[100.41176130000008,-1.091808499999956],[100.41338570000005,-1.085993],[100.421769,-1.080752699999948],[100.42597690000008,-1.075980199999947],[100.42991360000008,-1.059074599999974],[100.43855340000005,-1.054147299999954],[100.44738920000003,-1.041805499999953],[100.45305010000004,-1.038064599999927],[100.45841010000004,-1.031995399999971],[100.46389020000004,-1.029667099999926],[100.46513070000003,-1.027168399999937],[100.46428460000004,-1.023091],[100.47147480000007,-1.015335099999959],[100.47906290000009,-1.003418799999963],[100.48566060000007,-1.001550499999951],[100.49269190000007,-1.004400299999929],[100.51982,-0.990805699999953],[100.52893070000005,-0.976989699999933],[100.53660890000003,-0.9570719],[100.53607180000006,-0.950988799999948],[100.53771970000008,-0.945190399999944],[100.54571530000004,-0.9343262],[100.54730220000005,-0.928894],[100.550293,-0.928283699999952],[100.55371090000006,-0.922912599999961],[100.555481,-0.923400899999933],[100.56372070000003,-0.908081099999947],[100.56530760000004,-0.900329599999964],[100.56390380000005,-0.893371599999966],[100.55950930000006,-0.890808099999958],[100.545105,-0.855407699999944],[100.54351810000009,-0.854309099999966],[100.53747560000005,-0.855590799999959],[100.531311,-0.844482399999947],[100.53833010000005,-0.8359985],[100.54274280000004,-0.8359085],[100.53823,-0.8359843],[100.54111920000008,-0.833005799999967],[100.54299590000005,-0.827298299999939],[100.54256020000008,-0.817772599999955],[100.54477330000009,-0.8148854],[100.54137,-0.809081399999968],[100.52850340000003,-0.7999878],[100.50451660000004,-0.786315899999977],[100.50549320000005,-0.765197799999953],[100.50251130000004,-0.756793199999947],[100.50041010000007,-0.7552757],[100.49619480000007,-0.756212199999936],[100.47909740000006,-0.752464299999929],[100.47675510000005,-0.750356699999941],[100.47909740000006,-0.736537899999973],[100.47768970000004,-0.734430299999929],[100.47347450000007,-0.731384299999945],[100.45871930000004,-0.731384299999945],[100.45614430000006,-0.729042099999958]]]]},"properties":{"shapeName":"Kota Padang","shapeISO":"","shapeID":"22746128B32115736639748","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.39987660000008,-0.450042099999962],[100.39644970000006,-0.450956],[100.39535860000007,-0.454211799999939],[100.396819,-0.455327399999931],[100.39598660000007,-0.460190499999953],[100.39090140000008,-0.458888299999956],[100.39005340000006,-0.460164499999962],[100.38955820000007,-0.458356399999957],[100.38757850000007,-0.460106399999972],[100.385169,-0.459165699999971],[100.38093520000007,-0.461727699999926],[100.37877880000008,-0.461479399999973],[100.37643170000007,-0.464335099999971],[100.375182,-0.463710799999944],[100.374814,-0.466842299999939],[100.37179360000005,-0.468191399999967],[100.36998720000008,-0.471115],[100.37028430000004,-0.473268899999937],[100.36631720000008,-0.476557399999933],[100.36782720000008,-0.479032399999937],[100.38008910000008,-0.485574299999939],[100.40646080000005,-0.4852229],[100.40419,-0.480175199999962],[100.40575690000009,-0.480236499999933],[100.40775230000008,-0.484361599999943],[100.41236990000004,-0.483579],[100.42068420000004,-0.485232],[100.42218850000006,-0.4833177],[100.42356330000007,-0.485765899999933],[100.43058850000006,-0.486504299999979],[100.431271,-0.4884068],[100.43332540000006,-0.488740699999937],[100.43454020000007,-0.478228099999967],[100.43268750000004,-0.4730261],[100.43572850000004,-0.472238699999934],[100.43635770000009,-0.469658799999934],[100.43245590000004,-0.4628118],[100.42945180000004,-0.460056399999928],[100.42582010000007,-0.459593499999926],[100.42484990000008,-0.455640399999936],[100.41188170000004,-0.454588099999967],[100.40885,-0.459356],[100.40767950000009,-0.455593499999964],[100.40438840000007,-0.455045699999971],[100.40416580000004,-0.451608699999952],[100.39987660000008,-0.450042099999962]]]},"properties":{"shapeName":"Kota Padang Panjang","shapeISO":"","shapeID":"22746128B34185374367114","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[99.25068220000009,1.469986300000073],[99.24413840000005,1.470172800000057],[99.23670990000005,1.46800520000005],[99.23124880000006,1.464285400000051],[99.22576570000007,1.455664500000069],[99.22725550000007,1.415255],[99.22474580000005,1.414626800000065],[99.22175380000004,1.411084100000039],[99.22227,1.408280500000046],[99.22632310000006,1.406626300000028],[99.22752790000004,1.404625900000042],[99.22885160000004,1.395370800000023],[99.23163690000007,1.391669200000024],[99.23684790000004,1.388880800000038],[99.23997740000004,1.384297200000049],[99.24460930000004,1.381099400000039],[99.24575,1.364104600000076],[99.24801890000003,1.361899400000027],[99.26559310000005,1.361929],[99.26974,1.359534500000052],[99.27806520000007,1.358100200000024],[99.301615,1.317451100000028],[99.30340730000006,1.311732100000029],[99.31047380000007,1.303897800000072],[99.32088020000003,1.304020900000069],[99.32069520000005,1.306566400000065],[99.32746870000005,1.309851300000048],[99.33654020000006,1.309745200000066],[99.34056570000007,1.311908300000027],[99.34931970000008,1.31159880000007],[99.349874,1.315808400000037],[99.346223,1.326042500000028],[99.329378,1.350757500000043],[99.308268,1.387597200000073],[99.31122670000008,1.390639300000032],[99.30585490000004,1.397921],[99.30579710000006,1.406458900000075],[99.30768210000008,1.405189900000039],[99.30809470000008,1.407087100000069],[99.31175890000009,1.405450200000075],[99.314681,1.406030900000076],[99.31477520000004,1.405058500000052],[99.31896980000005,1.405982800000061],[99.32038340000008,1.400122],[99.32575360000004,1.40411030000007],[99.324732,1.410049400000048],[99.30184230000003,1.438595400000054],[99.29869240000005,1.466679700000043],[99.25068220000009,1.469986300000073]]]},"properties":{"shapeName":"Kota Padangsidimpuan","shapeISO":"","shapeID":"22746128B24111430702766","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.28500650000007,-4.257180199999937],[103.29119170000007,-4.258117899999945],[103.30506740000004,-4.254524899999979],[103.30941020000006,-4.251320799999974],[103.31649760000005,-4.237486],[103.31561310000006,-4.221169799999927],[103.317154,-4.2174793],[103.32360240000008,-4.212876],[103.32544860000007,-4.2098018],[103.32579150000004,-4.204930699999977],[103.32980790000005,-4.197592499999928],[103.33071040000004,-4.186418899999978],[103.33235820000004,-4.186278699999946],[103.34078930000004,-4.178059099999928],[103.34576620000007,-4.179645799999946],[103.34882290000007,-4.175068],[103.34913780000005,-4.171067],[103.353124,-4.170767499999954],[103.35282390000003,-4.167688699999928],[103.35567940000004,-4.164021099999957],[103.35590250000007,-4.161538699999937],[103.36050370000004,-4.160317],[103.36296210000006,-4.157551699999942],[103.363318,-4.140719699999977],[103.36075330000006,-4.137098599999945],[103.36187090000004,-4.135637399999951],[103.361107,-4.131848],[103.35870780000005,-4.131154299999935],[103.355294,-4.1234853],[103.35779470000006,-4.116517399999964],[103.363117,-4.113257],[103.36321030000005,-4.109555399999977],[103.36116540000006,-4.107846699999925],[103.36149660000007,-4.103070299999956],[103.35918640000006,-4.100999799999954],[103.35932090000006,-4.098095099999966],[103.36491590000009,-4.097202799999934],[103.36717210000006,-4.094237799999974],[103.37064580000003,-4.093212],[103.373932,-4.089539],[103.37619790000008,-4.081732399999964],[103.38222390000004,-4.076708099999962],[103.382744,-4.073868199999936],[103.387134,-4.074003699999935],[103.39034860000004,-4.071687499999939],[103.39558230000006,-4.063122499999963],[103.39632010000008,-4.060255],[103.39426450000008,-4.057342],[103.39656840000004,-4.052437099999963],[103.39933890000003,-4.051043899999968],[103.40119090000007,-4.047394599999961],[103.40145620000004,-4.0437433],[103.400021,-4.042094899999938],[103.40109040000004,-4.039957699999945],[103.39932950000008,-4.037248099999942],[103.40193060000007,-4.033962],[103.40005080000009,-4.031553799999926],[103.40315040000007,-4.029347499999972],[103.40307960000007,-4.027254599999935],[103.40643280000006,-4.026821499999926],[103.40580870000008,-4.024726699999974],[103.40766880000007,-4.023212699999931],[103.40656120000006,-4.021628899999939],[103.40900450000004,-4.0198692],[103.40739440000004,-4.016964899999948],[103.40948540000005,-4.011294599999928],[103.41173770000006,-4.009351599999945],[103.41054860000008,-4.007548299999939],[103.41316910000006,-4.003549],[103.41241120000007,-3.996617899999933],[103.41540740000005,-3.9847772],[103.41096,-3.985552299999938],[103.40708060000009,-3.988616299999933],[103.40576280000005,-3.987297799999965],[103.39572440000006,-3.9858885],[103.39226010000004,-3.990495899999928],[103.38882250000006,-3.989540899999952],[103.38747060000009,-3.991163699999959],[103.38019960000008,-3.987695599999938],[103.37798550000008,-3.989747799999975],[103.37615530000005,-3.988885299999936],[103.37377050000003,-3.993369399999949],[103.36091070000003,-3.996324099999981],[103.357,-3.998519899999962],[103.35202750000008,-4.003372299999967],[103.35147440000009,-4.011459],[103.34752950000006,-4.015225399999963],[103.34734180000004,-4.019538499999953],[103.34284460000003,-4.030852299999935],[103.34354670000005,-4.037683499999957],[103.34247180000006,-4.040188099999966],[103.33864620000008,-4.039017099999967],[103.32836620000006,-4.043976699999973],[103.30173630000007,-4.041927199999975],[103.29295860000008,-4.042340199999956],[103.28859740000007,-4.044056699999942],[103.28286140000006,-4.042811899999947],[103.27715150000006,-4.036774799999932],[103.28043820000005,-4.033178599999928],[103.27967930000005,-4.031700499999943],[103.28074570000007,-4.030973599999925],[103.27873430000005,-4.032208899999944],[103.27825210000009,-4.031308599999932],[103.28089890000007,-4.027182299999936],[103.28039420000005,-4.025504199999943],[103.285114,-4.025392699999941],[103.28345,-4.022521099999949],[103.28596980000003,-4.021238299999936],[103.28561690000004,-4.019694499999957],[103.28907050000004,-4.019908],[103.28810210000006,-4.018282699999929],[103.29101530000008,-4.016098799999952],[103.28850380000006,-4.012113799999952],[103.28967310000007,-4.010788499999933],[103.28619540000005,-4.008583399999964],[103.28642770000005,-4.006930499999953],[103.27712990000003,-4.004809099999932],[103.275579,-4.005666],[103.27522540000007,-4.0036841],[103.27113150000008,-4.004142499999944],[103.26044320000005,-3.999775899999975],[103.25504550000005,-4.0009789],[103.25265150000007,-4.003139799999929],[103.24883890000007,-3.999074599999972],[103.24417330000006,-3.999979599999961],[103.24071970000006,-3.998589799999934],[103.23699990000006,-3.9929294],[103.23033330000004,-3.992054899999971],[103.22025890000003,-3.987884699999938],[103.19922040000006,-3.992007399999977],[103.19063250000005,-3.988954099999944],[103.18456610000004,-3.989627799999937],[103.18081860000007,-3.993854799999951],[103.16874350000006,-3.9983147],[103.161852,-4.0049998],[103.15476920000003,-4.0048332],[103.14788570000007,-4.009069099999977],[103.13243310000007,-4.015239099999974],[103.12137910000007,-4.015725],[103.12403560000007,-4.021232899999973],[103.130859,-4.028292199999953],[103.13666170000005,-4.041872],[103.148076,-4.092485199999942],[103.15133370000007,-4.098570099999961],[103.15315310000005,-4.107078199999933],[103.16494060000008,-4.119689299999948],[103.18087170000007,-4.147572499999967],[103.18224280000004,-4.153245499999969],[103.180522,-4.159013899999934],[103.18525740000007,-4.164145299999973],[103.183733,-4.170608699999946],[103.18542430000008,-4.215736699999979],[103.18362560000008,-4.220388299999968],[103.17815370000005,-4.227247099999943],[103.17828930000007,-4.232604099999946],[103.18089620000006,-4.236030699999958],[103.18713690000004,-4.238432099999955],[103.20079920000006,-4.247577799999931],[103.204082,-4.247515399999941],[103.21413,-4.240797599999951],[103.21726150000006,-4.240383],[103.23456060000007,-4.245779399999947],[103.25060350000007,-4.244957899999974],[103.26114880000006,-4.2487057],[103.268467,-4.255665],[103.28500650000007,-4.257180199999937]]]},"properties":{"shapeName":"Kota Pagar Alam","shapeISO":"","shapeID":"22746128B80852974800246","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[113.49205720000009,-1.657501099999934],[113.48435670000003,-1.670432299999959],[113.48201620000009,-1.684927399999935],[113.483766,-1.694107599999938],[113.49757920000002,-1.719388099999946],[113.4985967,-1.731716499999948],[113.49882,-1.737700799999971],[113.496799,-1.745573499999978],[113.48861010000007,-1.761711699999978],[113.48947980000003,-1.786178399999926],[113.50613190000001,-1.823379599999953],[113.53352680000012,-1.848552199999972],[113.57190450000007,-1.899786799999958],[113.59353220000003,-1.918589299999951],[113.61402980000003,-1.9504336],[113.61783930000001,-1.979756299999963],[113.62303820000011,-1.991001799999935],[113.65592620000007,-2.037292599999944],[113.68304660000001,-2.066512],[113.6946008000001,-2.086774499999933],[113.69962050000004,-2.158043],[113.6965183000001,-2.195135899999968],[113.695436,-2.233674],[113.69691970000008,-2.257430299999953],[113.70618790000003,-2.284938499999953],[113.71881210000004,-2.301559899999972],[113.73255130000007,-2.311954199999946],[113.7529416000001,-2.333234199999936],[113.7639329000001,-2.356680499999925],[113.76729960000011,-2.369537699999967],[113.76664620000008,-2.388545099999931],[113.7631841000001,-2.398832],[113.94134660000009,-2.3982655],[113.97467660000007,-2.390924499999926],[113.99598290000006,-2.391202699999951],[114.02705880000008,-2.396727299999952],[114.02915580000001,-2.391129399999954],[114.02601730000003,-2.374117599999977],[114.0301601000001,-2.292223499999977],[114.07064230000003,-2.263466499999936],[114.08486550000009,-2.251086899999962],[114.10679220000009,-2.198124299999961],[114.07728370000007,-2.187734399999954],[114.0618237000001,-2.185400199999947],[114.03523570000004,-2.174075399999936],[114.00265690000003,-2.169295599999941],[113.93779630000006,-2.163677099999973],[113.92711910000003,-2.142768899999965],[113.87870880000003,-2.074631099999976],[113.83103810000011,-2.004259599999955],[113.81938460000003,-1.978877599999976],[113.81488260000003,-1.9555315],[113.82206840000003,-1.895313599999952],[113.82372260000011,-1.8695584],[113.82275070000003,-1.840416599999969],[113.81837610000002,-1.788869399999953],[113.80764520000002,-1.755062399999929],[113.80475450000006,-1.740814599999965],[113.80703820000008,-1.706465699999967],[113.82719020000002,-1.631074599999977],[113.79911130000005,-1.630108699999937],[113.7577414000001,-1.623507599999925],[113.73706590000006,-1.624283499999933],[113.70442130000004,-1.630635599999948],[113.66695860000004,-1.644532],[113.6001652000001,-1.655255899999929],[113.58847910000009,-1.653454199999942],[113.583271,-1.650735399999974],[113.57683550000002,-1.643475399999943],[113.56705540000007,-1.637074799999937],[113.56285960000002,-1.636973299999966],[113.552091,-1.641864799999951],[113.5448153000001,-1.6470441],[113.53330210000001,-1.656251599999962],[113.5191400000001,-1.670860599999969],[113.50734840000007,-1.670234499999935],[113.5018741,-1.667248399999949],[113.49205720000009,-1.657501099999934]]]},"properties":{"shapeName":"Kota Palangka Raya","shapeISO":"","shapeID":"22746128B32314319614882","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[104.64494390000004,-3.0254487],[104.65478360000009,-3.032319299999926],[104.66407260000005,-3.041748599999949],[104.69045010000008,-3.056024199999968],[104.70964050000003,-3.066543],[104.71396070000009,-3.0669274],[104.71790960000004,-3.069621599999948],[104.71980880000007,-3.073817799999972],[104.71548710000008,-3.079268799999966],[104.71815450000008,-3.085564399999953],[104.718894,-3.090218499999935],[104.71781670000007,-3.0911261],[104.719399,-3.094524099999944],[104.72669760000008,-3.088444899999956],[104.72853150000009,-3.074052199999926],[104.73172390000008,-3.072537699999941],[104.73358770000004,-3.068614],[104.73823070000009,-3.068615199999954],[104.74408810000006,-3.063881899999956],[104.74368180000005,-3.047953299999961],[104.74796820000006,-3.045097399999975],[104.750741,-3.039416099999926],[104.770527,-3.037955199999942],[104.77426260000004,-3.032401499999935],[104.77500160000005,-3.034210799999926],[104.77937630000008,-3.034354],[104.78157160000006,-3.040653499999962],[104.780745,-3.052094499999953],[104.78205150000008,-3.051109099999962],[104.790323,-3.052088199999957],[104.79735750000003,-3.0347769],[104.80096380000003,-3.0371224],[104.80657590000004,-3.036386],[104.80651810000006,-3.038580499999966],[104.80989670000008,-3.038965399999938],[104.81361440000006,-3.034046799999942],[104.81215510000004,-3.027862699999957],[104.81443780000006,-3.026219699999956],[104.81833290000009,-3.027279399999941],[104.823744,-3.024793799999941],[104.82966510000006,-3.018552099999965],[104.83188090000004,-3.014007399999969],[104.83620640000004,-3.013808599999948],[104.83890770000005,-3.006420699999978],[104.83640630000008,-3.006520099999932],[104.83311780000008,-3.010697899999968],[104.82423170000004,-3.010743699999978],[104.83204180000007,-3.004414399999973],[104.83388480000008,-2.987880299999972],[104.83994090000004,-2.988408],[104.85540240000006,-2.979546099999936],[104.86087750000007,-2.971862699999974],[104.86573370000008,-2.957014399999935],[104.86463910000003,-2.951981499999931],[104.86010250000004,-2.947039199999949],[104.84737520000004,-2.956117699999936],[104.84819670000007,-2.952403199999935],[104.84727610000004,-2.952403],[104.851939,-2.944818299999952],[104.85054580000008,-2.942165399999965],[104.85142120000006,-2.924949],[104.84984240000006,-2.924750299999971],[104.81468230000007,-2.944263],[104.81422090000007,-2.938967199999979],[104.80837810000008,-2.940015199999948],[104.79524480000003,-2.921852799999954],[104.80386550000009,-2.9218543],[104.80632970000005,-2.914838299999928],[104.81105760000008,-2.909407499999929],[104.79039030000007,-2.904029699999967],[104.78944750000005,-2.907568699999956],[104.78333840000005,-2.912660199999948],[104.78337580000004,-2.9160102],[104.77864250000005,-2.914957399999935],[104.77396510000005,-2.918789899999979],[104.77128320000008,-2.919033299999967],[104.76853260000007,-2.915082],[104.75646080000007,-2.915255499999944],[104.75642940000006,-2.903896299999928],[104.75158250000004,-2.900601299999948],[104.74915480000004,-2.893556499999931],[104.741361,-2.893904099999929],[104.73770950000005,-2.892674499999941],[104.73521130000006,-2.890129799999954],[104.734636,-2.885169099999928],[104.73017760000005,-2.882781499999965],[104.730094,-2.877752799999939],[104.70998860000009,-2.873079899999937],[104.70526810000007,-2.869362899999942],[104.70422130000009,-2.864693099999954],[104.67492860000004,-2.865443299999924],[104.67445050000003,-2.871154799999942],[104.67181420000009,-2.872117799999955],[104.66898850000007,-2.8768671],[104.666847,-2.883372],[104.66940760000006,-2.888722499999972],[104.67371440000005,-2.890405199999975],[104.67635440000004,-2.894226899999978],[104.67532640000007,-2.896249499999954],[104.67746360000007,-2.899096],[104.67460590000007,-2.903644699999973],[104.67907480000008,-2.906398],[104.67852520000008,-2.914679399999955],[104.67511840000009,-2.916971399999966],[104.675006,-2.923345299999937],[104.67645940000006,-2.926481699999954],[104.67477190000005,-2.9270585],[104.676768,-2.935539699999936],[104.66219960000006,-2.928338199999928],[104.65619960000004,-2.922854199999961],[104.65169950000006,-2.921211199999959],[104.64769960000007,-2.922300199999938],[104.64409960000006,-2.925896199999954],[104.64297250000004,-2.932392599999957],[104.63778070000006,-2.930133],[104.63366690000004,-2.936342099999933],[104.62918560000008,-2.954142399999967],[104.62907030000008,-2.961602399999947],[104.62719960000004,-2.962212199999954],[104.62739960000005,-2.965287199999977],[104.62359960000003,-2.974960199999941],[104.62299960000007,-2.9913392],[104.62579960000005,-3.000581199999942],[104.64494390000004,-3.0254487]]]},"properties":{"shapeName":"Kota Palembang","shapeISO":"","shapeID":"22746128B50898409603973","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[120.20237430000009,-2.966088199999945],[120.20307420000006,-2.964871099999925],[120.19935440000006,-2.961874499999965],[120.200027,-2.966320499999938],[120.20237430000009,-2.966088199999945]]],[[[120.20115220000002,-2.958371799999952],[120.20125440000004,-2.959900499999947],[120.20376940000006,-2.959427299999959],[120.20115220000002,-2.958371799999952]]],[[[120.22982710000008,-2.952630399999975],[120.22768890000009,-2.950876499999936],[120.22711460000005,-2.948084299999948],[120.22418370000003,-2.947009],[120.22627910000006,-2.944339799999966],[120.22492090000003,-2.9426225],[120.22860890000004,-2.942693],[120.22677570000008,-2.940759499999956],[120.22733640000001,-2.9396226],[120.232783,-2.939971899999932],[120.22959020000008,-2.935782099999926],[120.23048160000008,-2.934165099999973],[120.22777950000011,-2.933866399999943],[120.2286514000001,-2.932648299999926],[120.22615430000008,-2.929303899999979],[120.22665110000003,-2.926788299999942],[120.2244353000001,-2.927444499999979],[120.223415,-2.925118199999929],[120.222282,-2.927291],[120.220804,-2.923934399999951],[120.21899220000012,-2.924572399999931],[120.2197857000001,-2.921704099999943],[120.21812890000001,-2.921172399999932],[120.21569550000004,-2.912750899999935],[120.21821850000003,-2.907541799999933],[120.2173345000001,-2.903391899999974],[120.22080330000006,-2.902552599999979],[120.21700650000002,-2.896355599999936],[120.2083268,-2.894621899999947],[120.19946230000005,-2.890207399999952],[120.19275560000005,-2.891580699999963],[120.187431,-2.890402199999926],[120.18278260000011,-2.891434],[120.18196850000004,-2.890338699999973],[120.1797199,-2.891731399999969],[120.17739330000006,-2.887598799999978],[120.17420250000009,-2.889215199999967],[120.171658,-2.886699499999963],[120.15941910000004,-2.889272299999959],[120.14679640000008,-2.897374199999945],[120.14328990000001,-2.896409899999981],[120.1399775000001,-2.903278199999932],[120.13595410000005,-2.903509799999938],[120.123753,-2.909673299999952],[120.11402370000008,-2.911422399999935],[120.09815930000002,-2.918323699999974],[120.09414820000006,-2.917771799999969],[120.08343260000004,-2.931989099999953],[120.07959670000002,-2.930903199999932],[120.07615460000011,-2.933985199999938],[120.07083840000007,-2.934924],[120.06583970000008,-2.942530899999952],[120.06339620000006,-2.943495899999959],[120.0608357000001,-2.948656],[120.05580150000003,-2.953200899999956],[120.048287,-2.954007299999944],[120.0509158000001,-2.960326799999962],[120.05707010000003,-2.964290399999925],[120.05906130000005,-2.967717099999959],[120.05262190000008,-2.982793099999981],[120.05301410000004,-2.984421],[120.05623040000012,-2.987668699999972],[120.06240690000004,-2.990296199999932],[120.06180580000012,-2.991888199999948],[120.07179750000012,-3.000977399999954],[120.0774335000001,-3.002023799999961],[120.0842857,-3.006411499999956],[120.08314610000002,-3.012269799999956],[120.0859699,-3.021725199999935],[120.082895,-3.0310729],[120.0846120000001,-3.030877199999964],[120.08707210000011,-3.034322599999939],[120.09313910000003,-3.035670899999957],[120.10004490000006,-3.047436],[120.11246370000003,-3.056209599999931],[120.11766160000002,-3.0654095],[120.12353440000004,-3.069069599999978],[120.12672320000001,-3.075616499999967],[120.13426640000012,-3.080255099999931],[120.13590990000012,-3.084978399999954],[120.13877590000004,-3.086845799999935],[120.14851410000006,-3.0809641],[120.15032040000006,-3.072807799999964],[120.1534352000001,-3.073302699999942],[120.1544642,-3.070662199999958],[120.1602114000001,-3.071822699999927],[120.16373050000004,-3.068827299999953],[120.16563170000006,-3.057277099999965],[120.1778604000001,-3.053663299999926],[120.18471870000008,-3.055497699999933],[120.1892587000001,-3.054495699999961],[120.1944165000001,-3.05773],[120.19848410000009,-3.0566947],[120.20759190000001,-3.059616199999937],[120.215991,-3.0567147],[120.2294726,-3.043252299999949],[120.226886,-3.030552],[120.22236350000003,-3.020699099999945],[120.22371810000004,-3.019555799999978],[120.22182170000008,-3.007584399999928],[120.2193635000001,-3.004721],[120.217711,-3.004836099999977],[120.21735380000007,-3.001277099999925],[120.21101740000006,-2.9981786],[120.2118944,-2.995879899999977],[120.21336610000003,-2.995683699999972],[120.21236050000005,-2.993840199999966],[120.20832240000004,-2.993042],[120.20694430000003,-2.991402699999981],[120.21082070000011,-2.987415699999929],[120.20998350000002,-2.986441199999945],[120.20304650000003,-2.989861],[120.20171710000011,-2.987946099999931],[120.20317050000006,-2.986359399999969],[120.19983880000007,-2.986084299999959],[120.19744450000007,-2.9837648],[120.1974216000001,-2.980966499999965],[120.19376190000003,-2.9815867],[120.190458,-2.980123399999968],[120.1881777000001,-2.9771153],[120.188061,-2.973147299999937],[120.18907,-2.968331899999953],[120.19299380000007,-2.961944899999935],[120.19904230000009,-2.960776399999929],[120.19939850000003,-2.957290099999966],[120.2096745,-2.956878499999959],[120.21147090000011,-2.954674399999931],[120.21625510000001,-2.956981299999939],[120.2230171000001,-2.9548019],[120.2255106,-2.956571099999962],[120.2275026000001,-2.956196399999953],[120.22982710000008,-2.952630399999975]]]]},"properties":{"shapeName":"Kota Palopo","shapeISO":"","shapeID":"22746128B88208751369041","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[119.78140090000011,-0.897577199999944],[119.78354880000006,-0.887191399999949],[119.79604790000008,-0.871304799999962],[119.80046330000005,-0.869078499999944],[119.81169140000009,-0.867781899999954],[119.81708070000002,-0.873245099999963],[119.8223044,-0.874076799999955],[119.8246554000001,-0.881651799999929],[119.82653560000006,-0.881744499999968],[119.82468460000007,-0.881731299999956],[119.82719070000007,-0.904634199999975],[119.83252030000006,-0.9047618],[119.83277620000001,-0.909750199999962],[119.82781920000002,-0.911081],[119.83069310000008,-0.941836599999931],[119.85121920000006,-0.934674799999925],[119.86205280000001,-0.933128],[119.862222,-0.925270099999977],[119.87586770000007,-0.922522399999934],[119.88058630000012,-0.9266455],[119.8815489000001,-0.9322979],[119.88593260000005,-0.932028],[119.90502570000001,-0.942853699999944],[119.93330230000004,-0.944360399999937],[119.93724810000003,-0.940907799999934],[119.92928080000002,-0.920839],[119.94802550000009,-0.9130963],[119.95475850000003,-0.914446299999952],[119.95831550000003,-0.916979699999956],[119.96403390000012,-0.9129206],[119.9765344000001,-0.913150599999938],[119.99594840000009,-0.904202399999974],[120.00339640000004,-0.902570399999945],[120.00572740000007,-0.899586399999976],[120.0097654000001,-0.898318399999937],[120.00940440000011,-0.8953374],[120.01820040000007,-0.895691399999976],[120.01685140000006,-0.892982399999937],[120.01738640000008,-0.888464399999975],[120.02320340000006,-0.884276399999976],[120.023307,-0.882681299999945],[120.02291480000008,-0.879894499999978],[120.03134060000002,-0.880563699999925],[120.0323714000001,-0.873968499999933],[120.03893120000009,-0.868364799999938],[120.03710760000001,-0.862126199999977],[120.03421220000007,-0.858040599999924],[120.03675480000004,-0.848003299999959],[120.033967,-0.841317699999934],[120.03415210000003,-0.833331],[120.02746290000005,-0.817805699999951],[120.0271014000001,-0.811788899999954],[120.0148994000001,-0.794505699999945],[120.0002161000001,-0.793766599999969],[119.9924701000001,-0.795170299999938],[119.98710210000002,-0.801481299999978],[119.98002710000003,-0.803302299999928],[119.97742610000012,-0.806728299999975],[119.97406080000007,-0.808264399999928],[119.95446880000009,-0.797540399999946],[119.93974880000007,-0.798566499999936],[119.9340724000001,-0.796805199999937],[119.92728540000007,-0.792070299999978],[119.91963080000005,-0.794168699999943],[119.92106460000002,-0.7928323],[119.9165134000001,-0.789059799999961],[119.91397050000012,-0.782916499999942],[119.91272460000005,-0.773802599999954],[119.90357090000009,-0.777996799999926],[119.88656810000009,-0.778194699999972],[119.88735940000004,-0.774187],[119.88549310000008,-0.771545899999978],[119.87414060000003,-0.769138299999952],[119.87284620000003,-0.766135299999974],[119.87715140000012,-0.767511099999979],[119.87734560000001,-0.765278899999942],[119.89529510000011,-0.7512417],[119.87814490000005,-0.739225699999963],[119.87836960000004,-0.732916799999941],[119.88278450000007,-0.731677899999966],[119.8828473000001,-0.728585399999929],[119.87663750000002,-0.729645499999947],[119.87794520000011,-0.727651799999933],[119.88179780000007,-0.726473899999974],[119.88900910000007,-0.729022899999961],[119.89341510000008,-0.72902],[119.90643970000008,-0.719160699999975],[119.94135570000003,-0.714958499999966],[119.9497407,-0.705601499999943],[119.95538470000008,-0.703438499999947],[119.96050770000011,-0.698086499999931],[119.96154270000011,-0.691743499999973],[119.95998170000007,-0.687308399999949],[119.95686770000009,-0.687508399999956],[119.95162870000001,-0.690517399999976],[119.9536058000001,-0.688314399999967],[119.9547708,-0.680715099999929],[119.92592660000003,-0.6966442],[119.918985,-0.698726699999952],[119.89761850000002,-0.698279899999932],[119.87187810000012,-0.695095299999934],[119.87174880000009,-0.688933399999939],[119.87474480000003,-0.681833799999936],[119.89610660000005,-0.668905199999926],[119.909567,-0.657123799999965],[119.91988040000001,-0.650458599999979],[119.92497120000007,-0.644826599999931],[119.92826560000003,-0.635382599999957],[119.92357770000001,-0.636747299999968],[119.915242,-0.635064399999976],[119.91068570000004,-0.636514899999952],[119.90444860000002,-0.634763699999951],[119.89857280000001,-0.635793],[119.89197860000002,-0.638817299999971],[119.88844360000007,-0.643892],[119.87950970000009,-0.6451628],[119.874987,-0.648145],[119.86982950000004,-0.6579665],[119.85993080000003,-0.658616499999937],[119.8550451000001,-0.662707099999977],[119.85976570000003,-0.669042199999978],[119.85472870000001,-0.671882899999957],[119.85010770000008,-0.691017699999975],[119.8436623,-0.696802099999957],[119.8446014000001,-0.702396399999941],[119.86274020000008,-0.7136325],[119.86333940000009,-0.717928799999925],[119.86144710000008,-0.718185399999925],[119.862676,-0.718842399999971],[119.8586676000001,-0.7242464],[119.8546794,-0.735306],[119.85542880000003,-0.7428619],[119.86114570000007,-0.751055799999961],[119.86215930000003,-0.755607599999962],[119.85901680000006,-0.764549599999953],[119.85915850000004,-0.777697099999955],[119.86309490000008,-0.788089699999944],[119.8720502000001,-0.797210599999971],[119.87844380000001,-0.801232],[119.8784918,-0.810440599999936],[119.880428,-0.817729399999962],[119.88422350000008,-0.821484699999928],[119.88095480000004,-0.8291856],[119.882243,-0.833736099999953],[119.87928970000007,-0.856910399999947],[119.88101090000009,-0.860265499999969],[119.87998750000008,-0.863315899999975],[119.87431010000012,-0.868898699999932],[119.87367840000002,-0.876641599999971],[119.87116430000003,-0.883080499999949],[119.86564470000008,-0.884987699999954],[119.86232390000009,-0.883776099999977],[119.86017570000001,-0.884742299999971],[119.84591920000003,-0.882945],[119.83884770000009,-0.879111],[119.82496050000009,-0.845985199999973],[119.82055850000006,-0.843609699999945],[119.81602620000001,-0.8381672],[119.8168157,-0.837321799999927],[119.81301140000005,-0.827665699999955],[119.81282950000002,-0.807720899999936],[119.8081992000001,-0.801371],[119.80539920000001,-0.802651199999957],[119.80161070000008,-0.811402699999974],[119.7966163000001,-0.817305399999952],[119.78923760000009,-0.820265899999924],[119.78605570000002,-0.819680699999935],[119.77818710000008,-0.821538699999962],[119.76531140000009,-0.829748399999971],[119.7596172000001,-0.834990699999935],[119.7605172000001,-0.838062799999932],[119.76662620000002,-0.844473799999946],[119.76498530000003,-0.852113599999939],[119.77028010000004,-0.860501399999976],[119.76985270000011,-0.864555099999961],[119.77303110000003,-0.864271],[119.76710230000003,-0.871456],[119.76653280000005,-0.882318599999962],[119.7686318000001,-0.886970899999938],[119.7684269,-0.893233399999929],[119.78140090000011,-0.897577199999944]]]},"properties":{"shapeName":"Kota Palu","shapeISO":"","shapeID":"22746128B86990303792027","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[106.08892690000005,-2.144545899999969],[106.09866980000004,-2.146726599999965],[106.10326780000008,-2.149981699999955],[106.10369160000005,-2.1546134],[106.10888880000005,-2.1525285],[106.11238550000007,-2.154742399999975],[106.11784370000004,-2.154462899999942],[106.12565480000006,-2.1513717],[106.133026,-2.145985199999927],[106.15627650000005,-2.161192399999948],[106.15913860000006,-2.155937799999947],[106.174308,-2.155007799999964],[106.17751590000006,-2.148522499999956],[106.17623150000009,-2.136039199999971],[106.17801380000009,-2.132479099999955],[106.18208820000007,-2.131401699999969],[106.17794580000009,-2.127649],[106.16712280000007,-2.103483799999935],[106.163499,-2.098684299999945],[106.16537870000008,-2.0931634],[106.160135,-2.0904463],[106.15129250000007,-2.082619199999954],[106.14773480000008,-2.083301899999981],[106.13580090000005,-2.097142399999939],[106.131956,-2.097620599999971],[106.12841,-2.0956781],[106.12758950000006,-2.089735399999938],[106.13864730000006,-2.082314399999973],[106.14145760000008,-2.0769526],[106.14027120000009,-2.070124],[106.13332480000008,-2.059042],[106.13018730000005,-2.057401699999957],[106.12140560000006,-2.063351299999965],[106.11779720000004,-2.064110299999925],[106.11590940000008,-2.067828899999938],[106.11131420000004,-2.070555299999967],[106.10961690000005,-2.0702323],[106.10937790000008,-2.066342299999974],[106.10628410000004,-2.0657609],[106.10317410000005,-2.072808699999939],[106.10375480000005,-2.073845699999936],[106.10811480000007,-2.072675599999968],[106.10813930000006,-2.076933199999928],[106.10573460000006,-2.078836799999976],[106.10350030000006,-2.078492599999947],[106.10124690000004,-2.081649499999969],[106.09853940000005,-2.080592399999944],[106.09974090000009,-2.078473599999938],[106.09804170000007,-2.075362599999949],[106.09482080000004,-2.077374799999973],[106.09166190000008,-2.075885699999958],[106.08980280000009,-2.078234699999939],[106.07447620000005,-2.076301899999976],[106.06956940000003,-2.074794399999973],[106.06596320000006,-2.0717952],[106.06532990000005,-2.069088499999964],[106.05994530000004,-2.067038899999943],[106.05692330000005,-2.073928899999942],[106.05108760000007,-2.076884899999925],[106.04519490000007,-2.075083499999948],[106.04269360000006,-2.077502599999946],[106.04036260000004,-2.081347199999925],[106.04261440000005,-2.086002299999961],[106.04115550000006,-2.092604699999924],[106.04908460000007,-2.099014799999964],[106.04535420000008,-2.106308199999944],[106.04052020000006,-2.110162299999956],[106.040137,-2.112998399999981],[106.05570560000007,-2.118620699999951],[106.06517590000004,-2.125220399999932],[106.08215320000005,-2.127417799999932],[106.08900460000007,-2.1354204],[106.08892690000005,-2.144545899999969]]]},"properties":{"shapeName":"Kota Pangkal Pinang","shapeISO":"","shapeID":"22746128B50147325231570","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[119.70721810000009,-4.079323099999954],[119.71458440000004,-4.076785099999938],[119.7150421,-4.072540299999957],[119.70841220000011,-4.070899499999939],[119.70649630000003,-4.060571599999946],[119.69792780000012,-4.051532],[119.6978262,-4.045417499999928],[119.701724,-4.040158299999973],[119.698555,-4.039225099999953],[119.69795450000004,-4.03425],[119.70052830000009,-4.030609199999958],[119.69939420000003,-4.022718399999974],[119.70218510000007,-4.021703],[119.70187980000003,-4.019241399999942],[119.6956024000001,-4.01788],[119.69852530000003,-4.013751599999978],[119.69353120000005,-4.016140499999949],[119.6924146,-4.014410199999929],[119.6892782000001,-4.014334299999973],[119.68558660000008,-4.011508099999958],[119.689521,-4.008235599999978],[119.6909667000001,-4.001719499999979],[119.693161,-3.999815399999932],[119.69212530000004,-3.994567],[119.6856103,-3.993126599999925],[119.6832889000001,-3.986306099999979],[119.67069310000011,-3.973027899999977],[119.66408660000002,-3.961288899999943],[119.65142990000004,-3.9729005],[119.6452011,-3.973865199999977],[119.64037730000007,-3.979893699999934],[119.63609150000002,-3.980257599999959],[119.63570240000001,-3.982406099999935],[119.63461760000007,-3.983299],[119.6351929000001,-3.987747399999932],[119.62962880000009,-4.002982799999927],[119.62884540000005,-4.002092199999936],[119.62750340000002,-4.001395],[119.6292443000001,-4.002692699999955],[119.62662650000004,-4.003827399999977],[119.626318,-4.004292799999973],[119.6249716000001,-4.0045962],[119.62280730000009,-4.002180599999974],[119.62116460000004,-4.00232],[119.62189630000012,-4.005958499999963],[119.61989930000004,-4.014830199999949],[119.62392670000008,-4.023520899999937],[119.62408850000008,-4.0311436],[119.6259162,-4.037660199999948],[119.62364840000009,-4.047614799999963],[119.62087120000001,-4.048501699999974],[119.62139230000002,-4.049337],[119.61720170000001,-4.052469],[119.6219182000001,-4.056388699999957],[119.6228963000001,-4.059458],[119.62213310000004,-4.064691799999935],[119.62026170000001,-4.067138599999964],[119.62596310000004,-4.069884499999944],[119.62639090000005,-4.071992499999965],[119.62929250000002,-4.074185099999966],[119.63649520000001,-4.074492799999973],[119.64057350000007,-4.076957599999957],[119.65272550000009,-4.076121699999931],[119.66963120000003,-4.072307199999955],[119.67648970000005,-4.073499699999957],[119.68174920000001,-4.076284699999974],[119.69857470000011,-4.0763494],[119.70458860000008,-4.079369499999927],[119.70721810000009,-4.079323099999954]]]},"properties":{"shapeName":"Kota Parepare","shapeISO":"","shapeID":"22746128B21712473548198","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[100.11169430000007,-0.661377],[100.11212160000008,-0.659912099999929],[100.11071780000003,-0.658874499999968],[100.10968020000007,-0.660278299999959],[100.11169430000007,-0.661377]]],[[[100.102478,-0.647888199999954],[100.10290530000003,-0.646301299999948],[100.10107420000008,-0.645996099999934],[100.10107420000008,-0.647888199999954],[100.102478,-0.647888199999954]]],[[[100.09967040000004,-0.6343994],[100.10028080000006,-0.6328735],[100.09808350000009,-0.6328735],[100.09808350000009,-0.634216299999935],[100.09967040000004,-0.6343994]]],[[[100.15931780000005,-0.6756861],[100.158087,-0.669886199999951],[100.15469670000004,-0.668934899999954],[100.15354910000008,-0.665354499999978],[100.160664,-0.657256399999937],[100.16475090000006,-0.649801199999956],[100.17277,-0.652070099999946],[100.17308090000006,-0.6487133],[100.16861750000004,-0.644318299999952],[100.17233490000007,-0.643771299999969],[100.17405060000004,-0.632973499999935],[100.17686260000005,-0.630957699999954],[100.17313190000004,-0.627913599999943],[100.17377680000004,-0.622120199999927],[100.17686060000005,-0.621962799999949],[100.176514,-0.619777699999929],[100.17440480000005,-0.6202146],[100.17416670000006,-0.617938099999947],[100.18212910000005,-0.615744699999937],[100.18008310000005,-0.608357599999977],[100.17520640000004,-0.607759],[100.17303940000005,-0.605174499999976],[100.17363880000005,-0.600599],[100.17055550000003,-0.599836099999948],[100.16691730000008,-0.6034274],[100.16354750000005,-0.6005414],[100.16039160000008,-0.594320499999981],[100.15551350000004,-0.596186799999941],[100.15349620000006,-0.594983099999979],[100.15260480000006,-0.594275],[100.155098,-0.588910599999963],[100.14666320000003,-0.588366199999939],[100.14653150000004,-0.585196699999926],[100.14981470000004,-0.581796699999927],[100.14906830000007,-0.579276899999968],[100.15110960000004,-0.573340599999938],[100.14955070000008,-0.570699399999967],[100.14448410000006,-0.572714799999972],[100.14002780000004,-0.572206799999947],[100.13819950000004,-0.570051699999965],[100.13532490000006,-0.572379099999978],[100.131153,-0.571415099999967],[100.13210970000006,-0.562845599999946],[100.134817,-0.562218],[100.135896,-0.560394699999961],[100.13442810000004,-0.5527496],[100.13051590000003,-0.548608099999967],[100.12857640000004,-0.5485192],[100.12681760000004,-0.552402799999925],[100.12439640000008,-0.553796199999965],[100.12220540000004,-0.553332299999965],[100.12036090000004,-0.5554221],[100.10987350000005,-0.557772399999976],[100.10511240000005,-0.561954599999979],[100.10124810000008,-0.559649899999954],[100.09779030000004,-0.562536399999942],[100.09542620000008,-0.560853699999939],[100.09265890000006,-0.561608699999965],[100.09046840000008,-0.563814699999966],[100.09084660000008,-0.567970599999967],[100.11488120000007,-0.613346099999944],[100.11633090000004,-0.620492199999944],[100.11488330000009,-0.623587799999939],[100.11673680000007,-0.629793599999971],[100.12881960000004,-0.647144099999934],[100.14313470000008,-0.65908],[100.15931780000005,-0.6756861]]]]},"properties":{"shapeName":"Kota Pariaman","shapeISO":"","shapeID":"22746128B46933661776515","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[112.952441,-7.622285899999952],[112.9459399000001,-7.6173152],[112.94466450000004,-7.622873599999934],[112.93723000000011,-7.62541],[112.93676590000007,-7.630267199999935],[112.93492930000002,-7.631501499999956],[112.92749,-7.6312],[112.91944290000004,-7.626942399999962],[112.90885420000006,-7.6289153],[112.90277320000007,-7.625819699999965],[112.90088710000009,-7.628906799999982],[112.89422880000006,-7.625187],[112.8919227,-7.626917299999945],[112.88634160000004,-7.623549499999967],[112.88408220000008,-7.628619499999957],[112.88539590000005,-7.629169299999944],[112.88433240000006,-7.631822199999931],[112.87888910000004,-7.630344],[112.8778228000001,-7.627007299999946],[112.87493130000007,-7.626305399999978],[112.872367,-7.634175599999935],[112.87539660000004,-7.636422899999957],[112.87601460000008,-7.6395967],[112.87153930000011,-7.651207],[112.8738148000001,-7.652397299999961],[112.8721475000001,-7.657107099999962],[112.87293270000009,-7.660940699999969],[112.87849470000003,-7.655106399999966],[112.88700740000002,-7.660012299999948],[112.88694070000008,-7.662420599999962],[112.882553,-7.661311399999931],[112.88151510000012,-7.664519299999938],[112.88606140000002,-7.667048799999975],[112.88399570000001,-7.671052799999927],[112.88126090000003,-7.671903399999962],[112.88462060000006,-7.673578099999929],[112.88647660000004,-7.672435],[112.89069070000005,-7.673047899999972],[112.89069360000008,-7.675494499999957],[112.89479140000003,-7.676908799999978],[112.89638510000009,-7.682747199999937],[112.89522540000007,-7.685472799999957],[112.9012196000001,-7.686400499999934],[112.90798660000007,-7.679231],[112.91410140000005,-7.679504099999974],[112.91519770000002,-7.677850199999966],[112.9170643000001,-7.678738599999974],[112.91852310000002,-7.673972599999956],[112.92273770000008,-7.676017699999932],[112.928604,-7.667230399999937],[112.9319686,-7.668725799999947],[112.93797290000009,-7.660438799999952],[112.93699640000011,-7.6543067],[112.93922,-7.654531499999962],[112.94551500000011,-7.651418399999955],[112.94389330000001,-7.648474499999963],[112.946411,-7.643983099999957],[112.946701,-7.638933899999927],[112.952255,-7.633042099999955],[112.952441,-7.622285899999952]]]},"properties":{"shapeName":"Kota Pasuruan","shapeISO":"","shapeID":"22746128B17042466749212","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.65589790000007,-0.188157],[100.63635830000004,-0.184086299999933],[100.63239130000005,-0.187094699999932],[100.63157080000008,-0.194430799999964],[100.61950130000008,-0.194117799999958],[100.617385,-0.195665499999961],[100.61191370000006,-0.1949811],[100.60613260000008,-0.196653199999957],[100.60646690000004,-0.193247699999972],[100.60286320000006,-0.193482699999947],[100.59843450000005,-0.191443499999934],[100.59263160000006,-0.193327199999942],[100.589076,-0.1980627],[100.58593840000003,-0.198177299999941],[100.58358990000005,-0.201434799999959],[100.58317940000006,-0.210182399999951],[100.59932450000008,-0.219542899999965],[100.58610330000005,-0.237417899999969],[100.57957750000008,-0.2429733],[100.59073180000007,-0.247341699999936],[100.59857840000006,-0.262211599999944],[100.59840560000004,-0.264953],[100.60348810000005,-0.267451599999958],[100.60576230000004,-0.270459799999969],[100.61869090000005,-0.274905399999966],[100.622589,-0.271758899999952],[100.63428670000008,-0.268047699999954],[100.64610560000006,-0.274182199999927],[100.64936150000005,-0.273883599999976],[100.64729830000005,-0.270566699999961],[100.64908470000006,-0.265474899999958],[100.64617870000006,-0.249975699999936],[100.66061740000004,-0.241014099999973],[100.66747680000003,-0.243333],[100.66742290000008,-0.238192699999956],[100.677429,-0.2313968],[100.67528740000006,-0.220375],[100.67723160000008,-0.214512199999945],[100.68534380000006,-0.216153299999974],[100.68592920000003,-0.2120728],[100.68436160000005,-0.207181799999944],[100.68032490000007,-0.204743899999926],[100.67973410000008,-0.201393499999938],[100.67740240000006,-0.199023799999964],[100.67760790000005,-0.192311],[100.67075420000003,-0.189139],[100.66270410000004,-0.190320499999928],[100.66273570000004,-0.187477099999967],[100.66113050000007,-0.186161199999958],[100.659579,-0.18777],[100.65767210000007,-0.187034299999937],[100.65589790000007,-0.188157]]]},"properties":{"shapeName":"Kota Payakumbuh","shapeISO":"","shapeID":"22746128B61032359566288","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[109.71420790000008,-6.868008399999951],[109.70856810000004,-6.866063299999951],[109.70520710000005,-6.862702299999967],[109.69444790000006,-6.8592509],[109.69240150000007,-6.858075499999927],[109.69259290000008,-6.856697599999961],[109.69058020000006,-6.859166699999946],[109.68215,-6.85844],[109.67449170000003,-6.856462099999931],[109.66581340000005,-6.851931],[109.66322330000008,-6.859332499999937],[109.66001130000006,-6.859294399999953],[109.65964510000003,-6.864254],[109.66082030000007,-6.866506499999957],[109.658249,-6.870655199999931],[109.66016390000004,-6.872869899999955],[109.66432290000006,-6.874162299999966],[109.663048,-6.8778645],[109.65625340000008,-6.875809899999979],[109.65377340000003,-6.878949199999965],[109.64720910000005,-6.879828299999929],[109.64795010000006,-6.8861648],[109.65051620000008,-6.886022899999944],[109.65110020000009,-6.887888399999952],[109.64753720000004,-6.888674699999967],[109.64602430000008,-6.8939679],[109.64331750000008,-6.893331599999954],[109.64403570000007,-6.8955051],[109.64809420000006,-6.896807599999931],[109.64775090000006,-6.902554],[109.64909660000006,-6.902778699999942],[109.64906040000005,-6.904363599999954],[109.64522530000005,-6.905351099999962],[109.64426920000005,-6.911510599999929],[109.64685850000006,-6.9127594],[109.64214330000004,-6.917387],[109.64475540000007,-6.9210543],[109.64840320000008,-6.922312199999965],[109.65697560000007,-6.922035499999936],[109.65870450000006,-6.920044299999972],[109.66383390000004,-6.922076699999934],[109.665236,-6.920875599999931],[109.66892,-6.9222459],[109.6691,-6.92703],[109.66739670000004,-6.928159499999936],[109.66907170000007,-6.93426],[109.67113410000007,-6.935710699999959],[109.67100970000007,-6.930057599999941],[109.67395220000009,-6.928977399999951],[109.67511040000005,-6.930606199999943],[109.67291140000009,-6.932146199999977],[109.67564290000007,-6.933771299999933],[109.67506060000005,-6.934596499999941],[109.68083610000008,-6.934966499999973],[109.67845030000007,-6.933591699999965],[109.680989,-6.933698299999946],[109.68120160000007,-6.9310933],[109.68714520000009,-6.930867199999966],[109.68820990000006,-6.933226699999977],[109.69527290000008,-6.928376499999956],[109.69695050000007,-6.921028799999931],[109.69474410000004,-6.912401299999942],[109.69791410000005,-6.911790799999949],[109.69804380000005,-6.910357],[109.70089060000004,-6.909379399999978],[109.70104690000005,-6.907026499999972],[109.70529170000009,-6.904263],[109.70568210000005,-6.901790299999959],[109.70382550000005,-6.901274399999977],[109.70345220000007,-6.898563799999977],[109.70679480000007,-6.894281299999932],[109.707222,-6.889616499999931],[109.70952610000006,-6.888666099999966],[109.71141050000006,-6.883685499999956],[109.70678710000004,-6.878552399999933],[109.70933530000008,-6.872526599999958],[109.71017460000007,-6.871576799999957],[109.71213530000006,-6.872531399999957],[109.71420790000008,-6.868008399999951]]]},"properties":{"shapeName":"Kota Pekalongan","shapeISO":"","shapeID":"22746128B51496435564823","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[101.57414740000007,0.454135],[101.57031050000006,0.462699],[101.56912440000008,0.468660800000066],[101.57035220000006,0.470719200000076],[101.57430570000008,0.472801600000025],[101.58569080000007,0.47184580000004],[101.58855480000005,0.474109400000032],[101.58390920000005,0.48912050000007],[101.57987060000005,0.496733200000051],[101.58243,0.501596800000073],[101.58206930000006,0.506903900000054],[101.58807910000007,0.516700600000036],[101.588932,0.52794],[101.59201080000008,0.530542],[101.59257950000006,0.533677500000067],[101.58838310000004,0.539286900000036],[101.58835210000007,0.542306],[101.57858410000006,0.542460800000072],[101.57578870000003,0.550627100000042],[101.57941320000003,0.556889900000044],[101.58196030000005,0.558667900000046],[101.57995040000009,0.570998400000065],[101.58522410000006,0.574742400000048],[101.58600070000006,0.577551800000037],[101.58445350000005,0.585045200000025],[101.58181550000006,0.58816870000004],[101.578501,0.597092400000065],[101.58445040000004,0.595322100000033],[101.58811080000004,0.596825400000057],[101.59035120000004,0.600612],[101.59143410000007,0.606591500000036],[101.58806270000008,0.609827900000028],[101.58081650000008,0.612757800000054],[101.57559860000003,0.617653],[101.57130980000005,0.624804400000073],[101.57420180000008,0.632887400000072],[101.57139620000004,0.638686700000051],[101.56921930000004,0.640307800000073],[101.56381930000003,0.640944800000057],[101.55983990000004,0.637952300000052],[101.554931,0.637182300000063],[101.549801,0.638430100000051],[101.54590340000004,0.642240500000071],[101.54445550000008,0.649845300000038],[101.54028440000008,0.658007200000043],[101.51875210000009,0.656989600000031],[101.49815690000008,0.659515900000031],[101.49607160000005,0.655886900000041],[101.49199250000004,0.654435100000057],[101.48907770000005,0.651272200000051],[101.48429150000004,0.654884500000037],[101.48449490000007,0.659672700000044],[101.45709930000004,0.661824300000035],[101.44073560000004,0.665977100000021],[101.42640440000008,0.674706400000048],[101.41781390000006,0.684935300000063],[101.41499740000006,0.682822500000043],[101.41131340000004,0.683525600000053],[101.40715160000008,0.688265100000024],[101.40147080000008,0.689093900000046],[101.39726980000006,0.692421],[101.38631240000007,0.686529500000063],[101.38224020000007,0.681218200000046],[101.37776030000003,0.66870670000003],[101.37819080000008,0.662582100000066],[101.38038080000007,0.661735200000066],[101.38152590000004,0.658164],[101.38017340000005,0.655380100000059],[101.37693530000007,0.653479400000037],[101.37738940000008,0.648791100000039],[101.37527360000007,0.644767900000033],[101.35864620000007,0.633020700000031],[101.34670240000008,0.620796],[101.34402210000007,0.620309600000041],[101.33352460000003,0.613325400000065],[101.32791570000006,0.606031100000052],[101.32804740000006,0.604966400000023],[101.33122010000005,0.604965100000072],[101.33214360000005,0.600706200000047],[101.32606180000005,0.598579600000051],[101.33068740000004,0.595783],[101.32870240000005,0.59072690000005],[101.335046,0.586865],[101.340069,0.586064400000055],[101.34125780000005,0.583668600000067],[101.33901060000005,0.583935600000075],[101.33729120000004,0.581674100000043],[101.34231350000005,0.579409700000042],[101.34508740000007,0.574085500000024],[101.34892070000006,0.573418500000059],[101.34944830000006,0.570623700000056],[101.35407330000004,0.566496500000028],[101.35579180000008,0.566495800000041],[101.35592520000006,0.569556500000033],[101.35883330000007,0.569289100000049],[101.36107830000009,0.563832200000036],[101.36464720000004,0.563298400000065],[101.36888740000006,0.559371200000044],[101.36833230000008,0.565545900000075],[101.370191,0.565779100000043],[101.37255990000006,0.563766700000031],[101.37232470000004,0.556563200000028],[101.37479410000009,0.554186],[101.37298870000006,0.549165500000072],[101.37065790000008,0.547294800000032],[101.37104740000007,0.544354500000054],[101.36777730000006,0.542152200000032],[101.36533270000007,0.536787900000036],[101.36294550000008,0.536071200000038],[101.36298540000007,0.498943900000029],[101.35940520000008,0.497647900000061],[101.35853330000003,0.501580200000035],[101.35606150000007,0.500629700000047],[101.35083240000006,0.494707700000049],[101.34968770000006,0.490554900000063],[101.35023070000005,0.479596300000026],[101.35390670000004,0.473240200000021],[101.35724170000003,0.471362500000055],[101.36286560000008,0.431954500000074],[101.37010690000005,0.435391100000061],[101.37044980000007,0.433974300000045],[101.38122020000009,0.434366900000043],[101.389023,0.43278250000003],[101.39071850000005,0.433213800000033],[101.391733,0.436455],[101.39803370000004,0.43278650000002],[101.403748,0.432288800000038],[101.42726890000006,0.422022200000072],[101.42872180000006,0.422677700000065],[101.43224840000005,0.421075300000041],[101.43079920000008,0.423661600000059],[101.43117740000008,0.427673900000059],[101.43753510000005,0.423903600000074],[101.43680960000006,0.422458300000073],[101.43956940000004,0.419861200000071],[101.44744360000004,0.416975],[101.44878180000006,0.419528300000025],[101.44529540000008,0.421482800000035],[101.44693290000004,0.422715400000072],[101.44866690000003,0.430479400000024],[101.44724940000003,0.432132300000035],[101.450559,0.434544200000062],[101.45107770000004,0.438665700000058],[101.45361630000008,0.442664800000045],[101.45609260000003,0.440786800000069],[101.46320340000005,0.440086300000075],[101.463405,0.441667100000075],[101.46526330000006,0.441847600000074],[101.46644780000008,0.444195700000023],[101.46749720000008,0.443764700000031],[101.47103880000009,0.447151500000075],[101.47697230000006,0.455950100000052],[101.48560110000005,0.452859],[101.49593150000004,0.44630490000003],[101.50543330000005,0.446065200000021],[101.510188,0.442833900000039],[101.51586240000006,0.442572300000052],[101.51586190000006,0.441014300000063],[101.52488790000007,0.436077700000055],[101.52746780000007,0.437894400000062],[101.52901410000004,0.433999],[101.55171130000008,0.432693],[101.55431930000003,0.431531300000074],[101.55695020000007,0.426773300000036],[101.56713420000005,0.425227600000028],[101.56810650000006,0.429202400000065],[101.56655350000005,0.430810400000041],[101.56707240000009,0.433981600000038],[101.56996460000005,0.436413500000072],[101.57011410000007,0.440360500000054],[101.56680460000007,0.447352700000067],[101.57108020000004,0.453374200000042],[101.57414740000007,0.454135]]]},"properties":{"shapeName":"Kota Pekanbaru","shapeISO":"","shapeID":"22746128B90393170293602","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[99.10191240000006,3.015847300000075],[99.10168920000007,3.017065900000034],[99.09417660000008,3.014228500000058],[99.09234260000005,3.010549900000058],[99.08909180000006,3.011040700000024],[99.08523380000008,3.015637900000058],[99.08219590000004,3.012873600000034],[99.07236880000005,3.013688600000023],[99.06696590000007,3.011305800000059],[99.063124,3.01274520000004],[99.061694,3.008572900000047],[99.05780640000006,3.006296600000042],[99.05466870000004,3.007912800000042],[99.05072710000007,3.006561100000056],[99.037063,3.006686],[99.03641370000008,3.001565700000072],[99.03753880000005,2.998748],[99.03092730000009,2.996456800000033],[99.02940260000008,2.99154],[99.02597610000004,2.99037160000006],[99.02499490000008,2.985788700000057],[99.02079280000004,2.981240200000059],[99.02283990000006,2.975905800000021],[99.02198020000009,2.971837200000039],[99.02593370000005,2.97236010000006],[99.02583120000008,2.968074400000035],[99.02467460000008,2.959984],[99.022256,2.957913700000063],[99.02218380000005,2.952351700000065],[99.02189680000004,2.953418400000032],[99.01897790000004,2.949448],[99.02069020000005,2.945227400000022],[99.02415340000005,2.942279500000041],[99.02476130000008,2.938589500000035],[99.02693890000006,2.939851600000054],[99.02908690000004,2.937090900000044],[99.03006090000008,2.93120140000002],[99.03304270000007,2.931201],[99.04122010000003,2.925491200000067],[99.041209,2.924296600000048],[99.03270280000004,2.919339800000046],[99.03881010000003,2.913701500000059],[99.03633380000008,2.912975900000049],[99.03430160000005,2.910207200000059],[99.03174760000007,2.910676200000069],[99.02592890000005,2.908666700000026],[99.02482370000007,2.904263900000046],[99.01672580000007,2.899502700000028],[99.01716170000009,2.893259500000056],[99.02764930000006,2.89930430000004],[99.02494210000003,2.892106300000023],[99.028028,2.892243300000075],[99.03505450000006,2.904585800000064],[99.03686120000003,2.904569],[99.03963680000004,2.908350400000074],[99.04604660000007,2.906458600000065],[99.04891550000008,2.907088600000066],[99.05097680000006,2.908402700000067],[99.05267640000005,2.913037200000076],[99.05966810000007,2.914899400000024],[99.06888610000004,2.921627900000033],[99.07637840000007,2.924691600000074],[99.08601030000005,2.933409],[99.09354770000004,2.935208500000044],[99.09633930000007,2.933807600000023],[99.10026860000005,2.934841300000073],[99.10576570000006,2.941154900000072],[99.09937660000008,2.941512300000056],[99.09911120000004,2.94311870000007],[99.096634,2.94359170000007],[99.09498870000004,2.948411100000044],[99.09291460000009,2.954614500000048],[99.10127210000007,2.959668600000043],[99.09844680000003,2.962811600000066],[99.09407120000009,2.962006600000052],[99.09270830000008,2.95944170000007],[99.08792330000006,2.956798300000059],[99.08417870000005,2.955687300000022],[99.08139840000007,2.956645900000069],[99.08212930000008,2.958524800000021],[99.08495850000008,2.959237400000063],[99.08835390000007,2.96458320000005],[99.08779510000005,2.967228900000066],[99.09020210000006,2.972376],[99.08455050000003,2.972636900000055],[99.08455060000006,2.973946],[99.08162020000003,2.974693400000035],[99.08148510000007,2.978593500000045],[99.09469850000005,2.981183800000053],[99.09212,2.98775130000007],[99.09261270000007,2.995809300000076],[99.09577550000006,3.005880600000069],[99.10025710000008,3.008299700000066],[99.10361050000006,3.006642600000021],[99.10273410000008,3.008850500000051],[99.11050940000007,3.015846400000044],[99.10656990000007,3.016808900000058],[99.10290120000008,3.014869100000055],[99.10191240000006,3.015847300000075]]]},"properties":{"shapeName":"Kota Pematang Siantar","shapeISO":"","shapeID":"22746128B46508511833318","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[109.38360090000003,-0.026480499999934],[109.36431060000007,-0.0209261],[109.34547410000005,-0.023679699999946],[109.35200050000009,-0.036143099999947],[109.36495820000005,-0.0502099],[109.37317620000005,-0.061585399999956],[109.38412130000006,-0.052236599999958],[109.37101280000007,-0.036115],[109.37612980000006,-0.031318799999951],[109.37893260000004,-0.032107599999961],[109.38264910000004,-0.029613799999936],[109.38360090000003,-0.026480499999934]]],[[[109.36608890000008,-0.0606079],[109.36795590000008,-0.058598299999971],[109.36628650000006,-0.055710899999951],[109.35064490000008,-0.037708899999927],[109.34184110000007,-0.022515599999963],[109.31399110000007,-0.002561799999967],[109.30447090000007,-0.000804599999924],[109.29791810000006,-0.0020155],[109.28706780000005,0.001623100000074],[109.28536390000005,-0.016915899999958],[109.28078640000007,-0.017133399999977],[109.27209870000007,-0.027373699999941],[109.282326,-0.043475399999977],[109.28497130000005,-0.040900299999976],[109.30162490000004,-0.059283599999958],[109.30362810000008,-0.063107599999967],[109.31087030000003,-0.069557499999974],[109.30704480000009,-0.077117599999951],[109.31392760000006,-0.081974099999968],[109.31721790000006,-0.075191299999972],[109.34057070000006,-0.096068799999955],[109.343689,-0.097412099999929],[109.36608890000008,-0.0606079]]],[[[109.37075950000008,0.021081200000026],[109.35698810000008,0.025924600000053],[109.30925580000007,0.038096200000041],[109.31033120000006,0.034069200000033],[109.30576270000006,0.033319400000039],[109.30569140000006,0.028827800000045],[109.29747160000005,0.029819900000064],[109.29000930000007,0.008467600000074],[109.29629450000004,0.007734800000037],[109.30042350000008,0.004982700000028],[109.30958570000007,0.003800200000057],[109.32136050000008,-0.000220499999955],[109.34516220000006,-0.021207199999935],[109.36485720000007,-0.018276199999946],[109.37190750000008,-0.019225],[109.37655110000009,-0.021477399999981],[109.37902880000007,-0.013581199999976],[109.37765350000006,-0.013733799999954],[109.37856260000007,-0.0124665],[109.37747870000004,-0.012149699999952],[109.37616170000007,-0.0026221],[109.37322460000007,-0.000463099999934],[109.36947170000008,0.009616],[109.37075950000008,0.021081200000026]]]]},"properties":{"shapeName":"Kota Pontianak","shapeISO":"","shapeID":"22746128B49677395631406","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[104.21267540000008,-3.367756799999938],[104.20219210000005,-3.361318],[104.19434210000009,-3.358763899999929],[104.17974190000007,-3.356785799999955],[104.16890350000006,-3.346495399999981],[104.16772860000003,-3.347917299999949],[104.16054970000005,-3.349094499999978],[104.14932590000006,-3.340063599999951],[104.13722080000008,-3.344410099999948],[104.13358310000007,-3.341211499999929],[104.13226790000004,-3.336369399999967],[104.12965990000004,-3.337389599999938],[104.13310550000006,-3.342025899999953],[104.132211,-3.349251899999956],[104.13461020000005,-3.349939699999936],[104.13721930000008,-3.354356399999972],[104.137081,-3.3572153],[104.13520920000008,-3.359239399999979],[104.13134310000004,-3.358783899999935],[104.13192270000008,-3.378309099999967],[104.15152660000007,-3.3960659],[104.15103350000004,-3.430381],[104.148945,-3.435962599999925],[104.15116720000003,-3.445378699999935],[104.147518,-3.449253699999929],[104.13908880000008,-3.450302599999929],[104.13608060000007,-3.454281199999969],[104.13592220000004,-3.459297499999934],[104.14013370000004,-3.466984899999943],[104.13965760000008,-3.471034199999963],[104.13340650000004,-3.485627],[104.12845220000008,-3.490896499999963],[104.13366140000005,-3.492013699999973],[104.14271150000008,-3.490033499999925],[104.14360740000006,-3.491034399999933],[104.14257010000006,-3.493968499999937],[104.14477390000008,-3.497181699999942],[104.14168460000008,-3.505907699999966],[104.13684020000005,-3.510819399999946],[104.13391330000007,-3.5180848],[104.13143440000005,-3.519757199999958],[104.142425,-3.5310177],[104.14432070000004,-3.534513199999935],[104.14267280000007,-3.5365787],[104.14444260000005,-3.537189699999942],[104.14655820000007,-3.542298899999935],[104.14960540000004,-3.543800699999963],[104.16076140000007,-3.544815699999958],[104.16354760000007,-3.542827099999954],[104.17344450000007,-3.5425597],[104.18368440000006,-3.545904099999973],[104.19370230000004,-3.5433458],[104.19486970000008,-3.538496599999974],[104.20743260000006,-3.542142],[104.21773230000008,-3.543174499999964],[104.213667,-3.531720099999973],[104.22438220000004,-3.532410699999957],[104.22132210000007,-3.5396059],[104.22813680000007,-3.541351199999951],[104.22876970000004,-3.540200499999969],[104.23005310000008,-3.542033699999934],[104.23669320000005,-3.539639099999931],[104.24011120000006,-3.541688399999941],[104.24387040000005,-3.5415778],[104.24679020000008,-3.537739899999963],[104.25024660000008,-3.536145],[104.25363650000008,-3.539546],[104.25176960000005,-3.548516499999948],[104.24222710000004,-3.566550799999959],[104.24310850000006,-3.567892399999948],[104.27581880000008,-3.5730166],[104.29345160000008,-3.563874399999975],[104.29596980000008,-3.563514899999973],[104.30064330000005,-3.567132699999945],[104.30459990000008,-3.567376699999954],[104.30477310000003,-3.561744799999929],[104.30448840000008,-3.556172499999946],[104.31120910000004,-3.547864799999957],[104.31229110000004,-3.543889899999954],[104.31182830000006,-3.537690299999952],[104.30843620000007,-3.528620099999955],[104.31102680000004,-3.512017699999944],[104.30371880000007,-3.503778799999964],[104.30095330000006,-3.497595699999977],[104.29567570000006,-3.493081099999927],[104.29308620000006,-3.487568899999928],[104.292794,-3.478365499999938],[104.29658550000005,-3.469951699999967],[104.301463,-3.4639341],[104.30936850000006,-3.463250799999969],[104.31253570000007,-3.4394528],[104.31677,-3.4269533],[104.348191,-3.371480899999938],[104.32645320000006,-3.366047099999946],[104.30585410000003,-3.356841499999973],[104.29790850000006,-3.356826099999978],[104.280727,-3.3644787],[104.24800230000005,-3.372980699999971],[104.24165120000004,-3.373589799999934],[104.21267540000008,-3.367756799999938]]]},"properties":{"shapeName":"Kota Prabumulih","shapeISO":"","shapeID":"22746128B64925194102056","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[113.23762850000003,-7.739518199999964],[113.22518980000007,-7.7377934],[113.2231054,-7.733581799999968],[113.22539270000004,-7.733734699999957],[113.22903990000009,-7.7250526],[113.2256341000001,-7.732728299999962],[113.22364030000006,-7.731882799999937],[113.22583230000009,-7.726657499999931],[113.22478910000007,-7.725859899999932],[113.22659290000001,-7.724687899999935],[113.22501210000007,-7.725045199999954],[113.22352260000002,-7.728583499999957],[113.21971950000011,-7.726648599999976],[113.22015970000007,-7.724459499999966],[113.21947000000011,-7.72716],[113.21760910000012,-7.726837699999976],[113.21811930000001,-7.722472899999957],[113.216252,-7.736419099999978],[113.217548,-7.722465],[113.21530560000008,-7.722377499999936],[113.215139,-7.727588499999968],[113.21242640000003,-7.727648],[113.21228360000009,-7.731681199999969],[113.21466310000005,-7.7316574],[113.2142943,-7.735631099999978],[113.21051290000003,-7.738146],[113.20389910000006,-7.7415243],[113.1984096000001,-7.740951399999972],[113.192851,-7.744018499999981],[113.1910961000001,-7.742412299999955],[113.1862182000001,-7.746754899999928],[113.17951960000005,-7.745703399999968],[113.1762771000001,-7.751787899999954],[113.17502580000007,-7.751531799999952],[113.17433710000012,-7.754513299999928],[113.17400710000004,-7.752802799999927],[113.17237080000007,-7.752456399999971],[113.17147250000005,-7.754756099999952],[113.16611480000006,-7.753905399999951],[113.16432940000004,-7.759195499999976],[113.1679534000001,-7.761419],[113.16674030000001,-7.767782899999929],[113.16519060000007,-7.770887199999947],[113.1633647000001,-7.770345499999962],[113.162923,-7.771512499999972],[113.16543740000009,-7.773932],[113.16391740000006,-7.779229799999939],[113.17893820000006,-7.783372],[113.17701160000001,-7.788462299999935],[113.1821758000001,-7.7896171],[113.18270990000008,-7.791666],[113.1782889000001,-7.8099835],[113.20014790000005,-7.812510399999951],[113.20513280000011,-7.804404699999964],[113.20681650000006,-7.805053199999975],[113.20720830000005,-7.807246599999928],[113.20443080000007,-7.814084199999968],[113.2089873000001,-7.815094899999963],[113.20809010000005,-7.816789699999958],[113.21611220000011,-7.820199799999955],[113.217115,-7.819650899999942],[113.2159435000001,-7.818065],[113.21711390000007,-7.817927599999962],[113.21607730000005,-7.817099399999961],[113.2178282000001,-7.816517699999963],[113.21668810000006,-7.815523],[113.21978750000005,-7.811574599999972],[113.22178370000006,-7.810857799999951],[113.22454090000008,-7.812073599999962],[113.22244390000003,-7.807644],[113.2259782000001,-7.804844899999978],[113.2261228000001,-7.801539],[113.23206860000005,-7.80288],[113.23330710000005,-7.8069001],[113.24001090000002,-7.808750599999939],[113.2370777000001,-7.7985131],[113.24007950000009,-7.800140399999975],[113.24235150000004,-7.795340499999952],[113.23872370000004,-7.794599199999936],[113.23693070000002,-7.789616299999977],[113.23730480000006,-7.781677399999978],[113.23401710000007,-7.780552799999953],[113.23699180000006,-7.773293699999954],[113.23433670000009,-7.770401699999979],[113.23443820000011,-7.766542099999981],[113.23657440000011,-7.762714199999948],[113.23498860000007,-7.762088499999948],[113.23467960000005,-7.756696799999929],[113.232148,-7.756017899999961],[113.23762850000003,-7.739518199999964]]]},"properties":{"shapeName":"Kota Probolinggo","shapeISO":"","shapeID":"22746128B45903206226648","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[95.31005560000006,5.877661500000045],[95.30782660000006,5.87689],[95.30755870000007,5.874933800000065],[95.31097090000009,5.874965],[95.31309880000003,5.873146],[95.31382940000003,5.874964500000033],[95.31005560000006,5.877661500000045]]],[[[95.25905510000007,5.883232600000042],[95.25400590000004,5.888039400000025],[95.25535350000007,5.882536300000027],[95.258178,5.879778900000076],[95.25896740000007,5.874833400000057],[95.26010290000005,5.879921300000035],[95.25905510000007,5.883232600000042]]],[[[95.22141640000007,5.905997900000045],[95.215987,5.906699700000047],[95.21581480000003,5.90141570000003],[95.21746090000005,5.898992900000053],[95.21498570000006,5.891459900000029],[95.21980840000003,5.881759200000033],[95.22008290000008,5.874798],[95.22861260000008,5.870229700000039],[95.22867180000009,5.866838200000075],[95.23685490000008,5.859141700000066],[95.23917320000004,5.851291100000026],[95.24162380000007,5.850397200000032],[95.24742520000007,5.851485],[95.25653440000008,5.844296],[95.26000940000006,5.836570800000061],[95.25859980000007,5.833120300000076],[95.26034690000006,5.832468900000038],[95.26033860000007,5.828611900000055],[95.25764630000003,5.827529200000072],[95.25741010000007,5.825675900000022],[95.262143,5.820854800000063],[95.26364170000005,5.813972400000068],[95.26589580000007,5.811427200000026],[95.265454,5.807317800000021],[95.27191090000008,5.798845800000038],[95.27745360000006,5.787412800000027],[95.28464570000006,5.780561300000045],[95.28964560000009,5.781475100000023],[95.29553510000005,5.779485],[95.30313180000007,5.779987300000073],[95.31736240000004,5.773888700000043],[95.323803,5.774105400000053],[95.327542,5.771768700000052],[95.33045630000004,5.772805300000073],[95.34052310000004,5.783520800000076],[95.34347660000003,5.794127600000024],[95.34621690000006,5.793545],[95.34485920000009,5.79918710000004],[95.34781010000006,5.804945600000053],[95.34732440000005,5.807016900000065],[95.34396730000003,5.808104300000025],[95.34600250000005,5.811370500000066],[95.34351440000006,5.821261100000072],[95.34584250000006,5.827083800000025],[95.35235790000007,5.828050900000051],[95.36631840000007,5.811737700000037],[95.370399,5.804216300000064],[95.37498490000007,5.805170100000055],[95.37723980000004,5.828380500000037],[95.37230980000004,5.845001400000058],[95.37271350000003,5.846795100000065],[95.37427290000005,5.847168400000044],[95.36847990000007,5.852380700000026],[95.36344260000004,5.853813],[95.35928830000006,5.857909600000028],[95.35294290000007,5.868353400000046],[95.35199240000009,5.874208300000021],[95.35295410000003,5.878018600000075],[95.34837970000007,5.886493200000075],[95.34479690000006,5.887696800000072],[95.33339060000009,5.897890700000062],[95.32441610000006,5.901150600000051],[95.32060770000004,5.900290200000029],[95.31033140000005,5.894124600000055],[95.31011480000006,5.890443600000026],[95.31441560000007,5.88540080000007],[95.317542,5.888986800000055],[95.32169190000008,5.889900300000022],[95.32443870000009,5.88555180000003],[95.32430310000007,5.881713400000024],[95.32167450000009,5.881044200000076],[95.321723,5.877887],[95.31588620000008,5.869726200000059],[95.31532110000006,5.866671500000052],[95.31173750000005,5.869243900000072],[95.31068030000006,5.867712700000027],[95.30936150000008,5.869056800000067],[95.306925,5.868091500000048],[95.30547010000004,5.871095300000036],[95.30614820000005,5.873889900000052],[95.30174210000007,5.873040400000036],[95.301122,5.862685300000066],[95.30422620000007,5.841317],[95.29981440000006,5.839005200000031],[95.29870880000004,5.83987680000007],[95.29816940000006,5.838569600000028],[95.29422840000007,5.840890200000047],[95.292589,5.838743],[95.29099370000006,5.840703500000075],[95.28611540000009,5.841447900000048],[95.28447290000008,5.848477100000025],[95.27645380000007,5.847759600000074],[95.27433770000005,5.853654800000072],[95.27089860000007,5.853025],[95.26816270000006,5.857831],[95.26257020000008,5.855840600000022],[95.26423,5.858333400000049],[95.262003,5.867086200000074],[95.26682930000004,5.867579100000057],[95.267681,5.864735400000029],[95.26928480000004,5.867169500000045],[95.26844590000007,5.87071590000005],[95.263955,5.873035700000059],[95.257668,5.872103200000026],[95.25195630000007,5.881932900000038],[95.24956650000007,5.883155200000033],[95.25048880000008,5.875655900000027],[95.24762690000006,5.87703440000007],[95.24716380000007,5.881554300000062],[95.243964,5.882404200000053],[95.242767,5.885378900000035],[95.24150940000004,5.884690200000023],[95.23978150000005,5.88655730000005],[95.241044,5.891432200000054],[95.23654230000005,5.895206400000063],[95.23586960000006,5.89810650000004],[95.23429380000005,5.897691100000031],[95.22420310000007,5.905585500000029],[95.22141640000007,5.905997900000045]]],[[[95.11872930000004,6.071311500000036],[95.12165490000007,6.072954400000071],[95.12215920000006,6.074990100000036],[95.11814430000004,6.07693],[95.114042,6.075462],[95.11621490000005,6.07147580000003],[95.11872930000004,6.071311500000036]]]]},"properties":{"shapeName":"Kota Sabang","shapeISO":"","shapeID":"22746128B17211563026249","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[110.48836520000003,-7.292072699999949],[110.48429870000007,-7.285979199999929],[110.46875830000005,-7.2958322],[110.47168520000008,-7.297252799999967],[110.46963750000003,-7.299238599999967],[110.47244060000008,-7.307106499999975],[110.47585710000004,-7.309097099999974],[110.47522120000008,-7.310600199999953],[110.47322340000005,-7.309563499999967],[110.47614020000009,-7.312525699999981],[110.47461140000007,-7.31564],[110.47543430000007,-7.3186127],[110.47225790000005,-7.325274099999945],[110.47218320000007,-7.331681199999935],[110.46952050000004,-7.337981199999945],[110.47139740000006,-7.345538099999942],[110.47611030000007,-7.349639699999955],[110.47424950000004,-7.353533299999981],[110.47460170000005,-7.359418399999981],[110.47837730000003,-7.370571699999971],[110.47711870000006,-7.374270199999955],[110.48144530000008,-7.379601899999955],[110.488179,-7.376794899999936],[110.49117150000006,-7.3816299],[110.49042110000005,-7.384603399999946],[110.49204160000005,-7.388816099999929],[110.50409060000004,-7.386573899999973],[110.51034810000004,-7.386868099999958],[110.51523490000005,-7.385264],[110.51523,-7.383635],[110.51230280000004,-7.383741199999974],[110.51210920000005,-7.379339899999934],[110.516103,-7.379122099999961],[110.51564910000008,-7.362544299999968],[110.52210010000005,-7.363505699999962],[110.52442610000008,-7.362400299999933],[110.52729440000007,-7.364143399999932],[110.52822170000007,-7.361686199999951],[110.53297160000005,-7.3606788],[110.53428570000005,-7.3574716],[110.53378070000008,-7.353254199999981],[110.53165790000008,-7.354387899999949],[110.53388870000003,-7.351901399999974],[110.53053280000006,-7.348349599999949],[110.53038030000005,-7.344976899999949],[110.52841070000005,-7.343714899999952],[110.53085480000004,-7.340496299999927],[110.53020620000007,-7.337299499999972],[110.52799270000008,-7.337573799999973],[110.52349860000004,-7.330202499999928],[110.52447510000007,-7.326234299999953],[110.52265170000004,-7.326026399999932],[110.51977540000007,-7.321476899999936],[110.51673890000006,-7.320263799999964],[110.51691440000008,-7.309051],[110.51809690000005,-7.304090499999973],[110.52075960000008,-7.302042],[110.52059940000004,-7.298559599999976],[110.51853940000007,-7.296607],[110.52043680000008,-7.292418],[110.51786520000007,-7.289258699999948],[110.51798680000007,-7.292464299999949],[110.515037,-7.295066499999962],[110.51323410000003,-7.294217],[110.51064320000006,-7.301902199999972],[110.50877570000006,-7.300554399999953],[110.50029970000008,-7.300193199999967],[110.498316,-7.298544799999945],[110.49363310000007,-7.292123499999946],[110.49439240000004,-7.287944399999958],[110.49152260000005,-7.291209699999968],[110.48836520000003,-7.292072699999949]]]},"properties":{"shapeName":"Kota Salatiga","shapeISO":"","shapeID":"22746128B4080752690825","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[117.23938070000008,-0.567054399999961],[117.239537,-0.56227],[117.24645850000002,-0.559801399999969],[117.247874,-0.557504],[117.25183720000007,-0.555459299999939],[117.251163,-0.55374],[117.252691,-0.553373699999952],[117.253629,-0.550548],[117.2543793000001,-0.552382299999977],[117.2532470000001,-0.554377699999975],[117.255111,-0.554164],[117.255964,-0.55574],[117.25862410000002,-0.555138799999952],[117.25673680000011,-0.553522],[117.256908,-0.550748],[117.259624,-0.551477],[117.259898,-0.553297],[117.261912,-0.554258],[117.266879,-0.548834],[117.26897610000003,-0.548916099999929],[117.26681520000011,-0.546883],[117.26734920000001,-0.543474],[117.26412960000005,-0.533728399999973],[117.26414490000002,-0.531794899999966],[117.268837,-0.531340299999954],[117.26874540000006,-0.527545199999963],[117.26031490000003,-0.526996099999963],[117.25962070000003,-0.523651199999961],[117.26202390000003,-0.480902499999956],[117.26284030000011,-0.477502199999947],[117.28002170000002,-0.462764399999969],[117.28434750000008,-0.449657499999944],[117.285141,-0.439953299999956],[117.283844,-0.4295942],[117.27880860000005,-0.419714799999952],[117.28640750000011,-0.410427799999979],[117.28918780000004,-0.403690199999971],[117.29373170000008,-0.410898599999939],[117.2964783000001,-0.4096644],[117.2991224000001,-0.405250799999976],[117.3025818000001,-0.403715299999931],[117.30393220000008,-0.397329299999967],[117.3013734000001,-0.3893208],[117.302699,-0.383248],[117.298236,-0.381764],[117.298217,-0.375069],[117.29486,-0.371767],[117.29295600000012,-0.366194],[117.288404,-0.362811],[117.279332,-0.35921],[117.272188,-0.358767],[117.261809,-0.365073],[117.257802,-0.364693],[117.248664,-0.36751],[117.244163,-0.366825],[117.241601,-0.344464],[117.238802,-0.338665],[117.221334,-0.321105],[117.214349,-0.315839],[117.20771,-0.312917],[117.199402,-0.312492],[117.186452,-0.319441],[117.169801,-0.338359],[117.150177,-0.346484],[117.144523,-0.35051],[117.135737,-0.38821],[117.130253,-0.400777],[117.123045,-0.4094357],[117.101187,-0.423513699999944],[117.068726,-0.433981],[117.059652,-0.452899],[117.0526,-0.47207],[117.047739,-0.492915],[117.047297,-0.517217],[117.054544,-0.528996],[117.059818,-0.553532],[117.06671090000009,-0.571377],[117.07622530000003,-0.578596699999935],[117.07545390000007,-0.589850299999966],[117.078557,-0.586193],[117.082106,-0.577308],[117.08445740000002,-0.576257599999963],[117.09392710000009,-0.577139599999953],[117.09708190000003,-0.580870899999979],[117.09664960000009,-0.590957799999956],[117.10010790000001,-0.594128],[117.11019490000001,-0.599603799999954],[117.11509420000004,-0.597874599999955],[117.1201248000001,-0.599113799999941],[117.12497710000002,-0.607483399999978],[117.14209750000009,-0.619383],[117.13800050000009,-0.648677599999928],[117.13657380000006,-0.651351199999965],[117.13013460000002,-0.656369699999971],[117.129631,-0.663306099999943],[117.13529210000002,-0.671854],[117.13843660000009,-0.673915699999952],[117.138579,-0.687403],[117.148949,-0.686688],[117.151986,-0.685195599999929],[117.1610184000001,-0.704483099999948],[117.16361240000003,-0.705927799999927],[117.16620640000008,-0.706500099999971],[117.16821290000007,-0.705049199999962],[117.1774292,-0.707069699999977],[117.18174740000006,-0.706479199999933],[117.18576810000002,-0.7006811],[117.18547820000003,-0.696337],[117.18777470000009,-0.694013199999972],[117.18834690000006,-0.689371199999925],[117.19122310000012,-0.687343599999963],[117.19351960000006,-0.682411399999978],[117.193512,-0.676034199999947],[117.2012787000001,-0.670231699999931],[117.2228546,-0.668432199999927],[117.2274857000001,-0.664792599999942],[117.23216250000007,-0.660172699999976],[117.23529050000002,-0.653414199999929],[117.2350388000001,-0.6504015],[117.23059080000007,-0.641871699999967],[117.23144530000002,-0.639019499999961],[117.24515530000008,-0.6342],[117.25009920000002,-0.627169799999933],[117.262085,-0.621165699999949],[117.27040860000011,-0.6116047],[117.271904,-0.599569799999927],[117.27529140000001,-0.598819399999968],[117.28318790000003,-0.600653899999941],[117.28543850000005,-0.597989299999938],[117.286318,-0.593172399999958],[117.27710320000006,-0.581429599999979],[117.2689888000001,-0.580801599999972],[117.25042130000008,-0.574233099999958],[117.24110410000003,-0.573891799999956],[117.23938070000008,-0.567054399999961]]]},"properties":{"shapeName":"Kota Samarinda","shapeISO":"","shapeID":"22746128B28955542757424","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.79779940000009,-0.564543599999979],[100.795115,-0.562708899999961],[100.79068170000005,-0.563279899999941],[100.78770830000008,-0.561083399999973],[100.78696150000007,-0.55734],[100.78837810000005,-0.553984599999978],[100.78496730000006,-0.549428],[100.78099240000006,-0.553498499999932],[100.77987880000006,-0.561610299999927],[100.77239050000009,-0.557986399999947],[100.75246170000008,-0.5563274],[100.74593380000005,-0.5605265],[100.73167340000003,-0.553576499999963],[100.72813670000005,-0.554662699999938],[100.72369380000004,-0.558410599999945],[100.71887210000006,-0.568908699999952],[100.71314820000003,-0.572961599999928],[100.70726730000007,-0.573922],[100.70089750000005,-0.580642499999954],[100.699177,-0.591914699999961],[100.69704120000006,-0.594347099999936],[100.70137210000007,-0.599211899999943],[100.70564360000009,-0.600457699999936],[100.70321120000006,-0.606509099999926],[100.70321120000006,-0.616713299999958],[100.69929560000008,-0.623120599999936],[100.690684,-0.628621499999952],[100.69470210000009,-0.632812499999943],[100.69592290000008,-0.638305699999933],[100.694519,-0.647827099999972],[100.69871890000007,-0.653279099999963],[100.70598860000007,-0.657183099999941],[100.70647420000006,-0.661683099999948],[100.70997450000004,-0.660615199999938],[100.70868160000003,-0.661908099999948],[100.70671150000004,-0.673133199999938],[100.70326280000006,-0.679005299999972],[100.70338920000006,-0.69633],[100.69656660000004,-0.710983799999951],[100.69715920000004,-0.718640199999925],[100.69583190000009,-0.724223399999971],[100.700882,-0.727525399999934],[100.70670910000007,-0.726942699999938],[100.71001110000009,-0.7337409],[100.71409010000008,-0.734517899999958],[100.72216280000004,-0.732394399999976],[100.72833930000007,-0.723599399999955],[100.73183640000008,-0.723148799999933],[100.73412050000007,-0.724925599999949],[100.74663850000007,-0.723917],[100.74942690000006,-0.730502299999955],[100.74913020000008,-0.7328161],[100.75429170000007,-0.735663799999941],[100.75352040000007,-0.740706499999931],[100.75992770000005,-0.7405879],[100.76354670000006,-0.744028899999932],[100.76675030000007,-0.744859399999939],[100.77125920000003,-0.750258199999962],[100.77648,-0.751504],[100.78223470000006,-0.762123599999939],[100.78905730000008,-0.770132699999976],[100.79809280000006,-0.768772899999931],[100.80128730000007,-0.770938199999932],[100.80199050000004,-0.773336299999926],[100.80418560000004,-0.773514299999931],[100.81159690000004,-0.769966299999965],[100.81118620000007,-0.766276399999924],[100.81682230000007,-0.767463],[100.82150910000007,-0.766395099999954],[100.82210230000004,-0.758326599999975],[100.81462720000007,-0.745512],[100.81083020000005,-0.7430796],[100.81083020000005,-0.734655199999963],[100.80365170000005,-0.719942099999969],[100.80068530000005,-0.718043699999953],[100.80430430000007,-0.707780099999979],[100.80184070000007,-0.701878199999953],[100.79941750000006,-0.674415],[100.79085010000006,-0.668369499999926],[100.80157150000008,-0.663914299999931],[100.809097,-0.620903899999973],[100.81436070000007,-0.615449799999965],[100.81274520000005,-0.606295399999965],[100.80305230000005,-0.598352599999942],[100.80130220000007,-0.594852299999957],[100.80614870000005,-0.592025199999966],[100.80789880000003,-0.590140499999961],[100.80789880000003,-0.587582699999928],[100.81234140000004,-0.585159399999952],[100.813553,-0.582467],[100.81261060000008,-0.578697499999976],[100.80461780000007,-0.567614399999968],[100.79779940000009,-0.564543599999979]]]},"properties":{"shapeName":"Kota Sawah Lunto","shapeISO":"","shapeID":"22746128B14282359472247","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[110.46321250000005,-6.931527599999981],[110.45638,-6.9355],[110.44803450000006,-6.937734699999965],[110.44681430000009,-6.936117399999944],[110.44295490000007,-6.938271899999961],[110.44144750000004,-6.946207799999968],[110.43932570000004,-6.946050899999932],[110.43821920000005,-6.942053399999963],[110.43415030000006,-6.946891599999958],[110.43688670000006,-6.949346399999968],[110.43636320000007,-6.951464099999953],[110.43312720000006,-6.948894299999949],[110.43183270000009,-6.943260599999974],[110.42836350000005,-6.944459799999947],[110.42749260000005,-6.941868599999964],[110.42650040000007,-6.942066099999977],[110.42608480000007,-6.936307],[110.42358160000003,-6.936849499999937],[110.42341020000003,-6.946819399999981],[110.42716030000008,-6.950564699999973],[110.42624180000007,-6.951997099999971],[110.42016940000008,-6.947733199999959],[110.41956980000003,-6.949284599999942],[110.42529950000005,-6.953881699999954],[110.42418590000005,-6.955766199999971],[110.42118780000004,-6.955014299999959],[110.42113070000005,-6.952606299999957],[110.42012180000006,-6.953339199999959],[110.41926230000007,-6.9512463],[110.41874120000006,-6.9520136],[110.41822360000003,-6.943115599999942],[110.41661750000009,-6.943972299999928],[110.41647470000004,-6.945999599999936],[110.41310070000009,-6.946291299999928],[110.412206,-6.945157199999926],[110.40726070000005,-6.949510099999941],[110.40266830000007,-6.949652799999967],[110.40181170000005,-6.944751099999962],[110.39487560000003,-6.944953399999974],[110.39583190000008,-6.948889799999961],[110.39457840000006,-6.949377899999945],[110.39251620000005,-6.9459172],[110.38886760000008,-6.948634299999981],[110.39043910000004,-6.950799399999937],[110.38663690000004,-6.9517276],[110.38535790000009,-6.948664],[110.38714250000004,-6.947771699999976],[110.38630970000008,-6.946403499999974],[110.381878,-6.948217899999975],[110.38191040000004,-6.950326699999948],[110.37536420000004,-6.951876299999981],[110.38308,-6.95456],[110.36976220000008,-6.9549685],[110.35177180000005,-6.953812],[110.35005860000007,-6.951984599999946],[110.33024250000005,-6.946216799999945],[110.32104820000006,-6.9406774],[110.31112150000007,-6.937040299999978],[110.30591730000003,-6.937503699999979],[110.29941350000007,-6.9408512],[110.29170990000006,-6.9501958],[110.29306650000007,-6.9515254],[110.29187010000004,-6.955469099999959],[110.29965970000006,-6.959940399999937],[110.29573060000007,-6.968442399999958],[110.28811330000008,-6.965417],[110.28766020000006,-6.968732],[110.28594230000004,-6.968996599999969],[110.28954870000007,-6.971334399999932],[110.29339970000007,-6.977284399999974],[110.293444,-6.981890699999951],[110.28523230000008,-6.982828099999949],[110.28453020000006,-6.986512199999936],[110.28249930000004,-6.986196799999959],[110.28186050000005,-6.987354799999935],[110.28384420000003,-6.98936],[110.28233650000004,-6.988997899999958],[110.28166490000007,-6.9904202],[110.283371,-6.9908514],[110.28373240000008,-6.992704599999968],[110.28486120000008,-6.991739199999927],[110.28633880000007,-6.993833],[110.28695680000004,-6.993057199999953],[110.28764340000004,-6.997078899999963],[110.28379820000004,-6.996952499999963],[110.28092960000004,-6.998907499999973],[110.28025050000008,-7.004458899999975],[110.28282930000006,-7.005200399999978],[110.28252410000005,-7.006845899999973],[110.28527070000007,-7.0081853],[110.28578950000008,-7.010044599999958],[110.28453890000009,-7.012741199999937],[110.27494780000006,-7.011674199999959],[110.27355960000006,-7.014405699999941],[110.27485660000008,-7.019342399999971],[110.27082760000008,-7.023008499999946],[110.27229410000007,-7.026511699999958],[110.27251210000009,-7.031940499999962],[110.27128030000006,-7.033229399999925],[110.27386710000007,-7.034908199999961],[110.27095740000004,-7.035307699999976],[110.27242820000004,-7.037460399999929],[110.26946260000005,-7.047966],[110.27076360000007,-7.050707799999941],[110.27367370000007,-7.050247699999943],[110.27458920000004,-7.048724299999947],[110.28315740000005,-7.049366],[110.28566740000008,-7.052134],[110.28770450000007,-7.0505214],[110.29433440000008,-7.053705699999966],[110.29198460000003,-7.055620199999964],[110.30080410000005,-7.064708699999926],[110.29915620000008,-7.067564499999946],[110.301384,-7.068422799999951],[110.30072780000006,-7.072508299999981],[110.30188750000008,-7.072675199999935],[110.30291750000004,-7.076863799999956],[110.30322260000008,-7.079116299999953],[110.30108640000009,-7.079965099999981],[110.30481720000006,-7.084932799999933],[110.30332950000007,-7.097061099999962],[110.30507770000008,-7.101411799999937],[110.31009670000009,-7.102925699999957],[110.31325950000007,-7.106295599999953],[110.31712050000004,-7.104580599999963],[110.31733,-7.106755899999939],[110.32399750000008,-7.101481899999953],[110.328738,-7.102139399999942],[110.33218380000005,-7.099082],[110.33284760000004,-7.103756399999952],[110.33706670000004,-7.104332],[110.34484930000008,-7.097032],[110.34270310000005,-7.090580099999954],[110.34359620000004,-7.088041199999964],[110.34612020000009,-7.087706399999945],[110.34617820000005,-7.0853056],[110.35176480000007,-7.101597599999934],[110.35612470000007,-7.106565699999976],[110.36242810000005,-7.104434],[110.36488090000006,-7.1064059],[110.36857460000004,-7.106537899999978],[110.37004390000004,-7.108690099999933],[110.36988590000004,-7.1067932],[110.37160550000004,-7.107309499999928],[110.37370610000005,-7.1048165],[110.37303680000008,-7.097979299999963],[110.37641680000007,-7.0944233],[110.37599060000008,-7.098099799999943],[110.37790850000005,-7.098423899999943],[110.37958170000007,-7.101332899999932],[110.37641040000005,-7.107303199999933],[110.37737120000008,-7.110465599999941],[110.38171190000008,-7.110687799999937],[110.38423160000008,-7.114063699999974],[110.38963360000008,-7.111844699999949],[110.39724770000004,-7.114579699999979],[110.39702460000007,-7.113503099999946],[110.40258750000004,-7.109628599999951],[110.40292820000008,-7.1138217],[110.40457940000005,-7.110080899999957],[110.41619120000007,-7.108368799999937],[110.41915890000007,-7.105044799999973],[110.42129520000009,-7.104675699999973],[110.42244720000008,-7.096894299999974],[110.429184,-7.091765799999962],[110.44427170000006,-7.091242099999931],[110.448333,-7.089076099999943],[110.45192130000004,-7.090073299999972],[110.45374540000006,-7.086265099999935],[110.45429940000008,-7.078817799999968],[110.46782690000003,-7.079352799999981],[110.47656250000006,-7.083539499999972],[110.47758480000005,-7.085433899999941],[110.48923490000004,-7.077316699999926],[110.49415590000007,-7.071004799999969],[110.49529270000005,-7.071233699999937],[110.49542240000005,-7.068275399999948],[110.49722290000005,-7.067776599999945],[110.49694060000007,-7.068971099999942],[110.49838260000007,-7.069382099999928],[110.49792480000008,-7.067245],[110.50092320000005,-7.067042799999967],[110.49941250000006,-7.063315799999941],[110.49553680000008,-7.063354899999979],[110.49144750000005,-7.060323699999969],[110.49099730000006,-7.0552563],[110.48667910000006,-7.050144199999977],[110.48551940000004,-7.055109],[110.48435210000008,-7.055984499999965],[110.48080440000007,-7.057360599999981],[110.48073580000005,-7.053910199999962],[110.48307040000009,-7.051183199999969],[110.48481750000008,-7.051573299999973],[110.48464970000003,-7.0533332],[110.48596190000006,-7.0522008],[110.48530580000005,-7.049587199999962],[110.48293590000009,-7.048415199999965],[110.48361860000006,-7.046704599999941],[110.48256230000004,-7.046229],[110.48388950000009,-7.045554299999935],[110.48116980000009,-7.044205599999941],[110.48483160000006,-7.043687099999943],[110.48308660000004,-7.042022],[110.48741310000008,-7.029005199999972],[110.49539080000005,-7.029759599999977],[110.49584030000005,-7.027446099999963],[110.49915870000007,-7.026019599999927],[110.49772140000005,-7.024756499999967],[110.49890610000006,-7.021086599999933],[110.49783020000007,-7.020787499999926],[110.49948630000006,-7.016398399999957],[110.50079080000006,-7.016985299999931],[110.50374950000008,-7.014859499999943],[110.50289960000003,-7.012570099999948],[110.503883,-7.010724499999981],[110.49853920000004,-7.007648899999936],[110.49882190000005,-7.0063243],[110.49576730000007,-7.006843],[110.49038520000005,-7.004347899999971],[110.49336390000008,-6.999693699999966],[110.49549450000006,-6.998933199999954],[110.498394,-6.993114499999933],[110.50164280000007,-6.992863199999931],[110.50301360000009,-6.985882699999934],[110.50134110000005,-6.9849819],[110.50205990000006,-6.979736299999956],[110.50535780000007,-6.975974],[110.50489790000006,-6.970382599999937],[110.50295430000006,-6.969185399999958],[110.501358,-6.964667799999972],[110.50280760000004,-6.958866599999965],[110.50100420000007,-6.9526219],[110.49055210000006,-6.955242599999963],[110.49220160000004,-6.947490899999934],[110.48879040000008,-6.948689799999954],[110.48915850000009,-6.946978299999955],[110.48753040000008,-6.946128399999964],[110.48094180000004,-6.945363],[110.47340390000005,-6.942085199999951],[110.46321250000005,-6.931527599999981]]]},"properties":{"shapeName":"Kota Semarang","shapeISO":"","shapeID":"22746128B24292526776016","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[106.21625050000006,-6.0160007],[106.20548,-6.01994],[106.20236,-6.01876],[106.20242,-6.01615],[106.2008,-6.0181],[106.19756,-6.01851],[106.19103,-6.01518],[106.19045,-6.01621],[106.19415,-6.01826],[106.19271,-6.02146],[106.18620570000007,-6.025653],[106.18162350000006,-6.026395599999944],[106.16608320000006,-6.0248621],[106.16469670000004,-6.026079299999935],[106.16061650000006,-6.025575799999956],[106.15590150000008,-6.024446199999943],[106.14837530000005,-6.019821899999954],[106.14656980000007,-6.030059599999959],[106.149302,-6.035002199999951],[106.14776,-6.04384],[106.14899,-6.04731],[106.14471,-6.05246],[106.14282690000005,-6.058024499999931],[106.14759,-6.06794],[106.14506,-6.06861],[106.14023,-6.0664],[106.14002,-6.06847],[106.13223,-6.0766],[106.12743,-6.0766],[106.12577,-6.07912],[106.1221,-6.07889],[106.12184,-6.08147],[106.11977,-6.08321],[106.11787,-6.0822],[106.11487,-6.08489],[106.11007,-6.08575],[106.10959,-6.08789],[106.10593,-6.08944],[106.09998,-6.09648],[106.09853,-6.10234],[106.09521,-6.10655],[106.09537680000005,-6.109229599999935],[106.09144120000008,-6.111967499999935],[106.09311350000007,-6.113875],[106.09018,-6.11273],[106.08701,-6.11818],[106.08277,-6.11779],[106.08298,-6.11902],[106.07821,-6.12072],[106.07734,-6.1192],[106.07445470000005,-6.121656399999949],[106.07388220000007,-6.124592899999925],[106.07152630000007,-6.126252499999964],[106.06937210000007,-6.130946699999981],[106.07309,-6.1337],[106.07608,-6.15018],[106.07334,-6.15224],[106.07037,-6.16051],[106.06659,-6.16487],[106.06759,-6.16873],[106.06598,-6.17503],[106.06717,-6.17677],[106.06859,-6.17542],[106.07221,-6.17691],[106.07585,-6.18304],[106.08642,-6.17353],[106.09568,-6.17529],[106.10254,-6.17342],[106.1069,-6.17948],[106.11137,-6.18197],[106.11475,-6.18107],[106.11542,-6.17649],[106.12029,-6.1774],[106.11964,-6.17147],[106.122,-6.16779],[106.1249,-6.16985],[106.12794,-6.16972],[106.1293,-6.17474],[106.13774,-6.17206],[106.14495,-6.17183],[106.14949,-6.16931],[106.15112,-6.17039],[106.15067,-6.17338],[106.15248,-6.17733],[106.14842,-6.17919],[106.145893,-6.185391799999934],[106.14282770000005,-6.185588899999971],[106.13565,-6.19114],[106.13541,-6.20357],[106.1406,-6.20743],[106.15662,-6.20972],[106.15754270000008,-6.214286499999957],[106.16465970000007,-6.214630499999942],[106.16793450000006,-6.213096899999925],[106.16780230000006,-6.218666199999973],[106.16931280000006,-6.219907399999954],[106.17208,-6.21776],[106.17492760000005,-6.217935899999929],[106.17968410000009,-6.215639899999928],[106.19227630000006,-6.218158099999926],[106.19260860000009,-6.216676199999938],[106.19726080000004,-6.2176411],[106.19523,-6.21543],[106.19249,-6.20549],[106.19479,-6.20187],[106.19835,-6.20065],[106.20052,-6.19811],[106.20951,-6.19614],[106.21331,-6.19622],[106.21508,-6.19842],[106.2184,-6.19704],[106.22418,-6.19801],[106.22717,-6.19505],[106.2257,-6.18085],[106.23301,-6.17076],[106.24074270000006,-6.171678899999961],[106.24408680000005,-6.169455899999946],[106.25116,-6.15914],[106.25217,-6.1538],[106.25469970000006,-6.151653299999964],[106.25525060000007,-6.1479936],[106.24634960000009,-6.141728499999942],[106.24436280000003,-6.137025599999959],[106.23839490000006,-6.1368392],[106.24082,-6.13482],[106.24110290000004,-6.130488199999945],[106.23432280000009,-6.1340542],[106.23200220000007,-6.131781899999964],[106.23247370000007,-6.129122199999927],[106.23005370000004,-6.130458699999963],[106.22583910000009,-6.128454099999942],[106.22468790000005,-6.131549799999959],[106.22294760000005,-6.131898],[106.21959490000006,-6.131222],[106.21763020000009,-6.129073399999925],[106.22502650000007,-6.118360099999961],[106.22599170000007,-6.114105099999961],[106.22947730000004,-6.111482299999977],[106.22643160000007,-6.108723599999962],[106.22480030000008,-6.109355899999969],[106.22414410000005,-6.107043099999942],[106.22436870000007,-6.105032899999969],[106.23025440000004,-6.097822699999938],[106.22971650000005,-6.0950316],[106.22215480000006,-6.091192599999943],[106.22246270000005,-6.085510599999964],[106.21905,-6.08289],[106.22091850000004,-6.072212899999954],[106.21611990000008,-6.068759599999964],[106.21953260000004,-6.062605399999939],[106.21796610000007,-6.0611508],[106.22193830000003,-6.045317799999964],[106.22709150000009,-6.043356899999935],[106.224,-6.03845],[106.22521,-6.03443],[106.22232,-6.02542],[106.21625050000006,-6.0160007]]],[[[106.15544920000008,-6.002461699999969],[106.15535,-6.000455099999954],[106.15442690000003,-6.000682599999948],[106.15544920000008,-6.002461699999969]]],[[[106.15007810000009,-5.998360399999967],[106.15056640000006,-5.996289499999932],[106.14943730000005,-5.995510799999977],[106.15007810000009,-5.998360399999967]]]]},"properties":{"shapeName":"Kota Serang","shapeISO":"","shapeID":"22746128B87898238003169","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[98.768266,1.715608300000042],[98.76531440000008,1.716553100000056],[98.76325850000006,1.715774100000033],[98.76293980000008,1.713687200000038],[98.75954050000007,1.713459200000045],[98.75989910000004,1.708660200000054],[98.76212810000004,1.705260500000065],[98.76927190000004,1.706179200000065],[98.76893220000005,1.710616200000061],[98.767203,1.712537400000031],[98.768266,1.715608300000042]]],[[[98.77999630000005,1.729788400000075],[98.778479,1.729110200000036],[98.77949610000007,1.726680500000043],[98.78161570000003,1.727549600000032],[98.77999630000005,1.729788400000075]]],[[[98.79623220000008,1.721649200000058],[98.79859120000003,1.721275400000025],[98.79959630000008,1.72318660000002],[98.80264470000009,1.723242900000059],[98.80289190000008,1.725513200000023],[98.80858010000009,1.729519100000061],[98.80220790000004,1.740218600000048],[98.79274710000004,1.751141600000039],[98.79481160000006,1.756404100000054],[98.76871730000005,1.756382200000075],[98.76900670000003,1.744733200000042],[98.77311790000005,1.742807700000071],[98.77801810000005,1.734522500000026],[98.78114780000004,1.734746700000073],[98.78041560000008,1.732441700000038],[98.78204720000008,1.729800900000043],[98.78524950000008,1.728271800000073],[98.78844540000006,1.729698700000029],[98.79253470000003,1.72550270000005],[98.795302,1.725400500000035],[98.79623220000008,1.721649200000058]]]]},"properties":{"shapeName":"Kota Sibolga","shapeISO":"","shapeID":"22746128B9026192549267","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[109.17621180000003,0.964820900000063],[109.17264670000009,0.967108600000074],[109.17606990000007,0.974584800000059],[109.17369830000007,0.979399300000068],[109.17139790000004,0.977329],[109.16577830000006,0.977263200000039],[109.16498960000007,0.976113],[109.16742150000005,0.974831400000028],[109.16719140000004,0.973681200000044],[109.16267830000004,0.97217420000004],[109.15981450000004,0.976960100000042],[109.15489290000005,0.979516600000068],[109.149784,0.980026500000065],[109.15006130000006,0.98717670000002],[109.14686170000004,0.988044400000035],[109.14514030000004,0.990441300000043],[109.15087480000005,0.993142200000023],[109.14675060000008,1.003126500000064],[109.14697020000006,1.010333400000036],[109.14290280000006,1.011960300000055],[109.13516090000007,1.011458100000027],[109.13297850000004,1.016190400000028],[109.13025110000007,1.018359600000053],[109.120885,1.011146900000028],[109.10830340000007,1.011960300000055],[109.107978,1.005018800000073],[109.09631840000009,1.004910300000063],[109.09827070000006,0.994389500000068],[109.09555910000006,0.991244100000074],[109.08857780000005,0.990916700000071],[109.08483680000006,1.00087910000002],[109.07962240000006,0.998123600000042],[109.07582780000007,0.992611],[109.06690090000006,0.992132800000036],[109.06274510000009,0.989570900000047],[109.02216740000006,0.990450900000042],[108.97870990000007,0.989167900000041],[108.97662230000009,0.964824200000066],[108.97148840000006,0.944996100000026],[108.95366820000004,0.906428900000037],[108.94889690000008,0.899347400000067],[108.93634090000006,0.883609500000034],[108.92409330000004,0.871884800000032],[108.91226330000006,0.862925],[108.90893830000005,0.863139900000021],[108.90670130000007,0.865373100000056],[108.89834870000004,0.866039100000023],[108.896692,0.869201600000054],[108.89338130000004,0.870733200000075],[108.89239920000006,0.866386400000067],[108.89083610000006,0.865501900000027],[108.89145010000004,0.858019100000035],[108.87441040000004,0.840837700000066],[108.89716180000005,0.83361160000004],[108.906733,0.834677500000055],[108.90945660000006,0.832027],[108.91495230000004,0.818107400000031],[108.935067,0.807952100000023],[108.93787720000006,0.807865100000072],[108.94224110000005,0.812635300000068],[108.94835760000007,0.812635300000068],[108.95113990000004,0.810084900000049],[108.96134160000008,0.808461900000054],[108.96613430000008,0.800061200000073],[108.96629610000008,0.786619400000063],[108.97051610000005,0.776809],[108.98028,0.774991300000067],[108.99536750000004,0.766899900000055],[109.00370440000006,0.764259800000048],[109.013153,0.764120900000023],[109.02232360000005,0.766066200000068],[109.03135530000009,0.771624100000054],[109.03552380000008,0.778710600000068],[109.04094280000004,0.831511200000023],[109.04608390000004,0.839292400000033],[109.05851410000008,0.850935600000071],[109.09268810000009,0.862048300000026],[109.11665040000008,0.87510640000005],[109.12445830000007,0.882241200000067],[109.13240090000005,0.883991300000048],[109.14168960000006,0.898664800000063],[109.14424740000004,0.900684100000035],[109.14707440000006,0.902299500000026],[109.15744010000009,0.903107300000045],[109.160671,0.918319300000064],[109.16026710000006,0.934339],[109.16269030000007,0.937973700000043],[109.16026710000006,0.940935300000035],[109.16548820000008,0.945613300000048],[109.16538540000005,0.946846200000039],[109.16240610000006,0.947873500000071],[109.16261160000005,0.949106400000062],[109.16538540000005,0.950441900000044],[109.166721,0.954037700000072],[109.16898120000008,0.955476],[109.17154960000005,0.961640100000068],[109.17637810000008,0.962462],[109.17621180000003,0.964820900000063]]]},"properties":{"shapeName":"Kota Singkawang","shapeISO":"","shapeID":"22746128B89390567550374","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.54477330000009,-0.8148854],[100.56133680000005,-0.819046899999933],[100.59253310000008,-0.807275299999958],[100.620921,-0.799672599999951],[100.62210330000005,-0.798034799999925],[100.625357,-0.799522],[100.63614960000007,-0.795201099999929],[100.64270750000009,-0.797283099999959],[100.64164060000007,-0.805016499999965],[100.64717950000005,-0.804397299999948],[100.65382780000004,-0.807740199999955],[100.65799910000004,-0.805982599999936],[100.66115890000003,-0.809232],[100.66625080000006,-0.810914499999967],[100.67505520000009,-0.808353599999975],[100.67900510000004,-0.806191899999931],[100.67949230000005,-0.804124399999978],[100.67682650000006,-0.79352],[100.673741,-0.7924737],[100.67353770000005,-0.790805099999943],[100.66970290000006,-0.7878124],[100.67062860000004,-0.782777499999952],[100.67303610000005,-0.7804761],[100.67263470000006,-0.768877799999927],[100.67818290000008,-0.767235299999925],[100.684931,-0.762048099999959],[100.68647960000004,-0.762443699999949],[100.68573460000005,-0.7606527],[100.688876,-0.746524199999953],[100.68790060000003,-0.743876599999965],[100.68053390000006,-0.739451899999949],[100.67508860000004,-0.738712499999963],[100.64288330000005,-0.744506799999954],[100.63264390000006,-0.764709],[100.62689780000005,-0.770292499999925],[100.62564120000008,-0.769603099999927],[100.62179780000008,-0.772730499999966],[100.60967250000004,-0.772139699999968],[100.605979,-0.780625599999951],[100.59710860000007,-0.785094599999979],[100.57078830000006,-0.786742],[100.56901480000005,-0.789422],[100.57019970000005,-0.794482599999981],[100.56443470000005,-0.799694699999975],[100.56295510000007,-0.797313599999939],[100.56620650000008,-0.792697899999951],[100.565023,-0.791209799999933],[100.562953,-0.791954899999951],[100.55822420000004,-0.800143599999956],[100.553914,-0.802688199999977],[100.54417790000008,-0.804465799999946],[100.54137,-0.809081399999968],[100.54477330000009,-0.8148854]]]},"properties":{"shapeName":"Kota Solok","shapeISO":"","shapeID":"22746128B37767547981337","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[131.2680865000001,-0.933797399999946],[131.2667589,-0.933258099999932],[131.26856740000005,-0.9351614],[131.2680865000001,-0.933797399999946]]],[[[131.26543560000005,-0.928832599999964],[131.26528210000004,-0.925876199999948],[131.2639190000001,-0.927746399999933],[131.26543560000005,-0.928832599999964]]],[[[131.25311570000008,-0.926672399999973],[131.2529452000001,-0.924967],[131.25074330000007,-0.926133899999968],[131.2490517000001,-0.9303702],[131.25311570000008,-0.926672399999973]]],[[[131.25644150000005,-0.924085899999966],[131.2541430000001,-0.929107299999941],[131.2518636000001,-0.930610499999943],[131.2519718000001,-0.933313399999975],[131.26243740000007,-0.935516299999961],[131.26380050000012,-0.9342282],[131.2635008000001,-0.932147499999928],[131.26049480000006,-0.9304762],[131.25644150000005,-0.924085899999966]]],[[[131.24885110000002,-0.920412899999974],[131.24510610000004,-0.921751299999926],[131.2457568000001,-0.924719899999957],[131.2495762000001,-0.924346299999968],[131.25062160000004,-0.921792399999958],[131.24885110000002,-0.920412899999974]]],[[[131.265127,-0.920249299999966],[131.264122,-0.9191437],[131.26220920000003,-0.920842499999935],[131.26395330000003,-0.922214699999927],[131.265127,-0.920249299999966]]],[[[131.2627943000001,-0.917237099999966],[131.26076690000002,-0.917467199999976],[131.26071150000007,-0.919737099999963],[131.2636854000001,-0.918056699999966],[131.2627943000001,-0.917237099999966]]],[[[131.27379740000003,-0.907082499999945],[131.27318980000007,-0.905080099999964],[131.27231860000006,-0.905919899999958],[131.27379740000003,-0.907082499999945]]],[[[131.2296639000001,-0.903255299999955],[131.228557,-0.903048299999966],[131.22733960000005,-0.906259299999931],[131.22979810000004,-0.907900599999948],[131.2298005,-0.911866199999963],[131.23195870000006,-0.913224499999956],[131.23383230000002,-0.909333299999957],[131.2296639000001,-0.903255299999955]]],[[[131.27057330000002,-0.902678399999957],[131.2679299,-0.902641899999935],[131.26771280000003,-0.9039963],[131.27059350000002,-0.9046812],[131.27199510000003,-0.9036312],[131.27057330000002,-0.902678399999957]]],[[[131.23725070000012,-0.884032799999943],[131.23106770000004,-0.888749099999927],[131.23409090000007,-0.890819799999974],[131.2400589,-0.888636099999928],[131.241251,-0.885707199999956],[131.23725070000012,-0.884032799999943]]],[[[131.20585060000008,-0.882568699999979],[131.19683780000003,-0.885399899999925],[131.18876330000012,-0.8925636],[131.18507660000012,-0.897755899999936],[131.192243,-0.898594799999955],[131.1969855000001,-0.8950808],[131.20446550000008,-0.895188299999973],[131.2101268,-0.887464199999954],[131.21049850000009,-0.883099699999946],[131.20585060000008,-0.882568699999979]]],[[[131.214405,-0.834011399999952],[131.2127597000001,-0.836249899999927],[131.21002180000005,-0.8352362],[131.2068538000001,-0.837993499999925],[131.22126330000003,-0.842418899999927],[131.22150940000006,-0.840823499999942],[131.214405,-0.834011399999952]]],[[[131.3998167000001,-0.782253599999933],[131.3987615000001,-0.779472399999975],[131.3996476000001,-0.777387799999929],[131.39668960000006,-0.776645199999962],[131.3839732,-0.779183099999955],[131.37569410000003,-0.783505],[131.36859470000002,-0.781722599999966],[131.36282770000003,-0.782619099999977],[131.35986850000006,-0.78009],[131.35735560000012,-0.7821756],[131.3549891,-0.7814326],[131.35558130000004,-0.782772099999931],[131.3499627000001,-0.784561699999927],[131.34804140000006,-0.786795799999936],[131.32970440000008,-0.788890399999957],[131.32926390000011,-0.794547699999953],[131.32320220000008,-0.797677499999963],[131.32083540000008,-0.796636699999965],[131.31506810000008,-0.797384399999942],[131.30427510000004,-0.803047699999979],[131.2982114,-0.802753399999972],[131.294072,-0.805658799999946],[131.2838045000001,-0.804969899999946],[131.27365510000004,-0.810267099999976],[131.2695155,-0.809395399999971],[131.25917160000006,-0.812982499999976],[131.25559110000006,-0.816167199999938],[131.2491834000001,-0.8166269],[131.24563110000008,-0.820100199999956],[131.2324642000001,-0.816473199999962],[131.22533190000001,-0.821436699999936],[131.22810640000012,-0.829240699999957],[131.2364838000001,-0.831384399999934],[131.2357869000001,-0.832323199999962],[131.23784200000011,-0.8334363],[131.23949860000005,-0.837866],[131.24244410000006,-0.840166099999976],[131.24260530000004,-0.842826899999977],[131.2405824000001,-0.843163],[131.24109140000007,-0.844256],[131.2428801000001,-0.8438825],[131.2453147000001,-0.846515199999942],[131.24366880000002,-0.850162099999977],[131.24759380000012,-0.851381199999935],[131.2453891,-0.8548982],[131.24695040000006,-0.863216099999931],[131.24522390000004,-0.866138],[131.24643760000004,-0.868237699999952],[131.24571460000004,-0.873363799999936],[131.24190780000004,-0.875892399999941],[131.24250960000006,-0.877436099999954],[131.25134950000006,-0.877494399999932],[131.25252050000006,-0.878894499999944],[131.2562316000001,-0.879185399999926],[131.25770280000006,-0.881339899999944],[131.2585693000001,-0.880558599999972],[131.264115,-0.883819399999936],[131.26308970000002,-0.8859492],[131.26513670000008,-0.886413799999957],[131.26490940000008,-0.887857499999939],[131.26657080000007,-0.887365699999975],[131.26944490000005,-0.889331],[131.271135,-0.894613499999934],[131.27606230000004,-0.8954183],[131.276715,-0.897112299999947],[131.28024490000007,-0.897893499999952],[131.28330270000004,-0.896251899999925],[131.2858642000001,-0.896878799999968],[131.288198,-0.900315399999954],[131.28629120000005,-0.905506199999934],[131.2867715000001,-0.908947599999976],[131.288807,-0.911359699999934],[131.29844160000005,-0.915330499999925],[131.3007133000001,-0.917586699999958],[131.3010276000001,-0.921850499999948],[131.29753690000007,-0.916133899999977],[131.29503440000008,-0.91786],[131.2855968,-0.913688699999966],[131.28462030000003,-0.9157753],[131.28074070000002,-0.917467099999953],[131.27934840000012,-0.916133899999977],[131.27694510000003,-0.916393299999925],[131.2770061000001,-0.918987299999969],[131.283289,-0.924482299999966],[131.2789669000001,-0.921154],[131.27609830000006,-0.922401399999956],[131.271719,-0.917747499999962],[131.2682476000001,-0.920473099999924],[131.2679081000001,-0.921890299999973],[131.2698841,-0.9236336],[131.2690334,-0.9258404],[131.26696210000011,-0.926210399999945],[131.26696590000006,-0.930501899999967],[131.27001380000002,-0.9338112],[131.27232930000002,-0.932338699999946],[131.27659030000007,-0.9330711],[131.28000070000007,-0.931596799999966],[131.28463550000004,-0.934047699999951],[131.28999520000002,-0.933675799999946],[131.29547690000004,-0.931587199999967],[131.30217930000003,-0.938942],[131.311252,-0.942039099999931],[131.312596,-0.944480699999929],[131.31546590000005,-0.945800799999972],[131.31765560000008,-0.944326399999966],[131.3237223000001,-0.944462099999953],[131.33173610000006,-0.9476467],[131.3407366,-0.946668799999941],[131.34629,-0.950685],[131.34896980000008,-0.95007],[131.35725560000003,-0.9523943],[131.3616402,-0.950674399999969],[131.36635910000007,-0.952274899999964],[131.3937522000001,-0.952887299999929],[131.404938,-0.955531299999961],[131.41015210000012,-0.9549921],[131.423889,-0.946275499999956],[131.42678780000006,-0.947523599999954],[131.4330986000001,-0.9440624],[131.433649,-0.937372499999981],[131.428954,-0.927990299999976],[131.43130480000002,-0.921387599999946],[131.42989450000005,-0.913673099999926],[131.423628,-0.90832],[131.4245856000001,-0.905238199999928],[131.4216060000001,-0.900198599999953],[131.42219110000008,-0.892641],[131.418574,-0.887270499999943],[131.41886550000004,-0.876608],[131.42252760000008,-0.874686799999949],[131.42231110000012,-0.873085099999969],[131.41678190000005,-0.871395],[131.41598350000004,-0.867140599999971],[131.4112275000001,-0.869279499999948],[131.41490440000007,-0.864504899999929],[131.4104076000001,-0.862795399999925],[131.40825890000008,-0.859501299999977],[131.40300530000002,-0.861206599999946],[131.39746660000003,-0.857706],[131.39676950000012,-0.856288099999972],[131.40517010000008,-0.850392599999964],[131.4047375,-0.847739799999943],[131.4033687000001,-0.8457467],[131.4006498000001,-0.845197699999972],[131.401576,-0.841743099999974],[131.3947362,-0.838301699999931],[131.39173610000012,-0.827711099999931],[131.38844630000006,-0.825964299999953],[131.3888849000001,-0.822933699999965],[131.39269090000005,-0.825183],[131.3957322000001,-0.824556199999961],[131.3969651000001,-0.820252],[131.39895510000008,-0.823594699999944],[131.40254430000005,-0.823329399999977],[131.40405440000006,-0.817655199999933],[131.40508230000012,-0.816644499999938],[131.40688110000008,-0.818322699999953],[131.40856080000003,-0.816541399999949],[131.40634180000006,-0.8147983],[131.40439020000008,-0.809252399999934],[131.4021914000001,-0.809960799999942],[131.39761220000003,-0.808035899999936],[131.39729540000008,-0.801505199999951],[131.4014323,-0.794952699999953],[131.3998167000001,-0.782253599999933]]]]},"properties":{"shapeName":"Kota Sorong","shapeISO":"","shapeID":"22746128B71818345138226","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[97.79174090000004,2.507346400000074],[97.84115080000004,2.50247870000004],[97.84002380000004,2.513993],[97.84228590000004,2.517392900000061],[97.84659650000003,2.518822200000045],[97.84926450000006,2.523234500000058],[97.84802630000007,2.528952400000037],[97.85069930000009,2.527645600000028],[97.85186230000005,2.529644900000051],[97.85062720000008,2.531710900000064],[97.84747,2.531499],[97.84278990000007,2.538808700000061],[97.842878,2.556970700000022],[97.85014840000008,2.559069900000054],[97.853869,2.56440120000002],[97.85752240000005,2.562020500000074],[97.86320220000005,2.560906800000055],[97.87075140000007,2.556229900000062],[97.87457420000004,2.547903700000063],[97.88272540000008,2.548129500000073],[97.88635,2.550854],[97.89068390000006,2.560552700000073],[97.89839150000006,2.565258200000073],[97.90084280000008,2.562832400000048],[97.90411110000008,2.562375200000076],[97.90754970000006,2.567130800000029],[97.91195280000005,2.570266100000026],[97.91674980000005,2.569910600000071],[97.92271860000005,2.574118300000066],[97.92636840000006,2.57276470000005],[97.926655,2.575004500000034],[97.92942340000008,2.576522300000022],[97.93296790000005,2.573463],[97.934551,2.575276700000074],[97.93775230000006,2.573904500000026],[97.94150730000007,2.579344800000058],[97.94535990000008,2.579504200000031],[97.946946,2.577724400000022],[97.95297160000007,2.580229200000076],[97.95401240000007,2.576880900000049],[97.98828760000004,2.609746],[98.00419980000004,2.59859],[98.00956930000007,2.596567600000071],[98.01374960000004,2.589131200000054],[98.020179,2.584870800000033],[98.02397050000008,2.584178200000053],[98.02285180000007,2.580498100000057],[98.02539450000006,2.579547600000069],[98.02783150000005,2.574638300000061],[98.02664640000006,2.571879200000069],[98.02988880000004,2.568322700000067],[98.03203190000005,2.568424600000071],[98.03243220000007,2.566369700000052],[98.03093840000008,2.564463800000055],[98.032138,2.559853],[98.03477970000006,2.559754800000064],[98.04264910000006,2.567279700000029],[98.04424720000009,2.563070300000049],[98.04659090000007,2.561468],[98.05376860000007,2.560821700000076],[98.05192230000006,2.563827900000035],[98.05560990000004,2.564682800000071],[98.06023860000005,2.573759300000063],[98.05739590000007,2.576063],[98.05784660000006,2.579373500000031],[98.05546620000007,2.585518400000069],[98.06525020000004,2.585665800000072],[98.07922980000006,2.583098100000029],[98.083449,2.59213630000005],[98.08497670000008,2.60275],[98.09147040000005,2.601213100000052],[98.10043620000005,2.601534100000038],[98.10960910000006,2.604057],[98.11260430000004,2.61337930000002],[98.10862470000006,2.623759300000074],[98.10367130000009,2.649288],[98.10484780000007,2.666079],[98.10382580000004,2.682081],[98.10063790000004,2.689232],[98.085556,2.706296],[98.07498750000008,2.72625],[98.07130840000008,2.736803],[98.07358620000008,2.747029],[98.07612610000007,2.749845900000025],[98.06955850000008,2.763973400000054],[98.09001990000007,2.772972],[98.10847770000004,2.776121],[98.11688160000006,2.78500710000003],[98.10505560000007,2.790332],[98.09797360000005,2.818634],[98.09903760000003,2.822818],[98.06771950000007,2.817369],[98.06265870000004,2.81694],[98.05574590000003,2.818716],[98.049008,2.823002],[98.046201,2.826938],[98.03919370000006,2.847892],[98.03490660000006,2.847464],[98.03192560000008,2.84919],[98.02775980000007,2.85589],[98.00637330000006,2.87231],[98.00256150000007,2.874749],[97.99742370000007,2.87428],[97.99240170000007,2.882203],[97.98501390000007,2.882594],[97.98190890000006,2.885628],[97.974755,2.888468],[97.94869290000008,2.895330500000057],[97.96376160000005,2.961892500000033],[97.96455660000004,2.973231200000043],[97.95939360000006,2.981324900000061],[97.95209460000007,2.98649510000007],[97.93513880000006,2.989519],[97.90644240000006,3.001675600000056],[97.90159750000004,3.007845900000063],[97.88802880000009,3.009229],[97.88183790000005,3.006879500000025],[97.87116640000005,3.009755200000029],[97.86104760000006,3.003505300000029],[97.85615720000004,3.003374800000074],[97.85148530000004,3.000983700000063],[97.83984930000008,3.003208200000074],[97.828982,3.000000300000067],[97.81500090000009,2.982211900000038],[97.87171320000004,2.967348],[97.89963,2.965767],[97.906447,2.954723],[97.908018,2.925855],[97.90487030000008,2.911693],[97.90173520000008,2.907203],[97.88643370000005,2.894286],[97.85819430000004,2.881716],[97.85722370000008,2.869138],[97.859997,2.860121],[97.86024380000003,2.84658],[97.85254680000008,2.837381],[97.836561,2.826539],[97.76642040000007,2.787164400000052],[97.77979060000007,2.758695],[97.81700490000009,2.668531],[97.81387210000008,2.652823],[97.82510310000004,2.636842],[97.79549930000007,2.547183],[97.79174090000004,2.507346400000074]]]},"properties":{"shapeName":"Kota Subulussalam","shapeISO":"","shapeID":"22746128B29254845056623","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[106.91538610000003,-6.893193499999938],[106.91489080000008,-6.892359699999929],[106.91412510000004,-6.894057],[106.91153330000009,-6.892419],[106.91009470000006,-6.8939773],[106.90896530000003,-6.898581],[106.90982450000007,-6.903482499999939],[106.90731650000004,-6.907560399999966],[106.906177,-6.914922499999932],[106.90487270000006,-6.912292599999944],[106.90140110000004,-6.912009399999931],[106.90093020000006,-6.913997499999937],[106.90183530000007,-6.919319199999961],[106.90073760000007,-6.921150299999965],[106.90060730000005,-6.933472399999971],[106.907358,-6.938508899999931],[106.90742820000008,-6.941352599999959],[106.90919760000008,-6.943177099999957],[106.90859440000008,-6.945816199999967],[106.91157410000005,-6.952149599999927],[106.91029810000003,-6.954311399999938],[106.90205660000004,-6.956127099999946],[106.90086970000004,-6.958065699999963],[106.89898020000004,-6.958281899999974],[106.89812550000005,-6.956355499999972],[106.894476,-6.957441399999936],[106.89354220000007,-6.956134399999939],[106.88848940000008,-6.957003199999974],[106.88662040000008,-6.956044799999972],[106.884283,-6.958828],[106.87378410000008,-6.963018199999965],[106.87447450000008,-6.966792399999974],[106.87291050000005,-6.967727399999944],[106.87321550000007,-6.969645599999978],[106.87171550000005,-6.969540099999961],[106.87129920000007,-6.97239],[106.87515270000006,-6.976229499999931],[106.87691490000009,-6.973904799999957],[106.87905920000009,-6.9759084],[106.88006850000005,-6.973239599999943],[106.886374,-6.973994599999969],[106.88880020000005,-6.96939],[106.89583780000004,-6.972022799999934],[106.89467630000007,-6.974044099999958],[106.89723220000008,-6.978210899999965],[106.89922640000009,-6.976297599999953],[106.90059760000008,-6.977542699999958],[106.90223920000005,-6.975964699999963],[106.906013,-6.979085599999962],[106.91110750000007,-6.977428199999963],[106.91171750000007,-6.978368499999931],[106.91452220000008,-6.974402599999962],[106.91757830000006,-6.976207099999954],[106.91767160000006,-6.974083],[106.92320290000004,-6.972634199999959],[106.92295960000007,-6.969712],[106.92622640000008,-6.969753599999933],[106.93143590000005,-6.9653751],[106.93623530000008,-6.965245699999969],[106.93768640000008,-6.9671911],[106.94464350000004,-6.967161799999928],[106.94664730000005,-6.969112799999948],[106.95268390000007,-6.964072699999974],[106.95364210000008,-6.960284299999955],[106.95566560000009,-6.958541599999933],[106.955443,-6.954833099999973],[106.96002380000004,-6.942603099999928],[106.96020030000005,-6.937338599999975],[106.95822060000006,-6.933983799999965],[106.95923930000004,-6.933303399999943],[106.95884240000004,-6.927578399999959],[106.95723750000008,-6.924201599999947],[106.959837,-6.918745799999954],[106.94993470000009,-6.920665199999974],[106.95226410000004,-6.915979199999981],[106.95519440000004,-6.915294199999948],[106.95424810000009,-6.905204],[106.95015920000009,-6.905636299999969],[106.94882340000004,-6.907904],[106.94422390000005,-6.905108],[106.94034240000008,-6.9053143],[106.93417260000007,-6.902382099999954],[106.92891090000006,-6.904126299999973],[106.92792850000006,-6.901380699999947],[106.92497560000004,-6.900368599999979],[106.92427410000005,-6.898330199999975],[106.922198,-6.901446499999963],[106.91809220000005,-6.9028424],[106.91538610000003,-6.893193499999938]]]},"properties":{"shapeName":"Kota Sukabumi","shapeISO":"","shapeID":"22746128B20585153720357","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[101.24083320000005,-2.064946299999974],[101.24962090000008,-2.082873099999972],[101.26468720000008,-2.101814299999944],[101.28210620000004,-2.2502573],[101.37001620000007,-2.191368099999977],[101.370496,-2.187151299999925],[101.36768750000005,-2.184217599999954],[101.36708410000006,-2.181186699999955],[101.36814050000004,-2.175049899999976],[101.37877790000005,-2.175855699999943],[101.38859370000006,-2.180776099999946],[101.39357040000004,-2.1804519],[101.40812050000005,-2.171384299999943],[101.41159080000006,-2.166465199999948],[101.41533590000006,-2.1564061],[101.41536,-2.149472299999957],[101.40903840000004,-2.118315399999972],[101.41557340000008,-2.1140743],[101.41752170000007,-2.1048575],[101.42256390000006,-2.102123199999937],[101.43909310000004,-2.107094599999925],[101.44405720000003,-2.105421199999967],[101.45694490000005,-2.089078399999948],[101.44865780000003,-2.082928799999934],[101.45047550000004,-2.080249599999945],[101.44667440000006,-2.076780799999938],[101.44649260000006,-2.074611299999958],[101.44863990000005,-2.0717698],[101.43935480000005,-2.059463499999936],[101.43751640000005,-2.0472869],[101.43979640000003,-2.045810299999971],[101.42693630000008,-2.026356699999951],[101.42087320000007,-2.030222199999969],[101.400919,-2.031209299999944],[101.28977630000009,-2.027296199999967],[101.27200650000003,-2.0331345],[101.24083320000005,-2.064946299999974]]]},"properties":{"shapeName":"Kota Sungai Penuh","shapeISO":"","shapeID":"22746128B65572348678774","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[112.66586010000003,-7.197317899999973],[112.66495820000011,-7.192100899999957],[112.66358470000011,-7.193138599999941],[112.6644490000001,-7.194147399999963],[112.66458110000008,-7.197079899999949],[112.66586010000003,-7.197317899999973]]],[[[112.65634340000008,-7.356820099999936],[112.66242490000002,-7.351342899999963],[112.67646780000007,-7.351013],[112.6952056,-7.343425599999932],[112.70467470000006,-7.336152799999979],[112.71610110000006,-7.339933],[112.7156801000001,-7.341827499999965],[112.7198423000001,-7.342963899999972],[112.71972650000009,-7.3444999],[112.72718930000008,-7.3484439],[112.73315420000006,-7.348126699999966],[112.73342890000004,-7.346590299999946],[112.73631280000006,-7.346227499999941],[112.73677060000011,-7.344796499999973],[112.7419814000001,-7.345201799999927],[112.74302670000009,-7.340814899999941],[112.75346370000011,-7.3422302],[112.75540920000003,-7.336743199999944],[112.76650990000007,-7.3383363],[112.76728050000008,-7.3416393],[112.77014150000002,-7.339232299999935],[112.77747810000005,-7.341127799999981],[112.77943410000012,-7.342612599999939],[112.77947230000007,-7.344696399999975],[112.78373710000005,-7.345486],[112.78893270000003,-7.343962499999975],[112.79364770000007,-7.346391],[112.79868310000006,-7.344906199999969],[112.81280980000008,-7.346290899999929],[112.8196249,-7.343326199999979],[112.82663120000007,-7.343308599999943],[112.82782570000006,-7.338004799999965],[112.83210870000005,-7.332294],[112.83395280000002,-7.325572099999931],[112.84253,-7.31697],[112.84579,-7.30978],[112.84679950000009,-7.287391399999933],[112.84556220000002,-7.282632499999977],[112.842802,-7.275922399999956],[112.8395660000001,-7.274209199999973],[112.84066050000001,-7.271829799999978],[112.83640130000003,-7.266410499999949],[112.83589560000007,-7.262543899999969],[112.833427,-7.259153199999957],[112.82555690000004,-7.2561432],[112.8232369000001,-7.256749899999932],[112.82345110000006,-7.2550724],[112.81609850000007,-7.251681699999949],[112.8108744000001,-7.257269299999962],[112.81002280000007,-7.254397199999971],[112.80654850000008,-7.255679599999951],[112.80702480000002,-7.252163899999971],[112.80408880000005,-7.251961899999969],[112.8012453,-7.242374799999936],[112.799822,-7.242495899999938],[112.79619910000008,-7.238485199999957],[112.79378710000003,-7.230588499999953],[112.79127,-7.22691],[112.7887300000001,-7.22576],[112.78738,-7.21926],[112.78487,-7.21723],[112.78029720000006,-7.208758599999953],[112.77639450000004,-7.208550099999968],[112.77419150000003,-7.206217299999935],[112.77444720000005,-7.203015099999959],[112.76479820000009,-7.196254599999975],[112.75996550000002,-7.195896],[112.75204,-7.1999],[112.74612,-7.19674],[112.74865000000011,-7.1952],[112.74796,-7.19441],[112.74332,-7.19434],[112.72359,-7.198],[112.72434,-7.19987],[112.73153,-7.19851],[112.73198,-7.20008],[112.73063,-7.20124],[112.73198,-7.20122],[112.73291,-7.20344],[112.73273,-7.20665],[112.72984,-7.20715],[112.73047,-7.20877],[112.72859,-7.20913],[112.72559,-7.20277],[112.72446,-7.20327],[112.72711,-7.20937],[112.72571,-7.20976],[112.71991590000005,-7.198337099999947],[112.71744850000005,-7.199137399999927],[112.71739,-7.20104],[112.72010000000012,-7.20745],[112.72178,-7.2082],[112.7216800000001,-7.21021],[112.71901180000009,-7.206717],[112.7157519000001,-7.208192299999951],[112.71296790000008,-7.207407],[112.71566,-7.21365],[112.71364770000002,-7.216469],[112.70928210000011,-7.217710099999977],[112.7105762000001,-7.220585799999981],[112.70872760000009,-7.223265399999946],[112.7065500000001,-7.22332],[112.70603,-7.22475],[112.70525,-7.22127],[112.70326690000002,-7.2201467],[112.69581,-7.22341],[112.68839,-7.22342],[112.68604,-7.22551],[112.68037,-7.2234],[112.68023,-7.22153],[112.67813,-7.22147],[112.67793,-7.22023],[112.67709,-7.22382],[112.671,-7.22244],[112.66837,-7.22011],[112.6689646000001,-7.218795099999966],[112.66740360000006,-7.216568],[112.6660902000001,-7.217177099999958],[112.66293,-7.20999],[112.667897,-7.204872899999941],[112.67013370000006,-7.204777699999966],[112.66932470000006,-7.2037308],[112.676701,-7.196259299999952],[112.68041290000008,-7.199162199999932],[112.68141230000003,-7.198400799999945],[112.68274480000002,-7.196497199999953],[112.68169780000005,-7.193689499999948],[112.67812870000012,-7.190358199999935],[112.6759396000001,-7.19131],[112.6750829,-7.1934991],[112.67636790000006,-7.195117099999948],[112.67118060000007,-7.2007802],[112.67022880000002,-7.199971199999936],[112.66737350000005,-7.202731399999948],[112.66767690000006,-7.2046211],[112.66271630000006,-7.209658699999977],[112.66003,-7.20714],[112.66098220000003,-7.203534199999979],[112.66232060000004,-7.203385499999968],[112.6621421000001,-7.201690099999951],[112.66520570000012,-7.198715799999945],[112.66390750000005,-7.196927499999958],[112.66387320000001,-7.1938998],[112.66102880000005,-7.193307499999946],[112.65917210000009,-7.196354399999962],[112.65445710000006,-7.196051599999976],[112.6348190000001,-7.199635499999943],[112.61344150000002,-7.209043],[112.59916690000011,-7.203226099999938],[112.5926895,-7.202303899999947],[112.59233860000006,-7.207057],[112.5984496000001,-7.212452299999939],[112.59465780000005,-7.214729599999941],[112.596466,-7.216381399999932],[112.59805290000008,-7.215494499999977],[112.60074610000004,-7.216823],[112.597702,-7.219065499999942],[112.59731290000002,-7.222022899999956],[112.59325400000012,-7.215495899999951],[112.59154500000011,-7.222788199999968],[112.59694660000002,-7.223520099999973],[112.59877010000002,-7.227179399999955],[112.59781640000006,-7.228493599999979],[112.60460660000001,-7.232767],[112.6038665000001,-7.237234],[112.6064986,-7.240386299999955],[112.6019897000001,-7.246485599999971],[112.6065215000001,-7.248613199999966],[112.6145553,-7.248207399999956],[112.61424250000005,-7.252400699999953],[112.61790460000009,-7.252652],[112.6172027,-7.257561599999974],[112.6262283000001,-7.261333299999933],[112.62930290000008,-7.259722599999975],[112.63233180000009,-7.2617358],[112.63136280000003,-7.274660899999958],[112.62640370000008,-7.277211499999964],[112.62816610000004,-7.278729299999952],[112.62671650000004,-7.282863499999962],[112.62865280000005,-7.289640099999929],[112.62622060000001,-7.300080099999946],[112.62869260000002,-7.301264099999969],[112.62941890000002,-7.311640399999931],[112.63659440000004,-7.311503099999925],[112.637001,-7.313098699999955],[112.64949260000003,-7.314581799999928],[112.64833670000007,-7.318987499999935],[112.650884,-7.321473499999968],[112.64850910000007,-7.335300299999972],[112.65383150000002,-7.338997799999959],[112.65575410000008,-7.342586],[112.65438080000001,-7.356211199999962],[112.65634340000008,-7.356820099999936]]]]},"properties":{"shapeName":"Kota Surabaya","shapeISO":"","shapeID":"22746128B18949715725543","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[110.80066790000006,-7.533854799999972],[110.796348,-7.549091699999963],[110.78967510000007,-7.5470616],[110.787241,-7.548151],[110.78153420000007,-7.545425499999965],[110.77725040000007,-7.546742699999982],[110.77098130000007,-7.545269399999938],[110.76912290000007,-7.551397099999974],[110.778582,-7.554257099999973],[110.77823640000008,-7.560508699999957],[110.78405760000004,-7.5641689],[110.78389740000006,-7.572115399999973],[110.78244020000005,-7.575818499999968],[110.78773640000009,-7.575346699999955],[110.79021660000006,-7.573073099999931],[110.79242330000005,-7.573487399999976],[110.79288130000003,-7.571161299999972],[110.79336090000004,-7.572192399999949],[110.80180140000004,-7.571462199999928],[110.804718,-7.573853499999927],[110.80662190000004,-7.579616599999952],[110.80934910000008,-7.580961699999932],[110.80969240000007,-7.583150399999965],[110.81769730000008,-7.588933099999963],[110.81680860000006,-7.591847299999927],[110.81882120000006,-7.594675799999948],[110.82365420000008,-7.595080799999948],[110.82792610000007,-7.592803],[110.83286720000007,-7.594873199999938],[110.83692040000005,-7.590622499999938],[110.840013,-7.590290799999934],[110.841066,-7.582129099999975],[110.84290210000006,-7.580631299999936],[110.84334240000004,-7.577680399999963],[110.84595910000007,-7.576517199999955],[110.84694960000007,-7.572937199999956],[110.85425470000007,-7.574837199999934],[110.85427480000004,-7.570260499999961],[110.859726,-7.569984399999953],[110.86102950000009,-7.567144799999937],[110.86251570000007,-7.560124099999939],[110.866005,-7.558950899999957],[110.86717990000005,-7.556797899999935],[110.86827090000008,-7.546309],[110.86554160000009,-7.545596499999931],[110.86346420000007,-7.548063399999933],[110.86111710000006,-7.547144599999967],[110.86273050000005,-7.5414047],[110.85776170000008,-7.5407477],[110.85649370000004,-7.541743199999928],[110.85496740000008,-7.535014],[110.84869430000003,-7.533110799999974],[110.83928130000004,-7.533306699999969],[110.83759270000007,-7.531173899999942],[110.83523510000003,-7.5328409],[110.83427810000006,-7.531228699999929],[110.82740980000005,-7.529053599999941],[110.82728160000005,-7.530416899999977],[110.82345860000004,-7.527943499999935],[110.82312620000005,-7.529058299999974],[110.81738710000008,-7.528864799999951],[110.81574520000004,-7.523207899999932],[110.81401060000007,-7.526545],[110.81116490000005,-7.525515499999926],[110.81015780000007,-7.527510599999971],[110.81103520000005,-7.528761399999951],[110.80815120000005,-7.534457199999963],[110.80621340000005,-7.532290399999965],[110.803009,-7.531758699999955],[110.80066790000006,-7.533854799999972]]]},"properties":{"shapeName":"Kota Surakarta","shapeISO":"","shapeID":"22746128B53363322500712","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[106.68723570000009,-6.097140699999954],[106.67696090000004,-6.098011099999951],[106.67577380000006,-6.098608499999955],[106.67548390000007,-6.102169],[106.67013260000004,-6.102960899999971],[106.67152430000004,-6.105793],[106.64250970000006,-6.117345299999954],[106.64249440000003,-6.107842399999981],[106.63578050000007,-6.105780099999947],[106.63133140000008,-6.117271199999948],[106.63209,-6.12023],[106.62306240000004,-6.120690299999978],[106.61409020000008,-6.125971299999946],[106.61404440000007,-6.131606099999942],[106.61083950000005,-6.135185199999967],[106.61567750000006,-6.140526899999941],[106.61335010000005,-6.147672599999964],[106.59032520000005,-6.148125],[106.59177380000006,-6.158514799999978],[106.58739490000005,-6.162125499999945],[106.58355430000006,-6.162277],[106.58261130000005,-6.166902499999935],[106.58064290000004,-6.166967299999953],[106.57863640000005,-6.170040599999936],[106.57922390000004,-6.172037099999955],[106.56845880000009,-6.174938199999929],[106.564728,-6.178111],[106.564873,-6.1797804],[106.56103610000008,-6.180189799999937],[106.56093620000007,-6.181604799999945],[106.55265070000007,-6.184793899999931],[106.55338310000008,-6.188133599999958],[106.55164360000003,-6.189044899999942],[106.551938,-6.1948461],[106.55335260000004,-6.195025899999962],[106.55394,-6.197649399999932],[106.55261250000007,-6.1994852],[106.55619860000007,-6.198923699999966],[106.55807520000008,-6.201459399999976],[106.56908440000007,-6.206267799999978],[106.56490350000007,-6.211240199999963],[106.56975680000005,-6.213203699999951],[106.57141180000008,-6.212289],[106.57132110000003,-6.214140899999961],[106.57334490000005,-6.214328099999932],[106.57317840000007,-6.215519799999981],[106.58032250000008,-6.216339099999971],[106.58288460000006,-6.220676699999956],[106.59163250000006,-6.222724599999935],[106.59062190000009,-6.2216432],[106.59474970000008,-6.2145791],[106.593735,-6.213551],[106.5957,-6.20586],[106.59698290000006,-6.207595099999935],[106.59990810000005,-6.207358199999931],[106.60126050000008,-6.205773199999953],[106.60471220000005,-6.208392899999978],[106.60238210000006,-6.213429899999937],[106.61258720000006,-6.215792099999931],[106.609489,-6.220338499999968],[106.61358140000004,-6.220709799999952],[106.61358490000003,-6.223552],[106.61075110000007,-6.225301599999966],[106.611634,-6.227167599999973],[106.61781610000008,-6.224926],[106.619285,-6.227484499999946],[106.62784710000005,-6.227812],[106.63046290000005,-6.225513],[106.638065,-6.229747299999929],[106.64320920000006,-6.230127099999947],[106.64569870000008,-6.2289337],[106.67050390000009,-6.232120399999928],[106.69343120000008,-6.229370599999925],[106.69353210000008,-6.231176],[106.69113170000008,-6.231178499999942],[106.69058960000007,-6.233253199999979],[106.68978860000004,-6.232514699999967],[106.68791650000009,-6.233890899999949],[106.68869090000004,-6.235553399999958],[106.68671870000009,-6.237191899999971],[106.686484,-6.2398917],[106.6892,-6.240336099999979],[106.69067490000003,-6.243988899999977],[106.69695470000005,-6.244289899999956],[106.69587730000006,-6.251670799999943],[106.69828050000007,-6.251788599999941],[106.70408650000007,-6.256234199999938],[106.70414760000006,-6.253315899999961],[106.70749570000004,-6.252170499999977],[106.72043930000007,-6.2522362],[106.72079230000008,-6.250960099999929],[106.72344070000008,-6.252834699999937],[106.72405210000005,-6.2510791],[106.74364090000006,-6.250210599999946],[106.74393310000005,-6.248892699999942],[106.74815340000004,-6.249611899999934],[106.74667320000003,-6.246667699999932],[106.74858880000005,-6.240682599999957],[106.746999,-6.236389599999939],[106.74391940000004,-6.236242299999958],[106.74538780000006,-6.230721699999947],[106.74389930000007,-6.230478499999947],[106.743211,-6.2274659],[106.74030740000006,-6.227635599999928],[106.740303,-6.2261041],[106.73777880000006,-6.225320299999964],[106.73731550000008,-6.223623099999941],[106.71823040000004,-6.224172299999964],[106.71814310000008,-6.217743899999959],[106.72016930000007,-6.209604299999967],[106.72439580000008,-6.207603099999972],[106.72405090000007,-6.191571899999929],[106.71691150000004,-6.193122399999936],[106.71706410000007,-6.186707],[106.70488760000006,-6.179064299999936],[106.68882770000005,-6.172126799999944],[106.68997210000003,-6.1600332],[106.68810270000006,-6.159980499999961],[106.68621080000008,-6.1430645],[106.691704,-6.136499899999933],[106.69139880000006,-6.133455799999979],[106.68708060000006,-6.128622099999973],[106.68969750000008,-6.121171],[106.68901850000009,-6.114240699999925],[106.69640370000008,-6.112876899999947],[106.69788380000006,-6.110893699999963],[106.69368760000003,-6.107194399999969],[106.68895740000005,-6.106362299999944],[106.68723570000009,-6.097140699999954]]]},"properties":{"shapeName":"Kota Tangerang","shapeISO":"","shapeID":"22746128B90613956747459","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[106.72051370000008,-6.360478099999966],[106.75943010000009,-6.360786899999937],[106.76126120000004,-6.357379899999955],[106.771065,-6.357180099999937],[106.77002730000004,-6.352325899999926],[106.77185010000005,-6.352414199999942],[106.77210250000007,-6.3500877],[106.77368180000008,-6.350258399999973],[106.77325460000009,-6.346584299999961],[106.77443710000006,-6.345799399999976],[106.77253740000003,-6.344069],[106.77366660000007,-6.3388663],[106.77240010000008,-6.338206799999966],[106.77642,-6.335915899999975],[106.775284,-6.333162799999968],[106.77755760000008,-6.329489699999954],[106.77679460000007,-6.327005899999961],[106.77884690000008,-6.326871399999959],[106.77772540000007,-6.323257],[106.77924060000004,-6.321405599999935],[106.77859520000004,-6.3174],[106.77989980000007,-6.3165441],[106.77684040000008,-6.315314299999955],[106.77653520000007,-6.311933499999952],[106.77471940000004,-6.312135199999943],[106.77533740000007,-6.310543099999961],[106.77327750000006,-6.309679],[106.77496360000004,-6.308388299999933],[106.773926,-6.3065629],[106.77532980000007,-6.306140399999947],[106.77559680000007,-6.304074799999967],[106.77446,-6.3032952],[106.77315540000006,-6.304795799999965],[106.77346820000008,-6.303120199999967],[106.770859,-6.302105399999959],[106.77312490000008,-6.301498],[106.77152270000005,-6.299374099999966],[106.77374290000006,-6.299531499999944],[106.77375050000006,-6.298570699999971],[106.77128620000008,-6.299055599999974],[106.76979850000004,-6.297561199999961],[106.77008080000007,-6.295619],[106.76739520000007,-6.295490799999925],[106.76813530000004,-6.291791899999964],[106.76591060000004,-6.288837099999967],[106.76306860000005,-6.288749399999972],[106.76293350000009,-6.286850799999968],[106.76010290000005,-6.286402599999974],[106.76221250000003,-6.277862899999946],[106.75719040000007,-6.277839799999981],[106.75696380000005,-6.274247399999979],[106.75158710000005,-6.274566199999981],[106.75029880000005,-6.271841199999926],[106.75301420000005,-6.269033899999954],[106.75245750000005,-6.264694599999928],[106.75652330000008,-6.262475],[106.75631050000004,-6.261482],[106.751465,-6.261748799999964],[106.75235950000007,-6.259796499999936],[106.75437390000008,-6.259847],[106.75351680000006,-6.25605],[106.75464510000006,-6.255559399999981],[106.75178730000005,-6.249973599999976],[106.74815340000004,-6.249611899999934],[106.74393310000005,-6.248892699999942],[106.74364090000006,-6.250210599999946],[106.72405210000005,-6.2510791],[106.72344070000008,-6.252834699999937],[106.72079230000008,-6.250960099999929],[106.72043930000007,-6.2522362],[106.70749570000004,-6.252170499999977],[106.70414760000006,-6.253315899999961],[106.70408650000007,-6.256234199999938],[106.69828050000007,-6.251788599999941],[106.69587730000006,-6.251670799999943],[106.69695470000005,-6.244289899999956],[106.69067490000003,-6.243988899999977],[106.6892,-6.240336099999979],[106.686484,-6.2398917],[106.68671870000009,-6.237191899999971],[106.68869090000004,-6.235553399999958],[106.68791650000009,-6.233890899999949],[106.68978860000004,-6.232514699999967],[106.69058960000007,-6.233253199999979],[106.69113170000008,-6.231178499999942],[106.69353210000008,-6.231176],[106.69343120000008,-6.229370599999925],[106.67050390000009,-6.232120399999928],[106.64569870000008,-6.2289337],[106.64320920000006,-6.230127099999947],[106.638065,-6.229747299999929],[106.63949030000003,-6.230999299999951],[106.63671,-6.23667],[106.64433,-6.24249],[106.64396,-6.24752],[106.64906,-6.26103],[106.64739,-6.26585],[106.65186,-6.26903],[106.65101,-6.27258],[106.64603,-6.27605],[106.64649,-6.27918],[106.64996,-6.28393],[106.65582,-6.28633],[106.65752,-6.29001],[106.65388,-6.29466],[106.65367,-6.29871],[106.65585,-6.30052],[106.65707,-6.30613],[106.65916,-6.30853],[106.65538,-6.31591],[106.65638,-6.31683],[106.66089,-6.31568],[106.66231,-6.31758],[106.65914,-6.31802],[106.65846,-6.32026],[106.65774,-6.32484],[106.66062,-6.32804],[106.65457,-6.33541],[106.64697,-6.33998],[106.64698,-6.34378],[106.65425130000006,-6.350199199999963],[106.65683960000007,-6.357265199999972],[106.65684680000004,-6.3595158],[106.65116030000007,-6.362204],[106.65622730000007,-6.361164099999939],[106.65858480000009,-6.358821399999954],[106.66624470000005,-6.3579278],[106.71138020000006,-6.360186099999964],[106.71917740000004,-6.362072499999954],[106.72051370000008,-6.360478099999966]]]},"properties":{"shapeName":"Kota Tangerang Selatan","shapeISO":"","shapeID":"22746128B79496192314324","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[99.80506020000007,3.017030500000033],[99.79178170000006,3.016912700000034],[99.79527980000006,3.008926100000053],[99.76601640000007,3.008976500000074],[99.78174130000008,2.969949600000064],[99.76255340000006,2.969044900000029],[99.761824,2.966292400000043],[99.75709750000004,2.962994800000047],[99.75595810000004,2.960623400000031],[99.75699940000004,2.953848],[99.75299280000007,2.942394200000024],[99.77248980000007,2.923760500000071],[99.77422520000005,2.923429900000031],[99.77511240000007,2.920681300000069],[99.78845160000009,2.923386900000025],[99.78878520000006,2.921912600000041],[99.79639830000008,2.926827400000036],[99.80372020000004,2.928773600000056],[99.81383350000004,2.926277800000037],[99.81640510000005,2.92413190000002],[99.82582880000007,2.928753300000039],[99.83094640000007,2.92974380000004],[99.83744850000005,2.936791],[99.83746770000005,2.947161100000073],[99.83490140000004,2.955427200000031],[99.82166640000008,2.960421800000063],[99.81658060000007,2.965180300000043],[99.81047210000008,2.967642],[99.808615,2.970429800000034],[99.80664540000004,2.988903100000073],[99.81048260000006,2.99327130000006],[99.81943120000005,2.994596],[99.81987220000008,3.024477500000046],[99.81765570000005,3.02468790000006],[99.80506020000007,3.017030500000033]]]},"properties":{"shapeName":"Kota Tanjung Balai","shapeISO":"","shapeID":"22746128B92079867399472","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[104.45646850000008,0.855353900000068],[104.45729090000003,0.856727600000056],[104.45542770000009,0.857739],[104.45084980000007,0.854917700000044],[104.455117,0.853845400000068],[104.45646850000008,0.855353900000068]]],[[[104.426663,0.859224900000072],[104.42604370000004,0.86205080000002],[104.42040110000005,0.861364800000047],[104.42226420000009,0.858590800000059],[104.42598460000005,0.85781140000006],[104.426663,0.859224900000072]]],[[[104.45927430000006,0.884877500000073],[104.45496250000008,0.887698800000067],[104.45219440000005,0.887379400000043],[104.44697770000005,0.882428800000071],[104.44351760000006,0.884079],[104.43994210000005,0.883714200000043],[104.43695940000003,0.881401900000071],[104.42877230000005,0.878915500000062],[104.418605,0.878063800000064],[104.41716780000007,0.875828],[104.42493960000007,0.873485800000026],[104.42887880000006,0.866831800000057],[104.43055440000006,0.866645700000049],[104.43494720000007,0.870398400000056],[104.436278,0.86965310000005],[104.43824760000007,0.870824200000072],[104.43982980000004,0.868742300000065],[104.44490160000004,0.867257700000039],[104.44676470000007,0.867523900000037],[104.44703090000007,0.869014400000026],[104.44883720000007,0.868671900000038],[104.45560120000005,0.865022],[104.46049860000005,0.858847100000048],[104.46318130000009,0.858369800000048],[104.46715260000008,0.859113200000024],[104.46672670000004,0.863052400000072],[104.46912220000007,0.867577100000062],[104.47382270000008,0.868065500000057],[104.47572670000005,0.866976600000044],[104.48491570000004,0.871335800000054],[104.48328320000007,0.873749],[104.468961,0.878230500000029],[104.46738460000006,0.881982200000039],[104.46300050000008,0.882695],[104.46119060000007,0.881204500000024],[104.45927430000006,0.884877500000073]]],[[[104.42060210000005,0.931889900000044],[104.40896750000007,0.929773300000022],[104.40838740000004,0.926351100000034],[104.41964210000003,0.923910400000068],[104.42436970000006,0.924627100000066],[104.426923,0.926605100000074],[104.42687930000005,0.928459900000064],[104.42282090000003,0.929048800000032],[104.42293370000004,0.931350500000065],[104.42060210000005,0.931889900000044]]],[[[104.34728330000007,0.952052900000069],[104.33803740000008,0.955596700000058],[104.33635080000005,0.954798900000071],[104.33707550000008,0.951869700000032],[104.33919070000007,0.950339600000063],[104.34924480000006,0.952169],[104.34728330000007,0.952052900000069]]],[[[104.41016370000006,0.95953140000006],[104.403398,0.960069400000066],[104.40177920000008,0.957553800000028],[104.40243950000007,0.955553500000065],[104.40442380000007,0.954546500000049],[104.41016370000006,0.95953140000006]]],[[[104.47384160000007,0.978667700000074],[104.47263580000003,0.97784310000003],[104.46908280000008,0.982212900000036],[104.466564,0.983253],[104.46258010000008,0.980013300000053],[104.44572680000005,0.979246900000021],[104.43635810000006,0.976261500000021],[104.430224,0.978199],[104.42643840000005,0.975000300000033],[104.41493220000007,0.978153500000076],[104.41244860000006,0.966979],[104.40905680000009,0.963586600000042],[104.41489350000006,0.962493100000074],[104.41597630000007,0.96039520000005],[104.41414910000009,0.957079100000044],[104.41936010000006,0.956402300000036],[104.420573,0.952312800000072],[104.42193740000005,0.95153780000004],[104.42623220000007,0.953540500000031],[104.43067510000009,0.949523900000031],[104.43431640000006,0.94435610000005],[104.43363960000005,0.943340900000067],[104.43625280000003,0.943681500000025],[104.43552970000007,0.941336400000068],[104.43678860000006,0.943051],[104.44180760000006,0.943367700000067],[104.44236260000008,0.938778200000058],[104.44393420000006,0.937425200000064],[104.45229550000005,0.93579150000005],[104.45752870000007,0.938249600000063],[104.47012120000005,0.936695900000075],[104.47293160000004,0.933956200000068],[104.47950040000006,0.931093200000021],[104.480628,0.92795650000005],[104.47754160000005,0.927287600000056],[104.47688290000008,0.929205300000035],[104.468738,0.93049910000002],[104.468647,0.924522],[104.46731860000006,0.930886],[104.464617,0.931832200000031],[104.46403810000004,0.927629200000069],[104.46186830000005,0.927648600000055],[104.46062030000007,0.925745800000072],[104.45986510000006,0.930720700000052],[104.45990990000007,0.927755300000058],[104.45620510000003,0.928330200000062],[104.45992580000006,0.927491300000042],[104.45988770000008,0.92444480000006],[104.45961580000005,0.925796400000024],[104.45710350000007,0.925032300000055],[104.45657830000005,0.92620370000003],[104.45518280000005,0.924940100000072],[104.45635410000006,0.927162500000065],[104.45411710000008,0.927612900000042],[104.45524520000004,0.931199800000059],[104.45269860000008,0.931931300000031],[104.45327140000006,0.929670900000076],[104.451458,0.929621900000029],[104.44945690000009,0.931799600000033],[104.44738090000004,0.929874500000039],[104.44658310000005,0.934286400000076],[104.44235690000005,0.934429600000044],[104.43759190000009,0.925525600000071],[104.43904950000007,0.923780500000021],[104.43999920000005,0.917398200000036],[104.43794040000006,0.915528700000038],[104.43767340000005,0.912764500000037],[104.43902120000007,0.906105500000024],[104.44303880000007,0.904262500000073],[104.44797220000004,0.904626300000075],[104.449756,0.901314600000035],[104.44926180000004,0.898676],[104.45115060000006,0.897876800000063],[104.45283730000006,0.900158800000042],[104.45620760000008,0.901071300000069],[104.45893930000005,0.897827200000052],[104.47084580000006,0.895148200000051],[104.47210260000008,0.89173610000006],[104.47804670000005,0.885224500000049],[104.48079460000008,0.888892800000065],[104.48277980000006,0.888117100000045],[104.48313910000007,0.886081],[104.48510320000008,0.885616300000038],[104.48525630000006,0.883181100000058],[104.479832,0.883951700000068],[104.48097070000006,0.87941840000002],[104.48387770000005,0.876392800000076],[104.49779130000007,0.872752800000058],[104.50067440000004,0.878086400000029],[104.50398990000008,0.877653900000041],[104.504134,0.873041100000023],[104.50182760000007,0.872752800000058],[104.50067440000004,0.870590500000048],[104.49130450000007,0.872032],[104.48723040000004,0.868287100000032],[104.47936450000009,0.866066400000022],[104.476994,0.853832600000032],[104.47532560000008,0.851711100000045],[104.48103340000006,0.847557400000028],[104.48380860000009,0.847670400000027],[104.48892080000007,0.850756500000045],[104.49461410000004,0.848005400000034],[104.49635070000005,0.845920200000023],[104.49745080000008,0.841725],[104.49599310000008,0.839777500000025],[104.49719790000006,0.839147500000024],[104.50261270000004,0.841034100000059],[104.50824440000008,0.840782600000068],[104.51369410000007,0.843645500000036],[104.51521980000007,0.845780200000036],[104.51385850000008,0.845386700000063],[104.51312450000006,0.846863800000051],[104.51505560000004,0.847613200000069],[104.51351350000004,0.84758],[104.51297190000008,0.849247800000057],[104.51544910000007,0.848719700000061],[104.51400530000006,0.850585600000045],[104.51544890000008,0.850932500000056],[104.51786130000005,0.855464600000062],[104.52099960000004,0.858250200000043],[104.52407720000008,0.857766500000025],[104.53170290000008,0.861876400000028],[104.53398060000006,0.87664570000004],[104.53972420000008,0.882081700000072],[104.53702540000006,0.886370100000022],[104.53806560000004,0.896567700000048],[104.540527,0.898474100000044],[104.54199390000008,0.902977300000032],[104.55018260000008,0.910007],[104.55303770000006,0.922203600000046],[104.54789330000006,0.926110100000074],[104.54522470000006,0.932821800000056],[104.53888210000008,0.935701800000061],[104.52797080000005,0.944757400000071],[104.52003550000006,0.95707630000004],[104.51897630000008,0.963920400000063],[104.52123330000006,0.977347300000019],[104.51499740000008,0.977050200000065],[104.51308510000007,0.972404100000062],[104.51135720000008,0.97141240000002],[104.51001790000004,0.971525200000031],[104.50816830000008,0.974995200000023],[104.50428050000005,0.972481100000039],[104.50404670000006,0.976168800000039],[104.50164470000004,0.97719440000003],[104.50199580000009,0.98271550000004],[104.49913550000008,0.989350100000024],[104.49328990000004,0.990787100000034],[104.48545,0.989284700000042],[104.48423620000005,0.98770380000002],[104.48060980000008,0.988188900000068],[104.47998830000006,0.98962030000007],[104.47817560000004,0.987730400000032],[104.47618550000004,0.989010300000075],[104.47390370000005,0.986529100000041],[104.47543610000008,0.985691400000064],[104.47295850000006,0.984288100000072],[104.47384160000007,0.978667700000074]]]]},"properties":{"shapeName":"Kota Tanjung Pinang","shapeISO":"","shapeID":"22746128B14360043359725","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.5263701,3.343009100000074],[117.526016,3.348837700000047],[117.52157370000009,3.348098100000072],[117.521238,3.343718],[117.5263701,3.343009100000074]]],[[[117.61864830000002,3.438541300000054],[117.61331470000005,3.441249500000026],[117.59878650000007,3.443389],[117.56349490000002,3.438472300000058],[117.5567158,3.439932800000065],[117.55399420000003,3.442595],[117.54857760000004,3.44229660000002],[117.5431827000001,3.438309600000025],[117.54332440000007,3.436155300000053],[117.53905750000001,3.434527700000046],[117.53999540000007,3.433204200000034],[117.5373770000001,3.43220210000004],[117.53614570000002,3.427628800000036],[117.53228490000004,3.423633700000039],[117.5253983,3.418036500000028],[117.52027610000005,3.415861200000052],[117.52158470000006,3.413299300000062],[117.51839020000011,3.407939400000032],[117.516599,3.394993800000066],[117.51525980000008,3.393958400000031],[117.51725040000008,3.392841900000064],[117.51535790000003,3.391970100000037],[117.5146509000001,3.381213],[117.51955830000009,3.36517740000005],[117.52948830000003,3.355131800000038],[117.537246,3.34292460000006],[117.54217480000011,3.325563300000056],[117.56863650000003,3.308159],[117.5710815000001,3.30602250000004],[117.57085210000002,3.30414920000004],[117.57295230000011,3.303982100000042],[117.57267850000005,3.302892500000041],[117.57446630000004,3.302918500000033],[117.57756680000011,3.299995900000056],[117.57888030000004,3.300373900000068],[117.57887820000008,3.298317700000041],[117.5809091000001,3.299411600000042],[117.5801222,3.297658800000022],[117.58049040000003,3.296150600000033],[117.5816397000001,3.296479],[117.58097210000005,3.295180900000048],[117.58227840000006,3.295647],[117.58150610000007,3.294512900000029],[117.58548560000008,3.296580800000072],[117.5820668,3.293690300000037],[117.5840730000001,3.294432],[117.58341150000001,3.292235400000038],[117.58703560000004,3.293877800000075],[117.5844512000001,3.290837500000066],[117.5876919000001,3.292125300000066],[117.58783870000002,3.290476400000045],[117.58882740000001,3.291104200000063],[117.58742040000004,3.287849700000038],[117.59069650000004,3.288222],[117.5995170000001,3.280123200000048],[117.60137830000008,3.280494],[117.604092,3.278457900000035],[117.61171330000002,3.279434600000059],[117.61143530000004,3.272673],[117.61293480000006,3.271319700000049],[117.615239,3.261720100000048],[117.62082950000001,3.252130500000021],[117.62522150000007,3.249480700000049],[117.628265,3.243228600000066],[117.63140160000012,3.242866200000037],[117.63427250000007,3.239843900000039],[117.63532170000008,3.241236400000048],[117.63897370000007,3.238864100000058],[117.64076100000011,3.239885900000047],[117.6432483000001,3.238601900000049],[117.64466590000006,3.240460300000052],[117.64779020000003,3.240814],[117.65257930000007,3.245451400000036],[117.65599190000012,3.253586200000029],[117.65275730000008,3.260797100000048],[117.65416710000011,3.285714600000063],[117.65563250000002,3.286862500000041],[117.6577794000001,3.310389500000042],[117.65709930000003,3.326378700000021],[117.65889250000009,3.336933],[117.66046570000003,3.338918600000056],[117.66156990000002,3.35189070000007],[117.66452860000004,3.359978800000022],[117.66824630000008,3.363470800000073],[117.66462210000009,3.379298600000027],[117.6657828000001,3.383147300000076],[117.66514270000005,3.38867220000003],[117.66812450000009,3.392560600000024],[117.668655,3.403657800000076],[117.665781,3.415220500000032],[117.65494680000006,3.419560200000035],[117.65327920000004,3.419106600000021],[117.6410413000001,3.425936500000034],[117.63769960000002,3.426357500000051],[117.62355180000009,3.433727100000056],[117.61864830000002,3.438541300000054]]]]},"properties":{"shapeName":"Kota Tarakan","shapeISO":"","shapeID":"22746128B56441679896489","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[108.19314520000006,-7.269289499999957],[108.18965780000008,-7.2722651],[108.18455180000007,-7.269567299999949],[108.182905,-7.271617],[108.178853,-7.27207],[108.178283,-7.27363],[108.181412,-7.27886],[108.180031,-7.279124],[108.178941,-7.284905],[108.175926,-7.283988],[108.17607230000004,-7.288580299999978],[108.17296920000007,-7.289139399999954],[108.17076730000008,-7.287668],[108.16523,-7.289821],[108.159445,-7.288566],[108.155022,-7.289692],[108.152282,-7.285772],[108.14971150000008,-7.287702899999942],[108.15310050000005,-7.2952282],[108.16047450000008,-7.303431099999955],[108.15860760000004,-7.310415399999954],[108.159369,-7.31537],[108.161366,-7.318123],[108.159422,-7.320358],[108.160876,-7.321456],[108.16026080000006,-7.3238895],[108.154647,-7.324036],[108.153253,-7.325872],[108.15255630000007,-7.335023],[108.15666,-7.337797],[108.159597,-7.342229],[108.16658,-7.344225],[108.166401,-7.34732],[108.16818810000007,-7.346691699999951],[108.16692360000008,-7.348724199999936],[108.16775440000004,-7.350417399999969],[108.166295,-7.351274],[108.16712970000003,-7.352380699999969],[108.164429,-7.354763],[108.163403,-7.363219],[108.17234050000008,-7.376783199999977],[108.17282870000008,-7.380688499999962],[108.17121170000007,-7.385979],[108.17473560000008,-7.387337699999932],[108.17415630000005,-7.392844499999967],[108.18464780000005,-7.392543199999977],[108.18545930000005,-7.395178699999974],[108.18352220000008,-7.396273199999939],[108.18299180000008,-7.398552199999926],[108.18438350000008,-7.4024875],[108.18636230000004,-7.403368299999954],[108.18409940000004,-7.407413199999951],[108.18090110000009,-7.408947699999942],[108.181946,-7.411812],[108.186102,-7.414444],[108.18434150000007,-7.4202188],[108.18841560000004,-7.434043199999962],[108.18730280000005,-7.436091099999942],[108.18929070000007,-7.438184699999965],[108.19361880000008,-7.438987099999963],[108.19300850000008,-7.4438813],[108.18919380000006,-7.444448299999976],[108.187244,-7.446283],[108.191786,-7.450289],[108.195027,-7.448951],[108.198171,-7.450671],[108.200922,-7.449877],[108.20233920000004,-7.445677099999955],[108.20796210000009,-7.441915799999947],[108.21280680000007,-7.434951599999977],[108.21818110000004,-7.435582199999942],[108.230781,-7.430742499999951],[108.22906820000009,-7.425476],[108.23236940000004,-7.425978],[108.23794630000003,-7.429915299999948],[108.24881550000003,-7.430927799999949],[108.25177840000003,-7.430048099999965],[108.25577430000004,-7.431500699999958],[108.25763990000007,-7.430161],[108.26283210000008,-7.431591099999935],[108.265503,-7.433958399999938],[108.26759880000009,-7.430126099999939],[108.26726150000007,-7.423042699999939],[108.26927310000008,-7.425476899999978],[108.27130140000008,-7.425558299999977],[108.27521520000005,-7.420204499999954],[108.27473460000004,-7.417620499999941],[108.27631380000008,-7.416962],[108.276624,-7.410901],[108.27499860000006,-7.409773499999972],[108.273732,-7.404651399999977],[108.27780230000008,-7.404826599999978],[108.27667240000005,-7.400805799999944],[108.278,-7.399523099999954],[108.27658090000006,-7.397196099999974],[108.27387240000007,-7.396697399999937],[108.27600090000004,-7.395839599999931],[108.27600780000006,-7.394651599999975],[108.275377,-7.395551],[108.271083,-7.393627],[108.273631,-7.392949],[108.272704,-7.391229],[108.275481,-7.387649],[108.278083,-7.389823],[108.281454,-7.386792],[108.28119670000007,-7.384996699999931],[108.28253940000008,-7.385154599999964],[108.27932750000008,-7.382076599999948],[108.27254520000008,-7.380176199999937],[108.27194420000006,-7.378465],[108.27440490000004,-7.3781396],[108.27244390000004,-7.374641199999928],[108.26963290000003,-7.375188699999967],[108.26729210000008,-7.373888499999964],[108.26589630000007,-7.375479499999926],[108.26366730000007,-7.374165199999936],[108.26677080000007,-7.3724273],[108.26914770000008,-7.373274099999946],[108.27249820000009,-7.370725899999968],[108.27669930000008,-7.371781699999929],[108.27781980000009,-7.368471599999964],[108.28365290000005,-7.365052699999978],[108.28693340000007,-7.360793599999965],[108.29359880000004,-7.358721299999956],[108.28908350000006,-7.355699299999969],[108.28694190000004,-7.357265299999938],[108.283503,-7.356980499999963],[108.282092,-7.351528],[108.283352,-7.349371],[108.286518,-7.348223],[108.287179,-7.344781],[108.290669,-7.343224],[108.292165,-7.340671],[108.295875,-7.341758],[108.29713,-7.340782],[108.297178,-7.343328],[108.299903,-7.342798],[108.301096,-7.34442],[108.303629,-7.341591],[108.307931,-7.340085],[108.307682,-7.338411],[108.309123,-7.337585],[108.31059,-7.337669],[108.310915,-7.339951],[108.31296690000005,-7.3396216],[108.31211930000006,-7.337211799999977],[108.30614480000008,-7.334333299999969],[108.29973610000008,-7.335533899999973],[108.30073550000009,-7.33264],[108.29849250000007,-7.331756899999959],[108.29779060000004,-7.334124899999949],[108.29513560000004,-7.332316299999945],[108.28803260000007,-7.3358849],[108.287941,-7.33367],[108.28435520000005,-7.336232],[108.28152310000007,-7.3334403],[108.27797290000007,-7.334089699999936],[108.27731510000007,-7.331376],[108.27509380000004,-7.330872399999976],[108.27577750000006,-7.329423399999939],[108.27305070000006,-7.324186699999927],[108.26998970000005,-7.3198472],[108.26691810000005,-7.318207599999937],[108.26570240000007,-7.320768299999941],[108.26324480000005,-7.31942],[108.26223550000009,-7.321825799999942],[108.25259360000007,-7.321288699999968],[108.25337220000006,-7.317644399999949],[108.24954230000009,-7.3130597],[108.24700930000006,-7.314092],[108.24268020000005,-7.312995],[108.24245560000008,-7.3116568],[108.23787030000005,-7.309298699999943],[108.23802960000006,-7.307754399999965],[108.23573670000007,-7.307288899999946],[108.23554850000005,-7.305032399999959],[108.23128520000006,-7.305814099999964],[108.22886430000005,-7.301119599999936],[108.21920020000005,-7.293218],[108.21166160000007,-7.291972499999929],[108.20909720000009,-7.289094899999952],[108.20181040000006,-7.286182499999938],[108.196509,-7.278125399999965],[108.19547780000005,-7.275707499999953],[108.19660140000008,-7.274334899999928],[108.19382790000009,-7.272969499999931],[108.19523350000009,-7.270171199999936],[108.19314520000006,-7.269289499999957]]]},"properties":{"shapeName":"Kota Tasikmalaya","shapeISO":"","shapeID":"22746128B19171284173249","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[99.17137760000008,3.376269900000068],[99.16846770000006,3.378486200000054],[99.16816060000008,3.374139400000047],[99.15977850000007,3.370928800000058],[99.15611770000004,3.366887200000065],[99.15456920000008,3.36717040000002],[99.16633210000003,3.355708800000059],[99.15957390000005,3.349303100000043],[99.158367,3.347807700000033],[99.15927180000006,3.346877800000073],[99.15436410000007,3.341583400000047],[99.14511460000006,3.349992500000042],[99.13996560000004,3.344920300000069],[99.13542130000008,3.349791800000048],[99.12890550000009,3.349853300000063],[99.12432560000008,3.344146700000067],[99.11443050000008,3.337114500000041],[99.11492420000008,3.33583230000005],[99.12495040000005,3.335895700000037],[99.12498820000008,3.329337700000053],[99.12889260000009,3.327896500000065],[99.12931040000007,3.324258500000042],[99.126752,3.321316100000047],[99.13013030000008,3.319828100000052],[99.12948650000004,3.317920300000026],[99.13345950000007,3.312551700000029],[99.13172190000006,3.311678800000038],[99.13239710000005,3.308267100000023],[99.12958190000006,3.308784900000035],[99.129131,3.30606860000006],[99.126332,3.30737860000005],[99.11898560000009,3.301642900000047],[99.120266,3.296984100000032],[99.12493050000006,3.289626700000042],[99.12923350000005,3.286392400000068],[99.13630550000005,3.277586900000074],[99.13814640000004,3.278446600000052],[99.136538,3.281094500000052],[99.137021,3.283560200000068],[99.14377680000007,3.291281800000036],[99.142587,3.295987100000048],[99.13702390000009,3.305064700000059],[99.13879420000006,3.309571500000061],[99.14038280000005,3.308803200000057],[99.14424420000006,3.311652400000071],[99.146154,3.306943],[99.14953590000005,3.307985100000053],[99.15089960000006,3.305567900000028],[99.152991,3.30536550000005],[99.15538420000007,3.306294800000046],[99.15421830000008,3.309124500000053],[99.173061,3.309202300000038],[99.17310080000004,3.306534400000032],[99.18182830000006,3.306431800000041],[99.18383960000006,3.308881400000075],[99.191743,3.309704100000033],[99.19264810000004,3.31087610000003],[99.19106020000004,3.314696300000037],[99.19144290000008,3.317768300000068],[99.18738060000004,3.317223400000046],[99.18390420000009,3.331109],[99.18243630000006,3.33214],[99.18316120000009,3.337253200000021],[99.19030110000006,3.340970700000071],[99.19382240000004,3.351520100000073],[99.18876550000004,3.35826],[99.17813990000008,3.353823100000056],[99.17532310000007,3.349551],[99.16774170000008,3.350390600000026],[99.16767890000006,3.353139500000054],[99.17188250000004,3.355222800000035],[99.16812270000008,3.360013500000036],[99.16989320000005,3.364358500000037],[99.17270870000004,3.364297400000055],[99.17323190000008,3.366257800000028],[99.177375,3.368055800000036],[99.17608820000004,3.369592],[99.17665170000004,3.371491800000058],[99.17137760000008,3.376269900000068]]]},"properties":{"shapeName":"Kota Tebing Tinggi","shapeISO":"","shapeID":"22746128B23557364622566","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[109.07739260000005,-6.887848299999973],[109.08129930000007,-6.889297],[109.08370750000006,-6.887602399999935],[109.10247490000006,-6.889890499999979],[109.10252950000006,-6.892189899999948],[109.106537,-6.892704199999969],[109.10619060000005,-6.894627199999945],[109.10894780000007,-6.895000899999957],[109.11096830000008,-6.8979489],[109.11837950000006,-6.897303499999964],[109.11980340000008,-6.898816599999975],[109.12000020000005,-6.897303099999931],[109.12102770000007,-6.899998299999936],[109.12431990000005,-6.898876099999939],[109.124695,-6.897039099999972],[109.12819520000005,-6.894891399999949],[109.130806,-6.896213899999964],[109.13269810000008,-6.892238099999929],[109.13280490000005,-6.885645799999963],[109.13592530000005,-6.886734399999966],[109.13771060000005,-6.885713499999952],[109.14743630000004,-6.886312799999928],[109.14789310000003,-6.881479299999967],[109.14656030000003,-6.8790787],[109.14999490000008,-6.865240099999937],[109.15248360000004,-6.863322799999935],[109.15328690000007,-6.857423099999949],[109.16047550000008,-6.848037599999941],[109.16155690000005,-6.844108],[109.15338550000007,-6.847193299999958],[109.14375820000004,-6.847876199999973],[109.13711480000006,-6.8463724],[109.136379,-6.848572],[109.13009060000007,-6.849056399999938],[109.12119760000007,-6.847221299999944],[109.10913550000004,-6.841561299999967],[109.10226960000006,-6.839863799999932],[109.08156590000004,-6.8593873],[109.08121490000008,-6.871657299999981],[109.07658390000006,-6.873885099999939],[109.07565310000007,-6.875803899999937],[109.074997,-6.880900299999951],[109.07739260000005,-6.887848299999973]]]},"properties":{"shapeName":"Kota Tegal","shapeISO":"","shapeID":"22746128B44128914320362","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[127.40556340000012,0.480952700000046],[127.39626780000003,0.476636300000052],[127.394119,0.477074800000025],[127.38575950000006,0.47085880000003],[127.38591110000004,0.466646900000057],[127.3827232000001,0.460421600000075],[127.38169190000008,0.454584900000043],[127.38251490000005,0.450079500000072],[127.38806350000004,0.439777],[127.39141180000001,0.438802],[127.39106,0.440649],[127.39231150000012,0.437950600000022],[127.39899260000004,0.433115300000054],[127.41448580000008,0.433985],[127.42045360000009,0.43284710000006],[127.42801380000003,0.436598300000071],[127.4287845,0.439663600000074],[127.43128600000011,0.44081360000007],[127.43088480000006,0.442208100000073],[127.43316070000003,0.442279600000063],[127.4333679,0.446433400000046],[127.4392256000001,0.447402100000033],[127.43936110000004,0.451671],[127.43696570000009,0.455300800000032],[127.43543720000002,0.454700200000048],[127.4343328000001,0.457739500000059],[127.43537590000005,0.459167],[127.43248230000006,0.464650900000038],[127.43145270000002,0.464374300000031],[127.42521880000004,0.472198500000047],[127.42062280000005,0.473988700000064],[127.41863620000004,0.479154200000039],[127.40556340000012,0.480952700000046]]],[[[127.32779860000005,0.866985700000043],[127.32260010000005,0.865969],[127.32039420000001,0.862245100000052],[127.31852830000003,0.863883500000043],[127.31810760000008,0.852891700000043],[127.31285370000012,0.847102200000052],[127.30210350000004,0.841026900000031],[127.30023280000012,0.831660900000031],[127.295405,0.824586700000054],[127.29382420000002,0.817922900000042],[127.29360420000012,0.808428900000024],[127.29511910000008,0.804465100000073],[127.29265540000006,0.797556200000031],[127.29402090000008,0.791045],[127.29806010000004,0.786563800000067],[127.29806440000004,0.78398420000002],[127.30188010000006,0.778337],[127.30556420000005,0.76574],[127.31477490000009,0.757061200000066],[127.31461220000006,0.755898500000058],[127.31613440000001,0.757399900000053],[127.32359290000011,0.754507600000068],[127.33079540000006,0.755241700000056],[127.338057,0.753214100000037],[127.35213470000008,0.759452300000021],[127.370393,0.760058900000047],[127.37430620000009,0.76372740000005],[127.37630580000007,0.763763600000061],[127.3753842000001,0.764239900000064],[127.378435,0.767764400000033],[127.37983380000003,0.774373600000047],[127.38166420000005,0.773466100000064],[127.38647190000006,0.776993900000036],[127.38881090000007,0.781008],[127.38885960000005,0.785826600000064],[127.39120800000012,0.789350100000036],[127.38985940000009,0.79267770000007],[127.39071420000005,0.793983400000059],[127.3863907000001,0.800710600000059],[127.3878820000001,0.801194200000054],[127.38710750000007,0.804637800000023],[127.39015610000001,0.816876600000057],[127.38860820000002,0.828886300000022],[127.385885,0.833852400000069],[127.37948080000001,0.839271],[127.35279990000004,0.85413740000007],[127.34114130000012,0.86358430000007],[127.33680350000009,0.862307100000066],[127.33261270000003,0.86456110000006],[127.3314669,0.863396900000055],[127.33148440000002,0.865178100000037],[127.32779860000005,0.866985700000043]]],[[[127.3153003000001,0.913170300000047],[127.31383540000002,0.913120700000036],[127.31338870000002,0.91081070000007],[127.31078950000006,0.908947],[127.31035950000012,0.904425200000048],[127.30540810000002,0.902833200000032],[127.302813,0.897640800000033],[127.30552140000009,0.896249100000034],[127.30710010000007,0.890576400000043],[127.31436940000003,0.882417400000065],[127.31823640000005,0.881304500000056],[127.32374210000012,0.883186800000033],[127.32878940000012,0.887307200000066],[127.33142940000005,0.892009100000053],[127.33127390000004,0.896184],[127.32939740000006,0.901718800000026],[127.32192730000008,0.907529900000043],[127.3170589,0.908789200000058],[127.31687350000004,0.911846700000069],[127.3153003000001,0.913170300000047]]],[[[126.13537970000004,0.981407600000068],[126.127806,0.980949200000055],[126.12711030000003,0.978738600000042],[126.12918820000004,0.97518690000004],[126.13693150000006,0.971571700000027],[126.141779,0.962256500000024],[126.14501610000002,0.961962600000049],[126.15061920000005,0.957069300000057],[126.15350890000002,0.956252],[126.16198660000009,0.95784070000002],[126.16153080000004,0.961088700000062],[126.1564423000001,0.963745],[126.150553,0.964584800000068],[126.15010790000008,0.963393400000029],[126.15185350000002,0.962617200000068],[126.15084600000012,0.961366800000064],[126.14646790000006,0.964082100000041],[126.14880830000004,0.966344200000037],[126.14480530000003,0.97160150000002],[126.14941950000002,0.972607500000038],[126.15422450000005,0.968985800000041],[126.1563450000001,0.973590700000045],[126.15463840000007,0.977105900000026],[126.15208960000007,0.976586500000053],[126.13537970000004,0.981407600000068]]],[[[126.14753840000003,0.98902320000002],[126.14534690000005,0.986586500000044],[126.15018450000002,0.984595],[126.15234730000009,0.985733],[126.14753840000003,0.98902320000002]]],[[[126.38547590000007,1.348105600000054],[126.38331990000006,1.34988],[126.38482250000004,1.351201800000069],[126.38104090000002,1.35310910000004],[126.37652320000007,1.348500400000034],[126.36764860000005,1.345184200000062],[126.35768,1.330960900000036],[126.35681550000004,1.321899500000029],[126.35812670000007,1.318727700000068],[126.36518190000004,1.319370700000036],[126.3765661000001,1.311989600000061],[126.37719340000001,1.306525200000067],[126.38357280000002,1.300773400000026],[126.38300880000008,1.29810770000006],[126.38641490000009,1.292443800000058],[126.38812990000008,1.293448400000045],[126.38769230000003,1.291798800000038],[126.39376920000007,1.284938],[126.39251940000008,1.281937500000026],[126.39446220000002,1.280061],[126.39835160000007,1.286227800000063],[126.39752110000006,1.29558940000004],[126.39969130000009,1.301021900000023],[126.40035090000003,1.31274030000003],[126.39899900000012,1.316592700000058],[126.41501110000002,1.327189600000054],[126.41650550000008,1.332697500000052],[126.41060410000011,1.33891490000002],[126.3959152000001,1.340930600000036],[126.39187670000001,1.344572400000061],[126.3877652000001,1.345603700000026],[126.38755160000005,1.348615400000028],[126.38547590000007,1.348105600000054]]]]},"properties":{"shapeName":"Kota Ternate","shapeISO":"","shapeID":"22746128B19845521147093","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[127.70013790000007,0.099074300000041],[127.70085910000012,0.100276300000075],[127.69884580000007,0.10033640000006],[127.70013790000007,0.099074300000041]]],[[[127.62371980000012,0.355525100000023],[127.6209583000001,0.356716600000027],[127.61941130000002,0.352192400000035],[127.62368980000008,0.353458100000068],[127.62371980000012,0.355525100000023]]],[[[127.64161540000009,0.357642200000043],[127.6381808000001,0.357464400000026],[127.63764780000008,0.355283600000064],[127.64176140000006,0.353870400000062],[127.64571940000008,0.355392600000073],[127.64502860000005,0.357319300000029],[127.64343270000006,0.356844900000056],[127.64161540000009,0.357642200000043]]],[[[127.59189830000003,0.379281],[127.59528110000008,0.380800900000054],[127.594853,0.383947500000033],[127.59067790000006,0.381507200000044],[127.59059230000003,0.379773400000033],[127.59189830000003,0.379281]]],[[[127.608623,0.388737],[127.60261520000006,0.387924],[127.601438,0.382767],[127.60895060000007,0.386128100000064],[127.608623,0.388737]]],[[[127.58846520000009,0.389702100000022],[127.5893086000001,0.39207650000003],[127.58803380000006,0.392904500000043],[127.58442490000004,0.388351600000021],[127.58701040000005,0.387429900000029],[127.58846520000009,0.389702100000022]]],[[[127.580316,0.399769700000036],[127.57879880000007,0.399181900000031],[127.57910070000003,0.396328100000062],[127.581296,0.394006600000068],[127.58423510000011,0.393688900000029],[127.5865305000001,0.398919900000067],[127.580316,0.399769700000036]]],[[[127.39489810000009,0.585239300000069],[127.39270240000008,0.58635970000006],[127.39140810000004,0.582734500000072],[127.38571600000012,0.576417800000058],[127.3848918000001,0.572483500000033],[127.3816594000001,0.569637500000056],[127.37939930000005,0.562895800000035],[127.38171890000001,0.558317600000066],[127.38281530000006,0.562601],[127.38533370000005,0.564880600000038],[127.39036340000007,0.56189610000007],[127.39723060000006,0.563591200000076],[127.40225790000011,0.568546100000049],[127.40584130000002,0.567826500000024],[127.40885480000009,0.573129100000074],[127.41099420000012,0.573790700000075],[127.41072370000006,0.580957400000045],[127.408198,0.584526200000028],[127.40196170000002,0.585406800000044],[127.39939260000006,0.58346860000006],[127.39807260000009,0.585838200000069],[127.39489810000009,0.585239300000069]]],[[[127.4777213000001,0.585353300000065],[127.47713130000011,0.587370300000032],[127.47500920000004,0.587330200000054],[127.47394980000001,0.581238800000051],[127.47615050000002,0.581160300000022],[127.47457780000002,0.584007700000029],[127.4754421,0.584957200000019],[127.477368,0.583810600000049],[127.4777213000001,0.585353300000065]]],[[[127.47208640000008,0.596108900000047],[127.47267480000005,0.599708400000054],[127.4703181000001,0.595475600000043],[127.46894190000012,0.59820430000002],[127.46921820000011,0.593814],[127.47208640000008,0.596108900000047]]],[[[127.368568,0.741326300000026],[127.36517350000008,0.739249],[127.36227280000003,0.73228830000005],[127.366391,0.725174200000026],[127.370221,0.723453400000039],[127.375643,0.725438300000064],[127.3791361000001,0.729182700000024],[127.37946160000001,0.732225500000027],[127.3789316000001,0.735742200000061],[127.37396380000007,0.740526200000033],[127.368568,0.741326300000026]]],[[[127.40657770000007,0.757652200000052],[127.40562220000004,0.759001300000023],[127.39921420000007,0.757286900000054],[127.39679720000004,0.755656800000054],[127.39693410000007,0.753140400000063],[127.394605,0.751778300000069],[127.38943370000004,0.752227900000037],[127.38942320000001,0.750420500000075],[127.38547710000012,0.747656200000051],[127.38688980000006,0.740487300000041],[127.38430950000009,0.73428750000005],[127.386648,0.725409200000058],[127.38037190000011,0.715023300000041],[127.37870170000008,0.70562190000004],[127.368211,0.693581100000074],[127.36565170000006,0.683751700000073],[127.36201060000008,0.678325500000028],[127.36487780000004,0.660711500000048],[127.3645183000001,0.655621300000064],[127.3677722000001,0.644212500000037],[127.37846800000011,0.630268200000046],[127.3832834000001,0.626593300000025],[127.38517030000003,0.627065500000072],[127.38832020000007,0.62501050000003],[127.4019982000001,0.621864400000049],[127.41277320000006,0.622359],[127.428689,0.62894840000007],[127.43005220000009,0.632065300000022],[127.4319901,0.632448900000043],[127.43214860000012,0.636054100000024],[127.44004360000008,0.643434500000069],[127.44766680000009,0.654026200000033],[127.45082560000003,0.6648],[127.45643810000001,0.673048600000072],[127.45674290000011,0.678416100000049],[127.45401840000011,0.682113600000037],[127.45581060000006,0.687587200000053],[127.4574593000001,0.707222600000023],[127.46048710000002,0.714640300000042],[127.45878610000011,0.719198500000061],[127.4549740000001,0.722447700000032],[127.45502750000003,0.731591],[127.4513171000001,0.736104500000067],[127.45152930000006,0.740574400000071],[127.4484523000001,0.745911800000044],[127.4322628000001,0.747722],[127.43004550000012,0.749951400000043],[127.42587860000003,0.749179800000036],[127.42122050000012,0.752143600000068],[127.41809750000004,0.751017700000034],[127.41706090000002,0.752621400000066],[127.41509360000009,0.752256],[127.41491640000004,0.749895200000026],[127.40844530000004,0.74807050000004],[127.40549170000008,0.751306800000066],[127.40657770000007,0.757652200000052]]],[[[127.597001,0.770867],[127.597369,0.773930200000052],[127.59631460000003,0.774606500000061],[127.59483240000009,0.772448300000065],[127.597001,0.770867]]],[[[127.56434460000003,0.782390700000064],[127.56353760000002,0.78428370000006],[127.56264390000001,0.782595300000025],[127.56434460000003,0.782390700000064]]],[[[127.61825670000007,0.790220600000055],[127.6152631000001,0.782760800000062],[127.61064550000003,0.779847400000051],[127.6025469000001,0.77923560000005],[127.59893670000008,0.772745900000075],[127.60046710000006,0.770358600000066],[127.6027348,0.771355400000061],[127.60248190000004,0.768424700000025],[127.6055861000001,0.76567620000003],[127.60329560000002,0.76646850000003],[127.60138250000011,0.765014400000041],[127.6041709000001,0.764136700000051],[127.60189880000007,0.761316300000033],[127.60190010000008,0.757493900000043],[127.59927010000001,0.755796600000053],[127.59923010000011,0.749800200000038],[127.59615960000008,0.750775],[127.59633130000009,0.755031900000063],[127.60137070000007,0.758753700000057],[127.5977878000001,0.758183300000042],[127.59694620000005,0.760051400000066],[127.58845040000006,0.755647500000066],[127.57458250000002,0.753676],[127.56035720000011,0.741279200000065],[127.55771140000002,0.740903100000025],[127.547256,0.728763800000024],[127.55012620000002,0.720593600000029],[127.54785530000004,0.704253100000074],[127.55197680000003,0.694940600000052],[127.551171,0.682424600000047],[127.54546690000006,0.66633760000002],[127.54553870000007,0.660709200000042],[127.54003710000006,0.654717300000073],[127.54144,0.643494300000043],[127.5392998000001,0.636683600000026],[127.5410111000001,0.632084300000031],[127.53421020000008,0.623104300000023],[127.52948350000008,0.612869],[127.53039940000008,0.602580700000033],[127.53519680000011,0.587579400000038],[127.53680120000001,0.573952800000029],[127.53485090000004,0.566836400000057],[127.52769390000003,0.558399400000042],[127.52690020000011,0.554363],[127.534418,0.543495200000052],[127.5366428000001,0.542682300000024],[127.53935950000005,0.533360800000025],[127.54358980000006,0.52942470000005],[127.5479858000001,0.528472800000031],[127.558548,0.52170760000007],[127.56190120000008,0.515921100000071],[127.564741,0.495721900000035],[127.56808340000009,0.488315],[127.56678390000002,0.478378500000019],[127.5671903000001,0.475314100000048],[127.5699873000001,0.471511700000065],[127.56809950000002,0.468704],[127.57021190000012,0.458329],[127.56886980000002,0.454730200000029],[127.57477640000002,0.450570700000071],[127.574755,0.448674],[127.57130380000001,0.447126600000047],[127.57161760000008,0.445679100000063],[127.5746971000001,0.445847800000024],[127.57684430000006,0.443796700000064],[127.57307280000009,0.440671100000031],[127.57489050000004,0.439004900000043],[127.57263530000012,0.435491500000069],[127.57495340000003,0.432549],[127.57308650000004,0.428465800000026],[127.57451260000005,0.427510300000051],[127.57859130000008,0.429542600000048],[127.580923,0.428701200000035],[127.5814792000001,0.423217700000066],[127.5856222000001,0.422942700000021],[127.58187340000006,0.419057100000032],[127.57893360000003,0.418411700000036],[127.5786356000001,0.414827400000036],[127.58175730000005,0.41391230000005],[127.584909,0.408935100000065],[127.59392930000001,0.407929700000068],[127.59549550000008,0.40102150000007],[127.60137380000003,0.402982400000042],[127.60286630000007,0.399506100000053],[127.60904610000011,0.396977100000072],[127.61160840000002,0.398655800000029],[127.61425620000011,0.398213100000021],[127.61650060000011,0.400474600000052],[127.6165856,0.397262300000023],[127.6223394000001,0.39596430000006],[127.622851,0.386010800000065],[127.62152230000004,0.379804600000057],[127.6179919000001,0.374882600000035],[127.62166130000003,0.360269800000026],[127.63468100000011,0.357068200000072],[127.63804190000008,0.358880300000067],[127.643594,0.357152900000074],[127.64585370000009,0.358345900000074],[127.64885820000006,0.357666100000074],[127.65188770000009,0.35527090000005],[127.657263,0.344750100000056],[127.66126370000006,0.342219300000068],[127.66527840000003,0.345798200000047],[127.67538510000009,0.34805],[127.67682920000004,0.350001600000041],[127.685555,0.34825920000003],[127.68894410000007,0.349934400000052],[127.6938967000001,0.345281300000067],[127.70950390000007,0.352943100000061],[127.71030630000007,0.350416600000074],[127.71645620000004,0.347964700000034],[127.72103630000004,0.342301600000042],[127.73394280000002,0.312613200000044],[127.73396720000005,0.301958600000034],[127.72989330000007,0.289720200000033],[127.72791870000003,0.287296200000071],[127.72777580000002,0.283747700000049],[127.72361520000004,0.273214500000051],[127.71587780000004,0.264191800000049],[127.7172948000001,0.256543300000033],[127.71479710000006,0.242435800000067],[127.71211340000002,0.23538080000003],[127.70850750000011,0.230749],[127.70649750000007,0.222325],[127.70851720000007,0.215983400000027],[127.70796260000009,0.210671900000023],[127.70456740000009,0.203645200000039],[127.70024930000011,0.19883660000005],[127.70141050000007,0.195284700000059],[127.69597570000008,0.185229400000026],[127.69623890000003,0.171848500000067],[127.69442060000006,0.167599800000062],[127.69599850000009,0.159102400000052],[127.69189840000001,0.146114500000067],[127.69399620000002,0.140244800000062],[127.69834140000012,0.137883400000021],[127.69902610000008,0.135553],[127.70039410000004,0.13581460000006],[127.69916590000003,0.13458090000006],[127.70180460000006,0.125108300000022],[127.69974370000011,0.120727],[127.69635180000012,0.118485600000042],[127.6967436000001,0.115818700000034],[127.6902344,0.111986300000069],[127.6889801000001,0.108878400000037],[127.68992320000007,0.10395740000007],[127.68456920000006,0.09844970000006],[127.68784810000011,0.097602],[127.69131330000005,0.100120400000037],[127.7046451000001,0.100937300000055],[127.70752980000009,0.103852],[127.71221730000002,0.10259],[127.71366010000008,0.10028230000006],[127.71167930000001,0.096421400000054],[127.7135995000001,0.088076600000022],[127.71674370000005,0.08520580000004],[127.71687480000003,0.078280900000038],[127.72092,0.07555190000005],[127.72177270000009,0.072361400000034],[127.7205523,0.060285],[127.71752140000001,0.051195],[127.7148922,0.047833200000071],[127.71657930000003,0.044200900000021],[127.71347390000005,0.041178],[127.71103540000001,0.042077300000074],[127.71282570000005,0.039764400000024],[127.70809280000003,0.027830900000026],[127.69936030000008,0.016002800000024],[127.69740170000011,0.007767300000069],[127.69720570000004,-0.002649],[127.69971630000009,-0.010022799999945],[127.70584030000009,-0.007346799999937],[127.71022760000005,-0.007976399999961],[127.7109412000001,0],[127.71290940000006,0.003220900000031],[127.71776180000006,0.001324700000055],[127.72303710000006,0.00167730000004],[127.7255656000001,0.007314600000029],[127.72743570000011,0.003230300000041],[127.73282210000002,0.004802300000051],[127.73573250000004,0.009714200000076],[127.73748290000003,0.018214500000056],[127.74019710000005,0.020991500000036],[127.7480862000001,0.023511600000063],[127.75099330000012,0.022969900000021],[127.75387230000001,0.019965100000036],[127.76810360000002,0.02551],[127.76856250000003,0.008198200000038],[127.77011570000002,0.004082500000038],[127.77262020000012,0.003337],[127.77447080000002,0.004809100000045],[127.78653780000002,0.00578710000002],[127.78817660000004,0.00914460000007],[127.79202060000011,0.012048900000025],[127.79573170000003,0.012626600000033],[127.80241880000005,0.02149490000005],[127.80988220000006,0.017953200000022],[127.81139080000003,0.022102100000041],[127.8141644000001,0.024809400000038],[127.81429760000003,0.027215],[127.81613170000003,0.028115300000024],[127.81725940000001,0.031895200000065],[127.81448320000004,0.038219],[127.80735740000011,0.042355600000064],[127.80596160000005,0.048022600000024],[127.8018760000001,0.049074900000051],[127.79656570000009,0.05371370000006],[127.79751480000004,0.056245400000023],[127.79506,0.06129],[127.79584520000003,0.065725200000031],[127.7977744000001,0.066901800000039],[127.79856460000008,0.06995610000007],[127.79530540000007,0.070573700000068],[127.79422160000001,0.07446340000007],[127.79692950000003,0.081741800000032],[127.79264940000007,0.083916],[127.79002430000003,0.087471100000073],[127.78977810000004,0.093248600000038],[127.79205390000004,0.099274500000035],[127.79051630000004,0.108719800000074],[127.79236530000003,0.116723100000058],[127.79201220000004,0.120029600000066],[127.78876990000003,0.125592500000039],[127.791049,0.135076900000058],[127.78906490000008,0.140713300000073],[127.78859210000007,0.152249400000073],[127.78771390000009,0.154647500000067],[127.79057750000004,0.158882600000027],[127.79056660000003,0.162666900000033],[127.79398530000003,0.167435400000045],[127.7955664000001,0.173944300000073],[127.79821040000002,0.17473190000004],[127.79863920000003,0.178840200000025],[127.80253390000007,0.183195500000068],[127.80481170000007,0.19036310000007],[127.8095363000001,0.195919700000047],[127.82217160000005,0.201723300000026],[127.82289170000001,0.205010100000038],[127.821633,0.207676900000024],[127.823647,0.209434400000021],[127.816902,0.215853300000049],[127.811836,0.223812500000065],[127.81276380000008,0.229717400000027],[127.81438830000002,0.23050980000005],[127.80128840000009,0.236763100000076],[127.79726530000005,0.248489400000039],[127.79731620000007,0.25],[127.80475390000004,0.256401500000038],[127.80734010000003,0.256791],[127.8115977000001,0.269584],[127.81538120000005,0.272254800000042],[127.81952110000009,0.272591800000043],[127.81732150000005,0.279577900000049],[127.81214570000009,0.284279400000059],[127.80357720000006,0.296932300000037],[127.80203580000011,0.300953100000072],[127.80240970000011,0.307197700000074],[127.7995065,0.310901300000069],[127.79855580000003,0.317434700000035],[127.80194910000012,0.330994900000064],[127.807226,0.339978900000062],[127.800735,0.361931800000036],[127.8013820000001,0.368059100000039],[127.806546,0.373654400000021],[127.80343810000011,0.380692700000054],[127.79994640000007,0.381286800000055],[127.7985460000001,0.385671],[127.79224230000011,0.388550900000041],[127.79021240000009,0.387943900000039],[127.7889057000001,0.390451400000074],[127.7910462000001,0.393769900000052],[127.79013180000004,0.397436400000061],[127.7751042000001,0.412851],[127.77229280000006,0.429631900000061],[127.77231160000008,0.432786],[127.77471220000007,0.436534],[127.77434320000009,0.443951],[127.77221630000008,0.446588200000065],[127.773511,0.448425600000064],[127.76958320000006,0.450069700000029],[127.76862090000009,0.454337800000076],[127.77261370000008,0.458427400000062],[127.77599480000003,0.466671],[127.77956480000012,0.467912800000022],[127.77667340000005,0.470533800000055],[127.777055,0.474236800000028],[127.775376,0.47623980000003],[127.77945690000001,0.485507200000029],[127.78447960000005,0.488349200000073],[127.78683620000004,0.486522700000023],[127.79311590000009,0.486728500000027],[127.79563410000003,0.482263900000021],[127.80028130000005,0.480953400000033],[127.80139650000001,0.484919],[127.80604490000007,0.490069100000028],[127.8050280000001,0.49652530000003],[127.80635790000008,0.502563400000042],[127.80357550000008,0.508117200000072],[127.80551610000009,0.512210200000027],[127.80807850000008,0.514594100000068],[127.81158810000011,0.515409800000043],[127.81276850000006,0.518234500000062],[127.81228410000006,0.521664200000032],[127.80655510000008,0.526147500000036],[127.81350670000006,0.532523500000025],[127.81594310000003,0.537226400000065],[127.8196597000001,0.537617100000034],[127.825867,0.54244140000003],[127.825319,0.550715],[127.82143760000008,0.55651720000003],[127.82117820000008,0.560546600000066],[127.82314930000007,0.562496800000019],[127.82276500000012,0.567253300000061],[127.82964850000008,0.569659400000035],[127.83161310000003,0.57273680000003],[127.83136800000011,0.576122200000043],[127.82896190000008,0.577241600000036],[127.82841010000004,0.580745600000057],[127.82493560000012,0.582844800000032],[127.82071440000004,0.592056100000036],[127.81021610000005,0.597852300000056],[127.81105550000007,0.604219500000056],[127.80891280000003,0.610001300000022],[127.80994870000006,0.614541600000052],[127.806834,0.618628600000022],[127.7977939000001,0.623154500000055],[127.79662680000001,0.626509500000054],[127.79296160000001,0.629427600000042],[127.79091390000008,0.63827340000006],[127.79205910000007,0.64263980000004],[127.79249630000004,0.646859200000051],[127.7879147000001,0.656086500000072],[127.7886059000001,0.662421900000027],[127.785364,0.665646300000049],[127.78215490000002,0.672275200000058],[127.78090620000012,0.684236300000066],[127.783,0.692341100000021],[127.76801620000003,0.707130100000029],[127.76727640000001,0.719462900000053],[127.765959,0.721595],[127.76725460000011,0.730948900000044],[127.75731040000005,0.74249930000002],[127.75857780000001,0.747239900000068],[127.75759130000006,0.751368],[127.7508974000001,0.757693700000061],[127.736453,0.75571240000005],[127.73141150000004,0.759244],[127.7279635000001,0.758911500000067],[127.723579,0.760627200000044],[127.71678070000007,0.765035500000067],[127.71354570000005,0.761447900000064],[127.70212210000011,0.76249260000003],[127.70022030000007,0.760265700000048],[127.70028430000002,0.756255400000043],[127.692283,0.756299300000023],[127.68686430000002,0.758758700000044],[127.68214630000011,0.758668900000032],[127.6788467,0.761461500000053],[127.67267310000011,0.771188800000061],[127.66717140000003,0.767658600000061],[127.66718190000006,0.77049820000002],[127.66368140000009,0.771552200000031],[127.66296610000006,0.775511700000038],[127.66092540000011,0.776118300000064],[127.65762150000012,0.775843100000031],[127.65681810000001,0.773107400000072],[127.65151130000004,0.776132700000062],[127.651038,0.774464300000034],[127.64799420000008,0.774050800000055],[127.64803010000003,0.76950080000006],[127.63851760000011,0.768494600000054],[127.63255470000001,0.772665200000063],[127.62893880000001,0.777329700000053],[127.62160580000011,0.778399900000068],[127.62102440000001,0.782028400000058],[127.62433830000009,0.786148600000047],[127.6233175000001,0.787504],[127.62095820000002,0.786734300000035],[127.61825670000007,0.790220600000055]]]]},"properties":{"shapeName":"Kota Tidore Kepulauan","shapeISO":"","shapeID":"22746128B7727261099368","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[124.830141,1.405422800000053],[124.821629,1.404121],[124.8184940000001,1.400188],[124.811566,1.397281],[124.8094,1.387076],[124.811499,1.381144],[124.81092500000011,1.372248],[124.8088560000001,1.365959],[124.8042630000001,1.360067],[124.79618790000006,1.356693],[124.789731,1.360632],[124.787535,1.365616],[124.781824,1.364313],[124.77796400000011,1.361667],[124.7701770000001,1.367954],[124.768762,1.354554],[124.75513400000011,1.344341],[124.744118,1.333298],[124.7403796000001,1.315608800000064],[124.74418070000002,1.287188400000048],[124.7501009,1.281607600000029],[124.757105,1.278901],[124.76111810000009,1.284581500000058],[124.76823520000005,1.289728800000034],[124.781201,1.288758],[124.789097,1.282495],[124.795467,1.281948],[124.800013,1.278056],[124.804512,1.270939],[124.814086,1.269964],[124.826916,1.253147],[124.834465,1.258095],[124.83965100000012,1.256993],[124.842772,1.258789],[124.849283,1.259313],[124.854214,1.264306],[124.8560079,1.282263700000044],[124.859249,1.288391],[124.855567,1.294785],[124.863812,1.298404],[124.86875150000003,1.302741200000071],[124.870643,1.307324],[124.871251,1.316935],[124.87403,1.323009],[124.882229,1.336505],[124.88767060000009,1.339699100000075],[124.88802880000003,1.343838500000061],[124.892903,1.350807],[124.889481,1.358542700000044],[124.878588,1.354295],[124.863217,1.352586600000052],[124.860212,1.362223],[124.84667,1.372376],[124.844762,1.37636],[124.837605,1.382163],[124.836695,1.389085],[124.839118,1.393002],[124.838161,1.395115],[124.840989,1.398081],[124.840805,1.401632],[124.830141,1.405422800000053]]]},"properties":{"shapeName":"Kota Tomohon","shapeISO":"","shapeID":"22746128B68022212272832","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[132.19686880000006,-5.717782299999953],[132.194228,-5.716566199999932],[132.18210520000002,-5.720269599999938],[132.1769173,-5.726162099999954],[132.17348830000003,-5.726747299999943],[132.170899,-5.733928599999956],[132.16973860000007,-5.740172399999949],[132.17315330000008,-5.749701499999958],[132.1730480000001,-5.754380399999945],[132.17573090000008,-5.756471499999975],[132.1778650000001,-5.762428399999976],[132.181326,-5.763703199999952],[132.18319280000003,-5.767445199999941],[132.1878177000001,-5.766702299999963],[132.1929768000001,-5.763351499999942],[132.19668590000003,-5.757786199999941],[132.19892850000008,-5.739174599999956],[132.19686880000006,-5.717782299999953]]],[[[132.2462925000001,-5.7009867],[132.25158440000007,-5.699566],[132.24178330000007,-5.700947599999949],[132.23479710000004,-5.706182299999966],[132.2462925000001,-5.7009867]]],[[[132.2737727000001,-5.693412599999931],[132.2705066000001,-5.693603199999927],[132.26590350000004,-5.701384599999926],[132.265027,-5.710069],[132.2682678000001,-5.713454599999977],[132.2699881000001,-5.7132238],[132.27022820000002,-5.705933899999934],[132.2754033000001,-5.696379199999967],[132.2737727000001,-5.693412599999931]]],[[[132.75360200000011,-5.664606799999945],[132.75258380000002,-5.662940599999956],[132.75264110000012,-5.665860899999927],[132.7511644000001,-5.666735899999935],[132.74909700000012,-5.665439899999967],[132.75252210000008,-5.673616899999956],[132.75468200000012,-5.6735243],[132.75779850000004,-5.677597299999945],[132.76153210000007,-5.668247899999926],[132.7583231000001,-5.664329099999975],[132.75539170000002,-5.663434299999949],[132.75360200000011,-5.664606799999945]]],[[[131.9390562000001,-5.661864499999979],[131.9385863000001,-5.659966499999939],[131.93429530000003,-5.661501399999963],[131.93282360000012,-5.665008299999954],[131.93399610000006,-5.672503799999959],[131.9355922000001,-5.674593499999958],[131.93868470000007,-5.673579299999972],[131.9407149000001,-5.670174599999939],[131.9390562000001,-5.661864499999979]]],[[[132.26100210000004,-5.634734099999946],[132.26032580000003,-5.638038699999925],[132.2622831000001,-5.640396499999952],[132.26100210000004,-5.634734099999946]]],[[[132.72560040000008,-5.622960099999943],[132.72303970000007,-5.6249354],[132.72025960000008,-5.623838],[132.71791840000003,-5.625301199999967],[132.71689420000007,-5.623911199999952],[132.71418720000008,-5.624496499999964],[132.71696740000004,-5.626252299999976],[132.71565050000004,-5.627422899999942],[132.71652840000002,-5.6308615],[132.72040590000006,-5.635470599999962],[132.7255272000001,-5.636494899999946],[132.72914290000006,-5.639222199999949],[132.73443720000012,-5.646146099999953],[132.73683210000002,-5.646105399999954],[132.73714,-5.641624799999931],[132.7302827000001,-5.634592699999928],[132.72560040000008,-5.631885699999941],[132.72560040000008,-5.622960099999943]]],[[[132.24663810000004,-5.617345799999953],[132.24535250000008,-5.616719699999976],[132.242281,-5.618809899999974],[132.2416730000001,-5.622087199999953],[132.24644820000003,-5.629343399999925],[132.24766840000007,-5.6289244],[132.2473765000001,-5.626823],[132.24896990000002,-5.628295799999933],[132.25185870000007,-5.625513499999954],[132.25132040000005,-5.620755],[132.24663810000004,-5.617345799999953]]],[[[132.71970480000004,-5.615148599999941],[132.71795010000005,-5.612870199999975],[132.7166119000001,-5.616013299999963],[132.71970480000004,-5.615148599999941]]],[[[132.3239549000001,-5.601229799999942],[132.32122830000003,-5.599883199999965],[132.3135109000001,-5.606805399999928],[132.31682640000008,-5.608494699999937],[132.31483450000007,-5.608429499999943],[132.31472870000005,-5.611243599999966],[132.3132048000001,-5.612549799999954],[132.320856,-5.613477599999953],[132.32671160000007,-5.618737099999976],[132.3304551000001,-5.619582],[132.33624670000006,-5.613575099999935],[132.3357979000001,-5.610148599999945],[132.33438550000005,-5.6071518],[132.3239549000001,-5.601229799999942]]],[[[132.72564150000005,-5.601114499999937],[132.7266796,-5.599671599999965],[132.72445720000007,-5.598706299999947],[132.72564150000005,-5.601114499999937]]],[[[132.25146930000005,-5.586935299999936],[132.25076310000009,-5.586671599999931],[132.2505599000001,-5.588116099999979],[132.25107420000006,-5.587080899999933],[132.253149,-5.588751799999955],[132.25146930000005,-5.586935299999936]]],[[[132.01174980000008,-5.586169699999971],[132.0109265000001,-5.585676799999931],[132.01150710000002,-5.588164499999948],[132.01174980000008,-5.586169699999971]]],[[[132.261907,-5.581059],[132.25332240000012,-5.585752199999945],[132.25295390000008,-5.587278899999944],[132.25341520000006,-5.586148399999956],[132.25530260000005,-5.586706699999979],[132.25515870000004,-5.584843499999977],[132.257198,-5.586631599999976],[132.2569678000001,-5.591364499999941],[132.25217880000002,-5.592002299999933],[132.25725510000007,-5.592093599999941],[132.2595262000001,-5.598222699999951],[132.2621365000001,-5.600096],[132.26926070000002,-5.600862799999959],[132.2777843,-5.598073],[132.28168720000008,-5.598625799999979],[132.2838399000001,-5.600568499999952],[132.28544040000008,-5.606959099999926],[132.28256350000004,-5.612877699999956],[132.2853377,-5.613856599999963],[132.28302220000012,-5.612898199999961],[132.28390460000003,-5.611811899999964],[132.2855535000001,-5.613427599999966],[132.28592250000008,-5.635583599999961],[132.2918644,-5.654381599999965],[132.29454610000005,-5.655312699999968],[132.30267790000005,-5.649851499999954],[132.3173144000001,-5.634608199999946],[132.31949180000004,-5.628670799999952],[132.318528,-5.624020199999961],[132.31584920000012,-5.6208382],[132.3178478000001,-5.626124499999946],[132.31602980000002,-5.624357],[132.31039940000005,-5.611130599999967],[132.30636160000006,-5.6109742],[132.30422310000006,-5.615947899999981],[132.29975120000006,-5.616033],[132.3040628000001,-5.611630399999967],[132.30318640000007,-5.606372199999953],[132.30724410000005,-5.597143899999935],[132.30693850000011,-5.590502499999957],[132.301912,-5.593297499999949],[132.29998550000005,-5.592143399999941],[132.2934143000001,-5.595316699999955],[132.28378490000011,-5.596517799999958],[132.2795992,-5.593363],[132.27907030000006,-5.587680899999953],[132.2763622000001,-5.583236899999974],[132.27161550000005,-5.582579099999975],[132.26814400000012,-5.583673799999929],[132.26643420000005,-5.582369],[132.2627000000001,-5.584070699999927],[132.26420740000003,-5.581266],[132.261907,-5.581059]]],[[[132.6709442,-5.577477199999976],[132.6698311,-5.576449199999956],[132.66744360000007,-5.578984399999968],[132.6709442,-5.577477199999976]]],[[[132.673523,-5.576958899999966],[132.672524,-5.576082],[132.67352190000008,-5.577257799999927],[132.6745002,-5.577357399999926],[132.6766411000001,-5.579243199999951],[132.6772194,-5.583933099999967],[132.67894550000005,-5.585063899999966],[132.6777347000001,-5.590133899999955],[132.67242140000008,-5.5912608],[132.6728465000001,-5.592400899999973],[132.67637920000004,-5.5924723],[132.67952450000007,-5.58906],[132.67914,-5.584179799999959],[132.68081760000007,-5.582488399999932],[132.67562380000004,-5.576931299999956],[132.673523,-5.576958899999966]]],[[[132.73124080000002,-5.582144899999946],[132.73168,-5.575947299999939],[132.72756450000008,-5.573477599999933],[132.71919450000007,-5.578639899999928],[132.71352120000006,-5.586409899999978],[132.7184327000001,-5.594135],[132.72352180000007,-5.589304499999969],[132.72674460000007,-5.589259499999969],[132.72839770000007,-5.587730499999964],[132.72918490000006,-5.595296],[132.73332230000005,-5.5958287],[132.73124080000002,-5.582144899999946]]],[[[131.9292448000001,-5.581478499999946],[131.9312195000001,-5.5803547],[131.93245750000006,-5.576925299999971],[131.9313046000001,-5.574421099999938],[131.92886080000005,-5.5733193],[131.92719670000008,-5.574542],[131.9262427000001,-5.578471899999954],[131.9292448000001,-5.581478499999946]]],[[[132.00748570000007,-5.585044399999958],[132.00457070000004,-5.574680199999932],[132.00143860000003,-5.572571099999948],[131.9947195000001,-5.590802699999927],[132.00145440000006,-5.597278299999971],[132.00729730000012,-5.596997199999976],[132.00795730000004,-5.591738299999975],[132.0068245000001,-5.596940399999937],[132.00624420000008,-5.594215099999928],[132.00748570000007,-5.585044399999958]]],[[[132.72149940000008,-5.552022099999931],[132.719898,-5.552578],[132.72050390000004,-5.556407],[132.72213310000006,-5.554834799999981],[132.72257380000008,-5.551978399999939],[132.72149940000008,-5.552022099999931]]],[[[132.75785430000008,-5.543160499999942],[132.75553490000004,-5.538552899999956],[132.75274260000003,-5.547229899999934],[132.75764070000002,-5.548260299999981],[132.75785430000008,-5.543160499999942]]],[[[132.7422024000001,-5.531193299999927],[132.737911,-5.528457699999933],[132.71949370000004,-5.532276699999954],[132.7090872000001,-5.530806199999972],[132.70594390000008,-5.531481799999938],[132.69913850000012,-5.539057399999933],[132.69208890000004,-5.534490199999937],[132.68917450000004,-5.535105299999941],[132.68655,-5.540955199999928],[132.69649870000012,-5.547900799999979],[132.69774990000008,-5.5515681],[132.7008780000001,-5.554289],[132.70450960000005,-5.5553332],[132.70846160000008,-5.5552221],[132.72239290000005,-5.549967399999957],[132.73272310000004,-5.554087299999935],[132.73723970000003,-5.552990099999931],[132.7402456000001,-5.549725599999931],[132.74727990000008,-5.548823899999945],[132.7520254000001,-5.541967],[132.75255950000007,-5.538390699999979],[132.74991970000008,-5.534051499999975],[132.74650170000007,-5.531680199999926],[132.7422024000001,-5.531193299999927]]],[[[132.79302790000008,-5.577572399999951],[132.79115330000002,-5.576887599999964],[132.791209,-5.573802],[132.79540680000002,-5.555955499999925],[132.79861240000002,-5.554860899999937],[132.79853420000006,-5.543445799999972],[132.80073360000006,-5.530870599999957],[132.798756,-5.527805299999955],[132.79470190000006,-5.528299699999934],[132.788077,-5.533045899999934],[132.7778396000001,-5.550990399999932],[132.7737307000001,-5.554864499999951],[132.76694440000006,-5.568935899999929],[132.75500770000008,-5.581285199999968],[132.7536559,-5.579576399999951],[132.7513080000001,-5.581396099999949],[132.75293560000011,-5.583314899999948],[132.7477414000001,-5.5948955],[132.74884190000012,-5.595522799999969],[132.75100120000002,-5.593350399999963],[132.7508610000001,-5.604997499999968],[132.74747790000004,-5.611265199999934],[132.74159540000005,-5.611648099999968],[132.74009150000006,-5.613221799999963],[132.74173550000012,-5.616209599999934],[132.74369850000005,-5.630092399999967],[132.74167380000006,-5.6339141],[132.74140450000004,-5.638945899999953],[132.7453634000001,-5.647483],[132.745266,-5.655902099999935],[132.74924020000003,-5.663683399999968],[132.75054610000007,-5.660783],[132.74901690000002,-5.654129799999964],[132.75409880000007,-5.653766399999938],[132.75684020000006,-5.659906299999932],[132.76012550000007,-5.657767],[132.75997270000005,-5.651221899999939],[132.75678930000004,-5.644931399999962],[132.75975620000008,-5.640128299999958],[132.76236310000002,-5.640277699999956],[132.767577,-5.647185199999967],[132.76589990000002,-5.651203599999974],[132.7677781000001,-5.654827099999977],[132.7643693000001,-5.656411899999966],[132.76407030000007,-5.658176099999935],[132.7591963000001,-5.658804],[132.75665820000006,-5.6616103],[132.75858790000007,-5.664293799999939],[132.76285440000004,-5.665560099999936],[132.7621458000001,-5.672389499999952],[132.76706050000007,-5.682972699999937],[132.77078430000006,-5.687344699999926],[132.77300040000011,-5.687932599999954],[132.7786086000001,-5.685837099999958],[132.7875636000001,-5.677424799999926],[132.79026220000003,-5.672540199999958],[132.78910140000005,-5.663736],[132.790413,-5.658052399999974],[132.79312660000005,-5.652790899999957],[132.79686540000012,-5.653529599999956],[132.7944533000001,-5.666027499999927],[132.7996846000001,-5.674846799999955],[132.79136270000004,-5.685505399999954],[132.79068430000007,-5.688807],[132.79281,-5.6924403],[132.7983428000001,-5.694264499999974],[132.81445370000006,-5.681667499999946],[132.81487190000007,-5.675753399999962],[132.81140060000007,-5.666485],[132.80992340000012,-5.653899599999932],[132.80058770000005,-5.633869199999936],[132.79712680000011,-5.612764099999936],[132.79831810000007,-5.607861699999944],[132.8018608000001,-5.6031955],[132.80969660000005,-5.576421699999969],[132.80745420000005,-5.573703599999931],[132.80903980000005,-5.5704871],[132.811033,-5.5708722],[132.8162791000001,-5.555860099999961],[132.8162791000001,-5.549734899999976],[132.80901110000002,-5.554079099999967],[132.7995863000001,-5.573215699999935],[132.79302790000008,-5.577572399999951]]],[[[132.32024310000008,-5.521952899999974],[132.3187511000001,-5.520752099999925],[132.31526970000004,-5.522109399999977],[132.31074450000006,-5.521331299999929],[132.3082647000001,-5.525759699999981],[132.3046601000001,-5.529138499999931],[132.30309510000006,-5.528611699999942],[132.3023581000001,-5.530477399999938],[132.3067311000001,-5.540162199999941],[132.31633540000007,-5.548331],[132.31729660000008,-5.554507199999932],[132.320811,-5.561927499999967],[132.32348590000004,-5.560478699999976],[132.32522540000002,-5.562320799999952],[132.32493250000005,-5.565369099999941],[132.32322850000003,-5.565593799999931],[132.3222048,-5.563807399999973],[132.31975150000005,-5.564382799999976],[132.32114420000005,-5.566047599999933],[132.31668690000004,-5.566770599999927],[132.31633820000002,-5.569654399999934],[132.31679870000005,-5.571232499999951],[132.32139690000008,-5.570778],[132.32051390000004,-5.571704899999929],[132.32299960000012,-5.57874],[132.3249674000001,-5.580728399999941],[132.33185790000005,-5.583491199999969],[132.3380645000001,-5.583953799999961],[132.3473265,-5.579116],[132.3556384000001,-5.576777599999957],[132.36193420000006,-5.563393399999939],[132.36952610000003,-5.557007899999974],[132.37650250000002,-5.5555325],[132.37855720000005,-5.553059599999926],[132.37743540000008,-5.548631],[132.3787612000001,-5.540728899999976],[132.3771587000001,-5.535696299999927],[132.37554220000004,-5.5357275],[132.37544450000007,-5.540421599999945],[132.36271710000005,-5.551130899999976],[132.3552965,-5.553391],[132.346511,-5.550952199999927],[132.34284150000008,-5.546419199999946],[132.34393010000008,-5.528821299999947],[132.33689750000008,-5.532660299999975],[132.33074540000007,-5.532781],[132.32493640000007,-5.529439499999967],[132.32024310000008,-5.521952899999974]]],[[[132.735256,-5.507770199999925],[132.74383150000006,-5.500113099999965],[132.74261080000008,-5.494027699999947],[132.7380942000001,-5.491268299999945],[132.73272310000004,-5.493067799999949],[132.73104460000002,-5.4963141],[132.7322958000001,-5.5091921],[132.735256,-5.507770199999925]]],[[[132.75381070000003,-5.504985899999951],[132.7603262,-5.497644499999979],[132.76571260000003,-5.482546899999932],[132.7652395,-5.476969299999951],[132.7609976000001,-5.476911599999937],[132.75445160000004,-5.481893199999945],[132.74705110000002,-5.496442399999978],[132.74674590000006,-5.503757599999972],[132.74877530000003,-5.505399799999964],[132.75381070000003,-5.504985899999951]]],[[[132.73582680000004,-5.467511599999966],[132.7346861000001,-5.470613599999979],[132.7368947000001,-5.468123799999944],[132.73582680000004,-5.467511599999966]]],[[[132.7037908000001,-5.439622099999951],[132.70087690000003,-5.440653299999951],[132.70248760000004,-5.441912399999978],[132.70024490000003,-5.440994599999954],[132.69884090000005,-5.443595],[132.6977220000001,-5.452672],[132.70308970000008,-5.449432599999966],[132.69856210000012,-5.452885899999956],[132.7000216,-5.456062699999961],[132.70114790000002,-5.453782799999942],[132.71264370000006,-5.448060699999928],[132.70894640000006,-5.445596199999954],[132.7100812000001,-5.443959399999926],[132.70263490000002,-5.440992699999981],[132.70817580000005,-5.441645799999947],[132.7037908000001,-5.439622099999951]]],[[[132.72020670000006,-5.433772799999929],[132.71783190000008,-5.432203299999969],[132.71595450000007,-5.433719199999928],[132.71691440000006,-5.435283399999946],[132.71531620000007,-5.436230199999954],[132.71425390000002,-5.439970099999925],[132.71730380000008,-5.441204599999935],[132.71638230000008,-5.443369399999938],[132.718791,-5.443911199999945],[132.71823970000003,-5.447150299999976],[132.72265040000002,-5.450873399999978],[132.7259137000001,-5.447134299999959],[132.72212280000008,-5.437884099999962],[132.72264110000003,-5.435440099999937],[132.72020670000006,-5.433772799999929]]],[[[132.02181210000003,-5.313072399999953],[132.01397440000005,-5.304973399999938],[131.9976378,-5.313259],[131.99094780000007,-5.3122771],[131.9903719,-5.3107265],[131.980967,-5.3245548],[131.9779724000001,-5.325912099999925],[131.96949770000003,-5.337425],[131.9660093000001,-5.3547972],[131.9604395,-5.3728574],[131.97257790000003,-5.389303299999938],[131.97692670000004,-5.388455],[131.98627870000007,-5.378831399999967],[131.99152930000002,-5.378993099999946],[132.01012350000008,-5.3707859],[132.01061070000003,-5.362648399999955],[132.0137846,-5.353961899999945],[132.02074990000006,-5.341812199999936],[132.022304,-5.334584399999926],[132.02337050000006,-5.323870199999931],[132.02181210000003,-5.313072399999953]]],[[[132.02591940000002,-5.167768799999976],[132.02660190000006,-5.166252199999974],[132.02387190000002,-5.158289699999955],[132.0159853,-5.172015499999929],[132.01285560000008,-5.173104899999942],[132.01197020000006,-5.176292],[132.0130326000001,-5.181356],[132.01871530000005,-5.187106299999925],[132.02237680000007,-5.1879464],[132.02493360000005,-5.186727099999928],[132.02547260000006,-5.178451],[132.02671110000006,-5.177085],[132.02591940000002,-5.167768799999976]]],[[[132.02477460000011,-5.1466622],[132.02270090000002,-5.146551899999963],[132.0219849,-5.1495983],[132.0235834,-5.156367],[132.02477460000011,-5.1466622]]],[[[132.0159682000001,-5.130994499999929],[132.01287290000005,-5.130199199999936],[132.0112312000001,-5.133681],[132.0156211000001,-5.136390899999981],[132.02174530000002,-5.133897799999943],[132.024401,-5.134765],[132.0243468000001,-5.131567399999938],[132.0159682000001,-5.130994499999929]]]]},"properties":{"shapeName":"Kota Tual","shapeISO":"","shapeID":"22746128B53415736442015","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[110.39711520000009,-7.788325099999952],[110.39482270000008,-7.788472899999931],[110.394505,-7.786516899999981],[110.392757,-7.786296199999981],[110.39054240000007,-7.7803966],[110.38074760000006,-7.780245299999933],[110.37955540000007,-7.778148899999962],[110.375744,-7.776534799999979],[110.37544140000006,-7.774647],[110.37007720000008,-7.775223499999981],[110.36851210000009,-7.770320699999957],[110.36769440000006,-7.772021799999948],[110.36653550000005,-7.771713299999931],[110.36658250000005,-7.769602799999973],[110.36211560000004,-7.768564399999946],[110.36064430000005,-7.771349199999975],[110.35906140000009,-7.771261599999946],[110.35214360000003,-7.766351399999962],[110.35334480000006,-7.771099599999957],[110.35249570000008,-7.772252199999969],[110.35102880000005,-7.768221499999981],[110.35118080000007,-7.781283499999972],[110.34862120000008,-7.793466899999942],[110.34987320000005,-7.794117599999936],[110.34829410000009,-7.795059699999968],[110.34816180000007,-7.799855499999978],[110.34460570000005,-7.807301099999961],[110.34580970000007,-7.812452499999949],[110.35152970000007,-7.813501099999939],[110.35204770000007,-7.814809299999979],[110.35081010000005,-7.821368499999949],[110.35256560000005,-7.823524199999952],[110.35150390000007,-7.825361899999962],[110.35912720000005,-7.826056199999925],[110.36038820000005,-7.8240438],[110.360816,-7.825759099999971],[110.36723110000008,-7.825572799999975],[110.36862840000003,-7.827103799999975],[110.36984980000005,-7.824678699999936],[110.37519440000005,-7.824438399999963],[110.37497980000006,-7.8308433],[110.376815,-7.831395],[110.37647930000009,-7.830016099999966],[110.378267,-7.831808599999931],[110.37793130000006,-7.830694299999948],[110.38022130000007,-7.830043699999976],[110.37981050000008,-7.828521699999953],[110.38447970000004,-7.828961399999969],[110.385775,-7.830363599999941],[110.38699890000004,-7.833997299999965],[110.38378490000008,-7.834886499999925],[110.38792670000004,-7.834951299999943],[110.38799650000004,-7.840018799999939],[110.38983810000008,-7.8401504],[110.39078940000007,-7.835879099999943],[110.395425,-7.8367404],[110.39452730000005,-7.835692699999981],[110.39575440000004,-7.832481199999961],[110.39307970000004,-7.829269199999942],[110.39336140000006,-7.826348199999927],[110.39948540000006,-7.827782399999933],[110.39703170000007,-7.831348099999957],[110.39787060000003,-7.833369699999935],[110.39989570000006,-7.833438199999932],[110.40058660000005,-7.831543499999952],[110.40354980000006,-7.833135],[110.40507480000008,-7.830533399999979],[110.404795,-7.822616699999969],[110.40145020000006,-7.822715199999948],[110.40343360000008,-7.822376499999962],[110.40364140000008,-7.820055],[110.40141250000005,-7.819275299999958],[110.40225580000003,-7.802633599999979],[110.39757570000006,-7.802233899999976],[110.39863250000008,-7.800116599999967],[110.39575340000005,-7.792499799999973],[110.39711520000009,-7.788325099999952]]]},"properties":{"shapeName":"Kota Yogyakarta","shapeISO":"","shapeID":"22746128B7485297752304","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[111.41430490000005,-2.910630499999968],[111.41617860000008,-2.909318199999973],[111.41578140000007,-2.907607499999926],[111.41299910000004,-2.909591099999943],[111.41430490000005,-2.910630499999968]]],[[[111.81879460000005,-3.533783],[111.87920410000004,-3.408896899999945],[111.89875270000005,-3.382652899999925],[111.93293740000007,-3.312139],[111.96872730000007,-3.2186763],[111.99473570000004,-3.1317799],[112.04679240000007,-3.007160699999929],[112.05487110000001,-2.930117199999927],[112.05483270000002,-2.888822699999935],[112.05269340000007,-2.889407399999925],[112.026894,-2.848221899999942],[111.98938920000006,-2.8093999],[111.97766,-2.785861299999965],[111.97059510000008,-2.737592499999948],[111.984622,-2.708145399999978],[111.983436,-2.6893076],[111.99628970000003,-2.657506699999942],[112.00445610000008,-2.621],[112.0079376000001,-2.5821423],[112.01492040000005,-2.529152899999929],[112.04414560000009,-2.476146299999925],[112.05581860000007,-2.433750399999951],[112.05931120000002,-2.409022199999924],[112.04406090000009,-2.365469899999937],[112.04404950000003,-2.350163499999951],[112.02465560000007,-2.300524399999972],[112.00125580000008,-2.297723],[111.99061770000009,-2.289327],[111.98528960000004,-2.2717599],[111.98334180000006,-2.2553512],[111.98321740000006,-2.239269099999945],[111.98991840000008,-2.187120499999935],[111.99181060000006,-2.179926499999965],[112.008666,-2.1403306],[112.009645,-2.129686299999946],[112.020704,-2.095241199999975],[112.04503740000007,-2.053946599999961],[112.06215270000007,-2.0311262],[112.07857,-2.027552499999956],[112.0811192000001,-2.028253899999925],[112.090505,-2.001469],[112.07360840000001,-1.964915799999972],[112.05753750000008,-1.950153399999977],[112.03173350000009,-1.9366209],[111.99082730000003,-1.898202899999944],[111.97369360000005,-1.866136099999949],[111.96313940000005,-1.849573199999952],[111.95485110000004,-1.822234899999955],[111.95338410000005,-1.809013199999924],[111.95597320000007,-1.796524],[111.96293880000007,-1.776931499999932],[111.96139050000005,-1.763056899999981],[111.95466270000009,-1.733421899999939],[111.94700690000008,-1.733425799999964],[111.90553630000005,-1.717467099999965],[111.90140460000003,-1.710959],[111.89871480000005,-1.693868499999951],[111.88082740000004,-1.674985699999979],[111.88708020000007,-1.664188],[111.88797130000006,-1.657890499999951],[111.88349850000009,-1.650696],[111.88528,-1.636302],[111.87812280000009,-1.622811499999955],[111.86202960000008,-1.616521499999976],[111.85844940000004,-1.605728],[111.85308180000004,-1.595834899999943],[111.83609710000007,-1.594942299999957],[111.79687640000009,-1.562832199999946],[111.808922,-1.5829847],[111.82184910000007,-1.739433099999928],[111.82437110000006,-1.7762988],[111.81993240000008,-1.873605299999952],[111.79883350000006,-1.950299099999938],[111.79115790000009,-1.971568],[111.74508690000005,-2.066962199999978],[111.71180750000008,-2.128196899999978],[111.69132320000006,-2.157849499999941],[111.66763080000004,-2.177192699999978],[111.62942980000008,-2.193201299999942],[111.60682190000006,-2.234674599999948],[111.60175570000007,-2.255496799999946],[111.60337050000004,-2.273301],[111.60254640000005,-2.305683299999941],[111.58228070000007,-2.314206299999967],[111.56014120000009,-2.319741099999931],[111.54103160000005,-2.315297199999975],[111.51842060000007,-2.307428],[111.49920270000007,-2.311946],[111.47723950000005,-2.3099683],[111.43834090000007,-2.313255099999935],[111.40758570000008,-2.301019799999949],[111.38187980000004,-2.280818799999963],[111.36843760000005,-2.263285199999927],[111.34156830000006,-2.275532299999952],[111.35554210000004,-2.306700199999966],[111.33840180000004,-2.307020699999953],[111.31705730000004,-2.305092399999978],[111.316569,-2.3323684],[111.30652230000004,-2.332716099999971],[111.30538730000006,-2.335938399999975],[111.27446260000005,-2.336179099999924],[111.27178440000006,-2.340397499999938],[111.271814,-2.343121599999961],[111.26765010000008,-2.343884],[111.26599090000008,-2.347018399999968],[111.26480180000004,-2.372501799999952],[111.28372220000006,-2.372695199999953],[111.28450240000006,-2.446633299999974],[111.27982530000008,-2.501291199999969],[111.27904770000004,-2.542328],[111.288871,-2.580491799999947],[111.29431890000006,-2.590407899999946],[111.29970860000009,-2.594197399999928],[111.30165810000005,-2.617563399999938],[111.34398710000005,-2.626025099999936],[111.37722530000008,-2.645523],[111.39752650000008,-2.648450699999955],[111.40016170000007,-2.653020199999958],[111.38613250000009,-2.709581799999967],[111.38258470000005,-2.734579],[111.38254110000008,-2.759307699999965],[111.37949610000004,-2.791589099999953],[111.38270660000006,-2.816984199999979],[111.38014380000004,-2.877021599999978],[111.36210170000004,-2.908207899999979],[111.38298820000006,-2.919221199999924],[111.38767120000006,-2.9201404],[111.39465350000006,-2.916774399999952],[111.41315,-2.903846],[111.41723150000007,-2.905614699999944],[111.41870890000007,-2.908312399999943],[111.42044530000004,-2.908282399999962],[111.41988420000007,-2.910059399999966],[111.42380650000007,-2.912381599999947],[111.42376680000007,-2.916135599999961],[111.42524090000006,-2.9178972],[111.45542020000005,-2.924606599999947],[111.47126190000006,-2.935775299999932],[111.48570350000006,-2.942700399999978],[111.49698390000009,-2.951171699999975],[111.49925120000006,-2.9583728],[111.50747670000004,-2.966310899999939],[111.522562,-2.9760209],[111.52779550000008,-2.980935199999976],[111.54120910000006,-3.000886899999955],[111.54527530000007,-3.010212],[111.54858240000004,-3.023184],[111.55368420000008,-3.012375599999928],[111.55968810000007,-3.006668599999955],[111.57309170000008,-2.999906799999962],[111.58624970000005,-2.991141499999969],[111.59925720000007,-2.988047399999971],[111.60636880000004,-2.9805729],[111.60825160000007,-2.980157],[111.609366,-2.977399799999944],[111.61370990000006,-2.975554699999975],[111.61740620000006,-2.970042],[111.62475630000006,-2.966622099999938],[111.63628850000003,-2.957348],[111.66298040000004,-2.946136599999932],[111.68462960000005,-2.943814699999962],[111.69032520000007,-2.941978699999936],[111.70354070000008,-2.909528599999931],[111.70684390000008,-2.904946299999949],[111.70343670000005,-2.908714699999962],[111.69791040000007,-2.919702099999938],[111.69063150000005,-2.920462],[111.68551890000003,-2.919145399999934],[111.68048490000007,-2.915423799999928],[111.66920420000008,-2.898080099999959],[111.66927120000008,-2.8942623],[111.67212870000009,-2.888295399999947],[111.67757590000008,-2.879220399999951],[111.68699880000008,-2.868886399999951],[111.71321330000006,-2.848953499999936],[111.71792010000007,-2.847071799999981],[111.73181980000004,-2.855701499999952],[111.72721230000008,-2.863479299999938],[111.72690130000007,-2.866899599999954],[111.74092240000004,-2.8778921],[111.75185120000003,-2.889822899999956],[111.75981340000004,-2.908110599999929],[111.76527440000007,-2.9266418],[111.76961610000006,-2.934982399999967],[111.77263210000007,-2.937449899999933],[111.77434540000007,-2.942885499999932],[111.793673,-2.966536299999973],[111.81402940000004,-3.001187],[111.81677120000006,-3.010050399999955],[111.81565910000006,-3.016953899999976],[111.81832510000004,-3.019797799999935],[111.82293020000009,-3.031007],[111.82196830000004,-3.033394499999929],[111.82535190000004,-3.052714399999957],[111.82419820000007,-3.053227299999946],[111.82279460000007,-3.060727499999928],[111.823047,-3.0682214],[111.81992320000006,-3.070877199999927],[111.82110450000005,-3.078925599999934],[111.81957720000008,-3.097286499999939],[111.81007070000004,-3.118147499999964],[111.81066580000004,-3.122600099999943],[111.80767840000004,-3.128819499999963],[111.80856240000008,-3.138675399999954],[111.807542,-3.143474399999945],[111.80897430000005,-3.147392199999956],[111.80727,-3.148553199999981],[111.80630860000008,-3.157847899999979],[111.80746410000006,-3.159890099999927],[111.80528130000005,-3.159231599999941],[111.80778750000007,-3.160883799999965],[111.80673250000007,-3.162827],[111.80590260000008,-3.161380799999961],[111.80362430000008,-3.161535399999934],[111.80563570000004,-3.1601334],[111.80328680000008,-3.160904199999948],[111.80059670000009,-3.184853799999928],[111.79782720000009,-3.197158899999977],[111.79962160000008,-3.215730599999972],[111.80501850000007,-3.235120499999937],[111.80375330000004,-3.232847],[111.81080260000005,-3.26461],[111.81880790000008,-3.321944599999938],[111.82008770000004,-3.366734],[111.81727540000009,-3.3985885],[111.80807220000008,-3.442160399999977],[111.79654950000008,-3.471744399999977],[111.77503290000004,-3.506905599999925],[111.77064160000003,-3.505205199999978],[111.77071110000009,-3.503058099999976],[111.76867570000007,-3.503744799999936],[111.77186440000008,-3.509359699999948],[111.78154760000007,-3.518491799999936],[111.80055890000006,-3.528747599999974],[111.81879460000005,-3.533783]]]]},"properties":{"shapeName":"Kotawaringin Barat","shapeISO":"","shapeID":"22746128B83866801436735","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[113.14992740000002,-3.061499199999957],[113.14855470000009,-3.061011599999972],[113.15035360000002,-3.062842699999976],[113.15221860000008,-3.062594899999965],[113.14992740000002,-3.061499199999957]]],[[[112.1275376000001,-1.313127699999939],[112.13204050000002,-1.365459899999962],[112.13255350000009,-1.411896699999943],[112.125385,-1.452160499999934],[112.11222380000004,-1.494983199999979],[112.07869190000008,-1.543847099999937],[112.070915,-1.569782299999929],[112.0727276,-1.598727799999949],[112.08953070000007,-1.643947499999967],[112.14112470000009,-1.695284199999946],[112.19229640000003,-1.758036199999935],[112.19806850000009,-1.770259199999941],[112.20183020000002,-1.786230599999953],[112.23160740000003,-1.806159399999956],[112.23447010000007,-1.811192399999925],[112.23367260000009,-1.820993],[112.2389482000001,-1.826563799999974],[112.24734850000004,-1.828086399999961],[112.25119280000001,-1.831230499999947],[112.2556952000001,-1.850958599999956],[112.25346130000003,-1.855642],[112.26072050000005,-1.8615306],[112.2610284000001,-1.866355499999941],[112.25724750000006,-1.873186],[112.26103880000005,-1.8808735],[112.26943250000011,-1.885938],[112.27157790000001,-1.894647799999973],[112.28495090000001,-1.974568],[112.28394230000004,-2.095341599999927],[112.32107460000009,-2.162428199999965],[112.3220272000001,-2.166157799999951],[112.32699360000004,-2.166457799999932],[112.32701060000011,-2.170538],[112.33353670000008,-2.178628799999956],[112.333539,-2.181159],[112.341969,-2.181617499999959],[112.3503535000001,-2.187723499999947],[112.35341160000007,-2.188020299999948],[112.35592820000011,-2.193016499999942],[112.37333290000004,-2.197053799999935],[112.37339740000004,-2.267092799999944],[112.40819460000012,-2.267376],[112.40826690000006,-2.3283116],[112.4291194000001,-2.328026299999976],[112.4353033000001,-2.356797799999924],[112.43475190000004,-2.390853899999968],[112.452432,-2.398227899999938],[112.45915840000009,-2.404657699999973],[112.47018720000005,-2.499130699999967],[112.47412880000002,-2.552849499999979],[112.480698,-2.581090199999949],[112.51086920000012,-2.615914099999941],[112.57813090000002,-2.658048199999939],[112.6074751000001,-2.682997299999954],[112.68808680000006,-2.721538399999929],[112.73312140000007,-2.748179],[112.78200350000009,-2.7802696],[112.87063060000003,-2.830598799999962],[112.84756770000001,-2.936972599999933],[112.81008650000001,-3.042848299999946],[112.84067670000002,-3.165532299999938],[112.87382800000012,-3.265249],[112.887614,-3.256829],[112.9188885000001,-3.241203499999926],[112.93582360000005,-3.228424199999949],[112.97390070000006,-3.19506],[113.04187350000007,-3.130088599999965],[113.03920630000005,-3.127796099999955],[113.03626830000007,-3.132337399999926],[113.03938030000006,-3.12881],[113.03978370000004,-3.130668],[113.03626450000002,-3.134629099999927],[113.01516960000004,-3.154262399999936],[113.009507,-3.156270899999924],[112.99651040000003,-3.156540399999926],[112.98216470000011,-3.153744899999936],[112.963292,-3.144855599999971],[112.94757410000011,-3.130701099999953],[112.94215820000011,-3.11768],[112.94208870000011,-3.110953699999925],[112.94538690000002,-3.102304199999935],[112.94939170000009,-3.098131899999942],[112.95786650000002,-3.083883799999967],[112.98048760000006,-3.055858299999954],[112.98382830000003,-3.048411699999974],[112.98603750000007,-3.0471439],[112.99209250000001,-3.047183399999938],[112.995524,-3.045839499999943],[112.99820250000005,-3.041661599999941],[113.00071090000006,-3.042814899999939],[113.00321410000004,-3.0414323],[113.01403170000003,-3.029436799999928],[113.01952070000004,-3.018928],[113.03249380000011,-2.976400199999944],[113.04742890000011,-2.976122099999941],[113.0480831000001,-2.979551099999981],[113.0530897000001,-2.983918299999971],[113.05622360000007,-2.9915599],[113.05597140000009,-3],[113.05804050000006,-3.006932499999948],[113.0626009,-3.011987199999965],[113.08334260000004,-3.023385299999973],[113.08761040000002,-3.033674799999972],[113.09705970000005,-3.0398073],[113.12472980000007,-3.053325299999926],[113.13143820000005,-3.054901],[113.13373430000001,-3.057628399999942],[113.14277960000004,-3.060162799999944],[113.14802410000004,-3.059975399999928],[113.15704440000002,-3.063754499999959],[113.16707420000012,-3.018236799999954],[113.098049,-2.800273499999946],[113.08052010000006,-2.716642299999933],[113.09114150000005,-2.673333799999966],[113.13760820000005,-2.605999399999973],[113.20272820000002,-2.499405],[113.2127852000001,-2.449472299999968],[113.194204,-2.387539499999946],[113.18192460000012,-2.356802399999935],[113.17227140000011,-2.321874699999967],[113.17510230000005,-2.290011],[113.19641020000006,-2.248158799999942],[113.2393221000001,-2.203196499999933],[113.24712690000001,-2.186282199999937],[113.24533440000005,-2.163929899999971],[113.234508,-2.1451668],[113.2298343000001,-2.122918599999934],[113.23130060000005,-2.102728299999967],[113.24380040000005,-2.085328499999946],[113.26210270000001,-2.071976599999971],[113.28199410000002,-2.045540699999947],[113.284354,-1.998712799999964],[113.27994070000011,-1.966811099999973],[113.27177760000006,-1.951521899999932],[113.2531732000001,-1.940439899999944],[113.22449150000011,-1.936565799999926],[113.19628720000003,-1.926332799999955],[113.19099290000008,-1.916026699999975],[113.191813,-1.902978699999949],[113.19996250000008,-1.888194299999952],[113.20106750000002,-1.862750099999971],[113.19571260000009,-1.8559101],[113.18598830000008,-1.8529879],[113.15887,-1.8382463],[113.09716860000003,-1.794680599999936],[113.026693,-1.768444799999941],[112.98125960000004,-1.7052473],[112.93124690000002,-1.7044226],[112.931274,-1.677030299999956],[112.92849160000003,-1.676566499999979],[112.92869710000002,-1.659266499999944],[112.86378550000006,-1.593457499999943],[112.85466970000004,-1.509235099999955],[112.84119090000002,-1.432453199999941],[112.82114460000003,-1.389580399999943],[112.80197030000011,-1.361459199999956],[112.74426620000008,-1.302722199999948],[112.66809010000009,-1.255153099999973],[112.64703880000002,-1.229658099999938],[112.59698190000006,-1.207052399999952],[112.55818760000011,-1.198259],[112.52314960000001,-1.194500499999947],[112.39317260000007,-1.214551399999948],[112.34719510000002,-1.241804399999978],[112.33308410000006,-1.254868899999963],[112.31607020000001,-1.273654499999964],[112.28949150000005,-1.285873199999969],[112.2137044000001,-1.2962383],[112.1275376000001,-1.313127699999939]]]]},"properties":{"shapeName":"Kotawaringin Timur","shapeISO":"","shapeID":"22746128B20762258515081","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[101.83340560000005,-0.981525699999963],[101.84180560000004,-0.983091],[101.85169840000003,-0.980404499999963],[101.85545090000005,-0.977377],[101.85455540000004,-0.972302699999943],[101.85569250000003,-0.968041199999959],[101.85426330000007,-0.968600199999969],[101.85924650000004,-0.9654463],[101.87231450000007,-0.966733599999941],[101.88376490000007,-0.964499199999977],[101.89165360000004,-0.960789399999953],[101.89780430000008,-0.953035399999976],[101.90120530000007,-0.9510245],[101.90716480000003,-0.9505606],[101.90934750000008,-0.946678199999951],[101.91036990000003,-0.938667199999941],[101.91390990000008,-0.935146599999939],[101.91458890000007,-0.931515399999967],[101.91271850000004,-0.922284099999956],[101.92113490000008,-0.911222199999941],[101.92787370000008,-0.905183499999964],[101.92333270000006,-0.8973845],[101.918556,-0.893220499999927],[101.91675190000007,-0.884611799999959],[101.91468990000004,-0.883052699999951],[101.90805030000007,-0.887949699999979],[101.89603120000004,-0.891149899999959],[101.89484930000003,-0.894218],[101.89188410000008,-0.895739399999968],[101.88164090000004,-0.909458],[101.87804870000008,-0.910903699999949],[101.86810340000005,-0.909546599999942],[101.86479510000004,-0.912283399999978],[101.85779980000007,-0.914487899999926],[101.85304450000007,-0.922399799999937],[101.85116360000006,-0.922340799999972],[101.84724710000006,-0.915039],[101.84377690000008,-0.911568799999941],[101.84785060000007,-0.899951199999975],[101.83970570000008,-0.880174499999953],[101.82662460000006,-0.874736799999937],[101.81702110000003,-0.861778799999968],[101.81246270000008,-0.859205799999927],[101.805504,-0.856699299999946],[101.798463,-0.857554199999925],[101.79630830000008,-0.850189899999975],[101.78825350000005,-0.844176299999958],[101.78330880000004,-0.843074299999955],[101.78161820000008,-0.837718699999925],[101.77846530000005,-0.833553299999949],[101.78423080000005,-0.823335],[101.78558240000007,-0.814289699999961],[101.78214470000006,-0.800489499999969],[101.77757450000007,-0.7987276],[101.77698790000005,-0.794235399999934],[101.78065930000008,-0.789910299999974],[101.78517060000007,-0.780075099999976],[101.789192,-0.75644],[101.78703120000006,-0.7540848],[101.78835410000005,-0.740472299999965],[101.79538180000009,-0.734233899999936],[101.79212420000005,-0.722576699999934],[101.79297390000005,-0.708629799999926],[101.79961970000005,-0.697069499999941],[101.79944270000004,-0.691345599999977],[101.80282510000006,-0.679875399999958],[101.80656010000007,-0.6747395],[101.80570520000003,-0.660154499999976],[101.83972430000006,-0.6226215],[101.84448510000004,-0.616213499999958],[101.84571990000006,-0.6094839],[101.84837890000006,-0.604585899999961],[101.86122810000006,-0.598644099999945],[101.88452340000003,-0.572502],[101.90631620000005,-0.538080799999932],[101.908125,-0.510770499999978],[101.91209280000004,-0.504009699999926],[101.91135160000005,-0.487018],[101.90819680000004,-0.467982499999948],[101.89703610000004,-0.447866699999963],[101.89230630000009,-0.4359116],[101.88978670000006,-0.424929599999928],[101.88946690000006,-0.413456599999961],[101.89257430000004,-0.395723799999928],[101.89084640000004,-0.396208099999967],[101.88846450000005,-0.393194199999925],[101.87240030000004,-0.392512299999964],[101.86277970000003,-0.4042392],[101.84943230000005,-0.404443199999946],[101.84544670000008,-0.398574599999961],[101.83788350000003,-0.392266699999936],[101.83433720000005,-0.3819417],[101.82873780000006,-0.3767883],[101.82437680000004,-0.375130199999944],[101.81963110000004,-0.376322799999969],[101.81085870000004,-0.381973599999981],[101.80458630000004,-0.380686399999945],[101.80089990000005,-0.377868099999944],[101.79771350000004,-0.372589699999935],[101.79253530000005,-0.3706836],[101.78851830000008,-0.365685399999961],[101.77631040000006,-0.364618399999927],[101.765105,-0.358039599999927],[101.74768740000007,-0.352109199999973],[101.74814050000003,-0.347795799999972],[101.74606220000004,-0.344398],[101.75989720000007,-0.331352699999968],[101.75753820000006,-0.323802199999932],[101.75374620000008,-0.319050599999969],[101.75465630000008,-0.312334699999951],[101.75352050000004,-0.311060699999928],[101.74335850000006,-0.309510299999943],[101.738149,-0.309416099999964],[101.73683920000008,-0.311442199999931],[101.73303360000006,-0.310891099999935],[101.73485120000004,-0.301631499999928],[101.73416340000006,-0.2965806],[101.71969330000007,-0.280853399999955],[101.71840920000005,-0.276683899999966],[101.71389520000008,-0.271610099999975],[101.71255490000004,-0.2653306],[101.70566710000008,-0.262070399999971],[101.68882260000004,-0.259610499999951],[101.67993390000004,-0.252989899999932],[101.67741580000006,-0.252880199999936],[101.67328790000005,-0.256092899999942],[101.66703170000005,-0.254233399999976],[101.66507020000006,-0.252664299999935],[101.66398990000005,-0.242191799999944],[101.66083360000005,-0.2393266],[101.65644180000004,-0.241070099999945],[101.651914,-0.240557399999943],[101.63940990000003,-0.246392599999979],[101.63761840000006,-0.245867],[101.63534690000006,-0.241179199999976],[101.623029,-0.230920199999957],[101.61969760000005,-0.231093499999929],[101.61655930000006,-0.236242299999958],[101.61165580000005,-0.235653799999966],[101.60444750000005,-0.225699599999928],[101.60246380000007,-0.219481799999926],[101.596291,-0.214178299999958],[101.59243380000004,-0.198190599999975],[101.58561780000008,-0.192551499999979],[101.58276530000006,-0.187665899999956],[101.57005750000008,-0.183257799999978],[101.56653580000005,-0.176690199999939],[101.56011930000005,-0.170436499999937],[101.556834,-0.161364899999967],[101.55732430000006,-0.155333499999927],[101.55251880000009,-0.152685599999927],[101.54820370000004,-0.1456245],[101.54457510000003,-0.130178299999955],[101.54163130000006,-0.128080399999931],[101.53573,-0.126805299999944],[101.53246330000007,-0.127922599999977],[101.53149360000003,-0.120573199999967],[101.524827,-0.1174274],[101.51754380000006,-0.117957199999978],[101.508077,-0.113362099999961],[101.50230120000003,-0.113463699999954],[101.48940640000006,-0.102294499999971],[101.48308360000004,-0.1007128],[101.48051690000005,-0.103969799999959],[101.48307170000004,-0.107101799999953],[101.48302870000003,-0.110564099999976],[101.47007790000004,-0.128860599999939],[101.46721410000004,-0.129421299999933],[101.460213,-0.125930299999936],[101.45117110000007,-0.127318399999979],[101.43786140000009,-0.111071],[101.43601110000009,-0.106377099999975],[101.43268850000004,-0.104153899999972],[101.42400420000007,-0.092428799999936],[101.42230490000009,-0.0874307],[101.41594290000006,-0.082908],[101.41430020000007,-0.076275499999952],[101.40990160000007,-0.073862199999951],[101.40729690000006,-0.079962799999976],[101.40793890000003,-0.083440699999926],[101.40622140000005,-0.088172899999961],[101.39397050000008,-0.0992156],[101.39075270000006,-0.127899599999978],[101.38415590000005,-0.126915],[101.37685860000005,-0.129056399999968],[101.37229270000006,-0.139529499999981],[101.37237810000005,-0.147569499999975],[101.36817110000004,-0.148801899999967],[101.36476590000007,-0.139356899999939],[101.35929220000008,-0.134064899999942],[101.34855990000005,-0.109415899999931],[101.34625520000009,-0.107386],[101.33912570000007,-0.107894099999953],[101.32040040000004,-0.0920901],[101.314062,-0.075705099999936],[101.31355750000006,-0.067222299999969],[101.31125280000003,-0.064974899999925],[101.31154050000004,-0.055984599999931],[101.30340240000004,-0.051707199999953],[101.30776180000004,-0.042727599999978],[101.29867920000004,-0.037335],[101.29560530000003,-0.028475199999946],[101.29121290000006,-0.024831899999924],[101.28994540000008,-0.018165599999975],[101.28637590000005,-0.0162536],[101.28257050000008,-0.010635199999967],[101.279939,-0.0091428],[101.28044960000005,-0.005808099999967],[101.272236,-0.004544199999941],[101.26441510000006,-0.010346599999934],[101.25935860000004,-0.016859899999929],[101.25880470000004,-0.028631099999927],[101.25527230000006,-0.042243499999927],[101.25092230000007,-0.045047],[101.242721,-0.046274599999947],[101.23893120000008,-0.059672499999976],[101.23289950000009,-0.061007199999949],[101.23027390000004,-0.065547899999956],[101.223018,-0.072781099999929],[101.21918880000004,-0.087207199999966],[101.213776,-0.089635899999962],[101.20414480000005,-0.097212],[101.20220470000004,-0.101417399999946],[101.20290010000008,-0.110374],[101.19376840000007,-0.118424399999924],[101.19318130000005,-0.121400299999948],[101.19650530000007,-0.127465],[101.19773,-0.135156399999971],[101.20419660000005,-0.147060799999963],[101.20184510000007,-0.151812799999959],[101.20062040000005,-0.165480899999977],[101.20189410000006,-0.1831662],[101.19973860000005,-0.188653],[101.188226,-0.199381799999969],[101.17514580000005,-0.218732699999975],[101.174166,-0.224954299999979],[101.17744830000004,-0.230686099999957],[101.17690940000006,-0.234115399999951],[101.17049180000004,-0.237544699999944],[101.16142870000004,-0.231323],[101.15799940000005,-0.236222],[101.15657870000007,-0.241022899999962],[101.15844030000005,-0.2488123],[101.16637670000006,-0.256405699999959],[101.16647460000007,-0.260569799999928],[101.15946910000008,-0.270073799999977],[101.15265960000005,-0.274237899999946],[101.15042070000004,-0.279729699999962],[101.14512990000009,-0.283884],[101.14179860000007,-0.289488399999925],[101.13940790000004,-0.306066499999929],[101.14294020000006,-0.319079099999954],[101.14297430000005,-0.333618199999933],[101.14054440000007,-0.339379399999928],[101.12573,-0.355565599999977],[101.12522050000007,-0.363795899999957],[101.11891060000005,-0.386527],[101.11459950000005,-0.389152899999942],[101.10092160000005,-0.383078199999943],[101.09519960000006,-0.381980799999951],[101.07999320000005,-0.381079399999976],[101.06776540000004,-0.37814],[101.061114,-0.378998499999966],[101.04743350000007,-0.376978399999928],[101.04098290000007,-0.362731499999938],[101.04243240000005,-0.367079799999942],[101.04290860000003,-0.382318199999929],[101.03481320000009,-0.388508699999932],[101.03005120000006,-0.389461099999949],[101.02528920000003,-0.394699299999957],[101.02576540000007,-0.398032699999931],[101.03005120000006,-0.402318499999978],[101.039099,-0.418033],[101.04313660000008,-0.421511099999975],[101.03767040000008,-0.424699799999928],[101.03767040000008,-0.435176099999978],[101.04368550000004,-0.4443993],[101.04481340000007,-0.450414499999965],[101.04909910000003,-0.455176399999971],[101.04814670000007,-0.459938399999942],[101.05273,-0.464521699999977],[101.05700420000005,-0.474608799999942],[101.062106,-0.480466299999932],[101.06672810000003,-0.482959499999936],[101.06666130000008,-0.495091699999932],[101.06873950000005,-0.498391199999958],[101.07274330000007,-0.498724899999957],[101.07127020000007,-0.503093399999955],[101.08104850000007,-0.505455299999937],[101.08936240000008,-0.511360099999933],[101.09191330000004,-0.511596299999951],[101.09795980000007,-0.508856499999979],[101.10490380000005,-0.503424099999961],[101.10967490000007,-0.502054199999975],[101.113836,-0.503734599999973],[101.11913480000004,-0.510725699999966],[101.12192740000006,-0.512122],[101.12965670000006,-0.524303399999951],[101.13499460000008,-0.527940699999931],[101.14215430000007,-0.530533],[101.14463120000005,-0.533325899999966],[101.15078010000008,-0.531248199999936],[101.16092840000005,-0.537577299999953],[101.16786640000004,-0.539604599999961],[101.183387,-0.551738799999953],[101.183651,-0.555104899999947],[101.19334760000004,-0.572529199999963],[101.20549210000007,-0.587709899999936],[101.207594,-0.593782099999942],[101.22277460000004,-0.601956299999927],[101.23585330000009,-0.605693099999939],[101.24963260000004,-0.625544699999978],[101.25290230000007,-0.626945899999953],[101.26575010000005,-0.623078599999928],[101.28096080000006,-0.6219449],[101.28818820000004,-0.624684699999932],[101.29588810000007,-0.631298],[101.30377680000004,-0.631959399999971],[101.30744910000004,-0.629272299999968],[101.33320630000009,-0.649484799999925],[101.35068520000004,-0.671965499999942],[101.35750070000006,-0.667955499999948],[101.35753190000008,-0.674122699999941],[101.35493590000004,-0.6774193],[101.35488860000004,-0.67967],[101.36112410000004,-0.6891649],[101.36820980000005,-0.691857499999969],[101.37363430000005,-0.697614399999964],[101.38264380000004,-0.702627799999959],[101.40190150000006,-0.710687699999937],[101.41101440000006,-0.717562599999951],[101.41264920000003,-0.720131599999945],[101.41405050000009,-0.736947099999952],[101.41848790000006,-0.7388155],[101.42175760000003,-0.736713499999951],[101.42456010000006,-0.736947099999952],[101.42647920000007,-0.743534099999977],[101.43162060000009,-0.747440199999971],[101.43201220000009,-0.754362299999968],[101.44420270000006,-0.7624603],[101.45860070000003,-0.768102799999951],[101.479614,-0.782306199999937],[101.48603470000006,-0.794563899999957],[101.49498480000005,-0.805459699999972],[101.500011,-0.809287299999937],[101.52355550000004,-0.811614899999938],[101.53701120000005,-0.816030699999942],[101.54865770000004,-0.823310299999946],[101.55124780000006,-0.827993099999958],[101.558237,-0.834494799999959],[101.57065390000008,-0.832925099999954],[101.59308730000004,-0.835629599999947],[101.59644990000004,-0.834846599999935],[101.60420520000008,-0.826253599999973],[101.61662140000004,-0.824423699999954],[101.63628570000009,-0.830135699999971],[101.64818390000005,-0.827785699999936],[101.65361650000006,-0.8280422],[101.66940110000007,-0.835317799999928],[101.67121320000007,-0.8371382],[101.67872910000006,-0.857690599999955],[101.68390880000004,-0.866274199999964],[101.68856780000004,-0.870174199999951],[101.69943370000004,-0.871987899999965],[101.71106920000005,-0.864953599999978],[101.71262380000007,-0.868595499999969],[101.71394030000005,-0.900340799999981],[101.689483,-0.940123699999958],[101.69026050000008,-0.941944699999965],[101.70371610000007,-0.947138499999937],[101.71820340000005,-0.948428199999967],[101.73269520000008,-0.955702599999938],[101.75573280000003,-0.974939199999938],[101.76271770000005,-0.975714099999948],[101.77357720000003,-0.969980599999928],[101.78366490000008,-0.969451899999967],[101.79271970000008,-0.971265799999969],[101.79866670000007,-0.968398599999944],[101.81496850000008,-0.975670399999956],[101.81833370000004,-0.978789899999924],[101.82066140000006,-0.9795682],[101.82153320000003,-0.977189099999975],[101.824852,-0.979776499999957],[101.83340560000005,-0.981525699999963]]]},"properties":{"shapeName":"Kuantan Singingi","shapeISO":"","shapeID":"22746128B75781295615267","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[109.35907780000008,-0.945980799999973],[109.35801410000005,-0.945878599999958],[109.35828830000008,-0.950230599999941],[109.36121040000006,-0.947632899999974],[109.35907780000008,-0.945980799999973]]],[[[109.25196060000007,-0.941633799999977],[109.25000280000006,-0.946753099999967],[109.25277810000006,-0.946826199999975],[109.25409830000007,-0.9448051],[109.25196060000007,-0.941633799999977]]],[[[109.25813980000004,-0.940234299999929],[109.25693010000003,-0.942831599999977],[109.25932770000009,-0.943826],[109.26019150000008,-0.942017599999929],[109.25813980000004,-0.940234299999929]]],[[[109.584707,-0.738646],[109.574675,-0.733265],[109.573276,-0.747478],[109.56705510000006,-0.7540765],[109.56675760000007,-0.757778299999927],[109.58297060000007,-0.767421699999943],[109.59387050000004,-0.766563899999937],[109.60005070000005,-0.768540199999961],[109.60236730000008,-0.772142499999973],[109.60374390000004,-0.778975099999968],[109.61801760000009,-0.7843403],[109.623886,-0.794907699999953],[109.62896720000003,-0.795683099999962],[109.63509360000006,-0.791631099999961],[109.63653210000007,-0.787343199999953],[109.632775,-0.782833399999959],[109.63189030000007,-0.761639899999977],[109.62634750000007,-0.751552699999934],[109.62227340000004,-0.750067699999931],[109.61329770000003,-0.75213],[109.607419,-0.748499],[109.598742,-0.748287],[109.593429,-0.742905],[109.584707,-0.738646]]],[[[109.69084140000007,-0.71546],[109.67686180000004,-0.718625699999961],[109.66983230000005,-0.715705699999944],[109.66762370000004,-0.7174386],[109.66506820000006,-0.72456],[109.66319630000004,-0.725688799999944],[109.65876290000006,-0.724572799999976],[109.65034670000006,-0.719444399999929],[109.64758420000004,-0.719291699999928],[109.64436620000004,-0.730191599999955],[109.64130120000004,-0.732651799999928],[109.63435660000005,-0.732329099999959],[109.62947280000009,-0.733802099999934],[109.62363270000009,-0.728502699999979],[109.61592720000004,-0.732558299999937],[109.60674940000007,-0.733752799999934],[109.60584790000007,-0.734625599999958],[109.60888960000005,-0.740532499999972],[109.607785,-0.745315099999971],[109.61466070000006,-0.749266],[109.62436540000004,-0.747064599999931],[109.63935470000007,-0.750000899999975],[109.64479180000006,-0.748612299999934],[109.659613,-0.748329],[109.66950060000005,-0.752736699999957],[109.66993690000004,-0.746152399999971],[109.671309,-0.744573],[109.67568650000004,-0.7440597],[109.66989620000004,-0.738819399999954],[109.67146310000004,-0.739327199999934],[109.67664560000009,-0.736840499999971],[109.68446980000004,-0.726890499999968],[109.68968080000008,-0.724553799999967],[109.69130580000007,-0.726616299999932],[109.693817,-0.723794799999951],[109.695431,-0.716973199999927],[109.69084140000007,-0.71546]]],[[[109.57146070000005,-0.731894899999929],[109.57699830000007,-0.726866099999938],[109.57721040000007,-0.724684699999955],[109.57547020000004,-0.717794099999935],[109.56868990000004,-0.712296699999968],[109.56552240000008,-0.71455],[109.56068480000005,-0.722862699999951],[109.55367,-0.7277276],[109.55110920000004,-0.732502699999941],[109.55776990000004,-0.733068599999967],[109.564819,-0.742217599999947],[109.56764590000006,-0.743817599999943],[109.57089930000006,-0.738127],[109.57040550000005,-0.733423099999925],[109.57146070000005,-0.731894899999929]]],[[[109.57556060000007,-0.710839899999939],[109.57061210000006,-0.711980899999958],[109.576934,-0.7188814],[109.578496,-0.726218199999948],[109.57777220000008,-0.729417599999977],[109.59300480000007,-0.738340799999946],[109.59917430000007,-0.743737099999976],[109.60542510000005,-0.744182599999931],[109.60632550000008,-0.7415323],[109.60375350000004,-0.732194],[109.60657560000004,-0.726261],[109.593206,-0.715559799999937],[109.59095450000007,-0.716492099999925],[109.58964050000009,-0.719750599999941],[109.57965990000008,-0.719101699999953],[109.577096,-0.7159751],[109.57556060000007,-0.710839899999939]]],[[[109.65642560000003,-0.699747099999968],[109.64695270000004,-0.703574],[109.63231610000008,-0.7055216],[109.62191590000003,-0.7054113],[109.61612720000005,-0.702527199999963],[109.61003240000008,-0.704595799999936],[109.60279170000007,-0.704509799999926],[109.60037420000003,-0.708742399999949],[109.59687730000007,-0.709837099999959],[109.58548580000007,-0.707301899999948],[109.57793140000007,-0.709874799999966],[109.57867910000004,-0.716459399999962],[109.58006230000007,-0.717939899999976],[109.58647530000007,-0.718859599999973],[109.59029640000006,-0.715209199999947],[109.59497560000005,-0.714850199999944],[109.60690530000005,-0.724911899999938],[109.60864380000004,-0.730160399999932],[109.62654060000006,-0.726911],[109.62978160000006,-0.732111099999941],[109.63400530000007,-0.730022199999951],[109.64152240000004,-0.730714699999965],[109.64747650000004,-0.717294899999956],[109.66335810000004,-0.724569899999949],[109.66678340000004,-0.717128099999968],[109.66928150000007,-0.71486],[109.67927360000004,-0.716647499999965],[109.686737,-0.714512499999955],[109.68834640000006,-0.712697099999957],[109.68759360000007,-0.709485899999947],[109.68800340000007,-0.7069401],[109.68385960000006,-0.7055939],[109.67999020000008,-0.702151399999934],[109.65642560000003,-0.699747099999968]]],[[[109.52579320000007,-0.699437299999943],[109.52292910000006,-0.698749299999974],[109.51327560000004,-0.701678699999945],[109.49856450000004,-0.699868],[109.49685510000006,-0.700117199999966],[109.49763080000008,-0.702688699999953],[109.496128,-0.7031322],[109.49193690000004,-0.699706599999956],[109.49131940000007,-0.707437],[109.484405,-0.706396],[109.48275410000008,-0.707505399999945],[109.48527580000007,-0.713845599999956],[109.48313540000004,-0.717449299999942],[109.46935960000008,-0.716926899999976],[109.46208550000006,-0.720933],[109.45721580000009,-0.719970099999955],[109.44772090000004,-0.708856299999979],[109.44468650000005,-0.708393399999977],[109.45429760000007,-0.726746099999957],[109.45991080000005,-0.729948299999933],[109.46859590000008,-0.7319322],[109.52646730000004,-0.727171799999951],[109.54170470000008,-0.731469699999934],[109.54822050000007,-0.724894499999948],[109.55570950000003,-0.720685899999978],[109.55919470000003,-0.716101199999969],[109.54930770000004,-0.706428],[109.53675040000007,-0.704534199999955],[109.52579320000007,-0.699437299999943]]],[[[109.48516380000007,-0.6838532],[109.483381,-0.683498199999974],[109.48333590000004,-0.687050299999953],[109.49045480000007,-0.693876699999976],[109.49384430000003,-0.695583699999929],[109.49776550000007,-0.694323399999973],[109.49754720000004,-0.688585399999965],[109.48516380000007,-0.6838532]]],[[[109.66705580000007,-0.684733899999969],[109.66609610000006,-0.682706],[109.65941980000008,-0.680006599999956],[109.65623440000007,-0.671809399999972],[109.65122450000007,-0.677208499999949],[109.64861680000007,-0.683631299999945],[109.64024160000008,-0.685368],[109.63236340000009,-0.690198399999929],[109.61762340000007,-0.690697599999964],[109.61619690000003,-0.688800199999946],[109.61644920000003,-0.685662599999944],[109.61403590000003,-0.684447299999931],[109.60760790000006,-0.686738599999956],[109.59784090000005,-0.695281099999931],[109.58323430000007,-0.692064899999934],[109.57377760000008,-0.692111499999953],[109.55195620000006,-0.707155899999975],[109.56237370000008,-0.7122456],[109.56899760000005,-0.707855499999937],[109.57801570000004,-0.707468399999925],[109.58610060000007,-0.705160699999965],[109.59121140000008,-0.705334599999958],[109.59582110000008,-0.707954099999938],[109.59894320000006,-0.703965899999957],[109.602941,-0.702051399999959],[109.60842960000008,-0.7025432],[109.61565670000005,-0.701032599999962],[109.62170420000007,-0.703611599999931],[109.631398,-0.703881199999955],[109.647493,-0.701969899999938],[109.65523,-0.698477799999978],[109.66481170000009,-0.699123399999962],[109.67380610000004,-0.697376],[109.67442820000008,-0.694609499999956],[109.67201050000006,-0.691341699999953],[109.66909250000003,-0.690166099999942],[109.66705580000007,-0.684733899999969]]],[[[109.44731890000008,-0.671638399999949],[109.44048740000005,-0.668394499999977],[109.43968970000009,-0.673752799999932],[109.43578460000003,-0.676379399999973],[109.42029720000005,-0.669364399999949],[109.41194240000004,-0.674455399999943],[109.42495120000007,-0.681580799999949],[109.43110120000006,-0.68765],[109.43649530000005,-0.695779399999935],[109.44358540000007,-0.696663199999932],[109.45468670000008,-0.705146199999945],[109.45490790000008,-0.706464],[109.45223230000005,-0.707917499999951],[109.45287710000008,-0.710641],[109.45859920000004,-0.71902],[109.46882940000006,-0.715702599999929],[109.48299890000004,-0.716558299999974],[109.48398350000008,-0.714918499999953],[109.48203990000007,-0.708088699999962],[109.48267740000006,-0.706193199999973],[109.49077440000008,-0.707006199999967],[109.49099350000006,-0.699782],[109.49220510000004,-0.699120499999935],[109.49563060000008,-0.702500699999973],[109.49687680000005,-0.702013299999976],[109.47955130000008,-0.6895921],[109.47101890000005,-0.689221599999939],[109.46755150000007,-0.681372899999928],[109.45772760000006,-0.677067],[109.45277580000004,-0.671588699999973],[109.44731890000008,-0.671638399999949]]],[[[109.25053760000009,-0.661505199999965],[109.24730040000009,-0.662212899999929],[109.24522550000006,-0.665946299999973],[109.24125370000007,-0.693540399999961],[109.24277250000006,-0.741223799999943],[109.23823640000006,-0.783908499999939],[109.238411,-0.792605699999967],[109.23686490000006,-0.7952609],[109.24016320000004,-0.816825399999971],[109.24440710000005,-0.830407899999955],[109.25217640000005,-0.846375899999941],[109.25621910000007,-0.850292799999977],[109.25607530000008,-0.852805],[109.28461190000007,-0.8858908],[109.309279,-0.907885299999975],[109.32997050000006,-0.919038],[109.34173130000005,-0.9208046],[109.35693860000003,-0.918765899999926],[109.37322520000004,-0.926499699999965],[109.38979680000006,-0.929924299999925],[109.39690780000006,-0.932808499999965],[109.40599810000003,-0.932573399999967],[109.40950770000006,-0.925157199999944],[109.41576150000009,-0.920757199999969],[109.41841370000009,-0.917001599999935],[109.42318790000007,-0.907107599999961],[109.42483330000005,-0.906151199999954],[109.424882,-0.903471199999956],[109.42740210000005,-0.902697],[109.42740360000005,-0.89928],[109.43250130000007,-0.8965352],[109.42582960000004,-0.888903899999946],[109.42139470000006,-0.875554699999952],[109.414752,-0.869492799999932],[109.41972830000009,-0.863548299999934],[109.42082260000006,-0.864550099999974],[109.42737120000004,-0.859434499999963],[109.42876660000007,-0.856405799999948],[109.43811030000006,-0.853008799999941],[109.43956930000007,-0.85816],[109.44977650000004,-0.8616243],[109.45553710000007,-0.865539],[109.47848470000008,-0.868824699999948],[109.48549590000005,-0.872393],[109.49330480000003,-0.872934599999951],[109.49748270000003,-0.876069799999925],[109.49918060000005,-0.874440899999968],[109.50491840000007,-0.87449],[109.51957220000008,-0.878803199999936],[109.52285320000004,-0.8777756],[109.53657870000006,-0.885582099999965],[109.54404430000005,-0.883072399999946],[109.55224510000005,-0.884930199999928],[109.55849560000007,-0.889288],[109.563057,-0.898528],[109.56503980000008,-0.898194899999964],[109.56735420000007,-0.900628],[109.56960810000004,-0.899891799999978],[109.57098580000007,-0.902811799999938],[109.57466730000004,-0.899147199999959],[109.57983380000007,-0.897493199999928],[109.58384160000008,-0.8983994],[109.59029390000006,-0.903819699999929],[109.593454,-0.908451499999956],[109.59766680000007,-0.9201934],[109.60019310000007,-0.934265499999924],[109.60847450000006,-0.943697499999928],[109.60986120000007,-0.953892499999938],[109.60906010000008,-0.9654147],[109.61258770000006,-0.972439799999961],[109.62135780000006,-0.978521799999953],[109.62860270000004,-0.973216899999954],[109.63906550000007,-0.976589499999932],[109.64367520000008,-0.982681799999966],[109.64916050000005,-0.998933199999954],[109.65945260000007,-1.002514899999937],[109.66580830000004,-1.002339],[109.67204940000005,-1.005078799999978],[109.67951140000008,-1.009780599999942],[109.68170750000007,-1.014106799999979],[109.68415970000007,-1.013069799999926],[109.68923170000005,-0.998982],[109.69573790000004,-0.989292399999954],[109.72112340000007,-0.974117699999965],[109.72274750000008,-0.965991799999927],[109.72040290000007,-0.941568699999948],[109.71966190000006,-0.919563299999936],[109.72067430000004,-0.914059399999928],[109.72735540000008,-0.905968],[109.74564010000006,-0.899931599999945],[109.74476180000005,-0.896090299999969],[109.73690720000008,-0.887328499999967],[109.73579150000006,-0.882446],[109.73864620000006,-0.877134099999978],[109.74768160000008,-0.873930299999927],[109.74819320000006,-0.872494599999925],[109.74522350000007,-0.866283299999964],[109.73944740000007,-0.862727399999926],[109.73680820000004,-0.863528299999928],[109.73005370000004,-0.871483299999966],[109.72615620000005,-0.874047499999961],[109.72109230000007,-0.873866299999975],[109.715459,-0.870454099999961],[109.71330860000006,-0.866923399999962],[109.713084,-0.863381499999946],[109.71805680000006,-0.851154099999974],[109.71280820000004,-0.8346036],[109.71043160000005,-0.832042199999933],[109.69329210000006,-0.827872399999933],[109.682188,-0.833241299999941],[109.67610230000008,-0.832114499999932],[109.66474160000007,-0.822933],[109.66166440000006,-0.818516699999975],[109.65949160000008,-0.811181099999942],[109.65164710000005,-0.809192199999927],[109.64131940000004,-0.803911899999946],[109.630693,-0.803346],[109.62232960000006,-0.800245299999972],[109.61783770000005,-0.796738],[109.61438120000008,-0.789264499999945],[109.60317940000004,-0.786101899999949],[109.59890130000008,-0.783139],[109.59405490000006,-0.773732699999925],[109.58060570000004,-0.773411099999976],[109.57080170000006,-0.767365499999926],[109.56033820000005,-0.763395299999956],[109.55718820000004,-0.757188799999938],[109.55816290000007,-0.748267899999973],[109.552818,-0.743502],[109.549817,-0.746479],[109.546179,-0.747498],[109.541247,-0.745717],[109.534747,-0.738417],[109.509355,-0.739411],[109.50348,-0.741944],[109.504428,-0.745331],[109.48839960000004,-0.749931699999934],[109.47778810000005,-0.751003599999933],[109.47231960000005,-0.754246499999965],[109.46662220000007,-0.754996299999959],[109.44972850000005,-0.746968399999957],[109.42299340000005,-0.724351099999978],[109.40907520000007,-0.7160905],[109.40443670000008,-0.711844],[109.39359690000003,-0.707179199999928],[109.37659960000008,-0.710044899999957],[109.368654,-0.714632199999926],[109.35623010000006,-0.714456199999972],[109.35472690000006,-0.713053699999932],[109.34980550000006,-0.713069099999927],[109.34368890000007,-0.710486599999967],[109.33769960000006,-0.710561899999959],[109.32411630000007,-0.706032899999968],[109.30640620000008,-0.702371099999937],[109.28617370000006,-0.690291799999954],[109.26521120000007,-0.665474],[109.25053760000009,-0.661505199999965]]],[[[109.37635650000004,-0.654273899999964],[109.37000170000005,-0.650280199999941],[109.365973,-0.652296799999931],[109.36321230000004,-0.6558275],[109.35995580000008,-0.656891199999961],[109.35436920000006,-0.6555179],[109.35152610000006,-0.651894299999924],[109.34960430000007,-0.652603799999952],[109.34928430000008,-0.6560217],[109.35273490000009,-0.6636923],[109.36011490000004,-0.6729316],[109.36495660000008,-0.675505399999963],[109.36948330000007,-0.6761133],[109.37983780000008,-0.672620599999959],[109.40548990000008,-0.674684099999979],[109.38771440000005,-0.658672699999954],[109.37635650000004,-0.654273899999964]]],[[[109.452378,-0.631919],[109.431844,-0.634246],[109.426804,-0.637774],[109.428363,-0.639747],[109.427376,-0.642547],[109.457671,-0.658879],[109.472059,-0.668914],[109.481397,-0.667239],[109.48508,-0.672798],[109.490847,-0.673493],[109.491612,-0.669393],[109.494738,-0.667031],[109.494738,-0.663973],[109.490708,-0.664807],[109.486192,-0.663557],[109.480008,-0.65633],[109.478896,-0.651258],[109.4757,-0.646672],[109.466417,-0.6397],[109.460231,-0.639513],[109.45569,-0.636936],[109.452378,-0.631919]]],[[[109.48295630000007,-0.6284685],[109.472675,-0.623730299999977],[109.46819790000006,-0.629249499999958],[109.45939890000005,-0.631281199999933],[109.45830730000006,-0.6359816],[109.467402,-0.638203],[109.47424,-0.642642],[109.479938,-0.648756],[109.482509,-0.657303],[109.487859,-0.662306],[109.496615,-0.661541],[109.496267,-0.667031],[109.492446,-0.669602],[109.490986,-0.674327],[109.484455,-0.673632],[109.481675,-0.668281],[109.472741,-0.670846],[109.48058320000007,-0.676815699999963],[109.48399210000008,-0.682177699999954],[109.497817,-0.688357],[109.49877220000008,-0.693927099999939],[109.52905320000008,-0.695669099999975],[109.54604920000008,-0.703227],[109.57471250000003,-0.687307099999941],[109.58315530000004,-0.686001399999952],[109.58084450000007,-0.675789599999973],[109.58462950000006,-0.661200699999938],[109.58363550000007,-0.653021199999955],[109.57782030000004,-0.655079099999966],[109.57294420000005,-0.653133199999957],[109.57157970000009,-0.656280599999945],[109.56866620000005,-0.657144399999936],[109.56391110000004,-0.652609],[109.55797150000006,-0.656819],[109.55479210000004,-0.655697699999962],[109.55164560000009,-0.651868],[109.547632,-0.656025499999942],[109.54402780000004,-0.653604399999949],[109.54211420000007,-0.646367599999962],[109.53331470000006,-0.645683399999939],[109.52824210000006,-0.647098399999948],[109.52566260000003,-0.639252799999952],[109.51730640000005,-0.644818699999973],[109.51385120000003,-0.642808699999932],[109.51024520000004,-0.637863599999946],[109.504996,-0.639361399999927],[109.50148670000004,-0.637548699999968],[109.49245740000003,-0.625983099999928],[109.48295630000007,-0.6284685]]],[[[109.36401040000004,-0.617401399999949],[109.36051810000004,-0.617289299999925],[109.35756490000006,-0.619118599999979],[109.35116240000008,-0.634793499999944],[109.359262,-0.647748099999944],[109.36012190000008,-0.653346099999965],[109.36848620000006,-0.648734299999944],[109.372918,-0.648204299999975],[109.37702370000005,-0.650213],[109.37955810000005,-0.653469599999937],[109.39126540000007,-0.658500599999968],[109.40587550000004,-0.672698],[109.41881660000007,-0.667796599999974],[109.423388,-0.667504099999974],[109.436346,-0.674307899999974],[109.43907540000004,-0.667070899999942],[109.441774,-0.666579799999965],[109.44670980000006,-0.669816299999979],[109.45424840000004,-0.670820699999979],[109.45821930000005,-0.675143799999944],[109.46787430000006,-0.680035699999962],[109.47060140000008,-0.683271299999944],[109.47195930000004,-0.688157499999932],[109.47456260000007,-0.688109499999939],[109.47677220000008,-0.685657099999958],[109.47693610000005,-0.680870399999947],[109.4743,-0.676889499999959],[109.45018370000008,-0.660624],[109.433097,-0.651183499999945],[109.42456350000003,-0.648913799999946],[109.41649850000005,-0.642470799999955],[109.40384030000007,-0.6371271],[109.38561590000006,-0.624660699999936],[109.37694460000006,-0.623896499999944],[109.36401040000004,-0.617401399999949]]],[[[109.31145660000004,-0.611387399999956],[109.31253620000007,-0.609335399999964],[109.31095710000005,-0.610023399999932],[109.31145660000004,-0.611387399999956]]],[[[109.29920890000005,-0.594197699999938],[109.29457070000007,-0.594236399999943],[109.28602090000004,-0.599639799999977],[109.28396090000007,-0.607002399999942],[109.28098760000006,-0.610683],[109.28127260000008,-0.613156699999934],[109.288532,-0.611893499999951],[109.29013310000005,-0.609362899999951],[109.30743110000009,-0.601141199999972],[109.29920890000005,-0.594197699999938]]],[[[109.33453710000003,-0.573568399999942],[109.325059,-0.574267],[109.324272,-0.582074],[109.333883,-0.57655],[109.33453710000003,-0.573568399999942]]],[[[109.10142320000006,-0.206108],[109.099488,-0.207033699999954],[109.10162980000007,-0.209336099999973],[109.10142320000006,-0.206108]]],[[[109.127152,-0.202214399999946],[109.11085040000006,-0.203198],[109.10775690000008,-0.205310599999962],[109.10375520000008,-0.205756799999961],[109.10172790000007,-0.210584199999971],[109.09883830000007,-0.206763399999943],[109.09590430000009,-0.208272399999942],[109.09597310000004,-0.2095626],[109.09043250000008,-0.2066479],[109.07751450000006,-0.217504899999938],[109.07245990000007,-0.220032899999978],[109.06563990000006,-0.220504099999971],[109.06100660000004,-0.216527799999938],[109.06156650000008,-0.213923799999975],[109.05978680000004,-0.21178],[109.05870960000004,-0.213486899999964],[109.05325660000005,-0.248503699999958],[109.05395660000005,-0.259434599999963],[109.05804240000003,-0.273311199999966],[109.069332,-0.294292499999926],[109.08272870000008,-0.3125297],[109.09262330000007,-0.330304199999944],[109.09578980000003,-0.332409699999971],[109.10174960000006,-0.333292699999959],[109.10363790000008,-0.331680799999958],[109.101376,-0.323216299999956],[109.10011080000004,-0.307649699999956],[109.09872880000006,-0.304913499999941],[109.087181,-0.29431],[109.08333040000008,-0.287822399999925],[109.08332750000005,-0.2699646],[109.08566950000005,-0.268135599999937],[109.08724870000009,-0.269137099999966],[109.09212460000003,-0.2651814],[109.10959450000007,-0.260962499999948],[109.11687860000006,-0.257481899999959],[109.12422950000007,-0.25],[109.13242450000007,-0.236390299999925],[109.14360150000005,-0.233922099999972],[109.15300630000007,-0.233654799999954],[109.16223160000004,-0.229671699999926],[109.172126,-0.231058299999972],[109.17655340000005,-0.225006499999949],[109.18577730000004,-0.223317799999961],[109.19313810000006,-0.218704899999977],[109.18688590000005,-0.211974899999973],[109.17723650000005,-0.207565599999953],[109.17095170000005,-0.207309899999927],[109.15909480000005,-0.210990699999968],[109.142261,-0.204566599999964],[109.127152,-0.202214399999946]]],[[[109.07237440000006,-0.195748],[109.07362040000004,-0.194784799999979],[109.06880310000008,-0.190577399999938],[109.06412910000006,-0.195073399999956],[109.07237440000006,-0.195748]]],[[[109.12653290000009,-0.176206299999933],[109.10987220000004,-0.168389799999943],[109.102836,-0.168543],[109.10181630000005,-0.1712318],[109.097572,-0.173471899999925],[109.093309,-0.179173399999968],[109.08775730000008,-0.181293199999971],[109.08579690000005,-0.1867055],[109.08972580000005,-0.191606299999933],[109.09938860000005,-0.1953582],[109.11809840000006,-0.197822199999962],[109.133752,-0.196213499999942],[109.141162,-0.1986431],[109.15919380000008,-0.207999],[109.16362540000006,-0.2072385],[109.17308860000009,-0.201287099999945],[109.16872860000007,-0.194882599999971],[109.15993060000005,-0.188194],[109.14221840000005,-0.1822794],[109.13207630000005,-0.176971899999955],[109.12653290000009,-0.176206299999933]]],[[[109.08257890000004,-0.168123299999934],[109.07973750000008,-0.167805699999974],[109.08353730000005,-0.169383],[109.08053010000003,-0.169834499999979],[109.08321270000005,-0.170908699999927],[109.08199010000004,-0.172179],[109.082809,-0.174233499999957],[109.087951,-0.172960099999955],[109.09139140000008,-0.175287899999944],[109.09482590000005,-0.1726241],[109.09475130000004,-0.170721499999956],[109.08543320000007,-0.1700656],[109.08257890000004,-0.168123299999934]]],[[[109.16048250000006,-0.185404699999935],[109.15950940000005,-0.178635199999974],[109.14699570000005,-0.167663],[109.14097250000009,-0.159668299999964],[109.13753560000004,-0.152334399999972],[109.13154360000004,-0.1473101],[109.12720820000004,-0.146399699999961],[109.12514650000008,-0.162226399999952],[109.12601880000005,-0.166929899999957],[109.14251850000005,-0.179970899999944],[109.16048250000006,-0.185404699999935]]],[[[109.12537390000006,-0.150294299999928],[109.12415880000009,-0.143502],[109.11713310000005,-0.135317499999928],[109.116834,-0.13214],[109.11491320000005,-0.130100599999935],[109.11616120000008,-0.124008799999956],[109.113022,-0.1170557],[109.10334270000004,-0.120843099999945],[109.09384880000005,-0.130045],[109.08944690000004,-0.1502465],[109.09194730000007,-0.151376899999946],[109.09739570000005,-0.150619799999959],[109.10391510000005,-0.157633899999951],[109.11070360000008,-0.161269399999981],[109.11352680000005,-0.166604699999937],[109.11904930000009,-0.168714199999954],[109.123892,-0.168531299999927],[109.12537390000006,-0.150294299999928]]],[[[109.12111910000004,-0.117255299999954],[109.12576070000006,-0.109580299999948],[109.12296740000005,-0.103213799999935],[109.11928740000008,-0.105627499999969],[109.11804590000008,-0.108613499999933],[109.11956970000006,-0.115655899999979],[109.12111910000004,-0.117255299999954]]],[[[109.17491130000008,-0.103524099999959],[109.17616750000008,-0.102793299999973],[109.17550710000006,-0.0889595],[109.17396080000009,-0.087589599999944],[109.17074950000006,-0.087654099999952],[109.16946040000005,-0.089212399999951],[109.169872,-0.093373699999972],[109.17321890000005,-0.102391399999931],[109.17491130000008,-0.103524099999959]]],[[[109.17795840000008,-0.117445],[109.17200250000008,-0.110720899999933],[109.17027370000005,-0.100894399999959],[109.16549750000007,-0.092571199999952],[109.16747550000008,-0.079459199999974],[109.16432330000004,-0.069773199999929],[109.164399,-0.0617918],[109.16198,-0.058432799999935],[109.13831580000004,-0.0806113],[109.12400860000008,-0.103682499999934],[109.12623350000007,-0.108887099999947],[109.12399090000008,-0.116185799999926],[109.12534440000007,-0.117924199999948],[109.12828650000006,-0.117816199999936],[109.12813570000009,-0.127113299999962],[109.13094490000009,-0.134569399999975],[109.12889410000008,-0.132519599999966],[109.12781080000008,-0.133408599999939],[109.13111410000005,-0.1399216],[109.13938250000007,-0.1499267],[109.14319570000004,-0.159745199999975],[109.14955520000007,-0.167986599999949],[109.161115,-0.178112299999952],[109.162905,-0.185791199999926],[109.17627890000006,-0.194484099999954],[109.18134610000004,-0.180242],[109.18127890000005,-0.161879399999975],[109.18660640000007,-0.139939899999945],[109.18453640000007,-0.1278246],[109.17795840000008,-0.117445]]],[[[109.25311980000004,0.016160500000069],[109.25021610000005,0.021228400000041],[109.24383920000008,0.024314900000036],[109.24460020000004,0.020893600000022],[109.247318,0.018004500000075],[109.25311980000004,0.016160500000069]]],[[[109.24361,0.019650400000046],[109.24068950000009,0.025836800000036],[109.23212530000006,0.029481600000054],[109.23811210000008,0.02217150000007],[109.24361,0.019650400000046]]],[[[109.19050690000006,0.051257200000066],[109.18898860000007,0.050977400000022],[109.18954850000006,0.048996700000032],[109.20026420000005,0.03977290000006],[109.18750820000008,0.048262400000056],[109.18184730000007,0.048876900000039],[109.177575,0.046018400000037],[109.17839770000006,0.036339400000031],[109.21105590000008,0.024534200000062],[109.21825850000005,0.019813200000044],[109.23901140000004,0.018879200000072],[109.23490170000008,0.025205300000039],[109.22057030000008,0.036776700000075],[109.20018040000008,0.047392700000046],[109.19623870000004,0.048677800000064],[109.194604,0.047443700000031],[109.19321150000007,0.049987700000031],[109.19050690000006,0.051257200000066]]],[[[109.93226360000006,-0.752274199999931],[109.93262080000005,-0.748305399999936],[109.93774990000009,-0.744921199999965],[109.93981830000007,-0.741724699999963],[109.941231,-0.7339547],[109.94108970000008,-0.729928499999971],[109.93444990000006,-0.720039399999962],[109.90287,-0.732215099999962],[109.897994,-0.731731899999943],[109.88868110000004,-0.7267679],[109.87906080000005,-0.714599799999974],[109.87910480000005,-0.7109977],[109.88495940000007,-0.6997174],[109.88425490000009,-0.691498399999944],[109.88042430000007,-0.684985599999948],[109.86873420000006,-0.672304799999949],[109.85924560000007,-0.657565699999964],[109.85431420000003,-0.657213399999932],[109.84631340000004,-0.659034],[109.84163660000007,-0.664523799999927],[109.84061580000008,-0.672642099999962],[109.83846440000008,-0.6754284],[109.824638,-0.672330799999941],[109.82188420000006,-0.680454099999963],[109.81850210000005,-0.682172699999967],[109.81477970000009,-0.681755],[109.81326640000009,-0.680213499999979],[109.81070060000008,-0.671027899999956],[109.81082980000008,-0.664954299999977],[109.81395270000007,-0.645485],[109.81608460000007,-0.640790799999934],[109.82642840000005,-0.631820699999935],[109.85997290000006,-0.610675],[109.86353830000007,-0.605928899999981],[109.86823280000004,-0.593767799999966],[109.881044,-0.586383499999954],[109.88204320000006,-0.577174699999944],[109.87914130000007,-0.565113799999949],[109.87995750000005,-0.561214399999926],[109.88703080000005,-0.551057799999967],[109.91874320000005,-0.531037599999934],[109.92581750000005,-0.522024699999974],[109.93806590000008,-0.513448699999969],[109.94737480000003,-0.499212099999966],[109.95566680000007,-0.496936199999936],[109.96444270000006,-0.496466199999929],[109.96596780000004,-0.495885699999974],[109.96596780000004,-0.494262799999944],[109.96076120000004,-0.490780499999971],[109.95873260000008,-0.4863176],[109.972155,-0.477459499999952],[109.97316930000005,-0.471170899999947],[109.97147880000006,-0.461028],[109.96671170000008,-0.452508],[109.95034780000009,-0.448281799999961],[109.94722550000006,-0.446308],[109.94602020000008,-0.442770899999971],[109.94848830000007,-0.439998499999945],[109.95295120000009,-0.439559],[109.963804,-0.444157099999927],[109.96840210000005,-0.444596599999954],[109.97222260000007,-0.440843699999959],[109.97174930000006,-0.433135199999924],[109.96711740000006,-0.429213299999958],[109.95656880000007,-0.4266099],[109.94699890000004,-0.4214536],[109.93996830000009,-0.419915599999968],[109.92606540000008,-0.412394],[109.92252740000004,-0.408111499999961],[109.92025530000006,-0.398176699999965],[109.92061660000007,-0.364619599999969],[109.92252680000007,-0.356867799999975],[109.92480350000005,-0.354330399999981],[109.93012710000005,-0.352251499999966],[109.93853780000006,-0.352902],[109.943813,-0.351534299999969],[109.94841940000003,-0.346457],[109.94642630000004,-0.340260599999965],[109.93168640000005,-0.325707099999931],[109.93049420000006,-0.322173],[109.93168740000004,-0.315705299999934],[109.93622060000007,-0.3106906],[109.95025780000009,-0.302413899999976],[109.96569740000007,-0.2814489],[109.96479210000007,-0.274080099999935],[109.96180280000004,-0.268446799999936],[109.95151150000004,-0.261610599999926],[109.94819060000009,-0.257564099999968],[109.94968080000007,-0.248071899999957],[109.94898290000003,-0.240818199999978],[109.94151420000009,-0.224891499999956],[109.94033360000009,-0.213868699999978],[109.94187120000004,-0.1893242],[109.93814760000004,-0.162987],[109.938869,-0.143391399999928],[109.92896170000006,-0.149696399999925],[109.91918290000007,-0.151854499999956],[109.914693,-0.149955],[109.91986980000007,-0.147302399999944],[109.92015420000007,-0.145312],[109.907795,-0.138186799999971],[109.90332550000005,-0.132866799999931],[109.90119040000008,-0.129156799999976],[109.90038540000006,-0.119916799999942],[109.90262550000006,-0.114771799999971],[109.90367550000008,-0.106861799999933],[109.89496040000006,-0.103221799999972],[109.89044540000003,-0.0967118],[109.87952540000003,-0.086631799999964],[109.87501040000006,-0.080681799999979],[109.87340040000004,-0.070741699999928],[109.86640040000009,-0.065946699999927],[109.86017040000007,-0.056741699999975],[109.84776350000004,-0.045903299999964],[109.84180150000009,-0.000031199999967],[109.834741,0.019227600000022],[109.83607750000004,0.024158700000044],[109.83808230000005,0.025279400000045],[109.85634960000004,0.024983200000065],[109.864146,0.038431800000069],[109.85991350000006,0.046500900000069],[109.86080440000006,0.051207900000065],[109.85924470000003,0.06913940000004],[109.86080390000006,0.07586370000007],[109.86917590000007,0.08594590000007],[109.843374,0.090509600000075],[109.83041470000006,0.090726500000073],[109.81288120000005,0.084924100000023],[109.80798750000008,0.087643600000035],[109.79464980000006,0.090110100000061],[109.78753430000006,0.08688410000002],[109.78333450000008,0.087221400000033],[109.77413220000005,0.078211900000042],[109.76828760000006,0.077114800000061],[109.76359030000003,0.079957300000046],[109.75940150000008,0.086103600000058],[109.753991,0.090844900000036],[109.74980240000008,0.092600800000071],[109.74840620000003,0.091722700000048],[109.74660360000007,0.085210300000028],[109.72967660000006,0.076609800000028],[109.72486820000006,0.077832],[109.71734320000007,0.075937200000055],[109.713496,0.06925990000002],[109.71193990000006,0.073390200000063],[109.70705240000007,0.073556500000052],[109.70102650000007,0.077255600000058],[109.69876950000008,0.074749200000042],[109.69272790000008,0.072290400000043],[109.69192910000004,0.07046],[109.69577010000006,0.065618200000074],[109.69562040000005,0.06389740000003],[109.68897160000006,0.067477800000063],[109.68450470000005,0.064354900000069],[109.68119350000006,0.064344400000039],[109.67711010000005,0.068213400000047],[109.67331990000008,0.056908400000054],[109.67090410000009,0.061450700000023],[109.67236760000009,0.070783900000038],[109.670358,0.07220540000003],[109.66685850000005,0.061411100000043],[109.66233190000008,0.066447500000038],[109.658612,0.06453440000007],[109.66011920000005,0.061456400000054],[109.66657910000004,0.057858300000021],[109.66746630000006,0.056062700000041],[109.65860830000008,0.059565700000064],[109.65621390000007,0.056476900000064],[109.65667090000005,0.050333900000055],[109.66434110000006,0.045166],[109.66442660000007,0.042269600000054],[109.66139950000007,0.041017400000044],[109.65912260000005,0.041701400000022],[109.65218720000007,0.051326],[109.649579,0.051133600000071],[109.65022590000007,0.043809500000066],[109.65675290000007,0.039835700000026],[109.65710570000005,0.036693500000069],[109.6529,0.036254400000075],[109.64338860000004,0.040414700000042],[109.64260770000004,0.044088100000067],[109.64587010000008,0.050677600000029],[109.64526080000007,0.051864],[109.63329710000005,0.049894400000028],[109.62905860000006,0.046117600000059],[109.63552370000008,0.042244500000038],[109.63547830000005,0.033408700000052],[109.63392730000004,0.032419100000027],[109.63059330000004,0.036654100000021],[109.62789010000006,0.037149700000043],[109.62631320000008,0.033905900000036],[109.62721430000005,0.025751200000059],[109.62460120000009,0.023904],[109.62090680000006,0.023633700000062],[109.61527250000006,0.026586],[109.614411,0.030110600000057],[109.61666760000008,0.035526600000026],[109.61448020000006,0.035872300000051],[109.61152240000007,0.032577900000035],[109.61489240000009,0.022317500000042],[109.61450120000006,0.020090900000071],[109.61284630000006,0.019549300000051],[109.60451160000008,0.035647],[109.59352910000007,0.024363500000049],[109.59235560000008,0.025767700000074],[109.59383,0.035436400000037],[109.59205470000006,0.039558600000021],[109.58534480000009,0.040401100000054],[109.58414120000003,0.035616900000036],[109.58212530000009,0.034714200000053],[109.57240650000006,0.038565600000027],[109.56783290000004,0.03441330000004],[109.56777270000003,0.032006200000069],[109.57694990000005,0.028485800000055],[109.57895890000009,0.021934],[109.58062080000008,0.021956400000022],[109.58477310000006,0.027763600000071],[109.58733070000005,0.026048500000059],[109.58916610000006,0.021896200000072],[109.589136,0.013110200000028],[109.587421,0.009198600000047],[109.58618730000006,0.009168500000044],[109.58218540000007,0.014825300000041],[109.57923670000008,0.015336800000057],[109.57030020000008,0.007303],[109.58113230000004,-0.000881299999946],[109.58086150000008,-0.004221199999961],[109.56758710000008,-0.002751699999976],[109.56532820000007,-0.009457099999963],[109.56211870000004,-0.013649099999952],[109.55747910000008,-0.005025699999976],[109.56247530000007,-0.000115599999958],[109.56205730000005,0.001938],[109.55679970000006,0.002262100000053],[109.55022720000005,-0.001312499999926],[109.54585540000005,0.000857800000063],[109.54317290000006,0.000533800000028],[109.54344780000008,-0.002509399999951],[109.54915390000008,-0.007183],[109.54855980000008,-0.0102948],[109.53108070000008,-0.016643899999963],[109.525493,-0.024306699999954],[109.513361,-0.024545899999964],[109.50289940000005,-0.031493299999966],[109.50135090000003,-0.029455699999971],[109.50082480000009,-0.023960899999963],[109.509438,-0.012691299999972],[109.51050790000005,-0.009337199999948],[109.507471,0.00317780000006],[109.50849510000006,0.00846910000007],[109.51395090000005,0.024619400000063],[109.52089290000004,0.034110700000042],[109.52200640000007,0.038263200000074],[109.52113860000009,0.042041100000063],[109.50801070000006,0.063346100000047],[109.50149070000003,0.069086200000072],[109.50009190000009,0.086958800000048],[109.49535010000005,0.090247],[109.49638840000006,0.092739],[109.50106110000007,0.091527600000063],[109.503207,0.092600600000026],[109.50310320000006,0.094815800000049],[109.50057650000008,0.096927100000073],[109.50081880000005,0.098865400000022],[109.50393390000005,0.106203100000073],[109.507004,0.108132],[109.50791430000004,0.113090900000032],[109.51134090000005,0.117902],[109.507845,0.124097600000027],[109.51030250000008,0.127662600000065],[109.50732580000005,0.131746900000053],[109.50666820000004,0.135831100000075],[109.50372620000007,0.136038800000051],[109.50126870000008,0.138842300000022],[109.50178790000007,0.14001920000004],[109.50739510000005,0.139119200000039],[109.50701430000004,0.145453300000042],[109.49960730000004,0.146145500000046],[109.50147640000006,0.149918200000059],[109.49984960000006,0.156598400000064],[109.49541930000004,0.160717200000022],[109.49493470000004,0.164905300000044],[109.492408,0.164455300000043],[109.49154270000008,0.162170900000035],[109.48780460000006,0.166497400000026],[109.48699390000007,0.175598700000023],[109.49009720000004,0.178200100000026],[109.48872910000006,0.180148700000075],[109.489807,0.182429],[109.48856320000004,0.185828700000059],[109.49076060000004,0.185040900000047],[109.48901930000005,0.192006100000071],[109.49295790000008,0.202371],[109.48925170000007,0.20636810000002],[109.48777550000005,0.214601600000037],[109.49129960000005,0.220240100000069],[109.49436760000003,0.220364400000051],[109.49588970000008,0.22207990000004],[109.49441820000004,0.229597200000057],[109.485269,0.234514300000058],[109.47385840000004,0.246722600000055],[109.45782020000007,0.249545800000021],[109.44699050000008,0.254760400000066],[109.43236970000004,0.256272900000056],[109.40564880000005,0.256272900000056],[109.39052380000004,0.254256300000065],[109.38362560000007,0.255051900000069],[109.37928870000007,0.252078100000062],[109.36392590000008,0.233722500000056],[109.35933460000007,0.224279],[109.35456270000009,0.218040200000075],[109.35141980000009,0.206554500000038],[109.35078220000008,0.13198],[109.35789450000004,0.122359500000073],[109.35924220000004,0.118109100000027],[109.35739460000008,0.101884200000029],[109.35898330000003,0.089103100000045],[109.36115050000006,0.08362470000003],[109.36614730000008,0.07856780000003],[109.37141490000005,0.068544200000019],[109.36930790000008,0.061560800000052],[109.36416060000005,0.054426900000067],[109.36355860000003,0.047383300000035],[109.36852520000008,0.03597510000003],[109.37075950000008,0.021081200000026],[109.36947170000008,0.009616],[109.37322460000007,-0.000463099999934],[109.37616170000007,-0.0026221],[109.37747870000004,-0.012149699999952],[109.37856260000007,-0.0124665],[109.37765350000006,-0.013733799999954],[109.37902880000007,-0.013581199999976],[109.37655110000009,-0.021477399999981],[109.38321060000004,-0.023018699999966],[109.38360090000003,-0.026480499999934],[109.38264910000004,-0.029613799999936],[109.37893260000004,-0.032107599999961],[109.37612980000006,-0.031318799999951],[109.37101280000007,-0.036115],[109.38412130000006,-0.052236599999958],[109.37317620000005,-0.061585399999956],[109.37249760000009,-0.062194799999929],[109.37951660000004,-0.069885299999953],[109.37091060000006,-0.061889599999972],[109.36608890000008,-0.0606079],[109.343689,-0.097412099999929],[109.34057070000006,-0.096068799999955],[109.31721790000006,-0.075191299999972],[109.31392760000006,-0.081974099999968],[109.30704480000009,-0.077117599999951],[109.31087030000003,-0.069557499999974],[109.30362810000008,-0.063107599999967],[109.30162490000004,-0.059283599999958],[109.28497130000005,-0.040900299999976],[109.282326,-0.043475399999977],[109.27209870000007,-0.027373699999941],[109.28078640000007,-0.017133399999977],[109.28536390000005,-0.016915899999958],[109.28706780000005,0.001623100000074],[109.276263,0.004800200000034],[109.26410940000005,0.010460700000067],[109.24092880000006,0.016264200000023],[109.21753210000008,0.018421200000034],[109.18115630000005,0.033310500000027],[109.17094260000005,0.034075100000052],[109.16909110000006,0.03078510000006],[109.16748670000004,0.006977600000027],[109.15952650000008,-0.030723499999965],[109.15892630000008,-0.039233299999978],[109.16013220000008,-0.046129199999939],[109.16881170000005,-0.053544699999975],[109.17690640000006,-0.063790599999948],[109.17559110000008,-0.070916899999929],[109.17847650000004,-0.080074799999977],[109.17974650000008,-0.082603899999924],[109.18358280000007,-0.084307799999976],[109.18807750000008,-0.091248099999973],[109.18239020000004,-0.096231899999964],[109.18172950000007,-0.102429099999938],[109.18311750000004,-0.115196899999944],[109.18861090000007,-0.127948299999957],[109.189605,-0.136415799999952],[109.18365320000004,-0.162223099999949],[109.18413380000004,-0.177365799999961],[109.18155150000007,-0.189633699999945],[109.182093,-0.197258799999929],[109.18517580000008,-0.202804499999957],[109.19085610000008,-0.208193199999926],[109.21362060000007,-0.222856499999978],[109.22423620000006,-0.240486699999963],[109.22928,-0.244934599999965],[109.25426480000004,-0.262782699999946],[109.26755710000003,-0.2661571],[109.28097940000004,-0.2771862],[109.28934820000006,-0.278707399999973],[109.28897850000004,-0.282561299999941],[109.27899580000008,-0.2799742],[109.26588170000008,-0.268924399999946],[109.25210870000006,-0.265290499999935],[109.22651580000007,-0.249487699999975],[109.219401,-0.242974599999968],[109.21059910000008,-0.227203199999963],[109.198471,-0.220641199999932],[109.17711860000009,-0.225604299999929],[109.172157,-0.231758299999967],[109.16174,-0.230455099999972],[109.15321770000008,-0.234404599999948],[109.14516290000006,-0.234769799999924],[109.13300680000003,-0.238238799999976],[109.12379090000007,-0.253021799999942],[109.12483580000008,-0.253227199999969],[109.13112630000006,-0.242723699999942],[109.12611530000004,-0.252747399999976],[109.11959470000005,-0.259671699999956],[109.10648710000004,-0.267656799999941],[109.102972,-0.267659],[109.08908340000005,-0.274222599999973],[109.08726760000008,-0.277851099999964],[109.087046,-0.285107],[109.08855680000005,-0.288867399999958],[109.10457290000005,-0.3063687],[109.10665010000008,-0.319050799999957],[109.11105270000007,-0.324121799999944],[109.11347480000006,-0.329844599999944],[109.114946,-0.338374499999929],[109.11390510000007,-0.343062799999927],[109.15006750000003,-0.357805699999972],[109.15881480000007,-0.3682419],[109.165131,-0.369667099999958],[109.16150130000005,-0.371958099999972],[109.14203960000003,-0.362757599999952],[109.125996,-0.361810799999944],[109.11880880000007,-0.359096399999942],[109.109844,-0.352790299999924],[109.10360530000008,-0.344843699999956],[109.10080510000006,-0.346812299999954],[109.098522,-0.352111599999944],[109.09809330000007,-0.365563],[109.10867530000007,-0.401496899999927],[109.11663030000005,-0.436770899999942],[109.11592790000009,-0.445260399999938],[109.11428680000006,-0.446931799999959],[109.112643,-0.466656099999966],[109.11253750000009,-0.487268299999926],[109.114159,-0.503177099999959],[109.11728020000004,-0.5168983],[109.12549410000008,-0.536019099999976],[109.14196680000003,-0.562015699999961],[109.14767790000008,-0.567812299999957],[109.15709520000007,-0.571458099999973],[109.16833620000006,-0.572538],[109.187794,-0.568045199999972],[109.19306560000007,-0.5634074],[109.19222990000009,-0.560087399999929],[109.18619190000004,-0.554427899999951],[109.18715730000008,-0.552495099999931],[109.19523340000006,-0.553488399999935],[109.20182120000004,-0.551402899999971],[109.20374780000009,-0.5545532],[109.21447350000005,-0.561109699999975],[109.21635890000005,-0.560964599999977],[109.21761450000008,-0.565313799999956],[109.22174860000007,-0.567197299999975],[109.22275470000005,-0.570740099999966],[109.22734450000007,-0.571695199999965],[109.22457350000008,-0.582665799999972],[109.22598610000006,-0.588202199999955],[109.236479,-0.595066699999961],[109.23988460000004,-0.596517099999971],[109.24384810000004,-0.596006],[109.24613810000005,-0.600960499999928],[109.25,-0.604690599999969],[109.25390490000007,-0.604866699999945],[109.25825510000004,-0.601178399999981],[109.257276,-0.596911],[109.253313,-0.5928],[109.25,-0.593956],[109.252202,-0.592356],[109.251721,-0.588578],[109.259058,-0.599273],[109.263144,-0.600999],[109.26911040000005,-0.598975199999927],[109.28528340000008,-0.597375599999964],[109.294813,-0.591807699999947],[109.31513890000008,-0.594178299999953],[109.32389960000006,-0.588049599999977],[109.322637,-0.584211],[109.32397,-0.573894],[109.333318,-0.572252],[109.334973,-0.57359],[109.334384,-0.576638],[109.325056,-0.584004],[109.324903,-0.585539],[109.327692,-0.588127],[109.34142980000007,-0.589632399999971],[109.35549120000007,-0.583614499999953],[109.37415380000004,-0.584617499999979],[109.38133410000006,-0.5902768],[109.38237690000005,-0.597295299999928],[109.38969210000005,-0.6100207],[109.39808180000006,-0.616766199999972],[109.40227160000006,-0.623229399999957],[109.41468490000005,-0.6310822],[109.44550820000006,-0.626201],[109.45317860000006,-0.622452599999974],[109.46119550000009,-0.625602299999969],[109.47541770000004,-0.616092599999945],[109.47678160000004,-0.616628799999944],[109.47693050000004,-0.620468],[109.48124730000006,-0.625358399999925],[109.48551390000006,-0.625825299999974],[109.49137470000005,-0.623654],[109.49496130000006,-0.624405799999977],[109.50318690000006,-0.6360603],[109.51187470000008,-0.635804099999973],[109.51694860000003,-0.642432699999972],[109.523196,-0.637700499999937],[109.52653760000004,-0.637313399999925],[109.52858210000005,-0.639178399999935],[109.52930050000003,-0.644093699999928],[109.54288120000007,-0.644573499999979],[109.54524530000003,-0.646876599999928],[109.546529,-0.651947399999926],[109.55305850000008,-0.649905599999954],[109.55730980000004,-0.654054099999939],[109.56232310000007,-0.650304499999947],[109.56638430000004,-0.650486699999931],[109.56896530000006,-0.6535942],[109.57300190000007,-0.649973699999975],[109.57472410000008,-0.649870699999951],[109.57747360000008,-0.652639399999941],[109.58445580000006,-0.650699499999973],[109.58615170000007,-0.652717799999948],[109.58746010000004,-0.662923899999953],[109.58344210000007,-0.677837099999977],[109.58721920000005,-0.682701699999939],[109.58773,-0.689493499999969],[109.59596730000004,-0.693610499999977],[109.60087560000005,-0.6914589],[109.60730750000005,-0.685089499999947],[109.61249390000006,-0.683133899999973],[109.61761750000005,-0.684781899999962],[109.61802120000004,-0.689649199999963],[109.62324050000007,-0.688390099999936],[109.63232420000008,-0.6888836],[109.63998250000009,-0.684126799999945],[109.64715370000005,-0.683383899999967],[109.651605,-0.674540299999933],[109.65712060000004,-0.670976199999927],[109.65851680000009,-0.677399099999946],[109.66720530000003,-0.682642899999962],[109.66983970000007,-0.689950299999964],[109.67219150000005,-0.690546899999958],[109.67537140000007,-0.694877499999961],[109.67423560000009,-0.697939499999961],[109.66744210000007,-0.700370899999939],[109.67911960000004,-0.701350899999966],[109.68494590000006,-0.705430099999944],[109.68890970000007,-0.7057126],[109.68780240000007,-0.709048399999972],[109.688823,-0.712055299999975],[109.68810480000008,-0.714235799999926],[109.69679910000008,-0.716094],[109.69621390000009,-0.720169399999975],[109.69185070000009,-0.727339499999971],[109.68928140000008,-0.725222699999961],[109.68499750000007,-0.727807899999959],[109.67698620000004,-0.7374471],[109.672172,-0.739464],[109.67559020000004,-0.742156899999941],[109.676521,-0.744885],[109.676223,-0.746033],[109.67133,-0.746098],[109.67118860000005,-0.7524261],[109.66955360000009,-0.754458099999965],[109.65758530000005,-0.750389899999959],[109.63168680000007,-0.751865499999951],[109.63387010000008,-0.780913599999963],[109.63782640000005,-0.786861699999974],[109.63538370000003,-0.796884699999964],[109.66202,-0.806714299999953],[109.66562020000003,-0.81143],[109.66822030000009,-0.820596499999965],[109.67947410000005,-0.829670199999953],[109.68277860000006,-0.829671299999973],[109.68751090000006,-0.825568699999963],[109.69287230000003,-0.824266199999954],[109.71322580000009,-0.829305699999964],[109.72104550000006,-0.849966],[109.72051130000006,-0.855106399999954],[109.71609610000007,-0.863031099999944],[109.717074,-0.867875199999958],[109.72100060000008,-0.870662099999947],[109.72570770000004,-0.871123199999943],[109.73208220000004,-0.862165299999958],[109.73971460000007,-0.859607199999971],[109.74524860000008,-0.861734199999944],[109.75011280000007,-0.8679548],[109.750448,-0.875235],[109.74654810000004,-0.879081],[109.73989050000006,-0.881156099999941],[109.73889110000005,-0.883749899999941],[109.75,-0.894255099999953],[109.754443,-0.894777099999942],[109.75682630000006,-0.889477299999953],[109.75960640000005,-0.887827499999958],[109.77166230000006,-0.885512199999937],[109.77785880000005,-0.876563899999951],[109.78033570000008,-0.875069499999938],[109.79698410000009,-0.871562599999947],[109.80321740000005,-0.867252299999961],[109.80280680000004,-0.862746699999946],[109.79669010000003,-0.8587819],[109.79461040000007,-0.853252599999962],[109.79634310000006,-0.846591399999966],[109.80046060000006,-0.842332],[109.81784470000008,-0.8403105],[109.824914,-0.832838099999947],[109.82818040000006,-0.831703699999935],[109.83834680000007,-0.837752499999965],[109.84266340000005,-0.838517299999978],[109.84501840000007,-0.837227899999959],[109.85358230000008,-0.824110799999971],[109.85627750000003,-0.823207599999932],[109.86018920000004,-0.824287699999957],[109.86434320000006,-0.8301257],[109.86687110000008,-0.830286899999976],[109.88019370000006,-0.823775299999966],[109.89386040000005,-0.8221469],[109.89259640000006,-0.808120899999949],[109.89421730000004,-0.802079499999934],[109.89797470000008,-0.800016599999935],[109.90695030000006,-0.799108799999942],[109.91550960000006,-0.789702],[109.92835180000009,-0.784458],[109.93206820000006,-0.781140299999947],[109.93151560000007,-0.769247699999937],[109.938699,-0.761788],[109.93980410000006,-0.758804199999929],[109.93965710000003,-0.757333599999924],[109.93226360000006,-0.752274199999931]]]]},"properties":{"shapeName":"Kubu Raya","shapeISO":"","shapeID":"22746128B54906915432490","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[110.77391520000003,-6.951181399999939],[110.77861020000006,-6.948655099999939],[110.78198240000006,-6.949458599999957],[110.78624540000004,-6.952841699999965],[110.78732170000006,-6.956389699999932],[110.79344180000004,-6.958892299999945],[110.80324340000004,-6.9717045],[110.80390930000004,-6.979570899999942],[110.80817810000008,-6.978123599999947],[110.81022080000008,-6.975787599999933],[110.81037260000005,-6.967553099999975],[110.80718310000009,-6.960281599999973],[110.80729270000006,-6.955477199999962],[110.80345990000006,-6.955424899999969],[110.80479410000004,-6.954419599999937],[110.804829,-6.949809899999934],[110.81013320000005,-6.952149899999938],[110.80934370000006,-6.945947199999978],[110.81157060000004,-6.945019199999933],[110.81143490000005,-6.939958599999954],[110.81465140000006,-6.940419099999929],[110.81676570000008,-6.938258],[110.82345840000005,-6.940529099999935],[110.82292380000007,-6.944289699999956],[110.82592390000008,-6.945894799999962],[110.83121110000008,-6.945456399999955],[110.83260540000003,-6.9426436],[110.83964380000003,-6.942920699999945],[110.83745780000004,-6.937195],[110.84412380000003,-6.935930699999972],[110.84812930000004,-6.931572399999936],[110.84510190000009,-6.920349499999929],[110.85127170000004,-6.908365299999957],[110.85555870000007,-6.903247299999975],[110.85279380000009,-6.900198599999953],[110.85285070000003,-6.8977311],[110.86160120000005,-6.897843199999954],[110.86471330000006,-6.892120399999953],[110.87377340000006,-6.894374899999946],[110.88274050000007,-6.892922799999951],[110.87810670000005,-6.867396],[110.88074750000004,-6.866297],[110.893198,-6.867544799999962],[110.92058560000004,-6.8670358],[110.92053840000005,-6.865269499999954],[110.92113760000007,-6.866838499999972],[110.937398,-6.855223199999955],[110.96215850000004,-6.844269899999972],[110.97680520000006,-6.8336348],[110.97415160000008,-6.822800599999937],[110.97427370000008,-6.8040585],[110.97054290000005,-6.802734799999939],[110.97119140000007,-6.792665899999974],[110.96785730000005,-6.782113599999946],[110.96493470000007,-6.779352],[110.96422910000007,-6.776656599999967],[110.96545410000004,-6.772840899999949],[110.96289830000006,-6.762856499999941],[110.96547320000008,-6.756856299999981],[110.96058650000003,-6.754978599999959],[110.94530490000005,-6.756],[110.944664,-6.752148099999943],[110.94078060000004,-6.749555599999951],[110.93865420000009,-6.740070899999978],[110.93441060000004,-6.739735399999972],[110.93191430000007,-6.737980299999947],[110.92579,-6.738681299999939],[110.92855990000004,-6.73603],[110.92450370000006,-6.732324799999958],[110.92596590000005,-6.716491499999961],[110.92871410000004,-6.715304499999945],[110.93000280000007,-6.719594899999947],[110.93202320000006,-6.720961199999977],[110.93203730000005,-6.723477799999955],[110.93515210000004,-6.721373899999946],[110.93415090000008,-6.7176092],[110.93800850000008,-6.709789099999966],[110.93450740000009,-6.708244899999954],[110.93362790000003,-6.706309699999963],[110.93473140000009,-6.697653899999978],[110.93281270000006,-6.69772],[110.93051150000008,-6.694186699999932],[110.92898690000004,-6.696037],[110.92781830000007,-6.693709399999932],[110.927391,-6.689477899999929],[110.92514040000009,-6.687626299999977],[110.92602540000007,-6.684937899999966],[110.92385860000007,-6.682704399999977],[110.92400360000005,-6.678272199999981],[110.92176050000006,-6.674083199999927],[110.91457370000006,-6.668984899999941],[110.908226,-6.657866],[110.90498350000007,-6.643705299999965],[110.89879610000008,-6.640356],[110.89782680000008,-6.638434099999927],[110.8957,-6.64023],[110.89357820000004,-6.640011699999945],[110.90029930000009,-6.632795899999962],[110.89615310000005,-6.632254299999943],[110.89753560000008,-6.630211699999961],[110.90281310000006,-6.627755499999978],[110.90219540000004,-6.623776899999939],[110.89581860000004,-6.624562199999957],[110.89597510000004,-6.621679099999938],[110.891528,-6.623480799999925],[110.884558,-6.621376199999929],[110.88413630000008,-6.626183],[110.88233370000006,-6.625581699999941],[110.88005250000003,-6.616267799999946],[110.87614690000004,-6.615605899999935],[110.87380310000009,-6.616686899999934],[110.87683850000008,-6.618354099999976],[110.87145920000006,-6.618308599999978],[110.87248010000008,-6.620772399999964],[110.86635030000008,-6.623294399999963],[110.86358510000008,-6.627079],[110.86216290000004,-6.623939899999925],[110.85980050000006,-6.623292599999957],[110.85919280000007,-6.647026299999936],[110.85606740000009,-6.649128399999938],[110.85110470000006,-6.648961499999928],[110.84716030000004,-6.651906],[110.84669230000009,-6.655741699999965],[110.84912870000005,-6.657787299999939],[110.85087580000004,-6.664536899999973],[110.84341430000006,-6.667918199999974],[110.83885960000003,-6.6807441],[110.83641050000006,-6.682679599999972],[110.83669280000004,-6.684738099999947],[110.83322140000007,-6.689067299999977],[110.83683660000008,-6.692397],[110.83556370000008,-6.693573],[110.83695220000004,-6.694461799999942],[110.83594510000006,-6.69663],[110.83909610000006,-6.699573],[110.83786010000006,-6.700760799999955],[110.83912660000004,-6.702826499999958],[110.83219910000008,-6.704240299999981],[110.82534030000005,-6.703706199999942],[110.82036590000007,-6.708916699999975],[110.82315830000005,-6.715966699999967],[110.827095,-6.720801799999947],[110.82399,-6.729932899999937],[110.82501980000006,-6.736041499999942],[110.82943730000005,-6.738604499999951],[110.83130650000004,-6.736478799999929],[110.836937,-6.737998499999946],[110.83049010000008,-6.75],[110.83020780000004,-6.754680099999973],[110.82827760000004,-6.755569],[110.81483080000004,-6.748939699999937],[110.80659960000008,-6.751542599999937],[110.79803470000007,-6.758565399999952],[110.79683690000007,-6.755817399999955],[110.79276210000006,-6.752786499999957],[110.79025210000009,-6.754853399999945],[110.79022730000008,-6.756782399999963],[110.78745970000006,-6.756412699999942],[110.78694140000005,-6.759040399999947],[110.78500690000004,-6.758929499999965],[110.78359320000004,-6.761379699999964],[110.78154270000005,-6.759832099999926],[110.78081070000007,-6.762168299999928],[110.77851230000005,-6.761832199999958],[110.76752840000006,-6.769763599999976],[110.76435850000007,-6.782920799999943],[110.76360540000007,-6.784765499999935],[110.762046,-6.784339599999953],[110.759152,-6.791549199999963],[110.76991080000005,-6.801603099999966],[110.777932,-6.802291],[110.78340880000007,-6.8069143],[110.78657970000006,-6.815462],[110.79023540000009,-6.816979],[110.79273080000007,-6.8205455],[110.79299690000005,-6.824021899999934],[110.79923610000009,-6.832046799999944],[110.799836,-6.838261199999977],[110.81314690000005,-6.835707],[110.81510650000007,-6.842125499999952],[110.82081140000008,-6.849704299999928],[110.82553680000007,-6.849000199999978],[110.83183260000004,-6.8442741],[110.83351910000005,-6.844809199999929],[110.83429990000008,-6.847070899999949],[110.838126,-6.846332099999927],[110.83894850000007,-6.847319099999936],[110.83738260000007,-6.8550484],[110.83302140000006,-6.856403799999953],[110.83269110000003,-6.859775199999945],[110.82573820000005,-6.8609651],[110.82454430000007,-6.863184899999965],[110.82614760000007,-6.866433599999937],[110.81849420000009,-6.8700901],[110.81462550000003,-6.873994699999969],[110.81384250000008,-6.877407],[110.808464,-6.8808231],[110.808803,-6.890649499999938],[110.807511,-6.894013799999925],[110.80115510000007,-6.898987299999931],[110.79538730000007,-6.899220899999932],[110.79180140000005,-6.908011899999963],[110.78598020000004,-6.911261],[110.78685,-6.914895],[110.78317260000006,-6.921651299999951],[110.78215020000005,-6.928027099999952],[110.77710830000007,-6.933622399999933],[110.77886140000004,-6.934939699999973],[110.78344660000005,-6.934687399999973],[110.78632420000008,-6.9370655],[110.78259210000004,-6.938521],[110.78460630000006,-6.942164899999966],[110.77941730000003,-6.940576799999974],[110.78083740000005,-6.943897099999958],[110.779074,-6.9462464],[110.77226610000008,-6.944549799999947],[110.77220480000005,-6.946091899999942],[110.77746880000007,-6.949088],[110.77391520000003,-6.951181399999939]]]},"properties":{"shapeName":"Kudus","shapeISO":"","shapeID":"22746128B9044073098865","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[110.23343610000006,-7.8150045],[110.23236210000005,-7.809974599999975],[110.22842530000008,-7.805863299999942],[110.23605080000004,-7.798041499999954],[110.23300670000003,-7.790886099999966],[110.22906350000005,-7.788802499999974],[110.22765970000006,-7.784415099999933],[110.22042640000006,-7.776729399999965],[110.22276550000004,-7.767539599999964],[110.22230820000004,-7.764751199999978],[110.21955910000008,-7.7633474],[110.222115,-7.759980399999961],[110.21868170000005,-7.758384899999953],[110.22040810000004,-7.754691],[110.21787,-7.7521041],[110.21954840000006,-7.7477768],[110.21614260000007,-7.742526599999962],[110.21648590000007,-7.738316599999962],[110.22109380000006,-7.735276099999965],[110.22507560000008,-7.723321299999952],[110.23186580000004,-7.722445799999946],[110.23154540000007,-7.717346499999962],[110.23292630000009,-7.713449799999978],[110.23871610000003,-7.713112799999976],[110.243721,-7.710190699999941],[110.25317380000007,-7.708491099999947],[110.25804270000003,-7.705306499999949],[110.26173490000008,-7.7048418],[110.26775360000005,-7.707287699999938],[110.27043490000005,-7.705739899999969],[110.27072910000004,-7.703005699999949],[110.26849270000008,-7.696896899999956],[110.26587680000006,-7.694050299999958],[110.26578520000004,-7.691018099999951],[110.26076510000007,-7.686051299999974],[110.26443290000009,-7.681492799999944],[110.26303860000007,-7.678976],[110.26583860000005,-7.6740742],[110.26519910000007,-7.668099799999936],[110.26721950000007,-7.664339],[110.26627350000007,-7.661986299999967],[110.26296240000005,-7.660933],[110.26461820000009,-7.655518799999982],[110.26377110000004,-7.652705199999957],[110.26611330000009,-7.649898],[110.26342770000008,-7.645752899999934],[110.25469210000006,-7.642083599999978],[110.25189970000008,-7.642385399999966],[110.25025940000006,-7.646078599999953],[110.24727630000007,-7.646505299999944],[110.24504090000005,-7.651154],[110.24037170000008,-7.654298299999937],[110.23332980000004,-7.650687699999935],[110.22086270000005,-7.649964199999943],[110.21296620000004,-7.647959599999979],[110.21370690000003,-7.6462746],[110.20531390000008,-7.651842399999964],[110.19665530000009,-7.648581499999977],[110.192481,-7.6447824],[110.17738390000005,-7.648151],[110.16563780000007,-7.648899399999948],[110.16283780000003,-7.646987699999954],[110.16154840000007,-7.648165499999948],[110.15992340000008,-7.645834699999966],[110.15142420000006,-7.646293399999934],[110.14867,-7.647089299999948],[110.14627440000004,-7.650055699999939],[110.14450720000008,-7.649651499999948],[110.14354640000005,-7.645204799999931],[110.141861,-7.644966699999941],[110.136504,-7.654306399999939],[110.13098790000004,-7.654487099999926],[110.13033180000008,-7.657718599999953],[110.12303810000009,-7.663537399999939],[110.12202340000005,-7.667747399999939],[110.11794160000005,-7.668333],[110.12150460000004,-7.674809399999958],[110.12688330000009,-7.677486399999964],[110.12671550000005,-7.682267099999933],[110.13159830000006,-7.683881699999972],[110.13538250000005,-7.6873722],[110.13795060000007,-7.693428799999936],[110.13093410000005,-7.701584799999978],[110.13478290000006,-7.705376799999954],[110.13252450000005,-7.716011],[110.13459970000008,-7.720458],[110.13178450000004,-7.725871599999948],[110.13230330000005,-7.740513299999975],[110.13038830000005,-7.740696899999932],[110.129839,-7.747179499999959],[110.12596130000009,-7.748864699999956],[110.12170410000004,-7.756142199999942],[110.113968,-7.764864499999931],[110.11448670000004,-7.770509799999957],[110.11211220000007,-7.774324499999977],[110.11270490000004,-7.776911],[110.10160180000008,-7.778859399999931],[110.09543260000004,-7.783178299999975],[110.09017720000008,-7.789302599999928],[110.08687260000005,-7.797869699999978],[110.08198990000005,-7.801705299999981],[110.08079090000007,-7.806651199999976],[110.07231020000006,-7.812186899999972],[110.06225710000007,-7.814352699999972],[110.06224490000005,-7.818934699999943],[110.05886950000007,-7.8239066],[110.05939920000009,-7.841306499999973],[110.05123130000004,-7.844702699999971],[110.05059510000007,-7.851770099999953],[110.04721270000005,-7.854481799999974],[110.04351650000007,-7.859826599999963],[110.04471810000007,-7.861598899999933],[110.04327020000005,-7.861524799999927],[110.04237760000007,-7.863408299999946],[110.042776,-7.867602],[110.04504620000006,-7.86959],[110.04193520000007,-7.880726299999935],[110.04239140000004,-7.884897699999954],[110.03471740000003,-7.885273699999971],[110.03271630000006,-7.888029099999926],[110.03098640000007,-7.896711099999948],[110.02766060000005,-7.891426799999977],[110.02385460000005,-7.8905513],[110.01965820000004,-7.891674099999932],[110.00470630000007,-7.884925799999962],[110.002989,-7.888020399999959],[110.067224,-7.912938],[110.140849,-7.945493],[110.178459,-7.965607],[110.20395330000008,-7.983122699999967],[110.20956990000008,-7.982309799999939],[110.21472690000007,-7.978641099999948],[110.22455370000006,-7.968048],[110.22691020000008,-7.962955399999942],[110.23169130000008,-7.959696],[110.24814330000004,-7.927747599999975],[110.25709020000005,-7.923400399999935],[110.26261350000004,-7.927922299999977],[110.269528,-7.927809199999956],[110.27391960000006,-7.909622199999944],[110.27433610000008,-7.900490199999979],[110.27265,-7.890906799999925],[110.25989140000007,-7.872982599999943],[110.25715240000005,-7.866517199999976],[110.23758450000008,-7.852923199999964],[110.23274730000009,-7.845526599999971],[110.22312680000005,-7.840152099999955],[110.22114420000008,-7.837015099999974],[110.22205980000007,-7.835051499999963],[110.22672130000007,-7.833850199999972],[110.23128380000009,-7.829357899999934],[110.23387780000007,-7.822447099999977],[110.23343610000006,-7.8150045]]]},"properties":{"shapeName":"Kulon Progo","shapeISO":"","shapeID":"22746128B52733203415664","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[108.75868230000003,-6.983647699999949],[108.75568390000007,-6.983897599999978],[108.75183110000006,-6.986998],[108.75093840000005,-6.985084399999948],[108.74823760000004,-6.986947399999963],[108.74698640000008,-6.985769699999935],[108.74399570000008,-6.987009899999975],[108.74188240000007,-6.990226599999971],[108.74268340000003,-7.000256399999955],[108.73658,-7.006275099999925],[108.726616,-6.998228899999958],[108.71747590000007,-6.994317],[108.72242740000007,-6.9891466],[108.72560130000005,-6.962715099999969],[108.71551520000008,-6.953389099999981],[108.71545410000004,-6.943839499999967],[108.70547220000009,-6.936241099999961],[108.699012,-6.935960399999942],[108.68647480000004,-6.930882399999973],[108.68318460000006,-6.931537099999957],[108.68312830000008,-6.929691899999966],[108.68148380000008,-6.9287398],[108.68546670000006,-6.926907799999981],[108.68285370000007,-6.923323499999981],[108.68179780000008,-6.925319499999944],[108.67789840000006,-6.925156699999945],[108.67824840000009,-6.9262593],[108.67484920000004,-6.927892099999951],[108.67488870000005,-6.929027],[108.67786410000008,-6.9295],[108.67583470000005,-6.932079199999976],[108.67239380000007,-6.931656299999929],[108.67145540000007,-6.933213599999931],[108.66930390000005,-6.933323299999927],[108.67081450000006,-6.935283099999936],[108.66908270000005,-6.937464099999943],[108.66636780000005,-6.934963399999958],[108.66523490000009,-6.937994299999957],[108.66605570000007,-6.940606199999934],[108.66298680000006,-6.94039],[108.65599830000008,-6.936700199999962],[108.65242010000009,-6.9315862],[108.66194920000004,-6.924978099999976],[108.66577920000009,-6.917182799999978],[108.66065980000008,-6.912867899999981],[108.65643320000004,-6.906833499999948],[108.65502760000004,-6.904388499999925],[108.65587880000004,-6.901822299999935],[108.65357,-6.90186],[108.652092,-6.904511799999966],[108.64721680000008,-6.905365399999937],[108.64536290000007,-6.908894],[108.63742070000006,-6.911192299999925],[108.611394,-6.9004883],[108.61196290000004,-6.896421199999963],[108.60842840000004,-6.897366099999942],[108.60838990000008,-6.899865],[108.60461430000004,-6.903593],[108.60237130000007,-6.901554],[108.601326,-6.903458],[108.59922030000007,-6.903827099999944],[108.599289,-6.901787199999944],[108.59585570000007,-6.899279499999977],[108.59338380000008,-6.899978499999975],[108.59304810000003,-6.898043499999972],[108.59149940000009,-6.899684299999933],[108.58940130000008,-6.898155599999939],[108.58659370000004,-6.899374899999941],[108.58102420000006,-6.896844299999941],[108.57892610000005,-6.898766899999941],[108.57919320000008,-6.895566299999928],[108.57667550000008,-6.895719399999962],[108.57669840000005,-6.893181699999957],[108.56607820000005,-6.890699299999937],[108.56100470000007,-6.885022499999934],[108.55968480000007,-6.886360499999967],[108.55452730000007,-6.885741099999962],[108.55463420000007,-6.882583499999953],[108.55342110000004,-6.881940699999973],[108.53371510000005,-6.880111399999976],[108.53680740000004,-6.873374499999954],[108.53648380000004,-6.8683933],[108.53404240000003,-6.868277399999954],[108.53349310000004,-6.8702749],[108.52803810000006,-6.870404099999973],[108.52666480000005,-6.868984099999977],[108.52716070000008,-6.871102199999939],[108.52320870000005,-6.870391199999972],[108.52467350000006,-6.857621599999959],[108.51799780000005,-6.859562299999936],[108.51152810000008,-6.8577823],[108.508072,-6.851958599999932],[108.51026160000004,-6.847971299999926],[108.508667,-6.840598],[108.51185610000005,-6.828585499999974],[108.50502780000005,-6.822901599999966],[108.50757210000006,-6.815209099999947],[108.51010530000008,-6.815521099999955],[108.51239780000009,-6.811824699999931],[108.51251230000008,-6.791162899999961],[108.50775910000004,-6.794343799999979],[108.50055990000004,-6.793893099999934],[108.49453710000006,-6.790888],[108.48924430000005,-6.792077899999981],[108.48600290000007,-6.789152299999955],[108.48419,-6.78989],[108.48428,-6.79157],[108.48194,-6.79298],[108.48234110000004,-6.795221499999968],[108.47828680000003,-6.799146099999973],[108.47477240000006,-6.796630299999947],[108.47488930000009,-6.789306299999964],[108.47100260000008,-6.787426599999947],[108.46845230000008,-6.795994499999949],[108.46927720000008,-6.798368499999981],[108.46518810000003,-6.797335399999952],[108.45594030000007,-6.799124099999972],[108.45726020000006,-6.796138199999973],[108.45496370000006,-6.792966299999932],[108.45378410000006,-6.784134799999947],[108.45074770000008,-6.784530199999949],[108.44976890000004,-6.7828358],[108.449437,-6.784048599999949],[108.43145760000004,-6.786421699999948],[108.42048680000005,-6.7839929],[108.41922010000008,-6.7819099],[108.41674950000004,-6.786064799999963],[108.41149690000009,-6.787498299999925],[108.40923330000004,-6.790167599999961],[108.412717,-6.792932399999927],[108.40978390000004,-6.797918299999935],[108.41276440000007,-6.799653199999966],[108.413273,-6.803040499999952],[108.41147670000004,-6.806020199999978],[108.408323,-6.805497499999944],[108.41055730000005,-6.809655799999973],[108.40732370000006,-6.815162099999952],[108.40775570000005,-6.819241099999942],[108.40559820000004,-6.822830199999942],[108.40446420000006,-6.822118799999942],[108.40098970000008,-6.829943599999979],[108.40471650000006,-6.845571199999938],[108.40126230000004,-6.854765399999962],[108.40689390000006,-6.86879],[108.40779880000008,-6.880792],[108.40756230000005,-6.893125899999973],[108.40236670000007,-6.914581699999928],[108.40148660000006,-6.934469799999931],[108.38865550000008,-6.947109299999966],[108.385727,-6.952483499999971],[108.38501170000006,-6.959014499999967],[108.38815310000007,-6.9681181],[108.38290410000008,-6.999503499999946],[108.38314060000005,-7.006653699999958],[108.39138280000009,-7.021168],[108.38585670000003,-7.042055],[108.39016730000009,-7.063157899999965],[108.38566440000005,-7.0702795],[108.38574140000009,-7.073000899999954],[108.39246350000008,-7.075706899999943],[108.39360050000005,-7.079181499999947],[108.39579030000004,-7.078539599999942],[108.40050670000005,-7.080367499999966],[108.40182830000003,-7.082122699999957],[108.40148010000007,-7.084843799999931],[108.40514050000007,-7.084547699999973],[108.40700460000005,-7.087805199999934],[108.41698560000003,-7.090139099999931],[108.41325560000007,-7.0943478],[108.41554150000007,-7.094510499999956],[108.41652840000006,-7.09258],[108.41875890000006,-7.092204599999945],[108.42121280000003,-7.094263599999977],[108.42661280000004,-7.095531499999936],[108.42902240000006,-7.098539499999958],[108.42608650000005,-7.100649199999964],[108.42585850000006,-7.102388299999973],[108.43058020000007,-7.102779199999929],[108.43127610000005,-7.104825699999935],[108.43332670000007,-7.104988799999944],[108.43345340000008,-7.1067],[108.43557,-7.106626799999958],[108.43626810000006,-7.108393799999931],[108.43881010000007,-7.107725699999946],[108.43639960000007,-7.109940499999936],[108.43698420000004,-7.1126097],[108.44243310000007,-7.118848499999956],[108.44764010000006,-7.119006],[108.45013590000008,-7.11739],[108.45431430000008,-7.119366599999978],[108.45713360000008,-7.117932099999962],[108.461149,-7.120746799999949],[108.46382910000005,-7.119337899999948],[108.46814390000009,-7.120919599999979],[108.46825230000007,-7.122478499999943],[108.47252220000007,-7.12354],[108.47463580000004,-7.119918899999959],[108.47735260000007,-7.122436299999947],[108.47936780000003,-7.119010799999955],[108.48141870000006,-7.121642099999974],[108.48117950000005,-7.12378],[108.48892440000009,-7.126463599999965],[108.48972980000008,-7.125011799999982],[108.49148230000009,-7.126110599999947],[108.49351340000004,-7.124797899999976],[108.49498090000009,-7.127455699999928],[108.493666,-7.129991599999926],[108.49528670000007,-7.131118499999957],[108.499105,-7.128969899999959],[108.501309,-7.132392899999957],[108.50388550000008,-7.128506],[108.50364340000004,-7.130943499999944],[108.50514570000007,-7.132661299999938],[108.50855020000006,-7.129958],[108.50877750000006,-7.134978899999965],[108.51066880000008,-7.136132399999951],[108.51173960000006,-7.141107199999965],[108.51547240000008,-7.145482399999935],[108.51345330000004,-7.154817199999968],[108.51034330000005,-7.156207199999926],[108.50886630000008,-7.158940899999948],[108.509519,-7.1608],[108.51234860000005,-7.161538699999937],[108.51353660000007,-7.159543],[108.519045,-7.1605555],[108.51605370000004,-7.164321399999949],[108.51780320000006,-7.165404099999932],[108.52127080000008,-7.163835899999981],[108.52645970000009,-7.173738499999956],[108.521164,-7.172600099999954],[108.52039590000004,-7.174367],[108.52407150000005,-7.177225299999975],[108.52909520000009,-7.178112499999941],[108.52598780000005,-7.17852],[108.52780630000007,-7.181989299999941],[108.53308680000004,-7.1845756],[108.53625460000006,-7.184257599999967],[108.54232720000005,-7.186403699999971],[108.54062990000006,-7.189696199999958],[108.55508420000007,-7.190424299999961],[108.55547820000004,-7.193210099999931],[108.55773060000007,-7.192779099999939],[108.55765540000004,-7.191696099999945],[108.56095430000005,-7.191134699999964],[108.56018070000005,-7.1858822],[108.56573490000005,-7.180653899999925],[108.56220250000007,-7.171400899999981],[108.56775670000007,-7.165478599999972],[108.57078560000008,-7.164172099999973],[108.57475290000008,-7.165123799999947],[108.58075730000007,-7.164036599999974],[108.58336130000004,-7.157349699999941],[108.58879210000003,-7.155062499999929],[108.59172060000009,-7.150393799999961],[108.60063180000009,-7.149901299999954],[108.603447,-7.151018],[108.60976410000006,-7.149753],[108.61460880000004,-7.147034499999961],[108.61930090000004,-7.141106499999978],[108.625,-7.139707],[108.62834930000008,-7.141801199999975],[108.63494090000006,-7.138725299999976],[108.63921360000006,-7.142244199999936],[108.64576720000008,-7.142335299999957],[108.65100870000003,-7.1495913],[108.65864870000007,-7.155612699999949],[108.66261120000007,-7.154654299999947],[108.66705330000008,-7.1567291],[108.67243960000008,-7.155819799999961],[108.67490390000006,-7.156739099999982],[108.68105320000006,-7.1526054],[108.69310220000006,-7.151923199999942],[108.69819790000008,-7.150365099999931],[108.713768,-7.134953899999971],[108.71634680000005,-7.1280188],[108.72349550000007,-7.123797299999978],[108.723418,-7.118677299999945],[108.72599030000003,-7.115273399999978],[108.73305520000008,-7.113895799999966],[108.73995980000007,-7.114849499999934],[108.74703220000004,-7.111582699999929],[108.75397670000007,-7.1150133],[108.76662450000003,-7.113634499999932],[108.77091220000005,-7.111848699999939],[108.77617650000008,-7.0971593],[108.77858740000005,-7.094537199999934],[108.774376,-7.089336299999957],[108.77438360000008,-7.083459299999959],[108.77631380000008,-7.081640199999981],[108.77828220000004,-7.075620099999981],[108.78185280000008,-7.073243099999956],[108.78225280000004,-7.069682399999976],[108.78417590000004,-7.069527],[108.78304290000005,-7.064466399999958],[108.78480530000007,-7.061196],[108.78343970000009,-7.060625199999947],[108.78546910000006,-7.057275499999946],[108.78234870000006,-7.053705599999944],[108.77966310000005,-7.045728099999963],[108.77642060000005,-7.043748299999947],[108.77548220000006,-7.040386099999978],[108.77691270000008,-7.039282899999932],[108.77470020000004,-7.037475],[108.77465060000009,-7.035075099999972],[108.77825170000006,-7.032782499999939],[108.77777870000006,-7.030266199999971],[108.77967080000008,-7.026253399999973],[108.78742990000006,-7.026588299999958],[108.79068,-7.024861699999974],[108.788971,-7.014614],[108.79063420000006,-7.012296099999958],[108.78669740000004,-7.007042799999965],[108.784317,-7.007295299999953],[108.78321840000007,-7.004920399999946],[108.78150940000006,-7.004614299999957],[108.78321080000006,-7.000000399999976],[108.78068550000006,-6.998794],[108.78054050000009,-6.9959268],[108.77815250000003,-6.993358499999943],[108.77407080000006,-6.992231799999956],[108.76989750000007,-6.993871099999978],[108.76615150000003,-6.990262899999948],[108.75994880000007,-6.987616],[108.75868230000003,-6.983647699999949]]]},"properties":{"shapeName":"Kuningan","shapeISO":"","shapeID":"22746128B43835850280333","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[123.28694260000009,-10.308172599999978],[123.285805,-10.307266199999958],[123.28000470000006,-10.309278399999926],[123.27799460000006,-10.308233],[123.27184840000007,-10.314162199999942],[123.27038520000008,-10.313797],[123.27011230000005,-10.318300299999976],[123.27425970000002,-10.319852],[123.2772797,-10.317668099999935],[123.27731790000007,-10.31551049999996],[123.27995,-10.314298299999962],[123.27894350000008,-10.312277],[123.28530730000011,-10.310449199999937],[123.28694260000009,-10.308172599999978]]],[[[123.43275820000008,-10.232495899999947],[123.43084110000007,-10.232735799999944],[123.42684230000009,-10.238219199999946],[123.42857830000003,-10.246124399999928],[123.43265480000002,-10.247418899999957],[123.43780970000012,-10.2454538],[123.440668,-10.240562599999976],[123.43812220000007,-10.235800599999948],[123.43275820000008,-10.232495899999947]]],[[[123.45254520000003,-10.114646899999968],[123.44864650000011,-10.114339799999925],[123.43509670000003,-10.12281319999994],[123.4261398000001,-10.126661299999967],[123.414238,-10.1301222],[123.40980530000002,-10.129102699999976],[123.40354160000004,-10.132532099999935],[123.40060430000005,-10.13197139999994],[123.3963089,-10.134181],[123.386322,-10.170416799999941],[123.37895970000011,-10.180134799999962],[123.36791990000006,-10.203731499999947],[123.34901430000002,-10.2269106],[123.34363560000008,-10.227043199999969],[123.33173370000009,-10.232147199999929],[123.3203506000001,-10.239917799999944],[123.31840510000006,-10.247395499999982],[123.3166351000001,-10.24798869999995],[123.30091860000005,-10.271240199999966],[123.30118560000005,-10.273783699999967],[123.30569460000004,-10.2770777],[123.3093338000001,-10.282133099999953],[123.30871580000007,-10.286750799999936],[123.30651860000012,-10.289142599999934],[123.30697630000009,-10.296357199999932],[123.3049698000001,-10.300828],[123.30624390000003,-10.305534399999942],[123.30542760000003,-10.311787599999946],[123.30926510000006,-10.317167299999937],[123.31076810000002,-10.323310799999945],[123.3169861,-10.334549899999956],[123.32157140000004,-10.33885],[123.32572170000003,-10.339587199999926],[123.32913970000004,-10.3378496],[123.33188630000006,-10.330405199999973],[123.3315735000001,-10.327511799999968],[123.33600620000004,-10.317061399999943],[123.3467865,-10.3052025],[123.35490420000008,-10.306688299999962],[123.3585663,-10.304965],[123.36676030000001,-10.304509199999927],[123.37631990000011,-10.308004399999959],[123.37932590000003,-10.31145289999995],[123.38011170000004,-10.320923799999946],[123.37897490000012,-10.3236503],[123.38208010000005,-10.329130199999952],[123.38218690000008,-10.330925899999954],[123.38049320000005,-10.331753699999979],[123.38298040000006,-10.335544599999935],[123.38243100000011,-10.3372097],[123.3884964,-10.3361273],[123.40101620000007,-10.339672099999973],[123.4086761000001,-10.335045799999932],[123.4106369000001,-10.332475699999975],[123.4106293000001,-10.327553699999953],[123.41178130000003,-10.328800199999932],[123.41365050000002,-10.324645],[123.41490940000006,-10.318203899999958],[123.41380310000011,-10.3153391],[123.41495510000004,-10.313901],[123.41259,-10.311268799999937],[123.41175840000005,-10.313838],[123.4095612000001,-10.313495599999953],[123.39965060000009,-10.307144199999925],[123.39597320000007,-10.300035499999979],[123.39543910000009,-10.292875299999935],[123.39161680000007,-10.293422699999951],[123.3911743000001,-10.292389899999932],[123.39553070000011,-10.292189599999972],[123.3967133000001,-10.290063799999928],[123.40309910000008,-10.294640499999957],[123.40926360000003,-10.29673],[123.41094210000006,-10.296339],[123.41190340000003,-10.293285399999945],[123.41991430000007,-10.29614259999994],[123.42023470000004,-10.290507299999945],[123.41412350000007,-10.279033699999957],[123.412384,-10.271121],[123.40895850000004,-10.270383799999934],[123.40737150000007,-10.268115099999932],[123.40976710000007,-10.2661858],[123.409935,-10.268497499999967],[123.41292570000007,-10.2699766],[123.41656490000003,-10.2654591],[123.41854090000004,-10.259726499999942],[123.41717530000005,-10.2558746],[123.41153720000011,-10.2524729],[123.41155250000008,-10.251339899999948],[123.41503910000006,-10.251892099999964],[123.41609950000009,-10.249892199999977],[123.41357420000008,-10.24908449999998],[123.41550450000011,-10.246944399999961],[123.41260530000011,-10.244038599999953],[123.41202540000006,-10.241034499999955],[123.40953060000004,-10.239204399999949],[123.40777590000005,-10.241079299999967],[123.40597530000002,-10.240243],[123.40561680000008,-10.236524599999939],[123.40203860000008,-10.238048499999934],[123.39880370000003,-10.237340899999936],[123.39365390000012,-10.231102],[123.39278410000009,-10.223770199999933],[123.39012910000008,-10.226131399999929],[123.395279,-10.2162876],[123.39431760000002,-10.212998399999947],[123.39026640000009,-10.209422099999927],[123.39089960000001,-10.207445099999973],[123.39257810000004,-10.20675749999998],[123.39160920000006,-10.208983399999966],[123.39385990000005,-10.209214199999963],[123.39629360000004,-10.204043399999932],[123.39894870000012,-10.202848399999937],[123.40236660000005,-10.206689799999936],[123.41024020000009,-10.210192699999936],[123.41541290000009,-10.210485399999982],[123.42095190000009,-10.208197599999949],[123.42176820000009,-10.213941599999941],[123.41950230000009,-10.2177134],[123.41718290000006,-10.228752099999951],[123.42278290000002,-10.230803499999979],[123.42808530000002,-10.230372399999965],[123.43177030000004,-10.228551899999957],[123.44659420000005,-10.215083099999958],[123.4486313000001,-10.217701899999952],[123.45252230000006,-10.21759419999995],[123.45439150000004,-10.209597599999938],[123.45233150000001,-10.205012299999964],[123.45502470000008,-10.203974699999947],[123.45708470000011,-10.199101499999927],[123.45910650000008,-10.200456599999939],[123.46125790000008,-10.195612],[123.46418760000006,-10.194078499999932],[123.46502690000011,-10.195211399999948],[123.46541600000012,-10.193919199999925],[123.46814730000006,-10.195360199999982],[123.48114010000006,-10.186707499999955],[123.48327640000002,-10.184051499999953],[123.48242190000008,-10.182349199999976],[123.50235750000002,-10.182751699999926],[123.50552370000003,-10.178187399999956],[123.50663760000009,-10.173677399999974],[123.50601960000006,-10.163835499999948],[123.500473,-10.157699599999944],[123.49374390000003,-10.1564112],[123.48924250000005,-10.153651199999956],[123.4862518000001,-10.15837289999996],[123.47984310000004,-10.164010099999928],[123.47640990000002,-10.164783499999942],[123.46892550000007,-10.161777499999971],[123.46678920000011,-10.157990499999926],[123.46817780000003,-10.1531172],[123.46427920000008,-10.1449461],[123.46487430000002,-10.13780209999993],[123.46344760000011,-10.131136899999944],[123.45889280000006,-10.121680199999957],[123.45254520000003,-10.114646899999968]]],[[[123.55678940000007,-10.085324399999934],[123.55346520000012,-10.085802499999943],[123.5528177000001,-10.08870029999997],[123.5582654000001,-10.094963199999938],[123.55981830000007,-10.088228499999957],[123.55678940000007,-10.085324399999934]]],[[[123.52833790000011,-10.209876099999974],[123.52795590000005,-10.214408],[123.5255165000001,-10.217647399999976],[123.52336130000003,-10.217260799999963],[123.5231966,-10.215746399999944],[123.5228763,-10.218179499999962],[123.51956180000002,-10.21928689999993],[123.51863860000003,-10.21760269999993],[123.5185699000001,-10.219725599999947],[123.48864750000007,-10.22439],[123.4891434000001,-10.248860399999955],[123.50101470000004,-10.27382849999998],[123.49773410000012,-10.276272799999958],[123.49809260000006,-10.279903399999966],[123.49662780000006,-10.282885499999963],[123.49047850000011,-10.288844099999949],[123.49213410000004,-10.29228969999997],[123.49437720000003,-10.293491399999937],[123.49173740000003,-10.293226199999935],[123.49237820000008,-10.294443099999967],[123.491188,-10.294085499999937],[123.48969270000009,-10.296002399999963],[123.487915,-10.294475599999942],[123.485527,-10.296231299999931],[123.48525240000004,-10.297678],[123.48722840000005,-10.298566799999946],[123.48165130000007,-10.303549799999928],[123.48077390000003,-10.308506],[123.47641750000003,-10.316728599999976],[123.47000880000007,-10.321311],[123.46735380000007,-10.321603799999934],[123.462883,-10.32661909999996],[123.46218870000007,-10.331303599999956],[123.46495060000007,-10.339193299999977],[123.45548250000002,-10.349165],[123.4573593,-10.356512099999975],[123.46731570000009,-10.36040879999996],[123.4859772000001,-10.355761499999971],[123.49242470000002,-10.352006599999982],[123.49232510000002,-10.3482918],[123.49429770000006,-10.350146299999949],[123.49916930000006,-10.346423799999968],[123.5144481000001,-10.340270199999964],[123.52983030000007,-10.3302066],[123.54593000000011,-10.32765429999995],[123.54926220000004,-10.331100699999979],[123.55415890000006,-10.332960899999932],[123.56493380000006,-10.332191499999965],[123.56917570000007,-10.33319279999995],[123.57055660000003,-10.338962599999945],[123.57539370000006,-10.344343199999969],[123.58094790000007,-10.34565729999997],[123.58436580000011,-10.3449783],[123.59437560000003,-10.349171599999977],[123.59973150000008,-10.353575699999965],[123.60665890000007,-10.367715799999928],[123.61139680000008,-10.370101],[123.61924750000003,-10.36063],[123.62639620000004,-10.355921699999953],[123.63182830000005,-10.354410199999961],[123.63227840000002,-10.355946599999982],[123.63353730000006,-10.355484],[123.63378140000009,-10.357766099999935],[123.63723750000008,-10.3549137],[123.64691160000007,-10.351562499999943],[123.65831760000003,-10.349494899999968],[123.68075560000011,-10.353636699999981],[123.68232730000011,-10.354611399999953],[123.68233490000011,-10.356985099999974],[123.68442530000004,-10.3562393],[123.69245910000006,-10.361876499999937],[123.69738010000003,-10.361141199999963],[123.69973760000005,-10.363087599999972],[123.69967650000001,-10.364737499999933],[123.70363620000012,-10.366306299999962],[123.70866400000011,-10.364174799999944],[123.71466060000012,-10.364610699999957],[123.7175827000001,-10.362405799999976],[123.72248080000008,-10.364753699999937],[123.72370150000006,-10.362438199999929],[123.726738,-10.3606167],[123.72981260000006,-10.36135669999993],[123.7319946,-10.358815199999981],[123.74987030000011,-10.354836499999976],[123.75257110000007,-10.355639499999938],[123.7556839,-10.351654],[123.76582340000004,-10.347802099999967],[123.778183,-10.349738099999968],[123.7794113000001,-10.351624499999957],[123.78266140000005,-10.352570499999956],[123.78421780000008,-10.351804699999946],[123.7886582000001,-10.35581869999993],[123.79303740000012,-10.355384799999968],[123.7946472000001,-10.353533699999957],[123.79826350000008,-10.355272299999967],[123.79947660000005,-10.353741699999944],[123.80316160000007,-10.353097899999966],[123.8036575000001,-10.350448599999936],[123.81181340000012,-10.348963699999956],[123.82122040000002,-10.342884099999935],[123.83606720000012,-10.339747399999965],[123.85262300000011,-10.333929099999978],[123.86069490000011,-10.334364899999969],[123.86448670000004,-10.332748399999957],[123.87606050000011,-10.318320299999925],[123.8881225,-10.310288399999934],[123.8991089000001,-10.304939299999944],[123.91020970000011,-10.30187419999993],[123.91535190000002,-10.297565499999962],[123.9311752000001,-10.294217099999969],[123.94242090000012,-10.297032299999955],[123.94636530000002,-10.293649699999946],[123.94872280000004,-10.284389499999975],[123.96234130000005,-10.2768345],[123.9758438,-10.274003599999958],[124.00333960000012,-10.277080699999942],[124.01835320000009,-10.273448499999972],[124.02325750000011,-10.268066699999963],[124.02277720000006,-10.265865399999939],[124.02586610000003,-10.262574899999947],[124.02718350000009,-10.254241],[124.03265380000005,-10.2475529],[124.06191250000006,-10.229894599999966],[124.0733795000001,-10.226455699999974],[124.07924650000007,-10.218922599999928],[124.08258980000005,-10.217806199999927],[124.0814276000001,-10.215691299999946],[124.0825814000001,-10.214117399999964],[124.07895830000007,-10.210115499999972],[124.08039860000008,-10.204471599999977],[124.0964629,-10.191926299999977],[124.099286,-10.187417599999947],[124.09920120000004,-10.183387299999936],[124.10149380000007,-10.179396599999961],[124.10628510000004,-10.180413299999941],[124.10732270000005,-10.177611399999932],[124.13934330000006,-10.161421799999971],[124.14945980000005,-10.158426299999974],[124.170723,-10.155522299999973],[124.18724820000011,-10.157042499999932],[124.20594790000007,-10.163166099999955],[124.20886990000008,-10.161240599999928],[124.21988680000004,-10.162870399999974],[124.22743990000004,-10.154854799999953],[124.22587580000004,-10.144702],[124.22377780000011,-10.142903299999944],[124.21905520000007,-10.146212599999956],[124.21511840000005,-10.143470799999932],[124.21417240000005,-10.137666699999954],[124.22005460000003,-10.137790699999925],[124.22183990000008,-10.1359634],[124.21781160000012,-10.12984659999995],[124.2149505000001,-10.129932399999973],[124.20963290000009,-10.133528699999943],[124.206337,-10.132627499999955],[124.2059097,-10.1306906],[124.20866390000003,-10.129214299999944],[124.21523290000005,-10.118435899999952],[124.21222690000002,-10.1160231],[124.21141820000003,-10.111269],[124.20794680000006,-10.109615299999973],[124.20191950000003,-10.109667799999954],[124.20265960000006,-10.103120799999942],[124.20018010000001,-10.102372199999934],[124.1990128000001,-10.100134799999978],[124.203453,-10.093544],[124.208519,-10.089647299999967],[124.20850370000005,-10.086496299999965],[124.19644930000004,-10.07896519999997],[124.18769840000004,-10.069543799999963],[124.18162540000003,-10.058173199999942],[124.17641450000008,-10.055556299999978],[124.1636734000001,-10.0435419],[124.15657040000008,-10.042901099999938],[124.1512375000001,-10.040494899999942],[124.1425858,-10.023497599999928],[124.142601,-10.020134],[124.14507290000006,-10.017216699999949],[124.15146640000012,-10.017588599999954],[124.16286470000011,-10.022003199999972],[124.16475680000008,-10.021117199999935],[124.16490170000009,-10.017784099999972],[124.1557236000001,-10.01121139999998],[124.14941410000006,-10.008597399999928],[124.14830250000011,-9.999778099999958],[124.14568230000009,-9.994746599999928],[124.13694,-9.986316699999975],[124.12863920000007,-9.985453599999971],[124.12500000000011,-9.975980799999945],[124.11648560000003,-9.973422099999937],[124.10829930000011,-9.975145299999951],[124.10397340000009,-9.972996699999953],[124.10046390000002,-9.976179099999968],[124.09735870000009,-9.976533899999936],[124.0957413000001,-9.975580199999968],[124.09471130000009,-9.971282],[124.08822630000009,-9.967960399999981],[124.08530420000011,-9.964184699999976],[124.08668520000003,-9.960665699999936],[124.08480830000008,-9.956395199999974],[124.08756260000007,-9.948446299999944],[124.08594510000012,-9.932302499999935],[124.0816651,-9.9277935],[124.081398,-9.923272099999963],[124.08431240000004,-9.902590799999928],[124.09013370000002,-9.893723499999965],[124.0919037000001,-9.880419699999948],[124.08927920000008,-9.874028199999941],[124.09116360000007,-9.86131949999998],[124.08524320000004,-9.844125799999972],[124.086113,-9.8363266],[124.08491520000007,-9.829876899999931],[124.09146880000003,-9.818854299999941],[124.09394070000008,-9.808859799999937],[124.09161380000012,-9.800057399999957],[124.083725,-9.793019299999969],[124.07595060000006,-9.770958899999926],[124.0683441000001,-9.761929499999951],[124.0672684000001,-9.7586851],[124.069252,-9.750848799999972],[124.07167820000006,-9.747270599999979],[124.078392,-9.744448699999964],[124.087471,-9.735912299999939],[124.08733370000004,-9.7314825],[124.09123230000012,-9.718354199999965],[124.09004030000006,-9.713292399999943],[124.08586,-9.7127],[124.08466480000004,-9.709880899999973],[124.08533080000007,-9.707877499999938],[124.08997410000006,-9.704495699999939],[124.09237960000007,-9.697258599999941],[124.09107010000002,-9.693337399999962],[124.0796385000001,-9.691563299999927],[124.07873350000011,-9.688216499999953],[124.069911,-9.679855399999951],[124.06770150000011,-9.675444599999935],[124.05816560000005,-9.667920199999969],[124.05579030000001,-9.663279699999975],[124.057339,-9.660333299999934],[124.05469830000004,-9.657929899999942],[124.0535794000001,-9.652143499999966],[124.05354910000005,-9.647455099999945],[124.060134,-9.6419832],[124.06825450000008,-9.636458699999935],[124.07358090000002,-9.63567779999994],[124.08551750000004,-9.629320899999925],[124.08949280000002,-9.620077099999946],[124.0892563000001,-9.610076],[124.0863647000001,-9.607568699999945],[124.08673090000002,-9.603204699999935],[124.082283,-9.596067399999981],[124.08153530000004,-9.59234719999995],[124.0786438,-9.589642499999968],[124.07842260000007,-9.586087199999952],[124.08496090000006,-9.581698399999937],[124.09515380000005,-9.580325099999982],[124.10118870000008,-9.57314969999993],[124.1112518000001,-9.567206399999975],[124.1163788,-9.5564003],[124.12018580000006,-9.552840199999935],[124.13771820000011,-9.557033499999932],[124.14132690000008,-9.562242499999968],[124.14704130000007,-9.5650654],[124.15165710000008,-9.561425199999974],[124.15212250000002,-9.556970599999943],[124.15750880000007,-9.55708119999997],[124.15814210000008,-9.552185099999974],[124.154007,-9.542472799999928],[124.15505980000012,-9.539197],[124.15349580000009,-9.536221499999954],[124.14614110000002,-9.532840699999952],[124.14303590000009,-9.528925899999933],[124.14310450000005,-9.520294199999967],[124.13913730000002,-9.510173799999961],[124.13723760000005,-9.510120399999948],[124.13514710000004,-9.507363299999952],[124.1337357000001,-9.500659],[124.129425,-9.49842549999994],[124.12918850000005,-9.494708],[124.12678530000005,-9.49261569999993],[124.12399290000008,-9.49324889999997],[124.11701970000001,-9.484322499999962],[124.1175766,-9.478671099999929],[124.12081150000006,-9.477156599999944],[124.12181090000001,-9.47238539999995],[124.13184360000002,-9.477059399999973],[124.13952640000002,-9.477602],[124.14247130000001,-9.475486699999976],[124.14571380000007,-9.476291599999968],[124.15507510000009,-9.483573899999953],[124.1553421000001,-9.487962699999969],[124.1598206000001,-9.488701799999944],[124.16160580000007,-9.491601899999978],[124.17006680000009,-9.49554919999997],[124.17136380000011,-9.500355699999943],[124.17263790000004,-9.500207899999964],[124.17410280000001,-9.5030518],[124.178154,-9.50407219999994],[124.180809,-9.5079718],[124.18460850000008,-9.508821499999954],[124.18560030000003,-9.511410699999942],[124.19038390000003,-9.509695],[124.19301610000002,-9.5115108],[124.19544220000012,-9.504859899999929],[124.19040680000012,-9.493169799999976],[124.1898804000001,-9.4831667],[124.18866730000002,-9.480890299999942],[124.18535610000004,-9.480470699999955],[124.18337250000002,-9.47470379999993],[124.17853550000007,-9.474827799999957],[124.16661070000009,-9.455765699999972],[124.162262,-9.452081699999951],[124.15467070000011,-9.448689499999944],[124.14749150000011,-9.453145],[124.14510350000012,-9.45288949999997],[124.14276120000011,-9.450643499999956],[124.14455410000005,-9.447958899999946],[124.14392850000002,-9.44555379999997],[124.14158630000009,-9.443966799999941],[124.1398163,-9.445640599999933],[124.13990780000006,-9.443249699999967],[124.13612360000002,-9.442625],[124.1342926000001,-9.438443199999938],[124.13285070000006,-9.440270399999974],[124.12994380000009,-9.439621899999963],[124.12420650000001,-9.437008799999944],[124.1242218000001,-9.433559399999979],[124.1219559000001,-9.4338093],[124.11753080000005,-9.430725099999961],[124.1111145000001,-9.430354099999931],[124.10851290000005,-9.428285599999981],[124.10601810000003,-9.421359099999961],[124.1006546000001,-9.417942099999948],[124.09538270000007,-9.417348899999979],[124.09311680000008,-9.4144773],[124.09323880000011,-9.409268399999974],[124.09590850000006,-9.406016199999954],[124.08831980000002,-9.394861799999944],[124.07670640000003,-9.382008199999973],[124.07018590000007,-9.369670299999939],[124.06433230000005,-9.367381899999941],[124.0622383000001,-9.360940199999959],[124.0533885000001,-9.354066399999965],[124.05302890000007,-9.351824699999952],[124.049319,-9.350895199999968],[124.04546390000007,-9.347452],[124.04433810000012,-9.336357799999973],[124.03981780000004,-9.336869199999967],[124.03024290000008,-9.345077499999945],[124.02445980000005,-9.344273599999951],[124.01284030000011,-9.345654499999966],[124.00867460000006,-9.343128199999967],[123.9943085000001,-9.342310899999973],[123.98468780000007,-9.349152599999968],[123.98330690000012,-9.351769499999932],[123.98029330000008,-9.352280599999972],[123.97623440000007,-9.361228],[123.97154240000009,-9.3646689],[123.9680939000001,-9.378577199999938],[123.96395880000011,-9.385757499999954],[123.9573822000001,-9.390884399999948],[123.94662480000011,-9.393176099999948],[123.94210810000004,-9.396764799999971],[123.94032290000007,-9.401110599999981],[123.94058990000008,-9.409067199999981],[123.93927,-9.413773499999934],[123.93418880000002,-9.421835],[123.92128750000006,-9.425020199999949],[123.915062,-9.428762499999948],[123.90699,-9.426732099999981],[123.89978030000009,-9.429905899999937],[123.89624020000008,-9.436269799999934],[123.89701840000009,-9.444077499999935],[123.89431,-9.454107299999976],[123.8844223000001,-9.465332],[123.87632750000012,-9.4700117],[123.87019350000003,-9.475567799999965],[123.8584747000001,-9.4772253],[123.85254670000006,-9.474656099999947],[123.8479996000001,-9.475577399999963],[123.84051510000006,-9.485904699999935],[123.83512110000004,-9.488435699999968],[123.82753750000006,-9.49597929999993],[123.81431580000003,-9.498515099999963],[123.80214690000003,-9.491764099999955],[123.79485320000003,-9.4910049],[123.79303740000012,-9.499053899999979],[123.79534150000006,-9.507579799999974],[123.79498290000004,-9.5158577],[123.79281620000006,-9.522158599999955],[123.7910690000001,-9.523307799999941],[123.79002380000009,-9.5344143],[123.78759,-9.5419455],[123.78096770000002,-9.547920199999965],[123.77684780000004,-9.548452399999974],[123.77091980000012,-9.551629099999957],[123.75971220000008,-9.553207399999962],[123.74865720000003,-9.562829],[123.74134830000003,-9.56356809999994],[123.73425290000012,-9.566981299999952],[123.73129270000004,-9.576417],[123.72129060000009,-9.592336699999976],[123.70863340000005,-9.598698599999977],[123.70447540000009,-9.603692099999932],[123.700058,-9.604764],[123.69338230000005,-9.61778449999997],[123.67907720000005,-9.62699129999993],[123.67413330000011,-9.62847039999997],[123.671524,-9.636080799999945],[123.6712189000001,-9.646552099999951],[123.68030550000003,-9.67976669999996],[123.68427280000003,-9.701511399999958],[123.68273160000001,-9.707945799999948],[123.68367770000009,-9.716206599999964],[123.680893,-9.7189369],[123.68230440000002,-9.735663399999964],[123.68138120000003,-9.743385299999943],[123.6791611000001,-9.75243759999995],[123.67566680000004,-9.757349],[123.661499,-9.761195199999975],[123.65948490000005,-9.7643757],[123.64354710000009,-9.771469099999933],[123.64242550000006,-9.773852399999953],[123.64816280000002,-9.780160899999942],[123.65339660000006,-9.782817899999941],[123.65563970000005,-9.789030099999934],[123.66185760000008,-9.79321669999996],[123.66557310000007,-9.80143739999994],[123.67009740000003,-9.824373199999968],[123.66791120000005,-9.853673],[123.6643448000001,-9.864465699999926],[123.66087340000001,-9.870013299999925],[123.65589140000009,-9.873747799999933],[123.65384670000003,-9.879888499999936],[123.65007020000007,-9.883616399999937],[123.6489563,-9.887225099999966],[123.64166260000002,-9.894603699999948],[123.63227080000001,-9.897877699999981],[123.6281891000001,-9.896451],[123.62488560000008,-9.89147859999997],[123.6214371000001,-9.890345599999932],[123.61567690000004,-9.8977595],[123.61744690000012,-9.900707199999943],[123.61431890000006,-9.8980389],[123.6071167,-9.898396499999933],[123.60470580000003,-9.896938299999931],[123.6010437000001,-9.898199099999943],[123.59751890000007,-9.902003299999933],[123.59459690000006,-9.90247919999996],[123.59051510000006,-9.910141],[123.58798980000006,-9.910879099999931],[123.58361050000008,-9.916381799999954],[123.58129120000001,-9.924963],[123.58435820000011,-9.929572099999973],[123.5836792,-9.931419399999982],[123.58537290000004,-9.936319399999945],[123.58234410000011,-9.941106799999943],[123.57910160000006,-9.93983559999998],[123.57846830000005,-9.9429369],[123.58538820000001,-9.969360399999971],[123.58591460000002,-9.9829369],[123.58872990000009,-9.992739699999959],[123.58090210000012,-10.0180235],[123.58628080000005,-10.034641299999976],[123.596344,-10.044250499999976],[123.60809330000006,-10.045110699999952],[123.61160280000001,-10.034410499999979],[123.61860660000002,-10.024027799999942],[123.6208114000001,-10.0231104],[123.62229160000004,-10.019322399999965],[123.62720490000004,-10.0200176],[123.62872310000012,-10.017575299999976],[123.63780980000001,-10.01750469999996],[123.64051820000009,-10.014231699999925],[123.65411380000012,-10.00945859999996],[123.65795900000012,-10.011069299999974],[123.65988160000006,-10.014632199999937],[123.66541290000009,-10.018047299999978],[123.66876980000006,-10.019162199999926],[123.67007490000003,-10.017091599999958],[123.67729190000011,-10.017599099999927],[123.68052670000009,-10.020948399999952],[123.680954,-10.019103],[123.68373110000005,-10.0198231],[123.68289190000007,-10.018587099999934],[123.684906,-10.016323099999966],[123.68581390000008,-10.017200499999944],[123.688797,-10.015633599999944],[123.689148,-10.012506499999972],[123.69721980000008,-10.0101957],[123.69895930000007,-10.013629899999955],[123.70204160000003,-10.0142174],[123.703186,-10.01741409999994],[123.70800780000002,-10.018858899999941],[123.71609500000011,-10.024576199999956],[123.71937560000003,-10.024579],[123.72378540000011,-10.027336099999957],[123.73029330000008,-10.026585599999976],[123.73279570000011,-10.029292099999964],[123.73607640000012,-10.028252599999973],[123.73944090000009,-10.029669799999965],[123.743721,-10.028325099999961],[123.75252530000012,-10.028611199999943],[123.75819400000012,-10.032031099999926],[123.75832370000012,-10.033636099999967],[123.76516720000006,-10.0350895],[123.76466370000003,-10.0392628],[123.76716610000005,-10.040008599999965],[123.76597590000006,-10.041274099999953],[123.76858520000008,-10.040973699999938],[123.77075190000005,-10.042553899999973],[123.76996610000003,-10.045672399999944],[123.76741790000005,-10.046677599999953],[123.76897430000008,-10.047729499999946],[123.76752470000008,-10.049284],[123.7684097,-10.051862699999958],[123.76221470000007,-10.0542784],[123.75765990000002,-10.073071499999969],[123.75433350000003,-10.075080899999932],[123.75530240000012,-10.0769577],[123.752327,-10.080542599999944],[123.74839020000002,-10.081735599999945],[123.74665830000004,-10.088313099999937],[123.74829860000011,-10.090065],[123.74160770000003,-10.098439199999973],[123.73342130000003,-10.099726699999962],[123.72369380000009,-10.105279899999971],[123.71760560000007,-10.105789199999947],[123.71586610000008,-10.104026799999929],[123.71794890000001,-10.103855099999976],[123.71698,-10.102104199999928],[123.71083830000009,-10.103637699999979],[123.70420840000008,-10.108772299999941],[123.702507,-10.108526199999972],[123.69248960000004,-10.118220299999962],[123.68641660000003,-10.119845399999974],[123.68259430000012,-10.119186399999933],[123.67832950000002,-10.122128499999974],[123.67697910000004,-10.121638299999972],[123.6715392000001,-10.127409199999931],[123.67534810000006,-10.132451],[123.67650010000011,-10.13571339999993],[123.67888,-10.13722],[123.6784,-10.1387],[123.68306,-10.13987],[123.68281,-10.14301],[123.68083,-10.14433],[123.6796,-10.14835],[123.68283,-10.15134],[123.67394,-10.15238],[123.67333,-10.15374],[123.66716,-10.15359],[123.65944710000008,-10.15727819999995],[123.66248460000008,-10.15893129999995],[123.66707,-10.16623],[123.6757,-10.16466],[123.6833600000001,-10.16521],[123.68140570000003,-10.175444399999947],[123.67737780000004,-10.180240599999934],[123.67387950000011,-10.176925799999935],[123.66996590000008,-10.184030699999937],[123.66226340000003,-10.185491899999931],[123.66187590000004,-10.187916],[123.65865,-10.19053],[123.65507,-10.18676],[123.6508500000001,-10.18852],[123.65484,-10.20819],[123.65937,-10.21267],[123.66321,-10.22103],[123.66818,-10.2227],[123.66873,-10.2264],[123.66477,-10.22873],[123.66294,-10.22667],[123.63951010000005,-10.21779],[123.63913,-10.22137],[123.63559,-10.222],[123.63348,-10.22549],[123.62051,-10.23122],[123.63046,-10.24121],[123.63907,-10.244300099999975],[123.63222,-10.26861],[123.62988,-10.28496],[123.6252,-10.28796],[123.62203000000011,-10.28699],[123.61363,-10.29286],[123.6111,-10.29324],[123.60597,-10.29141],[123.60217000000011,-10.29326],[123.60035,-10.29159],[123.6003,-10.28922],[123.5945200000001,-10.28691],[123.58965,-10.2867],[123.58548,-10.28885],[123.58385,-10.27432],[123.58039,-10.2617],[123.57443,-10.25012],[123.57075,-10.24649],[123.578497,-10.22434809999993],[123.57552090000001,-10.22505659999996],[123.5741187000001,-10.217089599999952],[123.57195280000008,-10.217976799999974],[123.5700088000001,-10.224009699999954],[123.56608,-10.22638],[123.55687000000012,-10.2274699],[123.55253,-10.22037],[123.54979,-10.22006],[123.54591,-10.21441],[123.53428,-10.20828],[123.5312,-10.21115],[123.52833790000011,-10.209876099999974]]],[[[123.9956357000001,-9.258281899999929],[123.99594520000005,-9.256840299999965],[123.99330870000006,-9.254692299999931],[123.991293,-9.2558467],[123.99241030000007,-9.258193],[123.9956357000001,-9.258281899999929]]]]},"properties":{"shapeName":"Kupang","shapeISO":"","shapeID":"22746128B48946141476537","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[115.803186,-1.118338799999947],[115.8031535,-1.116289299999949],[115.81337850000011,-1.105462599999953],[115.82930720000002,-1.096613399999967],[115.8390624000001,-1.095394],[115.84737890000008,-1.090270399999952],[115.86342170000012,-1.102400299999942],[115.8822034000001,-1.107095699999945],[115.89902870000003,-1.113356299999964],[115.91311510000003,-1.1149215],[115.9283752,-1.113356299999964],[115.94754830000011,-1.101226499999939],[115.96241720000012,-1.0973136],[115.97806860000003,-1.09927],[115.9925462000001,-1.107095699999945],[116.00506740000003,-1.110617299999944],[116.0230666000001,-1.111791199999971],[116.02541430000008,-1.109443499999941],[116.0351965000001,-1.109443499999941],[116.05182610000008,-1.114138899999944],[116.066695,-1.109834799999931],[116.0780423000001,-1.098096199999929],[116.09377790000008,-1.085781299999951],[116.09655390000012,-1.087764199999924],[116.1089429000001,-1.117851499999972],[116.1089429000001,-1.140859499999976],[116.12133170000004,-1.155018299999938],[116.13903,-1.153248399999939],[116.15318900000011,-1.137319799999943],[116.16557770000009,-1.126700699999958],[116.18150630000002,-1.117851499999972],[116.2191223000001,-1.117851499999972],[116.23460180000006,-1.093073699999934],[116.25509950000003,-1.051141799999925],[116.26449040000011,-1.046055],[116.27353830000004,-1.045287799999926],[116.292663,-1.048011499999973],[116.31204960000002,-1.0483773],[116.32413880000001,-1.042882199999951],[116.33570450000002,-1.033142599999962],[116.3537037000001,-1.000665799999979],[116.36116780000009,-0.993201799999952],[116.37618940000004,-0.985113099999978],[116.40273710000008,-0.978033699999969],[116.43850610000004,-0.973967899999934],[116.4386065000001,-0.970833699999957],[116.43990370000006,-0.9656448],[116.4522928,-0.955025699999965],[116.46114190000003,-0.949716199999955],[116.46822120000002,-0.939097199999935],[116.47884030000012,-0.914319299999931],[116.48768960000007,-0.884232],[116.52026160000003,-0.843527499999936],[116.5160088,-0.842106399999977],[116.5053213000001,-0.838535199999967],[116.49857280000003,-0.8216642],[116.50532120000003,-0.804793099999927],[116.52188,-0.774987599999974],[116.4989230000001,-0.766368],[116.47843200000011,-0.753207],[116.44446,-0.726792],[116.40553000000011,-0.664861],[116.388641,-0.632869],[116.350292,-0.571629],[116.341384,-0.535469],[116.33605200000011,-0.499985],[116.332698,-0.488431],[116.328639,-0.488186],[116.321134,-0.483355],[116.317658,-0.483517],[116.308596,-0.489921],[116.30416,-0.486537],[116.304301,-0.482665],[116.309988,-0.477672],[116.314344,-0.468147],[116.317414,-0.456341],[116.31715,-0.451293],[116.3116950000001,-0.447565],[116.298986,-0.449002],[116.2915,-0.447844],[116.282909,-0.443573],[116.27796400000011,-0.437701],[116.27583060000006,-0.425161399999979],[116.29307620000009,-0.390791299999933],[116.30381000000011,-0.374323],[116.320007,-0.299761],[116.254844,-0.289851],[116.236794,-0.281482],[116.1860620000001,-0.250013],[116.16039400000011,-0.225064],[116.140498,-0.208951],[116.104857,-0.18912],[116.07173490000002,-0.165379799999926],[116.03124430000003,-0.111392399999943],[115.9907538000001,-0.070901799999945],[115.9824781000001,-0.065384699999925],[115.973009,-0.028265],[115.984305,-0.008338],[116.013065,0.019376],[116.027052,0.036221],[116.030044,0.050114],[116.02834,0.059425],[116.011337,0.069473],[115.99075390000007,0.09106040000006],[115.95026340000004,0.114679900000056],[115.9232694000001,0.138299400000051],[115.91652120000003,0.168667300000038],[115.91652110000007,0.20578370000004],[115.89627570000005,0.212532100000033],[115.85915940000007,0.20578370000004],[115.82051530000001,0.195478500000036],[115.8085463000001,0.192286800000034],[115.80724280000004,0.194459400000028],[115.7967466,0.184917400000074],[115.8053900000001,0.176274100000057],[115.80292040000006,0.166396],[115.79180760000008,0.160222200000021],[115.78563380000003,0.154048400000022],[115.77699050000001,0.149109400000043],[115.769582,0.149109400000043],[115.76093870000011,0.154048400000022],[115.75353010000003,0.149109400000043],[115.71895690000008,0.147874600000023],[115.6992007,0.154048400000022],[115.68561840000007,0.15651790000004],[115.67450560000009,0.145405100000062],[115.65227990000005,0.144170400000064],[115.61523720000002,0.151578900000061],[115.57819440000003,0.140466100000026],[115.53497790000006,0.139231300000063],[115.51645650000012,0.134292300000027],[115.504109,0.135527100000047],[115.48558760000003,0.134292300000027],[115.478179,0.140466100000026],[115.47447480000005,0.137996600000065],[115.47200520000001,0.137996600000065],[115.46583150000004,0.124414200000047],[115.45101440000008,0.107127600000069],[115.45101440000008,0.097249500000032],[115.45348390000004,0.088606200000072],[115.44237110000006,0.067615400000022],[115.44360580000011,0.051563500000043],[115.44113630000004,0.041685400000063],[115.4152064000001,0.033042100000046],[115.4152064000001,0.025633600000049],[115.40532830000006,0.020694500000047],[115.39545020000003,0.01945980000005],[115.38804170000003,0.021929300000068],[115.38186790000009,0.024398800000029],[115.37692890000005,0.031807400000048],[115.37445940000009,0.031807400000048],[115.35223370000006,0.007112200000051],[115.34852940000007,-0.002765899999929],[115.33618180000008,-0.016348199999925],[115.33178370000007,-0.0247046],[115.304561,-0.036907099999951],[115.30542770000011,-0.042563799999925],[115.301543,-0.045907399999976],[115.2973406000001,-0.053936599999929],[115.30290130000003,-0.054487599999959],[115.30978730000004,-0.059938],[115.3124113,-0.074931299999946],[115.31004840000003,-0.084207599999957],[115.315185,-0.100761599999942],[115.30871510000009,-0.117464499999926],[115.30599260000008,-0.120410399999969],[115.29840780000006,-0.124421599999948],[115.29368090000003,-0.124088599999936],[115.2874031,-0.1271513],[115.28637890000005,-0.128696899999966],[115.28796510000006,-0.142041399999925],[115.28433490000009,-0.145857],[115.270709,-0.1439719],[115.26644450000003,-0.147343699999965],[115.26043830000003,-0.156098899999961],[115.26013160000002,-0.158996899999977],[115.26634910000007,-0.168736499999966],[115.26918720000003,-0.185450199999934],[115.26868370000011,-0.189692099999945],[115.261232,-0.2055714],[115.25896010000008,-0.215193699999929],[115.25050290000001,-0.216186799999946],[115.24869030000002,-0.228258599999947],[115.24321290000012,-0.228418199999965],[115.23871730000008,-0.232916299999943],[115.23766420000004,-0.2361277],[115.23832510000011,-0.246072099999935],[115.24587180000003,-0.248919599999965],[115.2501387000001,-0.257535],[115.2507816000001,-0.265519799999936],[115.25415040000007,-0.270436099999927],[115.25155560000007,-0.2751278],[115.25404660000004,-0.278707599999962],[115.2545818000001,-0.2832191],[115.25318080000011,-0.286701799999946],[115.25486950000004,-0.291705199999967],[115.25362570000004,-0.294534499999941],[115.25384150000002,-0.300872199999958],[115.25234870000008,-0.303629899999976],[115.25085480000007,-0.303451499999937],[115.2447274000001,-0.298773],[115.2408501000001,-0.302336099999934],[115.23188360000006,-0.294762299999945],[115.22951,-0.300655699999936],[115.22415110000009,-0.303456199999971],[115.22189160000005,-0.3068388],[115.22372930000006,-0.312970599999971],[115.2276683,-0.318997],[115.23260990000006,-0.3232579],[115.23166150000009,-0.338298399999928],[115.23628380000002,-0.342052199999955],[115.23218530000008,-0.346702899999968],[115.2377550000001,-0.3528151],[115.232448,-0.358258499999977],[115.23519080000005,-0.367263299999934],[115.23394860000008,-0.371676099999945],[115.23659850000001,-0.378403799999944],[115.24232780000011,-0.384430499999951],[115.25266210000007,-0.411587499999939],[115.25575420000007,-0.435636399999964],[115.24648980000006,-0.441304399999979],[115.24473120000005,-0.446935],[115.24648220000006,-0.451524699999936],[115.25309750000008,-0.451882799999964],[115.2781983000001,-0.47805],[115.28540040000007,-0.487801799999943],[115.2932968,-0.492067199999951],[115.299202,-0.497156599999926],[115.30277730000012,-0.502300899999966],[115.3031631,-0.507364499999937],[115.30675350000001,-0.511523599999975],[115.30524510000009,-0.5139833],[115.3109505000001,-0.515266899999972],[115.31864430000007,-0.529339],[115.31813150000005,-0.53409],[115.32021620000012,-0.538319599999966],[115.31664400000011,-0.54188],[115.31686390000004,-0.5465225],[115.32196980000003,-0.549527699999942],[115.3240578000001,-0.557402699999955],[115.3287117000001,-0.562918899999943],[115.33520440000007,-0.568941299999949],[115.35156940000002,-0.579836799999953],[115.35386580000011,-0.583164699999941],[115.35735250000005,-0.605214499999931],[115.35537650000003,-0.621069899999952],[115.35642930000006,-0.632664699999964],[115.36633990000007,-0.679639799999961],[115.368438,-0.6994557],[115.3670495,-0.749472],[115.37345810000011,-0.771521199999938],[115.3747399,-0.784156099999961],[115.379699,-0.801610899999957],[115.39058610000006,-0.820204399999966],[115.39752890000011,-0.825258899999938],[115.44791340000006,-0.838770799999963],[115.482154,-0.842816299999924],[115.49513160000004,-0.848330899999951],[115.50517190000005,-0.855727399999978],[115.533599,-0.883072599999934],[115.55785290000006,-0.923632399999974],[115.56582560000004,-0.933109499999944],[115.58759220000002,-0.951375199999973],[115.63825140000006,-0.981438499999967],[115.6534186,-0.993736099999978],[115.65888590000009,-1.000978399999951],[115.66015020000009,-1.0003168],[115.65924450000011,-1.002516699999944],[115.6605770000001,-1.003338399999961],[115.65852970000003,-1.003088299999945],[115.65669340000011,-1.004824299999939],[115.65712990000009,-1.008816699999954],[115.65948620000006,-1.014044299999966],[115.66422080000007,-1.035728499999948],[115.66043900000011,-1.039474499999926],[115.65932410000005,-1.044987799999944],[115.65642720000005,-1.047556699999973],[115.6552425000001,-1.052049299999965],[115.65629600000011,-1.056831099999954],[115.6656147000001,-1.055817499999932],[115.66661240000008,-1.057732399999963],[115.66589720000002,-1.0623748],[115.66729920000012,-1.064098399999978],[115.67203670000004,-1.059439699999928],[115.6739404000001,-1.060597799999925],[115.67530640000007,-1.059177199999965],[115.67625950000001,-1.065524599999947],[115.67776620000006,-1.066292799999928],[115.68435470000009,-1.061209499999961],[115.68521670000007,-1.058152099999973],[115.68962180000005,-1.054840099999979],[115.69087590000004,-1.052045899999939],[115.69397150000009,-1.052354099999945],[115.69597550000003,-1.0595654],[115.701585,-1.0675855],[115.74323190000007,-1.095750299999963],[115.7490934000001,-1.123450799999944],[115.75669860000005,-1.134914099999946],[115.76069640000003,-1.136145899999974],[115.7660982000001,-1.1340317],[115.7749291,-1.125838399999964],[115.79031440000006,-1.116215099999977],[115.79995470000006,-1.115445199999954],[115.803186,-1.118338799999947]]]},"properties":{"shapeName":"Kutai Barat","shapeISO":"","shapeID":"22746128B16372544032796","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.43575890000011,-0.873582399999975],[117.4337412000001,-0.8767074],[117.437539,-0.884321],[117.439599,-0.882548],[117.437226,-0.879427],[117.43575890000011,-0.873582399999975]]],[[[117.42633410000008,-0.862100699999928],[117.42077290000009,-0.865236399999958],[117.41594870000006,-0.871551499999953],[117.42334720000008,-0.875642699999958],[117.42497030000004,-0.881037899999967],[117.42430050000007,-0.885731],[117.43049310000004,-0.890760499999942],[117.4352206000001,-0.891731799999945],[117.43679050000003,-0.890864399999941],[117.43494450000003,-0.8853993],[117.4367592000001,-0.883750299999974],[117.43336290000002,-0.8760976],[117.43601210000008,-0.871659299999976],[117.43303660000004,-0.869995599999925],[117.4323008,-0.867114599999979],[117.4298490000001,-0.869232],[117.430038,-0.870742],[117.428117,-0.871376],[117.429009,-0.872271],[117.42786200000012,-0.873412],[117.428873,-0.874425],[117.427793,-0.873737],[117.427604,-0.873122],[117.428799,-0.872389],[117.427906,-0.87124],[117.429875,-0.870715],[117.429498,-0.86963],[117.43012090000002,-0.868483399999946],[117.427035,-0.868915],[117.425631,-0.870897],[117.4267463000001,-0.868598799999972],[117.42511860000002,-0.8676296],[117.42471380000006,-0.866365099999939],[117.42633410000008,-0.862100699999928]]],[[[117.259979,-0.855314],[117.25735270000007,-0.853033799999935],[117.2559807,-0.856047499999931],[117.25562570000011,-0.8814786],[117.257243,-0.884983],[117.26188490000004,-0.886050199999943],[117.26373970000009,-0.884297899999979],[117.26385260000006,-0.866498],[117.26243040000008,-0.864286299999947],[117.26139580000006,-0.855435299999954],[117.259979,-0.855314]]],[[[117.2614072,-0.855132699999956],[117.25980890000005,-0.850015],[117.2576332000001,-0.852750399999934],[117.2614072,-0.855132699999956]]],[[[117.259133,-0.8471234],[117.25648110000009,-0.847367399999939],[117.25646240000003,-0.852097499999957],[117.258675,-0.8500199],[117.259133,-0.8471234]]],[[[117.258273,-0.845759199999975],[117.25866950000011,-0.841898899999933],[117.2564867000001,-0.844096499999978],[117.2567193000001,-0.845638],[117.258273,-0.845759199999975]]],[[[117.25653390000002,-0.843125599999951],[117.2580848,-0.841917899999942],[117.25833430000012,-0.839224899999977],[117.25653390000002,-0.843125599999951]]],[[[117.27233050000007,-0.826714199999969],[117.2634561000001,-0.829759599999932],[117.26311120000003,-0.845407499999965],[117.26323610000009,-0.846563699999933],[117.26412070000003,-0.8458204],[117.26477060000002,-0.856087099999968],[117.26954310000008,-0.854855399999963],[117.26930780000009,-0.850670799999932],[117.26449920000005,-0.846822],[117.26440880000007,-0.8453953],[117.26636830000007,-0.846898499999952],[117.26745260000007,-0.8462138],[117.26726730000007,-0.847865499999955],[117.26854660000004,-0.847247799999934],[117.26779520000002,-0.8484112],[117.2699166000001,-0.850962799999934],[117.26972190000004,-0.855898699999955],[117.264947,-0.857009699999935],[117.26708850000011,-0.8623941],[117.26658430000009,-0.875048799999945],[117.26788510000006,-0.883869299999958],[117.275464,-0.887775],[117.27702910000005,-0.886471399999948],[117.27732810000009,-0.878639],[117.27303060000008,-0.850403099999937],[117.27510510000002,-0.8447637],[117.26432080000006,-0.844725699999969],[117.2678972000001,-0.844371199999955],[117.27043390000006,-0.841173699999956],[117.27116480000007,-0.837259899999935],[117.27614040000003,-0.8319993],[117.27233050000007,-0.826714199999969]]],[[[117.25600070000007,-0.835713299999952],[117.25823360000004,-0.828545399999939],[117.2574327000001,-0.824412299999949],[117.25532260000011,-0.828918699999974],[117.25600070000007,-0.835713299999952]]],[[[117.4759041000001,-0.817267799999968],[117.46975270000007,-0.811449499999981],[117.47033750000003,-0.818374299999959],[117.46703940000009,-0.826619799999946],[117.46829910000008,-0.829932699999972],[117.48255040000004,-0.839377099999979],[117.48801230000004,-0.839966499999946],[117.49236780000001,-0.837617799999975],[117.49351360000003,-0.835214399999927],[117.48831180000002,-0.829699799999958],[117.48626590000003,-0.825111599999957],[117.48485810000011,-0.824082399999952],[117.48395460000006,-0.8251454],[117.4832024000001,-0.821867499999939],[117.4771048,-0.816779299999951],[117.4759041000001,-0.817267799999968]]],[[[117.27598530000012,-0.809414],[117.26885530000004,-0.811325],[117.26400110000009,-0.817874699999948],[117.26344180000001,-0.8287471],[117.27190240000004,-0.825536499999941],[117.278937,-0.833819499999947],[117.2780560000001,-0.834627499999954],[117.27651140000012,-0.8323296],[117.26868270000011,-0.844531],[117.27482860000009,-0.844437299999925],[117.27705760000003,-0.839126599999929],[117.28559610000002,-0.827636],[117.28503220000005,-0.823485299999959],[117.2786291000001,-0.817037],[117.27838620000011,-0.812663699999973],[117.277177,-0.812513],[117.2782327000001,-0.811137699999961],[117.27598530000012,-0.809414]]],[[[117.27801680000005,-0.808895399999926],[117.27637060000006,-0.809335799999928],[117.2783736,-0.810642799999926],[117.27801680000005,-0.808895399999926]]],[[[117.2666809000001,-0.810047],[117.27565520000007,-0.8082511],[117.27750990000004,-0.806154],[117.27749540000002,-0.803377299999966],[117.27462770000011,-0.803942399999926],[117.2666809000001,-0.810047]]],[[[117.48802390000003,-0.821200899999951],[117.48947540000006,-0.819517899999937],[117.48857640000006,-0.817665299999931],[117.48017180000011,-0.808891099999926],[117.4696560000001,-0.802795599999968],[117.47104780000006,-0.808755699999949],[117.47365910000008,-0.811972499999968],[117.48802390000003,-0.821200899999951]]],[[[117.5115254000001,-0.810487499999965],[117.49931210000011,-0.800858],[117.5048167000001,-0.810030499999925],[117.50933480000003,-0.810568499999931],[117.5111482000001,-0.812393499999928],[117.5115254000001,-0.810487499999965]]],[[[117.28657460000011,-0.795878699999946],[117.28225740000005,-0.801345399999946],[117.2817682000001,-0.804061299999944],[117.28309550000006,-0.805082299999924],[117.28023870000004,-0.812809499999958],[117.28159710000011,-0.814423699999963],[117.28093330000002,-0.816128099999958],[117.28467540000008,-0.819262699999967],[117.28790990000005,-0.825478499999974],[117.28454910000005,-0.834377699999948],[117.28155120000008,-0.837891899999931],[117.28237500000012,-0.838904899999932],[117.2796833000001,-0.841201199999944],[117.27588090000006,-0.855050499999948],[117.28034570000011,-0.869152499999927],[117.28042860000005,-0.874116],[117.28571490000002,-0.8765157],[117.29400420000002,-0.871488199999931],[117.29932520000011,-0.859771599999931],[117.29986850000012,-0.851439299999925],[117.30249290000006,-0.848087899999939],[117.2986456000001,-0.835245799999939],[117.29856170000005,-0.826436899999976],[117.29521410000007,-0.817984299999978],[117.29742480000004,-0.806955],[117.29180660000009,-0.803726799999936],[117.28911910000011,-0.797281899999973],[117.28657460000011,-0.795878699999946]]],[[[117.4989455000001,-0.797538599999939],[117.49942680000004,-0.7951382],[117.4966697000001,-0.793878599999971],[117.4989455000001,-0.797538599999939]]],[[[117.49078860000009,-0.779860199999973],[117.4921405,-0.777710499999955],[117.49012030000006,-0.778426399999944],[117.49078860000009,-0.779860199999973]]],[[[117.346076,-0.768184],[117.342931,-0.767596],[117.346599,-0.774634],[117.353517,-0.781989],[117.353563,-0.777818],[117.350894,-0.772499],[117.348686,-0.769143],[117.346076,-0.768184]]],[[[117.37712890000012,-0.768646499999932],[117.3779608000001,-0.767600799999968],[117.37664160000008,-0.767006699999968],[117.37520370000004,-0.768385099999932],[117.37712890000012,-0.768646499999932]]],[[[117.28880470000001,-0.792175399999962],[117.28930880000007,-0.781693],[117.29592520000006,-0.771612699999935],[117.29522580000003,-0.767385399999966],[117.29221990000008,-0.763833299999931],[117.28697020000004,-0.775338],[117.28588630000002,-0.7814278],[117.28601530000003,-0.790278599999965],[117.28880470000001,-0.792175399999962]]],[[[117.4407768000001,-0.779901399999972],[117.41234910000003,-0.756761799999936],[117.405908,-0.753244499999937],[117.40512360000002,-0.766177299999924],[117.41233720000002,-0.784589799999935],[117.41564690000007,-0.785992],[117.41980160000003,-0.7817433],[117.42572570000004,-0.779931099999942],[117.4319054,-0.781582899999933],[117.43646290000004,-0.786270599999966],[117.443005,-0.804546499999958],[117.44512630000008,-0.8058595],[117.44712780000009,-0.803800399999943],[117.44980250000003,-0.804256099999975],[117.45118930000001,-0.800161299999957],[117.44940540000005,-0.798382599999968],[117.44772150000006,-0.798055499999975],[117.44963580000001,-0.7982742],[117.45109760000003,-0.799609],[117.45149630000003,-0.800569199999927],[117.45007670000007,-0.804210399999931],[117.44942630000003,-0.804554],[117.44720490000009,-0.804004599999928],[117.44594710000001,-0.805709199999967],[117.45058110000002,-0.808022199999925],[117.46267300000011,-0.820439699999952],[117.46480030000009,-0.820968499999935],[117.4677713000001,-0.817688799999928],[117.4660421000001,-0.807665699999973],[117.4407768000001,-0.779901399999972]]],[[[117.47207110000011,-0.746222799999941],[117.46470980000004,-0.742818499999942],[117.46287890000008,-0.743692399999929],[117.46886770000003,-0.762704],[117.48246520000009,-0.770237799999961],[117.48219080000001,-0.765971],[117.47928530000002,-0.763057899999978],[117.48165,-0.760766699999976],[117.47990240000001,-0.759661199999925],[117.4805980000001,-0.756998],[117.4787050000001,-0.755035],[117.480879,-0.757088],[117.48012790000007,-0.759458299999949],[117.48169140000005,-0.760304899999937],[117.482314,-0.762607],[117.483598,-0.762326],[117.482768,-0.761087],[117.483055,-0.760146],[117.485491,-0.759793],[117.483992,-0.760969],[117.483041,-0.760526],[117.483802,-0.7621],[117.48356600000011,-0.762833],[117.482138,-0.762751],[117.4813567000001,-0.761594499999944],[117.47965210000007,-0.7632893],[117.48235360000001,-0.765545199999963],[117.48405390000005,-0.772339299999942],[117.48476230000006,-0.770453],[117.48602260000007,-0.770807099999956],[117.48469610000006,-0.7735743],[117.49096450000002,-0.787281099999973],[117.49596,-0.7936943],[117.4981815000001,-0.791845099999932],[117.49980210000001,-0.795564799999966],[117.513684,-0.798581299999967],[117.49978720000001,-0.796020299999952],[117.5008745,-0.799376399999971],[117.5070459000001,-0.804977199999939],[117.51372830000003,-0.809189199999935],[117.52583240000001,-0.813759499999946],[117.53132520000008,-0.813112499999932],[117.53256150000004,-0.811365],[117.53721770000004,-0.813626599999964],[117.54195740000011,-0.810637699999972],[117.54439720000005,-0.8108888],[117.55350560000011,-0.802406799999972],[117.55536660000007,-0.795879],[117.55395390000001,-0.7928029],[117.54840120000006,-0.805826199999956],[117.546594,-0.805596699999967],[117.54824880000001,-0.8041986],[117.552646,-0.7921448],[117.5376649000001,-0.787539],[117.5176004000001,-0.778056599999957],[117.513852,-0.778403899999944],[117.51203520000001,-0.776826699999958],[117.510703,-0.771967699999948],[117.50875320000011,-0.772662099999934],[117.50999150000007,-0.7779016],[117.51186160000009,-0.778798299999949],[117.5099073,-0.781577499999969],[117.51236870000002,-0.784255799999926],[117.5118036,-0.782643499999949],[117.51209830000005,-0.781599899999947],[117.51299240000003,-0.7815614],[117.51345860000004,-0.782566699999961],[117.51396250000005,-0.781006],[117.51531310000007,-0.780747299999973],[117.5158173000001,-0.781350499999974],[117.51514220000001,-0.783284599999945],[117.51848930000006,-0.785375899999963],[117.5149401000001,-0.783545199999935],[117.51467240000011,-0.781989299999964],[117.5154629000001,-0.781187299999942],[117.5146069000001,-0.780906199999947],[117.51368570000011,-0.782940899999971],[117.51268090000008,-0.781666399999949],[117.512033,-0.7820674],[117.5127232000001,-0.785930299999961],[117.51366,-0.784977499999968],[117.51463210000009,-0.786345599999947],[117.51362430000006,-0.785122399999977],[117.51276130000008,-0.786231899999962],[117.509183,-0.781006399999967],[117.511104,-0.778794399999924],[117.506194,-0.780445099999952],[117.5039868,-0.775447399999962],[117.5015618000001,-0.779095699999971],[117.49836390000007,-0.779334699999936],[117.49711280000008,-0.772767599999952],[117.494215,-0.7743845],[117.4931755,-0.777410599999939],[117.49419310000007,-0.780861],[117.49819810000008,-0.782040599999959],[117.49633770000003,-0.784632],[117.49884250000002,-0.785697699999957],[117.50092250000012,-0.784128499999952],[117.501844,-0.784331799999961],[117.50188550000007,-0.7833624],[117.50407860000007,-0.783070299999963],[117.5021114000001,-0.783559799999978],[117.50214130000006,-0.7847207],[117.5009166000001,-0.784367799999927],[117.50077720000002,-0.785938],[117.50208970000006,-0.785205399999938],[117.5073953000001,-0.789922699999977],[117.50196010000002,-0.7855333],[117.50105670000005,-0.786605799999961],[117.50032410000006,-0.785141],[117.4984899000001,-0.786244499999952],[117.49618320000002,-0.785173599999951],[117.496076,-0.783623699999964],[117.49777,-0.782438499999955],[117.49379190000002,-0.781351499999971],[117.49337390000005,-0.7786101],[117.4914189000001,-0.780975499999954],[117.489514,-0.7796185],[117.4897492,-0.777830399999971],[117.492972,-0.775949299999979],[117.492127,-0.7719929],[117.49407230000008,-0.770617799999968],[117.49246210000001,-0.768769799999973],[117.4934171000001,-0.764819299999942],[117.49671050000006,-0.763999099999978],[117.49451290000002,-0.763383199999964],[117.49401620000003,-0.761182099999928],[117.49468350000006,-0.763242],[117.49694580000005,-0.763909699999942],[117.49545990000001,-0.765029299999981],[117.4937814000001,-0.764983099999938],[117.49285590000011,-0.768731499999944],[117.49451410000006,-0.770916399999976],[117.4929479000001,-0.772933199999954],[117.49843260000011,-0.772274399999958],[117.49914170000011,-0.7786976],[117.501317,-0.778385],[117.5022441000001,-0.775464599999964],[117.5044792000001,-0.774506799999926],[117.50666740000008,-0.779293899999971],[117.50823680000008,-0.779269799999952],[117.507903,-0.771849399999951],[117.50994780000008,-0.770580499999937],[117.51258370000005,-0.771942],[117.51085190000003,-0.766777199999979],[117.49769050000009,-0.749437199999932],[117.495208,-0.749085599999944],[117.49044340000012,-0.75],[117.4810106000001,-0.75],[117.47670640000001,-0.745306699999958],[117.47207110000011,-0.746222799999941]]],[[[117.46416060000001,-0.750368],[117.46136160000003,-0.747060599999941],[117.4430751000001,-0.741281799999967],[117.43743730000006,-0.746117199999958],[117.43960680000009,-0.753572199999951],[117.4543890000001,-0.765638],[117.45578400000011,-0.7636145],[117.4491971000001,-0.750531699999954],[117.45605820000003,-0.763525499999957],[117.45500320000008,-0.766447299999925],[117.46160010000006,-0.773345199999937],[117.4666026000001,-0.783329499999979],[117.48343280000006,-0.798960699999952],[117.49243230000002,-0.802395699999977],[117.49347790000002,-0.7966245],[117.48725470000011,-0.786676],[117.48239410000008,-0.7724161],[117.47175,-0.766996],[117.469195,-0.7681],[117.469051,-0.7698],[117.469872,-0.769855],[117.470387,-0.770768],[117.469281,-0.771836],[117.470175,-0.77056],[117.468863,-0.770063],[117.468936,-0.768525],[117.469266,-0.767892],[117.469901,-0.767204],[117.47125460000007,-0.766605399999946],[117.46707870000012,-0.761938199999975],[117.46416060000001,-0.750368]]],[[[117.38738850000004,-0.739551099999971],[117.38128,-0.739398299999948],[117.38061020000009,-0.7480803],[117.37566990000005,-0.754886399999975],[117.3803759000001,-0.757087299999966],[117.384137,-0.757044],[117.38674130000004,-0.759876],[117.38786520000008,-0.763454499999966],[117.38571720000004,-0.76891],[117.38665910000009,-0.771255799999949],[117.3931649000001,-0.769459899999958],[117.392261,-0.766587499999957],[117.39446740000005,-0.763355799999943],[117.39159,-0.762159199999928],[117.39093350000007,-0.759918699999957],[117.39530380000008,-0.756639],[117.39437,-0.75],[117.38994150000008,-0.751552799999956],[117.388035,-0.749290499999972],[117.389743,-0.751181799999927],[117.39242110000009,-0.750421],[117.390721,-0.745788],[117.392498,-0.748855],[117.39478020000001,-0.749746499999958],[117.395576,-0.75165],[117.3959168,-0.757494599999973],[117.39146560000006,-0.760514699999931],[117.395475,-0.7628051],[117.3954920000001,-0.766741],[117.39433,-0.765203],[117.39294830000006,-0.766921799999977],[117.396127,-0.769817],[117.396218,-0.772296],[117.394021,-0.773065],[117.395233,-0.775082],[117.396215,-0.774711],[117.395236,-0.775363],[117.393765,-0.77321],[117.394505,-0.772052],[117.395842,-0.772133],[117.395728,-0.769871],[117.3872636000001,-0.772242199999937],[117.38561330000005,-0.771275299999957],[117.38502330000006,-0.768474699999956],[117.38688230000002,-0.761911],[117.38243040000009,-0.7577511],[117.38164990000007,-0.768765899999948],[117.3737589000001,-0.778120099999967],[117.3766111000001,-0.778785499999969],[117.38544330000002,-0.774232],[117.39017780000006,-0.774802399999942],[117.39268770000001,-0.776646599999935],[117.41088,-0.819393699999978],[117.414362,-0.8346392],[117.41543150000007,-0.836350299999935],[117.41714600000012,-0.836094],[117.42182510000009,-0.832488499999954],[117.42761260000009,-0.830943699999978],[117.43991030000007,-0.816088799999932],[117.4330169000001,-0.795130299999926],[117.43196420000004,-0.794592799999975],[117.42972480000003,-0.80018],[117.42815550000012,-0.800802499999975],[117.42661490000012,-0.798616599999946],[117.4239272000001,-0.7978539],[117.4252537000001,-0.794148299999961],[117.4235748000001,-0.792841499999952],[117.42071210000006,-0.793272099999967],[117.41926480000006,-0.795968099999925],[117.42221670000004,-0.799702],[117.42174220000004,-0.810213399999952],[117.42361820000008,-0.813968299999942],[117.421936,-0.815090599999962],[117.41934060000006,-0.8135831],[117.41841650000003,-0.807443499999977],[117.41637220000007,-0.808090499999935],[117.416782,-0.810417299999926],[117.4146611000001,-0.809731199999931],[117.41359620000003,-0.811284299999954],[117.41417970000009,-0.809357099999943],[117.41657090000001,-0.810143699999969],[117.41606120000006,-0.8079415],[117.41850220000003,-0.807109899999944],[117.4201074,-0.810465499999964],[117.41945030000011,-0.813154],[117.4229471000001,-0.8142281],[117.421231,-0.809901699999955],[117.42164730000002,-0.799930699999948],[117.41888260000007,-0.796638399999949],[117.4190393,-0.7946133],[117.42157510000004,-0.7922972],[117.42498150000006,-0.792770799999971],[117.42579500000011,-0.794716799999946],[117.4244969,-0.797119],[117.42898430000002,-0.799926299999925],[117.43349250000006,-0.788024299999961],[117.4290122000001,-0.785690899999963],[117.4140887000001,-0.7879975],[117.41049320000002,-0.786755599999935],[117.40764650000006,-0.782992899999954],[117.40414290000001,-0.773112099999935],[117.40167340000005,-0.7593892],[117.39885490000006,-0.751791799999978],[117.39116790000003,-0.738941099999977],[117.38738850000004,-0.739551099999971]]],[[[117.43791150000004,-0.744547499999953],[117.44071580000002,-0.742418899999961],[117.439907,-0.738732699999957],[117.43723450000005,-0.740916],[117.43791150000004,-0.744547499999953]]],[[[117.43694630000005,-0.7394155],[117.4380427000001,-0.738311599999975],[117.43706280000004,-0.736109499999941],[117.43537930000002,-0.736942699999929],[117.43694630000005,-0.7394155]]],[[[117.330879,-0.746589],[117.331739,-0.737289],[117.32739,-0.726333],[117.326434,-0.730929],[117.330879,-0.746589]]],[[[117.46009970000011,-0.70266],[117.45491960000004,-0.703476099999932],[117.454509,-0.705007],[117.45424350000008,-0.703664199999935],[117.44880750000004,-0.703946599999938],[117.44634770000005,-0.706120599999963],[117.448103,-0.708111],[117.452312,-0.708536],[117.452123,-0.711377],[117.454169,-0.711883],[117.453863,-0.713195],[117.455542,-0.713729],[117.454542,-0.714353],[117.453195,-0.713729],[117.45375600000011,-0.71201],[117.451834,-0.711865],[117.451751,-0.708644],[117.447791,-0.70869],[117.4427204000001,-0.706005699999935],[117.44163860000003,-0.707286499999952],[117.44237620000001,-0.711630899999932],[117.44614500000012,-0.711223699999948],[117.44770270000004,-0.712970899999959],[117.44575330000009,-0.717255799999975],[117.45124640000006,-0.719780599999979],[117.45310150000012,-0.723598399999958],[117.45264980000002,-0.725058599999954],[117.44841640000004,-0.727641499999947],[117.44025590000001,-0.730378299999927],[117.4399959000001,-0.732352899999967],[117.44489410000006,-0.740144599999951],[117.4607966000001,-0.745006899999964],[117.46380610000006,-0.742040699999961],[117.47184360000006,-0.745283299999926],[117.47670630000005,-0.744516699999963],[117.48186680000003,-0.749530899999968],[117.48330550000003,-0.749973599999976],[117.49731230000009,-0.748230799999931],[117.51187770000001,-0.765939299999957],[117.51449410000009,-0.772210399999949],[117.5173625000001,-0.773048],[117.51872280000009,-0.770173399999976],[117.52343050000002,-0.766390799999954],[117.52290710000011,-0.764332299999978],[117.51710470000012,-0.760215899999935],[117.50925760000007,-0.759235399999966],[117.50804430000005,-0.753849799999955],[117.50205040000003,-0.749075599999969],[117.5014695000001,-0.7423733],[117.49939050000012,-0.7399509],[117.497155,-0.741336],[117.498933,-0.742484],[117.49588,-0.745705],[117.496926,-0.739571],[117.49549700000011,-0.73888],[117.492899,-0.743281],[117.494787,-0.739391],[117.491127,-0.740775],[117.49484,-0.738097],[117.497065,-0.739191],[117.498769,-0.738391],[117.49711950000005,-0.736048099999948],[117.487202,-0.731475],[117.484942,-0.732417],[117.481502,-0.737085],[117.48391,-0.738243],[117.48721100000012,-0.742875],[117.483359,-0.738487],[117.480812,-0.739483],[117.479342,-0.74198],[117.481071,-0.738279],[117.4797860000001,-0.738687],[117.47879300000011,-0.740125],[117.474386,-0.742125],[117.472899,-0.741872],[117.478773,-0.739682],[117.480171,-0.737691],[117.47753200000011,-0.736859],[117.4806,-0.736714],[117.4833870000001,-0.733982],[117.48153,-0.732489],[117.479845,-0.733041],[117.48095,-0.732046],[117.478059,-0.729405],[117.482676,-0.732299],[117.484133,-0.731829],[117.484592,-0.729811],[117.4801910000001,-0.727116],[117.480254,-0.724465],[117.480537,-0.726699],[117.482835,-0.727151],[117.484157,-0.724247],[117.48329400000011,-0.722854],[117.484437,-0.723406],[117.483314,-0.727359],[117.486353,-0.730028],[117.487469,-0.725541],[117.486229,-0.724256],[117.486575,-0.720067],[117.486664,-0.724202],[117.488052,-0.725531],[117.48784100000012,-0.729901],[117.491704,-0.730932],[117.491588,-0.72744],[117.493191,-0.725848],[117.492,-0.727494],[117.49267020000002,-0.731283],[117.49391820000005,-0.731875099999968],[117.494678,-0.729276],[117.4942972,-0.732491699999969],[117.4990580000001,-0.735157699999945],[117.50092350000011,-0.7378802],[117.50294540000004,-0.737356899999952],[117.5014466,-0.737906099999975],[117.50359280000009,-0.740131199999951],[117.50556390000008,-0.738725899999963],[117.50710060000006,-0.740130799999974],[117.514801,-0.739806],[117.5072262000001,-0.741290699999979],[117.50943930000005,-0.742561799999976],[117.50702960000001,-0.741769399999953],[117.50522630000012,-0.739214199999935],[117.50315360000002,-0.7410518],[117.503413,-0.748182099999951],[117.5088287000001,-0.751623599999959],[117.5104702000001,-0.758397499999944],[117.51762760000008,-0.758420599999965],[117.52469050000002,-0.763709799999958],[117.524786,-0.767396],[117.520619,-0.7746821],[117.52208990000008,-0.775931699999944],[117.524621,-0.775105499999938],[117.55306150000001,-0.784887199999957],[117.56074400000011,-0.782162599999936],[117.58380620000003,-0.780710799999952],[117.58777740000005,-0.782349899999929],[117.59286010000005,-0.7822594],[117.5967276,-0.7854216],[117.60375360000012,-0.782225099999948],[117.6114923,-0.774049699999978],[117.6144756000001,-0.768400299999939],[117.61680440000009,-0.758502899999939],[117.61614320000001,-0.748444199999938],[117.60879210000007,-0.730141099999969],[117.6052820000001,-0.726666],[117.60172190000003,-0.731948099999954],[117.5914189,-0.735868],[117.58292970000002,-0.732506099999966],[117.5802192000001,-0.734086299999944],[117.57147110000005,-0.7295272],[117.56530050000003,-0.7284724],[117.56089580000003,-0.729268899999965],[117.55593010000007,-0.727239899999972],[117.5426149000001,-0.727956799999959],[117.53524390000007,-0.729839099999936],[117.53252220000002,-0.731313],[117.53613130000008,-0.738177199999939],[117.53740220000009,-0.737882199999945],[117.53674620000004,-0.74124],[117.53787100000011,-0.740247799999963],[117.539362,-0.742814299999964],[117.54598970000006,-0.741089799999941],[117.549742,-0.741979799999967],[117.5584315000001,-0.739658299999974],[117.56121110000004,-0.741667099999972],[117.56237610000005,-0.740431799999953],[117.5645829,-0.741901199999973],[117.56462120000003,-0.744294899999943],[117.56807090000007,-0.746606299999939],[117.5656,-0.746838699999955],[117.55802870000002,-0.740381599999978],[117.5499287,-0.742486],[117.54499450000003,-0.741751799999975],[117.53895790000001,-0.743915399999935],[117.53638740000008,-0.742055299999947],[117.531498,-0.731745699999976],[117.524521,-0.7346479],[117.52757020000001,-0.738142499999924],[117.52686960000005,-0.745474399999978],[117.5298064000001,-0.747005899999976],[117.53093640000009,-0.749257099999966],[117.52930470000001,-0.747223799999972],[117.5268532,-0.747674099999927],[117.52615680000008,-0.741840799999977],[117.52716280000004,-0.738451299999952],[117.52553950000004,-0.736338499999931],[117.51462660000004,-0.736047599999949],[117.4948902000001,-0.7207815],[117.48823140000002,-0.713385699999947],[117.48196550000011,-0.710107],[117.47341720000009,-0.7112808],[117.46587190000002,-0.707485499999962],[117.47204180000006,-0.713202099999933],[117.4717597,-0.714926699999978],[117.46822550000002,-0.714818299999934],[117.47089850000009,-0.717749499999968],[117.472122,-0.718015],[117.473738,-0.715753],[117.475131,-0.716287],[117.476604,-0.715092],[117.476549,-0.716567],[117.47883800000011,-0.716522],[117.476876,-0.717264],[117.473872,-0.716278],[117.472496,-0.71863],[117.46742690000008,-0.7186171],[117.46665660000008,-0.719823599999927],[117.4718004,-0.724498],[117.47672350000005,-0.733244],[117.47573220000004,-0.735767],[117.47644530000002,-0.733660499999928],[117.470769,-0.724234099999933],[117.467472,-0.723996],[117.466299,-0.729388],[117.466973,-0.725045],[117.465199,-0.723182],[117.464843,-0.725326],[117.461179,-0.729144],[117.465641,-0.722123],[117.463713,-0.719337],[117.467683,-0.723145],[117.46842630000003,-0.722220799999945],[117.46597180000003,-0.719395199999951],[117.46714630000008,-0.717992399999957],[117.46995220000008,-0.717843699999946],[117.46753120000005,-0.714847099999929],[117.47154970000008,-0.714195599999925],[117.465402,-0.709077],[117.46446560000004,-0.703358599999945],[117.46009970000011,-0.70266]]],[[[117.5134107,-0.707178099999965],[117.52235930000006,-0.704684499999928],[117.52184530000011,-0.701213699999926],[117.51777890000005,-0.697537499999953],[117.49973620000003,-0.702333199999941],[117.50440010000011,-0.7055674],[117.5134107,-0.707178099999965]]],[[[117.4042730000001,-0.702104299999974],[117.39609630000007,-0.697481299999936],[117.38670780000007,-0.694761199999959],[117.38563840000006,-0.701703],[117.37957540000002,-0.70989],[117.38121690000003,-0.718674799999974],[117.40124010000011,-0.735309399999949],[117.42168730000003,-0.758483399999932],[117.43682580000007,-0.767343399999959],[117.45289960000002,-0.782256799999971],[117.45640960000003,-0.784295799999938],[117.45862810000006,-0.783879099999979],[117.45860430000005,-0.777292399999965],[117.45609680000007,-0.773157199999957],[117.43672190000007,-0.7532888],[117.433725,-0.738370399999951],[117.42308890000004,-0.740267299999971],[117.41845160000003,-0.735851299999979],[117.41650030000005,-0.738150599999926],[117.41952860000004,-0.745250899999974],[117.4219687000001,-0.743598799999972],[117.42362010000011,-0.746917899999971],[117.42944910000006,-0.747174899999948],[117.4287336000001,-0.750272699999925],[117.4301441,-0.750965199999939],[117.43137030000003,-0.752599],[117.4321351000001,-0.756262],[117.43076730000007,-0.755106599999976],[117.43110270000011,-0.752944099999979],[117.42988720000005,-0.751222799999937],[117.42800550000004,-0.750722399999972],[117.42910840000002,-0.747639699999979],[117.42341010000007,-0.747564399999931],[117.4218939000001,-0.744057699999928],[117.42000710000002,-0.745808099999977],[117.41866010000001,-0.745284799999979],[117.41574050000008,-0.737978299999952],[117.42046280000011,-0.730515599999933],[117.411231,-0.727502],[117.410694,-0.729149],[117.4128720000001,-0.732324],[117.410446,-0.732162],[117.40868400000011,-0.73398],[117.410451,-0.731528],[117.412427,-0.73208],[117.41,-0.728525],[117.4127936000001,-0.7240892],[117.40867760000003,-0.725827399999957],[117.40311310000004,-0.722840499999961],[117.40130980000004,-0.715796499999954],[117.400015,-0.714575],[117.398338,-0.715552],[117.396497,-0.71349],[117.396498,-0.715173],[117.394918,-0.715254],[117.39278600000011,-0.71824],[117.392793,-0.716539],[117.394898,-0.714883],[117.39634,-0.714847],[117.39619,-0.713182],[117.398413,-0.71463],[117.396425,-0.712323],[117.39461,-0.713345],[117.391786,-0.712911],[117.38804,-0.715164],[117.391376,-0.712468],[117.390349,-0.712079],[117.390858,-0.711165],[117.387484,-0.710849],[117.38831,-0.710478],[117.390885,-0.710559],[117.391368,-0.711862],[117.39450000000011,-0.712649],[117.39724,-0.711834],[117.391966,-0.707908],[117.391458,-0.704995],[117.39053500000011,-0.706081],[117.387316,-0.70656],[117.388068,-0.705276],[117.390321,-0.705484],[117.39124,-0.703249],[117.389609,-0.702272],[117.390686,-0.702127],[117.391837,-0.702842],[117.391427,-0.704353],[117.39262,-0.703891],[117.39245,-0.70741],[117.395686,-0.707754],[117.39490400000011,-0.706587],[117.3969330000001,-0.70608],[117.395499,-0.710233],[117.39967630000001,-0.713001099999929],[117.400185,-0.711345],[117.404796,-0.70978],[117.404708,-0.710983],[117.403614,-0.710223],[117.400502,-0.711888],[117.400559,-0.713679],[117.403291,-0.716104],[117.404737,-0.715235],[117.40338,-0.716529],[117.40217510000002,-0.715185199999951],[117.40382850000003,-0.722149799999954],[117.40952140000002,-0.724799099999927],[117.4113420000001,-0.72078],[117.41111610000007,-0.722777599999972],[117.413016,-0.722056],[117.415834,-0.72467],[117.41447950000008,-0.727261799999951],[117.4197656,-0.7281087],[117.42262,-0.731057],[117.4245350000001,-0.730487],[117.42219710000006,-0.7315275],[117.42304800000011,-0.738406099999963],[117.43631370000003,-0.734675],[117.436082,-0.7313228],[117.43047060000004,-0.722013699999934],[117.41754580000008,-0.710166099999981],[117.4042730000001,-0.702104299999974]]],[[[117.36774510000009,-0.6960032],[117.36222240000006,-0.694223299999976],[117.362336,-0.687147399999958],[117.36060480000003,-0.685203799999954],[117.35432330000003,-0.682969499999956],[117.34730040000011,-0.686487099999965],[117.34875710000006,-0.693716],[117.35682680000002,-0.695791499999928],[117.35787360000006,-0.702793099999951],[117.36023300000011,-0.703205899999944],[117.36207600000012,-0.701514],[117.36112610000009,-0.703319],[117.365168,-0.705629],[117.36192270000004,-0.712816499999974],[117.36271370000009,-0.716999399999963],[117.36544250000009,-0.719656199999974],[117.37506520000011,-0.715861199999949],[117.37569960000008,-0.711206899999979],[117.37898060000009,-0.705126599999971],[117.37777370000003,-0.693532599999969],[117.36774510000009,-0.6960032]]],[[[117.396269,-0.688457299999925],[117.38751390000004,-0.681480399999941],[117.3845665,-0.681086899999968],[117.3880349000001,-0.6923594],[117.40474820000009,-0.700677699999972],[117.403609,-0.698272],[117.403486,-0.696019],[117.4050370000001,-0.694997],[117.407908,-0.695214],[117.4047541000001,-0.689825799999937],[117.40077330000008,-0.686946499999976],[117.396269,-0.688457299999925]]],[[[117.320349,-0.71944],[117.317872,-0.705643],[117.317397,-0.692036],[117.315054,-0.686074],[117.307665,-0.676168],[117.301046,-0.6952],[117.297969,-0.700162],[117.295194,-0.717189],[117.290879,-0.728154],[117.29106960000001,-0.7444041],[117.29275020000011,-0.753955899999937],[117.30087990000004,-0.772884399999953],[117.29930330000002,-0.772926899999959],[117.29151700000011,-0.781631499999946],[117.29243280000003,-0.798211399999957],[117.29891410000005,-0.801729699999953],[117.30075490000002,-0.805097599999954],[117.30157620000011,-0.817284],[117.30539750000003,-0.831972899999926],[117.30934140000011,-0.839990299999954],[117.31629020000003,-0.834253399999966],[117.327668,-0.833669],[117.33799550000003,-0.837305599999979],[117.34284030000003,-0.834705],[117.34321750000004,-0.830655399999955],[117.3385148000001,-0.8226917],[117.32735330000003,-0.808736599999975],[117.31969050000009,-0.804515799999933],[117.3156785000001,-0.799401399999965],[117.31467070000008,-0.795655899999929],[117.315592,-0.793427699999938],[117.32357800000011,-0.786540399999978],[117.316908,-0.783202699999947],[117.31420610000009,-0.776154499999961],[117.31647610000005,-0.772181099999955],[117.3204406000001,-0.769685699999968],[117.31527820000008,-0.764110199999948],[117.31457950000004,-0.761001599999929],[117.315237,-0.749112399999945],[117.31824240000003,-0.744789099999934],[117.31450430000007,-0.742121099999963],[117.31380490000004,-0.7380326],[117.31780640000011,-0.734175299999947],[117.31194710000011,-0.731983099999979],[117.31090530000006,-0.728177099999925],[117.30713860000003,-0.725367099999971],[117.30777560000001,-0.722427599999946],[117.30485560000011,-0.722231499999964],[117.30423470000005,-0.719590799999935],[117.3050909000001,-0.721791],[117.30809660000011,-0.721960799999977],[117.30776390000005,-0.725082199999974],[117.3118541,-0.7275331],[117.31317640000009,-0.730702299999962],[117.31815110000002,-0.732214799999952],[117.31883620000008,-0.735460699999976],[117.31663920000005,-0.738926899999967],[117.32102440000006,-0.742900199999951],[117.3187554000001,-0.751762099999951],[117.31804240000008,-0.762361699999929],[117.32362790000002,-0.766592],[117.32209450000005,-0.774471199999937],[117.32443500000011,-0.773768],[117.325701,-0.774537],[117.32535,-0.773532],[117.325936,-0.772772],[117.327086,-0.774229],[117.325983,-0.774084],[117.325795,-0.773152],[117.325936,-0.774699],[117.32443500000011,-0.774591],[117.326358,-0.77631],[117.324106,-0.77431],[117.32194550000008,-0.774870899999939],[117.3198963000001,-0.779092899999966],[117.325478,-0.78096],[117.3274090000001,-0.784552],[117.326855,-0.788107],[117.319804,-0.798648],[117.3232,-0.801694],[117.32590960000005,-0.801670299999955],[117.34056720000001,-0.809487499999932],[117.34429510000007,-0.814735499999927],[117.34739900000011,-0.823173099999963],[117.34767330000011,-0.832771899999955],[117.34379290000004,-0.839232299999935],[117.3390485000001,-0.842168],[117.31993200000011,-0.847855],[117.320976,-0.852397],[117.31943500000011,-0.85142],[117.319366,-0.848298],[117.316313,-0.849104],[117.312438,-0.852841],[117.310491,-0.857057],[117.314924,-0.878245],[117.31875,-0.881763],[117.319049,-0.886559],[117.321612,-0.891453],[117.324958,-0.893516],[117.324818,-0.897144],[117.327916,-0.903639],[117.33199900000011,-0.908135],[117.343531,-0.913879],[117.349104,-0.908866],[117.351907,-0.903619],[117.35837220000008,-0.8968009],[117.35658,-0.887533],[117.357795,-0.881113],[117.362102,-0.881177],[117.361796,-0.887993],[117.36810160000005,-0.893317699999955],[117.3735918000001,-0.894123499999978],[117.3756843000001,-0.893536599999948],[117.3816567,-0.886260899999968],[117.39170700000011,-0.879387],[117.39301000000012,-0.87685],[117.390215,-0.867083],[117.386401,-0.860352],[117.376146,-0.847968],[117.374625,-0.847855],[117.372624,-0.841284],[117.37344,-0.833628],[117.370218,-0.825079],[117.362362,-0.815218],[117.360509,-0.814214],[117.359592,-0.816259],[117.3592450000001,-0.814821],[117.355271,-0.812993],[117.346974,-0.803223],[117.345377,-0.797506],[117.347663,-0.803196],[117.354305,-0.811148],[117.36006,-0.814015],[117.3493830000001,-0.789073],[117.337508,-0.777119],[117.336427,-0.772961],[117.329171,-0.76709],[117.328567,-0.748471],[117.321107,-0.729808],[117.320349,-0.71944]]],[[[117.454098,-0.681096],[117.45214410000006,-0.676634199999967],[117.43527620000009,-0.662736],[117.4317962,-0.6760429],[117.42673910000008,-0.682671499999969],[117.42199540000001,-0.683612599999947],[117.41428350000001,-0.6775093],[117.40846250000004,-0.677416499999936],[117.41446250000001,-0.685616799999934],[117.4157901000001,-0.693379499999935],[117.41334360000008,-0.696955899999978],[117.41031180000004,-0.697092599999962],[117.405837,-0.695223],[117.404068,-0.6963],[117.404055,-0.698254],[117.40544950000003,-0.701076899999975],[117.42330980000008,-0.709676199999933],[117.43937340000002,-0.731430299999943],[117.44056020000005,-0.729581199999927],[117.45040290000009,-0.726091599999961],[117.45264980000002,-0.724511499999949],[117.45241190000002,-0.722931699999947],[117.45094920000008,-0.720047499999964],[117.44549180000001,-0.717762],[117.44545590000007,-0.715260599999965],[117.44734610000012,-0.713572899999974],[117.44633540000007,-0.711933299999941],[117.44262590000005,-0.712436299999979],[117.44065,-0.709971499999938],[117.437314,-0.711242],[117.43979700000011,-0.711269],[117.440954,-0.713006],[117.438116,-0.714771],[117.439489,-0.716652],[117.437623,-0.720317],[117.438814,-0.716607],[117.437647,-0.714617],[117.440243,-0.713178],[117.43952,-0.711658],[117.436157,-0.713151],[117.437939,-0.710102],[117.43664500000011,-0.708356],[117.4351,-0.710048],[117.436043,-0.707606],[117.434388,-0.705045],[117.430552,-0.707163],[117.43326600000012,-0.705145],[117.431495,-0.701038],[117.430492,-0.702223],[117.428693,-0.700613],[117.427556,-0.701337],[117.427803,-0.705706],[117.427204,-0.700821],[117.426037,-0.700749],[117.42872100000011,-0.699835],[117.430803,-0.701834],[117.43164600000011,-0.700604],[117.432929,-0.704032],[117.4347570000001,-0.704629],[117.438711,-0.709279],[117.44160410000006,-0.705423899999971],[117.445526,-0.705113499999925],[117.4458585000001,-0.700613299999929],[117.44772640000008,-0.698213499999952],[117.44296140000006,-0.696164],[117.44182,-0.69711],[117.440509,-0.696351],[117.44003,-0.697862],[117.4398920000001,-0.69617],[117.442145,-0.696414],[117.440866,-0.695485299999973],[117.436495,-0.69579],[117.435553,-0.698513],[117.435645,-0.694415],[117.428298,-0.696189],[117.434328,-0.694623],[117.435132,-0.692262],[117.42892620000009,-0.688264599999968],[117.4270858000001,-0.689097799999956],[117.42534520000004,-0.688595299999974],[117.42319320000001,-0.690383699999927],[117.42522150000002,-0.688336699999979],[117.42737110000007,-0.688642899999934],[117.429604,-0.68687],[117.422566,-0.686744],[117.426127,-0.684699],[117.426552,-0.686192],[117.429566,-0.685685],[117.43001540000012,-0.688140099999941],[117.432965,-0.689009899999974],[117.43333970000003,-0.6909787],[117.43560460000003,-0.691181899999947],[117.43693660000008,-0.694586799999968],[117.4384983000001,-0.694775599999957],[117.43491410000001,-0.682240499999978],[117.43921440000008,-0.6945898],[117.442469,-0.694053],[117.440174,-0.691348],[117.439954,-0.689792],[117.4409250000001,-0.688244],[117.440363,-0.69028],[117.441714,-0.692044],[117.443862,-0.690868],[117.442785,-0.693012],[117.443811,-0.695411799999931],[117.448639,-0.695653],[117.447237,-0.694821],[117.448914,-0.691654],[117.449005,-0.69388],[117.447627,-0.694658],[117.449371,-0.695798],[117.44646030000001,-0.696264499999927],[117.44887130000006,-0.698101799999961],[117.4481181000001,-0.700825799999961],[117.45001700000012,-0.700484],[117.450845,-0.697933],[117.450301,-0.700738],[117.44781300000011,-0.701832099999933],[117.46374920000005,-0.700758599999972],[117.47143710000012,-0.706829899999946],[117.46709090000002,-0.699181399999929],[117.45559290000006,-0.687214],[117.45344050000006,-0.682688199999973],[117.44994,-0.681685],[117.447151,-0.68477],[117.4449350000001,-0.684064],[117.446405,-0.683277],[117.445576,-0.682155],[117.446954,-0.683223],[117.4454730000001,-0.683983],[117.446742,-0.684227],[117.4481320000001,-0.681621],[117.454098,-0.681096]]],[[[117.4939309,-0.6598851],[117.48977990000003,-0.650047399999949],[117.4869026,-0.649018399999932],[117.48340740000003,-0.650359199999968],[117.4832411000001,-0.652633199999968],[117.48699870000007,-0.659478799999931],[117.49022920000004,-0.660458899999981],[117.49361280000005,-0.6669833],[117.4984045000001,-0.6693197],[117.49957340000003,-0.674371599999972],[117.50039920000006,-0.673446599999977],[117.50202320000005,-0.674415199999942],[117.50493930000005,-0.673333699999944],[117.5050963000001,-0.674377099999958],[117.50461590000009,-0.673513],[117.50189480000006,-0.674693099999956],[117.50008070000001,-0.673862899999961],[117.50296050000009,-0.677160799999967],[117.50736020000011,-0.677383599999928],[117.50878210000008,-0.677972699999941],[117.50925080000002,-0.680812199999934],[117.51235110000005,-0.681561399999964],[117.514046,-0.680173499999967],[117.51244740000004,-0.681773899999939],[117.50913880000007,-0.681060399999978],[117.50883060000001,-0.678394499999968],[117.50720380000007,-0.677656099999979],[117.50663530000008,-0.678927199999976],[117.50420040000006,-0.677955599999962],[117.50094290000004,-0.680117099999961],[117.50358270000004,-0.682931699999926],[117.5035021000001,-0.685522899999967],[117.50678770000002,-0.685428699999932],[117.50791740000011,-0.687185499999941],[117.50878520000003,-0.686608599999943],[117.51036420000003,-0.687259499999925],[117.51072060000001,-0.686535099999958],[117.51073250000002,-0.687527299999942],[117.50877570000011,-0.686773],[117.50793980000003,-0.687495499999955],[117.50649010000006,-0.685733399999947],[117.50337130000003,-0.685707299999933],[117.50279440000008,-0.682518399999935],[117.50049420000005,-0.684497299999975],[117.50061030000006,-0.6798929],[117.502845,-0.678099399999951],[117.50138270000002,-0.675709499999925],[117.49810410000009,-0.676262799999961],[117.495299,-0.673936],[117.49351,-0.674524],[117.493537,-0.681273],[117.49054300000012,-0.682341],[117.489496,-0.684503],[117.490014,-0.682821],[117.48658200000011,-0.682504],[117.493264,-0.680993],[117.49306,-0.675148],[117.491506,-0.67646],[117.49036,-0.674968],[117.491911,-0.675899],[117.493063,-0.672932],[117.49897020000003,-0.675221399999941],[117.49763770000004,-0.669891399999926],[117.49305720000007,-0.667404899999951],[117.48900020000008,-0.660825699999975],[117.48688270000002,-0.660865199999932],[117.48141160000011,-0.666540699999928],[117.47977120000007,-0.670418599999948],[117.4739224000001,-0.676547],[117.47204440000007,-0.681478199999958],[117.4732924000001,-0.685706],[117.48873950000007,-0.692263099999934],[117.5052564,-0.693992299999934],[117.51131980000002,-0.693718799999942],[117.52870640000003,-0.689274299999965],[117.52947490000008,-0.679087699999968],[117.531408,-0.673937899999942],[117.523712,-0.660515099999941],[117.51399680000009,-0.665576299999941],[117.51531390000002,-0.6671938],[117.51725190000002,-0.665663299999949],[117.517241,-0.667799199999934],[117.5193686,-0.667333299999939],[117.52075650000006,-0.669241099999965],[117.52136140000005,-0.670688499999926],[117.52121590000002,-0.672016599999949],[117.52021650000006,-0.672715799999935],[117.5194891000001,-0.6708405],[117.51819960000012,-0.670976499999938],[117.51845140000012,-0.673341499999935],[117.5179379000001,-0.670908199999928],[117.51954220000005,-0.670638],[117.52045510000005,-0.672530599999959],[117.52116620000004,-0.670720699999947],[117.51949420000005,-0.667645899999968],[117.51707540000007,-0.667939],[117.51713440000003,-0.6658672],[117.515144,-0.667426899999953],[117.513632,-0.665620699999977],[117.50328850000005,-0.665241199999969],[117.49797380000007,-0.663245399999937],[117.4939309,-0.6598851]]],[[[117.32948290000002,-0.634644199999968],[117.3241349000001,-0.632959199999959],[117.320415,-0.633585899999957],[117.32302310000011,-0.635822099999928],[117.32064220000007,-0.6403713],[117.32383240000001,-0.641094299999963],[117.32474270000012,-0.643110899999954],[117.32376870000007,-0.645775199999946],[117.32043070000009,-0.647692899999925],[117.32503840000004,-0.648758799999939],[117.32499170000006,-0.654269799999952],[117.3291961000001,-0.659574],[117.3348171,-0.655092599999932],[117.33278590000009,-0.651355899999942],[117.33579440000005,-0.649541499999941],[117.3344121,-0.647296],[117.3351444000001,-0.645989],[117.33617190000007,-0.649407099999962],[117.33322350000003,-0.651686199999972],[117.338089,-0.655054099999973],[117.33915360000003,-0.658420199999966],[117.33730960000003,-0.662972599999932],[117.33388570000011,-0.665088899999944],[117.3293996000001,-0.665475399999934],[117.3289684,-0.667655299999979],[117.33340090000002,-0.669857199999967],[117.33943120000004,-0.669914299999959],[117.34469790000003,-0.67637],[117.344358,-0.672588899999937],[117.3460520000001,-0.670805899999948],[117.342921,-0.670064899999943],[117.344777,-0.667929899999933],[117.343776,-0.665079899999967],[117.343088,-0.667096899999933],[117.3392500000001,-0.665948899999933],[117.342676,-0.661713899999938],[117.339765,-0.665812899999935],[117.3429880000001,-0.666671899999926],[117.343848,-0.664563899999962],[117.34519000000012,-0.6677579],[117.343458,-0.670163899999977],[117.346556,-0.670742899999937],[117.344962,-0.672986899999955],[117.3453290000001,-0.676532899999927],[117.36228830000005,-0.685155799999961],[117.36352550000004,-0.694137],[117.36851910000007,-0.694653599999924],[117.37543370000003,-0.6920774],[117.37831570000003,-0.692546399999969],[117.37960340000006,-0.690351499999963],[117.37877920000005,-0.687005099999965],[117.37129960000004,-0.686434799999972],[117.36644830000012,-0.679972099999929],[117.36315600000012,-0.679114299999981],[117.3620466000001,-0.676895399999978],[117.35822650000011,-0.676525799999979],[117.35663910000005,-0.673958699999957],[117.35735940000006,-0.670482899999968],[117.3548373000001,-0.666361099999961],[117.35769080000011,-0.670265899999947],[117.35712060000003,-0.673886799999934],[117.35861420000003,-0.676254099999937],[117.36216070000012,-0.676489599999968],[117.36342710000008,-0.678647499999954],[117.366837,-0.679587899999945],[117.37133170000004,-0.685853099999974],[117.37933210000006,-0.686768099999938],[117.38018480000005,-0.6904197],[117.3788770000001,-0.693063399999971],[117.381192,-0.704456199999925],[117.3836894000001,-0.700171399999931],[117.3833787000001,-0.693803899999978],[117.37015570000005,-0.666708099999937],[117.341358,-0.639876499999957],[117.32948290000002,-0.634644199999968]]],[[[117.36430910000001,-0.645885699999951],[117.3674132000001,-0.644245399999932],[117.3566753,-0.640786099999957],[117.3467518000001,-0.627417299999934],[117.34274560000006,-0.628513],[117.346841,-0.632386899999972],[117.34856270000012,-0.636770099999978],[117.37745610000002,-0.671117899999956],[117.39495660000011,-0.686485699999935],[117.39975030000005,-0.685580499999958],[117.40280350000012,-0.686499399999946],[117.40999490000002,-0.695561399999974],[117.41356170000006,-0.6954174],[117.41480270000011,-0.692587899999978],[117.4139748,-0.6880292],[117.40704960000005,-0.677569299999959],[117.40998850000005,-0.675587099999973],[117.41512420000004,-0.676337],[117.418967,-0.670269499999961],[117.41761840000004,-0.665637799999956],[117.412696,-0.662772899999936],[117.408452,-0.668783899999937],[117.40440750000005,-0.671053499999971],[117.39629780000007,-0.668439299999932],[117.39479990000007,-0.671853699999929],[117.39568220000001,-0.6741613],[117.39416970000002,-0.674452199999962],[117.39509060000012,-0.678129199999944],[117.39394370000002,-0.674428099999943],[117.39547020000009,-0.674075899999934],[117.39492490000009,-0.672574],[117.3894643000001,-0.674314],[117.38719090000006,-0.673482],[117.38476250000008,-0.663679099999968],[117.37511080000002,-0.663464399999953],[117.37252110000009,-0.661464699999954],[117.37213580000002,-0.659787899999969],[117.37752840000007,-0.6553567],[117.37840840000001,-0.650314899999955],[117.378184,-0.655097099999978],[117.3730144000001,-0.659521],[117.37297170000011,-0.660875799999928],[117.3757587,-0.662958099999969],[117.38505,-0.662925899999948],[117.38818950000007,-0.672883499999955],[117.3933876000001,-0.671671099999969],[117.39467850000005,-0.669092899999953],[117.39198740000006,-0.663471199999947],[117.39506950000009,-0.658563499999957],[117.39345830000002,-0.655924599999935],[117.39087840000002,-0.657379],[117.38842920000002,-0.656565299999954],[117.3881675,-0.655296699999951],[117.39046440000004,-0.653536],[117.3875670000001,-0.653375799999935],[117.38653840000006,-0.651646399999947],[117.38888310000004,-0.649933499999975],[117.3869658000001,-0.651951499999939],[117.39075590000004,-0.653383299999973],[117.38853290000009,-0.655547],[117.38965270000006,-0.656818099999953],[117.39335090000009,-0.655462599999964],[117.39881390000005,-0.6604618],[117.40549810000005,-0.66077],[117.40706010000008,-0.657610199999965],[117.40665320000005,-0.654587],[117.4016739000001,-0.653431199999943],[117.39631640000005,-0.649754899999948],[117.396496,-0.648263799999938],[117.40073540000003,-0.643615],[117.39667720000011,-0.648918],[117.40131720000011,-0.652634099999943],[117.40677870000002,-0.653628],[117.4079488000001,-0.6556674],[117.40743540000005,-0.659143099999937],[117.40431880000006,-0.661974099999952],[117.3951307000001,-0.660557799999935],[117.39341890000003,-0.664742199999978],[117.40430030000005,-0.668963799999972],[117.40730580000002,-0.6671252],[117.41101480000009,-0.661676799999952],[117.4153424000001,-0.661360399999978],[117.41828160000011,-0.663706],[117.42046010000001,-0.668636899999967],[117.41851090000011,-0.677510899999959],[117.42355220000002,-0.680564799999956],[117.42615830000011,-0.680555],[117.42918210000005,-0.671085299999959],[117.429062,-0.6674159],[117.427045,-0.667388899999935],[117.429112,-0.666791899999964],[117.42942960000005,-0.667811599999936],[117.43244620000007,-0.657275399999946],[117.42599570000004,-0.658452799999964],[117.42293540000003,-0.657519499999978],[117.42092520000006,-0.646866799999941],[117.41483340000002,-0.6489881],[117.41118820000008,-0.648159299999975],[117.41031520000001,-0.645603799999947],[117.4137531,-0.640409099999943],[117.4121646000001,-0.638542199999961],[117.39494840000009,-0.630261299999972],[117.38183980000008,-0.634347799999944],[117.37979120000011,-0.634131],[117.37356510000006,-0.630833399999972],[117.37266750000003,-0.639269],[117.36871280000003,-0.6531223],[117.36502170000006,-0.652910099999929],[117.36117080000008,-0.6501656],[117.3602787000001,-0.648144199999933],[117.36061640000003,-0.6462604],[117.36430910000001,-0.645885699999951]]],[[[117.49051680000002,-0.627561599999979],[117.47935840000002,-0.625687199999959],[117.46417620000011,-0.626382699999965],[117.46038370000008,-0.628190299999972],[117.45887410000012,-0.631194499999935],[117.4676492000001,-0.645863799999972],[117.471687,-0.643292],[117.474185,-0.639266],[117.474184,-0.641266],[117.4683030000001,-0.646341],[117.47010200000011,-0.647789],[117.4680052000001,-0.647572699999955],[117.47052660000008,-0.656656599999963],[117.47745870000006,-0.664818399999945],[117.48106110000003,-0.664901799999939],[117.48465110000006,-0.660173899999961],[117.48111960000006,-0.655147499999941],[117.48074740000004,-0.652212799999973],[117.47766600000011,-0.649778],[117.48081800000011,-0.651008],[117.48404360000006,-0.6476789],[117.48819350000008,-0.646868199999972],[117.488534,-0.645181],[117.4863610000001,-0.641246],[117.481058,-0.638225],[117.48822,-0.642259],[117.48898,-0.647027],[117.49413410000011,-0.652098599999931],[117.49883120000004,-0.6609428],[117.50501370000006,-0.663012699999967],[117.5102925000001,-0.663000199999942],[117.51450040000009,-0.6548732],[117.51704450000011,-0.653353],[117.51553360000003,-0.643646799999942],[117.51313190000008,-0.642390399999954],[117.50124710000011,-0.642193],[117.49771610000005,-0.636684399999979],[117.49855920000005,-0.626403499999981],[117.49051680000002,-0.627561599999979]]],[[[117.32256380000001,-0.6328288],[117.31141960000002,-0.619244399999957],[117.30561730000011,-0.614864199999943],[117.30094310000004,-0.614474899999948],[117.30005,-0.629581899999948],[117.30383,-0.643079899999975],[117.304527,-0.634737899999948],[117.305227,-0.635687899999937],[117.304421,-0.647828899999979],[117.306838,-0.662150899999972],[117.314994,-0.679267899999957],[117.31295000000011,-0.658422899999948],[117.311113,-0.655654899999945],[117.311889,-0.646959899999956],[117.31177900000012,-0.655482899999924],[117.31358000000012,-0.6584409],[117.315678,-0.679656899999941],[117.319952,-0.687852899999939],[117.324194,-0.717698899999959],[117.330271,-0.714115899999967],[117.3265080000001,-0.709999899999957],[117.326518,-0.706670899999949],[117.32902700000011,-0.706235899999967],[117.332065,-0.7090679],[117.333766,-0.707882899999959],[117.33163900000011,-0.704082899999946],[117.33145900000011,-0.701766899999939],[117.334645,-0.695604899999978],[117.330473,-0.694736899999953],[117.331117,-0.6978489],[117.329866,-0.694800899999962],[117.33167,-0.693641899999932],[117.329864,-0.6931989],[117.329008,-0.691163899999935],[117.332877,-0.694682899999975],[117.337609,-0.695681],[117.338747,-0.69854],[117.341555,-0.694323],[117.339134,-0.698865],[117.337633,-0.699101],[117.337912,-0.696721],[117.336166,-0.69588],[117.332128,-0.700928],[117.332232,-0.70433],[117.33448,-0.707352],[117.3337,-0.709288],[117.331969,-0.709849],[117.328316,-0.706547],[117.326846,-0.707262],[117.327071,-0.709695],[117.330593,-0.712029],[117.3317770000001,-0.714906],[117.326048,-0.717648],[117.326536,-0.722054],[117.330642,-0.727699],[117.340155,-0.736067],[117.33884000000012,-0.737768],[117.3404,-0.739215],[117.338543,-0.739641],[117.337338,-0.744616],[117.332018,-0.750009],[117.333469,-0.757455],[117.338024,-0.763028],[117.348989,-0.769025],[117.353378,-0.775294],[117.354115,-0.78208],[117.361597,-0.803484],[117.365753,-0.809503],[117.377512,-0.819876],[117.382635,-0.828434],[117.38676,-0.843289],[117.399712,-0.856388],[117.403288,-0.863616],[117.40552990000003,-0.875740499999949],[117.40998050000007,-0.88442],[117.41404710000006,-0.886954499999945],[117.41914050000003,-0.884964699999955],[117.42386980000003,-0.880906899999957],[117.42251090000002,-0.875581799999964],[117.41554760000008,-0.871780099999967],[117.4194619000001,-0.8649284],[117.41317060000006,-0.864473299999929],[117.41430910000008,-0.86581],[117.41417220000005,-0.866352899999924],[117.41244250000011,-0.8688234],[117.40976580000006,-0.868975399999954],[117.41053980000004,-0.870560599999976],[117.40902190000008,-0.872489399999949],[117.41032530000007,-0.870463],[117.409432,-0.868798599999934],[117.41252450000002,-0.868550499999969],[117.414058,-0.866076499999963],[117.41292350000003,-0.865105399999948],[117.41304580000008,-0.8642848],[117.419883,-0.864854899999955],[117.42604110000002,-0.861160799999936],[117.42643470000007,-0.857806799999935],[117.42394600000011,-0.857869],[117.42651050000006,-0.85672],[117.42538900000011,-0.856075699999963],[117.425675,-0.854187],[117.4242670000001,-0.853138],[117.425816,-0.853997],[117.42558480000002,-0.856087199999934],[117.429102,-0.856919],[117.428028,-0.859443],[117.428682,-0.857489],[117.42683420000003,-0.857027099999925],[117.42720440000005,-0.863279499999976],[117.42513470000006,-0.866133699999978],[117.42529980000006,-0.867271599999924],[117.42800410000007,-0.8687061],[117.432905,-0.866776499999958],[117.43319290000011,-0.8695493],[117.43608240000003,-0.871067599999947],[117.437408,-0.875374],[117.43921200000011,-0.874822],[117.436611,-0.876079],[117.439881,-0.882765],[117.4353403,-0.885902899999962],[117.43799450000006,-0.8922173],[117.4413257000001,-0.892690799999968],[117.4478329000001,-0.888498799999979],[117.444954,-0.8854807],[117.44588090000002,-0.881148],[117.4449174,-0.877234399999963],[117.43624820000002,-0.863818699999968],[117.43429730000003,-0.855309399999953],[117.43416530000002,-0.844142799999929],[117.430677,-0.843746],[117.431403,-0.846243],[117.429435,-0.848921],[117.431147,-0.846406],[117.430349,-0.843891],[117.41904840000007,-0.843371199999979],[117.40385630000003,-0.837878499999931],[117.40454650000004,-0.841919799999971],[117.40347950000012,-0.843405],[117.4046039000001,-0.844632899999965],[117.404602,-0.846047399999975],[117.40588,-0.846083],[117.40584300000012,-0.844644],[117.406941,-0.844092],[117.406486,-0.845721],[117.407537,-0.845151],[117.4081010000001,-0.845295],[117.4082,-0.845865],[117.406641,-0.847132],[117.406726,-0.8463],[117.408058,-0.845657],[117.407656,-0.84535],[117.406395,-0.845983],[117.40656700000011,-0.844309],[117.405915,-0.844762],[117.406091,-0.846038],[117.405602,-0.846436],[117.4013900000001,-0.847585],[117.404115,-0.847974],[117.402987,-0.850299],[117.405252,-0.851692],[117.404936,-0.853067],[117.407278,-0.852669],[117.407929,-0.854596],[117.40782800000011,-0.853727],[117.408949,-0.853338],[117.408748,-0.854324],[117.407992,-0.853791],[117.408527,-0.855736],[117.407637,-0.855962],[117.408791,-0.856396],[117.407523,-0.85627],[117.407587,-0.855672],[117.408453,-0.855482],[117.407553,-0.854505],[117.407235,-0.853067],[117.404962,-0.853375],[117.402778,-0.850516],[117.403881,-0.848073],[117.401202,-0.847567],[117.401545,-0.846499],[117.40451150000001,-0.845760799999937],[117.40321720000009,-0.843442299999936],[117.40428710000003,-0.841849099999934],[117.40323560000002,-0.837900799999943],[117.40160430000003,-0.837208399999952],[117.3974644000001,-0.838817399999925],[117.39043330000004,-0.835775299999966],[117.39431880000006,-0.830392599999925],[117.39301180000007,-0.826753],[117.39141,-0.828678],[117.389686,-0.827429],[117.391476,-0.828108],[117.39270490000001,-0.826259799999946],[117.39218,-0.825209899999948],[117.39296330000002,-0.824551099999951],[117.391144,-0.822788],[117.393981,-0.825149],[117.394508,-0.823774],[117.396992,-0.823484],[117.398167,-0.823683],[117.39554,-0.823792],[117.394241,-0.825348],[117.392546,-0.825242799999955],[117.394665,-0.83065],[117.397668,-0.830622],[117.398336,-0.831843],[117.39419370000007,-0.831193],[117.39093190000006,-0.835897799999941],[117.39752880000003,-0.838249599999926],[117.4018565,-0.836588],[117.4094186000001,-0.839447699999937],[117.41124710000008,-0.838959199999977],[117.3984206,-0.803306199999952],[117.3969191000001,-0.8030236],[117.39546650000011,-0.805285699999956],[117.39774590000002,-0.807784099999935],[117.39773720000005,-0.809758899999963],[117.39291030000004,-0.813041699999928],[117.38958690000004,-0.811052299999972],[117.3920604000001,-0.8148251],[117.38766150000004,-0.818113899999958],[117.38598800000011,-0.817500699999925],[117.38649,-0.814843599999961],[117.383845,-0.816836],[117.38587080000002,-0.814783],[117.38481820000004,-0.811955699999942],[117.38109190000011,-0.812058399999955],[117.38260560000003,-0.808825599999977],[117.378351,-0.810286],[117.376042,-0.808803],[117.374133,-0.810296],[117.376228,-0.80854],[117.3781120000001,-0.809698],[117.377005,-0.806324],[117.378091,-0.807228],[117.38079960000005,-0.804690699999981],[117.377588,-0.800307],[117.379115,-0.800678],[117.38097890000006,-0.804560699999968],[117.38362030000008,-0.804901299999926],[117.38559240000006,-0.801317499999925],[117.38325870000006,-0.801354899999978],[117.38147530000003,-0.797851099999946],[117.38409,-0.795946],[117.38207280000006,-0.798500799999943],[117.38369980000004,-0.800876399999936],[117.38608040000008,-0.800944499999957],[117.38587920000009,-0.802470699999958],[117.387696,-0.803871],[117.388516,-0.803844],[117.38805700000012,-0.802315],[117.388975,-0.802731],[117.38894,-0.804142],[117.387442,-0.804369],[117.38555750000012,-0.8030512],[117.38387780000005,-0.805433799999946],[117.38152220000006,-0.804903199999956],[117.37874910000005,-0.807857299999966],[117.38301350000006,-0.808398799999964],[117.38176840000006,-0.811887699999943],[117.38524450000011,-0.811401299999943],[117.38756620000004,-0.814420199999972],[117.3864956000001,-0.817035699999963],[117.38753420000012,-0.817443],[117.39149,-0.814376],[117.38903550000009,-0.812357099999929],[117.38910930000009,-0.810585299999957],[117.3928016000001,-0.812331299999926],[117.39719610000009,-0.8093897],[117.3947846000001,-0.8047517],[117.39728680000007,-0.801623499999948],[117.39157990000001,-0.779821899999945],[117.389468,-0.776841899999965],[117.38045040000009,-0.780457799999965],[117.38294,-0.784646],[117.38020790000007,-0.780523399999936],[117.3741791000001,-0.780960199999924],[117.373286,-0.786439],[117.369355,-0.791207],[117.369523,-0.793713],[117.372106,-0.796146],[117.369172,-0.794192],[117.369212,-0.789578],[117.3676640000001,-0.78918],[117.366883,-0.784404],[117.365708,-0.78292],[117.364043,-0.782802],[117.364793,-0.782278],[117.366318,-0.783083],[117.367471,-0.785308],[117.36815600000011,-0.789126],[117.3728880000001,-0.786529],[117.37322690000008,-0.780472],[117.3714768000001,-0.777963799999952],[117.37119730000006,-0.773154299999931],[117.368459,-0.771005],[117.371062,-0.772606],[117.37509980000004,-0.767565199999979],[117.37629110000012,-0.766803899999957],[117.3780746000001,-0.767227399999967],[117.37845960000004,-0.765381799999943],[117.3724668000001,-0.759062899999947],[117.37165750000008,-0.749409599999979],[117.36782660000006,-0.7480599],[117.366931,-0.758643799999959],[117.36497630000008,-0.758687099999975],[117.36260760000005,-0.754134399999941],[117.35531350000008,-0.756167299999959],[117.35904810000011,-0.757165199999974],[117.359831,-0.760565],[117.35718280000003,-0.759308899999951],[117.35280640000008,-0.760648599999968],[117.35030940000001,-0.758781699999929],[117.349012,-0.759316799999965],[117.34820460000003,-0.762689],[117.35097840000003,-0.762117599999954],[117.35193820000006,-0.763832799999932],[117.35134860000005,-0.766278399999976],[117.35446350000007,-0.764975299999946],[117.35489510000002,-0.766154799999924],[117.3543519000001,-0.765269499999931],[117.35153170000001,-0.7667295],[117.350829,-0.765754099999924],[117.35164040000006,-0.764399499999968],[117.35121780000009,-0.762629299999958],[117.34789980000005,-0.762718],[117.347902,-0.760321799999929],[117.34990660000005,-0.758173699999929],[117.348407,-0.756965],[117.348578,-0.755219],[117.347289,-0.755147],[117.346348,-0.755988],[117.3456460000001,-0.755699],[117.345071,-0.752867],[117.34617,-0.753627],[117.3455560000001,-0.75483],[117.34604500000012,-0.755753],[117.347384,-0.754767],[117.348579,-0.754939],[117.348853,-0.756829],[117.35256460000005,-0.759977099999958],[117.3581895000001,-0.758554799999956],[117.35854960000006,-0.757685899999956],[117.355047,-0.757377399999939],[117.35429420000003,-0.756052499999953],[117.3572617000001,-0.7541995],[117.35636860000011,-0.748294],[117.3600636000001,-0.745952699999975],[117.3573732000001,-0.743128],[117.3525376,-0.743677799999944],[117.35119070000007,-0.7417163],[117.3489995000001,-0.744444499999929],[117.34777760000009,-0.743464599999925],[117.34957240000006,-0.743322399999954],[117.3476207000001,-0.741349399999933],[117.34988540000006,-0.743146],[117.35115240000005,-0.741491799999949],[117.35267920000001,-0.742984699999965],[117.36041280000006,-0.74145],[117.35426220000011,-0.733524199999977],[117.34932910000009,-0.731776599999932],[117.35437660000002,-0.733231799999942],[117.35737160000008,-0.737270699999954],[117.35924250000005,-0.736315599999955],[117.36100310000006,-0.737768399999936],[117.36178910000001,-0.734843299999966],[117.35848340000007,-0.732485099999963],[117.35942260000002,-0.731644199999948],[117.3587966,-0.732623399999966],[117.36109470000008,-0.733187799999939],[117.36322940000002,-0.729622399999926],[117.36135560000002,-0.732756699999925],[117.36225040000011,-0.734792899999945],[117.36160860000007,-0.737823399999968],[117.36051480000003,-0.738053299999933],[117.3594256,-0.736856599999953],[117.35889770000006,-0.737172599999951],[117.36139720000006,-0.741241699999932],[117.35867230000008,-0.742800199999976],[117.36096960000009,-0.746290099999953],[117.3568752000001,-0.749823599999957],[117.35841550000009,-0.753056599999979],[117.36440470000002,-0.753131199999928],[117.36592220000011,-0.756521899999939],[117.36577450000004,-0.749051],[117.367087,-0.746781699999929],[117.37021630000004,-0.746714399999973],[117.37410920000002,-0.750149399999941],[117.37781230000007,-0.749914599999954],[117.38034540000001,-0.738986599999976],[117.3831037000001,-0.737464],[117.38852530000008,-0.738478399999963],[117.38956480000002,-0.736579099999972],[117.38702,-0.731049799999937],[117.381371,-0.725632],[117.380797,-0.736706],[117.37864600000012,-0.740325],[117.37436,-0.743284],[117.380477,-0.736679],[117.38027660000012,-0.724442599999975],[117.37512950000007,-0.717813599999943],[117.36657810000008,-0.720811099999935],[117.36349860000007,-0.719889799999976],[117.36123940000004,-0.7164909],[117.3606837000001,-0.710907599999928],[117.35750670000004,-0.709161199999926],[117.35400760000005,-0.708867399999974],[117.35096450000003,-0.710986299999945],[117.35079610000003,-0.717810399999962],[117.34681120000005,-0.719582299999956],[117.344238,-0.7188611],[117.34328670000002,-0.720699699999955],[117.3411248000001,-0.720994899999937],[117.34442130000002,-0.718550199999925],[117.35057630000006,-0.717670399999975],[117.34993520000012,-0.711368],[117.351988,-0.709168399999953],[117.35630220000007,-0.708185],[117.36139350000008,-0.710650199999975],[117.36444870000003,-0.705970199999967],[117.35727920000011,-0.703152199999977],[117.35660690000009,-0.6964438],[117.353379,-0.697652],[117.3509600000001,-0.696603],[117.348378,-0.699425],[117.35054900000011,-0.696349],[117.353142,-0.69729],[117.354191,-0.695924],[117.34845060000009,-0.693853199999978],[117.34670230000006,-0.686678099999938],[117.34364080000012,-0.685756799999979],[117.3421009000001,-0.683698299999946],[117.33942,-0.685685299999932],[117.33879850000005,-0.684474799999975],[117.3421231000001,-0.683418899999936],[117.34392240000011,-0.685599299999978],[117.3468544000001,-0.686090399999955],[117.35260540000002,-0.682187599999963],[117.34415890000002,-0.677305799999942],[117.33943120000004,-0.670871699999964],[117.33380050000005,-0.670987],[117.32853160000002,-0.668230599999958],[117.324832,-0.669034899999929],[117.325638,-0.671911899999941],[117.3225470000001,-0.677538899999945],[117.325263,-0.671440899999936],[117.324062,-0.667749899999933],[117.32204600000011,-0.667107899999962],[117.324408,-0.667297899999937],[117.325294,-0.668446899999935],[117.327691,-0.667541899999947],[117.32921790000012,-0.665080299999943],[117.33580990000007,-0.663527399999964],[117.33863860000008,-0.659535699999935],[117.3382342000001,-0.656572299999937],[117.3364792000001,-0.6551745],[117.33110150000005,-0.659372899999937],[117.3277528000001,-0.659780599999976],[117.3242805000001,-0.653707199999928],[117.3249469000001,-0.649256299999934],[117.3199859,-0.648013599999956],[117.32002390000002,-0.646601299999929],[117.32298190000006,-0.645873399999971],[117.324185,-0.643762],[117.32365470000002,-0.641411599999969],[117.32137420000004,-0.641679699999941],[117.3200187000001,-0.640061599999967],[117.32266360000006,-0.6358436],[117.3201467,-0.633407],[117.32256380000001,-0.6328288]]],[[[117.4998723000001,-0.614005299999974],[117.493711,-0.611888199999953],[117.49203370000009,-0.603296299999954],[117.48881170000004,-0.601860399999964],[117.4867670000001,-0.604134599999952],[117.48608990000002,-0.610394099999951],[117.48316550000004,-0.613769499999933],[117.480764,-0.614463899999976],[117.47890970000003,-0.618557199999941],[117.4754263000001,-0.620221199999946],[117.47028740000007,-0.620387],[117.47151710000003,-0.623905499999978],[117.47875180000005,-0.622898599999928],[117.49117600000011,-0.6248483],[117.4958957,-0.622346399999969],[117.49912960000006,-0.6229565],[117.50145730000008,-0.626704],[117.50189120000005,-0.639117599999963],[117.50942390000012,-0.637072599999954],[117.51512130000003,-0.638814599999932],[117.52014230000009,-0.643095799999969],[117.52434140000003,-0.640407499999981],[117.52677280000012,-0.643287899999962],[117.52889340000002,-0.642476099999953],[117.53321290000008,-0.630239699999947],[117.53641430000005,-0.629974699999934],[117.5373138000001,-0.6287396],[117.53719500000011,-0.624561099999937],[117.53774,-0.627702],[117.53704030000006,-0.629882099999975],[117.53354390000004,-0.630401799999959],[117.53075810000007,-0.638700299999925],[117.53422690000002,-0.639411499999937],[117.53373610000006,-0.642229899999961],[117.53659120000009,-0.643679],[117.5410266,-0.6388475],[117.54208590000007,-0.633363499999973],[117.541763,-0.639021299999968],[117.536225,-0.644323199999974],[117.53348470000003,-0.642844099999934],[117.53276590000007,-0.640174199999933],[117.53052830000001,-0.639615799999945],[117.52945380000006,-0.6429857],[117.52735070000006,-0.644026799999949],[117.52413150000007,-0.641133699999955],[117.52051940000001,-0.643788099999938],[117.52610820000007,-0.653577699999971],[117.53985200000011,-0.654715599999975],[117.54905,-0.652658],[117.55738760000008,-0.652934],[117.56192880000003,-0.649223399999926],[117.56149990000006,-0.641396199999974],[117.56898820000004,-0.625381799999957],[117.56622950000008,-0.621360799999934],[117.51078310000003,-0.607736],[117.50492940000004,-0.6125],[117.4998723000001,-0.614005299999974]]],[[[117.4918775000001,-0.5960135],[117.49012980000009,-0.595080099999961],[117.48927390000006,-0.596528399999954],[117.4918775000001,-0.5960135]]],[[[117.49879990000011,-0.613157299999955],[117.50246840000011,-0.612745699999948],[117.50562590000004,-0.610586399999931],[117.50536870000008,-0.607024599999932],[117.50065060000009,-0.600744],[117.50005080000005,-0.5936988],[117.49321060000011,-0.602410499999962],[117.49418870000011,-0.611171499999955],[117.49879990000011,-0.613157299999955]]],[[[117.40761370000007,-0.593965399999945],[117.40799070000003,-0.592155299999945],[117.4051869000001,-0.593968699999948],[117.39986940000006,-0.593330899999955],[117.3953408000001,-0.597251099999937],[117.39633980000008,-0.600654899999938],[117.3944011000001,-0.605598899999961],[117.388089,-0.603972599999963],[117.38755850000007,-0.60627],[117.39563110000006,-0.611064399999975],[117.39796590000003,-0.610552199999972],[117.40159580000011,-0.606076299999927],[117.40041630000007,-0.605500199999938],[117.400159,-0.604316399999959],[117.4051214000001,-0.603673699999945],[117.40319280000006,-0.599659],[117.40352080000002,-0.598714899999948],[117.40594650000003,-0.597833],[117.4067023,-0.597975699999949],[117.40713710000011,-0.599803799999961],[117.4059449,-0.601849399999935],[117.40853880000009,-0.602100199999938],[117.40923780000003,-0.599831699999925],[117.4077099000001,-0.596149299999979],[117.40998850000005,-0.593809599999929],[117.40924540000003,-0.593106499999976],[117.40840140000012,-0.594901799999946],[117.40761370000007,-0.593965399999945]]],[[[117.38380330000007,-0.599199899999974],[117.387043,-0.596068299999956],[117.3854258,-0.591807599999925],[117.38277220000009,-0.591913099999942],[117.38362860000007,-0.597188799999969],[117.38043290000007,-0.599218899999926],[117.37907270000005,-0.598242299999924],[117.379938,-0.594249499999933],[117.37894870000002,-0.592497399999957],[117.37375240000006,-0.592833699999971],[117.37206630000003,-0.597094899999945],[117.37366070000007,-0.600362299999972],[117.37333640000008,-0.600666499999932],[117.37099620000004,-0.600334299999929],[117.37031350000007,-0.599355799999955],[117.37023670000008,-0.601281699999959],[117.3693856000001,-0.602283099999966],[117.37191970000003,-0.603019099999926],[117.37342510000008,-0.605096099999969],[117.37569170000006,-0.603274],[117.37559210000006,-0.606907599999943],[117.37712210000007,-0.605614899999978],[117.3814665000001,-0.606986199999938],[117.38075090000007,-0.609359599999948],[117.37764390000007,-0.610002699999939],[117.38007940000011,-0.612404499999968],[117.38246550000008,-0.611941199999933],[117.383521,-0.6082966],[117.38662770000008,-0.608519],[117.38846860000001,-0.614788],[117.38545470000008,-0.615714599999933],[117.38286870000002,-0.614023699999962],[117.382373,-0.615226499999949],[117.38907530000006,-0.620030199999974],[117.39084780000007,-0.618274299999939],[117.38965260000009,-0.613743099999965],[117.39331210000012,-0.61389],[117.3948425000001,-0.617038899999955],[117.39198940000006,-0.620723],[117.39481440000009,-0.62329],[117.39732890000005,-0.622184],[117.39890860000003,-0.616948799999932],[117.40152660000001,-0.617871399999956],[117.40479760000005,-0.621763299999941],[117.40739030000009,-0.617156399999942],[117.41305950000003,-0.617909699999927],[117.41705210000009,-0.614913599999966],[117.41629540000008,-0.613543299999947],[117.41103080000005,-0.6126413],[117.41154640000002,-0.607773899999927],[117.40991150000002,-0.606123599999933],[117.40722380000011,-0.611130699999933],[117.40521910000007,-0.612199],[117.40363650000006,-0.611661399999946],[117.402183,-0.606629299999952],[117.39724830000011,-0.611652],[117.39262580000002,-0.610487299999932],[117.38843140000006,-0.608323499999926],[117.38657530000012,-0.604968399999962],[117.38859660000003,-0.603265799999974],[117.3939372000001,-0.605092199999945],[117.39548690000004,-0.600802099999953],[117.3942353000001,-0.597597199999939],[117.39151750000008,-0.596690299999977],[117.39159150000012,-0.601496399999974],[117.38981820000004,-0.6025291],[117.38452450000011,-0.602582499999926],[117.3828406,-0.601180399999976],[117.38380330000007,-0.599199899999974]]],[[[117.48381140000004,-0.594500599999947],[117.48465520000002,-0.590114099999937],[117.481683,-0.591071799999952],[117.48381140000004,-0.594500599999947]]],[[[117.48273310000002,-0.596382799999958],[117.4805692000001,-0.594761299999959],[117.47998640000003,-0.591565799999955],[117.47613420000005,-0.589902499999937],[117.47715710000011,-0.594857399999967],[117.47535140000002,-0.598790699999938],[117.476187,-0.602593],[117.474478,-0.599644],[117.47163200000011,-0.602738],[117.476702,-0.608103],[117.472135,-0.604512],[117.468835,-0.597443299999952],[117.46386530000007,-0.595875799999931],[117.4657562000001,-0.602135199999964],[117.4697986000001,-0.603858299999956],[117.47359150000011,-0.607616],[117.47021590000008,-0.617861299999959],[117.47095320000005,-0.6194411],[117.47820540000009,-0.618171799999971],[117.48054710000008,-0.613240599999926],[117.48524290000012,-0.610104399999955],[117.48587250000003,-0.603880799999956],[117.48899970000002,-0.600285499999927],[117.48857070000008,-0.597274],[117.49036540000009,-0.5914931],[117.48845130000007,-0.5917805],[117.48569340000006,-0.595694399999957],[117.48273310000002,-0.596382799999958]]],[[[117.35270240000011,-0.5851655],[117.34559760000002,-0.586761099999933],[117.35084790000008,-0.5882736],[117.35653080000009,-0.585956099999976],[117.35270240000011,-0.5851655]]],[[[117.37279540000009,-0.599003399999958],[117.371731,-0.597176199999979],[117.373318,-0.592746699999964],[117.37159630000008,-0.589874399999928],[117.37711270000011,-0.587623899999926],[117.37802560000011,-0.585115299999927],[117.37476470000001,-0.5847586],[117.36527990000002,-0.587538699999925],[117.358084,-0.5922219],[117.352135,-0.595424899999955],[117.34433,-0.598917899999947],[117.3379000000001,-0.600483899999972],[117.34151,-0.6032249],[117.34439,-0.613103899999942],[117.347476,-0.611854899999969],[117.344865,-0.608480899999961],[117.346207,-0.606182899999965],[117.349139,-0.605829899999947],[117.351517,-0.608054899999956],[117.35780180000006,-0.608115199999929],[117.35805870000002,-0.6055239],[117.36227040000006,-0.604610199999968],[117.36299850000012,-0.608165099999951],[117.35849420000011,-0.610920599999929],[117.36502580000001,-0.614347],[117.36862360000009,-0.610235299999943],[117.36829520000003,-0.607965299999933],[117.36599660000002,-0.606430499999931],[117.366532,-0.604902899999956],[117.37052950000009,-0.604704199999958],[117.374132,-0.606808],[117.37517720000005,-0.608316],[117.37472180000009,-0.610995799999955],[117.3728579000001,-0.612910899999974],[117.36962410000001,-0.613781199999949],[117.37050540000007,-0.616958799999964],[117.37401160000002,-0.618929799999933],[117.37511580000012,-0.622349399999962],[117.37762680000003,-0.622751299999948],[117.38101260000008,-0.619754199999932],[117.38306710000006,-0.619983799999943],[117.38552120000008,-0.623296499999924],[117.38749060000009,-0.630937099999926],[117.39630750000003,-0.629260899999963],[117.41206840000007,-0.636373699999979],[117.41495060000011,-0.640586399999961],[117.41287770000008,-0.647116599999947],[117.41888870000002,-0.644799],[117.42147100000011,-0.645315799999935],[117.42372550000005,-0.648834399999942],[117.42453940000007,-0.656733599999939],[117.43335620000005,-0.6543774],[117.44024600000012,-0.659860899999956],[117.438255,-0.654206899999963],[117.43948300000011,-0.651890899999955],[117.43605800000012,-0.650460899999928],[117.43682,-0.647583899999972],[117.43295200000011,-0.6494759],[117.426777,-0.646978899999965],[117.433138,-0.648914899999966],[117.437372,-0.645313899999962],[117.435541,-0.645313899999962],[117.435214,-0.644607899999926],[117.435576,-0.643431899999939],[117.437156,-0.6432779],[117.435858,-0.642282899999941],[117.437107,-0.640282899999931],[117.436442,-0.642237899999941],[117.437939,-0.642635899999959],[117.436776,-0.643784899999957],[117.435849,-0.6436939],[117.435662,-0.644345899999962],[117.437585,-0.644372899999951],[117.437899,-0.645331899999974],[117.437011,-0.646371899999963],[117.44039090000001,-0.649461299999928],[117.437571,-0.648266],[117.43664400000011,-0.650112],[117.440173,-0.651333],[117.43934,-0.65459],[117.44191660000001,-0.660971699999948],[117.44792350000012,-0.662499099999934],[117.45474350000006,-0.666591699999969],[117.462392,-0.680838299999948],[117.46716220000008,-0.682094099999972],[117.46990660000006,-0.680123899999955],[117.46806,-0.677639],[117.470534,-0.67914],[117.473623,-0.672074],[117.47079,-0.671134],[117.469153,-0.669406],[117.469594,-0.668528],[117.467519,-0.668899],[117.469093,-0.66804],[117.470304,-0.668447],[117.46894,-0.666927],[117.469855,-0.667036],[117.470655,-0.669053],[117.469554,-0.669315],[117.473891,-0.671206],[117.47580230000005,-0.666263899999933],[117.470618,-0.660259],[117.46762500000011,-0.653881],[117.465973,-0.654488],[117.46725990000004,-0.652767299999937],[117.46625360000007,-0.647522199999969],[117.45958280000002,-0.635494499999936],[117.44403660000012,-0.632715799999971],[117.43666540000004,-0.633069499999976],[117.43230180000012,-0.629168099999958],[117.430798,-0.631607899999949],[117.426945,-0.632729899999958],[117.424325,-0.6380319],[117.41980300000012,-0.638212899999928],[117.420623,-0.637045899999976],[117.424766,-0.6370639],[117.426777,-0.632123899999954],[117.430572,-0.631082899999967],[117.43198170000005,-0.627035599999942],[117.43136210000011,-0.623459199999957],[117.42735590000007,-0.629324099999963],[117.423504,-0.630892299999971],[117.4201749,-0.629480299999955],[117.418938,-0.6247768],[117.41073360000007,-0.6178742],[117.40769510000007,-0.617812599999979],[117.40458480000007,-0.622322199999928],[117.39895850000005,-0.617496899999935],[117.39760360000002,-0.622940299999925],[117.39488340000003,-0.623893299999963],[117.39147340000011,-0.6209014],[117.39426950000006,-0.6175356],[117.39315170000009,-0.614481299999966],[117.39004620000003,-0.614275699999951],[117.3914066000001,-0.618632099999957],[117.38871510000001,-0.620532899999944],[117.3818903,-0.615612],[117.38306010000008,-0.613347399999952],[117.38540340000009,-0.615407199999936],[117.38795370000003,-0.6146014],[117.38644580000005,-0.608923599999969],[117.38361140000006,-0.608641299999931],[117.3827937000001,-0.612112299999978],[117.37974530000008,-0.612725299999966],[117.37729600000011,-0.6098817],[117.38058520000004,-0.609097399999939],[117.381189,-0.607250699999952],[117.37528410000004,-0.6071674],[117.37548840000011,-0.603844899999956],[117.37337430000002,-0.605318199999942],[117.36953310000001,-0.602878199999964],[117.36915940000006,-0.602250199999958],[117.37002070000005,-0.601190599999939],[117.3696529,-0.599570099999937],[117.37055950000001,-0.599073],[117.3710933000001,-0.600119099999972],[117.37329520000003,-0.600433199999941],[117.3734687000001,-0.599971799999935],[117.37279540000009,-0.599003399999958]]],[[[117.43294580000008,-0.587371799999971],[117.42453410000007,-0.584057099999939],[117.41960960000006,-0.591349299999933],[117.41965450000009,-0.595693899999958],[117.4181923000001,-0.5980159],[117.4166646000001,-0.597839499999964],[117.41296670000008,-0.5927442],[117.407988,-0.596067399999924],[117.40948280000009,-0.5999945],[117.40863520000005,-0.602358699999968],[117.40574540000011,-0.601955399999952],[117.40692950000005,-0.599436499999968],[117.40658570000005,-0.598169899999959],[117.4059899,-0.598055399999964],[117.40341060000003,-0.599336599999958],[117.4053037000001,-0.6038078],[117.40033760000006,-0.604771899999946],[117.40333420000002,-0.606543599999952],[117.40511350000008,-0.611508199999946],[117.40669530000002,-0.610686],[117.40865250000002,-0.605741599999931],[117.41204090000008,-0.606543299999942],[117.41214840000009,-0.611941099999967],[117.41688030000012,-0.6127546],[117.41787910000005,-0.614932799999963],[117.41415820000009,-0.619469099999947],[117.41935400000011,-0.623023399999965],[117.421982,-0.629067299999974],[117.423492,-0.629653599999926],[117.42639280000003,-0.62787],[117.42868690000012,-0.622675499999957],[117.43192070000009,-0.621765699999969],[117.43535730000008,-0.629592799999955],[117.43791360000012,-0.631411799999967],[117.440692,-0.629864],[117.440798,-0.627376],[117.44177050000008,-0.629545899999925],[117.44391730000007,-0.628383199999973],[117.44550680000009,-0.624398099999951],[117.445008,-0.619116],[117.44618990000004,-0.623070599999949],[117.44872710000004,-0.620835199999931],[117.44911900000011,-0.614886799999965],[117.446919,-0.608854899999926],[117.43936940000003,-0.608520399999975],[117.43566970000006,-0.611211599999933],[117.434931,-0.612368],[117.43660100000011,-0.616629],[117.4339020000001,-0.612241],[117.432668,-0.611988],[117.4306610000001,-0.614928],[117.4325119,-0.611187899999948],[117.43218410000009,-0.6092683],[117.43048320000003,-0.608633599999962],[117.425835,-0.610542099999975],[117.424722,-0.613074],[117.425937,-0.616819],[117.424825,-0.617163],[117.424856,-0.61359],[117.421907,-0.612165399999981],[117.42302430000007,-0.609010399999931],[117.4200806,-0.609834],[117.41719380000006,-0.607708699999932],[117.41787180000006,-0.606595299999924],[117.41761230000009,-0.607881],[117.42013290000011,-0.609379199999978],[117.42298620000008,-0.608584299999961],[117.42357130000005,-0.610173699999962],[117.4223730000001,-0.612227599999926],[117.42404230000011,-0.612519499999962],[117.425873,-0.609824],[117.42473840000002,-0.607345299999963],[117.42773750000003,-0.608555],[117.4289533000001,-0.6065224],[117.42587990000004,-0.606180799999947],[117.42521720000002,-0.603812099999971],[117.42603280000003,-0.605957],[117.42922360000011,-0.6064876],[117.42780190000008,-0.608820799999933],[117.42493480000007,-0.607576799999947],[117.4257239000001,-0.609397799999954],[117.43132450000007,-0.607925699999953],[117.43386730000009,-0.611230899999953],[117.437529,-0.609363499999972],[117.43842960000006,-0.604983299999958],[117.43363120000004,-0.604931099999931],[117.430944,-0.602245499999924],[117.434295,-0.598223399999938],[117.43361950000008,-0.595437199999935],[117.42823150000004,-0.597381299999938],[117.424693,-0.592766499999925],[117.42557740000007,-0.591148299999929],[117.42841690000012,-0.590719099999944],[117.42983690000005,-0.5880692],[117.43294580000008,-0.587371799999971]]],[[[117.30634540000005,-0.577715199999943],[117.29465530000004,-0.579275799999948],[117.284729,-0.583526],[117.29047810000009,-0.59201],[117.30773290000002,-0.611643299999969],[117.31393920000005,-0.616630699999973],[117.32297770000002,-0.628109],[117.32808100000011,-0.630324899999948],[117.32204,-0.623563899999965],[117.321032,-0.620098899999959],[117.314614,-0.614209899999935],[117.313464,-0.607885899999928],[117.314973,-0.613584899999978],[117.32051600000011,-0.618334899999979],[117.323271,-0.624296899999933],[117.328704,-0.630393899999945],[117.339827,-0.634301899999969],[117.330945,-0.627163899999971],[117.331754,-0.624060899999961],[117.32898300000011,-0.616985899999975],[117.32452500000011,-0.617944899999941],[117.32407200000011,-0.615321899999969],[117.321628,-0.614498899999944],[117.32204800000011,-0.613240899999937],[117.324738,-0.615004899999974],[117.3251110000001,-0.617510899999957],[117.329215,-0.616415899999936],[117.332297,-0.623191899999938],[117.331711,-0.627136899999925],[117.340789,-0.634156899999937],[117.34737370000005,-0.636315399999944],[117.34639670000001,-0.632754899999952],[117.3420225000001,-0.628938499999947],[117.34373280000011,-0.626837799999976],[117.34697850000009,-0.626883499999963],[117.35173530000009,-0.631709799999953],[117.35701620000009,-0.640311799999949],[117.36770680000006,-0.643629899999951],[117.36730460000001,-0.6457689],[117.36130860000003,-0.646510199999966],[117.36076920000005,-0.647462499999961],[117.36338770000009,-0.651486599999942],[117.36844990000009,-0.652599],[117.37237490000007,-0.637835399999972],[117.3722762000001,-0.63116],[117.37496020000003,-0.630345],[117.37998610000011,-0.633584499999927],[117.38258330000008,-0.633598399999926],[117.38600310000004,-0.631401399999959],[117.38588870000001,-0.627284199999963],[117.38224530000002,-0.62074],[117.376496,-0.623995899999954],[117.371342,-0.621355],[117.368664,-0.622302899999966],[117.368284,-0.624401899999953],[117.364884,-0.624528899999973],[117.363633,-0.626998899999933],[117.362274,-0.626555899999971],[117.361233,-0.628229899999951],[117.361935,-0.6313149],[117.360761,-0.628690899999924],[117.361633,-0.626455899999939],[117.364258,-0.624094899999932],[117.367924,-0.623469899999975],[117.36462190000009,-0.616192199999944],[117.36261040000011,-0.619050399999935],[117.3540028000001,-0.619078099999967],[117.35729360000005,-0.621312399999965],[117.35691530000008,-0.624060699999973],[117.35533770000006,-0.6241321],[117.3531034,-0.621940599999959],[117.3523090000001,-0.624086899999952],[117.350617,-0.623814899999957],[117.351373,-0.621932899999933],[117.349188,-0.6234719],[117.3514090000001,-0.621552899999926],[117.351888,-0.623706899999945],[117.35266550000006,-0.621778799999959],[117.35340320000012,-0.621642],[117.35646080000004,-0.623872699999936],[117.35692480000012,-0.621189899999933],[117.353772,-0.620023899999978],[117.353772,-0.618786599999964],[117.36252390000004,-0.618654],[117.3642999000001,-0.615616299999942],[117.3680012000001,-0.621459399999935],[117.37330450000002,-0.620731699999965],[117.3735372000001,-0.619170399999973],[117.37024140000005,-0.617386099999976],[117.3692152000001,-0.613730199999964],[117.3737225000001,-0.611706599999934],[117.374736,-0.608334],[117.37005160000001,-0.605013],[117.366946,-0.605126599999949],[117.36649630000011,-0.606240199999945],[117.36889480000002,-0.607953399999928],[117.36888770000007,-0.610451799999964],[117.366839,-0.613992399999972],[117.364883,-0.614742],[117.35803730000009,-0.610922899999935],[117.358173,-0.609702299999924],[117.36243460000003,-0.608346],[117.36201340000002,-0.604891],[117.35816580000005,-0.605883199999937],[117.35778030000006,-0.608445899999936],[117.350852,-0.608335899999929],[117.349103,-0.606173899999931],[117.346331,-0.606489899999929],[117.345346,-0.608344899999963],[117.348186,-0.611764899999969],[117.346554,-0.612895899999955],[117.344823,-0.613392899999951],[117.343622,-0.613175899999931],[117.341221,-0.603785899999934],[117.337788,-0.601885899999957],[117.337588,-0.599116899999956],[117.335638,-0.597886899999935],[117.340024,-0.599342899999954],[117.346179,-0.597858899999949],[117.355788,-0.593244899999945],[117.36351450000006,-0.587403],[117.34614490000001,-0.589862099999948],[117.341737,-0.5890096],[117.32340340000007,-0.580141899999944],[117.30634540000005,-0.577715199999943]]],[[[117.37939170000004,-0.575392399999942],[117.38534670000001,-0.572883399999967],[117.38141860000007,-0.573362399999951],[117.37939170000004,-0.575392399999942]]],[[[117.31984030000001,-0.574418199999968],[117.31315440000003,-0.569415699999979],[117.31022260000009,-0.571812],[117.31984030000001,-0.574418199999968]]],[[[117.4752439,-0.555861],[117.4751702000001,-0.551720599999953],[117.47307290000003,-0.549925499999972],[117.46643930000005,-0.555656499999941],[117.45466540000007,-0.554818],[117.44981920000009,-0.562982499999976],[117.44444090000002,-0.565984599999979],[117.43307040000002,-0.567924399999924],[117.4216282000001,-0.5653257],[117.41292620000002,-0.573198099999956],[117.40633050000008,-0.574074199999927],[117.40617340000006,-0.5757505],[117.40950020000002,-0.577467399999932],[117.40923,-0.581601299999932],[117.40687420000006,-0.582139099999949],[117.4055313,-0.579357899999934],[117.40236750000008,-0.578100399999926],[117.40024320000009,-0.580350899999928],[117.40133530000003,-0.584063199999946],[117.39933110000004,-0.582907899999952],[117.395613,-0.586513299999979],[117.39321020000011,-0.584610199999929],[117.3911845,-0.587123899999938],[117.38840340000002,-0.5876993],[117.39150030000008,-0.586198099999933],[117.39168460000008,-0.584194699999955],[117.39548910000008,-0.584587],[117.39643080000008,-0.585573199999942],[117.39912730000003,-0.582487499999957],[117.4009072,-0.582866399999943],[117.39979950000009,-0.580271399999958],[117.40221560000009,-0.577673699999934],[117.40542790000006,-0.578381799999931],[117.40709310000011,-0.581736899999953],[117.40896340000006,-0.581232899999975],[117.40909320000003,-0.577662499999974],[117.40726350000011,-0.577625299999966],[117.40555140000004,-0.575605099999962],[117.40521830000012,-0.573651899999959],[117.41268800000012,-0.572812099999965],[117.4203324,-0.565106],[117.41385460000004,-0.565408699999978],[117.40360640000006,-0.568353699999932],[117.38482230000011,-0.5767091],[117.38345220000008,-0.580860199999961],[117.38332,-0.577821799999924],[117.3768808000001,-0.581999699999926],[117.37516890000006,-0.583867],[117.37874150000005,-0.584783699999946],[117.3787182000001,-0.587061],[117.37290420000011,-0.589528199999961],[117.37252330000001,-0.590956199999937],[117.37984050000011,-0.592295099999944],[117.38037520000012,-0.598446399999943],[117.38275810000005,-0.597586499999977],[117.382215,-0.591173],[117.38638010000011,-0.591606699999943],[117.38771430000008,-0.596119899999962],[117.3842959000001,-0.6010104],[117.38974890000009,-0.601836699999978],[117.391049,-0.600880199999949],[117.390774,-0.596658299999945],[117.3923019,-0.595570899999927],[117.394923,-0.596748299999945],[117.39996,-0.593038799999931],[117.40515770000002,-0.593744399999935],[117.40782560000002,-0.591926099999966],[117.40832430000012,-0.592161399999952],[117.40788580000003,-0.594115199999976],[117.4084375000001,-0.594644399999936],[117.40932550000002,-0.592541599999947],[117.4104479,-0.593494199999952],[117.41275430000007,-0.592297099999939],[117.414846,-0.59299],[117.416862,-0.588982],[117.414608,-0.588865],[117.414003,-0.586893],[117.412355,-0.586893],[117.414019,-0.58616],[117.414955,-0.588349],[117.417275,-0.588883],[117.41460960000006,-0.593411899999978],[117.41779090000011,-0.597658699999954],[117.4193077000001,-0.594728599999939],[117.4190317,-0.591229099999964],[117.42347270000005,-0.5840384],[117.42102260000001,-0.581387199999938],[117.421643,-0.578773199999944],[117.42128510000009,-0.581241599999942],[117.42374410000002,-0.583408399999939],[117.42641160000005,-0.5832842],[117.4334847,-0.586956799999939],[117.433064,-0.588551],[117.43007150000005,-0.588942599999939],[117.42888760000005,-0.591348399999958],[117.42553140000007,-0.59281],[117.42862050000008,-0.596777299999928],[117.43214770000009,-0.594062599999972],[117.43443410000009,-0.595200599999941],[117.43499080000004,-0.598823399999958],[117.43181660000005,-0.601444799999967],[117.43320430000006,-0.603915],[117.43879690000006,-0.6040151],[117.44110510000007,-0.607036199999925],[117.44672860000003,-0.606904099999952],[117.44896390000008,-0.609249699999964],[117.45061730000009,-0.6190996],[117.44785260000003,-0.628167499999961],[117.450076,-0.629388],[117.45462950000001,-0.628908899999942],[117.46267790000002,-0.624013099999956],[117.46979360000012,-0.623967199999925],[117.46871240000007,-0.618284199999948],[117.47233760000006,-0.607296799999972],[117.468628,-0.604592299999979],[117.46603630000004,-0.605753499999935],[117.46502590000011,-0.608015599999931],[117.46740420000003,-0.613485],[117.4656685000001,-0.615268399999934],[117.4635879000001,-0.615220699999952],[117.46232730000008,-0.610194099999944],[117.45635880000009,-0.6075137],[117.45664380000005,-0.603947],[117.45113910000009,-0.602642899999978],[117.44936740000003,-0.5998903],[117.4501398000001,-0.595725199999947],[117.4550736000001,-0.594061199999942],[117.4522081,-0.590123799999958],[117.454003,-0.586090299999967],[117.45938830000011,-0.581984699999964],[117.45812780000006,-0.5783344],[117.4526231000001,-0.576635299999964],[117.45369530000005,-0.579754599999944],[117.45344580000005,-0.581578599999943],[117.45198160000007,-0.583505299999956],[117.45017460000008,-0.584127799999976],[117.44857650000006,-0.576813699999946],[117.44275170000003,-0.576316199999951],[117.44101870000009,-0.57844],[117.44462410000006,-0.582173799999964],[117.44049280000002,-0.585445199999924],[117.439117,-0.585133399999961],[117.43798530000004,-0.583280299999956],[117.44008370000006,-0.581878699999947],[117.44036860000006,-0.579462299999932],[117.44027070000004,-0.582008099999939],[117.43821150000008,-0.58331],[117.43925810000007,-0.584955],[117.4408979000001,-0.584972499999935],[117.4444277,-0.582061899999928],[117.44079870000007,-0.578506199999936],[117.44268470000009,-0.576099],[117.44859430000008,-0.576415699999927],[117.45061250000003,-0.583744499999966],[117.45229660000007,-0.582601599999975],[117.45334390000005,-0.580284799999959],[117.4520477000001,-0.576425099999938],[117.4580042,-0.577118799999937],[117.46013850000008,-0.580188499999963],[117.45994840000003,-0.582301],[117.4542421000001,-0.586675899999932],[117.45294650000005,-0.590386299999977],[117.45605570000009,-0.594018399999925],[117.45077130000004,-0.596209099999953],[117.45020680000005,-0.599063599999965],[117.45152130000008,-0.601868],[117.4574421000001,-0.603327599999943],[117.45762080000009,-0.607636299999967],[117.462757,-0.609203699999966],[117.46489740000004,-0.614146499999947],[117.46669250000002,-0.612159599999927],[117.46420730000011,-0.607336499999974],[117.46650160000002,-0.604116799999929],[117.4634694,-0.597702],[117.46338590000005,-0.595212499999946],[117.46501460000002,-0.593405099999927],[117.46425320000003,-0.587205599999947],[117.46257660000003,-0.5844769],[117.46450240000001,-0.580254499999967],[117.461173,-0.574206299999958],[117.4568263000001,-0.574029499999938],[117.4530787000001,-0.5710137],[117.450482,-0.573337],[117.450103,-0.571808],[117.453599,-0.569212],[117.453508,-0.567285],[117.458253,-0.566244],[117.456537,-0.567909],[117.454203,-0.567818],[117.454145,-0.569709],[117.452609,-0.57018],[117.45694430000003,-0.5734968],[117.46010080000008,-0.573335],[117.4630168000001,-0.574937699999964],[117.462902,-0.571283],[117.464378,-0.567628],[117.463267,-0.571427],[117.464589,-0.572332],[117.470657,-0.570215],[117.470364,-0.567591],[117.471515,-0.568459],[117.47101,-0.570359],[117.467127,-0.572847],[117.46408,-0.573192],[117.46389570000008,-0.577684699999963],[117.46540590000006,-0.581191299999944],[117.4635277000001,-0.584698199999934],[117.46704770000008,-0.5951224],[117.47011510000004,-0.595840299999963],[117.471875,-0.598916],[117.47584560000007,-0.595037899999966],[117.47123990000011,-0.588242],[117.47176280000008,-0.585010499999953],[117.474711,-0.5819463],[117.47224930000004,-0.574274699999933],[117.47327170000005,-0.573329099999967],[117.476172,-0.574131],[117.475052,-0.570069],[117.4791120000001,-0.568784],[117.477201,-0.568794],[117.474218,-0.565845],[117.479618,-0.568441],[117.478449,-0.570503],[117.475797,-0.570069],[117.47618000000011,-0.572729],[117.479229,-0.573833],[117.48167300000011,-0.570992],[117.48381,-0.571842],[117.481484,-0.572023],[117.478708,-0.574755],[117.47291880000012,-0.574193299999934],[117.47550170000011,-0.582178399999975],[117.47228480000001,-0.5856112],[117.47247770000001,-0.589015],[117.4769387,-0.587880699999971],[117.48119520000012,-0.589879099999962],[117.490088,-0.588513899999953],[117.4923827,-0.589985799999965],[117.49338870000008,-0.593097499999942],[117.49490490000005,-0.590604499999927],[117.5013229000001,-0.589068299999951],[117.50830470000005,-0.575954],[117.50802380000005,-0.572186399999964],[117.49433160000001,-0.567431099999965],[117.47863350000011,-0.564919],[117.47542790000011,-0.562147399999958],[117.4752439,-0.555861]]],[[[117.36095670000009,-0.583139099999926],[117.37028520000001,-0.580790799999932],[117.38027540000007,-0.573555899999974],[117.38740490000009,-0.571770099999981],[117.40663570000004,-0.559091699999954],[117.41709770000011,-0.553978],[117.41943730000003,-0.551507499999957],[117.41949410000007,-0.547524399999929],[117.413042,-0.540828099999942],[117.3972040000001,-0.545231599999966],[117.38647020000008,-0.552073],[117.38046780000002,-0.561232899999936],[117.37008340000011,-0.569404599999928],[117.3486653000001,-0.575792899999954],[117.35485790000007,-0.581136399999934],[117.36095670000009,-0.583139099999926]]],[[[117.50361610000004,-0.527319099999943],[117.50349950000009,-0.526078499999926],[117.50000000000011,-0.525262699999928],[117.49499960000003,-0.527246599999955],[117.48252360000004,-0.527027],[117.48282180000001,-0.529595799999925],[117.4815665000001,-0.532059],[117.47294270000009,-0.536138499999936],[117.47640260000003,-0.539527699999951],[117.47562530000005,-0.5432475],[117.4760682000001,-0.539555199999938],[117.47263450000003,-0.536032],[117.4813368,-0.531770599999959],[117.48238030000005,-0.529388899999958],[117.48124910000001,-0.527477499999975],[117.46394790000011,-0.532544799999926],[117.4644985000001,-0.536751299999935],[117.46344230000011,-0.5327258],[117.45471610000004,-0.536520499999938],[117.45083140000008,-0.535623799999939],[117.45299430000011,-0.539421599999969],[117.45137540000007,-0.541054299999928],[117.45354880000002,-0.543383199999937],[117.4513687000001,-0.547160599999927],[117.45329170000002,-0.543408],[117.4510567000001,-0.540867599999956],[117.45276130000002,-0.539455499999974],[117.4487468000001,-0.534997399999952],[117.44404470000006,-0.543949],[117.43696180000006,-0.544062],[117.44039640000005,-0.559058199999924],[117.43920770000011,-0.561595699999941],[117.4485611,-0.560148499999968],[117.45422440000004,-0.5527659],[117.46542270000009,-0.553682299999934],[117.47068780000006,-0.548852699999941],[117.47354160000009,-0.548338899999976],[117.4773507000001,-0.552476799999965],[117.4783073000001,-0.562185499999941],[117.48210240000003,-0.563721899999962],[117.4879231000001,-0.562385799999959],[117.489428,-0.560363699999925],[117.49855480000008,-0.556272099999944],[117.5017084000001,-0.552862799999957],[117.49968350000006,-0.551197799999954],[117.49515340000005,-0.552563599999928],[117.49280650000003,-0.551780699999938],[117.49060490000011,-0.5541169],[117.48802080000007,-0.554873699999973],[117.4873219000001,-0.553427],[117.488996,-0.548462899999947],[117.48610850000011,-0.5477995],[117.48558090000006,-0.545078599999954],[117.4838009,-0.543618799999933],[117.48344980000002,-0.542096299999969],[117.4845792000001,-0.541689199999951],[117.48639820000005,-0.542443099999957],[117.486517,-0.540815399999929],[117.48720660000004,-0.542096],[117.48611290000008,-0.542742299999929],[117.4843413000001,-0.5419463],[117.48384040000008,-0.5429949],[117.48566,-0.5445211],[117.4864381000001,-0.547573799999952],[117.48947060000012,-0.548555699999952],[117.4878361000001,-0.553161499999931],[117.48849540000003,-0.554568399999937],[117.49274060000005,-0.551422399999979],[117.49510070000008,-0.552192],[117.49838350000005,-0.551103399999931],[117.4981778,-0.545192499999928],[117.501551,-0.5445099],[117.50270630000011,-0.542141],[117.504893,-0.542128699999978],[117.50487040000007,-0.546336599999961],[117.50609810000003,-0.546850799999959],[117.50684510000008,-0.543578699999955],[117.50807740000005,-0.543295499999942],[117.50999950000005,-0.544907799999976],[117.510894,-0.541678099999956],[117.51265990000002,-0.540545299999962],[117.51087650000011,-0.538949799999955],[117.50896210000008,-0.540663199999926],[117.50702650000005,-0.539396899999929],[117.50653000000011,-0.537117599999931],[117.50836790000005,-0.53458],[117.5034065000001,-0.533432799999957],[117.50361610000004,-0.527319099999943]]],[[[117.49044160000005,-0.521582899999942],[117.49474,-0.520581],[117.498092,-0.517034],[117.49044160000005,-0.521582899999942]]],[[[117.498549,-0.518550499999947],[117.509797,-0.509688799999935],[117.49938370000007,-0.515980899999931],[117.498549,-0.518550499999947]]],[[[117.48000760000002,-0.5100299],[117.4798664000001,-0.508309599999961],[117.47880310000005,-0.509056299999941],[117.48000760000002,-0.5100299]]],[[[117.55598240000006,-0.508036599999969],[117.54879610000012,-0.505376199999944],[117.53985620000003,-0.509345599999961],[117.5409125000001,-0.515837099999942],[117.53135040000006,-0.529903099999956],[117.52757470000006,-0.532134399999961],[117.53170330000012,-0.5435949],[117.53467660000001,-0.544301099999927],[117.54586530000006,-0.531970699999931],[117.54623490000006,-0.529582299999959],[117.54787390000001,-0.529450099999963],[117.5479851,-0.527026699999965],[117.548078,-0.5295553],[117.546345,-0.5320728],[117.53589670000008,-0.5442736],[117.5404459,-0.546764899999971],[117.53565970000011,-0.544837199999961],[117.53231570000003,-0.5456075],[117.53522180000004,-0.551081499999952],[117.53863050000007,-0.552896299999929],[117.53919420000011,-0.5557829],[117.5384117000001,-0.552985299999932],[117.53723290000005,-0.553555],[117.53498810000008,-0.551714499999946],[117.53098330000012,-0.544232299999976],[117.52867990000004,-0.551841099999933],[117.53048250000006,-0.542296599999929],[117.52378560000011,-0.528402],[117.52002390000007,-0.526994799999954],[117.51558470000009,-0.527782699999932],[117.50832770000011,-0.527290199999925],[117.50503320000007,-0.526492899999937],[117.50456290000011,-0.533105099999943],[117.5071584000001,-0.532726399999945],[117.50901270000008,-0.534133299999951],[117.50710720000006,-0.537759599999958],[117.50827030000005,-0.539809199999979],[117.510686,-0.538242099999934],[117.51363680000009,-0.539851599999963],[117.51152170000012,-0.542235799999958],[117.515226,-0.548081699999955],[117.51537240000005,-0.549578699999927],[117.513213,-0.550608699999941],[117.51396810000006,-0.551644799999963],[117.51143950000005,-0.554367],[117.5127834000001,-0.550470799999971],[117.51501120000012,-0.549319499999967],[117.51245740000002,-0.545448199999953],[117.51233940000009,-0.543786199999943],[117.5109275000001,-0.542876499999977],[117.50984660000006,-0.5452703],[117.50733180000009,-0.543623],[117.50726980000002,-0.546437799999978],[117.505356,-0.547157399999946],[117.5045364,-0.546230799999933],[117.50473860000011,-0.5425],[117.50334810000004,-0.542148499999939],[117.5017418000001,-0.544751499999961],[117.4984257000001,-0.545850299999927],[117.49886020000008,-0.550387599999965],[117.50191590000009,-0.552503599999966],[117.50173530000006,-0.554059499999937],[117.4975644000001,-0.557154499999967],[117.4889296,-0.561259699999937],[117.48906450000004,-0.562658599999963],[117.5025796000001,-0.564469799999927],[117.50902710000003,-0.567477399999973],[117.514756,-0.564201],[117.510712,-0.568059],[117.51070260000006,-0.569993699999941],[117.51571580000007,-0.5691985],[117.52038940000011,-0.565618],[117.52652850000004,-0.564399899999955],[117.52047950000008,-0.565825599999926],[117.51560280000001,-0.569582199999957],[117.515684,-0.571463399999971],[117.5180047,-0.571511],[117.51784320000002,-0.573751499999958],[117.52121010000008,-0.573353899999972],[117.52274960000011,-0.571282199999928],[117.52125760000001,-0.573502299999973],[117.51758160000009,-0.573842499999955],[117.51775260000011,-0.571530199999927],[117.51541310000005,-0.571591699999942],[117.51524140000004,-0.569769],[117.51144370000009,-0.571596099999965],[117.5107547,-0.577858099999958],[117.51192870000011,-0.579458899999963],[117.51051230000007,-0.579212899999959],[117.508483,-0.594465599999978],[117.51006710000001,-0.599023],[117.51371960000006,-0.602211],[117.51809,-0.602837699999952],[117.52234140000007,-0.601214399999947],[117.52091440000004,-0.594624199999942],[117.52519410000002,-0.590856199999962],[117.52399050000008,-0.586882799999955],[117.52944520000005,-0.587868499999956],[117.52910730000008,-0.584665799999925],[117.53167050000002,-0.583928299999968],[117.53285440000002,-0.581405299999972],[117.53828030000011,-0.580313199999978],[117.54000610000003,-0.57498],[117.54134720000002,-0.575501699999961],[117.5446568000001,-0.5731556],[117.54458530000011,-0.5710587],[117.54498050000007,-0.576166799999953],[117.54017090000002,-0.576621199999977],[117.5388891,-0.580753099999924],[117.53327590000004,-0.582316799999944],[117.5318923000001,-0.584753699999965],[117.52980460000003,-0.585203899999954],[117.53094620000002,-0.5874347],[117.52962430000002,-0.588794399999927],[117.52465940000002,-0.5875215],[117.5261339000001,-0.590944299999933],[117.5218923000001,-0.594578299999966],[117.5236943000001,-0.59991],[117.53591580000011,-0.597050699999954],[117.55398690000004,-0.597685599999977],[117.55967850000002,-0.590566299999978],[117.56779230000006,-0.585158199999967],[117.57067870000003,-0.585775299999966],[117.57239190000007,-0.582206099999951],[117.57807880000007,-0.577554299999974],[117.58044640000003,-0.567370199999971],[117.58314550000011,-0.563604099999964],[117.58603320000009,-0.543096],[117.58582560000002,-0.522247799999946],[117.58804840000005,-0.517352599999924],[117.57878790000007,-0.511118],[117.57821180000008,-0.515466899999979],[117.5783947000001,-0.511185599999976],[117.57460160000005,-0.510186399999952],[117.5693566000001,-0.5136003],[117.5688765000001,-0.515338099999951],[117.57041270000002,-0.517157099999963],[117.56937140000002,-0.518933299999958],[117.57183950000001,-0.519646399999942],[117.57073910000008,-0.5241732],[117.5752020000001,-0.536313399999926],[117.5715636000001,-0.531256],[117.57212460000005,-0.529520499999933],[117.56904960000008,-0.523405],[117.56462030000012,-0.525974299999973],[117.56494380000004,-0.527008299999977],[117.56331280000006,-0.529033499999969],[117.56384480000008,-0.536248599999965],[117.56270310000002,-0.5308645],[117.56282190000002,-0.5289974],[117.56432440000003,-0.526790299999959],[117.563397,-0.525651],[117.5566851000001,-0.527324599999929],[117.55639410000003,-0.5291731],[117.55568080000012,-0.528055],[117.55320140000003,-0.531405],[117.55597300000011,-0.527650799999947],[117.55605450000007,-0.522822799999972],[117.5542723000001,-0.5210924],[117.55759220000004,-0.521426099999928],[117.556456,-0.5248683],[117.557626,-0.526833299999964],[117.56457630000011,-0.5250908],[117.56843270000002,-0.5226154],[117.57036820000008,-0.523151399999961],[117.57072940000012,-0.519833799999958],[117.56827070000008,-0.519307399999946],[117.56938810000008,-0.517167399999948],[117.56669160000001,-0.516066499999965],[117.56378460000008,-0.511715399999957],[117.56189680000011,-0.513855499999977],[117.56043690000001,-0.513472599999943],[117.5594479,-0.514894599999934],[117.559286,-0.512960499999963],[117.56164480000007,-0.513601799999947],[117.56366560000004,-0.511251],[117.56725640000002,-0.515832199999977],[117.57255340000006,-0.509536399999945],[117.56855380000002,-0.506252699999948],[117.55598240000006,-0.508036599999969]]],[[[117.5387826000001,-0.516309499999977],[117.53970990000005,-0.513879399999951],[117.53770470000006,-0.509819399999969],[117.54118640000002,-0.505227899999966],[117.53568770000004,-0.504756199999974],[117.51076280000007,-0.513091],[117.50552230000005,-0.517116199999975],[117.50112620000004,-0.522958899999935],[117.50495990000002,-0.525902599999938],[117.5083317000001,-0.526955499999929],[117.51165340000011,-0.526091899999926],[117.51028910000002,-0.5240063],[117.50809820000006,-0.524725599999954],[117.50713220000011,-0.523217099999954],[117.50811620000002,-0.524494599999969],[117.51029320000009,-0.523630699999956],[117.51220740000008,-0.526754099999948],[117.51513680000005,-0.527318799999932],[117.51698910000005,-0.527088499999934],[117.517854,-0.522806],[117.51845090000006,-0.526867399999958],[117.51976860000002,-0.526499799999954],[117.518648,-0.525072499999965],[117.52046320000011,-0.522252699999967],[117.51638170000001,-0.516381599999931],[117.51985270000011,-0.519152899999938],[117.51879310000004,-0.519682799999941],[117.520838,-0.522140499999978],[117.5190831000001,-0.525377299999946],[117.5232052,-0.5274396],[117.52295780000009,-0.525675499999977],[117.5245685000001,-0.523630499999967],[117.52313140000001,-0.526901099999975],[117.5269436000001,-0.530522299999973],[117.5300856,-0.529259199999956],[117.5387826000001,-0.516309499999977]]],[[[117.445557,-0.508203199999969],[117.45567630000005,-0.500956],[117.44723550000003,-0.504164199999934],[117.44490550000012,-0.507180399999925],[117.445557,-0.508203199999969]]],[[[117.573047,-0.504023099999927],[117.5742,-0.5019691],[117.57353180000007,-0.499830699999961],[117.56693810000002,-0.495331],[117.55581670000004,-0.5],[117.55086280000012,-0.503730399999938],[117.55558280000002,-0.506686199999933],[117.573047,-0.504023099999927]]],[[[117.55093410000006,-0.4403177],[117.54344450000008,-0.442041699999947],[117.52818060000004,-0.456141499999944],[117.51893170000005,-0.462557199999935],[117.51377220000006,-0.465070899999944],[117.50564050000003,-0.466483799999935],[117.49614410000004,-0.472928],[117.48126050000008,-0.4913882],[117.47665130000007,-0.495220699999948],[117.46698520000007,-0.499476199999947],[117.46946880000007,-0.503953699999954],[117.46639470000002,-0.509102799999937],[117.47150220000003,-0.509942599999931],[117.47240120000004,-0.513073499999962],[117.46939830000008,-0.514840299999946],[117.46402670000009,-0.512585799999954],[117.4599181000001,-0.514015099999938],[117.45864150000011,-0.517720699999927],[117.45545990000005,-0.516938099999948],[117.45340570000008,-0.519200299999966],[117.45573150000007,-0.523472899999945],[117.45459360000007,-0.523557599999947],[117.45376970000007,-0.521318699999938],[117.451801,-0.523264899999958],[117.454362,-0.524851799999965],[117.45453320000001,-0.525720699999965],[117.45421230000011,-0.526316699999938],[117.4518031,-0.527408399999956],[117.45185830000003,-0.526618499999927],[117.45394840000006,-0.526230599999963],[117.45431210000004,-0.525433499999963],[117.45374140000001,-0.524657899999966],[117.45192240000006,-0.524658099999954],[117.45140870000012,-0.523308099999952],[117.45352710000009,-0.521017099999938],[117.45541760000003,-0.522977399999945],[117.45263440000008,-0.518779],[117.45465910000007,-0.516609499999959],[117.45818860000008,-0.517301199999963],[117.45945150000011,-0.513561],[117.4623865000001,-0.512270399999977],[117.46632470000009,-0.512083099999927],[117.46924130000002,-0.514196099999936],[117.47167470000011,-0.512924199999929],[117.47108010000011,-0.510399699999937],[117.4658601000001,-0.509408899999926],[117.46611990000008,-0.506734699999924],[117.46881330000008,-0.5041164],[117.46586860000002,-0.499453],[117.457939,-0.502723399999979],[117.43760080000004,-0.520641199999943],[117.42859880000003,-0.5248356],[117.41963980000003,-0.5314859],[117.41508920000001,-0.538667299999929],[117.42177140000001,-0.548197399999935],[117.4179203000001,-0.560764699999936],[117.43623490000004,-0.563998499999968],[117.44518010000002,-0.562102],[117.4462506000001,-0.561246499999925],[117.43867410000007,-0.561867199999938],[117.43979620000005,-0.559387199999946],[117.4374941000001,-0.547125299999948],[117.43345950000003,-0.546499799999935],[117.432042,-0.549827099999959],[117.43060050000008,-0.550500499999941],[117.42945020000002,-0.549842299999966],[117.42952510000009,-0.547084],[117.42751240000007,-0.546422299999961],[117.4255098000001,-0.549029499999961],[117.42585660000009,-0.549593399999935],[117.4286962000001,-0.5505369],[117.42797610000002,-0.552176299999928],[117.42851260000009,-0.550683799999945],[117.42569330000003,-0.549833599999943],[117.425275,-0.549035299999957],[117.42556220000006,-0.548173399999939],[117.42755650000004,-0.546088],[117.42835070000001,-0.546044799999947],[117.42992560000005,-0.547394699999927],[117.42988710000009,-0.549839299999974],[117.43134650000002,-0.549905],[117.43299880000006,-0.546182699999974],[117.43696080000007,-0.546936399999936],[117.43640390000007,-0.543097899999964],[117.44329950000008,-0.543247],[117.44799840000007,-0.534096299999931],[117.455271,-0.534993899999961],[117.46079910000003,-0.531402899999932],[117.49551230000009,-0.516771799999958],[117.50926990000005,-0.507172199999957],[117.50976880000007,-0.502193299999931],[117.50246920000006,-0.502912],[117.49899790000006,-0.508710299999962],[117.49645830000009,-0.507425099999978],[117.49542350000002,-0.500380599999971],[117.48610740000004,-0.5004962],[117.48438850000002,-0.502226899999926],[117.48479,-0.505717],[117.48770700000011,-0.503935],[117.488435,-0.504749],[117.486669,-0.505337],[117.48775100000012,-0.506142],[117.484158,-0.506043],[117.48457180000003,-0.508613099999934],[117.48735380000005,-0.508852299999944],[117.49170890000005,-0.512099],[117.4888793,-0.511513899999954],[117.48695320000002,-0.509225699999945],[117.48459920000005,-0.509340799999961],[117.48374600000011,-0.506910499999947],[117.48282670000003,-0.507569799999942],[117.48375780000003,-0.508232299999975],[117.48396030000004,-0.509320499999944],[117.48236340000005,-0.510612899999956],[117.48535520000007,-0.515027299999929],[117.48398550000002,-0.514056799999935],[117.48275870000009,-0.515558899999974],[117.48389720000011,-0.513902599999938],[117.48453270000005,-0.5139292],[117.48185160000003,-0.510865499999966],[117.48363890000007,-0.509124799999938],[117.48349740000003,-0.50851],[117.48078780000003,-0.508880499999975],[117.47987280000007,-0.510431],[117.47848850000003,-0.5092593],[117.47756970000012,-0.510854299999949],[117.47921040000006,-0.512296399999968],[117.4772908000001,-0.5182209],[117.47626480000008,-0.518278399999929],[117.47627210000007,-0.519427399999927],[117.47395370000004,-0.519262399999946],[117.4736792000001,-0.520537099999956],[117.47156370000005,-0.520870699999932],[117.47380260000011,-0.519048699999928],[117.47615030000009,-0.519235899999956],[117.47587570000007,-0.518048],[117.47698380000008,-0.517997599999944],[117.47771360000002,-0.516051499999946],[117.4785313000001,-0.512298199999975],[117.47710690000008,-0.5109674],[117.47777220000012,-0.509089499999959],[117.4744,-0.507385199999931],[117.47725250000008,-0.507331399999941],[117.47802280000008,-0.505600699999945],[117.47709680000003,-0.504984599999943],[117.47606830000007,-0.506952299999966],[117.47510770000008,-0.506235299999958],[117.47623540000006,-0.505151399999932],[117.47510290000002,-0.5048565],[117.47642270000006,-0.505011099999933],[117.47612660000004,-0.506686199999933],[117.476866,-0.5046768],[117.4779502,-0.504985499999975],[117.4782947000001,-0.506249],[117.47722640000006,-0.508026799999925],[117.47814670000002,-0.508594],[117.4795461000001,-0.506653799999924],[117.48294150000004,-0.5061628],[117.48145000000011,-0.501511],[117.47978,-0.501439],[117.480496,-0.49972],[117.478592,-0.499675],[117.480082,-0.49953],[117.479167,-0.498037],[117.48099700000012,-0.498887],[117.48217000000011,-0.496915],[117.48090800000011,-0.500317],[117.482023,-0.501348],[117.48282580000011,-0.505094299999939],[117.485125,-0.498227],[117.48446700000011,-0.497566],[117.484138,-0.495775],[117.485945,-0.493395],[117.485382,-0.494951],[117.484209,-0.496082],[117.485335,-0.498109],[117.48475,-0.499692],[117.48980260000008,-0.499763599999937],[117.4888370000001,-0.496743],[117.489983,-0.496109],[117.490626,-0.497412],[117.49198300000012,-0.496625],[117.49119,-0.496218],[117.49167100000011,-0.494924],[117.491026,-0.496001],[117.489853,-0.495259],[117.4906,-0.493856],[117.489134,-0.49439],[117.488899,-0.490102],[117.489344,-0.494083],[117.491091,-0.49344],[117.490267,-0.495168],[117.491842,-0.494616],[117.491736,-0.496055],[117.493376,-0.492942],[117.49310900000012,-0.490581],[117.493598,-0.49363],[117.49582,-0.491929],[117.495421,-0.493422],[117.493629,-0.493992],[117.49234600000011,-0.496652],[117.49086000000011,-0.497991],[117.489811,-0.49639],[117.4891,-0.497439],[117.49059960000011,-0.499492699999962],[117.49458640000012,-0.497950599999967],[117.49768130000007,-0.502005399999973],[117.49858990000007,-0.5066299],[117.50188660000003,-0.5019426],[117.50872250000009,-0.500517799999955],[117.51126680000004,-0.502049599999964],[117.5132407000001,-0.506944499999975],[117.52311980000002,-0.501318499999968],[117.537301,-0.496224299999938],[117.5371,-0.493337],[117.533387,-0.490951],[117.530435,-0.496707],[117.527796,-0.496561],[117.52575900000011,-0.493669],[117.521942,-0.493875],[117.519841,-0.495826],[117.519203,-0.494687],[117.524728,-0.492469],[117.527688,-0.487341],[117.5309830000001,-0.488318],[117.5284,-0.485156],[117.529905,-0.48225],[117.530914,-0.482388],[117.529622,-0.484349],[117.531322,-0.488242],[117.526947,-0.48932],[117.528076,-0.495114],[117.530852,-0.495193],[117.53264400000012,-0.488977],[117.54003200000011,-0.493944],[117.5385500000001,-0.491836],[117.538527,-0.487369],[117.542972,-0.47713],[117.546394,-0.476486],[117.5475100000001,-0.474352],[117.551914,-0.473982],[117.55259400000011,-0.475281],[117.54828,-0.474612],[117.546909,-0.477097],[117.54352,-0.477262],[117.543936,-0.479803],[117.542131,-0.480581],[117.539212,-0.488394],[117.541353,-0.493217],[117.53884130000006,-0.497406],[117.56091130000004,-0.488890199999958],[117.57753130000003,-0.486878099999956],[117.58314510000002,-0.481908],[117.5753370000001,-0.483471],[117.573024,-0.479274],[117.568925,-0.47959],[117.570257,-0.481845],[117.56862,-0.483664],[117.568067,-0.487747],[117.56659600000012,-0.488152],[117.568935,-0.481132],[117.567207,-0.479969],[117.567526,-0.477768],[117.561055,-0.479541],[117.558124,-0.478855],[117.56722,-0.476371],[117.568329,-0.476544],[117.568611,-0.479015],[117.570658,-0.478983],[117.572977,-0.476863],[117.575358,-0.482535],[117.58399010000005,-0.480916499999978],[117.58423570000002,-0.478404],[117.587517,-0.478870499999971],[117.59210140000005,-0.476930399999958],[117.5902,-0.474477],[117.592609,-0.467332],[117.591224,-0.464414],[117.588096,-0.465496],[117.58348600000011,-0.464504],[117.580329,-0.465882],[117.571886,-0.464353],[117.571752,-0.46779],[117.569072,-0.468991],[117.562926,-0.465764],[117.557319,-0.470632],[117.547816,-0.468198],[117.545052,-0.471626],[117.54037,-0.470313],[117.536257,-0.471235],[117.533648,-0.470255],[117.531537,-0.467111],[117.5339560000001,-0.46802],[117.535821,-0.470601],[117.540234,-0.468861],[117.5456640000001,-0.4704],[117.54777800000011,-0.466873],[117.551254,-0.468845],[117.549225,-0.463543],[117.55245900000011,-0.462737],[117.553211,-0.458771],[117.554955,-0.457718],[117.560904,-0.461182],[117.56123,-0.454652],[117.565756,-0.451359],[117.55093410000006,-0.4403177]]],[[[117.49506660000009,-0.460739599999954],[117.50621,-0.451236],[117.51434110000002,-0.440751199999966],[117.51607660000002,-0.436322799999971],[117.50499720000005,-0.448315799999932],[117.49814830000003,-0.454032099999949],[117.49467890000005,-0.459048899999971],[117.49506660000009,-0.460739599999954]]],[[[117.52002560000005,-0.437337099999979],[117.52549410000006,-0.433435],[117.53597900000011,-0.420652099999927],[117.54028210000001,-0.412657],[117.53828460000011,-0.410311299999933],[117.53169860000003,-0.413088399999936],[117.52401920000011,-0.422926899999936],[117.5202868,-0.431137499999977],[117.52002560000005,-0.437337099999979]]],[[[117.62018780000005,-0.417651899999953],[117.60741260000009,-0.408136799999966],[117.60241940000003,-0.406952299999944],[117.59328940000012,-0.410687099999961],[117.57919760000004,-0.421172299999967],[117.55886920000012,-0.432854899999938],[117.5571235000001,-0.434415299999955],[117.56973,-0.441606],[117.575229,-0.440073],[117.57519,-0.444322],[117.578634,-0.441656],[117.576208,-0.445557],[117.5750210000001,-0.445371],[117.5745260000001,-0.440864],[117.570236,-0.443109],[117.55618260000006,-0.435296599999958],[117.55304410000008,-0.437379299999975],[117.55264010000008,-0.439150599999948],[117.566276,-0.450246],[117.566817,-0.452697],[117.561836,-0.455722],[117.56128500000011,-0.462249],[117.559914,-0.462724],[117.5546,-0.459004],[117.55478,-0.464535],[117.550694,-0.464223],[117.550953,-0.465723],[117.553114,-0.468605],[117.556472,-0.469285],[117.563421,-0.464274],[117.568416,-0.468149],[117.570207,-0.468022],[117.570196,-0.46447],[117.572783,-0.463438],[117.58096300000011,-0.464679],[117.582599,-0.461946],[117.587197,-0.463989],[117.601015,-0.444953],[117.596866,-0.453973],[117.592892,-0.457215],[117.5937990000001,-0.458882],[117.598769,-0.457857],[117.592122,-0.460975],[117.591496,-0.462795],[117.594648,-0.466169],[117.592329,-0.475337],[117.59721730000001,-0.474178799999947],[117.60247980000008,-0.4778561],[117.60422920000008,-0.4774568],[117.62043470000003,-0.461274399999979],[117.62578320000011,-0.445906799999932],[117.62802920000001,-0.436212499999954],[117.62514040000008,-0.435925499999939],[117.62510440000005,-0.432514499999968],[117.6271729,-0.431688599999973],[117.62781440000003,-0.425225699999942],[117.62592380000001,-0.421276399999954],[117.62018780000005,-0.417651899999953]]],[[[117.52400860000012,-0.350572399999976],[117.51851610000006,-0.349950399999955],[117.51509240000007,-0.351961299999971],[117.51062280000008,-0.3612729],[117.50515450000012,-0.367664399999967],[117.49830630000008,-0.382658499999934],[117.48519240000007,-0.396123],[117.46936330000005,-0.418399499999964],[117.45806590000007,-0.463143399999979],[117.44151870000007,-0.4811809],[117.440806,-0.485348399999964],[117.44262640000011,-0.500387],[117.45957780000003,-0.495932499999981],[117.46999590000007,-0.490162699999928],[117.48052,-0.481735899999933],[117.48457540000004,-0.476733],[117.49065580000001,-0.463489699999968],[117.49525090000009,-0.456912099999954],[117.49831430000006,-0.453028699999948],[117.5099662,-0.442379199999948],[117.51555340000004,-0.434551499999941],[117.51916680000011,-0.423851499999955],[117.53569020000009,-0.398286],[117.53749690000006,-0.394097],[117.537045,-0.391727299999957],[117.53435800000011,-0.387658199999976],[117.53217040000004,-0.386700899999937],[117.52972150000005,-0.387754299999926],[117.52189950000002,-0.398693799999933],[117.51797650000003,-0.401518599999974],[117.51177070000006,-0.4028116],[117.50140390000001,-0.402094099999943],[117.50088090000008,-0.403889399999969],[117.50665950000007,-0.416216499999962],[117.50497170000006,-0.422105099999953],[117.5011201000001,-0.426820899999939],[117.50235680000003,-0.431225199999972],[117.5011204000001,-0.432254499999942],[117.49865420000003,-0.428695299999958],[117.49895860000004,-0.426515699999925],[117.504496,-0.415599799999939],[117.49895630000003,-0.405482899999924],[117.50000040000009,-0.400456599999927],[117.50658290000001,-0.398279399999979],[117.5195414000001,-0.3978956],[117.51992140000004,-0.391432699999939],[117.52146690000006,-0.391504399999974],[117.52603180000006,-0.386309799999935],[117.538847,-0.377859399999977],[117.54063010000004,-0.374508099999957],[117.5329733000001,-0.364670599999954],[117.5329494,-0.362109399999952],[117.527718,-0.353085599999929],[117.52400860000012,-0.350572399999976]]],[[[117.50990890000003,-0.350142399999925],[117.50688910000008,-0.348490899999945],[117.498415,-0.351088699999934],[117.4854997000001,-0.377782199999956],[117.48574270000006,-0.3869046],[117.49124940000002,-0.384696499999961],[117.4983251000001,-0.377783099999931],[117.50165930000003,-0.368334799999957],[117.5107650000001,-0.353637099999958],[117.50990890000003,-0.350142399999925]]],[[[117.539484,-0.345354],[117.53422400000011,-0.344487],[117.529503,-0.346788],[117.534734,-0.345421],[117.540884,-0.34614],[117.54714600000011,-0.350273],[117.543535,-0.346011],[117.539484,-0.345354]]],[[[117.48890790000007,-0.328769],[117.477537,-0.329088],[117.4732596,-0.331030299999952],[117.46407050000005,-0.340642499999944],[117.46036580000009,-0.346961399999941],[117.45812560000002,-0.3532158],[117.46495520000008,-0.362110499999972],[117.46737380000002,-0.375029499999926],[117.46144890000005,-0.387884499999927],[117.45351740000001,-0.387898099999973],[117.44563370000003,-0.381388499999957],[117.4390165000001,-0.380576],[117.43644580000012,-0.381806899999958],[117.43934480000007,-0.3897397],[117.43547990000002,-0.396859699999936],[117.4306997000001,-0.397777699999949],[117.43440940000005,-0.405562],[117.43167770000002,-0.4132139],[117.437971,-0.417162],[117.43942430000004,-0.423814199999924],[117.43482460000007,-0.429224199999965],[117.42704220000007,-0.428427499999941],[117.42553420000002,-0.431319199999962],[117.42617630000007,-0.433179099999961],[117.43503590000012,-0.433958899999936],[117.43863480000005,-0.438039599999968],[117.44363080000005,-0.435552799999925],[117.44538350000005,-0.44116],[117.4524196000001,-0.439803099999949],[117.45559770000011,-0.424581499999931],[117.4765119000001,-0.3877735],[117.49387370000011,-0.346694499999955],[117.49247040000012,-0.329927399999974],[117.48890790000007,-0.328769]]],[[[117.391159,0.005609],[117.3911250000001,0.004071],[117.392097,0.004343],[117.391159,0.005609]]],[[[117.391491,0.006514],[117.390565,0.005971],[117.393183,0.005881],[117.391491,0.006514]]],[[[117.3892049000001,0.022504800000036],[117.37017330000003,0.021959],[117.368813,0.020899],[117.370734,0.020446],[117.370919,0.018547],[117.373332,0.017913],[117.373664,0.015652],[117.37567600000011,0.015561],[117.373723,0.010676],[117.375826,0.012395],[117.37689000000012,0.010404],[117.38071900000011,0.012937],[117.382034,0.010495],[117.384709,0.012575],[117.387191,0.011128],[117.38981,0.006062],[117.390826,0.006966],[117.393502,0.006604],[117.394133,0.002352],[117.39152700000011,0.00199],[117.391657,0],[117.395799,-0.001565],[117.396938,-0.004352],[117.39599,-0.006107],[117.39710900000011,-0.009472],[117.399493,-0.00873],[117.40077,-0.011626],[117.403464,-0.009364],[117.40584,-0.010784],[117.405703,-0.012648],[117.4087300000001,-0.010486],[117.411719,-0.013942],[117.414102,-0.013869],[117.412407,-0.016873],[117.414378,-0.017569],[117.417233,-0.015416],[117.419036,-0.016592],[117.421215,-0.014222],[117.423833,-0.017633],[117.425943,-0.016918],[117.427546,-0.020754],[117.43043000000011,-0.019551],[117.429114,-0.022952],[117.431625,-0.022283],[117.4321460000001,-0.019804],[117.434107,-0.020727],[117.43430500000011,-0.017796],[117.436115,-0.016728],[117.437199,-0.025033],[117.4409710000001,-0.031909],[117.437461,-0.033501],[117.435887,-0.032461],[117.435636,-0.036034],[117.437123,-0.037762],[117.43867200000011,-0.037229],[117.4383,-0.039481],[117.440538,-0.037428],[117.443205,-0.037853],[117.4433130000001,-0.042159],[117.4482670000001,-0.042729],[117.448644,-0.046357],[117.454099,-0.048103],[117.453072,-0.050292],[117.4556050000001,-0.049542],[117.457545,-0.050781],[117.457298,-0.053242],[117.455277,-0.053658],[117.457548,-0.054725],[117.459506,-0.051695],[117.460593,-0.053567],[117.461974,-0.053106],[117.461628,-0.051061],[117.465258,-0.05373],[117.466417,-0.050329],[117.467262,-0.052572],[117.469107,-0.053178],[117.4691580000001,-0.050609],[117.472927,-0.050048],[117.471103,-0.049044],[117.473234,-0.046348],[117.475557,-0.048447],[117.474775,-0.049487],[117.47802700000011,-0.048519],[117.47915300000011,-0.04595],[117.4774890000001,-0.043118],[117.479326,-0.040947],[117.481923,-0.043027],[117.481207,-0.04547],[117.483488,-0.044556],[117.482905,-0.042973],[117.484023,-0.042485],[117.483718,-0.041318],[117.485619,-0.041906],[117.484957,-0.043742],[117.486637,-0.043579],[117.487282,-0.040874],[117.485037,-0.040214],[117.48676400000011,-0.038603],[117.489207,-0.039988],[117.49091590000012,-0.038717099999928],[117.491604,-0.041146],[117.493657,-0.042077],[117.49875,-0.041327],[117.49770500000011,-0.038857],[117.502728,-0.038004],[117.503803,-0.039526],[117.503482,-0.036241],[117.5053,-0.03397],[117.507891,-0.035827],[117.507186,-0.03381],[117.508175,-0.031689],[117.511279,-0.034664],[117.5122530000001,-0.03222],[117.5105400000001,-0.030583],[117.511334,-0.02928],[117.513272,-0.029696],[117.51494900000012,-0.032267],[117.51628790000007,-0.030637],[117.51827650000007,-0.031276299999945],[117.51865060000011,-0.023884799999962],[117.51488530000006,-0.009170199999971],[117.51083890000007,-0.001145899999926],[117.50848320000011,-0.001907399999936],[117.50997630000006,0.000447400000041],[117.50813920000007,-0.000263],[117.50657830000011,0.002363700000046],[117.50820870000007,0.005037500000071],[117.50706150000008,0.006229400000052],[117.50724450000007,0.010644200000058],[117.5115604,0.017409100000066],[117.42822730000012,0.019743400000038],[117.389802,0.018670100000065],[117.3892049000001,0.022504800000036]]],[[[117.022483,-1.141324099999963],[117.0334600000001,-1.129908],[117.05174020000004,-1.119589299999973],[117.0563704000001,-1.113147599999934],[117.06102210000006,-1.110210399999971],[117.06150900000011,-1.107157399999949],[117.06483520000006,-1.106442499999957],[117.06989260000012,-1.095915299999945],[117.07064730000002,-1.096589599999959],[117.07533690000002,-1.092070099999944],[117.07945490000009,-1.083214699999928],[117.09879580000006,-1.058991699999979],[117.10222950000002,-1.049359099999947],[117.11407230000009,-1.028162799999961],[117.11946560000001,-1.021575],[117.1203882000001,-1.01673],[117.12622870000007,-1.013091299999928],[117.13833960000011,-0.997739399999944],[117.1451158000001,-0.993628199999932],[117.15110330000005,-0.980103199999974],[117.15491270000007,-0.974630899999966],[117.1575808,-0.973180099999979],[117.15753780000011,-0.968770799999959],[117.16337340000007,-0.963758],[117.16457180000009,-0.960196099999962],[117.1702570000001,-0.953175],[117.1809654000001,-0.944453899999928],[117.18045160000008,-0.942845299999931],[117.1896402000001,-0.938536099999965],[117.20313740000006,-0.928065],[117.24177470000006,-0.912077199999942],[117.24878010000009,-0.907150399999978],[117.25148430000002,-0.8455006],[117.25010920000011,-0.834929899999963],[117.25365080000006,-0.810551699999962],[117.2455953000001,-0.803074199999969],[117.23901300000011,-0.800680899999975],[117.23279220000006,-0.799762],[117.21321000000012,-0.800637499999937],[117.20455980000008,-0.794174899999973],[117.1967201000001,-0.794763199999977],[117.190703,-0.792603],[117.18546,-0.785366],[117.18079860000012,-0.782680399999947],[117.18183250000004,-0.779475899999966],[117.18428660000006,-0.778786399999944],[117.19178990000012,-0.789377199999933],[117.197283,-0.788242299999979],[117.20874010000011,-0.790554099999952],[117.21778230000007,-0.796411599999942],[117.22674230000007,-0.793136499999946],[117.2362184000001,-0.793436899999961],[117.25749540000004,-0.804246699999965],[117.26257280000004,-0.8041753],[117.261129,-0.800506],[117.263803,-0.79629],[117.25986200000011,-0.798362],[117.257683,-0.795138599999973],[117.253166,-0.799421],[117.25000000000011,-0.79763],[117.253344,-0.798598],[117.257965,-0.794373],[117.26034140000002,-0.7973185],[117.262457,-0.795503],[117.264832,-0.796019],[117.266465,-0.791025],[117.265137,-0.789713],[117.265261,-0.788256],[117.266542,-0.787433],[117.267347,-0.788139],[117.268586,-0.787722],[117.26963,-0.788817],[117.27067000000011,-0.78746],[117.27183,-0.788419],[117.27220100000011,-0.785913],[117.272043,-0.788554],[117.270468,-0.788147],[117.2699060000001,-0.790328],[117.269936,-0.788935],[117.268812,-0.789043],[117.26819100000012,-0.788057],[117.267256,-0.788374],[117.266217,-0.78775],[117.265295,-0.789152],[117.266503,-0.790201],[117.266638,-0.793856],[117.261878,-0.800307],[117.26473410000006,-0.8069081],[117.270793,-0.804698199999962],[117.28102450000006,-0.7937291],[117.285688,-0.760945199999981],[117.28621280000004,-0.742964299999926],[117.2883594000001,-0.743630399999972],[117.2902451000001,-0.725565899999935],[117.29420940000011,-0.709062099999926],[117.30385680000006,-0.683061499999951],[117.30430600000011,-0.66837],[117.30223500000011,-0.648004],[117.297929,-0.628345],[117.29534260000003,-0.607319],[117.286318,-0.593172399999958],[117.28543850000005,-0.597989299999938],[117.28318790000003,-0.600653899999941],[117.27529140000001,-0.598819399999968],[117.271904,-0.599569799999927],[117.27040860000011,-0.6116047],[117.262085,-0.621165699999949],[117.25009920000002,-0.627169799999933],[117.24515530000008,-0.6342],[117.23144530000002,-0.639019499999961],[117.23059080000007,-0.641871699999967],[117.2350388000001,-0.6504015],[117.23529050000002,-0.653414199999929],[117.23216250000007,-0.660172699999976],[117.2274857000001,-0.664792599999942],[117.2228546,-0.668432199999927],[117.2012787000001,-0.670231699999931],[117.193512,-0.676034199999947],[117.19351960000006,-0.682411399999978],[117.19122310000012,-0.687343599999963],[117.18834690000006,-0.689371199999925],[117.18777470000009,-0.694013199999972],[117.18547820000003,-0.696337],[117.18576810000002,-0.7006811],[117.18174740000006,-0.706479199999933],[117.1774292,-0.707069699999977],[117.16821290000007,-0.705049199999962],[117.16620640000008,-0.706500099999971],[117.16361240000003,-0.705927799999927],[117.1610184000001,-0.704483099999948],[117.151986,-0.685195599999929],[117.148949,-0.686688],[117.138579,-0.687403],[117.13843660000009,-0.673915699999952],[117.13529210000002,-0.671854],[117.129631,-0.663306099999943],[117.13013460000002,-0.656369699999971],[117.13657380000006,-0.651351199999965],[117.13800050000009,-0.648677599999928],[117.14209750000009,-0.619383],[117.12497710000002,-0.607483399999978],[117.1201248000001,-0.599113799999941],[117.11509420000004,-0.597874599999955],[117.11019490000001,-0.599603799999954],[117.10010790000001,-0.594128],[117.09664960000009,-0.590957799999956],[117.09708190000003,-0.580870899999979],[117.09392710000009,-0.577139599999953],[117.08445740000002,-0.576257599999963],[117.082106,-0.577308],[117.078557,-0.586193],[117.07545390000007,-0.589850299999966],[117.07622530000003,-0.578596699999935],[117.06671090000009,-0.571377],[117.059818,-0.553532],[117.054544,-0.528996],[117.047297,-0.517217],[117.047739,-0.492915],[117.0526,-0.47207],[117.059652,-0.452899],[117.068726,-0.433981],[117.101187,-0.423513699999944],[117.123045,-0.4094357],[117.130253,-0.400777],[117.135737,-0.38821],[117.144523,-0.35051],[117.150177,-0.346484],[117.169801,-0.338359],[117.186452,-0.319441],[117.199402,-0.312492],[117.20771,-0.312917],[117.214349,-0.315839],[117.221334,-0.321105],[117.238802,-0.338665],[117.241601,-0.344464],[117.244163,-0.366825],[117.248664,-0.36751],[117.257802,-0.364693],[117.261809,-0.365073],[117.272188,-0.358767],[117.279332,-0.35921],[117.288404,-0.362811],[117.29295600000012,-0.366194],[117.29486,-0.371767],[117.298217,-0.375069],[117.298236,-0.381764],[117.302699,-0.383248],[117.3013734000001,-0.3893208],[117.30393220000008,-0.397329299999967],[117.3025818000001,-0.403715299999931],[117.2991224000001,-0.405250799999976],[117.2964783000001,-0.4096644],[117.29373170000008,-0.410898599999939],[117.28918780000004,-0.403690199999971],[117.28640750000011,-0.410427799999979],[117.27880860000005,-0.419714799999952],[117.283844,-0.4295942],[117.285141,-0.439953299999956],[117.28434750000008,-0.449657499999944],[117.28002170000002,-0.462764399999969],[117.26284030000011,-0.477502199999947],[117.26202390000003,-0.480902499999956],[117.25962070000003,-0.523651199999961],[117.26031490000003,-0.526996099999963],[117.26874540000006,-0.527545199999963],[117.268837,-0.531340299999954],[117.26414490000002,-0.531794899999966],[117.26412960000005,-0.533728399999973],[117.26734920000001,-0.543474],[117.26681520000011,-0.546883],[117.26897610000003,-0.548916099999929],[117.266879,-0.548834],[117.261912,-0.554258],[117.259898,-0.553297],[117.259624,-0.551477],[117.256908,-0.550748],[117.25673680000011,-0.553522],[117.25862410000002,-0.555138799999952],[117.255964,-0.55574],[117.255111,-0.554164],[117.2532470000001,-0.554377699999975],[117.2543793000001,-0.552382299999977],[117.253629,-0.550548],[117.252691,-0.553373699999952],[117.251163,-0.55374],[117.25183720000007,-0.555459299999939],[117.247874,-0.557504],[117.24645850000002,-0.559801399999969],[117.239537,-0.56227],[117.23938070000008,-0.567054399999961],[117.240732,-0.570156],[117.249529,-0.570464],[117.271155,-0.576461],[117.280675,-0.577480299999934],[117.30812970000011,-0.570743899999968],[117.30921400000011,-0.568398],[117.308218,-0.566742],[117.304287,-0.567366],[117.30988220000006,-0.565712399999938],[117.3310034000001,-0.578424599999948],[117.33674830000007,-0.579764699999942],[117.350713,-0.579498099999967],[117.34769910000011,-0.576799299999948],[117.3479847000001,-0.575109199999929],[117.36933050000005,-0.568524199999956],[117.37972980000006,-0.560491199999944],[117.38576010000008,-0.551303699999949],[117.39317240000003,-0.546114799999941],[117.41256940000005,-0.539101399999936],[117.41522010000006,-0.530962599999953],[117.43003740000006,-0.515194199999939],[117.42695490000006,-0.5119271],[117.42554570000004,-0.506343899999933],[117.42227610000009,-0.503453699999966],[117.41913740000007,-0.5030649],[117.41810950000001,-0.509911],[117.41540250000003,-0.511847699999976],[117.41230180000002,-0.5104799],[117.41042310000012,-0.507410099999959],[117.40850660000001,-0.507338399999981],[117.40682360000005,-0.513476],[117.40340930000002,-0.514927399999976],[117.40531520000002,-0.515790299999935],[117.40480660000003,-0.519596399999955],[117.40737940000008,-0.520170699999937],[117.406847,-0.524015],[117.40544520000003,-0.524035199999958],[117.40673330000004,-0.523752399999978],[117.406764,-0.520204899999953],[117.40480950000006,-0.520118899999943],[117.4042055000001,-0.519381599999974],[117.40477830000009,-0.515795799999978],[117.40003880000006,-0.516560699999957],[117.39811910000003,-0.522682699999962],[117.39863050000008,-0.5262254],[117.39602710000008,-0.529696399999978],[117.39769760000001,-0.531978699999968],[117.39576090000003,-0.532743699999969],[117.39542070000005,-0.529134],[117.3980123,-0.525950099999932],[117.39742360000002,-0.522802499999955],[117.39835650000009,-0.517763599999967],[117.40604830000007,-0.511551499999939],[117.40777180000009,-0.505770499999926],[117.41121370000008,-0.505919899999981],[117.41613,-0.510228299999937],[117.4168489000001,-0.503986599999962],[117.4199708000001,-0.501601699999981],[117.42559910000011,-0.504303199999924],[117.4284113000001,-0.511974899999927],[117.43121020000001,-0.513106099999959],[117.43883890000006,-0.497045399999934],[117.43743240000003,-0.483633599999962],[117.44062090000011,-0.477544599999931],[117.45270640000001,-0.463412799999958],[117.45467110000004,-0.458776099999966],[117.45553010000003,-0.452982599999928],[117.45457140000008,-0.447395899999947],[117.44471190000002,-0.442072499999938],[117.44308230000001,-0.4370869],[117.43851120000011,-0.439313299999981],[117.43469430000005,-0.4349806],[117.42685360000007,-0.434627499999976],[117.42440570000008,-0.432475299999965],[117.42614520000006,-0.427540499999964],[117.43005620000008,-0.426308199999937],[117.4353724,-0.427317899999935],[117.43784180000011,-0.422257699999932],[117.436816,-0.417982599999959],[117.43055620000007,-0.415146099999959],[117.4304055,-0.4111159],[117.43254510000008,-0.405490599999951],[117.42817570000011,-0.398968599999932],[117.42998140000009,-0.394283199999961],[117.43725710000001,-0.390920799999947],[117.43470570000011,-0.385108399999979],[117.43543610000006,-0.3809399],[117.43969690000006,-0.37868],[117.44509390000007,-0.378978199999949],[117.45476940000003,-0.386283099999957],[117.4589453000001,-0.386776199999929],[117.46260470000004,-0.3810096],[117.46460310000009,-0.370876599999974],[117.462885,-0.364031199999943],[117.452914,-0.355982499999925],[117.45097310000006,-0.344720399999972],[117.45145350000007,-0.337920399999973],[117.44690950000006,-0.323982399999977],[117.44712720000007,-0.31629],[117.4525430000001,-0.303732799999977],[117.44583740000007,-0.300540699999942],[117.4400634000001,-0.295643599999948],[117.425585,-0.273955],[117.42193150000003,-0.257434],[117.41703130000008,-0.245697399999926],[117.41793930000006,-0.234308599999963],[117.41677390000007,-0.223417299999937],[117.4196746,-0.218270699999948],[117.4197458000001,-0.2129806],[117.42388280000011,-0.208288799999934],[117.43229980000001,-0.204315],[117.43206210000005,-0.207091699999978],[117.43516270000009,-0.207962399999928],[117.437857,-0.202346],[117.43281700000011,-0.199388],[117.431981,-0.192096],[117.4248500000001,-0.187455],[117.4242200000001,-0.182244],[117.426566,-0.178824],[117.426127,-0.174807],[117.431277,-0.168547],[117.443605,-0.165217],[117.444445,-0.160775],[117.447332,-0.158196],[117.446817,-0.152877],[117.449506,-0.151384],[117.44830900000011,-0.14848],[117.451903,-0.147249],[117.45197,-0.141803],[117.4484910000001,-0.141288],[117.449582,-0.138664],[117.445348,-0.136438],[117.446094,-0.135063],[117.444509,-0.132222],[117.446829,-0.128549],[117.445747,-0.123944],[117.446785,-0.123655],[117.44722700000011,-0.129843],[117.44508,-0.132105],[117.446493,-0.134882],[117.445883,-0.135986],[117.449923,-0.138202],[117.4493010000001,-0.141016],[117.453975,-0.140555],[117.452171,-0.141052],[117.452214,-0.147638],[117.448796,-0.149439],[117.449809,-0.152162],[117.447425,-0.153112],[117.447792,-0.158495],[117.445438,-0.160513],[117.444314,-0.165226],[117.43250400000011,-0.169053],[117.427045,-0.175341],[117.427561,-0.178933],[117.425221,-0.18295],[117.425819,-0.187111],[117.432581,-0.1912],[117.43434800000011,-0.199035],[117.439119,-0.199614],[117.43679140000006,-0.208321399999932],[117.42642720000003,-0.216140099999961],[117.42278950000002,-0.221765399999924],[117.42642740000008,-0.221932899999956],[117.43218130000002,-0.2171932],[117.44250000000011,-0.201945],[117.44480580000004,-0.179492],[117.45538590000001,-0.153328699999975],[117.46109190000004,-0.132886399999961],[117.46972860000005,-0.110237199999972],[117.446538,-0.089484],[117.44671,-0.087702],[117.470318,-0.109466599999962],[117.47271830000011,-0.102821399999925],[117.4730985000001,-0.089297],[117.47583270000007,-0.083360699999957],[117.47614180000005,-0.0772807],[117.47866210000007,-0.076155599999936],[117.48172920000002,-0.068950599999937],[117.48577120000004,-0.0669638],[117.504224,-0.050605399999938],[117.51534850000007,-0.033391199999926],[117.511376,-0.030076],[117.512995,-0.031448],[117.511434,-0.035332],[117.51031400000011,-0.035862],[117.50806000000011,-0.032623],[117.50889,-0.035678],[117.507038,-0.036887],[117.505341,-0.034581],[117.5043,-0.040299],[117.502579,-0.038961],[117.500727,-0.040159],[117.49819900000011,-0.039182],[117.499519,-0.041743],[117.49441600000011,-0.042711],[117.49162,-0.04186],[117.490655,-0.039273],[117.489223,-0.040521],[117.486255,-0.039508],[117.488004,-0.041309],[117.487176,-0.04386],[117.4844680000001,-0.04405],[117.484442,-0.041897],[117.483378,-0.04357],[117.484163,-0.04481],[117.480903,-0.046113],[117.481148,-0.043398],[117.479045,-0.041643],[117.478107,-0.043471],[117.47984,-0.046194],[117.478646,-0.048872],[117.474435,-0.049939],[117.474883,-0.048374],[117.473285,-0.046999],[117.471798,-0.0488],[117.473374,-0.050256],[117.46965000000012,-0.050754],[117.469761,-0.053567],[117.466922,-0.052952],[117.466415,-0.050953],[117.465592,-0.054192],[117.461917,-0.051496],[117.4620890000001,-0.053441],[117.46063,-0.054056],[117.459589,-0.052201],[117.45821200000012,-0.054798],[117.455707,-0.054644],[117.4547050000001,-0.053468],[117.457242,-0.05155],[117.45537900000011,-0.050075],[117.452686,-0.050564],[117.45334900000012,-0.048076],[117.448374,-0.046773],[117.44771,-0.043227],[117.44281200000012,-0.042485],[117.442918,-0.038549],[117.440509,-0.038151],[117.438051,-0.039943],[117.438287,-0.037391],[117.437126,-0.038233],[117.434996,-0.035844],[117.43536,-0.032226],[117.437721,-0.033013],[117.438443,-0.031692],[117.440514,-0.031918],[117.436594,-0.025277],[117.435937,-0.017361],[117.4344880000001,-0.017832],[117.435394,-0.019686],[117.434475,-0.021116],[117.432206,-0.020184],[117.432163,-0.022437],[117.429312,-0.023378],[117.42835900000011,-0.022744],[117.430193,-0.019913],[117.427411,-0.021197],[117.425697,-0.017651],[117.423562,-0.018302],[117.421058,-0.014701],[117.419485,-0.017027],[117.417384,-0.015778],[117.414462,-0.01804],[117.4118380000001,-0.017072],[117.413611,-0.013987],[117.411774,-0.014394],[117.408721,-0.010902],[117.40530600000011,-0.013091],[117.405716,-0.011037],[117.40437,-0.011481],[117.403271,-0.009653],[117.400452,-0.011924],[117.399438,-0.009065],[117.39734,-0.009934],[117.396824,-0.00949],[117.395682,-0.006206],[117.396642,-0.00456],[117.39616200000012,-0.002768],[117.394575,-0.00133],[117.39201,-0.000642],[117.39092,0.000543],[117.391423,0.002895],[117.393721,0.002714],[117.393742,0.004704],[117.390736,0.003438],[117.388357,0.008866],[117.384742,0.012214],[117.382446,0.010133],[117.381029,0.010404],[117.380524,0.012485],[117.37698200000011,0.009861],[117.375962,0.011942],[117.3735630000001,0.010223],[117.37531,0.015199],[117.3730690000001,0.015652],[117.372783,0.01728],[117.370575,0.018366],[117.370392,0.019904],[117.3686090000001,0.020447],[117.36855,0.021894],[117.36981140000012,0.022165],[117.366742,0.027322],[117.36793000000011,0.028589],[117.366753,0.030308],[117.363895,0.027684],[117.363093,0.030398],[117.360363,0.02687],[117.357746,0.026508],[117.354715,0.027322],[117.352554,0.030308],[117.348233,0.02687],[117.346826,0.030398],[117.34379600000011,0.03266],[117.339348,0.033113],[117.337889,0.037093],[117.335767,0.037908],[117.334178,0.045145],[117.3379086000001,0.048938300000032],[117.324103,0.047876400000064],[117.28635190000011,0.032223400000021],[117.26195170000005,0.054782100000068],[117.19519660000003,0.09529550000002],[117.16987570000003,0.105423900000062],[117.1528416000001,0.121997600000043],[117.14777740000011,0.143635400000051],[117.154791,0.187953],[117.16180730000008,0.196769900000049],[117.18368710000004,0.284051400000067],[117.18037560000005,0.323208600000044],[117.1703361000001,0.34344040000002],[117.15106750000007,0.364075600000035],[117.11601120000012,0.412957800000072],[117.0824943,0.448017900000025],[117.04081330000008,0.501165800000024],[117.00782190000007,0.580536100000074],[116.9921690000001,0.613683500000036],[116.97789720000003,0.614604300000053],[116.95073480000008,0.596649400000047],[116.93462150000005,0.56027940000007],[116.94705170000009,0.521147100000064],[116.93968560000008,0.503192300000023],[116.9311550000001,0.491979],[116.929956,0.487538],[116.929905,0.483653],[116.935829,0.464949],[116.939285,0.458504],[116.944017,0.43593],[116.946706,0.405497],[116.944144,0.375246],[116.9221030000001,0.330963],[116.89594100000011,0.294733],[116.88785,0.278382],[116.8812170000001,0.268754],[116.876722,0.265612],[116.867729,0.250073],[116.862158,0.243174],[116.859565,0.236922],[116.848865,0.221862],[116.839963,0.213407],[116.818344,0.184089],[116.797384,0.161619],[116.793191,0.155274],[116.752739,0.108944],[116.749934,0.103952],[116.73919400000011,0.094606],[116.738311,0.088218],[116.739458,0.062147],[116.741409,0.054123],[116.741737,0.044176],[116.738351,0.029592],[116.729329,0.020681],[116.719224,0.016355],[116.715224,0.016064],[116.684644,0.017832],[116.638857,0.017969],[116.6232480000001,0.020686],[116.603373,0.020144],[116.577375,0.022995],[116.5403960000001,0.024389],[116.496224,0.023692],[116.495535,0.020098],[116.4915830000001,0.02385],[116.474851,0.027249],[116.47469500000011,0.0423],[116.476637,0.056541],[116.47996300000011,0.06733],[116.49052,0.12141],[116.4894220000001,0.157719],[116.492009,0.183791],[116.493618,0.224112],[116.49303,0.268806],[116.488686,0.287317],[116.477152,0.31596],[116.458593,0.341179],[116.45316900000012,0.354178],[116.429861,0.36459],[116.402898,0.36835],[116.388667,0.372301],[116.377964,0.380606],[116.371089,0.383959],[116.341359,0.417599],[116.330661,0.426938],[116.318548,0.433869],[116.284517,0.448796],[116.284282,0.474428],[116.285634,0.490638],[116.283433,0.497066],[116.275372,0.509399],[116.271009,0.525226],[116.273826,0.557531],[116.284467,0.56802],[116.295279,0.574051],[116.298526,0.577895],[116.299786,0.587021],[116.291139,0.607017],[116.282051,0.619477],[116.261153,0.637005],[116.257481,0.644366],[116.24155,0.666286],[116.23613000000012,0.679841],[116.232895,0.70331],[116.224974,0.708898],[116.18532,0.715355],[116.16444400000012,0.716883],[116.146801,0.721226],[116.141171,0.727356],[116.1432420000001,0.746185],[116.141605,0.752034],[116.13869000000011,0.756186],[116.134827,0.757722],[116.115778,0.759226],[116.105542,0.762445],[116.09780400000011,0.773287],[116.087201,0.783367],[116.06097000000011,0.803478],[116.05061200000011,0.806012],[116.03144,0.806946],[116.024731,0.80909],[116.020412,0.810632],[116.009213,0.818777],[116.00675300000012,0.822808],[116.006372,0.828641],[116.00955770000007,0.834014400000058],[116.01326340000003,0.835137400000065],[116.0274018,0.851734600000043],[116.03662250000002,0.872020100000043],[116.03908130000002,0.88677320000005],[116.0587521000001,0.892305600000043],[116.06612860000007,0.899067400000035],[116.042615,0.946898200000021],[116.049006,0.964081],[116.0481400000001,0.985348],[116.0453702000001,0.99474170000002],[116.0501461,1.001109500000041],[116.06612860000007,1.014633200000048],[116.06981690000009,1.033074500000055],[116.06293010000002,1.047135100000048],[116.070375,1.062198],[116.071007,1.066875],[116.070344,1.077397],[116.0666930000001,1.086473],[116.06598,1.09311],[116.07141700000011,1.098525],[116.08313,1.10363],[116.106956,1.109378],[116.122969,1.111456],[116.1319850000001,1.11111],[116.1427900000001,1.125369],[116.146326,1.133894],[116.1449080000001,1.156654],[116.142931,1.162737],[116.131272,1.179458],[116.129339,1.188854],[116.147635,1.217301],[116.148441,1.226662],[116.146732,1.235712],[116.134704,1.259181],[116.12776550000001,1.277825900000039],[116.12882920000004,1.286335800000074],[116.144197,1.298015300000031],[116.14727060000007,1.325677300000052],[116.15710600000011,1.355798200000038],[116.15833540000006,1.386533800000052],[116.14542640000002,1.406819300000052],[116.13866460000008,1.42341650000003],[116.1485,1.467675700000029],[116.14112340000008,1.477511100000072],[116.1134614,1.48673180000003],[116.08764350000001,1.491034800000023],[116.0100787,1.528054300000065],[116.007052,1.526648],[115.99523550000004,1.53128410000005],[115.9727468000001,1.531236],[115.96274090000009,1.521758],[115.95728040000006,1.512840800000049],[115.95452150000006,1.506026900000052],[115.95865370000001,1.498751200000072],[115.95401370000002,1.490512300000034],[115.92911860000004,1.483106200000066],[115.91963050000004,1.478852900000049],[115.91198650000001,1.478555500000027],[115.90529430000004,1.475105300000052],[115.89889950000008,1.465052100000037],[115.88783500000011,1.458597800000064],[115.88268940000012,1.45309530000003],[115.87070290000008,1.448366100000044],[115.86023320000004,1.438699500000041],[115.8525,1.435992900000031],[115.85009080000009,1.432096500000057],[115.84845490000009,1.41779],[115.850061,1.409908],[115.85505790000002,1.402264],[115.83968060000007,1.384388300000069],[115.8319474000001,1.378023300000052],[115.827129,1.366810100000066],[115.82463060000009,1.367642900000021],[115.81683780000003,1.377934],[115.81249530000002,1.37927250000007],[115.8018770000001,1.371301300000027],[115.79194270000005,1.360772200000042],[115.7839715,1.357203],[115.7744537000001,1.35871990000004],[115.76901070000008,1.355388600000026],[115.766423,1.345513900000071],[115.7584518000001,1.33126690000006],[115.75791640000011,1.326835100000039],[115.7590169,1.322938700000066],[115.768619,1.31217920000006],[115.77103910000005,1.306745],[115.7701171000001,1.292022100000054],[115.77219910000008,1.270904400000063],[115.76922480000007,1.263557800000058],[115.76050750000002,1.25993150000005],[115.75000000000011,1.259322200000042],[115.73558830000002,1.265252600000053],[115.73277320000011,1.264849100000049],[115.72693540000012,1.260883200000023],[115.72392980000006,1.261302900000032],[115.7173269000001,1.266009300000064],[115.71301040000003,1.263097100000039],[115.70884490000003,1.26253980000007],[115.69986540000002,1.265139100000056],[115.69142880000004,1.270907],[115.67616380000004,1.271294100000034],[115.6669965000001,1.273694400000068],[115.65271350000012,1.281376600000044],[115.6317891000001,1.285198500000035],[115.59955080000009,1.280406800000037],[115.59662620000006,1.280728200000055],[115.593776,1.283214200000032],[115.5659323000001,1.26971930000002],[115.53853970000011,1.262464200000068],[115.50434370000005,1.25707680000005],[115.50277420000009,1.256352500000048],[115.50548730000003,1.248160800000051],[115.4992813,1.236241800000073],[115.4951003000001,1.230810800000029],[115.48888330000011,1.226891800000033],[115.47581030000003,1.213804800000048],[115.47916530000009,1.199590800000067],[115.49118830000009,1.18446380000006],[115.50345430000004,1.16179180000006],[115.51743230000011,1.121383800000046],[115.5208583000001,1.103740800000026],[115.5221643000001,1.081210800000065],[115.5258583000001,1.057849800000042],[115.52498530000003,1.025748800000031],[115.51981930000011,0.953134800000043],[115.5166243000001,0.935690800000032],[115.509247,0.911612400000024],[115.48559300000011,0.866366],[115.465424,0.834401],[115.4627650000001,0.823007],[115.461992,0.807475],[115.46361600000012,0.782999],[115.46609300000011,0.771424],[115.481184,0.755229],[115.508552,0.734761],[115.519984,0.718157],[115.572482,0.65428],[115.578739,0.643685],[115.587757,0.634654],[115.600092,0.626037],[115.610453,0.623732],[115.620289,0.624975],[115.62628,0.620212],[115.6423387000001,0.61688950000007],[115.65333550000003,0.603939],[115.64996350000001,0.576945400000056],[115.63646710000012,0.556700100000057],[115.66995,0.535993],[115.764852,0.448825],[115.781797,0.425863],[115.781978,0.404605],[115.774953,0.373612],[115.763055,0.345425],[115.760022,0.331637],[115.760879,0.318484],[115.7707630000001,0.305785],[115.783376,0.30105],[115.788511,0.300755],[115.788123,0.298222],[115.805683,0.260254],[115.82051530000001,0.195478500000036],[115.85915940000007,0.20578370000004],[115.89627570000005,0.212532100000033],[115.91652110000007,0.20578370000004],[115.91652120000003,0.168667300000038],[115.9232694000001,0.138299400000051],[115.95026340000004,0.114679900000056],[115.99075390000007,0.09106040000006],[116.011337,0.069473],[116.02834,0.059425],[116.030044,0.050114],[116.027052,0.036221],[116.013065,0.019376],[115.984305,-0.008338],[115.973009,-0.028265],[115.9824781000001,-0.065384699999925],[115.9907538000001,-0.070901799999945],[116.03124430000003,-0.111392399999943],[116.07173490000002,-0.165379799999926],[116.104857,-0.18912],[116.140498,-0.208951],[116.16039400000011,-0.225064],[116.1860620000001,-0.250013],[116.236794,-0.281482],[116.254844,-0.289851],[116.320007,-0.299761],[116.30381000000011,-0.374323],[116.29307620000009,-0.390791299999933],[116.27583060000006,-0.425161399999979],[116.27796400000011,-0.437701],[116.282909,-0.443573],[116.2915,-0.447844],[116.298986,-0.449002],[116.3116950000001,-0.447565],[116.31715,-0.451293],[116.317414,-0.456341],[116.314344,-0.468147],[116.309988,-0.477672],[116.304301,-0.482665],[116.30416,-0.486537],[116.308596,-0.489921],[116.317658,-0.483517],[116.321134,-0.483355],[116.328639,-0.488186],[116.332698,-0.488431],[116.33605200000011,-0.499985],[116.341384,-0.535469],[116.350292,-0.571629],[116.388641,-0.632869],[116.40553000000011,-0.664861],[116.44446,-0.726792],[116.47843200000011,-0.753207],[116.4989230000001,-0.766368],[116.52188,-0.774987599999974],[116.50532120000003,-0.804793099999927],[116.49857280000003,-0.8216642],[116.5053213000001,-0.838535199999967],[116.5160088,-0.842106399999977],[116.523885,-0.838711],[116.531859,-0.837789],[116.54312670000002,-0.839394399999946],[116.5652569,-0.849446199999932],[116.57955390000006,-0.862154699999962],[116.60317340000006,-0.879025799999965],[116.63016730000004,-0.8824],[116.64703830000008,-0.841909499999929],[116.66729740000005,-0.811523399999942],[116.6840820000001,-0.801391599999931],[116.71447750000004,-0.797912599999961],[116.74151620000009,-0.808167399999945],[116.76850980000006,-0.811541599999941],[116.8090006000001,-0.811541599999941],[116.85968020000007,-0.818298299999981],[116.89270020000004,-0.831481899999972],[116.88476040000012,-0.851373299999977],[116.898932,-0.864035],[116.919785,-0.888752],[116.94053930000007,-0.907492499999933],[116.955046,-0.925738],[116.94676550000008,-0.933155],[116.92055510000012,-0.963049699999942],[116.89993360000005,-0.972204899999952],[116.88919610000005,-0.978662699999973],[116.8791347,-0.988334799999961],[116.87466970000003,-0.995373299999926],[116.873954,-1.006657],[116.872025,-1.008446],[116.85300630000006,-1.014193299999931],[116.84283920000007,-1.022288099999969],[116.83979260000001,-1.029146899999944],[116.841666,-1.032570699999951],[116.83750740000005,-1.038749199999927],[116.83717550000006,-1.045987199999956],[116.83854340000005,-1.046329199999946],[116.83930360000011,-1.0489896],[116.84500450000007,-1.0489896],[116.84652470000003,-1.053170299999977],[116.85526620000007,-1.055070599999965],[116.860587,-1.058491199999935],[116.86780820000001,-1.059251299999971],[116.8818705000001,-1.055450699999938],[116.88415080000004,-1.055830699999944],[116.88757140000007,-1.059631399999944],[116.89365240000006,-1.0607715],[116.897453,-1.063051899999948],[116.90049350000004,-1.062291799999969],[116.90277390000006,-1.063432],[116.9039140000001,-1.071413299999961],[116.9080947000001,-1.0809148],[116.91303550000009,-1.082435099999941],[116.91759630000001,-1.090796399999931],[116.92253710000011,-1.090416399999924],[116.92671770000004,-1.096117299999946],[116.9325275000001,-1.098126399999956],[116.929107,-1.106055],[116.934047,-1.108284],[116.940539,-1.10727],[116.948776,-1.108405],[116.957534,-1.112851],[116.963464,-1.120921],[116.968667,-1.12199],[116.972382,-1.125441],[116.995144,-1.131637],[117.003676,-1.130302],[117.018043,-1.13653],[117.022483,-1.141324099999963]]]]},"properties":{"shapeName":"Kutai Kartanegara","shapeISO":"","shapeID":"22746128B61569109364110","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.52358210000011,0.273480500000062],[117.5249146000001,0.275193700000045],[117.5217024000001,0.276502400000027],[117.52098850000004,0.274789200000043],[117.52358210000011,0.273480500000062]]],[[[118.01303440000004,0.743724300000054],[118.008447,0.745013],[118.00279400000011,0.736717],[118.00089990000004,0.739145300000075],[117.9993290000001,0.738174],[117.99671680000006,0.732178200000021],[117.99748780000004,0.727838100000042],[118.0032556000001,0.717316100000062],[118.007753,0.714032],[118.01235,0.712776],[118.01626170000009,0.713846800000056],[118.02000220000002,0.717530200000056],[118.02296230000002,0.724483],[118.022763,0.734296],[118.02019260000009,0.740663400000074],[118.01681380000002,0.745184300000062],[118.01303440000004,0.743724300000054]]],[[[118.49070970000002,0.767385900000022],[118.489221,0.772272500000042],[118.4848846000001,0.772757900000045],[118.48274870000012,0.769910100000061],[118.4837195,0.766479700000048],[118.48714990000008,0.765088200000037],[118.490289,0.764958700000022],[118.49070970000002,0.767385900000022]]],[[[118.04391160000011,0.770644900000036],[118.04678600000011,0.771612],[118.046393,0.776145300000053],[118.04450130000009,0.78092810000004],[118.041253,0.78257],[118.03854080000008,0.779678800000056],[118.038719,0.776217],[118.04000410000003,0.773325700000044],[118.04391160000011,0.770644900000036]]],[[[118.76268260000006,0.805032400000073],[118.7610836,0.805089500000065],[118.76121690000002,0.803766600000074],[118.7625303000001,0.803709500000025],[118.76268260000006,0.805032400000073]]],[[[118.77697480000006,0.805859200000043],[118.77643250000006,0.805012500000032],[118.777887,0.804839600000037],[118.77697480000006,0.805859200000043]]],[[[118.78181460000008,0.80124120000005],[118.78349930000002,0.804396300000064],[118.78208590000008,0.806459300000029],[118.7805297000001,0.80438920000006],[118.78181460000008,0.80124120000005]]],[[[118.718806,0.817842900000073],[118.71668590000002,0.817857200000049],[118.7164289000001,0.81529450000005],[118.718806,0.817842900000073]]],[[[118.01911690000009,0.89690360000003],[118.015439,0.896508],[118.014796,0.89201],[118.01822290000007,0.890439900000047],[118.01970760000006,0.893209600000034],[118.01792300000011,0.888769500000024],[118.021521,0.884629],[118.027103,0.881688],[118.0283736,0.884800600000062],[118.02793110000005,0.890468500000054],[118.0235100000001,0.893663],[118.019608,0.893981],[118.01911690000009,0.89690360000003]]],[[[118.91835830000002,0.904716400000041],[118.91346110000006,0.902434200000073],[118.91460730000006,0.898466800000051],[118.9161706000001,0.901279300000056],[118.9200092000001,0.903040800000042],[118.91835830000002,0.904716400000041]]],[[[118.92725880000012,0.910652],[118.92581860000007,0.910667200000034],[118.92617370000005,0.908140600000024],[118.92899780000005,0.909273100000064],[118.92725880000012,0.910652]]],[[[118.00525660000005,0.929344300000025],[118.00009310000007,0.935316900000032],[117.99893820000011,0.938721300000054],[117.99643980000008,0.934638100000029],[117.99241370000004,0.931897],[117.993684,0.919393],[118.000426,0.903123],[118.002877,0.90041],[118.00963500000012,0.90367],[118.00656640000011,0.915317100000038],[118.0089210000001,0.928512],[118.00525660000005,0.929344300000025]]],[[[118.00358460000007,0.96866110000002],[118.00280910000004,0.974073600000054],[118.00514360000011,0.982536400000072],[118.00467590000005,0.987525300000073],[118.0021815,0.989708],[117.99859570000001,0.990175700000066],[118.00077840000006,0.983627700000056],[118.0004666000001,0.979886100000044],[117.997126,0.973763900000051],[118.00121910000007,0.964323600000057],[118.00627780000002,0.96442890000003],[118.00358460000007,0.96866110000002]]],[[[117.95482430000004,1.045895800000039],[117.94830040000011,1.053235100000052],[117.94074820000003,1.05671250000006],[117.93667990000006,1.056904700000075],[117.93525280000006,1.050177],[117.93831080000007,1.048342200000036],[117.9389225000001,1.042633800000033],[117.94626180000012,1.035090700000069],[117.95074690000001,1.015111500000046],[117.95400880000011,1.009810900000048],[117.95971710000003,1.005733500000076],[117.96562940000001,0.992074200000047],[117.97093,0.983919400000048],[117.97490650000009,0.982434100000035],[117.97772510000004,0.976173900000049],[117.9832520000001,0.976886],[117.98710320000009,0.978669600000046],[117.98458920000007,0.987793],[117.97969630000011,0.995336100000031],[117.980308,1.00084060000006],[117.97459960000003,1.011849600000062],[117.9776577,1.016334700000073],[117.97459960000003,1.023062400000072],[117.96379450000006,1.035906100000034],[117.96094040000003,1.035090700000069],[117.95298940000009,1.041614500000037],[117.95596350000005,1.040780300000051],[117.95482430000004,1.045895800000039]]],[[[117.91877340000008,1.092603900000029],[117.91534360000003,1.10055490000002],[117.90708070000005,1.108038300000032],[117.90801610000005,1.103517100000033],[117.91378450000002,1.094318800000053],[117.91799390000006,1.091512600000044],[117.91877340000008,1.092603900000029]]],[[[116.18453060000002,1.840615800000023],[116.18399370000009,1.835480300000029],[116.17519370000002,1.815661500000033],[116.17450020000001,1.804325700000049],[116.16817350000008,1.778636500000061],[116.16179720000002,1.770483300000024],[116.16058810000004,1.766688600000066],[116.1602438000001,1.759447200000068],[116.15738560000011,1.751528600000029],[116.162082,1.744811600000048],[116.15899210000009,1.741398500000059],[116.15716980000002,1.735382700000059],[116.15129060000004,1.726241],[116.14744540000004,1.706166400000029],[116.14238130000001,1.701889200000039],[116.14131210000005,1.686734800000067],[116.13780040000006,1.682444600000053],[116.13076150000006,1.678673600000025],[116.13354330000004,1.670193500000039],[116.13310860000001,1.667809300000044],[116.12935220000008,1.662655800000039],[116.115084,1.654798400000061],[116.10866620000002,1.663139800000067],[116.102932,1.665682],[116.07365830000003,1.651887300000055],[116.05488830000002,1.625343300000054],[116.04420460000006,1.615987],[116.03623290000007,1.605871900000068],[116.03580710000006,1.60025550000006],[116.0425914000001,1.592562200000032],[116.04588160000003,1.58210930000007],[116.04082280000011,1.559852200000023],[116.0100787,1.528054300000065],[116.08764350000001,1.491034800000023],[116.1134614,1.48673180000003],[116.14112340000008,1.477511100000072],[116.1485,1.467675700000029],[116.13866460000008,1.42341650000003],[116.14542640000002,1.406819300000052],[116.15833540000006,1.386533800000052],[116.15710600000011,1.355798200000038],[116.14727060000007,1.325677300000052],[116.144197,1.298015300000031],[116.12882920000004,1.286335800000074],[116.12776550000001,1.277825900000039],[116.134704,1.259181],[116.146732,1.235712],[116.148441,1.226662],[116.147635,1.217301],[116.129339,1.188854],[116.131272,1.179458],[116.142931,1.162737],[116.1449080000001,1.156654],[116.146326,1.133894],[116.1427900000001,1.125369],[116.1319850000001,1.11111],[116.122969,1.111456],[116.106956,1.109378],[116.08313,1.10363],[116.07141700000011,1.098525],[116.06598,1.09311],[116.0666930000001,1.086473],[116.070344,1.077397],[116.071007,1.066875],[116.070375,1.062198],[116.06293010000002,1.047135100000048],[116.06981690000009,1.033074500000055],[116.06612860000007,1.014633200000048],[116.0501461,1.001109500000041],[116.0453702000001,0.99474170000002],[116.0481400000001,0.985348],[116.049006,0.964081],[116.042615,0.946898200000021],[116.06612860000007,0.899067400000035],[116.0587521000001,0.892305600000043],[116.03908130000002,0.88677320000005],[116.03662250000002,0.872020100000043],[116.0274018,0.851734600000043],[116.01326340000003,0.835137400000065],[116.00955770000007,0.834014400000058],[116.006372,0.828641],[116.00675300000012,0.822808],[116.009213,0.818777],[116.020412,0.810632],[116.024731,0.80909],[116.03144,0.806946],[116.05061200000011,0.806012],[116.06097000000011,0.803478],[116.087201,0.783367],[116.09780400000011,0.773287],[116.105542,0.762445],[116.115778,0.759226],[116.134827,0.757722],[116.13869000000011,0.756186],[116.141605,0.752034],[116.1432420000001,0.746185],[116.141171,0.727356],[116.146801,0.721226],[116.16444400000012,0.716883],[116.18532,0.715355],[116.224974,0.708898],[116.232895,0.70331],[116.23613000000012,0.679841],[116.24155,0.666286],[116.257481,0.644366],[116.261153,0.637005],[116.282051,0.619477],[116.291139,0.607017],[116.299786,0.587021],[116.298526,0.577895],[116.295279,0.574051],[116.284467,0.56802],[116.273826,0.557531],[116.271009,0.525226],[116.275372,0.509399],[116.283433,0.497066],[116.285634,0.490638],[116.284282,0.474428],[116.284517,0.448796],[116.318548,0.433869],[116.330661,0.426938],[116.341359,0.417599],[116.371089,0.383959],[116.377964,0.380606],[116.388667,0.372301],[116.402898,0.36835],[116.429861,0.36459],[116.45316900000012,0.354178],[116.458593,0.341179],[116.477152,0.31596],[116.488686,0.287317],[116.49303,0.268806],[116.493618,0.224112],[116.492009,0.183791],[116.4894220000001,0.157719],[116.49052,0.12141],[116.47996300000011,0.06733],[116.476637,0.056541],[116.47469500000011,0.0423],[116.474851,0.027249],[116.4915830000001,0.02385],[116.495535,0.020098],[116.496224,0.023692],[116.5403960000001,0.024389],[116.577375,0.022995],[116.603373,0.020144],[116.6232480000001,0.020686],[116.638857,0.017969],[116.684644,0.017832],[116.715224,0.016064],[116.719224,0.016355],[116.729329,0.020681],[116.738351,0.029592],[116.741737,0.044176],[116.741409,0.054123],[116.739458,0.062147],[116.738311,0.088218],[116.73919400000011,0.094606],[116.749934,0.103952],[116.752739,0.108944],[116.793191,0.155274],[116.797384,0.161619],[116.818344,0.184089],[116.839963,0.213407],[116.848865,0.221862],[116.859565,0.236922],[116.862158,0.243174],[116.867729,0.250073],[116.876722,0.265612],[116.8812170000001,0.268754],[116.88785,0.278382],[116.89594100000011,0.294733],[116.9221030000001,0.330963],[116.944144,0.375246],[116.946706,0.405497],[116.944017,0.43593],[116.939285,0.458504],[116.935829,0.464949],[116.929905,0.483653],[116.929956,0.487538],[116.9311550000001,0.491979],[116.93968560000008,0.503192300000023],[116.94705170000009,0.521147100000064],[116.93462150000005,0.56027940000007],[116.95073480000008,0.596649400000047],[116.97789720000003,0.614604300000053],[116.9921690000001,0.613683500000036],[117.00782190000007,0.580536100000074],[117.04081330000008,0.501165800000024],[117.0824943,0.448017900000025],[117.11601120000012,0.412957800000072],[117.15106750000007,0.364075600000035],[117.1703361000001,0.34344040000002],[117.18037560000005,0.323208600000044],[117.18368710000004,0.284051400000067],[117.16180730000008,0.196769900000049],[117.154791,0.187953],[117.14777740000011,0.143635400000051],[117.1528416000001,0.121997600000043],[117.16987570000003,0.105423900000062],[117.19519660000003,0.09529550000002],[117.26195170000005,0.054782100000068],[117.28635190000011,0.032223400000021],[117.324103,0.047876400000064],[117.3379086000001,0.048938300000032],[117.334178,0.045145],[117.335767,0.037908],[117.337889,0.037093],[117.339348,0.033113],[117.34379600000011,0.03266],[117.346826,0.030398],[117.348233,0.02687],[117.352554,0.030308],[117.354715,0.027322],[117.357746,0.026508],[117.360363,0.02687],[117.363093,0.030398],[117.363895,0.027684],[117.366753,0.030308],[117.36793000000011,0.028589],[117.366742,0.027322],[117.36981140000012,0.022165],[117.37017330000003,0.021959],[117.3892049000001,0.022504800000036],[117.3896668000001,0.053913900000055],[117.38855620000004,0.061687800000072],[117.40160330000003,0.092229900000063],[117.42354510000007,0.10128050000003],[117.43091120000008,0.110948400000041],[117.4332131000001,0.121076800000026],[117.44027340000002,0.136197200000026],[117.44978680000008,0.167575200000044],[117.46774160000007,0.175401700000066],[117.46912280000004,0.187831900000049],[117.468202,0.199341400000037],[117.48879380000005,0.201763300000039],[117.49269860000004,0.198140300000034],[117.50452710000002,0.205642100000034],[117.50603810000007,0.206608300000028],[117.503685,0.210959],[117.50550250000003,0.211200700000063],[117.50684030000002,0.214307600000041],[117.51536560000011,0.211462400000073],[117.52083840000012,0.212319],[117.52079390000006,0.216354600000045],[117.52842890000011,0.221075400000075],[117.52792920000002,0.226191200000073],[117.52495480000005,0.230022200000064],[117.52559730000007,0.231378500000062],[117.5275722,0.231045300000062],[117.52638250000007,0.23197330000005],[117.52685840000004,0.236256400000059],[117.51837160000002,0.241638200000068],[117.51665050000008,0.244394100000022],[117.5202435000001,0.249628900000062],[117.529388,0.253992700000026],[117.53048260000003,0.25775230000005],[117.52708,0.26056],[117.51746690000004,0.260417300000029],[117.5168245000001,0.26215430000002],[117.51906120000001,0.261702200000059],[117.52246380000008,0.26374850000002],[117.51931390000004,0.268959300000063],[117.51617510000005,0.268918800000051],[117.5178714000001,0.270315800000049],[117.52095640000005,0.26974690000003],[117.52075270000012,0.273828200000025],[117.5184981000001,0.275245],[117.51865670000007,0.27688310000002],[117.52677060000008,0.280856800000038],[117.52767480000011,0.283141100000023],[117.52668310000001,0.285392500000057],[117.53300480000007,0.285687100000075],[117.53405180000004,0.287424100000067],[117.53020560000004,0.29387250000002],[117.5309823,0.296965800000066],[117.5290073000001,0.298417200000074],[117.5296403000001,0.306659700000068],[117.52745990000005,0.31139150000007],[117.52402930000005,0.312741500000072],[117.523694,0.317825900000059],[117.52166910000005,0.321317200000067],[117.52433410000003,0.320769900000073],[117.52790240000002,0.316676700000073],[117.530884,0.316317500000025],[117.52559520000011,0.32200720000003],[117.52883120000001,0.321198200000026],[117.53235380000001,0.323972400000059],[117.53596960000004,0.31682],[117.54106170000011,0.317105500000025],[117.54382180000005,0.318913900000041],[117.54900750000002,0.328351],[117.55039030000012,0.327791800000057],[117.55131640000002,0.332218800000021],[117.5531889,0.333912200000043],[117.55198340000004,0.348704800000064],[117.55395830000009,0.355676600000038],[117.55338730000005,0.361672800000065],[117.55626640000003,0.366384200000027],[117.56364280000003,0.387561400000038],[117.56571290000011,0.388537],[117.56664090000004,0.391677800000025],[117.56464210000001,0.397317200000032],[117.56160360000001,0.399023800000066],[117.56535450000001,0.40097430000003],[117.56459450000011,0.40569290000002],[117.56204850000006,0.407377500000052],[117.55718680000007,0.406057200000021],[117.55668280000009,0.408055700000034],[117.56028770000012,0.411137100000076],[117.55697870000006,0.412541500000032],[117.56435560000011,0.416135900000029],[117.5651170000001,0.418277400000022],[117.5624044000001,0.419229200000075],[117.55757410000001,0.417801500000053],[117.55312450000008,0.421891800000026],[117.56299930000011,0.423916800000029],[117.5663717000001,0.423027800000057],[117.57659640000008,0.411776900000064],[117.57317940000007,0.410552700000039],[117.57474250000007,0.405703500000072],[117.57214420000003,0.405857800000035],[117.57201750000002,0.40473830000002],[117.58367680000003,0.404500400000074],[117.60287910000011,0.416635600000063],[117.603275,0.419954500000074],[117.6050206000001,0.420633100000032],[117.61023160000002,0.428866],[117.61289660000011,0.43717040000007],[117.61061230000007,0.442357600000037],[117.6071859000001,0.444808400000056],[117.60266490000004,0.454183500000056],[117.60345010000003,0.456372600000066],[117.602427,0.456467800000041],[117.60116590000007,0.472148400000037],[117.59997610000005,0.473695100000043],[117.60256970000012,0.477216700000042],[117.60481020000009,0.487441300000057],[117.61885330000007,0.502155900000048],[117.62892450000004,0.507435500000042],[117.6308934000001,0.511888700000043],[117.634717,0.515716400000031],[117.63357180000003,0.518003900000053],[117.6304229000001,0.517352200000062],[117.63201020000008,0.518427900000063],[117.63117740000007,0.521314100000041],[117.63388410000005,0.526796],[117.6374403000001,0.526936600000056],[117.63966420000008,0.529197300000021],[117.64031110000008,0.532343700000069],[117.6442254000001,0.535148500000048],[117.64412890000006,0.538910500000043],[117.64633720000006,0.542854400000067],[117.6443425000001,0.545041],[117.64941120000003,0.548635900000022],[117.64857960000006,0.550971300000072],[117.64982780000003,0.55202550000007],[117.64770580000004,0.553403100000025],[117.64832930000011,0.555097300000057],[117.6525464,0.557156],[117.6511997,0.559440900000027],[117.65360220000002,0.561083300000064],[117.65325170000006,0.562441800000045],[117.6546796,0.56131],[117.65474620000009,0.562280800000053],[117.65631140000005,0.561496200000022],[117.655782,0.562546700000041],[117.65868060000003,0.561658400000056],[117.66066050000006,0.56429],[117.6610710000001,0.566172700000038],[117.65855810000005,0.568268500000045],[117.66098510000006,0.569970300000023],[117.65968140000007,0.578987500000039],[117.65594090000002,0.578819700000054],[117.66152770000008,0.580014],[117.6616762000001,0.582346100000052],[117.66840090000005,0.588047500000073],[117.66761850000012,0.59412750000007],[117.67072480000002,0.602268600000059],[117.66976820000002,0.608025],[117.6724094000001,0.609638300000029],[117.67353160000005,0.615598800000043],[117.67714360000002,0.61855410000004],[117.68460750000008,0.621456600000045],[117.70269610000003,0.624437600000022],[117.70760740000003,0.623138400000073],[117.71088530000009,0.628056700000059],[117.714169,0.643652700000075],[117.71111440000004,0.652023700000029],[117.7097635,0.652267700000039],[117.71110390000001,0.652554900000041],[117.71095180000009,0.664675200000033],[117.70912170000008,0.670141800000067],[117.71011440000007,0.675207200000045],[117.7088692000001,0.675749300000064],[117.71007150000003,0.677091700000062],[117.709873,0.681672800000058],[117.70869620000008,0.682133900000053],[117.70986650000009,0.682238],[117.71153620000007,0.697243800000024],[117.72148450000009,0.715090600000053],[117.73470750000001,0.726647800000023],[117.73789120000004,0.734761300000059],[117.74242680000009,0.739454600000045],[117.741746,0.742286600000057],[117.74711690000004,0.74712930000004],[117.7515787000001,0.756046200000071],[117.7533476000001,0.757509],[117.75539830000002,0.755880500000046],[117.7539521000001,0.757292900000039],[117.75544620000005,0.759770800000069],[117.75688980000007,0.759490200000073],[117.75597370000003,0.760108],[117.75770980000004,0.761774700000046],[117.75886990000004,0.759998800000062],[117.75827580000009,0.761972],[117.76327530000003,0.76547510000006],[117.76493520000008,0.763787200000024],[117.763338,0.765761],[117.76981380000007,0.771096800000066],[117.78801380000004,0.779719900000032],[117.8084510000001,0.794956100000036],[117.82599,0.803607800000066],[117.85259760000008,0.81136870000006],[117.85533880000003,0.813258],[117.8593648000001,0.811516200000028],[117.8663140000001,0.811789800000042],[117.86951440000007,0.808660800000041],[117.87251760000004,0.81024670000005],[117.8757505000001,0.805257200000028],[117.87517940000009,0.808655100000067],[117.87296950000007,0.810374300000035],[117.8733711000001,0.817002400000035],[117.87079850000009,0.818749],[117.87240780000002,0.818933],[117.8728718000001,0.821895400000074],[117.8756201000001,0.824838800000066],[117.88940070000001,0.831487],[117.90493980000008,0.832529200000067],[117.9068459,0.833776100000023],[117.90724040000009,0.836039200000073],[117.91173950000007,0.835051600000043],[117.91265320000002,0.836422200000072],[117.91389550000008,0.83560650000004],[117.91445410000006,0.837301700000069],[117.92112960000009,0.826572900000031],[117.91872010000009,0.823362700000075],[117.92345960000011,0.813321600000052],[117.92115660000002,0.808929900000066],[117.92243410000003,0.808905500000037],[117.92259490000004,0.806611700000076],[117.924539,0.808010800000034],[117.92383880000011,0.806074500000022],[117.92565160000004,0.804837100000043],[117.93511010000009,0.803182900000024],[117.934592,0.800763600000039],[117.93992760000003,0.797672],[117.94192350000003,0.79721],[117.94329770000002,0.79878640000004],[117.94648660000007,0.795598600000062],[117.9509670000001,0.795875],[117.955282,0.793101],[117.959445,0.793149],[117.96051100000011,0.791283900000053],[117.959635,0.787465],[117.962529,0.781678],[117.971917,0.773291],[117.9764100000001,0.773191],[117.97912330000008,0.775814600000047],[117.98349930000006,0.777075700000069],[117.98518560000002,0.774422],[117.991524,0.77478960000002],[117.990789,0.773686],[117.992988,0.772744],[117.99212260000002,0.775078700000051],[117.993793,0.773979],[118.01044310000009,0.775159700000074],[118.017076,0.778907],[118.02517810000006,0.777838700000075],[118.02946110000005,0.780456100000038],[118.030681,0.793156],[118.02979620000008,0.797206700000061],[118.03091930000005,0.798824800000034],[118.02928220000001,0.800976],[118.02994840000008,0.802079900000024],[118.02707410000005,0.80337430000003],[118.0213824000001,0.802765200000067],[118.0225630000001,0.805621],[118.020659,0.809447],[118.020869,0.814643],[118.019376,0.815857],[118.02491290000012,0.82299850000004],[118.026549,0.828971],[118.02856530000008,0.830832900000075],[118.02679740000008,0.835653200000024],[118.02367550000008,0.838845700000036],[118.023753,0.841755],[118.0194044000001,0.852509800000064],[118.0212590000001,0.854438],[118.02035450000005,0.856341100000066],[118.02156800000012,0.858911],[118.019117,0.86693],[118.01043210000012,0.884966],[118.00000000000011,0.893920100000059],[117.9965304000001,0.894039900000053],[117.996706,0.896987],[117.99041430000011,0.911124500000028],[117.9872544000001,0.914322500000026],[117.98698900000011,0.918701],[117.98437380000007,0.920768500000065],[117.9817978000001,0.926111300000059],[117.97943740000005,0.927082100000064],[117.97886630000005,0.930070700000044],[117.977121,0.930061],[117.97919600000012,0.944953],[117.97314420000009,0.948131800000056],[117.9688212000001,0.958875500000033],[117.97153930000002,0.980413500000054],[117.96394050000004,0.985612700000047],[117.95875720000004,1.005423],[117.95114260000003,1.009608800000024],[117.94474360000004,1.021606900000052],[117.94474360000004,1.031205400000033],[117.9407443,1.03640450000006],[117.92954610000004,1.037204400000064],[117.92793640000002,1.043556100000046],[117.92425450000007,1.048005],[117.92885690000003,1.049539200000027],[117.93008420000001,1.045703800000069],[117.9334593000001,1.049385800000039],[117.93192520000002,1.053681400000073],[117.92548180000006,1.052760900000067],[117.92169740000008,1.053779800000029],[117.91939700000012,1.063917700000047],[117.90368940000008,1.07261950000003],[117.90443040000002,1.073427800000047],[117.90162410000005,1.080131600000072],[117.88852830000008,1.089485800000034],[117.88884010000004,1.086679600000025],[117.89460850000012,1.080755300000021],[117.89628550000009,1.076730500000053],[117.8898898000001,1.083750400000042],[117.88454790000003,1.085988900000075],[117.892191,1.09587010000007],[117.891424,1.10599540000004],[117.89648660000012,1.109984200000042],[117.90185610000003,1.112438800000064],[117.91550990000007,1.105228300000022],[117.9248682000001,1.10461470000007],[117.94394380000006,1.089596],[117.95074270000009,1.079597600000056],[117.9663402000001,1.069199300000037],[117.97556960000009,1.065918],[117.9843373000001,1.059200900000064],[117.9843373000001,1.048402600000031],[117.98713680000003,1.035604700000022],[117.9959354,1.020007200000066],[117.99073620000001,1.000010400000065],[118.00753350000002,0.987612400000046],[118.00461730000006,0.974175400000036],[118.00993320000009,0.964816],[118.008948,0.959765],[118.021921,0.951418],[118.0340973000001,0.952616600000056],[118.04145,0.951403],[118.0480457000001,0.948176500000045],[118.05295690000003,0.939482],[118.056079,0.938350800000023],[118.054525,0.930407],[118.0551200000001,0.92193],[118.052035,0.913005],[118.06203970000001,0.908061900000064],[118.064128,0.903115],[118.08929080000007,0.897356700000046],[118.11300640000002,0.889765600000032],[118.128439,0.888151900000025],[118.161762,0.879221500000028],[118.19997360000002,0.871103900000037],[118.21111540000004,0.867064800000037],[118.32032370000002,0.849735],[118.33941890000006,0.841228400000034],[118.34227420000002,0.837956600000041],[118.34243640000011,0.832146300000034],[118.33894630000009,0.828255],[118.33911280000007,0.819569900000033],[118.34127820000003,0.814144800000065],[118.35055810000006,0.807815400000038],[118.36880850000011,0.80338960000006],[118.37889740000003,0.803889300000037],[118.39272210000001,0.810218700000064],[118.39776660000007,0.815477300000055],[118.40309660000003,0.817737800000032],[118.4054284,0.82242530000002],[118.4075937,0.819903100000033],[118.41639770000006,0.821640100000025],[118.41519660000006,0.823781],[118.41620740000008,0.825256900000056],[118.41252280000003,0.831618200000037],[118.41948270000012,0.83472340000003],[118.4216599,0.838506700000039],[118.42376580000007,0.839291900000035],[118.42451530000005,0.837543],[118.42629990000012,0.840327],[118.42694230000006,0.836222400000054],[118.4335453000001,0.835365800000034],[118.43836370000008,0.842682700000069],[118.43982710000012,0.843075300000066],[118.43975570000009,0.841290700000059],[118.44182590000003,0.841683300000057],[118.44282520000002,0.843860500000062],[118.47012960000006,0.830404600000065],[118.473092,0.830226200000027],[118.47930150000002,0.833174700000029],[118.4821889000001,0.831771900000035],[118.48389470000006,0.827575500000023],[118.491954,0.824884300000065],[118.49291760000006,0.822968800000069],[118.51146040000003,0.819687800000054],[118.52121620000003,0.816175800000053],[118.52791680000007,0.816004400000054],[118.54641,0.808447300000068],[118.55123550000008,0.809237300000063],[118.5527346,0.815576100000044],[118.5564955000001,0.812167600000066],[118.56489030000012,0.812177100000042],[118.56773610000005,0.814394700000037],[118.5727806000001,0.814746900000046],[118.57629270000007,0.813119300000039],[118.58601040000008,0.812967100000037],[118.58746660000008,0.811901100000057],[118.5867052000001,0.81029250000006],[118.5894939000001,0.81035920000005],[118.59313920000011,0.811634600000048],[118.59474780000005,0.816127],[118.60175290000006,0.820904900000073],[118.60241910000002,0.82376030000006],[118.6057694000001,0.823893500000054],[118.60981450000008,0.829937400000063],[118.61214640000003,0.830822500000068],[118.61253060000001,0.833230700000058],[118.61991650000004,0.83887],[118.6194574000001,0.84201870000004],[118.62130610000008,0.844418900000051],[118.629568,0.847340900000063],[118.63074830000005,0.850629800000036],[118.63583310000001,0.847271900000067],[118.6363732000001,0.845465900000022],[118.63745830000005,0.84682220000002],[118.63798650000001,0.844773500000031],[118.65094980000003,0.845822800000064],[118.65242030000002,0.848271300000022],[118.65496160000009,0.847985700000038],[118.66384330000005,0.85566620000003],[118.66658440000003,0.855080900000075],[118.6681549000001,0.857093900000052],[118.67225230000008,0.857450800000038],[118.67749190000006,0.857051100000035],[118.68762840000011,0.848756300000048],[118.69249680000007,0.848056700000029],[118.6938245,0.844658800000047],[118.69682260000002,0.844644500000072],[118.6984073000001,0.840532800000062],[118.70520550000003,0.83503630000007],[118.70531270000004,0.832610800000054],[118.70791820000011,0.832301500000028],[118.70756130000007,0.830796500000019],[118.70933990000003,0.829172500000027],[118.70760880000012,0.826620500000047],[118.70867370000008,0.826816800000074],[118.70756130000007,0.825401100000022],[118.708632,0.824966800000027],[118.7060325000001,0.817453700000044],[118.70709130000012,0.817733300000043],[118.70634180000002,0.815276500000039],[118.708055,0.813450200000034],[118.71026190000009,0.814110500000027],[118.71262,0.819701100000032],[118.71406550000006,0.820034200000066],[118.71453550000001,0.818273400000066],[118.71732540000005,0.821598700000038],[118.72589140000002,0.823769900000059],[118.72805670000002,0.821664100000021],[118.73153080000009,0.822229200000038],[118.73572220000005,0.819891400000074],[118.73786690000009,0.816218500000048],[118.7481414,0.809697200000073],[118.75273320000008,0.809089],[118.75980260000006,0.805589700000041],[118.76392140000007,0.807103100000063],[118.76908010000011,0.806319300000041],[118.77439880000009,0.807706300000063],[118.77721250000002,0.806671200000039],[118.78158650000012,0.808161],[118.7849844000001,0.805833900000039],[118.7863407000001,0.808660700000075],[118.78154370000004,0.810059800000033],[118.78228610000008,0.811244800000054],[118.784656,0.81061660000006],[118.78782550000005,0.813043600000071],[118.79473540000004,0.812072800000067],[118.79496390000008,0.808660700000075],[118.79550640000002,0.809774300000072],[118.7974908000001,0.809445900000071],[118.78706880000004,0.803107],[118.788102,0.801581100000021],[118.79511140000011,0.801698400000021],[118.80195630000003,0.808701800000051],[118.81629490000012,0.819185300000072],[118.8171,0.821001700000068],[118.8149194,0.822201600000028],[118.813256,0.82582160000004],[118.8152904000001,0.828396200000043],[118.8178081000001,0.829335300000025],[118.8182078000001,0.82795040000002],[118.81879790000005,0.829359100000033],[118.82089180000003,0.82632760000007],[118.82345210000005,0.827683900000068],[118.82422780000002,0.826575100000071],[118.82538430000011,0.828326400000037],[118.8290889000001,0.82746110000005],[118.829096,0.828845900000033],[118.82623350000006,0.829773900000021],[118.82532220000007,0.833671500000037],[118.82299340000009,0.834561300000075],[118.82619140000008,0.839717700000051],[118.82597160000012,0.84224990000007],[118.83355510000001,0.846551500000032],[118.83528260000003,0.850434800000073],[118.83622090000006,0.84925880000003],[118.83864040000003,0.850783100000058],[118.84584740000003,0.862070300000028],[118.85569150000003,0.87142590000002],[118.85543710000002,0.876012500000058],[118.86020570000005,0.877266600000041],[118.86017540000012,0.87369220000005],[118.861744,0.87358370000004],[118.86235480000005,0.878400700000043],[118.86464280000007,0.879687900000022],[118.87866020000001,0.872832600000038],[118.88713110000003,0.872380600000042],[118.89262670000005,0.874892600000067],[118.89743210000006,0.880408400000022],[118.89780270000006,0.885735],[118.900465,0.886451300000033],[118.90157110000007,0.88519],[118.90458440000009,0.887114200000042],[118.9066974000001,0.891054600000075],[118.90521260000003,0.891825500000039],[118.90161490000003,0.890569200000073],[118.899538,0.88754670000003],[118.90079130000004,0.894411500000047],[118.90654490000009,0.903006100000027],[118.91060660000005,0.90522610000005],[118.91581790000009,0.904922100000022],[118.91642700000011,0.91020450000002],[118.91907210000011,0.912487100000021],[118.92522850000012,0.911337500000059],[118.93161390000012,0.913879800000075],[118.933872,0.916813700000034],[118.93594030000008,0.916329800000028],[118.93903630000011,0.922132400000066],[118.946693,0.92948130000002],[118.946438,0.932540900000049],[118.94844350000005,0.931777],[118.9538119,0.93388630000004],[118.9551517000001,0.938243700000044],[118.95795140000007,0.938791],[118.96113990000003,0.942683800000054],[118.962121,0.941022300000043],[118.96429030000002,0.942617200000029],[118.9658353000001,0.948434400000053],[118.96371280000005,0.945978800000034],[118.96205670000006,0.946216700000036],[118.96424580000007,0.950547300000039],[118.96909990000006,0.953583500000036],[118.96821470000009,0.956537600000047],[118.9693069000001,0.960798],[118.97193620000007,0.962511300000074],[118.97372480000001,0.969474200000036],[118.97508290000007,0.969182600000067],[118.97504540000011,0.97071150000005],[118.97794440000007,0.971886300000051],[118.98187070000006,0.982228100000043],[118.98562210000011,0.984036500000059],[118.98755480000011,0.988425900000038],[118.98627650000003,0.991496100000063],[118.98685950000004,0.994779700000038],[118.98458710000011,1],[118.97894810000003,1.006261900000027],[118.98163220000004,1.010666300000025],[118.98034010000003,1.01529910000005],[118.9834667,1.014686400000073],[118.988761,1.022366100000056],[118.9869705000001,1.024555200000066],[118.98895830000004,1.026175100000046],[118.984771,1.030110400000069],[118.9774268000001,1.016932900000029],[118.9658151000001,1.010361900000021],[118.94115140000008,1.00865170000003],[118.92071840000006,1.016482800000063],[118.90676640000004,1.025124100000028],[118.89202140000009,1.028305800000055],[118.87005940000006,1.01559530000003],[118.8544065000001,1.010531200000059],[118.82804480000004,1.010261100000037],[118.80563080000002,1.003857100000062],[118.79695020000008,1.008471600000064],[118.79172950000009,1.020893500000057],[118.78047220000008,1.08244],[118.76898910000011,1.103765900000042],[118.7591466,1.107046500000024],[118.7427421000001,1.107046500000024],[118.70993360000011,1.10212770000004],[118.66841290000002,1.101686400000062],[118.65274910000005,1.09560440000007],[118.6329462000001,1.090653700000075],[118.6067220000001,1.096161900000027],[118.58462380000003,1.113195900000051],[118.58033980000005,1.136574300000063],[118.59018230000004,1.212034100000039],[118.5852609000001,1.231719200000043],[118.57869930000004,1.244842600000027],[118.56065430000001,1.249764],[118.55573330000004,1.241561800000056],[118.55409270000007,1.226797900000065],[118.54589050000004,1.218595700000037],[118.5331063000001,1.213801700000033],[118.51600860000008,1.223871400000064],[118.50567910000007,1.234200700000031],[118.485642,1.263279800000021],[118.460588,1.277651300000059],[118.444184,1.27273],[118.43270110000003,1.25468520000004],[118.42121770000006,1.253044800000055],[118.41137520000007,1.259606500000075],[118.410907,1.268527200000051],[118.40317330000005,1.280932200000052],[118.39169,1.28093210000003],[118.380207,1.274370400000066],[118.37036480000006,1.253044800000055],[118.35724120000009,1.19234890000007],[118.35067920000006,1.185787100000027],[118.33268440000006,1.189699],[118.32197190000011,1.198090300000047],[118.30809370000009,1.205564],[118.2858824000001,1.204652100000033],[118.22839350000004,1.254181200000062],[118.21165650000012,1.260557200000051],[118.1997014000001,1.258963200000039],[118.19565850000004,1.247303300000056],[118.1972991,1.225977700000044],[118.20687450000003,1.212737],[118.20687450000003,1.201579],[118.17597350000005,1.181686100000036],[118.15881820000004,1.16849110000004],[118.12512,1.165281700000037],[118.04894580000007,1.182213200000035],[118.0332562000001,1.188247800000056],[118.01357080000002,1.227618100000029],[117.95943650000004,1.280111900000065],[117.946313,1.288314100000036],[117.92498780000005,1.291594900000064],[117.88202590000003,1.320747400000073],[117.85459950000006,1.345039400000076],[117.85689780000007,1.358828800000026],[117.85937060000003,1.363773900000069],[117.89444960000003,1.383295500000031],[117.903662,1.404784600000028],[117.908583,1.426110300000062],[117.91357770000002,1.465386700000067],[117.91350530000011,1.493524200000024],[117.90530210000009,1.509772200000043],[117.85559260000002,1.553269600000021],[117.8413412000001,1.568810500000041],[117.83653270000002,1.58735740000003],[117.8364041000001,1.606557700000053],[117.82993510000006,1.624744100000044],[117.81527370000003,1.626576800000066],[117.80523620000008,1.614759800000058],[117.7954807000001,1.599086600000021],[117.79539350000005,1.578670400000021],[117.78778340000008,1.574162100000024],[117.77442210000004,1.578537600000061],[117.76725740000006,1.588090500000021],[117.74929710000004,1.600186200000053],[117.7137666000001,1.608110400000044],[117.7182931000001,1.652489700000046],[117.7182931000001,1.680377100000044],[117.70641240000009,1.685589100000072],[117.697249,1.679724600000043],[117.69374530000005,1.665848600000061],[117.68295410000007,1.649302100000057],[117.67122490000008,1.620712200000071],[117.64703350000002,1.59835350000003],[117.63750360000006,1.597987],[117.62396870000009,1.602456700000062],[117.61248550000005,1.613939600000037],[117.594441,1.62049890000003],[117.57445940000002,1.625477200000034],[117.55283370000006,1.612281900000028],[117.5403715000001,1.595054700000048],[117.54030670000009,1.572928800000057],[117.5353851000001,1.526998200000037],[117.52241120000008,1.515516300000058],[117.50335140000004,1.511117900000045],[117.49112580000008,1.513864100000035],[117.48453210000002,1.52371590000007],[117.45992560000002,1.54340110000004],[117.44936510000002,1.56136],[117.44067370000005,1.581492900000057],[117.4322433000001,1.589190100000053],[117.4238358,1.590973500000075],[117.40978,1.596620300000041],[117.39558970000007,1.607516900000064],[117.38459360000002,1.604584600000067],[117.3715132000001,1.574954200000036],[117.36149960000012,1.563086300000066],[117.348376,1.559805400000073],[117.33547780000004,1.548871100000042],[117.32869070000004,1.528637300000071],[117.32814710000002,1.514416700000027],[117.33804350000003,1.497922600000038],[117.3434549000001,1.476143400000069],[117.33694340000011,1.43707610000007],[117.31884830000001,1.387560200000053],[117.29588230000002,1.367875],[117.28275910000002,1.361313200000041],[117.258148,1.362949400000048],[117.19311460000006,1.31664040000004],[117.163013,1.305481100000065],[117.14854430000003,1.324184500000058],[117.12857240000005,1.344439600000044],[117.1209172,1.364437800000076],[117.11189070000012,1.372567200000049],[117.09995320000007,1.351045800000065],[117.08186340000009,1.350208500000065],[117.03432850000002,1.354166500000076],[117.00596180000002,1.346909700000026],[116.99020070000006,1.353140800000062],[116.9925386000001,1.372325300000057],[116.99812290000011,1.38988420000004],[116.98910110000008,1.409220900000037],[116.96307700000011,1.417651200000023],[116.97124990000009,1.442136600000026],[116.99076080000009,1.476139],[116.98616880000009,1.496456500000022],[116.98912050000001,1.533553900000072],[116.93522030000008,1.560966800000074],[116.9238577000001,1.579660200000035],[116.86014880000005,1.59433770000004],[116.79703610000001,1.580026700000076],[116.75650420000011,1.621835200000021],[116.72336240000004,1.617046900000048],[116.60314810000011,1.611439800000028],[116.57567940000001,1.592010600000037],[116.55604480000011,1.586165200000039],[116.54419060000009,1.588660800000071],[116.53414120000002,1.599380300000064],[116.53414110000006,1.612109800000042],[116.54213570000002,1.628726500000027],[116.53129740000008,1.663230400000032],[116.50417370000002,1.67569270000007],[116.4764861000001,1.72466350000002],[116.45372980000002,1.72216080000004],[116.44369530000006,1.724442],[116.43489840000007,1.720043500000031],[116.42610150000007,1.707581300000072],[116.415472,1.711613200000045],[116.39861130000008,1.720776600000022],[116.395679,1.72847390000004],[116.39726120000012,1.73588890000002],[116.39683410000009,1.749445200000025],[116.39254050000011,1.755360800000062],[116.38331990000006,1.76212270000002],[116.37336790000006,1.760802200000057],[116.3650149,1.756623600000069],[116.3589502000001,1.758407300000044],[116.35474420000003,1.76195290000004],[116.35565780000002,1.771958],[116.34998550000012,1.780219700000032],[116.34938040000009,1.803195200000062],[116.34475050000003,1.810200900000041],[116.33906060000004,1.81375840000004],[116.32714260000012,1.817827700000066],[116.31570160000001,1.829126200000076],[116.30893980000008,1.831585100000041],[116.29964590000009,1.826698700000065],[116.25908990000005,1.828760700000032],[116.24072870000009,1.833423500000038],[116.22908630000006,1.843790800000022],[116.2173477,1.845108700000026],[116.20816190000005,1.839153],[116.18453060000002,1.840615800000023]]]]},"properties":{"shapeName":"Kutai Timur","shapeISO":"","shapeID":"22746128B763003311250","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[100.12458670000007,2.549788100000058],[100.12232630000005,2.563707900000054],[100.123516,2.574594],[100.11500940000008,2.600887],[100.11191610000009,2.623194500000068],[100.11048840000007,2.62777490000002],[100.10709770000005,2.631344100000035],[100.10329060000004,2.626049800000033],[100.10311210000003,2.622123700000031],[100.11078590000005,2.593213300000059],[100.11494990000006,2.554725500000075],[100.11572320000005,2.551632200000029],[100.118995,2.548122500000034],[100.12446780000005,2.547527600000024],[100.12458670000007,2.549788100000058]]],[[[100.32275050000004,2.544933700000058],[100.32088870000007,2.551062],[100.314008,2.554632200000071],[100.30376790000008,2.564989],[100.30342860000007,2.564053900000033],[100.29870270000004,2.566148600000076],[100.30031090000006,2.565768200000036],[100.29997870000005,2.567593200000033],[100.29607720000007,2.567433900000026],[100.29651810000007,2.570188900000062],[100.29459410000004,2.573137300000042],[100.29143990000006,2.573632],[100.29223010000004,2.574738],[100.291092,2.575556900000038],[100.28926410000008,2.574235800000054],[100.28939790000004,2.576979300000062],[100.28638010000009,2.577283900000054],[100.28733440000008,2.578665100000023],[100.28466140000006,2.582517500000051],[100.28137830000009,2.586004900000034],[100.27929320000004,2.58599010000006],[100.27414950000008,2.59524140000002],[100.27297090000008,2.595364500000073],[100.27387890000006,2.597231300000033],[100.27271850000005,2.604902800000048],[100.274131,2.607955900000036],[100.27107730000006,2.612499100000036],[100.25170780000008,2.624126600000068],[100.24174740000007,2.634700900000041],[100.23949420000008,2.638868200000047],[100.23760380000004,2.63921270000003],[100.23439410000003,2.642942700000049],[100.23034910000007,2.65431760000007],[100.23375560000005,2.657902500000034],[100.23218860000009,2.660064100000056],[100.23018670000005,2.659187200000076],[100.22891970000006,2.660647200000028],[100.22890520000004,2.664883100000054],[100.226636,2.667667200000039],[100.22570520000005,2.673077100000057],[100.22211960000004,2.677949400000045],[100.22347480000008,2.678873600000031],[100.22386920000008,2.687625800000035],[100.22005880000006,2.695081800000025],[100.22161850000003,2.697883300000058],[100.22026410000007,2.704935],[100.20629710000009,2.710301600000037],[100.19074080000007,2.71244710000002],[100.17122140000004,2.710004400000059],[100.15894780000008,2.704252200000042],[100.14226,2.69181720000006],[100.13052910000005,2.677866900000026],[100.12270910000007,2.658899500000075],[100.12117280000007,2.619993700000066],[100.121933,2.610812100000032],[100.13188060000004,2.572803300000032],[100.13659550000006,2.543327600000055],[100.11315330000008,2.545801500000039],[100.10700490000005,2.557692800000041],[100.10197230000006,2.590529400000037],[100.09140750000006,2.617798],[100.09151460000004,2.641497400000048],[100.09651150000008,2.663769200000047],[100.08853240000008,2.711023100000034],[100.07290840000007,2.721982300000036],[100.05422560000005,2.738896300000022],[100.04872480000006,2.741062700000043],[100.05005880000004,2.717753800000025],[100.05380220000006,2.710979700000053],[100.05810270000006,2.678419200000064],[100.06356360000007,2.658898900000054],[100.069387,2.620444200000065],[100.07454160000003,2.544716200000039],[100.06614670000005,2.532747500000028],[100.05846190000005,2.525732800000071],[100.05251140000007,2.504908400000033],[100.047502,2.496721100000059],[100.04005110000008,2.490759100000048],[100.02288580000004,2.461481100000071],[100.020636,2.450381400000026],[100.01487990000004,2.434209500000065],[100.01014790000005,2.421631400000024],[100.00593180000004,2.416242500000067],[100.00096770000005,2.395907700000066],[99.980321,2.364664100000027],[99.970714,2.345936600000073],[99.954598,2.319929800000068],[99.94686560000008,2.296841100000051],[99.94437970000007,2.285009100000025],[99.933325,2.262049200000035],[99.93392990000007,2.257155300000022],[99.93717020000008,2.25287140000006],[99.94405960000006,2.249808500000029],[99.96359460000008,2.20294830000006],[99.93021940000006,2.19054280000006],[99.89870420000005,2.181252100000052],[99.81651370000009,2.180634200000043],[99.78500470000006,2.183089400000028],[99.77391150000005,2.181773700000065],[99.771565,2.176963100000023],[99.77117840000005,2.159853300000066],[99.766254,2.137802800000031],[99.76077280000004,2.135714300000075],[99.747922,2.134199800000033],[99.74447010000006,2.125075800000047],[99.73516150000006,2.120091200000047],[99.73027080000008,2.115541900000039],[99.726975,2.103406900000039],[99.71782810000008,2.086125700000025],[99.71014970000004,2.082451400000025],[99.691139,2.078782100000069],[99.67151070000006,2.068977400000051],[99.67011130000009,2.054842300000075],[99.66720750000007,2.052740700000072],[99.66314070000004,2.046200200000044],[99.66189610000004,2.038040800000033],[99.668257,2.035987200000022],[99.68350110000006,2.036463400000059],[99.68133660000007,2.027054100000043],[99.68793350000004,2.015710800000022],[99.68840990000007,2.006783],[99.69020820000009,2.001715300000058],[99.68751490000005,1.995214300000043],[99.69063,1.969640300000037],[99.67746370000003,1.937311700000066],[99.70473540000006,1.929889500000058],[99.713985,1.96310260000007],[99.73232010000004,1.976644600000043],[99.73856250000006,1.976984800000025],[99.74684480000008,2.003701800000044],[99.76357890000008,2.005743900000027],[99.76677150000006,2.007346400000074],[99.76967570000005,2.012740600000029],[99.78121390000007,2.01713680000006],[99.79137340000005,2.024714700000061],[99.79427450000009,2.023546700000054],[99.80036450000006,2.016398300000048],[99.80254050000008,2.015959800000076],[99.80675060000004,2.021499],[99.816038,2.025723200000073],[99.82416210000008,2.024698300000068],[99.82285330000008,2.018673100000058],[99.82415780000008,2.016094700000053],[99.82792990000007,2.016092800000024],[99.83707160000006,2.019296200000042],[99.84214940000004,2.019147700000076],[99.84650050000005,2.016666500000042],[99.84185470000006,2.010398500000065],[99.83831010000006,2.000000200000045],[99.828354,1.993630100000075],[99.84183210000003,1.979226],[99.84104650000006,1.970834600000046],[99.83152020000006,1.932910600000071],[99.83468220000003,1.91479460000005],[99.83219660000003,1.91154350000005],[99.82415260000005,1.91067490000006],[99.80861420000008,1.903622400000074],[99.81405160000008,1.895449500000041],[99.81736380000007,1.883751800000027],[99.81597950000008,1.874590500000068],[99.81199390000006,1.867215200000032],[99.816766,1.861149900000044],[99.82342330000006,1.831801800000051],[99.82850180000008,1.825669],[99.83661470000004,1.810381600000028],[99.83973,1.802071800000022],[99.83936330000006,1.799405800000045],[99.84998720000004,1.805022400000041],[99.85571250000004,1.806116],[99.859952,1.815854300000069],[99.85714020000006,1.822999100000061],[99.85543140000004,1.83334560000003],[99.85776130000005,1.842212300000028],[99.85641930000008,1.905849400000022],[99.86848870000006,1.913714300000038],[99.87724370000007,1.922114300000032],[99.88587360000008,1.944521900000041],[99.89330240000004,1.951855200000068],[99.89993310000006,1.954119500000047],[99.90563690000005,1.958652200000074],[99.91783470000007,1.957978500000024],[99.92327450000005,1.964512200000058],[99.93030430000005,1.969177400000035],[99.94024960000007,1.971172900000056],[99.95854510000004,1.96809410000003],[99.97895980000004,1.961412100000075],[99.98718250000007,1.965409300000033],[99.98944050000006,1.972211400000049],[99.99275670000009,1.974744],[99.99646910000007,1.974741800000061],[99.99660430000006,1.979010500000072],[100.00071630000008,1.982610200000067],[100.00207820000008,1.935549200000025],[100.03094090000008,1.935163500000044],[100.03979320000008,1.944533300000046],[100.057272,1.979949200000021],[100.05872980000004,1.985344300000065],[100.05513740000004,1.988461],[100.04828990000004,1.987038600000062],[100.02639610000006,1.994242100000065],[100.01801650000004,1.994140600000037],[100.01473170000008,1.999692100000061],[100.02937690000005,2.011528800000065],[100.03256350000004,2.01867690000006],[100.04490210000006,2.03035790000007],[100.04424420000004,2.042639200000053],[100.04647050000005,2.053355600000032],[100.04508510000005,2.061009100000035],[100.04452210000005,2.08547980000003],[100.07349110000007,2.105075100000022],[100.08796870000003,2.104676600000062],[100.09511350000008,2.108167200000025],[100.13517510000008,2.190962200000058],[100.21041670000005,2.193210500000021],[100.21310150000005,2.209633],[100.33126150000004,2.212206600000059],[100.36506120000007,2.21023230000003],[100.35935750000004,2.211730600000067],[100.34998270000006,2.230591600000025],[100.33535880000005,2.253424600000073],[100.33356560000004,2.263944700000025],[100.32780760000009,2.275919200000033],[100.31736380000007,2.289711600000032],[100.31305550000008,2.310027],[100.30082360000006,2.340143],[100.30191440000004,2.349935],[100.29939630000007,2.356466100000034],[100.29545260000003,2.428214],[100.299622,2.446216100000072],[100.30012610000006,2.460751100000039],[100.30714930000005,2.480027700000051],[100.307102,2.491265700000042],[100.31956270000006,2.528946900000051],[100.32275050000004,2.544933700000058]]]]},"properties":{"shapeName":"Labuhan Batu","shapeISO":"","shapeID":"22746128B9607319395415","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[99.83936330000006,1.799405800000045],[99.829605,1.79760570000002],[99.82017510000009,1.804543800000033],[99.81370550000008,1.807181600000035],[99.80389420000006,1.805625300000031],[99.78865030000009,1.810276100000067],[99.78506450000003,1.808256800000038],[99.78050990000008,1.808537800000067],[99.76631160000005,1.818599500000062],[99.75990290000004,1.819499500000063],[99.759575,1.825495300000057],[99.75772880000005,1.827265100000034],[99.75073270000007,1.827623300000027],[99.74554440000009,1.829841],[99.737686,1.828238900000031],[99.72792060000006,1.828345300000024],[99.707657,1.819794700000045],[99.695213,1.805501500000048],[99.69762420000006,1.79067120000002],[99.70460530000008,1.780490300000054],[99.70218640000007,1.762842500000033],[99.71721650000006,1.751091600000052],[99.72057360000008,1.741733500000066],[99.72587570000007,1.736270600000068],[99.73165110000008,1.732753400000036],[99.73347470000004,1.727832500000034],[99.73317730000008,1.724383500000044],[99.76526610000008,1.710534900000027],[99.77139280000006,1.696553300000062],[99.78979490000006,1.685300300000051],[99.79676040000004,1.682760600000051],[99.80256660000003,1.67712750000004],[99.81016520000009,1.673311800000022],[99.81663540000005,1.672968400000059],[99.81975550000004,1.666506300000037],[99.82254010000008,1.663931400000024],[99.82467660000003,1.656722],[99.82831570000008,1.65135250000003],[99.83942420000005,1.644087700000057],[99.84627510000007,1.636971500000072],[99.85124190000005,1.642584600000021],[99.86289970000007,1.662527100000034],[99.88407160000008,1.689061500000037],[99.90021530000007,1.71736530000004],[99.90567780000003,1.715250800000035],[99.91374180000008,1.714827500000069],[99.92153940000009,1.69405],[99.92629230000006,1.686323800000025],[99.94012450000008,1.649069500000053],[99.94328290000004,1.645114600000056],[99.94271840000005,1.643274200000064],[99.94429030000003,1.642746],[99.95217130000003,1.625556600000039],[99.95450580000005,1.624568100000033],[99.98301720000006,1.632475400000033],[99.99297350000006,1.636663700000042],[99.99943540000004,1.637493500000062],[100.00288390000009,1.640009500000076],[100.01435070000008,1.658182500000066],[100.01896690000007,1.663076200000035],[100.04033680000003,1.699550200000033],[100.049011,1.720496300000036],[100.05606860000006,1.723428900000044],[100.06540650000005,1.725107800000046],[100.076599,1.721729],[100.084427,1.712945800000057],[100.09829720000005,1.702142400000071],[100.10820780000006,1.690563200000042],[100.11943840000004,1.672046800000032],[100.12242120000008,1.669273700000076],[100.12612140000005,1.658740300000034],[100.13927450000006,1.65157940000006],[100.14530950000005,1.631220400000075],[100.15519720000003,1.629686400000026],[100.16452020000008,1.622306300000048],[100.16521430000006,1.618872500000066],[100.162216,1.609918600000071],[100.17295840000008,1.595299900000043],[100.18856810000005,1.588103600000068],[100.20156110000005,1.584237],[100.20660420000007,1.579734900000062],[100.20892360000005,1.575546700000075],[100.20907570000008,1.569596100000069],[100.21862010000007,1.566925500000025],[100.23258940000005,1.551981],[100.24020410000008,1.549461600000029],[100.25690450000008,1.536618],[100.26449610000009,1.533340600000031],[100.27053080000007,1.53243],[100.27632880000004,1.527321],[100.28279110000005,1.524754700000074],[100.287697,1.520633500000031],[100.30584730000004,1.514876800000025],[100.31091340000006,1.510905600000058],[100.31837450000006,1.500382400000035],[100.31892380000005,1.48812410000005],[100.31677950000005,1.476083200000062],[100.32178140000008,1.477520900000059],[100.32155410000007,1.475058500000046],[100.32320670000007,1.475376400000073],[100.323679,1.459458900000072],[100.33269340000004,1.46012410000003],[100.37678450000004,1.455342800000039],[100.38516710000005,1.459847],[100.38817220000004,1.455533800000069],[100.39835470000008,1.461068900000043],[100.41306350000008,1.465017400000022],[100.41720960000004,1.470534800000053],[100.423953,1.488757],[100.42577970000008,1.502027600000019],[100.42495350000007,1.508919400000025],[100.42287930000003,1.512888400000065],[100.42011760000008,1.514804100000049],[100.42249750000008,1.525680800000032],[100.41746530000006,1.536461100000054],[100.41253220000004,1.541248],[100.41750740000003,1.555074800000057],[100.41864720000007,1.566700700000069],[100.41150030000006,1.565626100000031],[100.41150460000006,1.571965400000067],[100.40804230000003,1.575454400000069],[100.40395480000007,1.58591720000004],[100.41028830000005,1.591857],[100.41404450000005,1.600104],[100.414801,1.60948540000004],[100.41116450000004,1.619409],[100.40342540000006,1.624011],[100.40638310000008,1.639645500000029],[100.41260960000005,1.646076300000061],[100.41201680000006,1.661205100000075],[100.40701840000008,1.672755100000074],[100.40070360000004,1.665581900000063],[100.38290180000007,1.672065],[100.36897020000004,1.667005200000062],[100.34319660000006,1.679138],[100.33067550000004,1.678550200000075],[100.32030460000004,1.680495700000051],[100.31905150000006,1.690039500000069],[100.32861480000008,1.698830300000054],[100.33975440000006,1.712439200000063],[100.33854820000005,1.712897500000054],[100.34165140000005,1.715148900000031],[100.35233620000008,1.737781100000063],[100.35375010000007,1.782145300000025],[100.33058110000007,1.784648900000036],[100.29615580000007,1.791228100000069],[100.28894720000005,1.795798],[100.28429790000007,1.800717100000043],[100.27767660000006,1.813479800000039],[100.281297,1.83396010000007],[100.27998110000004,1.842330700000048],[100.28150730000004,1.865107700000067],[100.28847680000007,1.873385400000075],[100.289267,1.876789900000063],[100.29217670000008,1.87887610000007],[100.30507250000005,1.882290700000055],[100.31115850000003,1.892797500000029],[100.31078380000008,1.899677900000029],[100.31440020000008,1.909613100000058],[100.31330310000004,1.944011300000057],[100.31645570000006,1.998084800000072],[100.31553960000008,2.052412200000049],[100.33046460000008,2.095939300000055],[100.33670560000007,2.122234700000035],[100.36358850000005,2.168874900000048],[100.36506120000007,2.21023230000003],[100.33126150000004,2.212206600000059],[100.21310150000005,2.209633],[100.21041670000005,2.193210500000021],[100.13517510000008,2.190962200000058],[100.09511350000008,2.108167200000025],[100.08796870000003,2.104676600000062],[100.07349110000007,2.105075100000022],[100.04452210000005,2.08547980000003],[100.04508510000005,2.061009100000035],[100.04647050000005,2.053355600000032],[100.04424420000004,2.042639200000053],[100.04490210000006,2.03035790000007],[100.03256350000004,2.01867690000006],[100.02937690000005,2.011528800000065],[100.01473170000008,1.999692100000061],[100.01801650000004,1.994140600000037],[100.02639610000006,1.994242100000065],[100.04828990000004,1.987038600000062],[100.05513740000004,1.988461],[100.05872980000004,1.985344300000065],[100.057272,1.979949200000021],[100.03979320000008,1.944533300000046],[100.03094090000008,1.935163500000044],[100.00207820000008,1.935549200000025],[100.00071630000008,1.982610200000067],[99.99660430000006,1.979010500000072],[99.99646910000007,1.974741800000061],[99.99275670000009,1.974744],[99.98944050000006,1.972211400000049],[99.98718250000007,1.965409300000033],[99.97895980000004,1.961412100000075],[99.95854510000004,1.96809410000003],[99.94024960000007,1.971172900000056],[99.93030430000005,1.969177400000035],[99.92327450000005,1.964512200000058],[99.91783470000007,1.957978500000024],[99.90563690000005,1.958652200000074],[99.89993310000006,1.954119500000047],[99.89330240000004,1.951855200000068],[99.88587360000008,1.944521900000041],[99.87724370000007,1.922114300000032],[99.86848870000006,1.913714300000038],[99.85641930000008,1.905849400000022],[99.85776130000005,1.842212300000028],[99.85543140000004,1.83334560000003],[99.85714020000006,1.822999100000061],[99.859952,1.815854300000069],[99.85571250000004,1.806116],[99.84998720000004,1.805022400000041],[99.83936330000006,1.799405800000045]]]},"properties":{"shapeName":"Labuhan Batu Selatan","shapeISO":"","shapeID":"22746128B38754178982711","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[100.03741670000005,2.773431900000048],[100.03308740000006,2.772595400000057],[100.02704010000008,2.767489400000045],[100.02430630000003,2.762932400000068],[100.02261950000008,2.752554700000076],[100.01995010000007,2.747852100000046],[100.037051,2.753866],[100.04497190000006,2.759553500000038],[100.046376,2.762579800000026],[100.04071740000006,2.760237200000063],[100.04473120000006,2.763251300000036],[100.04381640000008,2.769274300000063],[100.04070720000004,2.773016100000063],[100.0395,2.772074],[100.03850610000006,2.773432700000058],[100.03867880000007,2.771918800000037],[100.03741670000005,2.773431900000048]]],[[[99.46120690000004,2.550818900000024],[99.45254670000008,2.540320800000075],[99.44933590000005,2.505022800000063],[99.45073590000004,2.502944200000059],[99.44933970000005,2.498622400000045],[99.44534370000008,2.493016300000022],[99.43976040000007,2.489025300000037],[99.41919180000008,2.459998900000073],[99.503085,2.395275300000037],[99.50991370000008,2.396838400000036],[99.51560710000007,2.395637900000054],[99.51660390000006,2.398241700000028],[99.51959750000003,2.399429200000043],[99.517006,2.402617900000052],[99.51718520000009,2.40587430000005],[99.51089490000004,2.411043300000074],[99.50983840000004,2.414129200000048],[99.51167630000003,2.416622400000051],[99.51589250000006,2.416513900000041],[99.51734510000006,2.41912190000005],[99.51763570000008,2.424755900000036],[99.51401540000006,2.430970200000047],[99.51201520000006,2.439749100000029],[99.51899790000004,2.455104100000028],[99.52154110000004,2.459093200000041],[99.524023,2.460253100000045],[99.52378360000006,2.456786300000033],[99.52794920000008,2.449906500000054],[99.52249460000007,2.446097300000076],[99.51964690000005,2.440849100000037],[99.52315060000006,2.434926500000074],[99.52759160000005,2.43215390000006],[99.525603,2.417350300000066],[99.52705160000005,2.413013300000046],[99.52635680000009,2.403495100000043],[99.52464450000008,2.401452800000072],[99.52319730000005,2.394590900000026],[99.52414630000004,2.388628100000062],[99.521066,2.38707450000004],[99.52296550000005,2.378547500000025],[99.51883710000004,2.376166100000034],[99.51734950000008,2.371947500000033],[99.51763080000006,2.366480900000056],[99.52037680000007,2.363418900000056],[99.51958370000006,2.35947230000005],[99.52109540000004,2.355059700000027],[99.519833,2.351253900000074],[99.53312370000003,2.343482900000026],[99.55152970000006,2.336456300000066],[99.58278550000006,2.328102],[99.58391340000009,2.325209800000039],[99.58341160000003,2.318031],[99.585209,2.314244600000052],[99.58303670000004,2.310994200000039],[99.57793880000008,2.30749030000004],[99.56954170000006,2.305891],[99.56437720000008,2.30656410000006],[99.56105890000003,2.302332700000022],[99.55572770000003,2.309617],[99.54891220000007,2.306923500000039],[99.54476260000007,2.292957600000022],[99.54660730000006,2.283766400000047],[99.54675260000005,2.274538500000062],[99.54556110000004,2.271969],[99.54688380000005,2.268407900000057],[99.54250480000007,2.265839600000049],[99.540177,2.259410800000069],[99.53458510000007,2.256262700000036],[99.53631090000005,2.255540800000063],[99.53808990000005,2.25],[99.53699340000009,2.24809010000007],[99.529953,2.246668400000033],[99.52237360000004,2.241661600000043],[99.50098020000007,2.247025500000063],[99.5,2.244874300000049],[99.49691630000007,2.24329670000003],[99.48202570000007,2.242688],[99.47623910000004,2.239283600000022],[99.47408840000008,2.233717900000045],[99.46491280000004,2.229068300000051],[99.43584390000007,2.217374],[99.42293630000006,2.215702300000032],[99.41710660000007,2.213400300000046],[99.41564870000008,2.210887700000058],[99.41731090000007,2.199368900000024],[99.41501930000004,2.19329620000002],[99.40430450000008,2.176028600000052],[99.39391550000005,2.16607920000007],[99.39830080000007,2.156343400000026],[99.40714130000003,2.150092700000073],[99.41917950000004,2.13643490000004],[99.43567590000004,2.123834400000021],[99.45948990000005,2.126261400000033],[99.46331770000006,2.125323700000024],[99.47329710000008,2.119200100000057],[99.50155160000008,2.121054500000071],[99.50981160000003,2.123853],[99.51252750000003,2.122584900000049],[99.51690690000004,2.102247400000067],[99.52256790000007,2.091329100000053],[99.53305050000006,2.092364300000042],[99.53805550000004,2.091480500000046],[99.55079640000008,2.078408700000068],[99.54627220000003,2.061943],[99.55191050000008,2.054331300000058],[99.55604530000005,2.041824800000029],[99.56583390000009,2.029520500000046],[99.56779480000006,2.028199400000062],[99.57337170000005,2.029039300000022],[99.580284,2.021936400000072],[99.59110250000003,2.014876900000047],[99.59314730000006,2.011012100000073],[99.59693890000005,2.009091800000022],[99.59767930000004,2.003604800000062],[99.60314920000008,1.999460100000022],[99.60886360000006,1.996716],[99.61831680000006,1.995717800000023],[99.62467210000005,1.997017500000027],[99.627106,2.001362100000051],[99.62386320000007,2.014265600000044],[99.61719510000006,2.022678100000064],[99.61689750000005,2.041061600000035],[99.63660410000006,2.042084200000033],[99.64030440000005,2.036627100000032],[99.65489220000006,2.029140200000029],[99.66189610000004,2.038040800000033],[99.66314070000004,2.046200200000044],[99.66720750000007,2.052740700000072],[99.67011130000009,2.054842300000075],[99.67151070000006,2.068977400000051],[99.691139,2.078782100000069],[99.71014970000004,2.082451400000025],[99.71782810000008,2.086125700000025],[99.726975,2.103406900000039],[99.73027080000008,2.115541900000039],[99.73516150000006,2.120091200000047],[99.74447010000006,2.125075800000047],[99.747922,2.134199800000033],[99.76077280000004,2.135714300000075],[99.766254,2.137802800000031],[99.77117840000005,2.159853300000066],[99.771565,2.176963100000023],[99.77391150000005,2.181773700000065],[99.78500470000006,2.183089400000028],[99.81651370000009,2.180634200000043],[99.89870420000005,2.181252100000052],[99.93021940000006,2.19054280000006],[99.96359460000008,2.20294830000006],[99.94405960000006,2.249808500000029],[99.93717020000008,2.25287140000006],[99.93392990000007,2.257155300000022],[99.933325,2.262049200000035],[99.94437970000007,2.285009100000025],[99.94686560000008,2.296841100000051],[99.954598,2.319929800000068],[99.970714,2.345936600000073],[99.980321,2.364664100000027],[100.00096770000005,2.395907700000066],[100.00593180000004,2.416242500000067],[100.01014790000005,2.421631400000024],[100.01487990000004,2.434209500000065],[100.020636,2.450381400000026],[100.02288580000004,2.461481100000071],[100.04005110000008,2.490759100000048],[100.047502,2.496721100000059],[100.05251140000007,2.504908400000033],[100.05846190000005,2.525732800000071],[100.06614670000005,2.532747500000028],[100.07454160000003,2.544716200000039],[100.069387,2.620444200000065],[100.06356360000007,2.658898900000054],[100.05810270000006,2.678419200000064],[100.05380220000006,2.710979700000053],[100.05005880000004,2.717753800000025],[100.04872480000006,2.741062700000043],[100.03554960000008,2.742948700000056],[100.02823170000005,2.741617700000063],[100.00889570000004,2.732597],[99.99796550000008,2.72546090000003],[99.99289680000004,2.726690400000052],[99.98444180000007,2.731389700000022],[99.97509040000006,2.740936100000056],[99.97408550000006,2.744072200000062],[99.97782480000006,2.749092200000064],[99.974928,2.750895800000023],[99.97903610000009,2.75049290000004],[99.985783,2.757219400000054],[99.993699,2.782909600000039],[99.99274120000007,2.795309800000041],[99.99539150000004,2.816071600000043],[99.99438280000004,2.81659650000006],[99.995467,2.818572],[99.99475420000005,2.831183300000021],[99.99202960000008,2.834114400000033],[99.99238870000005,2.837106100000028],[99.99077270000004,2.836814900000036],[99.99169020000005,2.838013300000057],[99.98844620000006,2.846082200000069],[99.98760480000004,2.855422],[99.96258830000005,2.829042400000048],[99.92564790000006,2.794002500000033],[99.88405190000003,2.748735300000021],[99.86759670000004,2.738972],[99.86718150000007,2.730043400000056],[99.82712810000004,2.69653530000005],[99.82224340000005,2.688535600000023],[99.75070890000006,2.62527410000007],[99.74670160000005,2.627068100000031],[99.742469,2.62617460000007],[99.737789,2.622145200000034],[99.725529,2.606471800000065],[99.71929110000008,2.604459400000053],[99.71215890000008,2.596623100000045],[99.70302310000005,2.590356],[99.69704850000005,2.586964900000055],[99.684075,2.587266400000033],[99.67958940000005,2.58614110000002],[99.66760890000006,2.587241900000038],[99.654379,2.581484400000022],[99.64379670000005,2.580159600000059],[99.64335380000006,2.576169100000072],[99.60879570000009,2.575172100000032],[99.606793,2.579205300000069],[99.59521310000008,2.585259200000053],[99.59164940000005,2.585708900000043],[99.58675140000008,2.590863500000069],[99.58318770000005,2.591313200000059],[99.57806230000006,2.586387200000047],[99.56959740000008,2.585047],[99.56291920000007,2.594458600000053],[99.55959110000003,2.604723900000067],[99.55576170000006,2.606159600000069],[99.54296690000007,2.602953],[99.53839330000005,2.59217110000003],[99.52858570000006,2.592612400000064],[99.522092,2.590635900000052],[99.51732530000004,2.592121500000076],[99.5137,2.588564400000053],[99.5,2.585227600000053],[99.48546820000007,2.573208900000054],[99.47245480000004,2.555986],[99.46120690000004,2.550818900000024]]]]},"properties":{"shapeName":"Labuhan Batu Utara","shapeISO":"","shapeID":"22746128B58404639100716","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[103.18089620000006,-4.236030699999958],[103.17828930000007,-4.232604099999946],[103.17815370000005,-4.227247099999943],[103.18362560000008,-4.220388299999968],[103.18542430000008,-4.215736699999979],[103.183733,-4.170608699999946],[103.18525740000007,-4.164145299999973],[103.180522,-4.159013899999934],[103.18224280000004,-4.153245499999969],[103.18087170000007,-4.147572499999967],[103.16494060000008,-4.119689299999948],[103.15315310000005,-4.107078199999933],[103.15133370000007,-4.098570099999961],[103.148076,-4.092485199999942],[103.13666170000005,-4.041872],[103.130859,-4.028292199999953],[103.12403560000007,-4.021232899999973],[103.12137910000007,-4.015725],[103.11412160000003,-4.022035599999981],[103.10984290000005,-4.021681199999932],[103.09970250000003,-4.010977299999979],[103.09331480000009,-4.008361099999945],[103.08579620000006,-4.007617299999936],[103.08121050000005,-4.009471699999949],[103.078917,-4.012642299999925],[103.06596810000008,-4.013648099999955],[103.05853740000003,-4.017523799999935],[103.04748380000007,-4.012765099999967],[103.03994050000006,-4.015007],[103.03206040000003,-4.021475499999951],[103.025872,-4.018793199999948],[103.01942280000009,-4.019425],[103.00910130000005,-4.015607199999977],[102.997449,-4.019094499999937],[102.98458950000008,-4.031139699999926],[102.98346170000008,-4.037355699999978],[102.98101110000005,-4.041572],[102.967785,-4.044717699999978],[102.96271940000008,-4.048167399999954],[102.96023280000009,-4.053114299999947],[102.95672330000008,-4.056000399999959],[102.94639360000008,-4.0539434],[102.93054070000005,-4.047393099999965],[102.927084,-4.050846599999943],[102.91603550000008,-4.0568195],[102.91395070000004,-4.063046299999939],[102.91417410000008,-4.065585899999974],[102.92203840000008,-4.0763025],[102.92227050000008,-4.079789399999925],[102.91872020000005,-4.085448399999962],[102.91778170000003,-4.092832199999975],[102.919639,-4.0965931],[102.94112130000008,-4.110698599999978],[102.952682,-4.112428099999931],[102.95898590000007,-4.120066],[102.97048120000005,-4.124046499999963],[102.981118,-4.136160099999927],[102.98661090000007,-4.145869],[102.99648820000004,-4.149125799999979],[102.99832160000005,-4.151438799999937],[102.999669,-4.1581752],[103.00955710000005,-4.163239799999928],[103.01300780000008,-4.166640399999949],[103.02236340000007,-4.168201299999964],[103.02628990000005,-4.167528899999979],[103.040197,-4.179756299999951],[103.04532850000004,-4.182282799999939],[103.045319,-4.186071399999946],[103.04886110000007,-4.191777799999954],[103.06136090000007,-4.196036099999958],[103.06422310000005,-4.211714899999947],[103.06108740000008,-4.214983899999936],[103.05153860000007,-4.219235099999935],[103.05669380000006,-4.226275399999963],[103.05860210000009,-4.234168],[103.06471230000005,-4.237234599999965],[103.06774280000008,-4.240709399999957],[103.06745870000009,-4.250422599999979],[103.06965320000006,-4.256755299999952],[103.07579350000003,-4.262491699999941],[103.08350660000008,-4.264250199999935],[103.094238,-4.252286599999934],[103.09686410000006,-4.251738299999943],[103.10473270000006,-4.254115499999955],[103.11491810000007,-4.247914499999979],[103.117489,-4.247948899999926],[103.12603220000005,-4.253944799999942],[103.13477470000004,-4.255403699999931],[103.15006310000007,-4.246875099999954],[103.15518840000004,-4.241062199999931],[103.17107590000006,-4.240961299999981],[103.18089620000006,-4.236030699999958]]],[[[103.12137910000007,-4.015725],[103.13243310000007,-4.015239099999974],[103.14788570000007,-4.009069099999977],[103.15476920000003,-4.0048332],[103.161852,-4.0049998],[103.16874350000006,-3.9983147],[103.18081860000007,-3.993854799999951],[103.18456610000004,-3.989627799999937],[103.19063250000005,-3.988954099999944],[103.19922040000006,-3.992007399999977],[103.22025890000003,-3.987884699999938],[103.23033330000004,-3.992054899999971],[103.23699990000006,-3.9929294],[103.24071970000006,-3.998589799999934],[103.24417330000006,-3.999979599999961],[103.24883890000007,-3.999074599999972],[103.25265150000007,-4.003139799999929],[103.25504550000005,-4.0009789],[103.26044320000005,-3.999775899999975],[103.27113150000008,-4.004142499999944],[103.27522540000007,-4.0036841],[103.275579,-4.005666],[103.27712990000003,-4.004809099999932],[103.28642770000005,-4.006930499999953],[103.28619540000005,-4.008583399999964],[103.28967310000007,-4.010788499999933],[103.28850380000006,-4.012113799999952],[103.29101530000008,-4.016098799999952],[103.28810210000006,-4.018282699999929],[103.28907050000004,-4.019908],[103.28561690000004,-4.019694499999957],[103.28596980000003,-4.021238299999936],[103.28345,-4.022521099999949],[103.285114,-4.025392699999941],[103.28039420000005,-4.025504199999943],[103.28089890000007,-4.027182299999936],[103.27825210000009,-4.031308599999932],[103.27873430000005,-4.032208899999944],[103.28074570000007,-4.030973599999925],[103.27967930000005,-4.031700499999943],[103.28043820000005,-4.033178599999928],[103.27715150000006,-4.036774799999932],[103.28286140000006,-4.042811899999947],[103.28859740000007,-4.044056699999942],[103.29295860000008,-4.042340199999956],[103.30173630000007,-4.041927199999975],[103.32836620000006,-4.043976699999973],[103.33864620000008,-4.039017099999967],[103.34247180000006,-4.040188099999966],[103.34354670000005,-4.037683499999957],[103.34284460000003,-4.030852299999935],[103.34734180000004,-4.019538499999953],[103.34752950000006,-4.015225399999963],[103.35147440000009,-4.011459],[103.35202750000008,-4.003372299999967],[103.357,-3.998519899999962],[103.36091070000003,-3.996324099999981],[103.37377050000003,-3.993369399999949],[103.37615530000005,-3.988885299999936],[103.37798550000008,-3.989747799999975],[103.38019960000008,-3.987695599999938],[103.38747060000009,-3.991163699999959],[103.38882250000006,-3.989540899999952],[103.39226010000004,-3.990495899999928],[103.39572440000006,-3.9858885],[103.40576280000005,-3.987297799999965],[103.40708060000009,-3.988616299999933],[103.41096,-3.985552299999938],[103.41540740000005,-3.9847772],[103.41241120000007,-3.996617899999933],[103.41316910000006,-4.003549],[103.41054860000008,-4.007548299999939],[103.41173770000006,-4.009351599999945],[103.40948540000005,-4.011294599999928],[103.40739440000004,-4.016964899999948],[103.40900450000004,-4.0198692],[103.40656120000006,-4.021628899999939],[103.40766880000007,-4.023212699999931],[103.40580870000008,-4.024726699999974],[103.40643280000006,-4.026821499999926],[103.40307960000007,-4.027254599999935],[103.40315040000007,-4.029347499999972],[103.40005080000009,-4.031553799999926],[103.40193060000007,-4.033962],[103.39932950000008,-4.037248099999942],[103.40109040000004,-4.039957699999945],[103.400021,-4.042094899999938],[103.40145620000004,-4.0437433],[103.40119090000007,-4.047394599999961],[103.39933890000003,-4.051043899999968],[103.39656840000004,-4.052437099999963],[103.39426450000008,-4.057342],[103.39632010000008,-4.060255],[103.39558230000006,-4.063122499999963],[103.39034860000004,-4.071687499999939],[103.387134,-4.074003699999935],[103.382744,-4.073868199999936],[103.38222390000004,-4.076708099999962],[103.37619790000008,-4.081732399999964],[103.373932,-4.089539],[103.37064580000003,-4.093212],[103.36717210000006,-4.094237799999974],[103.36491590000009,-4.097202799999934],[103.35932090000006,-4.098095099999966],[103.35918640000006,-4.100999799999954],[103.36149660000007,-4.103070299999956],[103.36116540000006,-4.107846699999925],[103.36321030000005,-4.109555399999977],[103.363117,-4.113257],[103.35779470000006,-4.116517399999964],[103.355294,-4.1234853],[103.35870780000005,-4.131154299999935],[103.361107,-4.131848],[103.36187090000004,-4.135637399999951],[103.36075330000006,-4.137098599999945],[103.363318,-4.140719699999977],[103.36296210000006,-4.157551699999942],[103.36050370000004,-4.160317],[103.35590250000007,-4.161538699999937],[103.35567940000004,-4.164021099999957],[103.35282390000003,-4.167688699999928],[103.353124,-4.170767499999954],[103.34913780000005,-4.171067],[103.34882290000007,-4.175068],[103.34576620000007,-4.179645799999946],[103.34078930000004,-4.178059099999928],[103.33235820000004,-4.186278699999946],[103.33071040000004,-4.186418899999978],[103.32980790000005,-4.197592499999928],[103.32579150000004,-4.204930699999977],[103.32544860000007,-4.2098018],[103.32360240000008,-4.212876],[103.317154,-4.2174793],[103.31561310000006,-4.221169799999927],[103.31649760000005,-4.237486],[103.30941020000006,-4.251320799999974],[103.362827,-4.222502199999951],[103.43890380000005,-4.170534399999951],[103.43961090000005,-4.156476099999963],[103.45412410000006,-4.111841599999934],[103.46138410000003,-4.107426699999962],[103.46690080000008,-4.099739599999964],[103.47005710000008,-4.100469799999928],[103.49605570000006,-4.129267299999981],[103.49922360000005,-4.126553],[103.49946060000008,-4.123307599999976],[103.50570430000005,-4.118334599999969],[103.50536380000005,-4.115203899999926],[103.50837540000003,-4.109877],[103.51239380000004,-4.107411399999933],[103.51860540000007,-4.110915699999964],[103.52426150000008,-4.111847499999953],[103.53975830000007,-4.109547299999974],[103.54504750000007,-4.110636099999965],[103.55395790000006,-4.120863199999974],[103.56233310000005,-4.1069319],[103.56426770000007,-4.093666499999927],[103.569006,-4.088805599999944],[103.57940120000006,-4.067122099999949],[103.58396020000004,-4.0619],[103.58569690000007,-4.0616024],[103.58762930000006,-4.051987199999928],[103.59116930000005,-4.047424499999977],[103.59154960000006,-4.0351613],[103.59024480000005,-4.0280653],[103.59343620000004,-4.017249799999945],[103.59757540000004,-4.012207099999955],[103.59848640000007,-4.004513699999961],[103.59544810000006,-3.997492199999954],[103.60135820000005,-3.98777],[103.61997740000004,-3.987940699999967],[103.62399040000008,-3.980361399999936],[103.63147860000004,-3.976512899999932],[103.64411940000008,-3.965652399999954],[103.64363240000006,-3.958229399999937],[103.63138650000008,-3.946373899999969],[103.63123430000007,-3.942056899999955],[103.64836940000004,-3.932833499999958],[103.65322840000005,-3.928371],[103.65742340000008,-3.921382599999959],[103.66408520000005,-3.917203499999971],[103.67004690000005,-3.9103276],[103.67482010000003,-3.910042399999952],[103.68345390000007,-3.914538599999958],[103.69438240000005,-3.907767799999931],[103.69885450000004,-3.901895499999966],[103.703823,-3.9010189],[103.70452570000003,-3.898135299999979],[103.70283830000005,-3.893729299999961],[103.70524560000007,-3.8800351],[103.703379,-3.869688599999961],[103.70695570000004,-3.861448499999938],[103.70751590000003,-3.852077299999962],[103.71403080000005,-3.840310699999975],[103.70715140000004,-3.828294099999937],[103.70743590000006,-3.817363599999965],[103.72034820000005,-3.807768399999929],[103.72422530000006,-3.802591699999937],[103.730355,-3.788826499999971],[103.72256920000007,-3.774631699999929],[103.722438,-3.771494799999971],[103.72570140000005,-3.768021899999951],[103.72448430000009,-3.764747099999965],[103.73302510000008,-3.764092599999969],[103.73482240000004,-3.761092],[103.73370490000008,-3.756921699999964],[103.7379,-3.752127199999961],[103.75970730000006,-3.747034199999973],[103.76084380000003,-3.740671],[103.762879,-3.738932399999953],[103.76171270000003,-3.733690899999942],[103.75193830000006,-3.7297471],[103.749603,-3.7213601],[103.75143580000008,-3.716253799999947],[103.750139,-3.711143199999981],[103.74349820000003,-3.704452899999978],[103.74441820000004,-3.6993454],[103.74089680000009,-3.699864399999967],[103.73812340000006,-3.698540799999932],[103.73803820000006,-3.692786599999977],[103.73516790000008,-3.693961399999978],[103.73334550000004,-3.691731899999979],[103.74693750000006,-3.684026599999925],[103.76710250000008,-3.687739099999931],[103.76080950000005,-3.671151099999975],[103.76305480000008,-3.668084],[103.76532980000007,-3.667887299999961],[103.76591720000005,-3.660719399999948],[103.76428930000009,-3.659284399999933],[103.76285950000005,-3.661943299999962],[103.747377,-3.661103],[103.74021290000007,-3.647069299999941],[103.74780930000009,-3.639579599999934],[103.75218630000006,-3.639058199999965],[103.767494,-3.631589499999961],[103.76615690000006,-3.620762199999945],[103.76335070000005,-3.613837899999965],[103.76785280000007,-3.608919799999967],[103.76771070000007,-3.606949699999973],[103.76466080000006,-3.604572599999926],[103.75849110000007,-3.607381499999974],[103.75682970000008,-3.605071399999929],[103.761913,-3.602710599999966],[103.76559720000006,-3.598133],[103.76563140000007,-3.594878199999926],[103.76136520000006,-3.589406599999961],[103.76193110000008,-3.588332399999956],[103.77058060000007,-3.589211099999943],[103.77321010000009,-3.585120399999937],[103.77173770000007,-3.582431199999974],[103.76911430000007,-3.581895299999928],[103.764808,-3.585159799999929],[103.76203220000008,-3.585396799999955],[103.75595240000007,-3.575387599999942],[103.73819890000004,-3.577148699999952],[103.72910390000004,-3.575482],[103.68498440000008,-3.549187599999925],[103.67013720000006,-3.538454399999978],[103.66541820000003,-3.538686],[103.62830060000005,-3.512116499999934],[103.60431250000005,-3.527753],[103.574395,-3.549766899999952],[103.56549040000004,-3.55211],[103.55524560000003,-3.5516284],[103.53875350000004,-3.547788499999967],[103.53741470000006,-3.592784599999959],[103.53836850000005,-3.593464399999959],[103.52697960000006,-3.597935499999949],[103.515687,-3.597917099999961],[103.511237,-3.593014299999936],[103.51257040000007,-3.591737],[103.51054280000005,-3.576297199999942],[103.503937,-3.557170699999972],[103.49864150000008,-3.548715699999946],[103.49869570000004,-3.51493],[103.49295220000005,-3.510030699999959],[103.48410610000008,-3.508682699999952],[103.44517290000005,-3.509507599999949],[103.42568940000007,-3.520143699999949],[103.41815210000004,-3.529910599999937],[103.38259270000003,-3.530638],[103.38390790000005,-3.533761299999981],[103.37449020000008,-3.5347523],[103.37342630000006,-3.527771299999927],[103.37007440000008,-3.526103199999966],[103.36752110000003,-3.534150299999965],[103.35346010000006,-3.533142399999974],[103.34937770000005,-3.532078399999932],[103.34823180000006,-3.530061299999943],[103.34414540000006,-3.531282699999963],[103.33705520000007,-3.530090399999949],[103.33177130000007,-3.5223141],[103.32604260000005,-3.522060099999976],[103.31732030000006,-3.5106189],[103.287958,-3.508092],[103.28830770000008,-3.509226799999965],[103.26594060000008,-3.503723499999978],[103.22346090000008,-3.501300599999979],[103.20161970000004,-3.502210199999979],[103.19468090000004,-3.489778599999966],[103.18367350000005,-3.495768699999928],[103.16919370000005,-3.5061606],[103.16611310000008,-3.5130523],[103.17090210000003,-3.528912199999979],[103.16367230000009,-3.5490753],[103.16273710000007,-3.550595399999963],[103.16007070000006,-3.550173899999947],[103.15500840000004,-3.560945499999946],[103.149777,-3.561870699999929],[103.14583410000006,-3.569496],[103.14597260000005,-3.576975899999979],[103.14127920000004,-3.583951199999944],[103.139058,-3.584162599999956],[103.13869450000004,-3.586753099999953],[103.13619330000006,-3.589193499999965],[103.13235480000009,-3.588858899999934],[103.13070790000006,-3.593435099999965],[103.12786450000004,-3.595819499999948],[103.12940340000006,-3.595569599999976],[103.12757040000008,-3.596591499999931],[103.12971280000005,-3.599906899999951],[103.12576620000004,-3.603065799999968],[103.12912620000009,-3.606527699999958],[103.12783190000005,-3.608828399999936],[103.12867980000004,-3.614588399999946],[103.12673410000008,-3.6201268],[103.12662170000004,-3.639920699999948],[103.128617,-3.6451073],[103.12795710000006,-3.652375799999959],[103.13424930000008,-3.658435199999928],[103.13699730000008,-3.659339799999941],[103.14497150000005,-3.6704061],[103.15291870000004,-3.673085799999967],[103.156139,-3.671827599999972],[103.15761830000008,-3.674105499999939],[103.15568110000004,-3.674466299999949],[103.15818770000004,-3.677603399999953],[103.15818340000004,-3.679681199999948],[103.154666,-3.679000899999949],[103.15492950000004,-3.681574199999943],[103.15193580000005,-3.681734499999948],[103.14915120000006,-3.687891499999978],[103.14923360000006,-3.692723099999967],[103.15322660000004,-3.704960799999981],[103.14750570000007,-3.729102399999931],[103.14502110000006,-3.7346211],[103.14573690000009,-3.7502134],[103.15227950000008,-3.769592799999941],[103.15483880000005,-3.770124299999964],[103.15448510000004,-3.772286399999928],[103.15663420000004,-3.774161599999957],[103.15960090000004,-3.774694],[103.15901330000008,-3.777381699999978],[103.164418,-3.779191799999978],[103.16330080000006,-3.786276],[103.16765550000008,-3.785372699999925],[103.16871860000003,-3.786503099999948],[103.16826430000003,-3.791986],[103.17164260000004,-3.800400799999977],[103.16944950000004,-3.809466799999939],[103.15722020000004,-3.829043799999965],[103.14441970000007,-3.845961399999965],[103.14212190000006,-3.853050899999971],[103.11589540000006,-3.860033499999929],[103.10752930000007,-3.881855499999972],[103.10817670000006,-3.919948899999952],[103.12290090000005,-3.923242099999925],[103.12444880000004,-3.9251943],[103.12312220000007,-3.935204099999964],[103.12434760000008,-3.940049199999976],[103.12805890000004,-3.938940099999968],[103.12966130000007,-3.9410545],[103.12821150000008,-3.946579899999961],[103.137985,-3.940173299999969],[103.13885290000007,-3.943513899999971],[103.14322870000007,-3.944109899999944],[103.13980140000007,-3.958652],[103.140257,-3.968134599999928],[103.13878950000009,-3.971941199999947],[103.14170040000005,-3.975171499999931],[103.14200680000005,-3.978685899999959],[103.13642270000008,-3.986296],[103.13254660000007,-3.987029],[103.13051690000003,-3.994213899999977],[103.12530570000007,-3.998579399999926],[103.12462010000007,-4.005696799999953],[103.12137910000007,-4.015725]]]]},"properties":{"shapeName":"Lahat","shapeISO":"","shapeID":"22746128B63727362529485","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[111.06620180000004,-2.117956499999934],[111.14728110000004,-2.063705199999958],[111.15657910000004,-2.055952799999943],[111.16747170000008,-2.054348],[111.17879620000008,-2.056348699999944],[111.18771520000007,-2.062850699999956],[111.19281420000004,-2.072562199999936],[111.20324620000008,-2.074579899999947],[111.20471830000008,-2.0893],[111.19999520000005,-2.0916615],[111.20141210000008,-2.100163099999975],[111.20849670000007,-2.105830799999978],[111.222666,-2.120944599999973],[111.23541830000005,-2.124723099999926],[111.25194910000005,-2.125667699999951],[111.26517370000005,-2.140781599999968],[111.29256760000004,-2.148810799999978],[111.35536,-2.152428699999973],[111.35463460000005,-2.162827],[111.35851920000005,-2.174799299999961],[111.363936,-2.182344099999966],[111.36238840000004,-2.184859099999926],[111.36335570000006,-2.187760899999944],[111.36776910000009,-2.193905199999961],[111.37856970000007,-2.192266899999936],[111.38614950000004,-2.197951799999942],[111.38964890000005,-2.218931299999952],[111.39067990000007,-2.266875],[111.38187980000004,-2.280818799999963],[111.40758570000008,-2.301019799999949],[111.43834090000007,-2.313255099999935],[111.47723950000005,-2.3099683],[111.49920270000007,-2.311946],[111.51842060000007,-2.307428],[111.54103160000005,-2.315297199999975],[111.56014120000009,-2.319741099999931],[111.58228070000007,-2.314206299999967],[111.60254640000005,-2.305683299999941],[111.60337050000004,-2.273301],[111.60175570000007,-2.255496799999946],[111.60682190000006,-2.234674599999948],[111.62942980000008,-2.193201299999942],[111.66763080000004,-2.177192699999978],[111.69132320000006,-2.157849499999941],[111.71180750000008,-2.128196899999978],[111.74508690000005,-2.066962199999978],[111.79115790000009,-1.971568],[111.79883350000006,-1.950299099999938],[111.81993240000008,-1.873605299999952],[111.82437110000006,-1.7762988],[111.82184910000007,-1.739433099999928],[111.808922,-1.5829847],[111.79687640000009,-1.562832199999946],[111.78116930000004,-1.554107599999952],[111.77539680000007,-1.538150199999961],[111.73566840000007,-1.5010344],[111.68630260000003,-1.472914699999933],[111.62318930000004,-1.420424399999945],[111.606777,-1.413907699999925],[111.51820890000005,-1.419799499999954],[111.46927350000004,-1.407757499999946],[111.44697210000004,-1.3929295],[111.39410130000005,-1.326738299999931],[111.37043660000006,-1.329845599999942],[111.33208960000007,-1.334299399999963],[111.33174540000005,-1.349838499999976],[111.32459810000006,-1.365184199999931],[111.31745050000006,-1.369974299999967],[111.28284920000004,-1.401872399999945],[111.27560830000004,-1.407475099999942],[111.25962710000005,-1.4162588],[111.24868590000005,-1.4192983],[111.22277970000005,-1.420794099999966],[111.21861470000005,-1.422758499999929],[111.20794310000008,-1.433765],[111.20070710000005,-1.4370601],[111.196481,-1.437963699999955],[111.16336560000008,-1.433307599999978],[111.15726540000009,-1.434291],[111.14790710000005,-1.441456099999925],[111.13837630000006,-1.451035199999978],[111.13270530000005,-1.459794199999976],[111.12896340000009,-1.473428799999965],[111.12774380000008,-1.498836499999925],[111.11914510000008,-1.512759899999935],[111.11828250000008,-1.518794299999968],[111.11860990000008,-1.531097699999975],[111.12311350000004,-1.5441135],[111.12229750000006,-1.549254299999973],[111.11867350000006,-1.552754199999924],[111.09720390000007,-1.552683799999954],[111.08452480000005,-1.558607099999961],[111.078996,-1.5599077],[111.07476810000009,-1.559257399999979],[111.06956450000007,-1.551453599999945],[111.06956450000007,-1.544950399999948],[111.06768230000006,-1.538690799999927],[111.05980770000008,-1.535520799999972],[111.04907530000008,-1.5397478],[111.03562540000007,-1.540494],[111.02737220000006,-1.548254],[111.02110590000007,-1.558607099999961],[111.01687790000005,-1.562509],[111.01330050000007,-1.562509],[111.00842210000008,-1.561858699999959],[110.99589160000005,-1.555854099999976],[110.98973850000004,-1.540510099999949],[110.98403930000006,-1.5387],[110.97866510000006,-1.5395949],[110.97323610000007,-1.54383],[110.96887970000006,-1.552289],[110.96243290000007,-1.559083],[110.95627590000004,-1.570256],[110.95568770000006,-1.573936499999945],[110.95192720000006,-1.579168],[110.94517520000005,-1.582189],[110.91352080000007,-1.584604],[110.899767,-1.591943599999979],[110.89385990000005,-1.60106],[110.88965920000004,-1.612459799999954],[110.88155370000004,-1.618873],[110.858899,-1.630497],[110.85378050000008,-1.636412599999971],[110.85664840000004,-1.644901599999969],[110.85514830000005,-1.673833],[110.86384580000004,-1.682592],[110.882454,-1.679426],[110.88650510000008,-1.681535],[110.89265340000009,-1.689234],[110.89355470000004,-1.70162],[110.90060420000009,-1.713092],[110.90425430000005,-1.712417499999958],[110.91660240000004,-1.720295799999974],[110.92881770000008,-1.718078],[110.94292450000006,-1.71038],[110.94856670000007,-1.700039099999969],[110.95267490000003,-1.684106899999961],[110.95567320000004,-1.678968],[110.96296390000003,-1.672179599999936],[110.97449410000007,-1.669120599999928],[110.98602420000009,-1.676415199999951],[111.00327990000005,-1.696781399999963],[111.004878,-1.700391399999944],[111.00638740000005,-1.705435099999931],[111.00493720000009,-1.721281599999941],[111.00580460000003,-1.7272663],[111.01354050000003,-1.737135299999977],[111.01614830000005,-1.74428],[111.01215230000008,-1.757876],[111.01385720000007,-1.777685899999938],[111.00492160000005,-1.8010967],[110.98649240000009,-1.817371799999933],[110.97807620000009,-1.837725899999953],[110.974211,-1.870842099999948],[110.97462860000007,-1.878446899999972],[110.97683390000009,-1.883591499999966],[110.981694,-1.889217899999949],[110.99355490000005,-1.897294399999964],[110.99574780000006,-1.903049599999974],[110.99602190000007,-1.9090789],[110.994145,-1.921185699999967],[110.99043060000008,-1.929578899999967],[110.981131,-1.941041899999959],[110.97979510000005,-1.9502641],[110.98447490000007,-1.955719699999975],[110.99035580000009,-1.957189699999958],[111.01279020000004,-1.9543442],[111.01799,-1.956085599999938],[111.05316520000008,-1.989645399999972],[111.05531890000009,-1.993253899999957],[111.05603690000004,-1.999542199999951],[111.05378320000005,-2.002934699999969],[111.05457440000004,-2.009799499999929],[111.05667540000007,-2.012994799999944],[111.05933790000006,-2.014586699999938],[111.073392,-2.015060299999959],[111.08477220000009,-2.012643499999967],[111.08584520000005,-2.015466199999935],[111.08879020000006,-2.014725899999974],[111.09001130000007,-2.016204699999946],[111.09030230000008,-2.021915499999977],[111.08843390000004,-2.024158599999964],[111.08307090000005,-2.0451037],[111.06670960000008,-2.053049399999963],[111.06005290000007,-2.058235299999978],[111.058697,-2.063078399999938],[111.05731570000006,-2.071797199999935],[111.06620180000004,-2.117956499999934]]]},"properties":{"shapeName":"Lamandau","shapeISO":"","shapeID":"22746128B29490078203662","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[112.45608750000008,-6.8843083],[112.45343280000009,-6.880575699999952],[112.45411410000008,-6.879547799999955],[112.44606320000003,-6.874378599999943],[112.44770040000003,-6.877746699999932],[112.45608750000008,-6.8843083]]],[[[112.08152770000004,-7.382554899999946],[112.08612820000008,-7.384417],[112.08657830000004,-7.382349899999952],[112.08953850000012,-7.381591199999946],[112.09159850000003,-7.383707899999933],[112.09713740000007,-7.384820899999966],[112.10155490000011,-7.384637299999952],[112.10250090000011,-7.383167699999944],[112.10661310000012,-7.383774199999948],[112.10697930000003,-7.381434799999965],[112.11062620000007,-7.381997],[112.12302390000002,-7.373477399999956],[112.1334915000001,-7.371079399999928],[112.1377639000001,-7.367927499999951],[112.15296930000011,-7.366581799999949],[112.16381070000011,-7.3616098],[112.16402430000005,-7.360298499999942],[112.16968530000008,-7.3571805],[112.17908470000009,-7.356356099999971],[112.18711850000011,-7.352175199999976],[112.1904297000001,-7.353487899999948],[112.19899740000005,-7.352188],[112.200386,-7.353357199999948],[112.2031402,-7.351778899999942],[112.20299520000003,-7.349976499999968],[112.20729820000008,-7.3507527],[112.2113571000001,-7.348574099999951],[112.22183220000011,-7.351131799999962],[112.22725670000011,-7.350429399999939],[112.23459620000006,-7.352979599999969],[112.23999020000008,-7.355419],[112.24167630000011,-7.358034],[112.24622340000008,-7.359671],[112.25000000000011,-7.363159099999962],[112.25325010000006,-7.363401799999963],[112.2641906,-7.361967],[112.27476500000012,-7.356952599999943],[112.28955070000006,-7.358869],[112.30287170000008,-7.354716699999926],[112.30849450000005,-7.351468],[112.31681050000009,-7.349623599999973],[112.32890310000005,-7.343983499999979],[112.33313910000004,-7.343805299999929],[112.33499,-7.34592],[112.3343,-7.347],[112.32891,-7.34591],[112.32806,-7.34804],[112.32927,-7.3477],[112.32878,-7.35071],[112.33005,-7.35182],[112.33264,-7.34983],[112.33776000000012,-7.35059],[112.33724,-7.34929],[112.33842,-7.34923],[112.33713000000012,-7.34809],[112.33859,-7.34784],[112.33830000000012,-7.34659],[112.33595,-7.34702],[112.3355,-7.34575],[112.34573360000002,-7.345046899999943],[112.34711990000005,-7.3435464],[112.34635980000007,-7.3405671],[112.3527501000001,-7.333333899999957],[112.35800170000005,-7.330718899999965],[112.358505,-7.326427],[112.363075,-7.326863],[112.36825560000011,-7.324729799999943],[112.37275690000001,-7.320459299999925],[112.3870773000001,-7.320058199999949],[112.39214320000008,-7.312950499999943],[112.39833830000009,-7.313620599999979],[112.40420530000006,-7.310390499999926],[112.40866850000009,-7.305942499999958],[112.41011050000009,-7.301245199999926],[112.40808110000012,-7.2952199],[112.40765380000005,-7.287697799999933],[112.41219320000005,-7.281433499999935],[112.41213990000006,-7.273727799999961],[112.4077148,-7.269609799999955],[112.39701250000007,-7.264568499999939],[112.39848330000007,-7.2611289],[112.40304350000008,-7.257114699999931],[112.40738420000002,-7.246979299999964],[112.412969,-7.2489891],[112.413709,-7.244329499999935],[112.41244920000008,-7.2399563],[112.41880550000008,-7.232251099999928],[112.4224617000001,-7.232716499999981],[112.433754,-7.229057299999965],[112.43582150000009,-7.226697899999976],[112.43643190000012,-7.222676299999932],[112.44125370000006,-7.218852],[112.4413886000001,-7.217173499999944],[112.44714120000003,-7.216061],[112.45085670000003,-7.212400799999955],[112.45258090000004,-7.208244699999966],[112.45737980000001,-7.206480899999974],[112.46181480000007,-7.208169399999974],[112.4650726000001,-7.207247299999949],[112.46846770000002,-7.203189799999961],[112.4704819000001,-7.202668199999948],[112.4730148000001,-7.204614599999957],[112.47772980000002,-7.200296399999957],[112.48411560000011,-7.197180299999957],[112.50231170000006,-7.192283199999963],[112.50428010000007,-7.186720799999932],[112.5046082,-7.176578],[112.50296020000008,-7.166761899999926],[112.4977798000001,-7.163551299999938],[112.48944090000009,-7.165408599999978],[112.47883610000008,-7.164400099999966],[112.473125,-7.159983],[112.47015910000005,-7.159326299999975],[112.471624,-7.157249199999967],[112.47347030000003,-7.145429299999932],[112.47151720000011,-7.144693099999927],[112.4732414,-7.133989],[112.4744392,-7.133821599999976],[112.47609480000006,-7.125655299999949],[112.48503650000009,-7.127348],[112.48746380000011,-7.126244799999938],[112.4876382000001,-7.128861499999971],[112.49123380000003,-7.127328399999953],[112.49647520000008,-7.127373699999964],[112.49744420000002,-7.124671899999953],[112.4964523000001,-7.118644199999949],[112.50145170000008,-7.106831299999953],[112.51672360000009,-7.107727499999953],[112.51794430000007,-7.103402599999981],[112.52099610000005,-7.103313399999934],[112.53556620000006,-7.096232399999963],[112.53500440000005,-7.0925979],[112.53123260000007,-7.0910005],[112.53095250000001,-7.087685099999931],[112.5329819000001,-7.083869],[112.54090880000001,-7.076541899999938],[112.54221340000004,-7.070349199999953],[112.54786680000007,-7.065601799999968],[112.54819490000011,-7.058583299999952],[112.55238140000006,-7.050388599999962],[112.54516400000011,-7.047487499999932],[112.54409590000012,-7.053340699999978],[112.5415858,-7.053516199999933],[112.52371770000002,-7.038922599999978],[112.52212490000011,-7.046226099999956],[112.51905610000006,-7.047128],[112.51400750000005,-7.041187099999945],[112.49999990000003,-7.032171099999971],[112.49682610000002,-7.028737399999955],[112.49738310000009,-7.023761599999943],[112.5094147000001,-7.019427299999961],[112.50888820000011,-7.013855],[112.5059357,-7.012045399999977],[112.49010470000007,-7.008798599999977],[112.48580350000009,-7.009204399999931],[112.48432920000005,-7.011574099999962],[112.48112480000009,-7.011904099999981],[112.4793777000001,-7.009332099999938],[112.48232270000005,-7.004911399999969],[112.48179630000004,-7.002558199999953],[112.46154150000007,-7.007485799999927],[112.45904540000004,-7.009464099999946],[112.45749610000007,-7.014702799999952],[112.44994350000002,-7.016318699999943],[112.44835660000001,-7.014655499999947],[112.45055140000011,-7.010845899999936],[112.45040890000007,-7.001426199999969],[112.4278921,-7.002418699999964],[112.422315,-6.996475299999929],[112.41662350000001,-6.993657199999973],[112.40485130000002,-6.990872499999966],[112.40102130000002,-6.9933483],[112.39851120000003,-6.993333899999925],[112.39581040000007,-6.9910761],[112.39446770000006,-6.987598],[112.39154560000009,-6.985772199999928],[112.38189440000008,-6.988737199999946],[112.371675,-6.984811799999932],[112.36966430000007,-6.986583399999972],[112.3678867000001,-6.991775599999926],[112.36632270000007,-6.991718899999967],[112.36703490000002,-6.9750547],[112.37490140000011,-6.958177299999932],[112.3818715000001,-6.957996399999956],[112.39066820000005,-6.96031],[112.39524840000001,-6.955935],[112.40387730000009,-6.958402599999943],[112.42497250000008,-6.948838199999955],[112.42640690000007,-6.945327799999973],[112.42485560000011,-6.936157199999968],[112.42742160000012,-6.934108699999967],[112.42326360000004,-6.922491099999945],[112.42474370000002,-6.909085799999957],[112.428009,-6.903963099999942],[112.43680570000004,-6.901655699999935],[112.4406586,-6.898718799999926],[112.44564060000005,-6.883987899999966],[112.44061850000003,-6.874750899999981],[112.43895820000012,-6.874066199999959],[112.43885000000012,-6.87106],[112.43579000000011,-6.86904],[112.42745350000007,-6.865428799999961],[112.4242200000001,-6.86664],[112.42637080000009,-6.864381799999933],[112.42547850000005,-6.863822599999935],[112.42288,-6.86615],[112.41848570000002,-6.865487599999938],[112.4180665,-6.861681099999942],[112.417849,-6.8654786],[112.41404520000003,-6.864358],[112.40970070000003,-6.866223199999979],[112.40619150000009,-6.871808599999952],[112.40178150000008,-6.871747399999947],[112.39976,-6.87389],[112.39220890000001,-6.874540899999943],[112.39166640000008,-6.875597399999947],[112.38712640000006,-6.875147699999957],[112.38689290000002,-6.8765451],[112.38679800000011,-6.874176899999952],[112.38637690000007,-6.875725899999964],[112.38196,-6.87571],[112.37115270000004,-6.873383399999966],[112.36885380000001,-6.868626899999981],[112.3662538000001,-6.868323399999952],[112.36773850000009,-6.866029599999933],[112.36588060000008,-6.868312299999957],[112.36196,-6.86653],[112.3604193000001,-6.863516899999979],[112.36014790000002,-6.865140899999972],[112.35771000000011,-6.86384],[112.3521300000001,-6.86928],[112.34266,-6.87016],[112.33359810000002,-6.864464],[112.334093,-6.861299199999962],[112.3326082000001,-6.861185],[112.33361710000008,-6.861527599999931],[112.33313170000008,-6.8635549],[112.33098060000009,-6.863193299999978],[112.33108530000004,-6.861518099999955],[112.33028,-6.86476],[112.32909,-6.86313],[112.3230400000001,-6.86477],[112.32031,-6.86632],[112.32013130000007,-6.868563699999982],[112.3132084,-6.871745],[112.30029470000011,-6.873985199999936],[112.2963840000001,-6.873338],[112.29833680000002,-6.871983],[112.29421560000003,-6.871388099999933],[112.29469470000004,-6.872303199999976],[112.29256190000001,-6.872690899999952],[112.287866,-6.870251899999971],[112.28830860000005,-6.868453099999954],[112.29370520000009,-6.870087799999965],[112.29438330000005,-6.868331699999942],[112.29683890000001,-6.868310299999962],[112.2885156000001,-6.8678035],[112.28708080000001,-6.869909299999961],[112.28843710000001,-6.865219399999944],[112.28688090000003,-6.865390699999978],[112.286775,-6.869805799999938],[112.2848447,-6.869343199999946],[112.27863720000005,-6.872052099999962],[112.26981830000011,-6.878420699999936],[112.26692670000011,-6.874643399999968],[112.26855460000002,-6.879933199999925],[112.26629860000003,-6.876656399999945],[112.24684800000011,-6.878359599999953],[112.24461460000009,-6.872663199999977],[112.2398045000001,-6.871733199999937],[112.23384450000003,-6.872313199999951],[112.23000450000006,-6.874633199999948],[112.22909450000009,-6.872733199999971],[112.22591450000004,-6.873813199999972],[112.22549450000008,-6.872653199999945],[112.22342450000008,-6.872753199999977],[112.22272450000003,-6.874983199999974],[112.22100450000005,-6.873463199999946],[112.21679440000003,-6.874383199999954],[112.21412440000006,-6.881163199999946],[112.20884880000006,-6.881995899999936],[112.20742120000011,-6.8807966],[112.20052550000003,-6.883737699999926],[112.20159620000004,-6.884822699999972],[112.19669930000009,-6.885136799999941],[112.19416440000009,-6.887543199999925],[112.1851143,-6.888343199999952],[112.18433430000005,-6.889913299999932],[112.18343430000004,-6.8888933],[112.18150430000003,-6.891443299999935],[112.17495430000008,-6.893363299999976],[112.172129,-6.895758699999931],[112.1721480000001,-6.897659899999951],[112.1706094000001,-6.897339399999964],[112.17197360000011,-6.902608899999962],[112.1757321,-6.902284899999927],[112.17893650000008,-6.905032499999948],[112.18081740000002,-6.910483],[112.18028690000006,-6.913134899999932],[112.18323950000001,-6.912077299999964],[112.18378880000012,-6.914930699999957],[112.1864667000001,-6.9119438],[112.1894929,-6.911953299999936],[112.19330260000004,-6.914395199999944],[112.19783630000006,-6.915025699999944],[112.19904980000001,-6.919826099999966],[112.20317210000007,-6.921776199999954],[112.201947,-6.944363899999928],[112.20396850000009,-6.951213699999926],[112.2055937,-6.967716799999948],[112.20675330000006,-6.971346899999958],[112.2095839000001,-6.973890399999959],[112.20904980000012,-6.9791838],[112.2108809,-6.985634],[112.20978730000002,-6.996912099999975],[112.21398160000001,-6.999239299999942],[112.21164380000005,-7.001812099999938],[112.21457350000003,-7.009467799999925],[112.2107969000001,-7.020591],[112.20409070000005,-7.025910599999975],[112.20333540000001,-7.029440199999954],[112.20735170000012,-7.034128099999975],[112.21848290000003,-7.035872799999936],[112.22190480000006,-7.037197499999934],[112.2220046000001,-7.038510099999939],[112.217198,-7.040574399999969],[112.21576370000002,-7.042966699999965],[112.21526040000003,-7.054737799999941],[112.219018,-7.066567299999974],[112.21720320000009,-7.074825799999928],[112.20832060000009,-7.0736779],[112.20365140000001,-7.074477099999967],[112.18983890000004,-7.084404899999981],[112.1881452,-7.0831971],[112.18384980000008,-7.0834856],[112.18492890000005,-7.076317699999947],[112.18338770000003,-7.074621099999945],[112.17931360000011,-7.075096499999972],[112.17484280000008,-7.083852699999966],[112.17501850000008,-7.086481699999979],[112.1835632000001,-7.089226199999928],[112.17834470000003,-7.097754399999928],[112.17525480000006,-7.099470499999939],[112.17034910000007,-7.097549799999967],[112.16618340000002,-7.097813],[112.164299,-7.0994762],[112.16307830000005,-7.106785699999932],[112.16097260000004,-7.109376299999951],[112.15454100000011,-7.110118299999954],[112.15333750000002,-7.116641399999935],[112.15454120000004,-7.119654399999945],[112.16007650000006,-7.1159],[112.163992,-7.115082099999938],[112.1657791,-7.117148799999939],[112.16564170000004,-7.118526399999951],[112.16195670000002,-7.119744199999957],[112.16007230000002,-7.141702099999975],[112.15756980000003,-7.142071199999975],[112.15454790000001,-7.150860499999965],[112.15173210000012,-7.1507438],[112.15147050000007,-7.1579363],[112.14301940000007,-7.157505199999946],[112.1427824000001,-7.1617188],[112.14088890000005,-7.161408],[112.14086320000001,-7.163062099999934],[112.13663480000002,-7.164857299999937],[112.13406370000007,-7.175700599999971],[112.1329574,-7.175336299999969],[112.12997430000007,-7.183676199999979],[112.1262885000001,-7.183400399999925],[112.12244790000011,-7.187759199999959],[112.1221964,-7.191871],[112.12336730000004,-7.192956799999934],[112.12023160000001,-7.198729399999934],[112.12074280000002,-7.204152499999964],[112.11917110000002,-7.204479099999958],[112.1211224000001,-7.205632799999933],[112.1170806,-7.206932],[112.11687870000003,-7.210082899999975],[112.11844630000007,-7.212126599999976],[112.1137619000001,-7.213107],[112.11295310000003,-7.217156799999941],[112.10987090000003,-7.218531499999926],[112.1092149000001,-7.220647499999927],[112.10613030000002,-7.220827],[112.1069480000001,-7.223635299999955],[112.09658050000007,-7.228393],[112.092575,-7.223069099999975],[112.093342,-7.224842499999966],[112.09134310000002,-7.225618299999951],[112.08947750000004,-7.229394399999933],[112.08708190000004,-7.229662299999973],[112.08912650000002,-7.230652299999974],[112.0883371000001,-7.237705699999935],[112.08947380000006,-7.2389012],[112.08764280000003,-7.238990399999977],[112.08734530000004,-7.241729799999973],[112.08498010000005,-7.242387299999962],[112.08700560000011,-7.242396299999939],[112.08709350000004,-7.244362399999943],[112.0856222000001,-7.244590799999969],[112.08691040000008,-7.247173399999951],[112.08385240000007,-7.250011899999947],[112.08641810000006,-7.250628399999925],[112.0880929000001,-7.2530003],[112.083851,-7.255018799999959],[112.08533110000008,-7.257431599999961],[112.08434780000005,-7.259602099999938],[112.08530420000011,-7.2624196],[112.08692930000007,-7.262254599999949],[112.08757020000007,-7.267034],[112.09217830000011,-7.266692599999942],[112.09442540000009,-7.269340199999931],[112.09194580000008,-7.272103],[112.09318170000006,-7.2731163],[112.09133540000005,-7.274367499999926],[112.0916406,-7.277411599999937],[112.09010710000007,-7.278303299999948],[112.09116360000007,-7.2822246],[112.086174,-7.283537799999976],[112.0890237000001,-7.287038499999937],[112.08684170000004,-7.288878699999941],[112.08531650000009,-7.288423299999977],[112.08740990000001,-7.290471499999967],[112.08715690000008,-7.2927081],[112.0886154000001,-7.293353499999967],[112.09002320000002,-7.298101199999962],[112.0872726,-7.302937899999961],[112.09003080000002,-7.304021099999943],[112.08581170000002,-7.307849699999963],[112.08406060000004,-7.3056969],[112.07972710000001,-7.313433099999941],[112.07712550000008,-7.313287699999933],[112.07832730000007,-7.324205199999938],[112.0748367000001,-7.325252],[112.07256710000001,-7.333278499999949],[112.07674230000009,-7.336645],[112.07666410000002,-7.340927],[112.07983790000003,-7.346810699999935],[112.085003,-7.350318299999969],[112.08610170000009,-7.354431099999942],[112.08478940000009,-7.354362899999956],[112.08445870000003,-7.356626799999958],[112.0890045000001,-7.358473199999935],[112.08935940000003,-7.361553199999946],[112.0879179000001,-7.363385599999958],[112.08933650000006,-7.368514499999947],[112.08601770000007,-7.369406699999956],[112.08608640000011,-7.375950799999941],[112.08152770000004,-7.382554899999946]]]]},"properties":{"shapeName":"Lamongan","shapeISO":"","shapeID":"22746128B4603957324520","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.874948,-4.884050399999978],[103.87213650000007,-4.8781005],[103.86558380000008,-4.8706124],[103.86629780000004,-4.848218199999963],[103.86374770000003,-4.844152899999926],[103.85395450000004,-4.835340499999973],[103.84874430000008,-4.827446499999951],[103.84361250000006,-4.823280699999941],[103.84011080000005,-4.821590199999946],[103.82562090000005,-4.822012899999947],[103.82368890000004,-4.820805399999927],[103.82278330000008,-4.806557],[103.82545290000007,-4.800934899999959],[103.80436720000006,-4.792540899999949],[103.79138760000006,-4.794046599999945],[103.78677930000003,-4.792702],[103.78040890000005,-4.795917499999973],[103.77664570000007,-4.789302799999973],[103.77670110000008,-4.781379099999981],[103.77393670000004,-4.773330499999929],[103.767488,-4.7725838],[103.761384,-4.775119599999925],[103.75713360000009,-4.775552199999936],[103.75028820000006,-4.779406899999969],[103.74239310000007,-4.779567699999973],[103.73835480000008,-4.785713699999974],[103.73133980000006,-4.786581099999978],[103.72844540000006,-4.792112599999939],[103.717958,-4.793585499999949],[103.71200560000005,-4.805704699999978],[103.70870840000003,-4.807923899999935],[103.71001310000008,-4.809545499999956],[103.708222,-4.811242799999945],[103.70824730000004,-4.814245899999946],[103.70300130000004,-4.819066299999974],[103.69980370000007,-4.8192954],[103.69632420000005,-4.822988499999951],[103.69115030000006,-4.824932499999932],[103.69058050000007,-4.826559499999973],[103.68450080000008,-4.827687499999968],[103.684408,-4.829478499999937],[103.678945,-4.830949],[103.67706,-4.835587],[103.673689,-4.835799],[103.667803,-4.839031],[103.663295,-4.838338],[103.660453,-4.839592],[103.66068,-4.842174],[103.657185,-4.843062],[103.655811,-4.847527],[103.653944,-4.848747],[103.649543,-4.848251],[103.643826,-4.851659],[103.63654440000005,-4.849320099999943],[103.634025,-4.853107799999975],[103.62337360000004,-4.859514899999965],[103.62266620000008,-4.864564399999949],[103.61584450000004,-4.870006299999943],[103.60857430000004,-4.8700132],[103.60196330000008,-4.867756399999962],[103.59658140000005,-4.876437599999974],[103.59556630000009,-4.881989199999964],[103.59188660000007,-4.884930399999973],[103.594013,-4.891275699999937],[103.59325960000007,-4.894756399999949],[103.57961990000007,-4.910828199999969],[103.57125420000006,-4.926142399999947],[103.57803660000008,-4.925844099999949],[103.579514,-4.924149299999954],[103.58116330000007,-4.925930599999958],[103.58432440000007,-4.923879899999974],[103.58898520000008,-4.923769899999968],[103.60164030000004,-4.924675599999944],[103.60789940000006,-4.926986],[103.61079030000008,-4.925533799999926],[103.61669080000007,-4.927923199999952],[103.61832520000007,-4.927307399999961],[103.61911840000005,-4.929027],[103.62128350000006,-4.927013899999963],[103.62830710000009,-4.930504299999939],[103.63544450000006,-4.931917299999952],[103.63655510000007,-4.934276799999964],[103.639889,-4.933305099999927],[103.64191990000006,-4.937266099999931],[103.64449490000004,-4.935686699999962],[103.64971920000005,-4.9369766],[103.65355790000007,-4.934146799999951],[103.65579020000007,-4.929395499999941],[103.65860650000008,-4.928955299999927],[103.65990090000008,-4.927231599999971],[103.65728610000008,-4.922413399999925],[103.65872050000007,-4.920631899999933],[103.67629050000005,-4.911060099999929],[103.69185230000005,-4.905925499999967],[103.69363480000004,-4.902967399999966],[103.70070450000009,-4.903214399999968],[103.71111910000008,-4.904099199999962],[103.73194280000007,-4.9088946],[103.74191480000007,-4.916118899999958],[103.75160880000004,-4.918370799999934],[103.754118,-4.921185599999944],[103.75352060000006,-4.927473199999952],[103.76298460000004,-4.934120499999949],[103.77215520000004,-4.944633099999976],[103.79322210000004,-4.935108799999966],[103.79290340000006,-4.9006472],[103.80633350000005,-4.880818499999975],[103.817624,-4.875317799999948],[103.82008790000003,-4.906214699999964],[103.82710480000009,-4.913866],[103.83851580000004,-4.917803499999934],[103.852524,-4.941228],[103.85511190000005,-4.939921],[103.85819530000003,-4.941899199999966],[103.86016550000005,-4.946411099999978],[103.85875160000006,-4.949914799999931],[103.86085770000005,-4.953272],[103.872805,-4.9649417],[103.88969030000004,-4.960363699999959],[103.89592690000006,-4.966980499999977],[103.92143440000007,-4.975696899999946],[103.93158420000009,-4.9828048],[103.935827,-4.980586599999981],[103.938779,-4.976738199999943],[103.94059030000005,-4.977282399999979],[103.95664020000004,-4.993567699999971],[103.97408780000006,-4.997627799999975],[103.98159660000005,-5.001607899999954],[103.99583560000008,-5.015921399999968],[104.01214220000008,-5.024485099999936],[104.01815680000004,-5.033485199999973],[104.02269890000008,-5.043803699999955],[104.0218,-5.049627499999929],[104.01886320000006,-5.053125499999965],[104.01780070000007,-5.058139499999925],[104.01737170000007,-5.070038599999975],[104.01275,-5.074928499999942],[104.01221190000007,-5.078287099999955],[104.00877980000007,-5.082099199999959],[104.01683410000004,-5.093029399999978],[104.029488,-5.083505099999968],[104.03436,-5.084275899999966],[104.04333520000006,-5.090702599999929],[104.05825710000005,-5.092099],[104.07932430000005,-5.109231899999941],[104.083089,-5.115893699999958],[104.08631610000003,-5.115798899999959],[104.08255630000008,-5.117385399999932],[104.07933760000009,-5.128615199999956],[104.08358990000005,-5.141004499999951],[104.097449,-5.154664899999943],[104.10894820000004,-5.162343799999974],[104.13009540000007,-5.181268199999977],[104.144709,-5.190903599999956],[104.17414920000004,-5.198604499999931],[104.20459340000008,-5.203392799999961],[104.222725,-5.219281699999954],[104.24360380000007,-5.246186399999942],[104.24761230000007,-5.2532518],[104.25374530000005,-5.258876599999951],[104.26146580000005,-5.282830099999956],[104.27462320000006,-5.293718699999943],[104.28652410000007,-5.3144204],[104.30119390000004,-5.326857199999949],[104.31513740000008,-5.345772499999953],[104.32593670000006,-5.349167799999975],[104.33200110000007,-5.354610199999968],[104.33371160000007,-5.369537799999932],[104.348983,-5.381569499999955],[104.37957590000008,-5.337249199999974],[104.38184980000005,-5.329712899999947],[104.39480520000006,-5.251342299999976],[104.396233,-5.232066599999939],[104.40139540000007,-5.229241599999966],[104.41020040000006,-5.203194499999938],[104.40152120000005,-5.184133499999973],[104.40423030000005,-5.174211299999968],[104.407158,-5.171056199999953],[104.40587280000005,-5.168731699999967],[104.40755810000007,-5.170435899999973],[104.41151660000008,-5.170050599999968],[104.41482440000004,-5.171754399999941],[104.43313160000008,-5.171445399999925],[104.439071,-5.174481199999946],[104.43825640000006,-5.166483699999958],[104.44122190000007,-5.162225599999942],[104.46080410000008,-5.150346799999966],[104.47650570000008,-5.144832699999938],[104.48601320000006,-5.136644599999954],[104.49061380000006,-5.130677799999944],[104.498938,-5.128486199999941],[104.50181020000008,-5.1244991],[104.50863270000008,-5.120008399999961],[104.51592270000003,-5.117300099999966],[104.52455590000005,-5.110666599999945],[104.53295030000004,-5.107118],[104.55892510000007,-5.0806073],[104.56526380000008,-5.070033599999931],[104.57662750000009,-5.064367799999957],[104.58035770000004,-5.057582199999956],[104.57938830000006,-5.053233599999942],[104.57275740000006,-5.0432239],[104.57300010000006,-5.039062799999954],[104.56954780000007,-5.023690699999975],[104.56814720000006,-5.025119099999927],[104.56511290000009,-5.024863799999935],[104.55889560000008,-5.019739399999935],[104.55258140000007,-5.020449699999972],[104.53766650000006,-5.015400499999942],[104.53588440000004,-5.016059599999949],[104.53450120000008,-5.021088299999974],[104.52775690000004,-5.022811299999944],[104.51276980000006,-5.021723699999939],[104.49897120000008,-5.016077399999972],[104.49909580000008,-5.007944899999927],[104.49656530000004,-5.004188799999952],[104.49989810000005,-4.998238899999933],[104.49938430000009,-4.985815299999956],[104.50146040000004,-4.979235499999959],[104.49814410000005,-4.976104899999939],[104.49691490000004,-4.972469899999965],[104.50163430000003,-4.958707899999979],[104.50089430000008,-4.954988699999944],[104.500186,-4.949479599999961],[104.49768360000007,-4.94718],[104.49882740000004,-4.94311],[104.48697410000005,-4.937526599999956],[104.47997860000004,-4.932366599999966],[104.46809960000007,-4.933456799999931],[104.45935730000008,-4.940080099999932],[104.44513690000008,-4.944613899999979],[104.44180920000008,-4.944215799999938],[104.44121940000008,-4.939260399999966],[104.43794230000009,-4.937330599999939],[104.437058,-4.933549899999946],[104.43728160000006,-4.927753],[104.44042290000004,-4.920279899999969],[104.438207,-4.917016899999965],[104.42878140000005,-4.911881899999969],[104.42240120000008,-4.903930799999955],[104.41929860000005,-4.892239099999927],[104.41959320000007,-4.882242199999951],[104.41832710000006,-4.8775273],[104.41087330000005,-4.86564],[104.40638450000006,-4.868699499999934],[104.38653260000007,-4.873032599999931],[104.38170430000008,-4.869692899999961],[104.36805250000003,-4.870669299999975],[104.36364180000004,-4.8690099],[104.35851350000007,-4.870413299999939],[104.35280180000007,-4.874579599999947],[104.34799990000005,-4.8696832],[104.34348980000004,-4.8689624],[104.34051460000006,-4.8647629],[104.33345220000007,-4.872206199999937],[104.31303330000009,-4.883928499999968],[104.30289450000004,-4.879798499999936],[104.29904350000004,-4.872991199999944],[104.29326070000008,-4.868990499999938],[104.29183570000004,-4.863121899999953],[104.29339460000006,-4.860002699999939],[104.28661660000006,-4.855688899999961],[104.28079670000005,-4.857126],[104.27833360000005,-4.863202199999932],[104.27854450000007,-4.869154699999967],[104.27189270000008,-4.8753982],[104.26802750000007,-4.877393199999972],[104.26369340000008,-4.876791399999945],[104.25505110000006,-4.880201199999931],[104.244118,-4.881654399999945],[104.23984160000003,-4.879587099999981],[104.22944520000004,-4.867349199999978],[104.21726360000008,-4.858976799999937],[104.21506130000006,-4.858485799999926],[104.202764,-4.862357],[104.19443360000008,-4.862030399999981],[104.18656820000007,-4.891609599999981],[104.17424250000005,-4.9081029],[104.16498480000007,-4.917146099999968],[104.16269990000006,-4.9220115],[104.15212180000003,-4.925301699999977],[104.14637770000007,-4.924202799999932],[104.14432980000004,-4.925351699999965],[104.14062590000003,-4.922938399999964],[104.135147,-4.922064899999953],[104.12217510000005,-4.923920299999963],[104.10752560000009,-4.9231065],[104.08853560000006,-4.916595599999937],[104.07063070000004,-4.907100499999956],[104.06520490000008,-4.892722399999968],[104.05760890000005,-4.890009499999962],[104.05136930000003,-4.8938075],[104.0473,-4.900861],[104.01886360000009,-4.9054137],[104.01380720000009,-4.907886699999949],[104.01060990000008,-4.9065955],[103.95980540000005,-4.910860899999932],[103.94721640000006,-4.897805199999937],[103.94336020000009,-4.897184099999947],[103.931732,-4.902336599999956],[103.92827080000006,-4.916418599999929],[103.92536070000006,-4.9174943],[103.92260730000004,-4.9125663],[103.91800670000003,-4.911635699999977],[103.91474980000004,-4.914157099999954],[103.91371830000008,-4.920176],[103.91881450000005,-4.9278701],[103.92492980000009,-4.928942799999959],[103.91823030000006,-4.937568799999951],[103.92299240000006,-4.942679299999952],[103.91941050000008,-4.947172899999941],[103.91790960000009,-4.951476699999944],[103.91871830000008,-4.955520099999944],[103.91587470000007,-4.960017799999946],[103.90918070000004,-4.952889899999946],[103.90274870000007,-4.949808799999971],[103.90094530000005,-4.947584099999972],[103.89993280000004,-4.941697599999941],[103.89036840000006,-4.936088799999936],[103.88528,-4.927656099999979],[103.88114790000009,-4.9263627],[103.86142930000005,-4.926680099999942],[103.85251510000006,-4.923282599999936],[103.85121670000007,-4.919243499999936],[103.85765050000003,-4.909980899999937],[103.86467110000007,-4.904434399999957],[103.86430970000004,-4.902087799999947],[103.86216530000007,-4.900519599999939],[103.86453860000006,-4.894427499999949],[103.874948,-4.884050399999978]]]},"properties":{"shapeName":"Lampung Barat","shapeISO":"","shapeID":"22746128B94800370038734","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[105.44886630000008,-6.136547599999972],[105.44506870000004,-6.133063299999947],[105.438075,-6.142237799999975],[105.42935160000007,-6.146223499999962],[105.42348590000006,-6.145621899999981],[105.42190670000008,-6.1420874],[105.42040270000007,-6.141711399999963],[105.41934990000004,-6.155322899999931],[105.42822360000008,-6.164572599999929],[105.44897910000009,-6.168558299999972],[105.45326560000007,-6.167430199999956],[105.45439360000006,-6.163971],[105.45950730000004,-6.161038099999928],[105.46033450000004,-6.157578899999976],[105.464245,-6.152615599999933],[105.46454580000005,-6.149306799999977],[105.46086090000006,-6.145396299999959],[105.46003370000005,-6.138929],[105.45770250000004,-6.135845699999948],[105.44886630000008,-6.136547599999972]]],[[[105.42452390000005,-6.111339399999963],[105.42828390000005,-6.109083399999975],[105.42881040000009,-6.106225799999947],[105.43520250000006,-6.103217699999959],[105.43219440000007,-6.1010369],[105.42971280000006,-6.0949456],[105.42482470000004,-6.094268799999952],[105.42249350000009,-6.090057499999944],[105.41760540000007,-6.09284],[105.41572530000008,-6.0966],[105.41565010000005,-6.100736099999949],[105.41941020000007,-6.108632199999931],[105.42204220000008,-6.111189],[105.42452390000005,-6.111339399999963]]],[[[105.45144590000007,-6.080131],[105.45061870000006,-6.082988599999965],[105.45332590000004,-6.096976],[105.45076910000006,-6.102766499999973],[105.45091950000005,-6.1067522],[105.45452920000008,-6.109083399999975],[105.455958,-6.108181],[105.45738680000005,-6.101488099999926],[105.46084610000008,-6.097953599999926],[105.46543330000009,-6.0879519],[105.45543160000005,-6.083590199999946],[105.45362670000009,-6.080206199999964],[105.45144590000007,-6.080131]]],[[[105.36255810000006,-6.112993899999935],[105.36556620000005,-6.1124675],[105.37060460000004,-6.107053],[105.38203520000008,-6.102616099999977],[105.38579530000004,-6.096900799999958],[105.39158580000009,-6.0949456],[105.39684990000006,-6.090734299999951],[105.40083550000008,-6.082838199999969],[105.40053470000004,-6.077724499999931],[105.40354280000008,-6.073287599999958],[105.38466730000005,-6.078250899999944],[105.37654550000008,-6.085094199999958],[105.37594390000004,-6.088403099999937],[105.371507,-6.091335899999933],[105.368123,-6.098780799999929],[105.35782040000004,-6.107203399999946],[105.358422,-6.110061],[105.36097890000008,-6.112993899999935],[105.36255810000006,-6.112993899999935]]],[[[105.50199230000004,-5.923320399999966],[105.49464140000003,-5.921058599999981],[105.47733850000009,-5.926147699999945],[105.47473750000006,-5.929088],[105.474794,-5.931123699999944],[105.46772580000004,-5.936382399999957],[105.46682110000006,-5.941980399999977],[105.46399380000008,-5.946447499999977],[105.46388070000006,-5.9530633],[105.46252360000005,-5.954476899999975],[105.46639940000006,-5.959053599999947],[105.46747320000009,-5.964256],[105.47974420000008,-5.969307199999946],[105.48193060000006,-5.972473699999966],[105.48539870000008,-5.972926099999938],[105.49153850000005,-5.969778699999949],[105.49565230000007,-5.970588899999939],[105.50130680000007,-5.968930199999932],[105.50696830000004,-5.963467599999944],[105.51641140000004,-5.947634899999969],[105.51611230000009,-5.940553799999975],[105.51424630000008,-5.939705599999968],[105.515561,-5.942547099999956],[105.51479760000007,-5.9446675],[105.51177470000005,-5.936834699999963],[105.51200090000003,-5.929314199999965],[105.50674210000005,-5.923263899999938],[105.50199230000004,-5.923320399999966]]],[[[105.739626,-5.8909099],[105.74022460000003,-5.888653499999975],[105.73783010000005,-5.886305],[105.736771,-5.888653499999975],[105.739626,-5.8909099]]],[[[105.78829460000009,-5.883905299999981],[105.77885450000008,-5.883583],[105.775493,-5.8851486],[105.78313710000003,-5.890168],[105.78824850000007,-5.891457299999956],[105.78829460000009,-5.883905299999981]]],[[[105.45426880000008,-5.888963],[105.45727870000007,-5.886510599999951],[105.45705570000007,-5.884726899999976],[105.45220390000009,-5.879838699999937],[105.45170480000007,-5.885172799999964],[105.45248520000007,-5.888182699999959],[105.45426880000008,-5.888963]]],[[[105.76812510000008,-5.883675099999948],[105.76434910000006,-5.879484599999955],[105.76264530000009,-5.882155399999931],[105.75661290000005,-5.883859299999926],[105.75154750000007,-5.896430599999974],[105.74735710000004,-5.898871199999974],[105.74901480000005,-5.901634099999967],[105.75679710000009,-5.899746099999959],[105.75794830000007,-5.894957],[105.762369,-5.889477199999931],[105.76720420000004,-5.888556199999925],[105.76812510000008,-5.883675099999948]]],[[[105.54215290000008,-5.884784],[105.53875690000007,-5.879210199999932],[105.53866470000008,-5.883349899999928],[105.54215290000008,-5.884784]]],[[[105.77116440000003,-5.883536899999967],[105.77273,-5.878886],[105.76876980000009,-5.878195199999936],[105.76835540000008,-5.882615899999962],[105.77116440000003,-5.883536899999967]]],[[[105.77208530000007,-5.875156],[105.77309840000004,-5.873268],[105.77203930000007,-5.872116799999958],[105.770796,-5.8743271],[105.77208530000007,-5.875156]]],[[[105.76844750000004,-5.8737285],[105.76996710000009,-5.873406199999977],[105.76973690000005,-5.871195799999953],[105.76692790000004,-5.872347],[105.76683580000008,-5.873498199999972],[105.76844750000004,-5.8737285]]],[[[105.78645260000008,-5.850888199999929],[105.78668290000007,-5.847020099999952],[105.784933,-5.846743799999956],[105.78193980000003,-5.851809199999934],[105.774618,-5.857150899999965],[105.77323660000008,-5.861617599999931],[105.77664420000008,-5.865808099999981],[105.78189380000003,-5.865393599999948],[105.78543950000005,-5.869261699999981],[105.78709730000008,-5.867557899999952],[105.78530140000004,-5.864887099999976],[105.78691310000005,-5.861341299999935],[105.78981420000008,-5.859867799999961],[105.79234690000004,-5.849368599999934],[105.78939970000005,-5.847710899999981],[105.78801830000003,-5.850611899999933],[105.78645260000008,-5.850888199999929]]],[[[105.52748630000008,-5.849052899999947],[105.52477210000006,-5.846564899999976],[105.52401820000006,-5.847318899999948],[105.52349040000007,-5.856667699999946],[105.51987150000008,-5.857949399999939],[105.51858980000009,-5.861719099999959],[105.51451850000007,-5.861492899999973],[105.51112580000006,-5.855989099999931],[105.50547130000007,-5.856969299999946],[105.50464470000009,-5.860296799999958],[105.50185240000008,-5.862473],[105.50253090000007,-5.867750599999965],[105.50509430000005,-5.8729528],[105.50434040000005,-5.874686799999949],[105.50004290000004,-5.874234499999943],[105.49725330000007,-5.877476399999978],[105.49197580000003,-5.877325599999949],[105.49333290000004,-5.884563399999934],[105.50260630000008,-5.888634699999955],[105.50230470000008,-5.8993406],[105.50449110000005,-5.903034899999966],[105.50856240000007,-5.900094599999932],[105.52906950000005,-5.894138399999974],[105.530879,-5.883130899999969],[105.53457330000003,-5.877024],[105.53216070000008,-5.874460599999964],[105.53570420000005,-5.870766299999957],[105.54399750000005,-5.866921299999944],[105.54460070000005,-5.8651872],[105.54271580000005,-5.862322199999937],[105.53555340000008,-5.863151599999981],[105.52914490000006,-5.861191299999973],[105.52989890000003,-5.856667699999946],[105.53434710000005,-5.8541043],[105.53479950000008,-5.849580699999933],[105.53306540000005,-5.846791099999962],[105.52748630000008,-5.849052899999947]]],[[[105.79391250000003,-5.847434599999929],[105.795294,-5.845730799999956],[105.79428090000005,-5.844994],[105.79257710000007,-5.846375399999943],[105.79391250000003,-5.847434599999929]]],[[[105.77627580000006,-5.846835899999974],[105.77715070000005,-5.844901899999968],[105.77517060000008,-5.845961],[105.77627580000006,-5.846835899999974]]],[[[105.36404960000004,-5.548922799999957],[105.36376690000009,-5.547434299999964],[105.360309,-5.548437399999955],[105.36404960000004,-5.548922799999957]]],[[[105.355748,-5.546669099999974],[105.352341,-5.546953499999972],[105.35382760000005,-5.548261699999955],[105.355748,-5.546669099999974]]],[[[105.36046050000004,-5.544715499999938],[105.35651580000007,-5.5454366],[105.360897,-5.546435],[105.36166490000005,-5.545382099999927],[105.36046050000004,-5.544715499999938]]],[[[105.34707770000006,-5.521939699999962],[105.35124170000006,-5.528125799999941],[105.35584510000007,-5.529868],[105.35995410000004,-5.536845099999937],[105.36431030000006,-5.540955499999939],[105.36866990000004,-5.550425099999927],[105.36929880000008,-5.561642],[105.377141,-5.569863],[105.38075790000005,-5.5844431],[105.38741810000005,-5.591792299999952],[105.39053280000007,-5.598769799999957],[105.40372640000004,-5.608856399999979],[105.40957070000007,-5.621563],[105.41093350000006,-5.620458699999972],[105.41182140000006,-5.624269499999969],[105.41976740000007,-5.625600799999972],[105.42006490000006,-5.627147699999966],[105.43644540000008,-5.634732099999951],[105.438414,-5.637702299999944],[105.445943,-5.636942499999975],[105.44708270000007,-5.642537399999981],[105.44977660000006,-5.643331799999942],[105.45070910000004,-5.645680299999981],[105.45661490000003,-5.649617399999954],[105.46089740000008,-5.650308199999927],[105.466147,-5.647441599999979],[105.469946,-5.647959699999944],[105.46919860000008,-5.654945],[105.47058,-5.6575008],[105.47431,-5.658744099999979],[105.47700390000006,-5.656706399999962],[105.47904150000005,-5.660056499999939],[105.48622520000004,-5.664442599999973],[105.48670870000007,-5.667032899999981],[105.49375410000005,-5.667067399999951],[105.49675880000007,-5.669726699999956],[105.50235380000004,-5.669070499999975],[105.50560020000006,-5.674043799999936],[105.517069,-5.684140099999979],[105.51734530000004,-5.693488],[105.52112130000006,-5.692797199999973],[105.52291720000005,-5.696527199999935],[105.52756810000005,-5.6960667],[105.53074550000008,-5.692935399999953],[105.53111390000004,-5.6858899],[105.53521220000005,-5.671384499999931],[105.54331680000007,-5.667930799999965],[105.54525090000004,-5.669818799999973],[105.54580350000003,-5.675621],[105.54934920000005,-5.676542],[105.55556580000007,-5.668437399999959],[105.55842090000004,-5.668069],[105.56110710000007,-5.670478899999978],[105.56190520000007,-5.672566399999937],[105.56007860000005,-5.6810548],[105.55493650000005,-5.694636599999967],[105.55448750000005,-5.699333599999932],[105.555869,-5.700991399999964],[105.55928810000006,-5.701578499999925],[105.56167370000009,-5.707686399999943],[105.57272670000003,-5.716110799999967],[105.58334940000009,-5.727218],[105.58936570000009,-5.736740699999928],[105.58954990000007,-5.740931099999955],[105.58591210000009,-5.748022699999979],[105.58595090000006,-5.7551969],[105.579811,-5.766831899999943],[105.58146880000004,-5.776962699999956],[105.57914090000008,-5.783102699999972],[105.57892740000005,-5.788326899999959],[105.58490710000007,-5.795934899999963],[105.58329070000008,-5.803385799999944],[105.58450950000008,-5.8062],[105.59430110000005,-5.813679],[105.59489920000004,-5.819713199999967],[105.60309370000004,-5.8272502],[105.60412480000008,-5.831177599999933],[105.61124710000007,-5.833265199999971],[105.614317,-5.835598299999958],[105.62653530000006,-5.835045699999966],[105.62764050000004,-5.838177],[105.630956,-5.837501699999962],[105.63513110000008,-5.839773399999956],[105.64215530000007,-5.836887699999977],[105.65011240000007,-5.838422599999944],[105.65625220000004,-5.835721099999944],[105.663927,-5.839098],[105.67559270000004,-5.838729599999965],[105.67712770000009,-5.842659099999935],[105.68038180000008,-5.845851899999957],[105.68707430000006,-5.849658599999941],[105.69382810000008,-5.847571],[105.70463430000007,-5.848860399999978],[105.70678320000007,-5.852482899999927],[105.71482640000005,-5.8583772],[105.71439660000004,-5.863289099999974],[105.71273890000003,-5.865315199999941],[105.71421240000006,-5.878024699999969],[105.716607,-5.878393099999926],[105.71771210000009,-5.880296399999963],[105.71752790000005,-5.895646099999965],[105.71654560000007,-5.903873499999975],[105.714765,-5.905899599999941],[105.71703680000007,-5.908601199999964],[105.72145750000004,-5.903627899999947],[105.72508,-5.904180499999939],[105.72986910000009,-5.8997598],[105.72980770000004,-5.896505699999977],[105.73300040000004,-5.892514799999958],[105.73735970000007,-5.881340199999954],[105.740184,-5.880419199999949],[105.74092080000008,-5.878024699999969],[105.75154270000007,-5.873911],[105.75663880000008,-5.868753499999968],[105.75817380000007,-5.8610787],[105.75983150000008,-5.861692699999935],[105.76007710000005,-5.8600349],[105.76118230000009,-5.860403299999973],[105.76032270000007,-5.857701799999973],[105.76578720000003,-5.854693299999951],[105.76486620000009,-5.8518075],[105.76933310000004,-5.848174399999948],[105.77006980000004,-5.844674599999962],[105.77228020000007,-5.843615499999942],[105.77122110000005,-5.840438099999972],[105.77568780000007,-5.8403],[105.77974010000008,-5.836063499999966],[105.77743770000006,-5.827084],[105.77904940000008,-5.822248799999954],[105.78305560000007,-5.822479099999953],[105.78222680000005,-5.8207292],[105.77932570000007,-5.820176599999968],[105.77983220000004,-5.818887199999949],[105.78365430000008,-5.818472799999938],[105.78514030000008,-5.812659799999949],[105.782316,-5.811431899999945],[105.78250020000007,-5.808791699999972],[105.78348260000007,-5.807686599999954],[105.79011360000004,-5.808177799999953],[105.790789,-5.804186799999968],[105.78949960000006,-5.802958899999965],[105.79146440000005,-5.801853699999981],[105.79306080000003,-5.797003199999949],[105.79637630000008,-5.794792899999948],[105.799262,-5.795591099999967],[105.79913920000007,-5.792336899999952],[105.79600790000006,-5.793135099999972],[105.79379750000004,-5.78896],[105.79374380000007,-5.778779399999962],[105.79585060000005,-5.772113799999943],[105.79892430000007,-5.772079199999951],[105.79661040000008,-5.771008599999959],[105.79740470000007,-5.770525099999929],[105.79588510000008,-5.768936399999973],[105.79826810000009,-5.768867299999954],[105.79640310000008,-5.767624],[105.79636860000005,-5.764343],[105.80016760000007,-5.751771699999949],[105.79930210000003,-5.744505299999958],[105.79317760000004,-5.734512699999925],[105.79230260000008,-5.716323399999965],[105.798335,-5.69993],[105.80938680000008,-5.685424599999976],[105.81086030000006,-5.669768],[105.81592570000004,-5.653282499999932],[105.81933330000004,-5.622659899999974],[105.82145160000005,-5.620357499999955],[105.82007010000007,-5.618285299999968],[105.82895310000004,-5.589915599999927],[105.82895310000004,-5.585003699999959],[105.82707020000004,-5.5813198],[105.81945680000007,-5.579191299999934],[105.81675020000006,-5.575983199999939],[105.80537610000005,-5.5829826],[105.80073360000006,-5.589098699999965],[105.79993980000006,-5.592723499999977],[105.79710780000005,-5.596177199999943],[105.79935260000008,-5.601357699999937],[105.79852380000005,-5.603844299999935],[105.79696960000007,-5.603982499999972],[105.79279070000007,-5.599665399999935],[105.79006390000006,-5.599227599999949],[105.78971690000009,-5.600632399999938],[105.79175460000005,-5.6028427],[105.79116750000009,-5.607056199999931],[105.79337780000009,-5.611649599999964],[105.79308360000005,-5.613981],[105.79099480000008,-5.614067199999965],[105.78761020000007,-5.609611899999948],[105.78515810000005,-5.608955699999967],[105.78633770000005,-5.613829499999952],[105.78533080000005,-5.616035799999963],[105.77970130000006,-5.616173899999978],[105.77438260000008,-5.621112599999947],[105.77155060000007,-5.619890599999962],[105.77545330000004,-5.615794],[105.77503880000006,-5.612616599999967],[105.76688820000004,-5.618902299999945],[105.76464330000005,-5.6187642],[105.760138,-5.615419799999927],[105.76511120000004,-5.606328],[105.764386,-5.6031679],[105.757729,-5.608633399999974],[105.75438760000009,-5.608633399999974],[105.75430990000007,-5.6056546],[105.75739230000005,-5.602261299999952],[105.75744410000004,-5.5923148],[105.75622670000007,-5.590993799999978],[105.75423220000005,-5.592055799999969],[105.75405090000004,-5.598842199999979],[105.75187510000006,-5.599645199999941],[105.75104620000008,-5.591097399999967],[105.748689,-5.588196299999936],[105.74648730000007,-5.5895432],[105.74689310000008,-5.59519],[105.74378480000007,-5.597262199999932],[105.74133270000004,-5.601924599999961],[105.73843170000004,-5.601303],[105.74119460000009,-5.597089499999981],[105.74060750000007,-5.595673499999975],[105.73805170000009,-5.596571399999959],[105.73670480000004,-5.600025099999925],[105.73394190000005,-5.600635199999942],[105.73381820000009,-5.613093299999946],[105.73008210000006,-5.611913499999957],[105.72693590000006,-5.6154529],[105.72614930000009,-5.613093299999946],[105.724183,-5.612306699999976],[105.72248760000008,-5.615435399999967],[105.70986110000007,-5.609894699999927],[105.70429940000008,-5.608856699999933],[105.70654690000003,-5.600709599999959],[105.70294860000007,-5.598437],[105.689597,-5.597016599999961],[105.688366,-5.6041185],[105.68675620000005,-5.603929099999959],[105.68571950000006,-5.6124112],[105.68116940000004,-5.6130195],[105.67793530000006,-5.6097724],[105.67171460000009,-5.609479799999974],[105.67304210000003,-5.604207299999928],[105.67220070000008,-5.598077199999977],[105.664508,-5.587379599999963],[105.65705570000006,-5.584254399999963],[105.65729610000005,-5.581489899999951],[105.65360720000007,-5.5737451],[105.65873850000008,-5.5633399],[105.64984390000006,-5.559854199999961],[105.64743990000005,-5.5560079],[105.643834,-5.554445299999941],[105.63722310000009,-5.5524019],[105.63262250000008,-5.553493599999968],[105.63371810000007,-5.552580599999942],[105.63116650000006,-5.545477199999937],[105.632333,-5.526225699999941],[105.63121160000009,-5.519628099999977],[105.63247270000005,-5.512526299999934],[105.63107270000006,-5.498259],[105.62935980000009,-5.496824699999934],[105.62241960000006,-5.496333599999957],[105.61405480000008,-5.491835599999945],[105.58224460000008,-5.487450899999942],[105.58268240000007,-5.480018399999949],[105.58448130000005,-5.479781499999945],[105.58349850000008,-5.478192799999931],[105.59059620000005,-5.457296499999927],[105.59034020000007,-5.455513499999938],[105.58533960000005,-5.454244699999947],[105.58849170000008,-5.451156799999978],[105.58630920000007,-5.448063299999944],[105.57828780000006,-5.4521765],[105.56949470000006,-5.448867399999926],[105.54124670000004,-5.451556399999959],[105.54252780000007,-5.457957],[105.53806490000005,-5.453827499999932],[105.532949,-5.459351599999934],[105.53320330000008,-5.4622935],[105.53150780000004,-5.462408299999936],[105.53106920000005,-5.475412],[105.52510060000009,-5.476533],[105.52130040000009,-5.475412699999936],[105.52120050000008,-5.468147],[105.51675350000005,-5.462720899999965],[105.51650350000006,-5.455882899999949],[105.51498680000009,-5.453499],[105.51816030000003,-5.453424],[105.52342270000008,-5.450094599999943],[105.52775020000007,-5.450090799999941],[105.52752960000004,-5.445176],[105.52889910000005,-5.444162799999958],[105.52594140000008,-5.443514899999968],[105.52565130000005,-5.441780499999936],[105.52795710000004,-5.439176399999951],[105.52579160000005,-5.4372267],[105.52861740000009,-5.434138699999949],[105.52822280000004,-5.430267699999945],[105.530664,-5.425904199999934],[105.53247340000007,-5.426098599999932],[105.53110080000005,-5.4222285],[105.53153690000005,-5.417670699999974],[105.53021730000006,-5.418357899999933],[105.530362,-5.416054599999939],[105.52709030000005,-5.414689599999974],[105.52595130000009,-5.410969299999977],[105.52824740000005,-5.407825699999933],[105.52748,-5.406569799999943],[105.52566960000007,-5.407409099999938],[105.52406660000008,-5.406433099999958],[105.52426940000004,-5.399312],[105.52566270000005,-5.399450399999978],[105.52514510000009,-5.388046699999961],[105.526733,-5.387727],[105.52752460000005,-5.384861099999966],[105.52415750000006,-5.375135499999942],[105.52476650000006,-5.362335],[105.52719720000005,-5.361258599999928],[105.53323170000004,-5.348874399999943],[105.53078080000006,-5.3406274],[105.51970030000007,-5.325494799999944],[105.51195140000004,-5.317246699999941],[105.50354170000008,-5.315447699999936],[105.498094,-5.316450799999927],[105.49455680000005,-5.311190899999929],[105.49455290000009,-5.306275],[105.48449180000006,-5.302366899999981],[105.48492080000005,-5.289199699999926],[105.478081,-5.2889572],[105.47758410000006,-5.2913739],[105.47326350000009,-5.293626899999936],[105.47152010000008,-5.296461099999931],[105.47235320000004,-5.298960099999931],[105.46894660000004,-5.300795799999946],[105.46686780000005,-5.299964099999954],[105.46588510000004,-5.307383699999946],[105.42258580000004,-5.307347599999957],[105.41706080000006,-5.313245499999937],[105.41461910000004,-5.280920399999957],[105.43014990000006,-5.283133199999952],[105.43940820000006,-5.286812399999974],[105.44866090000005,-5.282611699999961],[105.45081420000008,-5.279559799999959],[105.455378,-5.278793899999926],[105.45776120000005,-5.243459799999926],[105.44888840000004,-5.246262299999955],[105.44559140000007,-5.245247899999981],[105.44457780000005,-5.2462654],[105.44267490000004,-5.244614499999955],[105.42847630000006,-5.246149499999945],[105.42545340000004,-5.2451696],[105.42514110000008,-5.235432299999957],[105.43422520000007,-5.231825599999979],[105.41141740000006,-5.228287399999942],[105.40984970000005,-5.229546299999981],[105.40301090000008,-5.228984699999955],[105.40116260000008,-5.228661199999976],[105.40098060000008,-5.225950499999954],[105.39894960000004,-5.2261084],[105.39863220000007,-5.218277199999932],[105.41925560000004,-5.218890299999941],[105.42014050000006,-5.211904],[105.40419480000008,-5.212113599999952],[105.40308170000009,-5.2138427],[105.40221220000006,-5.211993399999926],[105.39678480000003,-5.211235199999976],[105.39287870000004,-5.213305099999957],[105.38842790000007,-5.212110899999971],[105.38484690000007,-5.213418799999943],[105.384631,-5.215268799999933],[105.36847450000005,-5.213394199999925],[105.37020890000008,-5.218097199999931],[105.36123590000005,-5.219919],[105.35718490000005,-5.228052899999966],[105.34709110000006,-5.231951299999935],[105.34907790000005,-5.235756399999957],[105.34679960000005,-5.240530099999944],[105.33488160000007,-5.237235699999928],[105.33199440000004,-5.235070299999961],[105.32486560000007,-5.220273599999928],[105.32862950000003,-5.214860699999974],[105.32613570000007,-5.207738099999972],[105.30747250000007,-5.216570099999956],[105.30830130000004,-5.221219799999972],[105.300787,-5.229198699999927],[105.29691950000006,-5.224765299999945],[105.29575950000009,-5.218907099999967],[105.28879930000005,-5.2165871],[105.28717530000006,-5.210032899999931],[105.28218710000004,-5.207712799999968],[105.28050510000008,-5.208408799999972],[105.28044710000006,-5.205972799999927],[105.28234920000006,-5.203700799999979],[105.27976880000006,-5.203239199999928],[105.27761810000004,-5.198762699999975],[105.278628,-5.19589],[105.27606530000008,-5.179964799999937],[105.272106,-5.180026899999973],[105.27162890000005,-5.176607199999978],[105.26967770000005,-5.175768699999935],[105.26710680000008,-5.178366099999948],[105.26026880000006,-5.177434699999935],[105.25715650000006,-5.180410699999925],[105.25013680000006,-5.180115399999977],[105.24470730000007,-5.182637],[105.24209540000004,-5.180612499999938],[105.24016580000006,-5.171163599999943],[105.21013270000009,-5.180155399999933],[105.20217910000008,-5.180419399999948],[105.20234690000007,-5.1848826],[105.20023460000004,-5.188527499999964],[105.189219,-5.192435699999976],[105.18545160000008,-5.1979258],[105.173754,-5.197621599999934],[105.16254170000008,-5.210349],[105.16119620000006,-5.214463499999965],[105.16147920000009,-5.229434],[105.16643790000006,-5.238143599999944],[105.16771190000009,-5.245961299999976],[105.17639660000003,-5.259417],[105.17841710000005,-5.265386599999943],[105.17882230000004,-5.2704459],[105.17539060000007,-5.271661199999926],[105.17677510000004,-5.277155899999968],[105.15962020000006,-5.274043799999959],[105.15306660000005,-5.269529699999964],[105.15350660000007,-5.263835499999971],[105.14698210000006,-5.256517499999973],[105.14683670000005,-5.2587413],[105.14398550000004,-5.259644599999945],[105.14140190000006,-5.258729899999935],[105.134031,-5.274420699999951],[105.12535550000007,-5.285556799999938],[105.124662,-5.289036399999929],[105.11824030000008,-5.288863699999979],[105.11405120000006,-5.2912261],[105.11527010000003,-5.292372899999975],[105.11273640000007,-5.293925],[105.10850650000003,-5.3042675],[105.10894850000005,-5.311336499999925],[105.16404720000008,-5.321512699999971],[105.16997,-5.325943299999949],[105.17778790000006,-5.327967499999943],[105.18055260000006,-5.333438199999932],[105.18554,-5.3347876],[105.18863980000003,-5.334111199999938],[105.19126940000007,-5.338230899999928],[105.19350010000005,-5.339107],[105.19597280000005,-5.349452099999951],[105.201899,-5.348092399999928],[105.20369080000006,-5.351429399999972],[105.20638630000008,-5.3530492],[105.21279180000005,-5.354426799999942],[105.21825590000009,-5.361085399999979],[105.21946010000005,-5.365517899999929],[105.224484,-5.365853499999957],[105.22582260000007,-5.361845399999936],[105.23182890000004,-5.359369199999946],[105.23751840000006,-5.352423299999941],[105.23575150000005,-5.350025399999936],[105.23657870000005,-5.348883599999965],[105.241657,-5.347393499999953],[105.24289950000008,-5.342820599999925],[105.24758940000004,-5.338808599999936],[105.25033380000008,-5.338620499999934],[105.25317020000006,-5.335307499999942],[105.26124510000005,-5.337463699999944],[105.26177410000008,-5.336166499999933],[105.26261720000008,-5.337360599999954],[105.262962,-5.341299699999979],[105.26660320000008,-5.348557399999947],[105.264116,-5.353391299999942],[105.26702870000008,-5.355406399999936],[105.275129,-5.355615099999966],[105.27942550000006,-5.350444799999934],[105.28055570000004,-5.3442146],[105.28592410000005,-5.344541099999958],[105.28933030000007,-5.349087099999963],[105.29164850000006,-5.347674499999926],[105.29441770000005,-5.348400099999935],[105.28979010000006,-5.358553299999926],[105.28683550000005,-5.358881],[105.28805080000006,-5.360701499999948],[105.28685720000004,-5.361657],[105.28801150000004,-5.361909799999978],[105.28958430000006,-5.361266199999932],[105.28923510000004,-5.359442399999978],[105.29163330000006,-5.359046299999932],[105.29188620000008,-5.367837299999962],[105.305687,-5.358452199999931],[105.30528960000004,-5.361150399999929],[105.30811440000008,-5.361265599999967],[105.30840370000004,-5.374688699999979],[105.31014790000006,-5.373738499999945],[105.31023170000009,-5.375037499999962],[105.31563240000008,-5.375667599999929],[105.31705660000006,-5.382420099999933],[105.315647,-5.387800099999936],[105.32167950000007,-5.388713],[105.32170150000007,-5.3959312],[105.32526970000004,-5.396942199999955],[105.32476440000005,-5.406894099999931],[105.33539450000006,-5.407164099999932],[105.34200090000007,-5.419627799999944],[105.33897650000006,-5.4358674],[105.33580740000008,-5.438574399999936],[105.33080730000006,-5.448492299999941],[105.32729610000007,-5.451627],[105.33148830000005,-5.4797029],[105.33935340000005,-5.489958699999931],[105.34059430000008,-5.493738],[105.34572660000003,-5.4975151],[105.35058030000005,-5.498899],[105.35941930000007,-5.514499699999931],[105.34707770000006,-5.521939699999962]]]]},"properties":{"shapeName":"Lampung Selatan","shapeISO":"","shapeID":"22746128B33339671910659","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[105.32032570000007,-5.053206599999953],[105.32858360000006,-5.0498989],[105.32902260000009,-5.047637099999974],[105.33963830000005,-5.043537],[105.34225220000008,-5.043785299999968],[105.34849020000007,-5.035938499999929],[105.35044390000007,-5.036392799999931],[105.34953520000005,-5.034189199999958],[105.35160250000007,-5.033575799999937],[105.35121630000003,-5.0310769],[105.35251120000004,-5.032644399999981],[105.35398780000008,-5.031667599999935],[105.35730460000008,-5.033507699999973],[105.35848590000006,-5.030463499999939],[105.36202980000007,-5.029282199999955],[105.36425610000003,-5.030395399999975],[105.36432430000008,-5.028123599999958],[105.36571010000006,-5.028964199999962],[105.36632390000005,-5.026626],[105.36466940000008,-5.025960299999952],[105.36292310000005,-5.022150699999941],[105.363042,-5.011928799999964],[105.35288660000003,-5.013848899999971],[105.35409560000005,-5.008838899999944],[105.34445650000004,-5.008718],[105.34391870000007,-5.0072481],[105.33969480000007,-5.008896599999957],[105.33725870000006,-5.012016899999935],[105.33305550000006,-5.011344599999973],[105.33290370000009,-5.0071653],[105.323063,-5.006667799999946],[105.32769480000007,-4.986464199999944],[105.33355740000007,-4.976185],[105.33986110000006,-4.972317199999964],[105.34537420000004,-4.964233799999931],[105.34896510000004,-4.964758899999936],[105.34944980000006,-4.969834099999957],[105.35448550000007,-4.9705528],[105.35641070000008,-4.967741199999978],[105.36155670000005,-4.9729771],[105.37329540000007,-4.973925],[105.37929120000007,-4.972827399999971],[105.38659850000005,-4.967731899999933],[105.40465560000007,-4.971684699999969],[105.41051930000003,-4.970776399999977],[105.41436070000009,-4.967969699999969],[105.41420950000008,-4.964143099999944],[105.40894150000008,-4.956366499999945],[105.40828050000005,-4.941983099999959],[105.40144780000008,-4.933221299999957],[105.39939780000009,-4.928138399999966],[105.40233380000006,-4.921623199999942],[105.42514130000006,-4.902566399999955],[105.427614,-4.897770299999934],[105.42672210000006,-4.8964771],[105.43159610000004,-4.891742799999975],[105.43801140000005,-4.889748499999939],[105.44461790000008,-4.901911499999926],[105.44981170000005,-4.905029099999979],[105.45397510000004,-4.904872499999954],[105.46477330000005,-4.895674],[105.47019190000009,-4.894503199999974],[105.47677190000007,-4.8945076],[105.48538770000005,-4.900004299999978],[105.49257280000006,-4.8987642],[105.49409690000005,-4.894021299999963],[105.50332350000008,-4.890928799999926],[105.50754170000005,-4.8863678],[105.50761770000008,-4.881491799999935],[105.51495010000008,-4.882445399999938],[105.51781810000006,-4.881164199999944],[105.52212550000007,-4.886436599999968],[105.52769,-4.887324799999931],[105.525398,-4.885301499999969],[105.52693040000008,-4.883223099999952],[105.53586430000007,-4.884959399999957],[105.53519760000006,-4.883719799999938],[105.54063590000004,-4.883500599999934],[105.542281,-4.882880299999954],[105.54376370000006,-4.877495099999976],[105.54748810000007,-4.874271599999929],[105.55484620000004,-4.872736799999927],[105.57530060000005,-4.878318699999966],[105.57913840000003,-4.8838404],[105.59026130000007,-4.882277599999952],[105.59318350000007,-4.879226499999959],[105.59426960000008,-4.866850299999953],[105.59971980000006,-4.862611899999933],[105.60124680000007,-4.854939399999978],[105.60524930000008,-4.851878199999931],[105.61005260000007,-4.851114],[105.61480410000007,-4.852267599999948],[105.62535970000005,-4.8592868],[105.62647980000008,-4.855703499999947],[105.63021250000008,-4.852482699999939],[105.63767820000004,-4.851451299999951],[105.63939850000008,-4.837010099999929],[105.63515740000008,-4.832715],[105.63731,-4.826625399999955],[105.646317,-4.815763199999935],[105.65256240000008,-4.8131007],[105.65482970000005,-4.805814699999928],[105.65420160000008,-4.801979699999947],[105.64963830000005,-4.793824499999971],[105.65813340000005,-4.788211099999955],[105.66326350000008,-4.782826],[105.675149,-4.784918399999981],[105.67863280000006,-4.782326799999964],[105.67759190000004,-4.774127],[105.68153250000006,-4.762900099999968],[105.68206360000005,-4.747275899999977],[105.68391480000008,-4.745984899999939],[105.69051820000004,-4.7462244],[105.69880070000005,-4.739273799999978],[105.72056640000005,-4.735241799999926],[105.72620640000008,-4.737854699999957],[105.72878080000004,-4.745942899999932],[105.73711520000006,-4.745860299999947],[105.74332760000004,-4.739440199999933],[105.74714190000009,-4.731660599999941],[105.75815050000006,-4.731113],[105.76013310000008,-4.736286799999959],[105.76221670000007,-4.737904399999934],[105.76980460000004,-4.735761199999956],[105.77365310000005,-4.741101899999933],[105.77814710000007,-4.742272599999978],[105.78111170000005,-4.739213599999971],[105.78394410000004,-4.739232499999957],[105.78857620000008,-4.744035099999962],[105.78858920000005,-4.750052199999971],[105.79466940000003,-4.753791],[105.80048530000005,-4.754414099999963],[105.81234360000008,-4.750713099999928],[105.81525150000004,-4.743386699999974],[105.81214520000009,-4.740013],[105.80936010000005,-4.7393269],[105.807217,-4.736192299999971],[105.81202260000003,-4.733435499999928],[105.81238130000008,-4.731245199999933],[105.80887760000007,-4.725612399999932],[105.80471350000005,-4.723437299999944],[105.80690540000006,-4.719689],[105.80702770000005,-4.714949699999977],[105.810021,-4.705980199999942],[105.81291760000005,-4.702808499999946],[105.81762650000007,-4.701407],[105.81903910000005,-4.699086299999976],[105.81779160000008,-4.694403199999954],[105.81491160000007,-4.696841],[105.817744,-4.680602],[105.81719640000006,-4.678902499999936],[105.81353320000005,-4.677089799999976],[105.81753630000009,-4.662550199999941],[105.81661260000004,-4.649592199999972],[105.81189780000005,-4.652939799999956],[105.80423980000006,-4.653568399999926],[105.79987580000005,-4.644472699999938],[105.79111730000005,-4.635699],[105.78137920000006,-4.6330996],[105.78199930000005,-4.625179799999955],[105.77917590000004,-4.622478],[105.78338840000004,-4.613649399999929],[105.77960470000005,-4.612337699999955],[105.778848,-4.605274799999961],[105.78331270000007,-4.603307299999926],[105.78511290000006,-4.596419399999945],[105.79312890000006,-4.588518099999931],[105.79736660000003,-4.590863899999931],[105.80121690000004,-4.591164],[105.80494590000006,-4.584918199999947],[105.80251240000007,-4.579966899999931],[105.79623150000003,-4.581158799999969],[105.79401810000007,-4.579872399999942],[105.79428610000008,-4.573396],[105.79991120000005,-4.570268099999964],[105.79993640000004,-4.561212499999954],[105.79294920000007,-4.551702899999952],[105.78951870000009,-4.549508399999979],[105.78694580000007,-4.549684899999932],[105.78351520000007,-4.556672099999957],[105.77100390000004,-4.552585699999952],[105.76760170000006,-4.544488699999931],[105.76860440000007,-4.540875299999925],[105.77395830000006,-4.536410499999931],[105.77361270000006,-4.532392],[105.77117730000003,-4.529259399999944],[105.76601260000007,-4.528654],[105.76162350000004,-4.532002499999976],[105.75937220000009,-4.532153899999969],[105.75653450000004,-4.529902599999957],[105.75411290000005,-4.522354199999938],[105.74894820000009,-4.520973099999935],[105.74499830000008,-4.522855199999981],[105.745211,-4.529820399999949],[105.73750260000008,-4.535634899999934],[105.72866770000007,-4.536713199999951],[105.72670020000004,-4.529694499999948],[105.72373,-4.527727],[105.71981390000008,-4.531113399999981],[105.71324920000006,-4.531037699999956],[105.70791420000006,-4.527632399999959],[105.70660890000005,-4.518097499999953],[105.69325250000009,-4.512440899999945],[105.693366,-4.5092248],[105.69784970000006,-4.506481599999972],[105.69871990000007,-4.504514099999938],[105.69807670000006,-4.4967387],[105.69624160000006,-4.493598199999951],[105.69372540000006,-4.490855099999976],[105.68141680000008,-4.485085399999946],[105.67424940000006,-4.486495599999955],[105.67416910000009,-4.494230099999925],[105.66969890000007,-4.500448899999981],[105.66092080000004,-4.500619699999959],[105.65848050000005,-4.506538399999954],[105.65464010000005,-4.509092399999929],[105.64610790000006,-4.508941],[105.64139720000009,-4.501468299999942],[105.64177560000007,-4.498554799999965],[105.64548360000003,-4.495527899999956],[105.64659980000005,-4.486844399999939],[105.64332690000003,-4.481149899999934],[105.638673,-4.482776899999976],[105.63307310000005,-4.482095899999933],[105.627757,-4.486976799999979],[105.62711380000007,-4.500881799999945],[105.62083290000004,-4.517757],[105.61216830000006,-4.518267799999933],[105.60764680000005,-4.521654199999944],[105.603201,-4.521956899999964],[105.59769570000009,-4.514219299999979],[105.58922030000008,-4.514540899999929],[105.585342,-4.518759699999976],[105.58467990000008,-4.530924199999959],[105.58341240000004,-4.534045699999979],[105.58127460000009,-4.535294299999975],[105.57728280000003,-4.534632199999976],[105.57440720000005,-4.531813399999976],[105.57338560000005,-4.521616399999971],[105.57141810000007,-4.519232599999953],[105.56158050000005,-4.517113799999947],[105.55195110000005,-4.520538],[105.53430020000008,-4.520632599999942],[105.53384620000008,-4.518646199999978],[105.53681640000008,-4.513670599999955],[105.53520830000008,-4.509319399999981],[105.531103,-4.507219499999962],[105.52414110000007,-4.507257299999935],[105.52151140000007,-4.498119699999961],[105.51958170000006,-4.496927899999946],[105.51432240000008,-4.497249499999953],[105.50999010000004,-4.491517199999976],[105.50730370000008,-4.492236099999957],[105.50522420000004,-4.49547],[105.497066,-4.494825],[105.49513630000007,-4.4924223],[105.49254450000006,-4.482736099999954],[105.48919590000008,-4.483284799999979],[105.48756890000004,-4.489338699999962],[105.48272580000008,-4.487522499999955],[105.48238530000003,-4.492081799999937],[105.47822330000008,-4.496830299999942],[105.47372070000006,-4.495770899999968],[105.47508280000005,-4.491268299999945],[105.47247210000006,-4.489944],[105.47122350000006,-4.494049299999972],[105.468783,-4.491533199999935],[105.46501820000009,-4.492384499999957],[105.46358040000007,-4.494673599999942],[105.46630470000008,-4.493746599999952],[105.464375,-4.497038399999951],[105.45669410000005,-4.492138599999976],[105.45591850000005,-4.493746599999952],[105.44905110000008,-4.494768199999953],[105.44487020000008,-4.502297699999929],[105.44159730000007,-4.503111199999978],[105.43694340000008,-4.5017302],[105.43431060000006,-4.506138199999953],[105.427727,-4.510098399999947],[105.42618830000004,-4.506138199999953],[105.42321180000005,-4.510199299999954],[105.42131990000007,-4.508004799999981],[105.41841910000005,-4.508080499999949],[105.41463540000007,-4.511107399999958],[105.41203310000009,-4.518548599999974],[105.40810230000005,-4.517817099999945],[105.41026920000007,-4.511446399999954],[105.40821190000008,-4.513617199999942],[105.39993270000008,-4.510968699999978],[105.39879760000008,-4.513522599999931],[105.39561930000008,-4.515414499999963],[105.39170320000005,-4.515187499999968],[105.38818440000006,-4.517873899999927],[105.38481690000003,-4.515849599999967],[105.38056030000007,-4.517325199999959],[105.37908460000006,-4.516473899999937],[105.37917920000007,-4.518706299999963],[105.37549010000004,-4.521960199999967],[105.36958860000004,-4.521505199999979],[105.36998880000004,-4.525703599999929],[105.36487690000007,-4.528543799999966],[105.36126350000006,-4.536281499999973],[105.35738530000003,-4.538873299999977],[105.35382860000004,-4.538949],[105.35577720000003,-4.543754199999967],[105.35352590000008,-4.550602699999956],[105.35013950000007,-4.549827],[105.35038550000007,-4.548256799999933],[105.34787710000006,-4.5483],[105.34672610000007,-4.551601699999935],[105.34523970000004,-4.550489199999959],[105.34448290000006,-4.551889099999926],[105.34009250000008,-4.552783],[105.33899660000009,-4.558113299999945],[105.33794190000003,-4.558328],[105.33960790000003,-4.560052599999949],[105.33816420000005,-4.563788799999941],[105.33142920000006,-4.567061699999954],[105.32972660000007,-4.5658509],[105.32982120000008,-4.570334499999944],[105.32866720000004,-4.568688599999973],[105.32738070000005,-4.569823799999938],[105.32861040000006,-4.5722642],[105.32809960000009,-4.575593899999944],[105.32664290000008,-4.575480299999981],[105.32671860000005,-4.573437199999944],[105.32503480000008,-4.574231699999928],[105.32346460000008,-4.5725291],[105.32242410000003,-4.577523499999927],[105.31977550000005,-4.576483],[105.31854580000004,-4.578469499999926],[105.31555670000006,-4.577523499999927],[105.31215140000006,-4.579680199999927],[105.31035420000006,-4.592185299999926],[105.304029,-4.594979599999931],[105.30298850000008,-4.598920899999939],[105.304603,-4.600149899999963],[105.30312730000009,-4.601947199999927],[105.30414890000009,-4.604368699999952],[105.29923020000007,-4.604917399999977],[105.29958960000005,-4.608360499999947],[105.296384,-4.607062799999937],[105.29680860000008,-4.610384799999963],[105.29523840000007,-4.611198299999955],[105.29673290000005,-4.612844199999927],[105.29404420000009,-4.613427099999967],[105.29353570000006,-4.616892699999937],[105.29172620000008,-4.616089399999964],[105.29143580000004,-4.613846799999976],[105.28880610000004,-4.613714399999935],[105.28555220000004,-4.615719699999943],[105.28585490000006,-4.617517],[105.28820070000006,-4.617346699999928],[105.28774670000007,-4.619049399999938],[105.28617650000007,-4.6189737],[105.28657380000004,-4.622114199999942],[105.28407650000008,-4.620619599999941],[105.27836320000006,-4.622019599999931],[105.27772,-4.620638499999927],[105.27526170000004,-4.620767299999955],[105.27285790000008,-4.626843799999961],[105.27000380000004,-4.621962499999938],[105.26544390000004,-4.623395],[105.26512590000004,-4.6220092],[105.263263,-4.622395399999959],[105.26260420000006,-4.623586799999941],[105.26436360000008,-4.625576199999955],[105.26145320000006,-4.626684],[105.26023940000005,-4.629170699999975],[105.26377710000008,-4.631440899999973],[105.26129880000008,-4.635924599999953],[105.25498010000007,-4.635338099999956],[105.25066670000007,-4.637634],[105.24723120000004,-4.636374699999976],[105.24593420000008,-4.637983],[105.24713970000005,-4.639312],[105.245256,-4.640275799999927],[105.24285340000006,-4.638743399999953],[105.24056420000005,-4.640843399999937],[105.23447130000005,-4.640224299999943],[105.22827980000005,-4.643065699999966],[105.22663470000003,-4.639104199999963],[105.215739,-4.638649399999963],[105.20888280000008,-4.634277199999929],[105.21261780000003,-4.623081099999979],[105.21390320000006,-4.6154815],[105.21264690000004,-4.612659299999962],[105.21048990000008,-4.6107873],[105.20766290000006,-4.610670499999969],[105.2004,-4.613020799999958],[105.18283090000006,-4.615037799999925],[105.178475,-4.617888599999958],[105.17633170000005,-4.621028299999978],[105.17716090000005,-4.634815199999935],[105.18238440000005,-4.638853799999936],[105.17736880000007,-4.643703399999936],[105.17328510000004,-4.645449099999951],[105.16391920000007,-4.663651899999934],[105.16050530000007,-4.666360399999974],[105.16056290000006,-4.669687299999964],[105.15591950000004,-4.677132699999959],[105.15121140000008,-4.675274699999932],[105.14980350000008,-4.677019599999937],[105.14479880000005,-4.676298199999962],[105.14263550000004,-4.680520899999976],[105.14088730000009,-4.6787438],[105.13830940000008,-4.679694899999959],[105.13980760000004,-4.683078599999931],[105.13762060000005,-4.685091],[105.14182610000006,-4.690623099999925],[105.14101040000008,-4.696693599999946],[105.14300930000007,-4.704744699999935],[105.13819150000006,-4.715140299999973],[105.12699060000006,-4.727344699999946],[105.12333950000004,-4.730848099999946],[105.12475770000003,-4.739053199999944],[105.12014370000009,-4.7505161],[105.12343220000008,-4.760222599999963],[105.12322530000006,-4.764782199999956],[105.10680750000006,-4.798311799999965],[105.09909020000003,-4.811973399999943],[105.09126070000008,-4.820147099999929],[105.08560570000009,-4.833100699999932],[105.06754830000006,-4.864043599999945],[105.06043610000006,-4.868424],[105.058829,-4.8708625],[105.05327360000007,-4.872629899999936],[105.05714470000004,-4.894884399999967],[105.05208470000008,-4.8986364],[105.05246760000006,-4.9267896],[105.05144080000008,-4.926216799999963],[105.04970130000004,-4.931033199999945],[105.04839060000006,-4.930272899999977],[105.04609520000008,-4.933240299999966],[105.04670530000004,-4.9354115],[105.04480840000008,-4.936162499999966],[105.04494380000006,-4.938406],[105.042505,-4.938876599999958],[105.04379220000004,-4.941056799999956],[105.04233320000009,-4.945145899999943],[105.031984,-4.943907099999933],[105.02592980000009,-4.952004099999954],[105.02046880000006,-4.955993799999931],[105.01718510000006,-4.95679],[105.00504580000006,-4.955216099999973],[105.00112090000005,-4.951841699999932],[105.001791,-4.943105399999979],[104.99356060000008,-4.9293125],[104.975754,-4.919736],[104.96777160000005,-4.921322599999939],[104.96612780000004,-4.919005199999958],[104.96763860000004,-4.915395699999976],[104.96581710000004,-4.9129],[104.96311710000003,-4.913504899999964],[104.95991390000006,-4.917457699999943],[104.95759670000007,-4.917980199999931],[104.95589290000004,-4.916117399999962],[104.953871,-4.916276399999958],[104.95259890000005,-4.920501899999977],[104.94937630000004,-4.917178799999931],[104.94702070000005,-4.917586699999958],[104.946715,-4.919070699999963],[104.94419340000007,-4.9187299],[104.94426150000004,-4.920183799999961],[104.942376,-4.919933899999933],[104.94137640000008,-4.921887699999957],[104.93562880000007,-4.919434199999955],[104.93244840000006,-4.919684099999927],[104.93083540000003,-4.922796399999925],[104.92808660000009,-4.923932199999967],[104.92713250000008,-4.9223193],[104.92463170000008,-4.924561799999935],[104.92404290000007,-4.932065099999932],[104.92218010000005,-4.931769799999927],[104.92120320000004,-4.933155599999964],[104.92261170000006,-4.935813499999938],[104.92029450000007,-4.936994799999979],[104.92086240000003,-4.938221599999963],[104.91829540000003,-4.942151699999954],[104.91731850000008,-4.941015799999946],[104.91575590000008,-4.944105399999955],[104.91372910000007,-4.94406],[104.91388810000007,-4.948194599999965],[104.91177540000007,-4.950307299999963],[104.91179810000006,-4.952692699999943],[104.90752720000006,-4.953692199999978],[104.90352890000008,-4.958440199999927],[104.90613170000006,-4.961550299999942],[104.90620960000007,-4.963983299999938],[104.90450580000004,-4.964982799999973],[104.90783380000005,-4.976930299999935],[104.90232240000006,-4.984865799999966],[104.89184960000006,-4.986864899999944],[104.88612560000007,-4.989707199999941],[104.87894760000006,-4.989546],[104.87370420000008,-4.991652399999964],[104.87022690000003,-4.995207],[104.85825670000008,-5.002204199999937],[104.85510910000005,-5.001262799999949],[104.85355740000006,-5.0003942],[104.85452050000004,-4.993927699999972],[104.87515680000007,-4.9792923],[104.87656090000007,-4.976336499999945],[104.87543880000004,-4.972254],[104.87108810000007,-4.970141699999942],[104.86406990000006,-4.971688699999959],[104.85999960000004,-4.970984],[104.84975170000007,-4.978442299999926],[104.82967750000006,-4.988854],[104.82434340000003,-4.989978699999938],[104.820133,-4.988429199999928],[104.81535910000008,-4.9939177],[104.81170960000009,-4.994338899999946],[104.80735730000004,-4.997575299999937],[104.80637380000007,-5.000812599999961],[104.80720720000005,-5.005414],[104.80584290000007,-5.007041899999933],[104.800029,-5.005004699999972],[104.78199850000004,-5.012751799999933],[104.78077140000005,-5.016686599999957],[104.78309310000009,-5.0322565],[104.78226370000004,-5.041428799999949],[104.77940940000008,-5.0418954],[104.778362,-5.037089899999955],[104.776945,-5.037089899999955],[104.77700660000005,-5.038753299999939],[104.77337160000008,-5.038198899999941],[104.76868930000006,-5.033331699999962],[104.76733390000004,-5.035919299999932],[104.76129620000006,-5.037644399999976],[104.75636740000004,-5.043928499999936],[104.75169280000006,-5.046315899999968],[104.75021420000007,-5.045715199999961],[104.74730310000007,-5.0495504],[104.74619420000005,-5.0478869],[104.739396,-5.050428299999965],[104.73537590000007,-5.048037099999931],[104.73319270000007,-5.0497352],[104.73284610000007,-5.051953199999957],[104.729034,-5.050428299999965],[104.72671210000004,-5.052611599999977],[104.72768250000007,-5.054136399999948],[104.72615760000008,-5.058364399999959],[104.72244950000004,-5.058537699999931],[104.722103,-5.063909199999955],[104.71489470000006,-5.0639439],[104.71413220000005,-5.066751],[104.71208760000007,-5.066161799999975],[104.71239950000006,-5.069904599999973],[104.70948840000005,-5.070459099999937],[104.70796360000008,-5.068553099999974],[104.708726,-5.066127199999926],[104.70564170000006,-5.0634934],[104.70435940000004,-5.066023199999961],[104.69728980000008,-5.063770599999941],[104.691641,-5.069419399999958],[104.68786350000005,-5.081791399999929],[104.68280380000004,-5.084494499999948],[104.66745160000005,-5.084321199999977],[104.66360480000009,-5.079608099999973],[104.65946740000004,-5.079138299999954],[104.65595560000008,-5.081048199999941],[104.65158130000003,-5.079939199999956],[104.643472,-5.081356299999925],[104.64028370000005,-5.087039699999934],[104.63663980000007,-5.088896599999941],[104.62842670000003,-5.086003299999959],[104.62245160000003,-5.086696399999937],[104.60739530000006,-5.084371499999975],[104.59916740000006,-5.0775635],[104.597021,-5.077209299999936],[104.59279560000004,-5.072954899999957],[104.59104130000009,-5.068340099999944],[104.58164020000004,-5.061467899999968],[104.58035770000004,-5.057582199999956],[104.57662750000009,-5.064367799999957],[104.56526380000008,-5.070033599999931],[104.55892510000007,-5.0806073],[104.53295030000004,-5.107118],[104.54634280000005,-5.107210299999963],[104.54548720000008,-5.107751499999949],[104.54679790000006,-5.109426],[104.56025160000007,-5.113488199999949],[104.569376,-5.126204499999972],[104.57852530000008,-5.135057899999936],[104.58292670000009,-5.146495399999935],[104.58533050000005,-5.148559599999942],[104.58975050000004,-5.148879099999931],[104.59576080000005,-5.147019399999976],[104.59871130000005,-5.147763099999963],[104.60693890000005,-5.154525899999953],[104.62500150000005,-5.150031699999943],[104.63714420000008,-5.150473],[104.64510690000009,-5.156421],[104.65049370000008,-5.163824],[104.66133960000008,-5.170551399999965],[104.66867670000005,-5.172789799999975],[104.67272840000004,-5.172294299999976],[104.67955960000006,-5.168073199999981],[104.69362980000005,-5.16941],[104.69938870000004,-5.167205399999943],[104.71105210000007,-5.156056599999943],[104.71948270000007,-5.138130299999943],[104.72491260000004,-5.134143199999926],[104.73070450000006,-5.133078199999943],[104.73939330000007,-5.135587699999974],[104.744284,-5.133165199999951],[104.75110970000009,-5.132100399999956],[104.75694590000006,-5.141836699999942],[104.76681380000008,-5.149249599999962],[104.77116790000008,-5.148500299999967],[104.78223820000005,-5.141420799999935],[104.78339110000007,-5.142343899999958],[104.78415720000004,-5.144940499999962],[104.78204390000008,-5.1561846],[104.78534760000008,-5.158366],[104.79229350000008,-5.157852699999978],[104.79454110000006,-5.170991399999934],[104.80131970000008,-5.170959599999946],[104.804322,-5.172800399999971],[104.81132560000003,-5.183339499999931],[104.82883780000009,-5.2010735],[104.86178440000003,-5.214545399999963],[104.867789,-5.221905899999967],[104.86878790000009,-5.232610499999964],[104.88406940000004,-5.251176799999939],[104.88539050000009,-5.249219799999935],[104.897974,-5.243112599999961],[104.89946630000009,-5.245586699999933],[104.90510370000004,-5.248649599999965],[104.91091570000003,-5.254961099999946],[104.91346150000004,-5.267112599999962],[104.91861720000009,-5.265562799999941],[104.92739630000005,-5.265530299999966],[104.93725980000005,-5.260976199999959],[104.94899310000005,-5.260624699999937],[104.94853050000006,-5.258354],[104.96998840000003,-5.243965699999933],[104.97234660000004,-5.244446099999948],[104.97215650000004,-5.249470799999926],[104.98564130000005,-5.242118499999947],[105.00993730000005,-5.238192099999935],[105.02909720000008,-5.223981299999934],[105.03272660000005,-5.220051299999966],[105.03388780000006,-5.215393799999958],[105.03785560000006,-5.209159599999964],[105.041418,-5.198279],[105.05239130000007,-5.183830899999975],[105.05846740000004,-5.171138],[105.06640780000004,-5.167681499999958],[105.07084560000004,-5.161031799999932],[105.07610770000008,-5.159977499999968],[105.07469250000008,-5.1597359],[105.08015910000006,-5.149208599999952],[105.07909750000005,-5.138584299999934],[105.08071810000007,-5.129419199999973],[105.08381340000005,-5.124245],[105.086246,-5.124318599999981],[105.08642130000004,-5.125405099999966],[105.08506760000006,-5.131857599999933],[105.086386,-5.143645],[105.08955650000007,-5.144552799999929],[105.095314,-5.132151799999974],[105.10004090000007,-5.136986899999954],[105.09872410000008,-5.140921499999934],[105.09098330000006,-5.151857299999961],[105.08915590000004,-5.157829499999934],[105.08916920000007,-5.158852499999966],[105.09348240000008,-5.159717699999931],[105.09466790000005,-5.165250699999945],[105.09950240000006,-5.160232599999972],[105.108917,-5.154836699999976],[105.116067,-5.154409599999951],[105.13001240000006,-5.150787],[105.13277320000009,-5.150360599999942],[105.13758760000007,-5.152914799999962],[105.14155210000007,-5.1531978],[105.14388860000008,-5.154687799999977],[105.14367670000007,-5.156888199999969],[105.14765140000009,-5.156377299999974],[105.14709970000007,-5.15133],[105.15015040000009,-5.148291399999948],[105.15345820000005,-5.139241399999946],[105.15715410000007,-5.142060399999934],[105.16192890000008,-5.138351499999942],[105.17079770000004,-5.137771699999973],[105.17701370000003,-5.135679799999934],[105.17745590000004,-5.123793599999942],[105.17964920000009,-5.120778099999939],[105.18436610000003,-5.122200599999928],[105.18551860000008,-5.124741],[105.19323630000008,-5.127394799999934],[105.20590840000006,-5.135128299999963],[105.20855920000008,-5.140208799999925],[105.20764060000005,-5.1491014],[105.21058030000006,-5.154832899999974],[105.21401460000004,-5.156059499999969],[105.22207250000008,-5.153367399999979],[105.21999430000005,-5.156149199999959],[105.22396510000004,-5.161437199999966],[105.23429470000008,-5.1657855],[105.24037280000005,-5.169983199999933],[105.24016580000006,-5.171163599999943],[105.24209540000004,-5.180612499999938],[105.24470730000007,-5.182637],[105.25013680000006,-5.180115399999977],[105.25715650000006,-5.180410699999925],[105.26026880000006,-5.177434699999935],[105.26710680000008,-5.178366099999948],[105.26967770000005,-5.175768699999935],[105.27162890000005,-5.176607199999978],[105.272106,-5.180026899999973],[105.27606530000008,-5.179964799999937],[105.27510430000007,-5.173720099999969],[105.27778530000006,-5.168434599999955],[105.27481330000006,-5.165649599999938],[105.27572080000004,-5.160540799999978],[105.27137890000006,-5.158088799999973],[105.263198,-5.162521],[105.2624,-5.158891199999971],[105.26844790000007,-5.152790099999947],[105.26927530000006,-5.149522699999977],[105.27122960000008,-5.1477068],[105.27508580000006,-5.147035499999959],[105.27511640000006,-5.145196099999964],[105.271082,-5.1409549],[105.27535270000004,-5.137395599999934],[105.27383010000005,-5.132749699999977],[105.27786940000004,-5.1300844],[105.27864960000005,-5.123920699999928],[105.28462530000007,-5.120176899999933],[105.28780280000007,-5.111953599999936],[105.28930790000004,-5.111333899999977],[105.28883360000003,-5.109513799999945],[105.29053120000003,-5.108778699999959],[105.28384820000008,-5.103899599999977],[105.27349980000008,-5.1070415],[105.26897120000007,-5.102507099999968],[105.26949750000006,-5.096827499999961],[105.278397,-5.0927308],[105.28028480000006,-5.088376],[105.28209930000008,-5.0876993],[105.280536,-5.083504099999971],[105.29584110000008,-5.073138099999937],[105.30090320000005,-5.064783099999943],[105.30409990000004,-5.062890599999946],[105.30605650000007,-5.057255899999973],[105.31504710000007,-5.055298],[105.31816410000005,-5.051560799999947],[105.32032570000007,-5.053206599999953]]]},"properties":{"shapeName":"Lampung Tengah","shapeISO":"","shapeID":"22746128B18224709298130","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[106.10880120000007,-5.172039699999971],[106.11019810000005,-5.166246699999931],[106.10781520000006,-5.170273],[106.10793850000005,-5.172450499999968],[106.10880120000007,-5.172039699999971]]],[[[106.111102,-5.156961599999931],[106.110609,-5.153880199999946],[106.10978730000005,-5.156797199999971],[106.111102,-5.156961599999931]]],[[[105.27606530000008,-5.179964799999937],[105.278628,-5.19589],[105.27761810000004,-5.198762699999975],[105.27976880000006,-5.203239199999928],[105.28234920000006,-5.203700799999979],[105.28044710000006,-5.205972799999927],[105.28050510000008,-5.208408799999972],[105.28218710000004,-5.207712799999968],[105.28717530000006,-5.210032899999931],[105.28879930000005,-5.2165871],[105.29575950000009,-5.218907099999967],[105.29691950000006,-5.224765299999945],[105.300787,-5.229198699999927],[105.30830130000004,-5.221219799999972],[105.30747250000007,-5.216570099999956],[105.32613570000007,-5.207738099999972],[105.32862950000003,-5.214860699999974],[105.32486560000007,-5.220273599999928],[105.33199440000004,-5.235070299999961],[105.33488160000007,-5.237235699999928],[105.34679960000005,-5.240530099999944],[105.34907790000005,-5.235756399999957],[105.34709110000006,-5.231951299999935],[105.35718490000005,-5.228052899999966],[105.36123590000005,-5.219919],[105.37020890000008,-5.218097199999931],[105.36847450000005,-5.213394199999925],[105.384631,-5.215268799999933],[105.38484690000007,-5.213418799999943],[105.38842790000007,-5.212110899999971],[105.39287870000004,-5.213305099999957],[105.39678480000003,-5.211235199999976],[105.40221220000006,-5.211993399999926],[105.40308170000009,-5.2138427],[105.40419480000008,-5.212113599999952],[105.42014050000006,-5.211904],[105.41925560000004,-5.218890299999941],[105.39863220000007,-5.218277199999932],[105.39894960000004,-5.2261084],[105.40098060000008,-5.225950499999954],[105.40116260000008,-5.228661199999976],[105.40301090000008,-5.228984699999955],[105.40984970000005,-5.229546299999981],[105.41141740000006,-5.228287399999942],[105.43422520000007,-5.231825599999979],[105.42514110000008,-5.235432299999957],[105.42545340000004,-5.2451696],[105.42847630000006,-5.246149499999945],[105.44267490000004,-5.244614499999955],[105.44457780000005,-5.2462654],[105.44559140000007,-5.245247899999981],[105.44888840000004,-5.246262299999955],[105.45776120000005,-5.243459799999926],[105.455378,-5.278793899999926],[105.45081420000008,-5.279559799999959],[105.44866090000005,-5.282611699999961],[105.43940820000006,-5.286812399999974],[105.43014990000006,-5.283133199999952],[105.41461910000004,-5.280920399999957],[105.41706080000006,-5.313245499999937],[105.42258580000004,-5.307347599999957],[105.46588510000004,-5.307383699999946],[105.46686780000005,-5.299964099999954],[105.46894660000004,-5.300795799999946],[105.47235320000004,-5.298960099999931],[105.47152010000008,-5.296461099999931],[105.47326350000009,-5.293626899999936],[105.47758410000006,-5.2913739],[105.478081,-5.2889572],[105.48492080000005,-5.289199699999926],[105.48449180000006,-5.302366899999981],[105.49455290000009,-5.306275],[105.49455680000005,-5.311190899999929],[105.498094,-5.316450799999927],[105.50354170000008,-5.315447699999936],[105.51195140000004,-5.317246699999941],[105.51970030000007,-5.325494799999944],[105.53078080000006,-5.3406274],[105.53323170000004,-5.348874399999943],[105.52719720000005,-5.361258599999928],[105.52476650000006,-5.362335],[105.52415750000006,-5.375135499999942],[105.52752460000005,-5.384861099999966],[105.526733,-5.387727],[105.52514510000009,-5.388046699999961],[105.52566270000005,-5.399450399999978],[105.52426940000004,-5.399312],[105.52406660000008,-5.406433099999958],[105.52566960000007,-5.407409099999938],[105.52748,-5.406569799999943],[105.52824740000005,-5.407825699999933],[105.52595130000009,-5.410969299999977],[105.52709030000005,-5.414689599999974],[105.530362,-5.416054599999939],[105.53021730000006,-5.418357899999933],[105.53153690000005,-5.417670699999974],[105.53110080000005,-5.4222285],[105.53247340000007,-5.426098599999932],[105.530664,-5.425904199999934],[105.52822280000004,-5.430267699999945],[105.52861740000009,-5.434138699999949],[105.52579160000005,-5.4372267],[105.52795710000004,-5.439176399999951],[105.52565130000005,-5.441780499999936],[105.52594140000008,-5.443514899999968],[105.52889910000005,-5.444162799999958],[105.52752960000004,-5.445176],[105.52775020000007,-5.450090799999941],[105.52342270000008,-5.450094599999943],[105.51816030000003,-5.453424],[105.51498680000009,-5.453499],[105.51650350000006,-5.455882899999949],[105.51675350000005,-5.462720899999965],[105.52120050000008,-5.468147],[105.52130040000009,-5.475412699999936],[105.52510060000009,-5.476533],[105.53106920000005,-5.475412],[105.53150780000004,-5.462408299999936],[105.53320330000008,-5.4622935],[105.532949,-5.459351599999934],[105.53806490000005,-5.453827499999932],[105.54252780000007,-5.457957],[105.54124670000004,-5.451556399999959],[105.56949470000006,-5.448867399999926],[105.57828780000006,-5.4521765],[105.58630920000007,-5.448063299999944],[105.58849170000008,-5.451156799999978],[105.58533960000005,-5.454244699999947],[105.59034020000007,-5.455513499999938],[105.59059620000005,-5.457296499999927],[105.58349850000008,-5.478192799999931],[105.58448130000005,-5.479781499999945],[105.58268240000007,-5.480018399999949],[105.58224460000008,-5.487450899999942],[105.61405480000008,-5.491835599999945],[105.62241960000006,-5.496333599999957],[105.62935980000009,-5.496824699999934],[105.63107270000006,-5.498259],[105.63247270000005,-5.512526299999934],[105.63121160000009,-5.519628099999977],[105.632333,-5.526225699999941],[105.63116650000006,-5.545477199999937],[105.63371810000007,-5.552580599999942],[105.63262250000008,-5.553493599999968],[105.63722310000009,-5.5524019],[105.643834,-5.554445299999941],[105.64743990000005,-5.5560079],[105.64984390000006,-5.559854199999961],[105.65873850000008,-5.5633399],[105.65360720000007,-5.5737451],[105.65729610000005,-5.581489899999951],[105.65705570000006,-5.584254399999963],[105.664508,-5.587379599999963],[105.67220070000008,-5.598077199999977],[105.67304210000003,-5.604207299999928],[105.67171460000009,-5.609479799999974],[105.67793530000006,-5.6097724],[105.68116940000004,-5.6130195],[105.68571950000006,-5.6124112],[105.68675620000005,-5.603929099999959],[105.688366,-5.6041185],[105.689597,-5.597016599999961],[105.70294860000007,-5.598437],[105.70654690000003,-5.600709599999959],[105.70429940000008,-5.608856699999933],[105.70986110000007,-5.609894699999927],[105.72248760000008,-5.615435399999967],[105.724183,-5.612306699999976],[105.72614930000009,-5.613093299999946],[105.72693590000006,-5.6154529],[105.73008210000006,-5.611913499999957],[105.73381820000009,-5.613093299999946],[105.73394190000005,-5.600635199999942],[105.73670480000004,-5.600025099999925],[105.73805170000009,-5.596571399999959],[105.74060750000007,-5.595673499999975],[105.74119460000009,-5.597089499999981],[105.73843170000004,-5.601303],[105.74133270000004,-5.601924599999961],[105.74378480000007,-5.597262199999932],[105.74689310000008,-5.59519],[105.74648730000007,-5.5895432],[105.748689,-5.588196299999936],[105.75104620000008,-5.591097399999967],[105.75187510000006,-5.599645199999941],[105.75405090000004,-5.598842199999979],[105.75423220000005,-5.592055799999969],[105.75622670000007,-5.590993799999978],[105.75744410000004,-5.5923148],[105.75739230000005,-5.602261299999952],[105.75430990000007,-5.6056546],[105.75438760000009,-5.608633399999974],[105.757729,-5.608633399999974],[105.764386,-5.6031679],[105.76511120000004,-5.606328],[105.760138,-5.615419799999927],[105.76464330000005,-5.6187642],[105.76688820000004,-5.618902299999945],[105.77503880000006,-5.612616599999967],[105.77545330000004,-5.615794],[105.77155060000007,-5.619890599999962],[105.77438260000008,-5.621112599999947],[105.77970130000006,-5.616173899999978],[105.78533080000005,-5.616035799999963],[105.78633770000005,-5.613829499999952],[105.78515810000005,-5.608955699999967],[105.78761020000007,-5.609611899999948],[105.79099480000008,-5.614067199999965],[105.79308360000005,-5.613981],[105.79337780000009,-5.611649599999964],[105.79116750000009,-5.607056199999931],[105.79175460000005,-5.6028427],[105.78971690000009,-5.600632399999938],[105.79006390000006,-5.599227599999949],[105.79279070000007,-5.599665399999935],[105.79696960000007,-5.603982499999972],[105.79852380000005,-5.603844299999935],[105.79935260000008,-5.601357699999937],[105.79710780000005,-5.596177199999943],[105.79993980000006,-5.592723499999977],[105.80073360000006,-5.589098699999965],[105.80537610000005,-5.5829826],[105.81675020000006,-5.575983199999939],[105.81642780000004,-5.573865],[105.81983550000007,-5.573865],[105.82020380000006,-5.570181],[105.81486220000005,-5.552544299999965],[105.81465160000005,-5.534707499999968],[105.818663,-5.514978099999951],[105.82414790000007,-5.506791599999929],[105.825294,-5.502289099999928],[105.82398420000004,-5.454316299999959],[105.819236,-5.3799832],[105.81964540000007,-5.365411299999948],[105.82161010000004,-5.3595989],[105.81948160000007,-5.353786499999956],[105.82079150000004,-5.321859199999949],[105.82709510000007,-5.3014749],[105.83208880000007,-5.293779599999937],[105.84002970000006,-5.283628399999941],[105.85509280000008,-5.271430599999974],[105.86319740000005,-5.257677299999955],[105.86094280000003,-5.190432699999974],[105.86214730000006,-5.1501423],[105.85883490000003,-5.121234399999935],[105.85907580000008,-5.1017215],[105.85690770000008,-5.073596499999951],[105.85868720000008,-5.0620205],[105.85919630000006,-5.037943399999961],[105.86545970000009,-4.993858799999941],[105.87413210000005,-4.963686199999927],[105.88123860000007,-4.954411599999958],[105.898222,-4.944113099999925],[105.90201620000005,-4.937066799999968],[105.90105260000007,-4.925142299999948],[105.89436760000007,-4.908761099999936],[105.87955230000006,-4.891235699999925],[105.87286730000005,-4.878468],[105.86660390000009,-4.857810899999947],[105.86317110000005,-4.838960499999928],[105.86130420000006,-4.796983799999964],[105.86305070000009,-4.767895199999941],[105.86612210000004,-4.747479],[105.87184350000007,-4.7243527],[105.87714330000006,-4.711043],[105.88238290000004,-4.702611499999932],[105.882142,-4.6974322],[105.87714330000006,-4.689301799999953],[105.87580080000004,-4.683003799999938],[105.86843550000003,-4.682414899999969],[105.85480510000008,-4.677748599999973],[105.85155090000006,-4.674433099999931],[105.85118260000007,-4.668968699999937],[105.85799780000008,-4.655706599999974],[105.85812060000006,-4.634769699999936],[105.85591020000004,-4.631208599999979],[105.84498130000009,-4.6311472],[105.84227980000009,-4.628629799999942],[105.839087,-4.620770799999946],[105.83577150000008,-4.6198498],[105.83257880000008,-4.621200599999952],[105.82987730000008,-4.6363046],[105.82772380000006,-4.640525199999956],[105.81661260000004,-4.649592199999972],[105.81753630000009,-4.662550199999941],[105.81353320000005,-4.677089799999976],[105.81719640000006,-4.678902499999936],[105.817744,-4.680602],[105.81491160000007,-4.696841],[105.81779160000008,-4.694403199999954],[105.81903910000005,-4.699086299999976],[105.81762650000007,-4.701407],[105.81291760000005,-4.702808499999946],[105.810021,-4.705980199999942],[105.80702770000005,-4.714949699999977],[105.80690540000006,-4.719689],[105.80471350000005,-4.723437299999944],[105.80887760000007,-4.725612399999932],[105.81238130000008,-4.731245199999933],[105.81202260000003,-4.733435499999928],[105.807217,-4.736192299999971],[105.80936010000005,-4.7393269],[105.81214520000009,-4.740013],[105.81525150000004,-4.743386699999974],[105.81234360000008,-4.750713099999928],[105.80048530000005,-4.754414099999963],[105.79466940000003,-4.753791],[105.78858920000005,-4.750052199999971],[105.78857620000008,-4.744035099999962],[105.78394410000004,-4.739232499999957],[105.78111170000005,-4.739213599999971],[105.77814710000007,-4.742272599999978],[105.77365310000005,-4.741101899999933],[105.76980460000004,-4.735761199999956],[105.76221670000007,-4.737904399999934],[105.76013310000008,-4.736286799999959],[105.75815050000006,-4.731113],[105.74714190000009,-4.731660599999941],[105.74332760000004,-4.739440199999933],[105.73711520000006,-4.745860299999947],[105.72878080000004,-4.745942899999932],[105.72620640000008,-4.737854699999957],[105.72056640000005,-4.735241799999926],[105.69880070000005,-4.739273799999978],[105.69051820000004,-4.7462244],[105.68391480000008,-4.745984899999939],[105.68206360000005,-4.747275899999977],[105.68153250000006,-4.762900099999968],[105.67759190000004,-4.774127],[105.67863280000006,-4.782326799999964],[105.675149,-4.784918399999981],[105.66326350000008,-4.782826],[105.65813340000005,-4.788211099999955],[105.64963830000005,-4.793824499999971],[105.65420160000008,-4.801979699999947],[105.65482970000005,-4.805814699999928],[105.65256240000008,-4.8131007],[105.646317,-4.815763199999935],[105.63731,-4.826625399999955],[105.63515740000008,-4.832715],[105.63939850000008,-4.837010099999929],[105.63767820000004,-4.851451299999951],[105.63021250000008,-4.852482699999939],[105.62647980000008,-4.855703499999947],[105.62535970000005,-4.8592868],[105.61480410000007,-4.852267599999948],[105.61005260000007,-4.851114],[105.60524930000008,-4.851878199999931],[105.60124680000007,-4.854939399999978],[105.59971980000006,-4.862611899999933],[105.59426960000008,-4.866850299999953],[105.59318350000007,-4.879226499999959],[105.59026130000007,-4.882277599999952],[105.57913840000003,-4.8838404],[105.57530060000005,-4.878318699999966],[105.55484620000004,-4.872736799999927],[105.54748810000007,-4.874271599999929],[105.54376370000006,-4.877495099999976],[105.542281,-4.882880299999954],[105.54063590000004,-4.883500599999934],[105.53519760000006,-4.883719799999938],[105.53586430000007,-4.884959399999957],[105.52693040000008,-4.883223099999952],[105.525398,-4.885301499999969],[105.52769,-4.887324799999931],[105.52212550000007,-4.886436599999968],[105.51781810000006,-4.881164199999944],[105.51495010000008,-4.882445399999938],[105.50761770000008,-4.881491799999935],[105.50754170000005,-4.8863678],[105.50332350000008,-4.890928799999926],[105.49409690000005,-4.894021299999963],[105.49257280000006,-4.8987642],[105.48538770000005,-4.900004299999978],[105.47677190000007,-4.8945076],[105.47019190000009,-4.894503199999974],[105.46477330000005,-4.895674],[105.45397510000004,-4.904872499999954],[105.44981170000005,-4.905029099999979],[105.44461790000008,-4.901911499999926],[105.43801140000005,-4.889748499999939],[105.43159610000004,-4.891742799999975],[105.42672210000006,-4.8964771],[105.427614,-4.897770299999934],[105.42514130000006,-4.902566399999955],[105.40233380000006,-4.921623199999942],[105.39939780000009,-4.928138399999966],[105.40144780000008,-4.933221299999957],[105.40828050000005,-4.941983099999959],[105.40894150000008,-4.956366499999945],[105.41420950000008,-4.964143099999944],[105.41436070000009,-4.967969699999969],[105.41051930000003,-4.970776399999977],[105.40465560000007,-4.971684699999969],[105.38659850000005,-4.967731899999933],[105.37929120000007,-4.972827399999971],[105.37329540000007,-4.973925],[105.36155670000005,-4.9729771],[105.35641070000008,-4.967741199999978],[105.35448550000007,-4.9705528],[105.34944980000006,-4.969834099999957],[105.34896510000004,-4.964758899999936],[105.34537420000004,-4.964233799999931],[105.33986110000006,-4.972317199999964],[105.33355740000007,-4.976185],[105.32769480000007,-4.986464199999944],[105.323063,-5.006667799999946],[105.33290370000009,-5.0071653],[105.33305550000006,-5.011344599999973],[105.33725870000006,-5.012016899999935],[105.33969480000007,-5.008896599999957],[105.34391870000007,-5.0072481],[105.34445650000004,-5.008718],[105.35409560000005,-5.008838899999944],[105.35288660000003,-5.013848899999971],[105.363042,-5.011928799999964],[105.36292310000005,-5.022150699999941],[105.36466940000008,-5.025960299999952],[105.36632390000005,-5.026626],[105.36571010000006,-5.028964199999962],[105.36432430000008,-5.028123599999958],[105.36425610000003,-5.030395399999975],[105.36202980000007,-5.029282199999955],[105.35848590000006,-5.030463499999939],[105.35730460000008,-5.033507699999973],[105.35398780000008,-5.031667599999935],[105.35251120000004,-5.032644399999981],[105.35121630000003,-5.0310769],[105.35160250000007,-5.033575799999937],[105.34953520000005,-5.034189199999958],[105.35044390000007,-5.036392799999931],[105.34849020000007,-5.035938499999929],[105.34225220000008,-5.043785299999968],[105.33963830000005,-5.043537],[105.32902260000009,-5.047637099999974],[105.32858360000006,-5.0498989],[105.32032570000007,-5.053206599999953],[105.32119780000005,-5.056066699999974],[105.31863320000008,-5.060478499999931],[105.31209530000007,-5.064959899999963],[105.31080330000003,-5.068203199999971],[105.31458550000008,-5.0704464],[105.31647790000005,-5.069620799999939],[105.31494150000009,-5.073526199999947],[105.31628860000006,-5.0756466],[105.32321530000007,-5.074459299999944],[105.32493960000005,-5.070918099999972],[105.32633410000005,-5.071688699999925],[105.33027550000008,-5.070337],[105.33051630000006,-5.071252799999968],[105.33123680000006,-5.070095399999957],[105.33585280000005,-5.071876699999962],[105.34453960000008,-5.070686599999931],[105.34642030000003,-5.071524699999941],[105.34659330000005,-5.069605399999944],[105.34818090000005,-5.069582799999978],[105.34722360000006,-5.068950799999925],[105.34852760000007,-5.067074499999933],[105.34730930000006,-5.066399099999956],[105.35072330000008,-5.065350399999943],[105.35035260000006,-5.063475],[105.35200570000006,-5.063844899999935],[105.35346950000007,-5.062214099999949],[105.35877310000006,-5.067240099999935],[105.35179390000008,-5.074373599999944],[105.349257,-5.079085699999951],[105.33364470000004,-5.088388],[105.33212240000006,-5.090935099999967],[105.33335650000004,-5.092901099999949],[105.33702560000006,-5.093502299999955],[105.33613820000005,-5.095199399999956],[105.34386330000007,-5.098372599999948],[105.34807840000008,-5.103519499999948],[105.34347520000006,-5.107645699999978],[105.33953880000007,-5.106537799999955],[105.33654870000004,-5.111965699999928],[105.33388370000006,-5.111679399999957],[105.328849,-5.118693199999939],[105.33076530000005,-5.120635399999969],[105.33114270000004,-5.124220699999967],[105.32698180000006,-5.12419],[105.32540410000007,-5.128068399999961],[105.323501,-5.128443],[105.32538490000007,-5.1309105],[105.32422740000004,-5.132944],[105.32480850000007,-5.136501099999975],[105.32767010000003,-5.139712599999939],[105.33071250000006,-5.138996899999938],[105.33012720000005,-5.143414099999973],[105.33247010000008,-5.150204699999961],[105.331862,-5.151773899999966],[105.33367850000008,-5.152443499999947],[105.33277630000003,-5.155737],[105.33028880000006,-5.156031699999971],[105.32654590000004,-5.160445799999934],[105.33095990000004,-5.168134899999927],[105.32541440000006,-5.1716786],[105.32618230000008,-5.174272299999927],[105.32465040000005,-5.176867199999947],[105.32033580000007,-5.172449799999981],[105.31851540000008,-5.173219399999937],[105.31803760000008,-5.175909799999943],[105.31123580000008,-5.180428799999959],[105.30241860000007,-5.179088],[105.30174970000007,-5.1830275],[105.29887470000006,-5.182932799999946],[105.29580910000004,-5.185144099999945],[105.29465920000007,-5.185336799999959],[105.29159070000009,-5.181302899999935],[105.28536170000007,-5.181594],[105.28229350000004,-5.177848299999937],[105.27606530000008,-5.179964799999937]]]]},"properties":{"shapeName":"Lampung Timur","shapeISO":"","shapeID":"22746128B133414535703","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[104.58035770000004,-5.057582199999956],[104.58164020000004,-5.061467899999968],[104.59104130000009,-5.068340099999944],[104.59279560000004,-5.072954899999957],[104.597021,-5.077209299999936],[104.59916740000006,-5.0775635],[104.60739530000006,-5.084371499999975],[104.62245160000003,-5.086696399999937],[104.62842670000003,-5.086003299999959],[104.63663980000007,-5.088896599999941],[104.64028370000005,-5.087039699999934],[104.643472,-5.081356299999925],[104.65158130000003,-5.079939199999956],[104.65595560000008,-5.081048199999941],[104.65946740000004,-5.079138299999954],[104.66360480000009,-5.079608099999973],[104.66745160000005,-5.084321199999977],[104.68280380000004,-5.084494499999948],[104.68786350000005,-5.081791399999929],[104.691641,-5.069419399999958],[104.69728980000008,-5.063770599999941],[104.70435940000004,-5.066023199999961],[104.70564170000006,-5.0634934],[104.708726,-5.066127199999926],[104.70796360000008,-5.068553099999974],[104.70948840000005,-5.070459099999937],[104.71239950000006,-5.069904599999973],[104.71208760000007,-5.066161799999975],[104.71413220000005,-5.066751],[104.71489470000006,-5.0639439],[104.722103,-5.063909199999955],[104.72244950000004,-5.058537699999931],[104.72615760000008,-5.058364399999959],[104.72768250000007,-5.054136399999948],[104.72671210000004,-5.052611599999977],[104.729034,-5.050428299999965],[104.73284610000007,-5.051953199999957],[104.73319270000007,-5.0497352],[104.73537590000007,-5.048037099999931],[104.739396,-5.050428299999965],[104.74619420000005,-5.0478869],[104.74730310000007,-5.0495504],[104.75021420000007,-5.045715199999961],[104.75169280000006,-5.046315899999968],[104.75636740000004,-5.043928499999936],[104.76129620000006,-5.037644399999976],[104.76733390000004,-5.035919299999932],[104.76868930000006,-5.033331699999962],[104.77337160000008,-5.038198899999941],[104.77700660000005,-5.038753299999939],[104.776945,-5.037089899999955],[104.778362,-5.037089899999955],[104.77940940000008,-5.0418954],[104.78226370000004,-5.041428799999949],[104.78309310000009,-5.0322565],[104.78077140000005,-5.016686599999957],[104.78199850000004,-5.012751799999933],[104.800029,-5.005004699999972],[104.80584290000007,-5.007041899999933],[104.80720720000005,-5.005414],[104.80637380000007,-5.000812599999961],[104.80735730000004,-4.997575299999937],[104.81170960000009,-4.994338899999946],[104.81535910000008,-4.9939177],[104.820133,-4.988429199999928],[104.82434340000003,-4.989978699999938],[104.82967750000006,-4.988854],[104.84975170000007,-4.978442299999926],[104.85999960000004,-4.970984],[104.86406990000006,-4.971688699999959],[104.87108810000007,-4.970141699999942],[104.87543880000004,-4.972254],[104.87656090000007,-4.976336499999945],[104.87515680000007,-4.9792923],[104.85452050000004,-4.993927699999972],[104.85355740000006,-5.0003942],[104.85510910000005,-5.001262799999949],[104.85825670000008,-5.002204199999937],[104.87022690000003,-4.995207],[104.87370420000008,-4.991652399999964],[104.87894760000006,-4.989546],[104.88612560000007,-4.989707199999941],[104.89184960000006,-4.986864899999944],[104.90232240000006,-4.984865799999966],[104.90783380000005,-4.976930299999935],[104.90450580000004,-4.964982799999973],[104.90620960000007,-4.963983299999938],[104.90613170000006,-4.961550299999942],[104.90352890000008,-4.958440199999927],[104.90752720000006,-4.953692199999978],[104.91179810000006,-4.952692699999943],[104.91177540000007,-4.950307299999963],[104.91388810000007,-4.948194599999965],[104.91372910000007,-4.94406],[104.91575590000008,-4.944105399999955],[104.91731850000008,-4.941015799999946],[104.91829540000003,-4.942151699999954],[104.92086240000003,-4.938221599999963],[104.92029450000007,-4.936994799999979],[104.92261170000006,-4.935813499999938],[104.92120320000004,-4.933155599999964],[104.92218010000005,-4.931769799999927],[104.92404290000007,-4.932065099999932],[104.92463170000008,-4.924561799999935],[104.92713250000008,-4.9223193],[104.92808660000009,-4.923932199999967],[104.93083540000003,-4.922796399999925],[104.93244840000006,-4.919684099999927],[104.93562880000007,-4.919434199999955],[104.94137640000008,-4.921887699999957],[104.942376,-4.919933899999933],[104.94426150000004,-4.920183799999961],[104.94419340000007,-4.9187299],[104.946715,-4.919070699999963],[104.94702070000005,-4.917586699999958],[104.94937630000004,-4.917178799999931],[104.95259890000005,-4.920501899999977],[104.953871,-4.916276399999958],[104.95589290000004,-4.916117399999962],[104.95759670000007,-4.917980199999931],[104.95991390000006,-4.917457699999943],[104.96311710000003,-4.913504899999964],[104.96581710000004,-4.9129],[104.96763860000004,-4.915395699999976],[104.96612780000004,-4.919005199999958],[104.96777160000005,-4.921322599999939],[104.975754,-4.919736],[104.99356060000008,-4.9293125],[105.001791,-4.943105399999979],[105.00112090000005,-4.951841699999932],[105.00504580000006,-4.955216099999973],[105.01718510000006,-4.95679],[105.02046880000006,-4.955993799999931],[105.02592980000009,-4.952004099999954],[105.031984,-4.943907099999933],[105.04233320000009,-4.945145899999943],[105.04379220000004,-4.941056799999956],[105.042505,-4.938876599999958],[105.04494380000006,-4.938406],[105.04480840000008,-4.936162499999966],[105.04670530000004,-4.9354115],[105.04609520000008,-4.933240299999966],[105.04839060000006,-4.930272899999977],[105.04970130000004,-4.931033199999945],[105.05144080000008,-4.926216799999963],[105.05246760000006,-4.9267896],[105.05208470000008,-4.8986364],[105.05714470000004,-4.894884399999967],[105.05327360000007,-4.872629899999936],[105.058829,-4.8708625],[105.06043610000006,-4.868424],[105.06754830000006,-4.864043599999945],[105.08560570000009,-4.833100699999932],[105.09126070000008,-4.820147099999929],[105.09909020000003,-4.811973399999943],[105.10680750000006,-4.798311799999965],[105.12322530000006,-4.764782199999956],[105.12343220000008,-4.760222599999963],[105.12014370000009,-4.7505161],[105.12475770000003,-4.739053199999944],[105.12333950000004,-4.730848099999946],[105.12699060000006,-4.727344699999946],[105.12121250000007,-4.721433699999977],[105.11966580000006,-4.722403899999961],[105.11966540000009,-4.720076099999972],[105.11734520000005,-4.720270399999947],[105.10168250000004,-4.713095299999964],[105.07950610000006,-4.711294399999929],[105.07819790000008,-4.707422899999926],[105.07524330000007,-4.706712099999947],[105.06931470000006,-4.708552699999927],[105.06591070000007,-4.6966104],[105.05392720000003,-4.692617699999971],[105.03498890000009,-4.668294099999969],[105.02741290000006,-4.667842599999972],[105.009065,-4.659089499999936],[105.00393250000008,-4.662318399999947],[104.99946670000008,-4.659912199999951],[104.99814580000009,-4.651107399999944],[104.99894620000003,-4.630659499999979],[104.99499050000009,-4.614625799999942],[104.997689,-4.606845299999975],[104.99011150000007,-4.59834],[104.98966160000003,-4.594683],[104.985513,-4.592475299999933],[104.98899610000007,-4.590212399999928],[104.98910560000007,-4.587254799999926],[104.992159,-4.5877044],[104.99451970000007,-4.584614099999953],[104.98889220000007,-4.584823099999937],[104.993957,-4.581948699999941],[104.99234170000005,-4.581007899999975],[104.98843370000009,-4.582858],[104.98864750000007,-4.579860599999961],[104.99152380000004,-4.577571499999976],[104.98761280000008,-4.574227899999926],[104.98575830000004,-4.5587102],[104.97512370000004,-4.550617299999942],[104.97224950000003,-4.544631],[104.97099810000009,-4.533784199999957],[104.96731060000008,-4.527881],[104.96380410000006,-4.529979399999945],[104.96080040000004,-4.529497099999958],[104.95911820000003,-4.5311843],[104.952679,-4.528631299999972],[104.94362710000007,-4.530605399999956],[104.94169460000006,-4.533334899999943],[104.93678570000009,-4.532349199999942],[104.93147240000008,-4.5339715],[104.91345220000005,-4.545676899999933],[104.91206560000006,-4.5499656],[104.90652090000003,-4.552746799999966],[104.90109270000005,-4.548109499999953],[104.88677060000003,-4.543702699999926],[104.88515380000007,-4.541847799999971],[104.87422560000005,-4.543803499999967],[104.86535570000007,-4.551667599999973],[104.86053050000004,-4.560105499999963],[104.84988540000006,-4.563516099999958],[104.84844810000004,-4.565368199999966],[104.843932,-4.566653699999961],[104.84377780000005,-4.5680944],[104.84059590000004,-4.569277199999931],[104.83618340000004,-4.566188799999964],[104.82815920000007,-4.564491399999952],[104.82328360000008,-4.566857199999959],[104.82194850000008,-4.570098599999938],[104.822349,-4.583302799999956],[104.81398390000004,-4.584484099999941],[104.78295130000004,-4.585216899999978],[104.77961610000006,-4.583775099999968],[104.77451780000007,-4.575880299999938],[104.77005280000009,-4.577371099999937],[104.76974450000006,-4.578606],[104.76589580000007,-4.578244499999926],[104.76492170000006,-4.575414099999932],[104.76184280000007,-4.575155799999948],[104.74996520000008,-4.563601399999925],[104.74589180000004,-4.562962],[104.74175980000007,-4.560089499999947],[104.73430240000005,-4.558828499999947],[104.73086740000008,-4.556505399999935],[104.72171490000005,-4.5567742],[104.71715950000004,-4.554450599999939],[104.69548110000005,-4.555386899999974],[104.69834210000005,-4.556765799999937],[104.69620650000007,-4.562117199999932],[104.694814,-4.5623668],[104.70109730000007,-4.56662],[104.702006,-4.572712299999978],[104.69988020000005,-4.58073],[104.69875540000004,-4.5821252],[104.69588240000007,-4.581927199999939],[104.69591440000005,-4.585946399999955],[104.69427190000005,-4.587520299999937],[104.694663,-4.591009699999972],[104.69881680000009,-4.596640699999966],[104.69461850000005,-4.597365899999943],[104.69226160000005,-4.600406799999973],[104.692349,-4.603941099999929],[104.688923,-4.602919699999973],[104.68779780000006,-4.605066399999941],[104.68495260000009,-4.605483599999957],[104.67920430000004,-4.609811199999967],[104.67580760000004,-4.608346399999959],[104.67396920000004,-4.609115],[104.67412830000006,-4.612443199999973],[104.66928530000007,-4.614293599999939],[104.66882010000006,-4.61687],[104.67097890000008,-4.618069899999966],[104.66903020000007,-4.620387799999946],[104.665943,-4.619992699999955],[104.66368450000004,-4.622038399999951],[104.66054330000009,-4.622484199999974],[104.65979240000007,-4.625346799999932],[104.65752260000005,-4.624294599999928],[104.65092930000009,-4.62998],[104.64480250000008,-4.632489199999952],[104.64168970000009,-4.637273799999946],[104.643954,-4.643101399999978],[104.63946860000004,-4.6466354],[104.63675,-4.6511877],[104.63864120000005,-4.652298099999939],[104.63808630000005,-4.655554399999971],[104.63613720000006,-4.657136399999956],[104.63089010000004,-4.657366299999978],[104.63035,-4.659287699999936],[104.627173,-4.659590199999968],[104.62480810000005,-4.663405299999965],[104.62039330000005,-4.666668],[104.61430180000008,-4.6695313],[104.61031590000005,-4.6764237],[104.61078120000008,-4.679834699999958],[104.60610540000005,-4.681641499999955],[104.60548980000004,-4.686029699999949],[104.60977720000005,-4.690999599999941],[104.62186120000007,-4.697149599999932],[104.62794830000007,-4.697658],[104.63077930000009,-4.702148099999931],[104.63002980000005,-4.709105],[104.62853750000005,-4.711273699999936],[104.61772990000009,-4.717131399999971],[104.62505480000004,-4.731499099999951],[104.62863860000004,-4.731668299999967],[104.63093820000006,-4.733652699999936],[104.63907890000007,-4.749122299999954],[104.64514220000007,-4.752828199999954],[104.64269990000008,-4.759754899999962],[104.63762720000005,-4.765987699999926],[104.637626,-4.7689109],[104.64182260000007,-4.773941],[104.64053330000007,-4.780781299999944],[104.63847040000007,-4.784794699999964],[104.63648770000003,-4.784325899999942],[104.632006,-4.794753599999979],[104.62889330000007,-4.798588399999971],[104.62361540000006,-4.7999134],[104.62340340000009,-4.801272499999925],[104.62618450000008,-4.803413099999943],[104.62405840000008,-4.808110799999952],[104.62167620000008,-4.8211462],[104.620157,-4.824262099999942],[104.61245580000008,-4.831302],[104.61024850000007,-4.831199099999935],[104.60776450000009,-4.827128699999946],[104.60402610000006,-4.825143599999933],[104.56229790000003,-4.830461799999966],[104.55071930000008,-4.830198499999938],[104.55170960000004,-4.832212499999969],[104.55033080000004,-4.836218499999973],[104.55570210000008,-4.840031899999929],[104.555928,-4.844811],[104.54775850000004,-4.856870299999969],[104.55008420000007,-4.858119899999963],[104.54594830000008,-4.862009299999954],[104.54755130000007,-4.865886],[104.54042960000004,-4.874084799999935],[104.53549610000005,-4.891151899999954],[104.52942340000004,-4.896847099999945],[104.52833740000005,-4.903415],[104.51788930000004,-4.922736],[104.51356250000003,-4.924079499999948],[104.50933,-4.930874899999935],[104.51128760000006,-4.935357799999963],[104.51079360000006,-4.938707399999942],[104.50741170000003,-4.942337699999939],[104.50777020000004,-4.944998299999952],[104.50609630000008,-4.948445599999957],[104.50089430000008,-4.954988699999944],[104.50163430000003,-4.958707899999979],[104.49691490000004,-4.972469899999965],[104.49814410000005,-4.976104899999939],[104.50146040000004,-4.979235499999959],[104.49938430000009,-4.985815299999956],[104.49989810000005,-4.998238899999933],[104.49656530000004,-5.004188799999952],[104.49909580000008,-5.007944899999927],[104.49897120000008,-5.016077399999972],[104.51276980000006,-5.021723699999939],[104.52775690000004,-5.022811299999944],[104.53450120000008,-5.021088299999974],[104.53588440000004,-5.016059599999949],[104.53766650000006,-5.015400499999942],[104.55258140000007,-5.020449699999972],[104.55889560000008,-5.019739399999935],[104.56511290000009,-5.024863799999935],[104.56814720000006,-5.025119099999927],[104.56954780000007,-5.023690699999975],[104.57300010000006,-5.039062799999954],[104.57275740000006,-5.0432239],[104.57938830000006,-5.053233599999942],[104.58035770000004,-5.057582199999956]]]},"properties":{"shapeName":"Lampung Utara","shapeISO":"","shapeID":"22746128B65118769319831","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[109.14349610000005,0.684618800000067],[109.14893670000004,0.686005400000056],[109.15303040000003,0.683717700000045],[109.16675640000005,0.671496800000057],[109.18117470000004,0.670985100000053],[109.18593060000006,0.666289300000074],[109.19038560000007,0.655453],[109.20366760000007,0.650177900000074],[109.21292360000007,0.642953700000021],[109.229479,0.643254700000057],[109.23501,0.641411],[109.23922410000006,0.637422600000036],[109.24471750000004,0.63508980000006],[109.25006040000005,0.637949400000025],[109.25593010000006,0.644345800000053],[109.260069,0.645248800000047],[109.26300380000004,0.636068100000045],[109.26608910000004,0.632832300000075],[109.27836720000005,0.626312300000052],[109.28979380000004,0.606517300000064],[109.28208870000009,0.588158],[109.27519170000005,0.579536700000062],[109.26484610000006,0.575053600000047],[109.25312110000004,0.562294],[109.24691370000005,0.551948400000072],[109.23829240000003,0.526774100000068],[109.23760270000008,0.517118200000027],[109.22760190000008,0.501255],[109.22346370000008,0.489874800000052],[109.22322930000007,0.468954600000075],[109.22952460000005,0.46891],[109.23056540000005,0.47136990000007],[109.23255220000004,0.470121100000028],[109.23707460000008,0.472864800000025],[109.24142680000006,0.472051100000044],[109.24218370000006,0.469856200000038],[109.24061310000008,0.464974200000029],[109.24403810000007,0.464141600000062],[109.24706570000006,0.461454600000025],[109.24753870000006,0.45420740000003],[109.25313970000008,0.452485400000057],[109.25641330000008,0.454964300000029],[109.26301990000007,0.456081900000072],[109.26924970000005,0.45313040000002],[109.27399060000005,0.448239],[109.27861860000007,0.438268100000073],[109.292766,0.429915100000073],[109.29600180000006,0.425174200000072],[109.29694820000009,0.420145900000023],[109.30127040000008,0.420255],[109.30548630000004,0.413825600000052],[109.311761,0.407928200000072],[109.31399190000008,0.403272400000048],[109.31871730000006,0.391774100000021],[109.321395,0.377913100000058],[109.32228050000003,0.362245900000062],[109.30455170000005,0.360229700000048],[109.29577040000004,0.35517660000005],[109.29126090000005,0.348823500000037],[109.28668560000006,0.346078300000045],[109.26311070000008,0.336855400000047],[109.25400820000004,0.337192500000072],[109.23529750000006,0.341647400000056],[109.23647740000007,0.31999890000003],[109.22212540000004,0.323803700000042],[109.216346,0.321491900000069],[109.20880050000005,0.314718600000049],[109.20398210000008,0.303664600000047],[109.20045290000007,0.290052100000025],[109.21759460000004,0.280472900000063],[109.24582790000005,0.277447900000027],[109.25288630000006,0.272910400000058],[109.25994460000004,0.263835400000062],[109.27305290000004,0.263835400000062],[109.28111960000007,0.266860400000041],[109.32094880000005,0.267364600000064],[109.36178630000006,0.263331300000061],[109.38362560000007,0.255051900000069],[109.39052380000004,0.254256300000065],[109.40564880000005,0.256272900000056],[109.43236970000004,0.256272900000056],[109.44699050000008,0.254760400000066],[109.45782020000007,0.249545800000021],[109.47385840000004,0.246722600000055],[109.485269,0.234514300000058],[109.49441820000004,0.229597200000057],[109.49588970000008,0.22207990000004],[109.49436760000003,0.220364400000051],[109.49129960000005,0.220240100000069],[109.48777550000005,0.214601600000037],[109.48925170000007,0.20636810000002],[109.49295790000008,0.202371],[109.48901930000005,0.192006100000071],[109.49076060000004,0.185040900000047],[109.48856320000004,0.185828700000059],[109.489807,0.182429],[109.48872910000006,0.180148700000075],[109.49009720000004,0.178200100000026],[109.48699390000007,0.175598700000023],[109.48780460000006,0.166497400000026],[109.49154270000008,0.162170900000035],[109.492408,0.164455300000043],[109.49493470000004,0.164905300000044],[109.49541930000004,0.160717200000022],[109.49984960000006,0.156598400000064],[109.50147640000006,0.149918200000059],[109.49960730000004,0.146145500000046],[109.50701430000004,0.145453300000042],[109.50739510000005,0.139119200000039],[109.50178790000007,0.14001920000004],[109.50126870000008,0.138842300000022],[109.50372620000007,0.136038800000051],[109.50666820000004,0.135831100000075],[109.50732580000005,0.131746900000053],[109.51030250000008,0.127662600000065],[109.507845,0.124097600000027],[109.51134090000005,0.117902],[109.50791430000004,0.113090900000032],[109.507004,0.108132],[109.50393390000005,0.106203100000073],[109.50081880000005,0.098865400000022],[109.50057650000008,0.096927100000073],[109.50310320000006,0.094815800000049],[109.503207,0.092600600000026],[109.50106110000007,0.091527600000063],[109.49638840000006,0.092739],[109.49535010000005,0.090247],[109.50009190000009,0.086958800000048],[109.50149070000003,0.069086200000072],[109.50801070000006,0.063346100000047],[109.52113860000009,0.042041100000063],[109.52200640000007,0.038263200000074],[109.52089290000004,0.034110700000042],[109.51395090000005,0.024619400000063],[109.50849510000006,0.00846910000007],[109.507471,0.00317780000006],[109.51050790000005,-0.009337199999948],[109.509438,-0.012691299999972],[109.50082480000009,-0.023960899999963],[109.50135090000003,-0.029455699999971],[109.50289940000005,-0.031493299999966],[109.513361,-0.024545899999964],[109.525493,-0.024306699999954],[109.53108070000008,-0.016643899999963],[109.54855980000008,-0.0102948],[109.54915390000008,-0.007183],[109.54344780000008,-0.002509399999951],[109.54317290000006,0.000533800000028],[109.54585540000005,0.000857800000063],[109.55022720000005,-0.001312499999926],[109.55679970000006,0.002262100000053],[109.56205730000005,0.001938],[109.56247530000007,-0.000115599999958],[109.55747910000008,-0.005025699999976],[109.56211870000004,-0.013649099999952],[109.56532820000007,-0.009457099999963],[109.56758710000008,-0.002751699999976],[109.58086150000008,-0.004221199999961],[109.58113230000004,-0.000881299999946],[109.57030020000008,0.007303],[109.57923670000008,0.015336800000057],[109.58218540000007,0.014825300000041],[109.58618730000006,0.009168500000044],[109.587421,0.009198600000047],[109.589136,0.013110200000028],[109.58916610000006,0.021896200000072],[109.58733070000005,0.026048500000059],[109.58477310000006,0.027763600000071],[109.58062080000008,0.021956400000022],[109.57895890000009,0.021934],[109.57694990000005,0.028485800000055],[109.56777270000003,0.032006200000069],[109.56783290000004,0.03441330000004],[109.57240650000006,0.038565600000027],[109.58212530000009,0.034714200000053],[109.58414120000003,0.035616900000036],[109.58534480000009,0.040401100000054],[109.59205470000006,0.039558600000021],[109.59383,0.035436400000037],[109.59235560000008,0.025767700000074],[109.59352910000007,0.024363500000049],[109.60451160000008,0.035647],[109.61284630000006,0.019549300000051],[109.61450120000006,0.020090900000071],[109.61489240000009,0.022317500000042],[109.61152240000007,0.032577900000035],[109.61448020000006,0.035872300000051],[109.61666760000008,0.035526600000026],[109.614411,0.030110600000057],[109.61527250000006,0.026586],[109.62090680000006,0.023633700000062],[109.62460120000009,0.023904],[109.62721430000005,0.025751200000059],[109.62631320000008,0.033905900000036],[109.62789010000006,0.037149700000043],[109.63059330000004,0.036654100000021],[109.63392730000004,0.032419100000027],[109.63547830000005,0.033408700000052],[109.63552370000008,0.042244500000038],[109.62905860000006,0.046117600000059],[109.63329710000005,0.049894400000028],[109.64526080000007,0.051864],[109.64587010000008,0.050677600000029],[109.64260770000004,0.044088100000067],[109.64338860000004,0.040414700000042],[109.6529,0.036254400000075],[109.65710570000005,0.036693500000069],[109.65675290000007,0.039835700000026],[109.65022590000007,0.043809500000066],[109.649579,0.051133600000071],[109.65218720000007,0.051326],[109.65912260000005,0.041701400000022],[109.66139950000007,0.041017400000044],[109.66442660000007,0.042269600000054],[109.66434110000006,0.045166],[109.65667090000005,0.050333900000055],[109.65621390000007,0.056476900000064],[109.65860830000008,0.059565700000064],[109.66746630000006,0.056062700000041],[109.66657910000004,0.057858300000021],[109.66011920000005,0.061456400000054],[109.658612,0.06453440000007],[109.66233190000008,0.066447500000038],[109.66685850000005,0.061411100000043],[109.670358,0.07220540000003],[109.67236760000009,0.070783900000038],[109.67090410000009,0.061450700000023],[109.67331990000008,0.056908400000054],[109.67711010000005,0.068213400000047],[109.68119350000006,0.064344400000039],[109.68450470000005,0.064354900000069],[109.68897160000006,0.067477800000063],[109.69562040000005,0.06389740000003],[109.69577010000006,0.065618200000074],[109.69192910000004,0.07046],[109.69272790000008,0.072290400000043],[109.69876950000008,0.074749200000042],[109.70102650000007,0.077255600000058],[109.70705240000007,0.073556500000052],[109.71193990000006,0.073390200000063],[109.713496,0.06925990000002],[109.71734320000007,0.075937200000055],[109.72486820000006,0.077832],[109.72967660000006,0.076609800000028],[109.74660360000007,0.085210300000028],[109.74840620000003,0.091722700000048],[109.74980240000008,0.092600800000071],[109.753991,0.090844900000036],[109.75940150000008,0.086103600000058],[109.76359030000003,0.079957300000046],[109.76828760000006,0.077114800000061],[109.77413220000005,0.078211900000042],[109.78333450000008,0.087221400000033],[109.78753430000006,0.08688410000002],[109.79464980000006,0.090110100000061],[109.80798750000008,0.087643600000035],[109.81288120000005,0.084924100000023],[109.83041470000006,0.090726500000073],[109.843374,0.090509600000075],[109.86917590000007,0.08594590000007],[109.87693920000004,0.095157400000062],[109.89631930000007,0.096705800000052],[109.90266330000009,0.09872],[109.91288810000009,0.107416200000046],[109.91822710000008,0.116097],[109.918726,0.129857500000071],[109.92012090000009,0.134492900000055],[109.93410880000005,0.152355400000033],[109.95044760000007,0.165537100000051],[109.96176460000004,0.168702],[109.99727380000007,0.164944400000024],[110.01373690000008,0.168222800000024],[110.02979410000006,0.176687],[110.03635980000007,0.185730600000056],[110.04542710000004,0.20791040000006],[110.05376670000004,0.215570700000058],[110.06091420000007,0.215049700000066],[110.06880140000004,0.217812700000025],[110.07348990000008,0.217926300000045],[110.08272770000008,0.214848800000027],[110.087629,0.210590100000047],[110.09342070000008,0.21731520000003],[110.09765340000007,0.218884600000024],[110.10366830000004,0.218436600000075],[110.10545060000004,0.217988400000024],[110.11102040000009,0.209919],[110.11592160000004,0.208574300000066],[110.12059970000007,0.212833600000067],[110.12706010000005,0.215075600000034],[110.13218370000004,0.21866250000005],[110.13485680000008,0.224042500000053],[110.12932440000009,0.243202],[110.12903260000007,0.24907920000004],[110.14148350000005,0.261808900000062],[110.142874,0.267754700000069],[110.13314260000004,0.308540900000025],[110.13221680000004,0.318509300000073],[110.13306950000003,0.323176200000034],[110.13752070000004,0.330953400000055],[110.14837710000006,0.337921900000026],[110.14848770000003,0.341206200000045],[110.14485870000004,0.350307800000053],[110.14468440000007,0.356860700000027],[110.14861180000008,0.362651100000051],[110.15150470000009,0.375167200000021],[110.15508940000007,0.379504600000075],[110.16942550000005,0.383723],[110.18098060000005,0.379167500000051],[110.18846760000008,0.382276600000068],[110.190923,0.385445],[110.19302790000006,0.395182200000022],[110.19781770000009,0.407050500000025],[110.20295930000009,0.411370400000067],[110.20958,0.412965300000053],[110.21246710000008,0.418033100000059],[110.21198840000005,0.422370100000023],[110.20911410000008,0.426460400000053],[110.19477280000007,0.42934630000002],[110.19166580000007,0.427180400000054],[110.18598450000007,0.427320200000054],[110.17421090000005,0.433199900000034],[110.16990840000005,0.437049400000035],[110.16177550000003,0.441144800000075],[110.15890680000007,0.445716300000072],[110.15936880000004,0.450167400000055],[110.16177410000006,0.45414420000003],[110.16823290000008,0.458241300000054],[110.17133960000007,0.462332200000048],[110.18097430000006,0.466206800000066],[110.18687540000008,0.477638300000024],[110.18738170000006,0.485128800000041],[110.19104130000005,0.484897200000034],[110.19615620000008,0.479471700000033],[110.20417640000005,0.480369300000064],[110.20729510000007,0.48373220000002],[110.20758260000008,0.497537],[110.20357140000004,0.506278900000041],[110.19978170000007,0.524660100000062],[110.20044980000006,0.526901800000076],[110.21091570000004,0.531945700000051],[110.21751450000005,0.536863400000072],[110.232437,0.53824220000007],[110.242612,0.541062700000055],[110.25244160000005,0.545900200000062],[110.25636740000004,0.549774],[110.25413860000003,0.557208700000047],[110.25525180000005,0.563261400000044],[110.25305360000004,0.57294950000005],[110.25709180000007,0.577197200000057],[110.26072070000004,0.578565800000035],[110.26308970000008,0.58554040000007],[110.26262940000004,0.588248800000031],[110.25868060000005,0.591073300000062],[110.25187550000004,0.591420800000037],[110.24587430000008,0.588829500000031],[110.24101920000004,0.584336300000075],[110.23535960000004,0.583012600000075],[110.22814580000005,0.591081400000064],[110.22350390000008,0.600013800000056],[110.21933890000008,0.623587],[110.22537720000008,0.646157800000026],[110.23428850000005,0.649521700000037],[110.23027580000007,0.665436900000032],[110.24519830000008,0.696822800000064],[110.24341460000005,0.704892500000028],[110.24074030000008,0.709375400000056],[110.23977680000007,0.72432120000002],[110.23411030000005,0.731824200000062],[110.195273,0.758246300000053],[110.19145260000005,0.766260600000066],[110.19154420000007,0.772152500000061],[110.18136640000006,0.791375800000026],[110.17990530000009,0.801198900000031],[110.17647070000004,0.808259400000054],[110.17737730000005,0.813543400000071],[110.17971690000007,0.81641680000007],[110.17815780000006,0.818828800000063],[110.178134,0.822650300000021],[110.18175220000006,0.836316600000032],[110.19202820000004,0.838304600000072],[110.19234210000008,0.841730900000073],[110.19607390000004,0.841561300000023],[110.19732320000008,0.844919300000072],[110.202507,0.84593],[110.20488360000007,0.848043500000074],[110.20882750000004,0.84746860000007],[110.210983,0.844165500000031],[110.21486180000005,0.842775500000073],[110.22469420000004,0.847059700000045],[110.23959240000005,0.846815500000048],[110.24449390000007,0.847937300000069],[110.24783520000005,0.85242130000006],[110.25630110000009,0.856458],[110.26454370000005,0.863184600000068],[110.26587960000006,0.867668300000048],[110.25763440000009,0.874615900000038],[110.23356860000007,0.887164300000052],[110.227773,0.899268100000029],[110.22755430000007,0.906583300000023],[110.22487950000004,0.911514400000044],[110.22129160000009,0.915888700000039],[110.20813420000007,0.91751320000003],[110.20523990000004,0.924889700000051],[110.20250090000008,0.926981400000045],[110.20738560000007,0.938573100000042],[110.21653210000005,0.947514700000056],[110.21780640000009,0.952046400000029],[110.21698930000008,0.956406500000071],[110.22416680000003,0.956991500000072],[110.22571260000007,0.96328120000004],[110.22196950000006,0.967434300000036],[110.21730060000004,0.969455],[110.21647160000003,0.971801],[110.21796340000009,0.975409400000046],[110.22451330000007,0.980950900000039],[110.21690630000006,0.98270720000005],[110.21372130000009,0.98997010000005],[110.20175030000007,1],[110.18307950000008,1.003034400000047],[110.17575280000005,1.001341100000047],[110.15929650000004,1.003753300000028],[110.12200980000006,1.019483800000046],[110.11600490000006,1.020710200000053],[110.10629270000004,1.020240100000024],[110.09932770000006,1.022036900000046],[110.09282980000006,1.019839600000068],[110.09249730000005,1.026781300000039],[110.09073850000004,1.028435900000034],[110.06902660000009,1.03264930000006],[110.05475090000004,1.037004200000069],[110.04309490000009,1.028267100000051],[110.04002990000004,1.021128800000042],[110.03740380000005,1.019182],[110.03511430000009,1.020281],[110.03277730000008,1.025623900000028],[110.02227190000008,1.022057600000039],[110.01043950000007,1.023976100000027],[110.00361490000006,1.02678880000002],[109.99611580000004,1.026239900000064],[109.98806520000005,1.029302500000028],[109.98258690000006,1.02937],[109.98068190000004,1.030536700000027],[109.97933960000006,1.035391900000036],[109.96109770000004,1.030833600000051],[109.95293430000004,1.034334100000024],[109.93121340000005,1.052695400000061],[109.92561340000009,1.05268650000005],[109.91704560000005,1.044419600000026],[109.91098790000007,1.033267500000022],[109.91166690000006,1.028998300000069],[109.92687990000007,1.015937300000076],[109.92988590000004,1.010221],[109.92895510000005,1.004676600000039],[109.92218020000007,1.001257800000076],[109.91918950000007,0.994438],[109.92555240000007,0.972703200000069],[109.92613980000004,0.965015100000073],[109.92460630000005,0.959362100000021],[109.90871430000004,0.935176600000034],[109.89913940000008,0.929035300000066],[109.87465670000006,0.917684400000041],[109.85852810000006,0.905926500000021],[109.85584260000007,0.900155900000073],[109.85574340000005,0.885412900000063],[109.85019680000005,0.871682900000053],[109.83990480000006,0.862701600000037],[109.80947110000005,0.846575200000075],[109.80180360000008,0.849731900000052],[109.79331970000004,0.848890900000072],[109.78607180000006,0.846005700000035],[109.78454590000007,0.841130600000042],[109.78315730000008,0.84062410000007],[109.77270510000005,0.840515700000026],[109.77088930000008,0.843464400000073],[109.74547580000007,0.84525560000003],[109.74172970000006,0.841493],[109.732338,0.842271],[109.70149760000004,0.849837],[109.69530990000004,0.847670900000026],[109.68690660000004,0.840251],[109.676346,0.80544610000004],[109.675595,0.798850900000048],[109.67731850000007,0.769274200000041],[109.67596920000005,0.760522600000058],[109.67344330000009,0.756708700000047],[109.66201930000005,0.749404],[109.64016150000003,0.745721800000069],[109.62754820000004,0.741106500000058],[109.61203770000009,0.731600600000036],[109.60337070000008,0.729818900000055],[109.581131,0.71791630000007],[109.555481,0.71968940000005],[109.54104610000007,0.712607600000069],[109.53289030000008,0.711558500000024],[109.52991490000005,0.714425700000049],[109.52491760000004,0.72812870000007],[109.52257540000005,0.730769800000076],[109.51982880000008,0.732027100000039],[109.50973510000006,0.731186100000059],[109.50481410000003,0.733329800000035],[109.49475860000007,0.744111300000043],[109.48530580000005,0.757488700000067],[109.48563390000004,0.759569],[109.47991940000009,0.768206900000052],[109.47678380000008,0.77706180000007],[109.47143550000004,0.777016600000024],[109.44152830000007,0.751800200000048],[109.43180080000008,0.740874200000064],[109.414444,0.732770300000027],[109.40708160000008,0.730871],[109.39579010000006,0.733937400000059],[109.38480380000004,0.751095500000019],[109.37735430000004,0.755870100000038],[109.376469,0.75904],[109.37354680000004,0.759672800000033],[109.36706510000005,0.756134700000075],[109.36220750000007,0.764915],[109.35817720000006,0.766797700000041],[109.35057070000005,0.765956600000038],[109.33589940000007,0.758730100000037],[109.30619180000008,0.719597100000044],[109.29130980000008,0.711347700000033],[109.28644920000005,0.712871300000074],[109.28189150000009,0.716792300000066],[109.27617260000005,0.727096600000039],[109.274378,0.736138500000038],[109.275146,0.742894400000068],[109.26587750000004,0.750531100000046],[109.259805,0.746347400000047],[109.25279760000006,0.732344800000021],[109.24954130000003,0.72972690000006],[109.233237,0.721936600000049],[109.21524460000006,0.727129500000046],[109.21174880000007,0.72494510000007],[109.200164,0.705896],[109.19265880000006,0.700792500000034],[109.15711080000005,0.696052700000052],[109.14905320000008,0.693682900000056],[109.14478750000006,0.688943100000074],[109.14349610000005,0.684618800000067]]]},"properties":{"shapeName":"Landak","shapeISO":"","shapeID":"22746128B35312227929039","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[98.64039230000009,3.916353900000047],[98.63944980000008,3.916429200000039],[98.64024520000004,3.91465960000005],[98.64395730000007,3.914819900000055],[98.64039230000009,3.916353900000047]]],[[[98.58837990000006,3.927517100000046],[98.58633210000005,3.926843],[98.58909660000006,3.926667700000053],[98.58837990000006,3.927517100000046]]],[[[98.58410970000006,3.929558500000041],[98.58572670000007,3.933487700000057],[98.58507790000004,3.935323],[98.58410970000006,3.929558500000041]]],[[[98.57237390000006,3.941440800000066],[98.57264570000007,3.945889500000021],[98.56843430000004,3.949536600000044],[98.56600440000005,3.943823],[98.56036220000004,3.940147900000056],[98.56861590000005,3.939181200000064],[98.57237390000006,3.941440800000066]]],[[[98.199891,4.11376910000007],[98.20120820000005,4.116563400000075],[98.19968470000003,4.11869740000003],[98.19803970000004,4.114678600000047],[98.199891,4.11376910000007]]],[[[98.17975060000003,4.127025],[98.18045720000003,4.129000200000064],[98.17912140000004,4.12620940000005],[98.17975060000003,4.127025]]],[[[98.20279270000003,4.130315600000074],[98.19665540000005,4.130491800000073],[98.19268570000008,4.12826240000004],[98.18644920000008,4.121093400000063],[98.18407410000003,4.114450400000067],[98.19584970000005,4.116066400000022],[98.19962350000009,4.120403700000054],[98.20399660000004,4.119346200000052],[98.20550250000008,4.126129500000047],[98.20279270000003,4.130315600000074]]],[[[98.205523,4.131247],[98.20552210000005,4.133303800000022],[98.20438320000005,4.131494],[98.205523,4.131247]]],[[[98.19110620000004,4.131303500000058],[98.192295,4.134731500000044],[98.188106,4.128706300000033],[98.19070040000008,4.129565],[98.19217930000008,4.132200700000055],[98.19110620000004,4.131303500000058]]],[[[98.18626460000007,4.135642300000029],[98.18412310000008,4.135787900000025],[98.18112950000005,4.132832600000029],[98.18164290000004,4.13014510000005],[98.18626460000007,4.135642300000029]]],[[[98.20356920000006,4.137268900000038],[98.20082670000005,4.136420800000053],[98.19609440000005,4.131248800000037],[98.20316340000005,4.131531100000075],[98.20484090000008,4.13701640000005],[98.20356920000006,4.137268900000038]]],[[[98.20362550000004,4.139649800000029],[98.20350130000008,4.140856300000053],[98.20086110000005,4.137677300000064],[98.20362550000004,4.139649800000029]]],[[[98.17761830000006,4.127763600000037],[98.18043770000008,4.13313480000005],[98.18528040000007,4.137889600000051],[98.18405720000004,4.142926200000034],[98.17921850000005,4.141065500000025],[98.17592930000006,4.13478],[98.17518530000007,4.131631200000072],[98.17761830000006,4.127763600000037]]],[[[98.26027820000007,4.175910800000054],[98.25493660000006,4.175633400000038],[98.25226240000006,4.173867100000052],[98.24318020000004,4.175503900000024],[98.24444550000004,4.169175700000039],[98.23873290000006,4.15895560000007],[98.23674210000007,4.158577900000068],[98.235357,4.150715300000059],[98.23275390000003,4.147016500000063],[98.23544060000006,4.143626400000073],[98.24387360000009,4.141344400000037],[98.25204650000006,4.133908600000041],[98.25642090000008,4.132883800000059],[98.25899870000006,4.133515200000033],[98.259855,4.137003600000071],[98.26249330000007,4.13913610000003],[98.27179260000008,4.141682800000069],[98.27127150000007,4.148032700000044],[98.26987440000005,4.149700500000051],[98.27248790000004,4.152777600000036],[98.27465840000008,4.161501900000076],[98.27485010000004,4.165794500000061],[98.27293810000003,4.171708500000022],[98.26976740000003,4.173489800000027],[98.26949090000005,4.175139500000057],[98.26555,4.174055],[98.26027820000007,4.175910800000054]]],[[[97.91573960000005,3.885189400000058],[97.90939680000008,3.878642],[97.90886590000008,3.868541],[97.91518830000007,3.860594],[97.91519390000008,3.85121],[97.91805780000004,3.847266],[97.92115760000007,3.846849],[97.92223160000003,3.845235],[97.91555980000004,3.836387],[97.91562180000005,3.832502],[97.909665,3.824431],[97.90925120000009,3.818812],[97.90770230000004,3.817617],[97.90209820000007,3.818153],[97.89632170000004,3.80793],[97.88517790000009,3.800694],[97.88243760000006,3.79627],[97.87516610000006,3.792681],[97.86944560000006,3.787181],[97.86098240000007,3.784309],[97.85615830000006,3.775282],[97.84894570000006,3.774263],[97.83988890000006,3.767805],[97.82460930000008,3.749526],[97.81773820000006,3.742496],[97.81521050000003,3.736741],[97.80027320000005,3.722666],[97.803826,3.716766],[97.80463880000008,3.710372],[97.81912590000007,3.690598],[97.82601110000007,3.675926],[97.82931330000008,3.672177],[97.83839630000006,3.668519],[97.84440250000006,3.661197],[97.84659780000004,3.653196],[97.85394980000007,3.639961],[97.85355140000007,3.626923],[97.86912010000003,3.615527],[97.87194330000005,3.612075],[97.87054320000004,3.606984],[97.86367720000004,3.598873],[97.86364330000004,3.594627],[97.86704190000006,3.584839],[97.86825860000005,3.571032],[97.87559480000004,3.56516270000003],[97.884773,3.561077],[97.892415,3.559086],[97.89783320000004,3.560312],[97.90441110000006,3.55694],[97.90969790000008,3.550152],[97.91234890000004,3.543658],[97.912527,3.533914],[97.92381850000004,3.512198],[97.92290740000004,3.505256],[97.92049530000008,3.500003700000036],[97.92157010000005,3.498125],[97.93139050000008,3.492134],[97.94604560000005,3.489412],[97.95104170000008,3.484627],[97.95819090000003,3.483057],[97.95908180000004,3.481623],[97.94976650000007,3.472817],[97.94784640000006,3.466557],[97.94144730000005,3.455834],[97.93631030000006,3.450358],[97.93366890000004,3.441085],[97.93154820000007,3.440298400000074],[97.92943830000007,3.434045600000047],[97.92526410000005,3.43041340000002],[97.921066,3.422083300000054],[97.91111880000005,3.417055800000071],[97.89764890000004,3.415894500000036],[97.89801840000007,3.412409800000034],[97.89588180000004,3.41089340000002],[97.89770490000006,3.41047],[97.90584910000007,3.399221900000043],[97.90990270000003,3.389560200000062],[97.93053960000003,3.389718900000048],[97.94741990000006,3.393469100000061],[97.948226,3.390666],[97.970668,3.378021],[97.976556,3.372458],[97.991868,3.370331],[97.995628,3.373126],[98.001949,3.369756],[98.006545,3.365656],[98.010663,3.35924],[98.015527,3.34758],[98.022175,3.343749],[98.02889460000006,3.33101460000006],[98.04414310000004,3.323336],[98.05564030000005,3.315516400000035],[98.05874590000008,3.315292400000033],[98.06464310000007,3.318362200000024],[98.07167570000007,3.314879],[98.07983910000007,3.319640500000048],[98.09907420000008,3.314011200000039],[98.10845540000008,3.299561],[98.10769750000009,3.291217300000028],[98.11731170000007,3.27069380000006],[98.12078890000004,3.266318300000023],[98.12419980000004,3.265161100000057],[98.14116530000007,3.265573],[98.16667320000005,3.279696100000024],[98.174244,3.277346700000066],[98.18107340000006,3.280169300000068],[98.20094,3.277544600000056],[98.207716,3.281528900000069],[98.21788750000007,3.283857200000057],[98.22324770000006,3.27065250000004],[98.23266280000007,3.263690200000042],[98.25885780000004,3.24997],[98.26240820000004,3.249349600000073],[98.26651970000006,3.252184500000055],[98.27125490000009,3.251816100000042],[98.27494620000004,3.254080700000031],[98.27967920000003,3.252054200000032],[98.28466830000008,3.254986600000052],[98.28752470000006,3.254843600000072],[98.28888210000008,3.252814700000044],[98.28822250000007,3.247159600000032],[98.29309830000005,3.243221500000061],[98.29795190000004,3.228866100000062],[98.31397940000005,3.227134200000023],[98.32611870000005,3.222259200000053],[98.34004950000008,3.219048600000065],[98.34854220000005,3.222101400000042],[98.35694630000006,3.229466200000047],[98.36626250000006,3.245337100000029],[98.36096210000005,3.250940900000046],[98.35904840000006,3.260816200000022],[98.35503250000005,3.271043400000053],[98.35116540000007,3.287649400000021],[98.35515050000004,3.287392300000022],[98.35889820000006,3.286345400000073],[98.37362630000007,3.273931700000048],[98.37736890000008,3.273299300000076],[98.38110120000005,3.270116300000041],[98.388309,3.269604300000026],[98.39844020000004,3.262885500000039],[98.39998340000005,3.257372900000064],[98.39931350000006,3.249553900000024],[98.40483010000008,3.247484900000075],[98.41949030000006,3.246498100000053],[98.42988510000004,3.236477400000069],[98.43191480000007,3.235963300000037],[98.43593960000004,3.237646200000029],[98.44458860000003,3.247447400000055],[98.44782860000004,3.248282700000061],[98.45155890000007,3.245492400000046],[98.457364,3.234421900000029],[98.46126350000009,3.231196300000022],[98.46560530000005,3.230413],[98.47162770000006,3.235852600000044],[98.47214170000007,3.238313300000073],[98.47155950000007,3.243104200000062],[98.46846410000006,3.249512500000037],[98.46858980000007,3.255534],[98.47329180000008,3.256637200000057],[98.47489480000007,3.270882200000074],[98.47031960000004,3.273599200000035],[98.47070390000005,3.277807900000028],[98.47965410000006,3.285906],[98.48532160000008,3.288822500000038],[98.48660870000003,3.291542500000048],[98.49833,3.298088],[98.50947020000007,3.308450600000072],[98.50308710000007,3.318420900000035],[98.50488590000003,3.32845750000007],[98.50082240000006,3.338102700000036],[98.50429680000008,3.346910100000059],[98.50467590000005,3.361802],[98.501836,3.371901100000059],[98.49945080000003,3.374813500000073],[98.49873680000007,3.385172600000033],[98.49557690000006,3.390803900000037],[98.50452730000006,3.400779500000056],[98.50470570000004,3.403167500000052],[98.50150130000009,3.406876900000043],[98.50116920000005,3.415863800000068],[98.50225940000007,3.425770600000021],[98.50457620000009,3.431081],[98.50360590000008,3.438461600000039],[98.50688610000003,3.44966450000004],[98.50417750000008,3.45438960000007],[98.50887570000003,3.464881],[98.50958230000003,3.469025200000033],[98.50764570000007,3.476016800000025],[98.510285,3.480679900000041],[98.51094630000006,3.489908],[98.51327440000006,3.493844500000023],[98.50995450000005,3.495102800000041],[98.51315880000004,3.497207400000036],[98.51397130000004,3.501925300000039],[98.51908060000005,3.51038120000004],[98.51891410000007,3.513323200000059],[98.520769,3.514940300000035],[98.51903660000005,3.515809600000068],[98.52101460000006,3.518545500000073],[98.52076610000006,3.520783],[98.52435430000008,3.520039],[98.52460060000004,3.522193900000048],[98.52022850000009,3.523683400000039],[98.51057450000008,3.531178600000032],[98.51197240000005,3.539384],[98.50910760000005,3.540468400000066],[98.50781820000003,3.54270710000003],[98.51135120000004,3.54419050000007],[98.509122,3.54854030000007],[98.51056320000004,3.552684800000065],[98.50812820000004,3.556122900000048],[98.50177510000003,3.559848800000054],[98.50080870000005,3.569487600000059],[98.49665080000005,3.568773400000055],[98.49751380000004,3.559792200000061],[98.49360360000009,3.555041600000038],[98.47569370000008,3.556434500000023],[98.47494770000009,3.544270900000072],[98.47772590000005,3.537311800000055],[98.47786080000009,3.528261],[98.45349110000006,3.529497200000037],[98.45145330000008,3.534816900000067],[98.44574870000008,3.537926700000071],[98.44708860000009,3.541270700000041],[98.44502720000008,3.546131400000036],[98.446344,3.550451600000031],[98.44474540000004,3.554755100000023],[98.44648220000005,3.558048300000053],[98.44684250000006,3.566781500000047],[98.45038890000006,3.569609200000059],[98.45030720000005,3.572901],[98.45313630000004,3.579086800000027],[98.45648920000008,3.577024800000061],[98.45659950000004,3.575480300000038],[98.45834550000006,3.5767],[98.45788020000003,3.580538],[98.45488220000004,3.582546],[98.45644550000009,3.584097800000052],[98.459071,3.583950400000049],[98.46033960000005,3.587111800000059],[98.45721,3.592109900000025],[98.46086330000009,3.594259200000067],[98.46001990000008,3.596145300000046],[98.45896540000007,3.594383300000061],[98.44516070000009,3.598340500000063],[98.44508580000007,3.604256500000076],[98.44051010000004,3.605404600000043],[98.44066980000008,3.608444500000076],[98.44268850000003,3.610571600000071],[98.44275180000005,3.612803800000052],[98.47375910000005,3.616867800000023],[98.47438130000006,3.635582100000022],[98.47194790000003,3.640925],[98.46087510000007,3.644100900000069],[98.46035410000007,3.649713900000052],[98.45750880000008,3.652621100000033],[98.45161150000007,3.650799500000062],[98.44669450000004,3.651471700000059],[98.44669170000009,3.655941600000062],[98.45398970000008,3.653087700000071],[98.45770620000008,3.655168600000025],[98.45970230000006,3.654572],[98.46485470000005,3.65008],[98.46785480000005,3.650497500000029],[98.46811430000008,3.649042500000064],[98.47116630000005,3.64914820000007],[98.47246030000008,3.647797700000069],[98.48926060000008,3.667192],[98.49168440000005,3.666142600000057],[98.49215940000005,3.668285600000047],[98.49495170000006,3.667766200000074],[98.49510930000008,3.669534100000021],[98.50104560000005,3.668288800000028],[98.50146090000004,3.672508900000025],[98.50494440000006,3.698349600000029],[98.50860220000004,3.70793690000005],[98.50682140000004,3.711985800000036],[98.50812280000008,3.717227600000058],[98.50682810000006,3.722139900000059],[98.50871230000007,3.723302800000056],[98.50958680000008,3.729380500000048],[98.50671780000005,3.737385300000028],[98.51568170000007,3.75905640000002],[98.52240150000006,3.767566],[98.52506160000007,3.775464100000022],[98.531732,3.786548],[98.53876240000005,3.792877400000066],[98.55262510000006,3.799875],[98.57661420000005,3.815730100000053],[98.57438530000007,3.822532800000033],[98.57670710000008,3.823603100000071],[98.58028820000004,3.821855300000038],[98.58309370000006,3.823217400000033],[98.58405860000005,3.828758100000073],[98.58212170000007,3.832061800000076],[98.58308830000004,3.834297800000058],[98.58873120000004,3.835303400000043],[98.59547560000004,3.831485100000066],[98.60079640000004,3.834306300000037],[98.60176160000003,3.839458200000024],[98.59856430000008,3.84810710000005],[98.60601280000009,3.853748],[98.60639890000004,3.855789300000026],[98.600589,3.864048300000036],[98.60126430000008,3.868325300000038],[98.60397350000005,3.869104100000072],[98.60591020000004,3.86628630000007],[98.60900670000007,3.866482200000064],[98.61219850000003,3.870079900000064],[98.61896640000003,3.883301800000027],[98.63552170000008,3.884214500000041],[98.641122,3.895363900000063],[98.64566970000004,3.896726600000022],[98.65079530000008,3.904990500000054],[98.66228550000005,3.906033200000024],[98.66487470000004,3.908039900000063],[98.66141390000007,3.912281300000075],[98.657588,3.911584400000038],[98.64595280000003,3.914740900000027],[98.64030240000005,3.914339100000063],[98.63685170000008,3.91664650000007],[98.632406,3.916786900000034],[98.62779270000004,3.91134390000002],[98.62154280000004,3.914472100000069],[98.61517460000005,3.912512400000026],[98.60438940000006,3.914953900000057],[98.59509770000005,3.923008700000025],[98.58709260000006,3.926261500000066],[98.58430260000006,3.924304],[98.58267530000006,3.928591200000028],[98.58379640000004,3.93297240000004],[98.57604960000003,3.936046400000066],[98.57409130000008,3.939605300000039],[98.56423630000006,3.937387100000024],[98.56004690000003,3.938927800000044],[98.55347660000007,3.962796800000035],[98.55719650000003,3.967281600000035],[98.55634870000006,3.971754800000042],[98.55074870000004,3.982992100000047],[98.54474080000006,3.983722300000068],[98.53756570000007,3.992137500000069],[98.53711860000004,3.995682100000067],[98.53911370000009,3.996905],[98.54395110000007,4.008432300000038],[98.54210480000006,4.011736800000051],[98.52767590000008,4.016489100000058],[98.52752490000006,4.018624700000032],[98.52498020000007,4.016302300000063],[98.515004,4.019589300000064],[98.51455980000009,4.018574100000023],[98.51298860000009,4.019231900000023],[98.51280090000006,4.017679700000031],[98.51154750000006,4.01878720000002],[98.50896210000008,4.01590630000004],[98.50739980000009,4.015749800000037],[98.50672960000009,4.017948800000056],[98.50263420000005,4.017461600000047],[98.49000020000005,4.03007],[98.47996420000004,4.035235800000066],[98.47329260000004,4.035019500000033],[98.46448880000008,4.040135200000066],[98.43113790000007,4.040849300000048],[98.42930020000006,4.042804700000033],[98.42933050000005,4.046588600000064],[98.41706120000003,4.055641100000059],[98.40707330000004,4.067174400000056],[98.39605920000008,4.074222900000052],[98.39135820000007,4.075752800000032],[98.38800080000004,4.076420900000073],[98.385234,4.074711600000057],[98.37589030000004,4.074453600000027],[98.37176530000005,4.072037400000056],[98.35292340000007,4.077478900000074],[98.34893750000003,4.076168200000041],[98.34785810000005,4.07698670000002],[98.34218990000005,4.073626500000046],[98.32633170000008,4.073578400000031],[98.319412,4.071290500000032],[98.31081620000003,4.073676400000068],[98.30655240000004,4.089085700000055],[98.30280670000008,4.09715680000005],[98.29895350000004,4.104230800000039],[98.29779290000005,4.105306400000075],[98.29558140000006,4.104276200000072],[98.298046,4.106413900000064],[98.29647460000007,4.106091400000025],[98.29024850000008,4.110398900000064],[98.29085860000004,4.111266700000044],[98.28961060000006,4.110075100000074],[98.28188220000004,4.113974600000063],[98.279455,4.113478800000053],[98.27811630000008,4.11681470000002],[98.273197,4.12066070000003],[98.25581510000006,4.124762900000064],[98.24905020000006,4.130343900000071],[98.24259750000004,4.129816700000049],[98.23560870000006,4.1313],[98.22004480000004,4.127541300000075],[98.21406350000007,4.122930100000076],[98.211483,4.124658100000033],[98.21089420000004,4.122131700000068],[98.205795,4.117511600000057],[98.20267910000007,4.110201400000051],[98.19931710000009,4.107210700000053],[98.19391110000004,4.112163500000065],[98.18413910000004,4.109712200000047],[98.17475850000005,4.09922940000007],[98.16464910000008,4.082396700000061],[98.15850470000004,4.077700500000049],[98.15325110000003,4.079081100000053],[98.15400380000005,4.083592200000055],[98.16160360000003,4.084001100000023],[98.16444330000007,4.093905200000052],[98.17076170000007,4.104350700000055],[98.17461820000005,4.122066],[98.17316460000006,4.132249700000045],[98.17786950000004,4.144430600000021],[98.17404320000009,4.147833400000025],[98.16084640000008,4.151692],[98.16107130000006,4.15422140000004],[98.16998980000005,4.157772400000056],[98.16869070000007,4.16041690000003],[98.17241190000004,4.163483500000041],[98.18100590000006,4.166899100000023],[98.186368,4.174911],[98.19470470000005,4.173050400000022],[98.204518,4.177976300000068],[98.20597880000008,4.18058510000003],[98.22351210000005,4.182581800000037],[98.23701250000005,4.187255900000025],[98.23909130000004,4.190438200000074],[98.24517140000006,4.186856400000067],[98.25404920000005,4.201667500000042],[98.24979050000007,4.208368300000075],[98.24712680000005,4.221616200000028],[98.24639690000004,4.238079500000026],[98.24854550000003,4.254728400000033],[98.24575770000007,4.264472400000045],[98.24408220000004,4.264417500000036],[98.243298,4.270921100000066],[98.25235980000008,4.280144700000051],[98.25091440000006,4.28413960000006],[98.252208,4.289165900000057],[98.24859560000004,4.293584200000055],[98.244988,4.294371700000056],[98.239326,4.289645700000051],[98.23836770000008,4.283351100000061],[98.229685,4.285520900000051],[98.23076490000005,4.290726500000062],[98.22979870000006,4.292299],[98.222931,4.287934800000073],[98.21907010000007,4.290714600000058],[98.21437180000004,4.287078800000074],[98.210868,4.294337100000064],[98.21243110000006,4.298453800000061],[98.20338990000005,4.297355200000027],[98.19952760000007,4.301345200000071],[98.19844970000008,4.294445200000041],[98.19132090000005,4.301491800000065],[98.19119550000005,4.296240400000045],[98.18841710000004,4.293907200000035],[98.17750340000003,4.291313400000035],[98.17874550000005,4.29024830000003],[98.16530110000008,4.288479100000075],[98.16216940000004,4.285813],[98.15409010000008,4.287256200000058],[98.15687470000006,4.276608800000076],[98.15651760000009,4.272372300000029],[98.15543510000003,4.270071600000051],[98.14953180000003,4.266313100000048],[98.14760740000008,4.262196],[98.14339060000003,4.259770600000024],[98.13989410000005,4.260008800000037],[98.138594,4.258676],[98.13736260000007,4.259763900000053],[98.124201,4.255701],[98.11976290000007,4.258291600000064],[98.11843910000005,4.253690600000027],[98.10856940000008,4.251760500000046],[98.09336050000007,4.257561800000076],[98.08875490000008,4.258567500000026],[98.08316080000009,4.257276800000056],[98.07985750000006,4.259455200000048],[98.076606,4.256667600000071],[98.07692640000005,4.253173600000025],[98.07039410000004,4.250126],[98.06772090000004,4.245897500000069],[98.07398420000004,4.231067],[98.07627420000006,4.231553800000029],[98.07736270000004,4.228529500000036],[98.08942550000006,4.226098200000024],[98.09004020000003,4.212902400000075],[98.09280170000005,4.207067],[98.08943930000004,4.203273100000047],[98.08902640000008,4.197615900000073],[98.08548080000008,4.193289500000049],[98.07881320000007,4.194349800000055],[98.07408330000004,4.189319300000022],[98.06282320000008,4.189147800000057],[98.06053290000006,4.187137300000074],[98.06341210000005,4.179611600000044],[98.067595,4.176655500000038],[98.06972910000007,4.171498100000065],[98.06825050000003,4.159236900000053],[98.06977630000006,4.155796600000031],[98.06973310000006,4.150093900000059],[98.07192520000007,4.150096500000075],[98.07189610000006,4.142682600000057],[98.06426890000006,4.137738],[98.05649580000005,4.135563700000034],[98.04986470000006,4.126647700000035],[98.04712170000005,4.119851900000072],[98.04481230000005,4.07356],[98.03970350000009,4.068334400000026],[98.03754320000007,4.060465],[98.033811,4.057192900000075],[98.03864180000005,4.048847800000033],[98.03707940000004,4.045094100000028],[98.03937380000008,4.041345],[98.03792990000005,4.039285800000073],[98.03998250000006,4.037969700000076],[98.04384760000005,4.028914600000064],[98.045777,4.027948600000059],[98.04626310000003,4.024358],[98.04245320000007,4.021185700000046],[98.03045730000008,4.021745100000032],[98.02752230000004,4.019529100000057],[98.02597590000005,4.016167500000051],[98.02581550000008,4.01379090000006],[98.03097020000007,4.001997],[98.02930490000006,3.993154200000049],[98.03135330000003,3.985945400000048],[98.030134,3.981928700000026],[98.02442860000008,3.97659550000003],[98.02386680000006,3.96856420000006],[98.02264480000008,3.96692390000004],[98.01635870000007,3.96978450000006],[98.01595790000005,3.963720100000046],[98.014572,3.962653200000034],[98.00388180000004,3.963869500000044],[98.00282690000006,3.959033500000032],[97.99525550000004,3.945093800000052],[97.99000880000006,3.941800100000023],[97.982368,3.941800300000068],[97.97814470000009,3.939225100000044],[97.97290780000009,3.938265100000024],[97.96606370000006,3.933710100000042],[97.96173690000006,3.932679],[97.95758050000006,3.928904400000022],[97.95530170000006,3.92431270000003],[97.956286,3.92005290000003],[97.95482660000005,3.912676200000021],[97.95728740000004,3.902026600000056],[97.953949,3.896614200000045],[97.95198480000005,3.889700600000026],[97.94947850000005,3.889749900000027],[97.94525660000005,3.895712600000024],[97.93946890000007,3.895386300000041],[97.93513290000004,3.893928600000038],[97.93646450000006,3.888968300000045],[97.93357780000008,3.88484980000004],[97.93008440000006,3.884119200000043],[97.92068270000004,3.886648700000023],[97.91573960000005,3.885189400000058]]]]},"properties":{"shapeName":"Langkat","shapeISO":"","shapeID":"22746128B60267673978288","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[138.6113253000001,-3.784304899999938],[138.60790810000003,-3.752624199999957],[138.60782050000012,-3.726358499999947],[138.60940530000005,-3.722558799999945],[138.56578020000006,-3.725513199999966],[138.53389820000007,-3.723520599999972],[138.50500520000003,-3.725513199999966],[138.47312320000003,-3.743446799999958],[138.45220070000005,-3.747432099999969],[138.4282892000001,-3.755402599999968],[138.40637040000001,-3.753409899999951],[138.39326190000008,-3.783109799999977],[138.33395960000007,-3.773577799999941],[138.30460410000012,-3.772894299999962],[138.26945510000007,-3.813114599999949],[138.22533150000004,-3.827822599999934],[138.18562050000003,-3.838118],[138.1253186,-3.832234899999946],[138.05030890000012,-3.833705699999939],[138.00912720000008,-3.839588799999945],[137.9782408000001,-3.851355],[137.95195520000004,-3.866782899999976],[137.94882530000007,-3.885182899999961],[137.94882560000008,-3.944014],[137.937059,-3.961663399999964],[137.91940970000007,-3.966075699999976],[137.89881880000007,-3.969017299999962],[137.870874,-3.9763712],[137.83998770000005,-3.974900399999967],[137.81351370000004,-3.9793127],[137.78409810000005,-3.995491299999969],[137.75762410000004,-4.013140599999929],[137.71497150000005,-4.057263899999953],[137.70467610000003,-4.085208699999953],[137.69585150000012,-4.119036599999959],[137.67836230000012,-4.172312399999953],[137.700816,-4.160253399999931],[137.74008260000005,-4.144546799999944],[137.75840690000007,-4.1419291],[137.7924379000001,-4.134075799999948],[137.8159978000001,-4.131458],[137.84217550000005,-4.149782399999935],[137.86573540000006,-4.155017899999962],[137.8945308000001,-4.1471646],[137.93379730000004,-4.144546799999944],[138.004477,-4.136693499999978],[138.06992120000007,-4.134075799999948],[138.12489430000005,-4.134075799999948],[138.161236,-4.137109399999929],[138.2373923,-4.154768699999977],[138.29410450000012,-4.188441599999976],[138.32954970000003,-4.191986799999938],[138.3774006000001,-4.183124799999973],[138.414618,-4.181352499999946],[138.45892450000008,-4.190213799999981],[138.50500320000003,-4.188441599999976],[138.55462640000007,-4.191986699999973],[138.5812102000001,-4.183124799999973],[138.59538830000008,-4.1600855],[138.59949930000005,-4.140903299999934],[138.60423330000003,-4.119457699999941],[138.61474450000003,-4.096333199999947],[138.63366380000002,-4.077413199999967],[138.64796720000004,-4.027367099999935],[138.6609836,-4.0057988],[138.67727460000003,-3.968696799999975],[138.6898059,-3.959822899999949],[138.7042722000001,-3.945873199999937],[138.7280383000001,-3.911774],[138.72597170000006,-3.898857599999928],[138.70842370000003,-3.887642],[138.7178375000001,-3.854707399999938],[138.7178375000001,-3.8489201],[138.69573590000005,-3.848211099999958],[138.68037320000008,-3.8432081],[138.6581691,-3.842608],[138.60956010000007,-3.848009],[138.60175870000012,-3.845607899999948],[138.60763960000008,-3.795213599999954],[138.6113253000001,-3.784304899999938]]]},"properties":{"shapeName":"Lanny Jaya","shapeISO":"","shapeID":"22746128B18030238293672","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[106.42670470000007,-6.348073799999952],[106.42224910000004,-6.3465851],[106.42061640000009,-6.349154399999975],[106.41837340000006,-6.346377699999948],[106.41679410000006,-6.347800599999971],[106.41583280000003,-6.346084499999961],[106.41378810000003,-6.346226599999966],[106.41320830000006,-6.344209099999944],[106.41026330000005,-6.345063099999948],[106.41071350000004,-6.339195599999925],[106.40531180000005,-6.340001499999971],[106.40319850000009,-6.336569199999929],[106.40431240000004,-6.333837899999935],[106.39972690000008,-6.332384799999943],[106.39575830000007,-6.329476299999953],[106.39117850000008,-6.329023499999948],[106.36532620000008,-6.332591899999954],[106.35731530000004,-6.329131],[106.35184930000008,-6.332389299999932],[106.33790310000006,-6.336776399999962],[106.33506040000009,-6.334448699999939],[106.32624080000005,-6.335832899999957],[106.31823760000009,-6.335269799999935],[106.31700160000008,-6.329535799999974],[106.31210350000003,-6.327708099999938],[106.30973080000007,-6.322400399999935],[106.30453520000003,-6.319942799999978],[106.30318480000005,-6.321338499999968],[106.29669220000005,-6.320597899999939],[106.29742460000006,-6.317148499999973],[106.29306820000005,-6.312283799999932],[106.28395870000008,-6.313442499999951],[106.283089,-6.309500499999956],[106.27988460000006,-6.3071626],[106.27962520000005,-6.303071799999941],[106.27688680000006,-6.301467199999934],[106.27437280000004,-6.301026399999955],[106.26102480000009,-6.306292799999937],[106.26161220000006,-6.309751299999959],[106.25965150000007,-6.310778899999946],[106.25229670000004,-6.308926399999962],[106.25279270000004,-6.306435399999941],[106.25903350000004,-6.303634],[106.25899530000004,-6.299557],[106.24517850000007,-6.297068399999944],[106.24356870000008,-6.298192799999981],[106.24401120000005,-6.304597599999965],[106.23853330000009,-6.306053899999938],[106.23398620000006,-6.3034342],[106.23142270000005,-6.310893799999974],[106.22510560000006,-6.312573699999973],[106.22235140000004,-6.311792199999957],[106.21981080000006,-6.308906299999933],[106.21710230000008,-6.308844399999941],[106.21808650000008,-6.3029735],[106.22078730000004,-6.299864099999979],[106.21564510000007,-6.298750699999971],[106.21537050000006,-6.294051899999943],[106.21174020000007,-6.290996899999925],[106.20568970000005,-6.291122599999937],[106.19689210000007,-6.288721299999963],[106.18924,-6.28911],[106.18443780000007,-6.287283799999955],[106.18049970000004,-6.289306],[106.17390410000007,-6.288421699999958],[106.17083920000005,-6.290031],[106.16756740000005,-6.292878799999926],[106.16506680000003,-6.2929858],[106.16395060000008,-6.295517399999937],[106.16133150000007,-6.294668899999976],[106.16078220000009,-6.296464699999945],[106.15738710000005,-6.2967389],[106.156441,-6.298142699999971],[106.15911130000006,-6.301925899999958],[106.15659360000006,-6.309159],[106.15809660000008,-6.313291299999946],[106.150925,-6.319640399999969],[106.15149720000005,-6.325001899999961],[106.14887270000008,-6.325300399999946],[106.14822420000007,-6.324151699999959],[106.14072450000003,-6.326591699999938],[106.13590270000009,-6.325410099999942],[106.13013490000009,-6.327962599999978],[106.12960080000005,-6.333258299999954],[106.13166840000008,-6.3361571],[106.13224060000005,-6.344426399999975],[106.12913540000005,-6.353337],[106.12967710000004,-6.357420599999955],[106.12553440000005,-6.358354299999974],[106.12516050000005,-6.356520399999965],[106.12378720000004,-6.356473599999958],[106.12600740000005,-6.363225199999931],[106.12550390000007,-6.369113699999957],[106.12680850000004,-6.371256499999959],[106.12899050000004,-6.371748699999955],[106.13056210000008,-6.375665899999944],[106.12613710000005,-6.383420199999932],[106.12110930000006,-6.384437799999944],[106.12155950000005,-6.390296599999942],[106.11720310000004,-6.398370499999942],[106.11679870000006,-6.407438499999955],[106.11347230000007,-6.412842],[106.11278570000007,-6.419143899999938],[106.10652190000008,-6.424041899999963],[106.10530120000004,-6.421851799999956],[106.10118130000006,-6.427219099999945],[106.09412,-6.427722699999947],[106.086339,-6.423739299999966],[106.08360930000003,-6.4147714],[106.079346,-6.413977299999942],[106.08009370000008,-6.413155699999948],[106.07835420000004,-6.41142],[106.07328070000005,-6.4117533],[106.07265510000008,-6.410730099999967],[106.07194550000008,-6.411876899999925],[106.06977110000008,-6.4090358],[106.06691010000009,-6.408482699999979],[106.06048620000007,-6.413379799999973],[106.05624420000004,-6.413830399999938],[106.05173530000008,-6.411876799999959],[106.04550970000008,-6.412477599999931],[106.03820070000006,-6.4224216],[106.03563720000005,-6.423138799999947],[106.02591740000008,-6.431929699999955],[106.024506,-6.441888499999948],[106.02082090000005,-6.445264499999951],[106.01743350000004,-6.453860899999938],[106.01175720000003,-6.456441499999926],[106.01059760000004,-6.4582697],[106.00842320000004,-6.466273],[106.00945310000009,-6.474239499999953],[106.00795780000004,-6.476179199999933],[106.00321230000009,-6.476202099999966],[106.00097690000007,-6.478167599999949],[105.99260750000008,-6.496496299999933],[105.99095190000008,-6.495537799999966],[105.98899880000005,-6.496758099999965],[105.98384890000005,-6.504119499999945],[105.99250060000008,-6.517316],[105.98973880000005,-6.519670099999928],[105.98762550000004,-6.525082699999928],[105.98330720000007,-6.525152299999945],[105.98152960000004,-6.523822399999972],[105.98529090000005,-6.540899399999944],[105.97917210000008,-6.543597299999931],[105.97581520000006,-6.542426199999966],[105.97430450000007,-6.543666899999948],[105.97637970000005,-6.5481831],[105.97493780000008,-6.553099699999962],[105.97084840000008,-6.556073699999956],[105.97208920000008,-6.561325599999975],[105.97094,-6.565844599999934],[105.96588170000007,-6.569427099999928],[105.96485170000005,-6.571681099999978],[105.95918310000008,-6.570676399999968],[105.95160710000005,-6.583892399999968],[105.94945560000008,-6.584546099999955],[105.94683950000007,-6.582875799999954],[105.94247470000005,-6.592713899999978],[105.933359,-6.601854699999933],[105.93363230000006,-6.613273599999957],[105.93087730000008,-6.613549699999965],[105.93105380000009,-6.614854899999955],[105.92866550000008,-6.616021199999977],[105.93196140000003,-6.617076],[105.93168680000008,-6.623181399999964],[105.93303720000006,-6.624999599999967],[105.93977390000003,-6.625714399999936],[105.94277990000006,-6.629522899999927],[105.94256630000007,-6.636184799999967],[105.94510690000004,-6.645058699999936],[105.94333690000008,-6.647266399999978],[105.94347420000008,-6.658215599999949],[105.93917040000008,-6.6631609],[105.93682480000007,-6.671947799999941],[105.93857610000003,-6.687053299999945],[105.93683660000005,-6.690093099999956],[105.93271670000007,-6.691017699999975],[105.93271670000007,-6.693407599999944],[105.92784160000008,-6.697766399999978],[105.92797890000008,-6.706750399999976],[105.92312660000005,-6.710189899999932],[105.91749680000004,-6.7191311],[105.9111,-6.71935],[105.91076,-6.71753],[105.90462,-6.71699],[105.90424,-6.71862],[105.90243,-6.71889],[105.9037,-6.71781],[105.90163,-6.71482],[105.9022,-6.71245],[105.90634,-6.71328],[105.91047,-6.71254],[105.91389,-6.70879],[105.90804,-6.71292],[105.90511,-6.71277],[105.90708,-6.7103],[105.90125,-6.71245],[105.89967,-6.70613],[105.90377,-6.7053],[105.89899,-6.70541],[105.89837,-6.70895],[105.89973,-6.70943],[105.90046,-6.71609],[105.89707,-6.71396],[105.89571,-6.70639],[105.89541,-6.71165],[105.8934,-6.71052],[105.89509,-6.71246],[105.89351,-6.71218],[105.89398,-6.71363],[105.89241,-6.71235],[105.89277,-6.70759],[105.89148,-6.70617],[105.89238,-6.70784],[105.89103,-6.71013],[105.8898,-6.70988],[105.89127,-6.71125],[105.88913,-6.7109],[105.88905,-6.71188],[105.8926,-6.71325],[105.89236,-6.71537],[105.89605,-6.71628],[105.89492830000006,-6.719920699999932],[105.89250980000008,-6.720810899999947],[105.89319650000004,-6.723723899999925],[105.89113650000007,-6.725329],[105.89202150000006,-6.727088],[105.89084660000009,-6.730589399999928],[105.89357790000008,-6.730598899999961],[105.89386790000003,-6.735723],[105.89226570000005,-6.735810299999969],[105.89347110000006,-6.738241699999946],[105.891373,-6.739040399999965],[105.89196820000006,-6.740776499999981],[105.88994630000008,-6.740621099999942],[105.88842050000005,-6.7427936],[105.88938180000008,-6.744634599999927],[105.88719220000007,-6.744977],[105.88853490000008,-6.746567699999957],[105.88604770000006,-6.746152399999971],[105.88614690000009,-6.749499799999967],[105.88481940000008,-6.750438199999962],[105.88645970000005,-6.751903099999936],[105.88481940000008,-6.752008499999931],[105.88623080000008,-6.754843299999948],[105.88403360000007,-6.754249099999981],[105.88303410000009,-6.755541799999946],[105.88494150000008,-6.757405799999958],[105.88415560000004,-6.760747899999956],[105.882851,-6.761129399999959],[105.88403360000007,-6.7644973],[105.88183630000009,-6.763173599999959],[105.87760960000008,-6.767149399999937],[105.87599980000005,-6.766028899999981],[105.87661780000008,-6.768843699999934],[105.87403140000004,-6.768107899999961],[105.87405430000007,-6.7704935],[105.87213940000004,-6.769783],[105.87295570000003,-6.771739],[105.86866030000004,-6.775151699999981],[105.86808810000008,-6.778619299999946],[105.86646310000003,-6.779397],[105.86701240000008,-6.780904799999973],[105.86296880000003,-6.781258599999944],[105.86403690000009,-6.783458699999926],[105.86744730000004,-6.783901199999946],[105.86618840000006,-6.786941499999955],[105.86774480000008,-6.788468299999977],[105.86678350000005,-6.789958499999955],[105.86901130000007,-6.789974699999959],[105.87143740000005,-6.787482699999941],[105.87149090000008,-6.7940888],[105.87466470000004,-6.791881099999955],[105.87780030000005,-6.794757799999957],[105.87431370000007,-6.797520599999928],[105.876572,-6.799602499999935],[105.87793770000007,-6.803741899999977],[105.87604560000005,-6.806024499999978],[105.87339060000005,-6.80581],[105.87464940000007,-6.808891299999971],[105.86902650000007,-6.807226199999945],[105.86946140000003,-6.810598299999981],[105.87191050000007,-6.813560499999937],[105.87500040000003,-6.811579199999926],[105.87921180000006,-6.813677299999938],[105.87548870000006,-6.817840599999954],[105.87809030000005,-6.822290899999928],[105.88015020000006,-6.821869799999945],[105.88058510000008,-6.817488599999933],[105.88839760000008,-6.820752099999936],[105.88542970000009,-6.821100199999933],[105.88328590000003,-6.823085799999944],[105.88440740000004,-6.825437499999964],[105.88357580000007,-6.827882799999941],[105.88636820000005,-6.829024799999956],[105.88574260000007,-6.830797699999948],[105.88132510000008,-6.8298349],[105.88012730000008,-6.830808199999979],[105.880257,-6.8340454],[105.88347660000005,-6.836007099999961],[105.88177730000007,-6.840744499999971],[105.88098160000004,-6.843433299999958],[105.87945710000008,-6.843688699999973],[105.88260580000008,-6.845693],[105.887693,-6.8454668],[105.89649530000008,-6.839867699999957],[105.90061790000004,-6.842857699999968],[105.90137790000006,-6.840273399999944],[105.894239,-6.834137099999964],[105.89352680000007,-6.828984499999933],[105.89535760000007,-6.825909299999978],[105.90556,-6.8198],[105.92385,-6.8149],[105.94963,-6.81255],[105.97148,-6.81245],[105.99296,-6.81404],[106.02634880000005,-6.821080799999947],[106.02926980000007,-6.819900299999972],[106.03287310000007,-6.8211985],[106.03502150000008,-6.8237821],[106.04407530000009,-6.826217799999938],[106.06182710000007,-6.834793299999944],[106.06481510000003,-6.838081199999976],[106.06542620000005,-6.841941499999962],[106.07507410000005,-6.851808199999937],[106.08544180000007,-6.858791499999938],[106.09482390000005,-6.875616399999956],[106.10131220000005,-6.8775241],[106.10296960000005,-6.880039499999953],[106.10546310000007,-6.8804899],[106.10613710000007,-6.882970599999965],[106.10877350000004,-6.882730399999957],[106.11348140000007,-6.886479099999974],[106.11694190000009,-6.8858999],[106.11962960000005,-6.888242499999933],[106.13566,-6.89366],[106.13970590000008,-6.897170599999981],[106.14023810000003,-6.899328299999979],[106.14466190000007,-6.900384199999962],[106.14929690000008,-6.903567199999941],[106.15539190000004,-6.903058299999941],[106.16464240000005,-6.908847599999945],[106.17164930000007,-6.908600799999931],[106.17260390000007,-6.910784099999944],[106.17661190000007,-6.909546499999976],[106.18582920000006,-6.909943799999951],[106.20065630000005,-6.913855799999965],[106.21403230000004,-6.919265799999948],[106.23829670000003,-6.932268599999929],[106.24594650000006,-6.939857399999937],[106.24722050000008,-6.9488793],[106.24122540000008,-6.952032799999927],[106.2393,-6.955355499999939],[106.24229260000004,-6.958860699999946],[106.24581050000006,-6.961126399999955],[106.25309360000006,-6.960122499999954],[106.25920860000008,-6.962327199999947],[106.26271680000008,-6.967159199999969],[106.26524280000007,-6.968046],[106.26443190000003,-6.971059599999933],[106.26609,-6.97408],[106.270564,-6.976525],[106.27862620000008,-6.978161599999964],[106.28000890000004,-6.979880699999967],[106.28329250000007,-6.974167399999942],[106.301378,-6.978391099999953],[106.30896170000005,-6.986126199999944],[106.30654890000005,-6.995340399999975],[106.31132430000008,-6.995951099999957],[106.320374,-6.992773199999931],[106.32324790000007,-6.987360699999954],[106.32597250000003,-6.988698699999929],[106.32597530000004,-6.9916234],[106.33142810000004,-6.991749099999936],[106.33681160000003,-6.986573599999929],[106.34334840000008,-6.989778199999932],[106.34353880000003,-6.997509799999932],[106.353039,-6.994340899999941],[106.35608040000005,-6.996285499999942],[106.35491610000008,-6.999327499999936],[106.35975360000003,-6.996980299999962],[106.36307,-6.9905],[106.36396660000008,-6.992806299999927],[106.36716860000007,-6.993969099999958],[106.37025460000007,-6.992587299999968],[106.37208760000004,-6.989842299999964],[106.37471510000006,-6.991386],[106.37460320000008,-6.994471199999964],[106.38069340000004,-6.995130499999959],[106.38131980000009,-6.9893132],[106.384711,-6.988334499999951],[106.386721,-6.990718299999969],[106.39241120000008,-6.984832399999959],[106.39363250000008,-6.985397599999942],[106.39361590000004,-6.983100599999943],[106.39507980000008,-6.982831699999963],[106.397488,-6.978781199999958],[106.39597050000003,-6.977684699999941],[106.39638640000004,-6.9745059],[106.39373810000006,-6.973932499999933],[106.39306870000007,-6.971267599999976],[106.39386010000004,-6.963916299999937],[106.39553150000006,-6.962965899999972],[106.39222040000004,-6.9593419],[106.39539790000003,-6.959037099999932],[106.39499980000005,-6.950741299999947],[106.38964160000006,-6.941997499999957],[106.39144920000007,-6.939359899999943],[106.391083,-6.932365199999936],[106.39807150000007,-6.928857599999958],[106.39865140000006,-6.924288599999954],[106.400223,-6.924183699999958],[106.40007040000006,-6.920296],[106.39794180000007,-6.9183753],[106.39724760000007,-6.908919099999935],[106.39216640000006,-6.904633799999942],[106.39287590000004,-6.9006327],[106.40179470000004,-6.896439799999939],[106.40625790000007,-6.886378599999944],[106.40959190000007,-6.884318699999938],[106.41255980000005,-6.884599499999979],[106.41372710000007,-6.882412699999975],[106.41949490000007,-6.8804238],[106.41918970000006,-6.874290299999927],[106.42516350000005,-6.869212499999946],[106.42474390000007,-6.8656133],[106.428467,-6.864985799999943],[106.43101530000007,-6.862184799999966],[106.43213780000008,-6.857254699999942],[106.42984030000008,-6.855381299999976],[106.43202230000009,-6.849322199999961],[106.43117550000005,-6.846004799999946],[106.43531060000004,-6.838906099999974],[106.43484520000004,-6.8324421],[106.43762990000005,-6.827901699999927],[106.43553190000006,-6.825205599999947],[106.43705010000008,-6.822258799999929],[106.436043,-6.819803899999954],[106.44036890000007,-6.818782599999963],[106.44167350000004,-6.815611699999977],[106.44307730000008,-6.817613899999969],[106.44686910000007,-6.818526599999927],[106.44998190000007,-6.816253],[106.45291160000005,-6.813145199999951],[106.45219450000008,-6.8093632],[106.45402550000006,-6.808761],[106.45723750000008,-6.803562499999941],[106.46200590000007,-6.801661299999978],[106.46380640000007,-6.802878199999952],[106.46851370000007,-6.799820299999965],[106.47035240000008,-6.800577499999974],[106.47146630000009,-6.798123699999962],[106.47307610000007,-6.799684899999932],[106.47322870000005,-6.797418],[106.47749350000004,-6.796846199999948],[106.479317,-6.795126299999936],[106.48194070000005,-6.794640399999935],[106.48259760000008,-6.795810599999925],[106.48583240000005,-6.794582699999978],[106.48694630000006,-6.796173899999928],[106.48891470000007,-6.794887399999936],[106.48864010000005,-6.792447899999956],[106.497658,-6.791006399999958],[106.50753040000006,-6.781259899999952],[106.51585410000007,-6.7772545],[106.52553580000006,-6.768723799999975],[106.52477490000007,-6.762330499999962],[106.51469440000005,-6.759558099999936],[106.49839810000009,-6.752184299999954],[106.47553280000005,-6.752205699999934],[106.46663690000008,-6.750909199999967],[106.463196,-6.736881599999947],[106.45383480000004,-6.730781399999955],[106.45062280000008,-6.726855599999965],[106.45148490000008,-6.7144521],[106.44911220000006,-6.707098299999927],[106.43601250000006,-6.694980899999962],[106.42939020000006,-6.682105399999955],[106.42895530000004,-6.673036899999943],[106.43149590000007,-6.652736499999946],[106.43174770000007,-6.636523599999975],[106.43031340000005,-6.624999899999978],[106.43151880000005,-6.623274699999968],[106.42877220000008,-6.618564899999967],[106.42736080000009,-6.610804899999948],[106.430443,-6.590501199999949],[106.42436240000006,-6.5689601],[106.41632870000007,-6.559753299999954],[106.42331720000004,-6.550503599999956],[106.41593190000003,-6.544326599999977],[106.40872220000006,-6.534510399999931],[106.40751670000009,-6.523935199999926],[106.40480070000007,-6.5220379],[106.40537290000009,-6.520421799999951],[106.40348840000007,-6.516551399999969],[106.40598320000004,-6.496398799999952],[106.40966820000006,-6.492591199999936],[106.41259790000004,-6.4830679],[106.41126280000009,-6.477284299999951],[106.41171290000005,-6.467389399999945],[106.40748620000005,-6.460405699999967],[106.40467860000007,-6.459167299999933],[106.404877,-6.456772199999932],[106.40338920000005,-6.457303899999943],[106.40203880000007,-6.456014499999981],[106.40274840000006,-6.455221499999936],[106.40119960000004,-6.4557064],[106.40113860000008,-6.452834899999971],[106.406975,-6.453891599999963],[106.42490410000005,-6.449129399999947],[106.439934,-6.450122699999952],[106.44237540000006,-6.445116399999961],[106.44052910000005,-6.444165599999963],[106.43870570000007,-6.445527],[106.43790460000008,-6.444242399999951],[106.44099450000004,-6.441278299999965],[106.44360520000004,-6.441095599999926],[106.44395470000006,-6.4381403],[106.44644190000008,-6.4368118],[106.44640370000008,-6.4352964],[106.45027950000008,-6.434071399999937],[106.44800590000006,-6.430322499999932],[106.45294210000009,-6.428448499999945],[106.44994380000009,-6.426909799999976],[106.454674,-6.426913599999978],[106.449631,-6.421277399999951],[106.44631220000008,-6.423129899999935],[106.44457270000004,-6.422300199999938],[106.44630460000008,-6.419287599999961],[106.45404080000009,-6.418692],[106.45394160000006,-6.4138139],[106.44993620000008,-6.412983799999949],[106.45159940000008,-6.409293499999933],[106.45100430000008,-6.407012799999961],[106.44704460000008,-6.410662099999968],[106.444237,-6.407905899999946],[106.44398520000004,-6.404811799999948],[106.43930840000007,-6.404442699999947],[106.438164,-6.399560299999962],[106.44175750000005,-6.398211299999957],[106.44204740000004,-6.396315899999934],[106.44000270000004,-6.397694899999976],[106.434212,-6.394164399999966],[106.43485290000007,-6.3922848],[106.43835470000005,-6.3942917],[106.43751550000007,-6.391303899999969],[106.43528010000006,-6.3900584],[106.43797330000007,-6.387895],[106.433861,-6.3849681],[106.43192320000009,-6.376958699999932],[106.42742180000005,-6.376501899999937],[106.43081690000008,-6.3735035],[106.42911550000008,-6.3726777],[106.42845180000006,-6.369432299999971],[106.43199180000005,-6.3668307],[106.42982510000007,-6.363017],[106.43110680000007,-6.3610214],[106.429703,-6.358460799999932],[106.43077110000007,-6.35723],[106.42844420000006,-6.356772799999931],[106.42682670000005,-6.353885],[106.42935970000008,-6.350549099999967],[106.42553740000005,-6.350096099999973],[106.42670470000007,-6.348073799999952]]]},"properties":{"shapeName":"Lebak","shapeISO":"","shapeID":"22746128B81503441884410","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[102.37605890000003,-3.382015199999955],[102.38036850000009,-3.374832699999956],[102.38235830000008,-3.365452199999936],[102.38690640000004,-3.3577772],[102.39287580000007,-3.354650399999969],[102.41675330000004,-3.35863],[102.42357550000008,-3.358061499999963],[102.44119940000007,-3.347259699999938],[102.44347350000004,-3.344985699999938],[102.44262070000008,-3.341006099999959],[102.44739050000004,-3.337648699999932],[102.44432620000003,-3.334183899999971],[102.44461050000007,-3.331341399999928],[102.45029560000006,-3.328783],[102.45057990000004,-3.324803499999973],[102.44859010000005,-3.320823899999937],[102.453991,-3.320823899999937],[102.45569650000004,-3.319402599999933],[102.46138170000006,-3.321676599999932],[102.47531020000008,-3.321392399999979],[102.48469070000004,-3.326224699999955],[102.48980730000005,-3.326224699999955],[102.49236560000008,-3.322529399999951],[102.49748230000006,-3.319971099999975],[102.50032480000004,-3.315423],[102.50089340000005,-3.309737799999937],[102.49520820000004,-3.302062899999953],[102.48895460000006,-3.296662],[102.48696480000007,-3.283870499999978],[102.49463970000005,-3.267952099999945],[102.49390570000008,-3.260289299999954],[102.49807910000004,-3.260057499999959],[102.49728750000008,-3.255382],[102.49280020000003,-3.2511731],[102.49269350000009,-3.245828299999971],[102.48944890000007,-3.242285],[102.48977730000007,-3.239379799999938],[102.49469710000005,-3.232318799999973],[102.49494360000006,-3.228736899999944],[102.50026040000006,-3.222130599999957],[102.50412140000009,-3.219718299999954],[102.50573860000009,-3.215201599999943],[102.50269770000006,-3.210673499999928],[102.48901920000009,-3.207888199999957],[102.48745230000009,-3.204985199999953],[102.48697910000004,-3.201432199999942],[102.49036310000008,-3.196919899999955],[102.49230660000006,-3.190305299999977],[102.49065010000004,-3.181364],[102.49382670000006,-3.164156],[102.48901880000005,-3.156642899999952],[102.48883050000006,-3.143215699999928],[102.49253240000007,-3.135937399999932],[102.49218390000004,-3.133167199999946],[102.48914430000008,-3.130917899999929],[102.48832860000005,-3.1218828],[102.48581880000006,-3.115796599999953],[102.48800520000003,-3.108648699999947],[102.486314,-3.107891199999926],[102.476493,-3.096704099999954],[102.46746110000004,-3.080081399999926],[102.45225470000008,-3.070441799999969],[102.44525210000006,-3.06238],[102.43556130000007,-3.055170399999952],[102.41031210000006,-3.054157499999974],[102.40322010000006,-3.052585199999953],[102.38991790000006,-3.044271299999934],[102.37433840000006,-3.049556199999927],[102.370418,-3.0551572],[102.36413380000005,-3.055141799999944],[102.35234780000008,-3.0584863],[102.34915990000007,-3.061675299999933],[102.33954740000007,-3.062295399999925],[102.320545,-3.069816699999933],[102.31482820000008,-3.068981],[102.31403240000009,-3.065746499999932],[102.307571,-3.056651899999963],[102.29593310000007,-3.048036799999977],[102.29185180000007,-3.042847399999971],[102.28362590000006,-3.038032],[102.27324190000007,-3.037667099999965],[102.27405260000006,-3.040133],[102.26751510000008,-3.0409376],[102.26588750000008,-3.038469699999951],[102.25690560000004,-3.036804299999972],[102.24625770000006,-3.024878499999943],[102.24380580000008,-3.013912299999959],[102.24430960000007,-3.010436],[102.24185780000005,-3.0038529],[102.23739940000007,-2.997334799999976],[102.23420380000005,-2.968583399999943],[102.23095070000005,-2.962826499999949],[102.22853890000005,-2.947217],[102.22445690000006,-2.946385599999928],[102.22283540000006,-2.9414541],[102.22447720000008,-2.9381733],[102.22522770000006,-2.928455099999951],[102.21236370000008,-2.920669099999941],[102.20980150000008,-2.916784099999973],[102.20639920000008,-2.917687199999932],[102.20155320000003,-2.916610299999945],[102.198271,-2.918962699999952],[102.19372480000004,-2.918036699999959],[102.18219370000008,-2.901200899999935],[102.17051860000004,-2.896508299999937],[102.16358510000003,-2.895780399999978],[102.15522690000006,-2.886912199999927],[102.14880760000005,-2.883017699999925],[102.14816960000007,-2.881076899999925],[102.13919050000004,-2.8782725],[102.13789470000006,-2.876526199999944],[102.133167,-2.876080699999932],[102.13470440000003,-2.866822299999967],[102.13022850000004,-2.857115199999953],[102.13027970000007,-2.836430899999925],[102.12065450000006,-2.829296699999929],[102.114258,-2.816353099999958],[102.10077290000004,-2.810502099999951],[102.092531,-2.810063899999932],[102.08728970000004,-2.8040047],[102.08086640000005,-2.802049599999975],[102.07230330000004,-2.793385699999931],[102.06802240000007,-2.767906099999948],[102.05139320000006,-2.764758699999959],[102.02892940000004,-2.756677399999944],[102.01906810000008,-2.750020199999938],[102.01536780000004,-2.7441794],[102.00507720000007,-2.737595699999929],[102.00319040000005,-2.734142499999962],[101.99752990000007,-2.730618],[101.99012510000006,-2.723142],[101.96299770000007,-2.725705199999936],[101.95320760000004,-2.734783299999947],[101.94370230000004,-2.733786499999951],[101.93298670000007,-2.730262],[101.92864340000006,-2.731614799999932],[101.9219,-2.736835],[101.92530990000006,-2.742403599999932],[101.92875020000008,-2.757603],[101.93263070000006,-2.765043499999933],[101.946586,-2.775723599999935],[101.9489,-2.781312799999967],[101.950324,-2.791031699999962],[101.96276870000008,-2.809589099999926],[101.96410130000004,-2.815489099999979],[101.97883980000006,-2.832648399999925],[101.98624470000004,-2.8390209],[101.99058790000004,-2.841477299999951],[101.99963040000006,-2.843577699999969],[102.00739120000009,-2.852228599999933],[102.01109370000006,-2.863193399999943],[102.00819050000007,-2.884556699999962],[102.01063080000006,-2.893097699999942],[102.01515210000008,-2.900004099999933],[102.0293,-2.912888],[102.0318,-2.916916],[102.038163,-2.948036299999956],[102.04172870000008,-2.973792399999979],[102.04896670000005,-2.983028899999965],[102.06659990000009,-2.991979799999967],[102.07687760000005,-2.9939279],[102.08357830000006,-2.998646899999926],[102.08452640000007,-3.003966499999933],[102.0927,-3.010205],[102.09536360000004,-3.016661899999974],[102.1035,-3.026308],[102.104,-3.037181],[102.10797150000008,-3.044131399999969],[102.11639290000005,-3.051798599999927],[102.1345,-3.064437],[102.1385,-3.070186],[102.14269010000004,-3.081558],[102.14272520000009,-3.085117],[102.1426,-3.089861],[102.1387,-3.098722],[102.13808940000007,-3.103923899999927],[102.142052,-3.108814799999948],[102.14218780000004,-3.111984899999925],[102.14033110000008,-3.119842099999971],[102.1325,-3.131971699999951],[102.13605150000006,-3.139179599999977],[102.1364,-3.143939],[102.13208890000004,-3.15109],[102.1262,-3.173397],[102.1329,-3.185744],[102.14162740000006,-3.196909199999936],[102.14978340000005,-3.194632599999977],[102.15362520000008,-3.189449499999967],[102.16926930000005,-3.208635699999945],[102.16015410000006,-3.226608399999975],[102.16524510000005,-3.228751399999965],[102.17207680000007,-3.22787],[102.19179260000004,-3.218564399999934],[102.19870890000004,-3.2216802],[102.20279070000004,-3.220548299999962],[102.20601490000007,-3.221405799999957],[102.20938970000009,-3.224753899999939],[102.21630510000006,-3.227888599999972],[102.222172,-3.237562699999955],[102.22721620000004,-3.241963899999973],[102.236167,-3.246365199999957],[102.24264530000005,-3.255563299999949],[102.24932140000004,-3.262041599999975],[102.26222840000008,-3.268470399999956],[102.27076930000004,-3.276735899999949],[102.28902190000008,-3.280235599999969],[102.29139420000007,-3.284121599999935],[102.29231510000005,-3.300615199999925],[102.29480090000004,-3.305776699999967],[102.29825340000008,-3.321537199999966],[102.29718310000004,-3.324575399999958],[102.28019690000008,-3.337263299999961],[102.27368620000004,-3.354139499999974],[102.27342750000008,-3.357854299999929],[102.27509080000004,-3.361014599999976],[102.29222330000005,-3.3642489],[102.30070640000008,-3.368388799999934],[102.31504810000007,-3.372676499999955],[102.32131330000004,-3.371844899999928],[102.34249330000006,-3.37373],[102.35932290000005,-3.373223399999972],[102.37605890000003,-3.382015199999955]]]},"properties":{"shapeName":"Lebong","shapeISO":"","shapeID":"22746128B51103951209224","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[123.84488950000002,-8.209949],[123.8421631000001,-8.205107699999928],[123.8428345000001,-8.199234],[123.82937620000007,-8.19719509999993],[123.82364650000011,-8.190238],[123.81584930000008,-8.187029799999948],[123.80838010000002,-8.176438299999973],[123.79075620000003,-8.169224699999972],[123.78225710000004,-8.167173399999967],[123.7726288,-8.170344399999976],[123.76725010000007,-8.1752825],[123.76205440000001,-8.177084899999954],[123.759346,-8.180426599999976],[123.7534485000001,-8.183791199999973],[123.74658970000007,-8.193428],[123.74121860000002,-8.196667699999978],[123.7375717000001,-8.202899899999977],[123.73043060000009,-8.207710299999974],[123.72627260000002,-8.2133636],[123.72384640000007,-8.208588599999928],[123.71604920000004,-8.210568399999943],[123.71263890000012,-8.213050799999962],[123.7142639000001,-8.218638399999975],[123.712532,-8.219395599999928],[123.707962,-8.215314899999953],[123.698143,-8.214707399999952],[123.6957245000001,-8.218230199999937],[123.69734190000008,-8.223356199999955],[123.71341710000002,-8.237256],[123.7110977000001,-8.239638299999967],[123.70770260000006,-8.23692509999995],[123.70400240000004,-8.237860699999942],[123.7022171000001,-8.241836499999977],[123.70187380000004,-8.248524699999962],[123.69910430000004,-8.251820599999974],[123.69258120000006,-8.254425],[123.6879044000001,-8.255071599999951],[123.67958070000009,-8.253309199999933],[123.673912,-8.249805399999957],[123.67021940000006,-8.253217699999936],[123.66796880000004,-8.253396],[123.64439390000007,-8.247234299999946],[123.64317320000009,-8.243491199999937],[123.645256,-8.242164599999967],[123.6486053000001,-8.24537659999993],[123.65334320000011,-8.244793899999934],[123.65525050000008,-8.247670199999959],[123.65756230000011,-8.247257199999979],[123.65784450000001,-8.244319899999937],[123.6549606000001,-8.238161099999957],[123.66003420000004,-8.228694899999937],[123.65724180000007,-8.221496599999966],[123.64597320000007,-8.2140369],[123.6390381000001,-8.212385199999972],[123.63245390000009,-8.213779399999964],[123.62657170000011,-8.216963799999974],[123.62293240000008,-8.22107219999998],[123.61853790000009,-8.222577099999967],[123.6072693000001,-8.216726299999948],[123.60427090000007,-8.216677699999934],[123.6063004,-8.223938],[123.60729220000007,-8.238164899999958],[123.61833190000004,-8.240156199999944],[123.6279297000001,-8.246701199999961],[123.62908940000011,-8.250444399999935],[123.62928010000007,-8.266984899999954],[123.6303253000001,-8.271188699999925],[123.6366882000001,-8.280505199999936],[123.63645940000004,-8.28373149999993],[123.6304626000001,-8.293432199999927],[123.61251070000003,-8.305696499999954],[123.607254,-8.3128586],[123.59969330000001,-8.31593319999996],[123.59819030000006,-8.313454599999943],[123.5980072000001,-8.305907199999979],[123.60550690000002,-8.2978172],[123.604744,-8.286644899999942],[123.60203550000006,-8.283767699999942],[123.58984380000004,-8.285119099999974],[123.58591460000002,-8.286976799999934],[123.57926180000004,-8.283535],[123.57522580000011,-8.284986499999945],[123.57453160000011,-8.287760699999978],[123.57580570000005,-8.291386599999953],[123.57425690000002,-8.298018499999955],[123.57605740000008,-8.3105755],[123.5778580000001,-8.312186199999928],[123.5835724000001,-8.312336899999934],[123.59096530000011,-8.310301799999934],[123.59270480000009,-8.315310499999953],[123.5904617000001,-8.3261003],[123.5927124000001,-8.325804699999935],[123.597908,-8.319971099999975],[123.599411,-8.321925199999953],[123.59941860000004,-8.326534299999935],[123.58615110000005,-8.349677099999951],[123.57270050000011,-8.360030199999926],[123.55393220000008,-8.365722699999935],[123.54471590000003,-8.365108499999963],[123.53417210000009,-8.361516],[123.517868,-8.348936099999946],[123.512558,-8.34877679999994],[123.50655370000004,-8.351156199999934],[123.50297550000005,-8.3568106],[123.5004272000001,-8.357503899999926],[123.49806210000008,-8.355494499999963],[123.49874880000004,-8.353533699999957],[123.49742130000004,-8.3526735],[123.50325010000006,-8.350700399999937],[123.502327,-8.348856],[123.49834440000006,-8.348869299999933],[123.4977646000001,-8.346970599999963],[123.50012970000012,-8.345463799999948],[123.50273130000005,-8.346380199999942],[123.50354,-8.345223399999952],[123.500473,-8.342527399999938],[123.5031815000001,-8.34021569999993],[123.50214390000008,-8.338199599999939],[123.49792480000008,-8.335962299999949],[123.50629430000004,-8.330295599999943],[123.51246640000011,-8.318578699999932],[123.51702120000004,-8.314353899999958],[123.51632690000008,-8.309291799999926],[123.51770780000004,-8.307675399999937],[123.53070070000001,-8.30256369999995],[123.53364560000011,-8.297487299999943],[123.53513340000006,-8.289128299999959],[123.54431150000005,-8.283109699999955],[123.54506680000009,-8.278952599999968],[123.54286190000005,-8.272334099999966],[123.546669,-8.270024299999932],[123.54759220000005,-8.266735099999948],[123.55191800000011,-8.2664957],[123.55347440000003,-8.264120099999957],[123.54763790000004,-8.257226899999978],[123.54705050000007,-8.254054099999962],[123.56374360000007,-8.247211499999935],[123.5640869,-8.245079],[123.56177520000006,-8.24151519999998],[123.55738070000007,-8.240778],[123.56066890000011,-8.236786799999948],[123.55171970000004,-8.237735699999973],[123.53824620000012,-8.231946],[123.495163,-8.23949239999996],[123.47956850000003,-8.246570599999927],[123.46470640000007,-8.265101399999935],[123.45937350000008,-8.268404],[123.45024870000009,-8.2680235],[123.43938450000007,-8.260619199999951],[123.43683620000002,-8.260624899999925],[123.4381790000001,-8.267884299999935],[123.43592830000011,-8.269907],[123.42551420000007,-8.264400499999965],[123.41840360000003,-8.252832399999932],[123.4074783000001,-8.250154499999951],[123.39801790000001,-8.257673299999965],[123.38403320000009,-8.2606411],[123.36620330000005,-8.278383299999973],[123.36586000000011,-8.282712],[123.36805730000003,-8.285760899999957],[123.36685180000006,-8.289275199999963],[123.3592834000001,-8.2930994],[123.34559630000001,-8.2960768],[123.34722140000008,-8.304194399999972],[123.35069270000008,-8.304533],[123.35611720000009,-8.2990437],[123.36929320000002,-8.301832199999978],[123.37517550000007,-8.295764899999938],[123.39112850000004,-8.296477299999935],[123.39683530000002,-8.29144],[123.3988647000001,-8.297263099999952],[123.40486150000004,-8.289062499999943],[123.40868380000006,-8.291353199999946],[123.41139220000002,-8.291347499999972],[123.415741,-8.288658099999964],[123.41683200000011,-8.29370309999996],[123.41885380000008,-8.294843699999944],[123.430809,-8.294241899999975],[123.45614620000003,-8.313990599999954],[123.46590420000007,-8.323419599999966],[123.4690323000001,-8.329234099999951],[123.47342680000008,-8.333025899999939],[123.47302250000007,-8.334986699999945],[123.45992280000007,-8.346948599999962],[123.4490128000001,-8.353435499999932],[123.44358060000002,-8.353692099999932],[123.44000240000003,-8.355993299999966],[123.43642430000011,-8.3627415],[123.43227390000004,-8.365637799999945],[123.41072850000012,-8.3684626],[123.40107730000011,-8.366292],[123.39234920000001,-8.368506399999944],[123.3853683000001,-8.373478899999952],[123.3812180000001,-8.381907499999954],[123.3751602000001,-8.385669699999937],[123.36608890000002,-8.38603969999997],[123.360527,-8.388989399999957],[123.35228730000006,-8.390626],[123.34519200000011,-8.395887399999935],[123.33929440000009,-8.39590839999994],[123.3365784,-8.3981562],[123.33231350000005,-8.402436299999977],[123.3287888000001,-8.409708],[123.3158112000001,-8.424608199999966],[123.31356810000011,-8.429910699999937],[123.3095856000001,-8.43436239999994],[123.30600740000011,-8.443993599999942],[123.30061340000009,-8.4512463],[123.29418180000005,-8.456418],[123.2906647000001,-8.462072399999954],[123.28194430000008,-8.462443399999927],[123.26850130000003,-8.479303399999935],[123.25112920000004,-8.490700699999934],[123.23421480000002,-8.507114399999978],[123.22595210000009,-8.509265899999946],[123.21659090000003,-8.505893699999945],[123.2076416000001,-8.5142174],[123.20771030000003,-8.516748399999926],[123.21655270000008,-8.524449299999958],[123.21701810000002,-8.526411099999962],[123.21315,-8.528260199999977],[123.21251680000012,-8.532353399999977],[123.213562,-8.532987599999956],[123.21587370000009,-8.530675899999949],[123.21685030000003,-8.531536099999926],[123.220253,-8.530030299999964],[123.22655490000011,-8.531627699999945],[123.22667690000003,-8.533299399999976],[123.220787,-8.537351599999965],[123.21981810000011,-8.547266],[123.22218320000002,-8.550196599999936],[123.23073580000005,-8.549139],[123.23218540000005,-8.547921199999962],[123.23217010000008,-8.542335499999979],[123.233963,-8.539905499999975],[123.2428513000001,-8.537347799999964],[123.25031280000007,-8.538196599999935],[123.259552,-8.543005899999969],[123.26694490000011,-8.541432399999962],[123.27267460000007,-8.5424595],[123.2776947000001,-8.541407599999957],[123.29185490000009,-8.546899799999949],[123.29254150000008,-8.544306799999958],[123.29792020000002,-8.544004399999949],[123.29733280000005,-8.538996699999927],[123.30269620000001,-8.535639799999956],[123.30547330000002,-8.531711599999937],[123.31360630000006,-8.525239899999974],[123.31868740000004,-8.523265799999933],[123.321991,-8.52814959999995],[123.32868960000008,-8.5302086],[123.33026120000011,-8.533436799999947],[123.33274840000001,-8.533946],[123.33586120000007,-8.537103699999932],[123.33956150000006,-8.535082799999941],[123.34487150000007,-8.535531],[123.34552,-8.540946],[123.35037230000012,-8.548425699999939],[123.35031890000005,-8.55268289999998],[123.35466770000005,-8.560632699999928],[123.362236,-8.563777],[123.37165830000004,-8.571478799999966],[123.3822937000001,-8.576000199999953],[123.38767240000004,-8.581582099999935],[123.39206700000011,-8.580529199999944],[123.39328000000012,-8.583640099999968],[123.40119170000003,-8.580331799999954],[123.4050674,-8.581357],[123.4181747,-8.574583099999927],[123.42469790000007,-8.573180199999967],[123.43144990000008,-8.561238299999957],[123.44552610000005,-8.546041499999944],[123.44568630000003,-8.541260699999953],[123.44817350000005,-8.536355],[123.44747160000009,-8.531401599999981],[123.4624252000001,-8.523580599999946],[123.46358490000011,-8.529050799999936],[123.475647,-8.51870539999993],[123.48053740000012,-8.518068299999982],[123.4900894000001,-8.512791599999957],[123.49297330000002,-8.512667699999952],[123.50488280000002,-8.515283599999975],[123.50829320000003,-8.51954459999996],[123.50650020000012,-8.524214699999959],[123.50859830000002,-8.533951799999954],[123.5043793000001,-8.536496199999931],[123.50408940000011,-8.538222299999973],[123.5080795,-8.538217499999973],[123.508667,-8.5446711],[123.51247410000008,-8.545814499999949],[123.51052090000007,-8.550711599999943],[123.51381680000009,-8.552260399999966],[123.51879120000001,-8.5592794],[123.53005980000012,-8.566458699999941],[123.5373459000001,-8.566322299999968],[123.54398350000008,-8.563418399999932],[123.5476837000001,-8.567218799999978],[123.54918670000006,-8.566696199999967],[123.55149080000001,-8.562767],[123.5540390000001,-8.562362699999937],[123.56009670000003,-8.556982],[123.56245420000005,-8.5523663],[123.56920620000005,-8.547790499999962],[123.575798,-8.546342799999934],[123.57752230000006,-8.542701699999952],[123.584053,-8.538713499999972],[123.5881882000001,-8.525964699999975],[123.58506770000008,-8.521244],[123.58397670000011,-8.505379699999935],[123.58175660000006,-8.500280399999951],[123.56382750000012,-8.481858299999942],[123.56260680000003,-8.475548699999933],[123.55706020000002,-8.472677199999964],[123.55369570000005,-8.465307199999927],[123.5671463000001,-8.451095599999974],[123.58198550000009,-8.4429674],[123.58665470000005,-8.4382],[123.58988950000003,-8.43732639999996],[123.60656740000002,-8.421897899999976],[123.61418910000009,-8.419221899999968],[123.61562350000008,-8.412363099999936],[123.62486270000011,-8.401734399999953],[123.62861630000009,-8.40028289999998],[123.63693240000009,-8.401413],[123.64831540000012,-8.40023229999997],[123.65254210000012,-8.403173399999957],[123.65589140000009,-8.408627499999966],[123.65076450000004,-8.424719799999934],[123.65238190000002,-8.42558],[123.67462160000002,-8.422927899999934],[123.69315340000003,-8.408296599999971],[123.7006378000001,-8.392893799999968],[123.700119,-8.384532899999954],[123.70138550000001,-8.3809643],[123.71944430000008,-8.357799499999942],[123.73139190000006,-8.346478499999932],[123.73606110000003,-8.337472],[123.7374268000001,-8.325136199999974],[123.73990630000003,-8.31901929999998],[123.7530594000001,-8.298932099999945],[123.77031710000006,-8.284081499999957],[123.78677370000003,-8.279137599999956],[123.78971860000001,-8.276881199999934],[123.78913880000005,-8.275208499999962],[123.78584290000003,-8.2748795],[123.78775020000012,-8.272621199999946],[123.804718,-8.269132599999978],[123.83194730000002,-8.275045399999954],[123.83737950000011,-8.280212399999925],[123.85164640000005,-8.272861499999976],[123.864296,-8.27219679999996],[123.8737106000001,-8.26969429999997],[123.8930511000001,-8.259899099999927],[123.91811370000005,-8.253210099999933],[123.92209630000002,-8.249680499999954],[123.92475130000003,-8.244142499999953],[123.92346950000001,-8.239188199999944],[123.914566,-8.227573399999926],[123.90715030000001,-8.212200199999927],[123.90489960000002,-8.210887],[123.884964,-8.210070599999938],[123.87848660000009,-8.207785599999966],[123.86809540000002,-8.209709199999963],[123.86122890000001,-8.212901099999954],[123.85996250000005,-8.221142799999939],[123.85494230000006,-8.224210699999958],[123.85181430000011,-8.219317399999966],[123.8547516000001,-8.212162],[123.8534241000001,-8.210841199999948],[123.84620670000004,-8.211150199999963],[123.84488950000002,-8.209949]]]},"properties":{"shapeName":"Lembata","shapeISO":"","shapeID":"22746128B89894386882745","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.53555930000005,-0.280546799999968],[100.53961590000006,-0.2839552],[100.54348520000008,-0.284615],[100.54981490000006,-0.282751],[100.55821630000008,-0.283735699999966],[100.56752290000009,-0.280885599999976],[100.57484820000008,-0.284049899999957],[100.57471050000004,-0.287251499999968],[100.57951730000008,-0.288372299999935],[100.57955150000004,-0.292125399999975],[100.58205820000006,-0.293979099999945],[100.57650590000009,-0.302092199999947],[100.57999580000006,-0.308883599999945],[100.58454360000007,-0.312229199999933],[100.58834010000004,-0.311604599999953],[100.59325040000004,-0.313557299999957],[100.59899630000007,-0.312561599999924],[100.60086220000005,-0.314071599999977],[100.60219670000004,-0.334924899999976],[100.601374,-0.344205399999964],[100.60527670000005,-0.3508518],[100.60800060000008,-0.352235099999973],[100.61708690000006,-0.351372899999944],[100.62502120000005,-0.352557699999977],[100.63785240000004,-0.351008899999954],[100.64513190000008,-0.352400299999942],[100.661717,-0.3493045],[100.66795620000005,-0.344917],[100.66660590000004,-0.331940199999963],[100.66825430000006,-0.329018899999937],[100.67392030000008,-0.324939299999926],[100.686181,-0.327132499999948],[100.68918630000007,-0.3349429],[100.69579920000007,-0.339468599999975],[100.71120890000009,-0.343625399999951],[100.73562130000005,-0.358361299999956],[100.75000130000006,-0.363024799999948],[100.75434560000008,-0.366225099999951],[100.76289250000008,-0.365246799999966],[100.77374760000004,-0.360433799999953],[100.77573120000005,-0.358064199999944],[100.77293940000004,-0.355641299999945],[100.77290810000005,-0.350794299999961],[100.77625840000007,-0.349771699999962],[100.77782080000009,-0.3465612],[100.78361880000006,-0.348404799999969],[100.78571310000007,-0.346948499999939],[100.78650530000004,-0.349561799999947],[100.79113620000004,-0.351830699999937],[100.79907710000003,-0.351196199999947],[100.80287430000004,-0.353275199999928],[100.80742110000006,-0.353156799999965],[100.808648,-0.351555899999937],[100.81022830000006,-0.354150899999979],[100.81261740000008,-0.353490399999941],[100.81320960000005,-0.350334299999929],[100.82424060000005,-0.351597399999946],[100.82474420000005,-0.347361599999942],[100.82894120000009,-0.347529499999951],[100.829277,-0.348704699999928],[100.83968550000009,-0.347529499999951],[100.83884610000007,-0.346018599999979],[100.84141,-0.346161],[100.84379650000005,-0.344199899999978],[100.84455590000005,-0.339450499999941],[100.84041330000008,-0.326092],[100.84107830000005,-0.313058199999944],[100.83867470000007,-0.306519299999934],[100.84112,-0.296889199999953],[100.83747060000007,-0.289275599999939],[100.83195310000008,-0.285066299999926],[100.822432,-0.283724199999938],[100.80601310000009,-0.271499],[100.80449950000008,-0.265318199999967],[100.805121,-0.2556434],[100.80151550000005,-0.243147499999964],[100.79377330000005,-0.237415299999952],[100.78095820000004,-0.2240693],[100.77704230000006,-0.217978199999948],[100.77290450000004,-0.2173965],[100.77085760000006,-0.215067599999941],[100.76578550000005,-0.214530699999955],[100.763147,-0.212315],[100.76324640000007,-0.200031699999954],[100.76925380000006,-0.177198899999951],[100.767939,-0.171725699999968],[100.76822450000009,-0.161542199999928],[100.76329750000008,-0.145410899999945],[100.75622590000006,-0.139468699999952],[100.75493950000003,-0.136091199999953],[100.75416830000006,-0.132454799999948],[100.75596610000008,-0.129081399999961],[100.761413,-0.124644499999931],[100.761418,-0.119710899999973],[100.757787,-0.112664199999926],[100.75390980000009,-0.092855499999928],[100.75338910000005,-0.082980299999974],[100.74336570000008,-0.072331899999938],[100.74270260000009,-0.0632753],[100.74527390000009,-0.046400799999958],[100.75067480000007,-0.044645],[100.75701370000007,-0.039497599999947],[100.75856640000006,-0.031946399999924],[100.76250050000004,-0.026065799999969],[100.77530020000006,-0.014310699999953],[100.78228440000004,-0.011317499999961],[100.78594280000004,-0.013978099999974],[100.78902620000008,-0.020829799999944],[100.80106360000008,-0.023982199999978],[100.80922340000006,-0.030274599999927],[100.81089860000009,-0.039344399999948],[100.81192970000006,-0.040727499999946],[100.81454470000006,-0.040252],[100.81920090000006,-0.032602699999927],[100.82508080000008,-0.031910599999946],[100.82621480000006,-0.033393899999965],[100.827721,-0.031272399999978],[100.82797970000007,-0.028408199999944],[100.82435630000003,-0.020597],[100.826168,-0.016951699999936],[100.84767430000005,0],[100.84429420000004,0.027318300000047],[100.84788550000007,0.038237700000025],[100.85147670000003,0.044395200000054],[100.85172170000004,0.049567500000023],[100.85017110000007,0.05326210000004],[100.83721570000006,0.060579200000063],[100.83533870000008,0.065177],[100.83248220000007,0.066901200000075],[100.828483,0.06435620000002],[100.81673020000005,0.062468300000035],[100.81428170000004,0.060908400000073],[100.80905790000008,0.050892100000056],[100.80440570000007,0.048839600000065],[100.80105950000006,0.049496500000032],[100.79924060000008,0.058165100000053],[100.79499670000007,0.061367300000029],[100.79205880000006,0.070563],[100.78659070000003,0.076474700000063],[100.78144880000008,0.077788600000019],[100.779327,0.083864400000039],[100.78129360000008,0.089176800000075],[100.781049,0.093199900000059],[100.77443840000007,0.102067500000032],[100.77713190000009,0.104284200000052],[100.78668130000005,0.106993100000068],[100.79012660000006,0.115580300000033],[100.78425050000004,0.121984700000041],[100.78784210000003,0.127978100000064],[100.80285970000006,0.128469600000074],[100.81994780000008,0.143047800000033],[100.82468160000008,0.14354],[100.83496490000005,0.140090900000075],[100.84067840000006,0.145591200000069],[100.84035250000005,0.15207730000003],[100.84885220000007,0.170350800000051],[100.84893430000005,0.175441100000057],[100.84265040000008,0.180942500000072],[100.84550760000008,0.186771400000055],[100.84345870000004,0.197172],[100.84525540000004,0.20759860000004],[100.83905330000005,0.213018100000056],[100.83897240000005,0.218518900000049],[100.84148710000005,0.222600900000032],[100.84132430000005,0.225967100000048],[100.83438810000007,0.235081300000047],[100.82590060000007,0.239351700000043],[100.81896450000005,0.249040700000023],[100.80794660000004,0.251997900000049],[100.80427450000008,0.256432],[100.800357,0.257910400000071],[100.78787230000006,0.253465200000051],[100.77269090000004,0.25125040000006],[100.76803810000007,0.247228],[100.76664960000005,0.239181900000062],[100.764772,0.236883200000022],[100.75489610000005,0.237212900000031],[100.74804050000006,0.24033380000003],[100.74126620000004,0.241484100000037],[100.738572,0.236229700000024],[100.73155270000007,0.236230600000056],[100.72324850000007,0.241969500000039],[100.71345360000004,0.238604400000042],[100.70146430000005,0.245988],[100.70014710000004,0.237494100000049],[100.69458810000003,0.23184980000002],[100.69546650000007,0.216948800000068],[100.68477250000007,0.203566300000034],[100.682404,0.188951300000042],[100.67620040000008,0.18624230000006],[100.66730450000006,0.195603600000027],[100.64906390000004,0.203611800000033],[100.62980220000009,0.219214800000032],[100.62015350000007,0.235850600000049],[100.61337940000004,0.24274870000005],[100.60159910000004,0.25930980000004],[100.59409050000005,0.267686200000071],[100.58413270000005,0.272696300000064],[100.57719530000008,0.279102],[100.56433870000006,0.29706230000005],[100.55462580000005,0.302811600000041],[100.54146660000004,0.307376300000044],[100.53591640000008,0.311811200000022],[100.53175430000005,0.318216800000073],[100.53812350000004,0.332503700000075],[100.53405240000006,0.340555400000028],[100.52723310000005,0.345198],[100.52151640000005,0.346006100000068],[100.51519910000007,0.354079200000058],[100.49895330000004,0.364492900000073],[100.49751620000006,0.376801100000023],[100.488906,0.392979500000024],[100.48236320000007,0.401113500000065],[100.47075,0.40710480000007],[100.46906220000005,0.405508],[100.46757950000006,0.39969160000004],[100.46509210000005,0.397915],[100.45350710000008,0.405968200000075],[100.43815610000007,0.413141500000052],[100.43532820000007,0.417534900000021],[100.43102980000003,0.421830200000045],[100.41978990000007,0.423900700000047],[100.416499,0.417764900000066],[100.40985020000005,0.414663500000074],[100.40248250000008,0.405935900000031],[100.38918490000003,0.39897430000002],[100.37577140000008,0.389314],[100.36610830000006,0.394831500000066],[100.36405140000005,0.390281200000061],[100.34718970000006,0.384285300000045],[100.34415820000004,0.384513],[100.33764790000004,0.390719500000046],[100.31957150000005,0.402992900000072],[100.31676120000009,0.402028],[100.31340210000008,0.398236300000065],[100.30051260000005,0.396600200000023],[100.30126650000005,0.387855100000024],[100.30299230000008,0.384330400000067],[100.31167380000005,0.377739900000051],[100.31951150000003,0.367601300000047],[100.32555330000008,0.366476300000045],[100.32616220000006,0.364177700000027],[100.32322480000005,0.360936600000059],[100.324189,0.35761640000004],[100.333429,0.351536800000019],[100.32799560000007,0.343794600000024],[100.33215820000004,0.338022200000069],[100.33205640000006,0.335877],[100.32895880000007,0.332863800000041],[100.31995820000009,0.314733900000022],[100.31009380000006,0.305723200000045],[100.30867150000006,0.300206900000035],[100.31532840000006,0.288118700000041],[100.319847,0.286483700000019],[100.315786,0.27442730000007],[100.31933680000009,0.274094500000047],[100.33214110000006,0.252665200000024],[100.32943590000008,0.234546200000068],[100.33245390000008,0.227459900000042],[100.33270480000004,0.219446],[100.33656130000008,0.210756900000035],[100.34369460000005,0.201420600000063],[100.35149110000003,0.177631500000075],[100.34954170000003,0.170585500000072],[100.32824160000007,0.149666400000058],[100.32798980000007,0.145026800000039],[100.32403610000006,0.136687400000028],[100.32403570000008,0.123190200000067],[100.320849,0.118635100000063],[100.32042930000006,0.114332900000022],[100.32093260000005,0.111241],[100.32403510000006,0.107529100000022],[100.32487340000006,0.102045900000064],[100.31581660000006,0.087789800000053],[100.31782890000005,0.080956800000024],[100.327409,0.063680200000022],[100.33017630000006,0.052292],[100.33764610000009,0.042762],[100.33485220000006,0.037572500000067],[100.32788710000005,0.034424800000068],[100.32008580000007,0.027406],[100.31403630000005,0.00522890000002],[100.30832160000006,-0.002425599999924],[100.29564130000006,-0.008845699999938],[100.27729330000005,-0.009863799999948],[100.27389530000005,-0.011197899999956],[100.26883740000005,-0.017324099999939],[100.26170980000006,-0.019492],[100.26005230000004,-0.022493699999927],[100.26489880000008,-0.031711499999972],[100.26436480000007,-0.034798099999932],[100.301778,-0.055618699999968],[100.30661470000007,-0.054766499999971],[100.30959730000006,-0.051033199999949],[100.31677160000004,-0.046082599999977],[100.32031880000005,-0.055902299999957],[100.32515560000007,-0.060122299999932],[100.32999260000008,-0.074161899999979],[100.33208860000008,-0.076677599999925],[100.35538550000007,-0.085887899999932],[100.35691730000008,-0.091081699999961],[100.351608,-0.093717],[100.35780420000003,-0.096194299999979],[100.36175440000005,-0.102605299999937],[100.36183510000006,-0.105364499999951],[100.36505970000007,-0.109016299999951],[100.36731680000008,-0.109097299999974],[100.37183110000007,-0.112911299999951],[100.374411,-0.120174399999939],[100.37287980000008,-0.127721699999938],[100.37849320000004,-0.145693299999948],[100.38777630000004,-0.149166],[100.39452750000004,-0.149365499999931],[100.396315,-0.156661699999972],[100.39969090000005,-0.160659499999952],[100.41557610000007,-0.163656899999978],[100.43980110000007,-0.172300699999937],[100.44248190000008,-0.175898599999925],[100.44228480000004,-0.193589499999973],[100.44754750000004,-0.203334],[100.46224140000004,-0.209929199999976],[100.46770220000008,-0.214926],[100.46780180000007,-0.217624599999965],[100.46949660000007,-0.219288399999925],[100.48107860000005,-0.222848599999963],[100.48511220000006,-0.227060499999936],[100.499361,-0.2344432],[100.50840030000006,-0.241615399999944],[100.51728150000008,-0.244313299999931],[100.52123480000006,-0.248397099999977],[100.525708,-0.249548599999969],[100.52706020000005,-0.248501199999964],[100.53548660000007,-0.253212699999949],[100.53943990000005,-0.257296399999973],[100.53963020000003,-0.259139599999969],[100.53247220000009,-0.277179199999978],[100.53555930000005,-0.280546799999968]],[[100.65589790000007,-0.188157],[100.65767210000007,-0.187034299999937],[100.659579,-0.18777],[100.66113050000007,-0.186161199999958],[100.66273570000004,-0.187477099999967],[100.66270410000004,-0.190320499999928],[100.67075420000003,-0.189139],[100.67760790000005,-0.192311],[100.67740240000006,-0.199023799999964],[100.67973410000008,-0.201393499999938],[100.68032490000007,-0.204743899999926],[100.68436160000005,-0.207181799999944],[100.68592920000003,-0.2120728],[100.68534380000006,-0.216153299999974],[100.67723160000008,-0.214512199999945],[100.67528740000006,-0.220375],[100.677429,-0.2313968],[100.66742290000008,-0.238192699999956],[100.66747680000003,-0.243333],[100.66061740000004,-0.241014099999973],[100.64617870000006,-0.249975699999936],[100.64908470000006,-0.265474899999958],[100.64729830000005,-0.270566699999961],[100.64936150000005,-0.273883599999976],[100.64610560000006,-0.274182199999927],[100.63428670000008,-0.268047699999954],[100.622589,-0.271758899999952],[100.61869090000005,-0.274905399999966],[100.60576230000004,-0.270459799999969],[100.60348810000005,-0.267451599999958],[100.59840560000004,-0.264953],[100.59857840000006,-0.262211599999944],[100.59073180000007,-0.247341699999936],[100.57957750000008,-0.2429733],[100.58610330000005,-0.237417899999969],[100.59932450000008,-0.219542899999965],[100.58317940000006,-0.210182399999951],[100.58358990000005,-0.201434799999959],[100.58593840000003,-0.198177299999941],[100.589076,-0.1980627],[100.59263160000006,-0.193327199999942],[100.59843450000005,-0.191443499999934],[100.60286320000006,-0.193482699999947],[100.60646690000004,-0.193247699999972],[100.60613260000008,-0.196653199999957],[100.61191370000006,-0.1949811],[100.617385,-0.195665499999961],[100.61950130000008,-0.194117799999958],[100.63157080000008,-0.194430799999964],[100.63239130000005,-0.187094699999932],[100.63635830000004,-0.184086299999933],[100.65589790000007,-0.188157]]]},"properties":{"shapeName":"Lima Puluh Kota","shapeISO":"","shapeID":"22746128B98536773738308","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[105.25355140000005,-1.295112899999936],[105.25139790000009,-1.2929459],[105.24601520000004,-1.296197199999938],[105.25032180000005,-1.298364],[105.25355140000005,-1.295112899999936]]],[[[105.24601340000004,-1.277776099999926],[105.24499980000007,-1.274716699999942],[105.24170710000004,-1.278860099999974],[105.24493710000007,-1.281027],[105.24601340000004,-1.277776099999926]]],[[[105.26282620000006,-1.200070099999948],[105.26007270000008,-1.201687099999958],[105.26185120000008,-1.202841799999931],[105.26340070000003,-1.208788899999945],[105.26334390000005,-1.214563],[105.26483540000004,-1.2136968],[105.27097390000006,-1.216236799999933],[105.27321090000004,-1.212541099999953],[105.27103090000008,-1.211733],[105.26282620000006,-1.200070099999948]]],[[[105.28295710000003,-1.147176699999932],[105.280489,-1.144001],[105.27538490000006,-1.146253599999966],[105.27601810000004,-1.147811899999965],[105.27934460000006,-1.1477547],[105.28359030000007,-1.150238],[105.28502460000004,-1.153297399999929],[105.28783610000005,-1.154624899999931],[105.28955650000006,-1.158954599999959],[105.29391670000007,-1.161380799999961],[105.29420280000005,-1.163343399999974],[105.29982570000004,-1.1655369],[105.29988290000006,-1.169174199999929],[105.30292320000007,-1.171484],[105.30384250000009,-1.170732499999929],[105.30659680000008,-1.172811499999966],[105.30779840000008,-1.170848799999931],[105.31170080000004,-1.169807399999968],[105.30998040000009,-1.165882099999976],[105.30797,-1.166112899999973],[105.30848880000008,-1.164728199999956],[105.30659290000006,-1.163919399999941],[105.30670740000005,-1.161205299999949],[105.30412860000007,-1.161609599999963],[105.29982570000004,-1.159589799999935],[105.29792980000008,-1.156471299999964],[105.29236790000004,-1.152488699999935],[105.29179190000008,-1.150466899999969],[105.28863720000004,-1.149082199999953],[105.28668790000006,-1.1503525],[105.28295710000003,-1.147176699999932]]],[[[105.69379290000006,-0.941801099999964],[105.69594450000005,-0.935299499999928],[105.69379080000004,-0.930965799999967],[105.69056260000008,-0.936384099999941],[105.69164010000009,-0.9418015],[105.69379290000006,-0.941801099999964]]],[[[105.83801430000005,-0.870258899999953],[105.83801310000007,-0.864841499999955],[105.82940250000007,-0.865926799999954],[105.82832680000007,-0.869177599999944],[105.83263270000003,-0.871343599999932],[105.83801430000005,-0.870258899999953]]],[[[104.40900110000007,-0.859508399999925],[104.40963090000008,-0.855472],[104.40558730000004,-0.857452099999932],[104.40186420000003,-0.856930399999953],[104.40123860000006,-0.859015],[104.40394070000008,-0.861341299999935],[104.40900110000007,-0.859508399999925]]],[[[104.41848860000005,-0.851095599999951],[104.42073930000004,-0.849288099999967],[104.41677960000004,-0.850806499999976],[104.41848860000005,-0.851095599999951]]],[[[104.93333510000008,-0.7843867],[104.93455580000006,-0.772278799999924],[104.93048170000009,-0.773601499999927],[104.92875750000007,-0.778180099999929],[104.92539290000008,-0.780316899999946],[104.92794110000006,-0.783369299999947],[104.93333510000008,-0.7843867]]],[[[104.94280320000007,-0.765767],[104.94259720000008,-0.763223299999936],[104.93985060000006,-0.762714599999924],[104.94137650000005,-0.7660722],[104.94280320000007,-0.765767]]],[[[104.50004750000005,-0.703301499999952],[104.49925870000004,-0.704085899999939],[104.50232980000004,-0.706598699999972],[104.50539220000007,-0.704002599999967],[104.50004750000005,-0.703301499999952]]],[[[104.48124930000006,-0.697386799999947],[104.47766840000008,-0.696557799999937],[104.477058,-0.709677299999953],[104.48091280000006,-0.710083299999951],[104.48312550000009,-0.70862],[104.48138940000007,-0.701527099999964],[104.48259850000005,-0.698198099999956],[104.48124930000006,-0.697386799999947]]],[[[104.47519160000007,-0.693053],[104.47264160000009,-0.691693799999939],[104.47120520000004,-0.697474399999976],[104.47709870000006,-0.694714099999942],[104.47679890000006,-0.693117899999947],[104.47519160000007,-0.693053]]],[[[104.46572140000006,-0.682956299999944],[104.46183080000009,-0.683178099999964],[104.46315580000004,-0.684580499999925],[104.46081110000006,-0.686854599999947],[104.46363260000004,-0.687018099999932],[104.46534830000007,-0.689155899999946],[104.46556830000009,-0.696885299999963],[104.46791720000004,-0.693376199999932],[104.47010890000007,-0.6931884],[104.47153640000005,-0.689785499999971],[104.46876730000008,-0.687938299999928],[104.46572140000006,-0.682956299999944]]],[[[104.23530970000007,-0.653540599999928],[104.232825,-0.658869699999968],[104.24175820000005,-0.662468299999944],[104.24400240000006,-0.661536199999944],[104.24599590000008,-0.663641899999959],[104.24214020000005,-0.656502499999931],[104.237499,-0.657028199999957],[104.23530970000007,-0.653540599999928]]],[[[104.25170280000003,-0.613438499999972],[104.25373690000004,-0.608448399999929],[104.25140610000005,-0.610908799999947],[104.25170280000003,-0.613438499999972]]],[[[104.03070620000005,-0.541494399999976],[104.03157850000008,-0.539600399999927],[104.02956010000008,-0.533155499999964],[104.02749370000004,-0.539438],[104.03070620000005,-0.541494399999976]]],[[[104.03766410000009,-0.512264499999958],[104.03579190000005,-0.511954399999979],[104.03515030000005,-0.514226199999939],[104.03899670000004,-0.519880699999931],[104.04040760000004,-0.518228699999952],[104.03971590000003,-0.512884399999962],[104.03766410000009,-0.512264499999958]]],[[[104.04001360000007,-0.502624599999933],[104.04098420000008,-0.500702699999977],[104.03791690000008,-0.497929399999975],[104.03775990000008,-0.500985799999967],[104.04001360000007,-0.502624599999933]]],[[[104.18359670000007,-0.397165],[104.182283,-0.391657199999941],[104.17839280000004,-0.396302099999957],[104.18112360000003,-0.398160799999971],[104.18359670000007,-0.397165]]],[[[104.19568490000006,-0.392826699999944],[104.195418,-0.390998599999932],[104.18967570000007,-0.393552],[104.191225,-0.396909],[104.18901980000004,-0.399918599999978],[104.19249430000008,-0.399902099999963],[104.19204190000005,-0.406467],[104.19625880000007,-0.406639799999937],[104.19821290000004,-0.409010799999976],[104.19670130000009,-0.413365499999941],[104.19827870000006,-0.415795],[104.19546470000006,-0.421579399999928],[104.19625850000006,-0.423872099999926],[104.20222890000008,-0.426262799999961],[104.20595380000009,-0.424481299999968],[104.21050430000008,-0.424717699999974],[104.211131,-0.426305799999966],[104.20977260000006,-0.428419499999961],[104.21200180000005,-0.429136299999925],[104.21944760000008,-0.4275431],[104.22149050000007,-0.425792299999955],[104.22334830000005,-0.429559899999958],[104.22445610000005,-0.420516],[104.22282240000004,-0.4163107],[104.22642480000007,-0.411526599999945],[104.22467610000007,-0.406505599999946],[104.22905150000008,-0.405511099999956],[104.22964480000007,-0.402725399999952],[104.23225750000006,-0.401230099999964],[104.23121670000006,-0.397847299999967],[104.22885780000007,-0.397289899999976],[104.22933690000008,-0.393545699999947],[104.22301110000006,-0.3938768],[104.22002310000005,-0.397196799999961],[104.220181,-0.399730499999976],[104.21808580000004,-0.397926199999972],[104.21289970000004,-0.3983239],[104.20882720000009,-0.401348],[104.20815530000004,-0.399795899999958],[104.21420470000004,-0.395544199999961],[104.21367770000006,-0.392970599999956],[104.21103250000004,-0.395032599999979],[104.21031160000007,-0.393231299999968],[104.20622520000006,-0.394709499999976],[104.20187220000008,-0.391698199999951],[104.19974430000008,-0.393526099999974],[104.19568490000006,-0.392826699999944]]],[[[104.19324330000006,-0.389095399999974],[104.19041190000007,-0.389420399999949],[104.19175370000005,-0.390706399999942],[104.19324330000006,-0.389095399999974]]],[[[104.18263920000004,-0.390756799999963],[104.18230520000009,-0.387015299999973],[104.18004470000005,-0.385668499999952],[104.18041770000008,-0.388591299999973],[104.18263920000004,-0.390756799999963]]],[[[104.26888760000008,-0.386048199999948],[104.26814,-0.382953399999963],[104.26681060000004,-0.382493299999965],[104.266021,-0.384793299999956],[104.26888760000008,-0.386048199999948]]],[[[104.26372720000006,-0.375305799999978],[104.260333,-0.375690899999938],[104.263232,-0.375485899999944],[104.26375630000007,-0.378004799999928],[104.26503230000009,-0.378082],[104.26560280000007,-0.376744499999973],[104.26372720000006,-0.375305799999978]]],[[[104.16688870000007,-0.369338399999947],[104.16212640000003,-0.369207399999937],[104.161366,-0.375698399999976],[104.16664930000007,-0.384662899999967],[104.175402,-0.389891199999965],[104.17786860000007,-0.385932199999957],[104.17703480000006,-0.3845518],[104.17905480000007,-0.383507499999951],[104.17836930000004,-0.382127099999934],[104.17510790000006,-0.381436599999972],[104.178073,-0.379870099999948],[104.17421660000008,-0.376748799999973],[104.17271550000004,-0.378539399999966],[104.17163190000008,-0.375012599999934],[104.16688780000004,-0.377772799999946],[104.16985320000003,-0.373647499999947],[104.16592460000004,-0.374784899999952],[104.16692540000008,-0.373087599999963],[104.16581370000006,-0.372154799999976],[104.16796320000009,-0.372509499999978],[104.16926050000006,-0.370774899999958],[104.16740740000006,-0.370718699999941],[104.16688870000007,-0.369338399999947]]],[[[104.27125190000004,-0.369936899999971],[104.27003350000007,-0.367483399999969],[104.26911110000003,-0.368743199999926],[104.27006610000007,-0.3717271],[104.27339280000007,-0.370998],[104.27125190000004,-0.369936899999971]]],[[[104.27202040000009,-0.3637571],[104.27002320000008,-0.363549399999954],[104.26963660000007,-0.364755499999944],[104.27202040000009,-0.3637571]]],[[[104.18945440000005,-0.363086599999974],[104.18559190000008,-0.3606592],[104.18321550000007,-0.364726099999928],[104.181198,-0.364230599999928],[104.18132050000008,-0.370322899999962],[104.17804820000003,-0.370619799999929],[104.17413680000004,-0.366037799999958],[104.17174980000004,-0.3712879],[104.17285670000007,-0.373368299999925],[104.17648070000007,-0.375231699999972],[104.17923630000007,-0.374464299999943],[104.18056480000007,-0.375950299999943],[104.17771070000003,-0.376940599999955],[104.18051920000005,-0.382398599999931],[104.18472630000008,-0.383736299999953],[104.18354510000006,-0.386088899999947],[104.18568350000004,-0.388641199999938],[104.18848430000008,-0.388254299999971],[104.18662240000003,-0.387185299999942],[104.18753050000004,-0.385280199999954],[104.186438,-0.384211299999947],[104.18763830000006,-0.383529799999963],[104.18840750000004,-0.386194099999955],[104.19053510000003,-0.387437699999964],[104.19192890000005,-0.387335899999925],[104.19240880000007,-0.3837965],[104.19771350000008,-0.388298],[104.19761520000009,-0.386192899999969],[104.20327430000003,-0.382874899999933],[104.20945810000006,-0.385482599999932],[104.21103240000008,-0.3889252],[104.21543680000008,-0.384814499999948],[104.21586550000006,-0.388555499999939],[104.21726790000008,-0.389026199999932],[104.21970380000005,-0.386772699999938],[104.22142570000005,-0.390760199999932],[104.22894390000005,-0.386287],[104.23219140000003,-0.388045599999941],[104.23379070000004,-0.3868323],[104.23349630000007,-0.378040399999975],[104.22941080000004,-0.374235299999953],[104.23465180000005,-0.368465399999934],[104.22958380000006,-0.364403399999958],[104.22196360000004,-0.368345099999942],[104.20988330000006,-0.368517399999973],[104.20331690000006,-0.373787099999959],[104.20243120000004,-0.373415499999965],[104.20376020000003,-0.368660699999964],[104.20068470000007,-0.368709899999942],[104.19667470000007,-0.365391],[104.19428820000007,-0.3651679],[104.19334180000004,-0.361402899999973],[104.18945440000005,-0.363086599999974]]],[[[104.17003860000005,-0.360376699999961],[104.16903920000004,-0.359134099999949],[104.16412990000003,-0.362033099999962],[104.16859790000007,-0.363660699999969],[104.16930310000004,-0.366826499999945],[104.17374220000005,-0.363158299999952],[104.17324260000004,-0.361471699999925],[104.17003860000005,-0.360376699999961]]],[[[104.42392260000008,-0.356881099999953],[104.42207470000005,-0.357439099999965],[104.42423050000008,-0.358307399999944],[104.42392260000008,-0.356881099999953]]],[[[104.52087230000006,-0.353882299999952],[104.52051690000008,-0.351519799999949],[104.51824130000006,-0.350517499999967],[104.51909450000005,-0.353524299999947],[104.52087230000006,-0.353882299999952]]],[[[104.43346990000003,-0.356881699999974],[104.43316220000008,-0.352355],[104.42761880000006,-0.349688299999968],[104.42718720000005,-0.355889199999979],[104.42564720000007,-0.358369499999981],[104.43346990000003,-0.356881699999974]]],[[[104.208962,-0.357434],[104.20975560000005,-0.354024799999934],[104.20480330000004,-0.349471],[104.20336870000006,-0.353172799999925],[104.208962,-0.357434]]],[[[104.256809,-0.348516699999948],[104.25763050000006,-0.346536299999968],[104.25579670000008,-0.346997599999952],[104.256809,-0.348516699999948]]],[[[104.27030620000005,-0.342467399999975],[104.26990910000006,-0.341032799999937],[104.26840160000006,-0.342564399999958],[104.266626,-0.342164499999967],[104.26510720000005,-0.344774699999959],[104.26127560000003,-0.346891],[104.25886610000003,-0.3540063],[104.25828,-0.362012399999969],[104.26604460000004,-0.363797199999965],[104.27147510000003,-0.3590581],[104.27044750000005,-0.353860699999927],[104.27280730000007,-0.3518855],[104.26981520000004,-0.347311899999966],[104.27030620000005,-0.342467399999975]]],[[[104.16939450000007,-0.34296],[104.15580310000007,-0.3382173],[104.15344470000008,-0.342978599999924],[104.15092550000008,-0.342963899999972],[104.14847280000004,-0.346704199999976],[104.14261820000007,-0.348965799999974],[104.14476420000005,-0.360500599999966],[104.15246260000004,-0.363951699999973],[104.15501060000008,-0.363375599999927],[104.15564020000005,-0.364902899999947],[104.15807850000004,-0.364440199999933],[104.16157140000007,-0.3606512],[104.16443580000004,-0.360633299999961],[104.16503710000006,-0.359307799999954],[104.16306180000004,-0.358817699999975],[104.16337190000007,-0.354678899999954],[104.15703090000005,-0.3535113],[104.15998650000006,-0.352629099999945],[104.159629,-0.349416],[104.16147520000004,-0.352182599999935],[104.16606160000003,-0.352081599999963],[104.169726,-0.356885299999931],[104.17293230000007,-0.356597399999941],[104.17730170000004,-0.350869099999954],[104.17504010000005,-0.350249399999939],[104.17389420000006,-0.344274499999926],[104.16939450000007,-0.34296]]],[[[104.27203330000003,-0.341177799999969],[104.27323080000008,-0.338956499999938],[104.271658,-0.336782299999925],[104.27078920000008,-0.338885499999947],[104.27203330000003,-0.341177799999969]]],[[[104.92877880000003,-0.342888499999958],[104.92977440000004,-0.342411399999946],[104.92762590000007,-0.340563799999927],[104.92785650000008,-0.3359364],[104.92611240000008,-0.340857699999958],[104.92877880000003,-0.342888499999958]]],[[[104.51148640000008,-0.337201499999935],[104.51027760000005,-0.335125299999959],[104.50970870000003,-0.336628699999949],[104.51148640000008,-0.337201499999935]]],[[[104.48530970000007,-0.339858299999946],[104.48257930000005,-0.335413899999935],[104.47807370000004,-0.334909699999969],[104.46897120000006,-0.339949099999956],[104.46705980000007,-0.338620299999945],[104.46705970000005,-0.340223899999955],[104.46178050000009,-0.3401319],[104.460961,-0.344118],[104.45631910000009,-0.341643599999941],[104.45077910000003,-0.342992599999945],[104.44874680000004,-0.337473699999975],[104.44086240000007,-0.339519499999938],[104.43685840000006,-0.344108],[104.43707360000008,-0.35034],[104.43467130000005,-0.352510099999961],[104.43467110000006,-0.356168699999955],[104.43202230000009,-0.358400899999936],[104.427649,-0.359206699999959],[104.42512330000005,-0.363733299999978],[104.42580070000008,-0.365593599999954],[104.43115940000007,-0.367764299999976],[104.43197770000006,-0.380984299999966],[104.43016180000006,-0.383502599999929],[104.42666050000008,-0.387869099999932],[104.42280440000008,-0.387587899999971],[104.422449,-0.391648199999963],[104.42021650000004,-0.391775699999926],[104.41447070000004,-0.400419599999964],[104.39551240000009,-0.409165099999939],[104.39211290000009,-0.4096245],[104.38899260000005,-0.408296399999927],[104.38901780000003,-0.411130899999932],[104.38739410000005,-0.412407599999938],[104.38402,-0.412330699999927],[104.382219,-0.408883199999934],[104.37986860000007,-0.408745299999964],[104.378702,-0.404633899999965],[104.37520110000008,-0.403458899999976],[104.37266420000009,-0.403943899999945],[104.372182,-0.406344299999944],[104.36521260000006,-0.407668],[104.35826160000005,-0.405522399999938],[104.35630850000007,-0.401972799999953],[104.35425370000007,-0.401206499999944],[104.35422850000003,-0.398652899999945],[104.35005530000007,-0.395859599999937],[104.350563,-0.391646199999968],[104.34716390000006,-0.387381399999924],[104.34663080000007,-0.392258799999979],[104.34236890000005,-0.392181799999946],[104.34076690000006,-0.394798499999979],[104.34381030000009,-0.407044699999972],[104.34713340000008,-0.410313599999938],[104.33985240000004,-0.412049399999944],[104.33777180000004,-0.415547699999934],[104.34376650000007,-0.429902399999946],[104.34604960000007,-0.430975099999955],[104.35127570000009,-0.4302606],[104.34615080000003,-0.434933199999932],[104.343944,-0.439492499999972],[104.34609970000008,-0.446285299999943],[104.33914310000006,-0.439468699999964],[104.33353910000005,-0.441020699999967],[104.329632,-0.439881799999966],[104.32884830000006,-0.433935099999928],[104.32363950000007,-0.4310599],[104.32262910000009,-0.423293399999977],[104.31946510000006,-0.418992499999945],[104.31403510000007,-0.4170486],[104.31037470000007,-0.417392399999926],[104.31261150000006,-0.415361599999926],[104.31212910000005,-0.4114949],[104.31514580000004,-0.412649099999953],[104.31669760000005,-0.4068089],[104.32318240000006,-0.396255899999971],[104.33384910000007,-0.392180599999961],[104.33757190000006,-0.388139199999955],[104.33449460000008,-0.380373899999938],[104.336868,-0.378673599999956],[104.33469610000009,-0.375474799999949],[104.33523840000004,-0.371882899999946],[104.33044720000004,-0.362800299999947],[104.327169,-0.361302],[104.32749110000009,-0.357415099999969],[104.33058820000008,-0.355421799999931],[104.32845650000007,-0.353903399999979],[104.328879,-0.351919399999929],[104.326506,-0.349166],[104.32739050000004,-0.345795299999963],[104.32523880000008,-0.343041899999946],[104.326707,-0.342232199999955],[104.32660280000005,-0.340507099999968],[104.32429,-0.339575699999955],[104.32300160000005,-0.346530499999972],[104.31805330000009,-0.350485599999956],[104.32066920000005,-0.356245699999931],[104.32089010000004,-0.360982899999954],[104.31849560000006,-0.365709599999946],[104.31792260000009,-0.373694799999953],[104.31293120000004,-0.379494299999976],[104.31149590000007,-0.388698499999975],[104.30708540000006,-0.391840799999954],[104.29492380000005,-0.395245],[104.29367680000007,-0.396682299999952],[104.27726980000006,-0.396195699999964],[104.27606270000007,-0.400588599999935],[104.27718770000007,-0.407200399999965],[104.27557570000005,-0.4119253],[104.27308160000007,-0.414232899999945],[104.27516910000008,-0.420540799999969],[104.272152,-0.424548899999934],[104.26712380000004,-0.4265729],[104.26931590000004,-0.4320083],[104.26881150000008,-0.4414726],[104.26411920000004,-0.447391899999957],[104.26072030000006,-0.448383599999943],[104.26375670000004,-0.452291],[104.26273260000005,-0.456386799999962],[104.25780460000004,-0.457062699999938],[104.26247590000008,-0.464777699999956],[104.25889150000006,-0.468545799999958],[104.25978680000009,-0.475438899999972],[104.25526550000006,-0.478129],[104.24998570000008,-0.477355399999965],[104.24940920000006,-0.482025799999974],[104.25244890000005,-0.484506299999964],[104.25254460000008,-0.487437399999976],[104.244513,-0.485053],[104.24579260000007,-0.4882097],[104.25161620000006,-0.4906583],[104.25390370000008,-0.494702199999949],[104.26468670000008,-0.502208399999972],[104.27154650000006,-0.509507099999951],[104.27869660000005,-0.512858799999947],[104.28061630000008,-0.515468],[104.27908020000007,-0.516144199999928],[104.287573,-0.521954499999936],[104.29262840000007,-0.5271731],[104.29358810000008,-0.530265399999962],[104.295796,-0.53062],[104.30352020000004,-0.537681299999974],[104.30954740000004,-0.540365299999962],[104.31690790000005,-0.536919599999976],[104.31981980000006,-0.537628599999948],[104.31962750000008,-0.540205399999934],[104.31735540000005,-0.541300299999932],[104.32168470000005,-0.546625499999948],[104.32370270000007,-0.556986199999926],[104.32629410000004,-0.562075799999946],[104.32716730000004,-0.571208299999967],[104.32937530000004,-0.571369699999934],[104.33142290000006,-0.574913099999947],[104.33145560000008,-0.581506199999978],[104.33808360000006,-0.612185299999965],[104.34206630000006,-0.614867099999969],[104.34391730000004,-0.625915499999962],[104.34183620000005,-0.631992799999978],[104.34188670000003,-0.638799899999924],[104.34411950000003,-0.647447499999942],[104.34363670000005,-0.6529121],[104.34173370000008,-0.655491],[104.34617840000004,-0.659490099999971],[104.34851150000009,-0.6672533],[104.35483420000008,-0.671635099999946],[104.35686340000007,-0.675082699999962],[104.35754760000003,-0.681211399999938],[104.35928440000004,-0.6825727],[104.365982,-0.683722799999941],[104.380561,-0.674522],[104.38198210000007,-0.6714579],[104.38912440000007,-0.666980499999966],[104.38739580000004,-0.661342],[104.38381890000005,-0.659170899999936],[104.383109,-0.655519199999958],[104.38727760000006,-0.641891499999929],[104.39578440000008,-0.629154199999959],[104.39291570000006,-0.622617699999978],[104.39436530000006,-0.610878],[104.39731410000007,-0.601644499999964],[104.40729330000005,-0.594411799999932],[104.41684910000004,-0.590601],[104.42410470000004,-0.589733099999933],[104.43107030000004,-0.583290099999942],[104.43446920000008,-0.582422299999962],[104.440649,-0.587257399999942],[104.44714930000004,-0.599155399999972],[104.45475960000005,-0.619756699999925],[104.45723530000004,-0.622289699999953],[104.464922,-0.623464599999977],[104.46942710000008,-0.625692399999934],[104.47364230000005,-0.631811099999936],[104.47440150000006,-0.637096399999962],[104.48453710000007,-0.640348399999937],[104.49217410000006,-0.644920299999967],[104.50055890000004,-0.645502099999931],[104.50464440000007,-0.643306699999926],[104.50761990000007,-0.623432199999968],[104.50825310000005,-0.613216399999942],[104.50691030000007,-0.604824099999973],[104.50874520000008,-0.595817599999975],[104.516798,-0.574014699999964],[104.52345470000006,-0.563732099999925],[104.528429,-0.558828399999925],[104.53511620000006,-0.539207499999975],[104.54702190000006,-0.522083299999963],[104.56516080000006,-0.501833],[104.57092860000006,-0.506412499999954],[104.57191660000007,-0.505483599999934],[104.56670950000006,-0.501602199999979],[104.57425880000005,-0.495897299999967],[104.57992410000008,-0.493906899999956],[104.58484020000009,-0.496701399999949],[104.58926870000005,-0.493920199999934],[104.590987,-0.495705699999974],[104.59261560000004,-0.493163899999956],[104.59259440000005,-0.484603],[104.59729020000003,-0.478914199999963],[104.59699380000006,-0.476758],[104.60017450000004,-0.469344899999953],[104.60204060000007,-0.468841],[104.60172210000007,-0.467191599999978],[104.59931,-0.466183399999977],[104.59671620000006,-0.458027699999946],[104.59284770000005,-0.456744599999979],[104.58613490000005,-0.451131499999974],[104.57826140000009,-0.449481699999978],[104.57307330000003,-0.443937399999925],[104.56379010000006,-0.420432499999947],[104.56096840000004,-0.4203865],[104.55928450000005,-0.418416199999967],[104.55582610000005,-0.409344199999964],[104.55223070000005,-0.409206499999925],[104.54112680000009,-0.3913829],[104.53914810000003,-0.370971099999963],[104.52979580000004,-0.363891799999976],[104.52292370000004,-0.361417299999971],[104.516643,-0.363891099999933],[104.50576580000006,-0.362882599999978],[104.50239810000005,-0.361095499999976],[104.49807470000007,-0.356971699999974],[104.49436270000007,-0.356296099999952],[104.492568,-0.353077],[104.49115720000003,-0.353214299999934],[104.49120280000005,-0.351564899999971],[104.48879060000007,-0.352664399999981],[104.48608280000008,-0.350808699999959],[104.48508180000005,-0.346776699999964],[104.48098590000006,-0.34389],[104.48162320000006,-0.341828299999975],[104.48530970000007,-0.339858299999946]]],[[[104.98922390000007,-0.3331749],[104.99078570000006,-0.3330439],[104.98987470000009,-0.331209599999966],[104.98922390000007,-0.3331749]]],[[[104.49177020000008,-0.329583699999944],[104.49168220000007,-0.328475799999978],[104.49080180000004,-0.329805199999953],[104.49177020000008,-0.329583699999944]]],[[[104.23381950000004,-0.331015299999933],[104.23369470000006,-0.329065199999945],[104.23119510000004,-0.326989099999935],[104.22996320000004,-0.330078899999933],[104.22437650000006,-0.334575699999959],[104.224772,-0.338748599999974],[104.22270950000006,-0.339922699999931],[104.22114480000005,-0.343893599999944],[104.23190750000003,-0.350654299999974],[104.23319860000004,-0.3557079],[104.23682950000006,-0.350585599999931],[104.23907850000006,-0.338070399999935],[104.23884960000004,-0.334736299999975],[104.23381950000004,-0.331015299999933]]],[[[104.49141830000008,-0.326038399999959],[104.49075810000005,-0.322980599999937],[104.49018580000006,-0.324708899999962],[104.49141830000008,-0.326038399999959]]],[[[104.46808380000004,-0.328475099999935],[104.46998710000008,-0.324968199999944],[104.46767430000006,-0.321844099999964],[104.46416110000007,-0.320458799999926],[104.46392650000007,-0.326795],[104.46808380000004,-0.328475099999935]]],[[[104.48978680000005,-0.320939399999929],[104.49128680000007,-0.320514799999955],[104.49046660000005,-0.318249899999955],[104.48737290000008,-0.317659899999967],[104.48706810000004,-0.3199956],[104.48978680000005,-0.320939399999929]]],[[[104.99392770000009,-0.313496599999951],[104.98992990000005,-0.313977899999941],[104.985215,-0.317106099999933],[104.98436050000004,-0.321368799999959],[104.98794630000003,-0.321781299999941],[104.98914410000003,-0.318240499999945],[104.99108960000007,-0.317484299999933],[104.99942850000008,-0.318893699999933],[104.99392770000009,-0.313496599999951]]],[[[104.97061250000007,-0.3081491],[104.97048240000004,-0.3068388],[104.96839990000007,-0.308542099999954],[104.97087280000005,-0.309328299999947],[104.97061250000007,-0.3081491]]],[[[104.12474720000006,-0.304781],[104.12444040000008,-0.300438699999972],[104.12302210000007,-0.299673199999972],[104.12248080000006,-0.301895799999954],[104.11765330000009,-0.305729199999973],[104.11641010000005,-0.309570899999926],[104.11850340000007,-0.310119199999974],[104.119673,-0.312371399999961],[104.12474720000006,-0.304781]]],[[[105.00262940000005,-0.294260399999928],[105.00328010000004,-0.292164],[105.00028670000006,-0.289019399999972],[104.99911540000005,-0.2916399],[105.00067720000004,-0.295046599999978],[105.00262940000005,-0.295439699999974],[105.00262940000005,-0.294260399999928]]],[[[104.47155070000008,-0.277364299999931],[104.46862810000005,-0.277575499999955],[104.46803660000006,-0.280568499999958],[104.46038310000006,-0.281039499999963],[104.45735310000003,-0.283366499999943],[104.44741480000005,-0.283040899999946],[104.42779140000005,-0.289545699999962],[104.425233,-0.2874037],[104.41025370000006,-0.284175399999924],[104.40685080000009,-0.280486199999928],[104.40456030000007,-0.280387299999973],[104.39916080000006,-0.286579299999971],[104.39523420000006,-0.286150899999939],[104.39457990000005,-0.284536899999978],[104.39068590000005,-0.286315399999978],[104.38958850000006,-0.294711199999938],[104.38600150000008,-0.298087],[104.38996090000006,-0.299962799999946],[104.39187050000004,-0.303854799999954],[104.39070580000003,-0.306480499999964],[104.39652860000007,-0.305214799999931],[104.40609830000005,-0.309826499999929],[104.41453960000007,-0.319078399999967],[104.41467920000008,-0.321516699999961],[104.41998950000004,-0.324095899999975],[104.42345190000003,-0.322597199999962],[104.42932120000006,-0.324988899999937],[104.44504480000006,-0.322882799999945],[104.45440780000007,-0.324430699999937],[104.46018380000004,-0.328885599999978],[104.46126980000008,-0.3249574],[104.46060990000007,-0.319808299999977],[104.46246680000007,-0.3196621],[104.46377440000003,-0.316176],[104.46361310000003,-0.312892799999929],[104.46217590000003,-0.3146644],[104.46115870000006,-0.314030399999979],[104.46277880000008,-0.3115116],[104.46568510000009,-0.313120899999944],[104.46481630000005,-0.315972699999975],[104.46794870000008,-0.3183459],[104.46891760000005,-0.3165093],[104.47085510000005,-0.3195488],[104.47401160000004,-0.317533399999945],[104.47774140000007,-0.319679],[104.47955760000008,-0.317596199999969],[104.48194730000006,-0.318799099999978],[104.48554810000007,-0.317531499999973],[104.48722980000008,-0.314791699999944],[104.48572810000007,-0.314580399999954],[104.48576050000008,-0.313231299999927],[104.49195380000003,-0.305992],[104.48390230000007,-0.293653899999924],[104.48315410000004,-0.282777199999941],[104.47618480000006,-0.277998399999944],[104.47360130000004,-0.2785996],[104.47155070000008,-0.277364299999931]]],[[[104.38617050000005,-0.283929],[104.38324080000007,-0.2825814],[104.38402670000005,-0.277179],[104.38189040000009,-0.276689699999963],[104.38066970000006,-0.285738399999957],[104.38810840000008,-0.286972699999978],[104.38617050000005,-0.283929]]],[[[104.37843430000004,-0.2770319],[104.380334,-0.276738599999931],[104.38057820000006,-0.275222299999939],[104.37712210000007,-0.276787299999967],[104.37843430000004,-0.2770319]]],[[[104.65597630000008,-0.274381799999958],[104.65527440000005,-0.271994],[104.65458010000003,-0.273539099999937],[104.65597630000008,-0.274381799999958]]],[[[104.63633060000006,-0.273435],[104.63771910000008,-0.269739399999935],[104.63205810000005,-0.267208899999957],[104.633584,-0.272735799999964],[104.63633060000006,-0.273435]]],[[[104.458993,-0.266205199999945],[104.45707810000005,-0.264951],[104.45741380000004,-0.266880399999934],[104.46235,-0.269388699999979],[104.46302140000006,-0.265144199999952],[104.458993,-0.266205199999945]]],[[[104.58867740000005,-0.260758],[104.59232430000009,-0.2597725],[104.58837990000006,-0.2579174],[104.58644960000004,-0.259427199999948],[104.58666320000003,-0.261454699999945],[104.58867740000005,-0.260758]]],[[[104.58614820000008,-0.254089799999974],[104.58653750000008,-0.252783399999942],[104.58452620000008,-0.253371199999947],[104.58614820000008,-0.254089799999974]]],[[[104.79354940000007,-0.194194399999958],[104.79324430000008,-0.191158299999927],[104.79143610000006,-0.193587099999945],[104.79354940000007,-0.194194399999958]]],[[[104.77981650000004,-0.188122],[104.78072440000005,-0.185844799999927],[104.77845850000006,-0.185844799999927],[104.77725310000005,-0.187818299999947],[104.77981650000004,-0.188122]]],[[[104.79548730000005,-0.180518899999925],[104.79491510000008,-0.178731499999969],[104.79370970000008,-0.179088799999931],[104.79335870000006,-0.180232699999976],[104.79548730000005,-0.180518899999925]]],[[[104.90361890000008,-0.180976699999974],[104.90230210000004,-0.178009799999927],[104.90026720000009,-0.178310899999929],[104.90080580000006,-0.181097099999931],[104.90361890000008,-0.180976699999974]]],[[[104.43410740000007,-0.176009599999929],[104.43503180000005,-0.174865899999929],[104.43345250000004,-0.175350499999979],[104.43410740000007,-0.176009599999929]]],[[[104.914922,-0.169889199999943],[104.91615620000005,-0.167966599999943],[104.91296110000008,-0.164989],[104.91187910000008,-0.1690896],[104.914922,-0.169889199999943]]],[[[104.45014780000008,-0.159492499999942],[104.45288670000008,-0.157048499999974],[104.45554170000008,-0.156743],[104.455618,-0.150479899999937],[104.44931620000006,-0.152771099999939],[104.44870580000008,-0.158041299999979],[104.45014780000008,-0.159492499999942]]],[[[104.751603,-0.156314599999973],[104.75036710000006,-0.1526715],[104.74112030000003,-0.145307699999933],[104.74243250000006,-0.149570899999958],[104.747445,-0.155461899999978],[104.75067990000008,-0.157399799999951],[104.751603,-0.156314599999973]]],[[[104.822069,-0.130915499999958],[104.82344150000006,-0.126898899999958],[104.82109770000005,-0.127706499999931],[104.822069,-0.130915499999958]]],[[[104.91721610000008,-0.125786499999947],[104.91566360000007,-0.124841199999935],[104.91487760000007,-0.125998799999934],[104.91635270000006,-0.128937599999972],[104.91652370000008,-0.135910799999976],[104.91195970000007,-0.1351438],[104.91042630000004,-0.1365521],[104.91353150000003,-0.139774099999954],[104.91931470000009,-0.138478899999939],[104.92111650000004,-0.1399644],[104.92330160000006,-0.138845499999945],[104.92531720000005,-0.133148899999981],[104.92211090000006,-0.130033399999945],[104.92027070000006,-0.130843699999957],[104.91976540000007,-0.126867],[104.91721610000008,-0.125786499999947]]],[[[104.90722740000007,-0.117829099999938],[104.90830310000007,-0.115348599999948],[104.90553360000007,-0.115348599999948],[104.90506820000007,-0.117053899999974],[104.90722740000007,-0.117829099999938]]],[[[104.76270380000005,-0.149047],[104.76332180000009,-0.1473417],[104.76085750000004,-0.142070799999942],[104.75515830000006,-0.137885],[104.75469290000007,-0.132614099999955],[104.75053490000005,-0.129048499999953],[104.74976440000006,-0.126878099999942],[104.75130550000006,-0.125017799999966],[104.74899380000005,-0.123157499999934],[104.74467550000008,-0.114321],[104.72988220000008,-0.095717799999932],[104.72879880000005,-0.0964929],[104.72926420000005,-0.1037791],[104.743905,-0.138815],[104.75392240000008,-0.144396099999938],[104.75546350000008,-0.150907199999949],[104.75700470000004,-0.151682299999948],[104.76270380000005,-0.149047]]],[[[104.80097730000006,-0.0935035],[104.79788040000005,-0.090757499999938],[104.79820560000007,-0.095320499999957],[104.80080110000006,-0.096908799999937],[104.80097730000006,-0.0935035]]],[[[104.88462910000004,-0.089565],[104.88500290000007,-0.088327099999958],[104.88339310000003,-0.0888031],[104.88462910000004,-0.089565]]],[[[104.83664370000008,-0.085815399999944],[104.83839040000004,-0.082471],[104.83569080000007,-0.083097399999929],[104.83664370000008,-0.085815399999944]]],[[[104.85247250000003,-0.077334199999939],[104.84834420000004,-0.078270599999939],[104.85285040000008,-0.080377399999975],[104.85247250000003,-0.077334199999939]]],[[[104.84424960000007,-0.070802799999967],[104.84522610000005,-0.059884699999941],[104.83935910000008,-0.057789399999933],[104.83545290000006,-0.053356299999962],[104.83179840000008,-0.0525463],[104.83026490000009,-0.056741799999941],[104.83401860000004,-0.060364],[104.83651340000006,-0.067313199999944],[104.84153350000008,-0.070836899999961],[104.84424960000007,-0.070802799999967]]],[[[104.82788930000004,-0.044938699999932],[104.82731710000007,-0.043414899999959],[104.826661,-0.044462499999952],[104.82788930000004,-0.044938699999932]]],[[[104.70298860000008,-0.057061099999942],[104.70171450000004,-0.053942199999938],[104.69295590000007,-0.049355699999978],[104.68584530000004,-0.040732899999966],[104.68621150000007,-0.044035199999939],[104.69442080000005,-0.055409899999972],[104.69551180000008,-0.0609138],[104.70116510000008,-0.068435699999952],[104.71046540000003,-0.072472],[104.71406640000004,-0.075764199999981],[104.71375360000008,-0.078159299999925],[104.71801080000006,-0.079427499999952],[104.72657860000004,-0.087369699999954],[104.72809690000008,-0.086158199999943],[104.72013180000005,-0.0763247],[104.71994870000003,-0.074123199999974],[104.71084680000007,-0.065889],[104.70904630000007,-0.058919499999945],[104.70427030000008,-0.058528799999976],[104.70298860000008,-0.057061099999942]]],[[[104.68371050000007,-0.038212399999964],[104.68202510000003,-0.036727699999972],[104.68033960000008,-0.037151899999969],[104.68349980000005,-0.040545599999973],[104.68476390000006,-0.039909299999977],[104.68371050000007,-0.038212399999964]]],[[[104.84545310000004,-0.040681899999925],[104.84234230000004,-0.034935699999949],[104.83931340000004,-0.040601799999934],[104.83332470000005,-0.039094899999952],[104.83766920000005,-0.053104],[104.84307730000006,-0.055438599999945],[104.84754820000006,-0.0641823],[104.85903040000005,-0.066252399999939],[104.86057910000005,-0.068807],[104.86704120000007,-0.071532799999943],[104.86844510000009,-0.075037899999927],[104.87405270000005,-0.076770899999929],[104.87544120000007,-0.079648799999973],[104.87724170000007,-0.080085],[104.87613550000003,-0.074675599999978],[104.87102380000005,-0.065247199999931],[104.86284870000009,-0.058623599999976],[104.86089960000004,-0.060244299999965],[104.85847030000008,-0.0596187],[104.858442,-0.055410699999925],[104.85450960000009,-0.051195399999926],[104.85476380000006,-0.049404099999947],[104.85063330000008,-0.047636299999965],[104.84816490000009,-0.042757499999936],[104.84545310000004,-0.040681899999925]]],[[[104.83497020000004,-0.030879199999958],[104.83634290000003,-0.037982199999931],[104.83950520000008,-0.035383099999933],[104.83881260000004,-0.034199],[104.83829580000008,-0.035792599999979],[104.83730630000008,-0.0352724],[104.83739780000008,-0.033110199999953],[104.83569150000005,-0.033127899999954],[104.83497020000004,-0.030879199999958]]],[[[104.65223020000008,-0.022869199999946],[104.65187170000007,-0.020667699999933],[104.650773,-0.0210346],[104.65004060000007,-0.023236099999963],[104.65223020000008,-0.022869199999946]]],[[[104.82996740000004,-0.013613599999928],[104.82536470000008,-0.016192399999966],[104.82647570000006,-0.020825099999968],[104.83028490000004,-0.0209392],[104.82996740000004,-0.013613599999928]]],[[[104.67380850000006,-0.028879899999936],[104.66179960000005,-0.012972199999979],[104.65927140000008,-0.013396399999976],[104.66116760000006,-0.019123199999967],[104.666856,-0.025698299999931],[104.67380850000006,-0.028879899999936]]],[[[104.83161780000006,-0.012518299999954],[104.83121650000004,-0.013475],[104.83255430000008,-0.013000099999942],[104.83161780000006,-0.012518299999954]]],[[[104.65611120000005,-0.009578599999941],[104.65779670000006,-0.008093899999949],[104.65590050000009,-0.006821299999956],[104.65189760000004,-0.007457599999952],[104.65379370000005,-0.010427],[104.65611120000005,-0.009578599999941]]],[[[104.53653950000006,-0.005877399999974],[104.536686,-0.004475499999955],[104.53507360000003,-0.004069699999945],[104.53478050000007,-0.0059512],[104.53653950000006,-0.005877399999974]]],[[[104.53386430000006,-0.008459899999934],[104.53309470000005,-0.003331799999955],[104.52921030000005,-0.002261899999951],[104.52877050000006,-0.006357],[104.53126240000006,-0.0085337],[104.53386430000006,-0.008459899999934]]],[[[104.54654420000008,0.004261600000063],[104.54214320000006,0.004348500000049],[104.54594010000005,0.003219100000024],[104.54654420000008,0.004261600000063]]],[[[104.50681410000004,0.007697800000074],[104.50359450000008,0.007273200000043],[104.50435740000006,0.003915300000074],[104.502595,0.000325600000053],[104.50790620000004,-0.004326599999956],[104.51113880000008,-0.0024036],[104.51222330000007,0.000094100000069],[104.50681410000004,0.007697800000074]]],[[[104.54317870000006,0.018248600000049],[104.54162540000004,0.020941700000037],[104.53800110000009,0.022158],[104.54317870000006,0.018248600000049]]],[[[104.51616870000004,0.023895400000072],[104.51677270000005,0.024851],[104.51521940000003,0.025111700000025],[104.51616870000004,0.023895400000072]]],[[[104.53411780000005,0.024329800000032],[104.532133,0.025893600000074],[104.53178790000004,0.02346110000002],[104.53083860000004,0.023634800000025],[104.53118380000006,0.01876980000003],[104.52410770000006,0.017814100000066],[104.520656,0.014599700000019],[104.52229560000006,0.009561],[104.51789460000003,0.011559100000056],[104.51780830000007,0.013296600000047],[104.51357990000008,0.013383500000032],[104.51849870000007,0.003653400000076],[104.52048340000005,0.003305900000043],[104.51979310000007,0.001481600000034],[104.52169150000009,-0.000603399999932],[104.53610260000005,0.002176600000041],[104.54205690000003,0.006172900000024],[104.54542240000006,0.006694100000061],[104.54257470000005,0.010256],[104.54386910000005,0.011298500000066],[104.54257470000005,0.013296700000069],[104.53989950000005,0.013557300000059],[104.54041730000006,0.016858600000035],[104.53541220000005,0.019204200000047],[104.53411780000005,0.024329800000032]]],[[[104.543265,0.023895500000037],[104.54274720000006,0.02641490000002],[104.54222950000008,0.024590500000045],[104.54430050000008,0.023026700000059],[104.543265,0.023895500000037]]],[[[104.61736390000004,0.027556600000025],[104.61789040000008,0.02993280000004],[104.61355690000005,0.030460900000037],[104.614213,0.02821670000003],[104.61736390000004,0.027556600000025]]],[[[104.58265360000007,0.005349],[104.56090990000007,0.021368300000063],[104.55366960000003,0.02949],[104.54887070000007,0.030762100000061],[104.54856110000009,0.014685],[104.55290470000006,0.009026],[104.55484450000006,0.003755],[104.54830560000005,0.001772200000062],[104.54288890000004,-0.0018805],[104.54131540000009,-0.005853299999956],[104.54209820000005,-0.008668],[104.53974970000007,-0.007767299999955],[104.53605920000007,-0.011145],[104.54243370000006,-0.021503099999961],[104.54735440000007,-0.024993399999971],[104.54824910000008,-0.0275829],[104.54075620000003,-0.021840899999972],[104.53326330000004,-0.021953399999973],[104.53214490000005,-0.022629],[104.53337510000006,-0.024655499999938],[104.53382240000008,-0.029947199999924],[104.53538810000003,-0.031073099999958],[104.53281590000006,-0.029722],[104.53315140000007,-0.0260066],[104.53192120000006,-0.024317799999949],[104.525994,-0.023191899999972],[104.53192130000008,-0.022066],[104.53829580000007,-0.017900299999951],[104.53639470000007,-0.014747799999952],[104.52700060000006,-0.012383399999976],[104.51838930000008,-0.005515499999944],[104.51279760000006,-0.006754],[104.51469880000008,-0.010469399999977],[104.51335680000005,-0.008668],[104.49848280000003,-0.002700799999957],[104.50094320000005,-0.007316899999978],[104.50474550000007,-0.010244199999931],[104.50675850000005,-0.016211399999975],[104.50217340000006,-0.010469399999977],[104.49747630000007,-0.011370099999965],[104.49658170000004,-0.013058899999976],[104.49691710000008,-0.019363799999951],[104.49546330000004,-0.020827399999973],[104.49926560000006,-0.021052599999962],[104.501055,-0.022854],[104.50183780000003,-0.026907199999926],[104.50193470000005,-0.046415399999944],[104.49938650000007,-0.051699399999961],[104.50017230000009,-0.053656399999966],[104.504872,-0.053656399999966],[104.50922080000004,-0.055503099999953],[104.51019730000007,-0.060554899999943],[104.50796190000005,-0.064066499999967],[104.50832810000009,-0.066309199999978],[104.51074660000006,-0.0679913],[104.50800770000006,-0.082847499999957],[104.50911390000005,-0.108498099999963],[104.50758810000008,-0.110700799999961],[104.50865620000008,-0.112786599999936],[104.50591720000006,-0.128642499999955],[104.50331560000006,-0.132006599999954],[104.48997940000004,-0.135827499999948],[104.48365460000008,-0.134712399999955],[104.48636310000006,-0.139502399999969],[104.48049610000004,-0.138635099999931],[104.47696370000006,-0.136364],[104.47372120000006,-0.138345899999933],[104.472737,-0.135909699999957],[104.47039480000007,-0.1360748],[104.46743460000005,-0.141735799999935],[104.46928850000006,-0.145719799999938],[104.47694840000008,-0.150886699999944],[104.47572010000005,-0.157283899999925],[104.46941060000006,-0.162838299999976],[104.46794570000009,-0.162581299999943],[104.46762530000007,-0.160525099999973],[104.46378770000007,-0.159946699999978],[104.46234580000004,-0.157283499999949],[104.45183240000006,-0.160537599999941],[104.45183240000006,-0.163312299999973],[104.45399920000006,-0.1629268],[104.456494,-0.165882799999963],[104.45113050000003,-0.167938599999957],[104.45189350000004,-0.171087299999954],[104.45023030000004,-0.173464899999942],[104.452275,-0.175649599999929],[104.45087110000009,-0.1773202],[104.44946730000004,-0.176356399999975],[104.44971910000004,-0.182267899999943],[104.444966,-0.181722799999932],[104.443196,-0.177783099999942],[104.44115130000006,-0.1775961],[104.42722,-0.183389299999931],[104.42591540000006,-0.188435299999981],[104.42624360000008,-0.199039699999958],[104.42973060000008,-0.203259099999968],[104.42839340000006,-0.207085199999938],[104.43079050000006,-0.210788699999966],[104.42889190000005,-0.214247299999954],[104.42666190000006,-0.215032699999938],[104.42426390000008,-0.223633499999949],[104.42582930000003,-0.228665],[104.42937420000004,-0.233131699999944],[104.42948550000006,-0.236919199999932],[104.43398040000005,-0.235713199999964],[104.44037370000007,-0.237902],[104.44361930000008,-0.243162899999959],[104.44779110000007,-0.245672699999943],[104.45278320000006,-0.243854799999951],[104.46135910000004,-0.247165499999937],[104.46620410000008,-0.2448691],[104.46923640000006,-0.241495],[104.47523270000005,-0.241563599999949],[104.47602720000003,-0.2429468],[104.477431,-0.241584699999976],[104.48288950000006,-0.243680299999937],[104.48297540000004,-0.242448399999944],[104.48688790000006,-0.241043599999955],[104.49807840000005,-0.241411199999959],[104.50054760000006,-0.244761099999948],[104.50394020000005,-0.2460364],[104.50542210000003,-0.249418899999966],[104.50372250000004,-0.255133499999943],[104.50127460000004,-0.255608799999948],[104.50215160000005,-0.261600299999941],[104.50497870000004,-0.262817799999937],[104.50427510000009,-0.267409699999973],[104.508745,-0.271521199999938],[104.51334660000003,-0.271489799999927],[104.51511930000004,-0.273584299999925],[104.51739270000007,-0.273312799999928],[104.51797070000003,-0.275019399999962],[104.52198310000006,-0.275834399999951],[104.52271530000007,-0.274399399999936],[104.52712330000008,-0.273491899999954],[104.52862630000004,-0.2702728],[104.53452230000005,-0.268488899999966],[104.53526410000006,-0.264946],[104.53761470000006,-0.265954499999964],[104.53915620000004,-0.265101299999969],[104.53823150000005,-0.2618432],[104.54062550000003,-0.259316699999943],[104.54729230000004,-0.256020199999966],[104.55143130000005,-0.257717599999978],[104.55116150000003,-0.253761599999962],[104.55450390000004,-0.250489799999968],[104.55715090000007,-0.249863],[104.560732,-0.243594799999926],[104.56911330000008,-0.239349],[104.58125940000008,-0.241984799999955],[104.58762090000005,-0.245814399999972],[104.59306880000008,-0.2461213],[104.59907320000008,-0.251285899999971],[104.60007170000006,-0.244030099999975],[104.60298590000008,-0.241494399999965],[104.61216480000007,-0.239421099999959],[104.62933440000006,-0.230818699999929],[104.63121840000008,-0.228545399999973],[104.63092090000004,-0.226175299999966],[104.64754320000009,-0.2185166],[104.64798220000006,-0.217263599999967],[104.68186870000005,-0.206409699999938],[104.69951540000005,-0.2046883],[104.70722550000005,-0.207555599999978],[104.72413490000008,-0.218601799999931],[104.73517850000007,-0.232513399999959],[104.73688260000006,-0.232084699999973],[104.73747910000009,-0.229512099999965],[104.74067410000004,-0.228911899999957],[104.74337990000004,-0.229467799999952],[104.74725020000005,-0.2329816],[104.74858150000006,-0.231856099999959],[104.75289480000004,-0.2336785],[104.75428890000006,-0.239488499999936],[104.75315770000009,-0.245133899999928],[104.74688840000005,-0.249063599999943],[104.74915070000009,-0.251696599999946],[104.75025840000006,-0.249419399999965],[104.75270940000007,-0.250083699999948],[104.75322770000008,-0.254282099999955],[104.757204,-0.257240299999978],[104.76225050000005,-0.258486299999959],[104.76883940000005,-0.264479599999959],[104.77045810000004,-0.264527499999929],[104.77574280000005,-0.2597358],[104.782789,-0.2598317],[104.78985120000004,-0.262480099999948],[104.79418350000009,-0.271297199999935],[104.78954770000007,-0.277016],[104.78938420000009,-0.279254499999979],[104.79801110000005,-0.283435099999963],[104.80452760000009,-0.284066799999948],[104.81288850000004,-0.290950699999939],[104.81429580000008,-0.294984499999941],[104.81932030000007,-0.2998662],[104.82071090000005,-0.2998662],[104.81856190000008,-0.291510799999969],[104.82003680000008,-0.290492899999947],[104.82463,-0.291638199999966],[104.82871750000004,-0.299357399999963],[104.82364930000006,-0.302225399999941],[104.82426220000008,-0.303929399999959],[104.82587650000005,-0.304094299999974],[104.83065510000006,-0.310365799999943],[104.83738,-0.3154883],[104.842377,-0.316977099999974],[104.84941250000008,-0.322799599999939],[104.85072280000009,-0.320915699999944],[104.85170540000007,-0.321787],[104.85283210000006,-0.316975599999978],[104.85538830000007,-0.315158599999961],[104.86536820000003,-0.313483699999949],[104.86792370000006,-0.315867399999945],[104.87157990000009,-0.315467099999978],[104.875049,-0.319355499999972],[104.87989810000005,-0.321408199999951],[104.881871,-0.326549499999942],[104.88397670000006,-0.327067599999964],[104.88763010000008,-0.324566899999979],[104.89317540000008,-0.326406399999939],[104.89744310000003,-0.324860199999932],[104.90320940000004,-0.325702599999943],[104.906509,-0.329301799999939],[104.90644250000008,-0.331711599999949],[104.90813850000006,-0.329034099999944],[104.91010040000003,-0.329268299999967],[104.91277310000004,-0.336643699999968],[104.91689670000005,-0.336911499999928],[104.92131340000009,-0.330114399999957],[104.925117,-0.327011],[104.92857420000007,-0.326831599999934],[104.92918360000004,-0.324527299999943],[104.91964080000008,-0.322802199999956],[104.91632110000006,-0.319874],[104.91250690000004,-0.319980099999952],[104.91220850000008,-0.317314499999952],[104.90944840000009,-0.317539799999963],[104.90788180000004,-0.313823199999945],[104.90340140000006,-0.310767599999963],[104.90463470000009,-0.302681],[104.899935,-0.2973501],[104.90064690000008,-0.288889599999948],[104.90769660000007,-0.2861116],[104.91632710000005,-0.277946799999938],[104.92355680000009,-0.277346499999965],[104.93681870000006,-0.279849399999932],[104.94878290000008,-0.2887866],[104.95216490000007,-0.294694899999968],[104.95404760000008,-0.294984399999976],[104.95525810000004,-0.292958],[104.96402520000004,-0.292983099999958],[104.97002120000008,-0.2972296],[104.97335080000005,-0.2969403],[104.981837,-0.299842],[104.98160170000006,-0.303263299999969],[104.98390270000004,-0.3053423],[104.98283330000004,-0.307326799999942],[104.98534340000003,-0.309063799999933],[104.98851550000006,-0.306714499999941],[104.99160090000004,-0.307688299999938],[104.99413720000007,-0.305135499999949],[104.99673270000005,-0.305966499999954],[104.99874610000006,-0.303282099999933],[105.00125620000006,-0.304413699999941],[105.00083780000006,-0.300387099999966],[104.99751060000006,-0.299139199999956],[104.99364080000004,-0.290605599999935],[104.99526580000008,-0.2865112],[104.99853430000007,-0.284932199999957],[104.99808680000007,-0.2789256],[104.99020930000006,-0.2758167],[104.98478880000005,-0.278003899999931],[104.98276650000008,-0.281323799999939],[104.97965480000005,-0.281902699999932],[104.97046240000009,-0.278241199999968],[104.96986090000007,-0.280399199999977],[104.96635710000004,-0.2801887],[104.95914120000003,-0.276091599999972],[104.95374720000007,-0.274970099999962],[104.94223450000004,-0.267867899999942],[104.92544980000008,-0.254502799999955],[104.90649840000003,-0.236560299999951],[104.89664890000006,-0.229644899999926],[104.88699010000005,-0.217870099999971],[104.87899450000003,-0.195900299999948],[104.86655090000005,-0.188611099999946],[104.85568660000007,-0.167204899999945],[104.84658480000007,-0.154495599999962],[104.84249540000008,-0.152439699999945],[104.83617830000009,-0.142534],[104.83097510000005,-0.1384222],[104.82819030000007,-0.134123399999964],[104.82689330000005,-0.133749699999953],[104.82458920000005,-0.142919599999971],[104.81902740000004,-0.151301399999966],[104.81403020000005,-0.152977799999974],[104.81370210000006,-0.154682299999934],[104.81641050000007,-0.164778699999943],[104.81461760000008,-0.171429199999977],[104.81641050000007,-0.185784699999942],[104.82369660000006,-0.190391299999931],[104.82558110000008,-0.194417899999962],[104.82112550000005,-0.201146299999948],[104.80700350000006,-0.20694],[104.79047060000005,-0.2069398],[104.78805210000007,-0.206192099999953],[104.78210880000006,-0.198529199999939],[104.77814150000006,-0.195615799999928],[104.76941350000004,-0.197484699999961],[104.75733620000005,-0.195615499999974],[104.74377110000006,-0.181411],[104.73708780000004,-0.167580499999929],[104.73653080000008,-0.148703799999964],[104.73411230000005,-0.140854],[104.72835210000005,-0.136555299999941],[104.719441,-0.134686199999976],[104.71664860000004,-0.132817199999977],[104.70818760000009,-0.119588299999975],[104.70152720000004,-0.114001599999938],[104.69598820000004,-0.098810799999967],[104.68413980000008,-0.084392399999956],[104.68130170000006,-0.083877499999971],[104.67937140000004,-0.087482],[104.67383250000006,-0.085036099999968],[104.67035350000003,-0.085164799999973],[104.66147290000004,-0.092631499999925],[104.668553,-0.109367099999929],[104.66829350000006,-0.1170913],[104.66636330000006,-0.113744099999963],[104.66134320000003,-0.112714199999971],[104.65619330000004,-0.105891299999939],[104.65000590000005,-0.104088899999965],[104.64099560000005,-0.0952062],[104.63673840000007,-0.095978599999967],[104.63596780000006,-0.100355599999943],[104.634297,-0.099969399999964],[104.63339670000005,-0.09482],[104.626309,-0.081689],[104.62810960000007,-0.076410799999962],[104.63094770000004,-0.0757671],[104.63570840000006,-0.078084399999966],[104.63815750000003,-0.079757899999947],[104.63983590000004,-0.084006199999976],[104.65271430000007,-0.087739499999941],[104.65696390000005,-0.085422299999948],[104.66224340000008,-0.085164799999973],[104.66958290000008,-0.081045299999971],[104.66713390000007,-0.0725487],[104.66031320000008,-0.0637947],[104.65458350000006,-0.0525198],[104.64789260000003,-0.046912799999973],[104.64362010000008,-0.045230699999934],[104.63972150000006,-0.035325199999932],[104.629315,-0.033456199999932],[104.62281480000007,-0.025232799999969],[104.60691510000004,-0.010721499999931],[104.60190260000007,-0.008105],[104.59515060000007,-0.001340099999936],[104.58265360000007,0.005349]]],[[[104.52229550000004,0.032669800000065],[104.51763560000006,0.032582900000023],[104.51780820000005,0.029107900000042],[104.52410770000006,0.028152300000045],[104.527732,0.029629200000045],[104.525661,0.032409200000075],[104.52229550000004,0.032669800000065]]],[[[104.51858480000004,0.041791700000033],[104.51271690000004,0.039359200000035],[104.51306210000007,0.03449420000004],[104.51081840000006,0.032930400000055],[104.51288950000009,0.031106],[104.51530570000006,0.032148600000028],[104.51763560000006,0.035623600000065],[104.52074220000009,0.034407300000055],[104.52298580000007,0.035189200000048],[104.52151880000008,0.03796920000002],[104.51893,0.03901170000006],[104.51979290000008,0.040401700000075],[104.51858480000004,0.041791700000033]]],[[[104.65915770000004,0.032352400000036],[104.64773650000006,0.046477700000025],[104.64471530000009,0.04792980000002],[104.651803,0.037500900000055],[104.657319,0.032220400000028],[104.65915770000004,0.032352400000036]]],[[[104.493087,0.047815100000037],[104.49207580000007,0.050190600000064],[104.49055890000005,0.049342200000069],[104.49106450000005,0.047136400000056],[104.493087,0.047815100000037]]],[[[104.51685890000005,0.046569900000065],[104.51418380000007,0.050479200000041],[104.511595,0.050566100000026],[104.50943760000007,0.049697300000048],[104.50762550000007,0.046569800000043],[104.49727030000008,0.043963500000075],[104.49632110000005,0.04109660000006],[104.49200640000004,0.039793400000065],[104.49062570000007,0.037447800000052],[104.49122980000004,0.033277800000064],[104.49450890000008,0.032930300000032],[104.49174760000005,0.031800900000064],[104.49666630000007,0.02858660000004],[104.49623480000008,0.02737030000003],[104.49821960000008,0.025980300000072],[104.501585,0.03032410000003],[104.50581340000008,0.032148500000062],[104.50633120000003,0.035362900000052],[104.50797070000004,0.034928500000035],[104.50866110000004,0.038229800000067],[104.513062,0.044398],[104.518067,0.045006100000023],[104.51685890000005,0.046569900000065]]],[[[104.52842230000005,0.052825],[104.52488420000009,0.054301800000076],[104.52151880000008,0.049697400000071],[104.52704160000008,0.043008],[104.52859490000009,0.04344240000006],[104.52885380000004,0.045353700000021],[104.52971670000005,0.044224300000053],[104.52816350000006,0.040575500000045],[104.52963050000005,0.037969300000043],[104.53463550000004,0.034841800000038],[104.53429030000007,0.040228100000036],[104.53748320000005,0.036405600000023],[104.54421420000006,0.032583100000068],[104.53964050000008,0.043442500000026],[104.52842230000005,0.052825]]],[[[104.77971730000007,0.04319380000004],[104.77552120000007,0.046362100000067],[104.77198120000008,0.053094800000054],[104.77249990000007,0.05665920000007],[104.76725090000008,0.063655900000072],[104.76528250000007,0.06312790000004],[104.76567930000004,0.045702],[104.75951470000007,0.043061700000067],[104.75570770000007,0.043061700000067],[104.73983090000007,0.047154100000057],[104.73471160000008,0.04253360000007],[104.73969360000007,0.032368600000041],[104.75321280000009,0.030256400000042],[104.76226890000004,0.035140900000044],[104.77249990000007,0.033424800000034],[104.77539150000007,0.035008900000037],[104.77840510000004,0.031048500000054],[104.78366170000004,0.031180600000027],[104.78444760000008,0.033952800000066],[104.78116690000007,0.038573300000053],[104.78142630000008,0.041873700000053],[104.77971730000007,0.04319380000004]]],[[[104.50083990000007,0.06088040000003],[104.49730040000009,0.064104200000031],[104.49460380000005,0.06274680000007],[104.49409820000005,0.053584200000046],[104.49763760000008,0.054093300000034],[104.49645780000009,0.051717800000063],[104.50100850000007,0.048324200000025],[104.50471640000006,0.050360400000045],[104.50791870000006,0.050360400000045],[104.50842430000006,0.052566200000058],[104.50640180000005,0.056299100000047],[104.50353650000005,0.059862400000043],[104.50083990000007,0.06088040000003]]],[[[104.522378,0.053228600000068],[104.52540690000006,0.056415600000037],[104.52491860000003,0.058178600000019],[104.52040960000005,0.063277300000038],[104.510171,0.069613700000048],[104.50859930000007,0.069349600000066],[104.50885870000008,0.063409200000024],[104.51056770000008,0.060241],[104.51607610000008,0.055092600000023],[104.52089030000008,0.052585300000032],[104.522378,0.053228600000068]]],[[[104.61924160000007,0.075898100000074],[104.61797750000005,0.078019100000063],[104.61608140000004,0.077170700000067],[104.61924160000007,0.075898100000074]]],[[[104.53657070000008,0.077339600000073],[104.53488530000004,0.078866700000049],[104.53437970000004,0.077000200000043],[104.53657070000008,0.077339600000073]]],[[[104.62471930000004,0.078443400000026],[104.62345520000008,0.080352300000072],[104.62092710000007,0.079715900000053],[104.62471930000004,0.078443400000026]]],[[[104.74952020000006,0.08657560000006],[104.74768150000006,0.089083900000048],[104.74427120000007,0.085915500000056],[104.739808,0.08657560000006],[104.73862540000005,0.081427],[104.74046410000005,0.075882500000034],[104.74952020000006,0.075618500000076],[104.75424280000004,0.078786900000068],[104.75319760000008,0.080107],[104.74873440000005,0.079843],[104.74689570000004,0.082351200000062],[104.74952020000006,0.08657560000006]]],[[[104.74046410000005,0.088027700000055],[104.74137970000004,0.092252200000075],[104.73967830000004,0.090668],[104.74046410000005,0.088027700000055]]],[[[104.50045880000005,0.072711800000036],[104.50124460000006,0.076144],[104.49324140000004,0.085252600000047],[104.49271490000007,0.087628800000061],[104.486024,0.092513100000076],[104.484315,0.090004800000031],[104.48143110000007,0.089740800000072],[104.48261360000004,0.08380040000003],[104.49874980000004,0.072183700000039],[104.50045880000005,0.072711800000036]]],[[[104.51509170000008,0.096557700000062],[104.51313970000007,0.098536300000035],[104.51095390000006,0.097152700000038],[104.518081,0.091528700000026],[104.51832680000007,0.093605800000034],[104.51509170000008,0.096557700000062]]],[[[104.73600430000005,0.099441200000058],[104.73315530000008,0.102480700000058],[104.73125170000009,0.102308900000025],[104.73393050000004,0.098865200000034],[104.73289340000008,0.097332300000062],[104.73351040000006,0.092971200000022],[104.73558470000006,0.094728800000041],[104.73678270000005,0.094097800000043],[104.73802990000007,0.096370900000068],[104.73600430000005,0.099441200000058]]],[[[104.56160830000005,0.072448400000042],[104.55885410000008,0.080237],[104.54638770000008,0.092645900000036],[104.54205420000005,0.102018600000065],[104.53891090000008,0.103206600000021],[104.53563030000004,0.101886500000035],[104.534051,0.100170300000059],[104.534318,0.095946],[104.54113870000003,0.091853800000024],[104.546258,0.084593200000029],[104.56160830000005,0.072448400000042]]],[[[104.50458360000005,0.104232200000069],[104.50411770000005,0.106342600000062],[104.50334130000005,0.104779300000075],[104.50458360000005,0.104232200000069]]],[[[104.54032040000004,0.106717200000048],[104.537141,0.109858400000064],[104.53433310000008,0.106712600000037],[104.53582920000008,0.105659500000058],[104.54032040000004,0.106717200000048]]],[[[104.52665510000008,0.107215800000063],[104.52319620000009,0.110647100000051],[104.52103020000004,0.106780100000037],[104.52250680000009,0.103446600000041],[104.52120280000008,0.104127600000027],[104.521129,0.103087600000038],[104.52535110000008,0.101698800000065],[104.52665510000008,0.107215800000063]]],[[[104.50116740000004,0.107593100000031],[104.50116730000008,0.110016200000075],[104.49844990000008,0.111892100000034],[104.49728530000004,0.11111040000003],[104.499304,0.107436800000073],[104.50116740000004,0.107593100000031]]],[[[104.41350750000004,0.11941360000003],[104.41281010000006,0.120993200000044],[104.41158970000004,0.12011560000002],[104.41228710000007,0.118536],[104.41350750000004,0.11941360000003]]],[[[104.48778680000004,0.121259100000032],[104.48307690000007,0.124298500000066],[104.48343930000004,0.121866900000043],[104.48730380000006,0.120408],[104.48778680000004,0.121259100000032]]],[[[104.48826980000007,0.125514400000043],[104.48718290000005,0.124663300000066],[104.489719,0.123326],[104.48983990000005,0.11761180000002],[104.49575740000006,0.114450800000043],[104.495395,0.119921900000065],[104.49189280000007,0.124663400000031],[104.48826980000007,0.125514400000043]]],[[[104.50010490000005,0.121137800000042],[104.49768950000004,0.125028200000031],[104.49454960000008,0.126000800000043],[104.49587810000008,0.121380800000054],[104.502641,0.11603150000002],[104.50215790000004,0.120043600000031],[104.50010490000005,0.121137800000042]]],[[[104.488632,0.130377500000066],[104.48947730000003,0.13171490000002],[104.48657890000004,0.133781700000043],[104.47860850000006,0.129647800000043],[104.47897090000004,0.127459400000021],[104.48199,0.126365300000032],[104.48331840000009,0.12904],[104.48802820000009,0.12891860000002],[104.488632,0.130377500000066]]],[[[104.70931340000004,0.12750120000004],[104.70927030000007,0.132485700000075],[104.70705270000008,0.134154400000057],[104.70604090000006,0.130470200000047],[104.707914,0.127869600000054],[104.70638540000004,0.126526],[104.70931340000004,0.12750120000004]]],[[[104.51554210000006,0.130344500000035],[104.51633550000008,0.131664600000022],[104.51056010000008,0.134700700000053],[104.51043040000008,0.130740400000036],[104.51554210000006,0.130344500000035]]],[[[104.22971990000008,0.136866],[104.22607020000004,0.136771600000031],[104.22185910000007,0.134510400000067],[104.23252750000006,0.131967],[104.23393120000009,0.130553900000052],[104.23776810000004,0.131778800000063],[104.23365030000008,0.135924],[104.22971990000008,0.136866]]],[[[104.52787880000005,0.136945300000036],[104.52840520000007,0.138133400000072],[104.52656650000006,0.13813330000005],[104.52643680000006,0.136813200000063],[104.52787880000005,0.136945300000036]]],[[[104.446664,0.133143400000051],[104.44680890000006,0.137671700000055],[104.44265850000005,0.138379200000031],[104.44554240000008,0.132931100000064],[104.446664,0.133143400000051]]],[[[104.47845560000007,0.09602760000007],[104.47806650000007,0.101044],[104.47950850000007,0.102760100000069],[104.47806650000007,0.107776500000057],[104.470193,0.114508800000067],[104.456544,0.136026],[104.44786180000006,0.138308500000051],[104.44891460000008,0.13420480000002],[104.446107,0.13045470000003],[104.446046,0.126653100000055],[104.45142470000008,0.123617100000047],[104.45444590000005,0.116752600000041],[104.46008410000007,0.115036600000053],[104.46572980000008,0.10566410000007],[104.47058210000006,0.100647800000047],[104.47845560000007,0.09602760000007]]],[[[104.54540390000005,0.139175400000056],[104.54414430000008,0.139711],[104.544482,0.135885700000074],[104.54953930000005,0.130222400000036],[104.55278570000007,0.129669],[104.55128060000004,0.133796300000029],[104.54540390000005,0.139175400000056]]],[[[104.48681980000003,0.140651300000059],[104.487401,0.142155900000034],[104.48598940000005,0.142615700000022],[104.48540820000005,0.141069200000061],[104.48681980000003,0.140651300000059]]],[[[104.48041980000005,0.140711500000066],[104.47631370000005,0.143629300000043],[104.47341540000008,0.141440800000055],[104.47438160000007,0.138887700000055],[104.47558920000006,0.140589800000043],[104.47727990000004,0.13888780000002],[104.47534780000007,0.134632500000066],[104.47728010000009,0.130134100000021],[104.48017840000006,0.130985200000055],[104.48223140000005,0.134511],[104.48041980000005,0.140711500000066]]],[[[104.44715990000009,0.139440600000057],[104.44582470000006,0.143968900000061],[104.44350540000005,0.144747100000075],[104.44420730000007,0.139865100000065],[104.44715990000009,0.139440600000057]]],[[[104.44160570000008,0.140006500000027],[104.44294080000009,0.143119700000057],[104.44160570000008,0.145525400000054],[104.43808850000005,0.142695100000026],[104.43864550000006,0.14078470000004],[104.44160570000008,0.140006500000027]]],[[[104.50538940000007,0.137575],[104.50572640000007,0.138762700000029],[104.49544510000004,0.147246400000029],[104.48909690000005,0.142357900000036],[104.48988350000008,0.135368800000037],[104.49595120000004,0.12739410000006],[104.498985,0.127224500000068],[104.50252440000008,0.125358100000028],[104.50303,0.123321900000064],[104.51027740000006,0.120776900000067],[104.508255,0.117892300000051],[104.50876060000007,0.116195600000026],[104.51347990000005,0.110256900000024],[104.51651370000008,0.109408600000052],[104.51752490000007,0.111105400000042],[104.51550240000006,0.112971800000025],[104.51617650000009,0.116026],[104.51921030000005,0.113820300000043],[104.520053,0.114838300000031],[104.51769330000008,0.124000900000055],[104.50977160000008,0.128751800000032],[104.50808620000004,0.131806],[104.50926590000006,0.13435110000006],[104.50842320000004,0.136387300000024],[104.50707480000005,0.137405300000069],[104.50555790000004,0.136217500000043],[104.50538940000007,0.137575]]],[[[104.20510770000004,0.143271500000026],[104.206792,0.149772200000029],[104.205669,0.150054800000021],[104.20033490000009,0.14732250000003],[104.20276820000004,0.143459900000039],[104.20510770000004,0.143271500000026]]],[[[104.48968430000008,0.143493400000068],[104.49275640000008,0.148091],[104.48823110000006,0.150933],[104.48457780000007,0.148550600000021],[104.48515910000003,0.145374100000026],[104.48387210000004,0.143576900000028],[104.48968430000008,0.143493400000068]]],[[[104.471,0.143993900000055],[104.47075840000008,0.147762800000066],[104.46496160000004,0.15372],[104.46435780000007,0.150315800000044],[104.46604860000008,0.146546900000033],[104.46749790000007,0.144358600000032],[104.47160390000005,0.143021300000044],[104.471,0.143993900000055]]],[[[104.43907270000005,0.145525300000031],[104.44258990000009,0.146799],[104.44210920000006,0.149754600000051],[104.43016920000008,0.15952290000007],[104.42583570000005,0.159522800000047],[104.42452350000008,0.156090500000062],[104.430955,0.151998400000025],[104.43660840000007,0.145525200000066],[104.43907270000005,0.145525300000031]]],[[[104.47191730000009,0.154798300000039],[104.47136,0.15592040000007],[104.47358910000008,0.158725600000025],[104.470106,0.160829400000068],[104.46857360000007,0.15578],[104.47191730000009,0.154798300000039]]],[[[104.45464160000006,0.159426400000029],[104.453109,0.161670500000071],[104.45157650000004,0.161670400000048],[104.45032270000007,0.158304200000032],[104.45408430000003,0.157603],[104.45492030000008,0.155499200000065],[104.46049320000009,0.151291600000036],[104.46007510000004,0.154798],[104.45645270000006,0.159145900000055],[104.45464160000006,0.159426400000029]]],[[[104.40645510000007,0.155727900000045],[104.40679210000008,0.159121500000026],[104.40257850000006,0.162005800000031],[104.40072460000005,0.161157400000036],[104.39870220000006,0.15759410000004],[104.40123050000005,0.150128500000051],[104.39769110000009,0.152164500000026],[104.397017,0.150467700000036],[104.39819690000007,0.147922700000038],[104.40123060000008,0.147922700000038],[104.40409590000007,0.143341600000042],[104.39870250000007,0.146395600000062],[104.39684860000006,0.144359400000042],[104.39752280000005,0.142493],[104.40224210000008,0.13485780000002],[104.40342210000006,0.129258500000049],[104.40477040000007,0.128579900000034],[104.40847820000005,0.132821800000045],[104.40552890000004,0.127137600000026],[104.40822560000004,0.122386800000072],[104.41007950000005,0.122386800000072],[104.41058510000005,0.124762300000043],[104.41294470000008,0.124423],[104.41580990000006,0.123065700000041],[104.41446160000004,0.121538500000042],[104.41547290000005,0.12069020000007],[104.41918070000008,0.120690300000035],[104.42440560000006,0.116618200000062],[104.42322580000007,0.115600100000051],[104.41513580000009,0.118484400000057],[104.41277630000008,0.117636],[104.41260780000005,0.116108900000029],[104.41311340000004,0.114412100000038],[104.41800110000008,0.112545800000021],[104.42255180000006,0.10711630000003],[104.42710250000005,0.100499],[104.42727120000006,0.095069400000057],[104.43199040000007,0.089130800000021],[104.42676560000007,0.092354500000056],[104.42356330000007,0.091845500000034],[104.42373180000004,0.096766100000025],[104.42103510000004,0.100668600000063],[104.41125970000007,0.10151680000007],[104.41395630000005,0.104231600000048],[104.40552920000005,0.11356360000002],[104.40131560000003,0.114920900000072],[104.39946170000007,0.113902800000062],[104.39979880000004,0.111527400000057],[104.39288870000007,0.112205900000049],[104.38176490000006,0.123743600000068],[104.37940530000009,0.124931200000049],[104.37797270000004,0.123828300000071],[104.38606280000005,0.113987400000042],[104.40047340000007,0.091675400000042],[104.40367570000006,0.0893],[104.40434980000003,0.09218450000003],[104.40788910000003,0.093711600000063],[104.42760860000004,0.069618],[104.43603570000005,0.065206500000045],[104.44058630000006,0.058080100000041],[104.44370440000006,0.049681200000066],[104.46072710000004,0.03441040000007],[104.46679470000004,0.026096300000063],[104.46915420000005,0.027114300000051],[104.47185090000005,0.025247900000068],[104.48078360000005,0.015406600000063],[104.48718820000005,0.016255],[104.49494120000008,0.014388600000075],[104.494267,0.020327300000019],[104.49140170000004,0.022702800000047],[104.49123320000007,0.02592670000007],[104.48600840000006,0.030338300000039],[104.48440720000008,0.039076700000066],[104.48086780000006,0.035683100000028],[104.47564310000007,0.034156],[104.475306,0.035852700000021],[104.47732840000003,0.037888900000041],[104.47732840000003,0.042979200000048],[104.47134520000009,0.042045900000062],[104.47201930000006,0.045778800000051],[104.46949120000005,0.047984600000063],[104.46915410000008,0.050360100000034],[104.46544620000009,0.05120850000003],[104.46123260000007,0.061898100000064],[104.468817,0.055450400000041],[104.47235630000006,0.055959500000029],[104.47201920000003,0.059862100000032],[104.47471590000004,0.054941400000075],[104.47673840000004,0.05426280000006],[104.476907,0.05324470000005],[104.47421030000004,0.05290530000002],[104.47505310000008,0.049342100000047],[104.478761,0.047815],[104.47909810000004,0.046118300000046],[104.48112060000005,0.047136300000034],[104.48297450000007,0.044760900000028],[104.48651390000003,0.044760900000028],[104.48786230000007,0.045269900000051],[104.48819930000008,0.050190600000064],[104.49224420000007,0.058504800000037],[104.48954750000007,0.062746700000048],[104.493424,0.065801],[104.49274970000005,0.07140030000005],[104.48440680000004,0.078102500000057],[104.48053040000008,0.078950900000052],[104.47850790000007,0.075727],[104.47581120000007,0.076236],[104.475137,0.077084300000024],[104.47631680000006,0.077084400000047],[104.47867630000007,0.082853400000033],[104.47850780000005,0.085568300000034],[104.47530540000008,0.089810100000022],[104.473957,0.096257900000069],[104.46586690000004,0.102535800000055],[104.46140050000008,0.107371500000056],[104.46140040000006,0.109407600000054],[104.45684980000004,0.11280110000007],[104.45583860000005,0.109068200000024],[104.44184930000006,0.12824130000007],[104.43915260000006,0.130616800000041],[104.43763570000004,0.129259300000058],[104.43443330000008,0.135367600000052],[104.43173670000004,0.135537200000044],[104.43139950000005,0.13791260000005],[104.42819720000006,0.139779],[104.42617470000005,0.14045770000007],[104.42448930000006,0.139269900000045],[104.42381520000004,0.140118200000074],[104.42583760000008,0.142324100000053],[104.42347790000008,0.146056900000076],[104.41808460000004,0.146226400000046],[104.41707330000008,0.150977300000022],[104.40645510000007,0.155727900000045]]],[[[104.49840230000007,0.158999800000061],[104.50164050000006,0.160755300000062],[104.50085160000003,0.164015300000074],[104.49848520000006,0.166314],[104.49400150000008,0.165854200000069],[104.49387710000008,0.159710200000063],[104.49840230000007,0.158999800000061]]],[[[104.491552,0.166648200000054],[104.48947620000007,0.166355600000031],[104.488978,0.164934500000072],[104.49234080000008,0.164767400000073],[104.491552,0.166648200000054]]],[[[104.47888310000008,0.161951700000031],[104.47177770000008,0.16728130000007],[104.465369,0.166159100000073],[104.46300060000004,0.162933100000032],[104.46522980000009,0.160268200000075],[104.47177780000004,0.161109900000042],[104.47595750000005,0.158445100000051],[104.47888310000008,0.161951700000031]]],[[[104.48786030000008,0.165571400000033],[104.48786020000006,0.167098500000066],[104.48600630000004,0.167777200000046],[104.48786030000008,0.165571400000033]]],[[[104.28783370000008,0.161551700000075],[104.28165720000004,0.16371840000005],[104.27772650000009,0.169653700000026],[104.27304730000009,0.168805600000042],[104.27557420000005,0.16597930000006],[104.27651020000008,0.160609200000067],[104.28034710000009,0.159667200000058],[104.280628,0.155710200000044],[104.28259330000009,0.153637600000025],[104.28455860000008,0.15420290000003],[104.28839560000006,0.151376700000071],[104.28961230000004,0.147042900000031],[104.29354270000005,0.150340500000027],[104.29232580000007,0.158631200000059],[104.28783370000008,0.161551700000075]]],[[[104.38662840000006,0.170824],[104.38072180000006,0.169260300000076],[104.38233910000008,0.164054600000043],[104.38567760000007,0.166112100000021],[104.38662840000006,0.170824]]],[[[104.46375860000006,0.170661100000075],[104.46224170000005,0.17269710000005],[104.46241030000004,0.170491300000037],[104.46375860000006,0.170661100000075]]],[[[104.48519990000005,0.172708400000033],[104.47727040000007,0.172791800000027],[104.47374170000006,0.167358300000046],[104.47644030000004,0.164265500000056],[104.47996910000006,0.165310500000032],[104.48320740000008,0.161005600000067],[104.48519990000005,0.172708400000033]]],[[[104.38148370000005,0.171522500000037],[104.38238170000005,0.173175900000047],[104.38053830000007,0.172378900000069],[104.38148370000005,0.171522500000037]]],[[[104.45225630000004,0.164342600000055],[104.45330920000004,0.168170800000041],[104.45225630000004,0.172527100000025],[104.44871630000006,0.174111100000061],[104.44700730000005,0.170678800000076],[104.44766340000007,0.165662500000053],[104.45225630000004,0.164342600000055]]],[[[104.33147010000005,0.133250100000055],[104.31869220000004,0.148339600000043],[104.31279490000009,0.15205],[104.291908,0.175797100000068],[104.29043370000005,0.175797100000068],[104.28969660000007,0.173818100000062],[104.29559410000007,0.165160200000059],[104.29928020000006,0.156007600000066],[104.29977190000005,0.148586400000056],[104.295349,0.146607200000062],[104.29412050000008,0.143638700000054],[104.29166340000006,0.142896500000063],[104.29756070000008,0.13968090000003],[104.29682360000004,0.136465],[104.30149240000009,0.13250720000002],[104.30198390000004,0.129538700000069],[104.29952670000006,0.129291200000068],[104.29928110000009,0.128054400000053],[104.308127,0.125086100000033],[104.30763550000006,0.128302],[104.30910970000008,0.131765200000075],[104.310584,0.133249500000034],[104.31328690000004,0.133249600000056],[104.31549840000008,0.131518],[104.32311610000005,0.113707300000044],[104.32606470000007,0.114449500000035],[104.32631050000003,0.111481],[104.32385340000008,0.108512400000052],[104.32483630000007,0.106533500000069],[104.32631060000006,0.105791400000044],[104.32753920000005,0.107028300000025],[104.33269940000008,0.105296800000076],[104.33613940000004,0.106039],[104.33736770000007,0.121376300000065],[104.33589320000004,0.126076300000022],[104.336876,0.129292300000031],[104.33147010000005,0.133250100000055]]],[[[104.46999460000006,0.174563800000044],[104.46847760000009,0.17609090000002],[104.46679230000007,0.174394],[104.46476980000006,0.174563700000022],[104.46746650000006,0.172527600000024],[104.46999460000006,0.174563800000044]]],[[[104.49611880000003,0.168795500000044],[104.48887120000006,0.176600500000063],[104.48499470000007,0.177957800000058],[104.48870290000008,0.169813400000066],[104.494939,0.167268400000069],[104.49611880000003,0.168795500000044]]],[[[104.38603350000005,0.178056200000071],[104.383813,0.177596200000039],[104.38460990000004,0.175436],[104.38603350000005,0.178056200000071]]],[[[104.47488230000005,0.173545900000022],[104.47538790000004,0.175073],[104.47252260000005,0.176260700000057],[104.47319680000004,0.177957400000025],[104.47050010000004,0.177957400000025],[104.469826,0.17643030000005],[104.47184860000004,0.172188400000039],[104.47488230000005,0.173545900000022]]],[[[104.18882360000003,0.169461700000056],[104.18086890000006,0.178411400000073],[104.17852930000004,0.178976600000055],[104.18255380000005,0.167671400000074],[104.18573560000004,0.16559890000002],[104.18863660000005,0.165599],[104.18882390000005,0.16249010000007],[104.18760740000005,0.161265300000025],[104.189292,0.157308500000056],[104.19406480000004,0.153446],[104.19537490000005,0.155141800000024],[104.19069560000008,0.16013490000006],[104.18882360000003,0.169461700000056]]],[[[104.404832,0.178592500000036],[104.40339010000008,0.182816700000046],[104.40260420000004,0.178724400000021],[104.404832,0.178592500000036]]],[[[104.25386290000006,0.169558500000051],[104.25657670000004,0.172573400000033],[104.25732510000006,0.177661],[104.25666990000008,0.181994700000075],[104.25507890000006,0.182842600000072],[104.24862210000003,0.172855800000036],[104.25386290000006,0.169558500000051]]],[[[104.26892940000005,0.177378800000042],[104.26733840000009,0.17850930000003],[104.26705750000008,0.183031500000027],[104.26546680000007,0.177472900000055],[104.26892940000005,0.177378800000042]]],[[[104.41992290000007,0.164468100000022],[104.41585650000007,0.171992400000022],[104.40522880000009,0.183608800000059],[104.40680040000007,0.179252600000041],[104.41493330000009,0.169352200000048],[104.41651260000003,0.16526],[104.41939650000006,0.163544],[104.41992290000007,0.164468100000022]]],[[[104.45583680000004,0.182029200000045],[104.45314010000004,0.183895500000062],[104.45212890000005,0.181859400000064],[104.45364590000008,0.179653600000051],[104.45549980000004,0.180502100000069],[104.45667960000009,0.179484100000025],[104.458702,0.182538300000033],[104.45583680000004,0.182029200000045]]],[[[104.48297220000006,0.179315100000053],[104.48229790000005,0.182708700000035],[104.48027540000004,0.184235700000045],[104.47589330000005,0.18457490000003],[104.47656760000007,0.179993700000068],[104.48297220000006,0.179315100000053]]],[[[104.45041760000004,0.17912750000005],[104.45068460000005,0.184143800000072],[104.44726670000006,0.187972],[104.44307050000003,0.188235900000052],[104.44294080000009,0.185331700000063],[104.44700730000005,0.180183400000033],[104.44897570000006,0.178335400000037],[104.45041760000004,0.17912750000005]]],[[[104.364169,0.161886],[104.36382030000004,0.163641100000063],[104.36538930000006,0.164694200000042],[104.362251,0.171714500000064],[104.35527730000007,0.17785710000004],[104.35440550000004,0.181718300000057],[104.35231340000007,0.183122300000036],[104.35248770000004,0.186457],[104.35056990000004,0.189440600000069],[104.34917520000005,0.189089600000045],[104.34900090000008,0.186281400000041],[104.34533990000006,0.185052700000028],[104.34586310000009,0.180313900000044],[104.35283680000003,0.171889700000065],[104.35336,0.168730500000038],[104.36033370000007,0.157673600000066],[104.36939950000004,0.147143300000039],[104.376722,0.133980200000053],[104.37968580000006,0.132225100000028],[104.38108040000009,0.135559900000032],[104.39171540000007,0.116429400000072],[104.39467920000004,0.113972300000057],[104.39624820000006,0.115200900000048],[104.39502770000007,0.118711100000041],[104.39764270000006,0.120992800000067],[104.39433010000005,0.130119300000047],[104.39188940000008,0.131347900000037],[104.38927440000003,0.128890600000034],[104.38787970000004,0.130119200000024],[104.38822830000004,0.131523300000026],[104.39188930000006,0.133103],[104.39223790000005,0.135384600000066],[104.39032020000008,0.137666200000069],[104.38735650000007,0.136964100000057],[104.38770510000006,0.140649900000028],[104.38352090000006,0.142580400000043],[104.38439260000007,0.14416],[104.387705,0.143984600000067],[104.38073110000005,0.156796700000029],[104.37445480000008,0.164694500000053],[104.37149110000007,0.163992400000041],[104.37410630000005,0.158551600000067],[104.37306030000008,0.158025],[104.36852740000006,0.162763700000028],[104.364169,0.161886]]],[[[104.36347450000005,0.187315600000034],[104.36308060000005,0.189624],[104.36174880000004,0.188178300000061],[104.36238590000005,0.18478570000002],[104.36680210000009,0.177293200000065],[104.36696420000004,0.179368500000066],[104.36995490000004,0.180628500000068],[104.36998930000004,0.184467500000039],[104.36827510000006,0.186449400000072],[104.36347450000005,0.187315600000034]]],[[[104.36895840000005,0.190590200000031],[104.36967580000004,0.191269100000056],[104.36831990000007,0.191615700000057],[104.36895840000005,0.190590200000031]]],[[[104.46656140000005,0.190876800000069],[104.46813310000005,0.192989],[104.46328080000006,0.193648900000028],[104.46157180000006,0.192328700000076],[104.46262460000008,0.190744700000039],[104.46656140000005,0.190876800000069]]],[[[104.23153420000006,0.200562800000057],[104.22930280000008,0.200703100000055],[104.22721090000005,0.197333300000025],[104.22330590000007,0.197052300000053],[104.21410150000008,0.192137700000046],[104.21326480000005,0.190312400000039],[104.21772790000006,0.18483690000005],[104.213265,0.184275100000036],[104.21368350000006,0.181747800000039],[104.212289,0.179501300000027],[104.20698940000005,0.177675800000031],[104.20685010000005,0.173884900000076],[104.20001650000006,0.171919],[104.200714,0.166724100000067],[104.20559520000006,0.166583900000035],[104.21005820000005,0.163214400000072],[104.21563670000006,0.165601500000037],[104.21940230000007,0.164197600000023],[104.21996030000008,0.160547100000031],[104.22400490000007,0.158160400000043],[104.22553910000005,0.15521190000004],[104.229723,0.155352500000049],[104.22986230000004,0.161249500000054],[104.23948510000008,0.16770850000006],[104.24143730000009,0.176554],[104.24018180000007,0.183433800000046],[104.23627660000005,0.187224600000036],[104.23753150000005,0.194666100000063],[104.23627620000008,0.198035700000048],[104.23474190000007,0.200141700000074],[104.23223160000003,0.19873750000005],[104.23153420000006,0.200562800000057]]],[[[104.34555930000005,0.187754300000051],[104.34621540000006,0.189470400000062],[104.342271,0.203198900000075],[104.34398,0.188282300000026],[104.34555930000005,0.187754300000051]]],[[[104.33235050000008,0.207558500000061],[104.33118,0.207453100000066],[104.33145240000005,0.203113200000075],[104.33714910000003,0.18976710000004],[104.33772530000005,0.183114300000057],[104.34237760000008,0.176272300000051],[104.34337980000004,0.178841900000066],[104.34215690000008,0.18485],[104.337516,0.194930200000044],[104.33680080000005,0.200062600000024],[104.33235050000008,0.207558500000061]]],[[[104.49146,0.20600040000005],[104.48509330000007,0.210299100000043],[104.48858730000006,0.205843900000048],[104.49099420000005,0.204906100000073],[104.49146,0.20600040000005]]],[[[104.37856040000008,0.210348100000033],[104.37444460000006,0.210591700000066],[104.37910140000008,0.205832100000066],[104.38735990000004,0.200797100000045],[104.38213350000007,0.208197900000073],[104.37856040000008,0.210348100000033]]],[[[104.32029290000008,0.211711600000058],[104.32180580000005,0.212813200000028],[104.32013980000005,0.214295400000026],[104.32029290000008,0.211711600000058]]],[[[104.39454,0.21037380000007],[104.39191550000004,0.214597900000058],[104.39309040000006,0.21024170000004],[104.39440260000003,0.209317700000042],[104.39454,0.21037380000007]]],[[[104.41448320000006,0.211298600000021],[104.41579540000004,0.214598900000055],[104.41185870000004,0.218162900000038],[104.41054640000004,0.218294900000046],[104.40686910000005,0.21393850000004],[104.41041670000004,0.211034500000039],[104.41448320000006,0.211298600000021]]],[[[104.318819,0.215061200000036],[104.31564450000008,0.21978770000004],[104.31705210000007,0.214780700000063],[104.318819,0.215061200000036]]],[[[104.33194730000008,0.212037600000031],[104.32436550000006,0.222743600000058],[104.32787370000005,0.215417200000047],[104.33194730000008,0.212037600000031]]],[[[104.38942060000005,0.21671],[104.38692580000009,0.221726100000069],[104.38469040000007,0.223178100000041],[104.38626970000007,0.218293900000049],[104.38942060000005,0.21671]]],[[[104.48090030000009,0.223821200000032],[104.47639720000006,0.223586500000067],[104.48229830000008,0.211627800000031],[104.48392870000004,0.210533600000019],[104.48346280000004,0.213269300000036],[104.48602490000007,0.213425700000073],[104.49246930000004,0.20514060000005],[104.50465910000008,0.196933800000068],[104.50364970000004,0.202248900000029],[104.49673940000008,0.211706400000025],[104.49107150000003,0.213973],[104.48641290000006,0.219991400000026],[104.48369560000003,0.217724600000054],[104.48206510000006,0.219834900000023],[104.48377310000006,0.220929200000057],[104.48361770000008,0.223430500000063],[104.48082270000003,0.222492400000021],[104.48090030000009,0.223821200000032]]],[[[104.37076370000005,0.216715400000055],[104.35957040000005,0.224424900000031],[104.36614990000004,0.216609500000061],[104.37086660000006,0.214858400000026],[104.37194920000007,0.213133200000073],[104.37337270000006,0.213571500000057],[104.37076370000005,0.216715400000055]]],[[[104.47134620000008,0.223788],[104.47023460000008,0.226490600000034],[104.46106220000007,0.232023600000048],[104.459505,0.23122410000002],[104.46555450000005,0.226249700000039],[104.47134620000008,0.223788]]],[[[104.51516870000006,0.229766700000027],[104.51690230000008,0.229912200000058],[104.51748,0.232675500000028],[104.51545740000006,0.236456800000042],[104.51300150000009,0.237765600000046],[104.51256830000005,0.230930100000023],[104.51516870000006,0.229766700000027]]],[[[104.525022,0.235564700000054],[104.52519040000004,0.238958300000036],[104.52056720000007,0.241578100000027],[104.51776230000007,0.246127200000046],[104.51280720000005,0.247005500000057],[104.513493,0.240730700000029],[104.53001830000005,0.213541200000066],[104.524854,0.21825750000005],[104.52114610000007,0.217239300000074],[104.51608970000007,0.219275300000049],[104.51676370000007,0.223177900000053],[104.51558390000008,0.225214],[104.51288720000008,0.224874600000021],[104.51170730000007,0.227419700000041],[104.50951620000006,0.228437700000029],[104.50673530000006,0.226486300000033],[104.50707230000006,0.228692200000069],[104.50285850000006,0.234291400000075],[104.50167870000007,0.235309400000062],[104.49948760000007,0.234291300000052],[104.49847620000008,0.23887250000007],[104.49645370000007,0.239042100000063],[104.49443120000007,0.237175600000057],[104.49459960000007,0.241756900000041],[104.49038590000004,0.245150300000034],[104.48870050000005,0.245659300000057],[104.48516110000008,0.243283700000063],[104.48549830000007,0.24107790000005],[104.48246470000004,0.237175200000024],[104.478588,0.242265300000042],[104.47589150000005,0.238193],[104.48819550000007,0.226316],[104.49342070000006,0.216814200000044],[104.50269080000004,0.211045500000068],[104.50850570000006,0.205022100000065],[104.50850570000006,0.203495],[104.51609030000009,0.199253300000066],[104.52148390000008,0.192805600000042],[104.529237,0.18856390000002],[104.52873150000005,0.185170300000038],[104.52536060000006,0.185000500000058],[104.51963,0.190769400000022],[104.51120270000007,0.194841500000052],[104.50648350000006,0.192635500000051],[104.50614650000006,0.190769100000068],[104.51339410000008,0.183303400000057],[104.51735490000004,0.181521900000064],[104.51786060000006,0.178128400000048],[104.52022020000004,0.176601300000073],[104.52662520000007,0.164384600000062],[104.53631670000004,0.151574100000062],[104.54272150000008,0.146144500000048],[104.54356420000005,0.149198700000056],[104.53817060000006,0.157003900000063],[104.54626090000005,0.149368500000037],[104.54592370000006,0.155307200000038],[104.54946310000008,0.154289200000051],[104.55013710000009,0.160228],[104.54626060000004,0.16005830000006],[104.54575490000008,0.163112500000068],[104.54356380000007,0.165148600000066],[104.54322670000005,0.167015],[104.54524920000006,0.168202800000074],[104.55317090000005,0.162943],[104.55384520000007,0.154289300000073],[104.55687920000008,0.145975100000044],[104.56480080000006,0.142751300000043],[104.57002570000009,0.142412100000058],[104.56800320000008,0.140545600000053],[104.56918310000003,0.135624900000039],[104.56665490000006,0.137152],[104.56631780000004,0.139527500000042],[104.56025020000004,0.139357700000062],[104.55485680000004,0.141393700000037],[104.54929460000005,0.149538200000052],[104.54626090000005,0.146483900000021],[104.54592390000005,0.141223900000057],[104.55502550000006,0.130194900000049],[104.55553120000008,0.128328400000044],[104.55350870000007,0.127140600000075],[104.56218880000006,0.118232600000056],[104.58704940000007,0.097616900000048],[104.59193720000007,0.096089800000073],[104.60339840000006,0.082006500000034],[104.60794910000004,0.082854900000029],[104.61536510000008,0.078952300000026],[104.61839890000005,0.080988500000046],[104.61249970000006,0.090999600000032],[104.60778040000008,0.092696400000023],[104.60491510000008,0.096429300000068],[104.60306110000005,0.10135],[104.61081420000005,0.09337510000006],[104.61452220000007,0.092017700000042],[104.61553350000008,0.093884200000048],[104.61688190000007,0.088793800000076],[104.62109550000008,0.087606100000073],[104.62261240000004,0.090830100000062],[104.62480350000004,0.090830100000062],[104.62699450000008,0.094393400000058],[104.62547760000007,0.096768900000029],[104.62615180000006,0.098296],[104.62834290000006,0.093884400000036],[104.62699460000005,0.092187500000023],[104.62969130000005,0.088624300000049],[104.62530910000004,0.088115200000061],[104.62632040000005,0.085230600000045],[104.62935430000005,0.084382300000073],[104.62716320000004,0.08438220000005],[104.62716320000004,0.083194500000047],[104.62935430000005,0.079461500000036],[104.63457920000008,0.078273800000034],[104.63339940000009,0.076746600000035],[104.62480360000006,0.076916200000028],[104.62143270000007,0.075219400000037],[104.63761320000003,0.061475400000063],[104.64477640000007,0.052397500000041],[104.64983280000007,0.05070070000005],[104.65758590000007,0.040519900000049],[104.67157520000006,0.028642200000036],[104.68303640000005,0.021006500000055],[104.69222220000006,0.01718870000002],[104.69626730000004,0.015831300000059],[104.70149220000008,0.01820680000003],[104.70166070000005,0.022109500000056],[104.70975090000007,0.03789],[104.70351470000008,0.047901200000069],[104.68733420000007,0.051973500000031],[104.67595730000005,0.065293500000053],[104.671238,0.066481200000055],[104.66365340000004,0.073777500000062],[104.65033810000006,0.093121],[104.63087090000005,0.111531200000059],[104.615533,0.132741100000032],[104.60862250000008,0.138001100000054],[104.60963380000004,0.139867600000059],[104.60828530000003,0.145636700000068],[104.60491430000008,0.150896700000033],[104.59168330000006,0.161331800000028],[104.585447,0.171512500000063],[104.57381710000004,0.181862700000067],[104.55654080000005,0.203496400000063],[104.54811330000007,0.210792400000059],[104.54625940000005,0.210622600000022],[104.54507960000007,0.207398700000056],[104.54356270000005,0.208416700000043],[104.543057,0.211810300000025],[104.54491090000005,0.212489100000028],[104.54440530000005,0.21401620000006],[104.54170850000008,0.21452510000006],[104.54255120000005,0.21622190000005],[104.54052860000007,0.219445800000074],[104.53294390000008,0.226741700000048],[104.52822440000006,0.233698400000037],[104.52637040000008,0.233359],[104.525022,0.235564700000054]]],[[[104.44486070000005,0.24790930000006],[104.44101970000008,0.247950100000025],[104.44020690000008,0.246436200000062],[104.45054040000008,0.238811800000065],[104.44550040000007,0.23670450000003],[104.44765470000004,0.234577100000024],[104.45429140000005,0.233043200000054],[104.45644550000009,0.234986700000036],[104.458803,0.235027700000046],[104.46450460000005,0.230763900000056],[104.47074380000004,0.227859200000069],[104.47421910000008,0.227757100000019],[104.46701830000006,0.233942],[104.46541270000006,0.237051500000064],[104.46396980000009,0.23654],[104.45973520000007,0.239717600000063],[104.45902370000005,0.242908900000032],[104.456585,0.242458800000065],[104.45645620000005,0.244942500000036],[104.45472870000003,0.246374500000059],[104.45302160000006,0.245187900000076],[104.44486070000005,0.24790930000006]]],[[[104.44702370000005,0.248835500000041],[104.447164,0.249902900000052],[104.44581520000008,0.249439800000061],[104.44729250000006,0.24716890000002],[104.45003220000007,0.247874900000056],[104.44995420000004,0.246862400000055],[104.45287820000004,0.246595700000057],[104.44969410000004,0.249471300000039],[104.44702370000005,0.248835500000041]]],[[[104.44218410000008,0.248110500000053],[104.44238640000003,0.250643900000057],[104.44062650000006,0.25023630000004],[104.44218410000008,0.248110500000053]]],[[[104.43684460000009,0.249082],[104.43462540000007,0.250548500000036],[104.43643340000006,0.247814600000027],[104.43970630000007,0.246291700000029],[104.44008380000008,0.249398],[104.43684460000009,0.249082]]],[[[104.43331860000006,0.251026800000034],[104.43310140000006,0.252824900000064],[104.43199950000007,0.252035100000057],[104.43331860000006,0.251026800000034]]],[[[104.47808710000004,0.251788800000043],[104.47746450000005,0.253296500000033],[104.47532490000003,0.250183],[104.47690060000008,0.249908900000037],[104.47656990000007,0.24810750000006],[104.47999370000008,0.245092100000022],[104.48236680000008,0.247833600000035],[104.48116070000003,0.25041820000007],[104.47808710000004,0.251788800000043]]],[[[104.50287140000006,0.255947],[104.50162910000006,0.256650500000035],[104.501008,0.255399800000021],[104.50970410000008,0.247740200000067],[104.51125680000007,0.251335700000027],[104.509238,0.253993200000025],[104.50752990000007,0.255869100000041],[104.50287140000006,0.255947]]],[[[104.45753440000004,0.253730700000062],[104.45781660000006,0.258105100000023],[104.45649690000005,0.256047100000046],[104.45753440000004,0.253730700000062]]],[[[104.36460560000006,0.260830300000066],[104.36171890000008,0.259680900000035],[104.36344260000004,0.256016100000068],[104.36469210000007,0.25610290000003],[104.36408870000008,0.258076300000027],[104.36565050000007,0.259778600000061],[104.36460560000006,0.260830300000066]]],[[[104.45274220000005,0.262230600000066],[104.45030650000007,0.260740200000043],[104.45033020000005,0.257646],[104.45312410000008,0.258006700000067],[104.45316,0.255939500000068],[104.45506160000008,0.254987300000039],[104.45623150000006,0.25975870000002],[104.45274220000005,0.262230600000066]]],[[[104.447047,0.262086],[104.445095,0.262123200000076],[104.447128,0.259853900000053],[104.44951650000007,0.259836300000075],[104.45008540000003,0.26187120000003],[104.447047,0.262086]]],[[[104.31667670000007,0.256780300000059],[104.31454570000005,0.257454400000029],[104.31037840000005,0.26325],[104.30756490000005,0.26235360000004],[104.309049,0.259234700000036],[104.31773880000009,0.251866500000062],[104.32013690000008,0.251364700000067],[104.32065910000006,0.253479900000059],[104.322796,0.253910200000064],[104.31918170000006,0.256661],[104.31667670000007,0.256780300000059]]],[[[104.45104940000004,0.264252400000032],[104.44963830000006,0.264532600000052],[104.44928560000005,0.263233700000058],[104.45132790000008,0.263037600000075],[104.45104940000004,0.264252400000032]]],[[[104.44846790000008,0.26522570000003],[104.44719740000005,0.265107200000045],[104.44874940000005,0.263913],[104.44958110000005,0.265078500000072],[104.44846790000008,0.26522570000003]]],[[[104.30670170000008,0.263027900000054],[104.30391120000007,0.265515500000049],[104.30524010000005,0.262733600000047],[104.30670170000008,0.263027900000054]]],[[[104.35430460000003,0.266401400000063],[104.34876540000005,0.266358300000036],[104.348936,0.262884100000065],[104.35400670000007,0.259217200000023],[104.35430040000006,0.25712470000002],[104.35809260000008,0.256814400000053],[104.35748650000005,0.259778800000049],[104.35880340000006,0.262475400000028],[104.35430460000003,0.266401400000063]]],[[[104.49215660000004,0.265873300000067],[104.49052610000007,0.267358400000035],[104.488818,0.266498500000068],[104.490371,0.26298120000007],[104.49409790000004,0.259776700000032],[104.49836820000007,0.257744600000024],[104.50287130000004,0.259542500000066],[104.49215660000004,0.265873300000067]]],[[[104.30129070000004,0.267204700000036],[104.29975740000003,0.267783400000042],[104.30276660000004,0.265179100000069],[104.30314990000005,0.266201600000045],[104.30129070000004,0.267204700000036]]],[[[104.33880440000007,0.262652500000058],[104.334966,0.268282100000022],[104.33728710000008,0.26322140000002],[104.33880440000007,0.262652500000058]]],[[[104.37570530000005,0.269665600000053],[104.37465470000006,0.270334900000023],[104.37316120000008,0.267787100000021],[104.37213310000004,0.258247800000049],[104.37312590000005,0.255289],[104.37577620000008,0.256627900000069],[104.37713640000004,0.259862400000031],[104.374996,0.262536300000022],[104.37844680000006,0.266073],[104.378331,0.268149100000073],[104.37570530000005,0.269665600000053]]],[[[104.43122440000008,0.270010300000024],[104.42939830000006,0.270059],[104.43104670000008,0.268351300000063],[104.43122440000008,0.270010300000024]]],[[[104.33262510000009,0.270654],[104.33130440000008,0.270528300000024],[104.33457330000005,0.267918300000019],[104.33262510000009,0.270654]]],[[[104.40620970000003,0.272965200000044],[104.40415690000003,0.272775500000023],[104.40285250000005,0.268516800000043],[104.40745190000007,0.263987800000052],[104.41098490000007,0.264530800000045],[104.41117140000006,0.267420900000047],[104.40833510000004,0.268039700000031],[104.40620970000003,0.272965200000044]]],[[[104.35378960000008,0.274187700000027],[104.35062320000009,0.273605500000031],[104.360555,0.26444790000005],[104.36162370000005,0.261583],[104.36515670000006,0.263643300000069],[104.36639630000008,0.260603800000069],[104.36525410000007,0.26869240000002],[104.36319760000003,0.268458400000043],[104.36394490000004,0.266748800000073],[104.36155370000006,0.265216900000041],[104.36231420000007,0.268339500000025],[104.35378960000008,0.274187700000027]]],[[[104.42149320000004,0.27622260000004],[104.41940380000005,0.276156700000058],[104.41917540000009,0.273561],[104.42449670000008,0.273298300000022],[104.42149320000004,0.27622260000004]]],[[[104.43014940000006,0.276058],[104.42949640000006,0.277569500000027],[104.42894150000006,0.276255100000071],[104.43070440000008,0.274842300000046],[104.43014940000006,0.276058]]],[[[104.39039860000008,0.275321500000075],[104.38975810000005,0.277819500000021],[104.38876550000003,0.276401200000066],[104.39039860000008,0.275321500000075]]],[[[104.42472520000007,0.275499800000034],[104.42625940000005,0.27803],[104.42341930000003,0.27645270000005],[104.42472520000007,0.275499800000034]]],[[[104.39607460000008,0.273943300000042],[104.39116630000007,0.27792340000002],[104.39172670000005,0.273966200000075],[104.40172370000005,0.268301700000052],[104.40055090000004,0.272143500000027],[104.39878510000005,0.273117],[104.39875120000005,0.276445400000057],[104.39643440000003,0.276445300000034],[104.39607460000008,0.273943300000042]]],[[[104.41707740000004,0.279747200000031],[104.41315980000007,0.27968130000005],[104.41384560000006,0.276658400000031],[104.41678370000005,0.277611400000069],[104.41707740000004,0.279747200000031]]],[[[104.39467530000007,0.277742500000045],[104.39349430000004,0.280561400000067],[104.39196370000008,0.279618600000049],[104.39467530000007,0.277742500000045]]],[[[104.330733,0.280815100000041],[104.32712730000009,0.282048],[104.329651,0.27828420000003],[104.34348730000005,0.266994],[104.34838210000004,0.267422400000044],[104.34875140000008,0.272608200000036],[104.34711830000003,0.272431300000051],[104.34582710000007,0.274120200000027],[104.34772690000005,0.275781],[104.34237730000007,0.27535290000003],[104.330733,0.280815100000041]]],[[[104.40609820000009,0.284781200000054],[104.403392,0.28307140000004],[104.40632880000004,0.280956100000026],[104.40906390000004,0.281767700000046],[104.40871830000003,0.283796100000075],[104.40609820000009,0.284781200000054]]],[[[104.386008,0.284188700000072],[104.38448210000007,0.28676310000003],[104.383681,0.284288100000026],[104.386008,0.284188700000072]]],[[[104.40217070000006,0.286713900000052],[104.40141540000008,0.287660500000072],[104.39741070000008,0.285881600000039],[104.40137850000008,0.28433],[104.40217070000006,0.286713900000052]]],[[[104.43132940000004,0.289716300000066],[104.43061710000006,0.290911100000073],[104.42901450000005,0.289865500000076],[104.42975660000008,0.287744800000041],[104.42574990000008,0.29007450000006],[104.42313830000006,0.289028900000062],[104.42224530000004,0.286777900000061],[104.41915890000007,0.285523100000034],[104.418061,0.281699600000024],[104.42230490000009,0.281909],[104.42085080000004,0.279429600000071],[104.42352190000008,0.278444],[104.43040980000006,0.281591500000047],[104.43207160000009,0.284757800000023],[104.430736,0.287117500000022],[104.43132940000004,0.289716300000066]]],[[[104.40805590000008,0.286780800000031],[104.40756630000004,0.290721800000028],[104.40342030000005,0.291996600000061],[104.40238390000007,0.290373700000032],[104.40307510000008,0.285824300000058],[104.40439950000007,0.286635700000033],[104.40765290000007,0.285331900000074],[104.40805590000008,0.286780800000031]]],[[[104.33839710000007,0.289761100000021],[104.33171690000006,0.292895],[104.32998740000005,0.288367600000072],[104.33195690000008,0.284724400000073],[104.33558890000006,0.283666900000071],[104.33952790000006,0.27889870000007],[104.34378610000005,0.276648600000044],[104.34724560000006,0.281417300000044],[104.347628,0.285055700000044],[104.34514140000005,0.288292200000058],[104.33839710000007,0.289761100000021]]],[[[104.43059870000008,0.291925200000037],[104.42813060000009,0.293241],[104.42651380000007,0.29177420000002],[104.43059870000008,0.291925200000037]]],[[[104.42147380000006,0.295747100000028],[104.41468,0.295320400000037],[104.41268160000004,0.292847900000027],[104.41267410000006,0.28775870000004],[104.41567220000007,0.286436],[104.41897530000006,0.289166400000056],[104.41893670000007,0.292372800000066],[104.423396,0.293255400000021],[104.42530520000008,0.295485900000074],[104.42147380000006,0.295747100000028]]],[[[104.44003840000005,0.299365500000022],[104.43997420000005,0.301462900000047],[104.438275,0.301527400000055],[104.43753770000006,0.29943],[104.44003840000005,0.299365500000022]]],[[[104.43484460000008,0.30278560000005],[104.43577420000008,0.304624900000022],[104.43391480000008,0.303689100000042],[104.43484460000008,0.30278560000005]]],[[[104.30561650000004,0.306186400000058],[104.30437760000007,0.306012100000032],[104.30549680000007,0.303276800000049],[104.30806790000008,0.303974200000027],[104.30561650000004,0.306186400000058]]],[[[104.43178680000005,0.30472670000006],[104.42780720000007,0.30780180000005],[104.426497,0.307041800000036],[104.42966010000004,0.303781400000048],[104.43178680000005,0.30472670000006]]],[[[104.44035860000008,0.307464700000025],[104.43974940000004,0.308465],[104.43638320000008,0.307787200000064],[104.43593440000006,0.305818800000054],[104.44080770000005,0.302108300000043],[104.44103220000005,0.300462700000026],[104.44885480000005,0.297752600000024],[104.44863030000005,0.299882300000036],[104.44375690000004,0.306141900000057],[104.44035860000008,0.307464700000025]]],[[[104.37480790000006,0.307402400000058],[104.375029,0.310409200000038],[104.37084350000003,0.309239600000069],[104.37434710000008,0.305592700000034],[104.37480790000006,0.307402400000058]]],[[[104.44964760000005,0.307585],[104.44604670000007,0.311194200000045],[104.44574580000005,0.310083900000052],[104.44964760000005,0.307585]]],[[[104.44390050000004,0.31285790000004],[104.44080120000007,0.314274100000034],[104.44364920000004,0.310912500000029],[104.444786,0.311600700000042],[104.44390050000004,0.31285790000004]]],[[[104.34806820000006,0.31201],[104.34400460000006,0.313749200000075],[104.34265,0.31657],[104.337302,0.318849800000066],[104.33303,0.323497900000064],[104.329369,0.324746900000036],[104.32784010000006,0.327495300000066],[104.32536380000005,0.327257700000075],[104.32311360000006,0.316432],[104.32847710000004,0.305868300000043],[104.33201710000009,0.301380300000062],[104.33569450000005,0.29979650000007],[104.33753320000005,0.300984700000072],[104.33779260000006,0.303096800000048],[104.339761,0.302964900000063],[104.34417730000007,0.293285700000069],[104.34919210000004,0.291771600000061],[104.34915040000004,0.289815600000054],[104.35088470000005,0.288490700000068],[104.35507370000005,0.288969100000031],[104.35173080000004,0.284047300000054],[104.35482580000007,0.278760100000056],[104.36403230000008,0.273703900000044],[104.36576650000006,0.274292900000034],[104.36664380000008,0.279551100000049],[104.37526410000004,0.279614500000037],[104.38664390000008,0.273974400000043],[104.38359310000004,0.278306900000075],[104.37517090000006,0.283787600000039],[104.38640780000009,0.278457],[104.39005080000004,0.281593300000054],[104.38817150000006,0.283036800000048],[104.386622,0.281609700000047],[104.380862,0.284572800000035],[104.37997180000008,0.286580600000036],[104.382906,0.286547600000063],[104.38330150000007,0.289202500000044],[104.38198270000004,0.290314200000068],[104.37959240000004,0.289716700000042],[104.37931230000004,0.287625900000023],[104.37774620000005,0.288372500000037],[104.376312,0.290313900000058],[104.37870220000008,0.290529700000036],[104.37752670000003,0.293709700000022],[104.37472440000005,0.292415300000073],[104.374543,0.294306900000038],[104.37315840000008,0.292448400000069],[104.37001830000008,0.293697400000042],[104.37033150000008,0.295240600000056],[104.37311730000005,0.295539500000075],[104.373348,0.297165600000028],[104.37254010000004,0.300899100000038],[104.37075980000009,0.300003],[104.36785840000005,0.302525],[104.36915910000005,0.303612800000053],[104.36874690000008,0.305919200000062],[104.36473970000009,0.30685230000006],[104.36273130000006,0.305888400000072],[104.34806820000006,0.31201]]],[[[104.31534690000007,0.339947600000073],[104.31074640000008,0.345623500000045],[104.30536770000003,0.346415200000024],[104.30195730000008,0.345226800000034],[104.308421,0.329366800000059],[104.30830140000006,0.322160500000052],[104.30609310000006,0.321076700000049],[104.30338570000004,0.314779200000032],[104.29985260000007,0.313695500000051],[104.30034970000008,0.312139800000068],[104.302475,0.31272320000005],[104.30175760000009,0.309444900000074],[104.30502110000003,0.308777200000065],[104.30350290000007,0.307138],[104.30943750000006,0.308722],[104.30957540000009,0.31091680000003],[104.31212650000003,0.312757500000032],[104.31629460000005,0.311590900000056],[104.31827930000009,0.31293],[104.31916160000009,0.310355900000047],[104.32060350000006,0.310752],[104.31941340000009,0.31764110000006],[104.32061120000009,0.322385700000041],[104.32385370000009,0.325083800000073],[104.32347980000009,0.328331700000035],[104.32085530000006,0.338495900000055],[104.31534690000007,0.339947600000073]]],[[[104.55743350000006,0.348297400000035],[104.55677940000004,0.349416700000063],[104.55396130000008,0.346578700000066],[104.55088720000003,0.346183500000052],[104.55236570000005,0.338954400000034],[104.55625810000004,0.334193300000038],[104.55967290000007,0.339490900000044],[104.56374760000006,0.340082400000028],[104.56670430000008,0.343185],[104.56359080000004,0.344396300000028],[104.56150190000005,0.348021100000039],[104.55743350000006,0.348297400000035]]],[[[104.30461990000003,0.34812340000002],[104.30481040000006,0.349913300000026],[104.30290490000004,0.350936],[104.30322250000006,0.348474900000042],[104.30461990000003,0.34812340000002]]],[[[104.47223160000004,0.360715200000072],[104.46696570000006,0.365961300000038],[104.46399810000008,0.364319300000034],[104.45751220000005,0.353339600000027],[104.45994650000006,0.348625900000059],[104.46347340000005,0.347908100000041],[104.47591850000003,0.351531300000033],[104.47982230000008,0.348682],[104.48576220000007,0.348545500000057],[104.49080820000006,0.346458300000052],[104.48193460000005,0.357228400000054],[104.47775330000007,0.358255700000029],[104.47603590000006,0.360742],[104.47223160000004,0.360715200000072]]],[[[104.423944,0.369042400000069],[104.42231820000006,0.370084800000029],[104.418132,0.367818700000043],[104.41967750000003,0.364219300000059],[104.42307160000007,0.365875],[104.42673770000005,0.362978700000042],[104.42612340000005,0.360625700000071],[104.42744410000006,0.359505400000046],[104.42994860000005,0.360401700000068],[104.42994850000008,0.363625100000036],[104.43627630000009,0.366653600000063],[104.42950530000007,0.369591300000025],[104.42825120000003,0.367827],[104.423944,0.369042400000069]]],[[[104.476391,0.364899200000025],[104.472277,0.371969900000067],[104.468389,0.372011100000066],[104.471747,0.364979600000026],[104.478136,0.362714200000028],[104.476391,0.364899200000025]]],[[[104.46677650000004,0.373610100000064],[104.46361770000004,0.373553300000026],[104.46246480000008,0.372015300000044],[104.46742060000008,0.369711700000039],[104.46677650000004,0.373610100000064]]],[[[104.25606050000005,0.375346800000045],[104.25480090000008,0.376012800000069],[104.25578830000006,0.374070900000049],[104.25373890000009,0.37326980000006],[104.25413650000007,0.371279400000049],[104.25708470000006,0.368188400000065],[104.25820050000004,0.369112],[104.26342280000006,0.366818800000033],[104.26390470000007,0.368632700000035],[104.25606050000005,0.375346800000045]]],[[[104.33195630000006,0.376114900000061],[104.328464,0.375331700000061],[104.32868160000004,0.367460100000073],[104.33746490000004,0.357820400000037],[104.34796,0.34908310000003],[104.35176240000004,0.348654700000054],[104.35449430000006,0.345111300000042],[104.35407110000006,0.34352350000006],[104.34716140000006,0.344164800000044],[104.34136870000003,0.342237400000045],[104.33794980000005,0.339033],[104.34387070000008,0.327957900000058],[104.35424910000006,0.313723],[104.35894810000008,0.312271800000076],[104.36540130000009,0.314116],[104.36714170000005,0.31251450000002],[104.36560030000004,0.312664500000039],[104.36609770000007,0.309661400000039],[104.37024960000008,0.310112100000026],[104.37668330000008,0.312837500000057],[104.37370340000007,0.316856600000051],[104.37571040000006,0.318150900000035],[104.37774890000009,0.316793700000062],[104.37887820000009,0.312090200000057],[104.381266,0.310907500000042],[104.37816160000006,0.306172200000049],[104.38087820000004,0.303209],[104.37941970000008,0.303232],[104.379103,0.300643600000058],[104.38273390000006,0.296668400000044],[104.38329980000009,0.299890700000049],[104.38597390000007,0.299556900000027],[104.38595430000004,0.301737800000069],[104.38708640000004,0.302013],[104.38630210000008,0.30603960000002],[104.38991670000007,0.309469500000034],[104.388689,0.304629500000033],[104.39166390000008,0.304594900000041],[104.389208,0.302348900000027],[104.38922670000005,0.300387200000046],[104.39469650000007,0.302113400000053],[104.39101270000003,0.298857600000019],[104.39255220000007,0.296159200000034],[104.39002710000005,0.295810800000027],[104.39114920000009,0.293504300000052],[104.38964450000009,0.292738200000031],[104.39057860000008,0.289621900000043],[104.392533,0.290144300000065],[104.39315580000005,0.287846200000047],[104.39467760000008,0.290962600000057],[104.394003,0.292442400000027],[104.39554230000005,0.29296480000005],[104.39646770000007,0.290717900000061],[104.39755730000007,0.291118400000073],[104.39722840000007,0.296376200000054],[104.39863360000004,0.297739900000067],[104.40032890000003,0.291455100000064],[104.40164320000008,0.293683600000065],[104.40254270000008,0.292656500000021],[104.40629580000007,0.293666500000029],[104.406728,0.296469500000057],[104.41156080000007,0.293597],[104.42075460000007,0.29875050000004],[104.41809010000009,0.301076400000056],[104.41374890000009,0.300745400000039],[104.410739,0.309032300000069],[104.40866350000005,0.308527300000037],[104.40830040000009,0.307082200000025],[104.402556,0.311872300000061],[104.40041230000008,0.311199100000067],[104.39665980000007,0.313329],[104.39744510000008,0.315437200000019],[104.39951770000005,0.314537],[104.40325330000007,0.316514300000051],[104.40451880000006,0.314428200000066],[104.40632950000008,0.315438400000062],[104.40927480000005,0.313264500000059],[104.41287440000008,0.315416800000037],[104.41202370000008,0.31262780000003],[104.416793,0.311549],[104.42120010000008,0.308057500000075],[104.42715,0.308845200000064],[104.42957180000008,0.307286100000056],[104.43424050000004,0.307352200000025],[104.43474210000005,0.309789900000055],[104.43297490000003,0.31222740000004],[104.42299740000004,0.318720700000029],[104.42170980000009,0.325594200000069],[104.42452410000004,0.325814],[104.42450220000006,0.32708770000005],[104.41659780000003,0.331535700000074],[104.40480530000008,0.333820600000024],[104.40284170000007,0.336367800000062],[104.39539,0.33689540000006],[104.39472860000006,0.341077200000029],[104.39136880000007,0.341582100000039],[104.38003080000004,0.34826350000003],[104.37638740000006,0.348263300000042],[104.37522990000008,0.349641700000063],[104.37404240000006,0.348376900000062],[104.36893050000003,0.348134],[104.36475930000006,0.350632400000052],[104.36443220000007,0.352451500000029],[104.37164410000008,0.349870600000031],[104.37277990000007,0.351100700000075],[104.37129950000008,0.355414600000074],[104.36868330000004,0.35531050000003],[104.36050780000005,0.359088500000041],[104.35058560000004,0.365787100000034],[104.34308430000004,0.367713],[104.33982030000004,0.371704100000045],[104.33632790000007,0.371212600000035],[104.33195630000006,0.376114900000061]]],[[[104.32721560000005,0.375286300000027],[104.327076,0.377392400000076],[104.32484470000009,0.374864900000034],[104.32010270000006,0.374162500000068],[104.31884770000005,0.372056300000054],[104.32386880000007,0.368967800000064],[104.32596090000004,0.36910830000005],[104.32721560000005,0.375286300000027]]],[[[104.46875750000004,0.383100700000057],[104.46425770000008,0.383107900000027],[104.46312160000008,0.38042820000004],[104.47291440000004,0.373710700000061],[104.47379460000008,0.369822700000043],[104.47677040000008,0.366558200000043],[104.48008130000005,0.365477500000054],[104.48758260000005,0.366397900000038],[104.48397280000006,0.368237900000054],[104.48380180000004,0.370765800000072],[104.48084170000004,0.370040200000062],[104.48000870000004,0.374184800000023],[104.47571380000005,0.375067300000069],[104.472604,0.378214300000025],[104.47300950000005,0.381506300000069],[104.47107840000007,0.382936900000061],[104.46867660000004,0.381782200000032],[104.46875750000004,0.383100700000057]]],[[[104.43128640000003,0.384425800000031],[104.42522480000008,0.384999500000049],[104.42273080000007,0.383095],[104.41346240000007,0.382626900000048],[104.40944610000008,0.379571100000021],[104.41033130000005,0.374467200000026],[104.41593030000007,0.372011400000019],[104.41746810000006,0.373929900000064],[104.41699530000005,0.375743400000033],[104.42422560000006,0.375340400000027],[104.42640580000005,0.377560500000072],[104.43237230000005,0.372858800000074],[104.43463790000004,0.372688400000072],[104.43565430000007,0.375871200000063],[104.43128640000003,0.384425800000031]]],[[[104.32010190000005,0.384552700000029],[104.31396510000008,0.385815800000046],[104.31368630000009,0.384130900000059],[104.30922320000008,0.384692200000075],[104.30699180000005,0.384270800000024],[104.30699190000007,0.383007100000043],[104.31006040000005,0.380058800000029],[104.31382620000005,0.378935900000045],[104.31340810000006,0.375706500000035],[104.31619760000007,0.373460200000068],[104.32107890000003,0.375707100000056],[104.32191560000007,0.377392],[104.32010190000005,0.384552700000029]]],[[[104.30153010000004,0.38863310000005],[104.300874,0.390085100000022],[104.29654810000005,0.391668800000048],[104.29470940000004,0.390480600000046],[104.29602170000004,0.38810460000002],[104.30034750000004,0.387576900000056],[104.30153010000004,0.38863310000005]]],[[[104.43879670000007,0.392087500000059],[104.43940520000007,0.393340600000045],[104.43796670000006,0.392839300000048],[104.43879670000007,0.392087500000059]]],[[[104.37257110000007,0.389543600000025],[104.37318960000005,0.393087200000025],[104.36937520000004,0.396286700000076],[104.36954650000007,0.393171100000075],[104.37257110000007,0.389543600000025]]],[[[104.36580210000005,0.401166900000021],[104.36632170000007,0.403485600000067],[104.363437,0.40618360000002],[104.36350870000007,0.402736400000038],[104.36580210000005,0.401166900000021]]],[[[104.43816680000003,0.402397400000041],[104.43842460000008,0.406499600000075],[104.43590530000006,0.406543300000067],[104.43581890000007,0.399427200000048],[104.43959830000006,0.396727700000042],[104.442279,0.390350600000033],[104.44778360000004,0.391353200000026],[104.45679570000004,0.389741500000071],[104.45628920000007,0.394037200000071],[104.45172790000004,0.400893600000074],[104.44590340000008,0.403106600000058],[104.43816680000003,0.402397400000041]]],[[[104.56251790000005,0.40725580000003],[104.56149720000008,0.407421900000031],[104.56547650000005,0.40478330000002],[104.56474680000008,0.406863100000066],[104.56251790000005,0.40725580000003]]],[[[104.41143070000004,0.425027800000066],[104.408675,0.426795500000026],[104.40901840000004,0.424103100000025],[104.41143070000004,0.425027800000066]]],[[[104.40269020000005,0.432121300000063],[104.40013840000006,0.431937600000026],[104.40238910000005,0.430980600000055],[104.40269020000005,0.432121300000063]]],[[[104.51674650000007,0.430436300000054],[104.51380890000007,0.434174],[104.51213780000006,0.426415700000064],[104.517145,0.416666700000064],[104.51648920000008,0.408524200000045],[104.51873780000005,0.406967500000064],[104.52184490000008,0.400901400000066],[104.52659050000005,0.381456],[104.526021,0.371943500000043],[104.53103960000004,0.362222700000075],[104.53328450000004,0.360780500000033],[104.53745390000006,0.366088800000057],[104.53383330000008,0.372103400000071],[104.53458520000004,0.375596],[104.53253090000004,0.382645],[104.53390550000006,0.386864],[104.53175620000007,0.387404700000047],[104.53462170000006,0.390589900000066],[104.53073590000008,0.394706100000064],[104.52927020000004,0.40523840000003],[104.53447970000008,0.409007400000064],[104.534384,0.411904],[104.53871120000008,0.414984900000036],[104.54252580000008,0.415173500000037],[104.54742660000005,0.410797600000024],[104.55071750000008,0.409762900000032],[104.55977560000008,0.409078700000066],[104.56237490000007,0.412039800000059],[104.56060760000008,0.414515600000072],[104.555063,0.413690600000052],[104.55025790000008,0.422386300000028],[104.54797020000007,0.423803900000053],[104.54336130000007,0.42152],[104.53464010000005,0.425019],[104.52718140000007,0.423107500000071],[104.52282960000008,0.42394],[104.51734370000008,0.427816200000052],[104.51674650000007,0.430436300000054]]],[[[104.42369130000009,0.441713400000026],[104.42113510000007,0.442431800000065],[104.42064170000003,0.439823300000057],[104.42208730000004,0.439415300000064],[104.42369130000009,0.441713400000026]]],[[[104.43420830000008,0.447006600000066],[104.43223070000005,0.448771],[104.42820590000008,0.446441500000049],[104.43196450000005,0.444959500000039],[104.43451690000006,0.445962],[104.43420830000008,0.447006600000066]]],[[[104.37053180000004,0.448384],[104.37131860000005,0.449120700000037],[104.36996440000007,0.449838900000032],[104.37053180000004,0.448384]]],[[[104.41543860000007,0.447458600000061],[104.41869320000006,0.448733100000027],[104.41787930000004,0.452009600000054],[104.41408220000005,0.451281100000074],[104.40657860000005,0.446456700000056],[104.40006930000004,0.445910100000049],[104.39853220000003,0.447548200000028],[104.39419250000009,0.447911900000065],[104.39030530000008,0.443815900000061],[104.39383180000004,0.436808100000064],[104.39609210000003,0.435898100000031],[104.39907510000006,0.441086200000029],[104.40811580000008,0.44418150000007],[104.41480610000008,0.443544900000063],[104.41543860000007,0.447458600000061]]],[[[104.37556970000009,0.452591100000063],[104.37611860000004,0.453604100000064],[104.37394080000007,0.455206300000043],[104.37443510000008,0.452535700000055],[104.37556970000009,0.452591100000063]]],[[[104.386206,0.452515600000027],[104.38188210000004,0.455604200000039],[104.38327710000004,0.452655800000059],[104.37909310000003,0.45040890000007],[104.38048810000004,0.446898800000042],[104.37755920000006,0.446056100000021],[104.380489,0.435244800000021],[104.383139,0.435104700000068],[104.38216250000005,0.438193600000034],[104.38509140000008,0.438053400000058],[104.38439380000005,0.441563600000052],[104.38760170000006,0.441423400000076],[104.38969350000008,0.444231800000068],[104.38969320000007,0.448022800000047],[104.39164570000008,0.449707900000021],[104.38997180000007,0.452235100000053],[104.38690350000007,0.451392400000032],[104.386206,0.452515600000027]]],[[[104.40358470000007,0.456005700000048],[104.40101330000005,0.456664500000045],[104.40028290000004,0.454038],[104.39939090000007,0.456234600000073],[104.39666560000006,0.45127240000005],[104.40074820000007,0.449063100000046],[104.40094720000008,0.451871],[104.401716,0.449196900000061],[104.407427,0.450479600000051],[104.40683850000005,0.452246500000058],[104.40918220000003,0.45173090000003],[104.40820480000008,0.454743200000053],[104.40358470000007,0.456005700000048]]],[[[104.36773080000006,0.45105140000004],[104.36909290000006,0.456490100000053],[104.37063610000007,0.457566300000053],[104.36921370000005,0.458682900000042],[104.36608640000009,0.453629800000044],[104.36773080000006,0.45105140000004]]],[[[104.38259360000006,0.460895700000037],[104.38143630000008,0.461411100000021],[104.38147640000005,0.459342400000025],[104.38259360000006,0.460895700000037]]],[[[104.393861,0.462127400000043],[104.391845,0.461872400000061],[104.38983850000005,0.458329900000024],[104.39501790000008,0.457479600000056],[104.39693080000006,0.460353700000041],[104.39619930000003,0.46222240000003],[104.393861,0.462127400000043]]],[[[104.443042,0.463738700000022],[104.440939,0.463638800000069],[104.44044370000006,0.461499700000047],[104.44414340000009,0.459604800000022],[104.445002,0.46307390000004],[104.443042,0.463738700000022]]],[[[104.390809,0.461906300000066],[104.38991410000006,0.46465790000002],[104.388429,0.46137230000005],[104.38987050000009,0.460396800000069],[104.38966540000007,0.461772600000074],[104.390809,0.461906300000066]]],[[[104.36716220000005,0.468406500000071],[104.36728470000008,0.470093900000052],[104.359639,0.467829],[104.36102310000007,0.465480700000057],[104.36716220000005,0.468406500000071]]],[[[104.37048110000006,0.471305200000074],[104.37293280000006,0.475725700000055],[104.36995670000005,0.47224760000006],[104.37048110000006,0.471305200000074]]],[[[104.40730910000008,0.473844600000064],[104.40611630000006,0.475945100000047],[104.40199040000005,0.472712900000033],[104.40180420000007,0.470968600000049],[104.40124490000005,0.473875700000065],[104.39921390000006,0.47250630000002],[104.397313,0.473368900000025],[104.40149050000008,0.465932600000031],[104.40152810000006,0.462650500000052],[104.40341020000005,0.462575600000037],[104.40845010000004,0.466903700000046],[104.41198620000006,0.464804100000038],[104.41486420000007,0.46487860000002],[104.41397880000005,0.463110800000038],[104.41574020000007,0.461651],[104.426574,0.459198400000048],[104.42545540000003,0.464918700000055],[104.420415,0.469182200000034],[104.41319120000009,0.469899500000054],[104.40730910000008,0.473844600000064]]],[[[104.38135320000004,0.476299300000051],[104.38252130000006,0.477283500000055],[104.38086410000005,0.478451],[104.37985340000006,0.477091500000029],[104.38135320000004,0.476299300000051]]],[[[104.449623,0.478903700000046],[104.44275440000007,0.481029],[104.437454,0.48464910000007],[104.43710880000003,0.482407200000068],[104.43995930000006,0.480232],[104.44013810000007,0.478457700000035],[104.45112180000007,0.471359],[104.45293390000006,0.463126400000021],[104.46208690000009,0.45423610000006],[104.45989150000008,0.461427700000058],[104.45739020000008,0.462398600000029],[104.45563830000003,0.467789],[104.45661010000003,0.478387],[104.449623,0.478903700000046]]],[[[104.35742870000007,0.495563400000037],[104.35658640000008,0.496100900000044],[104.35692550000005,0.494684600000028],[104.35843530000005,0.495780600000046],[104.35742870000007,0.495563400000037]]],[[[104.38474460000003,0.49694],[104.38558250000006,0.489650200000028],[104.38417090000007,0.487127500000042],[104.37119220000005,0.482592200000056],[104.37162320000004,0.480273700000055],[104.374014,0.481133300000067],[104.37904770000006,0.479781800000069],[104.37964410000006,0.480932800000062],[104.38015290000004,0.478987200000063],[104.38282920000006,0.47802],[104.38558390000009,0.484581800000058],[104.38731550000006,0.484431900000061],[104.39047630000005,0.487047600000039],[104.39026540000003,0.492823500000043],[104.38753130000003,0.491722400000072],[104.38718890000007,0.495997800000055],[104.38474460000003,0.49694]]],[[[104.41129690000008,0.509955700000035],[104.40970110000006,0.509255300000063],[104.40900620000008,0.50534870000007],[104.41290990000005,0.499739800000043],[104.41382420000008,0.494097200000056],[104.415529,0.495127],[104.41487430000006,0.498195400000043],[104.41630630000009,0.500337200000047],[104.41451930000005,0.502066900000045],[104.41684020000008,0.502923700000053],[104.41705820000004,0.505230200000028],[104.41129690000008,0.509955700000035]]]]},"properties":{"shapeName":"Lingga","shapeISO":"","shapeID":"22746128B2577365859383","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[115.99374580000006,-8.897790899999961],[115.99232670000004,-8.899316799999951],[115.99310490000005,-8.900964699999975],[115.99474530000009,-8.899622],[115.99374580000006,-8.897790899999961]]],[[[116.083231,-8.887846],[116.082613,-8.8891582],[116.084528,-8.889230699999928],[116.083231,-8.887846]]],[[[115.98116490000007,-8.8825569],[115.97973820000004,-8.883947399999954],[115.9808445000001,-8.884258299999942],[115.98116490000007,-8.8825569]]],[[[115.87126920000003,-8.827157],[115.86942290000002,-8.827276199999972],[115.87061310000001,-8.828748699999949],[115.87126920000003,-8.827157]]],[[[115.89302820000012,-8.749401699999964],[115.8937558,-8.74857019999996],[115.89126120000003,-8.746595299999967],[115.89126120000003,-8.748882],[115.89302820000012,-8.749401699999964]]],[[[116.06296540000005,-8.734730699999943],[116.0602493,-8.734061199999928],[116.06204220000006,-8.736562699999979],[116.0642319000001,-8.736598],[116.06320950000008,-8.736537],[116.0646210000001,-8.735198],[116.06296540000005,-8.734730699999943]]],[[[115.89107360000003,-8.744507899999974],[115.89147990000004,-8.734362799999928],[115.89005730000008,-8.731462299999976],[115.88525290000007,-8.7311112],[115.88220400000012,-8.736007899999947],[115.88395950000006,-8.7404427],[115.88571490000004,-8.743029599999943],[115.89107360000003,-8.744507899999974]]],[[[116.06010440000011,-8.732531499999936],[116.06149290000008,-8.73167989999996],[116.06018830000005,-8.7304459],[116.06010440000011,-8.732531499999936]]],[[[115.93028450000008,-8.73213009999995],[115.92778970000006,-8.731021899999973],[115.92585180000003,-8.726402299999961],[115.92114070000002,-8.726402299999961],[115.91845890000002,-8.733608199999935],[115.915781,-8.735918],[115.92003060000002,-8.738136299999951],[115.9209538,-8.742570899999976],[115.91771890000007,-8.743986099999972],[115.91337780000003,-8.749038699999971],[115.91383930000006,-8.750331899999935],[115.91845890000002,-8.747928599999966],[115.92391010000006,-8.748113599999954],[115.92483330000005,-8.75144],[115.92705350000006,-8.752918199999954],[115.927248,-8.759334599999931],[115.934721,-8.761880899999937],[115.93601420000005,-8.7608643],[115.93388940000011,-8.758092899999951],[115.93240930000002,-8.75079349999993],[115.92594340000005,-8.741924299999937],[115.92529490000004,-8.738782899999933],[115.926405,-8.73406979999993],[115.93028450000008,-8.73213009999995]]],[[[115.91089820000002,-8.729370099999926],[115.90965840000001,-8.724626499999943],[115.90734290000012,-8.722524599999929],[115.90167810000003,-8.724037199999941],[115.9046307000001,-8.730344799999955],[115.91089820000002,-8.729370099999926]]],[[[116.02682510000011,-8.725832],[116.0285818000001,-8.724704499999973],[116.0266385000001,-8.721395499999971],[116.02083260000006,-8.72425409999994],[116.024485,-8.726175099999978],[116.02682510000011,-8.725832]]],[[[115.96228570000005,-8.723335499999962],[115.96234760000004,-8.720922599999938],[115.96117210000011,-8.720613299999968],[115.96036780000009,-8.7232736],[115.96228570000005,-8.723335499999962]]],[[[116.01749940000002,-8.724231799999927],[116.01482080000005,-8.718821899999966],[116.01307870000005,-8.720493899999951],[116.01296650000006,-8.724089],[116.01426730000003,-8.7251113],[116.01749940000002,-8.724231799999927]]],[[[116.01151840000011,-8.719117299999937],[116.00982450000004,-8.715650799999935],[116.0071458000001,-8.715453799999977],[116.00813060000007,-8.718959799999936],[116.01151840000011,-8.719117299999937]]],[[[115.91793630000006,-8.720233899999926],[115.9173641000001,-8.7158165],[115.91380880000008,-8.713913],[115.913084,-8.71558],[115.91538430000003,-8.720930099999975],[115.91793630000006,-8.720233899999926]]],[[[115.97706170000004,-8.708765699999958],[115.976819,-8.706727199999932],[115.97521730000005,-8.706630099999927],[115.97550850000005,-8.708668599999953],[115.97706170000004,-8.708765699999958]]],[[[116.07401320000008,-8.625266199999942],[116.06890110000006,-8.651346599999954],[116.06936240000005,-8.659622299999967],[116.07199860000003,-8.669890399999929],[116.06839160000004,-8.677136],[116.0566864000001,-8.724532099999976],[116.0557404000001,-8.737795799999958],[116.05960080000011,-8.736903199999972],[116.056633,-8.736623699999939],[116.0595856000001,-8.7303],[116.05936430000008,-8.726738],[116.0627823000001,-8.729383499999926],[116.06318370000008,-8.731290199999933],[116.06960140000001,-8.728487],[116.07210750000002,-8.729079199999944],[116.07195860000002,-8.731051799999932],[116.07347770000001,-8.731712099999982],[116.07468720000008,-8.729906699999958],[116.07691330000011,-8.729468499999939],[116.0774391000001,-8.730993399999932],[116.078742,-8.728703099999962],[116.08273310000004,-8.727187499999957],[116.08404540000004,-8.7280369],[116.07287080000003,-8.7383749],[116.07073790000004,-8.735653399999933],[116.06962180000005,-8.736303199999952],[116.06570440000007,-8.741911899999934],[116.06721370000002,-8.74431489999995],[116.0666030000001,-8.746359599999948],[116.05953980000004,-8.75106809999994],[116.0589218,-8.754259099999956],[116.0619028000001,-8.757924],[116.06113280000011,-8.763049],[116.0644122000001,-8.765784199999928],[116.06483180000009,-8.771089699999948],[116.06222810000008,-8.766227799999967],[116.05698390000009,-8.767886199999964],[116.04975890000003,-8.760856599999954],[116.04404450000004,-8.765974],[116.03899380000007,-8.76369189999997],[116.04068760000007,-8.759669299999928],[116.04040530000009,-8.756087299999933],[116.03640750000011,-8.750819199999967],[116.039238,-8.74883079999995],[116.04190830000005,-8.749098799999956],[116.0461884,-8.745656],[116.04167940000002,-8.739761399999963],[116.04287720000002,-8.736331899999925],[116.04169460000003,-8.73403929999995],[116.046402,-8.729269],[116.0469131000001,-8.726812399999972],[116.04550170000005,-8.723554599999943],[116.04126740000004,-8.725479099999973],[116.03498840000009,-8.7248249],[116.03383640000004,-8.72300619999993],[116.035312,-8.721087099999977],[116.0339355000001,-8.719660799999929],[116.02850340000009,-8.728400199999953],[116.03031160000012,-8.73705289999998],[116.0295334000001,-8.739409399999943],[116.02317810000011,-8.741606699999977],[116.0148163,-8.750607499999944],[116.01053620000005,-8.751685099999975],[116.00849910000011,-8.751202599999942],[116.003418,-8.743138299999941],[115.99674990000005,-8.738711399999943],[115.98976140000002,-8.7305126],[115.98500060000003,-8.730444899999952],[115.98442080000007,-8.734103199999936],[115.98144980000006,-8.735750199999927],[115.97503310000002,-8.7321722],[115.96910080000009,-8.733509899999945],[115.965664,-8.728799],[115.9674142,-8.7345568],[115.966156,-8.736428299999943],[115.95652770000004,-8.744214099999965],[115.952446,-8.745842],[115.94934840000008,-8.745383299999958],[115.94538110000008,-8.748867],[115.94544220000012,-8.750565499999936],[115.9418793000001,-8.753885299999979],[115.94259640000007,-8.75846189999993],[115.9392471000001,-8.765122399999939],[115.93534850000003,-8.767721199999926],[115.93554690000008,-8.769811599999969],[115.92672730000004,-8.7681255],[115.91978460000007,-8.768917099999953],[115.91978460000007,-8.772253],[115.91703030000008,-8.775465],[115.90740970000002,-8.773070299999972],[115.9044037000001,-8.770883499999968],[115.9043732,-8.7678547],[115.89833830000009,-8.7622509],[115.89438630000006,-8.760657299999934],[115.89795690000005,-8.756232299999965],[115.897049,-8.754593799999952],[115.90022280000005,-8.750239399999941],[115.89942930000007,-8.746721299999933],[115.897583,-8.745602599999927],[115.8950043000001,-8.747013099999947],[115.89517210000008,-8.750935599999934],[115.88787080000009,-8.763819699999942],[115.88539120000007,-8.764741899999933],[115.88201140000001,-8.763484],[115.88140110000006,-8.759513899999945],[115.8828277,-8.757401499999958],[115.880249,-8.752074199999981],[115.86686710000004,-8.746206299999926],[115.86486820000005,-8.742709199999979],[115.86488340000005,-8.7387676],[115.86898040000005,-8.7296009],[115.8656006000001,-8.722696299999939],[115.8660049,-8.720804199999975],[115.85998530000006,-8.726558699999941],[115.85763550000001,-8.725940699999967],[115.85613250000006,-8.7226639],[115.85271460000001,-8.720207199999948],[115.8429718000001,-8.725206399999934],[115.8383636000001,-8.729159299999935],[115.83673090000002,-8.741410199999962],[115.829895,-8.744624099999953],[115.82582090000005,-8.750379599999974],[115.8209915000001,-8.752208699999926],[115.82437130000005,-8.757505399999957],[115.82354740000005,-8.7630606],[115.82514190000006,-8.770680399999947],[115.82941440000002,-8.779398],[115.832489,-8.77979369999997],[115.829361,-8.78983119999998],[115.82769010000004,-8.790651299999979],[115.82878110000001,-8.7923031],[115.8260193000001,-8.794999099999927],[115.82981110000003,-8.795109799999977],[115.82824710000011,-8.796361],[115.8289185000001,-8.798765199999934],[115.82678990000011,-8.800842299999942],[115.83032990000004,-8.7991323],[115.83240510000007,-8.799595799999963],[115.83323670000004,-8.8029365],[115.83122790000004,-8.804229499999963],[115.83303330000001,-8.8048755],[115.83522030000006,-8.809014299999944],[115.83188630000006,-8.812013599999943],[115.83300780000002,-8.812479],[115.83127600000012,-8.815176],[115.83402250000006,-8.813453699999968],[115.8413849000001,-8.813735],[115.84334560000002,-8.811927799999978],[115.84819790000006,-8.813121799999976],[115.84853360000011,-8.816429199999959],[115.8446808000001,-8.82018],[115.84625240000003,-8.825527199999954],[115.85321810000005,-8.822883599999955],[115.85685730000012,-8.82335569999998],[115.8571472000001,-8.824556299999927],[115.85883330000001,-8.823653199999967],[115.85900120000008,-8.824997899999971],[115.862175,-8.821958499999937],[115.86396020000007,-8.823213599999974],[115.86424260000001,-8.820496599999956],[115.86632540000005,-8.818474799999933],[115.86929320000002,-8.818182899999954],[115.871994,-8.81993579999994],[115.87181090000001,-8.822610899999972],[115.87378690000003,-8.822812099999965],[115.87342830000011,-8.826104199999975],[115.87609860000009,-8.8246231],[115.87884520000011,-8.8264303],[115.88072970000007,-8.830178299999943],[115.88267520000011,-8.829879799999958],[115.88419340000007,-8.826032599999962],[115.88656620000006,-8.825620699999945],[115.89066320000006,-8.830754299999967],[115.889534,-8.832805599999972],[115.89128110000001,-8.8309097],[115.89272310000001,-8.831919699999958],[115.89654540000004,-8.830097199999955],[115.90224460000002,-8.83049109999996],[115.9027023000001,-8.832981099999927],[115.90436550000004,-8.833191899999974],[115.90605160000007,-8.835811599999943],[115.905571,-8.838707899999974],[115.91344450000008,-8.840704899999935],[115.91395570000009,-8.845198599999947],[115.91542820000006,-8.8438959],[115.9159393000001,-8.8451071],[115.91846470000007,-8.844326],[115.91841130000012,-8.845459],[115.92056280000008,-8.843893099999946],[115.92103580000003,-8.837946899999963],[115.92495730000007,-8.834421199999952],[115.93067170000006,-8.832795099999942],[115.93336490000002,-8.833372099999963],[115.93570710000006,-8.836344699999927],[115.94519810000008,-8.841205599999967],[115.9471512,-8.84377],[115.94830320000005,-8.846489],[115.94662480000011,-8.849926],[115.94740290000004,-8.850567799999965],[115.94589990000009,-8.85123249999998],[115.94690390000005,-8.851225],[115.94802840000011,-8.850141699999938],[115.946764,-8.851741799999957],[115.95070080000005,-8.852409399999942],[115.95137210000007,-8.854888899999935],[115.95282170000007,-8.854610399999956],[115.95215030000008,-8.855989499999964],[115.95572850000008,-8.856191599999931],[115.96006970000008,-8.860694899999942],[115.9614964000001,-8.860086399999943],[115.9636402000001,-8.861898399999973],[115.96139720000008,-8.868187],[115.96328930000004,-8.8695145],[115.96617320000007,-8.868398699999943],[115.966692,-8.870132399999932],[115.97014810000007,-8.868536],[115.9718037,-8.869421],[115.9726429000001,-8.872009299999945],[115.97077370000011,-8.873840299999927],[115.97207070000002,-8.874422099999947],[115.9719563000001,-8.878976799999975],[115.97500800000012,-8.877319299999954],[115.97608380000008,-8.878196699999933],[115.97645000000011,-8.876817699999947],[115.98050880000005,-8.876998899999933],[115.97989080000002,-8.879379299999925],[115.98156170000004,-8.879655799999966],[115.98121070000002,-8.8816071],[115.98330880000003,-8.882051499999932],[115.98462870000003,-8.880489299999965],[115.98637580000002,-8.882959399999947],[115.98868750000008,-8.883304599999974],[115.9881229,-8.884777099999951],[115.9895878000001,-8.885761299999956],[115.987833,-8.8880501],[115.98936650000007,-8.889804799999979],[115.991045,-8.890300799999977],[115.9935551000001,-8.8876762],[115.99673650000011,-8.888113],[115.99821660000009,-8.893039699999974],[115.9960880000001,-8.896911599999953],[116.00300790000006,-8.897859599999947],[116.00235940000005,-8.899591399999963],[116.00426670000002,-8.9029865],[116.00650220000011,-8.9024029],[116.00809670000001,-8.904253],[116.01155280000012,-8.902990299999942],[116.01403240000002,-8.899986299999966],[116.01715280000008,-8.8993816],[116.0184269,-8.901876399999935],[116.02048680000007,-8.901449199999945],[116.0226841000001,-8.9030018],[116.02175330000011,-8.89936259999996],[116.01651190000007,-8.89797969999995],[116.0156574,-8.894689599999936],[116.01927380000006,-8.889890699999967],[116.02437780000002,-8.891351699999973],[116.02408030000004,-8.889434799999947],[116.02715490000003,-8.887504599999943],[116.02736090000008,-8.882349],[116.02156260000004,-8.876234099999976],[116.01733590000003,-8.874103499999933],[116.00998120000008,-8.873823199999947],[116.00952340000003,-8.871280699999943],[116.0119343,-8.864265399999965],[116.01860240000008,-8.859642],[116.02129550000006,-8.86047739999998],[116.0281467000001,-8.857145299999956],[116.03322030000004,-8.857900599999937],[116.0345860000001,-8.858846699999958],[116.03379250000012,-8.860117],[116.03507420000005,-8.863683699999967],[116.03708080000001,-8.864458099999979],[116.03825570000004,-8.862611799999968],[116.04351230000009,-8.861360499999932],[116.047617,-8.85396959999997],[116.0532856000001,-8.853416399999958],[116.05284310000002,-8.852157599999941],[116.05429270000002,-8.851318399999968],[116.06001470000001,-8.851837199999977],[116.06421090000003,-8.855520199999944],[116.06640820000007,-8.853870399999948],[116.073122,-8.856466299999965],[116.07274820000009,-8.862672799999928],[116.06984140000009,-8.861743899999965],[116.06944470000008,-8.863990799999954],[116.06780430000003,-8.8645687],[116.05944250000005,-8.863130599999977],[116.05188180000005,-8.864923499999975],[116.05081370000005,-8.86759],[116.04763980000007,-8.868057299999975],[116.0446644000001,-8.870431899999971],[116.0498295000001,-8.885261499999956],[116.05124090000004,-8.885803199999941],[116.05649760000006,-8.8828564],[116.07204630000001,-8.884870499999977],[116.07405280000012,-8.892795599999943],[116.07750130000011,-8.895324699999946],[116.0785313,-8.893262899999968],[116.0769901000001,-8.8852386],[116.0793476,-8.883205399999952],[116.07956890000003,-8.878484699999944],[116.08262830000001,-8.873922299999947],[116.1013812000001,-8.869828899999959],[116.0990696,-8.859664899999927],[116.10025220000011,-8.8559856],[116.09188270000004,-8.8460312],[116.0927067,-8.839611099999956],[116.09710880000011,-8.831052799999952],[116.10666850000007,-8.818569199999956],[116.10668180000005,-8.816549299999963],[116.11476140000002,-8.808161699999971],[116.11343380000005,-8.802656199999944],[116.12338260000001,-8.78906349999994],[116.12644350000005,-8.787704899999937],[116.12419890000001,-8.783115399999929],[116.12603760000002,-8.782343899999944],[116.12621310000009,-8.779635399999961],[116.128685,-8.779339799999946],[116.13346860000001,-8.768286699999976],[116.14156340000011,-8.766227699999945],[116.14048,-8.761865599999965],[116.13507840000011,-8.755548499999975],[116.133255,-8.748365399999955],[116.1308365000001,-8.745399499999962],[116.13163,-8.740784599999927],[116.13816070000007,-8.7335253],[116.13977820000002,-8.72900009999995],[116.15183530000002,-8.73798389999996],[116.15358730000003,-8.7380457],[116.165947,-8.733149499999968],[116.16727150000008,-8.729801099999975],[116.166357,-8.726629299999956],[116.17255720000003,-8.728195],[116.1744668,-8.72696129999997],[116.173288,-8.723676499999954],[116.17136060000007,-8.72286939999998],[116.17176350000011,-8.718627499999968],[116.1703549,-8.715988299999935],[116.1767417000001,-8.711893],[116.17643740000005,-8.702762599999971],[116.17397950000009,-8.691151099999956],[116.16873930000008,-8.681768399999953],[116.16720580000003,-8.675794099999962],[116.16827390000003,-8.674023599999941],[116.16692350000005,-8.672852],[116.17062380000004,-8.673973499999931],[116.17068490000008,-8.6727251],[116.17307280000011,-8.672907299999963],[116.17684170000007,-8.678252699999973],[116.17950440000004,-8.677939899999956],[116.18144990000008,-8.679869099999962],[116.1841965000001,-8.678476799999942],[116.18454740000004,-8.676189799999975],[116.1918945000001,-8.675493699999947],[116.19606780000004,-8.673535799999968],[116.18813320000004,-8.645319],[116.18866730000002,-8.6418972],[116.18143690000011,-8.639648299999976],[116.178154,-8.6262856],[116.18044650000002,-8.625250799999947],[116.178509,-8.62042759999997],[116.18863680000004,-8.6187439],[116.18991090000009,-8.61711409999998],[116.1942825000001,-8.617810299999974],[116.20148470000004,-8.609841299999971],[116.21879580000007,-8.601965899999925],[116.22096250000004,-8.599380499999938],[116.22752380000009,-8.598756799999933],[116.23149870000009,-8.59538559999993],[116.242279,-8.59608559999998],[116.244545,-8.59369849999996],[116.24945070000001,-8.592715299999952],[116.254631,-8.588769899999932],[116.25547790000007,-8.585444399999972],[116.25776670000005,-8.585277599999927],[116.25868230000003,-8.58103749999998],[116.26548,-8.578433],[116.2662888000001,-8.57534979999997],[116.2652283000001,-8.574617399999966],[116.26679230000002,-8.572732899999949],[116.26533510000002,-8.571919499999979],[116.26548770000011,-8.568846699999938],[116.26686860000007,-8.564135499999963],[116.27098080000007,-8.561580699999979],[116.27597050000008,-8.561719899999957],[116.2783356000001,-8.558033],[116.28011320000007,-8.559034399999973],[116.28780360000007,-8.556700699999965],[116.28846740000006,-8.555072799999948],[116.2905273,-8.554820099999972],[116.29273990000002,-8.55065159999998],[116.29541010000003,-8.550628699999947],[116.29760740000006,-8.54486369999995],[116.30398560000003,-8.537388799999974],[116.309433,-8.523630199999957],[116.31609340000011,-8.516949699999941],[116.31653590000008,-8.511785499999974],[116.32065580000005,-8.504571899999974],[116.32055660000003,-8.498345399999948],[116.31552890000012,-8.487450599999931],[116.306839,-8.474206],[116.3035202000001,-8.461625099999935],[116.30573270000002,-8.460580799999946],[116.30586240000002,-8.457105599999977],[116.31315610000001,-8.4496746],[116.31520840000007,-8.442908299999942],[116.318573,-8.44020269999993],[116.32032780000009,-8.433032],[116.32699590000004,-8.4309873],[116.3305054000001,-8.4239893],[116.33695220000004,-8.417518599999937],[116.33895830000006,-8.410516],[116.33291730000008,-8.410684299999957],[116.32776950000004,-8.413721099999975],[116.32018230000006,-8.42352459999995],[116.31101650000005,-8.429342099999928],[116.304433,-8.429842699999938],[116.30073870000001,-8.432914399999959],[116.289105,-8.434997199999941],[116.286328,-8.43780369999996],[116.27842340000007,-8.440029],[116.27724780000005,-8.444968099999926],[116.26707190000002,-8.450618],[116.25599260000001,-8.452672699999937],[116.2480111000001,-8.4518154],[116.244792,-8.453725],[116.23588450000011,-8.4525341],[116.229939,-8.455736],[116.222408,-8.45669],[116.218055,-8.471964],[116.213908,-8.480429],[116.2052605,-8.4802397],[116.198745,-8.477933],[116.192344,-8.473196],[116.191953,-8.467741],[116.183791,-8.463025],[116.176679,-8.463449],[116.172053,-8.466126],[116.16746400000011,-8.465619],[116.163491,-8.462839],[116.160961,-8.456209],[116.154883,-8.459872],[116.148852,-8.45775],[116.146218,-8.458254],[116.142126,-8.454358],[116.137362,-8.457042],[116.13487690000011,-8.460769199999959],[116.13355500000011,-8.469274],[116.12949220000007,-8.470637199999942],[116.10143860000005,-8.467854],[116.09082550000005,-8.464588099999958],[116.08077810000009,-8.466389],[116.07481330000007,-8.472529599999973],[116.07320220000008,-8.471089199999938],[116.07183830000008,-8.463139],[116.0682584000001,-8.461792299999956],[116.04484050000008,-8.470466],[116.03738730000009,-8.470204199999955],[116.03765710000005,-8.481232399999953],[116.03388970000003,-8.485027699999932],[116.03860940000004,-8.4919182],[116.03967380000006,-8.496567899999945],[116.04247480000004,-8.49512539999995],[116.04548590000002,-8.498150499999952],[116.0443795000001,-8.503178299999945],[116.04695640000011,-8.501245599999947],[116.0516434000001,-8.502674099999979],[116.06054140000003,-8.5143404],[116.06019120000008,-8.517113399999971],[116.06401460000006,-8.520866799999965],[116.067656,-8.53134259999996],[116.06942550000008,-8.551040199999932],[116.0848668000001,-8.560019199999942],[116.0900421,-8.55956459999993],[116.0970807000001,-8.555051899999967],[116.10682110000005,-8.554786499999977],[116.11581420000005,-8.557216599999947],[116.11935430000005,-8.559997599999974],[116.1194369000001,-8.561925199999962],[116.12317630000007,-8.563179099999957],[116.1235445000001,-8.56450689999997],[116.13055150000002,-8.565115599999956],[116.13225940000007,-8.563536599999964],[116.13581560000011,-8.56602049999998],[116.1427440000001,-8.56558819999998],[116.144524,-8.5695724],[116.14769780000006,-8.569755099999952],[116.148031,-8.571808099999942],[116.15029230000005,-8.571479199999942],[116.1483591000001,-8.572641699999963],[116.150151,-8.5757392],[116.14747790000001,-8.579404899999929],[116.1478019000001,-8.582453499999929],[116.14991210000005,-8.583869099999959],[116.15587770000002,-8.5829416],[116.15612390000001,-8.584235499999977],[116.15999490000002,-8.584886099999949],[116.16069720000007,-8.590133299999934],[116.17011900000011,-8.591483299999936],[116.17102290000003,-8.593321199999934],[116.16216620000012,-8.599823],[116.15582410000002,-8.607668699999977],[116.15341190000004,-8.607663399999979],[116.15071680000005,-8.612197699999967],[116.14181730000007,-8.614023],[116.13614440000003,-8.6120025],[116.13670520000005,-8.616562],[116.13345320000008,-8.615442299999927],[116.13100640000005,-8.618900699999926],[116.12704880000001,-8.617010499999935],[116.1229770000001,-8.6187468],[116.11855290000005,-8.618275399999959],[116.11371340000005,-8.622078099999953],[116.1114616000001,-8.621849599999962],[116.11032110000008,-8.621222899999964],[116.11105210000005,-8.616679899999951],[116.108845,-8.617194799999936],[116.1091977000001,-8.619248699999957],[116.10522920000005,-8.620858399999975],[116.101292,-8.625181399999974],[116.08514950000006,-8.626382299999932],[116.07760210000004,-8.62274659999997],[116.074688,-8.623047399999962],[116.07401320000008,-8.625266199999942]]]]},"properties":{"shapeName":"Lombok Barat","shapeISO":"","shapeID":"22746128B79869105453864","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[116.36733250000009,-8.953271899999947],[116.36550140000008,-8.953689599999962],[116.3662567,-8.954604199999949],[116.36733250000009,-8.953271899999947]]],[[[116.3299637,-8.920826],[116.32938390000004,-8.919756899999982],[116.32797240000002,-8.921950299999935],[116.3299637,-8.920826]]],[[[116.371463,-8.91104359999997],[116.37083880000012,-8.908717],[116.36998760000006,-8.9119515],[116.371463,-8.91104359999997]]],[[[116.256134,-8.910090399999945],[116.25465390000011,-8.907635699999958],[116.25350190000006,-8.9081077],[116.25366210000004,-8.91013909999998],[116.256134,-8.910090399999945]]],[[[116.1013812000001,-8.869828899999959],[116.10675050000009,-8.869216],[116.1074982,-8.872499499999947],[116.10925290000012,-8.872882799999957],[116.11557010000001,-8.867113099999926],[116.12329100000011,-8.867058699999973],[116.13684850000004,-8.8700132],[116.1418076000001,-8.8690891],[116.149849,-8.862954099999968],[116.1554413,-8.864409499999965],[116.16173550000008,-8.873036399999933],[116.16132360000006,-8.876837699999953],[116.1598282000001,-8.8758573],[116.15731810000011,-8.877207799999951],[116.1608887000001,-8.886069299999974],[116.156395,-8.89363],[116.16006470000002,-8.894996699999979],[116.15986630000009,-8.896752299999946],[116.162384,-8.895852099999956],[116.162117,-8.898176199999966],[116.16463470000008,-8.900619499999948],[116.16293330000008,-8.903326],[116.16348270000003,-8.904784199999938],[116.16201780000006,-8.904731699999957],[116.1620789000001,-8.9079933],[116.16718290000006,-8.905343099999925],[116.16860960000008,-8.907664299999965],[116.1678161000001,-8.910005599999977],[116.16982270000005,-8.909227399999963],[116.17205050000007,-8.91029169999996],[116.17366030000005,-8.913797399999964],[116.18089290000012,-8.911256799999933],[116.18468470000005,-8.914470699999981],[116.18724820000011,-8.911256799999933],[116.18875890000004,-8.912225699999965],[116.19074250000006,-8.911253],[116.19399260000012,-8.912990599999944],[116.19480130000011,-8.917371799999955],[116.19498440000007,-8.915309899999954],[116.19924160000005,-8.91144939999998],[116.19770810000011,-8.910113299999978],[116.19810490000009,-8.904515299999957],[116.19980620000001,-8.902679399999954],[116.20691680000004,-8.900952299999972],[116.21585080000011,-8.902332299999955],[116.21670530000006,-8.905852299999935],[116.22064970000008,-8.90948009999994],[116.22200770000006,-8.908304199999975],[116.22654720000003,-8.908749599999965],[116.22764590000008,-8.906384499999945],[116.22610470000006,-8.902321799999982],[116.22767640000006,-8.9005499],[116.23017880000009,-8.900697699999967],[116.23365780000006,-8.9039698],[116.2327805000001,-8.906315799999959],[116.2338181,-8.915144],[116.2389832,-8.9173775],[116.2449875000001,-8.913259499999981],[116.24264530000005,-8.907836],[116.24333950000005,-8.905414599999972],[116.24872590000007,-8.9026356],[116.25136570000006,-8.902727099999936],[116.25525660000005,-8.906104099999936],[116.25913240000011,-8.907237099999975],[116.26032260000011,-8.906159399999979],[116.262085,-8.908021],[116.26368710000008,-8.907259],[116.26815030000012,-8.910372699999925],[116.27153010000006,-8.909309399999927],[116.27635960000009,-8.913089799999966],[116.27593230000002,-8.912026399999945],[116.27754980000009,-8.9115667],[116.275589,-8.909994099999949],[116.274559,-8.905882799999972],[116.27616120000005,-8.899637199999972],[116.27476500000012,-8.896041899999943],[116.2761154000001,-8.893649099999948],[116.27848050000011,-8.893261],[116.29109960000005,-8.8972597],[116.29075620000003,-8.899500899999964],[116.29776760000004,-8.9055233],[116.29673,-8.906761199999949],[116.2975464000001,-8.909661299999925],[116.30027770000004,-8.910350799999947],[116.30143740000005,-8.907597499999952],[116.30368040000008,-8.907137899999952],[116.3144913000001,-8.908603699999958],[116.31984710000006,-8.918354],[116.3196259,-8.921144499999969],[116.32032010000012,-8.920090699999946],[116.3211212000001,-8.920886],[116.3220444000001,-8.917734099999961],[116.32395940000004,-8.917310699999973],[116.3209839000001,-8.915642699999978],[116.3199234000001,-8.911657299999945],[116.32291410000005,-8.908514],[116.327507,-8.908823],[116.32809450000002,-8.910873399999957],[116.3298721000001,-8.910239199999978],[116.33135220000008,-8.911644],[116.3311920000001,-8.915978399999972],[116.32937620000007,-8.9170733],[116.33043670000006,-8.919952399999943],[116.33293150000009,-8.915155399999946],[116.33708950000005,-8.916297],[116.33766180000009,-8.918249099999969],[116.34241490000011,-8.921955099999934],[116.34106450000002,-8.926496499999928],[116.3465576000001,-8.930464699999959],[116.35095980000006,-8.926337199999978],[116.3468170000001,-8.920969],[116.34892270000012,-8.915759099999946],[116.34700010000006,-8.915179199999955],[116.34500120000007,-8.910161],[116.34194190000005,-8.907786399999964],[116.33972170000004,-8.902502099999936],[116.34075170000006,-8.900116899999944],[116.346489,-8.8975163],[116.35054020000007,-8.901400599999931],[116.35074620000012,-8.905138],[116.35239410000008,-8.905864699999938],[116.35693360000005,-8.904203399999972],[116.3587113000001,-8.906355899999937],[116.358139,-8.9114847],[116.35913850000009,-8.909231199999965],[116.35980990000007,-8.911078399999951],[116.360466,-8.909306499999957],[116.36620330000005,-8.909278899999947],[116.3715820000001,-8.904562],[116.37644190000003,-8.903816199999937],[116.37998960000004,-8.9067669],[116.38098910000008,-8.909933099999932],[116.37007140000003,-8.922787699999958],[116.36650080000004,-8.925091699999939],[116.366951,-8.930219699999952],[116.36953740000001,-8.933393499999966],[116.369484,-8.940107299999966],[116.372963,-8.945624299999963],[116.36802670000009,-8.950986899999975],[116.36776730000008,-8.953772499999957],[116.36912540000003,-8.953914599999962],[116.36942290000002,-8.951608699999952],[116.37214660000006,-8.95050139999995],[116.3740692,-8.951193799999942],[116.37662510000007,-8.956074699999931],[116.38040160000003,-8.955685599999981],[116.3807068000001,-8.953552299999956],[116.38256840000008,-8.953740099999948],[116.3834839000001,-8.951624899999956],[116.38272860000006,-8.950153299999954],[116.386734,-8.950262099999975],[116.3882675000001,-8.947776799999929],[116.39031980000004,-8.94747929999994],[116.3935547000001,-8.952678699999979],[116.39347080000005,-8.948376699999926],[116.3950119000001,-8.947439199999963],[116.39527890000011,-8.948658899999941],[116.39652250000006,-8.946919399999956],[116.39511870000001,-8.946661],[116.39425660000006,-8.944196699999964],[116.39619450000009,-8.943764699999974],[116.39591220000011,-8.940827399999932],[116.39777370000002,-8.941047699999956],[116.395813,-8.93927],[116.39643860000001,-8.935999899999956],[116.39767460000007,-8.936543399999948],[116.39344790000007,-8.926057799999967],[116.39389040000003,-8.923124299999927],[116.3977966000001,-8.914697599999954],[116.39906310000003,-8.906279599999948],[116.40491490000011,-8.899191899999948],[116.402565,-8.896506299999942],[116.4026871000001,-8.893801699999926],[116.40019230000007,-8.894103],[116.39800260000004,-8.890700299999935],[116.39868930000011,-8.885836599999948],[116.39537810000002,-8.885150899999928],[116.39442440000005,-8.877700799999957],[116.39546970000004,-8.874136],[116.39119720000008,-8.871663099999978],[116.39028170000006,-8.872514699999954],[116.39006040000004,-8.869721399999946],[116.38627620000011,-8.866581899999971],[116.38779450000004,-8.861078299999974],[116.391983,-8.856868799999972],[116.39846040000009,-8.855654699999945],[116.40161880000005,-8.85659929999997],[116.399917,-8.847349399999928],[116.39604250000002,-8.846624499999962],[116.39379880000001,-8.837399499999947],[116.389946,-8.8330755],[116.3900986000001,-8.821471199999962],[116.39615630000003,-8.817692799999975],[116.3975296000001,-8.815192199999956],[116.40078740000001,-8.815718699999934],[116.40288480000004,-8.810912799999926],[116.40340420000007,-8.811723699999959],[116.41175080000005,-8.809025799999972],[116.41438290000008,-8.806691199999932],[116.4175034000001,-8.776400599999931],[116.42161560000011,-8.774920399999928],[116.42150880000008,-8.77246189999994],[116.42522430000008,-8.772893],[116.42594910000003,-8.760099399999945],[116.42874150000011,-8.759348899999964],[116.42832180000005,-8.755937599999982],[116.43513960000007,-8.755826699999943],[116.44026190000011,-8.752023699999938],[116.44577790000005,-8.74590109999997],[116.44644930000004,-8.739958799999954],[116.44300840000005,-8.734199499999932],[116.44505120000008,-8.729139699999962],[116.44361880000008,-8.728725399999973],[116.44338230000005,-8.726655],[116.44635010000002,-8.722916599999962],[116.43921620000003,-8.71982769999994],[116.43585930000006,-8.716130299999975],[116.42868,-8.691117299999974],[116.41977860000009,-8.689009099999964],[116.4164654000001,-8.682124199999976],[116.40719230000002,-8.681072899999947],[116.40331720000006,-8.677460899999971],[116.39936790000002,-8.6829281],[116.39492760000007,-8.684191699999928],[116.39216570000008,-8.680034699999965],[116.385162,-8.674513899999965],[116.38176690000012,-8.668267299999968],[116.38115650000009,-8.663724899999977],[116.3849550000001,-8.646199699999954],[116.37843260000011,-8.63954979999994],[116.37818730000004,-8.636773799999958],[116.37655070000005,-8.635572],[116.3780594000001,-8.6344085],[116.37873700000011,-8.628284299999962],[116.37656360000005,-8.611168899999939],[116.37818870000001,-8.605106399999954],[116.3763474000001,-8.601209],[116.37803660000009,-8.597793699999954],[116.37696040000003,-8.5922575],[116.37896670000009,-8.58069759999995],[116.38069410000003,-8.5499177],[116.37967680000008,-8.528058099999953],[116.38445060000004,-8.516788299999973],[116.38387210000008,-8.507190199999968],[116.38597860000004,-8.494647499999928],[116.38553180000008,-8.489425099999949],[116.391655,-8.483100899999954],[116.39359280000008,-8.478178],[116.4016342000001,-8.471110299999964],[116.4063873,-8.461465799999928],[116.40660860000003,-8.453926099999933],[116.40357970000002,-8.450774199999955],[116.40266420000012,-8.443026499999974],[116.40627140000004,-8.434521399999937],[116.40166470000008,-8.428616499999976],[116.39517970000009,-8.4255123],[116.39218140000003,-8.422399499999926],[116.3850632000001,-8.421424899999977],[116.38240050000002,-8.4101257],[116.37500000000011,-8.4144926],[116.36714170000005,-8.4125242],[116.35937500000011,-8.412681599999928],[116.34585570000002,-8.408787699999948],[116.33895830000006,-8.410516],[116.33695220000004,-8.417518599999937],[116.3305054000001,-8.4239893],[116.32699590000004,-8.4309873],[116.32032780000009,-8.433032],[116.318573,-8.44020269999993],[116.31520840000007,-8.442908299999942],[116.31315610000001,-8.4496746],[116.30586240000002,-8.457105599999977],[116.30573270000002,-8.460580799999946],[116.3035202000001,-8.461625099999935],[116.306839,-8.474206],[116.31552890000012,-8.487450599999931],[116.32055660000003,-8.498345399999948],[116.32065580000005,-8.504571899999974],[116.31653590000008,-8.511785499999974],[116.31609340000011,-8.516949699999941],[116.309433,-8.523630199999957],[116.30398560000003,-8.537388799999974],[116.29760740000006,-8.54486369999995],[116.29541010000003,-8.550628699999947],[116.29273990000002,-8.55065159999998],[116.2905273,-8.554820099999972],[116.28846740000006,-8.555072799999948],[116.28780360000007,-8.556700699999965],[116.28011320000007,-8.559034399999973],[116.2783356000001,-8.558033],[116.27597050000008,-8.561719899999957],[116.27098080000007,-8.561580699999979],[116.26686860000007,-8.564135499999963],[116.26548770000011,-8.568846699999938],[116.26533510000002,-8.571919499999979],[116.26679230000002,-8.572732899999949],[116.2652283000001,-8.574617399999966],[116.2662888000001,-8.57534979999997],[116.26548,-8.578433],[116.25868230000003,-8.58103749999998],[116.25776670000005,-8.585277599999927],[116.25547790000007,-8.585444399999972],[116.254631,-8.588769899999932],[116.24945070000001,-8.592715299999952],[116.244545,-8.59369849999996],[116.242279,-8.59608559999998],[116.23149870000009,-8.59538559999993],[116.22752380000009,-8.598756799999933],[116.22096250000004,-8.599380499999938],[116.21879580000007,-8.601965899999925],[116.20148470000004,-8.609841299999971],[116.1942825000001,-8.617810299999974],[116.18991090000009,-8.61711409999998],[116.18863680000004,-8.6187439],[116.178509,-8.62042759999997],[116.18044650000002,-8.625250799999947],[116.178154,-8.6262856],[116.18143690000011,-8.639648299999976],[116.18866730000002,-8.6418972],[116.18813320000004,-8.645319],[116.19606780000004,-8.673535799999968],[116.1918945000001,-8.675493699999947],[116.18454740000004,-8.676189799999975],[116.1841965000001,-8.678476799999942],[116.18144990000008,-8.679869099999962],[116.17950440000004,-8.677939899999956],[116.17684170000007,-8.678252699999973],[116.17307280000011,-8.672907299999963],[116.17068490000008,-8.6727251],[116.17062380000004,-8.673973499999931],[116.16692350000005,-8.672852],[116.16827390000003,-8.674023599999941],[116.16720580000003,-8.675794099999962],[116.16873930000008,-8.681768399999953],[116.17397950000009,-8.691151099999956],[116.17643740000005,-8.702762599999971],[116.1767417000001,-8.711893],[116.1703549,-8.715988299999935],[116.17176350000011,-8.718627499999968],[116.17136060000007,-8.72286939999998],[116.173288,-8.723676499999954],[116.1744668,-8.72696129999997],[116.17255720000003,-8.728195],[116.166357,-8.726629299999956],[116.16727150000008,-8.729801099999975],[116.165947,-8.733149499999968],[116.15358730000003,-8.7380457],[116.15183530000002,-8.73798389999996],[116.13977820000002,-8.72900009999995],[116.13816070000007,-8.7335253],[116.13163,-8.740784599999927],[116.1308365000001,-8.745399499999962],[116.133255,-8.748365399999955],[116.13507840000011,-8.755548499999975],[116.14048,-8.761865599999965],[116.14156340000011,-8.766227699999945],[116.13346860000001,-8.768286699999976],[116.128685,-8.779339799999946],[116.12621310000009,-8.779635399999961],[116.12603760000002,-8.782343899999944],[116.12419890000001,-8.783115399999929],[116.12644350000005,-8.787704899999937],[116.12338260000001,-8.78906349999994],[116.11343380000005,-8.802656199999944],[116.11476140000002,-8.808161699999971],[116.10668180000005,-8.816549299999963],[116.10666850000007,-8.818569199999956],[116.09710880000011,-8.831052799999952],[116.0927067,-8.839611099999956],[116.09188270000004,-8.8460312],[116.10025220000011,-8.8559856],[116.0990696,-8.859664899999927],[116.1013812000001,-8.869828899999959]]]]},"properties":{"shapeName":"Lombok Tengah","shapeISO":"","shapeID":"22746128B87053683425525","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[116.49928340000008,-8.926061699999934],[116.49691990000008,-8.9276371],[116.49810510000009,-8.928100799999982],[116.49928340000008,-8.926061699999934]]],[[[116.48590220000006,-8.923282799999981],[116.48739890000002,-8.923234499999978],[116.48759210000003,-8.921641199999954],[116.48556420000011,-8.921689399999934],[116.48590220000006,-8.923282799999981]]],[[[116.50255980000009,-8.9198064],[116.50324320000004,-8.91866989999994],[116.5014010000001,-8.9183096],[116.501063,-8.919420099999968],[116.50255980000009,-8.9198064]]],[[[116.46739160000004,-8.841936099999941],[116.4666820000001,-8.840123199999937],[116.46590380000009,-8.841455499999938],[116.46739160000004,-8.841936099999941]]],[[[116.51049770000009,-8.838712699999974],[116.51014670000006,-8.837140099999942],[116.50933040000007,-8.838885299999959],[116.51049770000009,-8.838712699999974]]],[[[116.517944,-8.82755],[116.51653250000004,-8.826623],[116.51622730000008,-8.827913299999977],[116.517944,-8.82755]]],[[[116.52231690000008,-8.816538499999979],[116.52087730000005,-8.815634299999942],[116.52055610000002,-8.816966799999932],[116.52231690000008,-8.816538499999979]]],[[[116.53241770000011,-8.814670599999943],[116.5294315000001,-8.815860399999963],[116.53147780000006,-8.819560399999943],[116.53308390000007,-8.816586099999938],[116.534464,-8.816764599999942],[116.53241770000011,-8.814670599999943]]],[[[116.5079723,-8.8128481],[116.50420340000005,-8.812879599999974],[116.50288350000005,-8.815360099999964],[116.50439420000009,-8.81583029999996],[116.5079723,-8.8128481]]],[[[116.7189098,-8.310412399999962],[116.709869,-8.311525399999937],[116.70719110000005,-8.3142147],[116.707275,-8.318868699999939],[116.70973170000002,-8.325213499999961],[116.71213490000002,-8.32753379999997],[116.71332510000002,-8.326866199999927],[116.71611750000011,-8.331071899999927],[116.72441060000006,-8.332236299999977],[116.7258144000001,-8.33725839999994],[116.7392956000001,-8.344542499999932],[116.74348410000005,-8.3453656],[116.7439495000001,-8.338360799999975],[116.74216420000005,-8.3346882],[116.7324215000001,-8.325926799999934],[116.7189098,-8.310412399999962]]],[[[116.69670070000006,-8.284702299999935],[116.69222220000006,-8.280271599999935],[116.69003260000011,-8.280593899999928],[116.68550070000003,-8.286412299999938],[116.68587450000007,-8.291372299999978],[116.68841510000004,-8.293992099999969],[116.69167290000007,-8.293838499999936],[116.69461020000006,-8.296515499999941],[116.70160640000006,-8.305454299999951],[116.70234640000001,-8.309058199999981],[116.70521510000003,-8.309523599999977],[116.71135670000001,-8.304967899999951],[116.71180690000006,-8.29957769999993],[116.70056880000004,-8.28681],[116.69670070000006,-8.284702299999935]]],[[[116.40161880000005,-8.85659929999997],[116.40309140000011,-8.862031899999977],[116.4009175000001,-8.864767599999936],[116.40407520000008,-8.865546299999949],[116.40336570000011,-8.861891799999967],[116.40860710000004,-8.851449],[116.40949390000003,-8.844421099999977],[116.41334,-8.841068099999973],[116.41391750000003,-8.8375748],[116.41651430000002,-8.837390699999958],[116.41650060000006,-8.835167699999943],[116.41922770000008,-8.83640889999998],[116.42185460000007,-8.829061199999956],[116.42459840000004,-8.828331],[116.42581,-8.825504399999943],[116.42792370000006,-8.826328499999931],[116.43124290000003,-8.832391599999937],[116.43488350000007,-8.834176199999945],[116.43739430000005,-8.840936],[116.44054790000007,-8.840600299999949],[116.44071310000004,-8.842242599999963],[116.44230740000012,-8.838530599999956],[116.44125190000011,-8.837128399999926],[116.441878,-8.832108],[116.44536170000003,-8.828911299999959],[116.45224110000004,-8.832141499999977],[116.46023650000006,-8.828615599999978],[116.4607764000001,-8.825182199999972],[116.46461480000005,-8.821286899999961],[116.46618520000004,-8.823452199999963],[116.47023030000003,-8.823618799999963],[116.472229,-8.827259399999946],[116.47150840000006,-8.829217099999937],[116.46778690000008,-8.830434199999956],[116.46710160000009,-8.831919],[116.468948,-8.835009599999978],[116.473155,-8.835398599999962],[116.47386890000007,-8.839147599999933],[116.47028310000007,-8.846691199999952],[116.46794850000003,-8.847731599999975],[116.46591910000006,-8.846513799999968],[116.46498830000007,-8.8496275],[116.46161610000001,-8.84943579999998],[116.45902980000005,-8.85120779999994],[116.4598079000001,-8.853832299999965],[116.457687,-8.856827799999962],[116.46066250000001,-8.863399499999957],[116.4589764000001,-8.863489199999947],[116.45777850000002,-8.866431299999931],[116.4574047000001,-8.871819499999958],[116.45506250000005,-8.8717652],[116.45405540000002,-8.873497],[116.45103410000002,-8.887406399999975],[116.4498592000001,-8.887981399999944],[116.44831810000005,-8.899130899999932],[116.44560960000001,-8.901775399999963],[116.44187130000012,-8.9024029],[116.44091,-8.906312],[116.43756830000007,-8.908424399999944],[116.43679770000006,-8.911595399999953],[116.43109090000007,-8.913197499999967],[116.43102990000011,-8.916260699999953],[116.43379170000003,-8.917106699999977],[116.4356762000001,-8.919734],[116.44038350000005,-8.9189959],[116.44940910000003,-8.921653799999945],[116.45639760000006,-8.921182699999974],[116.456535,-8.919675899999959],[116.45889250000005,-8.919194199999936],[116.4724728000001,-8.921290399999975],[116.48650320000002,-8.914026299999932],[116.497047,-8.911110899999926],[116.49907650000011,-8.908948],[116.50022090000004,-8.901750599999957],[116.50636250000002,-8.8945523],[116.5083767000001,-8.885830899999974],[116.50336420000008,-8.887816499999929],[116.50385250000011,-8.892177599999968],[116.50061760000006,-8.896152499999971],[116.50325740000005,-8.891918199999964],[116.50101430000007,-8.8856516],[116.50363120000009,-8.886739699999964],[116.50728570000001,-8.8845558],[116.50928460000011,-8.886554699999976],[116.5102611000001,-8.883129199999928],[116.5087582000001,-8.879387899999927],[116.5093227000001,-8.878001199999972],[116.5106502000001,-8.879093199999943],[116.50971950000007,-8.873937599999977],[116.51065790000007,-8.8703718],[116.51242790000003,-8.873085099999969],[116.51279410000006,-8.87964349999993],[116.51638760000003,-8.880206099999953],[116.51973690000011,-8.882696199999941],[116.52063710000004,-8.887234699999965],[116.52330740000002,-8.886804599999948],[116.51830250000012,-8.892079399999943],[116.52020220000009,-8.8945389],[116.51760060000004,-8.894537899999932],[116.51600610000003,-8.897324599999934],[116.51816520000011,-8.89933009999993],[116.52065240000002,-8.898531],[116.52059140000006,-8.900006299999973],[116.52194940000004,-8.900288599999953],[116.52503170000011,-8.8985939],[116.52780110000003,-8.898919099999944],[116.51995810000005,-8.9042025],[116.52168240000003,-8.908179299999972],[116.517944,-8.907078799999965],[116.51269490000004,-8.9118538],[116.5085064000001,-8.912115099999937],[116.50929220000012,-8.914856],[116.51200830000005,-8.915769599999976],[116.52144590000012,-8.90912439999994],[116.52600060000009,-8.908821099999955],[116.52960930000006,-8.904686899999945],[116.53073080000001,-8.906091699999934],[116.5320736000001,-8.904459],[116.53523980000011,-8.905534799999941],[116.536636,-8.902772899999945],[116.54060320000008,-8.9035139],[116.54183160000002,-8.898679799999968],[116.54489860000001,-8.9001246],[116.54727900000012,-8.897831],[116.54894220000006,-8.898471899999947],[116.54878960000008,-8.900322],[116.551231,-8.897047],[116.555122,-8.898579599999948],[116.55613670000002,-8.894931799999938],[116.56007350000004,-8.894735399999945],[116.56105760000003,-8.896054299999946],[116.5670086,-8.891647399999954],[116.57071650000012,-8.891790399999934],[116.57012140000006,-8.885846199999946],[116.57203640000012,-8.880712499999959],[116.57045710000011,-8.8808365],[116.57041890000005,-8.879122699999925],[116.57147940000004,-8.877108599999929],[116.57320360000006,-8.87803359999998],[116.57513390000008,-8.8762417],[116.57530170000007,-8.8715983],[116.57684290000009,-8.871793799999978],[116.57850610000003,-8.869750099999976],[116.580238,-8.871292099999948],[116.58532680000008,-8.8699007],[116.58566250000001,-8.87082289999995],[116.58491480000009,-8.864447599999949],[116.59000360000005,-8.86269],[116.59163630000012,-8.865705499999933],[116.59413870000003,-8.8625727],[116.59383360000004,-8.860272399999928],[116.58982050000009,-8.857152],[116.58721120000007,-8.856805799999961],[116.58547170000008,-8.859334],[116.58092460000012,-8.857206399999939],[116.58132890000002,-8.858817099999953],[116.578857,-8.859473299999934],[116.5760189,-8.858172399999944],[116.57665980000002,-8.860014],[116.56984670000008,-8.862366699999939],[116.56922870000005,-8.865569199999982],[116.571098,-8.866347399999938],[116.56641350000007,-8.868016299999965],[116.56748920000007,-8.865548099999955],[116.56537590000005,-8.864873899999964],[116.56581840000001,-8.863352799999973],[116.56369740000002,-8.86373139999995],[116.56259880000005,-8.8657255],[116.56105,-8.863835299999948],[116.56430780000005,-8.860753099999954],[116.56358300000011,-8.857711799999947],[116.56606250000004,-8.853661599999953],[116.56388820000006,-8.852541],[116.56025660000012,-8.8557282],[116.56142390000002,-8.857641299999955],[116.55847890000007,-8.857592599999975],[116.55811270000004,-8.8590117],[116.55651050000006,-8.856776199999956],[116.55535850000001,-8.857548699999938],[116.55117760000007,-8.855813],[116.5511318,-8.859732699999938],[116.548843,-8.855981799999938],[116.55214650000005,-8.853692099999932],[116.54870570000003,-8.85027219999995],[116.54975850000005,-8.854051599999934],[116.5459972000001,-8.85849289999993],[116.54499020000003,-8.855449699999951],[116.54171720000011,-8.858268799999962],[116.54350240000008,-8.859542899999951],[116.54222830000003,-8.860523299999954],[116.54896510000003,-8.863113399999975],[116.54862170000001,-8.865571],[116.54672970000001,-8.866034499999955],[116.54449420000003,-8.864255],[116.54355580000004,-8.865604399999938],[116.54454770000007,-8.868101099999933],[116.54175530000009,-8.86850839999994],[116.54196130000003,-8.866473199999973],[116.53945120000003,-8.865821899999958],[116.542358,-8.863129699999945],[116.53882560000011,-8.861712499999953],[116.5383068000001,-8.859397899999976],[116.5361630000001,-8.862023399999941],[116.53334770000004,-8.859342599999934],[116.5357967000001,-8.859851899999967],[116.5372463000001,-8.856215499999962],[116.53631550000011,-8.854075399999942],[116.53957330000003,-8.855592799999954],[116.5384365000001,-8.852902399999948],[116.5421520000001,-8.853227599999968],[116.5421444000001,-8.852191],[116.53694120000011,-8.849832599999957],[116.535049,-8.850495299999977],[116.53385120000007,-8.848621399999956],[116.53197440000008,-8.849477799999931],[116.5316845000001,-8.847481799999969],[116.53595690000009,-8.847036399999979],[116.53915370000004,-8.848747299999957],[116.54042020000009,-8.845323599999972],[116.54352530000006,-8.847564699999964],[116.545158,-8.846509],[116.5457378000001,-8.844551099999933],[116.54242670000008,-8.841344899999967],[116.5410915000001,-8.841440199999965],[116.54086270000005,-8.843148199999973],[116.53744470000004,-8.8412266],[116.53991660000008,-8.838971199999946],[116.54138140000009,-8.83276559999996],[116.5368572000001,-8.831296899999927],[116.53472860000011,-8.828327199999933],[116.528915,-8.82968619999997],[116.52440600000011,-8.825504299999977],[116.52236140000002,-8.8255606],[116.52278860000001,-8.829932199999973],[116.52607690000002,-8.829825399999947],[116.53066980000006,-8.832813299999941],[116.5288921,-8.8338461],[116.52822070000002,-8.832690299999967],[116.51980550000007,-8.831536299999925],[116.52727470000002,-8.835264199999926],[116.52741970000011,-8.836628],[116.53092920000006,-8.836463],[116.52830470000004,-8.838647899999955],[116.52915150000001,-8.840349199999935],[116.52335320000009,-8.836889299999939],[116.52146110000001,-8.836900699999944],[116.52273520000006,-8.839762699999937],[116.51963,-8.83798889999997],[116.5172344,-8.83865929999996],[116.51771510000003,-8.836329499999977],[116.51929440000004,-8.835674299999937],[116.51449550000007,-8.831766199999947],[116.51421320000009,-8.833461799999952],[116.51612050000006,-8.835671399999967],[116.51213040000005,-8.835658099999932],[116.51404530000002,-8.837535],[116.51434290000009,-8.841106399999944],[116.51560940000002,-8.839884799999936],[116.51826440000002,-8.8430538],[116.51245840000001,-8.844340399999965],[116.51056630000005,-8.840999599999975],[116.50443990000008,-8.841483099999948],[116.50495870000009,-8.84315209999994],[116.5031811,-8.843533499999978],[116.5029522000001,-8.845536299999935],[116.50422630000003,-8.845624899999962],[116.50434840000003,-8.848437299999944],[116.5069042,-8.849243199999933],[116.5047985000001,-8.8502961],[116.5099484000001,-8.851876299999958],[116.51034510000011,-8.855867399999966],[116.507423,-8.857703199999946],[116.50544700000012,-8.856459599999937],[116.50597340000002,-8.858973499999934],[116.504356,-8.859244399999966],[116.498344,-8.855753],[116.49746670000002,-8.853632],[116.49442250000004,-8.853597699999966],[116.49260670000001,-8.847985299999948],[116.495071,-8.846009299999935],[116.49604760000011,-8.842957499999955],[116.49802360000001,-8.842282299999965],[116.49425470000006,-8.837063799999953],[116.49719960000004,-8.833889],[116.49626120000005,-8.830782899999974],[116.4994961000001,-8.830064799999946],[116.49752010000009,-8.826530499999933],[116.50077780000004,-8.821145099999967],[116.49945030000003,-8.816433899999936],[116.49967920000006,-8.812093799999957],[116.501022,-8.81116869999994],[116.49718440000004,-8.811769499999969],[116.49460560000011,-8.814210899999978],[116.48462640000002,-8.814717299999927],[116.4841305000001,-8.815764499999943],[116.481979,-8.814144099999965],[116.48036920000004,-8.80865769999997],[116.4813,-8.806629199999975],[116.48512990000006,-8.805316],[116.48991360000002,-8.807623899999953],[116.49144710000007,-8.807015399999955],[116.49281270000006,-8.810491599999978],[116.49850420000007,-8.808293399999968],[116.50089230000003,-8.805554399999949],[116.50200610000002,-8.801873199999932],[116.50084650000008,-8.8019104],[116.50489010000001,-8.797224099999937],[116.50499080000009,-8.791258299999981],[116.50581880000004,-8.792524199999946],[116.505895,-8.788041299999975],[116.50964020000004,-8.779984399999933],[116.51404220000006,-8.776581799999974],[116.51787320000005,-8.778485399999965],[116.52008610000007,-8.77741459999993],[116.52420250000011,-8.771132799999975],[116.53586980000011,-8.762611899999968],[116.54540720000011,-8.752867199999969],[116.5526407000001,-8.740422699999954],[116.5534259000001,-8.735877899999934],[116.55184580000002,-8.7315184],[116.55632520000006,-8.720965499999977],[116.55320140000003,-8.7196944],[116.55715140000007,-8.720034599999963],[116.5703198000001,-8.70439529999993],[116.57203950000007,-8.699815],[116.57487340000011,-8.700531099999978],[116.57586630000003,-8.698753199999942],[116.57368140000005,-8.697354899999937],[116.57797420000009,-8.691121899999928],[116.5800435000001,-8.681644099999971],[116.58535,-8.670207],[116.59870260000002,-8.6575763],[116.603136,-8.650212599999975],[116.6126183,-8.639889399999959],[116.61285620000001,-8.6370578],[116.62066090000008,-8.626921299999935],[116.62020880000011,-8.622733499999981],[116.62457240000003,-8.610798899999963],[116.6234108000001,-8.60465359999995],[116.63294240000005,-8.593440699999974],[116.65820270000006,-8.571932799999956],[116.66493190000006,-8.562465699999962],[116.66711390000012,-8.555646899999942],[116.65912590000005,-8.546482099999935],[116.65729480000005,-8.5392933],[116.65772970000012,-8.532378199999926],[116.66583220000007,-8.513588899999945],[116.67733730000009,-8.50494279999998],[116.67849690000003,-8.4970226],[116.67561300000011,-8.488731299999927],[116.676025,-8.483766499999945],[116.674728,-8.4837608],[116.67356070000005,-8.486433],[116.66857870000001,-8.483513799999969],[116.6689831000001,-8.485641399999963],[116.67591060000007,-8.493581699999936],[116.67588770000009,-8.49868669999995],[116.6719356000001,-8.500771499999928],[116.67138630000011,-8.503663],[116.66539730000011,-8.499880699999949],[116.66671710000003,-8.497910399999967],[116.66341360000001,-8.497292499999958],[116.66136890000007,-8.4943856],[116.66325340000003,-8.492481099999964],[116.66152920000002,-8.490592899999967],[116.6615749,-8.487376199999972],[116.66805990000012,-8.481846799999971],[116.6701733000001,-8.477851899999962],[116.67700920000004,-8.473392499999932],[116.6903225000001,-8.4590178],[116.69413720000011,-8.4566088],[116.69628110000008,-8.452410699999973],[116.71153740000011,-8.442988799999966],[116.70946730000003,-8.4286407],[116.71417860000008,-8.42392929999994],[116.7104667000001,-8.415006299999959],[116.72240010000007,-8.396622699999966],[116.72493180000004,-8.382774199999972],[116.72371360000011,-8.379252599999973],[116.72465580000005,-8.367564699999946],[116.71629470000005,-8.354517],[116.71826130000011,-8.34735779999994],[116.71507990000009,-8.346452799999952],[116.702705,-8.336845399999959],[116.69515190000004,-8.334863699999971],[116.69378620000009,-8.334938099999931],[116.6970669000001,-8.335675299999934],[116.69678460000011,-8.336594599999955],[116.69373280000002,-8.335861199999954],[116.6889873,-8.333275799999967],[116.68882710000003,-8.330824899999925],[116.69271050000009,-8.33425049999994],[116.6949459000001,-8.334451699999931],[116.69195520000005,-8.333331099999953],[116.68451650000009,-8.322475499999939],[116.67301140000006,-8.309565599999928],[116.66571770000007,-8.304903099999933],[116.66410030000009,-8.2994299],[116.65981250000004,-8.296128299999964],[116.65936240000008,-8.293973],[116.65156520000005,-8.288759299999981],[116.62122310000007,-8.280735099999958],[116.61541710000006,-8.280718799999931],[116.60845910000012,-8.282753],[116.59993710000003,-8.28132919999996],[116.59370380000007,-8.2784863],[116.58921010000006,-8.274138499999935],[116.57817040000009,-8.268957199999932],[116.5602642,-8.2637615],[116.5511623000001,-8.263002399999948],[116.544479,-8.258874],[116.53217280000001,-8.254185699999937],[116.5238491,-8.252946899999927],[116.5059963000001,-8.2555323],[116.4951711000001,-8.248203199999978],[116.4939644000001,-8.245516],[116.48933740000007,-8.247783199999958],[116.48481680000009,-8.255071699999974],[116.48302460000002,-8.25523],[116.48280340000008,-8.257267],[116.47740170000009,-8.261525099999972],[116.47717280000006,-8.264163],[116.47164920000012,-8.269110699999942],[116.46986390000006,-8.273639699999933],[116.47149820000004,-8.281104599999935],[116.46952030000011,-8.294500599999935],[116.47294640000007,-8.304025199999955],[116.46952060000001,-8.310071899999969],[116.4703598000001,-8.313369799999975],[116.46760560000007,-8.319556199999965],[116.46743010000012,-8.33063119999997],[116.46548460000008,-8.3315764],[116.46305080000002,-8.3360968],[116.457428,-8.338152899999955],[116.45599370000002,-8.343131099999937],[116.452034,-8.34814739999996],[116.4510269000001,-8.355128299999933],[116.44058990000008,-8.363406199999929],[116.44097860000011,-8.366518],[116.43694270000003,-8.372497599999974],[116.43354760000011,-8.374370599999963],[116.43020590000003,-8.381676699999957],[116.41963160000012,-8.390427599999953],[116.41970020000008,-8.3923865],[116.42762720000007,-8.397158699999977],[116.43072470000004,-8.403115299999968],[116.42863430000011,-8.404777599999932],[116.420776,-8.404685],[116.4236065,-8.411051799999939],[116.41935690000003,-8.418974899999967],[116.42394980000006,-8.420369199999925],[116.42678790000002,-8.42318629999994],[116.41269650000004,-8.43022439999993],[116.4086761000001,-8.430230699999981],[116.40627140000004,-8.434521399999937],[116.40266420000012,-8.443026499999974],[116.40357970000002,-8.450774199999955],[116.40660860000003,-8.453926099999933],[116.4063873,-8.461465799999928],[116.4016342000001,-8.471110299999964],[116.39359280000008,-8.478178],[116.391655,-8.483100899999954],[116.38553180000008,-8.489425099999949],[116.38597860000004,-8.494647499999928],[116.38387210000008,-8.507190199999968],[116.38445060000004,-8.516788299999973],[116.37967680000008,-8.528058099999953],[116.38069410000003,-8.5499177],[116.37896670000009,-8.58069759999995],[116.37696040000003,-8.5922575],[116.37803660000009,-8.597793699999954],[116.3763474000001,-8.601209],[116.37818870000001,-8.605106399999954],[116.37656360000005,-8.611168899999939],[116.37873700000011,-8.628284299999962],[116.3780594000001,-8.6344085],[116.37655070000005,-8.635572],[116.37818730000004,-8.636773799999958],[116.37843260000011,-8.63954979999994],[116.3849550000001,-8.646199699999954],[116.38115650000009,-8.663724899999977],[116.38176690000012,-8.668267299999968],[116.385162,-8.674513899999965],[116.39216570000008,-8.680034699999965],[116.39492760000007,-8.684191699999928],[116.39936790000002,-8.6829281],[116.40331720000006,-8.677460899999971],[116.40719230000002,-8.681072899999947],[116.4164654000001,-8.682124199999976],[116.41977860000009,-8.689009099999964],[116.42868,-8.691117299999974],[116.43585930000006,-8.716130299999975],[116.43921620000003,-8.71982769999994],[116.44635010000002,-8.722916599999962],[116.44338230000005,-8.726655],[116.44361880000008,-8.728725399999973],[116.44505120000008,-8.729139699999962],[116.44300840000005,-8.734199499999932],[116.44644930000004,-8.739958799999954],[116.44577790000005,-8.74590109999997],[116.44026190000011,-8.752023699999938],[116.43513960000007,-8.755826699999943],[116.42832180000005,-8.755937599999982],[116.42874150000011,-8.759348899999964],[116.42594910000003,-8.760099399999945],[116.42522430000008,-8.772893],[116.42150880000008,-8.77246189999994],[116.42161560000011,-8.774920399999928],[116.4175034000001,-8.776400599999931],[116.41438290000008,-8.806691199999932],[116.41175080000005,-8.809025799999972],[116.40340420000007,-8.811723699999959],[116.40288480000004,-8.810912799999926],[116.40078740000001,-8.815718699999934],[116.3975296000001,-8.815192199999956],[116.39615630000003,-8.817692799999975],[116.3900986000001,-8.821471199999962],[116.389946,-8.8330755],[116.39379880000001,-8.837399499999947],[116.39604250000002,-8.846624499999962],[116.399917,-8.847349399999928],[116.40161880000005,-8.85659929999997]]]]},"properties":{"shapeName":"Lombok Timur","shapeISO":"","shapeID":"22746128B888974800701","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[116.08770750000008,-8.362609899999939],[116.08728030000009,-8.353393599999947],[116.08532710000009,-8.350219699999968],[116.08007810000004,-8.3516235],[116.07507320000002,-8.356079099999931],[116.07672120000007,-8.362304699999981],[116.0789185000001,-8.364624],[116.08288570000002,-8.363891599999931],[116.0864868000001,-8.365112299999964],[116.08770750000008,-8.362609899999939]]],[[[116.0593262000001,-8.35906979999993],[116.06188960000009,-8.356384299999945],[116.06152340000006,-8.345825199999979],[116.05889890000003,-8.342102099999977],[116.0551147000001,-8.34198],[116.0515137000001,-8.34442139999993],[116.05169680000006,-8.349792499999978],[116.05407710000009,-8.357910199999935],[116.0593262000001,-8.35906979999993]]],[[[116.03570560000003,-8.361694299999954],[116.04071040000008,-8.360107399999947],[116.0444946,-8.352600099999961],[116.04089360000012,-8.3389893],[116.0319214000001,-8.34021],[116.02789310000003,-8.346374499999968],[116.02911380000012,-8.354187],[116.03247070000009,-8.359985399999971],[116.03570560000003,-8.361694299999954]]],[[[116.33895830000006,-8.410516],[116.34585570000002,-8.408787699999948],[116.35937500000011,-8.412681599999928],[116.36714170000005,-8.4125242],[116.37500000000011,-8.4144926],[116.38240050000002,-8.4101257],[116.3850632000001,-8.421424899999977],[116.39218140000003,-8.422399499999926],[116.39517970000009,-8.4255123],[116.40166470000008,-8.428616499999976],[116.40627140000004,-8.434521399999937],[116.4086761000001,-8.430230699999981],[116.41269650000004,-8.43022439999993],[116.42678790000002,-8.42318629999994],[116.42394980000006,-8.420369199999925],[116.41935690000003,-8.418974899999967],[116.4236065,-8.411051799999939],[116.420776,-8.404685],[116.42863430000011,-8.404777599999932],[116.43072470000004,-8.403115299999968],[116.42762720000007,-8.397158699999977],[116.41970020000008,-8.3923865],[116.41963160000012,-8.390427599999953],[116.43020590000003,-8.381676699999957],[116.43354760000011,-8.374370599999963],[116.43694270000003,-8.372497599999974],[116.44097860000011,-8.366518],[116.44058990000008,-8.363406199999929],[116.4510269000001,-8.355128299999933],[116.452034,-8.34814739999996],[116.45599370000002,-8.343131099999937],[116.457428,-8.338152899999955],[116.46305080000002,-8.3360968],[116.46548460000008,-8.3315764],[116.46743010000012,-8.33063119999997],[116.46760560000007,-8.319556199999965],[116.4703598000001,-8.313369799999975],[116.46952060000001,-8.310071899999969],[116.47294640000007,-8.304025199999955],[116.46952030000011,-8.294500599999935],[116.47149820000004,-8.281104599999935],[116.46986390000006,-8.273639699999933],[116.47164920000012,-8.269110699999942],[116.47717280000006,-8.264163],[116.47740170000009,-8.261525099999972],[116.48280340000008,-8.257267],[116.48302460000002,-8.25523],[116.48481680000009,-8.255071699999974],[116.48933740000007,-8.247783199999958],[116.4939644000001,-8.245516],[116.48983,-8.241711599999974],[116.48419950000005,-8.2400227],[116.47989650000011,-8.235478399999977],[116.47501370000009,-8.2356338],[116.46018980000008,-8.227065099999948],[116.44151310000007,-8.228125599999942],[116.43016050000006,-8.221002599999963],[116.4236145000001,-8.221941],[116.40682980000008,-8.216531699999962],[116.38911440000004,-8.217246099999954],[116.37734980000005,-8.214271599999961],[116.37042240000005,-8.210372899999982],[116.35781860000009,-8.213997799999959],[116.3509064000001,-8.211080599999946],[116.33770750000008,-8.214749299999937],[116.33148960000005,-8.218501099999969],[116.3268356000001,-8.219011299999977],[116.31903080000006,-8.22240729999993],[116.3073654000001,-8.229756399999928],[116.29924010000002,-8.231604599999969],[116.29299160000005,-8.239914899999974],[116.28591160000008,-8.238231699999972],[116.26963810000007,-8.244833],[116.253479,-8.25461009999998],[116.24301150000008,-8.264211699999976],[116.23687940000002,-8.26641049999995],[116.22293610000008,-8.27894759999998],[116.21968360000005,-8.28610169999996],[116.2138351000001,-8.289071699999965],[116.204032,-8.302265099999943],[116.20018010000001,-8.304695099999947],[116.19432070000005,-8.305083299999978],[116.1896286000001,-8.311766599999942],[116.19064620000006,-8.311370799999963],[116.18686330000003,-8.320367099999942],[116.1888394,-8.323760299999947],[116.18821020000007,-8.325763],[116.17759160000003,-8.341173],[116.16635430000008,-8.3452349],[116.1531533000001,-8.343388799999957],[116.14979280000011,-8.346361699999932],[116.14472980000005,-8.355051799999956],[116.13675970000008,-8.358406099999968],[116.13552320000008,-8.362827399999958],[116.12965230000009,-8.365494199999944],[116.12560320000011,-8.362510699999973],[116.12380960000007,-8.359197499999937],[116.12128170000005,-8.363853],[116.12171520000004,-8.368924499999935],[116.11978090000002,-8.370338599999968],[116.11423800000011,-8.3676133],[116.10897690000002,-8.361907899999949],[116.10079310000003,-8.361271099999954],[116.09952720000001,-8.362760499999979],[116.10062560000006,-8.367470499999968],[116.10382770000001,-8.373372],[116.10656430000006,-8.3834622],[116.10514940000007,-8.389512599999932],[116.10159370000008,-8.393682799999965],[116.08126990000005,-8.401885499999935],[116.0780817000001,-8.406618799999933],[116.07301330000007,-8.406732599999941],[116.07168060000004,-8.403970099999981],[116.068512,-8.401905099999965],[116.06648140000004,-8.404313399999978],[116.06334220000008,-8.403896499999973],[116.06191970000009,-8.4060547],[116.05618290000007,-8.404221499999949],[116.0535278000001,-8.409082399999932],[116.05223850000004,-8.4177713],[116.0493775000001,-8.419521299999928],[116.04653170000006,-8.418590599999959],[116.0438385000001,-8.421485],[116.04170990000011,-8.421509699999945],[116.04177090000007,-8.423238699999956],[116.04550930000005,-8.424051299999974],[116.04737640000008,-8.426214199999947],[116.0461011000001,-8.432934099999954],[116.04242240000008,-8.435582799999963],[116.0360260000001,-8.435381899999982],[116.03962650000005,-8.4381824],[116.03945480000004,-8.440021799999954],[116.03692880000006,-8.442817699999978],[116.03314210000008,-8.442401899999936],[116.03201290000004,-8.446869899999967],[116.03658540000004,-8.4565271],[116.03594970000006,-8.46476359999997],[116.03738730000009,-8.470204199999955],[116.04484050000008,-8.470466],[116.0682584000001,-8.461792299999956],[116.07183830000008,-8.463139],[116.07320220000008,-8.471089199999938],[116.07481330000007,-8.472529599999973],[116.08077810000009,-8.466389],[116.09082550000005,-8.464588099999958],[116.10143860000005,-8.467854],[116.12949220000007,-8.470637199999942],[116.13355500000011,-8.469274],[116.13487690000011,-8.460769199999959],[116.137362,-8.457042],[116.142126,-8.454358],[116.146218,-8.458254],[116.148852,-8.45775],[116.154883,-8.459872],[116.160961,-8.456209],[116.163491,-8.462839],[116.16746400000011,-8.465619],[116.172053,-8.466126],[116.176679,-8.463449],[116.183791,-8.463025],[116.191953,-8.467741],[116.192344,-8.473196],[116.198745,-8.477933],[116.2052605,-8.4802397],[116.213908,-8.480429],[116.218055,-8.471964],[116.222408,-8.45669],[116.229939,-8.455736],[116.23588450000011,-8.4525341],[116.244792,-8.453725],[116.2480111000001,-8.4518154],[116.25599260000001,-8.452672699999937],[116.26707190000002,-8.450618],[116.27724780000005,-8.444968099999926],[116.27842340000007,-8.440029],[116.286328,-8.43780369999996],[116.289105,-8.434997199999941],[116.30073870000001,-8.432914399999959],[116.304433,-8.429842699999938],[116.31101650000005,-8.429342099999928],[116.32018230000006,-8.42352459999995],[116.32776950000004,-8.413721099999975],[116.33291730000008,-8.410684299999957],[116.33895830000006,-8.410516]]]]},"properties":{"shapeName":"Lombok Utara","shapeISO":"","shapeID":"22746128B12331501894403","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[113.36304460000008,-8.027681],[113.3671035000001,-8.0212542],[113.36389150000002,-8.014193199999966],[113.36457810000002,-8.011451399999942],[113.36251060000006,-8.007636699999978],[113.36065660000008,-7.992784599999936],[113.35709370000006,-7.984245399999963],[113.35099020000007,-7.980505099999959],[113.34668720000002,-7.975804],[113.34635910000009,-7.960655799999927],[113.34495530000004,-7.956066299999975],[113.33197770000004,-7.940526199999965],[113.32861320000006,-7.935597099999939],[113.32818590000011,-7.931963099999962],[113.32517990000008,-7.9287492],[113.32157120000011,-7.927685399999973],[113.30828850000012,-7.926497599999948],[113.27457420000007,-7.9295289],[113.2707061000001,-7.920223899999939],[113.26810440000008,-7.917800599999964],[113.26744830000007,-7.901259099999947],[113.26254260000007,-7.896043],[113.26168050000001,-7.899133399999926],[113.25790390000009,-7.900361199999963],[113.256584,-7.906913399999951],[113.250595,-7.906415199999969],[113.248268,-7.908027299999958],[113.23251330000005,-7.9023659],[113.20751940000002,-7.898044299999981],[113.208763,-7.907364099999938],[113.21096790000001,-7.907749399999943],[113.21195970000008,-7.911035699999957],[113.20610040000008,-7.919779],[113.2060775000001,-7.926932],[113.20377340000005,-7.927240099999949],[113.20223220000003,-7.929446399999961],[113.20011130000012,-7.929190399999925],[113.1911239000001,-7.944756199999972],[113.18906390000006,-7.945926399999962],[113.18752280000001,-7.945098099999939],[113.18192280000005,-7.948423599999956],[113.17729940000004,-7.956286599999942],[113.17175280000004,-7.961588099999972],[113.16811360000008,-7.962066899999968],[113.16620630000011,-7.965318899999943],[113.15432730000009,-7.971199199999944],[113.1494292000001,-7.979876199999978],[113.13603200000011,-7.976557],[113.12422170000002,-7.984820599999978],[113.12123860000008,-7.9901716],[113.1147231000001,-7.991734699999938],[113.11309810000012,-7.9883353],[113.10408010000003,-7.980883299999959],[113.069725,-7.981830799999955],[113.06312550000007,-7.9874337],[113.06433860000004,-7.9982951],[113.05823510000005,-8.010411],[113.05438220000008,-8.009742499999959],[113.05097190000004,-8.0060594],[113.04842370000006,-7.999176699999964],[113.04450980000001,-7.994308199999978],[113.04366290000007,-7.990149199999962],[113.036148,-7.980668799999933],[113.03182210000011,-7.9792535],[113.02234640000006,-7.969304799999975],[113.01462540000011,-7.969028699999967],[113.0091552,-7.963677699999948],[113.00198360000002,-7.963653299999976],[112.99404140000001,-7.960595799999965],[112.9885101000001,-7.9681518],[112.9750365000001,-7.980403699999954],[112.9702529000001,-7.980552],[112.95929710000007,-7.985493899999938],[112.953041,-7.986645],[112.94760890000009,-7.986375599999974],[112.9421996000001,-7.983356199999946],[112.93791950000002,-7.990414899999962],[112.93628680000006,-8.0002849],[112.93395220000002,-8.0009382],[112.92786400000011,-7.996821699999941],[112.92587270000001,-8.000288799999964],[112.92620080000006,-8.003046799999936],[112.93441,-8.013053699999944],[112.93473040000003,-8.01875659999996],[112.92796320000002,-8.024024699999927],[112.92269890000011,-8.031758099999934],[112.9175719000001,-8.032985499999938],[112.90898120000008,-8.041626699999938],[112.90892780000001,-8.050852599999928],[112.90177910000011,-8.0573967],[112.89997860000005,-8.061138],[112.90082540000003,-8.071510099999955],[112.90369410000005,-8.075077799999974],[112.90582270000004,-8.081559899999945],[112.91215510000006,-8.081985199999963],[112.91635890000009,-8.0859211],[112.92315670000005,-8.086958699999968],[112.92130270000007,-8.097683699999948],[112.9220199,-8.107416899999976],[112.9254989000001,-8.11075],[112.9193954000001,-8.122618399999965],[112.9195251000001,-8.126962399999968],[112.91710650000005,-8.134217],[112.91044610000006,-8.143423799999937],[112.90968320000002,-8.148094],[112.9075011000001,-8.148487799999941],[112.90646360000005,-8.151865699999973],[112.90354910000008,-8.1542947],[112.9031371000001,-8.157747],[112.90443410000012,-8.170690299999933],[112.90341940000008,-8.174438299999963],[112.9068069000001,-8.185595299999932],[112.90584550000005,-8.186607099999947],[112.90652460000001,-8.191571],[112.9089507000001,-8.194510199999968],[112.90942690000008,-8.199857599999973],[112.9114512000001,-8.202733499999965],[112.91137060000005,-8.21088949999995],[112.91313850000006,-8.215197399999965],[112.91241670000011,-8.219421699999941],[112.91542820000006,-8.223461399999962],[112.9142776000001,-8.228117],[112.92100640000001,-8.241382399999964],[112.91964710000002,-8.248344199999963],[112.9207,-8.249999799999955],[112.91694630000006,-8.25961469999993],[112.91493220000007,-8.262067599999966],[112.91149890000008,-8.262984],[112.9093554000001,-8.266803899999957],[112.90784810000002,-8.275165],[112.90489670000011,-8.273886199999936],[112.90262540000003,-8.268675799999926],[112.8999751,-8.266256299999952],[112.8994090000001,-8.267231399999957],[112.9038524,-8.280849399999965],[112.90716930000008,-8.2833134],[112.90591710000001,-8.288053099999956],[112.90936670000008,-8.287925499999972],[112.91295190000005,-8.293161599999962],[112.91617330000008,-8.29130749999996],[112.91691580000008,-8.295269699999949],[112.91487880000011,-8.301584],[112.91854090000004,-8.307156299999974],[112.92858490000003,-8.308452099999954],[112.93339230000004,-8.307378099999937],[112.94132080000009,-8.310885399999961],[112.94264980000003,-8.316861899999935],[112.93475330000001,-8.326111599999933],[112.93469990000006,-8.331777299999942],[112.93815610000001,-8.337135099999955],[112.95482630000004,-8.347263099999964],[112.9566268000001,-8.3511178],[112.959591,-8.35315909999997],[112.97031,-8.33323],[112.97978,-8.32501],[113.01107,-8.31092],[113.03236,-8.30479],[113.04729,-8.29869],[113.06549,-8.29745],[113.06631,-8.29448],[113.07069,-8.29181],[113.0700700000001,-8.2897],[113.07764,-8.28588],[113.08791,-8.28597],[113.10799,-8.29051],[113.1224,-8.29126],[113.14215,-8.2878],[113.14724,-8.2847],[113.16145,-8.28203],[113.18387,-8.2803],[113.21969,-8.28153],[113.24229,-8.28464],[113.26141,-8.28905],[113.28237,-8.29617],[113.30341150000004,-8.307480599999963],[113.30862420000005,-8.300553],[113.312477,-8.291300399999955],[113.319702,-8.2655684],[113.31944260000012,-8.25835],[113.31533040000011,-8.248509099999978],[113.31558220000011,-8.238295199999925],[113.31171410000002,-8.233677499999942],[113.31301110000004,-8.228893899999946],[113.31749710000008,-8.227440499999943],[113.31760390000011,-8.226130099999978],[113.3200988000001,-8.226678499999935],[113.3226012,-8.223440799999935],[113.3268432000001,-8.221261599999934],[113.32769760000008,-8.217373499999951],[113.33134450000011,-8.2155272],[113.33052810000004,-8.212736699999937],[113.33338920000006,-8.2082831],[113.33861530000001,-8.206195499999978],[113.3443373,-8.207821499999966],[113.3485564,-8.207224499999938],[113.35314170000004,-8.203741699999966],[113.35282880000011,-8.200521099999946],[113.3606261000001,-8.189457599999969],[113.36331160000009,-8.18944229999994],[113.36785110000005,-8.185211799999934],[113.36859880000009,-8.179781599999956],[113.36627180000005,-8.174300799999969],[113.365982,-8.168323199999975],[113.36840810000001,-8.168075199999976],[113.36839280000004,-8.166406299999949],[113.37249740000004,-8.166808699999933],[113.37268050000011,-8.164807899999971],[113.37485490000006,-8.165076899999974],[113.37449630000003,-8.163496599999974],[113.376213,-8.161499599999956],[113.37761680000006,-8.161750499999926],[113.37947070000007,-8.15793],[113.3790206000001,-8.148526799999956],[113.37581620000003,-8.149074199999973],[113.37239060000002,-8.146483099999955],[113.37287890000005,-8.141519199999948],[113.37652580000008,-8.1357609],[113.37587730000007,-8.130837099999951],[113.37015520000011,-8.1277901],[113.36759170000005,-8.120246599999973],[113.362358,-8.118204699999978],[113.36362450000001,-8.115106199999957],[113.36506640000005,-8.11388549999998],[113.36623370000007,-8.1145636],[113.3684005,-8.1106726],[113.3619536000001,-8.1006228],[113.36413560000005,-8.100842099999966],[113.36456290000001,-8.096369399999958],[113.36295310000003,-8.091659199999981],[113.36524190000011,-8.0906092],[113.36665330000005,-8.085650099999953],[113.36489090000009,-8.083892499999934],[113.3618239000001,-8.08383619999995],[113.36212150000006,-8.08077869999994],[113.36035140000001,-8.081200199999955],[113.35707080000009,-8.078250499999967],[113.35822280000002,-8.07638609999998],[113.357376,-8.072684899999956],[113.35403430000008,-8.07069839999997],[113.35364520000007,-8.066716799999938],[113.35007470000005,-8.063472399999966],[113.34995260000005,-8.060927],[113.35128010000005,-8.06064189999995],[113.34866320000003,-8.054896],[113.35185230000002,-8.0509373],[113.35247790000005,-8.044655499999976],[113.35468280000009,-8.043073299999946],[113.35598740000012,-8.037802399999975],[113.35498030000008,-8.03529229999998],[113.35660540000003,-8.034946099999956],[113.36102280000011,-8.027791599999944],[113.36304460000008,-8.027681]]]},"properties":{"shapeName":"Lumajang","shapeISO":"","shapeID":"22746128B87806614175734","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[120.09614310000006,-3.483085799999969],[120.0985634000001,-3.485755499999925],[120.10146370000007,-3.485291299999972],[120.10257060000004,-3.487706499999945],[120.11701650000009,-3.486587],[120.1251023000001,-3.490971],[120.13575490000005,-3.5007531],[120.14538270000003,-3.500436099999945],[120.14949520000005,-3.502271899999926],[120.15751460000001,-3.501],[120.16521010000008,-3.497801],[120.17063070000006,-3.497957799999938],[120.17147530000011,-3.500712799999974],[120.17405680000002,-3.500497799999948],[120.17899680000005,-3.506790599999931],[120.17954980000002,-3.519995299999948],[120.18214190000003,-3.524051699999973],[120.18207250000012,-3.534410199999968],[120.18389890000003,-3.534795799999927],[120.18794250000008,-3.539603899999975],[120.18902590000005,-3.544942099999957],[120.191658,-3.5472507],[120.1929474000001,-3.5607672],[120.19196320000003,-3.566352099999961],[120.19641880000006,-3.581456199999934],[120.1983871000001,-3.584379899999931],[120.20579530000009,-3.5861654],[120.20756070000004,-3.594367199999965],[120.22094630000004,-3.5913929],[120.23065190000011,-3.592427199999975],[120.24277110000003,-3.600910699999929],[120.25091880000002,-3.609714299999951],[120.2682215000001,-3.6203014],[120.27018670000007,-3.627671199999952],[120.27962080000009,-3.632669599999929],[120.282839,-3.632876299999964],[120.28984830000002,-3.639771],[120.30473330000007,-3.648627],[120.32176740000011,-3.649685199999965],[120.3226548,-3.651835199999937],[120.32443790000002,-3.651683099999957],[120.32809670000006,-3.649890399999947],[120.3354958000001,-3.653600199999971],[120.3437431000001,-3.649997],[120.34987170000011,-3.650413699999945],[120.35064430000011,-3.652224499999932],[120.3577563,-3.6523078],[120.36126720000004,-3.654932699999961],[120.38762180000003,-3.658790199999942],[120.39223090000007,-3.662509899999975],[120.39790670000002,-3.660814099999925],[120.40200930000003,-3.661500899999965],[120.408046,-3.667374],[120.410023,-3.665160299999968],[120.40940340000009,-3.663795899999968],[120.412,-3.6636218],[120.41437310000003,-3.662364099999934],[120.41522740000005,-3.659827899999925],[120.41242150000005,-3.658209199999931],[120.41326690000005,-3.656815199999926],[120.41154580000011,-3.653610699999945],[120.41161040000009,-3.64986],[120.41442310000002,-3.645696699999974],[120.4123389,-3.6450543],[120.41166610000005,-3.641644699999972],[120.41510090000008,-3.641842],[120.41172170000004,-3.640663299999972],[120.41341640000007,-3.636727599999972],[120.41777190000005,-3.6321798],[120.41581420000011,-3.629341899999929],[120.418236,-3.626495099999943],[120.4156408,-3.619802199999981],[120.41792690000011,-3.616991599999949],[120.41956260000006,-3.607146199999931],[120.41745360000004,-3.573212499999954],[120.41596970000012,-3.568316599999946],[120.41289260000008,-3.564356099999941],[120.41099310000004,-3.563206299999933],[120.40972620000002,-3.564074],[120.40875790000007,-3.561879699999963],[120.40552610000009,-3.560974299999941],[120.4051492000001,-3.555613499999936],[120.40072590000011,-3.551147699999945],[120.39984410000011,-3.541787099999965],[120.40123990000006,-3.5392218],[120.39959390000001,-3.5369722],[120.40190960000007,-3.531139099999962],[120.39869350000004,-3.528654],[120.39217350000001,-3.527087599999959],[120.38714370000002,-3.522165599999937],[120.3872444000001,-3.516988499999968],[120.38467450000007,-3.511178699999959],[120.381247,-3.508695399999965],[120.37940070000002,-3.500317399999972],[120.37964810000005,-3.498302199999955],[120.38503180000009,-3.495763099999976],[120.38701070000002,-3.491339599999947],[120.39140510000004,-3.488516799999957],[120.38938980000012,-3.482609199999956],[120.39134690000003,-3.476308699999947],[120.38891690000003,-3.469935499999963],[120.39005180000004,-3.465759499999933],[120.3886563000001,-3.459960499999966],[120.39062070000011,-3.455202399999962],[120.39211940000007,-3.455347899999936],[120.38950750000004,-3.445126],[120.39212670000006,-3.441903],[120.39629550000006,-3.441124599999966],[120.39969570000005,-3.436478],[120.40178110000011,-3.436504699999944],[120.40450210000006,-3.431382799999938],[120.40179880000005,-3.417073799999969],[120.40412370000001,-3.412197699999979],[120.40359260000002,-3.399320299999943],[120.3993319000001,-3.395580099999961],[120.40107400000011,-3.394983499999967],[120.4022394000001,-3.388742],[120.39978760000008,-3.386588399999937],[120.3982744000001,-3.387075899999957],[120.39788150000004,-3.385642599999926],[120.4040146000001,-3.384784199999956],[120.40371630000004,-3.383663699999943],[120.39717580000001,-3.3854317],[120.40025430000003,-3.383239199999934],[120.39882780000005,-3.381393899999978],[120.40026390000003,-3.372872599999937],[120.39890160000004,-3.372266799999977],[120.3989884,-3.366854],[120.397521,-3.365793199999928],[120.40200750000008,-3.355879799999968],[120.39933440000004,-3.349518199999977],[120.4012977000001,-3.348944599999925],[120.404491,-3.339646699999946],[120.40324640000006,-3.333527299999957],[120.39812330000007,-3.323578899999973],[120.39735370000005,-3.316920299999936],[120.3980898000001,-3.3118009],[120.40662220000002,-3.305744499999946],[120.40568530000007,-3.302432],[120.40673890000005,-3.3008037],[120.3988230000001,-3.289292499999931],[120.40541580000001,-3.278176899999949],[120.40825310000002,-3.275805399999967],[120.41343020000011,-3.274969],[120.4192637000001,-3.270204899999953],[120.42085170000007,-3.264604299999974],[120.41822610000008,-3.262984499999959],[120.4160452000001,-3.257182799999953],[120.41806940000004,-3.248993],[120.41634050000005,-3.2485608],[120.41178130000003,-3.254374799999937],[120.41120510000007,-3.258669099999963],[120.40570240000011,-3.260844099999929],[120.39703020000002,-3.257971899999973],[120.39036190000002,-3.251347],[120.38843960000008,-3.251124199999936],[120.38858940000011,-3.244571],[120.38584450000008,-3.240790799999957],[120.38790250000011,-3.229049599999939],[120.38095990000011,-3.223488799999927],[120.38115920000007,-3.217002],[120.38342100000011,-3.211882799999955],[120.381805,-3.202057],[120.37926450000009,-3.202449099999967],[120.37217540000006,-3.199231399999974],[120.36788120000006,-3.200012199999946],[120.365576,-3.196814699999948],[120.36176510000007,-3.196164],[120.35621990000004,-3.198182399999951],[120.35496730000011,-3.196295299999974],[120.33871620000002,-3.187288499999966],[120.32813380000005,-3.184630199999958],[120.32618750000006,-3.185592299999939],[120.32113350000009,-3.181259499999953],[120.31340510000007,-3.180261199999961],[120.310153,-3.1778752],[120.3040496000001,-3.177862],[120.29870330000006,-3.175383899999929],[120.29459090000012,-3.170858599999974],[120.29187790000003,-3.170671899999945],[120.2900055,-3.1680442],[120.28114960000005,-3.165584],[120.27756190000002,-3.167149199999926],[120.27515280000011,-3.165307299999938],[120.27161220000005,-3.168171599999937],[120.26555320000011,-3.166478899999959],[120.255601,-3.160033299999952],[120.25329590000001,-3.154787099999965],[120.25174040000002,-3.1423879],[120.25680880000004,-3.135311399999978],[120.26028040000006,-3.126754699999935],[120.25925440000003,-3.1106951],[120.261053,-3.105558499999972],[120.26247930000011,-3.082465899999931],[120.25972980000006,-3.070981299999971],[120.2581636000001,-3.069604799999979],[120.25887090000003,-3.065633199999979],[120.25425610000002,-3.059003399999938],[120.25305440000011,-3.051530799999966],[120.24982860000011,-3.050399899999945],[120.25009760000012,-3.047505299999955],[120.24755010000001,-3.046481],[120.24776960000008,-3.049829199999976],[120.24540040000011,-3.048673],[120.24432460000003,-3.050295399999925],[120.2408445000001,-3.048919599999977],[120.23960920000002,-3.050117599999965],[120.23570360000008,-3.047923399999945],[120.23369420000006,-3.048596399999951],[120.2294726,-3.043252299999949],[120.215991,-3.0567147],[120.20759190000001,-3.059616199999937],[120.19848410000009,-3.0566947],[120.1944165000001,-3.05773],[120.1892587000001,-3.054495699999961],[120.18471870000008,-3.055497699999933],[120.1778604000001,-3.053663299999926],[120.16563170000006,-3.057277099999965],[120.16373050000004,-3.068827299999953],[120.1602114000001,-3.071822699999927],[120.1544642,-3.070662199999958],[120.1534352000001,-3.073302699999942],[120.15032040000006,-3.072807799999964],[120.14851410000006,-3.0809641],[120.13877590000004,-3.086845799999935],[120.13590990000012,-3.084978399999954],[120.13426640000012,-3.080255099999931],[120.12672320000001,-3.075616499999967],[120.12353440000004,-3.069069599999978],[120.11766160000002,-3.0654095],[120.11246370000003,-3.056209599999931],[120.10004490000006,-3.047436],[120.09313910000003,-3.035670899999957],[120.08707210000011,-3.034322599999939],[120.0846120000001,-3.030877199999964],[120.082895,-3.0310729],[120.07898760000012,-3.031836899999973],[120.07441560000007,-3.029379699999936],[120.07279820000008,-3.029812599999957],[120.07119010000008,-3.032451899999955],[120.06628210000008,-3.034803599999975],[120.06878260000008,-3.046967],[120.06641,-3.050488],[120.04891380000004,-3.054414699999938],[120.0433882000001,-3.066777199999933],[120.04145990000006,-3.06745],[120.038335,-3.0653035],[120.03503880000005,-3.066048799999976],[120.02879140000005,-3.068647699999929],[120.02848630000005,-3.070924399999967],[120.02669790000004,-3.071314799999925],[120.02118410000003,-3.081162799999959],[120.01995710000006,-3.0914695],[120.02142950000007,-3.097113599999943],[120.016767,-3.112082699999974],[120.016767,-3.119444599999952],[120.00646030000007,-3.127542699999935],[120.00493640000002,-3.139411899999971],[120.00377240000012,-3.139972399999976],[120.00545380000005,-3.141653799999972],[120.0049795000001,-3.144240499999967],[120.0027808000001,-3.146051199999931],[119.99911310000005,-3.156386],[120.00709160000008,-3.169481299999973],[120.00764930000003,-3.1726096],[120.00567180000007,-3.176531599999976],[119.99622000000011,-3.173172399999942],[119.99372490000007,-3.175256499999932],[119.99122910000006,-3.180627899999934],[119.98558830000002,-3.184010099999966],[119.98514980000004,-3.187236299999938],[119.98408670000003,-3.189431199999945],[119.98619890000009,-3.196156499999972],[119.98945,-3.198671299999944],[119.99166470000011,-3.204607499999952],[119.99168320000001,-3.210970799999927],[119.987518,-3.217977399999938],[119.98024730000009,-3.224451599999952],[119.98053360000006,-3.245029299999942],[119.982162,-3.250444],[119.98986230000003,-3.255539699999929],[119.99496470000008,-3.255602799999963],[119.9953997,-3.261176],[119.99734490000003,-3.2642729],[120.00022560000002,-3.265263499999946],[120.00128,-3.267942299999959],[120.01300170000002,-3.272120799999925],[120.02481410000007,-3.281649399999935],[120.02519710000001,-3.290910399999973],[120.02820440000005,-3.295469599999933],[120.03121140000007,-3.309894499999928],[120.03020070000002,-3.322082399999942],[120.03405280000004,-3.329587699999934],[120.03554730000008,-3.336842499999932],[120.03731290000007,-3.338653699999952],[120.03631990000008,-3.340569],[120.04387290000011,-3.353209599999957],[120.04378520000012,-3.358679],[120.0399546000001,-3.371835799999928],[120.0339437,-3.373661399999946],[120.02813830000002,-3.377487699999961],[120.02771730000006,-3.379419899999959],[120.02125580000006,-3.378519299999937],[120.01806210000007,-3.386907299999962],[120.0260326,-3.390735],[120.02881060000004,-3.394530299999929],[120.03179870000008,-3.403445499999975],[120.04311170000005,-3.405336],[120.05091950000008,-3.403653099999929],[120.0530453,-3.404505899999947],[120.05974910000009,-3.4143964],[120.06603590000009,-3.438003899999956],[120.072448,-3.447275499999932],[120.07556020000004,-3.447988899999928],[120.07814110000004,-3.450647499999945],[120.09149800000012,-3.470796399999927],[120.09831570000006,-3.475348799999949],[120.0989512000001,-3.477660399999934],[120.09614310000006,-3.483085799999969]]],[[[120.22982710000008,-2.952630399999975],[120.23230030000002,-2.953693299999941],[120.238355,-2.947516699999937],[120.24676480000005,-2.945296399999961],[120.249502,-2.946591699999942],[120.25155410000002,-2.943675699999972],[120.25550240000007,-2.945913399999938],[120.26304860000005,-2.939839599999971],[120.2657104000001,-2.939349799999945],[120.26602190000006,-2.936564099999941],[120.26449940000009,-2.935208],[120.26596060000008,-2.933779499999957],[120.2685676000001,-2.932754399999965],[120.27128770000002,-2.933978099999933],[120.27936850000003,-2.928652599999964],[120.28323450000005,-2.920983199999966],[120.2858983000001,-2.921189599999934],[120.2879067,-2.915828399999953],[120.28746500000011,-2.910453899999936],[120.28431510000007,-2.907913199999939],[120.2847614000001,-2.905326899999977],[120.28172640000003,-2.904099899999949],[120.2831857000001,-2.901717699999949],[120.2808543000001,-2.901685499999928],[120.27956570000003,-2.899116299999946],[120.27609240000004,-2.899085899999932],[120.27413810000007,-2.896768899999927],[120.27024860000006,-2.896775],[120.26721150000003,-2.894208599999956],[120.26701020000007,-2.891415699999925],[120.2725077,-2.888567399999943],[120.27131080000004,-2.886637099999973],[120.27269480000007,-2.886474299999975],[120.27411730000006,-2.883410499999968],[120.27295620000007,-2.878616699999952],[120.2746194,-2.877358299999969],[120.27326210000001,-2.876463499999943],[120.27376790000005,-2.872827099999938],[120.27522950000002,-2.871892],[120.2743938000001,-2.869896099999949],[120.27684040000008,-2.867572199999927],[120.270382,-2.859940299999948],[120.27128130000006,-2.856889299999978],[120.27004520000003,-2.853651899999932],[120.26768040000002,-2.8511066],[120.26625400000012,-2.851670899999931],[120.2644381,-2.848473299999966],[120.26017520000005,-2.847789199999966],[120.26106470000002,-2.841573299999936],[120.255636,-2.8382688],[120.255341,-2.833289799999932],[120.256492,-2.830135199999972],[120.25886850000006,-2.829302299999938],[120.25819790000003,-2.826426799999979],[120.2604275000001,-2.823796399999935],[120.25085610000008,-2.823470399999962],[120.24968320000005,-2.826521799999966],[120.24844580000001,-2.826236699999924],[120.24759520000009,-2.822112],[120.24477510000008,-2.821326899999974],[120.24487250000004,-2.814868699999977],[120.23767580000003,-2.814269499999966],[120.23125970000001,-2.810715199999947],[120.23141070000008,-2.808251299999938],[120.2283059,-2.805763699999943],[120.22854880000011,-2.803220599999975],[120.2264666000001,-2.802685499999939],[120.2270079000001,-2.798738],[120.22216680000008,-2.797554299999945],[120.21631280000008,-2.788851299999976],[120.21368310000003,-2.788006],[120.21210370000006,-2.789718499999935],[120.209853,-2.787808299999938],[120.20571890000008,-2.781639699999971],[120.20317110000008,-2.781276099999957],[120.20391730000006,-2.7790624],[120.19573690000004,-2.772568199999967],[120.19647910000003,-2.771252],[120.1935539000001,-2.768038599999954],[120.1922886000001,-2.768529199999932],[120.19197240000005,-2.767086599999971],[120.1894837000001,-2.766196599999944],[120.18678470000009,-2.767218399999933],[120.1824491000001,-2.763921899999957],[120.1789652000001,-2.7556833],[120.17379160000007,-2.749830599999939],[120.1734090000001,-2.742681799999957],[120.17111790000001,-2.735993699999938],[120.1683703000001,-2.735515899999939],[120.16666680000003,-2.7332516],[120.15703640000004,-2.731228399999964],[120.15393230000006,-2.727302299999963],[120.15956860000006,-2.726342899999963],[120.14507450000008,-2.719206099999951],[120.14181520000011,-2.713442899999961],[120.13900480000007,-2.712622799999963],[120.13761590000001,-2.710453499999971],[120.13917010000011,-2.708487299999945],[120.13561410000011,-2.7050995],[120.130867,-2.703118399999937],[120.132737,-2.698496599999942],[120.13600780000002,-2.697944099999972],[120.13999310000008,-2.687923799999965],[120.137994,-2.681115099999943],[120.12975290000008,-2.673677399999974],[120.12412,-2.674359799999934],[120.1112571000001,-2.671790499999929],[120.10192970000003,-2.665903299999968],[120.09396270000002,-2.674814899999944],[120.09010050000006,-2.685162299999945],[120.08224310000003,-2.695359199999928],[120.07191490000002,-2.697367299999939],[120.06882170000006,-2.695875399999977],[120.0648139000001,-2.690689799999973],[120.06033930000001,-2.6905405],[120.05736510000008,-2.694029599999965],[120.05012860000011,-2.697101099999941],[120.0458771000001,-2.701022],[120.03426420000005,-2.700676299999941],[120.0252554000001,-2.6980206],[120.0156664000001,-2.697669599999927],[119.997669,-2.700607],[119.99500710000007,-2.701202799999976],[119.98596960000009,-2.708671099999947],[119.957119,-2.717688299999963],[119.94811520000007,-2.717281899999932],[119.92693940000004,-2.728315699999939],[119.91573930000004,-2.7230395],[119.90780230000007,-2.723380299999974],[119.90178960000003,-2.726394899999946],[119.89903660000004,-2.7336338],[119.8773619000001,-2.737114899999938],[119.87211490000004,-2.740699899999925],[119.87225450000005,-2.750050899999962],[119.87431570000001,-2.754402399999947],[119.88164460000007,-2.763334399999962],[119.88714120000009,-2.7663117],[119.89800360000004,-2.77572],[119.902363,-2.774806399999932],[119.90917750000006,-2.778523399999926],[119.92013140000006,-2.777734899999928],[119.92614980000008,-2.7816565],[119.9351223000001,-2.7791372],[119.941306,-2.780740399999956],[119.94817680000006,-2.792878799999926],[119.95046710000008,-2.800436699999977],[119.95665760000009,-2.801406699999973],[119.96020070000009,-2.806391399999939],[119.95974260000003,-2.814865399999974],[119.95172710000008,-2.830208499999969],[119.9537855000001,-2.834796499999925],[119.95539660000009,-2.847161399999948],[119.95973360000005,-2.850581699999964],[119.9629433,-2.856081599999925],[119.96774540000001,-2.859061499999939],[119.98357890000011,-2.8605655],[119.98993160000009,-2.869985199999974],[119.991031,-2.876797299999964],[119.99615330000006,-2.881877699999961],[119.99767120000001,-2.885505699999953],[120.001278,-2.887745099999961],[120.00285110000004,-2.891415599999959],[120.00250150000011,-2.898931399999981],[120.004599,-2.901902799999959],[120.01211480000006,-2.905049],[120.01665930000001,-2.908894299999929],[120.02400030000001,-2.910467399999959],[120.03396320000002,-2.918857199999934],[120.0431003000001,-2.922934599999962],[120.04617610000003,-2.928207499999928],[120.04321020000009,-2.938094],[120.048287,-2.954007299999944],[120.05580150000003,-2.953200899999956],[120.0608357000001,-2.948656],[120.06339620000006,-2.943495899999959],[120.06583970000008,-2.942530899999952],[120.07083840000007,-2.934924],[120.07615460000011,-2.933985199999938],[120.07959670000002,-2.930903199999932],[120.08343260000004,-2.931989099999953],[120.09414820000006,-2.917771799999969],[120.09815930000002,-2.918323699999974],[120.11402370000008,-2.911422399999935],[120.123753,-2.909673299999952],[120.13595410000005,-2.903509799999938],[120.1399775000001,-2.903278199999932],[120.14328990000001,-2.896409899999981],[120.14679640000008,-2.897374199999945],[120.15941910000004,-2.889272299999959],[120.171658,-2.886699499999963],[120.17420250000009,-2.889215199999967],[120.17739330000006,-2.887598799999978],[120.1797199,-2.891731399999969],[120.18196850000004,-2.890338699999973],[120.18278260000011,-2.891434],[120.187431,-2.890402199999926],[120.19275560000005,-2.891580699999963],[120.19946230000005,-2.890207399999952],[120.2083268,-2.894621899999947],[120.21700650000002,-2.896355599999936],[120.22080330000006,-2.902552599999979],[120.2173345000001,-2.903391899999974],[120.21821850000003,-2.907541799999933],[120.21569550000004,-2.912750899999935],[120.21812890000001,-2.921172399999932],[120.2197857000001,-2.921704099999943],[120.21899220000012,-2.924572399999931],[120.220804,-2.923934399999951],[120.222282,-2.927291],[120.223415,-2.925118199999929],[120.2244353000001,-2.927444499999979],[120.22665110000003,-2.926788299999942],[120.22615430000008,-2.929303899999979],[120.2286514000001,-2.932648299999926],[120.22777950000011,-2.933866399999943],[120.23048160000008,-2.934165099999973],[120.22959020000008,-2.935782099999926],[120.232783,-2.939971899999932],[120.22733640000001,-2.9396226],[120.22677570000008,-2.940759499999956],[120.22860890000004,-2.942693],[120.22492090000003,-2.9426225],[120.22627910000006,-2.944339799999966],[120.22418370000003,-2.947009],[120.22711460000005,-2.948084299999948],[120.22768890000009,-2.950876499999936],[120.22982710000008,-2.952630399999975]]]]},"properties":{"shapeName":"Luwu","shapeISO":"","shapeID":"22746128B51848203392978","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[120.967196,-2.810644],[120.964445,-2.807733],[120.961834,-2.810975],[120.954666,-2.81144],[120.957606,-2.815116],[120.960974,-2.814449],[120.962788,-2.811204],[120.967196,-2.810644]]],[[[121.35776510000005,-2.974743099999955],[121.37265150000007,-2.976797899999951],[121.38152,-2.980048599999975],[121.4123935,-3.002567099999965],[121.44033780000007,-3.006749599999978],[121.45736640000007,-3.013158799999928],[121.46097,-3.010676899999964],[121.4651775000001,-2.999242399999957],[121.49192510000012,-2.978225499999951],[121.49912940000002,-2.974100899999939],[121.50829390000001,-2.973771499999941],[121.52535980000005,-2.962103599999978],[121.54019280000011,-2.940822899999944],[121.5446859000001,-2.924949499999968],[121.54711880000002,-2.921664399999941],[121.557541,-2.919502699999953],[121.56579180000006,-2.922232],[121.57039860000009,-2.917479899999933],[121.57445870000004,-2.917077199999937],[121.58880990000011,-2.910977799999955],[121.59693640000012,-2.905006399999934],[121.6008624000001,-2.903515899999945],[121.6168272000001,-2.905710599999964],[121.61992010000006,-2.904769099999953],[121.62982820000002,-2.897161799999935],[121.63779410000006,-2.894145499999979],[121.64280050000002,-2.894423299999971],[121.65416270000003,-2.898379299999931],[121.66783170000008,-2.896899899999937],[121.67540550000001,-2.900443399999972],[121.68553620000012,-2.900770299999976],[121.6904267000001,-2.888708],[121.69126580000011,-2.882330699999955],[121.6882634000001,-2.877952199999925],[121.67258730000003,-2.868974899999955],[121.67137930000001,-2.860408799999959],[121.67210060000002,-2.854058299999963],[121.66982380000002,-2.847252899999944],[121.66982380000002,-2.842624299999954],[121.67835270000012,-2.829598199999964],[121.687302,-2.820591499999978],[121.69877940000003,-2.814494099999933],[121.703155,-2.814422399999955],[121.7097543000001,-2.818439299999966],[121.71190630000001,-2.818367599999931],[121.719725,-2.814350599999955],[121.72397710000007,-2.808032899999944],[121.72216170000002,-2.768347499999948],[121.72418790000006,-2.765774399999941],[121.74152350000008,-2.756268399999954],[121.74303970000005,-2.749604399999953],[121.75441180000007,-2.734607299999936],[121.75770000000011,-2.705140399999948],[121.763667,-2.696738499999981],[121.77718230000005,-2.687518099999977],[121.789556,-2.666997399999957],[121.78978690000008,-2.656389599999954],[121.78060710000011,-2.6491681],[121.77843150000001,-2.644901899999979],[121.77990450000004,-2.630709],[121.77527870000006,-2.624628899999948],[121.75556890000007,-2.610506499999929],[121.73839710000004,-2.5926847],[121.70409510000002,-2.538159499999949],[121.69846270000005,-2.5326917],[121.69381880000003,-2.531568299999947],[121.6894416,-2.532501299999979],[121.68728680000004,-2.535023099999933],[121.68657250000001,-2.540930299999957],[121.68362030000003,-2.542663399999981],[121.66656970000008,-2.536824599999932],[121.65946420000012,-2.539846],[121.6532231000001,-2.539478899999949],[121.64899580000008,-2.534210299999927],[121.64369890000012,-2.522738799999956],[121.63633130000005,-2.501962799999944],[121.63098520000005,-2.4940045],[121.62629390000006,-2.490036],[121.61747370000012,-2.485781],[121.61152430000004,-2.484808499999929],[121.58581660000004,-2.491831299999944],[121.5597795000001,-2.491073299999925],[121.55604280000011,-2.485289199999954],[121.54960060000008,-2.4801813],[121.54549020000002,-2.471937699999955],[121.5308238,-2.466968399999928],[121.5271517000001,-2.461801499999979],[121.51597290000007,-2.459925899999973],[121.51287880000007,-2.454977199999973],[121.50717510000004,-2.45188],[121.50134430000003,-2.4525657],[121.49034380000012,-2.430222399999934],[121.46878370000002,-2.421642499999962],[121.4602748000001,-2.419769799999926],[121.447028,-2.411615099999949],[121.44182030000002,-2.40541],[121.44061230000011,-2.406820799999934],[121.4303877000001,-2.406314399999928],[121.42798690000006,-2.407414899999935],[121.416185,-2.406578199999956],[121.41040140000007,-2.410451199999954],[121.40802340000005,-2.410276599999975],[121.31866320000006,-2.388781299999948],[121.29860240000005,-2.3779861],[121.24064810000004,-2.366582299999948],[121.23064180000006,-2.361261299999967],[121.20636640000009,-2.371267399999965],[121.19322190000003,-2.374379],[121.18191990000003,-2.3752051],[121.17563180000002,-2.3697802],[121.16292560000011,-2.351434199999971],[121.14978650000012,-2.340710499999943],[121.139435,-2.318459399999938],[121.1126594000001,-2.290873599999941],[121.10507760000007,-2.2792087],[121.09852820000003,-2.275293799999929],[121.07783990000007,-2.269813899999974],[121.05315540000004,-2.2669505],[121.04967150000004,-2.267587799999944],[121.03924670000004,-2.274364],[121.03444920000004,-2.275505799999962],[121.0284,-2.270280399999933],[121.00976660000003,-2.261791699999947],[121.0030829000001,-2.252017399999943],[120.99349060000009,-2.245337099999972],[120.96055550000005,-2.233667399999945],[120.93651450000004,-2.228227],[120.88027320000003,-2.219783699999937],[120.8421876000001,-2.218438],[120.8050277000001,-2.225335399999949],[120.79095810000001,-2.238466699999947],[120.75660940000012,-2.238979299999926],[120.7422547000001,-2.230264],[120.72559290000004,-2.226675299999954],[120.71739030000003,-2.223343],[120.70944390000011,-2.216678299999955],[120.69919060000007,-2.210782599999959],[120.68534850000003,-2.205399599999964],[120.67663320000008,-2.195658899999955],[120.66843050000011,-2.192326599999944],[120.66279110000005,-2.187456199999929],[120.615113,-2.156696199999942],[120.6020400000001,-2.142597799999976],[120.58640360000004,-2.129524799999956],[120.58025160000011,-2.122603699999956],[120.578201,-2.116195399999981],[120.54333950000012,-2.078258],[120.53975090000006,-2.070311599999968],[120.52134210000008,-2.051004299999931],[120.51225770000008,-2.060416],[120.5082374000001,-2.069469399999946],[120.5106522000001,-2.078436699999941],[120.51546430000008,-2.082408699999974],[120.51872920000005,-2.089963299999965],[120.5127705000001,-2.0980127],[120.51505540000005,-2.126246799999933],[120.5201737000001,-2.144027599999959],[120.51834520000011,-2.147821399999941],[120.51217110000005,-2.153415399999972],[120.50738530000001,-2.165411899999981],[120.50894460000006,-2.170089899999937],[120.50814280000009,-2.180705399999965],[120.50285250000002,-2.200922799999944],[120.5007862000001,-2.204953599999953],[120.49447120000002,-2.208215299999949],[120.48969560000012,-2.208967399999949],[120.48817540000005,-2.211454799999956],[120.48908590000008,-2.214933199999962],[120.48695120000002,-2.219824099999926],[120.48856280000007,-2.224088599999959],[120.48630850000006,-2.231879399999968],[120.47540780000008,-2.240593299999944],[120.47195750000003,-2.247060099999942],[120.47171980000007,-2.254019699999958],[120.47361720000004,-2.256378299999938],[120.47420190000003,-2.262466899999936],[120.47696750000011,-2.267268299999955],[120.47763250000003,-2.271824099999947],[120.47989840000002,-2.272566599999948],[120.48324420000006,-2.280018299999938],[120.48464610000008,-2.281341899999973],[120.49226520000002,-2.281994099999963],[120.4982831000001,-2.286086699999942],[120.50843430000009,-2.301192],[120.51228640000011,-2.317093099999965],[120.51694670000006,-2.322015799999974],[120.52727940000011,-2.325835],[120.53051290000008,-2.331570499999941],[120.5335454000001,-2.355688599999951],[120.5275653000001,-2.366251],[120.52258880000011,-2.379827299999931],[120.53158430000008,-2.381321699999944],[120.53909790000012,-2.394376799999975],[120.54459680000002,-2.396378799999979],[120.5430457000001,-2.399082799999974],[120.54521420000003,-2.410144399999979],[120.542444,-2.424493],[120.54334890000007,-2.4300174],[120.55485320000003,-2.442729],[120.5575970000001,-2.4429238],[120.56198290000009,-2.445878499999935],[120.56671740000002,-2.455156899999963],[120.572834,-2.455981799999961],[120.57478440000011,-2.458232299999963],[120.57433430000003,-2.468022099999928],[120.58096980000005,-2.483924],[120.58089860000007,-2.488279599999942],[120.58559830000002,-2.492931799999951],[120.58807880000006,-2.498248699999976],[120.59181720000004,-2.510389699999962],[120.59034080000004,-2.515151599999967],[120.59776120000004,-2.523174099999949],[120.59817310000005,-2.528209699999934],[120.596958,-2.529906799999935],[120.59900790000006,-2.533408799999961],[120.59863410000003,-2.5359029],[120.60437500000012,-2.539357499999937],[120.60542080000005,-2.543924299999958],[120.60821010000006,-2.547264899999959],[120.607676,-2.551033299999972],[120.60999430000004,-2.559785099999942],[120.61094060000005,-2.560029799999938],[120.61146270000006,-2.557631399999934],[120.61477690000004,-2.560221399999932],[120.6125181000001,-2.561715199999981],[120.61177280000004,-2.565528399999948],[120.61559280000006,-2.570413199999962],[120.61501970000006,-2.572071199999925],[120.61635760000001,-2.572560599999974],[120.6204332000001,-2.570098499999972],[120.6205182000001,-2.577178099999969],[120.61728760000005,-2.576835499999959],[120.62068140000008,-2.585009899999932],[120.62831730000005,-2.586021499999958],[120.63239640000006,-2.591324199999974],[120.63592010000002,-2.590009499999951],[120.63562700000011,-2.593510599999945],[120.63937970000006,-2.598552299999938],[120.6396969000001,-2.600891],[120.6381070000001,-2.602778199999932],[120.63440330000003,-2.603071899999975],[120.63414220000004,-2.604834],[120.63278800000012,-2.604817699999955],[120.63497430000007,-2.609255699999949],[120.63723370000002,-2.610053499999935],[120.63692920000005,-2.614725199999953],[120.63120530000003,-2.620187499999929],[120.6353147000001,-2.621852599999954],[120.63503960000003,-2.624119699999937],[120.6379928,-2.627040299999976],[120.64168030000008,-2.638021099999946],[120.646363,-2.642100199999959],[120.64495980000004,-2.643470699999966],[120.646673,-2.649719799999957],[120.6457593,-2.6500951],[120.65071940000007,-2.653505199999927],[120.6504910000001,-2.654582],[120.647962,-2.653586699999948],[120.64867990000005,-2.6561484],[120.65356010000005,-2.6606321],[120.65271,-2.6620059],[120.654309,-2.661402199999941],[120.65359110000009,-2.664600199999938],[120.65600190000009,-2.666584799999953],[120.65803770000002,-2.6628625],[120.66097550000006,-2.663190799999938],[120.66405550000002,-2.660596899999973],[120.66310620000002,-2.659721899999965],[120.66433110000003,-2.6583908],[120.66393170000003,-2.655710799999952],[120.6666795000001,-2.653842099999963],[120.66626210000004,-2.651592199999925],[120.6692680000001,-2.651587099999972],[120.6717102,-2.6497006],[120.67411730000003,-2.644931299999939],[120.67831290000004,-2.646149599999944],[120.68635390000009,-2.643473599999936],[120.69847740000012,-2.643918399999961],[120.70008970000004,-2.641809299999977],[120.701042,-2.643384399999945],[120.7111655000001,-2.642869899999937],[120.71730930000001,-2.637615499999924],[120.727404,-2.635647099999971],[120.74616190000006,-2.637053799999933],[120.74756080000009,-2.635754799999972],[120.7473778000001,-2.6302968],[120.74990430000003,-2.622453199999939],[120.75996,-2.619511099999954],[120.77259160000006,-2.619356099999948],[120.782572,-2.626982899999973],[120.78534170000012,-2.627315099999976],[120.78654720000009,-2.624770199999944],[120.7863,-2.626090099999942],[120.79009840000003,-2.625679799999943],[120.79081580000002,-2.620317399999976],[120.79612310000005,-2.6240261],[120.8016546,-2.620040199999949],[120.80813180000007,-2.618763299999955],[120.8168746,-2.619480499999952],[120.82689110000001,-2.6288162],[120.82812620000004,-2.637287399999934],[120.83127180000008,-2.637458399999957],[120.8336978000001,-2.634321199999931],[120.83495390000007,-2.635037099999977],[120.83394550000003,-2.640995699999962],[120.8377865000001,-2.642296099999953],[120.8395101000001,-2.646261899999956],[120.83846750000009,-2.645722399999954],[120.83802130000004,-2.647025099999951],[120.8398284000001,-2.649544099999957],[120.84657080000011,-2.653017599999941],[120.8513544000001,-2.6517314],[120.85251140000003,-2.655442],[120.856549,-2.657388],[120.86606890000007,-2.656703599999958],[120.86807610000005,-2.645234],[120.8731987000001,-2.645964699999979],[120.88768530000004,-2.642767099999958],[120.888543,-2.640542599999947],[120.89128310000001,-2.640263399999981],[120.8916951000001,-2.642043],[120.89587140000003,-2.645065],[120.89947930000005,-2.644595699999968],[120.90093320000005,-2.648205],[120.90350490000003,-2.6488676],[120.90316170000006,-2.651773299999945],[120.90733710000006,-2.662165499999958],[120.913033,-2.661099],[120.913812,-2.664659],[120.919826,-2.664104],[120.927781,-2.659296],[120.94062450000001,-2.660909699999934],[120.94313000000011,-2.65804],[120.9477270000001,-2.660702],[120.948767,-2.665042],[120.95406900000012,-2.668536],[120.95943000000011,-2.667616],[120.962302,-2.670195],[120.970198,-2.67058],[120.973548,-2.668045],[120.975848,-2.668129],[120.977336,-2.669821],[120.979458,-2.667282],[120.984997,-2.669972],[120.986979,-2.672886],[120.989595,-2.67227],[120.99333800000011,-2.675698],[120.994709,-2.67901],[120.998526,-2.679099],[121.001875,-2.676126],[121.004301,-2.678751],[121.006134,-2.678573],[121.009308,-2.676482],[121.010737,-2.677235],[121.0137370000001,-2.673143],[121.017278,-2.671534],[121.017534,-2.673161],[121.019794,-2.672639],[121.021949,-2.667716],[121.019417,-2.660905],[121.017824,-2.66079],[121.020564,-2.65579],[121.02113,-2.650353],[121.0269750000001,-2.654035],[121.029365,-2.653966],[121.0304890000001,-2.656825],[121.029606,-2.65778],[121.03124,-2.659762],[121.043133,-2.656166],[121.044632,-2.654253],[121.051178,-2.656204],[121.054381,-2.658355],[121.051229,-2.660764],[121.036121,-2.664798],[121.037042,-2.666162],[121.0347,-2.671164],[121.04025800000011,-2.669938],[121.040675,-2.671033],[121.0358010000001,-2.673356],[121.034373,-2.676762],[121.037023,-2.694321],[121.040963,-2.69698],[121.042718,-2.696695],[121.047498,-2.692318],[121.047261,-2.696263],[121.048627,-2.698617],[121.056839,-2.693296],[121.062892,-2.693485],[121.064561,-2.69408],[121.063443,-2.694501],[121.064947,-2.696109],[121.071652,-2.698194],[121.076297,-2.698483],[121.078856,-2.696842],[121.084585,-2.704336],[121.087002,-2.714992],[121.097009,-2.715505],[121.0942030000001,-2.723229],[121.08483600000011,-2.733135],[121.086084,-2.740352],[121.082655,-2.744375],[121.078796,-2.7437],[121.0782,-2.745279],[121.07551200000012,-2.746114],[121.0737610000001,-2.744082],[121.068977,-2.742869],[121.069555,-2.740225],[121.067695,-2.738525],[121.065841,-2.746437],[121.06259000000011,-2.748103],[121.064715,-2.751825],[121.065139,-2.764384],[121.060188,-2.770577],[121.049294,-2.772675],[121.048592,-2.777425],[121.045947,-2.778237],[121.043373,-2.776539],[121.035826,-2.776733],[121.03732900000011,-2.771908],[121.036006,-2.766824],[121.033708,-2.767532],[121.033873,-2.770551],[121.031505,-2.773421],[121.0299020000001,-2.781051],[121.02620500000012,-2.783406],[121.026108,-2.789308],[121.021966,-2.790565],[121.02062,-2.792373],[121.0188710000001,-2.790947],[121.018755,-2.795754],[121.021384,-2.797213],[121.020068,-2.802039],[121.021651,-2.804293],[121.017167,-2.808566],[121.013994,-2.80868],[121.01319600000011,-2.804775],[121.010352,-2.803609],[121.006227,-2.79899],[121.0054980000001,-2.800241],[121.007736,-2.804048],[121.006097,-2.809273],[121.002681,-2.809786],[121.003503,-2.814038],[121.000416,-2.816824],[120.99365300000011,-2.818521],[120.98978100000011,-2.815382],[120.985036,-2.816178],[120.977753,-2.806163],[120.97469600000011,-2.808675],[120.9774440000001,-2.822476],[120.982242,-2.822313],[120.985963,-2.826032],[120.98827040000003,-2.831327099999953],[121.0194196000001,-2.819832499999961],[121.0276510000001,-2.808001899999965],[121.02953810000008,-2.796205599999951],[121.03160260000004,-2.793487499999969],[121.037056,-2.791489399999932],[121.04477380000003,-2.792632599999934],[121.05304220000005,-2.791868799999975],[121.06247270000006,-2.786712399999942],[121.06874060000007,-2.787536599999953],[121.08008820000009,-2.779408399999966],[121.12143590000005,-2.7913386],[121.13303750000011,-2.797831499999972],[121.15401710000003,-2.815226199999927],[121.16385120000007,-2.814482299999952],[121.1718876000001,-2.817569399999968],[121.17412510000008,-2.820641699999953],[121.17702230000009,-2.830589699999962],[121.18128420000005,-2.835850099999959],[121.1871612000001,-2.838753],[121.19475280000006,-2.851750099999947],[121.19693540000003,-2.851943399999925],[121.19844360000002,-2.8552825],[121.20321740000009,-2.857614],[121.20354830000008,-2.855941599999937],[121.20604240000011,-2.855656199999942],[121.2076244000001,-2.853307599999937],[121.21207350000009,-2.857926299999974],[121.21444950000011,-2.858110899999929],[121.214708,-2.855407499999956],[121.21785630000011,-2.8539294],[121.21954920000007,-2.854935799999964],[121.2183152,-2.856172699999945],[121.21898070000009,-2.857810499999971],[121.22131560000003,-2.857723699999951],[121.2232934000001,-2.853594299999941],[121.22121,-2.850833],[121.22375310000007,-2.8492635],[121.2207542000001,-2.843146],[121.22471760000008,-2.844897399999979],[121.23122630000012,-2.8441659],[121.23323140000002,-2.842080099999976],[121.23081320000006,-2.837166199999956],[121.23522240000011,-2.828808299999935],[121.241304,-2.825263799999959],[121.2805466000001,-2.8185768],[121.29538580000008,-2.807123],[121.30813250000006,-2.805622399999947],[121.31866190000005,-2.807735699999967],[121.33255880000002,-2.834044399999925],[121.34046200000012,-2.859720699999968],[121.3534671000001,-2.885883799999931],[121.3577259000001,-2.899346499999979],[121.35767790000011,-2.903868099999954],[121.35532,-2.907879899999955],[121.336916,-2.924989799999935],[121.32903390000001,-2.935196899999937],[121.3287835000001,-2.938614799999925],[121.33868780000012,-2.950187],[121.34957380000003,-2.970116599999926],[121.35776510000005,-2.974743099999955]]]]},"properties":{"shapeName":"Luwu Timur","shapeISO":"","shapeID":"22746128B4442925913688","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[120.289731,-2.913034899999957],[120.28986920000011,-2.910492199999965],[120.28878340000006,-2.911988799999961],[120.289731,-2.913034899999957]]],[[[120.29039720000003,-2.9133275],[120.29379150000011,-2.909413699999959],[120.293189,-2.906141699999978],[120.29039720000003,-2.9133275]]],[[[120.28746500000011,-2.910453899999936],[120.28865780000001,-2.910611899999935],[120.292885,-2.905688],[120.29496970000002,-2.905918899999961],[120.29405930000007,-2.917389399999934],[120.29736430000003,-2.911963799999967],[120.29772690000004,-2.908299099999965],[120.3015276000001,-2.904603],[120.304954,-2.904769399999964],[120.3081221000001,-2.907245299999943],[120.30976160000012,-2.905249699999956],[120.3133587000001,-2.906862399999966],[120.31546730000002,-2.903648],[120.31930580000005,-2.902996299999927],[120.31995040000004,-2.90123],[120.32198990000006,-2.9011049],[120.32447260000004,-2.896484899999962],[120.32954710000001,-2.893322599999976],[120.33021660000009,-2.888133399999958],[120.32894650000003,-2.885916299999963],[120.331895,-2.882074799999941],[120.33545060000006,-2.885643899999934],[120.3371251000001,-2.882534499999963],[120.34198450000008,-2.879741799999977],[120.34664810000004,-2.873957399999938],[120.34557350000011,-2.871043199999974],[120.34656510000002,-2.869473399999947],[120.35218020000002,-2.866031499999963],[120.3541269000001,-2.867437099999961],[120.35549440000011,-2.8639524],[120.35967810000011,-2.865225899999928],[120.3643760000001,-2.864571699999942],[120.37011550000011,-2.861168699999951],[120.3763441000001,-2.860350199999971],[120.37850850000007,-2.858181299999956],[120.37700540000003,-2.856417399999941],[120.37752580000006,-2.854475099999945],[120.38283090000004,-2.854892899999925],[120.388451,-2.851536899999928],[120.39425920000008,-2.851081],[120.39813760000004,-2.848937099999944],[120.39822290000006,-2.845581399999958],[120.40276940000001,-2.8451572],[120.40658770000005,-2.841859399999976],[120.40972290000002,-2.841015899999945],[120.4170961000001,-2.8420869],[120.42054960000007,-2.8379345],[120.42680030000008,-2.836841399999969],[120.43059240000002,-2.8320882],[120.43136410000011,-2.828560099999947],[120.4334804,-2.828564],[120.4336267000001,-2.830997],[120.43736280000007,-2.831088799999975],[120.43917610000005,-2.828371499999946],[120.44422840000004,-2.828635599999927],[120.44827850000001,-2.826504099999966],[120.4482494,-2.824288099999933],[120.45328080000002,-2.823487299999954],[120.45943720000002,-2.815588199999979],[120.4621644,-2.814524399999925],[120.4627852000001,-2.815401799999961],[120.467385,-2.811887099999979],[120.46673070000008,-2.808389799999929],[120.47284530000002,-2.807512899999949],[120.47831810000002,-2.8032],[120.4810159000001,-2.796470099999965],[120.4827596,-2.796049599999947],[120.48608800000011,-2.790103199999976],[120.48759410000002,-2.790332299999932],[120.4905189000001,-2.787445699999978],[120.48720340000011,-2.785706799999957],[120.48763780000002,-2.783970799999963],[120.49298720000002,-2.780482899999924],[120.49818730000004,-2.77965],[120.49980750000009,-2.775104399999975],[120.50189210000008,-2.7745249],[120.50167620000002,-2.772851299999957],[120.50530990000004,-2.7747129],[120.50838720000002,-2.774375],[120.5164112000001,-2.770735699999932],[120.52177150000011,-2.765531599999974],[120.5229098000001,-2.766149899999959],[120.52515240000002,-2.765182699999968],[120.52528270000005,-2.763392499999952],[120.52797210000006,-2.763482299999964],[120.52811210000004,-2.761834],[120.53409540000007,-2.757294799999954],[120.5359807000001,-2.754316],[120.53473570000006,-2.753259799999967],[120.53633620000005,-2.749186799999961],[120.53485740000008,-2.747481899999968],[120.53974030000006,-2.7473914],[120.53835860000004,-2.745616799999937],[120.53905880000002,-2.738944199999935],[120.54328810000004,-2.7361012],[120.54294790000006,-2.734896099999958],[120.54538040000011,-2.732685499999945],[120.5464184000001,-2.732797199999936],[120.54536480000002,-2.734270599999945],[120.54692840000007,-2.734482899999932],[120.554643,-2.729461799999967],[120.5550975000001,-2.726413199999968],[120.55884580000009,-2.724728399999947],[120.55484550000006,-2.7232446],[120.55683590000001,-2.721853299999964],[120.55956930000002,-2.7225357],[120.55983470000001,-2.720748799999967],[120.56133420000003,-2.720420799999943],[120.56058570000005,-2.716608199999939],[120.5642984000001,-2.716955799999937],[120.56494980000002,-2.713747199999943],[120.56925220000005,-2.711941299999978],[120.5698546000001,-2.707471699999928],[120.57328970000003,-2.705512599999963],[120.57470550000005,-2.699797199999978],[120.57348640000009,-2.696135099999935],[120.5690581,-2.695446],[120.56693440000004,-2.693293799999935],[120.5700786000001,-2.691315],[120.571136,-2.68674],[120.57320860000004,-2.6852195],[120.57639140000003,-2.688524399999949],[120.5781416000001,-2.686433099999931],[120.59264340000004,-2.684178399999951],[120.59932480000009,-2.679284499999937],[120.60644490000004,-2.678147199999955],[120.61115280000001,-2.681421799999953],[120.61547850000011,-2.681141099999934],[120.62230670000008,-2.683522699999969],[120.6309586000001,-2.68156],[120.63307970000005,-2.682233],[120.64897150000002,-2.668650399999933],[120.65173340000001,-2.668963],[120.65600190000009,-2.666584799999953],[120.65359110000009,-2.664600199999938],[120.654309,-2.661402199999941],[120.65271,-2.6620059],[120.65356010000005,-2.6606321],[120.64867990000005,-2.6561484],[120.647962,-2.653586699999948],[120.6504910000001,-2.654582],[120.65071940000007,-2.653505199999927],[120.6457593,-2.6500951],[120.646673,-2.649719799999957],[120.64495980000004,-2.643470699999966],[120.646363,-2.642100199999959],[120.64168030000008,-2.638021099999946],[120.6379928,-2.627040299999976],[120.63503960000003,-2.624119699999937],[120.6353147000001,-2.621852599999954],[120.63120530000003,-2.620187499999929],[120.63692920000005,-2.614725199999953],[120.63723370000002,-2.610053499999935],[120.63497430000007,-2.609255699999949],[120.63278800000012,-2.604817699999955],[120.63414220000004,-2.604834],[120.63440330000003,-2.603071899999975],[120.6381070000001,-2.602778199999932],[120.6396969000001,-2.600891],[120.63937970000006,-2.598552299999938],[120.63562700000011,-2.593510599999945],[120.63592010000002,-2.590009499999951],[120.63239640000006,-2.591324199999974],[120.62831730000005,-2.586021499999958],[120.62068140000008,-2.585009899999932],[120.61728760000005,-2.576835499999959],[120.6205182000001,-2.577178099999969],[120.6204332000001,-2.570098499999972],[120.61635760000001,-2.572560599999974],[120.61501970000006,-2.572071199999925],[120.61559280000006,-2.570413199999962],[120.61177280000004,-2.565528399999948],[120.6125181000001,-2.561715199999981],[120.61477690000004,-2.560221399999932],[120.61146270000006,-2.557631399999934],[120.61094060000005,-2.560029799999938],[120.60999430000004,-2.559785099999942],[120.607676,-2.551033299999972],[120.60821010000006,-2.547264899999959],[120.60542080000005,-2.543924299999958],[120.60437500000012,-2.539357499999937],[120.59863410000003,-2.5359029],[120.59900790000006,-2.533408799999961],[120.596958,-2.529906799999935],[120.59817310000005,-2.528209699999934],[120.59776120000004,-2.523174099999949],[120.59034080000004,-2.515151599999967],[120.59181720000004,-2.510389699999962],[120.58807880000006,-2.498248699999976],[120.58559830000002,-2.492931799999951],[120.58089860000007,-2.488279599999942],[120.58096980000005,-2.483924],[120.57433430000003,-2.468022099999928],[120.57478440000011,-2.458232299999963],[120.572834,-2.455981799999961],[120.56671740000002,-2.455156899999963],[120.56198290000009,-2.445878499999935],[120.5575970000001,-2.4429238],[120.55485320000003,-2.442729],[120.54334890000007,-2.4300174],[120.542444,-2.424493],[120.54521420000003,-2.410144399999979],[120.5430457000001,-2.399082799999974],[120.54459680000002,-2.396378799999979],[120.53909790000012,-2.394376799999975],[120.53158430000008,-2.381321699999944],[120.52258880000011,-2.379827299999931],[120.5275653000001,-2.366251],[120.5335454000001,-2.355688599999951],[120.53051290000008,-2.331570499999941],[120.52727940000011,-2.325835],[120.51694670000006,-2.322015799999974],[120.51228640000011,-2.317093099999965],[120.50843430000009,-2.301192],[120.4982831000001,-2.286086699999942],[120.49226520000002,-2.281994099999963],[120.48464610000008,-2.281341899999973],[120.48324420000006,-2.280018299999938],[120.47989840000002,-2.272566599999948],[120.47763250000003,-2.271824099999947],[120.47696750000011,-2.267268299999955],[120.47420190000003,-2.262466899999936],[120.47361720000004,-2.256378299999938],[120.47171980000007,-2.254019699999958],[120.47195750000003,-2.247060099999942],[120.47540780000008,-2.240593299999944],[120.48630850000006,-2.231879399999968],[120.48856280000007,-2.224088599999959],[120.48695120000002,-2.219824099999926],[120.48908590000008,-2.214933199999962],[120.48817540000005,-2.211454799999956],[120.48969560000012,-2.208967399999949],[120.49447120000002,-2.208215299999949],[120.5007862000001,-2.204953599999953],[120.50285250000002,-2.200922799999944],[120.50814280000009,-2.180705399999965],[120.50894460000006,-2.170089899999937],[120.50738530000001,-2.165411899999981],[120.51217110000005,-2.153415399999972],[120.51834520000011,-2.147821399999941],[120.5201737000001,-2.144027599999959],[120.51505540000005,-2.126246799999933],[120.5127705000001,-2.0980127],[120.51872920000005,-2.089963299999965],[120.51546430000008,-2.082408699999974],[120.5106522000001,-2.078436699999941],[120.5082374000001,-2.069469399999946],[120.51225770000008,-2.060416],[120.52134210000008,-2.051004299999931],[120.50283880000006,-2.029554499999961],[120.4838701000001,-2.002126799999928],[120.4838701000001,-1.987259399999971],[120.48079410000003,-1.984183399999949],[120.4798095000001,-1.979854799999941],[120.47694910000007,-1.977775099999974],[120.47054070000002,-1.9629077],[120.46567040000002,-1.961113399999931],[120.46182540000007,-1.953679699999952],[120.44618900000012,-1.937274299999956],[120.441575,-1.936505299999965],[120.4274296000001,-1.924136399999952],[120.41876130000003,-1.914460599999927],[120.40850790000002,-1.8972862],[120.40338120000001,-1.895491899999968],[120.39082090000011,-1.895235599999978],[120.38877020000007,-1.897542599999952],[120.37954220000006,-1.945220699999936],[120.37928590000001,-1.953423399999963],[120.37544080000009,-1.961113399999931],[120.37210850000008,-1.9629077],[120.36288050000007,-1.991617099999928],[120.36185510000007,-2.010842199999956],[120.35801010000012,-2.012892799999975],[120.35698480000008,-2.019044799999961],[120.34929480000005,-2.030067199999962],[120.3446808000001,-2.056725899999947],[120.33981040000003,-2.0613399],[120.33494010000004,-2.061596299999962],[120.317253,-2.051855599999953],[120.311101,-2.050573899999961],[120.29156820000003,-2.040235899999971],[120.2823916000001,-2.032630499999925],[120.27060030000007,-2.028272899999934],[120.23830220000002,-2.029041899999925],[120.23240650000002,-2.032117899999946],[120.21779550000008,-2.032630499999925],[120.20344080000007,-2.036219199999948],[120.17908910000006,-2.034424899999976],[120.17473140000004,-2.031861499999934],[120.1642217000001,-2.029554499999961],[120.15191770000001,-2.022633499999927],[120.14166430000012,-2.021608199999946],[120.11936330000003,-2.012380199999939],[120.11500560000002,-2.009047799999962],[120.11339550000002,-1.992010099999959],[120.11039740000001,-1.992074899999977],[120.09898410000005,-1.985720799999967],[120.08526450000011,-1.979733099999976],[120.06128680000006,-1.980937299999937],[120.05354370000009,-1.982206499999961],[120.05086560000007,-1.984776699999941],[120.0408298000001,-1.980539299999975],[120.03393110000002,-1.972594099999981],[120.02161400000011,-1.967747299999928],[120.01571740000009,-1.969995399999959],[120.01322660000005,-1.966277599999955],[120.01001180000003,-1.9643835],[119.99127690000012,-1.965953199999944],[119.9837768000001,-1.973619299999939],[119.972033,-1.974986699999931],[119.96841430000006,-1.977315199999964],[119.96447380000006,-1.989582799999937],[119.963787,-2.000317699999925],[119.95550450000007,-2.003784199999927],[119.95234230000005,-2.009382699999946],[119.94832880000001,-2.011350599999957],[119.94448140000009,-2.015468599999963],[119.94522620000009,-2.020174599999962],[119.94384060000004,-2.022435899999948],[119.94522740000002,-2.027330499999948],[119.9440327000001,-2.029320399999961],[119.93926230000011,-2.030829],[119.9366159000001,-2.035206899999935],[119.93037850000007,-2.037468099999955],[119.92437920000009,-2.033883],[119.92066810000006,-2.033682],[119.90910290000011,-2.053427499999941],[119.90095810000003,-2.055448299999966],[119.89680240000007,-2.054019199999971],[119.89380060000008,-2.048908499999925],[119.89114110000003,-2.049719499999981],[119.88388730000008,-2.046253899999954],[119.8792883000001,-2.038021699999945],[119.87158940000006,-2.034538699999928],[119.86823490000006,-2.027505799999972],[119.87344610000002,-2.021081099999947],[119.87027130000001,-2.018059699999981],[119.86582280000005,-2.020796699999948],[119.86235370000009,-2.027142599999934],[119.86235370000009,-2.031852599999979],[119.85658120000005,-2.0333766],[119.85147630000006,-2.041797599999938],[119.84346260000007,-2.045767699999942],[119.8356913,-2.044870299999957],[119.82704660000002,-2.047419599999955],[119.82056590000002,-2.0550962],[119.8173991000001,-2.061707299999966],[119.8181747000001,-2.068627699999979],[119.82084630000008,-2.0744332],[119.81927650000011,-2.080878799999937],[119.81568850000008,-2.084779899999944],[119.817234,-2.095223],[119.81505250000009,-2.100874499999975],[119.81002860000001,-2.103522199999929],[119.80460340000002,-2.111935799999969],[119.79180320000012,-2.108669799999973],[119.78199030000007,-2.116603399999974],[119.76987880000001,-2.120998899999961],[119.766352,-2.124041599999941],[119.76646870000002,-2.130032599999936],[119.76268930000003,-2.135624099999973],[119.76370920000011,-2.138992899999948],[119.7618764,-2.145358],[119.751166,-2.155146099999968],[119.74316360000012,-2.1542751],[119.73764,-2.162246499999981],[119.7293472,-2.1663281],[119.7270688000001,-2.171636899999953],[119.7270344000001,-2.177447699999959],[119.71152440000003,-2.189838499999951],[119.707126,-2.194825899999955],[119.70647780000002,-2.198098499999958],[119.69117620000009,-2.208952899999929],[119.68484970000009,-2.208042599999942],[119.67433580000011,-2.21033],[119.66817050000009,-2.216134099999977],[119.65956050000011,-2.230392599999959],[119.65754830000003,-2.231742899999972],[119.65744830000006,-2.233848799999976],[119.65226860000007,-2.233569],[119.651714,-2.236516199999926],[119.64449050000007,-2.239692399999967],[119.63728190000006,-2.240256799999941],[119.6322315000001,-2.2429682],[119.62923630000012,-2.253231299999925],[119.63239840000006,-2.2608894],[119.6343951,-2.277641399999936],[119.63617240000008,-2.279816199999971],[119.628283,-2.295185599999968],[119.632279,-2.297754],[119.640955,-2.307321499999944],[119.64314390000004,-2.310205499999938],[119.64349240000001,-2.313476499999979],[119.650033,-2.315832],[119.6504245000001,-2.320133099999964],[119.65421440000011,-2.322638299999937],[119.65514960000007,-2.326341899999932],[119.66405220000001,-2.327364299999942],[119.6658423,-2.330948699999965],[119.66993150000008,-2.332477299999937],[119.670603,-2.336009599999954],[119.6736012,-2.339410899999962],[119.68025620000003,-2.339334899999926],[119.68799070000011,-2.333518099999935],[119.69275460000006,-2.336455099999966],[119.69447240000011,-2.342145099999925],[119.69035460000009,-2.351461399999948],[119.69080330000008,-2.354361399999959],[119.693415,-2.3567602],[119.6998718000001,-2.371045199999969],[119.71435290000011,-2.392377899999929],[119.719792,-2.404277499999978],[119.71902210000007,-2.409469199999933],[119.71256010000002,-2.424510199999929],[119.696927,-2.4453992],[119.69434120000005,-2.460611799999981],[119.70054280000011,-2.47376],[119.72656010000003,-2.492268799999977],[119.73132,-2.500274399999967],[119.730245,-2.512871899999936],[119.72647590000008,-2.526763099999926],[119.71101090000002,-2.554543],[119.7095,-2.566533799999945],[119.71052310000005,-2.569381599999929],[119.7160689000001,-2.575854],[119.740018,-2.591072299999951],[119.76063980000004,-2.617130499999973],[119.7824601000001,-2.627791599999966],[119.79696120000006,-2.640458299999977],[119.80609540000012,-2.630443499999956],[119.8205977,-2.627672699999948],[119.82703970000011,-2.624052699999936],[119.83927230000006,-2.611266],[119.84764920000009,-2.611839],[119.853551,-2.620746499999939],[119.85477330000003,-2.627469299999973],[119.85375470000008,-2.632562299999961],[119.85681050000005,-2.636433],[119.8584403000001,-2.642340899999965],[119.85372130000007,-2.665177599999936],[119.85522020000008,-2.670649499999968],[119.85252020000007,-2.677233899999976],[119.85375820000002,-2.686246599999947],[119.85244210000008,-2.698374899999976],[119.85374280000008,-2.701159399999938],[119.8592877000001,-2.704856],[119.8605741,-2.711803399999951],[119.86698690000003,-2.722796699999947],[119.87211490000004,-2.740699899999925],[119.8773619000001,-2.737114899999938],[119.89903660000004,-2.7336338],[119.90178960000003,-2.726394899999946],[119.90780230000007,-2.723380299999974],[119.91573930000004,-2.7230395],[119.92693940000004,-2.728315699999939],[119.94811520000007,-2.717281899999932],[119.957119,-2.717688299999963],[119.98596960000009,-2.708671099999947],[119.99500710000007,-2.701202799999976],[119.997669,-2.700607],[120.0156664000001,-2.697669599999927],[120.0252554000001,-2.6980206],[120.03426420000005,-2.700676299999941],[120.0458771000001,-2.701022],[120.05012860000011,-2.697101099999941],[120.05736510000008,-2.694029599999965],[120.06033930000001,-2.6905405],[120.0648139000001,-2.690689799999973],[120.06882170000006,-2.695875399999977],[120.07191490000002,-2.697367299999939],[120.08224310000003,-2.695359199999928],[120.09010050000006,-2.685162299999945],[120.09396270000002,-2.674814899999944],[120.10192970000003,-2.665903299999968],[120.1112571000001,-2.671790499999929],[120.12412,-2.674359799999934],[120.12975290000008,-2.673677399999974],[120.137994,-2.681115099999943],[120.13999310000008,-2.687923799999965],[120.13600780000002,-2.697944099999972],[120.132737,-2.698496599999942],[120.130867,-2.703118399999937],[120.13561410000011,-2.7050995],[120.13917010000011,-2.708487299999945],[120.13761590000001,-2.710453499999971],[120.13900480000007,-2.712622799999963],[120.14181520000011,-2.713442899999961],[120.14507450000008,-2.719206099999951],[120.15956860000006,-2.726342899999963],[120.15393230000006,-2.727302299999963],[120.15703640000004,-2.731228399999964],[120.16666680000003,-2.7332516],[120.1683703000001,-2.735515899999939],[120.17111790000001,-2.735993699999938],[120.1734090000001,-2.742681799999957],[120.17379160000007,-2.749830599999939],[120.1789652000001,-2.7556833],[120.1824491000001,-2.763921899999957],[120.18678470000009,-2.767218399999933],[120.1894837000001,-2.766196599999944],[120.19197240000005,-2.767086599999971],[120.1922886000001,-2.768529199999932],[120.1935539000001,-2.768038599999954],[120.19647910000003,-2.771252],[120.19573690000004,-2.772568199999967],[120.20391730000006,-2.7790624],[120.20317110000008,-2.781276099999957],[120.20571890000008,-2.781639699999971],[120.209853,-2.787808299999938],[120.21210370000006,-2.789718499999935],[120.21368310000003,-2.788006],[120.21631280000008,-2.788851299999976],[120.22216680000008,-2.797554299999945],[120.2270079000001,-2.798738],[120.2264666000001,-2.802685499999939],[120.22854880000011,-2.803220599999975],[120.2283059,-2.805763699999943],[120.23141070000008,-2.808251299999938],[120.23125970000001,-2.810715199999947],[120.23767580000003,-2.814269499999966],[120.24487250000004,-2.814868699999977],[120.24477510000008,-2.821326899999974],[120.24759520000009,-2.822112],[120.24844580000001,-2.826236699999924],[120.24968320000005,-2.826521799999966],[120.25085610000008,-2.823470399999962],[120.2604275000001,-2.823796399999935],[120.25819790000003,-2.826426799999979],[120.25886850000006,-2.829302299999938],[120.256492,-2.830135199999972],[120.255341,-2.833289799999932],[120.255636,-2.8382688],[120.26106470000002,-2.841573299999936],[120.26017520000005,-2.847789199999966],[120.2644381,-2.848473299999966],[120.26625400000012,-2.851670899999931],[120.26768040000002,-2.8511066],[120.27004520000003,-2.853651899999932],[120.27128130000006,-2.856889299999978],[120.270382,-2.859940299999948],[120.27684040000008,-2.867572199999927],[120.2743938000001,-2.869896099999949],[120.27522950000002,-2.871892],[120.27376790000005,-2.872827099999938],[120.27326210000001,-2.876463499999943],[120.2746194,-2.877358299999969],[120.27295620000007,-2.878616699999952],[120.27411730000006,-2.883410499999968],[120.27269480000007,-2.886474299999975],[120.27131080000004,-2.886637099999973],[120.2725077,-2.888567399999943],[120.26701020000007,-2.891415699999925],[120.26721150000003,-2.894208599999956],[120.27024860000006,-2.896775],[120.27413810000007,-2.896768899999927],[120.27609240000004,-2.899085899999932],[120.27956570000003,-2.899116299999946],[120.2808543000001,-2.901685499999928],[120.2831857000001,-2.901717699999949],[120.28172640000003,-2.904099899999949],[120.2847614000001,-2.905326899999977],[120.28431510000007,-2.907913199999939],[120.28746500000011,-2.910453899999936]]]]},"properties":{"shapeName":"Luwu Utara","shapeISO":"","shapeID":"22746128B9121941086220","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[111.67121890000004,-7.4095425],[111.668518,-7.423082799999975],[111.66334530000006,-7.423975899999959],[111.65965270000004,-7.427216499999929],[111.658432,-7.433605599999964],[111.654869,-7.436696499999925],[111.65522,-7.438514199999929],[111.65060420000009,-7.438674899999967],[111.65238190000008,-7.444665899999961],[111.65081020000008,-7.445839799999931],[111.65168,-7.451014],[111.64379120000007,-7.451551399999971],[111.637146,-7.462777099999926],[111.63442230000004,-7.461497699999939],[111.63142390000007,-7.463875199999961],[111.62902260000004,-7.4636957],[111.62726890000005,-7.467005799999981],[111.624315,-7.466582499999959],[111.62274930000007,-7.469399399999929],[111.61723330000007,-7.467614599999933],[111.61065670000005,-7.468926899999929],[111.61056520000005,-7.475925899999936],[111.60752870000005,-7.478751599999953],[111.60662840000003,-7.475488599999949],[111.60475160000004,-7.477123199999937],[111.60478970000008,-7.480222699999956],[111.60250850000006,-7.481333699999936],[111.60460660000007,-7.481814799999938],[111.60449220000004,-7.483674899999926],[111.60074610000004,-7.485324799999944],[111.599266,-7.488861],[111.59783170000009,-7.488572099999942],[111.595726,-7.494111],[111.59789270000005,-7.4952869],[111.596054,-7.495715599999926],[111.59577180000008,-7.497684899999967],[111.59365080000003,-7.497838],[111.59429170000004,-7.499072499999954],[111.59049190000007,-7.504478199999937],[111.59078210000007,-7.506949399999939],[111.58872220000006,-7.505460199999959],[111.58565060000006,-7.510376199999939],[111.58365630000009,-7.509605799999974],[111.58412170000008,-7.511723],[111.58205410000005,-7.510955299999978],[111.581871,-7.512732],[111.58039090000005,-7.512482599999942],[111.580101,-7.515376],[111.58489230000004,-7.518297099999927],[111.58687590000005,-7.520459099999925],[111.58646390000007,-7.521874399999945],[111.58505250000007,-7.521176799999978],[111.582344,-7.523377399999958],[111.57551570000004,-7.520432899999946],[111.57451630000008,-7.521528699999976],[111.57213590000003,-7.521002299999964],[111.56964110000007,-7.5242643],[111.564003,-7.523204299999975],[111.56091310000005,-7.527378],[111.55705260000008,-7.527691299999958],[111.556366,-7.529533799999967],[111.55050660000006,-7.527052799999979],[111.55204770000006,-7.530954299999962],[111.54686740000005,-7.536997299999939],[111.56037140000007,-7.5399198],[111.56095880000004,-7.541538699999933],[111.55679930000008,-7.544582599999956],[111.54926120000005,-7.5447574],[111.54701230000006,-7.539543099999946],[111.54332730000004,-7.539215499999955],[111.53740690000006,-7.539627499999938],[111.53585810000004,-7.545710499999927],[111.52496730000007,-7.544623899999976],[111.52468130000005,-7.541257099999939],[111.52310180000006,-7.539717199999927],[111.509566,-7.537483899999927],[111.50717930000008,-7.545955699999979],[111.51248930000008,-7.549561499999982],[111.51276120000006,-7.551790899999958],[111.50437370000009,-7.551999299999977],[111.50004580000007,-7.558542699999975],[111.49972430000008,-7.564996399999927],[111.48928830000006,-7.562880499999949],[111.48483040000008,-7.572106499999961],[111.48493190000005,-7.576090299999976],[111.48300170000005,-7.575470899999971],[111.48255920000008,-7.576864199999932],[111.47985080000007,-7.576874199999963],[111.47496030000008,-7.5851393],[111.47452550000008,-7.588129],[111.47679140000008,-7.593005199999936],[111.471344,-7.602034599999968],[111.47287560000007,-7.6024688],[111.47320540000004,-7.6067642],[111.47458740000008,-7.608007799999939],[111.47051660000005,-7.609015799999952],[111.46883660000009,-7.614514899999961],[111.46298310000009,-7.616117499999973],[111.45807160000004,-7.619531599999959],[111.45501070000006,-7.619288099999949],[111.454667,-7.6248719],[111.45796580000007,-7.6253637],[111.46225740000006,-7.629564799999969],[111.466404,-7.636906499999952],[111.48303990000005,-7.6394606],[111.48474880000003,-7.640825699999937],[111.48500060000003,-7.647544399999958],[111.48172010000008,-7.660696899999948],[111.48403710000008,-7.662795],[111.49053950000007,-7.657998499999962],[111.49557490000007,-7.6586713],[111.5,-7.656697699999938],[111.50234220000004,-7.651695699999948],[111.50585170000005,-7.648816099999976],[111.511674,-7.648936299999946],[111.51125930000006,-7.635243699999933],[111.508224,-7.636577899999963],[111.50739710000005,-7.640987799999948],[111.50322140000009,-7.639244599999927],[111.49975510000007,-7.639556],[111.49915360000006,-7.640774599999929],[111.49601980000006,-7.638004],[111.50042160000004,-7.626262399999973],[111.49802670000008,-7.625673],[111.49866560000004,-7.623268],[111.500278,-7.623289499999942],[111.50237760000005,-7.619964299999936],[111.50046540000005,-7.611309899999981],[111.50111060000006,-7.606401],[111.51172750000006,-7.608152899999936],[111.51380120000005,-7.606187899999952],[111.51358680000004,-7.603006299999947],[111.51757270000007,-7.603036799999927],[111.51819190000003,-7.599786199999926],[111.52115560000004,-7.5973495],[111.53121320000008,-7.600181],[111.53371720000007,-7.598503199999925],[111.53409570000008,-7.600267799999926],[111.53189250000008,-7.600933099999963],[111.53261920000006,-7.6027476],[111.53475980000007,-7.602069],[111.53666860000004,-7.599026],[111.53900770000007,-7.6013342],[111.54027890000009,-7.599251799999934],[111.54594420000006,-7.5993618],[111.55126380000007,-7.594821799999977],[111.55899960000005,-7.596533299999976],[111.55731460000004,-7.604027],[111.55860120000006,-7.608204799999953],[111.55676230000006,-7.613726799999938],[111.55527830000005,-7.613554199999953],[111.554651,-7.616013099999975],[111.55314510000005,-7.614108499999929],[111.55213620000006,-7.6217874],[111.54833440000004,-7.626633],[111.55103160000004,-7.628073499999971],[111.55303480000003,-7.6264297],[111.554239,-7.628228399999955],[111.55246890000006,-7.629331699999966],[111.55322460000008,-7.633652499999926],[111.55081770000004,-7.634081499999979],[111.55023450000004,-7.635887399999945],[111.55139060000005,-7.642032099999938],[111.54924570000009,-7.6456379],[111.54621810000003,-7.646287499999971],[111.54596220000008,-7.647600099999977],[111.53974110000007,-7.646258599999953],[111.53901130000008,-7.648385899999937],[111.538759,-7.651132599999926],[111.54150610000005,-7.651810599999976],[111.54170650000009,-7.659029],[111.53332320000004,-7.660216499999933],[111.53288330000004,-7.663309099999935],[111.52800390000004,-7.6642215],[111.51971410000004,-7.661646599999926],[111.51510620000005,-7.662032599999975],[111.51098210000004,-7.659417799999972],[111.510849,-7.661349299999927],[111.50799560000007,-7.662162299999977],[111.50659180000008,-7.667056099999968],[111.49860710000007,-7.674285299999951],[111.50261690000008,-7.687818499999935],[111.49861910000004,-7.699371299999939],[111.49603270000006,-7.7013874],[111.49032590000007,-7.701056499999936],[111.48664860000008,-7.704166399999963],[111.48325350000005,-7.703714799999943],[111.47857670000008,-7.708751699999937],[111.47336580000007,-7.711778599999946],[111.46844810000005,-7.719562699999926],[111.46319580000005,-7.719916799999964],[111.458641,-7.72512],[111.45561220000008,-7.738622699999951],[111.45688650000005,-7.746057099999973],[111.45523070000007,-7.74652],[111.45228570000006,-7.752865299999939],[111.45555880000006,-7.755671899999982],[111.45269770000004,-7.7590756],[111.45372010000006,-7.761027799999965],[111.45163720000005,-7.765001699999971],[111.45314790000003,-7.768705299999965],[111.45030210000004,-7.7697262],[111.45186610000007,-7.771784299999979],[111.44988340000003,-7.7789513],[111.45070650000008,-7.781229399999972],[111.45535280000007,-7.784078499999964],[111.45787810000007,-7.778810499999963],[111.46045680000009,-7.779670199999941],[111.46924590000003,-7.777153399999975],[111.47415160000008,-7.779311599999971],[111.4756,-7.782835199999965],[111.479826,-7.785201499999971],[111.48913440000007,-7.7888171],[111.49478290000008,-7.789129599999967],[111.49748860000005,-7.794923099999949],[111.50540920000009,-7.796670899999981],[111.50862120000005,-7.799405],[111.51207730000004,-7.798623499999962],[111.516983,-7.800451199999941],[111.52232360000005,-7.799279199999944],[111.52370450000006,-7.801682399999947],[111.52930450000008,-7.803310799999963],[111.54735060000007,-7.803063599999973],[111.55072780000006,-7.804557699999975],[111.55026240000007,-7.799684],[111.55432890000009,-7.799191399999927],[111.55541230000006,-7.800364399999978],[111.55767820000005,-7.799906199999953],[111.55831150000006,-7.801780199999939],[111.57001490000005,-7.802087299999926],[111.57311250000004,-7.8049459],[111.58164210000007,-7.802314699999954],[111.58332060000004,-7.800018699999953],[111.59203330000008,-7.795452499999953],[111.59337610000006,-7.790537799999981],[111.60003660000007,-7.786701599999958],[111.60075620000003,-7.777713799999958],[111.60459070000007,-7.781286799999975],[111.60994090000008,-7.781609799999956],[111.61517330000004,-7.779368299999931],[111.61945340000005,-7.780238599999961],[111.62463380000008,-7.776678499999946],[111.62719730000003,-7.7771463],[111.62851710000007,-7.775521699999956],[111.63538530000005,-7.773787],[111.63776510000008,-7.774498599999959],[111.64156340000005,-7.770835799999929],[111.65274810000005,-7.772952],[111.65779110000005,-7.767342499999927],[111.66140750000005,-7.766943899999944],[111.66911310000006,-7.769035799999926],[111.67789460000006,-7.774439799999925],[111.67823030000005,-7.7779078],[111.67507170000005,-7.782633699999963],[111.67599480000007,-7.784358899999972],[111.69061280000005,-7.791360299999951],[111.69549560000007,-7.8012309],[111.69306180000007,-7.807944199999952],[111.70020290000008,-7.8120818],[111.71050260000004,-7.814084],[111.72084810000007,-7.813477899999953],[111.72362510000005,-7.811488099999963],[111.72670740000007,-7.805761299999972],[111.73281090000006,-7.801266099999964],[111.74765770000005,-7.803871599999979],[111.75218960000007,-7.801013399999931],[111.74272150000007,-7.791083299999968],[111.73704520000007,-7.788277599999958],[111.72811130000008,-7.779311099999973],[111.72576140000007,-7.773624799999936],[111.72695160000006,-7.759254399999975],[111.72983550000004,-7.754583299999979],[111.73092650000007,-7.744956899999977],[111.72921750000006,-7.740620099999944],[111.73091120000004,-7.732038],[111.73256680000009,-7.7302346],[111.733551,-7.725103799999943],[111.74144740000008,-7.717586499999925],[111.74179840000005,-7.714462199999957],[111.74594110000004,-7.712189599999931],[111.74961850000005,-7.706556699999965],[111.75263210000008,-7.70547],[111.75234220000004,-7.703516899999954],[111.75415040000007,-7.702808799999957],[111.75750730000004,-7.693361699999969],[111.75752250000005,-7.689560799999981],[111.75582120000007,-7.688899499999934],[111.75701140000007,-7.6815862],[111.762146,-7.678124399999945],[111.76228330000004,-7.675475099999971],[111.766716,-7.671265499999947],[111.76893610000008,-7.664538299999947],[111.77159120000005,-7.6653652],[111.77040860000005,-7.661710699999958],[111.77295680000009,-7.660754099999963],[111.77765650000003,-7.655317299999979],[111.77881620000005,-7.655904699999951],[111.78093720000004,-7.651284199999964],[111.78293610000009,-7.650435899999934],[111.78120420000005,-7.648294899999939],[111.78372950000005,-7.647425099999964],[111.78359220000004,-7.6398348],[111.78488920000007,-7.638598399999978],[111.78484340000006,-7.635456499999975],[111.78625490000007,-7.635559],[111.78460690000009,-7.634124199999974],[111.78408810000008,-7.6310329],[111.78572080000004,-7.629364899999928],[111.78433990000008,-7.626947799999925],[111.78544610000006,-7.622239499999978],[111.78938290000008,-7.620489099999929],[111.78846740000006,-7.617048699999941],[111.79000090000005,-7.614207199999953],[111.78571320000009,-7.603031099999953],[111.79087060000006,-7.596174699999949],[111.79232790000009,-7.5961212],[111.79203790000008,-7.5937395],[111.79457850000006,-7.58993],[111.79384610000005,-7.584118299999943],[111.79512020000004,-7.580144299999972],[111.79388430000006,-7.576506599999959],[111.79559320000004,-7.5743636],[111.794342,-7.574080899999956],[111.79573060000007,-7.570834099999956],[111.79871360000004,-7.569583799999975],[111.79785920000006,-7.567920599999979],[111.80152890000005,-7.556601899999976],[111.80418390000006,-7.554872499999931],[111.80211640000005,-7.548801399999945],[111.80446620000004,-7.547667899999965],[111.80419920000008,-7.545478799999955],[111.80664060000004,-7.543558099999927],[111.81416320000005,-7.5419702],[111.815773,-7.542798499999947],[111.81486960000007,-7.5449197],[111.81764,-7.5484906],[111.82531730000005,-7.544572799999969],[111.83148190000009,-7.548699299999953],[111.83396910000005,-7.548511],[111.839714,-7.538622299999929],[111.83941650000008,-7.534849599999973],[111.83558650000003,-7.531425899999931],[111.83750910000003,-7.530080699999928],[111.84007260000004,-7.520051899999942],[111.847496,-7.508078499999954],[111.84676360000009,-7.504624799999931],[111.84294890000007,-7.501037],[111.84453580000007,-7.500000399999976],[111.84249870000008,-7.497780299999931],[111.82705690000006,-7.496423199999981],[111.82176210000006,-7.492933199999925],[111.82032770000006,-7.487783899999954],[111.82031250000006,-7.478499399999976],[111.81807710000004,-7.473168799999939],[111.80609130000005,-7.463551],[111.800415,-7.461098099999958],[111.77372740000004,-7.469328799999971],[111.76731110000009,-7.468756599999949],[111.75727080000007,-7.461837199999934],[111.75112150000007,-7.459290399999929],[111.74629210000006,-7.454985099999931],[111.73731230000004,-7.450903799999935],[111.72718050000009,-7.448848699999928],[111.71670530000006,-7.443213899999932],[111.71086120000007,-7.436645899999974],[111.68453980000004,-7.416615899999954],[111.67121890000004,-7.4095425]],[[111.51173360000007,-7.674067199999968],[111.50981910000007,-7.679329299999949],[111.50762810000003,-7.680564299999958],[111.50795720000008,-7.677109299999927],[111.50581110000007,-7.676564199999973],[111.50698490000008,-7.672578599999952],[111.51173360000007,-7.674067199999968]]]},"properties":{"shapeName":"Madiun","shapeISO":"","shapeID":"22746128B64523290286482","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[110.43929290000005,-7.453609399999948],[110.43196110000008,-7.445827],[110.42491910000007,-7.434871599999951],[110.42419430000007,-7.429689399999972],[110.41434480000004,-7.416642599999932],[110.41323090000009,-7.407930299999975],[110.40527340000006,-7.389591199999927],[110.40618130000007,-7.384057499999926],[110.40518950000006,-7.378689699999939],[110.40664670000007,-7.376963099999955],[110.40420530000006,-7.374957099999961],[110.40361780000006,-7.365453699999932],[110.39747620000009,-7.357504799999958],[110.39070890000005,-7.353017799999975],[110.38508610000008,-7.352521899999942],[110.38153840000007,-7.354054899999937],[110.37929540000005,-7.346591699999976],[110.376774,-7.345368699999938],[110.37759760000006,-7.338373399999966],[110.37857510000003,-7.336652499999957],[110.38035550000006,-7.337678499999981],[110.37914280000007,-7.334552299999928],[110.37158210000007,-7.333382599999936],[110.36822510000007,-7.330786699999976],[110.36261750000006,-7.3311267],[110.35514070000005,-7.326165199999934],[110.34320830000007,-7.325928699999963],[110.33220670000009,-7.320459799999981],[110.32801820000009,-7.320250499999929],[110.32662960000005,-7.321257599999967],[110.326294,-7.327409699999976],[110.31953430000004,-7.331074199999932],[110.31915280000004,-7.336973199999932],[110.32212070000008,-7.337801],[110.32486730000005,-7.341312399999936],[110.31763460000008,-7.351204399999972],[110.31596380000008,-7.351463299999978],[110.31670380000008,-7.352604399999962],[110.30531310000003,-7.355882099999974],[110.30370330000005,-7.3578367],[110.30006410000004,-7.358685],[110.300293,-7.359781699999928],[110.296669,-7.359317699999963],[110.29408260000008,-7.361518799999942],[110.28655670000006,-7.364037799999949],[110.28388980000005,-7.366775],[110.28274540000007,-7.366207599999939],[110.28134920000008,-7.369307],[110.276619,-7.370873],[110.27632140000009,-7.372427399999935],[110.27148440000008,-7.374975199999938],[110.27037170000006,-7.379441],[110.26729670000009,-7.381232099999977],[110.26285550000006,-7.380932799999925],[110.25739290000007,-7.377395099999944],[110.25526470000005,-7.370933099999945],[110.249527,-7.369105299999944],[110.23642730000006,-7.372738799999979],[110.23484040000005,-7.378994399999954],[110.231781,-7.382142499999929],[110.22625730000004,-7.3833642],[110.22340390000005,-7.379038299999934],[110.224968,-7.386577099999954],[110.22241980000007,-7.391552399999966],[110.21640010000004,-7.395047599999941],[110.21511840000005,-7.402225499999929],[110.21328730000005,-7.397174299999961],[110.21629260000009,-7.388108799999941],[110.211853,-7.385492299999953],[110.20798490000004,-7.387387299999943],[110.20519260000009,-7.387106399999936],[110.20506810000006,-7.385670799999957],[110.20361880000007,-7.385767599999951],[110.20042410000008,-7.382358],[110.19278220000007,-7.379983299999935],[110.18951850000008,-7.381742399999951],[110.18910980000004,-7.383852],[110.18133550000005,-7.383735599999966],[110.17783360000004,-7.381101599999965],[110.17295070000006,-7.381120199999941],[110.15998080000008,-7.386076899999978],[110.14679720000004,-7.383592599999929],[110.14235690000004,-7.384894399999951],[110.13916020000005,-7.388498799999979],[110.12771610000004,-7.387120699999969],[110.12072760000007,-7.390310299999953],[110.09346830000004,-7.387827699999946],[110.07860570000008,-7.383388],[110.07420930000006,-7.385716299999956],[110.06267550000007,-7.408310399999948],[110.06269840000004,-7.413647599999933],[110.05865480000006,-7.428155899999979],[110.05962230000006,-7.434021399999949],[110.05309090000009,-7.435358],[110.05608240000004,-7.442438599999946],[110.05745580000007,-7.453052899999932],[110.06495670000004,-7.459512199999949],[110.05942450000003,-7.466626199999951],[110.05959520000005,-7.470217299999945],[110.05523030000006,-7.474124299999971],[110.05187990000007,-7.482523799999967],[110.05380960000008,-7.491906799999981],[110.04862980000007,-7.502614499999936],[110.05059160000008,-7.505444599999976],[110.05012450000004,-7.507398299999977],[110.04698180000008,-7.509683099999961],[110.04920970000006,-7.512668199999951],[110.04676820000009,-7.514067099999977],[110.04720980000008,-7.517943699999933],[110.04446360000009,-7.520065399999964],[110.04475410000003,-7.524821199999963],[110.04346470000007,-7.527492],[110.04503710000006,-7.528749499999947],[110.04372560000007,-7.530139399999939],[110.04570650000005,-7.531988399999932],[110.04480950000004,-7.533235],[110.04577940000007,-7.534505799999977],[110.04424110000008,-7.534788799999944],[110.04402160000006,-7.537713499999938],[110.04634860000004,-7.538913699999966],[110.052519,-7.548292799999956],[110.05104830000005,-7.551666199999943],[110.05353550000007,-7.552656099999979],[110.05536650000005,-7.556471299999941],[110.057167,-7.556398799999954],[110.05904390000006,-7.559321399999931],[110.05587770000005,-7.570329199999946],[110.05982210000008,-7.575688299999968],[110.06233070000008,-7.572137399999974],[110.06427770000005,-7.573353299999951],[110.06540160000009,-7.571152699999971],[110.06782720000007,-7.570983],[110.07555390000005,-7.5743403],[110.07749870000004,-7.576782499999979],[110.08059730000008,-7.5770423],[110.08711660000006,-7.572940699999947],[110.08976520000004,-7.568966299999943],[110.10035670000008,-7.569226499999957],[110.10113950000004,-7.570377199999939],[110.09898860000004,-7.571242799999936],[110.09788560000004,-7.574585899999931],[110.10161470000008,-7.579547199999979],[110.10315520000006,-7.577948699999979],[110.10721590000009,-7.5938563],[110.11160280000007,-7.600273099999981],[110.11527920000009,-7.602421199999981],[110.12023970000007,-7.608391499999925],[110.12239860000005,-7.620259399999952],[110.12137070000006,-7.623613699999964],[110.12581630000005,-7.631032399999981],[110.13200630000006,-7.634679399999925],[110.13955110000006,-7.644374199999959],[110.141861,-7.644966699999941],[110.14354640000005,-7.645204799999931],[110.14450720000008,-7.649651499999948],[110.14627440000004,-7.650055699999939],[110.14867,-7.647089299999948],[110.15142420000006,-7.646293399999934],[110.15992340000008,-7.645834699999966],[110.16154840000007,-7.648165499999948],[110.16283780000003,-7.646987699999954],[110.16563780000007,-7.648899399999948],[110.17738390000005,-7.648151],[110.192481,-7.6447824],[110.19665530000009,-7.648581499999977],[110.20531390000008,-7.651842399999964],[110.21370690000003,-7.6462746],[110.21296620000004,-7.647959599999979],[110.22086270000005,-7.649964199999943],[110.23332980000004,-7.650687699999935],[110.24037170000008,-7.654298299999937],[110.24504090000005,-7.651154],[110.24727630000007,-7.646505299999944],[110.25025940000006,-7.646078599999953],[110.25189970000008,-7.642385399999966],[110.25469210000006,-7.642083599999978],[110.26342770000008,-7.645752899999934],[110.26611330000009,-7.649898],[110.26377110000004,-7.652705199999957],[110.26461820000009,-7.655518799999982],[110.26296240000005,-7.660933],[110.26627350000007,-7.661986299999967],[110.26721950000007,-7.664339],[110.26519910000007,-7.668099799999936],[110.26583860000005,-7.6740742],[110.26303860000007,-7.678976],[110.26443290000009,-7.681492799999944],[110.26076510000007,-7.686051299999974],[110.26578520000004,-7.691018099999951],[110.26587680000006,-7.694050299999958],[110.26849270000008,-7.696896899999956],[110.27072910000004,-7.703005699999949],[110.27043490000005,-7.705739899999969],[110.27267460000007,-7.706691699999965],[110.272644,-7.704882099999963],[110.27404790000008,-7.704425799999967],[110.27365110000005,-7.701305799999943],[110.28465270000004,-7.687128],[110.28659060000007,-7.680441299999927],[110.29131320000005,-7.672366099999977],[110.29974370000008,-7.664659],[110.3041,-7.654914399999939],[110.32265470000004,-7.645204099999944],[110.32495880000005,-7.642026399999963],[110.33271790000003,-7.637247499999944],[110.33804320000007,-7.630496499999936],[110.34487150000007,-7.626125299999956],[110.35501860000005,-7.622571899999969],[110.36512770000007,-7.615106599999933],[110.367073,-7.6121659],[110.37604520000008,-7.6066255],[110.37954710000008,-7.601124299999981],[110.38482670000008,-7.599962699999935],[110.38555910000008,-7.598069199999941],[110.38821410000008,-7.597523599999931],[110.39097590000006,-7.594924399999968],[110.38999180000008,-7.592373799999962],[110.39638520000005,-7.589157099999966],[110.40015410000007,-7.5847067],[110.40150450000004,-7.579478699999981],[110.41421510000004,-7.564870799999937],[110.41596980000008,-7.561164299999973],[110.42076110000005,-7.557508899999959],[110.42475890000009,-7.556634899999949],[110.430687,-7.55093],[110.44414520000004,-7.544238099999973],[110.44607540000004,-7.5418973],[110.43983460000004,-7.536878099999967],[110.42942810000005,-7.532286099999965],[110.42673490000004,-7.529259199999956],[110.40523530000007,-7.517093199999977],[110.38717560000003,-7.513356499999929],[110.38081360000007,-7.514340899999979],[110.38005670000007,-7.5117463],[110.38937380000004,-7.506820699999935],[110.39396670000008,-7.500298899999962],[110.39529420000008,-7.500715699999944],[110.39571380000007,-7.498441199999945],[110.40219880000006,-7.499002899999937],[110.40627740000008,-7.4973855],[110.40826420000008,-7.4991412],[110.41098020000004,-7.496762699999977],[110.41387180000004,-7.497133199999951],[110.42669680000006,-7.485817399999974],[110.43312070000007,-7.477849499999934],[110.43530280000004,-7.469425199999932],[110.43430330000007,-7.4648485],[110.43929290000005,-7.453609399999948]],[[110.22557830000005,-7.437707399999965],[110.22809850000004,-7.438407799999936],[110.22737120000005,-7.442626399999938],[110.23094180000004,-7.445650099999966],[110.22783660000005,-7.449327399999959],[110.22825570000003,-7.453547],[110.23005680000006,-7.455341799999928],[110.22873690000006,-7.457100899999944],[110.23012540000008,-7.461054299999944],[110.22863770000004,-7.4609985],[110.22875210000007,-7.464214299999981],[110.22737120000005,-7.465330599999959],[110.22885130000009,-7.465862199999947],[110.22732540000004,-7.466367199999979],[110.23175810000004,-7.477330599999959],[110.23332210000007,-7.4782924],[110.23276520000007,-7.479356299999949],[110.23468020000007,-7.480174],[110.23447420000008,-7.483157099999971],[110.23637390000005,-7.4840803],[110.235252,-7.485699099999977],[110.23714450000006,-7.488194899999939],[110.23556350000007,-7.489472599999942],[110.23737340000008,-7.493557399999929],[110.23358920000004,-7.499504499999944],[110.23796080000005,-7.505313399999977],[110.224205,-7.503138499999977],[110.22052480000008,-7.505362399999967],[110.22179370000003,-7.503702299999929],[110.21956350000005,-7.502667699999961],[110.22033190000008,-7.501438899999926],[110.21819980000004,-7.501435099999981],[110.21562270000004,-7.507459599999947],[110.21440890000008,-7.507424299999968],[110.21284420000006,-7.506933699999934],[110.21426310000004,-7.504653],[110.21017260000008,-7.5007226],[110.20665130000003,-7.504044],[110.20406340000005,-7.502532899999949],[110.20193480000006,-7.498651499999937],[110.20609280000008,-7.492179399999941],[110.20288090000008,-7.492506499999934],[110.20151520000007,-7.490580499999965],[110.20437560000005,-7.488346199999967],[110.20764580000008,-7.481817199999966],[110.20607,-7.479667199999938],[110.20629880000007,-7.476802299999974],[110.20829610000004,-7.476573499999972],[110.20988040000009,-7.474056399999938],[110.20879190000005,-7.471403499999951],[110.21189660000005,-7.462306399999932],[110.209977,-7.4598061],[110.21204890000007,-7.455727],[110.21173860000005,-7.453208899999936],[110.213888,-7.451393199999927],[110.21178090000006,-7.446691699999974],[110.21627120000005,-7.4435931],[110.21884670000009,-7.444187499999941],[110.21774280000005,-7.441457399999933],[110.219223,-7.438693499999943],[110.22557830000005,-7.437707399999965]]]},"properties":{"shapeName":"Magelang","shapeISO":"","shapeID":"22746128B67905952657611","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[111.18186190000006,-7.712306699999942],[111.18867490000008,-7.713503299999957],[111.19132990000008,-7.712368899999944],[111.201416,-7.721151299999974],[111.20725250000004,-7.721061199999951],[111.21386720000004,-7.722965699999975],[111.21555330000007,-7.7273378],[111.213623,-7.733379299999967],[111.21552270000007,-7.735041099999933],[111.21572870000006,-7.737803],[111.22484590000005,-7.740873299999976],[111.22750860000008,-7.745336499999951],[111.233078,-7.746522399999947],[111.23864740000005,-7.751138599999933],[111.24363710000006,-7.741528499999959],[111.24908450000004,-7.741957199999945],[111.25213620000005,-7.746804199999929],[111.25446320000009,-7.745745599999964],[111.25962830000009,-7.746790799999928],[111.26047510000006,-7.743937],[111.26523590000005,-7.744166299999961],[111.26702110000008,-7.743289],[111.26650230000007,-7.741561799999943],[111.27074430000005,-7.739772799999969],[111.273201,-7.741086399999972],[111.271286,-7.736852599999963],[111.27454370000004,-7.734913799999958],[111.28330230000006,-7.738294599999961],[111.28682710000004,-7.742975199999933],[111.29013060000005,-7.742869799999937],[111.28907780000009,-7.75],[111.28512570000004,-7.754388799999958],[111.28607180000006,-7.755549899999949],[111.29096220000008,-7.755057799999975],[111.29353330000004,-7.757160099999965],[111.29355620000007,-7.760667799999965],[111.28462980000006,-7.777730399999939],[111.28305050000006,-7.782261799999958],[111.28333280000004,-7.787148399999978],[111.28070830000007,-7.788888899999961],[111.28344720000007,-7.788371499999926],[111.28276820000008,-7.789781499999947],[111.28559870000004,-7.794152699999927],[111.28992460000006,-7.794013],[111.29611210000007,-7.794205699999964],[111.30095670000009,-7.797123399999975],[111.30541230000006,-7.796919799999955],[111.31483160000005,-7.792217599999958],[111.31864330000008,-7.786402099999975],[111.32042,-7.78778],[111.32432,-7.78733],[111.32773190000006,-7.788803299999927],[111.33092110000007,-7.787209899999937],[111.33789,-7.789293],[111.34196470000006,-7.7836804],[111.343666,-7.783323699999926],[111.364212,-7.783995199999936],[111.42793270000004,-7.775977099999977],[111.43508150000008,-7.776477299999954],[111.442688,-7.7791586],[111.44988340000003,-7.7789513],[111.45186610000007,-7.771784299999979],[111.45030210000004,-7.7697262],[111.45314790000003,-7.768705299999965],[111.45163720000005,-7.765001699999971],[111.45372010000006,-7.761027799999965],[111.45269770000004,-7.7590756],[111.45555880000006,-7.755671899999982],[111.45228570000006,-7.752865299999939],[111.45523070000007,-7.74652],[111.45688650000005,-7.746057099999973],[111.45561220000008,-7.738622699999951],[111.458641,-7.72512],[111.46319580000005,-7.719916799999964],[111.46844810000005,-7.719562699999926],[111.47336580000007,-7.711778599999946],[111.47857670000008,-7.708751699999937],[111.48325350000005,-7.703714799999943],[111.48664860000008,-7.704166399999963],[111.49032590000007,-7.701056499999936],[111.49603270000006,-7.7013874],[111.49861910000004,-7.699371299999939],[111.50261690000008,-7.687818499999935],[111.49860710000007,-7.674285299999951],[111.50659180000008,-7.667056099999968],[111.50799560000007,-7.662162299999977],[111.510849,-7.661349299999927],[111.51098210000004,-7.659417799999972],[111.50992250000007,-7.657659],[111.51234430000005,-7.65245],[111.511674,-7.648936299999946],[111.50585170000005,-7.648816099999976],[111.50234220000004,-7.651695699999948],[111.5,-7.656697699999938],[111.49557490000007,-7.6586713],[111.49053950000007,-7.657998499999962],[111.48403710000008,-7.662795],[111.48172010000008,-7.660696899999948],[111.48500060000003,-7.647544399999958],[111.48474880000003,-7.640825699999937],[111.48303990000005,-7.6394606],[111.466404,-7.636906499999952],[111.46225740000006,-7.629564799999969],[111.45796580000007,-7.6253637],[111.454667,-7.6248719],[111.45501070000006,-7.619288099999949],[111.45807160000004,-7.619531599999959],[111.46298310000009,-7.616117499999973],[111.46883660000009,-7.614514899999961],[111.47051660000005,-7.609015799999952],[111.47458740000008,-7.608007799999939],[111.47320540000004,-7.6067642],[111.47287560000007,-7.6024688],[111.471344,-7.602034599999968],[111.47679140000008,-7.593005199999936],[111.47452550000008,-7.588129],[111.47496030000008,-7.5851393],[111.47985080000007,-7.576874199999963],[111.48255920000008,-7.576864199999932],[111.48300170000005,-7.575470899999971],[111.48493190000005,-7.576090299999976],[111.48483040000008,-7.572106499999961],[111.48928830000006,-7.562880499999949],[111.49972430000008,-7.564996399999927],[111.50004580000007,-7.558542699999975],[111.50437370000009,-7.551999299999977],[111.51276120000006,-7.551790899999958],[111.51248930000008,-7.549561499999982],[111.50717930000008,-7.545955699999979],[111.509566,-7.537483899999927],[111.50823210000004,-7.5368948],[111.50827790000005,-7.534082399999932],[111.51194,-7.523572899999976],[111.50967410000004,-7.522714599999972],[111.50192260000006,-7.514319899999975],[111.49659680000008,-7.514243199999953],[111.49354930000004,-7.515662499999962],[111.48804680000006,-7.5145825],[111.48555410000006,-7.516283699999974],[111.47718050000009,-7.515872899999977],[111.46713250000005,-7.5098781],[111.462087,-7.509844199999975],[111.46021270000006,-7.517624799999965],[111.45227050000005,-7.5151825],[111.44827270000008,-7.515754199999947],[111.44786830000004,-7.5174565],[111.44413740000005,-7.517385799999943],[111.43772130000008,-7.520563099999947],[111.43221280000006,-7.527697099999955],[111.42334750000003,-7.530991599999936],[111.41121670000007,-7.537911899999926],[111.39464570000007,-7.541281699999956],[111.38128340000009,-7.539666299999965],[111.37940980000008,-7.541281599999934],[111.37873850000005,-7.546048399999961],[111.37371070000006,-7.546952399999952],[111.37163680000003,-7.552574],[111.36919080000007,-7.554106099999956],[111.37020110000009,-7.558269899999971],[111.37198640000008,-7.559681399999931],[111.37332920000006,-7.5584983],[111.37408030000006,-7.560547799999938],[111.37126210000008,-7.5634],[111.37105590000004,-7.569662699999981],[111.36922210000006,-7.569242],[111.367778,-7.570967199999927],[111.36661370000007,-7.570018299999958],[111.354393,-7.570409299999938],[111.35320280000008,-7.572762399999931],[111.34450530000004,-7.576645799999937],[111.339302,-7.577217],[111.33015440000008,-7.581753699999979],[111.33007290000006,-7.584113199999933],[111.32650660000007,-7.585540599999945],[111.32701480000009,-7.586572199999978],[111.31555940000004,-7.589071199999978],[111.31608580000005,-7.585849199999927],[111.31423190000004,-7.583141799999964],[111.310997,-7.585142599999926],[111.301506,-7.586820099999954],[111.29913320000009,-7.590019899999959],[111.29880450000007,-7.594532799999968],[111.29214780000007,-7.596338],[111.29278420000009,-7.5999923],[111.296118,-7.599304699999948],[111.294281,-7.6021552],[111.29110720000006,-7.603694899999937],[111.28899210000009,-7.602926699999955],[111.28865220000006,-7.605162499999949],[111.28618,-7.6062],[111.283241,-7.607330199999979],[111.28357110000007,-7.603664399999957],[111.27502440000006,-7.603426899999931],[111.27561190000006,-7.601706899999954],[111.27391810000006,-7.6004881],[111.26497650000005,-7.5986504],[111.26106260000006,-7.599774799999977],[111.26062770000004,-7.598326199999974],[111.25917050000004,-7.59837],[111.25582880000007,-7.599442],[111.25294490000005,-7.6031995],[111.24899290000008,-7.600262099999952],[111.231987,-7.609924799999931],[111.22689820000005,-7.609483199999943],[111.21696470000006,-7.614441399999976],[111.19979090000004,-7.6160097],[111.19449190000006,-7.620408299999951],[111.19429010000005,-7.629092599999979],[111.18991090000009,-7.635812199999975],[111.18865970000007,-7.642529899999943],[111.18964380000006,-7.648923399999944],[111.18756860000008,-7.656320099999959],[111.18852990000005,-7.668430299999955],[111.19220730000006,-7.673207699999978],[111.19059750000008,-7.676073],[111.18917840000006,-7.686008899999933],[111.181984,-7.693176199999925],[111.18411250000008,-7.699890599999947],[111.18186190000006,-7.712306699999942]]]},"properties":{"shapeName":"Magetan","shapeISO":"","shapeID":"22746128B88853026857675","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[115.304561,-0.036907099999951],[115.33178370000007,-0.0247046],[115.33618180000008,-0.016348199999925],[115.34852940000007,-0.002765899999929],[115.35223370000006,0.007112200000051],[115.37445940000009,0.031807400000048],[115.37692890000005,0.031807400000048],[115.38186790000009,0.024398800000029],[115.38804170000003,0.021929300000068],[115.39545020000003,0.01945980000005],[115.40532830000006,0.020694500000047],[115.4152064000001,0.025633600000049],[115.4152064000001,0.033042100000046],[115.44113630000004,0.041685400000063],[115.44360580000011,0.051563500000043],[115.44237110000006,0.067615400000022],[115.45348390000004,0.088606200000072],[115.45101440000008,0.097249500000032],[115.45101440000008,0.107127600000069],[115.46583150000004,0.124414200000047],[115.47200520000001,0.137996600000065],[115.47447480000005,0.137996600000065],[115.478179,0.140466100000026],[115.48558760000003,0.134292300000027],[115.504109,0.135527100000047],[115.51645650000012,0.134292300000027],[115.53497790000006,0.139231300000063],[115.57819440000003,0.140466100000026],[115.61523720000002,0.151578900000061],[115.65227990000005,0.144170400000064],[115.67450560000009,0.145405100000062],[115.68561840000007,0.15651790000004],[115.6992007,0.154048400000022],[115.71895690000008,0.147874600000023],[115.75353010000003,0.149109400000043],[115.76093870000011,0.154048400000022],[115.769582,0.149109400000043],[115.77699050000001,0.149109400000043],[115.78563380000003,0.154048400000022],[115.79180760000008,0.160222200000021],[115.80292040000006,0.166396],[115.8053900000001,0.176274100000057],[115.7967466,0.184917400000074],[115.80724280000004,0.194459400000028],[115.8085463000001,0.192286800000034],[115.82051530000001,0.195478500000036],[115.805683,0.260254],[115.788123,0.298222],[115.788511,0.300755],[115.783376,0.30105],[115.7707630000001,0.305785],[115.760879,0.318484],[115.760022,0.331637],[115.763055,0.345425],[115.774953,0.373612],[115.781978,0.404605],[115.781797,0.425863],[115.764852,0.448825],[115.66995,0.535993],[115.63646710000012,0.556700100000057],[115.64996350000001,0.576945400000056],[115.65333550000003,0.603939],[115.6423387000001,0.61688950000007],[115.62628,0.620212],[115.620289,0.624975],[115.610453,0.623732],[115.600092,0.626037],[115.587757,0.634654],[115.578739,0.643685],[115.572482,0.65428],[115.519984,0.718157],[115.508552,0.734761],[115.481184,0.755229],[115.46609300000011,0.771424],[115.46361600000012,0.782999],[115.461992,0.807475],[115.4627650000001,0.823007],[115.465424,0.834401],[115.48559300000011,0.866366],[115.509247,0.911612400000024],[115.5166243000001,0.935690800000032],[115.51981930000011,0.953134800000043],[115.52498530000003,1.025748800000031],[115.5258583000001,1.057849800000042],[115.5221643000001,1.081210800000065],[115.5208583000001,1.103740800000026],[115.51743230000011,1.121383800000046],[115.50345430000004,1.16179180000006],[115.49118830000009,1.18446380000006],[115.47916530000009,1.199590800000067],[115.47581030000003,1.213804800000048],[115.48888330000011,1.226891800000033],[115.4951003000001,1.230810800000029],[115.4992813,1.236241800000073],[115.50548730000003,1.248160800000051],[115.50277420000009,1.256352500000048],[115.50434370000005,1.25707680000005],[115.491684,1.254236900000024],[115.46389480000005,1.239419800000064],[115.43637460000002,1.228549],[115.43029050000007,1.223983100000055],[115.426326,1.218518],[115.4211874,1.20757750000007],[115.41966410000009,1.195157900000027],[115.41753470000003,1.192466800000034],[115.4112004000001,1.193055600000037],[115.40816450000011,1.190328400000055],[115.40690790000008,1.184817500000065],[115.40633790000004,1.172765900000059],[115.40907320000008,1.165752300000065],[115.41542190000007,1.160293100000047],[115.41905470000006,1.148184600000036],[115.41815040000006,1.14397740000004],[115.4102765,1.140003300000046],[115.40844160000006,1.136992400000054],[115.41088370000011,1.127715400000056],[115.40208340000004,1.117069400000048],[115.40150890000007,1.112601700000027],[115.39823820000004,1.108713200000068],[115.3938961,1.105001800000025],[115.38296050000008,1.102874800000052],[115.37844160000009,1.099530700000059],[115.37328330000003,1.081362400000046],[115.37086010000007,1.077711400000055],[115.37147530000004,1.071976500000062],[115.3687460000001,1.068301700000063],[115.364521,1.065893900000049],[115.360283,1.065915400000051],[115.3578827,1.063473100000067],[115.3476538000001,1.06134650000007],[115.32459170000004,1.06229380000002],[115.31663540000011,1.059374600000069],[115.29964550000011,1.064804],[115.29386190000002,1.049681300000032],[115.290461,1.047582100000056],[115.27387490000001,1.047039700000028],[115.269355,1.046302600000047],[115.2657425000001,1.043729400000075],[115.26268990000005,1.044554800000071],[115.25983110000004,1.047541400000057],[115.24957820000009,1.047144700000047],[115.24104180000006,1.050824800000044],[115.23000780000007,1.058176600000024],[115.22412230000009,1.057699300000024],[115.21511580000004,1.06024160000004],[115.20031820000008,1.061927300000036],[115.18553020000002,1.067653200000052],[115.18438420000007,1.074773500000049],[115.18678310000007,1.07887450000004],[115.18610990000002,1.082748500000037],[115.18979130000002,1.08781],[115.18659800000012,1.093246500000021],[115.1861004000001,1.09862540000006],[115.18270780000012,1.102628100000061],[115.17785730000003,1.103786300000024],[115.1755558000001,1.113702],[115.17354150000006,1.116034900000045],[115.15122130000009,1.119148800000062],[115.14734870000007,1.118850100000031],[115.14195930000005,1.116026800000043],[115.13495140000009,1.122621700000025],[115.1229052000001,1.129402900000059],[115.1186441000001,1.129376400000069],[115.111197,1.123364600000059],[115.10608990000003,1.121110200000032],[115.083627,1.115986100000043],[115.07964790000005,1.116008600000043],[115.0768021,1.119993],[115.07054070000004,1.119993],[115.06035760000009,1.122818100000075],[115.04545270000006,1.115960800000039],[115.04009420000011,1.115718500000071],[115.02672660000007,1.120273],[115.0156455,1.120785300000023],[115.01000080000006,1.123311200000046],[115.00679720000005,1.127342200000044],[115.00028390000011,1.151838800000064],[114.9993981,1.153279200000043],[114.99086950000003,1.153809400000057],[114.989145,1.157273500000031],[114.99028360000011,1.182889600000067],[114.98857580000004,1.186304800000073],[114.97957570000005,1.192790700000046],[114.97432220000007,1.193235300000026],[114.95043950000002,1.181466700000044],[114.9358797000001,1.178110900000036],[114.93138480000005,1.179706],[114.92622560000007,1.183965100000023],[114.9191485,1.194321900000034],[114.91401070000006,1.198827300000062],[114.89608080000005,1.209357500000067],[114.8851701000001,1.212264400000038],[114.8804278,1.210780500000055],[114.87033620000011,1.201089800000034],[114.86360160000004,1.197513600000036],[114.85852110000008,1.192360200000053],[114.85168320000002,1.168375],[114.848268,1.16809040000004],[114.83981230000006,1.172447700000021],[114.8289152000001,1.182605100000046],[114.80956240000012,1.193135300000051],[114.79675530000009,1.204234700000029],[114.77740250000011,1.22785650000003],[114.7581963,1.244708],[114.75679670000011,1.247707],[114.75845660000005,1.251317],[114.75776510000003,1.254893500000037],[114.75036550000004,1.256601100000069],[114.73300490000008,1.26428530000004],[114.72731290000002,1.264000700000054],[114.71735190000004,1.272823300000027],[114.71592890000011,1.278230700000051],[114.72074730000008,1.290630300000032],[114.72019790000002,1.295876],[114.72310820000007,1.300344800000062],[114.72558480000009,1.310535300000026],[114.71709070000009,1.324574],[114.71454690000007,1.332488],[114.7103072000001,1.335879700000021],[114.70408910000003,1.337010300000031],[114.70154530000002,1.342945800000052],[114.69984940000006,1.353968800000075],[114.69674040000007,1.35651260000003],[114.6925007000001,1.358773800000051],[114.68854370000008,1.359056400000043],[114.68373880000001,1.35623],[114.68147760000011,1.35283830000003],[114.67243310000003,1.35283830000003],[114.66137890000005,1.363960800000029],[114.65774380000005,1.370682800000054],[114.65350150000006,1.37385960000006],[114.65369590000012,1.379733500000043],[114.63922240000011,1.381078800000068],[114.63843870000005,1.385643],[114.6461925000001,1.394769600000075],[114.64303970000003,1.398823600000071],[114.64641180000001,1.408794100000023],[114.64299430000005,1.411767800000064],[114.63516530000004,1.410040400000071],[114.63899420000007,1.42151],[114.6366382000001,1.424256100000036],[114.63470830000006,1.43139270000006],[114.61989050000011,1.435710400000062],[114.6188575000001,1.437879600000031],[114.61152850000008,1.442113900000038],[114.60400590000006,1.44423050000006],[114.60004120000008,1.449672900000053],[114.59950190000006,1.456088600000044],[114.58958660000008,1.463283700000034],[114.58989980000001,1.458870700000034],[114.58779930000003,1.456406700000059],[114.58546680000006,1.445442200000059],[114.57554470000002,1.442463300000043],[114.57021060000011,1.43516690000007],[114.56967840000004,1.429378400000076],[114.5652907000001,1.426056100000039],[114.563206,1.43314840000005],[114.55849020000005,1.435546200000033],[114.55423770000004,1.434122800000068],[114.55253020000009,1.436661800000024],[114.53928330000008,1.437416],[114.53197060000002,1.441832900000065],[114.526002,1.442845100000056],[114.524618,1.446953700000051],[114.51667350000002,1.452529500000026],[114.51605830000005,1.455406500000038],[114.51264820000006,1.459387900000024],[114.51309990000004,1.460622],[114.50976560000004,1.463301],[114.49830490000011,1.463906],[114.49255480000011,1.466575],[114.4913213000001,1.469153700000049],[114.48425480000003,1.473862800000063],[114.47987010000008,1.472597900000039],[114.47253350000005,1.475145800000064],[114.46262820000004,1.48512160000007],[114.45880120000004,1.487132900000063],[114.4537616,1.486885700000073],[114.4431502000001,1.495620100000053],[114.43601920000003,1.498373300000026],[114.43363760000011,1.501626100000067],[114.42540290000011,1.504872600000056],[114.42210050000006,1.510314200000039],[114.41429770000002,1.511445200000026],[114.41179390000002,1.519122800000048],[114.40821740000001,1.521000400000048],[114.40758630000005,1.52280520000005],[114.40540750000002,1.522913600000038],[114.40335440000001,1.520590100000049],[114.40115780000008,1.520243200000039],[114.39990650000004,1.521562900000049],[114.39190480000002,1.520558300000062],[114.38461020000011,1.516563],[114.38744450000002,1.51403380000005],[114.38648960000012,1.501517400000068],[114.38091920000011,1.4967],[114.38086720000001,1.494309600000065],[114.37914580000006,1.492941700000074],[114.37354040000002,1.494204100000047],[114.36747780000007,1.492932],[114.36440630000004,1.488667600000042],[114.35843150000005,1.488257100000055],[114.35347410000008,1.490400300000033],[114.34990980000009,1.487396900000022],[114.3366602000001,1.485842400000024],[114.33267290000003,1.484157800000048],[114.33128080000006,1.483177],[114.33147910000002,1.48052610000002],[114.32762520000006,1.477528800000073],[114.32674640000005,1.478208500000051],[114.32286220000003,1.475842100000023],[114.31914350000011,1.476239],[114.31505960000004,1.473748700000044],[114.30716590000009,1.471890200000075],[114.30327220000004,1.467750200000069],[114.30157290000011,1.460816],[114.29910660000007,1.457191900000055],[114.292563,1.457382400000029],[114.28222130000006,1.45260090000005],[114.27537330000007,1.452575300000035],[114.26935930000002,1.450166700000068],[114.26641110000003,1.451672100000053],[114.26197550000006,1.451770400000044],[114.259527,1.450347200000067],[114.2510850000001,1.451401],[114.2496777,1.452655400000026],[114.242049,1.44762],[114.23831920000009,1.448275800000033],[114.23664050000002,1.444264400000066],[114.23741310000003,1.438480600000048],[114.23524010000006,1.438469300000065],[114.22881230000007,1.429784700000027],[114.22278190000009,1.425518900000043],[114.22299070000008,1.416542800000059],[114.21097480000003,1.410983300000055],[114.20538780000004,1.410366700000054],[114.19964330000005,1.402906600000051],[114.19765660000007,1.396900200000061],[114.19053890000009,1.395096400000057],[114.1872446000001,1.396126300000049],[114.17874760000007,1.394646600000044],[114.16565440000011,1.381546400000047],[114.16629010000008,1.375603300000023],[114.16907160000005,1.369966100000056],[114.17692550000004,1.367675700000063],[114.17930780000006,1.365903100000025],[114.18025650000004,1.362976100000026],[114.18907620000004,1.362099200000046],[114.19060230000002,1.359234700000059],[114.1889000000001,1.352646100000072],[114.19552740000006,1.346496200000047],[114.19984350000004,1.349603],[114.2036508000001,1.349015800000075],[114.20568720000006,1.347461],[114.2071476000001,1.341961200000071],[114.20918670000003,1.333904200000063],[114.20690030000003,1.32653],[114.20856440000011,1.324264500000027],[114.2087772000001,1.309747200000061],[114.21052840000004,1.305988500000069],[114.19632230000002,1.298800200000073],[114.194778,1.294136800000047],[114.19692830000008,1.289519400000074],[114.19626830000004,1.285379800000044],[114.18799120000006,1.280555],[114.1870037000001,1.268840100000034],[114.1923389000001,1.262736],[114.1921039,1.259218],[114.19440920000011,1.254675100000043],[114.20520310000006,1.241765200000032],[114.20780150000007,1.236122600000044],[114.2089734000001,1.218527100000074],[114.20770560000005,1.216154800000027],[114.20335360000001,1.21564520000004],[114.2011748000001,1.213959300000056],[114.20026970000004,1.211769700000048],[114.19775670000001,1.195953200000019],[114.19892840000011,1.191540100000054],[114.20311020000008,1.186478],[114.20728840000004,1.185034700000074],[114.21156050000002,1.173575700000072],[114.22068880000006,1.167196800000056],[114.22264040000005,1.163373],[114.2219166000001,1.161183600000072],[114.20903590000012,1.15734070000002],[114.18018790000008,1.15202290000002],[114.17557040000008,1.149917500000072],[114.1730348000001,1.144990600000028],[114.16287950000003,1.138232500000072],[114.14616220000005,1.134992400000044],[114.12823160000005,1.127437800000052],[114.1100302000001,1.114220300000056],[114.09370740000008,1.106362200000035],[114.0866324000001,1.104896300000064],[114.07846660000007,1.105617700000039],[114.0720559,1.109285600000021],[114.06551700000011,1.116208900000061],[114.06187890000001,1.125505800000042],[114.05824780000012,1.127690500000028],[114.05461920000005,1.127504400000021],[114.04972370000007,1.12403450000005],[114.04156850000004,1.114361100000053],[114.03631020000012,1.110891],[114.02866840000002,1.111764100000073],[113.99801290000005,1.124150100000065],[113.9866760000001,1.126083200000039],[113.98264050000012,1.120901300000071],[113.97184990000005,1.119774],[113.96281890000012,1.110061400000063],[113.96087810000006,1.099049500000035],[113.96312340000009,1.09110540000006],[113.96215110000003,1.088188],[113.95764040000006,1.083494200000075],[113.954731,1.073124700000051],[113.9494932,1.066481700000054],[113.94823880000001,1.061240600000076],[113.942438,1.058978300000035],[113.90034850000006,1.058246700000041],[113.89527450000003,1.055175600000041],[113.88969530000008,1.047393400000033],[113.88853090000009,1.038105400000063],[113.89336130000004,1.019242600000041],[113.89710040000011,1.016445500000032],[113.9081384000001,1.013789],[113.91572480000002,1.002998700000035],[113.91221580000001,0.981225900000027],[113.91462080000008,0.976629800000069],[113.91188690000001,0.96791010000004],[113.90586270000006,0.964242100000035],[113.90263460000006,0.959025300000064],[113.89791670000011,0.958463700000038],[113.89488860000006,0.956244900000058],[113.89627510000003,0.948844600000029],[113.89120480000008,0.941804500000046],[113.88437130000011,0.93702],[113.88367180000012,0.927687700000035],[113.8806105000001,0.926057700000058],[113.87216630000012,0.916737500000067],[113.87315930000011,0.901950300000067],[113.87796810000009,0.901388800000063],[113.87851820000003,0.896499200000051],[113.87119990000008,0.888686700000051],[113.87688530000003,0.879191400000025],[113.88033760000008,0.876800600000024],[113.88960250000002,0.870750200000032],[113.89495690000001,0.872547300000065],[113.89633030000005,0.864422600000069],[113.89844830000004,0.862990400000058],[113.89960710000003,0.859661600000038],[113.90495380000004,0.857892600000071],[113.90617010000005,0.854126],[113.91081870000005,0.851090300000067],[113.92245230000003,0.847528500000067],[113.92538220000006,0.844935700000065],[113.92639230000009,0.840358],[113.9201888,0.828260600000021],[113.91362740000011,0.823869900000034],[113.90977680000003,0.811795400000051],[113.88814320000006,0.795255700000041],[113.88161910000008,0.784664100000043],[113.87930730000005,0.784262300000023],[113.87395540000011,0.779788800000063],[113.87347040000009,0.776457400000027],[113.87946540000007,0.771903],[113.88506260000008,0.763247800000045],[113.88478450000002,0.758888800000022],[113.89608140000007,0.754587400000048],[113.89634680000006,0.741692600000022],[113.88200360000008,0.720136900000057],[113.87476320000007,0.712800500000071],[113.8700864000001,0.71181370000005],[113.860214,0.712833900000021],[113.849037,0.70929540000003],[113.84367350000002,0.705658500000027],[113.840431,0.698974],[113.83594490000007,0.68243990000002],[113.84088110000005,0.666730600000051],[113.84323860000006,0.665645300000051],[113.8516691000001,0.663241400000061],[113.880142,0.660425],[113.8825452000001,0.657892900000036],[113.88358280000011,0.645864],[113.88560890000008,0.641570700000045],[113.88933780000002,0.641241700000023],[113.8938343000001,0.64292910000006],[113.90205360000004,0.653157300000032],[113.90810370000008,0.656161200000042],[113.9144361000001,0.656641800000045],[113.92881750000004,0.65309910000002],[113.94375590000004,0.659749600000055],[113.95037050000008,0.659931700000072],[113.95659610000007,0.657816500000024],[113.96561410000004,0.657311700000037],[113.97392250000007,0.666149700000062],[113.97751590000007,0.667416600000024],[113.98522160000005,0.665591100000029],[114.00000000000011,0.654813900000022],[114.00394640000002,0.655601600000068],[114.00486060000003,0.648654100000044],[114.0078598,0.646286],[114.0117120000001,0.650220200000035],[114.01859070000012,0.662877700000024],[114.0245552,0.667368500000066],[114.02702460000012,0.671199200000046],[114.0359102000001,0.669265500000051],[114.03940290000003,0.67136510000006],[114.04581330000008,0.668819400000075],[114.05310510000004,0.669560100000069],[114.05643740000005,0.675320300000067],[114.05960970000001,0.675453900000036],[114.0614806000001,0.677938],[114.06792480000001,0.681436100000042],[114.07479620000004,0.689905200000055],[114.08169940000005,0.689555700000028],[114.09145020000005,0.697761700000058],[114.0956675000001,0.696618],[114.10005880000006,0.692041200000062],[114.1025509000001,0.691472900000065],[114.11314670000002,0.695614],[114.12294780000002,0.694850200000076],[114.1270740000001,0.690584300000069],[114.12807540000006,0.681716200000039],[114.12637260000008,0.678284200000064],[114.13003430000003,0.670042800000033],[114.13791070000002,0.67152470000002],[114.14389230000006,0.668989600000032],[114.14379860000008,0.662402200000031],[114.15810750000003,0.65949],[114.15872070000012,0.655533600000069],[114.16171810000003,0.654269700000043],[114.16323760000012,0.649617800000044],[114.175021,0.642522900000074],[114.17657410000004,0.639673200000061],[114.1791459000001,0.622890900000073],[114.17948950000005,0.615964700000063],[114.17821640000011,0.612714700000026],[114.17413980000003,0.60715440000007],[114.16640060000009,0.604718500000047],[114.15858480000009,0.598814300000072],[114.15766530000008,0.591467600000044],[114.1673737000001,0.583112800000038],[114.17315740000004,0.583614300000022],[114.1780424000001,0.581319400000041],[114.18844190000004,0.586366100000021],[114.19357950000006,0.586432500000058],[114.19532,0.584829600000035],[114.19405540000002,0.576851800000043],[114.19513660000007,0.570789800000057],[114.19831540000007,0.566168700000048],[114.1987047,0.554214400000035],[114.20156060000011,0.550578200000075],[114.20296830000007,0.539578400000039],[114.2116592000001,0.536902],[114.21941260000006,0.529482900000062],[114.22783330000004,0.530035500000054],[114.23270220000006,0.525141100000042],[114.24017360000005,0.525282300000072],[114.24511070000005,0.521215500000039],[114.24769970000011,0.522609800000055],[114.25079140000003,0.531273300000066],[114.25642940000012,0.532301500000074],[114.26742460000003,0.528336500000023],[114.27821890000007,0.534835900000076],[114.29188540000007,0.538160800000071],[114.29784030000008,0.533199700000068],[114.31094630000007,0.534024800000054],[114.32175990000007,0.540705700000046],[114.325406,0.538288400000056],[114.3476468,0.53181040000004],[114.35420020000004,0.531930300000056],[114.36376880000012,0.529816400000072],[114.37499420000006,0.516221100000053],[114.38092860000006,0.51298520000006],[114.390572,0.511224700000071],[114.40069540000002,0.49692680000004],[114.4069363000001,0.495146200000022],[114.42731760000004,0.502043900000047],[114.4313575000001,0.503942800000061],[114.43587850000006,0.508600200000046],[114.43807230000004,0.519492600000035],[114.4350928,0.542689],[114.44049480000001,0.547213200000044],[114.44750240000008,0.549011900000039],[114.45503050000002,0.555308],[114.4602698000001,0.556559800000059],[114.46318840000004,0.561947300000043],[114.4682242,0.561744100000055],[114.47780250000005,0.568636400000059],[114.489427,0.571290900000065],[114.49563290000003,0.567205],[114.50000000000011,0.568205700000021],[114.50296770000011,0.56551810000002],[114.51052780000009,0.565543600000069],[114.51406180000004,0.561967200000026],[114.52279370000008,0.559252],[114.53095280000002,0.55941230000002],[114.53469280000002,0.563649300000066],[114.5348547000001,0.571412],[114.53776240000002,0.577635600000065],[114.54254150000008,0.582552900000053],[114.5464922000001,0.593886200000043],[114.54633170000011,0.601399600000036],[114.54165160000002,0.607567600000039],[114.54305250000004,0.612692500000037],[114.53982710000002,0.61975],[114.54467510000006,0.630224300000066],[114.55250740000008,0.627538],[114.56105260000004,0.627204900000038],[114.56716920000008,0.625184800000056],[114.57239980000008,0.62817380000007],[114.5776777000001,0.628344800000036],[114.58705910000003,0.63197370000006],[114.60091420000003,0.632732500000031],[114.6088304000001,0.64503650000006],[114.61040160000005,0.64503730000007],[114.61405560000003,0.639774],[114.6175267000001,0.640614200000073],[114.61988270000006,0.642512300000021],[114.62189190000004,0.65122690000004],[114.626506,0.656730700000026],[114.63672860000008,0.660865300000069],[114.63938510000003,0.670986600000049],[114.65367370000001,0.677503500000057],[114.65566130000002,0.682939600000054],[114.65599920000011,0.689982100000066],[114.66296160000002,0.697232500000041],[114.6651859000001,0.703145600000028],[114.66808330000003,0.703854900000067],[114.67331820000004,0.70193340000003],[114.67719780000004,0.70226660000003],[114.6890125000001,0.707984200000055],[114.69148640000003,0.710362100000054],[114.69508480000002,0.719109600000024],[114.69785910000007,0.720057300000065],[114.69992550000006,0.725617900000032],[114.70744360000003,0.72821220000003],[114.70932560000006,0.726486100000045],[114.70930310000006,0.724475200000029],[114.6951868000001,0.713297300000022],[114.69478130000005,0.709374900000057],[114.69762390000005,0.703861900000049],[114.70079120000003,0.702482800000041],[114.7173931000001,0.701426900000058],[114.72394480000003,0.706942900000058],[114.73689190000005,0.712733600000035],[114.74319710000009,0.720785100000057],[114.75000000000011,0.725857100000042],[114.76579470000001,0.73020310000004],[114.76588970000012,0.733954800000049],[114.76797080000006,0.737707600000022],[114.76986010000007,0.737708500000053],[114.77322790000005,0.729329900000039],[114.78214250000008,0.727434100000039],[114.7843104000001,0.729586100000063],[114.78693210000006,0.729790200000025],[114.7900969000001,0.733924200000047],[114.79447030000006,0.73638550000004],[114.79518280000002,0.741423500000053],[114.8036581,0.739294800000039],[114.80912750000005,0.741858600000057],[114.81292840000003,0.75],[114.81797010000003,0.753129],[114.82361070000002,0.750476400000025],[114.82809110000005,0.754698400000052],[114.83425140000008,0.753736300000071],[114.84177530000011,0.745841100000064],[114.84971590000009,0.74353050000002],[114.85150080000005,0.740696],[114.86205040000004,0.736698200000035],[114.86439070000006,0.74100240000007],[114.86955080000007,0.741122300000029],[114.87836,0.745438200000024],[114.88229440000009,0.751595800000075],[114.8913119,0.758749800000032],[114.9052196,0.766207700000052],[114.90992770000003,0.766658900000039],[114.90977690000011,0.771047400000043],[114.9129478000001,0.772894200000053],[114.91477940000004,0.777633],[114.91735660000006,0.777484700000059],[114.92323390000001,0.77254430000005],[114.93289840000011,0.772598900000048],[114.93765570000005,0.773997700000052],[114.94137380000006,0.772154200000045],[114.94959660000006,0.762812900000029],[114.95812160000003,0.762418],[114.9691788,0.752049600000021],[114.9714861000001,0.746414700000059],[114.97913730000005,0.738908900000069],[114.98256720000006,0.733319200000039],[114.98294590000012,0.72910580000007],[114.9861433000001,0.722069100000056],[114.9893489000001,0.717789800000048],[114.9932265000001,0.694416500000045],[114.99571,0.690849600000035],[114.99465780000003,0.686993400000063],[114.99640560000012,0.685026200000038],[114.9984564,0.674792100000047],[115.00000000000011,0.67317120000007],[115.00243990000001,0.647352600000033],[115.00722670000005,0.630522100000064],[115.01075090000006,0.606699100000071],[115.018754,0.59567050000004],[115.02231340000003,0.58535930000005],[115.03249560000006,0.573174700000038],[115.03949360000001,0.554055100000028],[115.04971130000001,0.539414800000031],[115.06667850000008,0.524491400000045],[115.07248470000002,0.517019800000071],[115.07913740000004,0.501975100000038],[115.0823653000001,0.5],[115.08518390000006,0.488873600000034],[115.08777780000003,0.486386],[115.09401120000007,0.469966900000031],[115.10319390000006,0.462973900000065],[115.107521,0.451146300000062],[115.11552820000009,0.448692300000062],[115.12242980000008,0.440397300000029],[115.13277720000008,0.432494800000029],[115.13611780000008,0.423914300000035],[115.13277950000008,0.411100100000056],[115.12867,0.374634],[115.12377850000007,0.370960500000024],[115.12099610000007,0.372312400000055],[115.10871170000007,0.358318700000041],[115.094367,0.350497700000062],[115.09009780000008,0.343370200000038],[115.0848774000001,0.342343600000049],[115.07968930000004,0.336657700000046],[115.07687620000002,0.330749900000058],[115.06531910000001,0.325602200000048],[115.05534000000011,0.317704],[115.05609390000006,0.309449800000039],[115.0472774000001,0.298236200000019],[115.03944640000009,0.29991670000004],[115.03756980000003,0.302746800000023],[115.03822070000001,0.308747400000073],[115.0360564,0.315741900000035],[115.02448680000009,0.326131400000065],[115.02346650000004,0.329946200000052],[115.01999970000008,0.330519800000047],[115.01575850000006,0.328467900000021],[115.00999330000002,0.328793400000052],[115.0064202000001,0.327349800000036],[115.00244740000005,0.322503700000027],[114.99777580000011,0.320520800000054],[114.98436320000008,0.325747700000022],[114.97928430000002,0.329977300000053],[114.9733979,0.327983300000028],[114.96789350000006,0.322976700000027],[114.9618756000001,0.320091900000023],[114.95537180000008,0.319053],[114.9521109000001,0.322065700000053],[114.95201,0.32679470000005],[114.94953420000002,0.332160100000067],[114.9435284000001,0.333831300000043],[114.9339328000001,0.332248200000038],[114.92799020000007,0.328973200000064],[114.9201739,0.326938100000064],[114.91106420000006,0.320492400000035],[114.90088950000006,0.315840100000059],[114.89719810000008,0.311964600000067],[114.8927026,0.303396300000031],[114.88524010000003,0.297123400000032],[114.88587460000008,0.285792900000047],[114.88352490000011,0.278300200000047],[114.8757045000001,0.275183100000049],[114.8723705000001,0.270588800000041],[114.86859840000011,0.253700800000047],[114.86431070000003,0.245722800000067],[114.86394120000011,0.237632500000075],[114.85892170000011,0.233318],[114.84632450000004,0.229500500000029],[114.84401450000007,0.230933300000061],[114.84189210000011,0.235937700000022],[114.83788880000009,0.23438770000007],[114.83330880000005,0.227260100000024],[114.83168110000008,0.216958700000021],[114.8281406000001,0.209134],[114.82999010000003,0.198963100000071],[114.82903540000007,0.194898700000067],[114.82109260000004,0.189197600000057],[114.81344260000003,0.17959570000005],[114.80573230000005,0.178027300000053],[114.80126490000009,0.174023700000021],[114.8017119000001,0.172161300000027],[114.81342350000011,0.162133400000073],[114.81378550000011,0.15875120000004],[114.8090039000001,0.140306600000031],[114.80426810000006,0.137129200000061],[114.80026470000007,0.12891170000006],[114.79309050000006,0.119484500000056],[114.795642,0.108637600000066],[114.79366870000001,0.086306600000057],[114.79467950000003,0.083933800000068],[114.80189860000007,0.082094100000063],[114.81414840000002,0.067254800000057],[114.82273740000005,0.066623900000025],[114.83237720000011,0.074471800000026],[114.83627560000002,0.07476250000002],[114.84870320000005,0.068851800000061],[114.8513024,0.064348300000063],[114.85748110000009,0.059518500000024],[114.8608468000001,0.054418],[114.875699,0.055365100000074],[114.88646440000002,0.049157600000058],[114.89469520000011,0.040363800000023],[114.89482010000006,0.028717700000072],[114.88972730000012,0.025319400000058],[114.88907640000002,0.023482600000023],[114.8941972,0],[114.89266810000004,-0.006602499999929],[114.8949530000001,-0.015496],[114.89301100000012,-0.025882599999932],[114.894569,-0.029744599999958],[114.8979131000001,-0.032650699999976],[114.89966360000005,-0.040899599999932],[114.90601550000008,-0.049794799999972],[114.91244530000006,-0.069252099999972],[114.9116467,-0.0796908],[114.92044780000003,-0.088658799999962],[114.92455120000011,-0.099555599999974],[114.9210577,-0.105237599999953],[114.9228352,-0.115807099999927],[114.9203298000001,-0.120140099999958],[114.92035670000007,-0.126302899999928],[114.91695020000009,-0.1344749],[114.9303337,-0.1607326],[114.92705610000007,-0.173594499999979],[114.92250790000003,-0.181628199999977],[114.92556910000008,-0.185705899999959],[114.92547860000002,-0.189828499999976],[114.9287653,-0.190870899999936],[114.93292370000006,-0.188856599999951],[114.93704720000005,-0.189861],[114.94132320000006,-0.188505499999962],[114.94773810000004,-0.190440099999932],[114.95059910000009,-0.189679799999965],[114.9623865000001,-0.179792],[114.97929330000011,-0.178459299999929],[114.98352760000012,-0.17409],[114.98702190000006,-0.172931699999936],[114.9925134,-0.176092499999925],[114.98917330000006,-0.184245899999951],[114.99181310000006,-0.185963799999968],[115.00081580000005,-0.186929899999939],[115.0269465,-0.185242699999947],[115.03596440000001,-0.191318899999942],[115.03934420000007,-0.191598599999963],[115.04479160000005,-0.189815799999963],[115.05176490000008,-0.180905699999926],[115.05686130000004,-0.176943199999926],[115.06159910000008,-0.169354],[115.067089,-0.165875099999937],[115.07265410000002,-0.163482099999953],[115.07853640000008,-0.154924899999969],[115.08123720000003,-0.153196899999955],[115.09131560000003,-0.152724699999965],[115.10269830000004,-0.147202599999957],[115.10493150000002,-0.144507099999942],[115.1111383000001,-0.147116299999936],[115.1187718000001,-0.147475],[115.1253656,-0.1366204],[115.12662320000004,-0.1363343],[115.13264580000009,-0.142277899999954],[115.14206550000006,-0.140538699999979],[115.14286830000003,-0.137088499999948],[115.14587340000003,-0.1383608],[115.1495129000001,-0.135347399999944],[115.14615760000004,-0.128067899999962],[115.146598,-0.120289399999933],[115.15177210000002,-0.116377499999942],[115.15172050000001,-0.111593899999946],[115.153602,-0.111316399999964],[115.15287760000001,-0.106226099999958],[115.15578160000007,-0.101003699999978],[115.1586129000001,-0.098520399999927],[115.1656183,-0.099357299999951],[115.1823207000001,-0.093996699999934],[115.18331180000007,-0.081354799999929],[115.19595270000002,-0.076125399999967],[115.19797760000006,-0.076733799999943],[115.19918180000002,-0.079088699999943],[115.20460360000004,-0.079915299999925],[115.21488640000007,-0.072960299999977],[115.22741630000007,-0.0728725],[115.23155150000002,-0.070285],[115.24291920000007,-0.056544299999928],[115.255725,-0.052745399999935],[115.26239580000004,-0.046852799999954],[115.26724050000007,-0.049366799999973],[115.27182010000001,-0.048153699999943],[115.27442710000003,-0.045489099999941],[115.27914440000006,-0.045385099999976],[115.28606180000008,-0.047634699999946],[115.29215940000006,-0.041058499999963],[115.2915594000001,-0.036603399999933],[115.29586360000008,-0.034692699999937],[115.29760140000008,-0.031619199999966],[115.30036340000004,-0.031913699999961],[115.304561,-0.036907099999951]]]},"properties":{"shapeName":"Mahakam Hulu","shapeISO":"","shapeID":"22746128B80473704412333","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[108.38574140000009,-7.073000899999954],[108.38566440000005,-7.0702795],[108.39016730000009,-7.063157899999965],[108.38585670000003,-7.042055],[108.39138280000009,-7.021168],[108.38314060000005,-7.006653699999958],[108.38290410000008,-6.999503499999946],[108.38815310000007,-6.9681181],[108.38501170000006,-6.959014499999967],[108.385727,-6.952483499999971],[108.38865550000008,-6.947109299999966],[108.40148660000006,-6.934469799999931],[108.40236670000007,-6.914581699999928],[108.40756230000005,-6.893125899999973],[108.40779880000008,-6.880792],[108.40689390000006,-6.86879],[108.40126230000004,-6.854765399999962],[108.40471650000006,-6.845571199999938],[108.40098970000008,-6.829943599999979],[108.40446420000006,-6.822118799999942],[108.40559820000004,-6.822830199999942],[108.40775570000005,-6.819241099999942],[108.40732370000006,-6.815162099999952],[108.41055730000005,-6.809655799999973],[108.408323,-6.805497499999944],[108.41147670000004,-6.806020199999978],[108.413273,-6.803040499999952],[108.41276440000007,-6.799653199999966],[108.40978390000004,-6.797918299999935],[108.412717,-6.792932399999927],[108.40923330000004,-6.790167599999961],[108.41149690000009,-6.787498299999925],[108.40979260000006,-6.787303899999927],[108.41076520000007,-6.785454899999934],[108.40964410000004,-6.7844775],[108.40948320000007,-6.785978],[108.40801680000004,-6.784660299999928],[108.40867410000004,-6.786712],[108.40748880000007,-6.788215499999978],[108.40434210000006,-6.787783199999978],[108.402615,-6.785790299999974],[108.40296950000004,-6.7827418],[108.40102910000007,-6.7844368],[108.39814510000008,-6.784074201999942],[108.40081790000005,-6.778875199999959],[108.39931490000004,-6.774121099999945],[108.38901520000007,-6.767500299999938],[108.386612,-6.763680799999975],[108.38444530000004,-6.765174699999932],[108.37346650000006,-6.759392099999957],[108.36499410000005,-6.759357099999932],[108.35938690000006,-6.751843],[108.35896010000005,-6.743869099999927],[108.36862950000005,-6.736568299999931],[108.37043340000008,-6.7319188],[108.36895330000004,-6.730200699999955],[108.36848080000004,-6.723503699999981],[108.366765,-6.721952899999962],[108.364167,-6.724058799999966],[108.36291550000004,-6.72294],[108.36385450000006,-6.721802599999933],[108.36082470000008,-6.714898],[108.35831460000009,-6.713796199999933],[108.36002360000003,-6.710594499999956],[108.36360940000009,-6.709804399999939],[108.36544810000004,-6.706735499999979],[108.36505130000006,-6.703827699999977],[108.36873630000008,-6.702998],[108.36716280000007,-6.699425699999949],[108.36816440000007,-6.697711599999934],[108.36686280000004,-6.693993099999943],[108.36420390000006,-6.693278799999973],[108.36407120000007,-6.691035899999974],[108.36114940000004,-6.688860099999943],[108.35853140000006,-6.681246],[108.33954030000007,-6.674127299999952],[108.33985530000007,-6.659993799999938],[108.34341860000006,-6.654864599999939],[108.34425660000005,-6.6470473],[108.34732340000005,-6.638716899999963],[108.34453340000005,-6.635081299999968],[108.34598550000004,-6.625000399999976],[108.34324650000008,-6.622710599999948],[108.32349020000004,-6.620803499999965],[108.32157140000004,-6.619552499999941],[108.31962590000006,-6.613038399999937],[108.31543740000006,-6.607849499999929],[108.31146240000004,-6.620725499999935],[108.30857860000003,-6.623897899999974],[108.30442050000005,-6.623250399999961],[108.305069,-6.6195177],[108.30379490000007,-6.618542599999955],[108.30203250000005,-6.620475599999963],[108.30039980000004,-6.616355299999952],[108.29905710000008,-6.617170199999975],[108.298584,-6.6149501],[108.29434970000005,-6.613000199999931],[108.29301460000005,-6.609189899999933],[108.28940590000008,-6.608693899999935],[108.28639230000005,-6.609666699999934],[108.28550730000006,-6.613472299999955],[108.28762820000009,-6.615279499999929],[108.29391480000004,-6.615350599999942],[108.292511,-6.620893799999976],[108.28866580000005,-6.622283299999935],[108.28084570000004,-6.620628699999941],[108.27516940000004,-6.616548899999941],[108.27256780000005,-6.609646199999929],[108.272995,-6.604065299999945],[108.27542120000004,-6.598038499999973],[108.27446750000007,-6.594781299999966],[108.27627570000004,-6.591492499999958],[108.26368720000005,-6.587396499999954],[108.25186930000007,-6.58719],[108.25,-6.585610299999928],[108.21012890000009,-6.573154799999941],[108.20593270000006,-6.574995899999976],[108.19998180000005,-6.585086699999977],[108.19763950000004,-6.593526199999928],[108.19071970000005,-6.601153699999941],[108.18968210000008,-6.608269099999973],[108.18773660000005,-6.609824499999945],[108.18476870000006,-6.610640399999966],[108.18022920000004,-6.609349099999974],[108.17346960000003,-6.605720899999938],[108.16586310000008,-6.609206],[108.16456610000006,-6.613482799999929],[108.15826420000008,-6.612192499999935],[108.14863590000004,-6.6060012],[108.14830790000008,-6.603139299999953],[108.14585120000004,-6.600386499999956],[108.14648440000008,-6.592650799999944],[108.14431010000004,-6.5876449],[108.14611060000004,-6.585259299999962],[108.14523320000006,-6.583885],[108.147667,-6.5780023],[108.145752,-6.578316499999971],[108.14563760000004,-6.577],[108.14332590000004,-6.576574699999981],[108.14400490000008,-6.574491799999976],[108.14208230000008,-6.574513699999954],[108.14348610000008,-6.572720899999979],[108.14174660000003,-6.571325599999966],[108.14209750000003,-6.565329899999938],[108.12757120000003,-6.565211199999965],[108.12799080000008,-6.561105599999962],[108.13182070000005,-6.557598],[108.13223270000009,-6.554964899999959],[108.12811290000008,-6.549242799999945],[108.12780770000006,-6.5444983],[108.12223060000008,-6.543247099999974],[108.12277990000007,-6.540738899999951],[108.121605,-6.542525099999978],[108.12059790000006,-6.540998299999956],[108.11804210000008,-6.543005799999946],[108.119957,-6.544785299999944],[108.11708840000006,-6.545662199999981],[108.11830140000006,-6.548760299999969],[108.11763010000004,-6.550730599999952],[108.11552440000008,-6.550277499999936],[108.11597450000005,-6.553322599999944],[108.11332710000005,-6.554031699999939],[108.112526,-6.551962699999933],[108.10644540000004,-6.555489399999942],[108.10747530000003,-6.558730899999944],[108.10478980000005,-6.562071699999933],[108.10292820000006,-6.561517599999945],[108.10015110000006,-6.563566099999946],[108.09933480000007,-6.562167],[108.09721380000008,-6.564829199999963],[108.09779360000005,-6.562272899999925],[108.09557350000006,-6.563817399999948],[108.09387980000008,-6.562787399999934],[108.09177410000007,-6.568111699999974],[108.08863070000007,-6.568678699999964],[108.08847810000009,-6.570651799999951],[108.08575450000006,-6.572905899999967],[108.084343,-6.573398399999974],[108.08367930000009,-6.572175299999969],[108.08271030000009,-6.574330599999939],[108.08100130000008,-6.5734213],[108.07803350000006,-6.574756],[108.07786570000007,-6.576922299999978],[108.07344830000005,-6.575182299999938],[108.07498180000005,-6.5767],[108.07327280000004,-6.579472899999928],[108.07550060000005,-6.580071799999928],[108.073845,-6.5815528],[108.07658390000006,-6.582450199999926],[108.07447060000004,-6.583590799999968],[108.074379,-6.589017199999944],[108.07301340000004,-6.587663],[108.07102970000005,-6.588206599999978],[108.073578,-6.589549899999952],[108.07218180000007,-6.594733099999928],[108.07432560000007,-6.596526499999925],[108.07286080000006,-6.599149499999953],[108.069893,-6.599204399999962],[108.071663,-6.600947699999949],[108.06917580000004,-6.601416],[108.07259380000005,-6.602190299999961],[108.06990060000004,-6.6033519],[108.06893930000007,-6.608501299999944],[108.07124340000007,-6.609414399999935],[108.0709,-6.614144599999975],[108.067833,-6.612943499999972],[108.06687170000004,-6.616535499999941],[108.06490330000008,-6.614725],[108.06428530000005,-6.6173232],[108.06277470000003,-6.6165055],[108.05946360000007,-6.620101699999964],[108.05727390000004,-6.618797099999938],[108.05832680000009,-6.622497399999929],[108.05511480000007,-6.621090199999969],[108.05193340000005,-6.623660899999948],[108.04909520000007,-6.62336],[108.05233770000007,-6.626872899999967],[108.05046090000008,-6.626134199999967],[108.04930890000009,-6.628330499999947],[108.04594430000009,-6.629321399999981],[108.04795080000008,-6.630061],[108.04762280000006,-6.633191899999929],[108.04414370000006,-6.631180099999938],[108.04581460000009,-6.633534699999927],[108.042183,-6.637121],[108.04312140000008,-6.639104699999962],[108.04506690000005,-6.637806699999942],[108.05047620000005,-6.638175799999942],[108.05094150000008,-6.640889499999957],[108.05281070000007,-6.642343399999959],[108.05170450000008,-6.646211499999936],[108.05484780000006,-6.648514099999943],[108.05389410000004,-6.653114399999936],[108.056038,-6.653005399999927],[108.05874640000008,-6.655616099999975],[108.06011020000005,-6.652816899999948],[108.06327070000003,-6.658274],[108.06590280000006,-6.657361799999933],[108.06605540000004,-6.655723899999941],[108.06996540000006,-6.657090299999936],[108.06671150000005,-6.658778],[108.06875620000005,-6.665690699999971],[108.07138830000008,-6.663438199999973],[108.07666790000007,-6.667475099999933],[108.07958990000009,-6.666413599999942],[108.07975780000004,-6.669874499999935],[108.08390810000009,-6.669544099999939],[108.08466350000003,-6.672294],[108.08862310000006,-6.6713966],[108.08788310000006,-6.673828899999933],[108.09188760000006,-6.672664699999928],[108.09306430000004,-6.677693399999953],[108.09458590000008,-6.677512199999967],[108.10185550000006,-6.687710099999947],[108.10538180000009,-6.686711799999955],[108.10785930000009,-6.687602499999969],[108.10696680000007,-6.690301399999953],[108.10959620000006,-6.690590699999973],[108.10820540000009,-6.692655399999978],[108.11116850000008,-6.694258799999943],[108.11100080000006,-6.698510499999941],[108.11277330000007,-6.698411799999974],[108.11398120000007,-6.701814199999944],[108.11811120000004,-6.7013395],[108.11698680000006,-6.704231099999959],[108.11814060000006,-6.706576899999959],[108.11930930000005,-6.704479699999979],[108.12145320000008,-6.7050269],[108.12245670000004,-6.703512],[108.12351220000005,-6.704457299999945],[108.122212,-6.706148199999973],[108.12375660000004,-6.707364799999937],[108.125943,-6.703802499999938],[108.12831310000007,-6.706557399999951],[108.13267410000009,-6.705464699999936],[108.13132710000008,-6.706970699999943],[108.13367260000007,-6.707015299999966],[108.13380460000008,-6.709145499999977],[108.13535720000004,-6.706725199999937],[108.13660080000005,-6.708117499999958],[108.13812770000004,-6.707317099999955],[108.14017490000003,-6.710528699999941],[108.14262790000004,-6.711920799999973],[108.14368940000008,-6.710521799999981],[108.14579310000005,-6.712099399999943],[108.14728170000006,-6.715577],[108.145752,-6.717476199999965],[108.14751060000003,-6.717547299999978],[108.147873,-6.715904099999932],[108.15032950000005,-6.717140699999959],[108.14888950000005,-6.718857799999967],[108.15182090000008,-6.718427199999951],[108.15294170000004,-6.723057199999971],[108.15435560000009,-6.7210976],[108.15557830000006,-6.72216],[108.15498330000008,-6.720209199999942],[108.15714820000005,-6.722860599999933],[108.15877290000009,-6.720567099999926],[108.16202870000006,-6.724567199999967],[108.16365820000004,-6.729280299999971],[108.16021740000008,-6.733126499999969],[108.15675070000009,-6.740844299999935],[108.151764,-6.744866699999932],[108.15138660000008,-6.748126399999933],[108.15321830000005,-6.751346199999944],[108.14868930000006,-6.754852599999936],[108.14927940000007,-6.759548299999949],[108.15406130000008,-6.762263599999926],[108.15956890000007,-6.758862799999974],[108.16428380000008,-6.761350499999935],[108.16360120000007,-6.773869699999977],[108.16954810000004,-6.783745099999976],[108.169571,-6.787083],[108.16670230000005,-6.786116],[108.16480780000006,-6.7887718],[108.16648110000006,-6.794203099999947],[108.165195,-6.797146899999973],[108.155813,-6.7964884],[108.15282040000005,-6.802570699999933],[108.15400460000006,-6.805170099999941],[108.16050810000007,-6.809796399999925],[108.16161410000007,-6.813769199999967],[108.159134,-6.820153599999969],[108.15946970000005,-6.825831699999981],[108.16483510000006,-6.835347799999965],[108.16678230000008,-6.835186699999952],[108.16671530000008,-6.829693],[108.17063830000006,-6.833093199999951],[108.17535540000006,-6.831526399999973],[108.17961810000008,-6.833774299999959],[108.177878,-6.838739799999928],[108.18180410000008,-6.842596699999945],[108.18084480000005,-6.845288699999969],[108.18208030000005,-6.847627699999975],[108.17939290000004,-6.849740299999951],[108.17982860000006,-6.852288399999964],[108.18504860000007,-6.855223799999976],[108.18882740000004,-6.853032599999949],[108.18950960000006,-6.858235699999966],[108.18631050000005,-6.859117199999957],[108.18990720000005,-6.863392099999942],[108.18945660000009,-6.865373699999964],[108.19230630000004,-6.865823699999964],[108.19403820000008,-6.863766699999928],[108.195978,-6.868779099999927],[108.19925570000004,-6.8718356],[108.19307640000005,-6.881422199999975],[108.19417040000008,-6.886246099999937],[108.19689980000004,-6.887771199999975],[108.19725350000004,-6.889500399999974],[108.19937140000008,-6.888646399999971],[108.20452120000004,-6.890818899999942],[108.20641010000008,-6.893103699999926],[108.21172210000009,-6.888579899999968],[108.21452890000006,-6.889190599999949],[108.20991840000005,-6.906615399999964],[108.21138320000006,-6.907238099999972],[108.21609980000005,-6.90273],[108.21341270000005,-6.908562399999937],[108.21418960000005,-6.911853599999972],[108.21140880000007,-6.915173599999946],[108.21301290000008,-6.918347],[108.21768980000007,-6.919535799999949],[108.21706590000008,-6.925328599999943],[108.21929180000006,-6.926009],[108.21984870000006,-6.9280284],[108.21736390000007,-6.929063299999939],[108.217082,-6.932004],[108.21480310000004,-6.931970799999931],[108.21313450000008,-6.934346699999935],[108.20959480000005,-6.934023699999955],[108.20512390000005,-6.937232799999947],[108.20589450000006,-6.9404476],[108.20178260000006,-6.941170299999953],[108.20171470000008,-6.944267099999934],[108.19897660000004,-6.947030199999972],[108.19102030000005,-6.948117299999979],[108.18851290000003,-6.952998],[108.18339550000007,-6.954089],[108.18092370000005,-6.956124199999977],[108.17883870000009,-6.962522299999932],[108.17097460000008,-6.968680799999959],[108.16987230000007,-6.975076299999955],[108.17125130000005,-6.977118],[108.167717,-6.983746899999971],[108.16809090000004,-6.9894369],[108.16514980000005,-6.993762799999956],[108.165001,-6.998486399999933],[108.15340810000004,-7.012936],[108.15216070000008,-7.020065099999954],[108.14517980000005,-7.024731],[108.143303,-7.031689],[108.13559730000009,-7.0393289],[108.133458,-7.039232799999979],[108.13446050000005,-7.041553299999975],[108.13901530000004,-7.042482199999938],[108.14587320000004,-7.047862299999963],[108.14998630000008,-7.057428699999946],[108.16210940000008,-7.074101299999938],[108.16695840000006,-7.074160399999926],[108.17618030000006,-7.067677499999945],[108.16992350000004,-7.059174499999926],[108.17742190000007,-7.061235799999963],[108.18463090000006,-7.061229899999944],[108.188145,-7.058641799999975],[108.19275770000007,-7.062581199999954],[108.19363730000003,-7.058719399999973],[108.19997780000006,-7.066309899999965],[108.20400020000005,-7.062495599999977],[108.20483380000007,-7.058893699999942],[108.20826190000008,-7.062535399999945],[108.20828210000008,-7.059999199999936],[108.21307060000004,-7.056041],[108.21444080000003,-7.055562599999973],[108.21931320000004,-7.058666599999981],[108.22672450000005,-7.054628199999968],[108.23103760000004,-7.056962899999974],[108.232126,-7.060267299999964],[108.23446020000006,-7.058681099999944],[108.23792390000006,-7.059320499999956],[108.23700630000008,-7.062672099999929],[108.23923280000008,-7.062346799999943],[108.23805870000007,-7.064330199999972],[108.24548540000006,-7.066717599999947],[108.247783,-7.064950799999963],[108.25246890000005,-7.066344099999981],[108.25759110000007,-7.064551399999971],[108.27342230000005,-7.0649036],[108.28166810000005,-7.062130699999955],[108.27985260000008,-7.059796499999948],[108.28198380000003,-7.058057399999939],[108.29584130000006,-7.058503499999972],[108.30364850000007,-7.062223499999959],[108.31365970000007,-7.056710599999974],[108.31702430000007,-7.057152599999938],[108.32033650000005,-7.059539899999947],[108.32186840000008,-7.0555579],[108.32663160000004,-7.064280499999938],[108.34069830000004,-7.071273199999951],[108.34336050000007,-7.069975199999931],[108.34002910000004,-7.069383699999946],[108.34523070000006,-7.064647899999954],[108.348074,-7.055379799999969],[108.359976,-7.0515507],[108.36329530000006,-7.0523376],[108.36224910000004,-7.053787599999964],[108.36755190000008,-7.059585],[108.37051140000005,-7.059283],[108.372527,-7.0611519],[108.37418530000008,-7.059477299999969],[108.37784840000006,-7.059885099999974],[108.37898870000004,-7.061112199999968],[108.37823980000007,-7.063062699999932],[108.37945180000008,-7.063290399999971],[108.37869720000003,-7.064452399999936],[108.38121730000006,-7.063671899999974],[108.38017090000005,-7.067738],[108.38241580000005,-7.072024599999963],[108.38574140000009,-7.073000899999954]]]},"properties":{"shapeName":"Majalengka","shapeISO":"","shapeID":"22746128B26315216123823","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[119.02722820000008,-2.963697],[119.0074892,-2.955049199999962],[119.00509310000007,-2.946301099999971],[118.9964821000001,-2.934200399999952],[118.99683650000009,-2.930179099999975],[118.99424250000004,-2.927503],[118.9813931000001,-2.927602499999978],[118.97685490000003,-2.923047199999928],[118.97383850000006,-2.925520199999937],[118.96902570000009,-2.9264778],[118.96288520000007,-2.923926],[118.95651,-2.927529199999981],[118.95570470000007,-2.9256317],[118.95281450000004,-2.925927399999978],[118.94982390000007,-2.923898099999974],[118.94892310000012,-2.921988],[118.95039620000011,-2.920506299999943],[118.94769760000008,-2.920220399999948],[118.94354570000007,-2.915286699999967],[118.93979280000008,-2.9181996],[118.93686750000006,-2.918029899999965],[118.93291980000004,-2.922349799999949],[118.91701320000004,-2.928276799999935],[118.89370310000004,-2.932751499999938],[118.88416390000009,-2.930326099999945],[118.88374340000007,-2.926149099999975],[118.87825480000004,-2.9227291],[118.8760228000001,-2.923058],[118.875081,-2.933862499999975],[118.871118,-2.943801199999939],[118.86880450000001,-2.946182199999953],[118.86825390000001,-2.952914299999975],[118.869431,-2.956913399999962],[118.86003380000011,-2.972548],[118.8580353000001,-2.973831399999938],[118.85701310000002,-2.978493199999946],[118.8484403000001,-2.9897814],[118.84885940000004,-3.002372399999956],[118.84769740000002,-3.007458199999974],[118.85053640000001,-3.011148499999933],[118.8549,-3.011405],[118.85708230000012,-3.019539599999973],[118.86055090000002,-3.021746],[118.86097760000007,-3.024804899999936],[118.85915670000009,-3.027867699999945],[118.86068510000007,-3.0317955],[118.8417601000001,-3.06805],[118.842982,-3.070683899999949],[118.83955870000011,-3.081351599999948],[118.83063660000005,-3.085866099999976],[118.82959590000007,-3.088268699999958],[118.82714670000007,-3.087552699999947],[118.8245,-3.089005],[118.81961880000006,-3.085999199999947],[118.81493630000011,-3.086054299999944],[118.81275370000003,-3.083021799999926],[118.8073204000001,-3.082183799999939],[118.80460030000006,-3.079693599999928],[118.80189430000007,-3.071672199999966],[118.79758450000008,-3.070596799999976],[118.79627560000006,-3.071917099999951],[118.79694630000006,-3.0810011],[118.79442210000002,-3.083641499999942],[118.789881,-3.084308199999953],[118.78593930000011,-3.079372099999944],[118.78298770000004,-3.078435599999978],[118.77943170000003,-3.080183299999931],[118.77740270000004,-3.084964699999944],[118.77839340000003,-3.089340899999968],[118.7763854000001,-3.092733499999952],[118.77628760000005,-3.104290299999946],[118.77760850000004,-3.110078099999953],[118.78106080000009,-3.116262499999948],[118.78036380000003,-3.121183499999972],[118.78550910000001,-3.129882599999974],[118.7887214000001,-3.132583899999929],[118.78895970000008,-3.134984199999963],[118.79904320000003,-3.143910699999935],[118.80797060000009,-3.147637499999973],[118.81167990000006,-3.1532798],[118.81636680000008,-3.155578099999957],[118.8166318000001,-3.159837699999969],[118.818603,-3.162376199999926],[118.82666250000011,-3.165092199999947],[118.82980960000009,-3.170499899999925],[118.82938230000002,-3.180503499999929],[118.8323653000001,-3.185793799999942],[118.83382860000006,-3.1922871],[118.83645680000006,-3.195483299999978],[118.8365381000001,-3.201720199999954],[118.83973460000004,-3.208398699999975],[118.84037620000004,-3.213646],[118.838045,-3.219440099999929],[118.833742,-3.222554699999932],[118.833749,-3.226461599999936],[118.83042720000003,-3.228256399999964],[118.8286,-3.232185],[118.83088780000003,-3.232810299999926],[118.83396430000005,-3.236394399999938],[118.8346848000001,-3.241133],[118.84013340000001,-3.250710499999968],[118.83933250000007,-3.255127199999947],[118.84449830000005,-3.271350199999972],[118.84408660000008,-3.274255099999948],[118.84743320000007,-3.279353499999957],[118.84671340000011,-3.2826877],[118.85125670000002,-3.285164299999963],[118.85306150000008,-3.288476099999968],[118.85277560000009,-3.292517499999974],[118.85753760000011,-3.2963912],[118.85657070000002,-3.2965795],[118.85761890000003,-3.301393],[118.85676990000002,-3.307060399999955],[118.85213720000002,-3.313150199999939],[118.84735750000004,-3.313231299999927],[118.84514,-3.315375099999926],[118.8418306000001,-3.327707499999974],[118.843056,-3.339566199999979],[118.847586,-3.339008799999931],[118.84782480000001,-3.341330899999946],[118.85037040000009,-3.341483099999948],[118.85153550000007,-3.343612599999972],[118.84544760000006,-3.358163799999943],[118.84614920000001,-3.3620097],[118.84478990000002,-3.363288],[118.84834730000011,-3.3677788],[118.8490385,-3.371617399999934],[118.84525520000011,-3.3772881],[118.8470618,-3.380753799999979],[118.8503740000001,-3.382357],[118.85161960000005,-3.385324199999957],[118.85102280000001,-3.389639399999965],[118.85994950000008,-3.400547199999949],[118.86696340000003,-3.413503399999968],[118.86998190000008,-3.427162899999928],[118.87834850000002,-3.440778099999932],[118.8794689,-3.448483599999975],[118.87725890000002,-3.471465399999943],[118.878629,-3.475524099999973],[118.88432060000002,-3.479809799999941],[118.88431430000003,-3.482244399999956],[118.88297450000005,-3.482269499999973],[118.88511190000008,-3.484631599999943],[118.88796040000011,-3.485378499999968],[118.88869380000006,-3.483649199999945],[118.89079250000009,-3.483443],[118.89457120000009,-3.485881199999938],[118.89544160000003,-3.491231099999936],[118.89251750000005,-3.497418899999957],[118.89504220000003,-3.5036405],[118.8997551000001,-3.509723],[118.90138720000004,-3.516193199999975],[118.91279150000003,-3.534726299999932],[118.923738,-3.542186799999968],[118.92680020000012,-3.548923099999968],[118.92742250000003,-3.558233599999937],[118.93264680000004,-3.562990699999943],[118.9339844000001,-3.5672175],[118.93693790000009,-3.569948699999941],[118.94031040000004,-3.570143499999972],[118.9448245000001,-3.566308299999946],[118.9447838000001,-3.557663399999967],[118.94747570000004,-3.551668399999926],[118.95002620000002,-3.549542],[118.96077630000002,-3.550184399999978],[118.96555520000004,-3.544755599999974],[118.96969540000009,-3.545129],[118.97812440000007,-3.549301399999933],[118.9813299000001,-3.553689799999972],[118.98052270000005,-3.556565],[118.9850437,-3.5604568],[118.988245,-3.560660699999971],[118.99354710000011,-3.564793599999973],[119.00054250000005,-3.563336],[119.00124760000006,-3.561831899999959],[118.99998280000011,-3.559277599999973],[118.99534330000006,-3.555214799999931],[118.99512930000003,-3.553290899999979],[118.99667590000001,-3.546578599999975],[119.00569770000004,-3.532982499999946],[119.00112060000004,-3.527755599999978],[118.9993591000001,-3.521196199999963],[118.994767,-3.52026],[118.993894,-3.510754899999938],[118.98482050000007,-3.4972701],[118.97316730000011,-3.499696399999948],[118.970004,-3.499044599999934],[118.968625,-3.495191199999965],[118.96594230000005,-3.493873099999973],[118.96128580000004,-3.476576699999953],[118.95826020000004,-3.471153399999935],[118.95551610000007,-3.469650499999943],[118.95538680000004,-3.467714699999931],[118.9524,-3.465133],[118.9501,-3.451671],[118.9405,-3.437564],[118.9158000000001,-3.409053],[118.9154,-3.406349],[118.9196,-3.399454],[118.9179,-3.392147],[118.9192,-3.371502],[118.9137,-3.364936],[118.9114,-3.346642],[118.9051,-3.327537],[118.9101,-3.311729],[118.9129,-3.307535],[118.92,-3.302371],[118.92120000000011,-3.297427],[118.9155,-3.278208],[118.9091,-3.243516],[118.9087,-3.239201],[118.91350000000011,-3.226671],[118.9132,-3.222127],[118.9064,-3.214639],[118.9026,-3.207903],[118.89810000000011,-3.197658],[118.8979,-3.193344],[118.9033,-3.178285],[118.9109396,-3.169541899999956],[118.92361170000004,-3.163885899999968],[118.94349100000011,-3.1578913],[118.95091280000008,-3.159644799999967],[118.95348970000009,-3.158652599999925],[118.95333340000002,-3.1525564],[118.95145850000006,-3.151669399999946],[118.9541468000001,-3.140811699999972],[118.95332420000011,-3.138717799999938],[118.94907120000005,-3.1360868],[118.95331950000002,-3.126542699999959],[118.95014860000003,-3.1223627],[118.95184480000012,-3.120195399999943],[118.95156,-3.11708],[118.9485022,-3.113628299999959],[118.94936040000005,-3.111934299999973],[118.94774790000008,-3.111024599999951],[118.94605610000008,-3.105864299999951],[118.94757560000005,-3.101543199999981],[118.95038530000011,-3.100079499999936],[118.95266860000004,-3.096613699999978],[118.95561680000003,-3.096203099999968],[118.95233310000003,-3.093428899999935],[118.95551120000005,-3.088525199999935],[118.95880430000011,-3.086420099999941],[118.96209460000011,-3.086607699999945],[118.9726,-3.091816],[118.9839,-3.092495],[119.00860000000011,-3.087187],[119.043382,-3.086300499999936],[119.04683320000004,-3.087622899999928],[119.04832080000006,-3.090375399999971],[119.06478730000003,-3.104885699999954],[119.06886730000008,-3.100818799999956],[119.06709180000007,-3.098507899999959],[119.069022,-3.089246299999957],[119.065628,-3.085727],[119.06387980000011,-3.086038899999949],[119.067057,-3.0805264],[119.06687510000006,-3.078034299999956],[119.0625023,-3.073952799999972],[119.065794,-3.0684225],[119.06347740000001,-3.060949499999936],[119.0588639,-3.056329499999947],[119.05947110000011,-3.049652],[119.0628838,-3.046393899999941],[119.0726,-3.042147],[119.0755,-3.039391],[119.0786,-3.030866],[119.08333770000002,-3.028063799999927],[119.08154370000011,-3.015961],[119.08230590000005,-3.012767],[119.09002840000005,-3.007755199999963],[119.09392330000003,-3.007213599999943],[119.0967667000001,-3.003565699999967],[119.0949634000001,-2.999857199999951],[119.0762016000001,-2.995281499999976],[119.07336940000005,-2.995829499999957],[119.06948850000003,-2.9938912],[119.06761090000009,-2.9868522],[119.0521844000001,-2.980405299999973],[119.02722820000008,-2.963697]]]},"properties":{"shapeName":"Majene","shapeISO":"","shapeID":"22746128B37833680950490","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[124.81532090000007,-9.341069599999969],[124.812084,-9.344503499999973],[124.8061705,-9.347544099999936],[124.8043345000001,-9.347146599999974],[124.80324550000012,-9.349760099999969],[124.80062,-9.350724899999932],[124.80194860000006,-9.353394499999979],[124.80089730000009,-9.355843099999959],[124.80608370000004,-9.36192509999995],[124.80633730000011,-9.365516],[124.8081360000001,-9.3659821],[124.80732030000001,-9.3678967],[124.80886080000005,-9.368916499999955],[124.8052384,-9.373760699999934],[124.80261430000007,-9.381103],[124.80013050000002,-9.383583699999974],[124.79438020000009,-9.382855399999926],[124.78899410000008,-9.385050599999943],[124.775032,-9.398171399999967],[124.76863990000004,-9.397476],[124.7704503000001,-9.399464499999965],[124.76985160000004,-9.406483399999956],[124.77203650000001,-9.410260199999925],[124.77873230000012,-9.411274899999967],[124.78771210000002,-9.418782199999953],[124.78617310000004,-9.424626899999964],[124.78801070000009,-9.425657299999955],[124.78555390000008,-9.428488799999968],[124.78789770000003,-9.430675399999927],[124.7861746000001,-9.4360935],[124.78784940000003,-9.439183],[124.784935,-9.443942099999958],[124.78831480000008,-9.445576699999947],[124.78388220000011,-9.452812199999926],[124.78000640000005,-9.453043],[124.78157810000005,-9.45712569999995],[124.77986150000004,-9.458812699999953],[124.78070070000001,-9.4614525],[124.77872790000004,-9.464027899999962],[124.78134390000002,-9.467196899999976],[124.78164960000004,-9.470178799999928],[124.77308830000004,-9.46996],[124.77139710000006,-9.46745519999996],[124.76871490000008,-9.467706699999951],[124.76876830000003,-9.471599599999934],[124.76606760000004,-9.474668699999938],[124.76821140000004,-9.47631739999997],[124.7671054000001,-9.481915],[124.76480190000007,-9.47998279999996],[124.76226340000005,-9.4824095],[124.7598865000001,-9.4793657],[124.75712870000007,-9.482218299999943],[124.75268710000012,-9.48225789999998],[124.74860380000007,-9.489831899999956],[124.7459186000001,-9.4899501],[124.74404140000001,-9.487576499999932],[124.74087120000002,-9.491855699999974],[124.74091620000002,-9.493889699999954],[124.7379069000001,-9.494133],[124.73673250000002,-9.496398],[124.73991060000003,-9.497511],[124.73714650000011,-9.499513799999932],[124.73195650000002,-9.501134899999954],[124.73337270000002,-9.498122099999932],[124.73233030000006,-9.496204399999954],[124.7312971,-9.49851209999997],[124.7284012,-9.4984636],[124.7285690000001,-9.502621699999963],[124.72600280000006,-9.50298639999994],[124.72274020000009,-9.501252199999954],[124.72122960000002,-9.503482799999972],[124.72236160000011,-9.506947399999945],[124.72899980000011,-9.513341599999933],[124.7341355000001,-9.510124699999949],[124.73836520000009,-9.509710299999938],[124.73651890000008,-9.5162115],[124.7395782000001,-9.520895],[124.73918910000009,-9.523587199999952],[124.74119570000005,-9.525800699999934],[124.74150090000012,-9.530246699999964],[124.7530365,-9.536294],[124.75268330000006,-9.541033],[124.75410460000012,-9.543917699999952],[124.75264920000006,-9.548288399999933],[124.75052640000001,-9.5501547],[124.75251010000011,-9.551201799999944],[124.75221460000012,-9.554804399999966],[124.75686740000003,-9.55761979999994],[124.75675280000007,-9.560124599999938],[124.75343320000002,-9.563799899999935],[124.73722840000005,-9.561876299999938],[124.73459620000006,-9.555504799999937],[124.73106230000008,-9.554141899999934],[124.72205960000008,-9.557504699999981],[124.70475010000007,-9.560745199999928],[124.70032870000011,-9.568903899999953],[124.701285,-9.582496899999967],[124.69949370000006,-9.584964799999966],[124.69622920000006,-9.586246599999981],[124.68596270000012,-9.584587899999974],[124.67851310000003,-9.585889799999961],[124.67025160000003,-9.582213799999977],[124.66037640000002,-9.581384199999945],[124.6538776000001,-9.581659399999978],[124.6452637000001,-9.584867499999973],[124.644533,-9.591007299999944],[124.64304350000009,-9.591052],[124.6439514000001,-9.594413799999927],[124.64290690000007,-9.593639099999962],[124.64238260000002,-9.595393499999943],[124.64813230000004,-9.599594099999933],[124.6469052000001,-9.602957599999968],[124.6485748,-9.603129399999943],[124.64937590000011,-9.607057599999962],[124.6521378000001,-9.608085599999981],[124.6496591,-9.612310299999933],[124.65251920000003,-9.617872199999965],[124.66086580000001,-9.620685599999945],[124.66400150000004,-9.625989],[124.66344450000008,-9.627036499999974],[124.67227170000001,-9.627116199999932],[124.67138860000011,-9.627846],[124.67341610000005,-9.628368399999943],[124.67340090000005,-9.6299505],[124.67871050000008,-9.629756199999974],[124.68007530000011,-9.631401099999948],[124.68202210000004,-9.630444499999953],[124.68349460000002,-9.63237],[124.68475340000009,-9.629962],[124.6881409,-9.632213599999943],[124.69275410000012,-9.632092499999942],[124.696233,-9.630591799999934],[124.69612170000005,-9.6282336],[124.696941,-9.6294772],[124.69977570000003,-9.628317799999934],[124.7040869000001,-9.633854],[124.7029265000001,-9.636627699999963],[124.713562,-9.638592699999947],[124.71881870000004,-9.63731],[124.72773740000002,-9.629309599999942],[124.73143010000001,-9.629591],[124.74415560000011,-9.619893599999955],[124.76223750000008,-9.597764],[124.76466550000009,-9.596907399999964],[124.77418470000009,-9.598431799999958],[124.78007080000009,-9.5969641],[124.78189770000006,-9.598907499999939],[124.78565380000009,-9.598192],[124.78834390000009,-9.600248399999941],[124.79343440000002,-9.611839199999963],[124.79814150000004,-9.614273099999934],[124.80054470000005,-9.619526899999926],[124.79655730000002,-9.628774],[124.7927605000001,-9.632952399999965],[124.79349650000006,-9.639150399999949],[124.79633510000008,-9.64391809999995],[124.79890440000008,-9.645082499999944],[124.8000336,-9.648950599999978],[124.80436710000004,-9.652857799999936],[124.81564190000006,-9.654792],[124.82077290000007,-9.657965199999978],[124.82134440000004,-9.6691542],[124.81347660000006,-9.6862154],[124.8061384,-9.725375799999938],[124.79810670000006,-9.74825439999995],[124.79938510000011,-9.756020499999977],[124.79711910000003,-9.761212299999954],[124.79774510000004,-9.770868],[124.7998113000001,-9.7744266],[124.80285990000004,-9.774744899999973],[124.80941010000004,-9.78072359999993],[124.80753620000007,-9.787015099999962],[124.80813720000003,-9.789514],[124.80963540000005,-9.790701399999932],[124.81264390000001,-9.788533799999925],[124.8213644000001,-9.778786799999978],[124.82142610000005,-9.776716299999975],[124.81876320000003,-9.775473899999952],[124.8199264000001,-9.774021199999936],[124.82396620000009,-9.775292299999933],[124.83442980000007,-9.755266],[124.84466390000011,-9.74107179999993],[124.853954,-9.731493099999966],[124.85247650000008,-9.731564399999968],[124.85307570000009,-9.730449199999953],[124.85587310000005,-9.729584199999977],[124.86351960000002,-9.722599699999932],[124.86271840000006,-9.72087739999995],[124.8644021,-9.718653399999937],[124.86605120000002,-9.719747299999938],[124.86826790000009,-9.718541899999934],[124.89548740000009,-9.695368899999949],[124.91117830000007,-9.689250399999935],[124.91764850000004,-9.684757599999955],[124.92784930000005,-9.682467599999939],[124.937642,-9.682502799999952],[124.93855760000008,-9.6802196],[124.94704350000006,-9.677911599999959],[124.949187,-9.672728699999936],[124.97929330000011,-9.64365689999994],[124.98387390000005,-9.637167199999965],[124.98694120000005,-9.629041],[124.98588740000002,-9.623008599999935],[124.98627290000002,-9.594133899999974],[124.98898330000009,-9.5790222],[124.99276020000002,-9.567990299999963],[124.99219690000007,-9.564224],[124.98983260000011,-9.562095099999965],[124.991255,-9.558570599999939],[124.99571220000007,-9.555308799999978],[125.00518520000003,-9.535349199999928],[125.01706230000002,-9.519551899999954],[125.03153,-9.504995899999926],[125.0306422000001,-9.503835],[125.03210490000004,-9.504350699999975],[125.04872860000012,-9.490920599999981],[125.06317560000002,-9.481715099999974],[125.07115010000007,-9.482074799999964],[125.08793770000011,-9.463002],[125.0875056000001,-9.460048699999959],[125.08922170000005,-9.456838699999935],[125.08474520000004,-9.454641599999945],[125.08732290000012,-9.451263799999936],[125.083688,-9.449721599999975],[125.08115770000006,-9.443933399999935],[125.07870290000005,-9.442574],[125.08087220000004,-9.438656199999969],[125.07867610000005,-9.434692],[125.081478,-9.431701499999974],[125.0792679000001,-9.430141699999979],[125.0806454000001,-9.427204899999936],[125.07822150000004,-9.426423799999952],[125.08100130000003,-9.421282099999928],[125.07872590000011,-9.420572399999969],[125.07788820000007,-9.418263299999978],[125.08110970000007,-9.413164299999949],[125.07721920000006,-9.404943499999945],[125.07697660000008,-9.39831909999998],[125.08023040000012,-9.39434979999993],[125.08000060000006,-9.392073299999936],[125.07507020000003,-9.383795199999952],[125.07096380000007,-9.382797899999957],[125.06780760000004,-9.379345199999932],[125.0668270000001,-9.373592899999949],[125.05892770000003,-9.370909099999949],[125.0586518,-9.36694239999997],[125.05343160000007,-9.364080099999967],[125.05071530000009,-9.360199899999941],[125.05002650000006,-9.357989199999963],[125.05150890000004,-9.355079],[125.0511557000001,-9.354113799999936],[125.0495069000001,-9.355126699999971],[125.0488375000001,-9.353503499999931],[125.05120620000002,-9.344766799999945],[125.05025920000003,-9.334286599999928],[125.05217860000005,-9.330813399999954],[125.0493249000001,-9.327602799999966],[125.04904310000006,-9.325127599999973],[125.04395540000007,-9.321938799999941],[125.04081220000012,-9.3210439],[125.0356306000001,-9.323514199999977],[125.03410930000007,-9.3201241],[125.02947690000008,-9.320096299999932],[125.02636350000012,-9.314012299999945],[125.0240179000001,-9.313239199999941],[125.01409620000004,-9.302547299999958],[125.00812330000008,-9.302110899999946],[125.00649360000011,-9.31156649999997],[125.00423160000003,-9.313070799999934],[125.0023288000001,-9.319924499999956],[124.98819110000011,-9.330164399999944],[124.98807540000007,-9.334549299999935],[124.99378110000009,-9.340691499999934],[124.995264,-9.344588299999941],[124.99553760000003,-9.3575587],[124.98750340000004,-9.36365139999998],[124.98637530000008,-9.370753899999954],[124.98236210000005,-9.370008],[124.97675590000006,-9.373067699999979],[124.97582020000004,-9.378713699999935],[124.96833020000008,-9.3831127],[124.96626130000004,-9.389714199999958],[124.9613389000001,-9.393149599999958],[124.95157340000003,-9.391974199999936],[124.94525240000007,-9.389613499999939],[124.93112380000002,-9.377369399999964],[124.92815440000004,-9.3772319],[124.92372140000009,-9.379714899999954],[124.92265680000003,-9.378645],[124.921458,-9.381110399999955],[124.91989290000004,-9.381326799999954],[124.91558470000007,-9.377345399999967],[124.91540960000009,-9.372699699999941],[124.9014221000001,-9.369357899999954],[124.89814530000001,-9.360886799999946],[124.89576530000011,-9.370916],[124.88949040000011,-9.379492599999935],[124.88789370000006,-9.3896261],[124.88231850000011,-9.394682199999977],[124.88081080000006,-9.392484399999944],[124.88044750000006,-9.385570599999937],[124.87436160000004,-9.3864527],[124.872169,-9.381076299999961],[124.86784380000006,-9.38329589999995],[124.86549470000011,-9.382133099999976],[124.86518680000006,-9.38445809999996],[124.86405380000008,-9.383352099999968],[124.86280880000004,-9.384190399999966],[124.8625962000001,-9.382410499999935],[124.861374,-9.386647799999935],[124.857777,-9.386332299999935],[124.85718880000002,-9.384852699999954],[124.84990280000011,-9.388724099999934],[124.84499330000006,-9.387655799999948],[124.8427766000001,-9.383897499999932],[124.84653580000008,-9.375624],[124.84838020000007,-9.362279799999953],[124.84626580000008,-9.355962499999976],[124.83842620000007,-9.349683899999945],[124.8279169000001,-9.347423799999945],[124.81532090000007,-9.341069599999969]]]},"properties":{"shapeName":"Malaka","shapeISO":"","shapeID":"22746128B50590730269794","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[112.69865080000011,-8.4633494],[112.6994519000001,-8.46124569999995],[112.6977505000001,-8.462855399999967],[112.69865080000011,-8.4633494]]],[[[112.66934440000011,-8.445842399999947],[112.66889330000004,-8.444934899999964],[112.66793140000004,-8.446057799999949],[112.66934440000011,-8.445842399999947]]],[[[112.73437490000003,-8.435326399999951],[112.73539730000005,-8.432769599999972],[112.73361200000011,-8.433955899999944],[112.73437490000003,-8.435326399999951]]],[[[112.69880340000009,-8.42987359999995],[112.69184530000007,-8.431031299999972],[112.69189110000002,-8.4328834],[112.69035760000008,-8.433063599999969],[112.69140290000007,-8.435002399999973],[112.68717620000007,-8.435405799999955],[112.68290370000011,-8.438909599999931],[112.68377340000006,-8.440725399999963],[112.681683,-8.440014899999937],[112.68015710000009,-8.44147309999994],[112.67798270000003,-8.445533799999964],[112.68005790000007,-8.456133],[112.68060720000005,-8.452495699999929],[112.68214080000007,-8.453037399999971],[112.6810650000001,-8.454696799999965],[112.68240780000008,-8.454761599999927],[112.68369710000002,-8.452428],[112.68652770000006,-8.452862799999934],[112.68876310000007,-8.451066099999935],[112.68914450000011,-8.457534899999928],[112.69209710000007,-8.4562922],[112.6914868,-8.458130899999958],[112.69553040000005,-8.458196699999974],[112.69756740000003,-8.461663399999964],[112.70068780000008,-8.46095859999997],[112.702145,-8.463309399999957],[112.70412870000007,-8.464082799999971],[112.70489920000011,-8.462316599999951],[112.7066158,-8.464038],[112.7084698000001,-8.461492599999929],[112.70744750000006,-8.460428399999955],[112.70993460000011,-8.459921899999927],[112.71049920000007,-8.458303499999943],[112.71246760000008,-8.458686899999975],[112.71147580000002,-8.449490599999933],[112.71236080000006,-8.434503699999937],[112.70595970000011,-8.431123799999966],[112.69880340000009,-8.42987359999995]]],[[[112.754753,-8.423510399999941],[112.75461570000004,-8.422481299999959],[112.75421130000007,-8.424772099999927],[112.754753,-8.423510399999941]]],[[[112.79863440000008,-8.413428799999963],[112.79818550000005,-8.412441399999977],[112.796032,-8.413687599999946],[112.79863440000008,-8.413428799999963]]],[[[112.797657,-8.40919],[112.79535080000005,-8.40766],[112.7994804000001,-8.411203899999975],[112.79929030000005,-8.409140399999956],[112.797657,-8.40919]]],[[[112.93289210000012,-8.384007699999927],[112.93278370000007,-8.382143699999972],[112.93175880000001,-8.383040299999948],[112.93289210000012,-8.384007699999927]]],[[[112.3589574,-8.348452599999973],[112.36514000000011,-8.35314],[112.3699600000001,-8.36952],[112.3735,-8.37305],[112.37171,-8.37434],[112.37263,-8.37566],[112.3841000000001,-8.37605],[112.38821,-8.3725],[112.3889031000001,-8.369443599999954],[112.38888820000011,-8.375126],[112.39235780000001,-8.374296],[112.39242800000011,-8.376794],[112.394263,-8.37697],[112.393093,-8.380658],[112.3936268000001,-8.379648],[112.39391590000002,-8.380628],[112.39864490000002,-8.380106],[112.39895020000006,-8.378865],[112.404816,-8.379087],[112.405,-8.380296],[112.407093,-8.377526],[112.40790410000011,-8.380103],[112.410153,-8.379239],[112.41363380000007,-8.380946],[112.42078,-8.38157],[112.42131,-8.3835],[112.4242200000001,-8.38377],[112.42217,-8.38585],[112.42545,-8.38579],[112.42477,-8.38891],[112.42593000000011,-8.388],[112.42664,-8.38941],[112.4277,-8.38853],[112.42836000000011,-8.38973],[112.4317400000001,-8.38994],[112.43495,-8.38905],[112.43787,-8.39219],[112.43691,-8.39389],[112.4386,-8.39339],[112.43842,-8.39473],[112.43964,-8.39439],[112.4433,-8.39845],[112.44430000000011,-8.39702],[112.4465,-8.39858],[112.44638,-8.39717],[112.45135,-8.39519],[112.45288790000006,-8.396448],[112.45232810000005,-8.397577],[112.46123000000011,-8.39575],[112.4641894,-8.39678],[112.4648611,-8.394783],[112.468747,-8.395309],[112.468838,-8.393927],[112.47234190000006,-8.393156],[112.48437890000002,-8.39647],[112.4837791000001,-8.397868],[112.48692190000008,-8.400012],[112.48963490000006,-8.399945],[112.490685,-8.401949],[112.4920462,-8.400584],[112.49321510000004,-8.402371],[112.493623,-8.400243],[112.49541110000007,-8.403],[112.4960771000001,-8.401144],[112.50015440000004,-8.4012766],[112.5014609000001,-8.403696399999944],[112.5021650000001,-8.402822399999934],[112.50332390000005,-8.403808],[112.50267190000011,-8.404928199999972],[112.50447080000004,-8.404447599999969],[112.50467,-8.40233],[112.50595370000008,-8.403781],[112.51010020000001,-8.395746699999961],[112.51130400000011,-8.398130799999933],[112.51183390000006,-8.396898399999941],[112.51521,-8.3979],[112.51628,-8.39584],[112.52126,-8.39799],[112.523107,-8.400411399999939],[112.52191140000002,-8.401232299999947],[112.52317790000006,-8.403278499999942],[112.52192900000011,-8.405426499999976],[112.5247442000001,-8.403170699999976],[112.52661080000007,-8.405342099999928],[112.5286996000001,-8.402254599999935],[112.54067,-8.40406],[112.54553,-8.40341],[112.54671,-8.40585],[112.55094,-8.40451],[112.55283,-8.40199],[112.55727,-8.40288],[112.56767,-8.40614],[112.56841,-8.40806],[112.57318,-8.40765],[112.57676,-8.41015],[112.57676,-8.41229],[112.57956,-8.41389],[112.57901,-8.41479],[112.58614000000011,-8.41722],[112.58623000000011,-8.4185],[112.59108,-8.41707],[112.5931,-8.41816],[112.59402000000011,-8.41614],[112.5962300000001,-8.41821],[112.59773,-8.41761],[112.61032000000012,-8.4215],[112.61478000000011,-8.42665],[112.61545,-8.42974],[112.61364,-8.43204],[112.61516,-8.43063],[112.61668,-8.43285],[112.61581,-8.4339],[112.61824,-8.43429],[112.62045,-8.43109],[112.6218,-8.43243],[112.62188,-8.42991],[112.6243,-8.42879],[112.63244,-8.42977],[112.64111,-8.43618],[112.64278,-8.44274],[112.65172,-8.44878],[112.6592700000001,-8.44546],[112.6615,-8.44647],[112.66305000000011,-8.44358],[112.6660700000001,-8.44421],[112.66541,-8.44331],[112.66762,-8.44088],[112.66675470000007,-8.435681899999963],[112.66866430000005,-8.437486399999955],[112.66850430000011,-8.441836399999943],[112.67020430000002,-8.445096399999954],[112.67166430000009,-8.445336399999974],[112.6825143000001,-8.435236399999951],[112.68168430000003,-8.433136399999967],[112.68609430000004,-8.432016399999952],[112.69297430000006,-8.4264564],[112.7004243,-8.426296399999956],[112.7043943000001,-8.420366399999978],[112.70891430000006,-8.417836399999942],[112.7150143,-8.418386399999974],[112.71552430000008,-8.420776399999966],[112.72718770000006,-8.417325399999982],[112.7302049000001,-8.420143199999927],[112.73233030000006,-8.417913],[112.73977330000002,-8.416192599999931],[112.74095660000012,-8.416886099999942],[112.74256580000008,-8.425027399999976],[112.74437590000002,-8.417911799999956],[112.75019240000006,-8.41503819999997],[112.75408220000008,-8.422226099999932],[112.7559596000001,-8.420994099999973],[112.75753750000001,-8.42168289999995],[112.75754360000008,-8.4187687],[112.75383560000012,-8.412886699999945],[112.75545380000005,-8.411007],[112.7597803000001,-8.411683799999935],[112.76441060000002,-8.408059399999956],[112.76539810000008,-8.408793199999934],[112.764433,-8.412227799999926],[112.7663248,-8.412155599999949],[112.76578150000012,-8.407763399999965],[112.76656490000005,-8.4058841],[112.76813590000006,-8.406068399999981],[112.767197,-8.404018],[112.76829610000004,-8.4020791],[112.76612890000001,-8.398575799999946],[112.7665267000001,-8.392459599999938],[112.768385,-8.392191799999978],[112.76844730000005,-8.389243299999976],[112.772439,-8.386603099999945],[112.77772130000005,-8.3858393],[112.78368830000011,-8.387288],[112.783172,-8.388389699999948],[112.78550450000012,-8.391230699999937],[112.7832462,-8.397469199999932],[112.78611250000006,-8.398564299999975],[112.78722960000005,-8.397274599999946],[112.79244890000007,-8.403404699999953],[112.7993699000001,-8.405077699999936],[112.801838,-8.402590399999951],[112.80180130000008,-8.399636699999974],[112.8003844000001,-8.398315599999933],[112.80218150000007,-8.3980081],[112.80359950000002,-8.399633799999947],[112.80454670000006,-8.3965649],[112.806189,-8.3980212],[112.8066937000001,-8.396764699999949],[112.80860860000007,-8.3983627],[112.80942290000007,-8.397633299999939],[112.81011,-8.40165],[112.81292,-8.40183],[112.81252,-8.40053],[112.81556,-8.39886],[112.81956,-8.39192],[112.81585,-8.38651],[112.81821,-8.38469],[112.81622,-8.38321],[112.81718,-8.3801],[112.81898,-8.37827],[112.8212400000001,-8.37913],[112.81988,-8.37624],[112.8205,-8.37298],[112.82666,-8.37283],[112.83138,-8.369],[112.83535,-8.36984],[112.83865,-8.37244],[112.83742,-8.37468],[112.83893,-8.37813],[112.83759,-8.38192],[112.83791,-8.38322],[112.83932,-8.38179],[112.84016,-8.38307],[112.83970000000011,-8.3861],[112.84246,-8.38311],[112.84456000000011,-8.37673],[112.84819,-8.37763],[112.84598,-8.38823],[112.84985,-8.38788],[112.8515000000001,-8.39133],[112.84776000000011,-8.39413],[112.8436,-8.4021],[112.84476,-8.40351],[112.84575,-8.40158],[112.84759,-8.40576],[112.85449,-8.40006],[112.85646,-8.40284],[112.85675,-8.40056],[112.8586600000001,-8.39937],[112.85849,-8.40235],[112.86318,-8.39482],[112.86589,-8.396614],[112.86729580000008,-8.401286099999936],[112.86966,-8.40215],[112.86775000000011,-8.40344],[112.8686,-8.40716],[112.86965,-8.40767],[112.87157,-8.40556],[112.87202,-8.4088],[112.87646,-8.40698],[112.87716000000012,-8.40918],[112.8795268,-8.40594249999998],[112.88261120000004,-8.405984499999931],[112.88401310000006,-8.403205299999968],[112.88554990000011,-8.403942499999971],[112.88527060000001,-8.4022566],[112.89555760000007,-8.402345],[112.89677940000001,-8.400947599999938],[112.89881230000003,-8.401921099999981],[112.89961260000007,-8.397447199999931],[112.89455530000009,-8.392453099999955],[112.89302320000002,-8.3880555],[112.89639530000011,-8.385178],[112.89625310000008,-8.381952299999966],[112.8992144,-8.3807929],[112.9073522000001,-8.382982399999946],[112.90819210000006,-8.38520669999997],[112.9054655000001,-8.388141099999928],[112.9055436000001,-8.393285],[112.91164,-8.39235],[112.91109,-8.39406],[112.91238,-8.39546],[112.91093,-8.39895],[112.9138200000001,-8.39904],[112.91594,-8.39795],[112.91505,-8.39443],[112.92257,-8.39235],[112.92258,-8.38901],[112.92452,-8.38973],[112.9251,-8.388],[112.92918,-8.39044],[112.92825,-8.38872],[112.92918,-8.38516],[112.93244,-8.38829],[112.93105,-8.38079],[112.93297,-8.38061],[112.93497,-8.38321],[112.93587,-8.38097],[112.93633000000011,-8.38228],[112.93813000000011,-8.38168],[112.9394,-8.37567],[112.94356,-8.37455],[112.94028,-8.37386],[112.93987,-8.37242],[112.94509,-8.37041],[112.94482,-8.36811],[112.9458800000001,-8.36673],[112.94691000000012,-8.36748],[112.94563,-8.36457],[112.94817,-8.36351],[112.9471400000001,-8.36343],[112.94736000000012,-8.36035],[112.959591,-8.35315909999997],[112.9566268000001,-8.3511178],[112.95482630000004,-8.347263099999964],[112.93815610000001,-8.337135099999955],[112.93469990000006,-8.331777299999942],[112.93475330000001,-8.326111599999933],[112.94264980000003,-8.316861899999935],[112.94132080000009,-8.310885399999961],[112.93339230000004,-8.307378099999937],[112.92858490000003,-8.308452099999954],[112.91854090000004,-8.307156299999974],[112.91487880000011,-8.301584],[112.91691580000008,-8.295269699999949],[112.91617330000008,-8.29130749999996],[112.91295190000005,-8.293161599999962],[112.90936670000008,-8.287925499999972],[112.90591710000001,-8.288053099999956],[112.90716930000008,-8.2833134],[112.9038524,-8.280849399999965],[112.8994090000001,-8.267231399999957],[112.8999751,-8.266256299999952],[112.90262540000003,-8.268675799999926],[112.90489670000011,-8.273886199999936],[112.90784810000002,-8.275165],[112.9093554000001,-8.266803899999957],[112.91149890000008,-8.262984],[112.91493220000007,-8.262067599999966],[112.91694630000006,-8.25961469999993],[112.9207,-8.249999799999955],[112.91964710000002,-8.248344199999963],[112.92100640000001,-8.241382399999964],[112.9142776000001,-8.228117],[112.91542820000006,-8.223461399999962],[112.91241670000011,-8.219421699999941],[112.91313850000006,-8.215197399999965],[112.91137060000005,-8.21088949999995],[112.9114512000001,-8.202733499999965],[112.90942690000008,-8.199857599999973],[112.9089507000001,-8.194510199999968],[112.90652460000001,-8.191571],[112.90584550000005,-8.186607099999947],[112.9068069000001,-8.185595299999932],[112.90341940000008,-8.174438299999963],[112.90443410000012,-8.170690299999933],[112.9031371000001,-8.157747],[112.90354910000008,-8.1542947],[112.90646360000005,-8.151865699999973],[112.9075011000001,-8.148487799999941],[112.90968320000002,-8.148094],[112.91044610000006,-8.143423799999937],[112.91710650000005,-8.134217],[112.9195251000001,-8.126962399999968],[112.9193954000001,-8.122618399999965],[112.9254989000001,-8.11075],[112.9220199,-8.107416899999976],[112.92130270000007,-8.097683699999948],[112.92315670000005,-8.086958699999968],[112.91635890000009,-8.0859211],[112.91215510000006,-8.081985199999963],[112.90582270000004,-8.081559899999945],[112.90369410000005,-8.075077799999974],[112.90082540000003,-8.071510099999955],[112.89997860000005,-8.061138],[112.90177910000011,-8.0573967],[112.90892780000001,-8.050852599999928],[112.90898120000008,-8.041626699999938],[112.9175719000001,-8.032985499999938],[112.92269890000011,-8.031758099999934],[112.92796320000002,-8.024024699999927],[112.93473040000003,-8.01875659999996],[112.93441,-8.013053699999944],[112.92620080000006,-8.003046799999936],[112.92587270000001,-8.000288799999964],[112.92786400000011,-7.996821699999941],[112.93395220000002,-8.0009382],[112.93628680000006,-8.0002849],[112.93791950000002,-7.990414899999962],[112.9421996000001,-7.983356199999946],[112.93553920000011,-7.979806699999926],[112.92781820000005,-7.967256799999973],[112.92894740000008,-7.9599989],[112.93531790000009,-7.956195599999944],[112.92011250000007,-7.954252499999939],[112.91526790000012,-7.951325699999927],[112.91179650000004,-7.954194299999926],[112.90898890000005,-7.953608299999928],[112.90252680000003,-7.9475749],[112.89854420000006,-7.946816299999966],[112.89326470000003,-7.950186],[112.88980090000007,-7.949819799999943],[112.8850936,-7.9525025],[112.88066090000007,-7.948295399999949],[112.87389370000005,-7.945416699999953],[112.87002560000008,-7.946991199999957],[112.85620870000002,-7.939671299999929],[112.84649650000006,-7.942309699999953],[112.83583830000009,-7.941030299999966],[112.833023,-7.938101599999925],[112.82337180000002,-7.932934099999954],[112.8216476,-7.928097499999978],[112.81339260000004,-7.927922],[112.80541220000009,-7.925457799999947],[112.80121610000003,-7.919247],[112.79480740000008,-7.915833799999973],[112.784378,-7.9007104],[112.78509510000004,-7.8970931],[112.77990710000006,-7.891516],[112.78005970000004,-7.887513899999931],[112.77725210000006,-7.879388199999937],[112.78073110000003,-7.874063799999931],[112.77664940000011,-7.867966899999942],[112.76707450000004,-7.868119499999978],[112.7633743,-7.8640507],[112.75863640000011,-7.864786399999957],[112.76061240000001,-7.8583601],[112.75825880000002,-7.853454599999964],[112.74357770000006,-7.848031499999934],[112.73965910000004,-7.844685899999945],[112.73430560000008,-7.834920299999965],[112.73658990000001,-7.835208799999975],[112.73519370000008,-7.8329804],[112.736777,-7.827643499999965],[112.73356790000003,-7.824210099999959],[112.73347850000005,-7.818363899999952],[112.7285442000001,-7.819995799999958],[112.7194062000001,-7.819403],[112.71496780000007,-7.822072799999944],[112.71235760000002,-7.821164499999952],[112.71033580000005,-7.824957099999949],[112.7069854,-7.823417699999936],[112.70701290000011,-7.822146399999951],[112.70551990000001,-7.822778399999947],[112.70553270000005,-7.818275699999958],[112.70110920000002,-7.817117899999971],[112.69960780000008,-7.81401],[112.68890470000008,-7.813907299999926],[112.669464,-7.806842599999925],[112.6614303,-7.80593],[112.6606614000001,-7.804633299999978],[112.65651060000005,-7.805638399999964],[112.6546231000001,-7.801696599999957],[112.65644240000006,-7.797453099999927],[112.64161150000007,-7.7951781],[112.6381636000001,-7.790699199999949],[112.6305685000001,-7.791717099999971],[112.62343380000004,-7.789795199999958],[112.620805,-7.787306199999932],[112.61647140000002,-7.787788499999976],[112.60234560000004,-7.769240499999967],[112.59145610000007,-7.765918399999975],[112.5882941000001,-7.765459299999975],[112.58819590000007,-7.76669],[112.58472610000001,-7.769303699999966],[112.58269670000004,-7.773647599999947],[112.5831849000001,-7.779569899999956],[112.58607940000002,-7.7846963],[112.577057,-7.791907699999967],[112.57195330000002,-7.799630799999932],[112.56918180000002,-7.806971699999963],[112.56516720000002,-7.809955399999978],[112.56315940000002,-7.813688399999933],[112.56458180000004,-7.828731699999935],[112.56358310000007,-7.8318011],[112.56568120000009,-7.835071299999981],[112.56413830000008,-7.8436407],[112.565442,-7.848261899999954],[112.564421,-7.853102099999944],[112.56556410000007,-7.868228],[112.56419160000007,-7.878202399999964],[112.5651031000001,-7.882846299999926],[112.56628650000005,-7.882505699999967],[112.57046680000008,-7.889384099999972],[112.5724351,-7.891088299999979],[112.58347490000006,-7.8905357],[112.5947053000001,-7.903395],[112.59421710000004,-7.905582799999934],[112.589999,-7.908847199999968],[112.58561370000007,-7.908699499999955],[112.57994170000006,-7.911599199999955],[112.5797047000001,-7.918843899999956],[112.57448340000008,-7.914456299999927],[112.56716730000005,-7.912579899999969],[112.56074430000001,-7.9146755],[112.56058680000001,-7.916177599999969],[112.55688140000007,-7.916191399999946],[112.55666420000011,-7.917457699999943],[112.55119960000002,-7.919111599999951],[112.55075980000004,-7.9204554],[112.54904340000007,-7.919433899999945],[112.54812370000002,-7.922899699999959],[112.54286680000007,-7.922732],[112.53426150000007,-7.925503699999979],[112.53149770000005,-7.924711099999968],[112.5227331000001,-7.927209499999947],[112.51265120000005,-7.922521899999936],[112.48488020000002,-7.933914499999958],[112.47409120000009,-7.942272199999934],[112.47365570000011,-7.9317731],[112.47612930000003,-7.915203],[112.47531290000006,-7.904307199999948],[112.47885130000009,-7.894932],[112.48804640000003,-7.881661799999961],[112.48960280000006,-7.876242],[112.48762680000004,-7.871347799999967],[112.48880440000005,-7.860954699999979],[112.48684220000007,-7.858318299999951],[112.49041410000007,-7.859645799999953],[112.49504850000005,-7.854374599999971],[112.49285850000001,-7.845776699999931],[112.49617940000007,-7.837767499999927],[112.4924744000001,-7.823511099999962],[112.49511890000008,-7.814054399999975],[112.49169330000007,-7.807051499999943],[112.48731420000001,-7.803337299999953],[112.48981640000011,-7.7969073],[112.488479,-7.795471899999939],[112.48779470000011,-7.788575],[112.48394180000003,-7.781954599999949],[112.48379690000002,-7.775921699999969],[112.47816550000005,-7.768938299999945],[112.47464750000006,-7.767135],[112.47082510000007,-7.7684416],[112.46474450000005,-7.768086799999935],[112.460586,-7.770412],[112.45583320000003,-7.779130799999962],[112.44332120000001,-7.776852499999961],[112.43593590000012,-7.767039199999942],[112.430397,-7.7714728],[112.42767330000004,-7.771106599999939],[112.422203,-7.766941399999951],[112.42210380000006,-7.769044699999938],[112.41811370000005,-7.7742876],[112.4053192,-7.782097699999952],[112.396759,-7.785429399999941],[112.38902280000002,-7.782931699999949],[112.38185880000003,-7.784899099999961],[112.37700240000004,-7.781204399999979],[112.37371630000007,-7.774856599999964],[112.37042630000008,-7.772887],[112.3673576000001,-7.768479599999978],[112.35756640000011,-7.766259499999933],[112.34940180000001,-7.761085],[112.33937420000007,-7.768169099999966],[112.33331250000003,-7.775723299999981],[112.32873490000009,-7.777273],[112.31038350000006,-7.776838699999928],[112.31045590000008,-7.7752679],[112.30680840000002,-7.774748199999976],[112.30609890000005,-7.772753099999932],[112.30065150000007,-7.771792799999957],[112.29914850000011,-7.769389499999932],[112.29207610000003,-7.768800599999963],[112.28770440000005,-7.770967799999937],[112.2882919000001,-7.779549499999973],[112.2926936,-7.7812823],[112.29607340000007,-7.788902099999973],[112.30038410000009,-7.789264499999945],[112.30174210000007,-7.793227],[112.30537230000004,-7.795533099999943],[112.30714320000004,-7.799251899999945],[112.30578050000008,-7.802408499999956],[112.30655110000009,-7.806387199999961],[112.30534560000001,-7.812165599999958],[112.30842180000002,-7.823220299999946],[112.3066401000001,-7.8284753],[112.30950880000012,-7.833977499999946],[112.307632,-7.838922799999978],[112.31558180000002,-7.837501799999927],[112.31935070000009,-7.839080199999955],[112.31731370000011,-7.846856899999977],[112.320312,-7.850091799999973],[112.32125040000005,-7.855447099999935],[112.3190227,-7.8573406],[112.31819870000004,-7.861468099999968],[112.32257030000005,-7.865529399999957],[112.32598070000006,-7.872869799999933],[112.32522540000002,-7.883159899999953],[112.32263140000009,-7.889774599999953],[112.323257,-7.892198899999926],[112.3178249,-7.895637299999976],[112.31195020000007,-7.904717199999936],[112.31352190000007,-7.908249199999943],[112.31349130000001,-7.921697],[112.310554,-7.926438599999926],[112.30657950000011,-7.929297299999973],[112.31710050000004,-7.931435],[112.33347320000007,-7.938320499999975],[112.3412856000001,-7.939399599999945],[112.34559630000001,-7.945292799999947],[112.36040490000005,-7.947981699999957],[112.36025990000007,-7.950123699999949],[112.363182,-7.950228599999946],[112.3648452000001,-7.955442299999959],[112.370491,-7.957267199999933],[112.37402340000006,-7.955386499999975],[112.37367240000003,-7.953738099999953],[112.37774650000006,-7.950139899999954],[112.38477320000004,-7.948265399999968],[112.40313720000006,-7.934642199999928],[112.41030120000005,-7.934628799999928],[112.4198871000001,-7.929814399999941],[112.42419770000004,-7.925167399999964],[112.43161770000006,-7.921521],[112.437973,-7.913669499999969],[112.44515990000002,-7.910776],[112.452423,-7.9186972],[112.4507751000001,-7.926610299999936],[112.45786910000004,-7.932967399999939],[112.465866,-7.946248399999945],[112.46440880000011,-7.951796399999978],[112.46535490000008,-7.955359299999941],[112.47451010000009,-7.958117799999968],[112.47895810000011,-7.971164599999952],[112.46842950000007,-7.987055199999929],[112.47133630000008,-7.995301099999949],[112.46796410000002,-8.000295499999936],[112.46672810000007,-8.010782099999972],[112.46484370000007,-8.014855199999943],[112.46303550000005,-8.015174699999932],[112.464241,-8.017930799999931],[112.46450040000002,-8.0298518],[112.45974730000012,-8.036715399999935],[112.45928190000006,-8.043322399999965],[112.4559478000001,-8.049981899999977],[112.45690150000007,-8.051100599999927],[112.45546720000004,-8.056261899999981],[112.4534225000001,-8.056946599999947],[112.45511620000002,-8.05929649999996],[112.45424650000007,-8.063813099999948],[112.45539090000011,-8.06369189999998],[112.4556947000001,-8.066170299999953],[112.45780160000004,-8.067510199999958],[112.45814440000004,-8.070822199999952],[112.45661160000009,-8.072788099999968],[112.45703760000004,-8.076209699999936],[112.45576470000003,-8.076606599999934],[112.4568614000001,-8.077893099999926],[112.4553274000001,-8.078409499999964],[112.45678710000004,-8.0810088],[112.45409680000012,-8.08789],[112.454879,-8.093235299999947],[112.4531783000001,-8.097817299999974],[112.45456760000002,-8.099760199999935],[112.45426940000004,-8.106706499999973],[112.4559478000001,-8.11001],[112.4575923000001,-8.109541499999978],[112.45792380000012,-8.114119399999936],[112.45915840000009,-8.114940599999954],[112.4567336,-8.122881699999937],[112.45773310000004,-8.126562],[112.45519250000007,-8.12739929999998],[112.45510860000002,-8.131924499999968],[112.4531707000001,-8.1319283],[112.45255270000007,-8.1442612],[112.44741050000005,-8.148046299999976],[112.44033810000008,-8.148786399999949],[112.4363555000001,-8.154677299999946],[112.4308013000001,-8.15892969999993],[112.42546840000011,-8.159706],[112.42247770000006,-8.158055199999978],[112.41786190000005,-8.159655399999963],[112.41558070000008,-8.166308299999969],[112.41165350000006,-8.160296199999948],[112.39586640000005,-8.164811],[112.39289090000011,-8.161850799999968],[112.39104580000003,-8.16195319999997],[112.3829879000001,-8.169193099999973],[112.37867160000008,-8.170848299999932],[112.37313070000005,-8.169898899999964],[112.36602080000011,-8.17552269999993],[112.36684090000006,-8.183262399999933],[112.37737620000007,-8.18735909999998],[112.382181,-8.191942199999971],[112.38531320000004,-8.192279299999939],[112.386589,-8.200959099999977],[112.38516230000005,-8.205779],[112.3829498,-8.2078465],[112.38619990000007,-8.212357399999973],[112.38578790000008,-8.216103399999952],[112.3899841000001,-8.217763799999943],[112.3934326000001,-8.227907],[112.39282220000007,-8.23212609999996],[112.38835140000003,-8.236122],[112.38221030000011,-8.237800199999981],[112.38145640000005,-8.240136199999938],[112.381546,-8.267536],[112.38506310000002,-8.285056],[112.38448330000006,-8.289101499999958],[112.3828582000001,-8.290758],[112.38269040000012,-8.2959088],[112.37944030000006,-8.3020524],[112.38063810000006,-8.305599099999938],[112.37931060000005,-8.306700599999942],[112.37618250000003,-8.305806],[112.37524410000003,-8.308343799999932],[112.37136070000008,-8.310913],[112.37009420000004,-8.323683599999981],[112.36429590000012,-8.32848729999995],[112.36215210000012,-8.3376053],[112.36306760000002,-8.339890299999979],[112.3589574,-8.348452599999973]],[[112.63149750000002,-7.912425199999973],[112.639786,-7.920867299999941],[112.64274710000007,-7.919673799999941],[112.64594690000001,-7.913811],[112.64585670000008,-7.916397199999949],[112.6500072,-7.918220199999951],[112.64971440000011,-7.919777499999952],[112.6627916000001,-7.926985599999966],[112.66215610000006,-7.932125799999937],[112.66563670000005,-7.939445399999954],[112.66438210000001,-7.940478299999938],[112.66545850000011,-7.943417499999953],[112.66863630000012,-7.946128099999953],[112.6668198000001,-7.948938799999951],[112.66595450000011,-7.9460838],[112.6636433000001,-7.948088699999971],[112.66358590000004,-7.958336899999949],[112.65921690000005,-7.961543],[112.65913850000004,-7.963835699999947],[112.657227,-7.965018799999939],[112.663533,-7.968216499999926],[112.66338340000004,-7.971390099999951],[112.66808380000009,-7.969213799999977],[112.67639740000004,-7.972417099999973],[112.67551390000006,-7.974648699999932],[112.67850670000007,-7.976727799999935],[112.684271,-7.974845699999946],[112.68971510000006,-7.9754667],[112.6887726000001,-7.980687],[112.69475360000001,-7.982663899999977],[112.69166590000009,-7.9923123],[112.68426760000011,-8.004951],[112.67928820000009,-8.005376199999944],[112.67894620000004,-8.0102806],[112.67201960000011,-8.00891329999996],[112.6732214000001,-8.018492699999967],[112.6720130000001,-8.024908899999957],[112.6754145000001,-8.027695499999936],[112.67281090000006,-8.031920499999956],[112.6679382000001,-8.034989199999927],[112.66545860000008,-8.040863799999954],[112.66263570000001,-8.039922599999954],[112.65984340000011,-8.041954799999928],[112.65641010000002,-8.050208899999973],[112.64876550000008,-8.047944799999925],[112.64553190000004,-8.051314499999933],[112.6454427000001,-8.04828809999998],[112.64228130000004,-8.049856899999952],[112.6316845,-8.045888299999945],[112.63093560000004,-8.035035899999968],[112.62192890000006,-8.029509399999938],[112.6209,-8.027419699999939],[112.61759830000005,-8.026597099999947],[112.61887580000007,-8.023424599999942],[112.61348540000006,-8.021269099999927],[112.61349650000011,-8.019584599999973],[112.61791220000009,-8.016704599999969],[112.61852370000008,-8.011304],[112.61601980000012,-8.010005],[112.6133248000001,-8.015164899999945],[112.60933510000007,-8.016679099999976],[112.60810660000004,-8.019074699999976],[112.60615710000002,-8.010798],[112.60097730000007,-8.006362899999942],[112.59697660000006,-8.006212],[112.60136480000006,-7.992426399999943],[112.599943,-7.991590799999926],[112.59813680000002,-7.996059799999955],[112.5891094000001,-7.992435599999965],[112.59104910000008,-7.985943599999928],[112.5884704,-7.985274599999968],[112.58287040000005,-7.987266899999952],[112.57823570000005,-7.984837299999981],[112.58185170000002,-7.980071199999941],[112.58560940000007,-7.982775499999946],[112.59040920000007,-7.9826302],[112.59209110000006,-7.984882699999957],[112.59795230000009,-7.984584799999936],[112.59925420000002,-7.981823499999962],[112.5977157000001,-7.981203099999959],[112.59845,-7.979655899999955],[112.58942410000009,-7.975187799999958],[112.59103840000012,-7.973100799999941],[112.59877730000005,-7.974668599999973],[112.59981230000005,-7.972073199999954],[112.6027964000001,-7.971738099999925],[112.6027001000001,-7.968200499999966],[112.5980320000001,-7.962892599999975],[112.59925410000005,-7.956740099999934],[112.59661960000005,-7.955021199999976],[112.59109110000009,-7.955601899999976],[112.58982450000008,-7.954394499999978],[112.59005720000005,-7.950157],[112.59181,-7.95],[112.59256290000008,-7.947978699999965],[112.58958170000005,-7.9467698],[112.58899370000006,-7.947993699999927],[112.58747740000001,-7.946831],[112.58657380000011,-7.947859299999948],[112.57995430000005,-7.943214099999977],[112.56909890000009,-7.938773899999944],[112.57072760000005,-7.935807699999941],[112.573912,-7.935210299999937],[112.58534510000004,-7.937883899999974],[112.58526570000004,-7.936621299999956],[112.596117,-7.937640699999974],[112.59859110000002,-7.936677],[112.59741530000008,-7.9302962],[112.59916020000003,-7.930329799999981],[112.6000997000001,-7.926371499999959],[112.59612410000011,-7.922689899999966],[112.5931882000001,-7.923239399999943],[112.59406560000002,-7.9200206],[112.5917985000001,-7.917319],[112.59618010000008,-7.920219199999963],[112.59723020000001,-7.922875799999929],[112.59947790000001,-7.922013099999958],[112.60018950000006,-7.924060299999951],[112.60248560000002,-7.921647899999925],[112.60970730000008,-7.923881699999981],[112.61117690000003,-7.9228978],[112.610578,-7.9197161],[112.6176809000001,-7.919878099999949],[112.6275945000001,-7.9115112],[112.63149750000002,-7.912425199999973]]]]},"properties":{"shapeName":"Malang","shapeISO":"","shapeID":"22746128B3753415673503","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.27218620000008,2.104189100000042],[116.25848810000002,2.10840630000007],[116.23967180000011,2.119935500000054],[116.22837620000007,2.133284500000059],[116.20877760000008,2.14051980000005],[116.18544450000002,2.146582500000022],[116.16948790000004,2.141498900000045],[116.15701590000003,2.132802900000058],[116.14566510000009,2.152326],[116.13003030000004,2.167633600000045],[116.11032200000011,2.171210600000052],[116.0954243000001,2.170501200000047],[116.07981730000006,2.164826],[116.06775730000004,2.154894100000035],[116.05215,2.150637700000061],[116.01738870000008,2.192493200000058],[115.9971756000001,2.228520100000026],[115.99041000000011,2.24645780000003],[115.991271,2.253426200000035],[115.98927450000008,2.260828200000049],[115.99585080000008,2.266755500000045],[116.00242170000001,2.261718300000041],[116.028935,2.253364900000065],[116.04096640000012,2.263107300000058],[116.05305810000004,2.283000700000059],[116.05380530000002,2.293723300000067],[116.0591591000001,2.301246],[116.06069420000006,2.303394600000047],[116.05973090000009,2.313475500000038],[116.07849560000011,2.334215300000039],[116.08935930000007,2.351004800000055],[116.110077,2.357928700000059],[116.10502340000005,2.365558800000031],[116.10433530000012,2.37450640000003],[116.10571170000003,2.383798500000069],[116.11259470000005,2.391369700000041],[116.13259220000009,2.39174330000003],[116.14725270000008,2.40078260000007],[116.15562430000011,2.39876],[116.16116160000001,2.400468],[116.1658384000001,2.405995100000041],[116.17186470000001,2.40132090000003],[116.18228990000011,2.408461],[116.19215720000011,2.425996800000064],[116.19655460000001,2.440855500000055],[116.22676850000005,2.481499],[116.2336289000001,2.488619100000051],[116.25100630000009,2.488982900000053],[116.25534420000008,2.479926300000045],[116.26647560000004,2.479326700000058],[116.27329710000004,2.489234700000054],[116.29373570000007,2.531963500000074],[116.295594,2.541874900000039],[116.30116940000005,2.544972400000063],[116.30674460000012,2.565415100000052],[116.3147977000001,2.578424],[116.31444550000003,2.591564400000038],[116.3234705000001,2.597008500000072],[116.32160840000006,2.617444900000066],[116.325329,2.629840700000045],[116.32409010000003,2.646566700000051],[116.31444540000007,2.664319300000045],[116.32408830000008,2.68004540000004],[116.32532890000004,2.690549400000066],[116.3327627000001,2.699222],[116.34511830000008,2.704172800000038],[116.36063920000004,2.712850700000047],[116.37488710000002,2.733293300000071],[116.3860376,2.743824500000073],[116.4021441000001,2.754355500000031],[116.404622,2.764886600000068],[116.41081680000002,2.769842500000038],[116.42320630000006,2.774178800000072],[116.43064,2.779754100000048],[116.43002050000007,2.792143600000031],[116.43435670000008,2.807630500000073],[116.443649,2.817542200000048],[116.45294120000005,2.823117500000023],[116.49382650000007,2.828692700000033],[116.49568520000003,2.835507100000029],[116.50559670000007,2.840462800000068],[116.54214580000007,2.870197700000062],[116.56909170000006,2.885382900000025],[116.58117290000007,2.890020900000025],[116.58303130000002,2.910463700000037],[116.58638010000004,2.917314600000054],[116.60147630000006,2.921358300000065],[116.60821540000006,2.92621070000007],[116.61037210000006,2.93294990000004],[116.608485,2.94831540000007],[116.61586370000009,2.950729800000033],[116.62358110000002,2.956402600000047],[116.63921630000004,2.974194400000044],[116.65551010000001,2.97303080000006],[116.65781660000005,2.976081400000055],[116.66105160000006,3.00492550000007],[116.6672023000001,3.007398500000022],[116.679113,3.017864800000041],[116.69453720000001,3.023208400000044],[116.73108610000008,3.030022600000052],[116.74219290000008,3.035566800000026],[116.7450682000001,3.042755400000033],[116.74746440000001,3.055215700000076],[116.7479436000001,3.06815510000007],[116.74227580000002,3.083083600000066],[116.7340458000001,3.096909400000072],[116.72446090000005,3.104577300000074],[116.72589860000005,3.113203500000054],[116.73692110000002,3.131893800000057],[116.74027580000006,3.146750200000042],[116.7442281000001,3.152981600000032],[116.7419648,3.170184],[116.74490710000009,3.170863],[116.75758250000001,3.168146900000067],[116.76867350000009,3.169052200000067],[116.77614310000001,3.176521800000046],[116.78610220000007,3.179690700000037],[116.79495430000009,3.191841700000055],[116.80527590000008,3.199639700000034],[116.8052977000001,3.214828500000067],[116.807824,3.223583],[116.8079570000001,3.231367],[116.80355250000002,3.236334600000021],[116.80277300000012,3.253987],[116.801542,3.257101],[116.806162,3.280377],[116.80491,3.288097],[116.79937,3.29779],[116.79151,3.304969],[116.790973,3.310535],[116.786504,3.322203],[116.775782,3.340871],[116.77328200000011,3.347831],[116.77327900000012,3.352001],[116.775243,3.355592],[116.774349,3.358644],[116.770419,3.359002],[116.758626,3.37372],[116.75331290000008,3.376669700000036],[116.742724,3.385924],[116.735882,3.394947],[116.737538,3.406388],[116.735394,3.408901],[116.7271750000001,3.410694],[116.71717,3.416615],[116.703325,3.429988],[116.707804,3.441343],[116.707084,3.451614],[116.6936280000001,3.469811],[116.69311170000003,3.473702900000035],[116.69538100000011,3.477074],[116.702347,3.480847],[116.7055620000001,3.486233],[116.708956,3.486593],[116.712528,3.489287],[116.72235400000011,3.488393],[116.728427,3.494678],[116.726639,3.500243],[116.728245,3.507603],[116.731103,3.510297],[116.729047,3.514875],[116.731011,3.517029],[116.734942,3.518108],[116.73458,3.53211],[116.73761700000011,3.533548],[116.738063,3.537587],[116.741456,3.542794],[116.740919,3.545487],[116.743062,3.549257],[116.73698600000012,3.555539],[116.743237,3.562722],[116.74283140000011,3.566594900000041],[116.74405330000002,3.568885800000032],[116.755205,3.574215],[116.75367070000004,3.579091800000072],[116.75480070000003,3.580406400000072],[116.757527,3.579421],[116.758956,3.580678],[116.759133,3.586244],[116.764672,3.584271],[116.761098,3.588219],[116.761276,3.589655],[116.769113,3.604786],[116.770005,3.61089],[116.766607,3.621122],[116.76517700000011,3.623096],[116.761603,3.623813],[116.760352,3.626147],[116.763387,3.635662],[116.76123770000004,3.641864800000064],[116.75927500000012,3.644458],[116.748016,3.651277],[116.74319,3.656841],[116.739258,3.658096],[116.738007,3.659712],[116.739078,3.663302],[116.73827,3.674522],[116.73071450000009,3.690637500000037],[116.7164203000001,3.699607300000025],[116.70542450000005,3.69823290000005],[116.68938920000005,3.699149],[116.66144190000011,3.703272600000048],[116.62827170000003,3.696904200000063],[116.61837560000004,3.692872500000021],[116.5886872000001,3.691039900000021],[116.57989060000011,3.692872600000044],[116.57622560000004,3.700569600000051],[116.57338130000005,3.720105100000069],[116.56986250000011,3.722216300000071],[116.54654590000007,3.720081700000037],[116.5422297,3.721019800000022],[116.53484370000001,3.725760300000047],[116.52679670000009,3.733927100000074],[116.52031110000007,3.74317510000003],[116.51202410000008,3.748219400000039],[116.5031365000001,3.748099300000035],[116.49929340000006,3.743174900000042],[116.48873750000007,3.745135300000072],[116.48261080000009,3.756553500000052],[116.47709640000005,3.763320700000065],[116.47620530000006,3.768222300000048],[116.47776490000001,3.772678100000064],[116.47798780000005,3.781144100000063],[116.46756360000006,3.794347900000048],[116.466436,3.80788],[116.462865,3.81257880000004],[116.4577905000001,3.81539790000005],[116.45443030000001,3.81943780000006],[116.45078300000011,3.829804500000023],[116.43696110000008,3.845738200000028],[116.43542510000009,3.853992900000037],[116.43196960000012,3.854952900000058],[116.42429090000007,3.86512730000004],[116.42083530000002,3.867430900000045],[116.41872360000002,3.875493800000072],[116.41990650000002,3.879344400000036],[116.41904350000004,3.882822],[116.42017470000008,3.883468400000027],[116.4179557000001,3.887204100000076],[116.41052150000007,3.892322700000022],[116.4078144,3.895864],[116.4051267000001,3.906003200000043],[116.4027999000001,3.911206700000037],[116.40101210000012,3.912102900000036],[116.40100930000006,3.91605160000006],[116.39479540000002,3.927738500000032],[116.38925760000006,3.931770400000062],[116.38479430000007,3.947926900000027],[116.38645980000001,3.968772600000023],[116.3833002,3.971616300000051],[116.38266830000009,3.975407800000028],[116.38393210000004,3.982674800000041],[116.392147,3.991837600000053],[116.37733980000007,3.995634700000039],[116.369714,3.993417400000055],[116.35497670000007,4.008307100000025],[116.35318360000008,4.01820790000005],[116.35481130000005,4.033787700000062],[116.35109090000003,4.037043100000062],[116.33713880000005,4.044251600000052],[116.33597620000012,4.050530200000026],[116.33109290000004,4.057041],[116.31900120000012,4.062854300000026],[116.31202520000011,4.058901300000059],[116.30807210000012,4.051227600000061],[116.30063110000003,4.04866990000005],[116.29356810000002,4.051869600000032],[116.2885394000001,4.057971200000054],[116.28388860000007,4.057971100000032],[116.27807530000007,4.052157800000032],[116.27737750000006,4.045647],[116.27505240000005,4.040996300000074],[116.26877390000004,4.040066],[116.26179790000003,4.042391400000042],[116.24947370000007,4.043089],[116.23701170000004,4.046814200000028],[116.23552170000005,4.058668700000055],[116.23273130000007,4.065877200000045],[116.22278960000006,4.079097800000056],[116.21828510000012,4.08026540000003],[116.20636780000007,4.074161200000049],[116.19822910000005,4.074742600000036],[116.1851491000001,4.079684],[116.17962640000007,4.086369300000058],[116.1697438000001,4.090147900000034],[116.16160520000005,4.091310600000043],[116.16747620000001,4.111501200000021],[116.16465730000004,4.11253350000004],[116.14727970000001,4.110637700000041],[116.13938070000006,4.116009],[116.1359053000001,4.115061300000036],[116.12598670000011,4.120877],[116.1161509000001,4.113370900000064],[116.10929190000002,4.111947300000054],[116.09485370000004,4.116658600000051],[116.08576190000008,4.11788260000003],[116.08195060000003,4.110880200000054],[116.07799880000005,4.109950400000059],[116.0742795000001,4.106231200000025],[116.07195490000004,4.100187100000028],[116.06134510000004,4.096896800000025],[116.04429230000005,4.084147500000029],[116.03869370000007,4.083907500000066],[116.03150710000011,4.079963200000066],[116.02871760000005,4.08182290000002],[116.024301,4.08972650000004],[116.0040729000001,4.089568700000029],[115.98961910000003,4.094480900000065],[115.98131840000008,4.102420700000039],[115.97590480000008,4.113247900000033],[115.97085210000012,4.117939600000057],[115.96579950000012,4.118300500000032],[115.9603859,4.107834300000036],[115.95822030000011,4.092315500000041],[115.95894210000006,4.071743900000058],[115.963328,4.059939800000052],[115.9650041000001,4.047368800000072],[115.9608138000001,4.036892900000055],[115.9608138000001,4.014265100000046],[115.9574986,4.004254700000047],[115.95172420000006,3.997397600000056],[115.95028060000004,3.987653200000068],[115.95136330000003,3.960224500000038],[115.9466715000001,3.956976300000065],[115.93981440000005,3.956254500000057],[115.93259630000011,3.951201900000058],[115.93006990000003,3.943983800000069],[115.92213010000012,3.931352200000049],[115.91996460000007,3.924855700000023],[115.92068640000002,3.914750500000025],[115.92357370000002,3.906810600000028],[115.9203255000001,3.894179],[115.9268217,3.88226910000003],[115.92429550000008,3.877577400000064],[115.91346830000009,3.876133800000048],[115.91346840000006,3.860975800000062],[115.90949840000007,3.848344200000042],[115.90913740000008,3.840765100000056],[115.91635560000009,3.83679520000004],[115.92357370000002,3.835351600000024],[115.925739,3.826689900000076],[115.92285190000007,3.820915400000047],[115.92285170000002,3.804313800000045],[115.92682180000008,3.79817840000004],[115.94037630000003,3.792102800000066],[115.94759370000008,3.784883],[115.94883690000006,3.777246],[115.94775430000004,3.772554300000024],[115.9441452000001,3.767862500000035],[115.94378430000006,3.760283500000071],[115.93259620000003,3.756674500000031],[115.92790450000007,3.75270450000005],[115.92465640000012,3.726358600000026],[115.91202460000011,3.689907100000028],[115.9141902,3.681606400000021],[115.92032540000002,3.675471],[115.92501730000004,3.664643900000044],[115.93367890000002,3.651651400000048],[115.93331810000006,3.642628800000068],[115.93548340000007,3.637576100000047],[115.95605490000003,3.62025280000006],[115.95172420000006,3.607981900000027],[115.952446,3.596433],[115.9589423000001,3.57838780000003],[115.977684,3.552640200000042],[115.96805570000004,3.522556900000041],[115.96083070000009,3.515337],[115.94879910000009,3.512930400000073],[115.937973,3.508117],[115.92593390000002,3.499693800000045],[115.911499,3.493676900000025],[115.9054794000001,3.487660400000038],[115.89705660000004,3.475627300000042],[115.88381960000004,3.469610400000022],[115.85617280000008,3.471650300000022],[115.8506377000001,3.486410700000022],[115.83864490000008,3.491638200000068],[115.8315722000001,3.487640700000043],[115.82603720000009,3.491330600000026],[115.818657,3.493483200000071],[115.80543430000012,3.489485700000046],[115.8072793,3.470420200000035],[115.80078880000008,3.463593800000069],[115.78996280000001,3.462390400000061],[115.77898870000001,3.463655200000062],[115.76914850000003,3.463040100000057],[115.76238340000009,3.447357300000021],[115.74276350000002,3.447849700000063],[115.72908160000009,3.444875400000058],[115.71420990000001,3.437737],[115.70290750000004,3.416321800000048],[115.69993320000003,3.40264],[115.69101020000005,3.406209100000069],[115.67494890000012,3.427624300000048],[115.65830720000008,3.438799],[115.65671930000008,3.436833500000034],[115.65395390000003,3.437168],[115.65060730000005,3.43546340000006],[115.65061790000004,3.427810500000021],[115.64942640000004,3.428239900000051],[115.64622960000008,3.424751300000025],[115.642344,3.425028500000053],[115.64335360000007,3.421406600000068],[115.64244540000004,3.418661600000064],[115.63756880000005,3.416770600000063],[115.63320350000004,3.411442800000032],[115.63031150000006,3.411178900000039],[115.62499860000003,3.407651200000032],[115.62156850000008,3.413520500000061],[115.6219718000001,3.418612500000052],[115.61738280000009,3.421194800000023],[115.61748860000012,3.425857500000063],[115.61472120000008,3.428269300000068],[115.6166085000001,3.431309],[115.61627020000003,3.434991800000034],[115.61140450000005,3.445750100000055],[115.60810140000001,3.447488],[115.60624670000004,3.445799800000032],[115.6035554,3.446388100000036],[115.60160170000006,3.443040400000029],[115.59805420000009,3.442972600000076],[115.5963011,3.446685900000034],[115.58706770000003,3.449605500000075],[115.57938350000006,3.432494400000053],[115.58096360000002,3.428522],[115.58024030000001,3.418825],[115.57726520000006,3.41622220000005],[115.57318240000006,3.415577],[115.57334120000007,3.412155900000073],[115.57081910000011,3.407708800000023],[115.5648754,3.40480210000004],[115.56340670000009,3.400681400000053],[115.56507250000004,3.396769200000051],[115.55736020000006,3.392903500000045],[115.55964960000006,3.38948460000006],[115.5596968000001,3.385557400000039],[115.5572188000001,3.380484800000033],[115.5550644000001,3.379913200000033],[115.55010560000005,3.374628100000052],[115.54531180000004,3.36330380000004],[115.54436930000008,3.357704800000022],[115.5461805000001,3.354137300000048],[115.54669260000003,3.34704430000005],[115.545455,3.34259830000002],[115.54603380000003,3.339332500000069],[115.54861290000008,3.338033100000075],[115.54961380000009,3.328769200000067],[115.54793210000003,3.327243500000066],[115.54489410000008,3.328245600000059],[115.54126710000003,3.319400800000039],[115.53526330000011,3.320051400000068],[115.53355130000011,3.318021300000055],[115.5319012000001,3.307884100000024],[115.53412090000006,3.305875900000046],[115.53171810000003,3.296901400000024],[115.53404360000002,3.295635100000027],[115.538649,3.284990400000027],[115.53609370000004,3.28168770000002],[115.53076360000011,3.279923100000076],[115.52432940000006,3.249827900000071],[115.52534890000004,3.241353900000036],[115.53209320000008,3.240731100000062],[115.53118140000004,3.237115900000049],[115.5326387,3.237109500000031],[115.53345910000007,3.234563900000069],[115.53217730000006,3.23124910000007],[115.535536,3.22917510000002],[115.53486110000006,3.226181800000063],[115.52968380000004,3.225047200000063],[115.5192694000001,3.226031100000057],[115.51681,3.221723900000029],[115.51830730000006,3.215525],[115.52090520000002,3.211569200000042],[115.51898960000005,3.208583100000055],[115.51860160000001,3.202909400000067],[115.5203924000001,3.199313],[115.51930590000006,3.196895200000029],[115.52123330000006,3.19120840000005],[115.52355410000007,3.187713700000074],[115.52760190000004,3.186169100000029],[115.5290586000001,3.183242900000039],[115.53195070000004,3.18209360000003],[115.53532690000009,3.183671500000059],[115.540267,3.180778600000053],[115.5437710000001,3.181718800000056],[115.55008370000007,3.1773],[115.55502410000008,3.171599800000024],[115.55906440000001,3.172198600000058],[115.56292410000003,3.170115700000053],[115.56561310000006,3.161443700000063],[115.56187640000007,3.157144600000038],[115.56419690000007,3.14999940000007],[115.55648510000003,3.148485900000026],[115.55356890000007,3.142237900000055],[115.54991240000004,3.140732700000058],[115.54395330000011,3.141035500000044],[115.54061550000006,3.143895600000064],[115.53626610000003,3.142172100000039],[115.5344841000001,3.137166700000023],[115.5305221000001,3.132374900000059],[115.53151920000005,3.130267900000035],[115.5305393000001,3.122871300000043],[115.52790040000002,3.116918500000054],[115.51796350000006,3.113156100000026],[115.51708440000004,3.109867200000053],[115.51515610000001,3.108668700000067],[115.51673190000008,3.101406],[115.51180370000009,3.093302200000039],[115.51227030000007,3.089236200000073],[115.51426250000009,3.08852870000004],[115.51215860000002,3.083710800000063],[115.5145046,3.080671300000063],[115.51424070000007,3.073577200000045],[115.51799070000004,3.068943400000023],[115.51720460000001,3.056777200000056],[115.510236,3.049174900000025],[115.50721810000005,3.039813200000026],[115.50281670000004,3.038758600000051],[115.50014950000002,3.035627200000022],[115.49880050000002,3.027684],[115.49493860000007,3.029666600000041],[115.49436720000006,3.027332700000045],[115.4914285000001,3.025160100000051],[115.49000810000007,3.02664610000005],[115.48680680000007,3.018064600000059],[115.46960360000003,3.022150700000054],[115.47024240000007,3.023186500000065],[115.46815220000008,3.025631800000042],[115.4625013000001,3.026732100000061],[115.45824270000003,3.025372200000049],[115.45474150000007,3.028043700000069],[115.45165020000002,3.02482150000003],[115.447956,3.024926200000039],[115.44598660000008,3.023079700000039],[115.44188240000005,3.02368910000007],[115.43922880000002,3.018862900000045],[115.44022310000003,3.017577200000062],[115.43929930000002,3.01404720000005],[115.43592510000008,3.012684800000045],[115.43132020000007,3.01595210000005],[115.428131,3.015752900000052],[115.42551970000011,3.013371800000073],[115.424719,3.008618],[115.42153710000002,3.004810600000042],[115.419331,3.004161700000054],[115.41905820000011,2.999121100000025],[115.41313520000006,2.993962600000032],[115.40869830000008,2.993123],[115.40781890000005,2.98827760000006],[115.40460220000011,2.987223],[115.40373140000008,2.98383380000007],[115.39494420000005,2.979572500000074],[115.39088920000006,2.979675],[115.38698810000005,2.981864100000053],[115.3832155,2.981558600000028],[115.3794186,2.986114900000075],[115.37314550000008,2.980393500000048],[115.36771770000007,2.98255],[115.35868120000009,2.982108100000062],[115.35706610000011,2.980815500000062],[115.35418570000002,2.981690100000037],[115.35139160000006,2.981271],[115.34807780000006,2.976549],[115.3411986000001,2.978253600000073],[115.33248920000005,2.97495],[115.32700840000007,2.977839],[115.325305,2.98161170000003],[115.3266493000001,2.988585300000068],[115.325432,2.989363600000047],[115.32775950000007,2.993451800000059],[115.32472210000003,2.997250400000041],[115.3244582000001,3.000226300000065],[115.32211610000002,3.001281800000072],[115.32359990000009,3.01057650000007],[115.3225159000001,3.01236],[115.31630170000005,3.020067400000073],[115.315193,3.018917800000054],[115.30895770000006,3.01887],[115.30905910000001,3.021605600000044],[115.30749130000004,3.021930600000076],[115.30664620000005,3.024720100000025],[115.30626960000006,3.032709200000056],[115.30198440000004,3.034617400000059],[115.30056510000009,3.040786],[115.29641930000003,3.039664200000061],[115.28582960000006,3.047349800000063],[115.283811,3.04526160000006],[115.28414070000008,3.038913300000047],[115.27961370000003,3.033883700000047],[115.27860250000003,3.030783700000029],[115.2793071000001,3.027247300000056],[115.27659690000007,3.023584],[115.27413060000003,3.022566900000072],[115.27213070000005,3.017977100000053],[115.26871040000003,3.017269900000031],[115.2661925000001,3.014855400000044],[115.26620690000004,3.009371900000076],[115.2624025,3.003954600000043],[115.25721970000006,3.001424900000075],[115.2550758000001,2.998175700000047],[115.25303240000005,2.994650500000034],[115.25468250000006,2.990956600000061],[115.2547330000001,2.985118700000044],[115.25128770000003,2.980884100000026],[115.24719740000012,2.981040200000052],[115.2515168000001,2.972283700000048],[115.250525,2.970208600000035],[115.25178730000005,2.966597800000045],[115.24982610000006,2.964604400000042],[115.23890930000005,2.962821200000064],[115.2377725,2.959772300000054],[115.2274493000001,2.959117700000036],[115.222978,2.961646400000063],[115.22092830000008,2.960296600000049],[115.2199898,2.961049600000024],[115.21584670000004,2.956722700000057],[115.21190840000008,2.958084900000074],[115.20974450000006,2.954070200000046],[115.20203640000011,2.948563800000045],[115.1913363000001,2.933538500000054],[115.1865434,2.93137390000004],[115.1730361000001,2.930548300000055],[115.16772290000006,2.926867200000061],[115.16509630000007,2.927453900000046],[115.159348,2.919720100000063],[115.15597460000004,2.917801700000041],[115.1544037000001,2.913262],[115.14938240000004,2.908015],[115.15068950000011,2.902636600000051],[115.15464110000005,2.89806580000004],[115.15370980000012,2.891208300000073],[115.151227,2.888867700000048],[115.15156460000003,2.884231200000045],[115.1544431000001,2.881107300000053],[115.15449250000006,2.878961900000036],[115.15283970000007,2.877558400000055],[115.15340810000009,2.870478200000036],[115.14872850000006,2.868235900000059],[115.14303540000003,2.868425600000023],[115.14012800000012,2.856061400000044],[115.13735150000002,2.852833900000064],[115.13117840000007,2.851300200000026],[115.12783020000006,2.84889510000005],[115.12586550000003,2.846651200000053],[115.12601680000012,2.842397100000028],[115.11985660000005,2.836389600000075],[115.10503810000012,2.831966400000056],[115.10338640000009,2.829961600000047],[115.10198220000007,2.830699300000049],[115.097573,2.824476200000049],[115.09229390000007,2.823411400000055],[115.09179870000003,2.82077270000002],[115.09573820000003,2.819958],[115.09782630000007,2.817525200000034],[115.10339110000007,2.817295700000045],[115.11314720000007,2.809472400000061],[115.1180465000001,2.808243],[115.120673,2.804790800000035],[115.127781,2.802080100000069],[115.13279200000011,2.802803400000073],[115.13621180000007,2.806655500000033],[115.14334580000002,2.804932],[115.15484420000007,2.793213500000036],[115.15567080000005,2.790257900000029],[115.14792630000011,2.78343940000002],[115.14673860000005,2.779912700000068],[115.14242060000004,2.777483500000073],[115.141145,2.774904],[115.14043250000009,2.76263890000007],[115.14474580000001,2.755575600000043],[115.13927090000004,2.743595800000037],[115.13544590000004,2.743204500000047],[115.13302370000008,2.740475600000025],[115.1326441000001,2.737677200000064],[115.12738260000003,2.73548130000006],[115.12531540000009,2.731758800000023],[115.121079,2.730324800000062],[115.12096730000007,2.728656300000068],[115.11620940000012,2.72891240000007],[115.11529310000003,2.726144400000067],[115.11187550000011,2.72597520000005],[115.1114414000001,2.724259800000027],[115.108459,2.723370200000033],[115.10696810000002,2.721282300000041],[115.10284170000011,2.720606800000041],[115.1013541000001,2.71683],[115.1035233,2.712285300000076],[115.09932130000004,2.70263360000007],[115.09619670000006,2.70057520000006],[115.09606340000005,2.697580500000072],[115.1042159000001,2.694804],[115.1082186000001,2.689944400000059],[115.11260020000009,2.691747500000076],[115.1164596000001,2.689205],[115.11650320000001,2.68611130000005],[115.11258740000005,2.684025700000063],[115.11045180000008,2.680312400000048],[115.12291930000004,2.651012300000048],[115.11860940000008,2.650959],[115.11714740000002,2.647900100000072],[115.11373070000002,2.647619800000029],[115.11435740000002,2.636481900000035],[115.11010830000009,2.634545100000025],[115.10335840000005,2.625092300000063],[115.097242,2.622727],[115.09312260000002,2.623390900000061],[115.09156860000007,2.618321600000058],[115.08934280000005,2.616157900000076],[115.0929933000001,2.606201800000065],[115.09947710000006,2.604588800000045],[115.10247460000005,2.601194900000053],[115.10485210000002,2.601779300000032],[115.1083327,2.600369100000023],[115.11092240000005,2.593589100000031],[115.10955150000007,2.588057900000024],[115.11320280000007,2.584197900000049],[115.1177719000001,2.58306],[115.12170160000005,2.586801600000058],[115.1254133000001,2.587749500000029],[115.13061420000008,2.587332300000071],[115.13629530000003,2.584912800000041],[115.14123250000011,2.59250540000005],[115.14069540000003,2.597051700000065],[115.14542150000011,2.603043700000057],[115.14883150000003,2.603590800000063],[115.15284350000002,2.608014900000057],[115.15471150000008,2.608424800000023],[115.16133280000008,2.605591700000048],[115.17104,2.613411],[115.17324410000003,2.609878500000036],[115.17914050000002,2.610364300000072],[115.1813102000001,2.605688500000042],[115.18040170000006,2.603600400000062],[115.18193540000004,2.603059],[115.18334240000002,2.597547300000031],[115.19383290000007,2.593167300000061],[115.19571930000006,2.581809300000032],[115.2022098000001,2.578951200000063],[115.20380430000012,2.577631600000075],[115.20406920000005,2.574820100000068],[115.20576840000001,2.574952600000074],[115.20708880000007,2.572873600000037],[115.21096880000005,2.574226300000021],[115.21361170000011,2.57359630000002],[115.21212450000007,2.568636200000071],[115.21789170000011,2.566611300000034],[115.22044160000007,2.560459300000048],[115.21727670000007,2.552806900000064],[115.22031830000003,2.547027300000025],[115.22312840000006,2.547354800000051],[115.22477590000005,2.542141600000036],[115.23181860000011,2.540102600000068],[115.23200130000009,2.538426900000047],[115.23898130000009,2.53506770000007],[115.2459917000001,2.540933600000074],[115.2525194000001,2.541072700000029],[115.25283850000005,2.535690100000068],[115.2548435000001,2.532518100000061],[115.2528029,2.529230600000062],[115.25118810000004,2.529318400000022],[115.25205320000009,2.523340900000051],[115.2503613,2.52347530000003],[115.2438883000001,2.518904900000052],[115.25056590000008,2.509306200000026],[115.24913170000002,2.50608950000003],[115.24505810000005,2.502929],[115.24383350000005,2.498668200000054],[115.23838870000009,2.495279400000072],[115.23696550000011,2.492748200000051],[115.2330730000001,2.492307200000027],[115.22718290000012,2.485523900000032],[115.21198290000007,2.479893300000072],[115.20570210000005,2.471044100000029],[115.19673980000005,2.477439200000049],[115.19533720000004,2.480105600000059],[115.19044430000008,2.48265850000007],[115.18754460000002,2.479651300000057],[115.1830053000001,2.478884700000037],[115.17884220000008,2.481092],[115.16395540000008,2.476593100000059],[115.1506131000001,2.477097],[115.14512750000006,2.475606],[115.14424980000001,2.473202300000025],[115.13731770000004,2.468554400000073],[115.13255390000006,2.459805500000073],[115.13240170000006,2.457034900000053],[115.12626530000011,2.45399070000002],[115.12129350000009,2.456941100000051],[115.11940820000007,2.456140600000026],[115.11743760000002,2.453896600000064],[115.11799310000004,2.447531300000037],[115.11493740000003,2.444208],[115.11480010000002,2.442236],[115.1092354000001,2.441191100000026],[115.1081597000001,2.436718700000029],[115.10416270000007,2.432748500000059],[115.10446690000003,2.429459800000075],[115.099792,2.425384700000052],[115.101998,2.415781800000047],[115.10035710000011,2.412901800000043],[115.1030022000001,2.408081700000025],[115.10114080000005,2.404978300000039],[115.09794540000007,2.402447700000039],[115.0898241000001,2.402081100000032],[115.0850809000001,2.405492500000037],[115.07599490000007,2.40544060000002],[115.07258960000001,2.407378],[115.06980690000012,2.404593200000022],[115.06771,2.404729600000053],[115.06456490000005,2.40754910000004],[115.05404130000011,2.405499600000041],[115.05088730000011,2.401827500000024],[115.04998940000007,2.393450100000052],[115.0543259000001,2.386408200000062],[115.049451,2.384996100000023],[115.04644210000004,2.390081],[115.04311170000005,2.389989600000035],[115.04024350000009,2.391985800000043],[115.0366676000001,2.381280600000025],[115.033658,2.380371800000034],[115.0303702000001,2.37659050000002],[115.027554,2.364700200000073],[115.02179320000005,2.363095600000065],[115.01864750000004,2.364682400000049],[115.0136768000001,2.364281400000039],[115.0105311000001,2.362902900000051],[115.00637140000003,2.360124600000063],[115.00622280000005,2.355771],[115.0034951,2.35533410000005],[114.99943120000012,2.348946900000044],[114.9945083,2.347611200000074],[114.98851830000001,2.351333200000056],[114.98360020000007,2.357987600000058],[114.97710160000008,2.361299100000053],[114.97774490000006,2.363811300000066],[114.97569970000006,2.36669420000004],[114.97027020000007,2.367794100000026],[114.96661010000003,2.365136600000028],[114.96237570000005,2.364605],[114.96292170000004,2.359320700000069],[114.95896530000005,2.357274200000063],[114.95826510000006,2.352626800000053],[114.955708,2.349007100000051],[114.95390070000008,2.34895240000003],[114.95560990000001,2.342303],[114.9523425000001,2.330182300000047],[114.94918360000008,2.324114800000075],[114.95064390000005,2.319022400000051],[114.94932820000008,2.315970200000038],[114.95219230000009,2.308314700000039],[114.968408,2.295219],[114.96797160000006,2.28871010000006],[114.9649945000001,2.284581400000036],[114.95473720000007,2.279178300000069],[114.946037,2.28177560000006],[114.94358820000002,2.279701300000056],[114.9379401000001,2.279576100000043],[114.93936050000002,2.277738200000044],[114.93575730000009,2.27277360000005],[114.92975230000002,2.265914800000076],[114.921134,2.259821200000033],[114.91838330000007,2.254812500000071],[114.90854130000002,2.253312600000072],[114.90443550000009,2.259411300000068],[114.8988094,2.258127300000069],[114.8942839,2.260248500000046],[114.88599480000005,2.259463900000071],[114.87197380000009,2.263658100000043],[114.8682798000001,2.259755400000074],[114.86565770000004,2.261545200000057],[114.86274010000011,2.260111700000039],[114.8575330000001,2.253897600000073],[114.84909970000001,2.252896300000032],[114.84195540000007,2.24953],[114.8366751000001,2.249754100000075],[114.83170880000011,2.245225900000037],[114.8281684000001,2.245129900000052],[114.82177500000012,2.25585760000007],[114.82261270000004,2.259260400000073],[114.82108390000008,2.264420800000039],[114.817735,2.263780300000064],[114.81643960000008,2.261905200000058],[114.81388720000007,2.262026300000059],[114.8096594000001,2.255697700000042],[114.80538280000007,2.254070300000024],[114.80038660000002,2.248726900000065],[114.8001369000001,2.245077500000036],[114.802071,2.242691600000057],[114.80320530000006,2.236001300000055],[114.79093060000002,2.223035800000048],[114.79123360000006,2.217811200000028],[114.78877010000008,2.216543800000068],[114.79033290000007,2.213236600000073],[114.7891780000001,2.210239400000034],[114.78951870000003,2.201754],[114.78830380000011,2.199939400000062],[114.78137560000005,2.199411400000031],[114.77747270000009,2.194195300000047],[114.77304130000005,2.196917800000051],[114.76867830000003,2.19678730000004],[114.76130930000011,2.193848700000046],[114.754585,2.194686200000035],[114.74239450000005,2.19109880000002],[114.74328550000007,2.188904],[114.74214370000004,2.185795900000073],[114.74546750000002,2.18068020000004],[114.74257650000004,2.174955100000034],[114.74401350000005,2.170827600000052],[114.743493,2.167294300000037],[114.73609070000009,2.165839800000072],[114.73925520000012,2.163649700000065],[114.73780520000003,2.160985700000026],[114.74028650000002,2.153670200000022],[114.7359398000001,2.150062200000036],[114.73566130000006,2.147066100000075],[114.74040610000009,2.141977600000075],[114.73963370000001,2.136913800000059],[114.7416684000001,2.132228700000041],[114.74344560000009,2.132166700000028],[114.74988670000005,2.137152100000037],[114.75605610000002,2.138092800000038],[114.76163140000006,2.142236600000047],[114.76444740000011,2.141335600000048],[114.77715730000011,2.144461100000058],[114.78363890000003,2.145065700000032],[114.78507230000002,2.144010500000036],[114.79240410000011,2.145768600000054],[114.80164700000012,2.144217600000047],[114.8021142,2.139789600000029],[114.80560340000011,2.134894700000075],[114.8139364000001,2.134604700000068],[114.81745490000003,2.12969570000007],[114.8217098,2.129772600000024],[114.823291,2.125684600000056],[114.8214594000001,2.12109],[114.82358220000003,2.11822520000004],[114.82342830000005,2.115445400000056],[114.82075150000003,2.111692100000027],[114.82079250000004,2.107381100000055],[114.816299,2.104461700000058],[114.81507970000007,2.101731600000051],[114.81608340000002,2.099915400000043],[114.81440640000005,2.097529500000064],[114.80886780000003,2.095595200000048],[114.80541070000004,2.089246],[114.80134550000002,2.089117700000031],[114.80132350000008,2.085124500000063],[114.80349150000006,2.084812800000066],[114.8033971000001,2.080325100000039],[114.81122510000012,2.074616700000036],[114.81311720000008,2.062236900000073],[114.7945906000001,2.058129],[114.79775260000008,2.05715680000003],[114.79842790000009,2.055404800000076],[114.80005660000006,2.042530500000055],[114.80486950000011,2.039979300000027],[114.80578490000005,2.035195800000054],[114.80985680000003,2.032447200000036],[114.81031070000006,2.024405300000069],[114.81495450000011,2.02208360000003],[114.816905,2.023504],[114.81717590000005,2.025857100000053],[114.82872430000009,2.028139700000054],[114.83002130000011,2.027216900000042],[114.835775,2.031382700000051],[114.83882560000006,2.031999800000051],[114.84043380000003,2.034797600000047],[114.852556,2.040531500000043],[114.85529780000002,2.040244100000052],[114.86029710000003,2.043885400000022],[114.86238290000006,2.042637400000046],[114.8629423000001,2.040363700000057],[114.86882330000003,2.038991600000031],[114.86870350000004,2.033930700000042],[114.87160260000007,2.032115800000042],[114.88269650000007,2.03069030000006],[114.88299510000002,2.028834600000039],[114.88810660000001,2.025950100000045],[114.88974670000005,2.023207],[114.88778880000007,2.018629600000054],[114.875189,2.013477600000044],[114.87633340000002,2.001980200000048],[114.87391130000003,1.99921420000004],[114.8732003,1.99408150000005],[114.87084060000007,1.991605],[114.87134110000011,1.988920800000074],[114.86906030000011,1.987074300000074],[114.86946350000005,1.985539900000049],[114.85932650000007,1.979994800000043],[114.85941980000007,1.976450900000032],[114.85694150000006,1.974320500000033],[114.85182550000002,1.97216880000002],[114.8505384,1.962029800000039],[114.85229920000006,1.951583],[114.8542073000001,1.95051170000005],[114.85425810000004,1.947780500000022],[114.852187,1.945629],[114.85320270000011,1.943411100000048],[114.85876170000006,1.936285500000054],[114.86362020000001,1.938097300000038],[114.86657150000008,1.936355800000058],[114.86761020000006,1.929692600000067],[114.87546860000009,1.928072400000076],[114.87638430000004,1.923763800000074],[114.88128920000008,1.920400200000074],[114.88246130000005,1.914352],[114.86949690000006,1.909302700000069],[114.868577,1.906684],[114.86951850000003,1.902993200000026],[114.86407,1.899587600000075],[114.86063800000011,1.900395900000035],[114.85595610000007,1.895247400000073],[114.84708920000003,1.893837800000028],[114.84515030000011,1.89468],[114.84200870000006,1.892971500000044],[114.83248720000006,1.896085700000071],[114.82549090000009,1.89378430000005],[114.8244965,1.892043600000022],[114.8196200000001,1.892646600000035],[114.818487,1.889873800000032],[114.81723000000011,1.889797700000031],[114.81963050000002,1.884968600000036],[114.81886750000001,1.880501400000071],[114.81743410000001,1.878382400000021],[114.8131294000001,1.87762],[114.8080797,1.873665800000026],[114.80456630000003,1.868907600000057],[114.80374050000012,1.864246200000025],[114.79815960000008,1.861233700000071],[114.79976740000006,1.852192400000035],[114.79442360000007,1.848668500000031],[114.792445,1.849492400000031],[114.79058830000008,1.84748860000002],[114.78705990000003,1.847431400000062],[114.78285240000002,1.850217300000054],[114.781605,1.848481900000024],[114.77815080000005,1.850479600000028],[114.77683840000009,1.848850200000072],[114.77516390000005,1.850484],[114.77110450000009,1.850106800000049],[114.7693025000001,1.852102800000068],[114.76819320000004,1.857411800000023],[114.76284750000002,1.858292300000073],[114.76211840000008,1.860901600000034],[114.75971430000004,1.860431700000049],[114.7575538000001,1.863493900000037],[114.75225480000006,1.866882300000043],[114.74874520000003,1.86674290000002],[114.7473285000001,1.869362700000067],[114.73539390000008,1.86497780000002],[114.73478870000008,1.860899800000027],[114.7318504000001,1.858272200000044],[114.717812,1.856464],[114.72147180000002,1.849199],[114.7268074000001,1.845763100000056],[114.72747230000004,1.831301200000041],[114.72489380000002,1.831733900000074],[114.723988,1.829695700000059],[114.72104810000008,1.829374700000074],[114.71850370000004,1.824744500000065],[114.71568550000006,1.825402],[114.71213290000003,1.819214600000066],[114.70503880000001,1.820580100000029],[114.70261940000012,1.81147610000005],[114.700168,1.809402900000066],[114.69508760000008,1.809742300000039],[114.693996,1.808328800000027],[114.69695700000011,1.806134],[114.6976777000001,1.803298100000063],[114.70067760000006,1.802889800000059],[114.70267760000002,1.799954700000058],[114.70879850000006,1.797508700000037],[114.7084185000001,1.791807500000061],[114.71273990000009,1.788810400000045],[114.71302760000003,1.786585900000034],[114.71500370000001,1.785283400000026],[114.71374190000006,1.780083],[114.71435930000007,1.771311200000071],[114.70526880000011,1.760502],[114.71135720000007,1.75234],[114.70943960000011,1.747755100000063],[114.71027750000007,1.738696600000026],[114.71193560000006,1.738734900000054],[114.71361710000008,1.731473200000039],[114.71540320000008,1.731802100000039],[114.71819950000008,1.728034300000047],[114.71674940000003,1.720884200000057],[114.71926510000003,1.718841600000076],[114.71708790000002,1.711392400000022],[114.71369470000002,1.710327200000052],[114.7105140000001,1.706485900000075],[114.71363570000005,1.68421630000006],[114.71333740000011,1.677571200000045],[114.7118951000001,1.675063300000033],[114.71262910000007,1.668218],[114.7107449,1.66321940000006],[114.71136920000004,1.65939110000005],[114.70739,1.640827100000024],[114.708995,1.637886800000047],[114.6934817,1.632992200000047],[114.68886070000008,1.627747600000021],[114.68965270000001,1.620412],[114.68436870000005,1.618157200000041],[114.68461890000003,1.616270400000076],[114.68104440000002,1.612649],[114.68085250000001,1.61036450000006],[114.6743517000001,1.607353100000068],[114.66921760000002,1.601444600000036],[114.66421930000001,1.600229700000057],[114.65784770000005,1.600865300000066],[114.654935,1.598968200000058],[114.65168340000002,1.589335],[114.6470452000001,1.590954900000042],[114.64283890000002,1.588941500000033],[114.63939650000009,1.589560300000073],[114.62277,1.578353400000026],[114.61047670000005,1.575215600000035],[114.60865220000005,1.565658],[114.61130880000007,1.558716300000071],[114.6059553,1.553797],[114.60401530000001,1.542381400000068],[114.59957830000008,1.531496600000025],[114.60638380000012,1.525364600000046],[114.60855540000011,1.525475400000062],[114.6125694000001,1.522105600000032],[114.61596330000009,1.515524700000071],[114.61186490000011,1.510449200000039],[114.61233040000002,1.506711500000051],[114.60534960000007,1.499774],[114.607253,1.489361700000075],[114.60625750000008,1.487662300000068],[114.60127510000007,1.485650900000053],[114.59963120000009,1.48261640000004],[114.59457650000002,1.482020300000045],[114.58958660000008,1.463283700000034],[114.59950190000006,1.456088600000044],[114.60004120000008,1.449672900000053],[114.60400590000006,1.44423050000006],[114.61152850000008,1.442113900000038],[114.6188575000001,1.437879600000031],[114.61989050000011,1.435710400000062],[114.63470830000006,1.43139270000006],[114.6366382000001,1.424256100000036],[114.63899420000007,1.42151],[114.63516530000004,1.410040400000071],[114.64299430000005,1.411767800000064],[114.64641180000001,1.408794100000023],[114.64303970000003,1.398823600000071],[114.6461925000001,1.394769600000075],[114.63843870000005,1.385643],[114.63922240000011,1.381078800000068],[114.65369590000012,1.379733500000043],[114.65350150000006,1.37385960000006],[114.65774380000005,1.370682800000054],[114.66137890000005,1.363960800000029],[114.67243310000003,1.35283830000003],[114.68147760000011,1.35283830000003],[114.68373880000001,1.35623],[114.68854370000008,1.359056400000043],[114.6925007000001,1.358773800000051],[114.69674040000007,1.35651260000003],[114.69984940000006,1.353968800000075],[114.70154530000002,1.342945800000052],[114.70408910000003,1.337010300000031],[114.7103072000001,1.335879700000021],[114.71454690000007,1.332488],[114.71709070000009,1.324574],[114.72558480000009,1.310535300000026],[114.72310820000007,1.300344800000062],[114.72019790000002,1.295876],[114.72074730000008,1.290630300000032],[114.71592890000011,1.278230700000051],[114.71735190000004,1.272823300000027],[114.72731290000002,1.264000700000054],[114.73300490000008,1.26428530000004],[114.75036550000004,1.256601100000069],[114.75776510000003,1.254893500000037],[114.75845660000005,1.251317],[114.75679670000011,1.247707],[114.7581963,1.244708],[114.77740250000011,1.22785650000003],[114.79675530000009,1.204234700000029],[114.80956240000012,1.193135300000051],[114.8289152000001,1.182605100000046],[114.83981230000006,1.172447700000021],[114.848268,1.16809040000004],[114.85168320000002,1.168375],[114.85852110000008,1.192360200000053],[114.86360160000004,1.197513600000036],[114.87033620000011,1.201089800000034],[114.8804278,1.210780500000055],[114.8851701000001,1.212264400000038],[114.89608080000005,1.209357500000067],[114.91401070000006,1.198827300000062],[114.9191485,1.194321900000034],[114.92622560000007,1.183965100000023],[114.93138480000005,1.179706],[114.9358797000001,1.178110900000036],[114.95043950000002,1.181466700000044],[114.97432220000007,1.193235300000026],[114.97957570000005,1.192790700000046],[114.98857580000004,1.186304800000073],[114.99028360000011,1.182889600000067],[114.989145,1.157273500000031],[114.99086950000003,1.153809400000057],[114.9993981,1.153279200000043],[115.00028390000011,1.151838800000064],[115.00679720000005,1.127342200000044],[115.01000080000006,1.123311200000046],[115.0156455,1.120785300000023],[115.02672660000007,1.120273],[115.04009420000011,1.115718500000071],[115.04545270000006,1.115960800000039],[115.06035760000009,1.122818100000075],[115.07054070000004,1.119993],[115.0768021,1.119993],[115.07964790000005,1.116008600000043],[115.083627,1.115986100000043],[115.10608990000003,1.121110200000032],[115.111197,1.123364600000059],[115.1186441000001,1.129376400000069],[115.1229052000001,1.129402900000059],[115.13495140000009,1.122621700000025],[115.14195930000005,1.116026800000043],[115.14734870000007,1.118850100000031],[115.15122130000009,1.119148800000062],[115.17354150000006,1.116034900000045],[115.1755558000001,1.113702],[115.17785730000003,1.103786300000024],[115.18270780000012,1.102628100000061],[115.1861004000001,1.09862540000006],[115.18659800000012,1.093246500000021],[115.18979130000002,1.08781],[115.18610990000002,1.082748500000037],[115.18678310000007,1.07887450000004],[115.18438420000007,1.074773500000049],[115.18553020000002,1.067653200000052],[115.20031820000008,1.061927300000036],[115.21511580000004,1.06024160000004],[115.22412230000009,1.057699300000024],[115.23000780000007,1.058176600000024],[115.24104180000006,1.050824800000044],[115.24957820000009,1.047144700000047],[115.25983110000004,1.047541400000057],[115.26268990000005,1.044554800000071],[115.2657425000001,1.043729400000075],[115.269355,1.046302600000047],[115.27387490000001,1.047039700000028],[115.290461,1.047582100000056],[115.29386190000002,1.049681300000032],[115.29964550000011,1.064804],[115.31663540000011,1.059374600000069],[115.32459170000004,1.06229380000002],[115.3476538000001,1.06134650000007],[115.3578827,1.063473100000067],[115.360283,1.065915400000051],[115.364521,1.065893900000049],[115.3687460000001,1.068301700000063],[115.37147530000004,1.071976500000062],[115.37086010000007,1.077711400000055],[115.37328330000003,1.081362400000046],[115.37844160000009,1.099530700000059],[115.38296050000008,1.102874800000052],[115.3938961,1.105001800000025],[115.39823820000004,1.108713200000068],[115.40150890000007,1.112601700000027],[115.40208340000004,1.117069400000048],[115.41088370000011,1.127715400000056],[115.40844160000006,1.136992400000054],[115.4102765,1.140003300000046],[115.41815040000006,1.14397740000004],[115.41905470000006,1.148184600000036],[115.41542190000007,1.160293100000047],[115.40907320000008,1.165752300000065],[115.40633790000004,1.172765900000059],[115.40690790000008,1.184817500000065],[115.40816450000011,1.190328400000055],[115.4112004000001,1.193055600000037],[115.41753470000003,1.192466800000034],[115.41966410000009,1.195157900000027],[115.4211874,1.20757750000007],[115.426326,1.218518],[115.43029050000007,1.223983100000055],[115.43637460000002,1.228549],[115.46389480000005,1.239419800000064],[115.491684,1.254236900000024],[115.50434370000005,1.25707680000005],[115.53853970000011,1.262464200000068],[115.5659323000001,1.26971930000002],[115.593776,1.283214200000032],[115.59662620000006,1.280728200000055],[115.59955080000009,1.280406800000037],[115.6317891000001,1.285198500000035],[115.65271350000012,1.281376600000044],[115.6669965000001,1.273694400000068],[115.67616380000004,1.271294100000034],[115.69142880000004,1.270907],[115.69986540000002,1.265139100000056],[115.70884490000003,1.26253980000007],[115.71301040000003,1.263097100000039],[115.7173269000001,1.266009300000064],[115.72392980000006,1.261302900000032],[115.72693540000012,1.260883200000023],[115.73277320000011,1.264849100000049],[115.73558830000002,1.265252600000053],[115.75000000000011,1.259322200000042],[115.76050750000002,1.25993150000005],[115.76922480000007,1.263557800000058],[115.77219910000008,1.270904400000063],[115.7701171000001,1.292022100000054],[115.77103910000005,1.306745],[115.768619,1.31217920000006],[115.7590169,1.322938700000066],[115.75791640000011,1.326835100000039],[115.7584518000001,1.33126690000006],[115.766423,1.345513900000071],[115.76901070000008,1.355388600000026],[115.7744537000001,1.35871990000004],[115.7839715,1.357203],[115.79194270000005,1.360772200000042],[115.8018770000001,1.371301300000027],[115.81249530000002,1.37927250000007],[115.81683780000003,1.377934],[115.82463060000009,1.367642900000021],[115.827129,1.366810100000066],[115.8319474000001,1.378023300000052],[115.83968060000007,1.384388300000069],[115.85505790000002,1.402264],[115.850061,1.409908],[115.84845490000009,1.41779],[115.85009080000009,1.432096500000057],[115.8525,1.435992900000031],[115.86023320000004,1.438699500000041],[115.87070290000008,1.448366100000044],[115.88268940000012,1.45309530000003],[115.88783500000011,1.458597800000064],[115.89889950000008,1.465052100000037],[115.90529430000004,1.475105300000052],[115.91198650000001,1.478555500000027],[115.91963050000004,1.478852900000049],[115.92911860000004,1.483106200000066],[115.95401370000002,1.490512300000034],[115.95865370000001,1.498751200000072],[115.95452150000006,1.506026900000052],[115.95728040000006,1.512840800000049],[115.96274090000009,1.521758],[115.9727468000001,1.531236],[115.99523550000004,1.53128410000005],[116.007052,1.526648],[116.0100787,1.528054300000065],[116.04082280000011,1.559852200000023],[116.04588160000003,1.58210930000007],[116.0425914000001,1.592562200000032],[116.03580710000006,1.60025550000006],[116.03623290000007,1.605871900000068],[116.04420460000006,1.615987],[116.05488830000002,1.625343300000054],[116.07365830000003,1.651887300000055],[116.102932,1.665682],[116.10866620000002,1.663139800000067],[116.115084,1.654798400000061],[116.12935220000008,1.662655800000039],[116.13310860000001,1.667809300000044],[116.13354330000004,1.670193500000039],[116.13076150000006,1.678673600000025],[116.13780040000006,1.682444600000053],[116.14131210000005,1.686734800000067],[116.14238130000001,1.701889200000039],[116.14744540000004,1.706166400000029],[116.15129060000004,1.726241],[116.15716980000002,1.735382700000059],[116.15899210000009,1.741398500000059],[116.162082,1.744811600000048],[116.15738560000011,1.751528600000029],[116.1602438000001,1.759447200000068],[116.16058810000004,1.766688600000066],[116.16179720000002,1.770483300000024],[116.16817350000008,1.778636500000061],[116.17450020000001,1.804325700000049],[116.17519370000002,1.815661500000033],[116.18399370000009,1.835480300000029],[116.18453060000002,1.840615800000023],[116.18412560000002,1.84670570000003],[116.17657550000001,1.859802100000024],[116.17563890000008,1.870949800000062],[116.17828840000004,1.887093600000071],[116.17986280000002,1.912149100000022],[116.1870331,1.929147800000067],[116.18931530000009,1.943656200000021],[116.19397220000008,1.950805200000048],[116.1952741,1.955396300000075],[116.19606090000002,1.969107300000076],[116.19425250000006,1.983320100000071],[116.19765,1.988333800000021],[116.20403050000004,1.988899],[116.2176435,1.99781],[116.2197384000001,1.999965700000075],[116.2208544,2.004399],[116.22937820000004,2.010600500000066],[116.2337993000001,2.030324700000051],[116.22558390000006,2.052547200000049],[116.2207115000001,2.080553100000031],[116.22083730000008,2.091965800000025],[116.22405580000009,2.095511600000066],[116.23146640000004,2.099548300000038],[116.23401660000002,2.103215900000066],[116.25687090000008,2.104999200000066],[116.27218620000008,2.104189100000042]]]},"properties":{"shapeName":"Malinau","shapeISO":"","shapeID":"22746128B7238601514462","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[128.50937940000006,-8.342799899999932],[128.50075390000006,-8.331438],[128.497036,-8.319332499999973],[128.4976011000001,-8.324478099999965],[128.49534060000008,-8.335126099999968],[128.5040851000001,-8.3420266],[128.50866560000009,-8.343692199999964],[128.50937940000006,-8.342799899999932]]],[[[128.21659050000005,-8.207050099999947],[128.2034559000001,-8.202481599999942],[128.18906490000006,-8.2019105],[128.17705910000006,-8.206337699999949],[128.17593030000012,-8.208534899999961],[128.1626814000001,-8.21064789999997],[128.1535050000001,-8.215241399999968],[128.1373437000001,-8.213813799999969],[128.1290719000001,-8.216479799999945],[128.12266720000002,-8.215527],[128.1103892000001,-8.210501499999964],[128.09209710000005,-8.206501699999933],[128.095357,-8.215145099999972],[128.0947145,-8.219892099999981],[128.0813657000001,-8.244341],[128.0786531000001,-8.253549599999928],[128.0791885000001,-8.257083099999932],[128.0840426000001,-8.261865799999953],[128.09214470000006,-8.265256499999964],[128.10549350000008,-8.2668983],[128.12487420000002,-8.27343],[128.143541,-8.275143199999945],[128.1510720000001,-8.27803419999998],[128.2042530000001,-8.278462499999932],[128.2205642,-8.273894],[128.2324139000001,-8.272502],[128.234841,-8.269396799999981],[128.22853540000006,-8.255762499999946],[128.229392,-8.24672049999998],[128.225918,-8.238297199999977],[128.223272,-8.225667],[128.2246997000001,-8.216358599999978],[128.2218444,-8.211618699999974],[128.21659050000005,-8.207050099999947]]],[[[128.72749710000005,-8.197786599999972],[128.72575540000003,-8.19787219999995],[128.72749440000007,-8.200933],[128.72749710000005,-8.197786599999972]]],[[[128.3903100000001,-8.19154],[128.38614,-8.19353],[128.38463,-8.19655],[128.3895900000001,-8.19717],[128.3930600000001,-8.19255],[128.3903100000001,-8.19154]]],[[[128.71958260000008,-8.1932763],[128.71683140000005,-8.191856599999937],[128.71771660000002,-8.195682799999929],[128.7212551,-8.195019599999966],[128.71958260000008,-8.1932763]]],[[[128.41475,-8.19118],[128.41209,-8.1881],[128.40813,-8.18732],[128.39718,-8.19179],[128.40943,-8.19249],[128.41475,-8.19118]]],[[[128.87088,-8.18345389999996],[128.86917,-8.18249],[128.84639540000012,-8.189878499999963],[128.83533090000003,-8.191663099999971],[128.82726450000007,-8.195946099999958],[128.82583680000005,-8.2019424],[128.8284400000001,-8.20454],[128.84362120000003,-8.211932799999943],[128.86386660000005,-8.2242558],[128.8659500000001,-8.22815],[128.8691014000001,-8.230204399999934],[128.88766,-8.234],[128.89352,-8.23866],[128.90367,-8.24039],[128.9070200000001,-8.24262],[128.9268,-8.24609],[128.93816,-8.24584],[128.93952,-8.24373],[128.9389000000001,-8.23956],[128.93529,-8.23656],[128.93176,-8.23034],[128.93308,-8.22662],[128.93518,-8.22684],[128.9378,-8.22409],[128.9455600000001,-8.22605],[128.9538903,-8.2242137],[128.9552900000001,-8.22493],[128.9546600000001,-8.22677],[128.95919,-8.22888],[128.96267000000012,-8.23324],[128.96616,-8.23413],[128.96592,-8.23609],[128.97149,-8.23888],[128.9792000000001,-8.24612],[128.99026,-8.24986],[129.0032900000001,-8.25896],[129.0159000000001,-8.26101],[129.01784,-8.2599],[129.0192681000001,-8.251931],[129.02168,-8.24833],[129.02412,-8.24669],[129.02778,-8.24687],[129.03142,-8.24223],[129.03347,-8.22779],[129.03221,-8.22193],[129.02861,-8.21615],[129.02311,-8.21578],[128.99686,-8.20684],[128.98601,-8.19878],[128.9794700000001,-8.19638],[128.96477,-8.18521],[128.92657,-8.18932],[128.91381,-8.18783],[128.9115200000001,-8.18571],[128.8948,-8.1837],[128.87815000000012,-8.18375],[128.87531,-8.1825],[128.87088,-8.18345389999996]]],[[[128.5886455000001,-8.164302199999952],[128.5854455000001,-8.164362199999971],[128.5874255000001,-8.165472199999954],[128.5904825,-8.1645794],[128.5886455000001,-8.164302199999952]]],[[[128.69119250000006,-8.166483599999935],[128.68709980000006,-8.163057199999969],[128.68224570000007,-8.166007699999966],[128.68462520000003,-8.170861799999955],[128.68690950000007,-8.1723846],[128.68757570000002,-8.175906199999929],[128.6934768000001,-8.179523],[128.6922446000001,-8.1828322],[128.6929057000001,-8.185519299999953],[128.71310730000005,-8.191539299999931],[128.7184611,-8.186828],[128.72074540000006,-8.179832399999952],[128.7178901000001,-8.178333299999963],[128.7135565000001,-8.179200399999957],[128.7078011000001,-8.174526199999946],[128.70466020000003,-8.174383399999954],[128.70042480000006,-8.165436599999964],[128.69119250000006,-8.166483599999935]]],[[[128.7597489000001,-8.161079399999949],[128.75614560000008,-8.162348599999973],[128.757816,-8.165361],[128.7782793,-8.169758299999955],[128.78187830000002,-8.173714099999927],[128.7798557000001,-8.174844399999927],[128.7812239000001,-8.180644299999926],[128.78354390000004,-8.185849399999938],[128.7872023000001,-8.188615499999969],[128.7842637000001,-8.195623],[128.7844421000001,-8.200371599999926],[128.7861554000001,-8.201585199999954],[128.7988617000001,-8.199372299999936],[128.801146,-8.1912345],[128.80057490000002,-8.18645179999993],[128.79771950000008,-8.183453699999973],[128.7928654000001,-8.183453699999973],[128.7899387000001,-8.180964699999947],[128.7915091000001,-8.1789565],[128.788511,-8.173888199999965],[128.78822550000007,-8.168320299999948],[128.78986730000008,-8.16418],[128.78893930000004,-8.163252],[128.7720333000001,-8.166337799999951],[128.7597489000001,-8.161079399999949]]],[[[128.7514767,-8.16177149999993],[128.7515029000001,-8.160433799999964],[128.74713610000003,-8.159035199999948],[128.74660860000006,-8.160518699999955],[128.7514767,-8.16177149999993]]],[[[128.72407670000007,-8.156085299999972],[128.72260140000003,-8.156289],[128.72787190000008,-8.1574416],[128.7273365000001,-8.159833],[128.7370624,-8.160462199999927],[128.73968590000004,-8.15856],[128.73321380000004,-8.156418499999972],[128.72407670000007,-8.156085299999972]]],[[[127.696457,-8.154992499999935],[127.68823420000001,-8.154255],[127.68385660000001,-8.155338899999947],[127.68189360000008,-8.157551799999965],[127.67007950000004,-8.1603239],[127.66137070000002,-8.170174799999927],[127.65365570000006,-8.174533],[127.64895,-8.17351],[127.64639000000011,-8.1751],[127.63729060000003,-8.187652],[127.62886730000002,-8.195647],[127.613258,-8.204296299999953],[127.60519160000001,-8.206580599999938],[127.60098,-8.213076499999943],[127.60098,-8.216431599999964],[127.61211590000005,-8.219072799999935],[127.61953640000002,-8.223356899999942],[127.6260357000001,-8.222142299999973],[127.62903380000012,-8.22349859999997],[127.63188920000005,-8.225997],[127.63138620000007,-8.236604799999952],[127.63398780000011,-8.237967499999968],[127.6415862,-8.23879549999998],[127.64880720000008,-8.236204899999962],[127.65897080000002,-8.238290399999926],[127.66498230000002,-8.236852799999951],[127.68699750000007,-8.223998299999948],[127.69776,-8.22006],[127.70173160000002,-8.220357299999932],[127.70667,-8.2169],[127.71302570000012,-8.2158942],[127.71726430000001,-8.212291299999947],[127.72918540000012,-8.2176451],[127.7327,-8.21502],[127.74031050000008,-8.21456269999993],[127.75056350000011,-8.206292899999937],[127.75420530000008,-8.198736199999928],[127.75489190000008,-8.193267899999967],[127.75292360000003,-8.18601609999996],[127.74703130000012,-8.176932499999964],[127.74024910000003,-8.175742899999932],[127.73341220000009,-8.17256759999998],[127.71979690000012,-8.164264699999933],[127.70396310000001,-8.160514199999966],[127.696457,-8.154992499999935]]],[[[128.6812403,-8.148884499999951],[128.67963870000005,-8.149426199999937],[128.68495040000005,-8.151445399999943],[128.6812403,-8.148884499999951]]],[[[127.78971580000007,-8.104590099999939],[127.78664630000003,-8.103483599999947],[127.77254790000006,-8.107659599999977],[127.766516,-8.10733829999998],[127.76230070000008,-8.109442799999954],[127.76053060000004,-8.113939199999948],[127.76357930000006,-8.121358],[127.7779107,-8.12913],[127.78362140000002,-8.134840699999927],[127.78592580000009,-8.145201],[127.7848404,-8.165632],[127.78813630000002,-8.177372699999978],[127.7936218000001,-8.185199499999953],[127.8185635000001,-8.200126799999964],[127.85467340000002,-8.208535499999925],[127.86371540000005,-8.214841099999944],[127.88632740000003,-8.218418699999972],[127.90692560000002,-8.214128599999981],[127.92803950000007,-8.216260499999976],[127.94621530000006,-8.220753],[127.95204020000006,-8.22475049999997],[127.95952120000004,-8.235258199999976],[127.9600352000001,-8.246565399999952],[127.96300480000002,-8.247935899999959],[127.98402020000003,-8.249021],[127.99429940000005,-8.25473169999998],[128.0045216000001,-8.257587],[128.0454674,-8.259300199999927],[128.04849400000012,-8.254446099999939],[128.049522,-8.238570399999958],[128.05260570000007,-8.228062699999953],[128.06025810000006,-8.220124799999951],[128.06996630000003,-8.215270699999962],[128.071394,-8.199509099999943],[128.07584830000008,-8.193170299999963],[128.0877266000001,-8.1859748],[128.0992718000001,-8.182995],[128.1117,-8.17656],[128.11930680000012,-8.171964499999945],[128.126588,-8.163398399999949],[128.12720660000002,-8.159258199999954],[128.1249223000001,-8.152500499999974],[128.11854540000002,-8.148122299999955],[128.11302710000007,-8.1463809],[128.11078830000008,-8.143886899999927],[128.1093131,-8.14455309999994],[128.10483970000007,-8.142459199999962],[128.10203190000004,-8.139032799999939],[128.09998560000008,-8.13855689999997],[128.0888973000001,-8.136748499999953],[128.07871320000004,-8.136938799999939],[128.06212,-8.14464],[128.03512150000006,-8.148027099999979],[128.0209436,-8.145731399999931],[128.007377,-8.141317],[127.99666940000009,-8.140032099999928],[127.98553060000006,-8.142289799999958],[127.97277960000008,-8.142697099999964],[127.96562570000003,-8.145976699999949],[127.9476168000001,-8.146206799999959],[127.94219160000011,-8.145278799999971],[127.93348,-8.139607599999977],[127.92609460000006,-8.127754099999947],[127.91601810000009,-8.13061319999997],[127.9037608000001,-8.1299537],[127.8760545,-8.116903799999932],[127.86606080000001,-8.118617],[127.85306890000004,-8.118117299999938],[127.84789360000002,-8.116511199999934],[127.842861,-8.111086],[127.84021980000011,-8.111978299999976],[127.83176280000009,-8.109285099999965],[127.81830230000003,-8.109125899999981],[127.81298690000006,-8.106803],[127.81085980000012,-8.104359199999976],[127.80460030000006,-8.106026099999951],[127.78971580000007,-8.104590099999939]]],[[[129.9252556,-8.100249499999961],[129.92428860000007,-8.091789499999948],[129.91912460000003,-8.0915515],[129.91262560000007,-8.095937499999934],[129.89728960000002,-8.114981499999942],[129.8901496000001,-8.118128499999955],[129.87648860000002,-8.120373499999971],[129.85796360000006,-8.131686499999944],[129.8512396000001,-8.139891499999976],[129.84872760000007,-8.140674499999932],[129.83724760000007,-8.158860499999946],[129.8325086000001,-8.17622849999998],[129.82775860000004,-8.187442499999975],[129.81846860000007,-8.195281499999965],[129.81558860000007,-8.200520499999925],[129.81325360000005,-8.200994499999979],[129.8118816000001,-8.205386499999975],[129.81387960000006,-8.211099499999932],[129.81829960000005,-8.211756499999979],[129.82204860000002,-8.210579499999938],[129.82702060000008,-8.213580499999978],[129.8314726000001,-8.212067499999932],[129.83932560000005,-8.206477499999949],[129.8502436000001,-8.194441499999925],[129.85426960000007,-8.192980499999976],[129.86471360000007,-8.169194499999946],[129.86788760000002,-8.166670499999952],[129.8733896000001,-8.15594249999998],[129.8813206000001,-8.146694499999967],[129.89404560000003,-8.138375499999938],[129.9031126000001,-8.136259499999937],[129.90735160000008,-8.1312075],[129.91446960000007,-8.13127449999996],[129.9152246000001,-8.129524499999945],[129.91579560000002,-8.130639499999972],[129.91726460000007,-8.126076499999954],[129.9191856000001,-8.125346499999978],[129.9178716,-8.1242955],[129.91850460000012,-8.122454499999947],[129.92257260000008,-8.116888499999959],[129.9217536000001,-8.114304499999946],[129.9264426000001,-8.10086949999993],[129.9252556,-8.100249499999961]]],[[[127.18310940000003,-8.014568699999927],[127.178888,-8.013061],[127.160495,-8.015624],[127.15898740000011,-8.020297699999958],[127.149037,-8.026177399999938],[127.13575570000012,-8.03760449999993],[127.13915830000008,-8.05542909999997],[127.1433224000001,-8.066612499999962],[127.14248960000009,-8.068992],[127.14775170000007,-8.081006199999933],[127.147891,-8.088884299999961],[127.1433224000001,-8.091454099999964],[127.1433224000001,-8.098021399999936],[127.14746270000012,-8.102161699999954],[127.16102560000002,-8.105302599999959],[127.17030550000004,-8.105873599999939],[127.17201870000008,-8.107444099999952],[127.18215520000001,-8.1060164],[127.19357660000003,-8.107586799999979],[127.20656850000012,-8.107015799999942],[127.21527730000003,-8.104017699999929],[127.22484270000007,-8.103589399999976],[127.22869750000007,-8.104731499999957],[127.23240940000005,-8.0987353],[127.2326921,-8.092095799999981],[127.22969680000006,-8.087884899999949],[127.22070250000002,-8.084315699999934],[127.21666060000007,-8.077633399999968],[127.21527730000003,-8.067754699999966],[127.21342130000005,-8.066327],[127.21456350000005,-8.0523358],[127.2135621000001,-8.046874899999978],[127.21542010000007,-8.040486],[127.21427790000007,-8.0336332],[127.20701860000008,-8.030813499999965],[127.20538270000009,-8.02427],[127.20582880000006,-8.019808499999954],[127.20032630000003,-8.014008599999954],[127.18310940000003,-8.014568699999927]]],[[[125.7563,-7.98036],[125.7574800000001,-7.97913],[125.75556,-7.97909],[125.7563,-7.98036]]],[[[125.74861,-7.96725],[125.74598,-7.96699],[125.74673,-7.97029],[125.74527000000012,-7.97931],[125.74608,-7.98171],[125.7503200000001,-7.98293],[125.75241,-7.98623],[125.75507,-7.98672],[125.75218,-7.98177],[125.74899,-7.98111],[125.75461,-7.97806],[125.75238,-7.97754],[125.75146,-7.974],[125.74832,-7.97519],[125.75019,-7.97106],[125.75377,-7.97003],[125.74861,-7.96725]]],[[[125.73648,-7.96808],[125.73280000000011,-7.96638],[125.72976,-7.96813],[125.72736,-7.97354],[125.72842,-7.97809],[125.7224900000001,-7.98106],[125.72858,-7.98685],[125.72988,-7.99828],[125.72742,-8.00869],[125.73207,-8.02218],[125.73344,-8.03596],[125.73208000000011,-8.04775],[125.73511,-8.05895],[125.73855,-8.05909],[125.738,-8.05795],[125.74322,-8.04755],[125.746,-8.04618],[125.74603,-8.0429],[125.74982000000011,-8.04094],[125.74903,-8.03764],[125.7516,-8.03473],[125.75498,-8.02641],[125.7589200000001,-8.02429],[125.76062,-8.01764],[125.76379,-8.01524],[125.76062,-8.00681],[125.76221,-7.99763],[125.75804,-7.99217],[125.75102,-7.99003],[125.7494,-7.98765],[125.74621,-7.98649],[125.74403,-7.9833],[125.74552,-7.98292],[125.74533,-7.98122],[125.74047,-7.97672],[125.73648,-7.96808]]],[[[125.74300620000008,-7.946751499999948],[125.74553920000005,-7.944306299999937],[125.7464394000001,-7.940942199999938],[125.7464394000001,-7.921479099999942],[125.74187710000001,-7.921906799999931],[125.73958820000007,-7.925857],[125.73562860000004,-7.940588799999944],[125.73664330000008,-7.945160299999941],[125.73832940000011,-7.946600299999943],[125.74300620000008,-7.946751499999948]]],[[[129.518198,-7.842979599999978],[129.51411960000007,-7.8438295],[129.51130960000012,-7.849990499999933],[129.51744960000008,-7.859948499999973],[129.52366960000006,-7.860559499999965],[129.52580860000012,-7.8691395],[129.5234196,-7.875389499999926],[129.52077960000008,-7.8762395],[129.5173396,-7.8815595],[129.52150960000006,-7.895389499999965],[129.52026960000012,-7.904509499999961],[129.5150596000001,-7.920859499999949],[129.51552860000004,-7.927589499999954],[129.5206796000001,-7.938169499999958],[129.52488960000005,-7.943399499999941],[129.5371996,-7.950179499999933],[129.54407960000003,-7.950809499999934],[129.5618296,-7.9284095],[129.56297960000006,-7.9175495],[129.56888960000003,-7.911749499999928],[129.57022060000008,-7.908549499999936],[129.56551960000002,-7.9018795],[129.56527960000005,-7.894409499999938],[129.55459960000007,-7.891189499999939],[129.55108960000007,-7.8883895],[129.54953960000012,-7.881169499999942],[129.55292960000008,-7.873819499999968],[129.5482396000001,-7.868739499999947],[129.54703960000006,-7.863969499999939],[129.53417960000002,-7.860379499999965],[129.52722960000006,-7.846741299999962],[129.518198,-7.842979599999978]]],[[[129.6788596,-7.786469499999953],[129.66696960000002,-7.787109499999929],[129.65502960000003,-7.7900095],[129.63350960000002,-7.798999499999979],[129.62083960000007,-7.801929499999972],[129.61039960000005,-7.808739499999945],[129.5965596000001,-7.822630499999946],[129.5908396000001,-7.832509499999958],[129.58883960000003,-7.847039499999937],[129.5916396,-7.8573195],[129.59412940000004,-7.861417899999935],[129.5942496,-7.867359499999964],[129.58873960000005,-7.874999499999944],[129.58688960000006,-7.883559499999933],[129.5817396000001,-7.892969499999936],[129.58240960000012,-7.898969499999964],[129.58760960000006,-7.903419499999927],[129.5884096000001,-7.905719499999975],[129.59851960000003,-7.909079499999962],[129.60318960000006,-7.912489499999936],[129.60246960000006,-7.920249499999954],[129.6041696000001,-7.922329499999933],[129.60550960000012,-7.929029499999956],[129.61349960000007,-7.9315495],[129.62218960000007,-7.942809499999953],[129.6245996,-7.949439499999926],[129.62813960000005,-7.952069499999936],[129.63021960000003,-7.958579499999928],[129.63296960000002,-7.961449499999958],[129.6412296000001,-7.967229499999974],[129.6490596000001,-7.967949499999975],[129.65222960000006,-7.970339499999966],[129.65778960000011,-7.982789499999967],[129.66330960000005,-7.9895095],[129.6686036000001,-8.0034235],[129.6724786000001,-8.009489499999972],[129.6861086,-8.022708499999965],[129.69253660000004,-8.024725499999931],[129.69442660000004,-8.027773499999967],[129.69925560000001,-8.028495499999963],[129.7082266000001,-8.041343499999925],[129.71162360000005,-8.0402635],[129.71824460000005,-8.044816499999968],[129.73364660000004,-8.050851499999965],[129.7478106000001,-8.050059499999975],[129.7535706000001,-8.055034499999977],[129.7690606000001,-8.049166499999956],[129.79190160000007,-8.043781499999966],[129.80690760000005,-8.001748499999962],[129.81276030000004,-7.998098399999947],[129.81702960000007,-7.992239499999926],[129.82171960000005,-7.972509499999944],[129.828009,-7.961117399999978],[129.83593530000007,-7.953194],[129.83900960000005,-7.9463495],[129.84480960000008,-7.942569499999934],[129.84953960000007,-7.942149499999971],[129.8521296,-7.940399499999955],[129.86086960000011,-7.926699499999927],[129.86202960000003,-7.921529499999963],[129.86435960000006,-7.918609499999945],[129.8675796000001,-7.906349499999976],[129.8663596,-7.901339499999949],[129.86372960000006,-7.897739499999943],[129.8586196000001,-7.898230499999954],[129.85093960000006,-7.891849499999978],[129.84675960000004,-7.890979499999958],[129.84445960000005,-7.877589499999942],[129.8421396000001,-7.872019499999965],[129.84336960000007,-7.866629499999931],[129.84152960000006,-7.857509499999935],[129.84616960000005,-7.850389499999949],[129.85511960000008,-7.848909499999934],[129.85732960000007,-7.844119499999977],[129.85565960000008,-7.842739499999936],[129.84575960000006,-7.841419499999972],[129.8373296000001,-7.830549499999961],[129.8266096000001,-7.825339499999927],[129.8231396000001,-7.820209499999976],[129.81864960000007,-7.816759499999932],[129.7871596000001,-7.812459499999932],[129.77695960000005,-7.814469499999973],[129.77353960000005,-7.8128495],[129.77200960000005,-7.813479499999971],[129.77241960000003,-7.812030499999935],[129.76984960000004,-7.810449499999947],[129.76323960000002,-7.809949499999959],[129.73179960000004,-7.796009499999968],[129.70577960000003,-7.792609499999969],[129.70452960000011,-7.790429499999959],[129.69694960000004,-7.7900095],[129.69312960000002,-7.791219499999954],[129.68819960000008,-7.789499499999977],[129.6861596000001,-7.787059499999941],[129.6788596,-7.786469499999953]]],[[[130.06997360000003,-7.753112499999929],[130.05158560000007,-7.757418499999972],[130.03908560000002,-7.753686499999958],[130.0340156000001,-7.764081499999975],[130.02899460000003,-7.766021499999965],[130.0317046,-7.769023499999946],[130.03648060000012,-7.770901499999979],[130.05231960000003,-7.766167499999938],[130.05774860000008,-7.766986499999973],[130.0756226000001,-7.786498499999936],[130.07906460000004,-7.789286499999946],[130.08183960000008,-7.788868499999978],[130.08833560000005,-7.784959499999957],[130.09280460000002,-7.7681295],[130.0928616000001,-7.763450499999976],[130.09192960000007,-7.761884499999951],[130.07713760000001,-7.756982499999935],[130.06997360000003,-7.753112499999929]]],[[[130.0020376000001,-7.696303499999942],[129.9968176000001,-7.697595499999977],[129.9891606000001,-7.706913499999928],[129.98763760000008,-7.714246499999945],[129.99099660000002,-7.726592499999981],[129.99481060000005,-7.731687499999964],[129.99732660000006,-7.729321499999969],[130.00165660000005,-7.732222499999978],[130.00206560000004,-7.735509499999978],[129.9996516000001,-7.742065499999967],[130.0251826000001,-7.745091499999944],[130.0240096000001,-7.738780499999962],[130.01926560000004,-7.732524499999954],[130.01443560000007,-7.719822499999964],[130.01377860000002,-7.7127175],[130.01124960000004,-7.709588499999938],[130.01101460000007,-7.706685499999935],[130.00567660000002,-7.702569499999981],[130.00466960000006,-7.698112499999979],[130.0020376000001,-7.696303499999942]]],[[[125.92613,-7.65982],[125.92542,-7.65884],[125.91347,-7.667],[125.90884,-7.66831],[125.9074,-7.67448],[125.90978,-7.6778],[125.91849,-7.6784],[125.93028,-7.67284],[125.93176,-7.66999],[125.9312900000001,-7.66706],[125.92761,-7.6599],[125.92613,-7.65982]]],[[[127.433028,-7.633586299999934],[127.42864,-7.62841],[127.42662,-7.62954],[127.42581,-7.635],[127.42808,-7.6374],[127.43751,-7.63509],[127.43684,-7.63143],[127.433028,-7.633586299999934]]],[[[127.63582,-7.59139],[127.63681,-7.58845],[127.63286,-7.58983],[127.63357,-7.59142],[127.63582,-7.59139]]],[[[126.62629,-7.55687],[126.61709,-7.55723],[126.61066,-7.55957],[126.60571,-7.5641],[126.59984,-7.56635],[126.59446,-7.57306],[126.5887100000001,-7.57107],[126.5851,-7.57307],[126.57959,-7.5727],[126.57694,-7.57521],[126.57165,-7.57503],[126.56681,-7.57152],[126.55757,-7.57243],[126.5507,-7.57545],[126.54581,-7.57448],[126.54353,-7.5724],[126.5363,-7.57182],[126.53097,-7.57582],[126.5261,-7.57628],[126.51897,-7.58331],[126.5146,-7.5844],[126.5090100000001,-7.58346],[126.50506,-7.58694],[126.49949,-7.58898],[126.49196,-7.58676],[126.48973,-7.58748],[126.48757000000012,-7.59061],[126.47864,-7.59008],[126.47404,-7.58835],[126.47012,-7.58939],[126.46383,-7.59632],[126.4629900000001,-7.60397],[126.45762,-7.61417],[126.43968,-7.63115],[126.43177,-7.63284],[126.42628,-7.63064],[126.41925,-7.63446],[126.41476000000011,-7.62777],[126.40701,-7.62398],[126.40339,-7.62599],[126.40436000000011,-7.62888],[126.3999500000001,-7.63308],[126.39845,-7.63654],[126.39494,-7.63616],[126.3856300000001,-7.63877],[126.38049,-7.63713],[126.37935,-7.6405],[126.38101,-7.64252],[126.38073,-7.64671],[126.3669900000001,-7.66689],[126.35717000000011,-7.67431],[126.34996,-7.67385],[126.34107,-7.67719],[126.33857000000012,-7.68038],[126.33366,-7.68211],[126.3308,-7.6875],[126.32347,-7.69506],[126.31896,-7.69369],[126.31499,-7.6949],[126.31108,-7.69282],[126.30335,-7.6924],[126.29394470000011,-7.692417399999954],[126.29208740000001,-7.695262899999932],[126.28944390000004,-7.695140299999935],[126.29006260000006,-7.693355299999951],[126.28285,-7.6948],[126.27371,-7.68881],[126.26172,-7.68914],[126.25646,-7.69167],[126.2532000000001,-7.69106],[126.2497,-7.68697],[126.2456800000001,-7.68725],[126.24178,-7.68945],[126.23616,-7.68779],[126.23363,-7.6896],[126.23204,-7.69338],[126.22255,-7.69808],[126.21467,-7.70661],[126.19685,-7.71434],[126.19576,-7.7195],[126.18946,-7.72555],[126.18473,-7.72763],[126.17594,-7.72639],[126.1759,-7.72834],[126.17566000000011,-7.72666],[126.1727,-7.72715],[126.16683000000012,-7.72317],[126.15664,-7.72111],[126.14987,-7.72202],[126.1461,-7.72497],[126.13919510000005,-7.720653699999957],[126.13501,-7.72077],[126.12921,-7.71719],[126.12255,-7.71724],[126.11608,-7.71155],[126.10692,-7.71108],[126.10449,-7.70697],[126.09622,-7.70782],[126.09391,-7.70439],[126.08969,-7.70258],[126.08051000000012,-7.70775],[126.07193,-7.70566],[126.06669000000011,-7.70585],[126.06158,-7.69851],[126.0511613000001,-7.6935082],[126.04509,-7.6927],[126.03315,-7.69776],[126.02858,-7.69305],[126.02382000000011,-7.69245],[126.02367,-7.68838],[126.02056,-7.68444],[126.02097,-7.6814],[126.01333000000011,-7.67351],[126.01039,-7.67467],[126.01059,-7.6764],[126.00581000000011,-7.68017],[126.00038,-7.68097],[125.99779,-7.67904],[125.99043,-7.6677],[125.99076,-7.66523],[125.98723,-7.6611],[125.98755,-7.65885],[125.98437,-7.65694],[125.98424000000011,-7.6552],[125.98237,-7.6563],[125.97201,-7.65326],[125.97126,-7.65577],[125.9591607000001,-7.662909299999967],[125.9544,-7.66398],[125.95014,-7.66174],[125.94742,-7.66198],[125.94293,-7.66634],[125.93414,-7.67938],[125.9333,-7.68312],[125.93446,-7.69105],[125.9317,-7.69424],[125.93064,-7.70008],[125.9255700000001,-7.70658],[125.9253529,-7.7090218],[125.92354000000012,-7.70977],[125.92379,-7.71301],[125.91821,-7.72112],[125.917207,-7.7263117],[125.91147210000008,-7.7339391],[125.91108580000002,-7.735319299999958],[125.91482660000008,-7.738042699999937],[125.91545,-7.74025],[125.91812,-7.74029],[125.91552,-7.74115],[125.91528,-7.74443],[125.89937,-7.75006],[125.89509,-7.75366],[125.89375,-7.75821],[125.88062,-7.76209],[125.87489,-7.76617],[125.86661,-7.76593],[125.86230000000012,-7.76767],[125.86138,-7.77501],[125.8576,-7.78069],[125.85945,-7.78343],[125.86499,-7.78569],[125.8688800000001,-7.79063],[125.87255,-7.79155],[125.87590000000012,-7.79682],[125.87462,-7.80586],[125.87052,-7.81066],[125.87062,-7.8152],[125.86322,-7.81694],[125.86038,-7.82107],[125.85663000000011,-7.82188],[125.84921,-7.82809],[125.84291,-7.83607],[125.83888,-7.8357],[125.83355,-7.84184],[125.8281,-7.84499],[125.82728,-7.8473],[125.8299300000001,-7.85082],[125.82751,-7.85457],[125.8249,-7.85547],[125.81854,-7.85379],[125.8209,-7.85355],[125.81652,-7.85188],[125.81378,-7.85345],[125.81473,-7.85429],[125.81317,-7.85659],[125.81056,-7.85675],[125.81036,-7.85848],[125.80659,-7.86148],[125.80605,-7.86284],[125.80896,-7.86675],[125.81356,-7.87057],[125.80894,-7.86795],[125.81188,-7.87213],[125.81274,-7.87761],[125.81605,-7.8816],[125.81536,-7.88671],[125.81725,-7.88765],[125.81725,-7.88988],[125.81913,-7.89174],[125.81774,-7.89718],[125.82546,-7.9044],[125.82686,-7.91592],[125.8240300000001,-7.91974],[125.82261,-7.94183],[125.81849000000011,-7.9586],[125.8034,-7.98113],[125.79987,-7.98262],[125.79898,-7.98491],[125.79235,-7.99038],[125.78894,-8.00736],[125.7987,-8.01612],[125.80174000000011,-8.01637],[125.80668,-8.01424],[125.8081,-8.00373],[125.81595,-7.99547],[125.82817260000002,-7.991357499999935],[125.83348760000001,-7.993059399999936],[125.83504,-7.98815],[125.84143,-7.98544],[125.85106,-7.98422],[125.85687,-7.97815],[125.86218,-7.97893],[125.86913,-7.97674],[125.8739,-7.9641],[125.88092,-7.95899],[125.88616,-7.95241],[125.89657000000011,-7.94828],[125.90577,-7.94735],[125.90977,-7.9429],[125.92111000000011,-7.94104],[125.92535,-7.94236],[125.92733,-7.93625],[125.93448,-7.93028],[125.93624000000011,-7.92544],[125.94084,-7.92321],[125.94425,-7.91751],[125.94961,-7.91496],[125.94959,-7.91174],[125.95034,-7.9148],[125.9534900000001,-7.91405],[125.95606,-7.91773],[125.96037760000002,-7.916057],[125.97056,-7.9193],[125.98245,-7.9198],[125.98487000000011,-7.91835],[125.9878900000001,-7.91177],[125.99062,-7.90962],[125.99518000000012,-7.90895],[125.99804810000012,-7.906627],[126.01187,-7.90153],[126.02172,-7.90154],[126.02734,-7.89915],[126.03014,-7.8957],[126.04961,-7.89311],[126.05941,-7.89072],[126.06352,-7.88815],[126.06564,-7.88899],[126.07121,-7.88757],[126.07724,-7.88977],[126.08106,-7.88823],[126.08472,-7.88946],[126.08821000000012,-7.88868],[126.09378,-7.89123],[126.10152,-7.89213],[126.10668,-7.89481],[126.12359,-7.89295],[126.12786,-7.89051],[126.13178,-7.89133],[126.14114,-7.89867],[126.14928,-7.89917],[126.1543,-7.90244],[126.16455,-7.91044],[126.17112,-7.92306],[126.17736,-7.9254],[126.18538,-7.92497],[126.19285,-7.92649],[126.19747,-7.92474],[126.22509,-7.92836],[126.24829000000011,-7.92068],[126.26056,-7.92099],[126.27175000000011,-7.91823],[126.2846,-7.91711],[126.29376,-7.92241],[126.3102,-7.91593],[126.32091,-7.91613],[126.33004,-7.91425],[126.33302,-7.91492],[126.34423,-7.92255],[126.35548,-7.92499],[126.36772,-7.93447],[126.37964000000011,-7.93294],[126.388,-7.93651],[126.39292000000012,-7.93498],[126.40325,-7.92852],[126.41347,-7.93154],[126.42146,-7.93091],[126.42834,-7.93844],[126.43126,-7.93945],[126.44014,-7.9482],[126.44305,-7.9493],[126.4632600000001,-7.97405],[126.46603,-7.97521],[126.47454,-7.97088],[126.48991,-7.94771],[126.4938800000001,-7.93654],[126.49945,-7.92739],[126.49988,-7.92409],[126.49837,-7.92114],[126.50355,-7.91796],[126.50317,-7.91475],[126.50146,-7.91447],[126.50125,-7.91211],[126.49855,-7.9094],[126.49852,-7.90656],[126.50217,-7.90111],[126.50273,-7.89737],[126.50582,-7.89476],[126.50833000000011,-7.88934],[126.5112600000001,-7.88848],[126.51484,-7.88309],[126.51713,-7.87039],[126.52106,-7.85869],[126.53034,-7.85345],[126.53682,-7.85172],[126.54569,-7.83425],[126.54906,-7.82347],[126.55914,-7.8179],[126.56179,-7.81477],[126.57796,-7.81319],[126.58134,-7.80708],[126.58386,-7.8057],[126.5939,-7.80646],[126.59830000000011,-7.79825],[126.60356,-7.79222],[126.61479,-7.79101],[126.62256,-7.78277],[126.62645,-7.78294],[126.63607,-7.77843],[126.64149,-7.77808],[126.64926,-7.77523],[126.65921,-7.77772],[126.67339,-7.76351],[126.68186,-7.76191],[126.69073,-7.75601],[126.69586,-7.7506],[126.70018,-7.75219],[126.70576,-7.75147],[126.71986,-7.74449],[126.73113,-7.74868],[126.74498,-7.74678],[126.75107,-7.74866],[126.75591,-7.7483],[126.7594600000001,-7.74622],[126.76321,-7.74823],[126.77181,-7.74562],[126.77331,-7.74643],[126.77933,-7.74374],[126.78415,-7.7458],[126.7928,-7.74202],[126.80129000000011,-7.74454],[126.80405,-7.74138],[126.8117400000001,-7.7505],[126.81744,-7.75467],[126.81995,-7.75472],[126.82641,-7.75325],[126.83026,-7.74772],[126.8303800000001,-7.74541],[126.83288,-7.74524],[126.83328,-7.742],[126.83787,-7.74048],[126.84267000000011,-7.73395],[126.83764,-7.72548],[126.83668000000011,-7.71763],[126.83363,-7.71622],[126.83153,-7.70116],[126.82163,-7.68669],[126.81973,-7.68489],[126.81363380000005,-7.683559099999968],[126.80881000000011,-7.67929],[126.81081,-7.6714],[126.81586,-7.66203],[126.81115000000011,-7.65638],[126.80853,-7.65453],[126.79961,-7.65917],[126.79124,-7.65755],[126.78501,-7.66199],[126.7830808000001,-7.661871799999972],[126.7791,-7.65727],[126.77492,-7.65925],[126.77029,-7.65736],[126.7584700000001,-7.65625],[126.75033,-7.65778],[126.74441,-7.66147],[126.73730000000012,-7.66072],[126.73364,-7.66446],[126.72599,-7.66764],[126.72285000000011,-7.66726],[126.7198,-7.6651],[126.71864,-7.65978],[126.7141,-7.65461],[126.71202,-7.64379],[126.70585,-7.64039],[126.69926,-7.64194],[126.69553,-7.64018],[126.69048,-7.63354],[126.68767,-7.62338],[126.68005,-7.62],[126.66836,-7.62141],[126.66434,-7.61903],[126.66148,-7.61293],[126.6511,-7.61085],[126.64698,-7.6061],[126.63981,-7.60548],[126.63717,-7.60288],[126.63387000000012,-7.59757],[126.6314,-7.58411],[126.63769,-7.5721],[126.63673,-7.56395],[126.6324,-7.55854],[126.62629,-7.55687]]],[[[127.6011400000001,-7.57504],[127.59435,-7.56181],[127.5933500000001,-7.55378],[127.58851,-7.54896],[127.58623000000011,-7.55031],[127.58605000000011,-7.55256],[127.5824,-7.55643],[127.58217,-7.56035],[127.58867,-7.57152],[127.588,-7.57315],[127.59061,-7.5801],[127.59503,-7.58633],[127.59819,-7.60243],[127.59474000000012,-7.61279],[127.59847,-7.62122],[127.61838000000012,-7.60539],[127.61357,-7.60611],[127.61368,-7.60171],[127.61574,-7.60132],[127.61820000000012,-7.59796],[127.61565,-7.59164],[127.61205,-7.59226],[127.60953,-7.59555],[127.6051000000001,-7.59252],[127.60498,-7.57971],[127.6011400000001,-7.57504]]],[[[127.55725,-7.54951],[127.55963,-7.54715],[127.55766,-7.54431],[127.55499,-7.54446],[127.55473,-7.54729],[127.55725,-7.54951]]],[[[127.54939,-7.52934],[127.54708,-7.52946],[127.54440000000011,-7.53191],[127.54771,-7.53266],[127.54939,-7.52934]]],[[[129.6749641,-7.527604599999961],[129.66589610000005,-7.528288599999939],[129.66621210000005,-7.532791599999939],[129.65958510000007,-7.549329599999965],[129.66153410000004,-7.555070599999965],[129.68456960000003,-7.564117499999952],[129.6913006000001,-7.573643499999946],[129.69371160000003,-7.573085499999934],[129.69700260000002,-7.569739499999969],[129.70204460000002,-7.568503499999963],[129.7109206,-7.569636499999945],[129.7153406000001,-7.572750499999927],[129.71695560000012,-7.572275499999932],[129.7176346000001,-7.568532499999947],[129.72409960000005,-7.558877499999937],[129.7255586000001,-7.551452499999925],[129.71748860000002,-7.548445499999957],[129.70126160000007,-7.5557535],[129.69126160000008,-7.551946499999929],[129.6873611000001,-7.545131599999934],[129.67624110000008,-7.532706599999926],[129.6749641,-7.527604599999961]]],[[[127.54387,-7.52657],[127.54093000000012,-7.52746],[127.54061,-7.52919],[127.53559,-7.53337],[127.5365,-7.53474],[127.5355,-7.54098],[127.54173,-7.54362],[127.54478,-7.54055],[127.54458000000011,-7.53602],[127.54585,-7.53438],[127.5423300000001,-7.53064],[127.5461600000001,-7.52869],[127.54557000000011,-7.52659],[127.54387,-7.52657]]],[[[127.55231,-7.52144],[127.55418,-7.52031],[127.55235,-7.5178],[127.55051,-7.51985],[127.55231,-7.52144]]],[[[127.29401,-7.511],[127.28222,-7.51275],[127.27632,-7.51632],[127.27400000000011,-7.52015],[127.2792,-7.52572],[127.28545,-7.52908],[127.28941,-7.53064],[127.29443,-7.5302],[127.29968,-7.51598],[127.29839,-7.51269],[127.29401,-7.511]]],[[[127.38863,-7.4963],[127.38614,-7.49205],[127.38637,-7.49571],[127.38502,-7.49634],[127.3857200000001,-7.49357],[127.3831,-7.49212],[127.38282,-7.49501],[127.38171000000011,-7.49406],[127.37318,-7.49583],[127.37214,-7.49438],[127.37171,-7.49622],[127.36539,-7.50097],[127.36033,-7.51652],[127.3571,-7.52094],[127.35714,-7.52611],[127.3551000000001,-7.52908],[127.35689,-7.54573],[127.35966,-7.55243],[127.35962,-7.56925],[127.36457,-7.57594],[127.3667200000001,-7.57535],[127.37099,-7.58518],[127.3699600000001,-7.5876],[127.36642,-7.59126],[127.36128,-7.59054],[127.347,-7.5934],[127.34653,-7.592467899999974],[127.34516,-7.5941],[127.3413,-7.59472],[127.33764610000003,-7.599510299999963],[127.33396,-7.60146],[127.33221,-7.60764],[127.3273,-7.60821],[127.32459,-7.61212],[127.32626,-7.61587],[127.32326000000012,-7.62852],[127.3266,-7.63243],[127.32977,-7.63374],[127.33224,-7.64021],[127.3372,-7.64514],[127.33697,-7.64744],[127.33993,-7.64921],[127.34393000000011,-7.64797],[127.35215,-7.64855],[127.36165,-7.65381],[127.36714,-7.65467],[127.37202,-7.65328],[127.37533,-7.65063],[127.3829,-7.65066],[127.38642,-7.64922],[127.39531000000011,-7.6422],[127.40025,-7.63621],[127.4012100000001,-7.63097],[127.40495,-7.62622],[127.40541,-7.60653],[127.4086400000001,-7.60051],[127.41388,-7.59978],[127.41492,-7.6023],[127.41719000000012,-7.60265],[127.42802,-7.60069],[127.43077,-7.59879],[127.436971,-7.599685399999942],[127.43941,-7.60177],[127.44478,-7.59721],[127.46126,-7.59059],[127.46989,-7.58961],[127.47216,-7.58375],[127.48168,-7.57559],[127.48271000000011,-7.57275],[127.48101,-7.57087],[127.4840200000001,-7.56419],[127.48329,-7.56087],[127.48805,-7.55281],[127.48701,-7.5508],[127.48873,-7.5486],[127.48345,-7.54358],[127.4842000000001,-7.5423],[127.48265,-7.53892],[127.48478000000011,-7.53006],[127.48305,-7.52878],[127.48397000000011,-7.52743],[127.48297,-7.52533],[127.4852800000001,-7.52602],[127.48685000000012,-7.52436],[127.48597,-7.52072],[127.48298000000011,-7.52207],[127.48037000000011,-7.52035],[127.48135,-7.5184],[127.47732,-7.51737],[127.47717000000011,-7.51531],[127.47307,-7.51598],[127.47331,-7.51416],[127.46677000000011,-7.5175],[127.46581,-7.519],[127.46673,-7.52115],[127.46298,-7.52481],[127.46046,-7.5248],[127.45984,-7.5274],[127.45593,-7.52786],[127.44791,-7.52409],[127.44127,-7.52395],[127.43558,-7.52076],[127.42896,-7.5109],[127.42142,-7.51064],[127.41821,-7.51241],[127.41195,-7.51104],[127.41207,-7.5092],[127.41113,-7.5104],[127.40850000000012,-7.50404],[127.40956,-7.49815],[127.40762,-7.49711],[127.40613,-7.49711],[127.40623,-7.49977],[127.40405,-7.49844],[127.40122,-7.50349],[127.39569,-7.50632],[127.39462,-7.51068],[127.39659,-7.5093],[127.40191,-7.50938],[127.39938,-7.51185],[127.39684000000011,-7.50973],[127.39322,-7.51223],[127.38851000000011,-7.50901],[127.38233,-7.50989],[127.38032,-7.50723],[127.38484,-7.50411],[127.38351000000011,-7.50142],[127.39115,-7.49934],[127.39123,-7.49644],[127.38863,-7.4963]]],[[[128.55622440000002,-7.354373399999929],[128.55420190000007,-7.354670799999951],[128.55110860000002,-7.363474799999949],[128.5496809000001,-7.364307599999961],[128.54926450000005,-7.368888099999936],[128.55271470000002,-7.375074699999971],[128.55308650000006,-7.380987],[128.55705720000003,-7.383997699999952],[128.56383870000002,-7.381499199999951],[128.56526640000004,-7.378941299999951],[128.56877610000004,-7.362642],[128.565314,-7.357002699999953],[128.56026950000012,-7.358656399999973],[128.56145920000006,-7.363177399999927],[128.558009,-7.363593799999933],[128.5561054000001,-7.360678899999925],[128.55925820000004,-7.355027699999937],[128.55622440000002,-7.354373399999929]]],[[[128.5699178000001,-7.2956884],[128.57241180000005,-7.294582],[128.5728401,-7.291012799999976],[128.5699178000001,-7.283910099999957],[128.56291770000007,-7.281233199999974],[128.5542134000001,-7.300685299999941],[128.56099040000004,-7.315568799999937],[128.56541620000007,-7.313427299999944],[128.5664869000001,-7.310714699999949],[128.564631,-7.3048613],[128.5699178000001,-7.2956884]]],[[[128.39709320000009,-7.217422299999953],[128.39081140000008,-7.2177554],[128.39647450000007,-7.220515599999942],[128.3981877000001,-7.219135499999936],[128.39709320000009,-7.217422299999953]]],[[[128.40319140000008,-7.2224076],[128.4049454000001,-7.218945199999951],[128.40270870000006,-7.217184399999951],[128.40067320000003,-7.219356399999981],[128.40156660000002,-7.2221336],[128.40319140000008,-7.2224076]]],[[[128.6121,-7.06293],[128.60991,-7.06228],[128.6062700000001,-7.06565],[128.60137,-7.06564],[128.5991,-7.06732],[128.59420000000011,-7.06606],[128.59211,-7.06965],[128.58679,-7.07214],[128.58231,-7.07818],[128.57567,-7.08342],[128.57193,-7.08937],[128.56771,-7.08996],[128.55991,-7.09809],[128.55582,-7.09774],[128.55429,-7.0996],[128.54807,-7.10159],[128.54789,-7.10362],[128.54554,-7.10566],[128.5417900000001,-7.10639],[128.53708,-7.11351],[128.53771,-7.11449],[128.53244,-7.11747],[128.52926,-7.12369],[128.5295,-7.12794],[128.52397,-7.13743],[128.52464,-7.14323],[128.53722,-7.15814],[128.53862,-7.15771],[128.54329,-7.16284],[128.55179,-7.16369],[128.5548000000001,-7.16232],[128.55563,-7.16003],[128.55889,-7.16013],[128.5612,-7.16506],[128.56568,-7.16836],[128.56623,-7.17105],[128.57086070000003,-7.173626899999931],[128.57296,-7.17209],[128.57880000000011,-7.17516],[128.59012,-7.18733],[128.5928,-7.18785],[128.59486,-7.19188],[128.59772,-7.19285],[128.60018,-7.19712],[128.61898,-7.20999],[128.6222,-7.21056],[128.62396,-7.21309],[128.64089,-7.21809],[128.64754,-7.21753],[128.6514800000001,-7.2165],[128.65525,-7.21107],[128.65516,-7.20529],[128.66032,-7.1945],[128.66283,-7.19225],[128.66642,-7.19187],[128.66682,-7.18683],[128.67126,-7.18439],[128.679,-7.17219],[128.68932,-7.16476],[128.68639,-7.16218],[128.68306,-7.16327],[128.67991,-7.16655],[128.6736,-7.16566],[128.66081,-7.15183],[128.65988,-7.14904],[128.65581,-7.14657],[128.65512,-7.13852],[128.65731,-7.13783],[128.65921,-7.13965],[128.66146,-7.13879],[128.66577,-7.14215],[128.6636400000001,-7.14295],[128.66864,-7.14401],[128.67268,-7.14309],[128.6759,-7.13976],[128.68663,-7.13805],[128.69175,-7.1331],[128.69445,-7.12769],[128.6992,-7.12622],[128.6989,-7.12132],[128.70168,-7.11627],[128.69926,-7.11185],[128.6995700000001,-7.10677],[128.69091,-7.10041],[128.67991,-7.09927],[128.67803,-7.09497],[128.67581,-7.09635],[128.66513,-7.09396],[128.6640900000001,-7.09719],[128.66101,-7.09859],[128.65254,-7.09687],[128.65422,-7.09542],[128.65061,-7.09274],[128.64871,-7.08491],[128.64544,-7.08038],[128.6342800000001,-7.0755],[128.6306,-7.07042],[128.62394,-7.06916],[128.6205900000001,-7.06538],[128.6121,-7.06293]]],[[[129.14031950000003,-6.9540241],[129.13364950000005,-6.954604099999926],[129.12951950000001,-6.9566541],[129.12405950000004,-6.965164099999981],[129.12258950000012,-6.9730341],[129.1254295000001,-6.975294099999928],[129.12530950000007,-6.982464099999959],[129.13319950000005,-6.989284099999963],[129.13358950000008,-6.991164099999935],[129.14539950000005,-6.993264099999976],[129.14670950000004,-6.9919341],[129.15004950000002,-6.992114099999981],[129.15292950000003,-6.989774099999977],[129.15642950000006,-6.989584099999945],[129.15908950000005,-6.985064099999931],[129.16213950000008,-6.983564099999967],[129.1645595000001,-6.972884099999931],[129.16733950000003,-6.968694099999936],[129.1595095,-6.957554099999925],[129.15401950000012,-6.957334099999969],[129.15157950000003,-6.958884099999977],[129.15003950000005,-6.956794099999968],[129.1442895,-6.9541141],[129.14031950000003,-6.9540241]]],[[[129.53920920000007,-6.708254599999975],[129.53544920000002,-6.708373599999959],[129.53030920000003,-6.713193599999954],[129.52448020000008,-6.711284599999942],[129.52337920000002,-6.713684599999965],[129.52199020000012,-6.712884599999938],[129.5182592000001,-6.715154599999948],[129.5140302000001,-6.713971599999979],[129.51247020000005,-6.711013599999944],[129.5092502000001,-6.710563599999944],[129.5020492000001,-6.717104599999971],[129.49689020000005,-6.724884599999939],[129.4944302,-6.737464599999953],[129.4941592,-6.748663599999929],[129.4975902000001,-6.753304599999979],[129.5038502000001,-6.756334599999946],[129.50012020000008,-6.750033599999938],[129.4998002000001,-6.745484599999941],[129.50067920000004,-6.7419236],[129.5021991000001,-6.744123599999966],[129.50505920000012,-6.740933599999948],[129.50422920000005,-6.743703599999947],[129.50657920000003,-6.747053599999958],[129.50463920000004,-6.750814599999956],[129.51420020000012,-6.752474599999971],[129.51544020000006,-6.755943599999966],[129.51823220000006,-6.758354599999961],[129.52145020000012,-6.753153599999962],[129.5312692000001,-6.747944599999926],[129.5392002000001,-6.737733599999956],[129.5386092000001,-6.725513599999942],[129.54401020000012,-6.719434599999943],[129.53948920000005,-6.711064599999929],[129.54047920000005,-6.708634599999925],[129.53920920000007,-6.708254599999975]]],[[[129.53706920000002,-6.698505599999976],[129.5345652000001,-6.698369599999978],[129.53423820000012,-6.699893599999939],[129.53666920000012,-6.700934599999925],[129.53706920000002,-6.698505599999976]]],[[[130.0093968000001,-6.294699399999956],[130.00732670000002,-6.294342499999971],[130.00085450000006,-6.297578599999952],[129.9996886,-6.299815299999977],[130.0026391,-6.303574799999978],[130.00463790000003,-6.303384499999936],[130.00501860000008,-6.307524699999931],[130.0126805000001,-6.315852799999959],[130.01891460000002,-6.318755799999963],[130.02178160000005,-6.316996499999959],[130.0258391000001,-6.318733099999974],[130.03119270000002,-6.318398899999977],[130.0332152000001,-6.316590499999961],[130.03357210000001,-6.308857199999977],[130.030455,-6.304931099999976],[130.0264575000001,-6.304645599999958],[130.02500610000004,-6.300933599999951],[130.02255520000006,-6.301576099999977],[130.02217450000012,-6.297150299999942],[130.01758210000003,-6.298411399999964],[130.01398920000008,-6.295103899999958],[130.0093968000001,-6.294699399999956]]],[[[129.98785920000012,-6.300413599999956],[129.99019450000003,-6.299387],[129.9874999000001,-6.296114599999953],[129.98699190000002,-6.291905399999962],[129.9838350000001,-6.297166899999979],[129.985613,-6.301122199999952],[129.98785920000012,-6.300413599999956]]]]},"properties":{"shapeName":"Maluku Barat Daya","shapeISO":"","shapeID":"22746128B90737220524363","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[130.0443742000001,-4.603159399999925],[130.0475358000001,-4.594947899999966],[130.0459111,-4.592049799999927],[130.04791190000003,-4.586010199999976],[130.04353990000004,-4.580896199999927],[130.0397196,-4.579052],[130.036987,-4.579548599999953],[130.03488930000003,-4.584497],[130.03076160000012,-4.587175599999966],[130.0315081000001,-4.595035799999948],[130.0331768000001,-4.597055699999942],[130.0339672,-4.6025007],[130.03712880000012,-4.604652399999964],[130.04187120000006,-4.605355],[130.0443742000001,-4.603159399999925]]],[[[129.69235790000005,-4.555700099999967],[129.694405,-4.551291099999958],[129.69372260000011,-4.542683],[129.6920616000001,-4.541642199999956],[129.6878964000001,-4.546252299999935],[129.6826476000001,-4.548876699999937],[129.6772413000001,-4.5558051],[129.6664287000001,-4.561158899999953],[129.67047030000003,-4.565463],[129.68212270000004,-4.564518199999952],[129.68584940000005,-4.562628599999925],[129.69235790000005,-4.555700099999967]]],[[[129.76630150000005,-4.5183157],[129.76508730000012,-4.5169564],[129.7633135000001,-4.521023599999978],[129.7716706000001,-4.537504499999955],[129.77554580000003,-4.537831299999937],[129.78161520000003,-4.532555599999966],[129.7840897000001,-4.523171299999944],[129.781055,-4.520416699999942],[129.77372490000005,-4.518269],[129.76630150000005,-4.5183157]]],[[[129.94413870000005,-4.508133699999973],[129.93994740000005,-4.512240299999974],[129.94147710000004,-4.5237511],[129.93455920000008,-4.533911799999942],[129.9362887000001,-4.5352089],[129.93585630000007,-4.5369384],[129.92807370000003,-4.542559199999971],[129.9055872,-4.549601499999937],[129.90188480000006,-4.546435],[129.89779280000005,-4.545314599999926],[129.8880497,-4.545947899999931],[129.88425,-4.547993899999938],[129.88147320000007,-4.5474093],[129.87704010000004,-4.543317299999956],[129.8646665000001,-4.5455095],[129.86111030000006,-4.549601499999937],[129.86076930000002,-4.5562755],[129.8649101000001,-4.563046899999961],[129.86866120000002,-4.564654499999961],[129.86963550000007,-4.561926399999948],[129.87275320000003,-4.5606111],[129.87426340000002,-4.556470299999944],[129.8831782000001,-4.552816699999937],[129.88473710000005,-4.554180699999961],[129.88619860000006,-4.561244399999964],[129.888473,-4.562134799999967],[129.89072910000004,-4.557542099999978],[129.8934571000001,-4.558175399999925],[129.89384680000012,-4.559977799999956],[129.89638,-4.559636799999964],[129.897403,-4.557980499999928],[129.9017474000001,-4.558204],[129.90669830000002,-4.565135199999929],[129.9112778000001,-4.565011399999946],[129.9132582000001,-4.566372899999976],[129.9135057000001,-4.570457399999952],[129.91833280000003,-4.5715713],[129.9206845000001,-4.568600799999956],[129.92841010000006,-4.568757099999971],[129.93526870000005,-4.571256],[129.9368105000001,-4.565620299999978],[129.9413829,-4.566417799999954],[129.94579470000008,-4.562289299999975],[129.95132520000004,-4.5622176],[129.95201640000005,-4.560994699999981],[129.94990360000008,-4.555495099999973],[129.9537213000001,-4.553974499999981],[129.9576307000001,-4.548865499999977],[129.95358290000001,-4.539765299999942],[129.95106970000006,-4.537174899999968],[129.9554859000001,-4.531788399999925],[129.95017740000003,-4.529789899999969],[129.94992760000002,-4.526667199999963],[129.94705470000008,-4.526167599999951],[129.94430710000006,-4.513463199999933],[129.94692240000006,-4.508245],[129.94413870000005,-4.508133699999973]]],[[[129.87817860000007,-4.505079399999943],[129.8752204000001,-4.507471099999975],[129.87358390000009,-4.5123176],[129.8709404000001,-4.511877],[129.8689263000001,-4.518422799999939],[129.86691220000012,-4.519555799999978],[129.8677934000001,-4.520877499999926],[129.86666040000011,-4.5228916],[129.8681081000001,-4.525283399999978],[129.86716400000012,-4.525912799999958],[129.86905220000006,-4.527675099999954],[129.86804510000002,-4.529815099999951],[129.8774863000001,-4.534472699999981],[129.8825845,-4.535857399999941],[129.88435170000002,-4.533891],[129.88887850000003,-4.536109199999942],[129.8907038000001,-4.535291],[129.89108150000004,-4.532269799999938],[129.8890044000001,-4.528367499999945],[129.89391380000006,-4.5232063],[129.89108150000004,-4.521506899999963],[129.89120730000002,-4.516031099999964],[129.88075920000006,-4.510807],[129.87994090000007,-4.506715799999938],[129.87817860000007,-4.505079399999943]]],[[[129.84774370000002,-4.503237199999944],[129.84591520000004,-4.503986399999974],[129.84821770000008,-4.505517699999928],[129.84910170000012,-4.504569599999968],[129.84774370000002,-4.503237199999944]]],[[[129.89567610000006,-4.503820599999926],[129.8952356000001,-4.502561699999944],[129.89252240000008,-4.503734099999974],[129.89504670000008,-4.503946399999961],[129.8967461000001,-4.505897599999969],[129.89630560000012,-4.5115623],[129.900117,-4.516151199999968],[129.9002438000001,-4.518177199999968],[129.89617970000006,-4.528871],[129.9034808,-4.530570399999931],[129.90713140000003,-4.528178599999933],[129.9087049000001,-4.522325199999955],[129.90914550000002,-4.517352799999969],[129.90687960000002,-4.506715799999938],[129.90058550000003,-4.503191199999947],[129.89567610000006,-4.503820599999926]]],[[[129.9375321000001,-4.499634199999946],[129.93857130000004,-4.496293699999967],[129.93537930000002,-4.493658499999981],[129.9345257000001,-4.4955885],[129.9364557,-4.497073199999932],[129.9363072000001,-4.500153799999964],[129.9375321000001,-4.499634199999946]]],[[[127.9120243000001,-3.678573599999936],[127.91055510000001,-3.680738599999927],[127.9144318000001,-3.685163399999965],[127.91530180000007,-3.679184299999974],[127.9123681000001,-3.679614099999981],[127.9120243000001,-3.678573599999936]]],[[[127.91142620000005,-3.673806099999979],[127.91030770000009,-3.671378],[127.9068559000001,-3.6722405],[127.9082194,-3.675138499999946],[127.91142620000005,-3.673806099999979]]],[[[127.91117070000007,-3.648652099999936],[127.90471610000009,-3.650854599999946],[127.90269320000004,-3.653336199999956],[127.903152,-3.654962799999964],[127.90814410000007,-3.654511499999956],[127.91117070000007,-3.648652099999936]]],[[[128.780906,-3.647334399999977],[128.7727420000001,-3.639307799999926],[128.77006040000003,-3.648868099999959],[128.76644520000002,-3.647882099999947],[128.76524010000003,-3.645362399999954],[128.7577755000001,-3.649408499999936],[128.75839230000008,-3.664780899999926],[128.7629372,-3.680974299999946],[128.7615154,-3.6891831],[128.76644520000002,-3.693455599999936],[128.78123470000003,-3.691812299999981],[128.78331620000006,-3.694879799999967],[128.7855072000001,-3.695537099999967],[128.7868218000001,-3.694989299999975],[128.7867123000001,-3.693236499999955],[128.80500740000002,-3.686444299999948],[128.8113614,-3.675270099999977],[128.80785570000012,-3.665519899999936],[128.8090608000001,-3.663219399999946],[128.806129,-3.648802],[128.8028164000001,-3.6490872],[128.80037430000004,-3.643845299999953],[128.79755790000002,-3.644705099999953],[128.79229940000005,-3.641418599999952],[128.78758870000001,-3.649635],[128.78484990000004,-3.651168699999971],[128.7803583000001,-3.650511399999971],[128.780906,-3.647334399999977]]],[[[128.613045,-3.6559534],[128.6133043000001,-3.6504283],[128.6079482,-3.630945199999928],[128.60450030000004,-3.627452199999937],[128.6029903000001,-3.633855799999935],[128.60518560000003,-3.641369599999962],[128.6041791,-3.6456931],[128.60903080000003,-3.656146099999944],[128.61069410000005,-3.657404799999938],[128.613045,-3.6559534]]],[[[128.3758521000001,-3.5321258],[128.37957110000002,-3.528650399999947],[128.37458520000007,-3.531979],[128.3758521000001,-3.5321258]]],[[[128.4566886,-3.513026799999977],[128.45638440000005,-3.511454499999957],[128.44699550000007,-3.510449599999959],[128.4431704000001,-3.515062499999942],[128.44491,-3.516964799999926],[128.44086170000003,-3.515555399999926],[128.4319269,-3.522166299999981],[128.42559290000008,-3.522333899999978],[128.42072410000003,-3.525238099999967],[128.4148914000001,-3.532194199999935],[128.41329760000008,-3.539303799999971],[128.4169670000001,-3.541625599999975],[128.41802330000007,-3.546873699999935],[128.42142720000004,-3.550031899999965],[128.41949280000006,-3.557027299999959],[128.42196840000008,-3.559068899999943],[128.422026,-3.562401499999964],[128.42412290000004,-3.566044599999941],[128.4197448000001,-3.574673599999926],[128.4125983,-3.582874699999934],[128.41039090000004,-3.5874031],[128.4107322000001,-3.5913468],[128.41613030000008,-3.598937499999977],[128.41774830000008,-3.609573699999942],[128.41586860000007,-3.614047099999937],[128.3990563000001,-3.628679899999952],[128.39946410000005,-3.631451899999945],[128.4034018000001,-3.634703299999956],[128.41708370000003,-3.63524],[128.4292114000001,-3.629622499999925],[128.4413234000001,-3.630568399999959],[128.4433299000001,-3.627235699999972],[128.4460633000001,-3.6258072],[128.44708,-3.621876499999928],[128.45506280000006,-3.622314899999935],[128.45873670000003,-3.6208197],[128.4615785000001,-3.616561799999943],[128.4657089000001,-3.613965199999939],[128.479975,-3.617793899999981],[128.48185660000001,-3.621195299999954],[128.48368990000006,-3.6185417],[128.48769430000004,-3.618710599999929],[128.49026130000004,-3.620493499999952],[128.49413520000007,-3.619482499999947],[128.49769450000008,-3.624167299999954],[128.49942210000006,-3.622439399999962],[128.50003130000005,-3.615709299999935],[128.506276,-3.615788799999962],[128.507108,-3.616968],[128.509077,-3.615219899999943],[128.5080584000001,-3.609173399999975],[128.51218530000006,-3.606019499999945],[128.5146072000001,-3.606591199999968],[128.51740640000003,-3.6093685],[128.51695160000008,-3.610509099999945],[128.5210757000001,-3.612792799999966],[128.5197501,-3.614617299999964],[128.52413890000003,-3.617471499999965],[128.5386354000001,-3.615311599999927],[128.54351950000012,-3.611777699999948],[128.54272820000006,-3.6047806],[128.54526510000005,-3.602348199999938],[128.54877720000002,-3.602688199999932],[128.55445410000004,-3.5998402],[128.56244820000006,-3.601216],[128.56555290000006,-3.598251499999947],[128.56706880000002,-3.593765099999928],[128.57604220000007,-3.58567],[128.5762569000001,-3.581947],[128.57396290000008,-3.580877799999939],[128.56848350000007,-3.5632314],[128.56069150000008,-3.5545198],[128.55604180000012,-3.543718399999932],[128.55050640000002,-3.538428799999963],[128.5457672000001,-3.538158499999952],[128.53946750000011,-3.540744299999972],[128.53412820000005,-3.539187399999946],[128.52925190000008,-3.535643199999924],[128.524223,-3.5277698],[128.49943220000011,-3.513369699999942],[128.4868027000001,-3.518756799999949],[128.48013,-3.518511099999955],[128.4762025000001,-3.516425499999968],[128.46940960000006,-3.516449],[128.4597797,-3.512118799999939],[128.4566886,-3.513026799999977]]],[[[128.58150080000007,-3.4942372],[128.57271670000011,-3.494616],[128.5662079000001,-3.498083899999926],[128.5599171,-3.508077899999932],[128.5565842000001,-3.516674199999954],[128.55740670000012,-3.519994499999939],[128.55497290000005,-3.530898299999933],[128.567786,-3.541905299999939],[128.56947030000003,-3.545389799999953],[128.57309140000007,-3.545965399999943],[128.5769183000001,-3.549299599999927],[128.59527980000007,-3.551139699999965],[128.60083410000004,-3.559515],[128.60568820000003,-3.573565699999961],[128.6096143000001,-3.577872499999955],[128.61368320000008,-3.579680899999971],[128.6174903000001,-3.584416],[128.6280313000001,-3.584392199999968],[128.62819790000003,-3.586200599999927],[128.62312960000008,-3.591173699999956],[128.61670270000002,-3.591378499999962],[128.60717340000008,-3.588499799999965],[128.6088152000001,-3.596233],[128.6118609,-3.598255599999959],[128.621117,-3.600420899999961],[128.62680390000003,-3.604156599999953],[128.62882650000006,-3.611271199999976],[128.6329429000001,-3.612913],[128.63736870000002,-3.617362599999979],[128.6383015,-3.623205499999926],[128.64197880000006,-3.6246432],[128.6450754000001,-3.628431099999943],[128.64460540000005,-3.630449399999975],[128.6514069000001,-3.629730599999959],[128.65560950000008,-3.625970399999972],[128.65988920000007,-3.6193203],[128.65975680000008,-3.614993899999945],[128.66358290000005,-3.6093902],[128.6657285000001,-3.590769],[128.66113880000012,-3.590479599999981],[128.65131320000012,-3.583055199999933],[128.65099910000004,-3.577672899999925],[128.65475390000006,-3.572747399999969],[128.65776390000008,-3.573473099999944],[128.658216,-3.576399899999956],[128.66260280000006,-3.573892099999966],[128.6680030000001,-3.5766866],[128.67456290000007,-3.575757399999929],[128.68638880000003,-3.581967799999973],[128.6863174,-3.5840617],[128.68864930000007,-3.583395499999938],[128.69410330000005,-3.587088799999947],[128.69892860000004,-3.587845099999925],[128.70109460000003,-3.591997],[128.7054710000001,-3.595471499999974],[128.70885090000002,-3.603002299999957],[128.71994640000003,-3.607740199999967],[128.71982130000004,-3.613732199999959],[128.7232120000001,-3.620447],[128.72794240000007,-3.622662299999945],[128.73236180000004,-3.619978199999935],[128.7385,-3.600557099999946],[128.73618320000003,-3.596782399999938],[128.73614550000002,-3.590134599999942],[128.73414460000004,-3.588416199999926],[128.7353012000001,-3.577433799999937],[128.73258380000004,-3.568073899999945],[128.73435170000005,-3.556087299999945],[128.73107650000009,-3.542703499999959],[128.7320241000001,-3.5389754],[128.7262383000001,-3.530714299999943],[128.72938390000002,-3.524294599999962],[128.73054490000004,-3.514372],[128.7302999000001,-3.512632599999961],[128.72100810000006,-3.503459799999973],[128.71783390000007,-3.502341399999978],[128.7156414000001,-3.498102199999948],[128.70642280000004,-3.495398099999932],[128.7003896000001,-3.496737199999927],[128.69398660000002,-3.4943653],[128.6887068000001,-3.507644899999946],[128.68859010000006,-3.515853199999981],[128.68672920000006,-3.521916399999952],[128.6865629,-3.530793],[128.6896991000001,-3.536441899999943],[128.6860031000001,-3.541947099999959],[128.6823191000001,-3.544132699999977],[128.6580861000001,-3.529352099999926],[128.64445640000008,-3.529203199999927],[128.63970040000004,-3.531137499999943],[128.637307,-3.528303499999936],[128.63554040000008,-3.519856299999958],[128.62491920000002,-3.516383099999928],[128.61898870000005,-3.507864799999936],[128.60814590000007,-3.503037],[128.60347420000005,-3.496754],[128.60005590000003,-3.496356099999957],[128.59356250000008,-3.498847799999965],[128.58150080000007,-3.4942372]]],[[[128.27133160000005,-3.618191599999932],[128.27707880000003,-3.617066699999953],[128.27967620000004,-3.6179334],[128.2836109000001,-3.623510199999942],[128.29097180000008,-3.621747699999958],[128.30161160000011,-3.624322],[128.30687420000004,-3.627470099999925],[128.30743630000006,-3.630506399999945],[128.31065220000005,-3.632579499999963],[128.3220652000001,-3.632604799999967],[128.33065210000007,-3.635073699999964],[128.332576,-3.634372599999949],[128.33777640000005,-3.6372062],[128.34187730000008,-3.635966099999962],[128.3472319000001,-3.636505499999942],[128.35365620000005,-3.633591499999966],[128.3559715,-3.629076399999974],[128.35604180000007,-3.622059199999967],[128.35383420000005,-3.615577],[128.35645410000006,-3.613034099999936],[128.357571,-3.608292399999925],[128.354284,-3.597984399999973],[128.35128910000003,-3.597838599999932],[128.34752430000003,-3.5934966],[128.34060180000006,-3.589530499999967],[128.3344740000001,-3.589441299999976],[128.32971040000007,-3.587380199999927],[128.326126,-3.580962],[128.32552470000007,-3.571667699999978],[128.3219418000001,-3.567843599999946],[128.3226184,-3.563743899999963],[128.3268475000001,-3.557103599999948],[128.34713480000005,-3.541287299999965],[128.35351330000003,-3.527187399999946],[128.3523944000001,-3.520942499999933],[128.34824420000007,-3.514944],[128.3449776000001,-3.506617399999925],[128.34061180000003,-3.502875399999937],[128.329652,-3.502198],[128.32164280000006,-3.507199199999945],[128.3157112,-3.5074364],[128.30998420000003,-3.503538499999934],[128.3093258,-3.499823599999957],[128.30471590000002,-3.499161599999979],[128.29239440000003,-3.491489899999976],[128.28760130000012,-3.490302799999938],[128.282492,-3.492380699999956],[128.28135170000007,-3.491114099999947],[128.28111400000012,-3.492827299999931],[128.2779484,-3.494402799999932],[128.2722358000001,-3.492768199999944],[128.254542,-3.496271699999966],[128.2366393000001,-3.511018699999966],[128.23166880000008,-3.512305199999957],[128.22809240000004,-3.5166939],[128.2239972000001,-3.515759099999968],[128.22354510000002,-3.518562199999963],[128.22136110000008,-3.5187073],[128.21928490000005,-3.522232199999962],[128.21378430000004,-3.524992399999974],[128.21326720000002,-3.531749399999967],[128.2098797000001,-3.538077299999941],[128.20409070000005,-3.540349599999956],[128.1978011000001,-3.545066899999938],[128.19268840000007,-3.554765699999962],[128.18348120000007,-3.562337599999978],[128.1829255,-3.565323299999932],[128.1799615000001,-3.5672901],[128.17867460000002,-3.582222299999955],[128.167851,-3.587650499999938],[128.13965460000009,-3.591176299999972],[128.1325045000001,-3.584770599999956],[128.11216950000005,-3.587397099999976],[128.10423140000012,-3.584342299999946],[128.09798220000005,-3.5873894],[128.0946381000001,-3.586027899999976],[128.09076070000003,-3.5815616],[128.08653620000007,-3.580520099999944],[128.08289610000008,-3.582308199999943],[128.08166290000008,-3.586243099999933],[128.0771691000001,-3.589970499999936],[128.05208770000002,-3.589473599999963],[128.04760140000008,-3.593124199999977],[128.04223490000004,-3.594339199999979],[128.02750020000008,-3.5915453],[128.0255462,-3.593103199999973],[128.02224780000006,-3.6022205],[128.0129773000001,-3.609590399999945],[128.00877350000007,-3.610856299999966],[128.00566760000004,-3.618097499999976],[127.99941180000008,-3.619079899999974],[127.99265250000008,-3.628907599999934],[127.98611830000004,-3.629631299999971],[127.97556860000009,-3.639694499999962],[127.96592630000009,-3.641507099999956],[127.96271810000007,-3.653816],[127.9593182000001,-3.655494899999951],[127.954594,-3.662987499999929],[127.94869470000003,-3.666293],[127.94700590000002,-3.669906599999933],[127.94144770000003,-3.673767599999962],[127.932555,-3.676959299999965],[127.92933280000011,-3.680098199999975],[127.92103640000005,-3.681615099999931],[127.92029930000001,-3.684176],[127.9219481,-3.686780499999941],[127.92193680000003,-3.693456899999944],[127.9244136000001,-3.699001499999952],[127.92513860000008,-3.705561699999976],[127.92407010000011,-3.708561499999973],[127.91701180000007,-3.715143299999966],[127.92299980000007,-3.734320199999956],[127.93855310000004,-3.760096499999975],[127.93978210000012,-3.769725499999936],[127.94312610000009,-3.774366099999952],[127.95218550000004,-3.775545],[127.954356,-3.777515],[127.95513610000012,-3.773114],[127.95789550000006,-3.772627599999964],[127.9594502000001,-3.773921],[127.96244790000003,-3.7726832],[127.96491530000003,-3.773845399999971],[127.96604450000007,-3.777826699999935],[127.9700064000001,-3.779407],[127.97118960000012,-3.778543899999931],[127.97453040000005,-3.780802299999948],[127.98120030000007,-3.7821646],[127.99110650000011,-3.7795009],[127.99322210000003,-3.780170599999963],[127.994392,-3.783062499999971],[128.0057954,-3.775708299999962],[128.00931780000008,-3.767631399999971],[128.01144380000005,-3.767182799999944],[128.0133025,-3.7687019],[128.01715690000003,-3.767440299999976],[128.01997720000008,-3.764262099999939],[128.0224366000001,-3.757604399999934],[128.02383220000002,-3.749069499999962],[128.03445310000006,-3.741026799999929],[128.0384696000001,-3.7341612],[128.057696,-3.727548899999931],[128.06348,-3.721514099999979],[128.070556,-3.720100199999933],[128.07751120000012,-3.721528899999953],[128.0828,-3.712716599999965],[128.0774451000001,-3.706340599999976],[128.0704264000001,-3.706654299999968],[128.0646617000001,-3.7020854],[128.06463380000002,-3.6994648],[128.06203760000005,-3.698055499999953],[128.05519550000008,-3.6968994],[128.0503265000001,-3.693419099999971],[128.04501070000003,-3.693851],[128.03955610000003,-3.689659199999937],[128.0394741,-3.687748],[128.03404110000008,-3.6842119],[128.03511240000012,-3.682286499999975],[128.03219410000008,-3.677606699999956],[128.03276,-3.673757799999976],[128.02858880000008,-3.668517],[128.02837390000002,-3.665780099999949],[128.03431680000006,-3.661572],[128.03886580000005,-3.653093099999978],[128.0394338000001,-3.648368299999959],[128.04430590000004,-3.643429199999957],[128.04966380000008,-3.642741599999965],[128.0562142000001,-3.647765799999945],[128.0606269000001,-3.6479529],[128.06182220000005,-3.651074],[128.06467340000006,-3.651095299999952],[128.06840610000006,-3.648528499999941],[128.07371260000002,-3.648358199999961],[128.0783226000001,-3.644994399999973],[128.0799522000001,-3.641191699999979],[128.08652150000012,-3.639219699999956],[128.0885552000001,-3.636511699999971],[128.0942209000001,-3.6353856],[128.09617480000009,-3.633060099999966],[128.10088710000002,-3.633256099999926],[128.10379220000004,-3.631840299999965],[128.1091202,-3.635241099999973],[128.11821340000006,-3.633847199999934],[128.12067560000003,-3.630980099999931],[128.1279886000001,-3.632772699999975],[128.13585510000007,-3.629412299999956],[128.13976150000008,-3.624812099999929],[128.14356610000004,-3.623566099999948],[128.14650570000003,-3.624903899999936],[128.153067,-3.623595],[128.1824137000001,-3.623121399999945],[128.1839222000001,-3.623470399999974],[128.18593850000002,-3.628729399999941],[128.18881040000008,-3.629255099999966],[128.19431960000009,-3.622762199999954],[128.19552140000008,-3.617437],[128.1930056000001,-3.614420099999961],[128.19349810000006,-3.609888099999978],[128.194895,-3.607117399999936],[128.1980476000001,-3.606375],[128.19761970000002,-3.602603399999964],[128.2004644000001,-3.598925799999961],[128.20602540000004,-3.600281299999949],[128.20793430000003,-3.590503099999978],[128.21261920000006,-3.586502099999962],[128.215861,-3.586543],[128.21737810000002,-3.580069699999967],[128.22588380000002,-3.578237899999976],[128.231956,-3.581619599999954],[128.2335078000001,-3.580776699999944],[128.2350633000001,-3.575388499999974],[128.23861980000004,-3.572988799999962],[128.2472759000001,-3.577996],[128.250055,-3.577868399999943],[128.25121390000004,-3.583259],[128.2703312000001,-3.599378499999943],[128.26792850000004,-3.610244199999954],[128.26889970000002,-3.614028299999973],[128.2680332000001,-3.616139199999964],[128.27029530000004,-3.616475899999955],[128.27133160000005,-3.618191599999932]]],[[[129.16274620000002,-2.918132799999967],[129.16109070000005,-2.916910299999927],[129.1592207000001,-2.918650099999979],[129.16595690000008,-2.927370899999971],[129.16727390000005,-2.923702399999968],[129.16274620000002,-2.918132799999967]]],[[[129.17520750000006,-2.918204699999933],[129.1733667000001,-2.916038499999956],[129.16876610000008,-2.921703599999944],[129.17453480000006,-2.922086399999955],[129.17891210000005,-2.924793799999975],[129.1803923000001,-2.917256099999975],[129.17843940000012,-2.916128],[129.17520750000006,-2.918204699999933]]],[[[129.22438840000007,-2.912901199999965],[129.22472670000002,-2.911062799999968],[129.22144230000004,-2.9109613],[129.2218491000001,-2.913582599999927],[129.22438840000007,-2.912901199999965]]],[[[129.22943150000003,-2.902619099999924],[129.22565930000007,-2.903372199999978],[129.2300077000001,-2.905682899999931],[129.23102330000006,-2.904967699999929],[129.22943150000003,-2.902619099999924]]],[[[129.21487170000012,-2.901736799999981],[129.20718550000004,-2.901159499999949],[129.20518820000007,-2.903134399999942],[129.20884550000005,-2.906129599999929],[129.21487170000012,-2.901736799999981]]],[[[129.238167,-2.901425699999947],[129.23928420000004,-2.9008127],[129.23689020000006,-2.898130399999957],[129.23566110000002,-2.900268799999935],[129.23684660000004,-2.902004799999929],[129.238167,-2.901425699999947]]],[[[129.07824990000006,-2.891081499999927],[129.07432140000003,-2.88925],[129.06982440000002,-2.892237],[129.0691693000001,-2.896389399999975],[129.07177150000007,-2.897024099999953],[129.0735929000001,-2.899851199999944],[129.07145660000003,-2.901773],[129.0718498000001,-2.906047199999932],[129.0754849000001,-2.904426599999965],[129.08229240000003,-2.896290199999953],[129.07824990000006,-2.891081499999927]]],[[[129.06605680000007,-2.7853174],[129.067243,-2.783473799999967],[129.06388420000007,-2.78146],[129.05901370000004,-2.786333199999945],[129.06024860000002,-2.7876879],[129.06605680000007,-2.7853174]]],[[[129.04542720000006,-2.782767499999977],[129.04652550000003,-2.781236499999977],[129.04442730000005,-2.780042499999979],[129.0432684000001,-2.782059199999935],[129.04542720000006,-2.782767499999977]]],[[[130.110239,-2.996612499999969],[130.1000875000001,-2.995066099999974],[130.07230760000004,-3.004484599999955],[130.04650370000002,-3.005331399999932],[130.03108810000003,-3.002411499999937],[130.02220870000008,-2.996667899999977],[130.0117064000001,-2.979202499999928],[130.00832660000003,-2.979839199999958],[130.00724040000011,-2.982432199999948],[130.0008253000001,-2.9845118],[129.9883301000001,-2.9788782],[129.9787033,-2.977389199999948],[129.95978890000004,-2.969053599999938],[129.94969670000012,-2.959212399999956],[129.9372045,-2.956803799999932],[129.90946240000005,-2.942368599999952],[129.90584660000002,-2.934537599999942],[129.9018771000001,-2.914207],[129.882455,-2.914337699999976],[129.88068160000012,-2.917795199999944],[129.88509620000002,-2.921651199999928],[129.89265880000005,-2.921587599999953],[129.8882566000001,-2.933514899999977],[129.88594020000005,-2.932285499999978],[129.882356,-2.934326099999964],[129.8802353000001,-2.933175699999936],[129.8762210000001,-2.928397799999971],[129.87885370000004,-2.924881899999946],[129.87690840000005,-2.9201875],[129.87415210000006,-2.920277299999952],[129.87363760000005,-2.921660199999963],[129.8715744000001,-2.920913],[129.8660725000001,-2.912892],[129.86626660000002,-2.9114201],[129.8721908000001,-2.914205699999968],[129.87299830000006,-2.90906],[129.8791483000001,-2.9116063],[129.87932950000004,-2.906646599999931],[129.88237830000003,-2.901439599999946],[129.87906170000008,-2.8970811],[129.86823750000008,-2.895798399999933],[129.85908440000003,-2.896829099999934],[129.82730850000007,-2.911571799999933],[129.8181287000001,-2.914305899999931],[129.81374610000012,-2.913050299999952],[129.80497850000006,-2.908231199999932],[129.80309720000002,-2.903617],[129.7926543000001,-2.8899872],[129.7897180000001,-2.868169799999976],[129.78523180000002,-2.864568299999974],[129.76050750000002,-2.861832899999968],[129.755914,-2.858551199999965],[129.75467620000006,-2.855977499999938],[129.75008480000008,-2.855891699999972],[129.73198020000007,-2.849245099999962],[129.70877630000007,-2.834365099999957],[129.68597840000007,-2.834624],[129.67824610000002,-2.831659099999968],[129.66948190000005,-2.825255199999958],[129.65704960000005,-2.825933199999952],[129.64822970000012,-2.828875099999948],[129.6371455000001,-2.827096399999959],[129.62843280000004,-2.821161899999936],[129.62524940000003,-2.809068599999932],[129.62281510000003,-2.804877699999963],[129.61899240000002,-2.802958299999943],[129.6132924000001,-2.803172899999936],[129.6063861,-2.8062112],[129.5924818000001,-2.808328199999949],[129.5911612000001,-2.809684499999946],[129.5846831,-2.809541699999954],[129.56183140000007,-2.804762],[129.54757840000002,-2.800169599999947],[129.54248640000003,-2.796100699999954],[129.5403454000001,-2.791008899999952],[129.54305520000003,-2.785189],[129.5355475,-2.777919199999928],[129.53174950000005,-2.776829899999939],[129.5321106,-2.775375099999962],[129.52867360000005,-2.772740099999965],[129.52532850000011,-2.773287099999948],[129.52370710000002,-2.787107099999957],[129.52497360000007,-2.788470299999972],[129.52317840000012,-2.794649199999981],[129.52129860000002,-2.795434499999942],[129.52127480000001,-2.798361199999931],[129.51915710000003,-2.798813299999949],[129.517658,-2.796719399999972],[129.51401740000006,-2.795434499999942],[129.51504060000002,-2.794482699999946],[129.51347020000003,-2.791912899999943],[129.51427920000003,-2.790818299999955],[129.51182830000005,-2.787296699999956],[129.50838110000007,-2.789875499999937],[129.5011892000001,-2.791802799999971],[129.498635,-2.794705],[129.4974304000001,-2.793433499999935],[129.49633280000012,-2.794477499999971],[129.49241790000008,-2.793815],[129.4933013000001,-2.792945],[129.49212340000008,-2.791379],[129.49047710000002,-2.794122799999968],[129.48963390000006,-2.7907499],[129.48492260000012,-2.788019499999962],[129.4698651000001,-2.784075499999972],[129.4634271000001,-2.786297299999944],[129.45500830000003,-2.787006699999949],[129.43471910000005,-2.782511199999931],[129.42598580000003,-2.788072499999942],[129.41723230000002,-2.790923299999974],[129.4000969000001,-2.786265599999979],[129.39221670000006,-2.788313399999936],[129.38434670000004,-2.787711099999967],[129.3769685000001,-2.789347299999974],[129.36420920000012,-2.803399],[129.36761780000006,-2.809859199999948],[129.37344530000007,-2.813828199999932],[129.37331920000008,-2.8193404],[129.36889860000008,-2.827597799999978],[129.3613054000001,-2.836084599999936],[129.3533437000001,-2.849843899999939],[129.3461327000001,-2.858855199999937],[129.33568580000008,-2.866371899999933],[129.323275,-2.872106199999962],[129.30601680000007,-2.877606299999968],[129.30041130000006,-2.883062299999949],[129.25845290000007,-2.906879699999934],[129.2580153,-2.908401199999957],[129.255642,-2.907053799999971],[129.24689750000005,-2.910790799999972],[129.23508850000007,-2.918713299999979],[129.223311,-2.921980499999961],[129.218041,-2.927844299999947],[129.2146825000001,-2.9379475],[129.21329880000008,-2.938014],[129.20977460000006,-2.942916899999943],[129.21010450000006,-2.945235399999945],[129.21152110000003,-2.945202],[129.2131031,-2.948149699999931],[129.2195316000001,-2.951625199999967],[129.219265,-2.953646899999967],[129.21470720000002,-2.950233699999956],[129.2162009000001,-2.95325],[129.212643,-2.954045699999938],[129.2092794,-2.9482874],[129.20519600000011,-2.947323099999949],[129.20328470000004,-2.944905499999948],[129.19982430000005,-2.938215199999945],[129.2011086000001,-2.935035199999959],[129.20506620000003,-2.932152499999972],[129.2047645,-2.929668599999957],[129.201404,-2.928841099999943],[129.19567230000007,-2.9329825],[129.1932670000001,-2.931227399999955],[129.19353150000006,-2.928288499999951],[129.19082830000002,-2.926822499999957],[129.19036660000006,-2.923808399999928],[129.1863982000001,-2.921550199999956],[129.18426740000007,-2.922478199999944],[129.182467,-2.928375699999947],[129.17567930000007,-2.931071399999951],[129.17370290000008,-2.935798199999965],[129.17729050000003,-2.942756899999949],[129.18453950000003,-2.949049099999968],[129.18710580000004,-2.948424099999954],[129.1863518,-2.951036199999976],[129.18918530000008,-2.952095699999973],[129.19281020000005,-2.957295399999964],[129.19472110000004,-2.957195699999943],[129.19584170000007,-2.959944699999937],[129.1835195000001,-2.957363199999975],[129.1798957000001,-2.958456799999965],[129.1599467000001,-2.950444899999979],[129.15742420000004,-2.948055799999963],[129.140304,-2.958249799999976],[129.1351151,-2.966004],[129.13128360000007,-2.968881499999952],[129.1278397000001,-2.967809099999954],[129.12924610000005,-2.9653708],[129.1282758000001,-2.963761599999941],[129.1204666000001,-2.962445899999977],[129.11648860000003,-2.956107],[129.1098918,-2.951475],[129.08311720000006,-2.939237499999933],[129.08273080000004,-2.931896],[129.080409,-2.927571399999977],[129.08259350000003,-2.921667699999944],[129.076707,-2.916269499999942],[129.0750226,-2.910879099999931],[129.07588140000007,-2.908664299999941],[129.07308490000003,-2.908505],[129.07254480000006,-2.906503799999939],[129.06825220000007,-2.906433799999945],[129.06718650000005,-2.910623099999953],[129.0657844000001,-2.906657699999926],[129.06393220000007,-2.906325399999957],[129.06441440000003,-2.903416399999969],[129.0666423,-2.903100199999926],[129.06699250000008,-2.901641899999959],[129.06375630000002,-2.897848499999952],[129.07236430000012,-2.878867199999945],[129.0694691000001,-2.870297599999958],[129.07115710000005,-2.860272599999973],[129.0765441000001,-2.857766],[129.07831290000001,-2.855097899999976],[129.0769457,-2.850166399999978],[129.07099520000008,-2.844022399999972],[129.07115520000002,-2.830521],[129.06978770000012,-2.820011099999931],[129.0666738000001,-2.810036899999943],[129.05941210000003,-2.803986599999973],[129.0531360000001,-2.795461899999964],[129.04626110000004,-2.794610899999952],[129.03279410000005,-2.796172499999955],[129.01506940000002,-2.806000799999936],[129.00097570000003,-2.820391699999959],[128.9903356000001,-2.824825499999974],[128.98515620000012,-2.829511],[128.9814196000001,-2.830831],[128.97758210000006,-2.8300186],[128.96990690000007,-2.836111],[128.95728330000009,-2.842],[128.93627750000007,-2.846263799999974],[128.9254714000001,-2.850527899999975],[128.91628130000004,-2.852253499999961],[128.8911349000001,-2.853673],[128.8895497000001,-2.8549341],[128.87557420000007,-2.856464899999935],[128.86746040000003,-2.860318899999925],[128.83637350000004,-2.8670034],[128.82677910000007,-2.866230499999972],[128.8059148000001,-2.867563],[128.78680340000005,-2.863746699999979],[128.75555950000012,-2.8509295],[128.75356280000005,-2.851192499999968],[128.7528691000001,-2.863495099999966],[128.7550622000001,-2.864104899999973],[128.7556389,-2.865990799999963],[128.75110150000012,-2.878604699999926],[128.75589580000008,-2.882168199999967],[128.7566167000001,-2.884982599999944],[128.75508710000008,-2.885446499999944],[128.7546824000001,-2.888550799999962],[128.75237370000002,-2.888434199999949],[128.75032420000002,-2.891161],[128.75072440000008,-2.897014099999978],[128.752311,-2.899654599999963],[128.75037630000008,-2.905137599999932],[128.75086640000006,-2.907139599999937],[128.7524833000001,-2.906222599999978],[128.753117,-2.911706199999969],[128.75618180000004,-2.913818099999958],[128.7556326,-2.917734699999926],[128.757537,-2.919127699999933],[128.7569016000001,-2.921477599999946],[128.7584022000001,-2.921913199999949],[128.75485170000002,-2.925306899999953],[128.76074240000003,-2.930778099999941],[128.76030860000003,-2.935333],[128.7635689000001,-2.938921899999968],[128.76065360000007,-2.9409522],[128.761605,-2.945826499999953],[128.75894960000005,-2.947015499999964],[128.76174320000007,-2.95104],[128.75669190000008,-2.954955699999971],[128.75680660000012,-2.958379199999968],[128.75539270000002,-2.956986299999926],[128.75412270000004,-2.957624299999964],[128.75521490000006,-2.961296899999979],[128.75339670000005,-2.961151399999949],[128.75442880000003,-2.964749199999972],[128.75343440000006,-2.967190699999946],[128.74993260000008,-2.968336799999975],[128.74623970000005,-2.963225399999942],[128.74266450000005,-2.960830899999962],[128.74175260000004,-2.962032199999953],[128.74231,-2.966043199999945],[128.74468940000008,-2.967776],[128.74356330000012,-2.972963199999981],[128.7449702,-2.976518599999963],[128.74300630000005,-2.981490899999926],[128.74553960000003,-2.989960899999971],[128.74865490000002,-2.991724399999953],[128.75016440000002,-2.998261599999978],[128.751873,-3.000089],[128.7488217,-3.002250299999957],[128.7481126,-3.007568699999979],[128.75095850000002,-3.017711],[128.7522874000001,-3.031950699999925],[128.75839930000006,-3.044246299999941],[128.77567240000008,-3.042835399999944],[128.82961790000002,-3.225567],[128.830089,-3.231589],[128.83396090000008,-3.235802899999953],[128.83423040000002,-3.239857599999937],[128.83754580000004,-3.240989099999979],[128.84285760000012,-3.239349899999979],[128.84427470000003,-3.238866399999949],[128.84536780000008,-3.234149399999978],[128.8519636000001,-3.227034],[128.85890430000006,-3.211663499999929],[128.88532390000012,-3.203676099999939],[128.901443,-3.204224699999941],[128.91950980000001,-3.208762199999967],[128.9343778000001,-3.210329199999933],[128.94449190000012,-3.215819599999975],[128.95039850000012,-3.221472399999925],[128.95803,-3.222959],[128.96669370000006,-3.226825299999973],[128.96603310000012,-3.2324095],[128.9675482,-3.233893399999943],[128.96630490000007,-3.236509799999965],[128.9664504000001,-3.245635099999959],[128.9713163,-3.270074399999942],[128.96931070000005,-3.274598399999945],[128.96949590000008,-3.282324399999936],[128.96650580000005,-3.290371299999947],[128.9587352000001,-3.295565499999952],[128.9530618000001,-3.295940299999927],[128.95096590000003,-3.300272299999961],[128.93890220000003,-3.308602699999938],[128.9262685000001,-3.325672199999929],[128.92701090000003,-3.334847599999932],[128.92908080000007,-3.337034899999935],[128.9198848000001,-3.338087299999927],[128.9147918000001,-3.332044599999961],[128.914291,-3.329380199999946],[128.91003260000002,-3.328372699999932],[128.9159602000001,-3.339198899999928],[128.92860970000004,-3.352669],[128.93634340000006,-3.357369499999947],[128.94687850000003,-3.357325099999969],[128.95149620000007,-3.355297899999925],[128.96247930000004,-3.3621466],[128.96566230000008,-3.362597199999925],[128.97198350000008,-3.360074399999974],[128.9779459,-3.361020699999926],[128.98363940000002,-3.357101099999966],[128.99170890000005,-3.354533099999969],[128.9998680000001,-3.355929799999956],[129.0154689000001,-3.352100099999973],[129.0227314000001,-3.354082399999925],[129.0334008000001,-3.348360199999945],[129.03748030000008,-3.347774399999935],[129.04017020000003,-3.349531399999933],[129.04416,-3.3487651],[129.06009990000007,-3.3519926],[129.062801,-3.349337399999968],[129.06490850000012,-3.350202399999944],[129.0843208000001,-3.341102199999966],[129.09497770000007,-3.347902899999951],[129.10260630000005,-3.347335299999941],[129.10771240000008,-3.351988499999948],[129.11076960000003,-3.350556299999937],[129.11839840000005,-3.351420499999961],[129.131639,-3.364514899999961],[129.13822830000004,-3.361381699999924],[129.14722260000008,-3.361648799999955],[129.15428840000004,-3.368509],[129.16628090000006,-3.369640699999934],[129.17358400000012,-3.374412499999949],[129.17958170000009,-3.382644899999946],[129.188341,-3.388481399999932],[129.19349560000012,-3.390181199999972],[129.20455070000003,-3.3898932],[129.2075668000001,-3.392367799999931],[129.21172820000004,-3.392574],[129.21619090000002,-3.396052],[129.221422,-3.395664199999942],[129.22319210000012,-3.3989881],[129.22596190000002,-3.400301799999966],[129.2288417000001,-3.399330799999973],[129.23134720000007,-3.401460099999952],[129.23988630000008,-3.400994199999957],[129.25196590000007,-3.407562399999961],[129.25619730000005,-3.408489],[129.26069470000004,-3.406483199999968],[129.27466130000005,-3.411344299999939],[129.2845086000001,-3.412423799999942],[129.28850950000003,-3.414200699999981],[129.3086562000001,-3.4108132],[129.31420590000005,-3.412238499999944],[129.31916230000002,-3.415547299999957],[129.328565,-3.412035599999967],[129.33628140000008,-3.417352199999925],[129.3408141000001,-3.4163038],[129.3497093000001,-3.411122699999964],[129.3515116000001,-3.411942599999975],[129.355875,-3.410243299999934],[129.36421070000006,-3.414965299999949],[129.3728532,-3.411849599999925],[129.38834090000012,-3.417700299999979],[129.39482680000003,-3.416126799999972],[129.39850520000005,-3.418148899999949],[129.40452990000006,-3.416986299999962],[129.4109499000001,-3.41837],[129.41551210000011,-3.420801299999937],[129.41754090000006,-3.424648299999944],[129.428016,-3.4275297],[129.43176260000007,-3.431856899999957],[129.4401809000001,-3.431428699999969],[129.45330350000006,-3.435779799999978],[129.4682587000001,-3.445307499999956],[129.47400310000012,-3.446521299999972],[129.47758040000008,-3.4495752],[129.4797390000001,-3.455099099999927],[129.48248320000005,-3.456702699999937],[129.48634120000008,-3.458002199999953],[129.4887619000001,-3.456473099999926],[129.49515050000002,-3.456886699999927],[129.49884270000007,-3.458420099999955],[129.50044920000005,-3.461446699999954],[129.5077421000001,-3.462319899999954],[129.52120370000011,-3.4677166],[129.52514510000003,-3.466809],[129.5288726000001,-3.470292699999959],[129.53728320000005,-3.471810099999971],[129.54119620000006,-3.470449799999926],[129.5420395000001,-3.467987799999946],[129.54539140000009,-3.470305899999971],[129.553837,-3.4681224],[129.5590707,-3.462488899999926],[129.56075810000004,-3.459121],[129.55836220000003,-3.454538899999932],[129.55920590000005,-3.452954],[129.56250010000008,-3.452952099999948],[129.56801550000012,-3.447686199999964],[129.56722220000006,-3.439368499999944],[129.5693285000001,-3.430398299999979],[129.5660296000001,-3.422280099999966],[129.56676,-3.419450299999937],[129.564534,-3.416452499999934],[129.56602410000005,-3.412858399999948],[129.5608939000001,-3.402251499999977],[129.5607228,-3.398460299999954],[129.55167920000008,-3.3876291],[129.55097250000006,-3.382649899999933],[129.54421190000005,-3.375891599999932],[129.54286160000004,-3.377957799999933],[129.53914410000004,-3.375668099999928],[129.5396221000001,-3.374536099999943],[129.53145110000003,-3.362544199999945],[129.5314485,-3.357819199999938],[129.52826560000005,-3.354765199999974],[129.5263797,-3.355530199999976],[129.52505580000002,-3.354144499999961],[129.51409590000003,-3.3380231],[129.50919550000003,-3.334347399999956],[129.50634980000007,-3.329821899999956],[129.50102880000009,-3.32957],[129.49753670000007,-3.327082],[129.49787220000007,-3.3218758],[129.50918150000007,-3.307129],[129.51970630000005,-3.299569199999951],[129.5259834000001,-3.298207799999943],[129.5371897000001,-3.302162899999928],[129.5410766000001,-3.305782299999976],[129.548623,-3.3091168],[129.562302,-3.304412399999933],[129.56632820000004,-3.305456899999967],[129.57109380000009,-3.304408899999942],[129.5870221,-3.309971799999971],[129.5911622000001,-3.3131098],[129.59994490000008,-3.310614499999929],[129.60329190000004,-3.311881],[129.60789910000005,-3.316248799999926],[129.6162733000001,-3.316506899999979],[129.62830510000003,-3.311756299999956],[129.63319520000005,-3.311692899999969],[129.63952790000008,-3.315638699999965],[129.65089960000012,-3.3178022],[129.66623,-3.317611],[129.67136340000002,-3.322492099999977],[129.6778435000001,-3.323515],[129.68747380000002,-3.3223604],[129.70244120000007,-3.318008],[129.72886930000004,-3.314822899999967],[129.73541220000004,-3.316569799999968],[129.74426820000008,-3.326449799999978],[129.7628429,-3.332103899999936],[129.76685190000012,-3.3315895],[129.77435980000007,-3.327873799999963],[129.78546010000002,-3.3280157],[129.7964664000001,-3.323273099999938],[129.81426970000007,-3.321997],[129.8174907,-3.323535299999946],[129.82240290000004,-3.330619399999932],[129.84003510000002,-3.330758599999967],[129.8463243000001,-3.3342972],[129.85842760000003,-3.336138499999947],[129.85559590000003,-3.329824699999961],[129.85623270000008,-3.323683699999947],[129.8580125000001,-3.32046],[129.87380170000006,-3.306302199999948],[129.87634070000001,-3.297691],[129.87981090000005,-3.294895899999972],[129.8837390000001,-3.286516099999972],[129.88279290000003,-3.278328699999975],[129.88441840000007,-3.269297699999925],[129.8948286000001,-3.261144899999977],[129.8996883000001,-3.2592792],[129.9031423,-3.2385683],[129.9058486,-3.233433199999979],[129.9001654000001,-3.221735199999955],[129.910669,-3.209211599999946],[129.91421060000005,-3.198586699999964],[129.91343040000004,-3.1825041],[129.91516430000001,-3.177302099999963],[129.91273680000006,-3.167938699999979],[129.92708390000007,-3.163839499999938],[130.02020030000006,-3.182489299999929],[130.04424660000006,-3.181527399999936],[130.05817680000007,-3.192163599999958],[130.06855770000004,-3.1923637],[130.07817720000003,-3.195051699999965],[130.0847122,-3.208470499999976],[130.09566030000008,-3.192620099999942],[130.0960817,-3.177705199999934],[130.093322,-3.1704002],[130.09656870000003,-3.151894199999958],[130.1058217000001,-3.139881499999944],[130.1063087000001,-3.122024899999928],[130.1033867000001,-3.117804199999966],[130.105703,-3.090680199999952],[130.10102270000004,-3.081979799999942],[130.1033916,-3.080246],[130.101881,-3.075700799999936],[130.10315130000004,-3.074604],[130.1006413,-3.069297799999958],[130.10287670000002,-3.060258899999951],[130.101965,-3.046781499999952],[130.10572580000007,-3.037315699999965],[130.10527580000007,-3.030808299999933],[130.10341070000004,-3.028848599999947],[130.10429340000007,-3.023944799999924],[130.106863,-3.022069899999963],[130.10395620000008,-3.014730499999928],[130.1080151000001,-3.012117399999966],[130.10973930000011,-3.007770499999936],[130.110239,-2.996612499999969]]],[[[129.0247783000001,-2.764351399999953],[129.02440430000001,-2.761349099999961],[129.02370910000002,-2.763246899999956],[129.0247783000001,-2.764351399999953]]],[[[129.00175930000012,-2.754206899999929],[128.99866620000012,-2.757162699999981],[129.0043998000001,-2.757973799999945],[129.0033145000001,-2.754344399999979],[129.00175930000012,-2.754206899999929]]],[[[129.02321870000003,-2.754197099999942],[129.023529,-2.751784199999975],[129.02664190000007,-2.749593],[129.02716070000008,-2.7475583],[129.02334830000007,-2.743501499999979],[129.01905670000008,-2.746015499999942],[129.02083520000008,-2.748017799999957],[129.0200529000001,-2.750845199999958],[129.02262110000004,-2.751679899999942],[129.02064960000007,-2.752801599999941],[129.02321870000003,-2.754197099999942]]],[[[128.9956314000001,-2.728331399999945],[128.990672,-2.725412],[128.9879655000001,-2.725391099999968],[128.9811783,-2.730269],[128.9770975,-2.739669099999958],[128.9783543000001,-2.748795199999961],[128.98184430000003,-2.747478199999932],[128.98115730000006,-2.743353799999966],[128.98346830000003,-2.740820699999972],[128.98794450000003,-2.742349],[128.98981830000002,-2.741197599999964],[128.9905470000001,-2.736340499999926],[128.99729260000004,-2.729473599999949],[128.9956314000001,-2.728331399999945]]]]},"properties":{"shapeName":"Maluku Tengah","shapeISO":"","shapeID":"22746128B95985817963009","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[132.45432170000004,-6.008244299999944],[132.4525711000001,-6.008327],[132.4553208000001,-6.010576399999934],[132.45432170000004,-6.008244299999944]]],[[[132.468996,-5.992452199999946],[132.467575,-5.989581299999941],[132.4662793000001,-5.990197699999953],[132.4646838000001,-5.996582199999978],[132.45944450000002,-6.003535899999974],[132.4610275000001,-6.007783299999971],[132.46127930000011,-6.015528699999948],[132.456847,-6.0146642],[132.4520189000001,-6.021115099999975],[132.45106610000005,-6.019897899999933],[132.4522336000001,-6.0179857],[132.44271850000007,-6.008627599999954],[132.44057580000003,-6.008313699999974],[132.433772,-6.012549699999965],[132.43086730000005,-6.008702099999937],[132.4279322000001,-6.008955],[132.4288779000001,-6.0186663],[132.4309313000001,-6.019906899999967],[132.43319110000004,-6.031988399999932],[132.43663870000012,-6.032599],[132.4396666,-6.035761699999966],[132.43996950000007,-6.037991699999964],[132.44255950000002,-6.0339102],[132.4476734000001,-6.031163599999957],[132.45031740000002,-6.030344099999979],[132.45409270000005,-6.031385199999932],[132.457559,-6.029457799999932],[132.4606702000001,-6.024945199999934],[132.4659587000001,-6.022291799999948],[132.46672410000008,-6.019427899999926],[132.47031830000003,-6.016443699999968],[132.47040760000004,-6.011702899999932],[132.467318,-6.009964099999934],[132.46949260000008,-5.997808499999962],[132.47109250000005,-5.996078099999977],[132.468996,-5.992452199999946]]],[[[132.469555,-5.902570399999945],[132.469451,-5.901395599999944],[132.4643066000001,-5.902334399999972],[132.46098590000008,-5.904745499999933],[132.46357780000005,-5.914851799999951],[132.46549530000004,-5.912362199999961],[132.46512760000007,-5.909366099999943],[132.469555,-5.902570399999945]]],[[[132.532987,-5.893731799999955],[132.533848,-5.890505],[132.53187800000012,-5.887017199999946],[132.53497470000002,-5.878318499999978],[132.53250370000012,-5.875888299999929],[132.52798340000004,-5.874742699999956],[132.52517810000006,-5.876974099999927],[132.517584,-5.890778099999977],[132.5160707000001,-5.900279199999943],[132.51868380000008,-5.911953299999936],[132.52540020000004,-5.920893299999932],[132.53294360000007,-5.917899499999976],[132.538866,-5.9104361],[132.5378806000001,-5.903186],[132.53448570000012,-5.899698699999931],[132.532987,-5.893731799999955]]],[[[132.52891940000006,-5.838215899999966],[132.52454150000005,-5.839470199999937],[132.52337390000002,-5.844935],[132.5276467000001,-5.856145199999958],[132.54120540000008,-5.868161599999951],[132.5487631000001,-5.870992699999931],[132.55337540000005,-5.8702237],[132.55825,-5.864051399999937],[132.558434,-5.8601782],[132.55213330000004,-5.859337599999947],[132.5492521000001,-5.857459699999936],[132.54555340000002,-5.845893299999943],[132.54199140000003,-5.841334099999926],[132.52891940000006,-5.838215899999966]]],[[[132.6013299000001,-5.834836299999949],[132.59957630000008,-5.834455699999978],[132.59446930000001,-5.8420818],[132.59143330000006,-5.843396],[132.58911510000007,-5.8466145],[132.58945170000004,-5.851661899999954],[132.59410460000004,-5.859234],[132.604283,-5.859708099999978],[132.6106089000001,-5.856391899999949],[132.61066830000004,-5.849160299999937],[132.60634330000005,-5.843581699999959],[132.60331860000008,-5.835504799999967],[132.6013299000001,-5.834836299999949]]],[[[132.5687812000001,-5.817636299999947],[132.566543,-5.819269099999929],[132.5675669000001,-5.822736499999962],[132.57233340000005,-5.827671399999929],[132.5793271000001,-5.8311093],[132.58260870000004,-5.837101899999936],[132.5854435000001,-5.838716399999953],[132.58872730000007,-5.838646799999935],[132.58871090000002,-5.836900899999932],[132.593516,-5.832856099999958],[132.597077,-5.832165799999927],[132.59575870000003,-5.830522],[132.59146240000007,-5.830049299999928],[132.58989430000008,-5.8281892],[132.59013650000009,-5.825928099999942],[132.58302980000008,-5.819275799999957],[132.5687812000001,-5.817636299999947]]],[[[132.59222570000009,-5.811699699999963],[132.59046310000008,-5.810113799999954],[132.58815060000006,-5.813167399999941],[132.5940194000001,-5.822841899999958],[132.5969411000001,-5.816368799999964],[132.59438390000003,-5.814628899999946],[132.5934949000001,-5.811411],[132.59222570000009,-5.811699699999963]]],[[[132.5743996000001,-5.795294099999978],[132.57327940000005,-5.795474699999943],[132.57584980000001,-5.796280199999956],[132.5773438000001,-5.795253799999955],[132.5743996000001,-5.795294099999978]]],[[[132.6227265000001,-5.813965399999972],[132.62404860000004,-5.810534],[132.6212687000001,-5.794662],[132.6184737000001,-5.793827499999963],[132.61595150000005,-5.796256199999959],[132.6156006000001,-5.8024726],[132.6227265000001,-5.813965399999972]]],[[[132.56345420000002,-5.779877299999953],[132.5611424000001,-5.781130099999928],[132.56184080000003,-5.7852941],[132.5649059000001,-5.786253099999954],[132.56994670000006,-5.782588299999929],[132.56345420000002,-5.779877299999953]]],[[[132.63205130000006,-5.779775899999947],[132.629836,-5.779934],[132.6273338000001,-5.784467499999948],[132.62887360000002,-5.790279299999952],[132.62923630000012,-5.789192699999944],[132.63151560000006,-5.789459299999976],[132.63305760000003,-5.785316599999931],[132.63205130000006,-5.779775899999947]]],[[[132.56000360000007,-5.7514642],[132.5607722000001,-5.747605299999975],[132.55887880000012,-5.743687299999976],[132.55705020000005,-5.746991599999944],[132.56000360000007,-5.7514642]]],[[[132.6833286000001,-5.743838199999971],[132.68151220000004,-5.740075499999932],[132.68013170000006,-5.744328899999971],[132.68147670000008,-5.743861],[132.682197,-5.745126199999959],[132.6833286000001,-5.743838199999971]]],[[[132.569071,-5.741757899999925],[132.5716576000001,-5.739860499999963],[132.56814530000008,-5.740491299999974],[132.5676830000001,-5.741407599999945],[132.569071,-5.741757899999925]]],[[[132.66348490000007,-5.739128],[132.6639579,-5.736415799999975],[132.6586784000001,-5.740747399999975],[132.6535209000001,-5.740817499999935],[132.65107960000012,-5.7436132],[132.6505608000001,-5.748628599999961],[132.6571831000001,-5.754295199999945],[132.65881580000007,-5.752431299999955],[132.65915140000004,-5.747188],[132.66348490000007,-5.739128]]],[[[132.78688620000003,-5.7378588],[132.782401,-5.730656499999952],[132.78105620000008,-5.732612599999925],[132.78274710000005,-5.738708599999939],[132.77929310000002,-5.734255399999938],[132.77656820000004,-5.735403],[132.77839360000007,-5.7449195],[132.7762216000001,-5.745886799999937],[132.77728460000003,-5.750432399999966],[132.77585910000005,-5.758882599999936],[132.77674390000004,-5.760105799999963],[132.7787552000001,-5.758708499999955],[132.77950280000005,-5.752187899999967],[132.7814185000001,-5.761601],[132.7797197000001,-5.763986099999954],[132.780001,-5.769948599999964],[132.78368210000008,-5.7767078],[132.79006760000004,-5.774377199999947],[132.79174260000002,-5.771962],[132.792203,-5.762516299999959],[132.7904423000001,-5.758386],[132.79157510000005,-5.754444],[132.789884,-5.750849799999969],[132.7909648000001,-5.745803699999954],[132.78688620000003,-5.7378588]]],[[[132.56301220000012,-5.727702299999976],[132.56036380000012,-5.726283899999942],[132.55778910000004,-5.729913899999929],[132.55609960000004,-5.729705799999977],[132.55853750000006,-5.735814199999936],[132.5637058000001,-5.733153099999981],[132.5648788000001,-5.730159299999968],[132.56301220000012,-5.727702299999976]]],[[[132.79920420000008,-5.725990699999954],[132.79834240000002,-5.724110499999938],[132.79552210000008,-5.723092099999974],[132.7908999000001,-5.7259124],[132.7854943000001,-5.724815699999965],[132.78275230000008,-5.727949399999943],[132.79246680000006,-5.730142899999976],[132.79262340000002,-5.731944799999951],[132.78901970000004,-5.736097],[132.79238840000005,-5.737193699999978],[132.7976374000001,-5.746986499999934],[132.79677560000005,-5.748161699999969],[132.799596,-5.754429099999925],[132.79795080000008,-5.758502899999939],[132.7949738000001,-5.758973],[132.7946604000001,-5.761009899999976],[132.79865590000009,-5.767198899999926],[132.80304310000008,-5.769000799999958],[132.80366980000008,-5.7620283],[132.8010061000001,-5.748788399999967],[132.80202450000002,-5.730064499999969],[132.79920420000008,-5.725990699999954]]],[[[132.5557186000001,-5.726677799999948],[132.55614390000005,-5.722655],[132.55395210000006,-5.7260605],[132.55557880000003,-5.729224099999954],[132.5557186000001,-5.726677799999948]]],[[[132.63173210000002,-5.728503299999943],[132.6346953000001,-5.722082399999977],[132.63152730000002,-5.717358],[132.62971240000002,-5.723245599999927],[132.63173210000002,-5.728503299999943]]],[[[132.56606120000004,-5.710941399999967],[132.5627809,-5.707555599999978],[132.559791,-5.706639],[132.55785430000003,-5.707333799999958],[132.55648540000004,-5.7126369],[132.5614773000001,-5.710979399999928],[132.565002,-5.714151],[132.56516450000004,-5.716816599999959],[132.56810930000006,-5.716006499999935],[132.56939210000007,-5.717513699999927],[132.57359740000004,-5.714451399999973],[132.57954040000004,-5.715997399999935],[132.57504010000002,-5.711999099999957],[132.56901490000007,-5.710265199999981],[132.56606120000004,-5.710941399999967]]],[[[132.76036180000006,-5.700134499999933],[132.75782520000007,-5.700349399999936],[132.75361020000003,-5.704233899999963],[132.758747,-5.711374099999944],[132.7585941000001,-5.715095],[132.7616941000001,-5.716130799999974],[132.7664519000001,-5.710834899999952],[132.76401140000007,-5.702286899999933],[132.76036180000006,-5.700134499999933]]],[[[132.6187275000001,-5.696102099999962],[132.61458270000003,-5.696718699999963],[132.61275840000008,-5.700907099999938],[132.61531520000005,-5.706140699999935],[132.61834650000003,-5.707487799999967],[132.62217010000006,-5.704303799999934],[132.6271766000001,-5.703376899999967],[132.6230521000001,-5.702312899999981],[132.6224072000001,-5.698245699999973],[132.6187275000001,-5.696102099999962]]],[[[132.63244250000002,-5.686324599999978],[132.6325200000001,-5.68489],[132.63127340000005,-5.686152399999969],[132.63264870000012,-5.6884419],[132.63044360000004,-5.690561299999956],[132.6309384000001,-5.6921776],[132.63530190000006,-5.687687499999981],[132.63244250000002,-5.686324599999978]]],[[[132.99960850000002,-5.639656199999934],[132.99738130000003,-5.642101899999943],[132.99917140000002,-5.643579199999976],[132.99960850000002,-5.639656199999934]]],[[[132.98053960000004,-5.626012099999969],[132.9791781,-5.624223899999947],[132.97813040000005,-5.627064799999971],[132.98077090000004,-5.629166299999952],[132.977224,-5.6334306],[132.97877570000003,-5.636689699999977],[132.9802956000001,-5.636321799999962],[132.9832364,-5.639395499999978],[132.984262,-5.63485],[132.9833989000001,-5.630496199999925],[132.98123750000002,-5.626904399999944],[132.98179170000003,-5.625721699999929],[132.98053960000004,-5.626012099999969]]],[[[132.59383650000007,-5.628883099999939],[132.59542340000007,-5.624104699999975],[132.5927378,-5.619873299999938],[132.57790640000007,-5.617285099999947],[132.5770824000001,-5.6191076],[132.5843608,-5.626320199999952],[132.5886180000001,-5.629362799999967],[132.59383650000007,-5.628883099999939]]],[[[132.7102973000001,-5.626762799999938],[132.71022990000006,-5.619563599999935],[132.71220540000002,-5.612866099999962],[132.70970650000004,-5.606027799999936],[132.71182480000004,-5.591904899999975],[132.71055840000008,-5.590354199999979],[132.70693730000005,-5.5934095],[132.70009130000005,-5.595446399999958],[132.6855505000001,-5.604216199999939],[132.67977940000003,-5.611175399999979],[132.679836,-5.622038599999939],[132.6777426000001,-5.626282099999969],[132.67485710000005,-5.629846599999951],[132.6693689000001,-5.630469],[132.66207020000002,-5.629111099999932],[132.65409250000005,-5.618021599999963],[132.64945310000007,-5.615928199999928],[132.6400609000001,-5.613495299999954],[132.63156290000006,-5.6143135],[132.6255665000001,-5.611846899999932],[132.6157879000001,-5.596257799999933],[132.61094140000012,-5.593977099999961],[132.60999110000012,-5.594832399999973],[132.61255690000007,-5.606331],[132.6208246000001,-5.6157389],[132.6236755000001,-5.615643899999952],[132.62605120000012,-5.618684899999948],[132.63431890000004,-5.6356952],[132.63612450000005,-5.634935],[132.6364095,-5.630373499999962],[132.63973580000004,-5.637120699999969],[132.64002070000004,-5.640161599999942],[132.63612450000005,-5.637595799999929],[132.63783510000007,-5.656316799999956],[132.63501210000004,-5.667111299999931],[132.6334296000001,-5.6688028],[132.634884,-5.675122399999964],[132.63631450000003,-5.6755827],[132.63763790000007,-5.673053],[132.63986110000008,-5.673362699999927],[132.6445893,-5.677912299999946],[132.65037990000008,-5.668776199999968],[132.65483230000007,-5.677643099999955],[132.65503020000006,-5.670038699999964],[132.65813680000008,-5.675217099999941],[132.6578952000001,-5.681816799999979],[132.65340220000007,-5.677063299999929],[132.65484780000008,-5.685630899999978],[132.6543375000001,-5.694077399999969],[132.64793610000004,-5.706699],[132.648928,-5.712269399999968],[132.65296420000004,-5.716406199999938],[132.65609080000002,-5.717094],[132.6579667000001,-5.7167813],[132.659415,-5.713523299999963],[132.660956,-5.713574199999925],[132.67759080000008,-5.727149699999927],[132.6805392000001,-5.725090299999977],[132.68065180000008,-5.7275098],[132.6784861000001,-5.728944099999978],[132.68029080000008,-5.7372918],[132.69616910000002,-5.751752099999976],[132.69880890000002,-5.756897199999969],[132.7013114,-5.784264199999939],[132.70573650000006,-5.803488799999968],[132.71660080000004,-5.832606699999928],[132.71074150000004,-5.852604699999972],[132.70970150000005,-5.870983599999931],[132.7026482000001,-5.874167399999976],[132.69744490000005,-5.873702499999979],[132.69560250000006,-5.8690034],[132.70141620000004,-5.860466599999938],[132.7100663000001,-5.836299699999927],[132.7098069000001,-5.824397399999953],[132.70460360000004,-5.812664899999959],[132.70120470000006,-5.808730699999956],[132.70212010000012,-5.797896499999979],[132.7010825000001,-5.793707899999958],[132.69909890000008,-5.790568899999926],[132.69734390000008,-5.782016399999975],[132.69116430000008,-5.769895299999973],[132.69128630000012,-5.751415],[132.68080350000002,-5.748621299999968],[132.675875,-5.744198199999971],[132.6739066,-5.752571899999964],[132.67477640000004,-5.7621735],[132.67212140000004,-5.765663399999937],[132.669146,-5.775777599999969],[132.66987840000002,-5.784172299999966],[132.67593620000002,-5.791918899999928],[132.6773247000001,-5.797369199999935],[132.68901290000008,-5.80573],[132.6907963000001,-5.833093],[132.68779030000007,-5.839926499999933],[132.68516570000008,-5.841516299999967],[132.67718530000002,-5.841797099999951],[132.67329430000007,-5.846570199999974],[132.67181410000012,-5.856779299999971],[132.6733398,-5.870171399999947],[132.67004380000003,-5.876721199999963],[132.6656147000001,-5.902026],[132.6717639000001,-5.907987],[132.67930180000008,-5.904776],[132.68999830000007,-5.902904099999944],[132.69237980000003,-5.904016799999965],[132.6960408000001,-5.909039599999971],[132.69842110000002,-5.915454599999975],[132.69825320000007,-5.921040799999957],[132.69396540000002,-5.927028399999926],[132.692241,-5.936435],[132.69524690000003,-5.947504399999957],[132.69750520000002,-5.949200499999961],[132.700908,-5.945988599999964],[132.70545520000007,-5.938040199999932],[132.71389340000007,-5.932975299999953],[132.71770820000006,-5.925555199999962],[132.7164265,-5.914117199999964],[132.714092,-5.907010399999933],[132.71483980000005,-5.892321299999935],[132.71798310000008,-5.896308199999964],[132.7210655,-5.8904522],[132.7257347000001,-5.8925189],[132.72772470000007,-5.895409899999947],[132.73054750000006,-5.895717],[132.7305662000001,-5.9030243],[132.72516170000006,-5.920067399999937],[132.7269927000001,-5.924906299999975],[132.72163080000007,-5.940599899999938],[132.7209769000001,-5.946877399999948],[132.72490030000006,-5.952631699999927],[132.73392410000008,-5.952893199999949],[132.75066390000006,-5.948185099999932],[132.7569413000001,-5.943346199999951],[132.76086470000007,-5.942561499999954],[132.7697578000001,-5.945831],[132.77642760000003,-5.944653899999935],[132.7832281000001,-5.939684299999954],[132.78296650000004,-5.929221799999937],[132.78793610000002,-5.925167599999952],[132.78845920000003,-5.913397399999951],[132.79107480000005,-5.906989199999941],[132.79277490000004,-5.8889415],[132.79774450000002,-5.878479099999936],[132.7980060000001,-5.866839599999935],[132.8044142000001,-5.858600399999943],[132.81553040000006,-5.849968899999965],[132.8153996000001,-5.846437799999933],[132.8126532000001,-5.840291199999967],[132.81186850000006,-5.834406099999967],[132.81042980000007,-5.804457399999933],[132.80454470000006,-5.7882407],[132.79931350000004,-5.7848404],[132.79395150000005,-5.784055799999976],[132.7900281000001,-5.775424299999941],[132.7863662000001,-5.778039899999953],[132.7813966000001,-5.777778399999931],[132.779958,-5.7822249],[132.77472690000002,-5.786933],[132.7742038,-5.793079699999964],[132.7774733000001,-5.804196],[132.77472690000002,-5.813219799999956],[132.77224210000008,-5.813612199999966],[132.76897250000002,-5.788240799999926],[132.7691033000001,-5.775293599999941],[132.77184970000008,-5.7758167],[132.7744653000001,-5.783925099999976],[132.77629620000005,-5.784055799999976],[132.7798272000001,-5.779217],[132.77224200000012,-5.766139],[132.7718496000001,-5.758946],[132.7747267000001,-5.752276199999926],[132.77498830000002,-5.748091299999942],[132.77289580000001,-5.742337],[132.77446150000003,-5.736068699999976],[132.779304,-5.731613],[132.77891160000001,-5.728212699999972],[132.7753805000001,-5.719712],[132.77341880000006,-5.718011799999942],[132.7674029000001,-5.716573299999936],[132.76021,-5.718796599999962],[132.76060240000004,-5.726251],[132.76570290000006,-5.745868],[132.76361040000006,-5.746783499999935],[132.75890230000005,-5.732920799999931],[132.75301720000004,-5.726643399999944],[132.7474687,-5.7147323],[132.74558530000002,-5.697506099999941],[132.743125,-5.693309099999965],[132.739754,-5.693339099999946],[132.73848170000008,-5.691941399999962],[132.739831,-5.685949299999947],[132.7383132000001,-5.687184599999966],[132.74020830000006,-5.683710099999928],[132.73775720000003,-5.672381299999927],[132.73976520000008,-5.664349299999969],[132.7423827,-5.662326],[132.74182660000008,-5.660193499999934],[132.74394510000002,-5.655934499999944],[132.74187070000005,-5.643798499999946],[132.73610140000005,-5.647727599999939],[132.72997780000003,-5.645096099999932],[132.72955490000004,-5.648289599999941],[132.72277150000002,-5.645148799999959],[132.723694,-5.650872399999969],[132.72597540000004,-5.650972],[132.72395530000006,-5.65705],[132.71962680000001,-5.660385299999973],[132.71689260000005,-5.660423699999967],[132.71742130000007,-5.6576347],[132.71135060000006,-5.658743099999981],[132.70761660000005,-5.6562438],[132.6969266000001,-5.659375499999953],[132.69373460000008,-5.656846099999939],[132.69343350000008,-5.650883799999974],[132.69605330000002,-5.642753299999981],[132.69466810000006,-5.638929],[132.69776780000007,-5.635536499999944],[132.69958910000003,-5.630404399999975],[132.6980562000001,-5.630484399999943],[132.70037050000008,-5.628398499999946],[132.7052274,-5.628101899999933],[132.70576620000008,-5.630290299999956],[132.7032164000001,-5.637449899999979],[132.70461340000008,-5.636728299999959],[132.70352780000007,-5.6485732],[132.70017360000008,-5.650691699999925],[132.70158590000005,-5.652104],[132.706882,-5.651221299999975],[132.70723510000005,-5.653339699999947],[132.71023620000005,-5.6538693],[132.711472,-5.652457],[132.71240290000003,-5.642912699999954],[132.70854840000004,-5.629867799999943],[132.70688140000004,-5.631238899999971],[132.7085770000001,-5.627138699999932],[132.7102973000001,-5.626762799999938]]],[[[132.59101650000002,-5.570755],[132.59344140000007,-5.568459599999926],[132.59249350000005,-5.564428499999963],[132.58947290000003,-5.562981299999933],[132.5862227,-5.563972399999955],[132.5857334000001,-5.569250699999941],[132.5884813,-5.572007299999939],[132.59101650000002,-5.570755]]],[[[132.56302090000008,-5.559798199999932],[132.55801580000002,-5.558067599999958],[132.56372980000003,-5.564428499999963],[132.56777940000006,-5.5663703],[132.57031310000002,-5.565484],[132.56302090000008,-5.559798199999932]]],[[[133.15385250000008,-5.284734199999946],[133.15333370000008,-5.278811899999937],[133.15554620000012,-5.2770552],[133.154829,-5.274128899999937],[133.15135010000006,-5.272218699999939],[133.13735780000002,-5.2819643],[133.13502330000006,-5.288213199999973],[133.13134590000004,-5.292408],[133.12743970000008,-5.292460399999925],[133.12478470000008,-5.281847],[133.12286210000002,-5.27911],[133.1198866000001,-5.279323199999965],[133.11773510000012,-5.281770299999948],[133.11794880000002,-5.285566399999936],[133.11198260000003,-5.294858],[133.10635230000003,-5.3185358],[133.1013779000001,-5.323956899999928],[133.09982160000004,-5.333533699999975],[133.0952287,-5.342288399999973],[133.094359,-5.347135899999955],[133.09625110000002,-5.351024499999937],[133.092589,-5.366386699999964],[133.08923220000008,-5.374030399999981],[133.0836475000001,-5.380957],[133.07524,-5.388036099999965],[133.0738209000001,-5.395020799999941],[133.075118,-5.411697099999969],[133.0736379000001,-5.417704299999968],[133.06773280000004,-5.423310499999957],[133.06504730000006,-5.433190499999967],[133.0632055000001,-5.437323899999967],[133.06106390000002,-5.436848],[133.05893860000003,-5.446181499999966],[133.0541168000001,-5.455456899999945],[133.0555359000001,-5.46413],[133.05166020000001,-5.470802899999967],[133.05065320000006,-5.487740599999938],[133.0442293000001,-5.497153299999979],[133.04357330000005,-5.523354499999925],[133.04157440000006,-5.529023099999961],[133.03717990000007,-5.531327699999963],[133.0349827000001,-5.534235899999942],[133.035593,-5.537508399999979],[133.038126,-5.538625599999932],[133.0381565,-5.540812399999936],[133.0319462000001,-5.544638599999928],[133.0283452000001,-5.549638199999947],[133.02695660000006,-5.554434699999945],[133.027567,-5.561564799999928],[133.01999880000005,-5.576864599999965],[133.0186102,-5.585633099999939],[133.01480860000004,-5.591747599999962],[133.0134998000001,-5.591752399999962],[133.0129101000001,-5.598804799999925],[133.01573740000003,-5.601527099999942],[133.01851670000008,-5.610004599999968],[133.02067490000002,-5.610844],[133.01093920000005,-5.6139331],[133.00872090000007,-5.617477799999961],[133.00732890000006,-5.622381699999949],[133.008215,-5.629333299999928],[133.00985690000005,-5.631003799999974],[133.00480520000008,-5.641930399999978],[133.00505970000006,-5.649193799999978],[133.0001685000001,-5.652027499999974],[132.99923830000012,-5.650509399999976],[132.99839770000006,-5.652122199999951],[132.99654950000001,-5.652123],[132.99657760000002,-5.650185499999964],[132.9950047000001,-5.650815],[132.98658490000003,-5.657626799999946],[132.97922870000002,-5.6577686],[132.9762736,-5.654710799999975],[132.975163,-5.6482502],[132.97827040000004,-5.642159599999957],[132.9772610000001,-5.639917099999934],[132.9637325000001,-5.652165],[132.96461720000002,-5.658413],[132.96209040000008,-5.662647599999957],[132.9530449,-5.670390399999974],[132.95668190000004,-5.673153099999979],[132.9562330000001,-5.674783799999943],[132.95138090000012,-5.677088599999934],[132.9483262000001,-5.676569399999948],[132.94590180000012,-5.678453499999932],[132.94471120000003,-5.683244299999956],[132.94092160000002,-5.687626699999953],[132.9428269000001,-5.689694599999939],[132.94215930000007,-5.693452499999978],[132.9454419000001,-5.695023799999944],[132.9461699000001,-5.699182699999938],[132.94360590000008,-5.701003499999956],[132.94390020000003,-5.7028488],[132.93954050000002,-5.711938299999929],[132.9420937000001,-5.714883],[132.94022,-5.723614399999974],[132.94343190000006,-5.725644799999941],[132.9423332,-5.726346499999977],[132.94301470000005,-5.729097399999944],[132.94027560000006,-5.730433099999971],[132.93875050000008,-5.734517899999958],[132.93856730000005,-5.739651699999968],[132.94095260000006,-5.742516299999977],[132.9380129000001,-5.747127099999943],[132.93730430000005,-5.751930099999981],[132.93083610000008,-5.754326299999946],[132.9293477000001,-5.762133699999936],[132.9371758000001,-5.770447399999966],[132.9356130000001,-5.773063899999954],[132.9370520000001,-5.7779967],[132.93490270000007,-5.779606399999977],[132.9327489000001,-5.778268],[132.9312268000001,-5.778983],[132.9316222000001,-5.780273199999954],[132.92999910000003,-5.779656599999953],[132.92476450000004,-5.7816587],[132.92483750000008,-5.7845562],[132.922031,-5.784638599999937],[132.91933860000006,-5.790397799999937],[132.916388,-5.793290799999966],[132.91277530000002,-5.7943778],[132.91318420000005,-5.796835899999962],[132.9108708000001,-5.801149599999974],[132.9075888000001,-5.803525699999966],[132.90737680000007,-5.806600899999978],[132.9083769,-5.808308],[132.9102954000001,-5.807415799999944],[132.9111537000001,-5.811877],[132.90788740000005,-5.820579599999974],[132.90447270000004,-5.824241],[132.89848240000003,-5.8270434],[132.89894620000007,-5.832068199999981],[132.89515560000007,-5.834020199999941],[132.8932678000001,-5.8329858],[132.89322320000008,-5.835659199999952],[132.89081510000005,-5.836972699999933],[132.88568840000005,-5.8372453],[132.88244410000004,-5.841744799999958],[132.88167040000008,-5.8450367],[132.88607530000002,-5.849511299999961],[132.88637370000004,-5.853524799999946],[132.8884922000001,-5.8554553],[132.89101060000007,-5.855058199999974],[132.8916746000001,-5.857943],[132.8879889000001,-5.861466099999973],[132.8864314000001,-5.858027799999945],[132.886093,-5.859097],[132.88372020000008,-5.858080399999949],[132.88223520000008,-5.859955399999933],[132.8770002000001,-5.856308899999931],[132.88074670000003,-5.862444699999969],[132.87859580000008,-5.863768299999947],[132.87901190000002,-5.869790599999931],[132.8762465000001,-5.872576899999956],[132.87590590000002,-5.876242299999944],[132.8723165,-5.8794362],[132.8805850000001,-5.886900299999979],[132.88401250000004,-5.886189699999932],[132.8861584000001,-5.887214399999948],[132.8849126,-5.889732099999947],[132.88716130000012,-5.890366299999926],[132.88880490000008,-5.895815599999935],[132.88640840000005,-5.898756699999979],[132.8874727000001,-5.903439299999945],[132.88510410000004,-5.907262199999934],[132.87962960000004,-5.905235699999935],[132.8785673000001,-5.901942899999938],[132.87521460000005,-5.903547499999945],[132.87255130000005,-5.90075],[132.86804870000003,-5.9041771],[132.86884150000003,-5.911764099999971],[132.8718623000001,-5.912017299999945],[132.87275420000003,-5.914269099999956],[132.87167990000012,-5.925427199999945],[132.86894080000002,-5.927247099999931],[132.86708150000004,-5.926748099999941],[132.8695838000001,-5.937575],[132.86733630000003,-5.939620399999967],[132.86519490000012,-5.948246799999936],[132.86053110000012,-5.953526799999963],[132.85906670000008,-5.960026199999959],[132.8539671000001,-5.967472699999973],[132.8470062,-5.982605599999943],[132.84694180000008,-5.9915443],[132.84295970000005,-6.000202399999978],[132.8429575,-6.004421599999944],[132.84465290000003,-6.007068799999956],[132.85246040000004,-5.993562499999939],[132.8521207000001,-5.989760799999942],[132.85343970000008,-5.987733799999944],[132.85146310000005,-5.986356],[132.85721420000004,-5.979519799999935],[132.85845370000004,-5.979935799999964],[132.85971480000012,-5.975675599999931],[132.86060650000002,-5.976368],[132.86211260000005,-5.974892299999965],[132.86330150000003,-5.968612299999961],[132.86621750000006,-5.964811899999972],[132.8761118000001,-5.95616],[132.8799715,-5.955134399999963],[132.88684560000002,-5.956732299999942],[132.8947396000001,-5.952710099999933],[132.8947872000001,-5.950241799999958],[132.9021666000001,-5.937669199999959],[132.90085040000008,-5.9310904],[132.9026441000001,-5.928643099999931],[132.9073217,-5.92688],[132.9077139000001,-5.9229683],[132.90641130000006,-5.920308199999965],[132.9076920000001,-5.917367399999932],[132.90998290000005,-5.917053099999976],[132.90879660000007,-5.913976599999955],[132.9130993000001,-5.908400699999959],[132.91657350000003,-5.909738],[132.91633410000009,-5.902218],[132.91990350000003,-5.902642599999979],[132.92446790000008,-5.90088],[132.92570590000003,-5.899435099999948],[132.92543940000007,-5.895298899999943],[132.9289583000001,-5.889928099999963],[132.93222030000004,-5.887936899999943],[132.93192790000012,-5.886261499999932],[132.93383160000008,-5.883987099999956],[132.9417648000001,-5.883284699999933],[132.9491253000001,-5.8798147],[132.95276080000008,-5.874632599999927],[132.952758,-5.870154699999944],[132.95424120000007,-5.868583799999953],[132.95342920000007,-5.865911399999959],[132.9564580000001,-5.861934499999961],[132.95448360000012,-5.859030599999926],[132.9566155000001,-5.857059],[132.95864560000007,-5.8584549],[132.96027850000007,-5.854761599999961],[132.95960790000004,-5.8519647],[132.95774760000006,-5.852319099999931],[132.95458230000008,-5.847181699999965],[132.95665350000002,-5.8410005],[132.95412090000002,-5.842316899999958],[132.94981130000008,-5.840479499999958],[132.94847330000005,-5.831987799999979],[132.9453621,-5.832730399999946],[132.9439397000001,-5.831170799999938],[132.94218610000007,-5.823683899999935],[132.94293330000005,-5.8205136],[132.9465321,-5.817402799999968],[132.94564720000005,-5.812443299999927],[132.9488526,-5.809078],[132.95242170000006,-5.790092099999981],[132.95265240000003,-5.777084],[132.9579798000001,-5.758902499999976],[132.96301270000004,-5.7506765],[132.96251780000011,-5.743386899999962],[132.96646910000004,-5.7402884],[132.9708124000001,-5.733089399999926],[132.97743570000011,-5.728894199999957],[132.98491360000003,-5.714759399999934],[132.9948786000001,-5.702814799999942],[132.99434610000003,-5.700712799999962],[132.9974231000001,-5.701165199999934],[133.00290830000006,-5.693195299999957],[133.00742480000008,-5.6814265],[133.02382790000001,-5.662322499999959],[133.03956860000005,-5.6467388],[133.0662887000001,-5.629614099999969],[133.0788728000001,-5.629593499999942],[133.0843585,-5.625697899999977],[133.09666520000007,-5.6078131],[133.09813630000008,-5.603320499999938],[133.1020741000001,-5.599510399999929],[133.103054,-5.591810599999974],[133.1083265000001,-5.587248799999941],[133.114618,-5.572127399999943],[133.12050780000004,-5.565773],[133.1239104000001,-5.542528199999936],[133.131555,-5.515541199999973],[133.13465240000005,-5.497135899999932],[133.13999160000003,-5.488882199999978],[133.14508940000007,-5.463473599999929],[133.1490771000001,-5.459452],[133.15153370000007,-5.439041],[133.15115220000007,-5.431907599999931],[133.156035,-5.427409099999977],[133.1576828000001,-5.401712399999951],[133.167967,-5.356038699999942],[133.1698133000001,-5.351984199999947],[133.17249890000005,-5.350969499999962],[133.17860230000008,-5.342424499999936],[133.18087590000005,-5.340781799999945],[133.1832257000001,-5.3459307],[133.1871625000001,-5.344265599999972],[133.1892987000001,-5.340149499999939],[133.18881040000008,-5.333593499999949],[133.1912212000001,-5.320049499999925],[133.19033620000005,-5.311640499999953],[133.18336290000002,-5.304884699999945],[133.17797660000008,-5.296035099999926],[133.174818,-5.294984699999929],[133.16843990000007,-5.2894872],[133.1644573000001,-5.288677599999971],[133.1610088000001,-5.282852599999956],[133.1587048,-5.282365699999957],[133.1582165000001,-5.28479],[133.153761,-5.287334399999963],[133.15385250000008,-5.284734199999946]]]]},"properties":{"shapeName":"Maluku Tenggara","shapeISO":"","shapeID":"22746128B43415414933524","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[130.92160260000003,-8.257583499999953],[130.91588460000003,-8.25920149999996],[130.9145956000001,-8.262529499999971],[130.9178786000001,-8.262664499999971],[130.91844860000003,-8.260996499999976],[130.92086060000008,-8.260613499999977],[130.92160260000003,-8.257583499999953]]],[[[131.0900766000001,-8.090900499999975],[131.09050560000003,-8.084060499999964],[131.08884060000003,-8.080722499999979],[131.08724760000007,-8.080444499999942],[131.08310560000007,-8.0854475],[131.08129960000008,-8.091898499999957],[131.0900766000001,-8.090900499999975]]],[[[131.03291660000002,-8.077197499999954],[131.0183306,-8.078830499999981],[131.01007260000006,-8.08666059999996],[131.00092160000008,-8.092263499999945],[130.99472160000005,-8.103676499999949],[130.98525260000008,-8.115843499999926],[130.98649060000002,-8.117727499999944],[130.98433060000002,-8.126519499999972],[130.9856986000001,-8.128422499999942],[130.99677960000008,-8.131675499999972],[131.00335260000008,-8.130887499999972],[131.00177660000008,-8.132577499999968],[131.00187060000007,-8.138011499999948],[130.9976746000001,-8.144987499999957],[130.9902486000001,-8.145361499999979],[130.9869016,-8.149263499999961],[130.97958260000007,-8.147164499999974],[130.97838760000002,-8.145761499999935],[130.97991760000002,-8.143392499999948],[130.9785726,-8.139295499999946],[130.9730336,-8.136740499999974],[130.96233460000008,-8.137407499999938],[130.95109160000004,-8.140677499999981],[130.94338660000005,-8.140542499999981],[130.93910960000005,-8.136965499999974],[130.93695360000004,-8.125616499999978],[130.9230556000001,-8.134548499999937],[130.9158506000001,-8.14342449999998],[130.9140996000001,-8.150788499999976],[130.91491660000008,-8.153587499999958],[130.91340160000004,-8.155294499999968],[130.91713660000005,-8.162178499999925],[130.91592960000003,-8.171570499999973],[130.92055860000005,-8.175295499999947],[130.91889160000005,-8.177445499999976],[130.91943460000005,-8.180543499999942],[130.9284586000001,-8.195138499999928],[130.92898260000004,-8.199211499999933],[130.9275526,-8.199785499999962],[130.92652060000012,-8.206113499999958],[130.92195460000005,-8.213720499999965],[130.90813260000004,-8.219885499999975],[130.89867460000005,-8.220666499999936],[130.8963536000001,-8.219244499999945],[130.88668660000008,-8.21879649999994],[130.88399060000006,-8.2171145],[130.87281560000008,-8.220355499999926],[130.86378960000002,-8.22623249999998],[130.8513346000001,-8.239842499999952],[130.8295846000001,-8.256724499999962],[130.82622560000004,-8.257878499999947],[130.82189060000007,-8.25372249999998],[130.81875560000003,-8.253481499999964],[130.8180966000001,-8.256164499999954],[130.82045960000005,-8.256936499999938],[130.82056860000012,-8.259231599999964],[130.81688960000008,-8.265725499999974],[130.80549960000008,-8.2801705],[130.79925860000003,-8.282882499999971],[130.79579160000003,-8.292351499999938],[130.7984616000001,-8.295117499999947],[130.79847760000007,-8.2984895],[130.79696360000003,-8.2996295],[130.7926076000001,-8.299167499999953],[130.78685560000008,-8.308147499999961],[130.78341260000002,-8.3176185],[130.7790616000001,-8.3206355],[130.7682046000001,-8.323617499999955],[130.76299760000006,-8.327403499999946],[130.75593060000006,-8.336989499999959],[130.75701860000004,-8.342479499999968],[130.77010360000008,-8.346427499999947],[130.77413460000002,-8.345249499999966],[130.77755660000003,-8.338735499999927],[130.78186570000003,-8.338058499999931],[130.7874696,-8.342240499999946],[130.78524360000006,-8.346456499999931],[130.78681760000006,-8.34652749999998],[130.8092306000001,-8.344519499999933],[130.82010860000003,-8.340994499999965],[130.8171416,-8.340060499999936],[130.81721460000006,-8.336532499999976],[130.82700160000002,-8.321778499999937],[130.8338116000001,-8.320607499999937],[130.85923760000003,-8.305967499999952],[130.87874560000012,-8.300934499999926],[130.88323560000003,-8.296773499999972],[130.89098560000002,-8.294239499999946],[130.8984286000001,-8.287898499999926],[130.89821860000006,-8.284908499999972],[130.89264660000003,-8.273837499999956],[130.89278060000004,-8.265685499999961],[130.8832906,-8.263668499999937],[130.88207260000001,-8.261470499999973],[130.88303660000008,-8.254629499999965],[130.88887060000002,-8.2454085],[130.90753160000008,-8.2388035],[130.92557560000012,-8.229974499999969],[130.9373706,-8.231137499999932],[130.9647116000001,-8.229582499999935],[130.969137,-8.231249099999957],[130.971204,-8.233955799999933],[130.9776981000001,-8.236624499999948],[130.97802090000005,-8.237886699999933],[130.981782,-8.23861869999996],[130.98826640000004,-8.236811399999965],[130.99994750000008,-8.226997799999936],[131.00218330000007,-8.2286401],[131.0135699000001,-8.219354099999975],[131.01495580000005,-8.219474],[131.0151532000001,-8.215883599999927],[131.01821710000002,-8.215572799999961],[131.02028930000006,-8.210407],[131.02614210000002,-8.211286199999961],[131.0317281,-8.210133499999927],[131.039183,-8.203003],[131.03791310000008,-8.200799599999925],[131.04144680000002,-8.201511299999936],[131.04272330000003,-8.203842099999974],[131.0461706000001,-8.2053572],[131.0536975000001,-8.2063728],[131.0826403000001,-8.184547799999962],[131.08758340000009,-8.182182699999942],[131.09212480000008,-8.184407299999975],[131.09366340000008,-8.183784299999957],[131.0943767000001,-8.181478899999945],[131.0954296000001,-8.18260639999994],[131.104002,-8.177912499999934],[131.1030757000001,-8.176139599999942],[131.10648650000007,-8.1739181],[131.11163320000003,-8.1730122],[131.11343680000004,-8.170714399999952],[131.11759430000006,-8.171744599999954],[131.12339240000006,-8.1667481],[131.12898970000003,-8.165275899999926],[131.1288509000001,-8.163845699999968],[131.13010730000008,-8.164579099999969],[131.1334352,-8.162010899999927],[131.14158650000002,-8.159735599999976],[131.15873050000005,-8.143708199999935],[131.1679544000001,-8.131925399999943],[131.16886770000008,-8.124852699999963],[131.1662811000001,-8.117641599999956],[131.14711770000008,-8.1151821],[131.1318593000001,-8.11759829999994],[131.1265528,-8.116019299999948],[131.1132844000001,-8.125935199999958],[131.11212480000006,-8.1287048],[131.11013490000005,-8.128331099999969],[131.11190810000005,-8.129222699999957],[131.11221540000008,-8.132507099999941],[131.10772830000008,-8.1380737],[131.09840510000004,-8.143123599999967],[131.09072680000008,-8.150836499999969],[131.08089960000007,-8.157323499999961],[131.07339060000004,-8.159453499999927],[131.0695836000001,-8.1624575],[131.0669176,-8.162341499999968],[131.06451760000004,-8.160570499999949],[131.06685160000006,-8.157453499999974],[131.0670626000001,-8.15148849999997],[131.06435970000007,-8.151211501999967],[131.06804660000012,-8.14971049999997],[131.08109560000003,-8.138126499999942],[131.0822336000001,-8.133705499999962],[131.08742560000007,-8.128119499999968],[131.08539560000008,-8.12478249999998],[131.08652060000009,-8.12393149999997],[131.08427860000006,-8.12251249999997],[131.0807516000001,-8.110906499999942],[131.0763296,-8.110257499999932],[131.0759786000001,-8.107275499999957],[131.06931960000009,-8.107513499999925],[131.0604336,-8.0981005],[131.04409060000012,-8.094191499999965],[131.03291660000002,-8.077197499999954]]],[[[131.20963960000006,-8.04984449999995],[131.20770660000005,-8.049204499999973],[131.2055716000001,-8.050612499999943],[131.2000826000001,-8.058820499999968],[131.19480260000012,-8.073222499999929],[131.1903946000001,-8.078751499999953],[131.1910176,-8.079771499999936],[131.1942226000001,-8.0808425],[131.2108376000001,-8.0723135],[131.2088116000001,-8.070951499999978],[131.2137566,-8.062008499999934],[131.21625360000007,-8.052620499999932],[131.21562160000008,-8.050680499999942],[131.20963960000006,-8.04984449999995]]],[[[131.28895210000007,-8.040428],[131.29190460000007,-8.031578499999966],[131.28673460000005,-8.040899499999966],[131.28537160000008,-8.037643499999945],[131.28826560000005,-8.034511499999951],[131.2809976000001,-8.033741499999962],[131.27484560000005,-8.050544499999944],[131.26805660000002,-8.060209499999928],[131.2699076,-8.058343499999978],[131.27014150000002,-8.059641499999941],[131.27362460000006,-8.058421499999952],[131.27426860000003,-8.06143149999997],[131.27856270000007,-8.061794499999962],[131.28064860000006,-8.060157499999946],[131.28089770000008,-8.0621635],[131.28420460000007,-8.054681499999958],[131.2816276000001,-8.057719499999962],[131.28038060000006,-8.057260499999927],[131.28447760000006,-8.052490499999976],[131.28895210000007,-8.040428]]],[[[131.19333960000006,-8.029968499999939],[131.19137360000002,-8.031544499999939],[131.1908019000001,-8.036162299999944],[131.19481760000008,-8.030374499999937],[131.19333960000006,-8.029968499999939]]],[[[131.070705,-8.012383599999964],[131.0668406000001,-8.015232499999968],[131.06587960000002,-8.01873349999994],[131.070343,-8.016713599999946],[131.0695736,-8.014559499999962],[131.070705,-8.012383599999964]]],[[[131.08588220000001,-8.011078],[131.0813776000001,-8.012207499999931],[131.08378360000006,-8.016941499999973],[131.0816066000001,-8.020537499999932],[131.0807906000001,-8.034934499999963],[131.08508860000006,-8.045646499999975],[131.08983460000002,-8.046787499999937],[131.09625860000006,-8.051917499999945],[131.09985260000008,-8.051818499999968],[131.1046056,-8.047470499999974],[131.10613160000003,-8.037163499999963],[131.1027206000001,-8.034487499999955],[131.0955196000001,-8.032321499999966],[131.0965086000001,-8.0174115],[131.08588220000001,-8.011078]]],[[[131.25615660000005,-7.992008599999963],[131.2548018000001,-7.988124899999946],[131.2511178000001,-7.988878099999965],[131.25161690000004,-7.995091899999977],[131.2543502000001,-8.000387699999976],[131.2582006,-7.996668899999975],[131.25615660000005,-7.992008599999963]]],[[[131.33787640000003,-7.955109199999981],[131.3364563,-7.954208799999947],[131.3354045000001,-7.955991899999958],[131.33779320000008,-7.957168899999942],[131.34019380000007,-7.956227299999966],[131.33787640000003,-7.955109199999981]]],[[[131.36370620000002,-7.930727799999943],[131.3612581000001,-7.929880299999979],[131.35617180000008,-7.932587499999954],[131.35904770000002,-7.933364299999937],[131.3607114,-7.931763499999931],[131.36156710000012,-7.933034699999951],[131.36304070000006,-7.930798399999958],[131.36441920000004,-7.932375599999943],[131.36370620000002,-7.930727799999943]]],[[[131.45607560000008,-7.843896399999949],[131.45350930000006,-7.843775799999946],[131.4500630000001,-7.846177499999953],[131.4471751000001,-7.845871399999965],[131.44648590000008,-7.848897],[131.4532835000001,-7.849815299999932],[131.45716960000004,-7.845541799999978],[131.45607560000008,-7.843896399999949]]],[[[131.4313099000001,-7.840620699999931],[131.4300978000001,-7.839855499999942],[131.42830330000004,-7.841115199999933],[131.43526730000008,-7.8493208],[131.43787220000002,-7.851056599999936],[131.44214820000002,-7.850874799999929],[131.441863,-7.846872099999928],[131.438785,-7.841750899999965],[131.4358734000001,-7.839996699999972],[131.4313099000001,-7.840620699999931]]],[[[131.09748960000002,-7.8368395],[131.09607960000005,-7.834059499999967],[131.09359960000006,-7.834719499999949],[131.09748960000002,-7.8368395]]],[[[131.10248510000008,-7.755779399999938],[131.10426770000004,-7.754955199999927],[131.10528970000007,-7.752082],[131.10113030000002,-7.756179799999927],[131.10248510000008,-7.755779399999938]]],[[[131.11157630000002,-7.755543899999964],[131.1128063000001,-7.7515698],[131.1102988,-7.753583399999968],[131.11157630000002,-7.755543899999964]]],[[[131.11390560000007,-7.753188899999941],[131.11496920000002,-7.7513343],[131.1134065000001,-7.751987799999938],[131.11390560000007,-7.753188899999941]]],[[[131.02784960000008,-7.751829499999928],[131.02740660000006,-7.749742499999968],[131.024959,-7.750565],[131.02285660000007,-7.752994599999965],[131.02328440000008,-7.756056199999932],[131.02780960000007,-7.7551795],[131.02784960000008,-7.751829499999928]]],[[[131.1169003000001,-7.748337399999969],[131.1161873000001,-7.749821099999963],[131.11723310000002,-7.750221499999952],[131.1169003000001,-7.748337399999969]]],[[[131.1125627,-7.7453464],[131.10878360000004,-7.747018599999933],[131.10627610000006,-7.751387299999976],[131.11278850000008,-7.750080199999957],[131.1125627,-7.7453464]]],[[[130.95245260000002,-7.745940499999961],[130.9506596000001,-7.744684499999948],[130.95630660000006,-7.739244499999927],[130.95483660000002,-7.737447499999973],[130.94469960000004,-7.746870499999943],[130.9435986000001,-7.755434499999978],[130.94972960000007,-7.761338499999965],[130.9498936000001,-7.765046499999926],[130.94542260000003,-7.775160599999936],[130.94164160000003,-7.775885499999958],[130.94634960000008,-7.776360499999953],[130.9488976,-7.773726499999952],[130.9549316,-7.750286499999959],[130.95472660000007,-7.7464995],[130.95368960000008,-7.745165499999928],[130.95245260000002,-7.745940499999961]]],[[[131.00706860000003,-7.741845499999954],[131.00646160000008,-7.737346499999944],[131.0038436000001,-7.736411499999974],[130.99685660000011,-7.745221499999957],[130.99886460000005,-7.7579105],[131.0050596000001,-7.760849499999949],[131.0071296000001,-7.759429499999953],[131.01102960000003,-7.750499499999933],[131.0143386000001,-7.746864599999981],[131.01328060000003,-7.743607499999939],[131.00708080000004,-7.742857699999945],[131.00706860000003,-7.741845499999954]]],[[[131.11912560000007,-7.736963499999945],[131.11642160000008,-7.733745499999941],[131.1146616000001,-7.736947499999928],[131.11566060000007,-7.740530499999977],[131.11445860000003,-7.742317499999956],[131.11572660000002,-7.742461499999933],[131.1166896000001,-7.738325499999974],[131.11912560000007,-7.736963499999945]]],[[[131.10648960000003,-7.735189499999933],[131.1073606000001,-7.733130499999959],[131.10640560000002,-7.732344499999954],[131.10543360000008,-7.734220499999935],[131.10648960000003,-7.735189499999933]]],[[[131.10448750000012,-7.733528199999967],[131.10572060000004,-7.729153499999939],[131.10352060000002,-7.728032499999927],[131.1036706000001,-7.731034499999964],[131.10165360000008,-7.734600499999942],[131.10448750000012,-7.733528199999967]]],[[[131.09143560000007,-7.726094499999931],[131.0922306000001,-7.723491499999966],[131.0879106000001,-7.726945499999943],[131.08108560000005,-7.740622499999972],[131.07699960000002,-7.741932499999962],[131.0684635,-7.752873199999954],[131.0643755000001,-7.753815199999963],[131.0673227000001,-7.762999799999932],[131.07309020000002,-7.767196899999931],[131.08054430000004,-7.766758299999935],[131.0812098,-7.76332],[131.08517960000006,-7.759439499999928],[131.08737960000008,-7.754589499999952],[131.08641160000002,-7.7481815],[131.0829155,-7.747863099999961],[131.07855660000007,-7.743581499999948],[131.08221660000004,-7.741622499999949],[131.0916896000001,-7.751020499999981],[131.09273460000009,-7.748547499999972],[131.0912336,-7.744979499999943],[131.09353650000003,-7.744522199999949],[131.0949326000001,-7.739986499999929],[131.09714860000008,-7.740002499999946],[131.09602960000007,-7.7379705],[131.0979046000001,-7.7367695],[131.09775160000004,-7.735345499999937],[131.09294260000001,-7.731338499999936],[131.09143560000007,-7.726094499999931]]],[[[131.10252160000005,-7.731064499999945],[131.10404460000007,-7.7233705],[131.09980460000008,-7.729948499999978],[131.10252160000005,-7.731064499999945]]],[[[131.09734060000005,-7.728227499999946],[131.09922960000006,-7.723300499999937],[131.0969056,-7.720848499999931],[131.0923686000001,-7.720457499999952],[131.0918626,-7.721393499999976],[131.09734060000005,-7.728227499999946]]],[[[131.10201460000008,-7.722584499999925],[131.10432960000003,-7.720123499999943],[131.1007886000001,-7.717878499999927],[131.09857660000011,-7.721881499999938],[131.10132360000011,-7.724455499999976],[131.10201460000008,-7.722584499999925]]],[[[131.03510060000008,-7.708546499999954],[131.03349960000003,-7.712999499999967],[131.03478460000008,-7.715689499999939],[131.03709560000004,-7.715553499999942],[131.0368056000001,-7.710256499999957],[131.03510060000008,-7.708546499999954]]],[[[131.11193960000003,-7.693919499999936],[131.11192960000005,-7.690697499999942],[131.10950660000003,-7.690039499999955],[131.1096996000001,-7.692782499999964],[131.11193960000003,-7.693919499999936]]],[[[131.1169255000001,-7.688301799999977],[131.11911240000006,-7.684462099999962],[131.1150953,-7.682389199999932],[131.11350270000003,-7.687029799999948],[131.114715,-7.688513799999953],[131.1169255000001,-7.688301799999977]]],[[[131.05502160000003,-7.650316499999974],[131.05307760000005,-7.6494135],[131.0511256000001,-7.650888499999951],[131.05164360000003,-7.652388499999972],[131.0489626000001,-7.651562499999955],[131.04632860000004,-7.654498499999931],[131.0482296,-7.660144499999944],[131.05294960000003,-7.658577499999978],[131.0564316000001,-7.651031499999931],[131.05502160000003,-7.650316499999974]]],[[[130.94847860000004,-7.645869499999947],[130.95133570000007,-7.644360499999948],[130.95142160000012,-7.642014499999959],[130.94621560000007,-7.639255499999933],[130.94374160000007,-7.641969499999959],[130.94565510000007,-7.643527699999936],[130.94468960000006,-7.645700499999975],[130.94847860000004,-7.645869499999947]]],[[[131.09733460000007,-7.6353845],[131.0947016,-7.636800499999936],[131.09566560000007,-7.638492499999927],[131.09570660000009,-7.636984499999926],[131.09816560000002,-7.637188499999979],[131.09541160000003,-7.642471499999942],[131.09609860000012,-7.643854499999975],[131.08834160000004,-7.643322499999954],[131.08063360000006,-7.644477499999937],[131.07738460000007,-7.647576499999957],[131.07222060000004,-7.645722499999977],[131.0652636000001,-7.646527499999934],[131.0614356000001,-7.648423499999979],[131.05325560000006,-7.660386499999959],[131.04843360000007,-7.662914499999943],[131.04466460000003,-7.675723499999947],[131.0438316000001,-7.669323499999962],[131.04677360000005,-7.661960499999964],[131.04402760000005,-7.656154499999957],[131.02467260000003,-7.669660499999964],[131.0128896000001,-7.674203499999976],[130.98809960000006,-7.679446499999926],[130.9699316000001,-7.680860499999937],[130.96414460000005,-7.689773499999944],[130.9621436000001,-7.690268499999945],[130.96823660000007,-7.704879499999947],[130.96301760000006,-7.726859499999932],[130.96603360000006,-7.733296499999938],[130.96546160000003,-7.7376105],[130.9672736000001,-7.740836499999943],[130.97005160000003,-7.741902499999981],[130.9749806000001,-7.740797499999928],[130.98262660000012,-7.735649499999965],[130.9836276000001,-7.738301499999977],[130.9875376000001,-7.740476499999943],[130.9976676000001,-7.738261499999965],[131.00029960000006,-7.735409499999946],[131.0005556000001,-7.729700499999979],[131.00274060000004,-7.726225499999941],[131.0038896000001,-7.7311565],[131.00817860000006,-7.729745499999979],[131.01125560000003,-7.727068499999973],[131.01169260000006,-7.724929499999973],[131.01358460000006,-7.7260975],[131.01764960000003,-7.725202499999966],[131.01756960000012,-7.7267705],[131.02097060000006,-7.728238499999975],[131.02697560000001,-7.726982499999963],[131.02973960000008,-7.724743499999931],[131.03237260000003,-7.726662499999975],[131.04055160000007,-7.723909499999934],[131.04122660000007,-7.719072499999982],[131.03836160000003,-7.717328499999951],[131.03533460000006,-7.717505499999959],[131.02571260000002,-7.7105665],[131.0269326,-7.704230499999937],[131.0325606,-7.702272499999935],[131.0356736000001,-7.697655499999939],[131.0339576,-7.689390499999945],[131.03579860000002,-7.687547499999937],[131.04240860000004,-7.688452499999926],[131.0435556000001,-7.6862855],[131.05037060000006,-7.683024499999931],[131.06167170000003,-7.681883499999969],[131.05574840000008,-7.685610799999949],[131.05934460000003,-7.6943005],[131.05396660000008,-7.704492499999958],[131.05596960000003,-7.705959499999949],[131.07053660000008,-7.707808499999942],[131.07464660000005,-7.706289499999968],[131.07911760000002,-7.706976499999939],[131.08329860000003,-7.7040865],[131.08801960000005,-7.703858499999967],[131.08787460000008,-7.701050499999951],[131.0921036000001,-7.700474499999928],[131.09782860000007,-7.694332499999973],[131.1020066000001,-7.6957295],[131.10345560000007,-7.691776499999946],[131.10597010000004,-7.689779899999962],[131.1061046000001,-7.682963499999971],[131.10674560000007,-7.684490499999981],[131.1082096,-7.684391499999947],[131.1144356000001,-7.677577499999927],[131.1130336000001,-7.674360499999977],[131.11364660000004,-7.672268499999973],[131.11165660000006,-7.670099499999935],[131.1150686000001,-7.664204499999926],[131.11485560000006,-7.658941499999969],[131.1176206,-7.652139499999976],[131.11714660000007,-7.649816499999929],[131.1242506000001,-7.639770499999941],[131.10499660000005,-7.638797499999953],[131.1014636000001,-7.637578499999961],[131.10152460000006,-7.635994499999981],[131.09733460000007,-7.6353845]]],[[[130.9962236,-7.529525499999977],[130.99667460000012,-7.528229499999952],[130.99552660000006,-7.527873499999941],[130.9962236,-7.529525499999977]]],[[[131.15773280000008,-7.522440499999959],[131.15601550000008,-7.520956199999944],[131.15466950000007,-7.521507],[131.15285660000006,-7.526869199999965],[131.1578611000001,-7.531935699999963],[131.1641668000001,-7.528802799999937],[131.16129150000006,-7.5232553],[131.15773280000008,-7.522440499999959]]],[[[130.98301,-7.520824599999969],[130.97903860000008,-7.5233035],[130.97766160000003,-7.526791499999945],[130.98062460000006,-7.531169499999976],[130.9788996000001,-7.530029499999955],[130.9786249000001,-7.5315389],[130.97701660000007,-7.528238499999929],[130.97360860000003,-7.533308499999976],[130.96568960000002,-7.538149499999975],[130.9686196,-7.540870499999926],[130.96933560000002,-7.5391605],[130.97187760000008,-7.542749499999957],[130.98333060000004,-7.5487515],[130.98883260000002,-7.546625499999948],[130.98716060000004,-7.5456895],[130.98761260000003,-7.538987499999962],[130.99234560000002,-7.535135499999967],[130.99265160000004,-7.532420499999944],[130.99522860000002,-7.532375499999944],[130.9955126000001,-7.5295135],[130.98996160000002,-7.526047499999947],[130.9895146,-7.522518499999933],[130.98390060000008,-7.523312499999975],[130.98445660000004,-7.521978499999932],[130.98301,-7.520824599999969]]],[[[131.03871960000004,-7.520209499999964],[131.0395496000001,-7.518369499999949],[131.0378296,-7.518679499999962],[131.03871960000004,-7.520209499999964]]],[[[131.13991270000008,-7.516633599999977],[131.13606110000012,-7.515946099999951],[131.12872240000002,-7.521441599999946],[131.12668740000004,-7.531616499999927],[131.13528970000004,-7.5427622],[131.15456310000002,-7.544200299999943],[131.1568367000001,-7.537026499999968],[131.15330270000004,-7.534285799999964],[131.1504543000001,-7.524003099999959],[131.14240570000004,-7.516612699999939],[131.13991270000008,-7.516633599999977]]],[[[131.03025960000002,-7.517069499999934],[131.0315306000001,-7.516138499999954],[131.03133960000002,-7.513819499999954],[131.02925960000005,-7.515120499999966],[131.03025960000002,-7.517069499999934]]],[[[130.99296960000004,-7.513968499999976],[130.99126360000002,-7.5133365],[130.99364360000004,-7.5155695],[130.99696460000007,-7.515824499999951],[130.99749860000009,-7.514760499999966],[130.99296960000004,-7.513968499999976]]],[[[131.0360581000001,-7.510775399999943],[131.03302860000008,-7.511329499999931],[131.03488960000004,-7.513879499999973],[131.03662960000008,-7.512959499999965],[131.0360581000001,-7.510775399999943]]],[[[130.99972960000002,-7.5074985],[130.99736460000008,-7.508677499999976],[130.99913060000006,-7.512459499999977],[130.99754660000008,-7.516420499999981],[130.99908960000005,-7.518629499999975],[131.0035286000001,-7.520649499999934],[131.00647960000003,-7.515699499999926],[131.00363960000004,-7.510939499999949],[131.00427960000002,-7.508639499999958],[130.99972960000002,-7.5074985]]],[[[131.01267960000007,-7.503479499999969],[131.01318060000006,-7.499613499999953],[131.01034960000004,-7.498817499999973],[131.00697960000002,-7.504889499999933],[131.00968960000012,-7.505339499999934],[131.01031960000012,-7.503719499999931],[131.01267960000007,-7.503479499999969]]],[[[130.8556684,-7.495504299999936],[130.84942260000003,-7.495518499999946],[130.84801860000005,-7.497175499999969],[130.8515106000001,-7.496733499999948],[130.8525426000001,-7.497731499999929],[130.85064660000012,-7.497828499999969],[130.85220960000004,-7.498508499999957],[130.8543036000001,-7.4973775],[130.85459760000003,-7.501393499999949],[130.8448816,-7.501023499999974],[130.84211860000005,-7.502887499999929],[130.83920460000002,-7.499465499999928],[130.83757660000003,-7.502206499999943],[130.84030560000008,-7.505790499999932],[130.84003960000007,-7.515994499999977],[130.8418306000001,-7.520553499999949],[130.8397106000001,-7.5375395],[130.84442860000001,-7.543547499999931],[130.83852160000004,-7.543256499999927],[130.8330526000001,-7.553484499999968],[130.83379060000004,-7.5553935],[130.84373960000005,-7.561945499999979],[130.84855160000006,-7.563805499999944],[130.85356060000004,-7.563770499999976],[130.85851260000004,-7.566309499999932],[130.8750576000001,-7.566566499999965],[130.8744636,-7.568149499999947],[130.87873460000003,-7.570572499999969],[130.87867160000008,-7.572098499999981],[130.8810926000001,-7.5712475],[130.88435060000006,-7.575519499999928],[130.88880560000007,-7.575672499999939],[130.89372760000003,-7.577958499999966],[130.8993196,-7.577227499999935],[130.8997766000001,-7.575680499999976],[130.9018116000001,-7.575364499999978],[130.9131986000001,-7.575415499999963],[130.91893660000005,-7.570626499999946],[130.92855370000007,-7.570490399999926],[130.92695960000003,-7.568196499999942],[130.9282406000001,-7.5682465],[130.9326106000001,-7.561630499999978],[130.93725060000008,-7.558116499999926],[130.9369766000001,-7.556494499999928],[130.94509760000005,-7.549535499999934],[130.94502760000012,-7.547383499999967],[130.9433626000001,-7.5477545],[130.94349060000002,-7.542948499999966],[130.94546860000003,-7.544243499999936],[130.9444976000001,-7.545596499999931],[130.94865460000005,-7.546811499999933],[130.94785760000002,-7.547902499999964],[130.95146060000002,-7.5562235],[130.9602007000001,-7.558461499999964],[130.9647476,-7.562517499999956],[130.9720496000001,-7.565470499999947],[130.98183260000008,-7.562255499999935],[130.98193260000005,-7.559100499999943],[130.98043660000008,-7.557403499999964],[130.97525760000008,-7.5563165],[130.9697946000001,-7.550638499999934],[130.9646116,-7.5483505],[130.96068860000003,-7.549817499999961],[130.96001360000002,-7.546717499999943],[130.9565606000001,-7.548432499999933],[130.95445260000008,-7.542155499999978],[130.9627716000001,-7.536617499999977],[130.96390860000008,-7.533785499999965],[130.96493060000012,-7.536195499999963],[130.96741960000008,-7.536199499999952],[130.9731776000001,-7.532842499999958],[130.97703560000002,-7.527400499999942],[130.9785836000001,-7.521334499999966],[130.96643460000007,-7.519985499999962],[130.97206260000007,-7.516400499999975],[130.9677236000001,-7.517304499999966],[130.96719760000008,-7.516105499999981],[130.97269660000006,-7.514938499999971],[130.97644560000003,-7.516552499999932],[130.9752936000001,-7.518116499999962],[130.97900060000006,-7.519915499999968],[130.98865460000002,-7.515574499999957],[130.97999960000004,-7.508670499999937],[130.97362060000012,-7.507186499999932],[130.9659276000001,-7.508851499999935],[130.96071960000006,-7.512892499999964],[130.96242960000006,-7.515496499999927],[130.95708960000002,-7.517537499999946],[130.9606566000001,-7.518720499999972],[130.95706960000007,-7.521213499999931],[130.95474260000003,-7.525192499999946],[130.95168160000003,-7.523983499999929],[130.94546470000012,-7.526344499999936],[130.93972660000009,-7.526379499999962],[130.93594760000008,-7.5336975],[130.9366036,-7.523837499999956],[130.93122860000005,-7.5207475],[130.91548060000002,-7.521527499999934],[130.90141960000005,-7.515904499999976],[130.90286160000005,-7.517932499999972],[130.89316960000008,-7.514033499999925],[130.8850016,-7.514172499999972],[130.88261160000002,-7.5129735],[130.88026760000002,-7.514415499999927],[130.88102160000005,-7.517116299999941],[130.87774260000003,-7.5157985],[130.87092560000008,-7.5211345],[130.8766376000001,-7.515922499999931],[130.8777596000001,-7.508449499999927],[130.85935660000007,-7.501074499999959],[130.85761960000002,-7.5032725],[130.85717160000002,-7.496747499999969],[130.8556684,-7.495504299999936]]],[[[130.81087160000004,-7.484803499999941],[130.8102676000001,-7.480748499999947],[130.80960360000006,-7.483511499999963],[130.8124686000001,-7.487397499999929],[130.81587460000003,-7.489350499999944],[130.81846960000007,-7.4887175],[130.81437260000007,-7.488006499999926],[130.81087160000004,-7.484803499999941]]],[[[130.81986060000008,-7.479438499999958],[130.81400860000008,-7.480212499999936],[130.8111596000001,-7.482527499999946],[130.81132960000002,-7.484297499999968],[130.8121516000001,-7.483472499999948],[130.81483160000005,-7.486371499999962],[130.81388860000004,-7.482946499999969],[130.81731160000004,-7.484921499999928],[130.8163436000001,-7.482682499999953],[130.81732660000011,-7.4831525],[130.8244366,-7.496703499999967],[130.8304846000001,-7.498269499999935],[130.83681260000003,-7.497497499999952],[130.8341316000001,-7.496702499999969],[130.8335776,-7.492936499999928],[130.82974460000003,-7.487360499999966],[130.82931960000008,-7.488605499999949],[130.82954960000006,-7.4851565],[130.81986060000008,-7.479438499999958]]],[[[130.82064960000002,-7.4769385],[130.81905760000006,-7.475492499999973],[130.8171926000001,-7.476665499999967],[130.82113360000005,-7.477817499999958],[130.82064960000002,-7.4769385]]],[[[130.82703360000005,-7.478292499999952],[130.82641660000002,-7.4754485],[130.82516160000011,-7.4774035],[130.82703360000005,-7.478292499999952]]],[[[130.8212866,-7.473799499999927],[130.81915060000006,-7.475216499999931],[130.8239556000001,-7.4769305],[130.82564760000002,-7.475238499999932],[130.8212866,-7.473799499999927]]],[[[130.8257976000001,-7.4728755],[130.82177860000002,-7.473007499999937],[130.82662760000005,-7.474038499999949],[130.8286846000001,-7.480407499999956],[130.83236560000012,-7.481198499999948],[130.8257976000001,-7.4728755]]],[[[131.20515530000011,-7.425453],[131.20798680000007,-7.423079199999961],[131.19817780000005,-7.425963],[131.19750050000005,-7.4289383],[131.19509670000002,-7.4293387],[131.19533590000003,-7.432967499999961],[131.19907990000002,-7.433617],[131.20184310000002,-7.427953099999968],[131.20515530000011,-7.425453]]],[[[131.16128060000005,-7.405221499999925],[131.13335060000009,-7.408161499999949],[131.12869360000002,-7.411244499999952],[131.1187076000001,-7.413324499999931],[131.11707050000007,-7.412293499999976],[131.1111896000001,-7.415492499999971],[131.09148060000007,-7.418006499999933],[131.08847660000004,-7.4194485],[131.08814160000009,-7.422045499999967],[131.08477360000006,-7.421783499999947],[131.0817846000001,-7.4200115],[131.0829576000001,-7.419480499999963],[131.0804816000001,-7.4191175],[131.07959760000006,-7.420438499999932],[131.07229460000008,-7.420895499999972],[131.06149660000005,-7.4200485],[131.05114460000004,-7.421182499999929],[131.03886260000002,-7.424785499999928],[131.03011460000005,-7.421108499999946],[131.0265276,-7.421161499999926],[131.0181516,-7.423167499999977],[131.01340060000007,-7.422423499999979],[131.00146460000008,-7.427641499999936],[130.99544560000004,-7.427440499999932],[130.9893386000001,-7.429535499999929],[130.98072960000002,-7.436329499999943],[130.97635960000002,-7.449210499999936],[130.97079960000008,-7.458315499999969],[130.97199260000002,-7.471252499999935],[130.9708846000001,-7.471145499999977],[130.97050260000003,-7.4729985],[130.96906060000003,-7.490441499999974],[130.97090060000005,-7.489787499999977],[130.97145260000002,-7.492717499999969],[130.9770976000001,-7.497411499999941],[130.98144360000003,-7.498255499999971],[130.9834916000001,-7.496821499999953],[130.9838526000001,-7.497968499999956],[130.9845706000001,-7.496114499999976],[130.98778960000004,-7.495598499999971],[130.98959360000003,-7.496789499999977],[130.98854860000006,-7.498948499999926],[130.98982060000003,-7.500508499999967],[130.9908766000001,-7.5004025],[130.9901586000001,-7.4976665],[131.00367960000005,-7.504279499999939],[131.0064896,-7.503049499999975],[131.00990860000002,-7.497904499999947],[131.01282460000004,-7.496916499999941],[131.0152356000001,-7.498719499999936],[131.02195960000006,-7.500059499999963],[131.0247386000001,-7.499084499999981],[131.02890960000002,-7.501089499999978],[131.03308360000005,-7.499032499999942],[131.03376960000003,-7.495511499999964],[131.0362216000001,-7.496119499999963],[131.03921360000004,-7.493348499999968],[131.0478366000001,-7.493885499999976],[131.04887960000008,-7.491033499999958],[131.04535260000011,-7.489605499999925],[131.04889760000003,-7.486228499999982],[131.05185060000008,-7.4860795],[131.05500660000007,-7.4835765],[131.0592306000001,-7.483967499999949],[131.06028860000004,-7.486157499999933],[131.0592326000001,-7.495089499999949],[131.0604886000001,-7.496175499999936],[131.06136160000005,-7.493601499999954],[131.06154060000006,-7.499076499999944],[131.0558906000001,-7.501229499999965],[131.05450560000008,-7.498574499999961],[131.05194960000006,-7.500519499999939],[131.0524196,-7.502239499999973],[131.05013960000008,-7.501729499999954],[131.05086960000006,-7.502719499999955],[131.04933960000005,-7.504869499999927],[131.0482296,-7.500359499999945],[131.04504960000008,-7.502449499999955],[131.0461696000001,-7.504589499999952],[131.04538960000002,-7.505429499999934],[131.04540960000008,-7.504339499999958],[131.04360960000008,-7.505699499999935],[131.04191960000003,-7.504399499999977],[131.03853960000004,-7.505219499999953],[131.0376606000001,-7.512739499999952],[131.03632960000004,-7.513699499999973],[131.04039960000011,-7.516659499999946],[131.04299960000003,-7.514889499999981],[131.0477496000001,-7.519679499999938],[131.05981960000008,-7.523849499999926],[131.06265960000007,-7.521479599999964],[131.06499960000008,-7.5137495],[131.06893960000002,-7.508679499999971],[131.07630960000006,-7.504589499999952],[131.0791646,-7.496398499999941],[131.08094660000006,-7.496489499999939],[131.08382360000007,-7.493128499999955],[131.08697560000007,-7.492844499999933],[131.08450860000005,-7.480826499999978],[131.08649860000003,-7.480643499999928],[131.0924996000001,-7.489435499999956],[131.0942946,-7.4868265],[131.0945316000001,-7.488430499999936],[131.09634560000006,-7.487281499999938],[131.09726460000002,-7.4856555],[131.09552660000008,-7.485668499999974],[131.09848460000012,-7.482727499999953],[131.0986176,-7.480715499999974],[131.10197160000007,-7.4810255],[131.1049776000001,-7.479109499999936],[131.10609460000012,-7.4745665],[131.1168236000001,-7.476906499999927],[131.1184906000001,-7.476076499999976],[131.12183460000006,-7.464546499999926],[131.12427160000004,-7.466027499999939],[131.12597560000006,-7.471270499999946],[131.12718560000008,-7.469354499999952],[131.1321196,-7.468029499999943],[131.13251760000003,-7.459117499999934],[131.13391460000003,-7.458582499999977],[131.13429760000008,-7.455177499999934],[131.13898760000006,-7.452006499999925],[131.13660160000006,-7.448388499999965],[131.13701160000005,-7.446757499999933],[131.14080260000003,-7.445220499999948],[131.14215260000003,-7.446831499999973],[131.1467976,-7.441997499999957],[131.15026360000002,-7.441130499999929],[131.15086660000009,-7.439362499999959],[131.1473896000001,-7.435927499999934],[131.14769660000002,-7.434625499999981],[131.15839660000006,-7.433840499999974],[131.1686836,-7.426055499999961],[131.17006060000006,-7.423152499999958],[131.1685916,-7.416682499999979],[131.16128060000005,-7.405221499999925]]],[[[131.17959240000005,-7.413485799999933],[131.181412,-7.4131057],[131.18625450000002,-7.406186199999979],[131.18671890000007,-7.403081399999962],[131.1839890000001,-7.398826799999938],[131.17770270000005,-7.400464199999931],[131.17477210000004,-7.405107199999975],[131.1743848000001,-7.410970599999928],[131.17792910000003,-7.413682],[131.17959240000005,-7.413485799999933]]],[[[131.32652410000003,-7.389574099999948],[131.32500290000007,-7.387877099999969],[131.32272120000005,-7.388254199999949],[131.32225330000006,-7.390868099999977],[131.3196789000001,-7.391271199999949],[131.31739720000007,-7.395231],[131.3168267000001,-7.406921699999941],[131.3202493000001,-7.412389799999971],[131.32861560000003,-7.415595199999927],[131.3284255000001,-7.407110299999943],[131.33127760000002,-7.407298799999978],[131.33127760000002,-7.405413299999964],[131.32766490000006,-7.402584899999965],[131.33070720000012,-7.393722499999967],[131.3297196000001,-7.394375499999967],[131.3289959000001,-7.391648299999929],[131.32652410000003,-7.389574099999948]]],[[[131.2316472000001,-7.323261699999932],[131.22860360000004,-7.323264499999937],[131.2282216000001,-7.324492499999963],[131.23105060000012,-7.326332499999978],[131.2329046000001,-7.325059499999952],[131.2316472000001,-7.323261699999932]]],[[[131.2569066000001,-7.303553499999964],[131.25450060000003,-7.303752499999973],[131.2483036000001,-7.308026499999926],[131.24707560000002,-7.3111385],[131.24419360000002,-7.3132735],[131.24214760000007,-7.314077499999939],[131.23841460000006,-7.312705499999936],[131.23809660000006,-7.314842499999941],[131.24449960000004,-7.319093499999951],[131.2458756000001,-7.322402499999953],[131.24273860000005,-7.328297499999962],[131.24529660000007,-7.330884499999968],[131.2445616000001,-7.333440499999938],[131.24088860000006,-7.336163499999941],[131.2421396000001,-7.339369499999975],[131.23292960000003,-7.338337499999966],[131.2254696000001,-7.3308465],[131.22281060000012,-7.335768499999972],[131.22478260000003,-7.337874499999941],[131.22670460000006,-7.350421499999925],[131.2237646000001,-7.352502499999957],[131.2121876000001,-7.350534499999981],[131.20817560000012,-7.353479499999935],[131.20742860000007,-7.357476599999927],[131.21030960000007,-7.360084499999971],[131.2158836000001,-7.361843499999964],[131.21875060000002,-7.367929499999946],[131.22197460000007,-7.365047499999946],[131.22563960000002,-7.364590499999963],[131.2303846000001,-7.366484499999956],[131.23583860000008,-7.373275499999977],[131.24300860000005,-7.369487499999934],[131.24746860000005,-7.369852499999979],[131.25594560000002,-7.373215499999958],[131.26330460000008,-7.378864499999963],[131.26947460000008,-7.380124499999965],[131.27521160000003,-7.375598499999967],[131.2737336,-7.373752499999966],[131.2663156000001,-7.370958499999972],[131.26154860000008,-7.366547499999967],[131.25931560000004,-7.362731499999938],[131.26075060000005,-7.358259499999974],[131.26188260000004,-7.357281499999942],[131.2662686000001,-7.357949499999961],[131.2682466000001,-7.356480499999975],[131.2722986000001,-7.344983499999955],[131.27574560000005,-7.344410499999981],[131.27774560000012,-7.342405499999927],[131.28033960000005,-7.342653499999926],[131.2802196,-7.344507499999963],[131.28309860000002,-7.346705499999928],[131.2927896000001,-7.339980499999967],[131.2981036000001,-7.339467499999955],[131.30136460000006,-7.341235499999925],[131.30245560000003,-7.339084499999956],[131.29874360000008,-7.330802499999947],[131.29174360000002,-7.326379499999973],[131.2893256000001,-7.323117499999967],[131.28052060000005,-7.321306499999935],[131.2810386000001,-7.323588499999971],[131.28478760000007,-7.324953499999936],[131.2890136000001,-7.329481499999929],[131.28795260000004,-7.334834499999943],[131.28350160000002,-7.334801499999969],[131.2804556000001,-7.331963499999972],[131.27723960000003,-7.332619499999964],[131.27285360000008,-7.326793499999951],[131.2741996000001,-7.3249585],[131.2636616000001,-7.319107499999973],[131.25917660000005,-7.311685499999953],[131.2618166000001,-7.306675499999926],[131.2596416,-7.304024499999969],[131.2569066000001,-7.303553499999964]]],[[[131.38724060000004,-7.281301499999927],[131.38369360000002,-7.2814355],[131.3815006000001,-7.284596499999964],[131.38245160000008,-7.290086499999973],[131.39043160000006,-7.286590499999932],[131.3909116000001,-7.2844895],[131.38724060000004,-7.281301499999927]]],[[[131.40138460000003,-7.247495499999957],[131.39968360000012,-7.246456499999965],[131.40110560000005,-7.249812499999962],[131.39570360000005,-7.250024499999938],[131.39499060000003,-7.252385499999946],[131.40107060000003,-7.254838499999948],[131.40236860000005,-7.259705499999939],[131.4016666000001,-7.263955499999952],[131.4041966000001,-7.265951499999971],[131.4045106000001,-7.2560165],[131.4075256000001,-7.253760499999942],[131.4088276000001,-7.254513499999973],[131.40916560000005,-7.253079499999956],[131.40138460000003,-7.247495499999957]]],[[[131.3754636000001,-7.243599499999959],[131.37567760000002,-7.242513499999973],[131.37310560000003,-7.242185499999948],[131.3754636000001,-7.243599499999959]]],[[[131.4788132000001,-7.236529899999937],[131.47550290000004,-7.236943899999972],[131.47512260000008,-7.238134599999967],[131.4768577000001,-7.239195699999925],[131.48027510000009,-7.238085599999977],[131.4788132000001,-7.236529899999937]]],[[[131.46756140000002,-7.232452199999955],[131.46130140000002,-7.234903199999962],[131.45700850000003,-7.234739299999944],[131.45775720000006,-7.237333],[131.45414440000002,-7.239219299999945],[131.4576383000001,-7.245090299999958],[131.46224930000005,-7.247966799999972],[131.46762090000004,-7.245797599999946],[131.47132870000007,-7.246646399999975],[131.47223180000003,-7.237498],[131.47087710000005,-7.2328059],[131.46756140000002,-7.232452199999955]]],[[[131.40447960000006,-7.221168499999976],[131.4050526000001,-7.218658499999947],[131.4038306000001,-7.2198835],[131.40447960000006,-7.221168499999976]]],[[[131.39683960000002,-7.2188825],[131.39121260000002,-7.201455499999952],[131.38652660000002,-7.200374499999953],[131.3839736000001,-7.207809499999939],[131.38677260000009,-7.214480499999979],[131.3862726000001,-7.217806499999938],[131.3840686000001,-7.218903499999954],[131.38052160000007,-7.217720499999928],[131.38246960000004,-7.220636499999955],[131.38034760000005,-7.225913499999933],[131.37513560000002,-7.228408499999944],[131.3716356000001,-7.2282815],[131.36491560000002,-7.232411499999955],[131.3722596,-7.2388485],[131.3798736000001,-7.240930499999934],[131.38348960000008,-7.236007499999971],[131.38827960000003,-7.233645499999966],[131.39105360000008,-7.228723499999944],[131.39359460000003,-7.228273499999943],[131.39689060000012,-7.224872499999947],[131.4001826000001,-7.226936499999965],[131.3995016,-7.235967499999958],[131.4017576000001,-7.239767499999971],[131.4052786000001,-7.236583499999938],[131.4058626000001,-7.232679499999961],[131.40275860000008,-7.227624499999934],[131.40210760000002,-7.2230065],[131.39765760000012,-7.221780499999966],[131.39683960000002,-7.2188825]]],[[[131.5035706000001,-7.181552199999942],[131.50207310000008,-7.179359],[131.50014770000007,-7.1791231],[131.50169990000006,-7.184054099999969],[131.50323780000008,-7.183863299999928],[131.5035706000001,-7.181552199999942]]],[[[131.49265040000012,-7.198833199999967],[131.48817710000003,-7.191187399999933],[131.48920280000004,-7.177294399999937],[131.49126,-7.172209899999928],[131.4876948000001,-7.163673199999948],[131.4854606,-7.163390199999981],[131.472721,-7.169993199999965],[131.46808160000012,-7.178638699999965],[131.472052,-7.179995699999949],[131.47000780000008,-7.185419799999977],[131.46648990000006,-7.1895232],[131.45910230000004,-7.1921928],[131.45281540000008,-7.196380799999929],[131.45211510000001,-7.198443299999951],[131.45281540000008,-7.201285499999926],[131.45699860000002,-7.203172],[131.45937530000003,-7.202606],[131.46717120000005,-7.211189199999978],[131.47563260000004,-7.212792599999943],[131.4820975,-7.211755099999948],[131.49093920000007,-7.207227799999941],[131.49265040000012,-7.198833199999967]]],[[[131.49839040000006,-7.128386599999942],[131.49553820000006,-7.128952699999957],[131.4935180000001,-7.136098599999968],[131.4951062,-7.136328899999967],[131.49991150000005,-7.1309102],[131.500482,-7.128881899999953],[131.49839040000006,-7.128386599999942]]],[[[131.48295660000008,-7.124054499999943],[131.48214860000007,-7.1204085],[131.47887860000003,-7.118895499999951],[131.4751476,-7.125220499999955],[131.47676760000002,-7.126740499999926],[131.48129360000007,-7.127199499999961],[131.48295660000008,-7.124054499999943]]],[[[131.6143016000001,-7.118336299999953],[131.612335,-7.117649],[131.6111049000001,-7.119433],[131.61285180000004,-7.122463599999946],[131.61482450000005,-7.121473],[131.6143016000001,-7.118336299999953]]],[[[131.6548256000001,-7.118402799999956],[131.64320310000005,-7.118190499999969],[131.64261670000008,-7.120225099999971],[131.6386159000001,-7.118308399999933],[131.63440890000004,-7.123968699999978],[131.6304397,-7.123732899999936],[131.6270525000001,-7.126087499999926],[131.61753240000007,-7.127229399999976],[131.6140822000001,-7.124684599999966],[131.60520780000002,-7.125604399999929],[131.60228440000003,-7.127231699999925],[131.60435840000002,-7.132606099999975],[131.60299110000005,-7.132811199999935],[131.6021763000001,-7.139998299999945],[131.60030460000007,-7.1354113],[131.5981773000001,-7.136095199999943],[131.59691470000007,-7.1340847],[131.59883990000003,-7.126679299999978],[131.58427010000003,-7.125511899999935],[131.58234490000007,-7.126360899999952],[131.58419880000008,-7.129874899999948],[131.58217850000005,-7.130700399999967],[131.58037220000006,-7.128672199999926],[131.576807,-7.128530599999976],[131.57257640000012,-7.132975899999963],[131.5705411,-7.141587199999947],[131.5744777000001,-7.144437899999957],[131.5743351000001,-7.147020299999951],[131.56929630000002,-7.144626599999981],[131.56639660000008,-7.1459119],[131.56565350000005,-7.147736299999963],[131.55496430000005,-7.147315099999958],[131.54916490000005,-7.150405899999953],[131.54983040000002,-7.147739599999966],[131.54431620000003,-7.144437899999957],[131.54384090000008,-7.140428699999973],[131.53956270000003,-7.140523099999939],[131.52967780000006,-7.147290599999963],[131.52873640000007,-7.149773599999946],[131.52360250000004,-7.1534526],[131.5194669000001,-7.162296099999935],[131.51811210000005,-7.172471799999926],[131.5184924,-7.177895599999943],[131.5196333,-7.178438],[131.51782690000005,-7.180654699999934],[131.51991850000002,-7.187127699999962],[131.52922360000002,-7.191973699999949],[131.5214337000001,-7.1951129],[131.51943720000008,-7.197435599999949],[131.52275870000005,-7.200842899999941],[131.52823720000004,-7.200583599999959],[131.529592,-7.202234199999964],[131.5311726000001,-7.2196716],[131.53445850000003,-7.225360099999932],[131.53735460000007,-7.226593699999967],[131.52947310000002,-7.227651899999955],[131.52943750000009,-7.231932699999959],[131.528059,-7.233536099999981],[131.53231340000002,-7.234667899999977],[131.5286056000001,-7.235021499999959],[131.5249496,-7.237508699999978],[131.517193,-7.234731499999953],[131.51299910000012,-7.234805799999947],[131.50678670000002,-7.240108599999928],[131.50219950000007,-7.2364657],[131.49924040000008,-7.229981599999974],[131.49806980000005,-7.230123],[131.4994008000001,-7.2318502],[131.4967507,-7.235233699999981],[131.49339350000002,-7.230960099999947],[131.48366050000004,-7.233659899999964],[131.48116490000007,-7.235711199999969],[131.483174,-7.238983099999928],[131.48143820000007,-7.241393599999981],[131.47814630000005,-7.240067299999964],[131.47392750000006,-7.241010499999959],[131.4727696000001,-7.2486505],[131.46913310000002,-7.254875099999936],[131.47174040000004,-7.259037],[131.4719864000001,-7.264572099999953],[131.46918060000007,-7.266074299999957],[131.463218,-7.264434499999936],[131.45841450000012,-7.272698099999957],[131.45557050000002,-7.282507199999941],[131.4591832000001,-7.284393299999977],[131.45842270000003,-7.285713599999951],[131.45671140000002,-7.287222399999962],[131.45252820000007,-7.2875997],[131.44967610000003,-7.277980599999978],[131.4462535,-7.278923599999928],[131.44416190000004,-7.281752799999936],[131.44340130000012,-7.287411099999929],[131.4462535,-7.284581899999978],[131.44606340000007,-7.2875997],[131.44492250000008,-7.287411099999929],[131.44359150000003,-7.291183199999978],[131.44454220000011,-7.293257899999958],[131.43912310000007,-7.299859],[131.4370315000001,-7.300519099999974],[131.44064530000003,-7.310715899999934],[131.43933260000006,-7.312484799999936],[131.43533960000002,-7.311895499999935],[131.43224970000006,-7.3159739],[131.4332955000001,-7.318449199999975],[131.4359575000001,-7.318189899999936],[131.4392018000001,-7.323494],[131.43864330000008,-7.327725599999951],[131.4415159,-7.327320699999973],[131.44432790000008,-7.329002699999933],[131.446255,-7.333878299999981],[131.44538750000004,-7.336419399999954],[131.449428,-7.338588199999947],[131.45313580000004,-7.343585699999949],[131.45213750000005,-7.346438],[131.44823960000008,-7.347734499999945],[131.44334340000012,-7.343114199999945],[131.4317122000001,-7.345407],[131.42872610000006,-7.335735799999952],[131.4255888,-7.334792899999968],[131.42406760000006,-7.334981399999947],[131.42349720000004,-7.337338799999941],[131.42435280000007,-7.340544699999953],[131.42283170000007,-7.342524899999944],[131.4190288000001,-7.343656399999929],[131.4158675000001,-7.342002599999944],[131.41451890000008,-7.338494199999957],[131.41565980000007,-7.336466899999948],[131.4131404000001,-7.335759699999926],[131.4124392000001,-7.337722199999973],[131.4099198,-7.338335099999938],[131.4041086000001,-7.335429699999963],[131.38805060000004,-7.347090499999979],[131.38697260000004,-7.346946499999945],[131.38674960000003,-7.344272499999931],[131.3843246,-7.3453645],[131.38326260000008,-7.347294499999975],[131.38479360000008,-7.3492065],[131.38207260000001,-7.351836499999933],[131.37939660000006,-7.351731499999971],[131.3800496,-7.353614499999935],[131.38930460000006,-7.355615499999942],[131.39399160000005,-7.359276499999964],[131.3858106,-7.359245499999929],[131.3855936000001,-7.360530499999925],[131.38042660000008,-7.362317499999961],[131.38044560000003,-7.365298499999938],[131.37890960000004,-7.366316499999925],[131.38074260000008,-7.373405499999933],[131.37660760000006,-7.373534499999948],[131.3744266000001,-7.368164499999978],[131.37232860000006,-7.3673465],[131.3667756000001,-7.368054499999971],[131.36577080000006,-7.373113299999943],[131.37182860000007,-7.377603499999964],[131.37515660000008,-7.385842499999967],[131.37844260000008,-7.386982499999931],[131.3836166000001,-7.393932499999949],[131.37792460000003,-7.4010345],[131.36827860000005,-7.404322499999978],[131.36442770000008,-7.403063599999939],[131.36133960000006,-7.397889499999962],[131.35914760000003,-7.3984085],[131.3576306000001,-7.394727499999931],[131.3554236000001,-7.395728499999962],[131.3581716000001,-7.402469499999938],[131.35729860000004,-7.406336499999952],[131.35018360000004,-7.410923499999967],[131.3523186000001,-7.416101499999968],[131.3480376000001,-7.420240499999977],[131.35345360000008,-7.427448499999969],[131.3534886000001,-7.430426499999953],[131.34710260000008,-7.440317499999935],[131.34262060000003,-7.4446795],[131.34400760000005,-7.447314499999948],[131.33631460000004,-7.446091499999966],[131.3289916000001,-7.442876499999954],[131.32515160000003,-7.433971499999927],[131.3257956000001,-7.428687499999967],[131.3239377000001,-7.426562499999932],[131.3269646000001,-7.420136499999956],[131.32391960000007,-7.419253499999968],[131.32019360000004,-7.421004499999981],[131.3178626,-7.4202815],[131.31180160000008,-7.423961499999962],[131.31090760000006,-7.425859499999945],[131.3121986000001,-7.432784499999968],[131.30466260000003,-7.438387499999976],[131.3048596000001,-7.440811499999938],[131.30239660000007,-7.441347499999949],[131.30169060000003,-7.434728499999949],[131.29987660000006,-7.433447499999943],[131.2900946000001,-7.437180499999954],[131.28661560000012,-7.442163499999936],[131.28660060000004,-7.444387499999948],[131.28237510000008,-7.443241],[131.2811511000001,-7.445397399999933],[131.2780256000001,-7.445585899999969],[131.27541740000004,-7.449031899999966],[131.27695530000005,-7.451856899999939],[131.2827317000001,-7.452609],[131.27884560000007,-7.453905199999951],[131.2787743,-7.4560498],[131.2733396000001,-7.455649899999969],[131.2713490000001,-7.458201],[131.27131340000005,-7.453508199999931],[131.2700062,-7.452164899999957],[131.26755660000003,-7.4526005],[131.2651336,-7.455592499999966],[131.26422560000003,-7.453897499999925],[131.26331860000005,-7.454935699999965],[131.2611909000001,-7.453097099999979],[131.25753,-7.458935099999962],[131.2521409000001,-7.461834099999976],[131.253038,-7.4644031],[131.2493339,-7.465635099999929],[131.250915,-7.4686211],[131.24989290000008,-7.470454099999927],[131.24129290000008,-7.471240099999932],[131.23640290000003,-7.476615099999947],[131.231872,-7.486973099999943],[131.226602,-7.493258099999935],[131.22793790000003,-7.495962099999929],[131.2263839000001,-7.512609099999963],[131.2277709000001,-7.516633099999979],[131.22555490000002,-7.519662099999948],[131.224075,-7.527655099999947],[131.22023400000012,-7.536754099999939],[131.2088619000001,-7.5575491],[131.20363630000008,-7.563961499999948],[131.200102,-7.563824099999977],[131.197611,-7.573779099999967],[131.19206090000011,-7.583691099999953],[131.188687,-7.587687099999926],[131.1837485000001,-7.589471499999945],[131.1850558000001,-7.598506599999951],[131.18633920000002,-7.599401799999953],[131.18807430000004,-7.593394199999977],[131.19244760000004,-7.592546],[131.19518360000006,-7.589553099999932],[131.19467450000002,-7.592412699999954],[131.18825260000006,-7.594442599999979],[131.18895370000007,-7.598989499999959],[131.18781280000007,-7.600992],[131.1822512000001,-7.602829699999972],[131.17222110000012,-7.6452779],[131.1753347,-7.651567499999942],[131.18436410000004,-7.651771],[131.173804,-7.655826199999979],[131.16710150000006,-7.656108899999936],[131.15609690000008,-7.671372899999938],[131.1579508000001,-7.6738227],[131.16508120000003,-7.6725036],[131.17382780000003,-7.677779899999962],[131.17515880000008,-7.6814544],[131.17972220000001,-7.685976899999957],[131.179437,-7.69448],[131.18514130000005,-7.704537399999936],[131.18825490000006,-7.703265499999929],[131.19784530000004,-7.703877899999952],[131.2056768000001,-7.699873799999978],[131.20874290000006,-7.699897299999975],[131.22117350000008,-7.708918299999937],[131.23818990000007,-7.712877499999934],[131.2403478000001,-7.718991599999981],[131.23782290000008,-7.724878199999978],[131.24328,-7.7225488],[131.2468027000001,-7.7187957],[131.2476153,-7.722499399999947],[131.2455000000001,-7.727115599999934],[131.2467359000001,-7.728622899999948],[131.24269540000012,-7.730801499999927],[131.23657430000003,-7.730235199999981],[131.23044890000006,-7.719149],[131.22155680000003,-7.720447399999955],[131.21900990000006,-7.723035399999958],[131.21506140000008,-7.722637899999938],[131.21197160000008,-7.724557399999981],[131.20809740000004,-7.7246642],[131.20700410000006,-7.7255709],[131.20841830000006,-7.727160699999956],[131.2014186,-7.724617099999932],[131.19823370000006,-7.725347199999931],[131.1975682000001,-7.726265699999942],[131.20051550000005,-7.729209699999956],[131.19059230000005,-7.722049899999945],[131.18182410000009,-7.724801199999945],[131.17019360000006,-7.723119799999949],[131.16230960000007,-7.710939499999938],[131.15387060000012,-7.705389499999967],[131.1502196,-7.705270499999926],[131.1465886000001,-7.700489499999946],[131.13930960000005,-7.696059499999933],[131.13546960000008,-7.686319499999968],[131.12815960000012,-7.6814595],[131.12168960000008,-7.682756499999925],[131.11689660000002,-7.692955499999925],[131.1119576000001,-7.696540499999969],[131.1128347,-7.6991225],[131.10912660000008,-7.7011145],[131.1063481000001,-7.705096899999944],[131.10730560000002,-7.710538499999927],[131.10521660000006,-7.716183499999943],[131.10751160000007,-7.722969499999977],[131.10660960000007,-7.730073499999946],[131.10869260000004,-7.731461499999966],[131.10954360000005,-7.734525499999961],[131.10580260000006,-7.738927499999932],[131.10657760000004,-7.743521499999929],[131.10960060000002,-7.739776499999948],[131.11298560000012,-7.738972499999932],[131.11378460000003,-7.734152499999936],[131.11157860000003,-7.730222499999968],[131.1124536000001,-7.725152499999979],[131.1110126000001,-7.7231335],[131.1187086000001,-7.723770499999944],[131.12402960000009,-7.733495499999947],[131.1256806,-7.734189499999957],[131.12172060000012,-7.739585499999976],[131.12359960000003,-7.7417875],[131.1233016000001,-7.745973499999934],[131.11973160000002,-7.748625499999946],[131.1181296000001,-7.752069499999948],[131.1155096000001,-7.752699499999949],[131.11647960000005,-7.755549499999972],[131.1146338000001,-7.758114899999953],[131.11712940000007,-7.7585624],[131.1241096000001,-7.754749499999946],[131.12743960000012,-7.747289499999965],[131.13693960000012,-7.745429499999943],[131.135098,-7.740145599999948],[131.13962560000004,-7.735352199999966],[131.142466,-7.735482399999967],[131.14446250000003,-7.7384028],[131.14431990000003,-7.739910099999975],[131.14084960000002,-7.739369499999952],[131.1392396000001,-7.7408195],[131.1398991000001,-7.7421475],[131.1448666000001,-7.742642],[131.150452,-7.749801599999955],[131.14534190000006,-7.750060599999927],[131.14650060000008,-7.755677499999933],[131.1447448,-7.756265499999927],[131.14242480000007,-7.760280799999975],[131.13597990000005,-7.761087399999951],[131.1371123,-7.758927399999948],[131.13411750000012,-7.757632099999967],[131.13107520000005,-7.763095799999974],[131.13136040000006,-7.769972399999972],[131.1358288,-7.771479599999964],[131.13959420000003,-7.770765499999925],[131.1375796000001,-7.776019499999961],[131.1348796000001,-7.776229499999943],[131.1290696000001,-7.773729499999945],[131.12448960000006,-7.774839499999928],[131.12198960000012,-7.776069499999949],[131.1226296000001,-7.779499499999929],[131.11931960000004,-7.778888499999937],[131.1114596000001,-7.783159499999954],[131.11346960000003,-7.788109499999962],[131.11580960000003,-7.787459499999954],[131.11558860000002,-7.7839795],[131.11686970000005,-7.786838599999953],[131.11873960000003,-7.786579499999959],[131.11874860000012,-7.788439499999981],[131.12314960000003,-7.788969499999951],[131.12526960000002,-7.788150499999972],[131.12589960000003,-7.785069499999963],[131.1305297,-7.784539399999971],[131.1302796000001,-7.780429499999968],[131.13780860000008,-7.783019499999966],[131.1358696000001,-7.786629499999947],[131.13751960000002,-7.789998499999967],[131.1355996000001,-7.787309499999935],[131.13133060000007,-7.785789499999964],[131.1269496000001,-7.787320499999964],[131.12930960000006,-7.788679499999944],[131.12629960000004,-7.790800499999932],[131.1175396000001,-7.791818499999977],[131.11481960000003,-7.794699499999979],[131.1192996000001,-7.798859499999935],[131.1248696,-7.798929499999929],[131.12588960000005,-7.7978895],[131.12384960000009,-7.794308499999943],[131.1309996000001,-7.793099499999926],[131.14514960000008,-7.802959499999929],[131.1479296000001,-7.8104895],[131.14584960000002,-7.813959499999953],[131.14384960000007,-7.824450499999955],[131.14465960000007,-7.827999499999976],[131.1425796000001,-7.832249499999932],[131.1379396000001,-7.837309499999947],[131.12162960000012,-7.836359499999958],[131.11904960000004,-7.834979499999974],[131.11865960000011,-7.830799499999955],[131.11400960000003,-7.828649499999926],[131.1126296000001,-7.824798499999929],[131.10696860000007,-7.8228395],[131.1100696000001,-7.825459499999965],[131.10622960000012,-7.825809499999934],[131.1064497000001,-7.828359499999976],[131.1020496000001,-7.827089499999943],[131.09966960000008,-7.830239499999948],[131.1026776000001,-7.839076499999976],[131.1013796000001,-7.839749499999925],[131.09972960000005,-7.838429499999961],[131.09886960000006,-7.835748499999966],[131.0972296000001,-7.837408499999981],[131.0924496,-7.836639499999933],[131.0820986000001,-7.847549499999957],[131.0834496000001,-7.850169499999936],[131.0785896000001,-7.868919499999947],[131.0808356000001,-7.878379499999937],[131.08523960000002,-7.884951499999943],[131.09059660000003,-7.886740499999974],[131.09639560000005,-7.892448499999944],[131.10265760000004,-7.893724499999962],[131.10345960000006,-7.892358499999943],[131.10062760000005,-7.890237499999955],[131.0993456000001,-7.890715499999942],[131.09881960000007,-7.888822499999947],[131.10148460000005,-7.883411499999966],[131.09814660000006,-7.883909499999959],[131.09559660000002,-7.878920499999936],[131.09692960000007,-7.8749895],[131.10034960000007,-7.874759499999925],[131.10289950000004,-7.872764299999972],[131.10109160000002,-7.878402499999936],[131.103817,-7.876627099999951],[131.10485060000008,-7.877294799999959],[131.10669360000009,-7.884276599999964],[131.1042456,-7.887999499999978],[131.1043174,-7.890925799999934],[131.1077875000001,-7.892903399999966],[131.10745470000006,-7.896364199999937],[131.1089521,-7.897235299999977],[131.1127576,-7.895876699999974],[131.11584560000006,-7.897861199999966],[131.1186977000001,-7.903228799999965],[131.1205873,-7.919154799999944],[131.1168557000001,-7.927529499999935],[131.1133618,-7.942159899999979],[131.11024820000011,-7.945573099999933],[131.10872510000002,-7.955397],[131.10805960000005,-7.9567623],[131.10651450000012,-7.956364399999927],[131.1023097000001,-7.967052599999931],[131.103415,-7.975903],[131.1075743,-7.979928],[131.10309410000002,-7.983214399999952],[131.10240480000004,-7.994944799999928],[131.10696830000006,-7.998334099999965],[131.13903770000002,-8.003386099999943],[131.14225720000002,-8.003144799999973],[131.15060360000007,-7.997199099999932],[131.15687480000008,-7.995913599999938],[131.16944780000006,-7.995008499999926],[131.17561000000012,-7.998616499999969],[131.17529150000007,-7.997490099999936],[131.18482010000002,-7.9941515],[131.19158210000012,-7.998051699999962],[131.19426340000007,-7.997766],[131.200709,-8.002759],[131.21323960000007,-8.005427899999972],[131.22326440000006,-8.004244399999948],[131.22865060000004,-8.008592199999953],[131.23726210000007,-8.002990499999953],[131.2405242000001,-7.994517299999927],[131.2454679000001,-7.988915399999939],[131.251094,-7.988501499999927],[131.2597723,-7.9732653],[131.262559,-7.971241],[131.2617272000001,-7.966015399999947],[131.27188390000003,-7.960431299999925],[131.2737942000001,-7.951301599999965],[131.27091890000008,-7.949927399999979],[131.26949250000007,-7.944740699999954],[131.27186330000006,-7.942851699999949],[131.27493980000008,-7.935896299999968],[131.28464310000004,-7.924492399999963],[131.28974130000006,-7.925587099999973],[131.29281460000004,-7.9239987],[131.2951676,-7.927521499999955],[131.2914697000001,-7.936275299999977],[131.292468,-7.939241299999935],[131.29137460000004,-7.941877799999929],[131.29280070000004,-7.940088799999955],[131.29667490000008,-7.940912699999956],[131.298101,-7.939594399999976],[131.3051024,-7.943098599999928],[131.30371020000007,-7.9443024],[131.30466090000004,-7.947406699999931],[131.30283670000006,-7.950837599999943],[131.3043374,-7.956496],[131.3009386000001,-7.9560959],[131.30566840000006,-7.957673],[131.30694,-7.9625338],[131.295778,-7.981662799999981],[131.29259980000006,-7.981425399999978],[131.29019920000007,-7.978977499999928],[131.29242350000004,-7.98161],[131.29037330000006,-7.982171],[131.29004470000007,-7.984320599999933],[131.2942279,-7.984379399999966],[131.29396640000004,-7.987239199999976],[131.2919224000001,-7.992794],[131.2901042000001,-7.993252899999959],[131.29029430000003,-7.995159399999977],[131.28826170000002,-7.996957599999973],[131.28550510000002,-7.996265699999981],[131.28823840000007,-7.997136499999954],[131.28575460000002,-8.002914799999928],[131.28822650000006,-8.012282199999959],[131.286634,-8.017683599999941],[131.29100730000005,-8.0142003],[131.29357430000005,-8.019896],[131.29057360000002,-8.028009699999927],[131.29215410000006,-8.031081],[131.2980248,-8.022514299999955],[131.30144740000003,-8.021831799999973],[131.3073181000001,-8.014323899999965],[131.31558930000006,-8.009757899999954],[131.32408420000002,-7.995673699999941],[131.32799620000003,-7.994835799999976],[131.33134410000002,-7.991510099999971],[131.33666460000006,-7.9928975],[131.34064580000006,-7.991204499999981],[131.34130330000005,-7.9920096],[131.3408872000001,-7.987495499999966],[131.34302490000005,-7.987593499999946],[131.341387,-7.986066199999925],[131.34211630000004,-7.978962499999966],[131.33901980000007,-7.971763899999928],[131.33967740000003,-7.970260199999927],[131.33597120000002,-7.966376699999955],[131.33539730000007,-7.962315599999954],[131.32994570000005,-7.954678599999966],[131.33213350000005,-7.954643099999942],[131.33148790000007,-7.953411699999947],[131.33383120000008,-7.953234099999975],[131.33410620000006,-7.9516593],[131.33713090000003,-7.952831499999945],[131.33836230000009,-7.9500964],[131.34258840000007,-7.951960799999938],[131.3444542000001,-7.950489599999969],[131.34563070000002,-7.946758599999953],[131.34694980000006,-7.947123499999975],[131.3553637000001,-7.932940599999938],[131.345667,-7.934004799999968],[131.33356820000006,-7.940209399999958],[131.3323487,-7.939593699999932],[131.33084230000009,-7.941393499999947],[131.32726050000008,-7.938190799999973],[131.3266708000001,-7.934824499999934],[131.33041190000006,-7.932276],[131.3301728,-7.930192],[131.33378790000006,-7.928827499999954],[131.33706790000008,-7.925437599999952],[131.3428814,-7.908522299999959],[131.35022060000006,-7.906610199999932],[131.35228840000002,-7.908681899999976],[131.35218150000003,-7.906822099999943],[131.3545226000001,-7.909294],[131.3599299000001,-7.908058],[131.36269390000007,-7.911682299999939],[131.36922860000004,-7.907986299999948],[131.3679442,-7.905960199999981],[131.3703101000001,-7.905667299999948],[131.370108,-7.90429],[131.37202150000007,-7.904796099999942],[131.37323370000001,-7.9014882],[131.37587220000012,-7.901005599999962],[131.3802339,-7.896061299999928],[131.38072120000004,-7.894483799999932],[131.37652580000008,-7.894978299999934],[131.3754957000001,-7.8929857],[131.3726157000001,-7.892035199999953],[131.3685392000001,-7.891552499999932],[131.36535760000004,-7.8935541],[131.3600633000001,-7.887936399999944],[131.36038410000003,-7.878253799999925],[131.3640186,-7.8701061],[131.3733916000001,-7.866316299999937],[131.37415670000007,-7.864421499999935],[131.37533930000006,-7.864953899999932],[131.375687,-7.857599899999968],[131.37798250000003,-7.857031399999926],[131.38142560000006,-7.850778199999979],[131.39156380000009,-7.842819399999939],[131.40151070000002,-7.839218899999935],[131.41528330000006,-7.839029399999959],[131.41681360000007,-7.837181799999939],[131.4160485000001,-7.832207399999959],[131.41738750000002,-7.828085699999974],[131.4235086000001,-7.822353199999952],[131.42503890000012,-7.822353199999952],[131.43154260000006,-7.814393799999948],[131.43882470000005,-7.814762299999927],[131.4451507000001,-7.811879099999942],[131.45036410000012,-7.812949099999969],[131.46023960000002,-7.810935799999982],[131.4624500000001,-7.807686299999943],[131.46267580000006,-7.803895099999977],[131.4607744000001,-7.801116499999978],[131.46243820000007,-7.799209099999928],[131.4599425,-7.797301699999934],[131.45831550000003,-7.788689499999975],[131.4544294000001,-7.782119399999942],[131.45231410000008,-7.779693799999961],[131.4509237000001,-7.780412],[131.4514703000001,-7.777303599999925],[131.45565350000004,-7.773535599999946],[131.46047840000006,-7.772487699999942],[131.46289080000008,-7.773194199999978],[131.4646378000001,-7.775725699999953],[131.46413860000007,-7.779799799999978],[131.46851190000007,-7.782507899999928],[131.47416870000006,-7.784592],[131.47912430000008,-7.783249699999942],[131.48060980000002,-7.775984799999947],[131.47772870000006,-7.769455199999925],[131.48222940000005,-7.7646272],[131.48500320000005,-7.753341599999942],[131.47611240000003,-7.741912899999932],[131.47809890000008,-7.742603],[131.4801493000001,-7.737917699999969],[131.48328160000005,-7.735501],[131.48484580000002,-7.730025299999966],[131.49498390000008,-7.727679699999953],[131.49825970000006,-7.732015599999954],[131.50837400000012,-7.732702699999948],[131.5127258000001,-7.728011399999957],[131.51936410000008,-7.725838799999963],[131.51913380000008,-7.7316839],[131.5285083000001,-7.730405499999961],[131.53143230000012,-7.731562],[131.53198740000005,-7.72588],[131.53682930000002,-7.722515499999929],[131.5418625000001,-7.7218639],[131.54397860000006,-7.725192899999968],[131.5458317,-7.725690399999962],[131.5488445000001,-7.723913399999958],[131.55371030000003,-7.723676499999954],[131.5553602000001,-7.721010899999953],[131.55326800000012,-7.7152473],[131.55432330000008,-7.713114499999961],[131.5600379000001,-7.714500699999974],[131.56470050000007,-7.706432599999971],[131.56519070000002,-7.702582199999938],[131.56224970000005,-7.701213799999948],[131.56289530000004,-7.698607299999935],[131.56904040000006,-7.695906099999945],[131.5687176,-7.694733199999973],[131.57131190000007,-7.692470199999946],[131.5701044000001,-7.687956199999974],[131.57817430000011,-7.679804699999977],[131.58100550000006,-7.672001],[131.58543150000003,-7.669446],[131.5889684000001,-7.6703356],[131.58928250000008,-7.667336099999943],[131.5850349000001,-7.667343],[131.58341980000012,-7.665975699999933],[131.5850455000001,-7.659115299999939],[131.58728660000008,-7.660193499999934],[131.58942070000012,-7.659407],[131.58984270000008,-7.661828299999968],[131.5920125,-7.657775],[131.5981829000001,-7.654416899999944],[131.59994840000002,-7.644485699999962],[131.60849660000008,-7.647514],[131.6098995000001,-7.652745699999969],[131.61995560000003,-7.648601],[131.62575950000007,-7.630700799999943],[131.63167770000007,-7.622361299999966],[131.63149350000003,-7.615612],[131.629087,-7.614098299999966],[131.62967820000006,-7.605844],[131.633487,-7.601685799999927],[131.6360896000001,-7.601379599999973],[131.63435460000005,-7.594064399999979],[131.6369334000001,-7.590000399999951],[131.63801480000006,-7.591084099999932],[131.64058180000006,-7.590283099999965],[131.64089080000008,-7.582284499999957],[131.64748640000005,-7.574215099999947],[131.64928080000004,-7.569632599999977],[131.6490669000001,-7.564402],[131.64603650000004,-7.562941199999955],[131.64723770000012,-7.560373899999945],[131.6465009000001,-7.558441899999934],[131.6513734,-7.555543899999975],[131.65496230000008,-7.555496699999935],[131.65862260000006,-7.550431],[131.6552,-7.544752499999959],[131.65496230000008,-7.540994299999966],[131.65813530000003,-7.538484899999958],[131.66086270000005,-7.524373699999956],[131.66559590000008,-7.513619],[131.66725970000005,-7.512982799999975],[131.6673310000001,-7.511062299999935],[131.6602719000001,-7.509872299999927],[131.6585063000001,-7.508399599999962],[131.65529960000003,-7.510334499999942],[131.65080460000001,-7.510059499999954],[131.64882360000001,-7.505688499999962],[131.65390860000002,-7.499055699999928],[131.6575094000001,-7.499126399999966],[131.66139550000003,-7.502684599999952],[131.6667433,-7.503391499999964],[131.66975180000009,-7.501182599999936],[131.6718433000001,-7.496234],[131.6714393000001,-7.492510699999968],[131.66842080000004,-7.4914739],[131.6677790000001,-7.482448399999953],[131.66987060000008,-7.481358499999942],[131.6761047000001,-7.4621197],[131.6745360000001,-7.462331799999959],[131.674227,-7.4606232],[131.67236120000007,-7.460022199999969],[131.6732525000001,-7.458455],[131.6715769000001,-7.457877699999926],[131.66758390000007,-7.451573499999938],[131.6721711,-7.449894299999926],[131.67756640000005,-7.450071099999946],[131.6821774000001,-7.447761499999956],[131.68267650000007,-7.444556299999931],[131.68527910000012,-7.441139],[131.68746570000008,-7.442411599999957],[131.69294420000006,-7.437285599999939],[131.69775720000007,-7.438911799999971],[131.70407680000005,-7.432515599999931],[131.70662590000006,-7.422098299999959],[131.703132,-7.421573899999942],[131.70066310000004,-7.417493499999978],[131.6979506,-7.424408],[131.69656010000006,-7.424973699999953],[131.69369970000002,-7.4236746],[131.692737,-7.420580899999948],[131.69075240000006,-7.425960499999974],[131.6876982000001,-7.425960499999974],[131.6861414000001,-7.427681],[131.681887,-7.427492399999949],[131.67611770000008,-7.433667299999968],[131.670247,-7.437438199999974],[131.66746020000005,-7.430367799999942],[131.67095410000002,-7.421105299999965],[131.66936170000008,-7.420268599999929],[131.66368110000008,-7.424829199999976],[131.65916520000007,-7.435293499999943],[131.65733510000007,-7.435552799999925],[131.65690730000006,-7.4301321],[131.65999710000006,-7.426408299999935],[131.65885630000002,-7.424192799999958],[131.66013970000006,-7.420563199999947],[131.65904640000008,-7.4194319],[131.66042490000007,-7.418536299999971],[131.65994960000012,-7.414859499999977],[131.66256410000005,-7.412879699999962],[131.66130440000006,-7.406563099999971],[131.6627304000001,-7.405196099999955],[131.65762030000008,-7.403286899999955],[131.65291430000002,-7.405785299999934],[131.6484934,-7.403687599999955],[131.646045,-7.4044072],[131.64585520000003,-7.399716099999978],[131.647614,-7.398561099999938],[131.64869550000003,-7.394059199999958],[131.6518923000001,-7.392727499999978],[131.6534134000001,-7.393953199999942],[131.65596850000009,-7.393187099999977],[131.65794440000002,-7.390836699999966],[131.66439420000006,-7.391313299999979],[131.66654630000005,-7.392706299999929],[131.67214940000008,-7.391061599999944],[131.6741985000001,-7.392244299999959],[131.6772883000001,-7.391725799999961],[131.68128130000002,-7.385255699999959],[131.68219640000007,-7.379091899999935],[131.68015230000003,-7.377783699999952],[131.68062770000006,-7.371843699999943],[131.67737150000005,-7.368237199999953],[131.67252280000002,-7.368838299999936],[131.66843470000003,-7.366693299999952],[131.66503590000002,-7.368767599999956],[131.6581076000001,-7.367777599999954],[131.6611617000001,-7.359881],[131.65985450000005,-7.359056],[131.66038930000002,-7.355025099999978],[131.6512216000001,-7.351912099999936],[131.65195860000006,-7.343697499999962],[131.65841160000002,-7.335753299999965],[131.65035420000004,-7.324390799999946],[131.650996,-7.321090399999946],[131.6488806000001,-7.316917799999942],[131.6504255000001,-7.313994499999978],[131.64486390000002,-7.309680399999934],[131.64087080000002,-7.311660599999925],[131.640752,-7.310128299999974],[131.63877130000003,-7.310167599999943],[131.6395874000001,-7.307747199999937],[131.63697290000005,-7.3067571],[131.63820880000003,-7.299401699999976],[131.63476250000008,-7.291126599999927],[131.63908820000006,-7.29016],[131.638803,-7.280493899999954],[131.6364738000001,-7.274953399999958],[131.630413,-7.267573899999945],[131.63114980000012,-7.259086099999934],[131.63557060000005,-7.25239],[131.63809,-7.252673],[131.6409897000001,-7.250551],[131.64586210000004,-7.252225],[131.64978380000002,-7.249254199999939],[131.649665,-7.247179299999971],[131.6514238000001,-7.246731299999965],[131.65349160000005,-7.242534399999954],[131.6512931000001,-7.239257],[131.65205360000004,-7.234022599999946],[131.6561180000001,-7.230344299999956],[131.65968320000002,-7.230910199999926],[131.66025360000003,-7.228080699999964],[131.66239270000005,-7.229967],[131.6630107000001,-7.228033499999981],[131.6665402000001,-7.227974599999925],[131.66675410000005,-7.225887799999953],[131.66799,-7.227550199999939],[131.67102050000005,-7.2242373],[131.6723515000001,-7.225640299999952],[131.67392010000003,-7.224779599999977],[131.6751442000001,-7.2269371],[131.67324280000003,-7.230356099999938],[131.67547690000004,-7.234199399999966],[131.67919660000007,-7.234329099999968],[131.68525740000007,-7.230874799999981],[131.68952380000007,-7.230827599999941],[131.6974623000001,-7.233869299999981],[131.7111169000001,-7.232324899999981],[131.71622700000012,-7.2261944],[131.72109950000004,-7.225298399999929],[131.72366640000007,-7.226760299999967],[131.7316287000001,-7.226665899999944],[131.742039,-7.222586699999965],[131.747054,-7.212659699999961],[131.7467451000001,-7.210172099999966],[131.7421816000001,-7.204996199999925],[131.7378083000001,-7.202874],[131.73505120000004,-7.198110699999972],[131.73086810000007,-7.195139599999948],[131.7256867000001,-7.194620799999939],[131.718264,-7.189316899999938],[131.71854930000006,-7.184223],[131.7209262,-7.181393],[131.72102130000007,-7.184411599999976],[131.72296870000002,-7.1868732],[131.72530640000002,-7.186037299999953],[131.7275406000001,-7.182783099999938],[131.72578180000005,-7.179293],[131.72383280000008,-7.17901],[131.7217412000001,-7.176227399999959],[131.71723240000006,-7.175828799999977],[131.716334,-7.171145499999966],[131.7193525,-7.167272099999934],[131.71840180000004,-7.164654499999926],[131.71180030000005,-7.161488599999927],[131.70869860000005,-7.163039099999935],[131.70767950000004,-7.166147599999931],[131.7047798000001,-7.162728099999981],[131.7023551000001,-7.163367699999981],[131.69794060000004,-7.161944],[131.69183220000002,-7.164243299999953],[131.69144010000002,-7.163134899999932],[131.689567,-7.165695599999935],[131.69089340000005,-7.157557599999961],[131.69989550000003,-7.156514099999981],[131.70145990000003,-7.154587299999946],[131.70657430000006,-7.154739499999948],[131.70984420000002,-7.15259],[131.7101514000001,-7.143054099999972],[131.70488350000005,-7.144864899999959],[131.70177320000005,-7.1444514],[131.69709090000003,-7.146479499999941],[131.6958668000001,-7.148885],[131.6851713000001,-7.149698599999965],[131.679776,-7.152658299999928],[131.6784728,-7.156242],[131.67666240000005,-7.156172199999958],[131.67482630000006,-7.1584184],[131.67900940000004,-7.166507199999955],[131.68232510000007,-7.167462299999954],[131.68073860000004,-7.173399099999926],[131.66632930000003,-7.173776399999952],[131.66359590000002,-7.175945899999931],[131.64839640000002,-7.179377],[131.64286830000003,-7.178857799999946],[131.6390318000001,-7.175863399999969],[131.63766710000004,-7.1728368],[131.64015460000007,-7.166753299999925],[131.644526,-7.162886599999979],[131.6521517000001,-7.160629299999925],[131.655907,-7.1558184],[131.6582363000001,-7.149073699999974],[131.6599000000001,-7.138319599999932],[131.659698,-7.133260899999925],[131.65767770000002,-7.130171399999938],[131.65888990000008,-7.122648],[131.6548256000001,-7.118402799999956]]],[[[131.92574320000006,-7.110241499999972],[131.92126910000002,-7.107961399999965],[131.9205204000001,-7.104029899999944],[131.91504670000006,-7.102667199999928],[131.91097890000003,-7.110740399999941],[131.898861,-7.110464399999955],[131.880687,-7.106833599999959],[131.85849760000008,-7.1101967],[131.84993190000012,-7.114486199999931],[131.84087560000012,-7.113679299999944],[131.82899630000009,-7.1168532],[131.824238,-7.1143],[131.81009730000005,-7.1144155],[131.77368980000006,-7.1192386],[131.7549755000001,-7.115795299999945],[131.73926380000012,-7.120654099999967],[131.719041,-7.1349362],[131.71677250000005,-7.150273],[131.71373,-7.1509166],[131.7146570000001,-7.151058099999943],[131.71367080000005,-7.155655799999977],[131.716614,-7.161158399999977],[131.71935670000005,-7.162529099999972],[131.721311,-7.161893699999951],[131.72356910000008,-7.164275699999962],[131.7248883000001,-7.172718699999962],[131.72675220000008,-7.175743899999929],[131.7317756000001,-7.1778835],[131.733178,-7.174346],[131.73692170000004,-7.172624399999961],[131.7416756,-7.173261199999956],[131.75334210000005,-7.171122399999945],[131.75481580000007,-7.172278],[131.75396010000009,-7.174884],[131.7512028000001,-7.177348499999937],[131.76033630000006,-7.1825132],[131.7635868000001,-7.182330399999955],[131.76522690000002,-7.180491],[131.76456140000005,-7.172419499999933],[131.76570230000004,-7.170462099999952],[131.77242910000007,-7.1660991],[131.77704040000003,-7.164896299999953],[131.79213420000008,-7.167160299999978],[131.8031039000001,-7.170975],[131.80357930000002,-7.169854799999939],[131.8054452,-7.174654099999941],[131.806598,-7.173993699999926],[131.80835700000011,-7.175503099999958],[131.8089155,-7.173498499999937],[131.80576610000003,-7.166494099999966],[131.81009210000002,-7.163522499999942],[131.81028230000004,-7.1616829],[131.81280190000007,-7.161258399999952],[131.84381530000007,-7.163552],[131.84511080000004,-7.162207699999954],[131.8470718000001,-7.164224099999956],[131.8671809000001,-7.1675731],[131.8807058000001,-7.175025499999947],[131.891426,-7.176228299999934],[131.8933038,-7.178185699999972],[131.89684540000007,-7.178728099999944],[131.9021461000001,-7.184293699999955],[131.90100510000002,-7.185355],[131.90180740000005,-7.197676899999976],[131.9007971000001,-7.207923299999948],[131.90552730000002,-7.220138499999962],[131.91066150000006,-7.225114099999928],[131.9088551000001,-7.229358699999977],[131.91873170000008,-7.230557],[131.91939720000005,-7.231688799999972],[131.928263,-7.231245099999967],[131.93617830000005,-7.240370699999971],[131.93621930000006,-7.245424799999967],[131.94189490000008,-7.247002599999973],[131.94856230000005,-7.246513299999947],[131.95044010000004,-7.253115599999944],[131.96375110000008,-7.251276399999938],[131.974411,-7.243656499999929],[131.97985430000006,-7.230522199999939],[131.9775605000001,-7.227987299999938],[131.9780478,-7.225216599999953],[131.9815063000001,-7.219061899999929],[131.97934320000002,-7.2240021],[131.98031780000008,-7.224969],[131.98669990000008,-7.212694899999974],[131.98437050000007,-7.208969],[131.97967270000004,-7.211363399999925],[131.97589360000006,-7.210891799999956],[131.97712080000008,-7.206681599999968],[131.97312750000003,-7.2056676],[131.97693060000006,-7.198239199999932],[131.9772871,-7.185669699999949],[131.97403070000007,-7.175646799999981],[131.95912710000005,-7.169373499999949],[131.95559570000012,-7.157220699999925],[131.9474196000001,-7.145712099999969],[131.94480510000005,-7.145712099999969],[131.945328,-7.143636799999967],[131.942666,-7.1389201],[131.93969730000003,-7.137517699999933],[131.93391940000004,-7.117788599999926],[131.92916580000008,-7.111750899999947],[131.92574320000006,-7.110241499999972]]],[[[131.44919160000006,-7.101179499999944],[131.44420560000003,-7.097162499999968],[131.43632160000004,-7.103309499999966],[131.43519860000004,-7.117520499999955],[131.43183360000012,-7.126168499999949],[131.4324686000001,-7.1359355],[131.43396460000008,-7.137059499999964],[131.43437160000008,-7.141283499999929],[131.44682060000002,-7.139866499999926],[131.4477856000001,-7.127731499999925],[131.45402760000002,-7.124131499999976],[131.45496260000004,-7.117917499999976],[131.4526016000001,-7.112116499999956],[131.45384560000002,-7.1050005],[131.45181260000004,-7.102140499999962],[131.44919160000006,-7.101179499999944]]],[[[131.46622560000003,-7.099926499999981],[131.46670360000007,-7.098344499999939],[131.46410360000004,-7.097060499999941],[131.46225460000005,-7.102696499999979],[131.4637576,-7.100153499999976],[131.46622560000003,-7.099926499999981]]],[[[131.6543236000001,-7.080882199999962],[131.6547515000001,-7.080080199999941],[131.6519942000001,-7.081070899999929],[131.6476206000001,-7.091921399999933],[131.65365810000003,-7.085647],[131.65517940000007,-7.082061599999975],[131.6543236000001,-7.080882199999962]]],[[[131.43798160000006,-7.072416499999974],[131.43308260000003,-7.070574499999964],[131.43172060000006,-7.068454499999973],[131.42913260000012,-7.070281499999965],[131.42884460000005,-7.073927499999968],[131.43049760000008,-7.076037499999927],[131.42974560000005,-7.083537499999977],[131.43194460000007,-7.0846555],[131.4323356000001,-7.088672499999973],[131.43471060000002,-7.091987499999959],[131.44654160000005,-7.093247499999961],[131.44788560000006,-7.085159499999975],[131.43964560000006,-7.072671499999956],[131.43798160000006,-7.072416499999974]]],[[[131.5630907000001,-7.054734499999938],[131.5634784,-7.050116299999956],[131.56179050000003,-7.049113899999952],[131.56260170000007,-7.051076699999953],[131.55761690000008,-7.058466799999962],[131.5589503000001,-7.058725399999958],[131.5630907000001,-7.054734499999938]]],[[[131.97461010000006,-7.022118899999953],[131.978413,-7.017401],[131.9793234000001,-7.012671699999942],[131.98453360000008,-7.0069149],[131.98920270000008,-7.005176799999958],[132.00597160000007,-6.991234499999962],[132.00826030000007,-6.9884732],[132.0059411000001,-6.986302599999931],[131.99954780000007,-6.986269199999981],[131.9962673000001,-6.987715],[131.97109100000011,-7.0028932],[131.963985,-7.010376],[131.954645,-7.017023499999937],[131.9481578000001,-7.030450599999938],[131.94518240000002,-7.032584],[131.94038430000012,-7.0323095],[131.93126680000012,-7.041181799999947],[131.91591690000007,-7.04967],[131.90915740000003,-7.057839599999966],[131.9066398000001,-7.065247299999953],[131.9092008,-7.080806299999949],[131.91357410000012,-7.0825045],[131.9327469000001,-7.077479599999947],[131.95305570000005,-7.058935899999938],[131.96091980000006,-7.054954599999974],[131.96054430000004,-7.053067499999941],[131.96339160000002,-7.050236899999959],[131.96764270000006,-7.032384599999943],[131.97461010000006,-7.022118899999953]]],[[[131.6036491000001,-6.981768399999964],[131.6010725000001,-6.980946399999937],[131.60021560000007,-6.982770799999969],[131.60223410000003,-6.984300899999937],[131.6049763000001,-6.984056799999962],[131.6036491000001,-6.981768399999964]]],[[[131.59049690000006,-6.986174499999947],[131.59219870000004,-6.985345],[131.592793,-6.981888099999935],[131.59155350000003,-6.980488099999945],[131.5871198000001,-6.983438399999955],[131.58850240000004,-6.985748699999931],[131.59049690000006,-6.986174499999947]]],[[[131.5822988000001,-6.981709099999932],[131.57647480000003,-6.977745699999957],[131.57429500000012,-6.9794426],[131.57427410000003,-6.982075],[131.57651850000002,-6.983852199999944],[131.57821590000003,-6.988363699999979],[131.5834708000001,-6.985219299999926],[131.58447020000006,-6.981891899999937],[131.5822988000001,-6.981709099999932]]],[[[131.5975810000001,-6.975840099999971],[131.59682390000012,-6.970759],[131.59489750000012,-6.970256499999948],[131.59282860000008,-6.972384],[131.59355530000005,-6.973924899999929],[131.5949134000001,-6.976355299999966],[131.5973073,-6.977033099999971],[131.5975810000001,-6.975840099999971]]],[[[131.4897896000001,-6.866929499999969],[131.4835796000001,-6.868159499999933],[131.4814196000001,-6.871689499999945],[131.4778496,-6.873549499999967],[131.47845860000007,-6.874319499999956],[131.47343960000012,-6.872409499999947],[131.4699396000001,-6.876060499999937],[131.46783960000005,-6.897269499999936],[131.46291960000008,-6.906159499999944],[131.45731960000012,-6.912089499999979],[131.4569696000001,-6.9169495],[131.46548960000007,-6.920629499999961],[131.4710596000001,-6.919629499999928],[131.4792996000001,-6.924549499999955],[131.48586960000011,-6.9215795],[131.49536960000012,-6.908809499999961],[131.49698960000012,-6.9038795],[131.49944960000005,-6.901569499999937],[131.4987096000001,-6.899739499999953],[131.50465960000008,-6.896929499999942],[131.5075696,-6.8906595],[131.5097896000001,-6.890029499999969],[131.50929860000008,-6.887409499999933],[131.51070960000004,-6.886319499999956],[131.50970960000006,-6.885979499999962],[131.51269960000002,-6.885109499999942],[131.51130960000012,-6.884799499999929],[131.51424960000008,-6.879089499999964],[131.5118596000001,-6.875989499999946],[131.51224960000002,-6.873199499999942],[131.5072696000001,-6.8693195],[131.4897896000001,-6.866929499999969]]],[[[131.53627870000003,-6.810533599999928],[131.53232050000008,-6.812369499999932],[131.52665160000004,-6.812130399999944],[131.52499520000003,-6.814774899999975],[131.5219658000001,-6.814310399999954],[131.5169913000001,-6.815995799999939],[131.5094130000001,-6.8279798],[131.50706650000006,-6.829380599999979],[131.52061620000006,-6.832314799999949],[131.5270408,-6.831413299999952],[131.53248970000004,-6.8218322],[131.53363120000006,-6.816302199999939],[131.53655120000008,-6.813210499999968],[131.53627870000003,-6.810533599999928]]],[[[131.57873960000006,-6.668479499999933],[131.57477060000008,-6.668829499999958],[131.5705776000001,-6.675119499999937],[131.56406960000004,-6.678490499999953],[131.5589596000001,-6.686250499999971],[131.55838960000005,-6.688719599999956],[131.5605796000001,-6.6907395],[131.55983960000003,-6.693220499999939],[131.5623396000001,-6.694330499999978],[131.5639506000001,-6.698589499999969],[131.56366060000005,-6.703170499999942],[131.56134960000009,-6.706789499999957],[131.55505360000006,-6.713737499999979],[131.55249760000004,-6.714548499999978],[131.55074060000004,-6.713149499999929],[131.54784960000006,-6.716659499999935],[131.5462196000001,-6.716339499999947],[131.54515960000003,-6.718940499999974],[131.53672060000008,-6.726719499999945],[131.53528960000006,-6.733749499999931],[131.53389960000004,-6.7308905],[131.52823960000012,-6.741589499999975],[131.52587960000005,-6.743859499999928],[131.5213096000001,-6.744349499999942],[131.5195596000001,-6.749720499999967],[131.51754960000005,-6.750360499999942],[131.51317960000006,-6.764779499999975],[131.51448960000005,-6.767399499999954],[131.51692060000005,-6.767899499999942],[131.51862060000008,-6.780679499999962],[131.52118960000007,-6.779679499999929],[131.52018060000012,-6.778360499999962],[131.52219960000002,-6.778559499999972],[131.52133060000006,-6.785710499999936],[131.52291960000002,-6.790710499999932],[131.52002960000004,-6.796910499999967],[131.52769960000012,-6.804269499999975],[131.53353960000004,-6.803000499999939],[131.53519960000006,-6.797480499999949],[131.53807960000006,-6.795950499999947],[131.53970960000004,-6.797770499999956],[131.54263960000003,-6.798150499999963],[131.54771960000005,-6.791849499999955],[131.55208960000004,-6.791269499999942],[131.55298960000005,-6.788610499999947],[131.55789060000006,-6.784819499999969],[131.55722960000003,-6.783400499999971],[131.55859060000012,-6.784959499999957],[131.55936960000008,-6.783259499999929],[131.56207960000006,-6.783809499999961],[131.5600796000001,-6.7852205],[131.56226960000004,-6.7911005],[131.5650706,-6.788040499999966],[131.57488960000012,-6.783440499999926],[131.58263060000002,-6.776930499999935],[131.5853896000001,-6.772770499999979],[131.58812060000002,-6.7612505],[131.59186060000002,-6.757060499999966],[131.5909306000001,-6.756170499999939],[131.58296960000007,-6.752890499999978],[131.57248160000006,-6.758962499999939],[131.56785960000002,-6.756590499999959],[131.56609060000005,-6.758080499999949],[131.56703960000004,-6.760919499999943],[131.56398060000004,-6.762989499999946],[131.56486960000007,-6.759339499999953],[131.5632296000001,-6.759620499999926],[131.56331060000002,-6.756010499999945],[131.5599396,-6.7559595],[131.56194960000005,-6.7525905],[131.55741960000012,-6.753029499999968],[131.5602596000001,-6.749730499999941],[131.55795060000003,-6.745640499999979],[131.55550960000005,-6.744580499999927],[131.55667060000007,-6.740739499999961],[131.55431240000007,-6.740048799999954],[131.55757960000005,-6.740170499999977],[131.55948060000003,-6.738179499999944],[131.5607096000001,-6.733630499999947],[131.56000960000006,-6.730530499999929],[131.56229960000007,-6.729930499999966],[131.5620196000001,-6.724519499999928],[131.5675496,-6.717420499999946],[131.5765196000001,-6.7110395],[131.58653960000004,-6.717529499999955],[131.5860696000001,-6.722119499999962],[131.5902516000001,-6.7231905],[131.59008960000006,-6.724340499999926],[131.5938006,-6.726649499999951],[131.59383060000005,-6.729909499999962],[131.59553960000005,-6.730109499999969],[131.59754060000012,-6.728180499999951],[131.59958960000006,-6.729360499999927],[131.60063060000004,-6.726230499999929],[131.5985396000001,-6.723969499999953],[131.59662960000003,-6.725770499999953],[131.59624960000008,-6.724410499999976],[131.6042596000001,-6.717459499999961],[131.60814060000007,-6.711090499999955],[131.6142096000001,-6.707350499999961],[131.61826960000008,-6.707539499999939],[131.62105960000008,-6.703970499999969],[131.62161960000003,-6.699589499999945],[131.6243396000001,-6.696540499999969],[131.6241096000001,-6.692019499999958],[131.62217060000012,-6.688118499999973],[131.62471060000007,-6.684349499999939],[131.62408960000005,-6.678820499999972],[131.62286060000008,-6.677920499999971],[131.6178896,-6.676779499999952],[131.61449960000004,-6.678050499999927],[131.61243960000002,-6.676710499999956],[131.6067796000001,-6.677229499999953],[131.58976960000007,-6.673149499999965],[131.58455060000006,-6.669949499999973],[131.57873960000006,-6.668479499999933]]],[[[131.59208660000002,-6.660236499999939],[131.59485260000008,-6.658970499999953],[131.5951946,-6.655936499999939],[131.5887636000001,-6.653446499999973],[131.58734960000004,-6.656820499999981],[131.59208660000002,-6.660236499999939]]]]},"properties":{"shapeName":"Maluku Tenggara Barat","shapeISO":"","shapeID":"22746128B69373823882273","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[119.06478730000003,-3.104885699999954],[119.06743950000009,-3.109227],[119.0706401000001,-3.107072899999935],[119.074799,-3.112336],[119.081169,-3.113051],[119.08911300000011,-3.104378],[119.097872,-3.105379],[119.106759,-3.097795],[119.109138,-3.093498],[119.11239300000011,-3.092691],[119.123034,-3.094125],[119.125355,-3.096303],[119.131727,-3.098182],[119.134492,-3.105669],[119.147981,-3.117323],[119.161063,-3.112884],[119.165523,-3.110158],[119.169426,-3.10545],[119.176674,-3.105326],[119.1809492000001,-3.098759099999938],[119.188786,-3.091882],[119.2105,-3.078934],[119.214093,-3.07404],[119.22377820000008,-3.072374499999967],[119.22389270000008,-3.087644299999965],[119.22642670000005,-3.093240299999934],[119.25379850000002,-3.126534799999945],[119.25219270000002,-3.143765599999938],[119.25620570000001,-3.165763],[119.264692,-3.176549],[119.268845,-3.177878],[119.27980800000012,-3.185353],[119.288893,-3.201273],[119.289488,-3.212218],[119.292819,-3.222569],[119.29066050000006,-3.225836699999945],[119.28944990000002,-3.232712],[119.29521620000003,-3.252680799999951],[119.30152670000007,-3.257453699999928],[119.30434190000005,-3.263225699999964],[119.31179640000005,-3.264053099999956],[119.3168012000001,-3.266843299999948],[119.32335440000008,-3.274170499999968],[119.33644160000006,-3.280419599999959],[119.34526360000007,-3.288960299999928],[119.35202730000003,-3.289159099999949],[119.36043140000004,-3.293089399999928],[119.36864340000011,-3.293653399999926],[119.38474780000001,-3.302344599999969],[119.40157640000007,-3.306441799999959],[119.40834110000003,-3.313651199999924],[119.41188020000004,-3.319739899999945],[119.422936,-3.318182699999966],[119.4327118000001,-3.3226794],[119.43212140000003,-3.324777499999925],[119.43555880000008,-3.331155599999931],[119.43795140000009,-3.332268699999929],[119.4384205,-3.335269799999935],[119.440758,-3.336082699999963],[119.440221,-3.338290499999971],[119.44286960000011,-3.337533699999938],[119.445167,-3.332068599999957],[119.44390320000002,-3.328826799999945],[119.44056390000003,-3.325915599999973],[119.44012210000005,-3.322952],[119.43429770000012,-3.315916099999924],[119.43457560000002,-3.313926899999956],[119.4379871000001,-3.311206799999979],[119.4397672,-3.302922799999976],[119.43483150000009,-3.294583099999954],[119.43680620000009,-3.288603599999931],[119.43608990000007,-3.277623199999937],[119.43219880000004,-3.267709599999932],[119.43061910000006,-3.263156199999969],[119.42226160000007,-3.252598299999931],[119.4212040000001,-3.249010299999952],[119.40040490000001,-3.238805599999978],[119.39082340000004,-3.232392399999981],[119.38196590000007,-3.221150499999965],[119.37447430000009,-3.214180699999929],[119.37041810000005,-3.201390599999968],[119.37148080000009,-3.1971306],[119.37449260000005,-3.195831],[119.38305360000004,-3.195720699999924],[119.38890330000004,-3.197840299999939],[119.394511,-3.197881399999972],[119.39931990000002,-3.192076],[119.40931660000001,-3.184720299999981],[119.42318150000006,-3.178669299999967],[119.4301468000001,-3.172488299999941],[119.4386032000001,-3.183595099999934],[119.44713050000007,-3.184415399999978],[119.4520649000001,-3.182566699999938],[119.4585052000001,-3.182291199999952],[119.46389760000011,-3.1886415],[119.47561410000003,-3.191071699999952],[119.48376170000006,-3.1878433],[119.4895696000001,-3.182731499999932],[119.50351100000012,-3.177807799999925],[119.51561890000005,-3.171686399999942],[119.51623530000006,-3.16628],[119.5254576000001,-3.151290099999926],[119.53616290000002,-3.139333599999929],[119.54514340000003,-3.138579599999957],[119.55865670000003,-3.134461199999976],[119.5629044000001,-3.130519299999946],[119.5669524000001,-3.129479],[119.5719223000001,-3.1313918],[119.57960960000003,-3.130948099999955],[119.5867118000001,-3.125173399999937],[119.5978272000001,-3.127866199999971],[119.60660550000011,-3.119195199999979],[119.60990320000008,-3.120226299999956],[119.61437510000007,-3.124643599999956],[119.6221604000001,-3.1268925],[119.62666600000011,-3.126049799999976],[119.63073270000007,-3.128389299999981],[119.63276610000003,-3.1271912],[119.63503570000012,-3.129011],[119.63649580000003,-3.127982599999939],[119.6316352,-3.124635199999943],[119.63211940000008,-3.109578799999952],[119.62784620000002,-3.102359399999955],[119.6273979,-3.096712099999934],[119.62105080000003,-3.088042799999926],[119.6190514000001,-3.0792451],[119.6107287000001,-3.073754299999962],[119.6069424000001,-3.0666403],[119.59995090000007,-3.065988599999969],[119.59476060000009,-3.0632952],[119.5938814000001,-3.058104399999934],[119.58662890000005,-3.048406299999954],[119.58809630000007,-3.044796699999949],[119.58528590000003,-3.041332899999929],[119.58520830000009,-3.035545299999967],[119.5802450000001,-3.0349218],[119.5786508000001,-3.030964399999959],[119.57970880000005,-3.028105899999957],[119.57650010000009,-3.026333099999931],[119.57698690000007,-3.018306199999927],[119.57504070000005,-3.012409099999957],[119.57169510000006,-3.005132499999945],[119.56854620000001,-3.003791499999977],[119.56817430000001,-3.000269299999957],[119.56547010000008,-2.997175699999957],[119.56555150000008,-2.988706899999954],[119.56919430000005,-2.974047799999937],[119.5720751,-2.972061499999938],[119.57303410000009,-2.966799399999957],[119.57517980000011,-2.964345099999946],[119.5766589000001,-2.951119199999937],[119.57350110000004,-2.945622499999956],[119.57313320000003,-2.941773099999978],[119.5690145000001,-2.936188199999947],[119.56871820000003,-2.926523],[119.56484350000005,-2.924385199999961],[119.56219130000011,-2.924517799999933],[119.55659820000005,-2.920788799999968],[119.55430940000008,-2.913355699999954],[119.55484010000009,-2.903548199999932],[119.55074390000004,-2.897791199999972],[119.55602490000001,-2.885433199999966],[119.563011,-2.880148299999973],[119.56879050000009,-2.870365099999958],[119.56786920000002,-2.857960499999933],[119.5631876000001,-2.854498],[119.56138,-2.850796399999979],[119.5625073000001,-2.834127799999976],[119.56673580000006,-2.821564599999931],[119.56627730000002,-2.819477799999959],[119.56288770000003,-2.817008899999962],[119.56150790000004,-2.812149499999975],[119.56506,-2.806402499999933],[119.571198,-2.7865958],[119.57322810000005,-2.7751583],[119.57566980000001,-2.770841899999937],[119.58453530000008,-2.764595399999962],[119.58443090000003,-2.762544],[119.57877810000002,-2.758173],[119.5778686000001,-2.755309899999929],[119.5786442000001,-2.751548499999956],[119.58356060000006,-2.750001299999951],[119.58344480000005,-2.747640499999932],[119.573027,-2.741709],[119.569555,-2.741571],[119.568101,-2.738228],[119.569318,-2.732262],[119.55282000000011,-2.728516],[119.542849,-2.733046],[119.540541,-2.73596],[119.529842,-2.738601],[119.529195,-2.740784],[119.526811,-2.742026],[119.509446,-2.738862],[119.500702,-2.74259],[119.494187,-2.739549],[119.484931,-2.740514],[119.478867,-2.746345],[119.47967,-2.750125],[119.45792670000003,-2.762198],[119.44765230000007,-2.767555899999934],[119.441009,-2.767589],[119.421939,-2.780575],[119.409573,-2.781837],[119.400588,-2.774218],[119.396316,-2.772263],[119.394718,-2.768993],[119.38958,-2.767622],[119.376879,-2.746917],[119.368419,-2.748098],[119.34932270000002,-2.744121699999937],[119.335337,-2.735725],[119.331719,-2.73515],[119.327889,-2.737121],[119.314928,-2.730382],[119.310227,-2.730973],[119.3051081000001,-2.729026499999975],[119.30236090000005,-2.722842699999944],[119.30246000000011,-2.71673],[119.298248,-2.708373],[119.28471900000011,-2.707308],[119.273512,-2.709948],[119.269891,-2.708063],[119.2636040000001,-2.711057],[119.25388570000007,-2.712899399999969],[119.250654,-2.710863],[119.241255,-2.713427],[119.2319940000001,-2.712353],[119.218587,-2.699356],[119.218428,-2.691427],[119.20948970000006,-2.683888199999956],[119.2074424000001,-2.677741599999933],[119.200665,-2.669126],[119.191971,-2.661867],[119.182708,-2.65992],[119.1783,-2.662619],[119.1728710000001,-2.660446],[119.165423,-2.661915],[119.16350980000004,-2.663866599999949],[119.161242,-2.670943],[119.15201050000007,-2.671832799999947],[119.14949740000009,-2.669314399999962],[119.14336880000008,-2.668451799999957],[119.14114560000007,-2.666175399999929],[119.138614,-2.661745799999949],[119.139664,-2.65905],[119.138499,-2.65476],[119.13077070000008,-2.658688599999948],[119.1254765000001,-2.658985599999937],[119.122949,-2.656824],[119.12123290000011,-2.6595886],[119.117962,-2.659669],[119.11703530000011,-2.662330199999928],[119.11196980000011,-2.663457599999958],[119.10153790000004,-2.670498099999975],[119.097016,-2.679203],[119.091164,-2.683651],[119.090155,-2.686272],[119.08560100000011,-2.688098],[119.08285390000003,-2.692152599999929],[119.08076570000003,-2.702415199999962],[119.076216,-2.700191],[119.06957850000003,-2.701688699999977],[119.063837,-2.705240899999978],[119.06119400000011,-2.704618099999948],[119.05448750000005,-2.718166699999927],[119.052447,-2.719584],[119.04507210000008,-2.736140699999964],[119.042278,-2.738954],[119.04239660000007,-2.744194899999968],[119.03977540000005,-2.747406699999942],[119.03965710000011,-2.751431699999955],[119.0285957000001,-2.7495216],[119.0246211000001,-2.750416799999925],[119.02390140000011,-2.758144299999969],[119.01844770000002,-2.763061199999925],[119.0193432000001,-2.7669476],[119.01317460000007,-2.774036699999954],[119.01340390000007,-2.778978399999971],[119.01683330000003,-2.782248799999934],[119.0160098,-2.785082299999942],[119.02112520000003,-2.7968757],[119.0203596,-2.799432299999978],[119.0238614000001,-2.801612599999942],[119.02505360000009,-2.8061437],[119.02105360000007,-2.812912099999949],[119.02274110000008,-2.8166164],[119.0229548000001,-2.8260416],[119.02161170000011,-2.839864399999954],[119.01559920000011,-2.852493699999968],[119.01078340000004,-2.854033299999969],[119.0153984000001,-2.863089599999967],[119.01336970000011,-2.868371599999932],[119.01377940000009,-2.870907299999942],[119.02042620000009,-2.876296],[119.02519490000009,-2.884116399999925],[119.02257740000005,-2.894828299999972],[119.02477440000007,-2.909448299999951],[119.03130740000006,-2.9204953],[119.03370940000002,-2.928711299999975],[119.02887340000007,-2.935195299999975],[119.02910740000004,-2.944580299999927],[119.02594140000008,-2.954990299999963],[119.02573440000003,-2.960592299999973],[119.02722820000008,-2.963697],[119.0521844000001,-2.980405299999973],[119.06761090000009,-2.9868522],[119.06948850000003,-2.9938912],[119.07336940000005,-2.995829499999957],[119.0762016000001,-2.995281499999976],[119.0949634000001,-2.999857199999951],[119.0967667000001,-3.003565699999967],[119.09392330000003,-3.007213599999943],[119.09002840000005,-3.007755199999963],[119.08230590000005,-3.012767],[119.08154370000011,-3.015961],[119.08333770000002,-3.028063799999927],[119.0786,-3.030866],[119.0755,-3.039391],[119.0726,-3.042147],[119.0628838,-3.046393899999941],[119.05947110000011,-3.049652],[119.0588639,-3.056329499999947],[119.06347740000001,-3.060949499999936],[119.065794,-3.0684225],[119.0625023,-3.073952799999972],[119.06687510000006,-3.078034299999956],[119.067057,-3.0805264],[119.06387980000011,-3.086038899999949],[119.065628,-3.085727],[119.069022,-3.089246299999957],[119.06709180000007,-3.098507899999959],[119.06886730000008,-3.100818799999956],[119.06478730000003,-3.104885699999954]]]},"properties":{"shapeName":"Mamasa","shapeISO":"","shapeID":"22746128B62115632409983","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[136.908966,-2.1791935],[136.91047670000012,-2.176989599999956],[136.9085388000001,-2.176029699999958],[136.90788270000007,-2.178530699999953],[136.908966,-2.1791935]]],[[[137.0402527000001,-2.108156199999939],[137.04035950000002,-2.106656099999952],[137.03865050000002,-2.107796199999939],[137.039505,-2.108936099999937],[137.0402527000001,-2.108156199999939]]],[[[137.1741333000001,-2.003335199999981],[137.17179870000007,-2.004815599999972],[137.171997,-2.008445499999937],[137.17559810000012,-2.012655299999949],[137.1792144000001,-2.012675299999955],[137.1812896,-2.016255099999967],[137.18270870000003,-2.015905099999941],[137.1878967,-2.019515299999966],[137.19294730000001,-2.018315299999927],[137.1972809,-2.019925399999977],[137.19648740000002,-2.0133753],[137.17724610000005,-2.003585299999941],[137.17497250000008,-2.005215199999952],[137.1741333000001,-2.003335199999981]]],[[[137.20362850000004,-1.982675799999924],[137.20240780000006,-1.9822458],[137.2067413000001,-1.984585799999934],[137.20515440000008,-1.982365799999968],[137.20362850000004,-1.982675799999924]]],[[[137.20362850000004,-1.984615799999972],[137.1984863,-1.980225799999971],[137.19606010000007,-1.984145799999965],[137.20097350000003,-1.985615799999948],[137.20362850000004,-1.984615799999972]]],[[[137.18080140000006,-1.979365199999961],[137.17568970000002,-1.979295299999933],[137.17910760000007,-1.983165299999939],[137.18266290000008,-1.984255299999973],[137.18418880000002,-1.9828153],[137.18080140000006,-1.979365199999961]]],[[[137.19337460000008,-1.980125299999941],[137.1966552,-1.977895299999943],[137.19252010000002,-1.975305299999945],[137.189743,-1.977495399999952],[137.19337460000008,-1.980125299999941]]],[[[137.20875550000005,-1.984925499999974],[137.21415710000008,-1.981235499999968],[137.20758050000006,-1.979485499999953],[137.19789120000007,-1.970615499999951],[137.195816,-1.974425499999938],[137.20071410000003,-1.977165499999956],[137.20875550000005,-1.984925499999974]]],[[[137.19226070000002,-1.968524199999933],[137.19604490000006,-1.966824199999962],[137.19343560000004,-1.965244199999972],[137.18869010000003,-1.957974199999967],[137.18748470000003,-1.960034399999927],[137.1872711000001,-1.968384299999968],[137.1855316000001,-1.969124299999976],[137.18588250000005,-1.9702643],[137.19105530000002,-1.970294199999955],[137.19226070000002,-1.968524199999933]]],[[[137.08946220000007,-1.856535799999961],[137.0879516000001,-1.855915799999934],[137.08720390000008,-1.857505799999956],[137.08825680000007,-1.860515799999973],[137.08705140000006,-1.871765899999957],[137.08830260000002,-1.888175799999942],[137.0924225000001,-1.894055799999933],[137.09480280000002,-1.894805799999972],[137.10379030000001,-1.882205799999952],[137.11213680000003,-1.876535799999942],[137.11175530000003,-1.875055799999927],[137.1044922000001,-1.870325799999932],[137.1002807000001,-1.861895799999957],[137.09753420000004,-1.859365799999978],[137.08946220000007,-1.856535799999961]]],[[[138.17037960000005,-1.630883599999947],[138.133438,-1.625563499999942],[138.09919730000001,-1.615403699999945],[138.06761160000008,-1.600993599999924],[138.0330199000001,-1.578223799999932],[138.01188650000006,-1.5605538],[137.99049370000012,-1.531934399999955],[137.98255910000012,-1.5291139],[137.98028560000012,-1.529063899999926],[137.97650140000007,-1.5323229],[137.9690551000001,-1.530731299999957],[137.96598810000012,-1.5155339],[137.95387260000007,-1.507808399999931],[137.9527892000001,-1.504191299999945],[137.95452870000008,-1.501143899999931],[137.9500121000001,-1.489253899999937],[137.9375304,-1.469954],[137.93194570000003,-1.458024],[137.92112720000011,-1.460924],[137.9090728000001,-1.469315],[137.90179440000009,-1.471884699999976],[137.89643850000004,-1.470935699999927],[137.8938293000001,-1.469026299999939],[137.89277640000012,-1.4652808],[137.8902892000001,-1.464088699999934],[137.8484039000001,-1.464250899999968],[137.83801260000007,-1.461884599999962],[137.82374570000002,-1.465781],[137.8221588,-1.464951],[137.81593320000002,-1.467241099999967],[137.81098930000007,-1.466741099999979],[137.7985992,-1.469465699999944],[137.7904052,-1.476409699999977],[137.77947990000007,-1.479053499999964],[137.77687070000002,-1.482045399999947],[137.7724151000001,-1.482064199999968],[137.764511,-1.477401099999952],[137.743576,-1.476922],[137.74069210000005,-1.479246],[137.74295040000004,-1.493451099999959],[137.73992910000004,-1.497391199999925],[137.73793020000005,-1.4977554],[137.73413080000012,-1.494501199999945],[137.72416680000003,-1.494311299999936],[137.6814422000001,-1.504881399999931],[137.66493220000007,-1.513459],[137.65763850000008,-1.514951699999926],[137.64624020000008,-1.521541499999955],[137.6450195000001,-1.525699399999951],[137.64059440000005,-1.529451599999959],[137.63687130000005,-1.529324499999973],[137.61042780000002,-1.545389099999966],[137.59410090000006,-1.551063499999941],[137.58775320000007,-1.556060799999955],[137.581253,-1.554792299999974],[137.569046,-1.561676099999943],[137.53892510000003,-1.572113699999932],[137.53111260000003,-1.578321199999948],[137.4767303000001,-1.597591499999965],[137.47644040000012,-1.6022082],[137.47430420000012,-1.605330299999935],[137.44960020000008,-1.621272099999942],[137.44462580000004,-1.628086199999927],[137.42961120000007,-1.634022099999925],[137.40835570000002,-1.647630799999945],[137.4029693000001,-1.651481699999977],[137.4017639000001,-1.655641899999978],[137.37315360000002,-1.668632399999979],[137.36355590000005,-1.675599099999943],[137.33459470000003,-1.687392399999965],[137.3300170000001,-1.691662299999962],[137.3289642000001,-1.697585],[137.32279960000005,-1.702017399999932],[137.3156738,-1.7008067],[137.3139801000001,-1.697706799999935],[137.31018060000008,-1.697950499999934],[137.3016967000001,-1.706162399999926],[137.2771911000001,-1.721072599999957],[137.24668880000002,-1.735802499999977],[137.2426147000001,-1.741412599999933],[137.24571230000004,-1.743434399999956],[137.2463073,-1.746478399999944],[137.24441530000001,-1.749949099999981],[137.24156190000008,-1.751387699999952],[137.2284545000001,-1.750845399999946],[137.2286987000001,-1.7490555],[137.21681210000008,-1.746196299999951],[137.2035522000001,-1.746845499999949],[137.16506960000004,-1.763275599999929],[137.15447990000007,-1.769925599999965],[137.15422050000006,-1.7730016],[137.151123,-1.775935],[137.14387510000006,-1.776182299999959],[137.14149470000007,-1.772836199999972],[137.13804620000008,-1.771644099999946],[137.1244964000001,-1.775726299999974],[137.113327,-1.785307799999941],[137.113327,-1.786623399999939],[137.11213680000003,-1.786266],[137.1022796000001,-1.793094899999971],[137.0948181000001,-1.807217099999946],[137.08915710000008,-1.851615799999934],[137.091217,-1.855345799999952],[137.09892270000012,-1.859015799999952],[137.1035614000001,-1.8631858],[137.10391230000005,-1.865615799999944],[137.10653680000007,-1.865930099999957],[137.10720820000006,-1.8705457],[137.1161651000001,-1.875215799999978],[137.122055,-1.880185799999936],[137.1239471,-1.888045799999929],[137.12123110000005,-1.890925799999934],[137.12294,-1.893415799999957],[137.12509150000005,-1.892115799999942],[137.12878420000004,-1.896645699999965],[137.1335296000001,-1.897395699999947],[137.13719170000002,-1.893865699999935],[137.14360040000008,-1.898315699999955],[137.1474151000001,-1.905935599999964],[137.1561432000001,-1.931835599999943],[137.15908810000008,-1.930275699999925],[137.16670220000003,-1.933455699999968],[137.16873160000011,-1.932735699999967],[137.17498780000005,-1.939515699999959],[137.17758170000002,-1.939555599999949],[137.1783905000001,-1.937319499999944],[137.18043510000007,-1.936403599999949],[137.18305970000006,-1.937137399999926],[137.1920166000001,-1.945835599999953],[137.19279480000012,-1.954175599999928],[137.194458,-1.956485599999951],[137.193161,-1.959825499999965],[137.19659420000005,-1.960671199999979],[137.19712830000003,-1.962783899999977],[137.20330810000007,-1.966344],[137.204483,-1.970589399999938],[137.2017211000001,-1.970224],[137.2085876000001,-1.977664],[137.21630860000005,-1.979960299999959],[137.21635430000003,-1.982488899999964],[137.21366880000005,-1.986665499999958],[137.2081604000001,-1.990183799999954],[137.20294190000004,-1.9880155],[137.1947021000001,-1.987355499999978],[137.18983460000004,-1.988965599999972],[137.18920890000004,-1.991025599999944],[137.19273370000008,-1.992565599999978],[137.189682,-2.000485399999945],[137.19285580000007,-2.001115299999981],[137.19281,-2.003585299999941],[137.1997070000001,-2.008665299999961],[137.20361320000006,-2.013365],[137.20573420000005,-2.020865199999946],[137.20747370000004,-2.020843499999955],[137.2116390000001,-2.024792899999966],[137.21170040000004,-2.029763699999933],[137.21331780000003,-2.0302536],[137.21194450000007,-2.032383699999968],[137.21449280000002,-2.034573499999965],[137.2151794,-2.038213699999972],[137.23104850000004,-2.042668099999958],[137.2318878000001,-2.046613499999978],[137.230484,-2.051891299999966],[137.22760010000002,-2.053101499999968],[137.226715,-2.055700099999967],[137.22216790000004,-2.057975099999965],[137.22135920000005,-2.059955099999968],[137.21643060000008,-2.060065],[137.21141050000006,-2.062905099999966],[137.20574950000002,-2.064065],[137.20509330000004,-2.068294299999934],[137.20172120000007,-2.070222099999967],[137.19989010000006,-2.070179499999938],[137.1957397000001,-2.066543799999977],[137.18930050000006,-2.077133699999933],[137.18574520000004,-2.079579099999933],[137.18145750000008,-2.077204],[137.18135070000005,-2.080631699999969],[137.17822260000003,-2.080966199999978],[137.1752166000001,-2.078084],[137.17324830000007,-2.081614],[137.17515560000004,-2.083784099999946],[137.169815,-2.088261599999953],[137.1683044,-2.086174],[137.1664886000001,-2.087303899999938],[137.167221,-2.089304],[137.16558840000005,-2.091944],[137.1589203000001,-2.095053899999925],[137.15449520000004,-2.103107699999953],[137.14939880000009,-2.102198099999953],[137.14193720000003,-2.098057],[137.133316,-2.100972699999943],[137.12904350000008,-2.099587199999974],[137.12748720000002,-2.101427099999967],[137.1234436000001,-2.100087199999962],[137.12176510000006,-2.102087],[137.12255860000005,-2.104337499999929],[137.11982720000003,-2.1079779],[137.11502070000006,-2.105837099999974],[137.11398310000004,-2.108335499999953],[137.1087341000001,-2.111041499999942],[137.10733030000006,-2.110924699999941],[137.10694880000005,-2.108663299999932],[137.10226440000008,-2.1109662],[137.0920410000001,-2.107737799999938],[137.09201050000001,-2.1032314],[137.09010310000008,-2.101559399999928],[137.08557130000008,-2.100618599999962],[137.07691950000003,-2.103472199999942],[137.07223510000006,-2.103158899999926],[137.06665040000007,-2.099857099999952],[137.0614624000001,-2.100127499999928],[137.05799860000002,-2.0983949],[137.05583190000004,-2.10253],[137.05058280000003,-2.101906299999939],[137.04722590000006,-2.104446199999927],[137.0428161000001,-2.104686299999969],[137.0435791000001,-2.105466099999944],[137.0421295000001,-2.105436099999963],[137.0389709000001,-2.113487499999962],[137.03112790000012,-2.114335799999935],[137.02877810000007,-2.1168082],[137.02481080000007,-2.114786399999957],[137.02050780000002,-2.118296399999963],[137.01467890000004,-2.118256599999938],[137.000061,-2.129096699999934],[136.987091,-2.128556699999933],[136.97686770000007,-2.132746199999929],[136.975708,-2.131236299999955],[136.97038270000007,-2.131454899999937],[136.9624328000001,-2.1285963],[136.9586944,-2.125516399999981],[136.95561220000002,-2.125066299999958],[136.95481870000003,-2.126650299999937],[136.9514160000001,-2.126979099999971],[136.94226070000002,-2.1217413],[136.93785090000006,-2.128786599999955],[136.94110100000012,-2.132106299999975],[136.94085690000009,-2.134176199999956],[136.94436640000004,-2.140186299999925],[136.9424438000001,-2.140626399999974],[136.93876650000004,-2.146746399999927],[136.93507440000008,-2.147977599999933],[136.93244930000003,-2.151126399999953],[136.9249115,-2.150636399999939],[136.92530820000002,-2.1519663],[136.9218750000001,-2.155516399999954],[136.9183349000001,-2.164796599999931],[136.91564940000012,-2.165228899999931],[136.9152527000001,-2.170395799999937],[136.91189570000006,-2.1741776],[136.91186520000008,-2.178599599999927],[136.90856930000007,-2.179721399999949],[136.90411370000004,-2.177321699999936],[136.90168760000006,-2.178173799999968],[136.89614860000006,-2.176199899999972],[136.8930511000001,-2.1763453],[136.8938141000001,-2.177853599999935],[136.89025880000008,-2.173515099999975],[136.88262940000004,-2.177594699999929],[136.8807220000001,-2.17769],[136.8781738,-2.175483899999961],[136.87451170000008,-2.175564],[136.86477660000003,-2.183934],[136.86273190000009,-2.181694],[136.85696410000003,-2.183114099999955],[136.85281370000007,-2.189824],[136.84980770000004,-2.192054],[136.84938050000005,-2.190484099999935],[136.8469391000001,-2.192044],[136.845581,-2.190424],[136.84182740000006,-2.195564],[136.83905030000005,-2.195024],[136.8376922000001,-2.196379399999955],[136.83612060000007,-2.194785599999932],[136.83479310000007,-2.182585499999959],[136.83752440000012,-2.174695499999928],[136.83670040000004,-2.172817699999939],[136.834198,-2.172701099999927],[136.8258819,-2.176778599999977],[136.811615,-2.174403199999972],[136.80804440000009,-2.174646899999971],[136.8069763000001,-2.176330299999961],[136.8225874000001,-2.186435899999935],[136.82263380000006,-2.190361],[136.82717760000003,-2.194517799999971],[136.8250859000001,-2.200241099999971],[136.825747,-2.20356],[136.83493040000008,-2.213204099999928],[136.83936770000003,-2.213408199999947],[136.83867610000004,-2.2194305],[136.84116160000008,-2.219684299999926],[136.84399240000005,-2.217569499999968],[136.84602430000007,-2.220863799999961],[136.85056020000002,-2.220201699999961],[136.85123420000002,-2.222373],[136.85350820000008,-2.223390799999947],[136.85570870000004,-2.222766199999967],[136.85721390000003,-2.219763599999965],[136.86037980000003,-2.224400599999967],[136.8640101000001,-2.221776299999931],[136.86698750000005,-2.228488599999935],[136.8674099000001,-2.234571],[136.86965940000005,-2.235609099999976],[136.87162610000007,-2.231723299999942],[136.8737943000001,-2.231403299999954],[136.87325610000005,-2.238873],[136.87449370000002,-2.241603099999963],[136.8779270000001,-2.243367599999942],[136.8781719000001,-2.248074699999961],[136.88123030000008,-2.248827099999971],[136.884985,-2.247637599999962],[136.88553810000008,-2.249775299999953],[136.8837284000001,-2.2522391],[136.88946210000006,-2.254758599999946],[136.888614,-2.260310799999957],[136.89183050000008,-2.265316499999926],[136.89158630000009,-2.271344399999975],[136.8943302,-2.272436599999935],[136.8961951000001,-2.270513799999947],[136.89379770000005,-2.265100599999926],[136.89951250000001,-2.269354],[136.90227290000007,-2.264808499999958],[136.90662650000002,-2.276487399999951],[136.91117530000008,-2.278065899999945],[136.91003610000007,-2.282689199999936],[136.91390990000002,-2.285351699999978],[136.91368010000008,-2.286641199999963],[136.9047088000001,-2.283356],[136.90379330000007,-2.285272599999928],[136.9058778000001,-2.289622299999962],[136.90293880000002,-2.294199699999979],[136.90941550000002,-2.298223599999972],[136.91383440000004,-2.294262699999933],[136.91636270000004,-2.293745399999978],[136.91868890000012,-2.295414699999981],[136.92048550000004,-2.299602899999968],[136.92650850000007,-2.300640499999929],[136.9262758000001,-2.302066499999967],[136.9213933000001,-2.304357499999981],[136.9206478000001,-2.309848299999942],[136.91426400000012,-2.319232],[136.91850970000007,-2.328033199999936],[136.91585190000012,-2.3287536],[136.9151217000001,-2.331947299999968],[136.91921460000003,-2.33398],[136.9213257,-2.338863799999956],[136.92483220000008,-2.334891],[136.93137550000006,-2.338145499999939],[136.9368588000001,-2.339093799999944],[136.93814080000004,-2.340010899999925],[136.938034,-2.347676499999977],[136.93739330000005,-2.349482199999954],[136.93364640000004,-2.346990199999937],[136.93106020000005,-2.347404099999949],[136.92672070000003,-2.350241],[136.92778010000006,-2.356190899999945],[136.93174740000006,-2.358993299999952],[136.9325338000001,-2.361211699999956],[136.93107910000003,-2.362013199999978],[136.92485040000008,-2.362403399999948],[136.9204797000001,-2.358242399999938],[136.91565880000007,-2.356372399999941],[136.91537440000002,-2.359399199999928],[136.9099880000001,-2.361353599999973],[136.90935950000005,-2.364420099999961],[136.91214390000005,-2.371814799999925],[136.90792670000008,-2.377205699999934],[136.90792670000008,-2.379519099999925],[136.91323380000006,-2.385370499999965],[136.934054,-2.392854799999952],[136.94072190000009,-2.397889799999973],[136.944396,-2.3947599],[136.9480701000001,-2.396801099999948],[136.94970310000008,-2.398570199999938],[136.94970310000008,-2.401836099999969],[136.9537855000001,-2.403469],[136.95773180000003,-2.411633799999947],[136.96602970000004,-2.414021899999966],[136.9670383,-2.415762699999959],[136.96346660000006,-2.420473],[136.96434020000004,-2.4251809],[136.9692103000001,-2.423291],[136.97082050000006,-2.425573099999951],[136.97429980000004,-2.426114799999937],[136.98431390000007,-2.417974699999945],[136.98562090000007,-2.418047299999955],[136.98776240000007,-2.422156099999938],[136.99497110000004,-2.418861199999981],[136.99752480000006,-2.422868],[137.00227350000011,-2.425603399999943],[137.00660830000004,-2.420431],[137.01296520000005,-2.419880899999953],[137.01992080000002,-2.423878699999932],[137.02583160000006,-2.418022699999938],[137.02928380000003,-2.416728099999943],[137.03084180000008,-2.418327799999929],[137.031589,-2.424563399999954],[137.0307292000001,-2.430221299999971],[137.0351309,-2.427802699999972],[137.036176,-2.429397],[137.03641420000008,-2.434642699999927],[137.03426760000002,-2.438728799999978],[137.03478040000005,-2.440298299999938],[137.040378,-2.441754299999957],[137.03907770000012,-2.448124399999926],[137.03401070000007,-2.448218499999939],[137.03634640000007,-2.449831199999949],[137.03462720000005,-2.453038799999945],[137.03700250000009,-2.455315199999973],[137.03491210000004,-2.458036799999945],[137.03630650000002,-2.460100599999976],[137.04060570000001,-2.455921599999954],[137.04217530000005,-2.456787099999929],[137.04222970000012,-2.460894199999927],[137.04354460000002,-2.461568499999942],[137.04858400000012,-2.457708799999978],[137.04936120000002,-2.462158699999975],[137.05548540000007,-2.464784099999974],[137.05632020000007,-2.467433199999959],[137.0547825000001,-2.469691199999943],[137.0582737000001,-2.470104299999946],[137.05933990000005,-2.475719199999958],[137.06163020000008,-2.477835699999957],[137.0634656000001,-2.476965599999971],[137.06435950000002,-2.479855099999952],[137.06765740000003,-2.480925099999979],[137.0694228000001,-2.480051499999945],[137.07496230000004,-2.4855982],[137.0765097000001,-2.485245299999974],[137.07725520000008,-2.480043399999943],[137.07980190000012,-2.482104699999979],[137.08671270000002,-2.483218],[137.08709710000005,-2.486225399999967],[137.08852610000008,-2.486064499999941],[137.08966170000008,-2.489020899999957],[137.09323670000003,-2.487938799999938],[137.0966099000001,-2.491137],[137.09810430000005,-2.490645699999959],[137.10388360000002,-2.495472899999925],[137.10612060000005,-2.4957061],[137.10576750000007,-2.499429],[137.1071730000001,-2.501501699999949],[137.111094,-2.499592199999938],[137.11366350000003,-2.504775699999925],[137.11003110000001,-2.510956499999963],[137.1121673,-2.513943],[137.11343080000006,-2.511964699999965],[137.11479110000005,-2.5123235],[137.11593030000006,-2.514693199999954],[137.1194977,-2.515310899999974],[137.12074280000002,-2.517456299999935],[137.1229611000001,-2.515350599999977],[137.12489720000008,-2.520687399999929],[137.1256866000001,-2.518407299999978],[137.12788390000003,-2.521021799999971],[137.128463,-2.518545],[137.13098750000006,-2.520531399999925],[137.1371180000001,-2.517840799999931],[137.1392059000001,-2.522983299999964],[137.14082550000012,-2.521899599999927],[137.14318020000007,-2.523027],[137.14285960000007,-2.527057],[137.14563970000006,-2.526289599999927],[137.1488495000001,-2.529816599999947],[137.1474151000001,-2.53249],[137.14905050000004,-2.533377199999961],[137.1490249000001,-2.535274699999945],[137.15167780000002,-2.534943299999952],[137.15463850000003,-2.537779299999954],[137.15504680000004,-2.536282399999948],[137.15681580000012,-2.536826699999949],[137.15858480000009,-2.539276199999961],[137.1611703000001,-2.537643199999934],[137.16770210000004,-2.539276199999961],[137.1736896000001,-2.547304799999949],[137.17777200000012,-2.549754299999961],[137.18335130000003,-2.550434699999926],[137.19069950000005,-2.555469599999981],[137.1930632000001,-2.563691299999959],[137.21337890000007,-2.572393399999953],[137.22253580000006,-2.573011299999962],[137.22325100000012,-2.574312899999939],[137.221887,-2.576668699999971],[137.22357290000002,-2.577601699999946],[137.22656540000003,-2.576932499999941],[137.2275770000001,-2.574928299999954],[137.22999570000002,-2.578279499999951],[137.23161160000006,-2.577811199999928],[137.23059080000007,-2.575886],[137.23685690000002,-2.576108899999952],[137.23705080000002,-2.574255699999981],[137.2398283000001,-2.575442199999941],[137.24026490000006,-2.576664899999969],[137.23765560000004,-2.577460099999939],[137.2368732000001,-2.579391899999962],[137.24070270000004,-2.5810236],[137.24232240000003,-2.585009099999979],[137.245152,-2.584733],[137.24649060000002,-2.587563399999965],[137.2483985,-2.587461299999973],[137.24888050000004,-2.589595799999927],[137.2505493000001,-2.588932299999954],[137.2517478000001,-2.591089299999965],[137.25369010000009,-2.591145],[137.2518023,-2.595784399999957],[137.2549768,-2.599484],[137.25329740000006,-2.602140299999974],[137.25495210000008,-2.603099499999928],[137.25363570000002,-2.603484199999968],[137.25529480000012,-2.604131199999927],[137.2563629000001,-2.602575499999944],[137.2607773000001,-2.606084799999962],[137.2578125000001,-2.608379599999978],[137.262186,-2.610709699999973],[137.26089120000006,-2.612438199999929],[137.26283260000002,-2.614363699999956],[137.26066590000005,-2.616398099999969],[137.26348870000004,-2.616458199999954],[137.2617646000001,-2.619219699999974],[137.2654113000001,-2.624356699999964],[137.264389,-2.625373799999977],[137.2610016000001,-2.622262],[137.261723,-2.625957199999959],[137.2634124000001,-2.627033799999936],[137.26359850000006,-2.630519099999958],[137.26514950000012,-2.627625099999932],[137.26769600000011,-2.631010499999945],[137.26343250000002,-2.637237],[137.2606310000001,-2.638117099999931],[137.26462850000007,-2.653003399999932],[137.263031,-2.6633805],[137.26131380000004,-2.665538599999934],[137.26299730000005,-2.670561299999974],[137.26280210000004,-2.674977499999954],[137.2600708000001,-2.681559299999947],[137.260781,-2.685711899999944],[137.26306150000005,-2.688081699999941],[137.2633819,-2.692868499999975],[137.26641840000002,-2.697536],[137.2861004,-2.714606099999969],[137.28727720000006,-2.719078499999966],[137.28361660000007,-2.720958699999926],[137.28298240000004,-2.723113099999978],[137.2804675000001,-2.720166099999972],[137.27923080000005,-2.720414699999935],[137.279199,-2.7240369],[137.27631910000002,-2.729082499999947],[137.249244,-2.761148699999978],[137.27212140000006,-2.777241599999968],[137.27248970000005,-2.791141799999934],[137.27037240000004,-2.7944558],[137.26678230000005,-2.796296799999936],[137.269104,-2.824096699999927],[137.27551270000004,-2.836608899999931],[137.28491210000004,-2.843078599999956],[137.31909180000002,-2.847778299999959],[137.3231201000001,-2.853088399999933],[137.3247070000001,-2.8527222],[137.32330320000005,-2.8491821],[137.32690430000002,-2.851684599999942],[137.33068850000006,-2.850708],[137.33312990000002,-2.855712899999958],[137.33587650000004,-2.855285599999945],[137.33752440000012,-2.856811499999935],[137.33691410000006,-2.8580933],[137.34130860000005,-2.859985399999971],[137.3442993000001,-2.856689499999959],[137.34472660000006,-2.868103],[137.34570310000004,-2.869079599999964],[137.34991460000003,-2.864685099999974],[137.35351560000004,-2.869995099999926],[137.35107420000008,-2.875488299999972],[137.35192870000003,-2.879577599999948],[137.3544922000001,-2.877624499999968],[137.3579102000001,-2.877319299999954],[137.3599243000001,-2.8789062],[137.35888670000008,-2.8936768],[137.36328130000004,-2.901306199999965],[137.35467530000005,-2.903808599999934],[137.35430910000002,-2.906005899999968],[137.35632320000002,-2.909484899999939],[137.3604736000001,-2.911010699999963],[137.36950680000007,-2.911499],[137.3693237000001,-2.913513199999954],[137.36328130000004,-2.916992199999925],[137.36511230000008,-2.919799799999964],[137.3685303000001,-2.918823199999963],[137.3724976000001,-2.920898399999942],[137.37207030000002,-2.923095699999976],[137.366272,-2.922912599999961],[137.3657227000001,-2.9249878],[137.3704834,-2.930175799999972],[137.36907960000008,-2.931213399999933],[137.3646851000001,-2.930481],[137.36407470000006,-2.931884799999978],[137.368103,-2.9346924],[137.3673096000001,-2.937194799999929],[137.36889650000012,-2.937988299999972],[137.37207030000002,-2.937683099999958],[137.37927250000007,-2.9328003],[137.3803101000001,-2.939697299999978],[137.3776855000001,-2.942077599999948],[137.3779297000001,-2.943908699999952],[137.38287350000007,-2.943481399999939],[137.3842773,-2.945312499999943],[137.38171390000002,-2.947814899999969],[137.3751221000001,-2.949707],[137.371521,-2.947876],[137.36950680000007,-2.9487915],[137.3704834,-2.950927699999966],[137.37707520000004,-2.951293899999939],[137.38208010000005,-2.953979499999946],[137.38250730000004,-2.955993699999965],[137.378479,-2.955810499999927],[137.37707520000004,-2.958007799999962],[137.38044880000007,-2.965819899999929],[137.38334650000002,-2.963939399999958],[137.3857269,-2.964891],[137.3870544,-2.973139299999957],[137.3890838000001,-2.974091499999929],[137.390274,-2.979111399999965],[137.39349360000006,-2.9801805],[137.3954010000001,-2.983046299999955],[137.40539550000005,-2.986133299999949],[137.40789790000008,-2.988519399999973],[137.4163513000001,-2.9894576],[137.41860960000008,-2.993279],[137.42301940000004,-2.994106299999942],[137.4189758000001,-2.997343799999953],[137.4203186000001,-3.007744299999956],[137.42471310000008,-3.005103599999927],[137.4317321000001,-3.006403399999954],[137.43280030000005,-3.0079555],[137.42080680000004,-3.0137219],[137.42616270000008,-3.016819],[137.43186950000006,-3.015849599999967],[137.4338990000001,-3.020987],[137.4393768000001,-3.025219399999969],[137.4392242,-3.028827699999965],[137.4356689000001,-3.030322299999966],[137.4359283000001,-3.031560399999933],[137.43875120000007,-3.032173899999975],[137.44134520000011,-3.036628699999937],[137.43998710000005,-3.037994399999945],[137.4372863000001,-3.036885299999938],[137.43606560000012,-3.037879],[137.43690490000006,-3.040231499999948],[137.4447937000001,-3.041453099999956],[137.44921870000007,-3.039956599999925],[137.45611570000005,-3.049853299999938],[137.45822140000007,-3.050096499999938],[137.45944210000005,-3.046996399999955],[137.4616546000001,-3.047487],[137.46006770000008,-3.051331499999947],[137.4622802,-3.052069899999935],[137.4655914000001,-3.050576],[137.4654693000001,-3.048222099999975],[137.46806330000004,-3.045243],[137.4728698,-3.050188299999945],[137.47544860000005,-3.048571599999946],[137.47532650000005,-3.046217899999931],[137.48330680000004,-3.044205199999965],[137.48541260000002,-3.047421699999973],[137.48393250000004,-3.0499029],[137.48553460000005,-3.050519],[137.48738090000006,-3.050514899999939],[137.49229430000003,-3.046043899999972],[137.4939117,-3.054960199999925],[137.50079340000002,-3.050732599999947],[137.50300590000006,-3.053701199999978],[137.50682060000008,-3.053072899999961],[137.51235960000008,-3.057397099999946],[137.52098080000007,-3.058368399999949],[137.5247955000001,-3.058483599999931],[137.5311584000001,-3.053884],[137.5393524000001,-3.051712299999963],[137.54339590000006,-3.052659299999959],[137.55809190000002,-3.051534899999979],[137.5628316000001,-3.053904699999975],[137.56883520000008,-3.064174099999946],[137.571837,-3.066543899999942],[137.57657670000003,-3.067333899999937],[137.58147440000005,-3.065596],[137.59529510000004,-3.088559399999951],[137.6176604000001,-3.112101799999948],[137.66592220000007,-3.113278899999955],[137.73419510000008,-3.117987399999947],[137.8248331000001,-3.120341599999961],[137.88251190000005,-3.116810299999941],[137.953139,-3.127404299999966],[137.9743271000001,-3.134467],[137.98482360000003,-3.141100799999947],[137.98410650000005,-3.145761499999935],[137.98733320000008,-3.148271199999954],[137.99091840000006,-3.145403],[137.99522060000004,-3.146478599999966],[137.9948621000001,-3.1507808],[137.99665470000002,-3.154007399999955],[138.00705170000003,-3.153290399999946],[138.00991980000003,-3.155441499999938],[138.0095613000001,-3.160460799999953],[138.0066932000001,-3.165121499999941],[138.0070293000001,-3.184750299999962],[138.0137515,-3.1903522],[138.01935330000003,-3.199315099999978],[138.01935330000003,-3.217241],[138.01319130000002,-3.220041899999956],[138.00983,-3.224523399999953],[138.015432,-3.235166899999967],[138.03223750000006,-3.242449299999976],[138.04120050000006,-3.246370599999977],[138.04806270000006,-3.241609],[138.0578660000001,-3.241609],[138.06626870000002,-3.245110099999977],[138.06836940000005,-3.254913399999964],[138.0760719000001,-3.262615899999957],[138.0872756000001,-3.2640163],[138.11038320000011,-3.262615899999957],[138.12788890000002,-3.272419099999979],[138.13349080000012,-3.283622799999932],[138.1457679,-3.2862538],[138.1556617000001,-3.282367],[138.16166870000006,-3.278126799999939],[138.16767570000002,-3.266112799999974],[138.17226920000007,-3.236431399999958],[138.17733140000007,-3.2308466],[138.21531470000002,-3.207726299999933],[138.27476690000003,-3.197817599999951],[138.32724560000008,-3.194438599999955],[138.33917340000005,-3.215983599999959],[138.35733930000004,-3.262224099999969],[138.36559660000012,-3.290298699999937],[138.3804596000001,-3.318373399999928],[138.40688280000006,-3.329933499999925],[138.4696378000001,-3.324979199999973],[138.49771240000007,-3.331585],[138.56273170000009,-3.337540499999932],[138.6466401,-3.309026199999948],[138.68786020000005,-3.288944599999979],[138.73013730000002,-3.285773799999959],[138.792496,-3.3470755],[138.85485470000003,-3.417889699999932],[138.88413720000005,-3.429270599999938],[138.91634780000004,-3.4208678],[138.93035240000006,-3.419467399999974],[138.96606410000004,-3.399860899999965],[138.98987190000003,-3.390057699999943],[139.005277,-3.381655],[139.047991,-3.392858599999954],[139.06479650000006,-3.363449],[139.076216,-3.336019],[139.0756795000001,-3.325279899999941],[139.06898610000007,-3.309379099999944],[139.06734540000002,-3.296507899999938],[139.07434780000006,-3.287342899999942],[139.0835727000001,-3.287657099999933],[139.0825651,-3.3004916],[139.08357020000005,-3.310967799999958],[139.097461,-3.308018499999946],[139.09826150000004,-3.295546599999966],[139.08882130000006,-3.280593899999928],[139.0721182000001,-3.274943199999939],[139.05880720000005,-3.276521899999977],[139.05147190000002,-3.283608399999935],[139.048392,-3.292267899999956],[139.03816040000004,-3.293734],[139.033565,-3.282411399999944],[139.02049840000006,-3.282170399999927],[139.01962240000012,-3.284204],[139.0155638000001,-3.273388899999929],[139.017227,-3.2673418],[139.01890550000007,-3.266850499999975],[139.01753220000012,-3.262393],[139.0208891000001,-3.261113399999942],[139.0217894000001,-3.257353799999976],[139.0202177000001,-3.255568499999924],[139.01606730000003,-3.257539],[139.01567060000002,-3.256350299999951],[139.02090440000006,-3.253491399999973],[139.01725750000003,-3.252493399999935],[139.018051,-3.249426099999937],[139.01243580000005,-3.2496116],[139.0114592000001,-3.248025699999971],[139.01344280000012,-3.243575599999929],[139.012451,-3.243078499999967],[139.01066570000012,-3.245945199999937],[139.00862110000003,-3.242377],[139.009796,-3.240696699999944],[139.01216110000007,-3.241889899999933],[139.0122679000001,-3.238920399999927],[139.01463300000012,-3.238529699999958],[139.0145262000001,-3.237044799999978],[139.0118712000001,-3.237236499999938],[139.0122679000001,-3.2338719],[139.0146483000001,-3.231303399999945],[139.01396160000002,-3.230015],[139.01129130000004,-3.232879899999944],[139.0106962000001,-3.229710799999964],[139.0078429,-3.228714699999955],[139.00706470000011,-3.233959399999947],[139.0035246000001,-3.231278699999962],[139.00679,-3.2268314],[139.0024565000001,-3.223951099999965],[139.0088499000001,-3.220005699999945],[139.00688160000004,-3.218813399999931],[139.0085600000001,-3.215154599999948],[139.00698840000007,-3.214458199999967],[139.0066832000001,-3.217328299999963],[139.00503520000007,-3.217423699999927],[139.0025786000001,-3.209301],[139.00694260000012,-3.205939299999955],[139.00317370000005,-3.203561099999945],[139.00277690000007,-3.200887399999942],[139.0063322000001,-3.200301399999944],[139.00692730000003,-3.197332899999935],[139.00386030000004,-3.198019],[139.00221240000008,-3.196974499999953],[139.0011442000001,-3.1935074],[139.0031126,-3.190641199999959],[139.00862110000003,-3.190257299999928],[139.01246630000003,-3.188385],[139.01444990000005,-3.189379199999962],[139.02142320000007,-3.186127899999974],[139.0162352000001,-3.182651799999974],[139.02183520000006,-3.179496299999926],[139.02282700000012,-3.1771228],[139.0146635000001,-3.174828299999945],[139.01536540000006,-3.172553099999959],[139.0205687,-3.174841199999946],[139.021942,-3.172468399999957],[139.02087390000008,-3.170684299999948],[139.01576220000004,-3.171366],[139.0152739,-3.169682],[139.0182188000001,-3.165926899999931],[139.02136210000003,-3.1669238],[139.02264390000005,-3.1659365],[139.02215560000002,-3.164351499999952],[139.01832560000003,-3.163056399999959],[139.0220640000001,-3.162371599999972],[139.02307110000004,-3.152672799999948],[139.0167692000001,-3.148996599999975],[139.0168761000001,-3.146818899999971],[139.02249130000007,-3.148909799999956],[139.02120960000002,-3.145640399999934],[139.022003,-3.142870199999948],[139.02516160000005,-3.143768099999932],[139.03352340000004,-3.141212499999938],[139.03076160000012,-3.140117399999951],[139.02851850000002,-3.133480299999974],[139.0258635,-3.131099],[139.02607710000007,-3.126545699999951],[139.0280302000001,-3.127341699999931],[139.0287016000001,-3.132194],[139.03009020000002,-3.133384699999965],[139.03245530000004,-3.1334887],[139.032852,-3.131608699999958],[139.02951030000008,-3.127048199999933],[139.02911360000007,-3.125265599999977],[139.03070050000008,-3.124080899999967],[139.035507,-3.129337799999973],[139.0392607000001,-3.129939799999931],[139.0373839,-3.127559899999937],[139.03868090000003,-3.123009199999956],[139.0442961000001,-3.120150299999978],[139.0449827000001,-3.115598199999965],[139.04763780000008,-3.113524899999959],[139.04528790000006,-3.108372199999963],[139.04981980000002,-3.108480899999961],[139.05160510000007,-3.105713099999946],[139.05061320000004,-3.102840199999946],[139.05308520000006,-3.097994599999936],[139.05683880000004,-3.098398699999962],[139.05732710000007,-3.0941431],[139.06037890000005,-3.093159399999934],[139.06048570000007,-3.088804],[139.06658920000007,-3.085748],[139.0681608000001,-3.090602199999978],[139.071121,-3.092785799999945],[139.07180770000002,-3.090411699999947],[139.06994610000004,-3.087536799999953],[139.06925950000004,-3.082189799999981],[139.07339460000003,-3.082594399999948],[139.0748747,-3.084973299999945],[139.0767363000001,-3.083096499999954],[139.07360820000008,-3.078437099999974],[139.074005,-3.076755],[139.08241250000003,-3.075351499999954],[139.0842894000001,-3.076599599999952],[139.0876005,-3.073048799999981],[139.09254440000007,-3.0738282],[139.12307070000008,-3.030798499999946],[139.1259272000001,-3.018658499999958],[139.1268004000001,-3.005684799999926],[139.123596,-2.998435],[139.1269377000001,-2.995930899999962],[139.12265,-2.995444099999929],[139.11708050000004,-2.990639399999964],[139.11921670000004,-2.989332],[139.1193998000001,-2.984813],[139.12065110000003,-2.984456499999965],[139.12356550000004,-2.988916899999936],[139.13015730000006,-2.987567399999932],[139.13284280000005,-2.994605099999944],[139.13636760000009,-2.991571399999941],[139.13670330000002,-2.989220099999955],[139.1324614,-2.985747799999956],[139.1326292000001,-2.983676699999933],[139.13900740000008,-2.983118499999932],[139.1403196000001,-2.976288599999975],[139.13421610000012,-2.975559],[139.1359556000001,-2.973320199999932],[139.1401518,-2.974441],[139.1420591000001,-2.973545799999954],[139.13803080000002,-2.969625699999938],[139.13298020000002,-2.970184099999926],[139.1353911000001,-2.967273699999964],[139.1409453000001,-2.968506799999943],[139.139572,-2.959324799999933],[139.14538560000005,-2.956303099999957],[139.1398008000001,-2.9498615],[139.13803080000002,-2.941521199999954],[139.1261747000001,-2.933344399999953],[139.12684610000008,-2.928921699999933],[139.12556440000003,-2.92629],[139.11999490000005,-2.932337299999972],[139.1160887000001,-2.932906099999968],[139.113983,-2.932557299999928],[139.11518840000008,-2.9271271],[139.11418130000004,-2.924887399999932],[139.11065660000008,-2.925782399999946],[139.1025999000001,-2.924492399999963],[139.10321030000011,-2.922365199999945],[139.10958840000012,-2.920351499999924],[139.11033610000004,-2.9175589],[139.10888650000004,-2.914990199999977],[139.11187730000006,-2.914990899999964],[139.113632,-2.908522099999971],[139.11758410000004,-2.908808499999964],[139.11392190000004,-2.906667],[139.1114904000001,-2.902840599999934],[138.76653410000006,-2.720812699999954],[138.6705376000001,-2.673811],[138.62121070000012,-2.645908899999938],[138.63566,-2.619667599999957],[138.72135930000002,-2.477665899999977],[138.7203628000001,-2.474842499999966],[138.72185760000002,-2.473679899999979],[138.72218970000006,-2.470026],[138.71986450000009,-2.465375699999925],[138.720861,-2.462386199999969],[138.724681,-2.461555699999963],[138.72733830000004,-2.457071499999927],[138.72684010000012,-2.449929899999972],[138.72152540000002,-2.438636199999962],[138.72135930000002,-2.428339],[138.7241517000001,-2.422549699999934],[138.71445860000006,-2.412359899999956],[138.66676140000004,-2.351081099999931],[138.62989720000007,-2.301120399999945],[138.622188,-2.289275299999929],[138.6204289000001,-2.279341399999964],[138.62032540000007,-2.2773753],[138.62136020000003,-2.277271799999937],[138.61173670000005,-2.2715805],[138.61090880000006,-2.269407399999977],[138.6088393000001,-2.269200499999954],[138.6079079000001,-2.264957799999934],[138.60387230000003,-2.266199599999936],[138.6032514000001,-2.263923],[138.6016992000001,-2.264750899999967],[138.59880180000005,-2.261853499999972],[138.5940418,-2.266717],[138.59042010000007,-2.265682199999958],[138.5853496000001,-2.268786499999976],[138.58286610000005,-2.267130899999927],[138.5792444000001,-2.2681657],[138.57789920000005,-2.273443099999952],[138.57655390000002,-2.2706492],[138.57344960000012,-2.269407399999977],[138.5695174000001,-2.2651648],[138.5695174000001,-2.266717],[138.5652748000001,-2.267544799999939],[138.56186,-2.265889099999924],[138.56061820000002,-2.270959599999969],[138.55720340000005,-2.2660961],[138.55109820000007,-2.270338699999968],[138.54799380000009,-2.267544799999939],[138.54789040000003,-2.265682199999958],[138.5442686,-2.263819599999977],[138.53971550000006,-2.264026499999943],[138.5359903000001,-2.267648299999962],[138.53319640000007,-2.267544799999939],[138.53091990000007,-2.266199599999936],[138.52853990000006,-2.261336099999937],[138.5162259000001,-2.259887399999968],[138.51829550000002,-2.253368199999954],[138.5185024000001,-2.247676899999931],[138.51726070000007,-2.2467456],[138.51146590000008,-2.244986499999925],[138.50505020000003,-2.245193399999948],[138.49615110000002,-2.238156899999979],[138.4921154000001,-2.240329899999949],[138.4905632000001,-2.235569899999973],[138.48280230000012,-2.230499499999951],[138.47017790000007,-2.230292499999962],[138.4691431000001,-2.226567299999942],[138.4715232000001,-2.224187299999926],[138.47762840000007,-2.227705499999956],[138.47297190000006,-2.220979399999976],[138.467384,-2.2195307],[138.46562490000008,-2.221082899999942],[138.46303790000002,-2.217150699999934],[138.46086490000005,-2.219944599999963],[138.45496660000003,-2.222221199999979],[138.45455270000002,-2.220979399999976],[138.4579675000001,-2.219013299999972],[138.45724310000003,-2.216736799999978],[138.45217270000012,-2.217047199999968],[138.44989610000005,-2.214770699999974],[138.44555,-2.2139429],[138.4407900000001,-2.214770699999974],[138.440583,-2.211562899999933],[138.44668830000012,-2.208458499999949],[138.44410130000006,-2.204215899999951],[138.44254910000006,-2.2047333],[138.4423422000001,-2.207837599999948],[138.43985870000006,-2.2102177],[138.43385690000002,-2.2070098],[138.43095950000009,-2.203284599999961],[138.42464730000006,-2.2070098],[138.42506130000004,-2.202456799999936],[138.43044210000005,-2.200904599999944],[138.43095950000009,-2.199662799999942],[138.43013170000006,-2.197800199999961],[138.4283726000001,-2.197489799999971],[138.42495780000002,-2.199973299999954],[138.42071520000002,-2.197386299999948],[138.41947340000002,-2.198628],[138.42164650000007,-2.202249799999947],[138.42009430000007,-2.207941099999971],[138.41761080000003,-2.2081481],[138.4174038000001,-2.203802],[138.4127473000001,-2.201422],[138.409229,-2.201835899999935],[138.40757340000005,-2.199869799999931],[138.409436,-2.193661099999929],[138.4147134000001,-2.189521899999932],[138.41295430000002,-2.187555799999927],[138.4111951000001,-2.187762799999973],[138.40633160000004,-2.192005399999971],[138.40364120000004,-2.191591499999959],[138.4034342000001,-2.184761899999955],[138.4007438000001,-2.178967099999966],[138.39784640000005,-2.179691499999933],[138.39660460000005,-2.183623699999941],[138.39857070000005,-2.190349799999979],[138.3946386,-2.191488],[138.39225850000003,-2.190142799999933],[138.39029240000002,-2.184555],[138.38449760000003,-2.183934099999931],[138.3832559000001,-2.182175],[138.3835663000001,-2.177932299999952],[138.38170370000012,-2.176794099999938],[138.37963420000005,-2.177208],[138.37963420000005,-2.184451499999966],[138.37497760000008,-2.184141],[138.3739428,-2.189211499999942],[138.37259760000006,-2.189728899999977],[138.36876890000008,-2.185175799999968],[138.36411240000007,-2.174621],[138.3614219000001,-2.175862799999948],[138.36007670000004,-2.180312299999969],[138.35676540000009,-2.179381],[138.35852450000004,-2.171930599999939],[138.3568689000001,-2.169343599999934],[138.3537645,-2.169654],[138.35231580000004,-2.176897499999939],[138.34838360000003,-2.177621899999963],[138.3474523000001,-2.174828],[138.34838360000003,-2.170171399999958],[138.3432097000001,-2.167274],[138.34238190000008,-2.1649975],[138.34496880000006,-2.163962699999956],[138.35003930000005,-2.1670671],[138.35190190000003,-2.166860099999951],[138.3521088000001,-2.163445299999978],[138.3494184000001,-2.160341],[138.35014280000007,-2.157754],[138.35355750000008,-2.158374899999956],[138.35645490000002,-2.163962699999956],[138.3579036000001,-2.164687099999981],[138.3594558000001,-2.162514],[138.3588350000001,-2.157961],[138.34496880000006,-2.155270499999972],[138.3440375,-2.153821799999946],[138.344141,-2.144301799999937],[138.34579670000005,-2.143474],[138.35066010000003,-2.144612199999926],[138.35200540000005,-2.142439199999956],[138.34724540000002,-2.137472199999934],[138.34051920000002,-2.141197399999953],[138.3374149000001,-2.139955699999973],[138.33255140000006,-2.1331261],[138.33265490000008,-2.13116],[138.33565570000007,-2.130746099999953],[138.34217490000003,-2.136023499999965],[138.34486530000004,-2.1343678],[138.33337920000008,-2.125882599999954],[138.33058530000005,-2.125572199999965],[138.32427310000003,-2.129193899999962],[138.32282440000006,-2.12878],[138.3220999,-2.125365199999976],[138.3281018,-2.121226099999944],[138.32623920000003,-2.117604299999925],[138.3159948000001,-2.120501699999977],[138.3121661,-2.119466899999964],[138.31247650000012,-2.116466],[138.31878870000003,-2.112326899999971],[138.3257218000001,-2.112430399999937],[138.32675660000007,-2.111188599999934],[138.3256183000001,-2.108705099999952],[138.322514,-2.108187799999939],[138.31620180000004,-2.104048599999942],[138.31702960000007,-2.099909499999967],[138.32448010000007,-2.100012899999967],[138.3253079000001,-2.098667699999964],[138.32510090000005,-2.097426],[138.32054790000007,-2.095666799999947],[138.31444260000012,-2.098046799999963],[138.31454610000003,-2.0932868],[138.3182713000001,-2.088423299999931],[138.31547740000008,-2.086767699999939],[138.31071740000004,-2.086871199999962],[138.30833740000003,-2.088009399999976],[138.3051296000001,-2.092666],[138.30274960000008,-2.0911138],[138.30274960000008,-2.088423299999931],[138.305647,-2.085629399999959],[138.30575040000008,-2.082318099999952],[138.30274960000008,-2.081490299999928],[138.2980930000001,-2.085629399999959],[138.295713,-2.085939899999971],[138.29240170000003,-2.081386799999962],[138.29405740000004,-2.077868499999965],[138.30150780000008,-2.076005899999927],[138.30657830000007,-2.077247599999964],[138.31071740000004,-2.068762399999969],[138.30544,-2.067003299999953],[138.30150780000008,-2.061829299999943],[138.29291910000006,-2.055103199999962],[138.29105650000008,-2.055310199999951],[138.2896078000001,-2.057586699999945],[138.29084950000004,-2.064105899999959],[138.28971120000006,-2.065347599999939],[138.28681380000012,-2.0638989],[138.2821573000001,-2.052930199999935],[138.28940080000007,-2.048998],[138.28929730000004,-2.045169299999941],[138.28805560000012,-2.044444899999974],[138.28060510000012,-2.049515399999962],[138.26570420000007,-2.051274499999977],[138.26301380000007,-2.049515399999962],[138.26322070000003,-2.044962299999952],[138.261772,-2.042271899999946],[138.25980590000006,-2.041858],[138.25545980000004,-2.044755399999929],[138.2533903000001,-2.043617099999949],[138.25432160000003,-2.039995399999952],[138.26053030000003,-2.037201399999958],[138.2603233000001,-2.034304],[138.25514940000005,-2.033579699999962],[138.24821630000008,-2.035442299999943],[138.24914760000001,-2.033062299999926],[138.25235550000002,-2.0317171],[138.25370070000008,-2.023542299999974],[138.2607372000001,-2.026750099999958],[138.26218590000008,-2.025715299999945],[138.261772,-2.021886599999959],[138.25732240000002,-2.018575299999952],[138.25711550000005,-2.016298799999959],[138.26125460000003,-2.010193499999957],[138.26063380000005,-2.004709199999979],[138.26249640000003,-2.000466499999959],[138.26115120000009,-1.998500399999955],[138.2564946000001,-1.998293499999932],[138.25566680000009,-1.997051699999929],[138.26011640000002,-1.990429099999972],[138.25970250000012,-1.988980399999946],[138.2529763000001,-1.990118699999925],[138.2519416,-1.993016099999977],[138.25421810000012,-1.997155199999952],[138.25090680000005,-1.999121299999956],[138.24531890000003,-1.995396099999937],[138.2448015000001,-1.991877799999941],[138.247285,-1.988152599999978],[138.25307980000002,-1.988256099999944],[138.2526659,-1.984944699999971],[138.25090680000005,-1.983496],[138.2463537000001,-1.9842204],[138.2421111000001,-1.991360399999962],[138.23962760000006,-1.991878],[138.23797190000005,-1.990532599999938],[138.23610930000007,-1.982254299999965],[138.23217710000006,-1.979874299999949],[138.21830060000002,-1.976939899999934],[138.20321480000007,-1.971073099999956],[138.179748,-1.965206399999943],[138.1504145,-1.954311099999927],[138.13700490000008,-1.940063399999929],[138.13532870000006,-1.9258157],[138.13532930000008,-1.907377499999939],[138.1286238,-1.888101199999937],[138.13113810000004,-1.853739],[138.14442730000007,-1.826829399999951],[138.14422030000003,-1.815653699999928],[138.14515160000008,-1.813895399999979],[138.150843,-1.812652899999932],[138.150636,-1.8101694],[138.14773860000003,-1.808306799999968],[138.14763510000012,-1.806547599999931],[138.1511534000001,-1.804581499999927],[138.15715520000003,-1.8090311],[138.1589143000001,-1.806547599999931],[138.160363,-1.801477199999965],[138.15870730000006,-1.796717199999932],[138.1592247000001,-1.793509299999926],[138.15612040000008,-1.789266699999928],[138.15808650000008,-1.786990199999934],[138.1647091000001,-1.788852799999972],[138.16615780000006,-1.785645],[138.1651230000001,-1.783678899999927],[138.15684470000008,-1.782851],[138.1562239000001,-1.780781499999932],[138.15881080000008,-1.775607499999978],[138.15508560000012,-1.772710099999927],[138.15818990000002,-1.769398799999976],[138.1585004000001,-1.764535299999977],[138.16564040000003,-1.762051799999938],[138.16812390000007,-1.757498799999951],[138.16957260000004,-1.747978699999976],[138.1744361000001,-1.744460499999946],[138.17422910000005,-1.741563099999951],[138.17143520000002,-1.738976099999945],[138.17102130000012,-1.732974299999967],[138.16574390000005,-1.731111699999929],[138.16915870000003,-1.724489099999971],[138.16501950000008,-1.7213847],[138.1732978000001,-1.717452599999945],[138.17474650000008,-1.714451699999927],[138.17184910000003,-1.712071699999967],[138.16657170000008,-1.710726399999942],[138.16025950000005,-1.701930799999957],[138.16419170000006,-1.6998612],[138.16295,-1.697998599999949],[138.1608804000001,-1.6977916],[138.1624326000001,-1.695308099999977],[138.1616047000001,-1.690444599999978],[138.16491610000003,-1.689927199999943],[138.16802040000005,-1.693549],[138.17050390000009,-1.692617699999971],[138.17009,-1.689823799999942],[138.16460560000007,-1.685684599999945],[138.16357080000012,-1.6818559],[138.1670891000001,-1.681131599999958],[138.1713317000001,-1.6839255],[138.1732978000001,-1.678751599999941],[138.17547090000005,-1.678958499999965],[138.1784718,-1.6818559],[138.17940310000006,-1.6807176],[138.1749116000001,-1.673819599999945],[138.16849890000003,-1.651100099999951],[138.1681324000001,-1.634610199999941],[138.17037960000005,-1.630883599999947]]]]},"properties":{"shapeName":"Mamberamo Raya","shapeISO":"","shapeID":"22746128B97978278502677","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[138.97777540000004,-3.922503699999936],[139.04789950000009,-3.897088],[139.03837590000012,-3.867133499999966],[139.0340348000001,-3.841810399999929],[139.0347584000001,-3.815763799999957],[139.0439831000001,-3.778404499999965],[139.05267980000008,-3.784304899999938],[139.06386120000002,-3.7849261],[139.09212530000002,-3.772812899999963],[139.09989020000012,-3.767222199999935],[139.107655,-3.768154],[139.1210106000001,-3.756040799999937],[139.133745,-3.748897099999965],[139.1495853,-3.7439276],[139.16294090000008,-3.742374599999948],[139.18623550000007,-3.7429958],[139.19896990000007,-3.746412299999974],[139.20456060000004,-3.750760699999944],[139.214189,-3.753556],[139.22412810000003,-3.7588361],[139.24438910000003,-3.760981299999969],[139.2609397000001,-3.758682599999929],[139.26645660000008,-3.753165799999977],[139.2761111000001,-3.747648899999945],[139.2793293000001,-3.737074899999925],[139.2761111000001,-3.7076515],[139.2793293000001,-3.696158],[139.28300720000004,-3.690181399999972],[139.27661870000009,-3.669695399999966],[139.28624700000012,-3.669384799999932],[139.3027085000001,-3.673422599999981],[139.30892040000003,-3.677770899999928],[139.32973030000005,-3.685224199999936],[139.33159390000003,-3.669384799999932],[139.33563160000006,-3.656339799999955],[139.36389570000006,-3.635219399999926],[139.3915386000001,-3.6063341],[139.40644720000012,-3.574342799999954],[139.4151438,-3.564714399999957],[139.4542788000001,-3.474641899999938],[139.45722610000007,-3.459576299999981],[139.43641460000003,-3.462996],[139.4260233000001,-3.446310399999959],[139.40849930000002,-3.443657099999939],[139.38968050000005,-3.443473799999936],[139.3741176000001,-3.434475599999928],[139.36613940000007,-3.436169899999925],[139.361486,-3.449146299999938],[139.38012670000012,-3.463756099999955],[139.3710132000001,-3.475324299999954],[139.33786510000004,-3.4848512],[139.33228680000002,-3.474403099999961],[139.33347930000002,-3.465248],[139.33749710000006,-3.455729199999951],[139.32842490000007,-3.445982399999934],[139.31789980000008,-3.450952399999949],[139.30678330000012,-3.4708008],[139.27929540000002,-3.467598],[139.27085380000005,-3.4397123],[139.25536350000004,-3.4547446],[139.2503081000001,-3.445127199999945],[139.25090450000005,-3.433767299999943],[139.25801080000008,-3.427796499999943],[139.27160630000003,-3.427747199999942],[139.27287890000002,-3.420592799999952],[139.2658365000001,-3.416370699999959],[139.25101530000006,-3.416756799999973],[139.2321234000001,-3.432931799999949],[139.21335770000007,-3.439866699999925],[139.20358040000008,-3.4469219],[139.19459560000007,-3.4477774],[139.1876493000001,-3.426618099999928],[139.18183260000012,-3.423266799999965],[139.1675166000001,-3.431088399999965],[139.14620890000003,-3.426766599999951],[139.1381967000001,-3.419190199999946],[139.140366,-3.409344399999952],[139.14723230000004,-3.400360499999977],[139.14834230000008,-3.3898123],[139.14545060000012,-3.3778841],[139.1479471,-3.369109599999945],[139.14039530000002,-3.361746799999935],[139.1276405000001,-3.355370899999969],[139.12140990000012,-3.363865199999964],[139.1269095,-3.369884899999931],[139.1251903000001,-3.383814],[139.11209350000001,-3.388483099999974],[139.106155,-3.379949599999975],[139.10718630000008,-3.371946199999968],[139.10443010000006,-3.354976699999952],[139.10460910000006,-3.338176799999928],[139.1000822000001,-3.328748],[139.08913,-3.334099099999946],[139.076216,-3.336019],[139.06479650000006,-3.363449],[139.047991,-3.392858599999954],[139.005277,-3.381655],[138.98987190000003,-3.390057699999943],[138.96606410000004,-3.399860899999965],[138.93035240000006,-3.419467399999974],[138.91634780000004,-3.4208678],[138.88413720000005,-3.429270599999938],[138.85485470000003,-3.417889699999932],[138.792496,-3.3470755],[138.78015720000008,-3.367316899999935],[138.78633280000008,-3.405914299999949],[138.76626210000006,-3.452231299999937],[138.75699870000005,-3.504723799999965],[138.75545490000002,-3.563392],[138.75928670000008,-3.642449],[138.7501327000001,-3.6466099],[138.74014670000008,-3.655764199999965],[138.6960408000001,-3.703198399999962],[138.659434,-3.707992899999965],[138.65218620000007,-3.722541],[138.60940530000005,-3.722558799999945],[138.60782050000012,-3.726358499999947],[138.60790810000003,-3.752624199999957],[138.6113253000001,-3.784304899999938],[138.6240590000001,-3.781198899999936],[138.6422470000001,-3.780992],[138.6796845,-3.785557499999925],[138.71364890000007,-3.787746599999934],[138.73767720000012,-3.797148899999968],[138.7570515000001,-3.810579699999948],[138.7842654000001,-3.8231966],[138.804887,-3.7596375],[138.8236223,-3.7661531],[138.86027830000012,-3.784073899999953],[138.87129240000002,-3.786479],[138.8905493000001,-3.794865099999924],[138.90683580000007,-3.7975791],[138.90173140000002,-3.803468],[138.89991940000004,-3.810716],[138.89810740000007,-3.822796],[138.89991940000004,-3.842728],[138.89448310000012,-3.85964],[138.90600260000008,-3.876661499999955],[138.918968,-3.899814],[138.94258360000003,-3.903518399999939],[138.96388390000004,-3.911853299999962],[138.97777540000004,-3.922503699999936]]]},"properties":{"shapeName":"Mamberamo Tengah","shapeISO":"","shapeID":"22746128B52085191546449","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[118.89061430000004,-2.651508299999932],[118.89453120000007,-2.642636],[118.89526930000011,-2.633671399999969],[118.89816460000009,-2.630967099999964],[118.89250070000003,-2.613534799999968],[118.89105030000007,-2.613051],[118.889225,-2.613215799999978],[118.87941150000006,-2.622508599999946],[118.8782983000001,-2.630997399999956],[118.87986030000002,-2.634234799999945],[118.879119,-2.641147599999954],[118.8819727,-2.646435],[118.88782540000011,-2.653586],[118.88962960000003,-2.653626499999973],[118.89061430000004,-2.651508299999932]]],[[[119.12479840000003,-2.474362],[119.12441440000009,-2.470545099999924],[119.12001680000003,-2.469100099999935],[119.12036890000002,-2.4713579],[119.12479840000003,-2.474362]]],[[[117.3806545000001,-2.272107799999958],[117.37976580000009,-2.266567799999962],[117.37434960000007,-2.264814799999954],[117.37077090000002,-2.269371099999944],[117.37077160000001,-2.272018099999968],[117.37346510000009,-2.275649299999941],[117.3797684000001,-2.276540199999943],[117.3806545000001,-2.272107799999958]]],[[[117.31767090000005,-2.268661],[117.320356,-2.2569722],[117.31498020000004,-2.255101599999932],[117.31051530000002,-2.258679699999959],[117.30683660000011,-2.265086099999962],[117.31229610000003,-2.2714074],[117.31767090000005,-2.268661]]],[[[119.67433580000011,-2.21033],[119.65155240000001,-2.197685299999932],[119.6523611,-2.191104],[119.63896120000004,-2.173707699999966],[119.63892520000002,-2.1528751],[119.63727770000003,-2.146846799999935],[119.63228320000007,-2.145459099999925],[119.6096295000001,-2.148799399999973],[119.52064340000004,-2.144287599999927],[119.51432480000005,-2.144766499999946],[119.50843220000002,-2.148122299999955],[119.50432630000012,-2.145831399999963],[119.49922720000006,-2.146375199999966],[119.487098,-2.140490099999965],[119.47831210000004,-2.139784],[119.47742970000002,-2.142508599999928],[119.47473960000002,-2.141596799999945],[119.47349960000008,-2.142714199999944],[119.474944,-2.144038499999965],[119.47076130000005,-2.145201799999938],[119.471111,-2.146599599999945],[119.46845470000005,-2.149459399999955],[119.47020970000005,-2.151441899999952],[119.46763810000004,-2.151803],[119.46666720000007,-2.154793799999936],[119.46893680000005,-2.1596532],[119.46529830000009,-2.1584546],[119.46459870000001,-2.162765499999978],[119.461406,-2.1645],[119.46149720000005,-2.166447],[119.45844650000004,-2.167050399999937],[119.45763860000011,-2.169357299999945],[119.45608930000003,-2.168151199999954],[119.45606750000002,-2.1721457],[119.45251830000007,-2.172045],[119.45153620000008,-2.174987],[119.44580250000001,-2.171865099999934],[119.445853,-2.174083699999926],[119.44245580000006,-2.176159],[119.44340060000002,-2.177892199999974],[119.44060050000007,-2.178939599999978],[119.4415246000001,-2.181310599999961],[119.43924430000004,-2.182124499999929],[119.442373,-2.184260399999971],[119.44064760000003,-2.184417599999961],[119.43986770000004,-2.188238],[119.43777010000008,-2.187741],[119.43701680000004,-2.191965399999958],[119.43448540000009,-2.1916995],[119.43391410000004,-2.194092299999966],[119.4291965000001,-2.193617699999947],[119.42804380000007,-2.192192199999965],[119.42608910000001,-2.192889799999932],[119.42595270000004,-2.191482],[119.42425180000009,-2.191458799999964],[119.42101580000008,-2.188156299999946],[119.42052710000007,-2.191224699999964],[119.41856890000008,-2.190891599999929],[119.41818050000006,-2.187328199999968],[119.41382680000004,-2.187427099999979],[119.41165710000007,-2.184715399999959],[119.41054150000002,-2.187254099999961],[119.40756090000002,-2.18912],[119.40637090000007,-2.188408199999969],[119.404156,-2.190771],[119.40210090000005,-2.189979599999958],[119.39792160000002,-2.193399299999953],[119.39724500000011,-2.191497399999946],[119.39538890000006,-2.191699],[119.39476160000004,-2.194640399999969],[119.39417360000004,-2.193284799999958],[119.39041580000003,-2.194011699999976],[119.39121740000007,-2.195979499999964],[119.38517650000006,-2.195772499999975],[119.38400460000003,-2.194213799999943],[119.379438,-2.193352],[119.37966920000008,-2.192081899999948],[119.3731024000001,-2.193830399999968],[119.37520010000003,-2.1950119],[119.37414990000002,-2.195817399999953],[119.37197290000006,-2.191814],[119.36877330000004,-2.193872699999929],[119.37025990000006,-2.195971699999973],[119.367688,-2.197556799999973],[119.36875110000005,-2.199253],[119.36645580000004,-2.197310899999934],[119.36588960000006,-2.198242199999925],[119.36776630000008,-2.201496899999938],[119.36376860000007,-2.200043699999981],[119.36322960000007,-2.204931199999976],[119.3614622,-2.204341699999929],[119.3612247000001,-2.205746199999965],[119.35805970000001,-2.206949099999974],[119.35727830000008,-2.204792599999962],[119.357357,-2.208230899999933],[119.35482310000009,-2.207421599999975],[119.3553710000001,-2.208836099999928],[119.35345,-2.204142899999965],[119.35002010000005,-2.202688699999953],[119.34900770000002,-2.2007864],[119.344557,-2.205510899999979],[119.34285390000002,-2.205640499999959],[119.3431045000001,-2.203657299999975],[119.34148630000004,-2.205177299999946],[119.3411880000001,-2.202660399999957],[119.33942390000004,-2.204207399999973],[119.33998420000012,-2.201633699999945],[119.3348145000001,-2.202969199999927],[119.33509360000005,-2.201382799999976],[119.33315290000007,-2.202518699999928],[119.33331410000005,-2.205326299999967],[119.33174150000002,-2.205095399999948],[119.33275050000009,-2.207531199999949],[119.32908580000003,-2.204581],[119.32792960000006,-2.206994299999963],[119.33037810000008,-2.206834799999967],[119.32837020000011,-2.208523399999933],[119.329393,-2.210397299999954],[119.3267988,-2.208733299999949],[119.3259786000001,-2.212053599999933],[119.32244220000007,-2.208792099999926],[119.32246970000006,-2.211541],[119.32056550000004,-2.2119585],[119.32175510000002,-2.213361099999929],[119.31741080000006,-2.216437299999939],[119.3184619000001,-2.218366499999945],[119.31538590000002,-2.216530899999952],[119.31749390000004,-2.221856499999944],[119.3138828000001,-2.2218],[119.31539380000004,-2.223278],[119.31314320000001,-2.223356199999955],[119.31346640000004,-2.224425499999938],[119.31596480000007,-2.2246704],[119.31490380000002,-2.226239599999928],[119.31287450000002,-2.225496299999975],[119.31317530000001,-2.2280586],[119.31055750000007,-2.226908899999955],[119.31057420000002,-2.2253756],[119.30859770000006,-2.226784399999929],[119.30728050000005,-2.224086499999942],[119.30466530000001,-2.227712299999951],[119.304604,-2.224313099999961],[119.30622710000011,-2.222747199999958],[119.30229190000011,-2.225154499999974],[119.30391930000008,-2.226989899999978],[119.30115750000004,-2.225302099999965],[119.30024260000005,-2.228461399999958],[119.29528410000012,-2.225328899999965],[119.29507230000002,-2.227408499999967],[119.29321530000004,-2.225802299999941],[119.29479680000009,-2.224579199999937],[119.29332190000002,-2.223572],[119.29236350000008,-2.2244711],[119.290566,-2.222510299999954],[119.2921682000001,-2.220986599999947],[119.28950310000005,-2.219568299999935],[119.28914750000001,-2.224068],[119.28760230000012,-2.2229854],[119.28460230000007,-2.225146099999961],[119.2857682,-2.227487399999973],[119.284348,-2.229098399999941],[119.28577170000005,-2.229783699999928],[119.28406310000003,-2.231264299999964],[119.28315870000006,-2.2296662],[119.28377770000009,-2.233084],[119.28076360000011,-2.2321253],[119.28109080000002,-2.233275299999946],[119.27864430000011,-2.2326197],[119.27641850000009,-2.234763599999951],[119.27852930000006,-2.236394099999927],[119.2764661000001,-2.237089499999968],[119.2776493,-2.238607599999966],[119.27476650000006,-2.238378299999965],[119.27595090000011,-2.240654099999972],[119.27416,-2.243037399999935],[119.273004,-2.241093599999942],[119.266555,-2.246545699999956],[119.2650172000001,-2.245858399999975],[119.2652743000001,-2.243955299999925],[119.26164410000001,-2.242423199999962],[119.26215860000002,-2.247266099999933],[119.2591910000001,-2.252282799999932],[119.25720640000009,-2.251594799999964],[119.25374170000009,-2.253285199999937],[119.25202050000007,-2.263421799999946],[119.23318250000011,-2.268256],[119.22910020000006,-2.267912899999942],[119.22893370000008,-2.271586499999955],[119.231292,-2.271704499999942],[119.23245570000006,-2.273527399999978],[119.22813410000003,-2.278515699999957],[119.22634890000006,-2.286001099999964],[119.22408710000002,-2.2835585],[119.20426680000003,-2.2905358],[119.20585970000002,-2.301535299999955],[119.20417740000005,-2.302236799999946],[119.20479990000001,-2.303302699999961],[119.198244,-2.313864399999943],[119.1938765000001,-2.305570399999965],[119.17622270000004,-2.307932599999958],[119.17324180000003,-2.302952399999924],[119.16823310000007,-2.302277899999979],[119.16651520000005,-2.304641799999956],[119.16229150000004,-2.305277799999942],[119.15678990000004,-2.298983199999952],[119.150239,-2.301846299999966],[119.14753730000007,-2.308865499999968],[119.14457440000001,-2.307307699999967],[119.14563480000004,-2.299887799999965],[119.14210240000011,-2.298117799999943],[119.13375650000012,-2.307707299999947],[119.12337890000003,-2.312657299999955],[119.12216080000007,-2.3224547],[119.12312610000004,-2.330277399999943],[119.13409700000011,-2.356358099999966],[119.134706,-2.362920899999949],[119.1389,-2.373019],[119.14292940000007,-2.392794799999933],[119.13870830000008,-2.414778899999931],[119.13517050000007,-2.420503099999962],[119.13675960000012,-2.439330699999971],[119.13612460000002,-2.449137299999961],[119.13016130000005,-2.463061499999981],[119.127021,-2.464737699999944],[119.1288465,-2.467090499999927],[119.13112840000008,-2.466996199999926],[119.13138440000012,-2.464317899999969],[119.13458890000004,-2.464317199999925],[119.14323,-2.458871699999975],[119.14526380000007,-2.459676599999966],[119.14637930000004,-2.462681799999928],[119.14039460000004,-2.473994199999936],[119.13231550000012,-2.4762536],[119.1276822000001,-2.475595599999963],[119.12418650000006,-2.482523899999933],[119.12197530000003,-2.481340099999954],[119.10776190000001,-2.483547499999929],[119.10022340000012,-2.489766499999973],[119.07562220000011,-2.494618],[119.05503490000001,-2.503896399999974],[119.04075460000001,-2.508357099999955],[119.04020320000006,-2.511955],[119.03466680000008,-2.522315799999944],[119.03266570000005,-2.5328859],[119.03458780000005,-2.569024699999943],[119.03099080000004,-2.581358499999965],[119.0222447000001,-2.587498299999936],[119.01691790000007,-2.589344599999947],[119.0113579,-2.588128299999937],[119.0089934,-2.585452],[119.0079363000001,-2.591120099999955],[119.01132790000008,-2.593258699999978],[119.0091986000001,-2.594870199999946],[119.01050020000002,-2.599462499999959],[118.99817460000008,-2.6052252],[118.99757320000003,-2.610126799999932],[118.99917370000003,-2.611119699999961],[118.99820000000011,-2.613657],[118.99958780000009,-2.614507699999933],[118.9925290000001,-2.620539],[118.9884872,-2.620506899999953],[118.9820423000001,-2.628463],[118.980589,-2.629221599999937],[118.97894640000004,-2.627531599999941],[118.97155640000005,-2.626963599999954],[118.9669937000001,-2.627751199999977],[118.96536760000004,-2.630844799999977],[118.9669,-2.632053599999949],[118.9648979000001,-2.6353623],[118.96592980000003,-2.637328899999943],[118.96239320000007,-2.638179799999932],[118.9595369000001,-2.640808599999957],[118.95918330000006,-2.639320399999974],[118.94816680000008,-2.638404199999968],[118.94237270000008,-2.639738],[118.93399000000011,-2.648130199999969],[118.93266630000005,-2.651145199999974],[118.92948090000004,-2.651937799999928],[118.92566230000011,-2.6507398],[118.92388690000007,-2.655250699999954],[118.92443360000004,-2.6594775],[118.9129531000001,-2.663315699999941],[118.91254010000011,-2.6677959],[118.91201430000001,-2.666654799999947],[118.90848540000002,-2.666607599999963],[118.90799850000008,-2.668101599999943],[118.9059009,-2.667261599999961],[118.903946,-2.668389],[118.89609940000003,-2.666591699999969],[118.88695810000002,-2.673685399999954],[118.88585280000007,-2.6729835],[118.88561420000008,-2.675994],[118.88499090000005,-2.675167599999952],[118.87997550000011,-2.679190299999959],[118.87096290000011,-2.680871799999977],[118.86798930000009,-2.679176699999971],[118.86616160000005,-2.672014],[118.85949290000008,-2.669225499999925],[118.85533070000008,-2.660768099999927],[118.8453594,-2.6557941],[118.84006640000007,-2.642969099999959],[118.83031840000001,-2.629372299999943],[118.8218323000001,-2.620072899999968],[118.81966740000007,-2.619318199999952],[118.814861,-2.624422899999956],[118.81165310000006,-2.633669699999928],[118.81111580000004,-2.641999599999963],[118.805154,-2.650194399999975],[118.79724280000005,-2.657115699999963],[118.7931688000001,-2.665790899999934],[118.78713710000011,-2.669672799999944],[118.77758030000007,-2.684452],[118.7784415000001,-2.702684],[118.7735037000001,-2.714350399999944],[118.7735,-2.718191],[118.7742,-2.721429],[118.7769,-2.72234],[118.7773,-2.729319],[118.7798,-2.736851],[118.78417620000005,-2.74279],[118.7813155,-2.748397099999977],[118.7746237,-2.750288699999942],[118.7655,-2.747274],[118.7625,-2.748896],[118.7583,-2.760526],[118.7589,-2.766989],[118.7558,-2.779788],[118.7582000000001,-2.79072],[118.758,-2.800513],[118.7608,-2.803383],[118.7656,-2.804904],[118.77253970000004,-2.811384],[118.77304230000004,-2.820629499999939],[118.77141230000007,-2.829610299999956],[118.76885220000008,-2.835001599999941],[118.76965810000002,-2.8445768],[118.76736170000004,-2.853558599999928],[118.76947020000011,-2.866911],[118.78092660000004,-2.863498399999969],[118.78199040000004,-2.861978099999931],[118.79016310000009,-2.861027299999932],[118.79517810000004,-2.857848],[118.80015220000007,-2.856902199999979],[118.80778410000005,-2.851130299999966],[118.8227422000001,-2.852975299999969],[118.83038310000006,-2.857258099999967],[118.83334960000002,-2.857537399999956],[118.8390849000001,-2.851570599999945],[118.84151910000003,-2.850782399999957],[118.84632390000002,-2.850495199999955],[118.8512445,-2.852217499999938],[118.86310560000004,-2.861024699999973],[118.886011,-2.887312299999962],[118.8877103000001,-2.9022432],[118.88566670000012,-2.9072645],[118.8861955000001,-2.910777399999972],[118.881437,-2.915151099999946],[118.88146160000008,-2.918012699999963],[118.87825480000004,-2.9227291],[118.88374340000007,-2.926149099999975],[118.88416390000009,-2.930326099999945],[118.89370310000004,-2.932751499999938],[118.91701320000004,-2.928276799999935],[118.93291980000004,-2.922349799999949],[118.93686750000006,-2.918029899999965],[118.93979280000008,-2.9181996],[118.94354570000007,-2.915286699999967],[118.94769760000008,-2.920220399999948],[118.95039620000011,-2.920506299999943],[118.94892310000012,-2.921988],[118.94982390000007,-2.923898099999974],[118.95281450000004,-2.925927399999978],[118.95570470000007,-2.9256317],[118.95651,-2.927529199999981],[118.96288520000007,-2.923926],[118.96902570000009,-2.9264778],[118.97383850000006,-2.925520199999937],[118.97685490000003,-2.923047199999928],[118.9813931000001,-2.927602499999978],[118.99424250000004,-2.927503],[118.99683650000009,-2.930179099999975],[118.9964821000001,-2.934200399999952],[119.00509310000007,-2.946301099999971],[119.0074892,-2.955049199999962],[119.02722820000008,-2.963697],[119.02573440000003,-2.960592299999973],[119.02594140000008,-2.954990299999963],[119.02910740000004,-2.944580299999927],[119.02887340000007,-2.935195299999975],[119.03370940000002,-2.928711299999975],[119.03130740000006,-2.9204953],[119.02477440000007,-2.909448299999951],[119.02257740000005,-2.894828299999972],[119.02519490000009,-2.884116399999925],[119.02042620000009,-2.876296],[119.01377940000009,-2.870907299999942],[119.01336970000011,-2.868371599999932],[119.0153984000001,-2.863089599999967],[119.01078340000004,-2.854033299999969],[119.01559920000011,-2.852493699999968],[119.02161170000011,-2.839864399999954],[119.0229548000001,-2.8260416],[119.02274110000008,-2.8166164],[119.02105360000007,-2.812912099999949],[119.02505360000009,-2.8061437],[119.0238614000001,-2.801612599999942],[119.0203596,-2.799432299999978],[119.02112520000003,-2.7968757],[119.0160098,-2.785082299999942],[119.01683330000003,-2.782248799999934],[119.01340390000007,-2.778978399999971],[119.01317460000007,-2.774036699999954],[119.0193432000001,-2.7669476],[119.01844770000002,-2.763061199999925],[119.02390140000011,-2.758144299999969],[119.0246211000001,-2.750416799999925],[119.0285957000001,-2.7495216],[119.03965710000011,-2.751431699999955],[119.03977540000005,-2.747406699999942],[119.04239660000007,-2.744194899999968],[119.042278,-2.738954],[119.04507210000008,-2.736140699999964],[119.052447,-2.719584],[119.05448750000005,-2.718166699999927],[119.06119400000011,-2.704618099999948],[119.063837,-2.705240899999978],[119.06957850000003,-2.701688699999977],[119.076216,-2.700191],[119.08076570000003,-2.702415199999962],[119.08285390000003,-2.692152599999929],[119.08560100000011,-2.688098],[119.090155,-2.686272],[119.091164,-2.683651],[119.097016,-2.679203],[119.10153790000004,-2.670498099999975],[119.11196980000011,-2.663457599999958],[119.11703530000011,-2.662330199999928],[119.117962,-2.659669],[119.12123290000011,-2.6595886],[119.122949,-2.656824],[119.1254765000001,-2.658985599999937],[119.13077070000008,-2.658688599999948],[119.138499,-2.65476],[119.139664,-2.65905],[119.138614,-2.661745799999949],[119.14114560000007,-2.666175399999929],[119.14336880000008,-2.668451799999957],[119.14949740000009,-2.669314399999962],[119.15201050000007,-2.671832799999947],[119.161242,-2.670943],[119.16350980000004,-2.663866599999949],[119.165423,-2.661915],[119.1728710000001,-2.660446],[119.1783,-2.662619],[119.182708,-2.65992],[119.191971,-2.661867],[119.200665,-2.669126],[119.2074424000001,-2.677741599999933],[119.20948970000006,-2.683888199999956],[119.218428,-2.691427],[119.218587,-2.699356],[119.2319940000001,-2.712353],[119.241255,-2.713427],[119.250654,-2.710863],[119.25388570000007,-2.712899399999969],[119.2636040000001,-2.711057],[119.269891,-2.708063],[119.273512,-2.709948],[119.28471900000011,-2.707308],[119.298248,-2.708373],[119.30246000000011,-2.71673],[119.30236090000005,-2.722842699999944],[119.3051081000001,-2.729026499999975],[119.310227,-2.730973],[119.314928,-2.730382],[119.327889,-2.737121],[119.331719,-2.73515],[119.335337,-2.735725],[119.34932270000002,-2.744121699999937],[119.368419,-2.748098],[119.376879,-2.746917],[119.38958,-2.767622],[119.394718,-2.768993],[119.396316,-2.772263],[119.400588,-2.774218],[119.409573,-2.781837],[119.421939,-2.780575],[119.441009,-2.767589],[119.44765230000007,-2.767555899999934],[119.45792670000003,-2.762198],[119.47967,-2.750125],[119.478867,-2.746345],[119.484931,-2.740514],[119.494187,-2.739549],[119.500702,-2.74259],[119.509446,-2.738862],[119.526811,-2.742026],[119.529195,-2.740784],[119.529842,-2.738601],[119.540541,-2.73596],[119.542849,-2.733046],[119.55282000000011,-2.728516],[119.569318,-2.732262],[119.568101,-2.738228],[119.569555,-2.741571],[119.573027,-2.741709],[119.58344480000005,-2.747640499999932],[119.58822260000011,-2.743013899999937],[119.59655920000012,-2.742706599999963],[119.60744390000002,-2.740143199999977],[119.610748,-2.741647399999977],[119.6139108000001,-2.749098599999968],[119.6248839000001,-2.751040299999943],[119.63023360000011,-2.754517],[119.63547440000002,-2.751721799999927],[119.6442757000001,-2.751575699999933],[119.64959620000002,-2.7541033],[119.6569290000001,-2.753192199999944],[119.66011750000007,-2.754793699999937],[119.6651733000001,-2.753499],[119.67986940000003,-2.756375899999966],[119.6884318000001,-2.753007599999933],[119.68918680000002,-2.751312],[119.69308210000008,-2.749504799999954],[119.69588240000007,-2.744880499999965],[119.70039430000008,-2.742330899999956],[119.7078226000001,-2.732355199999972],[119.72343460000002,-2.726997],[119.73096540000006,-2.717482199999949],[119.73663980000003,-2.717487299999959],[119.74673540000003,-2.7144641],[119.74937770000008,-2.707355199999938],[119.74808970000004,-2.703300699999943],[119.74871980000012,-2.699784],[119.7461085000001,-2.694657099999972],[119.74951250000004,-2.691875099999947],[119.74799590000009,-2.688553],[119.752639,-2.685316399999977],[119.75558400000011,-2.685219399999937],[119.7573473000001,-2.680877799999962],[119.75987480000003,-2.678920199999936],[119.75533170000006,-2.677358099999935],[119.752488,-2.6709937],[119.76622730000008,-2.663625],[119.77762810000002,-2.661828],[119.78418940000006,-2.6523249],[119.78723710000008,-2.650727599999925],[119.79696120000006,-2.640458299999977],[119.7824601000001,-2.627791599999966],[119.76063980000004,-2.617130499999973],[119.740018,-2.591072299999951],[119.7160689000001,-2.575854],[119.71052310000005,-2.569381599999929],[119.7095,-2.566533799999945],[119.71101090000002,-2.554543],[119.72647590000008,-2.526763099999926],[119.730245,-2.512871899999936],[119.73132,-2.500274399999967],[119.72656010000003,-2.492268799999977],[119.70054280000011,-2.47376],[119.69434120000005,-2.460611799999981],[119.696927,-2.4453992],[119.71256010000002,-2.424510199999929],[119.71902210000007,-2.409469199999933],[119.719792,-2.404277499999978],[119.71435290000011,-2.392377899999929],[119.6998718000001,-2.371045199999969],[119.693415,-2.3567602],[119.69080330000008,-2.354361399999959],[119.69035460000009,-2.351461399999948],[119.69447240000011,-2.342145099999925],[119.69275460000006,-2.336455099999966],[119.68799070000011,-2.333518099999935],[119.68025620000003,-2.339334899999926],[119.6736012,-2.339410899999962],[119.670603,-2.336009599999954],[119.66993150000008,-2.332477299999937],[119.6658423,-2.330948699999965],[119.66405220000001,-2.327364299999942],[119.65514960000007,-2.326341899999932],[119.65421440000011,-2.322638299999937],[119.6504245000001,-2.320133099999964],[119.650033,-2.315832],[119.64349240000001,-2.313476499999979],[119.64314390000004,-2.310205499999938],[119.640955,-2.307321499999944],[119.632279,-2.297754],[119.628283,-2.295185599999968],[119.63617240000008,-2.279816199999971],[119.6343951,-2.277641399999936],[119.63239840000006,-2.2608894],[119.62923630000012,-2.253231299999925],[119.6322315000001,-2.2429682],[119.63728190000006,-2.240256799999941],[119.64449050000007,-2.239692399999967],[119.651714,-2.236516199999926],[119.65226860000007,-2.233569],[119.65744830000006,-2.233848799999976],[119.65754830000003,-2.231742899999972],[119.65956050000011,-2.230392599999959],[119.66817050000009,-2.216134099999977],[119.67433580000011,-2.21033]]],[[[117.394196,-2.101452799999947],[117.388773,-2.096925099999964],[117.38341680000008,-2.096893399999942],[117.38161060000004,-2.101456],[117.38516080000011,-2.106843699999956],[117.39064850000011,-2.106875399999979],[117.394196,-2.101452799999947]]],[[[117.62665140000001,-2.098170099999948],[117.62846170000012,-2.095402],[117.62845920000007,-2.089079799999979],[117.62398550000012,-2.086404199999947],[117.62119220000011,-2.091805099999931],[117.62206720000006,-2.099004399999956],[117.62665140000001,-2.098170099999948]]],[[[117.08118900000011,-2.050868799999932],[117.069472,-2.053342],[117.0710385000001,-2.0702348],[117.07951530000003,-2.077187199999969],[117.08691170000009,-2.073167199999943],[117.08755880000001,-2.058881499999927],[117.08118900000011,-2.050868799999932]]],[[[117.27173230000005,-2.057494599999927],[117.2699196000001,-2.050306099999943],[117.265424,-2.047539399999948],[117.26089620000005,-2.052973899999927],[117.26361470000006,-2.061107199999981],[117.26720450000005,-2.0628953],[117.27173230000005,-2.057494599999927]]],[[[117.3525393000001,-2.064010199999927],[117.3561482,-2.057749499999943],[117.35345610000002,-2.0414436],[117.3463124000001,-2.041445199999941],[117.34266510000009,-2.047744499999965],[117.343512,-2.056824899999981],[117.34892920000004,-2.064899699999955],[117.3525393000001,-2.064010199999927]]],[[[117.3075348000001,-2.0444903],[117.3093517000001,-2.037226399999952],[117.304859,-2.034537],[117.29854890000001,-2.036340699999926],[117.2976675000001,-2.041721199999927],[117.30125160000011,-2.047181699999953],[117.3075348000001,-2.0444903]]],[[[117.33884320000004,-2.005010699999957],[117.33499620000009,-1.995164399999965],[117.32590830000004,-1.996221299999945],[117.32695810000007,-2.002199699999949],[117.33080390000009,-2.0064191],[117.33884320000004,-2.005010699999957]]],[[[117.26324350000004,-1.993720899999971],[117.25998530000004,-1.985578699999962],[117.24710560000005,-1.986772299999927],[117.24518220000004,-1.994418799999949],[117.24784740000007,-1.997596],[117.26087570000004,-1.999182799999971],[117.26324350000004,-1.993720899999971]]],[[[117.14536570000007,-1.977113899999949],[117.14625740000008,-1.969854899999973],[117.1426881000001,-1.967162],[117.13817580000011,-1.968060099999946],[117.13628990000007,-1.975242299999934],[117.13968100000011,-1.981321],[117.14536570000007,-1.977113899999949]]],[[[117.30481440000005,-1.9462649],[117.30838240000003,-1.940857899999969],[117.3030314,-1.934579],[117.29942010000002,-1.939941799999929],[117.3012255000001,-1.946265499999924],[117.30481440000005,-1.9462649]]],[[[117.25324950000004,-1.906613399999969],[117.25505570000007,-1.901189599999952],[117.25416650000011,-1.893979],[117.25147090000007,-1.890312399999971],[117.24605030000009,-1.892100399999947],[117.24335610000003,-1.898387099999979],[117.248717,-1.907446099999959],[117.25324950000004,-1.906613399999969]]]]},"properties":{"shapeName":"Mamuju","shapeISO":"","shapeID":"22746128B35904741342504","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[119.327323,-1.935132499999952],[119.3257602000001,-1.934119399999929],[119.32624240000007,-1.935448199999939],[119.3225685000001,-1.936661799999968],[119.32425250000006,-1.938399799999956],[119.32329570000002,-1.941422499999931],[119.32430980000004,-1.945167599999934],[119.3299065000001,-1.944652299999973],[119.33564420000005,-1.941816299999971],[119.33539850000011,-1.937804299999925],[119.33124260000011,-1.937882499999944],[119.327323,-1.935132499999952]]],[[[119.3306358000001,-1.933315],[119.32938680000007,-1.933486],[119.3305428000001,-1.935635599999955],[119.33287240000004,-1.935124799999926],[119.3306358000001,-1.933315]]],[[[119.87027130000001,-2.018059699999981],[119.86914030000003,-2.013742599999944],[119.86613090000003,-2.011389599999973],[119.87043720000008,-1.999807099999941],[119.86761260000003,-1.984442099999967],[119.867699,-1.967761799999948],[119.86379810000005,-1.961208599999964],[119.8645643000001,-1.957285699999943],[119.8675108000001,-1.953187399999933],[119.86562910000009,-1.949702799999955],[119.87082630000009,-1.938218399999926],[119.86335190000011,-1.935023399999977],[119.86046750000003,-1.928034499999967],[119.86309620000009,-1.920033299999943],[119.86053020000008,-1.915754599999957],[119.86567840000009,-1.911833399999978],[119.869124,-1.890376599999968],[119.86577240000008,-1.8813192],[119.85929040000008,-1.880308899999932],[119.8568954000001,-1.876499699999954],[119.86345970000002,-1.872856399999932],[119.87536820000003,-1.862617399999976],[119.87509540000008,-1.860205299999961],[119.86722510000004,-1.849863099999936],[119.86888380000005,-1.842306399999927],[119.86243880000006,-1.836208599999964],[119.85794930000009,-1.822065599999974],[119.86268860000007,-1.816790099999935],[119.85897260000002,-1.808211899999947],[119.86080270000002,-1.800257399999964],[119.86507390000008,-1.794874299999947],[119.86567050000008,-1.788421799999981],[119.87127790000011,-1.780922299999929],[119.86399810000012,-1.780933499999946],[119.85143070000004,-1.786560099999974],[119.84928,-1.788722399999926],[119.84924750000005,-1.792100199999936],[119.84480340000005,-1.7956493],[119.84371710000005,-1.801204899999959],[119.8392950000001,-1.803413099999943],[119.82789350000007,-1.804632799999979],[119.81798330000004,-1.792142],[119.81225890000007,-1.792157799999927],[119.8079576,-1.794423799999947],[119.79882090000001,-1.794437899999934],[119.79661280000005,-1.7955531],[119.79544670000007,-1.798990199999935],[119.78744210000002,-1.801297399999953],[119.78214230000003,-1.805880499999944],[119.77862170000003,-1.805835299999956],[119.7777152000001,-1.804605099999947],[119.763182,-1.805871699999955],[119.74742420000007,-1.811450799999932],[119.74076550000007,-1.815938899999935],[119.73499820000006,-1.814826699999969],[119.72948610000003,-1.8183797],[119.72476860000006,-1.8194915],[119.716019,-1.826166],[119.71040930000004,-1.828555399999971],[119.70501250000007,-1.837578099999973],[119.69931840000004,-1.835106899999971],[119.68148990000009,-1.831920099999934],[119.67392610000002,-1.827721699999927],[119.67358060000004,-1.831944699999951],[119.67229940000004,-1.832882899999959],[119.6599357,-1.837347499999964],[119.6479548000001,-1.832944599999962],[119.64433330000008,-1.83295],[119.63521,-1.828547599999979],[119.6320687000001,-1.821580299999937],[119.6184469000001,-1.8194366],[119.612128,-1.8151184],[119.60045490000005,-1.812731099999951],[119.59530680000012,-1.809360099999935],[119.58490910000012,-1.816159399999947],[119.58409230000007,-1.814918499999976],[119.56594360000008,-1.809490699999969],[119.55492110000012,-1.802635299999963],[119.54451780000011,-1.802675199999953],[119.53794540000001,-1.800463],[119.53363370000011,-1.798223599999972],[119.52849040000001,-1.792219899999964],[119.52334,-1.791028199999971],[119.52098390000003,-1.792423399999961],[119.51821610000002,-1.791636299999936],[119.51067260000002,-1.793070399999976],[119.50906670000006,-1.791301],[119.51051070000005,-1.789622299999962],[119.50857480000002,-1.787900799999932],[119.50932720000003,-1.786349599999937],[119.504579,-1.785723399999938],[119.50360060000003,-1.782972399999949],[119.49664690000009,-1.778869199999974],[119.4906734000001,-1.778940599999942],[119.485538,-1.7710067],[119.4777726000001,-1.771238699999969],[119.47685850000005,-1.769436599999949],[119.47794070000009,-1.767592299999933],[119.4745845000001,-1.767678599999954],[119.47420140000008,-1.763207699999953],[119.47141070000009,-1.7628951],[119.47007070000006,-1.7600495],[119.46700890000011,-1.762782299999969],[119.459832,-1.7576742],[119.45698080000011,-1.757733899999948],[119.45310590000008,-1.755569599999944],[119.45051950000004,-1.752264399999945],[119.44786280000005,-1.752099599999951],[119.44839550000006,-1.747463],[119.45058670000003,-1.746787199999972],[119.4505842000001,-1.744917899999962],[119.4473511000001,-1.7442865],[119.4448824000001,-1.731466199999943],[119.44110960000012,-1.730684],[119.43851660000007,-1.728066599999977],[119.43366430000003,-1.733256599999947],[119.431583,-1.732661099999973],[119.43073370000002,-1.736812099999952],[119.42475080000008,-1.735922599999981],[119.42473510000002,-1.733617099999947],[119.42210330000012,-1.735890199999972],[119.41327790000003,-1.731876599999964],[119.41112640000006,-1.7336338],[119.41348860000005,-1.7362453],[119.41605260000006,-1.736242],[119.41650240000001,-1.7404384],[119.4147269,-1.742195199999969],[119.40939270000001,-1.741410799999926],[119.40356950000012,-1.745976499999927],[119.40249740000002,-1.749779299999943],[119.39727140000002,-1.749964299999931],[119.39189680000004,-1.752397799999926],[119.39048070000001,-1.756038599999954],[119.38738920000003,-1.755190899999945],[119.38496310000005,-1.756749099999979],[119.38242350000007,-1.755863899999952],[119.38129,-1.753687199999945],[119.3779336,-1.754685],[119.37671810000006,-1.7535759],[119.37488560000008,-1.759094299999958],[119.37142670000003,-1.756985399999962],[119.37034810000011,-1.758081899999979],[119.37237230000005,-1.7616461],[119.36984310000003,-1.762841],[119.3688178000001,-1.760197799999958],[119.36729330000003,-1.760558899999978],[119.36775190000003,-1.765841899999941],[119.364609,-1.767385799999943],[119.36474150000004,-1.769540399999926],[119.3595580000001,-1.771178199999952],[119.35841190000008,-1.773784599999942],[119.35684690000005,-1.7741376],[119.35584990000007,-1.7722295],[119.35400630000004,-1.772818899999947],[119.35259330000008,-1.771596399999964],[119.35185690000003,-1.772927799999934],[119.3538324000001,-1.776475799999957],[119.35233050000011,-1.780452899999943],[119.35303980000003,-1.782355099999961],[119.349712,-1.783002599999975],[119.34975720000011,-1.780243699999971],[119.3468008000001,-1.777243899999974],[119.34591820000003,-1.778444799999932],[119.347738,-1.780744199999958],[119.34663730000011,-1.782639199999949],[119.3489545000001,-1.786225],[119.34674710000002,-1.786091699999929],[119.34465040000009,-1.782960099999968],[119.34317540000006,-1.783990399999936],[119.34559700000011,-1.787415399999929],[119.34535520000009,-1.788656399999979],[119.3427918000001,-1.788529099999948],[119.3451516,-1.794196499999941],[119.34249050000005,-1.795037099999945],[119.34112860000005,-1.792667],[119.33979050000005,-1.793120199999976],[119.34142330000009,-1.798169899999948],[119.34539250000012,-1.798228399999971],[119.34217760000001,-1.799795099999926],[119.34009130000004,-1.80556],[119.3417296,-1.807260099999951],[119.3413164000001,-1.809409199999948],[119.34368690000008,-1.808973599999945],[119.34389580000004,-1.810420199999953],[119.34265870000002,-1.815615199999968],[119.34530230000007,-1.814464499999929],[119.35208320000004,-1.817585299999962],[119.3564788000001,-1.824132299999974],[119.35773670000003,-1.8304908],[119.35936660000004,-1.830559299999948],[119.35898250000002,-1.836652],[119.36419950000004,-1.856443099999979],[119.362822,-1.861469099999965],[119.35802790000002,-1.8624704],[119.35121650000008,-1.870737099999928],[119.35065110000005,-1.883813699999962],[119.3534757000001,-1.897014799999965],[119.3514785000001,-1.902089499999931],[119.34485160000008,-1.908562699999948],[119.33550240000011,-1.91398],[119.33871120000003,-1.919198899999969],[119.33432330000005,-1.926247899999964],[119.33631280000009,-1.930266199999949],[119.34052830000007,-1.930538499999955],[119.34152570000003,-1.934679499999959],[119.33839510000007,-1.937007299999948],[119.33846480000011,-1.941365399999938],[119.334778,-1.947939499999961],[119.33543910000003,-1.949602399999947],[119.333563,-1.950758399999927],[119.33295870000006,-1.961550699999975],[119.33089210000003,-1.963654499999961],[119.3268336000001,-1.962490899999978],[119.3233636000001,-1.964050499999928],[119.32147160000011,-1.963047099999926],[119.31738530000007,-1.952755099999933],[119.30468790000009,-1.959869599999934],[119.2965266000001,-1.959811299999956],[119.29462400000011,-1.955777699999942],[119.29706990000011,-1.955665899999929],[119.29640390000009,-1.953748],[119.2899016,-1.952522299999941],[119.26216880000004,-1.970619599999964],[119.25321840000004,-1.972313399999962],[119.241595,-1.980776399999968],[119.23282790000007,-1.985508099999947],[119.22721660000002,-1.986713699999939],[119.22286950000012,-1.992708099999959],[119.21851570000001,-1.992937099999949],[119.2127081000001,-1.997774899999968],[119.21370940000008,-2.001947599999937],[119.22328420000008,-2.013115],[119.2212029000001,-2.017376799999965],[119.22000920000005,-2.016804399999955],[119.21555350000006,-2.020594],[119.21584130000008,-2.022420199999942],[119.20980630000008,-2.028195],[119.20992090000004,-2.036587899999972],[119.205167,-2.0540058],[119.2044701000001,-2.063407699999971],[119.2020341000001,-2.065473099999963],[119.19719390000012,-2.077927399999965],[119.19531880000011,-2.084638499999926],[119.19561610000005,-2.089985399999932],[119.19248270000003,-2.095239899999967],[119.19253290000006,-2.096600899999942],[119.1971,-2.097606],[119.19968790000007,-2.101293699999928],[119.200434,-2.106871699999942],[119.1980565,-2.111973099999943],[119.1896183,-2.120000699999935],[119.19142490000002,-2.132686699999965],[119.18923510000002,-2.136157099999934],[119.18587230000003,-2.136472399999946],[119.18617030000007,-2.142111],[119.18874,-2.148232399999927],[119.1879245,-2.152462899999932],[119.18111170000009,-2.152813],[119.17556030000003,-2.156758599999932],[119.17164630000002,-2.156812799999955],[119.16585380000004,-2.161099],[119.15968140000007,-2.170247099999926],[119.15973940000003,-2.177052899999978],[119.15656220000005,-2.185516199999938],[119.14792520000003,-2.194570699999929],[119.1453752000001,-2.200468399999977],[119.15098830000011,-2.223780099999942],[119.152214,-2.2393847],[119.14856330000009,-2.247091],[119.13754930000005,-2.261741799999925],[119.13024180000002,-2.276806199999953],[119.12860220000005,-2.295859699999937],[119.13375650000012,-2.307707299999947],[119.14210240000011,-2.298117799999943],[119.14563480000004,-2.299887799999965],[119.14457440000001,-2.307307699999967],[119.14753730000007,-2.308865499999968],[119.150239,-2.301846299999966],[119.15678990000004,-2.298983199999952],[119.16229150000004,-2.305277799999942],[119.16651520000005,-2.304641799999956],[119.16823310000007,-2.302277899999979],[119.17324180000003,-2.302952399999924],[119.17622270000004,-2.307932599999958],[119.1938765000001,-2.305570399999965],[119.198244,-2.313864399999943],[119.20479990000001,-2.303302699999961],[119.20417740000005,-2.302236799999946],[119.20585970000002,-2.301535299999955],[119.20426680000003,-2.2905358],[119.22408710000002,-2.2835585],[119.22634890000006,-2.286001099999964],[119.22813410000003,-2.278515699999957],[119.23245570000006,-2.273527399999978],[119.231292,-2.271704499999942],[119.22893370000008,-2.271586499999955],[119.22910020000006,-2.267912899999942],[119.23318250000011,-2.268256],[119.25202050000007,-2.263421799999946],[119.25374170000009,-2.253285199999937],[119.25720640000009,-2.251594799999964],[119.2591910000001,-2.252282799999932],[119.26215860000002,-2.247266099999933],[119.26164410000001,-2.242423199999962],[119.2652743000001,-2.243955299999925],[119.2650172000001,-2.245858399999975],[119.266555,-2.246545699999956],[119.273004,-2.241093599999942],[119.27416,-2.243037399999935],[119.27595090000011,-2.240654099999972],[119.27476650000006,-2.238378299999965],[119.2776493,-2.238607599999966],[119.2764661000001,-2.237089499999968],[119.27852930000006,-2.236394099999927],[119.27641850000009,-2.234763599999951],[119.27864430000011,-2.2326197],[119.28109080000002,-2.233275299999946],[119.28076360000011,-2.2321253],[119.28377770000009,-2.233084],[119.28315870000006,-2.2296662],[119.28406310000003,-2.231264299999964],[119.28577170000005,-2.229783699999928],[119.284348,-2.229098399999941],[119.2857682,-2.227487399999973],[119.28460230000007,-2.225146099999961],[119.28760230000012,-2.2229854],[119.28914750000001,-2.224068],[119.28950310000005,-2.219568299999935],[119.2921682000001,-2.220986599999947],[119.290566,-2.222510299999954],[119.29236350000008,-2.2244711],[119.29332190000002,-2.223572],[119.29479680000009,-2.224579199999937],[119.29321530000004,-2.225802299999941],[119.29507230000002,-2.227408499999967],[119.29528410000012,-2.225328899999965],[119.30024260000005,-2.228461399999958],[119.30115750000004,-2.225302099999965],[119.30391930000008,-2.226989899999978],[119.30229190000011,-2.225154499999974],[119.30622710000011,-2.222747199999958],[119.304604,-2.224313099999961],[119.30466530000001,-2.227712299999951],[119.30728050000005,-2.224086499999942],[119.30859770000006,-2.226784399999929],[119.31057420000002,-2.2253756],[119.31055750000007,-2.226908899999955],[119.31317530000001,-2.2280586],[119.31287450000002,-2.225496299999975],[119.31490380000002,-2.226239599999928],[119.31596480000007,-2.2246704],[119.31346640000004,-2.224425499999938],[119.31314320000001,-2.223356199999955],[119.31539380000004,-2.223278],[119.3138828000001,-2.2218],[119.31749390000004,-2.221856499999944],[119.31538590000002,-2.216530899999952],[119.3184619000001,-2.218366499999945],[119.31741080000006,-2.216437299999939],[119.32175510000002,-2.213361099999929],[119.32056550000004,-2.2119585],[119.32246970000006,-2.211541],[119.32244220000007,-2.208792099999926],[119.3259786000001,-2.212053599999933],[119.3267988,-2.208733299999949],[119.329393,-2.210397299999954],[119.32837020000011,-2.208523399999933],[119.33037810000008,-2.206834799999967],[119.32792960000006,-2.206994299999963],[119.32908580000003,-2.204581],[119.33275050000009,-2.207531199999949],[119.33174150000002,-2.205095399999948],[119.33331410000005,-2.205326299999967],[119.33315290000007,-2.202518699999928],[119.33509360000005,-2.201382799999976],[119.3348145000001,-2.202969199999927],[119.33998420000012,-2.201633699999945],[119.33942390000004,-2.204207399999973],[119.3411880000001,-2.202660399999957],[119.34148630000004,-2.205177299999946],[119.3431045000001,-2.203657299999975],[119.34285390000002,-2.205640499999959],[119.344557,-2.205510899999979],[119.34900770000002,-2.2007864],[119.35002010000005,-2.202688699999953],[119.35345,-2.204142899999965],[119.3553710000001,-2.208836099999928],[119.35482310000009,-2.207421599999975],[119.357357,-2.208230899999933],[119.35727830000008,-2.204792599999962],[119.35805970000001,-2.206949099999974],[119.3612247000001,-2.205746199999965],[119.3614622,-2.204341699999929],[119.36322960000007,-2.204931199999976],[119.36376860000007,-2.200043699999981],[119.36776630000008,-2.201496899999938],[119.36588960000006,-2.198242199999925],[119.36645580000004,-2.197310899999934],[119.36875110000005,-2.199253],[119.367688,-2.197556799999973],[119.37025990000006,-2.195971699999973],[119.36877330000004,-2.193872699999929],[119.37197290000006,-2.191814],[119.37414990000002,-2.195817399999953],[119.37520010000003,-2.1950119],[119.3731024000001,-2.193830399999968],[119.37966920000008,-2.192081899999948],[119.379438,-2.193352],[119.38400460000003,-2.194213799999943],[119.38517650000006,-2.195772499999975],[119.39121740000007,-2.195979499999964],[119.39041580000003,-2.194011699999976],[119.39417360000004,-2.193284799999958],[119.39476160000004,-2.194640399999969],[119.39538890000006,-2.191699],[119.39724500000011,-2.191497399999946],[119.39792160000002,-2.193399299999953],[119.40210090000005,-2.189979599999958],[119.404156,-2.190771],[119.40637090000007,-2.188408199999969],[119.40756090000002,-2.18912],[119.41054150000002,-2.187254099999961],[119.41165710000007,-2.184715399999959],[119.41382680000004,-2.187427099999979],[119.41818050000006,-2.187328199999968],[119.41856890000008,-2.190891599999929],[119.42052710000007,-2.191224699999964],[119.42101580000008,-2.188156299999946],[119.42425180000009,-2.191458799999964],[119.42595270000004,-2.191482],[119.42608910000001,-2.192889799999932],[119.42804380000007,-2.192192199999965],[119.4291965000001,-2.193617699999947],[119.43391410000004,-2.194092299999966],[119.43448540000009,-2.1916995],[119.43701680000004,-2.191965399999958],[119.43777010000008,-2.187741],[119.43986770000004,-2.188238],[119.44064760000003,-2.184417599999961],[119.442373,-2.184260399999971],[119.43924430000004,-2.182124499999929],[119.4415246000001,-2.181310599999961],[119.44060050000007,-2.178939599999978],[119.44340060000002,-2.177892199999974],[119.44245580000006,-2.176159],[119.445853,-2.174083699999926],[119.44580250000001,-2.171865099999934],[119.45153620000008,-2.174987],[119.45251830000007,-2.172045],[119.45606750000002,-2.1721457],[119.45608930000003,-2.168151199999954],[119.45763860000011,-2.169357299999945],[119.45844650000004,-2.167050399999937],[119.46149720000005,-2.166447],[119.461406,-2.1645],[119.46459870000001,-2.162765499999978],[119.46529830000009,-2.1584546],[119.46893680000005,-2.1596532],[119.46666720000007,-2.154793799999936],[119.46763810000004,-2.151803],[119.47020970000005,-2.151441899999952],[119.46845470000005,-2.149459399999955],[119.471111,-2.146599599999945],[119.47076130000005,-2.145201799999938],[119.474944,-2.144038499999965],[119.47349960000008,-2.142714199999944],[119.47473960000002,-2.141596799999945],[119.47742970000002,-2.142508599999928],[119.47831210000004,-2.139784],[119.487098,-2.140490099999965],[119.49922720000006,-2.146375199999966],[119.50432630000012,-2.145831399999963],[119.50843220000002,-2.148122299999955],[119.51432480000005,-2.144766499999946],[119.52064340000004,-2.144287599999927],[119.6096295000001,-2.148799399999973],[119.63228320000007,-2.145459099999925],[119.63727770000003,-2.146846799999935],[119.63892520000002,-2.1528751],[119.63896120000004,-2.173707699999966],[119.6523611,-2.191104],[119.65155240000001,-2.197685299999932],[119.67433580000011,-2.21033],[119.68484970000009,-2.208042599999942],[119.69117620000009,-2.208952899999929],[119.70647780000002,-2.198098499999958],[119.707126,-2.194825899999955],[119.71152440000003,-2.189838499999951],[119.7270344000001,-2.177447699999959],[119.7270688000001,-2.171636899999953],[119.7293472,-2.1663281],[119.73764,-2.162246499999981],[119.74316360000012,-2.1542751],[119.751166,-2.155146099999968],[119.7618764,-2.145358],[119.76370920000011,-2.138992899999948],[119.76268930000003,-2.135624099999973],[119.76646870000002,-2.130032599999936],[119.766352,-2.124041599999941],[119.76987880000001,-2.120998899999961],[119.78199030000007,-2.116603399999974],[119.79180320000012,-2.108669799999973],[119.80460340000002,-2.111935799999969],[119.81002860000001,-2.103522199999929],[119.81505250000009,-2.100874499999975],[119.817234,-2.095223],[119.81568850000008,-2.084779899999944],[119.81927650000011,-2.080878799999937],[119.82084630000008,-2.0744332],[119.8181747000001,-2.068627699999979],[119.8173991000001,-2.061707299999966],[119.82056590000002,-2.0550962],[119.82704660000002,-2.047419599999955],[119.8356913,-2.044870299999957],[119.84346260000007,-2.045767699999942],[119.85147630000006,-2.041797599999938],[119.85658120000005,-2.0333766],[119.86235370000009,-2.031852599999979],[119.86235370000009,-2.027142599999934],[119.86582280000005,-2.020796699999948],[119.87027130000001,-2.018059699999981]]]]},"properties":{"shapeName":"Mamuju Tengah","shapeISO":"","shapeID":"22746128B47752480006567","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[119.56147250000004,-0.851433799999938],[119.56083680000006,-0.848817699999927],[119.56570320000003,-0.846925799999951],[119.56282320000003,-0.846891299999925],[119.55977060000009,-0.848822799999937],[119.55237280000006,-0.861513399999978],[119.54784170000005,-0.864263899999969],[119.54363250000006,-0.8646057],[119.54349380000008,-0.871302299999968],[119.53647150000006,-0.878393399999936],[119.5353391000001,-0.886701899999935],[119.53206460000001,-0.889420199999961],[119.53026970000008,-0.895144599999981],[119.526015,-0.897297799999933],[119.52556720000007,-0.9057],[119.52263370000003,-0.912085099999956],[119.5227992,-0.926992],[119.5201839,-0.939167699999928],[119.51630990000001,-0.9458537],[119.50750870000002,-0.953574699999933],[119.50506610000002,-0.959297499999934],[119.50450890000002,-0.970434299999965],[119.5019549000001,-0.975621399999966],[119.50041310000006,-0.975768099999925],[119.5010823,-0.977671699999973],[119.49801880000007,-0.984977199999946],[119.49247890000004,-0.991318199999967],[119.48088450000012,-0.998463499999957],[119.473718,-1.020642],[119.47147550000011,-1.036572499999977],[119.46885390000011,-1.0425324],[119.46730150000008,-1.059938299999942],[119.46055020000006,-1.073751099999924],[119.45432330000006,-1.080482],[119.44534940000005,-1.096875699999941],[119.439988,-1.103376799999978],[119.43163990000005,-1.1069598],[119.42213880000008,-1.107315299999925],[119.42234440000004,-1.113143799999932],[119.41925420000007,-1.115644399999951],[119.4195932,-1.117681299999958],[119.417628,-1.120795399999963],[119.41493090000006,-1.122624599999938],[119.409684,-1.120017799999971],[119.40925720000007,-1.128344899999945],[119.4003494000001,-1.127632799999958],[119.3978542000001,-1.131006099999979],[119.39592440000001,-1.138065299999937],[119.3923195000001,-1.139758],[119.39332470000011,-1.141268899999943],[119.39107520000005,-1.140543199999968],[119.388395,-1.143520499999966],[119.387766,-1.140465099999972],[119.38651270000003,-1.140061899999978],[119.38904810000008,-1.136890699999981],[119.385683,-1.137144199999966],[119.38534170000003,-1.142132499999946],[119.38077790000011,-1.149792299999945],[119.381311,-1.153381399999944],[119.37960470000007,-1.158791299999962],[119.37779440000008,-1.160280199999931],[119.3752373000001,-1.15875],[119.373527,-1.159981799999969],[119.36850130000005,-1.165030899999977],[119.366997,-1.171236099999931],[119.35906620000003,-1.173887899999954],[119.35130020000008,-1.1723646],[119.34972610000011,-1.169228399999952],[119.34312380000006,-1.166666799999973],[119.339956,-1.167857099999935],[119.33797630000004,-1.185040299999969],[119.33650670000009,-1.189843799999949],[119.33560920000002,-1.188651799999946],[119.33708080000008,-1.1924312],[119.33519290000004,-1.189891599999953],[119.3344661000001,-1.195628099999965],[119.33093130000009,-1.201621099999954],[119.32579370000008,-1.219123499999966],[119.32219320000002,-1.220490599999948],[119.31964340000002,-1.233349299999929],[119.31626540000002,-1.241738299999952],[119.3136608000001,-1.244769299999973],[119.31390710000005,-1.249441799999943],[119.31154820000006,-1.256574899999976],[119.309422,-1.258677199999966],[119.3028035000001,-1.273500199999944],[119.30334180000011,-1.2762276],[119.31715330000009,-1.295647699999961],[119.31817930000011,-1.296263899999929],[119.31870330000004,-1.294593499999962],[119.32131360000005,-1.297827199999972],[119.32927070000005,-1.332535699999937],[119.33173280000005,-1.3369571],[119.33067230000006,-1.338057599999956],[119.3324242000001,-1.349509099999977],[119.322267,-1.362381299999925],[119.29709450000007,-1.381691599999954],[119.2905058,-1.392310099999975],[119.28977810000004,-1.404215],[119.28775170000006,-1.410913099999959],[119.29145070000004,-1.4136995],[119.292694,-1.422556899999961],[119.28809030000002,-1.450025],[119.29988,-1.491282099999978],[119.30167460000007,-1.493857099999957],[119.300593,-1.493512],[119.30049610000003,-1.494798099999969],[119.30645880000009,-1.510223099999962],[119.31066190000001,-1.5343548],[119.31753050000009,-1.546143299999926],[119.32512220000001,-1.567303199999969],[119.32638170000007,-1.572964899999931],[119.3255160000001,-1.590029099999924],[119.32404870000005,-1.596361499999944],[119.31595260000006,-1.608043],[119.30271010000001,-1.610555799999929],[119.30215550000003,-1.619978499999945],[119.29964940000002,-1.620377],[119.29974880000009,-1.621415499999955],[119.30643810000004,-1.625908699999968],[119.30909180000003,-1.625608899999975],[119.31037350000008,-1.629020099999934],[119.306125,-1.631473199999959],[119.30416280000009,-1.634789299999966],[119.30387410000003,-1.640180699999974],[119.30599040000004,-1.642750099999944],[119.3052550000001,-1.644333699999947],[119.30353630000002,-1.645671099999959],[119.30092940000009,-1.643893599999956],[119.29881640000008,-1.644242199999951],[119.29626270000006,-1.646075199999927],[119.2928217000001,-1.645535099999961],[119.290759,-1.6469718],[119.29120590000002,-1.650928099999931],[119.2945525,-1.654782099999977],[119.29438520000008,-1.658862699999929],[119.28755050000007,-1.656397699999957],[119.28489850000005,-1.658181299999967],[119.28416730000004,-1.663425],[119.28743120000001,-1.680682699999977],[119.2866467,-1.682315799999969],[119.28193060000001,-1.684349199999929],[119.28139480000004,-1.688554],[119.28272640000012,-1.692459799999938],[119.28439830000002,-1.693100799999968],[119.284519,-1.691245899999956],[119.28565,-1.691689699999927],[119.29543880000006,-1.698355099999958],[119.30094710000003,-1.7068073],[119.30241870000009,-1.721717399999932],[119.3067678000001,-1.741121499999963],[119.31514560000005,-1.7684111],[119.31261060000008,-1.787342799999976],[119.31422810000004,-1.791284099999928],[119.31155720000004,-1.7951222],[119.31168250000007,-1.798342],[119.31593270000008,-1.799875899999961],[119.31805710000003,-1.798477099999957],[119.32053230000008,-1.800210099999958],[119.33106,-1.814805099999944],[119.33754350000004,-1.819429],[119.3417945000001,-1.818426199999976],[119.34202770000002,-1.812631199999942],[119.34389580000004,-1.810420199999953],[119.34368690000008,-1.808973599999945],[119.3413164000001,-1.809409199999948],[119.3417296,-1.807260099999951],[119.34009130000004,-1.80556],[119.34217760000001,-1.799795099999926],[119.34539250000012,-1.798228399999971],[119.34142330000009,-1.798169899999948],[119.33979050000005,-1.793120199999976],[119.34112860000005,-1.792667],[119.34249050000005,-1.795037099999945],[119.3451516,-1.794196499999941],[119.3427918000001,-1.788529099999948],[119.34535520000009,-1.788656399999979],[119.34559700000011,-1.787415399999929],[119.34317540000006,-1.783990399999936],[119.34465040000009,-1.782960099999968],[119.34674710000002,-1.786091699999929],[119.3489545000001,-1.786225],[119.34663730000011,-1.782639199999949],[119.347738,-1.780744199999958],[119.34591820000003,-1.778444799999932],[119.3468008000001,-1.777243899999974],[119.34975720000011,-1.780243699999971],[119.349712,-1.783002599999975],[119.35303980000003,-1.782355099999961],[119.35233050000011,-1.780452899999943],[119.3538324000001,-1.776475799999957],[119.35185690000003,-1.772927799999934],[119.35259330000008,-1.771596399999964],[119.35400630000004,-1.772818899999947],[119.35584990000007,-1.7722295],[119.35684690000005,-1.7741376],[119.35841190000008,-1.773784599999942],[119.3595580000001,-1.771178199999952],[119.36474150000004,-1.769540399999926],[119.364609,-1.767385799999943],[119.36775190000003,-1.765841899999941],[119.36729330000003,-1.760558899999978],[119.3688178000001,-1.760197799999958],[119.36984310000003,-1.762841],[119.37237230000005,-1.7616461],[119.37034810000011,-1.758081899999979],[119.37142670000003,-1.756985399999962],[119.37488560000008,-1.759094299999958],[119.37671810000006,-1.7535759],[119.3779336,-1.754685],[119.38129,-1.753687199999945],[119.38242350000007,-1.755863899999952],[119.38496310000005,-1.756749099999979],[119.38738920000003,-1.755190899999945],[119.39048070000001,-1.756038599999954],[119.39189680000004,-1.752397799999926],[119.39727140000002,-1.749964299999931],[119.40249740000002,-1.749779299999943],[119.40356950000012,-1.745976499999927],[119.40939270000001,-1.741410799999926],[119.4147269,-1.742195199999969],[119.41650240000001,-1.7404384],[119.41605260000006,-1.736242],[119.41348860000005,-1.7362453],[119.41112640000006,-1.7336338],[119.41327790000003,-1.731876599999964],[119.42210330000012,-1.735890199999972],[119.42473510000002,-1.733617099999947],[119.42475080000008,-1.735922599999981],[119.43073370000002,-1.736812099999952],[119.431583,-1.732661099999973],[119.43366430000003,-1.733256599999947],[119.43851660000007,-1.728066599999977],[119.44110960000012,-1.730684],[119.4448824000001,-1.731466199999943],[119.4473511000001,-1.7442865],[119.4505842000001,-1.744917899999962],[119.45058670000003,-1.746787199999972],[119.44839550000006,-1.747463],[119.44786280000005,-1.752099599999951],[119.45051950000004,-1.752264399999945],[119.45310590000008,-1.755569599999944],[119.45698080000011,-1.757733899999948],[119.459832,-1.7576742],[119.46700890000011,-1.762782299999969],[119.47007070000006,-1.7600495],[119.47141070000009,-1.7628951],[119.47420140000008,-1.763207699999953],[119.4745845000001,-1.767678599999954],[119.47794070000009,-1.767592299999933],[119.47685850000005,-1.769436599999949],[119.4777726000001,-1.771238699999969],[119.485538,-1.7710067],[119.4906734000001,-1.778940599999942],[119.49664690000009,-1.778869199999974],[119.50360060000003,-1.782972399999949],[119.504579,-1.785723399999938],[119.50932720000003,-1.786349599999937],[119.50857480000002,-1.787900799999932],[119.51051070000005,-1.789622299999962],[119.50906670000006,-1.791301],[119.51067260000002,-1.793070399999976],[119.51821610000002,-1.791636299999936],[119.52098390000003,-1.792423399999961],[119.52334,-1.791028199999971],[119.52849040000001,-1.792219899999964],[119.53363370000011,-1.798223599999972],[119.53794540000001,-1.800463],[119.54451780000011,-1.802675199999953],[119.55492110000012,-1.802635299999963],[119.56594360000008,-1.809490699999969],[119.58409230000007,-1.814918499999976],[119.58490910000012,-1.816159399999947],[119.59530680000012,-1.809360099999935],[119.60045490000005,-1.812731099999951],[119.612128,-1.8151184],[119.6184469000001,-1.8194366],[119.6320687000001,-1.821580299999937],[119.63521,-1.828547599999979],[119.64433330000008,-1.83295],[119.6479548000001,-1.832944599999962],[119.6599357,-1.837347499999964],[119.67229940000004,-1.832882899999959],[119.67358060000004,-1.831944699999951],[119.67392610000002,-1.827721699999927],[119.68148990000009,-1.831920099999934],[119.69931840000004,-1.835106899999971],[119.70501250000007,-1.837578099999973],[119.71040930000004,-1.828555399999971],[119.716019,-1.826166],[119.72476860000006,-1.8194915],[119.72948610000003,-1.8183797],[119.73499820000006,-1.814826699999969],[119.74076550000007,-1.815938899999935],[119.74742420000007,-1.811450799999932],[119.763182,-1.805871699999955],[119.7777152000001,-1.804605099999947],[119.77862170000003,-1.805835299999956],[119.78214230000003,-1.805880499999944],[119.78744210000002,-1.801297399999953],[119.79544670000007,-1.798990199999935],[119.79661280000005,-1.7955531],[119.79882090000001,-1.794437899999934],[119.8079576,-1.794423799999947],[119.81225890000007,-1.792157799999927],[119.81798330000004,-1.792142],[119.82789350000007,-1.804632799999979],[119.8392950000001,-1.803413099999943],[119.84371710000005,-1.801204899999959],[119.84480340000005,-1.7956493],[119.84924750000005,-1.792100199999936],[119.84928,-1.788722399999926],[119.85143070000004,-1.786560099999974],[119.86399810000012,-1.780933499999946],[119.87127790000011,-1.780922299999929],[119.87094130000003,-1.777483699999948],[119.86644860000001,-1.770948799999928],[119.8613921000001,-1.772447599999964],[119.8547516000001,-1.769946],[119.84377,-1.7755111],[119.83571610000001,-1.769770599999958],[119.82694140000001,-1.767393399999946],[119.822374,-1.762987199999941],[119.82008340000004,-1.758122599999979],[119.81460820000007,-1.755014699999947],[119.81459380000001,-1.749298599999975],[119.80900930000007,-1.741287399999976],[119.80446270000004,-1.7436622],[119.79754080000009,-1.739182099999937],[119.79245450000008,-1.730300599999964],[119.79428070000006,-1.724564499999929],[119.79200070000002,-1.721135099999969],[119.77877300000011,-1.7122692],[119.7764658000001,-1.709053499999925],[119.77643980000005,-1.704605299999969],[119.77942690000009,-1.700335699999926],[119.77892050000003,-1.690043799999955],[119.76427640000009,-1.678552299999978],[119.75937490000001,-1.668492399999934],[119.75981230000002,-1.659328599999981],[119.75128390000009,-1.6531143],[119.75047250000011,-1.643409899999938],[119.73617810000007,-1.643447799999933],[119.72990470000002,-1.645019899999966],[119.72783720000007,-1.643468399999961],[119.72624580000002,-1.634984899999949],[119.72884660000011,-1.627010799999937],[119.72704880000003,-1.6223231],[119.73342240000011,-1.617768799999965],[119.73568180000007,-1.613852799999961],[119.7334373000001,-1.604954599999928],[119.7279936000001,-1.602259799999956],[119.72668910000004,-1.599216199999944],[119.72068420000005,-1.597146899999927],[119.71530890000008,-1.592182499999979],[119.7097017000001,-1.582429899999966],[119.709984,-1.5768176],[119.70334190000005,-1.572696299999961],[119.70126470000002,-1.566065799999933],[119.69200020000005,-1.564839699999936],[119.689701,-1.562854499999958],[119.6889063000001,-1.558047699999975],[119.68648080000003,-1.55468],[119.6778399000001,-1.550398299999927],[119.67109850000008,-1.543999399999961],[119.67346830000008,-1.535618799999952],[119.66853230000004,-1.533528399999966],[119.66663540000002,-1.5304852],[119.66642230000002,-1.525605299999938],[119.66872290000003,-1.521065599999929],[119.66931440000008,-1.514187499999935],[119.67509970000003,-1.502169699999968],[119.68050920000007,-1.494526499999949],[119.68009440000003,-1.4903066],[119.68476910000004,-1.485285199999964],[119.68657960000007,-1.477366399999937],[119.69334920000006,-1.472722],[119.69259540000007,-1.467011399999933],[119.7004521,-1.458651599999939],[119.69700650000004,-1.452524699999969],[119.69250760000011,-1.449795699999925],[119.68605160000004,-1.450119699999959],[119.68407140000011,-1.442323],[119.68203810000011,-1.440463699999952],[119.67989160000002,-1.443041899999969],[119.67086590000008,-1.442564599999969],[119.66946020000012,-1.439855],[119.67164430000003,-1.435243399999933],[119.66587750000008,-1.4342199],[119.6715488000001,-1.4333095],[119.67229650000002,-1.431474099999946],[119.66563620000011,-1.427460199999928],[119.6636674,-1.422482899999977],[119.6583690000001,-1.424124899999924],[119.6551803000001,-1.422890399999972],[119.65139240000008,-1.416369799999927],[119.64614770000003,-1.412932499999954],[119.64370980000001,-1.4090492],[119.64355920000003,-1.4059585],[119.64137280000011,-1.404108299999962],[119.63918590000003,-1.4043458],[119.631265,-1.400721699999963],[119.63240790000009,-1.4048957],[119.62979840000003,-1.4066249],[119.62327790000006,-1.3971065],[119.62198020000005,-1.397035699999947],[119.61820550000004,-1.401233499999933],[119.61426740000002,-1.4004607],[119.6156284000001,-1.403929599999969],[119.6099094000001,-1.406087099999979],[119.60746690000008,-1.402601199999935],[119.60445940000011,-1.403851799999927],[119.60155810000003,-1.402689199999941],[119.60161950000008,-1.399788],[119.59999460000006,-1.397693],[119.59572320000007,-1.3989812],[119.59218610000005,-1.396472599999925],[119.58903410000005,-1.402558599999963],[119.59021320000011,-1.405557899999963],[119.5894,-1.409238099999925],[119.58204400000011,-1.409607],[119.58451880000007,-1.421344599999941],[119.582929,-1.425621299999932],[119.57340540000007,-1.4216282],[119.56869270000004,-1.4213443],[119.567404,-1.422430299999974],[119.56927860000008,-1.424931799999968],[119.56892080000011,-1.428036299999974],[119.5619306000001,-1.427624399999956],[119.55688,-1.431525499999964],[119.5506971000001,-1.432174099999941],[119.54664980000007,-1.4373682],[119.54507890000002,-1.435027499999933],[119.54867930000012,-1.426581699999929],[119.54683950000003,-1.423574099999939],[119.542117,-1.421789699999977],[119.53968860000009,-1.424024899999949],[119.54057550000005,-1.431787799999938],[119.53307930000005,-1.428314799999953],[119.52919290000011,-1.436681199999953],[119.52042260000007,-1.445358799999951],[119.5156181000001,-1.4455902],[119.5117378000001,-1.451117],[119.50832240000011,-1.4507864],[119.50753060000011,-1.447416],[119.51049840000007,-1.442956599999945],[119.51068790000011,-1.438175099999967],[119.51719930000002,-1.438927099999944],[119.52010030000008,-1.433527899999945],[119.52161920000003,-1.423746599999959],[119.51865470000007,-1.412008899999933],[119.51440180000009,-1.410149499999932],[119.51212380000004,-1.416020099999969],[119.50941310000007,-1.4169179],[119.50814390000005,-1.413087],[119.50952360000008,-1.4047339],[119.5033585000001,-1.401269799999966],[119.50267950000011,-1.398775799999953],[119.50470060000009,-1.394896099999926],[119.50216540000008,-1.392946499999937],[119.49539820000007,-1.392763899999977],[119.49052970000002,-1.390889099999924],[119.48130370000001,-1.398500399999932],[119.47844820000012,-1.398331799999937],[119.4519977000001,-1.366904399999953],[119.44755530000009,-1.357707699999935],[119.4479391000001,-1.340885499999956],[119.45584940000003,-1.335002199999963],[119.4565957000001,-1.327896899999928],[119.46430040000007,-1.318633399999953],[119.47330450000004,-1.317045599999972],[119.48196980000012,-1.322005099999956],[119.48631180000007,-1.322344299999941],[119.4890435000001,-1.320624199999941],[119.49194650000004,-1.321814299999971],[119.50101160000008,-1.320033599999931],[119.51056540000002,-1.312973799999952],[119.51283230000001,-1.314554],[119.5194993,-1.315359899999976],[119.52253550000012,-1.310684],[119.52659430000006,-1.300746599999968],[119.52529950000007,-1.295528],[119.52363350000007,-1.2944137],[119.51992880000012,-1.296948199999974],[119.51647150000008,-1.2971875],[119.51891460000002,-1.300594399999966],[119.5170051,-1.302446499999974],[119.51363760000004,-1.300902299999962],[119.51061690000006,-1.302706],[119.51195370000005,-1.300192],[119.50968990000001,-1.298937899999942],[119.5065992000001,-1.301968899999963],[119.5051228000001,-1.299539],[119.50132050000002,-1.299262599999963],[119.49998990000006,-1.300565499999948],[119.49859580000009,-1.2989671],[119.498657,-1.302971099999979],[119.494699,-1.3030745],[119.49611490000007,-1.3045463],[119.49540890000003,-1.305794399999968],[119.49252530000001,-1.304902399999946],[119.4882043,-1.306352899999979],[119.48735750000003,-1.3082881],[119.484499,-1.306112599999949],[119.48399960000006,-1.308544499999925],[119.48193190000006,-1.3067608],[119.48174970000002,-1.3094235],[119.4782451000001,-1.308839499999976],[119.47756150000009,-1.306670899999972],[119.47684840000011,-1.309256699999935],[119.47485060000008,-1.307966099999931],[119.47595720000004,-1.3058951],[119.47330000000011,-1.29779],[119.48053550000009,-1.290253599999971],[119.5037771000001,-1.276477899999975],[119.51863890000004,-1.256529099999966],[119.523986,-1.251484699999935],[119.53826790000005,-1.226689799999974],[119.5421976,-1.222974299999976],[119.54210480000006,-1.200516299999947],[119.55174290000002,-1.202807],[119.55412890000002,-1.204804399999944],[119.560826,-1.203627099999949],[119.5608241000001,-1.201607499999966],[119.5647676000001,-1.201255599999968],[119.56690790000005,-1.196239399999968],[119.56641590000004,-1.187952499999938],[119.569629,-1.185881],[119.57049170000005,-1.181054199999949],[119.57216190000008,-1.1489903],[119.58767720000003,-1.152134399999966],[119.59524820000001,-1.155100199999936],[119.60004910000009,-1.159073299999932],[119.60314610000012,-1.1591327],[119.60725820000005,-1.154105299999969],[119.60700480000003,-1.141495499999962],[119.61058680000008,-1.135432099999946],[119.610421,-1.129879799999969],[119.60860960000002,-1.1285237],[119.60969330000012,-1.125774199999967],[119.609129,-1.120443099999932],[119.6054736000001,-1.118062099999975],[119.60152430000005,-1.1182974],[119.59481710000011,-1.124463599999956],[119.593038,-1.124265799999932],[119.5905120000001,-1.1148521],[119.59043470000006,-1.101489699999945],[119.58750210000005,-1.097518399999956],[119.58903830000008,-1.088293],[119.58804970000006,-1.086770499999943],[119.58245330000011,-1.085417599999971],[119.58004230000006,-1.0754848],[119.58109270000011,-1.073317599999939],[119.57786220000003,-1.0672269],[119.57947170000011,-1.063317799999936],[119.57772010000008,-1.061143799999968],[119.58024980000005,-1.055545099999961],[119.57386250000002,-1.052901099999929],[119.5725106000001,-1.049855499999978],[119.57415370000001,-1.046774299999925],[119.5775096000001,-1.045347499999934],[119.57678220000003,-1.04202],[119.5740154,-1.039439199999947],[119.57812180000008,-1.029931499999975],[119.57544690000009,-1.018624599999953],[119.57337230000007,-1.017202299999951],[119.56586940000011,-1.018698499999971],[119.55685950000009,-1.009547299999952],[119.55905630000007,-0.998536099999967],[119.5583358,-0.990309599999932],[119.56004430000007,-0.9847365],[119.5592094000001,-0.975614599999972],[119.55503230000011,-0.964163299999939],[119.55436620000012,-0.951182],[119.55550070000004,-0.943973599999936],[119.55315580000001,-0.938173699999936],[119.55577390000008,-0.927085499999976],[119.55868490000012,-0.926365299999929],[119.56322460000001,-0.914276199999961],[119.56160460000001,-0.911665],[119.56315370000004,-0.910504799999956],[119.56242110000005,-0.908312699999954],[119.560401,-0.908231499999943],[119.5595105000001,-0.906646499999965],[119.5630612000001,-0.903199599999937],[119.56033620000005,-0.899368699999968],[119.5616748000001,-0.898815499999955],[119.56194670000002,-0.895265599999959],[119.564465,-0.895743299999936],[119.56705040000008,-0.888560699999971],[119.56977310000002,-0.88943],[119.5711966,-0.884541799999965],[119.5701428000001,-0.881844499999943],[119.57278420000011,-0.879667299999937],[119.5707642000001,-0.878185],[119.57203030000005,-0.875247199999933],[119.5703324000001,-0.874745399999938],[119.57164550000005,-0.866023799999937],[119.56958820000011,-0.865516899999932],[119.56799060000003,-0.868496099999959],[119.56633270000009,-0.866651],[119.568821,-0.863568399999963],[119.56246250000004,-0.863354099999924],[119.56242540000005,-0.860322899999971],[119.56478640000012,-0.860554299999933],[119.5659892000001,-0.858846199999959],[119.56456060000005,-0.855855],[119.56568030000005,-0.854480299999977],[119.564418,-0.853124399999956],[119.56203460000006,-0.854810499999928],[119.56147250000004,-0.851433799999938]]]},"properties":{"shapeName":"Mamuju Utara","shapeISO":"","shapeID":"22746128B6862086398550","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[99.10616420000008,0.365377100000046],[99.10414250000008,0.366877800000054],[99.10591240000008,0.371015],[99.10366170000003,0.373781800000074],[99.095788,0.365656400000034],[99.09083650000008,0.365922100000034],[99.08899780000007,0.36219920000002],[99.10348640000007,0.362139600000035],[99.10616420000008,0.365377100000046]]],[[[99.03948970000005,0.761474600000042],[99.04107670000008,0.762695300000075],[99.03887940000004,0.76251220000006],[99.03948970000005,0.761474600000042]]],[[[99.03692630000006,0.765930200000071],[99.03570560000009,0.765686],[99.03869630000008,0.764282200000025],[99.03692630000006,0.765930200000071]]],[[[99.00909420000005,0.77532960000002],[99.01110840000007,0.77948],[99.00811770000007,0.780273400000056],[99.00708010000005,0.777526900000055],[99.00909420000005,0.77532960000002]]],[[[98.946106,0.860717800000032],[98.94567870000009,0.858276400000022],[98.95227050000005,0.858093300000064],[98.95129390000005,0.859924300000046],[98.946106,0.860717800000032]]],[[[98.92211910000003,0.873718300000064],[98.91912840000003,0.873474100000067],[98.92132570000007,0.871704100000045],[98.92211910000003,0.873718300000064]]],[[[98.82672120000007,1.268127400000026],[98.828125,1.271911600000067],[98.82550050000003,1.277282700000058],[98.821106,1.27948],[98.81488040000005,1.276489300000037],[98.81268310000007,1.26989750000007],[98.81451420000008,1.266479500000059],[98.82189940000006,1.265686],[98.82672120000007,1.268127400000026]]],[[[99.51019250000007,1.130890700000066],[99.49742060000005,1.129207100000031],[99.49508850000007,1.127725200000043],[99.49134060000006,1.120804],[99.47516610000008,1.122565500000064],[99.458847,1.115196500000025],[99.44350430000009,1.111881500000038],[99.44117720000008,1.10977250000002],[99.43669890000007,1.099046500000043],[99.42799350000007,1.09228980000006],[99.42902350000008,1.082350100000042],[99.42442350000005,1.07572440000007],[99.42427070000008,1.071563600000047],[99.43475330000007,1.06564080000004],[99.43572980000005,1.062925100000029],[99.44266530000004,1.056177500000047],[99.44433610000004,1.052803400000073],[99.44397740000005,1.043025400000033],[99.44550310000005,1.038984900000059],[99.44236750000005,1.03521470000004],[99.44380940000008,1.030762800000048],[99.44331330000006,1.026157300000023],[99.43967430000004,1.021866500000044],[99.44061730000004,0.995434700000033],[99.439206,0.989222200000029],[99.443123,0.980649600000049],[99.43941490000003,0.975828200000024],[99.42805490000006,0.976323800000046],[99.42018150000007,0.979885900000056],[99.42136920000007,0.98476050000005],[99.41950230000003,0.987946400000055],[99.41242220000004,0.993741500000056],[99.40701290000004,0.995716500000071],[99.39749890000007,1.00636460000004],[99.38900740000008,1.005643500000076],[99.38663480000008,1.007066500000064],[99.37640380000005,1.022692500000062],[99.372597,1.023736400000075],[99.36766050000006,1.020113400000071],[99.35960410000007,1.021950300000071],[99.35727690000004,1.018271500000026],[99.35095990000008,1.017186],[99.34796140000009,1.017692200000056],[99.34703830000007,1.021451100000036],[99.341324,1.025640500000065],[99.33628110000006,1.024424200000055],[99.33420550000005,1.030724500000076],[99.33054330000004,1.034889],[99.32332630000008,1.03864580000004],[99.31952640000009,1.043151900000055],[99.315397,1.043674200000055],[99.31065340000004,1.048223700000051],[99.30910090000003,1.054986],[99.30594620000005,1.057129300000042],[99.305214,1.060114100000021],[99.29820250000006,1.064302500000053],[99.29020150000008,1.078106200000036],[99.28245540000006,1.084097100000065],[99.28165410000008,1.08833670000007],[99.27651970000005,1.09549370000002],[99.27091230000008,1.097202800000048],[99.26864430000006,1.096229400000027],[99.26899710000004,1.089267100000029],[99.26702650000004,1.084484],[99.26782370000006,1.078770700000064],[99.26417520000007,1.074005200000045],[99.26577760000004,1.069931],[99.26159660000008,1.066155],[99.26382440000003,1.057519],[99.26145170000007,1.053018100000031],[99.255249,1.048709100000053],[99.25167840000006,1.048247200000048],[99.24758170000007,1.044056300000022],[99.24052420000004,1.042064900000071],[99.23694580000006,1.042981400000031],[99.23091240000008,1.048475400000029],[99.22770130000004,1.049311300000056],[99.22161860000006,1.048697200000049],[99.22215250000005,1.044326],[99.22103130000005,1.044488400000034],[99.21593430000007,1.054532100000074],[99.21838190000005,1.058648300000073],[99.21393830000005,1.062180500000068],[99.21413780000006,1.063912800000026],[99.21780860000007,1.066260600000021],[99.21732730000008,1.068854700000031],[99.20929980000005,1.074500600000022],[99.21041870000005,1.080844500000069],[99.20329280000004,1.086673500000074],[99.19991290000007,1.086977200000035],[99.19804050000005,1.090696500000035],[99.19263450000005,1.089479500000039],[99.18729390000004,1.095932800000071],[99.184433,1.094894500000066],[99.182228,1.097822200000053],[99.177849,1.097285],[99.17533120000007,1.093513100000052],[99.171219,1.093053600000076],[99.16726670000008,1.099617900000055],[99.16509240000005,1.09988450000003],[99.16337580000004,1.098119100000019],[99.15721130000009,1.099687],[99.15251170000005,1.098278300000061],[99.15140520000006,1.102541],[99.14659870000008,1.10335630000003],[99.14605710000006,1.107232300000021],[99.13437670000008,1.106779],[99.13259120000004,1.110577300000045],[99.13021080000004,1.107229800000027],[99.126358,1.108759700000064],[99.12194830000004,1.107877600000052],[99.12222280000003,1.102967800000044],[99.118042,1.101080900000056],[99.117317,1.107504300000073],[99.13862540000008,1.159200700000042],[99.07060080000008,1.190198400000043],[99.06877910000009,1.192146],[99.07060890000008,1.192410700000039],[99.06807640000005,1.195795100000055],[99.06349250000005,1.196530600000074],[99.04958680000004,1.204542100000026],[99.04901970000009,1.215372600000023],[99.03849910000008,1.225178200000073],[99.03992910000005,1.232328100000075],[99.03939260000004,1.249616],[99.03400490000007,1.251837100000046],[99.03155350000009,1.256024900000057],[99.02992240000003,1.262163900000076],[99.03225,1.266121600000019],[99.02952450000004,1.272073900000066],[99.02082860000007,1.269099],[99.014598,1.270426800000052],[99.00897410000005,1.277179400000023],[99.00527720000008,1.287823400000036],[99.00029820000003,1.288710200000025],[98.99559970000007,1.292591500000071],[98.99186020000008,1.299243],[98.98686940000005,1.298288],[98.98052190000004,1.300804800000037],[98.970575,1.299945700000023],[98.965468,1.317922600000031],[98.96334210000003,1.319465200000025],[98.958393,1.317376100000047],[98.95208740000004,1.328443200000038],[98.94698040000009,1.329464600000051],[98.93839380000009,1.327882700000032],[98.93676620000008,1.329056],[98.92685850000004,1.321804],[98.92452020000007,1.315814300000056],[98.92042390000006,1.310586100000023],[98.92091660000006,1.307865700000036],[98.91194140000005,1.302553300000056],[98.908407,1.294285],[98.90573320000004,1.292330900000024],[98.90277330000004,1.298376300000029],[98.90003150000007,1.297262500000045],[98.89911040000004,1.294756200000052],[98.89675260000007,1.299486400000035],[98.89379810000008,1.29679120000003],[98.88865710000005,1.300411300000064],[98.88499420000005,1.297883600000034],[98.88190960000009,1.298676200000045],[98.88137410000007,1.296469900000034],[98.86830750000007,1.286957400000063],[98.86769710000004,1.282226700000024],[98.86990980000007,1.281387400000028],[98.86782420000009,1.279215900000054],[98.865437,1.279777500000023],[98.85608560000009,1.287981400000035],[98.85264370000004,1.285995200000059],[98.84841880000005,1.297259600000075],[98.84595280000008,1.298968700000046],[98.84399940000009,1.29730840000002],[98.84472660000006,1.293701200000044],[98.84289550000005,1.288330100000053],[98.84411620000009,1.277893100000028],[98.86903560000007,1.227942800000051],[98.86740390000006,1.219998400000065],[98.86383520000004,1.217893300000071],[98.90102480000007,1.146001],[98.90828410000006,1.129403100000047],[98.91773330000007,1.098038700000075],[98.92790010000004,1.044201800000053],[98.96372960000008,0.95202560000007],[98.97308350000009,0.922119100000032],[98.97430420000006,0.921508800000026],[98.97332760000006,0.920105],[98.97607420000008,0.897522],[98.98150630000004,0.883117700000071],[98.98187260000003,0.87109380000004],[98.98510740000006,0.864502],[98.98388670000008,0.86370850000003],[98.98571780000003,0.854126],[98.98211670000006,0.847106900000028],[98.97729490000006,0.845092800000032],[98.97088620000005,0.84729],[98.97070310000004,0.845275900000047],[98.97448730000008,0.84411620000003],[98.97607420000008,0.840515100000061],[98.979126,0.83911130000007],[98.98071290000007,0.83587650000004],[98.98413090000008,0.83587650000004],[98.989502,0.83288570000002],[98.99328610000003,0.822509800000034],[98.99627690000005,0.820129400000042],[98.99951170000008,0.823730500000067],[99.00592040000004,0.82312010000004],[99.00628660000007,0.825500500000032],[99.00811770000007,0.826293900000053],[99.01269530000008,0.824096700000041],[99.02288820000007,0.823303200000055],[99.01287840000003,0.823730500000067],[99.01367190000008,0.81872560000005],[99.02032470000006,0.812927200000047],[99.02050780000008,0.806884800000034],[99.02288820000007,0.798889200000076],[99.03289790000008,0.790100100000075],[99.03692630000006,0.784118700000022],[99.03808590000006,0.781494100000032],[99.03710940000008,0.77948],[99.04089360000006,0.773925800000029],[99.03887940000004,0.77032470000006],[99.04290770000006,0.768676800000037],[99.04351810000009,0.761901900000055],[99.04547120000007,0.762085],[99.04547120000007,0.760314900000026],[99.04827880000005,0.760498],[99.05010990000005,0.752685500000041],[99.05267330000004,0.751098600000034],[99.05627440000006,0.743530300000032],[99.05828860000008,0.743286100000034],[99.06048580000004,0.719726600000058],[99.05898760000008,0.712725300000045],[99.056609,0.710015800000065],[99.05929620000006,0.704998700000033],[99.06214980000004,0.690237800000034],[99.05719060000007,0.684247200000073],[99.05576380000008,0.678089700000044],[99.04846240000006,0.671528700000067],[99.04988150000008,0.669341200000019],[99.05415420000008,0.670814700000051],[99.06063910000006,0.668198400000051],[99.06451480000004,0.663799500000039],[99.06592630000006,0.658854100000042],[99.05764080000006,0.655217600000071],[99.05520690000009,0.651152500000023],[99.05905230000008,0.647395500000073],[99.05766370000003,0.644899200000054],[99.05857920000005,0.639097900000024],[99.05331470000004,0.641238500000043],[99.04941620000005,0.645447200000035],[99.04671520000005,0.643997300000024],[99.04707380000008,0.641429600000038],[99.04512830000004,0.639932],[99.04534960000007,0.638006100000041],[99.04708920000007,0.635485700000061],[99.05001120000009,0.635699300000056],[99.05062940000005,0.63370210000005],[99.04776830000009,0.63020750000004],[99.04892030000008,0.624049600000035],[99.05086570000003,0.622147300000051],[99.05977690000003,0.621409100000051],[99.06131040000008,0.626544200000069],[99.06406470000007,0.628089200000034],[99.06518620000008,0.632107100000042],[99.06987840000005,0.62994290000006],[99.074868,0.63017050000002],[99.07409760000007,0.625139700000034],[99.07508920000004,0.621763500000043],[99.07800390000006,0.619837300000029],[99.08430560000005,0.620264400000053],[99.08808220000009,0.616887700000063],[99.09768890000004,0.603096400000027],[99.10467040000003,0.585134400000072],[99.10975840000003,0.563910400000054],[99.10933770000008,0.549694100000067],[99.10625770000007,0.534902700000032],[99.10234730000008,0.529531500000076],[99.09835280000004,0.528768700000057],[99.08986260000006,0.532545900000059],[99.08874120000007,0.531903900000032],[99.08963050000006,0.525771200000065],[99.09490810000005,0.519545900000026],[99.09406720000004,0.514506400000073],[99.09158190000005,0.511105600000064],[99.09187090000006,0.508704800000032],[99.094156,0.503951200000074],[99.09789180000007,0.502716900000053],[99.10153050000008,0.503337700000031],[99.10396660000004,0.508123500000067],[99.11275940000007,0.51132130000002],[99.11678140000004,0.50899140000007],[99.11995080000008,0.496494900000073],[99.11877570000007,0.492885500000057],[99.12375780000008,0.488915200000065],[99.12788520000004,0.48151880000006],[99.13500360000006,0.458376500000043],[99.13800950000007,0.442699700000048],[99.13980140000007,0.420417800000052],[99.137085,0.39971920000005],[99.135498,0.398071300000026],[99.13409420000005,0.378295900000069],[99.119873,0.362915],[99.12072750000004,0.353088400000047],[99.11352540000007,0.349304200000063],[99.11132810000004,0.350280800000064],[99.10888670000008,0.345886200000052],[99.11492920000006,0.344482400000061],[99.11529540000004,0.34069820000002],[99.119873,0.337707500000022],[99.12249760000009,0.338684100000023],[99.128479,0.333129900000074],[99.13348390000004,0.333129900000074],[99.13488770000004,0.329528800000048],[99.13751220000006,0.33288570000002],[99.14147950000006,0.331726100000026],[99.14392090000007,0.331909200000041],[99.14447020000006,0.333313],[99.147522,0.331481900000028],[99.15747070000003,0.308471700000041],[99.16052250000007,0.290893600000061],[99.16052250000007,0.274475100000075],[99.15808110000006,0.266479500000059],[99.15271,0.263305700000046],[99.14691160000007,0.264526400000022],[99.14129640000004,0.263488800000061],[99.14007570000007,0.259887700000036],[99.137085,0.257690400000058],[99.13732910000004,0.253479],[99.14031980000004,0.250488300000029],[99.15087890000007,0.249877900000058],[99.15844130000005,0.245610300000067],[99.16002820000006,0.242185600000028],[99.15834990000008,0.239329800000064],[99.16160010000004,0.240637500000048],[99.16352260000008,0.239487],[99.16579630000007,0.236181800000054],[99.16643540000007,0.229885800000034],[99.17305180000005,0.240972700000043],[99.17341050000005,0.24799790000003],[99.17606560000007,0.252420900000061],[99.18425940000009,0.26043020000003],[99.18728070000009,0.26606350000003],[99.19258640000004,0.269765500000062],[99.19517740000003,0.27353080000006],[99.19389390000003,0.276458],[99.19433410000005,0.282212700000059],[99.19976950000006,0.289593300000035],[99.22477230000004,0.30790810000002],[99.23673030000003,0.322669400000052],[99.24868820000006,0.332510100000036],[99.26553770000004,0.337156800000059],[99.29733420000008,0.336882500000058],[99.31460770000007,0.333499800000027],[99.31737860000004,0.334646300000031],[99.33405660000005,0.357999600000028],[99.34981150000004,0.386327200000039],[99.36087420000007,0.411775700000021],[99.36611880000004,0.431403500000044],[99.38477830000005,0.449168600000064],[99.38832630000007,0.455310200000042],[99.39785420000004,0.46493090000007],[99.40570070000007,0.489176900000075],[99.41178790000004,0.493014],[99.42909240000006,0.491973700000074],[99.43729870000004,0.495667300000036],[99.44041180000005,0.499994900000047],[99.44564590000005,0.503866800000026],[99.44589940000009,0.506417500000055],[99.45800590000005,0.514887800000054],[99.46277060000006,0.516382100000044],[99.46873310000007,0.523615200000052],[99.47441990000004,0.52418160000002],[99.47734020000007,0.526603700000067],[99.48035880000003,0.526297500000055],[99.48959720000005,0.529606100000024],[99.49142930000005,0.532271600000058],[99.50378220000005,0.539482],[99.51918120000005,0.551980800000024],[99.52077280000003,0.550074700000039],[99.51978110000005,0.545709],[99.51357990000008,0.539401],[99.51334130000004,0.537661800000024],[99.51878660000006,0.535289200000022],[99.52230670000006,0.529321500000037],[99.530494,0.521812700000055],[99.54688550000009,0.517509600000039],[99.55933990000005,0.510566800000049],[99.57300790000005,0.509546100000023],[99.57641450000006,0.510134400000027],[99.58337060000008,0.515733200000057],[99.59045270000007,0.515973900000063],[99.59377150000006,0.521659700000043],[99.597823,0.523952300000076],[99.60834250000005,0.524831900000038],[99.61932750000005,0.530123200000048],[99.63029410000007,0.542708700000048],[99.63830220000006,0.546964700000046],[99.64191350000004,0.545774400000028],[99.64941740000006,0.540151900000069],[99.65030620000005,0.538528],[99.64930690000006,0.532348400000046],[99.65112990000006,0.531005100000073],[99.65554740000005,0.531240500000024],[99.66113240000004,0.524634200000037],[99.66537820000008,0.516177400000061],[99.66158270000005,0.507094800000061],[99.66535140000008,0.501669800000059],[99.66636190000008,0.491108800000063],[99.67406430000005,0.484307400000034],[99.67631520000003,0.475978400000031],[99.68280780000003,0.469192100000043],[99.70078580000006,0.468089900000052],[99.70869620000008,0.459167900000068],[99.72011570000006,0.452363400000024],[99.72671050000008,0.45321210000003],[99.72911540000007,0.454908700000033],[99.73513320000006,0.464057900000057],[99.73902610000005,0.474775700000066],[99.74247160000004,0.477791900000057],[99.75136050000003,0.479044800000054],[99.75769570000006,0.477451100000053],[99.78090150000008,0.482165800000075],[99.78741530000008,0.481574300000034],[99.80417560000006,0.473103900000069],[99.80642290000009,0.471408],[99.80880840000003,0.465073600000039],[99.82033120000006,0.460520900000063],[99.83675560000006,0.458642400000031],[99.84938960000005,0.469918800000073],[99.85912020000006,0.463337700000068],[99.86342780000007,0.464942],[99.87023440000007,0.464673700000048],[99.87608440000008,0.468631600000037],[99.88230590000006,0.466491],[99.89293140000007,0.470524600000033],[99.90217050000007,0.469934800000033],[99.90616830000005,0.471298700000034],[99.91738350000008,0.481641400000058],[99.92024470000007,0.487818700000048],[99.92780580000004,0.496205700000075],[99.93641770000005,0.503459100000043],[99.94622310000005,0.509707700000035],[99.95524110000008,0.510368],[99.96105350000005,0.513579400000026],[99.95958210000003,0.516058],[99.95203690000005,0.520457400000055],[99.95016,0.524185400000022],[99.95640060000005,0.530771100000038],[99.96468380000005,0.545837300000073],[99.96487740000003,0.554366200000061],[99.96084260000003,0.560319600000071],[99.959768,0.569541400000048],[99.95171590000007,0.576215700000034],[99.94078720000005,0.592830400000025],[99.93077320000003,0.597178500000041],[99.92722,0.60420890000006],[99.92038220000006,0.605444600000055],[99.923296,0.615290300000026],[99.90924660000007,0.625632600000074],[99.90963210000007,0.628962300000069],[99.92505890000007,0.631170300000065],[99.92519710000005,0.632873],[99.92046570000008,0.643308200000035],[99.91595150000006,0.649572400000068],[99.91662850000006,0.654766800000061],[99.91369360000004,0.663738700000067],[99.91114790000006,0.679864900000041],[99.90473680000008,0.680586],[99.896201,0.676593],[99.89296780000006,0.679344],[99.88884950000005,0.686831600000062],[99.88545790000006,0.688674],[99.85305170000004,0.682959800000049],[99.84701710000007,0.684965600000055],[99.83087080000007,0.696217200000035],[99.83415840000004,0.701340900000048],[99.83518940000005,0.70901850000007],[99.82968270000003,0.716044900000043],[99.82529480000005,0.73591],[99.82606610000005,0.739725600000043],[99.83154450000006,0.746017],[99.83403140000007,0.751427200000023],[99.83351270000009,0.755681700000025],[99.834833,0.757504400000073],[99.84357330000006,0.759370600000068],[99.84632990000006,0.765675500000043],[99.846222,0.768931],[99.84381280000008,0.772078500000021],[99.84476060000009,0.776039400000059],[99.84311140000005,0.779301800000042],[99.84682820000006,0.791097600000057],[99.84381140000005,0.79757],[99.84590710000003,0.807699400000047],[99.84480820000005,0.814259100000072],[99.840935,0.817677500000059],[99.83667020000007,0.819532200000026],[99.83442670000005,0.826964500000031],[99.82716350000004,0.831267700000069],[99.82588180000005,0.833737400000075],[99.81981680000007,0.83620570000005],[99.81320980000004,0.846891800000037],[99.80565640000003,0.84996],[99.80001810000005,0.857287500000041],[99.79081720000005,0.854515200000037],[99.78419520000006,0.857883700000059],[99.76881430000009,0.858976200000029],[99.76457230000005,0.863972800000056],[99.75940710000003,0.861513],[99.75212080000006,0.866312600000072],[99.74456020000008,0.86506],[99.74277480000006,0.87472740000004],[99.73989130000007,0.878645300000073],[99.73483280000005,0.881830400000069],[99.73307810000006,0.885099500000024],[99.73484060000004,0.890262800000073],[99.73413840000006,0.892421700000057],[99.721443,0.895384200000024],[99.71857460000007,0.90233580000006],[99.71316510000008,0.906294700000046],[99.71279890000005,0.914693400000033],[99.70055390000005,0.92676780000005],[99.69251240000006,0.931471800000054],[99.68874370000003,0.933257900000058],[99.675995,0.931837],[99.66915870000008,0.927390400000036],[99.66134670000008,0.928402400000039],[99.658043,0.926945800000055],[99.65050520000005,0.91938650000003],[99.643158,0.919093800000041],[99.64015190000003,0.920197400000063],[99.63568880000008,0.927337600000044],[99.62985210000005,0.93109],[99.62541950000008,0.936315400000069],[99.62573220000007,0.942024700000047],[99.624344,0.944104500000037],[99.61451720000008,0.949505200000033],[99.60087570000007,0.951351200000033],[99.59541350000006,0.963938700000028],[99.58765410000007,0.968378600000051],[99.58633450000008,0.970801100000074],[99.59019460000007,0.977313],[99.58930210000005,0.980773],[99.59057590000003,0.983297300000061],[99.59883910000008,0.993726400000071],[99.59732080000003,1.006421100000068],[99.59390240000005,1.011056800000063],[99.58095550000007,1.019387600000073],[99.573128,1.033255100000019],[99.56952650000005,1.041732600000046],[99.56795010000008,1.051630100000068],[99.56767260000004,1.056359900000075],[99.569275,1.061219],[99.56839770000005,1.065084900000045],[99.56081390000008,1.069324100000074],[99.54669190000004,1.070868800000028],[99.54386890000006,1.091299400000025],[99.53913110000008,1.09739490000004],[99.526703,1.107176400000071],[99.51509070000009,1.128104],[99.51019250000007,1.130890700000066]]]]},"properties":{"shapeName":"Mandailing Natal","shapeISO":"","shapeID":"22746128B12142935847303","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[120.29601020000007,-8.872457],[120.2870981000001,-8.868300199999965],[120.28126630000008,-8.870497899999975],[120.2739563,-8.8761578],[120.26158140000007,-8.895583199999976],[120.25623320000011,-8.901011499999981],[120.2595596000001,-8.906908],[120.26251220000006,-8.90717509999996],[120.27439120000008,-8.915741899999944],[120.2803345000001,-8.912612899999942],[120.28774260000012,-8.911895799999968],[120.30584440000007,-8.900576899999976],[120.30462480000006,-8.893614899999932],[120.30574190000004,-8.890769899999952],[120.30495860000008,-8.880641899999944],[120.30143650000002,-8.875267],[120.29601020000007,-8.872457]]],[[[120.49278030000005,-8.2926834],[120.48249050000004,-8.2948141],[120.46704100000011,-8.295456899999976],[120.46128850000002,-8.2915049],[120.45932010000001,-8.286693599999978],[120.45143890000008,-8.285195299999941],[120.45010380000008,-8.281405499999948],[120.45305630000007,-8.274702099999956],[120.44968420000009,-8.2604542],[120.4449234000001,-8.255515099999968],[120.4431839,-8.249223699999959],[120.43209840000009,-8.244530699999927],[120.4286499000001,-8.2409229],[120.41941830000007,-8.244132],[120.4136658000001,-8.251375199999927],[120.41438290000008,-8.262532199999953],[120.41258240000002,-8.267722099999958],[120.412941,-8.272848099999976],[120.40790560000005,-8.280702599999927],[120.39530940000009,-8.283123],[120.38795470000002,-8.288105899999948],[120.38079830000004,-8.288715299999978],[120.3780746000001,-8.286788],[120.37075040000002,-8.293522799999948],[120.36970520000011,-8.292154299999936],[120.36737060000007,-8.294237099999975],[120.36331940000002,-8.293602],[120.360672,-8.295466399999953],[120.3519516,-8.288953799999945],[120.34082030000002,-8.2873249],[120.33756260000007,-8.282356299999947],[120.33488470000009,-8.281399699999952],[120.33047490000001,-8.280938099999958],[120.32347870000001,-8.283500699999934],[120.30648040000005,-8.282280899999932],[120.29827880000005,-8.284915],[120.29156490000003,-8.280685399999982],[120.28968810000003,-8.286222399999929],[120.288765,-8.298786099999973],[120.29048920000002,-8.301826499999947],[120.29033660000005,-8.308186499999977],[120.29261780000002,-8.3130865],[120.29084020000005,-8.317730899999958],[120.29103850000001,-8.327463199999954],[120.28804020000007,-8.331455199999937],[120.28611760000001,-8.339810399999976],[120.28890230000002,-8.344826699999942],[120.2880249000001,-8.350878699999953],[120.2889709000001,-8.3570948],[120.28585050000004,-8.376296099999934],[120.2857666000001,-8.386162799999966],[120.2829819000001,-8.391694099999938],[120.2848206000001,-8.405486099999962],[120.28301240000008,-8.4177437],[120.28402710000012,-8.422610299999974],[120.29309080000007,-8.431345],[120.29580690000012,-8.4396858],[120.3062897000001,-8.451384599999926],[120.30878450000012,-8.44938469999994],[120.31256870000004,-8.4500485],[120.3163757000001,-8.44758509999997],[120.31736750000005,-8.444726899999978],[120.32176970000012,-8.444494299999974],[120.32687380000004,-8.436861],[120.33129880000001,-8.435771],[120.33126070000003,-8.4410915],[120.33335110000007,-8.440522199999975],[120.33524320000004,-8.437767],[120.33819580000011,-8.436488099999963],[120.33702090000008,-8.433548],[120.3458786000001,-8.426138899999955],[120.34983060000002,-8.42764],[120.35254670000006,-8.4258251],[120.357132,-8.4296084],[120.36442560000012,-8.428933099999938],[120.36928560000001,-8.431114199999968],[120.3769989000001,-8.428894],[120.3869247,-8.429235499999947],[120.38770290000002,-8.42834659999994],[120.38609310000004,-8.4261398],[120.38943480000012,-8.425306299999932],[120.3906098000001,-8.4304018],[120.39176940000004,-8.427936599999953],[120.39320380000004,-8.429727499999956],[120.39572910000004,-8.429402399999958],[120.39565280000011,-8.433259],[120.39809420000006,-8.437052699999981],[120.39590460000011,-8.438569099999938],[120.39769740000008,-8.439432199999942],[120.39739230000009,-8.442689],[120.39927680000005,-8.4438639],[120.39879610000003,-8.4507799],[120.39278410000009,-8.454300899999964],[120.39469150000002,-8.454655699999932],[120.39456180000002,-8.457397499999956],[120.39707180000005,-8.457365],[120.399086,-8.460941299999945],[120.39719390000005,-8.461532599999941],[120.39014430000009,-8.458337799999981],[120.38954930000011,-8.465622899999971],[120.39175420000004,-8.467001],[120.38899990000004,-8.469750399999953],[120.38699340000005,-8.474932699999954],[120.3882446,-8.478367799999944],[120.38757320000002,-8.483404199999939],[120.389328,-8.485197099999937],[120.38819120000005,-8.486143099999936],[120.38648230000001,-8.484885199999951],[120.38408660000005,-8.487907399999926],[120.38056940000001,-8.48817349999996],[120.38095090000002,-8.494303699999932],[120.37574770000003,-8.499901799999975],[120.37386320000007,-8.5059919],[120.3752975000001,-8.507564499999944],[120.37278750000007,-8.510233899999946],[120.3737106000001,-8.512014399999941],[120.37121580000007,-8.512384399999974],[120.372467,-8.514711399999953],[120.36275480000006,-8.518126499999937],[120.36103060000005,-8.5210876],[120.35625460000006,-8.522162399999957],[120.35497280000004,-8.5237398],[120.35383610000008,-8.5226727],[120.3523712000001,-8.524391199999968],[120.36054230000002,-8.54706],[120.35840610000002,-8.55914789999997],[120.36115260000008,-8.568506199999945],[120.35171510000009,-8.57187369999997],[120.34361270000011,-8.57143979999995],[120.33569330000012,-8.563756],[120.3325119000001,-8.558346799999981],[120.33041380000009,-8.558746299999939],[120.32641600000011,-8.563427899999965],[120.31909180000002,-8.567871099999934],[120.317482,-8.578505499999949],[120.31513220000011,-8.582884799999931],[120.29889680000008,-8.585826899999972],[120.29091640000001,-8.590641],[120.28515630000004,-8.597451199999966],[120.28513340000006,-8.605007199999932],[120.28223420000006,-8.609445599999958],[120.28051760000005,-8.625216499999965],[120.28890990000002,-8.633100499999955],[120.2902451000001,-8.637234699999965],[120.28949740000007,-8.642088899999976],[120.28773500000011,-8.642597199999955],[120.28741460000003,-8.644577],[120.2817993000001,-8.644970899999976],[120.27985380000007,-8.647877699999981],[120.28195950000008,-8.649055499999974],[120.28173060000006,-8.651600799999926],[120.28607940000006,-8.65460109999998],[120.28590390000011,-8.656294799999955],[120.28795620000005,-8.655601499999932],[120.28826140000001,-8.658056299999942],[120.28955840000003,-8.657424899999967],[120.2902908000001,-8.660976399999981],[120.29587560000004,-8.663211799999942],[120.29393770000001,-8.66538049999997],[120.29531860000009,-8.664624199999935],[120.29515070000002,-8.666271199999926],[120.2964783000001,-8.666432399999962],[120.295517,-8.668066],[120.29642490000003,-8.669194199999936],[120.2951203,-8.669965699999977],[120.29682920000005,-8.672052399999927],[120.29942320000009,-8.670649499999968],[120.2991257000001,-8.672450099999935],[120.30368810000004,-8.675248099999976],[120.30606840000007,-8.675183299999958],[120.311409,-8.667634],[120.31281280000007,-8.667678799999976],[120.31224820000011,-8.669491799999946],[120.3151855000001,-8.670658099999969],[120.32101940000007,-8.681468799999948],[120.33156730000007,-8.688382499999932],[120.33257060000005,-8.694000899999935],[120.3274384,-8.709049199999981],[120.3267823000001,-8.717645599999969],[120.3229904000001,-8.721893299999977],[120.31414030000008,-8.7241564],[120.31359860000009,-8.733128499999964],[120.31201170000008,-8.735728299999948],[120.30330660000004,-8.7417069],[120.29338840000003,-8.756526899999926],[120.28823850000003,-8.757280299999934],[120.28780360000007,-8.758537299999944],[120.28545380000003,-8.757781],[120.28410340000005,-8.7594128],[120.27380370000003,-8.759434699999929],[120.271904,-8.76210969999994],[120.2733459000001,-8.767615299999932],[120.28149410000003,-8.7788286],[120.28372190000005,-8.787242899999967],[120.28107450000005,-8.788996699999927],[120.26493070000004,-8.789816899999948],[120.26158910000004,-8.7950954],[120.25624660000005,-8.7961665],[120.25097710000011,-8.795212399999969],[120.24741670000003,-8.799077099999977],[120.24018390000003,-8.802909099999965],[120.23891550000008,-8.808991699999979],[120.23285670000007,-8.812547699999925],[120.23547360000009,-8.816068599999937],[120.23507690000008,-8.819036499999982],[120.24003240000002,-8.830024299999934],[120.23398120000002,-8.837316699999974],[120.23135380000008,-8.83773519999994],[120.2281494,-8.841511699999955],[120.23300340000003,-8.844262699999945],[120.24517860000003,-8.845169299999952],[120.24667740000007,-8.847441],[120.25048630000003,-8.848795399999972],[120.26611580000008,-8.846541599999966],[120.2742386000001,-8.850689899999963],[120.27722930000004,-8.853771199999926],[120.2817917000001,-8.850553499999933],[120.28620910000006,-8.849873499999944],[120.29776,-8.844268799999952],[120.30345150000005,-8.8488569],[120.30658720000008,-8.849385299999938],[120.31136320000007,-8.855163599999969],[120.31327060000001,-8.855567],[120.31728170000008,-8.853642199999967],[120.31987,-8.849418599999979],[120.33110480000005,-8.841745599999967],[120.33744050000007,-8.834085499999958],[120.35086060000003,-8.832357399999978],[120.36334990000012,-8.824517299999968],[120.366784,-8.824450299999967],[120.36860680000007,-8.822034499999972],[120.36873250000008,-8.816309199999978],[120.37176620000002,-8.819153699999958],[120.384201,-8.817655599999966],[120.39141810000001,-8.826168499999937],[120.39372850000007,-8.826668899999959],[120.39686160000008,-8.825441599999976],[120.39729980000004,-8.823905099999934],[120.39807890000009,-8.825391799999977],[120.4041214,-8.824139599999967],[120.42067720000011,-8.816888799999958],[120.42665860000011,-8.819628699999953],[120.42991640000002,-8.819486599999948],[120.43792730000007,-8.813614799999925],[120.45396420000009,-8.817671799999971],[120.47029880000002,-8.817133],[120.47851560000004,-8.8205452],[120.48644260000003,-8.819592499999942],[120.48994440000001,-8.821384399999943],[120.50758360000009,-8.818721799999935],[120.51369480000005,-8.821025799999973],[120.51839140000004,-8.818397],[120.51539830000002,-8.815488399999936],[120.5137830000001,-8.8156444],[120.5132731000001,-8.8083513],[120.51197270000011,-8.8081389],[120.51033010000003,-8.803503399999954],[120.50844630000006,-8.785654199999954],[120.5037704,-8.78170229999995],[120.508497,-8.7737428],[120.50655620000009,-8.770546599999932],[120.50552070000003,-8.763378699999976],[120.50790870000003,-8.762156199999936],[120.5065221000001,-8.7563345],[120.50726290000011,-8.752574099999947],[120.50312370000006,-8.747311599999932],[120.50184860000002,-8.742804299999932],[120.50145430000009,-8.718623699999966],[120.49624230000006,-8.711895499999969],[120.491601,-8.702362299999947],[120.47907390000012,-8.692657899999972],[120.46850940000002,-8.673185899999964],[120.47766810000007,-8.662772],[120.48141670000007,-8.652369199999953],[120.48791310000001,-8.650154699999973],[120.4919771000001,-8.64498029999993],[120.4956585000001,-8.645952299999976],[120.49892370000009,-8.643373099999963],[120.50498560000005,-8.643019399999957],[120.51659330000007,-8.638237],[120.52389570000003,-8.638035899999977],[120.5224151000001,-8.630960499999958],[120.52425690000007,-8.617566599999975],[120.52344060000007,-8.609550899999931],[120.52694140000006,-8.605871399999955],[120.52677190000009,-8.602552699999933],[120.52345080000009,-8.600732899999969],[120.52365860000009,-8.59898279999993],[120.51759250000009,-8.592797599999926],[120.51774320000004,-8.590028699999948],[120.51588870000012,-8.587122699999952],[120.51756690000002,-8.584290899999928],[120.51588750000008,-8.5800266],[120.51391440000009,-8.57997219999993],[120.51337380000007,-8.577630599999964],[120.51093130000004,-8.577770599999951],[120.51223750000008,-8.570988899999975],[120.5104629000001,-8.565115899999967],[120.5121405000001,-8.561875099999952],[120.51430710000011,-8.561938399999974],[120.51592470000003,-8.558414699999958],[120.51517560000002,-8.554028],[120.51770460000012,-8.5472253],[120.52121620000003,-8.544594],[120.52273490000005,-8.54548559999995],[120.52330460000007,-8.543578499999967],[120.53006660000005,-8.538006799999948],[120.53014810000002,-8.533392399999968],[120.5321619,-8.532009399999936],[120.53202740000006,-8.529608399999972],[120.53412680000008,-8.52678229999998],[120.53205710000009,-8.52332249999995],[120.53822830000001,-8.518850099999952],[120.54054520000011,-8.518612899999937],[120.54311770000004,-8.514963799999975],[120.54092440000011,-8.511950299999967],[120.54513290000011,-8.505937],[120.54642210000009,-8.4939943],[120.54565760000003,-8.492083299999933],[120.54251950000003,-8.491154],[120.53809190000004,-8.47242579999994],[120.53570490000004,-8.469272499999931],[120.53691970000011,-8.467684099999929],[120.53224470000009,-8.460316599999942],[120.53498480000007,-8.450902799999938],[120.53058140000007,-8.448121599999979],[120.53055180000001,-8.444894699999963],[120.52428140000006,-8.437904699999933],[120.52186630000006,-8.434088199999962],[120.52210230000003,-8.432097699999929],[120.52010630000007,-8.431211699999949],[120.52102910000008,-8.42668329999998],[120.52026020000005,-8.424746699999957],[120.51693950000003,-8.423305],[120.51678410000011,-8.416883],[120.51208090000011,-8.41518919999993],[120.51352350000002,-8.408906899999977],[120.506596,-8.407318199999963],[120.50589650000006,-8.403115299999968],[120.50208710000004,-8.404026599999952],[120.49919450000004,-8.4030428],[120.50022600000011,-8.398856],[120.498503,-8.396558199999959],[120.498766,-8.3935977],[120.49300950000008,-8.389555],[120.48879610000006,-8.388387],[120.48446230000002,-8.383187899999939],[120.478053,-8.382054399999959],[120.47795970000004,-8.367394099999956],[120.47951720000003,-8.362724799999967],[120.47734320000006,-8.357817799999964],[120.47864690000006,-8.353697799999964],[120.48263610000004,-8.351412899999957],[120.48362210000005,-8.349030099999936],[120.481882,-8.341668199999958],[120.48298580000005,-8.333261899999968],[120.4797311000001,-8.3287994],[120.4803793000001,-8.32149],[120.48261080000009,-8.313695099999961],[120.48545350000006,-8.313457899999946],[120.49151580000012,-8.316003199999955],[120.49403860000007,-8.310932799999932],[120.49603280000008,-8.3013983],[120.49278030000005,-8.2926834]]]]},"properties":{"shapeName":"Manggarai","shapeISO":"","shapeID":"22746128B88812817607457","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[119.78635410000004,-8.794474599999944],[119.78700260000005,-8.790735299999938],[119.78271490000009,-8.791260699999953],[119.78290560000005,-8.794364899999948],[119.78083040000001,-8.794116],[119.771492,-8.806742699999973],[119.77075960000002,-8.818460499999958],[119.7786407000001,-8.824083299999927],[119.7802124000001,-8.820517499999937],[119.78475950000006,-8.820806499999946],[119.78605650000009,-8.8241062],[119.78701780000006,-8.820407899999964],[119.78965,-8.8257904],[119.79142,-8.824875799999973],[119.79125980000003,-8.822977099999946],[119.79441070000007,-8.824050899999975],[119.794632,-8.82148079999996],[119.79830170000002,-8.821878399999946],[119.7987137,-8.817192099999943],[119.80104830000005,-8.814292],[119.80168150000009,-8.803472499999941],[119.80301670000006,-8.800865199999976],[119.80049140000006,-8.798342699999978],[119.7921143000001,-8.796991299999945],[119.78635410000004,-8.794474599999944]]],[[[119.65500640000005,-8.784318],[119.64590460000011,-8.793587699999932],[119.6374207,-8.796857799999941],[119.6321716000001,-8.800715399999945],[119.62998960000004,-8.80526539999994],[119.63062290000005,-8.807039299999929],[119.6474075000001,-8.809465399999965],[119.65109250000012,-8.803980799999977],[119.65287780000006,-8.814569499999948],[119.65531160000012,-8.814546599999971],[119.65813450000007,-8.810309399999937],[119.65899660000002,-8.818332699999928],[119.66028590000008,-8.816206],[119.664299,-8.814846],[119.66728210000008,-8.816718099999946],[119.66632080000011,-8.81095309999995],[119.66775510000002,-8.807891899999959],[119.66993710000008,-8.808061599999974],[119.667305,-8.8050051],[119.66721340000004,-8.79892639999997],[119.6634216000001,-8.798094699999979],[119.6591873000001,-8.794800799999962],[119.65843960000007,-8.790459599999963],[119.65469360000009,-8.790255599999966],[119.65449520000004,-8.78817749999996],[119.65621950000002,-8.7868404],[119.65500640000005,-8.784318]]],[[[119.6590347,-8.78437139999994],[119.65756220000003,-8.784705199999962],[119.65962220000006,-8.786385499999938],[119.6590347,-8.78437139999994]]],[[[119.80094150000002,-8.784416199999953],[119.79827880000005,-8.783422499999972],[119.79773710000006,-8.784559299999955],[119.80094150000002,-8.784416199999953]]],[[[119.80742650000002,-8.782023399999957],[119.80346680000002,-8.782330499999944],[119.80192570000008,-8.785891499999934],[119.803833,-8.789140699999962],[119.80538180000008,-8.7882691],[119.80440520000002,-8.786230099999955],[119.80718230000002,-8.7856169],[119.80742650000002,-8.782023399999957]]],[[[119.60401910000007,-8.747894299999928],[119.60226440000008,-8.748124099999927],[119.6042404000001,-8.748773599999936],[119.60401910000007,-8.747894299999928]]],[[[119.42538450000006,-8.744149199999981],[119.42324830000007,-8.74414539999998],[119.419342,-8.754870399999959],[119.4225388000001,-8.758056599999975],[119.42192840000007,-8.760038399999928],[119.42314150000004,-8.761632],[119.42491910000001,-8.760296799999935],[119.42728430000011,-8.763896],[119.43058010000004,-8.764492099999927],[119.4307404000001,-8.760492299999953],[119.4274368,-8.753663],[119.42710110000007,-8.746258699999942],[119.42538450000006,-8.744149199999981]]],[[[119.4115829000001,-8.741910899999937],[119.40958410000007,-8.7425308],[119.41214750000006,-8.74292749999995],[119.4115829000001,-8.741910899999937]]],[[[119.37469480000004,-8.738797199999965],[119.36937710000007,-8.7393799],[119.37097170000004,-8.741246199999978],[119.36755370000003,-8.740685499999927],[119.367775,-8.742798799999946],[119.36646270000006,-8.742949499999952],[119.36385350000012,-8.747800799999936],[119.3673477000001,-8.74778269999996],[119.36997980000001,-8.744842499999947],[119.37498470000003,-8.744881599999928],[119.37346650000006,-8.743024799999944],[119.37469480000004,-8.738797199999965]]],[[[119.48175050000009,-8.73873139999995],[119.48170470000002,-8.736793499999976],[119.48040010000011,-8.738358499999947],[119.48175050000009,-8.73873139999995]]],[[[119.41113280000002,-8.7391005],[119.41119380000009,-8.735736799999927],[119.40968320000002,-8.737868299999946],[119.41113280000002,-8.7391005]]],[[[119.61466980000012,-8.725885399999981],[119.61308290000011,-8.72331909999997],[119.61309050000011,-8.725603099999944],[119.61466980000012,-8.725885399999981]]],[[[119.76645660000008,-8.713964499999975],[119.76828000000012,-8.707870499999956],[119.76670840000008,-8.698053399999935],[119.76507570000001,-8.705497699999967],[119.766777,-8.7088766],[119.764946,-8.712057099999981],[119.76645660000008,-8.713964499999975]]],[[[119.7543793000001,-8.69629],[119.75282290000007,-8.693287899999973],[119.75272370000005,-8.695477499999981],[119.7543793000001,-8.69629]]],[[[119.54114530000004,-8.688253399999951],[119.5393448000001,-8.687068899999929],[119.53625490000002,-8.689516099999935],[119.53288270000007,-8.688844699999947],[119.53264620000004,-8.69297309999996],[119.53591160000008,-8.693474799999933],[119.53916170000002,-8.6887979],[119.54114530000004,-8.688253399999951]]],[[[119.57235720000006,-8.685886399999958],[119.57005310000011,-8.684491199999968],[119.56498720000002,-8.686403299999938],[119.56828310000003,-8.689676299999974],[119.56900030000008,-8.693068499999981],[119.57133480000005,-8.692295099999967],[119.57030490000011,-8.690017699999942],[119.57235720000006,-8.685886399999958]]],[[[119.4719543000001,-8.687332099999935],[119.4665222000001,-8.684250799999973],[119.46458440000004,-8.687731699999972],[119.46757510000009,-8.687527699999976],[119.468956,-8.690467799999965],[119.46934510000006,-8.689039199999968],[119.47076420000008,-8.689436899999976],[119.47141270000009,-8.691361399999948],[119.47354130000008,-8.6904516],[119.4719543000001,-8.687332099999935]]],[[[119.65067290000002,-8.684670399999959],[119.64769750000005,-8.685854899999981],[119.64599610000005,-8.684617],[119.64521030000003,-8.685729],[119.64692690000004,-8.688031199999955],[119.64890290000005,-8.68789769999995],[119.65062710000007,-8.687436099999957],[119.65067290000002,-8.684670399999959]]],[[[119.54398350000008,-8.680507699999964],[119.54171750000012,-8.680512399999941],[119.5437088000001,-8.681591],[119.54398350000008,-8.680507699999964]]],[[[119.53347780000001,-8.678213099999937],[119.53321070000004,-8.674945799999932],[119.53240970000002,-8.678291299999955],[119.53347780000001,-8.678213099999937]]],[[[119.5333786000001,-8.668589599999962],[119.53156280000007,-8.669711099999972],[119.533226,-8.670456899999976],[119.5333786000001,-8.668589599999962]]],[[[119.7764893000001,-8.668623899999943],[119.77578740000001,-8.666951199999971],[119.77323910000007,-8.666584],[119.7763443,-8.6769075],[119.77553560000001,-8.680198699999949],[119.77734370000007,-8.680539099999976],[119.78038790000005,-8.675143299999945],[119.78231810000011,-8.675620099999946],[119.78256990000011,-8.678755699999954],[119.78478240000004,-8.6780233],[119.78651430000002,-8.675406399999929],[119.78206640000008,-8.674092299999927],[119.77872470000011,-8.66777609999997],[119.7764893000001,-8.668623899999943]]],[[[119.57069400000012,-8.649411199999975],[119.56971740000006,-8.648881],[119.57000730000004,-8.652015699999936],[119.57176210000011,-8.651092499999947],[119.57069400000012,-8.649411199999975]]],[[[119.495491,-8.647045099999957],[119.4937973000001,-8.648508099999958],[119.49613190000002,-8.650593799999967],[119.49738310000009,-8.648172399999964],[119.495491,-8.647045099999957]]],[[[119.62322240000003,-8.638920799999937],[119.62206270000001,-8.636355399999957],[119.6216965000001,-8.637991],[119.62322240000003,-8.638920799999937]]],[[[119.3960571,-8.637312899999927],[119.39571380000007,-8.635217699999941],[119.3947296,-8.63610269999998],[119.3960571,-8.637312899999927]]],[[[119.7112274000001,-8.634782799999925],[119.71072390000006,-8.632563599999969],[119.71001430000001,-8.6339674],[119.7112274000001,-8.634782799999925]]],[[[119.601265,-8.6312466],[119.597435,-8.630827899999929],[119.58954620000009,-8.633402799999942],[119.58901980000007,-8.63493539999996],[119.58194730000002,-8.637922299999957],[119.58348850000004,-8.640494299999943],[119.58146670000008,-8.641671199999962],[119.58171080000011,-8.6395426],[119.58003230000008,-8.64011],[119.57558440000003,-8.638124499999947],[119.57175450000011,-8.6429233],[119.5760117000001,-8.644454],[119.575531,-8.6464615],[119.5737,-8.647459],[119.57365420000008,-8.649160399999971],[119.568573,-8.656297699999925],[119.5627899000001,-8.651158299999963],[119.55831910000006,-8.650970499999971],[119.55928040000003,-8.655109399999958],[119.55325320000009,-8.660452799999973],[119.55134580000004,-8.6600571],[119.54436490000012,-8.665322299999957],[119.54142760000002,-8.664891199999943],[119.54048160000002,-8.662491799999941],[119.53942110000003,-8.6655064],[119.535141,-8.668618199999969],[119.53713990000006,-8.668719299999964],[119.54005430000007,-8.671759599999973],[119.54045870000004,-8.678344699999968],[119.54443360000005,-8.673563],[119.54910280000001,-8.6733141],[119.55093380000005,-8.676572799999974],[119.54911040000002,-8.681363099999942],[119.55209350000007,-8.679739899999959],[119.552742,-8.677661899999976],[119.55494690000012,-8.6784382],[119.55638890000012,-8.688578599999971],[119.55955510000001,-8.691310899999962],[119.5588226000001,-8.694507599999952],[119.56053920000011,-8.693550099999982],[119.56086730000004,-8.689548499999944],[119.5643387,-8.691963199999975],[119.56320950000008,-8.6867628],[119.55983730000003,-8.6838398],[119.55696870000008,-8.6768389],[119.554924,-8.67607879999997],[119.55583190000004,-8.66998579999995],[119.55815890000008,-8.6656628],[119.56244660000004,-8.662848499999939],[119.56519320000007,-8.658849699999962],[119.57025150000004,-8.6577654],[119.575119,-8.660510099999954],[119.57501980000006,-8.656215699999962],[119.57923130000006,-8.654748],[119.5842133000001,-8.6572819],[119.58692930000007,-8.661688799999979],[119.58978270000011,-8.662445099999957],[119.590744,-8.666341799999941],[119.59311680000008,-8.661572499999977],[119.60205080000003,-8.659811],[119.60270690000004,-8.6535463],[119.60432430000003,-8.651930799999946],[119.60176090000004,-8.647156699999925],[119.60413360000007,-8.637664799999925],[119.60395810000011,-8.633447699999977],[119.60247040000002,-8.63099],[119.601265,-8.6312466]]],[[[119.70749670000009,-8.628134699999976],[119.70482640000012,-8.628299699999957],[119.70597840000005,-8.630678199999977],[119.71033480000006,-8.630453099999954],[119.70749670000009,-8.628134699999976]]],[[[119.61437230000001,-8.626156799999933],[119.6122818,-8.625225099999966],[119.61214440000003,-8.629524199999935],[119.61604310000007,-8.637248],[119.61590580000006,-8.63617419999997],[119.61936950000006,-8.635837599999945],[119.61848450000002,-8.634268799999973],[119.61955260000002,-8.629106499999978],[119.61875150000003,-8.627170599999943],[119.61437230000001,-8.626156799999933]]],[[[119.52594760000011,-8.622984899999949],[119.52451330000008,-8.623565699999972],[119.52793120000001,-8.626416199999937],[119.52843480000001,-8.624641399999973],[119.530426,-8.624176],[119.53015140000002,-8.62281319999994],[119.52733610000007,-8.623957599999926],[119.52594760000011,-8.622984899999949]]],[[[119.47185520000005,-8.618393899999944],[119.47176360000003,-8.617446899999948],[119.4677124000001,-8.618062],[119.46576690000006,-8.619778599999961],[119.46722410000007,-8.621114699999964],[119.47135160000005,-8.621036499999946],[119.47185520000005,-8.618393899999944]]],[[[119.47463230000005,-8.617637699999932],[119.47571560000006,-8.61680789999997],[119.47389220000002,-8.616905199999962],[119.47463230000005,-8.617637699999932]]],[[[119.52111050000008,-8.615383099999974],[119.52008060000003,-8.61457439999998],[119.51923370000009,-8.6171799],[119.52111050000008,-8.615383099999974]]],[[[119.72240450000004,-8.616155599999956],[119.7223206000001,-8.613474899999972],[119.71904760000007,-8.612546899999927],[119.71951290000004,-8.615808499999957],[119.72240450000004,-8.616155599999956]]],[[[119.52976990000002,-8.60585969999994],[119.52719880000006,-8.605934099999956],[119.52574160000006,-8.609031699999946],[119.52111050000008,-8.610109299999976],[119.5217209000001,-8.61372179999995],[119.52392580000003,-8.615710299999932],[119.52598570000009,-8.615794199999925],[119.52870180000002,-8.613451],[119.53137970000012,-8.613864899999953],[119.53305050000006,-8.612251299999969],[119.53233340000008,-8.610706299999947],[119.53377530000012,-8.607286399999964],[119.52976990000002,-8.60585969999994]]],[[[119.77037810000002,-8.606742899999972],[119.77024080000001,-8.603824599999939],[119.76688380000007,-8.6037588],[119.76747890000001,-8.606064799999956],[119.77037810000002,-8.606742899999972]]],[[[119.63475040000003,-8.605343799999957],[119.63223270000003,-8.602768],[119.62928010000007,-8.6047878],[119.6199951000001,-8.6064672],[119.61441800000011,-8.609693499999935],[119.61728670000002,-8.613406199999929],[119.61820980000005,-8.623467399999981],[119.62403870000003,-8.627763699999946],[119.62271120000003,-8.629889499999933],[119.62509920000002,-8.632831599999975],[119.62522890000002,-8.635948199999973],[119.63076020000005,-8.632679899999971],[119.63288880000005,-8.634731299999942],[119.63319400000012,-8.63625529999996],[119.63077540000006,-8.636955299999954],[119.63195040000005,-8.638833099999943],[119.63390350000009,-8.638403899999958],[119.635231,-8.641343099999972],[119.6348114000001,-8.645687099999975],[119.63276670000005,-8.647013699999945],[119.63518520000002,-8.648620599999958],[119.63514710000004,-8.650412599999981],[119.63677220000011,-8.64995],[119.63677220000011,-8.653257399999973],[119.638298,-8.652649899999972],[119.63967130000003,-8.6538878],[119.6390381000001,-8.655680599999926],[119.64194490000011,-8.658985099999938],[119.64188390000004,-8.666173],[119.63939670000002,-8.675801299999932],[119.637001,-8.677055399999972],[119.63610840000001,-8.679637],[119.63264460000005,-8.678401],[119.6331024000001,-8.6802788],[119.63121030000002,-8.679474899999946],[119.63106540000001,-8.681724499999973],[119.62705990000006,-8.680126199999961],[119.62412260000008,-8.681784599999958],[119.62873080000008,-8.682271],[119.63005070000008,-8.684196499999928],[119.62808990000008,-8.685253199999977],[119.62861630000009,-8.687551499999927],[119.63099670000008,-8.686081899999976],[119.63072210000007,-8.6886825],[119.63405610000007,-8.688692099999969],[119.634964,-8.686724699999957],[119.6388703,-8.688947699999972],[119.64147190000006,-8.68584439999995],[119.64156340000011,-8.683224699999926],[119.63861080000004,-8.681213399999933],[119.64036560000011,-8.678984599999978],[119.6438065000001,-8.685625099999982],[119.64604190000011,-8.683602299999961],[119.6435394,-8.681709299999966],[119.64392090000001,-8.680530499999975],[119.64720160000002,-8.683170299999972],[119.6499252000001,-8.682120299999951],[119.64874270000007,-8.681768399999953],[119.65019990000008,-8.6800632],[119.64849860000004,-8.679554899999971],[119.64932250000004,-8.678769099999954],[119.64812470000004,-8.677135499999963],[119.64909360000001,-8.676062599999966],[119.65045170000008,-8.6769953],[119.64974980000011,-8.674887599999977],[119.6512222,-8.672327],[119.64846040000009,-8.6683321],[119.64919280000004,-8.66750529999996],[119.652565,-8.668802299999982],[119.65425870000001,-8.6767387],[119.65252690000011,-8.679863],[119.65689850000001,-8.679633099999933],[119.65525820000005,-8.683229499999982],[119.65885160000005,-8.681976299999974],[119.65430450000008,-8.687671699999953],[119.66006470000002,-8.688938099999973],[119.65801240000008,-8.692167299999937],[119.65448,-8.694013599999948],[119.65642550000007,-8.695622499999956],[119.65711980000003,-8.698807699999975],[119.66036990000009,-8.699265499999967],[119.66122440000004,-8.701331099999948],[119.65905,-8.705421399999977],[119.65728760000002,-8.70616149999995],[119.65627290000009,-8.704858799999954],[119.65674590000003,-8.707219099999975],[119.65429690000008,-8.707977299999925],[119.6487198000001,-8.700405099999955],[119.6451416000001,-8.704405799999961],[119.64721680000002,-8.707711199999949],[119.64509580000004,-8.709115],[119.64109040000005,-8.70780659999997],[119.64134220000005,-8.70323559999997],[119.63816830000007,-8.702366799999936],[119.63577270000008,-8.698757199999932],[119.6319122000001,-8.69906709999998],[119.6280365,-8.7012281],[119.62614440000004,-8.704608],[119.6174850000001,-8.707677899999965],[119.61708070000009,-8.709060699999952],[119.61888120000003,-8.710806899999966],[119.61784360000001,-8.711984599999937],[119.62052920000008,-8.7142172],[119.62008670000012,-8.717361499999981],[119.62423710000007,-8.718713799999932],[119.6265869,-8.717737199999931],[119.62711330000002,-8.719933499999968],[119.63012690000005,-8.718908299999953],[119.63320920000001,-8.720526699999937],[119.63281250000011,-8.723602299999925],[119.63697820000004,-8.724825799999962],[119.63330080000003,-8.72776129999994],[119.62854770000001,-8.724126799999965],[119.6215896000001,-8.724414799999977],[119.61869050000007,-8.72324089999995],[119.61561580000011,-8.724949799999933],[119.62087250000002,-8.726571099999944],[119.62254330000007,-8.728322],[119.62036890000002,-8.7287178],[119.62068180000006,-8.730027199999938],[119.62301630000002,-8.733211499999982],[119.62929530000008,-8.735801699999968],[119.63343050000003,-8.741779299999962],[119.6320419000001,-8.742321],[119.62822720000008,-8.7392387],[119.62715910000009,-8.739860499999963],[119.6279144,-8.7414093],[119.625061,-8.742069299999969],[119.62425990000008,-8.739584899999954],[119.6167908000001,-8.733014099999934],[119.6137695000001,-8.73352049999994],[119.611908,-8.732213],[119.61283870000011,-8.735337199999947],[119.618599,-8.738695199999938],[119.61588290000009,-8.740962],[119.61563870000009,-8.73913],[119.61413570000002,-8.739955899999927],[119.6095428000001,-8.7380867],[119.605751,-8.733486199999959],[119.6080856000001,-8.737463899999966],[119.60754390000011,-8.7391672],[119.60551450000003,-8.7393665],[119.6084595000001,-8.742540399999939],[119.60782620000009,-8.74398519999994],[119.61294550000002,-8.746123299999965],[119.61321260000011,-8.747729299999946],[119.61041260000002,-8.7504711],[119.60780330000011,-8.7503862],[119.60586550000005,-8.747768399999927],[119.60366820000002,-8.749152199999969],[119.60348510000006,-8.754509],[119.60944360000008,-8.7573461],[119.61072540000009,-8.760103199999946],[119.6137314,-8.760804199999939],[119.61194610000007,-8.763496399999951],[119.61703490000002,-8.763941799999941],[119.61737060000007,-8.766021699999953],[119.6136322000001,-8.7667084],[119.61260990000005,-8.768675799999926],[119.6148376000001,-8.769329099999936],[119.61390690000007,-8.771798099999955],[119.61692810000011,-8.775004399999943],[119.61153410000009,-8.775939],[119.61356350000005,-8.7774029],[119.61238860000003,-8.778718],[119.61645510000005,-8.781318699999929],[119.61354830000005,-8.787924799999928],[119.6150894000001,-8.789836899999955],[119.61714940000002,-8.788935699999968],[119.61901090000003,-8.7900047],[119.61800380000011,-8.794122699999946],[119.62259680000011,-8.795455899999979],[119.63871,-8.781305299999929],[119.64070890000005,-8.775936099999967],[119.64360810000005,-8.77546689999997],[119.6452561000001,-8.777485899999931],[119.6475067,-8.77662659999993],[119.64945980000005,-8.778163899999981],[119.65129090000005,-8.773594899999978],[119.65933230000007,-8.773153299999933],[119.66242220000004,-8.775547],[119.66677090000007,-8.782700499999976],[119.67011260000004,-8.783379499999967],[119.67149360000008,-8.785165799999959],[119.67129520000003,-8.788219499999968],[119.67502590000004,-8.788004899999976],[119.67584230000011,-8.796482099999935],[119.67501830000003,-8.802021],[119.67329410000002,-8.803911199999959],[119.67608640000003,-8.805739399999936],[119.67559820000008,-8.80892179999995],[119.6814422000001,-8.808987599999966],[119.68305970000006,-8.811238299999957],[119.68462370000009,-8.809770599999979],[119.69373320000011,-8.810465799999974],[119.69550320000008,-8.809299499999952],[119.69696810000005,-8.804979299999957],[119.70106510000005,-8.80471319999998],[119.70160670000007,-8.802928],[119.70372770000006,-8.802688599999954],[119.70110320000003,-8.799761799999942],[119.70186610000007,-8.798418],[119.70945740000002,-8.7991562],[119.70504760000006,-8.793996799999945],[119.7098999000001,-8.795019099999934],[119.71582030000002,-8.793361699999934],[119.714325,-8.790500599999973],[119.71962740000004,-8.78780269999993],[119.71538540000006,-8.782509799999957],[119.7124176000001,-8.781575199999963],[119.71182250000004,-8.778660799999955],[119.71842960000004,-8.780012099999965],[119.71982580000008,-8.77832129999996],[119.71497350000004,-8.777329399999928],[119.71492010000009,-8.775719699999968],[119.72520450000002,-8.774545699999976],[119.72866820000002,-8.7754088],[119.724144,-8.772566799999936],[119.72691350000002,-8.770659399999943],[119.725502,-8.769922299999962],[119.7259216000001,-8.767238599999928],[119.73337560000004,-8.766795099999968],[119.72702790000005,-8.76433179999998],[119.71781160000012,-8.764987],[119.71656040000005,-8.7638588],[119.72170260000007,-8.760668799999962],[119.7167816000001,-8.758920699999976],[119.71721650000006,-8.755929899999956],[119.722786,-8.756128299999943],[119.72533420000002,-8.753854699999977],[119.73349,-8.7566299],[119.72792820000006,-8.750565499999936],[119.72435760000008,-8.749307599999952],[119.72457120000001,-8.747866599999952],[119.72665410000002,-8.747989599999926],[119.72533420000002,-8.745406199999934],[119.72073360000002,-8.744935],[119.72102360000008,-8.743495],[119.72343450000005,-8.743096399999956],[119.72337340000001,-8.740306799999928],[119.7112274000001,-8.738837199999978],[119.70553590000009,-8.734218599999963],[119.6978683000001,-8.733152399999938],[119.68991090000009,-8.723110199999951],[119.69512180000004,-8.715284399999973],[119.70407870000008,-8.705967899999962],[119.70552060000011,-8.700046499999928],[119.70930480000004,-8.69704919999998],[119.7076111,-8.691831599999944],[119.71154790000003,-8.690171199999952],[119.71342470000002,-8.68749809999997],[119.71089170000005,-8.682694399999946],[119.71087650000004,-8.6793909],[119.717453,-8.681551],[119.719017,-8.68661789999993],[119.72019960000011,-8.684294699999953],[119.72504430000004,-8.684982299999945],[119.72689820000005,-8.690397299999972],[119.72573850000003,-8.691144899999927],[119.72605130000011,-8.693987899999968],[119.72344210000006,-8.696588499999962],[119.72637940000004,-8.697677599999963],[119.7256622000001,-8.699379],[119.73408510000002,-8.69807819999994],[119.73557280000011,-8.699208299999952],[119.7438049000001,-8.697325699999965],[119.74495700000011,-8.698558799999944],[119.746109,-8.696184099999925],[119.74305730000003,-8.693761799999947],[119.74368290000007,-8.692476299999953],[119.74628450000012,-8.690406799999948],[119.75019840000004,-8.689790699999946],[119.74848180000004,-8.688218099999972],[119.75045010000008,-8.685092899999972],[119.7475204000001,-8.680096599999956],[119.74768830000005,-8.677471199999957],[119.75458520000007,-8.670674299999973],[119.75748440000007,-8.665396699999974],[119.76525120000008,-8.663039199999957],[119.76729580000006,-8.659482],[119.77002720000007,-8.658540699999946],[119.78017430000011,-8.659300799999926],[119.784462,-8.656927099999962],[119.79170230000011,-8.656100299999935],[119.7937012000001,-8.660347],[119.79624180000008,-8.658300399999973],[119.79785160000006,-8.654346399999952],[119.79898830000002,-8.657014799999956],[119.80052180000007,-8.651723799999957],[119.7973862,-8.645753799999966],[119.79944610000007,-8.644493099999977],[119.79866790000005,-8.634909599999958],[119.80187230000001,-8.628979699999945],[119.80503850000002,-8.62819289999993],[119.8049774000001,-8.625327099999936],[119.8011093,-8.618695299999956],[119.79240420000008,-8.6140957],[119.78634640000007,-8.619167299999958],[119.7819138000001,-8.61940949999996],[119.77565,-8.616172799999958],[119.769516,-8.615517599999976],[119.76229100000012,-8.615594899999962],[119.76390070000002,-8.61833669999993],[119.76216120000004,-8.620548199999973],[119.75283050000007,-8.617974299999958],[119.74395750000008,-8.628412199999957],[119.74061590000008,-8.627169599999945],[119.74175260000004,-8.623187099999939],[119.73855590000005,-8.620812399999977],[119.72589110000001,-8.619255099999975],[119.722023,-8.621956799999964],[119.71869660000004,-8.621408499999973],[119.71581270000001,-8.624980899999969],[119.71688840000002,-8.628439899999933],[119.71498110000005,-8.631036699999981],[119.71672060000003,-8.634502399999974],[119.71661380000012,-8.638131099999953],[119.71456910000006,-8.640428499999928],[119.71407320000003,-8.651538799999969],[119.71562960000006,-8.654242499999953],[119.71453860000008,-8.655791299999976],[119.712059,-8.6521492],[119.71108250000009,-8.645602199999928],[119.70781710000006,-8.648510899999962],[119.70320890000005,-8.6465025],[119.70192720000011,-8.643582299999935],[119.7006378000001,-8.64503],[119.699379,-8.644450199999937],[119.690979,-8.6369209],[119.68728640000006,-8.639433899999972],[119.69010160000005,-8.640966399999968],[119.69219970000006,-8.647403699999927],[119.693161,-8.646861099999967],[119.695343,-8.648613],[119.69494630000008,-8.649969099999964],[119.69867710000005,-8.651285199999961],[119.69789120000007,-8.653764699999954],[119.70420070000011,-8.653206799999964],[119.70613860000003,-8.6572685],[119.70954130000007,-8.659117699999967],[119.7097702000001,-8.660738],[119.70643610000002,-8.661201499999947],[119.70739750000007,-8.66332719999997],[119.70553590000009,-8.665291799999977],[119.70820620000006,-8.666925399999968],[119.70816040000011,-8.669796],[119.70440670000005,-8.671671899999978],[119.70036320000008,-8.670795399999975],[119.69962310000005,-8.672969799999976],[119.69464870000002,-8.674263],[119.69291690000011,-8.676340099999948],[119.69046790000004,-8.675031699999977],[119.68997950000005,-8.679459599999973],[119.68568420000008,-8.684819199999936],[119.68276980000007,-8.676813099999947],[119.68528750000007,-8.67526719999995],[119.68025210000008,-8.675437],[119.67893980000008,-8.674216199999933],[119.67973330000007,-8.673149099999932],[119.67755130000012,-8.67293639999997],[119.67917630000011,-8.684178299999928],[119.6736221000001,-8.6877718],[119.6711044000001,-8.680817599999955],[119.66830440000001,-8.678114899999969],[119.669014,-8.6740332],[119.66665650000004,-8.672616],[119.66867830000001,-8.670358599999929],[119.66345980000006,-8.667805699999974],[119.66079710000008,-8.663644799999929],[119.66262060000008,-8.6628571],[119.66859440000007,-8.664277099999936],[119.667717,-8.662150399999973],[119.66003420000004,-8.659492499999942],[119.65848540000002,-8.656927099999962],[119.65971370000011,-8.653700799999967],[119.66230010000004,-8.654059399999937],[119.66120910000006,-8.64974589999997],[119.66352080000001,-8.648386],[119.66105650000009,-8.644066799999962],[119.66252140000006,-8.6414108],[119.66146090000007,-8.63730049999998],[119.6646118000001,-8.6295233],[119.66332250000005,-8.626614599999925],[119.66526790000012,-8.620939299999975],[119.66510010000002,-8.619454399999938],[119.663147,-8.622432699999933],[119.66181950000009,-8.61899569999997],[119.66281130000004,-8.612429599999928],[119.6555939000001,-8.612423899999953],[119.6536407000001,-8.614144299999964],[119.64551540000002,-8.612546],[119.63475040000003,-8.605343799999957]]],[[[119.79496,-8.60223389999993],[119.79245,-8.600553499999933],[119.79231260000006,-8.602719299999933],[119.79496,-8.60223389999993]]],[[[119.70544430000007,-8.601300199999969],[119.70564270000011,-8.599778199999946],[119.7045898,-8.600441],[119.70544430000007,-8.601300199999969]]],[[[119.49452210000004,-8.597752599999978],[119.49214170000005,-8.5977898],[119.49211120000007,-8.599349],[119.496994,-8.6013222],[119.4976349000001,-8.5995531],[119.49452210000004,-8.597752599999978]]],[[[119.767334,-8.600216899999964],[119.76887510000006,-8.598391499999934],[119.76718140000003,-8.59700769999995],[119.76612090000003,-8.598628099999928],[119.767334,-8.600216899999964]]],[[[119.69891360000008,-8.5991106],[119.70042420000004,-8.5975924],[119.70003510000004,-8.594927799999937],[119.69804380000005,-8.596612899999968],[119.69891360000008,-8.5991106]]],[[[119.79590610000002,-8.598693799999978],[119.79203030000008,-8.593283699999972],[119.78788760000009,-8.596333499999957],[119.78989410000008,-8.599380499999938],[119.79290770000011,-8.598807299999976],[119.79494480000005,-8.600417099999959],[119.79590610000002,-8.598693799999978]]],[[[119.75827790000005,-8.5910444],[119.75737,-8.5903435],[119.75604250000004,-8.591723399999978],[119.75642390000007,-8.5942345],[119.75782010000012,-8.593648],[119.75827790000005,-8.5910444]]],[[[119.7267074,-8.591674799999964],[119.72715760000006,-8.5889654],[119.72520450000002,-8.590623899999969],[119.7267074,-8.591674799999964]]],[[[119.69454960000007,-8.588534399999958],[119.69529720000003,-8.5851154],[119.69390870000007,-8.584405899999979],[119.69074250000006,-8.587844899999936],[119.69454960000007,-8.588534399999958]]],[[[119.80265050000003,-8.5799246],[119.80060580000008,-8.578795399999933],[119.79685210000002,-8.579520199999934],[119.79440310000007,-8.583625799999936],[119.79895780000004,-8.585462599999971],[119.80265050000003,-8.5850134],[119.80406950000008,-8.5817194],[119.80265050000003,-8.5799246]]],[[[119.68975830000011,-8.5788422],[119.68611910000004,-8.577751199999966],[119.68473050000011,-8.581199699999956],[119.68853760000002,-8.583439799999951],[119.69327550000003,-8.5832062],[119.697937,-8.580828699999927],[119.693428,-8.5783148],[119.68975830000011,-8.5788422]]],[[[119.74954990000003,-8.57434749999993],[119.74835210000003,-8.572633699999926],[119.74636080000005,-8.574528699999973],[119.74578090000011,-8.5797939],[119.74981690000004,-8.581926299999964],[119.75116730000002,-8.581054699999981],[119.75190730000008,-8.576815599999975],[119.74954990000003,-8.57434749999993]]],[[[119.72727970000005,-8.5689917],[119.7117462000001,-8.569647799999927],[119.70635990000005,-8.572299],[119.705452,-8.574411399999974],[119.70822140000007,-8.576204299999972],[119.71125790000008,-8.574846299999933],[119.71083830000009,-8.578094499999963],[119.71272280000005,-8.580580699999928],[119.71726990000002,-8.578023],[119.71990970000002,-8.579693799999973],[119.72480010000004,-8.578830699999969],[119.72908780000012,-8.57339],[119.72727970000005,-8.5689917]]],[[[119.37185670000008,-8.558619499999963],[119.3714523000001,-8.557299599999965],[119.37133030000007,-8.560009],[119.37286380000012,-8.559094399999935],[119.37185670000008,-8.558619499999963]]],[[[119.62799070000005,-8.554975499999955],[119.63226320000001,-8.559395799999947],[119.63166050000007,-8.556515699999977],[119.62799070000005,-8.554975499999955]]],[[[119.38825230000009,-8.552248],[119.38597870000001,-8.551875099999961],[119.38831330000005,-8.556350699999939],[119.39138030000004,-8.553781499999957],[119.38922120000007,-8.55401519999998],[119.38825230000009,-8.552248]]],[[[119.82728580000003,-8.551522199999965],[119.82550050000009,-8.550887099999954],[119.82504270000004,-8.552084899999954],[119.8270721,-8.552685699999927],[119.82831570000008,-8.551789299999939],[119.82728580000003,-8.551522199999965]]],[[[119.80324550000012,-8.55189889999997],[119.80366520000007,-8.549621599999966],[119.80060580000008,-8.548823399999947],[119.7996826000001,-8.5507402],[119.80324550000012,-8.55189889999997]]],[[[119.6843338000001,-8.547280299999954],[119.68031310000003,-8.546379099999967],[119.67932130000008,-8.5475025],[119.6787872000001,-8.550934799999936],[119.68206020000002,-8.55793],[119.68355560000009,-8.554405199999962],[119.68807980000008,-8.554336499999977],[119.690216,-8.549799899999925],[119.689743,-8.5476608],[119.6843338000001,-8.547280299999954]]],[[[119.78565220000007,-8.552643799999942],[119.78770450000002,-8.548919699999942],[119.78527070000007,-8.545890799999938],[119.78279880000002,-8.550811799999963],[119.78565220000007,-8.552643799999942]]],[[[119.69127650000007,-8.544921899999963],[119.69015500000012,-8.545247099999926],[119.69204710000008,-8.550143299999945],[119.68997950000005,-8.550763099999926],[119.691124,-8.551170399999933],[119.69246670000007,-8.549752199999944],[119.69127650000007,-8.544921899999963]]],[[[119.8153076000001,-8.549626399999966],[119.8157043000001,-8.545798299999944],[119.81452180000008,-8.5446406],[119.81359860000009,-8.5476742],[119.8153076000001,-8.549626399999966]]],[[[119.56861880000008,-8.543028799999945],[119.56670380000003,-8.54138469999998],[119.56478880000009,-8.54240509999994],[119.56861880000008,-8.543028799999945]]],[[[119.83197020000011,-8.542990699999962],[119.8298416,-8.54105379999993],[119.827507,-8.542903899999942],[119.82955170000002,-8.544779799999958],[119.83197020000011,-8.542990699999962]]],[[[119.64253240000005,-8.543787],[119.6434326000001,-8.540107699999965],[119.6411743000001,-8.538389199999926],[119.6407623,-8.541345599999943],[119.64253240000005,-8.543787]]],[[[119.5707016,-8.5347338],[119.56855770000004,-8.533680899999979],[119.56748960000004,-8.535307899999964],[119.567627,-8.538131699999951],[119.57003020000002,-8.541260699999953],[119.57234190000008,-8.541588799999943],[119.5785141,-8.5386687],[119.57730870000012,-8.535429],[119.57407380000006,-8.533989899999938],[119.5707016,-8.5347338]]],[[[119.66001890000007,-8.531826],[119.65864560000011,-8.532707199999948],[119.6599503000001,-8.535449],[119.65699010000003,-8.538561799999968],[119.65266420000012,-8.5382128],[119.64907070000004,-8.534328399999936],[119.64667510000004,-8.5357599],[119.64949800000011,-8.537385],[119.651535,-8.543392199999971],[119.6499252000001,-8.556988699999977],[119.6540146000001,-8.561955499999954],[119.655632,-8.566993699999955],[119.65821070000004,-8.567384699999934],[119.65845490000004,-8.559573199999932],[119.65701290000004,-8.554314599999941],[119.65460210000003,-8.551558499999942],[119.654686,-8.5490437],[119.66000370000006,-8.540442499999926],[119.66516110000009,-8.536755599999935],[119.66436010000007,-8.533645599999943],[119.66001890000007,-8.531826]]],[[[119.74665830000004,-8.52912619999995],[119.7468338000001,-8.527216],[119.74463650000007,-8.525302899999929],[119.74480440000002,-8.528635],[119.74665830000004,-8.52912619999995]]],[[[119.79017640000006,-8.521959299999935],[119.7884140000001,-8.520978899999932],[119.78536230000009,-8.523863799999958],[119.7832413000001,-8.528238299999941],[119.78405,-8.530407899999943],[119.78761290000011,-8.530962],[119.79287720000002,-8.527765299999942],[119.79393,-8.529748],[119.7984619,-8.530330699999979],[119.79484560000003,-8.522254],[119.79017640000006,-8.521959299999935]]],[[[119.73626710000008,-8.5243845],[119.73712160000002,-8.522310299999958],[119.73474880000003,-8.519212699999969],[119.73411560000011,-8.5217457],[119.73626710000008,-8.5243845]]],[[[119.58666990000006,-8.519906],[119.5876541,-8.517755499999964],[119.58550260000004,-8.518289599999946],[119.58666990000006,-8.519906]]],[[[119.71259310000005,-8.5191784],[119.71133420000001,-8.516673099999934],[119.71063230000004,-8.518243799999937],[119.71259310000005,-8.5191784]]],[[[119.79409030000011,-8.521560699999952],[119.79601290000005,-8.5170536],[119.79467010000008,-8.516075099999966],[119.79222870000001,-8.518897],[119.79409030000011,-8.521560699999952]]],[[[119.72862250000003,-8.514123],[119.729599,-8.513526899999931],[119.7268600000001,-8.5125351],[119.724617,-8.516469],[119.72538760000009,-8.518467899999962],[119.72908780000012,-8.518282899999974],[119.7298813000001,-8.515353199999936],[119.72862250000003,-8.514123]]],[[[119.64046480000002,-8.5102854],[119.63356780000004,-8.514558799999975],[119.63557430000003,-8.516916299999934],[119.63527680000004,-8.521226899999931],[119.63812260000009,-8.52072329999993],[119.63962560000004,-8.518818799999963],[119.638382,-8.517855599999962],[119.6384964,-8.514938299999926],[119.6425018000001,-8.518359199999963],[119.64298250000002,-8.516101799999944],[119.64161680000007,-8.51541039999995],[119.64292150000006,-8.512953799999934],[119.64046480000002,-8.5102854]]],[[[119.70636750000006,-8.511289599999941],[119.70452880000005,-8.509888699999976],[119.69601440000008,-8.512208],[119.69886780000002,-8.517290099999968],[119.70133970000006,-8.518556599999954],[119.7036362,-8.515539199999978],[119.70712280000009,-8.514002799999957],[119.70942690000004,-8.515074699999957],[119.70964050000009,-8.512713399999939],[119.70636750000006,-8.511289599999941]]],[[[119.73057560000007,-8.510861399999953],[119.728363,-8.509534799999926],[119.72884370000008,-8.512058299999978],[119.72766880000006,-8.511954299999957],[119.7334671000001,-8.512903199999926],[119.73229220000007,-8.510644899999932],[119.73057560000007,-8.510861399999953]]],[[[119.34474940000007,-8.509367],[119.34545140000012,-8.5046205],[119.34370420000005,-8.507436699999971],[119.34474940000007,-8.509367]]],[[[119.86851500000012,-8.496596299999965],[119.8691864000001,-8.494445799999937],[119.86754610000003,-8.495531099999937],[119.86851500000012,-8.496596299999965]]],[[[119.72909550000008,-8.494105299999944],[119.72079470000006,-8.494435299999964],[119.71640780000007,-8.4972687],[119.71334080000008,-8.50545219999998],[119.71634680000011,-8.508275],[119.71343230000002,-8.512801199999956],[119.7138748000001,-8.5160141],[119.71623230000012,-8.518350599999962],[119.719307,-8.510851799999955],[119.7202301000001,-8.512066799999957],[119.72040560000005,-8.510591499999975],[119.71741480000003,-8.509450899999933],[119.71971890000009,-8.505878399999972],[119.72290040000007,-8.504954299999952],[119.72715760000006,-8.506341],[119.73091130000012,-8.5033531],[119.72931670000003,-8.501702299999977],[119.73124690000009,-8.503143299999977],[119.73414610000009,-8.501356099999953],[119.7334671000001,-8.497792199999935],[119.72909550000008,-8.494105299999944]]],[[[119.58168030000002,-8.492800699999975],[119.57804870000007,-8.493829699999935],[119.5771942,-8.496165299999973],[119.57849890000011,-8.498251899999957],[119.58159640000008,-8.497936299999935],[119.58359530000007,-8.495569199999977],[119.58168030000002,-8.492800699999975]]],[[[119.75646210000002,-8.49166109999993],[119.75640870000007,-8.494626099999948],[119.75905610000007,-8.497942],[119.76083370000003,-8.494080499999939],[119.75843810000003,-8.491711599999974],[119.75646210000002,-8.49166109999993]]],[[[119.84766390000004,-8.487683299999958],[119.84311680000008,-8.486865],[119.84282680000001,-8.491185199999961],[119.84371190000002,-8.49197289999995],[119.84481810000011,-8.489857699999959],[119.85021970000003,-8.489728899999932],[119.84987640000008,-8.487872099999947],[119.84766390000004,-8.487683299999958]]],[[[119.588768,-8.491874699999926],[119.5914993,-8.488131499999952],[119.58695220000004,-8.486116399999958],[119.58582310000008,-8.48905659999997],[119.588768,-8.491874699999926]]],[[[119.8636246000001,-8.485451699999942],[119.86309050000011,-8.48423189999994],[119.86188510000011,-8.490139],[119.86455540000009,-8.491770699999961],[119.86680600000011,-8.490430799999956],[119.86926270000004,-8.49318409999995],[119.87089540000011,-8.491043099999956],[119.869545,-8.48862269999995],[119.87377930000002,-8.4867306],[119.8678284,-8.48444459999996],[119.8636246000001,-8.485451699999942]]],[[[119.86188510000011,-8.487004299999967],[119.86103820000005,-8.484762199999977],[119.85510250000004,-8.481045699999981],[119.85469820000003,-8.484482799999967],[119.85186010000007,-8.488634099999956],[119.85328680000009,-8.48957439999998],[119.8552628000001,-8.48730949999998],[119.85774990000004,-8.488192599999934],[119.86188510000011,-8.487004299999967]]],[[[119.83784480000008,-8.480348599999957],[119.8336868,-8.4822426],[119.839508,-8.484289199999978],[119.8402023000001,-8.480656599999975],[119.83784480000008,-8.480348599999957]]],[[[119.86866,-8.4689093],[119.86912540000003,-8.465736399999969],[119.86550140000008,-8.464855199999931],[119.86488340000005,-8.46759419999995],[119.86866,-8.4689093]]],[[[119.8687973000001,-8.463086099999941],[119.86758420000001,-8.462463399999933],[119.868309,-8.464607199999932],[119.87075040000002,-8.464196199999947],[119.87048340000001,-8.462653099999955],[119.8687973000001,-8.463086099999941]]],[[[119.56299590000003,-8.4619255],[119.56211850000011,-8.460949899999946],[119.55739590000007,-8.4636354],[119.55275730000005,-8.468849199999966],[119.5513764000001,-8.474833499999932],[119.55307770000002,-8.4748707],[119.55440520000002,-8.477599099999964],[119.55609890000005,-8.475214],[119.56000520000009,-8.476609199999928],[119.56381230000011,-8.471425099999976],[119.56328580000002,-8.466625199999953],[119.56511690000002,-8.465967199999966],[119.56696320000003,-8.467902199999969],[119.56592560000001,-8.46428009999994],[119.56299590000003,-8.4619255]]],[[[119.5837097000001,-8.4455023],[119.58305360000008,-8.441131599999949],[119.57612610000001,-8.4453869],[119.57273870000006,-8.4458141],[119.568367,-8.450075199999958],[119.56525420000003,-8.448654199999964],[119.56440740000005,-8.445602399999927],[119.5624084000001,-8.450336499999935],[119.56357570000011,-8.452867499999968],[119.56250000000011,-8.459533699999952],[119.57012180000004,-8.451252899999929],[119.57203670000001,-8.450937299999964],[119.5733643000001,-8.452710199999956],[119.58249660000001,-8.451092699999947],[119.58423620000008,-8.452397299999973],[119.5837097000001,-8.4455023]]],[[[119.89096070000005,-8.440797799999928],[119.89080050000007,-8.439250899999934],[119.88990790000003,-8.440157899999974],[119.89096070000005,-8.440797799999928]]],[[[119.99322510000002,-8.433441199999947],[119.98928830000011,-8.4327869],[119.98974610000005,-8.438208599999939],[119.99488830000007,-8.438515699999925],[119.99322510000002,-8.433441199999947]]],[[[119.45699310000009,-8.428500199999974],[119.45513920000008,-8.427246099999934],[119.44944,-8.43119809999996],[119.4496994000001,-8.434626599999945],[119.45349120000003,-8.437134699999945],[119.45195010000009,-8.44326019999994],[119.45424650000007,-8.445098899999948],[119.45066830000007,-8.452038799999968],[119.44474030000003,-8.451349299999947],[119.44142150000005,-8.446446399999957],[119.43678290000003,-8.44621849999993],[119.43457790000002,-8.44467069999996],[119.43374630000005,-8.446488399999964],[119.43099970000003,-8.44673249999994],[119.42962650000004,-8.444024099999979],[119.42523190000009,-8.442345599999953],[119.422966,-8.443603499999938],[119.42332460000011,-8.446681],[119.42030330000011,-8.449048],[119.42196660000002,-8.455043799999942],[119.42693330000009,-8.461485899999957],[119.424675,-8.466560399999935],[119.42659760000004,-8.4719143],[119.42791750000004,-8.47257609999997],[119.42980190000003,-8.470885299999964],[119.43209840000009,-8.471963899999935],[119.43840790000002,-8.477816599999926],[119.43866730000002,-8.481259299999977],[119.445755,-8.4837637],[119.44915010000011,-8.490928699999927],[119.446495,-8.494227399999943],[119.44398500000011,-8.490745499999946],[119.43799590000003,-8.488901099999964],[119.43473820000008,-8.491326299999969],[119.4303284,-8.491519899999957],[119.43074800000011,-8.493417699999952],[119.42881770000008,-8.495575],[119.42391210000005,-8.495340299999953],[119.42449190000002,-8.497680699999933],[119.42137910000008,-8.5008316],[119.41874690000009,-8.500151599999981],[119.41527560000009,-8.502649299999973],[119.41243740000004,-8.502198199999953],[119.41359710000006,-8.505107899999928],[119.41536710000003,-8.50471209999995],[119.41615290000004,-8.506526899999926],[119.418335,-8.505115499999931],[119.41929630000004,-8.506262799999945],[119.42250060000003,-8.505501799999934],[119.42365260000008,-8.5103235],[119.42748260000008,-8.512774499999978],[119.42998510000007,-8.5117264],[119.43233490000011,-8.512551299999927],[119.43399050000005,-8.517174699999941],[119.43094640000004,-8.5187654],[119.43089290000012,-8.521005599999967],[119.43695830000001,-8.524799299999927],[119.43498230000012,-8.527805299999955],[119.43212890000007,-8.526943199999948],[119.42554470000005,-8.529838599999948],[119.4211044000001,-8.529665],[119.42377470000008,-8.535406099999932],[119.42343140000003,-8.551580399999978],[119.4176331000001,-8.553695699999935],[119.41513060000011,-8.552896499999974],[119.41523740000002,-8.55115319999993],[119.41150660000005,-8.550186099999962],[119.41240690000006,-8.552438699999925],[119.41091160000008,-8.555740299999968],[119.40841680000005,-8.556342099999938],[119.39928440000006,-8.563856099999953],[119.3953858000001,-8.562596299999939],[119.39530180000008,-8.560807199999942],[119.39139560000001,-8.5585632],[119.38977810000006,-8.55936909999997],[119.38845060000006,-8.561450899999954],[119.389061,-8.564703],[119.38744350000002,-8.566178299999933],[119.38503260000005,-8.565681499999926],[119.38460540000005,-8.567669899999942],[119.38808440000003,-8.568485299999963],[119.38906860000009,-8.572891199999958],[119.38133240000002,-8.576675399999942],[119.380661,-8.578318599999932],[119.38208010000005,-8.580555899999979],[119.38036350000004,-8.583107],[119.37693020000006,-8.582999299999926],[119.37374120000004,-8.585242299999948],[119.37427520000006,-8.58803839999996],[119.38046270000007,-8.5892753],[119.3843994,-8.59253689999997],[119.38426210000011,-8.596346899999958],[119.38823700000012,-8.598506899999961],[119.3885117000001,-8.600687],[119.38684850000004,-8.604752499999961],[119.38408660000005,-8.604517899999962],[119.38035580000007,-8.6112051],[119.3797684000001,-8.618586499999935],[119.38233950000006,-8.6180553],[119.38145450000002,-8.620051399999966],[119.38279720000003,-8.622956299999942],[119.37442780000003,-8.626197799999943],[119.37498470000003,-8.628007899999943],[119.373352,-8.6307163],[119.3744431,-8.630148899999938],[119.3750305000001,-8.632445299999972],[119.37670130000004,-8.632308],[119.3779144,-8.634026499999948],[119.380188,-8.631361],[119.3807144000001,-8.627592099999958],[119.38410190000002,-8.6243038],[119.38910670000007,-8.625295599999959],[119.39043430000004,-8.628215799999964],[119.39119720000008,-8.625464399999942],[119.39521030000003,-8.622134199999948],[119.39772030000006,-8.622322099999963],[119.40170290000003,-8.627779],[119.39892580000003,-8.632226899999978],[119.39637760000005,-8.63344],[119.39916230000006,-8.637827899999934],[119.397995,-8.639932599999952],[119.40419010000005,-8.638812099999939],[119.40979,-8.6468582],[119.40914150000003,-8.652065299999947],[119.40702060000001,-8.655038799999943],[119.40480800000012,-8.655361199999959],[119.40348820000008,-8.658716199999958],[119.40708160000008,-8.662423099999955],[119.40552520000006,-8.664243699999929],[119.4064102000001,-8.665904],[119.40502170000002,-8.670867899999962],[119.40686040000003,-8.676923699999975],[119.40444180000009,-8.688241],[119.39922330000002,-8.68988509999997],[119.39883420000001,-8.692633599999965],[119.39592740000012,-8.695405899999969],[119.39149480000003,-8.695578599999976],[119.38945010000009,-8.692194],[119.38787840000009,-8.692304599999943],[119.38606260000006,-8.701830899999948],[119.380455,-8.70992089999993],[119.38299560000007,-8.713013599999954],[119.38223260000007,-8.71626189999995],[119.37824250000006,-8.718305599999951],[119.37126160000003,-8.717387199999962],[119.37161260000005,-8.718619399999966],[119.37616730000002,-8.719778099999928],[119.37667080000006,-8.721280099999944],[119.379715,-8.721531899999945],[119.38124080000011,-8.7254972],[119.37949370000001,-8.727846099999965],[119.38223260000007,-8.731438599999933],[119.37655640000003,-8.734879499999977],[119.37703710000005,-8.737696599999936],[119.38078310000003,-8.738327],[119.38120270000002,-8.735793099999967],[119.3870697000001,-8.73274989999993],[119.386879,-8.729308099999969],[119.39024350000011,-8.730787299999974],[119.3894577000001,-8.725571599999967],[119.3913040000001,-8.7232733],[119.393898,-8.722853699999973],[119.39694980000002,-8.725190199999929],[119.40019230000007,-8.724191699999949],[119.40019230000007,-8.725852],[119.40196230000004,-8.723044399999935],[119.403183,-8.723703399999977],[119.40354920000004,-8.722355799999946],[119.406311,-8.722019199999977],[119.40975950000006,-8.727975799999967],[119.41365810000002,-8.726496699999927],[119.41402430000005,-8.7308121],[119.41646580000008,-8.729216599999972],[119.41928860000007,-8.730052],[119.42157740000005,-8.735067399999934],[119.42973330000007,-8.739682199999947],[119.4327469000001,-8.745445299999972],[119.43724060000011,-8.749572799999953],[119.44377140000006,-8.75117679999994],[119.445282,-8.749464],[119.44921870000007,-8.750609399999973],[119.44976810000003,-8.747622499999977],[119.45325470000012,-8.748284299999966],[119.46221920000005,-8.7459812],[119.46820070000001,-8.738989799999956],[119.47136690000002,-8.737211199999933],[119.46905520000007,-8.736437799999976],[119.4654389000001,-8.739129099999957],[119.46080780000011,-8.73801039999995],[119.46094510000012,-8.740758899999946],[119.45850370000005,-8.744237899999973],[119.45274350000011,-8.745919199999946],[119.45167540000011,-8.744973199999947],[119.45133210000006,-8.742102599999953],[119.45265960000006,-8.740432799999951],[119.44879150000008,-8.740184799999952],[119.44805910000002,-8.734689699999933],[119.44960790000005,-8.734234799999967],[119.45241550000003,-8.729315799999938],[119.45541380000009,-8.729296699999963],[119.45822140000007,-8.72715],[119.45269010000004,-8.724600799999962],[119.44755550000002,-8.725702299999966],[119.44569400000012,-8.721631],[119.45299530000011,-8.711761499999966],[119.45284270000002,-8.706848099999945],[119.45622250000008,-8.702508899999941],[119.45131680000009,-8.701258699999926],[119.44902040000011,-8.698679],[119.44519800000012,-8.699307399999952],[119.44250490000002,-8.69232459999995],[119.4473038000001,-8.68952269999994],[119.44873810000001,-8.686449099999948],[119.4457245000001,-8.687237699999969],[119.44351960000006,-8.6841698],[119.44104770000001,-8.685523],[119.4380112,-8.683987599999966],[119.43478390000007,-8.684528399999977],[119.43269350000003,-8.678937899999937],[119.43316650000008,-8.675760299999979],[119.43669890000001,-8.672343299999966],[119.43730160000007,-8.667701699999952],[119.447937,-8.655013099999962],[119.45642090000001,-8.648155199999962],[119.4600067,-8.649758299999974],[119.46546930000011,-8.649773599999946],[119.46791080000003,-8.653553],[119.47188570000003,-8.654011699999955],[119.4761658000001,-8.6521463],[119.47752380000009,-8.646403299999974],[119.47427370000003,-8.641934399999968],[119.47477720000006,-8.639239299999929],[119.47916410000005,-8.63730049999998],[119.48262020000004,-8.642457],[119.48490140000001,-8.640851],[119.48596950000001,-8.637273799999946],[119.48361970000008,-8.634923899999933],[119.480072,-8.63429549999995],[119.4796219000001,-8.632093399999974],[119.48190310000007,-8.632199299999968],[119.48123170000008,-8.630585699999926],[119.4847641,-8.626608799999929],[119.48939510000002,-8.62672329999998],[119.48868560000005,-8.624806399999954],[119.49319460000004,-8.620335599999976],[119.49369050000007,-8.614441899999974],[119.49214170000005,-8.611722899999961],[119.4870529000001,-8.614118599999927],[119.4870605000001,-8.6166325],[119.4823685,-8.624539399999946],[119.47882080000011,-8.62598319999995],[119.4773636000001,-8.6235056],[119.47608950000006,-8.625976599999944],[119.47372430000007,-8.625082],[119.4749756000001,-8.627283099999943],[119.47319030000006,-8.629301099999964],[119.46907040000008,-8.626741399999958],[119.46487430000002,-8.627838099999963],[119.46195220000004,-8.626532599999962],[119.46182250000004,-8.622875199999953],[119.45597840000005,-8.616516099999956],[119.458519,-8.613613099999952],[119.45575720000011,-8.610716799999977],[119.45439910000005,-8.611832599999957],[119.45359040000005,-8.610945699999945],[119.45298770000011,-8.606343299999935],[119.4551163000001,-8.604558899999972],[119.46030420000011,-8.604115499999978],[119.46934510000006,-8.608597799999927],[119.47618100000011,-8.604446399999972],[119.47982020000006,-8.6053867],[119.47940830000005,-8.601394699999958],[119.48435210000002,-8.599034299999971],[119.48609920000001,-8.593495399999938],[119.49710080000011,-8.587447199999929],[119.49567410000009,-8.57554529999993],[119.49835970000004,-8.571141199999943],[119.505333,-8.568521499999974],[119.51165770000011,-8.568862899999942],[119.5198898000001,-8.57371139999998],[119.52481840000007,-8.582172399999934],[119.522995,-8.588153899999952],[119.51712040000007,-8.5920687],[119.51967620000005,-8.597106],[119.51744080000003,-8.601045599999964],[119.51852420000012,-8.60217],[119.52593990000003,-8.5986595],[119.53553010000007,-8.602822299999957],[119.53633880000007,-8.599609399999963],[119.54319,-8.599968],[119.5437012000001,-8.597348199999942],[119.5457153000001,-8.59622859999996],[119.556839,-8.598682399999973],[119.56149290000008,-8.59709259999994],[119.5666275000001,-8.598018599999932],[119.57008360000009,-8.5957165],[119.57426450000003,-8.595300699999939],[119.57062530000007,-8.591353399999946],[119.56471250000004,-8.593462899999963],[119.56484220000004,-8.591557499999965],[119.56231690000004,-8.590697299999931],[119.55962370000009,-8.586745199999939],[119.56193540000004,-8.582675],[119.56205750000004,-8.577609099999961],[119.5644989000001,-8.576372099999958],[119.55858610000007,-8.570489899999927],[119.5600204000001,-8.550377799999978],[119.55667110000002,-8.543293],[119.55343630000004,-8.541477199999974],[119.55373380000003,-8.538147899999956],[119.55184170000007,-8.538356799999974],[119.54950710000003,-8.536424699999941],[119.5504532000001,-8.533914599999946],[119.54919430000007,-8.529886199999964],[119.5515137000001,-8.528018],[119.55437470000004,-8.52967259999997],[119.55420690000005,-8.522964499999944],[119.55821990000004,-8.514810599999976],[119.56003570000007,-8.514164],[119.56242370000007,-8.518362],[119.56148530000007,-8.524033599999939],[119.56356050000011,-8.523489],[119.56502530000012,-8.524693499999955],[119.56350710000004,-8.530106499999931],[119.56598660000009,-8.52963449999993],[119.56868740000004,-8.5331621],[119.56981660000008,-8.53234],[119.57019800000012,-8.528911599999958],[119.56729130000008,-8.527927399999953],[119.568573,-8.5239115],[119.567749,-8.521750399999974],[119.5685883000001,-8.520204499999977],[119.57344820000003,-8.519197499999962],[119.568367,-8.515574499999957],[119.56936650000011,-8.509717],[119.57262420000006,-8.508272199999965],[119.569191,-8.504007299999955],[119.56869510000001,-8.500976599999944],[119.57212830000003,-8.496589699999959],[119.57028960000002,-8.492457399999978],[119.57118990000004,-8.489557299999944],[119.56561280000005,-8.484115599999939],[119.56267550000007,-8.484363599999938],[119.55951690000006,-8.48853209999993],[119.55665590000001,-8.489831],[119.55379490000007,-8.496661199999949],[119.54953000000012,-8.498883299999932],[119.54675290000012,-8.496793699999955],[119.54627990000006,-8.492478399999925],[119.55071260000011,-8.485363],[119.55216980000012,-8.478974299999948],[119.54641720000006,-8.488380399999926],[119.53917690000003,-8.49322129999996],[119.53884890000006,-8.495575899999949],[119.53488920000007,-8.497357399999942],[119.5305863000001,-8.494977],[119.5315475000001,-8.491514199999926],[119.5263748000001,-8.488649399999929],[119.5263748000001,-8.482456199999945],[119.52476500000012,-8.4846077],[119.51955410000005,-8.485404],[119.51831820000007,-8.486713399999928],[119.51899720000006,-8.488658899999962],[119.51605230000007,-8.491088899999966],[119.51165770000011,-8.493571299999928],[119.50686650000011,-8.494037599999956],[119.50117490000002,-8.489833899999951],[119.50035860000003,-8.486538899999971],[119.4967117000001,-8.485656699999936],[119.49703980000004,-8.481238399999938],[119.49521640000012,-8.4792709],[119.49159240000006,-8.481381399999975],[119.48837280000009,-8.480294199999946],[119.48565670000005,-8.485359199999948],[119.48325350000005,-8.486204099999952],[119.47743230000003,-8.482956899999976],[119.477684,-8.481672299999957],[119.4708710000001,-8.480279],[119.46909330000005,-8.474892599999976],[119.47235870000009,-8.472210899999936],[119.4690399000001,-8.468960799999934],[119.46747590000007,-8.46405889999994],[119.46855930000004,-8.460901299999932],[119.47125240000003,-8.460483599999975],[119.4690323000001,-8.456958799999938],[119.4695511000001,-8.4553652],[119.47372430000007,-8.452740699999936],[119.4666519000001,-8.4478979],[119.46581270000001,-8.441625599999952],[119.46766660000003,-8.439065],[119.46726990000002,-8.437394099999949],[119.45699310000009,-8.428500199999974]]],[[[119.86767580000003,-8.412304899999981],[119.86357880000003,-8.409749],[119.86471560000007,-8.411109899999929],[119.86426540000002,-8.415767699999947],[119.86808780000001,-8.414586099999951],[119.871727,-8.415333699999962],[119.87272640000003,-8.417736],[119.8715668000001,-8.4199553],[119.87387090000004,-8.420791599999973],[119.87505340000007,-8.41578009999995],[119.87345890000006,-8.412951499999963],[119.86767580000003,-8.412304899999981]]],[[[119.81222530000002,-8.399339699999928],[119.81004330000007,-8.3951025],[119.80626680000012,-8.393286699999976],[119.80376430000001,-8.394226099999969],[119.80361180000011,-8.397164299999929],[119.80524450000007,-8.3990211],[119.8119736000001,-8.400603299999943],[119.81222530000002,-8.399339699999928]]],[[[119.7983551000001,-8.392566699999975],[119.79872130000001,-8.391244],[119.79617310000003,-8.389084799999978],[119.7983551000001,-8.392566699999975]]],[[[120.04723360000003,-8.387450199999932],[120.04828640000005,-8.385639199999957],[120.04732510000008,-8.383828199999925],[120.045021,-8.38724039999994],[120.0459595000001,-8.388938],[120.04779050000002,-8.388511699999981],[120.04723360000003,-8.387450199999932]]],[[[119.85786440000004,-8.379612899999927],[119.85518650000006,-8.378027],[119.85566710000012,-8.376092],[119.85271450000005,-8.374619499999937],[119.84772490000012,-8.378213899999935],[119.84217830000011,-8.379670099999942],[119.83911890000002,-8.379043599999932],[119.83924860000002,-8.386199899999951],[119.83773040000005,-8.386373499999934],[119.83927920000008,-8.390069],[119.84532170000011,-8.3955479],[119.85339360000012,-8.395236],[119.85626980000006,-8.396846799999935],[119.85639190000006,-8.399396899999942],[119.85870360000001,-8.401125899999954],[119.86598210000011,-8.40168],[119.87745670000004,-8.379944799999976],[119.87451940000005,-8.3799505],[119.8714447000001,-8.383352299999956],[119.86541750000004,-8.383512499999938],[119.85786440000004,-8.379612899999927]]],[[[120.08044780000012,-8.3700927],[120.08169830000008,-8.368804],[120.08057280000003,-8.3682259],[120.07956970000009,-8.369339699999955],[120.08044780000012,-8.3700927]]],[[[120.0323366,-8.359531899999979],[120.022225,-8.352223399999957],[120.0165005,-8.361334599999964],[120.0161690000001,-8.364679499999966],[120.01824560000011,-8.366186399999947],[120.01643030000002,-8.372475399999928],[120.01755270000001,-8.373278199999959],[120.02216620000002,-8.370406899999978],[120.0256409000001,-8.365297],[120.02955430000009,-8.369045899999946],[120.0333558000001,-8.368392099999937],[120.03312440000002,-8.36159809999998],[120.0315680000001,-8.3623992],[120.03109190000009,-8.361458199999959],[120.0323366,-8.359531899999979]]],[[[120.1320419000001,-8.338836699999945],[120.12166590000004,-8.339255299999934],[120.12180330000001,-8.340939499999934],[120.11741640000002,-8.339768399999969],[120.1128159000001,-8.342462499999954],[120.1120605000001,-8.3455086],[120.11436460000004,-8.347790699999962],[120.11759180000001,-8.348471599999925],[120.11859130000005,-8.350867299999948],[120.121994,-8.350264599999946],[120.12394720000009,-8.353117899999972],[120.127594,-8.35123249999998],[120.1336136000001,-8.354492199999981],[120.1356201000001,-8.354283399999929],[120.13413240000011,-8.351879099999962],[120.1356201000001,-8.350659399999927],[120.13767240000004,-8.352226199999961],[120.13999180000008,-8.350530599999956],[120.14338680000003,-8.352583899999956],[120.14497380000012,-8.351251599999955],[120.153923,-8.35111139999998],[120.15443420000008,-8.349339499999928],[120.14520260000006,-8.342237499999953],[120.1320419000001,-8.338836699999945]]],[[[120.29156490000003,-8.280685399999982],[120.266388,-8.2844858],[120.26104740000005,-8.282725299999981],[120.24394990000008,-8.295145],[120.23986820000005,-8.301739699999928],[120.235466,-8.301661499999966],[120.22315220000007,-8.305584],[120.21594240000002,-8.309971799999971],[120.21022030000006,-8.308918],[120.209053,-8.305958699999962],[120.20050810000009,-8.305607799999962],[120.193779,-8.315444899999932],[120.19071960000008,-8.321875599999942],[120.19160460000012,-8.324402799999973],[120.18882750000012,-8.327431699999977],[120.18847660000006,-8.330364199999963],[120.18318170000009,-8.336919799999976],[120.18302160000007,-8.339524299999937],[120.18603510000003,-8.342858299999932],[120.18531040000005,-8.347878499999979],[120.17816160000007,-8.351269699999932],[120.17196660000002,-8.348109299999976],[120.16748810000001,-8.359225299999935],[120.16310880000003,-8.362109199999963],[120.162323,-8.368888899999945],[120.16676330000007,-8.374869399999966],[120.16301730000009,-8.377927799999952],[120.16118620000009,-8.373815499999978],[120.15753940000002,-8.373002099999951],[120.15097050000008,-8.379985799999929],[120.14715580000006,-8.379838899999982],[120.14516450000008,-8.373470299999951],[120.1472702000001,-8.370631199999934],[120.14689640000006,-8.3670216],[120.14032750000001,-8.364583],[120.1395874000001,-8.365899099999979],[120.1372070000001,-8.364914899999974],[120.13535310000009,-8.365903899999978],[120.1356277000001,-8.367364899999927],[120.13292690000003,-8.365605399999936],[120.13134,-8.367095],[120.12813570000003,-8.363743799999952],[120.12760920000005,-8.3589325],[120.12565610000001,-8.356375699999944],[120.1214371000001,-8.356297499999926],[120.119812,-8.358718899999928],[120.12115480000011,-8.366675399999963],[120.11682130000008,-8.371768],[120.117836,-8.37619879999994],[120.11557770000002,-8.383255],[120.11712650000004,-8.387860299999943],[120.11604310000007,-8.390662199999952],[120.11756130000003,-8.393117899999936],[120.1164169000001,-8.404011699999955],[120.12083430000007,-8.413974799999949],[120.12356570000009,-8.415925],[120.12562560000003,-8.415405299999975],[120.12557220000008,-8.417624499999931],[120.12332920000006,-8.422326099999964],[120.11753080000005,-8.4259987],[120.11607360000005,-8.431808499999931],[120.112648,-8.435064299999965],[120.1133575,-8.438823699999944],[120.1098022000001,-8.441327099999967],[120.10451510000007,-8.437336899999934],[120.09899140000005,-8.439835499999958],[120.0915146000001,-8.44099239999997],[120.08506010000008,-8.437304499999925],[120.08462520000012,-8.429665599999964],[120.08220670000003,-8.42626],[120.0898132000001,-8.421330499999954],[120.0924682000001,-8.421251299999938],[120.09612270000002,-8.413163199999929],[120.09492490000002,-8.412518499999976],[120.09495540000012,-8.407597499999952],[120.09339140000009,-8.406842199999971],[120.08615110000005,-8.414371499999959],[120.08547210000006,-8.412879],[120.08060460000002,-8.415192599999955],[120.0798416,-8.413790699999936],[120.07990270000005,-8.411861399999964],[120.08448790000011,-8.40959259999994],[120.08478550000007,-8.407903699999963],[120.08231350000005,-8.408289899999943],[120.08015440000008,-8.410595899999976],[120.0772171000001,-8.410583499999973],[120.08433530000002,-8.402154899999971],[120.0850067,-8.398572],[120.08086390000005,-8.398169499999938],[120.08551020000004,-8.393750199999943],[120.08451080000009,-8.390687899999932],[120.08670040000004,-8.389142],[120.08650970000008,-8.387614199999973],[120.0832749000001,-8.387260399999946],[120.07967380000002,-8.390083299999958],[120.07759090000002,-8.389748599999962],[120.07062530000007,-8.393295299999977],[120.07038880000005,-8.398243],[120.06738280000002,-8.396252599999968],[120.06343840000011,-8.4028759],[120.05768580000006,-8.404899599999965],[120.05608370000004,-8.403252599999973],[120.0540314000001,-8.405942],[120.05000310000003,-8.405245799999932],[120.05083460000003,-8.402232199999958],[120.04889680000008,-8.402160599999945],[120.04877470000008,-8.398892399999966],[120.05187230000001,-8.3974295],[120.053215,-8.39867879999997],[120.05382540000005,-8.396586399999933],[120.05986790000009,-8.398633],[120.058197,-8.393813099999932],[120.06283570000005,-8.39223],[120.06288150000012,-8.3893738],[120.06515500000012,-8.390344599999935],[120.07039640000005,-8.384606399999939],[120.07315830000005,-8.3835707],[120.07262420000006,-8.381245599999943],[120.07476040000006,-8.37695119999995],[120.07049560000007,-8.377536799999973],[120.06684110000003,-8.380393],[120.06625370000006,-8.377936399999953],[120.06375880000007,-8.378332099999966],[120.05993650000005,-8.38291259999994],[120.05892940000001,-8.387870799999973],[120.05361180000011,-8.38978],[120.053009,-8.394567499999937],[120.04434970000011,-8.394185099999959],[120.04302980000011,-8.397490499999947],[120.04000850000011,-8.397338899999966],[120.0369339,-8.391889599999956],[120.03831480000008,-8.390254],[120.04180910000002,-8.389621699999964],[120.04288480000002,-8.386003499999958],[120.03593450000005,-8.386559499999976],[120.0304642000001,-8.382025699999929],[120.026825,-8.383339899999953],[120.0219727000001,-8.382563599999969],[120.01918030000002,-8.384078],[120.02040860000011,-8.386588099999926],[120.0186768000001,-8.392306299999973],[120.0152359000001,-8.397121399999946],[120.01147460000004,-8.399265299999968],[120.01226040000006,-8.403261199999974],[120.01756290000003,-8.4081345],[120.01546480000002,-8.41296],[120.01328280000007,-8.415138199999944],[120.00829320000003,-8.411672599999974],[120.00540160000003,-8.41365529999996],[120.00008390000005,-8.414042499999937],[119.99792480000008,-8.417156199999965],[120.00115970000002,-8.4223461],[120.001091,-8.427249],[120.00286870000002,-8.430679299999952],[120.0046387000001,-8.430270199999939],[120.01577,-8.435609799999952],[120.01825720000011,-8.4396992],[120.01610570000003,-8.44092269999993],[120.016922,-8.442919699999948],[120.01430510000012,-8.443910599999981],[120.01273350000008,-8.447116899999969],[120.008667,-8.447689099999934],[120.00663760000009,-8.446186099999977],[120.00336460000005,-8.451124199999981],[120.00120550000008,-8.4588718],[119.99742130000004,-8.461347599999954],[119.99143980000008,-8.460080199999936],[119.98981480000009,-8.455424299999947],[119.98722840000005,-8.4568338],[119.98394770000004,-8.4539976],[119.9824982,-8.45164109999996],[119.98332980000009,-8.446703899999932],[119.9818954000001,-8.442756699999961],[119.98031620000006,-8.446267099999943],[119.97661590000007,-8.444506599999954],[119.97365570000011,-8.445437399999946],[119.97274780000009,-8.442192099999943],[119.97716520000006,-8.4352369],[119.97674560000007,-8.432498899999928],[119.97496790000002,-8.431695899999966],[119.97290040000007,-8.432920499999966],[119.97163390000003,-8.42952349999996],[119.9693909,-8.428048099999955],[119.96736140000007,-8.431190499999957],[119.96477510000011,-8.43040659999997],[119.96363070000007,-8.431412699999953],[119.96286770000006,-8.435842499999978],[119.96573640000008,-8.435673699999938],[119.965271,-8.43772219999994],[119.96679690000008,-8.438972499999977],[119.96348570000009,-8.43829059999996],[119.96371460000012,-8.441368099999977],[119.9613571000001,-8.439714399999957],[119.9589539000001,-8.440214199999957],[119.9567032000001,-8.443532],[119.9586792,-8.443696],[119.9617310000001,-8.450647299999957],[119.95844270000009,-8.452351599999929],[119.95860290000007,-8.450350799999967],[119.95715330000007,-8.4495926],[119.95313260000012,-8.454476299999953],[119.94436640000004,-8.458922399999949],[119.94156650000002,-8.458906199999944],[119.93913270000007,-8.455344199999956],[119.93424230000005,-8.4575176],[119.932663,-8.4567652],[119.93173980000006,-8.459730099999945],[119.92382810000004,-8.464332599999977],[119.92236330000003,-8.4665823],[119.9209747000001,-8.465633399999945],[119.9160614000001,-8.46653269999996],[119.91603090000001,-8.468692799999928],[119.913765,-8.469192499999963],[119.91317750000007,-8.471412699999973],[119.90750120000007,-8.475550699999928],[119.90086370000006,-8.465604799999937],[119.89178470000002,-8.4639788],[119.88677220000011,-8.460914599999967],[119.883934,-8.463630699999953],[119.88157650000005,-8.463680299999965],[119.87730410000006,-8.458919499999979],[119.87882230000002,-8.449527699999976],[119.88301090000004,-8.446396799999945],[119.88820650000002,-8.445475599999952],[119.89024350000011,-8.442979799999932],[119.88780210000004,-8.441449199999965],[119.8872986,-8.443309799999952],[119.88527680000004,-8.443936399999927],[119.87730410000006,-8.442888299999936],[119.87892150000005,-8.43999],[119.88289640000005,-8.4387417],[119.88258360000009,-8.436541499999976],[119.87957,-8.4350939],[119.88002010000002,-8.432420699999966],[119.88240050000002,-8.430157699999938],[119.88004300000011,-8.427008599999965],[119.8755417000001,-8.428098699999964],[119.87174990000005,-8.427265199999965],[119.86080930000003,-8.432217599999944],[119.85758210000006,-8.429902099999936],[119.8570099000001,-8.432078399999966],[119.8614884000001,-8.436702699999955],[119.86283870000011,-8.4405231],[119.86280820000002,-8.448079099999973],[119.8608551000001,-8.453285199999925],[119.86790470000005,-8.454118699999981],[119.87136840000005,-8.457316399999968],[119.87184910000008,-8.464978199999962],[119.88146210000002,-8.477858599999934],[119.87482450000005,-8.489727],[119.8793945000001,-8.498286199999939],[119.87737270000002,-8.501929299999972],[119.8771134000001,-8.507593199999974],[119.8730164000001,-8.512594199999967],[119.87355040000011,-8.517376899999931],[119.86784360000001,-8.524131799999964],[119.85402680000004,-8.534450499999934],[119.85260770000002,-8.531560899999931],[119.8510361000001,-8.531386399999974],[119.85033420000002,-8.53415579999995],[119.84551240000008,-8.536280599999941],[119.84632870000007,-8.537858],[119.8441696000001,-8.539671899999973],[119.833519,-8.539312399999972],[119.8309326000001,-8.550792699999931],[119.8289185000001,-8.551534699999934],[119.82837680000011,-8.553702399999963],[119.82637790000001,-8.555676499999947],[119.81440730000008,-8.559717199999966],[119.81312560000003,-8.5635729],[119.80981450000002,-8.564209],[119.80865480000011,-8.569091799999967],[119.8050919000001,-8.570711099999926],[119.80371860000002,-8.576369299999953],[119.80432890000009,-8.583046],[119.80793760000006,-8.585772499999962],[119.799675,-8.590363499999967],[119.79821780000009,-8.598553599999946],[119.8053665000001,-8.604049699999962],[119.80847930000004,-8.601981199999955],[119.81101230000002,-8.604359599999952],[119.80937960000006,-8.608968699999934],[119.8065262,-8.611226099999953],[119.8061676000001,-8.615701699999931],[119.80979920000004,-8.6249847],[119.80779270000005,-8.627235399999961],[119.80644990000008,-8.640485799999965],[119.81127170000002,-8.661053699999968],[119.809372,-8.665011399999969],[119.81128690000003,-8.668356],[119.80913550000002,-8.671950299999935],[119.8037796000001,-8.6712246],[119.8035202000001,-8.6739406],[119.7996826000001,-8.678286599999979],[119.80038450000006,-8.684938399999965],[119.7983398,-8.690505],[119.79567720000011,-8.691559799999936],[119.79816440000002,-8.6948871],[119.7964859000001,-8.702100799999926],[119.79869840000003,-8.705854399999964],[119.80333710000002,-8.709405],[119.80172730000004,-8.7111244],[119.80195620000006,-8.720682099999976],[119.79953770000009,-8.721878],[119.79833220000012,-8.723774],[119.79962160000002,-8.724448199999927],[119.799202,-8.72635749999995],[119.79671480000002,-8.727704],[119.79917910000006,-8.729759199999933],[119.80066680000004,-8.727859499999965],[119.8024292,-8.727893799999947],[119.80672450000009,-8.730379099999936],[119.80754090000005,-8.733365099999958],[119.8056183000001,-8.738419499999964],[119.79850770000007,-8.739619299999958],[119.796196,-8.741691599999967],[119.801117,-8.743974699999967],[119.79840090000005,-8.746725099999935],[119.80159,-8.74789519999996],[119.80202480000003,-8.750342399999965],[119.80682370000011,-8.748972899999956],[119.80902860000003,-8.75384809999997],[119.80811310000001,-8.755776399999945],[119.80063630000006,-8.757681799999943],[119.7996597,-8.759945899999934],[119.8012619000001,-8.761870399999964],[119.80046080000011,-8.764858299999958],[119.80147550000004,-8.76432129999995],[119.80293270000004,-8.765996],[119.80307010000001,-8.770612699999958],[119.8062973000001,-8.768536599999948],[119.80877680000003,-8.770048199999962],[119.81033320000006,-8.772970199999975],[119.80814360000011,-8.775766399999952],[119.80868530000009,-8.776690499999972],[119.81362150000007,-8.775942799999939],[119.8142166,-8.780585299999927],[119.815239,-8.779551499999968],[119.81934360000002,-8.7804547],[119.82032780000009,-8.778333699999962],[119.82186890000003,-8.77914519999996],[119.82215880000001,-8.782431599999938],[119.81868750000001,-8.783397699999966],[119.81725310000002,-8.786683099999948],[119.81929020000007,-8.786354099999926],[119.82022860000006,-8.788627599999927],[119.82207490000008,-8.788105],[119.82354740000005,-8.789548899999943],[119.82727810000006,-8.786892899999941],[119.82953650000002,-8.78741359999998],[119.83061980000002,-8.794109299999946],[119.83217620000005,-8.793713599999933],[119.83203890000004,-8.7966194],[119.83538050000004,-8.798058499999968],[119.8364716000001,-8.800500899999975],[119.83261870000001,-8.805479099999957],[119.83333590000007,-8.806576699999937],[119.83785250000005,-8.807215699999972],[119.84212490000004,-8.797325099999966],[119.8441696000001,-8.796932199999958],[119.84648890000005,-8.7983189],[119.84774020000009,-8.804467199999976],[119.8598938,-8.802118299999961],[119.8596649000001,-8.805023199999937],[119.8636322000001,-8.808507899999938],[119.86177060000011,-8.812228199999936],[119.86247250000008,-8.813728399999945],[119.86334230000011,-8.812392199999977],[119.8649597000001,-8.813053099999934],[119.86609650000003,-8.8100481],[119.86985780000009,-8.807417899999962],[119.87171940000007,-8.810793899999965],[119.87397770000007,-8.81147379999993],[119.87641910000002,-8.811920199999975],[119.88314820000005,-8.809170699999981],[119.8845596000001,-8.809822099999963],[119.88494870000011,-8.813113199999975],[119.89024350000011,-8.812705],[119.89033510000002,-8.814503699999932],[119.88659670000004,-8.814963399999954],[119.88343050000003,-8.8199463],[119.88406370000007,-8.821149799999944],[119.88787840000009,-8.819959599999947],[119.88683320000007,-8.8231926],[119.8832321000001,-8.824526799999944],[119.8874588000001,-8.829275099999961],[119.88274380000007,-8.829010899999957],[119.88532260000011,-8.832736],[119.88300320000008,-8.833564799999976],[119.884491,-8.84085269999997],[119.89314270000011,-8.841540299999963],[119.89520260000006,-8.8438244],[119.89057160000004,-8.845507599999962],[119.88973240000007,-8.848478299999954],[119.88597870000001,-8.851409899999965],[119.8874207,-8.854446399999972],[119.89209750000009,-8.853075],[119.88951110000005,-8.858862899999963],[119.89310450000005,-8.860329599999943],[119.89891050000006,-8.858062699999948],[119.89876560000005,-8.863361399999974],[119.90007020000007,-8.860766399999932],[119.9030457,-8.862822499999936],[119.90438080000001,-8.862144499999943],[119.905693,-8.867050199999937],[119.9083710000001,-8.864593499999955],[119.9113235000001,-8.867332499999975],[119.91309360000002,-8.862987499999974],[119.91642760000002,-8.86634639999994],[119.91917420000004,-8.865890499999978],[119.92195890000005,-8.861268099999961],[119.92082980000009,-8.856416699999954],[119.9172592000001,-8.852324499999952],[119.916481,-8.846111299999961],[119.91189570000006,-8.844719899999973],[119.90975950000006,-8.839076],[119.91223150000008,-8.838622099999952],[119.92270660000008,-8.84363559999997],[119.9251633,-8.833059299999945],[119.93242650000002,-8.829435299999943],[119.93918610000003,-8.822946599999966],[119.9445038,-8.820636699999966],[119.96363070000007,-8.823194499999943],[119.9693909,-8.826060299999938],[119.97692110000003,-8.821154599999943],[119.99104310000007,-8.820021599999961],[119.997673,-8.817940699999951],[120.00994870000011,-8.817467699999952],[120.01638030000004,-8.8192759],[120.0238266,-8.814220399999954],[120.03675080000005,-8.81283469999994],[120.04546360000006,-8.813822799999969],[120.04936220000002,-8.8116045],[120.05234530000007,-8.812171],[120.057991,-8.808117899999957],[120.0802536000001,-8.802579899999955],[120.0840607,-8.798946399999977],[120.09757230000002,-8.7937803],[120.110672,-8.79073619999997],[120.1401062000001,-8.788497899999982],[120.14795680000009,-8.786286299999972],[120.14855200000011,-8.784710899999936],[120.15914920000012,-8.785423299999934],[120.16723630000001,-8.788868],[120.1830063000001,-8.803165399999955],[120.19049070000005,-8.813617699999952],[120.19763180000007,-8.818951599999934],[120.19922640000004,-8.822855],[120.203331,-8.821407299999976],[120.21060940000007,-8.828120199999944],[120.21276860000012,-8.831346499999938],[120.2133179000001,-8.836353299999928],[120.22226720000003,-8.836002299999961],[120.2281494,-8.841511699999955],[120.23135380000008,-8.83773519999994],[120.23398120000002,-8.837316699999974],[120.24003240000002,-8.830024299999934],[120.23507690000008,-8.819036499999982],[120.23547360000009,-8.816068599999937],[120.23285670000007,-8.812547699999925],[120.23891550000008,-8.808991699999979],[120.24018390000003,-8.802909099999965],[120.24741670000003,-8.799077099999977],[120.25097710000011,-8.795212399999969],[120.25624660000005,-8.7961665],[120.26158910000004,-8.7950954],[120.26493070000004,-8.789816899999948],[120.28107450000005,-8.788996699999927],[120.28372190000005,-8.787242899999967],[120.28149410000003,-8.7788286],[120.2733459000001,-8.767615299999932],[120.271904,-8.76210969999994],[120.27380370000003,-8.759434699999929],[120.28410340000005,-8.7594128],[120.28545380000003,-8.757781],[120.28780360000007,-8.758537299999944],[120.28823850000003,-8.757280299999934],[120.29338840000003,-8.756526899999926],[120.30330660000004,-8.7417069],[120.31201170000008,-8.735728299999948],[120.31359860000009,-8.733128499999964],[120.31414030000008,-8.7241564],[120.3229904000001,-8.721893299999977],[120.3267823000001,-8.717645599999969],[120.3274384,-8.709049199999981],[120.33257060000005,-8.694000899999935],[120.33156730000007,-8.688382499999932],[120.32101940000007,-8.681468799999948],[120.3151855000001,-8.670658099999969],[120.31224820000011,-8.669491799999946],[120.31281280000007,-8.667678799999976],[120.311409,-8.667634],[120.30606840000007,-8.675183299999958],[120.30368810000004,-8.675248099999976],[120.2991257000001,-8.672450099999935],[120.29942320000009,-8.670649499999968],[120.29682920000005,-8.672052399999927],[120.2951203,-8.669965699999977],[120.29642490000003,-8.669194199999936],[120.295517,-8.668066],[120.2964783000001,-8.666432399999962],[120.29515070000002,-8.666271199999926],[120.29531860000009,-8.664624199999935],[120.29393770000001,-8.66538049999997],[120.29587560000004,-8.663211799999942],[120.2902908000001,-8.660976399999981],[120.28955840000003,-8.657424899999967],[120.28826140000001,-8.658056299999942],[120.28795620000005,-8.655601499999932],[120.28590390000011,-8.656294799999955],[120.28607940000006,-8.65460109999998],[120.28173060000006,-8.651600799999926],[120.28195950000008,-8.649055499999974],[120.27985380000007,-8.647877699999981],[120.2817993000001,-8.644970899999976],[120.28741460000003,-8.644577],[120.28773500000011,-8.642597199999955],[120.28949740000007,-8.642088899999976],[120.2902451000001,-8.637234699999965],[120.28890990000002,-8.633100499999955],[120.28051760000005,-8.625216499999965],[120.28223420000006,-8.609445599999958],[120.28513340000006,-8.605007199999932],[120.28515630000004,-8.597451199999966],[120.29091640000001,-8.590641],[120.29889680000008,-8.585826899999972],[120.31513220000011,-8.582884799999931],[120.317482,-8.578505499999949],[120.31909180000002,-8.567871099999934],[120.32641600000011,-8.563427899999965],[120.33041380000009,-8.558746299999939],[120.3325119000001,-8.558346799999981],[120.33569330000012,-8.563756],[120.34361270000011,-8.57143979999995],[120.35171510000009,-8.57187369999997],[120.36115260000008,-8.568506199999945],[120.35840610000002,-8.55914789999997],[120.36054230000002,-8.54706],[120.3523712000001,-8.524391199999968],[120.35383610000008,-8.5226727],[120.35497280000004,-8.5237398],[120.35625460000006,-8.522162399999957],[120.36103060000005,-8.5210876],[120.36275480000006,-8.518126499999937],[120.372467,-8.514711399999953],[120.37121580000007,-8.512384399999974],[120.3737106000001,-8.512014399999941],[120.37278750000007,-8.510233899999946],[120.3752975000001,-8.507564499999944],[120.37386320000007,-8.5059919],[120.37574770000003,-8.499901799999975],[120.38095090000002,-8.494303699999932],[120.38056940000001,-8.48817349999996],[120.38408660000005,-8.487907399999926],[120.38648230000001,-8.484885199999951],[120.38819120000005,-8.486143099999936],[120.389328,-8.485197099999937],[120.38757320000002,-8.483404199999939],[120.3882446,-8.478367799999944],[120.38699340000005,-8.474932699999954],[120.38899990000004,-8.469750399999953],[120.39175420000004,-8.467001],[120.38954930000011,-8.465622899999971],[120.39014430000009,-8.458337799999981],[120.39719390000005,-8.461532599999941],[120.399086,-8.460941299999945],[120.39707180000005,-8.457365],[120.39456180000002,-8.457397499999956],[120.39469150000002,-8.454655699999932],[120.39278410000009,-8.454300899999964],[120.39879610000003,-8.4507799],[120.39927680000005,-8.4438639],[120.39739230000009,-8.442689],[120.39769740000008,-8.439432199999942],[120.39590460000011,-8.438569099999938],[120.39809420000006,-8.437052699999981],[120.39565280000011,-8.433259],[120.39572910000004,-8.429402399999958],[120.39320380000004,-8.429727499999956],[120.39176940000004,-8.427936599999953],[120.3906098000001,-8.4304018],[120.38943480000012,-8.425306299999932],[120.38609310000004,-8.4261398],[120.38770290000002,-8.42834659999994],[120.3869247,-8.429235499999947],[120.3769989000001,-8.428894],[120.36928560000001,-8.431114199999968],[120.36442560000012,-8.428933099999938],[120.357132,-8.4296084],[120.35254670000006,-8.4258251],[120.34983060000002,-8.42764],[120.3458786000001,-8.426138899999955],[120.33702090000008,-8.433548],[120.33819580000011,-8.436488099999963],[120.33524320000004,-8.437767],[120.33335110000007,-8.440522199999975],[120.33126070000003,-8.4410915],[120.33129880000001,-8.435771],[120.32687380000004,-8.436861],[120.32176970000012,-8.444494299999974],[120.31736750000005,-8.444726899999978],[120.3163757000001,-8.44758509999997],[120.31256870000004,-8.4500485],[120.30878450000012,-8.44938469999994],[120.3062897000001,-8.451384599999926],[120.29580690000012,-8.4396858],[120.29309080000007,-8.431345],[120.28402710000012,-8.422610299999974],[120.28301240000008,-8.4177437],[120.2848206000001,-8.405486099999962],[120.2829819000001,-8.391694099999938],[120.2857666000001,-8.386162799999966],[120.28585050000004,-8.376296099999934],[120.2889709000001,-8.3570948],[120.2880249000001,-8.350878699999953],[120.28890230000002,-8.344826699999942],[120.28611760000001,-8.339810399999976],[120.28804020000007,-8.331455199999937],[120.29103850000001,-8.327463199999954],[120.29084020000005,-8.317730899999958],[120.29261780000002,-8.3130865],[120.29033660000005,-8.308186499999977],[120.29048920000002,-8.301826499999947],[120.288765,-8.298786099999973],[120.28968810000003,-8.286222399999929],[120.29156490000003,-8.280685399999982]]]]},"properties":{"shapeName":"Manggarai Barat","shapeISO":"","shapeID":"22746128B22305835394432","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[120.51839140000004,-8.818397],[120.52835080000011,-8.813009199999954],[120.53659820000007,-8.811513],[120.54458620000003,-8.812161499999945],[120.55156710000006,-8.8167391],[120.5593338000001,-8.816217399999971],[120.56489560000011,-8.817513399999939],[120.572464,-8.816430099999934],[120.579773,-8.818209699999954],[120.58878330000005,-8.814997699999935],[120.59693140000002,-8.815368699999965],[120.60750530000007,-8.820878599999958],[120.6127345000001,-8.826636699999938],[120.61215570000002,-8.832387599999947],[120.61988070000007,-8.8438091],[120.6258951000001,-8.848291],[120.63262940000004,-8.857096699999943],[120.63809970000011,-8.859812699999964],[120.6463318000001,-8.867126499999927],[120.65587620000008,-8.870094299999948],[120.68983460000004,-8.870936399999948],[120.70243070000004,-8.881934199999932],[120.70449070000006,-8.880809799999952],[120.710228,-8.88150879999995],[120.71894070000008,-8.886646299999938],[120.72528840000007,-8.885179499999936],[120.72635650000007,-8.886464099999955],[120.7305679000001,-8.88677309999997],[120.73545070000011,-8.89024539999997],[120.73753330000011,-8.888122599999974],[120.73909760000004,-8.8884174],[120.74597090000009,-8.893183699999952],[120.74751220000007,-8.8912163],[120.75381470000002,-8.892935799999975],[120.7652359000001,-8.88949969999993],[120.7686615,-8.88701919999994],[120.77449890000003,-8.8868625],[120.77428780000002,-8.883670799999948],[120.77997590000007,-8.875684699999965],[120.7853775000001,-8.873186099999941],[120.78594970000006,-8.847402599999953],[120.788971,-8.840503699999942],[120.79216510000003,-8.839352299999973],[120.79726430000005,-8.840808799999934],[120.80532570000003,-8.839751],[120.80988310000009,-8.841893199999959],[120.81635290000008,-8.841756799999928],[120.82018280000011,-8.837900199999979],[120.81905970000003,-8.8358573],[120.81001340000012,-8.8297253],[120.81126240000003,-8.825562],[120.81636240000012,-8.8251457],[120.8236882000001,-8.821710799999948],[120.82539710000003,-8.817706499999929],[120.8244539000001,-8.815322399999957],[120.830719,-8.8019972],[120.82923540000002,-8.799208599999929],[120.83043670000006,-8.796847299999968],[120.83428170000002,-8.795350299999939],[120.83295110000006,-8.7926138],[120.8343939,-8.789429799999937],[120.84012670000004,-8.792217299999947],[120.84065250000003,-8.79083019999996],[120.83792690000007,-8.787493599999948],[120.84091190000004,-8.786068899999975],[120.84116140000003,-8.783444599999939],[120.84543610000003,-8.782928499999969],[120.8406079,-8.776181599999973],[120.84269460000007,-8.773567599999978],[120.845726,-8.772709899999938],[120.84193490000007,-8.770602699999927],[120.84481050000011,-8.765444799999955],[120.84345250000001,-8.762913699999956],[120.85002140000006,-8.759655899999927],[120.84826520000001,-8.755012],[120.85034940000003,-8.752501499999937],[120.85491880000006,-8.7506733],[120.856369,-8.747387899999978],[120.85438540000007,-8.744155899999953],[120.856259,-8.741871299999957],[120.8559762000001,-8.738458],[120.85349470000006,-8.734159399999953],[120.85535070000003,-8.729186499999969],[120.85123260000012,-8.7294372],[120.84915290000004,-8.725546299999962],[120.8504554000001,-8.721846399999947],[120.84386030000007,-8.719962299999963],[120.84598180000012,-8.715478699999949],[120.84446390000005,-8.709028699999976],[120.8467237000001,-8.704074599999956],[120.8506863,-8.705728499999964],[120.854744,-8.703576099999964],[120.85677030000011,-8.704417599999942],[120.85671230000003,-8.7018404],[120.85890160000008,-8.701752799999952],[120.86054230000002,-8.698985099999959],[120.862701,-8.699412399999972],[120.86581290000004,-8.69646679999994],[120.86728240000002,-8.696274599999981],[120.8680796000001,-8.698025399999949],[120.87128450000012,-8.695624399999929],[120.87496570000008,-8.69700469999998],[120.87547860000006,-8.693488199999933],[120.87427520000006,-8.691762],[120.87873840000009,-8.686595],[120.87847140000008,-8.6827106],[120.880432,-8.681601499999942],[120.88108060000002,-8.678998],[120.8832605,-8.678544299999942],[120.88059120000003,-8.677098399999977],[120.88350680000008,-8.675883299999953],[120.88130020000006,-8.674007299999971],[120.88240540000004,-8.671872399999927],[120.879631,-8.671246499999938],[120.88085940000008,-8.666427599999963],[120.88427530000001,-8.664672],[120.88330080000003,-8.660994499999958],[120.88964850000002,-8.657236099999977],[120.88910680000004,-8.654027],[120.89138430000003,-8.6501677],[120.885421,-8.647306],[120.88628390000008,-8.644481699999972],[120.8843141000001,-8.643738799999937],[120.88586980000002,-8.640829799999949],[120.88346800000011,-8.639441],[120.88427510000008,-8.636738599999944],[120.88276440000004,-8.635598799999968],[120.88814410000009,-8.631057899999973],[120.88861120000001,-8.626327],[120.88530710000009,-8.625695199999939],[120.88472190000005,-8.623027199999967],[120.88659360000008,-8.623243599999967],[120.88624470000002,-8.6215656],[120.88145,-8.6176339],[120.88266030000011,-8.612283599999955],[120.8787880000001,-8.612042199999962],[120.88160710000011,-8.608645399999943],[120.87944030000006,-8.606567499999926],[120.8813884000001,-8.604434599999934],[120.88065610000001,-8.601821299999926],[120.87618550000002,-8.595460199999934],[120.87507770000002,-8.597875199999976],[120.87305450000008,-8.595824199999981],[120.87325250000004,-8.594171],[120.86982730000011,-8.594289799999956],[120.87195990000009,-8.592340899999954],[120.868842,-8.59095739999998],[120.86917560000006,-8.585392299999967],[120.86486820000005,-8.583913799999948],[120.86265560000004,-8.577815099999953],[120.86355120000007,-8.576481499999943],[120.86051180000004,-8.573088599999949],[120.86246380000011,-8.569502099999966],[120.86410560000002,-8.570134],[120.86685010000008,-8.567968],[120.86989490000008,-8.568792199999962],[120.87259670000003,-8.567347499999926],[120.87430570000004,-8.563353499999948],[120.87181090000001,-8.558074],[120.868866,-8.556444099999965],[120.86569980000002,-8.5508251],[120.85147860000006,-8.537986799999942],[120.85102080000001,-8.534855799999946],[120.85243990000004,-8.532922699999972],[120.849823,-8.528507399999967],[120.851414,-8.527380299999948],[120.85133360000009,-8.522415099999932],[120.85009430000002,-8.518522599999926],[120.84544370000003,-8.517799399999944],[120.8453598000001,-8.515261599999974],[120.847889,-8.5123347],[120.84798300000011,-8.509519499999953],[120.85256960000004,-8.50764849999996],[120.85222550000003,-8.5043382],[120.85968020000007,-8.501849199999981],[120.861351,-8.5029516],[120.86566920000007,-8.500111599999968],[120.86846920000005,-8.500040099999978],[120.87407410000003,-8.4845884],[120.87983720000011,-8.482679099999928],[120.88143180000009,-8.478029899999967],[120.88726040000006,-8.477069899999947],[120.88819890000002,-8.481276499999979],[120.89482930000008,-8.484440399999926],[120.904213,-8.479641],[120.91509250000001,-8.477615399999934],[120.92231570000001,-8.472558299999946],[120.92340740000009,-8.4675711],[120.91645750000009,-8.460445899999968],[120.91082,-8.4577474],[120.91263580000009,-8.44362259999997],[120.91703030000008,-8.434919399999956],[120.9220580000001,-8.4301318],[120.92627750000008,-8.422731],[120.92735040000002,-8.419349],[120.9266424000001,-8.411767899999973],[120.92884830000003,-8.4071665],[120.94215070000007,-8.400256399999932],[120.94238940000002,-8.390714399999979],[120.945303,-8.381067599999938],[120.94403840000007,-8.37855819999993],[120.94971470000007,-8.376472499999977],[120.94836420000001,-8.373295799999937],[120.94953160000011,-8.370870599999932],[120.94782260000011,-8.371859599999937],[120.9459839000001,-8.370819099999949],[120.94689180000012,-8.3620148],[120.94351960000006,-8.362007199999937],[120.93872070000009,-8.357222599999943],[120.93834690000006,-8.355717699999957],[120.9421311000001,-8.352893799999947],[120.94520570000009,-8.3540154],[120.93999480000002,-8.34836009999998],[120.92946620000009,-8.35182279999998],[120.9214859000001,-8.35641759999993],[120.905693,-8.356952699999965],[120.89642330000004,-8.352471299999934],[120.89305120000006,-8.3532314],[120.88761140000008,-8.3589659],[120.88936620000004,-8.361509299999966],[120.8889008000001,-8.363894399999936],[120.88359070000001,-8.37199309999994],[120.88418580000007,-8.360902799999963],[120.88690190000011,-8.354785],[120.88211820000004,-8.349409099999946],[120.85444640000003,-8.357659299999966],[120.83111570000005,-8.346213299999931],[120.82105260000003,-8.346771199999978],[120.8155594000001,-8.344278299999928],[120.80860140000004,-8.338631599999928],[120.7946167,-8.340572399999928],[120.7907944000001,-8.343554499999925],[120.78252410000005,-8.345455199999947],[120.76755520000006,-8.3411417],[120.76242830000001,-8.336235099999953],[120.75868990000004,-8.338200599999936],[120.756897,-8.34313009999994],[120.7488174,-8.348341],[120.73358150000001,-8.348884599999963],[120.7266998,-8.342401499999937],[120.72122190000005,-8.340462699999932],[120.7165146000001,-8.336517299999969],[120.71540830000004,-8.3263435],[120.700119,-8.327079799999979],[120.68997190000005,-8.32955839999994],[120.68542480000008,-8.325932499999965],[120.67801670000006,-8.323165899999935],[120.67609410000011,-8.316579799999943],[120.67718510000009,-8.309593199999938],[120.67411040000002,-8.307644799999935],[120.66603090000001,-8.308265699999936],[120.66189580000002,-8.305396099999939],[120.6623459000001,-8.303393399999948],[120.6594315000001,-8.302115499999957],[120.6571808000001,-8.290776299999948],[120.6554794000001,-8.28889849999996],[120.62799840000002,-8.267955799999982],[120.61858370000004,-8.263833],[120.61240390000012,-8.2638178],[120.60826880000002,-8.259461399999964],[120.60086820000004,-8.255334799999957],[120.59500880000007,-8.257132499999955],[120.59371180000005,-8.254355399999952],[120.59093480000001,-8.260891],[120.59317780000003,-8.266627299999925],[120.59622960000002,-8.269835499999942],[120.60048680000011,-8.270434399999942],[120.60528560000012,-8.277339],[120.5991821,-8.291128199999946],[120.59080510000001,-8.297114399999941],[120.5774841000001,-8.295604699999956],[120.569046,-8.2968674],[120.56286620000003,-8.300787899999932],[120.55829620000009,-8.300215699999967],[120.55516820000003,-8.2955523],[120.55221560000007,-8.2938003],[120.55021670000008,-8.294648199999926],[120.54153440000005,-8.287981],[120.53968810000003,-8.282567],[120.53193660000011,-8.277334199999927],[120.532608,-8.273691199999973],[120.53005980000012,-8.272347399999944],[120.52588650000007,-8.2737961],[120.51955410000005,-8.279333099999974],[120.51468660000012,-8.280481299999963],[120.5120621000001,-8.283261299999936],[120.50783540000009,-8.284369499999968],[120.5058365000001,-8.282977099999925],[120.50461580000001,-8.284382799999946],[120.50552370000003,-8.285834299999976],[120.50273130000005,-8.2889757],[120.49278030000005,-8.2926834],[120.49603280000008,-8.3013983],[120.49403860000007,-8.310932799999932],[120.49151580000012,-8.316003199999955],[120.48545350000006,-8.313457899999946],[120.48261080000009,-8.313695099999961],[120.4803793000001,-8.32149],[120.4797311000001,-8.3287994],[120.48298580000005,-8.333261899999968],[120.481882,-8.341668199999958],[120.48362210000005,-8.349030099999936],[120.48263610000004,-8.351412899999957],[120.47864690000006,-8.353697799999964],[120.47734320000006,-8.357817799999964],[120.47951720000003,-8.362724799999967],[120.47795970000004,-8.367394099999956],[120.478053,-8.382054399999959],[120.48446230000002,-8.383187899999939],[120.48879610000006,-8.388387],[120.49300950000008,-8.389555],[120.498766,-8.3935977],[120.498503,-8.396558199999959],[120.50022600000011,-8.398856],[120.49919450000004,-8.4030428],[120.50208710000004,-8.404026599999952],[120.50589650000006,-8.403115299999968],[120.506596,-8.407318199999963],[120.51352350000002,-8.408906899999977],[120.51208090000011,-8.41518919999993],[120.51678410000011,-8.416883],[120.51693950000003,-8.423305],[120.52026020000005,-8.424746699999957],[120.52102910000008,-8.42668329999998],[120.52010630000007,-8.431211699999949],[120.52210230000003,-8.432097699999929],[120.52186630000006,-8.434088199999962],[120.52428140000006,-8.437904699999933],[120.53055180000001,-8.444894699999963],[120.53058140000007,-8.448121599999979],[120.53498480000007,-8.450902799999938],[120.53224470000009,-8.460316599999942],[120.53691970000011,-8.467684099999929],[120.53570490000004,-8.469272499999931],[120.53809190000004,-8.47242579999994],[120.54251950000003,-8.491154],[120.54565760000003,-8.492083299999933],[120.54642210000009,-8.4939943],[120.54513290000011,-8.505937],[120.54092440000011,-8.511950299999967],[120.54311770000004,-8.514963799999975],[120.54054520000011,-8.518612899999937],[120.53822830000001,-8.518850099999952],[120.53205710000009,-8.52332249999995],[120.53412680000008,-8.52678229999998],[120.53202740000006,-8.529608399999972],[120.5321619,-8.532009399999936],[120.53014810000002,-8.533392399999968],[120.53006660000005,-8.538006799999948],[120.52330460000007,-8.543578499999967],[120.52273490000005,-8.54548559999995],[120.52121620000003,-8.544594],[120.51770460000012,-8.5472253],[120.51517560000002,-8.554028],[120.51592470000003,-8.558414699999958],[120.51430710000011,-8.561938399999974],[120.5121405000001,-8.561875099999952],[120.5104629000001,-8.565115899999967],[120.51223750000008,-8.570988899999975],[120.51093130000004,-8.577770599999951],[120.51337380000007,-8.577630599999964],[120.51391440000009,-8.57997219999993],[120.51588750000008,-8.5800266],[120.51756690000002,-8.584290899999928],[120.51588870000012,-8.587122699999952],[120.51774320000004,-8.590028699999948],[120.51759250000009,-8.592797599999926],[120.52365860000009,-8.59898279999993],[120.52345080000009,-8.600732899999969],[120.52677190000009,-8.602552699999933],[120.52694140000006,-8.605871399999955],[120.52344060000007,-8.609550899999931],[120.52425690000007,-8.617566599999975],[120.5224151000001,-8.630960499999958],[120.52389570000003,-8.638035899999977],[120.51659330000007,-8.638237],[120.50498560000005,-8.643019399999957],[120.49892370000009,-8.643373099999963],[120.4956585000001,-8.645952299999976],[120.4919771000001,-8.64498029999993],[120.48791310000001,-8.650154699999973],[120.48141670000007,-8.652369199999953],[120.47766810000007,-8.662772],[120.46850940000002,-8.673185899999964],[120.47907390000012,-8.692657899999972],[120.491601,-8.702362299999947],[120.49624230000006,-8.711895499999969],[120.50145430000009,-8.718623699999966],[120.50184860000002,-8.742804299999932],[120.50312370000006,-8.747311599999932],[120.50726290000011,-8.752574099999947],[120.5065221000001,-8.7563345],[120.50790870000003,-8.762156199999936],[120.50552070000003,-8.763378699999976],[120.50655620000009,-8.770546599999932],[120.508497,-8.7737428],[120.5037704,-8.78170229999995],[120.50844630000006,-8.785654199999954],[120.51033010000003,-8.803503399999954],[120.51197270000011,-8.8081389],[120.5132731000001,-8.8083513],[120.5137830000001,-8.8156444],[120.51539830000002,-8.815488399999936],[120.51839140000004,-8.818397]]]},"properties":{"shapeName":"Manggarai Timur","shapeISO":"","shapeID":"22746128B17592629418562","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[134.1937336000001,-1.199890099999948],[134.1875682000001,-1.205583],[134.18464810000012,-1.212396699999942],[134.18133860000012,-1.213629599999933],[134.17790420000006,-1.2175232],[134.1831946000001,-1.222515099999953],[134.1753599000001,-1.233349899999951],[134.1852077000001,-1.237603099999944],[134.19046690000005,-1.229966299999944],[134.20346680000011,-1.224096599999939],[134.203796,-1.2157],[134.2023620000001,-1.210118],[134.1937336000001,-1.199890099999948]]],[[[133.9137356000001,-1.188946899999962],[133.9264455000001,-1.184304],[133.89936160000002,-1.166163599999948],[133.89813650000008,-1.173028399999964],[133.9035437000001,-1.176291399999968],[133.91265220000003,-1.190030399999955],[133.9137356000001,-1.188946899999962]]],[[[133.87901540000007,-1.171993099999952],[133.87813280000012,-1.164680099999941],[133.87546140000006,-1.162902799999927],[133.8707554,-1.164038699999935],[133.8724847000001,-1.173722599999962],[133.87970080000002,-1.173835399999973],[133.87901540000007,-1.171993099999952]]],[[[134.0987709000001,-0.888513799999942],[134.0916946000001,-0.8915774],[134.0901536,-0.896235399999966],[134.0910745000001,-0.899304699999959],[134.0958141000001,-0.901889899999958],[134.09919330000002,-0.907099499999958],[134.10511930000007,-0.922291799999925],[134.10661860000005,-0.9229094],[134.11124160000008,-0.919055399999934],[134.1121416000001,-0.913591399999973],[134.10665570000003,-0.90893],[134.1067965000001,-0.9013267],[134.1035581000001,-0.890485],[134.0987709000001,-0.888513799999942]]],[[[134.0822958000001,-0.889047],[134.08417280000003,-0.887201],[134.08263180000006,-0.885537],[134.0800068000001,-0.885827],[134.07829880000008,-0.887898],[134.0822958000001,-0.889047]]],[[[133.99557390000007,-0.741617299999973],[133.99665790000006,-0.736668299999963],[133.9951159000001,-0.735230299999955],[133.99284290000003,-0.736615299999926],[133.99198790000003,-0.740124299999934],[133.99346790000004,-0.741843299999971],[133.99557390000007,-0.741617299999973]]],[[[134.18593740000006,-1.191860499999962],[134.176452,-1.188738],[134.169525,-1.183048],[134.15980500000012,-1.178843],[134.14505,-1.164471],[134.133026,-1.148435],[134.130112,-1.149412],[134.10568200000012,-1.126421],[134.103912,-1.123427],[134.105209,-1.109976],[134.099136,-1.097738],[134.084717,-1.086006899999973],[134.073501,-1.069165],[134.071991,-1.059622],[134.074997,-1.038871],[134.073379,-1.027148],[134.0709230000001,-1.021052],[134.06520100000012,-1.014386],[134.04592900000011,-1.002719],[134.038849,-0.993113],[134.036682,-0.98518],[134.0250850000001,-0.978805],[134.014923,-0.96587],[134.00994900000012,-0.954998],[134.0119780000001,-0.941936],[134.020752,-0.929099],[134.040893,-0.927885],[134.04419,-0.924773],[134.045547,-0.918676],[134.04244360000007,-0.911918799999967],[134.039916,-0.910760399999958],[134.0403384000001,-0.904142699999966],[134.0387896000001,-0.901749099999961],[134.039212,-0.8996371],[134.0496313000001,-0.902171499999952],[134.05413690000012,-0.8965395],[134.0549386,-0.891100699999924],[134.0499377000001,-0.880886299999929],[134.05094240000005,-0.879442899999958],[134.04915330000006,-0.871927699999958],[134.05011720000005,-0.869253899999933],[134.05474960000004,-0.8674786],[134.063947,-0.876063299999942],[134.0691905000001,-0.875817799999936],[134.06991440000002,-0.874404899999945],[134.06850350000002,-0.871558499999935],[134.066226,-0.87073],[134.06928270000003,-0.870623299999977],[134.06879720000006,-0.866933299999971],[134.0669904,-0.865567599999963],[134.06887870000003,-0.858456099999955],[134.0712612000001,-0.861139599999944],[134.07102510000004,-0.8659047],[134.07649870000012,-0.869079699999929],[134.07816960000002,-0.873357699999929],[134.08933720000005,-0.878798499999959],[134.09919330000002,-0.878094499999975],[134.1006013000001,-0.873588899999959],[134.10527,-0.873124],[134.10879020000004,-0.870029399999964],[134.113555,-0.871617699999945],[134.11608940000008,-0.875982499999964],[134.1188095000001,-0.8751633],[134.11608940000008,-0.876686499999948],[134.116371,-0.878798499999959],[134.12045420000004,-0.880347299999926],[134.12467830000003,-0.879924899999935],[134.12890230000005,-0.876968099999942],[134.1332671,-0.871899299999939],[134.13155560000007,-0.870046899999977],[134.13354870000012,-0.872040099999936],[134.1356608000001,-0.869364899999937],[134.13674170000002,-0.863918199999944],[134.1338303000001,-0.861761599999966],[134.13045110000007,-0.864718399999958],[134.1263679000001,-0.862184],[134.1258474000001,-0.855877699999951],[134.10482530000002,-0.842331099999967],[134.08511320000002,-0.822196499999961],[134.08262980000006,-0.813487599999974],[134.0759981000001,-0.813543799999934],[134.041324,-0.803188399999954],[134.03215850000004,-0.796991899999966],[134.02766630000008,-0.7896715],[134.00992540000004,-0.777985],[134.00387100000012,-0.772634499999924],[133.9923646000001,-0.7587199],[133.99313580000012,-0.757930499999929],[133.987915,-0.752929],[133.9823282000001,-0.740383599999973],[133.98570870000003,-0.732020699999964],[133.977635,-0.725900299999978],[133.97754650000002,-0.723599099999944],[133.97342590000005,-0.719785199999933],[133.96904050000012,-0.723165699999925],[133.964951,-0.723153],[133.96406950000005,-0.718736599999943],[133.9610970000001,-0.720300799999961],[133.95015850000004,-0.713789799999972],[133.94599140000003,-0.71392],[133.94120310000005,-0.716579799999977],[133.9359644000001,-0.729286],[133.9326933000001,-0.7331013],[133.92854180000006,-0.732802],[133.9222370000001,-0.721541599999966],[133.9143478000001,-0.7201706],[133.9082274000001,-0.722384299999931],[133.9040897000001,-0.727429499999971],[133.89898180000012,-0.727202499999976],[133.89605210000002,-0.724976],[133.89238000000012,-0.718431],[133.88146070000005,-0.714146399999947],[133.8767140000001,-0.713789799999972],[133.87098430000003,-0.715743099999941],[133.8651244,-0.719910099999936],[133.8665568,-0.724858499999925],[133.86189930000012,-0.725685799999951],[133.8627878000001,-0.729187799999977],[133.8577018000001,-0.731109099999969],[133.85327430000007,-0.730588199999943],[133.851321,-0.727723399999945],[133.84949790000007,-0.732802],[133.83842920000006,-0.732932199999937],[133.83256920000008,-0.735146],[133.81802760000005,-0.747044899999935],[133.8130361000001,-0.747516899999937],[133.807312,-0.746111],[133.799728,-0.739382],[133.79740970000012,-0.727202499999976],[133.7953261,-0.724858499999925],[133.7908986000001,-0.727723399999945],[133.789008,-0.7250968],[133.78591230000006,-0.724822299999971],[133.78256450000003,-0.727072299999975],[133.7801426000001,-0.723491699999954],[133.7775511000001,-0.722417899999925],[133.77735570000004,-0.729416199999946],[133.77292820000002,-0.7301976],[133.77045410000005,-0.728731399999958],[133.7590871000001,-0.727281399999924],[133.7614688000001,-0.7222541],[133.7544368,-0.717826599999967],[133.74955260000002,-0.718514599999935],[133.748056,-0.7206915],[133.74401920000003,-0.721603],[133.7428585,-0.719281699999954],[133.73998230000007,-0.718347499999936],[133.7299554000001,-0.721993699999928],[133.72960030000002,-0.723147499999925],[133.736557,-0.726092],[133.738281,-0.729195],[133.73793000000012,-0.731492],[133.732651,-0.74185],[133.72779900000012,-0.746916],[133.7196374,-0.750672699999939],[133.70903,-0.746765],[133.660767,-0.737824],[133.6361240000001,-0.73514],[133.62566590000006,-0.737959299999943],[133.60546440000007,-0.7346251],[133.58293630000003,-0.726681599999949],[133.579811,-0.723035399999958],[133.5795505000001,-0.720431],[133.57772740000007,-0.7206915],[133.57720660000007,-0.724337599999956],[133.57457940000006,-0.724619099999927],[133.5729093000001,-0.720300799999961],[133.57134660000008,-0.720040399999959],[133.5653565,-0.721603],[133.5647054000001,-0.723947],[133.56900270000006,-0.729806899999971],[133.56825930000002,-0.73785],[133.55645290000007,-0.744079799999952],[133.5506415000001,-0.745563599999969],[133.55054870000004,-0.747049],[133.55025090000004,-0.745563599999969],[133.5285040000001,-0.747777399999961],[133.50858030000006,-0.744261399999971],[133.50658010000006,-0.747705099999962],[133.50067860000001,-0.754287599999941],[133.49568120000004,-0.763694599999951],[133.4837013,-0.773571199999935],[133.47315260000005,-0.810349199999962],[133.46973140000011,-0.860812],[133.47007710000003,-0.883760799999948],[133.47981650000008,-0.884121499999935],[133.48811480000006,-0.887440799999979],[133.61576350000007,-0.905113299999925],[133.64875070000005,-0.906112899999926],[133.68273740000006,-0.916109],[133.7017300000001,-0.924105899999972],[133.71772380000004,-0.928104399999938],[133.742714,-0.929104],[133.7687039000001,-0.936101299999962],[133.82468210000002,-0.947097],[133.82768090000002,-0.956093499999952],[133.82968010000002,-0.985082199999965],[133.82968010000002,-0.994078699999932],[133.82468210000002,-1.013071299999979],[133.82968010000002,-1.027065799999946],[133.82968010000002,-1.053055699999959],[133.82586620000006,-1.063407699999971],[133.89030360000004,-1.061021099999948],[133.88820750000002,-1.050540499999954],[133.8919353000001,-1.022314899999969],[133.87842950000004,-1.0256225],[133.869094,-1.008083099999965],[133.885192,-1.004230499999949],[133.88957570000002,-1.015986899999973],[133.9068926000001,-1.012634099999957],[133.92509930000006,-1.032141299999978],[133.92857950000007,-1.0279876],[133.9262701,-1.010484899999938],[133.93672390000006,-1.010668299999963],[133.9408433000001,-1.019729699999971],[133.95070060000012,-1.034104899999932],[133.9580936000001,-1.037390699999946],[133.9907518000001,-1.0386229],[133.9579582,-1.067347199999972],[133.93779740000002,-1.045746399999928],[133.91831810000008,-1.066017],[133.89388940000003,-1.078949899999941],[133.89514670000005,-1.085236499999951],[133.8693128000001,-1.101770299999941],[133.87975890000007,-1.110920199999953],[133.8934534000001,-1.118119499999978],[133.88889560000007,-1.130718099999967],[133.89334530000008,-1.137647],[133.89302770000006,-1.146021699999949],[133.91124610000008,-1.158638],[133.9250512000001,-1.165604199999962],[133.9296326000001,-1.151134499999955],[133.93059140000003,-1.135549599999933],[133.9382194000001,-1.140986099999964],[133.9624109,-1.109219699999926],[134.00947240000005,-1.077624399999934],[134.0114873000001,-1.097356],[134.0143624000001,-1.109677699999963],[134.01468970000008,-1.125621699999954],[134.018175,-1.134098699999925],[134.07139470000004,-1.181405099999949],[134.05029750000006,-1.201517599999931],[134.0501819000001,-1.208600099999956],[134.0574749000001,-1.2307395],[134.06009530000006,-1.247772199999929],[134.06664640000008,-1.259891599999946],[134.08236890000012,-1.278889699999979],[134.08703860000003,-1.288346699999977],[134.0902301000001,-1.284458099999938],[134.1000567000001,-1.277579499999945],[134.1210201,-1.253013],[134.12560580000002,-1.250392599999941],[134.14132830000005,-1.235980299999937],[134.1485345000001,-1.226153799999963],[134.16851520000012,-1.205518],[134.18292750000012,-1.1956914],[134.18593740000006,-1.191860499999962]],[[133.96660780000002,-0.960316099999943],[133.96376940000005,-0.957036199999948],[133.96637380000004,-0.952452199999925],[133.97280200000012,-0.959125699999959],[133.9685425,-0.962551799999972],[133.96660780000002,-0.960316099999943]],[[134.00089360000004,-0.997367299999951],[134.00331490000008,-0.989180399999952],[134.0092062000001,-0.9909374],[134.00510540000005,-0.998162],[134.00089360000004,-0.997367299999951]]]]},"properties":{"shapeName":"Manokwari","shapeISO":"","shapeID":"22746128B96796781628929","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[134.1937336000001,-1.199890099999948],[134.192566,-1.197184],[134.18593740000006,-1.191860499999962],[134.18292750000012,-1.1956914],[134.16851520000012,-1.205518],[134.1485345000001,-1.226153799999963],[134.14132830000005,-1.235980299999937],[134.12560580000002,-1.250392599999941],[134.1210201,-1.253013],[134.1000567000001,-1.277579499999945],[134.0902301000001,-1.284458099999938],[134.08703860000003,-1.288346699999977],[134.09579850000011,-1.305093899999974],[134.09776390000002,-1.313282699999945],[134.10464250000007,-1.323764399999959],[134.10726290000002,-1.332772],[134.07974850000005,-1.362743099999932],[134.06959440000003,-1.378138],[134.06173310000008,-1.385671699999932],[134.0608039000001,-1.411529599999938],[134.04031020000002,-1.441139],[134.0241906000001,-1.434462099999962],[134.0040133000001,-1.428435099999945],[133.98960870000008,-1.421968299999946],[133.97754710000004,-1.436558399999967],[133.9610385000001,-1.445729899999947],[133.95108090000008,-1.455425499999933],[133.92147020000004,-1.476912899999945],[133.9141330000001,-1.4876566],[133.89107330000002,-1.504165199999932],[133.87846700000011,-1.515185199999962],[133.8793915000001,-1.516167499999938],[133.876235,-1.515170699999942],[133.8295154000001,-1.476152199999945],[133.7997381,-1.446374899999967],[133.77304120000008,-1.427892399999962],[133.75712580000004,-1.405816099999925],[133.7406969000001,-1.389900699999941],[133.72067430000004,-1.378092399999957],[133.6857629000001,-1.366797599999927],[133.6628945000001,-1.3641],[133.66174300000011,-1.395271],[133.65965390000008,-1.410196],[133.660462,-1.430841],[133.665894,-1.481404],[133.6658328000001,-1.510543],[133.664185,-1.542674],[133.652313,-1.588053],[133.666183,-1.592452],[133.683823,-1.593963],[133.759613,-1.594587],[133.805191,-1.597668],[133.81425500000012,-1.600373],[133.854675,-1.60004],[133.866333,-1.59665],[133.87290970000004,-1.657191],[133.868805,-1.691626],[133.866135,-1.703227],[133.86203090000004,-1.706232199999931],[133.862427,-1.715178],[133.8429870000001,-1.759451],[133.837173,-1.786097],[133.835922,-1.806983],[133.838623,-1.8189],[133.8373110000001,-1.829576],[133.84166,-1.869704],[133.871781,-1.953518],[133.873581,-1.967275],[133.871384,-1.983577],[133.871658,-1.99195],[133.88224800000012,-2.022638],[133.920914,-2.017726],[133.95491,-2.015363],[134.0187754000001,-2.004920299999981],[134.00461410000003,-1.910031699999934],[134.00304730000005,-1.862061199999971],[134.0057508000001,-1.8619738],[134.0057508000001,-1.825036399999931],[134.00329460000012,-1.771539799999971],[134.044754,-1.768458],[134.06514,-1.770069],[134.084488,-1.769735],[134.09292410000012,-1.768191799999954],[134.08912710000004,-1.706681099999969],[134.08078000000012,-1.659793],[134.07524100000012,-1.658003],[134.070724,-1.658636],[134.070495,-1.653291],[134.075394,-1.649156],[134.08807400000012,-1.646513],[134.09275800000012,-1.643871],[134.0940700000001,-1.640954699999952],[134.100021,-1.640135],[134.101608,-1.635141],[134.106186,-1.638415],[134.1169890000001,-1.638704],[134.120987,-1.636288],[134.130737,-1.623243],[134.1445920000001,-1.597497],[134.165878,-1.581982],[134.176544,-1.568312],[134.1821440000001,-1.564458],[134.183502,-1.562161],[134.183441,-1.555955],[134.18808,-1.559745],[134.189682,-1.558198],[134.190582,-1.5559],[134.188522,-1.551875],[134.190277,-1.54377],[134.192459,-1.543941],[134.1958310000001,-1.548021],[134.198868,-1.547966],[134.199081,-1.545958],[134.195709,-1.54348],[134.199127,-1.534289],[134.201004,-1.522276],[134.209152,-1.509231],[134.211533,-1.49957],[134.20993,-1.491475],[134.205399,-1.483307],[134.198242,-1.464167],[134.19872940000005,-1.453819],[134.200668,-1.448879],[134.211289,-1.433419],[134.212799,-1.415888],[134.215363,-1.406236],[134.224075,-1.38951],[134.229096,-1.375887],[134.240891,-1.358418],[134.246674,-1.352618],[134.256134,-1.348249],[134.264191,-1.340722],[134.2695010000001,-1.341644],[134.273971,-1.349803],[134.276764,-1.350951],[134.279343,-1.347622],[134.2796790000001,-1.342502],[134.277268,-1.333312],[134.255875,-1.318073],[134.249344,-1.311117],[134.245788,-1.300136],[134.246185,-1.289851],[134.234848,-1.277948],[134.224548,-1.263694],[134.214584,-1.244608],[134.207703,-1.234785],[134.20346680000011,-1.224096599999939],[134.19046690000005,-1.229966299999944],[134.1852077000001,-1.237603099999944],[134.1753599000001,-1.233349899999951],[134.1831946000001,-1.222515099999953],[134.17790420000006,-1.2175232],[134.18133860000012,-1.213629599999933],[134.18464810000012,-1.212396699999942],[134.1875682000001,-1.205583],[134.1937336000001,-1.199890099999948]]]},"properties":{"shapeName":"Manokwari Selatan","shapeISO":"","shapeID":"22746128B5855574059744","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[138.7966765000001,-7.162910899999929],[138.80509940000002,-7.161090799999954],[138.80558760000008,-7.159821],[138.7901763000001,-7.149946199999931],[138.78430160000005,-7.148656799999969],[138.7790831000001,-7.1503863],[138.778839,-7.153894399999956],[138.7840880000001,-7.160921099999939],[138.7887419000001,-7.163361099999975],[138.7966765000001,-7.162910899999929]]],[[[138.71636950000004,-7.116711599999974],[138.71340930000008,-7.117321],[138.71015920000002,-7.121841],[138.7066192000001,-7.137301],[138.70716850000008,-7.141780799999935],[138.71611010000004,-7.156461199999967],[138.726715,-7.162841299999968],[138.74288930000012,-7.166921599999966],[138.76124560000005,-7.167420899999968],[138.77017200000012,-7.164541199999974],[138.75715630000002,-7.143243299999938],[138.7489928000001,-7.137401599999976],[138.74760430000003,-7.1377416],[138.745056,-7.134441399999957],[138.74371330000008,-7.135201399999971],[138.74177540000005,-7.133971699999961],[138.74401840000007,-7.133861499999966],[138.7383727,-7.129541399999937],[138.71636950000004,-7.116711599999974]]],[[[138.64137230000006,-6.566803],[138.6503295000001,-6.574772799999948],[138.6609648000001,-6.573942699999975],[138.6647948000001,-6.576076],[138.66615290000004,-6.579902199999935],[138.66632070000003,-6.589211],[138.67134080000005,-6.592721],[138.67529280000008,-6.601420899999937],[138.68038930000012,-6.606451],[138.68382250000002,-6.608341199999927],[138.6936492000001,-6.609616699999947],[138.6962889,-6.618188399999951],[138.69609060000005,-6.623121699999956],[138.6947173000001,-6.626334199999974],[138.68719470000008,-6.633431],[138.6780394000001,-6.637411099999952],[138.67481980000002,-6.640911099999926],[138.67268360000003,-6.640271199999972],[138.6741637,-6.641571],[138.6726989000001,-6.642961],[138.6726989000001,-6.646911099999954],[138.6703490000001,-6.648721199999954],[138.67100510000012,-6.650331],[138.6696624000001,-6.652801],[138.66601550000007,-6.654931099999942],[138.66593920000003,-6.659831],[138.66860950000012,-6.661601099999928],[138.6673125000001,-6.666881099999955],[138.6703490000001,-6.669071199999962],[138.67100510000012,-6.671451099999956],[138.66934190000006,-6.689361099999928],[138.67289720000008,-6.704700899999978],[138.67233260000012,-6.719491499999947],[138.67349230000002,-6.724313699999925],[138.66407770000012,-6.731423399999926],[138.655197,-6.734705899999938],[138.6507415000001,-6.735234299999945],[138.6392363000001,-6.732461899999976],[138.63641350000012,-6.7297316],[138.6275634000001,-6.7313108],[138.62727350000011,-6.732691299999942],[138.62538140000004,-6.731931199999963],[138.62112420000005,-6.736620899999934],[138.61627190000002,-6.736071099999947],[138.61764520000008,-6.738101],[138.61396780000007,-6.742560899999944],[138.61212150000006,-6.749331],[138.61064140000008,-6.749650899999949],[138.6105956,-6.7553911],[138.61390670000003,-6.767870899999934],[138.618225,-6.777531099999976],[138.63462820000007,-6.799641099999974],[138.6478118000001,-6.811971699999958],[138.66156,-6.818441399999926],[138.67282090000003,-6.832555299999967],[138.672119,-6.8364544],[138.6692809000001,-6.838701699999945],[138.66748040000004,-6.844871499999954],[138.67408740000008,-6.857231599999977],[138.67520130000003,-6.865481399999965],[138.67660510000007,-6.867238499999928],[138.6708678000001,-6.879690599999947],[138.66674790000002,-6.883029],[138.65188590000002,-6.8868628],[138.6401214000001,-6.883640299999968],[138.62843310000005,-6.876205899999945],[138.62658680000004,-6.876473399999952],[138.61941520000005,-6.881521199999952],[138.6127471000001,-6.884221099999934],[138.607788,-6.888511199999925],[138.6002959000001,-6.890611199999967],[138.58808890000012,-6.8977809],[138.58555590000003,-6.897681199999965],[138.58221420000007,-6.901240799999925],[138.580551,-6.900541299999929],[138.5774993000001,-6.902901199999974],[138.57679740000003,-6.905241],[138.5742034000001,-6.906341099999963],[138.57226550000007,-6.9114408],[138.57014460000005,-6.912421199999926],[138.5706176000001,-6.913371099999949],[138.56628410000008,-6.918201],[138.5654906000001,-6.9219708],[138.5690459000001,-6.923621199999957],[138.5656279000001,-6.925621],[138.56530750000002,-6.9307709],[138.5618896000001,-6.932241],[138.560852,-6.934701],[138.5632323000001,-6.936360799999932],[138.56689440000002,-6.9462609],[138.57266230000005,-6.951241],[138.5727385,-6.957231],[138.59637440000006,-6.995641199999966],[138.60462940000002,-7.001851099999953],[138.60610950000012,-7.004711199999974],[138.6101989000001,-7.006290899999954],[138.6094359000001,-7.007141099999956],[138.61228930000004,-7.009810899999934],[138.61506640000005,-7.010561],[138.6158904,-7.009060899999952],[138.61614980000002,-7.012761099999977],[138.63412470000003,-7.0196209],[138.63410940000006,-7.0215711],[138.6373748000001,-7.023541],[138.6471404,-7.026970799999958],[138.647232,-7.029100899999946],[138.65380850000008,-7.032741099999953],[138.6546019000001,-7.034521099999949],[138.65478510000003,-7.033141099999966],[138.661621,-7.037711099999967],[138.66532890000008,-7.037751199999946],[138.66458120000004,-7.040171099999952],[138.67303460000005,-7.047401],[138.67849720000004,-7.048380799999961],[138.67666610000003,-7.050651099999925],[138.68365470000003,-7.0547209],[138.68392930000005,-7.057371099999955],[138.68844590000003,-7.059471099999939],[138.6902923,-7.062780799999928],[138.69197070000007,-7.0630913],[138.69187920000002,-7.065331],[138.71749870000008,-7.081901499999958],[138.747238,-7.107700799999975],[138.76466360000006,-7.119441],[138.77473440000006,-7.124701],[138.78123460000006,-7.1268711],[138.78242480000006,-7.125941299999965],[138.78277580000008,-7.127181],[138.8019713000001,-7.133861099999933],[138.84152210000002,-7.152421],[138.85119620000012,-7.155561],[138.85382070000003,-7.1582561],[138.85671980000006,-7.172132499999975],[138.85540760000004,-7.180483799999934],[138.843048,-7.200048899999956],[138.8325347000001,-7.206546299999957],[138.792755,-7.208236199999931],[138.7916716000001,-7.209586099999967],[138.7903136000001,-7.208226199999956],[138.76350390000005,-7.208256199999937],[138.7629088000001,-7.209716299999968],[138.762329,-7.208176099999946],[138.71307360000003,-7.203016799999943],[138.67742910000004,-7.195626699999934],[138.67314140000008,-7.197886899999958],[138.6691588000001,-7.204076799999939],[138.66712940000002,-7.208476499999961],[138.66725150000002,-7.214186699999971],[139.211346,-7.326481099999967],[139.82870370000012,-7.453893],[140.05781510000008,-7.266099299999951],[140.0647858000001,-6.868014199999948],[140.07240350000006,-6.433134799999948],[139.78806510000004,-6.417622799999947],[139.80051070000002,-6.389274499999942],[139.83646470000008,-6.354011899999932],[139.84821890000012,-6.340183499999966],[139.85444170000005,-6.3242808],[139.85375030000012,-6.306303799999966],[139.8585902000001,-6.286944],[139.8565159000001,-6.281412599999953],[139.8330076000001,-6.269658399999969],[139.82471050000004,-6.257904199999928],[139.8226363000001,-6.238544399999967],[139.8226363000001,-6.221950299999946],[139.8254019000001,-6.206739],[139.8350819000001,-6.194984799999929],[139.869653,-6.191527699999938],[139.72740440000007,-5.716531799999927],[139.72659450000003,-5.438379899999973],[139.70497060000002,-5.235447799999974],[139.64443370000004,-5.041069499999935],[139.25897010000006,-5.547426499999972],[138.94309780000003,-5.722824699999933],[138.9331628000001,-6.087251199999969],[138.92408740000008,-6.420150699999965],[138.9162596000001,-6.418682599999954],[138.91091910000011,-6.429602599999953],[138.90332020000005,-6.432981499999926],[138.88703910000004,-6.446371499999941],[138.88200370000004,-6.453421599999956],[138.87608320000004,-6.456781399999954],[138.87060530000008,-6.465611499999966],[138.86218250000002,-6.470551499999942],[138.85081470000011,-6.4811115],[138.840576,-6.482181499999967],[138.83569320000004,-6.480261299999938],[138.82772810000006,-6.480081599999949],[138.81896960000006,-6.481541599999957],[138.81320180000012,-6.486261399999933],[138.8114012000001,-6.485861799999952],[138.81118760000004,-6.482931599999972],[138.80856310000001,-6.480241799999931],[138.7917844000001,-6.4782038],[138.78101450000008,-6.480737899999951],[138.7683439000001,-6.494042],[138.76074160000007,-6.504812],[138.75250570000003,-6.512414299999932],[138.74553690000005,-6.5149484],[138.69992290000005,-6.507979599999942],[138.68218420000005,-6.514314899999931],[138.67204770000012,-6.520650099999955],[138.6644454000001,-6.545991299999969],[138.65114130000006,-6.5529601],[138.64137230000006,-6.566803]]]]},"properties":{"shapeName":"Mappi","shapeISO":"","shapeID":"22746128B84112455371504","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[119.8066123000001,-4.808795699999962],[119.8104019000001,-4.819968199999948],[119.8102417,-4.823566899999946],[119.80685420000009,-4.827118399999961],[119.8056183000001,-4.830985099999964],[119.80558780000001,-4.842317099999946],[119.80201720000002,-4.845559099999946],[119.8011246000001,-4.854898],[119.802002,-4.8546405],[119.79752350000001,-4.862911199999928],[119.79410550000011,-4.865451299999961],[119.79365540000003,-4.867884599999968],[119.79834750000009,-4.871411799999976],[119.79756160000011,-4.874701499999958],[119.80469510000012,-4.886319199999946],[119.80023960000005,-4.906550899999957],[119.80180360000008,-4.909875899999975],[119.8003235000001,-4.913403499999959],[119.80538180000008,-4.924069399999951],[119.802742,-4.9266868],[119.798111,-4.923944499999948],[119.79278560000012,-4.927079699999979],[119.78816990000007,-4.926549899999941],[119.78611760000001,-4.927620899999965],[119.7816391,-4.931778899999927],[119.77893830000005,-4.940624699999944],[119.77407070000004,-4.94276],[119.75243380000006,-4.936996],[119.75050350000004,-4.934545],[119.75028440000006,-4.931019899999967],[119.74666810000008,-4.929019299999936],[119.725853,-4.9380517],[119.720934,-4.941558],[119.71546200000012,-4.94117],[119.705118,-4.944956],[119.699351,-4.944937],[119.6824951000001,-4.950281599999926],[119.6802216000001,-4.952220899999929],[119.67389680000008,-4.952631499999939],[119.6668701000001,-4.948818199999948],[119.66960140000003,-4.945909499999971],[119.66854100000012,-4.939365899999927],[119.67023470000004,-4.932917599999939],[119.6681671,-4.929723299999978],[119.66345210000009,-4.926659599999937],[119.6604843,-4.922465799999941],[119.65626530000009,-4.922055199999932],[119.651123,-4.924012199999936],[119.64606790000005,-4.920783299999925],[119.64091,-4.915999],[119.642313,-4.905785],[119.628391,-4.902498],[119.61204450000002,-4.887956199999962],[119.60935630000006,-4.8901187],[119.60732670000004,-4.888679899999943],[119.60381170000005,-4.890137799999934],[119.60344420000001,-4.887109799999962],[119.60213210000006,-4.890422199999932],[119.60333670000011,-4.892347299999926],[119.601785,-4.893713099999957],[119.59973390000005,-4.892519399999969],[119.6007340000001,-4.894207799999947],[119.604218,-4.895011899999929],[119.59794680000005,-4.898318499999959],[119.60034750000011,-4.899696499999948],[119.60062590000007,-4.901467],[119.59621620000007,-4.900993099999937],[119.59694410000009,-4.903049499999952],[119.59915990000002,-4.903711199999975],[119.59801980000009,-4.905525],[119.59495660000005,-4.904680299999939],[119.59090680000008,-4.89963],[119.59172810000007,-4.896301799999947],[119.58802230000003,-4.895642399999929],[119.58564700000011,-4.903641199999925],[119.58099550000009,-4.905184199999951],[119.57784970000012,-4.903674299999977],[119.5755732,-4.904963299999963],[119.57027380000011,-4.901956299999938],[119.571123,-4.899009],[119.57423110000002,-4.899402899999927],[119.57372050000004,-4.8977057],[119.5672449000001,-4.898368499999947],[119.56375760000003,-4.892220099999975],[119.55759790000002,-4.893792],[119.55417240000008,-4.890027799999928],[119.54275040000005,-4.892475199999978],[119.53715550000004,-4.890359399999966],[119.53004180000005,-4.892324899999949],[119.5277109000001,-4.884041099999934],[119.52613070000007,-4.885282899999936],[119.51994860000002,-4.883503299999973],[119.5181808000001,-4.882543599999963],[119.51548770000011,-4.884833799999967],[119.512146,-4.892269599999963],[119.519577,-4.9024],[119.52368930000011,-4.915403799999979],[119.52427670000009,-4.924047499999972],[119.51905060000001,-4.939888499999938],[119.51520540000001,-4.946045399999946],[119.50957490000008,-4.947346699999969],[119.50342560000001,-4.954996599999959],[119.491188,-4.980783899999949],[119.49187470000004,-4.982568699999945],[119.48703770000009,-4.983300199999974],[119.48304750000011,-4.987839199999939],[119.47910310000009,-4.989629699999966],[119.48046880000004,-4.993156899999974],[119.47674560000007,-4.994602699999973],[119.47760010000002,-4.998974799999928],[119.476387,-5.013549299999966],[119.4734879,-5.016112799999974],[119.47104640000009,-5.024137499999938],[119.46640780000007,-5.025958099999968],[119.4669037000001,-5.032692],[119.46842960000004,-5.035006],[119.47242740000002,-5.032715799999949],[119.47766110000009,-5.033822099999952],[119.47639470000001,-5.036195799999973],[119.4782715,-5.046423],[119.47800280000001,-5.058988399999976],[119.48459130000003,-5.059553],[119.48593190000008,-5.062715],[119.48753470000008,-5.061427],[119.486304,-5.064155599999935],[119.48789720000002,-5.065768],[119.489004,-5.065195499999959],[119.48846010000011,-5.063258799999971],[119.49297280000008,-5.066931899999929],[119.492534,-5.065462699999955],[119.49415590000001,-5.065319599999953],[119.49484280000001,-5.063478199999963],[119.49543430000006,-5.067246799999964],[119.49756780000007,-5.066769699999952],[119.5018361000001,-5.069469699999956],[119.50490470000011,-5.067365799999948],[119.50777990000006,-5.067618899999957],[119.50915370000007,-5.069240799999932],[119.5137046000001,-5.068019599999957],[119.5138429000001,-5.0646625],[119.51607540000009,-5.062298399999975],[119.52772510000011,-5.063995499999976],[119.53255080000008,-5.071920699999964],[119.5362785000001,-5.073587499999974],[119.537143,-5.077763199999936],[119.53854350000006,-5.078106099999957],[119.53807720000009,-5.079822899999954],[119.54135420000011,-5.083405899999946],[119.53743660000009,-5.093725],[119.53893750000009,-5.099863],[119.54087330000004,-5.100694699999963],[119.54047620000006,-5.103442799999925],[119.5387124,-5.104254799999978],[119.54198480000002,-5.106570499999975],[119.54280810000012,-5.11146],[119.54031180000004,-5.116820099999927],[119.53943310000011,-5.124413],[119.53609470000004,-5.130805299999963],[119.528342,-5.132359099999974],[119.5276364,-5.137014099999931],[119.52131040000006,-5.143407099999934],[119.52099710000005,-5.147417099999927],[119.51796280000008,-5.150467799999944],[119.51066850000007,-5.146772399999975],[119.50792430000001,-5.151442699999961],[119.50230090000002,-5.146501099999966],[119.498944,-5.150976899999932],[119.49324,-5.150674899999956],[119.49362190000011,-5.152697199999977],[119.49627450000003,-5.153606799999977],[119.5019512,-5.162034499999947],[119.51348680000001,-5.162116399999945],[119.51355580000006,-5.165368699999931],[119.51526830000012,-5.163158899999928],[119.519153,-5.165576499999929],[119.53762250000011,-5.164442599999973],[119.54116070000009,-5.1648309],[119.54105880000009,-5.167549799999961],[119.54772950000006,-5.1637707],[119.55665590000001,-5.166030899999953],[119.560997,-5.168403599999976],[119.56043240000008,-5.169772599999931],[119.56339260000004,-5.172283199999981],[119.56586460000005,-5.171313299999952],[119.57167820000006,-5.174906299999975],[119.57730870000012,-5.171355199999937],[119.58152010000003,-5.172229799999968],[119.5876846000001,-5.168975799999942],[119.5905457,-5.166459599999939],[119.59208680000006,-5.162479899999937],[119.59072880000008,-5.156620499999974],[119.60054780000007,-5.152702799999929],[119.60414890000004,-5.153782799999931],[119.60927580000009,-5.159737599999971],[119.62796780000008,-5.161159],[119.62586980000003,-5.1697073],[119.6277847,-5.1723962],[119.63349910000011,-5.174621099999968],[119.63234710000006,-5.171434399999953],[119.64160160000006,-5.172178699999961],[119.642807,-5.176848399999926],[119.6465836000001,-5.1787939],[119.6506882000001,-5.1773663],[119.654007,-5.171191199999953],[119.65722660000006,-5.168342099999961],[119.66741940000009,-5.1659684],[119.67509460000008,-5.168490899999938],[119.68795010000008,-5.167753199999936],[119.69976040000006,-5.172327499999938],[119.707634,-5.1781931],[119.71343990000003,-5.179055699999935],[119.7204971000001,-5.1822381],[119.74809270000003,-5.181971099999942],[119.75684360000002,-5.187306899999953],[119.7635117000001,-5.1890974],[119.76663210000004,-5.192137199999934],[119.76837920000003,-5.197526499999981],[119.77328490000002,-5.199691799999925],[119.77526860000012,-5.206937299999936],[119.7803345000001,-5.208704],[119.78568270000005,-5.208056],[119.789711,-5.210857399999952],[119.79843140000003,-5.2114348],[119.80599210000003,-5.203463599999964],[119.81535340000005,-5.203737299999943],[119.82168580000007,-5.198329899999976],[119.83523560000003,-5.191536399999961],[119.83786770000006,-5.186444299999948],[119.83958440000004,-5.186634499999968],[119.84347530000002,-5.182976199999928],[119.84491730000002,-5.176611399999956],[119.85784910000007,-5.168188099999952],[119.86315920000004,-5.161335],[119.86399080000001,-5.158307099999945],[119.86254880000001,-5.154223399999978],[119.85693360000005,-5.150208],[119.85799410000004,-5.142070299999943],[119.86089320000008,-5.140601199999935],[119.86087040000007,-5.1382751],[119.86457060000009,-5.1346879],[119.870697,-5.1195188],[119.86272430000008,-5.113927399999966],[119.85852380000006,-5.107776399999977],[119.86405620000005,-5.091904199999931],[119.86017240000001,-5.088423099999943],[119.85947640000006,-5.0849927],[119.8559586,-5.080111099999954],[119.85183860000006,-5.064778],[119.8467657000001,-5.059126099999958],[119.84655920000012,-5.047308499999929],[119.85392960000001,-5.040074799999957],[119.85687010000004,-5.032797399999936],[119.86291130000006,-5.032644299999959],[119.86676780000005,-5.029067399999974],[119.87018950000004,-5.023595],[119.87084060000007,-5.018089599999939],[119.87864220000006,-5.011576899999966],[119.8843571000001,-5.001947199999961],[119.88387540000008,-4.992236399999967],[119.88840790000006,-4.978492],[119.88715030000003,-4.969010499999968],[119.88397310000005,-4.962184699999966],[119.88614780000012,-4.961190299999942],[119.88533360000008,-4.958718199999964],[119.88952440000003,-4.952863199999967],[119.88893910000002,-4.950859899999955],[119.89192630000002,-4.947549],[119.891523,-4.94531],[119.893154,-4.943992799999933],[119.89461730000005,-4.944745399999931],[119.89481420000004,-4.943551799999966],[119.89638120000006,-4.944710499999928],[119.8972903,-4.9422309],[119.89993690000006,-4.9428247],[119.90083210000012,-4.940860199999975],[119.90056110000012,-4.939641599999959],[119.89596140000003,-4.939453899999933],[119.89469,-4.938013799999965],[119.89797470000008,-4.933725799999934],[119.89671850000002,-4.929828099999952],[119.89441580000005,-4.930633299999954],[119.8961068000001,-4.920515499999965],[119.8991645000001,-4.919083699999931],[119.89714360000005,-4.916038599999979],[119.9002647000001,-4.916648399999929],[119.90261740000005,-4.915282899999966],[119.90300910000008,-4.91136],[119.90651590000004,-4.913784199999952],[119.90843040000004,-4.909321499999976],[119.91155880000008,-4.909127199999944],[119.91210320000005,-4.906911199999968],[119.91680740000004,-4.907252],[119.92041480000012,-4.901372599999945],[119.92374140000004,-4.899912399999948],[119.924856,-4.894197399999939],[119.92856830000005,-4.8936572],[119.92997890000004,-4.890759799999955],[119.932091,-4.890461399999936],[119.93164150000007,-4.887924599999963],[119.93375730000002,-4.886677599999928],[119.93452530000002,-4.882436799999937],[119.93268000000012,-4.874304499999937],[119.91770470000006,-4.867313299999978],[119.92098850000002,-4.8573787],[119.92935650000004,-4.849996899999951],[119.93106820000003,-4.846023199999934],[119.93627740000011,-4.843389499999944],[119.94040260000008,-4.836613499999942],[119.9433656000001,-4.823906699999952],[119.94644530000005,-4.818544699999961],[119.94433720000006,-4.813557599999967],[119.944441,-4.808380199999931],[119.95043980000003,-4.795289899999943],[119.95307530000002,-4.792812],[119.96893960000011,-4.789048099999945],[119.97147390000009,-4.7864713],[119.97290480000004,-4.780258299999957],[119.9678613000001,-4.774967799999956],[119.96273790000009,-4.772568699999965],[119.9554227000001,-4.766330099999948],[119.94455160000007,-4.760278299999925],[119.93687280000006,-4.758513199999925],[119.929924,-4.753311599999961],[119.92473120000011,-4.748391499999968],[119.9230950000001,-4.743718299999955],[119.91261920000011,-4.735188299999948],[119.91116850000003,-4.732429699999955],[119.90542870000002,-4.731152799999961],[119.90052850000006,-4.731977499999971],[119.8972917000001,-4.727825799999948],[119.889835,-4.725146399999971],[119.8846347000001,-4.7188204],[119.87992860000008,-4.728350199999966],[119.87211730000001,-4.734065799999939],[119.86653120000005,-4.743594199999961],[119.86016460000008,-4.741063599999961],[119.843248,-4.743139399999961],[119.8378646000001,-4.748845],[119.817131,-4.761915199999976],[119.81269840000004,-4.766239599999949],[119.81162530000006,-4.768386299999975],[119.81356810000011,-4.778541599999926],[119.810997,-4.785418],[119.81295780000005,-4.793526199999974],[119.8066123000001,-4.808795699999962]]]},"properties":{"shapeName":"Maros","shapeISO":"","shapeID":"22746128B38802514409746","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[132.7088010000001,-1.160487],[132.675995,-1.145474],[132.581223,-1.134424],[132.581268,-1.133245],[132.505661,-1.12652],[132.4927060000001,-1.116543],[132.4872130000001,-1.094441],[132.47608900000012,-1.093848],[132.452789,-1.088449],[132.446808,-1.091483],[132.438873,-1.091713],[132.429596,-1.088774],[132.381378,-1.08735],[132.367096,-1.083184],[132.344162,-1.079491],[132.330734,-1.074718],[132.311203,-1.076876],[132.279709,-1.073898],[132.263474,-1.074965],[132.2276,-1.069544],[132.225525,-1.071611],[132.1828,-1.06703],[132.160095,-1.06833],[132.114319,-1.067032],[132.09185800000012,-1.069793],[132.0253507000001,-1.067743499999949],[132.0700475000001,-1.170041599999934],[132.0695555000001,-1.191197299999942],[132.07254740000008,-1.225604099999941],[132.0381724,-1.238858499999935],[132.01824540000007,-1.240217099999938],[132.01300220000007,-1.241804299999956],[132.01757170000008,-1.248332099999971],[132.02165450000007,-1.259764],[132.02083790000006,-1.278545],[132.01263470000004,-1.286736599999927],[132.0134296000001,-1.30343],[132.0172391000001,-1.304826799999944],[132.0349979,-1.318780099999969],[132.0783328000001,-1.345789799999977],[132.09749820000002,-1.348881],[132.1212286000001,-1.361824899999931],[132.10570880000012,-1.409419],[132.10150610000005,-1.428331199999946],[132.16877880000004,-1.432373799999937],[132.1700853000001,-1.434921599999939],[132.184733,-1.436574],[132.20220580000012,-1.444335399999943],[132.20949450000012,-1.441177],[132.21734720000006,-1.440715099999977],[132.2366617,-1.434148199999925],[132.2445669000001,-1.437741399999936],[132.2662097000001,-1.45217],[132.2746264000001,-1.462991399999964],[132.2890549000001,-1.4690033],[132.30348340000012,-1.484634199999959],[132.30425910000008,-1.486961099999974],[132.306625,-1.487762],[132.306091,-1.492456899999979],[132.3106977000001,-1.506277],[132.3094953000001,-1.520705499999963],[132.30675270000006,-1.528933499999937],[132.305461,-1.547577899999965],[132.3217989000001,-1.542737],[132.33367120000003,-1.555688599999939],[132.3725260000001,-1.586988299999973],[132.37012860000004,-1.595779099999959],[132.39336090000006,-1.610452099999975],[132.41361470000004,-1.627589899999975],[132.43386840000005,-1.669655499999976],[132.43854240000007,-1.703931099999977],[132.4634701000001,-1.738206799999944],[132.49307180000005,-1.764692499999967],[132.4967187000001,-1.781363799999951],[132.5167080000001,-1.733414],[132.524521,-1.70524],[132.549866,-1.650772],[132.568054,-1.594052],[132.599853,-1.414569],[132.609588,-1.395311],[132.632797,-1.36194],[132.671997,-1.295482],[132.719894,-1.219046],[132.7233430000001,-1.196706],[132.722748,-1.184011],[132.7088010000001,-1.160487]]]},"properties":{"shapeName":"Maybrat","shapeISO":"","shapeID":"22746128B62387451924249","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[112.45978560000003,-0.672730599999966],[112.459876,-0.664215099999979],[112.45771690000004,-0.656164099999955],[112.45056810000005,-0.646655099999975],[112.45161330000008,-0.633841099999927],[112.45905960000005,-0.614063],[112.4583348000001,-0.6056441],[112.45117080000011,-0.588814],[112.4522161000001,-0.575634099999945],[112.45541280000009,-0.5675761],[112.45539750000012,-0.563915099999974],[112.45468040000003,-0.559523],[112.45181930000001,-0.556598099999974],[112.43575180000005,-0.544537099999957],[112.428926,-0.537328199999934],[112.4271146000001,-0.529521399999965],[112.43021270000008,-0.511303799999951],[112.43150010000011,-0.487881699999946],[112.42899950000003,-0.4793748],[112.41805320000003,-0.466024199999936],[112.4115882000001,-0.454574699999966],[112.41146380000009,-0.441947599999935],[112.41727060000005,-0.429590299999973],[112.41959550000001,-0.419960799999956],[112.415973,-0.401224],[112.40588920000005,-0.388994199999956],[112.37552240000002,-0.371636299999977],[112.37052730000005,-0.356643199999951],[112.37299850000011,-0.349918799999955],[112.36657880000007,-0.344330899999932],[112.367881,-0.338019499999973],[112.37043970000002,-0.336614],[112.37355510000009,-0.305928299999948],[112.36985520000007,-0.295415499999933],[112.37145880000003,-0.290558899999951],[112.37028390000012,-0.231255899999951],[112.3730839000001,-0.2078229],[112.3808735,-0.181821899999932],[112.3728731000001,-0.183589899999959],[112.36136420000003,-0.188486599999976],[112.34134560000007,-0.202004899999963],[112.31927380000002,-0.219969899999967],[112.30752450000011,-0.226573899999948],[112.2904281000001,-0.230618599999957],[112.268317,-0.231746899999962],[112.24338410000007,-0.2416619],[112.2241580000001,-0.253765899999962],[112.20104090000007,-0.279053899999951],[112.19071070000007,-0.2860219],[112.14796320000005,-0.302181899999937],[112.12884080000003,-0.305864],[112.13090450000004,-0.290298399999926],[112.12883030000012,-0.281949299999951],[112.12571980000007,-0.277775],[112.11742570000001,-0.270470099999955],[112.08684220000009,-0.259512799999925],[112.0578134000001,-0.244905199999948],[112.04951910000011,-0.237078199999928],[112.03811420000011,-0.2219456],[112.03067680000004,-0.215970599999935],[112.02324740000006,-0.214546699999971],[112.01804210000012,-0.215946899999949],[111.99738940000009,-0.227686899999981],[111.988112,-0.227331899999967],[111.98132950000007,-0.222214899999926],[111.97096110000007,-0.206852899999944],[111.96239330000009,-0.198076899999933],[111.95419170000008,-0.195524899999953],[111.94338010000007,-0.195781599999975],[111.92068910000006,-0.203986199999974],[111.91464850000006,-0.210216899999978],[111.90576790000006,-0.225602899999956],[111.896872,-0.234399899999971],[111.86800230000006,-0.238461899999947],[111.86443180000003,-0.2355379],[111.85870970000008,-0.224927899999955],[111.85440680000005,-0.208825899999965],[111.84546510000007,-0.200417899999934],[111.837973,-0.195667899999933],[111.82318740000005,-0.191442],[111.80735050000004,-0.180337599999973],[111.79948680000007,-0.177919],[111.79031260000005,-0.177809399999944],[111.77808040000008,-0.180668699999956],[111.77425770000008,-0.179129499999931],[111.76169740000006,-0.171323399999949],[111.74138210000007,-0.152742],[111.72630150000003,-0.145285899999976],[111.72273090000004,-0.144557899999938],[111.71509830000008,-0.147671099999968],[111.706691,-0.155798699999934],[111.70056090000008,-0.155798899999979],[111.68991360000007,-0.144431],[111.68915050000004,-0.140331299999957],[111.68349590000008,-0.143947499999967],[111.65296780000006,-0.191560699999968],[111.64678620000007,-0.197305599999936],[111.62187880000005,-0.204713099999935],[111.61349930000006,-0.189647299999933],[111.60779240000005,-0.186296899999945],[111.59828270000008,-0.19635],[111.57878670000008,-0.211909399999968],[111.56998980000009,-0.222681199999954],[111.55405330000008,-0.224576],[111.53709610000004,-0.220412899999928],[111.50359550000007,-0.220830499999977],[111.49242870000006,-0.2237455],[111.48084830000005,-0.229575099999977],[111.46678680000008,-0.246230599999933],[111.46435610000009,-0.252104],[111.46350420000005,-0.2562423],[111.46513340000007,-0.272046],[111.46351240000007,-0.2863794],[111.457302,-0.302018199999964],[111.45225530000005,-0.343460499999935],[111.44681860000009,-0.350498099999925],[111.43594490000004,-0.354408199999966],[111.40764430000007,-0.358366799999942],[111.38977320000004,-0.355027],[111.37643830000007,-0.3557341],[111.36801650000007,-0.361622399999931],[111.36006260000005,-0.369159299999978],[111.35702150000009,-0.3741053],[111.35398060000006,-0.384703799999954],[111.34930180000003,-0.388001199999962],[111.34111370000005,-0.389885699999979],[111.33549890000006,-0.388943899999958],[111.33011820000007,-0.391063799999927],[111.32450370000004,-0.397423],[111.31795360000007,-0.411318899999969],[111.30040610000009,-0.424510099999964],[111.30798140000007,-0.433169799999973],[111.30407520000006,-0.440131],[111.293394,-0.446733],[111.277708,-0.449315099999978],[111.27449310000009,-0.459406199999933],[111.26645410000003,-0.462726699999962],[111.26109480000008,-0.468122299999948],[111.25841530000008,-0.4731027],[111.25029120000005,-0.480311699999959],[111.24631470000008,-0.486539199999925],[111.24454760000003,-0.496325299999967],[111.24057130000006,-0.504776899999968],[111.235711,-0.510559699999931],[111.22934670000006,-0.515812299999936],[111.221655,-0.519684299999938],[111.21008370000004,-0.5207914],[111.20206530000007,-0.5251554],[111.21524610000006,-0.540321199999937],[111.21945750000003,-0.551216499999953],[111.22158950000005,-0.562008099999957],[111.22627660000006,-0.564883299999963],[111.22843290000009,-0.571589699999947],[111.23450920000005,-0.577309699999944],[111.23933310000007,-0.588618199999928],[111.24612150000007,-0.587005699999963],[111.26552440000006,-0.587813299999937],[111.26806990000006,-0.601278699999966],[111.26513030000007,-0.609760499999936],[111.26081830000004,-0.613508499999966],[111.24773710000005,-0.620527],[111.24614520000006,-0.628309099999967],[111.22167770000004,-0.658692099999939],[111.22154120000005,-0.663673199999948],[111.24024140000006,-0.689845],[111.24200610000008,-0.700693599999965],[111.24024230000003,-0.7072029],[111.24102620000008,-0.7187896],[111.23730270000004,-0.7325972],[111.22903290000005,-0.740962499999966],[111.2339,-0.783930599999962],[111.21176180000003,-0.8319423],[111.21731060000008,-0.842158499999925],[111.218291,-0.8474842],[111.21640480000008,-0.855786499999965],[111.21770860000004,-0.863609],[111.20520580000004,-0.877488799999981],[111.20181840000004,-0.879731599999957],[111.19667620000007,-0.880544099999952],[111.19374650000009,-0.880029799999932],[111.18456830000008,-0.867974499999946],[111.17776290000006,-0.862207],[111.17079720000004,-0.861063099999967],[111.16370950000004,-0.863082799999972],[111.15580390000008,-0.874563499999965],[111.16789040000003,-0.895318199999963],[111.17063510000008,-0.904194299999972],[111.17004730000008,-0.909914599999979],[111.15573830000005,-0.919580499999938],[111.14162490000007,-0.922145299999954],[111.13182420000004,-0.929246699999965],[111.12437540000008,-0.930825],[111.12163120000008,-0.934178299999928],[111.12123940000004,-0.939109599999938],[111.11516290000009,-0.944238299999938],[111.11429770000007,-0.951587899999936],[111.11861040000008,-0.958097],[111.122531,-0.9598722],[111.14409350000005,-0.960660299999972],[111.15017030000007,-0.964407799999947],[111.14605440000008,-0.977426499999979],[111.143908,-1.007204],[111.15297050000004,-1.009663799999942],[111.19837750000005,-1.014952599999958],[111.20594590000007,-1.018578399999967],[111.21153820000006,-1.023756599999956],[111.21790120000009,-1.035136199999954],[111.22486680000009,-1.039977399999941],[111.23689740000009,-1.056662199999948],[111.23864270000007,-1.057100599999956],[111.24104030000007,-1.062702399999978],[111.26538660000006,-1.097907299999974],[111.26621050000006,-1.101787499999944],[111.26411170000006,-1.1135654],[111.26467310000004,-1.125395599999933],[111.26176770000006,-1.135619799999972],[111.23706670000007,-1.175057199999969],[111.23512110000007,-1.183037799999966],[111.23960330000006,-1.193528499999957],[111.24730950000009,-1.197687],[111.26040830000005,-1.209117399999968],[111.26113560000005,-1.214229399999965],[111.25687330000005,-1.230776599999956],[111.25732140000008,-1.235426],[111.26597240000007,-1.253763899999967],[111.27138530000008,-1.258478299999979],[111.301978,-1.255475199999978],[111.31332,-1.257423599999925],[111.31540990000008,-1.2623728],[111.31418530000008,-1.271185199999934],[111.31536780000005,-1.293088199999943],[111.32467460000004,-1.301342],[111.354353,-1.315620199999955],[111.37043660000006,-1.329845599999942],[111.39410130000005,-1.326738299999931],[111.39610650000009,-1.324613899999974],[111.38829320000008,-1.310311],[111.38440320000007,-1.297548799999959],[111.38388920000006,-1.280054099999973],[111.38900170000005,-1.271048699999938],[111.40119940000005,-1.264514],[111.42740390000006,-1.253944299999944],[111.44630970000009,-1.224033299999974],[111.462514,-1.215874099999951],[111.47079290000005,-1.213201699999956],[111.49500590000008,-1.212726],[111.50547030000007,-1.219123699999955],[111.51660580000004,-1.222135199999968],[111.52425990000006,-1.220405399999947],[111.55033360000004,-1.208641399999976],[111.55810620000005,-1.201359899999943],[111.56668130000008,-1.1865287],[111.56801850000005,-1.181369],[111.56661710000009,-1.172261099999957],[111.56297830000005,-1.166611399999965],[111.55669090000004,-1.145673099999954],[111.56827140000007,-1.109626799999944],[111.57925120000004,-1.0962189],[111.59552010000004,-1.081843599999956],[111.619391,-1.070966799999951],[111.623842,-1.064781699999969],[111.624052,-1.054759099999956],[111.61811330000006,-1.041965399999924],[111.61684,-1.035781499999928],[111.61683890000006,-1.030023799999981],[111.62128760000007,-1.011896899999954],[111.622042,-0.9990842],[111.62694810000005,-0.988469399999929],[111.63727310000007,-0.979958299999964],[111.638224,-0.974334499999941],[111.64003240000005,-0.972299899999939],[111.64343680000007,-0.969943799999953],[111.65237450000006,-0.9706915],[111.65641750000009,-0.969513],[111.66578,-0.965656799999977],[111.67173750000006,-0.961158799999964],[111.68110030000008,-0.959658],[111.68929230000003,-0.956016199999965],[111.70088920000006,-0.953230099999928],[111.70408030000004,-0.949161],[111.70387970000007,-0.945699],[111.70234640000007,-0.944212199999924],[111.70513420000009,-0.942074799999943],[111.71514420000005,-0.941664199999934],[111.73493260000004,-0.934165499999949],[111.73706010000006,-0.932237899999961],[111.73982420000004,-0.921102599999926],[111.74301520000006,-0.916712299999972],[111.74982370000004,-0.912642499999947],[111.75854820000006,-0.912640599999975],[111.779933,-0.909424099999967],[111.82530890000004,-0.911485899999946],[111.84403150000009,-0.899383599999965],[111.85211390000006,-0.884393099999954],[111.87700590000009,-0.868114099999957],[111.88466410000007,-0.8595474],[111.88508720000004,-0.848627199999953],[111.88849,-0.841346299999941],[111.89955440000006,-0.840273099999933],[111.90385550000008,-0.840659499999958],[111.90976860000006,-0.843482499999936],[111.91508810000005,-0.843481299999951],[111.91764090000004,-0.841339499999947],[111.91772810000003,-0.821544499999959],[111.92155680000008,-0.815762399999926],[111.92304410000008,-0.806554899999981],[111.92038220000006,-0.796492],[111.92219020000005,-0.793922099999975],[111.92547550000006,-0.791747499999929],[111.935382,-0.792420299999947],[111.94644510000006,-0.787279],[111.954105,-0.787491299999942],[111.96070180000004,-0.790701599999977],[111.969321,-0.798835899999972],[111.97857710000005,-0.800974899999972],[111.994316,-0.800443799999925],[112.00326410000002,-0.796431699999971],[112.01322750000008,-0.794654699999967],[112.01820840000005,-0.790793599999972],[112.02177930000005,-0.7900385],[112.0276847,-0.780276599999979],[112.04561970000009,-0.770666299999959],[112.04568860000006,-0.762173299999972],[112.04145660000006,-0.755839599999945],[112.04313390000004,-0.748432099999945],[112.0458225000001,-0.745370199999968],[112.06173620000004,-0.738756],[112.07270160000007,-0.728123299999936],[112.0777002000001,-0.722341099999937],[112.08504890000006,-0.701987199999962],[112.09104380000008,-0.698702799999978],[112.0941295,-0.697459899999956],[112.10850230000005,-0.701538],[112.11765170000001,-0.7132543],[112.14630960000011,-0.7303733],[112.1516683000001,-0.728795299999945],[112.16139380000004,-0.726089599999966],[112.17514210000002,-0.725783099999944],[112.17701250000005,-0.719020199999932],[112.1763734000001,-0.715808799999934],[112.170111,-0.705846799999961],[112.17006750000007,-0.698830099999952],[112.16538470000012,-0.689839],[112.16612880000002,-0.687483699999973],[112.1727237,-0.685448099999974],[112.1749569000001,-0.682557199999962],[112.17592920000004,-0.671091799999942],[112.17431340000007,-0.660826099999952],[112.17771330000005,-0.642733699999951],[112.1806911000001,-0.6396286],[112.192149,-0.635069699999974],[112.20419850000008,-0.6328789],[112.20713610000007,-0.6294764],[112.21040930000004,-0.615172799999925],[112.21397210000009,-0.613841599999944],[112.23457130000008,-0.616737099999966],[112.24333380000007,-0.624747899999932],[112.25606240000002,-0.632789199999934],[112.27372360000004,-0.646700899999928],[112.28517740000007,-0.668768499999942],[112.28517910000005,-0.675200899999936],[112.29011830000002,-0.682918499999971],[112.29525230000002,-0.696400799999935],[112.30169190000004,-0.703297899999939],[112.30179930000008,-0.706830399999944],[112.31015890000003,-0.720484799999952],[112.31470640000009,-0.722593199999949],[112.32276650000006,-0.720836],[112.32871330000012,-0.713566499999956],[112.33868130000008,-0.710484399999928],[112.34593960000007,-0.705505099999925],[112.35016460000008,-0.705096899999944],[112.35708780000004,-0.715437399999928],[112.3810645000001,-0.710171599999967],[112.38504960000012,-0.713671099999942],[112.38754540000002,-0.713541],[112.39602680000007,-0.707341099999951],[112.40464140000006,-0.703377899999964],[112.40885460000004,-0.693359599999951],[112.41559230000007,-0.686783299999945],[112.42005960000006,-0.686353799999949],[112.42452570000012,-0.682070899999928],[112.4277727000001,-0.673362099999963],[112.43143640000005,-0.671364899999958],[112.44249880000007,-0.672539],[112.4494135000001,-0.675855199999944],[112.45281710000006,-0.675854099999924],[112.45978560000003,-0.672730599999966]]]},"properties":{"shapeName":"Melawi","shapeISO":"","shapeID":"22746128B86499989831094","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[108.85960840000007,0.51084],[108.86063350000006,0.513126700000043],[108.85858330000008,0.516675],[108.85676980000005,0.516044200000067],[108.857716,0.512495900000033],[108.85629670000009,0.510682300000042],[108.85006740000006,0.513836300000037],[108.85180210000004,0.511155400000064],[108.85069820000007,0.506424300000049],[108.84809610000008,0.504137600000035],[108.83958020000006,0.504768400000046],[108.83887050000004,0.50303370000006],[108.840763,0.501141300000029],[108.83816090000005,0.499406600000043],[108.83973790000005,0.49514860000005],[108.84328560000006,0.493344300000047],[108.84721090000005,0.493610400000023],[108.849107,0.492013600000064],[108.84924010000009,0.489618500000063],[108.85439620000005,0.486857500000042],[108.85748990000008,0.48103610000004],[108.85842130000009,0.475214600000072],[108.86281240000005,0.48103610000004],[108.86387680000007,0.487123600000075],[108.86191420000006,0.490450200000055],[108.86221360000008,0.496304900000041],[108.857716,0.502639500000043],[108.85960840000007,0.51084]]],[[[108.92629190000008,0.56115310000007],[108.90727170000008,0.505290900000034],[108.90911460000007,0.499224],[108.90837560000006,0.482973400000049],[108.91052850000005,0.475243300000045],[108.914061,0.470002500000021],[108.91619830000008,0.46886180000007],[108.91458450000005,0.470829200000026],[108.91619450000007,0.471308800000031],[108.92541240000008,0.465126200000043],[108.932197,0.458789],[108.93891370000006,0.449279700000034],[108.94357270000006,0.439160100000038],[108.94542610000008,0.430271900000037],[108.94638360000005,0.409816700000022],[108.944172,0.382955300000049],[108.939909,0.37137320000005],[108.92808520000006,0.354296200000022],[108.91858610000008,0.347812800000042],[108.91406070000005,0.348327300000051],[108.91331590000004,0.339695],[108.91810960000004,0.328431100000046],[108.92810360000004,0.321556700000031],[108.93310420000006,0.319456500000058],[108.93777510000007,0.320330900000044],[108.93883290000008,0.318354300000067],[108.944864,0.316920100000061],[108.94732710000005,0.314856400000053],[108.95662360000006,0.312472500000069],[108.96481320000004,0.31530280000004],[108.99777590000008,0.305272600000023],[109.01533870000009,0.297653600000046],[109.04763090000006,0.27913250000006],[109.06374260000007,0.265837],[109.06684510000008,0.265139100000056],[109.08659770000008,0.250954400000069],[109.10946740000009,0.226008600000057],[109.11996820000007,0.208098500000062],[109.128527,0.189285900000073],[109.13162810000006,0.168430100000023],[109.134487,0.163622500000031],[109.13186530000007,0.158562700000061],[109.13225020000004,0.144813300000067],[109.13879060000005,0.125643700000069],[109.14280730000007,0.119237500000054],[109.15748310000004,0.108168400000068],[109.16111070000005,0.103780900000061],[109.16784490000003,0.086322800000062],[109.175709,0.074385800000073],[109.23568550000005,0.033197200000075],[109.24760950000007,0.026642500000037],[109.29000930000007,0.008467600000074],[109.29747160000005,0.029819900000064],[109.30569140000006,0.028827800000045],[109.30576270000006,0.033319400000039],[109.31033120000006,0.034069200000033],[109.30925580000007,0.038096200000041],[109.35698810000008,0.025924600000053],[109.37075950000008,0.021081200000026],[109.36852520000008,0.03597510000003],[109.36355860000003,0.047383300000035],[109.36416060000005,0.054426900000067],[109.36930790000008,0.061560800000052],[109.37141490000005,0.068544200000019],[109.36614730000008,0.07856780000003],[109.36115050000006,0.08362470000003],[109.35898330000003,0.089103100000045],[109.35739460000008,0.101884200000029],[109.35924220000004,0.118109100000027],[109.35789450000004,0.122359500000073],[109.35078220000008,0.13198],[109.35141980000009,0.206554500000038],[109.35456270000009,0.218040200000075],[109.35933460000007,0.224279],[109.36392590000008,0.233722500000056],[109.37928870000007,0.252078100000062],[109.38362560000007,0.255051900000069],[109.36178630000006,0.263331300000061],[109.32094880000005,0.267364600000064],[109.28111960000007,0.266860400000041],[109.27305290000004,0.263835400000062],[109.25994460000004,0.263835400000062],[109.25288630000006,0.272910400000058],[109.24582790000005,0.277447900000027],[109.21759460000004,0.280472900000063],[109.20045290000007,0.290052100000025],[109.20398210000008,0.303664600000047],[109.20880050000005,0.314718600000049],[109.216346,0.321491900000069],[109.22212540000004,0.323803700000042],[109.23647740000007,0.31999890000003],[109.23529750000006,0.341647400000056],[109.25400820000004,0.337192500000072],[109.26311070000008,0.336855400000047],[109.28668560000006,0.346078300000045],[109.29126090000005,0.348823500000037],[109.29577040000004,0.35517660000005],[109.30455170000005,0.360229700000048],[109.32228050000003,0.362245900000062],[109.321395,0.377913100000058],[109.31871730000006,0.391774100000021],[109.31399190000008,0.403272400000048],[109.311761,0.407928200000072],[109.30548630000004,0.413825600000052],[109.30127040000008,0.420255],[109.29694820000009,0.420145900000023],[109.29600180000006,0.425174200000072],[109.292766,0.429915100000073],[109.27861860000007,0.438268100000073],[109.27399060000005,0.448239],[109.26924970000005,0.45313040000002],[109.26301990000007,0.456081900000072],[109.25641330000008,0.454964300000029],[109.25313970000008,0.452485400000057],[109.24753870000006,0.45420740000003],[109.24706570000006,0.461454600000025],[109.24403810000007,0.464141600000062],[109.24061310000008,0.464974200000029],[109.24218370000006,0.469856200000038],[109.24142680000006,0.472051100000044],[109.23707460000008,0.472864800000025],[109.23255220000004,0.470121100000028],[109.23056540000005,0.47136990000007],[109.22952460000005,0.46891],[109.22322930000007,0.468954600000075],[109.22346370000008,0.489874800000052],[109.22760190000008,0.501255],[109.23760270000008,0.517118200000027],[109.23829240000003,0.526774100000068],[109.24691370000005,0.551948400000072],[109.25312110000004,0.562294],[109.26484610000006,0.575053600000047],[109.27519170000005,0.579536700000062],[109.28208870000009,0.588158],[109.28979380000004,0.606517300000064],[109.27836720000005,0.626312300000052],[109.26608910000004,0.632832300000075],[109.26300380000004,0.636068100000045],[109.260069,0.645248800000047],[109.25593010000006,0.644345800000053],[109.25006040000005,0.637949400000025],[109.24471750000004,0.63508980000006],[109.23922410000006,0.637422600000036],[109.23501,0.641411],[109.229479,0.643254700000057],[109.21292360000007,0.642953700000021],[109.20366760000007,0.650177900000074],[109.19038560000007,0.655453],[109.18593060000006,0.666289300000074],[109.18117470000004,0.670985100000053],[109.16675640000005,0.671496800000057],[109.15303040000003,0.683717700000045],[109.14893670000004,0.686005400000056],[109.14349610000005,0.684618800000067],[109.13993660000006,0.680195900000058],[109.13334450000008,0.659757400000046],[109.12401330000006,0.652352600000029],[109.10796950000008,0.644556500000022],[109.10131720000004,0.630439200000069],[109.07829010000006,0.604341800000043],[109.07154750000007,0.598622700000021],[109.04876120000006,0.596906900000022],[109.03924930000005,0.593896800000039],[109.03330350000005,0.587004500000035],[109.03383540000004,0.579408700000045],[109.03033450000004,0.574532500000032],[109.03146970000006,0.570063700000048],[109.02937390000005,0.569059400000071],[109.02780210000009,0.570282],[109.02719080000008,0.56774960000007],[109.02321760000007,0.569277700000043],[109.02134010000009,0.566876300000047],[109.016319,0.566396],[109.01470350000005,0.564605900000061],[109.01313160000007,0.565741100000025],[109.01073020000007,0.56421290000003],[109.01112320000004,0.560632600000019],[109.00741190000008,0.561636900000053],[109.00885280000006,0.557663600000069],[109.00264350000003,0.553554700000063],[109.00147390000006,0.550197400000059],[109.003133,0.546005800000046],[108.99881050000005,0.544041],[108.99867950000004,0.541683300000045],[108.99601610000008,0.541683300000045],[108.99313440000009,0.544608700000026],[108.993702,0.547577700000033],[108.99012170000009,0.553777700000069],[108.98868090000008,0.55107060000006],[108.98173860000009,0.547141100000033],[108.98322310000009,0.545263600000055],[108.98256820000006,0.540242400000068],[108.97907520000007,0.542032600000027],[108.978202,0.538583300000028],[108.97401040000005,0.537535400000024],[108.97020530000009,0.532393800000023],[108.97136580000006,0.52926240000005],[108.96753440000003,0.528709800000058],[108.96655820000007,0.532172800000069],[108.96526880000005,0.52920720000003],[108.96171370000008,0.528507200000035],[108.95863760000009,0.531362300000069],[108.95679560000008,0.528028300000074],[108.95421680000004,0.527899400000024],[108.95329580000003,0.529759800000022],[108.95152750000005,0.529594],[108.94939080000006,0.534217400000045],[108.95038950000009,0.539544800000044],[108.94755050000003,0.538405100000034],[108.946232,0.540705100000025],[108.93987520000007,0.54204180000005],[108.93637340000004,0.544749400000057],[108.934821,0.544244],[108.93431560000005,0.546049],[108.93137340000004,0.54619340000005],[108.93347540000008,0.548648800000024],[108.93100760000004,0.549049],[108.92890660000006,0.551383500000043],[108.92997380000008,0.55255070000004],[108.93254170000006,0.551550200000065],[108.93174130000006,0.553217700000062],[108.92954020000008,0.553417800000034],[108.93050740000007,0.558520200000032],[108.92904,0.559020500000031],[108.926939,0.55641920000005],[108.92587180000004,0.558086700000047],[108.92787280000005,0.560687900000062],[108.92629190000008,0.56115310000007]]]]},"properties":{"shapeName":"Mempawah","shapeISO":"","shapeID":"22746128B82122309209363","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[101.9219,-2.736835],[101.92864340000006,-2.731614799999932],[101.93298670000007,-2.730262],[101.94370230000004,-2.733786499999951],[101.95320760000004,-2.734783299999947],[101.96299770000007,-2.725705199999936],[101.99012510000006,-2.723142],[101.99752990000007,-2.730618],[102.00319040000005,-2.734142499999962],[102.00507720000007,-2.737595699999929],[102.01536780000004,-2.7441794],[102.01906810000008,-2.750020199999938],[102.02892940000004,-2.756677399999944],[102.05139320000006,-2.764758699999959],[102.06802240000007,-2.767906099999948],[102.069387,-2.765178599999956],[102.07521160000005,-2.765643699999941],[102.072549,-2.7648921],[102.07589810000007,-2.7584143],[102.07707990000006,-2.750003099999958],[102.076309,-2.745183299999951],[102.07849390000007,-2.734713299999953],[102.082441,-2.726138399999968],[102.07757930000008,-2.703820199999939],[102.08736240000007,-2.692386899999974],[102.08792290000008,-2.690077899999949],[102.08484370000008,-2.684732899999972],[102.083359,-2.675647399999946],[102.08320950000007,-2.655041899999958],[102.06937960000005,-2.636686099999963],[102.06311110000007,-2.624341],[102.06351310000008,-2.621952],[102.069311,-2.617185799999959],[102.08555310000008,-2.609383899999955],[102.09761070000008,-2.605826899999954],[102.10372420000004,-2.601698399999975],[102.103736,-2.59652],[102.09561240000005,-2.581150899999955],[102.09391830000004,-2.564899499999967],[102.14075170000007,-2.520323399999938],[102.15646420000007,-2.508642599999973],[102.15279170000008,-2.496014799999955],[102.15290890000006,-2.4883273],[102.14850620000004,-2.476280399999951],[102.14268560000005,-2.468377699999962],[102.13055880000007,-2.441788499999973],[102.12223110000008,-2.427407499999958],[102.12315970000009,-2.416183199999978],[102.12950460000008,-2.411342099999956],[102.18290080000008,-2.410240599999952],[102.19195520000005,-2.408135399999935],[102.20460070000007,-2.400282299999958],[102.21292640000007,-2.3969809],[102.22208560000007,-2.397450899999967],[102.25721770000007,-2.364627699999971],[102.26410610000005,-2.365386499999943],[102.26508,-2.362213899999972],[102.267986,-2.361144299999978],[102.27222270000004,-2.356749099999945],[102.29223210000004,-2.350953],[102.29531330000003,-2.352180699999963],[102.29459030000004,-2.361124],[102.29669570000004,-2.367233299999953],[102.29527480000007,-2.372057799999936],[102.30075060000007,-2.382082],[102.30106330000007,-2.386247799999978],[102.30346330000003,-2.387092799999948],[102.32552440000006,-2.384252099999969],[102.32927560000007,-2.383372],[102.33028690000003,-2.3816358],[102.33501090000004,-2.382939499999964],[102.35222140000008,-2.379423299999928],[102.36171980000006,-2.371898499999929],[102.36658270000004,-2.3663614],[102.36548780000004,-2.362144],[102.37012330000005,-2.360156099999926],[102.37366020000007,-2.355947599999979],[102.37155210000009,-2.349402699999928],[102.37367310000008,-2.34907],[102.39267460000008,-2.331135],[102.39524050000006,-2.3222275],[102.40379090000005,-2.3136785],[102.42406050000005,-2.246986099999958],[102.43694160000007,-2.244466],[102.45021050000008,-2.223855199999946],[102.46099050000004,-2.195757799999967],[102.47392680000007,-2.19875],[102.48926470000004,-2.199832199999946],[102.50090950000003,-2.200166199999956],[102.509602,-2.197213899999952],[102.51685980000008,-2.199784299999976],[102.55743290000004,-2.206508399999962],[102.57464430000005,-2.202320799999939],[102.58899260000004,-2.195465499999955],[102.60755180000007,-2.175968399999931],[102.61485510000006,-2.160447099999942],[102.63075590000005,-2.147823699999947],[102.62432750000005,-2.116333199999929],[102.62264050000005,-2.115529899999956],[102.62296110000005,-2.1141219],[102.61474730000003,-2.102155799999935],[102.58920260000008,-2.102743199999964],[102.57781530000005,-2.099516299999948],[102.55741020000005,-2.0818062],[102.52857170000004,-2.047146899999973],[102.51865970000006,-2.039143699999954],[102.50897030000004,-2.033671399999946],[102.499777,-2.021608899999933],[102.49412470000004,-2.018189899999925],[102.48774440000005,-2.011216],[102.49492660000004,-2.008466699999929],[102.49140930000004,-2.005982299999971],[102.48635840000009,-1.997604799999976],[102.48818840000007,-1.983415399999956],[102.48313360000009,-1.9775853],[102.47482040000006,-1.973933599999953],[102.47015090000008,-1.952456599999948],[102.46582180000007,-1.945172199999945],[102.46187210000005,-1.925879799999962],[102.45971820000005,-1.914959799999963],[102.459495,-1.897340399999962],[102.45968940000006,-1.877509199999963],[102.46972690000007,-1.859527799999967],[102.46253770000004,-1.841976299999942],[102.46151070000008,-1.832210099999941],[102.46252550000008,-1.8293195],[102.458331,-1.812740799999972],[102.45977610000006,-1.800449299999968],[102.469417,-1.786697899999979],[102.47005030000008,-1.780668599999956],[102.47718350000008,-1.776377099999934],[102.48589010000006,-1.768443099999956],[102.49473110000008,-1.751035099999967],[102.50224250000008,-1.741604499999937],[102.51400590000009,-1.714715299999966],[102.51414380000006,-1.7081561],[102.51205180000005,-1.704696],[102.50174650000008,-1.696791899999937],[102.49697010000006,-1.689791699999944],[102.49672640000006,-1.686600299999952],[102.50237520000007,-1.686507799999958],[102.50485020000008,-1.688455599999941],[102.50644520000009,-1.6946388],[102.50810480000007,-1.694670299999927],[102.51336760000004,-1.686196],[102.52307890000009,-1.676542799999936],[102.52990740000007,-1.657587499999977],[102.52939140000007,-1.656127899999944],[102.51955560000005,-1.650534499999935],[102.52076430000005,-1.6464575],[102.51861370000006,-1.6462143],[102.49765460000003,-1.651214599999946],[102.48702920000005,-1.657561199999975],[102.467156,-1.681081],[102.44399120000008,-1.698265699999979],[102.407394,-1.714937799999973],[102.39926120000007,-1.714531199999954],[102.39044610000008,-1.6987374],[102.38147,-1.692913499999975],[102.36256160000005,-1.676744299999939],[102.35549560000004,-1.682223399999941],[102.35144670000005,-1.679749799999968],[102.34519230000006,-1.678720399999975],[102.33206590000003,-1.6883257],[102.33289820000005,-1.6976558],[102.32435890000005,-1.704162],[102.317446,-1.704162],[102.3085,-1.7066018],[102.281014,-1.730524799999955],[102.26479980000005,-1.737626399999954],[102.24831620000003,-1.742809],[102.24313670000004,-1.746363899999949],[102.23563380000007,-1.755807],[102.22513960000003,-1.761904299999969],[102.22432640000005,-1.772883499999978],[102.21985340000003,-1.780202899999949],[102.21612090000008,-1.783592],[102.20767250000006,-1.787689599999965],[102.19636780000008,-1.789727399999947],[102.181315,-1.790989899999943],[102.17910840000008,-1.787522399999943],[102.17260220000009,-1.789555599999971],[102.16568940000008,-1.787115699999958],[102.159175,-1.787115699999958],[102.15646380000004,-1.7890204],[102.14764360000004,-1.788577299999929],[102.14448960000004,-1.790468899999951],[102.13514630000009,-1.791586299999949],[102.13432030000007,-1.792932099999973],[102.13829730000003,-1.806119299999978],[102.13846510000008,-1.812954199999979],[102.14373110000008,-1.825136199999974],[102.14306870000007,-1.8347404],[102.13557050000009,-1.845061399999963],[102.12827890000005,-1.845061399999963],[102.12150480000008,-1.856617299999925],[102.12055280000004,-1.8670198],[102.11526650000008,-1.869052899999929],[102.11404660000005,-1.877592299999947],[102.10727470000006,-1.883853899999963],[102.10421,-1.884354799999926],[102.09797690000005,-1.8819221],[102.08683190000005,-1.872214699999972],[102.08223740000005,-1.871546399999943],[102.07752960000005,-1.87319],[102.071105,-1.872138599999971],[102.06154920000006,-1.876245799999936],[102.05793340000008,-1.879212299999949],[102.05452520000006,-1.888894899999968],[102.04620810000006,-1.889651399999934],[102.04291680000006,-1.8948202],[102.042249,-1.9014247],[102.03885560000003,-1.902299599999935],[102.03375230000006,-1.906869],[102.02289440000004,-1.907541099999946],[102.01946510000005,-1.905034499999942],[102.01700830000004,-1.907497899999953],[102.01361650000007,-1.902260499999954],[102.006883,-1.900636499999962],[102.00204350000007,-1.907616399999938],[101.99497780000007,-1.90991],[101.98522720000005,-1.900740599999949],[101.97884010000007,-1.882065299999965],[101.98006,-1.877185699999927],[101.97843350000005,-1.874745799999971],[101.97272950000007,-1.871491899999967],[101.96733370000004,-1.871778599999971],[101.95921560000005,-1.857913199999928],[101.95633880000008,-1.858319499999936],[101.95245920000008,-1.862170399999968],[101.95023140000006,-1.860906899999975],[101.94709850000004,-1.862790899999936],[101.94459750000004,-1.861212],[101.93608950000004,-1.849388199999964],[101.93190920000006,-1.849130399999979],[101.92924850000009,-1.846463399999948],[101.92502150000007,-1.847676299999932],[101.92263920000005,-1.8453104],[101.92173470000006,-1.839044],[101.91895990000006,-1.836242299999981],[101.91408620000004,-1.837068699999975],[101.91164930000008,-1.843795399999976],[101.90957780000008,-1.842729],[101.90499920000008,-1.843705099999966],[101.90074480000004,-1.838147599999957],[101.89356770000006,-1.839554199999952],[101.88994070000007,-1.842379699999981],[101.88711370000004,-1.848436399999969],[101.885197,-1.848354299999926],[101.87566780000009,-1.839363099999957],[101.87265460000003,-1.840027],[101.86941270000005,-1.837226599999951],[101.86025640000008,-1.838824199999976],[101.85240350000004,-1.833339199999955],[101.84939890000004,-1.8291224],[101.84212010000005,-1.830880699999966],[101.83892240000006,-1.829949],[101.82716480000005,-1.8214765],[101.82147190000006,-1.823916299999951],[101.81049270000005,-1.832862299999931],[101.80195330000004,-1.833675599999935],[101.79056750000007,-1.831642399999964],[101.78121490000007,-1.835708799999964],[101.77226890000009,-1.849127799999962],[101.75803660000008,-1.860920199999953],[101.73584440000008,-1.868345399999953],[101.73108810000008,-1.876464099999964],[101.71644860000004,-1.879519599999981],[101.694378,-1.876601299999948],[101.68052640000008,-1.881628099999944],[101.67686090000007,-1.8758755],[101.67079620000004,-1.874008599999968],[101.66074980000008,-1.874546],[101.65244540000003,-1.879192699999976],[101.64388390000005,-1.879511199999968],[101.64121960000006,-1.882024499999943],[101.63848630000007,-1.890314],[101.63129210000005,-1.891461499999934],[101.63796860000008,-1.896563699999945],[101.64188770000004,-1.909635399999956],[101.64493870000007,-1.927463499999931],[101.65683740000009,-1.945355699999936],[101.65566240000004,-1.954913499999975],[101.67047890000003,-1.972514799999942],[101.68783730000007,-1.977321299999971],[101.70836020000007,-1.987075499999946],[101.71853780000004,-1.997565799999961],[101.72258170000003,-2.009791899999925],[101.72059770000004,-2.0198448],[101.72112440000006,-2.025287599999956],[101.74677430000008,-2.0508302],[101.75289290000006,-2.051808199999925],[101.75829470000008,-2.057221699999957],[101.75947730000007,-2.061155099999951],[101.75746310000005,-2.072925399999974],[101.75833280000006,-2.078689399999973],[101.76302480000004,-2.081611499999951],[101.76856370000007,-2.095700499999964],[101.77279050000004,-2.094772199999966],[101.780992,-2.100241799999935],[101.78287660000007,-2.1053348],[101.78710340000003,-2.109162599999934],[101.78378450000008,-2.1172434],[101.78955250000007,-2.125215499999968],[101.78875110000007,-2.139465899999948],[101.79224560000006,-2.140006799999981],[101.79168080000005,-2.143542099999934],[101.79271420000003,-2.144480299999941],[101.79500710000008,-2.142002199999979],[101.79842950000005,-2.140969199999972],[101.79800710000006,-2.144279],[101.80108790000008,-2.143945499999973],[101.80062080000005,-2.145842499999958],[101.80380970000004,-2.146269],[101.80697790000005,-2.150943799999936],[101.80902180000004,-2.1507594],[101.81112380000008,-2.157521899999949],[101.81477510000008,-2.160852699999964],[101.81731440000004,-2.160194399999966],[101.81818230000005,-2.1623453],[101.820087,-2.162691299999949],[101.82174080000004,-2.167363199999954],[101.82088610000005,-2.170814],[101.82301480000007,-2.172015],[101.825514,-2.177465099999949],[101.82959170000004,-2.180554799999925],[101.83516080000004,-2.177398799999935],[101.83730460000004,-2.181813299999931],[101.836,-2.184059699999978],[101.83297130000005,-2.184377],[101.83215270000005,-2.187429699999939],[101.82943110000008,-2.189700599999981],[101.825731,-2.185969899999975],[101.82299760000006,-2.186893399999974],[101.82100810000009,-2.184261599999957],[101.81695760000008,-2.182403499999964],[101.817163,-2.180032599999947],[101.815332,-2.177652199999955],[101.81208240000007,-2.17771],[101.79674530000005,-2.196019599999943],[101.79233570000008,-2.197651399999927],[101.78331770000005,-2.1970968],[101.77534480000008,-2.204977499999927],[101.77323910000007,-2.216774899999962],[101.77081310000005,-2.220060199999978],[101.77407070000004,-2.222658399999943],[101.76634980000006,-2.237729599999966],[101.75833120000004,-2.246732499999951],[101.754036,-2.246739799999943],[101.748123,-2.249893199999974],[101.74818420000008,-2.260998399999949],[101.74433150000004,-2.265036899999927],[101.74657430000008,-2.281760399999939],[101.74276730000008,-2.290269199999955],[101.73487860000006,-2.299585799999932],[101.72680670000005,-2.304578099999958],[101.72218320000007,-2.310225899999978],[101.72051250000004,-2.324104499999976],[101.71860510000005,-2.327581599999974],[101.71006020000004,-2.335848099999964],[101.69616710000008,-2.345667899999967],[101.69123080000008,-2.345872799999938],[101.67782580000005,-2.340611199999955],[101.665985,-2.345766799999979],[101.651184,-2.342230799999925],[101.64708720000004,-2.343672],[101.64615630000009,-2.347878399999956],[101.64436340000003,-2.349637499999972],[101.63949590000004,-2.350938299999939],[101.62708270000007,-2.346774899999957],[101.620819,-2.333530899999971],[101.61706530000004,-2.332079],[101.60901650000005,-2.334269899999924],[101.60227190000006,-2.334112599999969],[101.598381,-2.336788199999944],[101.59859490000008,-2.345471799999927],[101.59650430000005,-2.358807299999967],[101.59495560000005,-2.361385799999937],[101.58696,-2.360290799999973],[101.58243550000009,-2.361246599999959],[101.57045760000005,-2.355458799999951],[101.54987350000005,-2.351802599999928],[101.54923240000005,-2.354994799999929],[101.55062880000008,-2.358838499999933],[101.55515290000005,-2.363936699999954],[101.55591580000004,-2.367928599999971],[101.55023210000007,-2.405919099999949],[101.55360420000005,-2.4115083],[101.55937970000008,-2.416657399999963],[101.56073010000006,-2.422173099999952],[101.55976880000009,-2.443064699999979],[101.55750330000006,-2.450368399999945],[101.56081430000006,-2.45587],[101.56161830000008,-2.462500899999952],[101.55812210000005,-2.468742099999929],[101.55905790000008,-2.475319699999943],[101.55677340000005,-2.480709699999977],[101.556918,-2.487315299999977],[101.55289330000005,-2.493027099999949],[101.54957220000006,-2.494333499999925],[101.54802110000008,-2.499937099999954],[101.54698170000006,-2.505162799999937],[101.54815610000009,-2.508889499999952],[101.54528930000004,-2.521992299999965],[101.54173060000005,-2.552963],[101.54241820000004,-2.563289399999974],[101.54660880000006,-2.570597899999939],[101.55305110000006,-2.571756499999935],[101.559398,-2.569135299999971],[101.56373130000009,-2.560636199999976],[101.56454810000008,-2.551502899999946],[101.57014460000005,-2.546389799999929],[101.57465720000005,-2.544345199999952],[101.58787760000007,-2.544453099999942],[101.59813730000008,-2.538075299999946],[101.60317220000007,-2.536887],[101.60557690000007,-2.538472599999977],[101.61198070000006,-2.548120599999947],[101.621058,-2.547395199999926],[101.64113880000008,-2.542818099999977],[101.65022890000006,-2.530407499999967],[101.65463580000005,-2.528766499999961],[101.66913360000007,-2.529644699999949],[101.67580220000008,-2.532823299999961],[101.68228350000004,-2.544943399999966],[101.70251760000008,-2.565271],[101.70864290000009,-2.575727599999937],[101.72035210000007,-2.586936099999946],[101.72965610000006,-2.5983223],[101.73500670000004,-2.609198399999968],[101.741051,-2.614420899999971],[101.75132950000005,-2.619018399999959],[101.75853960000006,-2.629328599999951],[101.76235620000006,-2.630574],[101.76832690000003,-2.644132099999979],[101.77457480000004,-2.650313599999947],[101.78911760000005,-2.659647799999959],[101.79779030000009,-2.667741199999966],[101.80505550000004,-2.669642199999942],[101.80682020000006,-2.6716296],[101.81341990000004,-2.671171799999968],[101.81533070000006,-2.672863799999959],[101.817408,-2.683258399999943],[101.81485960000003,-2.691377299999942],[101.82418650000005,-2.696739699999966],[101.82624720000007,-2.699832499999957],[101.82990820000003,-2.697168799999929],[101.83594970000007,-2.697561699999937],[101.84043150000008,-2.699892],[101.85557980000004,-2.716880499999945],[101.86322740000008,-2.725235899999973],[101.88201360000005,-2.733798399999955],[101.88629550000007,-2.734615699999949],[101.89337050000006,-2.733274399999971],[101.90721080000009,-2.738703099999952],[101.91247910000004,-2.739021299999933],[101.9219,-2.736835]]]},"properties":{"shapeName":"Merangin","shapeISO":"","shapeID":"22746128B50091931461920","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[138.96527090000006,-8.357505799999956],[138.9590148000001,-8.350146299999949],[138.9452056,-8.343936],[138.92599470000005,-8.3241062],[138.92071520000002,-8.329166399999963],[138.91865530000007,-8.344806699999936],[138.92384330000004,-8.35882659999993],[138.92651350000006,-8.36132619999995],[138.93273910000005,-8.362835899999936],[138.944641,-8.369806299999937],[138.95372,-8.371676399999956],[138.95606980000002,-8.370216399999947],[138.9579619000001,-8.371346499999959],[138.96400440000002,-8.36966609999996],[138.969345,-8.365146599999946],[138.96913130000007,-8.360356299999978],[138.9654998000001,-8.359166099999982],[138.96527090000006,-8.357505799999956]]],[[[138.95683280000003,-8.332595799999979],[138.9467009000001,-8.328886],[138.93284590000007,-8.314806],[138.9306639,-8.316745699999956],[138.9308165000001,-8.321826],[138.9442137000001,-8.335896499999933],[138.95256030000007,-8.341726299999948],[138.96234120000008,-8.344086599999969],[138.9727782000001,-8.340656299999978],[138.97865280000008,-8.336289399999941],[138.9771575000001,-8.3342972],[138.95683280000003,-8.332595799999979]]],[[[138.5828246000001,-8.298037499999964],[138.5858611000001,-8.292797099999973],[138.5817565000001,-8.291707],[138.5720824000001,-8.2936573],[138.5643004000001,-8.2980575],[138.55642690000002,-8.311576799999955],[138.5542144000001,-8.319956799999943],[138.5544585,-8.3255367],[138.55650320000007,-8.326527599999963],[138.56578050000007,-8.322327599999937],[138.57032770000012,-8.306877099999951],[138.5828246000001,-8.298037499999964]]],[[[138.9900206000001,-8.287596699999938],[138.97947680000004,-8.288065899999935],[138.97528060000002,-8.292056099999968],[138.97006210000006,-8.292606299999932],[138.9697264,-8.294906599999933],[138.97210680000012,-8.296866399999942],[138.97592150000003,-8.297956499999941],[138.9754332000001,-8.298596399999951],[138.96995530000004,-8.295796399999972],[138.96925340000007,-8.2944965],[138.96916190000002,-8.29259589999998],[138.9543456,-8.295796399999972],[138.93592820000003,-8.305736499999966],[138.93592820000003,-8.312275899999975],[138.94015490000004,-8.318526299999974],[138.9493712000001,-8.326076499999942],[138.9509581000001,-8.32675649999993],[138.95552050000003,-8.322996099999955],[138.95191940000007,-8.327506099999937],[138.95800770000005,-8.329525899999965],[138.9658965000001,-8.329566],[138.96583540000006,-8.328156499999977],[138.96846,-8.329706199999976],[138.9746398000001,-8.329196],[138.9791716000001,-8.323502499999961],[138.9907988000001,-8.314574199999981],[139.00094590000003,-8.2964191],[138.99867240000003,-8.289151199999935],[138.9900206000001,-8.287596699999938]]],[[[138.88981620000004,-8.291706099999942],[138.8819579000001,-8.2895365],[138.87084950000008,-8.284056699999951],[138.86106860000007,-8.286906199999976],[138.8537444000001,-8.2930145],[138.8529509000001,-8.296339],[138.8542632000001,-8.2996597],[138.85470570000007,-8.303549799999928],[138.8522948000001,-8.305359799999962],[138.8496093000001,-8.305679299999952],[138.84822070000007,-8.308679599999948],[138.8499144000001,-8.313259099999925],[138.85235580000005,-8.3146992],[138.85279830000002,-8.316509199999928],[138.85226430000012,-8.3260593],[138.84956350000004,-8.32932089999997],[138.85182180000004,-8.3412266],[138.849945,-8.345046],[138.85304250000002,-8.350540199999955],[138.852661,-8.352740299999937],[138.848648,-8.35696409999997],[138.85116570000002,-8.361286199999938],[138.85049430000004,-8.363406199999929],[138.84834280000007,-8.365336399999933],[138.84710680000012,-8.371476199999961],[138.8479155000001,-8.375616099999945],[138.8459319000001,-8.376726099999928],[138.84297170000002,-8.373166099999935],[138.8412932000001,-8.374156],[138.84628280000004,-8.3778562],[138.8462065000001,-8.380106],[138.84159840000007,-8.381086299999936],[138.8391875000001,-8.385436],[138.82051080000008,-8.385746899999958],[138.80451950000008,-8.381917],[138.80349720000004,-8.384576799999934],[138.81195060000005,-8.387577],[138.8211364000001,-8.388526899999931],[138.86714160000008,-8.390926399999955],[138.89221180000004,-8.388216],[138.90135180000004,-8.384746599999971],[138.90658560000008,-8.379566199999942],[138.91456590000007,-8.359776499999953],[138.91200240000012,-8.342926],[138.9169005000001,-8.310166299999935],[138.9157408000001,-8.299896199999978],[138.9140929,-8.296996099999944],[138.9025573,-8.288486499999976],[138.8951873000001,-8.291915899999935],[138.88981620000004,-8.291706099999942]]],[[[138.87632740000004,-8.272786099999962],[138.8592986000001,-8.2667665],[138.8559722000001,-8.269486399999948],[138.88533010000003,-8.288496],[138.8936156000001,-8.289775799999973],[138.90122970000004,-8.281025899999975],[138.8926696000001,-8.268735899999967],[138.87632740000004,-8.272786099999962]]],[[[138.99765,-8.28407379999993],[138.9986113000001,-8.278236399999969],[138.9955596000001,-8.264796299999944],[138.9942473000001,-8.263862599999925],[138.98687730000006,-8.267701099999954],[138.98001090000002,-8.273786499999972],[138.97879020000005,-8.275896099999954],[138.97903430000008,-8.282436399999938],[138.980667,-8.287756],[138.98622120000005,-8.286716499999955],[138.99829090000003,-8.288458799999944],[138.99765,-8.28407379999993]]],[[[138.85591110000007,-8.268606199999965],[138.8584899000001,-8.266396499999928],[138.84715260000007,-8.256556499999931],[138.8463134000001,-8.258266399999968],[138.84997550000003,-8.264845799999932],[138.85591110000007,-8.268606199999965]]],[[[139.444412,-8.2420463],[139.44303880000007,-8.240796099999955],[139.44006330000002,-8.242755899999963],[139.44149760000005,-8.244366599999978],[139.444412,-8.2420463]]],[[[138.9960784000001,-8.2349663],[138.99632250000002,-8.232676499999968],[138.99387320000005,-8.2295784],[138.9868163000001,-8.234295799999927],[138.9709166,-8.239416099999971],[138.9676055000001,-8.242536499999972],[138.96398910000005,-8.254456499999947],[138.96163930000012,-8.258935899999926],[138.95965560000002,-8.2608766],[138.94680770000002,-8.26376629999993],[138.9531859000001,-8.267196599999977],[138.952896,-8.269045799999958],[138.952896,-8.267436],[138.9454955000001,-8.2644167],[138.94142140000008,-8.26781649999998],[138.9346312,-8.2776766],[138.925125,-8.277835799999934],[138.92437730000006,-8.280910499999948],[138.93189990000008,-8.2980194],[138.933792,-8.296936],[138.93217460000005,-8.298766099999966],[138.933792,-8.302771599999971],[138.93698110000003,-8.303306599999928],[138.95059190000006,-8.296276099999943],[138.94973740000012,-8.287446],[138.95098860000007,-8.278876299999979],[138.95021040000006,-8.289476399999955],[138.9513243,-8.295956599999954],[138.96429430000012,-8.29262639999996],[138.96652210000002,-8.290306099999952],[138.965454,-8.288936599999943],[138.96676620000005,-8.290125799999942],[138.96766650000006,-8.288456],[138.96891770000002,-8.289236099999926],[138.96502670000007,-8.292366],[138.973358,-8.291736599999979],[138.97949210000002,-8.287456499999962],[138.97821030000011,-8.275836],[138.9831084000001,-8.270126299999959],[138.98793020000005,-8.266196199999968],[138.99470510000003,-8.2627459],[138.99267570000006,-8.260166199999958],[138.99128710000002,-8.253295899999955],[138.98922720000007,-8.251686099999972],[138.9907988000001,-8.251266499999929],[138.99070730000005,-8.247186599999964],[138.98838790000002,-8.246636399999943],[138.9908293000001,-8.240566199999932],[138.99668870000005,-8.238066699999933],[138.9960784000001,-8.2349663]]],[[[138.64724720000004,-8.23483749999997],[138.65136710000002,-8.233567199999925],[138.6577453000001,-8.224146799999971],[138.65621940000005,-8.2203474],[138.64407340000002,-8.227907199999947],[138.6449126000001,-8.234527599999979],[138.64724720000004,-8.23483749999997]]],[[[138.88143910000008,-8.271046599999977],[138.89117420000002,-8.266655899999932],[138.886917,-8.254655799999966],[138.8867491000001,-8.238636],[138.87825,-8.232326499999942],[138.86642440000003,-8.218545899999981],[138.85115040000005,-8.205085699999927],[138.8488311000001,-8.209456399999965],[138.84793080000009,-8.247226699999942],[138.84887680000008,-8.254675899999938],[138.86123650000002,-8.266026499999953],[138.87338240000008,-8.270766199999969],[138.88143910000008,-8.271046599999977]]],[[[138.71018970000011,-8.164197],[138.714569,-8.160137199999951],[138.7075652000001,-8.1542272],[138.69696030000011,-8.153417599999955],[138.6936644000001,-8.155467],[138.6938933,-8.157537499999933],[138.69929490000004,-8.1613569],[138.7064971000001,-8.164466799999957],[138.71018970000011,-8.164197]]],[[[138.75010670000006,-8.1527071],[138.75814810000008,-8.145607],[138.75527940000006,-8.143867499999942],[138.75186150000002,-8.148527099999967],[138.74523910000005,-8.153777099999957],[138.75010670000006,-8.1527071]]],[[[138.81886280000003,-8.15046689999997],[138.8228759000001,-8.147907199999963],[138.81474290000006,-8.137937499999964],[138.80192550000004,-8.14542769999997],[138.79435720000004,-8.14810749999998],[138.77752670000007,-8.150127399999974],[138.77014150000002,-8.1523876],[138.76339710000002,-8.157377199999928],[138.76309190000006,-8.160017],[138.76416,-8.161557199999947],[138.7654113000001,-8.160797099999968],[138.7666015000001,-8.1614571],[138.77015670000003,-8.166267399999981],[138.7708434000001,-8.169346799999971],[138.77221670000006,-8.169467],[138.77238450000004,-8.171597499999962],[138.76995840000006,-8.169457399999942],[138.76966850000008,-8.16643709999994],[138.7659453000001,-8.161447499999952],[138.764038,-8.16191669999995],[138.76243580000005,-8.160127599999953],[138.76283250000006,-8.157816899999943],[138.74975580000012,-8.164637599999935],[138.7277984000001,-8.1665869],[138.7107390000001,-8.1710968],[138.69688410000003,-8.170907],[138.68830860000003,-8.168197599999928],[138.67898550000007,-8.170086899999944],[138.67181390000007,-8.217287099999965],[138.6635589000001,-8.235036799999932],[138.64179980000006,-8.254767399999935],[138.6225280000001,-8.265757599999972],[138.59863270000005,-8.283937399999957],[138.58618150000007,-8.290177299999925],[138.58639520000008,-8.293567699999926],[138.58482350000008,-8.296927399999959],[138.5703734000001,-8.308297099999947],[138.56721490000007,-8.321806899999956],[138.55558770000005,-8.328706699999941],[138.55284110000002,-8.332707399999947],[138.55239860000006,-8.336267499999963],[138.55998220000004,-8.3484573],[138.56727590000003,-8.355647099999942],[138.58197010000004,-8.359327299999961],[138.5863647000001,-8.359606699999972],[138.587387,-8.358206699999926],[138.58949270000005,-8.360426899999936],[138.5924682000001,-8.359827],[138.59388720000004,-8.361877399999969],[138.59904470000004,-8.363266899999928],[138.6044005000001,-8.362957],[138.60684190000006,-8.3648968],[138.6156615000001,-8.366717299999948],[138.61784350000005,-8.364687],[138.62339770000006,-8.36613749999998],[138.6233519000001,-8.367217],[138.6453094000001,-8.36793709999995],[138.6521911000001,-8.368977499999971],[138.65148920000001,-8.370217299999979],[138.65492240000003,-8.370857199999932],[138.6568145000001,-8.369677499999966],[138.6640929,-8.371087099999954],[138.67251580000004,-8.368977499999971],[138.6797484000001,-8.371221499999933],[138.68441760000007,-8.3755169],[138.69450370000004,-8.377097099999958],[138.7015685,-8.376577399999974],[138.70115650000002,-8.378216699999939],[138.70483390000004,-8.378534299999956],[138.7092742000001,-8.381547],[138.72697440000002,-8.385107],[138.74111930000004,-8.386497499999962],[138.76240530000007,-8.385767],[138.7918853000001,-8.381506899999977],[138.79757680000012,-8.379217099999948],[138.80082690000006,-8.380937599999982],[138.80192560000012,-8.379867599999955],[138.8211669000001,-8.384807599999931],[138.83436570000003,-8.383576399999981],[138.83937060000005,-8.384376499999973],[138.84136950000004,-8.380426399999976],[138.8457946000001,-8.37885659999995],[138.8414,-8.376106299999947],[138.84071340000003,-8.373386399999958],[138.8431548000001,-8.372635799999955],[138.8459471000001,-8.376135799999929],[138.84719840000002,-8.375906],[138.84655750000002,-8.372236199999975],[138.84768670000005,-8.365216199999963],[138.85032640000009,-8.362576499999932],[138.85057060000008,-8.361010499999963],[138.8483275000001,-8.356595],[138.852249,-8.352056499999946],[138.8524169000001,-8.349746699999969],[138.8496093000001,-8.34542659999994],[138.85139450000008,-8.342036199999939],[138.8490905000001,-8.328651399999956],[138.851776,-8.325935399999935],[138.85235580000005,-8.316699],[138.8522948000001,-8.31519979999996],[138.84941090000007,-8.313259099999925],[138.84797660000004,-8.310499199999981],[138.8480681000001,-8.3083095],[138.84919730000001,-8.305859599999962],[138.84675590000006,-8.305799499999978],[138.84249870000008,-8.302789699999948],[138.83634940000002,-8.301789299999939],[138.84255970000004,-8.302289],[138.84669480000002,-8.3054294],[138.8517607000001,-8.305048899999974],[138.85408010000003,-8.303609799999947],[138.8539885,-8.300849],[138.8526763000001,-8.296339],[138.8526763000001,-8.294513699999925],[138.85476670000003,-8.290916399999958],[138.8609771,-8.286466599999926],[138.87045280000007,-8.283535899999947],[138.8515929,-8.268816],[138.84492480000006,-8.260916699999939],[138.8426207000001,-8.24802589999996],[138.84489430000008,-8.211676599999976],[138.8432921000001,-8.208246199999962],[138.8436431,-8.206766099999982],[138.84130850000008,-8.209276199999977],[138.83305350000012,-8.207285899999931],[138.8337401000001,-8.204096799999945],[138.8347625,-8.203926099999933],[138.8337401000001,-8.2029562],[138.8349303000001,-8.203016299999945],[138.83515920000002,-8.203986199999974],[138.8340148000001,-8.2043867],[138.8346404,-8.205976499999963],[138.83345020000002,-8.20716669999996],[138.83686820000003,-8.206886299999951],[138.84114060000002,-8.2088766],[138.84335320000002,-8.205976499999963],[138.8443145000001,-8.206826199999966],[138.84503160000008,-8.2107963],[138.8461913000001,-8.198926],[138.839218,-8.174056],[138.8230132000001,-8.148997299999962],[138.81591790000004,-8.152997],[138.811859,-8.153687499999933],[138.81231680000008,-8.157357199999979],[138.8106993,-8.160417499999937],[138.80955490000008,-8.160297399999934],[138.81184380000002,-8.157287599999961],[138.81036370000004,-8.154917699999942],[138.81156910000004,-8.152377099999967],[138.8158721000001,-8.152517299999943],[138.815811,-8.150567],[138.8170623000001,-8.151467299999979],[138.81886280000003,-8.15046689999997]]],[[[139.58291610000003,-8.136816],[139.58168010000009,-8.135036499999956],[139.58137490000001,-8.136216199999978],[139.58291610000003,-8.136816]]],[[[138.83786,-8.090705899999932],[138.8403472000001,-8.087876299999948],[138.83699020000006,-8.089726399999961],[138.83786,-8.090705899999932]]],[[[138.91699210000002,-7.896834399999932],[138.93803390000005,-7.886654399999941],[138.94224540000005,-7.882848299999978],[138.93228140000008,-7.883397099999968],[138.9247130000001,-7.886827499999981],[138.9153136000001,-7.894793],[138.91459640000005,-7.8965831],[138.91699210000002,-7.896834399999932]]],[[[138.998886,-7.727047],[138.9965056000001,-7.725657],[138.99523910000005,-7.727186699999947],[138.99778730000003,-7.728817],[139.0009764,-7.726096599999948],[138.998886,-7.727047]]],[[[138.6730040000001,-7.366182299999934],[138.6711577000001,-7.368382],[138.66711420000001,-7.366542299999935],[138.6625365000001,-7.369042399999955],[138.65200790000006,-7.369392399999981],[138.63987720000011,-7.372477499999945],[138.6376037000001,-7.371183899999949],[138.6443938000001,-7.370379],[138.6439971000001,-7.369500599999981],[138.63256830000012,-7.370519599999966],[138.6250304,-7.368155499999943],[138.62431330000004,-7.370522],[138.5638884000001,-7.385749799999928],[138.5331420000001,-7.3901005],[138.49087510000004,-7.393520799999976],[138.46359240000004,-7.398541],[138.42526240000007,-7.402860199999964],[138.38845820000006,-7.411160499999937],[138.38584890000004,-7.410160099999928],[138.37933340000006,-7.413090199999942],[138.36296070000003,-7.415900199999953],[138.35656730000005,-7.419537499999933],[138.345703,-7.422377599999948],[138.343521,-7.421667599999978],[138.3423461000001,-7.423167699999965],[138.31912220000004,-7.430647399999941],[138.31622310000012,-7.4295278],[138.31340020000005,-7.431849499999942],[138.30133050000006,-7.436517199999969],[138.2880553000001,-7.439766899999938],[138.28311150000002,-7.4436269],[138.2659301000001,-7.449608799999965],[138.26033010000003,-7.453115],[138.21611020000012,-7.471839],[138.20645130000003,-7.477644399999974],[138.20492550000006,-7.480284199999971],[138.1944122000001,-7.4846621],[138.18150320000007,-7.494554],[138.1709899000001,-7.499170299999946],[138.15348810000012,-7.512679599999956],[138.1479339000001,-7.514153],[138.148178,-7.515585399999964],[138.13209530000006,-7.526574599999947],[138.13092030000007,-7.529092299999945],[138.11959830000012,-7.536103699999956],[138.11614980000002,-7.539354799999956],[138.11450190000005,-7.543310199999951],[138.11198420000005,-7.5430889],[138.10900870000012,-7.545141699999931],[138.1079559000001,-7.549212],[138.10102840000002,-7.551889899999935],[138.09974660000012,-7.557276699999932],[138.0983123000001,-7.5566893],[138.09713740000007,-7.559924099999932],[138.089508,-7.566550699999937],[138.08929440000009,-7.568822399999931],[138.08702080000012,-7.569436099999962],[138.0863342,-7.5746732],[138.07695,-7.575537199999928],[138.07621760000006,-7.579677099999969],[138.0739288000001,-7.582087],[138.06298820000006,-7.588457099999971],[138.037384,-7.613487199999952],[138.02156060000004,-7.632597],[138.01931760000002,-7.638007199999947],[138.00514210000006,-7.655736899999965],[137.98637380000002,-7.682866599999954],[137.97492970000008,-7.704567],[137.96952810000005,-7.7329326],[137.96777340000006,-7.734840399999939],[137.95770260000006,-7.735286699999961],[137.95452880000005,-7.741036899999926],[137.948944,-7.741946699999971],[137.94352720000006,-7.745696499999951],[137.926834,-7.762466899999936],[137.92131040000004,-7.771456699999931],[137.91439810000008,-7.777326599999981],[137.91018670000005,-7.784906899999953],[137.90689080000004,-7.786837099999957],[137.90411370000004,-7.795127399999956],[137.89479060000008,-7.808797799999979],[137.89355460000002,-7.814418799999942],[137.88584890000004,-7.824227299999961],[137.87814330000003,-7.8444128],[137.8770141000001,-7.846307299999978],[137.87176510000006,-7.848490199999958],[137.86874380000006,-7.852755499999944],[137.86662290000004,-7.861999],[137.86543270000004,-7.861985199999936],[137.86647030000006,-7.864395099999967],[137.86460870000008,-7.863735199999951],[137.85986320000006,-7.8703566],[137.85932920000005,-7.876674599999944],[137.86132810000004,-7.879467499999976],[137.8582305000001,-7.879067899999939],[137.85865780000006,-7.881169799999952],[137.8504180000001,-7.888662799999963],[137.84986870000012,-7.890491],[137.8518524000001,-7.892441699999949],[137.85116570000002,-7.896407599999975],[137.84806820000006,-7.8961163],[137.84585570000002,-7.900762099999952],[137.84759520000011,-7.904455199999973],[137.84361260000003,-7.903864399999975],[137.83638,-7.915279899999973],[137.8361205000001,-7.918509],[137.8419494000001,-7.923355099999981],[137.83580010000003,-7.923165299999937],[137.83447260000003,-7.924225299999932],[137.8289794000001,-7.933065399999975],[137.82897950000006,-7.939185099999975],[137.82501220000006,-7.941575099999966],[137.819992,-7.948648499999933],[137.81723020000004,-7.955964599999959],[137.81977840000002,-7.956789],[137.8203582000001,-7.959451199999933],[137.82275390000007,-7.960557899999969],[137.82064810000008,-7.962115799999935],[137.81707760000006,-7.962174399999981],[137.81404110000005,-7.966155],[137.8126678000001,-7.972245199999975],[137.81512450000002,-7.974445299999957],[137.8093414000001,-7.976084699999944],[137.80476380000005,-7.985658199999932],[137.80465690000005,-7.989448099999947],[137.80650320000007,-7.990915299999926],[137.803009,-7.992600899999957],[137.800064,-8.00039],[137.7983551000001,-8.011996299999964],[137.80093380000005,-8.022855799999945],[137.80215450000003,-8.024879399999975],[137.80480950000003,-8.025015799999949],[137.809555,-8.032906499999967],[137.81440730000008,-8.033732399999963],[137.81571960000008,-8.038347199999976],[137.80346680000002,-8.044796],[137.79695120000008,-8.046054799999979],[137.7953186000001,-8.049444199999925],[137.78851310000005,-8.049841899999933],[137.78819270000008,-8.051897],[137.78555290000008,-8.051914199999942],[137.786087,-8.053772],[137.78169250000008,-8.055138599999964],[137.77790830000004,-8.060938799999974],[137.77999870000008,-8.069237699999974],[137.77378840000006,-8.064966199999958],[137.766632,-8.070442199999945],[137.76390070000002,-8.077065499999946],[137.76774590000002,-8.080409],[137.76428220000003,-8.081092799999965],[137.76296990000003,-8.086012799999935],[137.7589111000001,-8.08684349999993],[137.75422660000004,-8.091716799999972],[137.75207520000004,-8.101218199999948],[137.74504090000005,-8.106093399999963],[137.74058530000002,-8.117624299999932],[137.7346801000001,-8.123840299999927],[137.73263550000001,-8.1292801],[137.72755430000007,-8.133068099999946],[137.72865290000004,-8.13701629999997],[137.7210388000001,-8.1445751],[137.71726990000002,-8.155460399999981],[137.7144012000001,-8.158764799999972],[137.71907040000008,-8.163671499999964],[137.71818540000004,-8.1644382],[137.7169189000001,-8.162300099999925],[137.71456910000006,-8.161936799999978],[137.70648190000009,-8.17215729999998],[137.70771790000003,-8.1748314],[137.7038421000001,-8.179817199999945],[137.7035522000001,-8.185249299999953],[137.6987762000001,-8.195672],[137.694107,-8.211256],[137.69090270000004,-8.21476359999997],[137.68928520000009,-8.224762899999973],[137.684021,-8.236002],[137.6843414000001,-8.24055],[137.6823577,-8.246060399999976],[137.68411250000008,-8.247523299999955],[137.6803741000001,-8.2513027],[137.6793060000001,-8.261901799999976],[137.67724610000005,-8.265200599999957],[137.67807,-8.267876599999965],[137.67547600000012,-8.271983099999943],[137.67332450000004,-8.282857899999954],[137.67151020000006,-8.284411399999954],[137.6712341000001,-8.292793299999971],[137.667572,-8.298985499999958],[137.66575620000003,-8.308531799999969],[137.6668548,-8.311568199999954],[137.66378780000002,-8.316575099999966],[137.66040040000007,-8.343413299999952],[137.66160580000007,-8.345801299999948],[137.65960690000009,-8.350661299999956],[137.66044610000006,-8.352221499999928],[137.6490020000001,-8.383241699999928],[137.64309690000005,-8.412982],[137.640274,-8.417581599999949],[137.64031980000004,-8.423301699999968],[137.64270010000007,-8.430921599999976],[137.655075,-8.446051599999976],[137.6622314000001,-8.446891799999946],[137.664917,-8.4434919],[137.66484060000005,-8.4395018],[137.6726837000001,-8.43700119999994],[137.68397520000008,-8.428961699999945],[137.68928520000009,-8.421482099999935],[137.690979,-8.421541199999979],[137.6911315000001,-8.418371199999967],[137.69657890000008,-8.421390499999973],[137.7363891000001,-8.405740699999967],[137.79444880000005,-8.394211799999937],[137.85711660000004,-8.38489149999998],[137.8631286000001,-8.381991399999947],[137.87046870000006,-8.372632],[137.87297050000006,-8.373281499999962],[137.87446590000002,-8.372201899999936],[137.8762359000001,-8.379641499999934],[137.89135740000006,-8.382762],[137.97245780000003,-8.384730299999944],[137.9924926000001,-8.382350899999949],[138.00326530000007,-8.385260599999981],[138.06793210000012,-8.386200899999949],[138.0765685,-8.387380599999972],[138.09970090000002,-8.383310299999948],[138.10256950000007,-8.385980599999925],[138.115921,-8.386410699999942],[138.13224790000004,-8.384000799999967],[138.14825430000008,-8.386031099999968],[138.1562957000001,-8.3848505],[138.164978,-8.38592049999994],[138.17860410000003,-8.384161],[138.18815610000001,-8.385240499999952],[138.192398,-8.3827257],[138.20004270000004,-8.3840027],[138.22268670000005,-8.378412199999957],[138.22799680000003,-8.380541799999946],[138.2288513000001,-8.384702699999934],[138.24830620000012,-8.388242699999978],[138.25381460000006,-8.390052799999978],[138.25538630000005,-8.39303209999997],[138.25657650000005,-8.390949199999966],[138.26268,-8.390525799999978],[138.26388540000005,-8.391885799999955],[138.26377860000002,-8.3997507],[138.26190180000003,-8.401564599999972],[138.2615508,-8.40575119999994],[138.26281730000005,-8.41528029999995],[138.26531980000004,-8.419421199999931],[138.2728271000001,-8.422221199999967],[138.30334470000003,-8.424881],[138.34103390000007,-8.419691099999966],[138.36759940000002,-8.413060199999961],[138.40385430000003,-8.400830299999939],[138.4460296000001,-8.381800699999928],[138.49136340000007,-8.346460299999933],[138.50076290000004,-8.329481099999953],[138.49957270000004,-8.317761399999938],[138.5009460000001,-8.31604],[138.50357050000002,-8.316209799999967],[138.5101317000001,-8.313169499999958],[138.50981130000002,-8.3112202],[138.51087940000002,-8.308420199999944],[138.51081840000006,-8.306099899999936],[138.51124560000005,-8.308119799999929],[138.5102386000001,-8.31056019999994],[138.51133720000007,-8.312879599999974],[138.5351409000001,-8.304717099999948],[138.5537108000001,-8.287286799999947],[138.56762690000005,-8.277267399999971],[138.61505120000004,-8.249506899999972],[138.61939990000008,-8.24283689999993],[138.6343535000001,-8.228377299999977],[138.65303030000007,-8.20470709999995],[138.65978990000008,-8.174487099999965],[138.66621390000012,-8.162747399999944],[138.67503350000004,-8.1529474],[138.68273920000001,-8.147879599999953],[138.6780089,-8.142059299999971],[138.6796111000001,-8.142539],[138.67857350000008,-8.136149399999965],[138.68086230000006,-8.132079099999942],[138.67736810000008,-8.1184492],[138.6776122000001,-8.113249799999949],[138.6727141,-8.103809299999966],[138.67221060000008,-8.099899299999947],[138.67103570000006,-8.098922699999946],[138.6727446000001,-8.099669399999925],[138.67372120000005,-8.105529799999942],[138.67845140000009,-8.113249799999949],[138.6776427000001,-8.118159299999945],[138.6813201000001,-8.132549299999937],[138.67916860000003,-8.136799799999949],[138.68171680000012,-8.138769099999934],[138.68423450000012,-8.1382494],[138.68171680000012,-8.138949399999944],[138.6794738000001,-8.137219399999935],[138.68162530000006,-8.146459599999957],[138.7025298000001,-8.146009399999969],[138.71739190000005,-8.148019799999929],[138.71687310000004,-8.145769099999939],[138.71842950000007,-8.145479199999954],[138.71842950000007,-8.143529899999976],[138.7213134000001,-8.139589299999955],[138.7226409000001,-8.139359499999955],[138.722412,-8.137339599999962],[138.72485340000003,-8.138009099999977],[138.72407520000002,-8.136879399999941],[138.72508230000005,-8.138069099999939],[138.7226409000001,-8.137759199999948],[138.72299180000005,-8.139589299999955],[138.72137440000006,-8.139999399999965],[138.7206420000001,-8.142299599999944],[138.71897880000006,-8.1431799],[138.7189025,-8.145719499999927],[138.7173461000001,-8.146779099999947],[138.73027030000003,-8.152979799999969],[138.73596180000004,-8.15369949999996],[138.74842820000003,-8.149089799999956],[138.75500480000005,-8.142269099999965],[138.76200860000006,-8.143569],[138.77886950000004,-8.139269799999965],[138.79435720000004,-8.139468199999953],[138.80101,-8.136498399999937],[138.80374130000007,-8.132848699999954],[138.81156910000004,-8.112208399999929],[138.81018050000011,-8.1021185],[138.81538380000006,-8.0913849],[138.81358330000012,-8.091315299999962],[138.8133391,-8.092965099999958],[138.81159960000002,-8.094554899999935],[138.8104247000001,-8.093605],[138.81184380000002,-8.094315499999936],[138.8137206,-8.0900154],[138.811859,-8.090415],[138.81121810000002,-8.08993529999998],[138.81217950000007,-8.088765099999932],[138.81175220000011,-8.090115499999968],[138.81378160000008,-8.089415499999973],[138.8138884000001,-8.091135],[138.81631460000006,-8.089895199999944],[138.82568350000008,-8.080095299999925],[138.83895860000007,-8.073445299999946],[138.83683770000005,-8.070485099999928],[138.83564750000005,-8.070895199999939],[138.83410630000003,-8.070535699999937],[138.83363420000012,-8.068514299999947],[138.8342894000001,-8.068875299999945],[138.8345183,-8.070535699999937],[138.8373259000001,-8.070425],[138.83990470000003,-8.073135399999956],[138.85975630000007,-8.068654099999947],[138.90286240000012,-8.076615299999958],[138.9126586000001,-8.076294899999937],[138.91444380000007,-8.071035399999971],[138.91268910000008,-8.061505299999965],[138.9102782000001,-8.058805499999949],[138.90274040000008,-8.056175199999927],[138.89782700000012,-8.052175499999976],[138.89038070000004,-8.040675199999953],[138.8886718000001,-8.029285399999935],[138.8921355000001,-8.013295199999959],[138.88848860000007,-8.012925099999961],[138.88298020000002,-8.017215699999952],[138.87614430000008,-8.015105199999937],[138.8685607000001,-8.016135199999951],[138.8629912,-8.010365499999978],[138.85975630000007,-8.0125351],[138.85522450000008,-8.012684799999931],[138.85308830000008,-8.00983519999994],[138.84664910000004,-8.009915299999932],[138.84231560000012,-8.0014849],[138.84204090000003,-7.994495899999947],[138.8432769000001,-7.997765499999957],[138.84272750000002,-8.001495399999953],[138.8473967000001,-8.009864799999946],[138.85330190000002,-8.009485199999972],[138.8550719000001,-8.012275699999975],[138.86013780000008,-8.011825599999952],[138.86283860000003,-8.009825699999965],[138.8681792000001,-8.0154152],[138.87649520000002,-8.014454799999953],[138.8823394000001,-8.016614499999946],[138.88754260000007,-8.012675299999955],[138.89347830000008,-8.011585199999956],[138.8970336000001,-8.005505599999935],[138.89443960000006,-8.006145499999946],[138.89750660000004,-8.004715],[138.8998564000001,-8.000665699999956],[138.90052780000008,-7.998915199999942],[138.89894090000007,-7.999295199999949],[138.9007567000001,-7.9983053],[138.90196220000007,-7.992868899999962],[138.9024352,-7.969576299999972],[138.89202870000008,-7.935765699999934],[138.8908232000001,-7.926146],[138.88902270000006,-7.926375899999925],[138.8890685,-7.928395699999953],[138.88824450000004,-7.927206],[138.88902270000006,-7.924126099999967],[138.88629140000012,-7.923286],[138.88581840000006,-7.921505899999943],[138.88385,-7.922446199999968],[138.88331590000007,-7.922026099999925],[138.883026,-7.920006299999955],[138.8818358000001,-7.920296199999939],[138.8824767000001,-7.922196399999962],[138.88092030000007,-7.924146199999939],[138.87149040000008,-7.926526499999966],[138.88104240000007,-7.923436199999969],[138.88206470000011,-7.922076199999935],[138.88117970000008,-7.920236599999953],[138.883087,-7.919596199999944],[138.883438,-7.921786299999951],[138.8860625000001,-7.921266099999968],[138.88682540000002,-7.923286],[138.88938890000009,-7.923895799999968],[138.8902739,-7.925555699999961],[138.89205920000006,-7.912608099999943],[138.8967894000001,-7.902758099999971],[138.89595020000002,-7.897178199999928],[138.89350880000006,-7.895808199999976],[138.89137260000007,-7.900388199999952],[138.8908385000001,-7.903008499999942],[138.8929137,-7.907888399999933],[138.89131150000003,-7.908898299999976],[138.88156120000008,-7.903008899999975],[138.88066090000007,-7.899918499999956],[138.87780750000002,-7.897888699999953],[138.8736418000001,-7.898608199999956],[138.8631133,-7.896168199999977],[138.8615721000001,-7.8983083],[138.860855,-7.896408099999974],[138.85636890000012,-7.898068399999943],[138.85292040000002,-7.895038099999965],[138.85630790000005,-7.897418],[138.8631438000001,-7.8955083],[138.87397750000002,-7.898128],[138.8778380000001,-7.897358899999972],[138.8811644000001,-7.899678699999981],[138.88206470000011,-7.902708],[138.89221180000004,-7.908238399999959],[138.89024340000003,-7.902828199999931],[138.89309680000008,-7.8955083],[138.89595020000002,-7.895628399999964],[138.89787280000007,-7.901308099999937],[138.9089202,-7.890298399999949],[138.9081420000001,-7.887238],[138.908676,-7.8856382],[138.91218550000008,-7.886108399999955],[138.91349780000007,-7.884868099999949],[138.9130858000001,-7.883728],[138.90576160000012,-7.882778199999962],[138.901184,-7.883618299999966],[138.89761340000007,-7.877368399999966],[138.893936,-7.878078499999958],[138.894287,-7.874458299999958],[138.8982085,-7.869988399999954],[138.8937529000001,-7.870168199999966],[138.89327990000004,-7.868328099999928],[138.89404280000008,-7.869758099999956],[138.89857470000004,-7.869818199999941],[138.894821,-7.874338099999932],[138.894348,-7.877428],[138.89750660000004,-7.876828199999977],[138.901306,-7.883018],[138.90594470000008,-7.882368099999951],[138.9137419000001,-7.883378],[138.91361990000007,-7.885578099999975],[138.91169730000001,-7.886938099999952],[138.9096373000001,-7.885938199999941],[138.9085692000001,-7.886468399999956],[138.9095,-7.889778099999944],[138.92994680000004,-7.876298399999939],[138.9403685000001,-7.872928099999967],[138.9420622,-7.870048],[138.93991080000012,-7.867728199999931],[138.94360340000003,-7.863688499999967],[138.94038380000006,-7.867728199999931],[138.94282520000002,-7.870048],[138.94128410000008,-7.872488],[138.95404040000005,-7.869868299999951],[138.98176560000002,-7.860948099999973],[138.99427780000008,-7.8497081],[138.99784840000007,-7.841318099999967],[138.99972520000006,-7.829396699999961],[138.9973754,-7.810536899999931],[138.99018850000004,-7.778707],[138.99046310000006,-7.760807],[138.99507130000006,-7.745397099999934],[139.00463850000006,-7.725066699999957],[139.00161730000002,-7.722316699999965],[139.00114430000008,-7.726836699999978],[138.9982298000001,-7.729456899999946],[138.99661240000012,-7.729336699999976],[138.99459830000012,-7.727787],[138.99507130000006,-7.725707],[138.99673450000012,-7.725226899999939],[138.999298,-7.726476699999978],[139.000305,-7.725526799999955],[138.99584950000008,-7.720057],[138.99234,-7.721606699999938],[138.99061570000003,-7.726007],[138.9878691,-7.724937],[138.98770130000003,-7.7227869],[138.98948660000008,-7.721656799999948],[138.98912030000008,-7.718926899999929],[138.98793020000005,-7.718627],[138.986801,-7.722256699999946],[138.98294050000004,-7.720526699999937],[138.980316,-7.721366899999964],[138.9799035000001,-7.720178099999941],[138.9806212000001,-7.721127],[138.98222340000007,-7.720236799999952],[138.98661790000006,-7.721716899999933],[138.9876402000001,-7.718446699999959],[138.98899830000005,-7.718327],[138.98995960000002,-7.721487],[138.98817430000008,-7.724216899999931],[138.98918140000012,-7.725226899999939],[138.99090560000002,-7.724997],[138.992401,-7.720826599999953],[138.99572740000008,-7.719397099999981],[139.000717,-7.725287],[139.0013732000001,-7.7218966],[139.00530990000004,-7.724196899999981],[139.02348310000002,-7.7019668],[139.03312670000003,-7.6874967],[139.03324880000002,-7.652500099999941],[139.0313414000001,-7.65272],[139.03004440000007,-7.650830299999939],[139.0322417000001,-7.652319899999952],[139.033737,-7.650860299999977],[139.04121380000004,-7.628230599999938],[139.04943830000002,-7.614790399999947],[139.05546560000005,-7.607890599999962],[139.06645190000006,-7.597710599999971],[139.08076460000007,-7.587860599999942],[139.08476240000005,-7.582230599999946],[139.0876158000001,-7.573890699999936],[139.08148180000012,-7.568960699999934],[139.07690420000006,-7.567174899999941],[139.06100450000008,-7.567021399999931],[139.04183950000004,-7.5637617],[139.0225981000001,-7.5575614],[139.00306690000002,-7.559601799999939],[138.9869841000001,-7.557651499999963],[138.9832762000001,-7.564701499999956],[138.98413070000004,-7.5694218],[138.98532090000003,-7.569721699999945],[138.98823530000004,-7.562151399999948],[138.9921111000001,-7.562881499999946],[138.992401,-7.563811799999939],[138.98957810000002,-7.567101499999978],[138.9918669000001,-7.563471799999945],[138.9884184000001,-7.562681699999928],[138.98500050000007,-7.570961499999953],[138.98341360000006,-7.5693016],[138.9827269000001,-7.5647616],[138.98573290000002,-7.557371599999954],[138.9627379000001,-7.552241299999935],[138.9538573000001,-7.551551299999971],[138.93902570000012,-7.545960899999955],[138.9288024000001,-7.538161299999956],[138.92573530000004,-7.537880899999948],[138.91801440000006,-7.533241299999929],[138.909561,-7.536391199999969],[138.90213,-7.525861299999974],[138.90213,-7.541091],[138.90586840000003,-7.547631299999978],[138.8978118000001,-7.556321099999934],[138.90292350000004,-7.556140899999946],[138.906021,-7.559711],[138.90310660000011,-7.564411199999938],[138.9070891,-7.567161099999964],[138.906906,-7.570180899999968],[138.90893540000002,-7.566611299999977],[138.91137680000008,-7.567141],[138.91149890000008,-7.568871],[138.90934740000012,-7.566971299999977],[138.90875230000006,-7.5697012],[138.90637190000007,-7.570481299999926],[138.90661610000006,-7.567030899999963],[138.90257250000002,-7.564171299999941],[138.90542590000007,-7.560010899999952],[138.9023284000001,-7.556621099999973],[138.8974608000001,-7.5571513],[138.88825980000001,-7.555661199999975],[138.88148490000003,-7.550311099999931],[138.88177480000002,-7.554951199999948],[138.8743743000001,-7.558161299999938],[138.8749388000001,-7.564411199999938],[138.87290940000003,-7.566251299999976],[138.86820970000008,-7.566791],[138.86625660000004,-7.569461299999944],[138.87255850000008,-7.580171099999973],[138.8722533,-7.581861],[138.86585990000003,-7.569461299999944],[138.86836230000006,-7.566010899999981],[138.8740233000001,-7.5650611],[138.8735961000001,-7.5587611],[138.87657150000007,-7.556201],[138.88095080000005,-7.554891099999963],[138.8803557000001,-7.550311099999931],[138.882965,-7.550190899999961],[138.8893584000001,-7.555371299999933],[138.89602650000006,-7.555601099999933],[138.9045867000001,-7.548531],[138.9010161000001,-7.540111099999933],[138.90107710000007,-7.524910899999952],[138.90335070000003,-7.525270899999953],[138.9068602000001,-7.532521199999962],[138.90953050000007,-7.535021299999926],[138.91773970000008,-7.532231299999978],[138.9260253000001,-7.535090899999943],[138.91325370000004,-7.523758899999962],[138.9023436000001,-7.510199099999966],[138.89303580000012,-7.496449],[138.8830107000001,-7.475268799999981],[138.8799742000001,-7.475869199999977],[138.8830107000001,-7.476758899999936],[138.88360580000005,-7.478239099999939],[138.8803862000001,-7.479079199999944],[138.8798369000001,-7.482333199999971],[138.87937910000005,-7.479259],[138.8830107000001,-7.478299099999958],[138.87937910000005,-7.475918799999931],[138.88241560000006,-7.474849199999937],[138.88211050000007,-7.471834699999931],[138.87469470000008,-7.452744499999937],[138.86509690000003,-7.437394599999948],[138.8528136000001,-7.424664],[138.8497771000001,-7.423533899999939],[138.85012810000012,-7.422104399999967],[138.84397880000006,-7.415864],[138.83117660000005,-7.405623899999966],[138.825302,-7.402414299999975],[138.8256530000001,-7.404554399999938],[138.8243407000001,-7.403724199999942],[138.82308950000004,-7.405273899999941],[138.82351670000003,-7.4038439],[138.82511890000012,-7.403604],[138.82296740000004,-7.399683899999957],[138.8111113000001,-7.392124199999955],[138.80306990000008,-7.3894443],[138.78669730000001,-7.38064],[138.78478990000008,-7.381413899999927],[138.7789153000001,-7.377690799999925],[138.7737578000001,-7.376704699999948],[138.7744139,-7.379233399999976],[138.7638243,-7.374160299999971],[138.74511710000002,-7.370589699999925],[138.74339280000004,-7.371010299999966],[138.7431792000001,-7.372797499999933],[138.72386160000008,-7.369816799999967],[138.7037352000001,-7.369196399999964],[138.70536790000006,-7.371182399999952],[138.6852874000001,-7.3672528],[138.67993150000007,-7.368862599999943],[138.6730040000001,-7.366182299999934]]],[[[140.05781510000008,-7.266099299999951],[139.82870370000012,-7.453893],[139.211346,-7.326481099999967],[138.66725150000002,-7.214186699999971],[138.6736297000001,-7.222806899999966],[138.69039910000004,-7.232656499999962],[138.7022704000001,-7.236576599999978],[138.71134940000002,-7.238186799999937],[138.71157830000004,-7.237056699999926],[138.71302780000008,-7.239106599999957],[138.7141723000001,-7.238566899999967],[138.72616570000002,-7.244836799999973],[138.736328,-7.251866799999959],[138.77134690000003,-7.263856899999951],[138.76821890000008,-7.259946799999966],[138.79293810000001,-7.281696299999965],[138.79910270000005,-7.290166399999976],[138.81266770000002,-7.296378599999969],[138.81300340000007,-7.297788599999933],[138.83074940000006,-7.302698599999928],[138.8341368,-7.299428499999976],[138.84162890000005,-7.296008599999936],[138.84201040000005,-7.286998299999937],[138.84899890000008,-7.292818499999953],[138.8514556,-7.298078499999974],[138.85534660000008,-7.290038599999946],[138.8517455000001,-7.298728499999982],[138.8486937,-7.293228599999964],[138.84242240000003,-7.287468399999966],[138.84271230000002,-7.294718299999943],[138.84149160000004,-7.297238299999947],[138.8358611000001,-7.299088499999925],[138.8322753000001,-7.302368599999966],[138.84074390000012,-7.306778399999928],[138.8553008,-7.310478699999976],[138.87004080000008,-7.321258499999942],[138.87293990000012,-7.326048399999934],[138.87675460000003,-7.327838399999962],[138.88996870000005,-7.341249],[138.90013110000007,-7.355228899999929],[138.9011077,-7.358829],[138.90687550000007,-7.365058899999951],[138.90505970000004,-7.367002],[138.91230760000008,-7.380336799999952],[138.912506,-7.3838067],[138.91564930000004,-7.385896699999932],[138.91644270000006,-7.390676499999927],[138.92059310000002,-7.396536799999978],[138.92218,-7.408916499999975],[138.93713370000012,-7.448256499999957],[138.941696,-7.466536499999961],[138.94329820000007,-7.467136899999957],[138.94230640000012,-7.467296599999941],[138.94270310000002,-7.470966799999928],[138.945526,-7.482127699999978],[138.94752490000008,-7.483767499999942],[138.94651780000004,-7.484687799999961],[138.9489592000001,-7.487527799999953],[138.9489287,-7.490607699999941],[138.95817550000004,-7.511467399999958],[138.96289050000007,-7.5176678],[138.9674529,-7.520817699999952],[138.9779509000001,-7.5221577],[138.99256880000007,-7.518197499999928],[139.00927720000004,-7.515787599999953],[139.0333098000001,-7.514947399999926],[139.03289780000011,-7.511497499999962],[139.03587330000005,-7.510107499999947],[139.03202810000005,-7.506717699999967],[139.0326689000001,-7.505557499999952],[139.03564440000002,-7.506487799999945],[139.03636160000008,-7.504567599999973],[139.03500350000002,-7.5041175],[139.03639210000006,-7.503817499999968],[139.0368804000001,-7.504377799999929],[139.0359496000001,-7.506907499999954],[139.03256210000006,-7.506677599999932],[139.036209,-7.509497599999975],[139.035446,-7.511457399999927],[139.03346240000008,-7.511907599999972],[139.03472890000012,-7.514787699999943],[139.05110150000007,-7.515787599999953],[139.085678,-7.529283499999963],[139.08477770000002,-7.526993299999958],[139.08555590000003,-7.524003499999935],[139.08419790000005,-7.522473299999945],[139.08288560000005,-7.523043099999938],[139.08598310000002,-7.521113399999933],[139.0844115000001,-7.513143499999956],[139.08537280000007,-7.512073499999929],[139.08950790000006,-7.512003399999969],[139.09107960000006,-7.514393299999938],[139.092636,-7.511753099999964],[139.0916747000001,-7.514603099999931],[139.09086590000004,-7.514743299999964],[139.0895842000001,-7.512713399999939],[139.084915,-7.512933199999964],[139.08670030000008,-7.520723299999929],[139.085266,-7.522753199999954],[139.0861662000001,-7.524423099999979],[139.08537280000007,-7.527813399999957],[139.0959319000001,-7.535893],[139.10437,-7.545922699999949],[139.107025,-7.552192699999978],[139.1098479000001,-7.568542899999954],[139.1146391000001,-7.5644927],[139.12484730000006,-7.562943399999938],[139.13293440000007,-7.555283499999973],[139.13417040000002,-7.549523299999976],[139.13357530000008,-7.539193099999977],[139.13490280000008,-7.535193399999969],[139.13783250000006,-7.533233199999927],[139.14538560000005,-7.533583199999953],[139.1498564000001,-7.529103299999974],[139.1494292000001,-7.525253299999974],[139.14471420000007,-7.518013499999938],[139.14480580000009,-7.515163399999949],[139.14782700000012,-7.511113199999954],[139.144882,-7.506163099999981],[139.14245590000007,-7.505743499999937],[139.1414946000001,-7.504313499999967],[139.14202870000008,-7.503363099999945],[139.14344770000002,-7.503363099999945],[139.14395130000003,-7.500983199999951],[139.14385970000012,-7.503263499999946],[139.14199810000002,-7.5038333],[139.14219650000007,-7.504973399999926],[139.14509570000007,-7.5056434],[139.14794910000012,-7.510263399999928],[139.14952070000004,-7.507733299999927],[139.1484679,-7.511683499999947],[139.15509020000002,-7.515303099999926],[139.15840130000004,-7.509883399999978],[139.1731261000001,-7.504263399999957],[139.17269880000003,-7.496933399999932],[139.17683390000002,-7.492363399999931],[139.17562850000002,-7.483083199999953],[139.18406660000005,-7.478573299999937],[139.18238810000003,-7.474473499999931],[139.18449390000012,-7.478243299999974],[139.1896666,-7.477653499999974],[139.196411,-7.474843499999963],[139.19717390000005,-7.475713199999973],[139.19911180000008,-7.473443499999973],[139.2012175000001,-7.474043399999971],[139.2016447000001,-7.472313399999962],[139.20440660000008,-7.472203199999967],[139.20553570000004,-7.469453299999941],[139.20672590000004,-7.469023199999981],[139.20510850000005,-7.472043499999927],[139.20364360000008,-7.472903199999962],[139.20208720000005,-7.472523199999955],[139.20181260000004,-7.473983299999929],[139.2005766000001,-7.474683299999981],[139.19879130000004,-7.474093399999958],[139.19825730000002,-7.475653199999954],[139.1959379000001,-7.476413199999968],[139.20521530000008,-7.479653299999939],[139.20736680000005,-7.478513199999952],[139.21397380000008,-7.479212099999927],[139.20184310000002,-7.480023399999936],[139.19531230000007,-7.476843299999928],[139.17848190000007,-7.481843499999968],[139.1765593,-7.483893399999943],[139.1765593,-7.486383399999966],[139.17794780000008,-7.493033399999945],[139.17968730000007,-7.493173099999979],[139.17431620000002,-7.496933399999932],[139.17481980000002,-7.503723099999945],[139.17378220000012,-7.505223299999955],[139.15927110000007,-7.510923399999967],[139.1552733000001,-7.517703499999925],[139.15669230000003,-7.519383399999981],[139.1583098000001,-7.517173299999968],[139.15980510000009,-7.517013499999962],[139.15913380000006,-7.519293299999958],[139.1588438000001,-7.517323499999975],[139.15675340000007,-7.519863099999952],[139.15548690000003,-7.5198336],[139.15495280000005,-7.517173299999968],[139.14938340000003,-7.513273199999958],[139.14738450000004,-7.513783399999966],[139.14633160000005,-7.518343399999935],[139.1515501,-7.526193099999944],[139.15126020000002,-7.530283399999973],[139.14541610000003,-7.535193399999969],[139.13716110000007,-7.535383199999956],[139.13528430000008,-7.538673399999936],[139.13575730000002,-7.551123099999927],[139.1340331,-7.560873499999957],[139.14186080000002,-7.565653299999951],[139.1424406000001,-7.5644531],[139.1446989000001,-7.563663499999961],[139.1425627000001,-7.561093299999925],[139.14329510000005,-7.559103499999935],[139.14620960000002,-7.561923499999978],[139.144348,-7.561763299999939],[139.1434935000001,-7.559573199999932],[139.1431731,-7.561503399999935],[139.1450652000001,-7.563693499999943],[139.14260850000005,-7.564893199999972],[139.14437850000002,-7.567203499999948],[139.1444090000001,-7.570753099999934],[139.14253220000012,-7.572843499999976],[139.13676440000006,-7.573133499999926],[139.13429240000005,-7.577343499999927],[139.13439930000004,-7.581013199999973],[139.13693220000005,-7.582793199999969],[139.13748150000004,-7.587663199999952],[139.13906840000004,-7.588933499999939],[139.1454466,-7.586713299999928],[139.15412890000005,-7.588233499999944],[139.15345750000006,-7.594353199999944],[139.15538010000012,-7.600143399999979],[139.15742480000006,-7.604103599999974],[139.16166670000007,-7.605433499999947],[139.16337570000007,-7.610953299999949],[139.16181930000005,-7.609993399999951],[139.1611021000001,-7.605493499999966],[139.15747050000004,-7.604543199999966],[139.1549986000001,-7.600553499999933],[139.15292340000008,-7.594253499999979],[139.1532744000001,-7.588203399999941],[139.1457213000001,-7.587163399999952],[139.13941940000007,-7.589533299999971],[139.13702380000007,-7.588293499999963],[139.1365508,-7.583453199999951],[139.13322430000005,-7.580223499999931],[139.13369740000007,-7.576743099999931],[139.13694750000002,-7.571853199999964],[139.14245590000007,-7.572033399999953],[139.14382920000003,-7.568083299999955],[139.1348875000001,-7.563033099999927],[139.13241560000006,-7.558613299999934],[139.1246489,-7.565443],[139.115753,-7.566463],[139.11283860000003,-7.569812799999966],[139.11338790000002,-7.575732699999946],[139.12222270000007,-7.580262699999935],[139.12379440000007,-7.584642899999949],[139.12145980000003,-7.5802131],[139.11277760000007,-7.576552899999967],[139.11030560000006,-7.571892699999978],[139.1091917000001,-7.592143],[139.11270130000003,-7.593282699999975],[139.10896290000005,-7.5941605],[139.11222820000012,-7.594722699999977],[139.11877430000004,-7.591172699999959],[139.12026960000003,-7.591182699999933],[139.115219,-7.594272599999954],[139.110977,-7.595362699999953],[139.10887130000003,-7.595042699999965],[139.1083678000001,-7.599989899999969],[139.10954270000002,-7.602960099999962],[139.1152647,-7.608250099999964],[139.11941510000008,-7.6160202],[139.1235808,-7.618989899999974],[139.12675460000003,-7.616670099999965],[139.13121020000006,-7.616879899999958],[139.1354216000001,-7.610140299999955],[139.14006030000007,-7.609600099999966],[139.138275,-7.6112199],[139.13557420000006,-7.61062],[139.13244610000004,-7.615479899999968],[139.12835680000012,-7.625460099999941],[139.1314238000001,-7.628429899999958],[139.12791430000004,-7.625890199999958],[139.13099660000012,-7.617750199999932],[139.12721240000008,-7.61726],[139.12301620000005,-7.619630299999926],[139.12127670000007,-7.6174202],[139.1191252000001,-7.61661],[139.11723310000002,-7.613699899999972],[139.110153,-7.620610199999931],[139.11146530000008,-7.627510099999938],[139.11070240000004,-7.633630699999969],[139.11428820000003,-7.636660099999972],[139.1155089,-7.647330299999965],[139.1164549,-7.647340299999939],[139.11656170000003,-7.642690199999947],[139.1186064000001,-7.640990199999976],[139.12104780000004,-7.641360299999974],[139.12284840000007,-7.639960299999927],[139.12570180000012,-7.64116],[139.12794480000002,-7.6387],[139.13079820000007,-7.639600299999927],[139.1277464000001,-7.639470099999926],[139.12545760000012,-7.642340199999978],[139.12272630000007,-7.64049],[139.12074260000009,-7.642129899999929],[139.1189574000001,-7.64153],[139.1168517000001,-7.64328],[139.11680590000003,-7.647990199999981],[139.11241130000008,-7.649020699999937],[139.11442550000004,-7.651920799999971],[139.1162108000001,-7.651820199999975],[139.119232,-7.655020199999967],[139.12167340000008,-7.655030199999942],[139.1246794000001,-7.659470099999965],[139.12130720000005,-7.655380199999968],[139.1189879000001,-7.65555],[139.11555470000008,-7.6524],[139.11346420000007,-7.6522708],[139.11347950000004,-7.650620499999945],[139.11134320000008,-7.649070699999982],[139.10197430000005,-7.6477108],[139.09776290000002,-7.649390699999969],[139.0958250000001,-7.651910799999939],[139.0911559000001,-7.653170599999953],[139.0934142000001,-7.664790599999947],[139.0929106000001,-7.668500399999971],[139.09361250000006,-7.670150699999965],[139.0974883,-7.671240799999964],[139.09281910000004,-7.671740499999942],[139.09295640000005,-7.669150299999956],[139.08723440000006,-7.668520399999977],[139.08554060000006,-7.665800599999955],[139.08741750000002,-7.668050799999946],[139.09225450000008,-7.668500399999971],[139.09072860000003,-7.652170599999977],[139.09597760000008,-7.650970399999949],[139.09722890000012,-7.648210499999948],[139.10226430000012,-7.646770499999946],[139.11120590000007,-7.648070799999971],[139.11413560000005,-7.646679899999981],[139.11282330000006,-7.637180299999955],[139.110977,-7.636410699999942],[139.107086,-7.637620399999946],[139.11054980000006,-7.635820399999943],[139.1086729000001,-7.630050599999947],[139.1086424,-7.632390499999929],[139.1050719000001,-7.629730699999925],[139.10432420000006,-7.633190599999978],[139.10189800000012,-7.632710399999951],[139.1040190000001,-7.632840599999952],[139.10476670000003,-7.629170399999964],[139.10858140000005,-7.631900799999926],[139.1073454000001,-7.630210399999953],[139.10974110000006,-7.629600499999981],[139.1081541000001,-7.620480499999928],[139.11604290000002,-7.613540199999932],[139.1138304000001,-7.609060299999953],[139.10647570000003,-7.601049899999964],[139.07272320000004,-7.6261506],[139.0674437,-7.632420499999967],[139.06240830000002,-7.642340699999977],[139.05838,-7.656330599999933],[139.05632,-7.687696899999935],[139.05892930000005,-7.689976699999931],[139.06340010000008,-7.690656699999977],[139.06535320000012,-7.684657099999981],[139.06848130000003,-7.682086899999945],[139.07162460000006,-7.684816799999965],[139.0746001000001,-7.684076799999957],[139.0753172000001,-7.685317],[139.07125840000003,-7.685176799999965],[139.06817610000007,-7.682857],[139.065811,-7.6853371],[139.064102,-7.691366699999946],[139.05784590000007,-7.691736699999979],[139.05792220000012,-7.689266699999962],[139.05621320000012,-7.689356799999928],[139.0546111000001,-7.696486899999968],[139.04795820000004,-7.710227],[139.03253160000008,-7.728286699999956],[139.034912,-7.732286899999963],[139.03277570000012,-7.731677],[139.0322417000001,-7.734097],[139.0319975000001,-7.731436699999961],[139.03338610000003,-7.730446799999982],[139.03202810000005,-7.729256599999928],[139.01904280000008,-7.749326699999926],[139.01455670000007,-7.765446699999927],[139.01535020000006,-7.787096499999961],[139.0224303000001,-7.811426599999947],[139.0250701000001,-7.829626599999926],[139.02394090000007,-7.8402572],[139.01853930000004,-7.852838],[139.02593980000006,-7.853648199999952],[139.02928150000002,-7.855568399999981],[139.03228750000005,-7.854898399999968],[139.0346373000001,-7.856778099999929],[139.03627,-7.854548399999942],[139.03736860000004,-7.854428299999938],[139.03759750000006,-7.856618399999945],[139.0370177000001,-7.855018099999938],[139.03564440000002,-7.855758199999968],[139.03616320000003,-7.859228099999939],[139.041458,-7.859228099999939],[139.04408250000006,-7.861608],[139.04556260000004,-7.860168399999964],[139.04727150000008,-7.860678199999938],[139.0437621000001,-7.862078199999928],[139.0413512,-7.859818399999938],[139.03546130000007,-7.859428399999956],[139.0351866000001,-7.857518199999959],[139.03120410000008,-7.855988],[139.02691640000012,-7.857438099999968],[139.02539050000007,-7.854938],[139.02374250000003,-7.855488299999934],[139.02491750000002,-7.856388099999947],[139.02339160000008,-7.855988],[139.02339160000008,-7.855328099999952],[139.0250701000001,-7.854588],[139.02651960000003,-7.855328099999952],[139.02679430000012,-7.856738099999973],[139.02877790000002,-7.856738099999973],[139.026245,-7.854238],[139.0179442000001,-7.854058299999963],[139.01007070000003,-7.862618399999974],[138.988449,-7.876108199999976],[138.96124250000003,-7.890158199999973],[138.93501270000002,-7.899798399999952],[138.92565910000008,-7.905508],[138.91709890000004,-7.913598099999945],[138.91326890000005,-7.920008199999927],[138.90901170000006,-7.931695],[138.92144760000008,-7.958266699999967],[138.92250050000007,-7.976456599999949],[138.9171904000001,-7.993935099999931],[138.90658560000008,-8.016295399999933],[138.90321340000003,-8.030435599999976],[138.90917960000002,-8.038845099999946],[138.91833480000003,-8.046535499999948],[138.92041,-8.046655599999951],[138.91880790000005,-8.047315599999934],[138.92352280000011,-8.052985199999966],[138.92237840000007,-8.05059529999994],[138.92555220000008,-8.048925399999973],[138.92346180000004,-8.04838559999996],[138.92327870000008,-8.046955099999934],[138.92680350000012,-8.046125399999937],[138.9263152000001,-8.047195399999964],[138.92375170000003,-8.046895],[138.9259032000001,-8.049165699999946],[138.9228667000001,-8.050655399999926],[138.92718490000004,-8.060435299999938],[138.9285582000001,-8.057575199999974],[138.9279021000001,-8.054645499999936],[138.9289702000001,-8.052685699999927],[138.93309010000007,-8.053035699999953],[138.93493640000008,-8.050354899999945],[138.937744,-8.049815199999955],[138.93309010000007,-8.053695699999935],[138.92980940000007,-8.052804899999956],[138.9286803000001,-8.053875],[138.92890920000002,-8.057215699999972],[138.92753590000007,-8.061275499999965],[138.92774950000012,-8.068725599999937],[138.92411790000006,-8.076835599999981],[138.91830430000005,-8.083155599999941],[138.9054106000001,-8.088165299999957],[138.89179980000006,-8.087096199999962],[138.88357530000008,-8.087996499999974],[138.876541,-8.08655639999995],[138.86213670000006,-8.08971589999993],[138.8431700000001,-8.101594],[138.83604420000006,-8.113174399999934],[138.83357230000001,-8.126234],[138.8344115000001,-8.135233899999946],[138.83700550000003,-8.142873799999961],[138.844345,-8.153254499999946],[138.84985340000003,-8.166254],[138.85557540000002,-8.166904399999964],[138.84985340000003,-8.166904399999964],[138.85548390000008,-8.184743899999944],[138.87260430000003,-8.205546399999946],[138.88098130000003,-8.2181358],[138.9000396,-8.236386299999936],[138.9042968000001,-8.245746599999961],[138.907318,-8.261136],[138.91482530000008,-8.271746599999972],[138.9226073000001,-8.277056699999946],[138.93386830000009,-8.276644699999963],[138.93572990000007,-8.275686299999961],[138.94050590000006,-8.267297699999972],[138.95043930000008,-8.258326499999953],[138.95169050000004,-8.257556],[138.94572440000002,-8.263396299999954],[138.96119680000004,-8.258446699999979],[138.96293630000002,-8.254876099999933],[138.95512380000002,-8.250936499999966],[138.9515990000001,-8.247536599999933],[138.94927970000003,-8.246875799999941],[138.94635,-8.250216499999965],[138.94331350000004,-8.250936499999966],[138.94953910000004,-8.246226299999933],[138.95263660000012,-8.247776],[138.9547881000001,-8.2501564],[138.9633788000001,-8.254516599999931],[138.9661254,-8.245326],[138.96237170000006,-8.243836399999964],[138.96582020000005,-8.245086699999945],[138.96690360000002,-8.242706299999952],[138.97044360000007,-8.239006],[138.9889372,-8.232686],[138.9933013000001,-8.228126499999973],[138.99029530000007,-8.226336499999945],[138.98872360000007,-8.223316199999942],[138.98089590000006,-8.2209663],[138.9787596000001,-8.219006499999978],[138.9764861000001,-8.213966399999947],[138.9707946000001,-8.208496099999934],[138.97044360000007,-8.204535499999963],[138.97651660000008,-8.201966299999981],[138.988571,-8.202256199999965],[138.99142440000003,-8.199076599999955],[138.99162280000007,-8.196776399999976],[138.9995268,-8.1914959],[139.00621020000006,-8.190166499999975],[139.00915510000004,-8.186566299999981],[139.01399220000008,-8.185056699999961],[139.02384930000005,-8.177415799999949],[139.02732830000002,-8.17293639999997],[139.03025800000012,-8.173126199999956],[139.04182420000006,-8.1672163],[139.04183950000004,-8.166086199999938],[139.05122360000007,-8.162706399999934],[139.05480940000007,-8.159525899999949],[139.05744920000006,-8.159416199999953],[139.0600737000001,-8.157835899999952],[139.06092820000003,-8.154935799999976],[139.06240830000002,-8.1560659],[139.0681304000001,-8.153026599999976],[139.070526,-8.150666199999932],[139.07072440000002,-8.146646499999974],[139.06713850000006,-8.14330579999995],[139.0633391,-8.145016699999928],[139.062332,-8.143766399999947],[139.06550590000006,-8.141476599999976],[139.06515490000004,-8.138485],[139.0670775000001,-8.1361155],[139.08023060000005,-8.137406299999952],[139.09159840000007,-8.13520619999997],[139.13455190000002,-8.119307499999934],[139.1683501000001,-8.110527],[139.20811450000008,-8.097207099999935],[139.223831,-8.094902399999967],[139.227768,-8.098287599999935],[139.22973620000005,-8.109567599999934],[139.23278790000006,-8.115317299999958],[139.23303210000006,-8.120767599999965],[139.23968490000004,-8.127237299999933],[139.24233990000005,-8.134827599999937],[139.2510985,-8.1432075],[139.2514189000001,-8.150836899999945],[139.27095020000002,-8.1669474],[139.27821330000006,-8.176796899999943],[139.287628,-8.179027599999927],[139.3013151,-8.179556799999943],[139.30738810000003,-8.184017199999971],[139.309265,-8.189897499999972],[139.31597880000004,-8.196706799999959],[139.3398436000001,-8.205906899999945],[139.34680160000005,-8.204446799999971],[139.3804014000001,-8.203406299999926],[139.45657330000006,-8.193515799999943],[139.48442060000002,-8.178716599999973],[139.49604780000004,-8.174333599999954],[139.5012968000001,-8.174553899999978],[139.5084379000001,-8.178457199999968],[139.53433210000003,-8.164732899999933],[139.58015420000004,-8.144198399999937],[139.5857542000001,-8.140028899999947],[139.5804594000001,-8.135766],[139.58442760000003,-8.12989609999994],[139.5955656000001,-8.129206599999975],[139.59735090000004,-8.12885659999995],[139.5970609000001,-8.126846299999954],[139.59968550000008,-8.127686499999982],[139.61035130000005,-8.125646599999925],[139.63572670000008,-8.117026099999975],[139.7061155,-8.10438629999993],[139.71360760000005,-8.097969],[139.71865820000005,-8.099805799999956],[139.77900670000008,-8.099266],[139.81845070000008,-8.102206199999955],[139.8210752000001,-8.101566299999945],[139.81797760000006,-8.100846299999944],[139.82144140000003,-8.10055639999996],[139.825485,-8.101686499999971],[139.84020970000006,-8.100786199999959],[139.85267610000005,-8.1018514],[139.85278290000008,-8.103801699999963],[139.85704010000006,-8.105661399999974],[139.86337250000008,-8.106020899999976],[139.8649289000001,-8.103951399999971],[139.86468480000008,-8.105371499999933],[139.86737030000006,-8.106971699999974],[139.8826749000001,-8.108781799999974],[139.8925931000001,-8.1068516],[139.89437840000005,-8.10792159999994],[139.9107663000001,-8.106011399999943],[139.91177340000002,-8.107431399999939],[139.91810580000003,-8.106621699999948],[139.92085240000006,-8.107691799999941],[139.923126,-8.105921699999953],[139.9267575,-8.107231099999979],[139.93305940000005,-8.104521699999964],[139.93850680000003,-8.103291499999955],[139.939758,-8.104181299999937],[139.94163490000005,-8.102116599999931],[139.95515410000007,-8.113296599999956],[139.95710730000008,-8.124616599999968],[139.95678680000003,-8.136343],[139.9597318000001,-8.147473299999945],[139.97247290000007,-8.172150599999952],[139.99381990000006,-8.200130399999978],[140.0166776000001,-8.221280099999944],[140.05555690000006,-8.255410199999972],[140.1116482000001,-8.294270499999925],[140.13092010000003,-8.305749899999967],[140.1698758000001,-8.337131499999941],[140.19488490000003,-8.348531699999967],[140.22726410000007,-8.356173499999954],[140.2290799000001,-8.36099809999996],[140.2271115000001,-8.369173],[140.22911040000008,-8.373993799999937],[140.2428738000001,-8.39129349999996],[140.26081810000005,-8.409673699999928],[140.30377160000012,-8.4471531],[140.33128320000003,-8.467493],[140.33891260000007,-8.471243799999968],[140.3461148,-8.470117499999958],[140.3554531000001,-8.474765799999943],[140.36132780000003,-8.483199099999979],[140.36489830000005,-8.493788699999925],[140.37486230000002,-8.508008899999936],[140.39002950000008,-8.523468899999955],[140.42938190000007,-8.5555887],[140.43069420000006,-8.560169199999962],[140.44232140000008,-8.5723095],[140.45538290000002,-8.582899099999963],[140.45667990000004,-8.582009299999982],[140.456451,-8.5840893],[140.46115070000008,-8.587959299999966],[140.48306230000003,-8.602048899999943],[140.48657190000006,-8.600918699999966],[140.486816,-8.6041994],[140.49186670000006,-8.607878699999958],[140.49478110000007,-8.608058899999946],[140.49520830000006,-8.609788899999955],[140.4952694000001,-8.608538599999974],[140.49693260000004,-8.609429299999931],[140.49603230000002,-8.610979],[140.49793970000007,-8.611509299999966],[140.4976497,-8.609969099999944],[140.502914,-8.615199099999927],[140.503677,-8.619718499999976],[140.5054622,-8.620669299999975],[140.50884970000004,-8.627038899999945],[140.5101314000001,-8.635128899999927],[140.51438860000007,-8.647028899999953],[140.5189663000001,-8.653928699999938],[140.51802020000002,-8.658629399999938],[140.5293117000001,-8.687599199999966],[140.57994040000005,-8.754169399999967],[140.594543,-8.780399299999942],[140.5979,-8.790578799999935],[140.60299640000005,-8.798008899999957],[140.6159053,-8.8132992],[140.644897,-8.841559399999937],[140.64874220000002,-8.843878699999948],[140.64987140000005,-8.846789299999955],[140.65176350000002,-8.8467292],[140.65409810000006,-8.849768599999948],[140.6569515000001,-8.849288899999976],[140.65545610000004,-8.8513088],[140.661346,-8.855949399999929],[140.66288710000003,-8.858868599999937],[140.68713330000003,-8.879719699999953],[140.706573,-8.890958699999942],[140.7087550000001,-8.894943199999943],[140.71224930000005,-8.895597399999929],[140.71253920000004,-8.897987299999954],[140.7221065000001,-8.908382399999937],[140.7271114,-8.909632699999975],[140.72680620000006,-8.911422699999946],[140.73144480000008,-8.9165325],[140.7453303000001,-8.929322199999945],[140.74760390000006,-8.929982199999927],[140.7483668000001,-8.932302399999969],[140.75199840000005,-8.934562599999936],[140.76124520000008,-8.944972],[140.765655,-8.948362299999928],[140.76719620000006,-8.947702399999969],[140.7669062000001,-8.949912],[140.78962660000002,-8.973642299999938],[140.80827280000005,-9.0002327],[140.81187390000002,-9.0005321],[140.81068370000003,-9.004042599999934],[140.81240790000004,-9.006422],[140.81175180000002,-9.004282],[140.81281990000002,-9.004512699999964],[140.8197322000001,-9.015812799999935],[140.83566230000008,-9.032232299999976],[140.87150520000012,-9.059842099999969],[140.892776,-9.08202259999996],[140.89312690000008,-9.085062],[140.899795,-9.089652],[140.9043421,-9.089342099999953],[140.90702770000007,-9.091722499999946],[140.91070500000012,-9.091252299999951],[140.91047620000006,-9.092612199999962],[140.91961620000006,-9.091462099999944],[140.93577520000008,-9.09393209999996],[140.93939150000006,-9.096672],[140.9623560000001,-9.102911899999981],[140.96690310000008,-9.106115299999942],[140.97752330000003,-9.107612599999982],[140.99647470000002,-9.115352599999937],[141.00001470000007,-9.118243199999938],[141.0190017000001,-9.1203627],[141.01910510000005,-8.5284791],[141.01919740000005,-8.0160562],[141.01931290000005,-7.369227499999965],[141.0194,-6.889868],[141.0000014000001,-6.889868],[140.99769590000005,-6.902643699999942],[140.98886210000012,-6.904796399999952],[140.98067020000008,-6.902288099999964],[140.97680660000003,-6.898454699999945],[140.9736391,-6.891328299999941],[140.96907410000006,-6.890750399999945],[140.9598767000001,-6.8966785],[140.95864770000003,-6.9084543],[140.95620730000007,-6.911976299999935],[140.95477290000008,-6.911856199999932],[140.95197810000002,-6.909579199999939],[140.9499316,-6.901512799999978],[140.94301870000004,-6.897299699999962],[140.9383868000001,-6.890999499999964],[140.93986510000002,-6.8868432],[140.9522366000001,-6.870656299999951],[140.95423890000006,-6.864466199999981],[140.9530334000001,-6.857645],[140.94953680000003,-6.857297699999947],[140.9452920000001,-6.870351199999959],[140.9413254000001,-6.873836299999937],[140.93837870000004,-6.874397299999941],[140.92347870000003,-6.870742199999938],[140.91593390000003,-6.873675899999967],[140.91379,-6.871706699999947],[140.9108086000001,-6.861810599999956],[140.9003530000001,-6.851234499999975],[140.895752,-6.844113299999947],[140.89633870000011,-6.840069],[140.90404610000007,-6.840887199999941],[140.90718030000005,-6.838434099999972],[140.91193520000002,-6.830290399999967],[140.91760250000004,-6.826286299999936],[140.9178647000001,-6.820261199999948],[140.91284540000004,-6.810711499999968],[140.90716080000004,-6.8063738],[140.90025140000012,-6.8079302],[140.88993840000012,-6.813595799999973],[140.8870697000001,-6.813116099999945],[140.8851624,-6.810243599999978],[140.8861084,-6.805696499999954],[140.8851013000001,-6.802704299999959],[140.8815753,-6.800150499999972],[140.87586010000007,-6.799248699999964],[140.86988830000007,-6.794802199999936],[140.8702545000001,-6.790733299999943],[140.87587380000002,-6.787271499999974],[140.87815820000003,-6.783077599999956],[140.87680190000003,-6.774678399999971],[140.8776329000001,-6.7695389],[140.8802144000001,-6.767712299999971],[140.8886414000001,-6.767162799999937],[140.89327240000011,-6.7649103],[140.89988710000011,-6.753414299999974],[140.89076790000001,-6.751305199999933],[140.88679500000012,-6.739637899999934],[140.8805695000001,-6.735088799999971],[140.86296790000006,-6.730464099999949],[140.8520813,-6.725986],[140.84567260000006,-6.720598699999925],[140.84519960000011,-6.718803399999956],[140.8522485000001,-6.709971099999962],[140.85285950000002,-6.706838599999969],[140.85166930000003,-6.6960678],[140.84487250000006,-6.682215399999961],[140.8460162,-6.680393399999957],[140.848378,-6.680031399999962],[140.86286130000008,-6.682593699999927],[140.86905150000007,-6.678337399999975],[140.869812,-6.674658199999953],[140.86288450000006,-6.669205299999931],[140.8592685000001,-6.662480099999925],[140.86100770000007,-6.658972299999959],[140.87310790000004,-6.652991799999938],[140.8570380000001,-6.647890699999948],[140.85519640000007,-6.645559099999957],[140.85497220000002,-6.641988899999944],[140.85911610000005,-6.637395899999945],[140.871727,-6.631543099999931],[140.87612810000007,-6.623987199999931],[140.87428750000004,-6.620212099999947],[140.87005640000007,-6.618439399999943],[140.85381370000005,-6.619424099999947],[140.8483331000001,-6.618179099999963],[140.42627,-6.964091599999961],[140.05781510000008,-7.266099299999951]]]]},"properties":{"shapeName":"Merauke","shapeISO":"","shapeID":"22746128B31823534448189","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[105.75299090000004,-4.147124899999937],[105.74687290000008,-4.149639299999933],[105.74145320000008,-4.146489899999949],[105.73451170000004,-4.137903],[105.72941690000005,-4.134535599999936],[105.70819090000003,-4.1431483],[105.70201290000006,-4.139999299999943],[105.69742240000005,-4.129717399999947],[105.697969,-4.125727],[105.69922630000008,-4.122993899999926],[105.70901070000008,-4.114029399999936],[105.71103320000009,-4.108348799999931],[105.70859150000007,-4.106272199999978],[105.70024840000008,-4.104430399999956],[105.68984830000005,-4.1041131],[105.68713760000009,-4.101287199999945],[105.68386630000003,-4.096045599999968],[105.68423470000005,-4.079466],[105.67728660000006,-4.078887599999973],[105.67502830000006,-4.081241499999976],[105.67151530000007,-4.090490599999953],[105.66312380000005,-4.095528699999932],[105.65865420000006,-4.094308599999977],[105.65431830000006,-4.091048799999953],[105.65097350000008,-4.086229299999957],[105.64704360000007,-4.0734848],[105.64806960000004,-4.066578499999935],[105.66133550000006,-4.061400699999979],[105.66444720000004,-4.058134799999948],[105.664851,-4.055143],[105.66051240000007,-4.048211899999956],[105.65184710000005,-4.049170699999934],[105.64440230000008,-4.052304099999958],[105.64020430000005,-4.051899499999934],[105.63099110000007,-4.044836099999941],[105.62543840000006,-4.043480699999975],[105.62251310000005,-4.045769099999973],[105.62192780000004,-4.056537],[105.62044080000004,-4.059801499999935],[105.61827540000007,-4.0612989],[105.61096360000005,-4.061712399999976],[105.60676340000003,-4.058316199999979],[105.60480010000003,-4.048143299999936],[105.61287710000005,-4.02774],[105.62878140000004,-4.010322499999972],[105.63070760000005,-4.005815699999971],[105.61504630000007,-3.982704399999932],[105.61224880000009,-3.969733699999949],[105.608646,-3.966602599999931],[105.59303430000006,-3.959410699999978],[105.59012390000004,-3.953754],[105.59076720000007,-3.948847199999932],[105.61176620000003,-3.945141499999977],[105.61137870000005,-3.940571899999952],[105.59968090000007,-3.926862799999981],[105.59585150000004,-3.927378399999952],[105.58692360000003,-3.939180499999964],[105.58028450000006,-3.938159399999961],[105.56297080000007,-3.928883599999949],[105.56229540000004,-3.926161499999978],[105.57354860000004,-3.901269599999978],[105.57226930000007,-3.899558899999931],[105.55684,-3.892469399999925],[105.54831220000005,-3.881759699999975],[105.54077730000006,-3.887109199999941],[105.53812070000004,-3.893346199999939],[105.53324570000007,-3.897803099999976],[105.52881080000009,-3.896915099999944],[105.52306850000008,-3.892595699999958],[105.51359840000003,-3.877837],[105.51232750000008,-3.872548399999971],[105.52634820000009,-3.848442599999942],[105.52593830000006,-3.843236],[105.52413440000004,-3.840489299999945],[105.52100010000004,-3.839269499999943],[105.51315780000004,-3.842009099999927],[105.50534630000004,-3.842386499999975],[105.49240320000007,-3.840858199999957],[105.48703270000004,-3.835938699999929],[105.483384,-3.824295699999936],[105.48020460000004,-3.821865099999968],[105.46593550000006,-3.828095499999961],[105.43676250000004,-3.828087499999981],[105.43235050000004,-3.826393399999972],[105.43005470000008,-3.823441699999933],[105.43005470000008,-3.819943299999977],[105.43349840000008,-3.810104199999955],[105.43617680000006,-3.787255499999958],[105.43273310000006,-3.783757199999968],[105.42099670000005,-3.778948299999968],[105.41278760000006,-3.777354399999979],[105.39023150000008,-3.779490899999928],[105.38405030000007,-3.782011299999965],[105.36589150000003,-3.798135299999956],[105.35873630000003,-3.797327499999938],[105.35475810000008,-3.792766],[105.35152370000009,-3.783088199999952],[105.35273820000003,-3.756176399999958],[105.35117630000008,-3.750134599999967],[105.342347,-3.730792],[105.33621060000007,-3.724704299999928],[105.333233,-3.723822599999949],[105.324213,-3.7267952],[105.32049750000004,-3.728927599999963],[105.31874660000005,-3.731933599999934],[105.312624,-3.7525959],[105.30797770000004,-3.7591],[105.30896190000004,-3.775552699999935],[105.304533,-3.791624099999979],[105.30238680000008,-3.794151799999952],[105.29717330000005,-3.796302399999945],[105.288565,-3.793663199999969],[105.28370860000007,-3.798128099999929],[105.28343760000007,-3.815533699999946],[105.28157620000007,-3.827373499999965],[105.28316310000008,-3.831472399999939],[105.292181,-3.838468599999942],[105.29245570000006,-3.845958699999926],[105.29147150000006,-3.849401499999942],[105.28496630000006,-3.857610099999931],[105.27551080000006,-3.878809],[105.26413920000005,-3.884767499999953],[105.25360090000004,-3.901567],[105.24373760000009,-3.906243399999937],[105.24061750000004,-3.906200799999965],[105.23591320000008,-3.902805299999955],[105.23410440000004,-3.893372499999941],[105.22975730000007,-3.889522599999964],[105.22609520000009,-3.889741899999933],[105.21734810000004,-3.893842699999936],[105.20532420000006,-3.890562099999954],[105.19272350000006,-3.898860399999933],[105.17930410000008,-3.904884299999935],[105.16984950000005,-3.916681099999948],[105.17233610000005,-3.926397399999928],[105.16495670000006,-3.937620199999969],[105.15637310000005,-3.938657299999932],[105.15372060000004,-3.936216299999955],[105.15040440000007,-3.929336299999932],[105.13935550000008,-3.934221299999933],[105.13519730000007,-3.944144299999948],[105.13692720000006,-3.951090299999976],[105.14289470000006,-3.953752699999939],[105.142235,-3.972619],[105.13403980000004,-3.977932599999974],[105.13560720000004,-3.987491199999965],[105.12721070000003,-4.000365899999963],[105.12051090000006,-3.997183899999925],[105.11615960000006,-3.997704099999964],[105.113719,-4.0002504],[105.11306670000005,-4.007248599999969],[105.10940370000009,-4.007793199999981],[105.10568570000004,-4.018085499999927],[105.105168,-4.024637699999971],[105.10887040000006,-4.029888599999936],[105.11285490000006,-4.027712399999928],[105.12100280000004,-4.034546299999931],[105.12257520000009,-4.039208799999926],[105.11992420000007,-4.048309299999971],[105.11575870000007,-4.051025399999958],[105.11148960000008,-4.0504734],[105.10925360000005,-4.047275399999933],[105.10312570000008,-4.044982299999958],[105.09846130000005,-4.044669599999963],[105.09517640000007,-4.046541299999944],[105.09097010000005,-4.052974199999937],[105.09119230000005,-4.064071899999931],[105.08591860000007,-4.065314699999931],[105.08339890000008,-4.068621699999937],[105.08235350000007,-4.070866299999977],[105.08352240000005,-4.072678799999949],[105.07943770000008,-4.078922099999943],[105.07877520000005,-4.083113799999978],[105.07738780000005,-4.084005599999955],[105.07811130000005,-4.085377599999958],[105.06207770000009,-4.098214199999973],[105.06379780000009,-4.102612199999953],[105.06212840000006,-4.106913199999951],[105.06391080000009,-4.109052799999972],[105.06338080000006,-4.112384399999939],[105.06475090000004,-4.113579],[105.06564520000006,-4.120248699999934],[105.06251150000008,-4.126566499999967],[105.05821470000006,-4.128238199999942],[105.05319460000004,-4.133279499999958],[105.04996310000007,-4.141271299999971],[105.06236690000009,-4.150847299999953],[105.06081930000005,-4.151713799999925],[105.06417350000004,-4.1571941],[105.06065670000004,-4.159545499999979],[105.06867080000006,-4.166013299999975],[105.073393,-4.174994799999979],[105.06419670000008,-4.205905499999972],[105.06621770000004,-4.207279599999936],[105.06687820000008,-4.216221699999949],[105.06885760000006,-4.217877499999929],[105.07842420000009,-4.217876599999954],[105.08047520000008,-4.219641299999978],[105.08576960000005,-4.219968799999947],[105.085769,-4.214473899999973],[105.08757250000008,-4.214800899999943],[105.08751980000005,-4.208978899999977],[105.09583840000005,-4.205681],[105.11094370000006,-4.203700899999944],[105.11072530000007,-4.207657199999971],[105.10766040000004,-4.207675599999959],[105.10766260000008,-4.223922399999935],[105.13076980000005,-4.210997599999928],[105.134682,-4.219563499999936],[105.13918630000006,-4.223860099999968],[105.14410860000004,-4.222497199999964],[105.14239460000005,-4.218220899999949],[105.14400640000008,-4.201287199999967],[105.16185440000004,-4.197491899999932],[105.17335080000004,-4.190274399999964],[105.180177,-4.187567199999933],[105.18640440000007,-4.187367499999937],[105.18700610000008,-4.184970199999952],[105.19179270000006,-4.181954899999937],[105.19556380000006,-4.175640899999962],[105.20418560000007,-4.170047099999977],[105.21011420000008,-4.170406299999968],[105.22690420000004,-4.183418699999947],[105.23735980000004,-4.192254899999966],[105.24754910000007,-4.190358],[105.27790270000008,-4.189336799999978],[105.31209140000004,-4.159077499999967],[105.31820410000006,-4.160244],[105.35676950000004,-4.160958099999959],[105.36494750000008,-4.162521499999968],[105.36591520000007,-4.129655099999979],[105.38731330000007,-4.131438199999934],[105.39408990000004,-4.121620199999938],[105.39554570000007,-4.121247],[105.40043390000005,-4.125141799999938],[105.40207970000006,-4.124676099999931],[105.402081,-4.119762199999968],[105.42532090000009,-4.1191341],[105.42568850000004,-4.140479399999947],[105.42418720000006,-4.143732],[105.42382690000005,-4.161488299999974],[105.45909340000009,-4.162448299999937],[105.45991070000008,-4.1610103],[105.46773380000008,-4.159916499999952],[105.46828620000008,-4.134724199999937],[105.50454190000005,-4.131096699999944],[105.50447090000006,-4.161374399999943],[105.52675570000008,-4.161114299999952],[105.53168220000003,-4.165574399999969],[105.54121430000004,-4.167913799999951],[105.54458730000005,-4.1704797],[105.54460780000005,-4.168387399999972],[105.57363010000006,-4.182973799999957],[105.57531510000007,-4.185507499999972],[105.58682,-4.189723899999933],[105.60169060000004,-4.192810799999961],[105.60674520000003,-4.199285],[105.60695770000007,-4.218901499999959],[105.62219130000005,-4.220397099999957],[105.62527320000004,-4.215324799999962],[105.653877,-4.217319199999963],[105.654991,-4.195881899999961],[105.68279370000005,-4.192803199999958],[105.68270550000005,-4.191024],[105.71991960000008,-4.187984099999937],[105.72140730000007,-4.199760799999979],[105.75759480000005,-4.194049399999926],[105.754715,-4.160936599999957],[105.75161280000003,-4.154489299999966],[105.75299090000004,-4.147124899999937]]]},"properties":{"shapeName":"Mesuji","shapeISO":"","shapeID":"22746128B38650554261419","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[137.50706480000008,-5.237613199999942],[137.50804130000006,-5.2324033],[137.50706480000008,-5.230873599999939],[137.50492850000012,-5.238163499999928],[137.5020446000001,-5.2368236],[137.50529480000012,-5.231793399999958],[137.5005645000001,-5.235593299999948],[137.50119010000003,-5.2385335],[137.50474540000005,-5.239153399999964],[137.50706480000008,-5.237613199999942]]],[[[137.5198974000001,-5.214518099999964],[137.51695250000012,-5.212678],[137.51756280000006,-5.206668399999955],[137.51612850000004,-5.203978099999972],[137.514801,-5.206488099999945],[137.51528930000006,-5.213038],[137.52246090000006,-5.215368299999966],[137.52197260000003,-5.2100983],[137.5210571,-5.214448],[137.5198974000001,-5.214518099999964]]],[[[137.51278680000007,-5.176818399999945],[137.50979610000002,-5.170758199999966],[137.50382990000003,-5.178228399999966],[137.49711600000012,-5.183198],[137.4968414000001,-5.186808099999951],[137.502304,-5.192638399999964],[137.5064086000001,-5.194348299999945],[137.50592040000004,-5.195388299999934],[137.5084839000001,-5.197718099999975],[137.50978080000004,-5.192758099999935],[137.50805660000003,-5.177618],[137.5122222000001,-5.1788483],[137.51596060000008,-5.176147899999933],[137.51278680000007,-5.176818399999945]]],[[[137.18304440000009,-5.028467199999966],[137.18029780000006,-5.027262699999937],[137.17964170000005,-5.031457899999964],[137.18453980000004,-5.037978599999974],[137.19651790000012,-5.044894199999931],[137.19291680000003,-5.040906899999925],[137.190216,-5.032600399999978],[137.18563840000002,-5.028779],[137.18304440000009,-5.028467199999966]]],[[[136.82929990000002,-4.920395799999937],[136.82788080000012,-4.918295399999977],[136.8311615,-4.9167318],[136.82792660000007,-4.913219499999968],[136.82754510000007,-4.916145799999981],[136.82583620000003,-4.917000299999927],[136.82778930000006,-4.920591299999955],[136.8318329000001,-4.9223008],[136.83604430000003,-4.919223299999942],[136.8338470000001,-4.917024599999934],[136.83154290000004,-4.920004799999958],[136.82929990000002,-4.920395799999937]]],[[[136.88142390000007,-4.914435899999944],[136.88288880000005,-4.912579499999936],[136.8823089000001,-4.910283099999958],[136.88073730000008,-4.911700199999927],[136.88142390000007,-4.914435899999944]]],[[[136.8045807000001,-4.899090799999954],[136.80329890000007,-4.899889499999972],[136.80450440000004,-4.902935],[136.816452,-4.910576299999946],[136.82064820000005,-4.912139899999943],[136.82344050000006,-4.910918199999969],[136.8045807000001,-4.899090799999954]]],[[[136.7949982,-4.891891499999929],[136.7938385000001,-4.890154799999948],[136.79190060000008,-4.890089499999931],[136.79216,-4.891846199999975],[136.78994750000004,-4.894887899999958],[136.79069520000007,-4.896874899999943],[136.798294,-4.900898],[136.8029785000001,-4.898285899999962],[136.8023376000001,-4.896214499999928],[136.79721070000005,-4.894593199999974],[136.7949982,-4.891891499999929]]],[[[136.78894040000012,-4.890254],[136.78742980000004,-4.887252299999943],[136.78585810000004,-4.887837899999965],[136.78894040000012,-4.890254]]],[[[136.9196319,-4.870594],[136.91683960000012,-4.871733199999937],[136.9183044,-4.871400799999947],[136.9169769,-4.877905399999975],[136.91773980000005,-4.875911199999962],[136.91958610000006,-4.8758163],[136.9196319,-4.870594]]],[[[136.92053220000003,-4.862857299999973],[136.921524,-4.859239099999968],[136.918869,-4.8614831],[136.92053220000003,-4.862857299999973]]],[[[136.92521670000008,-4.8702607],[136.9276886,-4.868268],[136.9255829000001,-4.858902899999975],[136.92303460000005,-4.865181],[136.92382810000004,-4.8697863],[136.92521670000008,-4.8702607]]],[[[136.69929500000012,-4.855539799999974],[136.6894684,-4.854782599999965],[136.69813540000007,-4.856820099999936],[136.70518490000006,-4.855714299999931],[136.69929500000012,-4.855539799999974]]],[[[136.6807861000001,-4.8486834],[136.68307490000007,-4.846859],[136.67974850000007,-4.847600899999975],[136.6807861000001,-4.8486834]]],[[[136.3015289000001,-4.667286899999965],[136.29812620000007,-4.671280899999942],[136.29882810000004,-4.673437599999943],[136.30174250000005,-4.6722245],[136.30273440000008,-4.669365899999946],[136.3015289000001,-4.667286899999965]]],[[[137.57746940000004,-4.652085199999931],[137.5686141000001,-4.615188199999977],[137.5789453000001,-4.584194699999955],[137.5966558,-4.572387699999979],[137.6143664000001,-4.548773599999947],[137.62764930000003,-4.522207799999933],[137.64978750000012,-4.491214399999933],[137.66454620000002,-4.473503799999946],[137.66802130000008,-4.433602099999973],[137.67836230000012,-4.172312399999953],[137.48666030000004,-4.163390399999969],[137.4501894000001,-4.165103399999964],[137.3205127000001,-4.161008399999957],[137.29138060000002,-4.031994599999962],[137.20398490000002,-4.023675399999945],[137.12449880000008,-4.020681899999943],[136.97192530000007,-4.125426199999936],[136.82409990000008,-4.138229899999942],[136.730657,-4.126525099999981],[136.7263256000001,-4.146377799999925],[136.703046,-4.189445],[136.6705982000001,-4.217615599999931],[136.6217851,-4.217615599999931],[136.58222970000008,-4.212566],[136.5451991000001,-4.213407599999925],[136.50143570000012,-4.2117244],[136.48904070000003,-4.212820499999964],[136.48984550000011,-4.2174233],[136.49235670000007,-4.217983799999956],[136.49453180000012,-4.221699599999965],[136.5000000000001,-4.224633799999935],[136.50602590000005,-4.233148],[136.5078529000001,-4.254328899999962],[136.51421070000004,-4.263437899999929],[136.51705390000006,-4.265096899999946],[136.51788510000006,-4.267771099999948],[136.5240053000001,-4.271313],[136.5240510000001,-4.278068],[136.52633330000003,-4.283238899999958],[136.52524590000007,-4.2874945],[136.530612,-4.292262299999948],[136.535563,-4.291714599999978],[136.5366706000001,-4.293166499999927],[136.5359122000001,-4.296002699999974],[136.53043280000009,-4.298590099999956],[136.5304397000001,-4.304405799999927],[136.5261726000001,-4.305884299999946],[136.523349,-4.3097473],[136.51779870000007,-4.306486],[136.51599470000008,-4.310455],[136.50970070000005,-4.309807899999953],[136.504454,-4.313623599999971],[136.4965076000001,-4.313970099999949],[136.4907121000001,-4.312571899999966],[136.488645,-4.313106799999957],[136.4863034000001,-4.316878699999961],[136.4749273000001,-4.315188899999953],[136.4708323000001,-4.316339399999947],[136.4649505000001,-4.313838199999964],[136.4644446000001,-4.310332799999969],[136.46282230000008,-4.309460799999954],[136.45877540000004,-4.315442699999949],[136.45301330000007,-4.311285399999974],[136.44623480000007,-4.308947199999977],[136.4444486000001,-4.310229899999968],[136.44334960000003,-4.314101599999958],[136.42764060000002,-4.319179],[136.4251925000001,-4.315262],[136.42639320000012,-4.308251299999938],[136.42547460000003,-4.301854499999934],[136.42747010000005,-4.298212699999965],[136.4250383000001,-4.293698499999948],[136.40976220000005,-4.296872199999939],[136.4062279000001,-4.296119399999952],[136.39688130000002,-4.299568099999931],[136.39224260000003,-4.299662799999965],[136.38418490000004,-4.295108599999935],[136.3799395000001,-4.289341299999933],[136.365731,-4.296163399999955],[136.34219280000002,-4.296377599999971],[136.33892360000004,-4.293625],[136.33124320000002,-4.273639699999933],[136.32857750000005,-4.272092699999973],[136.32350730000007,-4.271067099999925],[136.30795970000008,-4.271783399999947],[136.29396370000006,-4.264299599999958],[136.27824160000011,-4.263464],[136.26826930000004,-4.259084099999939],[136.26543920000006,-4.262019699999939],[136.26554550000003,-4.274432799999943],[136.26367190000008,-4.284435499999972],[136.25380810000001,-4.294106599999964],[136.24908570000002,-4.295752199999924],[136.2417756000001,-4.2909368],[136.2293946000001,-4.274019299999964],[136.21692120000012,-4.263436],[136.2062608000001,-4.258452899999952],[136.1861345000001,-4.242881],[136.174359,-4.238761099999977],[136.15614520000008,-4.237667899999963],[136.149373,-4.238717699999938],[136.13975690000007,-4.242438899999968],[136.12594330000002,-4.254614499999946],[136.11890280000011,-4.257469599999979],[136.09455780000008,-4.254283699999974],[136.0817277000001,-4.262789],[136.0754535000001,-4.262297699999976],[136.07324140000003,-4.2634621],[136.0692179,-4.271695],[136.0708178000001,-4.276095099999964],[136.05265570000006,-4.265097099999934],[136.053304,-4.260379499999942],[136.04960990000006,-4.258785499999931],[136.04472450000003,-4.260544599999946],[136.03634140000008,-4.259008],[136.0351511,-4.262139099999956],[136.03206770000008,-4.262953899999957],[136.01547950000008,-4.259118499999943],[136.01394930000004,-4.259427],[136.0129832,-4.261847699999976],[136.0109533000001,-4.2619587],[136.0065171000001,-4.2570191],[135.99948510000002,-4.254135099999928],[135.99397910000005,-4.254485399999965],[135.98984560000008,-4.252383399999928],[135.9866681000001,-4.255955],[135.98445560000005,-4.256031199999939],[135.9710030000001,-4.241937299999961],[135.96324390000007,-4.231197499999951],[135.9572260000001,-4.227928499999962],[135.9493205000001,-4.2265592],[135.93205250000005,-4.226752599999941],[135.91737510000007,-4.227794099999926],[135.90457830000003,-4.231429099999957],[135.888937,-4.226878899999974],[135.86050180000007,-4.228807699999948],[135.8135191,-4.225560299999927],[135.79934050000008,-4.222902399999953],[135.79573010000001,-4.220923099999936],[135.78609560000007,-4.208948899999939],[135.7824859000001,-4.207573099999934],[135.7750979000001,-4.208097799999962],[135.75209580000012,-4.214223],[135.74599520000004,-4.213453],[135.73920480000004,-4.2101832],[135.7065510000001,-4.203143699999941],[135.6917634,-4.191431299999977],[135.68686550000007,-4.1904872],[135.67715910000004,-4.192478699999981],[135.67124,-4.203002499999968],[135.648836,-4.216060099999936],[135.61782230000006,-4.218930599999965],[135.61120470000003,-4.216435499999932],[135.59633340000005,-4.206445599999938],[135.58645410000008,-4.207918799999959],[135.55974560000004,-4.207754],[135.5249460000001,-4.203036099999963],[135.4959050000001,-4.201503199999934],[135.45131660000004,-4.191679599999929],[135.4412648000001,-4.192461299999934],[135.42239670000004,-4.176477099999943],[135.3982466000001,-4.160797199999934],[135.3644809000001,-4.157795799999974],[135.35642870000004,-4.169175499999938],[135.3455202,-4.175474599999973],[135.33546910000007,-4.177893199999971],[135.3256715000001,-4.170223499999963],[135.29851830000007,-4.160232399999927],[135.29847560000007,-4.155976199999941],[135.065929,-4.149144899999953],[135.06314010000006,-4.144496699999934],[135.04729940000004,-4.045284599999945],[135.002106,-4.105765],[134.979447,-4.130203],[134.923175,-4.183060199999943],[134.889938,-4.221521],[134.87833280000007,-4.240780099999938],[134.8702538000001,-4.251240399999972],[134.88565060000008,-4.251820099999975],[134.89735410000003,-4.256980399999975],[134.9042664000001,-4.26335],[134.90710450000006,-4.263610399999948],[134.9116821,-4.266630199999952],[134.92565920000004,-4.280801799999949],[134.93258670000012,-4.291221099999973],[134.93199160000006,-4.2962246],[134.92829890000007,-4.2983904],[134.93016050000006,-4.303200199999935],[134.9387207000001,-4.311630299999933],[134.95518490000006,-4.32305],[134.96252440000012,-4.327009699999962],[134.9817657000001,-4.333049799999969],[134.9976044000001,-4.341109699999947],[135.011734,-4.350369899999976],[135.01837160000002,-4.347709699999939],[135.01504520000003,-4.343699899999933],[135.01474,-4.341139799999951],[135.0180359000001,-4.344009899999946],[135.02200320000009,-4.344659799999931],[135.02137760000005,-4.354069699999968],[135.0331116000001,-4.362629899999945],[135.0368347000001,-4.367169899999965],[135.0369415,-4.371759899999972],[135.0405273,-4.375539799999956],[135.0552216000001,-4.377850099999932],[135.05857850000007,-4.376837699999953],[135.0594635000001,-4.373089799999946],[135.06455990000006,-4.373679599999946],[135.06578060000004,-4.376249799999925],[135.06996160000006,-4.376879699999961],[135.07278440000005,-4.387199899999928],[135.07147220000002,-4.389219799999978],[135.07003780000002,-4.386019699999963],[135.06738280000002,-4.385049799999933],[135.06895450000002,-4.382519699999932],[135.06802370000003,-4.381769599999927],[135.06471250000004,-4.384279699999979],[135.0600128000001,-4.384039899999948],[135.06271360000005,-4.387350099999935],[135.0847778000001,-4.4000697],[135.08560180000006,-4.399669599999925],[135.07910160000006,-4.395679899999948],[135.09094240000002,-4.402440099999978],[135.09448240000006,-4.401750099999958],[135.09243770000012,-4.40308],[135.08795170000008,-4.402080099999978],[135.09701540000003,-4.40872],[135.11195370000007,-4.408404799999971],[135.12875370000006,-4.421330399999931],[135.13731380000002,-4.423123399999952],[135.137619,-4.425167099999953],[135.1889801000001,-4.453549399999929],[135.19880680000006,-4.463219199999969],[135.20346070000005,-4.462349399999937],[135.20320130000005,-4.458159399999943],[135.20420840000008,-4.457859499999927],[135.20663450000006,-4.460279499999956],[135.20672610000008,-4.462529199999949],[135.20495610000012,-4.4643693],[135.20747380000012,-4.465709199999935],[135.2355652000001,-4.460389099999929],[135.29023740000002,-4.4447484],[135.32617190000008,-4.442278899999963],[135.338562,-4.445018799999957],[135.3429565,-4.442198299999973],[135.34649660000002,-4.437235299999941],[135.35598750000008,-4.439358199999958],[135.38301090000004,-4.436118099999931],[135.4053345000001,-4.435958399999947],[135.406723,-4.433479299999931],[135.40913390000003,-4.432987199999957],[135.41581730000007,-4.436248299999932],[135.4424438000001,-4.436908199999948],[135.5059814000001,-4.445218099999977],[135.5712585000001,-4.460807799999941],[135.5839691000001,-4.464777499999968],[135.59089660000006,-4.470857599999931],[135.59552,-4.472507499999949],[135.62834170000008,-4.4763875],[135.62931820000006,-4.475367499999948],[135.63479610000002,-4.478097399999967],[135.6624756000001,-4.481817699999965],[135.65994260000002,-4.480787799999973],[135.66032410000003,-4.4780779],[135.660614,-4.480147799999941],[135.66311650000011,-4.480357599999934],[135.664566,-4.482417599999962],[135.700531,-4.489307899999972],[135.7108307000001,-4.495677499999942],[135.7122803000001,-4.493827799999963],[135.7178192,-4.493641399999944],[135.71846010000002,-4.497317799999962],[135.737793,-4.495177299999966],[135.74673460000008,-4.487877399999945],[135.74925230000008,-4.487986099999944],[135.75013730000012,-4.489717],[135.75419620000002,-4.489727],[135.78135680000003,-4.487047199999949],[135.789032,-4.483954399999959],[135.7954559000001,-4.485167],[135.8432007,-4.483739899999932],[135.9047852000001,-4.486949],[135.92362980000007,-4.491376899999977],[135.94802860000004,-4.505936599999927],[135.95404050000002,-4.515196799999956],[135.9588318000001,-4.527066699999978],[135.96151730000008,-4.529406499999936],[135.96754450000003,-4.530026899999939],[135.96521,-4.527560199999925],[135.9663849000001,-4.526460199999974],[135.97122190000005,-4.528270199999952],[135.9742126000001,-4.532420599999966],[135.98243710000008,-4.537094099999933],[135.9872894,-4.545086799999979],[136.013092,-4.5571165],[136.0258331000001,-4.566476299999977],[136.03733820000002,-4.578094],[136.04521180000006,-4.579605599999979],[136.05172730000004,-4.586357599999928],[136.05940250000003,-4.589112799999953],[136.06539920000012,-4.587832],[136.07026670000005,-4.588423299999931],[136.08265690000007,-4.596077899999955],[136.09356690000004,-4.599508299999968],[136.09596250000004,-4.606317],[136.10031130000004,-4.612138699999946],[136.11141970000006,-4.621286899999973],[136.114624,-4.621494799999937],[136.120285,-4.618979],[136.12910460000012,-4.620640299999934],[136.1332245000001,-4.6226549],[136.14170840000008,-4.6318383],[136.15800480000007,-4.632929799999943],[136.1580963,-4.633969299999933],[136.1751709,-4.638855499999977],[136.19090270000004,-4.645196899999974],[136.2006225,-4.651589899999976],[136.20834350000007,-4.658970799999963],[136.2085876000001,-4.654969199999925],[136.2105560000001,-4.6528287],[136.2128143000001,-4.653044699999953],[136.21343990000003,-4.650757799999951],[136.22158810000008,-4.651173599999936],[136.22756960000004,-4.653802399999961],[136.22889710000004,-4.660529599999961],[136.23149110000008,-4.662400699999978],[136.253891,-4.6645837],[136.2543793000001,-4.6634483],[136.25297550000005,-4.6625547],[136.2575531000001,-4.6625547],[136.26028440000005,-4.665259799999944],[136.27021790000003,-4.6657271],[136.27621460000012,-4.668170399999951],[136.28541560000008,-4.667635899999937],[136.29493710000008,-4.673679799999945],[136.30494690000012,-4.661777499999971],[136.31114190000005,-4.658805399999949],[136.32147210000005,-4.663605199999949],[136.32368470000006,-4.666247399999975],[136.33786010000006,-4.668949599999962],[136.3543548,-4.674446099999955],[136.39031980000004,-4.694003099999975],[136.39627070000006,-4.700864299999978],[136.39865110000005,-4.701955799999951],[136.40063480000003,-4.700751299999979],[136.40341180000007,-4.7013893],[136.4110565000001,-4.705800499999953],[136.4223022000001,-4.719007],[136.4270782000001,-4.721629599999972],[136.4369964000001,-4.7316389],[136.43969720000007,-4.732963099999949],[136.44429020000007,-4.732331299999942],[136.44396970000003,-4.739248299999929],[136.4482422000001,-4.739854799999932],[136.45166010000003,-4.735268599999927],[136.4577637000001,-4.7347202],[136.4631958000001,-4.7364497],[136.46501160000003,-4.739660699999945],[136.47105410000006,-4.741599099999974],[136.4820099000001,-4.742679099999975],[136.487381,-4.739092299999925],[136.48759460000008,-4.744232199999942],[136.496048,-4.747855699999946],[136.4959411000001,-4.751023299999929],[136.51202390000003,-4.762398699999949],[136.51806640000007,-4.770916],[136.52166750000004,-4.771839599999964],[136.52856440000005,-4.770476799999926],[136.53427120000003,-4.772749399999952],[136.53617860000008,-4.77672],[136.5323486000001,-4.782293299999935],[136.5406647000001,-4.787907099999927],[136.54599,-4.790360499999963],[136.55024720000006,-4.788579499999969],[136.56352230000005,-4.791732299999978],[136.5688934000001,-4.798348899999951],[136.59503170000005,-4.809773],[136.59806820000006,-4.809540299999981],[136.63302610000005,-4.826757399999963],[136.6430511000001,-4.833177599999942],[136.65530390000004,-4.834553699999958],[136.66667170000005,-4.838709799999947],[136.6735992,-4.842160699999965],[136.67803950000007,-4.846568599999955],[136.68962090000002,-4.845071799999971],[136.6911163000001,-4.842285599999968],[136.69610590000002,-4.840788799999928],[136.70469660000003,-4.849520699999971],[136.70590210000012,-4.8478994],[136.7088165,-4.8513088],[136.72007750000012,-4.856007599999941],[136.7269592,-4.863451],[136.734848,-4.869355699999971],[136.74224850000007,-4.872141799999952],[136.75195310000004,-4.872848499999975],[136.75382990000003,-4.869647],[136.7542724000001,-4.863764299999957],[136.76237490000005,-4.861228499999925],[136.76922600000012,-4.862905],[136.7724151000001,-4.866694399999972],[136.77819820000002,-4.869230699999946],[136.78523250000012,-4.863548299999934],[136.7883911,-4.864509099999964],[136.7918548,-4.867729699999927],[136.79315180000003,-4.876494899999955],[136.78955080000003,-4.882910699999968],[136.79020690000004,-4.887942299999963],[136.7933349000001,-4.888540299999931],[136.7977142000001,-4.893806],[136.805664,-4.896591699999931],[136.82019040000012,-4.906488399999944],[136.82820130000005,-4.909274099999948],[136.82740780000006,-4.911228699999981],[136.83032220000007,-4.913432599999965],[136.8342285000001,-4.912060299999951],[136.8358459000001,-4.909482499999967],[136.8342285000001,-4.908318],[136.8371734000001,-4.908484499999929],[136.8374328000001,-4.906862699999976],[136.83883660000004,-4.906779299999926],[136.83813470000007,-4.905656799999974],[136.84434510000006,-4.906820799999934],[136.8472137000001,-4.90416],[136.8522491000001,-4.902371899999935],[136.8611297000001,-4.900916099999961],[136.86265560000004,-4.898263899999961],[136.8679962000001,-4.899294899999973],[136.87626640000008,-4.890145799999971],[136.88385010000002,-4.890021799999943],[136.8916931000001,-4.8867993],[136.89956660000007,-4.880873699999938],[136.9053497000001,-4.8742309],[136.90924070000005,-4.872939599999938],[136.91085810000004,-4.873994799999934],[136.91412350000007,-4.871638299999972],[136.91702270000008,-4.868505],[136.917923,-4.859335399999964],[136.92332460000011,-4.856003799999939],[136.92529290000004,-4.856446699999935],[136.9300995000001,-4.8679457],[136.92951960000005,-4.876619299999959],[136.92398070000002,-4.892009199999961],[136.92471310000008,-4.896427599999924],[136.93351740000003,-4.904380299999957],[136.9464111000001,-4.91015],[136.96395870000003,-4.923403699999938],[136.96713250000005,-4.923196299999972],[136.9671783000001,-4.928861599999948],[136.97616570000002,-4.938992499999927],[136.9795074000001,-4.938300599999934],[136.9843750000001,-4.932188499999938],[136.994049,-4.935618899999952],[137.0046234,-4.936866299999963],[137.0136261,-4.932707799999946],[137.02487180000003,-4.923094799999944],[137.03399660000002,-4.921312299999954],[137.04231260000006,-4.924116599999934],[137.04992670000001,-4.919973399999947],[137.05993650000005,-4.918864699999972],[137.062622,-4.921822499999962],[137.06503290000012,-4.9289913],[137.0581512000001,-4.936766099999943],[137.05781550000006,-4.939173199999971],[137.06777950000003,-4.950660699999958],[137.07673640000007,-4.957210499999974],[137.083023,-4.966011],[137.09187310000004,-4.9736595],[137.10824580000008,-4.974153499999943],[137.11239620000003,-4.967263199999934],[137.111557,-4.962583099999961],[137.11566160000007,-4.960824499999944],[137.122818,-4.961997499999939],[137.12760920000005,-4.968111499999964],[137.15087890000007,-4.974464399999931],[137.15582270000004,-4.983417499999973],[137.17062380000004,-4.996669299999951],[137.17420960000004,-5.004787],[137.179779,-5.007698499999947],[137.18498230000012,-5.007978],[137.18504330000007,-5.003163299999926],[137.1865997000001,-5.001483899999926],[137.1848755000001,-4.998964299999955],[137.1996765,-4.996893399999976],[137.203537,-4.9933105],[137.21051020000004,-4.981975099999943],[137.21543880000002,-4.980827799999929],[137.22886660000006,-4.984369799999968],[137.23553460000005,-4.989212],[137.25512690000005,-5.008985499999937],[137.2815246,-5.023766],[137.2875213000001,-5.023597699999925],[137.2880096,-5.017053099999941],[137.291275,-5.012706799999933],[137.29733270000008,-5.011639099999968],[137.306488,-5.012774899999954],[137.32862850000004,-5.029767499999934],[137.33718870000007,-5.0450935],[137.33747860000005,-5.051609],[137.34028620000004,-5.057873699999959],[137.36201470000003,-5.078572299999962],[137.365158,-5.084884599999953],[137.38432310000007,-5.097188499999959],[137.3954315000001,-5.108082299999978],[137.40863030000003,-5.108929199999977],[137.41255180000007,-5.110583799999972],[137.4175567000001,-5.123825099999976],[137.419754,-5.125297499999931],[137.43255610000006,-5.117596099999957],[137.43876640000008,-5.098557],[137.44395440000005,-5.097312],[137.4485016000001,-5.098549799999944],[137.4602966000001,-5.109654899999953],[137.47398370000008,-5.1156645],[137.47677610000005,-5.123754499999961],[137.4863739000001,-5.134764699999948],[137.48947140000007,-5.136014899999964],[137.49072260000003,-5.139104799999927],[137.497055,-5.145764799999938],[137.5120544,-5.142914799999971],[137.517044,-5.139754799999935],[137.5176391000001,-5.1369648],[137.5212249000001,-5.133754299999964],[137.525177,-5.133614499999965],[137.54084770000009,-5.1368403],[137.54786680000007,-5.1415415],[137.55322260000003,-5.142791299999942],[137.55484840000008,-5.146863799999949],[137.57674870000005,-5.135859599999947],[137.58685120000007,-5.135511199999939],[137.606011,-5.138994799999978],[137.6140233000001,-5.138298099999929],[137.6202938,-5.136207899999931],[137.6296996000001,-5.1299374],[137.631093,-5.122273499999949],[137.62656430000004,-5.116351399999928],[137.6063594000001,-5.1069456],[137.60183070000005,-5.101371899999947],[137.60217910000006,-5.087089099999957],[137.61193320000007,-5.080121899999938],[137.618552,-5.0780317],[137.62795770000002,-5.078380099999947],[137.63318320000008,-5.074548099999959],[137.64119540000002,-5.0620071],[137.64258890000008,-5.054343199999948],[137.6502528000001,-5.048769399999969],[137.65338810000003,-5.040757099999951],[137.66011860000003,-5.037289499999929],[137.6793050000001,-5.032861799999978],[137.70587080000007,-5.022530699999948],[137.76343010000005,-4.990061399999945],[137.79147180000007,-4.970874899999956],[137.8150859000001,-4.944309099999941],[137.81361,-4.894129199999952],[137.7368643000001,-4.833618199999933],[137.68816030000005,-4.818859399999951],[137.6512633000001,-4.790817699999934],[137.6143664000001,-4.730306699999971],[137.57746940000004,-4.652085199999931]]]]},"properties":{"shapeName":"Mimika","shapeISO":"","shapeID":"22746128B59771156283463","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[124.78426500000012,1.461228],[124.78236850000008,1.461802],[124.78163990000007,1.460419900000034],[124.778043,1.459628],[124.77112240000008,1.461056800000051],[124.76859500000012,1.458687],[124.754751,1.455227],[124.753071,1.453635],[124.755078,1.455738],[124.75238800000011,1.454602],[124.750104,1.451575],[124.744673,1.448832],[124.74218,1.444038],[124.742742,1.440108],[124.741052,1.436382],[124.7309120000001,1.432563],[124.723272,1.424281],[124.718592,1.423268],[124.718284,1.424722],[124.716579,1.421514],[124.707956,1.41942],[124.70623200000011,1.413604],[124.707327,1.413852],[124.70754000000011,1.411927],[124.705689,1.409784],[124.70207,1.408166],[124.687194,1.408449],[124.684522,1.405802],[124.684014,1.40404],[124.685491,1.403589],[124.68403300000011,1.4037],[124.681473,1.397801],[124.67538600000012,1.394627],[124.6707540000001,1.394281],[124.669105,1.39613],[124.66464,1.397066],[124.655568,1.393852],[124.655467,1.395549],[124.647081,1.399975],[124.63922700000012,1.39907],[124.63517800000011,1.406482],[124.628441,1.410037],[124.627455,1.415439],[124.62555,1.415852],[124.623685,1.418773],[124.617726,1.418754],[124.611794,1.416694],[124.611847,1.415709],[124.61006,1.416115],[124.60567,1.412432],[124.605374,1.405869],[124.6029,1.404152],[124.602773,1.40073],[124.59948,1.399418],[124.595122,1.40106],[124.589349,1.395422],[124.584583,1.396264],[124.583953,1.398592],[124.580247,1.397996],[124.5796610000001,1.395591],[124.573844,1.390141],[124.573735,1.387815],[124.576118,1.385374],[124.573592,1.384885],[124.574058,1.382511],[124.5708,1.384347],[124.56794700000012,1.384073],[124.56477120000011,1.378287300000068],[124.582532,1.357192],[124.601957,1.351621],[124.611781,1.342318],[124.622351,1.336127],[124.637131,1.334572],[124.644371,1.3384],[124.6580540000001,1.337433],[124.673772,1.331043],[124.68200500000012,1.332288],[124.69330800000012,1.32941],[124.703919,1.33058],[124.709394,1.326888],[124.717698,1.325484],[124.722741,1.31661],[124.722224,1.310942],[124.72525,1.301061],[124.717396,1.299028],[124.706583,1.293764],[124.70298900000012,1.290081],[124.704754,1.286652],[124.713161,1.275714],[124.724409,1.269825],[124.727476,1.261505],[124.731096,1.258337],[124.74006,1.258662],[124.757844,1.254611],[124.75914440000008,1.252647700000068],[124.75510620000011,1.244987700000024],[124.75502950000009,1.236843600000043],[124.74711840000009,1.230650500000024],[124.7455728000001,1.223848800000042],[124.74182630000007,1.218282500000043],[124.741617,1.20462],[124.73986700000012,1.194501],[124.732401,1.188551],[124.725655,1.187564400000042],[124.73323180000011,1.178559500000063],[124.73530570000003,1.165688800000055],[124.74058060000004,1.147432900000069],[124.7441199000001,1.143608500000028],[124.739337,1.130725],[124.736568,1.114974200000063],[124.75845270000002,1.098290100000042],[124.76127730000007,1.097507700000051],[124.7644130000001,1.09863],[124.77080740000008,1.096377700000062],[124.776367,1.10084],[124.78279450000002,1.10305390000002],[124.7862060000001,1.109719],[124.79788230000008,1.115396100000055],[124.81070280000006,1.11420140000007],[124.816382,1.117082],[124.818256,1.114193],[124.823857,1.11291],[124.833725,1.120941],[124.837388,1.121255],[124.84171,1.114539],[124.8471972000001,1.110014500000034],[124.855935,1.096173],[124.865441,1.075626],[124.873438,1.071488],[124.876426,1.052407],[124.897184,1.029873],[124.90127310000003,1.029025700000034],[124.90291600000012,1.023469],[124.90656,1.021076],[124.90807940000002,1.017546300000049],[124.91281820000006,1.019640500000037],[124.918119,1.028303],[124.923287,1.029805],[124.928842,1.03567],[124.931937,1.036966],[124.940087,1.049727],[124.944863,1.051915],[124.951697,1.057575],[124.955894,1.063274],[124.965712,1.068218],[124.969101,1.073537],[124.971795,1.074377],[124.976984,1.08062],[124.98099800000011,1.09105],[124.985936,1.094055],[124.99539,1.106924],[125.01169550000009,1.124458400000037],[125.01747770000009,1.136693700000023],[125.023546,1.142525400000068],[125.02431980000006,1.147275600000057],[125.02325540000004,1.150320700000066],[125.0245867000001,1.150630700000022],[125.02591980000011,1.154139600000065],[125.02593310000009,1.157570700000065],[125.029624,1.162326],[125.032009,1.174646],[125.035069,1.17868],[125.0350370000001,1.187718],[125.045293,1.211392],[125.05044,1.237415],[125.054043,1.243419],[125.057663,1.261691],[125.057129,1.265209],[125.061369,1.275295],[125.06398,1.286473],[125.06301210000004,1.288014400000066],[125.0479140000001,1.290492],[125.04345100000012,1.288478],[125.0372890000001,1.288676],[125.035828,1.286423],[125.024713,1.288642],[125.022555,1.290482],[125.022392,1.297958],[125.01499400000012,1.302511],[125.009384,1.316432],[124.996965,1.328143],[124.98446700000011,1.313272],[124.98185,1.312351],[124.977649,1.303791],[124.973448,1.299008],[124.9703310000001,1.301479],[124.9709170000001,1.30588],[124.968908,1.310883],[124.966917,1.312876],[124.963524,1.312896],[124.962912,1.316535],[124.955179,1.324862],[124.955574,1.328269],[124.94637300000011,1.335422],[124.939058,1.338519],[124.937218,1.344146],[124.933475,1.34783],[124.924962,1.348093],[124.922609,1.350123],[124.92621,1.356762],[124.931492,1.375977],[124.920323,1.397986],[124.91980400000011,1.407842],[124.915089,1.42334],[124.915366,1.429107],[124.91316230000007,1.431677600000057],[124.91498130000002,1.435883300000057],[124.914653,1.444620300000054],[124.909106,1.451491],[124.907227,1.456798],[124.898154,1.455028],[124.895727,1.458051],[124.891599,1.458429],[124.888837,1.457982],[124.885346,1.453995],[124.88366,1.456648],[124.884174,1.458277],[124.881817,1.459044],[124.88332900000012,1.462051],[124.878982,1.460869],[124.879465,1.462597],[124.872711,1.465731],[124.87113000000011,1.46386],[124.8699150000001,1.450681],[124.868054,1.448209],[124.86352000000011,1.44951],[124.861399,1.44679],[124.861479,1.436762],[124.855122,1.437322],[124.850896,1.44014],[124.846936,1.436854],[124.840531,1.435569],[124.837799,1.432862],[124.834641,1.435363],[124.82994,1.430997],[124.8256070000001,1.429394],[124.823614,1.431465],[124.81621,1.432578],[124.811353,1.43643],[124.805529,1.437285],[124.80574400000012,1.438482],[124.800007,1.441301],[124.786827,1.443918],[124.78449300000011,1.446982],[124.78426500000012,1.461228]],[[124.917039,1.283513],[124.928214,1.277335],[124.931733,1.2731],[124.933785,1.263517],[124.93151200000011,1.257079],[124.930963,1.247316],[124.928106,1.239735],[124.925333,1.236806],[124.92139060000011,1.236391500000025],[124.921433,1.233578],[124.910114,1.225265],[124.911674,1.218281],[124.907449,1.212512],[124.908482,1.209941],[124.907216,1.206912],[124.903758,1.203893],[124.904879,1.201759],[124.9036870000001,1.199705],[124.905482,1.198044],[124.904162,1.195267],[124.904613,1.188748],[124.90278300000011,1.185485],[124.903698,1.183901],[124.89926,1.177615],[124.89885,1.174445],[124.892666,1.174115],[124.889202,1.169526],[124.888292,1.17062],[124.889604,1.175568],[124.887776,1.17809],[124.8878,1.180826],[124.885917,1.181325],[124.886837,1.182535],[124.883248,1.185294],[124.883222,1.187829],[124.879542,1.188529],[124.871844,1.195201],[124.858468,1.202303],[124.857097,1.203973],[124.8573530000001,1.211579],[124.860429,1.219219],[124.86438,1.223293],[124.86386,1.224671],[124.867882,1.233456],[124.87072000000012,1.233393],[124.870554,1.234835],[124.874852,1.236708],[124.87909410000009,1.234647],[124.88435310000011,1.239914200000044],[124.8891612000001,1.238527800000043],[124.89116500000011,1.24454570000006],[124.89471320000007,1.242602],[124.897016,1.24377],[124.8977675000001,1.248237200000062],[124.901412,1.254354500000034],[124.900643,1.265101],[124.9020200000001,1.270741],[124.913648,1.285492],[124.917039,1.283513]],[[124.830141,1.405422800000053],[124.840805,1.401632],[124.840989,1.398081],[124.838161,1.395115],[124.839118,1.393002],[124.836695,1.389085],[124.837605,1.382163],[124.844762,1.37636],[124.84667,1.372376],[124.860212,1.362223],[124.863217,1.352586600000052],[124.878588,1.354295],[124.889481,1.358542700000044],[124.892903,1.350807],[124.88802880000003,1.343838500000061],[124.88767060000009,1.339699100000075],[124.882229,1.336505],[124.87403,1.323009],[124.871251,1.316935],[124.870643,1.307324],[124.86875150000003,1.302741200000071],[124.863812,1.298404],[124.855567,1.294785],[124.859249,1.288391],[124.8560079,1.282263700000044],[124.854214,1.264306],[124.849283,1.259313],[124.842772,1.258789],[124.83965100000012,1.256993],[124.834465,1.258095],[124.826916,1.253147],[124.814086,1.269964],[124.804512,1.270939],[124.800013,1.278056],[124.795467,1.281948],[124.789097,1.282495],[124.781201,1.288758],[124.76823520000005,1.289728800000034],[124.76111810000009,1.284581500000058],[124.757105,1.278901],[124.7501009,1.281607600000029],[124.74418070000002,1.287188400000048],[124.7403796000001,1.315608800000064],[124.744118,1.333298],[124.75513400000011,1.344341],[124.768762,1.354554],[124.7701770000001,1.367954],[124.77796400000011,1.361667],[124.781824,1.364313],[124.787535,1.365616],[124.789731,1.360632],[124.79618790000006,1.356693],[124.8042630000001,1.360067],[124.8088560000001,1.365959],[124.81092500000011,1.372248],[124.811499,1.381144],[124.8094,1.387076],[124.811566,1.397281],[124.8184940000001,1.400188],[124.821629,1.404121],[124.830141,1.405422800000053]]]},"properties":{"shapeName":"Minahasa","shapeISO":"","shapeID":"22746128B17297878482003","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[124.5081305000001,1.296387300000049],[124.51138730000002,1.298708400000066],[124.51118240000005,1.304287800000054],[124.50978260000011,1.305621600000052],[124.50618620000012,1.305185900000026],[124.503269,1.301169800000025],[124.50412040000003,1.298154700000055],[124.5081305000001,1.296387300000049]]],[[[124.43369220000011,0.79254990000004],[124.43614840000009,0.786086600000033],[124.43819770000005,0.78673850000007],[124.4427323000001,0.779877],[124.44540740000002,0.778538800000035],[124.4478375000001,0.77123210000002],[124.45263860000011,0.771047400000043],[124.45379770000011,0.773124],[124.46194560000004,0.773821400000031],[124.46524470000008,0.770462800000075],[124.46550890000003,0.767142900000067],[124.46762940000008,0.767246800000066],[124.4694694000001,0.763339200000075],[124.47218880000003,0.763295],[124.47809290000009,0.768695900000068],[124.4812419000001,0.76329190000007],[124.48927530000003,0.766459400000031],[124.48892200000012,0.771594500000049],[124.49038770000004,0.775076800000022],[124.4895997000001,0.779892600000039],[124.49279750000005,0.787169700000049],[124.48798520000003,0.795434500000056],[124.48801690000005,0.803464200000064],[124.49068020000004,0.805249300000071],[124.49219240000002,0.808667700000058],[124.49658670000008,0.811032600000033],[124.49769990000004,0.821346700000049],[124.50895050000008,0.824453500000061],[124.51619070000004,0.824948100000029],[124.51975990000005,0.830701600000054],[124.52237350000007,0.831126900000072],[124.52500280000004,0.841063],[124.5336205000001,0.841770100000076],[124.53519930000004,0.847979400000042],[124.54120510000007,0.852843800000073],[124.54996440000002,0.85458090000003],[124.55420470000001,0.860476100000028],[124.5555548000001,0.865436200000033],[124.56011150000006,0.867494700000066],[124.55827880000004,0.877153600000042],[124.56121170000006,0.88106],[124.55821110000011,0.884436],[124.55842410000002,0.886993700000062],[124.56614070000012,0.894688600000052],[124.57258580000007,0.907967700000029],[124.5731525000001,0.911839500000042],[124.57781570000009,0.914821400000051],[124.58063840000011,0.934787400000062],[124.58098670000004,0.93887890000002],[124.57263610000007,0.961687100000063],[124.57259510000006,0.966605900000047],[124.57510850000006,0.973776800000053],[124.57195550000006,0.976521200000036],[124.57230410000011,0.98044550000003],[124.5737875000001,0.98080120000003],[124.57268470000008,0.982310700000028],[124.57669320000002,0.985213500000043],[124.5737385000001,0.989792],[124.574622,0.992756400000076],[124.57329020000009,0.995627],[124.57491450000009,0.996057400000041],[124.57640790000005,1.001120400000048],[124.57805870000004,1.000497800000062],[124.57973370000002,1.005501300000049],[124.57546220000006,1.009896200000071],[124.57229440000003,1.008364200000074],[124.5705554000001,1.010568200000023],[124.5663545000001,1.011268900000061],[124.56430770000009,1.013726800000029],[124.56544330000008,1.01763660000006],[124.55819150000002,1.017747100000065],[124.5597977000001,1.018514400000072],[124.56011660000001,1.022758600000031],[124.55806020000011,1.02629840000003],[124.55826680000007,1.028787100000045],[124.55615280000006,1.029166100000054],[124.555289,1.03094],[124.556222,1.034150300000022],[124.55400440000005,1.036016300000028],[124.55422050000004,1.040066700000068],[124.5619785,1.045027700000048],[124.56537490000005,1.043760300000031],[124.56631890000006,1.044677500000034],[124.56352160000006,1.048855800000069],[124.55877370000007,1.052244100000053],[124.55779640000003,1.05584360000006],[124.55578350000008,1.056224400000076],[124.55783,1.060083900000052],[124.549972,1.071226400000057],[124.5500029000001,1.072549],[124.5536833000001,1.073148400000036],[124.554283,1.077261800000031],[124.55110740000009,1.079858200000047],[124.55214820000003,1.085237100000029],[124.5503662000001,1.088022700000067],[124.55575990000011,1.088112400000057],[124.55846420000012,1.09158350000007],[124.56125080000004,1.091910700000028],[124.56280670000001,1.094917700000053],[124.56332310000005,1.093238500000041],[124.57049670000004,1.095617700000048],[124.57126390000008,1.093355900000063],[124.57430370000009,1.092600400000038],[124.57240500000012,1.098057500000039],[124.5742335000001,1.105967400000054],[124.57984580000004,1.108512700000063],[124.57846070000005,1.100724600000035],[124.5811619000001,1.093476900000041],[124.58009530000004,1.089058],[124.58232710000004,1.086272200000053],[124.58751560000007,1.083643100000074],[124.59792930000003,1.088194100000067],[124.60287060000007,1.094013800000027],[124.61355950000006,1.094585400000028],[124.62545240000009,1.101034100000049],[124.63252740000007,1.097264700000039],[124.65035880000005,1.101091200000042],[124.66791020000005,1.102125600000022],[124.67919630000006,1.100037600000064],[124.702414,1.109991400000069],[124.71300810000002,1.11109620000002],[124.72920550000003,1.110264100000052],[124.73354670000003,1.111558800000068],[124.736568,1.114974200000063],[124.739337,1.130725],[124.7441199000001,1.143608500000028],[124.74058060000004,1.147432900000069],[124.73530570000003,1.165688800000055],[124.73323180000011,1.178559500000063],[124.725655,1.187564400000042],[124.732401,1.188551],[124.73986700000012,1.194501],[124.741617,1.20462],[124.74182630000007,1.218282500000043],[124.7455728000001,1.223848800000042],[124.74711840000009,1.230650500000024],[124.75502950000009,1.236843600000043],[124.75510620000011,1.244987700000024],[124.75914440000008,1.252647700000068],[124.757844,1.254611],[124.74006,1.258662],[124.731096,1.258337],[124.727476,1.261505],[124.724409,1.269825],[124.713161,1.275714],[124.704754,1.286652],[124.70298900000012,1.290081],[124.706583,1.293764],[124.717396,1.299028],[124.72525,1.301061],[124.722224,1.310942],[124.722741,1.31661],[124.717698,1.325484],[124.709394,1.326888],[124.703919,1.33058],[124.69330800000012,1.32941],[124.68200500000012,1.332288],[124.673772,1.331043],[124.6580540000001,1.337433],[124.644371,1.3384],[124.637131,1.334572],[124.622351,1.336127],[124.611781,1.342318],[124.601957,1.351621],[124.582532,1.357192],[124.56477120000011,1.378287300000068],[124.55620280000005,1.378547100000048],[124.55088830000011,1.376179100000058],[124.55000010000003,1.374204900000052],[124.55143280000004,1.37303170000007],[124.5453103000001,1.367986100000053],[124.54103260000011,1.361613600000055],[124.54285890000006,1.359340100000054],[124.54019870000002,1.360523100000023],[124.54024250000009,1.358918],[124.53184360000012,1.352809700000023],[124.52891220000004,1.335705700000062],[124.52588350000008,1.334977200000026],[124.52735230000008,1.334155700000053],[124.518318,1.328814100000045],[124.51691560000006,1.321096100000034],[124.51210020000008,1.316307100000074],[124.51564010000004,1.312461400000075],[124.51408440000012,1.306174100000021],[124.51522470000009,1.30037],[124.5168129000001,1.300896700000067],[124.52139580000005,1.296499700000027],[124.52585350000004,1.295030200000042],[124.53234120000002,1.286196600000039],[124.53288770000006,1.283132100000046],[124.53959510000004,1.279773300000045],[124.54309200000012,1.275764800000047],[124.54608550000012,1.275405900000067],[124.55026880000003,1.271490500000027],[124.55533480000008,1.272601300000076],[124.56059860000005,1.271350300000051],[124.56335120000006,1.272439400000053],[124.56470390000004,1.278203],[124.57161460000009,1.281788],[124.56972550000012,1.278561800000034],[124.57314020000001,1.27070550000002],[124.582703,1.270428300000049],[124.5899515000001,1.267710500000021],[124.59037930000011,1.268676700000071],[124.591397,1.26491070000003],[124.5949667000001,1.265550900000051],[124.59413930000005,1.262278],[124.60217640000008,1.257786700000054],[124.60826750000001,1.256636400000048],[124.61163540000007,1.253775100000041],[124.61277890000008,1.245727500000044],[124.61396760000002,1.245305200000075],[124.61255050000011,1.244889500000056],[124.6114616000001,1.23521960000005],[124.60592770000005,1.227388],[124.59785970000007,1.220894200000032],[124.59019250000006,1.208776800000066],[124.5850114000001,1.196737300000052],[124.5773382000001,1.189129],[124.57441230000006,1.187981200000024],[124.57615210000006,1.185938300000032],[124.57333160000007,1.18760160000005],[124.57074030000001,1.185767],[124.56552080000006,1.185351400000059],[124.56408290000002,1.180011900000068],[124.56165740000006,1.184037500000045],[124.5617066000001,1.187081500000033],[124.55609780000009,1.191066700000022],[124.553456,1.194667400000071],[124.55294460000005,1.198458300000027],[124.54973070000005,1.199532200000021],[124.54800540000008,1.209325700000022],[124.54212340000004,1.213338],[124.53299980000008,1.212636700000076],[124.52791330000002,1.215319800000032],[124.52373760000012,1.214288400000044],[124.51855210000008,1.210136900000066],[124.51725360000012,1.20095770000006],[124.52127750000011,1.193651400000022],[124.5192843000001,1.190280800000039],[124.51620420000006,1.189235900000028],[124.51668410000002,1.187966900000049],[124.51512960000002,1.189842100000021],[124.51044460000003,1.190663700000073],[124.50406350000003,1.18863390000007],[124.50379150000003,1.187504600000068],[124.50366520000011,1.188837500000034],[124.49751680000008,1.191766400000063],[124.48888280000006,1.184790300000031],[124.47192640000003,1.186872200000039],[124.46432460000005,1.189977100000021],[124.4551034000001,1.186796500000071],[124.44515550000006,1.189021400000058],[124.4283713000001,1.188312900000028],[124.42600390000007,1.189568],[124.42527590000009,1.192522300000064],[124.41544570000008,1.195671200000049],[124.40763830000003,1.191345300000023],[124.40498070000001,1.184823100000074],[124.39619710000011,1.181681600000047],[124.39222830000006,1.178752200000019],[124.38421590000007,1.180710500000032],[124.3821388,1.179022700000075],[124.38264260000005,1.176480800000036],[124.37589670000011,1.176420700000051],[124.3719,1.174270700000022],[124.37212480000005,1.172916300000054],[124.37095180000006,1.172527200000047],[124.37094120000006,1.173820600000056],[124.36989640000002,1.171804700000052],[124.36820340000008,1.17230550000005],[124.36374530000012,1.170085],[124.36044360000005,1.165794],[124.35485440000002,1.165723300000025],[124.34874170000012,1.162156500000037],[124.342548,1.156291700000054],[124.34189430000004,1.154102500000022],[124.34933970000009,1.146236300000055],[124.35310960000004,1.13939060000007],[124.35643090000008,1.137604200000055],[124.35710690000008,1.134939400000064],[124.35575170000004,1.133236],[124.3522809000001,1.133272400000067],[124.34837610000011,1.12597390000002],[124.339667,1.11978490000007],[124.33877550000011,1.116421400000036],[124.34249060000002,1.11223560000002],[124.339422,1.09925510000005],[124.33058230000006,1.088072900000043],[124.32853490000002,1.079456600000071],[124.32576930000005,1.07804040000002],[124.32258130000002,1.079272800000069],[124.3207215000001,1.077661400000068],[124.31966360000001,1.073751400000049],[124.32246830000008,1.069511100000057],[124.31488560000003,1.058606800000064],[124.31320180000012,1.053187],[124.31575050000004,1.047341300000028],[124.31129850000002,1.042187900000044],[124.3080857000001,1.033618900000022],[124.30376860000001,1.029535100000032],[124.30410410000002,1.027743500000042],[124.30677360000004,1.026587900000038],[124.30736610000008,1.023152],[124.30439760000002,1.018325600000026],[124.2981218000001,1.013252800000032],[124.29823350000004,1.007235700000024],[124.29733520000002,1.004276100000027],[124.29857430000004,1.001418],[124.3043067000001,1.001190800000074],[124.30558740000004,1.002130700000066],[124.30430070000011,1.005747500000041],[124.30903720000003,1.005136400000026],[124.3168147,1.008111],[124.31860150000011,1.006499800000029],[124.31745440000009,1.003687],[124.3210391,1.000447200000053],[124.32311520000007,1.002099700000031],[124.32467480000003,1.001624600000071],[124.32418930000006,0.998298800000043],[124.32587290000004,0.995231200000035],[124.3290128000001,0.993496],[124.3315434000001,0.989653700000019],[124.33553060000008,0.988163400000076],[124.33923850000008,0.99092950000005],[124.34407850000002,0.992015500000036],[124.34460980000006,0.989287300000058],[124.35159360000011,0.986134200000038],[124.35575590000008,0.986782],[124.35798000000011,0.981844800000033],[124.35733260000006,0.976324100000056],[124.36012210000001,0.97335140000007],[124.36291310000001,0.973837400000036],[124.36216880000006,0.96815440000006],[124.36476610000011,0.968575500000043],[124.36103770000011,0.963348400000029],[124.36503860000005,0.964158700000041],[124.36836060000007,0.961299500000052],[124.37049090000005,0.963701800000024],[124.37302210000007,0.960096],[124.37074650000011,0.957450100000074],[124.3760919,0.957961900000043],[124.37728330000004,0.952256500000033],[124.37289320000002,0.952213200000074],[124.37310700000012,0.949065700000062],[124.37080860000003,0.948291],[124.37258960000008,0.943393300000025],[124.370985,0.941256500000065],[124.3718176000001,0.939551700000038],[124.37007,0.938316800000052],[124.3702019000001,0.931715300000064],[124.36787980000008,0.92761280000002],[124.3670442,0.921291100000076],[124.37039410000011,0.918936],[124.37239230000012,0.919792],[124.373941,0.91647260000002],[124.37636850000001,0.915335300000038],[124.37566,0.913504800000055],[124.37859830000002,0.912412500000073],[124.37860460000002,0.901494400000047],[124.3813669000001,0.889197900000056],[124.37865020000004,0.882951600000069],[124.38051340000004,0.879742100000044],[124.37904540000011,0.870231300000057],[124.38170690000004,0.866568700000073],[124.38681760000009,0.865468400000054],[124.39157160000002,0.861937700000055],[124.40698920000011,0.859118800000033],[124.40564990000007,0.85479330000004],[124.40746810000007,0.851041700000053],[124.414701,0.848359900000048],[124.41678550000006,0.844652900000028],[124.42017450000003,0.843181800000025],[124.42179870000007,0.839917800000023],[124.4237955000001,0.839024],[124.42419410000002,0.836880500000063],[124.4279663000001,0.836700500000063],[124.43068320000009,0.83349],[124.43457740000008,0.832629],[124.43638550000003,0.823472200000026],[124.43514260000006,0.821310700000026],[124.43210160000001,0.820009300000038],[124.432605,0.816622800000061],[124.42658730000005,0.812717700000064],[124.42218860000003,0.813722100000064],[124.42014390000008,0.812563700000055],[124.41869470000006,0.80823330000004],[124.41905440000005,0.80493180000002],[124.42372450000005,0.802937400000076],[124.4237108000001,0.800840500000049],[124.42803340000012,0.804472800000042],[124.42787730000009,0.801594500000022],[124.43016630000011,0.798585100000025],[124.42933770000002,0.796918300000073],[124.43048890000011,0.795797800000059],[124.43358150000006,0.797021],[124.43369220000011,0.79254990000004]]]]},"properties":{"shapeName":"Minahasa Selatan","shapeISO":"","shapeID":"22746128B31914079410525","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[124.73651260000008,0.858336100000031],[124.73515910000003,0.858902500000056],[124.722641,0.853321900000026],[124.7223024000001,0.850111600000048],[124.726295,0.849951500000032],[124.7291570000001,0.854026900000065],[124.73554220000005,0.855472700000064],[124.73651260000008,0.858336100000031]]],[[[124.74623040000006,0.864076800000021],[124.74398080000003,0.863567400000022],[124.74739580000005,0.862941800000044],[124.74623040000006,0.864076800000021]]],[[[124.76620890000004,0.876868300000069],[124.76389030000007,0.87863150000004],[124.76249220000011,0.874214],[124.76408310000011,0.873793500000033],[124.76620890000004,0.876868300000069]]],[[[124.7319093000001,0.883177600000067],[124.72918790000006,0.882714700000065],[124.72795860000008,0.879488500000036],[124.73459610000009,0.881761300000051],[124.73422670000002,0.88337880000006],[124.7319093000001,0.883177600000067]]],[[[124.73923820000005,0.884409],[124.73479910000003,0.882280300000048],[124.73834080000006,0.882341200000042],[124.74004480000008,0.883750700000064],[124.73923820000005,0.884409]]],[[[124.78115070000001,0.888397900000029],[124.78318810000007,0.891826700000024],[124.78058620000002,0.889294600000028],[124.78115070000001,0.888397900000029]]],[[[124.79211870000006,0.925761],[124.7894318000001,0.925021100000038],[124.78913210000007,0.918699200000049],[124.79192590000002,0.921462500000075],[124.79211870000006,0.925761]]],[[[124.79189880000001,0.930012800000043],[124.7868668000001,0.92684950000006],[124.790624,0.92776710000004],[124.79189880000001,0.930012800000043]]],[[[124.90216620000001,0.959918900000048],[124.9028373000001,0.961055100000067],[124.90169920000005,0.96093140000005],[124.90216620000001,0.959918900000048]]],[[[124.90438840000002,0.977932200000055],[124.89637770000002,0.976074500000038],[124.9031136000001,0.970718900000065],[124.90871420000008,0.971774900000071],[124.91259530000002,0.969874300000072],[124.91630520000001,0.971235300000046],[124.91596220000008,0.974323900000059],[124.91859210000007,0.975828100000058],[124.91680470000006,0.977219],[124.9096813000001,0.975780100000065],[124.90438840000002,0.977932200000055]]],[[[124.69895950000011,0.84418450000004],[124.7017164,0.846432700000037],[124.70632580000006,0.846734300000037],[124.70790180000006,0.845889300000067],[124.70769910000001,0.842125],[124.72177370000009,0.849161800000047],[124.72078950000002,0.852008400000045],[124.70944570000006,0.847308600000019],[124.7063051,0.857673900000066],[124.70735470000011,0.857149800000059],[124.70701280000003,0.862465300000054],[124.71280450000006,0.872411300000067],[124.71211490000007,0.874895500000036],[124.71472380000012,0.885294500000043],[124.7184631,0.893022300000041],[124.71629040000005,0.893922300000042],[124.716482,0.896250500000065],[124.72098150000011,0.894877500000064],[124.72708780000005,0.897030200000074],[124.7303184000001,0.896257100000071],[124.728321,0.89494940000003],[124.72828550000008,0.891486400000076],[124.7304315,0.890120500000023],[124.73345450000011,0.890478500000029],[124.73266200000012,0.88489560000005],[124.7423553000001,0.890023700000029],[124.74806860000001,0.89653080000005],[124.75210730000003,0.896768800000075],[124.75184880000006,0.894139],[124.75383370000009,0.892796500000031],[124.75840860000005,0.89435450000002],[124.76030130000004,0.892858],[124.76045520000002,0.887999900000068],[124.76790610000012,0.891846],[124.7672109,0.895979500000067],[124.77092530000004,0.899027500000045],[124.76820450000002,0.902664800000025],[124.76992060000009,0.914383600000065],[124.772166,0.916676],[124.7740275000001,0.916630300000065],[124.7777989000001,0.912976300000025],[124.78241250000008,0.919285700000046],[124.78170180000006,0.920881200000053],[124.78539200000012,0.919953400000054],[124.78580090000003,0.921968500000048],[124.7875216000001,0.922199100000057],[124.78783520000002,0.92401030000002],[124.78675950000002,0.923346600000059],[124.78673070000002,0.925063400000056],[124.78459510000005,0.925721300000021],[124.78608010000005,0.928985600000033],[124.78188550000004,0.927832900000055],[124.78368160000002,0.93050420000003],[124.78317110000012,0.93256370000006],[124.78630090000001,0.932741300000032],[124.7875087000001,0.936495900000068],[124.7861679,0.939946200000065],[124.78880560000005,0.944180800000026],[124.7974531000001,0.949287],[124.81567220000011,0.954697200000055],[124.82234770000002,0.958996800000023],[124.83858220000002,0.963929200000052],[124.86227380000003,0.96967520000004],[124.87374630000011,0.969694900000036],[124.885521,0.971570700000029],[124.88799570000003,0.973775700000033],[124.88789640000005,0.976042900000039],[124.886117,0.976641],[124.88653420000003,0.974939100000029],[124.8837459,0.973784300000034],[124.8825945000001,0.974994600000059],[124.88397970000005,0.977218],[124.88029940000001,0.978931100000068],[124.88044960000002,0.980899600000043],[124.88121940000008,0.979038900000035],[124.8852783000001,0.978276300000061],[124.88366280000002,0.984759600000075],[124.8843601000001,0.986611100000061],[124.88496390000012,0.984608700000024],[124.88635660000011,0.98494160000007],[124.88659080000002,0.987741600000049],[124.8844865000001,0.989427800000044],[124.88728020000008,0.990427300000022],[124.88851490000002,0.984391],[124.89469510000004,0.980875300000037],[124.8935173000001,0.990320700000041],[124.8944011000001,0.992617700000039],[124.89179020000006,0.998402900000031],[124.891992,1.003138],[124.89419640000006,1.005955100000051],[124.89841060000003,1.007622300000037],[124.90075520000005,1.011795],[124.90807940000002,1.017546300000049],[124.90656,1.021076],[124.90291600000012,1.023469],[124.90127310000003,1.029025700000034],[124.897184,1.029873],[124.876426,1.052407],[124.873438,1.071488],[124.865441,1.075626],[124.855935,1.096173],[124.8471972000001,1.110014500000034],[124.84171,1.114539],[124.837388,1.121255],[124.833725,1.120941],[124.823857,1.11291],[124.818256,1.114193],[124.816382,1.117082],[124.81070280000006,1.11420140000007],[124.79788230000008,1.115396100000055],[124.7862060000001,1.109719],[124.78279450000002,1.10305390000002],[124.776367,1.10084],[124.77080740000008,1.096377700000062],[124.7644130000001,1.09863],[124.76127730000007,1.097507700000051],[124.75845270000002,1.098290100000042],[124.736568,1.114974200000063],[124.73354670000003,1.111558800000068],[124.72920550000003,1.110264100000052],[124.71300810000002,1.11109620000002],[124.702414,1.109991400000069],[124.67919630000006,1.100037600000064],[124.66791020000005,1.102125600000022],[124.65035880000005,1.101091200000042],[124.63252740000007,1.097264700000039],[124.62545240000009,1.101034100000049],[124.61355950000006,1.094585400000028],[124.60287060000007,1.094013800000027],[124.59792930000003,1.088194100000067],[124.58751560000007,1.083643100000074],[124.58232710000004,1.086272200000053],[124.58009530000004,1.089058],[124.5811619000001,1.093476900000041],[124.57846070000005,1.100724600000035],[124.57984580000004,1.108512700000063],[124.5742335000001,1.105967400000054],[124.57240500000012,1.098057500000039],[124.57430370000009,1.092600400000038],[124.57126390000008,1.093355900000063],[124.57049670000004,1.095617700000048],[124.56332310000005,1.093238500000041],[124.56280670000001,1.094917700000053],[124.56125080000004,1.091910700000028],[124.55846420000012,1.09158350000007],[124.55575990000011,1.088112400000057],[124.5503662000001,1.088022700000067],[124.55214820000003,1.085237100000029],[124.55110740000009,1.079858200000047],[124.554283,1.077261800000031],[124.5536833000001,1.073148400000036],[124.5500029000001,1.072549],[124.549972,1.071226400000057],[124.55783,1.060083900000052],[124.55578350000008,1.056224400000076],[124.55779640000003,1.05584360000006],[124.55877370000007,1.052244100000053],[124.56352160000006,1.048855800000069],[124.56631890000006,1.044677500000034],[124.56537490000005,1.043760300000031],[124.5619785,1.045027700000048],[124.55422050000004,1.040066700000068],[124.55400440000005,1.036016300000028],[124.556222,1.034150300000022],[124.555289,1.03094],[124.55615280000006,1.029166100000054],[124.55826680000007,1.028787100000045],[124.55806020000011,1.02629840000003],[124.56011660000001,1.022758600000031],[124.5597977000001,1.018514400000072],[124.55819150000002,1.017747100000065],[124.56544330000008,1.01763660000006],[124.56430770000009,1.013726800000029],[124.5663545000001,1.011268900000061],[124.5705554000001,1.010568200000023],[124.57229440000003,1.008364200000074],[124.57546220000006,1.009896200000071],[124.57973370000002,1.005501300000049],[124.57805870000004,1.000497800000062],[124.57640790000005,1.001120400000048],[124.57491450000009,0.996057400000041],[124.57329020000009,0.995627],[124.574622,0.992756400000076],[124.5737385000001,0.989792],[124.57669320000002,0.985213500000043],[124.57268470000008,0.982310700000028],[124.5737875000001,0.98080120000003],[124.57230410000011,0.98044550000003],[124.57195550000006,0.976521200000036],[124.57510850000006,0.973776800000053],[124.57259510000006,0.966605900000047],[124.57263610000007,0.961687100000063],[124.58098670000004,0.93887890000002],[124.58063840000011,0.934787400000062],[124.587127,0.932102],[124.59167180000009,0.939757600000064],[124.59453320000011,0.941390400000046],[124.59831230000009,0.941743900000063],[124.6129628000001,0.947891500000026],[124.61744740000006,0.946575100000075],[124.62214560000007,0.948917400000028],[124.62917270000003,0.947102400000063],[124.6328347000001,0.947746500000051],[124.64495230000011,0.956479200000047],[124.6510972000001,0.956369600000073],[124.65240070000004,0.951474800000028],[124.649787,0.949017200000071],[124.64699260000009,0.939329900000075],[124.64875440000003,0.93062610000004],[124.6479412000001,0.928637300000048],[124.65224930000011,0.923739],[124.65380510000011,0.913202100000035],[124.65864110000007,0.90833340000006],[124.65659830000004,0.902634],[124.660411,0.89968390000007],[124.660411,0.890920200000039],[124.66457720000005,0.888609400000064],[124.66708460000007,0.881199200000026],[124.67079150000006,0.878639900000053],[124.6698358000001,0.873631800000055],[124.6719055000001,0.869995500000073],[124.68065830000012,0.870934600000055],[124.6823458,0.872776],[124.68803,0.865658300000064],[124.6862599000001,0.862849100000062],[124.68698780000011,0.860334200000068],[124.6921506000001,0.859055400000045],[124.69464820000007,0.860267800000031],[124.69602530000009,0.858917500000075],[124.6948317,0.858026500000051],[124.69725320000009,0.855099700000039],[124.6966718000001,0.85266740000003],[124.6984969,0.848040400000059],[124.69743710000012,0.846804700000064],[124.69997760000001,0.846879],[124.69895950000011,0.84418450000004]]]]},"properties":{"shapeName":"Minahasa Tenggara","shapeISO":"","shapeID":"22746128B80644383335500","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[124.95498810000004,1.686228100000051],[124.9545534,1.685309800000027],[124.95607690000008,1.685113400000034],[124.95498810000004,1.686228100000051]]],[[[125.02355860000011,1.686754800000074],[125.024203,1.688539400000025],[125.02255220000006,1.689239],[125.0199315000001,1.687925700000051],[125.02355860000011,1.686754800000074]]],[[[124.95551710000007,1.692092800000069],[124.95339990000002,1.699453300000073],[124.9501318,1.701141],[124.94859340000005,1.690977900000064],[124.95030930000007,1.691978300000073],[124.954088,1.686792500000024],[124.95622280000009,1.688891300000023],[124.95551710000007,1.692092800000069]]],[[[125.02763310000012,1.705275500000027],[125.02144440000006,1.704354500000022],[125.0213255000001,1.702539500000057],[125.0185861000001,1.700216600000033],[125.02105160000008,1.699281100000064],[125.0181179000001,1.697913],[125.01732830000003,1.69597090000002],[125.018276,1.692471],[125.0252015000001,1.692792800000063],[125.0281308000001,1.690839900000071],[125.02968890000011,1.687423500000023],[125.03109580000012,1.691868],[125.02991740000004,1.694992500000069],[125.03132640000001,1.698232],[125.02845950000005,1.698911900000041],[125.02929210000002,1.701512900000068],[125.02763310000012,1.705275500000027]]],[[[124.95854370000006,1.709898200000055],[124.9565411000001,1.711937100000057],[124.95680830000003,1.708611],[124.95854370000006,1.709898200000055]]],[[[124.77381160000004,1.71835580000004],[124.77017390000003,1.723728400000027],[124.77038420000008,1.729174800000067],[124.76905210000007,1.731163700000025],[124.77038720000007,1.732349900000031],[124.77044210000008,1.736299300000042],[124.76642240000001,1.74464080000007],[124.75956910000002,1.740336400000047],[124.75631040000007,1.739436],[124.75027520000003,1.732162100000039],[124.74813860000006,1.723981200000026],[124.74908510000012,1.721115],[124.75218660000007,1.718401700000072],[124.74513610000008,1.722744900000066],[124.7402929000001,1.72850580000005],[124.73911710000004,1.733153500000071],[124.73606330000007,1.731968800000061],[124.73688260000006,1.730135300000029],[124.73454860000004,1.73067960000003],[124.73126220000006,1.727610600000048],[124.73343090000003,1.714443500000073],[124.74199080000005,1.705504100000041],[124.75193780000006,1.698576900000035],[124.76832350000006,1.691953600000033],[124.77840770000012,1.695093600000064],[124.77843590000009,1.697958800000038],[124.78069280000011,1.697466400000053],[124.77972750000004,1.70771510000003],[124.77381160000004,1.71835580000004]]],[[[125.15690690000008,1.745697300000074],[125.15503320000005,1.74563820000003],[125.15327860000002,1.743095800000049],[125.15749530000005,1.740791800000068],[125.1596919000001,1.743471600000021],[125.15690690000008,1.745697300000074]]],[[[124.75471980000009,1.747114500000066],[124.75468870000009,1.749047500000074],[124.75345660000005,1.748090400000024],[124.75471980000009,1.747114500000066]]],[[[124.75156760000004,1.747117400000036],[124.74822170000004,1.750771800000052],[124.74626660000001,1.749352800000054],[124.74703620000003,1.747138200000052],[124.7509755000001,1.745945100000029],[124.75156760000004,1.747117400000036]]],[[[125.15512,1.595726],[125.15561920000005,1.596576600000049],[125.15242030000002,1.598778100000061],[125.14761610000005,1.599710800000025],[125.14362090000009,1.606047800000056],[125.14319190000003,1.622202700000059],[125.14734670000007,1.626013600000022],[125.15220650000003,1.624123900000029],[125.155198,1.624984300000051],[125.15335290000007,1.626164],[125.1505790000001,1.634384500000067],[125.1582055,1.640761800000064],[125.15994580000006,1.638770900000054],[125.1617662000001,1.638847500000054],[125.16195130000006,1.641647600000056],[125.16504910000003,1.644549],[125.16183230000001,1.651906300000064],[125.16345,1.663472800000022],[125.16706550000004,1.666952600000059],[125.169046,1.66679970000007],[125.17039720000002,1.669662300000027],[125.174477,1.671550300000035],[125.1759942000001,1.673859900000025],[125.17521090000002,1.67537],[125.17700530000002,1.677835300000027],[125.1754568,1.684574500000053],[125.16779850000012,1.687928200000044],[125.165821,1.690492600000027],[125.16501670000002,1.687955100000067],[125.16096040000002,1.686844600000029],[125.1587148000001,1.681366800000035],[125.15399810000008,1.679996100000039],[125.15246720000005,1.681326300000023],[125.15109790000008,1.679643400000032],[125.14695230000007,1.682945700000062],[125.14606,1.686244300000055],[125.14382220000005,1.687931200000037],[125.142451,1.684516400000064],[125.13959620000003,1.682574200000033],[125.13845850000007,1.676976600000046],[125.13423250000005,1.671429700000033],[125.13477090000003,1.667965300000049],[125.12475910000012,1.671554],[125.117923,1.676434300000039],[125.11983690000011,1.672169800000063],[125.11182860000008,1.665095800000074],[125.111249,1.662090600000056],[125.1111026000001,1.663911800000051],[125.1052429,1.664908600000047],[125.09061510000004,1.676566500000035],[125.08732970000005,1.67666730000002],[125.08333470000002,1.674426600000061],[125.085047,1.676079800000025],[125.07752850000008,1.67854710000006],[125.07223150000004,1.672046],[125.07321050000007,1.67195520000007],[125.06759420000003,1.671323700000073],[125.0667697,1.672676500000023],[125.06202120000012,1.67281360000004],[125.06139020000012,1.674546900000053],[125.05672570000002,1.675751200000036],[125.05093080000006,1.683044900000027],[125.04634030000011,1.685305],[125.04019910000011,1.68401],[125.0397908000001,1.677286],[125.0380262000001,1.680453400000033],[125.03350090000004,1.68192920000007],[125.0309539000001,1.681315],[125.0299238,1.68384530000003],[125.02536140000007,1.685919],[125.0174032000001,1.687502700000039],[125.01677770000003,1.684718],[125.01612940000007,1.687367300000062],[125.01328850000004,1.689782500000035],[125.01393910000002,1.694096100000024],[125.01244470000006,1.694732700000031],[125.01223040000002,1.693620300000021],[125.012088,1.694791800000075],[125.0144987000001,1.697833800000069],[125.01354120000008,1.697783],[125.01379810000003,1.700131900000031],[125.0179839000001,1.710135900000068],[125.0174952000001,1.714353800000026],[125.02007910000009,1.717928400000062],[125.01956130000008,1.720280600000024],[125.02068410000004,1.722284900000034],[125.02595510000003,1.724744300000054],[125.02562460000001,1.730193600000064],[125.0144954000001,1.735719],[125.012164,1.734645400000034],[125.01170430000002,1.730914400000074],[125.0095219000001,1.728581200000065],[125.00943110000003,1.73941990000003],[124.996691,1.749902100000043],[124.99035130000004,1.751265800000056],[124.9859411000001,1.749564300000031],[124.98055290000002,1.749909400000035],[124.9826782,1.74412680000006],[124.98168640000006,1.739810800000043],[124.98360090000006,1.737521300000026],[124.98152930000003,1.738324700000021],[124.98280010000008,1.735794200000043],[124.9806182000001,1.736507200000062],[124.9771108000001,1.733285800000033],[124.98098290000007,1.726287100000036],[124.98595140000009,1.726423],[124.98624490000009,1.724930800000038],[124.98347970000009,1.723611300000073],[124.984595,1.719825800000024],[124.98189580000007,1.719255800000042],[124.97947350000004,1.722768300000041],[124.97665640000002,1.723402700000065],[124.97206,1.731586100000072],[124.9660037000001,1.731981800000028],[124.96236230000011,1.72814610000006],[124.9675281000001,1.704567300000065],[124.96519360000002,1.706409400000041],[124.9626541,1.705037800000071],[124.965994,1.702389100000062],[124.96893960000011,1.703791400000057],[124.97267490000002,1.70245170000004],[124.96933810000007,1.70236970000002],[124.96977110000012,1.698028],[124.9646775000001,1.699801500000035],[124.96298780000006,1.697507100000053],[124.96200440000007,1.700687600000037],[124.95720340000003,1.699086300000033],[124.96333930000003,1.687306500000034],[124.9676713,1.690327100000047],[124.969259,1.689525800000069],[124.96716350000008,1.689446500000031],[124.96764770000004,1.687993600000027],[124.965739,1.686415500000066],[124.96720520000008,1.683819500000027],[124.96449690000009,1.684479900000042],[124.96703380000008,1.676964600000076],[124.96515720000002,1.676615900000058],[124.964407,1.673973300000057],[124.96536380000009,1.678710600000045],[124.9614580000001,1.684868100000074],[124.960499,1.683735500000068],[124.9613577,1.678831],[124.959856,1.677629600000046],[124.95656870000005,1.682515500000022],[124.9517763,1.68292230000003],[124.9496448000001,1.681567900000061],[124.94449080000004,1.686479800000029],[124.94075970000006,1.683100800000034],[124.9407609000001,1.684356800000046],[124.93901330000006,1.68412410000002],[124.94131790000006,1.692193600000053],[124.94060360000003,1.693517400000076],[124.93813870000008,1.691610700000069],[124.93718610000008,1.687542200000053],[124.93572240000003,1.688280600000041],[124.9299764000001,1.683697700000039],[124.93031750000011,1.67519],[124.92645770000001,1.676332600000023],[124.92409160000011,1.673337300000071],[124.92516510000007,1.664845700000058],[124.93049140000005,1.665828400000066],[124.93232100000012,1.664821800000027],[124.92999170000007,1.665326500000049],[124.92849180000007,1.663184400000034],[124.93111990000011,1.661825300000032],[124.92804080000008,1.661426400000039],[124.93146410000008,1.656399100000044],[124.92734170000006,1.66127640000002],[124.92489630000011,1.662183200000072],[124.92306440000004,1.66084520000004],[124.92297860000008,1.658132300000034],[124.92156470000009,1.658904],[124.92056520000006,1.657783],[124.92478970000002,1.655283600000075],[124.92575130000012,1.651447700000062],[124.92455630000006,1.654814900000076],[124.92107970000006,1.656342300000063],[124.91886420000003,1.654100300000039],[124.9188286000001,1.651789300000075],[124.91709750000007,1.651389100000074],[124.9195509000001,1.658654900000045],[124.92196660000002,1.661398900000052],[124.92102050000005,1.663978900000075],[124.918076,1.662923100000057],[124.91718070000002,1.65979980000003],[124.9121771,1.657035900000039],[124.91139290000001,1.653444700000023],[124.90188940000007,1.649525200000028],[124.895837,1.638455800000031],[124.89321370000005,1.636288100000058],[124.887989,1.635544800000048],[124.88238970000009,1.63171490000002],[124.87126220000005,1.620556400000055],[124.87226310000005,1.617300300000068],[124.8687847000001,1.61518940000002],[124.86779710000008,1.612739600000054],[124.86743850000005,1.606828],[124.86908930000004,1.602673200000027],[124.86551550000001,1.597793600000045],[124.86585180000009,1.599664200000063],[124.86220860000003,1.600228700000059],[124.8620327000001,1.603314600000033],[124.85552730000006,1.598694100000046],[124.8509911000001,1.599583900000027],[124.84937960000002,1.597766200000024],[124.847477,1.598420500000032],[124.84735810000006,1.59677030000006],[124.846459,1.598258700000031],[124.84475680000003,1.596582100000035],[124.84220060000007,1.596985200000063],[124.838298,1.593831200000068],[124.83515870000008,1.594167800000037],[124.82934590000002,1.592031200000065],[124.82761320000009,1.588330600000063],[124.82628680000005,1.588434100000029],[124.82060950000005,1.582499600000062],[124.82133650000003,1.580095500000027],[124.82245540000008,1.581636],[124.83327580000002,1.570830800000067],[124.84374020000007,1.564455900000041],[124.85081610000009,1.566856900000062],[124.85445270000002,1.571166],[124.85846880000008,1.563483800000029],[124.86666190000005,1.570904100000064],[124.87160040000003,1.571780900000022],[124.87804430000006,1.575294500000041],[124.87699850000001,1.571419700000035],[124.88252840000007,1.573930500000074],[124.88279890000001,1.571767300000033],[124.8868546000001,1.574267400000053],[124.88886610000009,1.569050100000027],[124.88992140000005,1.570375300000023],[124.89635040000007,1.568882900000062],[124.89712960000008,1.57448450000004],[124.90260970000008,1.575441200000057],[124.91000780000002,1.57363870000006],[124.91098110000007,1.567864500000042],[124.91333270000007,1.565725500000042],[124.91641560000005,1.565980100000047],[124.92262540000002,1.559692300000052],[124.92398270000001,1.559743100000048],[124.92285,1.5648],[124.9282,1.56424],[124.92734,1.53729],[124.92388360000007,1.533464800000047],[124.92443020000007,1.531545200000039],[124.92276440000012,1.52827110000004],[124.92776250000009,1.517640500000027],[124.93296690000011,1.513251],[124.93316530000004,1.50756430000007],[124.91791100000012,1.502355700000066],[124.91327870000009,1.497675400000048],[124.90450910000004,1.495848700000067],[124.90446010000005,1.490963700000066],[124.90143060000003,1.490802100000053],[124.89407010000002,1.484677300000044],[124.89050550000002,1.478194200000075],[124.89208740000004,1.476554200000066],[124.89370530000008,1.463119200000051],[124.891599,1.458429],[124.895727,1.458051],[124.898154,1.455028],[124.907227,1.456798],[124.909106,1.451491],[124.914653,1.444620300000054],[124.91498130000002,1.435883300000057],[124.91316230000007,1.431677600000057],[124.915366,1.429107],[124.915089,1.42334],[124.91980400000011,1.407842],[124.920323,1.397986],[124.931492,1.375977],[124.92621,1.356762],[124.922609,1.350123],[124.924962,1.348093],[124.933475,1.34783],[124.937218,1.344146],[124.939058,1.338519],[124.94637300000011,1.335422],[124.955574,1.328269],[124.955179,1.324862],[124.962912,1.316535],[124.963524,1.312896],[124.966917,1.312876],[124.968908,1.310883],[124.9709170000001,1.30588],[124.9703310000001,1.301479],[124.973448,1.299008],[124.977649,1.303791],[124.98185,1.312351],[124.98446700000011,1.313272],[124.996965,1.328143],[125.009384,1.316432],[125.01499400000012,1.302511],[125.022392,1.297958],[125.022555,1.290482],[125.024713,1.288642],[125.035828,1.286423],[125.0372890000001,1.288676],[125.04345100000012,1.288478],[125.0479140000001,1.290492],[125.06301210000004,1.288014400000066],[125.0677935000001,1.295673900000054],[125.06565200000011,1.29701110000002],[125.06610770000009,1.298329500000023],[125.06789120000008,1.298063100000036],[125.06795430000011,1.303684500000031],[125.06719590000012,1.306069100000059],[125.06631820000007,1.305510600000048],[125.06592790000002,1.31099990000007],[125.06390810000005,1.308441100000039],[125.06423370000005,1.313267600000074],[125.06124660000012,1.307884100000024],[125.0622466000001,1.314893500000039],[125.06442740000011,1.315863300000046],[125.06159690000004,1.320034600000042],[125.06564680000008,1.321598400000028],[125.06615090000003,1.328619100000026],[125.07104140000001,1.329900100000032],[125.07228840000005,1.331309600000054],[125.07126270000003,1.333880600000043],[125.072416,1.335008100000039],[125.07313090000002,1.333346200000051],[125.073259,1.337608900000021],[125.07522080000001,1.337293800000054],[125.07603160000008,1.338578300000052],[125.0749823000001,1.33948410000005],[125.0762,1.340390600000035],[125.07550320000007,1.342657100000054],[125.07461,1.34215],[125.0731770000001,1.345940700000028],[125.0765527000001,1.344336100000021],[125.07314050000002,1.348675400000047],[125.0751203000001,1.34883],[125.07508270000005,1.350353600000062],[125.07034920000001,1.352740800000049],[125.07694770000012,1.352461600000026],[125.07628860000011,1.353399800000034],[125.07780390000005,1.35511740000004],[125.07531920000008,1.354494500000044],[125.07509670000002,1.35590220000006],[125.07968380000011,1.356031],[125.07542630000012,1.359391300000027],[125.07772670000008,1.36629720000002],[125.08269570000004,1.370337800000073],[125.09029340000006,1.373013100000037],[125.09964430000002,1.382000500000061],[125.10120690000008,1.388274500000023],[125.0991414,1.3877],[125.0994521,1.388700700000072],[125.10448350000001,1.396835600000031],[125.092297,1.422478],[125.09214150000003,1.447173500000076],[125.08717500000012,1.446047],[125.079862,1.450194],[125.064461,1.444855],[125.05427,1.447929],[125.04646800000012,1.453045],[125.0306498000001,1.453617100000031],[125.040331,1.464014],[125.04941,1.479847],[125.05712030000007,1.486588100000063],[125.0652993000001,1.497118100000023],[125.08322190000001,1.512690700000064],[125.08352040000011,1.524561700000049],[125.07625380000002,1.526223400000049],[125.07170610000003,1.536361900000031],[125.085204,1.540453],[125.09064100000012,1.544041],[125.095216,1.549871],[125.105734,1.555552],[125.109923,1.559828],[125.11221100000012,1.560665],[125.1260850000001,1.558183],[125.136174,1.563851],[125.146026,1.576821],[125.147579,1.583867],[125.14662,1.590096],[125.15512,1.595726]],[[124.959873,1.676070300000049],[124.9604882000001,1.672006600000032],[124.9585191000001,1.676903400000072],[124.959873,1.676070300000049]]],[[[124.7499600000001,1.750887400000067],[124.75020290000009,1.752827300000035],[124.74907710000002,1.751669700000036],[124.7499600000001,1.750887400000067]]],[[[124.74406180000005,1.743294200000037],[124.74396090000005,1.749923],[124.74069660000009,1.752836200000047],[124.73801830000002,1.752326700000026],[124.73550680000005,1.748853100000076],[124.7344663,1.74332110000006],[124.74002640000003,1.732645300000058],[124.74498560000006,1.728634700000043],[124.74804130000007,1.73200010000005],[124.74919860000011,1.73833140000005],[124.74703310000007,1.742078900000024],[124.74448840000002,1.741218900000035],[124.7432308000001,1.742324900000028],[124.74406180000005,1.743294200000037]]],[[[124.76231590000009,1.742476400000044],[124.76611530000002,1.745389700000032],[124.75842680000005,1.753244400000028],[124.7556780000001,1.749091],[124.75505880000003,1.745296900000028],[124.75862060000009,1.741060100000027],[124.76231590000009,1.742476400000044]]],[[[125.03588250000007,1.76496480000003],[125.03403990000004,1.763597200000049],[125.0377208000001,1.76075],[125.03588250000007,1.76496480000003]]],[[[124.80481080000004,1.78390150000007],[124.80447990000005,1.785238700000036],[124.80381450000004,1.784141200000022],[124.80481080000004,1.78390150000007]]],[[[125.05735490000006,1.780862],[125.05778670000007,1.78623170000003],[125.05666580000002,1.786574200000075],[125.05387180000002,1.783562500000073],[125.0533785,1.774727600000062],[125.04950430000008,1.76565590000007],[125.049272,1.760884200000021],[125.0514462000001,1.759333100000049],[125.058073,1.76554150000004],[125.059447,1.771807600000045],[125.05665890000012,1.778897100000052],[125.05735490000006,1.780862]]],[[[124.79480850000004,1.794296600000052],[124.792538,1.795245100000045],[124.78948490000005,1.790912200000037],[124.7885285000001,1.780809500000032],[124.7903602,1.777237200000059],[124.796902,1.775577300000066],[124.79797040000005,1.776387900000032],[124.79577360000008,1.786369500000035],[124.79855690000011,1.793934800000045],[124.79480850000004,1.794296600000052]]],[[[125.056161,1.78914750000007],[125.05898060000004,1.793855],[125.05833860000007,1.797151],[125.056397,1.794728],[125.056161,1.78914750000007]]],[[[125.09246630000007,1.832001200000036],[125.092602,1.829876300000024],[125.09342020000008,1.831657100000029],[125.09246630000007,1.832001200000036]]],[[[125.09889440000006,1.84316860000007],[125.09785190000002,1.843776300000059],[125.09694990000003,1.84026730000005],[125.09595720000004,1.840977800000076],[125.09243430000004,1.837158600000066],[125.0900726000001,1.836787100000038],[125.09250860000009,1.832878300000061],[125.09901180000008,1.831670400000064],[125.10057740000002,1.83609210000003],[125.09827010000004,1.83970370000003],[125.09889440000006,1.84316860000007]]],[[[125.134767,1.846431500000051],[125.132618,1.846303500000033],[125.13071860000002,1.839070900000024],[125.12472,1.833343800000023],[125.12770440000008,1.834867600000052],[125.12415410000006,1.827744100000075],[125.124817,1.825304900000049],[125.12699970000006,1.824471600000038],[125.1305420000001,1.824896100000046],[125.13446070000009,1.828294600000049],[125.13267180000003,1.824304],[125.13599840000006,1.822478],[125.12249350000002,1.819600100000059],[125.11812340000006,1.817247200000054],[125.1146089,1.817840900000022],[125.1135111000001,1.812750900000026],[125.11475670000004,1.807550900000024],[125.11901080000007,1.801704500000028],[125.11977740000009,1.796853400000032],[125.12735770000006,1.788832700000057],[125.1308917,1.782129600000076],[125.13229540000009,1.775429],[125.13098240000011,1.768302800000072],[125.13307640000005,1.759779200000025],[125.13245660000007,1.753268500000047],[125.13423530000011,1.74847010000002],[125.13979720000009,1.745409],[125.1416842000001,1.742164600000024],[125.1506763000001,1.734678300000041],[125.1511359000001,1.740840800000058],[125.1490123000001,1.746684600000037],[125.15316790000008,1.7481],[125.15684130000011,1.746916800000065],[125.16102290000003,1.747689],[125.14742160000003,1.752822600000059],[125.14705420000007,1.757646200000067],[125.15243730000009,1.761203800000033],[125.1549199000001,1.766506400000026],[125.16054250000002,1.769876100000033],[125.1634716000001,1.76976540000004],[125.16496070000005,1.768022100000053],[125.175107,1.76868],[125.17745330000002,1.771169100000066],[125.1816612,1.771753700000033],[125.18568550000009,1.774642800000038],[125.185346,1.780270100000052],[125.18811740000001,1.782008400000052],[125.18655070000011,1.785734700000035],[125.187565,1.787796800000024],[125.1852788000001,1.79098810000005],[125.18640280000011,1.795729400000027],[125.18563520000009,1.799696],[125.18169610000007,1.801308400000039],[125.17954240000006,1.804017300000055],[125.17568210000002,1.804799],[125.17240420000007,1.802686200000039],[125.16686510000011,1.802505300000064],[125.16375320000009,1.805563600000028],[125.1632502000001,1.808109800000068],[125.16042770000001,1.808327500000075],[125.15538140000001,1.819560800000033],[125.15104470000006,1.822861900000021],[125.1496863000001,1.822622400000057],[125.15051040000003,1.821415600000023],[125.14657190000003,1.823724700000071],[125.14950140000008,1.823908800000027],[125.14995610000005,1.825569600000051],[125.14665690000004,1.828011900000035],[125.14575,1.826780500000041],[125.1459139000001,1.830290500000046],[125.14357560000008,1.834527],[125.13828350000006,1.84069640000007],[125.13653220000003,1.845977300000072],[125.134767,1.846431500000051]]],[[[125.0979489,1.884600900000066],[125.0991524000001,1.887922800000069],[125.0941193000001,1.884530100000063],[125.08795470000007,1.882834800000069],[125.08308940000006,1.872816800000066],[125.07561210000006,1.863817500000039],[125.0748354000001,1.860110500000076],[125.07068520000007,1.857943700000021],[125.06608110000002,1.85825490000002],[125.0645254000001,1.844227],[125.055546,1.835243800000057],[125.05351640000003,1.826479500000062],[125.05154320000008,1.824061500000028],[125.05133730000011,1.817971800000066],[125.04829340000003,1.808650100000023],[125.05109650000009,1.80472560000004],[125.0584113000001,1.805657600000075],[125.06114670000011,1.807474600000035],[125.06538210000008,1.819984400000067],[125.06736770000009,1.820453400000076],[125.0724355000001,1.82758350000006],[125.08099210000012,1.832652400000029],[125.08712530000003,1.838767800000028],[125.08877060000009,1.845167400000037],[125.08703850000006,1.851528500000029],[125.08831060000011,1.859067200000027],[125.09211280000011,1.869402600000058],[125.0982772000001,1.877898300000027],[125.09899980000012,1.88200450000005],[125.0979489,1.884600900000066]]]]},"properties":{"shapeName":"Minahasa Utara","shapeISO":"","shapeID":"22746128B85809517036705","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[112.36825560000011,-7.324729799999943],[112.363075,-7.326863],[112.358505,-7.326427],[112.35800170000005,-7.330718899999965],[112.3527501000001,-7.333333899999957],[112.34635980000007,-7.3405671],[112.34711990000005,-7.3435464],[112.34573360000002,-7.345046899999943],[112.34403220000002,-7.346144099999947],[112.344849,-7.347514],[112.341171,-7.34828],[112.34327690000009,-7.348949299999958],[112.34469600000011,-7.353458799999942],[112.33700560000011,-7.361339],[112.33523550000007,-7.370165199999974],[112.33709710000005,-7.380484499999966],[112.348331,-7.398716],[112.347543,-7.405775],[112.3462518,-7.405641899999978],[112.3455437,-7.409650099999965],[112.347066,-7.410074699999939],[112.34667700000011,-7.415905],[112.349238,-7.420884799999953],[112.34636300000011,-7.420139],[112.34469600000011,-7.421627],[112.341181,-7.436054],[112.347554,-7.436979699999938],[112.34595160000003,-7.441489],[112.3407592000001,-7.4406723],[112.33794720000003,-7.447384199999931],[112.3343374000001,-7.446954199999936],[112.332756,-7.453563699999961],[112.34166710000011,-7.459694799999966],[112.350647,-7.454658],[112.3582,-7.457599],[112.368813,-7.456493],[112.38120260000005,-7.458895599999948],[112.3975448000001,-7.457509899999934],[112.404532,-7.461755],[112.40272,-7.462677],[112.40321360000007,-7.466614599999957],[112.399742,-7.46483],[112.39269250000007,-7.467259299999967],[112.3905105,-7.469966299999953],[112.39009990000011,-7.478789099999972],[112.388756,-7.480921399999943],[112.3840255,-7.478748199999927],[112.37651060000007,-7.482960599999956],[112.37573240000006,-7.487007499999947],[112.37410000000011,-7.487193499999933],[112.374622,-7.493467],[112.376708,-7.497687],[112.37612600000011,-7.503232],[112.374982,-7.503939],[112.37444770000002,-7.51695],[112.371796,-7.516519],[112.371642,-7.517822],[112.373217,-7.519159],[112.374118,-7.524639599999944],[112.36707150000007,-7.5242806],[112.36736510000003,-7.529286099999979],[112.36986380000008,-7.529858799999943],[112.368869,-7.539142],[112.370801,-7.539841],[112.368433,-7.543733],[112.3648,-7.544157],[112.364305,-7.548666],[112.365379,-7.548903],[112.363716,-7.552638],[112.36671400000012,-7.553626],[112.36667180000006,-7.556067599999949],[112.36883540000008,-7.556331],[112.36955200000011,-7.559528],[112.36798890000011,-7.561676899999952],[112.374901,-7.563066],[112.37264870000001,-7.5652727],[112.37158370000009,-7.570790299999942],[112.37357320000001,-7.572248399999978],[112.37296290000006,-7.575732599999981],[112.37670130000004,-7.5763258],[112.37562900000012,-7.583847],[112.37076560000003,-7.583994299999972],[112.375879,-7.590616],[112.376439,-7.594425],[112.38322440000002,-7.5958327],[112.387352,-7.606703],[112.4038925000001,-7.622851299999979],[112.40409100000011,-7.635592],[112.410538,-7.645973],[112.41042320000008,-7.6535147],[112.41205590000004,-7.657669899999973],[112.410881,-7.663517799999966],[112.412056,-7.665775],[112.41167440000004,-7.673535699999945],[112.41557300000011,-7.680299],[112.4217681,-7.685287799999969],[112.424347,-7.6925],[112.430283,-7.699743],[112.438591,-7.732868],[112.447739,-7.741866],[112.44809,-7.743893],[112.446228,-7.744949099999928],[112.448334,-7.751154],[112.446785,-7.759148],[112.4476783,-7.764938499999971],[112.4508972000001,-7.767267599999968],[112.45002740000007,-7.7705171],[112.45583320000003,-7.779130799999962],[112.460586,-7.770412],[112.46474450000005,-7.768086799999935],[112.47082510000007,-7.7684416],[112.47464750000006,-7.767135],[112.47816550000005,-7.768938299999945],[112.49655320000011,-7.762488699999949],[112.50055860000009,-7.762549699999965],[112.5026262,-7.756044299999928],[112.5074098,-7.755042899999978],[112.51336070000002,-7.751242],[112.51485610000009,-7.741796399999942],[112.5219896000001,-7.738192899999945],[112.52916120000009,-7.7369393],[112.533253,-7.725356],[112.5401094,-7.725769399999933],[112.54900530000009,-7.730437599999959],[112.57454130000008,-7.733932099999947],[112.585846,-7.720607],[112.58927150000011,-7.714127899999937],[112.589218,-7.709964],[112.593384,-7.701399],[112.59545130000004,-7.700939],[112.59759510000004,-7.697802399999944],[112.598,-7.694671],[112.60204310000006,-7.689976099999967],[112.60883300000012,-7.687208],[112.61437980000005,-7.681702899999948],[112.62363430000005,-7.666642499999966],[112.6223983000001,-7.660550399999977],[112.624489,-7.659332],[112.62917320000008,-7.650264599999957],[112.6275634000001,-7.639051299999949],[112.62016290000008,-7.628381599999955],[112.619476,-7.623177],[112.62110130000008,-7.615608099999974],[112.630371,-7.614770299999975],[112.63836660000004,-7.609410599999933],[112.65102380000008,-7.597758099999965],[112.65540710000005,-7.5955587],[112.65491570000006,-7.5939993],[112.6605489000001,-7.592167],[112.66052320000006,-7.587997499999972],[112.66166420000002,-7.588975],[112.66236250000009,-7.587727],[112.66071000000011,-7.586734499999977],[112.66180860000009,-7.586368399999969],[112.6608771000001,-7.583895],[112.65370030000008,-7.582758799999965],[112.65428710000003,-7.580191699999943],[112.66401250000001,-7.560444],[112.670564,-7.560774699999968],[112.66352670000003,-7.5598906],[112.663694,-7.557212],[112.65157310000006,-7.546725099999946],[112.64674530000002,-7.537044699999967],[112.640167,-7.536288],[112.630479,-7.532712],[112.619858,-7.518998],[112.614234,-7.515409],[112.608716,-7.50723],[112.60544820000007,-7.5066165],[112.60263220000002,-7.501175099999955],[112.5977282,-7.500064599999973],[112.591309,-7.494201],[112.58185930000002,-7.4919316],[112.579994,-7.48643],[112.57782,-7.484037],[112.573212,-7.483362],[112.570325,-7.478125],[112.562632,-7.475217],[112.55506900000012,-7.475113],[112.53772170000002,-7.470404099999939],[112.534065,-7.47121],[112.529217,-7.469222],[112.512192,-7.466928],[112.50548550000008,-7.462478499999975],[112.488594,-7.459949],[112.468643,-7.445291],[112.45668790000002,-7.446969399999944],[112.46232290000012,-7.432275799999957],[112.46781080000005,-7.431708799999967],[112.47347250000007,-7.429113299999926],[112.473816,-7.424147],[112.48354330000006,-7.417044499999975],[112.48351280000009,-7.410325399999977],[112.48627470000008,-7.4090093],[112.491798,-7.410289],[112.49372660000006,-7.409214599999927],[112.49208240000007,-7.399090699999931],[112.48522350000007,-7.398938],[112.48467160000007,-7.400149599999963],[112.47637940000004,-7.381835899999942],[112.47583770000006,-7.371327399999927],[112.4788132000001,-7.365692099999933],[112.476601,-7.352898],[112.478821,-7.351797],[112.478989,-7.349411],[112.482101,-7.348994],[112.481907,-7.345164799999964],[112.48468020000007,-7.340868899999975],[112.48449710000011,-7.336791499999947],[112.47970530000009,-7.32926],[112.47866060000001,-7.309124],[112.47738650000008,-7.305738899999938],[112.4716797000001,-7.304948299999978],[112.46782680000001,-7.3064504],[112.46234890000005,-7.312415099999953],[112.4598999000001,-7.312901],[112.4573256000001,-7.312040799999977],[112.45704660000001,-7.308965],[112.455589,-7.311],[112.452103,-7.309813],[112.450752,-7.305495],[112.44973,-7.307398],[112.447555,-7.306414],[112.4474560000001,-7.303109],[112.441978,-7.308053],[112.441498,-7.309281],[112.4432303000001,-7.310784],[112.44034580000005,-7.314096499999948],[112.43224970000006,-7.313972099999944],[112.428669,-7.310806],[112.421452,-7.317191],[112.421161,-7.314501],[112.423188,-7.31255],[112.41703240000004,-7.3127533],[112.41902920000007,-7.316798199999937],[112.40975190000006,-7.317613599999959],[112.40199040000005,-7.322332199999948],[112.401378,-7.325681],[112.39792000000011,-7.32672],[112.396756,-7.324857],[112.396133,-7.327395],[112.394103,-7.327046],[112.39481,-7.330941],[112.39128040000003,-7.333449399999949],[112.381859,-7.330095],[112.37999700000012,-7.32681],[112.37619,-7.327779],[112.37645,-7.323488],[112.371765,-7.323771],[112.37175,-7.326587],[112.36825560000011,-7.324729799999943]],[[112.4575119000001,-7.456762699999956],[112.46683,-7.455186399999945],[112.46714870000005,-7.462195099999974],[112.468403,-7.462337799999943],[112.46746270000006,-7.467166],[112.46553260000007,-7.467224499999929],[112.46476740000003,-7.473194],[112.46138760000008,-7.473154399999942],[112.46051020000004,-7.483081699999957],[112.45069940000008,-7.4817565],[112.4494,-7.492266899999947],[112.443412,-7.490551399999958],[112.4435482,-7.481765799999948],[112.43948560000001,-7.481368099999941],[112.43634210000005,-7.481618899999944],[112.43620220000003,-7.4879531],[112.432962,-7.487127],[112.43294670000012,-7.484869],[112.4275927000001,-7.483640199999968],[112.42816230000005,-7.480607199999952],[112.42610760000002,-7.480852099999936],[112.42280990000006,-7.492911399999969],[112.4149691,-7.4940506],[112.413267,-7.489855],[112.40758480000011,-7.489386],[112.40653930000008,-7.477143499999954],[112.40992520000009,-7.477384899999947],[112.41218460000005,-7.472479899999939],[112.41170240000008,-7.4690084],[112.414017,-7.466577],[112.4174991000001,-7.465841],[112.4151548000001,-7.464225499999941],[112.41528070000004,-7.457378199999937],[112.42289730000005,-7.457092599999953],[112.43074800000011,-7.460143099999925],[112.433937,-7.45983],[112.447418,-7.450203],[112.45504290000008,-7.447397099999932],[112.4575119000001,-7.456762699999956]]]},"properties":{"shapeName":"Mojokerto","shapeISO":"","shapeID":"22746128B34314088114936","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[123.15748520000011,-3.557238699999971],[123.14923130000011,-3.556255499999963],[123.1336923,-3.564286699999968],[123.13285760000008,-3.563019499999939],[123.13303050000002,-3.564773199999934],[123.1286050000001,-3.566858299999978],[123.09287640000002,-3.571428699999956],[123.07618710000008,-3.575838699999963],[123.07219080000004,-3.577442499999961],[123.071786,-3.580367499999966],[123.06485710000004,-3.5855938],[123.06039280000005,-3.585228],[123.056972,-3.587241199999937],[123.0561550000001,-3.589343799999938],[123.04390720000004,-3.5927878],[123.04391550000003,-3.594040399999926],[123.0503374000001,-3.602634199999954],[123.06980340000007,-3.618985199999941],[123.07377870000005,-3.624693899999954],[123.07804580000004,-3.624994699999945],[123.09069310000007,-3.632292399999926],[123.09627720000003,-3.633309299999951],[123.10714450000012,-3.639366],[123.1148184000001,-3.6390508],[123.11778320000008,-3.640743599999951],[123.12081650000005,-3.633273899999949],[123.11970910000002,-3.615021599999977],[123.12322930000005,-3.611635799999931],[123.12880240000004,-3.611070599999948],[123.15314260000002,-3.620726299999944],[123.1647934,-3.622023],[123.16494940000007,-3.6208698],[123.16905680000002,-3.622652],[123.17092650000006,-3.620582],[123.17439070000012,-3.621796499999959],[123.17780650000009,-3.621119199999953],[123.1785076000001,-3.617389099999968],[123.1826913000001,-3.613923899999975],[123.1808175000001,-3.600951299999963],[123.1735354000001,-3.587317],[123.17363320000004,-3.584425299999964],[123.16389520000007,-3.569560199999955],[123.16054020000001,-3.560399099999927],[123.15748520000011,-3.557238699999971]]],[[[123.04629660000012,-3.548986399999933],[123.04281160000005,-3.546739399999979],[123.03327430000002,-3.545592599999964],[123.04350620000002,-3.550544899999977],[123.04629660000012,-3.548986399999933]]],[[[123.1059633000001,-3.5013451],[123.10842250000007,-3.497765399999935],[123.10884380000005,-3.4943773],[123.1035389000001,-3.4966393],[123.09834640000008,-3.502553199999966],[123.09604070000012,-3.502479199999925],[123.09499470000003,-3.505247899999972],[123.091449,-3.505360199999927],[123.08606450000002,-3.509048299999961],[123.06997930000011,-3.515595699999949],[123.05716530000007,-3.513425299999938],[123.06202070000006,-3.52231],[123.05856960000006,-3.522162299999934],[123.057453,-3.5246331],[123.05991620000009,-3.527625399999977],[123.06476950000001,-3.528381499999966],[123.07782940000004,-3.524337199999934],[123.1059633000001,-3.5013451]]],[[[122.61539080000011,-3.391716799999926],[122.61424040000009,-3.388812099999939],[122.611113,-3.388056699999936],[122.61219670000003,-3.390461199999947],[122.61539080000011,-3.391716799999926]]],[[[122.817766,-3.388225399999953],[122.81914990000007,-3.386137399999939],[122.81835330000001,-3.385336499999937],[122.81681880000008,-3.3865264],[122.817766,-3.388225399999953]]],[[[122.6059001000001,-3.377756699999964],[122.60281870000006,-3.377613699999927],[122.6038989000001,-3.37889],[122.6059001000001,-3.377756699999964]]],[[[122.59268150000003,-3.363559899999927],[122.59367510000004,-3.362612699999943],[122.59103920000007,-3.361419099999978],[122.59052130000009,-3.362602399999957],[122.59268150000003,-3.363559899999927]]],[[[122.39259040000002,-3.345504],[122.39135150000004,-3.343398099999945],[122.3900559000001,-3.345525499999951],[122.39274380000006,-3.350148299999944],[122.38946070000009,-3.352086199999974],[122.3945662000001,-3.355368399999975],[122.39507260000005,-3.353568099999961],[122.39726580000001,-3.354733499999952],[122.39784650000001,-3.351074099999948],[122.39611040000011,-3.348801599999945],[122.39702660000012,-3.345790699999952],[122.3945486,-3.344217899999933],[122.39259040000002,-3.345504]]],[[[122.39321690000008,-3.343428199999948],[122.39245490000008,-3.342172099999971],[122.39188500000012,-3.343303],[122.39321690000008,-3.343428199999948]]],[[[122.39346030000002,-3.339184099999954],[122.39133580000009,-3.340492199999971],[122.39360210000007,-3.340790099999936],[122.39346030000002,-3.339184099999954]]],[[[122.401549,-3.311865099999977],[122.40040380000005,-3.311039099999959],[122.397162,-3.313071099999945],[122.39869880000003,-3.314327899999967],[122.396425,-3.314628199999959],[122.39778500000011,-3.316811599999937],[122.39576130000012,-3.317529299999933],[122.39836070000001,-3.318177299999945],[122.39893980000011,-3.321741],[122.39701070000001,-3.322929599999952],[122.396925,-3.326551799999947],[122.39485620000005,-3.325964499999941],[122.39550410000004,-3.3278284],[122.39273060000005,-3.329535499999963],[122.39359490000004,-3.331990699999949],[122.39534910000009,-3.330934099999979],[122.39615270000002,-3.332791899999961],[122.39725,-3.330304099999978],[122.39485720000005,-3.329377],[122.39810890000001,-3.326719699999956],[122.399525,-3.327015399999937],[122.39917690000004,-3.329105699999957],[122.4015462000001,-3.332333499999947],[122.40642510000009,-3.329559699999947],[122.40638980000006,-3.324303599999951],[122.4036804000001,-3.324345599999958],[122.4031093000001,-3.328384299999925],[122.40146530000004,-3.327506899999946],[122.40164530000004,-3.324048399999981],[122.40383810000003,-3.322653299999956],[122.40381130000003,-3.320665599999927],[122.405093,-3.321546399999932],[122.40693340000007,-3.320216599999981],[122.40520290000006,-3.319499499999949],[122.40573470000004,-3.317696399999932],[122.40336840000009,-3.319287599999939],[122.40463850000003,-3.316446099999951],[122.4013341000001,-3.315506399999947],[122.40371290000007,-3.3119897],[122.401549,-3.311865099999977]]],[[[122.39092940000012,-3.303117499999928],[122.38922850000006,-3.303858699999978],[122.39007980000008,-3.306763199999978],[122.39209850000009,-3.304559899999958],[122.39092940000012,-3.303117499999928]]],[[[122.3846009,-3.294972899999948],[122.38491480000005,-3.293681699999979],[122.38320890000011,-3.294260099999974],[122.38230820000001,-3.298202099999969],[122.38012490000006,-3.298424599999976],[122.3781011000001,-3.300814799999955],[122.37872040000002,-3.301703499999974],[122.38467170000001,-3.300702399999977],[122.38322630000005,-3.297313199999962],[122.38341980000007,-3.295055099999956],[122.3846009,-3.294972899999948]]],[[[122.39213830000006,-3.277423499999941],[122.3889689,-3.277562499999931],[122.38279310000007,-3.283752199999981],[122.38318,-3.292232699999943],[122.38623470000005,-3.293151599999931],[122.38604360000011,-3.294753799999967],[122.38985550000007,-3.292429899999945],[122.39209280000011,-3.288359499999956],[122.39089830000012,-3.284074],[122.39219290000005,-3.281466399999942],[122.39457570000002,-3.282359799999938],[122.39339860000007,-3.277706099999932],[122.39213830000006,-3.277423499999941]]],[[[122.41189640000005,-3.276177099999927],[122.41020430000003,-3.275968599999942],[122.4107762000001,-3.276944799999967],[122.41189640000005,-3.276177099999927]]],[[[122.40972760000011,-3.273991299999977],[122.40897840000002,-3.272653599999956],[122.40748640000004,-3.274457599999948],[122.40972760000011,-3.273991299999977]]],[[[122.39576690000001,-3.272700699999973],[122.396728,-3.2774816],[122.39835270000003,-3.273338],[122.39576690000001,-3.272700699999973]]],[[[122.39867690000005,-3.271467],[122.39718,-3.271835399999929],[122.39833830000009,-3.273108899999954],[122.39867690000005,-3.271467]]],[[[122.44022560000008,-3.279292299999952],[122.43887030000008,-3.27574],[122.43659190000005,-3.275015799999949],[122.43843750000008,-3.271537499999965],[122.43650240000011,-3.270519],[122.432388,-3.276493],[122.43026590000011,-3.284261399999934],[122.42816410000012,-3.284109299999955],[122.42878760000008,-3.283242199999961],[122.42542540000011,-3.281108],[122.42573360000006,-3.285170899999969],[122.42800340000008,-3.286682599999949],[122.4283239,-3.2848709],[122.42918670000006,-3.287770099999932],[122.42756350000002,-3.290438299999948],[122.43106350000005,-3.291622099999927],[122.43405060000009,-3.287655099999938],[122.43382,-3.283828699999958],[122.43525110000007,-3.283133899999939],[122.43622840000012,-3.284190599999931],[122.43432040000005,-3.286341299999947],[122.43648760000008,-3.2878338],[122.43894290000003,-3.282487199999935],[122.4421307,-3.280852799999934],[122.44022560000008,-3.279292299999952]]],[[[122.3957564000001,-3.269902899999977],[122.39379250000002,-3.271232],[122.39509370000007,-3.272309299999961],[122.39671420000002,-3.270663799999966],[122.3957564000001,-3.269902899999977]]],[[[122.59321460000001,-3.146282299999939],[122.59140370000011,-3.144503499999928],[122.591835,-3.146337699999947],[122.59321460000001,-3.146282299999939]]],[[[122.62365660000012,-3.134327499999927],[122.6236824,-3.1332099],[122.62234420000004,-3.1338723],[122.62365660000012,-3.134327499999927]]],[[[122.613963,-3.130595399999947],[122.61262550000004,-3.123379799999952],[122.60952220000001,-3.1249924],[122.609897,-3.126710799999955],[122.6071353000001,-3.1281219],[122.60742490000007,-3.129983899999957],[122.613963,-3.130595399999947]]],[[[122.58983290000003,-3.118908099999942],[122.59022990000005,-3.118047399999966],[122.5880926000001,-3.1183392],[122.58983290000003,-3.118908099999942]]],[[[122.57556520000003,-3.114673399999958],[122.57118860000003,-3.113731599999937],[122.57053380000002,-3.115327499999978],[122.57317910000006,-3.117584299999976],[122.58117130000005,-3.114748199999951],[122.57556520000003,-3.114673399999958]]],[[[122.54267360000006,-3.092737099999965],[122.53454090000002,-3.093271199999947],[122.53148870000007,-3.095929599999977],[122.53388980000011,-3.096715499999959],[122.54384240000002,-3.093492099999935],[122.54267360000006,-3.092737099999965]]],[[[122.52666290000002,-3.092038199999934],[122.52319350000005,-3.0916629],[122.52016450000008,-3.093379299999981],[122.52327330000003,-3.099171199999944],[122.527046,-3.099143699999956],[122.52941780000003,-3.095327099999963],[122.52666290000002,-3.092038199999934]]],[[[122.5319674000001,-3.089263899999935],[122.53116450000005,-3.090499399999942],[122.53312530000005,-3.091010099999949],[122.5319674000001,-3.089263899999935]]],[[[122.52982660000009,-3.090079099999969],[122.5307590000001,-3.089414099999942],[122.52929260000008,-3.088865299999952],[122.52982660000009,-3.090079099999969]]],[[[122.52478560000009,-3.0881581],[122.52412330000004,-3.086870899999951],[122.5213774,-3.087411399999951],[122.52247960000011,-3.088826399999959],[122.52478560000009,-3.0881581]]],[[[122.533391,-3.079484599999944],[122.53022550000003,-3.080652],[122.53107450000005,-3.083448399999952],[122.52708870000004,-3.086256299999945],[122.52764090000005,-3.0874333],[122.53247980000003,-3.089115399999969],[122.53674440000009,-3.0880006],[122.53749130000006,-3.086341799999957],[122.53393,-3.082815599999947],[122.53703810000002,-3.0805805],[122.533391,-3.079484599999944]]],[[[122.46998630000007,-3.058965399999977],[122.46478860000002,-3.058738299999959],[122.46109860000001,-3.061416799999961],[122.46855420000009,-3.072463199999959],[122.47839660000011,-3.078530499999943],[122.48142010000004,-3.078331399999968],[122.48449370000003,-3.074927099999968],[122.48463790000005,-3.072465899999941],[122.48010490000001,-3.068088299999943],[122.47914810000009,-3.063702399999954],[122.477387,-3.061949799999979],[122.47331770000005,-3.059295299999974],[122.46998630000007,-3.058965399999977]]],[[[122.49901840000007,-3.065606099999968],[122.49413750000008,-3.064090299999975],[122.48986490000004,-3.058545799999933],[122.48694420000004,-3.059248099999934],[122.48517550000008,-3.063404199999979],[122.4890984000001,-3.068225899999959],[122.48832790000006,-3.075051799999926],[122.48467170000004,-3.075207299999931],[122.4837725000001,-3.078232399999933],[122.481731,-3.078670099999954],[122.48217000000011,-3.080312899999967],[122.4881765,-3.082705399999952],[122.4893949000001,-3.085034299999961],[122.49198120000005,-3.084606599999972],[122.495594,-3.0870921],[122.516039,-3.089656499999933],[122.51929360000008,-3.087570299999925],[122.51416610000001,-3.070977399999947],[122.51571690000003,-3.068393899999933],[122.51422250000007,-3.064260299999944],[122.5094855000001,-3.0604097],[122.50661430000002,-3.059933299999955],[122.50278270000001,-3.060363099999961],[122.5013603000001,-3.061526199999946],[122.5011644000001,-3.064801199999977],[122.49901840000007,-3.065606099999968]]],[[[122.51874020000002,-3.056913],[122.51438080000003,-3.057743499999958],[122.5148756000001,-3.059527199999934],[122.52228820000005,-3.061348399999929],[122.523412,-3.0602463],[122.51874020000002,-3.056913]]],[[[122.48339930000009,-3.059938699999975],[122.48218210000005,-3.0566108],[122.47839710000005,-3.057306899999958],[122.47879710000007,-3.0603824],[122.48261350000007,-3.061262299999953],[122.48339930000009,-3.059938699999975]]],[[[122.50265610000008,-3.054248099999938],[122.50073190000012,-3.053577599999926],[122.5016164000001,-3.054908299999965],[122.50265610000008,-3.054248099999938]]],[[[122.5179194000001,-3.054268299999933],[122.51638550000007,-3.052810099999931],[122.51304610000011,-3.054496399999948],[122.51302420000002,-3.056135099999949],[122.5179194000001,-3.054268299999933]]],[[[122.38693660000001,-3.060127799999975],[122.38882940000008,-3.051562699999977],[122.38585780000005,-3.051659299999926],[122.37957810000012,-3.055310799999972],[122.38381450000008,-3.059730199999933],[122.38693660000001,-3.060127799999975]]],[[[122.36081170000011,-3.033432],[122.36182440000005,-3.0318413],[122.3601145,-3.031271599999968],[122.35923050000008,-3.032619099999977],[122.36081170000011,-3.033432]]],[[[122.38450780000005,-3.029937199999949],[122.37711650000006,-3.030001199999958],[122.37633690000007,-3.0323098],[122.37445390000005,-3.030509799999948],[122.36717980000003,-3.030676699999958],[122.36452440000005,-3.033749199999932],[122.362906,-3.032917899999973],[122.35838070000011,-3.035408799999971],[122.357726,-3.039757899999927],[122.36076,-3.042979099999968],[122.36932130000002,-3.042767599999934],[122.37228740000012,-3.045008499999938],[122.37595050000004,-3.041676099999961],[122.37803630000008,-3.042640199999937],[122.3780925000001,-3.044060599999966],[122.38489540000012,-3.043915899999945],[122.384652,-3.036558399999933],[122.3869515,-3.032573699999944],[122.3858811,-3.029986299999962],[122.38450780000005,-3.029937199999949]]],[[[122.35682510000004,-3.026782399999945],[122.35263630000009,-3.027470599999958],[122.35235760000012,-3.030796699999939],[122.35710090000009,-3.031222599999978],[122.35813080000003,-3.029791499999931],[122.35682510000004,-3.026782399999945]]],[[[122.36590420000005,-3.025562799999932],[122.36276570000007,-3.023369199999934],[122.3611982000001,-3.025924499999974],[122.36590420000005,-3.025562799999932]]],[[[122.32577790000005,-3.0185803],[122.32370950000006,-3.018914799999948],[122.3289142000001,-3.022686299999975],[122.32847270000002,-3.0204456],[122.32577790000005,-3.0185803]]],[[[122.40938170000004,-3.016788099999928],[122.40598220000004,-3.017246599999964],[122.398935,-3.022629199999926],[122.39193320000004,-3.029988399999979],[122.39163640000004,-3.033423499999969],[122.388751,-3.037529699999936],[122.391287,-3.039176099999963],[122.39280780000001,-3.043878899999925],[122.39554360000011,-3.043295499999942],[122.39598180000007,-3.044472699999972],[122.39647630000002,-3.043232199999977],[122.39744810000002,-3.045421],[122.40133120000007,-3.045024299999966],[122.39782260000004,-3.048016],[122.39809930000001,-3.053372699999954],[122.40358990000004,-3.058230799999933],[122.411638,-3.061878599999943],[122.41773520000004,-3.059632599999929],[122.42100530000005,-3.060139599999957],[122.42531180000003,-3.056452099999944],[122.4269657000001,-3.05251],[122.42088720000004,-3.042817299999967],[122.41747090000001,-3.041384799999946],[122.41173270000002,-3.035936899999967],[122.4130742000001,-3.029697499999941],[122.40521810000007,-3.027506899999935],[122.40470810000011,-3.026286],[122.40193520000003,-3.026487199999963],[122.40468160000012,-3.019280699999968],[122.41235770000003,-3.016878199999951],[122.40938170000004,-3.016788099999928]]],[[[122.32725270000003,-3.000106499999958],[122.31997080000008,-2.996264599999961],[122.31896390000009,-2.997521399999926],[122.320211,-3.000039899999933],[122.31680460000007,-2.999374399999965],[122.31576230000007,-3.000674599999968],[122.3164915000001,-3.002779399999952],[122.31975060000002,-3.003210099999933],[122.32415320000007,-3.007349899999952],[122.32441130000007,-3.011143599999969],[122.32800270000007,-3.010403099999962],[122.3290012000001,-3.012416099999939],[122.32759620000002,-3.0130555],[122.32600230000003,-3.011798299999953],[122.32592180000006,-3.013726299999973],[122.33009510000011,-3.014921699999945],[122.33097140000007,-3.0171048],[122.33586860000003,-3.019971899999973],[122.35227270000007,-3.0234444],[122.353527,-3.022655099999952],[122.35279890000004,-3.020791499999973],[122.34895810000012,-3.019515499999954],[122.34570780000001,-3.016489799999931],[122.36082680000004,-3.014547599999958],[122.357683,-3.009174399999949],[122.35428920000004,-3.006826599999954],[122.34788250000008,-3.0078655],[122.34057280000002,-3.006867299999954],[122.32725270000003,-3.000106499999958]]],[[[122.2136858,-2.885809199999926],[122.21349320000002,-2.887419],[122.21599020000008,-2.886703599999976],[122.2136858,-2.885809199999926]]],[[[122.17020350000007,-2.814281799999947],[122.16422110000008,-2.815252799999939],[122.16662280000003,-2.819294599999978],[122.17004650000001,-2.818744],[122.16852660000006,-2.815927099999953],[122.17020350000007,-2.814281799999947]]],[[[122.07873610000001,-2.9618532],[122.0849,-2.966988899999933],[122.08548610000003,-2.969030299999929],[122.08116760000007,-2.978080099999943],[122.08361330000002,-2.9860112],[122.0914570000001,-2.999998699999935],[122.1000438000001,-3.009015099999942],[122.1080720000001,-3.013653899999952],[122.1306863000001,-3.022098799999981],[122.14201,-3.021957099999952],[122.16147020000005,-3.025860699999953],[122.17654610000011,-3.030011099999967],[122.17931290000001,-3.032533799999953],[122.18087220000007,-3.035937699999977],[122.17968630000007,-3.047028099999977],[122.17322840000008,-3.071318899999937],[122.17184980000002,-3.084046199999932],[122.17560150000008,-3.088995799999964],[122.19182130000002,-3.098963799999979],[122.20559090000006,-3.111611899999957],[122.21157480000011,-3.1184201],[122.22220790000006,-3.134865299999944],[122.22870720000003,-3.139876699999945],[122.2325399,-3.140648599999963],[122.25000100000011,-3.134904],[122.25335980000011,-3.135006399999952],[122.26643700000011,-3.1451788],[122.2789064000001,-3.141154699999959],[122.2849222000001,-3.141454],[122.289367,-3.143234599999971],[122.29638260000002,-3.155669099999955],[122.31060510000009,-3.161913599999934],[122.31445450000001,-3.164983499999948],[122.31536010000002,-3.174634099999935],[122.31092860000001,-3.194221299999981],[122.30258770000012,-3.208874399999956],[122.29847130000007,-3.212533699999938],[122.29538910000008,-3.220628399999953],[122.29555330000005,-3.226183099999957],[122.3002954000001,-3.232558399999959],[122.30204390000006,-3.2377147],[122.29763040000012,-3.245972599999959],[122.29556330000003,-3.255266799999958],[122.29966890000003,-3.262316799999951],[122.31072540000002,-3.272946],[122.31404880000002,-3.272091],[122.31655890000002,-3.266824499999927],[122.31732750000003,-3.258631199999968],[122.32139630000006,-3.254081199999973],[122.32337470000004,-3.241330299999959],[122.32587050000006,-3.238665],[122.32488670000009,-3.233709599999941],[122.32754520000003,-3.232429699999955],[122.32751230000008,-3.234182499999974],[122.33187170000008,-3.236320599999942],[122.33582510000008,-3.234443],[122.3379622000001,-3.235187699999926],[122.3394062000001,-3.233802299999979],[122.33874140000012,-3.231905599999948],[122.34216720000006,-3.230951799999957],[122.34425890000011,-3.232906699999944],[122.34373360000006,-3.235965799999974],[122.34555320000004,-3.235378199999957],[122.34764540000003,-3.236877399999969],[122.35675250000008,-3.231055799999979],[122.3569437000001,-3.229589899999951],[122.36111690000007,-3.232604199999969],[122.36311540000008,-3.231792799999937],[122.36175360000004,-3.228684599999951],[122.36519010000006,-3.226718],[122.36683860000005,-3.227754799999957],[122.36593560000006,-3.226351899999941],[122.36810860000003,-3.225476899999933],[122.37051560000009,-3.229071699999963],[122.3638161,-3.233170299999927],[122.36335480000002,-3.235400899999945],[122.3652317000001,-3.236558199999934],[122.36496130000012,-3.237801],[122.36943410000003,-3.236337799999944],[122.369306,-3.238329499999963],[122.36697,-3.242287799999929],[122.36207840000009,-3.244538899999952],[122.36168080000004,-3.246419],[122.36276020000003,-3.244730599999968],[122.36391760000004,-3.245161499999938],[122.36334490000002,-3.248077299999977],[122.360135,-3.247181599999976],[122.35872180000001,-3.248814699999969],[122.3594031,-3.249755299999947],[122.3567068000001,-3.250518399999976],[122.35626580000007,-3.252437699999973],[122.35815270000012,-3.252821399999959],[122.35924530000011,-3.255244199999936],[122.363757,-3.254357499999969],[122.36499250000008,-3.2565573],[122.366708,-3.254302199999927],[122.36575860000005,-3.2509553],[122.36664040000005,-3.248414499999967],[122.36844790000009,-3.248798099999931],[122.3690835000001,-3.246902199999965],[122.37159540000005,-3.247966099999928],[122.37243730000012,-3.245560399999931],[122.3746096000001,-3.247356299999979],[122.37386310000011,-3.249379499999975],[122.371754,-3.249346399999979],[122.371593,-3.253225499999928],[122.37354540000001,-3.250246899999979],[122.37487620000002,-3.252255599999955],[122.37408650000009,-3.254570699999931],[122.37740170000006,-3.253106699999933],[122.37689180000007,-3.257042399999932],[122.38138760000004,-3.254862],[122.38406720000012,-3.255612599999949],[122.38345760000004,-3.259138199999938],[122.38587590000009,-3.257005799999945],[122.38507830000003,-3.255176099999971],[122.39392380000004,-3.250873699999943],[122.39471790000005,-3.248770799999932],[122.39473170000008,-3.251503799999966],[122.39776210000002,-3.249728699999935],[122.39697020000006,-3.247838799999954],[122.39885750000008,-3.2473619],[122.39701910000008,-3.245464499999969],[122.39692820000005,-3.243049199999973],[122.40108150000003,-3.239579099999958],[122.4056346000001,-3.242729399999973],[122.40780590000008,-3.2470287],[122.40747810000005,-3.255897599999969],[122.40865960000008,-3.257497199999932],[122.40767080000012,-3.260086599999966],[122.409705,-3.260869099999979],[122.41085,-3.257965499999955],[122.41505250000012,-3.256216399999971],[122.41683690000002,-3.259761599999933],[122.41857030000006,-3.259648199999958],[122.4172721000001,-3.260993199999973],[122.41616780000004,-3.260208499999976],[122.41640340000004,-3.262161499999934],[122.42188740000006,-3.261727399999927],[122.4224852000001,-3.263021],[122.42095260000008,-3.263854699999968],[122.42274070000008,-3.267468],[122.41949420000003,-3.264148599999942],[122.41936620000001,-3.2681247],[122.42203490000009,-3.268293599999936],[122.42166550000002,-3.270918399999971],[122.42365380000001,-3.272527299999979],[122.421677,-3.273804699999971],[122.42301540000005,-3.278117499999951],[122.42511710000008,-3.276069699999937],[122.42461070000002,-3.279265599999974],[122.42727230000003,-3.279685599999937],[122.4271083000001,-3.276440299999933],[122.4339589000001,-3.271998799999949],[122.43090180000002,-3.269221799999968],[122.43004430000008,-3.263604499999929],[122.43283340000005,-3.260401699999932],[122.43331880000005,-3.257418799999925],[122.43165780000004,-3.257903699999929],[122.42851320000011,-3.255596499999967],[122.4282108000001,-3.250742699999932],[122.4234795000001,-3.247390699999926],[122.42263180000009,-3.245304399999952],[122.42364410000005,-3.243367399999954],[122.42572440000004,-3.243299499999978],[122.42632650000007,-3.247017799999981],[122.42832560000011,-3.245982],[122.43083450000006,-3.247281899999962],[122.43094730000007,-3.245058699999959],[122.42946020000011,-3.244889699999931],[122.433008,-3.243002199999978],[122.433669,-3.2411436],[122.4334004000001,-3.239480599999979],[122.43053570000006,-3.238605299999961],[122.42998920000002,-3.235059699999965],[122.43257330000006,-3.234921],[122.42799220000006,-3.226621299999977],[122.42891350000002,-3.224660099999937],[122.4268353000001,-3.2177359],[122.424689,-3.216277399999967],[122.42611390000002,-3.209272299999952],[122.42421820000004,-3.205500499999971],[122.42281470000012,-3.205284899999981],[122.42357790000005,-3.203154599999948],[122.42645830000004,-3.203104599999961],[122.42642340000009,-3.200675499999932],[122.4293282000001,-3.20017],[122.42863530000011,-3.192485199999965],[122.43638770000007,-3.187905599999965],[122.46153030000005,-3.189496199999951],[122.4692126000001,-3.188772799999981],[122.48221850000004,-3.182691199999965],[122.48586750000004,-3.178568299999938],[122.47356080000009,-3.168694099999925],[122.46905170000002,-3.162084199999924],[122.46478880000006,-3.159745599999951],[122.46542690000001,-3.153445599999941],[122.46652270000004,-3.152888299999972],[122.46438970000008,-3.149770399999966],[122.4537798,-3.150808599999948],[122.457859,-3.1540595],[122.45967830000006,-3.162766599999941],[122.45363080000004,-3.163931599999955],[122.445287,-3.162143399999934],[122.44348250000007,-3.159682099999941],[122.44577250000009,-3.152116499999977],[122.4436664000001,-3.1419789],[122.43280850000008,-3.140574099999981],[122.43043340000008,-3.137159099999963],[122.4284262000001,-3.136773799999958],[122.42583710000008,-3.133638899999937],[122.42839590000006,-3.130926799999941],[122.42658530000006,-3.126888199999939],[122.4222195000001,-3.126266299999941],[122.4074266,-3.130431199999975],[122.39974070000005,-3.136049199999945],[122.3974492000001,-3.134577799999931],[122.39462620000006,-3.136616699999934],[122.39528570000004,-3.139436299999943],[122.38541550000002,-3.140356899999972],[122.38019810000003,-3.144776],[122.3714222000001,-3.141575499999931],[122.36841690000006,-3.1360745],[122.35852140000009,-3.128786],[122.35185160000003,-3.115603199999953],[122.34883780000007,-3.103551399999958],[122.34612530000004,-3.102544599999931],[122.3363663,-3.091976299999942],[122.33559460000004,-3.085799599999973],[122.32974750000005,-3.083634399999937],[122.32314830000007,-3.078392299999962],[122.31214670000008,-3.072604499999954],[122.306717,-3.066560599999946],[122.3051286000001,-3.0607247],[122.29785950000007,-3.058057399999939],[122.287936,-3.051608099999953],[122.28383930000007,-3.052324699999929],[122.27890560000003,-3.049246299999936],[122.27522250000004,-3.049562399999957],[122.26708670000005,-3.040423299999929],[122.2586864000001,-3.036502399999961],[122.25776740000003,-3.03445],[122.2587443000001,-3.033222599999931],[122.25105520000011,-3.012948699999924],[122.24476320000008,-3.013345],[122.2522517000001,-3.0121017],[122.25400130000003,-3.0101863],[122.26176510000005,-3.007618299999933],[122.26510540000004,-3.001127499999939],[122.26610650000009,-3.002607499999954],[122.26886860000002,-3.001128],[122.27165840000009,-3.002409099999966],[122.27726640000003,-3.001425499999925],[122.28059120000012,-2.989394],[122.2898646000001,-2.979269199999976],[122.30054010000003,-2.962398599999972],[122.30649640000001,-2.957155099999966],[122.30849180000007,-2.949898099999928],[122.3077694000001,-2.946069699999953],[122.3189913000001,-2.927564599999926],[122.32065880000005,-2.921017599999971],[122.3146018000001,-2.910342199999945],[122.312076,-2.910604099999944],[122.30886220000002,-2.906975199999977],[122.30704570000012,-2.906837699999926],[122.303465,-2.901866499999926],[122.30097500000011,-2.902034799999967],[122.298957,-2.897267699999929],[122.29433490000008,-2.895752],[122.29178610000008,-2.892037799999969],[122.28459920000012,-2.890532599999972],[122.27828290000002,-2.886355199999969],[122.27183960000002,-2.886234599999966],[122.26458820000005,-2.889822699999968],[122.2591599000001,-2.887244599999974],[122.25570890000006,-2.887467099999981],[122.25308930000006,-2.891253899999981],[122.25127970000005,-2.889121],[122.25402770000005,-2.880090699999926],[122.25029720000009,-2.877570299999945],[122.24494490000006,-2.879644499999927],[122.24235350000004,-2.883573299999966],[122.23909230000004,-2.883138599999938],[122.2399372000001,-2.8862189],[122.23728580000011,-2.884638799999948],[122.23133910000001,-2.887424],[122.22622120000005,-2.886933399999975],[122.22431290000009,-2.889128199999959],[122.22420090000003,-2.8926006],[122.22203050000007,-2.895323499999961],[122.21763740000006,-2.896952799999951],[122.21625150000011,-2.900076499999955],[122.20805330000007,-2.900717899999961],[122.20543680000003,-2.897210399999949],[122.20752740000012,-2.895089],[122.20704360000002,-2.887635099999954],[122.20447050000007,-2.882734399999947],[122.19846930000006,-2.882661399999961],[122.1935476000001,-2.878058299999964],[122.1913469000001,-2.877967799999965],[122.18632250000007,-2.872761599999933],[122.18520820000003,-2.869649299999935],[122.18418950000012,-2.865530899999953],[122.18567650000011,-2.862607799999978],[122.18545480000012,-2.857781799999941],[122.19323050000003,-2.844786599999964],[122.18480080000006,-2.823794799999973],[122.18171510000002,-2.822798599999942],[122.1779537000001,-2.818334599999957],[122.17410980000011,-2.818991899999958],[122.17259950000005,-2.822472799999957],[122.16917890000002,-2.820748199999969],[122.16762070000004,-2.821602899999959],[122.16608090000011,-2.819212099999959],[122.16419120000012,-2.819562],[122.16394630000002,-2.817660599999954],[122.15901910000002,-2.814218],[122.15562050000005,-2.8064493],[122.156172,-2.804343299999971],[122.15003250000007,-2.796271099999956],[122.13965650000011,-2.788871099999938],[122.13296090000006,-2.787736799999948],[122.13022990000002,-2.788932099999954],[122.12540090000005,-2.787543699999958],[122.1189174000001,-2.789323399999944],[122.10435310000003,-2.787151],[122.09403640000005,-2.789365699999962],[122.08561830000008,-2.788720499999954],[122.08331460000011,-2.783461099999954],[122.07691670000008,-2.776607],[122.07322050000005,-2.774619899999948],[122.06933360000005,-2.765585399999964],[122.06694620000007,-2.763503599999979],[122.065626,-2.764757399999951],[122.06316820000006,-2.761743799999977],[122.05993320000005,-2.7495154],[122.04697390000001,-2.740372599999944],[122.0291731000001,-2.724788799999942],[122.020225,-2.721269099999972],[122.019111,-2.722775299999967],[122.010062,-2.718116399999928],[122.00687470000003,-2.707626599999969],[122.00670220000006,-2.694920599999932],[122.01047480000011,-2.674119599999926],[122.01991310000005,-2.669231899999943],[122.02541,-2.670322899999974],[122.02998830000001,-2.674268299999937],[122.03273250000007,-2.673767],[122.03727360000005,-2.668625899999938],[122.03524090000008,-2.657111],[122.03102410000008,-2.654038699999944],[122.02394960000004,-2.645354699999928],[122.02057380000008,-2.6452996],[122.01990020000005,-2.647005599999943],[122.0171458000001,-2.646528599999954],[122.00963020000006,-2.6304677],[122.00144030000001,-2.627574799999934],[122.00073650000002,-2.624667199999976],[122.00520740000002,-2.621217599999966],[122.0018454000001,-2.617544699999939],[121.999529,-2.616943699999979],[121.999795,-2.615390599999955],[121.99736020000012,-2.614888099999973],[121.99685720000002,-2.611518],[121.99567180000008,-2.611481599999934],[121.994819,-2.6079286],[121.9899438000001,-2.6010841],[121.9873520000001,-2.592231699999957],[121.98837280000009,-2.588592499999947],[121.98594430000003,-2.584344],[121.98650650000002,-2.577334599999972],[121.97871250000003,-2.5602583],[121.97727280000004,-2.551339799999937],[121.97509570000011,-2.549766499999976],[121.97272910000004,-2.543089599999973],[121.970718,-2.542473399999949],[121.96816710000007,-2.528329499999927],[121.95781910000005,-2.516354499999977],[121.95573860000002,-2.509185199999934],[121.95056090000003,-2.502127199999961],[121.9482961000001,-2.496017399999971],[121.94329470000002,-2.492842],[121.94127260000005,-2.488298],[121.94194310000012,-2.482327],[121.940892,-2.478985799999975],[121.93483150000009,-2.476448799999957],[121.92798570000002,-2.463129099999946],[121.9189503,-2.4574584],[121.91209230000004,-2.447988599999974],[121.91148610000005,-2.43887],[121.90568770000004,-2.430073199999924],[121.90217080000002,-2.426937099999975],[121.89609310000003,-2.424436199999946],[121.89471160000005,-2.420029399999976],[121.88908980000008,-2.417115499999966],[121.88832160000004,-2.413011199999971],[121.88361960000009,-2.411291],[121.874919,-2.402944599999955],[121.87591960000009,-2.393313199999966],[121.87056310000003,-2.391282599999954],[121.87062120000007,-2.383027399999946],[121.86839810000004,-2.377945099999977],[121.86489630000005,-2.374710499999935],[121.8634925,-2.369806199999971],[121.85646570000006,-2.362809399999946],[121.85462010000003,-2.355044299999975],[121.8444942000001,-2.350365699999941],[121.8403853000001,-2.345619499999941],[121.83973360000005,-2.336255699999924],[121.8371029000001,-2.333477499999958],[121.83686470000009,-2.327983899999936],[121.83436030000007,-2.3243363],[121.83468140000002,-2.318665199999941],[121.82835380000006,-2.305622199999959],[121.82476230000009,-2.293896099999927],[121.81815030000007,-2.291495899999973],[121.80820390000008,-2.291496699999925],[121.79519030000006,-2.288152699999955],[121.782848,-2.273394399999972],[121.77837540000007,-2.2711838],[121.77609710000002,-2.2618084],[121.77184310000007,-2.255422299999964],[121.7660955,-2.254915499999925],[121.75686210000003,-2.249595199999931],[121.75515880000012,-2.240283199999965],[121.7490745,-2.238312399999927],[121.7461598000001,-2.235811699999942],[121.74354140000003,-2.232191399999977],[121.74102410000012,-2.223191399999962],[121.7298760000001,-2.215348499999948],[121.72733340000002,-2.203512],[121.723809,-2.198062899999968],[121.7196255,-2.195472099999961],[121.7120969,-2.194725299999959],[121.70498970000006,-2.188377899999978],[121.69664880000005,-2.191512599999953],[121.6906537000001,-2.188409599999943],[121.68979480000007,-2.189518],[121.67938960000004,-2.1733577],[121.67555410000011,-2.172375599999953],[121.67695750000007,-2.175442299999929],[121.6801018000001,-2.177429699999948],[121.68029480000007,-2.180105699999956],[121.67011800000012,-2.184805499999925],[121.66243870000005,-2.185095699999977],[121.66596040000002,-2.190826499999957],[121.6632982000001,-2.189109099999939],[121.6598709000001,-2.182709099999954],[121.65702410000006,-2.185866399999952],[121.650287,-2.184582199999966],[121.64553050000006,-2.188173],[121.64245050000011,-2.185815799999943],[121.6334035000001,-2.184846899999968],[121.63100950000012,-2.183262299999967],[121.62508130000003,-2.184366799999964],[121.61906210000006,-2.183186199999966],[121.61399430000006,-2.186529],[121.60864030000005,-2.185714299999972],[121.592504,-2.178423699999939],[121.58288270000003,-2.178064099999972],[121.5783034000001,-2.174678899999947],[121.57530240000006,-2.174329199999931],[121.57163990000004,-2.176948899999957],[121.57068290000007,-2.172746299999972],[121.566788,-2.174651799999936],[121.56093190000001,-2.173517699999934],[121.55180830000006,-2.166527299999927],[121.55241840000008,-2.165420499999925],[121.54445610000005,-2.148441799999944],[121.54300780000005,-2.150547099999926],[121.54142700000011,-2.149835399999972],[121.53444790000003,-2.152206799999931],[121.53195940000012,-2.154865],[121.52957770000012,-2.154725799999937],[121.51248590000012,-2.168411299999946],[121.50602740000011,-2.171589599999947],[121.501608,-2.1805346],[121.49244870000007,-2.1831059],[121.48520680000001,-2.191382899999951],[121.48461270000007,-2.199377199999958],[121.48653980000006,-2.223608],[121.48797360000003,-2.225671599999941],[121.48791730000005,-2.233322699999974],[121.4900219000001,-2.239812],[121.4914367,-2.240351399999952],[121.4913097000001,-2.243546],[121.49345330000006,-2.245727799999941],[121.49262770000007,-2.251723199999958],[121.49093760000005,-2.255031499999973],[121.47876620000011,-2.2624167],[121.4787391000001,-2.273766899999941],[121.47267290000002,-2.282231699999954],[121.47250250000002,-2.290698499999962],[121.4667002000001,-2.291346],[121.46689660000004,-2.293394199999966],[121.46252120000008,-2.298634299999947],[121.4623683000001,-2.302330499999925],[121.45933860000002,-2.302876599999934],[121.46141840000007,-2.3082736],[121.467326,-2.309778499999936],[121.46662560000004,-2.314672899999948],[121.4618544000001,-2.318463899999927],[121.4599128000001,-2.323007299999972],[121.46124280000004,-2.332899],[121.4571582000001,-2.344483],[121.45954,-2.346183899999971],[121.45540570000003,-2.357667899999967],[121.45709250000004,-2.359118399999943],[121.4533057000001,-2.370602699999949],[121.44778830000007,-2.375341799999944],[121.44625330000008,-2.391183399999932],[121.438183,-2.394062099999928],[121.43753470000001,-2.396508899999958],[121.43942330000004,-2.395162399999947],[121.4417049000001,-2.397562599999958],[121.44182030000002,-2.40541],[121.447028,-2.411615099999949],[121.4602748000001,-2.419769799999926],[121.46878370000002,-2.421642499999962],[121.49034380000012,-2.430222399999934],[121.50134430000003,-2.4525657],[121.50717510000004,-2.45188],[121.51287880000007,-2.454977199999973],[121.51597290000007,-2.459925899999973],[121.5271517000001,-2.461801499999979],[121.5308238,-2.466968399999928],[121.54549020000002,-2.471937699999955],[121.54960060000008,-2.4801813],[121.55604280000011,-2.485289199999954],[121.5597795000001,-2.491073299999925],[121.58581660000004,-2.491831299999944],[121.61152430000004,-2.484808499999929],[121.61747370000012,-2.485781],[121.62629390000006,-2.490036],[121.63098520000005,-2.4940045],[121.63633130000005,-2.501962799999944],[121.64369890000012,-2.522738799999956],[121.64899580000008,-2.534210299999927],[121.6532231000001,-2.539478899999949],[121.65946420000012,-2.539846],[121.66656970000008,-2.536824599999932],[121.68362030000003,-2.542663399999981],[121.68657250000001,-2.540930299999957],[121.68728680000004,-2.535023099999933],[121.6894416,-2.532501299999979],[121.69381880000003,-2.531568299999947],[121.69846270000005,-2.5326917],[121.70409510000002,-2.538159499999949],[121.73839710000004,-2.5926847],[121.75556890000007,-2.610506499999929],[121.77527870000006,-2.624628899999948],[121.77990450000004,-2.630709],[121.77843150000001,-2.644901899999979],[121.78060710000011,-2.6491681],[121.78978690000008,-2.656389599999954],[121.789556,-2.666997399999957],[121.77718230000005,-2.687518099999977],[121.763667,-2.696738499999981],[121.75770000000011,-2.705140399999948],[121.75441180000007,-2.734607299999936],[121.74303970000005,-2.749604399999953],[121.74152350000008,-2.756268399999954],[121.72418790000006,-2.765774399999941],[121.72216170000002,-2.768347499999948],[121.72397710000007,-2.808032899999944],[121.719725,-2.814350599999955],[121.71190630000001,-2.818367599999931],[121.7097543000001,-2.818439299999966],[121.703155,-2.814422399999955],[121.69877940000003,-2.814494099999933],[121.687302,-2.820591499999978],[121.67835270000012,-2.829598199999964],[121.66982380000002,-2.842624299999954],[121.66982380000002,-2.847252899999944],[121.67210060000002,-2.854058299999963],[121.67137930000001,-2.860408799999959],[121.67258730000003,-2.868974899999955],[121.6882634000001,-2.877952199999925],[121.69126580000011,-2.882330699999955],[121.6904267000001,-2.888708],[121.68553620000012,-2.900770299999976],[121.69389280000007,-2.902171399999929],[121.7028954000001,-2.911724699999979],[121.71073120000005,-2.913805599999932],[121.71258260000002,-2.919510099999968],[121.71418390000008,-2.920360799999969],[121.7216648000001,-2.91941],[121.72486730000003,-2.916807899999981],[121.72801980000008,-2.917258299999958],[121.73037170000009,-2.915932299999952],[121.73263610000004,-2.917975499999955],[121.7389535000001,-2.919259899999929],[121.74150550000002,-2.924238799999955],[121.75173860000007,-2.923463199999958],[121.75594190000004,-2.9251646],[121.76672540000004,-2.933671299999958],[121.77095380000003,-2.942828499999962],[121.77543230000003,-2.943178799999941],[121.77810940000006,-2.945780899999932],[121.78221270000006,-2.943604099999959],[121.78408920000004,-2.945405599999958],[121.79134490000001,-2.944404799999973],[121.8041300000001,-2.952986599999974],[121.8190919000001,-2.959116399999971],[121.82534680000003,-2.968924199999947],[121.82794890000002,-2.968974199999934],[121.833281,-2.972139199999958],[121.83554970000012,-2.970657699999947],[121.84146640000006,-2.970997],[121.84587740000006,-2.968006799999955],[121.85115790000009,-2.967285799999956],[121.85317260000011,-2.964507699999956],[121.85749880000003,-2.963913899999966],[121.8652393000001,-2.967285799999956],[121.87043490000008,-2.971484699999962],[121.88239560000011,-2.975132299999927],[121.89933990000009,-2.983275799999944],[121.92073760000005,-2.990040799999974],[121.9233885000001,-2.989128899999969],[121.92837210000005,-2.983933199999967],[121.93920880000007,-2.979543399999955],[121.9491336000001,-2.976638],[121.963427,-2.975344399999926],[121.981262,-2.966161799999952],[122.00622250000004,-2.957594299999926],[122.01608370000008,-2.957361],[122.02403630000003,-2.959481699999969],[122.03186160000007,-2.957997199999966],[122.038563,-2.959566499999937],[122.05043880000005,-2.951826],[122.0611695,-2.949111499999958],[122.0725364000001,-2.954201199999943],[122.07873610000001,-2.9618532]],[[122.42423680000002,-3.267527199999961],[122.42455040000004,-3.264026299999955],[122.42642830000011,-3.26628],[122.42423680000002,-3.267527199999961]],[[122.4280748000001,-3.270912799999962],[122.42704550000008,-3.268578199999979],[122.42815830000006,-3.268135499999971],[122.4280748000001,-3.270912799999962]]]]},"properties":{"shapeName":"Morowali","shapeISO":"","shapeID":"22746128B49763601601060","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[121.43538940000008,-1.956169599999953],[121.43209820000004,-1.956188599999962],[121.42992230000004,-1.960159799999929],[121.43545370000004,-1.957891399999937],[121.43538940000008,-1.956169599999953]]],[[[121.49389080000003,-1.946643599999959],[121.49490630000003,-1.942886899999962],[121.49314260000006,-1.943228799999929],[121.49257470000009,-1.944948],[121.49389080000003,-1.946643599999959]]],[[[121.36259460000008,-1.943860099999938],[121.36261910000007,-1.942280299999936],[121.36105440000006,-1.944428899999934],[121.36200990000009,-1.946577299999944],[121.3602724000001,-1.948453599999937],[121.36447480000004,-1.947102099999938],[121.36259460000008,-1.943860099999938]]],[[[121.36565260000009,-1.948442799999953],[121.36797050000007,-1.944586199999947],[121.36682550000012,-1.942095199999926],[121.36472750000007,-1.945159899999965],[121.36565260000009,-1.948442799999953]]],[[[121.36099280000008,-1.941197699999975],[121.36003790000007,-1.939917099999946],[121.35943830000008,-1.942003499999942],[121.35777370000005,-1.941898899999956],[121.35877860000005,-1.943740799999944],[121.35660990000008,-1.944090799999969],[121.35900830000003,-1.946052799999961],[121.36031490000005,-1.945616099999938],[121.36202750000007,-1.941639199999941],[121.36099280000008,-1.941197699999975]]],[[[121.5012319000001,-1.940008],[121.5006542000001,-1.9390727],[121.49769010000011,-1.940657499999929],[121.49909180000009,-1.941523099999927],[121.5012319000001,-1.940008]]],[[[121.49734620000004,-1.932949099999973],[121.4969235000001,-1.935241699999949],[121.49853740000003,-1.933990799999947],[121.49734620000004,-1.932949099999973]]],[[[121.48172960000011,-1.931087299999945],[121.48017860000004,-1.931013399999927],[121.48204270000008,-1.932217699999967],[121.48301560000004,-1.936238299999957],[121.48168510000005,-1.939687399999968],[121.48515530000009,-1.940366399999959],[121.48633570000004,-1.942972499999939],[121.491507,-1.941192299999955],[121.49039460000006,-1.938475699999969],[121.48853240000005,-1.938012599999979],[121.48776640000006,-1.935480299999938],[121.48903310000003,-1.933981599999925],[121.48666030000004,-1.933765699999981],[121.4856459,-1.931310899999971],[121.48172960000011,-1.931087299999945]]],[[[121.45110420000003,-1.929342],[121.449519,-1.929826299999945],[121.44904330000008,-1.932942499999967],[121.4521985,-1.9370561],[121.4540373000001,-1.936157599999945],[121.45396630000005,-1.933422899999925],[121.45213300000012,-1.928920599999969],[121.45110420000003,-1.929342]]],[[[121.36590450000006,-1.930066599999975],[121.36656160000007,-1.928863499999977],[121.36424870000008,-1.928006299999936],[121.36168740000005,-1.930299699999978],[121.36193680000008,-1.933937899999933],[121.35999060000006,-1.936452],[121.36080540000012,-1.937857899999926],[121.36316040000008,-1.938799699999947],[121.3649640000001,-1.937512],[121.362721,-1.933891699999947],[121.36434650000001,-1.932166499999937],[121.36328750000007,-1.930470399999933],[121.36590450000006,-1.930066599999975]]],[[[121.36355330000004,-1.924250699999959],[121.36257240000009,-1.923419099999933],[121.36454330000004,-1.925110099999927],[121.36355330000004,-1.924250699999959]]],[[[121.4442418000001,-1.926750099999936],[121.4420943,-1.924171899999976],[121.44030110000006,-1.917796299999964],[121.43904960000009,-1.917593299999965],[121.43766040000003,-1.921703599999944],[121.43906110000012,-1.925650399999938],[121.43632080000009,-1.9298824],[121.43212190000008,-1.932518199999947],[121.433018,-1.936645699999929],[121.43618090000007,-1.937662],[121.43478570000002,-1.937949099999969],[121.4355389000001,-1.939670399999954],[121.43432010000004,-1.943144599999926],[121.43273370000009,-1.943508399999928],[121.43533360000004,-1.944031199999927],[121.4350918,-1.947293199999933],[121.43660350000005,-1.948265899999967],[121.44080330000008,-1.9447481],[121.4408529000001,-1.941524099999924],[121.43899220000003,-1.939710199999979],[121.439607,-1.936048399999947],[121.44316590000005,-1.933635399999957],[121.4445171000001,-1.930182299999956],[121.44267480000008,-1.926907699999958],[121.4442418000001,-1.926750099999936]]],[[[121.37871660000008,-1.902760799999953],[121.3788293,-1.899841899999956],[121.37574610000001,-1.902832799999942],[121.3688211000001,-1.9021318],[121.36445480000009,-1.904703799999936],[121.36823880000009,-1.907636199999956],[121.366732,-1.908275],[121.3633718000001,-1.915855599999929],[121.36451340000008,-1.918210299999942],[121.36578630000008,-1.917911799999956],[121.3635346000001,-1.920571099999961],[121.36463450000008,-1.922154],[121.36714770000003,-1.919416599999977],[121.36913120000008,-1.919459599999925],[121.36745640000004,-1.917287499999929],[121.37077540000007,-1.913577299999929],[121.37033670000005,-1.912036199999932],[121.37207830000011,-1.912113],[121.37225090000004,-1.909914399999934],[121.37793410000006,-1.905684099999974],[121.37871660000008,-1.902760799999953]]],[[[121.34416920000001,-1.841827499999965],[121.344485,-1.839600799999971],[121.34271310000008,-1.837551399999938],[121.34416920000001,-1.841827499999965]]],[[[122.00824850000004,-1.342624],[122.00961390000009,-1.346158199999934],[122.00639500000011,-1.347749599999929],[122.00191990000008,-1.354382799999939],[121.99964350000005,-1.355214599999954],[121.99468120000006,-1.351379299999962],[121.99037620000001,-1.351657099999954],[121.97996410000007,-1.347826199999929],[121.97282030000008,-1.341963199999952],[121.972273,-1.339056599999935],[121.97477730000003,-1.335928199999955],[121.97444890000008,-1.334118399999966],[121.9651831000001,-1.332480399999952],[121.96261270000002,-1.329261299999928],[121.96280720000004,-1.3218003],[121.965167,-1.321977599999968],[121.96547770000006,-1.320767499999931],[121.96137910000004,-1.3174548],[121.96188830000006,-1.313936799999965],[121.96023910000008,-1.312472899999932],[121.95999270000004,-1.3094572],[121.9613485000001,-1.30679],[121.9624841000001,-1.307080299999939],[121.96297020000009,-1.302442099999951],[121.965218,-1.301701],[121.96314640000003,-1.300044599999978],[121.96510440000009,-1.298766],[121.96336730000007,-1.297781499999928],[121.96352060000004,-1.294555],[121.96820430000002,-1.291445099999976],[121.9633500000001,-1.289975699999957],[121.9628325000001,-1.285601099999951],[121.96387450000009,-1.284746599999949],[121.95362860000012,-1.285774199999935],[121.949329,-1.282825199999934],[121.94007180000006,-1.2843417],[121.932207,-1.287485099999969],[121.93002450000006,-1.295684699999924],[121.9237227000001,-1.299353099999962],[121.92007550000005,-1.298684099999946],[121.91467680000005,-1.295106],[121.91202350000003,-1.296392099999935],[121.90898990000005,-1.300872399999946],[121.898521,-1.301106199999936],[121.891271,-1.306585899999959],[121.88912390000007,-1.306961299999955],[121.88599050000005,-1.303708599999936],[121.8829687000001,-1.302877699999954],[121.87348940000004,-1.304117799999972],[121.86950380000007,-1.308263799999963],[121.86908830000004,-1.315729799999929],[121.85823630000004,-1.314895199999967],[121.84944410000003,-1.315859],[121.84010500000011,-1.311153799999943],[121.8344346,-1.313535799999954],[121.83186180000007,-1.313223799999946],[121.82788120000009,-1.306447299999945],[121.82321080000008,-1.306030299999975],[121.80397060000007,-1.323994699999957],[121.80081040000005,-1.325375699999938],[121.7788289,-1.330480399999942],[121.76962550000007,-1.329784599999925],[121.76234350000004,-1.332822499999963],[121.74970520000011,-1.333783899999958],[121.73445110000011,-1.346080699999959],[121.72675270000002,-1.357275199999947],[121.72427920000007,-1.358933],[121.71150190000003,-1.362935499999935],[121.69089720000011,-1.362509499999931],[121.68169210000008,-1.365407799999957],[121.66369780000002,-1.36443],[121.6536632000001,-1.377005099999963],[121.65036540000006,-1.378800499999954],[121.6434928000001,-1.386676799999975],[121.64022230000012,-1.389265699999953],[121.63057690000005,-1.392890499999965],[121.62865220000003,-1.395792599999936],[121.61463490000006,-1.406152899999938],[121.58959430000004,-1.414205599999946],[121.58718770000007,-1.418236799999931],[121.57927270000005,-1.420449899999937],[121.57055480000008,-1.424981299999956],[121.548128,-1.406013799999926],[121.54051680000009,-1.403085399999952],[121.52569270000004,-1.401362199999937],[121.51838250000003,-1.397929899999951],[121.51488540000003,-1.383712899999978],[121.50617570000009,-1.3758439],[121.50287090000006,-1.374531299999944],[121.48844620000011,-1.3755303],[121.47480330000008,-1.374436899999978],[121.4748303,-1.37744],[121.46618790000002,-1.398783399999957],[121.46594940000011,-1.404866399999946],[121.43267970000011,-1.404866399999946],[121.4030527000001,-1.435252],[121.376371,-1.45226],[121.36029510000003,-1.4567877],[121.35200510000004,-1.473071599999969],[121.2978399000001,-1.472878699999967],[121.27510040000004,-1.471250899999973],[121.26329580000004,-1.472574],[121.25733330000003,-1.475508299999944],[121.22568720000004,-1.499466599999948],[121.22748800000011,-1.507399599999928],[121.22328410000011,-1.514374399999951],[121.21904080000002,-1.517207199999973],[121.21633440000005,-1.517274699999973],[121.21096030000001,-1.512065199999938],[121.1883557000001,-1.547807899999952],[121.18732020000004,-1.552110299999924],[121.18781190000004,-1.566785899999957],[121.17878320000011,-1.565967],[121.162656,-1.558292899999969],[121.15845980000006,-1.561724499999968],[121.15800600000011,-1.563761199999931],[121.161439,-1.569473],[121.16151090000005,-1.574945499999956],[121.14353580000011,-1.571975],[121.12583770000003,-1.572824499999967],[121.07369480000011,-1.580447299999946],[121.0200943000001,-1.618704199999968],[121.00714160000007,-1.624202699999955],[120.98256360000005,-1.622452],[120.9618762,-1.623660599999937],[120.88230170000008,-1.624874099999943],[120.85748770000009,-1.681260399999928],[120.833731,-1.752151599999934],[120.83557,-1.761194799999942],[120.83431320000011,-1.760678],[120.8394072000001,-1.772285],[120.85097780000001,-1.788282599999945],[120.85635380000008,-1.808355],[120.86410720000003,-1.825736799999959],[120.86530290000007,-1.8341292],[120.86257250000006,-1.839298499999927],[120.86376740000003,-1.841959399999951],[120.86956530000009,-1.847590099999934],[120.87120330000005,-1.851670299999967],[120.87841010000011,-1.855876399999943],[120.87919310000007,-1.857600299999945],[120.88531130000001,-1.856235],[120.8883992000001,-1.857845899999973],[120.89540470000009,-1.870126],[120.8954764,-1.877828799999975],[120.89752720000001,-1.881478399999935],[120.90094150000004,-1.883384699999965],[120.90113420000012,-1.888864399999932],[120.9053259000001,-1.890720299999941],[120.9076788000001,-1.890186699999958],[120.9121057000001,-1.897281899999939],[120.91357620000008,-1.894835299999954],[120.9159701000001,-1.894417399999952],[120.92106730000012,-1.898408699999948],[120.92449340000007,-1.905071199999952],[120.9283392000001,-1.9052348],[120.92967770000007,-1.911552299999926],[120.92851770000004,-1.915763899999945],[120.92377060000001,-1.917013099999963],[120.92027110000004,-1.919904699999961],[120.92096850000007,-1.9233751],[120.91881740000008,-1.933819],[120.91246220000005,-1.938753199999951],[120.87320860000011,-1.991909299999975],[120.85774020000008,-2.009833399999934],[120.85847290000004,-2.010936199999946],[120.84369430000004,-2.030790499999966],[120.84085090000008,-2.038071599999967],[120.8298469,-2.094577699999945],[120.83253460000003,-2.122923199999946],[120.831616,-2.121829199999979],[120.83871220000003,-2.156025399999976],[120.8415156000001,-2.183200899999974],[120.8421876000001,-2.218438],[120.88027320000003,-2.219783699999937],[120.93651450000004,-2.228227],[120.96055550000005,-2.233667399999945],[120.99349060000009,-2.245337099999972],[121.0030829000001,-2.252017399999943],[121.00976660000003,-2.261791699999947],[121.0284,-2.270280399999933],[121.03444920000004,-2.275505799999962],[121.03924670000004,-2.274364],[121.04967150000004,-2.267587799999944],[121.05315540000004,-2.2669505],[121.07783990000007,-2.269813899999974],[121.09852820000003,-2.275293799999929],[121.10507760000007,-2.2792087],[121.1126594000001,-2.290873599999941],[121.139435,-2.318459399999938],[121.14978650000012,-2.340710499999943],[121.16292560000011,-2.351434199999971],[121.17563180000002,-2.3697802],[121.18191990000003,-2.3752051],[121.19322190000003,-2.374379],[121.20636640000009,-2.371267399999965],[121.23064180000006,-2.361261299999967],[121.24064810000004,-2.366582299999948],[121.29860240000005,-2.3779861],[121.31866320000006,-2.388781299999948],[121.40802340000005,-2.410276599999975],[121.41040140000007,-2.410451199999954],[121.416185,-2.406578199999956],[121.42798690000006,-2.407414899999935],[121.4303877000001,-2.406314399999928],[121.44061230000011,-2.406820799999934],[121.44182030000002,-2.40541],[121.4417049000001,-2.397562599999958],[121.43942330000004,-2.395162399999947],[121.43753470000001,-2.396508899999958],[121.438183,-2.394062099999928],[121.44625330000008,-2.391183399999932],[121.44778830000007,-2.375341799999944],[121.4533057000001,-2.370602699999949],[121.45709250000004,-2.359118399999943],[121.45540570000003,-2.357667899999967],[121.45954,-2.346183899999971],[121.4571582000001,-2.344483],[121.46124280000004,-2.332899],[121.4599128000001,-2.323007299999972],[121.4618544000001,-2.318463899999927],[121.46662560000004,-2.314672899999948],[121.467326,-2.309778499999936],[121.46141840000007,-2.3082736],[121.45933860000002,-2.302876599999934],[121.4623683000001,-2.302330499999925],[121.46252120000008,-2.298634299999947],[121.46689660000004,-2.293394199999966],[121.4667002000001,-2.291346],[121.47250250000002,-2.290698499999962],[121.47267290000002,-2.282231699999954],[121.4787391000001,-2.273766899999941],[121.47876620000011,-2.2624167],[121.49093760000005,-2.255031499999973],[121.49262770000007,-2.251723199999958],[121.49345330000006,-2.245727799999941],[121.4913097000001,-2.243546],[121.4914367,-2.240351399999952],[121.4900219000001,-2.239812],[121.48791730000005,-2.233322699999974],[121.48797360000003,-2.225671599999941],[121.48653980000006,-2.223608],[121.48461270000007,-2.199377199999958],[121.48520680000001,-2.191382899999951],[121.49244870000007,-2.1831059],[121.501608,-2.1805346],[121.50602740000011,-2.171589599999947],[121.51248590000012,-2.168411299999946],[121.52957770000012,-2.154725799999937],[121.53195940000012,-2.154865],[121.53444790000003,-2.152206799999931],[121.54142700000011,-2.149835399999972],[121.54300780000005,-2.150547099999926],[121.54445610000005,-2.148441799999944],[121.54153140000005,-2.136376799999937],[121.54061930000012,-2.134919899999943],[121.53912490000005,-2.135370599999931],[121.53792460000011,-2.130882899999961],[121.53539630000012,-2.130650899999978],[121.53482330000008,-2.132807399999933],[121.53311670000005,-2.133909699999947],[121.5346383000001,-2.132740699999943],[121.53389880000009,-2.131769099999929],[121.52591550000011,-2.1339036],[121.53623980000009,-2.129974],[121.538262,-2.130694099999971],[121.5396869000001,-2.133874099999957],[121.54030880000005,-2.133395899999925],[121.54083910000008,-2.120416299999931],[121.54480460000002,-2.109639399999935],[121.54355140000007,-2.107224],[121.5399556000001,-2.106795],[121.53715690000001,-2.100335599999937],[121.53557670000009,-2.078920899999957],[121.53240670000002,-2.074346699999978],[121.53468870000006,-2.048599399999944],[121.53177160000007,-2.065064699999937],[121.53264780000006,-2.068245299999944],[121.5313933000001,-2.0696929],[121.52920690000008,-2.067564699999934],[121.53141760000005,-2.063559099999964],[121.5316127000001,-2.057300299999952],[121.5296595000001,-2.045544899999925],[121.52765120000004,-2.0489312],[121.52103410000007,-2.051300599999934],[121.52035980000005,-2.052410099999975],[121.52177990000007,-2.0539166],[121.5166187000001,-2.052801699999975],[121.51393380000002,-2.057320499999946],[121.51479230000007,-2.059296899999936],[121.51342870000008,-2.057451699999945],[121.51107160000004,-2.0578823],[121.5134667000001,-2.056793199999959],[121.51376790000006,-2.054705],[121.50680360000001,-2.053189199999963],[121.50880760000007,-2.050237099999947],[121.50693650000005,-2.048025799999948],[121.502743,-2.048794],[121.49730260000001,-2.046305299999972],[121.492155,-2.039023399999962],[121.491509,-2.0307745],[121.49491530000012,-2.028369399999974],[121.50132850000011,-2.030463899999972],[121.4992185000001,-2.026774099999955],[121.49256140000011,-2.0238614],[121.49176060000002,-2.020191799999964],[121.4868308,-2.025906799999973],[121.48563580000007,-2.023723199999949],[121.48889330000009,-2.020283099999972],[121.487286,-2.019058599999937],[121.48702530000003,-2.016396],[121.483697,-2.015527399999939],[121.48170670000002,-2.017519899999968],[121.47843360000002,-2.017610899999966],[121.4734171,-2.015063899999973],[121.46496800000011,-1.999592199999938],[121.46392060000005,-1.999297199999944],[121.4631806000001,-2.001215099999968],[121.45251230000008,-1.999765399999944],[121.45259110000006,-1.9977696],[121.44878830000005,-1.994231],[121.44979130000002,-1.990750699999978],[121.44449670000006,-1.9887451],[121.440916,-1.983877199999938],[121.44028760000003,-1.981555799999967],[121.4436343000001,-1.974721199999976],[121.44003,-1.974843599999929],[121.43828540000004,-1.977568499999961],[121.43688620000012,-1.977180399999952],[121.43481170000007,-1.975383699999952],[121.4351180000001,-1.973335899999938],[121.43284280000012,-1.972343599999931],[121.43323020000003,-1.969172199999946],[121.43069580000008,-1.964923499999941],[121.42892410000002,-1.963524199999938],[121.42649310000002,-1.964713199999949],[121.42080250000004,-1.956822299999942],[121.42107580000004,-1.952252199999975],[121.4251872000001,-1.949467799999979],[121.42672730000004,-1.946416399999976],[121.42308390000005,-1.942722299999957],[121.42343430000005,-1.941065299999934],[121.4207752000001,-1.942193699999962],[121.42141580000009,-1.941043899999954],[121.41971200000012,-1.93919],[121.41346370000008,-1.940664699999957],[121.41682060000005,-1.936397799999952],[121.4136241000001,-1.934874],[121.41773790000002,-1.933326099999931],[121.41884460000006,-1.931104299999959],[121.41660030000003,-1.927007699999933],[121.41652390000002,-1.923369899999955],[121.4121808000001,-1.921803499999953],[121.41383170000006,-1.918002899999976],[121.41170310000007,-1.914491299999952],[121.41372690000003,-1.912456299999974],[121.410116,-1.910102099999961],[121.4092624000001,-1.90619],[121.4086473000001,-1.908821],[121.40714240000011,-1.906602699999951],[121.40289240000004,-1.910378],[121.40098010000008,-1.909987799999953],[121.40033480000011,-1.915453399999933],[121.39846480000006,-1.913653799999963],[121.39817590000007,-1.909656799999937],[121.39311350000003,-1.906439299999931],[121.39277550000008,-1.903662299999951],[121.3909344000001,-1.908320499999945],[121.38882390000003,-1.907411699999955],[121.38199760000009,-1.915526199999931],[121.3773758000001,-1.915577799999937],[121.37741490000008,-1.921515199999931],[121.37984770000003,-1.930114],[121.3766667000001,-1.929087699999968],[121.37595470000008,-1.932287299999928],[121.37832770000011,-1.936876299999938],[121.37618810000004,-1.939440599999955],[121.37916110000003,-1.945520599999952],[121.3774108,-1.9507058],[121.37891120000006,-1.9551729],[121.37707300000011,-1.957644699999946],[121.37700670000004,-1.963053199999933],[121.378193,-1.965662399999928],[121.37957720000009,-1.965709199999935],[121.37891090000005,-1.970120099999974],[121.37630840000008,-1.969466599999976],[121.37761390000003,-1.973788899999931],[121.38059220000002,-1.974851499999943],[121.3810267,-1.976759199999947],[121.37842130000001,-1.978291499999955],[121.3763550000001,-1.982303399999978],[121.37315010000009,-1.982164],[121.37303210000005,-1.979711599999973],[121.37134820000006,-1.978317199999935],[121.37052570000003,-1.982557],[121.362239,-1.982708299999956],[121.35839610000005,-1.987423499999977],[121.35867870000004,-1.990652],[121.35313530000008,-1.993118299999935],[121.35239150000007,-1.998782799999958],[121.35348750000003,-2.0009441],[121.35016510000003,-2.001449199999968],[121.34876120000001,-2.008329799999956],[121.34730940000009,-2.004045299999973],[121.3451265000001,-2.003528],[121.34270950000007,-2.005387499999927],[121.342232,-2.002704299999948],[121.34343,-2.001918399999965],[121.34142670000006,-2.000074699999971],[121.33938340000009,-1.991298699999959],[121.3400491000001,-1.989403299999935],[121.34159130000012,-1.989326799999958],[121.33978080000009,-1.986200699999927],[121.34282130000008,-1.986105499999951],[121.34282510000003,-1.982201399999951],[121.33912360000011,-1.9774096],[121.34132340000008,-1.975212799999952],[121.34273480000002,-1.969680099999948],[121.34749090000003,-1.964892599999928],[121.3488334000001,-1.959989],[121.348199,-1.953853699999968],[121.3510731,-1.950189599999931],[121.34735780000005,-1.952023799999949],[121.33914770000001,-1.950930099999937],[121.33333710000011,-1.946218499999929],[121.33088920000012,-1.938864899999942],[121.33160150000003,-1.937538099999927],[121.3298109000001,-1.938335199999926],[121.32866520000005,-1.933225399999969],[121.32768870000007,-1.935406],[121.32574450000004,-1.935714099999927],[121.32877570000005,-1.938924799999938],[121.32226450000007,-1.933510099999978],[121.32110240000009,-1.935780199999954],[121.31759820000002,-1.936926399999948],[121.31224630000008,-1.929441899999972],[121.31432890000008,-1.928339599999958],[121.31371090000005,-1.924969699999963],[121.31477930000005,-1.923210099999949],[121.3183259000001,-1.920865399999968],[121.3279195,-1.918975399999965],[121.32970510000007,-1.915358199999957],[121.32853720000003,-1.913540299999966],[121.33049630000005,-1.911646099999928],[121.32768260000012,-1.908597699999973],[121.332054,-1.898732499999937],[121.33464550000008,-1.898910899999976],[121.33408350000002,-1.901775399999963],[121.34174130000008,-1.901771899999972],[121.34276210000007,-1.900198],[121.34624130000009,-1.900545099999931],[121.34615,-1.898503],[121.3497913000001,-1.8972956],[121.34888120000005,-1.8959403],[121.34620820000009,-1.897167099999933],[121.341618,-1.895964699999979],[121.33997390000002,-1.889527899999962],[121.33865830000002,-1.889964199999952],[121.33799220000003,-1.893226699999957],[121.3342305000001,-1.8919422],[121.33471880000002,-1.890234],[121.3335475,-1.891410199999939],[121.33147430000008,-1.890062799999953],[121.330726,-1.8801091],[121.3339691000001,-1.878309799999954],[121.33553540000003,-1.875421199999948],[121.33901790000004,-1.878237399999932],[121.34330050000005,-1.877220299999976],[121.34009380000009,-1.874037399999963],[121.34553230000006,-1.872261],[121.34843660000001,-1.872720099999981],[121.34994010000003,-1.870616899999959],[121.3518074000001,-1.871648599999958],[121.35431440000002,-1.870598599999937],[121.35844840000004,-1.875753699999962],[121.35964070000011,-1.874317099999928],[121.362007,-1.874423599999943],[121.35919530000001,-1.868974],[121.35497790000011,-1.866539199999977],[121.35148660000004,-1.868191799999977],[121.34702950000008,-1.867257799999948],[121.3449217000001,-1.865118499999937],[121.3439876000001,-1.860537799999975],[121.34709040000007,-1.860782],[121.34721660000002,-1.8588781],[121.35150240000007,-1.858319199999926],[121.34950560000004,-1.855938099999946],[121.34991150000008,-1.850287],[121.3458462000001,-1.849212099999932],[121.34434410000006,-1.841708099999948],[121.34402630000011,-1.849679299999934],[121.34151910000003,-1.853872799999976],[121.33956790000002,-1.854610299999933],[121.336224,-1.853223299999968],[121.32723540000006,-1.863858199999925],[121.324204,-1.862027699999942],[121.32558720000009,-1.8595895],[121.32362730000011,-1.857332199999973],[121.32524340000009,-1.854699899999957],[121.31782790000011,-1.856081899999936],[121.31671860000006,-1.853478099999961],[121.3046759,-1.856362899999965],[121.30213910000009,-1.8524659],[121.29885210000009,-1.857162899999935],[121.29669490000003,-1.856071499999928],[121.29422740000007,-1.857026099999928],[121.29261270000006,-1.845286099999953],[121.28880430000004,-1.8416589],[121.29004780000002,-1.840258399999925],[121.28890330000002,-1.838819499999943],[121.29059460000008,-1.837039599999969],[121.29006850000007,-1.833693099999948],[121.295229,-1.828872099999955],[121.29557470000009,-1.822542099999964],[121.29771510000012,-1.820508899999936],[121.29674620000003,-1.817518199999938],[121.29805120000003,-1.813774399999943],[121.2960581000001,-1.8128227],[121.29529220000006,-1.807757899999956],[121.29607460000011,-1.806302],[121.2984133000001,-1.808446],[121.29945420000001,-1.807846099999949],[121.3007464000001,-1.799717],[121.29904340000007,-1.797532199999978],[121.30215670000007,-1.796289899999977],[121.30215970000006,-1.792975399999932],[121.30717170000003,-1.796509899999933],[121.30792440000005,-1.795056799999941],[121.3090787000001,-1.796850899999924],[121.31535640000004,-1.791110099999969],[121.31795420000003,-1.784718099999964],[121.32063480000011,-1.783655899999928],[121.31948420000003,-1.776719199999945],[121.31747910000001,-1.776275099999964],[121.3194582000001,-1.775060599999961],[121.31558390000009,-1.775637599999925],[121.31081670000003,-1.770084],[121.31803650000006,-1.768350599999962],[121.31940450000002,-1.769402],[121.322175,-1.766758899999957],[121.3214435000001,-1.764488699999958],[121.32267210000009,-1.763915099999963],[121.3252017000001,-1.772952099999941],[121.32945610000002,-1.773422499999924],[121.33541250000007,-1.777503199999956],[121.3367161000001,-1.776639499999931],[121.33624960000009,-1.772625599999969],[121.34103540000001,-1.772395499999959],[121.34748800000011,-1.778217899999959],[121.35058690000005,-1.784429799999941],[121.34991840000009,-1.786548399999958],[121.353589,-1.787089899999955],[121.35805360000006,-1.790885299999957],[121.361065,-1.788624899999945],[121.36698130000002,-1.791707],[121.36805290000007,-1.7961574],[121.37071230000004,-1.797404699999959],[121.37342340000009,-1.804709599999967],[121.37200490000009,-1.808063599999969],[121.37660430000005,-1.807496699999945],[121.37872130000005,-1.8084769],[121.37898910000001,-1.810404499999947],[121.381519,-1.809025899999938],[121.3867249000001,-1.811500399999943],[121.39284280000004,-1.805488799999978],[121.4000622000001,-1.804981299999952],[121.40360090000001,-1.806263],[121.40441770000007,-1.8079393],[121.41279720000011,-1.809818399999926],[121.414388,-1.812418599999944],[121.41221140000005,-1.813406799999939],[121.41613870000003,-1.813952699999959],[121.41467360000001,-1.8180751],[121.41843730000005,-1.821975499999951],[121.42049780000002,-1.821667299999945],[121.42278820000001,-1.816802499999937],[121.4210690000001,-1.813745099999949],[121.42178250000006,-1.812515699999949],[121.4277849,-1.810609399999976],[121.43075360000012,-1.812880199999938],[121.43192070000009,-1.810266099999978],[121.43799120000006,-1.809095699999943],[121.44231700000012,-1.804802499999937],[121.44600430000003,-1.804018499999927],[121.4453562000001,-1.808431699999971],[121.4491905000001,-1.810349],[121.45541220000007,-1.810452099999964],[121.46114510000007,-1.816666099999964],[121.46194390000005,-1.820857399999966],[121.4601331,-1.822866499999975],[121.45626270000002,-1.823745699999961],[121.4549277000001,-1.826293299999975],[121.458772,-1.8248677],[121.46254870000007,-1.8272477],[121.46797360000005,-1.836413199999924],[121.46577910000008,-1.8366057],[121.46671590000005,-1.840019499999926],[121.46177300000011,-1.840087499999925],[121.45776460000002,-1.842685599999925],[121.45457990000011,-1.848564],[121.45006520000004,-1.849396],[121.45515350000005,-1.852160499999968],[121.45425310000007,-1.854184],[121.4500786000001,-1.854761399999973],[121.45083380000005,-1.855706399999974],[121.448964,-1.860571499999935],[121.44702250000012,-1.861902099999952],[121.44865690000006,-1.863223499999947],[121.44854160000011,-1.867263599999944],[121.45155380000006,-1.8676347],[121.46016740000005,-1.864928199999952],[121.46421270000008,-1.862187399999925],[121.46620970000004,-1.858255299999939],[121.46978210000009,-1.857041899999956],[121.47035040000003,-1.858434099999954],[121.4674748000001,-1.862418],[121.46736180000005,-1.867341799999963],[121.464554,-1.873804199999938],[121.45766220000007,-1.876834899999949],[121.4614944000001,-1.878971199999967],[121.46525610000003,-1.878077799999971],[121.469731,-1.8754689],[121.4731541000001,-1.875595699999963],[121.47402660000012,-1.873321099999941],[121.4774910000001,-1.871523299999978],[121.48323530000005,-1.870169499999975],[121.48613750000004,-1.874804799999936],[121.488507,-1.873183],[121.48670290000007,-1.875118899999961],[121.48752650000006,-1.878272799999934],[121.48533320000001,-1.879162099999974],[121.48609580000004,-1.883010399999932],[121.49042830000008,-1.884577199999967],[121.49445630000002,-1.889742499999954],[121.496778,-1.889988899999935],[121.49746270000003,-1.8879042],[121.49890820000007,-1.888973399999941],[121.49721970000007,-1.890997599999935],[121.49679090000006,-1.894975199999976],[121.49849050000012,-1.897243],[121.50194420000003,-1.898622599999953],[121.50595730000009,-1.897980899999936],[121.51093360000004,-1.905920599999945],[121.5160221000001,-1.908747399999925],[121.51846720000003,-1.908236],[121.52616020000005,-1.911446],[121.52978110000004,-1.916852799999958],[121.5318526000001,-1.917415399999925],[121.53554810000003,-1.915322699999933],[121.5395698000001,-1.918025899999975],[121.54067390000012,-1.920244299999979],[121.53913520000003,-1.921130599999969],[121.54134660000011,-1.923450499999944],[121.54015650000008,-1.925538899999935],[121.54289840000001,-1.927509899999961],[121.544455,-1.933333599999969],[121.54765010000006,-1.9347237],[121.5512586000001,-1.943901599999947],[121.5530414000001,-1.944885899999974],[121.55813960000012,-1.943695799999944],[121.56027440000003,-1.947138499999937],[121.56012070000008,-1.949250799999959],[121.55676330000006,-1.945677799999942],[121.553502,-1.948199599999953],[121.5598983000001,-1.955453499999976],[121.57375050000007,-1.9589709],[121.580434,-1.954568399999971],[121.60144390000005,-1.952452199999925],[121.61552940000001,-1.954097299999944],[121.62606750000009,-1.960456699999952],[121.6312673000001,-1.957769199999973],[121.63822920000007,-1.958257699999933],[121.63902940000003,-1.959431499999937],[121.6435279000001,-1.956117399999926],[121.64524240000003,-1.958131199999968],[121.65296380000007,-1.955232599999931],[121.65445640000007,-1.956474899999932],[121.66360410000004,-1.950114499999927],[121.67847820000009,-1.945397],[121.6901921000001,-1.927682],[121.69798870000011,-1.924680199999955],[121.70090220000009,-1.921545],[121.70637480000005,-1.921954699999958],[121.712068,-1.924854899999957],[121.71418820000008,-1.923085],[121.7139939000001,-1.920065399999942],[121.71245340000007,-1.920123099999955],[121.718762,-1.905512599999952],[121.7301738000001,-1.901766099999975],[121.73164140000006,-1.894492499999956],[121.73928220000005,-1.891492199999959],[121.74376130000007,-1.887510299999974],[121.74432920000004,-1.8814419],[121.7496728000001,-1.875858199999925],[121.76477860000011,-1.850919099999942],[121.76513680000005,-1.845840299999963],[121.7684081000001,-1.83752],[121.766983,-1.835477899999944],[121.76338970000006,-1.838041299999929],[121.76550380000003,-1.834000099999969],[121.76778720000004,-1.833726699999943],[121.76774750000004,-1.828782699999977],[121.77038520000008,-1.821853899999951],[121.77953470000011,-1.806623099999968],[121.7792816000001,-1.801225399999964],[121.77657580000005,-1.8012041],[121.7759761000001,-1.806739499999935],[121.77366640000002,-1.798629399999925],[121.77614370000003,-1.799737099999959],[121.77893160000008,-1.799435799999969],[121.77900820000002,-1.7982597],[121.779754,-1.799086199999977],[121.7822076000001,-1.792772699999944],[121.78424480000001,-1.791647599999976],[121.7816391,-1.799468899999965],[121.78277760000003,-1.799181399999952],[121.79174480000006,-1.785318],[121.79720410000004,-1.771324899999968],[121.80234560000008,-1.764688799999931],[121.80485870000007,-1.765151599999967],[121.80707790000008,-1.762979399999949],[121.8042683000001,-1.760721899999965],[121.8023392,-1.743671399999926],[121.80303160000005,-1.738219799999968],[121.80757,-1.730806],[121.81183360000011,-1.728267599999924],[121.81536720000008,-1.728930799999944],[121.81878190000009,-1.727069299999926],[121.8241584000001,-1.726732099999936],[121.82570360000011,-1.725257699999929],[121.823156,-1.723264499999971],[121.82708420000006,-1.7164317],[121.8306500000001,-1.716599099999939],[121.83445680000011,-1.713745299999971],[121.83702470000003,-1.714055299999927],[121.83957880000003,-1.706137199999944],[121.843371,-1.706739699999957],[121.84368790000008,-1.702500599999951],[121.84853540000006,-1.694670899999949],[121.85129270000004,-1.693157],[121.85260430000005,-1.695083799999964],[121.85193090000007,-1.699126499999977],[121.858555,-1.7093089],[121.86853130000009,-1.709057599999937],[121.871526,-1.710769499999969],[121.87887190000004,-1.710062899999969],[121.88177940000003,-1.711087099999929],[121.8862984000001,-1.7074646],[121.887571,-1.703936399999975],[121.88020440000003,-1.6963894],[121.87790870000003,-1.70078],[121.87227760000007,-1.703889499999946],[121.86945660000003,-1.703294799999981],[121.8645087000001,-1.7063166],[121.86458310000012,-1.701931599999966],[121.8612518000001,-1.702284],[121.86116190000007,-1.700478699999962],[121.86490270000002,-1.6995875],[121.86431670000002,-1.697891399999946],[121.86243660000002,-1.697724199999925],[121.8634446000001,-1.690843499999971],[121.86584490000007,-1.6940185],[121.8701172000001,-1.6941797],[121.8707075000001,-1.691083],[121.86805420000007,-1.6891983],[121.86811850000004,-1.680686399999956],[121.86658000000011,-1.6804323],[121.86547630000007,-1.683272399999964],[121.863087,-1.684482099999968],[121.86059570000009,-1.678985799999964],[121.86315390000004,-1.677001899999937],[121.86161090000007,-1.674045899999953],[121.86303980000002,-1.670808],[121.86587980000002,-1.672475099999929],[121.86848080000004,-1.677675199999953],[121.87119050000001,-1.679348899999979],[121.87198090000004,-1.677863],[121.87451450000003,-1.677932699999928],[121.87489990000006,-1.680861599999957],[121.8735038000001,-1.682044599999927],[121.876792,-1.681465599999967],[121.87779090000004,-1.687817399999972],[121.87955990000012,-1.684540699999957],[121.88308690000008,-1.688755299999968],[121.88625990000003,-1.6874916],[121.8854811000001,-1.678475799999944],[121.88867190000008,-1.6755369],[121.88931370000012,-1.679645199999925],[121.89078790000008,-1.679853399999956],[121.88957160000007,-1.681763099999955],[121.89017640000009,-1.687905299999954],[121.89207540000007,-1.689595299999951],[121.8951426000001,-1.687002899999925],[121.89586210000004,-1.688484099999926],[121.89260330000002,-1.692017399999941],[121.89141690000008,-1.690784699999938],[121.8886725000001,-1.692458299999942],[121.89569580000011,-1.699265199999957],[121.90427420000003,-1.701348199999927],[121.90593380000007,-1.693370799999968],[121.90434550000009,-1.691923699999961],[121.90555960000006,-1.689480799999956],[121.90828510000006,-1.689457899999979],[121.91038780000008,-1.687491199999954],[121.91492220000009,-1.688436399999944],[121.91866620000008,-1.683834399999967],[121.92379420000009,-1.683058699999947],[121.92552730000011,-1.680619299999933],[121.926892,-1.6820616],[121.9269799000001,-1.686931399999935],[121.92871650000006,-1.685899699999936],[121.93070530000011,-1.686706899999933],[121.92955920000009,-1.690196899999933],[121.93552720000002,-1.687936799999932],[121.93291030000012,-1.684709599999962],[121.93913710000004,-1.676448199999925],[121.94393040000011,-1.676843899999938],[121.94415060000006,-1.674180099999944],[121.95137690000001,-1.676178099999959],[121.95353730000011,-1.678341199999977],[121.95917280000003,-1.6792399],[121.96312560000001,-1.672533899999962],[121.97641110000006,-1.663673699999947],[121.982064,-1.6565451],[121.99494490000006,-1.652327699999944],[121.99814190000006,-1.645776199999943],[122.00440830000002,-1.640818799999977],[122.00624420000008,-1.635229599999946],[122.01261290000002,-1.629908299999954],[122.01998860000003,-1.628324899999939],[122.02278910000007,-1.616649799999948],[122.0296545000001,-1.612345699999935],[122.03754040000001,-1.610352599999942],[122.0433789000001,-1.6112308],[122.04586010000003,-1.613902799999948],[122.04851790000009,-1.612486599999954],[122.052215,-1.615954299999942],[122.06365910000011,-1.6160017],[122.03973250000001,-1.587361599999952],[122.03176950000011,-1.5744989],[122.02971190000005,-1.567308],[122.0324491,-1.521753099999955],[122.04266,-1.492925399999933],[122.04005160000008,-1.488361399999974],[122.02686840000001,-1.474113899999963],[122.01478150000003,-1.466642099999945],[122.01272660000006,-1.453091],[122.01905020000004,-1.444244599999934],[122.0235848000001,-1.442172599999935],[122.04335540000011,-1.440592299999935],[122.04207150000002,-1.435388399999965],[122.0362014000001,-1.425746299999958],[122.05326830000001,-1.423068199999932],[122.05412940000008,-1.411645299999975],[122.04165230000001,-1.392164],[122.0288418,-1.353821299999936],[122.0232109000001,-1.3493945],[122.00824850000004,-1.342624]]]]},"properties":{"shapeName":"Morowali Utara","shapeISO":"","shapeID":"22746128B91543171866928","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[103.46805760000007,-4.3530811],[103.47805650000004,-4.358732599999939],[103.494185,-4.361621299999968],[103.50068460000006,-4.361139899999955],[103.51488730000005,-4.376064799999938],[103.51970180000006,-4.376787],[103.53077520000005,-4.367880199999945],[103.53775620000005,-4.368602299999964],[103.54064490000007,-4.3719725],[103.54762590000007,-4.371009599999979],[103.55340330000007,-4.356566099999952],[103.58229020000005,-4.354881],[103.59071560000007,-4.356806799999958],[103.59841880000005,-4.362584199999958],[103.60371470000007,-4.339715399999932],[103.61719530000005,-4.3122728],[103.62157080000009,-4.305928299999948],[103.62483270000007,-4.291265599999974],[103.62729670000004,-4.264444599999933],[103.618344,-4.247680299999956],[103.61692530000005,-4.241729799999973],[103.61664360000003,-4.224907599999938],[103.62190250000003,-4.213983399999961],[103.63342340000008,-4.212934699999948],[103.64198490000007,-4.209962599999926],[103.64744710000008,-4.203937099999962],[103.64648020000004,-4.201120599999967],[103.64805560000008,-4.197578499999963],[103.66644920000005,-4.193634299999928],[103.69074060000008,-4.184051899999929],[103.70595660000004,-4.1832591],[103.70371330000006,-4.116875399999969],[103.70486940000006,-4.085279899999932],[103.73646630000007,-4.085301],[103.74669250000005,-4.084326899999951],[103.750054,-4.082691499999953],[103.77072010000006,-4.068575199999941],[103.772971,-4.069705],[103.77073360000009,-4.068562399999962],[103.78867830000007,-4.046325899999943],[103.79246730000006,-4.038918],[103.80001190000007,-4.034312199999931],[103.81446780000005,-4.031401499999959],[103.82013660000007,-4.027165],[103.82874790000005,-4.015866099999926],[103.83508340000009,-4.014411299999949],[103.84292080000006,-4.006470199999967],[103.84889270000008,-4.006970299999978],[103.85503260000007,-3.995719299999962],[103.86397360000007,-3.992307],[103.86884160000005,-3.988461799999925],[103.87500550000004,-3.978360199999941],[103.87611960000004,-3.973185],[103.88784860000004,-3.967676799999936],[103.89170850000005,-3.9628206],[103.89206410000008,-3.955047499999978],[103.89050190000006,-3.950265899999977],[103.89442290000005,-3.939982399999963],[103.89189150000004,-3.928923899999972],[103.89298390000005,-3.924783399999967],[103.90897030000008,-3.921523799999932],[103.92783380000009,-3.914512299999956],[103.931535,-3.911081699999954],[103.94007170000003,-3.897619199999951],[103.95768070000008,-3.893597799999952],[103.96561150000008,-3.888552299999958],[103.97119890000005,-3.8924093],[103.99473370000004,-3.919725199999959],[104.01510780000007,-3.913353699999959],[104.02311550000007,-3.913780899999949],[104.02688180000007,-3.908188],[104.03310780000004,-3.910457099999974],[104.03875630000005,-3.909001299999943],[104.04198410000004,-3.910331099999951],[104.04554980000006,-3.908325899999966],[104.04710140000009,-3.905702299999973],[104.05314210000006,-3.906384699999933],[104.06274780000007,-3.904601699999944],[104.07389270000004,-3.906864299999938],[104.082484,-3.900183899999945],[104.08469670000005,-3.8961795],[104.08828710000006,-3.895323899999937],[104.10569020000008,-3.898785299999929],[104.12265130000009,-3.892433199999971],[104.12291480000005,-3.895594299999971],[104.13723240000007,-3.8878305],[104.14715640000009,-3.884988199999952],[104.15654160000008,-3.874672099999941],[104.17923920000004,-3.863279199999965],[104.18668640000004,-3.857059],[104.18887350000006,-3.851812299999949],[104.19337260000003,-3.847436099999925],[104.19899670000007,-3.845381199999963],[104.202615,-3.8475608],[104.20824,-3.8460577],[104.20999750000004,-3.8437783],[104.21021630000007,-3.825080199999945],[104.21455210000005,-3.819025299999964],[104.22058760000004,-3.816946499999972],[104.22919050000007,-3.804951499999959],[104.23572340000004,-3.799652099999946],[104.23670460000005,-3.785575399999971],[104.237823,-3.784193799999969],[104.24769740000005,-3.779924199999925],[104.25613510000005,-3.778163399999926],[104.27631160000004,-3.766081],[104.28811740000003,-3.755069099999957],[104.30246790000007,-3.771513699999957],[104.30672640000006,-3.7735079],[104.31041550000003,-3.771738599999935],[104.31892070000004,-3.771492899999942],[104.32213820000004,-3.766832099999931],[104.33470060000008,-3.760330599999975],[104.346724,-3.767578699999945],[104.35427130000005,-3.766784399999949],[104.36024590000005,-3.768890499999941],[104.36998210000007,-3.7634399],[104.37264580000004,-3.764708599999949],[104.374408,-3.763703199999952],[104.38240360000003,-3.759877599999925],[104.38374260000006,-3.756864],[104.377396,-3.747280099999955],[104.37310040000006,-3.743341599999951],[104.37160710000006,-3.739131799999939],[104.37124230000006,-3.735592399999973],[104.37529350000005,-3.719662299999925],[104.38714720000007,-3.717087],[104.39328540000008,-3.703762],[104.39762980000006,-3.703480299999967],[104.40803360000007,-3.698881099999937],[104.40989480000007,-3.696289599999943],[104.41563370000006,-3.695874699999933],[104.42058640000005,-3.691466899999966],[104.42991870000009,-3.6898382],[104.43252020000006,-3.684877699999959],[104.44202060000003,-3.683144299999981],[104.443552,-3.681009299999971],[104.44344150000006,-3.677048099999979],[104.45360830000004,-3.668929699999978],[104.45395080000009,-3.662762],[104.45813280000004,-3.659733899999935],[104.45815890000006,-3.657308599999965],[104.45661360000008,-3.655998],[104.46404430000007,-3.649850399999934],[104.46431930000006,-3.646256799999946],[104.46268240000006,-3.646134],[104.46759710000003,-3.639649799999972],[104.47029550000008,-3.638798699999938],[104.470479,-3.6359968],[104.46884210000007,-3.635965399999975],[104.47369570000006,-3.630090299999949],[104.47294040000008,-3.625765099999967],[104.47603370000007,-3.6234218],[104.475978,-3.614924599999938],[104.47792170000008,-3.614185099999929],[104.47695060000007,-3.6103263],[104.46940990000007,-3.597865499999955],[104.46789910000007,-3.589519699999926],[104.46208070000006,-3.586866599999951],[104.46208180000008,-3.584978399999954],[104.45550710000003,-3.579918799999973],[104.45569070000005,-3.577025599999956],[104.44341830000008,-3.570561599999962],[104.441844,-3.567484599999943],[104.437966,-3.565009099999941],[104.43982730000005,-3.560046],[104.43733970000005,-3.556382099999951],[104.42800970000008,-3.559903799999972],[104.42242460000006,-3.556875599999955],[104.42012790000007,-3.558155799999952],[104.41410010000004,-3.569456099999968],[104.40708770000003,-3.574993799999959],[104.40709250000003,-3.583353799999941],[104.40370810000007,-3.584301599999947],[104.40082010000003,-3.587049599999943],[104.39056660000006,-3.588512699999967],[104.39023610000004,-3.590716599999951],[104.38655140000009,-3.589623099999926],[104.38191190000003,-3.590325199999938],[104.37914340000003,-3.593661],[104.37660620000008,-3.592525899999941],[104.36688180000004,-3.597364],[104.36990910000009,-3.604636099999937],[104.36666750000006,-3.6058335],[104.36610660000008,-3.608431099999962],[104.36394030000008,-3.6082189],[104.36121660000003,-3.605548799999951],[104.35592540000005,-3.606913199999951],[104.32720490000008,-3.621504499999958],[104.32236510000007,-3.621667399999978],[104.31555250000008,-3.619317],[104.30588930000005,-3.609137799999928],[104.30385230000007,-3.603729499999929],[104.30369130000008,-3.601715699999943],[104.30953590000007,-3.592843399999936],[104.30757980000004,-3.566017599999952],[104.30646180000008,-3.561879],[104.30477310000003,-3.561744799999929],[104.30459990000008,-3.567376699999954],[104.30064330000005,-3.567132699999945],[104.29596980000008,-3.563514899999973],[104.29345160000008,-3.563874399999975],[104.27581880000008,-3.5730166],[104.24310850000006,-3.567892399999948],[104.24222710000004,-3.566550799999959],[104.25176960000005,-3.548516499999948],[104.25363650000008,-3.539546],[104.25024660000008,-3.536145],[104.24679020000008,-3.537739899999963],[104.24387040000005,-3.5415778],[104.24011120000006,-3.541688399999941],[104.23669320000005,-3.539639099999931],[104.23005310000008,-3.542033699999934],[104.22876970000004,-3.540200499999969],[104.22813680000007,-3.541351199999951],[104.22132210000007,-3.5396059],[104.22438220000004,-3.532410699999957],[104.213667,-3.531720099999973],[104.21773230000008,-3.543174499999964],[104.20743260000006,-3.542142],[104.19486970000008,-3.538496599999974],[104.19370230000004,-3.5433458],[104.18368440000006,-3.545904099999973],[104.17344450000007,-3.5425597],[104.16354760000007,-3.542827099999954],[104.16076140000007,-3.544815699999958],[104.14960540000004,-3.543800699999963],[104.14655820000007,-3.542298899999935],[104.14444260000005,-3.537189699999942],[104.14267280000007,-3.5365787],[104.14432070000004,-3.534513199999935],[104.142425,-3.5310177],[104.13143440000005,-3.519757199999958],[104.13391330000007,-3.5180848],[104.13684020000005,-3.510819399999946],[104.14168460000008,-3.505907699999966],[104.14477390000008,-3.497181699999942],[104.14257010000006,-3.493968499999937],[104.14360740000006,-3.491034399999933],[104.14271150000008,-3.490033499999925],[104.13366140000005,-3.492013699999973],[104.12845220000008,-3.490896499999963],[104.13340650000004,-3.485627],[104.13965760000008,-3.471034199999963],[104.14013370000004,-3.466984899999943],[104.13592220000004,-3.459297499999934],[104.13608060000007,-3.454281199999969],[104.13908880000008,-3.450302599999929],[104.147518,-3.449253699999929],[104.15116720000003,-3.445378699999935],[104.148945,-3.435962599999925],[104.15103350000004,-3.430381],[104.15152660000007,-3.3960659],[104.13192270000008,-3.378309099999967],[104.13134310000004,-3.358783899999935],[104.12706960000008,-3.3633814],[104.12340150000006,-3.3644032],[104.12170260000005,-3.363083699999947],[104.12061450000004,-3.357835099999932],[104.11941080000008,-3.358279099999947],[104.11685090000009,-3.369300299999963],[104.11306180000008,-3.366512199999931],[104.10952240000006,-3.366199599999959],[104.09374390000005,-3.353533399999947],[104.08644140000007,-3.361924899999963],[104.07462060000006,-3.363352099999929],[104.065911,-3.362292],[104.03987040000004,-3.3634885],[104.03568320000005,-3.364814499999966],[104.02743490000006,-3.364172099999962],[104.02476380000007,-3.362484],[104.023286,-3.364746],[104.02169760000004,-3.394888],[104.01873840000007,-3.413731299999938],[104.00350670000006,-3.408377599999938],[103.99110470000005,-3.407075199999952],[103.97350740000007,-3.407762599999955],[103.94192780000009,-3.399899799999957],[103.93282810000005,-3.396328499999925],[103.92763970000004,-3.391840499999944],[103.92092950000006,-3.382346799999937],[103.91148970000006,-3.355136099999925],[103.90788860000004,-3.352062099999955],[103.89952250000005,-3.348552899999959],[103.89085470000003,-3.341881299999955],[103.88628610000006,-3.329964599999926],[103.88274250000006,-3.330144799999971],[103.87760510000004,-3.335112299999935],[103.87253190000007,-3.3373168],[103.85860130000003,-3.338559299999929],[103.85549040000006,-3.334380599999974],[103.85714820000004,-3.327198899999928],[103.85416140000007,-3.321362499999964],[103.849581,-3.320067799999947],[103.83625750000004,-3.324871899999948],[103.83241070000008,-3.323271],[103.82770110000007,-3.327931699999965],[103.82110780000005,-3.324117099999967],[103.81450580000006,-3.3276088],[103.81096360000004,-3.326745],[103.808001,-3.316913899999975],[103.80427880000008,-3.316525699999943],[103.794822,-3.322270199999934],[103.78852060000008,-3.323413599999981],[103.768836,-3.340513099999953],[103.76234120000004,-3.343670599999939],[103.75212980000003,-3.341930899999966],[103.74706970000005,-3.342691899999977],[103.73073830000004,-3.349625799999956],[103.72367260000004,-3.351247399999977],[103.70639780000005,-3.3494979],[103.69008150000008,-3.344919499999946],[103.68131080000006,-3.336753699999974],[103.67472020000008,-3.340102299999955],[103.67252070000006,-3.343169099999955],[103.67155820000005,-3.349115299999937],[103.67669460000008,-3.362456399999928],[103.678684,-3.373682799999926],[103.67228680000005,-3.375017],[103.65645130000007,-3.367800599999953],[103.65054360000005,-3.36031],[103.64616480000007,-3.3515745],[103.62814760000003,-3.335049899999945],[103.61748860000006,-3.330000899999959],[103.613852,-3.344533499999955],[103.62517810000008,-3.356826399999932],[103.62471530000005,-3.375679699999978],[103.61597330000006,-3.387067199999933],[103.61594960000008,-3.403728599999965],[103.61413330000005,-3.419585599999948],[103.59319530000005,-3.449295],[103.59056570000007,-3.4571833],[103.586209,-3.452792199999976],[103.58619730000004,-3.460684399999934],[103.57660730000003,-3.454531699999961],[103.57224280000008,-3.455402],[103.566356,-3.473059499999977],[103.561004,-3.481382599999961],[103.54627920000007,-3.487870799999939],[103.54057860000006,-3.492834799999969],[103.54862350000008,-3.521742499999959],[103.54850810000005,-3.529069099999958],[103.53895790000007,-3.536025099999961],[103.53875350000004,-3.547788499999967],[103.55524560000003,-3.5516284],[103.56549040000004,-3.55211],[103.574395,-3.549766899999952],[103.60431250000005,-3.527753],[103.62830060000005,-3.512116499999934],[103.66541820000003,-3.538686],[103.67013720000006,-3.538454399999978],[103.68498440000008,-3.549187599999925],[103.72910390000004,-3.575482],[103.73819890000004,-3.577148699999952],[103.75595240000007,-3.575387599999942],[103.76203220000008,-3.585396799999955],[103.764808,-3.585159799999929],[103.76911430000007,-3.581895299999928],[103.77173770000007,-3.582431199999974],[103.77321010000009,-3.585120399999937],[103.77058060000007,-3.589211099999943],[103.76193110000008,-3.588332399999956],[103.76136520000006,-3.589406599999961],[103.76563140000007,-3.594878199999926],[103.76559720000006,-3.598133],[103.761913,-3.602710599999966],[103.75682970000008,-3.605071399999929],[103.75849110000007,-3.607381499999974],[103.76466080000006,-3.604572599999926],[103.76771070000007,-3.606949699999973],[103.76785280000007,-3.608919799999967],[103.76335070000005,-3.613837899999965],[103.76615690000006,-3.620762199999945],[103.767494,-3.631589499999961],[103.75218630000006,-3.639058199999965],[103.74780930000009,-3.639579599999934],[103.74021290000007,-3.647069299999941],[103.747377,-3.661103],[103.76285950000005,-3.661943299999962],[103.76428930000009,-3.659284399999933],[103.76591720000005,-3.660719399999948],[103.76532980000007,-3.667887299999961],[103.76305480000008,-3.668084],[103.76080950000005,-3.671151099999975],[103.76710250000008,-3.687739099999931],[103.74693750000006,-3.684026599999925],[103.73334550000004,-3.691731899999979],[103.73516790000008,-3.693961399999978],[103.73803820000006,-3.692786599999977],[103.73812340000006,-3.698540799999932],[103.74089680000009,-3.699864399999967],[103.74441820000004,-3.6993454],[103.74349820000003,-3.704452899999978],[103.750139,-3.711143199999981],[103.75143580000008,-3.716253799999947],[103.749603,-3.7213601],[103.75193830000006,-3.7297471],[103.76171270000003,-3.733690899999942],[103.762879,-3.738932399999953],[103.76084380000003,-3.740671],[103.75970730000006,-3.747034199999973],[103.7379,-3.752127199999961],[103.73370490000008,-3.756921699999964],[103.73482240000004,-3.761092],[103.73302510000008,-3.764092599999969],[103.72448430000009,-3.764747099999965],[103.72570140000005,-3.768021899999951],[103.722438,-3.771494799999971],[103.72256920000007,-3.774631699999929],[103.730355,-3.788826499999971],[103.72422530000006,-3.802591699999937],[103.72034820000005,-3.807768399999929],[103.70743590000006,-3.817363599999965],[103.70715140000004,-3.828294099999937],[103.71403080000005,-3.840310699999975],[103.70751590000003,-3.852077299999962],[103.70695570000004,-3.861448499999938],[103.703379,-3.869688599999961],[103.70524560000007,-3.8800351],[103.70283830000005,-3.893729299999961],[103.70452570000003,-3.898135299999979],[103.703823,-3.9010189],[103.69885450000004,-3.901895499999966],[103.69438240000005,-3.907767799999931],[103.68345390000007,-3.914538599999958],[103.67482010000003,-3.910042399999952],[103.67004690000005,-3.9103276],[103.66408520000005,-3.917203499999971],[103.65742340000008,-3.921382599999959],[103.65322840000005,-3.928371],[103.64836940000004,-3.932833499999958],[103.63123430000007,-3.942056899999955],[103.63138650000008,-3.946373899999969],[103.64363240000006,-3.958229399999937],[103.64411940000008,-3.965652399999954],[103.63147860000004,-3.976512899999932],[103.62399040000008,-3.980361399999936],[103.61997740000004,-3.987940699999967],[103.60135820000005,-3.98777],[103.59544810000006,-3.997492199999954],[103.59848640000007,-4.004513699999961],[103.59757540000004,-4.012207099999955],[103.59343620000004,-4.017249799999945],[103.59024480000005,-4.0280653],[103.59154960000006,-4.0351613],[103.59116930000005,-4.047424499999977],[103.58762930000006,-4.051987199999928],[103.58569690000007,-4.0616024],[103.58396020000004,-4.0619],[103.57940120000006,-4.067122099999949],[103.569006,-4.088805599999944],[103.56426770000007,-4.093666499999927],[103.56233310000005,-4.1069319],[103.55395790000006,-4.120863199999974],[103.54504750000007,-4.110636099999965],[103.53975830000007,-4.109547299999974],[103.52426150000008,-4.111847499999953],[103.51860540000007,-4.110915699999964],[103.51239380000004,-4.107411399999933],[103.50837540000003,-4.109877],[103.50536380000005,-4.115203899999926],[103.50570430000005,-4.118334599999969],[103.49946060000008,-4.123307599999976],[103.49922360000005,-4.126553],[103.49605570000006,-4.129267299999981],[103.47005710000008,-4.100469799999928],[103.46690080000008,-4.099739599999964],[103.46138410000003,-4.107426699999962],[103.45412410000006,-4.111841599999934],[103.43961090000005,-4.156476099999963],[103.43890380000005,-4.170534399999951],[103.362827,-4.222502199999951],[103.30941020000006,-4.251320799999974],[103.30506740000004,-4.254524899999979],[103.31061870000008,-4.2594433],[103.31811920000007,-4.279132],[103.328451,-4.292159199999958],[103.34252860000004,-4.295016899999951],[103.35616370000008,-4.300449799999967],[103.37615730000005,-4.3142549],[103.38172140000006,-4.316327399999977],[103.39052640000006,-4.318269399999963],[103.41127120000004,-4.319513],[103.42094140000006,-4.322555499999964],[103.43391670000005,-4.329466599999932],[103.45769060000003,-4.333041499999979],[103.46375210000008,-4.337679],[103.46735610000007,-4.343658599999969],[103.46805760000007,-4.3530811]]],[[[104.25552520000008,-3.043487299999924],[104.25710240000006,-3.046527899999944],[104.25707840000007,-3.056419],[104.25370390000006,-3.070761599999969],[104.24498180000006,-3.096207099999958],[104.23566720000008,-3.152726899999948],[104.23355020000008,-3.188792199999966],[104.23007380000007,-3.212210099999936],[104.226531,-3.222465799999952],[104.22344860000004,-3.227048199999956],[104.21294960000006,-3.237183799999968],[104.20666580000005,-3.245700399999976],[104.21082360000008,-3.245829699999945],[104.23390610000007,-3.255913299999975],[104.22789510000007,-3.2587271],[104.22801670000007,-3.260722399999963],[104.23802170000005,-3.2660562],[104.23573390000007,-3.268202],[104.22807460000007,-3.265486399999929],[104.23384760000005,-3.282937799999956],[104.23044820000007,-3.285983599999952],[104.23389630000008,-3.299781499999938],[104.23232240000004,-3.305178299999966],[104.21923050000004,-3.318995699999959],[104.21158870000005,-3.329754699999967],[104.21004610000006,-3.334238899999946],[104.20837510000007,-3.345311899999956],[104.21267540000008,-3.367756799999938],[104.24165120000004,-3.373589799999934],[104.24800230000005,-3.372980699999971],[104.280727,-3.3644787],[104.29790850000006,-3.356826099999978],[104.30585410000003,-3.356841499999973],[104.32645320000006,-3.366047099999946],[104.348191,-3.371480899999938],[104.31677,-3.4269533],[104.31253570000007,-3.4394528],[104.30936850000006,-3.463250799999969],[104.301463,-3.4639341],[104.29658550000005,-3.469951699999967],[104.292794,-3.478365499999938],[104.29308620000006,-3.487568899999928],[104.29567570000006,-3.493081099999927],[104.30095330000006,-3.497595699999977],[104.30606850000004,-3.497403799999972],[104.31758620000005,-3.503413599999931],[104.33301240000009,-3.505896399999926],[104.34897,-3.504284599999949],[104.37213770000005,-3.505538899999976],[104.37810630000007,-3.504014599999948],[104.38270160000008,-3.505767699999979],[104.385369,-3.504913199999976],[104.40549540000006,-3.5074216],[104.43908970000007,-3.495437399999958],[104.44587130000008,-3.495304],[104.44750180000005,-3.425134],[104.46407670000008,-3.422877699999958],[104.469877,-3.405326099999968],[104.48935640000008,-3.400536699999975],[104.49427080000004,-3.397940099999971],[104.50745460000007,-3.379538699999955],[104.51324160000007,-3.3882178],[104.522176,-3.372094299999958],[104.53623710000005,-3.353704299999947],[104.53486520000007,-3.333197],[104.53910390000004,-3.317658699999924],[104.53489820000004,-3.321261499999935],[104.52938250000005,-3.323069799999928],[104.52802740000004,-3.3020513],[104.53095,-3.291463399999941],[104.53993540000005,-3.268418099999963],[104.551138,-3.261039099999948],[104.55629320000008,-3.263573099999974],[104.56867020000004,-3.247523399999977],[104.57150770000004,-3.239532299999951],[104.56335880000006,-3.215233199999943],[104.53513510000005,-3.2146506],[104.51454290000004,-3.205157499999927],[104.51072180000006,-3.200630899999965],[104.49608520000004,-3.173754499999973],[104.49694470000009,-3.169159299999933],[104.49208980000009,-3.1634124],[104.49003720000007,-3.142445599999974],[104.48367370000005,-3.136265299999934],[104.48367540000004,-3.1328186],[104.48510490000007,-3.131096],[104.48396510000003,-3.124776399999973],[104.47910960000007,-3.120752899999957],[104.47882620000007,-3.1158699],[104.48740430000004,-3.103236099999947],[104.49111920000007,-3.102376299999946],[104.49540810000008,-3.096059299999979],[104.49940950000007,-3.093476199999941],[104.50483840000004,-3.093191499999932],[104.51284050000004,-3.089461299999925],[104.519838,-3.090861399999937],[104.52270960000004,-3.096456699999976],[104.52601130000005,-3.097380299999941],[104.54240270000008,-3.09081],[104.54411270000008,-3.095851399999958],[104.57794540000003,-3.093567399999927],[104.60947180000005,-3.10152],[104.61820880000005,-3.111373],[104.67887730000007,-3.068487399999981],[104.68083610000008,-3.066683399999931],[104.67596150000008,-3.060929199999975],[104.69045010000008,-3.056024199999968],[104.66407260000005,-3.041748599999949],[104.65478360000009,-3.032319299999926],[104.64494390000004,-3.0254487],[104.63587140000004,-3.018983599999956],[104.62591150000009,-3.014269599999977],[104.61883140000003,-3.013045899999952],[104.61213220000008,-3.014264799999978],[104.60647260000007,-3.019915499999968],[104.60208680000005,-3.027369],[104.60308380000004,-3.041544099999953],[104.60183150000006,-3.046139],[104.59993290000006,-3.049216299999955],[104.59251460000007,-3.051597899999933],[104.58652060000009,-3.0508586],[104.58296660000008,-3.0480376],[104.58531750000009,-3.0387231],[104.58267,-3.034964699999932],[104.57991240000007,-3.034270499999934],[104.56532390000007,-3.037402],[104.54838130000007,-3.029041199999938],[104.54203190000004,-3.027251],[104.53785870000007,-3.027832899999964],[104.52337420000003,-3.042017099999953],[104.51549760000006,-3.047193599999957],[104.51099450000004,-3.055107599999928],[104.50543970000007,-3.061306499999944],[104.49905230000007,-3.062945],[104.49161350000008,-3.062686199999973],[104.48573590000007,-3.060822899999948],[104.48265370000007,-3.056079199999942],[104.47859250000005,-3.031660399999964],[104.47468860000004,-3.030156599999941],[104.45099760000005,-3.035145299999954],[104.44346280000008,-3.0347453],[104.42507730000005,-3.026742099999979],[104.41660220000006,-3.021093499999949],[104.40496890000009,-3.019171299999925],[104.39617860000004,-3.020142399999941],[104.38426760000004,-3.023819199999934],[104.37568420000008,-3.020830799999942],[104.34295940000004,-3.017306299999973],[104.35303310000006,-3.0346205],[104.355759,-3.048388699999975],[104.33852060000004,-3.032437399999935],[104.31819670000004,-3.021801],[104.30648370000006,-3.024674199999936],[104.28427480000005,-3.035442599999953],[104.27409280000006,-3.034597899999937],[104.26734110000007,-3.027710799999966],[104.264345,-3.026542799999959],[104.25660470000008,-3.033190499999932],[104.25552520000008,-3.043487299999924]]]]},"properties":{"shapeName":"Muara Enim","shapeISO":"","shapeID":"22746128B70314079964632","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[104.35847070000005,-1.642855199999929],[104.34550680000007,-1.635730699999954],[104.33240490000009,-1.626234599999975],[104.31213680000008,-1.607333099999948],[104.29734010000004,-1.571046699999954],[104.284092,-1.561314],[104.26044190000005,-1.554327499999943],[104.25383290000008,-1.549002799999926],[104.21236520000008,-1.496267099999955],[104.20596260000008,-1.489818799999966],[104.19706560000009,-1.474883499999976],[104.18696330000006,-1.462490699999933],[104.17092370000006,-1.446319599999924],[104.16232530000008,-1.430281899999954],[104.147115,-1.407627099999956],[104.11109140000008,-1.341647799999976],[104.09490510000006,-1.323148199999935],[104.07279630000005,-1.302687899999967],[104.06856320000009,-1.308447699999931],[104.05699280000005,-1.310641399999952],[103.83789660000008,-1.334581],[103.58460770000005,-1.382508499999972],[103.58476950000005,-1.344712099999924],[103.58314310000009,-1.344579299999964],[103.58319360000007,-1.3374834],[103.57892730000003,-1.330869199999938],[103.55960980000003,-1.330857899999955],[103.55569550000007,-1.324941099999933],[103.55679110000005,-1.312126899999953],[103.55222040000007,-1.312233799999944],[103.55222350000008,-1.3069764],[103.53606340000005,-1.306583599999954],[103.53616740000007,-1.314907799999958],[103.51128170000004,-1.315272499999935],[103.51127360000004,-1.321061499999928],[103.45669250000009,-1.319006299999955],[103.43394040000004,-1.297519799999975],[103.39301920000008,-1.266264499999977],[103.34626750000007,-1.265721],[103.34689670000006,-1.228777799999932],[103.27274,-1.229669399999977],[103.26054390000007,-1.231264499999952],[103.26394370000008,-1.310859],[103.26301530000006,-1.316067199999964],[103.26023010000006,-1.318089399999963],[103.26216230000006,-1.332549599999936],[103.25624930000004,-1.336842499999932],[103.25556970000008,-1.339854399999979],[103.25269090000006,-1.343046499999957],[103.25292870000004,-1.353982599999938],[103.24665190000007,-1.361079299999972],[103.23638030000006,-1.363795],[103.23255540000008,-1.357793199999946],[103.23172770000008,-1.343139699999938],[103.21886150000006,-1.3448146],[103.20536750000008,-1.355465399999957],[103.21602410000008,-1.3650061],[103.21673160000006,-1.370737099999928],[103.21557030000008,-1.373960799999963],[103.21745830000003,-1.378073899999947],[103.24437590000008,-1.395462299999963],[103.25389190000004,-1.408412599999963],[103.25837110000003,-1.4087015],[103.26584950000006,-1.405693099999951],[103.26683030000004,-1.401696299999969],[103.26557050000008,-1.398966899999948],[103.25976720000006,-1.397725199999968],[103.25481130000009,-1.393259899999975],[103.25033760000008,-1.385578799999962],[103.25014680000004,-1.382293699999934],[103.25400530000007,-1.373424499999942],[103.25821920000004,-1.355848499999979],[103.26039380000009,-1.353937599999938],[103.29302130000008,-1.3527008],[103.29512870000008,-1.349833499999932],[103.30439750000005,-1.351718399999925],[103.30989640000007,-1.354659399999946],[103.31254240000004,-1.358623099999932],[103.31423570000004,-1.365045099999975],[103.31912330000006,-1.368327199999953],[103.32362640000008,-1.366242099999965],[103.331573,-1.365496299999961],[103.33891410000007,-1.371834399999955],[103.33991880000008,-1.3767045],[103.33692730000007,-1.381483899999978],[103.34189270000007,-1.388628399999959],[103.34256520000008,-1.398055399999976],[103.34772360000005,-1.402840499999968],[103.34581910000009,-1.413813199999936],[103.35410160000004,-1.434415299999955],[103.35328130000005,-1.441860299999973],[103.36047610000008,-1.448218199999928],[103.36633290000003,-1.450860699999964],[103.37148630000007,-1.462613499999975],[103.37569550000006,-1.465144],[103.38086590000006,-1.47345],[103.38350920000005,-1.481239199999948],[103.38809760000004,-1.482889899999975],[103.39105040000004,-1.481872199999941],[103.39554970000006,-1.474780599999974],[103.40105890000007,-1.472523099999933],[103.41057590000008,-1.472707399999933],[103.41568480000007,-1.475859399999933],[103.42469430000006,-1.474905299999932],[103.43015060000005,-1.467689499999949],[103.432447,-1.466586199999938],[103.43419180000006,-1.469249299999944],[103.43486650000006,-1.467793299999926],[103.43626360000007,-1.468070499999953],[103.43878010000009,-1.473446199999955],[103.44337260000003,-1.471641399999953],[103.44444250000004,-1.475986599999942],[103.44659080000008,-1.472522599999934],[103.44569450000006,-1.469583799999953],[103.45147240000006,-1.467641699999945],[103.45693540000008,-1.4699558],[103.459406,-1.469530599999928],[103.45994090000005,-1.471828799999969],[103.46807570000004,-1.471432599999957],[103.46869710000004,-1.474948799999936],[103.46253270000005,-1.476501499999927],[103.45842570000008,-1.479926399999954],[103.45208670000005,-1.489549299999965],[103.457051,-1.489858499999968],[103.459184,-1.491775099999927],[103.45951090000005,-1.499946299999976],[103.457035,-1.506358199999966],[103.45667560000004,-1.515725299999929],[103.46471770000005,-1.524095099999954],[103.466445,-1.529414199999962],[103.46570470000006,-1.535259699999926],[103.45663760000008,-1.558966399999974],[103.45322870000007,-1.564895799999931],[103.44776440000004,-1.5684174],[103.45202520000004,-1.577833599999963],[103.45151430000004,-1.582780699999944],[103.45583810000005,-1.587828899999977],[103.44862230000007,-1.594245199999932],[103.44932350000005,-1.599208199999964],[103.44417640000006,-1.600834799999973],[103.43903190000003,-1.598845899999958],[103.43550460000006,-1.602458699999943],[103.42166070000007,-1.605088799999976],[103.417781,-1.608488499999964],[103.41876470000005,-1.612742699999956],[103.41694840000008,-1.6160129],[103.42430610000008,-1.621539],[103.41436410000006,-1.632229299999949],[103.38813210000006,-1.631991299999925],[103.38630180000007,-1.6408558],[103.38633840000006,-1.644342599999959],[103.41475520000006,-1.644044899999926],[103.41625550000003,-1.649556599999926],[103.41631890000008,-1.6584888],[103.419066,-1.663990599999977],[103.41771840000007,-1.674268699999971],[103.41847560000008,-1.6854579],[103.41449180000006,-1.691753899999981],[103.41189150000008,-1.700869099999977],[103.39786970000006,-1.712986699999931],[103.39685580000008,-1.720139199999949],[103.400283,-1.727048299999979],[103.40085350000004,-1.732421399999964],[103.39846620000009,-1.738618599999938],[103.39598580000006,-1.757627399999933],[103.401235,-1.766806699999961],[103.41716090000006,-1.778392399999973],[103.42232940000008,-1.786083899999937],[103.43001060000006,-1.810140499999932],[103.42920940000005,-1.812636699999928],[103.41509580000007,-1.8174781],[103.39984080000005,-1.826195499999926],[103.39823570000004,-1.834023199999933],[103.39771190000005,-1.8553519],[103.39879840000003,-1.863139799999942],[103.39551660000006,-1.868682099999944],[103.31464870000008,-1.868475399999966],[103.31426190000008,-1.965403199999969],[103.33490710000007,-1.9654241],[103.332845,-2.001725699999952],[103.36952360000004,-2.001927599999931],[103.36937620000003,-2.050806699999953],[103.37459770000004,-2.052299299999959],[103.37488970000004,-2.055868799999928],[103.39164010000007,-2.0585629],[103.44140780000004,-2.058513499999947],[103.44179490000005,-2.0657518],[103.44652880000007,-2.0622862],[103.44703490000006,-2.174058199999934],[103.44788120000004,-2.177900099999931],[103.458712,-2.181107199999929],[103.45859170000006,-2.177841399999977],[103.46068670000005,-2.174886499999957],[103.47285970000007,-2.174364199999957],[103.48724830000003,-2.1774022],[103.49871830000006,-2.1773071],[103.51629640000004,-2.169006299999978],[103.52752690000005,-2.166992199999925],[103.53833010000005,-2.159179699999925],[103.54711910000003,-2.147705099999939],[103.55432130000008,-2.145690899999977],[103.55969240000007,-2.141418499999929],[103.54888920000008,-2.137878399999977],[103.54071040000008,-2.132812499999943],[103.53588870000004,-2.126709],[103.53088380000008,-2.125427199999933],[103.52752690000005,-2.118408199999976],[103.51708980000006,-2.103576699999962],[103.51892090000007,-2.098693799999978],[103.51409910000007,-2.083679199999949],[103.519104,-2.075378399999977],[103.520937,-2.069227199999943],[103.53210450000006,-2.063415499999962],[103.53362690000006,-2.055676099999971],[103.53841690000007,-2.049191399999927],[103.54607720000007,-2.049879699999963],[103.551581,-2.048351699999955],[103.55421770000004,-2.041902299999947],[103.55724310000005,-2.0114792],[103.56021590000006,-2.000026699999978],[103.54753450000004,-1.986767699999973],[103.51809910000009,-1.966172399999948],[103.50958550000007,-1.96242],[103.50988770000004,-1.955627399999969],[103.51409910000007,-1.945617699999957],[103.51971320000007,-1.9086967],[103.52270510000005,-1.906616199999974],[103.52446630000009,-1.900732399999924],[103.53762420000004,-1.888571899999931],[103.54878560000009,-1.881423099999949],[103.557238,-1.878741699999978],[103.56348750000006,-1.874109099999941],[103.57999220000005,-1.867703799999958],[103.60710830000005,-1.848720699999944],[103.60902110000006,-1.850630899999942],[103.62564950000007,-1.843539899999939],[103.63770580000005,-1.850873899999954],[103.64130380000006,-1.850195299999939],[103.64515850000004,-1.845769399999938],[103.65724170000004,-1.8457786],[103.66050610000008,-1.848961699999961],[103.66428410000003,-1.848964599999931],[103.75704330000008,-1.825305599999979],[103.75492830000007,-1.819556599999942],[103.76608810000005,-1.815996599999949],[103.77710620000005,-1.820329099999981],[103.79084250000005,-1.817141799999945],[103.89187550000008,-1.792674399999953],[104.15272080000005,-1.724883],[104.34232030000004,-1.675589099999968],[104.34658340000004,-1.668316399999981],[104.35120660000007,-1.666364299999941],[104.35488630000003,-1.662263099999961],[104.35460810000006,-1.6593004],[104.35981020000008,-1.655901699999959],[104.35847070000005,-1.642855199999929]],[[103.61423680000007,-1.546965099999966],[103.62209090000005,-1.551157199999977],[103.62682380000007,-1.550017199999957],[103.64864260000007,-1.549954],[103.65306850000007,-1.552071],[103.65469430000007,-1.561417099999971],[103.65297140000007,-1.567831699999942],[103.651631,-1.567865499999925],[103.65126080000005,-1.583965099999944],[103.65693590000006,-1.596661099999949],[103.65473650000007,-1.6012547],[103.655102,-1.607916699999976],[103.65725640000005,-1.611035699999945],[103.65760730000005,-1.6089485],[103.65962610000008,-1.609311899999966],[103.66413370000004,-1.605859599999974],[103.66688170000003,-1.608609799999954],[103.67746570000008,-1.612873199999967],[103.68097120000004,-1.616608399999961],[103.67646710000008,-1.621747],[103.67468990000003,-1.628970599999946],[103.67309570000003,-1.6289142],[103.66921340000005,-1.6327969],[103.67011920000004,-1.640464899999927],[103.66586740000008,-1.639867799999934],[103.66358690000004,-1.642708699999957],[103.65863880000006,-1.644138199999929],[103.66022720000007,-1.649805799999967],[103.65778590000008,-1.652001],[103.65490630000005,-1.651728399999968],[103.653994,-1.655787399999952],[103.652214,-1.656603299999972],[103.64719820000005,-1.656925399999977],[103.64386920000004,-1.655158299999925],[103.64075330000009,-1.656555899999944],[103.63979430000006,-1.655135799999925],[103.63227080000007,-1.6560177],[103.63088180000005,-1.653276499999947],[103.62789770000006,-1.656424699999945],[103.62670810000009,-1.66437],[103.61387310000003,-1.656530799999928],[103.608018,-1.659581099999969],[103.61240590000006,-1.6659336],[103.61875180000004,-1.666024],[103.61833450000006,-1.668466899999942],[103.626162,-1.672167299999956],[103.62721320000009,-1.676365299999929],[103.63094330000007,-1.676428599999952],[103.62079650000004,-1.691221299999938],[103.62117,-1.694957899999963],[103.616648,-1.688949],[103.61444710000006,-1.691886699999941],[103.60893440000007,-1.690858899999967],[103.59438360000007,-1.673750599999948],[103.57694760000004,-1.668678399999976],[103.57605560000007,-1.663662699999975],[103.57249280000008,-1.665978899999971],[103.56820410000006,-1.665336399999944],[103.56363540000007,-1.670511599999941],[103.55880010000004,-1.679694799999936],[103.55122140000009,-1.675931],[103.54256720000006,-1.680355299999974],[103.52666540000007,-1.6766367],[103.52525880000007,-1.662595099999976],[103.528571,-1.650245199999972],[103.53938480000005,-1.645240799999954],[103.53970650000008,-1.631137],[103.54888730000005,-1.609458899999936],[103.53688740000007,-1.589138599999956],[103.54334030000007,-1.589772099999948],[103.54544610000005,-1.587569499999972],[103.54394050000008,-1.5770873],[103.54632590000006,-1.569315499999959],[103.55006760000003,-1.565533699999946],[103.554843,-1.565778],[103.560836,-1.568692599999963],[103.56624220000003,-1.573766899999953],[103.60076320000007,-1.547474899999941],[103.60608580000007,-1.546262599999977],[103.61423680000007,-1.546965099999966]]]},"properties":{"shapeName":"Muaro Jambi","shapeISO":"","shapeID":"22746128B82026478612933","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[101.85557980000004,-2.716880499999945],[101.84043150000008,-2.699892],[101.83594970000007,-2.697561699999937],[101.82990820000003,-2.697168799999929],[101.82624720000007,-2.699832499999957],[101.82418650000005,-2.696739699999966],[101.81485960000003,-2.691377299999942],[101.817408,-2.683258399999943],[101.81533070000006,-2.672863799999959],[101.81341990000004,-2.671171799999968],[101.80682020000006,-2.6716296],[101.80505550000004,-2.669642199999942],[101.79779030000009,-2.667741199999966],[101.78911760000005,-2.659647799999959],[101.77457480000004,-2.650313599999947],[101.76832690000003,-2.644132099999979],[101.76235620000006,-2.630574],[101.75853960000006,-2.629328599999951],[101.75132950000005,-2.619018399999959],[101.741051,-2.614420899999971],[101.73500670000004,-2.609198399999968],[101.72965610000006,-2.5983223],[101.72035210000007,-2.586936099999946],[101.70864290000009,-2.575727599999937],[101.70251760000008,-2.565271],[101.68228350000004,-2.544943399999966],[101.67580220000008,-2.532823299999961],[101.66913360000007,-2.529644699999949],[101.65463580000005,-2.528766499999961],[101.65022890000006,-2.530407499999967],[101.64113880000008,-2.542818099999977],[101.621058,-2.547395199999926],[101.61198070000006,-2.548120599999947],[101.60557690000007,-2.538472599999977],[101.60317220000007,-2.536887],[101.59813730000008,-2.538075299999946],[101.58787760000007,-2.544453099999942],[101.57465720000005,-2.544345199999952],[101.57014460000005,-2.546389799999929],[101.56454810000008,-2.551502899999946],[101.56373130000009,-2.560636199999976],[101.559398,-2.569135299999971],[101.55305110000006,-2.571756499999935],[101.54660880000006,-2.570597899999939],[101.54241820000004,-2.563289399999974],[101.54173060000005,-2.552963],[101.54528930000004,-2.521992299999965],[101.54815610000009,-2.508889499999952],[101.54698170000006,-2.505162799999937],[101.54802110000008,-2.499937099999954],[101.54957220000006,-2.494333499999925],[101.55289330000005,-2.493027099999949],[101.556918,-2.487315299999977],[101.55677340000005,-2.480709699999977],[101.55905790000008,-2.475319699999943],[101.55812210000005,-2.468742099999929],[101.56161830000008,-2.462500899999952],[101.56081430000006,-2.45587],[101.55750330000006,-2.450368399999945],[101.55680930000005,-2.449533599999938],[101.55667,-2.449359799999968],[101.54920970000006,-2.443553799999961],[101.52944170000006,-2.432277699999929],[101.48506560000004,-2.409759399999928],[101.44857180000008,-2.386727899999926],[101.43646780000006,-2.374404599999934],[101.41901190000004,-2.369887399999925],[101.41016020000006,-2.362497499999961],[101.31947780000007,-2.3046],[101.30303280000004,-2.29285],[101.28538520000006,-2.276711],[101.28327630000007,-2.284889599999929],[101.26715810000007,-2.299468299999944],[101.26016580000004,-2.309638699999937],[101.25410310000007,-2.313958],[101.23766190000003,-2.320008399999949],[101.23622180000007,-2.324748899999975],[101.23699150000004,-2.342364599999939],[101.23031480000009,-2.342561699999976],[101.22614940000005,-2.347508599999969],[101.2062,-2.359996199999955],[101.20140810000004,-2.366406799999936],[101.19061730000004,-2.368114299999945],[101.184043,-2.375503299999934],[101.17625330000004,-2.376108099999954],[101.17031750000007,-2.382633399999975],[101.159923,-2.382477499999936],[101.15536930000007,-2.384501099999966],[101.15311240000005,-2.387212599999941],[101.14679170000005,-2.387803699999949],[101.14224270000005,-2.393923499999971],[101.13180180000006,-2.401776199999972],[101.02281160000007,-2.478441799999928],[101.02853620000008,-2.493175299999962],[101.047366,-2.508277499999963],[101.07021970000005,-2.533128199999965],[101.07224490000004,-2.537257699999941],[101.08582180000008,-2.552026799999965],[101.10920370000008,-2.5827383],[101.11485290000007,-2.595773099999974],[101.14224340000004,-2.628377099999966],[101.16328320000008,-2.642911199999958],[101.18008680000008,-2.652333899999974],[101.23725860000008,-2.678497299999947],[101.26214630000004,-2.692046299999959],[101.29355040000007,-2.712462499999958],[101.30337820000005,-2.720172799999943],[101.32050730000009,-2.737593199999935],[101.323683,-2.743112799999949],[101.32433840000004,-2.754819199999929],[101.335446,-2.771330299999931],[101.34529840000005,-2.789677299999937],[101.40383970000005,-2.927266299999928],[101.41579470000005,-2.942791799999952],[101.44987690000005,-2.979949899999951],[101.45317690000007,-2.98162],[101.45624980000008,-2.987087599999938],[101.47923910000009,-3.012462299999925],[101.48652340000007,-3.030839299999968],[101.488886,-3.040465299999937],[101.488142,-3.052676899999938],[101.51492350000007,-3.080320899999947],[101.52508770000009,-3.099966299999949],[101.52518150000009,-3.104253],[101.52022690000007,-3.113701799999944],[101.52074980000003,-3.115763499999957],[101.53187910000008,-3.1297745],[101.54516820000003,-3.141812799999968],[101.546438,-3.145638],[101.55408170000004,-3.154025499999932],[101.55917050000005,-3.164047599999947],[101.57578710000007,-3.184560499999975],[101.58418840000007,-3.179248199999961],[101.5955,-3.15948],[101.5992,-3.155622],[101.6067,-3.151829],[101.6212,-3.149064],[101.6221,-3.138038],[101.6393,-3.136267],[101.653,-3.128449],[101.6687,-3.125826],[101.6745,-3.116703],[101.71341190000004,-3.076077199999929],[101.706368,-3.059508699999981],[101.70203830000008,-3.053905199999974],[101.71785820000008,-3.0445894],[101.72435120000006,-3.038281199999972],[101.737955,-3.029690099999925],[101.74712310000007,-3.0206789],[101.75491470000009,-3.004732499999932],[101.765568,-3.0034112],[101.77478550000006,-3.000008399999956],[101.77833310000005,-2.994966799999929],[101.78140670000005,-2.994311799999934],[101.78382170000003,-2.987690799999939],[101.79078280000004,-2.982999499999949],[101.791988,-2.978790199999935],[101.78971260000009,-2.969808399999977],[101.78401180000009,-2.963747199999943],[101.78348850000003,-2.954653],[101.78537430000006,-2.950873499999943],[101.78455450000007,-2.937537899999938],[101.78701120000005,-2.933289599999966],[101.79826860000009,-2.930852699999946],[101.80257040000004,-2.922244199999966],[101.80419780000005,-2.898950099999979],[101.80273980000004,-2.888689899999974],[101.80594180000008,-2.879858799999965],[101.80932550000006,-2.872107599999936],[101.82040850000004,-2.863797199999965],[101.82879940000004,-2.853152699999953],[101.83327120000007,-2.850980899999968],[101.84076120000009,-2.838178],[101.84987250000006,-2.8293326],[101.85359130000006,-2.812217799999928],[101.85823530000005,-2.807344799999953],[101.86606970000008,-2.788959699999964],[101.86605880000008,-2.784458299999926],[101.862823,-2.779244499999947],[101.86351190000005,-2.767899299999954],[101.859362,-2.754765099999929],[101.85796910000005,-2.744831499999975],[101.86037820000007,-2.730274799999961],[101.85768590000004,-2.727580299999943],[101.85557980000004,-2.716880499999945]]]},"properties":{"shapeName":"Mukomuko","shapeISO":"","shapeID":"22746128B48691826591334","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[122.27014480000003,-5.1526603],[122.27410110000005,-5.149850199999946],[122.27490690000002,-5.146634399999925],[122.28350580000006,-5.1419339],[122.28419560000009,-5.139809399999933],[122.27835920000007,-5.1333693],[122.26952670000003,-5.142090399999972],[122.26740130000007,-5.147027899999955],[122.2670518000001,-5.152082299999961],[122.27014480000003,-5.1526603]]],[[[122.35273270000005,-5.097946099999945],[122.35101410000004,-5.098959099999945],[122.352239,-5.099288699999931],[122.35273270000005,-5.097946099999945]]],[[[122.33440310000003,-5.090008099999977],[122.332511,-5.090947399999948],[122.33288740000012,-5.094189099999937],[122.33606430000009,-5.092216899999926],[122.334263,-5.092205799999931],[122.33532670000011,-5.090685599999972],[122.33440310000003,-5.090008099999977]]],[[[122.79214940000008,-4.966138099999966],[122.7870051000001,-4.9664992],[122.78554970000005,-4.971944599999972],[122.7883819000001,-4.977210899999932],[122.79354350000006,-4.978045099999974],[122.79557880000004,-4.975584799999979],[122.794337,-4.9672037],[122.79214940000008,-4.966138099999966]]],[[[122.7999817000001,-4.932766399999934],[122.79907810000009,-4.933663399999944],[122.80177,-4.936002799999926],[122.80226850000008,-4.933617899999945],[122.7999817000001,-4.932766399999934]]],[[[122.81611840000005,-4.910531],[122.81662710000012,-4.911941499999955],[122.8133064000001,-4.914464299999963],[122.81585250000012,-4.915861],[122.81744870000011,-4.913692599999933],[122.81611840000005,-4.910531]]],[[[122.6263133000001,-5.203832699999964],[122.6273572,-5.197487899999942],[122.62488680000001,-5.192431899999974],[122.59957650000001,-5.200660099999936],[122.5945233000001,-5.200585399999966],[122.58909470000003,-5.196040499999981],[122.58544690000008,-5.186814499999969],[122.58767980000005,-5.181011799999965],[122.58868330000007,-5.159982599999978],[122.59507460000009,-5.151993799999957],[122.59970340000007,-5.141657599999974],[122.60948050000002,-5.129697399999941],[122.62008450000008,-5.109694599999955],[122.61645010000007,-5.1047109],[122.61360880000007,-5.105538699999954],[122.61218880000001,-5.1045827],[122.61084260000007,-5.099607299999946],[122.61237560000006,-5.094896899999981],[122.6368169000001,-5.059053],[122.6560052000001,-5.046651399999973],[122.66127270000004,-5.047392499999944],[122.6770778,-5.036590699999977],[122.68174290000002,-5.030476],[122.6843503,-5.029215199999953],[122.68976670000006,-5.017798499999969],[122.6963128000001,-5.014404699999943],[122.69673340000008,-5.0099721],[122.7044532000001,-5.006413899999927],[122.70442880000007,-5.0022163],[122.70918170000004,-4.998509399999932],[122.712246,-4.992757499999925],[122.71374050000009,-4.986822299999972],[122.71045370000002,-4.984297499999968],[122.7148204,-4.982985499999927],[122.71307430000002,-4.981491299999959],[122.71643870000003,-4.982239099999958],[122.71944410000003,-4.981132699999932],[122.71669710000003,-4.977217499999938],[122.71744310000008,-4.974630499999932],[122.721065,-4.973189499999933],[122.71836870000004,-4.971411799999942],[122.7212545000001,-4.964733399999943],[122.73165640000002,-4.9647363],[122.73224750000008,-4.963062599999944],[122.72927450000009,-4.959161399999971],[122.7359388000001,-4.958865699999933],[122.74963520000006,-4.966892499999972],[122.75372430000004,-4.966719099999978],[122.760608,-4.971481299999937],[122.76277880000009,-4.96762],[122.7595166000001,-4.966261699999961],[122.76054210000007,-4.96514],[122.7627218,-4.965948699999956],[122.76341080000009,-4.964063899999928],[122.76058310000008,-4.961806599999932],[122.75920170000006,-4.963329499999929],[122.75713280000002,-4.962561599999958],[122.75630540000009,-4.961018799999977],[122.75815690000002,-4.962679199999968],[122.75773690000005,-4.9603774],[122.759876,-4.961147599999947],[122.7602184000001,-4.959740799999963],[122.75312340000005,-4.953165199999944],[122.7573334000001,-4.954938599999934],[122.75859610000009,-4.954556599999933],[122.7548048000001,-4.952530599999932],[122.75599100000011,-4.951568099999974],[122.7573341000001,-4.953052499999956],[122.75806650000004,-4.952070099999958],[122.76071590000004,-4.953842899999927],[122.76114370000005,-4.952759299999968],[122.76260330000002,-4.953320399999939],[122.7616465000001,-4.950385299999937],[122.75878680000005,-4.948469499999931],[122.76035450000006,-4.946995],[122.75896060000002,-4.946649399999956],[122.7593687000001,-4.945647099999974],[122.76319380000007,-4.944714199999964],[122.76073350000001,-4.939548499999944],[122.76237250000008,-4.937778],[122.76061310000011,-4.9315865],[122.75790780000011,-4.931168399999933],[122.75815190000003,-4.929893199999981],[122.7549864,-4.9282853],[122.75664820000009,-4.925464299999931],[122.75744980000002,-4.927401399999951],[122.7582708000001,-4.926307599999973],[122.75841180000009,-4.927623599999947],[122.764987,-4.929534699999977],[122.76160620000007,-4.923105],[122.7635656000001,-4.920049399999925],[122.76007270000002,-4.9160287],[122.75902930000007,-4.909708199999955],[122.7607478000001,-4.909241599999973],[122.76261040000009,-4.910852399999953],[122.7600738000001,-4.906906399999968],[122.75687990000006,-4.905063699999971],[122.75553080000009,-4.901895799999977],[122.76122080000005,-4.903585499999963],[122.76173470000003,-4.900758099999962],[122.76358660000005,-4.900846],[122.76251730000001,-4.903363699999943],[122.76393830000006,-4.904662899999948],[122.76402140000005,-4.902452899999957],[122.76804,-4.903502199999934],[122.7654083000001,-4.901689699999963],[122.7687350000001,-4.903234099999963],[122.76833490000001,-4.902221],[122.76954890000002,-4.902469099999962],[122.76880540000002,-4.901093899999978],[122.76752320000003,-4.901260199999967],[122.76803890000008,-4.902205099999946],[122.76576470000009,-4.900916699999925],[122.76605680000011,-4.898578099999952],[122.7629042000001,-4.897008399999947],[122.76479880000011,-4.897323399999948],[122.7635931000001,-4.89591],[122.76674030000004,-4.894929899999966],[122.758746,-4.892239099999927],[122.758995,-4.890869],[122.76045440000007,-4.8908823],[122.7595133000001,-4.889041799999973],[122.75715150000008,-4.889371199999971],[122.75843140000006,-4.891132399999947],[122.75304070000004,-4.889642799999933],[122.75371640000003,-4.885650299999952],[122.7571484,-4.884779899999955],[122.75563790000001,-4.881554799999947],[122.74824380000007,-4.884584899999936],[122.7456691000001,-4.888679299999978],[122.74193680000008,-4.884468499999969],[122.73818710000012,-4.883023199999968],[122.73643750000008,-4.879259799999943],[122.73936580000009,-4.873780099999976],[122.73449220000009,-4.871611099999939],[122.73217690000001,-4.873713699999939],[122.73274010000011,-4.872085199999958],[122.729978,-4.871276499999965],[122.73477930000001,-4.870647],[122.7335647000001,-4.869530899999972],[122.73467750000009,-4.868774599999938],[122.73733720000007,-4.869634499999961],[122.73801570000012,-4.866667299999961],[122.73627670000008,-4.865705],[122.73664110000004,-4.863383499999941],[122.73375830000009,-4.863091499999939],[122.73465540000007,-4.861740899999972],[122.733503,-4.860238099999947],[122.73483360000012,-4.861754399999938],[122.73520810000002,-4.860595],[122.72853380000004,-4.856073599999945],[122.72642310000003,-4.849904699999968],[122.73074480000002,-4.848160399999927],[122.72886660000006,-4.8416891],[122.73741450000011,-4.81569],[122.73686970000006,-4.813567399999954],[122.73895980000009,-4.811763199999973],[122.73801360000004,-4.809339],[122.73860080000009,-4.807625399999949],[122.7402125000001,-4.808829699999933],[122.74071580000009,-4.807080199999973],[122.73875060000012,-4.8071401],[122.73685290000003,-4.8044407],[122.73396260000004,-4.803317],[122.7363845000001,-4.8030825],[122.744835,-4.8071401],[122.74567380000008,-4.804096399999935],[122.74458330000004,-4.806518499999925],[122.74147970000001,-4.805321599999957],[122.73971520000009,-4.802615699999933],[122.744798,-4.793119699999977],[122.73982610000007,-4.785048099999926],[122.7420929000001,-4.778407199999947],[122.73849980000011,-4.776134099999979],[122.73720140000012,-4.768448699999965],[122.73824330000002,-4.767143099999942],[122.735562,-4.7638432],[122.738222,-4.756964499999981],[122.73676400000011,-4.755997799999932],[122.73530540000002,-4.757851799999969],[122.73460250000005,-4.757094199999926],[122.735202,-4.754743799999972],[122.74061190000009,-4.756653099999937],[122.74311420000004,-4.755559199999936],[122.74368820000007,-4.753641099999925],[122.7414956,-4.7417516],[122.73544520000007,-4.738972499999932],[122.73415920000002,-4.732782699999973],[122.73147630000005,-4.733103399999948],[122.72928900000011,-4.730472899999938],[122.731322,-4.727613599999927],[122.72961160000011,-4.725345699999934],[122.728327,-4.7257211],[122.72991490000004,-4.720212599999968],[122.72883720000004,-4.7149337],[122.7260500000001,-4.710355599999957],[122.72595460000002,-4.707551599999931],[122.72316230000001,-4.706137799999965],[122.72410840000009,-4.7020107],[122.72169670000005,-4.700323899999944],[122.72011110000005,-4.6905239],[122.722235,-4.692102099999943],[122.72623740000006,-4.690532099999928],[122.72496980000005,-4.682313499999964],[122.7325863000001,-4.6842],[122.73505490000002,-4.683100299999978],[122.73422960000005,-4.679734],[122.73545910000007,-4.6764596],[122.73439560000008,-4.674862499999961],[122.73212060000003,-4.674710499999946],[122.73305750000009,-4.674017099999958],[122.73134190000007,-4.6705226],[122.73650920000011,-4.672879],[122.73662210000009,-4.670383199999947],[122.73252690000004,-4.667600899999968],[122.73443370000007,-4.665890599999955],[122.73465640000006,-4.6591084],[122.73222930000009,-4.657921599999952],[122.72950060000005,-4.652266099999963],[122.73103640000011,-4.651148499999977],[122.73983880000003,-4.651903699999934],[122.7402436000001,-4.648832499999969],[122.73317810000003,-4.640925599999946],[122.72207820000006,-4.634548799999948],[122.71946060000005,-4.6312488],[122.70414320000009,-4.620696399999929],[122.699337,-4.619050299999969],[122.698821,-4.616908099999932],[122.68750780000005,-4.614553699999931],[122.68277980000005,-4.611533099999974],[122.67711470000006,-4.612184099999979],[122.6671606000001,-4.610582099999931],[122.66218160000005,-4.614122],[122.66221160000009,-4.616221799999948],[122.65977730000009,-4.615884199999925],[122.6563231,-4.619077399999981],[122.65705580000008,-4.621753899999931],[122.6597584000001,-4.623010299999976],[122.66731590000006,-4.621162399999946],[122.6681168,-4.621774699999946],[122.6669174000001,-4.622287599999936],[122.66906680000011,-4.623896399999978],[122.67247320000001,-4.6234312],[122.66996580000011,-4.624846],[122.66634850000003,-4.623044599999957],[122.66638410000007,-4.624320499999953],[122.65916330000005,-4.624545199999943],[122.65878390000012,-4.627423],[122.65519250000011,-4.627491299999974],[122.65482050000003,-4.630264099999977],[122.65504320000002,-4.625557799999967],[122.65355820000002,-4.624259599999959],[122.64538190000007,-4.628906299999926],[122.64315040000008,-4.633292],[122.63875760000008,-4.636814899999933],[122.63360530000011,-4.632395699999961],[122.63121010000009,-4.631955799999957],[122.63209150000012,-4.694965199999956],[122.64147150000008,-4.699495599999977],[122.656238,-4.723431399999981],[122.5870129000001,-4.771665699999971],[122.5618952000001,-4.801806899999974],[122.56843730000003,-4.804543899999942],[122.57155040000009,-4.809584099999938],[122.5736892000001,-4.820677399999965],[122.57881420000001,-4.827224799999954],[122.58341020000012,-4.8272252],[122.58844990000011,-4.82426],[122.59423160000006,-4.825001399999962],[122.599863,-4.823078599999974],[122.60282930000005,-4.823370599999976],[122.60549770000011,-4.826633299999969],[122.60935190000009,-4.82426],[122.62303580000003,-4.8266989],[122.62639640000009,-4.835641099999975],[122.63090020000004,-4.839900299999954],[122.62894790000007,-4.854478599999936],[122.6353332000001,-4.869263],[122.63909930000011,-4.874713899999961],[122.66088160000004,-4.890445599999964],[122.58645860000001,-4.997239699999966],[122.55469260000007,-4.961540799999966],[122.524508,-4.937764099999981],[122.50909880000006,-4.933082799999966],[122.49837080000009,-4.927621299999942],[122.49310430000003,-4.927036199999975],[122.49258870000006,-4.928235799999925],[122.41961950000007,-4.896263399999953],[122.40656740000009,-4.899474699999928],[122.40325430000007,-4.902419599999973],[122.40349970000011,-4.904505599999936],[122.3985914000001,-4.911009099999944],[122.38926580000009,-4.912358799999936],[122.37981740000009,-4.921071],[122.37650430000008,-4.921807199999932],[122.37515460000009,-4.919966599999952],[122.37073710000004,-4.918616799999938],[122.36558350000007,-4.919843899999933],[122.36742410000011,-4.927206299999966],[122.36141150000003,-4.925856499999952],[122.36165010000002,-4.929206399999941],[122.3596037000001,-4.930693099999928],[122.35825580000005,-4.932704299999955],[122.36126810000007,-4.940345399999956],[122.36054150000007,-4.9443956],[122.37182140000004,-4.947366599999953],[122.37774860000002,-4.958260199999927],[122.38000990000012,-4.968338899999935],[122.37569150000002,-4.976452199999926],[122.38035190000005,-4.980306699999971],[122.38361920000011,-4.979834199999971],[122.3811985000001,-4.9826171],[122.3805473000001,-4.986142199999961],[122.38124340000002,-4.988843299999928],[122.38428520000002,-4.991480699999954],[122.38004060000003,-4.9976785],[122.37926650000009,-5.026228499999945],[122.37711910000007,-5.033074699999929],[122.37275040000009,-5.035083899999961],[122.37383440000008,-5.036882599999956],[122.37270830000011,-5.039691299999959],[122.3737771000001,-5.040447299999926],[122.3755155,-5.039269299999944],[122.3768765000001,-5.041923],[122.3796268000001,-5.041174399999932],[122.38535250000007,-5.044297499999971],[122.38365290000002,-5.046684099999936],[122.38430640000001,-5.055483599999945],[122.38158090000002,-5.062678499999947],[122.38261840000007,-5.069097099999965],[122.38877670000011,-5.070527499999969],[122.39661130000002,-5.0697575],[122.400537,-5.072466099999929],[122.40372820000005,-5.0686788],[122.40276870000002,-5.072559199999944],[122.39948880000009,-5.073287199999925],[122.39921120000008,-5.0787206],[122.40421890000005,-5.089378599999975],[122.4109142000001,-5.089612099999954],[122.41118660000006,-5.090662599999973],[122.407314,-5.092120699999953],[122.4041721000001,-5.090976699999942],[122.399986,-5.085539799999935],[122.39594220000004,-5.073208199999954],[122.3940761,-5.071563],[122.3879217000001,-5.078635299999974],[122.38445410000008,-5.085983799999951],[122.38140080000005,-5.087990299999944],[122.37343020000003,-5.088670699999966],[122.36530710000011,-5.091373799999928],[122.3656638000001,-5.094548499999974],[122.36327580000011,-5.096470499999953],[122.35676740000008,-5.097666699999934],[122.348493,-5.103010099999949],[122.33989640000004,-5.099297799999931],[122.33258250000006,-5.101055],[122.32789340000011,-5.103774299999941],[122.32005130000005,-5.118499],[122.31794230000003,-5.126416099999972],[122.31826820000003,-5.141047299999968],[122.316453,-5.141980399999966],[122.31672750000007,-5.145425799999941],[122.31912970000008,-5.146249499999954],[122.32010800000012,-5.144986299999971],[122.3215474000001,-5.146714899999949],[122.32672930000001,-5.1457054],[122.3362519000001,-5.147455199999968],[122.34284710000009,-5.145739099999957],[122.343722,-5.147354199999938],[122.34607770000002,-5.146631],[122.34614470000008,-5.148969399999942],[122.34476510000002,-5.1497097],[122.34641390000002,-5.151358499999958],[122.34873570000002,-5.149305899999945],[122.35169680000001,-5.152300599999933],[122.35422050000011,-5.1514258],[122.35573470000008,-5.155093499999964],[122.35472520000008,-5.1571124],[122.35694600000011,-5.158660299999951],[122.35600390000002,-5.1620252],[122.358191,-5.163505699999973],[122.35835930000007,-5.169259699999941],[122.36428950000004,-5.173274299999946],[122.3591669000001,-5.176628799999946],[122.361455,-5.178883299999939],[122.368454,-5.180027299999949],[122.36633410000002,-5.185983199999953],[122.36828570000011,-5.1864543],[122.36912690000008,-5.182921199999953],[122.3725591000001,-5.182719299999974],[122.376597,-5.186992699999962],[122.376388,-5.192302499999926],[122.3792218000001,-5.194271399999934],[122.40429250000011,-5.209950699999979],[122.441142,-5.227234899999928],[122.468158,-5.227357499999925],[122.48699680000004,-5.2250079],[122.50454940000009,-5.2249513],[122.51329670000007,-5.216125799999929],[122.51016430000004,-5.209886199999971],[122.51562300000012,-5.201076499999942],[122.51612360000001,-5.194046699999944],[122.52082260000009,-5.192128499999967],[122.52115330000004,-5.193723499999976],[122.52413450000006,-5.193361099999947],[122.56192080000005,-5.2169733],[122.59824030000004,-5.212762099999964],[122.60769190000008,-5.212938399999928],[122.61115710000001,-5.208328399999971],[122.61435520000009,-5.210039199999926],[122.61703870000008,-5.209510299999977],[122.6263133000001,-5.203832699999964]]],[[[122.82912250000004,-5.097716899999966],[122.82749920000003,-5.095870099999956],[122.84295740000005,-5.079911899999956],[122.8482878000001,-5.077246699999932],[122.85539490000008,-5.0550367],[122.86072530000001,-5.049706399999934],[122.86872090000008,-5.048818],[122.87849330000006,-5.026608],[122.89004240000008,-4.972415799999965],[122.8918192000001,-4.947540699999934],[122.90781040000002,-4.904009199999962],[122.92202470000007,-4.872915299999931],[122.92468990000009,-4.857812599999932],[122.92380150000008,-4.8373795],[122.9140000000001,-4.797462099999962],[122.91756470000007,-4.742252199999939],[122.91723620000005,-4.729644699999938],[122.92059410000002,-4.686312599999951],[122.92619130000003,-4.642478899999958],[122.925169,-4.637546499999928],[122.92717550000009,-4.628490399999976],[122.92799910000008,-4.612261199999978],[122.92546820000007,-4.613082],[122.84912970000005,-4.609226399999955],[122.84777340000005,-4.617850399999952],[122.84461350000004,-4.6242505],[122.84478710000008,-4.635463399999935],[122.84155150000004,-4.649642],[122.83189420000008,-4.661873299999968],[122.83174420000012,-4.670441299999936],[122.82841210000004,-4.678413099999943],[122.8289840000001,-4.680358399999932],[122.83348650000005,-4.683027399999958],[122.83520420000002,-4.690541499999938],[122.84080160000008,-4.694771699999933],[122.83950740000012,-4.701555],[122.8402532,-4.710125],[122.84401050000008,-4.716570099999956],[122.84530370000004,-4.723702699999933],[122.84129710000002,-4.730826099999945],[122.84122350000007,-4.740020399999935],[122.84811410000009,-4.753082],[122.84769060000008,-4.760064899999975],[122.8508002000001,-4.765252399999952],[122.84893770000008,-4.766266199999961],[122.85033070000009,-4.768037],[122.85336630000006,-4.7677629],[122.85528190000002,-4.769558699999948],[122.85421180000003,-4.772501399999953],[122.85741880000012,-4.779800099999932],[122.85233920000007,-4.793755799999929],[122.84609340000009,-4.800438899999961],[122.84469760000002,-4.818476799999928],[122.83989230000009,-4.835277699999949],[122.83209610000006,-4.838390599999968],[122.81611750000002,-4.828223399999956],[122.81310660000008,-4.828946199999962],[122.81686450000007,-4.831558899999948],[122.81848090000005,-4.838641699999926],[122.81307820000006,-4.849057599999981],[122.81242910000003,-4.856804199999942],[122.80916900000011,-4.858699099999967],[122.8078,-4.8612675],[122.8088447,-4.8636369],[122.80591060000006,-4.867417599999953],[122.8226869,-4.880974399999957],[122.82855990000007,-4.889098],[122.83142080000005,-4.897402899999975],[122.8318157000001,-4.920651899999939],[122.83114360000002,-4.921699199999978],[122.8222555000001,-4.921503899999948],[122.820264,-4.925768099999971],[122.82008080000003,-4.932385199999942],[122.81772510000008,-4.933515599999964],[122.81744620000006,-4.939298899999926],[122.81487260000006,-4.942234299999939],[122.81595820000007,-4.948355399999969],[122.81221540000001,-4.960282799999959],[122.8144711000001,-4.969698899999969],[122.81223030000001,-4.981722199999979],[122.80777560000001,-4.985292099999981],[122.79578030000005,-4.986867],[122.79005340000003,-4.991576499999951],[122.78891940000005,-4.995540099999971],[122.78003060000003,-5.004254],[122.77332250000006,-5.007671199999947],[122.76670790000003,-5.007684199999971],[122.76346390000003,-5.015028399999949],[122.7584548000001,-5.018802599999958],[122.749264,-5.035962899999959],[122.740586,-5.039632599999948],[122.73845270000004,-5.052940799999931],[122.74094520000006,-5.055390299999942],[122.74343840000006,-5.054635299999973],[122.75079310000001,-5.042302099999972],[122.75408430000005,-5.039221699999928],[122.76067240000009,-5.038599199999965],[122.76290660000006,-5.041048499999931],[122.78931150000005,-5.019168699999966],[122.79365140000004,-5.018722399999945],[122.79865990000008,-5.021893099999943],[122.80253430000005,-5.026564],[122.79878140000005,-5.032395],[122.80052540000008,-5.033492499999966],[122.80305980000003,-5.039784099999963],[122.8025321,-5.044692],[122.799295,-5.051661299999978],[122.79616090000002,-5.054621599999962],[122.79488360000005,-5.060334499999954],[122.78745970000011,-5.068540499999926],[122.77413130000002,-5.0784016],[122.76139200000011,-5.093493299999977],[122.76016080000011,-5.103999099999953],[122.75769850000006,-5.108102899999949],[122.75769850000006,-5.110975599999961],[122.76065330000006,-5.112945399999944],[122.76451090000012,-5.111221799999953],[122.77475960000004,-5.097121],[122.7825299000001,-5.091475199999934],[122.78853120000008,-5.083870399999967],[122.78755600000011,-5.087517899999966],[122.79246810000006,-5.089070499999934],[122.788085,-5.090562699999964],[122.78763060000006,-5.093066199999953],[122.78899120000005,-5.093138499999952],[122.78722440000001,-5.094286799999963],[122.78836980000005,-5.095531799999947],[122.78629280000007,-5.096153499999957],[122.786137,-5.101010799999926],[122.82912250000004,-5.097716899999966]]],[[[122.72675150000009,-4.596603499999958],[122.72644720000005,-4.5949852],[122.72548030000007,-4.596074],[122.72675150000009,-4.596603499999958]]],[[[122.70985570000005,-4.590674799999931],[122.70866030000002,-4.588223599999935],[122.70704530000012,-4.592518499999926],[122.70846630000005,-4.595151499999929],[122.7137997000001,-4.598996499999942],[122.71615860000009,-4.598239699999965],[122.71523780000007,-4.5955528],[122.71755640000003,-4.597546499999964],[122.7185376000001,-4.596238],[122.71754070000009,-4.599913199999946],[122.71962360000009,-4.602684299999964],[122.7326670000001,-4.602891],[122.71910720000005,-4.594137199999977],[122.7147139000001,-4.593712299999936],[122.71218980000003,-4.590749199999948],[122.70985570000005,-4.590674799999931]]],[[[122.697774,-4.581378199999961],[122.69426460000011,-4.582193199999949],[122.6994241000001,-4.5831376],[122.697774,-4.581378199999961]]],[[[122.695995,-4.578954599999975],[122.69320650000009,-4.579046299999959],[122.69135360000007,-4.580921299999943],[122.69547100000011,-4.581182399999932],[122.69667790000005,-4.580151599999965],[122.695995,-4.578954599999975]]],[[[122.69252630000005,-4.571014199999979],[122.68836710000005,-4.5647954],[122.68412450000005,-4.566278299999965],[122.68222620000006,-4.573657399999945],[122.68328070000007,-4.578902199999959],[122.68623940000009,-4.580161499999974],[122.68656150000004,-4.5771628],[122.68894310000007,-4.581237899999962],[122.69067040000004,-4.581714],[122.69245760000001,-4.5783649],[122.7000753000001,-4.576034899999968],[122.69990350000012,-4.574804099999938],[122.69021530000009,-4.572176199999944],[122.69252630000005,-4.571014199999979]]],[[[122.69030980000002,-4.566000699999961],[122.68912520000003,-4.564595899999972],[122.69138040000007,-4.5678882],[122.69289370000001,-4.567454399999974],[122.69030980000002,-4.566000699999961]]],[[[122.71905670000001,-4.518696099999943],[122.719052,-4.51565],[122.71489620000011,-4.514529299999936],[122.71317760000011,-4.517544799999939],[122.71425550000004,-4.5212615],[122.70945440000003,-4.523288299999933],[122.70977410000012,-4.528895699999964],[122.70423390000008,-4.530096299999968],[122.70339810000007,-4.5324957],[122.70383470000002,-4.529360099999963],[122.70738990000007,-4.526477099999966],[122.70676060000005,-4.519355499999961],[122.7013578000001,-4.519993599999964],[122.69728370000007,-4.5232534],[122.6921056000001,-4.528260099999954],[122.68729570000005,-4.536600199999953],[122.68632790000004,-4.540860599999974],[122.68854340000007,-4.547342599999979],[122.69469320000007,-4.557674199999951],[122.70297370000003,-4.564098799999954],[122.70950930000004,-4.564831599999934],[122.70805640000003,-4.559409199999948],[122.71201180000003,-4.555233699999974],[122.708806,-4.548942899999929],[122.7135578000001,-4.5516019],[122.71438590000002,-4.553469299999961],[122.71005990000003,-4.559930699999938],[122.7115851000001,-4.5634441],[122.71768070000007,-4.561046799999929],[122.7192209000001,-4.556960099999969],[122.72233260000007,-4.559929499999953],[122.72535670000002,-4.558368799999926],[122.72375740000007,-4.561150899999973],[122.72438290000002,-4.562916499999972],[122.72658310000008,-4.563653399999964],[122.72574650000001,-4.568273],[122.72841230000006,-4.568022699999972],[122.731437,-4.564618699999926],[122.7359676000001,-4.569030899999973],[122.73523920000002,-4.571448299999929],[122.73709910000002,-4.573268199999973],[122.73671150000007,-4.575465299999962],[122.74043820000009,-4.574753599999951],[122.74329430000012,-4.575891599999977],[122.74392240000009,-4.570482],[122.73952880000002,-4.566476899999941],[122.73752060000004,-4.562167399999964],[122.7385349000001,-4.560707599999944],[122.74168910000003,-4.5620971],[122.742376,-4.558895699999937],[122.74048090000008,-4.555489899999941],[122.73687890000008,-4.555668199999957],[122.73852520000003,-4.554543699999954],[122.73757150000006,-4.553496099999961],[122.7384843000001,-4.552197799999931],[122.74135280000007,-4.551941499999941],[122.74253470000008,-4.5488002],[122.73875420000002,-4.548092599999961],[122.73351780000007,-4.544725399999948],[122.72998910000001,-4.5454503],[122.72878530000003,-4.543283499999973],[122.72909640000012,-4.540626599999939],[122.73204270000008,-4.539478699999961],[122.73271000000011,-4.540945099999931],[122.73444540000003,-4.540586699999949],[122.73951560000012,-4.536620899999946],[122.74099010000009,-4.532222899999965],[122.74333990000002,-4.5313919],[122.7364295000001,-4.528822199999979],[122.72705890000009,-4.519578799999977],[122.72501390000002,-4.518560699999966],[122.72509670000011,-4.520481699999948],[122.72407110000006,-4.520415499999956],[122.72360680000008,-4.518171199999927],[122.72046910000006,-4.516891699999974],[122.71905670000001,-4.518696099999943]]]]},"properties":{"shapeName":"Muna","shapeISO":"","shapeID":"22746128B84283215184605","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[122.20861160000004,-4.931288199999926],[122.21110460000011,-4.929062899999963],[122.21277260000011,-4.924048899999946],[122.21095910000008,-4.923798799999929],[122.2055438000001,-4.928860699999973],[122.20540530000005,-4.931173499999943],[122.20861160000004,-4.931288199999926]]],[[[122.17111580000005,-4.923558199999945],[122.17153270000006,-4.922291899999948],[122.16930050000008,-4.923761899999931],[122.17111580000005,-4.923558199999945]]],[[[122.33477960000005,-4.91323],[122.33068440000011,-4.914413099999933],[122.3271142000001,-4.920788199999947],[122.324956,-4.927981599999953],[122.32692880000002,-4.932230299999958],[122.3323157000001,-4.933520899999962],[122.33509120000008,-4.932766199999946],[122.3414553,-4.926389099999938],[122.3419914000001,-4.917107899999962],[122.33884920000003,-4.913763699999947],[122.33477960000005,-4.91323]]],[[[122.33907460000012,-4.911740699999939],[122.33973770000011,-4.910494599999936],[122.337589,-4.908194599999945],[122.33656840000003,-4.910542499999963],[122.33907460000012,-4.911740699999939]]],[[[122.18070670000009,-4.911504],[122.1829772000001,-4.906523599999957],[122.1760703000001,-4.9103225],[122.16807240000003,-4.920175399999948],[122.17437670000004,-4.920168099999955],[122.17664700000012,-4.915076399999975],[122.18070670000009,-4.911504]]],[[[122.2025288000001,-4.900178899999958],[122.20328510000002,-4.898502299999961],[122.20183210000005,-4.898440599999958],[122.20105450000005,-4.899314699999934],[122.2025288000001,-4.900178899999958]]],[[[122.21206070000005,-4.902936199999942],[122.216629,-4.899702299999944],[122.2162125000001,-4.897203699999977],[122.20932820000007,-4.901804499999969],[122.20817120000004,-4.905349099999967],[122.21206070000005,-4.902936199999942]]],[[[122.29477430000009,-4.888066799999933],[122.29657270000007,-4.887418399999945],[122.29315020000001,-4.887431899999967],[122.29477430000009,-4.888066799999933]]],[[[122.23946080000007,-4.879745699999944],[122.24084840000012,-4.877349899999956],[122.23801290000006,-4.877977499999929],[122.23745270000006,-4.879498099999978],[122.23946080000007,-4.879745699999944]]],[[[122.26448030000006,-4.8748853],[122.27213330000006,-4.870881299999951],[122.26985940000009,-4.866612199999963],[122.261994,-4.869635],[122.26196550000009,-4.872671499999967],[122.26448030000006,-4.8748853]]],[[[122.250503,-4.8731057],[122.25160010000002,-4.865398599999935],[122.24968070000011,-4.8666038],[122.247808,-4.871471199999974],[122.24837560000003,-4.874015399999962],[122.250503,-4.8731057]]],[[[122.19668020000006,-4.834094],[122.18701120000003,-4.836581],[122.18501120000008,-4.835337699999968],[122.18512680000003,-4.837593699999957],[122.19350940000004,-4.838752399999976],[122.19686700000011,-4.836589699999934],[122.19668020000006,-4.834094]]],[[[122.29529780000007,-4.835265099999958],[122.29158250000012,-4.824996],[122.28874360000009,-4.826223],[122.28653910000003,-4.829737199999954],[122.2892273000001,-4.833698],[122.29276120000009,-4.837060199999939],[122.29529780000007,-4.835265099999958]]],[[[122.22783240000001,-4.757042299999966],[122.220089,-4.761999399999979],[122.22354960000007,-4.763266699999974],[122.22875980000003,-4.758546499999966],[122.22783240000001,-4.757042299999966]]],[[[122.42264760000012,-4.738556299999971],[122.42237010000008,-4.737059099999954],[122.42080810000004,-4.737442599999952],[122.42264760000012,-4.738556299999971]]],[[[122.358514,-4.730403299999978],[122.3575158000001,-4.728565399999979],[122.355266,-4.730455099999972],[122.34838220000006,-4.729008699999952],[122.34758260000001,-4.736123099999929],[122.34916770000007,-4.7387869],[122.351512,-4.740484899999956],[122.35646470000006,-4.741011],[122.35817760000009,-4.734337599999947],[122.35558370000001,-4.734154099999955],[122.358514,-4.730403299999978]]],[[[122.49811850000003,-4.714828599999976],[122.49629160000006,-4.716480199999978],[122.50011730000006,-4.7177533],[122.49811850000003,-4.714828599999976]]],[[[122.39965240000004,-4.7190229],[122.40133060000005,-4.718348699999979],[122.40215830000011,-4.715744499999971],[122.40087030000007,-4.713911699999926],[122.39868560000002,-4.714343299999939],[122.39764380000008,-4.7161794],[122.39965240000004,-4.7190229]]],[[[122.46715590000008,-4.716399699999954],[122.46687310000004,-4.713693099999944],[122.46366160000002,-4.712343899999951],[122.46715590000008,-4.716399699999954]]],[[[122.48006690000011,-4.699604299999976],[122.47623480000004,-4.700701199999969],[122.4761827000001,-4.704402],[122.48100540000007,-4.701710899999966],[122.48006690000011,-4.699604299999976]]],[[[122.39002520000008,-4.695899899999972],[122.38164540000002,-4.6959705],[122.38070020000009,-4.698170799999957],[122.38187070000004,-4.699475699999937],[122.38514420000001,-4.699457],[122.388977,-4.698222499999929],[122.39002520000008,-4.695899899999972]]],[[[122.30278050000004,-4.716202499999952],[122.30399710000006,-4.715112499999975],[122.30335860000002,-4.713603699999965],[122.30567870000004,-4.712867699999947],[122.30960270000003,-4.707730599999934],[122.31776190000005,-4.692094],[122.31568620000007,-4.687647699999957],[122.307825,-4.685218299999974],[122.29637790000004,-4.693975],[122.292066,-4.703958099999966],[122.29596290000006,-4.713242699999967],[122.30278050000004,-4.716202499999952]]],[[[122.33505580000008,-4.683041699999933],[122.3284258000001,-4.686965799999939],[122.3263349,-4.691885299999967],[122.32695540000009,-4.694236199999978],[122.32940880000001,-4.693687399999931],[122.334502,-4.688733599999978],[122.33505580000008,-4.683041699999933]]],[[[122.42366270000002,-4.670701099999974],[122.42318860000012,-4.669801899999925],[122.4218456000001,-4.672185199999944],[122.42540640000004,-4.6736111],[122.42653640000003,-4.6703777],[122.42366270000002,-4.670701099999974]]],[[[122.34748330000002,-4.712762399999974],[122.35078560000011,-4.706360099999927],[122.36562450000008,-4.694734199999971],[122.36762890000011,-4.689507799999944],[122.37917980000009,-4.674205299999926],[122.38066560000004,-4.668212599999947],[122.37818370000002,-4.664856799999939],[122.37254220000011,-4.664014099999974],[122.36778120000008,-4.665664099999958],[122.3471760000001,-4.684903499999962],[122.32991770000001,-4.708692799999938],[122.32489240000007,-4.718689899999958],[122.32405190000009,-4.724116],[122.326094,-4.725724799999966],[122.32976310000004,-4.725331899999958],[122.339228,-4.717142099999933],[122.34748330000002,-4.712762399999974]]],[[[122.404025,-4.665462899999966],[122.4066140000001,-4.662914099999966],[122.4014264000001,-4.663163299999951],[122.404025,-4.665462899999966]]],[[[122.3048698,-4.666759699999943],[122.306457,-4.665972699999941],[122.30629760000011,-4.662185299999976],[122.30392270000004,-4.665593299999955],[122.3048698,-4.666759699999943]]],[[[122.2990291000001,-4.665600199999972],[122.30385970000009,-4.659394099999929],[122.30306840000003,-4.650535399999967],[122.29861970000002,-4.654422799999963],[122.29680750000011,-4.659125299999971],[122.29638210000007,-4.667559399999959],[122.2988686000001,-4.667468499999927],[122.2990291000001,-4.665600199999972]]],[[[122.58930830000008,-4.647213399999941],[122.59144650000007,-4.642892299999971],[122.59045820000006,-4.638879399999951],[122.58711660000006,-4.642078199999958],[122.58733640000003,-4.646838399999979],[122.58930830000008,-4.647213399999941]]],[[[122.38327430000004,-4.647957599999927],[122.39017530000001,-4.642862199999968],[122.39475330000005,-4.636231699999939],[122.387954,-4.643250699999953],[122.38137070000005,-4.6474818],[122.38327430000004,-4.647957599999927]]],[[[122.35113520000004,-4.635732599999926],[122.34682840000005,-4.63702],[122.34502840000005,-4.641390599999966],[122.34483870000008,-4.645139799999981],[122.34775050000007,-4.648937599999954],[122.3442645,-4.6463413],[122.34348790000001,-4.649311499999953],[122.3451391000001,-4.649180099999967],[122.34487940000008,-4.650350799999956],[122.34224080000001,-4.650962899999968],[122.34019210000008,-4.655663299999958],[122.34128360000011,-4.663368699999978],[122.34331180000004,-4.665162199999941],[122.34963180000011,-4.664190299999973],[122.35727520000012,-4.659648599999969],[122.36082190000002,-4.654810399999974],[122.36353810000003,-4.646149299999934],[122.36386560000005,-4.6409386],[122.36236610000003,-4.638032799999962],[122.35113520000004,-4.635732599999926]]],[[[122.63121010000009,-4.631955799999957],[122.62902570000006,-4.633110699999975],[122.62949690000005,-4.638232099999925],[122.62607390000005,-4.639592799999946],[122.62666060000004,-4.641957399999967],[122.62331730000005,-4.642308899999932],[122.61613090000003,-4.638196899999969],[122.61455790000002,-4.6396824],[122.614661,-4.642272299999945],[122.60938550000003,-4.642036799999971],[122.6068034000001,-4.643945799999926],[122.59820410000009,-4.639522899999974],[122.59642540000004,-4.634930499999939],[122.59443780000004,-4.638276],[122.59609980000005,-4.640260299999966],[122.59305340000003,-4.643669],[122.59619830000008,-4.650532799999951],[122.59524580000004,-4.657061299999953],[122.58990490000008,-4.661805199999947],[122.58461060000002,-4.669713599999966],[122.57370460000004,-4.676269599999955],[122.570995,-4.676212299999975],[122.56509950000009,-4.679095599999926],[122.55924990000005,-4.690039799999965],[122.55564470000002,-4.693400499999939],[122.54179010000007,-4.696735899999965],[122.53417250000007,-4.704947899999979],[122.53482710000003,-4.705828199999928],[122.530809,-4.706517599999927],[122.5283763000001,-4.708768299999974],[122.52653170000008,-4.708147],[122.52151630000003,-4.712411199999963],[122.50434450000012,-4.716552699999966],[122.50361610000004,-4.718348599999956],[122.4924529000001,-4.724267599999962],[122.48599330000002,-4.725547699999936],[122.47823010000002,-4.7235419],[122.47594920000006,-4.729584599999953],[122.474303,-4.7304339],[122.4758111000001,-4.737656499999957],[122.47089920000008,-4.739498399999945],[122.46754320000002,-4.739215399999978],[122.46748450000007,-4.741499199999964],[122.4592831000001,-4.744092299999977],[122.44939160000001,-4.741376599999967],[122.45059210000011,-4.748911899999939],[122.44816870000011,-4.742205599999977],[122.44407870000009,-4.744403399999953],[122.43234080000002,-4.738169099999936],[122.42424720000008,-4.739340899999945],[122.42519130000005,-4.744017499999927],[122.4228998000001,-4.741090299999939],[122.41503490000002,-4.743114299999945],[122.41091840000001,-4.747462199999973],[122.40835090000007,-4.747010299999943],[122.40752670000006,-4.749135099999933],[122.40000040000007,-4.7455039],[122.39711760000012,-4.747514299999978],[122.38135100000011,-4.745756799999981],[122.37404620000007,-4.739733799999954],[122.37453770000002,-4.738310399999932],[122.37362140000005,-4.738783399999932],[122.37248240000008,-4.744977799999958],[122.37021330000005,-4.746662899999933],[122.3704461000001,-4.7490196],[122.368692,-4.749109699999963],[122.36584120000009,-4.755181199999925],[122.36194230000001,-4.757993699999929],[122.36045980000006,-4.763861099999929],[122.35686910000004,-4.766334799999925],[122.3541388000001,-4.780467299999941],[122.35241540000004,-4.780851699999971],[122.3499594000001,-4.786516399999925],[122.344136,-4.791645499999959],[122.344359,-4.793346],[122.34183670000004,-4.795028699999932],[122.3405097000001,-4.801853899999969],[122.33831480000003,-4.802977299999952],[122.33793760000003,-4.806439399999931],[122.32440470000006,-4.824088699999947],[122.32098660000008,-4.8267613],[122.3180403,-4.8325481],[122.318162,-4.835998899999936],[122.321225,-4.840402399999959],[122.32202280000001,-4.844264199999941],[122.32374240000001,-4.845165799999961],[122.32622630000003,-4.857532],[122.32832030000009,-4.858008899999959],[122.32796960000007,-4.859859],[122.33196380000004,-4.863722],[122.33936310000001,-4.880229499999928],[122.33772710000005,-4.882743499999947],[122.33780480000007,-4.888710099999969],[122.33874420000006,-4.888806199999976],[122.3378636000001,-4.8909557],[122.34363980000012,-4.899285799999973],[122.342573,-4.900259699999935],[122.345337,-4.909566499999926],[122.34981280000011,-4.916859199999976],[122.34948270000007,-4.923935299999926],[122.35327230000007,-4.928049299999941],[122.3596037000001,-4.930693099999928],[122.36165010000002,-4.929206399999941],[122.36141150000003,-4.925856499999952],[122.36742410000011,-4.927206299999966],[122.36558350000007,-4.919843899999933],[122.37073710000004,-4.918616799999938],[122.37515460000009,-4.919966599999952],[122.37650430000008,-4.921807199999932],[122.37981740000009,-4.921071],[122.38926580000009,-4.912358799999936],[122.3985914000001,-4.911009099999944],[122.40349970000011,-4.904505599999936],[122.40325430000007,-4.902419599999973],[122.40656740000009,-4.899474699999928],[122.41961950000007,-4.896263399999953],[122.49258870000006,-4.928235799999925],[122.49310430000003,-4.927036199999975],[122.49837080000009,-4.927621299999942],[122.50909880000006,-4.933082799999966],[122.524508,-4.937764099999981],[122.55469260000007,-4.961540799999966],[122.58645860000001,-4.997239699999966],[122.66088160000004,-4.890445599999964],[122.63909930000011,-4.874713899999961],[122.6353332000001,-4.869263],[122.62894790000007,-4.854478599999936],[122.63090020000004,-4.839900299999954],[122.62639640000009,-4.835641099999975],[122.62303580000003,-4.8266989],[122.60935190000009,-4.82426],[122.60549770000011,-4.826633299999969],[122.60282930000005,-4.823370599999976],[122.599863,-4.823078599999974],[122.59423160000006,-4.825001399999962],[122.58844990000011,-4.82426],[122.58341020000012,-4.8272252],[122.57881420000001,-4.827224799999954],[122.5736892000001,-4.820677399999965],[122.57155040000009,-4.809584099999938],[122.56843730000003,-4.804543899999942],[122.5618952000001,-4.801806899999974],[122.5870129000001,-4.771665699999971],[122.656238,-4.723431399999981],[122.64147150000008,-4.699495599999977],[122.63209150000012,-4.694965199999956],[122.63121010000009,-4.631955799999957]]],[[[122.33498190000012,-4.620848299999977],[122.33317220000004,-4.621193499999947],[122.33430040000007,-4.622782499999971],[122.33568940000009,-4.622136599999976],[122.33498190000012,-4.620848299999977]]],[[[122.346157,-4.627770099999964],[122.35121250000009,-4.624114799999973],[122.3511406,-4.6213816],[122.34888660000001,-4.619740299999933],[122.34466050000003,-4.620846699999959],[122.33935910000002,-4.62828],[122.32126660000006,-4.642338699999925],[122.32375090000005,-4.646606799999972],[122.31797310000002,-4.644757599999934],[122.31454270000006,-4.647533499999952],[122.31268120000004,-4.658177799999976],[122.31386970000005,-4.662984299999948],[122.31705570000008,-4.662058799999954],[122.31753040000001,-4.660457899999926],[122.3178785,-4.662812499999973],[122.31961550000005,-4.660988599999939],[122.32188140000005,-4.661491799999965],[122.32170860000008,-4.659000399999968],[122.32523990000004,-4.657569899999942],[122.32607150000001,-4.654831599999966],[122.32816180000009,-4.654328499999963],[122.32828140000004,-4.648925199999951],[122.33032520000006,-4.647939],[122.3308386000001,-4.644682799999941],[122.33455170000002,-4.641959699999973],[122.33968940000011,-4.630530799999974],[122.34280090000004,-4.627942799999971],[122.346157,-4.627770099999964]]],[[[122.33103670000003,-4.610093199999937],[122.3298721000001,-4.607609099999934],[122.32454430000007,-4.610118199999931],[122.32033080000008,-4.609016],[122.31429910000008,-4.609747199999958],[122.3111192,-4.614000099999942],[122.31173880000006,-4.623704199999963],[122.3163221000001,-4.626847699999928],[122.32390140000007,-4.624768499999959],[122.33103670000003,-4.610093199999937]]],[[[122.35016160000009,-4.5837724],[122.34789050000006,-4.584631099999967],[122.34738160000006,-4.590316599999937],[122.35221220000005,-4.585140599999932],[122.35016160000009,-4.5837724]]],[[[122.32190620000006,-4.583586899999943],[122.3211576000001,-4.584235399999955],[122.32259280000005,-4.584601699999951],[122.32190620000006,-4.583586899999943]]],[[[122.32382990000008,-4.563536599999964],[122.3267363000001,-4.559493],[122.329769,-4.557892399999957],[122.3305272,-4.552964199999963],[122.32917930000008,-4.552037599999949],[122.3208393000001,-4.555575699999963],[122.31852270000002,-4.563873599999965],[122.32382990000008,-4.563536599999964]]],[[[122.2944715000001,-4.560124799999926],[122.29720940000004,-4.558145099999933],[122.29763060000005,-4.554185799999971],[122.29598790000011,-4.545340299999964],[122.2944715000001,-4.544287299999951],[122.29000670000005,-4.547994],[122.28916430000004,-4.552837899999929],[122.2924918000001,-4.559998499999949],[122.2944715000001,-4.560124799999926]]]]},"properties":{"shapeName":"Muna Barat","shapeISO":"","shapeID":"22746128B86110623188121","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[115.067089,-0.165875099999937],[115.06159910000008,-0.169354],[115.05686130000004,-0.176943199999926],[115.05176490000008,-0.180905699999926],[115.04479160000005,-0.189815799999963],[115.03934420000007,-0.191598599999963],[115.03596440000001,-0.191318899999942],[115.0269465,-0.185242699999947],[115.00081580000005,-0.186929899999939],[114.99181310000006,-0.185963799999968],[114.98917330000006,-0.184245899999951],[114.9925134,-0.176092499999925],[114.98702190000006,-0.172931699999936],[114.98352760000012,-0.17409],[114.97929330000011,-0.178459299999929],[114.9623865000001,-0.179792],[114.95059910000009,-0.189679799999965],[114.94773810000004,-0.190440099999932],[114.94132320000006,-0.188505499999962],[114.93704720000005,-0.189861],[114.93292370000006,-0.188856599999951],[114.9287653,-0.190870899999936],[114.92547860000002,-0.189828499999976],[114.92556910000008,-0.185705899999959],[114.92250790000003,-0.181628199999977],[114.92705610000007,-0.173594499999979],[114.9303337,-0.1607326],[114.91695020000009,-0.1344749],[114.92035670000007,-0.126302899999928],[114.9203298000001,-0.120140099999958],[114.9228352,-0.115807099999927],[114.9210577,-0.105237599999953],[114.92455120000011,-0.099555599999974],[114.92044780000003,-0.088658799999962],[114.9116467,-0.0796908],[114.91244530000006,-0.069252099999972],[114.90601550000008,-0.049794799999972],[114.89966360000005,-0.040899599999932],[114.8979131000001,-0.032650699999976],[114.894569,-0.029744599999958],[114.89301100000012,-0.025882599999932],[114.8949530000001,-0.015496],[114.89266810000004,-0.006602499999929],[114.8941972,0],[114.88907640000002,0.023482600000023],[114.88972730000012,0.025319400000058],[114.89482010000006,0.028717700000072],[114.89469520000011,0.040363800000023],[114.88646440000002,0.049157600000058],[114.875699,0.055365100000074],[114.8608468000001,0.054418],[114.85748110000009,0.059518500000024],[114.8513024,0.064348300000063],[114.84870320000005,0.068851800000061],[114.83627560000002,0.07476250000002],[114.83237720000011,0.074471800000026],[114.82273740000005,0.066623900000025],[114.81414840000002,0.067254800000057],[114.80189860000007,0.082094100000063],[114.79467950000003,0.083933800000068],[114.79366870000001,0.086306600000057],[114.795642,0.108637600000066],[114.79309050000006,0.119484500000056],[114.80026470000007,0.12891170000006],[114.80426810000006,0.137129200000061],[114.8090039000001,0.140306600000031],[114.81378550000011,0.15875120000004],[114.81342350000011,0.162133400000073],[114.8017119000001,0.172161300000027],[114.80126490000009,0.174023700000021],[114.80573230000005,0.178027300000053],[114.81344260000003,0.17959570000005],[114.82109260000004,0.189197600000057],[114.82903540000007,0.194898700000067],[114.82999010000003,0.198963100000071],[114.8281406000001,0.209134],[114.83168110000008,0.216958700000021],[114.83330880000005,0.227260100000024],[114.83788880000009,0.23438770000007],[114.84189210000011,0.235937700000022],[114.84401450000007,0.230933300000061],[114.84632450000004,0.229500500000029],[114.85892170000011,0.233318],[114.86394120000011,0.237632500000075],[114.86431070000003,0.245722800000067],[114.86859840000011,0.253700800000047],[114.8723705000001,0.270588800000041],[114.8757045000001,0.275183100000049],[114.88352490000011,0.278300200000047],[114.88587460000008,0.285792900000047],[114.88524010000003,0.297123400000032],[114.8927026,0.303396300000031],[114.89719810000008,0.311964600000067],[114.90088950000006,0.315840100000059],[114.91106420000006,0.320492400000035],[114.9201739,0.326938100000064],[114.92799020000007,0.328973200000064],[114.9339328000001,0.332248200000038],[114.9435284000001,0.333831300000043],[114.94953420000002,0.332160100000067],[114.95201,0.32679470000005],[114.9521109000001,0.322065700000053],[114.95537180000008,0.319053],[114.9618756000001,0.320091900000023],[114.96789350000006,0.322976700000027],[114.9733979,0.327983300000028],[114.97928430000002,0.329977300000053],[114.98436320000008,0.325747700000022],[114.99777580000011,0.320520800000054],[115.00244740000005,0.322503700000027],[115.0064202000001,0.327349800000036],[115.00999330000002,0.328793400000052],[115.01575850000006,0.328467900000021],[115.01999970000008,0.330519800000047],[115.02346650000004,0.329946200000052],[115.02448680000009,0.326131400000065],[115.0360564,0.315741900000035],[115.03822070000001,0.308747400000073],[115.03756980000003,0.302746800000023],[115.03944640000009,0.29991670000004],[115.0472774000001,0.298236200000019],[115.05609390000006,0.309449800000039],[115.05534000000011,0.317704],[115.06531910000001,0.325602200000048],[115.07687620000002,0.330749900000058],[115.07968930000004,0.336657700000046],[115.0848774000001,0.342343600000049],[115.09009780000008,0.343370200000038],[115.094367,0.350497700000062],[115.10871170000007,0.358318700000041],[115.12099610000007,0.372312400000055],[115.12377850000007,0.370960500000024],[115.12867,0.374634],[115.13277950000008,0.411100100000056],[115.13611780000008,0.423914300000035],[115.13277720000008,0.432494800000029],[115.12242980000008,0.440397300000029],[115.11552820000009,0.448692300000062],[115.107521,0.451146300000062],[115.10319390000006,0.462973900000065],[115.09401120000007,0.469966900000031],[115.08777780000003,0.486386],[115.08518390000006,0.488873600000034],[115.0823653000001,0.5],[115.07913740000004,0.501975100000038],[115.07248470000002,0.517019800000071],[115.06667850000008,0.524491400000045],[115.04971130000001,0.539414800000031],[115.03949360000001,0.554055100000028],[115.03249560000006,0.573174700000038],[115.02231340000003,0.58535930000005],[115.018754,0.59567050000004],[115.01075090000006,0.606699100000071],[115.00722670000005,0.630522100000064],[115.00243990000001,0.647352600000033],[115.00000000000011,0.67317120000007],[114.9984564,0.674792100000047],[114.99640560000012,0.685026200000038],[114.99465780000003,0.686993400000063],[114.99571,0.690849600000035],[114.9932265000001,0.694416500000045],[114.9893489000001,0.717789800000048],[114.9861433000001,0.722069100000056],[114.98294590000012,0.72910580000007],[114.98256720000006,0.733319200000039],[114.97913730000005,0.738908900000069],[114.9714861000001,0.746414700000059],[114.9691788,0.752049600000021],[114.95812160000003,0.762418],[114.94959660000006,0.762812900000029],[114.94137380000006,0.772154200000045],[114.93765570000005,0.773997700000052],[114.93289840000011,0.772598900000048],[114.92323390000001,0.77254430000005],[114.91735660000006,0.777484700000059],[114.91477940000004,0.777633],[114.9129478000001,0.772894200000053],[114.90977690000011,0.771047400000043],[114.90992770000003,0.766658900000039],[114.9052196,0.766207700000052],[114.8913119,0.758749800000032],[114.88229440000009,0.751595800000075],[114.87836,0.745438200000024],[114.86955080000007,0.741122300000029],[114.86439070000006,0.74100240000007],[114.86205040000004,0.736698200000035],[114.85150080000005,0.740696],[114.84971590000009,0.74353050000002],[114.84177530000011,0.745841100000064],[114.83425140000008,0.753736300000071],[114.82809110000005,0.754698400000052],[114.82361070000002,0.750476400000025],[114.81797010000003,0.753129],[114.81292840000003,0.75],[114.80912750000005,0.741858600000057],[114.8036581,0.739294800000039],[114.79518280000002,0.741423500000053],[114.79447030000006,0.73638550000004],[114.7900969000001,0.733924200000047],[114.78693210000006,0.729790200000025],[114.7843104000001,0.729586100000063],[114.78214250000008,0.727434100000039],[114.77322790000005,0.729329900000039],[114.76986010000007,0.737708500000053],[114.76797080000006,0.737707600000022],[114.76588970000012,0.733954800000049],[114.76579470000001,0.73020310000004],[114.75000000000011,0.725857100000042],[114.74319710000009,0.720785100000057],[114.73689190000005,0.712733600000035],[114.72394480000003,0.706942900000058],[114.7173931000001,0.701426900000058],[114.70079120000003,0.702482800000041],[114.69762390000005,0.703861900000049],[114.69478130000005,0.709374900000057],[114.6951868000001,0.713297300000022],[114.70930310000006,0.724475200000029],[114.70932560000006,0.726486100000045],[114.70744360000003,0.72821220000003],[114.69992550000006,0.725617900000032],[114.69785910000007,0.720057300000065],[114.69508480000002,0.719109600000024],[114.69148640000003,0.710362100000054],[114.6890125000001,0.707984200000055],[114.67719780000004,0.70226660000003],[114.67331820000004,0.70193340000003],[114.66808330000003,0.703854900000067],[114.6651859000001,0.703145600000028],[114.66296160000002,0.697232500000041],[114.65599920000011,0.689982100000066],[114.65566130000002,0.682939600000054],[114.65367370000001,0.677503500000057],[114.63938510000003,0.670986600000049],[114.63672860000008,0.660865300000069],[114.626506,0.656730700000026],[114.62189190000004,0.65122690000004],[114.61988270000006,0.642512300000021],[114.6175267000001,0.640614200000073],[114.61405560000003,0.639774],[114.61040160000005,0.64503730000007],[114.6088304000001,0.64503650000006],[114.60091420000003,0.632732500000031],[114.58705910000003,0.63197370000006],[114.5776777000001,0.628344800000036],[114.57239980000008,0.62817380000007],[114.56716920000008,0.625184800000056],[114.56105260000004,0.627204900000038],[114.55250740000008,0.627538],[114.54467510000006,0.630224300000066],[114.53982710000002,0.61975],[114.54305250000004,0.612692500000037],[114.54165160000002,0.607567600000039],[114.54633170000011,0.601399600000036],[114.5464922000001,0.593886200000043],[114.54254150000008,0.582552900000053],[114.53776240000002,0.577635600000065],[114.5348547000001,0.571412],[114.53469280000002,0.563649300000066],[114.53095280000002,0.55941230000002],[114.52279370000008,0.559252],[114.51406180000004,0.561967200000026],[114.51052780000009,0.565543600000069],[114.50296770000011,0.56551810000002],[114.50000000000011,0.568205700000021],[114.49563290000003,0.567205],[114.489427,0.571290900000065],[114.47780250000005,0.568636400000059],[114.4682242,0.561744100000055],[114.46318840000004,0.561947300000043],[114.4602698000001,0.556559800000059],[114.45503050000002,0.555308],[114.44750240000008,0.549011900000039],[114.44049480000001,0.547213200000044],[114.4350928,0.542689],[114.43807230000004,0.519492600000035],[114.43587850000006,0.508600200000046],[114.4313575000001,0.503942800000061],[114.42731760000004,0.502043900000047],[114.4069363000001,0.495146200000022],[114.40069540000002,0.49692680000004],[114.390572,0.511224700000071],[114.38092860000006,0.51298520000006],[114.37499420000006,0.516221100000053],[114.36376880000012,0.529816400000072],[114.35420020000004,0.531930300000056],[114.3476468,0.53181040000004],[114.325406,0.538288400000056],[114.32175990000007,0.540705700000046],[114.31094630000007,0.534024800000054],[114.29784030000008,0.533199700000068],[114.29188540000007,0.538160800000071],[114.27821890000007,0.534835900000076],[114.26742460000003,0.528336500000023],[114.25642940000012,0.532301500000074],[114.25079140000003,0.531273300000066],[114.24769970000011,0.522609800000055],[114.24511070000005,0.521215500000039],[114.24017360000005,0.525282300000072],[114.23270220000006,0.525141100000042],[114.22783330000004,0.530035500000054],[114.21941260000006,0.529482900000062],[114.2116592000001,0.536902],[114.20296830000007,0.539578400000039],[114.20156060000011,0.550578200000075],[114.1987047,0.554214400000035],[114.19831540000007,0.566168700000048],[114.19513660000007,0.570789800000057],[114.19405540000002,0.576851800000043],[114.19532,0.584829600000035],[114.19357950000006,0.586432500000058],[114.18844190000004,0.586366100000021],[114.1780424000001,0.581319400000041],[114.17315740000004,0.583614300000022],[114.1673737000001,0.583112800000038],[114.15766530000008,0.591467600000044],[114.15858480000009,0.598814300000072],[114.16640060000009,0.604718500000047],[114.17413980000003,0.60715440000007],[114.17821640000011,0.612714700000026],[114.17948950000005,0.615964700000063],[114.1791459000001,0.622890900000073],[114.17657410000004,0.639673200000061],[114.175021,0.642522900000074],[114.16323760000012,0.649617800000044],[114.16171810000003,0.654269700000043],[114.15872070000012,0.655533600000069],[114.15810750000003,0.65949],[114.14379860000008,0.662402200000031],[114.14389230000006,0.668989600000032],[114.13791070000002,0.67152470000002],[114.13003430000003,0.670042800000033],[114.12637260000008,0.678284200000064],[114.12807540000006,0.681716200000039],[114.1270740000001,0.690584300000069],[114.12294780000002,0.694850200000076],[114.11314670000002,0.695614],[114.1025509000001,0.691472900000065],[114.10005880000006,0.692041200000062],[114.0956675000001,0.696618],[114.09145020000005,0.697761700000058],[114.08169940000005,0.689555700000028],[114.07479620000004,0.689905200000055],[114.06792480000001,0.681436100000042],[114.0614806000001,0.677938],[114.05960970000001,0.675453900000036],[114.05643740000005,0.675320300000067],[114.05310510000004,0.669560100000069],[114.04581330000008,0.668819400000075],[114.03940290000003,0.67136510000006],[114.0359102000001,0.669265500000051],[114.02702460000012,0.671199200000046],[114.0245552,0.667368500000066],[114.01859070000012,0.662877700000024],[114.0117120000001,0.650220200000035],[114.0078598,0.646286],[114.00486060000003,0.648654100000044],[114.00394640000002,0.655601600000068],[114.00000000000011,0.654813900000022],[113.98522160000005,0.665591100000029],[113.97751590000007,0.667416600000024],[113.97392250000007,0.666149700000062],[113.96561410000004,0.657311700000037],[113.95659610000007,0.657816500000024],[113.95037050000008,0.659931700000072],[113.94375590000004,0.659749600000055],[113.92881750000004,0.65309910000002],[113.9144361000001,0.656641800000045],[113.90810370000008,0.656161200000042],[113.90205360000004,0.653157300000032],[113.8938343000001,0.64292910000006],[113.88933780000002,0.641241700000023],[113.88560890000008,0.641570700000045],[113.88358280000011,0.645864],[113.8825452000001,0.657892900000036],[113.880142,0.660425],[113.8516691000001,0.663241400000061],[113.84323860000006,0.665645300000051],[113.84218580000004,0.662005],[113.83956120000005,0.659345900000062],[113.82109050000008,0.651070100000027],[113.81181550000008,0.641506400000026],[113.8085096000001,0.633885200000066],[113.80619790000003,0.616428800000051],[113.80204750000007,0.605936900000074],[113.8001097,0.60460740000002],[113.7937849000001,0.604598400000043],[113.78324870000006,0.595752700000048],[113.77863290000005,0.590045500000031],[113.77607710000007,0.581805800000041],[113.77468090000002,0.565669900000046],[113.77239970000005,0.563707200000067],[113.76412180000011,0.566800600000022],[113.75859050000008,0.565290200000049],[113.75000000000011,0.55739310000007],[113.74865020000004,0.549835400000063],[113.73849960000007,0.543624300000033],[113.73390170000005,0.537796200000059],[113.71985360000008,0.53519840000007],[113.71727830000009,0.532396200000051],[113.71587690000001,0.527416100000039],[113.7047334,0.519138100000021],[113.69376060000002,0.517817800000046],[113.68513160000009,0.501168100000029],[113.6772701000001,0.494628600000055],[113.66863990000002,0.490310300000033],[113.66677840000011,0.476426500000059],[113.66041550000011,0.460914800000069],[113.6632307000001,0.450323300000036],[113.65999580000005,0.441622300000063],[113.65720350000004,0.43850180000004],[113.64779640000006,0.434160500000075],[113.634178,0.424500800000033],[113.6077269000001,0.41326760000004],[113.60236340000006,0.412272800000039],[113.58634930000005,0.404566800000055],[113.58197,0.398108900000068],[113.57924630000002,0.387553700000069],[113.574745,0.381846500000051],[113.57019020000007,0.379702900000041],[113.56294230000003,0.379513100000054],[113.56100440000012,0.378237800000022],[113.55736520000005,0.373100400000055],[113.5554350000001,0.365493800000024],[113.54934680000008,0.358393700000022],[113.53100570000004,0.343433900000036],[113.52170550000005,0.338965900000062],[113.51544170000011,0.333710900000028],[113.5145338000001,0.330943300000058],[113.51671580000004,0.325643],[113.51375560000008,0.320514700000047],[113.49580370000001,0.308539600000074],[113.4580916000001,0.275716600000067],[113.45256790000008,0.271782200000075],[113.4379652,0.265405800000053],[113.42314130000011,0.262954900000068],[113.40727220000008,0.264239500000031],[113.38916760000006,0.271846500000038],[113.375244,0.272904900000071],[113.35679610000011,0.278151200000025],[113.34886920000008,0.277843800000028],[113.33643330000007,0.274244100000033],[113.32313520000002,0.272987100000023],[113.317375,0.270554100000027],[113.29640180000001,0.259031400000026],[113.2850112000001,0.248810900000024],[113.27147890000003,0.240828600000043],[113.27013380000005,0.238056900000061],[113.27228530000002,0.233118400000023],[113.29141980000009,0.221586],[113.30679310000005,0.204871],[113.31857290000005,0.186003400000061],[113.32508830000006,0.179744300000038],[113.3508528000001,0.164250100000061],[113.37870770000006,0.154698400000029],[113.39012890000004,0.148511600000063],[113.40834790000008,0.136572200000046],[113.42069230000004,0.12238080000003],[113.42121870000005,0.116094600000054],[113.41325360000008,0.10618160000007],[113.411209,0.099371],[113.41545850000011,0.083551500000056],[113.41036210000004,0.057972900000038],[113.41049180000005,0.049841700000059],[113.41255170000011,0.044143400000053],[113.4183882000001,0.035587],[113.43827040000008,0.019043700000054],[113.44022350000012,0.014385700000048],[113.42754350000007,-0.012973299999942],[113.42967980000003,-0.027499199999966],[113.42688740000006,-0.031931099999952],[113.41896050000003,-0.0391216],[113.41736590000005,-0.043264099999931],[113.4174422000001,-0.048844799999927],[113.4205856000001,-0.054172199999925],[113.431549,-0.055185399999971],[113.43652340000006,-0.057591399999978],[113.44001,-0.0621319],[113.44144430000006,-0.068327599999975],[113.43997950000005,-0.0758619],[113.42544550000002,-0.091852899999935],[113.42310340000006,-0.096348099999943],[113.42261510000003,-0.112086],[113.42091370000003,-0.117268699999954],[113.41407020000008,-0.121863399999938],[113.40202340000008,-0.122532499999977],[113.39746860000002,-0.126955399999929],[113.397194,-0.133105799999953],[113.40010840000002,-0.135692699999936],[113.42073070000004,-0.141508699999974],[113.421074,-0.145180899999957],[113.41407780000009,-0.159272599999952],[113.40637980000008,-0.165441099999953],[113.39643870000009,-0.163731499999926],[113.3883363000001,-0.1665081],[113.38588730000004,-0.169212499999958],[113.38824480000005,-0.179433099999926],[113.38711560000002,-0.185176599999977],[113.38443770000003,-0.189264699999967],[113.3749696000001,-0.194573899999966],[113.36842360000003,-0.204749299999946],[113.3596956,-0.213043199999959],[113.352524,-0.223752199999979],[113.33608270000002,-0.227686399999925],[113.3236544,-0.237934],[113.29750080000008,-0.240176799999972],[113.2917407000001,-0.241795699999955],[113.287575,-0.244852799999933],[113.279259,-0.2548289],[113.2746585000001,-0.270675499999925],[113.26998170000002,-0.274130599999978],[113.26250490000007,-0.274546499999929],[113.25748470000008,-0.276970399999925],[113.25000000000011,-0.2846441],[113.23541250000005,-0.295675899999935],[113.23236070000007,-0.309071199999948],[113.22871380000004,-0.316207499999962],[113.22753890000001,-0.328381799999931],[113.22058090000007,-0.333799499999941],[113.20774830000005,-0.339226199999928],[113.20655810000005,-0.342907399999945],[113.20861040000011,-0.344915399999934],[113.21969590000003,-0.347999799999968],[113.22467030000007,-0.351491199999941],[113.2304610000001,-0.364353],[113.236862,-0.367609199999947],[113.24023420000003,-0.370594],[113.24207290000004,-0.375595799999928],[113.26231430000007,-0.391658499999949],[113.26209310000002,-0.398433099999977],[113.25749260000009,-0.408273699999938],[113.26548280000009,-0.420019699999955],[113.27157260000001,-0.412405099999944],[113.30654890000005,-0.381781399999966],[113.34179150000011,-0.341406199999938],[113.36465970000006,-0.319457199999931],[113.40717290000009,-0.304547899999932],[113.44206130000009,-0.302709099999959],[113.482746,-0.320693699999936],[113.49023550000004,-0.325831799999946],[113.53584930000011,-0.341925],[113.57874360000005,-0.374121799999955],[113.59644480000009,-0.383710399999927],[113.62367540000002,-0.392953],[113.68119480000007,-0.401499899999976],[113.69753160000005,-0.404920599999969],[113.71352890000003,-0.411424699999941],[113.72204060000001,-0.422385],[113.7267657000001,-0.4322068],[113.73565960000008,-0.440195199999948],[113.74723570000003,-0.454922499999952],[113.76099850000003,-0.483579199999951],[113.77573340000004,-0.472605899999962],[113.77764960000002,-0.456476799999962],[113.7718751000001,-0.437770199999932],[113.77571750000004,-0.430672299999969],[113.79622490000008,-0.433245199999931],[113.81609580000008,-0.448075299999971],[113.8263505000001,-0.4525871],[113.88466470000003,-0.458369599999969],[113.889157,-0.463456399999927],[113.89427810000007,-0.4628812],[113.8949199000001,-0.465461199999936],[113.90196960000003,-0.468683599999963],[113.9070944,-0.465456099999926],[113.92055060000007,-0.4660956],[113.9288772000001,-0.458351499999935],[113.9275755000001,-0.405458199999941],[113.9429464000001,-0.386101399999973],[113.97336540000003,-0.375092499999937],[113.99146320000011,-0.381017499999928],[114.01209630000005,-0.416172899999935],[114.0289570000001,-0.483948699999928],[114.05211950000012,-0.522065],[114.06089150000003,-0.540924399999938],[114.06916330000001,-0.586129899999946],[114.07519960000002,-0.609741699999972],[114.08027690000006,-0.618993299999943],[114.107582,-0.688863199999957],[114.1193379,-0.729063399999973],[114.12379650000003,-0.7584183],[114.13395820000005,-0.782662899999934],[114.15647720000004,-0.7989199],[114.18392340000003,-0.811590799999976],[114.20026410000003,-0.827542499999936],[114.22829880000006,-0.859166],[114.24640570000008,-0.866630499999928],[114.27041080000004,-0.864883599999928],[114.34330810000006,-0.845483699999932],[114.385336,-0.836711399999956],[114.40594320000002,-0.833144699999934],[114.424383,-0.832582599999967],[114.459085,-0.833620799999949],[114.50818730000003,-0.848066699999947],[114.56938450000007,-0.857618699999932],[114.58073080000008,-0.846796099999949],[114.624394,-0.815156099999967],[114.6704281000001,-0.775696099999948],[114.7233989,-0.7512417],[114.78788270000007,-0.743546599999945],[114.83394310000006,-0.740477899999973],[114.873864,-0.73586],[114.90765520000002,-0.706509099999948],[114.94605980000006,-0.6586107],[115.01672510000003,-0.558167],[115.0428419000001,-0.511803199999974],[115.03517740000007,-0.465429],[115.0305859,-0.405144299999961],[115.0520901000001,-0.3665055],[115.0567046000001,-0.323225399999956],[115.05364540000005,-0.247483],[115.06132730000002,-0.207294299999944],[115.067089,-0.165875099999937]]]},"properties":{"shapeName":"Murung Raya","shapeISO":"","shapeID":"22746128B40379261618964","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[104.15272080000005,-1.724883],[103.89187550000008,-1.792674399999953],[103.79084250000005,-1.817141799999945],[103.77710620000005,-1.820329099999981],[103.76608810000005,-1.815996599999949],[103.75492830000007,-1.819556599999942],[103.75704330000008,-1.825305599999979],[103.66428410000003,-1.848964599999931],[103.66050610000008,-1.848961699999961],[103.65724170000004,-1.8457786],[103.64515850000004,-1.845769399999938],[103.64130380000006,-1.850195299999939],[103.63770580000005,-1.850873899999954],[103.62564950000007,-1.843539899999939],[103.60902110000006,-1.850630899999942],[103.60710830000005,-1.848720699999944],[103.57999220000005,-1.867703799999958],[103.56348750000006,-1.874109099999941],[103.557238,-1.878741699999978],[103.54878560000009,-1.881423099999949],[103.53762420000004,-1.888571899999931],[103.52446630000009,-1.900732399999924],[103.52270510000005,-1.906616199999974],[103.51971320000007,-1.9086967],[103.51409910000007,-1.945617699999957],[103.50988770000004,-1.955627399999969],[103.50958550000007,-1.96242],[103.51809910000009,-1.966172399999948],[103.54753450000004,-1.986767699999973],[103.56021590000006,-2.000026699999978],[103.55724310000005,-2.0114792],[103.55421770000004,-2.041902299999947],[103.551581,-2.048351699999955],[103.54607720000007,-2.049879699999963],[103.53841690000007,-2.049191399999927],[103.53362690000006,-2.055676099999971],[103.53210450000006,-2.063415499999962],[103.520937,-2.069227199999943],[103.519104,-2.075378399999977],[103.51409910000007,-2.083679199999949],[103.51892090000007,-2.098693799999978],[103.51708980000006,-2.103576699999962],[103.52752690000005,-2.118408199999976],[103.53088380000008,-2.125427199999933],[103.53588870000004,-2.126709],[103.54071040000008,-2.132812499999943],[103.54888920000008,-2.137878399999977],[103.55969240000007,-2.141418499999929],[103.55432130000008,-2.145690899999977],[103.54711910000003,-2.147705099999939],[103.53833010000005,-2.159179699999925],[103.52752690000005,-2.166992199999925],[103.51629640000004,-2.169006299999978],[103.49871830000006,-2.1773071],[103.48724830000003,-2.1774022],[103.47285970000007,-2.174364199999957],[103.46068670000005,-2.174886499999957],[103.45859170000006,-2.177841399999977],[103.458712,-2.181107199999929],[103.45823780000006,-2.188177099999962],[103.45347780000009,-2.1942486],[103.45143340000004,-2.209423399999935],[103.45363970000005,-2.218069299999968],[103.46015210000007,-2.226762699999938],[103.46144010000006,-2.238457499999924],[103.46045650000008,-2.243537299999957],[103.46554510000004,-2.250103599999932],[103.46593020000006,-2.255221499999948],[103.46333750000008,-2.267575099999931],[103.46057740000003,-2.269450399999926],[103.45890680000008,-2.273117399999933],[103.461149,-2.279374],[103.45909150000006,-2.286025199999926],[103.46020430000004,-2.296871499999952],[103.45321280000007,-2.301426],[103.45119680000005,-2.3081059],[103.44669350000004,-2.313224099999957],[103.45223590000006,-2.325805099999968],[103.45057120000007,-2.335916399999974],[103.44864960000007,-2.339041399999928],[103.45056570000008,-2.342986499999938],[103.44672330000009,-2.346424499999955],[103.44948810000005,-2.354192199999943],[103.446697,-2.356407699999977],[103.44360570000003,-2.354338499999926],[103.43140880000004,-2.335543299999927],[103.421534,-2.336017],[103.41877180000006,-2.334059399999944],[103.41262940000007,-2.334750299999939],[103.40966830000008,-2.333397399999967],[103.41202680000004,-2.325521199999969],[103.411298,-2.321567799999968],[103.40889960000004,-2.318258599999979],[103.40286210000005,-2.315852199999938],[103.40105480000005,-2.313705399999947],[103.39953770000005,-2.309977799999956],[103.40020350000003,-2.306119699999954],[103.39808980000004,-2.303522599999951],[103.39418790000008,-2.303185499999927],[103.39307160000004,-2.295932199999925],[103.38616460000009,-2.295556899999951],[103.38025250000004,-2.284382199999925],[103.37703060000007,-2.283334399999944],[103.36606,-2.283926799999961],[103.36167650000004,-2.277134599999954],[103.35577240000003,-2.274651399999925],[103.35381760000007,-2.270142699999951],[103.347803,-2.265488499999947],[103.34449540000008,-2.260602699999936],[103.34240260000007,-2.25431],[103.33955750000007,-2.252992399999926],[103.33718170000009,-2.249375099999952],[103.33537210000009,-2.240313199999946],[103.33150380000006,-2.236084],[103.326293,-2.222277099999928],[103.30800760000005,-2.216623199999958],[103.29747360000005,-2.206284],[103.29477410000004,-2.2002724],[103.29303330000005,-2.187851099999932],[103.29508490000006,-2.184407499999963],[103.29185670000004,-2.177696799999978],[103.29207620000005,-2.17473],[103.29013980000008,-2.174242099999958],[103.28826550000008,-2.179047599999933],[103.28719250000006,-2.178858599999955],[103.27930770000006,-2.165729899999974],[103.27507850000006,-2.163213399999961],[103.27326440000007,-2.158235699999977],[103.26570870000006,-2.155410599999925],[103.26388690000005,-2.1571922],[103.26136890000004,-2.155781099999956],[103.25978760000004,-2.151226099999974],[103.26003490000005,-2.1388341],[103.25854740000005,-2.133950699999957],[103.253511,-2.131504],[103.24998990000006,-2.137757],[103.246467,-2.137457899999958],[103.23804580000007,-2.141827],[103.22206090000009,-2.141793799999959],[103.20665370000006,-2.1423397],[103.19437040000008,-2.152839399999948],[103.18852940000005,-2.160248699999954],[103.18516590000007,-2.166120699999965],[103.18148090000005,-2.178809699999931],[103.18158560000006,-2.192393099999947],[103.17876660000007,-2.2083956],[103.18290290000004,-2.221825099999933],[103.17956880000008,-2.239141099999927],[103.17978920000007,-2.249561699999958],[103.191503,-2.253060599999969],[103.19495520000004,-2.256129],[103.20624240000006,-2.276572099999953],[103.20661960000007,-2.287052399999936],[103.20474720000004,-2.291837799999939],[103.20488140000003,-2.296484899999939],[103.20766590000005,-2.308645599999977],[103.21190960000007,-2.311695499999928],[103.212498,-2.317100599999947],[103.20987310000004,-2.318093699999963],[103.20458870000004,-2.316803499999935],[103.20093950000006,-2.319640899999968],[103.19738520000004,-2.319544599999972],[103.19081860000006,-2.323203299999932],[103.18497930000007,-2.328237899999976],[103.16966160000004,-2.333168499999942],[103.15047690000006,-2.3474301],[103.14411070000006,-2.360090199999945],[103.14255860000009,-2.360961299999929],[103.13735310000004,-2.3560901],[103.12357620000006,-2.357357799999932],[103.11855,-2.352865299999962],[103.11523550000004,-2.346113699999933],[103.11168390000006,-2.344092099999955],[103.103955,-2.345344199999943],[103.09245370000008,-2.344524299999932],[103.08858060000006,-2.339689699999951],[103.08754780000004,-2.333150299999943],[103.08488350000005,-2.331589199999939],[103.07909780000006,-2.332852399999979],[103.07488310000008,-2.331024499999955],[103.07068960000004,-2.332027099999948],[103.06813950000009,-2.330831899999964],[103.06432160000008,-2.323768],[103.05831440000009,-2.318259499999954],[103.05476850000008,-2.312204399999928],[103.05023140000009,-2.313937199999941],[103.04257270000005,-2.312180599999976],[103.03257220000006,-2.321083899999962],[103.03225780000008,-2.323889699999938],[103.03674720000004,-2.334216799999979],[103.03637080000004,-2.337209599999937],[103.03419650000006,-2.339264199999946],[103.02562520000004,-2.340325199999938],[103.01851140000008,-2.336339599999974],[103.00396230000007,-2.336098899999968],[103.006209,-2.346135799999956],[103.01461030000007,-2.3650093],[103.01404820000005,-2.390188899999941],[103.01820050000003,-2.402242399999977],[103.02152620000004,-2.404869499999961],[103.02488680000005,-2.405053399999929],[103.03516670000005,-2.396863899999971],[103.04482540000004,-2.402733799999965],[103.05314980000009,-2.402314],[103.05487310000007,-2.40536],[103.05002390000004,-2.409306599999979],[103.050686,-2.4166131],[103.05871520000005,-2.4205204],[103.05877330000004,-2.4238168],[103.06223490000008,-2.426707399999941],[103.06300110000006,-2.432795799999951],[103.06806710000006,-2.441344199999946],[103.08615210000005,-2.447510399999942],[103.09987990000008,-2.456140699999935],[103.10535210000006,-2.458080299999949],[103.11533850000006,-2.466894199999956],[103.125195,-2.460902],[103.13349340000008,-2.457888499999967],[103.13795380000005,-2.462020099999961],[103.15063240000006,-2.4648673],[103.15521,-2.467829],[103.15744440000009,-2.472589899999946],[103.15688690000007,-2.4802898],[103.16015930000003,-2.492938099999947],[103.15866420000003,-2.503811699999972],[103.16235880000005,-2.509144299999946],[103.17152290000007,-2.510693799999956],[103.17361840000007,-2.509099299999946],[103.17572340000004,-2.50296],[103.17982180000007,-2.505349299999978],[103.18529180000007,-2.5046235],[103.18711170000006,-2.506917899999962],[103.18747010000004,-2.511410599999977],[103.19284590000007,-2.512976599999945],[103.19721410000005,-2.517820799999924],[103.20075580000008,-2.527747499999975],[103.205492,-2.530504399999927],[103.21326620000008,-2.531358099999977],[103.21562510000007,-2.538402699999949],[103.21697990000007,-2.535199499999976],[103.22127220000004,-2.534936],[103.22437020000007,-2.531879899999979],[103.22259170000007,-2.5235282],[103.226897,-2.521829199999956],[103.22833470000006,-2.519339399999978],[103.23686920000006,-2.5172968],[103.24098960000003,-2.514504299999942],[103.24073530000004,-2.509651499999961],[103.24413790000006,-2.500344699999971],[103.24415480000005,-2.487623599999949],[103.24912110000008,-2.478974499999936],[103.25760080000003,-2.475838199999941],[103.26491470000008,-2.466667499999971],[103.27361030000009,-2.465860199999952],[103.27927420000003,-2.469359399999973],[103.274294,-2.473630699999944],[103.27233190000004,-2.478349399999956],[103.27569580000005,-2.498681899999951],[103.28520810000003,-2.503809199999978],[103.29575620000008,-2.514708499999927],[103.29980510000007,-2.520839],[103.30455110000008,-2.524119599999949],[103.30734970000003,-2.524035399999946],[103.30852060000007,-2.526135299999964],[103.31204160000004,-2.526008799999943],[103.31308160000003,-2.528502],[103.323938,-2.537007299999971],[103.33411190000004,-2.532143899999937],[103.34318420000005,-2.544541599999945],[103.35036050000008,-2.559126],[103.36636690000006,-2.584638599999948],[103.36542660000003,-2.584621099999936],[103.36654830000003,-2.586492199999952],[103.36644770000004,-2.605917199999965],[103.34345130000008,-2.668176699999947],[103.34164730000003,-2.694617],[103.30895710000004,-2.731244599999968],[103.27119530000004,-2.753026099999943],[103.33809580000008,-2.822877],[103.33431720000004,-2.825725099999943],[103.34658190000005,-2.837799899999936],[103.35363240000004,-2.851103499999965],[103.43134490000006,-2.877111799999966],[103.41768080000008,-2.902481],[103.41108410000004,-2.924568199999953],[103.42638680000005,-2.9433231],[103.43850130000004,-2.947620399999948],[103.44558110000008,-2.967476199999965],[103.46082980000006,-2.992780899999957],[103.47619450000008,-3.022755699999948],[103.48153330000008,-3.0366095],[103.48590650000006,-3.037534099999959],[103.499861,-3.032335],[103.50264610000005,-3.057278699999927],[103.50710930000008,-3.069820599999957],[103.51213760000007,-3.078144699999939],[103.518165,-3.082547699999964],[103.52780950000005,-3.083977599999969],[103.53008340000008,-3.085597],[103.54009070000006,-3.099176099999966],[103.54794680000003,-3.100694199999964],[103.55917060000007,-3.096678099999963],[103.57777620000007,-3.111285799999962],[103.57833180000006,-3.114573499999949],[103.58173970000007,-3.119390499999952],[103.58100360000009,-3.122627899999941],[103.57509640000006,-3.129187899999977],[103.57385630000005,-3.137794],[103.58135890000005,-3.141515399999946],[103.58796240000004,-3.137544799999944],[103.59375090000003,-3.136098499999946],[103.59498160000004,-3.160050699999942],[103.59631760000008,-3.160760699999969],[103.59895820000008,-3.158621399999959],[103.59855610000005,-3.162016799999947],[103.60720310000005,-3.172954899999979],[103.60920090000008,-3.179742899999951],[103.61567780000007,-3.1797517],[103.63790680000005,-3.1883112],[103.63955760000005,-3.196939599999951],[103.64475090000008,-3.204628399999933],[103.638256,-3.2139842],[103.63304630000005,-3.215908499999955],[103.63371050000006,-3.219105599999978],[103.63930370000008,-3.224942599999963],[103.63878180000006,-3.230215],[103.64071730000006,-3.235332299999925],[103.64398630000005,-3.2362991],[103.64997840000007,-3.241210499999966],[103.64926380000009,-3.245578899999941],[103.64799720000008,-3.250052],[103.652911,-3.250676],[103.66042180000005,-3.254935699999976],[103.668062,-3.257052399999964],[103.67924670000008,-3.256903799999975],[103.68235770000007,-3.254664],[103.683303,-3.250080699999955],[103.68603510000008,-3.247178599999927],[103.69230590000006,-3.246351299999958],[103.70080490000004,-3.240383299999962],[103.70637730000004,-3.238265799999965],[103.71270880000009,-3.257398899999941],[103.71653370000007,-3.262330099999929],[103.73129210000008,-3.265954699999952],[103.74133040000004,-3.2667796],[103.74759940000007,-3.262523599999952],[103.76588170000008,-3.259135799999967],[103.77409420000004,-3.254208499999947],[103.78084720000004,-3.240910299999939],[103.788732,-3.202920199999937],[103.78936170000009,-3.194938699999966],[103.78419520000006,-3.188748699999962],[103.78313520000006,-3.184341899999936],[103.78379790000008,-3.175666099999944],[103.78530160000008,-3.174769699999956],[103.785128,-3.172322],[103.79146790000004,-3.157694799999945],[103.79711190000006,-3.154174499999954],[103.797539,-3.150947099999939],[103.793488,-3.14127],[103.79608650000006,-3.137350899999944],[103.80126020000006,-3.1337743],[103.809409,-3.131421499999931],[103.81376320000004,-3.125206299999945],[103.81420050000008,-3.119824],[103.816766,-3.115313599999979],[103.82102160000005,-3.1135614],[103.83269360000008,-3.101956],[103.83620930000006,-3.100182099999927],[103.83851570000007,-3.094605599999966],[103.84416590000006,-3.088876899999946],[103.85467680000005,-3.084337599999969],[103.86409080000004,-3.087159799999938],[103.88587970000003,-3.079476499999942],[103.88981510000008,-3.073362799999927],[103.88896920000008,-3.065376399999934],[103.89101590000007,-3.056886299999974],[103.89757250000008,-3.052160199999946],[103.90528930000005,-3.032518],[103.91049260000005,-3.028337799999974],[103.91205460000003,-3.024393499999974],[103.92192670000009,-3.023718199999962],[103.93906390000006,-3.016075099999966],[103.94885080000006,-3.0053708],[104.01031420000004,-3.024987199999941],[104.02051160000008,-3.030274899999938],[104.026559,-3.028891899999962],[104.03877220000004,-3.017314499999941],[104.04770610000008,-3.010956499999963],[104.06660220000003,-3.003903499999979],[104.08744670000004,-3.003176399999973],[104.09884340000008,-3.006326899999976],[104.12821380000008,-3.007333],[104.13629320000007,-3.014086299999974],[104.13308750000004,-3.024685199999965],[104.13354020000008,-3.028996],[104.13859590000004,-3.037777799999958],[104.14131410000005,-3.046390699999961],[104.143451,-3.047664399999974],[104.15038430000004,-3.045252399999924],[104.15498650000006,-3.045560299999977],[104.168123,-3.050927899999976],[104.16739880000006,-3.054794199999947],[104.18758860000008,-3.052461599999958],[104.18319090000006,-3.044152299999951],[104.18044240000006,-3.032428599999946],[104.17936260000005,-3.02015],[104.18062950000007,-2.992828899999949],[104.17546270000008,-2.9689859],[104.17720080000004,-2.942138499999942],[104.18314230000004,-2.923770199999979],[104.18273170000003,-2.917424099999948],[104.18006310000004,-2.917422199999976],[104.18329960000005,-2.911631199999931],[104.18439960000006,-2.9026552],[104.18179960000003,-2.892150199999946],[104.17709960000008,-2.885674199999926],[104.15769960000006,-2.873524199999963],[104.13245850000004,-2.864030799999966],[104.13164920000008,-2.855272899999932],[104.14699960000007,-2.8398132],[104.15469960000007,-2.829023199999938],[104.16879960000006,-2.813755199999946],[104.18259960000006,-2.791487199999949],[104.19159960000007,-2.786710199999959],[104.19749960000007,-2.775917199999981],[104.20939960000004,-2.762319199999979],[104.22369960000003,-2.748421199999939],[104.22929960000005,-2.740442199999961],[104.24667810000005,-2.725057299999946],[104.22787880000004,-2.708731599999965],[104.23108220000006,-2.703861599999925],[104.236828,-2.697687499999972],[104.24436940000004,-2.694386099999974],[104.26636760000008,-2.674492],[104.28286210000005,-2.6623707],[104.27889960000005,-2.658587199999943],[104.26959960000005,-2.657124199999942],[104.26129960000009,-2.652619199999947],[104.23886730000004,-2.645276399999943],[104.24368240000007,-2.629171],[104.22959960000009,-2.631149199999925],[104.22849960000008,-2.617473199999949],[104.20959960000005,-2.620630199999937],[104.208444,-2.615710399999955],[104.222075,-2.600053099999968],[104.21,-2.596661599999948],[104.19697590000004,-2.590517499999976],[104.17644490000004,-2.575178799999946],[104.16972620000007,-2.572784199999944],[104.15883210000004,-2.561504099999979],[104.15291680000007,-2.566206],[104.14431150000007,-2.5564922],[104.13426560000005,-2.550024199999939],[104.11322340000004,-2.565039],[104.09769960000006,-2.5515772],[104.07307660000004,-2.539108899999974],[104.07596950000004,-2.533715],[104.07597490000006,-2.525971299999981],[104.10234250000008,-2.507055399999956],[104.06615240000008,-2.454110599999979],[104.08829960000008,-2.433699199999978],[104.09499960000005,-2.429146199999934],[104.10619960000008,-2.425971199999935],[104.11689960000007,-2.427665199999979],[104.12779960000006,-2.431565199999966],[104.14959960000004,-2.444845199999975],[104.16709960000009,-2.4596392],[104.18579960000005,-2.481130199999939],[104.20769960000007,-2.500649199999941],[104.22239960000007,-2.511024199999952],[104.23069960000004,-2.515148199999942],[104.24999960000008,-2.519597199999964],[104.27539960000007,-2.518502199999944],[104.29419960000007,-2.510243199999934],[104.29879960000005,-2.506900199999961],[104.32309960000003,-2.479329199999938],[104.34779960000009,-2.461798199999976],[104.359989,-2.455201],[104.37532410000006,-2.451196599999946],[104.40269840000008,-2.449116599999968],[104.43655760000007,-2.441113799999926],[104.45936190000003,-2.438340599999947],[104.506214,-2.417578799999944],[104.52751530000006,-2.4004222],[104.53590760000009,-2.396176699999955],[104.57709960000005,-2.383013199999937],[104.61801520000006,-2.354936499999951],[104.65339960000006,-2.326544199999944],[104.65689960000009,-2.322050199999978],[104.65509960000009,-2.319548199999929],[104.64449960000007,-2.284680199999968],[104.63599960000005,-2.264805199999955],[104.62419960000005,-2.252153199999952],[104.61649960000005,-2.249780199999975],[104.59351090000007,-2.2490973],[104.56270220000005,-2.262502799999936],[104.55570720000009,-2.264104299999929],[104.54493920000004,-2.263282799999956],[104.51982770000006,-2.2524751],[104.47855310000006,-2.228473099999974],[104.464903,-2.218402599999933],[104.44972440000004,-2.201511499999981],[104.43536530000006,-2.192033799999933],[104.42835050000008,-2.185451599999965],[104.41058990000005,-2.159495299999946],[104.39820210000005,-2.1444369],[104.37593330000004,-2.110394],[104.36038460000009,-2.070929299999932],[104.31859960000008,-2.028423199999963],[104.28589960000005,-1.988188199999968],[104.25399960000004,-1.951759199999969],[104.24249960000009,-1.936824199999933],[104.21249960000006,-1.888833199999965],[104.16282210000008,-1.793235899999956],[104.15272080000005,-1.724883]]]},"properties":{"shapeName":"Musi Banyuasin","shapeISO":"","shapeID":"22746128B7583806554786","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.19468090000004,-3.489778599999966],[103.20161970000004,-3.502210199999979],[103.22346090000008,-3.501300599999979],[103.26594060000008,-3.503723499999978],[103.28830770000008,-3.509226799999965],[103.287958,-3.508092],[103.31732030000006,-3.5106189],[103.32604260000005,-3.522060099999976],[103.33177130000007,-3.5223141],[103.33705520000007,-3.530090399999949],[103.34414540000006,-3.531282699999963],[103.34823180000006,-3.530061299999943],[103.34937770000005,-3.532078399999932],[103.35346010000006,-3.533142399999974],[103.36752110000003,-3.534150299999965],[103.37007440000008,-3.526103199999966],[103.37342630000006,-3.527771299999927],[103.37449020000008,-3.5347523],[103.38390790000005,-3.533761299999981],[103.38259270000003,-3.530638],[103.41815210000004,-3.529910599999937],[103.42568940000007,-3.520143699999949],[103.44517290000005,-3.509507599999949],[103.48410610000008,-3.508682699999952],[103.49295220000005,-3.510030699999959],[103.49869570000004,-3.51493],[103.49864150000008,-3.548715699999946],[103.503937,-3.557170699999972],[103.51054280000005,-3.576297199999942],[103.51257040000007,-3.591737],[103.511237,-3.593014299999936],[103.515687,-3.597917099999961],[103.52697960000006,-3.597935499999949],[103.53836850000005,-3.593464399999959],[103.53741470000006,-3.592784599999959],[103.53875350000004,-3.547788499999967],[103.53895790000007,-3.536025099999961],[103.54850810000005,-3.529069099999958],[103.54862350000008,-3.521742499999959],[103.54057860000006,-3.492834799999969],[103.54627920000007,-3.487870799999939],[103.561004,-3.481382599999961],[103.566356,-3.473059499999977],[103.57224280000008,-3.455402],[103.57660730000003,-3.454531699999961],[103.58619730000004,-3.460684399999934],[103.586209,-3.452792199999976],[103.59056570000007,-3.4571833],[103.59319530000005,-3.449295],[103.61413330000005,-3.419585599999948],[103.61594960000008,-3.403728599999965],[103.61597330000006,-3.387067199999933],[103.62471530000005,-3.375679699999978],[103.62517810000008,-3.356826399999932],[103.613852,-3.344533499999955],[103.61748860000006,-3.330000899999959],[103.61911670000006,-3.323494799999935],[103.61040110000005,-3.316467099999954],[103.61128460000003,-3.308576099999925],[103.60694890000008,-3.289277699999957],[103.61045350000006,-3.278759599999944],[103.624417,-3.276148199999966],[103.63229680000006,-3.255989599999964],[103.64190010000004,-3.251618],[103.64926380000009,-3.245578899999941],[103.64997840000007,-3.241210499999966],[103.64398630000005,-3.2362991],[103.64071730000006,-3.235332299999925],[103.63878180000006,-3.230215],[103.63930370000008,-3.224942599999963],[103.63371050000006,-3.219105599999978],[103.63304630000005,-3.215908499999955],[103.638256,-3.2139842],[103.64475090000008,-3.204628399999933],[103.63955760000005,-3.196939599999951],[103.63790680000005,-3.1883112],[103.61567780000007,-3.1797517],[103.60920090000008,-3.179742899999951],[103.60720310000005,-3.172954899999979],[103.59855610000005,-3.162016799999947],[103.59895820000008,-3.158621399999959],[103.59631760000008,-3.160760699999969],[103.59498160000004,-3.160050699999942],[103.59375090000003,-3.136098499999946],[103.58796240000004,-3.137544799999944],[103.58135890000005,-3.141515399999946],[103.57385630000005,-3.137794],[103.57509640000006,-3.129187899999977],[103.58100360000009,-3.122627899999941],[103.58173970000007,-3.119390499999952],[103.57833180000006,-3.114573499999949],[103.57777620000007,-3.111285799999962],[103.55917060000007,-3.096678099999963],[103.54794680000003,-3.100694199999964],[103.54009070000006,-3.099176099999966],[103.53008340000008,-3.085597],[103.52780950000005,-3.083977599999969],[103.518165,-3.082547699999964],[103.51213760000007,-3.078144699999939],[103.50710930000008,-3.069820599999957],[103.50264610000005,-3.057278699999927],[103.499861,-3.032335],[103.48590650000006,-3.037534099999959],[103.48153330000008,-3.0366095],[103.47619450000008,-3.022755699999948],[103.46082980000006,-2.992780899999957],[103.44558110000008,-2.967476199999965],[103.43850130000004,-2.947620399999948],[103.42638680000005,-2.9433231],[103.41108410000004,-2.924568199999953],[103.41768080000008,-2.902481],[103.43134490000006,-2.877111799999966],[103.35363240000004,-2.851103499999965],[103.34658190000005,-2.837799899999936],[103.33431720000004,-2.825725099999943],[103.33809580000008,-2.822877],[103.27119530000004,-2.753026099999943],[103.26329050000004,-2.757150899999942],[103.26312390000004,-2.755872799999963],[103.25183590000006,-2.757964099999981],[103.24614580000008,-2.762425099999973],[103.23592140000005,-2.761990199999957],[103.23571240000007,-2.764030199999979],[103.23319180000004,-2.757788],[103.22695780000004,-2.755556399999932],[103.21168160000008,-2.7572125],[103.19881640000006,-2.755859599999951],[103.17434710000003,-2.758092699999963],[103.15926450000006,-2.772820399999944],[103.15440490000009,-2.774536499999954],[103.15240940000007,-2.771660499999939],[103.14723730000009,-2.774423799999965],[103.14753960000007,-2.779893299999969],[103.14725650000008,-2.77826],[103.14354240000006,-2.7782541],[103.13269790000004,-2.770480299999974],[103.12898430000007,-2.7701871],[103.12068040000008,-2.781952399999966],[103.10103440000006,-2.782129099999963],[103.10175680000003,-2.823864599999979],[103.10032360000008,-2.826735099999951],[103.10054550000007,-2.842920799999945],[103.098346,-2.847258599999975],[103.09258810000006,-2.841418499999975],[103.08423230000005,-2.844781299999966],[103.07956050000007,-2.843267599999933],[103.07397340000006,-2.846361199999933],[103.07437810000005,-2.848597699999971],[103.06850780000008,-2.848229599999968],[103.06752440000008,-2.849270599999954],[103.063669,-2.848032099999955],[103.05477,-2.850572299999953],[103.04653820000004,-2.850450199999955],[103.04164380000009,-2.852729099999976],[103.03423490000006,-2.852866099999972],[103.02949070000005,-2.856997099999944],[103.025417,-2.856622499999958],[103.01698180000005,-2.851697699999932],[103.009704,-2.8545261],[103.00414070000005,-2.859080799999958],[102.99385510000008,-2.861469],[102.98153350000007,-2.868860499999926],[102.94925960000006,-2.878494899999964],[102.90383020000007,-2.883416],[102.91509430000008,-2.932406699999945],[102.87577260000006,-2.924033799999961],[102.87240430000008,-2.970855],[102.88105920000004,-2.981129399999929],[102.85942,-2.975230199999942],[102.85098450000004,-2.986351],[102.847185,-2.988037499999962],[102.84821110000007,-2.990405099999975],[102.83545540000006,-2.991250599999944],[102.82773160000005,-2.995509299999981],[102.82176050000004,-2.989323699999943],[102.81483250000008,-2.989309899999967],[102.81041520000008,-2.9936542],[102.81016940000006,-2.998481799999979],[102.80631050000005,-2.999107199999969],[102.80135340000004,-2.997751699999981],[102.79341310000007,-2.992195299999935],[102.76963150000006,-2.992362599999979],[102.75736950000004,-3.000499899999966],[102.75644280000006,-3.003912499999956],[102.74905190000004,-3.004151],[102.74255790000007,-3.007914199999959],[102.74241550000005,-3.0108179],[102.73763450000007,-3.01306],[102.73490820000006,-3.008026899999948],[102.73263560000004,-3.006692299999941],[102.73360180000009,-3.005642599999931],[102.73238590000005,-3.006551099999967],[102.72956050000005,-3.0039375],[102.72425990000005,-3.003780499999948],[102.71529990000005,-3.012955199999965],[102.70387050000005,-3.007397799999978],[102.69034930000004,-3.009216899999956],[102.68237480000005,-3.012640599999941],[102.68289910000004,-3.018093199999953],[102.67220370000007,-3.023965199999964],[102.67251820000007,-3.028893499999981],[102.65741880000007,-3.034450899999968],[102.64903020000008,-3.034975199999963],[102.64810240000008,-3.037997899999937],[102.64310310000008,-3.041025499999932],[102.63833480000005,-3.039903399999957],[102.63172880000008,-3.043049199999928],[102.62365480000005,-3.053010599999936],[102.61433380000005,-3.055776799999933],[102.61159630000009,-3.050598899999954],[102.60845060000008,-3.050389099999961],[102.60438450000004,-3.051929399999949],[102.60204390000007,-3.054717899999957],[102.586116,-3.058358299999952],[102.58401890000005,-3.063076799999976],[102.58422860000007,-3.069053699999927],[102.57961490000008,-3.072933399999954],[102.57267160000004,-3.071105],[102.55853860000008,-3.078595699999937],[102.55224720000007,-3.083838499999956],[102.54889180000004,-3.089815399999964],[102.54594590000005,-3.084772399999963],[102.54081780000007,-3.084048299999949],[102.53857320000009,-3.086247],[102.52802520000006,-3.088452299999972],[102.520387,-3.093128199999967],[102.52005940000004,-3.097224199999971],[102.50744370000007,-3.100664799999947],[102.50826290000003,-3.102139399999942],[102.49482810000006,-3.103122399999961],[102.48828030000004,-3.1078959],[102.486314,-3.107891199999926],[102.48800520000003,-3.108648699999947],[102.48581880000006,-3.115796599999953],[102.48832860000005,-3.1218828],[102.48914430000008,-3.130917899999929],[102.49218390000004,-3.133167199999946],[102.49253240000007,-3.135937399999932],[102.48883050000006,-3.143215699999928],[102.48901880000005,-3.156642899999952],[102.49382670000006,-3.164156],[102.49065010000004,-3.181364],[102.49230660000006,-3.190305299999977],[102.49036310000008,-3.196919899999955],[102.48697910000004,-3.201432199999942],[102.48745230000009,-3.204985199999953],[102.48901920000009,-3.207888199999957],[102.50269770000006,-3.210673499999928],[102.50573860000009,-3.215201599999943],[102.50412140000009,-3.219718299999954],[102.50026040000006,-3.222130599999957],[102.49494360000006,-3.228736899999944],[102.49469710000005,-3.232318799999973],[102.48977730000007,-3.239379799999938],[102.48944890000007,-3.242285],[102.49269350000009,-3.245828299999971],[102.49280020000003,-3.2511731],[102.49728750000008,-3.255382],[102.49807910000004,-3.260057499999959],[102.49807190000007,-3.262972199999979],[102.508338,-3.26881],[102.51153680000004,-3.274468799999966],[102.52052930000008,-3.275782899999967],[102.52453890000004,-3.278376099999946],[102.52837320000003,-3.2869427],[102.53142020000007,-3.289049199999965],[102.540138,-3.289452899999958],[102.54296340000008,-3.294103699999937],[102.54554160000004,-3.295219499999973],[102.55717620000007,-3.295525],[102.56037330000004,-3.293694099999925],[102.56062170000007,-3.303652599999964],[102.56485110000006,-3.309169299999951],[102.56895770000006,-3.310938799999974],[102.57011220000004,-3.3148487],[102.57873650000005,-3.319520199999943],[102.58430340000007,-3.3264597],[102.590824,-3.331154499999968],[102.59621390000007,-3.333448799999928],[102.60986940000004,-3.333643699999925],[102.61561930000005,-3.337741199999925],[102.628765,-3.341177799999969],[102.632981,-3.343387799999959],[102.63649310000005,-3.352761399999963],[102.64180240000007,-3.3497063],[102.650182,-3.339231099999949],[102.67042170000008,-3.329611599999964],[102.67525680000006,-3.322241],[102.68759320000004,-3.318737599999963],[102.696309,-3.319090399999936],[102.70111610000004,-3.317778799999928],[102.70591750000006,-3.318914399999926],[102.724875,-3.317040299999974],[102.72648050000004,-3.315553099999931],[102.74367580000006,-3.315784299999962],[102.74854670000008,-3.298339699999929],[102.75065410000008,-3.294891499999949],[102.75896380000006,-3.2882142],[102.76046320000006,-3.2836779],[102.75321680000008,-3.283361599999978],[102.75834920000005,-3.280616299999963],[102.76575380000008,-3.273793499999954],[102.76401030000005,-3.269209899999964],[102.76942050000008,-3.269523299999946],[102.77207720000007,-3.267872],[102.77472580000006,-3.269881599999962],[102.778596,-3.268489199999976],[102.77990020000004,-3.265483599999925],[102.77860270000008,-3.258151799999951],[102.78901550000006,-3.257438599999944],[102.78933490000009,-3.254915299999936],[102.79415280000006,-3.252769899999976],[102.79760230000005,-3.254355],[102.81602040000007,-3.2364167],[102.80780820000007,-3.231626499999948],[102.80856810000006,-3.2254402],[102.81174070000009,-3.221292399999925],[102.80861140000007,-3.205155899999966],[102.805699,-3.201483799999949],[102.80692250000004,-3.198309399999971],[102.81131060000007,-3.194652899999937],[102.81003030000005,-3.188985299999956],[102.81142710000006,-3.180873299999973],[102.81044920000005,-3.177308499999981],[102.81281920000004,-3.174938399999974],[102.81814210000005,-3.174158],[102.82504130000007,-3.173578799999973],[102.83213340000003,-3.174979299999961],[102.83221680000008,-3.164916],[102.83607990000007,-3.151316],[102.839667,-3.147472099999959],[102.84478380000007,-3.145685399999934],[102.85210860000007,-3.135689399999933],[102.86030020000004,-3.129259799999943],[102.86432480000008,-3.135610499999927],[102.86907980000007,-3.139155399999936],[102.88106080000006,-3.156668199999956],[102.88526190000005,-3.154148899999939],[102.90031770000007,-3.157993899999951],[102.91015390000007,-3.161417399999948],[102.92383840000008,-3.1696398],[102.92314250000004,-3.172267499999975],[102.91915940000007,-3.174376199999926],[102.91898440000006,-3.179293199999961],[102.91716110000004,-3.182936899999959],[102.91785560000005,-3.187109699999951],[102.91621020000008,-3.190554099999929],[102.92252290000005,-3.194217],[102.92853240000005,-3.195033099999932],[102.92767380000004,-3.199380299999973],[102.93532380000005,-3.206225699999948],[102.93696690000007,-3.212484699999948],[102.94090510000007,-3.2175497],[102.94758240000004,-3.217959],[102.94465510000003,-3.226497499999937],[102.94623890000008,-3.232681099999979],[102.95606170000008,-3.235434099999964],[102.95601480000005,-3.237840799999958],[102.95083070000004,-3.246652799999936],[102.94662670000008,-3.246464499999945],[102.94931340000005,-3.250593399999957],[102.94833290000008,-3.2534602],[102.94112820000004,-3.255151099999978],[102.93791260000006,-3.258369899999934],[102.93777840000007,-3.261208],[102.94051010000004,-3.262444499999958],[102.94988160000008,-3.262578899999937],[102.95629690000004,-3.259542599999975],[102.97037950000004,-3.260749799999928],[102.96596140000008,-3.3620911],[102.96820090000006,-3.363537599999972],[102.969021,-3.362141299999962],[102.97110440000006,-3.364535],[102.97732760000008,-3.365328899999952],[102.97883960000007,-3.364379799999938],[102.98313940000008,-3.367172499999981],[102.98546660000005,-3.366684899999939],[102.989434,-3.3697435],[102.99601670000004,-3.391203],[102.99930660000007,-3.39477],[102.99465230000004,-3.399761799999965],[102.99470460000003,-3.404041799999959],[102.99193020000007,-3.407687499999952],[102.99160230000007,-3.412085199999979],[103.01010930000007,-3.415636799999959],[103.01089320000006,-3.414773299999979],[103.02639420000008,-3.418587299999956],[103.04199720000008,-3.423455099999956],[103.04757720000003,-3.426514399999974],[103.05760020000008,-3.433695599999965],[103.10642430000007,-3.483837599999958],[103.11182610000009,-3.487589599999978],[103.13601470000003,-3.483098599999948],[103.16050480000007,-3.473029],[103.16748040000004,-3.4658942],[103.17604110000008,-3.463875599999938],[103.18612920000004,-3.476822199999958],[103.18794120000007,-3.476270599999964],[103.19014920000006,-3.481191699999954],[103.18917,-3.4820005],[103.19092110000008,-3.482582699999966],[103.19468090000004,-3.489778599999966]]]},"properties":{"shapeName":"Musi Rawas","shapeISO":"","shapeID":"22746128B2443673421306","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[102.486314,-3.107891199999926],[102.48828030000004,-3.1078959],[102.49482810000006,-3.103122399999961],[102.50826290000003,-3.102139399999942],[102.50744370000007,-3.100664799999947],[102.52005940000004,-3.097224199999971],[102.520387,-3.093128199999967],[102.52802520000006,-3.088452299999972],[102.53857320000009,-3.086247],[102.54081780000007,-3.084048299999949],[102.54594590000005,-3.084772399999963],[102.54889180000004,-3.089815399999964],[102.55224720000007,-3.083838499999956],[102.55853860000008,-3.078595699999937],[102.57267160000004,-3.071105],[102.57961490000008,-3.072933399999954],[102.58422860000007,-3.069053699999927],[102.58401890000005,-3.063076799999976],[102.586116,-3.058358299999952],[102.60204390000007,-3.054717899999957],[102.60438450000004,-3.051929399999949],[102.60845060000008,-3.050389099999961],[102.61159630000009,-3.050598899999954],[102.61433380000005,-3.055776799999933],[102.62365480000005,-3.053010599999936],[102.63172880000008,-3.043049199999928],[102.63833480000005,-3.039903399999957],[102.64310310000008,-3.041025499999932],[102.64810240000008,-3.037997899999937],[102.64903020000008,-3.034975199999963],[102.65741880000007,-3.034450899999968],[102.67251820000007,-3.028893499999981],[102.67220370000007,-3.023965199999964],[102.68289910000004,-3.018093199999953],[102.68237480000005,-3.012640599999941],[102.69034930000004,-3.009216899999956],[102.70387050000005,-3.007397799999978],[102.71529990000005,-3.012955199999965],[102.72425990000005,-3.003780499999948],[102.72956050000005,-3.0039375],[102.73238590000005,-3.006551099999967],[102.73360180000009,-3.005642599999931],[102.73263560000004,-3.006692299999941],[102.73490820000006,-3.008026899999948],[102.73763450000007,-3.01306],[102.74241550000005,-3.0108179],[102.74255790000007,-3.007914199999959],[102.74905190000004,-3.004151],[102.75644280000006,-3.003912499999956],[102.75736950000004,-3.000499899999966],[102.76963150000006,-2.992362599999979],[102.79341310000007,-2.992195299999935],[102.80135340000004,-2.997751699999981],[102.80631050000005,-2.999107199999969],[102.81016940000006,-2.998481799999979],[102.81041520000008,-2.9936542],[102.81483250000008,-2.989309899999967],[102.82176050000004,-2.989323699999943],[102.82773160000005,-2.995509299999981],[102.83545540000006,-2.991250599999944],[102.84821110000007,-2.990405099999975],[102.847185,-2.988037499999962],[102.85098450000004,-2.986351],[102.85942,-2.975230199999942],[102.88105920000004,-2.981129399999929],[102.87240430000008,-2.970855],[102.87577260000006,-2.924033799999961],[102.91509430000008,-2.932406699999945],[102.90383020000007,-2.883416],[102.94925960000006,-2.878494899999964],[102.98153350000007,-2.868860499999926],[102.99385510000008,-2.861469],[103.00414070000005,-2.859080799999958],[103.009704,-2.8545261],[103.01698180000005,-2.851697699999932],[103.025417,-2.856622499999958],[103.02949070000005,-2.856997099999944],[103.03423490000006,-2.852866099999972],[103.04164380000009,-2.852729099999976],[103.04653820000004,-2.850450199999955],[103.05477,-2.850572299999953],[103.063669,-2.848032099999955],[103.06752440000008,-2.849270599999954],[103.06850780000008,-2.848229599999968],[103.07437810000005,-2.848597699999971],[103.07397340000006,-2.846361199999933],[103.07956050000007,-2.843267599999933],[103.08423230000005,-2.844781299999966],[103.09258810000006,-2.841418499999975],[103.098346,-2.847258599999975],[103.10054550000007,-2.842920799999945],[103.10032360000008,-2.826735099999951],[103.10175680000003,-2.823864599999979],[103.10103440000006,-2.782129099999963],[103.12068040000008,-2.781952399999966],[103.12898430000007,-2.7701871],[103.13269790000004,-2.770480299999974],[103.14354240000006,-2.7782541],[103.14725650000008,-2.77826],[103.14753960000007,-2.779893299999969],[103.14723730000009,-2.774423799999965],[103.15240940000007,-2.771660499999939],[103.15440490000009,-2.774536499999954],[103.15926450000006,-2.772820399999944],[103.17434710000003,-2.758092699999963],[103.19881640000006,-2.755859599999951],[103.21168160000008,-2.7572125],[103.22695780000004,-2.755556399999932],[103.23319180000004,-2.757788],[103.23571240000007,-2.764030199999979],[103.23592140000005,-2.761990199999957],[103.24614580000008,-2.762425099999973],[103.25183590000006,-2.757964099999981],[103.26312390000004,-2.755872799999963],[103.26329050000004,-2.757150899999942],[103.27119530000004,-2.753026099999943],[103.30895710000004,-2.731244599999968],[103.34164730000003,-2.694617],[103.34345130000008,-2.668176699999947],[103.36644770000004,-2.605917199999965],[103.36654830000003,-2.586492199999952],[103.36542660000003,-2.584621099999936],[103.36636690000006,-2.584638599999948],[103.35036050000008,-2.559126],[103.34318420000005,-2.544541599999945],[103.33411190000004,-2.532143899999937],[103.323938,-2.537007299999971],[103.31308160000003,-2.528502],[103.31204160000004,-2.526008799999943],[103.30852060000007,-2.526135299999964],[103.30734970000003,-2.524035399999946],[103.30455110000008,-2.524119599999949],[103.29980510000007,-2.520839],[103.29575620000008,-2.514708499999927],[103.28520810000003,-2.503809199999978],[103.27569580000005,-2.498681899999951],[103.27233190000004,-2.478349399999956],[103.274294,-2.473630699999944],[103.27927420000003,-2.469359399999973],[103.27361030000009,-2.465860199999952],[103.26491470000008,-2.466667499999971],[103.25760080000003,-2.475838199999941],[103.24912110000008,-2.478974499999936],[103.24415480000005,-2.487623599999949],[103.24413790000006,-2.500344699999971],[103.24073530000004,-2.509651499999961],[103.24098960000003,-2.514504299999942],[103.23686920000006,-2.5172968],[103.22833470000006,-2.519339399999978],[103.226897,-2.521829199999956],[103.22259170000007,-2.5235282],[103.22437020000007,-2.531879899999979],[103.22127220000004,-2.534936],[103.21697990000007,-2.535199499999976],[103.21562510000007,-2.538402699999949],[103.21326620000008,-2.531358099999977],[103.205492,-2.530504399999927],[103.20075580000008,-2.527747499999975],[103.19721410000005,-2.517820799999924],[103.19284590000007,-2.512976599999945],[103.18747010000004,-2.511410599999977],[103.18711170000006,-2.506917899999962],[103.18529180000007,-2.5046235],[103.17982180000007,-2.505349299999978],[103.17572340000004,-2.50296],[103.17361840000007,-2.509099299999946],[103.17152290000007,-2.510693799999956],[103.16235880000005,-2.509144299999946],[103.15866420000003,-2.503811699999972],[103.16015930000003,-2.492938099999947],[103.15688690000007,-2.4802898],[103.15744440000009,-2.472589899999946],[103.15521,-2.467829],[103.15063240000006,-2.4648673],[103.13795380000005,-2.462020099999961],[103.13349340000008,-2.457888499999967],[103.125195,-2.460902],[103.11533850000006,-2.466894199999956],[103.10535210000006,-2.458080299999949],[103.09987990000008,-2.456140699999935],[103.08615210000005,-2.447510399999942],[103.06806710000006,-2.441344199999946],[103.06300110000006,-2.432795799999951],[103.06223490000008,-2.426707399999941],[103.05877330000004,-2.4238168],[103.05871520000005,-2.4205204],[103.050686,-2.4166131],[103.05002390000004,-2.409306599999979],[103.05487310000007,-2.40536],[103.05314980000009,-2.402314],[103.04482540000004,-2.402733799999965],[103.03516670000005,-2.396863899999971],[103.02488680000005,-2.405053399999929],[103.02152620000004,-2.404869499999961],[103.01820050000003,-2.402242399999977],[103.01404820000005,-2.390188899999941],[103.01461030000007,-2.3650093],[103.006209,-2.346135799999956],[103.00396230000007,-2.336098899999968],[103.00006080000009,-2.340403599999945],[102.98901810000007,-2.340126199999929],[102.96805480000006,-2.329463099999941],[102.95972890000007,-2.329639],[102.951541,-2.326368399999978],[102.94402560000003,-2.3266288],[102.93475270000005,-2.322015599999929],[102.92641170000007,-2.3240325],[102.92305030000006,-2.323486399999979],[102.91700220000007,-2.316600899999969],[102.91243760000003,-2.315624599999978],[102.90894680000008,-2.3116964],[102.90499760000006,-2.311810899999955],[102.89737630000008,-2.3150611],[102.89199830000007,-2.314241399999958],[102.88541790000005,-2.308008899999948],[102.87694350000004,-2.304507599999965],[102.87430520000004,-2.313445299999955],[102.86667990000007,-2.317966699999943],[102.86438310000005,-2.324608399999931],[102.86079420000004,-2.327412399999957],[102.85863610000007,-2.331827399999952],[102.85192690000008,-2.335522199999957],[102.84431,-2.334937699999955],[102.84064170000005,-2.337853099999961],[102.84047020000008,-2.340051],[102.845039,-2.347583],[102.84112770000007,-2.353255499999932],[102.83960080000008,-2.358818499999927],[102.84218610000005,-2.370491399999935],[102.84714140000006,-2.3743866],[102.84779860000003,-2.384194799999932],[102.84984,-2.385955199999955],[102.86410020000005,-2.387264],[102.87188970000005,-2.385087699999929],[102.86946740000008,-2.395219699999927],[102.87254540000004,-2.404045399999973],[102.87550640000006,-2.406636299999946],[102.87538310000008,-2.409802899999931],[102.86829190000009,-2.414138699999967],[102.86205850000005,-2.423250899999971],[102.85210620000004,-2.433244299999956],[102.84513390000006,-2.437731],[102.84453910000008,-2.444841599999961],[102.84124910000008,-2.450229],[102.83498050000009,-2.455757499999947],[102.82595050000003,-2.458988699999964],[102.82516920000006,-2.465363099999934],[102.81546950000006,-2.473973],[102.81028650000007,-2.483860499999935],[102.79354570000004,-2.504700299999968],[102.798072,-2.519948799999952],[102.79624280000007,-2.533209899999974],[102.783746,-2.536820299999931],[102.78055720000003,-2.541049],[102.77356220000007,-2.543010699999968],[102.75988140000004,-2.549934599999972],[102.75554760000006,-2.557506299999943],[102.74999750000006,-2.561479399999939],[102.74492170000008,-2.562578499999972],[102.74024410000004,-2.57007],[102.73870030000006,-2.579245],[102.72830720000007,-2.586109499999964],[102.72239920000004,-2.584579699999949],[102.71592530000004,-2.570368599999938],[102.71216880000009,-2.573346099999981],[102.71247290000008,-2.577386899999965],[102.71013490000007,-2.579290399999934],[102.70967070000006,-2.583251699999948],[102.70654210000004,-2.586640699999975],[102.70397040000006,-2.5878383],[102.70141810000007,-2.583486899999969],[102.69684150000006,-2.584092599999963],[102.692799,-2.589243899999929],[102.68460420000008,-2.592667899999981],[102.67754890000003,-2.603739499999961],[102.66881270000005,-2.606517599999961],[102.666167,-2.609737099999961],[102.64893570000004,-2.611401099999966],[102.64424150000008,-2.609542099999942],[102.64057230000009,-2.611009],[102.62442330000005,-2.638276499999961],[102.61647840000006,-2.6606252],[102.60827060000008,-2.670503799999949],[102.598583,-2.677141199999937],[102.590528,-2.679634399999941],[102.57228160000005,-2.674078099999974],[102.56512480000004,-2.676722199999972],[102.54797910000008,-2.677411699999936],[102.53785330000005,-2.679465299999947],[102.525612,-2.679254],[102.51885550000009,-2.676519499999927],[102.514797,-2.6845306],[102.50601510000007,-2.695386799999937],[102.49526190000006,-2.698784199999977],[102.48986070000007,-2.705254899999943],[102.48773460000007,-2.705860599999937],[102.47985240000008,-2.701039899999955],[102.47142280000008,-2.704072599999961],[102.46823670000003,-2.703532099999961],[102.46120390000004,-2.700225599999953],[102.44950210000007,-2.698888099999976],[102.438593,-2.690987599999971],[102.42078120000008,-2.691979699999933],[102.41178850000006,-2.687700699999937],[102.40624970000005,-2.689111399999945],[102.38972940000008,-2.675932199999977],[102.38873180000007,-2.669170299999962],[102.39234460000006,-2.659162299999934],[102.39234920000007,-2.653440199999977],[102.38721960000004,-2.646964],[102.369415,-2.651288099999931],[102.36021840000006,-2.650610799999924],[102.35314810000006,-2.646244799999977],[102.34315940000005,-2.650081599999965],[102.33717750000005,-2.654396299999974],[102.32776790000008,-2.654985799999963],[102.32473510000005,-2.653988],[102.29630760000003,-2.632532399999945],[102.28066650000005,-2.614437099999975],[102.27651380000003,-2.613906199999974],[102.259226,-2.621113499999979],[102.25096810000008,-2.631152799999938],[102.249664,-2.639553799999931],[102.25073230000004,-2.641931399999976],[102.24698390000003,-2.639676099999974],[102.24550830000004,-2.642627499999946],[102.24765940000003,-2.647602099999972],[102.24518560000007,-2.649796699999968],[102.24170790000005,-2.661511599999926],[102.24339660000004,-2.667442],[102.24251820000006,-2.669843399999934],[102.236706,-2.674233199999946],[102.23628010000004,-2.688439499999959],[102.23452860000003,-2.691354599999954],[102.22194690000003,-2.697996599999954],[102.21187990000004,-2.698669499999937],[102.20501540000004,-2.702993599999957],[102.19027280000006,-2.707650599999965],[102.18624990000006,-2.708471599999939],[102.17901440000009,-2.706245399999943],[102.17463630000003,-2.707097399999952],[102.16557820000008,-2.714092599999958],[102.14476250000007,-2.721429399999977],[102.13381520000007,-2.727902899999947],[102.12571150000008,-2.729322299999978],[102.12293070000004,-2.733785499999954],[102.11616850000007,-2.735837199999935],[102.11106720000004,-2.741203599999949],[102.110264,-2.745341199999928],[102.105963,-2.748006399999952],[102.10348910000005,-2.755009499999971],[102.10005440000003,-2.757657699999925],[102.09847030000009,-2.765041799999949],[102.09670240000008,-2.767105499999957],[102.09148030000006,-2.769887799999935],[102.086682,-2.770068],[102.07521160000005,-2.765643699999941],[102.069387,-2.765178599999956],[102.06802240000007,-2.767906099999948],[102.07230330000004,-2.793385699999931],[102.08086640000005,-2.802049599999975],[102.08728970000004,-2.8040047],[102.092531,-2.810063899999932],[102.10077290000004,-2.810502099999951],[102.114258,-2.816353099999958],[102.12065450000006,-2.829296699999929],[102.13027970000007,-2.836430899999925],[102.13022850000004,-2.857115199999953],[102.13470440000003,-2.866822299999967],[102.133167,-2.876080699999932],[102.13789470000006,-2.876526199999944],[102.13919050000004,-2.8782725],[102.14816960000007,-2.881076899999925],[102.14880760000005,-2.883017699999925],[102.15522690000006,-2.886912199999927],[102.16358510000003,-2.895780399999978],[102.17051860000004,-2.896508299999937],[102.18219370000008,-2.901200899999935],[102.19372480000004,-2.918036699999959],[102.198271,-2.918962699999952],[102.20155320000003,-2.916610299999945],[102.20639920000008,-2.917687199999932],[102.20980150000008,-2.916784099999973],[102.21236370000008,-2.920669099999941],[102.22522770000006,-2.928455099999951],[102.22447720000008,-2.9381733],[102.22283540000006,-2.9414541],[102.22445690000006,-2.946385599999928],[102.22853890000005,-2.947217],[102.23095070000005,-2.962826499999949],[102.23420380000005,-2.968583399999943],[102.23739940000007,-2.997334799999976],[102.24185780000005,-3.0038529],[102.24430960000007,-3.010436],[102.24380580000008,-3.013912299999959],[102.24625770000006,-3.024878499999943],[102.25690560000004,-3.036804299999972],[102.26588750000008,-3.038469699999951],[102.26751510000008,-3.0409376],[102.27405260000006,-3.040133],[102.27324190000007,-3.037667099999965],[102.28362590000006,-3.038032],[102.29185180000007,-3.042847399999971],[102.29593310000007,-3.048036799999977],[102.307571,-3.056651899999963],[102.31403240000009,-3.065746499999932],[102.31482820000008,-3.068981],[102.320545,-3.069816699999933],[102.33954740000007,-3.062295399999925],[102.34915990000007,-3.061675299999933],[102.35234780000008,-3.0584863],[102.36413380000005,-3.055141799999944],[102.370418,-3.0551572],[102.37433840000006,-3.049556199999927],[102.38991790000006,-3.044271299999934],[102.40322010000006,-3.052585199999953],[102.41031210000006,-3.054157499999974],[102.43556130000007,-3.055170399999952],[102.44525210000006,-3.06238],[102.45225470000008,-3.070441799999969],[102.46746110000004,-3.080081399999926],[102.476493,-3.096704099999954],[102.486314,-3.107891199999926]]]},"properties":{"shapeName":"Musi Rawas Utara","shapeISO":"","shapeID":"22746128B48872732539323","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[135.08056640000007,-3.2179732],[135.082428,-3.2144532],[135.0800934,-3.216293099999973],[135.08056640000007,-3.2179732]]],[[[134.89352420000012,-3.166425699999934],[134.89639280000006,-3.163985499999967],[134.8936768000001,-3.162245499999926],[134.8921051000001,-3.163535599999932],[134.89352420000012,-3.166425699999934]]],[[[135.6586304000001,-3.152136299999938],[135.65403750000007,-3.154996399999959],[135.6592865,-3.153976399999976],[135.66032410000003,-3.152596499999959],[135.6586304000001,-3.152136299999938]]],[[[135.157135,-3.1027763],[135.15803530000005,-3.101906299999939],[135.15673830000003,-3.101826199999948],[135.157135,-3.1027763]]],[[[135.60658260000002,-3.097184899999945],[135.6065063000001,-3.095554799999945],[135.60452270000008,-3.0955949],[135.60658260000002,-3.097184899999945]]],[[[135.58943180000006,-3.101535099999978],[135.58970640000007,-3.097455],[135.5874176000001,-3.094435],[135.58062740000003,-3.101185099999952],[135.58485410000003,-3.105405099999928],[135.5874176000001,-3.104754899999932],[135.58943180000006,-3.101535099999978]]],[[[135.60162350000007,-3.095714799999939],[135.59924320000005,-3.094234699999959],[135.59568780000006,-3.096134899999925],[135.59513860000004,-3.098774899999967],[135.59637450000002,-3.100445],[135.598587,-3.100405],[135.6027832000001,-3.097414699999945],[135.60162350000007,-3.095714799999939]]],[[[134.83100890000003,-3.095031699999936],[134.8290253,-3.094031799999925],[134.82971190000012,-3.099661799999978],[134.8311920000001,-3.097201799999937],[134.83782960000008,-3.095531899999969],[134.8367767000001,-3.094151699999941],[134.83100890000003,-3.095031699999936]]],[[[135.561676,-3.090785],[135.56260680000003,-3.088805],[135.56137090000004,-3.088035099999956],[135.56036380000012,-3.0891149],[135.561676,-3.090785]]],[[[135.5839539000001,-3.090635099999929],[135.5833282000001,-3.086635099999967],[135.593399,-3.078685],[135.59262080000008,-3.073364699999956],[135.59098820000008,-3.071975],[135.5863342,-3.074765],[135.58404540000004,-3.079035],[135.5760345000001,-3.083065],[135.5719299000001,-3.089895],[135.5806427000001,-3.092885],[135.5839539000001,-3.090635099999929]]],[[[135.61297610000008,-3.070074799999929],[135.6094971000001,-3.070494899999971],[135.61526490000006,-3.0749247],[135.61740110000005,-3.081944699999951],[135.61276240000007,-3.095754899999974],[135.6195984000001,-3.097264799999948],[135.6210632000001,-3.096444899999938],[135.62002560000008,-3.094004899999959],[135.62173460000008,-3.093924799999968],[135.62141420000012,-3.091674799999964],[135.625061,-3.087644799999964],[135.62597660000006,-3.077944799999955],[135.61941530000001,-3.075264699999934],[135.61526490000006,-3.070764799999949],[135.61297610000008,-3.070074799999929]]],[[[134.84246830000006,-3.05916],[134.84277340000006,-3.05391],[134.8388672000001,-3.059750099999974],[134.83601380000005,-3.060560199999941],[134.8354187000001,-3.06321],[134.83853150000004,-3.063150199999939],[134.84246830000006,-3.05916]]],[[[135.79876710000008,-3.032822099999976],[135.78529360000005,-3.036622099999931],[135.7770233000001,-3.043022399999927],[135.7727814000001,-3.043302299999937],[135.77005,-3.045372199999974],[135.77047730000004,-3.052972299999965],[135.77311710000004,-3.054702299999974],[135.77307130000008,-3.057682299999954],[135.7793732,-3.057632199999944],[135.7800903000001,-3.056092299999932],[135.7836456000001,-3.054122199999938],[135.78634640000007,-3.051042299999949],[135.7968903000001,-3.045232099999964],[135.7966156000001,-3.0437422],[135.79290770000011,-3.044462],[135.79190060000008,-3.046282099999928],[135.78901670000005,-3.047052099999974],[135.79026790000012,-3.043832099999975],[135.79377750000003,-3.041332],[135.79219050000006,-3.038832199999945],[135.7995453000001,-3.033692099999939],[135.79876710000008,-3.032822099999976]]],[[[134.83468630000004,-3.02109],[134.83247370000004,-3.021530199999972],[134.83049010000002,-3.025250199999959],[134.82856750000008,-3.02564],[134.8357086000001,-3.029310199999941],[134.83694460000004,-3.031520099999966],[134.8338318000001,-3.03476],[134.8345184000001,-3.037090099999944],[134.83134460000008,-3.041570199999967],[134.8400574000001,-3.041910199999961],[134.83847050000008,-3.045050099999969],[134.8352966000001,-3.046070099999952],[134.83457950000002,-3.04864],[134.83560180000006,-3.049840199999949],[134.83937070000002,-3.048450199999934],[134.84114080000006,-3.04918],[134.84158330000002,-3.046260099999927],[134.84384160000002,-3.046140199999968],[134.84446720000005,-3.044460099999981],[134.84394840000004,-3.040260099999955],[134.840744,-3.036950099999956],[134.84072880000008,-3.033250099999975],[134.8356781000001,-3.027440099999978],[134.83468630000004,-3.02109]]],[[[134.85729980000008,-2.993015799999966],[134.8588257,-2.989205799999979],[134.85774230000004,-2.988115799999946],[134.8562012000001,-2.991425799999945],[134.85729980000008,-2.993015799999966]]],[[[135.87649540000007,-2.988403099999971],[135.874176,-2.987493299999926],[135.87455750000004,-2.989643099999967],[135.87882990000003,-2.991403099999957],[135.87649540000007,-2.988403099999971]]],[[[135.8875885000001,-2.983403199999941],[135.88368230000003,-2.983923199999936],[135.892395,-2.989063299999941],[135.89154050000002,-2.984453199999962],[135.8875885000001,-2.983403199999941]]],[[[135.89111330000003,-2.978363299999955],[135.8890686000001,-2.976123099999938],[135.88768,-2.978213099999948],[135.88935850000007,-2.982023199999958],[135.89244080000003,-2.983973299999946],[135.89340210000012,-2.982973099999981],[135.89111330000003,-2.978363299999955]]],[[[135.9087677000001,-2.973263299999928],[135.90629580000007,-2.971033099999943],[135.9008179000001,-2.974743099999955],[135.90481570000009,-2.977363099999934],[135.90858460000004,-2.9752631],[135.9087677000001,-2.973263299999928]]],[[[135.7718506000001,-2.935894299999973],[135.76905820000002,-2.9339044],[135.76725770000007,-2.937304299999937],[135.7632599000001,-2.938514199999929],[135.7554321,-2.936284299999954],[135.75297550000005,-2.939574499999935],[135.74649050000005,-2.9417946],[135.74244690000012,-2.941044599999941],[135.74177550000002,-2.937864499999932],[135.7403412000001,-2.937184599999966],[135.73039240000003,-2.941194499999938],[135.72410580000007,-2.949504599999955],[135.72348020000004,-2.9542346],[135.72560120000003,-2.959384399999976],[135.72213750000003,-2.9552846],[135.7163544000001,-2.954424599999925],[135.71258540000008,-2.956534599999941],[135.7080231000001,-2.962464599999976],[135.70758060000003,-2.966584499999954],[135.70982360000005,-2.9728646],[135.71499630000005,-2.975504599999965],[135.71801760000005,-2.975204499999961],[135.72123720000002,-2.978224499999953],[135.72172550000005,-2.981324399999949],[135.7314606000001,-2.982724399999938],[135.73895260000006,-2.976904599999955],[135.74137880000012,-2.973014599999942],[135.74096680000002,-2.969004599999948],[135.74494930000003,-2.967754599999978],[135.7497406000001,-2.968404499999963],[135.75672910000003,-2.965264599999955],[135.75434870000004,-2.962394499999959],[135.74598690000005,-2.962594499999966],[135.74494930000003,-2.960464499999944],[135.7548065000001,-2.9583147],[135.75685120000003,-2.959744399999977],[135.76240540000003,-2.959294299999954],[135.7661438,-2.956124299999942],[135.77127070000006,-2.959444299999973],[135.77986140000007,-2.953704399999936],[135.7788849000001,-2.950794199999962],[135.78233340000008,-2.945764299999951],[135.79287720000002,-2.9438744],[135.7952576,-2.946104299999945],[135.7900085000001,-2.950264199999935],[135.7949982,-2.950334299999952],[135.79945370000007,-2.948484199999939],[135.79975890000003,-2.945544199999972],[135.80410770000003,-2.944824199999971],[135.8068237000001,-2.942364199999929],[135.80213930000002,-2.937074199999927],[135.7930298000001,-2.941344299999969],[135.78913880000005,-2.941154199999971],[135.7801971,-2.936624299999949],[135.77513120000003,-2.937414399999966],[135.7718506000001,-2.935894299999973]]],[[[135.73033140000007,-2.934404599999937],[135.72810360000005,-2.933194599999979],[135.7266846000001,-2.935384499999941],[135.7274933000001,-2.9400945],[135.7319794000001,-2.937784399999941],[135.73353580000003,-2.935234499999979],[135.73033140000007,-2.934404599999937]]],[[[135.72996520000004,-2.911754599999938],[135.72085570000002,-2.912914499999943],[135.68908690000012,-2.926044499999932],[135.6841736,-2.928984599999978],[135.67443850000006,-2.938364499999977],[135.67274470000007,-2.942834599999969],[135.67779540000004,-2.944394599999953],[135.68243410000002,-2.944034599999952],[135.7175751000001,-2.929654599999935],[135.733139,-2.920904599999972],[135.73733520000008,-2.914074399999947],[135.72996520000004,-2.911754599999938]]],[[[134.82446290000007,-2.879913299999942],[134.82452390000003,-2.878513299999952],[134.82264710000004,-2.879913299999942],[134.82446290000007,-2.879913299999942]]],[[[135.90895080000007,-2.880661499999974],[135.905777,-2.876391599999977],[135.90101620000007,-2.878561499999932],[135.9063721000001,-2.889611499999944],[135.90817260000006,-2.887731599999938],[135.90895080000007,-2.880661499999974]]],[[[134.82289120000007,-2.683522899999957],[134.8183136,-2.6820929],[134.80822750000004,-2.684953],[134.80734250000012,-2.686263099999962],[134.80715940000005,-2.698513],[134.80213930000002,-2.707973],[134.80540470000005,-2.712673],[134.8176575000001,-2.718733099999952],[134.83726500000012,-2.724803],[134.84274290000008,-2.723202899999933],[134.86293030000002,-2.708743099999936],[134.8637695000001,-2.7043431],[134.85214230000008,-2.6947031],[134.8501129000001,-2.689773099999968],[134.84553530000005,-2.687983],[134.83735660000002,-2.688222899999971],[134.8343201,-2.685843],[134.82289120000007,-2.683522899999957]]],[[[136.05645390000007,-3.7226889],[136.0322099000001,-3.710905599999933],[136.0157283000001,-3.691303299999959],[136.01107790000003,-3.677013899999963],[136.012636,-3.669711399999926],[136.0097588000001,-3.665504],[136.01176070000008,-3.659621099999924],[136.0034766000001,-3.643353199999979],[136.00085860000002,-3.628935899999931],[135.98499290000007,-3.617597799999942],[135.98394970000004,-3.613893599999926],[135.97837830000003,-3.606059799999969],[135.97776950000002,-3.602135099999941],[135.97468820000006,-3.599555899999928],[135.973021,-3.591021199999943],[135.96063990000005,-3.570899299999951],[135.96063990000005,-3.564847899999961],[135.96265710000011,-3.559805099999949],[135.97223850000012,-3.550223699999947],[136.00148690000003,-3.535095199999944],[136.18454210000004,-3.451888299999951],[136.2995188000001,-3.402468399999975],[136.34443690000012,-3.377364],[136.39202610000007,-3.352162799999974],[136.39435930000002,-3.313232699999958],[136.39113980000002,-3.3077883],[136.3939259000001,-3.300289599999928],[136.39377790000003,-3.292333099999951],[136.391178,-3.279180599999961],[136.3849080000001,-3.271748699999932],[136.38403860000005,-3.267410799999936],[136.38092660000007,-3.265656499999977],[136.38008250000007,-3.257109899999932],[136.37746320000008,-3.250445599999978],[136.37712080000006,-3.244645199999979],[136.3791351000001,-3.235586599999976],[136.3746033000001,-3.224690399999929],[136.36425780000002,-3.207147599999928],[136.3561859,-3.2007773],[136.35762770000008,-3.194106799999929],[136.35603750000007,-3.186533899999972],[136.3520092000001,-3.183478599999944],[136.3508839000001,-3.180692499999964],[136.3479043000001,-3.180491399999937],[136.34465290000003,-3.177389299999959],[136.33059690000005,-3.173599199999956],[136.32391180000002,-3.16886],[136.3208314000001,-3.164176199999929],[136.32028960000002,-3.157783699999925],[136.323482,-3.150887],[136.32019250000008,-3.1432024],[136.31586590000006,-3.138516699999968],[136.31440730000008,-3.132705899999962],[136.31901930000004,-3.132517499999949],[136.320816,-3.129650699999956],[136.3202765000001,-3.123755299999971],[136.3358521,-3.098519799999963],[136.3364544000001,-3.087972899999954],[136.330344,-3.079691299999979],[136.3331015000001,-3.075663199999951],[136.32936410000002,-3.066750399999933],[136.33193970000002,-3.058574299999975],[136.33550360000004,-3.052739299999928],[136.33380680000005,-3.051460599999928],[136.32543410000005,-3.054822],[136.32505560000004,-3.053198499999951],[136.3312221000001,-3.048233099999948],[136.32880310000007,-3.047202899999945],[136.3272624000001,-3.044231499999967],[136.32662960000005,-3.041210899999953],[136.32789660000003,-3.038776199999973],[136.32592710000006,-3.0353287],[136.32906990000004,-3.034410499999979],[136.32963560000007,-3.032334599999956],[136.3286518000001,-3.030658199999948],[136.32567960000006,-3.03252],[136.3238113000001,-3.031858799999952],[136.3225708000001,-3.018930299999965],[136.31818580000004,-3.0127917],[136.31277580000005,-3.011360899999943],[136.3065338,-3.003746699999965],[136.31084160000012,-3.002694],[136.311003,-3.001143199999944],[136.3069475000001,-2.9989612],[136.30602290000002,-2.988432499999931],[136.30316,-2.990635299999951],[136.2974603,-2.985099799999944],[136.29937860000007,-2.981458799999928],[136.2971437000001,-2.973884799999951],[136.3002888000001,-2.969561799999951],[136.3054657,-2.952429299999949],[136.30924990000005,-2.953054899999927],[136.30800030000012,-2.949243399999943],[136.31430650000004,-2.946785499999976],[136.31279160000008,-2.94311],[136.31640270000003,-2.943302199999948],[136.31875,-2.940744],[136.32213930000012,-2.941451699999959],[136.32038190000003,-2.939891499999931],[136.31976380000003,-2.936196699999925],[136.317347,-2.936444499999936],[136.3141363000001,-2.933821399999943],[136.31186130000003,-2.9337879],[136.309073,-2.936543599999936],[136.30826330000002,-2.933924499999932],[136.31197870000005,-2.930621199999962],[136.30961460000003,-2.9318406],[136.305014,-2.930133599999976],[136.3059071,-2.935321099999953],[136.303646,-2.935089499999947],[136.30090330000007,-2.929630299999928],[136.30519090000007,-2.928377299999966],[136.30628860000002,-2.9270505],[136.3046197000001,-2.923091899999974],[136.30886870000006,-2.923072599999955],[136.31007540000007,-2.920551899999964],[136.3041687000001,-2.9184725],[136.30273410000007,-2.922780499999931],[136.30050660000006,-2.921774899999946],[136.2999106000001,-2.918549199999973],[136.29715680000004,-2.920514499999967],[136.2960968000001,-2.919756199999938],[136.29666940000004,-2.916229699999974],[136.299919,-2.914183299999934],[136.3002444000001,-2.912221799999941],[136.29745480000008,-2.9098771],[136.29470820000006,-2.910263099999952],[136.29495240000006,-2.914950799999929],[136.2934418000001,-2.915587399999936],[136.2885132,-2.909261899999933],[136.28952020000008,-2.906598799999927],[136.29406740000002,-2.906589499999939],[136.29707340000004,-2.903668899999957],[136.29618830000004,-2.900756399999977],[136.29304500000012,-2.901396299999931],[136.28762820000009,-2.898999699999933],[136.29165650000004,-2.893923],[136.2935486,-2.893412399999931],[136.29051210000011,-2.890884199999959],[136.28976440000008,-2.888224599999944],[136.29125980000003,-2.884800199999972],[136.29566950000003,-2.883397299999956],[136.29449880000004,-2.879817],[136.28692420000004,-2.879234299999951],[136.28386520000004,-2.880545299999937],[136.28299120000008,-2.8838956],[136.28095180000003,-2.885352299999965],[136.2786212000001,-2.883604299999945],[136.27818420000006,-2.880691],[136.28444780000007,-2.874864299999956],[136.28386520000004,-2.871222599999953],[136.28095180000003,-2.869766],[136.2784755,-2.870931299999938],[136.2774558000001,-2.876029599999924],[136.27221180000004,-2.8830216],[136.27221180000004,-2.886226299999976],[136.26958980000006,-2.887246],[136.2660939000001,-2.886372],[136.26420020000012,-2.880836599999952],[136.26565690000007,-2.878943],[136.27206620000004,-2.879234299999951],[136.27323150000007,-2.875738299999966],[136.27177480000012,-2.873844599999927],[136.26565690000007,-2.871514],[136.26070420000008,-2.866124299999967],[136.2631805000001,-2.860880299999963],[136.26099550000004,-2.854471],[136.2618695000001,-2.852140299999974],[136.26580250000006,-2.851266299999963],[136.2662395000001,-2.8498097],[136.2611412000001,-2.84879],[136.25589720000005,-2.854471],[136.2531295000001,-2.855199299999924],[136.25079890000006,-2.854908],[136.2480312,-2.850683699999934],[136.24409820000005,-2.849955299999976],[136.2424959000001,-2.8517033],[136.24278720000007,-2.854179699999975],[136.24482650000004,-2.856510299999968],[136.25109020000002,-2.859132299999942],[136.2512359000001,-2.862774],[136.2486139,-2.863211],[136.2401652000001,-2.858986699999946],[136.23929120000003,-2.853597],[136.2443895,-2.844711299999972],[136.24599190000004,-2.843254699999932],[136.25109020000002,-2.844711299999972],[136.2531295000001,-2.843691699999965],[136.25327520000008,-2.841798],[136.2524012,-2.840487],[136.24351550000006,-2.840632699999958],[136.2394369000001,-2.835097299999973],[136.23768890000008,-2.835243],[136.2352125000001,-2.840632699999958],[136.2320079000001,-2.842089299999941],[136.2293859,-2.841361],[136.2283662000001,-2.836845299999936],[136.23404720000008,-2.833640699999933],[136.23462990000007,-2.831601399999954],[136.23288190000005,-2.829707699999972],[136.22880320000002,-2.828688],[136.22501590000002,-2.832621],[136.22166560000005,-2.832912299999975],[136.22210260000008,-2.8281054],[136.22909460000005,-2.8222787],[136.2282206000001,-2.821113399999945],[136.22370490000003,-2.820967699999926],[136.2181696,-2.816597699999932],[136.2158389000001,-2.8100427],[136.21831520000012,-2.807129399999951],[136.21729560000006,-2.805964],[136.2103036000001,-2.806692399999974],[136.2065162,-2.805235699999969],[136.20302020000008,-2.80946],[136.2015636000001,-2.805964],[136.20491390000007,-2.8014484],[136.20433120000007,-2.800428699999941],[136.1966109000001,-2.801011399999936],[136.18932760000007,-2.797661],[136.18714260000002,-2.800137399999926],[136.18889060000004,-2.807712],[136.18801660000008,-2.809751399999925],[136.18248130000006,-2.809605699999963],[136.17883960000006,-2.804653],[136.17883960000006,-2.8014484],[136.1797136,-2.799554699999931],[136.18437490000008,-2.797661],[136.18277260000002,-2.793728099999953],[136.1779656000001,-2.791980099999932],[136.17461530000003,-2.79635],[136.16835160000005,-2.796932699999957],[136.16281630000003,-2.799554699999931],[136.16135960000008,-2.795184699999936],[136.1636903000001,-2.789649399999973],[136.16048560000002,-2.787755699999934],[136.1564069000001,-2.790232099999969],[136.15596990000006,-2.794019399999968],[136.15422190000004,-2.794019399999968],[136.15145430000007,-2.792708399999981],[136.149415,-2.7900864],[136.14839530000006,-2.784988099999964],[136.145919,-2.7833857],[136.14344260000007,-2.7833857],[136.14227730000005,-2.785716399999956],[136.14213160000008,-2.789795099999935],[136.145482,-2.796641399999942],[136.14431660000002,-2.797661],[136.13790730000005,-2.786590399999966],[136.142423,-2.7814921],[136.14650160000008,-2.779161399999964],[136.14606460000005,-2.7747914],[136.140238,-2.771441099999947],[136.137616,-2.771732399999962],[136.133683,-2.775374099999965],[136.13004130000002,-2.772169399999939],[136.12989560000005,-2.766342699999939],[136.13528530000008,-2.760516099999961],[136.13557660000004,-2.7520674],[136.12785630000008,-2.754252399999928],[136.118825,-2.753524099999936],[136.1140180000001,-2.759787699999947],[136.107463,-2.754252399999928],[136.10105370000008,-2.753378399999974],[136.09814030000007,-2.754689399999961],[136.09516330000008,-2.760720899999967],[136.09048470000005,-2.764037],[136.07499210000003,-2.766817699999933],[136.05623750000007,-2.766548199999932],[136.0513562000001,-2.763782099999958],[136.04761380000002,-2.757599],[136.0437280000001,-2.746001799999931],[136.0439196000001,-2.742644599999949],[136.03998710000008,-2.745042599999977],[136.03221760000008,-2.7436038],[136.02766140000006,-2.746337599999947],[136.02406440000004,-2.744131399999958],[136.0183092000001,-2.746721199999968],[136.01811730000009,-2.744467099999952],[136.0207551000001,-2.741014],[136.01471220000008,-2.727873],[136.0184895000001,-2.722148499999946],[136.01278680000007,-2.717761],[135.99388120000003,-2.740541499999949],[135.9909821000001,-2.746672599999954],[135.98590090000005,-2.747991299999967],[135.98193360000005,-2.751531399999976],[135.9763031000001,-2.759141399999976],[135.97492980000004,-2.764875399999937],[135.96701050000001,-2.764201399999934],[135.95445250000012,-2.778071399999931],[135.9481201000001,-2.779321399999958],[135.9459991000001,-2.7824314],[135.9460907,-2.785801399999968],[135.947876,-2.785511199999974],[135.9537964000001,-2.789201299999945],[135.9609375000001,-2.795301399999971],[135.9613495000001,-2.797171399999968],[135.95997620000003,-2.798457599999949],[135.9552460000001,-2.798631399999977],[135.95361330000003,-2.804541299999926],[135.95523070000002,-2.808741299999951],[135.95382690000008,-2.809361499999966],[135.9507446,-2.818791399999952],[135.9462585000001,-2.825401299999953],[135.94497680000006,-2.828431399999943],[135.94558730000006,-2.8310766],[135.93338010000002,-2.852651399999957],[135.92314150000004,-2.862781499999926],[135.9175262000001,-2.866221699999926],[135.91198730000008,-2.866051699999957],[135.90582270000004,-2.868151699999942],[135.9052124000001,-2.870281699999964],[135.91015620000007,-2.878494499999931],[135.91058350000003,-2.894517199999939],[135.9131317,-2.897097099999939],[135.916626,-2.896347099999957],[135.92041010000003,-2.888427299999933],[135.9253387000001,-2.883858399999951],[135.93150330000003,-2.889152299999978],[135.93135070000005,-2.895172299999956],[135.933609,-2.9005823],[135.93283080000003,-2.902592399999946],[135.93493650000005,-2.904732499999966],[135.93173220000006,-2.914122299999974],[135.93504330000007,-2.916512299999965],[135.93534850000003,-2.921913099999927],[135.9340668000001,-2.924433199999953],[135.9312897000001,-2.924523099999931],[135.93173220000006,-2.937936099999945],[135.92926020000004,-2.9393039],[135.92915340000002,-2.942984599999932],[135.9248199000001,-2.950942299999952],[135.9248199000001,-2.957633699999974],[135.92163080000012,-2.964517399999977],[135.92050170000005,-2.963129299999935],[135.91485590000002,-2.969131199999936],[135.91598510000006,-2.965532099999962],[135.91334530000006,-2.9640822],[135.9109344000001,-2.975050899999928],[135.90515140000002,-2.9779654],[135.90148920000001,-2.9763832],[135.90052790000004,-2.977693099999954],[135.89767460000007,-2.975993599999924],[135.8975372000001,-2.974263199999939],[135.89434810000012,-2.976503099999945],[135.8929138000001,-2.974453199999971],[135.8921051000001,-2.980263199999968],[135.89358520000008,-2.9825032],[135.89268490000006,-2.984883099999934],[135.8937988,-2.989306],[135.8924713,-2.989829499999928],[135.88525390000007,-2.985733299999936],[135.88116450000007,-2.985023299999966],[135.88197330000003,-2.987303199999928],[135.87954710000008,-2.9863031],[135.8795166000001,-2.9917109],[135.8767395000001,-2.991163299999926],[135.87440490000006,-2.993629699999929],[135.87278750000007,-2.991293199999973],[135.8691559,-2.9898133],[135.86700440000004,-2.991293399999961],[135.86801150000008,-2.993343399999958],[135.8632507000001,-2.992623299999934],[135.86584470000003,-2.998013499999956],[135.8624115,-3.001183499999968],[135.856308,-3.003935799999965],[135.85047910000003,-3.004163499999947],[135.84835810000004,-3.006213399999979],[135.84445190000008,-3.004663499999936],[135.84356690000004,-3.006414899999925],[135.83869930000003,-3.007793399999969],[135.83619690000012,-3.012043499999947],[135.82675170000005,-3.013593399999934],[135.82304380000005,-3.022953499999971],[135.82276920000004,-3.027896399999975],[135.8184357,-3.0314133],[135.81944280000005,-3.034393299999977],[135.8173981000001,-3.038890399999957],[135.7959747000001,-3.052242],[135.78356930000007,-3.056572399999936],[135.78184510000006,-3.058612299999936],[135.78184510000006,-3.056782299999952],[135.7804718000001,-3.056362399999955],[135.7783356000001,-3.060565],[135.77400210000008,-3.0613661],[135.76956180000002,-3.0564461],[135.7671967000001,-3.056706199999951],[135.7651062000001,-3.059536199999968],[135.76437380000004,-3.058016099999975],[135.76745610000012,-3.054976199999942],[135.76689150000004,-3.052416099999959],[135.76239010000006,-3.050266299999976],[135.7574615000001,-3.049956099999974],[135.749527,-3.053456099999948],[135.7441864000001,-3.058416099999931],[135.73352050000005,-3.064736099999948],[135.7281647000001,-3.071306199999981],[135.72969050000006,-3.074906099999964],[135.73947140000007,-3.0764463],[135.7436676000001,-3.080426199999977],[135.75976560000004,-3.083466],[135.7677917000001,-3.087816199999963],[135.76437380000004,-3.090336099999945],[135.76544190000004,-3.097032499999955],[135.75958250000008,-3.1003861],[135.7566071000001,-3.110286199999962],[135.7460632000001,-3.119826099999955],[135.718399,-3.127356099999929],[135.70561220000002,-3.141906499999948],[135.70199580000008,-3.148786299999927],[135.6953277,-3.152936499999953],[135.68972780000001,-3.1533165],[135.68400570000006,-3.157336499999928],[135.67286680000007,-3.158176399999945],[135.66822810000008,-3.160716499999978],[135.65921020000008,-3.162466299999949],[135.65600580000012,-3.165586499999961],[135.6484528000001,-3.168576499999972],[135.64544680000006,-3.167826399999967],[135.6440887000001,-3.163246399999935],[135.64067080000007,-3.162846299999956],[135.63621520000004,-3.168146399999955],[135.6291199000001,-3.169986499999936],[135.62211610000008,-3.175036699999964],[135.6194458000001,-3.178876799999955],[135.6155701,-3.178536699999938],[135.6116638000001,-3.180206799999951],[135.60484310000004,-3.187556799999925],[135.605484,-3.188446799999952],[135.60182190000012,-3.192966699999943],[135.59631350000006,-3.194426799999974],[135.59370420000005,-3.199666699999966],[135.58975220000002,-3.203206799999975],[135.58572390000006,-3.212556599999971],[135.58654790000003,-3.213336699999957],[135.58395380000002,-3.214316599999961],[135.5809174000001,-3.2240667],[135.58058170000004,-3.228066699999943],[135.58265710000012,-3.230166699999927],[135.58360290000007,-3.235556599999938],[135.5818634000001,-3.237826599999948],[135.5761566000001,-3.238816699999973],[135.5744019000001,-3.2340066],[135.5727081000001,-3.2341666],[135.5693817,-3.240696699999944],[135.56106570000009,-3.249856699999953],[135.56097410000007,-3.252486399999952],[135.557251,-3.2558467],[135.5541687000001,-3.262586599999963],[135.56098940000004,-3.265646699999934],[135.56561280000005,-3.264806799999974],[135.56604,-3.267326599999933],[135.56228640000006,-3.276566799999955],[135.56323240000006,-3.279196699999943],[135.56196590000002,-3.278076699999929],[135.56044010000005,-3.283946799999967],[135.561142,-3.290296599999976],[135.5580139000001,-3.300532299999929],[135.5499115,-3.307612399999925],[135.53993220000007,-3.312712399999953],[135.53929140000002,-3.317382299999963],[135.535202,-3.323912399999926],[135.51042180000002,-3.345262299999945],[135.50401310000007,-3.356112199999927],[135.49530030000005,-3.361112299999945],[135.48965450000003,-3.3626823],[135.4902337000001,-3.365932199999975],[135.48829650000005,-3.363072399999965],[135.47955320000005,-3.369312299999933],[135.47213740000007,-3.372582699999953],[135.4524550000001,-3.376556899999969],[135.4515533000001,-3.377602599999932],[135.45494080000003,-3.377682399999969],[135.4507446,-3.378662599999927],[135.4511566000001,-3.376182599999936],[135.4210815,-3.365832599999976],[135.41587830000003,-3.368018599999971],[135.41311640000004,-3.367422599999941],[135.38645940000004,-3.380682499999978],[135.3594055000001,-3.3857427],[135.34819030000006,-3.389252899999974],[135.34356690000004,-3.3948071],[135.3358002000001,-3.3961334],[135.32873540000003,-3.395353599999964],[135.32516480000004,-3.393233499999951],[135.32543950000002,-3.390273599999944],[135.31152340000006,-3.3865735],[135.29064940000012,-3.384583499999962],[135.2852478000001,-3.385673499999939],[135.28517150000005,-3.384373399999959],[135.23963930000002,-3.375793699999974],[135.2175903000001,-3.3770838],[135.2113495000001,-3.380223799999953],[135.2042236000001,-3.381263699999977],[135.1739655,-3.375334299999963],[135.16638180000007,-3.370813599999963],[135.1511078000001,-3.370774299999937],[135.13166810000007,-3.380564199999981],[135.1254272000001,-3.3791041],[135.1226044000001,-3.380824299999972],[135.11451720000002,-3.382084099999929],[135.11190790000012,-3.3815043],[135.107132,-3.376114099999938],[135.1035309,-3.376644099999965],[135.10028080000006,-3.373184199999969],[135.0981293000001,-3.3730843],[135.09747310000012,-3.359524299999975],[135.09570310000004,-3.359111299999938],[135.0911407000001,-3.352404099999944],[135.09004210000012,-3.347954299999969],[135.08738710000011,-3.345084199999974],[135.0698089000001,-3.3346145],[135.05900570000006,-3.335424399999965],[135.0528412000001,-3.330064499999935],[135.0484467000001,-3.3294044],[135.04498290000004,-3.333094399999936],[135.04115290000004,-3.332154499999945],[135.03434750000008,-3.336334499999964],[135.03266910000002,-3.335864499999957],[135.0321960000001,-3.337534399999925],[135.02241520000007,-3.340234499999951],[135.01051330000007,-3.339144499999975],[135.00096130000009,-3.336434399999973],[134.985199,-3.328284499999938],[134.98046880000004,-3.321624499999928],[134.97227480000004,-3.315944399999978],[134.96791080000003,-3.3095944],[134.96366880000005,-3.3068047],[134.959549,-3.296574599999929],[134.9541931000001,-3.294374699999935],[134.9500885000001,-3.288024699999937],[134.9451752000001,-3.284274799999935],[134.945282,-3.276984699999957],[134.94935610000005,-3.271644599999945],[134.9517975000001,-3.272274699999969],[134.9531555000001,-3.271014699999967],[134.9495697000001,-3.264294599999971],[134.95169070000009,-3.257235099999946],[134.95501710000008,-3.253964399999973],[134.95240780000006,-3.247967699999947],[134.95693970000002,-3.246006699999953],[134.96217350000006,-3.248327299999971],[134.9633636000001,-3.247609099999977],[134.96301270000004,-3.2411461],[134.96492000000012,-3.232528899999977],[134.9602814000001,-3.225227799999971],[134.95146180000006,-3.221397599999932],[134.9496765,-3.223312599999929],[134.9528961000001,-3.225706299999956],[134.95681760000002,-3.235161499999947],[134.95800780000002,-3.241983599999969],[134.95562740000003,-3.244856099999936],[134.947052,-3.247369099999958],[134.9399109000001,-3.245812599999965],[134.93423460000008,-3.241034299999967],[134.92608640000003,-3.237424099999942],[134.9234772000001,-3.242254299999956],[134.91955570000005,-3.244374299999947],[134.91679380000005,-3.244194299999947],[134.91720580000003,-3.247754099999952],[134.92741390000003,-3.255694199999937],[134.92967220000003,-3.260334299999954],[134.9385986000001,-3.269804199999953],[134.934494,-3.271664199999975],[134.9324951000001,-3.269994299999951],[134.92855830000008,-3.269754199999966],[134.92474370000002,-3.263664299999959],[134.91943360000005,-3.262004099999956],[134.9156342000001,-3.2625742],[134.9155426000001,-3.260954099999935],[134.9110565000001,-3.2607641],[134.90768430000003,-3.258764299999939],[134.89422610000008,-3.258550399999933],[134.89212040000007,-3.259740299999976],[134.88764950000007,-3.2587903],[134.87849430000006,-3.250270399999977],[134.87748720000002,-3.246600399999977],[134.8757782,-3.249120199999936],[134.87086490000002,-3.251618599999972],[134.86381530000006,-3.252048699999932],[134.86076360000004,-3.249908699999935],[134.86070250000012,-3.2468088],[134.86236570000005,-3.244578799999942],[134.86012270000003,-3.2424786],[134.860733,-3.235668699999962],[134.863266,-3.235908699999925],[134.86372370000004,-3.230678799999964],[134.868866,-3.232058799999947],[134.8704834,-3.228158699999938],[134.87509150000005,-3.225208799999962],[134.87086490000002,-3.224918799999955],[134.8695679000001,-3.223158799999965],[134.87031550000006,-3.216498599999966],[134.87483210000005,-3.215878699999962],[134.87254330000007,-3.206168699999978],[134.86788940000008,-3.203268799999933],[134.86650090000012,-3.204168799999934],[134.8653107,-3.207548599999939],[134.8669586000001,-3.214928599999951],[134.8661499000001,-3.216688599999941],[134.8625793000001,-3.215208799999971],[134.86343380000005,-3.218778599999951],[134.8613434,-3.223108799999977],[134.8613434,-3.227248699999961],[134.85853580000003,-3.225538699999959],[134.85751340000002,-3.220588699999951],[134.85540770000011,-3.218018799999925],[134.85627750000003,-3.214168799999925],[134.8541107000001,-3.209308599999929],[134.8553009000001,-3.207878799999946],[134.85110470000006,-3.206548699999928],[134.85191340000006,-3.201598599999954],[134.8509216000001,-3.1999788],[134.854538,-3.196888699999931],[134.8545074000001,-3.194988699999953],[134.85084530000006,-3.195128699999941],[134.84867860000008,-3.1925488],[134.85531620000006,-3.189938799999936],[134.857132,-3.187418699999967],[134.863266,-3.185658699999976],[134.864975,-3.182518699999946],[134.86199950000002,-3.177820899999972],[134.8657227000001,-3.170229699999936],[134.8657379000001,-3.1672297],[134.86222840000005,-3.158849699999962],[134.85942080000007,-3.159609799999942],[134.85903930000006,-3.155619899999976],[134.8558044,-3.152619799999968],[134.8539429000001,-3.153329799999938],[134.85493470000006,-3.1512399],[134.8538513000001,-3.150139799999977],[134.83746340000005,-3.139607],[134.83795170000008,-3.136199699999963],[134.8315735000001,-3.125059799999974],[134.8281555000001,-3.124740799999927],[134.82380680000006,-3.134660199999928],[134.81706240000005,-3.134220399999947],[134.81275940000012,-3.135990399999969],[134.81076050000001,-3.132940299999973],[134.80369570000005,-3.136110299999928],[134.80000310000003,-3.131360299999926],[134.80368040000008,-3.123680399999955],[134.8078918000001,-3.124340299999972],[134.8151398000001,-3.119440299999951],[134.80790710000008,-3.118870299999969],[134.8092041000001,-3.112430299999971],[134.81190490000006,-3.107490299999938],[134.8097534000001,-3.103770299999951],[134.8138428000001,-3.102980099999968],[134.8157043000001,-3.105140199999937],[134.81828310000003,-3.10517],[134.8160858000001,-3.100310099999945],[134.81427,-3.101050099999952],[134.81221010000002,-3.097720099999947],[134.81335450000006,-3.094920199999933],[134.81111140000007,-3.090990099999942],[134.8130188,-3.08183],[134.81539920000012,-3.080310099999963],[134.8197632,-3.081230199999936],[134.8249664000001,-3.08603],[134.82873540000003,-3.0934901],[134.82785030000002,-3.08797],[134.820755,-3.078940099999954],[134.82160950000002,-3.075800199999946],[134.81958010000005,-3.07446],[134.81805420000012,-3.070290099999966],[134.8188934000001,-3.067180199999939],[134.814682,-3.068760199999929],[134.81028750000007,-3.062900099999979],[134.81417850000003,-3.060460099999943],[134.8110352000001,-3.055610199999933],[134.813797,-3.052900099999931],[134.81575010000006,-3.052660199999934],[134.8163300000001,-3.0539],[134.81761170000004,-3.050800099999947],[134.8156738,-3.049230099999932],[134.815628,-3.047140099999979],[134.81425480000007,-3.046470199999931],[134.81477350000011,-3.043520199999932],[134.81111140000007,-3.038430199999937],[134.8127747000001,-3.03619],[134.8118896000001,-3.033960099999945],[134.81307980000008,-3.031430199999932],[134.8129272000001,-3.022250199999974],[134.81710810000004,-3.017870199999948],[134.81958010000005,-3.017780099999925],[134.8181,-3.015210199999956],[134.81906130000004,-3.011970099999928],[134.82705690000012,-3.0141601],[134.83045960000004,-3.012260199999957],[134.83084110000004,-3.008880099999942],[134.83392330000004,-3.006310199999973],[134.84130860000005,-3.006450199999961],[134.84159850000003,-3.004895899999951],[134.84718320000002,-3.001215899999977],[134.85179140000002,-3.0025959],[134.8529205000001,-3.001645799999949],[134.8501434000001,-2.994785799999931],[134.84962460000008,-2.9884558],[134.84480280000002,-2.987075799999957],[134.84063720000006,-2.981655799999942],[134.84095760000002,-2.978465799999981],[134.8366089000001,-2.9724657],[134.8314514000001,-2.968345899999974],[134.83322140000007,-2.959735899999941],[134.83711240000002,-2.958005899999932],[134.84016420000012,-2.958865899999978],[134.84487910000007,-2.955415699999946],[134.84729,-2.956545799999958],[134.84974670000008,-2.953915799999947],[134.84904480000012,-2.951465799999937],[134.84689330000003,-2.950235799999973],[134.8477173000001,-2.947375799999975],[134.8436584000001,-2.945085799999958],[134.8416443000001,-2.940666],[134.8421631000001,-2.937615899999969],[134.84579470000006,-2.934555799999941],[134.84645080000007,-2.930735799999979],[134.84794620000002,-2.929705899999931],[134.8479602000001,-2.926665799999967],[134.8453217000001,-2.921495899999968],[134.84877010000002,-2.914856],[134.85215760000006,-2.9163158],[134.8483734,-2.912425799999937],[134.8461761000001,-2.898825899999963],[134.8468170000001,-2.892925699999978],[134.85285950000002,-2.887215599999934],[134.8524933000001,-2.885625599999969],[134.8446808000001,-2.8896058],[134.84431460000008,-2.893325799999957],[134.84120180000002,-2.893796],[134.83415220000006,-2.886255699999936],[134.8305054000001,-2.877805899999942],[134.82951360000004,-2.880555899999933],[134.8262939000001,-2.882195899999942],[134.82693480000012,-2.888055799999961],[134.82475280000006,-2.892145199999959],[134.82543940000005,-2.897245899999973],[134.82420350000007,-2.900055899999927],[134.82585140000003,-2.905495899999949],[134.83020020000004,-2.905085799999938],[134.8319550000001,-2.906445699999949],[134.83305360000008,-2.910405899999944],[134.83172610000008,-2.913085899999942],[134.82391360000008,-2.917905799999971],[134.81805420000012,-2.914215799999965],[134.80453490000002,-2.911295899999971],[134.80688480000003,-2.914805899999976],[134.80583190000004,-2.920015799999931],[134.80670170000008,-2.921775799999978],[134.8060455000001,-2.927545799999962],[134.80374140000004,-2.931706],[134.8143616000001,-2.934876],[134.81977840000002,-2.935046199999931],[134.82077030000005,-2.936086199999977],[134.81855770000004,-2.939756199999977],[134.8106232,-2.942656299999953],[134.80647280000005,-2.941886199999942],[134.8055878,-2.945446199999935],[134.80264280000006,-2.948996299999976],[134.79774480000003,-2.9509163],[134.7911835000001,-2.943916299999955],[134.78953550000006,-2.945226199999979],[134.7868195000001,-2.9440806],[134.786499,-2.940833599999962],[134.78262330000007,-2.944053699999927],[134.77748110000005,-2.940943699999934],[134.77539060000004,-2.950843599999928],[134.778656,-2.966213699999969],[134.77703860000008,-2.974633899999958],[134.7780762000001,-2.982513899999958],[134.7767639000001,-2.986013599999978],[134.7690735000001,-2.990663799999936],[134.75817870000003,-2.992897299999925],[134.7510529000001,-2.992793799999959],[134.7452545000001,-2.989293799999928],[134.73973080000007,-2.990443899999946],[134.736618,-2.987703799999963],[134.73469540000008,-2.983383899999978],[134.72969050000006,-2.9804339],[134.70056150000005,-2.974377599999968],[134.69352720000006,-2.971082899999942],[134.68904080000004,-2.966768],[134.68870540000012,-2.963724099999979],[134.69235230000004,-2.954602699999953],[134.6939850000001,-2.953614899999934],[134.69458010000005,-2.945061899999928],[134.6916351000001,-2.938213599999926],[134.69152830000007,-2.934137299999975],[134.68069460000004,-2.926435199999958],[134.67687990000002,-2.920474],[134.68014530000005,-2.910697899999946],[134.69102480000004,-2.907637399999942],[134.69116210000004,-2.896165399999973],[134.686676,-2.893044499999974],[134.6822052000001,-2.887417299999925],[134.6778564000001,-2.878342199999963],[134.66851810000003,-2.865863599999955],[134.6657867,-2.8583231],[134.6664734000001,-2.855582899999945],[134.6635132,-2.843160199999943],[134.661438,-2.824785499999962],[134.66275020000012,-2.820294899999965],[134.66215510000006,-2.815533599999981],[134.66743470000006,-2.812913899999955],[134.67005920000008,-2.8068326],[134.66526790000012,-2.791299099999947],[134.66505430000007,-2.784127699999942],[134.6578522000001,-2.775045599999942],[134.65698240000006,-2.771055199999978],[134.66179590000002,-2.757035899999948],[134.6586463000001,-2.742693399999951],[134.6601141000001,-2.720382799999925],[134.65688490000002,-2.700420699999938],[134.6601141000001,-2.694549499999937],[134.6557107000001,-2.676642399999935],[134.65805910000006,-2.668129099999931],[134.65659130000006,-2.664312799999948],[134.65776560000006,-2.661377199999947],[134.6571785000001,-2.657561],[134.65805910000006,-2.653744699999947],[134.66070120000006,-2.651396199999965],[134.6589398000001,-2.632901899999979],[134.66275610000002,-2.624388599999975],[134.66099480000003,-2.620572399999958],[134.66275610000002,-2.613233399999956],[134.6618754000001,-2.609710599999971],[134.65835270000002,-2.6053072],[134.6604076000001,-2.595619699999929],[134.6589398000001,-2.588867899999968],[134.65688490000002,-2.587106499999948],[134.6571785000001,-2.577712599999927],[134.65394930000002,-2.574189899999965],[134.65218790000006,-2.533972099999971],[134.650133,-2.528688],[134.64778450000006,-2.527220199999931],[134.64778450000006,-2.522229699999968],[134.64631670000006,-2.519294099999968],[134.642794,-2.516358499999967],[134.6425005000001,-2.504909599999962],[134.6319506000001,-2.497396299999934],[134.63011590000008,-2.493726799999934],[134.63011590000008,-2.486387799999932],[134.6351615000001,-2.484553099999971],[134.63378540000008,-2.479966199999978],[134.6296572000001,-2.477672799999937],[134.6223182000001,-2.479507499999954],[134.62277690000008,-2.485011799999938],[134.6209421000001,-2.487763899999948],[134.61452050000003,-2.48914],[134.59881970000004,-2.4893491],[134.624391,-2.699685099999954],[134.63089270000012,-2.741558599999962],[134.62980960000004,-2.741607699999975],[134.65721470000005,-2.961710699999969],[134.7035059000001,-3.345510099999956],[134.72592940000004,-3.363769199999979],[134.7268014000001,-3.408591299999955],[134.6358801,-3.5426395],[134.748306,-3.579676],[134.888657,-3.631025],[135.00058,-3.660682],[135.04451,-3.675407],[135.11734,-3.703116],[135.163559,-3.726844],[135.25798,-3.75193],[135.20292730000006,-3.819873199999961],[135.28201420000005,-3.839824399999941],[135.37733530000003,-3.866342299999928],[135.39883630000008,-3.867059],[135.40672,-3.8620421],[135.4389715000001,-3.867774599999962],[135.44757190000007,-3.8656256],[135.46190590000003,-3.867059],[135.4877070000001,-3.882109699999944],[135.50347440000007,-3.892860199999973],[135.51135810000005,-3.900027199999954],[135.52425870000002,-3.907910899999933],[135.54790980000007,-3.932278699999927],[135.559377,-3.935145499999976],[135.5794446000001,-3.934428799999978],[135.59019510000007,-3.925828399999943],[135.59879550000005,-3.916511299999968],[135.6002297000001,-3.907194899999979],[135.6224466000001,-3.903610699999945],[135.631047,-3.8978771],[135.6625818000001,-3.884976499999937],[135.68336610000006,-3.869925799999976],[135.69196650000004,-3.865625099999932],[135.69913350000002,-3.8684924],[135.7078772000001,-3.866844],[135.71647760000008,-3.868564399999968],[135.7233579000001,-3.8645505],[135.73597180000002,-3.865123899999958],[135.74686570000006,-3.859963199999925],[135.75431930000002,-3.862830499999973],[135.7629197000001,-3.860537],[135.7904410000001,-3.858816899999965],[135.7938812000001,-3.8530833],[135.79961480000009,-3.850789899999938],[135.80190820000007,-3.847349699999938],[135.80764180000006,-3.843336199999953],[135.81337540000004,-3.842189499999961],[135.8179623000001,-3.839322699999968],[135.82770940000012,-3.839896099999976],[135.83860320000008,-3.838176],[135.8609643000001,-3.841042799999968],[135.866124,-3.840469399999961],[135.86669790000008,-3.838176],[135.8644044,-3.831869],[135.87185810000005,-3.830148899999926],[135.88160520000008,-3.816388299999971],[135.88504540000008,-3.794027299999925],[135.8850463000001,-3.7831334],[135.89536580000004,-3.785426899999948],[135.9039662,-3.783706799999948],[135.90912650000007,-3.779693299999963],[135.94123460000003,-3.7768265],[135.94868830000007,-3.7751064],[135.95384850000005,-3.769372799999928],[135.96646250000003,-3.766506],[135.98481,-3.769946199999936],[135.99226360000011,-3.767652699999928],[136.000864,-3.762492499999951],[136.02093160000004,-3.734971199999961],[136.02838530000008,-3.730384299999969],[136.0444394000001,-3.724650699999927],[136.05645390000007,-3.7226889]]]]},"properties":{"shapeName":"Nabire","shapeISO":"","shapeID":"22746128B45210708052839","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[96.19202920000004,4.107278],[96.18943280000008,4.105447500000025],[96.22427840000006,4.069404800000029],[96.22615870000004,4.06759820000002],[96.22772290000006,4.06793760000005],[96.22826170000008,4.065469500000063],[96.23538280000008,4.057229200000052],[96.23765970000005,4.055780200000072],[96.24011650000006,4.057118700000046],[96.24699640000006,4.041288200000054],[96.28396740000005,3.998806400000035],[96.29595950000004,3.982771900000046],[96.36332390000007,3.881028800000024],[96.37393,3.866131200000041],[96.37712670000008,3.865566700000045],[96.37534250000004,3.863965500000063],[96.38523320000007,3.849256100000048],[96.38732940000006,3.849698500000045],[96.38637610000006,3.85721570000004],[96.38930430000005,3.857289800000046],[96.39202360000007,3.853178800000023],[96.38753050000008,3.846499200000039],[96.38975390000007,3.846133300000076],[96.39540610000006,3.84116030000007],[96.454364,3.78408630000007],[96.49666670000005,3.74949730000003],[96.51590170000009,3.736973900000066],[96.53014420000005,3.731261400000051],[96.54430460000003,3.729083600000024],[96.57940690000004,3.733149800000035],[96.61817550000006,3.734628800000053],[96.61962490000008,3.73712880000005],[96.62367850000004,3.738957],[96.61675020000007,3.736261700000057],[96.61900270000007,3.746971900000062],[96.61427470000007,3.753545600000052],[96.61761040000005,3.757074],[96.61668620000006,3.76381],[96.614128,3.768899300000044],[96.60927620000007,3.771473600000036],[96.60554420000005,3.776212100000066],[96.60675730000008,3.782135100000062],[96.61037020000003,3.784085800000071],[96.61724370000007,3.791878200000042],[96.61658930000004,3.795621],[96.60967530000005,3.807031400000028],[96.610239,3.812591200000043],[96.59878750000007,3.827841900000067],[96.58294670000004,3.838501400000041],[96.58105470000004,3.845922800000039],[96.58451520000006,3.849637900000062],[96.58789370000005,3.856610800000055],[96.58841530000007,3.861834],[96.59262150000006,3.869418300000063],[96.59205790000004,3.875856800000065],[96.59593930000005,3.884186300000067],[96.593779,3.889874400000053],[96.60011680000008,3.902653400000077],[96.60118840000007,3.911777100000052],[96.60442850000004,3.915380300000038],[96.61305370000008,3.912813500000027],[96.614492,3.917620700000043],[96.617149,3.918945800000074],[96.61771590000006,3.922707100000025],[96.61473520000004,3.932456600000023],[96.617669,3.932610600000032],[96.62143880000008,3.93523650000003],[96.61888880000004,3.939462800000058],[96.62318,3.946741900000063],[96.62577020000003,3.947827800000027],[96.629165,3.958479300000022],[96.63503730000008,3.960341100000051],[96.63659370000005,3.96380750000003],[96.64115830000009,3.967487100000028],[96.64476690000004,3.967471100000068],[96.64700640000007,3.972632300000043],[96.65121220000003,3.971955500000035],[96.66590330000008,3.981267400000036],[96.67303410000005,3.983364600000073],[96.67777090000004,3.987125200000037],[96.68407050000008,3.98443020000002],[96.68413860000004,3.990279800000053],[96.68962630000004,3.991015900000036],[96.69702320000005,3.988493500000061],[96.71008290000003,4.006279900000038],[96.71929530000006,4.012481],[96.72018490000005,4.015313900000024],[96.71709060000006,4.021609200000057],[96.71720710000005,4.025726400000053],[96.725902,4.03347],[96.72998150000006,4.041458],[96.729187,4.071522],[96.725225,4.081651700000066],[96.72482160000004,4.096891700000072],[96.73462880000005,4.13437870000007],[96.75131020000003,4.170623],[96.75833640000008,4.178918700000054],[96.77731430000006,4.192824800000039],[96.78601080000004,4.200886800000035],[96.80214230000007,4.223401400000057],[96.80222870000006,4.231473],[96.79524460000005,4.241269600000066],[96.79745840000004,4.267518300000063],[96.79327670000004,4.285503100000028],[96.80458510000005,4.284117700000024],[96.82055870000005,4.285382700000071],[96.82179530000008,4.285449600000049],[96.79172820000008,4.304736800000057],[96.78536190000005,4.313015700000051],[96.78402340000008,4.317886500000043],[96.77807120000006,4.326958400000024],[96.74898270000006,4.341978700000027],[96.71711250000004,4.352990700000021],[96.67821060000006,4.36393460000005],[96.64752750000008,4.377368200000035],[96.642213,4.381500500000072],[96.64077,4.38582770000005],[96.63475860000005,4.390757300000075],[96.63525260000006,4.394646900000055],[96.631915,4.398695],[96.62885730000005,4.399497],[96.62858230000006,4.401209900000026],[96.62516570000008,4.401830300000029],[96.62372380000005,4.40363080000003],[96.62084940000005,4.402808600000071],[96.61850730000003,4.404605],[96.61771240000007,4.400273200000072],[96.61384370000007,4.401794100000075],[96.60979120000007,4.404577],[96.60869760000008,4.409353700000054],[96.60402640000007,4.408887700000037],[96.60131710000007,4.413118],[96.59916370000008,4.412118900000053],[96.597453,4.413195700000074],[96.59663470000004,4.416169400000058],[96.59124290000005,4.416242],[96.59025910000008,4.414795800000036],[96.58827910000008,4.415781400000071],[96.58789870000004,4.418011200000024],[96.583912,4.41979230000004],[96.58527970000006,4.423955500000034],[96.58787080000008,4.426655],[96.58982060000005,4.426661400000057],[96.59200130000005,4.430664200000024],[96.591014,4.434493700000075],[96.59718,4.437204800000075],[96.59473310000004,4.440132500000061],[96.59885290000005,4.447485100000051],[96.59810760000005,4.451804700000025],[96.60444110000003,4.477297900000053],[96.59989740000003,4.494194400000026],[96.59295480000009,4.501999400000045],[96.59055590000008,4.515431900000067],[96.58826170000003,4.51908270000007],[96.58969980000006,4.551688700000057],[96.58154890000009,4.573016300000063],[96.57232670000008,4.579528800000048],[96.55932730000006,4.592228800000044],[96.54381850000004,4.600793300000021],[96.52692080000008,4.603571],[96.49108650000005,4.622769400000038],[96.49445030000004,4.603255],[96.49421340000004,4.598686900000075],[96.49156990000006,4.594896500000061],[96.49365120000004,4.573142200000063],[96.49203170000004,4.555243100000041],[96.48748650000005,4.551204100000064],[96.47290540000006,4.548775700000022],[96.463069,4.545449500000075],[96.45873670000003,4.532816500000024],[96.45093190000006,4.522365600000057],[96.44443760000007,4.517027700000028],[96.44043560000006,4.510043],[96.44784220000008,4.495813600000076],[96.474405,4.468697],[96.47959070000007,4.460954300000026],[96.47971820000004,4.458285100000069],[96.45330540000003,4.433266700000047],[96.44148870000004,4.42581830000006],[96.42176180000007,4.421442800000023],[96.38349780000004,4.420133900000053],[96.37195940000004,4.417353800000058],[96.37071130000004,4.412768200000073],[96.37360890000008,4.41034],[96.37084080000005,4.399122400000067],[96.37319990000003,4.396526100000074],[96.37164920000004,4.392784800000072],[96.36910940000007,4.391778400000021],[96.36727460000009,4.392937400000051],[96.36621690000004,4.390633700000024],[96.35857130000005,4.386814900000047],[96.35803,4.381830400000069],[96.35024830000003,4.381933],[96.34151410000004,4.380018700000051],[96.34107260000007,4.376213300000074],[96.33850960000007,4.375954800000045],[96.33885690000005,4.374468600000057],[96.33566330000008,4.370831700000053],[96.32912930000003,4.367138600000033],[96.32275910000004,4.368502400000068],[96.32030740000005,4.367802900000072],[96.31967810000003,4.364701400000058],[96.31804190000008,4.364360600000055],[96.31550560000005,4.365345],[96.31377340000006,4.368183200000033],[96.307837,4.367588100000035],[96.30162050000007,4.370172300000036],[96.29599330000008,4.368311100000028],[96.29688690000006,4.35053750000003],[96.29076820000006,4.324180600000034],[96.28595350000006,4.289271],[96.28195220000003,4.285859100000039],[96.28608390000005,4.269642100000056],[96.282023,4.26568240000006],[96.28065440000006,4.253807300000062],[96.270434,4.243961900000045],[96.26648830000005,4.227244100000064],[96.26820880000008,4.217312400000026],[96.27085170000004,4.214890100000048],[96.27506920000008,4.21427060000002],[96.27687380000003,4.210487400000034],[96.27239030000004,4.196622200000036],[96.27765840000006,4.183486500000072],[96.27457510000005,4.174447600000065],[96.27716170000008,4.168585300000075],[96.27491980000008,4.165936],[96.27643620000003,4.158065100000044],[96.27884990000007,4.155120500000066],[96.27307380000008,4.150654700000075],[96.27335480000005,4.147892900000045],[96.26756640000008,4.146007600000075],[96.26258960000007,4.138009300000022],[96.24656820000007,4.126084900000023],[96.224778,4.117009],[96.21416320000009,4.117812100000037],[96.20654480000007,4.115847400000064],[96.19202920000004,4.107278]]]},"properties":{"shapeName":"Nagan Raya","shapeISO":"","shapeID":"22746128B2271751597950","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[121.52032470000006,-8.614254],[121.515091,-8.615721699999938],[121.5055771000001,-8.614219699999978],[121.50445560000003,-8.611800199999948],[121.505394,-8.609852799999942],[121.5133972000001,-8.608419399999946],[121.50505830000009,-8.600318899999934],[121.50277710000012,-8.601286899999934],[121.50010680000003,-8.599575],[121.5018387,-8.5931358],[121.4981156,-8.590247099999942],[121.4979019000001,-8.588608799999975],[121.50230410000006,-8.58340549999997],[121.50035090000006,-8.577804599999979],[121.4975128000001,-8.576943399999948],[121.49491880000005,-8.578725799999972],[121.49309540000002,-8.57780839999998],[121.48601530000008,-8.581123399999967],[121.48250580000001,-8.577434499999981],[121.48304750000011,-8.574747099999968],[121.48040010000011,-8.571668599999953],[121.47712710000008,-8.570886599999938],[121.47669220000012,-8.564404499999966],[121.46707150000009,-8.562914899999953],[121.46537780000006,-8.561193499999945],[121.46212770000011,-8.56082349999997],[121.46064760000002,-8.564190799999949],[121.4498291000001,-8.569282499999929],[121.44391630000007,-8.574503899999968],[121.44049070000005,-8.575666399999932],[121.43984990000001,-8.578577],[121.43378450000012,-8.581779499999925],[121.4310455000001,-8.586440099999948],[121.4250565000001,-8.587387099999944],[121.42414860000008,-8.585633299999927],[121.42060090000007,-8.584533699999952],[121.420044,-8.586247499999956],[121.42326350000008,-8.589866699999959],[121.4184418000001,-8.592046699999969],[121.4159317000001,-8.582778899999937],[121.41246030000002,-8.580696099999955],[121.41324620000012,-8.578477899999939],[121.40446470000006,-8.571752499999945],[121.40133670000012,-8.573359499999981],[121.39666750000004,-8.5714264],[121.39285280000001,-8.572697699999935],[121.38320920000001,-8.5641003],[121.37727360000008,-8.565064399999926],[121.36955260000002,-8.563567199999966],[121.3584442,-8.554308899999967],[121.35157010000012,-8.552149799999938],[121.34380340000007,-8.547163],[121.32535550000011,-8.523626299999933],[121.32662970000001,-8.516470899999945],[121.32357020000006,-8.514686599999948],[121.31924440000012,-8.508506799999964],[121.30780790000006,-8.48160839999997],[121.30590060000009,-8.482947299999978],[121.30574800000011,-8.486214599999926],[121.30386350000003,-8.481582599999967],[121.29721070000005,-8.477178599999945],[121.2881317,-8.475089099999934],[121.27873990000012,-8.4698334],[121.2698974000001,-8.467659899999944],[121.26745610000012,-8.465312],[121.26812740000003,-8.463887199999931],[121.2571335,-8.466299099999958],[121.253273,-8.465653399999951],[121.25046540000005,-8.467625599999963],[121.2440491000001,-8.468804299999931],[121.23686980000002,-8.467227],[121.23163610000006,-8.462909699999955],[121.22671510000009,-8.463718399999948],[121.2230072000001,-8.461708099999953],[121.21675870000001,-8.461460099999954],[121.1958618000001,-8.4444628],[121.19106290000002,-8.437915799999928],[121.17319530000009,-8.4407133],[121.17491010000003,-8.446448299999929],[121.17920970000011,-8.453341],[121.17984740000009,-8.459365099999957],[121.17357560000005,-8.467810199999974],[121.16239460000008,-8.47599109999993],[121.1615921,-8.477857299999926],[121.1649652000001,-8.4839946],[121.17246100000011,-8.488366799999937],[121.18359670000007,-8.499913],[121.18403160000003,-8.5115732],[121.17713980000008,-8.518351199999927],[121.17086730000005,-8.519937599999935],[121.17220320000001,-8.524819899999954],[121.16614260000006,-8.533956299999943],[121.15743680000003,-8.540485399999966],[121.1523701000001,-8.547139199999947],[121.14511520000008,-8.549632199999962],[121.1423109000001,-8.553475799999944],[121.14162520000002,-8.559583],[121.14383770000006,-8.566115299999979],[121.14271090000011,-8.56847289999996],[121.14358560000005,-8.572144499999979],[121.13965660000008,-8.578951599999925],[121.1324734000001,-8.5826563],[121.13219010000012,-8.584676399999978],[121.13346750000005,-8.585590899999943],[121.13095640000006,-8.587723799999935],[121.13162010000008,-8.589162699999974],[121.12926590000006,-8.592074],[121.12967220000007,-8.594258299999979],[121.131788,-8.594759199999942],[121.132156,-8.601631199999929],[121.12600680000003,-8.620665699999961],[121.12553590000005,-8.640957699999944],[121.12775080000006,-8.6429364],[121.12464770000008,-8.645627199999979],[121.12023520000002,-8.646907299999953],[121.12006830000007,-8.652161],[121.11738610000009,-8.653494399999943],[121.11672170000008,-8.660331199999973],[121.1138873000001,-8.664402799999948],[121.11460970000007,-8.6675586],[121.11109890000012,-8.671596299999976],[121.11258570000007,-8.677103],[121.10740360000011,-8.678670299999965],[121.10915030000001,-8.681938499999944],[121.1158286000001,-8.6833858],[121.116927,-8.686219499999936],[121.12111770000001,-8.6871566],[121.1256638000001,-8.684981099999959],[121.12851260000002,-8.688916199999937],[121.1309940000001,-8.683795199999963],[121.13387160000002,-8.689156399999945],[121.13881790000005,-8.689465699999971],[121.1386801000001,-8.691960299999948],[121.14259620000007,-8.690339699999981],[121.14425640000002,-8.691861499999959],[121.14875370000004,-8.692276799999945],[121.149517,-8.693813299999931],[121.14564180000002,-8.694400499999972],[121.14533830000005,-8.697803399999941],[121.14157490000002,-8.701135699999952],[121.13849170000003,-8.701067199999954],[121.13627660000009,-8.703088199999968],[121.13334340000006,-8.701683599999967],[121.13175640000009,-8.703867899999977],[121.13000640000007,-8.702184099999954],[121.12394820000009,-8.7036887],[121.12445330000003,-8.705538099999956],[121.1225971,-8.708358099999941],[121.11561430000006,-8.709535699999947],[121.11474480000004,-8.71376179999993],[121.11101730000007,-8.7162528],[121.11467890000006,-8.717438199999947],[121.11311550000005,-8.7187826],[121.11380540000005,-8.72135359999993],[121.11263850000012,-8.7233314],[121.10838090000004,-8.7240083],[121.10717760000011,-8.72030159999997],[121.10493430000008,-8.722226],[121.10818260000008,-8.725157199999956],[121.10505200000011,-8.726193199999955],[121.10549430000003,-8.728332199999954],[121.1024900000001,-8.730421699999965],[121.10221520000005,-8.73222119999997],[121.09999760000005,-8.7328429],[121.10116430000005,-8.734258699999941],[121.10002650000001,-8.736371199999951],[121.1026,-8.73771019999998],[121.10184970000012,-8.742352099999948],[121.10497050000004,-8.746674499999926],[121.10403170000006,-8.748177899999973],[121.10314460000006,-8.746739],[121.10022110000011,-8.748435099999938],[121.10106840000003,-8.750219699999946],[121.09868570000003,-8.751813399999946],[121.09817950000001,-8.756036],[121.096428,-8.756544599999927],[121.09595720000004,-8.759378199999958],[121.09796480000011,-8.763515],[121.09990370000003,-8.762140099999954],[121.10097540000004,-8.762939899999935],[121.09906050000006,-8.767262399999936],[121.10168110000006,-8.770068899999956],[121.10085360000005,-8.771690199999966],[121.10193190000007,-8.773664399999973],[121.11007980000011,-8.777832799999942],[121.113759,-8.785908199999938],[121.12371890000009,-8.792813599999931],[121.12193520000005,-8.803687199999956],[121.12393760000009,-8.808007],[121.12794710000003,-8.811205599999937],[121.13055840000004,-8.8155903],[121.1329823000001,-8.827137599999958],[121.13667110000006,-8.835124699999938],[121.13626370000009,-8.837711599999977],[121.13960980000002,-8.84048139999993],[121.14013570000009,-8.843131],[121.13279310000007,-8.851209499999982],[121.12170330000004,-8.8557871],[121.12066790000006,-8.862199099999941],[121.11674560000006,-8.867758099999946],[121.11518420000004,-8.8748443],[121.118963,-8.879515399999946],[121.12529580000012,-8.878763299999946],[121.12722740000004,-8.885516799999948],[121.1358461000001,-8.892824899999937],[121.1392839,-8.8980201],[121.14812470000004,-8.898170499999935],[121.15747070000009,-8.893527],[121.164711,-8.894759199999953],[121.170845,-8.887109799999962],[121.183548,-8.885358799999949],[121.18862910000007,-8.887084],[121.19267270000012,-8.89289089999994],[121.19898990000002,-8.8943777],[121.20452120000004,-8.891314499999964],[121.20680240000002,-8.891796099999965],[121.20800780000002,-8.893961899999965],[121.2106705000001,-8.891869499999927],[121.22370150000006,-8.88917159999994],[121.2289353000001,-8.890544899999952],[121.23403170000006,-8.895763399999964],[121.23473360000003,-8.892646799999966],[121.2375717000001,-8.889759099999935],[121.24567410000009,-8.889205],[121.25265500000012,-8.891326899999967],[121.253479,-8.896611199999938],[121.25709530000006,-8.8976288],[121.25572970000007,-8.893816],[121.25897980000002,-8.888773],[121.26222230000008,-8.887008699999967],[121.26914210000007,-8.886446],[121.2753143000001,-8.8915996],[121.281784,-8.891442299999937],[121.28449250000006,-8.89289089999994],[121.2885437000001,-8.896339399999931],[121.29051970000012,-8.90164],[121.2992554000001,-8.90756129999994],[121.30682370000011,-8.908115399999929],[121.31439210000008,-8.911036499999966],[121.32019810000008,-8.910338399999944],[121.32444,-8.906178499999953],[121.3298416,-8.907661399999938],[121.34210970000004,-8.905289699999969],[121.347969,-8.897684099999935],[121.3558121000001,-8.890823399999931],[121.3573914000001,-8.887432099999955],[121.36129,-8.887365299999942],[121.36516570000003,-8.884633099999974],[121.3689041,-8.878506699999946],[121.37014010000007,-8.864253],[121.37203980000004,-8.860293399999932],[121.37198640000008,-8.852111799999932],[121.36874390000003,-8.838908199999935],[121.37270360000002,-8.8364935],[121.3698654000001,-8.834142699999973],[121.36762240000007,-8.824697499999957],[121.37126160000003,-8.816598899999974],[121.370491,-8.812617299999943],[121.37524410000003,-8.805033699999967],[121.37451170000008,-8.802427299999977],[121.37727360000008,-8.796692899999925],[121.38100430000009,-8.792737],[121.38858790000006,-8.789085399999976],[121.40497590000007,-8.790434799999957],[121.414238,-8.793775599999947],[121.41357420000008,-8.791009899999949],[121.41573630000005,-8.788048599999968],[121.41729740000005,-8.781286199999954],[121.41556550000007,-8.77614019999993],[121.41764830000011,-8.773897199999965],[121.41480250000006,-8.77191259999995],[121.416481,-8.768755],[121.41561130000002,-8.766306899999961],[121.41774750000002,-8.765214],[121.41613770000004,-8.763755799999956],[121.41898350000008,-8.761287699999968],[121.41552740000009,-8.757855399999926],[121.41729740000005,-8.75661279999997],[121.41557310000007,-8.755135499999938],[121.41777800000011,-8.752454799999953],[121.41658020000011,-8.744253199999946],[121.41162870000005,-8.742143599999963],[121.40968320000002,-8.735424],[121.40446470000006,-8.735491799999977],[121.40286250000008,-8.732106199999976],[121.40081020000002,-8.733073199999978],[121.39768220000008,-8.728306699999962],[121.398529,-8.725575399999968],[121.39568330000009,-8.726181],[121.39710240000011,-8.723594699999978],[121.39636230000008,-8.720559099999946],[121.39481350000005,-8.720256799999959],[121.39678190000006,-8.716017199999953],[121.39859590000003,-8.716929199999981],[121.39952490000007,-8.712222899999972],[121.40253610000002,-8.707676099999958],[121.40461940000012,-8.707571799999926],[121.40514240000005,-8.704804399999944],[121.40859980000005,-8.702181199999927],[121.4090245000001,-8.700261199999943],[121.426409,-8.686259199999938],[121.4300469000001,-8.6811306],[121.42824280000002,-8.677844799999946],[121.432312,-8.670604699999956],[121.43681890000005,-8.67165749999998],[121.43902590000005,-8.669330599999967],[121.4417572000001,-8.669203799999934],[121.44556380000006,-8.671780799999965],[121.44924260000005,-8.668302899999958],[121.4548496000001,-8.670381499999962],[121.45584040000006,-8.669077699999946],[121.46220920000007,-8.668122399999959],[121.46450190000007,-8.6639191],[121.47163480000006,-8.662963799999943],[121.4726538000001,-8.658059899999955],[121.48240720000001,-8.653327299999944],[121.49472050000008,-8.639450099999976],[121.50042540000004,-8.638642799999957],[121.50460050000004,-8.636166599999967],[121.51905970000007,-8.6353286],[121.52339080000002,-8.627302199999974],[121.52301020000004,-8.619423899999958],[121.52102660000003,-8.617282899999964],[121.51918030000002,-8.618086799999958],[121.52032470000006,-8.614254]]]},"properties":{"shapeName":"Nagekeo","shapeISO":"","shapeID":"22746128B79252639063025","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[109.12739720000008,2.461041500000022],[109.12209850000005,2.462573],[109.12277490000008,2.458423700000026],[109.12857430000008,2.455492100000072],[109.130959,2.459542],[109.12739720000008,2.461041500000022]]],[[[108.99018120000005,2.468436200000042],[108.99483620000007,2.470755100000076],[108.99430940000008,2.474206400000071],[108.99043480000006,2.474135],[108.98913110000007,2.469367500000033],[108.99018120000005,2.468436200000042]]],[[[108.98754340000005,2.480572100000074],[108.98752130000008,2.481849700000055],[108.98493810000008,2.483062400000051],[108.98754340000005,2.480572100000074]]],[[[108.95069640000008,2.500866600000052],[108.94534670000007,2.500653900000032],[108.93959710000007,2.496184400000061],[108.93932960000006,2.494038800000055],[108.94293250000004,2.488516600000025],[108.94611730000008,2.487295800000027],[108.94449930000007,2.482560300000046],[108.93867560000007,2.482244700000024],[108.94176130000005,2.479525600000045],[108.94643260000004,2.480418200000031],[108.95192650000007,2.47944],[108.95537790000009,2.480977600000074],[108.95592150000004,2.494132900000068],[108.95882780000005,2.497951100000023],[108.95069640000008,2.500866600000052]]],[[[108.96455140000006,2.498122900000055],[108.96336170000006,2.501117400000055],[108.96143110000008,2.501386800000034],[108.96106510000004,2.497266100000047],[108.96211580000005,2.496586700000023],[108.96455140000006,2.498122900000055]]],[[[108.98605450000008,2.506427400000064],[108.984408,2.506704900000045],[108.98299240000006,2.505047500000046],[108.98342980000007,2.500541],[108.98530410000006,2.500365600000066],[108.98642570000004,2.495954700000027],[108.98835310000004,2.494098800000074],[108.98747280000003,2.490175800000031],[108.990083,2.488906600000064],[108.99400730000008,2.489472900000067],[108.99789990000005,2.493840500000033],[108.99351660000008,2.495336200000054],[108.99325580000004,2.500352400000054],[108.98913020000003,2.498894500000063],[108.98605450000008,2.506427400000064]]],[[[109.14583020000003,2.546651900000029],[109.14461370000004,2.547604700000022],[109.14250150000004,2.546468900000036],[109.13709,2.54124980000006],[109.13570660000005,2.534972800000048],[109.13809920000006,2.53475990000004],[109.14276510000008,2.538216],[109.14583020000003,2.546651900000029]]],[[[108.99793230000006,2.558625500000062],[108.99518610000007,2.560477400000025],[108.98875450000008,2.554652100000055],[108.97846180000005,2.556577700000048],[108.975962,2.555376700000068],[108.97704050000004,2.550336900000048],[108.97556740000005,2.543447300000025],[108.97695740000006,2.537784700000032],[108.97655770000006,2.531390500000043],[108.97906020000005,2.530926],[108.97990850000008,2.52905370000002],[108.97967930000004,2.521003500000063],[108.98770760000008,2.522371700000065],[108.99196430000006,2.525483700000052],[108.99966750000004,2.526172],[109.00532220000008,2.532149100000026],[109.01028020000007,2.529653100000075],[109.00790430000006,2.526318400000036],[109.00822010000007,2.522866500000021],[109.01187520000008,2.528337900000054],[109.01225840000006,2.525961600000073],[109.015332,2.524300900000071],[109.01643990000008,2.525357500000041],[109.01816860000008,2.523156800000038],[109.02165530000008,2.522086500000057],[109.022765,2.51873310000002],[109.01953950000006,2.518190300000072],[109.02007580000009,2.517202300000065],[109.02349370000007,2.516114500000072],[109.02680440000006,2.517351400000052],[109.03382970000007,2.515280100000041],[109.03044990000006,2.514008500000045],[109.03022770000007,2.51267230000002],[109.02870760000008,2.513867100000027],[109.02653010000006,2.511740400000065],[109.02354480000008,2.512048100000072],[109.02375560000007,2.50949810000003],[109.02226410000009,2.512008],[109.020401,2.511796900000036],[109.01779940000006,2.509416100000067],[109.016994,2.505736900000045],[109.01118020000007,2.505398400000047],[109.00686760000008,2.499077600000021],[109.00947270000006,2.495654400000035],[109.00656470000007,2.490209],[109.01662580000004,2.48202740000005],[109.01936770000009,2.481077500000026],[109.02920580000006,2.482003300000031],[109.03719790000008,2.484772],[109.04446850000005,2.489426],[109.04554350000006,2.492831800000033],[109.04997350000008,2.494466600000067],[109.04788,2.491581300000064],[109.04844330000009,2.489890500000058],[109.04964740000008,2.490289100000041],[109.05084750000009,2.493340100000069],[109.05445820000006,2.495475800000065],[109.05077790000007,2.499050600000032],[109.05010840000006,2.502370300000052],[109.051582,2.50304090000003],[109.05530020000003,2.50277490000002],[109.06220860000008,2.499291700000072],[109.06364540000004,2.496724900000061],[109.07034360000006,2.497401700000069],[109.07171730000005,2.495482400000071],[109.07352090000006,2.497719800000027],[109.07529010000007,2.495111700000052],[109.07960580000008,2.494504100000029],[109.08232730000009,2.488957500000026],[109.08699680000007,2.491512400000033],[109.09109930000005,2.498473300000057],[109.09469010000004,2.50008680000002],[109.09687430000008,2.497792600000025],[109.088744,2.489802300000065],[109.08934780000004,2.488759],[109.10018720000005,2.499794700000052],[109.11383670000004,2.504207500000064],[109.117156,2.506948300000033],[109.11665630000005,2.507845600000053],[109.11842150000007,2.508036200000049],[109.117174,2.522264700000051],[109.11999520000006,2.524741300000073],[109.12110810000007,2.529108300000075],[109.11919350000005,2.531632700000046],[109.115191,2.527366100000052],[109.10185820000004,2.528139700000054],[109.09152520000004,2.526978300000053],[109.08349130000005,2.524967300000071],[109.08171910000004,2.521987400000057],[109.07833710000006,2.520706300000029],[109.06192020000009,2.524042],[109.04797020000007,2.527990600000066],[109.02670550000005,2.538175600000045],[109.02217340000004,2.543364600000075],[109.01960310000004,2.553989],[109.01284650000008,2.557053300000064],[109.00994810000009,2.55691],[109.00737770000006,2.559976200000051],[109.00551620000005,2.558706800000039],[109.00309910000004,2.559743900000058],[108.99793230000006,2.558625500000062]]],[[[109.12385960000006,2.558121400000061],[109.12504080000008,2.561423],[109.12276190000006,2.560802800000033],[109.12385960000006,2.558121400000061]]],[[[109.16396520000006,2.592141900000058],[109.16057440000009,2.597126900000035],[109.15703890000009,2.598129700000072],[109.15469020000006,2.59239720000005],[109.156934,2.583328],[109.15909040000008,2.582701100000065],[109.16264740000008,2.585704100000044],[109.16396520000006,2.592141900000058]]],[[[109.13535290000004,2.623824500000069],[109.13483450000007,2.620096800000056],[109.13705050000004,2.617602500000032],[109.13813080000006,2.62193590000004],[109.13535290000004,2.623824500000069]]],[[[109.14329170000008,2.622743600000035],[109.14448870000007,2.626999100000035],[109.14209890000006,2.62882970000004],[109.14060660000007,2.627520200000049],[109.14028310000003,2.623168400000054],[109.14329170000008,2.622743600000035]]],[[[108.56801690000009,2.656641700000023],[108.57136620000006,2.660257300000069],[108.57864750000005,2.678506800000036],[108.58246030000004,2.68352950000002],[108.58332580000007,2.69409550000006],[108.58578770000008,2.6986],[108.58419290000006,2.703565200000071],[108.57725650000003,2.698583],[108.56879980000008,2.684504900000036],[108.56526190000005,2.658932800000059],[108.56591850000007,2.656965600000035],[108.56801690000009,2.656641700000023]]],[[[108.88182610000007,2.698146400000041],[108.885493,2.700563700000032],[108.88153670000008,2.705975700000067],[108.87818340000007,2.706247200000064],[108.87629860000004,2.704110400000047],[108.87668720000005,2.700270900000021],[108.87906730000009,2.69826960000006],[108.88182610000007,2.698146400000041]]],[[[108.75948870000008,2.714374],[108.76007760000005,2.715822500000058],[108.75859480000008,2.715011900000036],[108.75948870000008,2.714374]]],[[[108.75713750000006,2.71847630000002],[108.75284130000006,2.718266200000073],[108.75523340000007,2.71615010000005],[108.75713750000006,2.71847630000002]]],[[[108.76156930000008,2.723281100000065],[108.75209670000004,2.72137390000006],[108.753007,2.719998600000054],[108.75738690000009,2.71992670000003],[108.76156930000008,2.723281100000065]]],[[[108.75753950000006,2.725841400000036],[108.75857840000003,2.72648090000007],[108.75671230000006,2.727331800000059],[108.75753950000006,2.725841400000036]]],[[[108.75409960000007,2.727314100000058],[108.75197670000006,2.729911400000049],[108.75219,2.724352100000033],[108.75449640000005,2.725402100000053],[108.75239030000006,2.725768],[108.75409960000007,2.727314100000058]]],[[[108.75661180000009,2.73362190000006],[108.75532710000004,2.735608800000023],[108.75307530000003,2.732480400000043],[108.75623560000008,2.73136420000003],[108.75444390000007,2.733158900000035],[108.75661180000009,2.73362190000006]]],[[[108.82665680000008,2.737576400000023],[108.82485130000003,2.73997780000002],[108.82369910000006,2.735983800000042],[108.82710410000004,2.732236200000045],[108.82785350000006,2.733052],[108.82514070000008,2.737221700000021],[108.82665680000008,2.737576400000023]]],[[[108.852526,2.746207200000072],[108.85941760000009,2.751306200000045],[108.85842940000003,2.751824500000055],[108.85010160000007,2.745930700000031],[108.841723,2.742554400000074],[108.83566350000007,2.742040200000076],[108.83175390000008,2.738959600000044],[108.836987,2.741683100000046],[108.84995710000004,2.743183100000067],[108.852526,2.746207200000072]]],[[[108.81127710000004,2.751630600000055],[108.81210410000006,2.755064400000037],[108.80960840000006,2.752749100000074],[108.81127710000004,2.751630600000055]]],[[[108.95047560000006,2.760972400000071],[108.94917070000008,2.760028800000043],[108.94942620000006,2.757117900000026],[108.95185540000006,2.756213600000024],[108.95190430000008,2.759453500000063],[108.95047560000006,2.760972400000071]]],[[[108.87192250000004,2.760220600000025],[108.87742470000006,2.765832500000045],[108.87699260000005,2.767106200000057],[108.87344030000008,2.766886300000067],[108.86470070000007,2.758787200000029],[108.86536390000003,2.75777990000006],[108.865891,2.758944500000041],[108.87192250000004,2.760220600000025]]],[[[108.92237860000006,2.767304100000047],[108.91992490000007,2.766879500000073],[108.91743140000005,2.756899],[108.90730690000004,2.75069940000003],[108.90509690000005,2.743913300000031],[108.90202360000006,2.740240100000051],[108.88790260000007,2.732577500000048],[108.88528140000005,2.729889800000024],[108.88646550000004,2.726982600000042],[108.89219560000004,2.726118800000052],[108.89859790000008,2.732179100000053],[108.90376820000006,2.733039700000063],[108.90476190000004,2.734808600000065],[108.91186290000007,2.733809200000053],[108.91485010000008,2.737473400000056],[108.91382410000006,2.742293],[108.91572850000006,2.746245],[108.92563,2.750551700000074],[108.92910510000007,2.755723200000034],[108.92920020000008,2.761315],[108.92632470000007,2.76305560000003],[108.92928760000007,2.766498100000035],[108.92319590000005,2.765710800000022],[108.92237860000006,2.767304100000047]]],[[[108.94222780000007,2.773128700000029],[108.94358470000009,2.770231300000034],[108.94721310000006,2.767691900000045],[108.94603570000004,2.76536980000003],[108.95160360000006,2.763603400000022],[108.95067830000005,2.767481],[108.94835520000004,2.77003],[108.94222780000007,2.773128700000029]]],[[[108.90607090000009,2.807467],[108.90779180000004,2.809318300000029],[108.90589170000004,2.808970300000055],[108.90607090000009,2.807467]]],[[[108.907585,2.863805200000058],[108.90502810000004,2.86289510000006],[108.90662170000007,2.85888570000003],[108.90685290000005,2.861221600000022],[108.90969460000008,2.863047700000038],[108.907585,2.863805200000058]]],[[[108.92339310000006,2.866138],[108.92441640000004,2.871461900000043],[108.92261220000006,2.869537500000035],[108.92339310000006,2.866138]]],[[[108.89185140000006,2.879863500000056],[108.88842310000007,2.880008300000043],[108.88871840000007,2.877530100000058],[108.88604770000006,2.874512400000071],[108.88781020000005,2.87537210000005],[108.888575,2.873731200000066],[108.892273,2.874090700000067],[108.89185140000006,2.879863500000056]]],[[[108.93021670000007,2.891231700000048],[108.93076310000004,2.892968900000028],[108.92831080000008,2.894590100000073],[108.93021670000007,2.891231700000048]]],[[[108.93411410000004,2.892675],[108.93702720000005,2.896768400000042],[108.93244810000004,2.893540100000052],[108.93411410000004,2.892675]]],[[[108.92356650000005,2.895938800000067],[108.92375190000007,2.897549],[108.92252880000007,2.896647200000075],[108.92356650000005,2.895938800000067]]],[[[108.72347030000009,2.897139500000037],[108.72513630000009,2.898231500000065],[108.72944670000004,2.908890600000063],[108.72992730000004,2.91488940000005],[108.72676090000004,2.917223400000069],[108.72250090000006,2.913466300000039],[108.71880890000006,2.900984300000061],[108.72016350000007,2.896838600000024],[108.72347030000009,2.897139500000037]]],[[[108.75045780000005,2.915610100000038],[108.75026520000006,2.919851900000026],[108.74700620000004,2.914939700000048],[108.75045780000005,2.915610100000038]]],[[[108.80664660000008,2.952112100000022],[108.80478750000009,2.956035200000031],[108.80380230000009,2.954424700000061],[108.80664660000008,2.952112100000022]]],[[[108.78902420000009,2.956919600000049],[108.78806640000005,2.959464700000069],[108.78218780000009,2.960651],[108.79166330000004,2.954854300000022],[108.79027810000008,2.957395100000042],[108.78902420000009,2.956919600000049]]],[[[108.86826710000008,3.009835],[108.86382390000006,3.011722100000043],[108.85930990000008,3.008081400000037],[108.85153050000008,3.006530700000042],[108.84637390000006,3.002306],[108.84223490000005,3.001959800000066],[108.83831130000004,2.996594200000061],[108.838945,2.991352800000072],[108.83537180000008,2.985929100000021],[108.83649260000004,2.984006400000055],[108.83598170000005,2.978150800000037],[108.83765510000006,2.97558760000004],[108.83613880000007,2.971771500000045],[108.83639270000003,2.952708],[108.83520550000009,2.951407800000027],[108.83683190000005,2.950638100000049],[108.83449930000006,2.949029400000029],[108.83543060000005,2.947274400000026],[108.83363950000006,2.943275300000039],[108.831726,2.942513200000064],[108.82813330000005,2.935115500000052],[108.82393030000009,2.933051200000023],[108.81093040000007,2.920398900000066],[108.80350330000005,2.916793],[108.794328,2.909742],[108.79005410000008,2.904914700000063],[108.790885,2.902707600000042],[108.78986160000005,2.899351700000068],[108.78639640000006,2.89554540000006],[108.78057950000004,2.895504900000049],[108.77426150000008,2.89205110000006],[108.77632610000006,2.883399700000041],[108.775932,2.877606100000037],[108.78247140000008,2.873966600000074],[108.78841340000008,2.862918200000024],[108.79672810000005,2.857077700000048],[108.80774310000004,2.853449500000067],[108.81262020000008,2.846117800000059],[108.81962410000006,2.843038800000045],[108.82510730000007,2.843107400000065],[108.82886570000005,2.845509900000025],[108.84761360000005,2.850506100000075],[108.85899070000005,2.869053800000074],[108.860144,2.87385850000004],[108.86444890000007,2.878696],[108.87926370000008,2.880883100000062],[108.88332850000006,2.879542700000059],[108.88359660000003,2.87578080000003],[108.88529510000006,2.875084],[108.88378380000006,2.876510300000064],[108.88472290000004,2.880513600000029],[108.87976,2.887123100000053],[108.877484,2.886258400000031],[108.87681370000007,2.887861300000054],[108.88157290000004,2.904260100000045],[108.88760670000005,2.913495100000034],[108.88163350000008,2.911471300000073],[108.87652560000004,2.917696500000034],[108.88293530000004,2.928584800000067],[108.88597730000004,2.937642800000049],[108.88017550000006,2.940374600000041],[108.87597050000005,2.939243600000054],[108.87572070000004,2.940905600000065],[108.87830720000005,2.941879500000027],[108.87857850000006,2.944154900000058],[108.88119590000008,2.943081200000051],[108.88506720000004,2.944313600000044],[108.88703230000004,2.94848810000002],[108.88640130000005,2.960075900000049],[108.88847370000008,2.969877900000029],[108.88859820000005,2.989145400000041],[108.89010110000004,2.999795900000038],[108.88868650000006,3.003643100000033],[108.88606490000006,3.005157800000063],[108.87764950000008,3.008905700000071],[108.87367650000004,3.007745800000066],[108.86826710000008,3.009835]]],[[[107.786841,3.020456300000035],[107.78551440000007,3.021364800000072],[107.78066070000006,3.018813300000033],[107.77682150000004,3.019296800000063],[107.77519210000008,3.018206100000043],[107.77142170000008,3.01894470000002],[107.76321390000004,3.014509600000054],[107.76149180000004,3.015404100000069],[107.76058590000008,3.013253200000065],[107.75325420000007,3.007974300000058],[107.74805670000006,3.006422900000075],[107.75265750000005,3.001509400000032],[107.75121790000009,2.994592300000022],[107.75426620000007,2.987813700000061],[107.75432650000005,2.978306300000042],[107.75328810000008,2.977999900000043],[107.75759430000005,2.971871300000032],[107.76185530000004,2.975092500000073],[107.769241,2.974288600000023],[107.77448620000007,2.975975400000038],[107.77544190000003,2.974863600000049],[107.77649920000005,2.976641700000073],[107.78079570000006,2.977157900000066],[107.78359290000009,2.979098400000055],[107.78986760000004,2.977397200000041],[107.79180940000003,2.97853820000006],[107.79325250000005,2.977768200000071],[107.79371790000005,2.979404700000032],[107.79968450000007,2.981352900000047],[107.80853310000003,2.979724400000066],[107.813942,2.980414800000062],[107.80833180000008,2.991364200000021],[107.80689760000007,3.005127400000049],[107.80433510000006,3.011772900000039],[107.79780170000004,3.01726350000007],[107.786841,3.020456300000035]]],[[[108.87120290000007,3.050291500000071],[108.87199420000007,3.052263200000027],[108.86967360000006,3.05221210000002],[108.86787410000005,3.050308200000075],[108.86732670000004,3.046589900000072],[108.87120290000007,3.050291500000071]]],[[[108.84118710000007,3.054625700000031],[108.83912050000004,3.050844300000051],[108.84101360000005,3.048855900000035],[108.84002750000008,3.046363800000051],[108.83547710000005,3.045296200000053],[108.83489190000006,3.043676400000038],[108.83805730000006,3.040414400000031],[108.83907720000008,3.041443600000036],[108.84348310000007,3.040570100000025],[108.84311460000004,3.039044100000069],[108.84575270000005,3.036154500000066],[108.84746580000007,3.03120860000007],[108.85124930000006,3.02860140000007],[108.85060460000005,3.026065600000038],[108.85234490000005,3.023018600000057],[108.850441,3.014734700000076],[108.84326210000006,3.01173220000004],[108.84558740000006,3.010398400000042],[108.85519680000004,3.013323800000023],[108.86278130000005,3.012449],[108.87049620000005,3.021317500000066],[108.86905440000004,3.023205100000041],[108.86935690000007,3.02619530000004],[108.86363010000008,3.034285400000044],[108.86815730000006,3.038613300000065],[108.86875410000005,3.042832300000043],[108.86417470000004,3.042954100000031],[108.86135650000006,3.048125800000037],[108.86010220000009,3.045876600000042],[108.85862630000008,3.045960900000068],[108.85454430000004,3.050107900000057],[108.85438540000007,3.052162],[108.85165750000004,3.053432800000053],[108.84989580000007,3.051592700000072],[108.84419660000009,3.051954800000033],[108.84313940000004,3.054100500000061],[108.84118710000007,3.054625700000031]]],[[[108.086991,3.582675],[108.086724,3.583596900000032],[108.08171150000004,3.582158800000059],[108.07962860000004,3.576885900000036],[108.08101720000008,3.573853900000074],[108.083924,3.573594100000037],[108.08865420000006,3.57699180000003],[108.09594030000005,3.572786800000074],[108.09489510000009,3.575627800000063],[108.09010380000007,3.577688200000068],[108.08940190000004,3.581493600000044],[108.086991,3.582675]]],[[[108.04546090000008,3.588581200000021],[108.04369080000004,3.590812500000027],[108.04566680000005,3.59306040000007],[108.04295080000009,3.593147400000021],[108.04131050000007,3.590188600000033],[108.04184450000008,3.583888400000035],[108.04020420000006,3.581134900000052],[108.03487130000008,3.578081200000042],[108.03263590000006,3.573750300000029],[108.03812140000008,3.561169200000052],[108.04315680000008,3.556694100000072],[108.04489630000006,3.556904400000064],[108.04858890000008,3.561416300000076],[108.04684940000004,3.574834900000042],[108.04830660000005,3.581248600000038],[108.05024450000008,3.583255200000053],[108.04912290000004,3.58853780000004],[108.04546090000008,3.588581200000021]]],[[[108.05480510000007,3.590020100000061],[108.05648350000007,3.591985900000054],[108.05578920000005,3.593713500000035],[108.053653,3.592246],[108.05480510000007,3.590020100000061]]],[[[108.04193360000005,3.599366300000042],[108.04137660000004,3.605825700000025],[108.04481750000008,3.611347800000033],[108.04438260000006,3.61342680000007],[108.03831730000007,3.605745100000036],[108.03781370000007,3.601750200000026],[108.04193360000005,3.599366300000042]]],[[[108.04367560000009,3.617993900000045],[108.04234050000008,3.61745],[108.04464460000008,3.615926800000068],[108.04367560000009,3.617993900000045]]],[[[108.12734650000004,3.625638600000059],[108.12832310000005,3.62317470000005],[108.12910890000006,3.62524540000004],[108.12734650000004,3.625638600000059]]],[[[108.13714160000006,3.621637200000066],[108.13907190000003,3.624010600000076],[108.13791980000008,3.627520400000037],[108.13418140000005,3.625614700000028],[108.13322010000007,3.622123100000067],[108.13382280000008,3.621028500000023],[108.13714160000006,3.621637200000066]]],[[[108.10369590000005,3.636749700000053],[108.09573840000007,3.635783600000025],[108.09328940000006,3.632601700000066],[108.092145,3.626132700000028],[108.08945940000007,3.622715],[108.09042080000006,3.617434],[108.08832270000005,3.612719300000037],[108.085866,3.612006100000031],[108.08247090000003,3.614463800000067],[108.07919030000005,3.614688100000023],[108.07525350000009,3.610780900000066],[108.07412440000007,3.605555],[108.070241,3.60158320000005],[108.06931790000004,3.59450140000007],[108.066228,3.589285300000029],[108.06946280000005,3.582918100000029],[108.07402520000005,3.583637900000042],[108.076253,3.582469400000036],[108.07718380000006,3.583530400000029],[108.07804590000006,3.582324400000061],[108.08010580000007,3.584362500000054],[108.07880120000004,3.58809750000006],[108.08105190000003,3.589007800000047],[108.08067040000009,3.591182700000047],[108.08323390000004,3.593894700000021],[108.08170040000005,3.595645400000024],[108.08797940000005,3.597873200000038],[108.093999,3.593693900000062],[108.095296,3.590759200000036],[108.09903440000005,3.591946600000028],[108.09974390000008,3.58948040000007],[108.10386370000003,3.585795100000041],[108.10677060000006,3.589267500000062],[108.10687740000009,3.591854100000035],[108.102994,3.599247700000035],[108.10316180000007,3.60146160000005],[108.10894490000004,3.60564160000007],[108.11417870000008,3.604092100000059],[108.12124350000005,3.606866100000047],[108.12225060000009,3.615178800000024],[108.12514970000007,3.622946800000022],[108.11517050000003,3.632202100000029],[108.10369590000005,3.636749700000053]]],[[[108.054624,3.668814500000053],[108.04883320000005,3.667868200000044],[108.04493460000003,3.664195100000029],[108.04999290000006,3.65592220000002],[108.05344140000005,3.644091400000036],[108.05326590000004,3.640413300000034],[108.04916890000004,3.635425800000064],[108.050939,3.630495600000074],[108.05450950000005,3.62908340000007],[108.05349480000007,3.636380300000042],[108.05496730000004,3.636108700000023],[108.05548610000005,3.637797600000056],[108.06286370000004,3.634765200000061],[108.067304,3.635485200000062],[108.07574210000007,3.632809],[108.08205160000006,3.634005100000024],[108.08519490000003,3.638952600000039],[108.08598070000005,3.645883400000059],[108.08269250000006,3.653755800000056],[108.07823690000004,3.657973100000049],[108.07478080000004,3.664355600000022],[108.070989,3.666338],[108.063001,3.665093700000057],[108.054624,3.668814500000053]]],[[[108.08646870000007,3.693184100000053],[108.07292660000007,3.689992400000051],[108.07338430000004,3.688239100000033],[108.07620720000006,3.688974600000051],[108.07835870000008,3.686712200000045],[108.07908350000008,3.684293900000057],[108.07726010000005,3.681110600000068],[108.08120450000007,3.682485500000041],[108.08186060000008,3.684151600000064],[108.08524040000009,3.682316700000058],[108.08380610000006,3.687002100000029],[108.09042080000006,3.691109200000028],[108.08936030000007,3.693223900000021],[108.08646870000007,3.693184100000053]]],[[[108.27440310000009,3.714802100000043],[108.272729,3.713155800000038],[108.27503480000007,3.711303200000032],[108.27614560000006,3.712261900000044],[108.27440310000009,3.714802100000043]]],[[[108.06283580000007,3.747714400000064],[108.064766,3.751115200000072],[108.06352240000007,3.752389300000061],[108.06201940000005,3.751225800000043],[108.06177530000008,3.747828600000048],[108.05792240000005,3.744598300000064],[108.05935680000005,3.743597400000056],[108.06175240000005,3.744729],[108.06283580000007,3.747714400000064]]],[[[108.11681380000005,3.76259170000003],[108.11539470000008,3.762464],[108.11605840000004,3.759453700000051],[108.11503610000005,3.758140500000025],[108.11657720000005,3.756107200000031],[108.11454780000008,3.752666100000056],[108.12077340000008,3.755259400000057],[108.12357340000005,3.754286200000024],[108.12566380000004,3.755275600000061],[108.12607580000008,3.75719470000007],[108.12072,3.757457600000066],[108.11895,3.758855],[108.12001050000003,3.761384600000042],[108.11681380000005,3.76259170000003]]],[[[108.39707280000005,3.76823],[108.39805970000003,3.770326900000043],[108.39593590000004,3.769082900000058],[108.39707280000005,3.76823]]],[[[108.11576850000006,3.766638400000033],[108.11720280000009,3.767533400000048],[108.11684430000008,3.769760500000075],[108.11283880000008,3.772582200000045],[108.11090090000005,3.771097600000076],[108.11091620000008,3.767018200000052],[108.11229710000003,3.765717600000073],[108.11576850000006,3.766638400000033]]],[[[108.41223150000008,3.794755200000054],[108.41323860000006,3.796720900000025],[108.41236880000008,3.798180500000058],[108.41036230000009,3.796810300000061],[108.41223150000008,3.794755200000054]]],[[[108.00218210000008,3.818058600000029],[107.99481210000005,3.814382500000022],[107.99174510000006,3.810216800000035],[107.99412550000005,3.809402800000043],[107.99549110000004,3.811578200000042],[107.99948890000007,3.810551100000055],[108.00213630000007,3.811463],[107.999817,3.81154650000002],[108.00064860000003,3.812681800000064],[108.00419630000005,3.812833500000067],[108.005745,3.810512],[108.00350960000009,3.809921400000064],[108.00311290000008,3.807953700000041],[108.01138310000005,3.807162900000037],[108.01563270000008,3.803757500000074],[108.01268780000004,3.797083300000054],[108.01750950000007,3.792429600000048],[108.01732640000006,3.787177200000031],[108.013382,3.78536790000004],[108.01186380000007,3.781358100000034],[108.01255040000007,3.779605],[108.01412970000007,3.77808820000007],[108.018364,3.778095400000041],[108.02555090000004,3.776170100000058],[108.02467360000009,3.774383],[108.02600110000009,3.775713800000062],[108.02616890000007,3.777886800000033],[108.02907570000008,3.779378300000076],[108.03084570000004,3.778241800000046],[108.03117380000003,3.775543600000049],[108.03457650000007,3.775165700000059],[108.03379830000006,3.76813930000003],[108.02980810000008,3.764491500000076],[108.03017430000006,3.763000400000067],[108.03373720000008,3.763289600000064],[108.03816230000007,3.76692950000006],[108.03977970000005,3.766607700000066],[108.03997810000004,3.773722100000043],[108.03726970000008,3.777058300000022],[108.03820810000008,3.783166600000072],[108.035904,3.784345300000041],[108.03297430000003,3.782313200000033],[108.03088390000005,3.784746300000052],[108.03115850000006,3.788598200000024],[108.02906810000007,3.789291800000058],[108.02977,3.793347500000039],[108.03478250000006,3.79250920000004],[108.03544620000008,3.794317900000067],[108.03330240000008,3.797068],[108.03311930000007,3.79469030000007],[108.03165440000004,3.795968900000048],[108.03066260000008,3.794634200000075],[108.03153240000006,3.802529700000036],[108.02829750000006,3.807513800000038],[108.01767740000008,3.815722600000072],[108.01246650000007,3.814088],[108.00218210000008,3.818058600000029]]],[[[108.04567090000006,3.851930300000049],[108.04304670000005,3.851912700000071],[108.04365540000003,3.849457400000063],[108.04526670000007,3.84959310000005],[108.04567090000006,3.851930300000049]]],[[[108.41597750000005,3.862222100000054],[108.41623690000006,3.863974300000052],[108.41196450000007,3.86095830000005],[108.41494760000006,3.859318200000075],[108.41597750000005,3.862222100000054]]],[[[108.03766170000006,3.863122],[108.03581760000009,3.864312400000074],[108.03537410000007,3.862384800000029],[108.03732290000005,3.861968600000068],[108.03766170000006,3.863122]]],[[[108.00483580000008,3.863226200000042],[108.00052340000008,3.864743600000054],[108.002591,3.862978100000021],[108.00483580000008,3.863226200000042]]],[[[108.38353440000009,3.873021300000062],[108.38327510000005,3.874270100000047],[108.382474,3.873375100000032],[108.38353440000009,3.873021300000062]]],[[[108.35976420000009,3.881009500000062],[108.36139690000005,3.883673100000067],[108.35932170000007,3.884898400000054],[108.35769660000005,3.882648400000051],[108.35976420000009,3.881009500000062]]],[[[108.38009990000006,3.886770400000046],[108.37816790000005,3.885305600000038],[108.37711070000006,3.885963],[108.37921050000006,3.883785],[108.37789540000006,3.881124500000055],[108.37990050000008,3.87891030000003],[108.38315880000005,3.884465400000067],[108.38265520000004,3.886422400000072],[108.38009990000006,3.886770400000046]]],[[[108.37519520000006,3.894489100000044],[108.37218160000003,3.893427400000064],[108.37286820000008,3.890081900000041],[108.374745,3.89065770000002],[108.374066,3.892464200000063],[108.37622510000006,3.894123400000069],[108.37519520000006,3.894489100000044]]],[[[108.36952760000008,3.898382600000048],[108.36784910000006,3.899048700000037],[108.36748290000008,3.897705300000041],[108.36960390000007,3.89663070000006],[108.36952760000008,3.898382600000048]]],[[[107.89817010000007,3.913355800000033],[107.89505720000005,3.911877300000072],[107.89479020000005,3.892545400000074],[107.90205340000006,3.888139900000056],[107.90363270000006,3.883911800000021],[107.911056,3.881856900000059],[107.91347460000009,3.882585500000062],[107.91413830000005,3.885358500000052],[107.91928050000007,3.889109800000028],[107.92085980000007,3.900814900000057],[107.91210890000008,3.90817370000002],[107.90349540000005,3.909510500000067],[107.90110740000006,3.912636400000054],[107.89817010000007,3.913355800000033]]],[[[107.96211960000005,3.930276],[107.96018940000005,3.934384400000056],[107.95995290000008,3.930916400000058],[107.961227,3.929574800000069],[107.96211960000005,3.930276]]],[[[107.94895080000003,3.94528820000005],[107.94486150000006,3.944990100000041],[107.94431980000007,3.942870600000049],[107.94576170000005,3.940995200000032],[107.95106410000005,3.941194800000062],[107.95838830000008,3.937510700000075],[107.94895080000003,3.94528820000005]]],[[[107.97668470000008,3.963939100000061],[107.975052,3.963575],[107.97656260000008,3.959650200000056],[107.98204810000004,3.959371400000066],[107.98136150000005,3.962313800000061],[107.97837840000005,3.962139500000035],[107.97668470000008,3.963939100000061]]],[[[107.97853860000004,3.966204800000071],[107.97467810000006,3.965814500000022],[107.97911840000006,3.964726100000064],[107.97853860000004,3.966204800000071]]],[[[108.41754680000008,4.013087300000052],[108.41615120000006,4.012234900000067],[108.415745,4.002811100000031],[108.42005950000004,4.006217900000024],[108.41869630000008,4.007278],[108.41754680000008,4.013087300000052]]],[[[107.95298170000007,4.013431400000059],[107.95062420000005,4.012581200000056],[107.95067760000006,4.011276500000065],[107.95815440000007,4.008820800000024],[107.95761280000005,4.011618400000032],[107.95298170000007,4.013431400000059]]],[[[108.36018380000007,4.011064400000066],[108.36195380000004,4.013528300000075],[108.35967660000006,4.017620700000066],[108.35889440000005,4.012397700000065],[108.36018380000007,4.011064400000066]]],[[[107.90066260000003,4.034821600000043],[107.896291,4.036813800000061],[107.89648170000004,4.034144500000025],[107.90055580000006,4.032103600000028],[107.90135690000005,4.027415400000052],[107.90309640000004,4.029304100000047],[107.90066260000003,4.034821600000043]]],[[[107.91409330000005,4.038205700000049],[107.91054560000003,4.036488600000041],[107.91442130000007,4.032767800000045],[107.91625240000008,4.036319800000058],[107.91581750000006,4.038050700000042],[107.91409330000005,4.038205700000049]]],[[[108.02639020000004,4.080211500000075],[108.01682290000008,4.07735150000002],[108.01494610000009,4.075329700000054],[108.02030190000005,4.075433100000055],[108.02639020000004,4.080211500000075]]],[[[107.99305480000004,4.101372200000071],[107.99492830000008,4.10476170000004],[107.993245,4.103981100000055],[107.99305480000004,4.101372200000071]]],[[[108.11729160000004,4.154845500000022],[108.11337010000005,4.151998300000059],[108.11607860000004,4.152494700000034],[108.11729160000004,4.154845500000022]]],[[[107.86116750000008,4.158410900000035],[107.85967270000003,4.159364900000071],[107.85761320000006,4.154592800000046],[107.85431820000008,4.151334600000041],[107.85312190000008,4.140941500000054],[107.84602270000005,4.138862500000073],[107.84451450000006,4.127452400000038],[107.84257130000009,4.125626700000055],[107.84551120000003,4.124789100000044],[107.84597340000005,4.122130300000038],[107.84449220000005,4.11967670000007],[107.84152840000007,4.121079900000041],[107.840044,4.116768],[107.84031230000005,4.114034900000036],[107.84382270000003,4.112026100000037],[107.84470260000006,4.117494100000044],[107.84808760000004,4.118879600000071],[107.85196610000008,4.115284600000052],[107.86249070000008,4.126027300000032],[107.86308050000008,4.128830200000039],[107.86028980000003,4.137812],[107.86273410000007,4.145884700000067],[107.86724990000005,4.149031200000024],[107.86887490000004,4.155712700000038],[107.86795530000006,4.157241700000043],[107.86116750000008,4.158410900000035]]],[[[108.21994220000005,4.229425200000037],[108.211855,4.227961300000061],[108.20630850000003,4.224479500000029],[108.20036520000008,4.211568600000021],[108.19992270000006,4.204254],[108.19359030000004,4.192529400000069],[108.18693750000006,4.188680900000065],[108.18554890000007,4.183632600000067],[108.18213860000009,4.181551700000057],[108.18091790000005,4.177354100000059],[108.173319,4.171037],[108.17468470000006,4.168293700000049],[108.17357080000005,4.164237700000058],[108.15691590000006,4.148878300000035],[108.148554,4.143861500000071],[108.14881340000005,4.141936],[108.14628810000005,4.139405500000066],[108.14603640000007,4.137194400000055],[108.13444730000003,4.134602800000039],[108.12565830000005,4.123719900000026],[108.12283540000004,4.122859700000049],[108.116152,4.115525400000024],[108.11152860000004,4.115725700000041],[108.11051390000006,4.112200400000063],[108.10640930000005,4.109880600000054],[108.10427310000006,4.106643400000053],[108.09706330000006,4.104180500000041],[108.09405730000009,4.106946200000039],[108.09218810000004,4.104080800000077],[108.08941870000007,4.103312200000062],[108.08844970000007,4.098202400000048],[108.08378820000007,4.092074600000046],[108.07915710000009,4.075665600000036],[108.07387760000006,4.067402],[108.06952890000008,4.066987200000028],[108.06278450000008,4.062802900000065],[108.05781780000007,4.05518550000005],[108.03257210000004,4.056969300000048],[108.03228980000006,4.054640900000038],[108.02611770000004,4.053163100000063],[108.02294380000006,4.049465800000064],[108.02150190000003,4.046647700000051],[108.02115090000007,4.03733550000004],[108.016436,4.03295380000003],[108.01413950000006,4.027125900000044],[107.99228130000006,4.016820500000051],[107.97373430000005,4.014323300000058],[107.97161330000006,4.01023820000006],[107.96824110000006,4.009419500000035],[107.96669240000006,4.005333],[107.96476210000009,4.006300500000066],[107.96229020000004,4.004341200000056],[107.961924,4.001643200000046],[107.96355670000008,3.999397600000066],[107.966967,3.999240200000031],[107.96694410000003,3.997934900000075],[107.97182690000005,3.997843100000068],[107.97661060000007,4.000885100000062],[107.982531,3.999200900000062],[107.988665,3.987797100000023],[107.98717730000004,3.984266600000069],[107.99378430000007,3.982134900000062],[107.99390640000007,3.975885],[107.98966450000006,3.964774700000021],[107.99276970000005,3.962397700000054],[107.992762,3.960159600000054],[107.98707810000008,3.954233700000032],[107.98967210000006,3.950963600000023],[107.98881760000006,3.943101900000045],[107.99894950000004,3.927528],[108.01079030000005,3.91991390000004],[108.01064530000008,3.918384600000024],[108.008944,3.917900900000063],[108.00960770000006,3.916366200000027],[108.01465080000008,3.913449600000035],[108.014933,3.911188],[108.01948020000003,3.90933670000004],[108.02443160000007,3.910222600000054],[108.02762840000008,3.907200900000021],[108.03081740000005,3.898341500000072],[108.03074120000008,3.893181700000071],[108.02869650000008,3.891742100000045],[108.02337880000005,3.892668800000024],[108.02463770000008,3.889829500000076],[108.01812210000008,3.885219200000051],[108.01928950000007,3.878218300000071],[108.02057120000006,3.878330800000072],[108.02116630000006,3.876427700000022],[108.02639240000008,3.87728130000005],[108.02858970000005,3.873355900000035],[108.03135910000009,3.872514100000046],[108.03293080000009,3.868423300000075],[108.03922510000007,3.864642],[108.04538960000008,3.864261300000067],[108.04889150000008,3.859804700000041],[108.04909750000007,3.856427800000063],[108.05256130000004,3.849317],[108.05809260000007,3.844415100000049],[108.06007620000008,3.838304900000026],[108.06321190000006,3.834121300000049],[108.07300040000007,3.832938300000023],[108.073214,3.834158100000025],[108.076426,3.834675],[108.08139270000004,3.832848900000045],[108.08594750000009,3.833203],[108.09004450000003,3.829394],[108.09296650000005,3.820623800000021],[108.10047380000009,3.820837900000072],[108.10200730000008,3.823020600000063],[108.10360950000006,3.822445800000025],[108.10796590000007,3.825717300000065],[108.11783070000007,3.826005400000042],[108.12800830000003,3.821319800000026],[108.13165510000005,3.816173900000024],[108.14679950000004,3.814260900000022],[108.148127,3.81077380000005],[108.15452040000008,3.804245200000025],[108.16223380000008,3.803437200000076],[108.16901630000007,3.807771200000047],[108.17287670000007,3.804453800000033],[108.181971,3.802644],[108.18544240000006,3.80553],[108.18973010000008,3.804950700000063],[108.19277420000009,3.802213600000073],[108.19331590000007,3.799838500000021],[108.19636,3.801296200000024],[108.20734630000004,3.80192420000003],[108.20783460000007,3.799686700000052],[108.21038280000005,3.798508900000058],[108.215876,3.791835300000059],[108.22322310000004,3.788645300000042],[108.227615,3.793217500000026],[108.23056410000004,3.810393100000056],[108.22597220000006,3.820520200000033],[108.21835430000004,3.828906400000051],[108.22163780000005,3.82774820000003],[108.22872410000008,3.821140400000047],[108.23047,3.821109800000045],[108.23340820000004,3.817324400000075],[108.23633570000004,3.810708300000044],[108.23498970000009,3.791639700000076],[108.23303240000007,3.78854670000004],[108.22851570000006,3.789095900000063],[108.22352830000005,3.784797200000071],[108.22370380000007,3.782764200000031],[108.226664,3.777486500000066],[108.23967970000007,3.773036500000046],[108.25002520000004,3.76523990000004],[108.25279460000007,3.761376400000074],[108.25497670000004,3.760965400000032],[108.25182570000004,3.759684100000072],[108.25126110000008,3.757635600000071],[108.252993,3.752972400000033],[108.25516740000006,3.751244600000064],[108.25577780000003,3.745158900000035],[108.26030960000008,3.738005200000032],[108.26495590000007,3.737696],[108.26616140000004,3.73634370000002],[108.26980060000005,3.726063300000021],[108.27493520000007,3.720199100000059],[108.27515640000007,3.714596300000039],[108.27677310000007,3.712264400000038],[108.27615130000004,3.71047260000006],[108.27199020000006,3.710725300000036],[108.265017,3.717809200000033],[108.264399,3.72346570000002],[108.25973740000006,3.730446100000052],[108.25691450000005,3.732172],[108.25115440000008,3.732149600000071],[108.237864,3.746209100000044],[108.22555010000008,3.755123600000047],[108.223246,3.758633600000053],[108.21865320000006,3.760473700000034],[108.21680680000009,3.766920800000037],[108.21334310000009,3.770689200000049],[108.20775830000008,3.773484],[108.20457690000006,3.77798910000007],[108.19879380000003,3.77997890000006],[108.19932020000005,3.781651900000043],[108.19816060000005,3.780168800000069],[108.19382710000008,3.780730400000039],[108.19426960000004,3.781754900000067],[108.18841020000008,3.783398800000043],[108.18447340000006,3.780010200000049],[108.18426750000003,3.77691],[108.18117750000005,3.777771700000073],[108.178431,3.775181700000076],[108.175692,3.775030100000038],[108.173098,3.772012700000062],[108.17373130000004,3.768454500000075],[108.17271660000006,3.767666],[108.16741410000009,3.765411100000051],[108.15425340000007,3.765009100000043],[108.15022510000006,3.761246100000051],[108.14946980000008,3.759976600000073],[108.15172810000007,3.758498600000053],[108.15158320000006,3.754889],[108.14899680000008,3.750687800000037],[108.15078970000008,3.742475900000045],[108.149714,3.740298500000051],[108.14793630000008,3.74041120000004],[108.14894340000006,3.741510600000026],[108.14811180000004,3.743937900000049],[108.143969,3.746822300000076],[108.14162680000004,3.751314600000057],[108.13495110000008,3.750176100000033],[108.13454670000004,3.74568430000005],[108.13097620000008,3.745800400000064],[108.12653590000008,3.74862950000005],[108.12505580000004,3.746164700000065],[108.12180570000004,3.74666540000004],[108.11799860000008,3.743903100000068],[108.11534360000007,3.739098200000058],[108.11810540000005,3.72977110000005],[108.120852,3.727606],[108.119967,3.726004300000056],[108.12124870000008,3.723706400000026],[108.11944820000008,3.724394700000062],[108.11310820000006,3.722670400000027],[108.11034630000006,3.708771100000035],[108.10401390000004,3.700053800000035],[108.10312890000006,3.696086],[108.09353880000003,3.691514400000074],[108.09209680000004,3.683644400000048],[108.08962490000005,3.681142400000056],[108.09300480000007,3.677252900000042],[108.09809360000008,3.678676300000063],[108.10153440000005,3.677600300000051],[108.10389950000007,3.675561800000025],[108.11409240000006,3.67227],[108.118876,3.665692900000067],[108.11926510000006,3.667874200000028],[108.12123350000007,3.669159300000047],[108.12723020000004,3.664318700000024],[108.12452940000009,3.670617],[108.11828090000006,3.675928300000066],[108.12146240000004,3.677153700000076],[108.12668850000006,3.674293],[108.12658170000009,3.669176700000037],[108.13180020000004,3.661259100000052],[108.13257840000006,3.663121100000069],[108.139071,3.663141900000028],[108.14109280000008,3.660967],[108.14212280000004,3.661792900000023],[108.141337,3.663613500000054],[108.14367920000007,3.664488500000061],[108.14516690000005,3.661048300000061],[108.14246610000004,3.66095370000005],[108.14255,3.659153600000025],[108.14551790000007,3.659325800000033],[108.14781430000005,3.656327600000054],[108.14875270000005,3.64258140000004],[108.15304810000003,3.632107400000052],[108.15617610000004,3.629879200000062],[108.16214230000008,3.634694300000035],[108.16467530000006,3.63981810000007],[108.16968020000007,3.640818300000035],[108.17238860000003,3.639823400000068],[108.17657710000009,3.643181500000026],[108.18319180000009,3.641155400000059],[108.18757870000007,3.642448400000035],[108.18948610000007,3.64405320000003],[108.18998960000005,3.645845100000031],[108.18858580000006,3.647631300000057],[108.19028710000003,3.651090300000021],[108.19606260000006,3.656863600000065],[108.19940430000008,3.657144300000027],[108.20192960000008,3.659433800000045],[108.20604940000004,3.659261400000048],[108.20972680000006,3.655237400000033],[108.21105430000006,3.656387500000051],[108.21031430000005,3.660809500000028],[108.21554040000007,3.658459600000072],[108.22500850000006,3.663861300000065],[108.24646230000008,3.663991700000054],[108.26113360000005,3.660758],[108.27585080000006,3.665223100000048],[108.27938310000008,3.664512600000023],[108.28650140000008,3.659297700000025],[108.29600760000005,3.657717],[108.29970780000008,3.661948500000051],[108.30100480000004,3.666786900000034],[108.30549090000005,3.670693400000062],[108.30428550000005,3.676767900000073],[108.30624620000003,3.681570800000031],[108.30558250000007,3.689947200000063],[108.30677260000004,3.698009500000069],[108.30497210000004,3.702800600000046],[108.30467450000003,3.717126200000052],[108.30972520000006,3.730828300000042],[108.31600420000007,3.739737800000057],[108.32896650000004,3.748348100000044],[108.331591,3.759707500000047],[108.33747330000006,3.765619600000036],[108.34428630000008,3.767534300000023],[108.35180120000007,3.763737],[108.35427320000008,3.766319400000043],[108.35689770000005,3.773855100000048],[108.36226110000007,3.777841700000067],[108.36614450000008,3.783325800000057],[108.37213360000004,3.786550900000066],[108.37797010000008,3.787143100000037],[108.38255530000004,3.792441200000042],[108.38686590000009,3.793530600000054],[108.386164,3.800035600000058],[108.39068820000006,3.803919700000051],[108.389498,3.805236700000023],[108.39057380000008,3.813143100000048],[108.39693670000008,3.827264200000059],[108.39411380000007,3.832868900000051],[108.39443420000003,3.841052700000034],[108.39629580000008,3.844776],[108.39555570000005,3.846892],[108.40140750000006,3.853918],[108.41000580000008,3.858659200000034],[108.40770170000008,3.859445200000039],[108.40163640000009,3.856230400000072],[108.398905,3.860679],[108.40040040000008,3.865876100000037],[108.40727450000009,3.876029200000062],[108.40867070000007,3.88408940000005],[108.40773990000008,3.886604900000066],[108.40152950000004,3.884686100000067],[108.398165,3.881689900000026],[108.39675350000005,3.879937],[108.39686040000004,3.875917300000026],[108.39459440000007,3.875451500000054],[108.38921570000008,3.867523600000027],[108.385607,3.866982800000073],[108.38323430000008,3.86048420000003],[108.377291,3.854541900000072],[108.37874820000008,3.86065560000003],[108.376467,3.861648700000046],[108.379534,3.861837700000024],[108.38047240000009,3.865353900000059],[108.378649,3.865548500000045],[108.38310460000008,3.870580800000027],[108.38020540000008,3.870451600000024],[108.37869480000006,3.872580200000073],[108.37757330000005,3.871589100000051],[108.37903810000006,3.875134800000069],[108.37867950000003,3.878898500000048],[108.37357540000005,3.883289700000034],[108.37258360000004,3.88665450000002],[108.36667850000003,3.893045800000039],[108.36165830000004,3.892923],[108.35862180000004,3.887369],[108.362879,3.882553400000063],[108.36052920000009,3.876985400000024],[108.36272650000006,3.873004800000047],[108.35973570000004,3.875229200000035],[108.35675260000005,3.873444200000051],[108.35486060000005,3.874901600000044],[108.35268620000005,3.873678600000062],[108.35306760000009,3.876580300000057],[108.35499790000006,3.876421100000073],[108.35639410000005,3.87871750000005],[108.35432650000007,3.882786600000031],[108.35753840000007,3.890315600000065],[108.35658480000006,3.895015800000067],[108.35434940000005,3.897956900000054],[108.36351990000009,3.899079200000074],[108.36472530000009,3.902089],[108.362406,3.90235430000007],[108.36229920000005,3.903680400000042],[108.36433620000008,3.903431],[108.36548060000007,3.905097900000044],[108.36733460000005,3.903184500000066],[108.36619780000007,3.900366700000063],[108.36835690000004,3.900885200000062],[108.37025660000006,3.904032800000039],[108.37326260000003,3.900261300000068],[108.37600160000005,3.899566100000072],[108.37676450000004,3.900592],[108.38034270000009,3.896563400000048],[108.39027620000007,3.89565360000006],[108.39028380000008,3.901122200000032],[108.39411370000005,3.911263800000029],[108.394068,3.916578700000059],[108.38266970000006,3.927026400000045],[108.38202120000005,3.931565400000068],[108.39114590000008,3.944578100000058],[108.39331260000006,3.944905],[108.39665430000008,3.956044800000029],[108.40098780000005,3.95586650000007],[108.402384,3.957341800000052],[108.401972,3.962907700000073],[108.40337580000005,3.964380900000037],[108.40194150000008,3.964680100000066],[108.40222380000006,3.966104200000075],[108.400057,3.966097300000058],[108.39973660000004,3.968398900000068],[108.39406790000004,3.968061400000067],[108.38487450000008,3.97557960000006],[108.38020530000006,3.979640600000039],[108.37674920000006,3.986810600000069],[108.37356780000005,3.986608600000068],[108.35762230000006,3.99314540000006],[108.35372370000005,3.996522500000026],[108.34726160000008,3.998198100000025],[108.34552970000004,4.000182500000051],[108.34444640000004,4.00569710000002],[108.34693350000003,4.013258800000074],[108.34586540000004,4.015816600000051],[108.33051510000007,4.02610530000004],[108.32538810000005,4.031774400000074],[108.31498160000007,4.038992300000075],[108.30601710000008,4.048825600000043],[108.29569450000008,4.05416660000003],[108.29365750000005,4.058064300000069],[108.29215450000004,4.058058100000039],[108.29355830000009,4.058824400000049],[108.29290980000007,4.062144100000069],[108.29671680000007,4.070019600000023],[108.29709830000007,4.077030500000035],[108.29963130000004,4.082565200000033],[108.29910480000007,4.086400800000035],[108.29738060000005,4.087601500000062],[108.29020130000004,4.08319890000007],[108.28521170000005,4.082903700000031],[108.265566,4.091338900000039],[108.253359,4.103292800000077],[108.25353450000006,4.10753040000003],[108.24780480000004,4.112627300000042],[108.246401,4.117686500000048],[108.23359890000006,4.128143100000045],[108.22889910000004,4.143470100000059],[108.22868550000004,4.147416900000053],[108.23170680000004,4.149393300000042],[108.23192040000004,4.15401490000005],[108.230074,4.156975500000044],[108.22896020000007,4.164933500000075],[108.23088280000007,4.17090440000004],[108.22847950000005,4.172438400000033],[108.22870080000007,4.177676500000075],[108.22603050000004,4.179310100000066],[108.22440540000008,4.184428],[108.22641190000007,4.187454],[108.22610680000008,4.191481900000042],[108.22891440000006,4.200035400000047],[108.23294270000008,4.199523700000043],[108.232462,4.201883100000032],[108.23358350000007,4.202163],[108.23488820000006,4.207338100000072],[108.24154860000004,4.21222240000003],[108.24234970000003,4.215858300000036],[108.24144180000008,4.218591],[108.23691,4.219848900000045],[108.23224840000006,4.217276900000059],[108.22723590000004,4.217041800000061],[108.22598470000008,4.222699400000067],[108.21994220000005,4.229425200000037]]],[[[108.22088630000007,4.241652900000076],[108.21926130000008,4.241119300000037],[108.21982580000008,4.235444],[108.22198490000005,4.238987800000075],[108.22088630000007,4.241652900000076]]],[[[108.20960240000005,4.26548850000006],[108.21049510000006,4.26861370000006],[108.20835120000004,4.268746800000031],[108.20379650000007,4.265062700000044],[108.20155340000008,4.265983500000061],[108.20101940000006,4.264040800000032],[108.198639,4.263910700000054],[108.19817360000008,4.260226600000067],[108.20018780000004,4.258545800000036],[108.19992070000006,4.255134500000054],[108.191414,4.244246400000065],[108.18621070000006,4.234852200000034],[108.18925480000007,4.234379200000035],[108.18890390000007,4.236885],[108.19078830000007,4.240372100000059],[108.19945530000007,4.247516100000041],[108.20286570000007,4.254661900000031],[108.20269020000006,4.258058],[108.20960240000005,4.26548850000006]]],[[[107.73177590000006,4.520079900000042],[107.72959120000007,4.521648300000038],[107.72844790000005,4.519969700000047],[107.72346560000005,4.520048700000075],[107.72399080000008,4.513458400000047],[107.72870110000008,4.510810400000025],[107.73158140000004,4.511564900000053],[107.73145530000005,4.517043200000046],[107.73267770000007,4.517714900000044],[107.73177590000006,4.520079900000042]]],[[[108.00737170000008,4.774574],[107.99892870000008,4.774460600000054],[107.99215530000004,4.769435300000055],[107.99156070000004,4.759771800000067],[107.98977990000009,4.755137600000069],[107.97644910000008,4.742396600000063],[107.97509720000005,4.738558200000057],[107.97637250000008,4.738492800000074],[107.97445240000008,4.737782800000048],[107.96713780000005,4.718685],[107.95830780000006,4.707791100000065],[107.94393020000007,4.698318],[107.93314640000006,4.696212800000069],[107.927585,4.69371110000003],[107.92699770000007,4.68428780000005],[107.92853680000007,4.680384600000025],[107.94450310000008,4.674967500000037],[107.94872670000007,4.675799400000074],[107.95379450000007,4.673547300000052],[107.95378340000008,4.670882400000039],[107.95566050000008,4.671072600000059],[107.95574620000008,4.672730400000034],[107.96482080000004,4.668625500000076],[107.96763490000006,4.674736400000029],[107.97701910000006,4.68055320000002],[107.97872640000008,4.685271],[107.97781130000004,4.688447500000052],[107.97955170000006,4.687532300000044],[107.98622590000008,4.700315],[107.98636,4.704576700000075],[107.98717260000006,4.704111],[107.989825,4.712063],[107.989138,4.716831600000035],[107.99456210000005,4.733474900000033],[107.99619020000006,4.736524900000063],[107.99827530000005,4.737316400000054],[108.00013010000004,4.745271500000058],[108.00763750000004,4.759986500000025],[108.00737170000008,4.774574]]],[[[108.02189930000009,4.794013500000062],[108.02102650000006,4.796996800000045],[108.01753210000004,4.797765100000049],[108.01435040000007,4.796358500000053],[108.01243090000008,4.793599500000028],[108.01071230000008,4.793904500000053],[108.00642780000004,4.786165400000073],[108.00762260000005,4.7811],[108.00995720000009,4.779265600000031],[108.01067110000008,4.781764700000053],[108.01845750000007,4.78817870000006],[108.02189930000009,4.794013500000062]]]]},"properties":{"shapeName":"Natuna","shapeISO":"","shapeID":"22746128B18560622299333","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[138.8689849000001,-4.727681599999926],[138.865376,-4.6638157],[138.85823170000003,-4.638300299999969],[138.85721160000003,-4.599517],[138.852108,-4.584207699999979],[138.83373690000008,-4.556651199999976],[138.83373690000008,-4.542362599999933],[138.8408812,-4.532156399999963],[138.84598430000005,-4.520929699999954],[138.8490468000001,-4.499496799999974],[138.8449637000001,-4.433156799999949],[138.8449637000001,-4.404579599999977],[138.8390902000001,-4.266552099999956],[138.70917070000007,-4.328543],[138.71471610000003,-4.442192],[138.7166188000001,-4.457413799999927],[138.72024870000007,-4.471603],[138.6233701000001,-4.4855176],[138.61656470000003,-4.467369699999949],[138.60068480000007,-4.436745099999939],[138.5927455000001,-4.401583499999958],[138.59387980000008,-4.378898599999957],[138.6086249000001,-4.351676699999928],[138.6100189000001,-4.328705199999945],[138.628644,-4.287827199999981],[138.66031180000004,-4.244397],[138.7046467,-4.192823699999963],[138.72626390000005,-4.173266699999942],[138.68041470000003,-4.148992799999974],[138.63995880000004,-4.138204499999972],[138.59949930000005,-4.140903299999934],[138.59538830000008,-4.1600855],[138.5812102000001,-4.183124799999973],[138.55462640000007,-4.191986699999973],[138.50500320000003,-4.188441599999976],[138.45892450000008,-4.190213799999981],[138.414618,-4.181352499999946],[138.3774006000001,-4.183124799999973],[138.32954970000003,-4.191986799999938],[138.29410450000012,-4.188441599999976],[138.2373923,-4.154768699999977],[138.161236,-4.137109399999929],[138.12489430000005,-4.134075799999948],[138.06992120000007,-4.134075799999948],[138.004477,-4.136693499999978],[137.93379730000004,-4.144546799999944],[137.8945308000001,-4.1471646],[137.86573540000006,-4.155017899999962],[137.84217550000005,-4.149782399999935],[137.8159978000001,-4.131458],[137.7924379000001,-4.134075799999948],[137.75840690000007,-4.1419291],[137.74008260000005,-4.144546799999944],[137.700816,-4.160253399999931],[137.67836230000012,-4.172312399999953],[137.66802130000008,-4.433602099999973],[137.66454620000002,-4.473503799999946],[137.64978750000012,-4.491214399999933],[137.62764930000003,-4.522207799999933],[137.6143664000001,-4.548773599999947],[137.5966558,-4.572387699999979],[137.5789453000001,-4.584194699999955],[137.5686141000001,-4.615188199999977],[137.57746940000004,-4.652085199999931],[137.7509007000001,-4.627571399999965],[137.86994270000002,-4.606250399999965],[137.91258460000006,-4.606250399999965],[137.96620810000002,-4.598378899999943],[138.11156630000005,-4.628247],[138.1371898000001,-4.6306967],[138.3412336,-4.678122],[138.5832236000001,-4.726188499999978],[138.6429932000001,-4.739714399999968],[138.71804880000002,-4.740851599999928],[138.82494630000008,-4.728342299999952],[138.8689849000001,-4.727681599999926]]]},"properties":{"shapeName":"Nduga","shapeISO":"","shapeID":"22746128B11866318743468","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[120.81905970000003,-8.8358573],[120.8226072000001,-8.837115],[120.826198,-8.8322752],[120.83723060000011,-8.828840599999978],[120.84285090000003,-8.832691599999976],[120.84847130000003,-8.833940499999926],[120.85544470000002,-8.843411899999978],[120.8570059000001,-8.85382],[120.86690560000011,-8.8656529],[120.86659450000002,-8.876919499999929],[120.86927270000001,-8.883554],[120.87360010000009,-8.8868882],[120.88066560000004,-8.887245899999925],[120.8841394000001,-8.889416599999947],[120.8869006000001,-8.895576399999982],[120.901171,-8.905545099999927],[120.90367860000003,-8.9120978],[120.9098097000001,-8.915529399999969],[120.91336940000008,-8.920587199999943],[120.92923910000002,-8.928732599999933],[120.931147,-8.932887499999936],[120.93603010000004,-8.9336794],[120.94896210000002,-8.940986399999929],[120.96448510000005,-8.946111299999927],[120.97053310000001,-8.946307199999978],[120.97407450000003,-8.944006299999955],[120.97919800000011,-8.943336],[120.98662760000002,-8.951351599999953],[120.99723380000012,-8.952974],[121.00126460000001,-8.9560814],[121.00611640000011,-8.954565299999956],[121.01526590000003,-8.956390799999951],[121.0169423000001,-8.954255499999931],[121.0217831000001,-8.95341],[121.02963290000002,-8.956432399999926],[121.03381560000003,-8.954832499999952],[121.03608740000004,-8.955570099999932],[121.04274670000007,-8.950021899999967],[121.04660550000006,-8.949401799999976],[121.04997810000009,-8.946829799999932],[121.05737420000003,-8.94770669999997],[121.06647840000005,-8.936788599999943],[121.07042600000011,-8.9354841],[121.07475450000004,-8.931115599999941],[121.08140580000008,-8.930293399999925],[121.08467140000005,-8.9259355],[121.088968,-8.924897099999953],[121.09595250000007,-8.919955899999934],[121.10282890000008,-8.919231899999943],[121.10569040000007,-8.916339199999982],[121.11354010000002,-8.916035799999975],[121.1149524000001,-8.913273599999968],[121.12255170000003,-8.909336799999949],[121.12877990000004,-8.908939199999963],[121.13058560000002,-8.905584],[121.1357561000001,-8.902971599999944],[121.13635520000003,-8.901304899999957],[121.134346,-8.900102299999958],[121.13752430000011,-8.90077649999995],[121.13804960000004,-8.902436799999975],[121.1376547000001,-8.899632199999928],[121.1392839,-8.8980201],[121.1358461000001,-8.892824899999937],[121.12722740000004,-8.885516799999948],[121.12529580000012,-8.878763299999946],[121.118963,-8.879515399999946],[121.11518420000004,-8.8748443],[121.11674560000006,-8.867758099999946],[121.12066790000006,-8.862199099999941],[121.12170330000004,-8.8557871],[121.13279310000007,-8.851209499999982],[121.14013570000009,-8.843131],[121.13960980000002,-8.84048139999993],[121.13626370000009,-8.837711599999977],[121.13667110000006,-8.835124699999938],[121.1329823000001,-8.827137599999958],[121.13055840000004,-8.8155903],[121.12794710000003,-8.811205599999937],[121.12393760000009,-8.808007],[121.12193520000005,-8.803687199999956],[121.12371890000009,-8.792813599999931],[121.113759,-8.785908199999938],[121.11007980000011,-8.777832799999942],[121.10193190000007,-8.773664399999973],[121.10085360000005,-8.771690199999966],[121.10168110000006,-8.770068899999956],[121.09906050000006,-8.767262399999936],[121.10097540000004,-8.762939899999935],[121.09990370000003,-8.762140099999954],[121.09796480000011,-8.763515],[121.09595720000004,-8.759378199999958],[121.096428,-8.756544599999927],[121.09817950000001,-8.756036],[121.09868570000003,-8.751813399999946],[121.10106840000003,-8.750219699999946],[121.10022110000011,-8.748435099999938],[121.10314460000006,-8.746739],[121.10403170000006,-8.748177899999973],[121.10497050000004,-8.746674499999926],[121.10184970000012,-8.742352099999948],[121.1026,-8.73771019999998],[121.10002650000001,-8.736371199999951],[121.10116430000005,-8.734258699999941],[121.09999760000005,-8.7328429],[121.10221520000005,-8.73222119999997],[121.1024900000001,-8.730421699999965],[121.10549430000003,-8.728332199999954],[121.10505200000011,-8.726193199999955],[121.10818260000008,-8.725157199999956],[121.10493430000008,-8.722226],[121.10717760000011,-8.72030159999997],[121.10838090000004,-8.7240083],[121.11263850000012,-8.7233314],[121.11380540000005,-8.72135359999993],[121.11311550000005,-8.7187826],[121.11467890000006,-8.717438199999947],[121.11101730000007,-8.7162528],[121.11474480000004,-8.71376179999993],[121.11561430000006,-8.709535699999947],[121.1225971,-8.708358099999941],[121.12445330000003,-8.705538099999956],[121.12394820000009,-8.7036887],[121.13000640000007,-8.702184099999954],[121.13175640000009,-8.703867899999977],[121.13334340000006,-8.701683599999967],[121.13627660000009,-8.703088199999968],[121.13849170000003,-8.701067199999954],[121.14157490000002,-8.701135699999952],[121.14533830000005,-8.697803399999941],[121.14564180000002,-8.694400499999972],[121.149517,-8.693813299999931],[121.14875370000004,-8.692276799999945],[121.14425640000002,-8.691861499999959],[121.14259620000007,-8.690339699999981],[121.1386801000001,-8.691960299999948],[121.13881790000005,-8.689465699999971],[121.13387160000002,-8.689156399999945],[121.1309940000001,-8.683795199999963],[121.12851260000002,-8.688916199999937],[121.1256638000001,-8.684981099999959],[121.12111770000001,-8.6871566],[121.116927,-8.686219499999936],[121.1158286000001,-8.6833858],[121.10915030000001,-8.681938499999944],[121.10740360000011,-8.678670299999965],[121.11258570000007,-8.677103],[121.11109890000012,-8.671596299999976],[121.11460970000007,-8.6675586],[121.1138873000001,-8.664402799999948],[121.11672170000008,-8.660331199999973],[121.11738610000009,-8.653494399999943],[121.12006830000007,-8.652161],[121.12023520000002,-8.646907299999953],[121.12464770000008,-8.645627199999979],[121.12775080000006,-8.6429364],[121.12553590000005,-8.640957699999944],[121.12600680000003,-8.620665699999961],[121.132156,-8.601631199999929],[121.131788,-8.594759199999942],[121.12967220000007,-8.594258299999979],[121.12926590000006,-8.592074],[121.13162010000008,-8.589162699999974],[121.13095640000006,-8.587723799999935],[121.13346750000005,-8.585590899999943],[121.13219010000012,-8.584676399999978],[121.1324734000001,-8.5826563],[121.13965660000008,-8.578951599999925],[121.14358560000005,-8.572144499999979],[121.14271090000011,-8.56847289999996],[121.14383770000006,-8.566115299999979],[121.14162520000002,-8.559583],[121.1423109000001,-8.553475799999944],[121.14511520000008,-8.549632199999962],[121.1523701000001,-8.547139199999947],[121.15743680000003,-8.540485399999966],[121.16614260000006,-8.533956299999943],[121.17220320000001,-8.524819899999954],[121.17086730000005,-8.519937599999935],[121.17713980000008,-8.518351199999927],[121.18403160000003,-8.5115732],[121.18359670000007,-8.499913],[121.17246100000011,-8.488366799999937],[121.1649652000001,-8.4839946],[121.1615921,-8.477857299999926],[121.16239460000008,-8.47599109999993],[121.17357560000005,-8.467810199999974],[121.17984740000009,-8.459365099999957],[121.17920970000011,-8.453341],[121.17491010000003,-8.446448299999929],[121.17319530000009,-8.4407133],[121.167207,-8.443509799999958],[121.16324510000004,-8.44245019999994],[121.15766430000008,-8.4384328],[121.15624940000009,-8.434941099999946],[121.15060770000002,-8.433829499999945],[121.149639,-8.431227],[121.14552850000007,-8.429650599999945],[121.142848,-8.424529],[121.14132460000008,-8.427508299999943],[121.1393326000001,-8.428268299999957],[121.12875610000003,-8.426399799999956],[121.11500820000003,-8.428378],[121.10332240000002,-8.425327099999947],[121.0944181000001,-8.418167799999935],[121.0874612,-8.420392099999958],[121.07359430000008,-8.41264],[121.06343560000005,-8.410742899999946],[121.05064340000001,-8.411663],[121.040451,-8.415733799999941],[121.0298788,-8.4125097],[121.02361660000008,-8.414088],[121.01856590000011,-8.407926799999927],[121.01911890000008,-8.406139899999971],[121.02250540000011,-8.405926499999964],[121.0185044000001,-8.402329699999939],[121.013183,-8.402334899999971],[121.01267970000004,-8.400759899999969],[121.01474030000008,-8.400622599999963],[121.01472830000012,-8.397988299999952],[121.00898140000004,-8.396722499999953],[121.0095477000001,-8.394017099999928],[121.011273,-8.393376499999931],[121.01027820000002,-8.392063],[121.00418560000003,-8.391978799999947],[121.00419540000007,-8.393472799999927],[120.999801,-8.393732299999954],[120.9974294000001,-8.39594939999995],[120.9959761,-8.392596899999944],[120.98958390000007,-8.392112699999927],[120.99207710000007,-8.389907899999969],[120.99042170000007,-8.388889899999981],[120.990311,-8.3838404],[120.98559200000011,-8.382337599999971],[120.98537030000011,-8.381246],[120.98749480000004,-8.380329199999949],[120.9848187,-8.378066],[120.98501650000003,-8.374192299999947],[120.97890980000011,-8.375644699999953],[120.97851880000007,-8.380661499999974],[120.97653730000002,-8.382469699999945],[120.973769,-8.381073499999957],[120.97335110000006,-8.377143599999954],[120.96882390000007,-8.37690219999996],[120.96957310000005,-8.374459599999966],[120.97217230000001,-8.373322499999972],[120.97104880000006,-8.371664499999952],[120.968695,-8.372588],[120.96359180000002,-8.370572099999947],[120.96520080000005,-8.364128799999946],[120.96840220000001,-8.367069],[120.97186910000005,-8.366577899999982],[120.97401320000006,-8.37067369999994],[120.979049,-8.368912099999932],[120.98030770000003,-8.36348019999997],[120.98245820000011,-8.362855199999956],[120.98141570000007,-8.359817699999951],[120.98423040000011,-8.357952],[120.98384610000005,-8.355985399999952],[120.98590980000006,-8.352630399999953],[120.98403370000005,-8.349436399999945],[120.9779152000001,-8.347935899999925],[120.97769060000007,-8.346417299999928],[120.9726789,-8.346725099999958],[120.97048630000006,-8.344814699999972],[120.96933820000004,-8.346121399999959],[120.95747,-8.343627799999979],[120.94451030000005,-8.344126499999959],[120.94326060000003,-8.346432899999968],[120.94394740000007,-8.348331299999927],[120.94958620000011,-8.35499],[120.95495870000002,-8.365146699999968],[120.95402520000005,-8.367561199999955],[120.95632190000003,-8.369080199999928],[120.95516340000006,-8.371501599999931],[120.95155850000003,-8.372027099999968],[120.94953160000011,-8.370870599999932],[120.94836420000001,-8.373295799999937],[120.94971470000007,-8.376472499999977],[120.94403840000007,-8.37855819999993],[120.945303,-8.381067599999938],[120.94238940000002,-8.390714399999979],[120.94215070000007,-8.400256399999932],[120.92884830000003,-8.4071665],[120.9266424000001,-8.411767899999973],[120.92735040000002,-8.419349],[120.92627750000008,-8.422731],[120.9220580000001,-8.4301318],[120.91703030000008,-8.434919399999956],[120.91263580000009,-8.44362259999997],[120.91082,-8.4577474],[120.91645750000009,-8.460445899999968],[120.92340740000009,-8.4675711],[120.92231570000001,-8.472558299999946],[120.91509250000001,-8.477615399999934],[120.904213,-8.479641],[120.89482930000008,-8.484440399999926],[120.88819890000002,-8.481276499999979],[120.88726040000006,-8.477069899999947],[120.88143180000009,-8.478029899999967],[120.87983720000011,-8.482679099999928],[120.87407410000003,-8.4845884],[120.86846920000005,-8.500040099999978],[120.86566920000007,-8.500111599999968],[120.861351,-8.5029516],[120.85968020000007,-8.501849199999981],[120.85222550000003,-8.5043382],[120.85256960000004,-8.50764849999996],[120.84798300000011,-8.509519499999953],[120.847889,-8.5123347],[120.8453598000001,-8.515261599999974],[120.84544370000003,-8.517799399999944],[120.85009430000002,-8.518522599999926],[120.85133360000009,-8.522415099999932],[120.851414,-8.527380299999948],[120.849823,-8.528507399999967],[120.85243990000004,-8.532922699999972],[120.85102080000001,-8.534855799999946],[120.85147860000006,-8.537986799999942],[120.86569980000002,-8.5508251],[120.868866,-8.556444099999965],[120.87181090000001,-8.558074],[120.87430570000004,-8.563353499999948],[120.87259670000003,-8.567347499999926],[120.86989490000008,-8.568792199999962],[120.86685010000008,-8.567968],[120.86410560000002,-8.570134],[120.86246380000011,-8.569502099999966],[120.86051180000004,-8.573088599999949],[120.86355120000007,-8.576481499999943],[120.86265560000004,-8.577815099999953],[120.86486820000005,-8.583913799999948],[120.86917560000006,-8.585392299999967],[120.868842,-8.59095739999998],[120.87195990000009,-8.592340899999954],[120.86982730000011,-8.594289799999956],[120.87325250000004,-8.594171],[120.87305450000008,-8.595824199999981],[120.87507770000002,-8.597875199999976],[120.87618550000002,-8.595460199999934],[120.88065610000001,-8.601821299999926],[120.8813884000001,-8.604434599999934],[120.87944030000006,-8.606567499999926],[120.88160710000011,-8.608645399999943],[120.8787880000001,-8.612042199999962],[120.88266030000011,-8.612283599999955],[120.88145,-8.6176339],[120.88624470000002,-8.6215656],[120.88659360000008,-8.623243599999967],[120.88472190000005,-8.623027199999967],[120.88530710000009,-8.625695199999939],[120.88861120000001,-8.626327],[120.88814410000009,-8.631057899999973],[120.88276440000004,-8.635598799999968],[120.88427510000008,-8.636738599999944],[120.88346800000011,-8.639441],[120.88586980000002,-8.640829799999949],[120.8843141000001,-8.643738799999937],[120.88628390000008,-8.644481699999972],[120.885421,-8.647306],[120.89138430000003,-8.6501677],[120.88910680000004,-8.654027],[120.88964850000002,-8.657236099999977],[120.88330080000003,-8.660994499999958],[120.88427530000001,-8.664672],[120.88085940000008,-8.666427599999963],[120.879631,-8.671246499999938],[120.88240540000004,-8.671872399999927],[120.88130020000006,-8.674007299999971],[120.88350680000008,-8.675883299999953],[120.88059120000003,-8.677098399999977],[120.8832605,-8.678544299999942],[120.88108060000002,-8.678998],[120.880432,-8.681601499999942],[120.87847140000008,-8.6827106],[120.87873840000009,-8.686595],[120.87427520000006,-8.691762],[120.87547860000006,-8.693488199999933],[120.87496570000008,-8.69700469999998],[120.87128450000012,-8.695624399999929],[120.8680796000001,-8.698025399999949],[120.86728240000002,-8.696274599999981],[120.86581290000004,-8.69646679999994],[120.862701,-8.699412399999972],[120.86054230000002,-8.698985099999959],[120.85890160000008,-8.701752799999952],[120.85671230000003,-8.7018404],[120.85677030000011,-8.704417599999942],[120.854744,-8.703576099999964],[120.8506863,-8.705728499999964],[120.8467237000001,-8.704074599999956],[120.84446390000005,-8.709028699999976],[120.84598180000012,-8.715478699999949],[120.84386030000007,-8.719962299999963],[120.8504554000001,-8.721846399999947],[120.84915290000004,-8.725546299999962],[120.85123260000012,-8.7294372],[120.85535070000003,-8.729186499999969],[120.85349470000006,-8.734159399999953],[120.8559762000001,-8.738458],[120.856259,-8.741871299999957],[120.85438540000007,-8.744155899999953],[120.856369,-8.747387899999978],[120.85491880000006,-8.7506733],[120.85034940000003,-8.752501499999937],[120.84826520000001,-8.755012],[120.85002140000006,-8.759655899999927],[120.84345250000001,-8.762913699999956],[120.84481050000011,-8.765444799999955],[120.84193490000007,-8.770602699999927],[120.845726,-8.772709899999938],[120.84269460000007,-8.773567599999978],[120.8406079,-8.776181599999973],[120.84543610000003,-8.782928499999969],[120.84116140000003,-8.783444599999939],[120.84091190000004,-8.786068899999975],[120.83792690000007,-8.787493599999948],[120.84065250000003,-8.79083019999996],[120.84012670000004,-8.792217299999947],[120.8343939,-8.789429799999937],[120.83295110000006,-8.7926138],[120.83428170000002,-8.795350299999939],[120.83043670000006,-8.796847299999968],[120.82923540000002,-8.799208599999929],[120.830719,-8.8019972],[120.8244539000001,-8.815322399999957],[120.82539710000003,-8.817706499999929],[120.8236882000001,-8.821710799999948],[120.81636240000012,-8.8251457],[120.81126240000003,-8.825562],[120.81001340000012,-8.8297253],[120.81905970000003,-8.8358573]]]},"properties":{"shapeName":"Ngada","shapeISO":"","shapeID":"22746128B98084946519692","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[111.800415,-7.461098099999958],[111.80609130000005,-7.463551],[111.81807710000004,-7.473168799999939],[111.82031250000006,-7.478499399999976],[111.82032770000006,-7.487783899999954],[111.82176210000006,-7.492933199999925],[111.82705690000006,-7.496423199999981],[111.84249870000008,-7.497780299999931],[111.84453580000007,-7.500000399999976],[111.84294890000007,-7.501037],[111.84676360000009,-7.504624799999931],[111.847496,-7.508078499999954],[111.84007260000004,-7.520051899999942],[111.83750910000003,-7.530080699999928],[111.83558650000003,-7.531425899999931],[111.83941650000008,-7.534849599999973],[111.839714,-7.538622299999929],[111.83396910000005,-7.548511],[111.83148190000009,-7.548699299999953],[111.82531730000005,-7.544572799999969],[111.81764,-7.5484906],[111.81486960000007,-7.5449197],[111.815773,-7.542798499999947],[111.81416320000005,-7.5419702],[111.80664060000004,-7.543558099999927],[111.80419920000008,-7.545478799999955],[111.80446620000004,-7.547667899999965],[111.80211640000005,-7.548801399999945],[111.80418390000006,-7.554872499999931],[111.80152890000005,-7.556601899999976],[111.79785920000006,-7.567920599999979],[111.79871360000004,-7.569583799999975],[111.79573060000007,-7.570834099999956],[111.794342,-7.574080899999956],[111.79559320000004,-7.5743636],[111.79388430000006,-7.576506599999959],[111.79512020000004,-7.580144299999972],[111.79384610000005,-7.584118299999943],[111.79457850000006,-7.58993],[111.79203790000008,-7.5937395],[111.79232790000009,-7.5961212],[111.79087060000006,-7.596174699999949],[111.78571320000009,-7.603031099999953],[111.79000090000005,-7.614207199999953],[111.78846740000006,-7.617048699999941],[111.78938290000008,-7.620489099999929],[111.78544610000006,-7.622239499999978],[111.78433990000008,-7.626947799999925],[111.78572080000004,-7.629364899999928],[111.78408810000008,-7.6310329],[111.78460690000009,-7.634124199999974],[111.78625490000007,-7.635559],[111.78484340000006,-7.635456499999975],[111.78488920000007,-7.638598399999978],[111.78359220000004,-7.6398348],[111.78372950000005,-7.647425099999964],[111.78120420000005,-7.648294899999939],[111.78293610000009,-7.650435899999934],[111.78093720000004,-7.651284199999964],[111.77881620000005,-7.655904699999951],[111.77765650000003,-7.655317299999979],[111.77295680000009,-7.660754099999963],[111.77040860000005,-7.661710699999958],[111.77159120000005,-7.6653652],[111.76893610000008,-7.664538299999947],[111.766716,-7.671265499999947],[111.76228330000004,-7.675475099999971],[111.762146,-7.678124399999945],[111.75701140000007,-7.6815862],[111.75582120000007,-7.688899499999934],[111.75752250000005,-7.689560799999981],[111.75750730000004,-7.693361699999969],[111.75415040000007,-7.702808799999957],[111.75234220000004,-7.703516899999954],[111.75263210000008,-7.70547],[111.74961850000005,-7.706556699999965],[111.74594110000004,-7.712189599999931],[111.74179840000005,-7.714462199999957],[111.74144740000008,-7.717586499999925],[111.733551,-7.725103799999943],[111.73256680000009,-7.7302346],[111.73091120000004,-7.732038],[111.72921750000006,-7.740620099999944],[111.73092650000007,-7.744956899999977],[111.72983550000004,-7.754583299999979],[111.72695160000006,-7.759254399999975],[111.72576140000007,-7.773624799999936],[111.72811130000008,-7.779311099999973],[111.73704520000007,-7.788277599999958],[111.74272150000007,-7.791083299999968],[111.75218960000007,-7.801013399999931],[111.75602720000006,-7.803768599999955],[111.75839990000009,-7.810965],[111.76450350000005,-7.817603499999962],[111.76631160000005,-7.823467699999981],[111.76882930000005,-7.824113799999964],[111.77294920000008,-7.8203277],[111.77499390000008,-7.821280899999977],[111.77666470000008,-7.820202799999947],[111.78475190000006,-7.829776699999968],[111.78572840000004,-7.833311],[111.79467770000008,-7.836537299999975],[111.799202,-7.836567299999956],[111.80450440000004,-7.828648],[111.81329340000008,-7.822655099999963],[111.81404110000005,-7.812996299999952],[111.82511140000008,-7.811097599999925],[111.83790590000007,-7.799215299999958],[111.84266660000009,-7.792967199999964],[111.85397340000009,-7.786261499999966],[111.86220550000007,-7.776545399999975],[111.88156890000005,-7.763595499999951],[111.88571160000004,-7.754864199999929],[111.89311220000008,-7.748099699999955],[111.895889,-7.7472781],[111.89623020000005,-7.744435],[111.89936530000006,-7.7429631],[111.90484950000007,-7.735991699999943],[111.91414720000006,-7.731855699999926],[111.91829680000006,-7.725753699999927],[111.92804710000007,-7.722563199999968],[111.93186950000006,-7.716168299999936],[111.93184660000009,-7.708774499999947],[111.93771950000007,-7.700397],[111.93909440000004,-7.700840299999982],[111.94229640000009,-7.693640099999925],[111.94792620000004,-7.694093199999941],[111.95007130000005,-7.6912669],[111.95376080000005,-7.679470299999934],[111.95772310000007,-7.679047399999945],[111.96386860000007,-7.681892299999959],[111.97568420000005,-7.683860899999956],[111.97741650000006,-7.68231],[111.98209380000009,-7.684413799999959],[111.98311610000007,-7.688060199999939],[111.98265720000006,-7.702513499999952],[111.98156360000007,-7.702342399999964],[111.98113050000006,-7.704231799999945],[111.98347440000003,-7.708292899999947],[111.98225260000004,-7.7113255],[111.98425040000006,-7.711366199999929],[111.98839320000008,-7.717753699999946],[111.98812860000004,-7.723866899999962],[111.99331630000006,-7.728381499999955],[111.99755820000007,-7.7292985],[111.99928250000005,-7.7417425],[111.99823730000008,-7.742918399999951],[112.001087,-7.744531199999926],[112.00207000000012,-7.749963899999955],[112.004969,-7.752478],[112.00595220000002,-7.757038299999977],[112.00854410000011,-7.757563399999981],[112.00833910000006,-7.759251099999972],[112.01057240000011,-7.761141],[112.02017180000007,-7.763172499999939],[112.02227750000009,-7.761946599999931],[112.020607,-7.742540799999972],[112.02680090000001,-7.726053599999943],[112.031921,-7.726372099999935],[112.03974110000001,-7.7243894],[112.04909480000003,-7.726267199999938],[112.05311920000008,-7.723964199999955],[112.0590664,-7.723518699999943],[112.0626827000001,-7.720532299999945],[112.06578060000004,-7.711658399999976],[112.07630920000008,-7.701496499999962],[112.07514190000006,-7.693074399999944],[112.07655330000011,-7.685347899999954],[112.07598150000001,-7.678754499999968],[112.07859040000005,-7.674885699999948],[112.08278650000011,-7.672911499999941],[112.082008,-7.666957299999979],[112.08441120000009,-7.663213599999949],[112.08478370000012,-7.659061799999961],[112.08970750000003,-7.6565229],[112.09175070000003,-7.649576099999933],[112.09835010000006,-7.644111499999951],[112.09821320000003,-7.639743199999941],[112.10126330000003,-7.635185499999977],[112.10085260000005,-7.628332499999942],[112.10388910000006,-7.6143469],[112.103088,-7.609467399999971],[112.109085,-7.603904099999966],[112.10894130000008,-7.596653499999945],[112.11194630000011,-7.591070599999966],[112.1133976000001,-7.589314],[112.1152191000001,-7.579576399999951],[112.11186980000002,-7.565367599999945],[112.1143264000001,-7.563738299999955],[112.11930840000002,-7.553018],[112.12680810000006,-7.547223],[112.13172910000003,-7.5411481],[112.13414000000012,-7.535344],[112.13800810000009,-7.5340318],[112.14421080000011,-7.5353541],[112.15078730000005,-7.529247699999928],[112.15279380000004,-7.513556899999969],[112.15194940000003,-7.5044427],[112.16628720000006,-7.495541499999945],[112.16909790000011,-7.489644899999973],[112.167839,-7.488296899999966],[112.16426840000008,-7.489805599999954],[112.166008,-7.485454499999946],[112.16390220000005,-7.484456899999941],[112.16505430000007,-7.482086099999947],[112.164299,-7.478543699999932],[112.16229240000007,-7.477387799999974],[112.16241450000007,-7.479910699999948],[112.15936270000009,-7.479185],[112.1607361,-7.477247199999965],[112.15782930000012,-7.476577599999928],[112.15978240000004,-7.474230699999964],[112.15712740000004,-7.471923699999934],[112.15923310000005,-7.470667299999945],[112.15602870000009,-7.467762899999968],[112.15702820000001,-7.465809299999933],[112.15478510000003,-7.464817399999959],[112.15485380000007,-7.463254399999926],[112.15298460000008,-7.463854699999956],[112.15224450000005,-7.466015699999957],[112.15092460000005,-7.462051799999927],[112.14350120000006,-7.461532],[112.14267730000006,-7.460071899999946],[112.14126580000004,-7.461331299999927],[112.13990780000006,-7.458905099999981],[112.1384124000001,-7.460629399999959],[112.1343994,-7.460817299999974],[112.133934,-7.458802599999956],[112.12751420000006,-7.457219299999963],[112.12761680000006,-7.453260799999953],[112.12519070000008,-7.452071599999954],[112.12344360000009,-7.454870599999936],[112.12419890000001,-7.458517499999971],[112.1224975,-7.459404399999926],[112.12357330000009,-7.462427099999957],[112.1200103000001,-7.462011699999948],[112.11661530000003,-7.459338599999967],[112.11433410000006,-7.463890499999934],[112.11255640000002,-7.4625501],[112.1124115,-7.4651755],[112.11049650000007,-7.4621462],[112.10658260000002,-7.462416099999928],[112.10448450000001,-7.459832099999971],[112.10385130000009,-7.463229099999978],[112.10175320000008,-7.462254899999948],[112.10057830000005,-7.463225299999976],[112.09984580000003,-7.461221599999931],[112.09812920000002,-7.4609803],[112.09828180000011,-7.464011099999937],[112.09300230000008,-7.465070599999933],[112.09464260000004,-7.467359],[112.09358970000005,-7.469245299999955],[112.09108730000003,-7.4686712],[112.09154510000008,-7.4703645],[112.08663170000011,-7.470780799999943],[112.087059,-7.472472099999948],[112.08356470000001,-7.4746827],[112.07947540000009,-7.473585499999956],[112.07900230000007,-7.463351599999953],[112.07616420000011,-7.460112],[112.08089440000003,-7.452210299999933],[112.07769770000004,-7.449064199999953],[112.07736200000011,-7.443453199999965],[112.07339470000011,-7.440669],[112.07265470000004,-7.437734],[112.06896210000002,-7.434415699999931],[112.0626373,-7.417429799999979],[112.07157890000008,-7.406159299999956],[112.07077790000005,-7.403789],[112.06873320000011,-7.403220599999941],[112.07232660000011,-7.399568899999963],[112.0692901000001,-7.397015499999952],[112.04630280000003,-7.393775399999981],[112.04787440000007,-7.399611899999968],[112.03517910000005,-7.4018425],[112.03171540000005,-7.399766399999976],[112.02978510000003,-7.4001765],[112.02816770000004,-7.397070799999938],[112.02418510000007,-7.395594],[112.02024080000001,-7.399911299999928],[112.01965330000007,-7.409832899999969],[112.01249690000009,-7.405713499999933],[111.99867250000005,-7.403382699999952],[111.98403930000006,-7.407425799999942],[111.97843170000004,-7.406808299999966],[111.97718810000003,-7.404685899999947],[111.97126,-7.404979599999933],[111.96782680000007,-7.4085025],[111.96342460000005,-7.408933099999956],[111.958023,-7.413319],[111.95070640000006,-7.407413899999938],[111.94365690000006,-7.406123599999944],[111.94238280000008,-7.407321399999944],[111.94320680000004,-7.409067499999935],[111.94154360000005,-7.4092426],[111.94242860000008,-7.410962],[111.94644930000004,-7.411237599999936],[111.957695,-7.418284299999925],[111.95846260000008,-7.420682499999941],[111.95720770000008,-7.4249755],[111.95891430000006,-7.427610199999947],[111.95329340000006,-7.432371399999965],[111.94668570000005,-7.4346961],[111.940361,-7.440121099999942],[111.93463890000004,-7.440365199999974],[111.92295830000006,-7.435491],[111.90535730000005,-7.433322399999952],[111.89392090000007,-7.437730699999975],[111.88237760000004,-7.437360199999944],[111.87763210000008,-7.4409656],[111.86788170000005,-7.439303799999948],[111.86157220000007,-7.435905899999966],[111.84460450000006,-7.439828299999931],[111.82820890000005,-7.440618899999947],[111.82099910000005,-7.439554599999951],[111.81487270000008,-7.450680699999964],[111.80525210000008,-7.454309899999942],[111.800415,-7.461098099999958]]]},"properties":{"shapeName":"Nganjuk","shapeISO":"","shapeID":"22746128B79761216826784","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[111.21237050000008,-7.246907799999974],[111.208313,-7.244931699999938],[111.19966890000006,-7.245317399999976],[111.19714350000004,-7.246656899999948],[111.19915770000006,-7.249230799999964],[111.19973750000008,-7.2558379],[111.19351960000006,-7.256257499999947],[111.18965910000009,-7.259792799999957],[111.18249510000004,-7.2595272],[111.17766570000003,-7.264386599999966],[111.17472080000005,-7.262608],[111.16835780000008,-7.2633986],[111.16702270000008,-7.260571],[111.16270450000007,-7.260406899999964],[111.16057580000006,-7.2580433],[111.155838,-7.257914],[111.15274050000005,-7.260156599999959],[111.15023040000005,-7.260190499999965],[111.148674,-7.264358499999958],[111.15081790000005,-7.268802099999959],[111.15042110000007,-7.273722099999929],[111.14677430000006,-7.279593899999952],[111.14428710000004,-7.279522399999962],[111.14389040000009,-7.281366299999945],[111.14010620000005,-7.2837519],[111.14146420000009,-7.2900004],[111.13798520000006,-7.293771699999979],[111.13702390000009,-7.297486299999946],[111.14208220000006,-7.307375399999955],[111.14689630000004,-7.3082061],[111.15530390000004,-7.313345899999945],[111.14942170000006,-7.320848],[111.14939880000009,-7.323744699999963],[111.143547,-7.3289504],[111.141983,-7.332574799999975],[111.14292910000006,-7.337825799999962],[111.14152530000007,-7.341569899999968],[111.14300530000008,-7.347178],[111.140564,-7.352735899999971],[111.14139560000007,-7.3571529],[111.14279170000009,-7.357722699999954],[111.14128110000007,-7.360987099999932],[111.14458470000005,-7.359613399999944],[111.14425660000006,-7.361932199999956],[111.14173890000006,-7.363590699999975],[111.14411930000006,-7.364781799999946],[111.14362340000008,-7.367295199999944],[111.14546970000004,-7.368330899999933],[111.14147180000003,-7.373228499999925],[111.14315790000006,-7.374329099999954],[111.13957980000004,-7.378250599999944],[111.13711550000005,-7.378960599999971],[111.13653560000006,-7.382373799999925],[111.13917540000006,-7.385703499999977],[111.13349910000005,-7.391061299999933],[111.13098910000008,-7.396048],[111.129303,-7.395483],[111.12818140000007,-7.396850499999971],[111.12734980000005,-7.398814199999947],[111.12913510000004,-7.399327699999958],[111.12837980000006,-7.400705799999969],[111.12964630000005,-7.401486399999953],[111.12637330000007,-7.405075],[111.12337490000004,-7.40557],[111.12420650000007,-7.409182],[111.11985010000006,-7.409419],[111.120163,-7.412034899999981],[111.11843870000007,-7.414453499999979],[111.11985010000006,-7.417099399999927],[111.11862940000009,-7.419153199999926],[111.119957,-7.421076699999958],[111.11906430000005,-7.423327899999947],[111.121413,-7.425289199999952],[111.12393190000006,-7.434353299999941],[111.12283320000006,-7.439099299999953],[111.12522120000006,-7.439472599999931],[111.12606810000005,-7.442703699999981],[111.12585450000006,-7.444402699999955],[111.124237,-7.444298199999935],[111.12556460000008,-7.446535099999949],[111.12522120000006,-7.450403699999981],[111.12841030000004,-7.451529499999936],[111.13105770000004,-7.457022099999961],[111.128746,-7.461122],[111.13220210000009,-7.461065299999973],[111.131752,-7.464380199999937],[111.13474270000006,-7.462098599999933],[111.13724520000005,-7.465707699999939],[111.13446810000005,-7.468478599999969],[111.13555910000008,-7.470850899999959],[111.133995,-7.472125499999947],[111.13511660000006,-7.473519299999964],[111.13316340000006,-7.474960299999964],[111.13682550000004,-7.480194],[111.13523860000004,-7.483703099999957],[111.13941950000009,-7.486849799999959],[111.14139560000007,-7.486203099999955],[111.14480170000007,-7.493376699999942],[111.14807130000008,-7.494094799999971],[111.15258020000005,-7.499448299999926],[111.15341950000004,-7.505526],[111.15208430000007,-7.507175399999937],[111.15357750000004,-7.5098593],[111.15028380000007,-7.511261399999967],[111.14810940000007,-7.516478],[111.15065,-7.5180554],[111.15020750000008,-7.520397599999967],[111.15199280000007,-7.521910199999979],[111.14776860000006,-7.525037099999963],[111.14630080000006,-7.525402],[111.14607950000004,-7.527474699999971],[111.15024390000008,-7.533462499999928],[111.15057080000008,-7.539242699999932],[111.15152080000007,-7.538932799999941],[111.15063150000009,-7.5401376],[111.15194460000004,-7.541090799999949],[111.15006670000008,-7.542960799999946],[111.15380780000004,-7.549775],[111.15211980000004,-7.551019199999928],[111.15189270000008,-7.554584],[111.15326830000004,-7.557052799999951],[111.15307960000007,-7.562765],[111.16217280000006,-7.574776699999973],[111.16327520000004,-7.580254299999979],[111.16683380000006,-7.582265899999925],[111.16896430000008,-7.590243599999951],[111.17309680000005,-7.5917765],[111.17835820000005,-7.600084899999956],[111.190247,-7.6101078],[111.19299540000009,-7.613826899999935],[111.19449190000006,-7.620408299999951],[111.19979090000004,-7.6160097],[111.21696470000006,-7.614441399999976],[111.22689820000005,-7.609483199999943],[111.231987,-7.609924799999931],[111.24899290000008,-7.600262099999952],[111.25294490000005,-7.6031995],[111.25582880000007,-7.599442],[111.25917050000004,-7.59837],[111.26062770000004,-7.598326199999974],[111.26106260000006,-7.599774799999977],[111.26497650000005,-7.5986504],[111.27391810000006,-7.6004881],[111.27561190000006,-7.601706899999954],[111.27502440000006,-7.603426899999931],[111.28357110000007,-7.603664399999957],[111.283241,-7.607330199999979],[111.28618,-7.6062],[111.28865220000006,-7.605162499999949],[111.28899210000009,-7.602926699999955],[111.29110720000006,-7.603694899999937],[111.294281,-7.6021552],[111.296118,-7.599304699999948],[111.29278420000009,-7.5999923],[111.29214780000007,-7.596338],[111.29880450000007,-7.594532799999968],[111.29913320000009,-7.590019899999959],[111.301506,-7.586820099999954],[111.310997,-7.585142599999926],[111.31423190000004,-7.583141799999964],[111.31608580000005,-7.585849199999927],[111.31555940000004,-7.589071199999978],[111.32701480000009,-7.586572199999978],[111.32650660000007,-7.585540599999945],[111.33007290000006,-7.584113199999933],[111.33015440000008,-7.581753699999979],[111.339302,-7.577217],[111.34450530000004,-7.576645799999937],[111.35320280000008,-7.572762399999931],[111.354393,-7.570409299999938],[111.36661370000007,-7.570018299999958],[111.367778,-7.570967199999927],[111.36922210000006,-7.569242],[111.37105590000004,-7.569662699999981],[111.37126210000008,-7.5634],[111.37408030000006,-7.560547799999938],[111.37332920000006,-7.5584983],[111.37198640000008,-7.559681399999931],[111.37020110000009,-7.558269899999971],[111.36919080000007,-7.554106099999956],[111.37163680000003,-7.552574],[111.37371070000006,-7.546952399999952],[111.37873850000005,-7.546048399999961],[111.37940980000008,-7.541281599999934],[111.38128340000009,-7.539666299999965],[111.39464570000007,-7.541281699999956],[111.41121670000007,-7.537911899999926],[111.42334750000003,-7.530991599999936],[111.43221280000006,-7.527697099999955],[111.43772130000008,-7.520563099999947],[111.44413740000005,-7.517385799999943],[111.44786830000004,-7.5174565],[111.44827270000008,-7.515754199999947],[111.45227050000005,-7.5151825],[111.46021270000006,-7.517624799999965],[111.462087,-7.509844199999975],[111.46713250000005,-7.5098781],[111.47718050000009,-7.515872899999977],[111.48555410000006,-7.516283699999974],[111.48804680000006,-7.5145825],[111.49354930000004,-7.515662499999962],[111.49659680000008,-7.514243199999953],[111.50192260000006,-7.514319899999975],[111.50967410000004,-7.522714599999972],[111.51194,-7.523572899999976],[111.50827790000005,-7.534082399999932],[111.50823210000004,-7.5368948],[111.509566,-7.537483899999927],[111.52310180000006,-7.539717199999927],[111.52468130000005,-7.541257099999939],[111.52496730000007,-7.544623899999976],[111.53585810000004,-7.545710499999927],[111.53740690000006,-7.539627499999938],[111.54332730000004,-7.539215499999955],[111.54701230000006,-7.539543099999946],[111.54926120000005,-7.5447574],[111.55679930000008,-7.544582599999956],[111.56095880000004,-7.541538699999933],[111.56037140000007,-7.5399198],[111.54686740000005,-7.536997299999939],[111.55204770000006,-7.530954299999962],[111.55050660000006,-7.527052799999979],[111.556366,-7.529533799999967],[111.55705260000008,-7.527691299999958],[111.56091310000005,-7.527378],[111.564003,-7.523204299999975],[111.56964110000007,-7.5242643],[111.57213590000003,-7.521002299999964],[111.57451630000008,-7.521528699999976],[111.57551570000004,-7.520432899999946],[111.582344,-7.523377399999958],[111.58505250000007,-7.521176799999978],[111.58646390000007,-7.521874399999945],[111.58687590000005,-7.520459099999925],[111.58489230000004,-7.518297099999927],[111.580101,-7.515376],[111.58039090000005,-7.512482599999942],[111.581871,-7.512732],[111.58205410000005,-7.510955299999978],[111.58412170000008,-7.511723],[111.58365630000009,-7.509605799999974],[111.58565060000006,-7.510376199999939],[111.58872220000006,-7.505460199999959],[111.59078210000007,-7.506949399999939],[111.59049190000007,-7.504478199999937],[111.59429170000004,-7.499072499999954],[111.59365080000003,-7.497838],[111.59577180000008,-7.497684899999967],[111.596054,-7.495715599999926],[111.59789270000005,-7.4952869],[111.595726,-7.494111],[111.59783170000009,-7.488572099999942],[111.599266,-7.488861],[111.60074610000004,-7.485324799999944],[111.60449220000004,-7.483674899999926],[111.60460660000007,-7.481814799999938],[111.60250850000006,-7.481333699999936],[111.60478970000008,-7.480222699999956],[111.60475160000004,-7.477123199999937],[111.60662840000003,-7.475488599999949],[111.60752870000005,-7.478751599999953],[111.61056520000005,-7.475925899999936],[111.61065670000005,-7.468926899999929],[111.61723330000007,-7.467614599999933],[111.62274930000007,-7.469399399999929],[111.624315,-7.466582499999959],[111.62726890000005,-7.467005799999981],[111.62902260000004,-7.4636957],[111.63142390000007,-7.463875199999961],[111.63442230000004,-7.461497699999939],[111.637146,-7.462777099999926],[111.64379120000007,-7.451551399999971],[111.65168,-7.451014],[111.65081020000008,-7.445839799999931],[111.65238190000008,-7.444665899999961],[111.65060420000009,-7.438674899999967],[111.65522,-7.438514199999929],[111.654869,-7.436696499999925],[111.658432,-7.433605599999964],[111.65965270000004,-7.427216499999929],[111.66334530000006,-7.423975899999959],[111.668518,-7.423082799999975],[111.67121890000004,-7.4095425],[111.65470890000006,-7.399127899999939],[111.630722,-7.389739499999962],[111.62351990000008,-7.3822288],[111.61627960000004,-7.379399699999965],[111.61438750000008,-7.375801499999966],[111.61532590000007,-7.372191899999962],[111.61378480000008,-7.369805299999939],[111.61125180000005,-7.370627399999933],[111.61009210000009,-7.3678426],[111.60726930000004,-7.366765899999962],[111.60493470000006,-7.363618299999928],[111.59624480000008,-7.358935799999927],[111.59272760000005,-7.359108399999968],[111.59166710000005,-7.3570661],[111.58348850000004,-7.352934299999959],[111.58013920000008,-7.354706699999952],[111.574913,-7.348562199999947],[111.56713870000004,-7.355308],[111.56647490000006,-7.359950499999968],[111.56317140000004,-7.357601599999953],[111.561264,-7.358351199999959],[111.55967650000008,-7.363481099999944],[111.54299070000008,-7.366530799999964],[111.54040240000006,-7.369425399999955],[111.52785490000008,-7.372189],[111.52354430000008,-7.371512899999971],[111.51940150000007,-7.366115],[111.51354220000007,-7.362896399999954],[111.50594330000007,-7.361741],[111.50138160000006,-7.3632983],[111.49705010000008,-7.361224299999947],[111.488266,-7.360189399999967],[111.48515320000007,-7.358177099999978],[111.482412,-7.359278499999959],[111.47711270000008,-7.358467599999926],[111.47746020000005,-7.359510099999966],[111.47571560000006,-7.359635299999979],[111.47391510000006,-7.357435599999974],[111.47209170000008,-7.357414699999936],[111.46652980000005,-7.359941],[111.46720880000004,-7.361859299999935],[111.46181870000004,-7.362291299999981],[111.45655060000007,-7.36906],[111.46311180000004,-7.371044099999949],[111.46429440000009,-7.373063499999944],[111.46218110000007,-7.374809199999959],[111.45254520000009,-7.374792499999955],[111.45049290000009,-7.371159499999976],[111.44725040000009,-7.372028299999954],[111.43986510000008,-7.369904],[111.43608850000004,-7.366228499999977],[111.43160250000005,-7.3644838],[111.42639160000004,-7.356068099999959],[111.42013550000007,-7.352513699999975],[111.41731260000006,-7.352372599999967],[111.41626740000004,-7.348817299999951],[111.41207120000007,-7.347701499999971],[111.40889740000006,-7.349532099999976],[111.40364070000004,-7.347772599999928],[111.40041350000007,-7.349422899999979],[111.39491270000008,-7.346344899999963],[111.39152530000007,-7.3467064],[111.38610080000007,-7.344672199999934],[111.38237760000004,-7.346631499999944],[111.37391660000009,-7.344227699999976],[111.368721,-7.340698199999963],[111.36753080000005,-7.334848399999942],[111.36071770000007,-7.330652699999973],[111.34492490000008,-7.335303799999963],[111.34601590000005,-7.331978799999945],[111.34816740000008,-7.330594499999961],[111.34535980000004,-7.3281188],[111.34705350000007,-7.322931199999971],[111.34480290000005,-7.3210678],[111.34471890000009,-7.319059299999935],[111.34014130000008,-7.318277799999976],[111.33332060000004,-7.320845599999927],[111.33316040000005,-7.317358],[111.33155820000007,-7.317559199999948],[111.32998650000008,-7.315019599999971],[111.32621,-7.316625099999953],[111.32667540000006,-7.315235099999938],[111.32173160000008,-7.311895299999946],[111.32234190000008,-7.309310899999957],[111.31916040000004,-7.309179299999926],[111.31533810000008,-7.304819099999975],[111.31423190000004,-7.304716099999951],[111.31451410000005,-7.3059854],[111.31091310000005,-7.305066599999975],[111.31018830000005,-7.306237199999941],[111.30880740000003,-7.305025499999942],[111.30885310000008,-7.302157299999976],[111.30641940000004,-7.300394],[111.30509950000004,-7.303160599999956],[111.30506130000003,-7.301640499999962],[111.30437470000004,-7.302651799999978],[111.30325320000009,-7.3016672],[111.30327610000006,-7.299553399999979],[111.30049130000003,-7.301910799999973],[111.29695890000005,-7.300062099999934],[111.29579920000003,-7.301695299999949],[111.29572290000004,-7.300177099999928],[111.29370880000005,-7.300175099999933],[111.29496760000006,-7.299191],[111.29291530000006,-7.295403],[111.28876490000005,-7.2935981],[111.28855130000005,-7.291389399999957],[111.28684990000005,-7.291064699999936],[111.28808590000006,-7.290113399999939],[111.28623960000004,-7.289055799999971],[111.28191370000008,-7.288746299999957],[111.28076170000008,-7.290587399999936],[111.27923580000004,-7.28796],[111.27548980000006,-7.289751499999966],[111.26805880000006,-7.289576],[111.26691430000005,-7.287657699999954],[111.26403050000005,-7.2870702],[111.25830080000009,-7.2881946],[111.25508120000006,-7.287579499999936],[111.25406650000008,-7.284339399999965],[111.25126650000004,-7.284000799999944],[111.24855040000006,-7.283859699999937],[111.24816130000005,-7.286259099999938],[111.244133,-7.2855],[111.24136350000003,-7.282273699999962],[111.24152370000007,-7.278790899999933],[111.23938750000008,-7.276961799999981],[111.23985290000007,-7.275611399999946],[111.23534390000009,-7.270319399999948],[111.23067470000007,-7.267605699999933],[111.229248,-7.268674799999928],[111.22734830000007,-7.264830099999926],[111.22367860000008,-7.261751099999969],[111.22389220000008,-7.256844],[111.22178650000006,-7.252637799999945],[111.21758270000004,-7.250028099999952],[111.217926,-7.248583799999949],[111.21237050000008,-7.246907799999974]]]},"properties":{"shapeName":"Ngawi","shapeISO":"","shapeID":"22746128B82795817859068","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[97.96588130000004,1.021728500000052],[97.96630860000005,1.023315400000058],[97.96490480000006,1.023681600000032],[97.96447750000004,1.022522],[97.96588130000004,1.021728500000052]]],[[[97.95587160000008,1.023315400000058],[97.95629880000007,1.025878900000066],[97.95208740000004,1.025512700000036],[97.95391850000004,1.023315400000058],[97.95587160000008,1.023315400000058]]],[[[97.90551760000005,1.07312010000004],[97.90667720000005,1.074707],[97.90588380000008,1.077880900000025],[97.90472410000007,1.078674300000046],[97.90087890000007,1.076904300000024],[97.90228270000006,1.073913600000026],[97.90551760000005,1.07312010000004]]],[[[97.92968750000006,1.079284700000073],[97.93011470000005,1.080688500000065],[97.928894,1.080322300000034],[97.92968750000006,1.079284700000073]]],[[[97.51022490000008,1.274484100000052],[97.50111570000007,1.26874840000005],[97.49365650000004,1.260591800000043],[97.49371690000004,1.252157300000022],[97.50133680000005,1.237780200000032],[97.48352060000008,1.214231300000051],[97.48947170000008,1.200651900000025],[97.48747,1.17858],[97.48918250000008,1.176537200000041],[97.48922260000006,1.166471100000024],[97.49090680000006,1.160194200000035],[97.48900730000008,1.153322400000036],[97.49998690000007,1.141586800000027],[97.50803930000006,1.154053800000042],[97.515899,1.153206300000022],[97.53103230000005,1.14643],[97.54457870000005,1.134707500000047],[97.56451630000004,1.13481],[97.57196340000007,1.13058],[97.57440230000003,1.123918900000035],[97.56942040000007,1.112813900000049],[97.57040120000005,1.095309500000042],[97.58282990000004,1.092748400000062],[97.59503660000007,1.085912700000051],[97.61066110000007,1.079565200000047],[97.60938,1.070904400000074],[97.60713670000007,1.064164400000038],[97.60574830000007,1.064007200000049],[97.61247,1.054708900000037],[97.61877170000008,1.059151700000029],[97.62324220000005,1.065007800000046],[97.63584610000004,1.06819],[97.63882170000005,1.065866700000072],[97.64639,1.065275600000064],[97.65086110000004,1.061308300000064],[97.63845560000004,1.054943900000069],[97.63087940000008,1.054867800000068],[97.62463890000004,1.051638900000057],[97.62657670000004,1.045067200000062],[97.61959560000008,1.042301100000032],[97.61279220000006,1.030217200000038],[97.62235520000007,1.023447600000054],[97.62283080000003,1.020455600000048],[97.62818570000007,1.013886600000035],[97.63398,1.01223],[97.63625,1.01292],[97.63896,1.00855],[97.64218,1.00807],[97.64846490000008,1.000950600000067],[97.65048,1.00081],[97.64993,1.00582],[97.650691,1.007682700000032],[97.65312,1.00826],[97.65417610000009,1.004236200000037],[97.65660950000006,1.003878200000031],[97.65596870000007,1.002365500000053],[97.65742740000007,1.002392200000031],[97.66118,0.99746],[97.66116,0.99853],[97.66875,0.99919],[97.66943890000005,1.001629200000025],[97.67147960000005,1.002774200000033],[97.68494,1.00693],[97.68508,1.00333],[97.68793890000006,1.000706300000047],[97.68781420000005,0.998710700000061],[97.69095,0.99648],[97.69087,0.99472],[97.6888,0.99354],[97.68999,0.98622],[97.68889110000003,0.983517600000027],[97.69191440000009,0.969918300000074],[97.69445610000008,0.932769400000041],[97.71826,0.940774400000066],[97.731825,0.94771940000004],[97.75133330000006,0.950186100000053],[97.75714720000008,0.945525600000053],[97.76090060000007,0.93934390000004],[97.76671440000007,0.93511],[97.775733,0.936923900000068],[97.78327430000007,0.932690700000023],[97.79134470000008,0.934316700000068],[97.79500440000004,0.931642400000044],[97.79851490000004,0.924863500000072],[97.80974140000006,0.919802300000072],[97.81193470000005,0.919803],[97.81593280000004,0.924479800000029],[97.825867,0.926041600000076],[97.83296160000003,0.930719500000066],[97.84885930000007,0.931633800000043],[97.84429930000005,0.916320800000051],[97.84611330000007,0.909358300000065],[97.85718880000007,0.884602700000073],[97.86626410000008,0.890400400000033],[97.87400680000007,0.885945400000026],[97.87677270000006,0.889343],[97.88538010000008,0.890467],[97.88892510000005,0.888327300000071],[97.89105150000006,0.888939600000072],[97.89257170000008,0.885066400000028],[97.89733160000009,0.883742700000028],[97.90167260000004,0.88470680000006],[97.90350210000008,0.895399600000076],[97.90803210000007,0.903860900000041],[97.91944690000008,0.921761400000037],[97.94317330000007,0.949189400000023],[97.94717,0.957232200000021],[97.94599,0.965047200000072],[97.94166440000004,0.976244400000041],[97.92810060000005,0.995483400000069],[97.92105220000008,1.021475600000031],[97.91791440000009,1.027480600000047],[97.89672850000005,1.054321300000026],[97.88848880000006,1.054504400000042],[97.88629150000008,1.052307100000064],[97.88153080000006,1.051086400000031],[97.87268070000005,1.052307100000064],[97.86767580000009,1.055114700000047],[97.84944780000006,1.072186100000067],[97.84426,1.079438900000071],[97.84370720000004,1.091713300000038],[97.83957220000008,1.094054400000061],[97.83557390000004,1.092333900000028],[97.83353390000008,1.09312060000002],[97.828315,1.110738900000058],[97.81666,1.131619400000034],[97.81201330000005,1.138834400000064],[97.80054830000006,1.150454400000058],[97.79154280000006,1.15312780000005],[97.77565560000005,1.150371100000029],[97.76964330000004,1.151128300000039],[97.76493330000005,1.153975600000024],[97.75043440000007,1.168910600000061],[97.73727670000005,1.16593],[97.73080610000005,1.166261700000064],[97.72331940000004,1.168673300000023],[97.71513940000006,1.174132800000052],[97.70156170000007,1.173647200000062],[97.69616,1.174937800000066],[97.69019060000005,1.178496100000075],[97.66882060000006,1.152517800000055],[97.66518110000004,1.146017800000038],[97.66336560000008,1.139035600000057],[97.65355390000008,1.12833610000007],[97.64358220000008,1.120169400000066],[97.64555060000004,1.119157200000075],[97.64681720000004,1.112437200000045],[97.65524780000004,1.118327800000031],[97.66245,1.118948900000021],[97.66838560000008,1.12272280000002],[97.67049890000004,1.12322],[97.67341330000005,1.121095],[97.680745,1.121837800000037],[97.68512440000006,1.117301700000041],[97.67741110000009,1.11163670000002],[97.64598560000007,1.100113300000032],[97.63277940000006,1.104876700000034],[97.63024610000008,1.11657],[97.626355,1.112079400000027],[97.61981670000006,1.108027800000059],[97.61369060000004,1.109808900000075],[97.59315750000007,1.110109],[97.58619390000007,1.12043280000006],[97.59940060000008,1.127983900000061],[97.60595440000009,1.130085600000029],[97.61903110000009,1.160487200000034],[97.62627890000005,1.173941100000036],[97.62273110000007,1.180640600000061],[97.62097670000009,1.195017800000073],[97.61559,1.19992220000006],[97.60135390000005,1.195585],[97.58706390000003,1.199742800000024],[97.58130190000008,1.194252900000038],[97.57614820000003,1.20094030000007],[97.57834330000009,1.215077800000074],[97.56032190000008,1.221176600000035],[97.567929,1.22805],[97.56899190000007,1.232983600000068],[97.56450240000004,1.246071700000073],[97.56528,1.25817],[97.569751,1.261267300000043],[97.58191740000007,1.26051810000007],[97.58318770000005,1.262491100000034],[97.57990340000003,1.268781300000057],[97.57112650000005,1.271285600000056],[97.56581260000007,1.276994400000035],[97.55939220000005,1.280841100000032],[97.54717510000006,1.284433600000057],[97.54116040000008,1.284876200000042],[97.527484,1.279166800000041],[97.51022490000008,1.274484100000052]],[[97.63634220000006,1.094199400000036],[97.64896890000006,1.09396890000005],[97.65527060000005,1.082786100000021],[97.64330780000006,1.08062110000003],[97.63240560000008,1.08157],[97.63100940000004,1.088545600000032],[97.6321,1.09552780000007],[97.63634220000006,1.094199400000036]]]]},"properties":{"shapeName":"Nias","shapeISO":"","shapeID":"22746128B10261995415495","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[97.34624720000005,0.843053900000029],[97.34142720000006,0.84265780000004],[97.33763390000007,0.840623900000026],[97.33237560000003,0.832260600000041],[97.33215,0.82844110000002],[97.33829780000008,0.821439400000031],[97.34609220000004,0.816685600000028],[97.34927220000009,0.812848300000041],[97.35917330000007,0.811075],[97.36163,0.814973900000041],[97.36181220000003,0.82113],[97.35990610000005,0.822212200000024],[97.35530780000005,0.833567200000061],[97.35319330000004,0.833681700000056],[97.35167560000008,0.83205],[97.35068280000007,0.833078300000068],[97.35065220000007,0.836486700000023],[97.35225780000007,0.835781700000041],[97.35192060000008,0.838531100000068],[97.34961890000005,0.841962800000033],[97.34624720000005,0.843053900000029]]],[[[97.37988280000008,0.843505900000025],[97.37689210000008,0.842102100000034],[97.37567140000004,0.839294400000028],[97.37927250000007,0.835327100000029],[97.38232420000008,0.834716800000024],[97.383728,0.835693400000025],[97.38391110000003,0.840087900000071],[97.38250730000004,0.842712400000039],[97.37988280000008,0.843505900000025]]],[[[97.32250980000003,0.859130900000025],[97.31707760000006,0.859924300000046],[97.31030270000008,0.858093300000064],[97.30847170000004,0.854492200000038],[97.30969240000007,0.850524900000039],[97.31207280000007,0.848327600000061],[97.32155610000007,0.844975600000055],[97.33040440000008,0.845883300000025],[97.333385,0.848918300000037],[97.33319170000004,0.850757800000054],[97.32250980000003,0.859130900000025]]],[[[97.37689210000008,0.858520500000054],[97.37127690000005,0.862915],[97.36407470000006,0.855896],[97.36370850000009,0.852111800000046],[97.36950680000007,0.846496600000023],[97.37268070000005,0.84808350000003],[97.38128660000007,0.847106900000028],[97.38470460000008,0.853088400000047],[97.38531490000008,0.857116700000063],[97.37689210000008,0.858520500000054]]],[[[97.28692630000006,0.870300300000054],[97.28289790000008,0.871276900000055],[97.28192140000004,0.869689900000026],[97.28588870000004,0.86407470000006],[97.29010010000007,0.86328130000004],[97.29187010000004,0.867675800000029],[97.28948970000005,0.870117200000038],[97.28692630000006,0.870300300000054]]],[[[97.34933360000008,0.874184600000035],[97.34204720000008,0.873536100000024],[97.33533560000006,0.870271100000025],[97.329635,0.863268900000037],[97.33019280000008,0.858939400000054],[97.33186170000005,0.857320600000037],[97.33573780000006,0.85716],[97.34259,0.862101700000039],[97.34462610000008,0.862066700000071],[97.34881440000004,0.867198900000062],[97.35478720000003,0.867242200000021],[97.35544380000005,0.868756900000051],[97.34933360000008,0.874184600000035]]],[[[97.355896,0.869506800000067],[97.35711670000006,0.872497600000031],[97.35528560000006,0.874694800000043],[97.34930420000006,0.874328600000069],[97.355896,0.869506800000067]]],[[[97.37487790000006,0.877929700000038],[97.371521,0.881897],[97.369873,0.880676300000061],[97.37188720000006,0.878112800000054],[97.37487790000006,0.877929700000038]]],[[[97.27368160000003,0.915283200000033],[97.26971440000005,0.915527300000065],[97.26629640000004,0.913513200000068],[97.26507570000007,0.911315900000034],[97.26593020000007,0.907897900000023],[97.27929690000008,0.896118200000046],[97.28387450000008,0.896301300000061],[97.28448490000005,0.900695800000051],[97.27929690000008,0.905883800000026],[97.27832030000008,0.911499],[97.27368160000003,0.915283200000033]]],[[[97.43151860000006,0.917480500000067],[97.43267820000005,0.918701200000044],[97.43090820000003,0.921691900000042],[97.428894,0.92071530000004],[97.42852780000004,0.918701200000044],[97.43151860000006,0.917480500000067]]],[[[97.43029790000008,0.936706500000071],[97.42730710000006,0.937072800000067],[97.42468260000004,0.932312],[97.425293,0.930297900000028],[97.42987060000007,0.930297900000028],[97.43170170000008,0.934082],[97.43029790000008,0.936706500000071]]],[[[97.48900730000008,1.153322400000036],[97.48106180000008,1.14482270000002],[97.4702,1.13895],[97.47064470000004,1.127685500000041],[97.46886380000007,1.125083400000051],[97.47920440000007,1.11705180000007],[97.48187430000007,1.107308700000033],[97.486615,1.102937800000063],[97.48888230000006,1.092795800000033],[97.482688,1.094938300000024],[97.47754040000007,1.087385600000061],[97.47156040000004,1.092062300000066],[97.458168,1.107264],[97.45193760000006,1.118089200000043],[97.44628,1.11924],[97.44510380000008,1.118221700000049],[97.44517670000005,1.108278700000028],[97.44967430000008,1.096546700000033],[97.43980680000004,1.095909400000039],[97.43227370000005,1.091481],[97.42222560000005,1.093101],[97.41182050000003,1.091560500000071],[97.39845360000004,1.092817500000024],[97.36945310000004,1.078765200000021],[97.37663280000004,1.064912800000059],[97.38822720000007,1.037975],[97.39416,1.02048110000004],[97.39764890000004,1.014961700000072],[97.39914110000007,1.004066700000067],[97.40948490000005,0.96859070000005],[97.41052250000007,0.954284700000073],[97.40930180000004,0.947876],[97.40448,0.94567870000003],[97.40612790000006,0.93988040000005],[97.40869140000007,0.938720700000033],[97.41009520000006,0.939514200000076],[97.411499,0.947082500000022],[97.41430660000003,0.949279800000056],[97.41870120000004,0.949890100000061],[97.42572020000006,0.948303200000055],[97.43188830000008,0.942455],[97.45051280000007,0.943593900000053],[97.48392,0.939113900000052],[97.49149780000005,0.931475],[97.49817390000004,0.93053720000006],[97.50997440000003,0.921796700000073],[97.51132440000003,0.916768300000058],[97.50707560000006,0.913736700000072],[97.50772440000009,0.908572800000059],[97.51250560000005,0.905735],[97.51582940000009,0.907319400000063],[97.52112220000004,0.905322800000022],[97.53162940000004,0.895685600000036],[97.54104670000004,0.892985],[97.54478720000009,0.887154900000041],[97.54575520000009,0.891731800000059],[97.55014920000008,0.892256700000075],[97.55181420000008,0.893862100000035],[97.54776840000005,0.898093200000062],[97.54915480000005,0.90267330000006],[97.55176090000003,0.903056700000036],[97.55215110000006,0.905096100000037],[97.55439470000005,0.905069600000047],[97.55881380000005,0.910440600000072],[97.56164620000004,0.911028700000031],[97.56161010000005,0.917731500000059],[97.56705760000006,0.92468690000004],[97.56075690000006,0.932914800000049],[97.55108050000007,0.930834900000036],[97.54554010000004,0.933387400000072],[97.54071950000008,0.93832290000006],[97.54174680000006,0.940217800000028],[97.54069720000007,0.94415360000005],[97.54786590000003,0.947203600000023],[97.54371160000005,0.955990200000031],[97.54679140000007,0.958986800000048],[97.54888040000009,0.964143500000034],[97.540495,0.972878300000048],[97.53722220000009,0.979121700000064],[97.53529170000007,0.993984400000045],[97.53662560000004,1.008495],[97.54558560000004,1.002771100000075],[97.55204610000004,1.000681100000065],[97.57560830000006,1.004861100000028],[97.58073830000006,1.006571100000031],[97.58966940000005,1.013412200000062],[97.59632,1.020632800000044],[97.59011670000007,1.034751100000051],[97.59744110000008,1.034401700000046],[97.61279220000006,1.030217200000038],[97.61959560000008,1.042301100000032],[97.62657670000004,1.045067200000062],[97.62463890000004,1.051638900000057],[97.63087940000008,1.054867800000068],[97.63845560000004,1.054943900000069],[97.65086110000004,1.061308300000064],[97.64639,1.065275600000064],[97.63882170000005,1.065866700000072],[97.63584610000004,1.06819],[97.62324220000005,1.065007800000046],[97.61877170000008,1.059151700000029],[97.61247,1.054708900000037],[97.60574830000007,1.064007200000049],[97.60713670000007,1.064164400000038],[97.60938,1.070904400000074],[97.61066110000007,1.079565200000047],[97.59503660000007,1.085912700000051],[97.58282990000004,1.092748400000062],[97.57040120000005,1.095309500000042],[97.56942040000007,1.112813900000049],[97.57440230000003,1.123918900000035],[97.57196340000007,1.13058],[97.56451630000004,1.13481],[97.54457870000005,1.134707500000047],[97.53103230000005,1.14643],[97.515899,1.153206300000022],[97.50803930000006,1.154053800000042],[97.49998690000007,1.141586800000027],[97.48900730000008,1.153322400000036]]]]},"properties":{"shapeName":"Nias Barat","shapeISO":"","shapeID":"22746128B88528539453950","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[98.50177920000004,-0.594715199999939],[98.49428860000006,-0.6008184],[98.48905680000007,-0.608597399999951],[98.48953130000007,-0.619249299999979],[98.50474780000008,-0.634330899999952],[98.51235640000004,-0.637922199999934],[98.51782530000008,-0.638760499999933],[98.52091680000007,-0.635529299999973],[98.52091820000004,-0.620209699999975],[98.51390440000006,-0.611472099999958],[98.51378610000006,-0.605009199999927],[98.51176540000006,-0.600341299999968],[98.50605910000007,-0.5957928],[98.50177920000004,-0.594715199999939]]],[[[98.50059580000004,-0.529726699999969],[98.49988230000008,-0.5321204],[98.50166550000006,-0.534035499999959],[98.50535110000004,-0.532958599999972],[98.50523240000007,-0.531043599999975],[98.50059580000004,-0.529726699999969]]],[[[98.52092780000004,-0.501602499999933],[98.52497030000006,-0.496695799999941],[98.52508940000007,-0.494421799999941],[98.52294950000004,-0.492865699999925],[98.51938280000007,-0.494301699999937],[98.516648,-0.499088899999947],[98.51712340000006,-0.501841599999977],[98.52092780000004,-0.501602499999933]]],[[[98.51914620000008,-0.477067099999942],[98.51819530000006,-0.475391499999944],[98.51783830000005,-0.479341],[98.51914620000008,-0.477067099999942]]],[[[98.51676990000004,-0.45696],[98.51688890000008,-0.454566299999954],[98.51427330000007,-0.455763],[98.51546210000004,-0.457438599999932],[98.51676990000004,-0.45696]]],[[[98.53651150000007,-0.395697299999938],[98.53698720000006,-0.394261099999937],[98.53353960000004,-0.391508099999953],[98.53270720000006,-0.394978899999956],[98.53556040000007,-0.397013699999945],[98.53651150000007,-0.395697299999938]]],[[[98.51345070000008,-0.339923099999965],[98.51440190000005,-0.336931],[98.51226210000004,-0.334417499999972],[98.50929,-0.334058299999924],[98.50833880000005,-0.336332299999924],[98.50976520000006,-0.339563799999951],[98.51345070000008,-0.339923099999965]]],[[[98.57859780000007,-0.327404499999943],[98.57637870000008,-0.325649],[98.57606150000004,-0.329159799999957],[98.57083050000006,-0.330436199999951],[98.57209850000004,-0.332032099999935],[98.57019630000008,-0.332351199999948],[98.57067180000007,-0.333947],[98.573525,-0.3355429],[98.57780490000005,-0.335064399999965],[98.57954870000003,-0.332351599999924],[98.57859780000007,-0.327404499999943]]],[[[98.49764890000006,-0.312889199999972],[98.49550910000005,-0.310974099999953],[98.49384460000005,-0.313726799999927],[98.49693550000006,-0.314923799999974],[98.49764890000006,-0.312889199999972]]],[[[98.40901750000006,-0.311829399999965],[98.41073360000007,-0.311298699999952],[98.41132820000007,-0.308426399999973],[98.407524,-0.30699],[98.40704830000004,-0.309982],[98.408237,-0.3126151],[98.40901750000006,-0.311829399999965]]],[[[98.49347760000006,-0.291076499999974],[98.49157570000006,-0.2858103],[98.48610710000008,-0.283416399999965],[98.49347760000006,-0.291076499999974]]],[[[98.46911840000007,-0.276384299999961],[98.46769190000003,-0.275905499999965],[98.46757290000005,-0.277700699999968],[98.46971280000008,-0.277820499999962],[98.46911840000007,-0.276384299999961]]],[[[98.38993110000007,-0.275871699999925],[98.38814830000007,-0.267134899999974],[98.38933730000008,-0.263783799999942],[98.38291780000009,-0.260073399999953],[98.38089670000005,-0.261988199999962],[98.38137190000003,-0.2694085],[98.38648350000005,-0.275512499999934],[98.389931,-0.277188199999955],[98.38993110000007,-0.275871699999925]]],[[[98.42856910000006,-0.249423799999931],[98.421912,-0.2421229],[98.41680010000005,-0.240686499999924],[98.41335240000006,-0.242840599999965],[98.41632410000005,-0.250859499999933],[98.42440780000004,-0.257562],[98.42488310000005,-0.261870599999952],[98.42309980000005,-0.263187099999925],[98.428806,-0.267974599999945],[98.43023210000007,-0.278028],[98.43510610000004,-0.282576199999937],[98.44009910000005,-0.283893],[98.44159880000007,-0.290086599999938],[98.44081160000007,-0.300768299999959],[98.43903950000004,-0.304867399999978],[98.43379720000007,-0.306752099999926],[98.43439150000006,-0.308786699999928],[98.43260810000004,-0.311898399999961],[98.42642610000007,-0.312257099999954],[98.42359250000004,-0.316831499999978],[98.41620190000003,-0.317402899999934],[98.41358670000005,-0.312735099999941],[98.40859360000007,-0.313572599999929],[98.405757,-0.320582399999978],[98.39979570000008,-0.323146599999973],[98.39563450000009,-0.329130499999962],[98.39539630000007,-0.3349949],[98.393197,-0.340004599999929],[98.39164270000003,-0.338439699999924],[98.38825130000004,-0.338866199999927],[98.38655530000005,-0.341853599999979],[98.38387040000003,-0.342564699999969],[98.38401130000005,-0.349250899999959],[98.38146730000005,-0.355368],[98.38245550000005,-0.369594],[98.38005290000007,-0.374003899999934],[98.372987,-0.379693799999927],[98.37242160000005,-0.381543099999931],[98.37436180000003,-0.389059699999962],[98.37425730000007,-0.399183499999936],[98.37757060000007,-0.404259499999966],[98.37804580000005,-0.407969699999967],[98.37806920000008,-0.443201299999942],[98.37608960000006,-0.457937],[98.37156680000004,-0.466946299999961],[98.36492530000004,-0.465333499999929],[98.35489170000005,-0.470596099999966],[98.35588040000005,-0.475859799999967],[98.35248870000004,-0.478135699999939],[98.35220590000006,-0.480127299999936],[98.35509420000005,-0.488105699999949],[98.35259590000004,-0.489306499999941],[98.35211970000006,-0.496726699999954],[98.34403550000007,-0.497803],[98.348406,-0.499598599999956],[98.34605610000006,-0.5017527],[98.34676920000004,-0.503907],[98.34498530000008,-0.509890799999937],[98.34927440000007,-0.5139873],[98.34522220000008,-0.518866899999978],[98.34117990000004,-0.521020699999951],[98.33654320000005,-0.522695799999951],[98.32834020000007,-0.522455499999978],[98.32524940000008,-0.520779699999935],[98.32382420000005,-0.507614699999976],[98.32025770000007,-0.507614299999943],[98.31764210000006,-0.508930499999963],[98.31613670000007,-0.512509299999977],[98.30444560000007,-0.513237599999968],[98.29267540000006,-0.520058],[98.28958450000005,-0.5198183],[98.28643510000006,-0.522639],[98.28786270000006,-0.525922599999944],[98.29214580000007,-0.528064099999938],[98.29357340000007,-0.5303484],[98.29861840000007,-0.530111799999929],[98.30146130000008,-0.532204399999955],[98.31348950000006,-0.530062899999962],[98.32266230000005,-0.531847499999969],[98.32748080000005,-0.533917599999938],[98.33497610000006,-0.540877499999965],[98.34129350000006,-0.542448],[98.34397040000005,-0.541091699999924],[98.35242940000006,-0.546516899999972],[98.35913950000008,-0.546445499999948],[98.37969490000006,-0.557407799999964],[98.39491170000008,-0.563513199999932],[98.41084090000004,-0.579552299999932],[98.41476350000005,-0.585895799999946],[98.41452470000007,-0.595949099999928],[98.41761550000007,-0.597984],[98.42106340000004,-0.596667899999943],[98.42570050000006,-0.591761399999939],[98.42629530000005,-0.589008799999931],[98.42558320000006,-0.576442],[98.42368170000003,-0.569979],[98.41631090000004,-0.567704299999946],[98.41559780000006,-0.565310599999975],[98.41702550000008,-0.554299899999933],[98.42546760000005,-0.542930899999931],[98.43735670000007,-0.5380251],[98.44230440000007,-0.537569599999927],[98.44627310000004,-0.539342399999953],[98.44972030000008,-0.544967799999938],[98.452217,-0.545087699999954],[98.46172830000006,-0.541378399999928],[98.463512,-0.537189699999942],[98.468149,-0.532163399999945],[98.47432140000006,-0.532477299999925],[98.47943310000005,-0.537983199999928],[98.47931380000006,-0.543488599999932],[98.47146610000004,-0.555456299999946],[98.46670890000007,-0.574246099999925],[98.4698,-0.574007],[98.47776610000005,-0.568263],[98.48490030000005,-0.557731399999966],[98.48632750000007,-0.551508],[98.48989420000004,-0.550550799999939],[98.49227180000008,-0.552466],[98.48799090000006,-0.563715899999977],[98.48810930000008,-0.568982],[98.491319,-0.572453099999962],[98.49750150000006,-0.568504099999927],[98.50594370000005,-0.555459299999939],[98.50725180000006,-0.552108199999964],[98.50630150000006,-0.542294],[98.49988180000008,-0.537984899999969],[98.49679120000008,-0.532000399999959],[98.48323910000005,-0.519552199999964],[98.48121830000008,-0.515602499999943],[98.48371520000006,-0.511653099999933],[98.483121,-0.509618399999965],[98.48538,-0.507464299999924],[98.49417790000007,-0.504832],[98.49952830000007,-0.4982498],[98.50571080000003,-0.493941599999971],[98.50642440000007,-0.489154299999939],[98.50523610000005,-0.482092899999941],[98.50642520000008,-0.4792205],[98.50856520000008,-0.478263199999958],[98.50856550000003,-0.473834899999929],[98.50713930000006,-0.467970299999934],[98.504524,-0.464499199999977],[98.50297930000005,-0.451872499999979],[98.50452530000007,-0.445230099999947],[98.50856790000006,-0.439006799999959],[98.507736,-0.433621],[98.504883,-0.430030299999942],[98.50762560000004,-0.425362799999959],[98.51070870000007,-0.426081099999976],[98.51130350000005,-0.419498499999975],[98.51439490000007,-0.414232499999969],[98.51273080000004,-0.4080089],[98.50001350000008,-0.397251],[98.50233020000007,-0.389189099999953],[98.50381830000003,-0.388035599999967],[98.50583610000007,-0.396638399999972],[98.50738160000009,-0.397237],[98.51034250000004,-0.392444699999942],[98.51213730000006,-0.392928599999948],[98.51344490000008,-0.395801099999971],[98.51558480000006,-0.396160299999963],[98.51356390000007,-0.393048399999941],[98.513683,-0.390295699999967],[98.51736870000008,-0.384551],[98.52224330000007,-0.380362299999945],[98.521649,-0.378327699999943],[98.51808240000008,-0.377609399999926],[98.51404,-0.383354],[98.51273250000008,-0.380122399999948],[98.51558580000005,-0.378686399999935],[98.51499160000009,-0.374497399999939],[98.51037160000004,-0.371240099999966],[98.51255260000005,-0.370698],[98.51689370000008,-0.375694299999964],[98.51974690000009,-0.376292899999953],[98.52355130000007,-0.374193299999945],[98.52438650000005,-0.371999099999925],[98.52141460000007,-0.366014699999937],[98.522366,-0.359910799999966],[98.51751520000005,-0.352086299999939],[98.51559,-0.351652199999933],[98.51570910000004,-0.348301099999958],[98.50905160000008,-0.346505499999978],[98.50726840000004,-0.345069199999955],[98.50607980000007,-0.339683299999933],[98.50132450000007,-0.336930299999949],[98.49934110000004,-0.322613499999932],[98.49200040000005,-0.314089299999978],[98.49336060000007,-0.3101207],[98.49086420000003,-0.305452899999977],[98.49062660000004,-0.301383699999974],[98.48587150000009,-0.296237099999928],[98.476523,-0.289930199999958],[98.47362420000007,-0.286048899999969],[98.47302990000009,-0.282697699999972],[98.46708590000009,-0.278628199999957],[98.46554060000005,-0.273721099999932],[98.462212,-0.271566699999937],[98.46149880000007,-0.267856399999971],[98.45935910000009,-0.265462699999944],[98.45234510000006,-0.262829299999964],[98.44640120000008,-0.256844899999976],[98.45044320000005,-0.257323799999938],[98.45139430000006,-0.255648299999962],[98.44889790000008,-0.251818299999968],[98.44498380000005,-0.250120199999969],[98.44735260000004,-0.248945899999967],[98.446045,-0.246312799999941],[98.444975,-0.247509599999944],[98.440933,-0.245474799999954],[98.429639,-0.250261599999931],[98.42856910000006,-0.249423799999931]]],[[[98.40859740000008,-0.234941399999968],[98.40847870000005,-0.232308399999965],[98.398136,-0.231470099999967],[98.40372330000008,-0.235300199999926],[98.40859740000008,-0.234941399999968]]],[[[98.53570560000009,-0.2296753],[98.53228760000007,-0.2233887],[98.52990720000008,-0.223205599999972],[98.53167720000005,-0.226806599999975],[98.53027340000006,-0.2277222],[98.53247070000003,-0.230590799999959],[98.53570560000009,-0.2296753]]],[[[98.38874790000006,-0.215231499999959],[98.38941280000006,-0.213491199999964],[98.38768420000008,-0.211884699999928],[98.38542360000008,-0.211884599999962],[98.38316290000006,-0.214829699999939],[98.38422660000003,-0.216034599999944],[98.38874790000006,-0.215231499999959]]],[[[98.37106280000006,-0.195685599999933],[98.37305730000008,-0.198363099999938],[98.37412120000005,-0.196890599999961],[98.37106280000006,-0.195685599999933]]],[[[98.41088870000004,-0.172302199999933],[98.41290280000004,-0.1694946],[98.40869140000007,-0.170105],[98.40887450000008,-0.172302199999933],[98.41088870000004,-0.172302199999933]]],[[[98.52751030000007,-0.147765599999957],[98.52703490000005,-0.1421404],[98.51906970000005,-0.139148199999966],[98.51669210000006,-0.135916599999973],[98.51467110000004,-0.136036299999944],[98.51799970000008,-0.142738699999938],[98.52109070000006,-0.143576499999938],[98.52227940000006,-0.146449],[98.52751030000007,-0.147765599999957]]],[[[98.51479040000004,-0.113655299999948],[98.51407720000003,-0.1087482],[98.51098620000005,-0.109346599999924],[98.51074840000007,-0.111500899999953],[98.51467150000008,-0.115570199999979],[98.51479040000004,-0.113655299999948]]],[[[98.18958420000007,-0.142938899999933],[98.19633630000004,-0.135462],[98.20325710000009,-0.132233499999927],[98.20697080000008,-0.125946099999965],[98.20697110000003,-0.1140507],[98.20578960000006,-0.111671599999966],[98.19903790000006,-0.106913299999974],[98.18232680000006,-0.117958499999929],[98.18283280000009,-0.129853799999978],[98.185702,-0.141749199999936],[98.18755870000007,-0.143448599999942],[98.18958420000007,-0.142938899999933]]],[[[98.22840850000006,-0.109293199999968],[98.22874620000005,-0.104025199999967],[98.22587670000007,-0.100796399999979],[98.22131920000004,-0.100966199999959],[98.21929360000007,-0.1036851],[98.22266930000006,-0.110142699999926],[98.22368210000008,-0.1109924],[98.22840850000006,-0.109293199999968]]],[[[98.484475,-0.122272],[98.48447510000005,-0.118202799999949],[98.48637730000007,-0.116646899999978],[98.48602070000004,-0.111620199999948],[98.478769,-0.103720899999928],[98.47651020000006,-0.103242199999954],[98.47686690000006,-0.099651699999924],[98.47211160000006,-0.099890899999934],[98.46985280000007,-0.106473499999936],[98.47068490000004,-0.108747499999936],[98.478531,-0.114731799999959],[98.47995760000003,-0.1177239],[98.47936310000006,-0.120476699999926],[98.484475,-0.122272]]],[[[98.49291590000007,-0.111979299999973],[98.49327260000007,-0.108628199999941],[98.49030070000003,-0.100010899999972],[98.48756640000005,-0.098455],[98.48613970000008,-0.102883299999974],[98.48851730000007,-0.109585599999946],[98.49172710000005,-0.111141499999974],[98.49327250000005,-0.115091099999972],[98.49814670000006,-0.114492799999937],[98.49648240000005,-0.112099099999966],[98.49291590000007,-0.111979299999973]]],[[[98.28709460000005,-0.098216099999945],[98.28117580000009,-0.099581499999942],[98.28031260000006,-0.101816],[98.28105230000006,-0.105291899999941],[98.285368,-0.109761],[98.28931410000007,-0.1014438],[98.28857430000005,-0.098588599999971],[98.28709460000005,-0.098216099999945]]],[[[98.30904360000005,-0.095113099999935],[98.302787,-0.096354299999973],[98.30150030000004,-0.099923499999932],[98.30161910000004,-0.103154899999936],[98.30460420000009,-0.108644199999958],[98.30423420000005,-0.111871899999926],[98.30864420000006,-0.1166477],[98.32013210000008,-0.115501399999971],[98.32158290000007,-0.113056399999948],[98.31659090000005,-0.104919299999949],[98.31621280000007,-0.097080199999937],[98.31433930000009,-0.095376],[98.30904360000005,-0.095113099999935]]],[[[98.36145030000006,-0.094245099999966],[98.35910750000005,-0.093003599999975],[98.35984730000007,-0.094989899999973],[98.36145030000006,-0.094245099999966]]],[[[98.26181640000004,-0.100946599999929],[98.26452920000008,-0.098836299999959],[98.26514580000008,-0.093746599999974],[98.26341960000008,-0.091636199999925],[98.25898040000004,-0.094863699999962],[98.25910360000006,-0.099581],[98.26181640000004,-0.100946599999929]]],[[[98.33458080000008,-0.094776899999943],[98.33300340000005,-0.092623699999933],[98.32610840000007,-0.091785799999968],[98.32337410000008,-0.097051699999952],[98.32378220000004,-0.099225899999965],[98.32112790000008,-0.098837499999945],[98.31830710000008,-0.103222],[98.32236070000005,-0.113237799999979],[98.31939270000004,-0.117246699999953],[98.32028260000004,-0.125296099999957],[98.32610060000007,-0.132445899999937],[98.34022310000006,-0.137951599999951],[98.34417690000004,-0.142052],[98.34726780000005,-0.142650499999945],[98.34655460000005,-0.1401372],[98.34286940000004,-0.138341899999944],[98.34168080000006,-0.130921699999931],[98.33704450000005,-0.129844399999968],[98.335618,-0.126613],[98.33688650000005,-0.121506299999965],[98.33383530000003,-0.106027899999958],[98.33561860000003,-0.102437499999951],[98.33966050000004,-0.101121099999943],[98.33680740000005,-0.09777],[98.33668860000006,-0.095496099999934],[98.33458080000008,-0.094776899999943]]],[[[98.30459140000005,-0.088554],[98.30340250000006,-0.094538],[98.31219950000008,-0.093580699999961],[98.31089190000006,-0.089750899999956],[98.30459140000005,-0.088554]]],[[[98.34964670000005,-0.081014899999957],[98.34857690000007,-0.079459099999951],[98.34762580000006,-0.080057499999953],[98.34798240000003,-0.081254299999955],[98.34964670000005,-0.081014899999957]]],[[[98.36165370000003,-0.074552399999959],[98.36105940000004,-0.0723981],[98.35784960000007,-0.073355499999934],[98.35796840000006,-0.076108199999965],[98.36189140000005,-0.077065699999935],[98.36165370000003,-0.074552399999959]]],[[[97.88980870000006,-0.062084199999958],[97.88924990000004,-0.061112499999979],[97.88164250000005,-0.062548399999969],[97.88116710000008,-0.061351699999932],[97.87795780000005,-0.061351599999966],[97.87201450000003,-0.062667799999929],[97.86048470000009,-0.061231599999928],[97.84075340000004,-0.062786799999969],[97.83706860000007,-0.064222699999959],[97.83659310000007,-0.067094599999962],[97.84503210000008,-0.078103899999974],[97.850262,-0.080018699999926],[97.85584860000006,-0.080138499999975],[97.85572960000007,-0.083608799999979],[97.85252030000004,-0.083728299999962],[97.85454080000005,-0.089113299999951],[97.85703690000008,-0.0912673],[97.86333660000008,-0.092942899999969],[97.86702140000006,-0.091866],[97.87355890000003,-0.094738199999938],[97.87617390000008,-0.096054599999945],[97.879383,-0.101918299999966],[97.88853550000005,-0.106226599999957],[97.89875810000007,-0.100602599999945],[97.89935260000004,-0.094140699999969],[97.89222110000009,-0.0809772],[97.88980870000006,-0.062084199999958]]],[[[98.31256870000004,-0.046429599999954],[98.31138720000007,-0.046828299999959],[98.31196240000008,-0.053009199999963],[98.31303230000003,-0.054804399999966],[98.31552870000007,-0.054804399999966],[98.31469650000008,-0.0575571],[98.31731190000005,-0.057916099999943],[98.31754960000006,-0.062823],[98.31897610000004,-0.061626299999944],[98.32147870000006,-0.063211],[98.31374540000007,-0.067849499999966],[98.31136780000008,-0.064259099999958],[98.31184340000004,-0.062224599999979],[98.30916750000006,-0.063581499999941],[98.30559150000005,-0.062464199999965],[98.30609060000006,-0.060198499999956],[98.30482960000006,-0.059352199999978],[98.30194150000005,-0.061062799999945],[98.29924230000006,-0.058753699999954],[98.29698850000005,-0.0587999],[98.29553410000005,-0.070911499999966],[98.29781560000004,-0.0726365],[98.30411610000004,-0.072516899999925],[98.30827680000004,-0.078141899999935],[98.31624160000007,-0.080056899999931],[98.31838140000008,-0.084126099999935],[98.32120410000005,-0.084941699999945],[98.32099670000008,-0.086998499999936],[98.32325540000005,-0.087237899999934],[98.32480080000005,-0.090349599999968],[98.33217130000008,-0.089751299999932],[98.33621310000007,-0.092863099999931],[98.348101,-0.097291499999926],[98.35000320000006,-0.092863399999942],[98.35725490000004,-0.089392699999962],[98.35190540000008,-0.082810199999926],[98.34810130000005,-0.0836479],[98.34536710000003,-0.081014899999957],[98.34667480000007,-0.077663799999925],[98.34631820000004,-0.072158499999944],[98.34122780000007,-0.074754599999949],[98.344064,-0.071154599999943],[98.34358410000004,-0.067012199999965],[98.34227640000006,-0.066294099999936],[98.34001770000003,-0.068328599999973],[98.33680790000005,-0.068328599999973],[98.33114420000004,-0.073236699999939],[98.330864,-0.066054599999973],[98.33229060000008,-0.0600706],[98.32619980000004,-0.062881799999957],[98.32374220000008,-0.062062499999968],[98.32753550000007,-0.053368399999954],[98.32385030000006,-0.050974799999949],[98.31968950000004,-0.051333799999952],[98.31861960000003,-0.048940199999947],[98.31256870000004,-0.046429599999954]]],[[[98.257592,-0.041364],[98.26036830000004,-0.037504299999966],[98.25719540000006,-0.035374799999943],[98.25455130000006,-0.037238099999968],[98.25455130000006,-0.039367599999935],[98.25547670000003,-0.041896399999928],[98.257592,-0.041364]]],[[[98.28338790000004,-0.0534599],[98.28448890000004,-0.048899499999948],[98.28165620000004,-0.043631199999936],[98.27675690000007,-0.038871799999924],[98.27464630000009,-0.033378499999969],[98.27332420000005,-0.0323138],[98.26988690000007,-0.033245399999942],[98.26433440000005,-0.038436],[98.26631740000005,-0.044159099999945],[98.26415870000005,-0.051715],[98.26464870000007,-0.055529399999955],[98.26314430000008,-0.058000899999968],[98.26697810000007,-0.068515399999967],[98.27623220000004,-0.077033599999936],[98.282049,-0.086483399999963],[98.28297430000003,-0.093936699999972],[98.28575060000009,-0.093271299999969],[98.29077460000008,-0.079961899999944],[98.28338790000004,-0.0534599]]],[[[98.52703620000005,-0.031312499999956],[98.52465860000007,-0.031671599999925],[98.52751170000005,-0.038254199999926],[98.52572840000005,-0.055728199999976],[98.52893820000008,-0.057044699999949],[98.53345570000005,-0.062310899999943],[98.54593840000007,-0.0712874],[98.54451190000003,-0.064585],[98.54641410000005,-0.062430699999936],[98.53856780000007,-0.060635299999944],[98.53619010000006,-0.057044799999971],[98.53286150000008,-0.0388527],[98.52965170000004,-0.032389699999953],[98.52798730000006,-0.032868399999927],[98.52703620000005,-0.031312499999956]]],[[[98.50635040000009,-0.050940599999933],[98.502784,-0.043161099999963],[98.50254630000006,-0.037895],[98.49993090000004,-0.0368179],[98.50076310000009,-0.035262],[98.49969310000006,-0.033347],[98.49553220000007,-0.029038399999934],[98.49196580000006,-0.028200599999934],[98.48625940000005,-0.0357406],[98.488518,-0.049384599999939],[98.49327320000003,-0.064943599999935],[98.49672080000005,-0.069252199999937],[98.49969280000005,-0.0706885],[98.50290270000005,-0.068175099999962],[98.50432940000007,-0.056326399999932],[98.50218950000004,-0.056685399999935],[98.50253920000006,-0.054946599999937],[98.50409170000006,-0.0518981],[98.50635040000009,-0.050940599999933]]],[[[98.25879330000004,-0.028574399999968],[98.25845580000004,-0.025515599999949],[98.25541740000006,-0.024495899999977],[98.254911,-0.027724699999965],[98.25879330000004,-0.028574399999968]]],[[[98.45261570000008,-0.0219769],[98.45214020000009,-0.019822599999941],[98.44988150000006,-0.018506099999968],[98.45083250000005,-0.022335899999973],[98.45214020000009,-0.023293399999943],[98.45261570000008,-0.0219769]]],[[[98.38603870000009,0.00637370000004],[98.37878690000008,0.007331100000044],[98.376766,0.002543800000069],[98.37044370000007,-0.000163799999939],[98.35976610000006,0.001945400000068],[98.35536760000008,0.005894900000044],[98.34566750000005,0.004074800000069],[98.33373150000006,-0.002243399999941],[98.33016510000004,-0.007748699999979],[98.32469670000006,-0.009184799999957],[98.32129950000007,-0.014215599999943],[98.30127610000005,-0.0151669],[98.295234,-0.018146199999933],[98.29412420000006,-0.020629],[98.29819330000004,-0.023608399999944],[98.30546860000004,-0.023608399999944],[98.30924230000005,-0.025700599999936],[98.31304650000004,-0.025820299999964],[98.31897010000006,-0.032052499999963],[98.32443790000008,-0.031435699999975],[98.32776660000007,-0.029520899999966],[98.32657770000009,-0.034547399999951],[98.32909510000007,-0.036112899999978],[98.33836770000005,-0.035035899999968],[98.34217180000007,-0.032881699999962],[98.34443050000004,-0.039464099999975],[98.34716470000006,-0.039464099999975],[98.34954230000005,-0.041259399999944],[98.35156320000004,-0.047363099999927],[98.36226230000005,-0.058696099999963],[98.36219060000008,-0.064699499999961],[98.36987030000006,-0.081352799999934],[98.36987020000004,-0.0856613],[98.37367430000006,-0.091166699999974],[98.37688390000005,-0.099903499999925],[98.38109680000008,-0.104702599999939],[98.37853430000007,-0.109546899999941],[98.37705490000008,-0.109811099999945],[98.37509990000007,-0.107010699999933],[98.37755750000008,-0.105802799999935],[98.37260410000005,-0.104451399999959],[98.37212870000008,-0.102775799999961],[98.36927550000007,-0.102895399999966],[98.36749230000004,-0.1038528],[98.36808660000008,-0.107802299999946],[98.374506,-0.115342399999975],[98.38319590000003,-0.119329799999946],[98.38327580000004,-0.121184299999925],[98.38520510000006,-0.121087399999965],[98.388177,-0.126473099999941],[98.38948450000004,-0.137124799999924],[98.39328860000006,-0.140236699999946],[98.39863820000005,-0.141353799999933],[98.40161,-0.150649199999975],[98.40814840000007,-0.1537611],[98.41349790000004,-0.158428899999933],[98.41387940000004,-0.167480499999954],[98.41992190000008,-0.168029799999942],[98.42291260000007,-0.170715299999927],[98.42547610000008,-0.176818799999978],[98.42370610000006,-0.179077099999972],[98.42370610000006,-0.184387199999946],[98.42791750000004,-0.1851196],[98.430481,-0.184082],[98.43347170000004,-0.1862183],[98.43573,-0.193115199999966],[98.43310550000007,-0.194213899999966],[98.43072510000007,-0.199279799999942],[98.43627930000008,-0.211608899999931],[98.44250490000007,-0.218200699999954],[98.44812010000004,-0.2207031],[98.45031740000007,-0.228698699999939],[98.45507810000004,-0.228271499999948],[98.45629880000007,-0.229309099999966],[98.45410160000006,-0.231384299999945],[98.45471190000006,-0.232788099999937],[98.46972660000006,-0.249511699999971],[98.47332760000006,-0.256713899999966],[98.47351070000008,-0.260070799999937],[98.49029540000004,-0.281005899999968],[98.49212650000004,-0.282714799999951],[98.49633430000006,-0.2784076],[98.49206060000006,-0.282944],[98.49807450000009,-0.289740199999926],[98.50061070000004,-0.289102],[98.50124460000006,-0.293091499999946],[98.50710940000005,-0.297879099999932],[98.50584120000008,-0.298677],[98.50346310000003,-0.308251599999949],[98.50972890000008,-0.313353799999959],[98.51154940000004,-0.321371899999974],[98.52010910000007,-0.322808499999951],[98.52474520000004,-0.330707899999936],[98.52720660000006,-0.3324632],[98.523675,-0.335974],[98.53167650000006,-0.349424399999975],[98.53595620000004,-0.352935399999978],[98.53801640000006,-0.363627299999962],[98.54106480000007,-0.364836799999978],[98.54229610000004,-0.367138299999965],[98.54403930000007,-0.3752769],[98.54800180000007,-0.382777399999952],[98.54736760000009,-0.385968899999966],[98.54895250000004,-0.390118099999938],[98.55101310000003,-0.392033199999958],[98.55386640000006,-0.3920333],[98.55909760000009,-0.3883633],[98.558464,-0.379586299999971],[98.55434290000005,-0.373522099999946],[98.54483240000008,-0.366180899999961],[98.54515,-0.354052899999942],[98.54150450000009,-0.348148199999969],[98.54607950000008,-0.342129099999966],[98.549589,-0.341605899999934],[98.552284,-0.336978199999976],[98.55286570000004,-0.332617499999969],[98.55735660000005,-0.332191],[98.55886870000006,-0.330656599999941],[98.56623350000007,-0.331712699999969],[98.56849240000008,-0.329738],[98.56968150000006,-0.324232499999937],[98.566472,-0.314537799999925],[98.56842770000009,-0.309156199999961],[98.57015750000005,-0.311904899999945],[98.57170310000004,-0.311545899999942],[98.57058670000004,-0.303520399999968],[98.572179,-0.3025696],[98.57336820000006,-0.292875099999947],[98.57158490000006,-0.292635699999948],[98.57075260000005,-0.296704899999952],[98.56944480000004,-0.297423],[98.57229830000006,-0.290481299999954],[98.57324980000004,-0.279829399999926],[98.56801890000008,-0.2773158],[98.56647360000005,-0.271092099999976],[98.56338270000003,-0.270373899999925],[98.56120820000007,-0.266484599999956],[98.55901150000005,-0.258714299999951],[98.55770390000004,-0.256919],[98.55411660000004,-0.256694699999969],[98.55318640000007,-0.252969199999939],[98.54914440000005,-0.249857299999974],[98.54926330000006,-0.248181699999975],[98.546648,-0.245668199999955],[98.54296260000007,-0.244710599999962],[98.53264,-0.236667899999929],[98.53076410000006,-0.238523],[98.53271480000006,-0.236572299999978],[98.52648930000004,-0.231689499999959],[98.520874,-0.231384299999945],[98.52032470000006,-0.229309099999966],[98.52349850000007,-0.227111799999932],[98.519104,-0.227111799999932],[98.51647950000006,-0.229126],[98.51428220000008,-0.226806599999975],[98.51110840000007,-0.227783199999976],[98.513916,-0.2252808],[98.51892090000007,-0.224487299999964],[98.51971440000005,-0.2218018],[98.50927730000006,-0.223571799999945],[98.50811770000007,-0.215026899999941],[98.50427250000007,-0.214904799999942],[98.49792480000008,-0.210815399999944],[98.49328610000003,-0.209594699999968],[98.49291990000006,-0.203308099999958],[98.49548340000007,-0.202392599999939],[98.49670410000004,-0.1968994],[98.49291990000006,-0.193115199999966],[98.49548340000007,-0.192382799999962],[98.49591060000006,-0.189025899999933],[98.49090580000006,-0.186401399999966],[98.49188230000004,-0.1846924],[98.48907470000006,-0.180908199999976],[98.48687740000008,-0.180114699999933],[98.48416720000006,-0.181446899999969],[98.48661350000003,-0.180047399999978],[98.48649480000006,-0.1780447],[98.48554380000007,-0.173377],[98.48209630000008,-0.169786399999964],[98.48387960000008,-0.168110899999931],[98.48185870000003,-0.164835299999936],[98.48483080000005,-0.1629645],[98.48506860000003,-0.1606905],[98.48114560000005,-0.157578599999965],[98.478649,-0.157578599999965],[98.47793590000003,-0.150636899999938],[98.475072,-0.147525099999939],[98.47710380000007,-0.147166099999936],[98.48043260000009,-0.141182],[98.48625790000006,-0.139147499999979],[98.48768460000008,-0.135916],[98.47960060000008,-0.135197699999935],[98.484356,-0.129692399999954],[98.48376170000006,-0.123109799999952],[98.47793650000006,-0.120476599999961],[98.47698560000003,-0.114731799999959],[98.47104150000007,-0.111739599999964],[98.468545,-0.10779],[98.47032850000005,-0.092590199999961],[98.46129350000007,-0.086246899999935],[98.45867810000004,-0.085768099999939],[98.45689490000007,-0.088281399999971],[98.45796490000004,-0.085648399999968],[98.45546840000009,-0.0795445],[98.44591830000007,-0.073520299999927],[98.44655240000009,-0.072004399999969],[98.44385480000005,-0.067905899999971],[98.44572030000006,-0.065900499999941],[98.44227280000007,-0.057642399999963],[98.44013290000004,-0.057283299999938],[98.437442,-0.054126899999972],[98.43656650000008,-0.048905499999933],[98.42420290000007,-0.036458399999958],[98.42265750000007,-0.033107199999961],[98.42146870000005,-0.032389099999932],[98.418727,-0.037262399999975],[98.41861560000007,-0.027123099999926],[98.41469250000006,-0.019583099999977],[98.41801760000004,-0.009424399999943],[98.41801760000004,-0.004756799999939],[98.41528340000008,0.002065100000038],[98.41147920000009,0.001586400000065],[98.40838830000007,-0.002841799999942],[98.40303860000006,-0.0053552],[98.39590570000007,-0.014331299999981],[98.39476050000007,-0.007413499999927],[98.39104570000006,-0.0047392],[98.39196180000005,0.004468400000064],[98.38603870000009,0.00637370000004]]],[[[98.23464580000007,0.007234],[98.22859720000008,0.009033100000067],[98.22144890000004,0.006818800000076],[98.21691240000007,0.001975],[98.21608760000004,-0.002038399999947],[98.21718740000006,-0.007574199999965],[98.218837,-0.009234899999967],[98.22144890000004,-0.009234899999967],[98.22474810000006,-0.006605399999955],[98.22804730000007,-0.001623199999926],[98.23285870000007,0.001698200000021],[98.23464580000007,0.007234]]],[[[98.24908,-0.000792899999965],[98.25237930000009,0.002943800000025],[98.26378920000008,0.008064400000023],[98.26612610000006,0.01138590000005],[98.26392660000005,0.014569],[98.26103980000005,0.014845800000046],[98.25416630000007,0.01235470000006],[98.24509340000009,0.002667],[98.24591820000006,-0.000654499999939],[98.24908,-0.000792899999965]]],[[[98.21718730000003,0.018859100000043],[98.218562,0.022734100000037],[98.21347570000006,0.024533200000064],[98.21127620000004,0.023841300000072],[98.21168860000006,0.02121180000006],[98.21512530000007,0.018582300000048],[98.21718730000003,0.018859100000043]]],[[[98.46032550000007,0.030109400000072],[98.46032550000007,0.034418],[98.45652120000005,0.039205300000049],[98.45533240000003,0.038008400000024],[98.45699680000007,0.030588100000045],[98.46032550000007,0.027955100000042],[98.46032550000007,0.030109400000072]]],[[[98.30076830000007,0.048061200000063],[98.301868,0.051105900000039],[98.29994340000007,0.053181800000061],[98.29554440000004,0.052766600000041],[98.292795,0.050967400000047],[98.29595680000006,0.048476300000061],[98.30076830000007,0.048061200000063]]],[[[98.93193760000008,0.048131100000035],[98.92885510000008,0.054628700000023],[98.92779550000006,0.054434700000058],[98.92846980000007,0.048034100000052],[98.931745,0.04609460000006],[98.93193760000008,0.048131100000035]]],[[[98.21430030000005,0.049997700000063],[98.21636220000005,0.053596],[98.21539990000008,0.055533500000024],[98.21347540000005,0.055810300000076],[98.21210070000006,0.054841500000066],[98.21155090000008,0.050136100000032],[98.21278810000007,0.049167400000044],[98.21430030000005,0.049997700000063]]],[[[98.23574420000006,0.051241],[98.24026150000003,0.054472400000066],[98.23990480000003,0.058780800000022],[98.23633840000008,0.061653],[98.22777930000007,0.06380710000002],[98.22659050000004,0.061892200000045],[98.22837370000008,0.060097100000064],[98.22932480000009,0.055429700000047],[98.23229670000006,0.051959100000033],[98.23574420000006,0.051241]]],[[[98.63034640000006,0.065184],[98.63900050000007,0.068620400000043],[98.63950050000005,0.073203100000057],[98.634864,0.073562100000061],[98.62927640000004,0.06877460000004],[98.62820650000003,0.064705200000049],[98.63034640000006,0.065184]]],[[[98.89639220000004,0.087601200000051],[98.89812610000007,0.088474],[98.89677750000004,0.091868200000022],[98.89398390000008,0.090898400000071],[98.89485090000005,0.087601200000051],[98.89639220000004,0.087601200000051]]],[[[98.85944,0.115933],[98.85623,0.117249600000036],[98.85813220000006,0.114257400000042],[98.85944,0.115933]]],[[[98.78965280000006,0.171707100000049],[98.78739390000004,0.175058300000046],[98.78656170000005,0.172425200000021],[98.78965280000006,0.169672400000024],[98.78965280000006,0.171707100000049]]],[[[98.61274980000007,0.181279200000063],[98.60870770000008,0.17984290000004],[98.60050460000008,0.179842700000052],[98.59277720000006,0.175055100000066],[98.581721,0.173618600000054],[98.57446890000006,0.175892500000032],[98.56626590000008,0.173498600000073],[98.55972740000004,0.167873300000053],[98.55580440000006,0.161888900000065],[98.54926580000006,0.160332900000071],[98.54867140000005,0.157101400000045],[98.54272730000008,0.15159570000003],[98.53951750000004,0.150997200000063],[98.53690210000008,0.147406600000068],[98.52644040000007,0.143456800000024],[98.52525160000005,0.140823700000055],[98.52632170000004,0.133044300000051],[98.53095830000007,0.12646170000005],[98.53036410000004,0.116767200000027],[98.53262290000004,0.113416100000052],[98.53250410000004,0.108509],[98.536784,0.101447700000051],[98.54260930000004,0.101447800000074],[98.54688920000007,0.099293500000044],[98.54950470000006,0.094506200000069],[98.55568670000008,0.090676300000041],[98.55830210000005,0.090915700000039],[98.56507850000008,0.09665670000004],[98.56959610000007,0.096660700000029],[98.57256820000003,0.094386800000052],[98.57601580000005,0.095703300000025],[98.57982020000009,0.09319],[98.58623990000007,0.093908200000044],[98.58909320000004,0.089719200000047],[98.59289750000005,0.089360200000044],[98.59598850000003,0.089479900000072],[98.59836610000008,0.092591800000037],[98.60240820000007,0.093549300000063],[98.60288380000009,0.091873700000065],[98.60585590000005,0.091275300000063],[98.60656920000008,0.089839100000063],[98.610968,0.089360400000032],[98.61631780000005,0.083854900000063],[98.62404540000006,0.084214],[98.626423,0.086607800000024],[98.62773080000005,0.082299100000057],[98.63415060000005,0.079546400000027],[98.63831160000007,0.079546400000027],[98.64318590000005,0.081820500000049],[98.64841690000009,0.077511800000025],[98.65091350000006,0.07787090000005],[98.65400450000004,0.073203200000023],[98.65555,0.072963800000025],[98.66529860000009,0.073682],[98.66708190000008,0.076913600000069],[98.67336960000006,0.080996300000038],[98.67897040000008,0.076315200000067],[98.68550910000005,0.079068100000029],[98.69109680000008,0.075238100000036],[98.69894320000009,0.076195700000028],[98.70560080000007,0.079906],[98.72640590000003,0.075956500000075],[98.731518,0.072126500000024],[98.74293110000008,0.076674700000069],[98.74923210000009,0.075358200000039],[98.74899430000005,0.071049400000049],[98.76171510000006,0.079427600000031],[98.76718390000008,0.080569300000036],[98.76872940000004,0.079547400000024],[98.77003720000005,0.083377400000074],[98.76872940000004,0.088523900000041],[98.77884880000005,0.095287400000075],[98.78317510000005,0.096300100000065],[98.78870230000007,0.096184100000073],[98.79024780000003,0.093551],[98.79440890000006,0.092354100000023],[98.79666780000008,0.089002900000025],[98.80066610000006,0.091432200000042],[98.80867530000006,0.089481700000022],[98.81393140000006,0.092370800000026],[98.81844010000003,0.091793800000062],[98.82358030000006,0.085215900000037],[98.82673620000008,0.08515060000002],[98.82857360000008,0.083540200000073],[98.83095130000004,0.079231500000049],[98.832378,0.080667700000049],[98.85401540000004,0.080667800000072],[98.85258880000004,0.082582800000068],[98.84807110000008,0.084258400000067],[98.84608830000008,0.08911310000002],[98.84616880000004,0.091200400000048],[98.85163760000006,0.094551700000068],[98.85377710000006,0.097662800000023],[98.85235090000003,0.104126700000052],[98.85472860000004,0.11346240000006],[98.85353970000006,0.118010600000048],[98.85193070000008,0.118010600000048],[98.85052340000004,0.122874900000056],[98.84553010000008,0.127758100000051],[98.84232010000005,0.134604300000035],[98.83625680000006,0.139152400000057],[98.83090690000006,0.140109900000027],[98.82068250000003,0.153155800000036],[98.80439480000007,0.166201600000022],[98.80154150000004,0.166560700000048],[98.80035260000005,0.170271],[98.797856,0.171467800000073],[98.792506,0.172185900000045],[98.79203050000007,0.168714900000055],[98.78887210000005,0.166310100000032],[98.778834,0.170151],[98.77693180000006,0.173861300000056],[98.77467290000004,0.174459800000022],[98.77436730000005,0.171826600000031],[98.76920420000005,0.170869100000061],[98.76337880000005,0.166201200000046],[98.76195220000005,0.161892400000056],[98.75458120000008,0.160815100000036],[98.75398680000006,0.156027600000073],[98.75168840000003,0.156386700000041],[98.74923130000008,0.159977200000071],[98.74221690000007,0.165004],[98.73972030000004,0.165243400000065],[98.73353830000008,0.160814900000048],[98.73341940000006,0.159378600000025],[98.72818840000008,0.160455700000057],[98.725454,0.15949820000003],[98.72450290000006,0.157224100000064],[98.72271970000008,0.157224100000064],[98.71522970000007,0.161413],[98.71322630000009,0.160402300000044],[98.71344640000007,0.168474600000025],[98.71072930000008,0.172885400000041],[98.71297070000008,0.17433920000002],[98.71225740000006,0.177211700000043],[98.70880960000005,0.178288800000075],[98.70476750000006,0.177570600000024],[98.70131980000008,0.174817800000028],[98.68467580000004,0.172902500000021],[98.68194150000005,0.168474100000026],[98.68063370000004,0.168474],[98.67219280000006,0.172662900000034],[98.66969620000003,0.171825100000035],[98.66868320000003,0.169336900000076],[98.66684290000006,0.171585700000037],[98.662563,0.172423400000071],[98.66173080000004,0.174817100000041],[98.65816420000004,0.17565490000004],[98.65281430000005,0.175295700000049],[98.65186330000006,0.174098800000024],[98.64603780000004,0.176253100000054],[98.63902360000009,0.176252900000065],[98.637597,0.174816700000065],[98.63510030000003,0.17637250000007],[98.619883,0.173978500000032],[98.616792,0.176611500000035],[98.61595970000008,0.180321800000058],[98.61274980000007,0.181279200000063]]],[[[97.61279220000006,1.030217200000038],[97.59744110000008,1.034401700000046],[97.59011670000007,1.034751100000051],[97.59632,1.020632800000044],[97.58966940000005,1.013412200000062],[97.58073830000006,1.006571100000031],[97.57560830000006,1.004861100000028],[97.55204610000004,1.000681100000065],[97.54558560000004,1.002771100000075],[97.53662560000004,1.008495],[97.53529170000007,0.993984400000045],[97.53722220000009,0.979121700000064],[97.540495,0.972878300000048],[97.54888040000009,0.964143500000034],[97.54679140000007,0.958986800000048],[97.54371160000005,0.955990200000031],[97.54786590000003,0.947203600000023],[97.54069720000007,0.94415360000005],[97.54174680000006,0.940217800000028],[97.54071950000008,0.93832290000006],[97.54554010000004,0.933387400000072],[97.55108050000007,0.930834900000036],[97.56075690000006,0.932914800000049],[97.56705760000006,0.92468690000004],[97.56161010000005,0.917731500000059],[97.56164620000004,0.911028700000031],[97.55881380000005,0.910440600000072],[97.55439470000005,0.905069600000047],[97.55215110000006,0.905096100000037],[97.55176090000003,0.903056700000036],[97.54915480000005,0.90267330000006],[97.54776840000005,0.898093200000062],[97.55181420000008,0.893862100000035],[97.55014920000008,0.892256700000075],[97.54575520000009,0.891731800000059],[97.54478720000009,0.887154900000041],[97.54747280000004,0.888013300000068],[97.55072610000008,0.886820600000021],[97.556335,0.880980600000044],[97.55779110000003,0.878683300000034],[97.55629390000007,0.870136100000025],[97.55857780000008,0.866383300000052],[97.57766670000007,0.856416700000068],[97.60242560000006,0.838805],[97.603965,0.82901830000003],[97.60328610000005,0.823758300000065],[97.60599220000006,0.813807200000042],[97.608345,0.816702200000066],[97.61388060000007,0.815085],[97.62427760000008,0.808052700000076],[97.63174520000007,0.800219900000059],[97.63384370000006,0.793644800000038],[97.629367,0.789587800000049],[97.63878110000007,0.779663300000038],[97.64144110000007,0.766585],[97.63546170000006,0.760872800000072],[97.63679,0.758560600000067],[97.64603830000004,0.758539400000075],[97.64826170000003,0.75150780000007],[97.65474940000007,0.743826100000035],[97.65525610000003,0.738243900000043],[97.64964280000004,0.732996100000037],[97.65590220000007,0.725182200000063],[97.65575830000006,0.72251220000004],[97.65230440000005,0.717505],[97.65218830000003,0.71407720000002],[97.65855890000006,0.713174400000071],[97.66614670000007,0.700755],[97.66809780000006,0.686900600000058],[97.66266560000008,0.683073300000046],[97.66132780000004,0.67723170000005],[97.66649,0.669782800000064],[97.66745330000003,0.661756100000048],[97.67090830000006,0.659025],[97.68049670000005,0.641000600000041],[97.68384780000008,0.638412800000026],[97.69335440000003,0.624417200000039],[97.69562060000004,0.617236100000071],[97.69566780000008,0.607594400000039],[97.69422280000003,0.602067800000043],[97.69050560000005,0.598117800000068],[97.68752560000007,0.599710600000037],[97.68404890000005,0.598522200000048],[97.68280940000005,0.591285],[97.68375440000005,0.584872800000028],[97.69485780000008,0.576208300000076],[97.70113170000008,0.565156700000045],[97.71047670000007,0.561260600000026],[97.72110440000006,0.566617800000074],[97.72887670000006,0.567080600000054],[97.732245,0.5706],[97.73253060000008,0.578233900000043],[97.73448,0.580694400000027],[97.73759890000008,0.581363300000021],[97.74216220000005,0.580027200000075],[97.74503830000003,0.576391700000045],[97.74425720000005,0.573903900000062],[97.74788940000008,0.564497800000026],[97.74667610000006,0.564859400000046],[97.74088220000004,0.559539400000062],[97.74404610000005,0.553706100000056],[97.74768440000008,0.555497800000069],[97.75472,0.553943300000071],[97.76686720000004,0.557564400000047],[97.76779170000003,0.561200600000063],[97.77185220000007,0.565651700000046],[97.77079890000005,0.571938900000021],[97.77276610000007,0.573173900000029],[97.77569560000006,0.579123300000049],[97.78055890000007,0.580086700000038],[97.78610280000004,0.576475600000038],[97.78636170000004,0.566796700000054],[97.78892390000004,0.564479400000039],[97.78548330000007,0.562905],[97.78376610000004,0.56639610000002],[97.78058330000005,0.567785],[97.778915,0.563835],[97.78093170000005,0.553061100000036],[97.78648220000008,0.553326100000049],[97.78918610000005,0.556275600000049],[97.78716440000005,0.55869],[97.78937390000004,0.561105600000076],[97.79261220000006,0.56183610000005],[97.79555610000006,0.559433300000023],[97.79369220000007,0.556385],[97.794385,0.551782200000048],[97.79783390000006,0.550408900000036],[97.79980170000005,0.552493300000037],[97.7981,0.555101100000059],[97.79886330000005,0.557787800000028],[97.80378670000005,0.55958],[97.80906060000007,0.549181100000055],[97.81488610000008,0.545218300000045],[97.82161670000005,0.543238300000041],[97.82713610000008,0.544333300000062],[97.82796890000009,0.54561],[97.81840610000006,0.557647200000019],[97.821035,0.562731700000029],[97.81971560000005,0.567742200000055],[97.82967220000006,0.564849400000071],[97.83228670000005,0.565474400000028],[97.82905280000006,0.560091700000044],[97.83669060000005,0.558437800000036],[97.83813670000006,0.562408900000037],[97.83668830000005,0.570233300000041],[97.84538560000004,0.574115600000027],[97.85267890000006,0.588336100000049],[97.86035830000009,0.594923300000062],[97.86330440000006,0.595159400000057],[97.86876220000005,0.599021700000037],[97.87864390000004,0.60119560000004],[97.885355,0.607447200000024],[97.89086060000005,0.619886100000031],[97.89865940000004,0.623388300000045],[97.90063560000004,0.626165600000036],[97.90019610000007,0.629951100000028],[97.89518,0.638511700000038],[97.89601330000005,0.644192800000042],[97.892965,0.654413300000044],[97.89322670000007,0.663213300000052],[97.89608,0.668109400000048],[97.89358440000007,0.675768300000072],[97.89612170000004,0.680981100000054],[97.89813060000006,0.691593300000022],[97.89307940000003,0.704408900000033],[97.89731,0.711139400000036],[97.89766,0.713961700000027],[97.89140280000004,0.72475170000007],[97.89419780000009,0.73661670000007],[97.89286610000005,0.738576100000046],[97.88840720000007,0.739061100000072],[97.88697780000007,0.742751700000042],[97.88776720000004,0.746505600000035],[97.89146830000004,0.750486700000067],[97.89097390000006,0.753236100000038],[97.89344330000006,0.75821220000006],[97.89035170000005,0.761901700000067],[97.89082670000005,0.76685],[97.91190830000005,0.798596700000076],[97.91145780000005,0.802567200000055],[97.90829440000005,0.802928300000076],[97.90760220000004,0.804692200000034],[97.90992670000009,0.815058900000054],[97.90700560000005,0.817618300000049],[97.90469610000008,0.817210600000067],[97.89870170000006,0.821921700000075],[97.89713780000005,0.821731100000022],[97.89485390000004,0.82647060000005],[97.89813170000008,0.835372200000052],[97.89687340000006,0.836982200000023],[97.89787940000008,0.838531100000068],[97.894345,0.842341100000056],[97.89765110000008,0.850161700000058],[97.89494830000007,0.857211100000029],[97.90391560000006,0.877788900000041],[97.90167260000004,0.88470680000006],[97.89733160000009,0.883742700000028],[97.89257170000008,0.885066400000028],[97.89105150000006,0.888939600000072],[97.88892510000005,0.888327300000071],[97.88538010000008,0.890467],[97.87677270000006,0.889343],[97.87400680000007,0.885945400000026],[97.86626410000008,0.890400400000033],[97.85718880000007,0.884602700000073],[97.84611330000007,0.909358300000065],[97.84429930000005,0.916320800000051],[97.84885930000007,0.931633800000043],[97.83296160000003,0.930719500000066],[97.825867,0.926041600000076],[97.81593280000004,0.924479800000029],[97.81193470000005,0.919803],[97.80974140000006,0.919802300000072],[97.79851490000004,0.924863500000072],[97.79500440000004,0.931642400000044],[97.79134470000008,0.934316700000068],[97.78327430000007,0.932690700000023],[97.775733,0.936923900000068],[97.76671440000007,0.93511],[97.76090060000007,0.93934390000004],[97.75714720000008,0.945525600000053],[97.75133330000006,0.950186100000053],[97.731825,0.94771940000004],[97.71826,0.940774400000066],[97.69445610000008,0.932769400000041],[97.69191440000009,0.969918300000074],[97.68889110000003,0.983517600000027],[97.68999,0.98622],[97.6888,0.99354],[97.69087,0.99472],[97.69095,0.99648],[97.68781420000005,0.998710700000061],[97.68793890000006,1.000706300000047],[97.68508,1.00333],[97.68494,1.00693],[97.67147960000005,1.002774200000033],[97.66943890000005,1.001629200000025],[97.66875,0.99919],[97.66116,0.99853],[97.66118,0.99746],[97.65742740000007,1.002392200000031],[97.65596870000007,1.002365500000053],[97.65660950000006,1.003878200000031],[97.65417610000009,1.004236200000037],[97.65312,1.00826],[97.650691,1.007682700000032],[97.64993,1.00582],[97.65048,1.00081],[97.64846490000008,1.000950600000067],[97.64218,1.00807],[97.63896,1.00855],[97.63625,1.01292],[97.63398,1.01223],[97.62818570000007,1.013886600000035],[97.62283080000003,1.020455600000048],[97.62235520000007,1.023447600000054],[97.61279220000006,1.030217200000038]]]]},"properties":{"shapeName":"Nias Selatan","shapeISO":"","shapeID":"22746128B52943365876173","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[97.09649660000008,1.215271],[97.09429930000005,1.213684100000023],[97.09869380000004,1.209289600000034],[97.10009770000005,1.201110800000038],[97.09747310000006,1.200927700000022],[97.09649660000008,1.199279800000056],[97.09509280000003,1.200927700000022],[97.09350590000008,1.199279800000056],[97.09692380000007,1.192688],[97.09930420000006,1.191284200000041],[97.10430910000008,1.196472200000073],[97.10028080000006,1.21087650000004],[97.09832760000006,1.215087900000071],[97.09649660000008,1.215271]]],[[[97.08972170000004,1.233276400000022],[97.088501,1.233886700000028],[97.08227540000007,1.231079100000045],[97.08270260000006,1.22308350000003],[97.08032230000003,1.216308600000048],[97.08227540000007,1.208679200000063],[97.08612060000007,1.209289600000034],[97.08410640000005,1.215087900000071],[97.08630370000009,1.221679700000038],[97.09271240000004,1.231689500000073],[97.08972170000004,1.233276400000022]]],[[[97.11169430000007,1.358886700000028],[97.11132810000004,1.360473600000034],[97.10668950000007,1.358886700000028],[97.10131840000008,1.359680200000071],[97.10028080000006,1.358520500000054],[97.10107420000008,1.353515600000037],[97.10632320000008,1.352478],[97.11169430000007,1.358886700000028]]],[[[97.22247310000006,1.414489700000047],[97.22247310000006,1.413330100000053],[97.22351070000008,1.413879400000042],[97.22247310000006,1.414489700000047]]],[[[97.227478,1.415527300000065],[97.22851560000004,1.417907700000058],[97.227478,1.41992190000002],[97.22528080000006,1.419128400000034],[97.22491460000003,1.417480500000067],[97.227478,1.415527300000065]]],[[[97.21691890000005,1.425720200000058],[97.215271,1.425720200000058],[97.21368410000008,1.423522900000023],[97.21569820000008,1.420471200000065],[97.22210690000009,1.420898400000056],[97.22210690000009,1.423889200000076],[97.21691890000005,1.425720200000058]]],[[[97.24407960000008,1.427307100000064],[97.24432370000005,1.429687500000057],[97.24249270000007,1.429687500000057],[97.24267580000009,1.427490200000022],[97.24407960000008,1.427307100000064]]],[[[97.230896,1.439697300000034],[97.23168950000007,1.441894500000046],[97.22888180000007,1.441528300000073],[97.22930910000008,1.43988040000005],[97.230896,1.439697300000034]]],[[[97.258728,1.465515100000061],[97.25372310000006,1.464477500000044],[97.25109860000003,1.461486800000046],[97.24389650000006,1.463684100000023],[97.23687740000008,1.462280300000032],[97.23388670000008,1.459472700000049],[97.23150630000004,1.452880900000025],[97.23449710000006,1.450927700000022],[97.23730470000004,1.454284700000073],[97.24151610000007,1.45550540000005],[97.24267580000009,1.459716800000024],[97.25408940000005,1.460083],[97.25970460000008,1.463073700000052],[97.258728,1.465515100000061]]],[[[97.52125440000003,1.423448300000075],[97.513765,1.430682800000056],[97.51080170000006,1.435681700000032],[97.50927940000008,1.444698900000049],[97.50739720000007,1.446519400000057],[97.50042060000004,1.44693],[97.49568060000007,1.449203300000022],[97.49319220000007,1.455280600000037],[97.49377060000006,1.459535600000038],[97.48881890000007,1.472627800000055],[97.48344110000005,1.47889170000002],[97.47212670000005,1.479363300000045],[97.46749170000004,1.472763900000075],[97.45915390000005,1.470363900000052],[97.44167720000007,1.472467800000061],[97.43422890000005,1.48398],[97.43272670000005,1.499201700000071],[97.42681890000006,1.509278900000027],[97.42404440000007,1.511182200000064],[97.42439830000006,1.515585],[97.42227,1.517843900000059],[97.41340890000004,1.522468900000035],[97.41046170000004,1.516342800000075],[97.41064610000006,1.503363900000068],[97.40470170000003,1.499328300000059],[97.39516060000005,1.49941670000004],[97.39133,1.501573300000075],[97.39111220000007,1.503999400000055],[97.38844170000004,1.50565940000007],[97.38703060000006,1.50484780000005],[97.387355,1.503248900000074],[97.38590220000003,1.503606700000034],[97.38613610000004,1.50663940000004],[97.38286280000005,1.508033300000022],[97.38729390000003,1.509987800000033],[97.38820780000003,1.508258900000044],[97.38925560000007,1.509037200000023],[97.38304610000006,1.513413300000025],[97.37845280000005,1.513276100000041],[97.37890830000003,1.51164],[97.37676940000006,1.50923],[97.37346720000005,1.516202200000066],[97.37568280000005,1.515486700000054],[97.37742560000004,1.517110600000024],[97.37800060000006,1.522077200000069],[97.37219560000005,1.525871700000039],[97.36917890000007,1.531076700000028],[97.35339170000003,1.541076100000055],[97.350235,1.541548900000066],[97.33871890000006,1.535973900000045],[97.33613940000004,1.532318300000043],[97.33464830000008,1.524103300000036],[97.34352860000007,1.510131700000045],[97.35151670000005,1.503444400000035],[97.34989440000004,1.500006700000029],[97.35152440000007,1.495950600000072],[97.34864110000007,1.493323900000064],[97.34898220000008,1.489431100000047],[97.34580280000006,1.481903300000056],[97.33769940000008,1.472823900000037],[97.33307720000005,1.471423900000048],[97.33012780000007,1.47380940000005],[97.31895330000003,1.460996100000045],[97.31060110000004,1.454626100000041],[97.29207440000005,1.447513900000047],[97.29039440000008,1.44898390000003],[97.28570560000009,1.429077100000029],[97.28167720000005,1.423278800000048],[97.27551270000004,1.418518100000028],[97.26788330000005,1.416076700000076],[97.26507570000007,1.417297400000052],[97.26428220000008,1.419311500000049],[97.26129150000008,1.41992190000002],[97.25268550000004,1.411682100000064],[97.24353030000003,1.408874500000024],[97.23931880000004,1.410278300000073],[97.23992920000006,1.407470700000033],[97.23272710000003,1.412719700000025],[97.22827150000006,1.412292500000035],[97.22088620000005,1.405273400000056],[97.20713620000004,1.401094400000034],[97.20062450000006,1.401891700000022],[97.19959830000005,1.403562500000021],[97.20034980000008,1.406557100000043],[97.193018,1.409807200000046],[97.19342610000007,1.413465500000029],[97.19618030000004,1.415365200000053],[97.19588280000005,1.417478600000038],[97.19381140000007,1.418672600000036],[97.18882940000003,1.417951600000038],[97.18425940000009,1.415681800000073],[97.18255810000005,1.412534700000037],[97.17732810000007,1.408777200000031],[97.17920110000006,1.405965800000047],[97.18370250000004,1.407198],[97.18841740000005,1.406164200000035],[97.183382,1.40420720000003],[97.18406110000006,1.399171800000033],[97.18253520000007,1.399461700000074],[97.181612,1.396940200000074],[97.17875480000004,1.395700500000032],[97.17854880000004,1.400571800000023],[97.17962070000004,1.401628500000072],[97.17832760000005,1.402452500000038],[97.176218,1.398199100000056],[97.17136190000008,1.395433400000059],[97.17216680000007,1.396886800000061],[97.17019460000006,1.395910300000025],[97.16996570000003,1.401182200000051],[97.17370410000007,1.404924400000027],[97.17355540000005,1.407453500000031],[97.16288950000006,1.411966300000074],[97.15867420000006,1.419626200000039],[97.14929390000003,1.422063800000046],[97.14567380000005,1.425581],[97.13852770000005,1.429152],[97.13647460000004,1.431884800000034],[97.133728,1.431274400000063],[97.13110350000005,1.42852780000004],[97.12969970000006,1.423278800000048],[97.12530520000007,1.426696800000059],[97.12487790000006,1.42852780000004],[97.12408450000004,1.423095700000033],[97.11853030000003,1.421508800000026],[97.11389160000004,1.418273900000031],[97.10632320000008,1.418701200000044],[97.10351560000004,1.421508800000026],[97.09509280000003,1.421325700000068],[97.09490970000007,1.423095700000033],[97.09210210000003,1.423522900000023],[97.090271,1.419677700000022],[97.083313,1.418518100000028],[97.08270260000006,1.41992190000002],[97.08392330000004,1.421081500000071],[97.08227540000007,1.421691900000042],[97.07312010000004,1.417724600000042],[97.06707760000006,1.413085900000056],[97.06469730000003,1.41290280000004],[97.06127930000008,1.415100100000075],[97.059082,1.41247560000005],[97.06207280000007,1.404724100000067],[97.06707760000006,1.400878900000066],[97.06927490000004,1.394714400000055],[97.07373050000007,1.389892600000053],[97.07751460000009,1.390930200000071],[97.07788090000008,1.395507800000075],[97.08251950000005,1.407287600000075],[97.09069820000008,1.408325200000036],[97.10052490000004,1.406127900000058],[97.11187740000008,1.398925800000029],[97.12469480000004,1.386474600000042],[97.13427730000006,1.380310100000031],[97.14010430000008,1.373754500000075],[97.14623450000005,1.370267900000044],[97.15461540000007,1.362268400000062],[97.15480230000009,1.359083200000043],[97.16015430000004,1.354394900000045],[97.160387,1.350706100000025],[97.16274070000009,1.35029030000004],[97.16704750000008,1.345941500000038],[97.16947750000008,1.33759120000002],[97.17563060000003,1.331888200000037],[97.17689320000005,1.328718200000026],[97.18430520000004,1.322725300000059],[97.18570520000009,1.316377600000067],[97.19081690000007,1.310995100000071],[97.19361690000005,1.297830600000054],[97.19611550000008,1.292539600000055],[97.19922450000007,1.292516700000022],[97.20200920000008,1.29052930000006],[97.20801350000005,1.283918400000061],[97.20946080000004,1.279995],[97.21099110000006,1.280034700000044],[97.20947270000005,1.279907200000025],[97.20971680000008,1.275878900000066],[97.20629880000007,1.272522],[97.20690920000004,1.26751710000002],[97.20947270000005,1.26751710000002],[97.21209720000007,1.272522],[97.21752930000008,1.273925800000029],[97.22290040000007,1.271911600000067],[97.23150630000004,1.265930200000071],[97.23272710000003,1.261291500000027],[97.23052980000006,1.258300800000029],[97.23211670000006,1.255676300000061],[97.234314,1.255310100000031],[97.23510740000006,1.258300800000029],[97.23867,1.260665],[97.24492450000008,1.261163700000054],[97.24955940000007,1.258600200000046],[97.25040630000007,1.254903800000022],[97.248106,1.253656400000068],[97.24708750000008,1.25032230000005],[97.25810050000007,1.246912],[97.26222040000005,1.242395400000021],[97.26333430000005,1.238592100000062],[97.263483,1.23127560000006],[97.26017570000005,1.228735],[97.25622750000008,1.22812840000006],[97.25731470000005,1.223596600000064],[97.25893970000004,1.22256660000005],[97.25743290000008,1.21631050000002],[97.26162530000005,1.213544800000022],[97.26553150000007,1.213991200000066],[97.26666830000005,1.216890300000045],[97.27014730000008,1.217409100000054],[97.27544980000005,1.214353600000038],[97.28542140000008,1.20440480000002],[97.28711890000005,1.19989970000006],[97.28525730000007,1.194002200000057],[97.28799250000009,1.192239800000038],[97.29094510000004,1.193532900000037],[97.29276850000008,1.192586900000038],[97.30047420000005,1.180814700000042],[97.30063440000004,1.17573740000006],[97.29582020000004,1.168230100000073],[97.300951,1.170629500000075],[97.31003,1.168954800000051],[97.32008550000006,1.158861200000047],[97.33556220000008,1.135240600000031],[97.34443830000004,1.116853300000059],[97.36945310000004,1.078765200000021],[97.39845360000004,1.092817500000024],[97.41182050000003,1.091560500000071],[97.42222560000005,1.093101],[97.43227370000005,1.091481],[97.43980680000004,1.095909400000039],[97.44967430000008,1.096546700000033],[97.44517670000005,1.108278700000028],[97.44510380000008,1.118221700000049],[97.44628,1.11924],[97.45193760000006,1.118089200000043],[97.458168,1.107264],[97.47156040000004,1.092062300000066],[97.47754040000007,1.087385600000061],[97.482688,1.094938300000024],[97.48888230000006,1.092795800000033],[97.486615,1.102937800000063],[97.48187430000007,1.107308700000033],[97.47920440000007,1.11705180000007],[97.46886380000007,1.125083400000051],[97.47064470000004,1.127685500000041],[97.4702,1.13895],[97.48106180000008,1.14482270000002],[97.48900730000008,1.153322400000036],[97.49090680000006,1.160194200000035],[97.48922260000006,1.166471100000024],[97.48918250000008,1.176537200000041],[97.48747,1.17858],[97.48947170000008,1.200651900000025],[97.48352060000008,1.214231300000051],[97.50133680000005,1.237780200000032],[97.49371690000004,1.252157300000022],[97.49365650000004,1.260591800000043],[97.50111570000007,1.26874840000005],[97.51022490000008,1.274484100000052],[97.49821920000005,1.292014600000073],[97.49482880000005,1.304943300000048],[97.48778620000007,1.313042300000063],[97.48391270000008,1.326599300000055],[97.47897830000005,1.337146100000041],[97.47071210000007,1.346656200000041],[97.47805670000008,1.371506200000056],[97.48900330000004,1.37805220000007],[97.48637890000003,1.386736700000029],[97.49037670000007,1.389778900000067],[97.50407110000003,1.409951700000022],[97.52125440000003,1.423448300000075]]]]},"properties":{"shapeName":"Nias Utara","shapeISO":"","shapeID":"22746128B95605474030412","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.49139360000004,3.684123600000021],[117.49067630000002,3.689238800000055],[117.49283490000005,3.699016500000027],[117.486211,3.70707740000006],[117.4817743000001,3.708655900000053],[117.4493589000001,3.698815100000047],[117.44587820000004,3.695593100000053],[117.44144190000009,3.687378800000033],[117.43321710000009,3.683654400000023],[117.42777640000008,3.676906],[117.42953740000007,3.67490870000006],[117.44429390000005,3.673894700000062],[117.45147190000012,3.678528],[117.45670940000002,3.679377400000021],[117.46744130000002,3.671371300000033],[117.47320480000008,3.677231900000038],[117.47776130000011,3.679269400000067],[117.49046620000001,3.677390200000048],[117.491952,3.679405600000052],[117.49139360000004,3.684123600000021]]],[[[117.7987276,3.781944400000043],[117.7809807000001,3.785014400000023],[117.77909570000008,3.776715600000045],[117.7795870000001,3.77185170000007],[117.7858470000001,3.770113200000026],[117.79655940000009,3.758550500000069],[117.80930180000007,3.758973200000071],[117.815705,3.75778020000007],[117.81750430000011,3.771026100000029],[117.81469770000001,3.778066200000069],[117.80890590000001,3.781077800000048],[117.7987276,3.781944400000043]]],[[[117.74175280000009,3.782145700000058],[117.73858630000007,3.782899300000054],[117.73917390000008,3.788842100000068],[117.73392510000008,3.790529100000072],[117.73200250000002,3.789942800000063],[117.72874450000006,3.782907600000044],[117.72307580000006,3.781908200000032],[117.71749100000011,3.785097200000052],[117.71498850000012,3.784927300000049],[117.71398140000008,3.780577],[117.7087249000001,3.778482600000075],[117.70379650000007,3.774750500000039],[117.70398450000005,3.773450900000057],[117.75217870000006,3.765496],[117.78372330000002,3.754927400000042],[117.78652510000006,3.754795600000023],[117.7922046000001,3.759371500000043],[117.790192,3.763510900000028],[117.78419020000001,3.769503],[117.77748120000001,3.766763100000048],[117.76783010000008,3.76773060000005],[117.761635,3.765818300000035],[117.75925430000007,3.76714110000006],[117.7581861000001,3.771809800000028],[117.756874,3.770969700000023],[117.75663020000002,3.766899100000046],[117.75376870000002,3.766187],[117.75282310000011,3.770141],[117.75019810000003,3.770143200000064],[117.748413,3.772415400000057],[117.74388880000004,3.77086330000003],[117.73519140000008,3.77373840000007],[117.73734280000008,3.775292500000035],[117.73805230000005,3.773735900000077],[117.7443621000001,3.77146],[117.74925250000001,3.773373500000048],[117.75032020000003,3.770740200000034],[117.75437180000006,3.771089500000073],[117.75472280000008,3.767027400000075],[117.7561568000001,3.767496600000072],[117.7573546000001,3.773484100000076],[117.7604444000001,3.772043],[117.7605668000001,3.766542900000047],[117.76747150000006,3.768925],[117.77845060000004,3.768382200000076],[117.77296440000009,3.776220300000034],[117.76259610000011,3.777188400000057],[117.7631990000001,3.780534900000021],[117.76689170000009,3.782928900000059],[117.76582340000004,3.785444600000062],[117.75473040000008,3.784893500000067],[117.75167820000001,3.781802400000061],[117.74175280000009,3.782145700000058]]],[[[117.7039797000001,3.781417400000066],[117.69973,3.790892300000053],[117.69680790000007,3.78837980000003],[117.69447330000003,3.789973800000041],[117.68838490000007,3.790648100000055],[117.68849190000003,3.79430270000006],[117.68649290000008,3.792549300000076],[117.68331930000011,3.793718800000022],[117.6834947000001,3.797744300000033],[117.6801531000001,3.793558500000074],[117.680977,3.784674400000029],[117.67849150000006,3.781312700000058],[117.69210270000008,3.775406700000076],[117.70172680000007,3.77339870000003],[117.70353140000009,3.773489300000051],[117.7036362,3.775555700000041],[117.70780950000005,3.778899400000057],[117.6969683000001,3.777153300000066],[117.69596880000006,3.782183800000041],[117.69738780000012,3.783014900000069],[117.7039797000001,3.781417400000066]]],[[[117.74175280000009,3.782145700000058],[117.74367530000006,3.783229600000027],[117.75076290000004,3.782219300000065],[117.75326560000008,3.784560100000022],[117.75593560000004,3.785688600000071],[117.76572440000007,3.786150300000031],[117.76772290000008,3.782810500000039],[117.76319130000002,3.777432100000055],[117.7730792000001,3.776817300000062],[117.7770081000001,3.771548900000028],[117.77867470000001,3.77168910000006],[117.7789146,3.785849600000063],[117.7572444000001,3.799102400000038],[117.74368850000008,3.801564400000075],[117.7353839000001,3.809475100000043],[117.732193,3.810839],[117.7283476,3.809042400000067],[117.72676110000009,3.80594990000003],[117.729843,3.798149500000022],[117.72933980000005,3.796141700000021],[117.72783660000005,3.795726800000068],[117.7245024,3.797240300000055],[117.72289280000007,3.794039300000065],[117.71883370000012,3.796991800000058],[117.71649950000005,3.796903300000054],[117.71499660000006,3.795484300000055],[117.71566010000004,3.791964700000051],[117.71076960000005,3.786631500000055],[117.712654,3.784431700000027],[117.7171555000001,3.785685400000034],[117.72132120000003,3.783076700000038],[117.72640980000006,3.782909600000039],[117.7295,3.785168500000054],[117.73200250000002,3.790612200000055],[117.7352601,3.791107],[117.7396774,3.789185400000065],[117.73925040000006,3.782817300000033],[117.74175280000009,3.782145700000058]]],[[[117.7039797000001,3.781417400000066],[117.69680760000006,3.782427300000052],[117.69696790000012,3.778076],[117.70597820000012,3.779823600000043],[117.71081550000008,3.779322100000059],[117.71373770000002,3.781328],[117.7135694000001,3.783336400000053],[117.71006760000012,3.786442100000045],[117.71508040000003,3.792046600000049],[117.7139969000001,3.795403700000065],[117.7162475,3.797826200000031],[117.71966550000002,3.797579100000064],[117.72308370000007,3.794808100000068],[117.72416670000007,3.798262800000032],[117.72776060000001,3.796314900000027],[117.72917180000002,3.797145900000032],[117.725929,3.80569730000002],[117.72785190000002,3.809214700000041],[117.7311697,3.811518300000046],[117.72567730000003,3.816951],[117.71499660000006,3.816616200000055],[117.71071640000002,3.819216],[117.70699310000009,3.814451800000029],[117.69483940000009,3.812788100000034],[117.69281010000009,3.806213200000059],[117.6858595000001,3.804373300000066],[117.68624880000004,3.802021],[117.68875120000007,3.799748400000055],[117.69490040000005,3.799689100000023],[117.69439710000006,3.797428],[117.69179520000012,3.795575600000063],[117.69239030000006,3.793657300000064],[117.6968154000001,3.795752500000049],[117.69906630000003,3.795081200000027],[117.699402,3.792566100000045],[117.6957245000001,3.789303400000051],[117.69705990000011,3.788877100000036],[117.69914990000007,3.791227500000048],[117.70056130000012,3.790891600000066],[117.7039797000001,3.781417400000066]]],[[[117.74388470000008,3.872828900000059],[117.74290130000009,3.872381],[117.74778830000002,3.871843],[117.74388470000008,3.872828900000059]]],[[[117.73541730000011,3.872980900000073],[117.72789120000004,3.875296100000071],[117.71993640000005,3.873418100000038],[117.71316910000007,3.866692200000045],[117.71001360000002,3.861058900000046],[117.7250001000001,3.842871],[117.73461380000003,3.841000300000076],[117.7360311000001,3.839478400000075],[117.738907,3.840052600000035],[117.737368,3.837248500000044],[117.7374923000001,3.831447900000057],[117.7348022000001,3.819821700000034],[117.7367756000001,3.813277600000049],[117.74124930000005,3.807816],[117.74524810000003,3.805552500000033],[117.7572047000001,3.80434230000003],[117.77321590000008,3.794574300000022],[117.78439550000007,3.789649300000065],[117.80988650000006,3.78807740000002],[117.811165,3.790179600000045],[117.81034090000003,3.798556900000051],[117.8059386000001,3.804902300000037],[117.80046080000011,3.80538690000003],[117.79545590000009,3.808982800000024],[117.79104590000009,3.809583900000064],[117.78378320000002,3.813064300000065],[117.78318790000003,3.814503200000047],[117.795578,3.809579700000029],[117.79879010000002,3.807071],[117.80700710000008,3.80514560000006],[117.81176750000009,3.795923200000061],[117.81150330000003,3.787005500000021],[117.82293,3.782922300000052],[117.82893460000003,3.783275600000024],[117.83322550000003,3.785497300000031],[117.83537920000003,3.795116800000073],[117.83069160000002,3.801701200000025],[117.83173560000012,3.803345700000023],[117.82629190000011,3.810471300000074],[117.816709,3.818498500000032],[117.80563310000002,3.822757300000035],[117.80379,3.826558600000055],[117.8012576000001,3.825843],[117.79152340000007,3.831805700000075],[117.79095940000002,3.833900500000027],[117.7878376000001,3.834663200000023],[117.78825690000008,3.837146],[117.783014,3.836362100000031],[117.78257010000004,3.839634400000023],[117.76887750000003,3.849310400000036],[117.7596390000001,3.864060400000028],[117.75504400000011,3.86856430000006],[117.74802390000002,3.871591500000022],[117.73541730000011,3.872980900000073]]],[[[117.65912530000003,3.94332170000007],[117.65253780000012,3.950265200000047],[117.6434279,3.952662600000053],[117.639541,3.949731100000065],[117.64042060000008,3.94672920000005],[117.65645470000004,3.941007200000058],[117.65912530000003,3.94332170000007]]],[[[117.65501370000004,3.955801100000031],[117.64704790000008,3.957998600000053],[117.6445893,3.953226100000052],[117.65251,3.951350200000036],[117.65501370000004,3.955801100000031]]],[[[117.52281920000007,4.027964],[117.52340070000002,4.032221200000038],[117.5125571000001,4.039192100000037],[117.49966040000004,4.052769600000033],[117.49617440000009,4.052801500000044],[117.48098590000006,4.038596600000062],[117.46443540000007,4.030095500000073],[117.44327890000011,4.00576140000004],[117.44350280000003,4.003499400000067],[117.451063,3.992150300000048],[117.4559547,3.987479600000029],[117.45653070000003,3.977764800000045],[117.458989,3.972200500000042],[117.46387670000001,3.966592400000025],[117.46592320000002,3.96098],[117.46530730000006,3.953053100000034],[117.45816130000003,3.938814800000046],[117.45786150000004,3.935272200000043],[117.46016070000007,3.931019100000071],[117.49656890000006,3.91625920000007],[117.50473330000011,3.918168700000024],[117.51642760000004,3.925952600000073],[117.52551580000011,3.929483400000038],[117.53488770000001,3.929351800000063],[117.54655160000004,3.926519800000051],[117.56880940000008,3.915904500000067],[117.57818940000004,3.906237200000021],[117.58996260000004,3.890003800000045],[117.60156290000009,3.882671400000049],[117.61973410000007,3.883292500000039],[117.65678340000011,3.889855600000033],[117.66699470000003,3.889907400000027],[117.68226340000001,3.887016700000061],[117.68272260000003,3.893779100000074],[117.68626140000003,3.902593800000034],[117.68293930000004,3.914324600000043],[117.6814283000001,3.914669100000026],[117.67891770000006,3.911709200000075],[117.66557120000004,3.910212100000024],[117.64873610000006,3.912182],[117.64405270000009,3.911407700000041],[117.6371908000001,3.913261900000066],[117.6317127000001,3.917353],[117.62926310000012,3.916146200000071],[117.62250660000007,3.923690800000031],[117.61668060000011,3.924856],[117.61615790000008,3.926998600000047],[117.61276240000007,3.927755],[117.61191570000005,3.926738400000033],[117.597454,3.933491200000049],[117.5902291000001,3.944095200000049],[117.577306,3.969885600000055],[117.57382760000007,3.967309],[117.57050310000011,3.957686400000057],[117.56263720000004,3.958641600000021],[117.55953970000007,3.957811500000048],[117.55619790000003,3.954457500000046],[117.55964660000006,3.946801900000025],[117.56524640000009,3.945839100000057],[117.56703950000008,3.944164300000068],[117.56620010000006,3.939252700000054],[117.573456,3.925723300000072],[117.57131220000008,3.926566100000059],[117.56542220000006,3.93853850000005],[117.56590270000004,3.943088600000067],[117.56459020000011,3.944518800000026],[117.56006610000009,3.944286700000021],[117.55518340000003,3.951111],[117.55482510000002,3.953988],[117.55936410000004,3.959485200000074],[117.56919110000001,3.958999],[117.57221520000007,3.967687700000056],[117.57143530000008,3.971511300000031],[117.55452,3.98526030000005],[117.5488329000001,3.999056900000028],[117.54750610000008,4.01536260000006],[117.5452831,4.01568750000007],[117.54237380000006,4.021694600000046],[117.53219840000008,4.030570500000067],[117.528873,4.030892300000062],[117.52400950000003,4.023657100000037],[117.520073,4.021262300000046],[117.50666810000007,4.022473900000023],[117.49761210000008,4.020082200000047],[117.48831960000007,4.024394],[117.48199470000009,4.017938500000071],[117.47341920000008,4.023805700000025],[117.46662880000008,4.023330200000032],[117.46698,4.014238200000023],[117.4630433000001,4.008134],[117.46768960000009,4.002631],[117.46768170000007,3.99867770000003],[117.462677,3.996527400000048],[117.46685030000003,3.999998900000037],[117.46649150000007,4.002631700000052],[117.46208940000008,4.006822800000066],[117.4623262,4.009455200000048],[117.4658435,4.014591600000074],[117.46442410000009,4.021540200000061],[117.46561450000002,4.024769100000071],[117.46942910000007,4.025843500000065],[117.47419750000006,4.02499940000007],[117.48181920000002,4.019132700000057],[117.48635090000005,4.02559830000007],[117.490883,4.025233700000058],[117.49755090000008,4.021403],[117.50756090000004,4.023902700000065],[117.51972210000008,4.022818500000028],[117.5215075000001,4.023776300000065],[117.52281920000007,4.027964]]],[[[117.49593240000002,4.063592800000038],[117.4822,4.06228980000003],[117.47792730000003,4.052258600000073],[117.47861590000002,4.047812],[117.48285970000006,4.049497600000052],[117.48875250000003,4.058172500000069],[117.49309210000001,4.060452500000054],[117.49683450000009,4.060592800000052],[117.49771,4.062360500000068],[117.49593240000002,4.063592800000038]]],[[[117.55434420000006,4.099171200000058],[117.56066220000002,4.102420600000073],[117.57547530000011,4.118345600000055],[117.58601270000008,4.134528400000022],[117.58874010000011,4.140732300000025],[117.58794680000005,4.142298200000027],[117.58373410000002,4.144049400000029],[117.57511340000008,4.144567],[117.55365350000011,4.139221300000031],[117.54610570000011,4.133250400000065],[117.53573140000003,4.116361900000072],[117.53617660000009,4.108701800000063],[117.54020630000002,4.103367],[117.55434420000006,4.099171200000058]]],[[[117.66086040000005,4.146907500000054],[117.6533022000001,4.146947600000033],[117.62941110000008,4.13518380000005],[117.62208060000012,4.12525160000007],[117.61680970000009,4.120635500000049],[117.60170080000012,4.096590100000071],[117.59176140000011,4.086354100000051],[117.5892143000001,4.079182700000047],[117.59136990000002,4.070773100000054],[117.5945369000001,4.065117400000076],[117.59599050000008,4.047302700000046],[117.60118950000003,4.027980800000023],[117.60256850000007,4.011434500000064],[117.62629880000009,3.988918600000034],[117.63862350000011,3.981085300000075],[117.653351,3.975619600000073],[117.6636701000001,3.96801940000006],[117.67163590000007,3.966416800000047],[117.6776066000001,3.967225700000029],[117.70175920000008,3.979436100000044],[117.72592880000002,3.985581400000058],[117.726874,3.989900700000021],[117.72470990000011,3.995290900000043],[117.72705510000003,4.002286800000036],[117.72548,4.004837],[117.727284,4.011771],[117.738639,4.030659],[117.738932,4.033478],[117.74360700000011,4.034512],[117.74774800000012,4.050465],[117.7493981,4.052689200000032],[117.75000000000011,4.051969900000074],[117.75363240000001,4.061211600000036],[117.75188670000011,4.063614],[117.74761760000001,4.065304300000037],[117.74212320000004,4.070662300000038],[117.73112630000003,4.077652800000067],[117.7135085000001,4.09419280000003],[117.69154440000011,4.121050700000069],[117.66959390000011,4.143378900000073],[117.66086040000005,4.146907500000054]]],[[[117.76707340000007,4.166674500000056],[117.68345040000008,4.166558500000065],[117.687029,4.164282900000046],[117.68755480000004,4.161693200000059],[117.69051360000003,4.160788600000046],[117.70968920000007,4.14555770000004],[117.73112660000004,4.120837600000073],[117.7375343000001,4.117295400000046],[117.7505364000001,4.10644110000004],[117.7589934,4.102113900000063],[117.76633350000009,4.09422120000005],[117.77873850000003,4.085706],[117.78590420000012,4.083090500000026],[117.79899990000001,4.074339700000053],[117.80407680000008,4.073884900000053],[117.8114495000001,4.069469900000058],[117.82257060000006,4.058436100000051],[117.83938510000007,4.047665400000028],[117.8500557000001,4.034955100000047],[117.861219,4.028976700000044],[117.87317050000001,4.03225180000004],[117.87573710000004,4.03427460000006],[117.88185410000006,4.034783300000072],[117.88380070000005,4.037578],[117.89611860000002,4.043255200000033],[117.901094,4.042828600000064],[117.9013433,4.041367],[117.90528240000003,4.040228700000057],[117.91093440000009,4.04483330000005],[117.91186220000009,4.044126800000072],[117.91454360000012,4.050674700000059],[117.92188080000005,4.057879300000025],[117.92161020000003,4.059612600000037],[117.92619090000005,4.060854400000039],[117.92447770000001,4.06109710000004],[117.9261586,4.064745300000027],[117.92144760000008,4.072165400000074],[117.91755980000005,4.083067],[117.92570850000004,4.127271200000052],[117.92320490000009,4.135654400000021],[117.91399290000004,4.149261100000047],[117.90905870000006,4.153117700000053],[117.90477650000003,4.158918400000061],[117.90213040000003,4.166557700000055],[117.76707340000007,4.166674500000056]]],[[[116.76123770000004,3.641864800000064],[116.761234,3.659569600000054],[116.742918,3.681177],[116.7705380000001,3.695252],[116.79421790000004,3.692895800000031],[116.82394410000006,3.687334600000042],[116.82625990000008,3.685214100000053],[116.83791740000004,3.688782300000071],[116.83853540000007,3.686310300000059],[116.84771650000005,3.692055],[116.88619710000012,3.703387100000043],[116.9381694000001,3.714817700000026],[116.95614910000006,3.714860800000054],[117.02168570000003,3.701350300000058],[117.09320590000004,3.680728600000066],[117.19642540000007,3.669226],[117.23088440000004,3.66056240000006],[117.27644530000009,3.641762100000051],[117.29685830000005,3.636463900000024],[117.32927710000001,3.638052400000049],[117.46042740000007,3.654566700000032],[117.47627180000006,3.65960380000007],[117.48444040000004,3.664767900000072],[117.48955610000007,3.670152200000075],[117.48542710000004,3.673464],[117.4803104,3.67471450000005],[117.47686130000011,3.673457],[117.47096940000006,3.668140600000072],[117.46498530000008,3.667590100000041],[117.46091430000001,3.669862900000055],[117.4554786000001,3.675696300000027],[117.444636,3.669995300000039],[117.42872280000006,3.671145700000068],[117.42535170000008,3.673536800000022],[117.424092,3.67745240000005],[117.42510060000006,3.68111330000005],[117.4293824,3.686186900000052],[117.42727230000003,3.689959600000066],[117.42294250000009,3.69169450000004],[117.40760650000004,3.692167600000062],[117.40061760000003,3.694544300000075],[117.39656980000007,3.697098700000026],[117.39474440000004,3.700730300000032],[117.39329480000004,3.699849400000062],[117.3945020000001,3.701417],[117.3943733000001,3.70575290000005],[117.3908738,3.708266200000025],[117.37788280000007,3.707183100000066],[117.36695620000012,3.711184100000025],[117.3601877000001,3.712087300000064],[117.33755380000002,3.709599900000057],[117.31184690000009,3.719395300000031],[117.29152480000005,3.71622050000002],[117.26171170000009,3.731703200000027],[117.25872930000003,3.731637900000067],[117.2552323000001,3.728999400000021],[117.24802620000003,3.729046700000026],[117.2420274000001,3.734153400000025],[117.23239060000003,3.74955170000004],[117.23230080000008,3.752691800000036],[117.23649740000008,3.75904],[117.23612780000008,3.761598100000072],[117.23220890000005,3.764202200000057],[117.21831050000003,3.767373100000043],[117.21533000000011,3.766878],[117.20863740000004,3.759186300000067],[117.19844410000007,3.758676600000058],[117.18918110000004,3.750799500000028],[117.18016610000006,3.748026200000027],[117.17585830000007,3.748789800000054],[117.17149760000007,3.743631400000027],[117.17508260000011,3.749536700000021],[117.1699949,3.750266],[117.1665283000001,3.752374600000053],[117.16254630000003,3.751859600000046],[117.15722340000002,3.745906600000069],[117.15237190000005,3.745237700000075],[117.15113180000003,3.739134100000058],[117.14884870000003,3.735953600000073],[117.15173590000006,3.74288],[117.15203410000004,3.74536930000005],[117.15088220000007,3.745585300000073],[117.15740370000003,3.746655600000054],[117.16192820000003,3.752656800000068],[117.16583950000006,3.753382200000033],[117.17099530000007,3.750749600000063],[117.18203070000004,3.750000100000022],[117.1896488000001,3.753077400000052],[117.1984069,3.760711],[117.2090071,3.762662500000033],[117.21450490000007,3.769411],[117.22505320000005,3.769325900000069],[117.23068760000001,3.768288400000074],[117.23800640000002,3.76413],[117.23933430000011,3.758899500000041],[117.23487720000003,3.750022100000024],[117.24501910000004,3.73542690000005],[117.249624,3.731657],[117.2517041000001,3.731567900000073],[117.25717640000005,3.73521640000007],[117.26161030000003,3.735405100000037],[117.29255780000005,3.719971],[117.3134983000001,3.723961300000042],[117.33869730000004,3.714155700000049],[117.35847930000011,3.716922],[117.37997550000011,3.711297900000034],[117.39249540000003,3.712603500000057],[117.39843520000011,3.709289900000044],[117.40135180000004,3.701658300000076],[117.404914,3.698936600000025],[117.40987340000004,3.697787100000028],[117.42382390000012,3.69811610000005],[117.43636370000002,3.69038050000006],[117.44339830000001,3.701367700000048],[117.471773,3.711958800000048],[117.48773190000009,3.722609700000021],[117.48748,3.724238300000025],[117.48101040000006,3.726485400000058],[117.480766,3.730484100000069],[117.48251330000005,3.733984200000066],[117.48127000000011,3.738236800000038],[117.482887,3.739113400000065],[117.4835127,3.744984300000056],[117.4772948000001,3.748859700000025],[117.47610530000009,3.755128800000023],[117.48083470000006,3.764580700000067],[117.49472820000005,3.775275],[117.49950420000005,3.775570800000025],[117.49980160000007,3.768071100000043],[117.50148760000002,3.766369300000065],[117.50706480000008,3.768066900000065],[117.5104520000001,3.770869300000072],[117.50737030000005,3.772671400000036],[117.51165010000011,3.772469800000067],[117.52050760000009,3.776662200000032],[117.52583340000001,3.774858700000038],[117.53130360000011,3.767952800000046],[117.55609880000009,3.785234200000048],[117.56286620000003,3.785437900000034],[117.57187660000011,3.782030500000076],[117.57854470000007,3.78192660000002],[117.5911943000001,3.79581330000002],[117.596573,3.797311300000047],[117.59955570000011,3.795807500000024],[117.60105140000007,3.792007],[117.59854860000007,3.780112700000075],[117.59944170000006,3.775706500000069],[117.608902,3.774704800000052],[117.61656950000008,3.777594200000067],[117.61970510000003,3.780595400000038],[117.63035560000003,3.780786700000021],[117.6394117000001,3.778183700000056],[117.64691160000007,3.77273230000003],[117.65096270000004,3.771652700000061],[117.65645580000012,3.783978700000034],[117.66241480000008,3.78780080000007],[117.66682450000008,3.787444600000072],[117.67812340000012,3.781944700000054],[117.68021410000006,3.785796700000049],[117.6797183000001,3.793839300000059],[117.68331160000002,3.798187700000028],[117.68455490000008,3.796685],[117.68363950000003,3.794342800000038],[117.68605820000005,3.792992900000058],[117.68856040000003,3.794755],[117.68905660000007,3.790982300000053],[117.69506090000004,3.790724200000056],[117.69856270000002,3.792485400000032],[117.69815060000008,3.795163400000035],[117.69422920000011,3.792986400000075],[117.69189460000007,3.793241600000044],[117.69106310000006,3.795838500000059],[117.69448080000006,3.79935480000006],[117.68839280000009,3.799269200000026],[117.68529490000003,3.802863],[117.68541730000004,3.805377800000031],[117.6924514000001,3.807525200000043],[117.693405,3.812554100000057],[117.69496150000009,3.814108800000042],[117.70663430000002,3.815537600000027],[117.70986930000004,3.820618900000056],[117.7156371000001,3.817918300000031],[117.71972660000006,3.81961560000002],[117.72032170000011,3.818412],[117.72599800000012,3.818805200000043],[117.73140540000009,3.815511],[117.733953,3.836683],[117.72271520000004,3.840907800000025],[117.71769740000002,3.839808400000038],[117.72047110000005,3.842962],[117.70507840000005,3.859039700000039],[117.69488020000006,3.867112300000031],[117.68320870000002,3.873344900000063],[117.66666160000011,3.879009200000041],[117.6242873000001,3.873724500000037],[117.609999,3.874079600000073],[117.59893120000004,3.876105100000075],[117.59015350000004,3.879503600000021],[117.58179770000004,3.885378200000048],[117.5640251000001,3.911123400000065],[117.54440980000004,3.921197300000074],[117.53325730000006,3.924778900000035],[117.52643260000002,3.924837500000024],[117.52180480000004,3.923461700000075],[117.507286,3.914947700000027],[117.49576460000003,3.912594700000056],[117.48828650000007,3.914220500000056],[117.477636,3.921052800000041],[117.46023240000011,3.927699500000074],[117.45660470000007,3.931905300000039],[117.45542660000001,3.93806440000003],[117.46376480000004,3.956102200000032],[117.463646,3.96086820000005],[117.46104340000011,3.967116],[117.45669220000002,3.971042],[117.45440510000003,3.986700600000063],[117.45027320000008,3.989945100000057],[117.44717950000006,3.989812700000073],[117.44750750000003,3.994763400000068],[117.43973070000004,4.004402600000049],[117.43384050000009,4.004102500000045],[117.42713590000005,4.006042100000059],[117.40865460000009,4.02107710000007],[117.38535790000003,4.027266500000053],[117.37547860000006,4.026627],[117.376284,4.014993900000036],[117.36546930000009,4.014287300000035],[117.3646999,4.023641700000042],[117.3695365000001,4.032796],[117.3763791,4.036383200000046],[117.38295790000006,4.036522800000057],[117.41599070000007,4.028707800000063],[117.4338596,4.01381420000007],[117.4382266,4.013427100000058],[117.44240590000004,4.019468300000028],[117.4480066000001,4.03238170000003],[117.45609720000004,4.042116100000044],[117.45499690000008,4.045965300000034],[117.45594210000002,4.047061700000029],[117.45780330000002,4.044909200000063],[117.46112090000008,4.04485660000006],[117.464944,4.048155500000064],[117.46770520000007,4.05458040000002],[117.46856810000008,4.062782900000059],[117.47382430000005,4.070673100000022],[117.47198930000002,4.080041700000038],[117.46835710000005,4.082868200000064],[117.43036690000008,4.093806800000038],[117.41840120000006,4.094335900000033],[117.41308310000011,4.107372],[117.41857730000004,4.109785800000054],[117.41930570000011,4.112906200000054],[117.41291870000009,4.12306970000003],[117.4072397000001,4.128033400000049],[117.40207640000006,4.131626700000027],[117.3912097000001,4.135680300000047],[117.39480020000008,4.145374700000048],[117.40746380000007,4.145881900000063],[117.411411,4.14462450000002],[117.4135298000001,4.146621200000027],[117.41873350000003,4.14687710000004],[117.41951820000008,4.145934500000067],[117.41538340000011,4.143674200000021],[117.41478490000009,4.141313],[117.4162146000001,4.140113900000074],[117.48479880000002,4.109652400000073],[117.48954690000005,4.111937100000034],[117.49054920000003,4.113862400000073],[117.49200630000007,4.126929800000028],[117.49749730000008,4.134863700000039],[117.49484540000003,4.138211700000056],[117.49545060000003,4.139468800000031],[117.49887350000006,4.135157400000026],[117.49326380000002,4.12508390000005],[117.49333780000006,4.113721200000043],[117.49514070000009,4.109122700000057],[117.50000000000011,4.105359900000053],[117.50000000000011,4.106958],[117.51084420000007,4.103296100000023],[117.52124470000001,4.101865100000055],[117.52468850000002,4.104030600000044],[117.53418460000012,4.124513300000046],[117.54822540000009,4.14244560000003],[117.55444570000009,4.146211100000073],[117.56676130000005,4.149792500000046],[117.5830185000001,4.158611400000041],[117.59556270000007,4.170279600000072],[117.5923567000001,4.173818700000027],[117.58373010000003,4.178782300000023],[117.57261180000012,4.180673],[117.56427040000005,4.17837830000002],[117.54798990000006,4.167969700000071],[117.5449063000001,4.168364],[117.53866590000007,4.17231],[117.53655210000011,4.169620800000075],[117.53612060000012,4.165865900000028],[117.53093920000003,4.163521],[117.53044330000012,4.160831900000062],[117.517498,4.165319400000044],[117.51390550000008,4.169088600000066],[117.50902970000004,4.170576700000026],[117.50154170000008,4.168968],[117.50155140000004,4.170792800000072],[117.50000000000011,4.17150730000003],[117.50000000000011,4.169194600000026],[117.49755670000002,4.172532100000069],[117.49196330000007,4.171261],[117.49200530000007,4.17314870000007],[117.48923680000007,4.17484120000006],[117.48620190000008,4.173480500000039],[117.48416020000002,4.169245100000069],[117.47923020000007,4.170250300000021],[117.47717740000007,4.16928340000004],[117.47579910000002,4.171979400000055],[117.4678235,4.173554],[117.46759230000009,4.174919700000032],[117.4615066,4.178710200000069],[117.45824440000001,4.17771620000002],[117.4564544000001,4.184026200000062],[117.4536998000001,4.185014800000033],[117.45409680000012,4.186394700000051],[117.4502953000001,4.188698300000055],[117.4495611000001,4.190889300000038],[117.44725730000005,4.191168400000038],[117.44624080000006,4.189806800000042],[117.44264320000002,4.191714900000022],[117.44076020000011,4.198175400000025],[117.442571,4.200490600000023],[117.43902530000003,4.205223],[117.43892390000008,4.207869300000027],[117.43440250000003,4.208051900000044],[117.433374,4.20978],[117.43032720000008,4.210546300000033],[117.4285675000001,4.214530300000035],[117.4264816000001,4.215692100000069],[117.426758,4.21925820000007],[117.424157,4.221337700000049],[117.42597950000004,4.224031],[117.42875660000004,4.223545900000033],[117.42990160000011,4.225194800000054],[117.42974820000006,4.229175200000043],[117.42726660000005,4.232436],[117.42414130000009,4.23278810000005],[117.42276450000008,4.235650500000077],[117.42018790000009,4.234323300000028],[117.41422160000002,4.238238500000023],[117.41125690000001,4.237240400000076],[117.40970490000007,4.242161800000076],[117.41305380000006,4.247409700000048],[117.41199390000008,4.249667700000032],[117.40981160000001,4.25],[117.41102030000002,4.25],[117.41079080000009,4.251529700000049],[117.40909550000003,4.253245800000059],[117.4061630000001,4.255078900000058],[117.40260750000004,4.254928600000028],[117.398033,4.25845970000006],[117.3878592000001,4.257797800000048],[117.38764580000009,4.259267800000032],[117.38409890000003,4.26132860000007],[117.38230360000011,4.265748300000041],[117.37762670000006,4.268478900000048],[117.3745186000001,4.27302050000003],[117.37526470000012,4.274747800000057],[117.37351050000007,4.27672640000003],[117.37325050000004,4.281215],[117.37466110000003,4.282911700000056],[117.37287890000005,4.286005],[117.366618,4.285261400000024],[117.35575250000011,4.28928970000004],[117.35033780000003,4.288779200000022],[117.34600000000012,4.290773600000023],[117.34361080000008,4.289718900000025],[117.33885080000005,4.295171700000026],[117.33197690000009,4.296071400000073],[117.32999940000002,4.299220800000057],[117.32336780000003,4.303305600000044],[117.32006300000012,4.303224200000045],[117.3181025,4.29975440000004],[117.31257190000008,4.299163300000032],[117.31015140000011,4.30370860000005],[117.31085530000007,4.308306900000048],[117.30976750000002,4.30925940000003],[117.30462690000002,4.311269400000072],[117.30039220000003,4.308682200000021],[117.2977125000001,4.309829700000023],[117.298205,4.31173670000004],[117.2908000000001,4.315319200000033],[117.28925140000001,4.320594400000061],[117.2868347000001,4.322781900000052],[117.28775890000009,4.327190300000041],[117.2859092000001,4.333606900000063],[117.2814661000001,4.335731100000032],[117.2782214,4.340407200000072],[117.27547640000012,4.341644200000076],[117.27467250000007,4.345539200000076],[117.27139640000007,4.34777390000005],[117.27021890000003,4.351938300000029],[117.26786420000008,4.352505500000063],[117.26689360000012,4.356056900000056],[117.26300970000011,4.359049700000071],[117.256358,4.360383900000045],[117.25110330000007,4.364615],[117.25001670000006,4.366663900000049],[117.2519205000001,4.370210300000053],[117.24883720000003,4.373868900000048],[117.2450761,4.37352670000007],[117.24304970000003,4.37094170000006],[117.24066890000006,4.37151],[117.2371,4.368843900000059],[117.23234780000007,4.370074700000032],[117.22831470000006,4.369357200000024],[117.22789530000011,4.365026700000044],[117.2232378000001,4.360550300000057],[117.21996,4.360587200000055],[117.2183169000001,4.359111100000064],[117.21804640000005,4.355825800000048],[117.21374780000008,4.353846400000066],[117.21302890000004,4.349298900000065],[117.2097678,4.345894700000031],[117.20983940000008,4.34308720000007],[117.20100250000007,4.335061400000029],[117.19104670000002,4.338437500000055],[117.17924670000002,4.335559200000034],[117.17039440000008,4.337312800000063],[117.16754110000011,4.339391400000068],[117.16557420000004,4.34390250000007],[117.16817420000007,4.345937800000058],[117.1658394000001,4.346551100000056],[117.16364220000003,4.344971700000031],[117.16289720000009,4.348104400000068],[117.159388,4.350462800000059],[117.1597336000001,4.352743300000043],[117.15502250000009,4.353584200000057],[117.15210280000008,4.353490800000031],[117.15159970000002,4.351948900000025],[117.14809190000005,4.350900800000034],[117.14718440000001,4.352038100000073],[117.14332190000005,4.35109170000004],[117.14618080000002,4.34657720000007],[117.14300030000004,4.342953300000033],[117.13876890000006,4.344863600000053],[117.13453250000009,4.344925600000067],[117.13055830000008,4.342272200000025],[117.12741360000007,4.342638600000043],[117.12123780000002,4.340411700000061],[117.11706640000011,4.335202800000047],[117.11112920000005,4.334730300000047],[117.10882580000009,4.332325800000035],[117.09559330000002,4.335616400000049],[117.08620250000001,4.333755300000064],[117.08286610000005,4.336049200000048],[117.07673670000008,4.335414700000058],[117.07422080000003,4.337290600000074],[117.06677610000008,4.338308100000063],[117.06508970000004,4.341906100000074],[117.05562390000011,4.341536100000042],[117.05080080000005,4.346230300000059],[117.04417810000007,4.347096400000055],[117.03238750000003,4.340880800000036],[117.02532250000002,4.325158300000055],[117.0257908000001,4.323688300000072],[117.02217080000003,4.318810300000052],[117.015545,4.32077780000003],[117.00754920000008,4.320896700000048],[117.00743280000006,4.326713600000062],[117.00859080000009,4.327704400000073],[117.00772280000001,4.330580800000064],[117.00968060000002,4.335043600000063],[117.00906780000003,4.338503600000024],[117.01061080000011,4.344015600000034],[117.00932780000005,4.346534200000065],[117.00607470000011,4.347097500000075],[116.99619780000012,4.343982500000038],[116.99269920000006,4.341143300000056],[116.98906330000011,4.34265060000007],[116.9880425,4.34121140000002],[116.98105440000006,4.341202800000076],[116.97553190000008,4.343415800000059],[116.97196440000005,4.337731400000052],[116.96972360000007,4.336938600000053],[116.96657750000008,4.338158900000053],[116.96219360000009,4.34641890000006],[116.96021280000002,4.345873600000061],[116.95829220000007,4.348185600000022],[116.95647080000003,4.351971100000071],[116.9565325000001,4.355955300000062],[116.95204920000003,4.35626190000005],[116.9461983000001,4.35909920000006],[116.9406361,4.356146900000056],[116.93899890000012,4.358526700000027],[116.93418280000003,4.358413900000073],[116.93036940000002,4.361964200000045],[116.92755970000007,4.36076920000005],[116.9242733000001,4.362004400000046],[116.923385,4.364443900000026],[116.92117440000004,4.365613300000064],[116.91432390000011,4.36578940000004],[116.9124594000001,4.368635],[116.9069244000001,4.366108100000076],[116.90224530000012,4.366230300000041],[116.8974942000001,4.358110600000032],[116.89153670000007,4.353156400000046],[116.8889689,4.349127500000066],[116.88513920000003,4.347206700000072],[116.87845060000006,4.347527500000069],[116.87407810000002,4.339488300000028],[116.86908750000009,4.33652920000003],[116.86424860000011,4.339011700000071],[116.86010920000001,4.336057200000027],[116.85906530000011,4.337256400000058],[116.85694280000007,4.336627800000031],[116.85531110000011,4.339083900000048],[116.85183920000009,4.33937],[116.84800920000009,4.329560300000026],[116.84393920000002,4.32581220000003],[116.84305470000004,4.326845800000058],[116.83623000000011,4.326027200000055],[116.83274030000007,4.331204200000059],[116.82596330000001,4.332423300000073],[116.82503720000011,4.334963600000037],[116.82215310000004,4.33655310000006],[116.82010530000002,4.34549080000005],[116.81702080000002,4.350340600000038],[116.81433360000005,4.349322800000039],[116.81020890000002,4.351171900000054],[116.8067400000001,4.350105800000051],[116.79812530000004,4.338616400000035],[116.79256970000006,4.338120600000025],[116.78597750000006,4.34229920000007],[116.78445940000006,4.358922800000073],[116.78039970000009,4.360582200000067],[116.77835560000005,4.365154700000062],[116.77404750000005,4.36783360000004],[116.77132080000001,4.37620030000005],[116.76032970000006,4.38250110000007],[116.75301940000008,4.390599200000054],[116.74979580000002,4.387831900000037],[116.7478681,4.383685800000023],[116.74549310000009,4.384096400000033],[116.74191890000009,4.382286900000054],[116.74231250000003,4.367075800000066],[116.73985670000002,4.365733600000056],[116.73664030000009,4.360391900000025],[116.73502970000004,4.35316860000006],[116.72815360000004,4.347786400000075],[116.71953830000007,4.346799200000021],[116.7154997,4.342691400000035],[116.71119720000002,4.341812200000049],[116.70762560000003,4.337039400000037],[116.7078289000001,4.333585],[116.7061758000001,4.331552500000043],[116.70374470000002,4.332393300000035],[116.69780750000007,4.339186400000074],[116.69638750000001,4.33883220000007],[116.69353720000004,4.341311100000041],[116.68544190000011,4.341017800000031],[116.68546780000008,4.344840800000043],[116.6839364000001,4.345914400000026],[116.67438640000012,4.351276100000064],[116.67082170000003,4.349742800000058],[116.66861390000008,4.352399200000036],[116.663765,4.348987500000021],[116.65975280000009,4.348398100000054],[116.65887170000008,4.340376400000025],[116.65488560000006,4.338248900000053],[116.65463330000011,4.336751100000072],[116.64649580000003,4.339698600000077],[116.64302420000001,4.336487200000022],[116.63554670000008,4.337893100000031],[116.6319069000001,4.335578600000076],[116.6262392000001,4.340101900000036],[116.62157330000002,4.337131400000032],[116.61823140000001,4.345589400000051],[116.62084610000011,4.350116400000047],[116.62084220000008,4.358540600000026],[116.61740420000001,4.362310300000047],[116.616345,4.366803600000026],[116.61755560000006,4.370483900000067],[116.61512560000006,4.37718220000005],[116.61117530000001,4.379656900000043],[116.60628640000004,4.379715],[116.59881860000007,4.373095600000056],[116.58930420000002,4.374216900000022],[116.58743360000005,4.377155800000025],[116.5877061000001,4.382271700000047],[116.58362420000003,4.384585],[116.58363220000001,4.388251900000057],[116.58177420000004,4.389144200000032],[116.58149030000004,4.391295600000035],[116.57702580000011,4.396696900000052],[116.57695640000009,4.399551700000075],[116.57336390000012,4.401103600000056],[116.5709217000001,4.40794],[116.56795390000002,4.408291900000052],[116.56613310000012,4.407725600000049],[116.56425720000004,4.397613300000046],[116.56593690000011,4.393176400000073],[116.56540360000008,4.39071],[116.55926220000003,4.387299700000028],[116.55586920000007,4.388862200000062],[116.55012940000006,4.387098900000069],[116.5463208000001,4.378066900000022],[116.54088080000008,4.378403100000071],[116.53750780000007,4.376108900000077],[116.53330810000011,4.352116100000046],[116.53086940000003,4.347475300000042],[116.53380080000011,4.342185],[116.53855670000007,4.340382200000022],[116.54191390000005,4.33511720000007],[116.53820530000007,4.320681100000058],[116.53528920000008,4.320578900000044],[116.52794360000007,4.327026400000022],[116.52332920000003,4.326984200000027],[116.51969940000004,4.324543900000037],[116.5083436000001,4.324237200000027],[116.49854920000007,4.333473300000037],[116.48979170000007,4.33471110000005],[116.4876756000001,4.329472200000055],[116.49019250000003,4.321272200000067],[116.4830386000001,4.31557],[116.48485640000001,4.309706700000049],[116.48009720000005,4.302441100000067],[116.4719397,4.29989310000002],[116.46344080000006,4.294122500000071],[116.46079830000008,4.294622200000049],[116.4588506,4.297330300000056],[116.4547758000001,4.296120600000052],[116.4500475000001,4.289922800000056],[116.44271750000007,4.288079700000026],[116.44009140000003,4.289091100000064],[116.43917970000007,4.301276400000063],[116.43743720000009,4.30510780000003],[116.4383769000001,4.323007200000063],[116.43399170000009,4.325128300000074],[116.43057890000011,4.329483100000061],[116.428395,4.329651900000044],[116.42604830000005,4.326885],[116.41960690000008,4.326131900000064],[116.41975420000006,4.332373600000039],[116.40819970000007,4.34528],[116.40528080000001,4.353282800000045],[116.4054417000001,4.358884400000022],[116.39803,4.362484700000039],[116.39055640000004,4.360127800000043],[116.38903830000004,4.358432200000038],[116.38693110000008,4.359013600000026],[116.38254080000002,4.362826700000028],[116.38291560000005,4.37049920000004],[116.38062670000011,4.375752800000043],[116.37283080000009,4.378669200000047],[116.36790310000004,4.377924700000051],[116.36056080000003,4.386706400000037],[116.35542530000009,4.38920580000007],[116.35295860000008,4.388508900000033],[116.34922860000006,4.39015],[116.34550170000011,4.388975300000027],[116.33971440000005,4.384083300000043],[116.33672610000008,4.385335300000065],[116.32521610000003,4.383953100000042],[116.32157280000001,4.380666900000051],[116.32100060000005,4.37651],[116.3158836,4.370931900000073],[116.31077830000004,4.371],[116.3079206000001,4.368587500000046],[116.2936006000001,4.372429400000044],[116.2805158000001,4.360032200000035],[116.27594140000008,4.362682500000062],[116.262605,4.36191],[116.26053560000003,4.366574700000058],[116.25845470000002,4.367418300000054],[116.25802170000009,4.371687200000054],[116.25309360000006,4.377096700000038],[116.24806,4.374817800000073],[116.2293108,4.378085800000065],[116.22129830000006,4.38193],[116.20833610000011,4.378150800000071],[116.20535170000005,4.37285],[116.2011381000001,4.373705600000051],[116.19952190000004,4.378081700000052],[116.19299580000006,4.380424700000049],[116.17813610000007,4.380682500000034],[116.17669560000002,4.383484400000043],[116.17192060000002,4.385253300000045],[116.17196920000004,4.389865600000064],[116.1682614,4.390906700000073],[116.16481560000011,4.384835800000076],[116.1617222000001,4.374623600000064],[116.156375,4.338375600000063],[116.14946780000002,4.340645600000073],[116.1461614000001,4.33966810000004],[116.14539140000011,4.33766890000004],[116.14135080000005,4.338024200000064],[116.13460060000011,4.329386700000043],[116.1234492000001,4.331839200000047],[116.11781030000009,4.335507200000052],[116.11219690000007,4.331743600000038],[116.11253940000006,4.325343600000053],[116.10609860000011,4.324371100000064],[116.10286250000001,4.318274200000076],[116.0960897000001,4.313914200000056],[116.0959358,4.310735800000032],[116.0926472000001,4.307866400000023],[116.09242,4.304693600000064],[116.08778970000003,4.304676100000052],[116.08812390000003,4.296529700000065],[116.08629420000011,4.294272200000023],[116.0862747000001,4.290589700000055],[116.08378970000001,4.285054700000046],[116.08446780000008,4.281638100000066],[116.07382920000009,4.276561400000048],[116.0695975000001,4.279418300000032],[116.057335,4.28307280000007],[116.0532406000001,4.287451900000065],[116.0529414,4.289668100000029],[116.04329110000003,4.290766400000052],[116.0357136,4.295041900000058],[116.03522280000004,4.298119400000076],[116.03251890000001,4.300950800000066],[116.03538920000005,4.319980600000065],[116.03131860000008,4.324183900000037],[116.03269110000008,4.328705],[116.02974640000002,4.331072800000072],[116.0254169000001,4.333448900000064],[116.01983640000003,4.333224200000075],[116.01631470000007,4.336315],[116.0087261000001,4.335341700000072],[116.0051317000001,4.341071400000033],[116.00424190000001,4.347469200000035],[115.99410250000005,4.349090800000056],[115.9936358000001,4.351245300000073],[115.9910258000001,4.352239700000041],[115.98518190000004,4.350595300000066],[115.97983720000002,4.353501900000026],[115.97787,4.357803600000068],[115.96243720000007,4.353153300000031],[115.96020750000002,4.356978900000058],[115.95054610000011,4.358176700000058],[115.9492206000001,4.355927800000075],[115.9427889000001,4.357006400000046],[115.93805330000009,4.35338],[115.9347547000001,4.354621100000031],[115.93074310000009,4.354431700000021],[115.92980330000012,4.353157200000055],[115.92836720000003,4.357491400000072],[115.9220931000001,4.362141400000041],[115.92154140000002,4.366508600000031],[115.91542640000011,4.371932500000071],[115.91651530000001,4.37749690000004],[115.90953860000002,4.390997200000072],[115.90044310000007,4.395491400000026],[115.89430750000008,4.391836700000056],[115.8917186000001,4.39319560000007],[115.8883972000001,4.391278300000067],[115.88055580000002,4.392315600000074],[115.87819170000012,4.391169200000036],[115.8764192000001,4.386545300000023],[115.87465080000004,4.385910300000035],[115.87191280000002,4.377130600000044],[115.87242390000006,4.374705300000073],[115.87012420000008,4.3725],[115.87200170000006,4.370795600000065],[115.87211220000006,4.366428600000063],[115.87038060000009,4.365051400000027],[115.87140750000003,4.360969200000056],[115.8699808,4.359643900000037],[115.87387280000007,4.354204200000027],[115.8710622000001,4.352175],[115.86953360000007,4.346382500000061],[115.86527440000009,4.34604580000007],[115.86418640000011,4.343329400000073],[115.866195,4.340057800000068],[115.86444530000006,4.331928600000026],[115.86688140000001,4.32237420000007],[115.86576220000006,4.31760440000005],[115.86918690000005,4.309433300000023],[115.86992280000004,4.301057200000059],[115.87465940000004,4.295698100000038],[115.87624060000007,4.295637500000055],[115.87611190000007,4.291227800000058],[115.87212390000002,4.288180600000032],[115.87127170000008,4.285576400000025],[115.86448310000003,4.285093900000049],[115.86152330000004,4.280234700000051],[115.85744970000007,4.279755],[115.85397810000006,4.281057200000021],[115.8510864000001,4.279548600000055],[115.84944970000004,4.277876700000036],[115.84968330000004,4.273057200000039],[115.84604610000008,4.268901100000051],[115.84290030000011,4.269312200000059],[115.8384919,4.26478],[115.83550140000011,4.265811100000064],[115.83095560000004,4.263218900000027],[115.82617560000006,4.262815300000057],[115.8255372000001,4.260166100000049],[115.82985830000007,4.25176],[115.82668560000002,4.246071700000073],[115.82785580000007,4.237377200000026],[115.83000750000008,4.234402500000044],[115.82213780000006,4.228764700000056],[115.8196392000001,4.224938900000041],[115.8106097000001,4.226615300000049],[115.802885,4.220245800000043],[115.79929720000007,4.22576250000003],[115.796885,4.23811610000007],[115.79308480000009,4.238122500000031],[115.79034250000007,4.241093900000067],[115.78165610000008,4.242973600000028],[115.77716940000005,4.242017500000031],[115.77328140000009,4.244345600000031],[115.76771470000006,4.244883300000026],[115.76441310000007,4.23258],[115.76069470000004,4.228807800000027],[115.76001670000005,4.223707200000035],[115.75421530000006,4.212735800000075],[115.7467511000001,4.210403900000074],[115.74511940000002,4.213596400000029],[115.74324110000009,4.213587500000074],[115.73333060000004,4.208524700000055],[115.73393890000011,4.204574700000023],[115.72896170000001,4.188786700000037],[115.72026310000001,4.192955600000062],[115.71990030000006,4.195701100000065],[115.71834940000008,4.193858900000066],[115.71194420000006,4.192233900000076],[115.70414560000006,4.195162200000027],[115.70368140000005,4.192086700000061],[115.69763360000002,4.185617200000024],[115.69754690000002,4.180199200000061],[115.6951858000001,4.179607800000042],[115.69499470000005,4.178051400000072],[115.69028170000001,4.174886400000048],[115.69061720000002,4.172853100000054],[115.68850110000005,4.170289700000069],[115.68948250000005,4.165276700000049],[115.68356920000008,4.160483900000031],[115.68372420000003,4.156680600000072],[115.68197780000003,4.153115800000023],[115.68325860000004,4.148345800000072],[115.68243080000002,4.146493100000043],[115.68417390000002,4.14351750000003],[115.68109030000005,4.14001],[115.68526250000002,4.13267970000004],[115.68344580000007,4.129011700000035],[115.68010860000004,4.12861],[115.6801703000001,4.12629830000003],[115.67636420000008,4.123233300000038],[115.6780103000001,4.116768600000057],[115.67595030000007,4.113344400000074],[115.67941180000003,4.104110200000036],[115.67595,4.097115600000052],[115.67840740000008,4.089664200000072],[115.67460660000006,4.080902500000036],[115.67493820000004,4.078598500000055],[115.67196550000006,4.076270700000066],[115.67090430000007,4.072540400000037],[115.671818,4.07147580000003],[115.66705590000004,4.064552500000048],[115.667515,4.062523800000065],[115.66424630000006,4.059619600000076],[115.66487450000011,4.056371300000023],[115.66249930000004,4.052258300000062],[115.66031640000006,4.040617900000029],[115.6582853000001,4.036975700000028],[115.65403170000002,4.035072300000024],[115.65311550000001,4.032893],[115.65490880000004,4.02826790000006],[115.6534415000001,4.019202],[115.651054,4.016935200000034],[115.652456,4.01447040000005],[115.65174220000006,4.011372900000026],[115.64991410000005,4.009805300000039],[115.650465,3.987005200000056],[115.64657750000003,3.980755800000054],[115.64730010000005,3.978251],[115.64418920000003,3.971781],[115.64146230000006,3.970263400000022],[115.64110370000003,3.961788800000022],[115.639337,3.961380500000075],[115.63830460000008,3.959008800000049],[115.63377860000003,3.957670900000039],[115.62889040000005,3.946370500000057],[115.6204699000001,3.939624700000024],[115.61856740000007,3.936536100000069],[115.61034270000005,3.939287600000057],[115.59864320000008,3.938658300000043],[115.590401,3.943082100000026],[115.58450650000009,3.939215300000058],[115.58113350000008,3.940035600000044],[115.57938160000003,3.935188500000038],[115.57696380000004,3.93350810000004],[115.56773980000003,3.919277400000055],[115.55951940000011,3.917774500000064],[115.56652810000003,3.90828],[115.57576080000001,3.900734400000033],[115.57720620000009,3.893489500000044],[115.583147,3.886088100000052],[115.58850930000006,3.884975100000077],[115.59339890000001,3.889956600000062],[115.59676700000011,3.890486200000055],[115.596056,3.884999500000049],[115.598129,3.879188],[115.60528680000004,3.874901400000056],[115.60983260000012,3.878024400000072],[115.61204340000006,3.875976800000046],[115.61814190000007,3.874187500000062],[115.6172084000001,3.872829500000023],[115.6191917000001,3.868114900000023],[115.61884920000011,3.856455900000071],[115.61711470000012,3.854741300000057],[115.61553480000009,3.846249600000021],[115.61787,3.839579600000036],[115.61474940000005,3.831765500000074],[115.61395610000011,3.824024500000064],[115.607473,3.814605100000051],[115.6032818000001,3.798619200000076],[115.59521630000006,3.790687400000024],[115.59451850000005,3.786050300000056],[115.59012660000008,3.781088],[115.5887507000001,3.777165300000036],[115.59264210000003,3.772239800000023],[115.5932514000001,3.768997],[115.5861301000001,3.761375800000053],[115.58714430000009,3.755977100000052],[115.57839860000001,3.746808500000043],[115.57811270000002,3.741661400000055],[115.58183230000009,3.728204800000071],[115.575043,3.721463700000072],[115.5750064,3.718393400000025],[115.57862890000001,3.71558280000005],[115.58222680000006,3.706834300000025],[115.5839529000001,3.706251800000075],[115.58259450000003,3.700702],[115.58400840000002,3.697662800000046],[115.58253270000012,3.693859800000041],[115.57451790000005,3.685749200000032],[115.57236790000002,3.680853300000024],[115.57424120000007,3.672238400000026],[115.57630470000004,3.669287500000053],[115.57396370000004,3.667036100000075],[115.57220820000009,3.648824],[115.57303890000003,3.64548590000004],[115.57843590000004,3.641960400000073],[115.58228150000002,3.633998],[115.57948270000009,3.628774],[115.57702370000004,3.628689500000064],[115.5766245000001,3.627274900000032],[115.58004380000011,3.619821900000034],[115.57854150000003,3.613518],[115.57668760000001,3.611295400000074],[115.57936180000002,3.605795],[115.58071590000009,3.59608860000003],[115.58992840000008,3.586275800000067],[115.58867690000011,3.5828],[115.59015920000002,3.578098200000056],[115.5971191000001,3.575840500000027],[115.60285550000003,3.577573700000073],[115.604728,3.576780400000075],[115.60553780000009,3.567918300000031],[115.60808490000011,3.564889700000037],[115.60970850000001,3.556399900000031],[115.61293250000006,3.553200700000048],[115.61269020000009,3.543906700000036],[115.61395080000011,3.543051],[115.61422080000011,3.537400900000023],[115.6097208000001,3.52319650000004],[115.611696,3.517759200000057],[115.61030220000009,3.510617900000057],[115.61443570000006,3.504349200000036],[115.61789750000003,3.503186300000039],[115.62467470000001,3.490891100000056],[115.627226,3.490056200000026],[115.62621950000005,3.484433900000056],[115.62853060000009,3.48294930000003],[115.62932180000007,3.477449700000022],[115.63402170000006,3.476912800000036],[115.63611390000005,3.474356100000023],[115.63463600000011,3.468565500000068],[115.63268960000005,3.467140900000061],[115.639666,3.461703500000056],[115.63871390000008,3.455852900000025],[115.64383650000002,3.450238600000034],[115.64797950000002,3.450543],[115.65092020000009,3.448789800000043],[115.6535818000001,3.446233300000074],[115.65444520000005,3.442432],[115.65649830000007,3.442497200000048],[115.65830720000008,3.438799],[115.67494890000012,3.427624300000048],[115.69101020000005,3.406209100000069],[115.69993320000003,3.40264],[115.70290750000004,3.416321800000048],[115.71420990000001,3.437737],[115.72908160000009,3.444875400000058],[115.74276350000002,3.447849700000063],[115.76238340000009,3.447357300000021],[115.76914850000003,3.463040100000057],[115.77898870000001,3.463655200000062],[115.78996280000001,3.462390400000061],[115.80078880000008,3.463593800000069],[115.8072793,3.470420200000035],[115.80543430000012,3.489485700000046],[115.818657,3.493483200000071],[115.82603720000009,3.491330600000026],[115.8315722000001,3.487640700000043],[115.83864490000008,3.491638200000068],[115.8506377000001,3.486410700000022],[115.85617280000008,3.471650300000022],[115.88381960000004,3.469610400000022],[115.89705660000004,3.475627300000042],[115.9054794000001,3.487660400000038],[115.911499,3.493676900000025],[115.92593390000002,3.499693800000045],[115.937973,3.508117],[115.94879910000009,3.512930400000073],[115.96083070000009,3.515337],[115.96805570000004,3.522556900000041],[115.977684,3.552640200000042],[115.9589423000001,3.57838780000003],[115.952446,3.596433],[115.95172420000006,3.607981900000027],[115.95605490000003,3.62025280000006],[115.93548340000007,3.637576100000047],[115.93331810000006,3.642628800000068],[115.93367890000002,3.651651400000048],[115.92501730000004,3.664643900000044],[115.92032540000002,3.675471],[115.9141902,3.681606400000021],[115.91202460000011,3.689907100000028],[115.92465640000012,3.726358600000026],[115.92790450000007,3.75270450000005],[115.93259620000003,3.756674500000031],[115.94378430000006,3.760283500000071],[115.9441452000001,3.767862500000035],[115.94775430000004,3.772554300000024],[115.94883690000006,3.777246],[115.94759370000008,3.784883],[115.94037630000003,3.792102800000066],[115.92682180000008,3.79817840000004],[115.92285170000002,3.804313800000045],[115.92285190000007,3.820915400000047],[115.925739,3.826689900000076],[115.92357370000002,3.835351600000024],[115.91635560000009,3.83679520000004],[115.90913740000008,3.840765100000056],[115.90949840000007,3.848344200000042],[115.91346840000006,3.860975800000062],[115.91346830000009,3.876133800000048],[115.92429550000008,3.877577400000064],[115.9268217,3.88226910000003],[115.9203255000001,3.894179],[115.92357370000002,3.906810600000028],[115.92068640000002,3.914750500000025],[115.91996460000007,3.924855700000023],[115.92213010000012,3.931352200000049],[115.93006990000003,3.943983800000069],[115.93259630000011,3.951201900000058],[115.93981440000005,3.956254500000057],[115.9466715000001,3.956976300000065],[115.95136330000003,3.960224500000038],[115.95028060000004,3.987653200000068],[115.95172420000006,3.997397600000056],[115.9574986,4.004254700000047],[115.9608138000001,4.014265100000046],[115.9608138000001,4.036892900000055],[115.9650041000001,4.047368800000072],[115.963328,4.059939800000052],[115.95894210000006,4.071743900000058],[115.95822030000011,4.092315500000041],[115.9603859,4.107834300000036],[115.96579950000012,4.118300500000032],[115.97085210000012,4.117939600000057],[115.97590480000008,4.113247900000033],[115.98131840000008,4.102420700000039],[115.98961910000003,4.094480900000065],[116.0040729000001,4.089568700000029],[116.024301,4.08972650000004],[116.02871760000005,4.08182290000002],[116.03150710000011,4.079963200000066],[116.03869370000007,4.083907500000066],[116.04429230000005,4.084147500000029],[116.06134510000004,4.096896800000025],[116.07195490000004,4.100187100000028],[116.0742795000001,4.106231200000025],[116.07799880000005,4.109950400000059],[116.08195060000003,4.110880200000054],[116.08576190000008,4.11788260000003],[116.09485370000004,4.116658600000051],[116.10929190000002,4.111947300000054],[116.1161509000001,4.113370900000064],[116.12598670000011,4.120877],[116.1359053000001,4.115061300000036],[116.13938070000006,4.116009],[116.14727970000001,4.110637700000041],[116.16465730000004,4.11253350000004],[116.16747620000001,4.111501200000021],[116.16160520000005,4.091310600000043],[116.1697438000001,4.090147900000034],[116.17962640000007,4.086369300000058],[116.1851491000001,4.079684],[116.19822910000005,4.074742600000036],[116.20636780000007,4.074161200000049],[116.21828510000012,4.08026540000003],[116.22278960000006,4.079097800000056],[116.23273130000007,4.065877200000045],[116.23552170000005,4.058668700000055],[116.23701170000004,4.046814200000028],[116.24947370000007,4.043089],[116.26179790000003,4.042391400000042],[116.26877390000004,4.040066],[116.27505240000005,4.040996300000074],[116.27737750000006,4.045647],[116.27807530000007,4.052157800000032],[116.28388860000007,4.057971100000032],[116.2885394000001,4.057971200000054],[116.29356810000002,4.051869600000032],[116.30063110000003,4.04866990000005],[116.30807210000012,4.051227600000061],[116.31202520000011,4.058901300000059],[116.31900120000012,4.062854300000026],[116.33109290000004,4.057041],[116.33597620000012,4.050530200000026],[116.33713880000005,4.044251600000052],[116.35109090000003,4.037043100000062],[116.35481130000005,4.033787700000062],[116.35318360000008,4.01820790000005],[116.35497670000007,4.008307100000025],[116.369714,3.993417400000055],[116.37733980000007,3.995634700000039],[116.392147,3.991837600000053],[116.38393210000004,3.982674800000041],[116.38266830000009,3.975407800000028],[116.3833002,3.971616300000051],[116.38645980000001,3.968772600000023],[116.38479430000007,3.947926900000027],[116.38925760000006,3.931770400000062],[116.39479540000002,3.927738500000032],[116.40100930000006,3.91605160000006],[116.40101210000012,3.912102900000036],[116.4027999000001,3.911206700000037],[116.4051267000001,3.906003200000043],[116.4078144,3.895864],[116.41052150000007,3.892322700000022],[116.4179557000001,3.887204100000076],[116.42017470000008,3.883468400000027],[116.41904350000004,3.882822],[116.41990650000002,3.879344400000036],[116.41872360000002,3.875493800000072],[116.42083530000002,3.867430900000045],[116.42429090000007,3.86512730000004],[116.43196960000012,3.854952900000058],[116.43542510000009,3.853992900000037],[116.43696110000008,3.845738200000028],[116.45078300000011,3.829804500000023],[116.45443030000001,3.81943780000006],[116.4577905000001,3.81539790000005],[116.462865,3.81257880000004],[116.466436,3.80788],[116.46756360000006,3.794347900000048],[116.47798780000005,3.781144100000063],[116.47776490000001,3.772678100000064],[116.47620530000006,3.768222300000048],[116.47709640000005,3.763320700000065],[116.48261080000009,3.756553500000052],[116.48873750000007,3.745135300000072],[116.49929340000006,3.743174900000042],[116.5031365000001,3.748099300000035],[116.51202410000008,3.748219400000039],[116.52031110000007,3.74317510000003],[116.52679670000009,3.733927100000074],[116.53484370000001,3.725760300000047],[116.5422297,3.721019800000022],[116.54654590000007,3.720081700000037],[116.56986250000011,3.722216300000071],[116.57338130000005,3.720105100000069],[116.57622560000004,3.700569600000051],[116.57989060000011,3.692872600000044],[116.5886872000001,3.691039900000021],[116.61837560000004,3.692872500000021],[116.62827170000003,3.696904200000063],[116.66144190000011,3.703272600000048],[116.68938920000005,3.699149],[116.70542450000005,3.69823290000005],[116.7164203000001,3.699607300000025],[116.73071450000009,3.690637500000037],[116.73827,3.674522],[116.739078,3.663302],[116.738007,3.659712],[116.739258,3.658096],[116.74319,3.656841],[116.748016,3.651277],[116.75927500000012,3.644458],[116.76123770000004,3.641864800000064]]]]},"properties":{"shapeName":"Nunukan","shapeISO":"","shapeID":"22746128B67503904374903","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[104.780745,-3.052094499999953],[104.78157160000006,-3.040653499999962],[104.77937630000008,-3.034354],[104.77500160000005,-3.034210799999926],[104.77426260000004,-3.032401499999935],[104.770527,-3.037955199999942],[104.750741,-3.039416099999926],[104.74796820000006,-3.045097399999975],[104.74368180000005,-3.047953299999961],[104.74408810000006,-3.063881899999956],[104.73823070000009,-3.068615199999954],[104.73358770000004,-3.068614],[104.73172390000008,-3.072537699999941],[104.72853150000009,-3.074052199999926],[104.72669760000008,-3.088444899999956],[104.719399,-3.094524099999944],[104.71781670000007,-3.0911261],[104.718894,-3.090218499999935],[104.71815450000008,-3.085564399999953],[104.71548710000008,-3.079268799999966],[104.71980880000007,-3.073817799999972],[104.71790960000004,-3.069621599999948],[104.71396070000009,-3.0669274],[104.70964050000003,-3.066543],[104.69045010000008,-3.056024199999968],[104.67596150000008,-3.060929199999975],[104.68083610000008,-3.066683399999931],[104.67887730000007,-3.068487399999981],[104.61820880000005,-3.111373],[104.60947180000005,-3.10152],[104.57794540000003,-3.093567399999927],[104.54411270000008,-3.095851399999958],[104.54240270000008,-3.09081],[104.52601130000005,-3.097380299999941],[104.52270960000004,-3.096456699999976],[104.519838,-3.090861399999937],[104.51284050000004,-3.089461299999925],[104.50483840000004,-3.093191499999932],[104.49940950000007,-3.093476199999941],[104.49540810000008,-3.096059299999979],[104.49111920000007,-3.102376299999946],[104.48740430000004,-3.103236099999947],[104.47882620000007,-3.1158699],[104.47910960000007,-3.120752899999957],[104.48396510000003,-3.124776399999973],[104.48510490000007,-3.131096],[104.48367540000004,-3.1328186],[104.48367370000005,-3.136265299999934],[104.49003720000007,-3.142445599999974],[104.49208980000009,-3.1634124],[104.49694470000009,-3.169159299999933],[104.49608520000004,-3.173754499999973],[104.51072180000006,-3.200630899999965],[104.51454290000004,-3.205157499999927],[104.53513510000005,-3.2146506],[104.56335880000006,-3.215233199999943],[104.57150770000004,-3.239532299999951],[104.56867020000004,-3.247523399999977],[104.55629320000008,-3.263573099999974],[104.551138,-3.261039099999948],[104.53993540000005,-3.268418099999963],[104.53095,-3.291463399999941],[104.52802740000004,-3.3020513],[104.52938250000005,-3.323069799999928],[104.53489820000004,-3.321261499999935],[104.53910390000004,-3.317658699999924],[104.53486520000007,-3.333197],[104.53623710000005,-3.353704299999947],[104.522176,-3.372094299999958],[104.51324160000007,-3.3882178],[104.50745460000007,-3.379538699999955],[104.49427080000004,-3.397940099999971],[104.48935640000008,-3.400536699999975],[104.469877,-3.405326099999968],[104.46407670000008,-3.422877699999958],[104.44750180000005,-3.425134],[104.44587130000008,-3.495304],[104.43908970000007,-3.495437399999958],[104.40549540000006,-3.5074216],[104.385369,-3.504913199999976],[104.38270160000008,-3.505767699999979],[104.37810630000007,-3.504014599999948],[104.37213770000005,-3.505538899999976],[104.34897,-3.504284599999949],[104.33301240000009,-3.505896399999926],[104.31758620000005,-3.503413599999931],[104.30606850000004,-3.497403799999972],[104.30095330000006,-3.497595699999977],[104.30371880000007,-3.503778799999964],[104.31102680000004,-3.512017699999944],[104.30843620000007,-3.528620099999955],[104.31182830000006,-3.537690299999952],[104.31229110000004,-3.543889899999954],[104.31120910000004,-3.547864799999957],[104.30448840000008,-3.556172499999946],[104.30477310000003,-3.561744799999929],[104.30646180000008,-3.561879],[104.30757980000004,-3.566017599999952],[104.30953590000007,-3.592843399999936],[104.30369130000008,-3.601715699999943],[104.30385230000007,-3.603729499999929],[104.30588930000005,-3.609137799999928],[104.31555250000008,-3.619317],[104.32236510000007,-3.621667399999978],[104.32720490000008,-3.621504499999958],[104.35592540000005,-3.606913199999951],[104.36121660000003,-3.605548799999951],[104.36394030000008,-3.6082189],[104.36610660000008,-3.608431099999962],[104.36666750000006,-3.6058335],[104.36990910000009,-3.604636099999937],[104.36688180000004,-3.597364],[104.37660620000008,-3.592525899999941],[104.37914340000003,-3.593661],[104.38191190000003,-3.590325199999938],[104.38655140000009,-3.589623099999926],[104.39023610000004,-3.590716599999951],[104.39056660000006,-3.588512699999967],[104.40082010000003,-3.587049599999943],[104.40370810000007,-3.584301599999947],[104.40709250000003,-3.583353799999941],[104.40708770000003,-3.574993799999959],[104.41410010000004,-3.569456099999968],[104.42012790000007,-3.558155799999952],[104.42242460000006,-3.556875599999955],[104.42800970000008,-3.559903799999972],[104.43733970000005,-3.556382099999951],[104.43982730000005,-3.560046],[104.437966,-3.565009099999941],[104.441844,-3.567484599999943],[104.44341830000008,-3.570561599999962],[104.45569070000005,-3.577025599999956],[104.45550710000003,-3.579918799999973],[104.46208180000008,-3.584978399999954],[104.46208070000006,-3.586866599999951],[104.46789910000007,-3.589519699999926],[104.46940990000007,-3.597865499999955],[104.47695060000007,-3.6103263],[104.47792170000008,-3.614185099999929],[104.475978,-3.614924599999938],[104.47603370000007,-3.6234218],[104.47294040000008,-3.625765099999967],[104.47369570000006,-3.630090299999949],[104.46884210000007,-3.635965399999975],[104.470479,-3.6359968],[104.47029550000008,-3.638798699999938],[104.46759710000003,-3.639649799999972],[104.46268240000006,-3.646134],[104.46431930000006,-3.646256799999946],[104.46404430000007,-3.649850399999934],[104.45661360000008,-3.655998],[104.45815890000006,-3.657308599999965],[104.45813280000004,-3.659733899999935],[104.45395080000009,-3.662762],[104.45360830000004,-3.668929699999978],[104.44344150000006,-3.677048099999979],[104.443552,-3.681009299999971],[104.44202060000003,-3.683144299999981],[104.43252020000006,-3.684877699999959],[104.42991870000009,-3.6898382],[104.42058640000005,-3.691466899999966],[104.41563370000006,-3.695874699999933],[104.40989480000007,-3.696289599999943],[104.40803360000007,-3.698881099999937],[104.39762980000006,-3.703480299999967],[104.39328540000008,-3.703762],[104.38714720000007,-3.717087],[104.37529350000005,-3.719662299999925],[104.37124230000006,-3.735592399999973],[104.37160710000006,-3.739131799999939],[104.37310040000006,-3.743341599999951],[104.377396,-3.747280099999955],[104.38374260000006,-3.756864],[104.38240360000003,-3.759877599999925],[104.374408,-3.763703199999952],[104.38080010000004,-3.763382499999977],[104.37962230000005,-3.769341299999951],[104.40648440000007,-3.783923699999946],[104.41039790000008,-3.784745],[104.43677410000004,-3.773521899999935],[104.44242560000004,-3.774087],[104.45246070000007,-3.770458599999927],[104.464101,-3.775516399999958],[104.45911640000008,-3.760370599999931],[104.46482780000008,-3.761170099999958],[104.47263360000005,-3.7651535],[104.48524950000007,-3.768059799999946],[104.48609620000008,-3.771413699999925],[104.48977280000008,-3.773575799999946],[104.49639380000008,-3.770337599999948],[104.49953490000007,-3.786566599999958],[104.50558940000008,-3.786417599999936],[104.51372140000007,-3.791554799999972],[104.53779590000005,-3.795443599999942],[104.55160260000008,-3.800983899999949],[104.55567570000005,-3.805243399999938],[104.55903150000006,-3.806921199999977],[104.56768390000008,-3.796481399999948],[104.57325430000009,-3.793949399999974],[104.57122870000006,-3.792430199999956],[104.57198830000004,-3.790151399999957],[104.58388870000005,-3.771414599999957],[104.58869950000008,-3.767616699999962],[104.58996550000006,-3.757741899999928],[104.59330680000005,-3.753207199999963],[104.587556,-3.752878499999952],[104.58930970000006,-3.749139299999968],[104.59174160000003,-3.748369099999934],[104.59238350000004,-3.744127],[104.59379120000006,-3.744127699999979],[104.60160230000008,-3.733846599999936],[104.60001940000006,-3.730135899999937],[104.60211720000007,-3.727033199999937],[104.604549,-3.726391499999977],[104.60813520000005,-3.719708099999934],[104.610695,-3.718809299999975],[104.61298920000007,-3.714374699999951],[104.61748030000007,-3.7122558],[104.62106510000007,-3.708400599999948],[104.62017110000005,-3.704157799999962],[104.62593370000008,-3.6945183],[104.62465670000006,-3.688218399999926],[104.62632070000006,-3.687319199999934],[104.626322,-3.6839767],[104.630548,-3.676522],[104.633368,-3.664952899999946],[104.64045090000008,-3.656197499999962],[104.64176730000008,-3.655512299999941],[104.64263070000004,-3.655063],[104.64360950000008,-3.653643799999941],[104.64194850000007,-3.647472299999947],[104.64322920000006,-3.644515899999931],[104.64220220000004,-3.644475799999952],[104.64310750000004,-3.628703099999939],[104.64181550000006,-3.624775499999942],[104.64601270000009,-3.600867699999981],[104.64919860000003,-3.594680099999948],[104.64868580000007,-3.578645499999936],[104.650915,-3.567254699999978],[104.66309960000007,-3.552949199999944],[104.66957340000005,-3.541630599999962],[104.67367090000005,-3.520261699999935],[104.67938490000006,-3.502197299999978],[104.67881720000008,-3.493307399999935],[104.69651350000004,-3.4855706],[104.70862280000006,-3.465271499999972],[104.73283570000007,-3.476057099999935],[104.73314770000007,-3.481704],[104.73911450000008,-3.4865415],[104.74205360000008,-3.485139],[104.74297550000006,-3.479698299999939],[104.75715410000004,-3.472721499999977],[104.757892,-3.468834899999933],[104.77436550000004,-3.460856299999932],[104.78385860000009,-3.465384099999937],[104.80252380000007,-3.465839099999926],[104.81406820000007,-3.457717499999944],[104.81475070000005,-3.452666499999964],[104.80462220000004,-3.4283198],[104.80902390000006,-3.4227519],[104.81036030000007,-3.417829],[104.80544410000005,-3.393433199999947],[104.80657040000006,-3.390522],[104.80558460000009,-3.387670299999968],[104.80817520000005,-3.386492699999962],[104.808615,-3.380018699999937],[104.81097110000007,-3.380026],[104.81152390000005,-3.373767399999963],[104.81398430000007,-3.367363],[104.81733970000005,-3.368549599999938],[104.81914580000006,-3.357657499999959],[104.817369,-3.352670699999976],[104.80969840000006,-3.351449799999955],[104.80710040000008,-3.346725599999957],[104.81111020000009,-3.33813],[104.81585870000004,-3.336280699999975],[104.817045,-3.329726499999936],[104.81177790000004,-3.3219034],[104.813135,-3.321581],[104.81562180000009,-3.312326399999961],[104.81230240000008,-3.306185299999925],[104.80384490000006,-3.3047739],[104.80187930000005,-3.299803499999939],[104.79819440000006,-3.2988281],[104.80149210000008,-3.296170599999925],[104.79962440000008,-3.289914599999975],[104.80489660000006,-3.279088899999977],[104.80358950000004,-3.276497],[104.79866180000005,-3.273904099999925],[104.79896580000008,-3.271848],[104.80783120000007,-3.266882799999962],[104.80795580000006,-3.2416365],[104.80561710000006,-3.237360799999976],[104.80485870000007,-3.2310909],[104.80724730000009,-3.229128499999945],[104.80430060000003,-3.225939299999936],[104.81244110000006,-3.225431599999979],[104.81614840000009,-3.217078699999945],[104.81314880000008,-3.206916699999965],[104.80702050000008,-3.2001497],[104.80363360000007,-3.191710399999977],[104.79908640000008,-3.187697799999967],[104.80039290000008,-3.183572799999979],[104.79606040000004,-3.180724899999973],[104.80241490000009,-3.175960799999928],[104.79928310000008,-3.1734847],[104.80156130000006,-3.169101699999942],[104.81004060000004,-3.167542099999935],[104.81571470000006,-3.163656799999956],[104.81431210000005,-3.158744299999967],[104.81807190000006,-3.155142699999942],[104.81777160000007,-3.152548],[104.80665920000007,-3.1534137],[104.81825520000007,-3.144103399999949],[104.81423310000008,-3.133026399999949],[104.80467390000007,-3.132942399999934],[104.79870060000007,-3.1353554],[104.79305970000007,-3.131050899999934],[104.79360680000008,-3.125591099999951],[104.79707190000005,-3.120789699999932],[104.79992130000005,-3.120497099999966],[104.79947030000005,-3.118993699999976],[104.80149930000005,-3.117488299999934],[104.80309880000004,-3.113134099999968],[104.80977710000008,-3.0824131],[104.80891820000005,-3.081171499999925],[104.79560780000008,-3.078176099999951],[104.78991460000009,-3.076518],[104.79225310000004,-3.077183799999943],[104.79343250000005,-3.073557599999958],[104.79415550000004,-3.062966599999925],[104.79429080000006,-3.060867199999961],[104.79938530000004,-3.054771699999947],[104.780745,-3.052094499999953]]]},"properties":{"shapeName":"Ogan Ilir","shapeISO":"","shapeID":"22746128B21685918416221","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[106.16451930000005,-3.296442099999979],[106.16177110000007,-3.297076499999946],[106.16172830000005,-3.298759599999926],[106.17158660000007,-3.308653399999969],[106.18223160000008,-3.315258899999947],[106.18879510000005,-3.316723699999955],[106.18873380000008,-3.311648399999967],[106.17846310000004,-3.301816599999938],[106.16832590000007,-3.296893499999953],[106.16451930000005,-3.296442099999979]]],[[[104.79415550000004,-3.062966599999925],[104.79343250000005,-3.073557599999958],[104.79225310000004,-3.077183799999943],[104.78991460000009,-3.076518],[104.79560780000008,-3.078176099999951],[104.80891820000005,-3.081171499999925],[104.80977710000008,-3.0824131],[104.80309880000004,-3.113134099999968],[104.80149930000005,-3.117488299999934],[104.79947030000005,-3.118993699999976],[104.79992130000005,-3.120497099999966],[104.79707190000005,-3.120789699999932],[104.79360680000008,-3.125591099999951],[104.79305970000007,-3.131050899999934],[104.79870060000007,-3.1353554],[104.80467390000007,-3.132942399999934],[104.81423310000008,-3.133026399999949],[104.81825520000007,-3.144103399999949],[104.80665920000007,-3.1534137],[104.81777160000007,-3.152548],[104.81807190000006,-3.155142699999942],[104.81431210000005,-3.158744299999967],[104.81571470000006,-3.163656799999956],[104.81004060000004,-3.167542099999935],[104.80156130000006,-3.169101699999942],[104.79928310000008,-3.1734847],[104.80241490000009,-3.175960799999928],[104.79606040000004,-3.180724899999973],[104.80039290000008,-3.183572799999979],[104.79908640000008,-3.187697799999967],[104.80363360000007,-3.191710399999977],[104.80702050000008,-3.2001497],[104.81314880000008,-3.206916699999965],[104.81614840000009,-3.217078699999945],[104.81244110000006,-3.225431599999979],[104.80430060000003,-3.225939299999936],[104.80724730000009,-3.229128499999945],[104.80485870000007,-3.2310909],[104.80561710000006,-3.237360799999976],[104.80795580000006,-3.2416365],[104.80783120000007,-3.266882799999962],[104.79896580000008,-3.271848],[104.79866180000005,-3.273904099999925],[104.80358950000004,-3.276497],[104.80489660000006,-3.279088899999977],[104.79962440000008,-3.289914599999975],[104.80149210000008,-3.296170599999925],[104.79819440000006,-3.2988281],[104.80187930000005,-3.299803499999939],[104.80384490000006,-3.3047739],[104.81230240000008,-3.306185299999925],[104.81562180000009,-3.312326399999961],[104.813135,-3.321581],[104.81177790000004,-3.3219034],[104.817045,-3.329726499999936],[104.81585870000004,-3.336280699999975],[104.81111020000009,-3.33813],[104.80710040000008,-3.346725599999957],[104.80969840000006,-3.351449799999955],[104.817369,-3.352670699999976],[104.81914580000006,-3.357657499999959],[104.81733970000005,-3.368549599999938],[104.81398430000007,-3.367363],[104.81152390000005,-3.373767399999963],[104.81097110000007,-3.380026],[104.808615,-3.380018699999937],[104.80817520000005,-3.386492699999962],[104.80558460000009,-3.387670299999968],[104.80657040000006,-3.390522],[104.80544410000005,-3.393433199999947],[104.81036030000007,-3.417829],[104.80902390000006,-3.4227519],[104.80462220000004,-3.4283198],[104.81475070000005,-3.452666499999964],[104.81406820000007,-3.457717499999944],[104.80252380000007,-3.465839099999926],[104.78385860000009,-3.465384099999937],[104.77436550000004,-3.460856299999932],[104.757892,-3.468834899999933],[104.75715410000004,-3.472721499999977],[104.74297550000006,-3.479698299999939],[104.74205360000008,-3.485139],[104.73911450000008,-3.4865415],[104.73314770000007,-3.481704],[104.73283570000007,-3.476057099999935],[104.70862280000006,-3.465271499999972],[104.69651350000004,-3.4855706],[104.67881720000008,-3.493307399999935],[104.67938490000006,-3.502197299999978],[104.67367090000005,-3.520261699999935],[104.66957340000005,-3.541630599999962],[104.66309960000007,-3.552949199999944],[104.650915,-3.567254699999978],[104.64868580000007,-3.578645499999936],[104.64919860000003,-3.594680099999948],[104.64601270000009,-3.600867699999981],[104.64181550000006,-3.624775499999942],[104.64310750000004,-3.628703099999939],[104.64220220000004,-3.644475799999952],[104.64322920000006,-3.644515899999931],[104.64194850000007,-3.647472299999947],[104.64360950000008,-3.653643799999941],[104.64263070000004,-3.655063],[104.64764960000008,-3.652451],[104.64850420000005,-3.656752799999936],[104.65278530000006,-3.657901599999946],[104.65649730000007,-3.654461799999979],[104.66156370000004,-3.658567699999935],[104.68109770000007,-3.6516058],[104.70462370000007,-3.649304799999925],[104.72130490000006,-3.653285599999947],[104.73324720000005,-3.659351499999957],[104.738934,-3.666365199999973],[104.73836530000005,-3.673568399999965],[104.74007130000007,-3.674895299999946],[104.77400250000005,-3.686079399999926],[104.77277030000005,-3.725033799999949],[104.78414390000006,-3.7329953],[104.80291030000006,-3.743042],[104.84783590000006,-3.773371499999939],[104.85413310000007,-3.776261199999965],[104.85753,-3.776358199999947],[104.86024750000007,-3.779949199999976],[104.86218860000008,-3.786451899999975],[104.86927360000004,-3.791110499999945],[104.86859420000008,-3.793439799999931],[104.87393220000007,-3.799457199999949],[104.87810550000006,-3.810618399999953],[104.87718350000006,-3.818722499999978],[104.87569740000004,-3.821165899999926],[104.87638910000004,-3.826612699999941],[104.87422770000006,-3.829725099999962],[104.874881,-3.833909899999981],[104.87278860000004,-3.838429499999961],[104.87414050000007,-3.842936699999939],[104.87379880000009,-3.853045299999962],[104.87517870000005,-3.856007899999952],[104.87281180000008,-3.858868599999937],[104.87389750000006,-3.861632099999952],[104.870443,-3.8663697],[104.86318290000008,-3.866647899999975],[104.859047,-3.872976299999948],[104.85779380000008,-3.879525499999943],[104.85908750000004,-3.882193699999959],[104.85480630000006,-3.888510099999962],[104.87360080000008,-3.907258499999955],[104.87139750000006,-3.914110899999969],[104.85217440000008,-3.936568199999954],[104.85162870000005,-3.940267199999937],[104.86129070000004,-3.956114699999944],[104.86145250000004,-3.958823299999949],[104.86913360000005,-3.9624213],[104.872026,-3.960071199999959],[104.874077,-3.960656099999937],[104.87484980000005,-3.960019699999975],[104.87344050000007,-3.958519499999966],[104.875492,-3.958766899999944],[104.87796250000008,-3.954810899999927],[104.87951690000006,-3.955353899999977],[104.88680590000007,-3.946972499999958],[104.89244290000005,-3.943699399999957],[104.89321580000006,-3.945199599999967],[104.89667070000007,-3.944881399999929],[104.90003480000007,-3.942108299999973],[104.90127420000005,-3.945124599999929],[104.903217,-3.945563299999947],[104.903944,-3.944356099999936],[104.90626290000006,-3.948018099999956],[104.90844260000006,-3.946110399999952],[104.91020460000004,-3.947258],[104.91212730000007,-3.9456087],[104.91551010000006,-3.946180699999957],[104.91908270000005,-3.9489273],[104.92493090000005,-3.945697299999949],[104.926129,-3.947381699999937],[104.92753720000007,-3.9462475],[104.93044780000008,-3.950018399999976],[104.92558350000007,-3.957337499999937],[104.92876570000004,-3.9616108],[104.924484,-3.9709931],[104.92640180000006,-3.975385299999971],[104.92090110000004,-3.978885699999978],[104.92149210000008,-3.981931499999973],[104.92035560000005,-3.982704399999932],[104.91981010000006,-3.988477799999941],[104.91621870000006,-3.992614699999933],[104.91771890000007,-3.994615],[104.91371840000005,-4.005161799999939],[104.90930870000005,-4.009480499999938],[104.90776310000007,-4.009162299999957],[104.90858140000006,-4.010707899999943],[104.90753580000006,-4.011844399999973],[104.89407950000003,-4.012617299999931],[104.89103370000004,-4.015935899999931],[104.88666950000004,-4.016526899999974],[104.88594210000008,-4.018254299999967],[104.88285080000009,-4.018390699999941],[104.88007770000007,-4.020891],[104.87534990000006,-4.021300199999928],[104.87125840000004,-4.024482399999954],[104.87116750000007,-4.027573699999948],[104.86898540000004,-4.030665],[104.86471210000008,-4.031937899999946],[104.86257550000005,-4.034347299999979],[104.86166630000008,-4.033619899999962],[104.86012060000007,-4.036211199999968],[104.85562010000007,-4.036529399999949],[104.85539280000006,-4.041939199999945],[104.85293790000009,-4.043303],[104.85361980000005,-4.046803399999931],[104.85025570000005,-4.049303799999961],[104.84834640000008,-4.054713499999934],[104.83287580000007,-4.06149],[104.827501,-4.0708958],[104.83198,-4.075822699999947],[104.83018840000005,-4.078062199999977],[104.83332370000005,-4.085228599999937],[104.83242790000008,-4.090603399999964],[104.83450390000007,-4.094080899999938],[104.833313,-4.093993099999977],[104.83455130000004,-4.096124499999974],[104.83410880000008,-4.0994515],[104.82350380000008,-4.108099799999934],[104.81566590000006,-4.107001],[104.80644980000005,-4.109863099999927],[104.80465820000006,-4.120164699999975],[104.79405890000004,-4.125414299999932],[104.795396,-4.126818599999979],[104.79186460000005,-4.1287712],[104.79179170000003,-4.132099499999981],[104.788692,-4.136222799999928],[104.79092490000005,-4.139841099999956],[104.79066860000006,-4.155360899999948],[104.78893850000009,-4.157675799999936],[104.78684870000006,-4.158037],[104.78533420000008,-4.162377799999945],[104.787746,-4.170735299999933],[104.77830480000006,-4.1743504],[104.774771,-4.183827699999938],[104.77199610000008,-4.185382499999946],[104.77019170000005,-4.195005],[104.76443820000009,-4.1944508],[104.758085,-4.214994299999944],[104.74773670000008,-4.223067899999933],[104.75046240000006,-4.226764699999933],[104.75538930000005,-4.226764699999933],[104.75576260000008,-4.245804499999963],[104.75832940000004,-4.246890599999972],[104.76049670000003,-4.245056399999953],[104.76443610000007,-4.245198799999969],[104.76867930000009,-4.249599599999954],[104.77433650000006,-4.251364399999943],[104.78666660000005,-4.259868899999958],[104.79062240000007,-4.264393699999971],[104.79281270000007,-4.264666899999952],[104.79558670000006,-4.260709799999972],[104.79488690000005,-4.254001499999958],[104.79622410000007,-4.250849099999925],[104.80395840000006,-4.250566],[104.80733350000008,-4.247313399999939],[104.81849350000005,-4.241379399999971],[104.82579320000008,-4.241867499999955],[104.82893430000007,-4.238916599999925],[104.836806,-4.238753599999939],[104.83747050000005,-4.237627099999941],[104.84857870000008,-4.238551799999925],[104.85219290000003,-4.240239199999962],[104.85338940000008,-4.239324099999976],[104.85549380000003,-4.240881199999933],[104.86107370000008,-4.2358998],[104.86280260000007,-4.231877399999973],[104.86653720000004,-4.2309246],[104.87442110000006,-4.233978099999945],[104.877827,-4.227000099999941],[104.87517650000007,-4.222563499999978],[104.87628190000004,-4.2176839],[104.88887490000008,-4.218129399999953],[104.89241010000006,-4.215911799999958],[104.89484110000006,-4.210145099999977],[104.89992240000004,-4.210589399999947],[104.90372350000007,-4.208927399999936],[104.90610930000008,-4.203270399999951],[104.91449870000008,-4.197474499999942],[104.919994,-4.198196199999927],[104.92143080000005,-4.195244799999955],[104.92562350000009,-4.194356399999947],[104.92726070000003,-4.191706799999963],[104.92829640000008,-4.192612499999939],[104.92923140000005,-4.192478499999936],[104.93438890000004,-4.192404599999975],[104.937048,-4.189729],[104.93794210000004,-4.191090599999939],[104.940575,-4.190187],[104.945877,-4.1921837],[104.94963340000004,-4.181537],[104.95316830000007,-4.178210099999944],[104.96195510000007,-4.1756491],[104.96730750000006,-4.171778299999971],[104.96970630000004,-4.173026599999957],[104.97847740000009,-4.171673699999928],[104.99144740000008,-4.176105799999959],[104.997046,-4.175266099999931],[105.00087170000006,-4.177178899999944],[105.00620070000008,-4.176135],[105.00619810000006,-4.174784],[105.00856990000005,-4.175317299999961],[105.00943280000007,-4.173477599999956],[105.01308520000003,-4.173730299999932],[105.01827350000008,-4.168661699999973],[105.01881820000006,-4.166417199999955],[105.02099060000006,-4.1657898],[105.02122290000005,-4.158211599999959],[105.02348910000006,-4.157161299999927],[105.02231140000004,-4.156246499999952],[105.02456670000004,-4.156281499999977],[105.02668530000005,-4.146973899999978],[105.02864480000005,-4.144034599999941],[105.03096230000006,-4.144105199999956],[105.03529310000005,-4.1401506],[105.04257120000005,-4.138506099999972],[105.04652520000008,-4.139625799999976],[105.04769560000005,-4.141682599999967],[105.04996310000007,-4.141271299999971],[105.05319460000004,-4.133279499999958],[105.05821470000006,-4.128238199999942],[105.06251150000008,-4.126566499999967],[105.06564520000006,-4.120248699999934],[105.06475090000004,-4.113579],[105.06338080000006,-4.112384399999939],[105.06391080000009,-4.109052799999972],[105.06212840000006,-4.106913199999951],[105.06379780000009,-4.102612199999953],[105.06207770000009,-4.098214199999973],[105.07811130000005,-4.085377599999958],[105.07738780000005,-4.084005599999955],[105.07877520000005,-4.083113799999978],[105.07943770000008,-4.078922099999943],[105.08352240000005,-4.072678799999949],[105.08235350000007,-4.070866299999977],[105.08339890000008,-4.068621699999937],[105.08591860000007,-4.065314699999931],[105.09119230000005,-4.064071899999931],[105.09097010000005,-4.052974199999937],[105.09517640000007,-4.046541299999944],[105.09846130000005,-4.044669599999963],[105.10312570000008,-4.044982299999958],[105.10925360000005,-4.047275399999933],[105.11148960000008,-4.0504734],[105.11575870000007,-4.051025399999958],[105.11992420000007,-4.048309299999971],[105.12257520000009,-4.039208799999926],[105.12100280000004,-4.034546299999931],[105.11285490000006,-4.027712399999928],[105.10887040000006,-4.029888599999936],[105.105168,-4.024637699999971],[105.10568570000004,-4.018085499999927],[105.10940370000009,-4.007793199999981],[105.11306670000005,-4.007248599999969],[105.113719,-4.0002504],[105.11615960000006,-3.997704099999964],[105.12051090000006,-3.997183899999925],[105.12721070000003,-4.000365899999963],[105.13560720000004,-3.987491199999965],[105.13403980000004,-3.977932599999974],[105.142235,-3.972619],[105.14289470000006,-3.953752699999939],[105.13692720000006,-3.951090299999976],[105.13519730000007,-3.944144299999948],[105.13935550000008,-3.934221299999933],[105.15040440000007,-3.929336299999932],[105.15372060000004,-3.936216299999955],[105.15637310000005,-3.938657299999932],[105.16495670000006,-3.937620199999969],[105.17233610000005,-3.926397399999928],[105.16984950000005,-3.916681099999948],[105.17930410000008,-3.904884299999935],[105.19272350000006,-3.898860399999933],[105.20532420000006,-3.890562099999954],[105.21734810000004,-3.893842699999936],[105.22609520000009,-3.889741899999933],[105.22975730000007,-3.889522599999964],[105.23410440000004,-3.893372499999941],[105.23591320000008,-3.902805299999955],[105.24061750000004,-3.906200799999965],[105.24373760000009,-3.906243399999937],[105.25360090000004,-3.901567],[105.26413920000005,-3.884767499999953],[105.27551080000006,-3.878809],[105.28496630000006,-3.857610099999931],[105.29147150000006,-3.849401499999942],[105.29245570000006,-3.845958699999926],[105.292181,-3.838468599999942],[105.28316310000008,-3.831472399999939],[105.28157620000007,-3.827373499999965],[105.28343760000007,-3.815533699999946],[105.28370860000007,-3.798128099999929],[105.288565,-3.793663199999969],[105.29717330000005,-3.796302399999945],[105.30238680000008,-3.794151799999952],[105.304533,-3.791624099999979],[105.30896190000004,-3.775552699999935],[105.30797770000004,-3.7591],[105.312624,-3.7525959],[105.31874660000005,-3.731933599999934],[105.32049750000004,-3.728927599999963],[105.324213,-3.7267952],[105.333233,-3.723822599999949],[105.33621060000007,-3.724704299999928],[105.342347,-3.730792],[105.35117630000008,-3.750134599999967],[105.35273820000003,-3.756176399999958],[105.35152370000009,-3.783088199999952],[105.35475810000008,-3.792766],[105.35873630000003,-3.797327499999938],[105.36589150000003,-3.798135299999956],[105.38405030000007,-3.782011299999965],[105.39023150000008,-3.779490899999928],[105.41278760000006,-3.777354399999979],[105.42099670000005,-3.778948299999968],[105.43273310000006,-3.783757199999968],[105.43617680000006,-3.787255499999958],[105.43349840000008,-3.810104199999955],[105.43005470000008,-3.819943299999977],[105.43005470000008,-3.823441699999933],[105.43235050000004,-3.826393399999972],[105.43676250000004,-3.828087499999981],[105.46593550000006,-3.828095499999961],[105.48020460000004,-3.821865099999968],[105.483384,-3.824295699999936],[105.48703270000004,-3.835938699999929],[105.49240320000007,-3.840858199999957],[105.50534630000004,-3.842386499999975],[105.51315780000004,-3.842009099999927],[105.52100010000004,-3.839269499999943],[105.52413440000004,-3.840489299999945],[105.52593830000006,-3.843236],[105.52634820000009,-3.848442599999942],[105.51232750000008,-3.872548399999971],[105.51359840000003,-3.877837],[105.52306850000008,-3.892595699999958],[105.52881080000009,-3.896915099999944],[105.53324570000007,-3.897803099999976],[105.53812070000004,-3.893346199999939],[105.54077730000006,-3.887109199999941],[105.54831220000005,-3.881759699999975],[105.55684,-3.892469399999925],[105.57226930000007,-3.899558899999931],[105.57354860000004,-3.901269599999978],[105.56229540000004,-3.926161499999978],[105.56297080000007,-3.928883599999949],[105.58028450000006,-3.938159399999961],[105.58692360000003,-3.939180499999964],[105.59585150000004,-3.927378399999952],[105.59968090000007,-3.926862799999981],[105.61137870000005,-3.940571899999952],[105.61176620000003,-3.945141499999977],[105.59076720000007,-3.948847199999932],[105.59012390000004,-3.953754],[105.59303430000006,-3.959410699999978],[105.608646,-3.966602599999931],[105.61224880000009,-3.969733699999949],[105.61504630000007,-3.982704399999932],[105.63070760000005,-4.005815699999971],[105.62878140000004,-4.010322499999972],[105.61287710000005,-4.02774],[105.60480010000003,-4.048143299999936],[105.60676340000003,-4.058316199999979],[105.61096360000005,-4.061712399999976],[105.61827540000007,-4.0612989],[105.62044080000004,-4.059801499999935],[105.62192780000004,-4.056537],[105.62251310000005,-4.045769099999973],[105.62543840000006,-4.043480699999975],[105.63099110000007,-4.044836099999941],[105.64020430000005,-4.051899499999934],[105.64440230000008,-4.052304099999958],[105.65184710000005,-4.049170699999934],[105.66051240000007,-4.048211899999956],[105.664851,-4.055143],[105.66444720000004,-4.058134799999948],[105.66133550000006,-4.061400699999979],[105.64806960000004,-4.066578499999935],[105.64704360000007,-4.0734848],[105.65097350000008,-4.086229299999957],[105.65431830000006,-4.091048799999953],[105.65865420000006,-4.094308599999977],[105.66312380000005,-4.095528699999932],[105.67151530000007,-4.090490599999953],[105.67502830000006,-4.081241499999976],[105.67728660000006,-4.078887599999973],[105.68423470000005,-4.079466],[105.68386630000003,-4.096045599999968],[105.68713760000009,-4.101287199999945],[105.68984830000005,-4.1041131],[105.70024840000008,-4.104430399999956],[105.70859150000007,-4.106272199999978],[105.71103320000009,-4.108348799999931],[105.70901070000008,-4.114029399999936],[105.69922630000008,-4.122993899999926],[105.697969,-4.125727],[105.69742240000005,-4.129717399999947],[105.70201290000006,-4.139999299999943],[105.70819090000003,-4.1431483],[105.72941690000005,-4.134535599999936],[105.73451170000004,-4.137903],[105.74145320000008,-4.146489899999949],[105.74687290000008,-4.149639299999933],[105.75299090000004,-4.147124899999937],[105.76593060000005,-4.139722399999926],[105.771989,-4.131123099999968],[105.77024490000008,-4.119920899999954],[105.77673760000005,-4.112517799999978],[105.78075140000004,-4.118170199999952],[105.78985460000007,-4.121642],[105.80827280000005,-4.123472699999979],[105.81856880000004,-4.141611299999965],[105.82401650000008,-4.157938099999967],[105.83616290000003,-4.170108099999936],[105.84764150000007,-4.165309699999966],[105.85099150000008,-4.157474299999933],[105.85174050000006,-4.148771599999975],[105.847159,-4.1190811],[105.86440830000004,-4.041071599999952],[105.87174950000008,-4.0181124],[105.87217640000006,-4.012129399999935],[105.87758020000007,-4.000919899999928],[105.88492240000005,-3.9793748],[105.88849570000008,-3.978500699999927],[105.89314160000004,-3.967835899999955],[105.925582,-3.920919099999935],[105.93751840000004,-3.897734399999933],[105.94315510000007,-3.885638099999937],[105.942435,-3.8832651],[105.94340980000004,-3.883372799999961],[105.94459550000005,-3.878368],[105.954321,-3.859539499999926],[105.960363,-3.839518699999928],[105.96045290000006,-3.823094],[105.956112,-3.814614699999936],[105.92499150000003,-3.775055499999951],[105.91318090000004,-3.767671399999927],[105.90689390000006,-3.761260399999969],[105.88002310000007,-3.744427899999948],[105.86507380000006,-3.7378076],[105.853577,-3.744241],[105.85031780000008,-3.749311699999964],[105.84645110000008,-3.744893],[105.83860020000009,-3.725042299999927],[105.82958710000008,-3.711800799999935],[105.82374560000005,-3.692726099999959],[105.81990580000007,-3.639017199999955],[105.83363830000008,-3.567636499999935],[105.84166840000006,-3.548060599999928],[105.84794270000003,-3.5236324],[105.89079220000008,-3.424555399999974],[105.89972820000008,-3.424806599999954],[105.93241720000009,-3.378189],[105.935046,-3.367711099999951],[105.93899920000007,-3.3624696],[105.93307210000006,-3.360770299999956],[105.94546130000003,-3.356129599999974],[105.954377,-3.342182199999968],[105.95608950000008,-3.336438499999929],[105.96153370000007,-3.338493299999925],[105.985512,-3.315843399999949],[105.98732340000004,-3.311458399999935],[105.99316060000007,-3.312004799999954],[106.03786430000008,-3.278568899999925],[106.05624740000007,-3.275866399999927],[106.06734450000005,-3.271191],[106.06687350000004,-3.265444599999967],[106.07651490000006,-3.264343599999961],[106.08761280000004,-3.256056399999977],[106.09612680000004,-3.240811599999972],[106.098096,-3.228221399999939],[106.08931730000006,-3.191676199999961],[106.06913430000009,-3.137347099999943],[106.06409740000004,-3.131891799999948],[106.06012710000005,-3.118802099999925],[106.06724380000009,-3.114802399999974],[106.06275730000004,-3.110943199999952],[106.06142130000006,-3.093922699999951],[106.07063590000007,-3.075582199999928],[106.07062550000006,-3.065107299999966],[106.06002270000005,-3.012742799999955],[106.05131530000006,-2.987094199999945],[105.99902410000004,-2.967778199999941],[105.98876410000008,-2.970909199999937],[105.97892020000006,-2.953173799999945],[105.96336920000005,-2.952985899999931],[105.95974090000004,-2.961769],[105.94591760000009,-2.961934],[105.95183320000007,-2.968322899999976],[105.92809210000007,-2.967033799999967],[105.90171950000007,-2.973602899999946],[105.88061170000009,-2.967072799999926],[105.85118340000008,-2.941488199999981],[105.83178360000005,-2.929136299999925],[105.81063760000006,-2.898762499999975],[105.80405270000006,-2.880706099999941],[105.79818790000007,-2.876898],[105.80271470000008,-2.853208099999961],[105.80138680000005,-2.840114299999925],[105.80269660000005,-2.827018599999974],[105.80005280000006,-2.817854099999977],[105.806626,-2.787731599999972],[105.80661,-2.764161],[105.80396290000004,-2.7497586],[105.80262250000004,-2.717022499999928],[105.79674550000004,-2.692214699999965],[105.78692090000004,-2.689621599999953],[105.78588630000007,-2.685126599999933],[105.78262750000005,-2.681308299999955],[105.77085050000005,-2.6824685],[105.74972870000005,-2.689418799999942],[105.70113180000004,-2.685095599999954],[105.68893250000008,-2.6820841],[105.67772040000006,-2.675582299999974],[105.67211320000007,-2.673855599999968],[105.66736820000006,-2.669522399999948],[105.65744930000005,-2.664758399999926],[105.64062520000004,-2.646557099999939],[105.63286180000006,-2.640924599999948],[105.62034780000005,-2.6188183],[105.61559880000004,-2.605379699999958],[105.61257940000007,-2.602346099999977],[105.60869530000008,-2.594109899999978],[105.60432690000005,-2.557607699999949],[105.60461370000007,-2.540947899999935],[105.60343430000006,-2.5385685],[105.60666280000004,-2.51328],[105.61133730000006,-2.499112299999979],[105.612328,-2.490615599999956],[105.61753790000006,-2.476100699999961],[105.62607980000007,-2.462696899999969],[105.62784310000006,-2.454068799999959],[105.63166810000007,-2.445439699999952],[105.63372470000007,-2.434133899999949],[105.63242990000003,-2.426265299999955],[105.63328520000005,-2.417584599999941],[105.631562,-2.408037099999945],[105.62601870000009,-2.395180899999957],[105.61922740000006,-2.388841099999979],[105.61688910000004,-2.388414799999964],[105.61429260000006,-2.389622599999939],[105.61200440000005,-2.394206899999972],[105.60204840000006,-2.403210399999978],[105.59190490000009,-2.409490799999958],[105.57415680000008,-2.417358],[105.56945220000006,-2.418315199999938],[105.56368960000003,-2.416964299999961],[105.55767430000009,-2.413183699999934],[105.53273130000008,-2.417777199999932],[105.52067570000008,-2.426940299999956],[105.49533550000007,-2.439652699999954],[105.49434870000005,-2.4434153],[105.49532720000008,-2.447906099999955],[105.49415910000005,-2.450051599999938],[105.48748570000004,-2.448814],[105.48419690000009,-2.445781899999929],[105.48028630000005,-2.447258099999942],[105.47712830000006,-2.450812],[105.47003770000003,-2.4550963],[105.47044510000006,-2.458674],[105.47297930000008,-2.461874],[105.47025830000007,-2.462846899999931],[105.45919930000008,-2.458099799999957],[105.45185960000003,-2.459669199999951],[105.44891590000009,-2.454466699999955],[105.44411980000007,-2.450496599999951],[105.439389,-2.449601599999937],[105.43239270000004,-2.450601],[105.42848740000005,-2.447384599999964],[105.42485160000007,-2.448366199999953],[105.42187620000004,-2.451802599999951],[105.41678250000007,-2.448067099999946],[105.41522760000004,-2.448536799999943],[105.40020040000007,-2.456443],[105.39257360000005,-2.448728],[105.38573660000009,-2.4505483],[105.37995860000007,-2.445530799999972],[105.37369670000004,-2.443999099999928],[105.36749960000009,-2.445476199999973],[105.36077250000005,-2.452088699999933],[105.35209410000004,-2.444558],[105.34294710000006,-2.447560199999941],[105.33643110000008,-2.447921199999939],[105.33469960000008,-2.450077199999953],[105.33469960000008,-2.460628199999974],[105.33349960000004,-2.462588199999971],[105.32319960000007,-2.468350199999975],[105.31079960000005,-2.484374199999934],[105.31449960000003,-2.495388199999979],[105.31319960000008,-2.498270199999979],[105.30289960000005,-2.503571199999953],[105.29896410000003,-2.508254099999931],[105.289614,-2.508130599999959],[105.28559960000007,-2.510138199999972],[105.279909,-2.518732599999964],[105.27219960000008,-2.526220199999955],[105.27060630000005,-2.536674799999957],[105.26229960000006,-2.5436482],[105.25863520000007,-2.549296599999934],[105.25174830000009,-2.554057499999942],[105.24733680000008,-2.5547887],[105.24088210000008,-2.566448699999967],[105.22950390000005,-2.581922199999951],[105.22836180000007,-2.587066099999959],[105.21837270000009,-2.586722299999963],[105.20366580000007,-2.583254799999963],[105.20129960000008,-2.590483199999937],[105.20339960000007,-2.5949812],[105.21189960000004,-2.6046702],[105.21249960000006,-2.608476199999927],[105.20929960000007,-2.618737199999941],[105.20953750000007,-2.6254218],[105.20647050000008,-2.627644499999974],[105.20586710000003,-2.632503699999972],[105.20429960000007,-2.634418199999971],[105.19799960000006,-2.636030199999936],[105.18499960000008,-2.633662199999947],[105.17979960000008,-2.636082199999976],[105.17559960000006,-2.641615199999933],[105.17459950000006,-2.645478199999957],[105.17609970000007,-2.649457199999972],[105.18129960000005,-2.652976199999955],[105.19639960000006,-2.655057199999931],[105.21590380000004,-2.685411099999953],[105.21739960000008,-2.710933199999943],[105.21280890000008,-2.723223299999972],[105.20794850000004,-2.729771899999946],[105.19299960000006,-2.732330199999979],[105.17689960000007,-2.732990199999961],[105.14379960000008,-2.7254852],[105.13229960000007,-2.720751199999938],[105.11899960000005,-2.718068199999948],[105.11499960000003,-2.718823],[105.09652330000006,-2.711466499999972],[105.08985260000009,-2.717472399999963],[105.08780250000007,-2.721458899999959],[105.08752960000004,-2.727507],[105.08795050000003,-2.735285099999942],[105.08999960000006,-2.736817199999962],[105.09099960000003,-2.741611199999966],[105.09059960000008,-2.745795199999975],[105.08729960000005,-2.755680199999972],[105.07689960000005,-2.767457199999967],[105.07499960000007,-2.771563199999946],[105.07819960000006,-2.772784199999933],[105.08139960000005,-2.787701199999958],[105.07999960000006,-2.799871199999927],[105.07799960000006,-2.805422199999953],[105.08089960000007,-2.808393199999955],[105.09059960000008,-2.8417312],[105.07179960000008,-2.874264199999971],[105.06919960000005,-2.880956199999957],[105.06709960000006,-2.903320199999939],[105.06786140000008,-2.907519099999945],[105.09375490000008,-2.915071299999966],[105.09597470000006,-2.931754599999977],[105.09236570000007,-2.9419344],[105.078301,-2.941027],[105.07215560000009,-2.943350699999939],[105.06929960000008,-2.950623199999939],[105.06462090000008,-2.949859499999945],[105.06163180000004,-2.953987899999959],[105.04724020000003,-2.954256199999975],[105.03919960000007,-2.963841199999933],[105.01929960000007,-2.964985199999944],[105.00976840000004,-2.971137399999975],[105.03547750000007,-2.982072199999948],[105.026952,-2.996358399999963],[105.023298,-2.996766699999966],[105.02614010000008,-2.999215599999957],[105.02695220000004,-3.004521799999964],[105.02126820000007,-3.004930099999967],[105.01957630000004,-3.007339799999954],[105.04140670000004,-3.012834399999974],[105.03341790000007,-3.049102799999957],[105.03125690000007,-3.1047203],[105.02857460000007,-3.112585],[105.01629320000006,-3.124516899999946],[105.00296550000007,-3.127906899999971],[104.99954570000006,-3.131632],[105.00135770000009,-3.137343199999975],[105.00163210000005,-3.145131499999934],[104.99958840000005,-3.146337899999935],[104.98899190000009,-3.144915599999933],[104.97992190000008,-3.146796699999925],[104.98109960000005,-3.157324199999948],[104.97909960000004,-3.158608199999946],[104.97560560000005,-3.158077899999967],[104.96719280000008,-3.165994699999942],[104.96024690000007,-3.169405299999937],[104.94290610000007,-3.171939899999927],[104.93017180000004,-3.1697622],[104.91993180000009,-3.160658799999965],[104.91512810000006,-3.161525099999949],[104.89849370000007,-3.155722299999979],[104.90329960000008,-3.146610199999941],[104.90469960000007,-3.137047199999927],[104.90789960000006,-3.130139199999974],[104.90539960000007,-3.127368199999978],[104.89439960000004,-3.125212199999964],[104.88869960000005,-3.122145199999977],[104.88339960000008,-3.1027142],[104.87929960000008,-3.099132199999929],[104.87249960000008,-3.097043199999973],[104.85919960000007,-3.101221199999941],[104.85459960000009,-3.101384199999927],[104.83309960000008,-3.086643199999969],[104.83329960000003,-3.084890199999961],[104.82839960000007,-3.077758199999948],[104.82819960000006,-3.068653199999972],[104.80559960000005,-3.0635341],[104.79415550000004,-3.062966599999925]]]]},"properties":{"shapeName":"Ogan Komering Ilir","shapeISO":"","shapeID":"22746128B21972920006562","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.62157080000009,-4.305928299999948],[103.62713180000009,-4.306722799999932],[103.63697480000008,-4.287464799999952],[103.69899420000007,-4.285308399999963],[103.71727370000008,-4.264098699999977],[103.74429810000004,-4.241203],[103.76006240000004,-4.230318199999942],[103.77244860000008,-4.223562099999981],[103.79084020000005,-4.216430599999967],[103.79909770000006,-4.210049799999979],[103.83550570000006,-4.261846699999978],[103.84188640000008,-4.277610899999956],[103.84601520000007,-4.291498499999932],[103.85352190000003,-4.360561],[103.85105260000006,-4.376820199999941],[103.86431880000004,-4.379515599999934],[103.88139850000005,-4.379495499999962],[103.89026610000008,-4.382356],[103.89882860000006,-4.381785099999945],[103.90342440000006,-4.383214099999975],[103.90771520000004,-4.3975166],[103.92573640000006,-4.421544899999958],[103.95234780000004,-4.444162699999936],[103.96046330000007,-4.4571474],[103.97136110000008,-4.465958399999977],[103.97994030000007,-4.464567199999976],[103.98604920000008,-4.461014299999931],[103.99584690000006,-4.450185199999964],[104.00150420000006,-4.447177],[104.01374270000008,-4.445594799999981],[104.02711,-4.455363299999931],[104.04510450000004,-4.458448],[104.063099,-4.446109],[104.09857380000005,-4.437368799999945],[104.10887480000008,-4.4255388],[104.15870810000007,-4.402795399999945],[104.21923440000006,-4.352752399999929],[104.21912230000004,-4.346273599999961],[104.22067710000005,-4.345496299999979],[104.21907690000006,-4.330006399999945],[104.22015880000004,-4.330467099999964],[104.22223180000009,-4.3276168],[104.22171360000004,-4.325284699999941],[104.22326830000009,-4.322693399999935],[104.22249090000008,-4.320620399999939],[104.21964060000005,-4.319065699999953],[104.22534130000008,-4.3136241],[104.22442860000007,-4.309747199999947],[104.22560040000008,-4.310514599999976],[104.22585950000007,-4.308959899999934],[104.22326830000009,-4.303000099999963],[104.22444720000004,-4.29941],[104.22145440000008,-4.295744599999978],[104.22223180000009,-4.294967199999974],[104.22536850000006,-4.297384299999976],[104.22560040000008,-4.291598599999929],[104.22709530000009,-4.2891489],[104.22470440000006,-4.288219099999935],[104.226564,-4.287820699999941],[104.22845080000008,-4.283306699999969],[104.22741430000008,-4.280974599999979],[104.22975180000009,-4.281179299999962],[104.22926770000004,-4.278648199999964],[104.23214270000005,-4.280647899999963],[104.23108010000004,-4.278257],[104.232674,-4.274006499999928],[104.22912230000009,-4.266976599999964],[104.22736090000006,-4.266169699999978],[104.22819970000006,-4.264463299999932],[104.229193,-4.26496],[104.22770310000004,-4.262145699999962],[104.22654430000006,-4.255193],[104.22770310000004,-4.253703099999939],[104.22604770000004,-4.247578],[104.22827880000006,-4.244666399999971],[104.22803420000008,-4.240459699999974],[104.22455780000007,-4.237645399999963],[104.22536110000004,-4.235603499999968],[104.23185430000007,-4.235821099999953],[104.23560740000005,-4.241420099999971],[104.24127760000005,-4.246253699999954],[104.24640940000006,-4.246584699999971],[104.25331590000008,-4.244195499999933],[104.25865960000004,-4.239963],[104.27355840000007,-4.241618499999959],[104.28034560000003,-4.240294099999971],[104.28216660000004,-4.2391353],[104.28398760000005,-4.230858199999943],[104.28332540000008,-4.218608],[104.28662210000005,-4.212472],[104.29027820000005,-4.211655299999961],[104.29358910000008,-4.208841],[104.29425120000008,-4.204702499999939],[104.29623770000006,-4.205695699999978],[104.29574110000004,-4.204040299999974],[104.30206830000009,-4.199760499999968],[104.30815680000006,-4.199570699999981],[104.31262640000006,-4.200729499999966],[104.314944,-4.202881499999933],[104.31742720000005,-4.199901699999941],[104.32586990000004,-4.197915199999954],[104.32686310000008,-4.196590899999933],[104.32603050000006,-4.190961199999947],[104.32934620000003,-4.188313799999946],[104.33331930000008,-4.17954],[104.33563690000005,-4.1785467],[104.33083610000006,-4.172752799999955],[104.32802190000007,-4.160006],[104.32702870000008,-4.157522799999981],[104.32570430000004,-4.157688399999927],[104.32603540000008,-4.154708599999935],[104.32438,-4.155039699999975],[104.32438,-4.151066699999944],[104.325885,-4.151230099999964],[104.32481930000006,-4.149957499999971],[104.32741210000006,-4.147173699999939],[104.32583730000005,-4.1452013],[104.32728490000005,-4.141654],[104.324517,-4.139904199999933],[104.32264,-4.135370699999953],[104.32489130000005,-4.132286599999929],[104.32328590000009,-4.131915499999934],[104.32109010000005,-4.125686299999927],[104.31629330000004,-4.123949499999981],[104.31401890000006,-4.113652899999977],[104.31683080000005,-4.108111699999938],[104.31575570000007,-4.103397599999937],[104.32022170000005,-4.096864],[104.315094,-4.091570899999965],[104.31410160000007,-4.087518399999965],[104.30856040000003,-4.083714],[104.30822960000006,-4.076518799999974],[104.31095890000006,-4.074451199999942],[104.31405630000006,-4.074829799999975],[104.31501130000004,-4.072383599999966],[104.31833730000005,-4.072392799999932],[104.32749960000007,-4.064113199999952],[104.33221380000003,-4.062045599999976],[104.334943,-4.056173599999966],[104.33907820000007,-4.054685],[104.34337880000004,-4.047655099999929],[104.34300660000008,-4.039839599999937],[104.34829970000004,-4.029667],[104.34962290000004,-4.022968],[104.35119430000009,-4.022306399999934],[104.35028460000007,-4.018915499999935],[104.35163680000005,-4.013652399999955],[104.35450250000008,-4.012878199999932],[104.35665280000006,-4.009073799999953],[104.36533670000006,-4.008081299999958],[104.36518940000008,-4.009044499999959],[104.37029890000008,-4.009487299999932],[104.37435140000008,-4.011803],[104.37592280000007,-4.010066199999926],[104.37881740000006,-4.011803],[104.38401790000006,-4.007204699999932],[104.38808020000005,-4.005682899999954],[104.39502740000006,-4.004194199999972],[104.39643330000007,-4.005848299999968],[104.398749,-4.005021299999953],[104.40179150000006,-4.0006682],[104.40433740000009,-4.000159],[104.40255530000007,-3.985647299999926],[104.404592,-3.982083],[104.41305320000004,-3.978013899999951],[104.41803540000006,-3.977351699999929],[104.42384670000007,-3.979325499999959],[104.43001960000004,-3.979105],[104.43728620000007,-3.972455099999934],[104.44199620000006,-3.963287],[104.44724640000004,-3.959051299999942],[104.44949910000008,-3.959111299999961],[104.45374410000005,-3.956250299999965],[104.45425050000006,-3.953718299999935],[104.45685510000004,-3.954065],[104.45830170000005,-3.952705499999979],[104.46108690000005,-3.954731099999947],[104.46404290000004,-3.952043899999978],[104.47738440000006,-3.953561199999967],[104.48284690000008,-3.950653599999953],[104.48590090000005,-3.944806299999925],[104.49143840000005,-3.945003499999927],[104.50516960000004,-3.935388199999977],[104.51232020000003,-3.920963699999959],[104.50911140000005,-3.883769499999971],[104.51038160000007,-3.878523299999927],[104.50890210000006,-3.871281],[104.52293910000009,-3.855500699999936],[104.53103050000004,-3.851966899999979],[104.53689220000007,-3.843492099999935],[104.54328930000008,-3.839432299999942],[104.55783130000003,-3.824938299999928],[104.55567570000005,-3.805243399999938],[104.55160260000008,-3.800983899999949],[104.53779590000005,-3.795443599999942],[104.51372140000007,-3.791554799999972],[104.50558940000008,-3.786417599999936],[104.49953490000007,-3.786566599999958],[104.49639380000008,-3.770337599999948],[104.48977280000008,-3.773575799999946],[104.48609620000008,-3.771413699999925],[104.48524950000007,-3.768059799999946],[104.47263360000005,-3.7651535],[104.46482780000008,-3.761170099999958],[104.45911640000008,-3.760370599999931],[104.464101,-3.775516399999958],[104.45246070000007,-3.770458599999927],[104.44242560000004,-3.774087],[104.43677410000004,-3.773521899999935],[104.41039790000008,-3.784745],[104.40648440000007,-3.783923699999946],[104.37962230000005,-3.769341299999951],[104.38080010000004,-3.763382499999977],[104.374408,-3.763703199999952],[104.37264580000004,-3.764708599999949],[104.36998210000007,-3.7634399],[104.36024590000005,-3.768890499999941],[104.35427130000005,-3.766784399999949],[104.346724,-3.767578699999945],[104.33470060000008,-3.760330599999975],[104.32213820000004,-3.766832099999931],[104.31892070000004,-3.771492899999942],[104.31041550000003,-3.771738599999935],[104.30672640000006,-3.7735079],[104.30246790000007,-3.771513699999957],[104.28811740000003,-3.755069099999957],[104.27631160000004,-3.766081],[104.25613510000005,-3.778163399999926],[104.24769740000005,-3.779924199999925],[104.237823,-3.784193799999969],[104.23670460000005,-3.785575399999971],[104.23572340000004,-3.799652099999946],[104.22919050000007,-3.804951499999959],[104.22058760000004,-3.816946499999972],[104.21455210000005,-3.819025299999964],[104.21021630000007,-3.825080199999945],[104.20999750000004,-3.8437783],[104.20824,-3.8460577],[104.202615,-3.8475608],[104.19899670000007,-3.845381199999963],[104.19337260000003,-3.847436099999925],[104.18887350000006,-3.851812299999949],[104.18668640000004,-3.857059],[104.17923920000004,-3.863279199999965],[104.15654160000008,-3.874672099999941],[104.14715640000009,-3.884988199999952],[104.13723240000007,-3.8878305],[104.12291480000005,-3.895594299999971],[104.12265130000009,-3.892433199999971],[104.10569020000008,-3.898785299999929],[104.08828710000006,-3.895323899999937],[104.08469670000005,-3.8961795],[104.082484,-3.900183899999945],[104.07389270000004,-3.906864299999938],[104.06274780000007,-3.904601699999944],[104.05314210000006,-3.906384699999933],[104.04710140000009,-3.905702299999973],[104.04554980000006,-3.908325899999966],[104.04198410000004,-3.910331099999951],[104.03875630000005,-3.909001299999943],[104.03310780000004,-3.910457099999974],[104.02688180000007,-3.908188],[104.02311550000007,-3.913780899999949],[104.01510780000007,-3.913353699999959],[103.99473370000004,-3.919725199999959],[103.97119890000005,-3.8924093],[103.96561150000008,-3.888552299999958],[103.95768070000008,-3.893597799999952],[103.94007170000003,-3.897619199999951],[103.931535,-3.911081699999954],[103.92783380000009,-3.914512299999956],[103.90897030000008,-3.921523799999932],[103.89298390000005,-3.924783399999967],[103.89189150000004,-3.928923899999972],[103.89442290000005,-3.939982399999963],[103.89050190000006,-3.950265899999977],[103.89206410000008,-3.955047499999978],[103.89170850000005,-3.9628206],[103.88784860000004,-3.967676799999936],[103.87611960000004,-3.973185],[103.87500550000004,-3.978360199999941],[103.86884160000005,-3.988461799999925],[103.86397360000007,-3.992307],[103.85503260000007,-3.995719299999962],[103.84889270000008,-4.006970299999978],[103.84292080000006,-4.006470199999967],[103.83508340000009,-4.014411299999949],[103.82874790000005,-4.015866099999926],[103.82013660000007,-4.027165],[103.81446780000005,-4.031401499999959],[103.80001190000007,-4.034312199999931],[103.79246730000006,-4.038918],[103.78867830000007,-4.046325899999943],[103.77073360000009,-4.068562399999962],[103.772971,-4.069705],[103.77072010000006,-4.068575199999941],[103.750054,-4.082691499999953],[103.74669250000005,-4.084326899999951],[103.73646630000007,-4.085301],[103.70486940000006,-4.085279899999932],[103.70371330000006,-4.116875399999969],[103.70595660000004,-4.1832591],[103.69074060000008,-4.184051899999929],[103.66644920000005,-4.193634299999928],[103.64805560000008,-4.197578499999963],[103.64648020000004,-4.201120599999967],[103.64744710000008,-4.203937099999962],[103.64198490000007,-4.209962599999926],[103.63342340000008,-4.212934699999948],[103.62190250000003,-4.213983399999961],[103.61664360000003,-4.224907599999938],[103.61692530000005,-4.241729799999973],[103.618344,-4.247680299999956],[103.62729670000004,-4.264444599999933],[103.62483270000007,-4.291265599999974],[103.62157080000009,-4.305928299999948]]]},"properties":{"shapeName":"Ogan Komering Ulu","shapeISO":"","shapeID":"22746128B159139172718","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.94721640000006,-4.897805199999937],[103.95980540000005,-4.910860899999932],[104.01060990000008,-4.9065955],[104.01380720000009,-4.907886699999949],[104.01886360000009,-4.9054137],[104.0473,-4.900861],[104.05136930000003,-4.8938075],[104.05760890000005,-4.890009499999962],[104.06520490000008,-4.892722399999968],[104.07063070000004,-4.907100499999956],[104.08853560000006,-4.916595599999937],[104.10752560000009,-4.9231065],[104.12217510000005,-4.923920299999963],[104.135147,-4.922064899999953],[104.14062590000003,-4.922938399999964],[104.14432980000004,-4.925351699999965],[104.14637770000007,-4.924202799999932],[104.15212180000003,-4.925301699999977],[104.16269990000006,-4.9220115],[104.16498480000007,-4.917146099999968],[104.17424250000005,-4.9081029],[104.18656820000007,-4.891609599999981],[104.19443360000008,-4.862030399999981],[104.202764,-4.862357],[104.21506130000006,-4.858485799999926],[104.21726360000008,-4.858976799999937],[104.22944520000004,-4.867349199999978],[104.23984160000003,-4.879587099999981],[104.244118,-4.881654399999945],[104.25505110000006,-4.880201199999931],[104.26369340000008,-4.876791399999945],[104.26802750000007,-4.877393199999972],[104.27189270000008,-4.8753982],[104.27854450000007,-4.869154699999967],[104.27833360000005,-4.863202199999932],[104.28079670000005,-4.857126],[104.28661660000006,-4.855688899999961],[104.29339460000006,-4.860002699999939],[104.29183570000004,-4.863121899999953],[104.29326070000008,-4.868990499999938],[104.29904350000004,-4.872991199999944],[104.30289450000004,-4.879798499999936],[104.31303330000009,-4.883928499999968],[104.33345220000007,-4.872206199999937],[104.34051460000006,-4.8647629],[104.35906330000006,-4.844155399999977],[104.35960330000006,-4.837998899999945],[104.37169270000004,-4.817907599999955],[104.368439,-4.821221899999955],[104.36283930000008,-4.823819399999934],[104.35808880000008,-4.824204299999963],[104.35320620000005,-4.822487299999977],[104.34821590000007,-4.823620499999947],[104.33991280000004,-4.821336599999938],[104.33597460000004,-4.815912699999956],[104.32877860000008,-4.812325599999951],[104.32662170000003,-4.807330599999943],[104.32843970000005,-4.802012],[104.32680640000007,-4.801368199999956],[104.32547430000005,-4.798019899999929],[104.32324710000006,-4.797934599999962],[104.32372050000004,-4.796277799999928],[104.31824480000006,-4.789774499999965],[104.31865820000007,-4.787932099999978],[104.31426930000003,-4.785620599999959],[104.31544720000005,-4.784453],[104.31228260000006,-4.778993799999967],[104.31367220000004,-4.7769151],[104.31339730000008,-4.7733453],[104.30473740000008,-4.766231199999936],[104.30822660000007,-4.760415699999953],[104.30655480000007,-4.755737099999976],[104.30758990000004,-4.754295],[104.30674630000004,-4.748592699999961],[104.30826520000005,-4.7473017],[104.305875,-4.744961899999964],[104.30472430000003,-4.740927399999975],[104.30607820000006,-4.738358099999971],[104.30468890000009,-4.736166599999933],[104.30648960000008,-4.733567499999936],[104.30505290000008,-4.732183199999952],[104.30644390000003,-4.729664099999979],[104.29565410000004,-4.716126599999939],[104.29482180000008,-4.712603599999966],[104.29566360000007,-4.706734099999949],[104.30385630000006,-4.705400599999962],[104.30720140000005,-4.703726699999947],[104.30787390000006,-4.699869799999931],[104.31573230000004,-4.698368],[104.315733,-4.691875399999958],[104.307997,-4.696031599999969],[104.30221320000004,-4.702130499999953],[104.295407,-4.704790899999978],[104.28974480000005,-4.702638799999932],[104.28942820000009,-4.699480599999958],[104.28791970000003,-4.698391],[104.28897760000007,-4.694455399999981],[104.28811470000005,-4.693028499999969],[104.29046050000005,-4.691636099999926],[104.28775390000004,-4.686770099999933],[104.29032640000008,-4.686344599999927],[104.28952760000004,-4.684051899999929],[104.28728310000008,-4.683137399999964],[104.28990270000008,-4.681285899999978],[104.290898,-4.676574399999936],[104.29236120000007,-4.676931699999955],[104.29182850000007,-4.672045599999933],[104.29429690000006,-4.667688299999952],[104.29623330000004,-4.666997599999945],[104.29686560000005,-4.662941599999954],[104.29533580000003,-4.658084899999949],[104.293088,-4.657818299999974],[104.29646350000007,-4.654567699999973],[104.29648040000006,-4.648293299999978],[104.29515380000004,-4.646279299999946],[104.29831450000006,-4.645597499999951],[104.29810780000008,-4.643548499999952],[104.30053380000004,-4.643959],[104.30216050000007,-4.638688399999978],[104.31218240000004,-4.636233299999958],[104.31376620000003,-4.633770199999958],[104.31306830000005,-4.631865499999947],[104.31505720000007,-4.631572],[104.31686420000005,-4.625514],[104.31921890000007,-4.62848],[104.32429530000007,-4.627317199999936],[104.32556710000006,-4.619120899999928],[104.32721230000004,-4.617625299999929],[104.32680680000004,-4.614787],[104.33015190000003,-4.614077499999951],[104.33429320000005,-4.605448199999955],[104.33444020000007,-4.59064],[104.32598610000008,-4.557686299999943],[104.32561890000005,-4.5606234],[104.32326790000008,-4.562582599999928],[104.32268010000007,-4.559643799999947],[104.32170050000008,-4.5606234],[104.31895770000006,-4.558664199999953],[104.31778210000004,-4.558860099999947],[104.31797810000006,-4.560819299999935],[104.30955350000005,-4.563366299999927],[104.31112090000005,-4.5614071],[104.30132490000005,-4.561015199999929],[104.29246750000004,-4.553443499999958],[104.28486760000004,-4.555137599999966],[104.27943940000006,-4.551968399999964],[104.27683490000004,-4.548280499999976],[104.27683490000004,-4.544753899999932],[104.271545,-4.541227299999946],[104.26799260000007,-4.541313],[104.26468790000007,-4.533978299999944],[104.25881030000005,-4.528884399999981],[104.26076950000004,-4.527904799999931],[104.26018170000003,-4.525749699999949],[104.25777980000004,-4.524634],[104.25469590000006,-4.520068],[104.25763470000004,-4.515365899999949],[104.26214090000008,-4.513602599999956],[104.24999390000005,-4.504394399999967],[104.24000190000004,-4.501259699999935],[104.23177330000004,-4.5010638],[104.22987690000008,-4.498854699999981],[104.22785490000007,-4.487153399999954],[104.20591190000005,-4.441896],[104.19180570000003,-4.437389799999949],[104.16809930000005,-4.4170141],[104.15477680000004,-4.411724299999946],[104.15242580000006,-4.408001799999965],[104.15870810000007,-4.402795399999945],[104.10887480000008,-4.4255388],[104.09857380000005,-4.437368799999945],[104.063099,-4.446109],[104.04510450000004,-4.458448],[104.02711,-4.455363299999931],[104.01374270000008,-4.445594799999981],[104.00150420000006,-4.447177],[103.99584690000006,-4.450185199999964],[103.98604920000008,-4.461014299999931],[103.97994030000007,-4.464567199999976],[103.97136110000008,-4.465958399999977],[103.96046330000007,-4.4571474],[103.95234780000004,-4.444162699999936],[103.92573640000006,-4.421544899999958],[103.90771520000004,-4.3975166],[103.90342440000006,-4.383214099999975],[103.89882860000006,-4.381785099999945],[103.89026610000008,-4.382356],[103.88139850000005,-4.379495499999962],[103.86431880000004,-4.379515599999934],[103.85105260000006,-4.376820199999941],[103.85352190000003,-4.360561],[103.84601520000007,-4.291498499999932],[103.84188640000008,-4.277610899999956],[103.83550570000006,-4.261846699999978],[103.79909770000006,-4.210049799999979],[103.79084020000005,-4.216430599999967],[103.77244860000008,-4.223562099999981],[103.76006240000004,-4.230318199999942],[103.74429810000004,-4.241203],[103.71727370000008,-4.264098699999977],[103.69899420000007,-4.285308399999963],[103.63697480000008,-4.287464799999952],[103.62713180000009,-4.306722799999932],[103.62157080000009,-4.305928299999948],[103.61719530000005,-4.3122728],[103.60371470000007,-4.339715399999932],[103.59841880000005,-4.362584199999958],[103.59071560000007,-4.356806799999958],[103.58229020000005,-4.354881],[103.55340330000007,-4.356566099999952],[103.54762590000007,-4.371009599999979],[103.54064490000007,-4.3719725],[103.53775620000005,-4.368602299999964],[103.53077520000005,-4.367880199999945],[103.51970180000006,-4.376787],[103.51488730000005,-4.376064799999938],[103.50068460000006,-4.361139899999955],[103.494185,-4.361621299999968],[103.47805650000004,-4.358732599999939],[103.46805760000007,-4.3530811],[103.46398250000004,-4.359935299999961],[103.44834620000006,-4.372038399999951],[103.43302370000004,-4.400178199999971],[103.42858510000008,-4.405251799999974],[103.42543990000007,-4.423719],[103.42353610000004,-4.457962],[103.41277790000004,-4.468094099999973],[103.41073230000006,-4.485215899999957],[103.39778930000006,-4.5140061],[103.39823820000004,-4.5175331],[103.40690490000009,-4.521124],[103.41676750000005,-4.520733499999949],[103.43699340000006,-4.531286699999953],[103.44350680000008,-4.538581799999974],[103.44607090000005,-4.544201499999929],[103.45154410000004,-4.546915099999978],[103.46635740000005,-4.559127799999942],[103.47179750000004,-4.565718],[103.47333790000005,-4.571399699999972],[103.48478270000004,-4.579071499999941],[103.49469540000007,-4.577077599999939],[103.50286640000007,-4.573255099999926],[103.51098180000008,-4.574871499999972],[103.52037880000006,-4.573860099999933],[103.53019480000006,-4.568793399999947],[103.53686970000007,-4.564008099999967],[103.541173,-4.558911],[103.549783,-4.542844],[103.556727,-4.539516],[103.56078,-4.535162],[103.564198,-4.534441],[103.565086,-4.530853],[103.570593,-4.524796],[103.573762,-4.524858],[103.576767,-4.528016],[103.58791160000004,-4.5231602],[103.59257860000008,-4.522809099999961],[103.59768060000005,-4.524454399999968],[103.60529290000005,-4.529481299999929],[103.61492240000007,-4.530532599999958],[103.61842770000004,-4.532956499999955],[103.62889640000009,-4.550709],[103.63013670000004,-4.556246199999975],[103.62429090000006,-4.556519399999956],[103.61913140000007,-4.570790299999942],[103.60741570000005,-4.578908],[103.60732630000007,-4.583733499999937],[103.59824650000007,-4.589436599999942],[103.59659740000006,-4.595037899999966],[103.61372820000008,-4.597339399999953],[103.62289380000004,-4.593299],[103.62802040000008,-4.594852299999957],[103.64073370000006,-4.594852299999957],[103.64489360000005,-4.597452199999964],[103.64851530000004,-4.602605099999948],[103.65627460000007,-4.607987899999955],[103.66182930000008,-4.6097917],[103.67090560000008,-4.622762099999932],[103.68586040000008,-4.6336596],[103.68754090000004,-4.63662],[103.68539690000006,-4.639456399999972],[103.68416120000006,-4.64578],[103.69474860000008,-4.653869399999962],[103.69743050000005,-4.669403099999954],[103.69991810000005,-4.672029299999963],[103.69823130000003,-4.682904299999961],[103.70409620000004,-4.692325899999958],[103.70454620000004,-4.698405599999944],[103.70073440000004,-4.7041133],[103.67930860000007,-4.716712399999949],[103.67279340000005,-4.725293199999953],[103.67175690000005,-4.729485799999964],[103.67288710000008,-4.731940899999927],[103.68175530000008,-4.730713599999945],[103.69593630000008,-4.725448699999959],[103.70285230000007,-4.725070699999947],[103.70787120000006,-4.728247599999975],[103.71496240000005,-4.729113899999959],[103.72307460000007,-4.7339282],[103.732524,-4.737159199999951],[103.732586,-4.741994299999931],[103.73506420000007,-4.744380499999977],[103.73956880000009,-4.7440688],[103.74543680000005,-4.741191699999945],[103.74725170000005,-4.745099],[103.76190510000004,-4.754468299999928],[103.76347840000005,-4.758517799999936],[103.761384,-4.775119599999925],[103.767488,-4.7725838],[103.77393670000004,-4.773330499999929],[103.77670110000008,-4.781379099999981],[103.77664570000007,-4.789302799999973],[103.78040890000005,-4.795917499999973],[103.78677930000003,-4.792702],[103.79138760000006,-4.794046599999945],[103.80436720000006,-4.792540899999949],[103.82545290000007,-4.800934899999959],[103.82278330000008,-4.806557],[103.82368890000004,-4.820805399999927],[103.82562090000005,-4.822012899999947],[103.84011080000005,-4.821590199999946],[103.84361250000006,-4.823280699999941],[103.84874430000008,-4.827446499999951],[103.85395450000004,-4.835340499999973],[103.86374770000003,-4.844152899999926],[103.86629780000004,-4.848218199999963],[103.86558380000008,-4.8706124],[103.87213650000007,-4.8781005],[103.874948,-4.884050399999978],[103.87864730000007,-4.873366899999951],[103.88301810000007,-4.868121899999949],[103.88156110000006,-4.861711499999956],[103.88330950000005,-4.8582149],[103.89904420000005,-4.849473399999965],[103.90108390000006,-4.843937099999948],[103.90545460000004,-4.839857699999925],[103.90545460000004,-4.833155899999952],[103.91361340000009,-4.824997099999962],[103.91273920000003,-4.816838399999938],[103.92002380000008,-4.813341799999932],[103.92264630000005,-4.814215899999965],[103.94071210000004,-4.812467599999934],[103.94304320000003,-4.815381499999944],[103.95149330000004,-4.820626399999981],[103.967228,-4.819752199999925],[103.97686880000003,-4.824617699999976],[103.97970170000008,-4.828664699999933],[103.98455820000004,-4.830283599999973],[103.98536760000007,-4.839996499999927],[103.99224760000004,-4.838782399999957],[103.99508060000005,-4.842020099999957],[104.00317470000005,-4.844853],[104.01207830000004,-4.855780099999947],[104.01579410000005,-4.8648612],[104.011452,-4.870205399999975],[104.011118,-4.875549599999943],[104.00911390000005,-4.877219699999955],[103.99909350000007,-4.877219699999955],[103.99475140000004,-4.8822299],[103.98673510000003,-4.878555699999936],[103.98172490000007,-4.878221699999926],[103.98005480000006,-4.875549599999943],[103.98105680000003,-4.868869399999937],[103.97805070000004,-4.867867299999943],[103.96636030000008,-4.869871399999965],[103.96368820000004,-4.8738795],[103.95567190000008,-4.873545499999977],[103.94932570000009,-4.875549599999943],[103.93496480000005,-4.885099399999945],[103.94721640000006,-4.897805199999937]]]},"properties":{"shapeName":"Ogan Komering Ulu Selatan","shapeISO":"","shapeID":"22746128B57050706199155","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[104.55567570000005,-3.805243399999938],[104.55783130000003,-3.824938299999928],[104.54328930000008,-3.839432299999942],[104.53689220000007,-3.843492099999935],[104.53103050000004,-3.851966899999979],[104.52293910000009,-3.855500699999936],[104.50890210000006,-3.871281],[104.51038160000007,-3.878523299999927],[104.50911140000005,-3.883769499999971],[104.51232020000003,-3.920963699999959],[104.50516960000004,-3.935388199999977],[104.49143840000005,-3.945003499999927],[104.48590090000005,-3.944806299999925],[104.48284690000008,-3.950653599999953],[104.47738440000006,-3.953561199999967],[104.46404290000004,-3.952043899999978],[104.46108690000005,-3.954731099999947],[104.45830170000005,-3.952705499999979],[104.45685510000004,-3.954065],[104.45425050000006,-3.953718299999935],[104.45374410000005,-3.956250299999965],[104.44949910000008,-3.959111299999961],[104.44724640000004,-3.959051299999942],[104.44199620000006,-3.963287],[104.43728620000007,-3.972455099999934],[104.43001960000004,-3.979105],[104.42384670000007,-3.979325499999959],[104.41803540000006,-3.977351699999929],[104.41305320000004,-3.978013899999951],[104.404592,-3.982083],[104.40255530000007,-3.985647299999926],[104.40433740000009,-4.000159],[104.40179150000006,-4.0006682],[104.398749,-4.005021299999953],[104.39643330000007,-4.005848299999968],[104.39502740000006,-4.004194199999972],[104.38808020000005,-4.005682899999954],[104.38401790000006,-4.007204699999932],[104.37881740000006,-4.011803],[104.37592280000007,-4.010066199999926],[104.37435140000008,-4.011803],[104.37029890000008,-4.009487299999932],[104.36518940000008,-4.009044499999959],[104.36533670000006,-4.008081299999958],[104.35665280000006,-4.009073799999953],[104.35450250000008,-4.012878199999932],[104.35163680000005,-4.013652399999955],[104.35028460000007,-4.018915499999935],[104.35119430000009,-4.022306399999934],[104.34962290000004,-4.022968],[104.34829970000004,-4.029667],[104.34300660000008,-4.039839599999937],[104.34337880000004,-4.047655099999929],[104.33907820000007,-4.054685],[104.334943,-4.056173599999966],[104.33221380000003,-4.062045599999976],[104.32749960000007,-4.064113199999952],[104.31833730000005,-4.072392799999932],[104.31501130000004,-4.072383599999966],[104.31405630000006,-4.074829799999975],[104.31095890000006,-4.074451199999942],[104.30822960000006,-4.076518799999974],[104.30856040000003,-4.083714],[104.31410160000007,-4.087518399999965],[104.315094,-4.091570899999965],[104.32022170000005,-4.096864],[104.31575570000007,-4.103397599999937],[104.31683080000005,-4.108111699999938],[104.31401890000006,-4.113652899999977],[104.31629330000004,-4.123949499999981],[104.32109010000005,-4.125686299999927],[104.32328590000009,-4.131915499999934],[104.32489130000005,-4.132286599999929],[104.32264,-4.135370699999953],[104.324517,-4.139904199999933],[104.32728490000005,-4.141654],[104.32583730000005,-4.1452013],[104.32741210000006,-4.147173699999939],[104.32481930000006,-4.149957499999971],[104.325885,-4.151230099999964],[104.32438,-4.151066699999944],[104.32438,-4.155039699999975],[104.32603540000008,-4.154708599999935],[104.32570430000004,-4.157688399999927],[104.32702870000008,-4.157522799999981],[104.32802190000007,-4.160006],[104.33083610000006,-4.172752799999955],[104.33563690000005,-4.1785467],[104.33331930000008,-4.17954],[104.32934620000003,-4.188313799999946],[104.32603050000006,-4.190961199999947],[104.32686310000008,-4.196590899999933],[104.32586990000004,-4.197915199999954],[104.31742720000005,-4.199901699999941],[104.314944,-4.202881499999933],[104.31262640000006,-4.200729499999966],[104.30815680000006,-4.199570699999981],[104.30206830000009,-4.199760499999968],[104.29574110000004,-4.204040299999974],[104.29623770000006,-4.205695699999978],[104.29425120000008,-4.204702499999939],[104.29358910000008,-4.208841],[104.29027820000005,-4.211655299999961],[104.28662210000005,-4.212472],[104.28332540000008,-4.218608],[104.28398760000005,-4.230858199999943],[104.28216660000004,-4.2391353],[104.28034560000003,-4.240294099999971],[104.27355840000007,-4.241618499999959],[104.25865960000004,-4.239963],[104.25331590000008,-4.244195499999933],[104.24640940000006,-4.246584699999971],[104.24127760000005,-4.246253699999954],[104.23560740000005,-4.241420099999971],[104.23185430000007,-4.235821099999953],[104.22536110000004,-4.235603499999968],[104.22455780000007,-4.237645399999963],[104.22803420000008,-4.240459699999974],[104.22827880000006,-4.244666399999971],[104.22604770000004,-4.247578],[104.22770310000004,-4.253703099999939],[104.22654430000006,-4.255193],[104.22770310000004,-4.262145699999962],[104.229193,-4.26496],[104.22819970000006,-4.264463299999932],[104.22736090000006,-4.266169699999978],[104.22912230000009,-4.266976599999964],[104.232674,-4.274006499999928],[104.23108010000004,-4.278257],[104.23214270000005,-4.280647899999963],[104.22926770000004,-4.278648199999964],[104.22975180000009,-4.281179299999962],[104.22741430000008,-4.280974599999979],[104.22845080000008,-4.283306699999969],[104.226564,-4.287820699999941],[104.22470440000006,-4.288219099999935],[104.22709530000009,-4.2891489],[104.22560040000008,-4.291598599999929],[104.22536850000006,-4.297384299999976],[104.22223180000009,-4.294967199999974],[104.22145440000008,-4.295744599999978],[104.22444720000004,-4.29941],[104.22326830000009,-4.303000099999963],[104.22585950000007,-4.308959899999934],[104.22560040000008,-4.310514599999976],[104.22442860000007,-4.309747199999947],[104.22534130000008,-4.3136241],[104.21964060000005,-4.319065699999953],[104.22249090000008,-4.320620399999939],[104.22326830000009,-4.322693399999935],[104.22171360000004,-4.325284699999941],[104.22223180000009,-4.3276168],[104.22015880000004,-4.330467099999964],[104.21907690000006,-4.330006399999945],[104.22067710000005,-4.345496299999979],[104.21912230000004,-4.346273599999961],[104.21923440000006,-4.352752399999929],[104.15870810000007,-4.402795399999945],[104.15242580000006,-4.408001799999965],[104.15477680000004,-4.411724299999946],[104.16809930000005,-4.4170141],[104.19180570000003,-4.437389799999949],[104.20591190000005,-4.441896],[104.22785490000007,-4.487153399999954],[104.22987690000008,-4.498854699999981],[104.23177330000004,-4.5010638],[104.24000190000004,-4.501259699999935],[104.24999390000005,-4.504394399999967],[104.26214090000008,-4.513602599999956],[104.25763470000004,-4.515365899999949],[104.25469590000006,-4.520068],[104.25777980000004,-4.524634],[104.26018170000003,-4.525749699999949],[104.26076950000004,-4.527904799999931],[104.25881030000005,-4.528884399999981],[104.26468790000007,-4.533978299999944],[104.26799260000007,-4.541313],[104.271545,-4.541227299999946],[104.27683490000004,-4.544753899999932],[104.27683490000004,-4.548280499999976],[104.27943940000006,-4.551968399999964],[104.28486760000004,-4.555137599999966],[104.29246750000004,-4.553443499999958],[104.30132490000005,-4.561015199999929],[104.31112090000005,-4.5614071],[104.30955350000005,-4.563366299999927],[104.31797810000006,-4.560819299999935],[104.31778210000004,-4.558860099999947],[104.31895770000006,-4.558664199999953],[104.32170050000008,-4.5606234],[104.32268010000007,-4.559643799999947],[104.32326790000008,-4.562582599999928],[104.32561890000005,-4.5606234],[104.32598610000008,-4.557686299999943],[104.32411990000008,-4.546399899999926],[104.31702380000007,-4.538541499999951],[104.31732540000007,-4.529262099999926],[104.31357540000005,-4.525025199999959],[104.31351140000004,-4.5226012],[104.31574050000006,-4.512220699999943],[104.32182070000005,-4.512493399999926],[104.32346380000007,-4.511055699999929],[104.32945230000007,-4.510672599999964],[104.333347,-4.500268099999971],[104.330818,-4.471188599999948],[104.32815110000007,-4.461257899999964],[104.33537470000005,-4.454232199999979],[104.33266130000004,-4.4378031],[104.33814460000008,-4.429523399999937],[104.33639450000004,-4.428377499999954],[104.33580680000006,-4.423479499999928],[104.33913140000004,-4.422554499999933],[104.33933330000008,-4.4211284],[104.34123720000008,-4.421376599999974],[104.34403540000005,-4.417406],[104.34423130000005,-4.412116099999935],[104.34720930000009,-4.407421099999965],[104.34795380000008,-4.401928299999952],[104.35069670000007,-4.398793599999976],[104.34870770000003,-4.397947599999952],[104.35564050000005,-4.393595499999947],[104.35879290000008,-4.388479899999936],[104.36286550000005,-4.387308299999972],[104.37451340000007,-4.37474],[104.37881070000009,-4.3737855],[104.37970030000008,-4.363476599999956],[104.382333,-4.362611],[104.38050930000009,-4.358250199999929],[104.38414760000006,-4.347518899999955],[104.386205,-4.347286399999973],[104.39347380000004,-4.341296799999952],[104.39648170000004,-4.341073499999936],[104.39696760000004,-4.338813099999925],[104.40217670000004,-4.3396096],[104.40466880000008,-4.337779699999942],[104.41200970000006,-4.3370209],[104.41442510000007,-4.332278499999973],[104.417932,-4.330153699999926],[104.41882150000004,-4.325620899999933],[104.42276240000007,-4.324036199999966],[104.424661,-4.320035799999971],[104.43517940000004,-4.315425199999936],[104.43419110000008,-4.3071538],[104.43717990000005,-4.304075699999942],[104.45101780000005,-4.299301599999978],[104.45708860000008,-4.301115899999957],[104.45708860000008,-4.304699099999937],[104.46060340000008,-4.3112151],[104.465907,-4.313564],[104.47186070000004,-4.311317599999938],[104.47836470000004,-4.304668199999981],[104.47814380000005,-4.301991899999962],[104.47933280000007,-4.301616199999955],[104.47693710000004,-4.296652399999971],[104.479516,-4.2980891],[104.47948770000005,-4.296472],[104.48253540000007,-4.295404699999949],[104.481796,-4.293740899999932],[104.48391310000005,-4.292599299999949],[104.48349220000006,-4.291375699999946],[104.48612930000007,-4.295281],[104.489005,-4.295912699999974],[104.48764520000009,-4.296881699999972],[104.488599,-4.2983639],[104.49044970000006,-4.296808799999951],[104.491611,-4.298022599999967],[104.49521760000005,-4.291442899999936],[104.49725710000007,-4.290732599999956],[104.497855,-4.2936664],[104.50056330000007,-4.293373499999973],[104.50819120000006,-4.283019499999966],[104.50894820000008,-4.2812529],[104.507858,-4.279606199999932],[104.51006470000004,-4.279623699999945],[104.510471,-4.278376499999979],[104.51345750000007,-4.2805222],[104.52546540000009,-4.267569],[104.53031160000006,-4.264400299999977],[104.53705150000008,-4.264193],[104.53663280000006,-4.2599638],[104.54999960000004,-4.256780099999958],[104.56863130000005,-4.248495399999968],[104.59107090000003,-4.243170799999973],[104.58931810000007,-4.2384253],[104.60758860000004,-4.227936099999965],[104.60947230000005,-4.225733699999978],[104.60847840000008,-4.224077299999976],[104.61116580000004,-4.223629399999936],[104.61161370000008,-4.220494099999939],[104.61513210000004,-4.221284],[104.620332,-4.2166618],[104.62101960000007,-4.212879799999939],[104.62505070000009,-4.214223499999946],[104.63042550000006,-4.223181499999953],[104.62291810000005,-4.22846],[104.62729560000008,-4.234611299999926],[104.626657,-4.237563399999942],[104.62231650000007,-4.240008799999941],[104.62307380000004,-4.242413699999929],[104.635361,-4.244611199999952],[104.63959040000009,-4.243432199999972],[104.649328,-4.246118599999932],[104.65710090000005,-4.250778599999933],[104.65873180000006,-4.259080499999925],[104.66255840000008,-4.2614262],[104.66607520000008,-4.259261199999969],[104.67821460000005,-4.259845899999959],[104.68364640000004,-4.258510099999967],[104.71206570000004,-4.257315499999947],[104.71687,-4.263492399999961],[104.725828,-4.257221799999968],[104.73792120000007,-4.256326],[104.743296,-4.251847],[104.75135820000008,-4.247815899999978],[104.75583720000009,-4.249607499999968],[104.75576260000008,-4.245804499999963],[104.75538930000005,-4.226764699999933],[104.75046240000006,-4.226764699999933],[104.74773670000008,-4.223067899999933],[104.758085,-4.214994299999944],[104.76443820000009,-4.1944508],[104.77019170000005,-4.195005],[104.77199610000008,-4.185382499999946],[104.774771,-4.183827699999938],[104.77830480000006,-4.1743504],[104.787746,-4.170735299999933],[104.78533420000008,-4.162377799999945],[104.78684870000006,-4.158037],[104.78893850000009,-4.157675799999936],[104.79066860000006,-4.155360899999948],[104.79092490000005,-4.139841099999956],[104.788692,-4.136222799999928],[104.79179170000003,-4.132099499999981],[104.79186460000005,-4.1287712],[104.795396,-4.126818599999979],[104.79405890000004,-4.125414299999932],[104.80465820000006,-4.120164699999975],[104.80644980000005,-4.109863099999927],[104.81566590000006,-4.107001],[104.82350380000008,-4.108099799999934],[104.83410880000008,-4.0994515],[104.83455130000004,-4.096124499999974],[104.833313,-4.093993099999977],[104.83450390000007,-4.094080899999938],[104.83242790000008,-4.090603399999964],[104.83332370000005,-4.085228599999937],[104.83018840000005,-4.078062199999977],[104.83198,-4.075822699999947],[104.827501,-4.0708958],[104.83287580000007,-4.06149],[104.84834640000008,-4.054713499999934],[104.85025570000005,-4.049303799999961],[104.85361980000005,-4.046803399999931],[104.85293790000009,-4.043303],[104.85539280000006,-4.041939199999945],[104.85562010000007,-4.036529399999949],[104.86012060000007,-4.036211199999968],[104.86166630000008,-4.033619899999962],[104.86257550000005,-4.034347299999979],[104.86471210000008,-4.031937899999946],[104.86898540000004,-4.030665],[104.87116750000007,-4.027573699999948],[104.87125840000004,-4.024482399999954],[104.87534990000006,-4.021300199999928],[104.88007770000007,-4.020891],[104.88285080000009,-4.018390699999941],[104.88594210000008,-4.018254299999967],[104.88666950000004,-4.016526899999974],[104.89103370000004,-4.015935899999931],[104.89407950000003,-4.012617299999931],[104.90753580000006,-4.011844399999973],[104.90858140000006,-4.010707899999943],[104.90776310000007,-4.009162299999957],[104.90930870000005,-4.009480499999938],[104.91371840000005,-4.005161799999939],[104.91771890000007,-3.994615],[104.91621870000006,-3.992614699999933],[104.91981010000006,-3.988477799999941],[104.92035560000005,-3.982704399999932],[104.92149210000008,-3.981931499999973],[104.92090110000004,-3.978885699999978],[104.92640180000006,-3.975385299999971],[104.924484,-3.9709931],[104.92876570000004,-3.9616108],[104.92558350000007,-3.957337499999937],[104.93044780000008,-3.950018399999976],[104.92753720000007,-3.9462475],[104.926129,-3.947381699999937],[104.92493090000005,-3.945697299999949],[104.91908270000005,-3.9489273],[104.91551010000006,-3.946180699999957],[104.91212730000007,-3.9456087],[104.91020460000004,-3.947258],[104.90844260000006,-3.946110399999952],[104.90626290000006,-3.948018099999956],[104.903944,-3.944356099999936],[104.903217,-3.945563299999947],[104.90127420000005,-3.945124599999929],[104.90003480000007,-3.942108299999973],[104.89667070000007,-3.944881399999929],[104.89321580000006,-3.945199599999967],[104.89244290000005,-3.943699399999957],[104.88680590000007,-3.946972499999958],[104.87951690000006,-3.955353899999977],[104.87796250000008,-3.954810899999927],[104.875492,-3.958766899999944],[104.87344050000007,-3.958519499999966],[104.87484980000005,-3.960019699999975],[104.874077,-3.960656099999937],[104.872026,-3.960071199999959],[104.86913360000005,-3.9624213],[104.86145250000004,-3.958823299999949],[104.86129070000004,-3.956114699999944],[104.85162870000005,-3.940267199999937],[104.85217440000008,-3.936568199999954],[104.87139750000006,-3.914110899999969],[104.87360080000008,-3.907258499999955],[104.85480630000006,-3.888510099999962],[104.85908750000004,-3.882193699999959],[104.85779380000008,-3.879525499999943],[104.859047,-3.872976299999948],[104.86318290000008,-3.866647899999975],[104.870443,-3.8663697],[104.87389750000006,-3.861632099999952],[104.87281180000008,-3.858868599999937],[104.87517870000005,-3.856007899999952],[104.87379880000009,-3.853045299999962],[104.87414050000007,-3.842936699999939],[104.87278860000004,-3.838429499999961],[104.874881,-3.833909899999981],[104.87422770000006,-3.829725099999962],[104.87638910000004,-3.826612699999941],[104.87569740000004,-3.821165899999926],[104.87718350000006,-3.818722499999978],[104.87810550000006,-3.810618399999953],[104.87393220000007,-3.799457199999949],[104.86859420000008,-3.793439799999931],[104.86927360000004,-3.791110499999945],[104.86218860000008,-3.786451899999975],[104.86024750000007,-3.779949199999976],[104.85753,-3.776358199999947],[104.85413310000007,-3.776261199999965],[104.84783590000006,-3.773371499999939],[104.80291030000006,-3.743042],[104.78414390000006,-3.7329953],[104.77277030000005,-3.725033799999949],[104.77400250000005,-3.686079399999926],[104.74007130000007,-3.674895299999946],[104.73836530000005,-3.673568399999965],[104.738934,-3.666365199999973],[104.73324720000005,-3.659351499999957],[104.72130490000006,-3.653285599999947],[104.70462370000007,-3.649304799999925],[104.68109770000007,-3.6516058],[104.66156370000004,-3.658567699999935],[104.65649730000007,-3.654461799999979],[104.65278530000006,-3.657901599999946],[104.64850420000005,-3.656752799999936],[104.64764960000008,-3.652451],[104.64263070000004,-3.655063],[104.64176730000008,-3.655512299999941],[104.64045090000008,-3.656197499999962],[104.633368,-3.664952899999946],[104.630548,-3.676522],[104.626322,-3.6839767],[104.62632070000006,-3.687319199999934],[104.62465670000006,-3.688218399999926],[104.62593370000008,-3.6945183],[104.62017110000005,-3.704157799999962],[104.62106510000007,-3.708400599999948],[104.61748030000007,-3.7122558],[104.61298920000007,-3.714374699999951],[104.610695,-3.718809299999975],[104.60813520000005,-3.719708099999934],[104.604549,-3.726391499999977],[104.60211720000007,-3.727033199999937],[104.60001940000006,-3.730135899999937],[104.60160230000008,-3.733846599999936],[104.59379120000006,-3.744127699999979],[104.59238350000004,-3.744127],[104.59174160000003,-3.748369099999934],[104.58930970000006,-3.749139299999968],[104.587556,-3.752878499999952],[104.59330680000005,-3.753207199999963],[104.58996550000006,-3.757741899999928],[104.58869950000008,-3.767616699999962],[104.58388870000005,-3.771414599999957],[104.57198830000004,-3.790151399999957],[104.57122870000006,-3.792430199999956],[104.57325430000009,-3.793949399999974],[104.56768390000008,-3.796481399999948],[104.55903150000006,-3.806921199999977],[104.55567570000005,-3.805243399999938]]]},"properties":{"shapeName":"Ogan Komering Ulu Timur","shapeISO":"","shapeID":"22746128B71752612814103","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[111.124409,-8.260354],[111.122526,-8.259353],[111.121797,-8.260681],[111.124409,-8.260354]]],[[[111.273323,-7.937360699999942],[111.27107240000004,-7.9417619],[111.26734920000007,-7.945030199999962],[111.25715640000004,-7.948880199999962],[111.24636840000005,-7.948777599999971],[111.23605340000006,-7.9448914],[111.227005,-7.933208],[111.21649930000007,-7.925987699999951],[111.21437070000007,-7.928035199999954],[111.21310420000009,-7.935303599999941],[111.21162410000005,-7.936693199999979],[111.19797510000006,-7.939867899999967],[111.19203190000007,-7.939111199999957],[111.19322970000007,-7.932928499999946],[111.18822480000006,-7.922595],[111.18324280000007,-7.918823699999962],[111.17895510000005,-7.921806799999956],[111.169342,-7.921336099999962],[111.16474910000005,-7.9240169],[111.16313170000006,-7.922415699999931],[111.15893550000004,-7.923105699999951],[111.15723420000006,-7.922026599999981],[111.15602110000009,-7.923640699999964],[111.15489960000008,-7.922442399999966],[111.15432740000006,-7.924638199999947],[111.15271760000007,-7.924282499999947],[111.14900210000008,-7.930763199999944],[111.14388270000006,-7.933273299999939],[111.14479070000004,-7.937028399999974],[111.14349370000008,-7.943511399999977],[111.14886470000005,-7.950806599999964],[111.14948270000008,-7.953903199999957],[111.14601130000005,-7.957284399999935],[111.14762880000006,-7.960481099999981],[111.14614870000008,-7.965176499999927],[111.14701080000009,-7.966309],[111.144104,-7.966702899999973],[111.14192960000008,-7.9695634],[111.14028930000006,-7.968433299999958],[111.13770290000008,-7.96948],[111.13287350000007,-7.973886499999935],[111.12597710000006,-7.971312699999942],[111.12337060000004,-7.972460399999932],[111.12661740000004,-7.977362599999935],[111.12754820000004,-7.983475699999929],[111.12926480000004,-7.985607099999982],[111.12870790000005,-7.991682499999968],[111.13204950000005,-7.996756499999947],[111.13049320000005,-8.0079145],[111.13521580000008,-8.013096799999971],[111.13625340000004,-8.018264699999975],[111.13616940000009,-8.023616799999957],[111.12632750000006,-8.037467899999967],[111.12644190000009,-8.061049399999945],[111.12770840000007,-8.063942899999972],[111.126178,-8.064676599999927],[111.12416080000008,-8.063968599999953],[111.12248610000006,-8.0601911],[111.11669920000008,-8.058991399999968],[111.11316680000004,-8.056685399999935],[111.09731290000008,-8.060533499999963],[111.09534450000007,-8.062143299999946],[111.09604640000003,-8.06445789999998],[111.09297180000004,-8.065191199999958],[111.09190370000005,-8.060726099999954],[111.08866880000005,-8.05994789999994],[111.09062190000009,-8.050984299999925],[111.08927920000008,-8.048915799999975],[111.09132380000005,-8.04638],[111.09025570000006,-8.041851],[111.09181980000005,-8.040163],[111.09146120000008,-8.034324599999934],[111.09304050000009,-8.030937199999926],[111.09143060000008,-8.029152799999963],[111.07704160000009,-8.02472679999994],[111.07507320000008,-8.025078699999938],[111.07073210000004,-8.029484699999955],[111.07154080000004,-8.030510899999967],[111.06916050000007,-8.031845],[111.06726840000005,-8.03554719999994],[111.06912990000006,-8.046108199999935],[111.06671140000009,-8.055656399999975],[111.07002260000007,-8.059198299999935],[111.06948850000003,-8.061166699999944],[111.07138820000006,-8.061447099999953],[111.07173160000008,-8.064026799999965],[111.065567,-8.0633134],[111.06428530000005,-8.067703199999926],[111.05578610000003,-8.068457599999931],[111.05574040000005,-8.072217899999941],[111.05269620000007,-8.071892699999978],[111.05062870000006,-8.075487099999975],[111.04941560000009,-8.07452479999995],[111.04650880000008,-8.0757494],[111.04545590000004,-8.07458779999996],[111.04061890000008,-8.076045],[111.03556820000006,-8.080668399999979],[111.025711,-8.080615],[111.021759,-8.076922399999944],[111.02002720000007,-8.077898],[111.01895140000005,-8.076401699999963],[111.01618950000005,-8.07689],[111.01548770000005,-8.075783699999931],[111.01501460000009,-8.077882699999975],[111.01306920000007,-8.07649989999993],[111.01123810000007,-8.077687199999957],[111.00220490000004,-8.07759],[110.99990840000004,-8.080515799999944],[110.99379730000004,-8.082448899999974],[110.98221590000009,-8.073093399999948],[110.97512820000009,-8.073324199999945],[110.95994910000007,-8.06379039999996],[110.95272830000005,-8.062685899999963],[110.95159150000006,-8.070361099999957],[110.94625090000005,-8.074444699999958],[110.94218440000009,-8.083097399999929],[110.94280240000006,-8.087515799999949],[110.93775180000006,-8.0908851],[110.93161010000006,-8.101488099999926],[110.92596440000005,-8.105810099999928],[110.92122440000009,-8.117988899999943],[110.916893,-8.121117599999934],[110.909729,-8.123146],[110.908371,-8.125240299999973],[110.910202,-8.134417499999927],[110.90230560000003,-8.154443699999945],[110.90280910000007,-8.16091819999997],[110.89973450000008,-8.166538199999934],[110.90190890000008,-8.1703672],[110.89871980000004,-8.179265],[110.90127560000008,-8.183176],[110.89947510000007,-8.187145199999975],[110.90376280000004,-8.1902132],[110.90525820000005,-8.198164],[110.90824130000004,-8.203666699999928],[110.90871010000006,-8.210956499999952],[110.91385,-8.21318],[110.91606980000006,-8.217547],[110.92374560000007,-8.219327],[110.92614330000004,-8.2225673],[110.92915460000006,-8.223171],[110.92906170000003,-8.222158],[110.93288,-8.22152],[110.93694,-8.2239],[110.93889,-8.22299],[110.9387,-8.22466],[110.94135,-8.22538],[110.94052,-8.22749],[110.94343,-8.22616],[110.9444,-8.22382],[110.9476,-8.22419],[110.94763,-8.2263],[110.94876,-8.22569],[110.94904,-8.22679],[110.95049,-8.22494],[110.95414,-8.22696],[110.95556,-8.22626],[110.95754,-8.22979],[110.95885,-8.22868],[110.96113,-8.2298],[110.95953,-8.23202],[110.95992,-8.23416],[110.96509,-8.23424],[110.97209,-8.23653],[110.97357,-8.23813],[110.97319,-8.24028],[110.97455,-8.23896],[110.97658,-8.24],[110.97836,-8.23585],[110.98253,-8.23594],[110.98391,-8.23787],[110.98214,-8.23618],[110.97843,-8.23663],[110.97886,-8.23901],[110.98012,-8.2392],[110.97942,-8.24009],[110.98256,-8.24019],[110.98232,-8.24207],[110.98358,-8.24108],[110.98827,-8.24273],[110.99103050000008,-8.248129799999958],[110.99235990000005,-8.247322099999963],[110.99243570000004,-8.248845],[110.994502,-8.2493078],[110.99325970000007,-8.252256199999977],[110.99426290000008,-8.250882899999965],[110.99495440000004,-8.253249599999947],[110.99595760000005,-8.2520224],[110.99819760000008,-8.252373],[110.99912280000007,-8.254876],[111.001285,-8.254204],[110.99997990000008,-8.252665199999967],[111.00313950000009,-8.248950899999954],[111.01014930000008,-8.248546099999942],[111.011627,-8.251325299999962],[111.01480360000005,-8.248220099999969],[111.01850420000005,-8.249957699999925],[111.02149420000006,-8.248837599999945],[111.02555550000005,-8.2523535],[111.02693,-8.25172],[111.02573,-8.25477],[111.02798,-8.25699],[111.02946,-8.25382],[111.02972,-8.25655],[111.0325,-8.25404],[111.03369,-8.25669],[111.03459,-8.25408],[111.03634,-8.2543],[111.0377,-8.2526],[111.04092,-8.25305],[111.04331,-8.2489],[111.04929,-8.25246],[111.06056,-8.25071],[111.06297,-8.25235],[111.06584,-8.24743],[111.07089,-8.24891],[111.07491,-8.24556],[111.07652,-8.24595],[111.075039,-8.239003],[111.07812,-8.23406],[111.07384820000004,-8.228118],[111.074624,-8.223788],[111.081831,-8.220286],[111.09076,-8.220512],[111.098331,-8.224026],[111.1022,-8.22898],[111.10304,-8.233666],[111.105308,-8.233012],[111.101851,-8.235761],[111.100841,-8.234798],[111.097576,-8.23683],[111.098551,-8.241933],[111.10151070000006,-8.241197499999942],[111.098926,-8.243795],[111.096202,-8.243265],[111.093549,-8.247436],[111.098903,-8.245676],[111.10003,-8.248816],[111.102274,-8.249109],[111.102976,-8.250848],[111.101237,-8.253536],[111.103399,-8.253654],[111.105064,-8.251854],[111.105125,-8.253386],[111.107713,-8.254221],[111.109443,-8.256988],[111.120115,-8.252827],[111.12109,-8.256116],[111.124673,-8.255878],[111.124639,-8.258572],[111.129759,-8.258451],[111.129565,-8.259581],[111.132019,-8.260841],[111.131882,-8.2626],[111.136943,-8.262362],[111.13833,-8.267],[111.13215,-8.27317],[111.13831,-8.27776],[111.14428,-8.27856],[111.14358,-8.28134],[111.14583,-8.28042],[111.14632,-8.27813],[111.152683,-8.278304],[111.154309,-8.281014],[111.153454,-8.284953],[111.155262,-8.284999],[111.157733,-8.281488],[111.157034,-8.278995],[111.158124,-8.277495],[111.167194,-8.280342],[111.169875,-8.277516],[111.171505,-8.280901],[111.176752,-8.273099],[111.185549,-8.27508],[111.19054,-8.27834],[111.19487,-8.27806],[111.19754,-8.27597],[111.19965,-8.27121],[111.19881,-8.26839],[111.20085,-8.26561],[111.20203,-8.26521],[111.20381,-8.26771],[111.20665,-8.26628],[111.20571,-8.26456],[111.21139,-8.26701],[111.21231,-8.26398],[111.2155,-8.26555],[111.21754,-8.26107],[111.22101,-8.26239],[111.2203,-8.2682],[111.22292,-8.26556],[111.2246,-8.26707],[111.22423,-8.26875],[111.227635,-8.267234],[111.228063,-8.259821],[111.230759,-8.258989],[111.23143,-8.257392],[111.23378,-8.25947],[111.23591,-8.25907],[111.23686,-8.25628],[111.24032,-8.25601],[111.24517,-8.25328],[111.25399,-8.25307],[111.25482,-8.25411],[111.25719,-8.25024],[111.25638,-8.24835],[111.258891,-8.249182],[111.261101,-8.247645],[111.27472,-8.2522],[111.27964,-8.25555],[111.28095,-8.2586],[111.2791,-8.26053],[111.28139,-8.26267],[111.27789,-8.26674],[111.27888,-8.26996],[111.28485,-8.27182],[111.28423,-8.27319],[111.28638,-8.27217],[111.28655,-8.27042],[111.28916,-8.26989],[111.29015,-8.27378],[111.29196,-8.27408],[111.29114,-8.27117],[111.29311,-8.27165],[111.29485,-8.26622],[111.28836,-8.26669],[111.28702,-8.2657],[111.28795,-8.26013],[111.29064,-8.26037],[111.2915,-8.26273],[111.29308,-8.26194],[111.29308,-8.26373],[111.29568,-8.26364],[111.29623,-8.2591],[111.30106,-8.25716],[111.30746,-8.25814],[111.31216,-8.26063],[111.31333,-8.26323],[111.3118,-8.26786],[111.31606,-8.26842],[111.31534,-8.27069],[111.3204,-8.26972],[111.32546,-8.2734],[111.32919,-8.27178],[111.32819,-8.26956],[111.33036,-8.26598],[111.33701,-8.26205],[111.34262,-8.26201],[111.34328,-8.26331],[111.34605,-8.26338],[111.34686,-8.26533],[111.34888,-8.26424],[111.34998,-8.2689],[111.3526,-8.26684],[111.35323,-8.26923],[111.35519,-8.26788],[111.35581,-8.27001],[111.35765,-8.27042],[111.35861,-8.26575],[111.36005,-8.26609],[111.36113,-8.26353],[111.36724,-8.26078],[111.36819,-8.26273],[111.37147,-8.26254],[111.37522780000006,-8.26543289999995],[111.37711,-8.27215],[111.37595,-8.27301],[111.37748,-8.27417],[111.37602,-8.27552],[111.37729,-8.2765],[111.37855,-8.27519],[111.3828,-8.27548],[111.38712,-8.27786],[111.38586,-8.27458],[111.38757,-8.27361],[111.38843,-8.27518],[111.39059,-8.27407],[111.39028170000006,-8.277316],[111.39181,-8.27648],[111.39202,-8.27774],[111.39433,-8.27577],[111.3986,-8.27771],[111.39869,-8.27473],[111.40076,-8.27513],[111.40114,-8.27225],[111.40370360000009,-8.270820599999979],[111.40319060000007,-8.267801199999951],[111.40478510000008,-8.266130399999952],[111.40639490000007,-8.258376099999964],[111.40438840000007,-8.253418899999929],[111.40149690000004,-8.250926899999968],[111.398407,-8.241262399999925],[111.39095150000009,-8.2336759],[111.39579010000006,-8.227559],[111.40081780000008,-8.227042099999949],[111.40179440000009,-8.224061],[111.40041350000007,-8.220726],[111.404541,-8.219701699999973],[111.40891260000006,-8.212659799999926],[111.40425870000007,-8.208137499999964],[111.40306850000007,-8.200246799999945],[111.40074210000006,-8.195295599999952],[111.40241790000005,-8.190577699999949],[111.408803,-8.192844899999955],[111.42259210000009,-8.188846499999954],[111.42556760000008,-8.183359099999961],[111.42513270000006,-8.179427099999941],[111.42658230000006,-8.17558],[111.42480470000004,-8.1703415],[111.42244720000008,-8.1695404],[111.421196,-8.171624099999974],[111.41747280000004,-8.168858499999942],[111.41549680000008,-8.1718626],[111.41081240000005,-8.170916499999976],[111.40509030000004,-8.1725044],[111.397995,-8.16667069999994],[111.39797210000006,-8.1646051],[111.39350130000008,-8.163397799999927],[111.39324190000008,-8.159450499999934],[111.38468170000004,-8.159994099999949],[111.38203430000004,-8.164202599999953],[111.38034820000007,-8.163242299999979],[111.37767790000004,-8.159719399999972],[111.37895970000005,-8.157664299999965],[111.37595370000008,-8.155335399999956],[111.38001250000008,-8.155094099999928],[111.38047030000007,-8.153589199999942],[111.37838740000007,-8.151008599999955],[111.38138580000009,-8.148544299999969],[111.37964630000005,-8.148308699999973],[111.38074490000008,-8.145589799999925],[111.37910460000006,-8.144493099999977],[111.38076780000006,-8.143779699999925],[111.37873840000009,-8.141049299999963],[111.379982,-8.140261599999974],[111.37989040000008,-8.136472699999956],[111.37834160000006,-8.135355899999979],[111.37627410000005,-8.136055899999974],[111.37429810000003,-8.132687499999975],[111.371849,-8.132809599999973],[111.37059020000004,-8.13078489999998],[111.36878970000004,-8.130826899999931],[111.36784360000007,-8.123590399999955],[111.36382290000006,-8.122357299999976],[111.36146540000004,-8.118944099999965],[111.35881040000004,-8.120148599999936],[111.35717010000008,-8.119227399999943],[111.35587310000005,-8.12073229999993],[111.35512540000008,-8.1161327],[111.35284420000005,-8.116960499999948],[111.34721370000005,-8.1141643],[111.34639740000006,-8.108565299999952],[111.34774780000004,-8.10719869999997],[111.35110760000003,-8.105628599999932],[111.35430910000008,-8.108749399999965],[111.36003870000008,-8.106503399999951],[111.35829160000009,-8.09944719999993],[111.35447690000007,-8.093238799999938],[111.35201260000008,-8.092735199999936],[111.35443110000006,-8.08889],[111.35449220000004,-8.084840699999972],[111.35176090000004,-8.0823478],[111.35440820000008,-8.080895399999974],[111.35479730000009,-8.077297199999975],[111.34983060000008,-8.075729299999978],[111.34719850000005,-8.0727367],[111.34633640000004,-8.066241199999979],[111.35330960000005,-8.059402399999954],[111.353775,-8.049160899999947],[111.35894770000004,-8.046352299999967],[111.36096950000007,-8.040163],[111.36705780000005,-8.033028599999966],[111.36683650000003,-8.030762599999946],[111.36452480000008,-8.028921099999934],[111.36178590000009,-8.029642099999933],[111.35829920000003,-8.026032399999963],[111.354515,-8.025465899999972],[111.34918970000007,-8.021008499999937],[111.35099030000003,-8.0057926],[111.35612490000005,-8.000265099999979],[111.35536950000005,-7.984128],[111.35367580000008,-7.9807057],[111.349839,-7.977032699999938],[111.34026630000005,-7.975532299999941],[111.33933690000003,-7.972355599999958],[111.33690290000004,-7.972044699999969],[111.33228640000004,-7.968048199999942],[111.32701150000008,-7.967773],[111.325352,-7.960618199999942],[111.32653040000008,-7.955240199999935],[111.32263940000007,-7.9497766],[111.322514,-7.9449002],[111.31761820000008,-7.940775],[111.31643330000009,-7.936453399999948],[111.31434630000007,-7.935208799999941],[111.30715180000004,-7.936011299999961],[111.29882050000003,-7.941012399999977],[111.273323,-7.937360699999942]]]]},"properties":{"shapeName":"Pacitan","shapeISO":"","shapeID":"22746128B10085599527579","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[99.840935,0.817677500000059],[99.837539,0.82086570000007],[99.84156820000004,0.834318400000029],[99.84123310000007,0.851179100000024],[99.83287910000007,0.87113990000006],[99.830865,0.880499500000042],[99.83403810000004,0.886681500000066],[99.84066940000008,0.892918300000019],[99.85696040000005,0.896698600000036],[99.86527640000008,0.906043600000032],[99.87155480000007,0.907389200000068],[99.87934270000005,0.905028],[99.88176580000004,0.901745600000027],[99.89247910000006,0.89685970000005],[99.898373,0.895995300000038],[99.90079980000007,0.893132100000059],[99.90054810000004,0.891027300000076],[99.90493470000007,0.88870570000006],[99.94105220000006,0.882733600000051],[99.95168570000004,0.879334],[99.95948010000006,0.86889350000007],[99.96103650000003,0.864772900000048],[99.96084430000008,0.859977100000037],[99.96750510000004,0.850720300000035],[99.973113,0.848709800000051],[99.97628320000007,0.849867],[99.98199330000006,0.845716800000048],[99.99656570000008,0.841452600000025],[100.00311270000009,0.843293700000061],[100.03469680000006,0.827339500000051],[100.06215010000005,0.808120400000064],[100.07438510000009,0.801212900000053],[100.11974590000005,0.785891500000048],[100.13598890000009,0.775538300000051],[100.16971040000004,0.76472270000005],[100.17861730000004,0.764380100000039],[100.164604,0.780324700000051],[100.15704350000004,0.783821400000022],[100.15296930000005,0.788870800000041],[100.14495870000007,0.793745],[100.13800830000008,0.800353900000061],[100.12425990000008,0.81648830000006],[100.12228090000008,0.823575800000071],[100.12001840000005,0.826278700000046],[100.12033330000008,0.831676400000049],[100.11905650000006,0.834638200000029],[100.12274180000009,0.838441500000044],[100.12387870000003,0.846904900000027],[100.12816780000009,0.847395400000039],[100.12900850000005,0.84361210000003],[100.13785960000007,0.844186900000068],[100.13407540000009,0.866178400000024],[100.13718590000008,0.881302800000071],[100.14156330000009,0.881651600000055],[100.14276860000007,0.883581500000048],[100.13993050000005,0.892168300000037],[100.14137730000004,0.899790200000041],[100.13769470000005,0.90193030000006],[100.13224770000005,0.911154600000032],[100.13578030000008,0.925016400000061],[100.12974560000004,0.93066140000002],[100.12841030000004,0.936815],[100.13190470000006,0.948564],[100.14308180000006,0.953520800000035],[100.14461490000008,0.961617],[100.14785750000004,0.96584480000007],[100.14673630000004,0.97534],[100.14162420000008,0.978482500000041],[100.13954920000003,0.98415330000006],[100.143715,0.986096800000041],[100.14578990000007,0.98517970000006],[100.14759040000007,0.98804],[100.15407520000008,0.990841300000056],[100.15644850000007,0.994132],[100.159111,0.995029600000066],[100.16146860000003,0.999475],[100.16445140000008,0.997685800000056],[100.16658030000008,0.998412100000053],[100.16488670000007,1.003969300000051],[100.15953810000008,1.008543100000054],[100.14938370000004,1.012198400000045],[100.14449320000006,1.019427400000041],[100.14024340000003,1.02937970000005],[100.13871750000004,1.039177100000074],[100.14114360000008,1.049366600000042],[100.14020530000005,1.060752200000024],[100.13765710000007,1.06105210000004],[100.12925710000007,1.055104],[100.12582340000006,1.058477900000071],[100.12123820000005,1.06804690000007],[100.12091250000003,1.073655500000029],[100.12255270000009,1.077393900000061],[100.12146180000008,1.082013],[100.12321440000005,1.094109100000026],[100.12846240000005,1.104334200000039],[100.13465740000004,1.112079400000027],[100.141774,1.117189900000028],[100.146604,1.118733200000065],[100.16015190000007,1.119827500000042],[100.16310110000006,1.118066800000065],[100.16927080000005,1.122704700000043],[100.17909250000008,1.117537],[100.18029770000004,1.119977900000038],[100.18289950000008,1.120663300000047],[100.18399060000007,1.124251500000071],[100.17761510000008,1.126721800000041],[100.17274320000007,1.133471100000065],[100.16609950000009,1.134209500000054],[100.16386410000007,1.13848020000006],[100.16305560000006,1.146049100000027],[100.15844720000007,1.153449],[100.15244290000004,1.157296900000063],[100.14343790000004,1.159332600000027],[100.13542910000007,1.168274200000042],[100.12982170000004,1.185996200000034],[100.12149020000004,1.196922800000038],[100.12419870000008,1.20254140000003],[100.12440470000007,1.206345400000032],[100.11804,1.216653700000052],[100.11988070000007,1.226299600000061],[100.11895750000008,1.234956100000034],[100.122795,1.246981900000037],[100.122757,1.250011500000028],[100.11998780000005,1.25515],[100.10780310000007,1.26780830000007],[100.10271450000005,1.270032],[100.09532930000006,1.270228400000065],[100.07444740000005,1.276110800000026],[100.05913550000008,1.297531500000048],[100.05030050000005,1.313100500000075],[100.03700050000003,1.318600500000059],[100.02940050000007,1.326100500000052],[100.02552790000004,1.335094200000071],[100.02535950000004,1.356916200000057],[100.01518370000008,1.36233],[100.01077190000007,1.370801700000072],[100.00109590000005,1.380331],[99.99289790000006,1.381992800000035],[99.97135520000006,1.380330900000047],[99.96509370000007,1.377200400000049],[99.95433120000007,1.367573800000059],[99.95305920000004,1.375583900000038],[99.95448620000008,1.378775700000062],[99.95257870000006,1.381994400000053],[99.95022110000008,1.397764700000039],[99.94320990000006,1.405128],[99.94715320000006,1.415534],[99.94417880000003,1.421380200000044],[99.94868,1.427784900000063],[99.94686440000004,1.429211100000032],[99.94712340000007,1.432114200000058],[99.94404850000006,1.439352900000074],[99.92815460000008,1.467828800000063],[99.92316490000007,1.479998900000055],[99.92148560000004,1.489359],[99.92093020000004,1.517959500000075],[99.91948850000006,1.525514100000066],[99.91742980000004,1.528816300000074],[99.91394360000004,1.527109],[99.91533210000006,1.529066700000044],[99.91351610000004,1.529731500000025],[99.91556830000007,1.531034300000044],[99.91287430000006,1.531934500000034],[99.91468320000007,1.534311700000046],[99.911113,1.532949400000064],[99.90816660000007,1.533603200000073],[99.91160870000004,1.534928900000068],[99.90812980000004,1.535729600000025],[99.90950310000005,1.538849],[99.90353710000005,1.538403900000048],[99.90325460000008,1.542671600000062],[99.90166740000006,1.541082],[99.89804390000006,1.541376100000036],[99.89800530000008,1.542952300000024],[99.90146940000005,1.542991400000062],[99.90233110000008,1.544212100000038],[99.897461,1.54870440000002],[99.84944940000008,1.524773500000038],[99.84633630000008,1.52015],[99.84444440000004,1.50765],[99.83756240000008,1.497638100000074],[99.81693270000005,1.480219800000043],[99.791321,1.461832300000026],[99.74362210000004,1.419653200000027],[99.73950940000003,1.420336700000064],[99.72139,1.417491200000029],[99.71626280000004,1.41492530000005],[99.71042660000006,1.402904900000067],[99.71240990000007,1.399792700000035],[99.71304330000004,1.393215500000053],[99.70433810000009,1.385003500000039],[99.70283510000007,1.378430300000048],[99.70083620000008,1.376500300000032],[99.696335,1.377787400000045],[99.69147470000007,1.375000900000032],[99.68312850000007,1.37447080000004],[99.67736840000003,1.370317100000022],[99.66835790000005,1.360395800000049],[99.66565730000008,1.353947800000071],[99.64807140000005,1.342610900000068],[99.63972470000004,1.335386200000073],[99.62858610000006,1.321974],[99.62864710000008,1.318703600000049],[99.62612150000007,1.315026],[99.61927010000005,1.315783100000033],[99.61483780000003,1.314196800000047],[99.61000030000008,1.314426400000059],[99.60469820000009,1.312126700000022],[99.59832780000005,1.30611250000004],[99.58399940000004,1.30611250000004],[99.57851430000005,1.304520400000058],[99.57321170000006,1.300098100000071],[99.57002240000008,1.294968200000028],[99.567375,1.285946500000023],[99.56241580000005,1.27940140000004],[99.55251330000004,1.279578300000026],[99.54261020000007,1.282408600000053],[99.538536,1.281701100000021],[99.53199790000008,1.273387100000036],[99.51023880000008,1.264896200000067],[99.50263240000004,1.263127200000042],[99.48670970000006,1.263304100000028],[99.47521190000003,1.261712],[99.470436,1.257466600000043],[99.46636950000004,1.246499300000039],[99.46123530000006,1.239600500000051],[99.452217,1.236593200000073],[99.43134290000006,1.234293500000035],[99.42116560000005,1.23058750000007],[99.41896050000008,1.226520500000049],[99.42020420000006,1.218457400000034],[99.43041990000006,1.198464],[99.43061090000003,1.187887],[99.43249510000004,1.184082900000021],[99.43650060000004,1.180879600000026],[99.44731890000008,1.179126800000063],[99.45238510000007,1.176333500000055],[99.46162430000004,1.167728200000056],[99.46536990000004,1.159544600000061],[99.48408510000007,1.142255100000057],[99.50479540000003,1.133693300000061],[99.50941,1.13332870000005],[99.51019250000007,1.130890700000066],[99.51509070000009,1.128104],[99.526703,1.107176400000071],[99.53913110000008,1.09739490000004],[99.54386890000006,1.091299400000025],[99.54669190000004,1.070868800000028],[99.56081390000008,1.069324100000074],[99.56839770000005,1.065084900000045],[99.569275,1.061219],[99.56767260000004,1.056359900000075],[99.56795010000008,1.051630100000068],[99.56952650000005,1.041732600000046],[99.573128,1.033255100000019],[99.58095550000007,1.019387600000073],[99.59390240000005,1.011056800000063],[99.59732080000003,1.006421100000068],[99.59883910000008,0.993726400000071],[99.59057590000003,0.983297300000061],[99.58930210000005,0.980773],[99.59019460000007,0.977313],[99.58633450000008,0.970801100000074],[99.58765410000007,0.968378600000051],[99.59541350000006,0.963938700000028],[99.60087570000007,0.951351200000033],[99.61451720000008,0.949505200000033],[99.624344,0.944104500000037],[99.62573220000007,0.942024700000047],[99.62541950000008,0.936315400000069],[99.62985210000005,0.93109],[99.63568880000008,0.927337600000044],[99.64015190000003,0.920197400000063],[99.643158,0.919093800000041],[99.65050520000005,0.91938650000003],[99.658043,0.926945800000055],[99.66134670000008,0.928402400000039],[99.66915870000008,0.927390400000036],[99.675995,0.931837],[99.68874370000003,0.933257900000058],[99.69251240000006,0.931471800000054],[99.70055390000005,0.92676780000005],[99.71279890000005,0.914693400000033],[99.71316510000008,0.906294700000046],[99.71857460000007,0.90233580000006],[99.721443,0.895384200000024],[99.73413840000006,0.892421700000057],[99.73484060000004,0.890262800000073],[99.73307810000006,0.885099500000024],[99.73483280000005,0.881830400000069],[99.73989130000007,0.878645300000073],[99.74277480000006,0.87472740000004],[99.74456020000008,0.86506],[99.75212080000006,0.866312600000072],[99.75940710000003,0.861513],[99.76457230000005,0.863972800000056],[99.76881430000009,0.858976200000029],[99.78419520000006,0.857883700000059],[99.79081720000005,0.854515200000037],[99.80001810000005,0.857287500000041],[99.80565640000003,0.84996],[99.81320980000004,0.846891800000037],[99.81981680000007,0.83620570000005],[99.82588180000005,0.833737400000075],[99.82716350000004,0.831267700000069],[99.83442670000005,0.826964500000031],[99.83667020000007,0.819532200000026],[99.840935,0.817677500000059]]]},"properties":{"shapeName":"Padang Lawas","shapeISO":"","shapeID":"22746128B50162849908618","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[99.66189610000004,2.038040800000033],[99.65489220000006,2.029140200000029],[99.64030440000005,2.036627100000032],[99.63660410000006,2.042084200000033],[99.61689750000005,2.041061600000035],[99.61719510000006,2.022678100000064],[99.62386320000007,2.014265600000044],[99.627106,2.001362100000051],[99.62467210000005,1.997017500000027],[99.61831680000006,1.995717800000023],[99.60886360000006,1.996716],[99.60314920000008,1.999460100000022],[99.59767930000004,2.003604800000062],[99.59693890000005,2.009091800000022],[99.59314730000006,2.011012100000073],[99.59110250000003,2.014876900000047],[99.580284,2.021936400000072],[99.57337170000005,2.029039300000022],[99.56779480000006,2.028199400000062],[99.56583390000009,2.029520500000046],[99.55734240000004,2.017024800000058],[99.55456560000005,2.008796400000051],[99.55502350000006,2.000003100000072],[99.55872370000009,1.992134400000054],[99.55780770000007,1.978695800000025],[99.55307030000006,1.972344200000066],[99.54908010000008,1.969896800000072],[99.549576,1.963956300000063],[99.54493690000004,1.953517100000056],[99.54608910000007,1.94860250000005],[99.55307790000006,1.942073600000072],[99.55265040000006,1.93240110000005],[99.55490110000005,1.927326900000025],[99.55524420000006,1.921340100000066],[99.55950140000004,1.917227400000058],[99.56424720000007,1.915541800000028],[99.56693270000005,1.911983],[99.57467640000004,1.911983],[99.57636230000008,1.91042230000005],[99.57124310000006,1.898872100000062],[99.55874660000006,1.885329600000034],[99.56004330000007,1.872205600000029],[99.55046840000006,1.866824700000052],[99.54801930000008,1.862710400000026],[99.54891970000006,1.859660500000075],[99.55419140000004,1.856583100000023],[99.55606080000007,1.847133],[99.56278990000004,1.83259],[99.56743610000007,1.825896200000045],[99.57028210000004,1.81453620000002],[99.57049550000005,1.806948700000021],[99.56491880000004,1.776968700000054],[99.56590270000004,1.756723700000066],[99.55818920000007,1.75022320000005],[99.55193330000009,1.741693400000031],[99.55242140000007,1.737177],[99.55091850000008,1.73405630000002],[99.55298630000004,1.730028300000072],[99.54943830000008,1.723611600000027],[99.550354,1.71709670000007],[99.53881050000007,1.717551300000025],[99.53764340000004,1.721247300000073],[99.53324130000004,1.724740800000063],[99.52874760000009,1.726245200000051],[99.52235430000007,1.726057200000071],[99.51860820000007,1.728791100000024],[99.51142140000007,1.726259700000071],[99.50595070000008,1.721830900000043],[99.50219140000007,1.714748500000042],[99.48934440000005,1.709375600000044],[99.47744780000005,1.702182200000038],[99.473331,1.696421800000053],[99.47144440000005,1.687949900000035],[99.46810120000004,1.68385840000002],[99.46686540000007,1.675900100000035],[99.464508,1.672180500000024],[99.45921330000004,1.669726200000071],[99.44346620000005,1.667118100000039],[99.43943,1.663709900000072],[99.43530270000008,1.654960800000026],[99.437454,1.644037100000048],[99.43489060000007,1.625157600000023],[99.43698910000006,1.621963300000061],[99.44608330000005,1.617902900000047],[99.451271,1.612444200000027],[99.45417790000005,1.603380400000049],[99.45472730000006,1.595306200000039],[99.449501,1.586167500000045],[99.42931350000003,1.574627200000066],[99.41091180000006,1.577671400000042],[99.40576190000007,1.575653400000022],[99.39774340000008,1.575130500000057],[99.39061720000007,1.572145300000045],[99.40396130000005,1.558978400000058],[99.40964480000008,1.557470100000046],[99.41708360000007,1.547541800000033],[99.42065420000006,1.538696100000038],[99.42172260000007,1.531586200000049],[99.42678830000006,1.525989500000037],[99.43421190000004,1.522539],[99.43820190000008,1.518057200000044],[99.43703350000004,1.514935500000036],[99.43289590000006,1.51511540000007],[99.42947790000005,1.51169740000006],[99.41418670000007,1.503062300000067],[99.41652530000005,1.499284500000044],[99.41922380000005,1.498205100000064],[99.418864,1.496226300000046],[99.40807020000005,1.48992990000005],[99.40357280000006,1.483633500000053],[99.40195370000004,1.464744400000029],[99.40285320000004,1.462765500000046],[99.40123410000007,1.454310300000031],[99.40447230000007,1.44693460000002],[99.40393260000008,1.442437200000029],[99.40699080000007,1.432183100000032],[99.40537170000005,1.431643400000041],[99.40051450000004,1.434881500000074],[99.39763620000008,1.433442300000024],[99.39655680000004,1.430743900000039],[99.40015470000009,1.425886700000035],[99.39979490000007,1.413619500000038],[99.39456970000003,1.413052700000037],[99.38674940000004,1.418738700000063],[99.38278960000008,1.425308500000028],[99.36984230000007,1.429876700000023],[99.36647060000007,1.432461600000067],[99.35520160000004,1.433911200000068],[99.34757990000008,1.431393800000023],[99.34584060000009,1.428958800000032],[99.34735850000004,1.405031600000029],[99.35270660000003,1.398084500000039],[99.36380750000006,1.377543200000048],[99.36891150000008,1.36205810000007],[99.37775420000008,1.35295270000006],[99.385948,1.336944300000027],[99.390648,1.33296850000005],[99.39280720000005,1.323226],[99.39083110000007,1.314435400000036],[99.40779140000006,1.300342900000032],[99.41259740000004,1.285041500000034],[99.41921260000004,1.278431100000034],[99.41735860000006,1.267412400000069],[99.41896030000004,1.260814200000027],[99.41609210000007,1.251717],[99.42400330000004,1.235133400000052],[99.42387380000008,1.233074300000055],[99.42116560000005,1.23058750000007],[99.43134290000006,1.234293500000035],[99.452217,1.236593200000073],[99.46123530000006,1.239600500000051],[99.46636950000004,1.246499300000039],[99.470436,1.257466600000043],[99.47521190000003,1.261712],[99.48670970000006,1.263304100000028],[99.50263240000004,1.263127200000042],[99.51023880000008,1.264896200000067],[99.53199790000008,1.273387100000036],[99.538536,1.281701100000021],[99.54261020000007,1.282408600000053],[99.55251330000004,1.279578300000026],[99.56241580000005,1.27940140000004],[99.567375,1.285946500000023],[99.57002240000008,1.294968200000028],[99.57321170000006,1.300098100000071],[99.57851430000005,1.304520400000058],[99.58399940000004,1.30611250000004],[99.59832780000005,1.30611250000004],[99.60469820000009,1.312126700000022],[99.61000030000008,1.314426400000059],[99.61483780000003,1.314196800000047],[99.61927010000005,1.315783100000033],[99.62612150000007,1.315026],[99.62864710000008,1.318703600000049],[99.62858610000006,1.321974],[99.63972470000004,1.335386200000073],[99.64807140000005,1.342610900000068],[99.66565730000008,1.353947800000071],[99.66835790000005,1.360395800000049],[99.67736840000003,1.370317100000022],[99.68312850000007,1.37447080000004],[99.69147470000007,1.375000900000032],[99.696335,1.377787400000045],[99.70083620000008,1.376500300000032],[99.70283510000007,1.378430300000048],[99.70433810000009,1.385003500000039],[99.71304330000004,1.393215500000053],[99.71240990000007,1.399792700000035],[99.71042660000006,1.402904900000067],[99.71626280000004,1.41492530000005],[99.72139,1.417491200000029],[99.73950940000003,1.420336700000064],[99.74362210000004,1.419653200000027],[99.791321,1.461832300000026],[99.81693270000005,1.480219800000043],[99.83756240000008,1.497638100000074],[99.84444440000004,1.50765],[99.84633630000008,1.52015],[99.84944940000008,1.524773500000038],[99.897461,1.54870440000002],[99.90233110000008,1.544212100000038],[99.90146940000005,1.542991400000062],[99.89800530000008,1.542952300000024],[99.89804390000006,1.541376100000036],[99.90166740000006,1.541082],[99.90325460000008,1.542671600000062],[99.90353710000005,1.538403900000048],[99.90950310000005,1.538849],[99.90812980000004,1.535729600000025],[99.91160870000004,1.534928900000068],[99.90816660000007,1.533603200000073],[99.911113,1.532949400000064],[99.91468320000007,1.534311700000046],[99.91287430000006,1.531934500000034],[99.91556830000007,1.531034300000044],[99.91351610000004,1.529731500000025],[99.91533210000006,1.529066700000044],[99.91394360000004,1.527109],[99.91742980000004,1.528816300000074],[99.91948850000006,1.525514100000066],[99.92093020000004,1.517959500000075],[99.92148560000004,1.489359],[99.92316490000007,1.479998900000055],[99.92815460000008,1.467828800000063],[99.94404850000006,1.439352900000074],[99.94712340000007,1.432114200000058],[99.94686440000004,1.429211100000032],[99.94868,1.427784900000063],[99.94417880000003,1.421380200000044],[99.94715320000006,1.415534],[99.94320990000006,1.405128],[99.95022110000008,1.397764700000039],[99.95257870000006,1.381994400000053],[99.95448620000008,1.378775700000062],[99.95305920000004,1.375583900000038],[99.95433120000007,1.367573800000059],[99.96509370000007,1.377200400000049],[99.97135520000006,1.380330900000047],[99.99289790000006,1.381992800000035],[100.00109590000005,1.380331],[100.01077190000007,1.370801700000072],[100.01518370000008,1.36233],[100.02535950000004,1.356916200000057],[100.02928140000006,1.376224600000057],[100.03164690000006,1.381559800000048],[100.04162580000008,1.392040100000031],[100.05103280000009,1.394835900000032],[100.06909960000007,1.398706300000072],[100.08689850000007,1.400489300000061],[100.09528350000005,1.400416900000039],[100.10110450000008,1.39736],[100.11729570000006,1.39532360000004],[100.13602420000007,1.403872800000045],[100.16880810000004,1.402710900000045],[100.20078250000006,1.398772700000052],[100.21191430000005,1.40602],[100.22208390000009,1.409825700000056],[100.23851760000008,1.412628200000029],[100.25173190000004,1.412804900000026],[100.26055930000007,1.420478400000036],[100.26567840000007,1.422963800000048],[100.27345990000003,1.422752700000046],[100.28340120000007,1.424664500000063],[100.288742,1.423115200000041],[100.29639940000004,1.418171200000074],[100.30753340000007,1.416999200000021],[100.310051,1.418775900000071],[100.31090550000005,1.422115100000042],[100.31562070000007,1.425667500000031],[100.32469950000007,1.427799],[100.32813250000004,1.430656700000043],[100.33160390000006,1.430854100000033],[100.33356720000006,1.433362800000054],[100.34539040000004,1.43630980000006],[100.33904270000005,1.439103500000044],[100.33205250000003,1.439824500000043],[100.32749330000007,1.443200500000046],[100.32274660000007,1.442909900000075],[100.31942760000004,1.446754800000065],[100.30603680000007,1.450651300000061],[100.29975120000006,1.454741400000046],[100.29145480000005,1.457115700000031],[100.28832230000006,1.460951700000066],[100.28241190000006,1.463344900000038],[100.27941440000006,1.466158900000039],[100.28156270000005,1.475695],[100.28585040000007,1.478857900000037],[100.29440810000006,1.473602],[100.30349810000007,1.47172740000002],[100.30897230000005,1.47172420000004],[100.31677950000005,1.476083200000062],[100.31892380000005,1.48812410000005],[100.31837450000006,1.500382400000035],[100.31091340000006,1.510905600000058],[100.30584730000004,1.514876800000025],[100.287697,1.520633500000031],[100.28279110000005,1.524754700000074],[100.27632880000004,1.527321],[100.27053080000007,1.53243],[100.26449610000009,1.533340600000031],[100.25690450000008,1.536618],[100.24020410000008,1.549461600000029],[100.23258940000005,1.551981],[100.21862010000007,1.566925500000025],[100.20907570000008,1.569596100000069],[100.20892360000005,1.575546700000075],[100.20660420000007,1.579734900000062],[100.20156110000005,1.584237],[100.18856810000005,1.588103600000068],[100.17295840000008,1.595299900000043],[100.162216,1.609918600000071],[100.16521430000006,1.618872500000066],[100.16452020000008,1.622306300000048],[100.15519720000003,1.629686400000026],[100.14530950000005,1.631220400000075],[100.13927450000006,1.65157940000006],[100.12612140000005,1.658740300000034],[100.12242120000008,1.669273700000076],[100.11943840000004,1.672046800000032],[100.10820780000006,1.690563200000042],[100.09829720000005,1.702142400000071],[100.084427,1.712945800000057],[100.076599,1.721729],[100.06540650000005,1.725107800000046],[100.05606860000006,1.723428900000044],[100.049011,1.720496300000036],[100.04033680000003,1.699550200000033],[100.01896690000007,1.663076200000035],[100.01435070000008,1.658182500000066],[100.00288390000009,1.640009500000076],[99.99943540000004,1.637493500000062],[99.99297350000006,1.636663700000042],[99.98301720000006,1.632475400000033],[99.95450580000005,1.624568100000033],[99.95217130000003,1.625556600000039],[99.94429030000003,1.642746],[99.94271840000005,1.643274200000064],[99.94328290000004,1.645114600000056],[99.94012450000008,1.649069500000053],[99.92629230000006,1.686323800000025],[99.92153940000009,1.69405],[99.91374180000008,1.714827500000069],[99.90567780000003,1.715250800000035],[99.90021530000007,1.71736530000004],[99.88407160000008,1.689061500000037],[99.86289970000007,1.662527100000034],[99.85124190000005,1.642584600000021],[99.84627510000007,1.636971500000072],[99.83942420000005,1.644087700000057],[99.82831570000008,1.65135250000003],[99.82467660000003,1.656722],[99.82254010000008,1.663931400000024],[99.81975550000004,1.666506300000037],[99.81663540000005,1.672968400000059],[99.81016520000009,1.673311800000022],[99.80256660000003,1.67712750000004],[99.79676040000004,1.682760600000051],[99.78979490000006,1.685300300000051],[99.77139280000006,1.696553300000062],[99.76526610000008,1.710534900000027],[99.73317730000008,1.724383500000044],[99.73347470000004,1.727832500000034],[99.73165110000008,1.732753400000036],[99.72587570000007,1.736270600000068],[99.72057360000008,1.741733500000066],[99.71721650000006,1.751091600000052],[99.70218640000007,1.762842500000033],[99.70460530000008,1.780490300000054],[99.69762420000006,1.79067120000002],[99.695213,1.805501500000048],[99.707657,1.819794700000045],[99.72792060000006,1.828345300000024],[99.737686,1.828238900000031],[99.74554440000009,1.829841],[99.75073270000007,1.827623300000027],[99.75772880000005,1.827265100000034],[99.759575,1.825495300000057],[99.75990290000004,1.819499500000063],[99.76631160000005,1.818599500000062],[99.78050990000008,1.808537800000067],[99.78506450000003,1.808256800000038],[99.78865030000009,1.810276100000067],[99.80389420000006,1.805625300000031],[99.81370550000008,1.807181600000035],[99.82017510000009,1.804543800000033],[99.829605,1.79760570000002],[99.83936330000006,1.799405800000045],[99.83973,1.802071800000022],[99.83661470000004,1.810381600000028],[99.82850180000008,1.825669],[99.82342330000006,1.831801800000051],[99.816766,1.861149900000044],[99.81199390000006,1.867215200000032],[99.81597950000008,1.874590500000068],[99.81736380000007,1.883751800000027],[99.81405160000008,1.895449500000041],[99.80861420000008,1.903622400000074],[99.82415260000005,1.91067490000006],[99.83219660000003,1.91154350000005],[99.83468220000003,1.91479460000005],[99.83152020000006,1.932910600000071],[99.84104650000006,1.970834600000046],[99.84183210000003,1.979226],[99.828354,1.993630100000075],[99.83831010000006,2.000000200000045],[99.84185470000006,2.010398500000065],[99.84650050000005,2.016666500000042],[99.84214940000004,2.019147700000076],[99.83707160000006,2.019296200000042],[99.82792990000007,2.016092800000024],[99.82415780000008,2.016094700000053],[99.82285330000008,2.018673100000058],[99.82416210000008,2.024698300000068],[99.816038,2.025723200000073],[99.80675060000004,2.021499],[99.80254050000008,2.015959800000076],[99.80036450000006,2.016398300000048],[99.79427450000009,2.023546700000054],[99.79137340000005,2.024714700000061],[99.78121390000007,2.01713680000006],[99.76967570000005,2.012740600000029],[99.76677150000006,2.007346400000074],[99.76357890000008,2.005743900000027],[99.74684480000008,2.003701800000044],[99.73856250000006,1.976984800000025],[99.73232010000004,1.976644600000043],[99.713985,1.96310260000007],[99.70473540000006,1.929889500000058],[99.67746370000003,1.937311700000066],[99.69063,1.969640300000037],[99.68751490000005,1.995214300000043],[99.69020820000009,2.001715300000058],[99.68840990000007,2.006783],[99.68793350000004,2.015710800000022],[99.68133660000007,2.027054100000043],[99.68350110000006,2.036463400000059],[99.668257,2.035987200000022],[99.66189610000004,2.038040800000033]],[[99.42665820000008,1.477140800000029],[99.43406630000004,1.48026],[99.43670870000005,1.475462],[99.43318940000006,1.471449700000051],[99.43180870000003,1.467114500000037],[99.43353290000005,1.460424],[99.44078830000007,1.453884300000027],[99.44424440000006,1.44678330000005],[99.44177310000003,1.433465700000056],[99.43543930000004,1.432098100000076],[99.42680920000004,1.434173100000066],[99.425253,1.439030500000058],[99.42001840000006,1.444123600000069],[99.42195190000007,1.444265100000052],[99.419028,1.446340100000043],[99.42125640000006,1.454239800000039],[99.41984160000004,1.459250600000075],[99.42137430000008,1.463730800000064],[99.42037220000003,1.464379200000053],[99.42420390000007,1.470863700000052],[99.42306430000008,1.47648920000006],[99.42665820000008,1.477140800000029]]]},"properties":{"shapeName":"Padang Lawas Utara","shapeISO":"","shapeID":"22746128B28262600742836","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[99.96260210000008,-0.432649799999979],[99.96180820000006,-0.434176],[99.98327980000005,-0.456833099999926],[99.99612090000005,-0.464895699999943],[100.04114310000006,-0.5056311],[100.06223670000008,-0.530331],[100.07734350000004,-0.5450892],[100.08480920000005,-0.555698399999926],[100.09084660000008,-0.567970599999967],[100.09046840000008,-0.563814699999966],[100.09265890000006,-0.561608699999965],[100.09542620000008,-0.560853699999939],[100.09779030000004,-0.562536399999942],[100.10124810000008,-0.559649899999954],[100.10511240000005,-0.561954599999979],[100.10987350000005,-0.557772399999976],[100.12036090000004,-0.5554221],[100.12220540000004,-0.553332299999965],[100.12439640000008,-0.553796199999965],[100.12681760000004,-0.552402799999925],[100.12857640000004,-0.5485192],[100.13051590000003,-0.548608099999967],[100.13442810000004,-0.5527496],[100.135896,-0.560394699999961],[100.134817,-0.562218],[100.13210970000006,-0.562845599999946],[100.131153,-0.571415099999967],[100.13532490000006,-0.572379099999978],[100.13819950000004,-0.570051699999965],[100.14002780000004,-0.572206799999947],[100.14448410000006,-0.572714799999972],[100.14955070000008,-0.570699399999967],[100.15110960000004,-0.573340599999938],[100.14906830000007,-0.579276899999968],[100.14981470000004,-0.581796699999927],[100.14653150000004,-0.585196699999926],[100.14666320000003,-0.588366199999939],[100.155098,-0.588910599999963],[100.15260480000006,-0.594275],[100.15349620000006,-0.594983099999979],[100.15551350000004,-0.596186799999941],[100.16039160000008,-0.594320499999981],[100.16354750000005,-0.6005414],[100.16691730000008,-0.6034274],[100.17055550000003,-0.599836099999948],[100.17363880000005,-0.600599],[100.17303940000005,-0.605174499999976],[100.17520640000004,-0.607759],[100.18008310000005,-0.608357599999977],[100.18212910000005,-0.615744699999937],[100.17416670000006,-0.617938099999947],[100.17440480000005,-0.6202146],[100.176514,-0.619777699999929],[100.17686060000005,-0.621962799999949],[100.17377680000004,-0.622120199999927],[100.17313190000004,-0.627913599999943],[100.17686260000005,-0.630957699999954],[100.17405060000004,-0.632973499999935],[100.17233490000007,-0.643771299999969],[100.16861750000004,-0.644318299999952],[100.17308090000006,-0.6487133],[100.17277,-0.652070099999946],[100.16475090000006,-0.649801199999956],[100.160664,-0.657256399999937],[100.15354910000008,-0.665354499999978],[100.15469670000004,-0.668934899999954],[100.158087,-0.669886199999951],[100.15931780000005,-0.6756861],[100.19690830000008,-0.714201],[100.21754990000005,-0.730405799999971],[100.25730460000005,-0.769277699999975],[100.28107770000008,-0.799027299999977],[100.28741,-0.808171199999947],[100.29090940000003,-0.817137399999979],[100.29173160000005,-0.816250499999967],[100.29368450000004,-0.812607499999956],[100.290707,-0.808045199999924],[100.29122310000008,-0.806158799999935],[100.29585310000004,-0.808156399999973],[100.29839420000008,-0.805763099999979],[100.31281560000008,-0.805471499999953],[100.31706640000004,-0.803667099999927],[100.32160060000007,-0.805295399999977],[100.33739130000004,-0.801086599999962],[100.34023280000008,-0.798659899999961],[100.34677410000006,-0.7862691],[100.35070480000007,-0.785898799999927],[100.35991830000006,-0.780264599999953],[100.36646130000008,-0.772552],[100.37567520000005,-0.768390699999941],[100.38066790000005,-0.760592],[100.39573780000006,-0.754609499999958],[100.40016090000006,-0.748665899999935],[100.41497810000004,-0.745694499999956],[100.41820840000008,-0.742880599999978],[100.42381650000004,-0.743046399999969],[100.43125070000008,-0.740914199999963],[100.43904440000006,-0.7353753],[100.44773670000006,-0.733324799999934],[100.45614430000006,-0.729042099999958],[100.45788570000008,-0.7252808],[100.45391170000005,-0.7185097],[100.44875020000006,-0.713250799999969],[100.44232260000007,-0.701423499999976],[100.44210310000005,-0.688574099999926],[100.43942620000007,-0.680722599999967],[100.44224230000003,-0.672753199999931],[100.44173370000004,-0.664157499999931],[100.43002980000006,-0.656846499999972],[100.42814370000008,-0.655390199999943],[100.42766720000009,-0.652645099999972],[100.42831090000004,-0.646897399999943],[100.43207960000007,-0.639914],[100.43042050000008,-0.637237299999924],[100.420125,-0.6332335],[100.41719420000004,-0.629192099999955],[100.41278050000005,-0.626893399999972],[100.40238890000006,-0.627492],[100.39783570000009,-0.631575199999929],[100.37562780000007,-0.621918],[100.39866770000003,-0.614425],[100.410328,-0.603435099999956],[100.41580840000006,-0.602618899999925],[100.41797330000009,-0.599371399999939],[100.41912840000003,-0.582824699999946],[100.41285510000006,-0.566170199999931],[100.40875630000005,-0.562815699999931],[100.40047380000004,-0.5655311],[100.39651680000009,-0.563668899999925],[100.393887,-0.5549866],[100.38776540000003,-0.544754699999942],[100.38834670000006,-0.533036699999968],[100.38263480000006,-0.525602599999957],[100.38718230000006,-0.513884],[100.38636610000003,-0.507074499999931],[100.38770710000006,-0.501844799999958],[100.39289590000004,-0.491088199999979],[100.38777030000006,-0.489523099999928],[100.37727130000007,-0.491472399999964],[100.37062470000006,-0.484733299999959],[100.36846760000009,-0.4849082],[100.36013040000006,-0.491642],[100.34613810000008,-0.486977899999943],[100.33173760000005,-0.488639499999977],[100.32707350000004,-0.482342899999935],[100.320602,-0.478786499999956],[100.31873640000003,-0.473889199999974],[100.31355110000004,-0.447264599999926],[100.31568630000004,-0.429181099999937],[100.31229760000008,-0.429113499999971],[100.30643450000008,-0.432056299999942],[100.29305760000005,-0.451200899999947],[100.28783560000005,-0.456422299999929],[100.28528950000003,-0.461829899999941],[100.28329540000004,-0.461425399999939],[100.27205670000006,-0.467448199999978],[100.27159390000008,-0.4692109],[100.264484,-0.471599699999956],[100.24647130000005,-0.467575699999941],[100.24624940000007,-0.459847299999979],[100.23838560000007,-0.448518699999966],[100.22656450000005,-0.445783699999936],[100.22300490000003,-0.438330699999938],[100.21559430000008,-0.431994499999973],[100.21549380000005,-0.428233699999964],[100.21850370000004,-0.420329399999957],[100.21686140000008,-0.414933099999928],[100.21386970000003,-0.413538299999971],[100.20959090000008,-0.414704399999948],[100.20376140000008,-0.413336499999957],[100.19929910000008,-0.415476499999954],[100.18835880000006,-0.414387199999965],[100.17618920000007,-0.408319],[100.16719830000005,-0.398829],[100.16248380000008,-0.396180899999933],[100.157769,-0.390221799999949],[100.15549340000007,-0.378156899999965],[100.15848870000008,-0.360049699999934],[100.15570480000008,-0.357032299999958],[100.15077830000007,-0.342159399999957],[100.13642970000006,-0.319958499999927],[100.13107640000004,-0.316294599999935],[100.12893520000006,-0.3165104],[100.12401130000006,-0.324271099999976],[100.12144190000004,-0.324918099999934],[100.11587540000005,-0.330954399999939],[100.10495540000005,-0.332464499999958],[100.09960230000007,-0.3318185],[100.09339210000007,-0.325999],[100.08726770000004,-0.324611399999981],[100.066734,-0.3293431],[100.06116740000004,-0.335163899999941],[100.05688640000005,-0.348529399999961],[100.048108,-0.355859599999974],[100.049268,-0.360862299999951],[100.04825870000008,-0.363508799999977],[100.04580250000004,-0.364333399999964],[100.03481290000008,-0.362559399999952],[100.02913970000009,-0.365230099999962],[100.02305580000007,-0.3621139],[100.01776480000007,-0.363724599999955],[100.00057180000005,-0.358236199999965],[99.99329160000008,-0.359746],[99.98804580000007,-0.363519],[99.98526270000008,-0.368693],[99.98783290000006,-0.374297499999955],[99.98997420000006,-0.374512799999934],[99.98997460000004,-0.377746399999978],[99.99468580000007,-0.380763799999954],[99.99961210000004,-0.392403899999977],[99.99987030000005,-0.39813],[99.98894,-0.3948],[99.98592,-0.39544],[99.97975,-0.40324],[99.97948670000005,-0.414628],[99.97770480000008,-0.416960699999947],[99.97004110000006,-0.4176794],[99.96260210000008,-0.432649799999979]]]},"properties":{"shapeName":"Padang Pariaman","shapeISO":"","shapeID":"22746128B21291565800416","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[98.19707070000004,2.311698100000058],[98.23090720000005,2.288547400000027],[98.24716190000004,2.280001700000071],[98.25283180000008,2.275516100000061],[98.25121950000005,2.329070100000024],[98.24830120000007,2.348120100000074],[98.24503820000007,2.354343500000027],[98.24160470000004,2.35725640000004],[98.24171930000006,2.359281100000032],[98.24509890000007,2.360181],[98.24714020000005,2.359091600000056],[98.25652170000006,2.346459400000072],[98.27355350000005,2.338129],[98.28752080000004,2.336340100000029],[98.29325960000006,2.337882600000057],[98.29536280000008,2.340577900000028],[98.29641330000004,2.350387],[98.29044320000008,2.366352100000029],[98.29603870000005,2.381022600000051],[98.29761340000005,2.39200610000006],[98.29509390000004,2.402481600000044],[98.28740140000008,2.414399500000059],[98.28869090000006,2.421264300000075],[98.29228140000004,2.42365060000003],[98.30276860000004,2.425173400000062],[98.30988090000005,2.424093300000038],[98.31459470000004,2.421494500000051],[98.32441970000008,2.425661300000058],[98.32913310000004,2.423814],[98.33815510000005,2.42514790000007],[98.34045290000006,2.42717220000003],[98.34004820000007,2.43208530000004],[98.34636930000005,2.433186700000022],[98.34470310000006,2.439642500000048],[98.34578690000006,2.449082500000031],[98.35566290000008,2.462114600000064],[98.36285780000009,2.465807600000062],[98.39358080000005,2.465537700000027],[98.39593740000004,2.464211700000021],[98.40357020000005,2.466110900000047],[98.408469,2.470189],[98.41082250000005,2.475972200000058],[98.41506150000004,2.480334300000038],[98.40550690000003,2.499973100000034],[98.40588380000008,2.508117700000071],[98.40027920000006,2.516624300000046],[98.39970370000003,2.520131800000058],[98.40964850000006,2.5272],[98.41542190000007,2.528880900000047],[98.42297890000003,2.52821160000002],[98.43704270000006,2.52249960000006],[98.44909670000004,2.525878900000066],[98.45913880000006,2.535966500000029],[98.46472170000004,2.547485400000028],[98.46749330000006,2.54930070000006],[98.46685210000004,2.552821200000039],[98.46457870000006,2.562573500000042],[98.45356870000006,2.570496900000023],[98.44083130000007,2.587753200000066],[98.42502150000007,2.632109800000023],[98.41991240000004,2.637982200000067],[98.40152720000003,2.642479300000048],[98.39655560000006,2.644725],[98.39388740000004,2.647803700000054],[98.37397,2.652584700000034],[98.35639660000004,2.660877800000037],[98.34470250000004,2.672335700000076],[98.340387,2.678493100000026],[98.33686290000009,2.690240500000073],[98.328632,2.696909],[98.30516310000007,2.70097910000004],[98.29545870000004,2.704338500000063],[98.27979140000008,2.716420600000049],[98.27158710000003,2.720312900000067],[98.26040990000007,2.719336500000054],[98.25286750000004,2.71283],[98.251301,2.708340900000053],[98.24582560000005,2.710467400000027],[98.22544820000007,2.723106100000052],[98.21200770000007,2.727610600000048],[98.19718930000005,2.735102900000072],[98.19074540000008,2.741094300000043],[98.18649790000006,2.74999390000005],[98.17971980000004,2.756027800000027],[98.16095610000008,2.768388400000049],[98.144589,2.770452800000044],[98.13494910000009,2.775344500000074],[98.13068240000007,2.779559600000027],[98.11688160000006,2.78500710000003],[98.10847770000004,2.776121],[98.09001990000007,2.772972],[98.06955850000008,2.763973400000054],[98.07612610000007,2.749845900000025],[98.07358620000008,2.747029],[98.07130840000008,2.736803],[98.07498750000008,2.72625],[98.085556,2.706296],[98.10063790000004,2.689232],[98.10382580000004,2.682081],[98.10484780000007,2.666079],[98.10367130000009,2.649288],[98.10862470000006,2.623759300000074],[98.11260430000004,2.61337930000002],[98.10960910000006,2.604057],[98.10043620000005,2.601534100000038],[98.09147040000005,2.601213100000052],[98.08497670000008,2.60275],[98.083449,2.59213630000005],[98.07922980000006,2.583098100000029],[98.078462,2.575173900000038],[98.08312620000004,2.560344800000053],[98.08483770000004,2.546768500000042],[98.08348090000004,2.539008900000056],[98.08394080000005,2.530452],[98.08124690000005,2.519498],[98.08567360000006,2.50352330000004],[98.09440520000004,2.485103],[98.10427720000007,2.471298500000046],[98.13677750000005,2.430929900000024],[98.14739810000003,2.423653],[98.18484590000008,2.329155300000025],[98.19707070000004,2.311698100000058]]]},"properties":{"shapeName":"Pakpak Bharat","shapeISO":"","shapeID":"22746128B20842812166692","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[113.63953090000007,-6.887704699999972],[113.62352850000002,-6.8898932],[113.58904310000003,-6.888535799999943],[113.5723173,-6.892875799999956],[113.541768,-6.893223299999931],[113.52463880000005,-6.895473],[113.5152465000001,-6.895060299999955],[113.50647620000007,-6.897420699999941],[113.483514,-6.896335699999952],[113.48300920000008,-6.902143799999976],[113.47604360000003,-6.9091156],[113.47695150000004,-6.911128799999972],[113.47593680000011,-6.918155899999931],[113.47792360000005,-6.924638799999968],[113.47406010000009,-6.927390699999933],[113.47167960000002,-6.932443899999953],[113.46756120000009,-6.930935299999931],[113.4661741000001,-6.935060699999951],[113.46134070000005,-6.935201599999971],[113.461085,-6.940041199999939],[113.4590531,-6.943197399999974],[113.45949560000008,-6.947043599999972],[113.4576035,-6.949031],[113.45314790000009,-6.951229699999942],[113.44783020000011,-6.951734199999976],[113.44464110000001,-6.955766399999959],[113.43988800000011,-6.957228399999963],[113.43662260000008,-6.960126099999968],[113.43366990000004,-6.9703053],[113.42965690000005,-6.974273],[113.42915710000011,-6.9804949],[113.42490390000012,-6.981789299999946],[113.422844,-6.984860099999935],[113.4202666000001,-6.992119099999968],[113.42138680000005,-6.9935958],[113.419645,-6.994920299999933],[113.42044050000004,-6.997124399999961],[113.42161550000003,-6.996647499999938],[113.42311860000007,-6.998541499999931],[113.4226073000001,-7.002104899999949],[113.42091360000006,-7.001910799999962],[113.42182160000004,-7.003523],[113.41955690000009,-7.004771],[113.41984670000011,-7.007114799999954],[113.42282850000004,-7.008590399999946],[113.42158510000002,-7.011506199999928],[113.4175719000001,-7.013074099999926],[113.41683180000007,-7.016879699999947],[113.41413120000004,-7.017897299999959],[113.41312390000007,-7.020312499999932],[113.41053760000011,-7.019046499999945],[113.39894090000007,-7.029796699999963],[113.39698780000003,-7.0281579],[113.39232620000007,-7.034317699999974],[113.396988,-7.039465599999971],[113.39353950000009,-7.047808299999929],[113.39621740000007,-7.0555775],[113.39308170000004,-7.061001],[113.39447030000008,-7.0619222],[113.39477540000007,-7.069413399999974],[113.39350900000011,-7.073308199999929],[113.3823777,-7.079804099999933],[113.38304140000002,-7.086727799999949],[113.37956240000005,-7.092518],[113.37654880000002,-7.095084399999962],[113.36698920000003,-7.098105099999941],[113.36324310000009,-7.101403399999981],[113.3626786000001,-7.106983799999966],[113.36493690000009,-7.109395199999938],[113.36934670000005,-7.109914],[113.36990340000011,-7.111632499999928],[113.36719340000002,-7.11689],[113.36778260000006,-7.121573199999943],[113.36588290000009,-7.123257799999976],[113.36659240000006,-7.128136299999937],[113.36431890000006,-7.1313679],[113.36754610000003,-7.138139899999942],[113.36569220000001,-7.138832699999966],[113.36363990000007,-7.1426718],[113.35880280000003,-7.144719799999962],[113.35684210000011,-7.153199399999949],[113.36430360000008,-7.152294299999937],[113.36659290000011,-7.153496799999971],[113.37942510000005,-7.149581099999978],[113.378456,-7.173442499999965],[113.38137820000009,-7.1758854],[113.38139350000006,-7.178768299999945],[113.37350470000001,-7.193043399999965],[113.3732758000001,-7.197632499999941],[113.37653350000005,-7.199354799999981],[113.3772507000001,-7.208222599999942],[113.37919620000002,-7.2099397],[113.3821564000001,-7.203148499999941],[113.38072970000007,-7.191056],[113.38330080000003,-7.189612099999977],[113.38595,-7.1900629],[113.38786320000008,-7.196220599999947],[113.39678480000009,-7.202060699999947],[113.397161,-7.203832899999952],[113.3953782000001,-7.206564599999979],[113.39478310000004,-7.205833599999949],[113.39494310000009,-7.208568299999968],[113.39366140000004,-7.2095658],[113.39351640000007,-7.2176277],[113.40630280000005,-7.218781599999943],[113.41089990000012,-7.2175395],[113.41830950000008,-7.219295599999953],[113.4178955000001,-7.221151599999928],[113.42758370000001,-7.222803],[113.43317880000006,-7.220435299999963],[113.44428040000003,-7.220460899999978],[113.45037090000005,-7.222380499999929],[113.45374060000006,-7.220466899999963],[113.455484,-7.222127199999932],[113.4598496000001,-7.222657599999934],[113.46876480000003,-7.220992599999931],[113.47235390000003,-7.222713299999953],[113.47444830000006,-7.2216145],[113.47708010000008,-7.224294899999961],[113.49666820000004,-7.226666199999954],[113.50356440000007,-7.230137799999966],[113.5088247000001,-7.236457299999927],[113.50811280000005,-7.237445799999932],[113.5140616000001,-7.238654],[113.51047230000006,-7.239158099999941],[113.51142120000009,-7.240202099999976],[113.51463320000005,-7.241746099999943],[113.51698310000006,-7.240973099999962],[113.5154725000001,-7.242032199999926],[113.51355740000008,-7.2420107],[113.5156555000001,-7.2427689],[113.51717380000002,-7.246229799999981],[113.5149384,-7.243063599999971],[113.5160141,-7.245630399999925],[113.5149765000001,-7.244163199999946],[113.51449590000004,-7.245546499999932],[113.51376340000002,-7.243026399999962],[113.51308440000003,-7.244650499999977],[113.51274880000005,-7.242730699999981],[113.50553890000003,-7.240333199999952],[113.50198750000004,-7.240464399999951],[113.49968750000005,-7.242288599999938],[113.49973710000006,-7.245581699999946],[113.50514,-7.252751],[113.50985340000011,-7.254018299999927],[113.51344430000006,-7.253131799999949],[113.51989050000009,-7.248911899999939],[113.52060890000007,-7.246161099999938],[113.52493950000007,-7.245066599999973],[113.53689310000004,-7.235756299999935],[113.5481076000001,-7.23251],[113.55200190000005,-7.233812299999954],[113.549641,-7.230335],[113.56029830000011,-7.213229399999932],[113.5587279,-7.203473599999938],[113.55740140000012,-7.204372099999944],[113.55623630000002,-7.202909099999943],[113.565361,-7.194970699999942],[113.56630880000012,-7.1816403],[113.570633,-7.179228],[113.57324410000001,-7.170483499999932],[113.5737160000001,-7.161322799999937],[113.578287,-7.157811699999968],[113.58927360000007,-7.138979099999972],[113.60221110000009,-7.128500699999961],[113.60231210000006,-7.121508499999948],[113.60597230000008,-7.117884699999934],[113.60680390000005,-7.113861199999974],[113.61176620000003,-7.107497099999932],[113.61219770000002,-7.104968399999962],[113.620941,-7.103709799999933],[113.62194060000002,-7.089699799999948],[113.61987310000006,-7.088729],[113.618454,-7.083458499999949],[113.61407470000006,-7.0810538],[113.61370340000008,-7.077953099999945],[113.60733790000006,-7.073918899999967],[113.60617040000011,-7.067180499999949],[113.60237960000006,-7.067456799999945],[113.60059450000006,-7.066497199999958],[113.60015870000007,-7.062871599999937],[113.59346770000002,-7.061950799999977],[113.6049729,-7.045071699999937],[113.60476690000007,-7.042507299999954],[113.60313420000011,-7.041420599999981],[113.59940340000003,-7.041909299999929],[113.59770950000006,-7.0379707],[113.58316040000011,-7.0414816],[113.57790550000004,-7.036012299999925],[113.57749,-7.033736199999964],[113.5806894000001,-7.026289899999938],[113.58139160000007,-7.018752699999936],[113.58682240000007,-7.0190049],[113.58979020000004,-7.016404699999953],[113.59469590000003,-7.015944099999956],[113.59531390000006,-7.011140499999954],[113.60140970000009,-7.011043199999961],[113.6082838000001,-7.012973899999963],[113.61205280000001,-7.0113006],[113.60707720000005,-7.005522799999937],[113.61025240000004,-6.999071699999945],[113.6085892000001,-6.996449599999949],[113.61072540000009,-6.99572],[113.6121597,-6.991992099999948],[113.61167910000006,-6.9827],[113.60831960000007,-6.974246899999969],[113.61197660000005,-6.973097399999972],[113.61370850000003,-6.970753299999956],[113.61344150000002,-6.968589899999927],[113.62574770000003,-6.966025],[113.62754820000009,-6.961387699999932],[113.62638860000004,-6.956313699999953],[113.62725830000011,-6.951649299999929],[113.63288120000004,-6.943264099999965],[113.6319046000001,-6.9383479],[113.63688660000003,-6.938670699999932],[113.63999180000008,-6.928086399999927],[113.64346310000008,-6.927083599999946],[113.64397430000008,-6.925178199999948],[113.64584350000007,-6.925456199999928],[113.64995570000008,-6.919177599999955],[113.64982530000009,-6.915458899999976],[113.64833620000002,-6.915136899999936],[113.64813230000004,-6.916876399999978],[113.64733890000002,-6.915761099999941],[113.6426239000001,-6.916271299999948],[113.64196,-6.9175669],[113.64156340000011,-6.916073899999958],[113.63566590000005,-6.914108799999951],[113.63922120000007,-6.9006091],[113.63780210000004,-6.892934],[113.63953090000007,-6.887704699999972]]]},"properties":{"shapeName":"Pamekasan","shapeISO":"","shapeID":"22746128B63247672389429","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[105.549767,-6.995661],[105.54168750000008,-6.996104399999979],[105.52916,-7.00093],[105.52190450000006,-7.001415899999927],[105.52005810000009,-7.0044028],[105.52019550000006,-7.008350499999949],[105.52488760000006,-7.013464599999963],[105.53339430000005,-7.015110199999981],[105.560143,-7.016660399999978],[105.56818440000006,-7.014191399999959],[105.57016040000008,-7.009891699999969],[105.56915330000004,-7.006639199999938],[105.55390980000004,-6.996670399999971],[105.549767,-6.995661]]],[[[105.81460610000005,-6.950282499999958],[105.81259190000009,-6.948648399999968],[105.80111730000004,-6.953026199999954],[105.78917730000006,-6.959636599999953],[105.782555,-6.9605016],[105.77737470000005,-6.963336899999945],[105.77182050000005,-6.963590499999952],[105.766312,-6.966816299999948],[105.766045,-6.971808799999963],[105.76856270000007,-6.973806299999978],[105.77265210000007,-6.973824399999955],[105.81517070000007,-6.957697799999949],[105.82038150000005,-6.953108699999973],[105.81945080000008,-6.9504942],[105.81460610000005,-6.950282499999958]]],[[[105.23909310000005,-6.822063499999956],[105.23923550000006,-6.820874699999933],[105.23797550000006,-6.821813599999928],[105.23909310000005,-6.822063499999956]]],[[[105.44309250000003,-6.8104394],[105.44446170000003,-6.808375699999942],[105.44296890000004,-6.808838399999956],[105.44309250000003,-6.8104394]]],[[[105.43667080000006,-6.771855899999935],[105.43621420000005,-6.769766699999934],[105.434818,-6.771932199999981],[105.43667080000006,-6.771855899999935]]],[[[105.42258870000006,-6.767481799999928],[105.42336130000007,-6.766161499999953],[105.42230190000004,-6.765378899999973],[105.421244,-6.766461899999967],[105.42258870000006,-6.767481799999928]]],[[[105.42320180000007,-6.758427499999925],[105.420568,-6.761672699999963],[105.42118070000004,-6.763907599999925],[105.425209,-6.760349099999928],[105.42320180000007,-6.758427499999925]]],[[[105.42052320000005,-6.757440599999939],[105.42149260000008,-6.7557254],[105.419296,-6.754428099999927],[105.41887020000007,-6.756443399999966],[105.42052320000005,-6.757440599999939]]],[[[105.41758920000007,-6.7544601],[105.41659210000006,-6.755054599999937],[105.41710510000007,-6.759765899999934],[105.41890910000006,-6.758295499999974],[105.41758920000007,-6.7544601]]],[[[105.43464820000008,-6.757173099999932],[105.43513330000007,-6.755102799999975],[105.42864380000009,-6.749562399999945],[105.42934440000005,-6.755196199999943],[105.43176770000008,-6.757140899999968],[105.43464820000008,-6.757173099999932]]],[[[105.42588450000005,-6.752862],[105.42308780000008,-6.748295199999973],[105.41882290000007,-6.748797499999966],[105.41883350000006,-6.753275199999962],[105.42471170000005,-6.754362399999934],[105.42588450000005,-6.752862]]],[[[105.24840670000003,-6.725922499999967],[105.24707770000003,-6.726096299999938],[105.24682680000006,-6.729759699999931],[105.24881040000008,-6.739331199999981],[105.24781780000006,-6.748479],[105.25254780000006,-6.752129499999967],[105.25788640000007,-6.751043099999947],[105.26440490000005,-6.745647899999938],[105.26767790000008,-6.736716699999931],[105.26300370000007,-6.729008699999952],[105.25409290000005,-6.728643699999964],[105.24840670000003,-6.725922499999967]]],[[[105.55612230000008,-6.6757595],[105.55519150000003,-6.676897799999949],[105.55791520000008,-6.678341199999977],[105.55612230000008,-6.6757595]]],[[[105.58056360000006,-6.653199699999959],[105.57983720000004,-6.6511456],[105.57863370000007,-6.651414899999963],[105.57919160000006,-6.653425399999946],[105.58056360000006,-6.653199699999959]]],[[[105.57127420000006,-6.647334399999977],[105.57029770000008,-6.645994499999972],[105.56892440000007,-6.646888499999932],[105.57127420000006,-6.647334399999977]]],[[[105.58308460000006,-6.643735199999981],[105.58140610000004,-6.642152099999976],[105.58039140000005,-6.643164899999931],[105.58308460000006,-6.643735199999981]]],[[[105.11164920000004,-6.619093299999975],[105.10673590000005,-6.616832599999952],[105.105271,-6.618127199999947],[105.10723940000008,-6.621006299999976],[105.11164920000004,-6.619093299999975]]],[[[105.26564840000003,-6.522833799999944],[105.26106320000008,-6.521008499999937],[105.25978910000003,-6.522913],[105.25425780000006,-6.523445099999947],[105.25180110000008,-6.525482699999941],[105.25142730000005,-6.529353599999979],[105.24809320000008,-6.529140499999926],[105.24668940000004,-6.531276199999979],[105.24384360000005,-6.530039299999942],[105.238793,-6.533188799999948],[105.23203340000003,-6.533064299999978],[105.22963770000007,-6.5306253],[105.22019250000005,-6.529597199999955],[105.21317350000004,-6.535462299999949],[105.21269280000007,-6.540084799999931],[105.21469940000009,-6.544111699999974],[105.211167,-6.547336499999972],[105.20864160000008,-6.545288],[105.20061550000008,-6.544570399999941],[105.19744170000007,-6.541365599999949],[105.18954530000008,-6.540986499999974],[105.18603580000007,-6.539378099999965],[105.18557030000005,-6.537746399999946],[105.18369350000006,-6.539253599999938],[105.18396060000003,-6.541331699999944],[105.18014580000005,-6.544544599999938],[105.16438350000004,-6.552264099999945],[105.16336120000005,-6.556195199999934],[105.15947020000004,-6.560459499999979],[105.15672360000008,-6.561212399999931],[105.15619720000007,-6.564115899999933],[105.13377440000005,-6.5769595],[105.13314880000007,-6.580115199999966],[105.12847960000005,-6.584174499999961],[105.12644260000008,-6.583344799999963],[105.12500060000008,-6.589328099999932],[105.12292540000004,-6.590188399999931],[105.12126980000005,-6.588816],[105.11975160000009,-6.593632099999979],[105.11113040000004,-6.603852599999925],[105.10054080000003,-6.612517699999955],[105.09986180000004,-6.615515499999958],[105.10113590000009,-6.620316799999955],[105.10412660000009,-6.621368699999948],[105.10406560000007,-6.613139899999965],[105.10796420000008,-6.610828199999958],[105.11254940000003,-6.610489199999961],[105.11719580000005,-6.613107499999956],[105.116532,-6.6175726],[105.11763060000004,-6.618604499999947],[105.12263550000006,-6.622421599999939],[105.12830410000004,-6.623641799999973],[105.13028010000005,-6.619451899999945],[105.131478,-6.605344199999934],[105.13715420000005,-6.599144299999978],[105.14007630000003,-6.599165299999981],[105.14057980000007,-6.596673299999964],[105.14993350000009,-6.591513499999962],[105.15106260000005,-6.588513699999965],[105.15351930000008,-6.587042199999928],[105.15859280000006,-6.576288599999941],[105.16434540000006,-6.573245899999961],[105.17622430000006,-6.578531599999963],[105.18200740000009,-6.583303899999976],[105.17691860000008,-6.590411099999926],[105.17424830000004,-6.59948],[105.18212950000009,-6.606527699999958],[105.18221340000008,-6.611000899999965],[105.18608150000006,-6.613172899999938],[105.19133060000007,-6.612136299999975],[105.19493930000004,-6.620257299999935],[105.19168150000007,-6.630681399999958],[105.19046080000004,-6.6408834],[105.18191590000004,-6.650860699999953],[105.17196720000004,-6.655504099999973],[105.17005210000008,-6.661252399999967],[105.17389740000004,-6.669300899999939],[105.17935240000008,-6.671937299999968],[105.18254150000007,-6.68019],[105.18385380000007,-6.679632599999934],[105.18856110000007,-6.669473499999981],[105.19106350000004,-6.669141199999956],[105.19074310000008,-6.666937699999949],[105.19631250000003,-6.664961699999935],[105.20423180000006,-6.657149199999935],[105.20486510000006,-6.647621099999981],[105.21052610000004,-6.646362699999941],[105.21244870000004,-6.6442909],[105.21633970000005,-6.645154899999966],[105.21667540000004,-6.642309599999976],[105.21484430000004,-6.639996],[105.216622,-6.638057199999935],[105.21842250000009,-6.639255],[105.21782740000003,-6.633976399999938],[105.21955930000007,-6.638532099999964],[105.22895110000007,-6.6430993],[105.23444420000004,-6.639012799999932],[105.24318750000003,-6.635439399999939],[105.24927580000008,-6.623455],[105.25437220000003,-6.608490899999936],[105.25843870000006,-6.605171699999971],[105.26041470000007,-6.6011963],[105.259606,-6.589625399999932],[105.25741630000005,-6.586024299999963],[105.25800380000004,-6.58321],[105.25543270000009,-6.581559699999957],[105.25505880000009,-6.579015199999958],[105.25292260000003,-6.5799522],[105.25159510000009,-6.574195399999951],[105.25043540000007,-6.573973199999955],[105.25428830000004,-6.572729099999947],[105.25097710000006,-6.570826499999953],[105.25337270000006,-6.569930099999965],[105.25143490000005,-6.569462299999941],[105.25434170000005,-6.566195499999935],[105.25198420000004,-6.566341899999941],[105.25169430000005,-6.564438299999949],[105.24982510000007,-6.564017799999931],[105.25299890000008,-6.562243],[105.24985560000005,-6.559766699999955],[105.25317440000003,-6.556971499999975],[105.25257170000003,-6.552224199999955],[105.25596670000004,-6.549454699999956],[105.25330410000004,-6.5476289],[105.25561580000004,-6.543923399999926],[105.25807250000008,-6.540392399999973],[105.26602990000004,-6.535496699999953],[105.26783050000006,-6.527467699999931],[105.26564840000003,-6.522833799999944]]],[[[105.72370950000004,-6.493546399999957],[105.72607460000006,-6.493175899999926],[105.72555580000005,-6.491168899999934],[105.71878090000007,-6.487990299999979],[105.71957440000006,-6.490712599999938],[105.72370950000004,-6.493546399999957]]],[[[105.80925030000009,-6.3991823],[105.81145520000007,-6.396501099999966],[105.80946390000008,-6.393596699999932],[105.80465740000005,-6.394920799999966],[105.80629770000007,-6.398467099999948],[105.80925030000009,-6.3991823]]],[[[106.17083920000005,-6.290031],[106.16917840000008,-6.2878705],[106.170521,-6.283754099999953],[106.17010250000004,-6.277960499999949],[106.17493810000008,-6.272276899999952],[106.17570830000005,-6.269016],[106.17473630000006,-6.251363],[106.16991450000006,-6.250959199999954],[106.16551240000007,-6.252506],[106.14759090000007,-6.251246699999967],[106.14576750000003,-6.251765899999953],[106.14537840000008,-6.254788599999927],[106.13874850000008,-6.254626499999972],[106.13432340000008,-6.258201799999938],[106.13241610000006,-6.258068299999934],[106.12458830000008,-6.254194],[106.12241390000008,-6.249288799999931],[106.11762270000008,-6.2517077],[106.11142,-6.251405],[106.10828430000004,-6.248615],[106.10742220000009,-6.243078899999944],[106.10097530000007,-6.231652899999972],[106.092255,-6.236078899999939],[106.08321410000008,-6.231297199999972],[106.07695040000004,-6.242818099999965],[106.07550080000004,-6.251985699999977],[106.07234990000006,-6.256781299999943],[106.057175,-6.266137799999967],[106.04959140000005,-6.268628799999931],[106.041199,-6.275570099999925],[106.03553040000008,-6.273455299999966],[106.02848850000004,-6.275710799999956],[106.02069130000007,-6.273662699999932],[106.00125160000005,-6.275415599999974],[105.99526250000008,-6.272317499999929],[105.99224890000005,-6.265150199999937],[105.99279060000003,-6.263111199999969],[105.985802,-6.258357199999978],[105.98101840000004,-6.2437693],[105.97173350000008,-6.245569299999943],[105.958115,-6.244835499999965],[105.950951,-6.248554799999965],[105.94688450000007,-6.245742899999925],[105.94836460000005,-6.242371699999978],[105.946976,-6.237453599999981],[105.93911780000008,-6.239054299999964],[105.93412820000003,-6.242354499999976],[105.93457830000006,-6.275457],[105.92919190000003,-6.279377499999953],[105.92202790000005,-6.274063699999942],[105.920113,-6.2699319],[105.92112770000006,-6.266441],[105.916367,-6.250012],[105.908852,-6.2444869],[105.90768470000006,-6.245479699999976],[105.90521280000007,-6.244326199999932],[105.90433540000004,-6.246059],[105.90267980000004,-6.242873699999961],[105.89852940000009,-6.243517499999939],[105.897736,-6.239283199999932],[105.89912450000008,-6.237522199999944],[105.89205210000006,-6.231074899999953],[105.887566,-6.222764599999948],[105.88495670000003,-6.221837599999958],[105.88138620000007,-6.221971099999962],[105.88002050000006,-6.227469],[105.88121830000006,-6.231714799999963],[105.878899,-6.233400899999936],[105.87610660000007,-6.2411447],[105.87187230000006,-6.236205599999948],[105.86547130000008,-6.239620699999932],[105.85601840000004,-6.241827499999943],[105.84941830000008,-6.242082],[105.84604350000006,-6.240304799999933],[105.83387030000006,-6.244286599999953],[105.82583990000006,-6.242300099999966],[105.82518330000005,-6.2437522],[105.82650280000007,-6.244623399999966],[105.82694570000007,-6.250323499999979],[105.82970620000003,-6.257033599999943],[105.82831890000006,-6.257690299999979],[105.82773440000005,-6.266805099999942],[105.830565,-6.2695759],[105.82552250000003,-6.2782246],[105.82651020000009,-6.289084299999956],[105.83160760000004,-6.294974899999943],[105.83681380000007,-6.296007199999963],[105.83779890000005,-6.294855799999937],[105.84025,-6.29656],[105.84113,-6.30573],[105.83862,-6.31495],[105.83645,-6.31622],[105.83429,-6.31493],[105.8307,-6.31588],[105.82813,-6.31879],[105.82924,-6.32737],[105.82345310000005,-6.345114699999954],[105.82426630000003,-6.351338799999951],[105.821028,-6.359113199999967],[105.82240890000008,-6.359688299999959],[105.81952510000008,-6.3605942],[105.81915680000009,-6.369527399999981],[105.82163580000008,-6.371541399999956],[105.82300940000005,-6.3756181],[105.81847160000007,-6.382655599999964],[105.82405,-6.38479],[105.82568,-6.39106],[105.81824990000007,-6.399213],[105.819176,-6.4002135],[105.82477,-6.39699],[105.82665090000006,-6.405285699999979],[105.82553,-6.42227],[105.82208,-6.43791],[105.8081,-6.47246],[105.79721,-6.489423699999975],[105.78266450000007,-6.506853299999932],[105.77190430000007,-6.516238599999951],[105.75185910000005,-6.522113299999944],[105.74522290000004,-6.519531799999925],[105.73468120000007,-6.521161],[105.73288,-6.51693],[105.73237390000008,-6.519931199999974],[105.73491310000009,-6.524046399999975],[105.73242260000006,-6.526732199999969],[105.72544390000007,-6.530990399999951],[105.71557670000004,-6.5327145],[105.70911330000007,-6.530946],[105.70850830000006,-6.527488199999937],[105.68793690000007,-6.522717099999966],[105.68316,-6.51399],[105.67926570000009,-6.513344899999936],[105.67423510000003,-6.509651899999938],[105.67294,-6.50382],[105.67781070000007,-6.492440899999963],[105.67576410000004,-6.485597899999959],[105.67908010000008,-6.479259799999966],[105.67708840000006,-6.475665299999946],[105.66852360000007,-6.471376499999963],[105.66588190000004,-6.471502899999962],[105.66775420000005,-6.478956599999947],[105.66391490000007,-6.481193399999938],[105.66376810000008,-6.482846799999948],[105.65642,-6.47833],[105.65000370000007,-6.481172399999934],[105.64786480000004,-6.486720599999956],[105.64954,-6.49232],[105.64625,-6.49699],[105.64006590000008,-6.500463],[105.64001820000004,-6.504383599999926],[105.63538130000006,-6.510480499999971],[105.63382170000006,-6.5159782],[105.62867190000009,-6.519663299999934],[105.62749250000007,-6.527193399999931],[105.62476820000006,-6.529837399999963],[105.62453510000006,-6.533979099999954],[105.62236870000004,-6.536846399999945],[105.62314840000005,-6.549068699999964],[105.61624840000007,-6.559015099999954],[105.616929,-6.5751781],[105.62133070000004,-6.578142799999966],[105.622638,-6.583170199999927],[105.62534420000009,-6.583300099999974],[105.62617480000006,-6.585669],[105.62276970000005,-6.5969009],[105.61739920000008,-6.600931499999945],[105.61817590000004,-6.616271199999971],[105.60924970000008,-6.632111899999927],[105.59673,-6.64873],[105.57970190000003,-6.657724],[105.57149880000009,-6.656633499999941],[105.56852920000006,-6.658308599999941],[105.56911930000007,-6.663752799999941],[105.57502040000008,-6.663010399999962],[105.57587,-6.664281399999936],[105.57336,-6.6736],[105.57067,-6.67626],[105.57243660000006,-6.679344599999979],[105.57050950000007,-6.681939199999931],[105.56873,-6.68324],[105.56209230000007,-6.680673099999979],[105.56140720000008,-6.686821],[105.555588,-6.693882099999939],[105.55489940000007,-6.696842699999934],[105.55123220000007,-6.697620799999982],[105.54736960000008,-6.701726],[105.54225440000005,-6.701116899999931],[105.54207950000006,-6.704461399999957],[105.52899580000008,-6.715106599999956],[105.52355310000007,-6.721613899999966],[105.507265,-6.729430199999967],[105.50680530000005,-6.737842499999942],[105.51191320000004,-6.743273299999942],[105.51212150000003,-6.757077199999969],[105.50333890000007,-6.765331199999935],[105.50185280000005,-6.770757399999979],[105.504922,-6.774343199999976],[105.50471,-6.77703],[105.50028990000004,-6.785228299999972],[105.49983190000006,-6.792452699999956],[105.48966220000005,-6.802924099999927],[105.47952610000004,-6.807527499999935],[105.48202470000007,-6.8151845],[105.47813370000006,-6.820249499999932],[105.46989680000007,-6.823527599999977],[105.46934220000009,-6.827399399999933],[105.46489540000005,-6.8280542],[105.46093110000004,-6.827830699999936],[105.45962190000006,-6.8251047],[105.45735390000004,-6.827634],[105.45298890000004,-6.827132699999936],[105.444511,-6.8233447],[105.44056360000008,-6.8191963],[105.43804220000004,-6.811875],[105.43567510000008,-6.8100521],[105.43539380000004,-6.8066805],[105.43850710000004,-6.804347299999961],[105.44171930000005,-6.798886399999958],[105.44019110000005,-6.797673399999951],[105.43618520000007,-6.799902299999928],[105.43497950000005,-6.7988586],[105.43687650000004,-6.791251599999953],[105.43404460000005,-6.789452899999958],[105.43441120000006,-6.7857551],[105.432957,-6.78385],[105.43623950000006,-6.784824],[105.43584370000008,-6.782422699999927],[105.43308440000004,-6.782031699999948],[105.43523770000007,-6.780242099999953],[105.43604580000004,-6.776951],[105.434938,-6.775303399999927],[105.43133190000003,-6.776575299999934],[105.429829,-6.773296399999936],[105.43164430000007,-6.773047099999928],[105.432016,-6.771208199999933],[105.43020330000007,-6.770626399999969],[105.43039380000005,-6.7673121],[105.42794390000006,-6.767422799999963],[105.42710970000007,-6.771962199999962],[105.42364030000005,-6.774343199999976],[105.42035220000008,-6.766713599999946],[105.41643020000004,-6.767666799999972],[105.41525450000006,-6.765788599999951],[105.41630240000006,-6.761045399999944],[105.41471270000005,-6.759248899999932],[105.41256220000008,-6.760227699999973],[105.41121060000006,-6.759109399999943],[105.41033850000008,-6.755012399999941],[105.40642910000008,-6.748823],[105.40204460000007,-6.748358499999938],[105.39604540000005,-6.744350499999939],[105.39201390000005,-6.7439874],[105.389898,-6.741692599999965],[105.387052,-6.734279499999957],[105.39438,-6.72523],[105.40144720000006,-6.727514],[105.400913,-6.717483699999946],[105.39898880000004,-6.712912599999981],[105.39453010000005,-6.708394399999975],[105.39169280000004,-6.695877],[105.39261450000004,-6.687443799999926],[105.39081040000008,-6.682488199999966],[105.38801470000004,-6.677320299999963],[105.38341080000004,-6.676559],[105.37759030000007,-6.672665199999926],[105.37473880000005,-6.658472499999959],[105.375287,-6.654551199999958],[105.37045820000009,-6.646451199999944],[105.36891160000005,-6.646804299999928],[105.36282110000008,-6.655028099999981],[105.35437810000008,-6.656903399999976],[105.34922,-6.65965],[105.34108480000003,-6.660739099999944],[105.33703,-6.66465],[105.32639640000008,-6.668971799999952],[105.32448230000006,-6.671885599999939],[105.32401660000005,-6.677114299999971],[105.32877,-6.682281399999965],[105.32684140000003,-6.690352699999949],[105.33081370000008,-6.694129],[105.33009,-6.6961],[105.32432,-6.69977],[105.31964,-6.70926],[105.3159,-6.709],[105.30608,-6.7165],[105.29853,-6.71868],[105.27924890000008,-6.735012199999971],[105.27598610000007,-6.741057199999943],[105.26955560000005,-6.746844499999952],[105.26357310000009,-6.760994],[105.25910510000006,-6.762484899999947],[105.249162,-6.759385799999961],[105.24529370000005,-6.759973299999956],[105.23454530000004,-6.757891099999938],[105.22962760000007,-6.7555352],[105.22288,-6.748333299999956],[105.21176910000008,-6.745543],[105.21261090000007,-6.7465126],[105.21091260000009,-6.747675399999935],[105.21178940000004,-6.750398799999971],[105.21060510000007,-6.750011099999938],[105.21051660000006,-6.752368899999965],[105.21358630000009,-6.758109099999956],[105.21278040000004,-6.760392799999977],[105.21086170000007,-6.760577599999976],[105.20947750000005,-6.762585699999931],[105.21042,-6.764338099999975],[105.21242,-6.76208],[105.21812550000004,-6.764233899999965],[105.22595570000004,-6.771992299999965],[105.22866710000005,-6.777487599999972],[105.23270080000003,-6.779690799999969],[105.23253020000004,-6.789566199999967],[105.23687810000007,-6.792103],[105.23954810000004,-6.799117399999943],[105.23592010000004,-6.802583499999969],[105.23826910000008,-6.803579799999966],[105.23939650000005,-6.813043],[105.23529630000007,-6.817154399999936],[105.23900090000006,-6.817432799999949],[105.24419150000006,-6.8246071],[105.23900830000008,-6.8311202],[105.24062820000006,-6.832313],[105.24014590000007,-6.835191899999927],[105.23763920000005,-6.835925699999962],[105.24058540000004,-6.835346199999947],[105.24094720000005,-6.839588099999958],[105.24299370000006,-6.838563199999953],[105.24321730000008,-6.8399305],[105.24463930000007,-6.839148699999953],[105.24627580000003,-6.840507],[105.25143940000004,-6.836594599999955],[105.25767230000008,-6.8427126],[105.25914810000006,-6.841776899999957],[105.259994,-6.8435943],[105.26168720000004,-6.843467899999951],[105.26239880000008,-6.846420699999953],[105.26556720000008,-6.844390199999964],[105.26706240000004,-6.844908799999928],[105.26796950000005,-6.842209599999933],[105.27273710000009,-6.843398199999967],[105.27258850000004,-6.839863799999932],[105.27656430000008,-6.833214299999952],[105.28133760000009,-6.8272981],[105.28851120000007,-6.82279],[105.29479,-6.80536],[105.30134,-6.80294],[105.31287,-6.80234],[105.32686,-6.80283],[105.35735640000007,-6.809520499999962],[105.39293,-6.82258],[105.40673,-6.82962],[105.41122,-6.83487],[105.41335,-6.84048],[105.41032,-6.84325],[105.40923,-6.8478],[105.41168,-6.85228],[105.41406,-6.8537],[105.41781,-6.85407],[105.42201,-6.85137],[105.42198,-6.84694],[105.41988,-6.84217],[105.42159,-6.83953],[105.42901,-6.83637],[105.43678,-6.83565],[105.45167,-6.84181],[105.46399,-6.85184],[105.46638,-6.85547],[105.47236,-6.85878],[105.47634,-6.86436],[105.48874,-6.86694],[105.49297,-6.86489],[105.4958,-6.8611],[105.50617,-6.86214],[105.53502470000006,-6.870043499999952],[105.53765110000006,-6.871960299999955],[105.53802260000003,-6.874277699999936],[105.5633,-6.857],[105.57291,-6.85625],[105.58234,-6.85355],[105.59342,-6.85376],[105.59644,-6.85096],[105.60047,-6.85059],[105.60477,-6.84571],[105.61913,-6.8432],[105.63208,-6.84274],[105.63423,-6.84142],[105.636554,-6.8433123],[105.64993190000007,-6.842887399999938],[105.65817460000005,-6.844667199999947],[105.66731170000008,-6.840401],[105.67123,-6.83613],[105.67313,-6.83711],[105.70837,-6.83631],[105.73118640000007,-6.839023899999972],[105.77043610000004,-6.848172599999941],[105.77207670000007,-6.846921699999939],[105.77434940000006,-6.8504525],[105.79513410000004,-6.842922399999964],[105.83527120000008,-6.835050799999976],[105.85222,-6.83346],[105.87144680000006,-6.833215699999926],[105.87488990000008,-6.8367814],[105.87964090000008,-6.837479299999927],[105.88177730000007,-6.840744499999971],[105.88347660000005,-6.836007099999961],[105.880257,-6.8340454],[105.88012730000008,-6.830808199999979],[105.88132510000008,-6.8298349],[105.88574260000007,-6.830797699999948],[105.88636820000005,-6.829024799999956],[105.88357580000007,-6.827882799999941],[105.88440740000004,-6.825437499999964],[105.88328590000003,-6.823085799999944],[105.88542970000009,-6.821100199999933],[105.88839760000008,-6.820752099999936],[105.88058510000008,-6.817488599999933],[105.88015020000006,-6.821869799999945],[105.87809030000005,-6.822290899999928],[105.87548870000006,-6.817840599999954],[105.87921180000006,-6.813677299999938],[105.87500040000003,-6.811579199999926],[105.87191050000007,-6.813560499999937],[105.86946140000003,-6.810598299999981],[105.86902650000007,-6.807226199999945],[105.87464940000007,-6.808891299999971],[105.87339060000005,-6.80581],[105.87604560000005,-6.806024499999978],[105.87793770000007,-6.803741899999977],[105.876572,-6.799602499999935],[105.87431370000007,-6.797520599999928],[105.87780030000005,-6.794757799999957],[105.87466470000004,-6.791881099999955],[105.87149090000008,-6.7940888],[105.87143740000005,-6.787482699999941],[105.86901130000007,-6.789974699999959],[105.86678350000005,-6.789958499999955],[105.86774480000008,-6.788468299999977],[105.86618840000006,-6.786941499999955],[105.86744730000004,-6.783901199999946],[105.86403690000009,-6.783458699999926],[105.86296880000003,-6.781258599999944],[105.86701240000008,-6.780904799999973],[105.86646310000003,-6.779397],[105.86808810000008,-6.778619299999946],[105.86866030000004,-6.775151699999981],[105.87295570000003,-6.771739],[105.87213940000004,-6.769783],[105.87405430000007,-6.7704935],[105.87403140000004,-6.768107899999961],[105.87661780000008,-6.768843699999934],[105.87599980000005,-6.766028899999981],[105.87760960000008,-6.767149399999937],[105.88183630000009,-6.763173599999959],[105.88403360000007,-6.7644973],[105.882851,-6.761129399999959],[105.88415560000004,-6.760747899999956],[105.88494150000008,-6.757405799999958],[105.88303410000009,-6.755541799999946],[105.88403360000007,-6.754249099999981],[105.88623080000008,-6.754843299999948],[105.88481940000008,-6.752008499999931],[105.88645970000005,-6.751903099999936],[105.88481940000008,-6.750438199999962],[105.88614690000009,-6.749499799999967],[105.88604770000006,-6.746152399999971],[105.88853490000008,-6.746567699999957],[105.88719220000007,-6.744977],[105.88938180000008,-6.744634599999927],[105.88842050000005,-6.7427936],[105.88994630000008,-6.740621099999942],[105.89196820000006,-6.740776499999981],[105.891373,-6.739040399999965],[105.89347110000006,-6.738241699999946],[105.89226570000005,-6.735810299999969],[105.89386790000003,-6.735723],[105.89357790000008,-6.730598899999961],[105.89084660000009,-6.730589399999928],[105.89202150000006,-6.727088],[105.89113650000007,-6.725329],[105.89319650000004,-6.723723899999925],[105.89250980000008,-6.720810899999947],[105.89492830000006,-6.719920699999932],[105.89605,-6.71628],[105.89236,-6.71537],[105.8926,-6.71325],[105.88905,-6.71188],[105.88913,-6.7109],[105.89127,-6.71125],[105.8898,-6.70988],[105.89103,-6.71013],[105.89238,-6.70784],[105.89148,-6.70617],[105.89277,-6.70759],[105.89241,-6.71235],[105.89398,-6.71363],[105.89351,-6.71218],[105.89509,-6.71246],[105.8934,-6.71052],[105.89541,-6.71165],[105.89571,-6.70639],[105.89707,-6.71396],[105.90046,-6.71609],[105.89973,-6.70943],[105.89837,-6.70895],[105.89899,-6.70541],[105.90377,-6.7053],[105.89967,-6.70613],[105.90125,-6.71245],[105.90708,-6.7103],[105.90511,-6.71277],[105.90804,-6.71292],[105.91389,-6.70879],[105.91047,-6.71254],[105.90634,-6.71328],[105.9022,-6.71245],[105.90163,-6.71482],[105.9037,-6.71781],[105.90243,-6.71889],[105.90424,-6.71862],[105.90462,-6.71699],[105.91076,-6.71753],[105.9111,-6.71935],[105.91749680000004,-6.7191311],[105.92312660000005,-6.710189899999932],[105.92797890000008,-6.706750399999976],[105.92784160000008,-6.697766399999978],[105.93271670000007,-6.693407599999944],[105.93271670000007,-6.691017699999975],[105.93683660000005,-6.690093099999956],[105.93857610000003,-6.687053299999945],[105.93682480000007,-6.671947799999941],[105.93917040000008,-6.6631609],[105.94347420000008,-6.658215599999949],[105.94333690000008,-6.647266399999978],[105.94510690000004,-6.645058699999936],[105.94256630000007,-6.636184799999967],[105.94277990000006,-6.629522899999927],[105.93977390000003,-6.625714399999936],[105.93303720000006,-6.624999599999967],[105.93168680000008,-6.623181399999964],[105.93196140000003,-6.617076],[105.92866550000008,-6.616021199999977],[105.93105380000009,-6.614854899999955],[105.93087730000008,-6.613549699999965],[105.93363230000006,-6.613273599999957],[105.933359,-6.601854699999933],[105.94247470000005,-6.592713899999978],[105.94683950000007,-6.582875799999954],[105.94945560000008,-6.584546099999955],[105.95160710000005,-6.583892399999968],[105.95918310000008,-6.570676399999968],[105.96485170000005,-6.571681099999978],[105.96588170000007,-6.569427099999928],[105.97094,-6.565844599999934],[105.97208920000008,-6.561325599999975],[105.97084840000008,-6.556073699999956],[105.97493780000008,-6.553099699999962],[105.97637970000005,-6.5481831],[105.97430450000007,-6.543666899999948],[105.97581520000006,-6.542426199999966],[105.97917210000008,-6.543597299999931],[105.98529090000005,-6.540899399999944],[105.98152960000004,-6.523822399999972],[105.98330720000007,-6.525152299999945],[105.98762550000004,-6.525082699999928],[105.98973880000005,-6.519670099999928],[105.99250060000008,-6.517316],[105.98384890000005,-6.504119499999945],[105.98899880000005,-6.496758099999965],[105.99095190000008,-6.495537799999966],[105.99260750000008,-6.496496299999933],[106.00097690000007,-6.478167599999949],[106.00321230000009,-6.476202099999966],[106.00795780000004,-6.476179199999933],[106.00945310000009,-6.474239499999953],[106.00842320000004,-6.466273],[106.01059760000004,-6.4582697],[106.01175720000003,-6.456441499999926],[106.01743350000004,-6.453860899999938],[106.02082090000005,-6.445264499999951],[106.024506,-6.441888499999948],[106.02591740000008,-6.431929699999955],[106.03563720000005,-6.423138799999947],[106.03820070000006,-6.4224216],[106.04550970000008,-6.412477599999931],[106.05173530000008,-6.411876799999959],[106.05624420000004,-6.413830399999938],[106.06048620000007,-6.413379799999973],[106.06691010000009,-6.408482699999979],[106.06977110000008,-6.4090358],[106.07194550000008,-6.411876899999925],[106.07265510000008,-6.410730099999967],[106.07328070000005,-6.4117533],[106.07835420000004,-6.41142],[106.08009370000008,-6.413155699999948],[106.079346,-6.413977299999942],[106.08360930000003,-6.4147714],[106.086339,-6.423739299999966],[106.09412,-6.427722699999947],[106.10118130000006,-6.427219099999945],[106.10530120000004,-6.421851799999956],[106.10652190000008,-6.424041899999963],[106.11278570000007,-6.419143899999938],[106.11347230000007,-6.412842],[106.11679870000006,-6.407438499999955],[106.11720310000004,-6.398370499999942],[106.12155950000005,-6.390296599999942],[106.12110930000006,-6.384437799999944],[106.12613710000005,-6.383420199999932],[106.13056210000008,-6.375665899999944],[106.12899050000004,-6.371748699999955],[106.12680850000004,-6.371256499999959],[106.12550390000007,-6.369113699999957],[106.12600740000005,-6.363225199999931],[106.12378720000004,-6.356473599999958],[106.12516050000005,-6.356520399999965],[106.12553440000005,-6.358354299999974],[106.12967710000004,-6.357420599999955],[106.12913540000005,-6.353337],[106.13224060000005,-6.344426399999975],[106.13166840000008,-6.3361571],[106.12960080000005,-6.333258299999954],[106.13013490000009,-6.327962599999978],[106.13590270000009,-6.325410099999942],[106.14072450000003,-6.326591699999938],[106.14822420000007,-6.324151699999959],[106.14887270000008,-6.325300399999946],[106.15149720000005,-6.325001899999961],[106.150925,-6.319640399999969],[106.15809660000008,-6.313291299999946],[106.15659360000006,-6.309159],[106.15911130000006,-6.301925899999958],[106.156441,-6.298142699999971],[106.15738710000005,-6.2967389],[106.16078220000009,-6.296464699999945],[106.16133150000007,-6.294668899999976],[106.16395060000008,-6.295517399999937],[106.16506680000003,-6.2929858],[106.16756740000005,-6.292878799999926],[106.17083920000005,-6.290031]]]]},"properties":{"shapeName":"Pandeglang","shapeISO":"","shapeID":"22746128B27499275553510","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[108.42950210000004,-7.500543099999959],[108.42632280000004,-7.494880699999953],[108.41950020000007,-7.492619499999932],[108.41930390000005,-7.489318799999978],[108.41731140000007,-7.488236699999959],[108.41479660000005,-7.489215499999943],[108.41466530000008,-7.493853],[108.41349390000005,-7.495309099999929],[108.41229840000005,-7.494478199999946],[108.41186270000009,-7.497829299999978],[108.410372,-7.49809],[108.410466,-7.494454],[108.406923,-7.493713],[108.406866,-7.488752],[108.401403,-7.485476],[108.40238820000008,-7.4808814],[108.40057910000007,-7.478204699999935],[108.39067540000008,-7.476978799999927],[108.38400430000007,-7.479473399999961],[108.382007,-7.477455],[108.38017140000005,-7.479037499999947],[108.37356,-7.478585],[108.36707330000007,-7.483551199999965],[108.36315120000006,-7.488641499999972],[108.35613560000007,-7.4904202],[108.35197870000007,-7.493082699999945],[108.35175630000003,-7.500338099999965],[108.33600910000007,-7.507841499999927],[108.33308110000007,-7.513501099999928],[108.333939,-7.524045199999932],[108.336465,-7.528253],[108.334392,-7.529904],[108.33264650000007,-7.538998599999957],[108.33024080000007,-7.544905],[108.32825150000008,-7.545916599999941],[108.32979810000006,-7.5463577],[108.32772560000006,-7.548366399999964],[108.32747220000005,-7.5508444],[108.334069,-7.548859],[108.334079,-7.55103],[108.33835,-7.552638],[108.339046,-7.554179],[108.34241130000004,-7.553629],[108.34244130000008,-7.555130099999928],[108.347276,-7.557739],[108.347833,-7.559646],[108.353612,-7.562194],[108.352442,-7.56389],[108.353818,-7.565665],[108.352695,-7.566433],[108.355118,-7.567583],[108.35312,-7.569125],[108.354386,-7.568953],[108.354581,-7.570906],[108.356371,-7.571914],[108.355029,-7.574664],[108.357002,-7.578123],[108.355468,-7.585186],[108.35732610000008,-7.586049199999934],[108.355817,-7.591184],[108.35724010000007,-7.592828399999973],[108.35658,-7.595717199999967],[108.361178,-7.600445],[108.358772,-7.601534],[108.35963390000006,-7.611861099999942],[108.35707790000004,-7.6144249],[108.35663590000007,-7.6172038],[108.35819030000005,-7.618348199999957],[108.35633830000006,-7.618671],[108.35814170000003,-7.620978199999968],[108.355141,-7.623691599999972],[108.35695840000005,-7.635252599999944],[108.35340380000008,-7.638739],[108.35507230000007,-7.6445853],[108.36169710000007,-7.645440699999938],[108.36049460000004,-7.6474226],[108.361867,-7.650451],[108.360597,-7.654787],[108.363249,-7.656467],[108.36334620000008,-7.6582997],[108.366182,-7.658605],[108.365531,-7.660647],[108.361665,-7.662028],[108.36016,-7.664347],[108.36205,-7.665709],[108.361663,-7.668112],[108.358357,-7.66777],[108.35611340000008,-7.670083899999952],[108.35754440000005,-7.671812099999954],[108.354247,-7.672194],[108.354983,-7.674837],[108.353038,-7.678007],[108.355671,-7.68209],[108.354808,-7.683678],[108.35053810000005,-7.683883699999967],[108.34749920000007,-7.680957099999944],[108.34027950000007,-7.679747],[108.33596570000009,-7.684356299999934],[108.33186020000005,-7.685316799999953],[108.33253020000006,-7.686578],[108.33476330000008,-7.686442399999976],[108.3342,-7.689413199999933],[108.336446,-7.691289499999925],[108.33354250000008,-7.690514699999937],[108.33178960000004,-7.692089899999928],[108.329328,-7.690696],[108.326475,-7.688322],[108.323721,-7.682996],[108.321747,-7.685289],[108.324266,-7.688167],[108.321608,-7.691103],[108.324859,-7.691719],[108.324483,-7.693092],[108.317707,-7.69335],[108.316379,-7.690157],[108.314268,-7.690409],[108.317234,-7.698722],[108.32348,-7.702168],[108.32379950000006,-7.712766099999953],[108.32604710000004,-7.710133499999927],[108.32806310000007,-7.713379299999929],[108.329702,-7.709599],[108.331887,-7.712552],[108.33035,-7.716387],[108.323653,-7.72012],[108.320336,-7.714036],[108.31860630000006,-7.718439299999943],[108.31546150000008,-7.712383599999953],[108.31200280000007,-7.718738599999938],[108.320836,-7.721099],[108.321674,-7.722975],[108.319395,-7.726214],[108.315829,-7.724299],[108.312711,-7.724431],[108.31421,-7.731134],[108.317861,-7.738128],[108.31656070000008,-7.742222099999935],[108.31937510000006,-7.742393199999981],[108.32355990000008,-7.746679799999981],[108.32227050000006,-7.749817699999937],[108.323774,-7.751116599999932],[108.32428710000005,-7.75885],[108.32167770000007,-7.760537399999976],[108.323345,-7.762663],[108.322806,-7.768444],[108.324962,-7.778617],[108.322935,-7.78344],[108.31782,-7.786318],[108.323373,-7.790505],[108.32356,-7.795311],[108.327143,-7.795535],[108.330304,-7.797778],[108.328577,-7.800846],[108.329277,-7.803885],[108.335147,-7.806168],[108.339361,-7.809695],[108.338926,-7.815006],[108.34047490000006,-7.816615899999931],[108.34315,-7.81783],[108.34304,-7.8197],[108.34985,-7.81666],[108.362601,-7.817513],[108.371119,-7.813938],[108.375359,-7.813577],[108.378984,-7.814865],[108.380034,-7.813974],[108.40898,-7.81707],[108.418069,-7.819552],[108.44059,-7.82084],[108.447032,-7.819202],[108.448471,-7.812986],[108.475423,-7.805921],[108.481793,-7.802535],[108.483767,-7.798028],[108.493794,-7.793743],[108.495628,-7.794543],[108.499267,-7.789119],[108.500751,-7.783957],[108.503211,-7.785357],[108.501509,-7.780928],[108.504517,-7.778764],[108.502171,-7.776018],[108.504573,-7.774112],[108.505249,-7.767225],[108.507844,-7.762473],[108.50437,-7.749579],[108.503468,-7.748603],[108.50259,-7.749873],[108.499198,-7.749452],[108.497583,-7.746959],[108.497196,-7.738911],[108.499132,-7.733597],[108.503363,-7.728265],[108.500369,-7.723261],[108.50179,-7.72819],[108.50037,-7.7302],[108.498552,-7.728112],[108.497761,-7.719028],[108.50061,-7.721326],[108.503695,-7.709157],[108.515217,-7.699537],[108.53017,-7.693947],[108.53873040000008,-7.692679599999963],[108.540063,-7.690965],[108.562397,-7.686526],[108.594738,-7.683623],[108.595948,-7.682211],[108.64135,-7.68789],[108.651677,-7.694395],[108.655765,-7.699768],[108.655479,-7.705969],[108.653518,-7.704963],[108.650761,-7.709346],[108.6481,-7.71048],[108.65024,-7.71163],[108.64896,-7.71443],[108.65105,-7.71689],[108.65094,-7.71899],[108.65686,-7.72234],[108.65952,-7.72203],[108.65951,-7.72359],[108.66506,-7.72495],[108.66447,-7.72667],[108.66653,-7.72911],[108.66919,-7.72793],[108.66981,-7.73096],[108.67143,-7.73031],[108.67171,-7.72625],[108.67432,-7.72632],[108.67363,-7.72526],[108.67519,-7.72252],[108.67734,-7.72298],[108.67802,-7.7215],[108.6758,-7.71824],[108.67613,-7.71629],[108.665769,-7.707426],[108.659051,-7.70443],[108.659061,-7.69915],[108.663062,-7.692765],[108.672497,-7.684069],[108.687674,-7.677977],[108.709702,-7.676947],[108.722974,-7.679512],[108.732448,-7.683866],[108.733317,-7.682699],[108.738194,-7.683871],[108.7423,-7.687477],[108.750036,-7.689705],[108.756428,-7.694726],[108.76237,-7.696519],[108.765064,-7.695718],[108.76526,-7.69098],[108.768006,-7.690947],[108.77151,-7.693559],[108.770411,-7.690881],[108.77263670000008,-7.6894611],[108.774271,-7.691043],[108.77583920000006,-7.689144399999975],[108.77845660000008,-7.692475599999966],[108.776712,-7.693883],[108.777718,-7.697878],[108.776658,-7.699495],[108.780803,-7.694045],[108.78518450000007,-7.6939866],[108.78823020000004,-7.689560799999981],[108.79417890000008,-7.691416799999956],[108.79508620000007,-7.6882226],[108.79686020000008,-7.687805899999944],[108.794449,-7.683981],[108.79428870000004,-7.680813699999931],[108.80138150000005,-7.674432499999966],[108.79950720000005,-7.667864699999939],[108.79783630000009,-7.666854299999954],[108.79581450000006,-7.669038199999932],[108.79122170000005,-7.670302799999945],[108.78644570000006,-7.668131699999947],[108.78485870000009,-7.665093799999966],[108.78530120000005,-7.658918699999958],[108.77922060000009,-7.658097599999962],[108.77766420000006,-7.652329799999961],[108.77273560000003,-7.655473599999937],[108.767952,-7.652984],[108.76484690000007,-7.650125899999978],[108.764,-7.645776699999942],[108.75493620000009,-7.639647399999944],[108.75528720000005,-7.635096899999951],[108.75001530000009,-7.634485099999949],[108.74800110000007,-7.6304292],[108.74723820000008,-7.620766099999969],[108.74552920000008,-7.619222099999945],[108.74082950000007,-7.619061399999964],[108.74168570000006,-7.613743599999964],[108.73468020000007,-7.616054399999939],[108.732193,-7.613706499999978],[108.73217010000008,-7.611971299999936],[108.73569490000006,-7.612053799999956],[108.73716740000003,-7.610501699999929],[108.73760990000005,-7.603243299999974],[108.741478,-7.599824799999965],[108.74097450000005,-7.592513],[108.744278,-7.591354299999978],[108.74745940000008,-7.594066],[108.75063330000006,-7.591903099999968],[108.74864960000008,-7.586123799999939],[108.752266,-7.58467],[108.75113680000004,-7.576595199999929],[108.74768830000005,-7.574964399999942],[108.74949650000008,-7.571932199999935],[108.74854280000005,-7.567302099999949],[108.754715,-7.559193499999935],[108.75137330000007,-7.553417099999933],[108.75124360000007,-7.545062399999949],[108.74414830000006,-7.539790499999981],[108.743866,-7.533063799999979],[108.73721860000006,-7.517505599999936],[108.73545080000008,-7.505031499999973],[108.72337490000007,-7.489340399999946],[108.72003250000006,-7.480479599999967],[108.72018440000005,-7.471951399999966],[108.71601690000006,-7.466276199999982],[108.70650480000006,-7.470514499999979],[108.70469020000007,-7.472719799999936],[108.70690940000009,-7.475136499999962],[108.70416820000008,-7.476665699999955],[108.70227670000008,-7.476210599999945],[108.69617140000008,-7.467597099999978],[108.695479,-7.464651799999956],[108.69665060000005,-7.461062599999934],[108.68608480000006,-7.460684699999945],[108.684549,-7.463170799999943],[108.68150280000003,-7.462203899999963],[108.68034190000009,-7.463294],[108.67767410000005,-7.461506699999973],[108.66808480000009,-7.45993],[108.66621810000004,-7.460249499999975],[108.66741190000005,-7.4616006],[108.66455080000009,-7.463258399999972],[108.65829370000006,-7.4640648],[108.65695940000006,-7.468100099999958],[108.648999,-7.467555199999936],[108.64712230000004,-7.468828299999927],[108.64768240000006,-7.476490899999931],[108.64654460000008,-7.478308599999934],[108.64799640000007,-7.481794099999945],[108.65133780000008,-7.483153399999935],[108.65003370000005,-7.488064],[108.65560850000008,-7.492800299999942],[108.657293,-7.492697799999974],[108.65793040000005,-7.498210799999981],[108.65618360000008,-7.5031396],[108.65658230000008,-7.511454399999934],[108.65396920000006,-7.529199099999971],[108.64954530000006,-7.533186799999953],[108.64819680000005,-7.537883],[108.63518340000007,-7.54279],[108.62915080000005,-7.548539799999958],[108.62637990000007,-7.548036899999943],[108.62232030000007,-7.550141699999926],[108.62261,-7.55501],[108.61428,-7.55342],[108.60692390000008,-7.553908399999955],[108.59521,-7.56323],[108.58386040000005,-7.560752899999954],[108.57734310000006,-7.566601],[108.57129450000008,-7.566390199999944],[108.56908240000007,-7.563850599999967],[108.55820990000007,-7.561264299999948],[108.54948940000008,-7.556862899999942],[108.548456,-7.564792099999977],[108.54473880000006,-7.569828099999938],[108.528778,-7.571057599999961],[108.52681210000009,-7.567886599999952],[108.52774220000003,-7.5648114],[108.521102,-7.559082499999931],[108.51915480000008,-7.554843699999935],[108.521828,-7.555502899999965],[108.52507040000006,-7.552883],[108.52213630000006,-7.550769],[108.52089040000004,-7.544345699999951],[108.52523410000003,-7.538949599999967],[108.52823770000003,-7.537614899999937],[108.54063410000003,-7.538914499999976],[108.54227540000005,-7.5379246],[108.535682,-7.535810399999946],[108.52734350000009,-7.5292754],[108.52759230000004,-7.526908099999957],[108.51935180000004,-7.527365199999963],[108.518672,-7.525922699999967],[108.51630720000009,-7.528030899999976],[108.51026970000004,-7.527817499999969],[108.50271140000007,-7.534294299999942],[108.50008730000008,-7.534315299999946],[108.49572910000006,-7.530814599999928],[108.48514320000004,-7.536136899999974],[108.48421010000004,-7.534311099999968],[108.47615740000003,-7.531489199999953],[108.47472370000008,-7.52924],[108.47465060000007,-7.524076599999944],[108.47040020000009,-7.519666899999947],[108.47240810000005,-7.518195299999945],[108.46074110000006,-7.5174808],[108.45774220000004,-7.515149799999961],[108.45568540000005,-7.510239699999943],[108.44748090000007,-7.509157899999934],[108.44490390000004,-7.510096899999951],[108.43883630000005,-7.5085929],[108.43411940000004,-7.505802799999969],[108.42950210000004,-7.500543099999959]]]},"properties":{"shapeName":"Pangandaran","shapeISO":"","shapeID":"22746128B69771872359700","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.25536880000004,-7.588880699999947],[117.25390880000009,-7.589416799999981],[117.2542228000001,-7.591171199999962],[117.25617420000003,-7.590069699999958],[117.25536880000004,-7.588880699999947]]],[[[117.44511590000002,-7.574986],[117.44272120000005,-7.57506],[117.441027,-7.57886],[117.440869,-7.582355],[117.44299910000007,-7.585206],[117.44984990000012,-7.58955],[117.455531,-7.588506],[117.449582,-7.578286],[117.44511590000002,-7.574986]]],[[[117.88450810000006,-7.532261],[117.88186210000003,-7.532556],[117.886333,-7.533326],[117.88450810000006,-7.532261]]],[[[117.28819190000002,-7.525086],[117.28226810000001,-7.527518],[117.2820640000001,-7.531331],[117.279617,-7.531291],[117.27960590000009,-7.53407],[117.2839259000001,-7.538785],[117.290686,-7.539645],[117.320683,-7.537247],[117.326538,-7.53487],[117.33587320000004,-7.528039],[117.31092980000005,-7.529211],[117.28819190000002,-7.525086]]],[[[117.27479530000005,-7.531623599999932],[117.27628170000003,-7.524354699999947],[117.27439110000012,-7.520145899999932],[117.27427630000011,-7.531816899999967],[117.2771196000001,-7.537371299999961],[117.277538,-7.534778],[117.27479530000005,-7.531623599999932]]],[[[117.4434030000001,-7.512076],[117.438007,-7.51263],[117.423761,-7.518682],[117.43110680000007,-7.539314],[117.433705,-7.539702],[117.43327690000001,-7.536595],[117.43810810000002,-7.534157],[117.439902,-7.530417],[117.4436971,-7.517279],[117.4434030000001,-7.512076]]],[[[117.184415,-7.492644],[117.17935490000002,-7.492987],[117.180518,-7.493383],[117.17618510000011,-7.499157],[117.175176,-7.506112],[117.17662610000002,-7.507285],[117.17978510000012,-7.506123],[117.17781590000004,-7.507093],[117.177926,-7.508417],[117.18239110000002,-7.507116],[117.1828829000001,-7.505588],[117.18113290000008,-7.505343],[117.19731600000011,-7.501416],[117.184415,-7.492644]]],[[[117.48122890000002,-7.480826],[117.48032320000004,-7.479346],[117.476833,-7.482279],[117.4745362000001,-7.489037],[117.476064,-7.493616],[117.47929390000002,-7.495836],[117.481203,-7.495062],[117.48054600000012,-7.497739],[117.4824569000001,-7.498849],[117.48320390000003,-7.496058],[117.48165590000008,-7.493973],[117.48354190000009,-7.493223],[117.48458990000006,-7.495399],[117.48264080000001,-7.501026],[117.48341590000007,-7.502431],[117.485613,-7.495077],[117.484776,-7.485638],[117.48571310000011,-7.485047],[117.48409490000006,-7.485004],[117.48411220000003,-7.481404],[117.48122890000002,-7.480826]]],[[[117.87158990000012,-7.443142],[117.86640080000006,-7.440009],[117.87027080000007,-7.443163],[117.86936,-7.445669],[117.87199810000004,-7.452951],[117.877819,-7.46056],[117.87810080000008,-7.455988],[117.87659780000001,-7.455479],[117.87682390000009,-7.458677],[117.87158990000012,-7.443142]]],[[[117.79268290000005,-7.43214],[117.78893710000011,-7.433756],[117.7887899000001,-7.437327],[117.793836,-7.4346],[117.79601900000011,-7.435343],[117.79610690000004,-7.433689],[117.79268290000005,-7.43214]]],[[[117.5928080000001,-7.404932],[117.59399210000004,-7.403576],[117.592857,-7.40192],[117.5851980000001,-7.39863],[117.58690400000012,-7.403638],[117.5928080000001,-7.404932]]],[[[117.746995,-7.396135],[117.74355910000008,-7.398257],[117.75108310000007,-7.400694],[117.750807,-7.398091],[117.746995,-7.396135]]],[[[117.712881,-7.396761],[117.712737,-7.394678],[117.710172,-7.392613],[117.712881,-7.396761]]],[[[117.81188390000011,-7.396366],[117.80805490000012,-7.39193],[117.80768200000011,-7.396473],[117.80691190000005,-7.393192],[117.801594,-7.392074],[117.80284610000001,-7.401277],[117.80736800000011,-7.40354],[117.80952590000004,-7.402674],[117.811921,-7.404593],[117.81396290000009,-7.403711],[117.81630790000008,-7.405381],[117.81741710000006,-7.403655],[117.81188390000011,-7.396366]]],[[[117.74868010000012,-7.362682],[117.74558920000004,-7.363156],[117.74278010000012,-7.36567],[117.74360990000002,-7.37468],[117.74630810000008,-7.37271],[117.74677280000003,-7.374102],[117.74878090000004,-7.374019],[117.75046210000005,-7.371476],[117.75061510000012,-7.363975],[117.74868010000012,-7.362682]]],[[[117.534577,-7.342623],[117.53168690000007,-7.339929],[117.5334008000001,-7.34165],[117.53174920000004,-7.344609],[117.5346439000001,-7.351668],[117.534577,-7.342623]]],[[[118.111284,-7.297262],[118.110425,-7.296622],[118.107774,-7.298725],[118.108571,-7.300306],[118.10627780000004,-7.302765],[118.1050891000001,-7.302649],[118.10532200000011,-7.300987],[118.10369990000004,-7.302019],[118.10473490000004,-7.303679],[118.103153,-7.305423],[118.10567810000009,-7.308074],[118.11123,-7.309089],[118.113899,-7.30579],[118.11388720000002,-7.301272],[118.111284,-7.297262]]],[[[118.011371,-7.221964],[118.01149490000012,-7.219638],[118.00914080000007,-7.216675],[118.00918580000007,-7.220693],[118.011371,-7.221964]]],[[[118.192586,-7.196299],[118.19063990000006,-7.196516],[118.19025220000003,-7.199751],[118.193094,-7.198845],[118.192586,-7.196299]]],[[[118.4055952000001,-7.177545],[118.394833,-7.182973],[118.39542410000001,-7.184932],[118.401903,-7.182009],[118.3925650000001,-7.188854],[118.38843,-7.189242],[118.38655510000001,-7.191125],[118.3816541000001,-7.191286],[118.38098810000008,-7.193064],[118.382472,-7.19306],[118.37953010000001,-7.194425],[118.37252300000011,-7.195657],[118.36929710000004,-7.192934],[118.3677530000001,-7.193501],[118.36880780000001,-7.19674],[118.36860700000011,-7.199369],[118.36766590000002,-7.199101],[118.369989,-7.200408],[118.3800020000001,-7.195807],[118.38450710000006,-7.197461],[118.38909820000003,-7.194084],[118.39794190000009,-7.191983],[118.401147,-7.18778],[118.400328,-7.184665],[118.4051531,-7.184441],[118.40957710000009,-7.181789],[118.4055952000001,-7.177545]]],[[[118.40837510000006,-7.173539],[118.41248990000008,-7.179857],[118.40908210000009,-7.188224],[118.41143690000001,-7.18599],[118.41306910000003,-7.1798],[118.40994110000008,-7.173999],[118.40837510000006,-7.173539]]],[[[118.280336,-7.147192],[118.28097,-7.144486],[118.277429,-7.142584],[118.276943,-7.145947],[118.280336,-7.147192]]],[[[118.236555,-7.085518],[118.23464590000003,-7.084968],[118.23667880000005,-7.086534],[118.23450910000008,-7.090945],[118.236109,-7.094184],[118.23894610000002,-7.090954],[118.236555,-7.085518]]],[[[118.17759600000011,-7.07306],[118.17403700000011,-7.073535],[118.16669990000003,-7.084365],[118.16179810000006,-7.088593],[118.156707,-7.090287],[118.15296520000004,-7.088399],[118.15223690000005,-7.091331],[118.16341420000003,-7.091464],[118.16904490000002,-7.089702],[118.173191,-7.079291],[118.17759600000011,-7.07306]]],[[[118.65432310000006,-7.070921099999964],[118.654907,-7.065547099999947],[118.65303790000007,-7.062684799999943],[118.65005890000009,-7.061399799999947],[118.64807280000002,-7.0663649],[118.64938720000009,-7.071125599999959],[118.65064280000001,-7.071096399999931],[118.65116880000005,-7.073024],[118.65432310000006,-7.070921099999964]]],[[[117.99450220000006,-7.068029],[117.99832390000006,-7.064102],[117.99681010000006,-7.060934],[117.994253,-7.062078],[117.98958310000012,-7.067739],[117.99450220000006,-7.068029]]],[[[118.0419581000001,-7.034328],[118.036184,-7.035847],[118.03460110000003,-7.037668],[118.04298520000009,-7.037895],[118.044067,-7.035908],[118.0419581000001,-7.034328]]],[[[118.8089629000001,-6.974673],[118.8088891000001,-6.970651],[118.80765290000011,-6.970216],[118.8082260000001,-6.972529],[118.8046462000001,-6.974762],[118.80808490000004,-6.97646],[118.8089629000001,-6.974673]]],[[[118.86022190000006,-6.928065],[118.85890790000008,-6.926723],[118.856561,-6.927626],[118.855021,-6.933347],[118.854297,-6.932642],[118.85500190000005,-6.931933],[118.85353420000001,-6.932085],[118.85420810000005,-6.93367],[118.85657,-6.933207],[118.86013910000008,-6.930907],[118.86022190000006,-6.928065]]],[[[119.02220100000011,-6.906494],[119.02179490000003,-6.903226],[119.01928610000004,-6.906039],[119.019398,-6.908051],[119.02140680000002,-6.908957],[119.023475,-6.906133],[119.02220100000011,-6.906494]]],[[[119.070148,-6.89256],[119.06905390000009,-6.891689],[119.06997410000008,-6.893064],[119.0680099000001,-6.893831],[119.067359,-6.897731],[119.06911580000008,-6.89594],[119.070148,-6.89256]]],[[[118.905782,-6.887585],[118.91106900000011,-6.884687],[118.90990510000006,-6.881902],[118.90374410000004,-6.883774],[118.8972281,-6.891134],[118.90195090000009,-6.89044],[118.905782,-6.887585]]],[[[119.137064,-6.881823],[119.13630410000007,-6.879065],[119.13664,-6.882107],[119.138026,-6.881534],[119.137064,-6.881823]]],[[[119.134795,-6.859622],[119.1303749000001,-6.863681],[119.12925310000003,-6.866803],[119.1349451000001,-6.874827],[119.13879490000011,-6.862928],[119.13714790000006,-6.860093],[119.134795,-6.859622]]],[[[119.1499510000001,-6.86356],[119.14679920000003,-6.859508],[119.14976990000002,-6.864074],[119.14994700000011,-6.867968],[119.15127110000003,-6.865006],[119.1499510000001,-6.86356]]],[[[118.964448,-6.864878],[118.9669669000001,-6.863371],[118.9689638000001,-6.858677],[118.967872,-6.855256],[118.9645531000001,-6.852649],[118.962252,-6.854081],[118.96137220000003,-6.858116],[118.9621102000001,-6.862369],[118.964448,-6.864878]]],[[[119.11425190000011,-6.836823],[119.10890410000002,-6.837881],[119.09857210000007,-6.847256],[119.094255,-6.858824],[119.095164,-6.859536],[119.09395010000003,-6.861777],[119.09698490000005,-6.865329],[119.097247,-6.867685],[119.095897,-6.868004],[119.101198,-6.868996],[119.10624910000001,-6.865333],[119.10397390000003,-6.86486],[119.10508490000007,-6.863826],[119.10787490000007,-6.864634],[119.11521890000006,-6.859886],[119.11783,-6.860841],[119.1183559000001,-6.85964],[119.12221580000005,-6.858982],[119.12249410000004,-6.857433],[119.12050580000005,-6.857347],[119.1224059000001,-6.855549],[119.122195,-6.847617],[119.12506990000008,-6.84396],[119.11964110000008,-6.840349],[119.11784690000002,-6.840704],[119.118191,-6.842158],[119.1168781,-6.841552],[119.112421,-6.844009],[119.109902,-6.840908],[119.11116820000007,-6.838402],[119.11465190000001,-6.838291],[119.11425190000011,-6.836823]]],[[[119.02048700000012,-6.841092],[119.022538,-6.839708],[119.02287710000007,-6.83673],[119.021135,-6.833401],[119.019114,-6.832534],[119.01782810000009,-6.835459],[119.01835190000008,-6.841364],[119.02048700000012,-6.841092]]],[[[119.19455890000006,-6.818128],[119.193633,-6.817701],[119.18682,-6.824653],[119.183985,-6.824222],[119.186815,-6.82064],[119.18525180000006,-6.818296],[119.17976290000001,-6.823236],[119.17980610000006,-6.824663],[119.17624720000003,-6.824753],[119.17376390000004,-6.826665],[119.16863320000004,-6.836579],[119.16924910000012,-6.839094],[119.16821410000011,-6.839074],[119.1704519000001,-6.840898],[119.1690281000001,-6.847441],[119.17539680000004,-6.840302],[119.17805510000005,-6.834489],[119.19299620000004,-6.821163],[119.19455890000006,-6.818128]]],[[[119.00474210000004,-6.81195],[119.00383310000007,-6.811291],[119.001609,-6.813778],[119.0034961,-6.819177],[119.00578,-6.814954],[119.00474210000004,-6.81195]]],[[[119.166192,-6.791865],[119.167893,-6.793579],[119.16520490000005,-6.802288],[119.16352510000002,-6.803226],[119.16546910000011,-6.802985],[119.16967610000006,-6.796347],[119.16919910000001,-6.794224],[119.166192,-6.791865]]],[[[118.97437280000008,-6.764941],[118.97414390000006,-6.761132],[118.9698509000001,-6.755642],[118.9689998,-6.755519],[118.970338,-6.756921],[118.96957010000006,-6.758899],[118.971149,-6.763489],[118.97317910000004,-6.765855],[118.97437280000008,-6.764941]]],[[[118.952073,-6.708202],[118.95069490000003,-6.707091],[118.95099410000012,-6.714387],[118.95423910000011,-6.720334],[118.955362,-6.716649],[118.952073,-6.708202]]],[[[118.27821310000002,-6.682952],[118.27675010000007,-6.683361],[118.27379090000011,-6.69192],[118.27401980000002,-6.698353],[118.27894790000005,-6.692699],[118.27881680000007,-6.691286],[118.27652,-6.692914],[118.27821310000002,-6.682952]]],[[[118.9307851000001,-6.645366],[118.92619910000008,-6.647999],[118.92740690000005,-6.654844],[118.92951610000011,-6.657671],[118.9316722000001,-6.65625],[118.9328101000001,-6.650522],[118.93250200000011,-6.646652],[118.9307851000001,-6.645366]]],[[[118.325691,-6.634542],[118.32458290000011,-6.635348],[118.3256381000001,-6.638217],[118.32365410000011,-6.646201],[118.327981,-6.639466],[118.32820420000007,-6.635248],[118.325691,-6.634542]]],[[[118.88769890000003,-6.605277],[118.88326010000003,-6.605596],[118.8830812000001,-6.608369],[118.885289,-6.611985],[118.88904890000003,-6.610258],[118.88920510000003,-6.606831],[118.88769890000003,-6.605277]]],[[[118.86851090000005,-6.60006],[118.87025690000007,-6.598064],[118.868837,-6.594197],[118.86018080000008,-6.586984],[118.85728610000001,-6.587115],[118.85487010000008,-6.591365],[118.8561830000001,-6.593728],[118.86851090000005,-6.60006]]],[[[118.83446890000005,-6.570029],[118.8305669,-6.568614],[118.8250729,-6.571193],[118.82513090000009,-6.576847],[118.82661910000002,-6.575614],[118.829921,-6.579429],[118.83608320000008,-6.58285],[118.84165990000008,-6.583028],[118.84097410000004,-6.574667],[118.83446890000005,-6.570029]]],[[[118.79494880000004,-6.558059],[118.79777920000004,-6.556108],[118.794856,-6.552176],[118.79289680000011,-6.555727],[118.79494880000004,-6.558059]]],[[[118.45259460000011,-5.499871199999973],[118.44987870000011,-5.501632599999937],[118.44999610000002,-5.506885],[118.45235,-5.511567399999933],[118.45663560000003,-5.511830399999951],[118.45770080000011,-5.510363],[118.4570791000001,-5.502755],[118.45259460000011,-5.499871199999973]]],[[[118.63131410000005,-5.487019],[118.62826810000001,-5.488823],[118.627335,-5.494117],[118.63034890000006,-5.5023],[118.632055,-5.503067],[118.634701,-5.490215],[118.63131410000005,-5.487019]]],[[[118.43101950000005,-5.4139754],[118.43684890000009,-5.407951899999944],[118.4333663000001,-5.398278599999969],[118.42838870000003,-5.394769499999938],[118.42482740000003,-5.396967199999949],[118.4242971000001,-5.398979],[118.42586910000011,-5.403934699999979],[118.42509110000003,-5.414391499999965],[118.42670540000006,-5.418408799999952],[118.42857010000012,-5.415098199999932],[118.43101950000005,-5.4139754]]],[[[117.927805,-5.352878],[117.921659,-5.352897],[117.9205214000001,-5.356088399999976],[117.92742010000006,-5.389296199999933],[117.93652490000011,-5.404299499999979],[117.94473180000011,-5.407761799999946],[117.94883510000011,-5.407248899999956],[117.95306690000007,-5.398400799999933],[117.95255390000011,-5.386603299999933],[117.93524260000004,-5.3607002],[117.93396020000012,-5.356853299999955],[117.93113890000006,-5.353903899999978],[117.927805,-5.352878]]],[[[117.8901681000001,-5.295473799999968],[117.89688850000005,-5.2644649],[117.8986235000001,-5.261362499999962],[117.893834,-5.245869699999957],[117.89285660000007,-5.238121299999932],[117.88943540000002,-5.233986799999968],[117.88806710000006,-5.234260499999948],[117.88656160000005,-5.238365899999962],[117.88574040000003,-5.2520508],[117.89070190000007,-5.263182099999938],[117.88796570000011,-5.287210499999958],[117.888297,-5.293603599999926],[117.8901681000001,-5.295473799999968]]],[[[117.65601490000006,-5.225644799999941],[117.65823440000008,-5.221801199999959],[117.6553642,-5.225381599999935],[117.64974820000009,-5.228004799999951],[117.65586320000011,-5.228688],[117.65601490000006,-5.225644799999941]]],[[[117.65552680000008,-5.2220798],[117.68182740000009,-5.197757],[117.67833650000011,-5.190338699999927],[117.67364530000009,-5.184884099999977],[117.66764520000004,-5.179138499999965],[117.66124510000009,-5.175574799999936],[117.65917220000006,-5.176193],[117.65408150000007,-5.184011299999952],[117.65409340000008,-5.1906179],[117.65252040000007,-5.1929964],[117.6563943000001,-5.195224199999927],[117.66044140000008,-5.201211899999976],[117.65926690000003,-5.209317099999964],[117.65462780000007,-5.218538899999942],[117.65434070000003,-5.221717099999978],[117.65552680000008,-5.2220798]]],[[[117.88341770000011,-5.167893699999979],[117.87980940000011,-5.169240699999932],[117.87774050000007,-5.173618699999963],[117.87952070000006,-5.1781891],[117.88303250000001,-5.179439899999977],[117.8886758000001,-5.175775899999962],[117.89054090000002,-5.172707199999934],[117.88851710000006,-5.169769899999949],[117.88341770000011,-5.167893699999979]]],[[[118.14590040000007,-5.114101599999969],[118.14375110000003,-5.121050899999943],[118.13894670000002,-5.126724199999956],[118.14868020000006,-5.1301549],[118.1545420000001,-5.134513299999981],[118.15609680000011,-5.134150499999976],[118.15148380000005,-5.119637399999931],[118.1492032000001,-5.1158536],[118.14590040000007,-5.114101599999969]]],[[[117.05079100000012,-5.090563],[117.04828210000005,-5.088515],[117.04549210000005,-5.091604],[117.04634710000005,-5.093746],[117.045104,-5.094938],[117.04728200000011,-5.097879],[117.0562579000001,-5.101769],[117.05854210000007,-5.101465],[117.06205390000002,-5.098088],[117.05238110000005,-5.090153],[117.05079100000012,-5.090563]]],[[[117.9180904000001,-5.055867099999944],[117.92114630000003,-5.051864599999931],[117.92039520000003,-5.0493667],[117.91791940000007,-5.047808199999963],[117.91480790000003,-5.050147],[117.91374730000007,-5.055944699999941],[117.9180904000001,-5.055867099999944]]],[[[117.0728150000001,-5.044707],[117.07140490000006,-5.046112],[117.07383890000006,-5.050208],[117.07514320000007,-5.050263],[117.0754859000001,-5.046143],[117.0728150000001,-5.044707]]],[[[117.039308,-5.053355],[117.04287490000002,-5.046511],[117.042305,-5.042461],[117.03996290000009,-5.040358],[117.03848290000008,-5.049484],[117.039308,-5.053355]]],[[[117.0574319000001,-5.038453],[117.059359,-5.036094],[117.0572,-5.03216],[117.055827,-5.037874],[117.0574319000001,-5.038453]]],[[[117.06254210000009,-5.023403],[117.0629669000001,-5.021108],[117.06161,-5.022507],[117.061583,-5.023813],[117.06254210000009,-5.023403]]],[[[117.07161080000003,-5.017677],[117.06843820000006,-5.021798],[117.06854510000005,-5.023949],[117.07264690000011,-5.025045],[117.0759690000001,-5.020443],[117.07161080000003,-5.017677]]],[[[119.3279265000001,-4.970803299999943],[119.32889690000002,-4.968639],[119.32797750000009,-4.967326399999934],[119.3279265000001,-4.970803299999943]]],[[[119.28750650000006,-4.966187199999979],[119.28564910000011,-4.967812899999956],[119.2864095000001,-4.969603599999971],[119.2893236000001,-4.967369699999949],[119.28750650000006,-4.966187199999979]]],[[[119.36617910000007,-4.956105599999944],[119.36515520000012,-4.954986499999961],[119.36484,-4.956134],[119.36617910000007,-4.956105599999944]]],[[[119.34168980000004,-4.947595],[119.342318,-4.945496],[119.34104180000008,-4.944144],[119.34056020000003,-4.947024],[119.34168980000004,-4.947595]]],[[[119.39837280000006,-4.941062799999941],[119.39638620000005,-4.944066499999963],[119.39731790000008,-4.948604899999964],[119.40104080000003,-4.945166499999971],[119.39837280000006,-4.941062799999941]]],[[[119.4197153,-4.940159],[119.4179325,-4.941960199999926],[119.4184289000001,-4.944625099999939],[119.42040680000002,-4.943658199999959],[119.4197153,-4.940159]]],[[[119.32088180000005,-4.930468],[119.32166590000008,-4.928131],[119.319728,-4.925642],[119.32088180000005,-4.930468]]],[[[119.3598161000001,-4.898201799999981],[119.3611006000001,-4.8974052],[119.36060610000004,-4.896204199999943],[119.35896690000004,-4.897121399999946],[119.3598161000001,-4.898201799999981]]],[[[119.34032510000009,-4.885153],[119.339775,-4.888262],[119.3410192,-4.886541],[119.34032510000009,-4.885153]]],[[[119.26783910000006,-4.880779],[119.26556890000006,-4.879308],[119.265282,-4.882748],[119.26776380000001,-4.882756],[119.26783910000006,-4.880779]]],[[[119.38480990000005,-4.854737],[119.38220280000007,-4.855943799999977],[119.38504790000002,-4.859001],[119.38661940000009,-4.858936399999948],[119.38781740000002,-4.8558571],[119.38480990000005,-4.854737]]],[[[119.34347060000005,-4.846915099999933],[119.34294910000006,-4.844457],[119.342212,-4.846285699999953],[119.34347060000005,-4.846915099999933]]],[[[119.40378020000003,-4.843652899999938],[119.4028267000001,-4.8449333],[119.40407930000003,-4.845682099999976],[119.40483510000001,-4.844284],[119.40378020000003,-4.843652899999938]]],[[[119.41836920000003,-4.8247037],[119.42186360000005,-4.820184299999937],[119.41929390000007,-4.817547699999977],[119.41836920000003,-4.8247037]]],[[[119.33226020000006,-4.803503599999942],[119.331766,-4.801089699999977],[119.33082900000011,-4.802343],[119.33226020000006,-4.803503599999942]]],[[[119.43312160000005,-4.786595299999931],[119.43219380000005,-4.784502],[119.42940880000003,-4.784927099999948],[119.43205570000009,-4.787939199999926],[119.43213420000006,-4.790376699999968],[119.43312160000005,-4.786595299999931]]],[[[119.43566480000004,-4.778155599999934],[119.43740650000007,-4.770848899999976],[119.43425960000002,-4.7733841],[119.43566480000004,-4.778155599999934]]],[[[119.44768810000005,-4.773140099999978],[119.44849180000006,-4.7698633],[119.4462,-4.772407],[119.44768810000005,-4.773140099999978]]],[[[119.46344470000008,-4.767562199999929],[119.46420610000007,-4.766042],[119.46173290000002,-4.766760799999929],[119.46344470000008,-4.767562199999929]]],[[[119.43418650000001,-4.747261299999934],[119.43267070000002,-4.7467652],[119.43106880000005,-4.748491799999954],[119.43237390000002,-4.753305599999976],[119.434728,-4.752255],[119.43418650000001,-4.747261299999934]]],[[[119.45027410000012,-4.739005599999928],[119.45030210000004,-4.740239799999927],[119.4515771,-4.740049899999974],[119.45027410000012,-4.739005599999928]]],[[[119.06318740000006,-4.741544799999929],[119.06297560000007,-4.735587899999928],[119.06216470000004,-4.7405723],[119.06318740000006,-4.741544799999929]]],[[[118.97979830000008,-4.718843599999957],[118.97953040000004,-4.722359499999925],[118.98243480000008,-4.723583],[118.9820519000001,-4.720097599999974],[118.97979830000008,-4.718843599999957]]],[[[119.35310110000012,-4.718139],[119.35462390000009,-4.717417],[119.353761,-4.715891],[119.35310110000012,-4.718139]]],[[[119.06562240000005,-4.716274299999952],[119.06633490000002,-4.7135886],[119.0605782,-4.716573699999969],[119.06042580000008,-4.718682499999943],[119.0625844000001,-4.719594599999937],[119.06562240000005,-4.716274299999952]]],[[[119.36424490000002,-4.711747],[119.36554880000006,-4.710739],[119.364246,-4.709703],[119.363233,-4.71044],[119.36424490000002,-4.711747]]],[[[119.32873170000005,-4.707179499999938],[119.33028360000003,-4.705232399999943],[119.32880770000008,-4.703722899999946],[119.3276565000001,-4.7058545],[119.32873170000005,-4.707179499999938]]],[[[119.4753730000001,-4.701502],[119.474433,-4.699761],[119.4685909000001,-4.705154],[119.46965000000012,-4.706003],[119.46881990000008,-4.70847],[119.472089,-4.71171],[119.47786710000003,-4.704600399999947],[119.4753730000001,-4.701502]]],[[[119.45776790000002,-4.696694],[119.4485949000001,-4.70267],[119.44922830000007,-4.703772799999967],[119.447959,-4.704493],[119.44963210000003,-4.708139799999969],[119.458107,-4.6986],[119.462771,-4.6977429],[119.45776790000002,-4.696694]]],[[[118.954669,-4.695507099999929],[118.9505832000001,-4.695960199999945],[118.95076860000006,-4.697981099999936],[118.95704210000008,-4.698519699999963],[118.965415,-4.705789699999968],[118.9664269000001,-4.704276199999981],[118.96485930000006,-4.700986],[118.95675390000008,-4.697734599999933],[118.954669,-4.695507099999929]]],[[[119.46990190000008,-4.691433699999948],[119.47077120000006,-4.688331499999947],[119.46902180000006,-4.686594599999978],[119.46765540000001,-4.689711],[119.46986310000011,-4.692525899999964],[119.46990190000008,-4.691433699999948]]],[[[119.50318960000004,-4.654648599999973],[119.50181720000012,-4.655512499999929],[119.50370150000003,-4.656250099999966],[119.50318960000004,-4.654648599999973]]],[[[119.22370360000002,-4.559715],[119.22316400000011,-4.556762099999958],[119.222162,-4.558853699999929],[119.22370360000002,-4.559715]]],[[[119.59440350000011,-4.556545899999946],[119.596128,-4.561055499999952],[119.59400950000008,-4.567617299999938],[119.59175860000005,-4.567197499999963],[119.59388330000002,-4.567891299999928],[119.59389090000002,-4.570658299999934],[119.586987,-4.587273],[119.57983410000008,-4.596343],[119.572824,-4.601964],[119.56045,-4.6262],[119.55316070000003,-4.633707099999981],[119.551274,-4.63833],[119.551082,-4.644845],[119.546841,-4.652595],[119.52558350000004,-4.674667199999931],[119.52240680000011,-4.687876699999947],[119.51809,-4.695292099999961],[119.51668870000003,-4.700850899999978],[119.51598120000006,-4.705831199999977],[119.51819390000003,-4.712101799999971],[119.51722630000006,-4.715648399999964],[119.51306120000004,-4.718263599999943],[119.510478,-4.722552499999949],[119.49893750000001,-4.725792799999965],[119.49678080000001,-4.730815],[119.49473620000003,-4.730917499999975],[119.49132610000004,-4.734089199999971],[119.48939160000009,-4.741839699999957],[119.486352,-4.744339499999967],[119.48715330000005,-4.745368199999973],[119.48231880000003,-4.751477099999931],[119.48371440000005,-4.756307599999957],[119.48816620000002,-4.759567599999968],[119.49141,-4.7650402],[119.49030410000012,-4.769124699999963],[119.49238910000008,-4.769400599999926],[119.492912,-4.774100199999964],[119.49000440000009,-4.773975499999949],[119.4931117000001,-4.774856799999952],[119.49279400000012,-4.788619899999958],[119.49398560000009,-4.788857199999939],[119.4948472000001,-4.7943331],[119.49326660000008,-4.799653199999966],[119.49798320000002,-4.8073343],[119.49870480000004,-4.8120735],[119.49727610000002,-4.812613299999953],[119.49850910000009,-4.814025599999979],[119.49663570000007,-4.8165921],[119.48170040000002,-4.8180853],[119.49787040000001,-4.816986499999928],[119.49962950000008,-4.819028499999945],[119.50150640000004,-4.824834299999964],[119.497778,-4.831136699999945],[119.5006591,-4.835317399999951],[119.49872360000006,-4.836105099999941],[119.5012901,-4.842952799999978],[119.50023840000006,-4.847946899999954],[119.50108970000008,-4.850707499999942],[119.50490890000003,-4.855375699999968],[119.50704610000003,-4.8683319],[119.51287700000012,-4.872572099999957],[119.51986560000012,-4.881430299999977],[119.51994860000002,-4.883503299999973],[119.52613070000007,-4.885282899999936],[119.5277109000001,-4.884041099999934],[119.53004180000005,-4.892324899999949],[119.53715550000004,-4.890359399999966],[119.54275040000005,-4.892475199999978],[119.55417240000008,-4.890027799999928],[119.55759790000002,-4.893792],[119.56375760000003,-4.892220099999975],[119.5672449000001,-4.898368499999947],[119.57372050000004,-4.8977057],[119.57423110000002,-4.899402899999927],[119.571123,-4.899009],[119.57027380000011,-4.901956299999938],[119.5755732,-4.904963299999963],[119.57784970000012,-4.903674299999977],[119.58099550000009,-4.905184199999951],[119.58564700000011,-4.903641199999925],[119.58802230000003,-4.895642399999929],[119.59172810000007,-4.896301799999947],[119.59090680000008,-4.89963],[119.59495660000005,-4.904680299999939],[119.59801980000009,-4.905525],[119.59915990000002,-4.903711199999975],[119.59694410000009,-4.903049499999952],[119.59621620000007,-4.900993099999937],[119.60062590000007,-4.901467],[119.60034750000011,-4.899696499999948],[119.59794680000005,-4.898318499999959],[119.604218,-4.895011899999929],[119.6007340000001,-4.894207799999947],[119.59973390000005,-4.892519399999969],[119.601785,-4.893713099999957],[119.60333670000011,-4.892347299999926],[119.60213210000006,-4.890422199999932],[119.60344420000001,-4.887109799999962],[119.60381170000005,-4.890137799999934],[119.60732670000004,-4.888679899999943],[119.60935630000006,-4.8901187],[119.61204450000002,-4.887956199999962],[119.628391,-4.902498],[119.642313,-4.905785],[119.64091,-4.915999],[119.64606790000005,-4.920783299999925],[119.651123,-4.924012199999936],[119.65626530000009,-4.922055199999932],[119.6604843,-4.922465799999941],[119.66345210000009,-4.926659599999937],[119.6681671,-4.929723299999978],[119.67023470000004,-4.932917599999939],[119.66854100000012,-4.939365899999927],[119.66960140000003,-4.945909499999971],[119.6668701000001,-4.948818199999948],[119.67389680000008,-4.952631499999939],[119.6802216000001,-4.952220899999929],[119.6824951000001,-4.950281599999926],[119.699351,-4.944937],[119.705118,-4.944956],[119.71546200000012,-4.94117],[119.720934,-4.941558],[119.725853,-4.9380517],[119.74666810000008,-4.929019299999936],[119.75028440000006,-4.931019899999967],[119.75050350000004,-4.934545],[119.75243380000006,-4.936996],[119.77407070000004,-4.94276],[119.77893830000005,-4.940624699999944],[119.7816391,-4.931778899999927],[119.78611760000001,-4.927620899999965],[119.78816990000007,-4.926549899999941],[119.79278560000012,-4.927079699999979],[119.798111,-4.923944499999948],[119.802742,-4.9266868],[119.80538180000008,-4.924069399999951],[119.8003235000001,-4.913403499999959],[119.80180360000008,-4.909875899999975],[119.80023960000005,-4.906550899999957],[119.80469510000012,-4.886319199999946],[119.79756160000011,-4.874701499999958],[119.79834750000009,-4.871411799999976],[119.79365540000003,-4.867884599999968],[119.79410550000011,-4.865451299999961],[119.79752350000001,-4.862911199999928],[119.802002,-4.8546405],[119.8011246000001,-4.854898],[119.80201720000002,-4.845559099999946],[119.80558780000001,-4.842317099999946],[119.8056183000001,-4.830985099999964],[119.80685420000009,-4.827118399999961],[119.8102417,-4.823566899999946],[119.8104019000001,-4.819968199999948],[119.8066123000001,-4.808795699999962],[119.78880130000005,-4.808850099999972],[119.784482,-4.806069499999978],[119.78214650000007,-4.8116913],[119.77872660000003,-4.814911199999926],[119.7784564000001,-4.817450899999926],[119.7744957000001,-4.818922799999939],[119.7735034000001,-4.821866399999976],[119.771412,-4.821331899999961],[119.77089770000009,-4.822988899999928],[119.76774650000004,-4.824268699999948],[119.76454650000005,-4.817027399999972],[119.76506180000001,-4.814911699999925],[119.76292070000011,-4.813159699999972],[119.76363780000008,-4.807798499999933],[119.759565,-4.804947799999979],[119.7518490000001,-4.803228099999956],[119.74274790000004,-4.806809899999962],[119.72828310000011,-4.817128],[119.72631460000002,-4.823473699999965],[119.72472660000005,-4.821080099999961],[119.72117460000004,-4.821693099999948],[119.71590530000003,-4.817813299999955],[119.71116250000011,-4.809459699999934],[119.70099190000008,-4.802429099999927],[119.69850610000003,-4.799165599999981],[119.69648450000011,-4.7926639],[119.6968458,-4.788008399999967],[119.69065350000005,-4.780524899999932],[119.69038690000002,-4.7744625],[119.68479920000004,-4.772534199999939],[119.68125610000004,-4.769042499999955],[119.6850634000001,-4.763503199999946],[119.68815230000007,-4.7615191],[119.68806160000008,-4.759178399999939],[119.69381070000009,-4.758610399999952],[119.69587180000008,-4.756564199999957],[119.691279,-4.750084],[119.690189,-4.739678],[119.69224020000001,-4.721505199999967],[119.68935290000002,-4.719150799999966],[119.68559130000006,-4.719711199999949],[119.68452430000002,-4.717599899999925],[119.6822575000001,-4.719388599999945],[119.6800674000001,-4.718181899999934],[119.67644990000008,-4.719316399999968],[119.674701,-4.720975],[119.66921310000009,-4.720641699999931],[119.66788140000006,-4.719146299999977],[119.663489,-4.7216156],[119.66313530000002,-4.724004299999933],[119.659444,-4.723382],[119.655792,-4.714798],[119.655093,-4.706167],[119.6585510000001,-4.702908],[119.658826,-4.696664],[119.656316,-4.688679],[119.653259,-4.684604],[119.656067,-4.674563],[119.664308,-4.661332],[119.663609,-4.65688],[119.656877,-4.652731],[119.644739,-4.64131],[119.645568,-4.635279],[119.635713,-4.617166],[119.6370260000001,-4.609452],[119.63517500000012,-4.602128],[119.632147,-4.599626],[119.630827,-4.584695],[119.627496,-4.582569],[119.624632,-4.575498],[119.619813,-4.570703],[119.6193760000001,-4.566576],[119.606427,-4.55897],[119.602412,-4.558927],[119.597966,-4.555825],[119.59440350000011,-4.556545899999946]]],[[[119.15741900000012,-4.490872299999978],[119.157657,-4.489920099999949],[119.15558610000005,-4.489634499999966],[119.15741900000012,-4.490872299999978]]]]},"properties":{"shapeName":"Pangkajene Dan Kepulauan","shapeISO":"","shapeID":"22746128B68309181709677","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[136.730657,-4.126525099999981],[136.82409990000008,-4.138229899999942],[136.97192530000007,-4.125426199999936],[137.12449880000008,-4.020681899999943],[137.20398490000002,-4.023675399999945],[137.19953080000005,-3.938326399999937],[137.1889609000001,-3.909012099999927],[137.09976920000008,-3.906590899999969],[136.7266721000001,-3.905002599999932],[136.72667130000002,-3.843084899999951],[136.706032,-3.824033099999951],[136.62982480000005,-3.744650599999943],[136.53774120000003,-3.660505099999966],[136.51392640000006,-3.631927499999961],[136.4424822000001,-3.525555],[136.3900897000001,-3.441409499999963],[136.34443690000012,-3.377364],[136.2995188000001,-3.402468399999975],[136.18454210000004,-3.451888299999951],[136.00148690000003,-3.535095199999944],[135.97223850000012,-3.550223699999947],[135.96265710000011,-3.559805099999949],[135.96063990000005,-3.564847899999961],[135.96063990000005,-3.570899299999951],[135.973021,-3.591021199999943],[135.97468820000006,-3.599555899999928],[135.97776950000002,-3.602135099999941],[135.97837830000003,-3.606059799999969],[135.98394970000004,-3.613893599999926],[135.98499290000007,-3.617597799999942],[136.00085860000002,-3.628935899999931],[136.0034766000001,-3.643353199999979],[136.01176070000008,-3.659621099999924],[136.0097588000001,-3.665504],[136.012636,-3.669711399999926],[136.01107790000003,-3.677013899999963],[136.0157283000001,-3.691303299999959],[136.0322099000001,-3.710905599999933],[136.05645390000007,-3.7226889],[136.06945020000012,-3.727232],[136.0819298,-3.735307099999943],[136.0922071000001,-3.751457199999948],[136.1193687000001,-3.8079825],[136.13258240000005,-3.826334899999949],[136.1494666000001,-3.8549646],[136.1905759000001,-3.929108199999973],[136.2045237000001,-3.934981],[136.22728070000005,-3.951865199999929],[136.22728110000003,-3.992240399999957],[136.2767272000001,-3.993748699999969],[136.40128470000002,-4.008056],[136.4803955000001,-4.012264],[136.49386120000008,-4.015630399999964],[136.532575,-4.015630399999964],[136.6470333000001,-4.025729699999943],[136.66067120000002,-4.035061699999972],[136.67852570000002,-4.041438299999925],[136.68617770000003,-4.055466799999977],[136.6887283000001,-4.086074599999961],[136.69382960000007,-4.107755099999963],[136.730657,-4.126525099999981]]]},"properties":{"shapeName":"Paniai","shapeISO":"","shapeID":"22746128B4546065504166","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[120.56685950000008,-1.080696299999943],[120.56320270000003,-1.078242599999953],[120.56316890000005,-1.080730499999959],[120.56120510000005,-1.080560199999979],[120.56062960000008,-1.08298],[120.56692740000005,-1.084445099999925],[120.56882340000004,-1.082911399999944],[120.56685950000008,-1.080696299999943]]],[[[120.46272360000012,-0.990524],[120.46135620000007,-0.984392399999933],[120.45847750000007,-0.983197699999948],[120.4577915000001,-0.9851525],[120.46272360000012,-0.990524]]],[[[120.04237490000003,-0.375592599999948],[120.04262570000003,-0.372564199999943],[120.03936680000004,-0.372395799999936],[120.0400393000001,-0.375118],[120.04237490000003,-0.375592599999948]]],[[[120.04071650000003,-0.352737099999956],[120.03947370000003,-0.350420399999962],[120.03844190000007,-0.352044499999977],[120.04071650000003,-0.352737099999956]]],[[[121.22735630000011,0.430421800000033],[121.23038010000005,0.432749800000067],[121.22806760000003,0.435972900000024],[121.22308710000004,0.437047100000029],[121.22024120000003,0.435077300000046],[121.21881840000003,0.431674900000075],[121.21970780000004,0.42934710000003],[121.22735630000011,0.430421800000033]]],[[[121.17133120000005,0.436545500000022],[121.17397620000008,0.437484100000063],[121.17346420000001,0.438422600000024],[121.17013660000009,0.437910700000032],[121.17133120000005,0.436545500000022]]],[[[121.26419550000003,0.443265200000042],[121.26571980000006,0.447357500000066],[121.2633062000001,0.448636200000067],[121.26063850000003,0.449403400000051],[121.25593850000007,0.445694700000047],[121.25898730000006,0.442753500000038],[121.26419550000003,0.443265200000042]]],[[[121.20521230000008,0.451284200000032],[121.20604440000011,0.452854400000035],[121.201781,0.454969600000027],[121.19918110000003,0.453315800000041],[121.1997841000001,0.452017600000033],[121.20521230000008,0.451284200000032]]],[[[120.70615910000004,0.463744700000063],[120.70647610000003,0.465941100000066],[120.70373630000006,0.466484500000035],[120.70396270000003,0.464107],[120.70615910000004,0.463744700000063]]],[[[120.84999810000011,0.700630500000045],[120.84804760000009,0.696792600000038],[120.83848660000001,0.687672900000052],[120.83529690000012,0.690624300000025],[120.8307443000001,0.690404100000023],[120.81941430000006,0.684186200000056],[120.818239,0.682120500000053],[120.81883190000008,0.67884650000002],[120.81461980000006,0.675875500000075],[120.79699380000011,0.679264500000045],[120.78316890000008,0.678291300000069],[120.7758586000001,0.672888900000032],[120.76410810000004,0.669895600000075],[120.75429610000003,0.662017],[120.74439870000003,0.663773900000024],[120.736228,0.660778600000071],[120.7064286000001,0.668572600000061],[120.70530370000006,0.661552500000028],[120.69693640000003,0.661352700000066],[120.69447520000006,0.658252700000048],[120.6895512000001,0.65556470000007],[120.68524410000009,0.650191500000062],[120.67433760000006,0.64505470000006],[120.6659145000001,0.633819600000038],[120.66633850000005,0.627882300000067],[120.66128490000006,0.623639],[120.66086710000002,0.615580900000054],[120.65651230000003,0.617222600000048],[120.65023270000006,0.616951500000027],[120.64401740000005,0.61175650000007],[120.6421798,0.612004600000034],[120.63686560000008,0.60582050000005],[120.63776370000005,0.597995900000058],[120.62960370000008,0.592988500000047],[120.626334,0.587575400000048],[120.6187513000001,0.587148100000036],[120.61534070000005,0.589399],[120.6138889,0.599687800000027],[120.60726270000009,0.601070900000025],[120.60116090000008,0.595555700000034],[120.59684160000006,0.595620300000064],[120.5896924000001,0.60432510000004],[120.58040230000006,0.605315900000051],[120.57486540000002,0.609323600000039],[120.56304310000007,0.605521900000042],[120.5569918000001,0.59471730000007],[120.54742580000004,0.595197700000028],[120.5451733000001,0.597519400000067],[120.54219230000001,0.606358900000032],[120.540998,0.614150300000063],[120.54337670000007,0.620444900000052],[120.54091970000002,0.632008],[120.53816450000011,0.635122900000056],[120.52759120000007,0.63617110000007],[120.52220060000002,0.633314600000062],[120.51660250000009,0.636444500000039],[120.50928370000008,0.634214300000053],[120.50576710000007,0.635797],[120.49595860000011,0.636282400000027],[120.49450620000005,0.636931],[120.49271380000005,0.641588100000035],[120.48440280000011,0.644573100000059],[120.48203110000009,0.643387300000029],[120.47165510000002,0.644276600000069],[120.45920380000007,0.641608500000075],[120.44890060000012,0.642828800000075],[120.44144490000008,0.655891600000075],[120.43904140000006,0.664102],[120.41651980000006,0.661530400000061],[120.41200540000011,0.663451100000032],[120.40828970000007,0.668742500000064],[120.38198360000001,0.670601800000043],[120.37355040000011,0.675277100000073],[120.35570830000006,0.678172500000073],[120.35139210000011,0.67676380000006],[120.35054670000011,0.673828700000058],[120.344301,0.668262200000072],[120.32981390000009,0.667838400000051],[120.30775670000003,0.657025900000065],[120.3007182,0.651933800000052],[120.29979530000003,0.642606100000023],[120.28699950000009,0.639096800000061],[120.28517230000011,0.631068700000071],[120.2689904,0.630348600000048],[120.26442440000005,0.622803200000021],[120.25915070000008,0.623460300000033],[120.25144340000008,0.62029670000004],[120.2403981000001,0.612934500000051],[120.22964820000004,0.607973400000049],[120.219332,0.604916100000025],[120.21522420000008,0.60550470000004],[120.193137,0.615745300000071],[120.1920371000001,0.615168500000038],[120.19393730000002,0.602720500000032],[120.192685,0.599852100000021],[120.19412850000003,0.587272100000064],[120.19588280000005,0.583851700000025],[120.2024947000001,0.578885500000069],[120.203106,0.57493340000002],[120.19238730000006,0.572774800000047],[120.18763880000006,0.569673100000045],[120.18312480000009,0.56234180000007],[120.17990710000004,0.55253440000007],[120.18025620000003,0.546301100000051],[120.17671510000002,0.543093800000065],[120.17609770000001,0.540710500000046],[120.15862560000005,0.531157900000039],[120.1610396000001,0.524481800000046],[120.16107310000007,0.503034100000036],[120.158155,0.49273020000004],[120.1593382000001,0.479938200000049],[120.15666660000011,0.468397],[120.14403,0.46785],[120.13668,0.46002],[120.1299322000001,0.458117400000049],[120.12403,0.4441],[120.11871430000008,0.43880820000004],[120.11385730000006,0.429414800000075],[120.11385690000009,0.426767900000073],[120.11741160000008,0.422068800000034],[120.1286689000001,0.415487700000028],[120.12689000000012,0.40843],[120.12215070000002,0.407531600000027],[120.122595,0.405471700000021],[120.12029,0.4],[120.11381,0.39515],[120.1,0.39133],[120.0957800000001,0.39314],[120.0828,0.38579],[120.07911710000008,0.379786300000035],[120.07896860000005,0.368466500000068],[120.0736356000001,0.361548200000072],[120.07502990000012,0.346110800000019],[120.07282070000008,0.344049200000029],[120.0623031,0.34049310000006],[120.0566500000001,0.3345],[120.05661,0.33058],[120.05924,0.32645],[120.05935000000011,0.31965],[120.06159,0.3169],[120.06184,0.30572],[120.05507000000011,0.29945],[120.05885,0.2934],[120.05464,0.28601],[120.06124000000011,0.28087],[120.06524,0.27468],[120.076715,0.275345900000048],[120.07911,0.27432],[120.09017,0.24999],[120.09254,0.24953],[120.09647,0.24437],[120.09271,0.23604],[120.09591000000012,0.2275],[120.1008342,0.225211600000023],[120.0969076,0.220727900000043],[120.09581720000006,0.206996400000037],[120.09087470000009,0.198116900000059],[120.080251,0.197658200000035],[120.06946430000005,0.190441800000031],[120.070141,0.182862],[120.06864850000011,0.181344500000023],[120.05244590000007,0.181184600000051],[120.05198410000003,0.178989300000069],[120.04502020000007,0.172838],[120.04356150000001,0.16828490000006],[120.04496270000004,0.15948510000004],[120.043507,0.156982800000037],[120.04049440000006,0.158657500000061],[120.0400800000001,0.15732],[120.04595,0.14712],[120.03688000000011,0.1389],[120.03417,0.13451],[120.03776,0.12885],[120.03356,0.12723],[120.001499,0.123167700000067],[120.00090880000005,0.110766800000022],[119.99058080000009,0.107391200000052],[119.98609790000012,0.095201100000054],[119.98364490000006,0.097472900000071],[119.98293450000006,0.096000900000035],[119.977387,0.096945600000026],[119.97154000000012,0.09605],[119.967164,0.08833240000007],[119.96135760000004,0.084427300000073],[119.957589,0.073778800000071],[119.96018020000008,0.071935],[119.95376460000011,0.054217300000062],[119.95530930000007,0.04576030000004],[119.95741040000007,0.043393],[119.95741060000012,0.032071900000062],[119.95432110000002,0.025358800000049],[119.95234390000007,0.023868],[119.95123170000011,0.017642800000033],[119.94480570000007,0.013920400000075],[119.94079030000012,-0.011577299999942],[119.94412770000008,-0.020034299999963],[119.94004980000011,-0.025627199999974],[119.9418429000001,-0.036704399999962],[119.93998910000005,-0.038321799999949],[119.94332650000001,-0.0441676],[119.94270890000007,-0.049516499999925],[119.94493460000001,-0.060973099999956],[119.9441835,-0.065834099999961],[119.94734540000002,-0.068933099999924],[119.94759290000002,-0.0716707],[119.9432680000001,-0.077010899999948],[119.94141530000002,-0.085965],[119.93579440000008,-0.100891799999943],[119.92220120000002,-0.108835299999953],[119.91821590000006,-0.117585299999973],[119.91513870000006,-0.1159679],[119.91245760000004,-0.125010799999927],[119.90866910000011,-0.130151199999943],[119.90114890000007,-0.134137],[119.89977170000009,-0.139103899999952],[119.90775010000004,-0.151854],[119.91085150000004,-0.161267199999941],[119.91406680000011,-0.164327599999979],[119.91367570000011,-0.168708399999957],[119.92384640000012,-0.172305399999971],[119.9241465,-0.177423799999929],[119.92891550000002,-0.188628499999936],[119.92883230000007,-0.194850599999938],[119.93251140000007,-0.206420099999946],[119.9376496000001,-0.209719499999949],[119.92909940000004,-0.214968599999963],[119.92271670000002,-0.228579699999955],[119.9181857000001,-0.234344199999953],[119.91314060000002,-0.235635699999932],[119.9124931,-0.236916199999939],[119.91454320000003,-0.246700399999952],[119.92109180000011,-0.25405],[119.92241640000009,-0.258759299999952],[119.91895580000005,-0.262548299999935],[119.90499650000004,-0.270061399999975],[119.90652510000007,-0.275897],[119.90947860000006,-0.280298799999969],[119.90958130000001,-0.283779799999934],[119.92446840000002,-0.287188799999967],[119.92086960000006,-0.291433599999948],[119.922654,-0.291433599999948],[119.91938630000004,-0.297158799999977],[119.92888990000006,-0.303878599999962],[119.92048580000005,-0.316322799999966],[119.93038580000007,-0.323024199999963],[119.92694110000002,-0.328898299999935],[119.92989790000001,-0.334788499999945],[119.9206458000001,-0.3481999],[119.914295,-0.351816099999951],[119.913823,-0.355727799999954],[119.91660490000004,-0.363004799999942],[119.9131609000001,-0.370062699999949],[119.91395010000008,-0.373297099999945],[119.91833440000005,-0.377334499999961],[119.92247370000007,-0.3847061],[119.92296870000007,-0.390497599999946],[119.92553050000004,-0.393153199999972],[119.92563140000004,-0.398737],[119.92026850000002,-0.408732199999974],[119.92135250000001,-0.412770599999931],[119.91836180000007,-0.413225799999964],[119.92043290000004,-0.418514499999958],[119.9191125000001,-0.427012799999943],[119.92247480000003,-0.433710599999927],[119.92267730000003,-0.4435666],[119.92706190000001,-0.448349599999972],[119.9370427,-0.447640799999931],[119.9411368000001,-0.4602678],[119.93757720000008,-0.469176599999969],[119.93717210000011,-0.480277199999932],[119.93500970000002,-0.483203099999969],[119.93533820000005,-0.497173299999929],[119.9313294000001,-0.504997899999978],[119.938833,-0.515773199999956],[119.94362380000007,-0.516698599999927],[119.95062180000002,-0.527265],[119.9540118000001,-0.540089599999931],[119.95348520000005,-0.546667199999945],[119.9592331,-0.547499599999981],[119.96872340000004,-0.553103399999941],[119.97599220000006,-0.564309199999968],[119.97860420000006,-0.571023899999943],[119.987899,-0.577192699999955],[119.9881031000001,-0.584812599999964],[119.99032970000007,-0.587091399999963],[119.99924220000003,-0.589177199999938],[120.00146820000009,-0.591142],[120.00348550000001,-0.607159599999932],[120.00677710000002,-0.610226299999965],[120.0080862000001,-0.615285799999924],[120.00699470000006,-0.621026],[120.00467530000003,-0.6246113],[120.0055086000001,-0.630163399999958],[120.002458,-0.633161],[120.01080230000002,-0.639427599999976],[120.0153547000001,-0.637852899999928],[120.0197425,-0.641767499999958],[120.01707970000007,-0.650527499999953],[120.0196221000001,-0.660594799999956],[120.01715960000001,-0.664937299999963],[120.02480880000007,-0.671430399999963],[120.03289160000008,-0.684010699999931],[120.02982680000002,-0.689727499999947],[120.03009270000007,-0.691529599999967],[120.03217060000009,-0.69252],[120.0311491000001,-0.696654899999942],[120.0320991000001,-0.701274499999954],[120.03063710000004,-0.705168199999946],[120.02702710000005,-0.708410099999981],[120.02048170000012,-0.708329499999934],[120.01957740000012,-0.723327299999937],[120.02438410000002,-0.728753799999936],[120.02414460000011,-0.737327899999968],[120.02729050000005,-0.744210099999975],[120.02583680000009,-0.745320199999981],[120.02623620000008,-0.747450199999946],[120.01929380000001,-0.747170499999925],[120.01798,-0.750974399999961],[120.02376390000006,-0.763338799999929],[120.02592760000005,-0.774377499999957],[120.02334040000005,-0.780913299999952],[120.02754490000007,-0.787485599999968],[120.03239470000005,-0.790120099999967],[120.0340543000001,-0.807559599999934],[120.04221340000004,-0.821110099999942],[120.042292,-0.822752399999956],[120.0411888000001,-0.822687599999938],[120.04447770000002,-0.829727199999979],[120.04167810000001,-0.842977799999971],[120.03675480000004,-0.848003299999959],[120.03421220000007,-0.858040599999924],[120.03710760000001,-0.862126199999977],[120.03893120000009,-0.868364799999938],[120.0323714000001,-0.873968499999933],[120.03134060000002,-0.880563699999925],[120.02291480000008,-0.879894499999978],[120.023307,-0.882681299999945],[120.03138,-0.89272],[120.03615,-0.89276],[120.0468800000001,-0.89727],[120.05111000000011,-0.90181],[120.06532470000002,-0.909678399999962],[120.06651380000005,-0.912111699999969],[120.06971740000006,-0.910549],[120.07200610000007,-0.913158],[120.07213610000008,-0.914818],[120.0680761000001,-0.919888],[120.06972610000003,-0.922978],[120.06802610000011,-0.932168],[120.06908610000005,-0.938718],[120.06658610000011,-0.942978],[120.06595610000011,-0.951728],[120.05862610000008,-0.963158],[120.05728610000006,-0.967548],[120.06623380000008,-0.969876799999952],[120.06908,-0.974743699999976],[120.07334530000003,-0.977314499999977],[120.07436610000002,-0.985098],[120.07837610000001,-0.987658],[120.07882610000001,-0.990348],[120.07613620000006,-0.997532799999931],[120.07769810000002,-0.999570699999936],[120.0735532000001,-1.008301599999925],[120.08031370000003,-1.011014299999943],[120.07620730000008,-1.017345099999943],[120.08084230000009,-1.015780099999972],[120.09405170000002,-1.019602899999938],[120.09875860000011,-1.027134799999942],[120.10566140000003,-1.017557799999963],[120.11276880000003,-1.016051199999936],[120.11528780000003,-1.022820699999954],[120.1182123000001,-1.023120099999971],[120.119351,-1.032172899999978],[120.12523360000012,-1.037937899999974],[120.12564440000006,-1.041143199999965],[120.12889530000007,-1.044394199999942],[120.14730930000007,-1.042821099999969],[120.1513576000001,-1.045021199999951],[120.15133710000009,-1.049323],[120.15881210000009,-1.053776],[120.16025320000006,-1.049907699999949],[120.16630950000001,-1.047678899999937],[120.18380350000007,-1.0638702],[120.18978110000012,-1.063435899999945],[120.19220930000006,-1.064612],[120.19525770000007,-1.063354499999946],[120.19841770000005,-1.054614499999957],[120.20095870000011,-1.055957799999931],[120.20270520000008,-1.054253899999935],[120.20985,-1.061752899999931],[120.21889090000002,-1.065401699999939],[120.2185601000001,-1.073134299999936],[120.22662550000007,-1.0814269],[120.23072630000001,-1.092126399999927],[120.22550190000004,-1.100397099999952],[120.22449080000001,-1.1046437],[120.22722550000003,-1.111866899999939],[120.2249488000001,-1.117144599999961],[120.22834640000008,-1.125568499999929],[120.2325598000001,-1.129809199999954],[120.23710770000002,-1.1309603],[120.23943730000008,-1.133240099999966],[120.24782120000009,-1.1324412],[120.25299510000002,-1.133236699999941],[120.25614660000008,-1.135346799999979],[120.26721630000009,-1.151800399999956],[120.26918130000001,-1.152511699999934],[120.27197990000002,-1.151334199999951],[120.27785660000006,-1.143053799999961],[120.28313870000011,-1.142108299999961],[120.28486580000003,-1.137581199999943],[120.29308990000004,-1.132965299999967],[120.30623680000008,-1.135614699999962],[120.31243020000011,-1.134325],[120.32691590000002,-1.137017799999967],[120.33567670000002,-1.146509099999946],[120.33749300000011,-1.153145399999971],[120.3400223000001,-1.155057199999931],[120.34216790000005,-1.153889499999934],[120.34615410000004,-1.146108399999946],[120.34901470000011,-1.144524499999932],[120.35647520000009,-1.145933699999944],[120.35756820000006,-1.147223899999972],[120.35353430000009,-1.155203699999959],[120.34866080000006,-1.159337],[120.34331580000003,-1.167995799999971],[120.34080470000004,-1.178358299999957],[120.34211440000001,-1.186936899999978],[120.348814,-1.185570399999961],[120.3992846000001,-1.161312099999975],[120.42793530000006,-1.150161],[120.43409720000011,-1.152611199999967],[120.44613970000012,-1.146241799999927],[120.46559220000006,-1.147985899999981],[120.491642,-1.141161499999953],[120.4929029000001,-1.141986899999949],[120.50254730000006,-1.137764199999935],[120.51184290000003,-1.131425499999978],[120.53007420000006,-1.129854499999965],[120.568015,-1.112843],[120.57089580000002,-1.109622299999955],[120.581049,-1.108477899999968],[120.58223140000007,-1.108006],[120.57766450000008,-1.100713599999949],[120.57052670000007,-1.097086399999966],[120.5664868,-1.0966],[120.5657754,-1.093864099999962],[120.56006560000003,-1.092327199999943],[120.560975,-1.089476499999932],[120.5569455000001,-1.085319399999946],[120.55823530000009,-1.082573099999934],[120.55591530000004,-1.076968499999964],[120.55221780000011,-1.0733327],[120.55006910000009,-1.073309],[120.55050210000002,-1.070021],[120.54677520000007,-1.064671199999964],[120.54423780000002,-1.064976099999967],[120.54433390000008,-1.062908399999969],[120.54365960000007,-1.064024899999936],[120.54007860000002,-1.061422399999969],[120.53992050000011,-1.054703599999925],[120.53400770000007,-1.052654099999927],[120.52956410000002,-1.0471171],[120.52887670000007,-1.044327099999975],[120.53073920000008,-1.040775599999961],[120.53271490000009,-1.041332799999964],[120.53141370000003,-1.043597499999976],[120.53293510000003,-1.044561099999953],[120.53396980000002,-1.043208299999947],[120.53157510000005,-1.033683699999926],[120.52409740000007,-1.021661199999926],[120.5167,-1.0158609],[120.507968,-0.997051799999952],[120.49180960000001,-0.995312699999943],[120.48950920000004,-0.991381499999932],[120.48706060000006,-0.989470199999971],[120.4860503000001,-0.991257],[120.4850957000001,-0.989206199999956],[120.48090450000007,-0.9923141],[120.47236960000009,-0.990561199999945],[120.47180530000003,-0.9924601],[120.47392050000008,-0.992319699999939],[120.47258020000004,-0.995530599999938],[120.472143,-0.993983899999932],[120.4669970000001,-0.991171799999961],[120.46490110000002,-0.993500799999936],[120.46194520000006,-0.992626199999961],[120.46090640000011,-0.993619199999955],[120.45978830000001,-0.989028799999971],[120.45644930000003,-0.986638099999936],[120.4542341,-0.981845],[120.445437,-0.974425599999961],[120.4422714000001,-0.969311299999958],[120.44000770000002,-0.969348899999943],[120.43468940000002,-0.964612099999954],[120.42966970000009,-0.9395642],[120.42709810000008,-0.938758899999925],[120.42072410000003,-0.930357],[120.41193880000003,-0.924310899999966],[120.40645470000004,-0.923026099999959],[120.40383840000004,-0.925246899999934],[120.40038270000002,-0.925762299999974],[120.39720260000001,-0.924126],[120.39563020000003,-0.926875199999927],[120.39456230000008,-0.924845699999935],[120.38087880000012,-0.9285009],[120.37184690000004,-0.927705399999979],[120.36982570000009,-0.930388799999946],[120.370623,-0.9323364],[120.3687268000001,-0.933601199999941],[120.36860260000003,-0.936126899999977],[120.3698475000001,-0.936822199999938],[120.36455180000007,-0.935607199999936],[120.36091970000007,-0.941077699999937],[120.3579529000001,-0.941735],[120.35830370000008,-0.943164899999942],[120.35300820000009,-0.941825699999924],[120.350799,-0.945404799999949],[120.35171860000003,-0.946061399999962],[120.349418,-0.945147399999939],[120.35010450000004,-0.9501243],[120.35203820000004,-0.952862499999981],[120.35063060000004,-0.952589099999955],[120.34824560000004,-0.955427899999961],[120.3421485,-0.955592799999977],[120.33700210000006,-0.95292],[120.32959990000006,-0.958152799999937],[120.32057620000012,-0.960883799999976],[120.31534990000011,-0.965885299999968],[120.31146,-0.966457499999933],[120.30937940000001,-0.964779399999941],[120.30469570000002,-0.955581099999961],[120.30027780000012,-0.952515699999935],[120.29907360000004,-0.948451899999952],[120.28668330000005,-0.941001899999947],[120.28316030000008,-0.933375499999954],[120.28368260000002,-0.924831599999948],[120.27672880000011,-0.912067299999933],[120.26317460000007,-0.900189499999954],[120.24721020000004,-0.890829799999949],[120.24264430000005,-0.885637699999961],[120.24205030000007,-0.879934099999957],[120.24000360000002,-0.8798053],[120.24120590000007,-0.873815499999978],[120.23476520000008,-0.868834599999957],[120.23007780000012,-0.858014299999979],[120.2218415000001,-0.845888499999944],[120.2189105000001,-0.843019599999934],[120.21256670000002,-0.842303899999933],[120.21152440000003,-0.8455986],[120.20593550000001,-0.849819199999956],[120.19698760000006,-0.846490499999959],[120.19390380000004,-0.841474799999958],[120.188828,-0.839195199999949],[120.18705650000004,-0.835647399999971],[120.18361420000008,-0.820954],[120.17416130000004,-0.7974492],[120.16683150000006,-0.789850299999955],[120.14865980000002,-0.778856799999971],[120.1414635000001,-0.772374899999932],[120.13745160000008,-0.776409099999967],[120.13307720000012,-0.774268699999936],[120.13209620000009,-0.767156199999931],[120.13016830000004,-0.763878599999941],[120.1309586000001,-0.758882],[120.11029030000009,-0.737315399999943],[120.10767190000001,-0.730042899999944],[120.10603620000006,-0.7163798],[120.10233630000005,-0.705830099999957],[120.0971293,-0.703465799999947],[120.0911393,-0.695409099999949],[120.08749380000006,-0.693778499999951],[120.08327330000009,-0.685616],[120.08188430000007,-0.677065299999924],[120.07811310000011,-0.6737105],[120.07766430000004,-0.670625499999971],[120.07535370000005,-0.669298],[120.07596390000003,-0.666742799999952],[120.07397880000008,-0.663733399999956],[120.07198740000001,-0.654152],[120.06968510000002,-0.653009199999929],[120.06698330000006,-0.647522799999933],[120.06509420000009,-0.6464913],[120.06504260000008,-0.643447399999957],[120.05924840000011,-0.6311095],[120.06295820000003,-0.619122199999936],[120.060952,-0.610042299999975],[120.06178040000009,-0.605773899999974],[120.0574706000001,-0.596343799999943],[120.05887380000001,-0.593569099999968],[120.05746460000012,-0.591713599999935],[120.05531040000005,-0.577745099999959],[120.05645650000008,-0.572064599999976],[120.0517003000001,-0.562857099999974],[120.05342,-0.551530299999968],[120.05089420000002,-0.546086899999978],[120.05157310000004,-0.539445099999966],[120.04847820000009,-0.535595299999954],[120.0474455000001,-0.531301],[120.0520811,-0.521497],[120.05352120000009,-0.512363899999968],[120.04993680000007,-0.504220099999941],[120.04941170000006,-0.492023699999947],[120.05004040000006,-0.487869099999955],[120.06264470000008,-0.473604099999932],[120.06670670000005,-0.464684499999976],[120.06961170000011,-0.461479599999961],[120.07216270000004,-0.449637399999972],[120.07111350000002,-0.444217899999956],[120.0723412000001,-0.441584699999964],[120.06851350000011,-0.4357019],[120.07065090000003,-0.432349299999942],[120.06567690000008,-0.430464799999925],[120.06507880000004,-0.423510199999953],[120.06607230000009,-0.421843099999933],[120.06348610000009,-0.420742599999926],[120.06307790000005,-0.419072299999925],[120.06372090000002,-0.417128],[120.06522280000002,-0.417204099999935],[120.06482270000004,-0.415953399999978],[120.05985550000003,-0.418502899999964],[120.05789320000008,-0.417981699999928],[120.05735260000006,-0.412957],[120.053515,-0.4061222],[120.05493180000008,-0.404479699999968],[120.053299,-0.403629499999965],[120.05305040000007,-0.398782199999971],[120.0503893,-0.397014199999944],[120.04599680000001,-0.398229299999969],[120.042928,-0.391465399999959],[120.04086540000003,-0.390780899999925],[120.041659,-0.3886595],[120.039024,-0.381998299999964],[120.04076970000006,-0.376349199999936],[120.03835540000011,-0.376146],[120.03502020000008,-0.3710923],[120.03505430000007,-0.369473299999925],[120.03748530000007,-0.369777699999929],[120.03827400000011,-0.367771],[120.03460650000011,-0.363472299999955],[120.03513470000007,-0.358727399999964],[120.03317250000009,-0.356098899999949],[120.0312272000001,-0.347514],[120.03386190000003,-0.343353],[120.0326811000001,-0.339327099999934],[120.033785,-0.332956899999942],[120.03337510000006,-0.315256399999953],[120.03071720000003,-0.304159699999957],[120.0210446000001,-0.295457299999953],[120.01220110000008,-0.291692099999977],[120.00862030000008,-0.285694899999953],[120.00903660000006,-0.281032],[120.00710050000009,-0.273261499999933],[120.01153430000011,-0.248777799999971],[120.00539630000003,-0.235263799999927],[120.00465190000011,-0.230745099999979],[120.0059328000001,-0.2264478],[120.00527610000006,-0.222942499999931],[120.00911630000007,-0.222212499999955],[120.00797540000008,-0.218844499999932],[120.0093078000001,-0.216287],[120.00818490000006,-0.211283599999945],[120.00948310000001,-0.206777399999964],[120.00825530000009,-0.2048284],[120.01067880000005,-0.195610599999952],[120.00915720000012,-0.191825399999971],[120.0079290000001,-0.192416799999933],[120.00715080000009,-0.191233499999953],[120.00858650000009,-0.190990099999965],[120.00789510000004,-0.188536699999929],[120.01030020000007,-0.185326199999963],[120.00907350000011,-0.176636099999939],[120.01246580000009,-0.173306599999933],[120.0167901000001,-0.173724899999968],[120.01944130000004,-0.172401099999945],[120.02118970000004,-0.166686499999969],[120.02613730000007,-0.163659699999926],[120.03446980000001,-0.153876499999967],[120.04009350000001,-0.141172],[120.04222990000005,-0.129086299999926],[120.04018330000008,-0.1166764],[120.04123980000008,-0.110929299999952],[120.03561950000005,-0.103616899999963],[120.03350670000009,-0.089929899999959],[120.03354960000001,-0.0848047],[120.03523540000003,-0.081611799999962],[120.03334740000003,-0.075213],[120.03512080000007,-0.065486399999941],[120.03902130000006,-0.059418499999936],[120.04784820000009,-0.056119099999933],[120.0502613000001,-0.056367399999942],[120.0494294,-0.0573222],[120.05106110000008,-0.0592427],[120.0538236000001,-0.0583309],[120.06649930000003,-0.060125399999947],[120.07128480000006,-0.050334],[120.08059750000007,-0.046166099999937],[120.0890495000001,-0.039698599999952],[120.09195960000011,-0.0338314],[120.09503150000012,-0.031438899999955],[120.09703850000005,-0.024777299999926],[120.0968583,-0.019683799999939],[120.100197,-0.016169699999978],[120.09867130000009,-0.011510399999963],[120.10177550000003,-0.007070599999963],[120.10306660000003,0.001115300000038],[120.10172260000002,0.002724600000022],[120.10266130000002,0.006312700000024],[120.10129740000002,0.013180900000066],[120.10346960000004,0.017781600000035],[120.09919360000004,0.025853300000051],[120.0992308000001,0.029127900000049],[120.10219240000004,0.040362],[120.10554620000005,0.044878200000028],[120.108622,0.04600320000003],[120.11165950000009,0.056288100000074],[120.1107876000001,0.062714400000061],[120.10786990000008,0.068186700000069],[120.10787950000008,0.077925400000026],[120.10917860000006,0.081305200000031],[120.106025,0.088055800000063],[120.10598180000011,0.095088300000043],[120.11138190000008,0.101216800000032],[120.1137285000001,0.112616],[120.1219642000001,0.116541],[120.1327437000001,0.126982400000031],[120.13633030000005,0.139084300000036],[120.13343240000006,0.148921900000062],[120.13384740000004,0.153524200000049],[120.1285749000001,0.156321300000059],[120.123971,0.161952400000075],[120.12471650000009,0.166587100000072],[120.12746340000001,0.171337900000026],[120.12903470000003,0.17119660000003],[120.12951710000004,0.177648800000043],[120.13141660000008,0.181055800000024],[120.13394920000007,0.181839700000069],[120.13379850000001,0.186060800000064],[120.1363123000001,0.19165],[120.14290770000002,0.197680200000036],[120.14576450000004,0.202511800000025],[120.14621680000005,0.206642500000044],[120.1505585000001,0.207155],[120.15191530000004,0.20896410000006],[120.15009010000006,0.210624900000028],[120.1517986,0.210200400000076],[120.1542875,0.212338],[120.15469750000011,0.215354],[120.15826980000008,0.220331900000076],[120.15769380000006,0.226599],[120.15917500000012,0.22893],[120.1645181,0.229070400000069],[120.16632190000007,0.231076900000062],[120.16688640000007,0.235613400000034],[120.17343830000004,0.237748],[120.17489790000002,0.241632600000059],[120.17400350000003,0.242971600000033],[120.18137410000008,0.248081900000045],[120.18288490000009,0.252918800000032],[120.18963330000008,0.25597730000004],[120.19702470000004,0.262098300000048],[120.20014290000006,0.262098300000048],[120.20199080000009,0.264292600000033],[120.21504120000009,0.289816],[120.2152446,0.295643700000028],[120.22265290000007,0.300933200000031],[120.22325980000005,0.307527700000037],[120.22951120000005,0.311886100000038],[120.22939420000012,0.315737],[120.23284580000006,0.320696600000019],[120.23325960000011,0.323946300000046],[120.24088010000003,0.331100900000024],[120.24506180000003,0.337626900000032],[120.24417260000007,0.342924400000072],[120.23992270000008,0.34446360000004],[120.24270840000008,0.348473100000035],[120.25200630000006,0.351916],[120.26109370000006,0.362570300000073],[120.27052960000003,0.361896700000045],[120.27657280000005,0.367440200000033],[120.27623,0.369017300000053],[120.27377090000005,0.369173400000022],[120.27787560000002,0.371520100000055],[120.27674430000002,0.374777100000074],[120.28041270000006,0.375565600000073],[120.28211550000003,0.379043300000035],[120.28635680000002,0.380181200000038],[120.28956560000006,0.385243500000058],[120.292299,0.391981700000031],[120.29118270000004,0.394378900000049],[120.29159310000011,0.400466800000061],[120.298826,0.41242150000005],[120.31038750000005,0.424253600000043],[120.31283520000011,0.42461110000005],[120.3142524000001,0.425644],[120.31356820000008,0.426425100000074],[120.32368090000011,0.428043900000034],[120.33002170000009,0.436043100000063],[120.34203430000002,0.444726800000069],[120.34924450000005,0.447467500000073],[120.35224620000008,0.451689100000067],[120.373855,0.461339400000043],[120.38866990000008,0.463419],[120.39148410000007,0.466973800000062],[120.3947511,0.467446],[120.39759040000001,0.470540200000073],[120.41014270000005,0.476865],[120.41737490000003,0.475324700000044],[120.41873340000006,0.47365190000005],[120.41775840000003,0.472737],[120.42151530000001,0.468416400000024],[120.42606230000001,0.465967300000045],[120.42962970000008,0.464950600000066],[120.43155320000005,0.466752800000052],[120.43569390000005,0.465787500000033],[120.44557310000005,0.471110300000021],[120.461228,0.493490300000076],[120.47421270000007,0.492651300000034],[120.47772020000002,0.495779600000049],[120.478597,0.499144900000033],[120.49374430000012,0.507069600000023],[120.5023701,0.509116200000051],[120.50734690000002,0.51333470000003],[120.52098810000007,0.5126],[120.52349970000012,0.515392500000075],[120.52858230000004,0.517079700000068],[120.54852560000006,0.510318],[120.553346,0.512477100000069],[120.55875350000008,0.512606700000049],[120.57131090000007,0.509049600000026],[120.58516070000007,0.514287100000047],[120.59055780000006,0.518439400000034],[120.59589130000006,0.519462],[120.60060790000011,0.517927800000052],[120.6021909000001,0.52087460000007],[120.60803750000002,0.521520700000053],[120.62104780000004,0.519885800000054],[120.631382,0.515785400000027],[120.6328754000001,0.517231],[120.639808,0.517493100000024],[120.6465707000001,0.521279800000059],[120.6550595000001,0.515312400000028],[120.6691985000001,0.509585600000037],[120.68157240000005,0.509801400000072],[120.6883673000001,0.513316600000053],[120.6891266,0.511106900000073],[120.69729130000007,0.50863060000006],[120.69890950000001,0.50676720000007],[120.69841910000002,0.502795100000071],[120.70899390000011,0.496299800000031],[120.71266750000007,0.489837100000045],[120.7252717,0.476292700000045],[120.74898170000006,0.465758600000072],[120.75112520000005,0.466796600000066],[120.75217970000006,0.465152100000068],[120.75501680000002,0.465302700000052],[120.75529290000009,0.463633100000038],[120.75989540000012,0.463981500000045],[120.76187760000005,0.460235400000045],[120.7668331000001,0.456826],[120.77217020000012,0.456650800000034],[120.7807269000001,0.461724100000026],[120.79012190000003,0.460015700000042],[120.79636070000004,0.469387900000072],[120.80054280000002,0.471722700000043],[120.80752180000002,0.469487900000047],[120.80821060000005,0.473980500000039],[120.81066320000002,0.474957],[120.810933,0.466270700000052],[120.80691900000011,0.462884200000076],[120.81010580000009,0.458148900000026],[120.80880390000004,0.453248600000052],[120.81056710000007,0.45311490000006],[120.81691620000004,0.447339300000067],[120.81904910000003,0.449189200000035],[120.82375370000011,0.448878100000059],[120.82940410000003,0.442951500000049],[120.82995310000001,0.440371700000071],[120.83268380000004,0.443983],[120.83782970000004,0.446387600000037],[120.84433550000006,0.44608420000003],[120.8543959000001,0.442518500000062],[120.85725630000002,0.439417300000059],[120.85817740000005,0.435680800000057],[120.86118520000002,0.435353600000042],[120.86379910000005,0.431637300000034],[120.86474830000009,0.428058200000066],[120.86325350000004,0.425838200000044],[120.86757280000006,0.426707700000065],[120.87102620000007,0.422204700000066],[120.87482820000002,0.420617],[120.87926310000012,0.412837100000047],[120.8814857000001,0.412077100000033],[120.89725610000005,0.395885600000042],[120.912564,0.401096],[120.92152460000011,0.399500400000022],[120.93233470000007,0.400252400000056],[120.93651580000005,0.405955300000073],[120.94286130000012,0.410704],[120.94670340000005,0.411826200000064],[120.948721,0.414424600000075],[120.95243370000003,0.415506],[120.95441610000012,0.412026400000059],[120.95690740000009,0.411385800000062],[120.96009560000005,0.415175100000056],[120.96392240000011,0.415155600000048],[120.96740240000008,0.418147900000065],[120.97150470000008,0.417043500000034],[120.97738560000005,0.418021700000054],[120.97896490000005,0.419109],[120.97867940000003,0.421157900000026],[120.98574440000004,0.420961700000021],[120.99289920000001,0.425561600000037],[120.99234910000007,0.427508],[120.99587070000007,0.427304],[121.00031750000005,0.429381400000068],[121.00153810000006,0.432127200000025],[121.0042059000001,0.431562600000063],[121.01193120000005,0.435427400000037],[121.01756000000012,0.433961],[121.0217685,0.434662600000024],[121.0230213000001,0.437881900000036],[121.02761150000003,0.440252300000054],[121.0342677000001,0.432267100000047],[121.03657040000007,0.431829900000025],[121.03826050000009,0.42575290000002],[121.04372190000004,0.423344900000075],[121.05342080000003,0.41332970000002],[121.06141660000003,0.409016400000041],[121.06542030000003,0.409144800000036],[121.06746830000009,0.403969],[121.07470970000008,0.400004800000033],[121.0807936000001,0.397595900000056],[121.08527050000009,0.399502700000028],[121.09005380000008,0.404371100000049],[121.09753540000008,0.407533100000023],[121.11129580000011,0.40107880000005],[121.1225644000001,0.411612800000057],[121.13463580000007,0.40993450000002],[121.13857450000012,0.410452600000042],[121.13886020000007,0.411608500000057],[121.1461488000001,0.410543400000051],[121.14823010000009,0.411779100000047],[121.1524614000001,0.411308900000051],[121.16186430000005,0.415540200000066],[121.15857960000005,0.424861700000065],[121.16177020000009,0.433687700000064],[121.16082990000007,0.436414500000069],[121.16722390000007,0.443560700000035],[121.170985,0.442338300000074],[121.17329810000001,0.446682400000043],[121.17924070000004,0.446456700000056],[121.177661,0.451571900000033],[121.18257540000002,0.459210100000064],[121.18441750000011,0.457593600000052],[121.185628,0.458536],[121.18533410000009,0.461686900000075],[121.18843840000011,0.461713700000075],[121.19108460000007,0.463500600000032],[121.19504230000007,0.463158700000065],[121.19862670000009,0.461473500000068],[121.2011592,0.457671100000027],[121.20927030000007,0.459118500000045],[121.2113796000001,0.457023900000024],[121.218553,0.462389600000051],[121.22466050000003,0.461649500000021],[121.231999,0.457969600000069],[121.2387245000001,0.462476800000047],[121.2466472000001,0.479942],[121.25233660000004,0.486370400000055],[121.25600040000006,0.487112600000046],[121.2583366,0.489389600000038],[121.26329550000003,0.489392100000032],[121.26855610000007,0.492378700000074],[121.282638,0.492406500000072],[121.28464080000003,0.492801400000076],[121.285654,0.494864700000051],[121.29035150000004,0.495125700000074],[121.30226790000006,0.487967800000035],[121.31844740000008,0.485251500000061],[121.3342057000001,0.477048700000068],[121.33447940000008,0.474605700000041],[121.33751460000008,0.473817600000075],[121.33816460000003,0.476013600000044],[121.341935,0.478745400000037],[121.3426002000001,0.483708100000058],[121.35079340000004,0.48828130000004],[121.35168370000008,0.492013],[121.34462560000009,0.49700260000003],[121.3443009,0.502910400000076],[121.34307170000011,0.503473500000041],[121.3444247000001,0.505352100000039],[121.3380926000001,0.506540100000052],[121.33555400000012,0.511299100000031],[121.33369370000003,0.511689700000034],[121.33368970000004,0.520146700000055],[121.33129760000008,0.522739],[121.33426630000008,0.523946300000034],[121.33567710000011,0.526539100000036],[121.34256890000006,0.526821600000062],[121.34726280000007,0.535175600000059],[121.34766600000012,0.53766],[121.3439522000001,0.547387300000025],[121.350266,0.555242700000065],[121.34569840000006,0.565844],[121.34332360000008,0.565831400000036],[121.33801240000003,0.573520500000029],[121.33530510000003,0.575250100000062],[121.32987550000007,0.57448990000006],[121.3240393000001,0.576637300000073],[121.32011430000011,0.576338],[121.31640230000005,0.57845],[121.30763150000007,0.56857640000004],[121.30384880000008,0.567855],[121.3015689,0.569835300000022],[121.30038390000004,0.575294800000052],[121.29493420000006,0.580105200000048],[121.27533830000004,0.582555700000057],[121.270121,0.587625],[121.26180440000007,0.589909900000066],[121.25000000000011,0.600942600000053],[121.24284000000011,0.600480600000026],[121.23939210000003,0.602213500000062],[121.23510870000007,0.608197100000041],[121.23107890000006,0.621420600000022],[121.22786350000001,0.626126400000032],[121.22753160000002,0.62916910000007],[121.23164140000006,0.635066],[121.23182830000007,0.641484500000047],[121.23068680000006,0.643206100000043],[121.22799210000005,0.64539220000006],[121.2189201000001,0.638400100000069],[121.20256590000008,0.642625700000053],[121.19665850000001,0.641862900000035],[121.19435930000009,0.645357100000069],[121.18665350000003,0.651439900000071],[121.17918490000011,0.655097900000044],[121.17325460000006,0.66539350000005],[121.16550230000007,0.669336600000065],[121.16251860000011,0.676595500000076],[121.15643260000002,0.676248600000065],[121.1543233000001,0.679363600000045],[121.14982710000004,0.681353200000046],[121.13282790000005,0.68052],[121.12609610000004,0.681515900000022],[121.12045690000002,0.686698],[121.108345,0.689867],[121.10655270000007,0.694969700000058],[121.10200390000011,0.694709200000034],[121.09584450000011,0.698714],[121.077727,0.696965100000057],[121.06875510000009,0.700422900000035],[121.062642,0.70106370000002],[121.0617936000001,0.697690100000045],[121.05779740000003,0.693106200000045],[121.05498190000003,0.694003800000075],[121.0515074000001,0.690560800000071],[121.03588750000006,0.695236600000044],[121.026756,0.702791300000058],[121.01997130000007,0.703205700000069],[121.0105886,0.707970100000068],[121.00239920000001,0.701220900000067],[120.9779377000001,0.694919800000037],[120.97247850000008,0.692670600000042],[120.97059740000009,0.689958100000069],[120.9545945000001,0.692817400000024],[120.93453580000005,0.686313300000052],[120.91828920000012,0.691292],[120.90838310000004,0.692499700000042],[120.89122750000001,0.698507],[120.88320580000004,0.702917300000024],[120.87380130000008,0.70039730000002],[120.870438,0.704621300000042],[120.86082510000006,0.708899],[120.8578040000001,0.707845600000041],[120.84999810000011,0.700630500000045]]]]},"properties":{"shapeName":"Parigi Moutong","shapeISO":"","shapeID":"22746128B80443418306706","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.26436480000007,-0.034798099999932],[100.26489880000008,-0.031711499999972],[100.26005230000004,-0.022493699999927],[100.26170980000006,-0.019492],[100.26883740000005,-0.017324099999939],[100.27389530000005,-0.011197899999956],[100.27729330000005,-0.009863799999948],[100.29564130000006,-0.008845699999938],[100.30832160000006,-0.002425599999924],[100.31403630000005,0.00522890000002],[100.32008580000007,0.027406],[100.32788710000005,0.034424800000068],[100.33485220000006,0.037572500000067],[100.33764610000009,0.042762],[100.33017630000006,0.052292],[100.327409,0.063680200000022],[100.31782890000005,0.080956800000024],[100.31581660000006,0.087789800000053],[100.32487340000006,0.102045900000064],[100.32403510000006,0.107529100000022],[100.32093260000005,0.111241],[100.32042930000006,0.114332900000022],[100.320849,0.118635100000063],[100.32403570000008,0.123190200000067],[100.32403610000006,0.136687400000028],[100.32798980000007,0.145026800000039],[100.32824160000007,0.149666400000058],[100.34954170000003,0.170585500000072],[100.35149110000003,0.177631500000075],[100.34369460000005,0.201420600000063],[100.33656130000008,0.210756900000035],[100.33270480000004,0.219446],[100.33245390000008,0.227459900000042],[100.32943590000008,0.234546200000068],[100.33214110000006,0.252665200000024],[100.31933680000009,0.274094500000047],[100.315786,0.27442730000007],[100.319847,0.286483700000019],[100.31532840000006,0.288118700000041],[100.30867150000006,0.300206900000035],[100.31009380000006,0.305723200000045],[100.31995820000009,0.314733900000022],[100.32895880000007,0.332863800000041],[100.33205640000006,0.335877],[100.33215820000004,0.338022200000069],[100.32799560000007,0.343794600000024],[100.333429,0.351536800000019],[100.324189,0.35761640000004],[100.32322480000005,0.360936600000059],[100.32616220000006,0.364177700000027],[100.32555330000008,0.366476300000045],[100.31951150000003,0.367601300000047],[100.31167380000005,0.377739900000051],[100.30299230000008,0.384330400000067],[100.30126650000005,0.387855100000024],[100.30051260000005,0.396600200000023],[100.29469070000005,0.400583600000061],[100.28961830000009,0.398446900000067],[100.28693120000008,0.403236200000038],[100.27822760000004,0.409374200000059],[100.25901410000006,0.432309],[100.25501250000008,0.44197470000006],[100.25623150000007,0.44503480000003],[100.26041040000007,0.445721200000037],[100.250004,0.455853500000046],[100.24620860000005,0.464247200000045],[100.24387230000008,0.465691100000072],[100.24302320000004,0.468765100000041],[100.23763440000005,0.475101],[100.23728980000004,0.478789800000072],[100.23975940000008,0.480099100000075],[100.24236250000007,0.485818700000038],[100.24204480000009,0.490763800000025],[100.23771760000005,0.494667100000072],[100.23023050000006,0.497421700000075],[100.22614220000008,0.501405200000022],[100.22156890000008,0.502891200000022],[100.21658680000007,0.511646300000052],[100.21613560000009,0.52069640000002],[100.22941530000008,0.527662900000053],[100.23756730000008,0.535345200000052],[100.23819570000006,0.540680800000075],[100.23717730000004,0.542559200000028],[100.231994,0.548450700000046],[100.22112840000005,0.556250700000021],[100.21147130000008,0.559108800000047],[100.20450920000007,0.557914900000071],[100.20015130000007,0.55985110000006],[100.19483040000006,0.557803100000058],[100.19173890000008,0.560038200000065],[100.18409790000004,0.560950500000047],[100.17979720000005,0.565903300000059],[100.17681910000005,0.572675200000049],[100.17827990000006,0.58951490000004],[100.18675190000005,0.62658360000006],[100.19609180000003,0.635351700000058],[100.19981570000004,0.640752],[100.20133820000007,0.64094110000002],[100.20152390000004,0.643238],[100.20302720000007,0.643600900000024],[100.21576290000007,0.663115100000027],[100.23781930000007,0.673329],[100.24077290000008,0.679348800000071],[100.24270120000006,0.694307600000059],[100.23925890000004,0.733954100000062],[100.22379690000008,0.738794],[100.21905320000008,0.742738700000075],[100.21322120000008,0.735625500000026],[100.21107030000007,0.735512300000039],[100.20054490000007,0.744736],[100.19328710000008,0.763815700000066],[100.17861730000004,0.764380100000039],[100.16971040000004,0.76472270000005],[100.13598890000009,0.775538300000051],[100.11974590000005,0.785891500000048],[100.07438510000009,0.801212900000053],[100.06215010000005,0.808120400000064],[100.03469680000006,0.827339500000051],[100.00311270000009,0.843293700000061],[99.99656570000008,0.841452600000025],[99.98199330000006,0.845716800000048],[99.97628320000007,0.849867],[99.973113,0.848709800000051],[99.96750510000004,0.850720300000035],[99.96084430000008,0.859977100000037],[99.96103650000003,0.864772900000048],[99.95948010000006,0.86889350000007],[99.95168570000004,0.879334],[99.94105220000006,0.882733600000051],[99.90493470000007,0.88870570000006],[99.90054810000004,0.891027300000076],[99.90079980000007,0.893132100000059],[99.898373,0.895995300000038],[99.89247910000006,0.89685970000005],[99.88176580000004,0.901745600000027],[99.87934270000005,0.905028],[99.87155480000007,0.907389200000068],[99.86527640000008,0.906043600000032],[99.85696040000005,0.896698600000036],[99.84066940000008,0.892918300000019],[99.83403810000004,0.886681500000066],[99.830865,0.880499500000042],[99.83287910000007,0.87113990000006],[99.84123310000007,0.851179100000024],[99.84156820000004,0.834318400000029],[99.837539,0.82086570000007],[99.840935,0.817677500000059],[99.84480820000005,0.814259100000072],[99.84590710000003,0.807699400000047],[99.84381140000005,0.79757],[99.84682820000006,0.791097600000057],[99.84311140000005,0.779301800000042],[99.84476060000009,0.776039400000059],[99.84381280000008,0.772078500000021],[99.846222,0.768931],[99.84632990000006,0.765675500000043],[99.84357330000006,0.759370600000068],[99.834833,0.757504400000073],[99.83351270000009,0.755681700000025],[99.83403140000007,0.751427200000023],[99.83154450000006,0.746017],[99.82606610000005,0.739725600000043],[99.82529480000005,0.73591],[99.82968270000003,0.716044900000043],[99.83518940000005,0.70901850000007],[99.83415840000004,0.701340900000048],[99.83087080000007,0.696217200000035],[99.84701710000007,0.684965600000055],[99.85305170000004,0.682959800000049],[99.88545790000006,0.688674],[99.88884950000005,0.686831600000062],[99.89296780000006,0.679344],[99.896201,0.676593],[99.90473680000008,0.680586],[99.91114790000006,0.679864900000041],[99.91369360000004,0.663738700000067],[99.91662850000006,0.654766800000061],[99.91595150000006,0.649572400000068],[99.92046570000008,0.643308200000035],[99.92519710000005,0.632873],[99.92505890000007,0.631170300000065],[99.90963210000007,0.628962300000069],[99.90924660000007,0.625632600000074],[99.923296,0.615290300000026],[99.92038220000006,0.605444600000055],[99.92722,0.60420890000006],[99.93077320000003,0.597178500000041],[99.94078720000005,0.592830400000025],[99.95171590000007,0.576215700000034],[99.959768,0.569541400000048],[99.96084260000003,0.560319600000071],[99.96487740000003,0.554366200000061],[99.96468380000005,0.545837300000073],[99.95640060000005,0.530771100000038],[99.95016,0.524185400000022],[99.95203690000005,0.520457400000055],[99.95958210000003,0.516058],[99.96105350000005,0.513579400000026],[99.95524110000008,0.510368],[99.94622310000005,0.509707700000035],[99.93641770000005,0.503459100000043],[99.92780580000004,0.496205700000075],[99.92024470000007,0.487818700000048],[99.91738350000008,0.481641400000058],[99.90616830000005,0.471298700000034],[99.90217050000007,0.469934800000033],[99.89293140000007,0.470524600000033],[99.88230590000006,0.466491],[99.87608440000008,0.468631600000037],[99.87023440000007,0.464673700000048],[99.86342780000007,0.464942],[99.85912020000006,0.463337700000068],[99.84938960000005,0.469918800000073],[99.83675560000006,0.458642400000031],[99.82033120000006,0.460520900000063],[99.82147140000006,0.456257400000027],[99.83041370000007,0.440919800000074],[99.83046440000004,0.427934900000025],[99.82541140000006,0.416968800000063],[99.82174190000006,0.414347900000053],[99.81522230000007,0.41338010000004],[99.80288530000007,0.416323700000021],[99.79974780000003,0.415842500000053],[99.79474870000007,0.412312300000053],[99.78466770000006,0.417614800000024],[99.77823330000007,0.418685400000072],[99.77631860000008,0.415957200000037],[99.77647830000006,0.408167200000037],[99.77435060000005,0.40148030000006],[99.769777,0.398699],[99.75005370000008,0.397281100000043],[99.74762860000004,0.389707900000076],[99.74348130000004,0.385600700000055],[99.74367240000004,0.382199100000037],[99.746607,0.379759900000067],[99.75022140000004,0.37904020000002],[99.76200620000009,0.370181200000047],[99.76823730000007,0.367387],[99.77006570000003,0.362685300000066],[99.77683860000008,0.358596400000067],[99.77283890000007,0.34929470000003],[99.76024040000004,0.34602510000002],[99.75366960000008,0.335873],[99.75278230000004,0.327537200000052],[99.75664250000005,0.317161100000021],[99.76835970000008,0.309937600000069],[99.78183910000007,0.320498],[99.78728870000003,0.320565300000055],[99.78871090000007,0.318589200000019],[99.790746,0.30186290000006],[99.79514830000005,0.298319400000025],[99.81079430000005,0.299612900000056],[99.821941,0.304040600000064],[99.82485370000006,0.307651600000042],[99.829527,0.306288500000051],[99.83332,0.306833300000051],[99.84774630000004,0.302880300000027],[99.85317850000007,0.297982600000068],[99.855019,0.29417890000002],[99.86306680000007,0.291551900000059],[99.86681160000006,0.291551600000048],[99.87917020000003,0.297205700000063],[99.88056580000006,0.299023500000033],[99.89353970000008,0.304032100000029],[99.91362190000007,0.30402950000007],[99.919241,0.30059620000003],[99.92801860000009,0.298841500000037],[99.928812,0.29724310000006],[99.93281750000006,0.296155900000031],[99.93351940000008,0.293714500000021],[99.95144510000006,0.291921700000046],[99.95548010000005,0.286654700000042],[99.959795,0.287046400000065],[99.95940210000003,0.285478600000033],[99.96305270000005,0.284757600000034],[99.96343040000005,0.282495500000039],[99.967638,0.281164200000035],[99.96803090000009,0.277635600000053],[99.98168750000008,0.277368500000023],[99.98764230000006,0.28234290000006],[99.99021720000007,0.282911300000023],[99.99226190000007,0.280233400000043],[99.99829290000008,0.277212100000042],[100.01285740000009,0.274953800000048],[100.01248360000005,0.271936400000072],[100.01537510000009,0.262182200000041],[100.02712440000005,0.256666200000041],[100.03084180000008,0.235851],[100.02953320000006,0.226312500000063],[100.02510670000004,0.214756500000021],[100.01382460000008,0.196255400000041],[100.01071580000007,0.187484900000072],[100.01194140000007,0.17654820000007],[100.01447520000005,0.169805200000042],[100.01365740000006,0.163226800000075],[100.01651870000006,0.15561260000004],[100.01333010000008,0.144676200000049],[100.01082090000006,0.126902200000075],[100.00655540000008,0.115988900000048],[100.00264560000005,0.111158500000045],[99.99990580000008,0.102274900000054],[99.994115,0.095772600000032],[99.99304850000004,0.089331900000047],[99.99448690000008,0.08903220000002],[99.986812,0.083796600000028],[99.98177080000005,0.07708370000006],[99.98149030000008,0.074682900000028],[99.96677420000003,0.064656100000036],[99.95967820000004,0.062308],[99.9589,0.059488],[99.96174050000008,0.050774600000068],[99.96645550000005,0.046500700000024],[99.97584330000007,0.030088700000022],[99.98037490000007,0.029806],[99.98373290000006,0.027834300000052],[99.99807560000005,0.010049600000059],[100.00299660000007,0.00733850000006],[100.01068720000006,0.006543200000067],[100.01525830000008,-0.002204499999948],[100.01521950000006,-0.0071297],[100.02038560000005,-0.0149248],[100.02528160000008,-0.015390099999934],[100.036056,-0.0243358],[100.04021940000007,-0.024646],[100.04180010000005,-0.027864799999975],[100.045424,-0.029377299999965],[100.04763650000007,-0.032583699999975],[100.04713550000008,-0.043597499999976],[100.04340490000004,-0.042207899999937],[100.03807580000006,-0.047774299999958],[100.03700990000004,-0.0462318],[100.03574430000003,-0.046701299999938],[100.03655460000004,-0.050913599999944],[100.034412,-0.051529899999935],[100.03074840000005,-0.058169199999952],[100.03154780000006,-0.063131899999973],[100.03348770000008,-0.060456299999942],[100.03607760000006,-0.063534199999935],[100.036869,-0.066388699999948],[100.03360980000008,-0.067862199999979],[100.03745860000004,-0.0814995],[100.04356780000006,-0.083102099999962],[100.05061030000007,-0.081230699999935],[100.061423,-0.084295399999974],[100.07084170000007,-0.084544199999925],[100.07632520000004,-0.083760499999926],[100.08001630000007,-0.080875699999979],[100.08594010000007,-0.080849599999965],[100.09017520000003,-0.077901199999928],[100.09711430000004,-0.079784299999972],[100.10087810000005,-0.078600899999969],[100.10334810000006,-0.075879499999928],[100.10699440000008,-0.075760799999955],[100.11401760000007,-0.079403899999932],[100.11534350000005,-0.084771],[100.12157970000004,-0.086647],[100.12340740000008,-0.094483399999945],[100.13469330000004,-0.094478299999935],[100.14043670000007,-0.102406299999927],[100.15031520000008,-0.1019334],[100.16009980000007,-0.107611799999972],[100.16609820000008,-0.100038699999971],[100.17026880000009,-0.0980159],[100.17593410000006,-0.092320599999937],[100.18766320000003,-0.0932346],[100.18845150000004,-0.091093199999932],[100.23675980000007,-0.0624579],[100.244022,-0.065248699999927],[100.249482,-0.065796],[100.251339,-0.064585099999931],[100.26006270000005,-0.057273699999939],[100.26140340000006,-0.053646],[100.261068,-0.041603099999975],[100.26436480000007,-0.034798099999932]]]},"properties":{"shapeName":"Pasaman","shapeISO":"","shapeID":"22746128B5897739786041","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[99.36092340000005,0.123576800000023],[99.36246790000007,0.125496],[99.36169570000004,0.126759400000026],[99.35962030000007,0.125143800000046],[99.36092340000005,0.123576800000023]]],[[[99.294791,0.138894300000061],[99.29481610000005,0.14354940000004],[99.29369130000003,0.144379700000059],[99.29246660000007,0.139850500000023],[99.294791,0.138894300000061]]],[[[99.28169150000008,0.178182600000071],[99.27895380000007,0.17811690000002],[99.27851770000007,0.175106500000027],[99.27951280000008,0.172964],[99.28370570000004,0.171602],[99.28169150000008,0.178182600000071]]],[[[99.29991190000004,0.187690900000064],[99.29691780000007,0.18692040000002],[99.29673190000005,0.184766900000056],[99.29857820000007,0.184717900000066],[99.29991190000004,0.187690900000064]]],[[[99.31124370000003,0.195030600000052],[99.30537420000007,0.192430600000023],[99.30219630000005,0.186936700000047],[99.30256590000005,0.183571400000062],[99.30445540000005,0.181625200000042],[99.31002480000006,0.18246],[99.31204650000006,0.18460680000004],[99.31295440000008,0.192916100000048],[99.31124370000003,0.195030600000052]]],[[[99.28797880000008,0.227689800000064],[99.28641910000005,0.227800800000068],[99.28485530000006,0.224209100000053],[99.28140210000004,0.222873],[99.27968240000007,0.219378],[99.28219070000006,0.21519980000005],[99.28119810000004,0.213566600000036],[99.28593290000003,0.212246400000026],[99.28738220000008,0.209978800000044],[99.29189510000003,0.209089200000051],[99.29623070000008,0.212535],[99.29613680000006,0.216537],[99.29137250000008,0.226877700000045],[99.28797880000008,0.227689800000064]]],[[[100.03745860000004,-0.0814995],[100.03360980000008,-0.067862199999979],[100.036869,-0.066388699999948],[100.03607760000006,-0.063534199999935],[100.03348770000008,-0.060456299999942],[100.03154780000006,-0.063131899999973],[100.03074840000005,-0.058169199999952],[100.034412,-0.051529899999935],[100.03655460000004,-0.050913599999944],[100.03574430000003,-0.046701299999938],[100.03700990000004,-0.0462318],[100.03807580000006,-0.047774299999958],[100.04340490000004,-0.042207899999937],[100.04713550000008,-0.043597499999976],[100.04763650000007,-0.032583699999975],[100.045424,-0.029377299999965],[100.04180010000005,-0.027864799999975],[100.04021940000007,-0.024646],[100.036056,-0.0243358],[100.02528160000008,-0.015390099999934],[100.02038560000005,-0.0149248],[100.01521950000006,-0.0071297],[100.01525830000008,-0.002204499999948],[100.01068720000006,0.006543200000067],[100.00299660000007,0.00733850000006],[99.99807560000005,0.010049600000059],[99.98373290000006,0.027834300000052],[99.98037490000007,0.029806],[99.97584330000007,0.030088700000022],[99.96645550000005,0.046500700000024],[99.96174050000008,0.050774600000068],[99.9589,0.059488],[99.95967820000004,0.062308],[99.96677420000003,0.064656100000036],[99.98149030000008,0.074682900000028],[99.98177080000005,0.07708370000006],[99.986812,0.083796600000028],[99.99448690000008,0.08903220000002],[99.99304850000004,0.089331900000047],[99.994115,0.095772600000032],[99.99990580000008,0.102274900000054],[100.00264560000005,0.111158500000045],[100.00655540000008,0.115988900000048],[100.01082090000006,0.126902200000075],[100.01333010000008,0.144676200000049],[100.01651870000006,0.15561260000004],[100.01365740000006,0.163226800000075],[100.01447520000005,0.169805200000042],[100.01194140000007,0.17654820000007],[100.01071580000007,0.187484900000072],[100.01382460000008,0.196255400000041],[100.02510670000004,0.214756500000021],[100.02953320000006,0.226312500000063],[100.03084180000008,0.235851],[100.02712440000005,0.256666200000041],[100.01537510000009,0.262182200000041],[100.01248360000005,0.271936400000072],[100.01285740000009,0.274953800000048],[99.99829290000008,0.277212100000042],[99.99226190000007,0.280233400000043],[99.99021720000007,0.282911300000023],[99.98764230000006,0.28234290000006],[99.98168750000008,0.277368500000023],[99.96803090000009,0.277635600000053],[99.967638,0.281164200000035],[99.96343040000005,0.282495500000039],[99.96305270000005,0.284757600000034],[99.95940210000003,0.285478600000033],[99.959795,0.287046400000065],[99.95548010000005,0.286654700000042],[99.95144510000006,0.291921700000046],[99.93351940000008,0.293714500000021],[99.93281750000006,0.296155900000031],[99.928812,0.29724310000006],[99.92801860000009,0.298841500000037],[99.919241,0.30059620000003],[99.91362190000007,0.30402950000007],[99.89353970000008,0.304032100000029],[99.88056580000006,0.299023500000033],[99.87917020000003,0.297205700000063],[99.86681160000006,0.291551600000048],[99.86306680000007,0.291551900000059],[99.855019,0.29417890000002],[99.85317850000007,0.297982600000068],[99.84774630000004,0.302880300000027],[99.83332,0.306833300000051],[99.829527,0.306288500000051],[99.82485370000006,0.307651600000042],[99.821941,0.304040600000064],[99.81079430000005,0.299612900000056],[99.79514830000005,0.298319400000025],[99.790746,0.30186290000006],[99.78871090000007,0.318589200000019],[99.78728870000003,0.320565300000055],[99.78183910000007,0.320498],[99.76835970000008,0.309937600000069],[99.75664250000005,0.317161100000021],[99.75278230000004,0.327537200000052],[99.75366960000008,0.335873],[99.76024040000004,0.34602510000002],[99.77283890000007,0.34929470000003],[99.77683860000008,0.358596400000067],[99.77006570000003,0.362685300000066],[99.76823730000007,0.367387],[99.76200620000009,0.370181200000047],[99.75022140000004,0.37904020000002],[99.746607,0.379759900000067],[99.74367240000004,0.382199100000037],[99.74348130000004,0.385600700000055],[99.74762860000004,0.389707900000076],[99.75005370000008,0.397281100000043],[99.769777,0.398699],[99.77435060000005,0.40148030000006],[99.77647830000006,0.408167200000037],[99.77631860000008,0.415957200000037],[99.77823330000007,0.418685400000072],[99.78466770000006,0.417614800000024],[99.79474870000007,0.412312300000053],[99.79974780000003,0.415842500000053],[99.80288530000007,0.416323700000021],[99.81522230000007,0.41338010000004],[99.82174190000006,0.414347900000053],[99.82541140000006,0.416968800000063],[99.83046440000004,0.427934900000025],[99.83041370000007,0.440919800000074],[99.82147140000006,0.456257400000027],[99.82033120000006,0.460520900000063],[99.80880840000003,0.465073600000039],[99.80642290000009,0.471408],[99.80417560000006,0.473103900000069],[99.78741530000008,0.481574300000034],[99.78090150000008,0.482165800000075],[99.75769570000006,0.477451100000053],[99.75136050000003,0.479044800000054],[99.74247160000004,0.477791900000057],[99.73902610000005,0.474775700000066],[99.73513320000006,0.464057900000057],[99.72911540000007,0.454908700000033],[99.72671050000008,0.45321210000003],[99.72011570000006,0.452363400000024],[99.70869620000008,0.459167900000068],[99.70078580000006,0.468089900000052],[99.68280780000003,0.469192100000043],[99.67631520000003,0.475978400000031],[99.67406430000005,0.484307400000034],[99.66636190000008,0.491108800000063],[99.66535140000008,0.501669800000059],[99.66158270000005,0.507094800000061],[99.66537820000008,0.516177400000061],[99.66113240000004,0.524634200000037],[99.65554740000005,0.531240500000024],[99.65112990000006,0.531005100000073],[99.64930690000006,0.532348400000046],[99.65030620000005,0.538528],[99.64941740000006,0.540151900000069],[99.64191350000004,0.545774400000028],[99.63830220000006,0.546964700000046],[99.63029410000007,0.542708700000048],[99.61932750000005,0.530123200000048],[99.60834250000005,0.524831900000038],[99.597823,0.523952300000076],[99.59377150000006,0.521659700000043],[99.59045270000007,0.515973900000063],[99.58337060000008,0.515733200000057],[99.57641450000006,0.510134400000027],[99.57300790000005,0.509546100000023],[99.55933990000005,0.510566800000049],[99.54688550000009,0.517509600000039],[99.530494,0.521812700000055],[99.52230670000006,0.529321500000037],[99.51878660000006,0.535289200000022],[99.51334130000004,0.537661800000024],[99.51357990000008,0.539401],[99.51978110000005,0.545709],[99.52077280000003,0.550074700000039],[99.51918120000005,0.551980800000024],[99.50378220000005,0.539482],[99.49142930000005,0.532271600000058],[99.48959720000005,0.529606100000024],[99.48035880000003,0.526297500000055],[99.47734020000007,0.526603700000067],[99.47441990000004,0.52418160000002],[99.46873310000007,0.523615200000052],[99.46277060000006,0.516382100000044],[99.45800590000005,0.514887800000054],[99.44589940000009,0.506417500000055],[99.44564590000005,0.503866800000026],[99.44041180000005,0.499994900000047],[99.43729870000004,0.495667300000036],[99.42909240000006,0.491973700000074],[99.41178790000004,0.493014],[99.40570070000007,0.489176900000075],[99.39785420000004,0.46493090000007],[99.38832630000007,0.455310200000042],[99.38477830000005,0.449168600000064],[99.36611880000004,0.431403500000044],[99.36087420000007,0.411775700000021],[99.34981150000004,0.386327200000039],[99.33405660000005,0.357999600000028],[99.31737860000004,0.334646300000031],[99.31460770000007,0.333499800000027],[99.29733420000008,0.336882500000058],[99.26553770000004,0.337156800000059],[99.24868820000006,0.332510100000036],[99.23673030000003,0.322669400000052],[99.22477230000004,0.30790810000002],[99.19976950000006,0.289593300000035],[99.19433410000005,0.282212700000059],[99.19389390000003,0.276458],[99.19517740000003,0.27353080000006],[99.19258640000004,0.269765500000062],[99.18396490000003,0.254221700000073],[99.17798610000006,0.251761500000043],[99.17581190000004,0.248754600000041],[99.17445310000005,0.246021],[99.17472480000004,0.240827100000047],[99.16726940000007,0.228365600000075],[99.16859010000007,0.22632770000007],[99.17529930000006,0.23113410000002],[99.17773670000008,0.231032900000059],[99.17754830000007,0.235409200000049],[99.180036,0.238976100000059],[99.18249850000007,0.239709700000049],[99.17709610000009,0.243150100000037],[99.17956540000006,0.250465900000052],[99.18813890000007,0.25404160000005],[99.19162940000007,0.252376900000058],[99.19221120000003,0.25058910000007],[99.19325210000005,0.24208120000003],[99.19153740000007,0.238320600000065],[99.19190480000003,0.235546300000067],[99.20347880000008,0.233511600000043],[99.205071,0.230305800000053],[99.20491780000003,0.225373700000034],[99.20706110000003,0.22309260000003],[99.20632620000003,0.221489700000063],[99.20951060000004,0.215817800000025],[99.21202140000008,0.217297400000064],[99.21514450000006,0.215571100000034],[99.21649170000006,0.212488500000063],[99.22090080000004,0.210330700000043],[99.22469760000007,0.213413200000048],[99.22647350000005,0.212735],[99.23259740000003,0.215447500000039],[99.23697580000004,0.207741100000021],[99.23826190000005,0.210022200000026],[99.24016020000005,0.208912500000054],[99.23936420000007,0.213351300000056],[99.24095640000007,0.216063900000051],[99.24358970000009,0.216803700000071],[99.24910110000008,0.214091],[99.24971340000008,0.211994900000036],[99.250877,0.213474400000052],[99.25449,0.210700100000054],[99.25767440000004,0.210946700000022],[99.25871540000009,0.205768],[99.26263450000005,0.202253900000073],[99.26441050000005,0.203610100000049],[99.26389010000008,0.215077200000053],[99.26744210000004,0.222413500000073],[99.26854440000005,0.222721700000022],[99.271545,0.219392600000049],[99.27350460000008,0.221611900000028],[99.27852620000004,0.222166700000059],[99.27919980000007,0.22426280000002],[99.28422140000004,0.224571],[99.28520120000007,0.22827],[99.29712430000006,0.228812300000072],[99.30398310000004,0.235273100000029],[99.31439360000007,0.237837500000069],[99.33678220000007,0.237491700000021],[99.35335720000006,0.231916200000057],[99.359743,0.229077],[99.36176470000004,0.226608200000044],[99.36103230000003,0.222102800000073],[99.35857570000007,0.22000440000005],[99.35890370000004,0.215770100000043],[99.36209280000008,0.215461400000038],[99.36374840000008,0.217004300000042],[99.37748880000004,0.207314200000042],[99.37658850000008,0.196904],[99.37382670000005,0.197212600000057],[99.37168290000005,0.195484600000043],[99.37388780000003,0.190855700000043],[99.37916720000004,0.190114900000026],[99.38309630000003,0.186473400000068],[99.38554540000007,0.18881870000007],[99.38861240000006,0.186535],[99.39241940000005,0.186535],[99.39248040000007,0.182893600000057],[99.38751370000006,0.173031900000069],[99.38954310000008,0.17118030000006],[99.39193110000008,0.159947600000066],[99.39825580000007,0.151183500000059],[99.41276680000004,0.152764],[99.41877880000004,0.151035700000023],[99.42331820000004,0.147147400000051],[99.43338890000007,0.146985900000061],[99.47786640000004,0.13279250000005],[99.61709570000005,0.065934900000059],[99.65364790000007,0.041768500000046],[99.68295220000005,0.013267300000052],[99.68488660000008,0.007818],[99.69113860000004,0.004768300000023],[99.691194,0.002192200000025],[99.72982680000007,-0.020534899999973],[99.74027140000004,-0.029372199999955],[99.75569790000009,-0.049226],[99.76228210000005,-0.063336799999945],[99.76352560000004,-0.069960299999934],[99.75749840000003,-0.083372099999963],[99.75931420000006,-0.111689799999965],[99.75722380000008,-0.119348699999932],[99.74862550000006,-0.133944],[99.74566530000004,-0.144119299999943],[99.75636930000007,-0.155228],[99.76788390000007,-0.170928899999979],[99.80452690000004,-0.176157],[99.80674480000005,-0.1758894],[99.80969090000008,-0.172266099999945],[99.81952820000004,-0.168400199999951],[99.83145080000008,-0.169131],[99.83306610000005,-0.165739599999938],[99.83784810000009,-0.162987299999941],[99.84221030000003,-0.163572099999953],[99.84526360000007,-0.168545399999971],[99.84715380000006,-0.167667699999924],[99.84831680000008,-0.163133],[99.85107930000004,-0.161816499999929],[99.85907650000007,-0.162986399999966],[99.87267860000009,-0.159495],[99.88489210000006,-0.161981199999957],[99.89797780000004,-0.157153499999936],[99.90175810000005,-0.160664],[99.90815550000008,-0.158323399999972],[99.91106350000007,-0.161394899999948],[99.91469860000007,-0.162711099999967],[99.91862390000006,-0.155982599999959],[99.93300830000004,-0.148609],[99.93992240000006,-0.150516599999946],[99.94181240000006,-0.145835899999952],[99.94384780000007,-0.145250699999963],[99.94835540000008,-0.148761099999945],[99.95097230000005,-0.148614599999974],[99.96085890000006,-0.143494799999928],[99.96391210000007,-0.139984299999981],[99.96929140000003,-0.138375],[99.98092290000005,-0.138667],[99.98310430000004,-0.144371399999955],[99.98528520000008,-0.1461265],[99.987902,-0.145248799999933],[99.98746580000005,-0.141299699999934],[99.98921040000005,-0.138959299999954],[99.99197280000004,-0.139544099999966],[99.99459010000004,-0.142469399999925],[100.00105790000003,-0.143759299999942],[100.00129780000003,-0.138601599999959],[100.00482160000007,-0.1347656],[100.00446850000009,-0.128493899999967],[100.00823230000003,-0.123050299999932],[100.01340770000007,-0.119026799999972],[100.01623020000005,-0.103524799999946],[100.015289,-0.097726499999965],[100.02258170000005,-0.093702899999926],[100.03179070000004,-0.091763699999944],[100.03626020000007,-0.083716899999956],[100.038156,-0.083289399999956],[100.03745860000004,-0.0814995]]]]},"properties":{"shapeName":"Pasaman Barat","shapeISO":"","shapeID":"22746128B95299066233286","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[116.46150520000003,-2.191535699999974],[116.50644020000004,-2.162195799999949],[116.42978650000009,-2.203518299999928],[116.46150520000003,-2.191535699999974]]],[[[115.84991680000007,-2.388621399999977],[115.85753880000004,-2.387334199999941],[115.86071570000001,-2.380568],[115.86606250000011,-2.379412399999978],[115.87183890000006,-2.372384599999975],[115.877124,-2.371256899999935],[115.88691250000011,-2.374518899999941],[115.88693540000008,-2.360968799999966],[115.89150560000007,-2.34934],[115.8895295000001,-2.337850699999933],[115.89084180000009,-2.335111],[115.8954271,-2.332979899999941],[115.9001727000001,-2.332820799999979],[115.90844310000011,-2.335884699999951],[115.91970890000005,-2.336917299999925],[115.93627030000005,-2.334075199999972],[115.94185630000004,-2.336024399999928],[115.94403340000008,-2.3390093],[115.94366960000002,-2.3417065],[115.94606520000002,-2.340836899999942],[115.94640750000008,-2.337043799999947],[115.94853,-2.333840699999939],[115.9515149,-2.339935099999934],[115.95451040000012,-2.3422854],[115.96160010000006,-2.335869],[115.96352600000012,-2.337459899999942],[115.97044730000005,-2.335117599999933],[115.97039680000012,-2.331191699999977],[115.966874,-2.327860299999941],[115.96943970000007,-2.325175599999966],[115.96960920000004,-2.322453],[115.97634460000006,-2.320916099999977],[115.98341690000007,-2.313907699999959],[115.98607320000008,-2.3150876],[115.98838230000001,-2.318989299999942],[115.99178720000009,-2.319082399999957],[115.9934472000001,-2.321455599999979],[115.99570690000007,-2.318676299999936],[115.99816350000003,-2.319898599999931],[115.9991169000001,-2.3183234],[115.99745810000002,-2.318291299999942],[115.99819610000009,-2.317256699999973],[116.0061270000001,-2.314678699999945],[116.01761650000003,-2.315849599999979],[116.02171710000005,-2.319224499999962],[116.03434220000008,-2.324911899999961],[116.08147950000011,-2.317039699999953],[116.14815780000004,-2.319511299999931],[116.151362,-2.311356],[116.15593300000012,-2.308308],[116.161139,-2.306529],[116.171554,-2.305716699999948],[116.180505,-2.307307699999967],[116.226646,-2.308784699999933],[116.235696,-2.316161699999952],[116.236233,-2.327163699999971],[116.254747,-2.334959699999956],[116.272932,-2.339293699999928],[116.3080920000001,-2.340669699999978],[116.33429,-2.345122699999934],[116.38093650000008,-2.356420199999945],[116.45450760000006,-2.370518799999957],[116.49283820000005,-2.380973499999925],[116.5396449000001,-2.400250799999981],[116.54102580000006,-2.401979199999971],[116.55053510000005,-2.401372499999979],[116.5589314,-2.405192799999952],[116.57617160000007,-2.336304],[116.57942730000002,-2.306937099999971],[116.5782488000001,-2.304604799999936],[116.58215790000008,-2.293408299999953],[116.588478,-2.265268399999968],[116.58974010000009,-2.240477399999975],[116.59233290000009,-2.233656399999973],[116.59388,-2.207813899999962],[116.59549350000009,-2.202952599999946],[116.59742460000007,-2.202694699999938],[116.59553770000002,-2.201582499999972],[116.59526240000002,-2.196696],[116.58637670000007,-2.1700445],[116.581944,-2.165170499999931],[116.57876740000006,-2.165434199999936],[116.58203150000008,-2.169792499999971],[116.58241090000001,-2.175216399999954],[116.575042,-2.1889929],[116.56775170000003,-2.198849699999926],[116.55822960000012,-2.204690399999947],[116.54642030000002,-2.209276699999975],[116.545425,-2.207162399999959],[116.515892,-2.221479899999963],[116.51002270000004,-2.225784],[116.50454470000011,-2.232435899999928],[116.49750150000011,-2.223436299999946],[116.53741280000008,-2.2007417],[116.54786490000004,-2.1897536],[116.55194990000007,-2.179803099999958],[116.55245330000002,-2.1739181],[116.5486505,-2.170228699999939],[116.54283160000011,-2.167336599999942],[116.53365940000003,-2.168858799999953],[116.52192630000002,-2.168035599999939],[116.51711260000002,-2.165378],[116.504936,-2.166699699999924],[116.48028490000002,-2.1839164],[116.44819940000002,-2.200350399999934],[116.43176540000002,-2.207002299999942],[116.409462,-2.212089],[116.41102720000004,-2.210523799999976],[116.406723,-2.2042633],[116.45093840000004,-2.190176899999926],[116.47480690000009,-2.177655799999968],[116.49476250000009,-2.164352],[116.52352260000009,-2.155883499999959],[116.5242376000001,-2.153845299999944],[116.51481010000009,-2.126735799999949],[116.51059390000012,-2.1179221],[116.50171650000004,-2.109289799999942],[116.49093390000007,-2.1192608],[116.479299,-2.122432],[116.47019990000001,-2.128028499999971],[116.467082,-2.128030299999978],[116.463343,-2.132529599999941],[116.44922930000007,-2.134011099999952],[116.43714620000003,-2.132576499999971],[116.4316179000001,-2.134745199999941],[116.41546530000005,-2.1292118],[116.41308990000005,-2.130447699999934],[116.39707770000007,-2.126702199999954],[116.38869540000007,-2.1285912],[116.39183170000001,-2.116235199999949],[116.3767150000001,-2.115738699999952],[116.369473,-2.118856],[116.36450560000003,-2.1083877],[116.37213610000003,-2.098622399999954],[116.39377510000008,-2.083204599999931],[116.41483470000003,-2.076606699999957],[116.42448550000006,-2.076716499999975],[116.44299620000004,-2.065926799999943],[116.45455670000001,-2.065449399999977],[116.45699820000004,-2.063938899999926],[116.45957510000005,-2.056549299999972],[116.46048210000004,-2.035801399999968],[116.4565004000001,-2.005497599999956],[116.45702630000005,-1.998986299999956],[116.45520510000006,-1.9941566],[116.45606280000004,-1.990398899999946],[116.45440310000004,-1.973212],[116.45476450000001,-1.959089699999936],[116.45851820000007,-1.938080699999944],[116.45718590000001,-1.919529599999976],[116.45068110000011,-1.895501399999944],[116.44254790000002,-1.874003099999925],[116.43631850000008,-1.867659499999945],[116.4243570000001,-1.867511599999943],[116.4208493000001,-1.864003],[116.42657910000003,-1.852200899999957],[116.435621,-1.839256599999942],[116.44704750000005,-1.8270477],[116.45081660000005,-1.819071699999938],[116.45385720000002,-1.801204299999938],[116.44968840000001,-1.770042899999964],[116.44755640000005,-1.7683106],[116.43516420000003,-1.7696812],[116.41730870000004,-1.768291599999941],[116.41240540000001,-1.766746499999954],[116.4033746,-1.770157099999949],[116.39421840000011,-1.769405199999937],[116.3801701000001,-1.763171],[116.373222,-1.762561799999958],[116.36926260000007,-1.767520599999955],[116.36857730000008,-1.777371599999981],[116.36468960000002,-1.780866299999957],[116.36270480000007,-1.781293],[116.35436720000007,-1.775648899999965],[116.34197490000008,-1.775563199999965],[116.33818680000002,-1.779589299999941],[116.31904140000006,-1.784552699999949],[116.31258150000008,-1.789859],[116.30738230000009,-1.7904301],[116.299887,-1.795450699999947],[116.28984570000011,-1.797509],[116.27979330000005,-1.804746499999965],[116.26369250000005,-1.810447299999964],[116.25313060000008,-1.806053799999972],[116.25000000000011,-1.789731699999948],[116.25384420000012,-1.778581],[116.25965010000004,-1.772489599999972],[116.26421870000001,-1.7616868],[116.27940210000008,-1.750269599999967],[116.278565,-1.749002599999926],[116.280374,-1.745879699999932],[116.2805188000001,-1.740326699999969],[116.27964050000003,-1.735563099999979],[116.2870431,-1.730794299999957],[116.29307250000011,-1.732113099999935],[116.2977826,-1.731025799999941],[116.30884590000005,-1.723968799999966],[116.31057170000008,-1.720438899999976],[116.31292040000005,-1.704235199999971],[116.31748360000006,-1.696072699999945],[116.32215530000008,-1.6969578],[116.322435,-1.699809499999958],[116.32420410000009,-1.701380299999926],[116.33597430000009,-1.699249299999963],[116.35458420000009,-1.691768199999956],[116.3774065,-1.686275199999955],[116.38851140000008,-1.681711699999937],[116.42871030000003,-1.657441499999948],[116.44561250000004,-1.649858499999937],[116.46334230000002,-1.645626599999957],[116.48201440000003,-1.645679499999972],[116.49217190000002,-1.642785799999956],[116.5014096000001,-1.638120099999981],[116.5025154000001,-1.635968799999944],[116.51010510000003,-1.634697199999948],[116.52014170000007,-1.630628399999978],[116.5345731000001,-1.621237699999938],[116.53541430000007,-1.619675799999925],[116.53438010000002,-1.616583899999966],[116.53739530000007,-1.612188699999933],[116.54375770000001,-1.611140599999942],[116.55173050000008,-1.605101599999955],[116.54432480000003,-1.595709699999929],[116.51954670000009,-1.590400099999954],[116.44521340000006,-1.565622399999938],[116.41689580000002,-1.553233399999954],[116.39919720000012,-1.549693699999978],[116.38680840000006,-1.544384199999968],[116.37972900000011,-1.526685799999939],[116.37441940000008,-1.501907799999969],[116.36380040000006,-1.470050599999979],[116.35605140000007,-1.416994699999975],[116.35495120000007,-1.390407599999946],[116.3461019,-1.369169499999941],[116.335483,-1.333772499999952],[116.33548280000002,-1.284217],[116.34433210000009,-1.245280399999956],[116.36026090000007,-1.218732699999975],[116.37795920000008,-1.199264299999925],[116.37618930000008,-1.174486499999944],[116.37087980000001,-1.144399199999953],[116.37618930000008,-1.132010299999934],[116.40450680000004,-1.105462599999953],[116.41689570000005,-1.091303799999935],[116.4275149,-1.071835599999929],[116.44344340000009,-1.059446599999944],[116.45406250000008,-1.043518],[116.45453820000012,-1.025008699999944],[116.44172830000002,-0.984536799999944],[116.44172830000002,-0.970188899999926],[116.4386065000001,-0.970833699999957],[116.43850610000004,-0.973967899999934],[116.40273710000008,-0.978033699999969],[116.37618940000004,-0.985113099999978],[116.36116780000009,-0.993201799999952],[116.3537037000001,-1.000665799999979],[116.33570450000002,-1.033142599999962],[116.32413880000001,-1.042882199999951],[116.31204960000002,-1.0483773],[116.292663,-1.048011499999973],[116.27353830000004,-1.045287799999926],[116.26449040000011,-1.046055],[116.25509950000003,-1.051141799999925],[116.23460180000006,-1.093073699999934],[116.2191223000001,-1.117851499999972],[116.18150630000002,-1.117851499999972],[116.16557770000009,-1.126700699999958],[116.15318900000011,-1.137319799999943],[116.13903,-1.153248399999939],[116.12133170000004,-1.155018299999938],[116.1089429000001,-1.140859499999976],[116.1089429000001,-1.117851499999972],[116.09655390000012,-1.087764199999924],[116.09377790000008,-1.085781299999951],[116.0780423000001,-1.098096199999929],[116.066695,-1.109834799999931],[116.05182610000008,-1.114138899999944],[116.0351965000001,-1.109443499999941],[116.02541430000008,-1.109443499999941],[116.0230666000001,-1.111791199999971],[116.00506740000003,-1.110617299999944],[115.9925462000001,-1.107095699999945],[115.97806860000003,-1.09927],[115.96241720000012,-1.0973136],[115.94754830000011,-1.101226499999939],[115.9283752,-1.113356299999964],[115.91311510000003,-1.1149215],[115.89902870000003,-1.113356299999964],[115.8822034000001,-1.107095699999945],[115.86342170000012,-1.102400299999942],[115.84737890000008,-1.090270399999952],[115.8390624000001,-1.095394],[115.82930720000002,-1.096613399999967],[115.81337850000011,-1.105462599999953],[115.8031535,-1.116289299999949],[115.803186,-1.118338799999947],[115.8066612,-1.1229137],[115.81452920000004,-1.127065499999958],[115.8171675000001,-1.130666899999937],[115.8207374000001,-1.1312895],[115.82866150000007,-1.142143],[115.83418570000003,-1.144147099999941],[115.8429708000001,-1.151164499999936],[115.84696090000011,-1.1572597],[115.84722040000008,-1.160814099999925],[115.845664,-1.164667299999962],[115.84120840000003,-1.169072799999981],[115.81861010000011,-1.182001599999978],[115.79667570000004,-1.1998053],[115.78364470000008,-1.213049],[115.77160550000008,-1.229041799999948],[115.76507470000001,-1.2487057],[115.76147010000011,-1.266072399999928],[115.75523280000004,-1.27992],[115.754262,-1.291978],[115.75568580000004,-1.293668499999967],[115.75758270000006,-1.307446199999958],[115.75398990000008,-1.315042299999959],[115.74782690000006,-1.324658599999964],[115.74481490000005,-1.332881899999961],[115.74507840000001,-1.353543799999954],[115.7415952,-1.364035699999931],[115.7345428000001,-1.369326099999967],[115.72351830000002,-1.372857299999964],[115.71748920000005,-1.397811799999943],[115.70919930000002,-1.410885099999973],[115.70656610000003,-1.413247],[115.69904550000001,-1.414944499999933],[115.69735230000003,-1.417117799999971],[115.69725530000005,-1.422506299999952],[115.693305,-1.427041799999927],[115.69205810000005,-1.4330449],[115.68877950000001,-1.435084699999948],[115.68691840000008,-1.4382807],[115.68771650000008,-1.445029199999965],[115.68135790000008,-1.450124],[115.67866880000008,-1.454250499999944],[115.67883330000006,-1.456305599999951],[115.66854780000006,-1.456843599999956],[115.66290950000007,-1.461615],[115.65521390000004,-1.461673699999949],[115.65252360000011,-1.463146299999948],[115.6490176000001,-1.4611182],[115.63839650000011,-1.463002099999926],[115.62796590000005,-1.467833299999938],[115.62788390000003,-1.472275899999943],[115.625619,-1.472919399999967],[115.62322820000009,-1.477247699999964],[115.62111230000005,-1.477482699999939],[115.61857320000001,-1.491628799999944],[115.62002570000004,-1.496372799999961],[115.61688,-1.499962],[115.61817630000007,-1.501230199999952],[115.62174140000002,-1.500445599999978],[115.62749020000001,-1.503334499999937],[115.62713190000011,-1.505088899999976],[115.62056450000011,-1.510846199999946],[115.6206456000001,-1.514563599999974],[115.62291160000007,-1.516229199999941],[115.62335790000009,-1.513082],[115.62792170000012,-1.513012499999945],[115.63002110000002,-1.5100291],[115.63096590000009,-1.512173299999972],[115.633078,-1.512545499999931],[115.634464,-1.5106741],[115.654981,-1.512493099999972],[115.64099970000007,-1.519196799999975],[115.63613960000009,-1.527176499999939],[115.63141930000006,-1.530270199999961],[115.63127970000005,-1.534743299999946],[115.63285010000004,-1.538460399999963],[115.6343544,-1.538667799999928],[115.63648340000009,-1.545801899999958],[115.6455079000001,-1.552074],[115.645711,-1.559175799999934],[115.642802,-1.564186899999925],[115.63888480000003,-1.5670672],[115.63722760000007,-1.571285],[115.63020240000003,-1.575426199999924],[115.63124770000002,-1.578935799999954],[115.63700820000008,-1.581471099999931],[115.64016460000005,-1.585893599999963],[115.64018290000001,-1.5913958],[115.63801720000004,-1.5933816],[115.63666310000008,-1.597705599999927],[115.6366097,-1.603949099999966],[115.64079010000012,-1.60661],[115.63944360000005,-1.609284199999934],[115.64521280000008,-1.613442099999929],[115.65400040000009,-1.613347799999929],[115.651774,-1.616020099999957],[115.65138320000005,-1.621909599999981],[115.65469610000002,-1.626126],[115.65863850000005,-1.628113],[115.66544850000002,-1.628120599999932],[115.66847630000007,-1.6293937],[115.669099,-1.6311349],[115.66841550000004,-1.634885199999928],[115.67087570000001,-1.641802499999926],[115.66962630000012,-1.647859099999948],[115.673954,-1.660794799999962],[115.67265530000009,-1.663435199999981],[115.67456330000005,-1.666898299999957],[115.6722635000001,-1.670960299999933],[115.67200580000008,-1.675316299999963],[115.67030540000007,-1.675645599999939],[115.66748880000011,-1.679644199999927],[115.66782030000002,-1.685667],[115.66622570000004,-1.688953099999935],[115.6671907000001,-1.701936599999954],[115.6652074000001,-1.709792299999947],[115.6671133000001,-1.708482899999979],[115.669921,-1.710041499999932],[115.6708847000001,-1.709089699999936],[115.67452530000003,-1.710029599999928],[115.67652590000012,-1.708426799999927],[115.67934,-1.710215399999925],[115.6812566000001,-1.715177499999925],[115.68748820000008,-1.717376],[115.68605730000002,-1.721695499999953],[115.69756310000002,-1.726199699999938],[115.70046020000007,-1.726584899999978],[115.70331570000008,-1.725039799999934],[115.70476750000012,-1.727533],[115.70800770000005,-1.727480299999968],[115.70788550000009,-1.733158299999957],[115.70526840000002,-1.737415],[115.70286050000004,-1.7387237],[115.70181720000005,-1.74251],[115.69788070000004,-1.743843699999957],[115.69629970000005,-1.746148499999947],[115.69699420000006,-1.747257199999979],[115.68997280000008,-1.752513699999952],[115.68734930000005,-1.757840299999941],[115.6870755000001,-1.7674602],[115.68972830000007,-1.771371399999964],[115.69008610000003,-1.779047899999966],[115.6855144000001,-1.786042099999975],[115.68083630000001,-1.789157],[115.68099570000004,-1.794691799999953],[115.68647650000003,-1.802796799999953],[115.68864730000007,-1.800386099999969],[115.691405,-1.801862299999925],[115.69574000000011,-1.799400499999933],[115.70013760000006,-1.792911799999956],[115.70811830000002,-1.788208199999929],[115.71077480000008,-1.7920631],[115.71555970000009,-1.794314099999951],[115.72151150000002,-1.801061199999936],[115.72576630000003,-1.800957199999971],[115.7267217000001,-1.803633599999955],[115.72735120000004,-1.816156699999965],[115.721707,-1.825678299999936],[115.72117270000001,-1.829102899999953],[115.7237735000001,-1.836543399999925],[115.730149,-1.8459666],[115.72903080000003,-1.848764299999971],[115.72578290000001,-1.850870099999952],[115.725533,-1.853118699999925],[115.7279248000001,-1.8580041],[115.73268590000009,-1.8602516],[115.7293687,-1.862505699999929],[115.73053740000012,-1.869852299999934],[115.72620440000003,-1.875796199999968],[115.72964680000007,-1.881358],[115.72508520000008,-1.890501699999959],[115.72522820000006,-1.901835799999958],[115.72101960000009,-1.907968199999971],[115.71910060000005,-1.914367899999945],[115.72395230000006,-1.922264599999949],[115.72752220000007,-1.924567299999978],[115.72323620000009,-1.924564099999941],[115.71866290000003,-1.926716799999951],[115.71565570000007,-1.936058099999968],[115.7113667000001,-1.939935899999966],[115.71236460000011,-1.9428116],[115.7062161,-1.949706699999979],[115.70634990000008,-1.961494],[115.69619620000003,-1.974423199999933],[115.6973365,-1.977874],[115.70376610000005,-1.977304099999969],[115.71062180000001,-1.979896899999972],[115.71347450000007,-1.986080199999947],[115.71232930000008,-1.988954199999966],[115.71332690000008,-1.992117399999927],[115.71730220000006,-1.990040799999974],[115.7214441000001,-1.990307],[115.7277,-1.988864599999943],[115.72651690000009,-1.983906199999979],[115.72919360000003,-1.97917],[115.7311671000001,-1.9827547],[115.74760640000011,-1.995118099999956],[115.74796490000006,-2.000607599999967],[115.7440117000001,-2.008181799999932],[115.7275869,-2.020734299999958],[115.7247106000001,-2.026200899999935],[115.72478709800009,-2.028255599999966],[115.72811420000005,-2.029582399999924],[115.73358120000012,-2.040710199999978],[115.74098920000006,-2.036409099999958],[115.74532520000002,-2.039026199999967],[115.74865920000002,-2.045849199999964],[115.7536718,-2.050468099999932],[115.76128590000008,-2.0494575],[115.77309620000005,-2.051753199999951],[115.77667440000005,-2.050854099999981],[115.78273210000009,-2.044704799999977],[115.782936,-2.041868199999954],[115.7897944,-2.042566199999953],[115.79751570000008,-2.041036399999939],[115.80376970000009,-2.037827099999959],[115.8076913000001,-2.041064899999981],[115.80738640000004,-2.044035599999972],[115.81239950000008,-2.046303499999965],[115.82156570000006,-2.054590599999926],[115.82636460000003,-2.056360799999936],[115.83197980000011,-2.055202599999973],[115.83519180000008,-2.056292399999961],[115.83659560000001,-2.059188],[115.83035470000004,-2.085086199999978],[115.8260289000001,-2.088859899999932],[115.812151,-2.093849299999931],[115.81009870000003,-2.0973187],[115.81070910000005,-2.128254699999957],[115.80790910000007,-2.152096099999937],[115.8087101000001,-2.168563899999924],[115.80584920000001,-2.175577],[115.80058480000002,-2.181998799999974],[115.79935650000004,-2.187621399999955],[115.80024490000005,-2.191686699999934],[115.80712260000007,-2.1976754],[115.80110820000004,-2.210670099999959],[115.80505220000009,-2.211108099999933],[115.81047170000011,-2.216260299999931],[115.81689510000001,-2.218048],[115.81636930000002,-2.220639799999958],[115.81851490000008,-2.222843799999964],[115.81462190000002,-2.223789199999942],[115.81630590000009,-2.230867499999931],[115.8146329000001,-2.2341891],[115.81509580000011,-2.239324799999963],[115.8193367,-2.243444599999975],[115.822458,-2.243428],[115.82224530000008,-2.247620799999936],[115.82404640000004,-2.252429399999926],[115.82202350000011,-2.257798199999968],[115.82274820000009,-2.260828499999946],[115.82873730000006,-2.269445899999937],[115.83608440000012,-2.286619499999972],[115.84162340000012,-2.291637199999968],[115.85284290000004,-2.291888599999936],[115.85458240000003,-2.294206],[115.85385760000008,-2.298907199999974],[115.85132470000008,-2.301290899999969],[115.84186420000003,-2.3043336],[115.83879120000006,-2.308276899999953],[115.83555390000004,-2.308845099999928],[115.83487860000002,-2.312100499999929],[115.83264930000007,-2.312978],[115.83116280000002,-2.325315299999943],[115.83437920000006,-2.330831699999976],[115.83449540000004,-2.333709799999951],[115.8390773000001,-2.337520199999972],[115.838837,-2.3410292],[115.84488370000008,-2.353053299999942],[115.85748440000009,-2.356983699999944],[115.85112550000008,-2.368748699999969],[115.85246380000001,-2.3700357],[115.85150440000007,-2.373298],[115.85334360000002,-2.378942099999961],[115.84991680000007,-2.388621399999977]]]]},"properties":{"shapeName":"Paser","shapeISO":"","shapeID":"22746128B58129300236906","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[112.58819590000007,-7.76669],[112.5882941000001,-7.765459299999975],[112.59145610000007,-7.765918399999975],[112.60234560000004,-7.769240499999967],[112.61647140000002,-7.787788499999976],[112.620805,-7.787306199999932],[112.62343380000004,-7.789795199999958],[112.6305685000001,-7.791717099999971],[112.6381636000001,-7.790699199999949],[112.64161150000007,-7.7951781],[112.65644240000006,-7.797453099999927],[112.6546231000001,-7.801696599999957],[112.65651060000005,-7.805638399999964],[112.6606614000001,-7.804633299999978],[112.6614303,-7.80593],[112.669464,-7.806842599999925],[112.68890470000008,-7.813907299999926],[112.69960780000008,-7.81401],[112.70110920000002,-7.817117899999971],[112.70553270000005,-7.818275699999958],[112.70551990000001,-7.822778399999947],[112.70701290000011,-7.822146399999951],[112.7069854,-7.823417699999936],[112.71033580000005,-7.824957099999949],[112.71235760000002,-7.821164499999952],[112.71496780000007,-7.822072799999944],[112.7194062000001,-7.819403],[112.7285442000001,-7.819995799999958],[112.73347850000005,-7.818363899999952],[112.73356790000003,-7.824210099999959],[112.736777,-7.827643499999965],[112.73519370000008,-7.8329804],[112.73658990000001,-7.835208799999975],[112.73430560000008,-7.834920299999965],[112.73965910000004,-7.844685899999945],[112.74357770000006,-7.848031499999934],[112.75825880000002,-7.853454599999964],[112.76061240000001,-7.8583601],[112.75863640000011,-7.864786399999957],[112.7633743,-7.8640507],[112.76707450000004,-7.868119499999978],[112.77664940000011,-7.867966899999942],[112.78073110000003,-7.874063799999931],[112.77725210000006,-7.879388199999937],[112.78005970000004,-7.887513899999931],[112.77990710000006,-7.891516],[112.78509510000004,-7.8970931],[112.784378,-7.9007104],[112.79480740000008,-7.915833799999973],[112.80121610000003,-7.919247],[112.80541220000009,-7.925457799999947],[112.81339260000004,-7.927922],[112.8216476,-7.928097499999978],[112.82337180000002,-7.932934099999954],[112.833023,-7.938101599999925],[112.83583830000009,-7.941030299999966],[112.84649650000006,-7.942309699999953],[112.85620870000002,-7.939671299999929],[112.87002560000008,-7.946991199999957],[112.87389370000005,-7.945416699999953],[112.88066090000007,-7.948295399999949],[112.8850936,-7.9525025],[112.88980090000007,-7.949819799999943],[112.89326470000003,-7.950186],[112.89854420000006,-7.946816299999966],[112.90252680000003,-7.9475749],[112.90898890000005,-7.953608299999928],[112.91179650000004,-7.954194299999926],[112.91526790000012,-7.951325699999927],[112.92011250000007,-7.954252499999939],[112.93531790000009,-7.956195599999944],[112.937622,-7.950390099999936],[112.94494620000012,-7.949512699999957],[112.95306390000007,-7.942808899999932],[112.950386,-7.922916199999975],[112.95290360000001,-7.915053099999966],[112.95175930000005,-7.910883199999944],[112.94852440000011,-7.9090993],[112.948799,-7.906308899999942],[112.95322410000006,-7.903867499999933],[112.95586390000005,-7.898335199999963],[112.96316520000005,-7.8979457],[112.96600330000001,-7.895952499999964],[112.978279,-7.882380699999942],[112.98603050000008,-7.877747799999952],[112.99000540000009,-7.869598199999928],[112.99668870000005,-7.866228299999932],[112.99783320000006,-7.863864199999966],[113.00621790000002,-7.857625299999938],[113.00925440000003,-7.852701],[113.013893,-7.850254799999959],[113.01390070000002,-7.848296399999981],[113.01552570000001,-7.848287299999981],[113.0179442000001,-7.843927199999939],[113.02256000000011,-7.841138099999966],[113.02253710000002,-7.839468699999941],[113.0251922000001,-7.838261799999941],[113.02462,-7.837228],[113.02663410000002,-7.836486599999944],[113.02736650000008,-7.833875399999954],[113.03086840000003,-7.8335488],[113.03340140000012,-7.831390599999963],[113.03308860000004,-7.8299358],[113.03864280000005,-7.8281185],[113.04105370000002,-7.824552299999937],[113.04525750000005,-7.822281099999941],[113.04524980000008,-7.820260299999973],[113.04723350000006,-7.819969399999934],[113.04840840000008,-7.816851399999962],[113.04750050000007,-7.811697699999968],[113.04922480000005,-7.810783099999981],[113.05123890000004,-7.806074899999942],[113.04895010000007,-7.804077899999982],[113.05283350000002,-7.796074099999942],[113.05176530000006,-7.790629099999933],[113.05370320000009,-7.785280899999975],[113.05282580000005,-7.779507399999943],[113.05017080000005,-7.775898699999971],[113.0531691000001,-7.767047599999955],[113.05633540000008,-7.764923299999964],[113.05694570000003,-7.762061399999936],[113.05471030000001,-7.748152],[113.06011950000004,-7.741811],[113.06449880000002,-7.739582299999938],[113.06483450000007,-7.7374747],[113.06628410000008,-7.73791],[113.07006830000012,-7.732784],[113.07102960000009,-7.7331841],[113.07306660000006,-7.724959599999977],[113.07614130000002,-7.723342599999967],[113.07678210000006,-7.721345699999972],[113.0784301000001,-7.7213724],[113.08127590000004,-7.716461899999956],[113.08094010000002,-7.714656599999955],[113.08258050000006,-7.714527399999952],[113.08502190000002,-7.709761799999967],[113.08641810000006,-7.709985],[113.0881194000001,-7.707421099999976],[113.0923537000001,-7.707796299999927],[113.09248290000005,-7.705959299999961],[113.09618320000004,-7.706229299999961],[113.10051140000007,-7.701936299999943],[113.09562380000011,-7.7038749],[113.08559,-7.70134],[113.0841263000001,-7.69647],[113.08030960000008,-7.695375499999955],[113.06687980000004,-7.673192599999936],[113.05753,-7.66284],[113.04207,-7.65328],[113.02853020000009,-7.648478699999941],[113.0287158000001,-7.6446525],[113.02199140000005,-7.6442242],[113.02293370000007,-7.649021199999936],[113.020992,-7.64865],[113.01424,-7.65245],[112.99248000000011,-7.65754],[112.990197,-7.655502799999965],[112.98828150000008,-7.657142799999974],[112.98430080000003,-7.656263799999977],[112.97673410000004,-7.653347],[112.97466,-7.65018],[112.97253,-7.65011],[112.97276000000011,-7.64901],[112.96913,-7.64685],[112.96944,-7.64555],[112.96152930000005,-7.635658099999944],[112.958223,-7.622714199999962],[112.9545587,-7.621143699999948],[112.952441,-7.622285899999952],[112.952255,-7.633042099999955],[112.946701,-7.638933899999927],[112.946411,-7.643983099999957],[112.94389330000001,-7.648474499999963],[112.94551500000011,-7.651418399999955],[112.93922,-7.654531499999962],[112.93699640000011,-7.6543067],[112.93797290000009,-7.660438799999952],[112.9319686,-7.668725799999947],[112.928604,-7.667230399999937],[112.92273770000008,-7.676017699999932],[112.91852310000002,-7.673972599999956],[112.9170643000001,-7.678738599999974],[112.91519770000002,-7.677850199999966],[112.91410140000005,-7.679504099999974],[112.90798660000007,-7.679231],[112.9012196000001,-7.686400499999934],[112.89522540000007,-7.685472799999957],[112.89638510000009,-7.682747199999937],[112.89479140000003,-7.676908799999978],[112.89069360000008,-7.675494499999957],[112.89069070000005,-7.673047899999972],[112.88647660000004,-7.672435],[112.88462060000006,-7.673578099999929],[112.88126090000003,-7.671903399999962],[112.88399570000001,-7.671052799999927],[112.88606140000002,-7.667048799999975],[112.88151510000012,-7.664519299999938],[112.882553,-7.661311399999931],[112.88694070000008,-7.662420599999962],[112.88700740000002,-7.660012299999948],[112.87849470000003,-7.655106399999966],[112.87293270000009,-7.660940699999969],[112.8721475000001,-7.657107099999962],[112.8738148000001,-7.652397299999961],[112.87153930000011,-7.651207],[112.87601460000008,-7.6395967],[112.87539660000004,-7.636422899999957],[112.872367,-7.634175599999935],[112.87493130000007,-7.626305399999978],[112.8778228000001,-7.627007299999946],[112.87888910000004,-7.630344],[112.88433240000006,-7.631822199999931],[112.88539590000005,-7.629169299999944],[112.88408220000008,-7.628619499999957],[112.88634160000004,-7.623549499999967],[112.8919227,-7.626917299999945],[112.89422880000006,-7.625187],[112.90088710000009,-7.628906799999982],[112.90277320000007,-7.625819699999965],[112.88774490000003,-7.615654],[112.88860360000001,-7.614771499999961],[112.87833620000004,-7.594950599999947],[112.87423160000003,-7.582779699999946],[112.87134060000005,-7.581566099999975],[112.8627715,-7.584859299999948],[112.85636370000009,-7.580222],[112.84756,-7.5795],[112.8448,-7.57786],[112.83750140000006,-7.568353899999977],[112.83422110000004,-7.553862299999935],[112.83203120000007,-7.552370399999973],[112.82708730000002,-7.553461299999981],[112.8165206000001,-7.558917799999961],[112.81289670000001,-7.558673699999929],[112.81092830000011,-7.556824499999948],[112.81163780000009,-7.554587199999958],[112.80651080000007,-7.555036799999925],[112.805046,-7.556312899999966],[112.8049926000001,-7.559256399999981],[112.80213160000005,-7.559101399999975],[112.80144490000009,-7.5620459],[112.7995218000001,-7.560545899999966],[112.79592720000005,-7.561151699999925],[112.79019160000007,-7.564448199999958],[112.784706,-7.562778299999934],[112.77799980000009,-7.568349699999942],[112.77694880000001,-7.5725495],[112.77162870000006,-7.570484399999941],[112.76972650000005,-7.571892],[112.76987560000009,-7.574006399999973],[112.76243580000005,-7.574870899999951],[112.75643150000008,-7.573209099999929],[112.75291430000004,-7.575239],[112.74691770000004,-7.571750899999927],[112.7397155000001,-7.573274],[112.73298590000002,-7.571008499999948],[112.72618680000005,-7.571176099999946],[112.72283030000006,-7.568798799999968],[112.72158040000011,-7.563732399999935],[112.719223,-7.561007299999972],[112.71188350000011,-7.557371],[112.71001430000001,-7.548610499999938],[112.70618430000002,-7.544932699999947],[112.69470210000009,-7.545925899999929],[112.689192,-7.549577899999974],[112.68894150000006,-7.551046699999972],[112.68256550000001,-7.548573899999951],[112.6775368000001,-7.552546499999949],[112.67335380000009,-7.558817799999929],[112.67383510000002,-7.559998099999973],[112.670564,-7.560774699999968],[112.66401250000001,-7.560444],[112.65428710000003,-7.580191699999943],[112.65370030000008,-7.582758799999965],[112.6608771000001,-7.583895],[112.66180860000009,-7.586368399999969],[112.66071000000011,-7.586734499999977],[112.66236250000009,-7.587727],[112.66166420000002,-7.588975],[112.66052320000006,-7.587997499999972],[112.6605489000001,-7.592167],[112.65491570000006,-7.5939993],[112.65540710000005,-7.5955587],[112.65102380000008,-7.597758099999965],[112.63836660000004,-7.609410599999933],[112.630371,-7.614770299999975],[112.62110130000008,-7.615608099999974],[112.619476,-7.623177],[112.62016290000008,-7.628381599999955],[112.6275634000001,-7.639051299999949],[112.62917320000008,-7.650264599999957],[112.624489,-7.659332],[112.6223983000001,-7.660550399999977],[112.62363430000005,-7.666642499999966],[112.61437980000005,-7.681702899999948],[112.60883300000012,-7.687208],[112.60204310000006,-7.689976099999967],[112.598,-7.694671],[112.59759510000004,-7.697802399999944],[112.59545130000004,-7.700939],[112.593384,-7.701399],[112.589218,-7.709964],[112.58927150000011,-7.714127899999937],[112.585846,-7.720607],[112.57454130000008,-7.733932099999947],[112.57550980000008,-7.737122399999976],[112.57754680000005,-7.738593],[112.58117080000011,-7.750386599999956],[112.58152170000005,-7.759131299999979],[112.58453540000005,-7.763921599999946],[112.58819590000007,-7.76669]]]},"properties":{"shapeName":"Pasuruan","shapeISO":"","shapeID":"22746128B19010366752815","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[111.26345540000005,-6.855369199999927],[111.26285550000006,-6.853981499999975],[111.26430510000006,-6.853993899999978],[111.26223070000009,-6.85113],[111.26383110000006,-6.846505],[111.26183870000006,-6.8429068],[111.26009780000004,-6.843588299999965],[111.25974140000005,-6.839282399999945],[111.25773740000005,-6.838314899999943],[111.25717480000009,-6.839349199999958],[111.25583650000004,-6.836631199999943],[111.25898740000008,-6.834471699999938],[111.26195530000007,-6.835228899999947],[111.26342770000008,-6.832610099999954],[111.26508330000007,-6.834106399999939],[111.26605220000005,-6.832820899999945],[111.26707460000006,-6.833466],[111.270462,-6.831304],[111.270874,-6.828703399999938],[111.26883950000007,-6.828647399999966],[111.26852230000009,-6.824313299999972],[111.26537320000006,-6.824687399999959],[111.26432580000005,-6.820235199999956],[111.26100340000005,-6.817222299999969],[111.261327,-6.814583],[111.25901020000003,-6.811965499999928],[111.25686740000003,-6.811783899999966],[111.25471240000007,-6.807877099999928],[111.252956,-6.808608899999967],[111.25201070000008,-6.806965],[111.25054890000007,-6.807940199999962],[111.25101890000008,-6.801881899999955],[111.246643,-6.799726899999939],[111.24671170000005,-6.797833399999945],[111.24459070000006,-6.796199299999955],[111.245163,-6.792498599999931],[111.24713140000006,-6.792032199999937],[111.2472,-6.789085399999976],[111.24926760000005,-6.788479799999948],[111.24671380000007,-6.7864611],[111.248131,-6.786148399999945],[111.24896,-6.783445799999981],[111.24712580000005,-6.781549499999926],[111.24842070000005,-6.7802624],[111.24707790000008,-6.778751799999952],[111.24543760000006,-6.779450899999972],[111.24539950000008,-6.777677],[111.24494170000008,-6.778524799999957],[111.24332480000004,-6.7770105],[111.243923,-6.775279399999931],[111.24658890000006,-6.774462],[111.24533650000006,-6.771455099999969],[111.24742380000004,-6.766828299999929],[111.24578860000008,-6.765266399999973],[111.24693960000008,-6.764088],[111.243782,-6.761598599999957],[111.24410250000005,-6.760278199999959],[111.24198910000007,-6.760598099999982],[111.23963930000008,-6.7577519],[111.23761750000006,-6.757959799999981],[111.23691560000009,-6.759627799999976],[111.23654170000009,-6.756446799999935],[111.23766330000007,-6.755899399999976],[111.23376460000009,-6.752503],[111.23872370000004,-6.749662399999977],[111.237773,-6.748516],[111.23861480000005,-6.746846499999947],[111.237005,-6.746599],[111.23848510000005,-6.745457],[111.23705080000008,-6.743611199999975],[111.23583770000005,-6.745431799999949],[111.23406010000008,-6.745107499999961],[111.23480780000006,-6.743390899999952],[111.23329710000007,-6.7412532],[111.23714160000009,-6.740171199999963],[111.23635650000006,-6.736642699999948],[111.23853980000007,-6.732412299999964],[111.23580810000004,-6.726374799999974],[111.23766150000006,-6.722293099999945],[111.23936460000004,-6.722412099999929],[111.23788790000009,-6.720127],[111.24043820000009,-6.718146399999966],[111.240365,-6.714629899999977],[111.242436,-6.715268599999945],[111.23906030000006,-6.713332899999955],[111.23995540000004,-6.712498699999969],[111.23891770000006,-6.709395399999948],[111.24032910000005,-6.710315899999955],[111.24199270000008,-6.7091571],[111.238794,-6.708612099999925],[111.23989020000005,-6.705420599999968],[111.23796140000007,-6.703878799999927],[111.23959490000004,-6.703210099999978],[111.23649850000004,-6.702564099999961],[111.23848350000009,-6.70023],[111.23677210000005,-6.698117899999943],[111.23601340000005,-6.699512599999935],[111.23456770000007,-6.698217899999975],[111.23422360000006,-6.687323299999946],[111.23408210000008,-6.686335499999927],[111.22797880000007,-6.686142799999971],[111.21466570000007,-6.681386299999929],[111.20585690000007,-6.6734793],[111.191592,-6.665805599999942],[111.18493270000005,-6.668128699999954],[111.18630010000004,-6.664680099999941],[111.18293850000003,-6.6628277],[111.15646170000008,-6.657827199999929],[111.14385290000007,-6.653303899999969],[111.12861320000007,-6.640041199999928],[111.09860170000007,-6.594093],[111.08236070000004,-6.559809599999937],[111.07866060000003,-6.547822],[111.06352850000007,-6.519521499999939],[111.05412,-6.49189],[111.0491,-6.46756],[111.04794,-6.45436],[111.04498870000003,-6.4455393],[111.04389410000005,-6.431548099999929],[111.04739190000004,-6.428906899999959],[111.04679710000005,-6.426765399999965],[111.03806450000008,-6.423695899999927],[110.97952970000006,-6.410608799999977],[110.97776890000006,-6.409086],[110.97505630000006,-6.410037799999941],[110.976181,-6.423473299999955],[110.97390750000005,-6.428074799999933],[110.97215270000004,-6.428363299999944],[110.97182460000005,-6.430307899999946],[110.97412110000005,-6.430981599999939],[110.97174830000006,-6.432964799999979],[110.97394560000004,-6.4333114],[110.97369380000004,-6.4352369],[110.97664640000005,-6.4352369],[110.97701260000008,-6.437239099999942],[110.97291560000008,-6.440076799999929],[110.97389980000008,-6.4414048],[110.97195430000005,-6.444927699999937],[110.97389980000008,-6.4459724],[110.97238160000006,-6.446820199999934],[110.97122950000005,-6.453192199999933],[110.97386930000005,-6.455650799999944],[110.96978760000007,-6.457963899999925],[110.97074130000004,-6.4599705],[110.968811,-6.460783499999934],[110.96875,-6.464018799999963],[110.96553040000003,-6.462265499999944],[110.96526990000007,-6.464662899999951],[110.96203610000003,-6.467013799999961],[110.95711520000009,-6.467143499999963],[110.95616150000006,-6.4697728],[110.958107,-6.470419799999945],[110.95369720000008,-6.473386299999959],[110.95488740000008,-6.475291699999957],[110.95001220000006,-6.479700099999945],[110.94993590000007,-6.482008399999927],[110.94641870000004,-6.482704599999977],[110.94299210000008,-6.486791899999957],[110.94280790000005,-6.485017099999936],[110.94129910000004,-6.485555499999975],[110.93714930000004,-6.483543],[110.93453230000006,-6.4910724],[110.92942050000005,-6.4958339],[110.91963670000007,-6.496936199999936],[110.91474390000008,-6.495863199999974],[110.91255950000004,-6.499658599999975],[110.91331910000008,-6.5058706],[110.91147,-6.51298],[110.90988970000006,-6.512139799999943],[110.91100310000007,-6.518267599999945],[110.90860750000007,-6.520859199999961],[110.91025540000004,-6.522472799999946],[110.90832520000004,-6.524968099999967],[110.91416170000008,-6.528802799999937],[110.91457370000006,-6.532260399999927],[110.91734310000004,-6.535690799999941],[110.91780850000004,-6.540288399999952],[110.91336820000004,-6.542091299999981],[110.91067480000004,-6.548348899999951],[110.91086150000007,-6.551240399999926],[110.909218,-6.552758599999947],[110.90828050000005,-6.5607672],[110.91070560000009,-6.568239199999937],[110.90950770000006,-6.571845499999938],[110.91222380000005,-6.577853199999936],[110.90977480000004,-6.591133099999979],[110.91200260000005,-6.600664599999959],[110.90801240000008,-6.606406199999981],[110.90769190000009,-6.614595399999928],[110.90328980000004,-6.619113399999947],[110.90219540000004,-6.623776899999939],[110.90281310000006,-6.627755499999978],[110.89753560000008,-6.630211699999961],[110.89615310000005,-6.632254299999943],[110.90029930000009,-6.632795899999962],[110.89357820000004,-6.640011699999945],[110.8957,-6.64023],[110.89782680000008,-6.638434099999927],[110.89879610000008,-6.640356],[110.90498350000007,-6.643705299999965],[110.908226,-6.657866],[110.91457370000006,-6.668984899999941],[110.92176050000006,-6.674083199999927],[110.92400360000005,-6.678272199999981],[110.92385860000007,-6.682704399999977],[110.92602540000007,-6.684937899999966],[110.92514040000009,-6.687626299999977],[110.927391,-6.689477899999929],[110.92781830000007,-6.693709399999932],[110.92898690000004,-6.696037],[110.93051150000008,-6.694186699999932],[110.93281270000006,-6.69772],[110.93473140000009,-6.697653899999978],[110.93362790000003,-6.706309699999963],[110.93450740000009,-6.708244899999954],[110.93800850000008,-6.709789099999966],[110.93415090000008,-6.7176092],[110.93515210000004,-6.721373899999946],[110.93203730000005,-6.723477799999955],[110.93202320000006,-6.720961199999977],[110.93000280000007,-6.719594899999947],[110.92871410000004,-6.715304499999945],[110.92596590000005,-6.716491499999961],[110.92450370000006,-6.732324799999958],[110.92855990000004,-6.73603],[110.92579,-6.738681299999939],[110.93191430000007,-6.737980299999947],[110.93441060000004,-6.739735399999972],[110.93865420000009,-6.740070899999978],[110.94078060000004,-6.749555599999951],[110.944664,-6.752148099999943],[110.94530490000005,-6.756],[110.96058650000003,-6.754978599999959],[110.96547320000008,-6.756856299999981],[110.96289830000006,-6.762856499999941],[110.96545410000004,-6.772840899999949],[110.96422910000007,-6.776656599999967],[110.96493470000007,-6.779352],[110.96785730000005,-6.782113599999946],[110.97119140000007,-6.792665899999974],[110.97054290000005,-6.802734799999939],[110.97427370000008,-6.8040585],[110.97415160000008,-6.822800599999937],[110.97680520000006,-6.8336348],[110.96215850000004,-6.844269899999972],[110.937398,-6.855223199999955],[110.92113760000007,-6.866838499999972],[110.92053840000005,-6.865269499999954],[110.92058560000004,-6.8670358],[110.893198,-6.867544799999962],[110.88074750000004,-6.866297],[110.87810670000005,-6.867396],[110.88274050000007,-6.892922799999951],[110.87377340000006,-6.894374899999946],[110.86471330000006,-6.892120399999953],[110.86160120000005,-6.897843199999954],[110.85285070000003,-6.8977311],[110.85279380000009,-6.900198599999953],[110.85555870000007,-6.903247299999975],[110.85127170000004,-6.908365299999957],[110.84510190000009,-6.920349499999929],[110.84812930000004,-6.931572399999936],[110.84412380000003,-6.935930699999972],[110.83745780000004,-6.937195],[110.83964380000003,-6.942920699999945],[110.83260540000003,-6.9426436],[110.83121110000008,-6.945456399999955],[110.82592390000008,-6.945894799999962],[110.82292380000007,-6.944289699999956],[110.82345840000005,-6.940529099999935],[110.81676570000008,-6.938258],[110.81465140000006,-6.940419099999929],[110.81143490000005,-6.939958599999954],[110.81157060000004,-6.945019199999933],[110.80934370000006,-6.945947199999978],[110.81013320000005,-6.952149899999938],[110.804829,-6.949809899999934],[110.80479410000004,-6.954419599999937],[110.80345990000006,-6.955424899999969],[110.80729270000006,-6.955477199999962],[110.80718310000009,-6.960281599999973],[110.81037260000005,-6.967553099999975],[110.81022080000008,-6.975787599999933],[110.80817810000008,-6.978123599999947],[110.80390930000004,-6.979570899999942],[110.80406950000008,-6.989689299999952],[110.80831150000006,-6.9924111],[110.81089780000008,-7.000000399999976],[110.81505590000006,-7.003669199999933],[110.81819150000007,-6.996435099999928],[110.81983190000005,-6.995999799999936],[110.82365420000008,-7.001076699999942],[110.82640070000008,-7.001667],[110.83554080000005,-6.991060199999936],[110.84056850000007,-6.9933729],[110.84527590000005,-6.990210499999932],[110.84812160000007,-6.995791399999973],[110.847702,-6.997862299999952],[110.85150910000004,-6.998808399999973],[110.85576630000008,-6.987382899999943],[110.86050410000007,-6.982115699999952],[110.86516570000003,-6.979810199999974],[110.86753080000005,-6.975432399999931],[110.87258910000008,-6.975615499999947],[110.875,-6.972906099999932],[110.88576240000003,-6.969131799999957],[110.88461660000007,-6.980140499999948],[110.88698280000006,-6.9848145],[110.90037730000006,-6.988332599999978],[110.905216,-6.984234299999969],[110.90647890000008,-6.975778599999956],[110.91175020000009,-6.965796299999965],[110.91353720000006,-6.966076899999962],[110.91509250000007,-6.961588399999926],[110.916893,-6.962815299999932],[110.91577910000007,-6.9659791],[110.92050930000005,-6.967430099999945],[110.92061610000007,-6.969645499999956],[110.92379,-6.969320299999936],[110.92559090000009,-6.972145399999931],[110.92938870000006,-6.971298499999932],[110.93437810000006,-6.974162399999955],[110.93603920000004,-6.9721684],[110.939489,-6.974120399999947],[110.94546240000005,-6.974904599999945],[110.94675110000009,-6.974773],[110.94717820000005,-6.971532699999955],[110.94997750000005,-6.970390299999963],[110.94798410000004,-6.968606299999976],[110.94895120000007,-6.9672404],[110.95302350000009,-6.9704773],[110.96219390000005,-6.970375799999943],[110.96378210000006,-6.969300899999951],[110.96424350000007,-6.965768799999978],[110.96970680000004,-6.968114299999968],[110.97018630000008,-6.964387099999954],[110.97238910000004,-6.966332399999942],[110.97842410000004,-6.9672789],[110.98036960000007,-6.970110399999953],[110.98519360000006,-6.9710861],[111.00048060000006,-6.968910199999925],[111.00840760000006,-6.969805699999938],[111.01567080000007,-6.9685678],[111.02474970000009,-6.969220099999973],[111.02894590000005,-6.971987199999944],[111.03278380000006,-6.972347199999945],[111.04147340000009,-6.970591499999955],[111.05015560000004,-6.966855499999951],[111.05835720000005,-6.968744699999945],[111.069721,-6.969056399999943],[111.07548520000006,-6.961272199999939],[111.08204650000005,-6.959290899999928],[111.08997240000008,-6.954712299999926],[111.09261870000006,-6.950799],[111.08909540000008,-6.948834399999953],[111.08504160000007,-6.950236099999927],[111.08445930000005,-6.948359399999958],[111.07853980000004,-6.945492399999978],[111.07793750000008,-6.942360099999973],[111.08370680000007,-6.937782099999936],[111.09039390000004,-6.937142899999969],[111.09257360000004,-6.934192099999962],[111.09668410000006,-6.933215399999938],[111.09896850000007,-6.928417199999956],[111.10149480000007,-6.927494],[111.10072520000006,-6.926542299999937],[111.104857,-6.919279099999926],[111.11076090000006,-6.915919],[111.11024040000007,-6.912865699999941],[111.11464410000008,-6.913927],[111.11588310000008,-6.9148389],[111.11484760000008,-6.914797499999963],[111.11525690000008,-6.916257499999972],[111.12033080000003,-6.913022],[111.125,-6.913475499999947],[111.13250450000004,-6.9203828],[111.13806240000008,-6.920822099999953],[111.14202880000005,-6.916444799999965],[111.14380640000007,-6.910817599999973],[111.14034270000008,-6.903384199999948],[111.14179230000008,-6.9010915],[111.14994050000007,-6.905883699999947],[111.15247340000008,-6.910137599999928],[111.16938780000004,-6.905875599999945],[111.176712,-6.905371599999967],[111.18333430000007,-6.898584299999925],[111.18692780000003,-6.898836099999926],[111.18690490000006,-6.896691799999928],[111.19021610000004,-6.898534699999971],[111.19831850000008,-6.8983311],[111.20124810000004,-6.894027199999925],[111.20084380000009,-6.889184399999976],[111.20332330000008,-6.8799824],[111.20491030000005,-6.877247299999965],[111.20874020000008,-6.874879299999975],[111.20822140000007,-6.872147499999926],[111.21115870000006,-6.871340199999963],[111.21196750000007,-6.869328],[111.21508020000005,-6.870492399999932],[111.21672820000003,-6.873121199999957],[111.22193150000004,-6.871529099999975],[111.223793,-6.863524899999959],[111.22223660000009,-6.856164],[111.22400670000007,-6.854959399999927],[111.22273290000004,-6.851702799999941],[111.22422910000006,-6.850461899999971],[111.22276720000008,-6.848050499999943],[111.22486220000008,-6.846145199999967],[111.229296,-6.849447399999974],[111.23881410000007,-6.850552599999958],[111.239936,-6.858367399999963],[111.24178130000007,-6.859301699999946],[111.24219260000007,-6.8616599],[111.24478250000004,-6.862682499999949],[111.25431820000006,-6.858252],[111.25774380000007,-6.853825499999971],[111.26345540000005,-6.855369199999927]]]},"properties":{"shapeName":"Pati","shapeISO":"","shapeID":"22746128B38998625633258","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[134.00089360000004,-0.997367299999951],[134.00510540000005,-0.998162],[134.0092062000001,-0.9909374],[134.00331490000008,-0.989180399999952],[134.00089360000004,-0.997367299999951]]],[[[133.96660780000002,-0.960316099999943],[133.9685425,-0.962551799999972],[133.97280200000012,-0.959125699999959],[133.96637380000004,-0.952452199999925],[133.96376940000005,-0.957036199999948],[133.96660780000002,-0.960316099999943]]],[[[133.48811480000006,-0.887440799999979],[133.4975644000001,-0.922483199999931],[133.5113441000001,-0.964281699999958],[133.51672130000009,-0.974328499999956],[133.51672130000009,-0.998617299999978],[133.50380710000002,-1.005074399999955],[133.46917910000002,-1.018540799999926],[133.46917910000002,-1.030817299999967],[133.4644161000001,-1.044153699999924],[133.4634635000001,-1.0546323],[133.45584270000006,-1.069873899999948],[133.4205965000001,-1.1155988],[133.40535490000002,-1.145129399999973],[133.36725080000008,-1.194664699999976],[133.36058260000004,-1.2060959],[133.34343580000007,-1.257536399999935],[133.3344290000001,-1.27542],[133.401154,-1.297806],[133.426636,-1.301435],[133.469757,-1.313133],[133.526154,-1.325678],[133.572128,-1.338049],[133.615021,-1.352732],[133.662933,-1.363143],[133.6628945000001,-1.3641],[133.6857629000001,-1.366797599999927],[133.72067430000004,-1.378092399999957],[133.7406969000001,-1.389900699999941],[133.75712580000004,-1.405816099999925],[133.77304120000008,-1.427892399999962],[133.7997381,-1.446374899999967],[133.8295154000001,-1.476152199999945],[133.876235,-1.515170699999942],[133.8793915000001,-1.516167499999938],[133.87846700000011,-1.515185199999962],[133.89107330000002,-1.504165199999932],[133.9141330000001,-1.4876566],[133.92147020000004,-1.476912899999945],[133.95108090000008,-1.455425499999933],[133.9610385000001,-1.445729899999947],[133.97754710000004,-1.436558399999967],[133.98960870000008,-1.421968299999946],[134.0040133000001,-1.428435099999945],[134.0241906000001,-1.434462099999962],[134.04031020000002,-1.441139],[134.0608039000001,-1.411529599999938],[134.06173310000008,-1.385671699999932],[134.06959440000003,-1.378138],[134.07974850000005,-1.362743099999932],[134.10726290000002,-1.332772],[134.10464250000007,-1.323764399999959],[134.09776390000002,-1.313282699999945],[134.09579850000011,-1.305093899999974],[134.08703860000003,-1.288346699999977],[134.08236890000012,-1.278889699999979],[134.06664640000008,-1.259891599999946],[134.06009530000006,-1.247772199999929],[134.0574749000001,-1.2307395],[134.0501819000001,-1.208600099999956],[134.05029750000006,-1.201517599999931],[134.07139470000004,-1.181405099999949],[134.018175,-1.134098699999925],[134.01468970000008,-1.125621699999954],[134.0143624000001,-1.109677699999963],[134.0114873000001,-1.097356],[134.00947240000005,-1.077624399999934],[133.9624109,-1.109219699999926],[133.9382194000001,-1.140986099999964],[133.93059140000003,-1.135549599999933],[133.9296326000001,-1.151134499999955],[133.9250512000001,-1.165604199999962],[133.91124610000008,-1.158638],[133.89302770000006,-1.146021699999949],[133.89334530000008,-1.137647],[133.88889560000007,-1.130718099999967],[133.8934534000001,-1.118119499999978],[133.87975890000007,-1.110920199999953],[133.8693128000001,-1.101770299999941],[133.89514670000005,-1.085236499999951],[133.89388940000003,-1.078949899999941],[133.91831810000008,-1.066017],[133.93779740000002,-1.045746399999928],[133.9579582,-1.067347199999972],[133.9907518000001,-1.0386229],[133.9580936000001,-1.037390699999946],[133.95070060000012,-1.034104899999932],[133.9408433000001,-1.019729699999971],[133.93672390000006,-1.010668299999963],[133.9262701,-1.010484899999938],[133.92857950000007,-1.0279876],[133.92509930000006,-1.032141299999978],[133.9068926000001,-1.012634099999957],[133.88957570000002,-1.015986899999973],[133.885192,-1.004230499999949],[133.869094,-1.008083099999965],[133.87842950000004,-1.0256225],[133.8919353000001,-1.022314899999969],[133.88820750000002,-1.050540499999954],[133.89030360000004,-1.061021099999948],[133.82586620000006,-1.063407699999971],[133.82968010000002,-1.053055699999959],[133.82968010000002,-1.027065799999946],[133.82468210000002,-1.013071299999979],[133.82968010000002,-0.994078699999932],[133.82968010000002,-0.985082199999965],[133.82768090000002,-0.956093499999952],[133.82468210000002,-0.947097],[133.7687039000001,-0.936101299999962],[133.742714,-0.929104],[133.71772380000004,-0.928104399999938],[133.7017300000001,-0.924105899999972],[133.68273740000006,-0.916109],[133.64875070000005,-0.906112899999926],[133.61576350000007,-0.905113299999925],[133.48811480000006,-0.887440799999979]],[[133.9137356000001,-1.188946899999962],[133.91265220000003,-1.190030399999955],[133.9035437000001,-1.176291399999968],[133.89813650000008,-1.173028399999964],[133.89936160000002,-1.166163599999948],[133.9264455000001,-1.184304],[133.9137356000001,-1.188946899999962]],[[133.87901540000007,-1.171993099999952],[133.87970080000002,-1.173835399999973],[133.8724847000001,-1.173722599999962],[133.8707554,-1.164038699999935],[133.87546140000006,-1.162902799999927],[133.87813280000012,-1.164680099999941],[133.87901540000007,-1.171993099999952]]]]},"properties":{"shapeName":"Pegunungan Arfak","shapeISO":"","shapeID":"22746128B48131778936000","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[140.99974040000006,-5.294657699999959],[141.0000185,-4.992135499999961],[141.0000185,-4.6441675],[141.0000185,-4.205067499999927],[140.99955390000002,-3.931170699999939],[140.99641850000012,-3.929167499999949],[140.99791850000008,-3.924667499999941],[140.99621850000005,-3.921667499999955],[140.98941850000006,-3.925767499999949],[140.9861185000001,-3.922767499999964],[140.9829185000001,-3.9152675],[140.98011850000012,-3.915367499999945],[140.97551850000002,-3.919367499999964],[140.97301850000008,-3.918867499999976],[140.97121850000008,-3.923167499999977],[140.96651850000012,-3.923667499999965],[140.9634185000001,-3.919567499999971],[140.9639185000001,-3.917067499999973],[140.96171850000007,-3.913967499999956],[140.95791850000012,-3.914067499999931],[140.95231850000005,-3.917567499999961],[140.9430185000001,-3.913967499999956],[140.93601850000005,-3.917067499999973],[140.93681850000007,-3.919567499999971],[140.93421850000004,-3.921867499999962],[140.93251850000001,-3.926667499999951],[140.92801850000012,-3.928167499999972],[140.92501850000008,-3.9249675],[140.91741850000005,-3.922067499999969],[140.9158185000001,-3.926967499999932],[140.91691850000007,-3.933467499999949],[140.9141185000001,-3.936567499999967],[140.9177185000001,-3.938767499999926],[140.9195185000001,-3.944367499999942],[140.9163185000001,-3.946367499999951],[140.91191850000007,-3.946267499999976],[140.90871850000008,-3.938067499999931],[140.9058185,-3.938267499999938],[140.90351850000002,-3.9363675],[140.8986185000001,-3.940267499999948],[140.89941850000002,-3.936667499999942],[140.8972185,-3.935267499999952],[140.89571850000004,-3.938767499999926],[140.88681850000012,-3.941167499999949],[140.8851185000001,-3.938667499999951],[140.88611850000007,-3.930467499999963],[140.88111850000007,-3.931867499999953],[140.8801185000001,-3.938067499999931],[140.8759185,-3.938467499999945],[140.87311850000003,-3.935267499999952],[140.86811850000004,-3.936167499999954],[140.86491850000004,-3.933367499999974],[140.83461850000003,-3.940367499999979],[140.78871850000007,-3.940367499999979],[140.77881850000006,-3.9383675],[140.77531850000003,-3.933667499999956],[140.77331850000007,-3.934467499999926],[140.76881850000007,-3.930967499999952],[140.77041850000012,-3.9286675],[140.76891850000004,-3.925767499999949],[140.76391850000005,-3.925567499999943],[140.76531850000003,-3.927567499999952],[140.76061850000008,-3.926967499999932],[140.75941850000004,-3.931967499999928],[140.75501850000012,-3.935467499999959],[140.75161850000006,-3.931367499999965],[140.7524185000001,-3.928367499999979],[140.74861850000002,-3.928467499999954],[140.73931850000008,-3.924167499999953],[140.74251850000007,-3.920467499999972],[140.7414185,-3.917767499999968],[140.73271850000003,-3.915767499999959],[140.7306185000001,-3.911967499999946],[140.7152185000001,-3.916367499999978],[140.70221850000007,-3.910067499999968],[140.70061850000002,-3.912567499999966],[140.69691850000004,-3.912467499999934],[140.69421850000003,-3.910067499999968],[140.69101850000004,-3.9103675],[140.67881850000003,-3.906767499999944],[140.65121850000003,-3.915567499999952],[140.64481850000004,-3.921667499999955],[140.63991850000002,-3.923567499999933],[140.63981850000005,-3.9314675],[140.63711850000004,-3.933467499999949],[140.62881850000008,-3.933367499999974],[140.62031850000005,-3.935867499999972],[140.6178185000001,-3.938467499999945],[140.6151185000001,-3.937667499999975],[140.61281850000012,-3.940667499999961],[140.61361850000003,-3.944567499999948],[140.61091850000003,-3.947267499999953],[140.6088185000001,-3.9446675],[140.59651850000012,-3.941867499999944],[140.59451850000005,-3.938867499999958],[140.58721850000006,-3.937267499999962],[140.58531850000008,-3.933067499999936],[140.5902185000001,-3.932967499999961],[140.58991850000007,-3.930167499999925],[140.5951185,-3.930567499999938],[140.59621850000008,-3.927767499999959],[140.5934185000001,-3.925567499999943],[140.58241850000002,-3.929067499999974],[140.57001850000006,-3.924667499999941],[140.5680185000001,-3.926267499999938],[140.56601850000004,-3.923867499999972],[140.5603185000001,-3.921367499999974],[140.55781850000005,-3.916867499999967],[140.5522185000001,-3.916867499999967],[140.55161850000002,-3.914367499999969],[140.54871850000006,-3.916967499999942],[140.5471185,-3.921467499999949],[140.5445185000001,-3.919667499999946],[140.54421850000006,-3.914567499999976],[140.54201850000004,-3.912667499999941],[140.53491850000012,-3.917667499999936],[140.52541850000011,-3.917967499999975],[140.52601850000008,-3.915767499999959],[140.52391850000004,-3.913767499999949],[140.5169185000001,-3.914867499999957],[140.51471850000007,-3.912667499999941],[140.51941850000003,-3.906567499999937],[140.51701850000006,-3.904967499999941],[140.51441850000003,-3.907167499999957],[140.50891850000005,-3.907667499999945],[140.50631850000002,-3.9046675],[140.50341850000007,-3.907567499999971],[140.49761850000004,-3.904867499999966],[140.49751850000007,-3.908467499999972],[140.49491850000004,-3.909667499999955],[140.4941185,-3.911967499999946],[140.4960185000001,-3.913967499999956],[140.49861850000002,-3.912067499999978],[140.50031850000005,-3.913967499999956],[140.5001185000001,-3.919267499999933],[140.5068185,-3.925067499999955],[140.50801850000005,-3.928067499999941],[140.50271850000001,-3.925367499999936],[140.50021850000007,-3.922267499999975],[140.49461850000012,-3.925567499999943],[140.49401850000004,-3.9286675],[140.49001850000002,-3.927167499999939],[140.48841850000008,-3.929367499999955],[140.4856185000001,-3.928167499999972],[140.4860185000001,-3.924167499999953],[140.4879185000001,-3.921367499999974],[140.48441850000006,-3.9186675],[140.47901850000005,-3.917767499999968],[140.47861850000004,-3.910567499999956],[140.4634185000001,-3.910167499999943],[140.45941850000008,-3.907067499999926],[140.4661185000001,-3.905367499999954],[140.46961850000002,-3.902467499999943],[140.45961850000003,-3.902567499999975],[140.45551850000004,-3.904867499999966],[140.4553185000001,-3.892967499999941],[140.44831850000003,-3.903167499999938],[140.44831850000003,-3.907067499999926],[140.4461185,-3.910167499999943],[140.44251850000012,-3.907767499999977],[140.44181850000007,-3.911967499999946],[140.43821850000006,-3.909067499999935],[140.4353185000001,-3.910167499999943],[140.4254185000001,-3.907067499999926],[140.41981850000002,-3.909667499999955],[140.41701850000004,-3.917667499999936],[140.4109185000001,-3.917967499999975],[140.40571850000003,-3.915867499999933],[140.40571850000003,-3.911667499999965],[140.41161850000003,-3.913667499999974],[140.41381850000005,-3.910867499999938],[140.4045185000001,-3.903167499999938],[140.40471850000006,-3.896267499999965],[140.4064185000001,-3.892967499999941],[140.41331850000006,-3.900367499999959],[140.4181185000001,-3.898967499999969],[140.41781850000007,-3.892967499999941],[140.4140185000001,-3.885867499999961],[140.41431850000004,-3.8815675],[140.4158185000001,-3.877667499999973],[140.42091850000008,-3.871867499999951],[140.42101850000006,-3.868267499999945],[140.42371850000006,-3.863767499999938],[140.42771850000008,-3.861767499999928],[140.43101850000005,-3.855967499999963],[140.4308185000001,-3.850467499999979],[140.42651850000004,-3.850967499999967],[140.41671850000012,-3.846667499999967],[140.41571850000003,-3.840367499999957],[140.42021850000003,-3.835367499999961],[140.4203185,-3.825167499999964],[140.41911850000008,-3.821467499999926],[140.4222185000001,-3.821667499999933],[140.42051850000007,-3.818067499999927],[140.41331850000006,-3.816467499999931],[140.41391850000002,-3.819367499999942],[140.41071850000003,-3.822267499999953],[140.4050185000001,-3.814767499999959],[140.3996185000001,-3.814567499999953],[140.3999185,-3.811167499999954],[140.4113185000001,-3.8070675],[140.41331850000006,-3.804167499999949],[140.41761850000012,-3.802667499999927],[140.41741850000005,-3.7987675],[140.40331850000007,-3.788367499999936],[140.4050185000001,-3.784067499999935],[140.40891850000003,-3.784867499999962],[140.41241850000006,-3.780667499999936],[140.40961850000008,-3.778567499999951],[140.40781850000008,-3.774667499999964],[140.39781850000008,-3.770267499999932],[140.3987185000001,-3.766467499999976],[140.40211850000003,-3.766167499999938],[140.4086185000001,-3.756367499999953],[140.40161850000004,-3.7496675],[140.39851850000002,-3.7488675],[140.39831850000007,-3.745867499999974],[140.40341850000004,-3.743467499999952],[140.40421850000007,-3.738667499999963],[140.39981850000004,-3.734667499999944],[140.39841850000005,-3.738967499999944],[140.39431850000005,-3.739367499999958],[140.3837185000001,-3.7362675],[140.38186650000011,-3.737325799999951],[140.3751185000001,-3.743667499999958],[140.3724185000001,-3.744267499999978],[140.3697185000001,-3.742867499999932],[140.36351850000005,-3.744067499999971],[140.35211850000007,-3.738267499999949],[140.34771850000004,-3.741367499999967],[140.34581850000006,-3.744967499999973],[140.3334185000001,-3.747267499999964],[140.3312185000001,-3.745967499999949],[140.32921850000002,-3.746767499999976],[140.3284185000001,-3.750567499999931],[140.32641850000005,-3.752467499999966],[140.3203185000001,-3.753067499999929],[140.31911850000006,-3.750767499999938],[140.32411850000005,-3.747567499999946],[140.32321850000005,-3.744867499999941],[140.31521850000001,-3.739467499999932],[140.24689590000003,-3.721306299999981],[140.20712130000004,-3.712467499999946],[140.16335750000007,-3.706997699999931],[140.16065590000005,-3.705704199999957],[140.158965,-3.699369099999956],[140.15428610000004,-3.695916099999977],[140.14471070000002,-3.694804399999953],[140.1342998,-3.69579],[140.13605690000009,-3.7024012],[140.131968,-3.700778],[140.12957990000007,-3.704773899999964],[140.13184760000001,-3.714256199999966],[140.1270502000001,-3.713898699999959],[140.1254252000001,-3.715661],[140.1225194000001,-3.714898299999959],[140.1305678000001,-3.722342],[140.13062660000003,-3.726322299999936],[140.1412474000001,-3.735568599999965],[140.1395861000001,-3.737747],[140.13350620000006,-3.737225399999943],[140.1344216000001,-3.7397592],[140.13211250000006,-3.744867799999952],[140.1325419000001,-3.750313899999981],[140.15172030000008,-3.762562799999955],[140.161283,-3.764788399999929],[140.1583369000001,-3.770593],[140.15535310000007,-3.771530899999959],[140.1513291000001,-3.771056599999952],[140.14662840000005,-3.768238699999927],[140.13966010000001,-3.769986699999947],[140.14127240000005,-3.766089499999964],[140.13499070000012,-3.765956599999924],[140.13501150000002,-3.772243599999968],[140.138183,-3.773097],[140.14027750000002,-3.776039],[140.13845630000003,-3.781338099999971],[140.14367530000004,-3.786553699999956],[140.1481497000001,-3.786413399999958],[140.1499176000001,-3.787781099999961],[140.148346,-3.794274499999972],[140.1511620000001,-3.799849599999959],[140.15011120000008,-3.808505499999967],[140.15633650000007,-3.809968],[140.1611041000001,-3.814884699999936],[140.1605423000001,-3.8277293],[140.153,-3.833782699999972],[140.1529511000001,-3.841399299999978],[140.14802290000011,-3.842552199999943],[140.1451337000001,-3.847054199999945],[140.14137940000012,-3.848986199999956],[140.134267,-3.847341699999959],[140.13278650000007,-3.848841799999946],[140.13380140000004,-3.851882299999943],[140.1406191000001,-3.858655499999941],[140.14756180000006,-3.869445299999938],[140.14511790000006,-3.8769056],[140.14615920000006,-3.890168],[140.14226250000002,-3.894632699999931],[140.1328185000001,-3.894867499999975],[140.1206185000001,-3.899367499999926],[140.11221850000004,-3.906667499999969],[140.10391850000008,-3.9097675],[140.1033185000001,-3.924167499999953],[140.10671850000006,-3.934567499999957],[140.09781850000002,-3.949467499999969],[140.09461850000002,-3.950267499999939],[140.06721850000008,-3.939067499999965],[140.0612185000001,-3.939867499999934],[140.0572185000001,-3.944167499999935],[140.0557185,-3.951067499999965],[140.05211850000012,-3.953967499999976],[140.0481185000001,-3.962067499999932],[140.04201850000004,-3.967667499999948],[140.03871850000007,-3.9799675],[140.03401850000012,-3.9874675],[140.0400185000001,-3.988567499999931],[140.04161850000003,-3.992767499999957],[140.0449185000001,-3.994467499999928],[140.04701850000004,-3.998367499999972],[140.0513185000001,-4.000367499999925],[140.05471850000004,-3.997067499999957],[140.0649185000001,-4.000067499999943],[140.07191850000004,-3.997467499999971],[140.07731850000005,-4.003167499999961],[140.0812185000001,-4.004367499999944],[140.08371850000003,-4.008467499999938],[140.09141850000003,-4.010067499999934],[140.09301850000008,-4.015267499999936],[140.07461850000004,-4.016367499999944],[140.06691850000004,-4.018267499999979],[140.05231850000007,-4.017867499999966],[140.0477185000001,-4.019867499999975],[140.0449185000001,-4.024267499999951],[140.04251850000003,-4.024967499999946],[140.03701850000004,-4.0225675],[140.03491850000012,-4.025867499999947],[140.0236185000001,-4.031067499999949],[140.02131850000012,-4.039167499999962],[140.01571850000005,-4.041467499999953],[140.01491850000002,-4.045067499999959],[140.00971850000008,-4.050567499999943],[139.9991185,-4.053767499999935],[139.9933185000001,-4.058167499999968],[139.9915185000001,-4.0576675],[139.98911850000002,-4.060867499999972],[139.98851850000005,-4.0676675],[139.9847185000001,-4.080467499999941],[139.97981850000008,-4.084867499999973],[139.9793185000001,-4.088867499999935],[139.9855185,-4.098267499999963],[139.98711850000007,-4.104267499999935],[139.9788185000001,-4.113967499999944],[139.97450630000003,-4.116651599999955],[139.97939970000004,-4.119787199999962],[139.98152560000005,-4.127050499999939],[139.9892202000001,-4.129835],[139.98534340000003,-4.132553599999937],[139.9842714,-4.142925099999957],[139.9859785000001,-4.146662099999958],[139.99007560000007,-4.147567299999935],[139.9909328000001,-4.149393199999963],[139.98951850000003,-4.181367499999965],[139.99361850000003,-4.276467499999967],[139.98411850000002,-4.311867499999948],[139.97461850000002,-4.3689675],[139.9623279000001,-4.41783],[139.95691850000003,-4.455967499999929],[139.96781850000002,-4.488567499999931],[139.98411850000002,-4.508967499999926],[140.0480185,-4.570167499999968],[140.10421850000012,-4.629067499999962],[140.1191185,-4.6386675],[140.16281850000007,-4.6609675],[140.2012185000001,-4.671667499999955],[140.21081850000007,-4.686567499999967],[140.21291850000011,-4.705767499999979],[140.22041850000005,-4.732467499999927],[140.22681850000004,-4.7451675],[140.2256185000001,-4.769667499999969],[140.22821850000003,-4.789267499999937],[140.22731850000002,-4.799467499999935],[140.23581850000005,-4.815667499999961],[140.2392185000001,-4.830167499999959],[140.23411850000002,-4.842067499999928],[140.23501850000002,-4.864267499999926],[140.24181850000002,-4.886467499999981],[140.24951850000002,-4.898367499999949],[140.24861850000002,-4.923067499999945],[140.25291850000008,-4.935867499999972],[140.25121850000005,-4.952067499999941],[140.2341484000001,-4.962334],[140.21112570000003,-4.970860899999934],[140.16593290000003,-4.979387899999949],[140.14128990000006,-4.997353699999962],[140.1328085,-5.001731899999925],[140.12864620000005,-5.005458899999951],[140.12553350000007,-5.012153099999978],[140.115567,-5.023607799999979],[140.10564510000006,-5.030997799999966],[140.09878360000005,-5.038238899999953],[140.0861992,-5.041658499999926],[140.07540390000008,-5.0545401],[140.08634890000008,-5.059443299999941],[140.1079208000001,-5.060722299999952],[140.11234930000012,-5.057293399999935],[140.1123970000001,-5.051502],[140.1180571000001,-5.050950499999942],[140.1236043,-5.054806499999927],[140.1260784000001,-5.053398799999968],[140.131235,-5.053839899999957],[140.1326732000001,-5.050449699999945],[140.1396171,-5.0540229],[140.1394411000001,-5.058834899999965],[140.14665700000012,-5.061639599999978],[140.14857910000012,-5.064147699999978],[140.15283220000003,-5.066007699999943],[140.15388020000012,-5.105906899999979],[140.1470776000001,-5.169007299999976],[140.230737,-5.183647699999938],[140.76444790000005,-5.258234799999968],[140.99974040000006,-5.294657699999959]]]},"properties":{"shapeName":"Pegunungan Bintang","shapeISO":"","shapeID":"22746128B63696758964384","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[109.79871170000007,-7.171164799999929],[109.79436490000006,-7.168025499999942],[109.78759,-7.166232499999978],[109.78404230000007,-7.162979099999973],[109.78344730000003,-7.160458],[109.77807620000004,-7.155761199999972],[109.77799230000005,-7.151102],[109.77499390000008,-7.144748099999958],[109.77142330000004,-7.142778799999974],[109.77065280000005,-7.138968399999953],[109.77371220000003,-7.1347141],[109.77294160000008,-7.131722899999943],[109.77469640000004,-7.125666599999931],[109.77427670000009,-7.120854399999928],[109.77230070000007,-7.119546799999966],[109.77160650000008,-7.116014],[109.76680760000005,-7.114779],[109.76252750000003,-7.116420199999936],[109.75706490000005,-7.115085599999929],[109.75400540000004,-7.1127147],[109.74390410000007,-7.111640399999942],[109.73903660000008,-7.101677399999971],[109.73902890000005,-7.099487299999964],[109.74581910000006,-7.097394399999928],[109.74788670000004,-7.093302699999981],[109.75333420000004,-7.090383499999973],[109.75324440000009,-7.087864299999978],[109.75095380000005,-7.087502399999948],[109.75057230000004,-7.084125499999971],[109.753998,-7.084500199999979],[109.75299850000005,-7.082978599999933],[109.75708030000004,-7.075421699999936],[109.75600450000007,-7.071980899999971],[109.75807210000005,-7.071235599999966],[109.758629,-7.069285799999932],[109.757992,-7.0659463],[109.75579830000004,-7.065261299999975],[109.75868960000008,-7.0638078],[109.75537640000005,-7.058304699999951],[109.75334670000007,-7.057935099999952],[109.75589090000005,-7.055806299999972],[109.753589,-7.054775199999938],[109.755015,-7.053244099999972],[109.75537990000004,-7.047033799999951],[109.751384,-7.044272599999942],[109.75507820000007,-7.042094499999962],[109.75312750000006,-7.038213799999937],[109.755978,-7.037473],[109.75899830000009,-7.033891499999982],[109.75896990000007,-7.030583499999977],[109.747742,-7.011919399999954],[109.74877190000007,-7.006910299999959],[109.74684170000006,-7.004896099999939],[109.74816160000006,-6.999587],[109.74416550000007,-6.995434099999954],[109.73654940000006,-7.003466099999969],[109.73069730000009,-7.002792499999941],[109.72171650000007,-6.986621299999968],[109.717031,-6.986152499999946],[109.71485450000006,-6.988011699999959],[109.70741670000007,-6.986497699999973],[109.70676890000004,-6.979673899999966],[109.70480350000008,-6.978288499999962],[109.70549150000005,-6.975102099999958],[109.70325180000009,-6.973810899999933],[109.70451080000004,-6.971277699999973],[109.70278550000006,-6.964775699999961],[109.69871520000004,-6.965505099999973],[109.69511210000007,-6.960955799999965],[109.693056,-6.960703499999966],[109.693994,-6.958661899999981],[109.69314310000004,-6.954971099999966],[109.69151430000005,-6.9549337],[109.68922080000004,-6.951293799999974],[109.68754070000006,-6.950730599999929],[109.68570230000006,-6.954073599999958],[109.68581760000006,-6.952188099999944],[109.68374770000008,-6.951345699999933],[109.682095,-6.948102799999958],[109.68208530000004,-6.9437793],[109.67957630000006,-6.943131],[109.68115370000004,-6.941461299999958],[109.67859650000008,-6.940003399999966],[109.67704780000008,-6.941592699999944],[109.675293,-6.940265199999942],[109.67702490000005,-6.937529499999926],[109.67375180000005,-6.936835199999962],[109.67339330000004,-6.935129099999926],[109.67506060000005,-6.934596499999941],[109.67564290000007,-6.933771299999933],[109.67291140000009,-6.932146199999977],[109.67511040000005,-6.930606199999943],[109.67395220000009,-6.928977399999951],[109.67100970000007,-6.930057599999941],[109.67113410000007,-6.935710699999959],[109.66907170000007,-6.93426],[109.66739670000004,-6.928159499999936],[109.6691,-6.92703],[109.66892,-6.9222459],[109.665236,-6.920875599999931],[109.66383390000004,-6.922076699999934],[109.65870450000006,-6.920044299999972],[109.65697560000007,-6.922035499999936],[109.64840320000008,-6.922312199999965],[109.64475540000007,-6.9210543],[109.64214330000004,-6.917387],[109.64685850000006,-6.9127594],[109.64426920000005,-6.911510599999929],[109.64522530000005,-6.905351099999962],[109.64906040000005,-6.904363599999954],[109.64909660000006,-6.902778699999942],[109.64775090000006,-6.902554],[109.64809420000006,-6.896807599999931],[109.64403570000007,-6.8955051],[109.64331750000008,-6.893331599999954],[109.64602430000008,-6.8939679],[109.64753720000004,-6.888674699999967],[109.65110020000009,-6.887888399999952],[109.65051620000008,-6.886022899999944],[109.64795010000006,-6.8861648],[109.64720910000005,-6.879828299999929],[109.65377340000003,-6.878949199999965],[109.65625340000008,-6.875809899999979],[109.663048,-6.8778645],[109.66432290000006,-6.874162299999966],[109.66016390000004,-6.872869899999955],[109.658249,-6.870655199999931],[109.66082030000007,-6.866506499999957],[109.65964510000003,-6.864254],[109.66001130000006,-6.859294399999953],[109.66322330000008,-6.859332499999937],[109.66581340000005,-6.851931],[109.65915510000008,-6.848958799999934],[109.65768,-6.85017],[109.6348,-6.84633],[109.62363090000008,-6.840553099999966],[109.62257,-6.84201],[109.59585460000005,-6.840543599999933],[109.59919610000009,-6.844989299999952],[109.59668190000008,-6.845116499999961],[109.59571350000004,-6.846759599999928],[109.59208680000006,-6.845091799999977],[109.59361880000006,-6.850150399999961],[109.59251360000007,-6.850654899999938],[109.59045570000006,-6.847462099999973],[109.58890540000004,-6.850139099999978],[109.58566290000005,-6.851188199999967],[109.58386990000008,-6.850262599999951],[109.58335120000004,-6.853267599999981],[109.58523560000003,-6.8544836],[109.58350380000007,-6.857253],[109.58669830000008,-6.856241],[109.583786,-6.8592948],[109.588356,-6.858569599999953],[109.58623510000007,-6.861335199999928],[109.58853910000005,-6.862964099999942],[109.58755490000004,-6.864064599999949],[109.58526610000007,-6.861799699999949],[109.58415230000008,-6.862321299999962],[109.58615880000008,-6.864693099999954],[109.58441930000004,-6.864736],[109.58345030000004,-6.867578499999979],[109.58544160000008,-6.867554599999949],[109.585762,-6.868770099999949],[109.58340460000005,-6.870222],[109.58390810000009,-6.872376399999951],[109.57963560000007,-6.874476899999934],[109.58217620000005,-6.876558299999942],[109.57861330000009,-6.878288699999928],[109.57602140000006,-6.877718099999981],[109.576998,-6.881221799999935],[109.57606510000005,-6.882586899999978],[109.56900790000009,-6.882051399999966],[109.56567530000007,-6.885489299999961],[109.56802880000004,-6.885730799999976],[109.56841640000005,-6.888365],[109.56678,-6.889389599999959],[109.56897540000006,-6.891102099999955],[109.56542780000007,-6.892457899999954],[109.56745870000009,-6.895067099999949],[109.56570930000004,-6.895677299999932],[109.56549070000005,-6.899102599999935],[109.56277470000003,-6.899988099999973],[109.564904,-6.907215099999974],[109.56103520000005,-6.912629599999946],[109.56288910000006,-6.914329],[109.56341550000008,-6.918312399999934],[109.56139980000006,-6.920045699999946],[109.56198120000005,-6.922353199999975],[109.55859280000004,-6.925095299999953],[109.55601570000005,-6.922477599999979],[109.55364330000003,-6.922875799999929],[109.55297450000006,-6.928878099999963],[109.55027520000004,-6.928485399999943],[109.54982760000007,-6.926039199999934],[109.54592750000006,-6.929877099999942],[109.539917,-6.930411299999946],[109.53487170000005,-6.932785699999954],[109.53450410000005,-6.938345499999969],[109.53038030000005,-6.9374332],[109.53078460000006,-6.940686599999935],[109.52124790000005,-6.943108],[109.51947020000006,-6.9484982],[109.51319760000007,-6.946876799999927],[109.507903,-6.957176799999957],[109.49839780000008,-6.964275799999939],[109.49747470000005,-6.970139],[109.49890140000008,-6.974964599999964],[109.49858040000004,-6.982370099999969],[109.49555970000006,-6.9841427],[109.49749760000009,-6.987225],[109.495224,-6.990213799999935],[109.49880220000006,-6.999999899999978],[109.49665840000006,-7.0067711],[109.49736390000004,-7.010072],[109.49451370000008,-7.011025099999927],[109.49288180000008,-7.013417199999935],[109.49404150000004,-7.015541499999927],[109.49343110000007,-7.018804],[109.48762510000006,-7.022874299999955],[109.48344420000006,-7.0295724],[109.48556520000005,-7.0310769],[109.48669440000003,-7.037826499999937],[109.48668670000006,-7.039851099999964],[109.48465730000004,-7.041457599999944],[109.48517610000005,-7.045001],[109.48938750000008,-7.046180699999979],[109.49091340000007,-7.049345899999935],[109.48802190000004,-7.0554599],[109.49288940000008,-7.065253199999972],[109.49614720000005,-7.067781899999943],[109.49706270000007,-7.074254],[109.49575040000008,-7.0827927],[109.49939730000006,-7.086557399999947],[109.49948120000005,-7.092483499999958],[109.50224310000004,-7.094708399999945],[109.50455480000005,-7.099962199999936],[109.50428770000008,-7.10325],[109.50209050000007,-7.103511799999978],[109.49875640000005,-7.1077079],[109.49434660000009,-7.1095209],[109.49576570000005,-7.113426599999968],[109.49124150000006,-7.120374599999934],[109.49273680000005,-7.127789899999925],[109.49069980000007,-7.128933899999936],[109.49320220000004,-7.129842199999928],[109.49343880000004,-7.134418399999959],[109.49763490000004,-7.138457699999947],[109.49737550000003,-7.141166599999963],[109.50437930000004,-7.155648199999973],[109.50557710000004,-7.168471299999965],[109.51144510000006,-7.171801699999946],[109.51409150000006,-7.180182899999977],[109.51754760000006,-7.183002],[109.516655,-7.185479099999952],[109.51880650000004,-7.185252199999979],[109.518158,-7.188923799999941],[109.52053070000005,-7.188563299999942],[109.52088930000008,-7.191771499999959],[109.52493290000007,-7.1948199],[109.52628330000005,-7.198976899999934],[109.52415470000005,-7.202712499999961],[109.52047730000004,-7.204933599999947],[109.52117160000006,-7.207827499999951],[109.51974490000003,-7.209653799999955],[109.52173620000008,-7.211811],[109.52119450000004,-7.216485899999952],[109.522644,-7.219174399999929],[109.53057860000007,-7.222475],[109.53028110000008,-7.225971699999945],[109.53228,-7.23074],[109.53826140000007,-7.239319799999976],[109.53878020000008,-7.241780199999937],[109.53723150000008,-7.243602199999941],[109.53858950000006,-7.244429599999933],[109.55230720000009,-7.231315099999961],[109.56118780000008,-7.230412399999977],[109.56409460000003,-7.224343699999963],[109.567482,-7.221793099999957],[109.57118990000004,-7.220829399999957],[109.57412720000008,-7.222486],[109.57871250000005,-7.221815099999958],[109.58748630000008,-7.213763699999959],[109.59005740000003,-7.207004],[109.59524540000007,-7.207927599999948],[109.59636690000008,-7.205912499999954],[109.60687260000009,-7.211459099999956],[109.61127470000008,-7.210800099999972],[109.61616520000007,-7.201354499999979],[109.62004860000008,-7.200459399999943],[109.62342840000008,-7.1975803],[109.625,-7.1891217],[109.62849430000006,-7.188426],[109.63480380000004,-7.177504499999941],[109.63652040000005,-7.176153599999964],[109.64129640000004,-7.176167899999939],[109.643532,-7.173140399999966],[109.64799080000006,-7.172004399999935],[109.65207670000007,-7.175153199999954],[109.66381840000008,-7.178456799999935],[109.67079940000008,-7.177715199999966],[109.67275250000006,-7.174481799999967],[109.67610940000009,-7.172453799999971],[109.68294940000004,-7.173297099999957],[109.68141940000004,-7.174508],[109.68306730000006,-7.177494499999966],[109.68196870000008,-7.180534799999975],[109.68343350000004,-7.182847899999956],[109.682724,-7.184029099999975],[109.687439,-7.190847899999937],[109.69030760000004,-7.192521099999965],[109.690033,-7.195055],[109.69490050000007,-7.196267599999942],[109.70409390000009,-7.195308199999943],[109.707695,-7.199806199999955],[109.71407320000009,-7.198248799999931],[109.72640990000008,-7.201842299999953],[109.743721,-7.190430099999958],[109.74542240000005,-7.187862399999972],[109.74405670000004,-7.184356199999968],[109.75195310000004,-7.179467099999954],[109.75379180000004,-7.180680699999925],[109.76157380000006,-7.176616599999932],[109.76804350000003,-7.1799564],[109.775177,-7.180069399999979],[109.78972630000004,-7.176091099999951],[109.79871170000007,-7.171164799999929]]]},"properties":{"shapeName":"Pekalongan","shapeISO":"","shapeID":"22746128B29242555524942","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[102.85636870000008,0.258596900000043],[102.88206490000005,0.27048620000005],[102.90661060000008,0.290813100000037],[102.91696580000007,0.296566],[102.94534670000007,0.306921100000068],[102.94573020000007,0.314975200000049],[102.94304550000004,0.322645700000066],[102.934608,0.324563300000023],[102.89510480000007,0.30462],[102.852917,0.288128400000062],[102.83987710000008,0.284676700000034],[102.82913840000003,0.27777320000007],[102.82645370000006,0.272020300000065],[102.82645370000006,0.26396630000005],[102.83220660000006,0.258980400000041],[102.84447940000007,0.25667930000003],[102.85636870000008,0.258596900000043]]],[[[102.96490650000004,0.320344500000033],[102.97027590000005,0.324563300000023],[102.98216520000005,0.329165600000067],[102.99405450000006,0.33683620000005],[102.99635560000007,0.341822],[102.98945210000005,0.353327800000045],[102.98638390000008,0.356012400000054],[102.97871340000006,0.356012400000054],[102.97411110000007,0.349876],[102.96835820000007,0.345273700000064],[102.95340070000009,0.337219700000048],[102.94496320000007,0.327248],[102.94841490000005,0.323412800000028],[102.94918190000004,0.316892800000062],[102.95225020000004,0.316125800000066],[102.96490650000004,0.320344500000033]]],[[[102.94441250000006,0.328581100000065],[102.95097810000004,0.336908200000039],[102.96907360000006,0.346996800000056],[102.977721,0.356925300000057],[102.973077,0.360928700000045],[102.96362890000006,0.36028820000007],[102.95305990000008,0.355324],[102.94249080000009,0.347637400000053],[102.93816710000004,0.342513],[102.93640560000006,0.332424400000036],[102.93752660000007,0.328581100000065],[102.93960840000005,0.327139800000054],[102.94185030000006,0.32665940000004],[102.94441250000006,0.328581100000065]]],[[[103.17271090000008,0.416603900000041],[103.18046970000006,0.424362700000074],[103.18419740000007,0.429174100000068],[103.18337390000005,0.430041],[103.17934270000006,0.427743700000065],[103.17392460000008,0.421241900000041],[103.17119380000008,0.417167400000039],[103.17271090000008,0.416603900000041]]],[[[103.07343920000005,0.543555100000049],[103.06913960000009,0.551162],[103.04797250000007,0.575305800000024],[103.04466510000009,0.582251300000053],[103.04301140000007,0.57894390000007],[103.05591020000008,0.557776700000034],[103.071124,0.538594],[103.07608510000006,0.53826330000004],[103.07343920000005,0.543555100000049]]],[[[102.97928760000008,0.649195200000065],[102.97048090000004,0.659081800000024],[102.96466710000004,0.661556400000052],[102.96965970000008,0.654783],[102.97728830000005,0.649013800000034],[102.97928760000008,0.649195200000065]]],[[[103.070945,0.565427500000055],[103.07610520000009,0.575650500000052],[103.07902610000008,0.577695100000028],[103.08421870000006,0.590141200000062],[103.07941550000004,0.605610900000045],[103.06711060000003,0.624201],[103.05966750000005,0.639087200000063],[103.055367,0.654800500000022],[103.05139730000008,0.659762600000022],[103.04277890000009,0.661541],[103.03423680000009,0.660846],[103.02737780000007,0.642435],[103.03264740000009,0.630595500000027],[103.03941590000005,0.623642200000063],[103.05072240000004,0.604409700000076],[103.06107110000005,0.579789600000026],[103.06471390000007,0.567374800000039],[103.06880310000008,0.563383],[103.070945,0.565427500000055]]],[[[103.10878890000004,0.638399800000059],[103.11472420000007,0.649621700000068],[103.11478530000005,0.65376150000003],[103.10968960000008,0.668400400000053],[103.10068890000008,0.663537800000029],[103.09614470000008,0.659059400000046],[103.09334320000005,0.650470800000051],[103.10433270000004,0.630775700000072],[103.10878890000004,0.638399800000059]]],[[[102.97539630000006,0.669414700000061],[102.97085680000004,0.674449700000025],[102.96558670000007,0.675094400000035],[102.96640260000004,0.67271530000005],[102.97176060000004,0.668411400000025],[102.975031,0.667219600000067],[102.97539630000006,0.669414700000061]]],[[[102.96604560000009,0.680582700000059],[102.96250260000005,0.681866300000024],[102.96622570000005,0.67857],[102.96604560000009,0.680582700000059]]],[[[103.22543820000004,0.522858600000063],[103.23203540000009,0.524702500000046],[103.28493690000005,0.528432800000076],[103.29634070000009,0.543984500000022],[103.30088230000007,0.554581600000063],[103.30012540000007,0.580065],[103.30214390000003,0.601511400000049],[103.29180840000004,0.632386600000075],[103.27861640000003,0.657364900000061],[103.27279880000003,0.665182300000026],[103.25072430000006,0.685251300000061],[103.23680230000008,0.695553100000041],[103.22322790000004,0.701047500000072],[103.20739110000005,0.70234030000006],[103.191231,0.700401100000022],[103.16573010000008,0.688595600000042],[103.16428260000004,0.685520200000042],[103.16140130000008,0.685289],[103.15561120000007,0.67895610000005],[103.14945930000005,0.666652200000044],[103.14893890000008,0.633506800000021],[103.14692940000003,0.630651700000044],[103.14537170000006,0.617524100000026],[103.144481,0.609069],[103.14583310000006,0.604162600000052],[103.13858110000007,0.579122600000062],[103.13961990000007,0.557344300000068],[103.13828390000003,0.553467800000021],[103.14374890000005,0.533855],[103.147092,0.526805900000056],[103.16551990000005,0.499637900000039],[103.17147990000007,0.498313500000052],[103.18339980000007,0.506094500000074],[103.18753850000007,0.511228500000072],[103.20531440000008,0.519935500000031],[103.21744480000007,0.520590200000072],[103.22543820000004,0.522858600000063]]],[[[103.35725020000007,0.537351200000046],[103.33916650000003,0.54265040000007],[103.33148450000004,0.547348900000031],[103.325639,0.534433400000069],[103.31950060000008,0.525119800000027],[103.30912870000009,0.51538290000002],[103.30277850000004,0.511784500000033],[103.29007820000004,0.507762800000023],[103.28097640000004,0.507339400000035],[103.26467770000005,0.509244500000023],[103.23366780000003,0.491358200000036],[103.21673410000005,0.48627810000005],[103.21186570000003,0.483526400000073],[103.20593890000004,0.476964600000031],[103.20191710000006,0.467016],[103.19916540000008,0.452199],[103.188815,0.43182870000004],[103.16752250000008,0.407173900000032],[103.14380350000005,0.392773],[103.12220220000006,0.39150230000007],[103.09678890000004,0.384301900000025],[103.08704710000006,0.383031200000062],[103.07052850000008,0.376677900000061],[103.06332810000004,0.372018800000035],[103.05697470000007,0.369901],[103.03283210000006,0.353806],[103.01377220000006,0.339405100000022],[103.00487750000008,0.327545600000064],[102.98602930000004,0.315050700000029],[102.94706230000008,0.296837800000048],[102.93393210000005,0.293025900000032],[102.92334320000003,0.287943200000029],[102.906401,0.278201400000057],[102.89665930000007,0.270153900000025],[102.87887,0.26210640000005],[102.85049180000004,0.245164200000033],[102.84244430000007,0.244317100000046],[102.83397320000006,0.247705500000052],[102.82380790000008,0.255329500000073],[102.80718560000008,0.261558600000058],[102.79423260000004,0.29346750000002],[102.80880990000009,0.300356],[102.82080140000005,0.303820200000075],[102.84211960000005,0.315189900000064],[102.86068420000004,0.31803240000005],[102.89998960000008,0.336019600000043],[102.91318610000008,0.342976400000055],[102.93920930000007,0.369433300000026],[102.95482320000008,0.38071],[103.00676120000008,0.401853900000049],[103.03365180000009,0.421805],[103.03907330000004,0.423973600000068],[103.05536650000005,0.433746600000063],[103.054803,0.434477800000025],[103.06686430000008,0.438285800000074],[103.076383,0.444631600000037],[103.11191930000007,0.457323100000053],[103.121438,0.463034300000061],[103.12080340000006,0.476995100000067],[103.11255390000008,0.497301500000049],[103.10557360000007,0.508723900000064],[103.09668950000008,0.516338900000051],[103.08590160000006,0.530299600000035],[103.07765210000008,0.536645400000054],[103.07321010000004,0.534107],[103.06178770000008,0.544894900000031],[103.04465410000006,0.569008800000063],[103.04275040000005,0.57662380000005],[103.037589,0.587612100000058],[103.02755820000004,0.600837],[102.98947360000005,0.634773800000062],[102.96180740000005,0.656094400000029],[102.91090720000005,0.716624100000047],[102.90426990000009,0.722174500000051],[102.90065060000006,0.720967500000029],[102.89332640000003,0.719390900000064],[102.87983290000005,0.711199900000054],[102.872145,0.70177810000007],[102.86838590000008,0.686130200000036],[102.86013330000009,0.672842900000035],[102.85619680000008,0.669168900000045],[102.84823370000004,0.666723800000057],[102.77966620000007,0.660082500000044],[102.73142090000005,0.653612700000053],[102.526612,0.63112510000002],[102.41701150000006,0.620645500000023],[102.34016450000007,0.611379100000022],[102.11855310000004,0.596784500000069],[102.06195560000003,0.587852],[101.97745740000005,0.571925],[101.97341070000004,0.550225200000057],[101.91982840000009,0.52091020000006],[101.915977,0.50707710000006],[101.92016760000007,0.506091100000049],[101.92022920000005,0.504612100000031],[101.91283410000005,0.504550400000028],[101.91277240000005,0.502455200000043],[101.91437470000005,0.498819200000071],[101.91579210000003,0.498819200000071],[101.91577920000009,0.495318800000064],[101.91704470000008,0.495416300000045],[101.91709660000004,0.498470500000053],[101.92149570000004,0.498519400000021],[101.92047530000008,0.477394900000036],[101.91147470000004,0.477195100000074],[101.91152140000008,0.467981400000042],[101.91298770000009,0.467777200000057],[101.91359350000005,0.465231700000061],[101.91475670000005,0.465893],[101.91470370000008,0.459886400000073],[101.90848420000003,0.459888900000067],[101.90843140000004,0.454289500000073],[101.89472820000009,0.454244100000039],[101.89482740000005,0.449357200000065],[101.87814060000005,0.449313],[101.87809310000006,0.457254200000023],[101.88638610000004,0.45745450000004],[101.885503,0.510554900000045],[101.84981210000007,0.510391100000049],[101.831197,0.507067600000028],[101.83429260000008,0.498058400000048],[101.84172150000006,0.495138900000029],[101.84333750000008,0.482836300000031],[101.84989720000004,0.47516330000002],[101.84425320000008,0.449608900000044],[101.83659990000007,0.436265900000024],[101.81941430000006,0.432699100000036],[101.81503120000008,0.430133400000045],[101.81276270000006,0.424507],[101.79849580000007,0.417729],[101.79425890000005,0.407501500000023],[101.75054210000008,0.429459200000053],[101.73331770000004,0.445081400000049],[101.72583010000005,0.448501600000043],[101.71788030000005,0.449857400000042],[101.69751660000009,0.445755],[101.69677120000006,0.434972600000037],[101.69215190000006,0.419380800000056],[101.67163340000008,0.407790800000043],[101.67064710000005,0.43145190000007],[101.671622,0.446483300000068],[101.67654940000006,0.455645900000036],[101.66539690000008,0.501028600000041],[101.66457820000005,0.537422800000058],[101.659077,0.54070420000005],[101.64175760000006,0.54317640000005],[101.624711,0.541956200000072],[101.61179190000007,0.53931590000002],[101.61068990000007,0.536521200000038],[101.59543980000007,0.529377100000033],[101.59201080000008,0.530542],[101.588932,0.52794],[101.58807910000007,0.516700600000036],[101.58206930000006,0.506903900000054],[101.58243,0.501596800000073],[101.57987060000005,0.496733200000051],[101.58390920000005,0.48912050000007],[101.58855480000005,0.474109400000032],[101.58569080000007,0.47184580000004],[101.57430570000008,0.472801600000025],[101.57035220000006,0.470719200000076],[101.56912440000008,0.468660800000066],[101.57031050000006,0.462699],[101.57414740000007,0.454135],[101.59058210000006,0.423565300000064],[101.614193,0.39463180000007],[101.63893740000003,0.394109300000025],[101.66725680000008,0.383909800000026],[101.67727770000005,0.386274100000037],[101.687399,0.38308],[101.68146580000007,0.373509200000058],[101.67194820000009,0.343146900000022],[101.65875270000004,0.321843200000046],[101.65905860000004,0.318652200000031],[101.67955230000007,0.294812700000023],[101.68269340000006,0.275898100000063],[101.68168340000005,0.270835],[101.58051640000008,0.267966900000033],[101.57433240000006,0.253945100000067],[101.56536,0.225199400000065],[101.56518480000005,0.218406900000048],[101.57066850000007,0.213015800000051],[101.57406260000005,0.205390200000068],[101.57791160000005,0.201892300000054],[101.58643690000008,0.202211400000067],[101.58713810000006,0.204746600000021],[101.59209880000009,0.193794400000058],[101.59038210000006,0.184807800000044],[101.58012190000005,0.161478500000044],[101.57885960000004,0.144491500000072],[101.572416,0.122923400000047],[101.57090910000005,0.104350400000044],[101.57587910000007,0.091768200000047],[101.56859540000005,0.051908600000047],[101.56244620000007,0.046019900000033],[101.56183860000004,0.042146400000036],[101.55634250000008,0.043838300000061],[101.54969090000009,0.04165340000003],[101.53957340000005,0.036367100000064],[101.534007,0.029600400000049],[101.53187130000003,0.023115500000074],[101.53194730000007,0.014478900000029],[101.529065,-0.004114799999968],[101.51474230000008,-0.037606699999969],[101.51433360000004,-0.046563],[101.518118,-0.067666699999961],[101.52129060000004,-0.107815199999948],[101.52276810000006,-0.117220799999927],[101.524827,-0.1174274],[101.53149360000003,-0.120573199999967],[101.53246330000007,-0.127922599999977],[101.53573,-0.126805299999944],[101.54163130000006,-0.128080399999931],[101.54457510000003,-0.130178299999955],[101.54820370000004,-0.1456245],[101.55251880000009,-0.152685599999927],[101.55732430000006,-0.155333499999927],[101.556834,-0.161364899999967],[101.56011930000005,-0.170436499999937],[101.56653580000005,-0.176690199999939],[101.57005750000008,-0.183257799999978],[101.58276530000006,-0.187665899999956],[101.58561780000008,-0.192551499999979],[101.59243380000004,-0.198190599999975],[101.596291,-0.214178299999958],[101.60246380000007,-0.219481799999926],[101.60444750000005,-0.225699599999928],[101.61165580000005,-0.235653799999966],[101.61655930000006,-0.236242299999958],[101.61969760000005,-0.231093499999929],[101.623029,-0.230920199999957],[101.63534690000006,-0.241179199999976],[101.63761840000006,-0.245867],[101.63940990000003,-0.246392599999979],[101.651914,-0.240557399999943],[101.65644180000004,-0.241070099999945],[101.66083360000005,-0.2393266],[101.66398990000005,-0.242191799999944],[101.66507020000006,-0.252664299999935],[101.66703170000005,-0.254233399999976],[101.67328790000005,-0.256092899999942],[101.67741580000006,-0.252880199999936],[101.67993390000004,-0.252989899999932],[101.68882260000004,-0.259610499999951],[101.70566710000008,-0.262070399999971],[101.71255490000004,-0.2653306],[101.71389520000008,-0.271610099999975],[101.71840920000005,-0.276683899999966],[101.71969330000007,-0.280853399999955],[101.73416340000006,-0.2965806],[101.73485120000004,-0.301631499999928],[101.73303360000006,-0.310891099999935],[101.73683920000008,-0.311442199999931],[101.738149,-0.309416099999964],[101.74335850000006,-0.309510299999943],[101.75352050000004,-0.311060699999928],[101.75465630000008,-0.312334699999951],[101.75374620000008,-0.319050599999969],[101.75753820000006,-0.323802199999932],[101.75989720000007,-0.331352699999968],[101.74606220000004,-0.344398],[101.74814050000003,-0.347795799999972],[101.74768740000007,-0.352109199999973],[101.765105,-0.358039599999927],[101.77631040000006,-0.364618399999927],[101.78851830000008,-0.365685399999961],[101.79253530000005,-0.3706836],[101.79771350000004,-0.372589699999935],[101.80089990000005,-0.377868099999944],[101.80458630000004,-0.380686399999945],[101.81085870000004,-0.381973599999981],[101.81963110000004,-0.376322799999969],[101.82437680000004,-0.375130199999944],[101.82873780000006,-0.3767883],[101.83433720000005,-0.3819417],[101.83788350000003,-0.392266699999936],[101.84544670000008,-0.398574599999961],[101.84943230000005,-0.404443199999946],[101.86277970000003,-0.4042392],[101.87240030000004,-0.392512299999964],[101.88846450000005,-0.393194199999925],[101.89084640000004,-0.396208099999967],[101.89257430000004,-0.395723799999928],[101.90688770000008,-0.399494699999934],[101.92721980000005,-0.400114299999927],[101.93921470000004,-0.404944199999932],[101.95115580000004,-0.407537399999967],[101.96081020000008,-0.406460399999958],[101.96962340000005,-0.400349299999959],[102.01877190000005,-0.350069099999928],[102.03163540000008,-0.329814299999953],[102.04742650000009,-0.312029],[102.09716870000005,-0.275560199999973],[102.10202520000007,-0.273117099999979],[102.11731180000004,-0.270452699999964],[102.15021540000004,-0.2695998],[102.165246,-0.263565],[102.16914530000008,-0.259148599999946],[102.17411370000008,-0.246734799999956],[102.17934460000004,-0.212384499999928],[102.190576,-0.186268199999972],[102.194754,-0.179636499999958],[102.20733970000003,-0.171979699999952],[102.22509790000004,-0.166468599999973],[102.25264330000005,-0.165841],[102.300557,-0.174092899999948],[102.33909140000009,-0.177701299999967],[102.36807620000008,-0.178831499999944],[102.38371580000006,-0.1765558],[102.40715520000003,-0.1664377],[102.43288470000005,-0.147387399999957],[102.458261,-0.119291],[102.475463,-0.097796899999935],[102.47966130000003,-0.088939299999936],[102.48541070000005,-0.069193599999949],[102.49630160000004,0.012168900000063],[102.50007750000003,0.023332100000061],[102.51516310000005,0.049138300000038],[102.53813640000004,0.074943],[102.55115090000004,0.084668700000066],[102.565644,0.093202900000051],[102.59339460000007,0.101282300000037],[102.62677190000005,0.103564400000039],[102.71696940000004,0.105364500000064],[102.73066980000004,0.108323800000051],[102.74494980000009,0.113701300000059],[102.78185110000004,0.11714790000002],[102.794994,0.119761800000049],[102.81412210000008,0.126431],[102.83510680000006,0.13786390000007],[102.84400540000007,0.145397400000036],[102.85900610000004,0.153086200000075],[102.87036980000005,0.162122],[102.88411930000007,0.176664500000072],[102.90292090000008,0.202078500000027],[102.91751270000003,0.218596400000024],[102.96002270000008,0.256850800000052],[103.00393350000007,0.290864800000065],[103.015296,0.297073200000057],[103.02763930000003,0.301304300000027],[103.04404910000005,0.304404300000044],[103.07154010000005,0.313853100000074],[103.11599920000003,0.32512950000006],[103.14501670000004,0.340469300000052],[103.20809410000004,0.408388200000047],[103.25599350000005,0.44639890000002],[103.26362050000006,0.452150600000039],[103.29552890000008,0.468591500000059],[103.33689060000006,0.485341600000027],[103.33887780000003,0.487624800000049],[103.34659960000005,0.510894400000041],[103.35603260000005,0.531001500000059],[103.35725020000007,0.537351200000046]]],[[[103.276743,0.72401990000003],[103.27475450000009,0.72691240000006],[103.27276590000008,0.725104600000066],[103.27475450000009,0.722935300000074],[103.276743,0.72401990000003]]],[[[103.27493530000004,0.729081700000052],[103.27168130000007,0.732878],[103.27041580000008,0.729804800000068],[103.27493530000004,0.729081700000052]]]]},"properties":{"shapeName":"Pelalawan","shapeISO":"","shapeID":"22746128B48755119579596","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[109.223671,-7.246292099999948],[109.22563940000003,-7.241962399999977],[109.224617,-7.239104699999928],[109.23197940000006,-7.237133399999948],[109.23547370000006,-7.232950599999981],[109.24763490000004,-7.227800799999955],[109.25433350000009,-7.226985399999933],[109.26401520000007,-7.222900799999934],[109.27543640000005,-7.222152199999925],[109.27785490000008,-7.219781399999931],[109.28532410000008,-7.220383599999934],[109.29321290000007,-7.215570399999933],[109.316597,-7.214136599999961],[109.32010650000007,-7.212452799999937],[109.32752990000006,-7.2134852],[109.35523230000007,-7.201027799999963],[109.36967470000008,-7.195961399999931],[109.37327580000004,-7.196274699999947],[109.37644960000006,-7.192253599999958],[109.381279,-7.190393899999947],[109.39009860000004,-7.192902499999946],[109.39102170000007,-7.197927899999968],[109.39695740000008,-7.197247899999979],[109.40014650000006,-7.198965],[109.40238190000008,-7.198468599999956],[109.40545650000007,-7.201020199999959],[109.40886690000008,-7.200519499999928],[109.41706090000008,-7.195805],[109.42449190000008,-7.186124699999937],[109.42852020000004,-7.186648799999944],[109.42887120000006,-7.183999],[109.433815,-7.180723099999966],[109.43423470000005,-7.178299399999958],[109.43820190000008,-7.175054],[109.43610380000007,-7.173759899999936],[109.43547060000009,-7.170219399999951],[109.44010160000005,-7.165680799999961],[109.43804170000004,-7.163784899999939],[109.442688,-7.16118],[109.453331,-7.166942499999948],[109.45493320000008,-7.173195799999974],[109.46149450000007,-7.179345099999978],[109.46212770000005,-7.181823699999939],[109.45889280000006,-7.184499699999947],[109.46012880000006,-7.187421699999959],[109.457489,-7.190616099999943],[109.45735170000006,-7.196774399999981],[109.46284490000005,-7.204749499999934],[109.46941380000004,-7.209875099999977],[109.47986610000004,-7.221971499999938],[109.48347480000007,-7.223016199999961],[109.49183660000006,-7.2221655],[109.49793250000005,-7.231002299999943],[109.50244140000007,-7.233976299999938],[109.50669860000005,-7.239604399999962],[109.51201630000008,-7.235382499999957],[109.51960760000009,-7.236095899999953],[109.52857210000008,-7.233544299999949],[109.53228,-7.23074],[109.53028110000008,-7.225971699999945],[109.53057860000007,-7.222475],[109.522644,-7.219174399999929],[109.52119450000004,-7.216485899999952],[109.52173620000008,-7.211811],[109.51974490000003,-7.209653799999955],[109.52117160000006,-7.207827499999951],[109.52047730000004,-7.204933599999947],[109.52415470000005,-7.202712499999961],[109.52628330000005,-7.198976899999934],[109.52493290000007,-7.1948199],[109.52088930000008,-7.191771499999959],[109.52053070000005,-7.188563299999942],[109.518158,-7.188923799999941],[109.51880650000004,-7.185252199999979],[109.516655,-7.185479099999952],[109.51754760000006,-7.183002],[109.51409150000006,-7.180182899999977],[109.51144510000006,-7.171801699999946],[109.50557710000004,-7.168471299999965],[109.50437930000004,-7.155648199999973],[109.49737550000003,-7.141166599999963],[109.49763490000004,-7.138457699999947],[109.49343880000004,-7.134418399999959],[109.49320220000004,-7.129842199999928],[109.49069980000007,-7.128933899999936],[109.49273680000005,-7.127789899999925],[109.49124150000006,-7.120374599999934],[109.49576570000005,-7.113426599999968],[109.49434660000009,-7.1095209],[109.49875640000005,-7.1077079],[109.50209050000007,-7.103511799999978],[109.50428770000008,-7.10325],[109.50455480000005,-7.099962199999936],[109.50224310000004,-7.094708399999945],[109.49948120000005,-7.092483499999958],[109.49939730000006,-7.086557399999947],[109.49575040000008,-7.0827927],[109.49706270000007,-7.074254],[109.49614720000005,-7.067781899999943],[109.49288940000008,-7.065253199999972],[109.48802190000004,-7.0554599],[109.49091340000007,-7.049345899999935],[109.48938750000008,-7.046180699999979],[109.48517610000005,-7.045001],[109.48465730000004,-7.041457599999944],[109.48668670000006,-7.039851099999964],[109.48669440000003,-7.037826499999937],[109.48556520000005,-7.0310769],[109.48344420000006,-7.0295724],[109.48762510000006,-7.022874299999955],[109.49343110000007,-7.018804],[109.49404150000004,-7.015541499999927],[109.49288180000008,-7.013417199999935],[109.49451370000008,-7.011025099999927],[109.49736390000004,-7.010072],[109.49665840000006,-7.0067711],[109.49880220000006,-6.999999899999978],[109.495224,-6.990213799999935],[109.49749760000009,-6.987225],[109.49555970000006,-6.9841427],[109.49858040000004,-6.982370099999969],[109.49890140000008,-6.974964599999964],[109.49747470000005,-6.970139],[109.49839780000008,-6.964275799999939],[109.507903,-6.957176799999957],[109.51319760000007,-6.946876799999927],[109.51947020000006,-6.9484982],[109.52124790000005,-6.943108],[109.53078460000006,-6.940686599999935],[109.53038030000005,-6.9374332],[109.53450410000005,-6.938345499999969],[109.53487170000005,-6.932785699999954],[109.539917,-6.930411299999946],[109.54592750000006,-6.929877099999942],[109.54982760000007,-6.926039199999934],[109.55027520000004,-6.928485399999943],[109.55297450000006,-6.928878099999963],[109.55364330000003,-6.922875799999929],[109.55601570000005,-6.922477599999979],[109.55859280000004,-6.925095299999953],[109.56198120000005,-6.922353199999975],[109.56139980000006,-6.920045699999946],[109.56341550000008,-6.918312399999934],[109.56288910000006,-6.914329],[109.56103520000005,-6.912629599999946],[109.564904,-6.907215099999974],[109.56277470000003,-6.899988099999973],[109.56549070000005,-6.899102599999935],[109.56570930000004,-6.895677299999932],[109.56745870000009,-6.895067099999949],[109.56542780000007,-6.892457899999954],[109.56897540000006,-6.891102099999955],[109.56678,-6.889389599999959],[109.56841640000005,-6.888365],[109.56802880000004,-6.885730799999976],[109.56567530000007,-6.885489299999961],[109.56900790000009,-6.882051399999966],[109.57606510000005,-6.882586899999978],[109.576998,-6.881221799999935],[109.57602140000006,-6.877718099999981],[109.57861330000009,-6.878288699999928],[109.58217620000005,-6.876558299999942],[109.57963560000007,-6.874476899999934],[109.58390810000009,-6.872376399999951],[109.58340460000005,-6.870222],[109.585762,-6.868770099999949],[109.58544160000008,-6.867554599999949],[109.58345030000004,-6.867578499999979],[109.58441930000004,-6.864736],[109.58615880000008,-6.864693099999954],[109.58415230000008,-6.862321299999962],[109.58526610000007,-6.861799699999949],[109.58755490000004,-6.864064599999949],[109.58853910000005,-6.862964099999942],[109.58623510000007,-6.861335199999928],[109.588356,-6.858569599999953],[109.583786,-6.8592948],[109.58669830000008,-6.856241],[109.58350380000007,-6.857253],[109.58523560000003,-6.8544836],[109.58335120000004,-6.853267599999981],[109.58386990000008,-6.850262599999951],[109.58566290000005,-6.851188199999967],[109.58890540000004,-6.850139099999978],[109.59045570000006,-6.847462099999973],[109.59251360000007,-6.850654899999938],[109.59361880000006,-6.850150399999961],[109.59208680000006,-6.845091799999977],[109.59571350000004,-6.846759599999928],[109.59668190000008,-6.845116499999961],[109.59919610000009,-6.844989299999952],[109.59585460000005,-6.840543599999933],[109.58408820000005,-6.839270499999941],[109.57379180000004,-6.836167],[109.55971420000009,-6.826925899999935],[109.53382480000005,-6.796084399999927],[109.52491870000006,-6.780356899999958],[109.52416920000007,-6.774039399999936],[109.52319380000006,-6.775463199999933],[109.52233050000007,-6.774728699999969],[109.52277720000006,-6.771969299999967],[109.51806480000005,-6.777156399999967],[109.51959750000009,-6.779880799999944],[109.51848170000005,-6.781855299999961],[109.51990290000003,-6.787959099999966],[109.51842280000005,-6.787745099999938],[109.51663750000006,-6.791453299999944],[109.51605890000008,-6.788677099999973],[109.51279680000005,-6.790694599999938],[109.51088610000005,-6.7871674],[109.50816690000005,-6.786232],[109.50554880000004,-6.791338],[109.49191170000006,-6.805935499999975],[109.481568,-6.814749199999937],[109.46541310000003,-6.825855099999956],[109.43873340000005,-6.841206199999931],[109.42649,-6.84648],[109.41239010000004,-6.849907899999948],[109.41308,-6.85196],[109.40642950000006,-6.852620499999944],[109.37846350000007,-6.861675],[109.36489750000004,-6.862967099999935],[109.35056620000006,-6.861691299999961],[109.34992590000007,-6.8657044],[109.35125020000004,-6.868295799999942],[109.352837,-6.868974699999967],[109.35588880000006,-6.866853799999944],[109.35702080000004,-6.867996199999936],[109.35431270000004,-6.870373699999959],[109.35434650000008,-6.872196],[109.35936230000004,-6.871276399999942],[109.36034070000005,-6.877649],[109.35849760000008,-6.879883199999938],[109.35971110000008,-6.882241399999941],[109.35696470000005,-6.883000899999956],[109.35392,-6.886888899999974],[109.35597990000008,-6.889358899999934],[109.35221510000008,-6.890117499999974],[109.34999220000009,-6.892665699999952],[109.35119140000006,-6.895412199999953],[109.34661960000005,-6.893686199999934],[109.34558760000004,-6.895092699999964],[109.34878960000009,-6.897074199999963],[109.34128620000007,-6.898782299999937],[109.34237680000007,-6.900136299999929],[109.33911510000007,-6.902898799999946],[109.34091190000004,-6.903301699999929],[109.34046940000007,-6.905419299999949],[109.33779150000004,-6.903704599999969],[109.33647920000004,-6.904580499999952],[109.33641550000004,-6.9098945],[109.33489230000004,-6.913384899999926],[109.33205260000005,-6.914763599999958],[109.33357240000004,-6.917066],[109.33206180000008,-6.916617799999926],[109.33177950000004,-6.919279099999926],[109.32868360000003,-6.921166299999925],[109.329155,-6.922742299999925],[109.32536320000008,-6.925290099999927],[109.32607270000005,-6.928472],[109.32840730000004,-6.926989],[109.32821660000008,-6.928883499999927],[109.33040620000008,-6.929268799999932],[109.32680510000006,-6.934998499999949],[109.33053590000009,-6.9363236],[109.33137520000008,-6.934330899999964],[109.33322150000004,-6.935620299999925],[109.33311470000007,-6.939170799999943],[109.33132170000005,-6.939730099999963],[109.33360290000007,-6.941904499999964],[109.332962,-6.944094099999973],[109.33449560000008,-6.945749699999965],[109.33152770000004,-6.9460482],[109.33158110000005,-6.949956399999962],[109.329216,-6.9545769],[109.33100130000008,-6.957106499999952],[109.33222960000006,-6.9571118],[109.33271790000003,-6.954678499999943],[109.33533480000006,-6.955426599999953],[109.335701,-6.956800399999963],[109.33170320000005,-6.958155599999941],[109.33132940000007,-6.963666399999966],[109.32971190000006,-6.9633941],[109.32928470000007,-6.960532599999965],[109.32675170000005,-6.961872099999937],[109.32498930000008,-6.961217799999929],[109.32250220000009,-6.963292499999966],[109.325531,-6.965580399999965],[109.32453160000006,-6.968417599999952],[109.32332610000009,-6.968615499999942],[109.321518,-6.965591899999936],[109.320015,-6.967165899999941],[109.32213590000003,-6.9684829],[109.321312,-6.970194799999945],[109.31657410000008,-6.967387199999962],[109.31665040000007,-6.974148699999944],[109.319397,-6.976562899999976],[109.31608580000005,-6.979336199999977],[109.3153,-6.984224299999937],[109.31165320000008,-6.988459099999943],[109.30525970000008,-6.989019799999937],[109.30171970000004,-6.987782899999956],[109.30123140000006,-6.990736399999946],[109.29285430000004,-6.994565899999941],[109.29122160000009,-6.997978099999955],[109.29193880000008,-7.002767499999948],[109.28832250000005,-7.0034961],[109.28858950000006,-7.006163499999957],[109.28603360000005,-7.008613099999934],[109.28875730000004,-7.012896],[109.28663640000008,-7.017905199999973],[109.28775790000009,-7.021547799999951],[109.28255460000008,-7.024065],[109.28305060000008,-7.031867899999952],[109.27901460000004,-7.032983299999955],[109.27577980000007,-7.037921399999959],[109.27743530000004,-7.040746599999977],[109.27495580000004,-7.0505747],[109.27562720000009,-7.052924599999926],[109.27288170000008,-7.054477499999962],[109.27257430000009,-7.056549699999948],[109.26664740000007,-7.058944699999927],[109.264328,-7.058292799999947],[109.26161960000007,-7.060996],[109.25366980000007,-7.0636176],[109.25243380000006,-7.067348399999958],[109.249785,-7.068494599999951],[109.24993140000004,-7.072278399999959],[109.24449920000006,-7.072936499999969],[109.245102,-7.074894799999981],[109.24142460000007,-7.073024699999962],[109.23718270000006,-7.074625399999945],[109.23538550000006,-7.080837699999961],[109.23394550000006,-7.080923299999938],[109.234467,-7.082763799999952],[109.23247910000003,-7.083193199999926],[109.23323630000004,-7.0853259],[109.23074220000007,-7.084679299999948],[109.23187930000006,-7.087541599999952],[109.230484,-7.089660599999945],[109.22842570000006,-7.090022399999953],[109.23038480000008,-7.092071899999951],[109.22736290000006,-7.091547499999933],[109.22861490000008,-7.092972199999963],[109.22664280000004,-7.094002199999977],[109.22761640000004,-7.096754699999963],[109.22563680000007,-7.097623599999963],[109.22604270000005,-7.101067399999977],[109.22449070000005,-7.102026699999954],[109.22051310000006,-7.118827099999976],[109.219074,-7.119294299999979],[109.219464,-7.122692499999971],[109.21758670000008,-7.123158],[109.21789580000006,-7.124822499999937],[109.21659770000008,-7.125062599999978],[109.21461820000007,-7.129309299999932],[109.20832420000005,-7.128677799999934],[109.20224380000008,-7.130887299999927],[109.19527730000004,-7.129959699999972],[109.19372980000009,-7.132185199999981],[109.189317,-7.133136799999932],[109.185942,-7.135976699999958],[109.18767550000007,-7.140338899999961],[109.192009,-7.142253399999959],[109.19269970000005,-7.147472099999959],[109.194444,-7.147019199999932],[109.18854520000008,-7.156559899999934],[109.18876550000004,-7.160766899999942],[109.19429020000007,-7.168972899999972],[109.19801330000007,-7.170206499999949],[109.19661710000008,-7.1827564],[109.19934850000004,-7.193116099999941],[109.19649510000005,-7.208229899999935],[109.20000460000006,-7.216214099999945],[109.199997,-7.224192099999925],[109.21354680000007,-7.234932399999934],[109.21026610000007,-7.235027699999932],[109.20645140000005,-7.238502],[109.20444490000006,-7.242731499999934],[109.20513150000005,-7.244167299999958],[109.20266720000006,-7.246619199999941],[109.20383450000008,-7.2476124],[109.21744540000009,-7.248883199999966],[109.223671,-7.246292099999948]]]},"properties":{"shapeName":"Pemalang","shapeISO":"","shapeID":"22746128B95879697514661","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[116.83717550000006,-1.045987199999956],[116.83750740000005,-1.038749199999927],[116.841666,-1.032570699999951],[116.83979260000001,-1.029146899999944],[116.84283920000007,-1.022288099999969],[116.85300630000006,-1.014193299999931],[116.872025,-1.008446],[116.873954,-1.006657],[116.87466970000003,-0.995373299999926],[116.8791347,-0.988334799999961],[116.88919610000005,-0.978662699999973],[116.89993360000005,-0.972204899999952],[116.92055510000012,-0.963049699999942],[116.94676550000008,-0.933155],[116.955046,-0.925738],[116.94053930000007,-0.907492499999933],[116.919785,-0.888752],[116.898932,-0.864035],[116.88476040000012,-0.851373299999977],[116.89270020000004,-0.831481899999972],[116.85968020000007,-0.818298299999981],[116.8090006000001,-0.811541599999941],[116.76850980000006,-0.811541599999941],[116.74151620000009,-0.808167399999945],[116.71447750000004,-0.797912599999961],[116.6840820000001,-0.801391599999931],[116.66729740000005,-0.811523399999942],[116.64703830000008,-0.841909499999929],[116.63016730000004,-0.8824],[116.60317340000006,-0.879025799999965],[116.57955390000006,-0.862154699999962],[116.5652569,-0.849446199999932],[116.54312670000002,-0.839394399999946],[116.531859,-0.837789],[116.523885,-0.838711],[116.5160088,-0.842106399999977],[116.52026160000003,-0.843527499999936],[116.48768960000007,-0.884232],[116.47884030000012,-0.914319299999931],[116.46822120000002,-0.939097199999935],[116.46114190000003,-0.949716199999955],[116.4522928,-0.955025699999965],[116.43990370000006,-0.9656448],[116.4386065000001,-0.970833699999957],[116.44172830000002,-0.970188899999926],[116.44172830000002,-0.984536799999944],[116.45453820000012,-1.025008699999944],[116.45406250000008,-1.043518],[116.44344340000009,-1.059446599999944],[116.4275149,-1.071835599999929],[116.41689570000005,-1.091303799999935],[116.40450680000004,-1.105462599999953],[116.37618930000008,-1.132010299999934],[116.37087980000001,-1.144399199999953],[116.37618930000008,-1.174486499999944],[116.37795920000008,-1.199264299999925],[116.36026090000007,-1.218732699999975],[116.34433210000009,-1.245280399999956],[116.33548280000002,-1.284217],[116.335483,-1.333772499999952],[116.3461019,-1.369169499999941],[116.35495120000007,-1.390407599999946],[116.35605140000007,-1.416994699999975],[116.36380040000006,-1.470050599999979],[116.37441940000008,-1.501907799999969],[116.37972900000011,-1.526685799999939],[116.38680840000006,-1.544384199999968],[116.39919720000012,-1.549693699999978],[116.41689580000002,-1.553233399999954],[116.44521340000006,-1.565622399999938],[116.51954670000009,-1.590400099999954],[116.54432480000003,-1.595709699999929],[116.55173050000008,-1.605101599999955],[116.55867740000008,-1.600782899999956],[116.5598036,-1.593092899999931],[116.55705880000005,-1.588925],[116.552803,-1.551960099999974],[116.54946770000004,-1.534869699999945],[116.54299950000006,-1.521281099999953],[116.53826370000002,-1.5165404],[116.532678,-1.515645599999971],[116.53074960000004,-1.509448899999938],[116.5335047000001,-1.5],[116.5348196000001,-1.482323399999927],[116.53991030000009,-1.464656099999956],[116.55150130000004,-1.451784],[116.5631919000001,-1.442496499999947],[116.58777630000009,-1.4264963],[116.60337930000003,-1.4184714],[116.62589290000005,-1.408977399999969],[116.6322202,-1.4100027],[116.6398091000001,-1.407910899999933],[116.6455989000001,-1.403592099999969],[116.6489319000001,-1.406071599999962],[116.67278270000008,-1.395048799999927],[116.689233,-1.391103499999929],[116.7133487000001,-1.379863599999965],[116.73226780000005,-1.374053699999934],[116.74901920000002,-1.370952699999975],[116.76200470000003,-1.362208199999941],[116.76569630000006,-1.351765],[116.76526910000007,-1.344470599999966],[116.76219450000008,-1.335103499999946],[116.75607080000009,-1.329396599999939],[116.7615,-1.326759299999935],[116.7624896000001,-1.324875299999974],[116.76310560000002,-1.316369799999961],[116.76008530000001,-1.298523899999964],[116.7628678000001,-1.284527699999956],[116.76134360000003,-1.283585499999958],[116.7625743000001,-1.277664],[116.77190860000007,-1.266494499999965],[116.77822070000002,-1.2482338],[116.77647610000008,-1.2408688],[116.77687550000007,-1.243267299999957],[116.774205,-1.242491199999961],[116.7725425000001,-1.243970399999967],[116.77312770000003,-1.242318799999964],[116.7668761000001,-1.236382499999934],[116.78014650000011,-1.224881099999948],[116.76643460000003,-1.212144499999965],[116.77529290000007,-1.187609899999927],[116.75692530000003,-1.138549399999931],[116.72376480000003,-1.120821299999932],[116.71616360000007,-1.109799499999951],[116.73149590000003,-1.086057499999924],[116.72680530000002,-1.075593899999944],[116.72946580000007,-1.066852499999925],[116.73948140000005,-1.073777699999937],[116.74200780000001,-1.071033199999931],[116.749609,-1.071413299999961],[116.7595215,-1.075622599999974],[116.761771,-1.071033199999931],[116.76537480000002,-1.070312499999943],[116.77093450000007,-1.060138399999971],[116.77317290000008,-1.045569099999966],[116.77504250000004,-1.041834199999926],[116.7811541000001,-1.039488099999971],[116.80053730000009,-1.049369699999943],[116.80433790000006,-1.053170299999977],[116.80623520000006,-1.058103299999971],[116.81269930000008,-1.054690599999958],[116.81612040000005,-1.056571699999949],[116.81764010000006,-1.054690599999958],[116.82296090000011,-1.055450699999938],[116.82562140000005,-1.0524102],[116.83360260000006,-1.050129799999979],[116.83717550000006,-1.045987199999956]]]},"properties":{"shapeName":"Penajam Paser Utara","shapeISO":"","shapeID":"22746128B2994183597665","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[104.16739880000006,-3.054794199999947],[104.168123,-3.050927899999976],[104.15498650000006,-3.045560299999977],[104.15038430000004,-3.045252399999924],[104.143451,-3.047664399999974],[104.14131410000005,-3.046390699999961],[104.13859590000004,-3.037777799999958],[104.13354020000008,-3.028996],[104.13308750000004,-3.024685199999965],[104.13629320000007,-3.014086299999974],[104.12821380000008,-3.007333],[104.09884340000008,-3.006326899999976],[104.08744670000004,-3.003176399999973],[104.06660220000003,-3.003903499999979],[104.04770610000008,-3.010956499999963],[104.03877220000004,-3.017314499999941],[104.026559,-3.028891899999962],[104.02051160000008,-3.030274899999938],[104.01031420000004,-3.024987199999941],[103.94885080000006,-3.0053708],[103.93906390000006,-3.016075099999966],[103.92192670000009,-3.023718199999962],[103.91205460000003,-3.024393499999974],[103.91049260000005,-3.028337799999974],[103.90528930000005,-3.032518],[103.89757250000008,-3.052160199999946],[103.89101590000007,-3.056886299999974],[103.88896920000008,-3.065376399999934],[103.88981510000008,-3.073362799999927],[103.88587970000003,-3.079476499999942],[103.86409080000004,-3.087159799999938],[103.85467680000005,-3.084337599999969],[103.84416590000006,-3.088876899999946],[103.83851570000007,-3.094605599999966],[103.83620930000006,-3.100182099999927],[103.83269360000008,-3.101956],[103.82102160000005,-3.1135614],[103.816766,-3.115313599999979],[103.81420050000008,-3.119824],[103.81376320000004,-3.125206299999945],[103.809409,-3.131421499999931],[103.80126020000006,-3.1337743],[103.79608650000006,-3.137350899999944],[103.793488,-3.14127],[103.797539,-3.150947099999939],[103.79711190000006,-3.154174499999954],[103.79146790000004,-3.157694799999945],[103.785128,-3.172322],[103.78530160000008,-3.174769699999956],[103.78379790000008,-3.175666099999944],[103.78313520000006,-3.184341899999936],[103.78419520000006,-3.188748699999962],[103.78936170000009,-3.194938699999966],[103.788732,-3.202920199999937],[103.78084720000004,-3.240910299999939],[103.77409420000004,-3.254208499999947],[103.76588170000008,-3.259135799999967],[103.74759940000007,-3.262523599999952],[103.74133040000004,-3.2667796],[103.73129210000008,-3.265954699999952],[103.71653370000007,-3.262330099999929],[103.71270880000009,-3.257398899999941],[103.70637730000004,-3.238265799999965],[103.70080490000004,-3.240383299999962],[103.69230590000006,-3.246351299999958],[103.68603510000008,-3.247178599999927],[103.683303,-3.250080699999955],[103.68235770000007,-3.254664],[103.67924670000008,-3.256903799999975],[103.668062,-3.257052399999964],[103.66042180000005,-3.254935699999976],[103.652911,-3.250676],[103.64799720000008,-3.250052],[103.64926380000009,-3.245578899999941],[103.64190010000004,-3.251618],[103.63229680000006,-3.255989599999964],[103.624417,-3.276148199999966],[103.61045350000006,-3.278759599999944],[103.60694890000008,-3.289277699999957],[103.61128460000003,-3.308576099999925],[103.61040110000005,-3.316467099999954],[103.61911670000006,-3.323494799999935],[103.61748860000006,-3.330000899999959],[103.62814760000003,-3.335049899999945],[103.64616480000007,-3.3515745],[103.65054360000005,-3.36031],[103.65645130000007,-3.367800599999953],[103.67228680000005,-3.375017],[103.678684,-3.373682799999926],[103.67669460000008,-3.362456399999928],[103.67155820000005,-3.349115299999937],[103.67252070000006,-3.343169099999955],[103.67472020000008,-3.340102299999955],[103.68131080000006,-3.336753699999974],[103.69008150000008,-3.344919499999946],[103.70639780000005,-3.3494979],[103.72367260000004,-3.351247399999977],[103.73073830000004,-3.349625799999956],[103.74706970000005,-3.342691899999977],[103.75212980000003,-3.341930899999966],[103.76234120000004,-3.343670599999939],[103.768836,-3.340513099999953],[103.78852060000008,-3.323413599999981],[103.794822,-3.322270199999934],[103.80427880000008,-3.316525699999943],[103.808001,-3.316913899999975],[103.81096360000004,-3.326745],[103.81450580000006,-3.3276088],[103.82110780000005,-3.324117099999967],[103.82770110000007,-3.327931699999965],[103.83241070000008,-3.323271],[103.83625750000004,-3.324871899999948],[103.849581,-3.320067799999947],[103.85416140000007,-3.321362499999964],[103.85714820000004,-3.327198899999928],[103.85549040000006,-3.334380599999974],[103.85860130000003,-3.338559299999929],[103.87253190000007,-3.3373168],[103.87760510000004,-3.335112299999935],[103.88274250000006,-3.330144799999971],[103.88628610000006,-3.329964599999926],[103.89085470000003,-3.341881299999955],[103.89952250000005,-3.348552899999959],[103.90788860000004,-3.352062099999955],[103.91148970000006,-3.355136099999925],[103.92092950000006,-3.382346799999937],[103.92763970000004,-3.391840499999944],[103.93282810000005,-3.396328499999925],[103.94192780000009,-3.399899799999957],[103.97350740000007,-3.407762599999955],[103.99110470000005,-3.407075199999952],[104.00350670000006,-3.408377599999938],[104.01873840000007,-3.413731299999938],[104.02169760000004,-3.394888],[104.023286,-3.364746],[104.02476380000007,-3.362484],[104.02743490000006,-3.364172099999962],[104.03568320000005,-3.364814499999966],[104.03987040000004,-3.3634885],[104.065911,-3.362292],[104.07462060000006,-3.363352099999929],[104.08644140000007,-3.361924899999963],[104.09374390000005,-3.353533399999947],[104.10952240000006,-3.366199599999959],[104.11306180000008,-3.366512199999931],[104.11685090000009,-3.369300299999963],[104.11941080000008,-3.358279099999947],[104.12061450000004,-3.357835099999932],[104.12170260000005,-3.363083699999947],[104.12340150000006,-3.3644032],[104.12706960000008,-3.3633814],[104.13134310000004,-3.358783899999935],[104.13520920000008,-3.359239399999979],[104.137081,-3.3572153],[104.13721930000008,-3.354356399999972],[104.13461020000005,-3.349939699999936],[104.132211,-3.349251899999956],[104.13310550000006,-3.342025899999953],[104.12965990000004,-3.337389599999938],[104.13226790000004,-3.336369399999967],[104.13358310000007,-3.341211499999929],[104.13722080000008,-3.344410099999948],[104.14932590000006,-3.340063599999951],[104.16054970000005,-3.349094499999978],[104.16772860000003,-3.347917299999949],[104.16890350000006,-3.346495399999981],[104.17974190000007,-3.356785799999955],[104.19434210000009,-3.358763899999929],[104.20219210000005,-3.361318],[104.21267540000008,-3.367756799999938],[104.20837510000007,-3.345311899999956],[104.21004610000006,-3.334238899999946],[104.21158870000005,-3.329754699999967],[104.21923050000004,-3.318995699999959],[104.23232240000004,-3.305178299999966],[104.23389630000008,-3.299781499999938],[104.23044820000007,-3.285983599999952],[104.23384760000005,-3.282937799999956],[104.22807460000007,-3.265486399999929],[104.23573390000007,-3.268202],[104.23802170000005,-3.2660562],[104.22801670000007,-3.260722399999963],[104.22789510000007,-3.2587271],[104.23390610000007,-3.255913299999975],[104.21082360000008,-3.245829699999945],[104.20666580000005,-3.245700399999976],[104.21294960000006,-3.237183799999968],[104.22344860000004,-3.227048199999956],[104.226531,-3.222465799999952],[104.23007380000007,-3.212210099999936],[104.23355020000008,-3.188792199999966],[104.23566720000008,-3.152726899999948],[104.24498180000006,-3.096207099999958],[104.25370390000006,-3.070761599999969],[104.25707840000007,-3.056419],[104.25710240000006,-3.046527899999944],[104.25552520000008,-3.043487299999924],[104.25035740000004,-3.041683399999954],[104.24204350000008,-3.032943399999965],[104.23892110000008,-3.031304],[104.23235190000008,-3.030987699999969],[104.22189560000004,-3.044106899999974],[104.19792970000009,-3.060719099999972],[104.169091,-3.089486099999931],[104.16250680000007,-3.094248799999946],[104.15424360000009,-3.094444899999928],[104.15363610000009,-3.090612399999941],[104.16157050000004,-3.0819913],[104.16277320000006,-3.077649099999974],[104.16078150000004,-3.069063699999958],[104.16739880000006,-3.054794199999947]]]},"properties":{"shapeName":"Penukal Abab Lematang Ilir","shapeISO":"","shapeID":"22746128B48000328910935","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[105.29152940000006,-5.843181699999946],[105.29142710000008,-5.841582599999981],[105.29046220000004,-5.843392],[105.29152940000006,-5.843181699999946]]],[[[105.33300450000007,-5.834312799999964],[105.33340710000004,-5.832536399999981],[105.33163910000007,-5.834017499999959],[105.33300450000007,-5.834312799999964]]],[[[105.31818350000003,-5.823164799999972],[105.31105980000007,-5.8266154],[105.31083720000004,-5.8285246],[105.31373120000006,-5.8301772],[105.31629130000005,-5.829954599999951],[105.31673650000005,-5.828507599999966],[105.32185670000007,-5.828173699999979],[105.32102440000006,-5.824862699999926],[105.31818350000003,-5.823164799999972]]],[[[105.31674150000003,-5.819104099999947],[105.31645520000006,-5.820124699999951],[105.317997,-5.819965099999933],[105.31674150000003,-5.819104099999947]]],[[[105.31384810000009,-5.813737199999935],[105.31315180000007,-5.812749599999961],[105.31275490000007,-5.814273799999967],[105.31384810000009,-5.813737199999935]]],[[[105.34746960000007,-5.821470899999952],[105.347528,-5.819136599999979],[105.34583560000004,-5.819019899999944],[105.34109750000005,-5.811147],[105.34012870000004,-5.81166],[105.34195230000006,-5.8233999],[105.34280720000004,-5.822032099999944],[105.34508680000005,-5.822488],[105.346215,-5.826431299999967],[105.34872430000007,-5.823717699999975],[105.34746960000007,-5.821470899999952]]],[[[105.33256170000004,-5.807601099999943],[105.33250560000005,-5.805754499999978],[105.331522,-5.807068299999969],[105.33256170000004,-5.807601099999943]]],[[[105.24923550000005,-5.792613199999948],[105.244265,-5.794102099999975],[105.24321140000006,-5.796072],[105.24495220000006,-5.797034],[105.24605170000007,-5.795361899999932],[105.24680110000008,-5.796631],[105.24816110000006,-5.7961657],[105.24923550000005,-5.792613199999948]]],[[[105.27772040000008,-5.790049899999929],[105.27667590000004,-5.793275],[105.27878320000008,-5.7935499],[105.28024920000007,-5.7914243],[105.27772040000008,-5.790049899999929]]],[[[105.29126770000005,-5.798162099999956],[105.29098950000008,-5.795101099999954],[105.29265910000004,-5.792457599999977],[105.29140690000008,-5.7874487],[105.28834590000008,-5.790648799999929],[105.28862420000007,-5.7946837],[105.28681540000008,-5.796214199999952],[105.28695450000004,-5.798162099999956],[105.28208480000006,-5.798857799999951],[105.28375440000008,-5.804979799999956],[105.27908160000004,-5.812819899999965],[105.27240310000008,-5.815224099999966],[105.27143190000004,-5.809825399999966],[105.27351890000006,-5.805929599999956],[105.27101450000004,-5.805094799999949],[105.26895390000004,-5.808910399999945],[105.26495370000004,-5.812214799999936],[105.26405770000008,-5.815112499999941],[105.25918790000009,-5.81873],[105.253066,-5.820956199999955],[105.25056150000006,-5.820538799999952],[105.24847450000004,-5.818451799999934],[105.25017050000008,-5.8141279],[105.24569180000009,-5.8165039],[105.23638010000008,-5.826757499999928],[105.23286950000005,-5.8268031],[105.22826470000007,-5.829948899999977],[105.23241360000009,-5.830724],[105.23350780000004,-5.836195],[105.23661820000007,-5.834067299999958],[105.24868990000004,-5.832775599999934],[105.25557430000003,-5.833459499999947],[105.25751350000007,-5.835993499999972],[105.26084880000008,-5.835652499999981],[105.26218510000007,-5.837152399999979],[105.26496620000006,-5.835602299999948],[105.26797530000005,-5.837562799999944],[105.26984460000006,-5.833869799999945],[105.272261,-5.835146399999928],[105.27371990000006,-5.833915399999967],[105.27440380000007,-5.838930499999947],[105.27686570000009,-5.837973099999942],[105.28046750000004,-5.839842399999952],[105.28169850000006,-5.838155499999971],[105.28534590000004,-5.838109899999949],[105.287671,-5.833550699999932],[105.28881080000008,-5.8343713],[105.29022420000007,-5.832365299999935],[105.28823070000004,-5.828482599999973],[105.29502440000005,-5.8180585],[105.30003330000005,-5.817919399999937],[105.30284110000008,-5.820473199999981],[105.30559870000008,-5.820006399999954],[105.30573780000009,-5.8183368],[105.30712920000008,-5.819032499999935],[105.30629440000007,-5.816110599999945],[105.30824230000007,-5.814441],[105.30559870000008,-5.8079016],[105.30100720000007,-5.804840599999977],[105.29752880000007,-5.798996899999963],[105.29613750000004,-5.797744699999953],[105.29265910000004,-5.803866699999958],[105.29126770000005,-5.798162099999956]]],[[[105.31358380000006,-5.790085699999963],[105.311981,-5.783051],[105.31117950000004,-5.790263799999934],[105.30939860000007,-5.791510399999936],[105.30583670000004,-5.791243299999962],[105.306282,-5.793558499999961],[105.31419530000005,-5.798179799999957],[105.31714570000008,-5.805936],[105.32231040000005,-5.805668899999944],[105.32204330000008,-5.811456899999939],[105.32658460000005,-5.8165326],[105.32480370000007,-5.820984899999928],[105.32836560000004,-5.822498699999926],[105.33192740000004,-5.821163],[105.33183840000004,-5.814662599999963],[105.32943410000007,-5.809141699999941],[105.33050270000007,-5.8062032],[105.32703820000006,-5.806425799999943],[105.325427,-5.802819399999976],[105.31996790000005,-5.800973599999963],[105.31723470000009,-5.795161399999927],[105.317769,-5.790798099999961],[105.31358380000006,-5.790085699999963]]],[[[105.18121670000005,-5.751869299999953],[105.17701960000005,-5.752357699999948],[105.17645230000005,-5.753903299999934],[105.17826650000006,-5.755790699999977],[105.18238950000006,-5.755937299999971],[105.18326910000008,-5.754508],[105.18121670000005,-5.751869299999953]]],[[[105.17261190000005,-5.743927699999972],[105.17215380000005,-5.746332799999948],[105.17332770000007,-5.747506699999974],[105.17662040000005,-5.746934099999976],[105.17261190000005,-5.743927699999972]]],[[[105.23244530000005,-5.7317867],[105.23134690000006,-5.728811899999926],[105.22972230000005,-5.728743299999962],[105.22709080000004,-5.732267199999967],[105.23244530000005,-5.7317867]]],[[[105.21580460000007,-5.728912599999944],[105.20732580000004,-5.729820899999936],[105.20457270000009,-5.732145],[105.20421520000008,-5.734218699999929],[105.20768340000006,-5.735827699999959],[105.213582,-5.734189399999934],[105.21580460000007,-5.728912599999944]]],[[[105.22051920000007,-5.727711399999976],[105.21672920000009,-5.727747199999953],[105.22044770000008,-5.731894699999941],[105.22041190000004,-5.729499099999941],[105.22198510000004,-5.727997499999958],[105.22051920000007,-5.727711399999976]]],[[[105.24061030000007,-5.672110799999928],[105.24029560000008,-5.675142799999946],[105.24249810000003,-5.675400199999956],[105.24352780000004,-5.672597099999962],[105.24061030000007,-5.672110799999928]]],[[[105.21889380000005,-5.662928499999964],[105.21688260000008,-5.661029],[105.21241330000004,-5.662760899999967],[105.20922890000008,-5.665051399999925],[105.20811160000005,-5.6692972],[105.20475960000005,-5.672760899999957],[105.20669260000005,-5.672612],[105.21150270000004,-5.677007899999978],[105.20792720000009,-5.678688299999976],[105.20763280000006,-5.685112099999969],[105.21057890000009,-5.686094099999934],[105.21168150000005,-5.6838369],[105.21701660000008,-5.684675699999957],[105.21448030000005,-5.688682799999981],[105.21559810000008,-5.689913099999956],[105.21996260000009,-5.687621699999966],[105.22694590000003,-5.686530599999969],[105.23017870000007,-5.680302799999936],[105.23414520000006,-5.676783299999954],[105.23317450000008,-5.674583499999926],[105.22917310000008,-5.6758894],[105.22794410000006,-5.673319599999957],[105.234257,-5.671531899999934],[105.23587710000004,-5.6692972],[105.24023460000006,-5.667844699999932],[105.23498320000004,-5.667900599999939],[105.23012290000008,-5.662537399999962],[105.21889380000005,-5.662928499999964]]],[[[105.22376430000008,-5.616942499999936],[105.21313350000008,-5.6220705],[105.21212690000004,-5.623916],[105.21316150000007,-5.637611299999946],[105.21472730000005,-5.636492799999928],[105.21920110000008,-5.636134899999945],[105.21982740000004,-5.637298099999953],[105.23020650000007,-5.635374399999932],[105.233875,-5.640385],[105.24219620000008,-5.641369199999929],[105.24089880000008,-5.638953399999934],[105.24183830000004,-5.633719099999951],[105.23825930000004,-5.634032299999944],[105.23432240000005,-5.632198],[105.22376430000008,-5.616942499999936]]],[[[105.246875,-5.593374199999971],[105.24222230000004,-5.591361],[105.24428030000007,-5.595163699999944],[105.253183,-5.598698],[105.246875,-5.593374199999971]]],[[[105.28087390000007,-5.562211499999933],[105.279545,-5.560723799999948],[105.27715170000005,-5.562956],[105.27162570000007,-5.561180799999931],[105.26967880000007,-5.562154299999975],[105.26933520000006,-5.567250799999954],[105.27162570000007,-5.569970799999965],[105.27010820000004,-5.571803299999942],[105.27589190000003,-5.573206199999959],[105.27735220000005,-5.571373799999947],[105.28244870000009,-5.570772499999975],[105.28201920000004,-5.568338799999935],[105.27844020000003,-5.568625099999963],[105.27898570000008,-5.563967299999945],[105.28183780000006,-5.563408],[105.28087390000007,-5.562211499999933]]],[[[105.263789,-5.544333],[105.26297980000004,-5.542855299999928],[105.26242860000008,-5.543887299999938],[105.263789,-5.544333]]],[[[105.26615510000005,-5.518716299999937],[105.266054,-5.519874099999981],[105.26724260000009,-5.519741],[105.26615510000005,-5.518716299999937]]],[[[105.27250140000007,-5.514200699999947],[105.27084780000007,-5.510044299999947],[105.27089240000004,-5.514603],[105.27250140000007,-5.514200699999947]]],[[[105.21946010000005,-5.365517899999929],[105.21825590000009,-5.361085399999979],[105.21279180000005,-5.354426799999942],[105.20638630000008,-5.3530492],[105.20369080000006,-5.351429399999972],[105.201899,-5.348092399999928],[105.19597280000005,-5.349452099999951],[105.19350010000005,-5.339107],[105.19126940000007,-5.338230899999928],[105.18863980000003,-5.334111199999938],[105.18554,-5.3347876],[105.18055260000006,-5.333438199999932],[105.17778790000006,-5.327967499999943],[105.16997,-5.325943299999949],[105.16404720000008,-5.321512699999971],[105.10894850000005,-5.311336499999925],[105.10850650000003,-5.3042675],[105.11273640000007,-5.293925],[105.11527010000003,-5.292372899999975],[105.11405120000006,-5.2912261],[105.11824030000008,-5.288863699999979],[105.124662,-5.289036399999929],[105.12535550000007,-5.285556799999938],[105.134031,-5.274420699999951],[105.14140190000006,-5.258729899999935],[105.14398550000004,-5.259644599999945],[105.14683670000005,-5.2587413],[105.14698210000006,-5.256517499999973],[105.15350660000007,-5.263835499999971],[105.15306660000005,-5.269529699999964],[105.15962020000006,-5.274043799999959],[105.17677510000004,-5.277155899999968],[105.17539060000007,-5.271661199999926],[105.17882230000004,-5.2704459],[105.17841710000005,-5.265386599999943],[105.17639660000003,-5.259417],[105.16771190000009,-5.245961299999976],[105.16643790000006,-5.238143599999944],[105.16147920000009,-5.229434],[105.16119620000006,-5.214463499999965],[105.16254170000008,-5.210349],[105.173754,-5.197621599999934],[105.18545160000008,-5.1979258],[105.189219,-5.192435699999976],[105.20023460000004,-5.188527499999964],[105.20234690000007,-5.1848826],[105.20217910000008,-5.180419399999948],[105.21013270000009,-5.180155399999933],[105.24016580000006,-5.171163599999943],[105.24037280000005,-5.169983199999933],[105.23429470000008,-5.1657855],[105.22396510000004,-5.161437199999966],[105.21999430000005,-5.156149199999959],[105.22207250000008,-5.153367399999979],[105.21401460000004,-5.156059499999969],[105.21058030000006,-5.154832899999974],[105.20764060000005,-5.1491014],[105.20855920000008,-5.140208799999925],[105.20590840000006,-5.135128299999963],[105.19323630000008,-5.127394799999934],[105.18551860000008,-5.124741],[105.18436610000003,-5.122200599999928],[105.17964920000009,-5.120778099999939],[105.17745590000004,-5.123793599999942],[105.17701370000003,-5.135679799999934],[105.17079770000004,-5.137771699999973],[105.16192890000008,-5.138351499999942],[105.15715410000007,-5.142060399999934],[105.15345820000005,-5.139241399999946],[105.15015040000009,-5.148291399999948],[105.14709970000007,-5.15133],[105.14765140000009,-5.156377299999974],[105.14367670000007,-5.156888199999969],[105.14388860000008,-5.154687799999977],[105.14155210000007,-5.1531978],[105.13758760000007,-5.152914799999962],[105.13277320000009,-5.150360599999942],[105.13001240000006,-5.150787],[105.116067,-5.154409599999951],[105.108917,-5.154836699999976],[105.09950240000006,-5.160232599999972],[105.09466790000005,-5.165250699999945],[105.09348240000008,-5.159717699999931],[105.08916920000007,-5.158852499999966],[105.08915590000004,-5.157829499999934],[105.09098330000006,-5.151857299999961],[105.09872410000008,-5.140921499999934],[105.10004090000007,-5.136986899999954],[105.095314,-5.132151799999974],[105.08955650000007,-5.144552799999929],[105.086386,-5.143645],[105.08506760000006,-5.131857599999933],[105.08642130000004,-5.125405099999966],[105.086246,-5.124318599999981],[105.08381340000005,-5.124245],[105.08071810000007,-5.129419199999973],[105.07909750000005,-5.138584299999934],[105.08015910000006,-5.149208599999952],[105.07469250000008,-5.1597359],[105.07610770000008,-5.159977499999968],[105.07084560000004,-5.161031799999932],[105.06640780000004,-5.167681499999958],[105.05846740000004,-5.171138],[105.05239130000007,-5.183830899999975],[105.041418,-5.198279],[105.03785560000006,-5.209159599999964],[105.05170620000007,-5.206889399999966],[105.06641320000006,-5.215520499999968],[105.06481820000005,-5.228033],[105.06309450000003,-5.228981099999942],[105.06573510000004,-5.231759099999977],[105.06538030000007,-5.236622399999931],[105.06146410000008,-5.243429699999979],[105.05549640000004,-5.243814],[105.05104320000004,-5.247395899999958],[105.04531430000009,-5.248931299999981],[105.04373810000004,-5.258758899999975],[105.04067090000007,-5.261295899999936],[105.032655,-5.282389599999931],[105.03254330000004,-5.293990099999974],[105.03742190000008,-5.319985299999928],[105.03485430000006,-5.320944899999972],[105.03391240000008,-5.3229247],[105.03493630000008,-5.323873099999958],[105.05163610000005,-5.321803899999964],[105.05440840000006,-5.324131299999976],[105.05525180000006,-5.332154599999967],[105.05431460000005,-5.335291099999949],[105.05776220000007,-5.336328599999945],[105.06379110000006,-5.346712],[105.06251970000005,-5.347703299999978],[105.06374410000006,-5.347797599999979],[105.06200590000009,-5.358445399999937],[105.07246510000004,-5.361200699999927],[105.07365560000005,-5.371478399999944],[105.06806330000006,-5.372741699999949],[105.06533390000004,-5.389757699999961],[105.06335620000004,-5.392259499999966],[105.06026690000004,-5.391493599999933],[105.06003520000007,-5.385345099999938],[105.04367260000004,-5.385891099999981],[105.04365330000007,-5.384547899999973],[105.02928930000007,-5.383593499999961],[105.02259790000005,-5.386514399999953],[105.02196720000006,-5.388217299999951],[105.01721050000003,-5.388264699999979],[105.01661020000006,-5.3920761],[105.00608070000004,-5.387232299999937],[105.00305840000004,-5.390572799999973],[105.00045060000008,-5.390906799999925],[104.99523160000007,-5.396779399999957],[104.99191140000005,-5.396472599999925],[104.98961070000007,-5.398959199999979],[104.97489430000007,-5.400037499999939],[104.97324390000006,-5.398954],[104.97399750000005,-5.4029303],[104.99039580000004,-5.4026573],[104.98949030000006,-5.4050326],[104.99217480000004,-5.407133099999953],[104.99083250000007,-5.407817499999965],[104.99403510000008,-5.407321899999943],[104.995966,-5.405386699999951],[104.99907440000004,-5.409493099999963],[104.99027250000006,-5.4185778],[104.98494530000005,-5.415865],[104.98428830000006,-5.420159599999977],[104.98,-5.420443299999931],[104.97643090000008,-5.418765],[104.970618,-5.424874399999965],[104.96808330000005,-5.424571199999946],[104.96285070000005,-5.427398499999981],[104.96033720000008,-5.426238],[104.95754280000006,-5.427761699999962],[104.95034740000006,-5.427821599999959],[104.95054870000007,-5.430999399999962],[104.94790840000007,-5.435744499999942],[104.94514250000009,-5.4374241],[104.94346590000004,-5.4426313],[104.94556060000008,-5.448930699999949],[104.94432630000006,-5.450350399999934],[104.94500890000006,-5.451975899999979],[104.93751390000006,-5.458252699999946],[104.94015320000005,-5.467029799999978],[104.930849,-5.475343799999962],[104.931938,-5.481139199999973],[104.93114110000005,-5.487984199999971],[104.92890240000008,-5.496147299999961],[104.92485330000005,-5.501169799999957],[104.93704760000008,-5.513895399999967],[104.937214,-5.525989799999934],[104.94538610000006,-5.532835599999942],[104.94697730000007,-5.5496335],[104.94421,-5.562147599999946],[104.94437050000005,-5.569009199999925],[104.95137840000007,-5.575599699999941],[104.95669390000006,-5.576037299999939],[104.95669380000004,-5.577217599999926],[104.97160560000003,-5.585781499999939],[104.97969870000009,-5.586400899999944],[104.98668810000004,-5.5904412],[104.99302790000007,-5.5912844],[105.00281790000008,-5.596636],[105.01052450000009,-5.602740899999958],[105.01769370000005,-5.612167499999941],[105.02683450000006,-5.616925399999957],[105.04366650000009,-5.633132],[105.04657950000006,-5.639191899999958],[105.05482480000006,-5.644937],[105.062802,-5.655709599999966],[105.07463290000004,-5.6642371],[105.07580690000003,-5.667658],[105.074777,-5.669408],[105.07669410000005,-5.672847899999965],[105.093562,-5.673438099999942],[105.09290060000006,-5.678398399999935],[105.09435240000005,-5.688766699999974],[105.08680490000006,-5.709154399999932],[105.08650640000008,-5.719773399999951],[105.08330630000006,-5.721677299999953],[105.08330690000008,-5.726085199999943],[105.08640730000008,-5.725884399999927],[105.08930870000006,-5.728890199999967],[105.09381,-5.735901099999978],[105.09846190000007,-5.747891299999935],[105.10896520000006,-5.751939399999969],[105.11837590000005,-5.7720894],[105.14528370000005,-5.778097499999944],[105.17209070000007,-5.780995],[105.17211130000004,-5.800406199999941],[105.17834240000008,-5.801670399999978],[105.179826,-5.800564899999927],[105.17797750000005,-5.797765699999957],[105.18193860000008,-5.802149399999962],[105.18626940000007,-5.803945099999964],[105.18811790000007,-5.803416899999945],[105.18827630000004,-5.800512099999935],[105.19155080000007,-5.8031],[105.19347340000007,-5.801322599999935],[105.19486480000006,-5.80254],[105.19556050000006,-5.798018099999979],[105.19334650000008,-5.797871399999963],[105.19324090000003,-5.796234099999936],[105.19429720000005,-5.796181299999944],[105.19643010000004,-5.788626399999941],[105.21008870000009,-5.7842452],[105.21312630000006,-5.787756799999954],[105.21973530000008,-5.78967],[105.21896160000006,-5.785195899999962],[105.22217010000008,-5.778713],[105.21716590000005,-5.778224399999942],[105.21436670000008,-5.774580199999946],[105.21469160000004,-5.770364899999947],[105.21109220000005,-5.770196599999963],[105.20547390000007,-5.766538699999955],[105.203751,-5.772995699999967],[105.20021240000005,-5.772414799999979],[105.19926170000008,-5.769615599999952],[105.19746610000004,-5.76951],[105.19773010000006,-5.7715697],[105.19138640000006,-5.769669199999953],[105.18531870000004,-5.771886599999959],[105.17803030000005,-5.770777499999951],[105.17637490000004,-5.778064699999959],[105.17343540000007,-5.777960299999961],[105.17280170000004,-5.775530799999956],[105.16223880000007,-5.7694648],[105.162606,-5.765718799999945],[105.16407510000005,-5.766526799999951],[105.16650090000007,-5.761905],[105.16450670000006,-5.759396399999957],[105.16296880000004,-5.759536199999957],[105.16331830000007,-5.757579],[105.16101150000009,-5.757439199999965],[105.15751640000008,-5.754573199999925],[105.15653780000008,-5.755412],[105.15506980000004,-5.753524599999935],[105.15422140000004,-5.746692899999971],[105.15744650000005,-5.747163499999942],[105.15807560000007,-5.744037899999967],[105.16095820000004,-5.741527499999961],[105.16988890000005,-5.738510199999951],[105.17210450000005,-5.734214399999928],[105.17236310000004,-5.7278481],[105.17486360000004,-5.727690799999948],[105.17642550000005,-5.724350699999945],[105.18035380000003,-5.721198],[105.18454050000008,-5.723034299999938],[105.18610950000004,-5.7197964],[105.19497060000003,-5.719435199999964],[105.19820250000004,-5.717158199999972],[105.19907050000006,-5.714341799999943],[105.20077750000007,-5.714074099999948],[105.20325580000008,-5.715741599999944],[105.20419450000009,-5.718454699999938],[105.20284050000004,-5.719864099999938],[105.20341420000005,-5.721958],[105.21011110000006,-5.724932899999942],[105.20820510000004,-5.7288913],[105.20999140000004,-5.728844299999935],[105.21719630000007,-5.719297299999937],[105.21874760000009,-5.719485299999974],[105.21335910000005,-5.707284499999957],[105.20652520000004,-5.707639099999938],[105.205397,-5.706322799999953],[105.20483290000004,-5.707921099999965],[105.20356370000007,-5.707780099999979],[105.20335670000009,-5.706401],[105.205771,-5.704256199999975],[105.20283440000009,-5.702435399999956],[105.20012570000006,-5.7030625],[105.19854750000007,-5.705685599999981],[105.19297260000008,-5.702965499999948],[105.19346510000008,-5.694315199999949],[105.18954380000008,-5.690564399999971],[105.186475,-5.691587299999981],[105.18541820000007,-5.690057699999954],[105.18875580000008,-5.689869699999974],[105.18532420000008,-5.687486099999944],[105.18367890000007,-5.684181599999931],[105.18081130000007,-5.684557699999971],[105.18029420000005,-5.682583299999976],[105.18954380000008,-5.683574299999975],[105.19090780000005,-5.679994],[105.18732750000004,-5.674708799999962],[105.18511110000009,-5.676754699999947],[105.18340620000004,-5.676072699999963],[105.18255380000005,-5.671299],[105.17786090000004,-5.670261499999981],[105.182606,-5.6638832],[105.18459960000007,-5.664649899999972],[105.18714830000005,-5.662503699999945],[105.18984730000005,-5.663071199999933],[105.19256720000004,-5.661333599999978],[105.19268430000005,-5.657397299999957],[105.194669,-5.658022399999936],[105.20643260000008,-5.653469199999961],[105.208724,-5.646267699999953],[105.20555970000004,-5.642994299999941],[105.20294090000004,-5.642448699999932],[105.19099550000004,-5.648370499999942],[105.18812640000004,-5.648325599999964],[105.18983370000007,-5.647045099999957],[105.18633660000006,-5.642184099999952],[105.18715490000005,-5.637819599999943],[105.18838250000005,-5.639047099999971],[105.19261060000008,-5.638501499999961],[105.19192870000006,-5.636046499999964],[105.18574730000006,-5.632988799999964],[105.18729860000008,-5.632988799999964],[105.18743960000006,-5.631437499999947],[105.18565460000008,-5.631136399999946],[105.18795670000009,-5.628193899999928],[105.184619,-5.624245199999962],[105.18497270000006,-5.621588899999949],[105.183214,-5.620949399999972],[105.18442710000005,-5.620225],[105.18192760000005,-5.619735],[105.18047170000006,-5.617088],[105.17678910000006,-5.618588299999942],[105.175209,-5.617450599999927],[105.17613590000008,-5.617540399999939],[105.17290360000004,-5.611409299999934],[105.16624020000006,-5.604238],[105.16724760000005,-5.600712199999975],[105.17228440000008,-5.5999567],[105.17379540000007,-5.596430899999973],[105.17559010000008,-5.595918199999971],[105.17677880000008,-5.592852599999958],[105.17533140000006,-5.588365899999928],[105.19142540000007,-5.587272899999959],[105.20362340000008,-5.576609299999973],[105.23574470000005,-5.591564799999958],[105.23919560000007,-5.589203599999962],[105.23992210000006,-5.586479199999928],[105.24419450000005,-5.5879356],[105.24517690000005,-5.5774706],[105.24700570000005,-5.5772161],[105.24870260000006,-5.574591299999952],[105.24760990000004,-5.571601599999951],[105.24112240000005,-5.571183099999928],[105.23859560000005,-5.565013199999953],[105.24204390000006,-5.563943699999925],[105.24481410000004,-5.557395799999938],[105.24866620000006,-5.563366499999972],[105.25249890000003,-5.562226199999941],[105.25324280000007,-5.559176],[105.25212690000006,-5.555977],[105.25354040000008,-5.5512901],[105.26142630000004,-5.544743299999936],[105.26083110000008,-5.543776199999968],[105.25354040000008,-5.544148199999938],[105.25249890000003,-5.547719099999938],[105.24840710000007,-5.546305599999926],[105.24473720000009,-5.547052899999926],[105.24440130000005,-5.541522699999973],[105.24942440000007,-5.535668299999941],[105.24900430000008,-5.529519299999947],[105.25031070000006,-5.528556699999967],[105.24554330000007,-5.523550299999954],[105.24542660000009,-5.520201],[105.24764670000008,-5.516381099999933],[105.24459940000008,-5.519686799999931],[105.243016,-5.516482499999938],[105.24495,-5.516982199999973],[105.24517920000005,-5.514657299999953],[105.24629470000008,-5.515400899999975],[105.24912240000003,-5.513966699999969],[105.25189510000007,-5.5175317],[105.25144870000008,-5.519767299999955],[105.25495590000008,-5.525750199999948],[105.26009670000008,-5.520753099999979],[105.26543950000007,-5.520399],[105.26365130000005,-5.514182],[105.25732990000006,-5.509176399999944],[105.257066,-5.503675199999975],[105.25470910000007,-5.500358199999937],[105.25289410000005,-5.488967899999977],[105.25211450000006,-5.491623],[105.25024940000009,-5.491503399999942],[105.25038850000004,-5.4841663],[105.23930270000005,-5.491982199999939],[105.22836040000004,-5.494740399999955],[105.22891750000008,-5.492219899999952],[105.23414810000008,-5.489895899999965],[105.23052640000009,-5.4872],[105.23140520000004,-5.485281199999974],[105.22940930000004,-5.484920899999963],[105.23307070000004,-5.480650699999956],[105.23242630000004,-5.476778499999966],[105.22402490000007,-5.463168199999927],[105.22413950000004,-5.457964799999957],[105.22196990000003,-5.4556719],[105.22116120000004,-5.451721799999973],[105.21772870000007,-5.447365699999978],[105.21404420000005,-5.447250299999951],[105.21426770000005,-5.445684899999947],[105.21277950000007,-5.445489499999951],[105.21110930000003,-5.442486299999928],[105.207576,-5.443532],[105.20590270000008,-5.441910699999937],[105.204787,-5.434765],[105.20623610000007,-5.432124899999963],[105.20459380000005,-5.421264899999926],[105.20224220000006,-5.420007299999952],[105.19536290000008,-5.420113699999945],[105.19576180000007,-5.416687199999956],[105.18988990000008,-5.416168899999946],[105.18683130000005,-5.419617799999969],[105.18427160000005,-5.419200399999966],[105.18143130000004,-5.417116699999951],[105.17569630000008,-5.408120199999928],[105.179283,-5.4023437],[105.18275720000008,-5.399519199999929],[105.18512040000007,-5.399415599999941],[105.19003740000005,-5.394511499999965],[105.19109520000006,-5.390955599999927],[105.19233710000009,-5.391985599999941],[105.19380030000008,-5.391182799999967],[105.19753420000006,-5.3850977],[105.19866760000008,-5.3896864],[105.20311620000007,-5.387399],[105.20749270000005,-5.389548399999967],[105.20800240000005,-5.387254199999973],[105.20604680000008,-5.381891499999938],[105.20713940000007,-5.3763531],[105.20951260000004,-5.373312399999975],[105.211576,-5.373162199999967],[105.21128890000006,-5.369811],[105.21480450000007,-5.369249799999977],[105.21520670000007,-5.367324499999938],[105.21946010000005,-5.365517899999929]]]]},"properties":{"shapeName":"Pesawaran","shapeISO":"","shapeID":"22746128B42035761517077","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[103.850717,-5.125770899999964],[103.85403980000007,-5.119171899999969],[103.85178590000004,-5.115059099999939],[103.84679010000008,-5.115779399999951],[103.83930810000004,-5.119520399999942],[103.83893630000006,-5.122308799999928],[103.84151550000007,-5.124307099999953],[103.850717,-5.125770899999964]]],[[[103.64191990000006,-4.937266099999931],[103.64527610000005,-4.946312199999966],[103.65304710000004,-4.950841299999979],[103.65912340000006,-4.9614943],[103.65883970000004,-4.96607],[103.65234810000004,-4.974549199999956],[103.65316810000007,-4.987022799999977],[103.66482580000007,-4.991714899999977],[103.67031520000006,-4.990532199999961],[103.67328210000005,-4.984297699999956],[103.680733,-4.976326699999959],[103.68977930000005,-4.962846299999967],[103.69227470000004,-4.963466299999936],[103.69758080000008,-4.960528299999964],[103.71030930000006,-4.961261699999966],[103.71630910000005,-4.967948199999967],[103.71856690000004,-4.968151599999942],[103.72730080000008,-4.975458299999957],[103.72863660000007,-4.974285099999975],[103.73834160000007,-4.980842899999971],[103.74619980000006,-4.9888533],[103.74626010000009,-4.993255899999951],[103.748572,-4.997263],[103.74663330000004,-5.000041099999976],[103.74808510000008,-5.004430199999945],[103.74536590000008,-5.006959299999949],[103.74868070000008,-5.011095599999976],[103.74904770000006,-5.014991599999973],[103.74838850000003,-5.017102199999954],[103.74173660000008,-5.020468499999936],[103.738829,-5.023607299999981],[103.73956540000006,-5.028292399999941],[103.74343770000007,-5.032225199999971],[103.74574360000008,-5.041274099999953],[103.74843730000003,-5.044182599999942],[103.75376420000003,-5.046915299999966],[103.76414510000006,-5.044318199999964],[103.768367,-5.041230799999937],[103.76941510000006,-5.033903499999951],[103.77302,-5.029722099999958],[103.78130280000005,-5.030759699999976],[103.78647710000007,-5.034025499999927],[103.78752920000005,-5.032842599999981],[103.78700980000008,-5.034949],[103.78966590000005,-5.039856099999952],[103.788107,-5.039545699999962],[103.78806210000005,-5.0411013],[103.79381210000008,-5.046529699999951],[103.796195,-5.047257699999932],[103.79638350000005,-5.045322499999941],[103.79863020000005,-5.045444299999929],[103.80535050000009,-5.048866499999974],[103.81503530000003,-5.051217899999926],[103.81568760000005,-5.053154599999971],[103.81958140000006,-5.054039099999954],[103.83820980000007,-5.066335399999957],[103.83842580000004,-5.070616],[103.84157010000007,-5.071408599999927],[103.84066240000004,-5.074446],[103.84310230000006,-5.0751106],[103.84479330000005,-5.084527],[103.852024,-5.091985299999976],[103.85420540000007,-5.098646899999949],[103.86315580000007,-5.101801399999943],[103.86711930000007,-5.110699499999953],[103.875806,-5.113193099999933],[103.88035540000004,-5.108886699999971],[103.88317120000005,-5.110736699999961],[103.88147620000007,-5.1134834],[103.88622520000007,-5.117435299999954],[103.89292070000005,-5.115601699999957],[103.89522890000006,-5.118843799999979],[103.91216080000004,-5.127845499999978],[103.92381910000006,-5.141451699999948],[103.92677960000003,-5.142580499999951],[103.92851160000004,-5.138848799999948],[103.92722230000004,-5.142825699999946],[103.92460380000006,-5.143014599999958],[103.93046030000005,-5.149711099999934],[103.93544440000005,-5.162235099999975],[103.93695440000005,-5.172813899999937],[103.93469390000007,-5.182723499999952],[103.93589260000005,-5.182788799999969],[103.93075320000008,-5.183313799999951],[103.93102290000007,-5.1908759],[103.91974330000005,-5.203573899999981],[103.90729150000004,-5.207767299999944],[103.90338910000008,-5.211514099999931],[103.90137760000005,-5.221930399999962],[103.90484560000004,-5.230013499999927],[103.91428890000009,-5.237247899999943],[103.91941860000009,-5.233910099999946],[103.92588030000007,-5.234681],[103.92995850000005,-5.233530299999927],[103.929088,-5.2350574],[103.94091620000006,-5.235792099999969],[103.95276440000004,-5.243145899999945],[103.97860260000004,-5.251883899999939],[103.98698440000004,-5.257043199999941],[104.00271,-5.273937799999942],[104.00736480000006,-5.281832699999939],[104.00854420000007,-5.289333099999965],[104.00728420000007,-5.295047599999975],[104.002574,-5.298251],[104.00010070000008,-5.302995799999962],[103.99225890000008,-5.308482499999968],[103.99530630000004,-5.318247199999973],[104.00149280000005,-5.3240009],[104.01547230000006,-5.325769199999968],[104.02752310000005,-5.334019499999954],[104.03097930000007,-5.339497399999971],[104.03202860000005,-5.345269899999948],[104.02685240000005,-5.352099899999928],[104.02688370000004,-5.358874799999967],[104.03064660000007,-5.363909899999953],[104.04282350000005,-5.368289],[104.05473060000008,-5.375616199999968],[104.05849950000004,-5.379728599999964],[104.05895180000005,-5.380869],[104.05773960000005,-5.3803153],[104.06297430000006,-5.389395899999954],[104.063732,-5.394082499999968],[104.06916660000007,-5.400178399999959],[104.07008730000007,-5.403436099999965],[104.06852510000004,-5.406020699999942],[104.069139,-5.407740199999978],[104.077995,-5.4081066],[104.09214560000004,-5.416739099999972],[104.10835850000007,-5.429101199999934],[104.10755130000007,-5.431895099999963],[104.11137330000008,-5.437590299999954],[104.11171170000006,-5.445930699999963],[104.12069820000005,-5.4574316],[104.14770840000006,-5.467095],[104.17671570000005,-5.481011499999966],[104.18937920000008,-5.488771799999938],[104.21372210000004,-5.510034499999961],[104.21585880000003,-5.516405499999962],[104.21260790000008,-5.522335099999964],[104.21399270000006,-5.525602399999968],[104.22301980000009,-5.524456499999928],[104.21990670000008,-5.525067499999977],[104.23496,-5.531156799999962],[104.23948840000008,-5.531741499999953],[104.23924310000007,-5.530511],[104.24043030000007,-5.531806099999926],[104.23876590000003,-5.533513599999935],[104.25555530000008,-5.541384799999946],[104.26114450000006,-5.546221399999979],[104.27304740000005,-5.552454699999942],[104.29905530000008,-5.5760909],[104.31197710000004,-5.592442499999947],[104.31893710000008,-5.606009599999936],[104.32024190000004,-5.615200899999934],[104.31767670000005,-5.624960399999964],[104.312301,-5.631419],[104.30566020000003,-5.6344524],[104.30018510000008,-5.631276799999966],[104.30152250000003,-5.628135],[104.29939010000004,-5.629006499999946],[104.29800120000004,-5.636006399999928],[104.30103030000004,-5.6418707],[104.37346360000004,-5.676626],[104.41602510000007,-5.707203299999946],[104.42139550000007,-5.711795399999971],[104.42354160000008,-5.716759499999966],[104.42402640000006,-5.723442699999964],[104.42128260000004,-5.725404599999933],[104.44495790000008,-5.746196699999928],[104.44762290000006,-5.750607399999978],[104.44807780000008,-5.756506099999967],[104.452811,-5.764086299999974],[104.47015980000003,-5.7782541],[104.49777350000005,-5.807245299999977],[104.53987860000007,-5.839445],[104.56535340000005,-5.867388099999971],[104.57059720000007,-5.8753974],[104.57476820000005,-5.885703599999943],[104.57642480000004,-5.893483899999978],[104.57624290000007,-5.903666399999963],[104.57109670000006,-5.911161599999957],[104.56663170000007,-5.9145732],[104.56094590000004,-5.915003699999943],[104.55767860000009,-5.911653699999931],[104.55505360000006,-5.912949599999934],[104.55336230000006,-5.918729399999961],[104.55618460000005,-5.925878299999965],[104.57236970000008,-5.933256099999937],[104.58452140000009,-5.943141099999934],[104.58768370000007,-5.942495099999974],[104.59072890000004,-5.938698699999975],[104.59404990000007,-5.937407199999939],[104.64286870000007,-5.938551099999927],[104.65903110000005,-5.936815499999966],[104.65664210000006,-5.935279699999967],[104.65745770000007,-5.931326799999965],[104.65935070000006,-5.93036],[104.65600090000004,-5.926223799999946],[104.65719820000004,-5.922180899999944],[104.65607430000006,-5.919882499999972],[104.66005290000004,-5.916447399999981],[104.65940460000007,-5.914827699999933],[104.65605890000006,-5.913649699999951],[104.65886950000004,-5.910801799999945],[104.65600520000004,-5.910528699999929],[104.65745850000008,-5.9084942],[104.65467190000004,-5.905326299999956],[104.65746840000008,-5.900036],[104.65235890000008,-5.8962063],[104.65282680000007,-5.894225499999948],[104.65054950000007,-5.893554599999959],[104.65037140000004,-5.889112799999964],[104.64850410000008,-5.888315599999942],[104.647617,-5.883041099999957],[104.64381110000005,-5.882278799999938],[104.64309370000007,-5.879700199999945],[104.64505360000004,-5.877259],[104.64099460000006,-5.876066199999968],[104.64252270000009,-5.868600199999946],[104.63825920000005,-5.861360499999932],[104.64050760000003,-5.857110199999966],[104.64064780000007,-5.851610199999925],[104.63564580000008,-5.8460617],[104.63366180000008,-5.840497],[104.63848550000006,-5.835995099999934],[104.63904210000004,-5.828279],[104.64037940000009,-5.826199299999928],[104.64536770000007,-5.823262399999976],[104.65306660000005,-5.822299299999941],[104.65418020000004,-5.820454499999926],[104.64789220000006,-5.816732599999966],[104.642394,-5.810586799999953],[104.637558,-5.809443899999962],[104.63091210000005,-5.802347399999974],[104.62797490000008,-5.801422699999932],[104.62054290000003,-5.802973799999961],[104.61472320000007,-5.798672899999929],[104.61058530000008,-5.793242299999974],[104.60835990000004,-5.787179899999956],[104.604037,-5.784490199999937],[104.60228390000003,-5.77803],[104.59417790000003,-5.770787299999938],[104.59205040000006,-5.763096499999961],[104.58744910000007,-5.755114499999934],[104.58831480000003,-5.751107699999977],[104.59022380000005,-5.7503492],[104.60092390000005,-5.753432399999951],[104.60968610000003,-5.751412199999947],[104.61301890000004,-5.749216199999978],[104.61440130000005,-5.7416274],[104.61199820000007,-5.731340199999977],[104.61459980000006,-5.725507199999981],[104.612159,-5.723081099999945],[104.61151440000003,-5.717309199999931],[104.61615480000006,-5.706954399999972],[104.62165910000004,-5.7011504],[104.62906730000009,-5.698088499999926],[104.629198,-5.694497299999966],[104.62476780000009,-5.690134099999966],[104.62226180000005,-5.684008199999937],[104.61227450000007,-5.6763123],[104.60921480000007,-5.669769799999926],[104.60521930000004,-5.665244],[104.58878420000008,-5.655942099999947],[104.58392210000005,-5.647824199999945],[104.58272480000005,-5.643119299999967],[104.583612,-5.639474299999961],[104.57641980000005,-5.634674399999938],[104.57057010000005,-5.625588],[104.55304020000005,-5.622453899999925],[104.54821750000008,-5.616253599999936],[104.53962170000005,-5.622660599999961],[104.53693050000004,-5.623183199999971],[104.53255860000007,-5.620194399999946],[104.53002430000004,-5.61187],[104.53873410000006,-5.605345599999964],[104.53958970000008,-5.601999199999966],[104.53510130000006,-5.595943699999964],[104.53034010000005,-5.5928553],[104.51996340000005,-5.589219299999968],[104.51697640000003,-5.585806499999933],[104.50959940000007,-5.585556099999962],[104.50912880000004,-5.574293299999965],[104.50733350000007,-5.572147899999948],[104.49999820000005,-5.568468899999971],[104.48612080000004,-5.557755499999928],[104.48772590000004,-5.546603],[104.48133310000009,-5.54259],[104.473616,-5.534496],[104.45525330000004,-5.528599499999928],[104.45217130000003,-5.521224099999927],[104.44932470000003,-5.520660599999928],[104.44075030000005,-5.523203599999931],[104.43937020000004,-5.519520599999964],[104.43144340000003,-5.5106208],[104.43102380000005,-5.498616299999981],[104.41913260000007,-5.488853199999937],[104.41390130000008,-5.482032],[104.41406750000004,-5.463293299999975],[104.410985,-5.455501599999934],[104.39663240000004,-5.438137199999971],[104.382071,-5.423650699999939],[104.37476270000008,-5.411988399999927],[104.36216750000006,-5.399704199999974],[104.348983,-5.381569499999955],[104.33371160000007,-5.369537799999932],[104.33200110000007,-5.354610199999968],[104.32593670000006,-5.349167799999975],[104.31513740000008,-5.345772499999953],[104.30119390000004,-5.326857199999949],[104.28652410000007,-5.3144204],[104.27462320000006,-5.293718699999943],[104.26146580000005,-5.282830099999956],[104.25374530000005,-5.258876599999951],[104.24761230000007,-5.2532518],[104.24360380000007,-5.246186399999942],[104.222725,-5.219281699999954],[104.20459340000008,-5.203392799999961],[104.17414920000004,-5.198604499999931],[104.144709,-5.190903599999956],[104.13009540000007,-5.181268199999977],[104.10894820000004,-5.162343799999974],[104.097449,-5.154664899999943],[104.08358990000005,-5.141004499999951],[104.07933760000009,-5.128615199999956],[104.08255630000008,-5.117385399999932],[104.08631610000003,-5.115798899999959],[104.083089,-5.115893699999958],[104.07932430000005,-5.109231899999941],[104.05825710000005,-5.092099],[104.04333520000006,-5.090702599999929],[104.03436,-5.084275899999966],[104.029488,-5.083505099999968],[104.01683410000004,-5.093029399999978],[104.00877980000007,-5.082099199999959],[104.01221190000007,-5.078287099999955],[104.01275,-5.074928499999942],[104.01737170000007,-5.070038599999975],[104.01780070000007,-5.058139499999925],[104.01886320000006,-5.053125499999965],[104.0218,-5.049627499999929],[104.02269890000008,-5.043803699999955],[104.01815680000004,-5.033485199999973],[104.01214220000008,-5.024485099999936],[103.99583560000008,-5.015921399999968],[103.98159660000005,-5.001607899999954],[103.97408780000006,-4.997627799999975],[103.95664020000004,-4.993567699999971],[103.94059030000005,-4.977282399999979],[103.938779,-4.976738199999943],[103.935827,-4.980586599999981],[103.93158420000009,-4.9828048],[103.92143440000007,-4.975696899999946],[103.89592690000006,-4.966980499999977],[103.88969030000004,-4.960363699999959],[103.872805,-4.9649417],[103.86085770000005,-4.953272],[103.85875160000006,-4.949914799999931],[103.86016550000005,-4.946411099999978],[103.85819530000003,-4.941899199999966],[103.85511190000005,-4.939921],[103.852524,-4.941228],[103.83851580000004,-4.917803499999934],[103.82710480000009,-4.913866],[103.82008790000003,-4.906214699999964],[103.817624,-4.875317799999948],[103.80633350000005,-4.880818499999975],[103.79290340000006,-4.9006472],[103.79322210000004,-4.935108799999966],[103.77215520000004,-4.944633099999976],[103.76298460000004,-4.934120499999949],[103.75352060000006,-4.927473199999952],[103.754118,-4.921185599999944],[103.75160880000004,-4.918370799999934],[103.74191480000007,-4.916118899999958],[103.73194280000007,-4.9088946],[103.71111910000008,-4.904099199999962],[103.70070450000009,-4.903214399999968],[103.69363480000004,-4.902967399999966],[103.69185230000005,-4.905925499999967],[103.67629050000005,-4.911060099999929],[103.65872050000007,-4.920631899999933],[103.65728610000008,-4.922413399999925],[103.65990090000008,-4.927231599999971],[103.65860650000008,-4.928955299999927],[103.65579020000007,-4.929395499999941],[103.65355790000007,-4.934146799999951],[103.64971920000005,-4.9369766],[103.64449490000004,-4.935686699999962],[103.64191990000006,-4.937266099999931]]]]},"properties":{"shapeName":"Pesisir Barat","shapeISO":"","shapeID":"22746128B26182764151464","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[100.63967130000003,-1.911865899999952],[100.64037310000003,-1.909222299999954],[100.63882060000009,-1.9072554],[100.637417,-1.909584],[100.63967130000003,-1.911865899999952]]],[[[100.57082620000006,-1.889996799999949],[100.57156420000007,-1.887862299999938],[100.57008380000008,-1.887317699999926],[100.57082620000006,-1.889996799999949]]],[[[100.50813240000008,-1.664188299999978],[100.50940450000007,-1.662521899999945],[100.50790050000006,-1.660575799999947],[100.50637370000004,-1.662139899999943],[100.50813240000008,-1.664188299999978]]],[[[100.55452640000004,-1.606019499999945],[100.55450840000003,-1.604093899999953],[100.55343650000003,-1.604858299999933],[100.55452640000004,-1.606019499999945]]],[[[100.43962640000007,-1.502830399999937],[100.44037830000008,-1.501077499999951],[100.43912370000004,-1.498604399999977],[100.43644440000008,-1.498530699999947],[100.43652450000008,-1.501272399999948],[100.43962640000007,-1.502830399999937]]],[[[100.55586640000007,-1.408100499999932],[100.55679410000005,-1.407094399999949],[100.55502060000003,-1.407647399999973],[100.55586640000007,-1.408100499999932]]],[[[100.49290840000003,-1.4057876],[100.49138330000005,-1.405812499999968],[100.49078870000005,-1.407563299999936],[100.49205460000007,-1.412190099999975],[100.49364960000008,-1.409719399999972],[100.49290840000003,-1.4057876]]],[[[100.48957070000006,-1.388407],[100.48645680000004,-1.385839199999964],[100.482842,-1.386898099999939],[100.48724670000007,-1.389783399999942],[100.48892990000007,-1.394532699999957],[100.48783460000004,-1.394382399999927],[100.48835010000005,-1.398114799999973],[100.49148580000008,-1.398580699999968],[100.49229280000009,-1.392808],[100.48957070000006,-1.388407]]],[[[100.560608,-1.353807699999948],[100.559535,-1.352277099999981],[100.55751410000005,-1.355375799999933],[100.560608,-1.353807699999948]]],[[[100.47417,-1.330238399999928],[100.47744590000008,-1.321109599999943],[100.47483910000005,-1.318313499999931],[100.47175510000005,-1.321903899999938],[100.47246370000005,-1.328993499999967],[100.47417,-1.330238399999928]]],[[[100.43581630000006,-1.316892499999938],[100.43594030000008,-1.314174],[100.43457570000004,-1.315905399999963],[100.43581630000006,-1.316892499999938]]],[[[100.29823340000007,-1.267931399999952],[100.29944120000005,-1.266241099999945],[100.29696780000006,-1.264235],[100.29550460000007,-1.266552699999977],[100.29823340000007,-1.267931399999952]]],[[[100.40755070000006,-1.231060699999944],[100.40766150000007,-1.227497899999946],[100.40597220000006,-1.228519099999971],[100.40755070000006,-1.231060699999944]]],[[[100.39443890000007,-1.197092399999974],[100.393346,-1.197426699999937],[100.39467290000005,-1.198328099999969],[100.39443890000007,-1.197092399999974]]],[[[100.33954970000008,-1.188044399999967],[100.33406110000004,-1.189812599999925],[100.32943790000007,-1.196993199999952],[100.32768020000003,-1.204660799999942],[100.32807730000007,-1.206133499999964],[100.33008940000008,-1.205365399999948],[100.33535710000007,-1.208081099999958],[100.33885850000007,-1.212112099999956],[100.338056,-1.204248699999937],[100.34063370000007,-1.198057],[100.338379,-1.1954718],[100.33779960000004,-1.191578599999957],[100.33862620000008,-1.189168299999949],[100.34031990000005,-1.188644499999953],[100.33954970000008,-1.188044399999967]]],[[[100.39239930000008,-1.188091899999961],[100.39280560000009,-1.187235799999939],[100.38826390000008,-1.188901899999962],[100.38426660000005,-1.187912799999935],[100.38095070000008,-1.190703799999937],[100.38200330000006,-1.2013312],[100.38045720000008,-1.206333699999959],[100.37655650000005,-1.210528799999963],[100.37727370000005,-1.214815399999964],[100.37602240000007,-1.218177399999945],[100.37697610000004,-1.222739],[100.37954950000005,-1.224432699999966],[100.37901320000003,-1.226999899999953],[100.38563040000008,-1.222463699999935],[100.38745810000006,-1.224499799999933],[100.39105060000009,-1.223572299999944],[100.39217350000007,-1.225878799999975],[100.39708940000008,-1.228549399999963],[100.40135550000008,-1.220668],[100.39908190000006,-1.214008599999943],[100.40054290000006,-1.2077278],[100.39796360000008,-1.204051],[100.39806090000008,-1.201471],[100.39503340000005,-1.200268],[100.39307150000008,-1.201254],[100.39212320000007,-1.202817399999958],[100.394638,-1.203374199999928],[100.39473680000003,-1.204606699999943],[100.38896230000006,-1.209981699999958],[100.38616340000004,-1.208271499999967],[100.38592980000004,-1.209598799999981],[100.38438810000008,-1.207763799999952],[100.38771910000008,-1.2049674],[100.38901170000008,-1.198705699999948],[100.39089830000006,-1.196601799999939],[100.389712,-1.192230099999961],[100.39239930000008,-1.188091899999961]]],[[[100.35498190000004,-1.170749399999977],[100.35736650000007,-1.1677027],[100.35504890000004,-1.166155],[100.35552920000003,-1.161426799999958],[100.34863670000004,-1.171222299999954],[100.35498190000004,-1.170749399999977]]],[[[100.35110770000006,-1.15921],[100.35166780000009,-1.157221399999969],[100.34919140000005,-1.156375699999955],[100.34581570000006,-1.162875799999938],[100.34821840000006,-1.162469599999952],[100.35110770000006,-1.15921]]],[[[101.28210620000004,-2.2502573],[101.26468720000008,-2.101814299999944],[101.24962090000008,-2.082873099999972],[101.24083320000005,-2.064946299999974],[101.206782,-2.009301],[101.20814150000007,-1.996755199999939],[101.20609780000007,-1.981125599999928],[101.20274070000005,-1.977468899999963],[101.19248770000007,-1.973319499999945],[101.182529,-1.959908399999961],[101.15837280000005,-1.936303],[101.142784,-1.925878399999931],[101.14453380000003,-1.911375599999928],[101.14182990000006,-1.90242],[101.14703380000009,-1.904157],[101.15194530000008,-1.903104699999972],[101.16360940000004,-1.894372899999951],[101.16592590000005,-1.879451],[101.176832,-1.865489899999943],[101.17863850000003,-1.861079399999937],[101.17597270000005,-1.855155099999934],[101.17151830000006,-1.851673699999935],[101.15875150000005,-1.832055699999955],[101.15333490000006,-1.803767599999958],[101.15182940000005,-1.801328499999954],[101.142055,-1.795179899999937],[101.14244920000004,-1.786287699999946],[101.14046640000004,-1.779503799999929],[101.136128,-1.776138099999969],[101.12862640000009,-1.763944799999933],[101.13385130000006,-1.755411699999968],[101.13152660000009,-1.743907399999955],[101.13162660000006,-1.685208599999953],[101.12057850000008,-1.675980199999969],[101.10792120000008,-1.670721899999933],[101.09514920000004,-1.670735599999944],[101.07843810000008,-1.661977699999966],[101.06780140000006,-1.659199199999932],[101.06436230000008,-1.655615299999965],[101.059956,-1.641962],[101.06272260000009,-1.634694299999978],[101.02862590000007,-1.615392899999961],[101.01732770000007,-1.605879399999935],[101.01466240000008,-1.598849499999972],[101.01407470000004,-1.588853399999948],[101.01556450000004,-1.5806113],[101.01931340000004,-1.572703299999944],[101.02017330000007,-1.565495599999963],[101.016299,-1.563116399999956],[101.01513980000004,-1.559514099999944],[101.00877910000008,-1.555800499999975],[101.00800850000007,-1.552384399999937],[101.00193680000007,-1.548612399999968],[100.99121,-1.530796899999928],[100.98311420000005,-1.525399199999924],[100.98062260000006,-1.5182525],[100.97967160000007,-1.504486699999973],[100.97596350000003,-1.49397],[100.97751740000007,-1.486703399999953],[100.97578170000008,-1.484496299999932],[100.96838150000008,-1.48119],[100.95774730000005,-1.480502],[100.942848,-1.467737499999942],[100.93510070000008,-1.464082499999961],[100.93423040000005,-1.460072799999978],[100.93960630000004,-1.448513799999944],[100.93745880000006,-1.437704799999949],[100.941961,-1.431074899999942],[100.94169680000005,-1.4228917],[100.93371470000005,-1.414412399999947],[100.89522080000006,-1.390163199999961],[100.89371460000007,-1.385688799999969],[100.89787120000005,-1.380105499999956],[100.90939080000004,-1.378307199999938],[100.91042720000007,-1.373540199999979],[100.905912,-1.363953299999935],[100.90561960000008,-1.359594199999947],[100.89195460000008,-1.341417299999932],[100.89229890000007,-1.338278299999956],[100.89605180000007,-1.333799799999952],[100.89587540000008,-1.329847499999971],[100.893216,-1.328396399999974],[100.88454760000008,-1.328577499999938],[100.87596730000007,-1.320460699999956],[100.87188720000006,-1.312011699999971],[100.86520740000009,-1.307678899999928],[100.85901670000004,-1.297918399999958],[100.85371230000004,-1.296632399999964],[100.84649660000008,-1.304626499999927],[100.84112550000003,-1.306579599999964],[100.83695940000007,-1.305596199999968],[100.82903580000004,-1.297057299999949],[100.82830810000007,-1.287109399999963],[100.82055990000003,-1.281712],[100.81408690000006,-1.289001499999927],[100.80009770000004,-1.282569],[100.79791260000007,-1.2753906],[100.80174490000007,-1.265441599999974],[100.80108640000009,-1.256286599999953],[100.80782410000006,-1.249763499999972],[100.80897660000005,-1.24488],[100.80571950000007,-1.233034799999928],[100.79687110000003,-1.223507899999959],[100.79600240000008,-1.220776399999977],[100.79721070000005,-1.212754],[100.80108640000009,-1.206909199999927],[100.80047610000008,-1.203002899999944],[100.79105650000008,-1.184627099999943],[100.78747280000005,-1.183525],[100.778419,-1.173723299999949],[100.77645210000009,-1.170469399999945],[100.77752950000007,-1.1631242],[100.77419170000007,-1.160065799999927],[100.77176360000004,-1.158614099999966],[100.763615,-1.158386699999937],[100.75558490000009,-1.162809599999946],[100.74952860000008,-1.160639899999978],[100.74472940000004,-1.156457499999931],[100.73675250000008,-1.153788499999962],[100.73506070000008,-1.134727199999929],[100.73181970000007,-1.126765299999931],[100.736209,-1.121937899999978],[100.73649570000003,-1.118101199999955],[100.72440680000005,-1.104063199999928],[100.720646,-1.096334099999979],[100.70089560000008,-1.090524199999948],[100.69348140000005,-1.093505899999968],[100.68668350000007,-1.098728699999924],[100.65005740000004,-1.110859199999936],[100.64537540000003,-1.109408499999972],[100.63740020000006,-1.109936199999936],[100.62535030000004,-1.100716099999943],[100.621521,-1.095825199999979],[100.62343330000004,-1.0824051],[100.62030440000007,-1.074924199999941],[100.62255560000006,-1.069807299999979],[100.62268070000005,-1.062988299999972],[100.62081730000006,-1.061088199999972],[100.61914070000006,-1.0606242],[100.60966540000004,-1.065279699999962],[100.60429360000006,-1.071037699999977],[100.59710690000009,-1.074096699999927],[100.58569340000008,-1.073608399999955],[100.58609820000004,-1.072741],[100.57893040000005,-1.069654699999944],[100.57649640000005,-1.056633799999929],[100.57239210000006,-1.054775599999971],[100.56658390000007,-1.047345099999973],[100.559417,-1.046534799999961],[100.55745080000008,-1.044094199999961],[100.55652170000008,-1.035199899999952],[100.55299450000007,-1.031422899999939],[100.55316430000005,-1.024155899999926],[100.55072730000006,-1.010214499999961],[100.55024950000006,-1.002609799999959],[100.551601,-0.999557599999946],[100.55006560000004,-0.993625],[100.55237870000008,-0.9874337],[100.54567670000006,-0.9701583],[100.54052730000006,-0.966308599999934],[100.538574,-0.958973699999945],[100.53660890000003,-0.9570719],[100.52893070000005,-0.976989699999933],[100.51982,-0.990805699999953],[100.49269190000007,-1.004400299999929],[100.48566060000007,-1.001550499999951],[100.47906290000009,-1.003418799999963],[100.47147480000007,-1.015335099999959],[100.46428460000004,-1.023091],[100.46513070000003,-1.027168399999937],[100.46389020000004,-1.029667099999926],[100.45841010000004,-1.031995399999971],[100.45305010000004,-1.038064599999927],[100.44738920000003,-1.041805499999953],[100.43855340000005,-1.054147299999954],[100.42991360000008,-1.059074599999974],[100.42597690000008,-1.075980199999947],[100.421769,-1.080752699999948],[100.41338570000005,-1.085993],[100.41176130000008,-1.091808499999956],[100.41206090000009,-1.093744699999945],[100.41495660000004,-1.094260199999951],[100.420725,-1.099864799999978],[100.42073930000004,-1.108518099999969],[100.40444440000005,-1.1178662],[100.39805060000003,-1.119424599999945],[100.39437760000004,-1.122353199999964],[100.38874980000008,-1.130644899999936],[100.36812820000006,-1.1383212],[100.36349230000008,-1.1431839],[100.361921,-1.146643199999971],[100.36148410000004,-1.1550663],[100.35558250000008,-1.161160099999961],[100.36818290000008,-1.152957399999934],[100.37071750000007,-1.156488899999943],[100.37097530000005,-1.1532345],[100.37337690000004,-1.1495961],[100.38004880000005,-1.145677299999932],[100.38229740000008,-1.147625299999959],[100.38319930000006,-1.153507],[100.38502460000007,-1.156064299999969],[100.37971150000004,-1.163289],[100.38329540000007,-1.173276299999941],[100.38018460000006,-1.176218899999981],[100.38113670000007,-1.178411199999971],[100.38471560000005,-1.178392],[100.38607540000004,-1.1834903],[100.39502930000003,-1.178943699999934],[100.39691480000005,-1.180874499999959],[100.39506560000007,-1.182546],[100.39783130000006,-1.181117599999936],[100.40026940000007,-1.1817255],[100.40182750000008,-1.185692499999959],[100.39853470000008,-1.187382199999945],[100.39891660000006,-1.190462199999956],[100.40188340000009,-1.1936976],[100.40963080000006,-1.196721699999955],[100.41092850000007,-1.198670099999958],[100.41635740000004,-1.198510599999963],[100.417275,-1.2009465],[100.41948760000008,-1.199918599999933],[100.42123150000003,-1.195480099999941],[100.42321180000005,-1.196749399999931],[100.42871,-1.196781399999963],[100.43032850000009,-1.200609],[100.43183290000007,-1.200904099999946],[100.426174,-1.207537299999956],[100.42760330000004,-1.213070499999958],[100.42627370000008,-1.2163428],[100.42888790000006,-1.222919499999932],[100.42767840000005,-1.224469],[100.42396020000007,-1.222730699999943],[100.42136780000004,-1.224733399999934],[100.42231960000004,-1.226386099999957],[100.42780110000007,-1.227566499999966],[100.42623740000005,-1.229603399999974],[100.427016,-1.230647099999942],[100.43467520000007,-1.230242799999928],[100.435964,-1.231564699999979],[100.43044440000006,-1.239955499999951],[100.43175990000003,-1.242774],[100.434951,-1.244703899999934],[100.43170170000008,-1.246933199999944],[100.43284320000004,-1.247698199999945],[100.430917,-1.250588099999959],[100.43256180000009,-1.254850699999963],[100.42790320000006,-1.256697899999949],[100.42424250000005,-1.255440599999929],[100.41938260000006,-1.243525699999964],[100.41884090000008,-1.238263599999925],[100.41292050000004,-1.2379571],[100.41074030000004,-1.235841799999946],[100.40678140000006,-1.236783599999967],[100.40387850000008,-1.240126399999951],[100.40499870000008,-1.249557899999957],[100.40413520000004,-1.251437899999928],[100.40592740000005,-1.256501],[100.40189420000007,-1.2640733],[100.40077390000005,-1.270704199999955],[100.407638,-1.270422099999962],[100.41225680000008,-1.2738346],[100.41379790000008,-1.270738199999926],[100.41826110000005,-1.268104499999936],[100.42134340000007,-1.271430599999974],[100.42064910000005,-1.276461199999972],[100.42226650000003,-1.277311599999962],[100.42949910000004,-1.272354599999971],[100.43950120000005,-1.269021299999963],[100.44165270000008,-1.266775899999971],[100.44235460000004,-1.261810599999933],[100.44668040000005,-1.258554699999934],[100.45398940000007,-1.258782899999972],[100.45999370000004,-1.263887],[100.46530250000006,-1.274514199999942],[100.48329370000005,-1.290093799999966],[100.49022120000006,-1.299066399999958],[100.51836880000008,-1.311096299999974],[100.53801910000004,-1.309237899999971],[100.54318420000004,-1.310164099999952],[100.551668,-1.316499799999974],[100.56813980000004,-1.336824699999966],[100.56806050000006,-1.3414481],[100.56626410000007,-1.344111599999962],[100.56336010000007,-1.345157499999971],[100.56450570000004,-1.352239099999963],[100.56841150000008,-1.349678599999947],[100.57086670000007,-1.349833599999954],[100.572969,-1.352251],[100.57461710000007,-1.3583322],[100.56897410000005,-1.367536199999961],[100.56482260000007,-1.364450199999965],[100.56272680000006,-1.365278099999955],[100.562578,-1.369171699999924],[100.56059150000004,-1.372000699999944],[100.56341380000003,-1.374935299999947],[100.57526440000004,-1.369228699999951],[100.57844180000006,-1.369900899999948],[100.57986990000006,-1.372553599999947],[100.57936750000005,-1.380949899999962],[100.58018930000009,-1.3817759],[100.58358160000006,-1.380490299999963],[100.58634880000005,-1.381902299999979],[100.58738060000007,-1.389688599999943],[100.59194230000008,-1.392034599999931],[100.59258130000006,-1.394165799999939],[100.59009770000006,-1.3967776],[100.58378520000008,-1.394258799999932],[100.573271,-1.394352799999979],[100.56440160000005,-1.398078299999952],[100.56143410000004,-1.404475199999979],[100.55834490000007,-1.406543699999929],[100.56086720000008,-1.413219699999956],[100.56890610000005,-1.411822199999961],[100.57363220000008,-1.417409099999929],[100.58148720000008,-1.415728899999976],[100.58404080000008,-1.420708199999979],[100.58339430000007,-1.423405799999955],[100.57843630000008,-1.426410899999951],[100.57352350000008,-1.432352399999957],[100.57158130000005,-1.436725699999954],[100.56766050000004,-1.439403899999945],[100.56368280000004,-1.438079799999969],[100.56141540000004,-1.440996],[100.57135510000006,-1.453431],[100.57495850000004,-1.460541199999966],[100.57722830000006,-1.461170399999958],[100.59060060000007,-1.475860199999943],[100.59687060000005,-1.486300799999981],[100.59755580000007,-1.492412299999955],[100.60010450000004,-1.4901266],[100.602914,-1.489885299999969],[100.60995070000007,-1.492338],[100.61263250000007,-1.4947504],[100.61567920000005,-1.493791099999953],[100.62325990000005,-1.501289499999928],[100.62364460000003,-1.509989599999926],[100.62040190000005,-1.51172],[100.62115220000004,-1.515255199999956],[100.61925920000004,-1.5271543],[100.63581750000009,-1.559158799999977],[100.63686670000004,-1.5743617],[100.63528510000003,-1.583193799999947],[100.63968940000007,-1.590781199999981],[100.64113110000005,-1.59637],[100.64047580000005,-1.601264399999934],[100.63918040000004,-1.603136],[100.63820740000006,-1.602571299999966],[100.63689150000005,-1.605769699999939],[100.64355720000003,-1.616617899999937],[100.64417730000008,-1.621707],[100.66733670000008,-1.640498299999933],[100.68873710000008,-1.664835499999924],[100.69919190000007,-1.682496199999946],[100.70715010000004,-1.699780399999952],[100.72894890000003,-1.725382],[100.754097,-1.7608538],[100.76772720000008,-1.786374399999943],[100.77036070000008,-1.7940711],[100.78667240000004,-1.820045099999959],[100.81173710000007,-1.844596],[100.83079580000003,-1.866929399999947],[100.84218640000006,-1.883555599999966],[100.85756720000006,-1.911360599999966],[100.86679870000006,-1.935736],[100.86913330000004,-1.954983399999946],[100.87169680000005,-1.963624799999934],[100.87223870000008,-1.968278599999962],[100.86842130000008,-1.975872899999956],[100.87276490000005,-1.992377099999942],[100.87239110000007,-1.998287499999947],[100.87920410000004,-2.024149299999976],[100.88014250000003,-2.048261],[100.87228580000004,-2.082202699999925],[100.86620360000006,-2.097133699999972],[100.84636730000005,-2.122089099999926],[100.83037610000008,-2.134619599999951],[100.82286120000003,-2.143727599999977],[100.82070970000007,-2.158281099999954],[100.823235,-2.173593199999971],[100.84876290000005,-2.212673799999948],[100.87006410000004,-2.237379499999975],[100.87509180000006,-2.245120699999973],[100.87825040000007,-2.256240499999933],[100.87889890000008,-2.270833599999946],[100.87783080000008,-2.272951],[100.87927270000006,-2.282588299999929],[100.88449880000007,-2.302310299999931],[100.88837450000005,-2.311457399999938],[100.88865680000004,-2.321546499999954],[100.89180010000007,-2.3281185],[100.98951120000004,-2.427902699999947],[101.00962040000007,-2.454235299999937],[101.02281160000007,-2.478441799999928],[101.13180180000006,-2.401776199999972],[101.14224270000005,-2.393923499999971],[101.14679170000005,-2.387803699999949],[101.15311240000005,-2.387212599999941],[101.15536930000007,-2.384501099999966],[101.159923,-2.382477499999936],[101.17031750000007,-2.382633399999975],[101.17625330000004,-2.376108099999954],[101.184043,-2.375503299999934],[101.19061730000004,-2.368114299999945],[101.20140810000004,-2.366406799999936],[101.2062,-2.359996199999955],[101.22614940000005,-2.347508599999969],[101.23031480000009,-2.342561699999976],[101.23699150000004,-2.342364599999939],[101.23622180000007,-2.324748899999975],[101.23766190000003,-2.320008399999949],[101.25410310000007,-2.313958],[101.26016580000004,-2.309638699999937],[101.26715810000007,-2.299468299999944],[101.28327630000007,-2.284889599999929],[101.28538520000006,-2.276711],[101.28095580000007,-2.260418899999934],[101.28210620000004,-2.2502573]]]]},"properties":{"shapeName":"Pesisir Selatan","shapeISO":"","shapeID":"22746128B94672873543612","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[96.28073360000008,4.77903260000005],[96.28345360000009,4.779997800000046],[96.292324,4.77851940000005],[96.29712880000005,4.775562600000058],[96.307108,4.774823400000059],[96.312652,4.779997800000046],[96.31708720000006,4.779258600000048],[96.32078320000005,4.776301800000056],[96.33334960000008,4.775193],[96.33741520000007,4.778889],[96.34295920000005,4.779258600000048],[96.35048790000008,4.775680200000068],[96.35470340000006,4.789214],[96.37599910000006,4.842221800000061],[96.39729480000005,4.867221100000052],[96.42530330000005,4.885739100000023],[96.43618260000005,4.899859100000072],[96.44958780000007,4.925136100000032],[96.43175220000006,4.938345500000025],[96.42340360000009,4.94095180000005],[96.39746990000003,4.941855600000054],[96.37905920000009,4.932190500000047],[96.37350090000007,4.931046400000071],[96.36971120000004,4.932922],[96.36837110000005,4.937618500000042],[96.36332680000004,4.941845400000034],[96.35349050000008,4.944805500000029],[96.341692,4.94408720000007],[96.344205,4.943142],[96.340819,4.939901],[96.336684,4.931558],[96.323892,4.916064],[96.314804,4.914382],[96.305512,4.916335],[96.295736,4.910364],[96.279979,4.909429],[96.261206,4.914916],[96.252225,4.923889],[96.250226,4.933451],[96.247307,4.936662],[96.225902,4.947813],[96.211448,4.95875],[96.199473,4.983123],[96.189776,4.995704],[96.189542,4.999554],[96.19998910000004,5.013286],[96.20619490000007,5.038876],[96.20155510000006,5.049513],[96.19555430000008,5.055842],[96.19662810000005,5.060292],[96.19296630000008,5.065421],[96.19405720000003,5.072236],[96.19269440000005,5.076739],[96.189226,5.075923],[96.18715,5.071143],[96.183698,5.068214],[96.166924,5.068403],[96.154376,5.077546],[96.14841290000004,5.07929],[96.146083,5.079343],[96.140917,5.075648],[96.136588,5.074647],[96.126023,5.078038],[96.11770270000005,5.083094],[96.112043,5.091503],[96.10777730000007,5.091684],[96.101488,5.089342],[96.089715,5.091577],[96.071533,5.106048],[96.063396,5.106198],[96.058545,5.107772],[96.04937,5.116583],[96.036032,5.134746],[96.027067,5.13969],[96.02108130000005,5.145399],[96.026602,5.152689],[96.026401,5.159673],[96.030255,5.161709],[96.034655,5.171487],[96.035937,5.172536],[96.041823,5.171401],[96.043161,5.174313],[96.045878,5.175158],[96.051641,5.180433],[96.051426,5.184766],[96.048416,5.189077],[96.049605,5.19274],[96.052241,5.194623],[96.053612,5.2023],[96.039758,5.239694],[96.047879,5.245741],[96.05252830000006,5.254126600000063],[96.05189530000007,5.257487600000047],[96.04954590000006,5.25925490000003],[96.045609,5.26689],[96.048053,5.277184],[96.051722,5.278079],[96.05327290000008,5.285622],[96.05084510000006,5.289175],[96.05208450000003,5.292885500000068],[96.054031,5.293719],[96.0578,5.300142],[96.07099480000005,5.293148900000062],[96.07495880000005,5.293916600000045],[96.08154630000007,5.289126800000076],[96.09399770000005,5.284933300000034],[96.09726730000006,5.286455400000023],[96.10087510000005,5.283467600000051],[96.10487750000004,5.282678400000066],[96.10506090000007,5.28710970000003],[96.07885580000004,5.292578],[96.06636720000006,5.303496200000041],[96.05543240000009,5.320342800000049],[96.04966370000005,5.326591],[96.03245430000004,5.336304600000062],[95.99194880000005,5.365088200000059],[95.96710240000004,5.386386300000026],[95.96429150000006,5.386569800000075],[95.96436470000003,5.38866790000003],[95.959151,5.390380800000059],[95.93887620000004,5.406562],[95.93707920000008,5.407319],[95.93442840000006,5.404523600000061],[95.93267730000008,5.409444],[95.92986320000006,5.411361500000055],[95.92743060000004,5.410769],[95.92960950000008,5.413811500000065],[95.91485350000005,5.427820900000029],[95.90699310000008,5.43126460000002],[95.90627550000005,5.433265400000039],[95.90906330000007,5.433248500000047],[95.90912690000005,5.434542600000043],[95.89052990000005,5.462084200000049],[95.89256870000008,5.469817400000068],[95.89217050000008,5.477308300000061],[95.893498,5.48261750000006],[95.89125750000005,5.493675100000075],[95.88701150000009,5.503878300000054],[95.87011260000008,5.513408900000059],[95.85178690000004,5.518090100000052],[95.853144,5.51995560000006],[95.82776560000008,5.53520160000005],[95.82137540000008,5.534971300000052],[95.80523290000008,5.540571800000066],[95.80354730000005,5.539684300000033],[95.77950430000004,5.550709300000051],[95.77237830000007,5.55501],[95.76997350000005,5.558174200000053],[95.75,5.565674900000033],[95.74571280000004,5.568929400000059],[95.742706,5.559086],[95.73021790000007,5.551563],[95.72786710000008,5.548082900000054],[95.723973,5.532280900000046],[95.72453890000008,5.524937],[95.728172,5.520605],[95.73664210000004,5.515713],[95.73734520000005,5.513321],[95.73555820000007,5.508199],[95.724842,5.499367],[95.72499,5.497176],[95.73286210000003,5.487924100000043],[95.74284490000008,5.480868],[95.75144890000007,5.47947],[95.755824,5.476996],[95.76285410000008,5.465383],[95.768663,5.462372],[95.78074610000004,5.461367900000027],[95.786806,5.459145900000067],[95.78989010000004,5.456744],[95.791325,5.453303],[95.78125010000008,5.449146],[95.778167,5.44635],[95.77877690000008,5.44187],[95.781933,5.441117],[95.780893,5.438501],[95.77816880000006,5.436995],[95.78221990000009,5.435776],[95.777667,5.433984],[95.774513,5.429827100000068],[95.77189510000005,5.429504100000031],[95.77203910000009,5.428106],[95.76852520000006,5.429648],[95.75830690000004,5.424236],[95.75364710000008,5.419827],[95.75450890000008,5.411297],[95.75859710000003,5.40721110000004],[95.764262,5.404916],[95.765625,5.402121],[95.763726,5.39807090000005],[95.76387,5.394701],[95.75791920000006,5.390365],[95.75612780000006,5.380078100000048],[95.75993020000004,5.368572],[95.75996690000005,5.364665],[95.75017990000003,5.353518],[95.75186690000004,5.346027],[95.74734380000007,5.337573],[95.748318,5.318034],[95.75326990000008,5.314378],[95.76252110000007,5.314414100000022],[95.76725510000006,5.310220100000038],[95.76765,5.306062100000076],[95.76019190000005,5.304951],[95.75804090000008,5.302442100000064],[95.75933290000006,5.297137900000052],[95.763888,5.290471],[95.77360510000005,5.28556],[95.78705110000004,5.282943],[95.79121090000007,5.280505900000037],[95.791463,5.273803],[95.78863080000008,5.270613],[95.78691220000007,5.261366100000032],[95.784331,5.258104],[95.77497310000007,5.256958100000077],[95.77504510000006,5.252011],[95.77918470000009,5.249118500000066],[95.78375030000007,5.242756300000053],[95.787639,5.222954],[95.79293890000008,5.212264700000048],[95.80591480000004,5.199996200000044],[95.80862050000007,5.194751900000028],[95.82278690000004,5.179897100000062],[95.83099520000007,5.16839090000002],[95.84114580000005,5.137914200000068],[95.83996610000008,5.131306],[95.831721,5.116311],[95.82558880000005,5.095158],[95.82123670000004,5.085348500000066],[95.80903670000004,5.083236100000022],[95.80046620000007,5.079499],[95.79324060000005,5.081183300000021],[95.773351,5.071521500000074],[95.76671980000003,5.073374500000057],[95.76066280000003,5.072750600000063],[95.75313590000007,5.069896500000027],[95.74322550000005,5.061176900000021],[95.7624,5.055709],[95.766414,5.037975],[95.772471,5.027358],[95.778492,5.022271],[95.78394,5.008995],[95.796366,5.001724400000057],[95.80300160000007,4.988407500000051],[95.82279460000007,4.974229700000024],[95.84787720000008,4.95124],[95.85174080000007,4.944682],[95.855163,4.929534200000035],[95.87905860000006,4.914939600000025],[95.88231250000007,4.908998300000064],[95.88594370000004,4.893852200000026],[95.90181720000004,4.866399300000069],[95.91590730000007,4.855518500000073],[95.922436,4.848546],[95.95575640000004,4.831271500000071],[95.96124970000005,4.820008400000063],[95.97166290000007,4.809959],[95.97878930000007,4.796442500000069],[95.99115750000004,4.786596],[95.99315940000008,4.782714400000032],[95.99541410000006,4.767490100000032],[95.99467630000004,4.756330700000035],[95.99673640000003,4.752182800000071],[96.00477660000007,4.74650360000004],[96.00819650000005,4.741308400000037],[96.02807140000004,4.694024600000034],[96.03146860000004,4.683649500000058],[96.03198280000004,4.669833600000061],[96.04244830000005,4.65757050000002],[96.07488670000004,4.677802200000031],[96.09149230000008,4.696462800000063],[96.09982060000004,4.710112800000047],[96.10636130000006,4.729528400000049],[96.11691290000005,4.739665100000025],[96.11833480000007,4.747904500000061],[96.11457360000009,4.760637300000042],[96.11710190000008,4.767423200000053],[96.121869,4.767443200000059],[96.13435820000007,4.757535400000052],[96.14311140000007,4.754517400000054],[96.15052460000004,4.755212100000051],[96.16809860000006,4.764713700000073],[96.17960840000006,4.76755],[96.18616080000004,4.767485100000044],[96.20379950000006,4.761182400000052],[96.21915390000004,4.763369600000033],[96.22590080000003,4.765256200000067],[96.23578460000004,4.77751470000004],[96.24146460000009,4.781256300000052],[96.25494960000003,4.787287100000071],[96.26647920000005,4.795366400000034],[96.27306380000005,4.797066600000051],[96.276325,4.795019400000058],[96.28073360000008,4.77903260000005]]]},"properties":{"shapeName":"Pidie","shapeISO":"","shapeID":"22746128B10880502495805","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[96.34200580000004,5.227098400000045],[96.31389180000008,5.234615200000064],[96.31030690000006,5.237990300000035],[96.28845020000006,5.247311700000068],[96.26444450000008,5.25966950000003],[96.26050780000008,5.263389200000063],[96.23794980000008,5.262850400000048],[96.20954610000007,5.258709700000054],[96.19095030000005,5.259674300000029],[96.165581,5.266828500000031],[96.14512820000004,5.277874600000075],[96.12294550000007,5.280734300000063],[96.10506090000007,5.28710970000003],[96.10487750000004,5.282678400000066],[96.10087510000005,5.283467600000051],[96.09726730000006,5.286455400000023],[96.09399770000005,5.284933300000034],[96.08154630000007,5.289126800000076],[96.07495880000005,5.293916600000045],[96.07099480000005,5.293148900000062],[96.0578,5.300142],[96.054031,5.293719],[96.05208450000003,5.292885500000068],[96.05084510000006,5.289175],[96.05327290000008,5.285622],[96.051722,5.278079],[96.048053,5.277184],[96.045609,5.26689],[96.04954590000006,5.25925490000003],[96.05189530000007,5.257487600000047],[96.05252830000006,5.254126600000063],[96.047879,5.245741],[96.039758,5.239694],[96.053612,5.2023],[96.052241,5.194623],[96.049605,5.19274],[96.048416,5.189077],[96.051426,5.184766],[96.051641,5.180433],[96.045878,5.175158],[96.043161,5.174313],[96.041823,5.171401],[96.035937,5.172536],[96.034655,5.171487],[96.030255,5.161709],[96.026401,5.159673],[96.026602,5.152689],[96.02108130000005,5.145399],[96.027067,5.13969],[96.036032,5.134746],[96.04937,5.116583],[96.058545,5.107772],[96.063396,5.106198],[96.071533,5.106048],[96.089715,5.091577],[96.101488,5.089342],[96.10777730000007,5.091684],[96.112043,5.091503],[96.11770270000005,5.083094],[96.126023,5.078038],[96.136588,5.074647],[96.140917,5.075648],[96.146083,5.079343],[96.14841290000004,5.07929],[96.154376,5.077546],[96.166924,5.068403],[96.183698,5.068214],[96.18715,5.071143],[96.189226,5.075923],[96.19269440000005,5.076739],[96.19405720000003,5.072236],[96.19296630000008,5.065421],[96.19662810000005,5.060292],[96.19555430000008,5.055842],[96.20155510000006,5.049513],[96.20619490000007,5.038876],[96.19998910000004,5.013286],[96.189542,4.999554],[96.189776,4.995704],[96.199473,4.983123],[96.211448,4.95875],[96.225902,4.947813],[96.247307,4.936662],[96.250226,4.933451],[96.252225,4.923889],[96.261206,4.914916],[96.279979,4.909429],[96.295736,4.910364],[96.305512,4.916335],[96.314804,4.914382],[96.323892,4.916064],[96.336684,4.931558],[96.340819,4.939901],[96.344205,4.943142],[96.341692,4.94408720000007],[96.336939,4.945719300000064],[96.33270520000008,4.949325800000054],[96.32651770000007,4.958231300000023],[96.32544060000004,4.962421600000027],[96.33339510000008,4.969851200000051],[96.33486880000004,4.97387660000004],[96.33729310000007,4.974397500000066],[96.33876670000006,4.97719150000006],[96.34071560000007,4.977144100000032],[96.34019280000007,4.981832500000053],[96.34656260000008,4.989125300000069],[96.34603970000006,4.990782700000068],[96.34779850000007,4.990972200000044],[96.34858280000003,5.008304100000032],[96.34677650000003,5.010671800000068],[96.346758,5.015227],[96.35167270000005,5.018935],[96.352053,5.023031100000026],[96.354501,5.022415500000022],[96.35740070000008,5.024167600000055],[96.35797120000007,5.027032400000053],[96.36422210000006,5.033472400000051],[96.36636130000005,5.045594600000072],[96.36317630000008,5.050140300000066],[96.36210680000005,5.054615],[96.35963490000006,5.055443600000046],[96.36141750000007,5.056153900000027],[96.36060940000004,5.060817900000075],[96.35397820000009,5.066073800000026],[96.35200540000005,5.065813400000025],[96.35012780000005,5.069151600000055],[96.35157760000004,5.07043],[96.35038920000005,5.074289],[96.35117350000007,5.076632800000027],[96.34896310000005,5.077414100000055],[96.34817880000008,5.079781600000047],[96.35248080000008,5.08243310000006],[96.35410890000009,5.090435],[96.35615850000005,5.091724],[96.35457240000005,5.096625800000027],[96.34972370000008,5.101171200000067],[96.34934340000007,5.10798920000002],[96.34601590000005,5.109030800000028],[96.34791730000006,5.11149290000003],[96.34677650000003,5.115375300000039],[96.34905820000006,5.116416900000047],[96.34772720000007,5.119541800000036],[96.34839270000003,5.122761300000036],[96.34601590000005,5.124371100000076],[96.34886810000006,5.126264900000024],[96.34582580000006,5.127590600000076],[96.34687150000008,5.129768500000068],[96.34458980000005,5.129768500000068],[96.33939880000008,5.13562520000005],[96.338032,5.143983500000047],[96.33505250000007,5.150871600000073],[96.33529790000006,5.164717900000028],[96.33423240000008,5.166172],[96.33677120000004,5.170769500000063],[96.33612080000006,5.174053],[96.33415380000008,5.175479300000063],[96.33509590000006,5.184777300000064],[96.34467440000003,5.205891100000031],[96.34229760000005,5.206802400000072],[96.34165590000003,5.211370700000032],[96.33778170000005,5.213074900000038],[96.33886920000003,5.217659200000071],[96.33762140000005,5.217966900000022],[96.33792990000006,5.219860600000061],[96.34200580000004,5.227098400000045]]]},"properties":{"shapeName":"Pidie Jaya","shapeISO":"","shapeID":"22746128B13406112568068","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[119.60700670000006,-3.997799399999963],[119.604011,-3.994324399999925],[119.60141470000008,-3.995203099999969],[119.60157450000008,-3.997839399999975],[119.60321210000006,-3.998917799999958],[119.60700670000006,-3.997799399999963]]],[[[119.69021690000011,-3.360147099999949],[119.67971360000001,-3.366414199999952],[119.6744615,-3.366190099999926],[119.65946340000005,-3.359895299999948],[119.64997180000012,-3.3600044],[119.64778980000006,-3.351058199999954],[119.65084460000003,-3.346148699999958],[119.65073550000011,-3.343639499999938],[119.6421712,-3.335457],[119.64271670000005,-3.331420299999934],[119.64671220000002,-3.327479099999948],[119.6439851,-3.317945799999961],[119.63590130000011,-3.316130799999939],[119.63300310000011,-3.313897299999951],[119.6274912,-3.307000199999948],[119.62091150000003,-3.3030088],[119.61740590000011,-3.298517199999935],[119.61487620000003,-3.2874331],[119.60546340000008,-3.285317499999962],[119.6038936000001,-3.282472],[119.59821370000009,-3.285301599999968],[119.59538220000002,-3.284544599999947],[119.59084770000004,-3.287611799999979],[119.58055210000009,-3.2884375],[119.57245680000005,-3.285785799999928],[119.570118,-3.281032099999948],[119.5704177,-3.278403799999978],[119.56871050000007,-3.278210199999933],[119.56911910000008,-3.276363699999933],[119.56763970000009,-3.277158],[119.56467540000006,-3.273382199999958],[119.5629523,-3.273892499999931],[119.55870760000005,-3.269739899999934],[119.55548830000009,-3.270112599999948],[119.55363260000001,-3.272568699999965],[119.55034640000008,-3.2709867],[119.54120990000001,-3.274797],[119.53479090000008,-3.273544],[119.53276140000003,-3.275240099999962],[119.52891450000004,-3.274679399999968],[119.52705970000011,-3.278156299999978],[119.52478990000009,-3.277311599999962],[119.51936990000002,-3.2811179],[119.51723210000011,-3.292296499999964],[119.51481920000003,-3.296274499999925],[119.50760790000004,-3.297709699999928],[119.50144030000001,-3.294784399999969],[119.48991300000012,-3.279701199999977],[119.48484610000003,-3.279167899999948],[119.47204540000007,-3.274367599999948],[119.46271150000007,-3.264233699999977],[119.44795310000006,-3.259665],[119.44347540000001,-3.254739],[119.44057690000011,-3.253833099999952],[119.4336406000001,-3.257833499999947],[119.43219880000004,-3.267709599999932],[119.43608990000007,-3.277623199999937],[119.43680620000009,-3.288603599999931],[119.43483150000009,-3.294583099999954],[119.4397672,-3.302922799999976],[119.4379871000001,-3.311206799999979],[119.43457560000002,-3.313926899999956],[119.43429770000012,-3.315916099999924],[119.44012210000005,-3.322952],[119.44056390000003,-3.325915599999973],[119.44390320000002,-3.328826799999945],[119.445167,-3.332068599999957],[119.44286960000011,-3.337533699999938],[119.440221,-3.338290499999971],[119.4358664,-3.340054899999927],[119.43124710000006,-3.339234899999951],[119.42999140000006,-3.345185599999979],[119.43820690000007,-3.351844799999981],[119.45001740000009,-3.355421599999943],[119.45494990000009,-3.366174299999955],[119.46284030000004,-3.372653],[119.46526950000009,-3.377419299999929],[119.4589916000001,-3.384729499999935],[119.45971820000011,-3.386860699999943],[119.465427,-3.389937399999951],[119.464411,-3.396248899999932],[119.4669133000001,-3.398122499999943],[119.46703120000006,-3.406238899999948],[119.4733212000001,-3.413164299999949],[119.47370980000005,-3.416100899999947],[119.47108990000004,-3.417029599999978],[119.47011780000003,-3.423802],[119.4723335000001,-3.426733799999965],[119.47214120000001,-3.430363299999954],[119.46881610000003,-3.433323],[119.47118880000005,-3.438703799999928],[119.47416850000002,-3.440082699999948],[119.47355560000005,-3.4427017],[119.475635,-3.448562299999935],[119.478493,-3.450498099999947],[119.47772730000008,-3.4563136],[119.47500350000007,-3.457584499999939],[119.47668010000007,-3.459179899999981],[119.4767637000001,-3.461927399999979],[119.48294770000007,-3.465246299999933],[119.48255440000003,-3.4679137],[119.48598640000012,-3.468754299999944],[119.49238350000007,-3.474639499999967],[119.49041940000006,-3.481504899999948],[119.49258330000009,-3.483847099999934],[119.48705330000007,-3.484794799999975],[119.4846682000001,-3.488543],[119.48392430000001,-3.493814399999962],[119.478816,-3.494560099999944],[119.48078160000011,-3.496968199999969],[119.47810170000002,-3.498927599999945],[119.47885150000002,-3.501171699999929],[119.47528810000006,-3.501175399999966],[119.47414320000007,-3.502913799999931],[119.49277230000007,-3.521033799999941],[119.50458350000008,-3.536611099999959],[119.51063340000007,-3.548959099999934],[119.51353950000009,-3.561026199999958],[119.51041930000008,-3.573957499999949],[119.51220320000004,-3.581335],[119.5110231000001,-3.594740499999943],[119.50867330000005,-3.598130899999944],[119.4993376000001,-3.599577099999976],[119.49514840000006,-3.602453599999933],[119.48193560000004,-3.631282699999929],[119.48012540000002,-3.631476099999929],[119.48127020000004,-3.632719399999928],[119.4775002,-3.632515599999977],[119.477385,-3.634399799999926],[119.47504010000011,-3.633578099999966],[119.47316760000001,-3.636052799999959],[119.47000330000003,-3.636174],[119.46895080000002,-3.638294599999938],[119.46555260000002,-3.638887],[119.46426560000009,-3.641007899999977],[119.462891,-3.640298299999927],[119.46157560000006,-3.642561499999942],[119.45811560000004,-3.641848099999947],[119.45658550000007,-3.648745299999973],[119.45659160000002,-3.658766899999932],[119.4500680000001,-3.678236599999934],[119.45434650000004,-3.686870899999974],[119.4534556000001,-3.691702099999929],[119.4522756,-3.691835099999935],[119.4518121000001,-3.687576199999967],[119.44988870000009,-3.687380699999949],[119.45087440000009,-3.6894654],[119.45009450000009,-3.6959212],[119.45308100000011,-3.709201099999973],[119.45240830000012,-3.713727],[119.45986430000005,-3.726319499999931],[119.48071940000011,-3.749456299999963],[119.49453420000009,-3.785500799999966],[119.50642160000007,-3.808919899999978],[119.5287518,-3.878026399999953],[119.53713230000005,-3.8982553],[119.5431946000001,-3.909910599999932],[119.54890480000006,-3.917883499999959],[119.55000450000011,-3.917597],[119.55476570000008,-3.922669499999927],[119.55868070000008,-3.931912899999929],[119.57082240000011,-3.947652199999936],[119.57869360000007,-3.982779499999936],[119.57964390000006,-4.001356299999941],[119.58218850000003,-4.0098821],[119.581076,-4.015743099999952],[119.58264830000007,-4.025450899999953],[119.5870073000001,-4.039279099999931],[119.5960583000001,-4.043469199999947],[119.59928550000006,-4.041908099999944],[119.598554,-4.036958299999981],[119.59454520000008,-4.035509899999965],[119.59325560000002,-4.033441099999948],[119.59371680000004,-4.022382199999925],[119.59975640000005,-4.018831399999954],[119.60262780000005,-4.019601799999975],[119.60267660000011,-4.013703899999939],[119.61435830000005,-4.004209899999978],[119.60679590000007,-4.003556199999935],[119.60315780000008,-4.005804799999964],[119.59334530000001,-4.004789599999981],[119.58922460000008,-3.995478799999944],[119.5877594000001,-3.979838199999961],[119.58655260000012,-3.978585599999974],[119.58726960000001,-3.974150499999951],[119.5919636000001,-3.971285899999941],[119.5970043000001,-3.972544399999947],[119.60043270000006,-3.975515599999937],[119.60536020000006,-3.974385599999948],[119.60829550000005,-3.977530599999966],[119.60934380000003,-3.9824052],[119.61229220000007,-3.983912199999963],[119.6151751000001,-3.979561699999977],[119.622985,-3.974320099999943],[119.62284090000003,-3.971004799999946],[119.6263004000001,-3.972577299999955],[119.62693660000002,-3.968006699999933],[119.6285084000001,-3.9705608],[119.6283916000001,-3.967026699999963],[119.6294186,-3.969038099999977],[119.63335330000007,-3.9667987],[119.63536210000007,-3.967640599999925],[119.6356522000001,-3.970361299999979],[119.63272610000001,-3.968780099999947],[119.63093890000005,-3.971224699999937],[119.63305220000007,-3.971748099999957],[119.63288100000011,-3.973233099999959],[119.63432610000007,-3.9739001],[119.63668310000003,-3.973574399999961],[119.63338020000003,-3.9752816],[119.63781630000005,-3.975762199999963],[119.63461760000007,-3.977044899999953],[119.63529210000002,-3.978845299999932],[119.63342990000001,-3.979841],[119.63570240000001,-3.982406099999935],[119.63609150000002,-3.980257599999959],[119.64037730000007,-3.979893699999934],[119.6452011,-3.973865199999977],[119.65142990000004,-3.9729005],[119.66408660000002,-3.961288899999943],[119.68212890000007,-3.936694599999953],[119.69292450000012,-3.927029399999981],[119.69312290000005,-3.920706499999937],[119.70362850000004,-3.906290099999978],[119.70945740000002,-3.910962299999937],[119.71272280000005,-3.910791899999936],[119.71778870000003,-3.907406299999934],[119.72456360000001,-3.895049099999937],[119.72318270000005,-3.888454199999956],[119.72707320000006,-3.883453299999928],[119.72329850000006,-3.877132199999949],[119.72608750000006,-3.872486299999935],[119.72533270000008,-3.871295499999974],[119.72726780000005,-3.8679918],[119.72756850000007,-3.8628682],[119.72886530000005,-3.860046899999929],[119.73405290000005,-3.857139699999948],[119.7338641,-3.852830499999925],[119.73732660000007,-3.848447299999975],[119.73652510000011,-3.846523],[119.7400914000001,-3.843295299999966],[119.73829460000002,-3.837957],[119.745103,-3.817461699999967],[119.75350240000012,-3.799111399999958],[119.75647030000005,-3.800769],[119.74595640000007,-3.784881799999937],[119.75496670000007,-3.767369],[119.75857540000004,-3.7651401],[119.75024410000003,-3.760288],[119.7511826000001,-3.757275799999945],[119.75444030000006,-3.753602699999931],[119.75643920000005,-3.745046399999978],[119.76222990000008,-3.744859899999938],[119.7647095000001,-3.743655199999978],[119.76536560000011,-3.741616],[119.77799990000005,-3.737857799999972],[119.78251650000004,-3.731018799999958],[119.78520970000011,-3.729877699999975],[119.78236250000009,-3.718953899999974],[119.778859,-3.717785899999967],[119.77355550000004,-3.710858299999927],[119.75927170000011,-3.699015299999928],[119.75950670000009,-3.676200699999924],[119.76281770000003,-3.6748539],[119.76077480000004,-3.671496599999955],[119.75594690000003,-3.668153299999972],[119.7476689,-3.667673199999967],[119.72256170000003,-3.64626],[119.7227464,-3.636126099999956],[119.72065010000006,-3.632452099999966],[119.72308240000007,-3.626845899999978],[119.72246660000008,-3.592983699999934],[119.72067550000008,-3.588578799999937],[119.71880360000011,-3.556049799999926],[119.7159799000001,-3.546102699999949],[119.70768520000001,-3.538740799999971],[119.70604150000008,-3.535665899999969],[119.70679330000007,-3.5320899],[119.69962180000005,-3.511944399999948],[119.701884,-3.503513899999973],[119.69945770000004,-3.485775899999965],[119.70168540000009,-3.483147],[119.70011280000006,-3.480614699999933],[119.7023180000001,-3.478008199999977],[119.70216030000006,-3.476081099999931],[119.70593250000002,-3.473467],[119.68999970000004,-3.461452099999974],[119.68846880000001,-3.452555],[119.685599,-3.445984099999976],[119.693688,-3.448112],[119.69523740000011,-3.442025699999931],[119.6934692000001,-3.429252399999939],[119.69461590000003,-3.42727],[119.69875620000005,-3.4269511],[119.70202820000009,-3.424042],[119.6988884000001,-3.4240375],[119.698139,-3.422221099999945],[119.69878090000009,-3.416906499999925],[119.6965249000001,-3.4078358],[119.69731780000006,-3.403623899999957],[119.69491240000002,-3.394653699999935],[119.69863140000007,-3.384564],[119.69398220000005,-3.379903199999944],[119.69319070000006,-3.365515599999981],[119.69021690000011,-3.360147099999949]]]]},"properties":{"shapeName":"Pinrang","shapeISO":"","shapeID":"22746128B10938751990017","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[121.42536040000005,0.412434700000063],[121.4259432,0.414452600000061],[121.42485470000008,0.415541200000064],[121.41941190000011,0.414779200000055],[121.42093590000002,0.412928700000066],[121.42536040000005,0.412434700000063]]],[[[121.44322970000007,0.415296600000033],[121.44642640000006,0.416639600000053],[121.44712830000003,0.418604],[121.44179530000008,0.417869300000064],[121.4418564,0.415694200000075],[121.44322970000007,0.415296600000033]]],[[[121.5009381000001,0.437495300000023],[121.49922360000005,0.437413700000036],[121.4997945,0.435764300000073],[121.50395880000008,0.435372700000073],[121.50395880000008,0.436515600000064],[121.5009381000001,0.437495300000023]]],[[[121.5162964000001,0.434785900000065],[121.51950840000006,0.435645300000033],[121.52143,0.437985200000071],[121.51996040000006,0.440271100000075],[121.5151436000001,0.437985200000071],[121.5162964000001,0.434785900000065]]],[[[121.96697090000009,0.441957100000025],[121.9715404000001,0.44298630000003],[121.9723292000001,0.444552],[121.97092120000002,0.44727910000006],[121.96566080000002,0.444821],[121.9653833000001,0.442964],[121.96697090000009,0.441957100000025]]],[[[121.98136490000002,0.44842280000006],[121.98155020000002,0.444186400000035],[121.98343040000009,0.443581600000073],[121.98374230000002,0.447175500000071],[121.98136490000002,0.44842280000006]]],[[[121.6669968000001,0.455396600000029],[121.66843690000007,0.457268800000065],[121.66553970000007,0.458802100000071],[121.6669968000001,0.455396600000029]]],[[[121.55906290000007,0.459377],[121.56004,0.462595400000055],[121.55668930000002,0.463480100000027],[121.55906290000007,0.459377]]],[[[121.53057860000001,0.476445],[121.53095250000001,0.477805400000022],[121.5294037000001,0.477177700000027],[121.53057860000001,0.476445]]],[[[122.1114248,0.475646100000063],[122.10349460000009,0.479073600000049],[122.10133080000003,0.474234400000057],[122.10534030000008,0.473901100000035],[122.10644360000003,0.472046500000033],[122.11291920000008,0.472587800000042],[122.11303360000011,0.475561400000061],[122.1114248,0.475646100000063]]],[[[121.56149170000003,0.485924200000056],[121.5585688000001,0.485237400000074],[121.56206760000009,0.481003100000066],[121.55963440000005,0.477171400000032],[121.56063830000005,0.473389900000029],[121.56455630000005,0.483813200000043],[121.5634334,0.485730100000069],[121.56149170000003,0.485924200000056]]],[[[121.51280680000002,0.486472800000058],[121.51057070000002,0.485644300000047],[121.510834,0.48362080000004],[121.51318770000012,0.48411950000002],[121.51280680000002,0.486472800000058]]],[[[121.63541410000005,0.485851600000046],[121.63281250000011,0.486136600000066],[121.63239290000001,0.481627700000047],[121.6358643000001,0.48096],[121.6383667,0.483180700000048],[121.63774110000008,0.485607300000026],[121.63541410000005,0.485851600000046]]],[[[121.58346560000007,0.484894300000065],[121.581131,0.486705400000062],[121.57955170000002,0.485683800000061],[121.58033750000004,0.481573600000047],[121.58470150000005,0.481457900000066],[121.58722690000002,0.483277],[121.58346560000007,0.484894300000065]]],[[[121.71610080000005,0.486726200000021],[121.7161215000001,0.487894500000039],[121.71430160000011,0.487882900000045],[121.71461580000005,0.486378100000024],[121.71610080000005,0.486726200000021]]],[[[122.120216,0.490164200000038],[122.1190140000001,0.490106800000035],[122.1168642,0.485717700000066],[122.12253950000002,0.486971100000062],[122.120216,0.490164200000038]]],[[[121.6255417000001,0.489779],[121.6204987000001,0.489137500000027],[121.6227798000001,0.483439700000019],[121.61620330000005,0.48540870000005],[121.61237340000002,0.488646700000061],[121.61038210000004,0.484556600000076],[121.61370850000003,0.482647100000065],[121.62940220000007,0.482498600000042],[121.62957760000006,0.486323800000036],[121.6271286000001,0.486941],[121.6255417000001,0.489779]]],[[[121.52008770000009,0.490160400000036],[121.51527090000002,0.489416400000039],[121.51463180000007,0.486903100000063],[121.52159840000002,0.481125300000031],[121.52477570000008,0.480633600000033],[121.52610560000005,0.483385200000043],[121.5242042000001,0.488067700000045],[121.52008770000009,0.490160400000036]]],[[[121.63653560000012,0.490693],[121.63385010000002,0.491836700000022],[121.63293460000011,0.490638200000035],[121.63596340000004,0.488283],[121.63832860000002,0.489688800000067],[121.63653560000012,0.490693]]],[[[121.58240460000002,0.501136200000076],[121.57931010000004,0.500100100000054],[121.5799353000001,0.497587100000032],[121.585051,0.498172100000033],[121.58504040000003,0.499757400000021],[121.58240460000002,0.501136200000076]]],[[[121.65920180000012,0.501083],[121.65691920000006,0.503388400000063],[121.65526230000012,0.501803300000063],[121.65841120000005,0.499827100000061],[121.6597081000001,0.500038600000039],[121.65920180000012,0.501083]]],[[[121.6695188000001,0.505904900000075],[121.66821590000006,0.505735200000061],[121.67041910000012,0.504898700000069],[121.6695188000001,0.505904900000075]]],[[[121.57420350000007,0.508624500000053],[121.57278440000005,0.507868200000075],[121.57476040000006,0.507786700000054],[121.57420350000007,0.508624500000053]]],[[[121.63109270000007,0.508973900000058],[121.62744690000011,0.508106],[121.628598,0.50423840000002],[121.63350750000006,0.50588],[121.63109270000007,0.508973900000058]]],[[[121.63984870000002,0.510423],[121.638653,0.510363900000073],[121.6383995000001,0.508472600000061],[121.64032180000004,0.505931700000076],[121.64216170000009,0.506079600000021],[121.64248980000002,0.508417500000064],[121.63984870000002,0.510423]]],[[[121.64596270000004,0.511364800000024],[121.64346210000008,0.510459900000058],[121.64376760000005,0.508465800000067],[121.64495720000002,0.508357300000057],[121.64548460000003,0.506051700000057],[121.64871970000002,0.50498360000006],[121.64921420000007,0.507097700000031],[121.64596270000004,0.511364800000024]]],[[[121.6614704000001,0.507471400000043],[121.66220970000006,0.510718600000075],[121.65906770000004,0.512781800000027],[121.65735890000008,0.512426600000026],[121.65853730000003,0.508793800000035],[121.6614704000001,0.507471400000043]]],[[[121.6940608000001,0.512638300000049],[121.68919180000012,0.512647],[121.6830867000001,0.509444],[121.67991920000009,0.501682200000062],[121.68089140000006,0.496813300000042],[121.6874616,0.488292200000046],[121.69055430000003,0.48648780000002],[121.69955420000008,0.484122800000023],[121.70708980000006,0.484613700000068],[121.70971470000006,0.488462900000059],[121.70704240000009,0.493698300000062],[121.70695560000001,0.499260800000059],[121.70194720000006,0.50723540000007],[121.69740320000005,0.511458],[121.6940608000001,0.512638300000049]]],[[[121.67675240000005,0.515687300000025],[121.67387380000002,0.514212300000054],[121.67294220000008,0.509813200000053],[121.67331970000009,0.507992500000057],[121.67631720000008,0.506294900000057],[121.68007310000007,0.507472500000063],[121.68211020000001,0.509829300000035],[121.68069170000001,0.513911900000039],[121.67675240000005,0.515687300000025]]],[[[121.66225950000012,0.513946500000031],[121.663081,0.515521200000023],[121.66057090000004,0.516046200000062],[121.66225950000012,0.513946500000031]]],[[[121.6177679000001,0.516276400000038],[121.61660820000009,0.515716],[121.61756240000011,0.51255720000006],[121.62147920000007,0.512344700000028],[121.62140130000012,0.514235],[121.6177679000001,0.516276400000038]]],[[[121.55340980000005,0.513374100000021],[121.55564040000002,0.513945100000058],[121.55687950000004,0.51660860000004],[121.5524871,0.515793400000064],[121.55192420000003,0.513931],[121.55340980000005,0.513374100000021]]],[[[121.52381680000008,0.518982300000062],[121.52097730000003,0.521559600000046],[121.52124890000005,0.519061200000067],[121.52381680000008,0.518982300000062]]],[[[121.646251,0.526467900000057],[121.64436520000004,0.525781700000039],[121.64535250000006,0.523096500000065],[121.646251,0.526467900000057]]],[[[121.52593270000011,0.538315600000033],[121.52351440000007,0.537975700000061],[121.52372080000009,0.536360200000047],[121.52188890000002,0.535062200000027],[121.52357780000011,0.531782600000042],[121.52563880000002,0.531913900000063],[121.52723290000006,0.535351700000035],[121.52593270000011,0.538315600000033]]],[[[121.53662820000011,0.53732610000003],[121.53788580000003,0.538528100000065],[121.53587170000003,0.538649700000065],[121.53662820000011,0.53732610000003]]],[[[121.52562890000002,0.542341400000055],[121.52466450000009,0.543374700000072],[121.52314910000007,0.54220360000005],[121.5241823,0.540722600000038],[121.52745520000008,0.541134700000043],[121.52562890000002,0.542341400000055]]],[[[122.07691000000011,0.903975800000069],[122.07059590000006,0.904789500000049],[122.06468250000012,0.901145800000052],[122.05792320000012,0.901151200000072],[122.03892140000005,0.888364500000023],[122.03045930000008,0.885753700000066],[122.02103350000004,0.887383],[122.01128990000007,0.891494700000067],[122.0029512000001,0.889445900000055],[121.99930370000004,0.890117500000031],[121.9902790000001,0.896829700000069],[121.98242730000004,0.907272900000066],[121.9757843000001,0.90423050000004],[121.96493710000004,0.907305200000053],[121.9546616,0.907719600000064],[121.9486687000001,0.914105200000051],[121.94726620000006,0.918747500000052],[121.94415220000008,0.919581300000061],[121.93816390000006,0.927796500000056],[121.93203970000002,0.929568300000028],[121.92669500000011,0.92748],[121.92166110000005,0.927791500000069],[121.91779250000002,0.934129600000063],[121.91597380000007,0.941797300000076],[121.90209470000002,0.963876500000026],[121.89602190000005,0.966900100000032],[121.89028560000008,0.974766200000033],[121.8841605,0.978833],[121.878763,0.979978800000026],[121.87606340000002,0.983107700000062],[121.86762250000004,0.986152900000036],[121.86289840000006,0.990793900000028],[121.8514808000001,0.992667900000072],[121.84669010000005,0.985767500000065],[121.8489234000001,0.980760500000031],[121.84793810000008,0.978517100000033],[121.83738340000002,0.973842300000058],[121.83067130000006,0.960812600000054],[121.8274540000001,0.960185500000023],[121.82117430000005,0.96164390000007],[121.81190650000008,0.950236500000074],[121.80637700000011,0.951026],[121.79411760000005,0.948249900000064],[121.7855657,0.939730600000075],[121.78002770000012,0.939418500000045],[121.76168610000002,0.93222570000006],[121.73537080000006,0.92966320000005],[121.71929430000012,0.920229400000039],[121.70916180000006,0.917298600000038],[121.70521360000009,0.913847300000043],[121.70152650000011,0.907050800000036],[121.69617420000009,0.906369400000074],[121.691278,0.902602500000057],[121.68858850000004,0.902812300000051],[121.68412920000003,0.900489800000059],[121.67336080000007,0.903459200000043],[121.65809780000006,0.891751300000067],[121.65456350000011,0.891227700000059],[121.64941850000002,0.894727500000045],[121.6457888000001,0.895172100000025],[121.63518950000002,0.890986600000076],[121.62328660000003,0.88214720000002],[121.61038170000006,0.882240900000056],[121.60307210000008,0.872908600000073],[121.58790150000004,0.873244500000055],[121.58391090000009,0.87163970000006],[121.57744320000006,0.872239900000068],[121.57398,0.870631100000026],[121.566851,0.874597300000062],[121.56321980000007,0.87393830000002],[121.55700940000008,0.877992200000051],[121.5477552000001,0.878472500000044],[121.53694810000002,0.875907200000029],[121.5346128000001,0.868014100000039],[121.53570710000008,0.860122300000057],[121.5324025000001,0.852711800000066],[121.52637520000007,0.85223910000002],[121.50585300000012,0.845854700000075],[121.50138420000007,0.846062],[121.50122910000005,0.842874],[121.49941,0.843231400000036],[121.49368780000009,0.839508200000068],[121.48255410000002,0.839661400000068],[121.48079380000001,0.837600900000041],[121.47658920000003,0.837621400000046],[121.4752668000001,0.841474700000049],[121.4719937000001,0.842208200000073],[121.46679640000002,0.847455300000036],[121.46230650000007,0.845039300000053],[121.45526910000001,0.847565900000063],[121.45097690000011,0.846456800000055],[121.43716020000011,0.847026500000027],[121.43318660000011,0.84440660000007],[121.42634080000005,0.843451500000072],[121.42009830000006,0.84420410000007],[121.4165306000001,0.847945700000025],[121.41121160000012,0.844930100000056],[121.40130810000005,0.843443600000057],[121.39801550000004,0.849388200000021],[121.39385430000004,0.851202600000022],[121.39035450000006,0.850536700000021],[121.38599880000004,0.854276],[121.3787565,0.85243730000002],[121.3745738,0.853210700000034],[121.36718480000002,0.849193800000023],[121.36482910000007,0.84999010000007],[121.36366140000007,0.852381600000058],[121.35896140000011,0.853415],[121.3547913000001,0.850163],[121.34993340000005,0.850775400000032],[121.34702880000009,0.848271500000067],[121.34804330000009,0.843776],[121.35190420000004,0.840686100000028],[121.35318350000011,0.834529700000076],[121.3504871,0.821345600000029],[121.3584800000001,0.815568400000075],[121.36142990000008,0.814949500000068],[121.36450180000008,0.80680730000006],[121.36339350000003,0.801009800000031],[121.35731810000004,0.800874400000055],[121.35412710000003,0.799012800000071],[121.35334090000003,0.795310800000038],[121.34455620000006,0.79310890000005],[121.33711540000002,0.794988400000022],[121.33238290000008,0.794565700000021],[121.326161,0.792162200000064],[121.32349920000001,0.788108200000067],[121.317512,0.784517900000026],[121.30591290000007,0.791853700000047],[121.303248,0.795529],[121.29270870000005,0.794933400000048],[121.28918550000003,0.79818750000004],[121.27015260000007,0.795794200000046],[121.25701340000012,0.798687],[121.252083,0.798485600000049],[121.245851,0.801192400000048],[121.23754890000009,0.801185500000031],[121.2336216000001,0.796984700000053],[121.2158736,0.792020100000059],[121.21720920000007,0.783737700000074],[121.21375970000008,0.779290200000048],[121.21356910000009,0.773352700000032],[121.2083037000001,0.767686400000059],[121.20091410000009,0.766099700000041],[121.19201670000007,0.766583300000036],[121.19042490000004,0.761940600000059],[121.18643070000007,0.757249400000035],[121.18564660000004,0.750001400000031],[121.18206650000002,0.743211600000052],[121.1837703000001,0.737412100000029],[121.1826847000001,0.734083600000019],[121.18481270000007,0.731438300000036],[121.18741580000005,0.72212090000005],[121.18056610000008,0.713750600000026],[121.17885740000008,0.70125070000006],[121.1742762,0.69297640000002],[121.17304620000004,0.685382900000036],[121.16124520000005,0.678653300000065],[121.16251860000011,0.676595500000076],[121.16550230000007,0.669336600000065],[121.17325460000006,0.66539350000005],[121.17918490000011,0.655097900000044],[121.18665350000003,0.651439900000071],[121.19435930000009,0.645357100000069],[121.19665850000001,0.641862900000035],[121.20256590000008,0.642625700000053],[121.2189201000001,0.638400100000069],[121.22799210000005,0.64539220000006],[121.23068680000006,0.643206100000043],[121.23182830000007,0.641484500000047],[121.23164140000006,0.635066],[121.22753160000002,0.62916910000007],[121.22786350000001,0.626126400000032],[121.23107890000006,0.621420600000022],[121.23510870000007,0.608197100000041],[121.23939210000003,0.602213500000062],[121.24284000000011,0.600480600000026],[121.25000000000011,0.600942600000053],[121.26180440000007,0.589909900000066],[121.270121,0.587625],[121.27533830000004,0.582555700000057],[121.29493420000006,0.580105200000048],[121.30038390000004,0.575294800000052],[121.3015689,0.569835300000022],[121.30384880000008,0.567855],[121.30763150000007,0.56857640000004],[121.31640230000005,0.57845],[121.32011430000011,0.576338],[121.3240393000001,0.576637300000073],[121.32987550000007,0.57448990000006],[121.33530510000003,0.575250100000062],[121.33801240000003,0.573520500000029],[121.34332360000008,0.565831400000036],[121.34569840000006,0.565844],[121.350266,0.555242700000065],[121.3439522000001,0.547387300000025],[121.34766600000012,0.53766],[121.34726280000007,0.535175600000059],[121.34256890000006,0.526821600000062],[121.33567710000011,0.526539100000036],[121.33426630000008,0.523946300000034],[121.33129760000008,0.522739],[121.33368970000004,0.520146700000055],[121.33369370000003,0.511689700000034],[121.33555400000012,0.511299100000031],[121.3380926000001,0.506540100000052],[121.3444247000001,0.505352100000039],[121.34307170000011,0.503473500000041],[121.3443009,0.502910400000076],[121.34462560000009,0.49700260000003],[121.35168370000008,0.492013],[121.35079340000004,0.48828130000004],[121.3426002000001,0.483708100000058],[121.341935,0.478745400000037],[121.33816460000003,0.476013600000044],[121.33751460000008,0.473817600000075],[121.34282630000007,0.473150900000064],[121.34625720000008,0.475668100000064],[121.3503257000001,0.475751100000025],[121.36174160000007,0.471591600000068],[121.3716104,0.476149100000043],[121.3843839000001,0.477686200000051],[121.38984890000006,0.48175260000005],[121.39178520000007,0.477336500000035],[121.396022,0.477361700000074],[121.39865880000002,0.478720700000054],[121.39881290000005,0.48175580000003],[121.40037870000003,0.481994100000065],[121.40103080000006,0.485023500000068],[121.4063681,0.487611],[121.40999580000005,0.487632],[121.40620620000004,0.485606800000028],[121.40448780000008,0.47890760000007],[121.40573580000012,0.475960300000054],[121.40809810000007,0.474785300000065],[121.40726510000002,0.473766100000034],[121.40944470000011,0.472626600000069],[121.41261530000008,0.477671600000065],[121.41259880000007,0.48072860000002],[121.41008460000012,0.484252800000036],[121.41088380000008,0.485438400000021],[121.4133256,0.486286100000029],[121.42151660000002,0.483773400000075],[121.42378760000008,0.481702200000029],[121.42761510000003,0.484662200000059],[121.42787010000006,0.489687200000049],[121.43014790000007,0.488917300000026],[121.43182170000011,0.490322900000024],[121.43192670000008,0.493249200000037],[121.43411340000011,0.496143],[121.43315060000009,0.497944800000027],[121.43799180000008,0.498496200000034],[121.43929360000004,0.500869400000056],[121.44214840000006,0.499321200000054],[121.44237020000003,0.497137400000042],[121.43721180000011,0.492375800000048],[121.437898,0.48466940000003],[121.43402780000008,0.483519100000024],[121.43081360000008,0.475738200000023],[121.43350340000006,0.471239700000069],[121.4404042000001,0.46535],[121.4430569000001,0.464700700000037],[121.448739,0.466399500000023],[121.4562433000001,0.473414500000047],[121.46583730000009,0.476224700000046],[121.47458410000002,0.483497300000067],[121.4840736000001,0.484525100000042],[121.49437140000009,0.478832],[121.50171260000002,0.488035800000034],[121.507989,0.486919700000044],[121.51044640000009,0.488482400000066],[121.51089360000003,0.491814900000065],[121.51371230000007,0.49439620000004],[121.5176494000001,0.49471],[121.519268,0.49645380000004],[121.51944220000007,0.504639],[121.51640680000003,0.511055100000021],[121.51366910000002,0.512544500000047],[121.51802670000006,0.514933600000063],[121.5192545000001,0.51887540000007],[121.51866260000008,0.521519200000057],[121.5161309,0.521825300000046],[121.51311250000003,0.52504760000005],[121.51272950000009,0.528884700000049],[121.51658710000004,0.533573600000068],[121.52159540000002,0.532737700000041],[121.52041330000009,0.542239300000062],[121.52385630000003,0.544173900000033],[121.52424530000008,0.550094300000069],[121.52607880000005,0.550918400000057],[121.53074110000011,0.549447100000066],[121.53174650000005,0.554377300000056],[121.53340990000004,0.555830400000048],[121.53633680000007,0.55388030000006],[121.533153,0.549300900000048],[121.53457360000004,0.546258800000032],[121.54118390000008,0.544047300000045],[121.54427650000002,0.545165],[121.54976410000006,0.541264100000035],[121.55296480000004,0.543242500000019],[121.55591190000007,0.53728110000003],[121.55814550000002,0.53802330000002],[121.56209590000003,0.535326],[121.56858710000006,0.535537],[121.57028580000008,0.532903200000021],[121.57302130000005,0.532965100000069],[121.57816250000008,0.536148800000035],[121.5887411000001,0.536670400000048],[121.5908961,0.53152],[121.59236510000005,0.531261500000028],[121.59354550000012,0.533302200000037],[121.59279560000004,0.537000600000056],[121.59579860000008,0.539264600000024],[121.59828650000009,0.539266200000043],[121.59934380000004,0.536770700000034],[121.59725790000005,0.533414900000025],[121.59786180000003,0.529744],[121.60136000000011,0.527559500000052],[121.60454730000004,0.529513700000052],[121.6074268000001,0.533875400000056],[121.60356480000007,0.536937100000046],[121.60174080000002,0.545653600000037],[121.60333760000003,0.548753900000065],[121.60423140000012,0.546767600000067],[121.606299,0.546392600000047],[121.60782680000011,0.553139],[121.60796520000008,0.542436400000042],[121.60579540000003,0.540229100000033],[121.6061896000001,0.538503700000035],[121.60947270000008,0.539428],[121.609852,0.54407980000002],[121.6137374000001,0.547412200000053],[121.61889210000004,0.548238200000071],[121.6204067000001,0.547215600000072],[121.61964390000003,0.53944910000007],[121.61806780000006,0.53768180000003],[121.61923720000004,0.528165100000024],[121.61721000000011,0.524430600000073],[121.62127880000003,0.522314100000074],[121.62560520000011,0.524657500000046],[121.6235464,0.536200300000075],[121.63237040000001,0.533040600000049],[121.6334505000001,0.529272200000037],[121.63713890000008,0.52458450000006],[121.64238890000001,0.525273300000038],[121.64228920000005,0.529903200000035],[121.63940250000007,0.528513800000042],[121.64027090000002,0.531116900000029],[121.63932960000011,0.532393300000024],[121.63522420000004,0.535468200000025],[121.63133950000008,0.535516],[121.62807540000006,0.53888790000002],[121.63107280000008,0.541149800000028],[121.6331288,0.537716],[121.63492520000011,0.537891300000069],[121.6360853000001,0.540395500000045],[121.63331390000008,0.544042200000035],[121.63532830000008,0.54497340000006],[121.641414,0.54163490000002],[121.64136770000005,0.536632600000075],[121.64549850000003,0.535193100000072],[121.64742070000011,0.538725200000044],[121.6468556000001,0.536944],[121.64922970000009,0.533452700000055],[121.651986,0.533407400000044],[121.65249850000009,0.539901300000054],[121.6550492,0.541882100000066],[121.65696350000007,0.536494800000071],[121.66191820000006,0.538691700000072],[121.66121610000005,0.537339400000064],[121.66266590000009,0.537769600000047],[121.65986810000004,0.535642400000029],[121.6600165000001,0.531925900000033],[121.6661166,0.529610900000023],[121.6653477000001,0.52616880000005],[121.66661650000003,0.523098100000027],[121.6735258000001,0.519665400000065],[121.67945780000002,0.520983900000033],[121.6840552000001,0.519229],[121.68278930000008,0.516197400000067],[121.68381720000002,0.51358010000007],[121.689054,0.514113900000041],[121.69240790000003,0.51894470000002],[121.70018830000004,0.52073230000002],[121.70211070000005,0.522438800000032],[121.7039592000001,0.519307800000036],[121.7078570000001,0.518059500000049],[121.70925080000006,0.52070770000006],[121.71026460000007,0.518461],[121.7126373000001,0.519245900000044],[121.71085820000008,0.521869600000059],[121.711981,0.524041700000055],[121.71822910000003,0.523957900000028],[121.72244850000004,0.522160500000041],[121.72280490000003,0.518340800000033],[121.7205143000001,0.519304200000022],[121.7143612000001,0.514282600000058],[121.71555090000004,0.51058880000005],[121.7192338000001,0.508291200000031],[121.71883430000003,0.506247300000041],[121.7272028000001,0.502125600000056],[121.73198380000008,0.502465800000039],[121.73120380000012,0.498794600000053],[121.73449660000006,0.491935200000057],[121.74077960000011,0.484336400000075],[121.74625960000003,0.474048500000038],[121.7557571000001,0.464858800000059],[121.75670270000012,0.462755],[121.75432550000005,0.462699300000054],[121.75497670000004,0.46075380000002],[121.76178440000001,0.452065600000026],[121.766852,0.449731400000076],[121.76696670000001,0.446325900000033],[121.77132620000009,0.442418900000064],[121.78086570000005,0.437199600000042],[121.78401680000002,0.437247700000057],[121.80010890000005,0.419834500000036],[121.80359790000011,0.413750700000037],[121.80598640000005,0.412412600000039],[121.81436910000002,0.421744500000045],[121.83406080000009,0.423640100000057],[121.84512230000007,0.430184700000041],[121.84780310000008,0.435388800000055],[121.84890880000012,0.434841900000038],[121.84820160000004,0.431916900000033],[121.85348760000011,0.433660900000064],[121.85504350000008,0.43570440000002],[121.85673670000006,0.432277800000065],[121.8579423000001,0.432392800000059],[121.8621247000001,0.435070600000074],[121.8632143000001,0.437754700000028],[121.867736,0.438334500000053],[121.86882330000003,0.441772300000025],[121.87886150000008,0.437176900000054],[121.8847866000001,0.438063200000045],[121.89548800000011,0.443081200000051],[121.9003451000001,0.443925700000023],[121.91428680000001,0.44252780000005],[121.919993,0.447829200000058],[121.92238150000003,0.447875100000033],[121.92336040000009,0.44635640000007],[121.93138620000002,0.447227300000065],[121.93797840000002,0.444698800000026],[121.94274470000005,0.448247],[121.9617376000001,0.451917600000058],[121.9708260000001,0.458962400000075],[121.97402880000004,0.459813800000063],[121.97688280000011,0.457290200000045],[121.97862820000012,0.452754900000059],[121.98004780000008,0.452538400000037],[121.98379320000004,0.455246500000044],[121.9844223,0.458598100000074],[121.98760410000011,0.461300300000062],[121.99251240000001,0.459367800000052],[122.00018470000009,0.459437800000046],[122.00182280000001,0.46257380000003],[122.00454120000006,0.464178100000026],[122.0055618,0.463252],[122.00739510000005,0.46469060000004],[122.0106962000001,0.464551700000072],[122.0173208000001,0.468199800000036],[122.02900150000005,0.467901900000072],[122.04893350000009,0.477505800000074],[122.06702220000011,0.47969],[122.08077990000004,0.476557400000047],[122.08912920000012,0.483467100000041],[122.09285010000008,0.484909200000061],[122.09847410000009,0.484536800000058],[122.1023216000001,0.487710700000036],[122.108289,0.486663400000054],[122.10828970000011,0.484929400000055],[122.10928010000009,0.486180800000056],[122.11335860000008,0.485728800000061],[122.11392200000012,0.487691400000074],[122.11730610000006,0.489090200000021],[122.114188,0.495026800000062],[122.11197820000007,0.496485600000028],[122.11234700000011,0.49808790000003],[122.11405290000005,0.496789200000023],[122.11775000000011,0.498518600000068],[122.11947450000002,0.496857800000043],[122.121788,0.507853900000043],[122.11862760000008,0.542860400000052],[122.1247724000001,0.54692730000005],[122.12993430000006,0.557117100000028],[122.12915310000005,0.566927200000066],[122.130921,0.585225200000025],[122.13450610000007,0.595537900000068],[122.13271070000008,0.611323900000059],[122.13265520000004,0.634751600000072],[122.12479230000008,0.682869700000026],[122.1206896000001,0.728205],[122.11587020000002,0.786242700000059],[122.114844,0.818658500000026],[122.10260540000002,0.822149800000034],[122.08995040000002,0.822938700000066],[122.0857631,0.837293600000066],[122.08177740000008,0.843585700000062],[122.08212,0.860011200000031],[122.0879665000001,0.876276200000063],[122.08806520000007,0.892116700000031],[122.08753320000005,0.893878100000052],[122.0807072,0.89774790000007],[122.07691000000011,0.903975800000069]]]]},"properties":{"shapeName":"Pohuwato","shapeISO":"","shapeID":"22746128B94591553952030","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[119.35889340000006,-3.486274399999957],[119.35514540000008,-3.4879509],[119.35857390000001,-3.488069899999971],[119.35889340000006,-3.486274399999957]]],[[[119.37115410000001,-3.467318199999966],[119.36417190000009,-3.469251499999928],[119.36265320000007,-3.471223699999939],[119.36317540000005,-3.4806364],[119.36489990000007,-3.484805899999969],[119.37189440000009,-3.484121099999925],[119.37390260000006,-3.482065499999976],[119.36961890000009,-3.477219],[119.37235720000001,-3.469711899999936],[119.37115410000001,-3.467318199999966]]],[[[119.4185331000001,-3.469146599999931],[119.41473960000008,-3.467203099999949],[119.4129785,-3.469922199999928],[119.41017990000012,-3.470591499999955],[119.40803660000006,-3.474139099999945],[119.41296090000003,-3.475958299999945],[119.41414060000011,-3.477798099999973],[119.41706610000006,-3.475241499999925],[119.4185331000001,-3.469146599999931]]],[[[119.37648650000006,-3.467250099999944],[119.37474210000005,-3.465996899999936],[119.37552920000007,-3.468536699999959],[119.37648650000006,-3.467250099999944]]],[[[119.390703,-3.464901699999928],[119.38923000000011,-3.470682099999976],[119.39178210000011,-3.475742499999967],[119.39435360000004,-3.4770191],[119.396001,-3.472701899999947],[119.39462110000011,-3.466369],[119.390703,-3.464901699999928]]],[[[119.00569770000004,-3.532982499999946],[119.02222990000007,-3.515648499999941],[119.02591390000009,-3.515817199999958],[119.03124810000008,-3.513518199999965],[119.03956280000011,-3.516255499999943],[119.05567950000011,-3.505903099999955],[119.06466340000009,-3.502473],[119.0780069000001,-3.504644],[119.08929720000003,-3.509265299999925],[119.09891130000005,-3.511310299999934],[119.10630090000006,-3.516307099999949],[119.11095580000006,-3.516845199999977],[119.11912030000008,-3.512560699999938],[119.12496180000005,-3.501505899999927],[119.13555010000005,-3.494069099999933],[119.1688703000001,-3.488142399999958],[119.19699770000011,-3.493805299999963],[119.2207658000001,-3.485690399999953],[119.233419,-3.486843299999975],[119.24031480000008,-3.4807874],[119.2420945,-3.472429099999943],[119.24603880000006,-3.466271799999959],[119.26356220000002,-3.4570084],[119.28050680000001,-3.454427099999975],[119.28701180000007,-3.448998],[119.28944480000007,-3.4461923],[119.28951460000008,-3.440578399999936],[119.28635550000001,-3.441171099999963],[119.28429590000007,-3.447572899999955],[119.27994650000005,-3.450891199999944],[119.27823710000007,-3.448991299999932],[119.2794338000001,-3.437914],[119.28180820000011,-3.440935899999943],[119.2831298000001,-3.440417099999934],[119.28124350000007,-3.436852599999952],[119.28163030000007,-3.434039599999949],[119.28551060000007,-3.429372799999953],[119.292904,-3.431112599999949],[119.29967590000001,-3.426436299999978],[119.29944380000006,-3.424939199999926],[119.301551,-3.426093],[119.3069574000001,-3.425185699999929],[119.31763280000007,-3.427894899999956],[119.33036410000011,-3.434649099999945],[119.33455870000012,-3.4322783],[119.34280540000009,-3.433638],[119.34985250000011,-3.4399435],[119.3543744000001,-3.441213799999957],[119.35877770000002,-3.445005499999979],[119.36164440000005,-3.449553199999968],[119.36711490000005,-3.4532586],[119.36900160000005,-3.459466199999952],[119.37304460000007,-3.463216799999941],[119.37554990000001,-3.461775899999964],[119.37603120000006,-3.460242499999936],[119.37454630000002,-3.459563699999933],[119.37579360000007,-3.459463],[119.37458630000003,-3.458895],[119.37540030000002,-3.457388599999945],[119.38096790000009,-3.461079699999971],[119.376822,-3.454975299999944],[119.3864982,-3.449809199999947],[119.38893970000004,-3.456653199999948],[119.39794480000012,-3.456795899999975],[119.40424930000006,-3.461613199999931],[119.4033296,-3.462730099999931],[119.40458480000007,-3.464029],[119.41139680000003,-3.466654399999925],[119.4167404000001,-3.463755099999958],[119.41636230000006,-3.461880199999939],[119.41461570000001,-3.461664],[119.41923010000005,-3.458209299999965],[119.42239070000005,-3.457461899999942],[119.42385530000001,-3.459047099999964],[119.42783610000004,-3.459628699999939],[119.4264303000001,-3.472699],[119.42958390000001,-3.471624099999929],[119.43117180000002,-3.475454799999966],[119.43558660000008,-3.473857499999951],[119.439816,-3.478315699999939],[119.44166740000003,-3.484106399999973],[119.44211120000011,-3.4781944],[119.44434480000007,-3.476429799999949],[119.45242710000002,-3.478152],[119.46149380000008,-3.486102699999947],[119.47414320000007,-3.502913799999931],[119.47528810000006,-3.501175399999966],[119.47885150000002,-3.501171699999929],[119.47810170000002,-3.498927599999945],[119.48078160000011,-3.496968199999969],[119.478816,-3.494560099999944],[119.48392430000001,-3.493814399999962],[119.4846682000001,-3.488543],[119.48705330000007,-3.484794799999975],[119.49258330000009,-3.483847099999934],[119.49041940000006,-3.481504899999948],[119.49238350000007,-3.474639499999967],[119.48598640000012,-3.468754299999944],[119.48255440000003,-3.4679137],[119.48294770000007,-3.465246299999933],[119.4767637000001,-3.461927399999979],[119.47668010000007,-3.459179899999981],[119.47500350000007,-3.457584499999939],[119.47772730000008,-3.4563136],[119.478493,-3.450498099999947],[119.475635,-3.448562299999935],[119.47355560000005,-3.4427017],[119.47416850000002,-3.440082699999948],[119.47118880000005,-3.438703799999928],[119.46881610000003,-3.433323],[119.47214120000001,-3.430363299999954],[119.4723335000001,-3.426733799999965],[119.47011780000003,-3.423802],[119.47108990000004,-3.417029599999978],[119.47370980000005,-3.416100899999947],[119.4733212000001,-3.413164299999949],[119.46703120000006,-3.406238899999948],[119.4669133000001,-3.398122499999943],[119.464411,-3.396248899999932],[119.465427,-3.389937399999951],[119.45971820000011,-3.386860699999943],[119.4589916000001,-3.384729499999935],[119.46526950000009,-3.377419299999929],[119.46284030000004,-3.372653],[119.45494990000009,-3.366174299999955],[119.45001740000009,-3.355421599999943],[119.43820690000007,-3.351844799999981],[119.42999140000006,-3.345185599999979],[119.43124710000006,-3.339234899999951],[119.4358664,-3.340054899999927],[119.440221,-3.338290499999971],[119.440758,-3.336082699999963],[119.4384205,-3.335269799999935],[119.43795140000009,-3.332268699999929],[119.43555880000008,-3.331155599999931],[119.43212140000003,-3.324777499999925],[119.4327118000001,-3.3226794],[119.422936,-3.318182699999966],[119.41188020000004,-3.319739899999945],[119.40834110000003,-3.313651199999924],[119.40157640000007,-3.306441799999959],[119.38474780000001,-3.302344599999969],[119.36864340000011,-3.293653399999926],[119.36043140000004,-3.293089399999928],[119.35202730000003,-3.289159099999949],[119.34526360000007,-3.288960299999928],[119.33644160000006,-3.280419599999959],[119.32335440000008,-3.274170499999968],[119.3168012000001,-3.266843299999948],[119.31179640000005,-3.264053099999956],[119.30434190000005,-3.263225699999964],[119.30152670000007,-3.257453699999928],[119.29521620000003,-3.252680799999951],[119.28944990000002,-3.232712],[119.29066050000006,-3.225836699999945],[119.292819,-3.222569],[119.289488,-3.212218],[119.288893,-3.201273],[119.27980800000012,-3.185353],[119.268845,-3.177878],[119.264692,-3.176549],[119.25620570000001,-3.165763],[119.25219270000002,-3.143765599999938],[119.25379850000002,-3.126534799999945],[119.22642670000005,-3.093240299999934],[119.22389270000008,-3.087644299999965],[119.22377820000008,-3.072374499999967],[119.214093,-3.07404],[119.2105,-3.078934],[119.188786,-3.091882],[119.1809492000001,-3.098759099999938],[119.176674,-3.105326],[119.169426,-3.10545],[119.165523,-3.110158],[119.161063,-3.112884],[119.147981,-3.117323],[119.134492,-3.105669],[119.131727,-3.098182],[119.125355,-3.096303],[119.123034,-3.094125],[119.11239300000011,-3.092691],[119.109138,-3.093498],[119.106759,-3.097795],[119.097872,-3.105379],[119.08911300000011,-3.104378],[119.081169,-3.113051],[119.074799,-3.112336],[119.0706401000001,-3.107072899999935],[119.06743950000009,-3.109227],[119.06478730000003,-3.104885699999954],[119.04832080000006,-3.090375399999971],[119.04683320000004,-3.087622899999928],[119.043382,-3.086300499999936],[119.00860000000011,-3.087187],[118.9839,-3.092495],[118.9726,-3.091816],[118.96209460000011,-3.086607699999945],[118.95880430000011,-3.086420099999941],[118.95551120000005,-3.088525199999935],[118.95233310000003,-3.093428899999935],[118.95561680000003,-3.096203099999968],[118.95266860000004,-3.096613699999978],[118.95038530000011,-3.100079499999936],[118.94757560000005,-3.101543199999981],[118.94605610000008,-3.105864299999951],[118.94774790000008,-3.111024599999951],[118.94936040000005,-3.111934299999973],[118.9485022,-3.113628299999959],[118.95156,-3.11708],[118.95184480000012,-3.120195399999943],[118.95014860000003,-3.1223627],[118.95331950000002,-3.126542699999959],[118.94907120000005,-3.1360868],[118.95332420000011,-3.138717799999938],[118.9541468000001,-3.140811699999972],[118.95145850000006,-3.151669399999946],[118.95333340000002,-3.1525564],[118.95348970000009,-3.158652599999925],[118.95091280000008,-3.159644799999967],[118.94349100000011,-3.1578913],[118.92361170000004,-3.163885899999968],[118.9109396,-3.169541899999956],[118.9033,-3.178285],[118.8979,-3.193344],[118.89810000000011,-3.197658],[118.9026,-3.207903],[118.9064,-3.214639],[118.9132,-3.222127],[118.91350000000011,-3.226671],[118.9087,-3.239201],[118.9091,-3.243516],[118.9155,-3.278208],[118.92120000000011,-3.297427],[118.92,-3.302371],[118.9129,-3.307535],[118.9101,-3.311729],[118.9051,-3.327537],[118.9114,-3.346642],[118.9137,-3.364936],[118.9192,-3.371502],[118.9179,-3.392147],[118.9196,-3.399454],[118.9154,-3.406349],[118.9158000000001,-3.409053],[118.9405,-3.437564],[118.9501,-3.451671],[118.9524,-3.465133],[118.95538680000004,-3.467714699999931],[118.95551610000007,-3.469650499999943],[118.95826020000004,-3.471153399999935],[118.96128580000004,-3.476576699999953],[118.96594230000005,-3.493873099999973],[118.968625,-3.495191199999965],[118.970004,-3.499044599999934],[118.97316730000011,-3.499696399999948],[118.98482050000007,-3.4972701],[118.993894,-3.510754899999938],[118.994767,-3.52026],[118.9993591000001,-3.521196199999963],[119.00112060000004,-3.527755599999978],[119.00569770000004,-3.532982499999946]]]]},"properties":{"shapeName":"Polewali Mandar","shapeISO":"","shapeID":"22746128B30211371304306","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[111.44988340000003,-7.7789513],[111.442688,-7.7791586],[111.43508150000008,-7.776477299999954],[111.42793270000004,-7.775977099999977],[111.364212,-7.783995199999936],[111.343666,-7.783323699999926],[111.34196470000006,-7.7836804],[111.33789,-7.789293],[111.33092110000007,-7.787209899999937],[111.32773190000006,-7.788803299999927],[111.32432,-7.78733],[111.32042,-7.78778],[111.31864330000008,-7.786402099999975],[111.31483160000005,-7.792217599999958],[111.30541230000006,-7.796919799999955],[111.30095670000009,-7.797123399999975],[111.29611210000007,-7.794205699999964],[111.28992460000006,-7.794013],[111.29592890000004,-7.800233799999944],[111.29860690000004,-7.801251799999932],[111.300766,-7.811497199999963],[111.30488590000004,-7.814744899999937],[111.30393980000008,-7.818069399999956],[111.30690760000005,-7.824172899999951],[111.30382540000005,-7.831279699999925],[111.30558780000007,-7.834743899999978],[111.30578610000003,-7.841066299999966],[111.31443020000006,-7.843137699999943],[111.31877130000004,-7.848452499999951],[111.31793970000007,-7.8505425],[111.31930540000008,-7.854368199999954],[111.30747990000003,-7.858724099999961],[111.299675,-7.859858],[111.29779050000008,-7.862027099999978],[111.29665370000004,-7.870398499999965],[111.29940030000006,-7.878501399999948],[111.29264830000005,-7.887970899999971],[111.28788760000003,-7.900692399999969],[111.28785590000007,-7.9061741],[111.27339930000005,-7.924196699999925],[111.27464290000006,-7.931476099999941],[111.273323,-7.937360699999942],[111.29882050000003,-7.941012399999977],[111.30715180000004,-7.936011299999961],[111.31434630000007,-7.935208799999941],[111.31643330000009,-7.936453399999948],[111.31761820000008,-7.940775],[111.322514,-7.9449002],[111.32263940000007,-7.9497766],[111.32653040000008,-7.955240199999935],[111.325352,-7.960618199999942],[111.32701150000008,-7.967773],[111.33228640000004,-7.968048199999942],[111.33690290000004,-7.972044699999969],[111.33933690000003,-7.972355599999958],[111.34026630000005,-7.975532299999941],[111.349839,-7.977032699999938],[111.35367580000008,-7.9807057],[111.35536950000005,-7.984128],[111.35612490000005,-8.000265099999979],[111.35099030000003,-8.0057926],[111.34918970000007,-8.021008499999937],[111.354515,-8.025465899999972],[111.35829920000003,-8.026032399999963],[111.36178590000009,-8.029642099999933],[111.36452480000008,-8.028921099999934],[111.36683650000003,-8.030762599999946],[111.36705780000005,-8.033028599999966],[111.36096950000007,-8.040163],[111.35894770000004,-8.046352299999967],[111.353775,-8.049160899999947],[111.35330960000005,-8.059402399999954],[111.34633640000004,-8.066241199999979],[111.34719850000005,-8.0727367],[111.34983060000008,-8.075729299999978],[111.35479730000009,-8.077297199999975],[111.35440820000008,-8.080895399999974],[111.35176090000004,-8.0823478],[111.35449220000004,-8.084840699999972],[111.35443110000006,-8.08889],[111.35201260000008,-8.092735199999936],[111.35447690000007,-8.093238799999938],[111.35829160000009,-8.09944719999993],[111.36003870000008,-8.106503399999951],[111.35430910000008,-8.108749399999965],[111.35110760000003,-8.105628599999932],[111.34774780000004,-8.10719869999997],[111.34639740000006,-8.108565299999952],[111.34721370000005,-8.1141643],[111.35284420000005,-8.116960499999948],[111.35512540000008,-8.1161327],[111.35587310000005,-8.12073229999993],[111.35717010000008,-8.119227399999943],[111.35881040000004,-8.120148599999936],[111.36146540000004,-8.118944099999965],[111.36382290000006,-8.122357299999976],[111.36784360000007,-8.123590399999955],[111.36878970000004,-8.130826899999931],[111.37059020000004,-8.13078489999998],[111.371849,-8.132809599999973],[111.37429810000003,-8.132687499999975],[111.37627410000005,-8.136055899999974],[111.37834160000006,-8.135355899999979],[111.37989040000008,-8.136472699999956],[111.379982,-8.140261599999974],[111.37873840000009,-8.141049299999963],[111.38076780000006,-8.143779699999925],[111.37910460000006,-8.144493099999977],[111.38074490000008,-8.145589799999925],[111.37964630000005,-8.148308699999973],[111.38138580000009,-8.148544299999969],[111.37838740000007,-8.151008599999955],[111.38047030000007,-8.153589199999942],[111.38001250000008,-8.155094099999928],[111.37595370000008,-8.155335399999956],[111.37895970000005,-8.157664299999965],[111.37767790000004,-8.159719399999972],[111.38034820000007,-8.163242299999979],[111.38203430000004,-8.164202599999953],[111.38468170000004,-8.159994099999949],[111.39324190000008,-8.159450499999934],[111.39350130000008,-8.163397799999927],[111.39797210000006,-8.1646051],[111.397995,-8.16667069999994],[111.40509030000004,-8.1725044],[111.41081240000005,-8.170916499999976],[111.41549680000008,-8.1718626],[111.41747280000004,-8.168858499999942],[111.421196,-8.171624099999974],[111.42244720000008,-8.1695404],[111.42480470000004,-8.1703415],[111.43277740000008,-8.169825499999945],[111.43782810000005,-8.163202199999944],[111.43955990000006,-8.165638899999976],[111.44930270000009,-8.16667069999994],[111.45041650000007,-8.168731599999944],[111.45523070000007,-8.167509099999961],[111.45855710000006,-8.16877459999995],[111.46495050000004,-8.175518899999929],[111.47517390000007,-8.171342799999934],[111.47600550000004,-8.165591199999938],[111.47357180000006,-8.157999],[111.47477720000006,-8.150465],[111.47232820000005,-8.143006299999968],[111.47623440000007,-8.141877099999931],[111.47605130000005,-8.139686499999925],[111.47865290000004,-8.137298499999929],[111.47879030000007,-8.129412599999966],[111.48303980000009,-8.125885899999957],[111.48339840000006,-8.123176499999943],[111.48158260000008,-8.12229919999993],[111.47935480000007,-8.117577499999982],[111.48025510000008,-8.11518],[111.48251340000007,-8.114219599999956],[111.48264310000008,-8.108818],[111.48747250000008,-8.10784719999998],[111.49342350000006,-8.10963529999998],[111.500473,-8.109501799999975],[111.50253290000006,-8.113309799999968],[111.50465390000005,-8.113923],[111.50643920000005,-8.112775799999952],[111.50515740000009,-8.109539],[111.506218,-8.10663029999995],[111.51172640000004,-8.107367499999953],[111.51633450000008,-8.1097507],[111.51953990000004,-8.110029899999972],[111.52246090000006,-8.108443199999954],[111.52841180000007,-8.101175299999966],[111.52568820000005,-8.092398599999967],[111.52789310000009,-8.0892343],[111.52702330000005,-8.081160499999953],[111.54294590000006,-8.069132799999977],[111.54128260000005,-8.066843],[111.53353120000008,-8.062595299999941],[111.53407290000007,-8.060046199999931],[111.53997040000007,-8.056438399999934],[111.54284670000004,-8.0569419],[111.54478450000005,-8.054651199999967],[111.55060570000006,-8.05655],[111.55386350000003,-8.056150399999979],[111.556488,-8.0537757],[111.55722810000009,-8.049927699999955],[111.563652,-8.049585299999933],[111.56530760000004,-8.0479316],[111.56846620000005,-8.048925399999973],[111.57311250000004,-8.04801459999993],[111.57427980000006,-8.040095299999962],[111.57813260000006,-8.038219399999946],[111.58135220000008,-8.02632989999995],[111.58668520000003,-8.023674899999946],[111.58947750000004,-8.020394299999964],[111.59624480000008,-8.017536099999973],[111.59712980000006,-8.018708199999935],[111.60627740000007,-8.019347099999948],[111.60778040000008,-8.018157],[111.60638430000006,-8.016256299999952],[111.60660550000006,-8.0122937],[111.60856710000007,-8.010542099999952],[111.61215930000009,-8.008862399999941],[111.625,-8.007462399999952],[111.63068390000007,-8.003616299999976],[111.63360590000008,-8.004317199999946],[111.635582,-8.007937399999946],[111.64688110000009,-8.012378599999977],[111.64508050000006,-8.01565359999995],[111.64755250000007,-8.021966899999939],[111.65064240000004,-8.0221424],[111.653305,-8.020481],[111.65699,-8.00435349999998],[111.65577460000009,-7.998232499999972],[111.65698150000009,-7.9926757],[111.65338130000004,-7.983362199999931],[111.65625760000006,-7.975928199999942],[111.66083520000007,-7.975528699999927],[111.66223140000005,-7.974143],[111.66163630000005,-7.971289099999979],[111.659935,-7.968622599999946],[111.652977,-7.966392399999961],[111.64745330000005,-7.968635],[111.63908390000006,-7.966422],[111.63695520000005,-7.965369199999941],[111.63722990000008,-7.962096599999938],[111.64168550000005,-7.955273099999943],[111.64726260000003,-7.950729299999978],[111.65527340000006,-7.940686599999935],[111.65917970000004,-7.945177499999943],[111.66326140000007,-7.9432439],[111.66951750000004,-7.944765],[111.67798610000006,-7.941261699999927],[111.68315120000005,-7.936250599999937],[111.69181820000006,-7.930999199999974],[111.69292450000006,-7.928746599999954],[111.69128410000008,-7.9221291],[111.69207760000006,-7.919605199999978],[111.70040130000007,-7.913914199999965],[111.70458220000006,-7.906249899999978],[111.70199580000008,-7.901579799999979],[111.69914240000008,-7.899589499999934],[111.699646,-7.897472299999947],[111.70139310000008,-7.896198199999958],[111.707428,-7.897362699999974],[111.71047970000006,-7.8945984],[111.71285250000005,-7.896339399999931],[111.73246760000006,-7.894945099999973],[111.73464960000007,-7.892302],[111.74336240000008,-7.888472],[111.75013730000006,-7.890871499999946],[111.75188440000005,-7.897250099999951],[111.75491330000006,-7.897420299999965],[111.75340270000004,-7.899985699999945],[111.754364,-7.902659399999948],[111.75289150000009,-7.903471399999944],[111.75529480000006,-7.908286],[111.75858310000007,-7.9059781],[111.75791930000008,-7.902065199999981],[111.76066590000005,-7.900955199999942],[111.75608060000008,-7.898702599999979],[111.75779720000008,-7.896502],[111.75605010000004,-7.8961348],[111.75617210000007,-7.893060599999956],[111.75874320000008,-7.894784399999935],[111.76116940000009,-7.8904018],[111.76411440000004,-7.8905248],[111.77119440000007,-7.886666199999979],[111.77105710000006,-7.882853],[111.76919550000008,-7.881730499999946],[111.77064510000008,-7.880532199999948],[111.76960750000006,-7.878931],[111.77169030000005,-7.879044499999964],[111.77167510000004,-7.872415],[111.77329250000008,-7.872097],[111.77862550000009,-7.865139399999975],[111.77683250000007,-7.8619441],[111.77313990000005,-7.860045399999933],[111.77140040000006,-7.855962199999965],[111.77307890000009,-7.851184299999943],[111.77656550000006,-7.8482813],[111.77950290000007,-7.841090599999973],[111.78210450000006,-7.837364099999945],[111.78525540000004,-7.8358678],[111.78572840000004,-7.833311],[111.78475190000006,-7.829776699999968],[111.77666470000008,-7.820202799999947],[111.77499390000008,-7.821280899999977],[111.77294920000008,-7.8203277],[111.76882930000005,-7.824113799999964],[111.76631160000005,-7.823467699999981],[111.76450350000005,-7.817603499999962],[111.75839990000009,-7.810965],[111.75602720000006,-7.803768599999955],[111.75218960000007,-7.801013399999931],[111.74765770000005,-7.803871599999979],[111.73281090000006,-7.801266099999964],[111.72670740000007,-7.805761299999972],[111.72362510000005,-7.811488099999963],[111.72084810000007,-7.813477899999953],[111.71050260000004,-7.814084],[111.70020290000008,-7.8120818],[111.69306180000007,-7.807944199999952],[111.69549560000007,-7.8012309],[111.69061280000005,-7.791360299999951],[111.67599480000007,-7.784358899999972],[111.67507170000005,-7.782633699999963],[111.67823030000005,-7.7779078],[111.67789460000006,-7.774439799999925],[111.66911310000006,-7.769035799999926],[111.66140750000005,-7.766943899999944],[111.65779110000005,-7.767342499999927],[111.65274810000005,-7.772952],[111.64156340000005,-7.770835799999929],[111.63776510000008,-7.774498599999959],[111.63538530000005,-7.773787],[111.62851710000007,-7.775521699999956],[111.62719730000003,-7.7771463],[111.62463380000008,-7.776678499999946],[111.61945340000005,-7.780238599999961],[111.61517330000004,-7.779368299999931],[111.60994090000008,-7.781609799999956],[111.60459070000007,-7.781286799999975],[111.60075620000003,-7.777713799999958],[111.60003660000007,-7.786701599999958],[111.59337610000006,-7.790537799999981],[111.59203330000008,-7.795452499999953],[111.58332060000004,-7.800018699999953],[111.58164210000007,-7.802314699999954],[111.57311250000004,-7.8049459],[111.57001490000005,-7.802087299999926],[111.55831150000006,-7.801780199999939],[111.55767820000005,-7.799906199999953],[111.55541230000006,-7.800364399999978],[111.55432890000009,-7.799191399999927],[111.55026240000007,-7.799684],[111.55072780000006,-7.804557699999975],[111.54735060000007,-7.803063599999973],[111.52930450000008,-7.803310799999963],[111.52370450000006,-7.801682399999947],[111.52232360000005,-7.799279199999944],[111.516983,-7.800451199999941],[111.51207730000004,-7.798623499999962],[111.50862120000005,-7.799405],[111.50540920000009,-7.796670899999981],[111.49748860000005,-7.794923099999949],[111.49478290000008,-7.789129599999967],[111.48913440000007,-7.7888171],[111.479826,-7.785201499999971],[111.4756,-7.782835199999965],[111.47415160000008,-7.779311599999971],[111.46924590000003,-7.777153399999975],[111.46045680000009,-7.779670199999941],[111.45787810000007,-7.778810499999963],[111.45535280000007,-7.784078499999964],[111.45070650000008,-7.781229399999972],[111.44988340000003,-7.7789513]]]},"properties":{"shapeName":"Ponorogo","shapeISO":"","shapeID":"22746128B32018639238884","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[120.8421876000001,-2.218438],[120.8415156000001,-2.183200899999974],[120.83871220000003,-2.156025399999976],[120.831616,-2.121829199999979],[120.83253460000003,-2.122923199999946],[120.8298469,-2.094577699999945],[120.84085090000008,-2.038071599999967],[120.84369430000004,-2.030790499999966],[120.85847290000004,-2.010936199999946],[120.85774020000008,-2.009833399999934],[120.87320860000011,-1.991909299999975],[120.91246220000005,-1.938753199999951],[120.91881740000008,-1.933819],[120.92096850000007,-1.9233751],[120.92027110000004,-1.919904699999961],[120.92377060000001,-1.917013099999963],[120.92851770000004,-1.915763899999945],[120.92967770000007,-1.911552299999926],[120.9283392000001,-1.9052348],[120.92449340000007,-1.905071199999952],[120.92106730000012,-1.898408699999948],[120.9159701000001,-1.894417399999952],[120.91357620000008,-1.894835299999954],[120.9121057000001,-1.897281899999939],[120.9076788000001,-1.890186699999958],[120.9053259000001,-1.890720299999941],[120.90113420000012,-1.888864399999932],[120.90094150000004,-1.883384699999965],[120.89752720000001,-1.881478399999935],[120.8954764,-1.877828799999975],[120.89540470000009,-1.870126],[120.8883992000001,-1.857845899999973],[120.88531130000001,-1.856235],[120.87919310000007,-1.857600299999945],[120.87841010000011,-1.855876399999943],[120.87120330000005,-1.851670299999967],[120.86956530000009,-1.847590099999934],[120.86376740000003,-1.841959399999951],[120.86257250000006,-1.839298499999927],[120.86530290000007,-1.8341292],[120.86410720000003,-1.825736799999959],[120.85635380000008,-1.808355],[120.85097780000001,-1.788282599999945],[120.8394072000001,-1.772285],[120.83431320000011,-1.760678],[120.83557,-1.761194799999942],[120.833731,-1.752151599999934],[120.85748770000009,-1.681260399999928],[120.88230170000008,-1.624874099999943],[120.9618762,-1.623660599999937],[120.93088710000006,-1.582617199999959],[120.91504370000007,-1.571467899999959],[120.90761590000011,-1.5499943],[120.90585950000002,-1.540193899999963],[120.90201800000011,-1.537830399999962],[120.90070020000007,-1.527571899999941],[120.90256640000007,-1.523552299999949],[120.90082710000001,-1.52284],[120.90069710000012,-1.519987899999933],[120.89812070000005,-1.520053799999971],[120.89689580000004,-1.517331899999931],[120.89547090000008,-1.497886299999948],[120.89056990000006,-1.483174],[120.88972150000006,-1.455236599999978],[120.8913262000001,-1.441105],[120.88979690000008,-1.4284639],[120.89223260000006,-1.428927399999964],[120.89356750000002,-1.424844699999937],[120.88884810000002,-1.421149499999956],[120.88981700000011,-1.417317799999978],[120.88882090000004,-1.414889199999948],[120.8909857000001,-1.415213899999969],[120.8905486000001,-1.4132763],[120.88517840000009,-1.413841499999933],[120.88311440000007,-1.409940899999924],[120.86435620000009,-1.413500299999953],[120.8588562000001,-1.412068599999941],[120.85322760000008,-1.407171699999935],[120.84862590000012,-1.406966899999929],[120.8424993000001,-1.402874699999927],[120.83696070000008,-1.393767299999979],[120.8390505000001,-1.390108899999973],[120.8389939000001,-1.386489499999925],[120.837419,-1.381097299999965],[120.83788140000001,-1.374911899999972],[120.83629320000011,-1.372404099999926],[120.83728090000011,-1.369827699999973],[120.83615680000003,-1.3690956],[120.84029060000012,-1.367331799999931],[120.8403072000001,-1.358072],[120.83684030000006,-1.355809699999952],[120.83192510000003,-1.3569094],[120.82750690000012,-1.354700799999932],[120.82388710000009,-1.355476799999963],[120.81917550000003,-1.353358],[120.81460270000002,-1.35591],[120.80945550000001,-1.356221399999924],[120.80707670000004,-1.3551261],[120.80705720000003,-1.351343799999938],[120.80487670000002,-1.352119499999958],[120.80219690000001,-1.350524299999961],[120.80023810000012,-1.355776599999956],[120.7944437000001,-1.354545499999972],[120.79532960000006,-1.357892399999969],[120.7894295000001,-1.357963099999949],[120.79009050000002,-1.361712399999931],[120.78816710000001,-1.36419],[120.78835790000005,-1.3676227],[120.784682,-1.372131299999978],[120.78157280000005,-1.372046499999954],[120.77496330000008,-1.368254299999933],[120.76840080000011,-1.3685392],[120.76268340000001,-1.365001099999972],[120.7588869000001,-1.368357299999957],[120.75746330000004,-1.371332699999925],[120.75842950000003,-1.374895299999935],[120.7557756000001,-1.379153499999973],[120.75304710000012,-1.380714499999954],[120.75297750000004,-1.384725299999957],[120.74823340000012,-1.389525399999968],[120.74022270000012,-1.385359],[120.73827210000002,-1.381120799999962],[120.72779630000002,-1.383886599999926],[120.72095560000002,-1.387989],[120.7181084,-1.393330699999979],[120.711385,-1.396115899999927],[120.711858,-1.4033245],[120.70711030000007,-1.398858899999937],[120.70415180000009,-1.399853],[120.70038820000002,-1.406225599999971],[120.6994022,-1.412097699999947],[120.694185,-1.416195099999925],[120.69336950000002,-1.419426199999975],[120.68555030000005,-1.419096199999956],[120.67525480000006,-1.4148748],[120.67246020000005,-1.4051121],[120.67330350000009,-1.399018199999944],[120.67173060000005,-1.398489],[120.6729342000001,-1.397239199999945],[120.66720950000001,-1.392068599999959],[120.66455040000005,-1.393915199999981],[120.66555370000003,-1.392788799999948],[120.664261,-1.389230899999973],[120.6654367000001,-1.3835308],[120.6617496,-1.381751899999927],[120.661134,-1.383746299999927],[120.660777,-1.380699299999947],[120.65857950000009,-1.381388699999945],[120.65936120000003,-1.379529699999978],[120.65762540000003,-1.379266199999961],[120.656155,-1.375729499999977],[120.64588260000005,-1.369197699999972],[120.64225840000006,-1.360729799999945],[120.64755260000004,-1.353484899999955],[120.64615990000004,-1.349268399999971],[120.64731410000002,-1.334618199999966],[120.64666010000008,-1.329601399999945],[120.641274,-1.321006799999964],[120.64060460000007,-1.314720399999942],[120.63936980000005,-1.314474899999936],[120.64042760000007,-1.313597099999924],[120.63772680000011,-1.3115657],[120.6379885,-1.307941699999958],[120.63388730000008,-1.306964499999935],[120.629086,-1.302386299999966],[120.62914760000001,-1.300324199999977],[120.62369220000005,-1.2998702],[120.62273040000002,-1.296992499999931],[120.62057440000001,-1.300460199999975],[120.62267660000009,-1.296938599999976],[120.62226110000006,-1.2947919],[120.6121968000001,-1.284866099999931],[120.60621820000006,-1.283773499999938],[120.59723110000004,-1.270031299999971],[120.59456890000001,-1.269715799999972],[120.5903985000001,-1.264976],[120.58812860000012,-1.2662533],[120.58878270000002,-1.264383599999974],[120.58681290000004,-1.265106799999955],[120.58714370000007,-1.264137299999959],[120.58314,-1.262743199999932],[120.57855680000011,-1.2579279],[120.57349380000005,-1.258089499999926],[120.57118550000007,-1.256189],[120.57158560000005,-1.250333599999976],[120.5693586000001,-1.246867],[120.57043150000004,-1.241931299999976],[120.56802940000011,-1.238996199999974],[120.56773840000005,-1.234359899999959],[120.56503770000006,-1.232882599999925],[120.565684,-1.229774099999929],[120.5673306000001,-1.228666099999941],[120.56458280000004,-1.2301127],[120.56712290000007,-1.228758399999947],[120.56645790000005,-1.226197399999933],[120.57081620000008,-1.219525099999942],[120.57195500000012,-1.212084599999969],[120.56960050000009,-1.207983499999955],[120.57226270000001,-1.2050288],[120.57137020000005,-1.199096399999974],[120.5757714,-1.198627099999953],[120.577418,-1.194402799999978],[120.580011,-1.192556199999956],[120.58379670000011,-1.194595199999981],[120.58393520000004,-1.192325299999936],[120.5809693000001,-1.191797599999973],[120.5839506000001,-1.192279199999973],[120.5857357000001,-1.187785599999927],[120.58369660000005,-1.1858851],[120.5868283000001,-1.186385299999927],[120.58848260000002,-1.181137699999965],[120.58748230000003,-1.180876099999978],[120.59151570000006,-1.177956699999925],[120.59314540000003,-1.168311099999926],[120.59097560000009,-1.163956],[120.59321460000001,-1.160732099999962],[120.59228360000009,-1.158446799999979],[120.59320690000004,-1.1560616],[120.59134490000008,-1.153376199999968],[120.59305590000008,-1.1525764],[120.59304540000005,-1.148736499999927],[120.58867490000011,-1.1452278],[120.58846540000002,-1.141361599999925],[120.58529670000007,-1.138238299999955],[120.58515100000011,-1.135467099999971],[120.581651,-1.133774899999935],[120.58317290000002,-1.131844199999932],[120.58127620000005,-1.130753899999945],[120.58244600000012,-1.127971399999979],[120.5817532000001,-1.124927599999978],[120.58780720000004,-1.123817899999949],[120.58722950000003,-1.120391299999937],[120.5830707,-1.118204099999957],[120.58639830000004,-1.114036],[120.58600380000007,-1.111903699999971],[120.581049,-1.108477899999968],[120.57089580000002,-1.109622299999955],[120.568015,-1.112843],[120.53007420000006,-1.129854499999965],[120.51184290000003,-1.131425499999978],[120.50254730000006,-1.137764199999935],[120.4929029000001,-1.141986899999949],[120.491642,-1.141161499999953],[120.46559220000006,-1.147985899999981],[120.44613970000012,-1.146241799999927],[120.43409720000011,-1.152611199999967],[120.42793530000006,-1.150161],[120.3992846000001,-1.161312099999975],[120.348814,-1.185570399999961],[120.34211440000001,-1.186936899999978],[120.33321990000002,-1.189025099999981],[120.328157,-1.186819],[120.32362210000008,-1.1938704],[120.31326250000006,-1.190106],[120.29937730000006,-1.195867299999975],[120.29793340000003,-1.198678],[120.2898355000001,-1.2016866],[120.28404850000004,-1.2115117],[120.27867450000008,-1.216576399999951],[120.27258190000009,-1.230475699999943],[120.27033440000002,-1.231553399999939],[120.26000110000007,-1.230184099999974],[120.24827360000006,-1.230803699999967],[120.23739980000005,-1.227632399999948],[120.23201830000005,-1.224545699999965],[120.22250430000008,-1.233761199999947],[120.220653,-1.238956799999926],[120.21983300000011,-1.243528],[120.22491520000005,-1.251084],[120.21625540000002,-1.254454899999928],[120.208996,-1.263605299999938],[120.19324780000011,-1.269397],[120.18718620000004,-1.273189499999944],[120.185279,-1.272893799999963],[120.18896980000011,-1.276999299999943],[120.1960769000001,-1.279835799999944],[120.20449380000002,-1.286256699999967],[120.21557580000001,-1.2888171],[120.23031760000003,-1.299520199999961],[120.2402935,-1.311033099999975],[120.2574002,-1.321886],[120.25865890000011,-1.331214899999964],[120.26065730000005,-1.3356021],[120.26515290000009,-1.3392],[120.27148820000002,-1.341404499999953],[120.27644260000011,-1.346085599999981],[120.28254990000005,-1.358512799999971],[120.28749460000006,-1.363593299999934],[120.28810930000009,-1.366482699999949],[120.286415,-1.3699896],[120.2879852000001,-1.378631299999938],[120.28201950000005,-1.384432299999958],[120.2651734000001,-1.385831199999927],[120.27109440000004,-1.387615],[120.27475090000007,-1.390789299999938],[120.27545510000004,-1.395548399999939],[120.27909140000008,-1.3983975],[120.2795354000001,-1.400311699999975],[120.27767480000011,-1.406878899999924],[120.26709770000002,-1.415894699999967],[120.26037630000008,-1.415825799999936],[120.25380490000009,-1.411785499999951],[120.25005650000003,-1.412937599999964],[120.2440712,-1.423856099999966],[120.24185960000011,-1.435541699999931],[120.2266548,-1.445969499999933],[120.22173340000006,-1.455918599999961],[120.21920040000009,-1.456247499999961],[120.21418490000008,-1.453188799999964],[120.20303600000011,-1.455338499999925],[120.1985615000001,-1.4534506],[120.1954991,-1.450231],[120.186696,-1.4514956],[120.1810392000001,-1.4480852],[120.17478140000003,-1.456549399999972],[120.169966,-1.457675],[120.16670480000005,-1.460550599999976],[120.15961570000002,-1.472460699999942],[120.15109830000006,-1.478958],[120.14384940000002,-1.492701199999942],[120.13705460000006,-1.495796899999959],[120.13639720000003,-1.503881699999965],[120.130581,-1.5023883],[120.12788520000004,-1.503667299999961],[120.12025480000011,-1.515960299999961],[120.11301250000008,-1.517812],[120.11071220000008,-1.519935499999974],[120.1093773,-1.523942299999931],[120.11040390000005,-1.529625399999929],[120.10670020000009,-1.5354894],[120.10613950000004,-1.5429695],[120.09880080000005,-1.556865399999936],[120.10124070000006,-1.556708199999946],[120.102602,-1.560265],[120.10621870000011,-1.563376399999925],[120.1134396000001,-1.5622093],[120.11794530000009,-1.564135799999974],[120.1205136000001,-1.562930399999971],[120.12308120000012,-1.558924599999955],[120.12878950000004,-1.558076],[120.13077520000002,-1.556185],[120.13363110000012,-1.556731699999943],[120.1385471000001,-1.559723499999961],[120.13999500000011,-1.566198399999962],[120.14312530000007,-1.5710809],[120.14237330000003,-1.593187199999932],[120.14028760000008,-1.599279],[120.1408206000001,-1.604056899999932],[120.14464740000005,-1.608342],[120.14598720000004,-1.617924499999958],[120.14002110000001,-1.626793799999973],[120.1368543000001,-1.628959699999939],[120.1376997000001,-1.6412983],[120.13594640000008,-1.650759299999947],[120.14384230000007,-1.657666399999925],[120.14537860000007,-1.669136499999979],[120.15162170000008,-1.6831193],[120.1484034,-1.69859],[120.15587890000006,-1.714241699999945],[120.15533170000003,-1.717881299999931],[120.1563268000001,-1.718559499999969],[120.15130290000002,-1.721485099999938],[120.1555866000001,-1.727909799999964],[120.16049780000003,-1.730783199999962],[120.16989820000003,-1.741499],[120.17074820000005,-1.744624099999953],[120.16706740000006,-1.756399699999974],[120.1702457,-1.767586599999959],[120.17702430000008,-1.776951499999939],[120.1776446,-1.780852699999969],[120.1769326000001,-1.782651599999951],[120.17209380000008,-1.785342899999932],[120.14689080000005,-1.792730699999936],[120.12136240000007,-1.798771399999964],[120.11245080000003,-1.79705],[120.10755040000004,-1.803113099999962],[120.10911340000007,-1.815366599999948],[120.107365,-1.815504399999952],[120.104165,-1.821160099999929],[120.10059110000009,-1.823632299999929],[120.11034710000001,-1.833869199999924],[120.11439030000008,-1.831555099999946],[120.11600270000008,-1.835579299999949],[120.12078310000004,-1.836985899999945],[120.1192122000001,-1.844005799999934],[120.12365670000008,-1.845843399999978],[120.1271365,-1.850470099999939],[120.12647630000004,-1.855009099999961],[120.1328191,-1.858534199999951],[120.13305890000004,-1.860883299999955],[120.13119180000001,-1.861791899999957],[120.13563910000005,-1.864470899999958],[120.13561780000009,-1.871441],[120.13796860000002,-1.872740299999975],[120.1447839000001,-1.886213399999974],[120.14329170000008,-1.888555799999949],[120.13189370000009,-1.895740199999977],[120.12447150000003,-1.905645599999957],[120.12064950000001,-1.904243799999961],[120.11198470000011,-1.895866699999942],[120.10541790000002,-1.896980699999972],[120.10300270000005,-1.899410899999964],[120.10321660000011,-1.916552],[120.09760810000012,-1.934928299999967],[120.10137820000011,-1.942509799999925],[120.10007510000003,-1.951076399999977],[120.10086990000002,-1.958780799999943],[120.10651260000009,-1.965039799999943],[120.09898410000005,-1.985720799999967],[120.11039740000001,-1.992074899999977],[120.11339550000002,-1.992010099999959],[120.11500560000002,-2.009047799999962],[120.11936330000003,-2.012380199999939],[120.14166430000012,-2.021608199999946],[120.15191770000001,-2.022633499999927],[120.1642217000001,-2.029554499999961],[120.17473140000004,-2.031861499999934],[120.17908910000006,-2.034424899999976],[120.20344080000007,-2.036219199999948],[120.21779550000008,-2.032630499999925],[120.23240650000002,-2.032117899999946],[120.23830220000002,-2.029041899999925],[120.27060030000007,-2.028272899999934],[120.2823916000001,-2.032630499999925],[120.29156820000003,-2.040235899999971],[120.311101,-2.050573899999961],[120.317253,-2.051855599999953],[120.33494010000004,-2.061596299999962],[120.33981040000003,-2.0613399],[120.3446808000001,-2.056725899999947],[120.34929480000005,-2.030067199999962],[120.35698480000008,-2.019044799999961],[120.35801010000012,-2.012892799999975],[120.36185510000007,-2.010842199999956],[120.36288050000007,-1.991617099999928],[120.37210850000008,-1.9629077],[120.37544080000009,-1.961113399999931],[120.37928590000001,-1.953423399999963],[120.37954220000006,-1.945220699999936],[120.38877020000007,-1.897542599999952],[120.39082090000011,-1.895235599999978],[120.40338120000001,-1.895491899999968],[120.40850790000002,-1.8972862],[120.41876130000003,-1.914460599999927],[120.4274296000001,-1.924136399999952],[120.441575,-1.936505299999965],[120.44618900000012,-1.937274299999956],[120.46182540000007,-1.953679699999952],[120.46567040000002,-1.961113399999931],[120.47054070000002,-1.9629077],[120.47694910000007,-1.977775099999974],[120.4798095000001,-1.979854799999941],[120.48079410000003,-1.984183399999949],[120.4838701000001,-1.987259399999971],[120.4838701000001,-2.002126799999928],[120.50283880000006,-2.029554499999961],[120.52134210000008,-2.051004299999931],[120.53975090000006,-2.070311599999968],[120.54333950000012,-2.078258],[120.578201,-2.116195399999981],[120.58025160000011,-2.122603699999956],[120.58640360000004,-2.129524799999956],[120.6020400000001,-2.142597799999976],[120.615113,-2.156696199999942],[120.66279110000005,-2.187456199999929],[120.66843050000011,-2.192326599999944],[120.67663320000008,-2.195658899999955],[120.68534850000003,-2.205399599999964],[120.69919060000007,-2.210782599999959],[120.70944390000011,-2.216678299999955],[120.71739030000003,-2.223343],[120.72559290000004,-2.226675299999954],[120.7422547000001,-2.230264],[120.75660940000012,-2.238979299999926],[120.79095810000001,-2.238466699999947],[120.8050277000001,-2.225335399999949],[120.8421876000001,-2.218438]]]},"properties":{"shapeName":"Poso","shapeISO":"","shapeID":"22746128B78289075563991","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[104.79454110000006,-5.170991399999934],[104.78263680000003,-5.166939499999955],[104.77946810000009,-5.164262399999927],[104.77512860000007,-5.170449299999973],[104.76353020000005,-5.181734899999981],[104.76169180000005,-5.190933299999926],[104.76302510000005,-5.1946134],[104.76969580000008,-5.201473299999975],[104.77319690000007,-5.208164699999941],[104.77419610000004,-5.213517199999956],[104.77143540000009,-5.235844799999938],[104.76743110000007,-5.2361778],[104.76692960000008,-5.238686499999972],[104.76425950000004,-5.240525299999945],[104.76525840000005,-5.246379599999955],[104.761085,-5.252733699999965],[104.76542190000004,-5.255578699999944],[104.77459490000007,-5.265617299999974],[104.77993310000005,-5.268295199999955],[104.78693820000007,-5.2759913],[104.79352750000004,-5.280258499999945],[104.79235870000008,-5.282766899999956],[104.79669520000004,-5.288120499999934],[104.79619170000007,-5.2973193],[104.798859,-5.305013899999949],[104.79969270000004,-5.306854],[104.80436450000008,-5.307859],[104.81036840000007,-5.318063299999949],[104.81036930000005,-5.315052699999967],[104.81373670000005,-5.313497699999971],[104.81654160000005,-5.3203807],[104.820212,-5.322556099999929],[104.823383,-5.320382699999925],[104.82571880000006,-5.321386799999971],[104.82605170000005,-5.324564799999962],[104.83297490000007,-5.331173199999967],[104.83430840000005,-5.336693],[104.84465340000008,-5.340401199999974],[104.844152,-5.343578899999955],[104.84565360000005,-5.344415599999934],[104.85166080000005,-5.345253299999968],[104.85466480000008,-5.343581399999948],[104.85783530000003,-5.343749399999979],[104.85716760000008,-5.34492],[104.86205240000004,-5.359791399999949],[104.85871150000008,-5.3676492],[104.86166750000007,-5.370845599999939],[104.85732810000007,-5.373186199999964],[104.85716060000004,-5.376029499999959],[104.86416840000004,-5.381215899999972],[104.86383390000009,-5.384728199999927],[104.86588940000007,-5.384230399999979],[104.86633350000005,-5.380527699999959],[104.86795940000007,-5.379195099999947],[104.87272780000006,-5.379855699999951],[104.87376110000008,-5.384383],[104.87826860000007,-5.386495499999967],[104.88189260000007,-5.397152799999958],[104.88546960000008,-5.397448099999963],[104.88978090000006,-5.401574],[104.89402910000007,-5.401495099999977],[104.89242860000007,-5.404156599999965],[104.89321420000005,-5.406073499999934],[104.90356440000005,-5.410625699999969],[104.90394030000004,-5.415341599999977],[104.89952710000006,-5.414447699999926],[104.89799310000006,-5.420357],[104.892793,-5.421382799999947],[104.88950230000006,-5.426763799999947],[104.90256740000007,-5.438091],[104.90373990000006,-5.443802399999925],[104.90558340000007,-5.445650499999942],[104.90407410000006,-5.4506056],[104.90650380000005,-5.456485199999975],[104.90436560000006,-5.463078],[104.90000660000004,-5.467948699999965],[104.89849690000005,-5.474499599999945],[104.89682030000006,-5.476347099999941],[104.89543560000004,-5.487139399999933],[104.89199860000008,-5.490162399999974],[104.88311380000005,-5.491420699999935],[104.87925740000009,-5.495787399999926],[104.882525,-5.502927],[104.87887670000003,-5.514138799999955],[104.88155710000007,-5.5238821],[104.88888970000005,-5.533584099999928],[104.89573410000008,-5.539880899999957],[104.89217310000004,-5.546568699999966],[104.89572450000009,-5.550874399999941],[104.91258790000006,-5.563320799999929],[104.919033,-5.565833099999963],[104.92523940000007,-5.567866899999956],[104.93777190000009,-5.567773599999953],[104.94516470000008,-5.573935499999948],[104.94437050000005,-5.569009199999925],[104.94421,-5.562147599999946],[104.94697730000007,-5.5496335],[104.94538610000006,-5.532835599999942],[104.937214,-5.525989799999934],[104.93704760000008,-5.513895399999967],[104.92485330000005,-5.501169799999957],[104.92890240000008,-5.496147299999961],[104.93114110000005,-5.487984199999971],[104.931938,-5.481139199999973],[104.930849,-5.475343799999962],[104.94015320000005,-5.467029799999978],[104.93751390000006,-5.458252699999946],[104.94500890000006,-5.451975899999979],[104.94432630000006,-5.450350399999934],[104.94556060000008,-5.448930699999949],[104.94346590000004,-5.4426313],[104.94514250000009,-5.4374241],[104.94790840000007,-5.435744499999942],[104.95054870000007,-5.430999399999962],[104.95034740000006,-5.427821599999959],[104.95754280000006,-5.427761699999962],[104.96033720000008,-5.426238],[104.96285070000005,-5.427398499999981],[104.96808330000005,-5.424571199999946],[104.970618,-5.424874399999965],[104.97643090000008,-5.418765],[104.98,-5.420443299999931],[104.98428830000006,-5.420159599999977],[104.98494530000005,-5.415865],[104.99027250000006,-5.4185778],[104.99907440000004,-5.409493099999963],[104.995966,-5.405386699999951],[104.99403510000008,-5.407321899999943],[104.99083250000007,-5.407817499999965],[104.99217480000004,-5.407133099999953],[104.98949030000006,-5.4050326],[104.99039580000004,-5.4026573],[104.97399750000005,-5.4029303],[104.97324390000006,-5.398954],[104.97489430000007,-5.400037499999939],[104.98961070000007,-5.398959199999979],[104.99191140000005,-5.396472599999925],[104.99523160000007,-5.396779399999957],[105.00045060000008,-5.390906799999925],[105.00305840000004,-5.390572799999973],[105.00608070000004,-5.387232299999937],[105.01661020000006,-5.3920761],[105.01721050000003,-5.388264699999979],[105.02196720000006,-5.388217299999951],[105.02259790000005,-5.386514399999953],[105.02928930000007,-5.383593499999961],[105.04365330000007,-5.384547899999973],[105.04367260000004,-5.385891099999981],[105.06003520000007,-5.385345099999938],[105.06026690000004,-5.391493599999933],[105.06335620000004,-5.392259499999966],[105.06533390000004,-5.389757699999961],[105.06806330000006,-5.372741699999949],[105.07365560000005,-5.371478399999944],[105.07246510000004,-5.361200699999927],[105.06200590000009,-5.358445399999937],[105.06374410000006,-5.347797599999979],[105.06251970000005,-5.347703299999978],[105.06379110000006,-5.346712],[105.05776220000007,-5.336328599999945],[105.05431460000005,-5.335291099999949],[105.05525180000006,-5.332154599999967],[105.05440840000006,-5.324131299999976],[105.05163610000005,-5.321803899999964],[105.03493630000008,-5.323873099999958],[105.03391240000008,-5.3229247],[105.03485430000006,-5.320944899999972],[105.03742190000008,-5.319985299999928],[105.03254330000004,-5.293990099999974],[105.032655,-5.282389599999931],[105.04067090000007,-5.261295899999936],[105.04373810000004,-5.258758899999975],[105.04531430000009,-5.248931299999981],[105.05104320000004,-5.247395899999958],[105.05549640000004,-5.243814],[105.06146410000008,-5.243429699999979],[105.06538030000007,-5.236622399999931],[105.06573510000004,-5.231759099999977],[105.06309450000003,-5.228981099999942],[105.06481820000005,-5.228033],[105.06641320000006,-5.215520499999968],[105.05170620000007,-5.206889399999966],[105.03785560000006,-5.209159599999964],[105.03388780000006,-5.215393799999958],[105.03272660000005,-5.220051299999966],[105.02909720000008,-5.223981299999934],[105.00993730000005,-5.238192099999935],[104.98564130000005,-5.242118499999947],[104.97215650000004,-5.249470799999926],[104.97234660000004,-5.244446099999948],[104.96998840000003,-5.243965699999933],[104.94853050000006,-5.258354],[104.94899310000005,-5.260624699999937],[104.93725980000005,-5.260976199999959],[104.92739630000005,-5.265530299999966],[104.91861720000009,-5.265562799999941],[104.91346150000004,-5.267112599999962],[104.91091570000003,-5.254961099999946],[104.90510370000004,-5.248649599999965],[104.89946630000009,-5.245586699999933],[104.897974,-5.243112599999961],[104.88539050000009,-5.249219799999935],[104.88406940000004,-5.251176799999939],[104.86878790000009,-5.232610499999964],[104.867789,-5.221905899999967],[104.86178440000003,-5.214545399999963],[104.82883780000009,-5.2010735],[104.81132560000003,-5.183339499999931],[104.804322,-5.172800399999971],[104.80131970000008,-5.170959599999946],[104.79454110000006,-5.170991399999934]]]},"properties":{"shapeName":"Pringsewu","shapeISO":"","shapeID":"22746128B77136208858969","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[113.62377860000004,-7.961455799999953],[113.6155470000001,-7.957800899999938],[113.62123090000011,-7.955051499999968],[113.62232950000009,-7.952441699999952],[113.61470020000002,-7.953142199999945],[113.61104570000009,-7.949621699999966],[113.61505870000008,-7.941809699999965],[113.61869030000003,-7.938920099999962],[113.61702710000009,-7.934598],[113.61750780000011,-7.931398899999976],[113.61990340000011,-7.927260499999932],[113.62483960000009,-7.925346],[113.62628920000009,-7.917029899999932],[113.62225330000001,-7.907167499999957],[113.6238859,-7.899304899999947],[113.623329,-7.895119699999952],[113.61509690000003,-7.887129399999935],[113.61565380000002,-7.882740599999977],[113.61830120000002,-7.880201899999975],[113.61727890000009,-7.873166599999934],[113.60862720000011,-7.859669799999949],[113.60948930000006,-7.853387899999973],[113.60234820000005,-7.8451558],[113.61164840000004,-7.825199699999928],[113.60553720000007,-7.819891],[113.60250840000003,-7.813509],[113.59215530000006,-7.805414299999939],[113.59339120000004,-7.803744799999947],[113.60134870000002,-7.802372499999933],[113.60608660000003,-7.798938799999974],[113.60404950000009,-7.798208799999941],[113.601776,-7.788893299999927],[113.602661,-7.781870399999946],[113.59823590000008,-7.770851199999981],[113.5904921,-7.763538399999959],[113.576393,-7.756195599999955],[113.57623280000007,-7.750000099999966],[113.57255540000006,-7.742067899999938],[113.57324970000002,-7.738878799999952],[113.57823170000006,-7.733021299999962],[113.57900990000007,-7.7261864],[113.58827960000008,-7.726529699999958],[113.59054550000008,-7.723726299999953],[113.5906447000001,-7.716666299999929],[113.59651930000007,-7.717204199999969],[113.59790830000009,-7.715193099999965],[113.58273650000001,-7.711566499999947],[113.58188,-7.7092],[113.57696150000004,-7.706818],[113.57524830000011,-7.710287299999948],[113.57300690000011,-7.708802499999933],[113.57314960000008,-7.710123099999976],[113.5709994,-7.709212599999944],[113.56500040000003,-7.710581599999955],[113.56419,-7.71397],[113.55941140000004,-7.71405],[113.5524491000001,-7.711865699999976],[113.5513165000001,-7.713474199999951],[113.54566290000002,-7.713521799999967],[113.53829610000003,-7.709905],[113.5331000000001,-7.71057],[113.52792000000011,-7.70919],[113.52521720000004,-7.7079764],[113.527027,-7.706840299999953],[113.52628460000005,-7.706002699999942],[113.52554220000002,-7.707430399999964],[113.5157349000001,-7.704396299999928],[113.51427300000012,-7.702319299999942],[113.49841630000003,-7.698369399999933],[113.48723280000002,-7.698321799999974],[113.47103650000008,-7.706617],[113.469958,-7.709705099999951],[113.47259070000007,-7.709595399999955],[113.47000550000007,-7.710856799999931],[113.46816860000001,-7.715872699999977],[113.463383,-7.718095299999959],[113.45592870000007,-7.724790899999959],[113.45091,-7.72551],[113.43883,-7.73424],[113.43262,-7.73381],[113.43097000000012,-7.73548],[113.41655810000009,-7.733671099999981],[113.41062370000009,-7.734520499999974],[113.40220000000011,-7.74053],[113.39751,-7.73815],[113.3934,-7.73813],[113.39194,-7.74227],[113.38869000000011,-7.7442],[113.38484,-7.74172],[113.38197,-7.73622],[113.37426,-7.74264],[113.37206,-7.75098],[113.35663000000011,-7.76072],[113.3466,-7.76868],[113.3456000000001,-7.77105],[113.32432,-7.77616],[113.31862,-7.77424],[113.31882,-7.77141],[113.316043,-7.769764299999963],[113.30730560000006,-7.768203399999948],[113.28925980000008,-7.775931899999932],[113.28796000000011,-7.7833],[113.28681,-7.78356],[113.27914710000005,-7.783122599999956],[113.27706380000006,-7.782062699999926],[113.27536380000004,-7.778173299999935],[113.27367,-7.77955],[113.27362,-7.77754],[113.27132,-7.77711],[113.26525,-7.76586],[113.2633267000001,-7.765014199999939],[113.25479,-7.74883],[113.25459,-7.74235],[113.25743750000004,-7.738554499999964],[113.25686640000004,-7.7355564],[113.25415380000004,-7.737198299999932],[113.25294030000009,-7.741659699999957],[113.24995450000006,-7.743083499999955],[113.2486,-7.74551],[113.24306,-7.74383],[113.2422,-7.74192],[113.23855,-7.74224],[113.23762850000003,-7.739518199999964],[113.232148,-7.756017899999961],[113.23467960000005,-7.756696799999929],[113.23498860000007,-7.762088499999948],[113.23657440000011,-7.762714199999948],[113.23443820000011,-7.766542099999981],[113.23433670000009,-7.770401699999979],[113.23699180000006,-7.773293699999954],[113.23401710000007,-7.780552799999953],[113.23730480000006,-7.781677399999978],[113.23693070000002,-7.789616299999977],[113.23872370000004,-7.794599199999936],[113.24235150000004,-7.795340499999952],[113.24007950000009,-7.800140399999975],[113.2370777000001,-7.7985131],[113.24001090000002,-7.808750599999939],[113.23330710000005,-7.8069001],[113.23206860000005,-7.80288],[113.2261228000001,-7.801539],[113.2259782000001,-7.804844899999978],[113.22244390000003,-7.807644],[113.22454090000008,-7.812073599999962],[113.22178370000006,-7.810857799999951],[113.21978750000005,-7.811574599999972],[113.21668810000006,-7.815523],[113.2178282000001,-7.816517699999963],[113.21607730000005,-7.817099399999961],[113.21711390000007,-7.817927599999962],[113.2159435000001,-7.818065],[113.217115,-7.819650899999942],[113.21611220000011,-7.820199799999955],[113.20809010000005,-7.816789699999958],[113.2089873000001,-7.815094899999963],[113.20443080000007,-7.814084199999968],[113.20720830000005,-7.807246599999928],[113.20681650000006,-7.805053199999975],[113.20513280000011,-7.804404699999964],[113.20014790000005,-7.812510399999951],[113.1782889000001,-7.8099835],[113.18270990000008,-7.791666],[113.1821758000001,-7.7896171],[113.17701160000001,-7.788462299999935],[113.17893820000006,-7.783372],[113.16391740000006,-7.779229799999939],[113.16543740000009,-7.773932],[113.162923,-7.771512499999972],[113.1633647000001,-7.770345499999962],[113.16519060000007,-7.770887199999947],[113.16674030000001,-7.767782899999929],[113.1679534000001,-7.761419],[113.16432940000004,-7.759195499999976],[113.16611480000006,-7.753905399999951],[113.17147250000005,-7.754756099999952],[113.17237080000007,-7.752456399999971],[113.17400710000004,-7.752802799999927],[113.17433710000012,-7.754513299999928],[113.17502580000007,-7.751531799999952],[113.1762771000001,-7.751787899999954],[113.17951960000005,-7.745703399999968],[113.17790560000003,-7.732497099999932],[113.17933330000005,-7.730155699999955],[113.17744870000001,-7.725872699999968],[113.17476470000008,-7.725473],[113.16899850000004,-7.727924],[113.16973010000004,-7.735381899999936],[113.16745,-7.73948],[113.16582030000006,-7.739178699999968],[113.16353,-7.74175],[113.16217970000002,-7.739928199999952],[113.15768670000011,-7.740957699999967],[113.15224,-7.73937],[113.1513629000001,-7.740803],[113.14017210000009,-7.725821599999961],[113.1337476000001,-7.725793],[113.12559550000003,-7.722466499999939],[113.12395370000002,-7.724536599999965],[113.11859,-7.72583],[113.11131000000012,-7.72297],[113.10994,-7.71912],[113.10784950000004,-7.7205249],[113.09971650000011,-7.707692399999928],[113.10051140000007,-7.701936299999943],[113.09618320000004,-7.706229299999961],[113.09248290000005,-7.705959299999961],[113.0923537000001,-7.707796299999927],[113.0881194000001,-7.707421099999976],[113.08641810000006,-7.709985],[113.08502190000002,-7.709761799999967],[113.08258050000006,-7.714527399999952],[113.08094010000002,-7.714656599999955],[113.08127590000004,-7.716461899999956],[113.0784301000001,-7.7213724],[113.07678210000006,-7.721345699999972],[113.07614130000002,-7.723342599999967],[113.07306660000006,-7.724959599999977],[113.07102960000009,-7.7331841],[113.07006830000012,-7.732784],[113.06628410000008,-7.73791],[113.06483450000007,-7.7374747],[113.06449880000002,-7.739582299999938],[113.06011950000004,-7.741811],[113.05471030000001,-7.748152],[113.05694570000003,-7.762061399999936],[113.05633540000008,-7.764923299999964],[113.0531691000001,-7.767047599999955],[113.05017080000005,-7.775898699999971],[113.05282580000005,-7.779507399999943],[113.05370320000009,-7.785280899999975],[113.05176530000006,-7.790629099999933],[113.05283350000002,-7.796074099999942],[113.04895010000007,-7.804077899999982],[113.05123890000004,-7.806074899999942],[113.04922480000005,-7.810783099999981],[113.04750050000007,-7.811697699999968],[113.04840840000008,-7.816851399999962],[113.04723350000006,-7.819969399999934],[113.04524980000008,-7.820260299999973],[113.04525750000005,-7.822281099999941],[113.04105370000002,-7.824552299999937],[113.03864280000005,-7.8281185],[113.03308860000004,-7.8299358],[113.03340140000012,-7.831390599999963],[113.03086840000003,-7.8335488],[113.02736650000008,-7.833875399999954],[113.02663410000002,-7.836486599999944],[113.02462,-7.837228],[113.0251922000001,-7.838261799999941],[113.02253710000002,-7.839468699999941],[113.02256000000011,-7.841138099999966],[113.0179442000001,-7.843927199999939],[113.01552570000001,-7.848287299999981],[113.01390070000002,-7.848296399999981],[113.013893,-7.850254799999959],[113.00925440000003,-7.852701],[113.00621790000002,-7.857625299999938],[112.99783320000006,-7.863864199999966],[112.99668870000005,-7.866228299999932],[112.99000540000009,-7.869598199999928],[112.98603050000008,-7.877747799999952],[112.978279,-7.882380699999942],[112.96600330000001,-7.895952499999964],[112.96316520000005,-7.8979457],[112.95586390000005,-7.898335199999963],[112.95322410000006,-7.903867499999933],[112.948799,-7.906308899999942],[112.94852440000011,-7.9090993],[112.95175930000005,-7.910883199999944],[112.95290360000001,-7.915053099999966],[112.950386,-7.922916199999975],[112.95306390000007,-7.942808899999932],[112.94494620000012,-7.949512699999957],[112.937622,-7.950390099999936],[112.93531790000009,-7.956195599999944],[112.92894740000008,-7.9599989],[112.92781820000005,-7.967256799999973],[112.93553920000011,-7.979806699999926],[112.9421996000001,-7.983356199999946],[112.94760890000009,-7.986375599999974],[112.953041,-7.986645],[112.95929710000007,-7.985493899999938],[112.9702529000001,-7.980552],[112.9750365000001,-7.980403699999954],[112.9885101000001,-7.9681518],[112.99404140000001,-7.960595799999965],[113.00198360000002,-7.963653299999976],[113.0091552,-7.963677699999948],[113.01462540000011,-7.969028699999967],[113.02234640000006,-7.969304799999975],[113.03182210000011,-7.9792535],[113.036148,-7.980668799999933],[113.04366290000007,-7.990149199999962],[113.04450980000001,-7.994308199999978],[113.04842370000006,-7.999176699999964],[113.05097190000004,-8.0060594],[113.05438220000008,-8.009742499999959],[113.05823510000005,-8.010411],[113.06433860000004,-7.9982951],[113.06312550000007,-7.9874337],[113.069725,-7.981830799999955],[113.10408010000003,-7.980883299999959],[113.11309810000012,-7.9883353],[113.1147231000001,-7.991734699999938],[113.12123860000008,-7.9901716],[113.12422170000002,-7.984820599999978],[113.13603200000011,-7.976557],[113.1494292000001,-7.979876199999978],[113.15432730000009,-7.971199199999944],[113.16620630000011,-7.965318899999943],[113.16811360000008,-7.962066899999968],[113.17175280000004,-7.961588099999972],[113.17729940000004,-7.956286599999942],[113.18192280000005,-7.948423599999956],[113.18752280000001,-7.945098099999939],[113.18906390000006,-7.945926399999962],[113.1911239000001,-7.944756199999972],[113.20011130000012,-7.929190399999925],[113.20223220000003,-7.929446399999961],[113.20377340000005,-7.927240099999949],[113.2060775000001,-7.926932],[113.20610040000008,-7.919779],[113.21195970000008,-7.911035699999957],[113.21096790000001,-7.907749399999943],[113.208763,-7.907364099999938],[113.20751940000002,-7.898044299999981],[113.23251330000005,-7.9023659],[113.248268,-7.908027299999958],[113.250595,-7.906415199999969],[113.256584,-7.906913399999951],[113.25790390000009,-7.900361199999963],[113.26168050000001,-7.899133399999926],[113.26254260000007,-7.896043],[113.26744830000007,-7.901259099999947],[113.26810440000008,-7.917800599999964],[113.2707061000001,-7.920223899999939],[113.27457420000007,-7.9295289],[113.30828850000012,-7.926497599999948],[113.32157120000011,-7.927685399999973],[113.32517990000008,-7.9287492],[113.32818590000011,-7.931963099999962],[113.32861320000006,-7.935597099999939],[113.33197770000004,-7.940526199999965],[113.34495530000004,-7.956066299999975],[113.34635910000009,-7.960655799999927],[113.34668720000002,-7.975804],[113.35099020000007,-7.980505099999959],[113.35709370000006,-7.984245399999963],[113.36065660000008,-7.992784599999936],[113.36251060000006,-8.007636699999978],[113.36457810000002,-8.011451399999942],[113.36389150000002,-8.014193199999966],[113.3671035000001,-8.0212542],[113.36304460000008,-8.027681],[113.366722,-8.02760189999998],[113.366661,-8.025753599999973],[113.36898790000009,-8.024883899999963],[113.36980430000006,-8.022770499999979],[113.37153610000007,-8.023387599999978],[113.37179550000008,-8.021492599999931],[113.37529740000002,-8.022882099999947],[113.3788985000001,-8.020440699999938],[113.37973010000007,-8.018598199999929],[113.37870010000006,-8.017633099999955],[113.383026,-8.013877499999978],[113.38716880000004,-8.0136563],[113.38863360000005,-8.004092799999967],[113.39128860000005,-7.997275],[113.39557630000002,-8.000000599999964],[113.39672840000003,-8.002780599999937],[113.4057921000001,-8.008654299999932],[113.40871420000008,-8.01323],[113.4135817,-8.010317399999963],[113.42536910000001,-8.011185299999966],[113.43277730000011,-8.016007099999968],[113.4321364000001,-8.01994579999996],[113.43363180000006,-8.021306599999946],[113.43851460000008,-8.021037699999965],[113.44149770000001,-8.016619299999945],[113.44457230000012,-8.020385399999952],[113.44443500000011,-8.024370799999929],[113.45329270000002,-8.023612599999979],[113.45825950000005,-8.024674],[113.46244800000011,-8.021156899999937],[113.46622450000007,-8.022910699999954],[113.47124470000006,-8.022325099999932],[113.47939290000011,-8.017639699999961],[113.47991170000012,-8.011122299999954],[113.4817885000001,-8.010221099999967],[113.48200980000001,-8.008248],[113.47627240000008,-7.996930199999952],[113.48042280000004,-7.992403099999933],[113.4829863000001,-7.996491099999957],[113.49000540000009,-7.997093799999959],[113.49417860000005,-8.002202599999976],[113.49442280000005,-8.005124699999953],[113.504196,-8.007227499999942],[113.51415240000006,-8.013751599999978],[113.5281371000001,-8.01692449999996],[113.52790820000007,-8.012635799999941],[113.530197,-8.0081087],[113.53310380000005,-8.009174899999948],[113.53440840000007,-8.006651499999975],[113.53563680000002,-8.007600399999944],[113.53926070000011,-8.006372099999965],[113.53893270000003,-8.005037899999934],[113.54203780000012,-8.003391799999974],[113.5428237000001,-8.000651],[113.55253590000007,-7.998210499999971],[113.55480180000006,-7.994677599999932],[113.55763230000002,-7.993346299999928],[113.56080610000004,-7.986625299999957],[113.57051830000012,-7.987849799999935],[113.57541640000011,-7.985127],[113.58734110000012,-7.985787],[113.58992750000004,-7.984974899999941],[113.5924758000001,-7.979192299999966],[113.59891490000007,-7.980421099999944],[113.60259990000009,-7.979587099999947],[113.60398850000001,-7.980618499999935],[113.60562120000009,-7.989082899999971],[113.60725390000005,-7.989990299999931],[113.61378460000003,-7.988571699999966],[113.61329640000008,-7.991068399999961],[113.6147231000001,-7.992711099999951],[113.61505870000008,-7.989986499999929],[113.61957540000003,-7.987587],[113.61882010000011,-7.983492399999932],[113.62698350000005,-7.981813],[113.62768540000002,-7.9759059],[113.63870220000001,-7.975614099999973],[113.64356220000002,-7.973120699999981],[113.63567340000009,-7.965575699999931],[113.62951650000002,-7.972459799999967],[113.62849410000001,-7.970107599999949],[113.62927230000003,-7.967410599999937],[113.62667070000009,-7.966709699999967],[113.62377860000004,-7.961455799999953]]],[[[113.2615737000001,-7.676307399999928],[113.25006090000011,-7.677403599999934],[113.2427748,-7.6803662],[113.25780480000003,-7.680858799999953],[113.26072680000004,-7.679296199999953],[113.2615737000001,-7.676307399999928]]]]},"properties":{"shapeName":"Probolinggo","shapeISO":"","shapeID":"22746128B7779705602446","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[113.82719020000002,-1.631074599999977],[113.80703820000008,-1.706465699999967],[113.80475450000006,-1.740814599999965],[113.80764520000002,-1.755062399999929],[113.81837610000002,-1.788869399999953],[113.82275070000003,-1.840416599999969],[113.82372260000011,-1.8695584],[113.82206840000003,-1.895313599999952],[113.81488260000003,-1.9555315],[113.81938460000003,-1.978877599999976],[113.83103810000011,-2.004259599999955],[113.87870880000003,-2.074631099999976],[113.92711910000003,-2.142768899999965],[113.93779630000006,-2.163677099999973],[114.00265690000003,-2.169295599999941],[114.03523570000004,-2.174075399999936],[114.0618237000001,-2.185400199999947],[114.07728370000007,-2.187734399999954],[114.10679220000009,-2.198124299999961],[114.08486550000009,-2.251086899999962],[114.07064230000003,-2.263466499999936],[114.0301601000001,-2.292223499999977],[114.02601730000003,-2.374117599999977],[114.02915580000001,-2.391129399999954],[114.02705880000008,-2.396727299999952],[113.99598290000006,-2.391202699999951],[113.97467660000007,-2.390924499999926],[113.94134660000009,-2.3982655],[113.7631841000001,-2.398832],[113.713362,-2.489040799999941],[113.68237560000011,-2.556379499999935],[113.6579703000001,-2.595364899999936],[113.62110170000005,-2.668335899999931],[113.6049772,-2.696113399999945],[113.58314750000011,-2.741479099999935],[113.57736250000005,-2.777442199999939],[113.57587230000001,-2.800018099999932],[113.57761270000003,-2.820453099999952],[113.58403520000002,-2.8368899],[113.61776280000004,-2.887235],[113.638551,-2.929034599999966],[113.64189460000011,-2.9390408],[113.64500240000007,-2.964037],[113.64696340000012,-3.001970599999936],[113.63883930000009,-3.049621299999956],[113.63642460000005,-3.080504299999973],[113.63771670000006,-3.0916187],[113.63149930000009,-3.103048599999966],[113.63236470000004,-3.1172332],[113.628958,-3.132949699999926],[113.62660190000008,-3.137192299999981],[113.62105780000002,-3.138799699999936],[113.61312260000011,-3.135101599999928],[113.59336730000007,-3.166987099999972],[113.59557140000004,-3.1669187],[113.60266760000002,-3.177409799999964],[113.61713870000005,-3.212766399999964],[113.62577740000006,-3.241737199999932],[113.6300801000001,-3.263395499999945],[113.63211260000003,-3.296714899999927],[113.63331470000003,-3.297551299999952],[113.6313163000001,-3.319932699999924],[113.63231830000007,-3.320872599999973],[113.62625950000006,-3.3518964],[113.62115150000011,-3.363866399999949],[113.61795160000008,-3.376409],[113.61427540000011,-3.382663],[113.61101010000004,-3.396040899999946],[113.60767450000003,-3.4000327],[113.59693340000001,-3.421053499999971],[113.5811351000001,-3.442153899999937],[113.58195870000009,-3.444503699999927],[113.585278,-3.446607299999926],[113.58787590000009,-3.446619],[113.61813060000009,-3.459425],[113.62690180000004,-3.464776499999971],[113.68019270000002,-3.468852],[113.72125390000008,-3.467687599999977],[113.7857345000001,-3.460646699999927],[113.80940180000005,-3.453422599999953],[113.81299720000004,-3.450705899999946],[113.82055910000008,-3.449849299999926],[113.83315960000004,-3.444634699999938],[113.8423252,-3.438407599999948],[113.84494920000009,-3.438682799999981],[113.84741210000004,-3.436080499999946],[113.85341310000001,-3.433896199999936],[113.85463620000007,-3.431556],[113.85952720000012,-3.430798099999947],[113.86001380000005,-3.429127699999981],[113.86255150000011,-3.4285852],[113.86297020000006,-3.426230799999928],[113.8654901000001,-3.426342599999941],[113.86768060000009,-3.423343899999963],[113.8702492000001,-3.423006599999951],[113.87366080000004,-3.4191451],[113.88935930000002,-3.410205],[113.90096750000009,-3.4011274],[113.91259190000005,-3.395343499999967],[113.91486410000005,-3.392484],[113.93476610000005,-3.3816358],[113.9494092000001,-3.371442299999956],[113.9539516000001,-3.370376299999975],[113.9619116,-3.365278299999943],[113.993754,-3.355360699999949],[114.01880140000003,-3.352810799999929],[114.02244940000003,-3.351074499999925],[114.02901450000002,-3.3522928],[114.0345311000001,-3.351646899999935],[114.04055970000002,-3.349088799999947],[114.04477960000008,-3.344636199999968],[114.04390850000004,-3.340428499999973],[114.04677730000003,-3.322067299999958],[114.05287620000001,-3.310810599999968],[114.07463060000009,-3.311981199999934],[114.0773091000001,-3.316561299999933],[114.06774130000008,-3.3228409],[114.06956750000006,-3.333119],[114.07632010000009,-3.345694499999979],[114.08777820000012,-3.355284499999925],[114.0945676,-3.358565599999963],[114.09654730000011,-3.361438499999963],[114.11192910000011,-3.371694799999943],[114.1323076000001,-3.381609899999944],[114.17554310000003,-3.273402399999952],[114.19180370000004,-3.215668699999981],[114.2038040000001,-3.187502799999947],[114.2266211000001,-3.194123199999979],[114.28368110000008,-3.043305799999928],[114.22324760000004,-2.953122],[114.2652369000001,-2.911236599999938],[114.281628,-2.848947799999962],[114.29145010000002,-2.833873799999935],[114.29309030000002,-2.825843299999974],[114.29107980000003,-2.820498399999963],[114.2836946000001,-2.814943599999935],[114.28719400000011,-2.792574499999944],[114.3010508000001,-2.7812467],[114.3303029000001,-2.762281899999948],[114.3480621000001,-2.7458687],[114.34899890000008,-2.734952399999941],[114.33494760000008,-2.718499799999961],[114.3313108000001,-2.637249899999972],[114.3178435000001,-2.523576899999966],[114.29607110000006,-2.432366099999967],[114.2759655000001,-2.331598399999962],[114.2519804000001,-2.293941],[114.21564870000009,-2.268228299999976],[114.16134620000003,-2.247634],[114.13381170000002,-2.218770799999959],[114.1257667000001,-2.157026499999972],[114.12983650000001,-2.101267599999971],[114.13683890000004,-2.065263],[114.133451,-2.040400799999929],[114.11664570000005,-2.000160499999936],[114.0985343000001,-1.979031499999962],[114.07266960000004,-1.965679799999975],[114.03256580000004,-1.924275],[114.0208785000001,-1.903255799999954],[114.01589120000006,-1.8694499],[113.99850320000007,-1.832658899999956],[113.98918450000008,-1.797205899999938],[113.98339220000003,-1.750398699999948],[113.98135920000004,-1.694484799999941],[113.97131180000008,-1.672567399999934],[113.98393820000001,-1.649557099999925],[113.99042780000002,-1.6209268],[113.991783,-1.579371799999933],[113.98341890000006,-1.556303899999932],[113.969332,-1.5415815],[113.95861710000008,-1.549135099999944],[113.93445840000004,-1.561162299999978],[113.91438720000008,-1.574554699999965],[113.88753950000012,-1.616997899999944],[113.82719020000002,-1.631074599999977]]]},"properties":{"shapeName":"Pulang Pisau","shapeISO":"","shapeID":"22746128B91463604275218","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[128.23035210000012,1.962632900000074],[128.23505280000006,1.965872500000046],[128.233109,1.968794600000024],[128.22709970000005,1.964525900000069],[128.22787470000003,1.962772600000051],[128.23035210000012,1.962632900000074]]],[[[128.2253257000001,2.019797500000038],[128.2224198,2.01978280000003],[128.22138690000008,2.017186400000071],[128.22335220000002,2.016856400000052],[128.2253257000001,2.019797500000038]]],[[[128.269398,2.055083300000035],[128.2680977000001,2.054481100000032],[128.26831590000006,2.051662300000032],[128.270646,2.044811500000037],[128.2729134000001,2.043958800000041],[128.27365370000007,2.046338700000035],[128.2721994000001,2.051479],[128.269398,2.055083300000035]]],[[[128.2136154000001,2.053174900000045],[128.21393380000006,2.054266],[128.209641,2.058167800000035],[128.20967930000006,2.054490300000055],[128.2136154000001,2.053174900000045]]],[[[128.27977220000002,2.058213700000067],[128.2765598000001,2.06089350000002],[128.27419940000004,2.057781200000022],[128.27558780000004,2.054987500000038],[128.278511,2.053488600000037],[128.2807275,2.05622980000004],[128.27977220000002,2.058213700000067]]],[[[128.25059140000008,2.058891900000049],[128.24787240000012,2.062480600000072],[128.2441646000001,2.061239600000022],[128.24629670000002,2.055863700000032],[128.24887360000002,2.054993200000069],[128.25164010000003,2.057544200000052],[128.25299110000003,2.053631700000039],[128.25540630000012,2.053450500000054],[128.2567163000001,2.055708500000037],[128.25521670000012,2.059181700000067],[128.25315690000002,2.060198700000058],[128.25059140000008,2.058891900000049]]],[[[128.2697879000001,2.06728],[128.26729420000004,2.067822500000034],[128.2671895000001,2.065414500000031],[128.27093960000002,2.061921400000074],[128.27340470000001,2.063739300000066],[128.2697879000001,2.06728]]],[[[128.27142430000004,2.078146500000059],[128.2697587,2.077956200000074],[128.27036940000005,2.076217400000075],[128.2739885000001,2.075315100000068],[128.27308990000006,2.077794400000073],[128.27142430000004,2.078146500000059]]],[[[128.27988920000007,2.079743700000051],[128.2811325,2.080144800000028],[128.28120610000008,2.082985800000074],[128.27855230000011,2.081602],[128.27988920000007,2.079743700000051]]],[[[128.18408490000002,2.094208900000069],[128.1828809000001,2.094297],[128.18601320000005,2.088219200000026],[128.191567,2.086401400000057],[128.1936928,2.082060700000056],[128.1933484000001,2.077091200000041],[128.19594170000005,2.073331200000041],[128.19355810000002,2.090240400000027],[128.189547,2.094561300000066],[128.1857669000001,2.092701500000032],[128.18408490000002,2.094208900000069]]],[[[128.21170060000009,2.121547200000066],[128.20601850000003,2.124221700000021],[128.2094068,2.121214100000032],[128.21417530000008,2.12123310000004],[128.21170060000009,2.121547200000066]]],[[[128.22618380000006,2.115736600000048],[128.2262296,2.124645300000054],[128.222946,2.122189700000035],[128.22244150000006,2.119667400000026],[128.2231217000001,2.11708150000004],[128.22618380000006,2.115736600000048]]],[[[128.19444710000005,2.127170600000056],[128.18779770000003,2.126265800000056],[128.18771960000004,2.124986],[128.1926585000001,2.121699600000056],[128.19469960000004,2.125887],[128.19673520000003,2.126273800000035],[128.19444710000005,2.127170600000056]]],[[[128.18558830000006,2.126855],[128.183926,2.128433100000052],[128.18353270000011,2.125883300000055],[128.18558830000006,2.126855]]],[[[128.2259203000001,2.140530600000034],[128.22217980000005,2.139616800000056],[128.22132320000003,2.135762100000022],[128.2219894000001,2.129118700000049],[128.22473060000004,2.126596400000039],[128.23228770000003,2.132745],[128.2259203000001,2.140530600000034]]],[[[128.22111240000004,2.172196300000053],[128.2171244000001,2.174756600000023],[128.2179854000001,2.171242300000074],[128.22111240000004,2.172196300000053]]],[[[128.23499930000003,2.207103700000062],[128.23400220000008,2.207913800000028],[128.2336282000001,2.206551800000057],[128.2356850000001,2.203418400000032],[128.2367713000001,2.206872300000043],[128.23499930000003,2.207103700000062]]],[[[128.21184440000002,2.191969400000062],[128.21484280000004,2.200666100000035],[128.210416,2.209490100000039],[128.20585370000003,2.203766600000051],[128.2055590000001,2.198035100000027],[128.2076535000001,2.192850900000053],[128.21184440000002,2.191969400000062]]],[[[128.158153,2.283097400000031],[128.16080380000005,2.284874],[128.15869730000009,2.287711100000024],[128.15338370000006,2.286207800000057],[128.15149150000002,2.283771300000069],[128.158153,2.283097400000031]]],[[[128.6825378000001,2.380167500000027],[128.684152,2.381053700000052],[128.68410790000007,2.383167300000025],[128.680548,2.38071960000002],[128.6825378000001,2.380167500000027]]],[[[128.18274930000007,2.36631280000006],[128.18090440000003,2.371116700000073],[128.17666140000006,2.374656100000038],[128.1786744000001,2.380894],[128.178438,2.387131400000044],[128.17408580000006,2.392791700000032],[128.1712132,2.404940200000055],[128.16651760000002,2.412699100000054],[128.1609817000001,2.410770100000036],[128.15476790000002,2.406609500000059],[128.14345360000004,2.389353500000027],[128.14124750000008,2.382216500000027],[128.14510360000008,2.375486700000067],[128.14396810000005,2.37010680000003],[128.14162650000003,2.366298400000062],[128.13793880000003,2.36557270000003],[128.1310268000001,2.351990600000022],[128.1316045000001,2.348780400000066],[128.1367983,2.346461],[128.13617620000002,2.342866800000024],[128.13306580000005,2.340102],[128.1281583000001,2.342175600000076],[128.1249097000001,2.333501100000035],[128.1261416000001,2.327065800000071],[128.13106140000002,2.32230370000002],[128.129655,2.315921400000036],[128.139152,2.299309300000061],[128.1437208000001,2.295347600000071],[128.15151670000012,2.291943100000026],[128.15844270000002,2.291382100000021],[128.1609056000001,2.28774210000006],[128.1717939,2.291148900000053],[128.178443,2.29081960000002],[128.18525130000012,2.299908900000048],[128.1879596000001,2.306543],[128.1859425,2.310449600000027],[128.1817502,2.30926450000004],[128.17678410000008,2.314665900000023],[128.17944520000003,2.31877860000003],[128.1795489000001,2.323617],[128.17771720000007,2.325725100000056],[128.18022210000004,2.32676790000005],[128.17806280000002,2.332360600000072],[128.1822591,2.339628400000038],[128.18020280000007,2.346913],[128.18255880000004,2.349724200000026],[128.18234830000006,2.356932700000073],[128.18521220000002,2.365649],[128.18274930000007,2.36631280000006]]],[[[128.59369,2.612459600000022],[128.59176460000003,2.619501300000024],[128.58259750000002,2.634404],[128.571891,2.64397770000005],[128.56584470000007,2.645466800000065],[128.5601819000001,2.641947300000027],[128.5484878000001,2.627560300000027],[128.54335530000003,2.615317900000036],[128.5463463000001,2.606252200000029],[128.53534600000012,2.59124730000002],[128.53084880000006,2.587414],[128.53039350000006,2.580492400000026],[128.52590640000005,2.576907800000072],[128.51967460000003,2.576175800000044],[128.51155770000003,2.581044],[128.50662950000003,2.579855800000075],[128.5054914000001,2.577293900000029],[128.50194680000004,2.576602],[128.49932480000007,2.578141100000039],[128.49689820000003,2.58384650000005],[128.48966870000004,2.586182800000074],[128.48668070000008,2.589978],[128.48467030000006,2.589361300000064],[128.48582340000007,2.585586200000023],[128.4838631,2.585325500000067],[128.4771349,2.594369800000038],[128.4751245000001,2.593517500000075],[128.47650320000002,2.591517200000055],[128.47610720000011,2.587902400000075],[128.47328960000004,2.587230600000055],[128.4685167,2.590745100000049],[128.46902810000006,2.593552600000066],[128.46681210000008,2.597212500000069],[128.461197,2.595568100000037],[128.4554415,2.584598500000027],[128.45381710000004,2.584372900000062],[128.45232310000006,2.586137700000052],[128.4515811000001,2.581806],[128.44796630000008,2.581149200000027],[128.44698370000003,2.578116],[128.44540440000003,2.577880400000026],[128.447485,2.573593800000026],[128.44738350000011,2.571076],[128.4453793,2.569056600000067],[128.43883670000002,2.567271800000071],[128.43348730000002,2.573147600000027],[128.4329659000001,2.569738400000062],[128.4296971000001,2.568084],[128.4302335000001,2.565466900000047],[128.4267341000001,2.55666320000006],[128.42777190000004,2.554086300000051],[128.42031180000004,2.550381300000026],[128.42035690000012,2.54806],[128.41905340000005,2.547308],[128.41978540000002,2.544936600000028],[128.41650650000008,2.542349600000023],[128.4169627000001,2.538885300000061],[128.41512780000005,2.536528900000064],[128.41621570000007,2.53472910000005],[128.4102948000001,2.532267400000023],[128.41234530000008,2.531515400000046],[128.4117136000001,2.528271700000062],[128.40769780000005,2.525920300000053],[128.4044189000001,2.527870600000028],[128.40423340000007,2.529404700000043],[128.40252380000004,2.529149],[128.40218290000007,2.526316400000042],[128.3974151000001,2.526231200000041],[128.3952643,2.523463700000036],[128.390346,2.52194460000004],[128.38542270000005,2.517703200000028],[128.3799229000001,2.518856300000039],[128.3807551000001,2.514740200000062],[128.375882,2.511797300000069],[128.37710530000004,2.508708900000045],[128.37569150000002,2.505595500000027],[128.3737463000001,2.505751],[128.37265330000002,2.508162500000026],[128.36917390000008,2.506763700000022],[128.36454650000007,2.508458300000029],[128.36180410000009,2.507696200000055],[128.36056070000006,2.504823500000043],[128.35691090000012,2.503149],[128.353231,2.497508700000026],[128.34930540000005,2.494460500000059],[128.35124570000005,2.489670500000045],[128.3526429000001,2.490973900000029],[128.3541560000001,2.490757700000074],[128.35271620000003,2.490615600000069],[128.35276410000006,2.48848],[128.34221120000007,2.484052500000075],[128.3430585000001,2.483200200000056],[128.34057180000002,2.481726200000026],[128.3406821000001,2.480417700000032],[128.3364156,2.48093410000007],[128.3340141000001,2.477720400000067],[128.3331769,2.473188200000038],[128.330254,2.474291200000039],[128.32322010000007,2.471563800000069],[128.32384170000012,2.469022],[128.32140520000007,2.464865800000041],[128.3194449,2.464259100000049],[128.3199161000001,2.46319120000004],[128.31718380000007,2.463241400000072],[128.31292730000007,2.458353200000033],[128.31056590000003,2.451369400000033],[128.3082898,2.450191200000063],[128.30783860000008,2.44813060000007],[128.30669050000006,2.448642],[128.3052917000001,2.445338100000072],[128.2974656,2.442856400000039],[128.29641440000012,2.438898],[128.29912170000011,2.434579700000029],[128.294068,2.429706500000066],[128.29360010000005,2.427427100000045],[128.2972032,2.42294830000003],[128.29624730000012,2.415722200000062],[128.298754,2.412640500000066],[128.28702420000002,2.390102600000034],[128.2862354,2.383979400000044],[128.28836780000006,2.380576900000051],[128.28467790000002,2.372234400000025],[128.27572040000007,2.363136600000075],[128.27454390000003,2.357862300000022],[128.26586720000012,2.350161600000035],[128.2625783000001,2.345081200000038],[128.2624446000001,2.34223350000002],[128.2515753,2.335181200000022],[128.2486507000001,2.330816600000048],[128.24914080000008,2.326811300000031],[128.24256630000002,2.32166710000007],[128.24146110000004,2.318503],[128.2322372000001,2.316155900000069],[128.23054710000008,2.311127700000043],[128.21920190000003,2.306479800000034],[128.21318070000007,2.302043100000049],[128.21129410000003,2.29743650000006],[128.203002,2.290687400000024],[128.19849750000003,2.283155700000066],[128.1969851,2.27875030000007],[128.20194340000012,2.277333800000065],[128.20925110000007,2.27759930000002],[128.2160751,2.280219],[128.21856150000008,2.277951500000029],[128.22235420000004,2.277097600000047],[128.2247694,2.27292140000003],[128.22268470000006,2.269657],[128.22856850000005,2.264903200000049],[128.23082920000002,2.258499700000073],[128.233917,2.258371100000033],[128.23520960000008,2.251902],[128.2462193,2.249936700000035],[128.24553750000007,2.247543600000029],[128.24934110000004,2.247563600000035],[128.245611,2.24306480000007],[128.24898010000004,2.242790700000057],[128.2497154,2.237884200000053],[128.24582490000012,2.23403380000002],[128.24412030000008,2.220671100000061],[128.2451631,2.215076],[128.24342450000006,2.209789500000056],[128.23987290000002,2.205318600000055],[128.2422735,2.201884200000052],[128.24805,2.199016900000061],[128.2475737000001,2.192762200000061],[128.2493479000001,2.189710200000036],[128.24817450000012,2.173900800000069],[128.2436269000001,2.163137100000029],[128.24335150000002,2.15810330000005],[128.2444345,2.150933900000041],[128.24817450000012,2.143037600000071],[128.24603380000008,2.123700500000041],[128.2507203,2.117395200000033],[128.24944770000002,2.110867600000063],[128.25440130000004,2.102087300000051],[128.25340860000006,2.093604400000061],[128.27033930000005,2.082288900000037],[128.2750718000001,2.086637800000062],[128.27885620000006,2.08757090000006],[128.28555380000012,2.077568300000053],[128.28412150000008,2.074468600000046],[128.2844679000001,2.07023270000002],[128.29134450000004,2.06184520000005],[128.2917927000001,2.057834200000059],[128.2907775000001,2.057307800000046],[128.291819,2.057797400000027],[128.2932366000001,2.054416300000071],[128.29053310000006,2.051287800000068],[128.2910482000001,2.049686],[128.28920950000008,2.049945500000035],[128.29109340000002,2.049543100000051],[128.291767,2.045561100000043],[128.28763020000008,2.03722410000006],[128.28735930000005,2.029030500000033],[128.28341880000005,2.018767700000069],[128.28070580000008,2.016099500000053],[128.27801640000007,2.005977400000063],[128.2756792,2.00188490000005],[128.27063160000012,1.99762190000007],[128.259761,1.980464100000063],[128.26989030000004,1.986581700000045],[128.2718658000001,1.989623400000028],[128.2769502000001,1.992892100000063],[128.28046940000002,1.998274400000071],[128.29253330000006,2.008760700000039],[128.2922549000001,2.011580300000048],[128.29446070000006,2.014310900000055],[128.29291820000003,2.024173],[128.29341750000003,2.030417100000022],[128.2995757000001,2.035604200000023],[128.30939410000008,2.034087700000043],[128.32382790000008,2.034366100000057],[128.3336504,2.03783530000004],[128.34574020000002,2.037596800000074],[128.3607621000001,2.044200600000067],[128.37268790000007,2.04685610000007],[128.38182510000001,2.051462700000059],[128.3965111000001,2.05627880000003],[128.4260164000001,2.058287],[128.43391150000002,2.061055900000042],[128.4464058000001,2.061343900000054],[128.45438980000006,2.055960300000038],[128.47070340000005,2.054466],[128.47885070000007,2.056940700000041],[128.48150170000008,2.060874500000068],[128.48483710000005,2.062523500000054],[128.48883640000008,2.062395],[128.4945649000001,2.057801500000039],[128.505144,2.059241600000064],[128.52192280000008,2.068841],[128.52446580000003,2.074815800000067],[128.5247657000001,2.080089300000054],[128.52730870000005,2.081845300000055],[128.53254470000002,2.081775700000037],[128.53804160000004,2.088207800000021],[128.54219420000004,2.09089160000002],[128.54482830000006,2.100094800000022],[128.5476698000001,2.102841600000033],[128.55160080000007,2.105047],[128.5604667,2.105903600000033],[128.5613608000001,2.104565200000025],[128.56211030000009,2.105459300000064],[128.5653172000001,2.103606900000045],[128.568567,2.103815700000041],[128.5736905000001,2.106658500000037],[128.5776631000001,2.111493],[128.57954760000007,2.116739700000039],[128.5794241000001,2.12741230000006],[128.57596250000006,2.132344700000033],[128.5750488000001,2.137134500000059],[128.57901060000006,2.144901100000027],[128.58430010000006,2.149069900000029],[128.5867843000001,2.161298],[128.5940369000001,2.168072300000063],[128.59327310000003,2.175046500000064],[128.59870540000009,2.184597600000075],[128.6020390000001,2.187631500000066],[128.60236020000002,2.193734800000072],[128.6050014000001,2.196061900000075],[128.61056220000012,2.197468100000037],[128.61187570000004,2.201294300000029],[128.61917110000002,2.20802580000003],[128.62302590000002,2.21385790000005],[128.62473910000006,2.217912500000068],[128.62273320000008,2.222295400000064],[128.6219837000001,2.230768700000056],[128.62402520000012,2.232781700000032],[128.62584990000005,2.24508510000004],[128.63010610000003,2.259986500000025],[128.6389951000001,2.275914500000056],[128.64113840000005,2.27697930000005],[128.6441615000001,2.28769120000004],[128.64567310000007,2.287804],[128.64869620000002,2.29279],[128.64784720000011,2.300624600000049],[128.6538022000001,2.309789400000057],[128.653853,2.311741400000074],[128.6457342000001,2.319841100000076],[128.6412504000001,2.332165300000042],[128.6422126000001,2.337163600000054],[128.64514770000005,2.339974900000072],[128.6448491000001,2.345463100000075],[128.6473489000001,2.352058300000067],[128.6472761000001,2.358664400000066],[128.649846,2.367468400000064],[128.6570892000001,2.376769100000047],[128.6626096000001,2.377162500000054],[128.66528720000008,2.37952290000004],[128.66607410000006,2.384979800000053],[128.6650059000001,2.385070400000075],[128.66365760000008,2.391154],[128.66575680000005,2.396122],[128.66875170000003,2.398647400000073],[128.67631530000006,2.400119500000073],[128.6835635000001,2.406153400000051],[128.6881174,2.411629800000071],[128.6885235000001,2.417467400000021],[128.69202180000002,2.419823200000053],[128.6939814000001,2.424419500000056],[128.69287630000008,2.42763240000005],[128.6896656,2.429624800000056],[128.68994480000003,2.431376100000023],[128.68879,2.430195900000058],[128.6869372000001,2.431794900000057],[128.69172780000008,2.440251100000069],[128.6922545000001,2.444383800000026],[128.6876264000001,2.45726250000007],[128.68879,2.459498200000041],[128.692356,2.459206300000062],[128.6927240000001,2.461122600000067],[128.69255810000004,2.47321850000003],[128.68793340000002,2.50178980000004],[128.67796150000004,2.505941],[128.67331850000005,2.498559],[128.6706365000001,2.498746200000028],[128.6699298000001,2.504271500000073],[128.6639963,2.512325700000076],[128.661447,2.51302510000005],[128.6612722000001,2.521450400000049],[128.65837870000007,2.525230500000021],[128.65382140000008,2.526832300000024],[128.65351650000002,2.524171100000046],[128.651641,2.523831700000073],[128.6444136,2.533690800000045],[128.63647220000007,2.530915800000059],[128.63403560000006,2.534232300000042],[128.63271770000006,2.53392],[128.63171620000003,2.536765900000034],[128.6356601000001,2.540276500000061],[128.63606860000004,2.54313540000004],[128.6321643000001,2.550853500000073],[128.63071910000008,2.563380900000027],[128.62902710000003,2.564666800000055],[128.6241539,2.562027200000045],[128.61440770000002,2.566539400000067],[128.61062470000002,2.571112200000073],[128.60726310000007,2.57808650000004],[128.6082017000001,2.580358800000056],[128.61141710000004,2.581557600000053],[128.60177470000008,2.602541],[128.59369,2.612459600000022]]]]},"properties":{"shapeName":"Pulau Morotai","shapeISO":"","shapeID":"22746128B83688103820158","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[124.39218460000006,-2.032921899999963],[124.38471160000006,-2.035775],[124.38343330000009,-2.037882299999978],[124.38511520000009,-2.037255399999935],[124.38542560000008,-2.039191099999925],[124.38222790000009,-2.042302699999937],[124.38119370000004,-2.041319499999929],[124.38199310000005,-2.036909199999968],[124.37873680000007,-2.037541799999929],[124.37355590000004,-2.046763099999964],[124.374527,-2.048978799999929],[124.37268010000003,-2.049136799999928],[124.37425410000003,-2.050561],[124.37295840000002,-2.054700799999978],[124.374828,-2.0597995],[124.38544410000009,-2.067857299999957],[124.38756250000006,-2.073619399999927],[124.39356120000002,-2.066741],[124.3928098,-2.064911399999971],[124.39442720000011,-2.063622299999963],[124.39076060000002,-2.058579599999973],[124.389913,-2.061725899999942],[124.38862350000011,-2.0614971],[124.38854960000003,-2.057380099999932],[124.39003770000011,-2.054619599999967],[124.39415110000004,-2.052969499999961],[124.39551240000003,-2.058205],[124.40132440000002,-2.057860699999935],[124.4053593000001,-2.046481599999936],[124.40515130000006,-2.042549399999928],[124.39218460000006,-2.032921899999963]]],[[[124.48616350000009,-2.021457899999973],[124.49819610000009,-2.015635399999951],[124.49264470000003,-2.013848699999926],[124.485709,-2.020419599999968],[124.48616350000009,-2.021457899999973]]],[[[124.69973820000007,-1.973808799999972],[124.69895110000004,-1.971160199999929],[124.69772680000005,-1.972381899999959],[124.69973820000007,-1.973808799999972]]],[[[124.31745640000008,-1.971236],[124.317835,-1.970026799999971],[124.31654920000005,-1.970515699999964],[124.31745640000008,-1.971236]]],[[[124.33350410000003,-1.966034699999966],[124.3252242000001,-1.969972599999949],[124.32266240000001,-1.969287699999938],[124.31990990000008,-1.9722327],[124.31669060000002,-1.971862699999974],[124.31033060000004,-1.976024399999972],[124.31131950000008,-1.978929],[124.30767850000007,-1.981004499999926],[124.31473750000009,-1.982681899999932],[124.31604130000005,-1.987028599999974],[124.3121526000001,-1.993398699999943],[124.31234740000002,-1.990131299999973],[124.310893,-1.989031399999931],[124.31191260000003,-1.987131499999975],[124.30995740000003,-1.988315399999976],[124.307929,-1.987604099999942],[124.305377,-1.991102399999932],[124.30386580000004,-1.997535899999946],[124.304335,-2.000258299999928],[124.3058694,-2.000311199999942],[124.30395180000005,-2.003544],[124.30500740000002,-2.007974099999956],[124.30746650000003,-2.0085678],[124.306938,-2.009804699999961],[124.30878740000003,-2.010895299999959],[124.31039410000005,-2.006405899999947],[124.30907950000005,-2.001482299999964],[124.30992990000004,-1.998882299999934],[124.31541510000011,-1.997887899999967],[124.31620190000001,-2.000663699999961],[124.3185347000001,-2.000463199999956],[124.31922670000006,-2.001753299999962],[124.31706770000005,-2.005570099999943],[124.31579350000004,-2.005544099999952],[124.31391080000003,-2.011084],[124.320715,-2.010284499999955],[124.31568340000001,-2.013131699999974],[124.31799030000002,-2.014077499999928],[124.31718550000005,-2.015944099999956],[124.32137430000012,-2.013982],[124.32878950000008,-2.015463899999929],[124.33405890000006,-2.018266399999959],[124.33585220000009,-2.021592699999928],[124.34742490000008,-2.025368899999933],[124.35302310000009,-2.030243899999959],[124.3608905000001,-2.043694399999936],[124.36367470000005,-2.044275699999957],[124.36285770000006,-2.043584799999962],[124.36471140000003,-2.041969399999971],[124.37189180000007,-2.040772199999935],[124.371883,-2.038834299999962],[124.36666890000004,-2.038918099999933],[124.36320870000009,-2.034635799999933],[124.36432350000007,-2.031299199999978],[124.36696990000007,-2.029937799999971],[124.36730030000001,-2.026363499999945],[124.36561140000003,-2.025919899999963],[124.3682993000001,-2.022942799999953],[124.36403780000012,-2.017644899999937],[124.36942890000012,-2.013239299999952],[124.37013090000005,-2.010199199999931],[124.3678076000001,-2.006858899999941],[124.36787760000004,-2.004363699999942],[124.36944710000012,-1.999343],[124.37222830000007,-1.997343299999955],[124.37236970000004,-1.994460499999946],[124.37531030000002,-1.990601899999945],[124.37436260000004,-1.987954199999933],[124.370252,-1.9864119],[124.3707687000001,-1.982613899999933],[124.3689442000001,-1.979997399999945],[124.37020490000009,-1.976481199999967],[124.36613230000012,-1.970501099999979],[124.36169360000008,-1.971283399999948],[124.36025030000008,-1.970345],[124.3557446000001,-1.9727419],[124.35159950000002,-1.968792699999938],[124.34583860000009,-1.967572299999972],[124.34238520000008,-1.969831299999953],[124.34392250000008,-1.970528499999944],[124.34276000000011,-1.973789],[124.3386518000001,-1.975223699999958],[124.33669210000005,-1.973026899999979],[124.33754170000009,-1.9693786],[124.33362470000009,-1.967813199999966],[124.33350410000003,-1.966034699999966]]],[[[124.33860930000003,-1.8990462],[124.33514290000005,-1.894980199999964],[124.33252960000004,-1.895966499999929],[124.33423080000011,-1.900989399999958],[124.3377891,-1.903762],[124.3368200000001,-1.899676399999976],[124.34041510000009,-1.901402399999938],[124.33860930000003,-1.8990462]]],[[[124.34015120000004,-1.8202838],[124.33712280000009,-1.824069399999928],[124.33834250000007,-1.827599],[124.33978940000009,-1.827480899999955],[124.34095880000007,-1.823635299999978],[124.34015120000004,-1.8202838]]],[[[124.31448190000003,-1.785712],[124.311814,-1.785981299999946],[124.31066610000005,-1.787876899999958],[124.3116566000001,-1.788760899999943],[124.31033090000005,-1.792631099999937],[124.3116731,-1.793247599999972],[124.31031320000011,-1.795779099999947],[124.30895910000004,-1.797172899999964],[124.30579450000005,-1.796003599999949],[124.30438030000005,-1.797576899999967],[124.30565780000006,-1.801256799999976],[124.30824050000001,-1.801396599999975],[124.31007140000008,-1.797760699999969],[124.31580770000005,-1.792453199999954],[124.3161950000001,-1.789378799999952],[124.31448190000003,-1.785712]]],[[[124.31500710000012,-1.766480599999966],[124.3132753000001,-1.766520599999978],[124.31448140000009,-1.766790699999945],[124.31386680000003,-1.768494699999962],[124.31500710000012,-1.766480599999966]]],[[[124.34805240000003,-1.759592699999928],[124.34499080000012,-1.757366599999955],[124.34222180000006,-1.762949399999968],[124.34271540000009,-1.766775],[124.34499860000005,-1.769245499999954],[124.34606890000009,-1.768728],[124.3453075000001,-1.771021499999961],[124.34370930000011,-1.769422799999973],[124.34154160000003,-1.771925499999952],[124.34458440000003,-1.778269799999975],[124.34897060000003,-1.775966],[124.34882240000002,-1.771946699999944],[124.35013690000005,-1.770390099999929],[124.34899450000012,-1.764604499999962],[124.34997710000005,-1.763729199999943],[124.34805240000003,-1.759592699999928]]],[[[124.36093540000002,-1.758986399999969],[124.35995230000003,-1.757003299999951],[124.3595123,-1.758456199999955],[124.36093540000002,-1.758986399999969]]],[[[124.352882,-1.745933299999933],[124.35162330000003,-1.746780799999954],[124.3535475000001,-1.746755699999937],[124.352882,-1.745933299999933]]],[[[124.29293990000008,-1.7447547],[124.29334470000003,-1.743337499999939],[124.28501970000002,-1.751350499999944],[124.28317240000001,-1.754988199999957],[124.2849834000001,-1.763433199999952],[124.29202840000005,-1.775817599999925],[124.29529380000008,-1.778058299999941],[124.29496760000006,-1.776282699999967],[124.29628430000002,-1.775433599999928],[124.29866750000008,-1.779964099999972],[124.304566,-1.780004899999938],[124.3059594,-1.784363599999949],[124.311234,-1.785504399999979],[124.31395070000008,-1.783890299999939],[124.31393140000011,-1.781378599999925],[124.310357,-1.7739032],[124.30774850000012,-1.772663899999941],[124.30703070000004,-1.769200199999943],[124.30210060000002,-1.767404799999952],[124.3031519000001,-1.761057],[124.29754560000003,-1.755443599999978],[124.29387570000006,-1.753716699999927],[124.29000860000008,-1.753903899999955],[124.28848750000009,-1.751516399999957],[124.2858175,-1.7537117],[124.28709150000009,-1.751656099999934],[124.29045190000011,-1.750899499999946],[124.2909072000001,-1.746273299999928],[124.29293990000008,-1.7447547]]],[[[124.3600411000001,-1.743832],[124.35959710000009,-1.742666199999974],[124.35829520000004,-1.743421699999942],[124.3600411000001,-1.743832]]],[[[124.35445140000002,-1.739289499999927],[124.35283650000008,-1.739411899999936],[124.35261590000005,-1.7414144],[124.35502520000011,-1.741403099999957],[124.35445140000002,-1.739289499999927]]],[[[124.35784560000002,-1.739015299999949],[124.35698630000002,-1.739353199999925],[124.35951530000011,-1.7417468],[124.36015010000006,-1.739913],[124.35784560000002,-1.739015299999949]]],[[[124.37163210000006,-1.739589699999954],[124.37125390000006,-1.737874199999965],[124.3704308,-1.739650199999971],[124.37163210000006,-1.739589699999954]]],[[[124.36901880000005,-1.736198699999932],[124.36485440000001,-1.736380499999939],[124.36321370000007,-1.7407001],[124.36736010000004,-1.741540399999963],[124.36901880000005,-1.736198699999932]]],[[[124.36096430000009,-1.731315699999925],[124.35731360000011,-1.731866],[124.35596140000007,-1.7335162],[124.35635430000002,-1.736459599999932],[124.35986230000003,-1.736302499999965],[124.36096430000009,-1.731315699999925]]],[[[124.29935840000007,-1.730712599999947],[124.29818950000003,-1.730409],[124.29955840000002,-1.733258],[124.29935840000007,-1.730712599999947]]],[[[124.3036767000001,-1.729557599999964],[124.30526060000011,-1.727948699999956],[124.30435020000004,-1.726650899999925],[124.30299330000003,-1.727499599999931],[124.3036767000001,-1.729557599999964]]],[[[124.333219,-1.728034499999978],[124.33404940000003,-1.724617199999955],[124.33165350000002,-1.726287199999945],[124.333219,-1.728034499999978]]],[[[124.34518900000012,-1.722419499999944],[124.34511950000001,-1.723372],[124.34643990000006,-1.722759599999961],[124.34518900000012,-1.722419499999944]]],[[[124.36575460000006,-1.721133299999963],[124.3636232,-1.719078399999944],[124.36176990000001,-1.723511199999962],[124.3664298000001,-1.726758],[124.36575460000006,-1.721133299999963]]],[[[124.31587330000002,-1.718565599999977],[124.31179670000006,-1.719992599999955],[124.31119880000006,-1.723305599999946],[124.31356030000006,-1.735162399999979],[124.3149926000001,-1.737049799999966],[124.3171804000001,-1.736960099999976],[124.316136,-1.739793599999928],[124.318306,-1.740318299999956],[124.31752230000006,-1.741866799999968],[124.31921610000006,-1.743614799999932],[124.32178340000007,-1.740161],[124.32033600000011,-1.738738],[124.32110420000004,-1.7369883],[124.31831250000005,-1.727230399999939],[124.31969420000007,-1.722607899999957],[124.31587330000002,-1.718565599999977]]],[[[124.99137240000005,-1.7089891],[124.98958290000007,-1.709866399999953],[124.99072260000003,-1.713081299999942],[124.99228470000003,-1.711620799999935],[124.99137240000005,-1.7089891]]],[[[124.33956510000007,-1.713442],[124.34006110000007,-1.710176899999965],[124.33681880000006,-1.7040916],[124.3307761000001,-1.712386799999933],[124.33045850000008,-1.7170727],[124.33391440000003,-1.722663799999964],[124.33792090000009,-1.722115199999962],[124.33716090000007,-1.7178],[124.33956510000007,-1.713442]]],[[[124.96408680000002,-1.695643699999948],[124.9619566,-1.6933957],[124.96034960000009,-1.694394699999975],[124.96303790000002,-1.698127099999965],[124.96886240000003,-1.699346],[124.9679503000001,-1.696132],[124.96408680000002,-1.695643699999948]]],[[[124.34436080000012,-1.712500499999976],[124.34502710000004,-1.7071782],[124.35035630000004,-1.703228599999932],[124.3508561000001,-1.697306399999945],[124.34852290000003,-1.693049599999938],[124.3442811000001,-1.6951448],[124.34101360000011,-1.703061599999955],[124.34436080000012,-1.712500499999976]]],[[[124.96750040000006,-1.685888399999953],[124.96491160000005,-1.685406],[124.96428330000003,-1.686941299999944],[124.96895240000003,-1.691124599999966],[124.96750040000006,-1.685888399999953]]],[[[124.96486290000007,-1.663617],[124.95110850000003,-1.66429],[124.94969230000004,-1.666200299999957],[124.95444270000007,-1.671948199999974],[124.96047850000002,-1.667461],[124.96860250000009,-1.667391299999963],[124.97045870000011,-1.665421599999945],[124.96486290000007,-1.663617]]],[[[124.89581870000006,-1.658797499999935],[124.89653,-1.6573066],[124.89375030000008,-1.658812299999965],[124.88853840000002,-1.658233199999927],[124.88627990000009,-1.660607499999969],[124.88945160000003,-1.663350299999934],[124.89485280000008,-1.660617],[124.89581870000006,-1.658797499999935]]],[[[124.8802538000001,-1.661407799999949],[124.881785,-1.6587497],[124.88122150000004,-1.6569353],[124.8795927000001,-1.656642599999941],[124.87875660000009,-1.658219799999927],[124.8802538000001,-1.661407799999949]]],[[[124.99531940000008,-1.656676299999958],[124.99184260000004,-1.657757599999968],[124.99116980000008,-1.662246599999946],[124.99813350000011,-1.667616499999951],[124.99945620000005,-1.670279099999959],[125.00813710000011,-1.6670272],[125.02296660000002,-1.665002899999934],[125.01873360000002,-1.662381399999958],[125.00671750000004,-1.659271399999966],[124.99984880000011,-1.65968],[124.99531940000008,-1.656676299999958]]],[[[124.53139780000004,-1.630500899999959],[124.52708880000012,-1.630528499999969],[124.52166410000007,-1.635128],[124.51161330000002,-1.635256499999969],[124.50855800000011,-1.640792199999964],[124.5103544000001,-1.649259399999949],[124.50843350000002,-1.651758299999926],[124.503487,-1.6549557],[124.4899147000001,-1.658801199999971],[124.46491490000005,-1.663377399999945],[124.43307370000002,-1.664806699999929],[124.41899220000005,-1.6643576],[124.40055010000003,-1.660074699999939],[124.39878270000008,-1.662435399999936],[124.39593850000006,-1.662819099999979],[124.3920955000001,-1.665890899999965],[124.38528540000004,-1.674789499999974],[124.37846380000008,-1.677045699999951],[124.36173230000009,-1.704713699999957],[124.3603309,-1.717717899999968],[124.361936,-1.718111599999929],[124.36227670000005,-1.715779699999928],[124.36452530000008,-1.714734799999974],[124.36601680000001,-1.711433799999952],[124.36971150000011,-1.711244499999964],[124.371786,-1.712637599999937],[124.3674099000001,-1.7163021],[124.36853150000002,-1.719849799999963],[124.36701870000002,-1.7254064],[124.36808880000001,-1.727223399999957],[124.36670580000009,-1.728737699999954],[124.37149080000006,-1.734037499999943],[124.37207110000008,-1.741928599999937],[124.36860360000003,-1.742375799999934],[124.36339470000007,-1.748584199999925],[124.362254,-1.752541399999927],[124.36457020000012,-1.755566299999941],[124.36314390000007,-1.759971899999925],[124.36529250000001,-1.760486],[124.36564710000005,-1.764171599999941],[124.3649392000001,-1.765351799999962],[124.36419220000005,-1.762696799999958],[124.36086090000003,-1.761303699999928],[124.3605334,-1.770234199999948],[124.35766080000008,-1.772115299999939],[124.35411750000003,-1.780968499999972],[124.34819940000011,-1.787980699999935],[124.346694,-1.802670099999943],[124.34839140000008,-1.804687399999978],[124.34564550000005,-1.805901099999971],[124.34525420000011,-1.81105],[124.34219550000012,-1.814759799999933],[124.34451220000005,-1.822558099999981],[124.34240740000007,-1.825548699999956],[124.34204950000003,-1.831485799999939],[124.34551820000001,-1.837288499999943],[124.34426150000002,-1.8399937],[124.34492390000003,-1.844820099999936],[124.3433682000001,-1.847555199999931],[124.34465980000004,-1.854331799999954],[124.3414858000001,-1.859870399999977],[124.34308640000006,-1.862070399999936],[124.3404968000001,-1.866953299999977],[124.34110350000003,-1.877031799999941],[124.33854670000005,-1.881863499999952],[124.33692340000005,-1.882395199999962],[124.33577490000005,-1.887212799999929],[124.34105550000004,-1.8974186],[124.34367340000006,-1.907139699999959],[124.34303510000007,-1.908254799999952],[124.33986530000004,-1.905571099999975],[124.33988060000001,-1.906871399999943],[124.342567,-1.909198199999935],[124.34409990000006,-1.907582299999945],[124.34688480000011,-1.908608899999933],[124.34885650000001,-1.911380899999926],[124.34744400000011,-1.912631599999941],[124.3503376000001,-1.9148577],[124.35553450000009,-1.924881699999958],[124.36076810000009,-1.929316099999937],[124.36488630000008,-1.930401099999926],[124.36697490000006,-1.933226599999955],[124.36821020000002,-1.932443699999965],[124.37013860000002,-1.938264899999979],[124.37869740000008,-1.941631699999959],[124.38243020000004,-1.947885],[124.38269040000012,-1.956787099999929],[124.3936768000001,-1.973205599999972],[124.39770510000005,-1.9898071],[124.397438,-1.998431699999969],[124.39213410000002,-2.019314799999961],[124.3968427000001,-2.022825799999964],[124.39511370000002,-2.0280323],[124.40253170000005,-2.031096],[124.40449280000007,-2.033549499999936],[124.40965660000006,-2.027190499999961],[124.41635140000005,-2.022872],[124.42215580000004,-2.022983299999964],[124.42383630000006,-2.025066299999935],[124.42706260000011,-2.025965399999961],[124.45000220000009,-2.024625399999934],[124.46340220000002,-2.0184997],[124.47112310000011,-2.017702099999951],[124.47893980000003,-2.020796799999971],[124.48019170000009,-2.024629199999936],[124.482248,-2.02487],[124.48467370000003,-2.023200499999973],[124.48570240000004,-2.019772699999976],[124.4888161,-2.015252499999974],[124.49187890000007,-2.012891599999932],[124.49455790000002,-2.003515499999935],[124.49967490000006,-1.9982646],[124.49990750000006,-1.996272099999942],[124.50667380000004,-1.991732599999978],[124.5119251000001,-1.990205399999979],[124.51560210000002,-1.984004499999969],[124.52122150000002,-1.980875499999968],[124.52788360000011,-1.984540299999935],[124.53309780000006,-1.9844973],[124.5387038,-1.988709399999948],[124.54391280000004,-1.985831099999928],[124.54650310000011,-1.985928799999954],[124.55646820000004,-1.993704799999932],[124.5623723000001,-1.992268199999955],[124.5672039000001,-1.995440499999972],[124.56383810000011,-1.9972229],[124.55667,-1.997691599999939],[124.5494155,-2.002316],[124.53591730000005,-2.005402799999956],[124.52913610000007,-2.008920899999964],[124.53360550000002,-2.002058099999942],[124.53222620000008,-2.002664899999957],[124.53124020000007,-2.0006497],[124.53021930000011,-2.001768599999934],[124.52832740000008,-1.994846499999937],[124.52662320000002,-1.993393799999978],[124.51849740000011,-1.990868899999953],[124.51379750000001,-1.993270099999961],[124.51341470000011,-1.995375799999977],[124.51140470000007,-1.993365799999935],[124.50936270000011,-1.9948335],[124.5089799000001,-1.9961416],[124.51207470000008,-1.997098699999981],[124.50980690000006,-2.000735799999973],[124.50523150000004,-1.999838099999977],[124.50531080000007,-1.9972901],[124.50272660000007,-1.995631099999969],[124.50109280000004,-1.999633199999948],[124.49671190000004,-2.003106299999956],[124.49315510000008,-2.009510299999931],[124.493857,-2.013242499999933],[124.49829270000009,-2.013941099999954],[124.50190940000005,-2.012032499999975],[124.50837760000002,-2.013978299999962],[124.51305560000003,-2.013711899999976],[124.52433780000001,-2.018272099999933],[124.553552,-2.008059599999967],[124.58344740000007,-2.002684299999942],[124.61150070000008,-1.992715199999964],[124.63137910000012,-1.988474799999949],[124.65178820000006,-1.979937599999971],[124.67024260000005,-1.974741699999925],[124.674227,-1.974160899999958],[124.67879850000008,-1.976040699999942],[124.6819398,-1.9757222],[124.68675480000002,-1.971781499999963],[124.6937994000001,-1.970188899999926],[124.69265650000011,-1.965448899999956],[124.6938368000001,-1.962651],[124.70144970000001,-1.953208399999937],[124.72332640000002,-1.942785199999946],[124.73890810000012,-1.939119299999959],[124.7551830000001,-1.932892899999956],[124.76335160000008,-1.9277844],[124.7675858,-1.9203651],[124.77406830000007,-1.9158436],[124.81215750000001,-1.902479],[124.8246478000001,-1.899649899999929],[124.83591640000009,-1.899049099999957],[124.841239,-1.895752099999925],[124.84813410000004,-1.893804599999953],[124.86174,-1.891620299999943],[124.86474010000006,-1.892488799999967],[124.86650340000006,-1.895993099999941],[124.87084560000005,-1.898883799999965],[124.87208250000003,-1.901989199999946],[124.87356720000002,-1.900734399999976],[124.87671430000012,-1.9103054],[124.88429360000009,-1.919200599999954],[124.88508320000005,-1.922069099999931],[124.89082030000009,-1.9265957],[124.89666260000001,-1.925885099999959],[124.89821540000003,-1.927279899999974],[124.90482090000012,-1.927701],[124.91187390000005,-1.925911399999961],[124.91382130000011,-1.923358699999937],[124.91655830000002,-1.926358799999946],[124.91940060000002,-1.925753499999928],[124.92198410000003,-1.928392799999926],[124.92723580000006,-1.926723799999934],[124.9414279,-1.928648399999929],[124.94316150000009,-1.927],[124.947744,-1.929964199999972],[124.95356010000012,-1.930569499999933],[124.95798130000003,-1.927332499999977],[124.96108670000001,-1.931306399999926],[124.96637640000006,-1.932017],[124.96716050000009,-1.930930699999976],[124.96853440000007,-1.932885399999975],[124.97169250000002,-1.932332799999926],[124.976798,-1.939148899999964],[124.981035,-1.941017399999964],[124.98843010000007,-1.936964599999953],[124.989746,-1.931918499999938],[124.99256190000006,-1.931359],[124.99493040000004,-1.9321749],[124.99685160000001,-1.938727799999924],[124.99908850000008,-1.940806899999927],[125.0087995,-1.943570099999931],[125.0137734000001,-1.942175299999974],[125.01424710000003,-1.938991],[125.01756310000007,-1.938227799999936],[125.02130010000008,-1.9280694],[125.02082640000003,-1.918621599999938],[125.0193789000001,-1.916595199999961],[125.01993160000006,-1.911463399999946],[125.01322070000003,-1.905226199999959],[125.01361550000001,-1.900647099999958],[125.01839410000002,-1.895492199999978],[125.02613420000012,-1.891398799999934],[125.0432614,-1.887235899999951],[125.05854480000005,-1.885280399999942],[125.06366320000006,-1.889277],[125.0694668000001,-1.890562199999977],[125.08212980000008,-1.889655699999935],[125.08978850000005,-1.893257299999959],[125.09330350000005,-1.898910099999966],[125.10193540000012,-1.899989099999971],[125.11219910000011,-1.893646699999977],[125.11948860000007,-1.883160399999952],[125.12514550000003,-1.881341199999952],[125.1271369000001,-1.877516499999956],[125.15008550000005,-1.874073],[125.15683230000002,-1.874750399999925],[125.15931490000003,-1.878975299999979],[125.16156130000002,-1.875583199999937],[125.16864260000011,-1.874997],[125.17105860000004,-1.875958799999978],[125.17158450000011,-1.879043899999942],[125.17791970000007,-1.884194],[125.18876590000002,-1.885157199999981],[125.197115,-1.880619499999966],[125.2098089000001,-1.882483899999954],[125.2192480000001,-1.878975],[125.221248,-1.880308399999933],[125.22405520000007,-1.877396],[125.22528330000011,-1.878097799999978],[125.2239148000001,-1.879010099999959],[125.2244763000001,-1.8799926],[125.22735360000001,-1.879747],[125.229459,-1.877992499999948],[125.2280905,-1.877080199999966],[125.22801360000005,-1.873859399999958],[125.23155090000012,-1.871904399999949],[125.2338400000001,-1.872434299999952],[125.2347893000001,-1.877463199999966],[125.24019190000001,-1.882289799999967],[125.25274960000002,-1.883217299999956],[125.25920030000009,-1.8856186],[125.27441220000003,-1.884556199999963],[125.28071710000006,-1.887407],[125.29226290000008,-1.888604499999929],[125.29528660000005,-1.890905399999951],[125.2987955000001,-1.8893615],[125.30469060000007,-1.889747399999976],[125.30855040000006,-1.893256399999927],[125.31479630000001,-1.893466899999964],[125.31795550000004,-1.892179],[125.32721790000005,-1.8849402],[125.3230774000001,-1.875606399999924],[125.32244580000008,-1.863535699999943],[125.3151266000001,-1.846552799999927],[125.3175642000001,-1.834100099999944],[125.31480650000003,-1.825350799999967],[125.31672620000006,-1.822410899999966],[125.31817030000002,-1.809688699999924],[125.32416520000004,-1.7970764],[125.32202470000004,-1.785532],[125.31629710000004,-1.781026499999939],[125.30938170000002,-1.779295299999944],[125.30522340000005,-1.780799099999967],[125.30296480000004,-1.778798599999959],[125.29952160000005,-1.778662699999927],[125.29421190000005,-1.780497299999979],[125.28645970000002,-1.786604199999942],[125.2795556000001,-1.794972599999937],[125.27483460000008,-1.797118099999977],[125.2728485,-1.796880899999962],[125.26974870000004,-1.790624599999944],[125.26967190000005,-1.784712799999966],[125.2766898000001,-1.782102099999975],[125.289758,-1.773978499999942],[125.29552,-1.767118799999935],[125.29730230000007,-1.757655499999942],[125.29491690000009,-1.7500787],[125.29773860000012,-1.744602499999928],[125.29773140000009,-1.738896399999931],[125.293467,-1.7326513],[125.28757370000005,-1.730455099999972],[125.27269690000003,-1.726549],[125.2628549000001,-1.726347899999951],[125.256404,-1.723530099999948],[125.2427877,-1.722913799999958],[125.23637810000002,-1.728060199999959],[125.23211870000011,-1.739636099999927],[125.22828410000011,-1.740037399999949],[125.22355870000001,-1.734282699999937],[125.2216873000001,-1.736341299999935],[125.22138830000006,-1.743236099999933],[125.22277420000012,-1.748119799999927],[125.22668030000011,-1.751799399999925],[125.2294859000001,-1.760358],[125.22826530000009,-1.764677699999936],[125.229139,-1.765676399999961],[125.22528980000004,-1.766611699999942],[125.22196990000009,-1.780073499999958],[125.21816890000002,-1.778378399999951],[125.21679330000006,-1.782424],[125.2149945000001,-1.783559399999945],[125.21584270000005,-1.785589699999946],[125.21382730000005,-1.7885543],[125.2136402000001,-1.792437499999949],[125.19777980000003,-1.791595299999926],[125.18491370000004,-1.7857471],[125.180083,-1.7803433],[125.18135790000008,-1.7778871],[125.18589620000012,-1.776623899999947],[125.18721830000004,-1.768385399999943],[125.19099580000011,-1.766097099999968],[125.19473870000002,-1.752997],[125.19361580000009,-1.746493799999939],[125.1914819000001,-1.7453043],[125.19803120000006,-1.7428927],[125.19963470000005,-1.733323699999971],[125.20601410000006,-1.728060199999959],[125.20418940000002,-1.724598],[125.19784350000009,-1.7201256],[125.1947507000001,-1.713354399999957],[125.1925936,-1.711704099999963],[125.1895555000001,-1.712240899999927],[125.18513470000005,-1.716533599999934],[125.18167170000004,-1.716288799999973],[125.18075080000006,-1.714281599999936],[125.18233490000011,-1.710694299999943],[125.18019570000001,-1.709399399999938],[125.183973,-1.706391399999973],[125.184429,-1.703405099999941],[125.18066540000007,-1.702876299999957],[125.17471640000008,-1.698748699999953],[125.17215710000005,-1.700848899999926],[125.17001930000004,-1.700798],[125.16945160000012,-1.698630399999956],[125.1650297000001,-1.6950762],[125.16376650000007,-1.695216499999958],[125.16144070000007,-1.700765199999978],[125.15174250000007,-1.706819399999972],[125.15071640000008,-1.713916299999937],[125.1489984000001,-1.716451399999926],[125.14796930000011,-1.716066099999978],[125.14689540000006,-1.7087368],[125.14183230000003,-1.709748099999956],[125.13948750000009,-1.707456899999954],[125.141192,-1.702023899999972],[125.1437926000001,-1.700337799999943],[125.14172570000005,-1.692444399999943],[125.13873830000011,-1.691699799999981],[125.13705430000005,-1.687369199999978],[125.12871020000011,-1.683850399999926],[125.11529640000003,-1.687169399999959],[125.11365890000002,-1.688806899999975],[125.11094530000003,-1.688245499999937],[125.10771710000006,-1.691193],[125.1063478000001,-1.706906599999968],[125.10900690000005,-1.710725299999979],[125.1086921000001,-1.7176531],[125.10628140000006,-1.723947799999962],[125.10251720000008,-1.726894399999935],[125.10233430000005,-1.729674799999941],[125.10326550000002,-1.731603599999971],[125.10506250000003,-1.731576599999926],[125.10738960000003,-1.7277795],[125.10883990000002,-1.730539799999974],[125.11407990000009,-1.729510599999969],[125.11436060000005,-1.730773799999952],[125.10392740000009,-1.737183399999935],[125.10383380000007,-1.738165899999956],[125.10628550000001,-1.737344699999937],[125.1051347,-1.742324599999961],[125.09742420000009,-1.744154499999979],[125.09101450000003,-1.740926299999956],[125.08731840000007,-1.745137],[125.08858170000008,-1.747055199999977],[125.09073380000007,-1.745043399999929],[125.0940088000001,-1.748412],[125.09929560000012,-1.7474763],[125.09648850000008,-1.750283499999966],[125.099857,-1.751593499999956],[125.105986,-1.750423799999965],[125.10617310000009,-1.746447],[125.10851020000007,-1.747864399999969],[125.11068280000006,-1.746540699999969],[125.10798840000007,-1.753126499999951],[125.10434850000001,-1.753137399999957],[125.10561170000005,-1.756506],[125.10516470000005,-1.758266699999979],[125.10390020000011,-1.757981399999949],[125.10353240000006,-1.761535],[125.10118940000007,-1.760964299999955],[125.1008273000001,-1.758546],[125.10209150000003,-1.758644299999958],[125.10050280000007,-1.756526699999938],[125.09870630000012,-1.756965099999945],[125.1001212000001,-1.758796199999949],[125.0982987000001,-1.7581874],[125.09602630000006,-1.760785],[125.0905934000001,-1.756927],[125.08685060000005,-1.759172799999931],[125.07870980000007,-1.757862799999941],[125.0773071000001,-1.763517099999945],[125.08062810000001,-1.764085299999977],[125.08080460000008,-1.7657074],[125.07580910000001,-1.7663778],[125.07242870000005,-1.772406],[125.0689784000001,-1.772319599999946],[125.06879130000004,-1.758798499999955],[125.0665944000001,-1.757001299999956],[125.0687445000001,-1.754353799999933],[125.068417,-1.750985199999946],[125.067528,-1.749301],[125.0637852000001,-1.750611],[125.061212,-1.7428913],[125.05686090000006,-1.748271699999975],[125.0601282,-1.757291499999951],[125.058567,-1.75758],[125.05987360000006,-1.762077499999975],[125.05906010000001,-1.7660805],[125.05700210000009,-1.768232],[125.05082550000009,-1.768857399999945],[125.04638080000007,-1.771337099999926],[125.044603,-1.769933499999979],[125.04549190000012,-1.767500599999948],[125.04016050000007,-1.764158099999975],[125.04137480000009,-1.763289899999961],[125.04095370000005,-1.760389199999963],[125.036913,-1.757887],[125.03800620000004,-1.750611],[125.03590080000004,-1.752014499999973],[125.03365510000003,-1.756880299999978],[125.02710510000009,-1.757816],[125.0237244000001,-1.760190899999941],[125.0185901000001,-1.757394899999952],[125.01564260000009,-1.752154899999937],[125.01409110000009,-1.7462705],[125.01493030000006,-1.743739299999959],[125.01877070000012,-1.738493399999925],[125.02205220000008,-1.737183399999935],[125.02118220000011,-1.733691699999952],[125.02670640000008,-1.725907899999925],[125.0251297000001,-1.723391099999958],[125.02084450000007,-1.726251],[125.018266,-1.725742599999933],[125.02130360000001,-1.718328699999972],[125.01901110000006,-1.718375499999979],[125.01775750000002,-1.720652799999925],[125.01431390000005,-1.719695099999967],[125.01129150000008,-1.725206299999968],[125.00769060000005,-1.722899499999926],[125.00630650000005,-1.726703699999973],[124.99987840000006,-1.727370699999938],[124.998314,-1.724641899999938],[124.99566170000003,-1.724732099999926],[125.0013378000001,-1.720884399999932],[125.00210980000008,-1.7155508],[124.99463570000012,-1.712884],[124.98928080000007,-1.715957599999967],[124.98705640000003,-1.713761299999931],[124.98116140000002,-1.7144982],[124.9796927000001,-1.716950599999961],[124.9783192000001,-1.716322799999944],[124.97695070000009,-1.714287599999977],[124.97737010000003,-1.709275599999955],[124.98253290000002,-1.711058199999968],[124.98372290000009,-1.709726],[124.98031930000002,-1.7037257],[124.97852970000008,-1.703901199999962],[124.97761530000002,-1.707186099999944],[124.974319,-1.703831],[124.97221720000005,-1.707342299999937],[124.9718276000001,-1.704883699999925],[124.96786250000002,-1.703234499999951],[124.96623290000002,-1.706186399999979],[124.96712570000011,-1.709866399999953],[124.96086770000011,-1.709480399999961],[124.961757,-1.707480299999929],[124.96074610000005,-1.706218599999943],[124.96480980000001,-1.707515399999977],[124.96296680000012,-1.702355699999941],[124.9641782000001,-1.700848399999927],[124.95888270000012,-1.697494499999948],[124.958599,-1.694953399999974],[124.955862,-1.695514799999955],[124.95322290000001,-1.698288699999978],[124.95354610000004,-1.696181499999966],[124.9508442,-1.695058599999925],[124.95228290000011,-1.698707899999931],[124.94845810000004,-1.698637799999972],[124.94821250000007,-1.699865899999963],[124.95242320000011,-1.703445],[124.95042310000008,-1.7034099],[124.95003710000003,-1.705304699999942],[124.948423,-1.705445099999963],[124.94024720000004,-1.696883299999968],[124.93722950000006,-1.699023699999941],[124.93354510000006,-1.698427199999969],[124.933006,-1.703894199999979],[124.928387,-1.705269599999951],[124.91670220000003,-1.702918699999941],[124.915024,-1.701696599999934],[124.91421090000006,-1.696883299999968],[124.91129870000009,-1.696334499999978],[124.91220450000003,-1.701511899999957],[124.90891240000008,-1.703269599999942],[124.90443080000011,-1.703139499999963],[124.90195910000011,-1.708324699999935],[124.89831540000012,-1.7086733],[124.89413980000006,-1.705094199999962],[124.89312220000011,-1.699865899999963],[124.88656050000009,-1.699269399999935],[124.8805602000001,-1.695093699999973],[124.87830750000012,-1.689767599999925],[124.88034970000001,-1.6860056],[124.87754250000012,-1.6867425],[124.87227910000001,-1.684461699999929],[124.8709808000001,-1.680040399999939],[124.86603320000006,-1.682356299999981],[124.83655810000005,-1.683654599999954],[124.82694370000002,-1.681093099999941],[124.82466280000006,-1.676812199999972],[124.82020650000004,-1.677233199999932],[124.81634670000005,-1.674601499999937],[124.80593240000007,-1.673134199999936],[124.80226860000005,-1.674955],[124.80391870000005,-1.678868899999941],[124.80899290000002,-1.682538799999975],[124.8142997000001,-1.684047],[124.81311930000004,-1.685086799999965],[124.81080080000004,-1.684224899999947],[124.81159240000011,-1.686562199999969],[124.80935350000004,-1.686993099999938],[124.8063886000001,-1.683442699999944],[124.80446360000008,-1.683798699999954],[124.80386870000007,-1.681508299999962],[124.78630890000011,-1.677433299999961],[124.78318600000011,-1.674657899999943],[124.7810234000001,-1.666678199999978],[124.77918940000006,-1.665452],[124.77586860000008,-1.665634699999941],[124.76614560000007,-1.670927],[124.75084270000002,-1.670716699999957],[124.74562490000005,-1.665831399999945],[124.738037,-1.664051499999971],[124.73598550000008,-1.662093699999957],[124.72760130000006,-1.6613958],[124.71722660000012,-1.656463699999961],[124.71502980000002,-1.653826699999968],[124.70730620000006,-1.656707199999971],[124.68824280000001,-1.651306699999964],[124.671943,-1.6440046],[124.6649781000001,-1.643199],[124.66065010000011,-1.644679],[124.65829090000011,-1.642646299999967],[124.64922650000005,-1.642229099999952],[124.6430362000001,-1.639780499999972],[124.62812320000012,-1.639342399999975],[124.62475690000008,-1.640790099999947],[124.61375010000006,-1.638577699999928],[124.60518490000004,-1.638536],[124.60056110000005,-1.643728099999976],[124.59735560000001,-1.645230899999945],[124.59236970000006,-1.643911399999979],[124.5877719,-1.639961899999946],[124.5857224,-1.642987099999971],[124.57743770000002,-1.647372399999938],[124.56743150000011,-1.643955],[124.5644036000001,-1.641290099999935],[124.56376200000011,-1.638849899999968],[124.56087830000001,-1.640115099999946],[124.55427880000002,-1.638674],[124.54632010000012,-1.642835099999957],[124.5412060000001,-1.6421262],[124.54061600000011,-1.643996699999946],[124.53717720000009,-1.645565899999951],[124.53243430000009,-1.658424299999979],[124.52833340000007,-1.6646538],[124.5263304,-1.665493199999958],[124.52300940000009,-1.6633344],[124.52328480000006,-1.6554057],[124.52059350000002,-1.655832799999928],[124.52375360000008,-1.6502149],[124.5236552,-1.6477863],[124.52107190000004,-1.647412],[124.5195208,-1.6454753],[124.5245595,-1.644364099999962],[124.525447,-1.636037099999953],[124.5312427,-1.632820299999935],[124.53139780000004,-1.630500899999959]]],[[[124.49206780000009,-1.628565099999946],[124.49147830000004,-1.627265399999942],[124.4903107,-1.628658],[124.48625490000006,-1.629047199999945],[124.48719770000002,-1.637624799999969],[124.48965280000004,-1.635447399999975],[124.49206780000009,-1.628565099999946]]],[[[124.47392800000011,-1.577692299999967],[124.4723375000001,-1.583692699999972],[124.47410450000007,-1.588077699999928],[124.478443,-1.592301299999974],[124.47845060000009,-1.6027991],[124.48048340000003,-1.604350199999942],[124.48321250000004,-1.597384399999953],[124.482672,-1.5922883],[124.48467950000008,-1.588118799999961],[124.48220870000011,-1.5849531],[124.48139210000011,-1.580957599999977],[124.47392800000011,-1.577692299999967]]]]},"properties":{"shapeName":"Pulau Taliabu","shapeISO":"","shapeID":"22746128B94094600276257","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[137.1889609000001,-3.909012099999927],[137.19953080000005,-3.938326399999937],[137.20398490000002,-4.023675399999945],[137.29138060000002,-4.031994599999962],[137.3205127000001,-4.161008399999957],[137.4501894000001,-4.165103399999964],[137.48666030000004,-4.163390399999969],[137.67836230000012,-4.172312399999953],[137.69585150000012,-4.119036599999959],[137.70467610000003,-4.085208699999953],[137.71497150000005,-4.057263899999953],[137.75762410000004,-4.013140599999929],[137.78409810000005,-3.995491299999969],[137.81351370000004,-3.9793127],[137.83998770000005,-3.974900399999967],[137.870874,-3.9763712],[137.89881880000007,-3.969017299999962],[137.91940970000007,-3.966075699999976],[137.937059,-3.961663399999964],[137.94882560000008,-3.944014],[137.94882530000007,-3.885182899999961],[137.95195520000004,-3.866782899999976],[137.93934190000004,-3.858374],[137.9129716000001,-3.829388599999959],[137.8989788,-3.799251099999935],[137.89144440000007,-3.771266299999979],[137.89036850000002,-3.740052499999933],[137.8914453000001,-3.7045333],[137.8871395000001,-3.685158699999931],[137.86402140000007,-3.695970699999975],[137.84311690000004,-3.702147399999944],[137.8179365000001,-3.694544899999926],[137.7998827,-3.684093099999927],[137.78705490000004,-3.673640899999953],[137.7851545000001,-3.666514399999926],[137.7789782000001,-3.656062099999929],[137.77755290000005,-3.649410699999976],[137.7689001000001,-3.636175199999968],[137.76650360000008,-3.629584899999941],[137.7545212000001,-3.617003299999965],[137.7455344000001,-3.610413],[137.72717230000012,-3.606696499999941],[137.7253502000001,-3.6019599],[137.67725340000004,-3.603357399999936],[137.65357390000008,-3.602281099999971],[137.61559940000006,-3.576676],[137.5714527,-3.528324899999973],[137.4957726,-3.486280399999941],[137.4747503000001,-3.454747],[137.47054590000005,-3.4232136],[137.45793250000008,-3.391680299999962],[137.44111480000004,-3.355942499999969],[137.41168360000006,-3.326511299999936],[137.3851820000001,-3.307076799999948],[137.43580550000001,-3.253525799999977],[137.473398,-3.226185799999939],[137.5024466000001,-3.198845899999981],[137.581049,-3.147583499999939],[137.6015539000001,-3.130496],[137.6176604000001,-3.112101799999948],[137.59529510000004,-3.088559399999951],[137.58147440000005,-3.065596],[137.57657670000003,-3.067333899999937],[137.571837,-3.066543899999942],[137.56883520000008,-3.064174099999946],[137.5628316000001,-3.053904699999975],[137.55809190000002,-3.051534899999979],[137.54339590000006,-3.052659299999959],[137.5393524000001,-3.051712299999963],[137.5311584000001,-3.053884],[137.5247955000001,-3.058483599999931],[137.52098080000007,-3.058368399999949],[137.51235960000008,-3.057397099999946],[137.50682060000008,-3.053072899999961],[137.50300590000006,-3.053701199999978],[137.50079340000002,-3.050732599999947],[137.4939117,-3.054960199999925],[137.49229430000003,-3.046043899999972],[137.48738090000006,-3.050514899999939],[137.48553460000005,-3.050519],[137.48393250000004,-3.0499029],[137.48541260000002,-3.047421699999973],[137.48330680000004,-3.044205199999965],[137.47532650000005,-3.046217899999931],[137.47544860000005,-3.048571599999946],[137.4728698,-3.050188299999945],[137.46806330000004,-3.045243],[137.4654693000001,-3.048222099999975],[137.4655914000001,-3.050576],[137.4622802,-3.052069899999935],[137.46006770000008,-3.051331499999947],[137.4616546000001,-3.047487],[137.45944210000005,-3.046996399999955],[137.45822140000007,-3.050096499999938],[137.45611570000005,-3.049853299999938],[137.44921870000007,-3.039956599999925],[137.4447937000001,-3.041453099999956],[137.43690490000006,-3.040231499999948],[137.43606560000012,-3.037879],[137.4372863000001,-3.036885299999938],[137.43998710000005,-3.037994399999945],[137.44134520000011,-3.036628699999937],[137.43875120000007,-3.032173899999975],[137.4359283000001,-3.031560399999933],[137.4356689000001,-3.030322299999966],[137.4392242,-3.028827699999965],[137.4393768000001,-3.025219399999969],[137.4338990000001,-3.020987],[137.43186950000006,-3.015849599999967],[137.42616270000008,-3.016819],[137.42080680000004,-3.0137219],[137.43280030000005,-3.0079555],[137.4317321000001,-3.006403399999954],[137.42471310000008,-3.005103599999927],[137.4203186000001,-3.007744299999956],[137.4189758000001,-2.997343799999953],[137.42301940000004,-2.994106299999942],[137.41860960000008,-2.993279],[137.4163513000001,-2.9894576],[137.40789790000008,-2.988519399999973],[137.40539550000005,-2.986133299999949],[137.3954010000001,-2.983046299999955],[137.39349360000006,-2.9801805],[137.390274,-2.979111399999965],[137.3890838000001,-2.974091499999929],[137.3870544,-2.973139299999957],[137.3857269,-2.964891],[137.38334650000002,-2.963939399999958],[137.38044880000007,-2.965819899999929],[137.36370850000003,-2.9699097],[137.29351810000003,-3.003418],[137.2611084,-3.015197799999953],[137.2493286,-3.031311],[137.22772220000002,-3.0465088],[137.2094727000001,-3.057312],[137.15167240000005,-3.077697799999953],[137.1624756000001,-3.081604],[137.17407230000003,-3.0894775],[137.1870728,-3.106384299999945],[137.182312,-3.113891599999931],[137.18188480000003,-3.1218262],[137.17547610000008,-3.126220699999976],[137.1652832000001,-3.125610399999971],[137.16070560000003,-3.133178699999974],[137.15087890000007,-3.131225599999937],[137.14251710000008,-3.134704599999964],[137.1342773,-3.135192899999936],[137.1279297000001,-3.132202099999972],[137.12707520000004,-3.122680699999933],[137.1157227000001,-3.130127],[137.10528560000012,-3.140380899999968],[137.10729980000008,-3.146911599999953],[137.10711670000012,-3.153991699999949],[137.1029053000001,-3.157287599999961],[137.09747310000012,-3.155578599999956],[137.09210210000003,-3.156982399999947],[137.09167480000008,-3.163513199999954],[137.088501,-3.1715088],[137.07171630000005,-3.179504399999928],[137.0637207000001,-3.175476099999969],[137.05187990000002,-3.176391599999931],[137.0499268000001,-3.168579099999931],[137.04431150000005,-3.167907699999944],[137.04309080000007,-3.169799799999964],[137.0441284000001,-3.179199199999971],[137.0418701000001,-3.182678199999941],[137.03692630000012,-3.1851196],[137.0324707000001,-3.185180699999933],[137.022522,-3.182189899999969],[137.0128784000001,-3.183105499999954],[137.010498,-3.184387199999946],[137.0092773,-3.188415499999962],[137.005127,-3.189392099999964],[137.003479,-3.186096199999952],[137.0045166000001,-3.183288599999969],[137.00830080000003,-3.180725099999961],[137.0092773,-3.178283699999952],[137.00787350000007,-3.1757812],[137.00549320000005,-3.174804699999925],[137.00207520000004,-3.1768799],[136.99969480000004,-3.183898899999974],[136.99609380000004,-3.184021],[136.99450680000007,-3.182189899999969],[136.99267580000003,-3.174011199999939],[136.98907470000006,-3.174316399999952],[136.98248290000004,-3.181823699999939],[136.9810791000001,-3.186828599999956],[136.98229980000008,-3.1914062],[136.97827150000012,-3.1914062],[136.9755249000001,-3.186096199999952],[136.97290040000007,-3.185424799999964],[136.97070310000004,-3.186401399999966],[136.9669189000001,-3.197814899999969],[136.96252440000012,-3.196594199999936],[136.9575195000001,-3.188110399999971],[136.9531250000001,-3.189209],[136.947876,-3.195312499999943],[136.93890380000005,-3.186889599999972],[136.93469240000002,-3.1875],[136.93170170000008,-3.189880399999936],[136.9304810000001,-3.193725599999937],[136.92590330000007,-3.196106],[136.92449950000002,-3.193908699999952],[136.92767330000004,-3.191589399999941],[136.92791750000004,-3.187377899999944],[136.92510990000005,-3.186096199999952],[136.90948490000005,-3.192077599999948],[136.90789790000008,-3.203186],[136.90490720000003,-3.204589799999951],[136.90167240000005,-3.203308099999958],[136.9014893000001,-3.192810099999974],[136.899292,-3.192199699999946],[136.89735640000004,-3.193942599999957],[136.8986288000001,-3.199719],[136.89671040000007,-3.204827499999965],[136.8974939000001,-3.2128188],[136.90011990000005,-3.215371599999969],[136.8983393000001,-3.219231],[136.89337120000005,-3.223121399999968],[136.88628690000007,-3.223881499999948],[136.88849530000005,-3.225489299999936],[136.88988670000003,-3.2296169],[136.8829793000001,-3.234491499999933],[136.88159080000003,-3.241375799999958],[136.91562510000006,-3.308701099999951],[136.94970320000004,-3.336288099999933],[136.9529487000001,-3.399576099999933],[136.9561943000001,-3.412558199999978],[136.978913,-3.417426499999976],[136.978913,-3.4498819],[136.98378130000003,-3.485582799999975],[137.00325450000003,-3.492073799999957],[137.02435050000008,-3.501810399999954],[137.02597330000003,-3.516415299999949],[137.02435050000008,-3.552116],[137.0795246,-3.5910626],[137.10548890000007,-3.586194299999931],[137.1444352000001,-3.597553699999935],[137.12724580000008,-3.673283],[137.10896700000012,-3.720641799999953],[137.1056443000001,-3.751383499999974],[137.1147830000001,-3.7887721],[137.126415,-3.817852099999925],[137.143863,-3.843608699999947],[137.17211220000002,-3.876842899999929],[137.1889609000001,-3.909012099999927]]]},"properties":{"shapeName":"Puncak","shapeISO":"","shapeID":"22746128B75367959943365","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[138.30460410000012,-3.772894299999962],[138.29074820000005,-3.742170399999964],[138.28231430000005,-3.732531599999959],[138.2768923000001,-3.722290199999975],[138.2732777000001,-3.710844],[138.26665090000006,-3.701205099999925],[138.24496340000007,-3.628913399999931],[138.23632070000008,-3.616686],[138.2018779000001,-3.609108599999956],[138.18327870000007,-3.609108799999944],[138.16812390000007,-3.600153399999954],[138.13724290000005,-3.569340699999941],[138.1085975000001,-3.557487399999957],[138.09674430000007,-3.550573099999951],[138.084891,-3.540695299999925],[138.07106220000003,-3.522915499999954],[138.07303780000007,-3.504147799999942],[138.0680989000001,-3.497233399999971],[138.05427010000005,-3.491306799999961],[138.0449993000001,-3.490138399999978],[138.03663740000002,-3.485850399999947],[138.03909410000006,-3.469732599999929],[138.028535,-3.449456599999962],[138.0301677000001,-3.436297299999978],[138.02996940000003,-3.4217879],[138.02851980000003,-3.413112499999954],[138.02902330000006,-3.396166899999969],[138.02662770000006,-3.381801499999938],[138.0200969000001,-3.380107499999951],[138.01449690000004,-3.355604799999981],[138.02096670000003,-3.335668],[138.0164195000001,-3.309682699999939],[138.02014270000006,-3.291942899999981],[138.03064070000005,-3.278824899999961],[138.035905,-3.266349],[138.0342266,-3.257139799999948],[138.03201400000012,-3.254503599999964],[138.03223750000006,-3.242449299999976],[138.015432,-3.235166899999967],[138.00983,-3.224523399999953],[138.01319130000002,-3.220041899999956],[138.01935330000003,-3.217241],[138.01935330000003,-3.199315099999978],[138.0137515,-3.1903522],[138.0070293000001,-3.184750299999962],[138.0066932000001,-3.165121499999941],[138.0095613000001,-3.160460799999953],[138.00991980000003,-3.155441499999938],[138.00705170000003,-3.153290399999946],[137.99665470000002,-3.154007399999955],[137.9948621000001,-3.1507808],[137.99522060000004,-3.146478599999966],[137.99091840000006,-3.145403],[137.98733320000008,-3.148271199999954],[137.98410650000005,-3.145761499999935],[137.98482360000003,-3.141100799999947],[137.9743271000001,-3.134467],[137.953139,-3.127404299999966],[137.88251190000005,-3.116810299999941],[137.8248331000001,-3.120341599999961],[137.73419510000008,-3.117987399999947],[137.66592220000007,-3.113278899999955],[137.6176604000001,-3.112101799999948],[137.6015539000001,-3.130496],[137.581049,-3.147583499999939],[137.5024466000001,-3.198845899999981],[137.473398,-3.226185799999939],[137.43580550000001,-3.253525799999977],[137.3851820000001,-3.307076799999948],[137.41168360000006,-3.326511299999936],[137.44111480000004,-3.355942499999969],[137.45793250000008,-3.391680299999962],[137.47054590000005,-3.4232136],[137.4747503000001,-3.454747],[137.4957726,-3.486280399999941],[137.5714527,-3.528324899999973],[137.61559940000006,-3.576676],[137.65357390000008,-3.602281099999971],[137.67725340000004,-3.603357399999936],[137.7253502000001,-3.6019599],[137.72717230000012,-3.606696499999941],[137.7455344000001,-3.610413],[137.7545212000001,-3.617003299999965],[137.76650360000008,-3.629584899999941],[137.7689001000001,-3.636175199999968],[137.77755290000005,-3.649410699999976],[137.7789782000001,-3.656062099999929],[137.7851545000001,-3.666514399999926],[137.78705490000004,-3.673640899999953],[137.7998827,-3.684093099999927],[137.8179365000001,-3.694544899999926],[137.84311690000004,-3.702147399999944],[137.86402140000007,-3.695970699999975],[137.8871395000001,-3.685158699999931],[137.8914453000001,-3.7045333],[137.89036850000002,-3.740052499999933],[137.89144440000007,-3.771266299999979],[137.8989788,-3.799251099999935],[137.9129716000001,-3.829388599999959],[137.93934190000004,-3.858374],[137.95195520000004,-3.866782899999976],[137.9782408000001,-3.851355],[138.00912720000008,-3.839588799999945],[138.05030890000012,-3.833705699999939],[138.1253186,-3.832234899999946],[138.18562050000003,-3.838118],[138.22533150000004,-3.827822599999934],[138.26945510000007,-3.813114599999949],[138.30460410000012,-3.772894299999962]]]},"properties":{"shapeName":"Puncak Jaya","shapeISO":"","shapeID":"22746128B33815084149113","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[109.53858950000006,-7.244429599999933],[109.53723150000008,-7.243602199999941],[109.53878020000008,-7.241780199999937],[109.53826140000007,-7.239319799999976],[109.53228,-7.23074],[109.52857210000008,-7.233544299999949],[109.51960760000009,-7.236095899999953],[109.51201630000008,-7.235382499999957],[109.50669860000005,-7.239604399999962],[109.50244140000007,-7.233976299999938],[109.49793250000005,-7.231002299999943],[109.49183660000006,-7.2221655],[109.48347480000007,-7.223016199999961],[109.47986610000004,-7.221971499999938],[109.46941380000004,-7.209875099999977],[109.46284490000005,-7.204749499999934],[109.45735170000006,-7.196774399999981],[109.457489,-7.190616099999943],[109.46012880000006,-7.187421699999959],[109.45889280000006,-7.184499699999947],[109.46212770000005,-7.181823699999939],[109.46149450000007,-7.179345099999978],[109.45493320000008,-7.173195799999974],[109.453331,-7.166942499999948],[109.442688,-7.16118],[109.43804170000004,-7.163784899999939],[109.44010160000005,-7.165680799999961],[109.43547060000009,-7.170219399999951],[109.43610380000007,-7.173759899999936],[109.43820190000008,-7.175054],[109.43423470000005,-7.178299399999958],[109.433815,-7.180723099999966],[109.42887120000006,-7.183999],[109.42852020000004,-7.186648799999944],[109.42449190000008,-7.186124699999937],[109.41706090000008,-7.195805],[109.40886690000008,-7.200519499999928],[109.40545650000007,-7.201020199999959],[109.40238190000008,-7.198468599999956],[109.40014650000006,-7.198965],[109.39695740000008,-7.197247899999979],[109.39102170000007,-7.197927899999968],[109.39009860000004,-7.192902499999946],[109.381279,-7.190393899999947],[109.37644960000006,-7.192253599999958],[109.37327580000004,-7.196274699999947],[109.36967470000008,-7.195961399999931],[109.35523230000007,-7.201027799999963],[109.32752990000006,-7.2134852],[109.32010650000007,-7.212452799999937],[109.316597,-7.214136599999961],[109.29321290000007,-7.215570399999933],[109.28532410000008,-7.220383599999934],[109.27785490000008,-7.219781399999931],[109.27543640000005,-7.222152199999925],[109.26401520000007,-7.222900799999934],[109.25433350000009,-7.226985399999933],[109.24763490000004,-7.227800799999955],[109.23547370000006,-7.232950599999981],[109.23197940000006,-7.237133399999948],[109.224617,-7.239104699999928],[109.22563940000003,-7.241962399999977],[109.223671,-7.246292099999948],[109.23555,-7.254624299999932],[109.24451450000004,-7.271753199999978],[109.24955750000004,-7.273489899999959],[109.25493620000009,-7.280551399999979],[109.25683590000006,-7.285270199999957],[109.257164,-7.291890599999931],[109.26431280000008,-7.304164799999967],[109.26944740000005,-7.318583899999965],[109.275856,-7.329071499999941],[109.27871710000005,-7.331379399999946],[109.28181460000008,-7.341558899999939],[109.28766630000007,-7.3483753],[109.29014590000008,-7.356606],[109.294632,-7.361841199999958],[109.29801940000004,-7.371952],[109.30117040000005,-7.375554499999964],[109.30142980000005,-7.382017099999928],[109.30591180000005,-7.382863],[109.30473330000007,-7.389288399999941],[109.30666440000005,-7.390203699999972],[109.31092840000008,-7.400168399999927],[109.31273650000009,-7.409672699999931],[109.31935890000005,-7.409337499999936],[109.32140350000009,-7.414970799999935],[109.32064060000005,-7.419064499999934],[109.32339480000007,-7.425388299999952],[109.32592780000004,-7.4269881],[109.32920840000008,-7.426837399999954],[109.33353430000005,-7.4301114],[109.33332830000006,-7.433713399999931],[109.33509830000008,-7.435152499999958],[109.33519750000005,-7.437548599999957],[109.33187870000006,-7.437539499999957],[109.33299550000004,-7.441382499999975],[109.331212,-7.4414121],[109.33132170000005,-7.443054599999925],[109.33444260000005,-7.4463088],[109.33756250000005,-7.445819099999937],[109.33868780000006,-7.446630699999957],[109.33791580000008,-7.448115299999927],[109.34097520000006,-7.449762899999939],[109.34095760000008,-7.458334399999956],[109.33493040000008,-7.457880399999965],[109.33442690000004,-7.458888],[109.33721160000005,-7.460211199999947],[109.33482360000005,-7.460529299999962],[109.33660130000004,-7.462969699999974],[109.33128360000006,-7.468974499999945],[109.3293,-7.465943799999934],[109.33158880000008,-7.461051899999973],[109.32965850000005,-7.460575499999948],[109.32659150000006,-7.462517199999979],[109.32547,-7.465991],[109.32730870000006,-7.4713601],[109.32627110000004,-7.472734399999979],[109.32127380000009,-7.473317099999974],[109.32093810000003,-7.482286399999964],[109.33491520000007,-7.485697199999947],[109.33737950000005,-7.493499699999973],[109.33810430000005,-7.487287899999956],[109.34233860000006,-7.484121699999946],[109.34129340000004,-7.480910199999926],[109.34517670000008,-7.478168399999959],[109.34635170000007,-7.478774],[109.34563450000007,-7.481678399999964],[109.34688570000009,-7.484188499999959],[109.35116580000005,-7.481097599999941],[109.353035,-7.4853143],[109.35416410000005,-7.485418699999968],[109.35543830000006,-7.482566799999972],[109.35833740000004,-7.485534599999937],[109.36160280000007,-7.485296199999937],[109.36403660000008,-7.48736],[109.37191010000004,-7.484683],[109.373642,-7.477723099999935],[109.38069920000004,-7.482845299999951],[109.38612370000004,-7.477631],[109.39406,-7.474377499999946],[109.40242770000003,-7.475884899999926],[109.40374760000009,-7.474140099999943],[109.40066530000007,-7.468442399999958],[109.40161140000004,-7.467258399999935],[109.40867620000006,-7.471470799999963],[109.41284940000008,-7.470766499999968],[109.41148380000004,-7.477375499999937],[109.41873170000008,-7.478908],[109.41998290000004,-7.475246799999979],[109.41829680000006,-7.471897099999978],[109.424408,-7.467718099999956],[109.42274480000009,-7.459152199999949],[109.42736060000004,-7.458761199999969],[109.42538450000006,-7.4561347],[109.42708590000007,-7.454802],[109.43019110000006,-7.459527899999955],[109.43482970000008,-7.456958199999974],[109.43772890000008,-7.453050599999926],[109.43606570000009,-7.450687399999936],[109.43899540000007,-7.448617399999932],[109.44045260000007,-7.449246799999969],[109.44110110000008,-7.454241199999956],[109.44706730000007,-7.455674599999952],[109.44868470000006,-7.453447299999937],[109.44693760000007,-7.450061699999935],[109.45003510000004,-7.446662899999978],[109.45281980000004,-7.447064799999964],[109.45466610000005,-7.452043],[109.45869450000004,-7.452754899999945],[109.460968,-7.451405499999964],[109.462944,-7.446795399999928],[109.46523290000005,-7.446050599999978],[109.46973420000006,-7.448862],[109.47219850000005,-7.448719],[109.47336580000007,-7.44772],[109.47261810000003,-7.442065199999945],[109.47472380000005,-7.4417986],[109.47623450000009,-7.445268099999964],[109.47874450000006,-7.445859399999961],[109.48209380000009,-7.443912399999931],[109.48034670000004,-7.442437599999948],[109.48191840000004,-7.441188299999965],[109.48574070000006,-7.4455165],[109.48756410000004,-7.442247799999961],[109.48934180000003,-7.442529599999943],[109.49358370000004,-7.449374599999942],[109.49694820000008,-7.446758699999975],[109.49922950000007,-7.4495792],[109.5028,-7.448068599999942],[109.50535590000004,-7.450114199999973],[109.50622560000005,-7.447707599999944],[109.50775150000004,-7.448028099999931],[109.5084,-7.439431099999979],[109.50577550000008,-7.4238982],[109.50849920000007,-7.419118399999945],[109.50328830000007,-7.411620599999935],[109.50408170000009,-7.410503299999959],[109.50708010000005,-7.409966399999973],[109.50826270000005,-7.412224299999934],[109.50989530000004,-7.411314399999981],[109.51091770000005,-7.412714899999969],[109.51412970000007,-7.410985399999959],[109.51723480000004,-7.412665299999958],[109.531662,-7.408921699999951],[109.53285980000004,-7.406786899999929],[109.53636930000005,-7.408335199999954],[109.53694150000007,-7.405936699999927],[109.54217530000005,-7.407049099999938],[109.54300690000008,-7.403229199999942],[109.54599,-7.405350599999963],[109.54674530000005,-7.402550199999951],[109.54866030000005,-7.402224499999932],[109.54853060000005,-7.397110399999974],[109.541275,-7.390567699999963],[109.53932190000006,-7.383367499999963],[109.53603370000008,-7.378044099999954],[109.533699,-7.356565],[109.51926420000007,-7.345732599999963],[109.51830290000004,-7.343054699999925],[109.52717590000009,-7.323572599999977],[109.53396610000004,-7.3284292],[109.54122930000005,-7.325435599999935],[109.54650120000008,-7.327417299999979],[109.55018620000004,-7.3310632],[109.55609130000005,-7.330709899999931],[109.56256110000004,-7.332292499999937],[109.56296540000005,-7.328331899999966],[109.56532290000007,-7.328156399999955],[109.56594090000004,-7.324687899999958],[109.56449130000004,-7.32268],[109.565651,-7.318183799999929],[109.56396490000009,-7.319513299999926],[109.56237030000005,-7.318044099999952],[109.56699370000007,-7.316293199999961],[109.56889350000006,-7.313482199999953],[109.56656650000008,-7.305028399999969],[109.56734470000004,-7.300706799999944],[109.57278450000007,-7.299101299999961],[109.57453160000006,-7.300123199999973],[109.57519530000008,-7.296618399999943],[109.579422,-7.294662399999936],[109.581688,-7.2953868],[109.58451840000004,-7.2931985],[109.576149,-7.2794704],[109.57415770000006,-7.271249299999965],[109.56946560000006,-7.264739],[109.56150060000004,-7.261991899999941],[109.54986570000005,-7.255461199999957],[109.53858950000006,-7.244429599999933]]]},"properties":{"shapeName":"Purbalingga","shapeISO":"","shapeID":"22746128B3190289959354","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[107.59550920000004,-6.729216299999962],[107.59226240000004,-6.726595199999963],[107.59493210000005,-6.726595399999951],[107.59429030000007,-6.719818299999929],[107.59121980000003,-6.719966899999974],[107.58825310000009,-6.715287699999976],[107.58878340000007,-6.711819399999968],[107.59097470000006,-6.708967399999949],[107.59395150000006,-6.709035099999937],[107.59488990000006,-6.706632099999979],[107.59148710000005,-6.699587799999961],[107.59192960000007,-6.691372899999976],[107.58882440000008,-6.688334099999963],[107.588771,-6.685866899999951],[107.59112850000008,-6.682734599999947],[107.59055630000006,-6.680791899999974],[107.59595780000006,-6.677198899999951],[107.60015390000007,-6.665296099999978],[107.60211460000005,-6.663455499999941],[107.60163390000008,-6.654042299999958],[107.59282690000003,-6.650499599999932],[107.59300240000005,-6.648358599999938],[107.58898940000006,-6.6470034],[107.58700560000005,-6.643051],[107.587906,-6.642225],[107.58381660000003,-6.640542699999969],[107.58254250000005,-6.636851499999977],[107.57994090000005,-6.635764799999947],[107.57952130000007,-6.633897499999932],[107.58113110000005,-6.631819],[107.57999810000007,-6.630079],[107.58387,-6.6249158],[107.58352670000005,-6.622157799999968],[107.58473210000005,-6.621238],[107.58492290000004,-6.6175849],[107.58309180000003,-6.614547],[107.58415230000008,-6.609298499999966],[107.58670050000006,-6.605532399999959],[107.58908850000006,-6.604849599999966],[107.58866890000007,-6.602605099999948],[107.59040080000005,-6.599836599999946],[107.58690650000005,-6.599649699999929],[107.58641830000005,-6.596963599999981],[107.582779,-6.595863099999974],[107.58251960000007,-6.594082599999979],[107.58512890000009,-6.593335899999943],[107.58581550000008,-6.591589699999929],[107.58119980000004,-6.590502],[107.58271040000005,-6.588404899999944],[107.57859050000008,-6.581889899999965],[107.57393660000008,-6.584050399999967],[107.57134260000004,-6.579088899999931],[107.568329,-6.578434199999947],[107.56764230000005,-6.577223499999945],[107.56954970000004,-6.5749352],[107.56349960000006,-6.571142399999928],[107.56454480000008,-6.567636199999981],[107.56201180000005,-6.569825399999957],[107.56082930000008,-6.567316299999959],[107.55805980000008,-6.56655],[107.55649580000005,-6.568024399999956],[107.55393990000005,-6.566571],[107.55445110000005,-6.561782599999958],[107.55613720000008,-6.562830199999951],[107.55841070000008,-6.560879],[107.55846420000006,-6.559302099999968],[107.55648050000008,-6.558539599999961],[107.55744950000008,-6.556058599999972],[107.56100470000007,-6.555654299999958],[107.55854810000005,-6.552970099999925],[107.55844890000009,-6.550266499999964],[107.56240850000006,-6.546832299999949],[107.56028760000004,-6.542585599999938],[107.55612960000008,-6.541258599999935],[107.55582440000006,-6.539754099999925],[107.55803690000005,-6.538662699999975],[107.55902110000005,-6.536221199999943],[107.55800640000007,-6.531748099999959],[107.563675,-6.5278719],[107.56213390000005,-6.524402399999929],[107.55857860000003,-6.523292799999979],[107.56015030000009,-6.520218099999965],[107.55653390000003,-6.519384599999967],[107.55481710000004,-6.517337399999974],[107.56066140000007,-6.514688199999966],[107.55879220000008,-6.510243199999934],[107.56151590000007,-6.509464499999979],[107.56032570000008,-6.500000199999931],[107.562523,-6.496342899999945],[107.55963910000008,-6.490412],[107.56368260000005,-6.490272799999957],[107.56548320000007,-6.487187099999971],[107.56239330000005,-6.485344599999962],[107.56198130000007,-6.488527499999975],[107.55899820000008,-6.487204799999972],[107.55828870000005,-6.482467399999962],[107.56044010000005,-6.478071899999975],[107.55934150000007,-6.475922299999979],[107.55684670000005,-6.474151399999926],[107.55206310000005,-6.473996899999975],[107.55100260000006,-6.470568899999932],[107.54534920000003,-6.470151599999951],[107.54564680000004,-6.466523399999971],[107.54367840000003,-6.462401099999965],[107.54495250000008,-6.4596751],[107.54266180000008,-6.459658199999978],[107.54405980000007,-6.455666299999962],[107.54110730000008,-6.453763699999968],[107.54383860000007,-6.450019599999962],[107.54209150000008,-6.445762399999978],[107.53928380000008,-6.4441564],[107.53587350000004,-6.445540699999981],[107.53311170000006,-6.443562699999973],[107.533806,-6.441909499999952],[107.530678,-6.441731799999957],[107.528412,-6.437462499999981],[107.52672590000009,-6.437024799999961],[107.526497,-6.425803899999948],[107.52974710000007,-6.424227499999972],[107.52940380000007,-6.418358099999978],[107.519188,-6.418081],[107.51372540000006,-6.421338799999944],[107.51238260000008,-6.420877699999949],[107.50799570000004,-6.412924],[107.50280770000006,-6.407946799999934],[107.49196640000008,-6.4148585],[107.490471,-6.419434299999978],[107.48065960000008,-6.426636899999949],[107.48046120000004,-6.429812199999958],[107.47834030000007,-6.431863],[107.47386180000007,-6.4323361],[107.46952830000004,-6.428820299999927],[107.46117410000005,-6.426714599999968],[107.46106730000008,-6.428669199999945],[107.45828260000008,-6.431517799999938],[107.45888530000008,-6.436860299999978],[107.45529950000008,-6.438585499999931],[107.45187390000007,-6.444073399999979],[107.44492350000007,-6.444451],[107.43747720000005,-6.447897199999943],[107.43479170000006,-6.452898199999936],[107.43507260000007,-6.458074],[107.43325820000007,-6.459513899999934],[107.38822190000008,-6.468714899999952],[107.37322250000005,-6.468302899999969],[107.37235270000008,-6.473835599999973],[107.38069930000006,-6.480546199999935],[107.38224040000006,-6.488196599999981],[107.38922890000003,-6.491233499999964],[107.39029710000005,-6.499770299999966],[107.37745680000006,-6.497158299999967],[107.37500010000008,-6.495175099999926],[107.36643230000004,-6.496642799999961],[107.350403,-6.485556299999928],[107.34026350000005,-6.488093599999956],[107.33583080000005,-6.4854214],[107.32784280000004,-6.4844124],[107.30581680000006,-6.491047599999945],[107.30122390000008,-6.495498299999952],[107.28913890000007,-6.501724899999942],[107.28898630000003,-6.504430499999955],[107.28547680000008,-6.504831],[107.28614820000007,-6.508600399999978],[107.28446970000005,-6.510538299999951],[107.28550730000006,-6.511456199999941],[107.28433620000004,-6.515749099999937],[107.28598030000006,-6.522198799999956],[107.283928,-6.529939299999967],[107.27781690000006,-6.535283299999946],[107.27256030000007,-6.536013299999979],[107.26720440000008,-6.546387299999935],[107.26499190000004,-6.555263699999955],[107.25869,-6.558896199999936],[107.25595110000006,-6.5621606],[107.25044270000006,-6.573389199999951],[107.23602310000007,-6.577244899999926],[107.22376270000007,-6.585694899999964],[107.22051250000004,-6.590748899999937],[107.22711180000005,-6.602095499999962],[107.228798,-6.604543299999932],[107.23488340000006,-6.607081],[107.23832720000007,-6.61578],[107.24092880000006,-6.618358299999954],[107.24874130000006,-6.623552899999936],[107.25366230000009,-6.628878699999973],[107.25713360000009,-6.630349299999978],[107.25875870000004,-6.629476199999942],[107.25984210000007,-6.632396899999947],[107.26377120000006,-6.635773799999981],[107.26469430000009,-6.653039099999944],[107.26218430000006,-6.654623699999945],[107.26250470000008,-6.656384099999968],[107.261078,-6.6559607],[107.26116960000007,-6.657489899999973],[107.25876630000005,-6.658417799999938],[107.26003280000003,-6.662127599999963],[107.25963510000008,-6.668205099999966],[107.25839250000007,-6.6695415],[107.25935860000004,-6.680017],[107.25444870000007,-6.687684899999965],[107.24677770000005,-6.690330399999937],[107.24774180000009,-6.692168899999956],[107.25041980000009,-6.696725099999981],[107.26412980000003,-6.699111599999981],[107.26662460000006,-6.7021762],[107.27473460000004,-6.706654199999946],[107.28022020000009,-6.707791499999928],[107.28434,-6.707010299999979],[107.28403770000006,-6.7054418],[107.28776560000006,-6.705318099999943],[107.28551610000005,-6.702738499999953],[107.284218,-6.703776],[107.28235030000008,-6.702223699999934],[107.28052530000008,-6.702765599999964],[107.28037470000004,-6.700025],[107.28976550000004,-6.703205199999957],[107.29236620000006,-6.708986],[107.29305190000008,-6.703382],[107.29548660000006,-6.708204899999942],[107.30063640000009,-6.707290299999954],[107.30183430000005,-6.7114932],[107.29722040000007,-6.713867599999958],[107.30146030000009,-6.717552299999966],[107.30146160000004,-6.7206835],[107.30553450000008,-6.7164194],[107.30637580000007,-6.720721],[107.30871590000004,-6.719808299999954],[107.31188220000007,-6.72075],[107.31185950000008,-6.717252099999939],[107.31551250000007,-6.714209599999947],[107.31576550000005,-6.716305899999952],[107.31398120000006,-6.7176716],[107.31720750000005,-6.720506399999977],[107.31954840000009,-6.7202153],[107.32146840000007,-6.718037899999956],[107.32303610000008,-6.7110649],[107.32421320000009,-6.709926899999971],[107.32442490000005,-6.712027199999966],[107.32635510000006,-6.709176699999944],[107.32489790000005,-6.7037083],[107.32555020000007,-6.6989171],[107.32758340000004,-6.6979095],[107.32542430000007,-6.6927449],[107.32846080000007,-6.693354799999952],[107.32926380000004,-6.689774199999931],[107.33110060000007,-6.689995499999952],[107.33317550000004,-6.6932988],[107.33226790000003,-6.689760399999955],[107.33413710000008,-6.688575899999933],[107.33511980000009,-6.689570299999957],[107.33589190000004,-6.687413399999969],[107.33750160000005,-6.6878278],[107.33671580000004,-6.688945499999932],[107.33797570000007,-6.690247199999931],[107.33950050000004,-6.688595],[107.33963790000007,-6.690528099999938],[107.34428460000004,-6.689449699999955],[107.36186990000004,-6.697837499999935],[107.36687480000006,-6.6987545],[107.36784380000006,-6.700699],[107.371461,-6.700691799999959],[107.37100230000004,-6.6969945],[107.37299360000009,-6.694449099999929],[107.37142610000006,-6.690843899999948],[107.37278590000005,-6.689878699999952],[107.37373780000007,-6.6910955],[107.38013490000009,-6.690338399999973],[107.38676460000005,-6.693814499999974],[107.39597330000004,-6.695651199999929],[107.401674,-6.692994399999975],[107.40512170000005,-6.693309599999964],[107.40618260000008,-6.689944399999945],[107.40945450000004,-6.688514899999973],[107.41671180000009,-6.6906669],[107.42250840000008,-6.695700399999964],[107.42514050000005,-6.700015299999961],[107.43549360000009,-6.702119099999948],[107.43562330000009,-6.700519299999939],[107.43801890000009,-6.700155],[107.439644,-6.702790399999969],[107.44048320000007,-6.701094399999931],[107.44185050000004,-6.701276299999961],[107.44144450000005,-6.699520799999959],[107.44826520000004,-6.701556899999957],[107.452118,-6.700313299999948],[107.45638290000005,-6.7053325],[107.46013650000003,-6.707384799999943],[107.46186080000007,-6.710659199999952],[107.46414960000004,-6.710831799999937],[107.46664440000006,-6.716342599999962],[107.46978770000004,-6.716981099999941],[107.47051250000004,-6.719207499999925],[107.47383570000005,-6.720468599999947],[107.47986790000004,-6.728854499999954],[107.48632340000006,-6.732125199999928],[107.48543360000008,-6.733358],[107.48738470000006,-6.735341199999937],[107.49460990000006,-6.734890899999925],[107.49668550000007,-6.736303599999928],[107.50142680000005,-6.736477099999945],[107.50233890000004,-6.738246199999935],[107.50710390000006,-6.739195],[107.50939260000007,-6.742389499999945],[107.51445780000006,-6.742213399999969],[107.51763930000004,-6.743918099999973],[107.52240760000007,-6.747697599999981],[107.53023540000004,-6.761956399999974],[107.53388990000008,-6.763885199999947],[107.54029090000006,-6.763934799999959],[107.54926470000004,-6.772978299999977],[107.55356610000007,-6.774776699999961],[107.55908980000004,-6.772813099999951],[107.56302180000006,-6.773886199999936],[107.57048810000003,-6.770873299999948],[107.57492080000009,-6.776758899999948],[107.57830820000004,-6.775934],[107.57900250000006,-6.773741499999971],[107.576706,-6.771522699999935],[107.57783520000004,-6.769654499999945],[107.57624830000009,-6.768454299999974],[107.57706460000009,-6.766186499999947],[107.57543190000007,-6.765602399999977],[107.57663740000004,-6.762548699999968],[107.57162490000007,-6.761847199999977],[107.57298290000006,-6.758689599999968],[107.57153330000006,-6.755402299999957],[107.57336430000004,-6.753493499999934],[107.57297530000005,-6.751357799999937],[107.57136550000007,-6.750955799999929],[107.57307450000008,-6.749545799999964],[107.571869,-6.748689399999932],[107.57260140000005,-6.7458379],[107.56918350000007,-6.744879],[107.56843580000009,-6.743262499999958],[107.57128910000006,-6.7361695],[107.57473760000005,-6.734340399999951],[107.57900250000006,-6.729003699999964],[107.58481610000007,-6.726780599999927],[107.59550920000004,-6.729216299999962]]]},"properties":{"shapeName":"Purwakarta","shapeISO":"","shapeID":"22746128B40558915166296","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[109.81963870000004,-7.830032699999947],[109.86318070000004,-7.839834499999938],[109.910898,-7.8538975],[109.96934080000005,-7.8740054],[110.002989,-7.888020399999959],[110.00470630000007,-7.884925799999962],[110.01965820000004,-7.891674099999932],[110.02385460000005,-7.8905513],[110.02766060000005,-7.891426799999977],[110.03098640000007,-7.896711099999948],[110.03271630000006,-7.888029099999926],[110.03471740000003,-7.885273699999971],[110.04239140000004,-7.884897699999954],[110.04193520000007,-7.880726299999935],[110.04504620000006,-7.86959],[110.042776,-7.867602],[110.04237760000007,-7.863408299999946],[110.04327020000005,-7.861524799999927],[110.04471810000007,-7.861598899999933],[110.04351650000007,-7.859826599999963],[110.04721270000005,-7.854481799999974],[110.05059510000007,-7.851770099999953],[110.05123130000004,-7.844702699999971],[110.05939920000009,-7.841306499999973],[110.05886950000007,-7.8239066],[110.06224490000005,-7.818934699999943],[110.06225710000007,-7.814352699999972],[110.07231020000006,-7.812186899999972],[110.08079090000007,-7.806651199999976],[110.08198990000005,-7.801705299999981],[110.08687260000005,-7.797869699999978],[110.09017720000008,-7.789302599999928],[110.09543260000004,-7.783178299999975],[110.10160180000008,-7.778859399999931],[110.11270490000004,-7.776911],[110.11211220000007,-7.774324499999977],[110.11448670000004,-7.770509799999957],[110.113968,-7.764864499999931],[110.12170410000004,-7.756142199999942],[110.12596130000009,-7.748864699999956],[110.129839,-7.747179499999959],[110.13038830000005,-7.740696899999932],[110.13230330000005,-7.740513299999975],[110.13178450000004,-7.725871599999948],[110.13459970000008,-7.720458],[110.13252450000005,-7.716011],[110.13478290000006,-7.705376799999954],[110.13093410000005,-7.701584799999978],[110.13795060000007,-7.693428799999936],[110.13538250000005,-7.6873722],[110.13159830000006,-7.683881699999972],[110.12671550000005,-7.682267099999933],[110.12688330000009,-7.677486399999964],[110.12150460000004,-7.674809399999958],[110.11794160000005,-7.668333],[110.12202340000005,-7.667747399999939],[110.12303810000009,-7.663537399999939],[110.13033180000008,-7.657718599999953],[110.13098790000004,-7.654487099999926],[110.136504,-7.654306399999939],[110.141861,-7.644966699999941],[110.13955110000006,-7.644374199999959],[110.13200630000006,-7.634679399999925],[110.12581630000005,-7.631032399999981],[110.12137070000006,-7.623613699999964],[110.12239860000005,-7.620259399999952],[110.12023970000007,-7.608391499999925],[110.11527920000009,-7.602421199999981],[110.11160280000007,-7.600273099999981],[110.10721590000009,-7.5938563],[110.10315520000006,-7.577948699999979],[110.10161470000008,-7.579547199999979],[110.09788560000004,-7.574585899999931],[110.09898860000004,-7.571242799999936],[110.10113950000004,-7.570377199999939],[110.10035670000008,-7.569226499999957],[110.08976520000004,-7.568966299999943],[110.08711660000006,-7.572940699999947],[110.08059730000008,-7.5770423],[110.07749870000004,-7.576782499999979],[110.07555390000005,-7.5743403],[110.06782720000007,-7.570983],[110.06540160000009,-7.571152699999971],[110.06427770000005,-7.573353299999951],[110.06233070000008,-7.572137399999974],[110.05982210000008,-7.575688299999968],[110.05587770000005,-7.570329199999946],[110.05904390000006,-7.559321399999931],[110.057167,-7.556398799999954],[110.05536650000005,-7.556471299999941],[110.05353550000007,-7.552656099999979],[110.05104830000005,-7.551666199999943],[110.052519,-7.548292799999956],[110.04634860000004,-7.538913699999966],[110.04402160000006,-7.537713499999938],[110.04424110000008,-7.534788799999944],[110.036274,-7.5302032],[110.02789720000004,-7.529435299999932],[110.02800750000006,-7.531669499999964],[110.03205420000006,-7.535757499999931],[110.03158560000008,-7.5377101],[110.03410880000007,-7.542473099999938],[110.03168690000007,-7.550001799999961],[110.032419,-7.552327899999966],[110.03151270000006,-7.553447399999925],[110.02829470000006,-7.553223199999934],[110.02738170000003,-7.555572699999971],[110.02376920000006,-7.556758499999944],[110.01418080000008,-7.566441599999962],[110.01646880000004,-7.567694899999935],[110.01587530000006,-7.5727404],[110.016857,-7.573375699999929],[110.01440190000005,-7.578552599999966],[110.01536820000007,-7.580517499999928],[110.01429070000006,-7.582613299999934],[110.01671320000008,-7.582971499999928],[110.01709250000005,-7.586074599999961],[110.00920930000007,-7.586650799999973],[109.99947380000003,-7.590543199999956],[109.99522790000009,-7.587318799999935],[109.99634390000006,-7.5821742],[109.99538350000006,-7.575397899999928],[109.99242860000004,-7.575029299999926],[109.98542270000007,-7.577489399999934],[109.97854820000003,-7.576995799999963],[109.97710170000005,-7.572153599999979],[109.974523,-7.569787],[109.97199120000005,-7.569609199999945],[109.97041040000005,-7.564594899999975],[109.96804670000006,-7.562473],[109.96989470000005,-7.5585792],[109.96754050000004,-7.554751599999975],[109.97022810000004,-7.553849599999978],[109.97300260000009,-7.547235899999976],[109.97371380000004,-7.540716599999939],[109.97520720000006,-7.539652899999965],[109.97268530000008,-7.537422099999958],[109.97525070000006,-7.533240499999977],[109.97296250000005,-7.531173099999933],[109.96404310000008,-7.532391099999927],[109.95496,-7.527757],[109.95264750000007,-7.525065299999937],[109.95111650000007,-7.530442599999958],[109.94873670000004,-7.531766799999957],[109.94339920000004,-7.530549099999973],[109.93951170000008,-7.532789199999968],[109.93389920000004,-7.523486199999979],[109.92718010000004,-7.522928199999967],[109.92598570000007,-7.524066699999935],[109.91968240000006,-7.519269399999928],[109.91343270000004,-7.521279799999945],[109.91124810000008,-7.520587099999943],[109.90978470000005,-7.522889699999951],[109.89844790000006,-7.519723],[109.89577820000005,-7.522402399999976],[109.89371230000006,-7.521926899999926],[109.89052850000007,-7.524143699999968],[109.88879960000008,-7.528019299999926],[109.88661590000004,-7.527751399999943],[109.88510050000008,-7.529692099999977],[109.88374380000005,-7.536055699999963],[109.880464,-7.533171299999935],[109.87890340000007,-7.533411499999943],[109.87500040000003,-7.526618399999961],[109.86818930000004,-7.527675399999964],[109.86393620000007,-7.5289684],[109.86336190000009,-7.5316892],[109.86901260000008,-7.538274799999954],[109.86680210000009,-7.541747499999929],[109.86026560000005,-7.544584599999951],[109.86039850000009,-7.549299299999973],[109.85581530000007,-7.552350299999944],[109.85576280000004,-7.558439599999929],[109.84975570000006,-7.561571099999981],[109.84221410000004,-7.561071799999979],[109.839615,-7.571239399999968],[109.83773280000008,-7.572129699999948],[109.83669260000005,-7.5751476],[109.82589480000007,-7.579658599999959],[109.82692610000004,-7.583740299999931],[109.82416140000004,-7.585205899999949],[109.82307790000004,-7.591606899999931],[109.824047,-7.597877099999948],[109.821504,-7.597544899999946],[109.82114810000007,-7.595388],[109.81744440000006,-7.595126299999947],[109.81573770000006,-7.592628699999977],[109.81385250000005,-7.593197799999928],[109.81571880000007,-7.594960399999934],[109.81498820000007,-7.599243199999933],[109.811966,-7.6042299],[109.81203150000005,-7.6121332],[109.81053440000005,-7.622873599999934],[109.81362280000008,-7.624528099999964],[109.81474420000006,-7.631292299999927],[109.809545,-7.633904399999949],[109.80812840000004,-7.632217399999945],[109.80396440000004,-7.642724699999974],[109.79967940000006,-7.6439157],[109.79842090000005,-7.646797099999958],[109.79936450000008,-7.647704099999942],[109.79828670000006,-7.648885899999925],[109.80018050000007,-7.648683099999971],[109.799786,-7.651060499999971],[109.80202910000008,-7.652043499999934],[109.80218110000004,-7.654639499999973],[109.80348190000007,-7.654860199999973],[109.80207060000004,-7.662662],[109.80793,-7.670501199999933],[109.80493160000009,-7.688375899999926],[109.80673220000006,-7.688541799999939],[109.80641180000003,-7.690286599999979],[109.80391690000005,-7.689908899999978],[109.80324560000008,-7.693082299999958],[109.79817960000008,-7.696389599999975],[109.79809570000003,-7.698959799999955],[109.80021670000008,-7.706591099999969],[109.80200960000008,-7.706900599999926],[109.80261230000008,-7.708991],[109.80545810000007,-7.707826599999976],[109.80794530000009,-7.7086439],[109.80836370000009,-7.710613899999942],[109.81131880000004,-7.710415099999977],[109.81233980000007,-7.7123632],[109.83043670000006,-7.715808299999935],[109.82807160000004,-7.718616899999972],[109.831253,-7.72653],[109.83215950000005,-7.738324599999942],[109.83033290000009,-7.738585099999966],[109.83024880000005,-7.7398068],[109.83093060000004,-7.741629299999943],[109.83247140000009,-7.741653],[109.83157460000007,-7.753216799999961],[109.83356530000009,-7.756887199999937],[109.83523070000007,-7.773085299999934],[109.83901870000005,-7.773258899999973],[109.83402530000006,-7.793417899999952],[109.82939450000003,-7.803721799999948],[109.83296720000004,-7.804364299999975],[109.82884980000006,-7.823113899999953],[109.82672880000007,-7.8259243],[109.81963870000004,-7.830032699999947]]]},"properties":{"shapeName":"Purworejo","shapeISO":"","shapeID":"22746128B60098935933644","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[130.50006130000008,-2.228481],[130.4916393000001,-2.229185],[130.49197430000004,-2.231379],[130.49403430000007,-2.233396],[130.50006130000008,-2.234543],[130.50006130000008,-2.228481]]],[[[130.25416630000007,-2.226849],[130.25222830000007,-2.225697],[130.24546830000008,-2.228304],[130.24632330000009,-2.232691],[130.25164830000006,-2.232106],[130.25312830000007,-2.233894],[130.25531030000002,-2.233891],[130.25949130000004,-2.232327],[130.2665713,-2.236647],[130.27299530000005,-2.23202],[130.26727330000006,-2.227871],[130.25416630000007,-2.226849]]],[[[130.40339730000005,-2.21031],[130.40150530000005,-2.211582],[130.39755330000003,-2.219382],[130.40092530000004,-2.218511],[130.40516730000002,-2.220584],[130.4163823,-2.218433],[130.4250803000001,-2.222116],[130.43171730000006,-2.220952],[130.43600530000003,-2.223775],[130.4390413000001,-2.223078],[130.4425658,-2.218603],[130.4449313,-2.22284],[130.44395530000008,-2.224804],[130.44590830000004,-2.225436],[130.44757130000005,-2.22376],[130.45036330000005,-2.227162],[130.4523163,-2.223927],[130.45507830000008,-2.2227],[130.45500230000005,-2.227329],[130.46748430000002,-2.227774],[130.47160330000008,-2.230309],[130.47343530000012,-2.226843],[130.47566230000007,-2.226724],[130.4751593000001,-2.224531],[130.4677743000001,-2.221654],[130.46467630000006,-2.22339],[130.46382230000006,-2.221371],[130.45426930000008,-2.220691],[130.45364430000006,-2.218613],[130.4345403000001,-2.213905],[130.4299013000001,-2.214315],[130.4286353000001,-2.211892],[130.42669730000011,-2.211375],[130.4208073000001,-2.210979],[130.4172523000001,-2.213235],[130.4123843000001,-2.212203],[130.4108893,-2.213648],[130.40672330000007,-2.211864],[130.40408330000002,-2.212272],[130.40339730000005,-2.21031]]],[[[130.41461230000004,-2.200723],[130.41102630000012,-2.202101],[130.4106753000001,-2.204469],[130.41392530000007,-2.204926],[130.41461230000004,-2.200723]]],[[[130.19427530000007,-2.198156],[130.19073530000003,-2.197087],[130.18982030000006,-2.199109],[130.1853493000001,-2.198191],[130.18243430000007,-2.199869],[130.18208330000004,-2.202352],[130.18959130000007,-2.201996],[130.19427530000007,-2.198156]]],[[[130.3023383000001,-2.199361],[130.30297930000006,-2.197282],[130.29753130000006,-2.195743],[130.2976993000001,-2.198848],[130.3023383000001,-2.199361]]],[[[130.23494030000006,-2.18346],[130.22761630000002,-2.18347],[130.2264103000001,-2.185261],[130.2242893,-2.185495],[130.2238933000001,-2.183475],[130.21594330000005,-2.184583],[130.21575930000006,-2.186603],[130.21936030000006,-2.190466],[130.22549530000003,-2.189188],[130.22639530000004,-2.193113],[130.2368173000001,-2.192464],[130.2399603,-2.191048],[130.2375803000001,-2.18985],[130.24020430000007,-2.188129],[130.24346930000002,-2.188529],[130.24557530000004,-2.192856],[130.2435153,-2.195053],[130.23904530000004,-2.195751],[130.23640530000011,-2.199104],[130.23205630000007,-2.198705],[130.23188830000004,-2.200842],[130.22302330000002,-2.197447],[130.2205513,-2.19722],[130.2187203000001,-2.199589],[130.23193430000003,-2.205518],[130.23530630000005,-2.209324],[130.24142530000006,-2.210874],[130.2472543,-2.21537],[130.2536173000001,-2.211955],[130.25550930000009,-2.213684],[130.26048330000003,-2.214544],[130.2608653000001,-2.21158],[130.2702183,-2.214935],[130.2687843000001,-2.211184],[130.2649543000001,-2.209399],[130.26341330000002,-2.201203],[130.25941530000011,-2.198495],[130.26142930000003,-2.196703],[130.2661753000001,-2.199179],[130.27606230000004,-2.200436],[130.27961830000004,-2.198006],[130.2851723000001,-2.20152],[130.2898103000001,-2.201514],[130.29032930000005,-2.198915],[130.2946783000001,-2.197813],[130.2952583000001,-2.195098],[130.29365530000007,-2.192618],[130.28466830000002,-2.191764],[130.28323430000012,-2.190265],[130.2792363000001,-2.191483],[130.27763430000005,-2.189984],[130.2758483,-2.191834],[130.27372830000002,-2.191837],[130.27008130000002,-2.18959],[130.26194830000009,-2.187696],[130.2551423000001,-2.190187],[130.25125130000004,-2.187421],[130.2401433000001,-2.185878],[130.23494030000006,-2.18346]]],[[[130.45726030000003,-2.167892699999925],[130.4484413,-2.169201],[130.44740330000002,-2.171304],[130.44867030000012,-2.173069],[130.45726030000003,-2.167892699999925]]],[[[130.45726030000003,-2.167892699999925],[130.4596103,-2.166761],[130.46379130000003,-2.167852],[130.4615023,-2.16413],[130.45744430000002,-2.163646],[130.45726030000003,-2.167892699999925]]],[[[130.46221930000002,-2.143375],[130.4465953,-2.144089],[130.44555730000002,-2.146169],[130.44784630000004,-2.147436],[130.4540253,-2.146215],[130.45752030000006,-2.148347],[130.46405130000005,-2.147588],[130.46633930000007,-2.144929],[130.46221930000002,-2.143375]]],[[[130.48265130000004,-2.138975699999946],[130.48648130000004,-2.142246],[130.48849530000007,-2.142185],[130.4892433000001,-2.139991],[130.48265130000004,-2.138975699999946]]],[[[130.48265130000004,-2.138975699999946],[130.47639530000004,-2.139081],[130.4820863000001,-2.141675],[130.48265130000004,-2.138975699999946]]],[[[130.48643530000004,-2.135087],[130.48495530000002,-2.133126],[130.4823153000001,-2.133534],[130.4825443000001,-2.136305],[130.48643530000004,-2.135087]]],[[[130.4515993000001,-2.127051],[130.44218530000012,-2.121366199999954],[130.4402013,-2.124411],[130.4416963000001,-2.129143],[130.4448853,-2.132661],[130.4476783,-2.130153],[130.44906630000003,-2.133636],[130.45329330000004,-2.136575],[130.4599303000001,-2.136797],[130.46788030000005,-2.140597],[130.47189430000003,-2.14013],[130.47616630000005,-2.134517],[130.46801830000004,-2.13286],[130.46485930000006,-2.133788],[130.4622353000001,-2.129519],[130.45834430000002,-2.131372],[130.4556583000001,-2.127681],[130.45347630000003,-2.129012],[130.4515993000001,-2.127051]]],[[[130.27406330000008,-2.123307],[130.27343830000007,-2.120248],[130.26753230000008,-2.121353],[130.2613533000001,-2.125691],[130.26106330000005,-2.128521],[130.2706763000001,-2.127295],[130.26998930000002,-2.125333],[130.2717133000001,-2.123541],[130.27302630000008,-2.125444],[130.27406330000008,-2.123307]]],[[[130.39274250000005,-2.115112699999941],[130.36336390000008,-2.116901299999938],[130.35338610000008,-2.119263899999964],[130.33874130000004,-2.126160399999947],[130.33792130000006,-2.129727799999955],[130.34014320000006,-2.13422],[130.3427375000001,-2.135954899999945],[130.34675470000002,-2.136124],[130.36274780000008,-2.131825399999968],[130.38632770000004,-2.1292155],[130.39229540000008,-2.127117099999964],[130.39669170000002,-2.122474],[130.3968608,-2.117769599999974],[130.39274250000005,-2.115112699999941]]],[[[130.29708670000002,-2.137055499999974],[130.301037,-2.130331099999978],[130.30867790000002,-2.125684099999944],[130.31615640000007,-2.118085299999962],[130.317512,-2.115757599999938],[130.31461290000004,-2.111454899999956],[130.3120182,-2.110518399999933],[130.3041763000001,-2.112368799999956],[130.29975920000004,-2.1168143],[130.2930586000001,-2.119133099999942],[130.2894199000001,-2.1227514],[130.288123,-2.125700699999925],[130.28940720000003,-2.134557299999926],[130.2914310000001,-2.137097599999947],[130.29708670000002,-2.137055499999974]]],[[[130.3962266000001,-2.079071299999953],[130.39732560000004,-2.076645299999939],[130.39624260000005,-2.074856299999965],[130.38975760000005,-2.0790803],[130.38958960000002,-2.081101299999943],[130.39204560000007,-2.0809823],[130.39541860000008,-2.087501299999929],[130.39753960000007,-2.088422299999934],[130.4036576000001,-2.085181299999931],[130.4061593,-2.080948899999953],[130.40046860000007,-2.078777299999956],[130.39839360000008,-2.082994299999939],[130.39593660000003,-2.081554299999937],[130.3962266000001,-2.079071299999953]]],[[[130.4291843000001,-2.070577499999956],[130.42150930000003,-2.06653],[130.42111230000012,-2.071207],[130.41658030000008,-2.069942],[130.4133763000001,-2.072776],[130.4089213000001,-2.07053],[130.40365630000008,-2.07123],[130.40474030000007,-2.073769],[130.40890530000001,-2.075091],[130.406814,-2.0816037],[130.41204930000004,-2.080629],[130.4144143000001,-2.078361699999959],[130.4162453,-2.079825],[130.41932730000008,-2.076174],[130.42373730000008,-2.075129],[130.42402730000003,-2.07305],[130.4291843000001,-2.070577499999956]]],[[[130.14799530000005,-2.068919],[130.14564530000007,-2.066209],[130.1436923000001,-2.067424],[130.14209030000006,-2.071583],[130.14236530000005,-2.076085],[130.1513523000001,-2.074919],[130.1590883,-2.070521],[130.15886030000001,-2.067461],[130.15686130000006,-2.066367],[130.15353430000005,-2.070355],[130.15010130000007,-2.070821],[130.14799530000005,-2.068919]]],[[[130.4599303000001,-2.06209],[130.4584963000001,-2.060591],[130.4552923000001,-2.063713],[130.45243930000004,-2.060784],[130.4498453000001,-2.063836],[130.4509283000001,-2.065624],[130.4462893000001,-2.06794],[130.44618230000003,-2.065631],[130.44378730000005,-2.06546],[130.43948430000012,-2.06766],[130.43948430000012,-2.063388],[130.4375463,-2.062351],[130.43393030000004,-2.065936],[130.43353430000002,-2.072055599999942],[130.43524230000003,-2.073151],[130.44027730000005,-2.071643],[130.44635030000006,-2.073367],[130.45098930000006,-2.071571],[130.45573430000002,-2.072199],[130.45910730000003,-2.069135],[130.46553130000007,-2.066817],[130.46490530000005,-2.064913],[130.46095330000003,-2.063821],[130.4599303000001,-2.06209]]],[[[130.42784370000004,-2.060041],[130.42871130000003,-2.055747],[130.42495830000007,-2.055325],[130.42262330000005,-2.056714],[130.4208993000001,-2.060469],[130.4136813,-2.06019],[130.41590930000007,-2.063593],[130.42065430000002,-2.063413],[130.42700230000003,-2.066753],[130.42993230000002,-2.066692],[130.4316563000001,-2.062359],[130.43045130000007,-2.060513],[130.42793330000006,-2.061094],[130.42784370000004,-2.060041]]],[[[130.3628093000001,-2.058353],[130.36875930000008,-2.05719],[130.36732530000006,-2.054767],[130.35743730000002,-2.051317],[130.35548430000006,-2.05207],[130.35484330000008,-2.05923],[130.3628093000001,-2.058353]]],[[[130.0840303000001,-2.043891],[130.08750930000008,-2.042348],[130.08346630000005,-2.040948],[130.08140630000003,-2.041874],[130.08180330000005,-2.044183],[130.0840303000001,-2.043891]]],[[[130.3988193,-2.045372],[130.3994603000001,-2.041215],[130.40176430000008,-2.038452],[130.39740030000007,-2.038446],[130.38816830000007,-2.045849],[130.39064130000008,-2.046769],[130.3923043000001,-2.045554],[130.3988193,-2.045372]]],[[[130.3758243000001,-2.042863],[130.37727430000007,-2.035998],[130.37297130000002,-2.035419],[130.37249830000007,-2.040212],[130.37449730000003,-2.044943],[130.3758243000001,-2.042863]]],[[[130.61224430000004,-1.998846],[130.6151433000001,-2.002477],[130.61778330000004,-2.002716],[130.62733530000003,-1.998694],[130.61224430000004,-1.998846]]],[[[130.61224430000004,-1.998846],[130.61070330000007,-1.995597],[130.60714730000007,-1.998918],[130.60612530000003,-1.996214],[130.60406530000012,-1.996613],[130.60319530000004,-2.002477],[130.60894830000007,-2.002238],[130.61224430000004,-1.998846]]],[[[130.54406830000005,-1.992337],[130.54612730000008,-1.990219],[130.54606730000012,-1.98803],[130.54034430000002,-1.99175],[130.54182530000003,-1.99336],[130.54406830000005,-1.992337]]],[[[130.56167630000004,-1.987681],[130.56001330000004,-1.986234],[130.55703830000004,-1.989501],[130.54921030000003,-1.988789],[130.54731830000003,-1.993955],[130.5486913000001,-1.995917],[130.55583230000002,-1.998013],[130.56536930000004,-1.998444],[130.56973330000005,-2.001999],[130.57882730000006,-2.00176],[130.58837930000004,-2.005345],[130.5965123000001,-2.002955],[130.6000673000001,-1.998378],[130.59007330000009,-1.993976],[130.58360330000005,-1.997868],[130.58189430000004,-1.996829],[130.58041430000003,-1.992397],[130.57635530000005,-1.993529],[130.5717323,-1.991911],[130.56961130000002,-1.993169],[130.5675513000001,-1.992121],[130.56744430000003,-1.98888],[130.5643473,-1.990846],[130.56213430000003,-1.989807],[130.56167630000004,-1.987681]]],[[[130.47323630000005,-1.986409],[130.47540330000004,-1.984681],[130.4743353,-1.981054],[130.4724433,-1.980358],[130.4699713000001,-1.984673],[130.47099330000003,-1.986455],[130.47323630000005,-1.986409]]],[[[130.4795233000001,-1.986714],[130.4814153000001,-1.985276],[130.48309430000006,-1.980445],[130.48288030000003,-1.975497],[130.4806373,-1.976067],[130.4770053000001,-1.986761],[130.4795233000001,-1.986714]]],[[[130.5127573000001,-1.977748],[130.51294030000008,-1.974748],[130.51007130000005,-1.976012],[130.51042230000007,-1.978029],[130.5127573000001,-1.977748]]],[[[130.46581420000007,-1.973557],[130.4669193000001,-1.97723],[130.46891830000004,-1.975628],[130.46876630000008,-1.972806],[130.46581420000007,-1.973557]]],[[[130.46581420000007,-1.973557],[130.4671793000001,-1.968374],[130.4646613000001,-1.968646],[130.46418830000005,-1.970835],[130.46581420000007,-1.973557]]],[[[130.45929030000002,-1.968232],[130.46151830000008,-1.968584],[130.46003730000007,-1.96455],[130.4586643,-1.966161],[130.45929030000002,-1.968232]]],[[[130.47575430000006,-1.96914],[130.47679130000006,-1.966444],[130.4758763000001,-1.964302],[130.4731303000001,-1.967983],[130.47459430000004,-1.971619],[130.47575430000006,-1.96914]]],[[[130.45929030000002,-1.968232],[130.45652830000006,-1.970983],[130.4509283000001,-1.96913],[130.45597930000008,-1.964995],[130.45559730000002,-1.960273],[130.4502573000001,-1.96648],[130.4506533000001,-1.963009],[130.44424530000003,-1.966636],[130.44400030000008,-1.974117],[130.4458773,-1.975446],[130.4492193000001,-1.972413],[130.44717430000003,-1.979589],[130.4483193000001,-1.981895],[130.45109630000002,-1.981133],[130.4534003000001,-1.984444],[130.45573430000002,-1.984859],[130.46237230000008,-1.983211],[130.4647983000001,-1.977457],[130.46215930000005,-1.978082],[130.45994630000007,-1.974794],[130.45929030000002,-1.968232]]],[[[130.37625130000004,-1.934421],[130.37454230000003,-1.933209],[130.37323030000005,-1.934756],[130.3712773000001,-1.933889],[130.36863730000005,-1.938313],[130.37538230000007,-1.939776],[130.37870830000008,-1.937939],[130.37625130000004,-1.934421]]],[[[130.4590763000001,-1.896328],[130.4510193000001,-1.896656],[130.44946330000005,-1.897914],[130.44944830000009,-1.902292],[130.46293630000002,-1.904287],[130.4660493,-1.898135],[130.46405130000005,-1.896634],[130.4590763000001,-1.896328]]],[[[129.7220463000001,-1.859603],[129.7260133000001,-1.852356],[129.72401530000002,-1.85137],[129.7200623000001,-1.853841],[129.71786530000008,-1.859993],[129.71986430000004,-1.861087],[129.7220463000001,-1.859603]]],[[[129.81276030000004,-1.822683],[129.8100283000001,-1.818071],[129.80784630000005,-1.818931],[129.80824330000007,-1.822097],[129.81086730000004,-1.824348],[129.81276030000004,-1.822683]]],[[[129.71531730000004,-1.772368],[129.71720930000004,-1.771047],[129.71630930000003,-1.768343],[129.7140813000001,-1.768506],[129.71113630000002,-1.772759],[129.71531730000004,-1.772368]]],[[[130.47778430000005,-1.767846],[130.47711230000004,-1.765765],[130.47480830000006,-1.767087],[130.4751443,-1.76962],[130.47726430000012,-1.769854],[130.47778430000005,-1.767846]]],[[[129.6456763000001,-1.785689],[129.64462330000003,-1.77469],[129.6400913000001,-1.765004],[129.63786330000005,-1.764426],[129.63493430000005,-1.767638],[129.6312263000001,-1.781153],[129.63252330000012,-1.785359],[129.63057030000004,-1.786735],[129.62583930000005,-1.784593],[129.6240543,-1.789134],[129.62966930000005,-1.799806],[129.6327063000001,-1.799923],[129.63717730000008,-1.79643],[129.6371623000001,-1.799252],[129.63462930000003,-1.803848],[129.63438430000008,-1.810126],[129.6409913000001,-1.817514],[129.6442723,-1.827589],[129.6519783000001,-1.828944],[129.65399230000003,-1.827848],[129.65446530000008,-1.824574],[129.65286330000004,-1.807876],[129.6543733000001,-1.800512],[129.64999430000012,-1.792843],[129.6486513000001,-1.787018],[129.6456763000001,-1.785689]]],[[[129.6562963,-1.775247],[129.65466330000004,-1.766319],[129.6519323000001,-1.763372],[129.6497653,-1.763083],[129.64750730000003,-1.767335],[129.64949130000002,-1.773097],[129.6562963,-1.775247]]],[[[129.6244663000001,-1.782865],[129.6275333000001,-1.774126],[129.61979730000007,-1.76322],[129.61521930000004,-1.762977],[129.61016930000005,-1.766534],[129.60946730000012,-1.771301],[129.6208653000001,-1.784178],[129.6244663000001,-1.782865]]],[[[129.7068183,-1.766302],[129.70791630000008,-1.764112],[129.70726030000003,-1.756632],[129.7043463000001,-1.755122],[129.70141630000012,-1.759953],[129.7012333,-1.76283],[129.70436130000007,-1.766348],[129.7068183,-1.766302]]],[[[129.69334430000004,-1.775352],[129.69418330000008,-1.764415],[129.69267330000002,-1.756935],[129.68870630000004,-1.747999],[129.68579130000012,-1.747584],[129.68409730000008,-1.753682],[129.68617330000006,-1.765893],[129.68997230000002,-1.77529],[129.69157430000007,-1.776791],[129.69334430000004,-1.775352]]],[[[130.13642930000003,-1.708108],[130.13890130000004,-1.706913],[130.13707030000012,-1.705521],[130.13237030000005,-1.707178],[130.1327063000001,-1.709195],[130.13642930000003,-1.708108]]],[[[130.15199330000007,-1.707641],[130.15078830000004,-1.705624],[130.14679030000002,-1.704405],[130.14462330000003,-1.704966],[130.1436463000001,-1.707445],[130.15055930000005,-1.709071],[130.15199330000007,-1.707641]]],[[[129.93628030000002,-1.709877],[129.93965230000003,-1.707814],[129.94041430000004,-1.702458],[129.93533330000002,-1.703256],[129.9306193000001,-1.708649],[129.93095430000005,-1.71072],[129.9329533,-1.71119],[129.93628030000002,-1.709877]]],[[[130.23498630000006,-1.702357],[130.2392893000001,-1.697362],[130.23094230000004,-1.696587],[130.22476230000007,-1.699104],[130.2257853000001,-1.701465],[130.23040830000002,-1.703091],[130.23498630000006,-1.702357]]],[[[130.26403590000007,-1.700521],[130.26490830000012,-1.695481],[130.26251330000002,-1.694378],[130.25048930000003,-1.698661],[130.24899330000005,-1.702171],[130.25572230000012,-1.70605],[130.2608193000001,-1.704221],[130.26403590000007,-1.700521]]],[[[129.77160730000003,-1.701612],[129.76399330000004,-1.689565],[129.75929330000008,-1.692082],[129.7588813000001,-1.694497],[129.76300130000004,-1.696233],[129.7653663000001,-1.707005],[129.7704933000001,-1.709328],[129.77348430000006,-1.706507],[129.77499430000012,-1.715034],[129.77763430000005,-1.714409],[129.78002930000002,-1.712753],[129.7803963,-1.709641],[129.7782443000001,-1.701003],[129.7747813000001,-1.696844],[129.77276630000006,-1.697532],[129.77401730000008,-1.702597],[129.77160730000003,-1.701612]]],[[[129.90826430000004,-1.690683],[129.90992830000005,-1.688149],[129.90828030000011,-1.68682],[129.90489230000003,-1.691073],[129.90826430000004,-1.690683]]],[[[129.7837833000001,-1.688527],[129.78453130000003,-1.686628],[129.7830513,-1.684322],[129.7807163000001,-1.682757],[129.7788243000001,-1.684251],[129.77876330000004,-1.686901],[129.7810373000001,-1.688746],[129.7837833000001,-1.688527]]],[[[130.0513773,-1.682067],[130.0493173000001,-1.681028],[130.0467993000001,-1.681825],[130.0510263000001,-1.684483],[130.0513773,-1.682067]]],[[[130.26403590000007,-1.700521],[130.26348930000006,-1.709005],[130.2665713,-1.712296],[130.2540593000001,-1.723544],[130.2457743000001,-1.722543],[130.24224930000003,-1.718501],[130.23869430000002,-1.717969],[130.2355503000001,-1.718766],[130.2330783000001,-1.723018],[130.2264563000001,-1.721854],[130.2245643000001,-1.719249],[130.21032730000002,-1.719552],[130.2007453000001,-1.713658],[130.19400130000008,-1.712602],[130.17381330000012,-1.715133],[130.16145330000006,-1.714232],[130.1556253000001,-1.715654],[130.13520830000004,-1.713002],[130.12965430000008,-1.715401],[130.12754930000006,-1.714705],[130.1259013,-1.70917],[130.12117030000002,-1.707606],[130.10943630000008,-1.70999],[130.11004630000002,-1.712233],[130.11273230000006,-1.713742],[130.11236530000008,-1.716828],[130.1010593000001,-1.718541],[130.09675630000004,-1.720487],[130.0937203000001,-1.724043],[130.07856830000003,-1.721642],[130.07045030000006,-1.721789],[130.0631413000001,-1.718255],[130.0538183000001,-1.718683],[130.0267033,-1.735129],[130.00611930000002,-1.736276],[130.0005043000001,-1.738792],[129.98594730000002,-1.749173],[129.98082030000012,-1.757388],[129.97692930000005,-1.760772],[129.9730843000001,-1.761968],[129.9675453000001,-1.761083],[129.96562230000006,-1.75648],[129.96333430000004,-1.755494],[129.96028130000002,-1.762904],[129.9470983000001,-1.769485],[129.93916330000002,-1.767452],[129.91876230000003,-1.776423],[129.89715630000012,-1.776883],[129.8934183,-1.780385],[129.88617030000012,-1.794924],[129.88003630000003,-1.799277],[129.87063630000011,-1.802129],[129.86053530000004,-1.812056],[129.8469093000001,-1.816511],[129.84004230000005,-1.820286],[129.81910730000004,-1.82184],[129.81445330000008,-1.826545],[129.81292730000007,-1.830282],[129.80976930000008,-1.828719],[129.81015030000003,-1.832462],[129.81384330000003,-1.836043],[129.81218030000002,-1.837473],[129.80932630000007,-1.835737],[129.8059853000001,-1.826747],[129.80371130000003,-1.825825],[129.78323430000012,-1.836361],[129.7737433000001,-1.838698],[129.7652743000001,-1.836946],[129.7422643000001,-1.844181],[129.72860730000002,-1.856578],[129.72378630000003,-1.864043],[129.7233133000001,-1.86928],[129.71827730000007,-1.869789],[129.71786530000008,-1.871969],[129.7222293000001,-1.881999],[129.72468630000003,-1.883907],[129.73143030000006,-1.88214],[129.73725930000012,-1.885901],[129.73770230000002,-1.888207399999942],[129.73570330000007,-1.889176],[129.73016430000007,-1.887089],[129.72706630000005,-1.887832],[129.72415230000001,-1.889949],[129.7255103000001,-1.892029],[129.74206630000003,-1.901286],[129.75201430000004,-1.900623],[129.75584430000004,-1.90225],[129.76330630000007,-1.91056],[129.77807630000007,-1.920162],[129.77903830000002,-1.924485],[129.78610330000004,-1.930199],[129.79383930000006,-1.92723],[129.80537530000004,-1.930084],[129.80560330000003,-1.932563],[129.8078163,-1.934064],[129.8139503000001,-1.932813],[129.81387330000007,-1.93806],[129.81585730000006,-1.94042],[129.82453930000008,-1.945971],[129.83662430000004,-1.957464],[129.84455930000001,-1.961233],[129.85095230000002,-1.962117],[129.85179130000006,-1.967065],[129.85733030000006,-1.970654],[129.86224430000004,-1.970038],[129.87698430000012,-1.976582],[129.89634730000012,-1.979406],[129.89628630000004,-1.981532],[129.89834630000007,-1.982689],[129.90258830000005,-1.98011],[129.90713530000005,-1.987725],[129.9090123000001,-1.988764],[129.9167943000001,-1.988273],[129.91838130000008,-1.99323],[129.9217993000001,-1.994504],[129.92443930000002,-1.993879],[129.9287723000001,-1.996021],[129.94154430000003,-1.993122],[129.94465730000002,-1.998829],[129.94220030000008,-2.002868],[129.94401630000004,-2.004483],[129.94224630000008,-2.007141],[129.9426433000001,-2.009277],[129.9552923000001,-2.011107],[129.9602973000001,-2.01595],[129.96232640000005,-2.013747],[129.96495130000005,-2.014501],[129.97045930000002,-2.010798],[129.97676130000002,-2.006113],[129.97882130000005,-2.002473],[129.9833383,-2.004372],[129.9833383,-2.006797],[129.97903530000008,-2.010152],[129.97949230000006,-2.012229],[129.9861913000001,-2.008294],[129.9892883000001,-2.008868],[129.98390230000007,-2.015803],[129.9841163000001,-2.018112],[129.9916843000001,-2.013079],[129.99472130000004,-2.012555],[130.00061030000006,-2.016589],[130.00312830000007,-2.012833],[130.0062263000001,-2.015426],[130.00782830000003,-2.013981],[130.00747730000012,-2.01121],[130.0097813000001,-2.010052],[130.0109103000001,-2.012072],[130.0129243,-2.012184],[130.01321430000007,-2.009932],[130.01796030000003,-2.00854],[130.01956230000008,-2.009924],[130.01313830000004,-2.017149],[130.00598230000003,-2.020667],[130.0096443000001,-2.024024],[130.01782230000003,-2.023551],[130.02372730000002,-2.019906],[130.02389630000005,-2.023947],[130.02595630000008,-2.023944],[130.02853430000005,-2.017244],[130.03462330000002,-2.012465],[130.03500430000008,-2.016889],[130.0330053,-2.022656],[130.03512630000012,-2.023058],[130.0368353,-2.027212],[130.0412453,-2.025936],[130.04286230000002,-2.018486],[130.04831030000003,-2.014726],[130.04939330000002,-2.016457],[130.04731830000003,-2.021886],[130.0482333000001,-2.025927],[130.0532843000001,-2.017087],[130.05545130000007,-2.01564],[130.0545353000001,-2.02332],[130.05709930000012,-2.025511],[130.06568930000003,-2.027058],[130.06797830000005,-2.026189],[130.0699313,-2.021279],[130.0726783,-2.019774],[130.08532730000002,-2.019699],[130.09329230000003,-2.017148],[130.09431530000006,-2.018879],[130.08647230000008,-2.02472],[130.0879523000001,-2.026393],[130.08651830000008,-2.028531],[130.0877693000001,-2.030607],[130.0917823000001,-2.028351],[130.10035730000004,-2.03469],[130.1082613000001,-2.036988],[130.10728530000006,-2.039703],[130.10206630000005,-2.041962],[130.0974893,-2.040293],[130.09045430000003,-2.040361],[130.0907903000001,-2.046538],[130.09513930000003,-2.046474],[130.09805330000006,-2.050627],[130.10107530000005,-2.051143],[130.10394330000008,-2.050735],[130.10778830000004,-2.046919],[130.1098333000001,-2.051188],[130.1157233,-2.053894],[130.1157233,-2.059494],[130.11714230000007,-2.061051],[130.12223830000005,-2.061737],[130.12728930000003,-2.056823],[130.13438430000008,-2.057044],[130.13781830000005,-2.054557],[130.1419373000001,-2.057611],[130.1480113,-2.055756],[130.1552743000001,-2.056323],[130.16117930000007,-2.053602],[130.1687783000001,-2.055093],[130.1805733000001,-2.059926],[130.1778723000001,-2.062008],[130.1726083000001,-2.062016],[130.17248630000006,-2.064209],[130.1753543000001,-2.065187],[130.1864633,-2.062863],[130.1905223000001,-2.059971],[130.19229130000008,-2.063086],[130.1961983000001,-2.060136],[130.19778530000008,-2.062328],[130.2006533000001,-2.06267],[130.2134863000001,-2.056707],[130.21937630000002,-2.056987],[130.22572330000003,-2.054076],[130.23443630000008,-2.053792],[130.23637430000008,-2.055637],[130.2426153,-2.055051],[130.2445073,-2.053028],[130.25372330000005,-2.053535],[130.2635203000001,-2.043996],[130.2621623000001,-2.034125],[130.26438930000006,-2.033718],[130.2678383000001,-2.029788],[130.26989830000002,-2.030766],[130.27156130000003,-2.029552],[130.2614903000001,-2.022175],[130.2553713000001,-2.014101],[130.2478943000001,-2.009465],[130.25160230000006,-2.009603],[130.2645883,-2.015647],[130.27249230000007,-2.016849],[130.27294930000005,-2.011999],[130.26397730000008,-2.005833],[130.26443530000006,-2.000675],[130.2664953000001,-2.000678],[130.2673043000001,-2.003693],[130.27078330000006,-2.006979],[130.2825623000001,-2.013083],[130.29298430000006,-2.011914],[130.29304530000002,-2.009547],[130.2866983,-2.000704],[130.2881933000001,-1.998609],[130.29242030000012,-2.004467],[130.2947703000001,-2.005503],[130.2975163000001,-2.00498],[130.2995763,-2.000721],[130.30482530000006,-2.000062],[130.30635130000007,-1.991604],[130.3179483,-1.977254],[130.32199130000004,-1.965746],[130.32833930000004,-1.965482],[130.33297830000004,-1.962559],[130.3381663,-1.954289],[130.3430793000001,-1.951827],[130.3455973,-1.952866],[130.34599330000003,-1.955119],[130.3379063000001,-1.959355],[130.33537330000001,-1.964123],[130.3391723000001,-1.971718],[130.33032330000003,-1.969516],[130.32482930000003,-1.969843],[130.3216563000001,-1.978528],[130.32273930000008,-1.98135],[130.3355563,-1.979717],[130.33473230000004,-1.984611],[130.33621330000005,-1.986691],[130.34770230000004,-1.986778],[130.37168930000007,-1.996928],[130.37425330000008,-2.000499],[130.37313930000005,-2.004988],[130.37597730000005,-2.011976],[130.37803730000007,-2.012839],[130.38617030000012,-2.008613],[130.39114430000006,-2.011435],[130.3927463000001,-2.014782],[130.38896230000012,-2.018078],[130.3867193000001,-2.017388],[130.3850563000001,-2.022009],[130.38253830000008,-2.023744],[130.3767553,-2.024503],[130.37332230000004,-2.026932],[130.36616530000003,-2.02648],[130.36261030000003,-2.030122],[130.3610083000001,-2.036821],[130.3633423000001,-2.038377],[130.36850030000005,-2.035541],[130.3730323000001,-2.030916],[130.37503130000005,-2.031029],[130.3759463,-2.033337],[130.3818973000001,-2.032174],[130.3859563000001,-2.035171],[130.3877873,-2.03436],[130.38916030000007,-2.036148],[130.39190730000007,-2.0332],[130.3950043000001,-2.033023],[130.40232930000002,-2.028452],[130.4021153000001,-2.025796],[130.4044043,-2.023888],[130.41052330000002,-2.022783],[130.41555830000004,-2.025259],[130.4199073000001,-2.025541],[130.41894630000002,-2.020693],[130.42135630000007,-2.018958],[130.4227763,-2.020515],[130.4227763,-2.025018],[130.4249423000001,-2.024265],[130.42718530000002,-2.020393],[130.43302930000004,-2.018711],[130.4346313000001,-2.021076],[130.4407503000001,-2.019336],[130.44412330000011,-2.022622],[130.44545030000006,-2.021061],[130.44528230000003,-2.01627],[130.45364430000006,-2.009562],[130.4632573,-2.00874],[130.46473730000002,-2.013242],[130.4696053,-2.013235],[130.46778930000005,-2.006598],[130.4659583,-2.005157],[130.46423430000004,-2.00643],[130.4603433000001,-2.003317],[130.4569093,-2.006036],[130.45085230000007,-2.003619],[130.44867030000012,-2.005873],[130.44609130000003,-2.005934],[130.44632030000002,-2.003336],[130.4439853,-2.00357],[130.43978930000003,-2.011024],[130.43772930000011,-2.011257],[130.43739330000005,-2.004849],[130.4332743000001,-2.004393],[130.4333193000001,-2.010224],[130.43234330000007,-2.013054],[130.4301153,-2.013635],[130.42799430000002,-2.012367],[130.42892530000006,-2.008152],[130.4283603,-2.004284],[130.42669730000011,-2.002959],[130.4246373000001,-2.004347],[130.41833530000008,-2.004067],[130.41655030000004,-2.008745],[130.41426130000002,-2.00898],[130.41484130000003,-2.004649],[130.41241530000002,-1.996009],[130.40383930000007,-1.99414],[130.39712630000008,-1.985603],[130.39077830000008,-1.982014],[130.38276730000007,-1.980063],[130.3882903000001,-1.976542],[130.39601130000005,-1.976042],[130.40277130000004,-1.971571],[130.40849330000003,-1.970954],[130.40866130000006,-1.973089],[130.40475530000003,-1.977396],[130.4107213000001,-1.985761],[130.41330030000006,-1.985769],[130.41847330000007,-1.982801],[130.4187323000001,-1.986989],[130.42302030000008,-1.987403],[130.43383830000005,-1.980215],[130.43928630000005,-1.978759],[130.4414223000001,-1.974226],[130.44064330000003,-1.968691],[130.44232230000011,-1.963805],[130.4391793000001,-1.961147],[130.44410730000004,-1.956849],[130.44503830000008,-1.95437],[130.4428713000001,-1.953385],[130.4361123000001,-1.956363],[130.4347083,-1.96246],[130.4326023000001,-1.963375],[130.42373730000008,-1.97814],[130.41880830000002,-1.980657],[130.4208833,-1.975491],[130.42852830000004,-1.965086],[130.4327393000001,-1.953361],[130.43206830000008,-1.951109],[130.42555330000005,-1.948153],[130.4171603000001,-1.948129],[130.4144903,-1.944558],[130.41244530000006,-1.952608],[130.4107213000001,-1.953812],[130.40867630000002,-1.953749],[130.40789830000006,-1.949899],[130.4057623000001,-1.949363],[130.39335630000005,-1.951629],[130.3932503000001,-1.94944],[130.3878023000001,-1.950346],[130.38061530000004,-1.94503],[130.37855530000002,-1.949056],[130.3771213000001,-1.947148],[130.37318530000005,-1.948289],[130.37422230000004,-1.944661],[130.3704533,-1.942238],[130.36776830000008,-1.943894],[130.36331230000008,-1.950348],[130.35728530000006,-1.948357199999975],[130.3592993000001,-1.943988],[130.36566230000005,-1.940494],[130.3672183000001,-1.934342],[130.36467030000006,-1.929956],[130.36007730000006,-1.932364],[130.35878030000003,-1.930456],[130.3563693000001,-1.930909],[130.35464530000002,-1.932574],[130.34878630000003,-1.922942],[130.33570930000008,-1.919509],[130.33743330000004,-1.916062],[130.34242330000006,-1.912334],[130.35054130000003,-1.91547],[130.37054530000012,-1.899181],[130.37283430000002,-1.899705],[130.3731693000001,-1.902065],[130.37493930000005,-1.903159],[130.38063130000012,-1.894546],[130.3886573000001,-1.887949],[130.4005893000001,-1.892531],[130.40678430000003,-1.890647],[130.41023330000007,-1.885942],[130.40785330000006,-1.879891],[130.41500930000007,-1.876171],[130.41542130000005,-1.873521],[130.40847830000007,-1.864405],[130.40258830000005,-1.8641],[130.40300030000003,-1.861738],[130.40962230000002,-1.861356],[130.4104923000001,-1.859456],[130.4079293000001,-1.855477],[130.40937830000007,-1.853125],[130.4133763000001,-1.851233],[130.42041030000007,-1.854197],[130.42263830000002,-1.851953],[130.4253093000001,-1.857832],[130.42834530000005,-1.856465],[130.43335030000003,-1.846694],[130.4355783000001,-1.834608],[130.43711930000006,-1.832536],[130.45417830000008,-1.83017],[130.45423930000004,-1.827754],[130.43945330000008,-1.820975],[130.42027330000008,-1.796739],[130.4171603000001,-1.786374],[130.41816730000005,-1.775836],[130.41622930000005,-1.773358],[130.4056243000001,-1.767283],[130.39866730000006,-1.760817],[130.38371330000007,-1.753342],[130.3794253000001,-1.751896],[130.3735203000001,-1.754756],[130.37039230000005,-1.753129],[130.37062130000004,-1.750596],[130.36732530000006,-1.746563],[130.36099330000002,-1.74159],[130.34590230000003,-1.723992],[130.3473513,-1.718121],[130.34964030000003,-1.716574],[130.3547373,-1.715324],[130.36171030000003,-1.715864],[130.36526530000003,-1.712823],[130.36706630000003,-1.707821],[130.3654183000001,-1.703958],[130.3716743000001,-1.698855],[130.37707530000012,-1.688794],[130.3782963000001,-1.682235],[130.37678630000005,-1.676763],[130.3737033000001,-1.673589],[130.36633330000006,-1.66982],[130.3564153000001,-1.668331699999953],[130.3455973,-1.664002],[130.34228530000007,-1.664401],[130.33683830000007,-1.668355],[130.32833930000004,-1.679494],[130.29249630000004,-1.689293],[130.28254730000003,-1.689034],[130.27443030000006,-1.690503],[130.26985230000003,-1.692105],[130.26403590000007,-1.700521]]],[[[129.8707743000001,-1.667946],[129.8713543,-1.665702],[129.86782930000004,-1.662646],[129.86502130000008,-1.664013],[129.86363330000006,-1.666836],[129.86517330000004,-1.668337],[129.8707743000001,-1.667946]]],[[[129.85275330000002,-1.654999],[129.8506933000001,-1.655569],[129.8506933000001,-1.657641],[129.85513330000003,-1.663356],[129.85661330000005,-1.661338],[129.86364830000002,-1.66177],[129.86422830000004,-1.659002],[129.86241230000007,-1.655258],[129.85275330000002,-1.654999]]],[[[130.2076423000001,-1.638667],[130.2026833000001,-1.636642],[130.19729630000006,-1.637721],[130.19592330000012,-1.639729],[130.19734230000006,-1.641402],[130.2076873000001,-1.641607],[130.2076423000001,-1.638667]]],[[[129.9090883,-1.63905],[129.91223230000003,-1.638253],[129.91664230000003,-1.634235],[129.9176033000001,-1.624447],[129.91023330000007,-1.621664],[129.90596030000006,-1.616183],[129.90182530000004,-1.620608],[129.9030613000001,-1.625728],[129.9020693000001,-1.631029],[129.9062203000001,-1.64048],[129.9090883,-1.63905]]],[[[130.30780130000005,-1.615656],[130.3115243000001,-1.612724],[130.3106233000001,-1.610418],[130.30496230000006,-1.609886],[130.3006593,-1.613045],[130.30362030000003,-1.616906],[130.30780130000005,-1.615656]]],[[[130.32675230000007,-1.608223],[130.32716430000005,-1.605862],[130.32328830000006,-1.603032],[130.3208323,-1.603142],[130.32019130000003,-1.606823],[130.32675230000007,-1.608223]]],[[[130.34678730000007,-1.586932],[130.34314030000007,-1.582772],[130.3402873000001,-1.582303],[130.33873030000007,-1.58489],[130.34535330000006,-1.589339],[130.34678730000007,-1.586932]]],[[[130.52304130000005,-1.519391],[130.51670930000012,-1.513558],[130.51619030000006,-1.515684],[130.5201883000001,-1.522141],[130.5227513000001,-1.52215],[130.52304130000005,-1.519391]]],[[[130.13465930000007,-1.483079],[130.13432330000012,-1.480836],[130.1322183000001,-1.48043],[130.13070730000004,-1.484392],[130.13465930000007,-1.483079]]],[[[130.2500463,-1.472546],[130.25056530000006,-1.470013],[130.2477573000001,-1.47006],[130.2458653000001,-1.473163],[130.2500463,-1.472546]]],[[[130.0748903000001,-1.4722],[130.07420430000002,-1.469549],[130.0713353000001,-1.473169],[130.07333430000006,-1.474262],[130.0748903000001,-1.4722]]],[[[130.2342533000001,-1.475899],[130.2361453000001,-1.471411],[130.24188230000004,-1.467574],[130.2561803000001,-1.465887],[130.2637483000001,-1.462799],[130.2674723,-1.459415],[130.26857030000008,-1.455507],[130.26411530000007,-1.454106],[130.26498430000004,-1.451175],[130.26258930000006,-1.45048],[130.2426613,-1.456466],[130.2276763000001,-1.459121],[130.21559230000003,-1.465249],[130.20486530000005,-1.473213],[130.2048043000001,-1.475864],[130.2067413000001,-1.477943],[130.21467630000006,-1.480672],[130.2266393000001,-1.477602],[130.2325293,-1.47779],[130.2342533000001,-1.475899]]],[[[130.10110530000009,-1.447577],[130.1042033000001,-1.44356],[130.10347030000003,-1.441253],[130.1011353,-1.440784],[130.0965433,-1.443481],[130.09602430000007,-1.445725],[130.09698530000003,-1.449297],[130.09915230000001,-1.449586],[130.10110530000009,-1.447577]]],[[[130.1483313000001,-1.436263],[130.1525123,-1.433684],[130.15275630000008,-1.428446],[130.15115430000003,-1.427008],[130.14520330000005,-1.430556],[130.14331130000005,-1.43337],[130.14437930000008,-1.436138],[130.1483313000001,-1.436263]]],[[[130.1191563000001,-1.436119],[130.12043830000005,-1.431515],[130.11885130000007,-1.426395],[130.1124883000001,-1.430287],[130.1165933000001,-1.436627],[130.1191563000001,-1.436119]]],[[[130.4619603000001,-1.427299],[130.4595193,-1.423546],[130.4558413000001,-1.426071],[130.46012930000006,-1.42844],[130.4619603000001,-1.427299]]],[[[130.31393530000003,-1.422077],[130.3116913,-1.422937],[130.31123430000002,-1.425235],[130.31311130000006,-1.426799],[130.32458530000008,-1.430115],[130.32643130000008,-1.427925],[130.32432630000005,-1.423602],[130.31393530000003,-1.422077]]],[[[130.28697230000012,-1.429304],[130.28820830000006,-1.420213],[130.2858583000001,-1.420033],[130.2822423,-1.424458],[130.28160130000003,-1.428836],[130.2826083000001,-1.430853],[130.28512630000012,-1.431259],[130.28697230000012,-1.429304]]],[[[130.49206630000003,-1.420821],[130.49137930000006,-1.418804],[130.48915130000012,-1.419547],[130.48902930000008,-1.421564],[130.4915473000001,-1.423526],[130.49206630000003,-1.420821]]],[[[130.42396630000007,-1.417281],[130.42523230000006,-1.415155],[130.42352330000006,-1.412849],[130.4203033000001,-1.417038],[130.42173830000002,-1.418774],[130.42396630000007,-1.417281]]],[[[130.22638030000007,-1.359067],[130.2287913,-1.355276],[130.23440630000005,-1.3538],[130.23590130000002,-1.351502],[130.23223930000006,-1.350164],[130.22032230000002,-1.355424],[130.21894930000008,-1.357433],[130.2191623000001,-1.359794],[130.22122230000002,-1.360381],[130.22638030000007,-1.359067]]],[[[129.7192083000001,-1.266361],[129.72140530000001,-1.261014],[129.7165993000001,-1.260943],[129.7136233000001,-1.262491],[129.71292130000006,-1.264961],[129.71913230000007,-1.269988],[129.72491530000002,-1.270239],[129.72886730000005,-1.268754],[129.73013330000003,-1.26547],[129.72757030000002,-1.261319],[129.72454830000004,-1.261257],[129.7251593000001,-1.2654],[129.72401530000002,-1.267236],[129.7192083000001,-1.266361]]],[[[129.7421273000001,-1.255326],[129.74104330000011,-1.252957],[129.73841930000003,-1.253012],[129.73971630000005,-1.255544],[129.7421273000001,-1.255326]]],[[[129.75714130000006,-1.262105],[129.76583930000004,-1.258276],[129.76722730000006,-1.255055],[129.76585430000011,-1.25321],[129.7577523000001,-1.251114],[129.7506413000001,-1.254889],[129.74989330000005,-1.256843],[129.7515873000001,-1.261103],[129.75714130000006,-1.262105]]],[[[129.66516130000002,-1.251698],[129.6641393000001,-1.249618],[129.6617443,-1.250189],[129.6557163000001,-1.254659],[129.65541130000008,-1.259607],[129.6580963,-1.261687],[129.66330030000006,-1.260844],[129.6651313000001,-1.261938],[129.6671913,-1.260336],[129.6686403000001,-1.253199],[129.6660773000001,-1.253715],[129.66516130000002,-1.251698]]],[[[129.69067430000007,-1.252115],[129.69090330000006,-1.249871],[129.68907230000002,-1.248886],[129.68335030000003,-1.25152],[129.6853493000001,-1.252677],[129.69067430000007,-1.252115]]],[[[129.73173530000008,-1.247749],[129.72894330000008,-1.24728],[129.7291113000001,-1.249523],[129.73133930000006,-1.250337],[129.73173530000008,-1.247749]]],[[[129.74760530000003,-1.242389],[129.74554530000012,-1.241114],[129.74319530000002,-1.242607],[129.7477123000001,-1.244578],[129.74760530000003,-1.242389]]],[[[129.67451530000005,-1.243264],[129.67297430000008,-1.240777],[129.6709293,-1.240543],[129.66879330000006,-1.242552],[129.67285230000005,-1.245101],[129.67451530000005,-1.243264]]],[[[129.6838083,-1.236613],[129.68215930000008,-1.233384],[129.67964230000007,-1.231937],[129.67781130000003,-1.23343],[129.67785730000003,-1.23562],[129.68081730000006,-1.238676],[129.68306030000008,-1.238856],[129.6838083,-1.236613]]],[[[129.79303030000005,-1.233662],[129.7958383,-1.233037],[129.79527330000008,-1.230957],[129.7926493000001,-1.230144],[129.79065030000004,-1.231239],[129.79097030000003,-1.233708],[129.79303030000005,-1.233662]]],[[[129.70924430000002,-1.224654],[129.71095330000003,-1.222709],[129.71102930000006,-1.219769],[129.70697030000008,-1.217862],[129.7046213000001,-1.219174],[129.70329330000004,-1.222856],[129.70512430000008,-1.224764],[129.70924430000002,-1.224654]]],[[[129.65565530000003,-1.22404],[129.65771530000006,-1.222429],[129.65727330000004,-1.219842],[129.65237530000002,-1.214353],[129.64997930000004,-1.213657],[129.64790430000005,-1.215838],[129.64863630000002,-1.222577],[129.6506203,-1.224485],[129.65565530000003,-1.22404]]],[[[129.74083030000008,-1.215544],[129.7337043000001,-1.209015],[129.73147630000005,-1.208835],[129.73004230000004,-1.210328],[129.72923330000003,-1.215104],[129.73059130000001,-1.216777],[129.7389383000001,-1.217209],[129.74083030000008,-1.215544]]],[[[129.81752030000007,-1.214676],[129.82856830000003,-1.210168],[129.82870530000002,-1.2074],[129.8063813000001,-1.212002],[129.79939330000002,-1.214854],[129.79167230000007,-1.214196],[129.78926130000002,-1.217707],[129.79090930000007,-1.219208],[129.79423530000008,-1.219098],[129.80401630000006,-1.215848],[129.8087623,-1.217764],[129.81185930000004,-1.214949],[129.81752030000007,-1.214676]]],[[[129.77708530000007,-1.217838],[129.7862553000001,-1.210553],[129.7867893,-1.206184],[129.7845003000001,-1.205199],[129.77494830000012,-1.208965],[129.76902830000006,-1.214078],[129.76861630000008,-1.216547],[129.77011130000005,-1.218103],[129.77708530000007,-1.217838]]],[[[131.0536813000001,-1.190325],[131.05070530000012,-1.191638],[131.05270430000007,-1.193826],[131.05493230000002,-1.193437],[131.0536813000001,-1.190325]]],[[[129.71292130000006,-1.199913],[129.71643130000007,-1.197967],[129.71774330000005,-1.195325],[129.71719430000007,-1.192277],[129.71507330000009,-1.190315],[129.70597930000008,-1.194253],[129.70510930000012,-1.196271],[129.70823730000006,-1.199562],[129.71292130000006,-1.199913]]],[[[129.65745630000004,-1.202284],[129.65834130000007,-1.193591],[129.6562963,-1.189557],[129.65167330000008,-1.187759],[129.64943030000006,-1.18994],[129.6498573,-1.198117],[129.65281730000004,-1.20215],[129.65510630000006,-1.203316],[129.65745630000004,-1.202284]]],[[[129.39048830000002,-1.17788],[129.38774130000002,-1.177637],[129.38624630000004,-1.179302],[129.3878483000001,-1.181328],[129.39469930000007,-1.183822],[129.39445530000012,-1.186355],[129.40138330000002,-1.186542],[129.4031533000001,-1.184941],[129.40083430000004,-1.179812],[129.3984233000001,-1.180546],[129.39529530000004,-1.178069],[129.39048830000002,-1.17788]]],[[[129.67733070000008,-1.177225799999974],[129.67580470000007,-1.171400799999958],[129.67334770000002,-1.170759799999928],[129.6732717000001,-1.178991799999949],[129.6784447000001,-1.187700799999959],[129.68579870000008,-1.190203799999949],[129.6942067000001,-1.189766799999973],[129.6939317,-1.187170799999933],[129.69171970000002,-1.185443799999973],[129.69544270000006,-1.183379799999955],[129.68578370000012,-1.179375799999946],[129.68030570000008,-1.179305799999952],[129.67733070000008,-1.177225799999974]]],[[[129.46383730000002,-1.184603],[129.47586130000002,-1.177679],[129.48103430000003,-1.1732],[129.48161430000005,-1.171128],[129.48053030000005,-1.16865],[129.46980330000008,-1.160621],[129.46861330000002,-1.15722],[129.46450830000003,-1.155593],[129.45077530000003,-1.159868],[129.44720530000006,-1.16337],[129.44743430000005,-1.165676],[129.4452973000001,-1.168716],[129.4455723000001,-1.172172],[129.44961630000012,-1.180067],[129.45622330000003,-1.184579],[129.46383730000002,-1.184603]]],[[[131.0536813000001,-1.190325],[131.05744930000003,-1.18723],[131.06056230000002,-1.175343],[131.05676330000006,-1.15349],[131.05339130000004,-1.154278],[131.0476083000001,-1.165877],[131.0467993000001,-1.170183],[131.0536813000001,-1.190325]]],[[[129.35699660000012,-1.153642899999966],[129.35687330000007,-1.159701],[129.35891730000003,-1.165182],[129.35827630000006,-1.167534],[129.35540830000002,-1.167698],[129.35432430000003,-1.170349],[129.35670530000004,-1.173803],[129.3638463000001,-1.176125],[129.36923230000002,-1.174477],[129.37493930000005,-1.176972],[129.3799143000001,-1.17508],[129.38086020000003,-1.171295099999952],[129.37823530000003,-1.166849],[129.37893730000008,-1.161729],[129.37661830000002,-1.156827],[129.3634803000001,-1.151603],[129.35699660000012,-1.153642899999966]]],[[[129.41198730000008,-1.148529],[129.40782230000002,-1.146441],[129.40545730000008,-1.151046],[129.4061283000001,-1.153406],[129.40818830000012,-1.153587],[129.40974530000005,-1.15175],[129.41362030000005,-1.153883],[129.41426130000002,-1.151929],[129.41198730000008,-1.148529]]],[[[129.7928323000001,-1.148696],[129.7931833,-1.14657],[129.7911233000001,-1.14639],[129.79077230000007,-1.148977],[129.7928323000001,-1.148696]]],[[[129.42622430000006,-1.149266],[129.4255373000001,-1.145747],[129.4235543000001,-1.144997],[129.42266930000005,-1.14914],[129.4263003000001,-1.157723],[129.4283603,-1.159577],[129.43158030000006,-1.15129],[129.43034430000012,-1.147938],[129.42712430000006,-1.152377],[129.42622430000006,-1.149266]]],[[[129.35699660000012,-1.153642899999966],[129.3565073000001,-1.150257],[129.3526313000001,-1.147717],[129.3394323000001,-1.144628],[129.3176883000001,-1.147322],[129.30978430000005,-1.153059],[129.30770930000006,-1.157076],[129.3100892000001,-1.160431099999926],[129.3133703000001,-1.158133],[129.31684930000006,-1.158087],[129.33009430000004,-1.164685],[129.33192530000008,-1.163717],[129.33342030000006,-1.160035],[129.34063830000002,-1.160403],[129.35037330000011,-1.153869],[129.35699660000012,-1.153642899999966]]],[[[129.78213530000005,-1.148266],[129.7834633000001,-1.145904],[129.7724313000001,-1.144144599999947],[129.77681030000008,-1.148476],[129.78213530000005,-1.148266]]],[[[129.43127530000004,-1.142253],[129.42910830000005,-1.141558],[129.4273233,-1.143051],[129.42880330000003,-1.14495],[129.43167130000006,-1.145459],[129.43127530000004,-1.142253]]],[[[129.7484743000001,-1.143266],[129.74733030000004,-1.141077],[129.74017330000004,-1.144626],[129.72891330000004,-1.143553],[129.72175630000004,-1.146875],[129.71116630000006,-1.148109],[129.69586230000004,-1.159575],[129.67794830000003,-1.163317],[129.67416430000003,-1.165381],[129.67820830000005,-1.170861],[129.6817483000001,-1.172081],[129.6842653000001,-1.170932],[129.68617330000006,-1.16582],[129.6958323,-1.166477],[129.69078130000003,-1.172856],[129.69235330000004,-1.179251],[129.69549630000006,-1.183058],[129.70834430000002,-1.188852],[129.71606530000008,-1.185475],[129.72065830000008,-1.180254],[129.7331703000001,-1.170906],[129.73919730000011,-1.160682],[129.7462842000001,-1.152702399999953],[129.74885630000006,-1.146206],[129.7484743000001,-1.143266]]],[[[129.44584730000008,-1.144718],[129.44403130000012,-1.140621],[129.4423683000001,-1.142349],[129.4436803000001,-1.144945],[129.44584730000008,-1.144718]]],[[[129.80200050000008,-1.145881399999951],[129.80542030000004,-1.143726],[129.80441330000008,-1.141248],[129.7995453000001,-1.141403],[129.79621930000008,-1.143756],[129.7962043000001,-1.14675],[129.79946930000006,-1.14722],[129.80200050000008,-1.145881399999951]]],[[[129.88772630000005,-1.141273],[129.88305730000002,-1.135151],[129.8656933000001,-1.131132],[129.85089130000006,-1.144271],[129.84350630000006,-1.14459],[129.8370523000001,-1.143073],[129.83068930000002,-1.145526],[129.82811030000005,-1.149498],[129.8106693000001,-1.14869],[129.80128530000002,-1.152348],[129.78834530000006,-1.154957],[129.77825930000006,-1.159185],[129.7649993000001,-1.15938],[129.75164830000006,-1.164522],[129.74707030000002,-1.167898],[129.7342533000001,-1.183977],[129.7333843,-1.187369],[129.7343453000001,-1.193366],[129.74121130000003,-1.206046],[129.74697930000002,-1.209173],[129.75303730000007,-1.209361],[129.7922063000001,-1.193075],[129.79713430000004,-1.193091],[129.80632030000004,-1.196688],[129.81079130000012,-1.196126],[129.8108833000001,-1.200504],[129.8166503000001,-1.202248],[129.82815630000005,-1.198996],[129.8354653,-1.200943699999925],[129.86958330000004,-1.190606],[129.88609330000008,-1.182649],[129.89552330000004,-1.18251],[129.8977513000001,-1.184418],[129.88253830000008,-1.199394],[129.87097230000006,-1.203966],[129.87107930000002,-1.206037],[129.87472630000002,-1.208695],[129.87146030000008,-1.212197],[129.86784430000012,-1.213392],[129.8665473000001,-1.211837],[129.86677630000008,-1.20953],[129.8652353000001,-1.208147],[129.86566230000005,-1.201181],[129.8638923000001,-1.199509],[129.8522653000001,-1.204822],[129.85035730000004,-1.209825],[129.84417730000007,-1.210786],[129.8388523000001,-1.216007],[129.82837030000007,-1.219376],[129.82130530000006,-1.227474],[129.81922930000007,-1.232242],[129.82054230000006,-1.23501],[129.8300173,-1.238145],[129.8388523000001,-1.228617],[129.8437203000001,-1.227765],[129.8502353,-1.230612],[129.85229530000004,-1.230214],[129.87600730000008,-1.2205],[129.88580430000002,-1.213449],[129.92671230000008,-1.176674],[129.93060330000003,-1.17565],[129.9235083000001,-1.191573],[129.92218030000004,-1.19767],[129.92324930000007,-1.200664],[129.93199230000005,-1.204035],[129.94006430000002,-1.185923],[129.94676230000005,-1.18214],[129.9623263000001,-1.177874],[129.9641113,-1.176444],[129.9649363000001,-1.16861],[129.9665993000001,-1.166954],[129.97116130000006,-1.169666],[129.97357230000011,-1.169105],[129.97816530000011,-1.16221],[129.9779513000001,-1.15927],[129.9729923000001,-1.156549],[129.93794330000003,-1.153513],[129.91731330000005,-1.148147],[129.90857030000006,-1.150312],[129.89450130000012,-1.148888],[129.89085430000011,-1.147152],[129.88772630000005,-1.141273]]],[[[129.8514103000001,-1.139721],[129.85521030000007,-1.133514],[129.85316530000011,-1.12977],[129.84135530000003,-1.138313],[129.84008830000005,-1.140611],[129.8514103000001,-1.139721]]],[[[131.06987030000005,-1.14548],[131.07325830000002,-1.134968],[131.07264730000009,-1.129505],[131.07046530000002,-1.129325],[131.0675513000001,-1.132654],[131.0652013,-1.138625],[131.0678713000001,-1.147661],[131.06987030000005,-1.14548]]],[[[129.77045410000005,-1.146702799999957],[129.77121780000004,-1.145081299999958],[129.768164,-1.14301],[129.77593720000004,-1.141693199999963],[129.78077430000008,-1.136937],[129.781281,-1.133170499999949],[129.77912240000012,-1.128180499999928],[129.774292,-1.126343899999938],[129.7705724000001,-1.127168499999925],[129.76656750000006,-1.130984199999943],[129.7608421000001,-1.133634],[129.7557825,-1.140273699999966],[129.7569969000001,-1.145483799999965],[129.75882940000008,-1.14726],[129.76210520000006,-1.146822399999962],[129.7635279000001,-1.149013399999944],[129.77045410000005,-1.146702799999957]]],[[[131.09608530000003,-1.127281],[131.0976723000001,-1.122369],[131.0944833000001,-1.123826],[131.09333830000003,-1.127906],[131.09608530000003,-1.127281]]],[[[131.10771230000012,-1.11369],[131.1075443000001,-1.111392],[131.10553030000005,-1.112307],[131.10575930000005,-1.11455],[131.10771230000012,-1.11369]]],[[[131.08479330000011,-1.111726],[131.0858773000001,-1.107185],[131.0837103,-1.107927],[131.0816963000001,-1.111998],[131.08369530000004,-1.113562],[131.08479330000011,-1.111726]]],[[[131.17210430000011,-1.091705],[131.1773683,-1.08775],[131.1763463000001,-1.085389],[131.1663363,-1.092464],[131.17210430000011,-1.091705]]],[[[131.0997013000001,-1.085271],[131.10130330000004,-1.083552],[131.09489530000008,-1.083301],[131.0963753000001,-1.085951],[131.0997013000001,-1.085271]]],[[[131.07940730000007,-1.082212],[131.0753793,-1.081863],[131.0763703,-1.083986],[131.07940730000007,-1.082212]]],[[[131.08164880000004,-1.078925699999957],[131.08386330000008,-1.083612],[131.0910043,-1.083166],[131.09243830000003,-1.081221],[131.09233130000007,-1.078924],[131.0903323000001,-1.077477],[131.08164880000004,-1.078925699999957]]],[[[131.1644593000001,-1.079776],[131.16893030000006,-1.073642],[131.17202830000008,-1.064685],[131.17231830000003,-1.062496],[131.17010530000005,-1.059675],[131.16676330000007,-1.06731],[131.16093530000012,-1.071781],[131.16001930000004,-1.074477],[131.15902730000005,-1.081316],[131.1644593000001,-1.079776]]],[[[131.15870730000006,-1.035147],[131.15664730000003,-1.035319],[131.1533823000001,-1.039671],[131.15309230000003,-1.041689],[131.1548623000001,-1.04376],[131.15434330000005,-1.050028],[131.15336630000002,-1.055085],[131.15083330000004,-1.058297],[131.15072730000009,-1.060477],[131.15402230000007,-1.064049],[131.15402230000007,-1.069974],[131.15533530000005,-1.07153],[131.16093530000012,-1.068905],[131.1662143000001,-1.061558],[131.16497830000003,-1.058419],[131.16696230000002,-1.055641],[131.16708430000006,-1.050006],[131.1641853000001,-1.043675],[131.1653903,-1.039025],[131.16401730000007,-1.036665],[131.1603093000001,-1.036937],[131.15870730000006,-1.035147]]],[[[131.08164880000004,-1.078925699999957],[131.08508330000006,-1.075163],[131.09176630000002,-1.07375],[131.09428430000003,-1.074273],[131.09478830000012,-1.079384],[131.0969543000001,-1.080541],[131.09986930000002,-1.0794],[131.10696430000007,-1.08023],[131.10908530000006,-1.074087],[131.10669030000008,-1.072008],[131.10183730000006,-1.071078],[131.09756530000004,-1.063354],[131.0995643000001,-1.063019],[131.10914630000002,-1.069203],[131.11161830000003,-1.069437],[131.11264130000006,-1.065592],[131.10858230000008,-1.058713],[131.1133883000001,-1.062254],[131.11715730000003,-1.069173],[131.11647030000006,-1.071814],[131.11818030000006,-1.074229],[131.12051430000008,-1.074355],[131.12973030000012,-1.068861],[131.1308143000001,-1.067024],[131.1291053000001,-1.064374],[131.1290593000001,-1.059146],[131.13346930000012,-1.058412],[131.13066130000004,-1.05455],[131.13867230000005,-1.05642],[131.1360023000001,-1.043648],[131.12907430000007,-1.05276],[131.12268130000007,-1.048547],[131.1175393000001,-1.048359],[131.1194763000001,-1.046467],[131.1170353000001,-1.04376],[131.12205530000006,-1.043834],[131.1255953000001,-1.047062],[131.1281133000001,-1.046609],[131.12977630000012,-1.044772],[131.13087530000007,-1.036558],[131.1273963000001,-1.033385],[131.12808330000007,-1.031431],[131.13031030000002,-1.031267],[131.12893730000008,-1.026898],[131.1317603000001,-1.02213],[131.1373453000001,-1.023874],[131.1387333,-1.021983],[131.14318930000002,-1.021303],[131.14720230000012,-1.015911],[131.14395230000002,-1.007219],[131.1393283000001,-1.00675],[131.13818430000003,-1.00439],[131.1437383000001,-1.00228],[131.14488230000006,-1.000136],[131.14309730000002,-0.995559],[131.13891630000012,-0.993869],[131.13490330000002,-0.996512],[131.13220230000002,-0.997019],[131.13003630000003,-0.995283],[131.11909530000003,-0.998589],[131.10081530000002,-0.99836],[131.0937043,-1.000117],[131.0917823000001,-1.002171],[131.09034730000008,-1.004813],[131.08973730000002,-1.022687],[131.0823673000001,-1.028244],[131.0815583000001,-1.03065],[131.0845193,-1.034403],[131.0838933000001,-1.036529],[131.07563830000004,-1.050933],[131.07737830000008,-1.070191],[131.07626430000005,-1.076182],[131.07901030000005,-1.078593],[131.08164880000004,-1.078925699999957]]],[[[131.1503603000001,-0.99742],[131.15087930000004,-0.995122],[131.14894130000005,-0.99373],[131.14830130000007,-0.998226],[131.1503603000001,-0.99742]]],[[[130.66050730000006,-0.950732],[130.66160630000002,-0.947394],[130.66018730000008,-0.944509],[130.65515230000005,-0.941145],[130.64668330000006,-0.938118],[130.6384283000001,-0.93803],[130.63601730000005,-0.939469],[130.63601730000005,-0.944888],[130.6374363000001,-0.94714],[130.64825530000007,-0.951215],[130.66050730000006,-0.950732]]],[[[131.09500130000004,-0.952193],[131.09666530000004,-0.946548],[131.10791030000007,-0.940185],[131.10832330000005,-0.936259],[131.10029630000008,-0.939409],[131.0969093000001,-0.942513],[131.09225530000003,-0.950574],[131.0925913000001,-0.952818],[131.09500130000004,-0.952193]]],[[[131.1162263000001,-0.930403],[131.12381030000006,-0.922585],[131.12953230000005,-0.919019],[131.13075330000004,-0.914351],[131.12886130000004,-0.91285],[131.12628230000007,-0.916877],[131.11499030000004,-0.921168],[131.1134803000001,-0.929581],[131.11445730000003,-0.931381],[131.1162263000001,-0.930403]]],[[[131.02368720000004,-1.195542099999955],[131.0312963,-1.19548],[131.0432743,-1.186955],[131.04385430000002,-1.180749],[131.0417023000001,-1.169307],[131.04487630000006,-1.153965],[131.04969830000005,-1.141046],[131.05195630000003,-1.123288],[131.05654930000003,-1.114793],[131.06123430000002,-1.111195],[131.0662843,-1.101601],[131.0670933,-1.097069],[131.06533930000012,-1.085853],[131.07084730000008,-1.073504],[131.0724643000001,-1.064195],[131.0717013000001,-1.041662],[131.0769203000001,-1.030471],[131.0770573000001,-1.022249],[131.08003330000008,-1.014495],[131.07740830000012,-1.011527],[131.08325230000003,-1.009962],[131.07875130000002,-1.003569],[131.0682683000001,-1.009687],[131.05871630000001,-1.00697],[131.0625153000001,-1.00352],[131.05993730000012,-1.000111],[131.06330930000001,-0.997197],[131.06274430000008,-0.989933],[131.0655673000001,-0.980887],[131.06723030000012,-0.979565],[131.07536330000005,-0.98063],[131.07702730000005,-0.978847],[131.07870530000002,-0.968526],[131.07778930000006,-0.966672],[131.07573030000003,-0.966437],[131.069594,-0.967623],[131.06530830000008,-0.963519],[131.05838030000007,-0.962979],[131.05609230000005,-0.961469],[131.05680930000005,-0.949999],[131.05050730000005,-0.943976],[131.05270430000007,-0.938331],[131.05149930000005,-0.9355],[131.04766930000005,-0.928681],[131.04005530000006,-0.927499],[131.0380103000001,-0.920227],[131.0303503,-0.91236],[131.02433830000007,-0.912108],[131.01344330000006,-0.919683],[130.99395830000003,-0.92585],[130.99052430000006,-0.925616],[130.98719830000005,-0.923238],[130.98526030000005,-0.919367],[130.9830783000001,-0.919242],[130.97638030000007,-0.924527],[130.9694373000001,-0.926239],[130.96662930000002,-0.930961],[130.96856730000002,-0.932055],[130.9640353000001,-0.9362],[130.9591683000001,-0.936645],[130.95739830000002,-0.935487],[130.95710830000007,-0.933289],[130.9548803,-0.932476],[130.95018030000006,-0.933735],[130.94490130000008,-0.940286],[130.93589830000008,-0.942551],[130.92581230000008,-0.932926],[130.9224253000001,-0.927069],[130.92425630000002,-0.920781],[130.9223793000001,-0.919624],[130.92266930000005,-0.916802],[130.91865530000007,-0.913384],[130.92050230000007,-0.90479],[130.92492730000004,-0.898113],[130.92504930000007,-0.893499],[130.91853330000004,-0.890254],[130.9182283,-0.895266],[130.91583330000003,-0.896126],[130.90838630000007,-0.894889],[130.90052830000002,-0.89879],[130.8973853000001,-0.895607],[130.90034530000003,-0.891373],[130.89550830000007,-0.890696],[130.88444530000004,-0.896951],[130.86387630000002,-0.895438],[130.85795630000007,-0.905399],[130.85035730000004,-0.902553],[130.8483583000001,-0.89775],[130.84588630000007,-0.896358],[130.84021030000008,-0.901588],[130.8378603000001,-0.901408],[130.83215430000007,-0.897014],[130.83003230000008,-0.897575],[130.83036830000003,-0.902134],[130.8258823000001,-0.907717],[130.81860430000006,-0.910813],[130.81213430000003,-0.908653],[130.80531330000008,-0.913767],[130.7966623000001,-0.91547],[130.79722630000003,-0.917551],[130.79051230000005,-0.930732],[130.78820830000006,-0.931538],[130.7847753000001,-0.93049],[130.78250130000004,-0.92633],[130.77825930000006,-0.929027699999949],[130.7632453000001,-0.931854],[130.75534130000005,-0.931776],[130.74714730000005,-0.929381],[130.7402803000001,-0.930288],[130.72009330000003,-0.943484],[130.70513930000004,-0.943037],[130.69143730000008,-0.951128],[130.68457030000002,-0.953121],[130.64825530000007,-0.955141],[130.64617930000009,-0.955992],[130.6433723,-0.960426],[130.6359873,-0.960175],[130.63432330000012,-0.961786],[130.63597130000005,-0.967267],[130.6384283000001,-0.966985],[130.6396333,-0.97045],[130.6396793,-0.972648],[130.63578830000006,-0.975345],[130.6350413,-0.979497],[130.64331130000005,-0.992791],[130.6499023,-0.996615],[130.6620643000001,-1.008126],[130.67382830000008,-1.011614],[130.67680430000007,-1.014209],[130.67942830000004,-1.02345],[130.6853033000001,-1.026535],[130.69429030000003,-1.047889],[130.6974953,-1.051407],[130.70549030000006,-1.053331],[130.70691030000012,-1.055573],[130.70787130000008,-1.060349],[130.70158430000004,-1.064648],[130.7012333,-1.067579],[130.7104193,-1.074848],[130.71464630000003,-1.075381],[130.7157903000001,-1.077624],[130.7180793000001,-1.077858],[130.71847630000002,-1.079929],[130.70874130000004,-1.085134],[130.70748930000002,-1.087604],[130.71543930000007,-1.085729],[130.71823230000007,-1.087347],[130.71937630000002,-1.090341],[130.71724030000007,-1.096655],[130.71409630000005,-1.098375],[130.7077372000001,-1.097947699999963],[130.69236390000003,-1.094411],[130.67884450000008,-1.110559199999955],[130.69762150000008,-1.1225765],[130.69461720000004,-1.131589399999939],[130.70363010000005,-1.135344799999928],[130.70776110000008,-1.140977899999939],[130.725787,-1.153370799999948],[130.7363021000001,-1.163510299999928],[130.73442440000008,-1.1736499],[130.7276647000001,-1.181911799999966],[130.7295424,-1.185291699999937],[130.73415970000008,-1.186977099999979],[130.7340263000001,-1.184441599999957],[130.742692,-1.172394199999928],[130.75692950000007,-1.167145399999924],[130.76708050000002,-1.166669599999977],[130.77198550000003,-1.167856599999936],[130.7801052000001,-1.166059],[130.79384720000007,-1.170589299999961],[130.8084216000001,-1.177421099999947],[130.81559310000011,-1.179095399999937],[130.82185750000008,-1.186757799999953],[130.83096650000005,-1.190629199999933],[130.835521,-1.197460899999953],[130.83754310000006,-1.203402599999947],[130.8478424000001,-1.205874399999971],[130.85321970000007,-1.202737699999943],[130.8612856000001,-1.202737699999943],[130.86800720000008,-1.198704699999951],[130.87338440000008,-1.198256599999979],[130.88525920000006,-1.201169299999947],[130.8917567000001,-1.197136399999977],[130.90273530000002,-1.1973604],[130.9181009,-1.201391699999931],[130.92192510000007,-1.192588299999954],[130.9316715000001,-1.182505799999944],[130.94040960000007,-1.181161499999973],[130.946123,-1.177464599999951],[130.95049210000002,-1.177464599999951],[130.95923030000006,-1.174439799999959],[130.97939530000008,-1.183514099999968],[130.998552,-1.181161499999973],[131.00695410000003,-1.183850099999972],[131.02368720000004,-1.195542099999955]]],[[[131.02906830000006,-0.894296],[131.03262430000007,-0.888596],[131.03033530000005,-0.884553],[131.0275273000001,-0.884491],[131.0256813000001,-0.894695],[131.02780230000008,-0.895852],[131.02906830000006,-0.894296]]],[[[129.76413910000008,-0.848633499999949],[129.7599953,-0.845279],[129.75924730000008,-0.861495],[129.76413910000008,-0.848633499999949]]],[[[129.76413910000008,-0.848633499999949],[129.76881430000003,-0.846172],[129.76847830000008,-0.843648],[129.7660833000001,-0.843522],[129.76413910000008,-0.848633499999949]]],[[[129.90257330000009,-0.846922],[129.9014893000001,-0.840545],[129.89926230000003,-0.837262],[129.8954933000001,-0.834848],[129.8933263,-0.835419],[129.89074730000004,-0.83949],[129.8918923000001,-0.844492],[129.9007573,-0.849392],[129.90257330000009,-0.846922]]],[[[130.89952130000006,-0.820853],[130.90692230000002,-0.814302],[130.90606730000002,-0.812457],[130.8966683000001,-0.813753],[130.89201430000003,-0.819155],[130.89808730000004,-0.822636],[130.89952130000006,-0.820853]]],[[[130.52606230000004,-0.80194],[130.52789330000007,-0.800501],[130.52092030000006,-0.797709],[130.52114930000005,-0.795465],[130.51902830000006,-0.795511],[130.51695330000007,-0.800243],[130.50836230000004,-0.803267],[130.5086523000001,-0.805465],[130.5119023000001,-0.808874],[130.5122993000001,-0.812275],[130.5089733000001,-0.817233],[130.50953730000003,-0.820634],[130.5161753000001,-0.821121],[130.51525930000003,-0.82331],[130.51944030000004,-0.824702],[130.51966930000003,-0.827072],[130.52229330000011,-0.828346],[130.5370183000001,-0.82788],[130.5422373,-0.822812],[130.54443430000003,-0.810075],[130.54873730000008,-0.803452],[130.54910330000007,-0.797455],[130.53334130000007,-0.798211],[130.53065530000003,-0.800338],[130.53109830000005,-0.802536],[130.5288703000001,-0.803333],[130.52606230000004,-0.80194]]],[[[130.50614930000006,-0.792992],[130.50186230000008,-0.788887],[130.50042830000007,-0.790497],[130.50288430000012,-0.794658],[130.50534130000005,-0.795299],[130.50614930000006,-0.792992]]],[[[130.75479130000008,-0.786584],[130.75141930000007,-0.785364],[130.75198430000012,-0.787905],[130.75479130000008,-0.786584]]],[[[130.7107393000001,-0.793483],[130.7066813,-0.785506],[130.7043923000001,-0.784575],[130.70761130000005,-0.780838],[130.7058263,-0.779617],[130.70239330000004,-0.782613],[130.69967730000008,-0.795286],[130.7021333,-0.796046],[130.7065593000001,-0.793873],[130.70958030000008,-0.795726],[130.7107393000001,-0.793483]]],[[[129.7907113000001,-0.774188],[129.78437830000007,-0.76907],[129.77677930000004,-0.770325],[129.77723730000002,-0.775034],[129.78375330000006,-0.775737],[129.79014630000006,-0.779652],[129.79414430000008,-0.77747],[129.7907113000001,-0.774188]]],[[[130.74488830000007,-0.785113],[130.74792530000002,-0.782353],[130.74511730000006,-0.781476],[130.74272230000008,-0.776909],[130.74760530000003,-0.769951],[130.7468573000001,-0.767817],[130.74440030000005,-0.76798],[130.7346963000001,-0.778902],[130.73692330000006,-0.782429],[130.7332613000001,-0.786347],[130.73124730000006,-0.786049],[130.72901930000012,-0.782006],[130.73011830000007,-0.777049],[130.72909630000004,-0.775313],[130.7238933000001,-0.772356],[130.7156993000001,-0.773888],[130.7178043,-0.777641],[130.71864330000005,-0.785312],[130.7219093000001,-0.788784],[130.7255563000001,-0.796815],[130.72773830000006,-0.798262],[130.73013330000003,-0.798731],[130.73518430000001,-0.793737],[130.74063130000002,-0.792658],[130.74247830000002,-0.786606],[130.74488830000007,-0.785113]]],[[[130.1092843,-0.762536],[130.11373930000002,-0.758292],[130.11363230000006,-0.755994],[130.1092843,-0.756846],[130.1061403000001,-0.759887],[130.1055153000001,-0.762356],[130.10728530000006,-0.763912],[130.1092843,-0.762536]]],[[[130.78663730000005,-0.756116],[130.7844553000001,-0.756108],[130.7836003000001,-0.754027],[130.78147930000011,-0.754716],[130.78118930000005,-0.757248],[130.77174430000002,-0.754339],[130.7699133000001,-0.756176],[130.7693183,-0.760274],[130.77412430000004,-0.766686],[130.7716683000001,-0.767428],[130.7689673000001,-0.765747],[130.7672583000001,-0.761704],[130.76519830000007,-0.762564],[130.7655953000001,-0.765504],[130.76907430000006,-0.770188],[130.76397730000008,-0.774505],[130.7645883,-0.780791],[130.76110930000004,-0.77882],[130.7594613000001,-0.770969],[130.7572183000001,-0.77021],[130.7564093000001,-0.777935],[130.7622993000001,-0.785279],[130.76588530000004,-0.799199],[130.7678833000001,-0.800871],[130.77320930000008,-0.80153],[130.77906830000006,-0.792889],[130.77613930000007,-0.790712],[130.78164730000003,-0.784937],[130.78595030000008,-0.78328],[130.78704830000004,-0.780747],[130.7840123000001,-0.778894],[130.7831423,-0.78102],[130.7785033,-0.784124],[130.77673430000004,-0.782849],[130.7776033,-0.778236],[130.7730113,-0.77897],[130.7715303000001,-0.777523],[130.77438430000007,-0.77179],[130.7821963,-0.769424],[130.78213530000005,-0.762892],[130.78668230000005,-0.761308],[130.78663730000005,-0.756116]]],[[[130.81123430000002,-0.766809],[130.81370630000004,-0.76186],[130.8076023000001,-0.75486],[130.80313130000002,-0.753225],[130.7975163000001,-0.755859],[130.79596030000005,-0.758745],[130.79641730000003,-0.761395],[130.80059830000005,-0.763601],[130.8005373000001,-0.766143],[130.79995730000007,-0.768504],[130.79708930000004,-0.767994],[130.79496830000005,-0.771771],[130.79840130000002,-0.775479],[130.8072823000001,-0.773368],[130.8100743000001,-0.777763],[130.81099030000007,-0.782385],[130.81355330000008,-0.783488],[130.81280530000004,-0.785849],[130.80914330000007,-0.788492],[130.81326330000002,-0.790752],[130.81326330000002,-0.792886],[130.8060313000001,-0.796037],[130.80842630000006,-0.799329],[130.8133553,-0.801769],[130.81448430000012,-0.810598],[130.8180853,-0.815807],[130.81887930000005,-0.82013],[130.81727630000012,-0.822781],[130.81343130000005,-0.82271],[130.81414430000007,-0.819844599999954],[130.81292730000007,-0.813131],[130.81105130000003,-0.811512],[130.8111123000001,-0.807071],[130.8094483000001,-0.80585],[130.80745030000003,-0.807579],[130.80714430000012,-0.803289],[130.80085830000007,-0.80427],[130.80023230000006,-0.807328],[130.8014833000001,-0.809001],[130.79988130000004,-0.810955],[130.79873730000008,-0.808758],[130.79621930000008,-0.809211],[130.7949533000001,-0.814919],[130.78830030000006,-0.820095],[130.78622530000007,-0.813874],[130.79025330000002,-0.813636],[130.79066530000011,-0.80383],[130.7960663,-0.796637],[130.79612830000008,-0.794566],[130.79348830000004,-0.79473],[130.78672830000005,-0.798974],[130.7776033,-0.808864],[130.7769783000001,-0.80644],[130.77267530000006,-0.806605],[130.77003530000002,-0.8149],[130.7665263,-0.818981],[130.76321430000007,-0.817644],[130.75875930000007,-0.812263],[130.75251830000002,-0.809995],[130.7452393000001,-0.811074],[130.73313930000006,-0.821236],[130.72953830000006,-0.816787],[130.72427430000005,-0.815043],[130.71917830000007,-0.815596],[130.71983430000012,-0.826849],[130.7137613000001,-0.830985],[130.70298830000002,-0.829912],[130.7017373000001,-0.828122],[130.70684830000005,-0.82433],[130.7082223000001,-0.820412],[130.70691030000012,-0.818332],[130.71206730000006,-0.812867],[130.70068430000003,-0.807407],[130.69862430000012,-0.807571],[130.69558830000005,-0.811136],[130.68235830000003,-0.807812],[130.6777813000001,-0.80595],[130.67366130000005,-0.799646],[130.6708533000001,-0.799231],[130.6682743,-0.799576],[130.67216530000007,-0.803907],[130.66992230000005,-0.810132],[130.6824653000001,-0.813981],[130.68623430000002,-0.81976],[130.68484530000012,-0.822818],[130.6771093000001,-0.823888],[130.6762543000001,-0.822034],[130.6713413000001,-0.822198],[130.67036530000007,-0.819765],[130.66291830000011,-0.820302],[130.66496330000007,-0.82742],[130.6616983,-0.828506],[130.65992830000005,-0.82706],[130.65913430000012,-0.822211],[130.65678430000003,-0.820819],[130.64825530000007,-0.821889],[130.63835230000007,-0.816493],[130.63749730000006,-0.813725],[130.64025930000003,-0.812231],[130.6460883000001,-0.815079],[130.6466223000001,-0.804577],[130.63957230000005,-0.803575],[130.63516330000004,-0.806326],[130.63151630000004,-0.799399],[130.63249230000008,-0.797553],[130.63484230000006,-0.797154],[130.63575830000002,-0.794277],[130.63421730000005,-0.792541],[130.63153130000012,-0.792298],[130.62407030000008,-0.797357],[130.62600730000008,-0.799554],[130.62623630000007,-0.802612],[130.62463430000003,-0.805262],[130.61912630000006,-0.808928],[130.6192933000001,-0.811533],[130.62112430000002,-0.81269],[130.61956830000008,-0.814762],[130.6121223,-0.818483],[130.60525530000007,-0.81569],[130.60020530000008,-0.822774],[130.59153830000002,-0.82626],[130.58505330000003,-0.832585],[130.58242830000006,-0.832984],[130.57762230000003,-0.830317],[130.57728630000008,-0.827947],[130.5780803,-0.82593],[130.58387830000004,-0.823757],[130.58468730000004,-0.820762],[130.58348130000002,-0.8188],[130.58647230000008,-0.811137],[130.58316130000003,-0.808587],[130.5771493000001,-0.808164],[130.57536330000005,-0.810001],[130.57244930000002,-0.809071],[130.5744023000001,-0.799961],[130.5728613000001,-0.797076],[130.56657430000007,-0.794111],[130.56216430000006,-0.795831],[130.55812130000004,-0.810007],[130.55799930000012,-0.813173],[130.56253130000005,-0.814637],[130.56440830000008,-0.816717],[130.56451430000004,-0.822253],[130.5625153000001,-0.824153],[130.55810630000008,-0.821948],[130.55288730000007,-0.821814],[130.55180430000007,-0.824519],[130.54824930000007,-0.827044],[130.5476083000001,-0.830047],[130.55133130000002,-0.832479],[130.55131530000006,-0.834559],[130.5471963000001,-0.838695],[130.54266430000007,-0.840931],[130.53659130000005,-0.840164],[130.53573630000005,-0.83802],[130.53717130000007,-0.836066],[130.53569130000005,-0.83433],[130.5337373000001,-0.83519],[130.5337833000001,-0.839866],[130.53097530000002,-0.840663],[130.5272073000001,-0.837309],[130.51821930000006,-0.834915],[130.51393230000008,-0.83213],[130.5044713000001,-0.833535],[130.50019930000008,-0.829738],[130.49157730000002,-0.829777],[130.48689330000002,-0.832818],[130.48484830000007,-0.832701],[130.47923330000003,-0.820337],[130.48054530000002,-0.818039],[130.4943703,-0.808347],[130.49733030000004,-0.80214],[130.50209130000007,-0.800537],[130.50227430000007,-0.798158],[130.48448230000008,-0.791661],[130.47842430000003,-0.791826],[130.47003230000007,-0.799174],[130.47071930000004,-0.801362],[130.47494530000006,-0.802166],[130.47198530000003,-0.808888],[130.47226030000002,-0.810959],[130.4742583000001,-0.811483],[130.4737553000001,-0.815382],[130.47723430000008,-0.818095],[130.47615130000008,-0.819986],[130.46701130000008,-0.822214],[130.46142630000008,-0.819964],[130.4584513000001,-0.812719],[130.46107530000006,-0.802614],[130.45616230000007,-0.802661],[130.4507913000001,-0.807538],[130.45091330000002,-0.813228],[130.44589330000008,-0.834659],[130.44612230000007,-0.837074],[130.4512033000001,-0.839786],[130.45361430000003,-0.843177],[130.45275930000003,-0.849039],[130.45498730000008,-0.854611],[130.45384330000002,-0.857316],[130.45184330000006,-0.85823],[130.44715930000007,-0.85702],[130.44595330000004,-0.85863],[130.4492193000001,-0.862139],[130.44955530000004,-0.864436],[130.44780030000004,-0.866789],[130.44230730000004,-0.865633],[130.4373323000001,-0.859302],[130.43248030000007,-0.864352],[130.43670730000008,-0.867923],[130.4370583000001,-0.87459],[130.4387673000001,-0.876027],[130.4434513000001,-0.876894],[130.44625930000007,-0.879028],[130.45573430000002,-0.880707],[130.45744430000002,-0.879621],[130.4575043000001,-0.877378],[130.4649363000001,-0.880487],[130.46608030000004,-0.882332],[130.45991530000003,-0.886233],[130.4608313000001,-0.890538],[130.4591683000001,-0.891751],[130.4561473000001,-0.888125],[130.4519203000001,-0.889845],[130.4494023000001,-0.895354],[130.44512930000008,-0.896496],[130.4357003,-0.894011],[130.43112230000008,-0.895044],[130.42541530000005,-0.891247],[130.42353830000002,-0.892966],[130.4231423000001,-0.900718],[130.41708430000006,-0.906057],[130.4148563000001,-0.905651],[130.41227730000003,-0.89875],[130.4106303000001,-0.897548],[130.4080513,-0.8999],[130.40708930000005,-0.907997],[130.40475530000003,-0.913805],[130.38974030000008,-0.923037],[130.3888703,-0.926411],[130.3940133000001,-0.924573],[130.4012613000001,-0.924589],[130.40200830000003,-0.920563],[130.40406830000006,-0.91982],[130.40875330000006,-0.919421],[130.41502430000003,-0.922187],[130.4169773000001,-0.921562],[130.4163363,-0.919201],[130.42176830000005,-0.911393],[130.42387430000008,-0.910587],[130.42759730000012,-0.913471],[130.4297643000001,-0.913471],[130.43386930000008,-0.908937],[130.4434053000001,-0.905786],[130.44780030000004,-0.902112],[130.45306430000005,-0.900455],[130.45802330000004,-0.900978],[130.4629983000001,-0.903862],[130.4640813000001,-0.907887],[130.45991530000003,-0.913967],[130.47088630000007,-0.920078],[130.47300730000006,-0.918874],[130.4727633000001,-0.915708],[130.46614130000012,-0.903236],[130.46801830000004,-0.89789],[130.47287030000007,-0.899562],[130.4769903,-0.905196],[130.48710730000005,-0.908313],[130.48733530000004,-0.905843],[130.4896093000001,-0.905047],[130.4957283000001,-0.905859],[130.50019930000008,-0.901515],[130.50499030000003,-0.902183],[130.51501530000007,-0.897087],[130.51770030000012,-0.897837],[130.52348330000007,-0.903054],[130.51849430000004,-0.908628],[130.5125283000001,-0.911552],[130.50679030000003,-0.917415],[130.50679030000003,-0.919613],[130.5087893000001,-0.92002],[130.51556430000005,-0.914391],[130.52421630000003,-0.911186],[130.52821430000006,-0.912062],[130.52998430000002,-0.916512],[130.53216630000009,-0.918022],[130.53651430000002,-0.917685],[130.54293930000006,-0.914942],[130.5449533000001,-0.907334],[130.54655530000002,-0.905832],[130.55200230000003,-0.907703],[130.55833530000007,-0.915679],[130.5616003,-0.915343],[130.5683143000001,-0.910809],[130.5712893000001,-0.910645],[130.57730130000004,-0.91465],[130.57959030000006,-0.914541],[130.58148230000006,-0.912876],[130.58148230000006,-0.910741],[130.58418330000006,-0.909248],[130.59059230000003,-0.912954],[130.5972293000001,-0.912572],[130.60354630000006,-0.909829],[130.6106423000001,-0.911527],[130.62507730000004,-0.908917],[130.6341863,-0.903866],[130.64294430000007,-0.90626],[130.65893630000005,-0.901234],[130.6611183000001,-0.899226],[130.67555230000005,-0.899501],[130.6911473,-0.889346],[130.70117230000005,-0.887244],[130.7103433000001,-0.888833],[130.7130893000001,-0.887973],[130.72850130000006,-0.880641],[130.73350630000004,-0.875872],[130.74682630000007,-0.882027],[130.74925230000008,-0.877703],[130.75503630000003,-0.872762],[130.75927830000012,-0.873873],[130.76277230000005,-0.87152],[130.76809730000002,-0.875462],[130.7729653,-0.876048],[130.77749730000005,-0.874048],[130.78419530000008,-0.874244],[130.79817230000003,-0.868866],[130.79995730000007,-0.863972],[130.79870630000005,-0.861539],[130.8011633000001,-0.860914],[130.81730730000004,-0.868579],[130.81982430000005,-0.868298],[130.82096930000012,-0.865711],[130.81800930000009,-0.861198],[130.8212433000001,-0.860944],[130.82338030000005,-0.864217],[130.8344883000001,-0.864539],[130.8361513000001,-0.862585],[130.84779430000003,-0.859505],[130.84922830000005,-0.857786],[130.84664930000008,-0.855525],[130.84608530000003,-0.850451],[130.84300330000008,-0.849168],[130.84391830000004,-0.843365],[130.8518683000001,-0.853353],[130.85656830000005,-0.8544],[130.85862830000008,-0.85326],[130.86241230000007,-0.846465],[130.8620913000001,-0.840072],[130.85940630000005,-0.838118],[130.86340430000007,-0.837808],[130.86410530000012,-0.834009],[130.8692023000001,-0.833908],[130.87107930000002,-0.835761],[130.8680273000001,-0.845676],[130.86894230000007,-0.847639],[130.87197930000002,-0.847647],[130.87846430000002,-0.842416],[130.8812723000001,-0.838101],[130.88334730000008,-0.837702],[130.88740630000007,-0.839681],[130.89663730000007,-0.834631],[130.89755330000003,-0.832613],[130.89515730000005,-0.829086],[130.8882913000001,-0.827225],[130.88026530000002,-0.830249],[130.87367330000006,-0.828614],[130.87269630000003,-0.83046],[130.87046830000008,-0.829583],[130.8634343000001,-0.82253],[130.8669893000001,-0.818386],[130.86705130000007,-0.816251],[130.86482230000001,-0.815438],[130.8606883000001,-0.818479],[130.8546913,-0.813903],[130.85571330000005,-0.812058],[130.8682103000001,-0.809213],[130.8712623,-0.799425],[130.87355130000003,-0.79908],[130.8744663000001,-0.801911],[130.87664830000006,-0.803068],[130.87751830000002,-0.797306],[130.88237030000005,-0.799403],[130.88438530000008,-0.794617],[130.88908430000004,-0.791694],[130.8949133000001,-0.799498],[130.8976603000001,-0.800836],[130.90275630000008,-0.800961],[130.90512130000002,-0.797342],[130.9154823,-0.798641],[130.9178323000001,-0.797319],[130.92163130000006,-0.787123],[130.9253543000001,-0.784653],[130.91838130000008,-0.774135],[130.9130563000001,-0.783225],[130.9099123000001,-0.78193],[130.91149930000006,-0.779013],[130.91070630000002,-0.77705],[130.8960423000001,-0.778144499999939],[130.8959963000001,-0.773889],[130.89807130000008,-0.769339],[130.90219230000002,-0.76779],[130.89314330000002,-0.763841],[130.89056430000005,-0.76395],[130.88574230000006,-0.77316],[130.88385030000006,-0.77137],[130.88494930000002,-0.767453],[130.88363730000003,-0.765834],[130.87669430000005,-0.769672],[130.87301630000002,-0.77728],[130.8676303000001,-0.779164],[130.87124730000005,-0.773807],[130.86891230000003,-0.772822],[130.8672643000001,-0.765604],[130.86358730000006,-0.766628],[130.85813930000006,-0.77279],[130.85115130000008,-0.77092],[130.85345530000006,-0.766251],[130.85081530000002,-0.766126],[130.84840430000008,-0.767565],[130.8442083000001,-0.780185],[130.8464973,-0.780537],[130.85107430000005,-0.784995],[130.85369930000002,-0.792149],[130.8590243000001,-0.79373],[130.86166430000003,-0.792443],[130.86583030000008,-0.794035],[130.86106930000005,-0.800134],[130.8629003000001,-0.804412],[130.8564153000001,-0.805888],[130.85270730000002,-0.796998],[130.84989930000006,-0.796528],[130.84806830000002,-0.798467399999936],[130.84721430000002,-0.794033],[130.84819030000006,-0.791843],[130.84671130000004,-0.78942],[130.84184330000005,-0.790561],[130.84086630000002,-0.78877],[130.84288030000005,-0.784907],[130.84162930000002,-0.782601],[130.8427283000001,-0.775563],[130.84106530000008,-0.774234],[130.8414163000001,-0.766907],[130.83924930000012,-0.766726],[130.83201630000008,-0.771089],[130.83343530000002,-0.780957],[130.8322303000001,-0.784875],[130.82824730000004,-0.787611],[130.8290263,-0.77886],[130.82467730000008,-0.782082],[130.8223273000001,-0.781034],[130.82176230000005,-0.778727],[130.8252113000001,-0.772331],[130.81987030000005,-0.773698],[130.8174593000001,-0.780791],[130.81488130000002,-0.779507],[130.81414830000006,-0.775989],[130.80894530000012,-0.771305],[130.81123430000002,-0.766809]]],[[[130.12812830000007,-0.751358],[130.1438303000001,-0.743103],[130.15348830000005,-0.741101],[130.15033030000006,-0.731043],[130.14524930000005,-0.729082],[130.1321723000001,-0.735093],[130.12242130000004,-0.751351],[130.12452730000007,-0.752445],[130.12812830000007,-0.751358]]],[[[130.2338873000001,-0.725171],[130.21675130000006,-0.726524],[130.2147073000001,-0.727846],[130.2127693000001,-0.730777],[130.21241830000008,-0.735427],[130.21424930000012,-0.742789],[130.21774330000005,-0.74751],[130.2202463000001,-0.748314],[130.2202463000001,-0.741991],[130.22355730000004,-0.737684],[130.22630330000004,-0.736019],[130.2330333000001,-0.73551],[130.23452830000008,-0.733854],[130.2338873000001,-0.725171]]],[[[130.70440730000007,-0.701002],[130.70787130000008,-0.695172],[130.70130930000005,-0.701057],[130.70297330000005,-0.702612],[130.70440730000007,-0.701002]]],[[[130.2615823000001,-0.701642],[130.2671213000001,-0.700275],[130.26854030000004,-0.698546],[130.26808230000006,-0.696131],[130.2613983000001,-0.691584],[130.25621030000002,-0.694851],[130.25381530000004,-0.699619],[130.25575330000004,-0.701925],[130.2615823000001,-0.701642]]],[[[130.2324533000001,-0.700286],[130.24363730000005,-0.698175],[130.24786430000006,-0.694094],[130.24758930000007,-0.691742],[130.24066230000005,-0.687828],[130.2341623000001,-0.688735],[130.22610530000009,-0.696137],[130.2251443,-0.699122],[130.22616630000005,-0.700967],[130.2324533000001,-0.700286]]],[[[130.31041030000006,-0.689351],[130.30976930000008,-0.687108],[130.30749530000003,-0.688375],[130.30668730000002,-0.691016],[130.30891430000008,-0.691477],[130.31041030000006,-0.689351]]],[[[130.27996930000006,-0.692988],[130.2811593,-0.691378],[130.28042630000004,-0.68719],[130.27774130000012,-0.684305],[130.27574230000005,-0.685401],[130.27465830000006,-0.689309],[130.2758033,-0.691606],[130.27996930000006,-0.692988]]],[[[130.27282730000002,-0.684361],[130.2720193,-0.682462],[130.26870730000007,-0.68211],[130.2671663000001,-0.684182],[130.27145430000007,-0.686714],[130.27282730000002,-0.684361]]],[[[130.2901763000001,-0.680475],[130.2948613000001,-0.675887],[130.2948613000001,-0.673752],[130.29280130000006,-0.672776],[130.2863013000001,-0.676216],[130.28578230000005,-0.680521],[130.2901763000001,-0.680475]]],[[[130.25288430000012,-0.681917],[130.25494430000003,-0.674915],[130.2524873000001,-0.671171],[130.2497413000001,-0.670195],[130.2469483000001,-0.671227],[130.24340830000006,-0.675697],[130.24409530000003,-0.677714],[130.25065630000006,-0.683528],[130.25288430000012,-0.681917]]],[[[130.5738073000001,-0.65315],[130.57634030000008,-0.652407],[130.5773163,-0.650109],[130.5753023000001,-0.649468],[130.57009930000004,-0.651993],[130.5715183000001,-0.653494],[130.5738073000001,-0.65315]]],[[[130.31324830000005,-0.654126],[130.31443830000012,-0.651538],[130.30546630000003,-0.645038],[130.30055330000005,-0.64399],[130.2867433,-0.648916],[130.28543130000003,-0.653629],[130.27880930000003,-0.655286],[130.2741853000001,-0.662633],[130.27218730000004,-0.661657],[130.27183630000002,-0.658093],[130.27577230000009,-0.656147],[130.2754983000001,-0.652239],[130.2697763000001,-0.654358],[130.26556430000005,-0.666933],[130.26847930000008,-0.670505],[130.27858030000004,-0.670402],[130.28938330000005,-0.666454],[130.28955130000008,-0.661913],[130.30033930000002,-0.660082],[130.31324830000005,-0.654126]]],[[[130.30401630000006,-0.596816],[130.30195630000003,-0.590719],[130.29870630000005,-0.593706],[130.3017893000001,-0.596871],[130.30401630000006,-0.596816]]],[[[130.2777063000001,-0.588575],[130.27546730000006,-0.597585],[130.27609330000007,-0.602406],[130.2800913000001,-0.605345],[130.28015230000005,-0.607642],[130.28237930000012,-0.607189],[130.2858583000001,-0.603],[130.28762830000005,-0.596387],[130.28465330000006,-0.594724],[130.28419530000008,-0.592019],[130.2815713000001,-0.592762],[130.27996930000006,-0.58966],[130.2777063000001,-0.588575]]],[[[130.6502233000001,-0.578442],[130.64260930000012,-0.578707],[130.63073830000008,-0.584428],[130.6184853000001,-0.585599],[130.60066230000007,-0.589984],[130.59762630000012,-0.591703],[130.59201130000008,-0.599177],[130.57371530000012,-0.60926],[130.56982430000005,-0.610863],[130.5657053000001,-0.608774],[130.5615243000001,-0.608703],[130.5529183000001,-0.616106],[130.55073630000004,-0.623135],[130.55302530000006,-0.622962],[130.55290230000003,-0.625323],[130.5548563000001,-0.626372],[130.56211930000006,-0.626795],[130.57099930000004,-0.622097],[130.58171130000005,-0.619307],[130.59451330000002,-0.607878],[130.59950330000004,-0.600983],[130.60305830000004,-0.599037],[130.63386630000002,-0.594233],[130.6423493000001,-0.589019],[130.6568453000001,-0.58612],[130.65799030000005,-0.584337],[130.65686130000006,-0.582664],[130.65101630000004,-0.580749],[130.6502233000001,-0.578442]]],[[[130.6753083000001,-0.57506],[130.68447930000002,-0.570941],[130.68637130000002,-0.567837],[130.6801303000001,-0.566202],[130.66270530000008,-0.573463],[130.66047730000003,-0.575644],[130.66751130000011,-0.575207],[130.67117330000008,-0.577404],[130.6753083000001,-0.57506]]],[[[130.2777063000001,-0.588575],[130.2771153000001,-0.585916],[130.2743683000001,-0.583845],[130.27613930000007,-0.579711],[130.27493330000004,-0.574591],[130.2732853000001,-0.572746],[130.27214130000004,-0.574529],[130.27003530000002,-0.574584],[130.26916530000005,-0.572513],[130.26890630000003,-0.568878],[130.2713933000001,-0.564181],[130.2580263000001,-0.554859],[130.2536173000001,-0.547036],[130.2514503000001,-0.547553],[130.25344930000006,-0.556806],[130.26791430000003,-0.576538],[130.26312330000007,-0.581533],[130.26431330000003,-0.583713],[130.2777063000001,-0.588575]]],[[[130.44682330000012,-0.522863],[130.44625930000007,-0.52062],[130.4439093000001,-0.520847],[130.44082730000002,-0.524005],[130.44482530000005,-0.527975],[130.44950930000005,-0.52677],[130.4508823000001,-0.531546],[130.45323230000008,-0.530975],[130.45237830000008,-0.523933],[130.44682330000012,-0.522863]]],[[[130.35005230000002,-0.486587],[130.33955430000003,-0.487667],[130.33938630000011,-0.489675],[130.34954930000004,-0.491988],[130.35737630000006,-0.491017],[130.35656830000005,-0.489127],[130.35005230000002,-0.486587]]],[[[130.69499230000008,-0.489517],[130.6975103000001,-0.48901],[130.69682330000012,-0.486703],[130.6947643000001,-0.485953],[130.6926423000001,-0.490205],[130.69499230000008,-0.489517]]],[[[130.6896673000001,-0.482418],[130.69436730000007,-0.480996],[130.69328330000008,-0.479088],[130.68808030000002,-0.479705],[130.68641730000002,-0.481605],[130.6875003,-0.48345],[130.6896673000001,-0.482418]]],[[[130.8060313000001,-0.486848],[130.81727630000012,-0.478585],[130.81752030000007,-0.475052],[130.81617730000005,-0.472858],[130.81019630000003,-0.472726],[130.80250630000012,-0.477341],[130.79907230000003,-0.484644],[130.8005373000001,-0.486596],[130.8060313000001,-0.486848]]],[[[130.44987530000003,-0.460284],[130.44644230000006,-0.459351],[130.44783130000008,-0.46194],[130.44987530000003,-0.460284]]],[[[130.44162030000007,-0.447459],[130.43794330000003,-0.44814],[130.4337623,-0.446233],[130.43109230000005,-0.453244],[130.4369663000001,-0.457276],[130.43936230000008,-0.455783],[130.43554730000005,-0.452392],[130.4463353000001,-0.451249],[130.44162030000007,-0.447459]]],[[[130.45797730000004,-0.447988],[130.4594733,-0.44598],[130.45793230000004,-0.444488],[130.45410230000005,-0.446262],[130.4546663000001,-0.448279],[130.45797730000004,-0.447988]]],[[[130.44162030000007,-0.447459],[130.44729630000006,-0.443958],[130.44590830000004,-0.441339],[130.44307030000004,-0.443724],[130.44162030000007,-0.447459]]],[[[130.6902473,-0.416294],[130.68182430000002,-0.417246],[130.6781473000001,-0.422711],[130.67997830000002,-0.423923],[130.68640130000006,-0.423369],[130.69087230000002,-0.420789],[130.69162030000007,-0.418202],[130.6902473,-0.416294]]],[[[129.89071730000012,-0.407423],[129.88249230000008,-0.406033],[129.8795173000001,-0.407355],[129.87335230000008,-0.418031],[129.8651893000001,-0.419119],[129.86621130000003,-0.420955],[129.86033630000009,-0.424223],[129.85313430000008,-0.424786],[129.84663430000012,-0.436792],[129.8443003000001,-0.436901],[129.84577930000012,-0.443685],[129.84184330000005,-0.45133],[129.84156830000006,-0.461036],[129.8489383000001,-0.474611],[129.8495183000001,-0.478636],[129.85820030000002,-0.486639],[129.8620913000001,-0.499799],[129.86917130000006,-0.507395],[129.87904430000003,-0.501602],[129.8876193000001,-0.498741],[129.88835230000007,-0.494091],[129.89715630000012,-0.486399],[129.89726330000008,-0.481171],[129.90286330000004,-0.477957],[129.90416030000006,-0.473307],[129.90336630000002,-0.460201],[129.89953630000002,-0.44979],[129.90039130000002,-0.447954],[129.90289330000007,-0.447265],[129.9102183000001,-0.452564],[129.91507030000002,-0.453322],[129.91478030000007,-0.445787],[129.91272030000005,-0.439691],[129.9194493000001,-0.428327],[129.91922030000012,-0.419643],[129.9097293000001,-0.407969],[129.90196330000003,-0.406406],[129.89071730000012,-0.407423]]],[[[130.21836930000006,-0.407446],[130.21836930000006,-0.405384],[130.21397430000002,-0.404572],[130.21518030000004,-0.407502],[130.21836930000006,-0.407446]]],[[[130.61706630000003,-0.414636],[130.61535730000003,-0.412846],[130.6170813000001,-0.411697],[130.61755430000005,-0.407459],[130.61450230000003,-0.405013],[130.6074073000001,-0.404527],[130.6033943000001,-0.408834],[130.60739230000001,-0.415418],[130.60527130000003,-0.416269],[130.60635430000002,-0.418638],[130.60795630000007,-0.420194],[130.61012330000005,-0.42003],[130.6100163000001,-0.42268],[130.61453330000006,-0.424479],[130.6125793000001,-0.427646],[130.6020363,-0.427722],[130.5997013000001,-0.426737],[130.5969543000001,-0.422812],[130.5903783000001,-0.420896],[130.58784530000003,-0.424343],[130.5702523000001,-0.43316],[130.5618293000001,-0.434113],[130.55036930000006,-0.440819],[130.54858430000002,-0.442828],[130.5490423000001,-0.44594],[130.55424530000005,-0.451953],[130.55491630000006,-0.456621],[130.54890430000012,-0.460576],[130.5464333000001,-0.465977],[130.5403603000001,-0.468611],[130.5358893,-0.467392],[130.53508030000012,-0.469292],[130.5193183,-0.478171],[130.51274130000002,-0.477404],[130.51384030000008,-0.473261],[130.51092630000005,-0.46968],[130.5070803000001,-0.468858],[130.50778230000003,-0.466388],[130.50474630000008,-0.463205],[130.50621130000002,-0.458415],[130.50299130000008,-0.455942],[130.50573830000008,-0.451744],[130.50448630000005,-0.44961],[130.50013730000012,-0.449231],[130.49653630000012,-0.44632],[130.49162330000001,-0.445335],[130.49093730000004,-0.443318],[130.48533630000009,-0.439404],[130.48281930000007,-0.439866],[130.47557130000007,-0.447042],[130.47061230000008,-0.448409],[130.46540930000003,-0.453115],[130.46667530000002,-0.455593],[130.47090230000003,-0.45807],[130.4712373000001,-0.460422],[130.4752353,-0.457896],[130.47837930000003,-0.460953],[130.48495530000002,-0.463031],[130.48545830000012,-0.465328],[130.48089630000004,-0.465267],[130.4814613000001,-0.467275],[130.47987430000012,-0.468542],[130.4759223000001,-0.46687],[130.47352630000012,-0.47048],[130.46782030000008,-0.472598],[130.46188430000007,-0.469091],[130.46342530000004,-0.467308],[130.46165530000007,-0.466042],[130.4552463000001,-0.465402],[130.45530730000007,-0.46741],[130.46102960000007,-0.475522],[130.45999230000007,-0.480407],[130.46244830000012,-0.480813],[130.46331830000008,-0.482939],[130.46109030000002,-0.487137],[130.46183830000007,-0.492419],[130.46748430000002,-0.495357],[130.4713753000001,-0.495591],[130.50015330000008,-0.491963],[130.5072183000001,-0.494783],[130.5080723000001,-0.4968],[130.50273230000005,-0.504617],[130.48451330000012,-0.508658],[130.47818030000008,-0.512902],[130.4721833000001,-0.51427],[130.46778930000005,-0.516967],[130.45265230000007,-0.518212],[130.45094330000006,-0.519533],[130.45207230000005,-0.521658],[130.45636030000003,-0.523222],[130.45779430000005,-0.530286],[130.46327230000009,-0.531559],[130.46476830000006,-0.529958],[130.46453930000007,-0.527715],[130.4685823000001,-0.528636],[130.47676130000002,-0.526806],[130.48378030000003,-0.520897],[130.49205030000007,-0.518895],[130.49633830000005,-0.518848],[130.50016830000004,-0.521352],[130.50723330000005,-0.516438],[130.5151833000001,-0.517847],[130.52011130000005,-0.520332],[130.52308730000004,-0.519599],[130.52595630000008,-0.517535],[130.52621570000008,-0.514021],[130.52807630000007,-0.512469],[130.53321930000004,-0.518012],[130.54095530000006,-0.520913],[130.5413063000001,-0.515449],[130.54319830000009,-0.513956],[130.54438830000004,-0.515629],[130.54646330000003,-0.514652],[130.54480030000002,-0.510735],[130.54664630000002,-0.508202],[130.5612493000001,-0.501566],[130.56477430000007,-0.488847],[130.55996730000004,-0.482037],[130.55946430000006,-0.477542],[130.5641793000001,-0.473036599999944],[130.57183930000008,-0.471178],[130.57656930000007,-0.472309699999926],[130.57830830000012,-0.476332],[130.58396930000004,-0.476113],[130.58432030000006,-0.474042],[130.5865023,-0.473815],[130.5882113,-0.475261],[130.59480330000008,-0.475684],[130.5952453000001,-0.478108],[130.5983433,-0.478578],[130.5965123000001,-0.482721],[130.59857230000011,-0.483128],[130.59764130000008,-0.485199],[130.5988923000001,-0.489867],[130.6010133000001,-0.488898],[130.60255530000006,-0.490399],[130.60508830000003,-0.49],[130.6068583000001,-0.492026],[130.6112223,-0.492305],[130.6094213,-0.496347],[130.6010133000001,-0.495161],[130.59915230000001,-0.496995],[130.6044313000001,-0.50043],[130.60214330000008,-0.501625],[130.5919503,-0.499412],[130.58982930000002,-0.500155],[130.59594730000003,-0.50823],[130.59639030000005,-0.512961],[130.59468130000005,-0.514165],[130.59239230000003,-0.512836],[130.5906073000001,-0.515595],[130.59242330000006,-0.524061],[130.59007330000009,-0.527277],[130.59205730000008,-0.533225],[130.58639630000005,-0.53263],[130.5850683000001,-0.534412],[130.58325230000003,-0.531426],[130.57495230000006,-0.534585],[130.57179330000008,-0.533277],[130.5715183000001,-0.528555],[130.56950430000006,-0.528375],[130.5660713000001,-0.531126],[130.56634530000008,-0.537123],[130.57153330000006,-0.545896],[130.57377730000007,-0.547225],[130.58946230000004,-0.54456],[130.58987530000002,-0.540127],[130.59428430000003,-0.542559],[130.60545430000002,-0.536775],[130.62968530000012,-0.532416],[130.63920630000007,-0.52438],[130.65141330000006,-0.522567],[130.64924730000007,-0.515304],[130.65393130000007,-0.517627],[130.65914930000008,-0.517869],[130.66397130000007,-0.507691],[130.6682743,-0.505971],[130.67384430000004,-0.499655],[130.66943430000003,-0.496699],[130.66267430000005,-0.498529],[130.66325430000006,-0.49282],[130.66726730000005,-0.493877],[130.66853430000003,-0.490304],[130.67248630000006,-0.488593],[130.6791693,-0.473715599999935],[130.68202230000009,-0.472371],[130.68383830000005,-0.467692],[130.6879123000001,-0.471184],[130.6893013,-0.46306],[130.69418430000007,-0.454782],[130.69122330000005,-0.448786],[130.68949930000008,-0.450043],[130.68766830000004,-0.447276],[130.68132030000004,-0.447776],[130.6794893000001,-0.446329],[130.6782843000001,-0.444367],[130.6800693,-0.443226],[130.67955030000007,-0.440748],[130.6723333000001,-0.441239],[130.66442930000005,-0.443865],[130.66294930000004,-0.442309],[130.66581730000007,-0.435407],[130.6629643000001,-0.428714],[130.6538703000001,-0.423326],[130.64769030000002,-0.421464],[130.6450043000001,-0.417431],[130.63774130000002,-0.415796],[130.63333230000012,-0.417453],[130.6278383,-0.413574],[130.62210130000005,-0.414074],[130.62085030000003,-0.416092],[130.61706630000003,-0.414636]]],[[[130.2493753000001,-0.398987],[130.24629230000005,-0.395478],[130.24304230000007,-0.394783],[130.24202030000004,-0.396556],[130.2476653000001,-0.40048],[130.2493753000001,-0.398987]]],[[[130.2708593000001,-0.396194],[130.2695923000001,-0.394014],[130.2672583000001,-0.393888],[130.26667830000008,-0.396014],[130.26948630000004,-0.39803],[130.2708593000001,-0.396194]]],[[[130.2581183000001,-0.391928],[130.2618873,-0.388996],[130.2604523000001,-0.387559],[130.25422730000003,-0.386349],[130.25074830000005,-0.387951],[130.2534333000001,-0.391577],[130.2581183000001,-0.391928]]],[[[130.26998930000002,-0.377171],[130.27204930000005,-0.375044],[130.27204930000005,-0.373036],[130.2700963000001,-0.371599],[130.2637033000001,-0.373546],[130.2655343,-0.377227],[130.26998930000002,-0.377171]]],[[[130.4194493000001,-0.369322],[130.41738930000008,-0.369549],[130.4171603000001,-0.371847],[130.41917530000012,-0.372886],[130.4194493000001,-0.369322]]],[[[130.29470830000002,-0.37065],[130.28038030000005,-0.367814],[130.27798530000007,-0.36919],[130.27763430000005,-0.371207],[130.28044230000012,-0.378913],[130.2825623000001,-0.380287],[130.2836463000001,-0.377881],[130.28250230000003,-0.373802],[130.28421130000004,-0.372019],[130.29214530000002,-0.37312],[130.29470830000002,-0.37065]]],[[[130.19014030000005,-0.357298],[130.19036930000004,-0.354828],[130.18801930000006,-0.353789],[130.1862493000001,-0.354938],[130.18533430000002,-0.358557],[130.19014030000005,-0.357298]]],[[[130.33500850000007,-0.3514775],[130.3377693000001,-0.350418],[130.33783030000006,-0.348066],[130.33183330000008,-0.349949],[130.33500850000007,-0.3514775]]],[[[130.3820343000001,-0.356626],[130.38511730000005,-0.350537],[130.38465930000007,-0.345716],[130.3824313,-0.346567],[130.3795173000001,-0.351679],[130.37895230000004,-0.356853],[130.3809513000001,-0.358463],[130.3820343000001,-0.356626]]],[[[130.23620630000005,-0.321036],[130.23426830000005,-0.32034],[130.2331243000001,-0.322294],[130.2343753,-0.324655],[130.2390143,-0.327249],[130.24209630000007,-0.327936],[130.24511730000006,-0.323692],[130.24488830000007,-0.321105],[130.23814430000004,-0.322302],[130.23620630000005,-0.321036]]],[[[130.20617730000004,-0.333005],[130.1945803000001,-0.329083],[130.17988630000002,-0.319753],[130.1733253000001,-0.319004],[130.1703043000001,-0.321004],[130.17190630000005,-0.325898],[130.18150430000003,-0.334759],[130.18760730000008,-0.337181],[130.19120830000008,-0.335],[130.19686930000012,-0.335758],[130.1988073000001,-0.340126],[130.19657930000005,-0.340407],[130.1957863,-0.342244],[130.20149330000004,-0.348122],[130.21125830000005,-0.350714],[130.22016930000007,-0.347971],[130.2175453000001,-0.343657],[130.2192543000001,-0.339694],[130.21742330000006,-0.337795],[130.21913230000007,-0.333371],[130.21548530000007,-0.329863],[130.21130430000005,-0.330597],[130.20884730000012,-0.33342],[130.20617730000004,-0.333005]]],[[[130.6470653,-0.319467],[130.64318930000002,-0.317445],[130.64224330000002,-0.319971],[130.6470653,-0.319467]]],[[[130.37989830000004,-0.318324],[130.37471030000006,-0.316502],[130.37231530000008,-0.317479],[130.36940030000005,-0.325812],[130.37042330000008,-0.328163],[130.37265030000003,-0.329782],[130.3748783000001,-0.328632],[130.37471030000006,-0.323575],[130.37265030000003,-0.323052],[130.3743293000001,-0.320395],[130.3804173000001,-0.323637],[130.38264530000004,-0.322261],[130.37989830000004,-0.318324]]],[[[130.63790930000005,-0.320464],[130.6396333,-0.318681],[130.6388253,-0.316664],[130.6367653000001,-0.316195],[130.63424730000008,-0.320393],[130.63618530000008,-0.321496],[130.63790930000005,-0.320464]]],[[[130.35449230000006,-0.315152],[130.35214330000008,-0.31423],[130.34266730000002,-0.31531],[130.34495630000004,-0.319687],[130.34957930000007,-0.32182],[130.35603330000004,-0.318317],[130.35672030000012,-0.316309],[130.35449230000006,-0.315152]]],[[[130.1313483,-0.311248],[130.12466530000006,-0.313132],[130.12283330000002,-0.316977],[130.12403930000005,-0.31922],[130.13249230000008,-0.325151],[130.13740630000007,-0.334991],[130.1394663000001,-0.335678],[130.14134230000002,-0.33442],[130.14294530000006,-0.328675],[130.1428843000001,-0.321774],[130.1411753000001,-0.316374],[130.1386573000001,-0.312286],[130.1313483,-0.311248]]],[[[130.66284230000008,-0.309709],[130.65824930000008,-0.311248],[130.65785230000006,-0.313383],[130.66488730000003,-0.316284],[130.6586923000001,-0.320466],[130.65600630000006,-0.319598],[130.6525573,-0.322403],[130.65213130000006,-0.324699],[130.65559430000008,-0.326509],[130.65541130000008,-0.330535],[130.66011130000004,-0.331763],[130.66352930000005,-0.334883],[130.6661683000001,-0.332467],[130.66606230000002,-0.327229],[130.67213530000004,-0.326494],[130.67460630000005,-0.322649],[130.67433230000006,-0.320397],[130.66975430000002,-0.318481],[130.67027330000008,-0.314048],[130.67239430000006,-0.313369],[130.6725623000001,-0.311062],[130.66284230000008,-0.309709]]],[[[130.26390130000004,-0.308145],[130.26818930000002,-0.307058],[130.26481730000012,-0.303487],[130.26246730000003,-0.303659],[130.25956730000007,-0.307441],[130.26065130000006,-0.309404],[130.26390130000004,-0.308145]]],[[[130.48869330000002,-0.306078],[130.48606930000005,-0.302687],[130.47930930000007,-0.306439],[130.48207130000003,-0.311472],[130.48436030000005,-0.311996],[130.48373430000004,-0.316699],[130.48173530000008,-0.317505],[130.48088130000008,-0.315316],[130.47665430000006,-0.31577],[130.47842430000003,-0.325258],[130.48516930000005,-0.328829],[130.48642030000008,-0.333315],[130.49299630000007,-0.334127],[130.49464530000012,-0.332064],[130.49864230000003,-0.333673],[130.50012230000004,-0.328905],[130.50416630000007,-0.333373],[130.50663830000008,-0.333435],[130.50817930000005,-0.331019],[130.50990330000002,-0.33224],[130.51620530000002,-0.32805],[130.51695330000007,-0.326096],[130.51426730000003,-0.321999],[130.50935430000004,-0.321521],[130.5077983000001,-0.319902],[130.51037630000008,-0.31887],[130.51124630000004,-0.316799],[130.51182630000005,-0.309435],[130.5049593000001,-0.308723],[130.50222830000007,-0.311899],[130.49612530000002,-0.307867],[130.49560630000008,-0.305623],[130.4915473000001,-0.305679],[130.49035730000003,-0.30757],[130.48869330000002,-0.306078]]],[[[130.85192930000005,-0.301919],[130.85049430000004,-0.303638],[130.84860330000004,-0.302427],[130.8455663000001,-0.305006],[130.8460093000001,-0.312613],[130.84892330000002,-0.31642],[130.8607793000001,-0.319338],[130.86679130000005,-0.316821],[130.87725000000012,-0.316786599999944],[130.88387180000007,-0.322839599999952],[130.88813830000004,-0.322476],[130.8932963000001,-0.319607],[130.8941043000001,-0.31702],[130.88929830000006,-0.314986],[130.8859873,-0.311116],[130.8777473,-0.305564],[130.86688230000004,-0.302999],[130.85192930000005,-0.301919]]],[[[130.3359683000001,-0.300133],[130.32928530000004,-0.300525],[130.3297583000001,-0.30265],[130.33134530000007,-0.303916],[130.33842530000004,-0.304447],[130.33963030000007,-0.302267],[130.3359683000001,-0.300133]]],[[[130.36734030000002,-0.306663],[130.36653230000002,-0.300458],[130.36459430000002,-0.298902],[130.3603673,-0.304358],[130.3612213,-0.306258],[130.36567730000002,-0.308047],[130.36734030000002,-0.306663]]],[[[130.18861430000004,-0.297407],[130.18936230000008,-0.294937],[130.18547130000002,-0.291773],[130.18136630000004,-0.284121],[130.17747530000008,-0.283082],[130.17514130000006,-0.284522],[130.17582730000004,-0.286991],[130.17942830000004,-0.289758],[130.1810313000001,-0.297057],[130.1837623,-0.298268],[130.18861430000004,-0.297407]]],[[[130.22328230000005,-0.291533],[130.22099330000003,-0.280616],[130.2191623000001,-0.279405],[130.1957553000001,-0.284089],[130.19313130000012,-0.286098],[130.1925053000001,-0.28874],[130.1938173000001,-0.296672],[130.19866930000012,-0.293514],[130.1994783,-0.295757],[130.1957553000001,-0.300353],[130.1910253000001,-0.3023],[130.19096430000002,-0.308216],[130.19862430000012,-0.315812],[130.2029123000001,-0.313639],[130.20701630000008,-0.313574],[130.2058723,-0.316107],[130.20788630000004,-0.31968],[130.2129063000001,-0.319913],[130.21319630000005,-0.322274],[130.22210730000006,-0.322172],[130.23300230000007,-0.305039],[130.22831830000007,-0.300505],[130.22088730000007,-0.301358],[130.2203833000001,-0.299115],[130.22392330000002,-0.29602],[130.22328230000005,-0.291533]]],[[[130.38504030000001,-0.205598],[130.3832863,-0.200568],[130.3829353000001,-0.205879],[130.38504030000001,-0.205598]]],[[[130.33500730000003,-0.198116],[130.3293003000001,-0.198453],[130.3197633000001,-0.208497],[130.3152013,-0.210624],[130.30799930000012,-0.210726],[130.3060613,-0.21193],[130.30691530000001,-0.213775],[130.31514030000005,-0.217228],[130.3242193000001,-0.216266],[130.33346630000005,-0.206394],[130.34054630000003,-0.20318],[130.33683830000007,-0.200477],[130.3346103,-0.200876],[130.33500730000003,-0.198116]]],[[[130.2467203000001,-0.200074],[130.2429353000001,-0.194204],[130.23808330000008,-0.193853],[130.2364963000001,-0.195174],[130.24459930000012,-0.200183],[130.2467203000001,-0.200074]]],[[[130.2029573000001,-0.18823],[130.20112630000006,-0.185643],[130.19598430000008,-0.186152],[130.1969613000001,-0.187997],[130.2010203000001,-0.189207],[130.2029573000001,-0.18823]]],[[[130.35133430000008,-0.182679],[130.34579530000008,-0.183884],[130.34523030000003,-0.18601],[130.34843530000012,-0.192214],[130.35402030000012,-0.188313],[130.35951230000012,-0.187751],[130.36116130000005,-0.186086],[130.3608253000001,-0.183843],[130.35133430000008,-0.182679]]],[[[130.2614443000001,-0.182393],[130.25932330000012,-0.180721],[130.25659230000008,-0.18405],[130.2514503000001,-0.182668],[130.24476630000004,-0.183285],[130.24264630000005,-0.184435],[130.24224930000003,-0.187312],[130.24620130000005,-0.190766],[130.25515830000006,-0.194915],[130.25630230000002,-0.197329],[130.25853030000007,-0.197383],[130.2605903000001,-0.193484],[130.26304630000004,-0.193311],[130.27429230000007,-0.196319],[130.2846383000001,-0.195529],[130.2857213000001,-0.193285],[130.28257830000007,-0.190292],[130.2784583,-0.19023],[130.27777130000004,-0.186033],[130.27114930000005,-0.182399],[130.26908930000002,-0.182572],[130.2678383000001,-0.184472],[130.2650913000001,-0.183089],[130.26269530000002,-0.184003],[130.2614443000001,-0.182393]]],[[[130.22648630000003,-0.16947],[130.22203130000003,-0.169752],[130.2010653000001,-0.178],[130.19964630000004,-0.179836],[130.20649730000002,-0.186917],[130.22638030000007,-0.189009],[130.22671530000002,-0.186828],[130.22860730000002,-0.185571],[130.23729030000004,-0.183677],[130.2340243000001,-0.180232],[130.22927930000003,-0.17884],[130.23082030000012,-0.174136],[130.22648630000003,-0.16947]]],[[[130.26075830000002,-0.17371],[130.26080330000002,-0.165894],[130.25801130000002,-0.162213],[130.24668930000007,-0.153805],[130.2387543000001,-0.153048],[130.23738130000004,-0.154776],[130.23950230000003,-0.156503],[130.24629230000005,-0.157948],[130.24845930000004,-0.159729],[130.2485203000001,-0.162199],[130.24687230000006,-0.164036],[130.2372133,-0.165007],[130.23629830000004,-0.167477],[130.2387093000001,-0.175002],[130.23837330000003,-0.179778],[130.2545933,-0.180776],[130.25659230000008,-0.180088],[130.25601230000007,-0.17761],[130.2572633000001,-0.175601],[130.2610323,-0.178024],[130.26217730000008,-0.175726],[130.26075830000002,-0.17371]]],[[[130.26474030000008,-0.152795],[130.2623903000001,-0.149177],[130.26022430000012,-0.149286],[130.26199330000009,-0.156242],[130.26434430000006,-0.156938],[130.26474030000008,-0.152795]]],[[[130.25697430000002,-0.147958],[130.25520430000006,-0.146638],[130.25389130000008,-0.150718],[130.2559973000001,-0.150943],[130.25697430000002,-0.147958]]],[[[130.68788230000007,-0.133518],[130.68284630000005,-0.132407],[130.67804030000002,-0.134009],[130.67591930000003,-0.133368],[130.67271530000005,-0.136182],[130.6681833,-0.136229],[130.66101130000004,-0.142084],[130.66203330000008,-0.146344],[130.66902230000005,-0.148214],[130.67492730000004,-0.145119],[130.6781923000001,-0.141617],[130.6880953000001,-0.141297],[130.68952930000012,-0.138881],[130.68788230000007,-0.133518]]],[[[130.6658023000001,-0.120843],[130.66128630000003,-0.119958],[130.66299530000003,-0.123594],[130.66636730000005,-0.123665],[130.6658023000001,-0.120843]]],[[[130.641021,-0.114600099999961],[130.64106830000003,-0.11783],[130.64450130000012,-0.122216],[130.65182530000004,-0.123046],[130.6604923000001,-0.116449],[130.65637230000004,-0.114876],[130.6541903000001,-0.114931],[130.65304630000003,-0.116886],[130.65086430000008,-0.115493],[130.64560030000007,-0.116463],[130.641021,-0.114600099999961]]],[[[130.67424030000006,-0.111532],[130.6663363,-0.111852],[130.66713030000005,-0.113986],[130.67428630000006,-0.114065],[130.67424030000006,-0.111532]]],[[[130.18618830000003,-0.112469],[130.18681430000004,-0.110053],[130.1838993,-0.108037],[130.1818393000001,-0.10849],[130.18367030000002,-0.11275],[130.18618830000003,-0.112469]]],[[[130.25563130000012,-0.110889],[130.2560433000001,-0.10652],[130.25386130000004,-0.106693],[130.24855130000003,-0.112031],[130.2443853000001,-0.111906],[130.23930430000007,-0.11426],[130.23822130000008,-0.11644],[130.24346930000002,-0.115642],[130.24484330000007,-0.119785],[130.25067130000002,-0.124676],[130.25924730000008,-0.121128],[130.26014730000009,-0.118477],[130.25563130000012,-0.110889]]],[[[130.1813823000001,-0.105677],[130.1832733000001,-0.101136],[130.18258730000002,-0.096595],[130.17567530000008,-0.092509],[130.17099030000008,-0.092565],[130.1709293,-0.094627],[130.1760723000001,-0.101988],[130.17681930000003,-0.10642],[130.1796733000001,-0.10717],[130.1813823000001,-0.105677]]],[[[130.6658023000001,-0.093534],[130.6643683000001,-0.089211],[130.66214030000003,-0.088054],[130.6592263000001,-0.088507],[130.65750130000004,-0.093112],[130.6612093000001,-0.095824],[130.6622473000001,-0.093698],[130.6641393000001,-0.09491],[130.6658023000001,-0.093534]]],[[[130.17018230000008,-0.089516],[130.1672823,-0.087246],[130.1681373,-0.090657],[130.17018230000008,-0.089516]]],[[[130.18342630000006,-0.069937],[130.1818853000001,-0.06821],[130.1793063,-0.068084],[130.18028330000004,-0.070562],[130.18302930000004,-0.072],[130.18342630000006,-0.069937]]],[[[130.35437030000003,-0.074582],[130.3480843000001,-0.06808],[130.34631430000002,-0.069574],[130.34602430000007,-0.071871],[130.35070830000006,-0.075379],[130.35311930000012,-0.076364],[130.35437030000003,-0.074582]]],[[[130.05510030000005,-0.070913],[130.05560330000003,-0.068154],[130.05412330000001,-0.066662],[130.05058330000008,-0.067459],[130.04646330000003,-0.071477],[130.0426943000001,-0.072799],[130.03024330000005,-0.072432],[130.02574230000005,-0.074035],[130.0160833000001,-0.071614],[130.0041513000001,-0.071826],[130.0068973000001,-0.074819],[130.01226830000007,-0.075921],[130.03488230000005,-0.075949],[130.04618930000004,-0.077574],[130.04806530000008,-0.076189],[130.05297930000006,-0.079824],[130.05595430000005,-0.079189],[130.05510030000005,-0.070913]]],[[[130.48971630000005,-0.056598],[130.48611530000005,-0.053144],[130.4810953000001,-0.054575],[130.48115630000007,-0.056818],[130.4842993000001,-0.058201],[130.48909030000004,-0.058661],[130.48971630000005,-0.056598]]],[[[130.4669953,-0.056398],[130.47081030000004,-0.055655],[130.47120730000006,-0.053294],[130.46395930000006,-0.053287],[130.46247930000004,-0.05478],[130.4640813000001,-0.056507],[130.4669953,-0.056398]]],[[[130.4540713,-0.05178],[130.45419430000004,-0.04931],[130.45190530000002,-0.049763],[130.45167630000003,-0.052233],[130.4540713,-0.05178]]],[[[130.55484030000002,-0.047874],[130.55342130000008,-0.045794],[130.55140730000005,-0.046997],[130.55284130000007,-0.048498],[130.55484030000002,-0.047874]]],[[[131.07850730000007,-0.050579],[131.0773163,-0.043207],[131.07423430000006,-0.038532],[131.07125930000007,-0.038352],[131.06185930000004,-0.045465],[131.06442330000004,-0.050249],[131.07775930000003,-0.053347],[131.07850730000007,-0.050579]]],[[[130.54014630000006,-0.038733],[130.53791830000011,-0.035035],[130.53430230000004,-0.037677],[130.53424130000008,-0.040156],[130.5407113000001,-0.040977],[130.54014630000006,-0.038733]]],[[[130.5104983000001,-0.031905],[130.50190830000008,-0.031239],[130.49684230000003,-0.033791],[130.48638930000004,-0.031705],[130.48873930000002,-0.035676],[130.49371430000008,-0.037863],[130.50010730000008,-0.037996],[130.50842330000012,-0.04059],[130.5132913000001,-0.03905],[130.51295530000004,-0.033921],[130.5104983000001,-0.031905]]],[[[130.9391333000001,-0.01941],[130.93476930000008,-0.021357],[130.94134630000008,-0.030301],[130.94322230000012,-0.036587],[130.94540430000006,-0.035501],[130.94654930000002,-0.029277],[130.9524543000001,-0.028497],[130.95314130000008,-0.026072],[130.9391333000001,-0.01941]]],[[[130.28500430000008,-0.011948],[130.28386030000001,-0.014778],[130.2862093000001,-0.015184],[130.28500430000008,-0.011948]]],[[[130.641021,-0.114600099999961],[130.64010730000007,-0.112069],[130.6429293000001,-0.107527],[130.64802630000008,-0.105408],[130.64933830000007,-0.10368],[130.6486053000001,-0.100912],[130.64596630000005,-0.100452],[130.64166330000012,-0.104298],[130.6338813000001,-0.102546],[130.63188230000003,-0.102827],[130.63124130000006,-0.104898],[130.62701430000004,-0.104312],[130.62242230000004,-0.106421],[130.61467030000006,-0.105568099999971],[130.61241230000007,-0.103051],[130.61579930000005,-0.098572],[130.6157383000001,-0.09575],[130.61076430000003,-0.094874],[130.60904030000006,-0.096249],[130.61053530000004,-0.098845],[130.60502630000008,-0.098829],[130.60296630000005,-0.097789],[130.5998383000001,-0.091759],[130.60984830000007,-0.084692],[130.61085530000003,-0.079605],[130.6138923000001,-0.078871],[130.61607430000004,-0.081212],[130.62286430000006,-0.081835],[130.62548830000003,-0.08737],[130.62977630000012,-0.090607],[130.63092130000007,-0.094876],[130.63407930000005,-0.092179],[130.63790930000005,-0.09443],[130.64003030000003,-0.093172],[130.6381993000001,-0.089482],[130.6392373000001,-0.087637],[130.64375330000007,-0.087943],[130.64570630000003,-0.086675],[130.64399730000002,-0.082244],[130.64961330000006,-0.083698],[130.6497803000001,-0.086403],[130.6523443000001,-0.086926],[130.65768530000003,-0.084184],[130.65641830000004,-0.08233],[130.65683030000002,-0.077671],[130.6598673000001,-0.075951],[130.6750343000001,-0.079972],[130.67756730000008,-0.07998],[130.67756730000008,-0.077447],[130.69158930000003,-0.07633],[130.69491630000005,-0.077721],[130.6961063000001,-0.081991],[130.69261230000006,-0.084923],[130.6929483,-0.087392],[130.6770173000001,-0.093105],[130.67529330000002,-0.094372],[130.67523230000006,-0.096679],[130.68072530000006,-0.099165],[130.68257230000006,-0.098314],[130.68217530000004,-0.095835],[130.6873783000001,-0.095788],[130.69035430000008,-0.097304],[130.69494630000008,-0.095813],[130.7000283000001,-0.097493],[130.70004330000006,-0.095485],[130.70198130000006,-0.094282],[130.7067263,-0.098559],[130.70832830000006,-0.102936],[130.70991630000003,-0.108472],[130.70950330000005,-0.117798],[130.71485930000006,-0.132278],[130.71737730000007,-0.136429],[130.72526630000004,-0.142849],[130.7274943000001,-0.148095],[130.72972130000005,-0.147696],[130.73498630000006,-0.15077],[130.7399603,-0.155969],[130.7452853000001,-0.154601],[130.74751330000004,-0.156166],[130.74774230000003,-0.158644],[130.7499703000001,-0.158128],[130.7508553,-0.161804],[130.75563130000012,-0.161138],[130.75683630000003,-0.1631],[130.7588353000001,-0.162476],[130.75862130000007,-0.157808],[130.76142930000003,-0.157527],[130.7626193000001,-0.162085],[130.76490830000012,-0.161976],[130.76960830000007,-0.157895],[130.77345330000003,-0.160906],[130.7778783000001,-0.170581599999934],[130.7742773000001,-0.172828],[130.77587930000004,-0.174618],[130.77960230000008,-0.172274],[130.78190630000006,-0.172219],[130.78321930000004,-0.173955],[130.77925130000006,-0.182297],[130.78566030000002,-0.185189],[130.78964330000008,-0.195165],[130.78975030000004,-0.202655],[130.78785730000004,-0.207314],[130.78971930000012,-0.215328],[130.7834633000001,-0.227922],[130.78398230000005,-0.229884],[130.79191630000003,-0.236304],[130.79110730000002,-0.240909],[130.7939613000001,-0.247945],[130.80090330000007,-0.244858],[130.8027803000001,-0.247218],[130.8105783000001,-0.246782],[130.81532330000005,-0.248472],[130.8263253,-0.247346],[130.8371893000001,-0.252164],[130.84796230000006,-0.245113],[130.85490430000004,-0.243175],[130.85348510000006,-0.241482],[130.85553030000005,-0.238625],[130.86131330000012,-0.239908],[130.87789930000008,-0.254474],[130.88064630000008,-0.259033],[130.88017330000002,-0.263809],[130.8814853,-0.267155],[130.88845930000002,-0.270744],[130.8944093,-0.278485],[130.89753730000007,-0.28696],[130.89718630000004,-0.289954],[130.8947763000001,-0.291674],[130.89471530000003,-0.297381],[130.8996433000001,-0.299578],[130.90095530000008,-0.302237],[130.89764430000002,-0.308579],[130.90185630000008,-0.3095],[130.91656530000012,-0.307695],[130.9212503000001,-0.31389],[130.92210430000011,-0.322637],[130.9242713000001,-0.325576],[130.93222130000004,-0.329571],[130.93582230000004,-0.33886],[130.93483030000004,-0.345364],[130.94030830000008,-0.352237],[130.95868030000008,-0.359205],[130.96543930000007,-0.359564],[130.97094830000003,-0.357509],[130.98545830000012,-0.36948],[130.98855630000003,-0.366205],[130.99314930000003,-0.36633],[130.99440030000005,-0.363978],[130.9889223,-0.353586],[130.99047930000006,-0.349271],[130.98642030000008,-0.345111],[130.9886633000001,-0.343627],[130.99317930000007,-0.345308],[130.9969033000001,-0.344402],[131.0050963000001,-0.345575],[131.00880430000007,-0.347139],[131.01240630000007,-0.35147],[131.01939430000004,-0.355927],[131.0205843000001,-0.357836],[131.01908930000002,-0.364856],[131.02027930000008,-0.367216],[131.02229330000011,-0.367224],[131.02403330000004,-0.363932],[131.0284273000001,-0.364482],[131.02894630000003,-0.362347],[131.02620030000003,-0.357327],[131.02671830000008,-0.35474],[131.0331423,-0.350441],[131.03228830000012,-0.346054],[131.03411930000004,-0.345086],[131.04156530000012,-0.348792],[131.0420693000001,-0.354092],[131.04803530000004,-0.350771],[131.05284130000007,-0.350154],[131.0550693,-0.348489],[131.0588083,-0.341296],[131.05996730000004,-0.335117],[131.0646673000001,-0.334347],[131.06724630000008,-0.328132],[131.0785373000001,-0.327069],[131.07870530000002,-0.32488],[131.08226030000003,-0.32184],[131.0871893000001,-0.322028],[131.08851630000004,-0.320019],[131.0945283000001,-0.318308],[131.0970013000001,-0.314336],[131.0992893,-0.314344],[131.10122730000012,-0.315158],[131.10139530000004,-0.317925],[131.09823630000005,-0.323327],[131.09782430000007,-0.328338],[131.1001133000001,-0.329613],[131.1051033000001,-0.3283],[131.11409030000004,-0.329364],[131.12358130000007,-0.334869],[131.1258243000001,-0.334878],[131.12768630000005,-0.332071],[131.1314853,-0.333908],[131.15290930000003,-0.335303],[131.1652683000001,-0.340807],[131.17173830000002,-0.340714],[131.1764223,-0.342278],[131.19136130000004,-0.350622],[131.19409230000008,-0.355695],[131.19117830000005,-0.358745],[131.1921393,-0.361105],[131.1942603000001,-0.361801],[131.19621330000007,-0.360543],[131.19838030000005,-0.362162],[131.1984873,-0.366594],[131.1952063000001,-0.375749],[131.1970983000001,-0.376961],[131.19963130000008,-0.370917],[131.20460530000003,-0.369441],[131.2214973,-0.37375],[131.23733530000004,-0.386011],[131.24414130000002,-0.387067],[131.24907030000008,-0.385238],[131.25418130000003,-0.379031],[131.2490543,-0.362597],[131.2435153,-0.35538],[131.24295130000007,-0.34818],[131.2443393000001,-0.346225],[131.24633830000005,-0.345944],[131.25349430000006,-0.349823],[131.26294030000008,-0.350253],[131.2647713,-0.352333],[131.27600130000008,-0.349724],[131.2784123,-0.344432],[131.28386030000001,-0.342196],[131.2835093000001,-0.339428],[131.28019730000005,-0.334987],[131.28146430000004,-0.33297],[131.28656030000002,-0.329883],[131.28817830000003,-0.326599],[131.2909853000001,-0.324762],[131.2985993000001,-0.325944],[131.30043030000002,-0.323755],[131.2999883000001,-0.319205],[131.3048563000001,-0.316625],[131.30371130000003,-0.313107],[131.30510030000005,-0.307064],[131.31123430000002,-0.303163],[131.3165593000001,-0.303532],[131.32171630000005,-0.306597],[131.3235473000001,-0.305619],[131.32556230000012,-0.30125],[131.3335733,-0.301274],[131.33689930000003,-0.298116],[131.33760130000007,-0.29115],[131.33491630000003,-0.28699],[131.32823230000008,-0.280923],[131.3076943000001,-0.269288],[131.2987213,-0.260155],[131.2929693000001,-0.247195],[131.29307630000005,-0.242057],[131.2908023000001,-0.235825],[131.2920693000001,-0.231338],[131.2893223000001,-0.22678],[131.29058930000008,-0.225052],[131.29705830000012,-0.22542],[131.3013003000001,-0.221059],[131.3020633000001,-0.216337],[131.31071530000008,-0.213132],[131.3114783000001,-0.201272],[131.30740430000003,-0.200451],[131.30255230000012,-0.19422],[131.3038183000001,-0.191687],[131.30627530000004,-0.19146],[131.30743430000007,-0.189569],[131.30662630000006,-0.187543],[131.2950293,-0.174033],[131.29423630000008,-0.166887],[131.29258730000004,-0.165096],[131.2876593000001,-0.165487],[131.28633130000003,-0.167559],[131.28318830000012,-0.166393],[131.27529930000003,-0.158246],[131.25956830000007,-0.15475],[131.2572183000001,-0.152607],[131.25517330000002,-0.142929],[131.2531133000001,-0.140497],[131.2484283000001,-0.140317],[131.2417153,-0.144327],[131.23747330000003,-0.150072],[131.23477230000003,-0.151041],[131.2295693000001,-0.147859],[131.22311430000002,-0.138743],[131.20832830000006,-0.142782],[131.2003333,-0.13487],[131.19683930000008,-0.133306],[131.1929933,-0.134963],[131.19043030000012,-0.134494],[131.1881413000001,-0.128732],[131.1897583000001,-0.121595],[131.1889043000001,-0.11681],[131.17770430000007,-0.108365],[131.17564430000004,-0.102767],[131.17118930000004,-0.101547],[131.16470430000004,-0.10429],[131.16041630000007,-0.099497],[131.15356530000008,-0.095619],[131.1541443000001,-0.091186],[131.15094030000012,-0.08576],[131.1488803000001,-0.084721],[131.13845830000002,-0.083195],[131.13458330000003,-0.079895],[131.12678530000005,-0.077853],[131.11900330000003,-0.079846],[131.10467530000005,-0.080557],[131.09472730000005,-0.074707],[131.09329330000003,-0.0762],[131.0908363000001,-0.075731],[131.0867773000001,-0.070133],[131.08163530000002,-0.06753],[131.07618730000002,-0.068319],[131.07261730000005,-0.075565],[131.06691030000002,-0.071569],[131.05821330000003,-0.068958],[131.056794,-0.070849],[131.0523683,-0.070606],[131.04321330000005,-0.065625],[131.03518730000008,-0.066469],[131.03032030000008,-0.065132],[131.02906980000012,-0.062987899999939],[131.03131130000008,-0.060926],[131.04448030000003,-0.060387],[131.05032430000006,-0.056143],[131.05223130000002,-0.049982],[131.05075130000012,-0.045722],[131.0512093000001,-0.040476],[131.04750130000002,-0.031657],[131.0475163000001,-0.028374],[131.0449993000001,-0.026122],[131.04042130000005,-0.026911],[131.03772030000005,-0.03053],[131.0357523,-0.036863],[131.02996930000006,-0.040356],[131.01303130000008,-0.03668],[131.01216130000012,-0.038635],[131.01649450000002,-0.039472],[131.01522750000004,-0.04405],[131.0031593000001,-0.049149],[130.98895330000005,-0.047779],[130.9748843000001,-0.03985],[130.97309930000006,-0.042031],[130.98082030000012,-0.052196],[130.98126230000003,-0.059342],[130.9798283,-0.061929],[130.9767313000001,-0.063468],[130.9674533000001,-0.061771],[130.9655613000001,-0.06557],[130.96337930000004,-0.065734],[130.96220430000005,-0.056001],[130.96603430000005,-0.055376],[130.9648903000001,-0.052952],[130.95568930000002,-0.045556],[130.95243930000004,-0.040066],[130.95031730000005,-0.039262],[130.94802930000003,-0.039715],[130.94641130000002,-0.045179],[130.94429030000003,-0.04575],[130.94000330000006,-0.042567],[130.9384003,-0.04406],[130.93164130000002,-0.041503],[130.92163130000006,-0.035138],[130.9135143000001,-0.033729],[130.9096843000001,-0.029633],[130.9062963,-0.028929],[130.90344330000005,-0.030133],[130.90000930000008,-0.027239],[130.89376930000003,-0.026473],[130.88765030000002,-0.02254],[130.8831183000001,-0.023392],[130.8813483,-0.020389],[130.87448130000007,-0.017198],[130.86967530000004,-0.017878],[130.86801230000003,-0.016206],[130.84036330000004,-0.013755],[130.8305673000001,-0.011542],[130.82621830000005,-0.013316],[130.8229983000001,-0.01699],[130.82077030000005,-0.015426],[130.8207863,-0.012495],[130.81866530000002,-0.010867],[130.80961630000002,-0.008021],[130.79730230000007,-0.011671],[130.7938243000001,-0.008144],[130.7889563000001,-0.008137],[130.78631630000007,-0.008816],[130.7839663000001,-0.012263],[130.7810363000001,-0.011966],[130.77186630000006,-0.015397],[130.7695923000001,-0.011418],[130.7597353000001,-0.015999],[130.75817930000005,-0.018351],[130.75033630000007,-0.018616],[130.75238030000003,-0.02312],[130.7516333000001,-0.025653],[130.7433933000001,-0.024181],[130.73611530000005,-0.026527],[130.7355963000001,-0.032343],[130.73701530000005,-0.036323],[130.74504130000003,-0.036691],[130.7512673000001,-0.039186],[130.76850930000012,-0.037624],[130.77269030000002,-0.038445],[130.78109830000005,-0.044458],[130.77771030000008,-0.048304],[130.7775273000001,-0.051072],[130.7718053000001,-0.052204],[130.76791430000003,-0.049546],[130.76602230000003,-0.050804],[130.76670830000012,-0.053056],[130.7637333,-0.054604],[130.75422730000003,-0.054056],[130.75125130000004,-0.050592],[130.74913030000005,-0.050123],[130.7472993,-0.050982],[130.74688830000002,-0.05461],[130.7454073,-0.055985],[130.73571830000003,-0.048929],[130.73419230000002,-0.051693],[130.72724930000004,-0.055874],[130.7226723000001,-0.05327],[130.72233630000005,-0.051018],[130.7142033,-0.052902],[130.7084053000001,-0.056161],[130.70971730000008,-0.057952],[130.70915230000003,-0.060602],[130.70657430000006,-0.061399],[130.70468230000006,-0.060242],[130.7026833000001,-0.056208],[130.7108313000001,-0.04782],[130.7249303000001,-0.040778],[130.7278603000001,-0.036815],[130.72259530000008,-0.033397],[130.72363330000007,-0.027698],[130.71647730000007,-0.029229],[130.70954930000005,-0.028345],[130.7021493000001,-0.037827],[130.69780030000004,-0.035224],[130.6956183000001,-0.035451],[130.69343630000003,-0.040508],[130.6882783000001,-0.043377],[130.6827853000001,-0.039444],[130.67860430000007,-0.040586],[130.66748130000008,-0.045212],[130.6653603000001,-0.049988],[130.6607213000001,-0.05009],[130.66180430000009,-0.047963],[130.66055330000006,-0.046399],[130.6507573,-0.048619],[130.64852930000006,-0.050229],[130.6482853000001,-0.052645],[130.65011630000004,-0.053748],[130.6506813000001,-0.056796],[130.64541730000008,-0.060696],[130.64312830000006,-0.057061],[130.6451273,-0.055975],[130.64227330000006,-0.053949],[130.63661230000002,-0.054105],[130.6354523000001,-0.056295],[130.62927330000002,-0.052995],[130.6272133000001,-0.053566],[130.62521430000004,-0.055285],[130.62789930000008,-0.058748],[130.62519930000008,-0.06225],[130.61746330000005,-0.061366],[130.61706630000003,-0.056229],[130.60981830000003,-0.050396],[130.60099830000001,-0.049857],[130.59904530000006,-0.050943],[130.6008763000001,-0.052905],[130.59886230000006,-0.053991],[130.5937203000001,-0.052256],[130.59361330000002,-0.046666],[130.59167530000002,-0.046142],[130.5904703000001,-0.047925],[130.58834930000012,-0.042787],[130.58131430000003,-0.041153],[130.5814213000001,-0.045703],[130.5765543000001,-0.045116],[130.57472330000007,-0.047125],[130.57910230000005,-0.058548],[130.5753333,-0.058423],[130.57035930000006,-0.051667],[130.56788730000005,-0.052292],[130.56463630000007,-0.044623],[130.56515530000001,-0.04209],[130.5676883000001,-0.041863],[130.5687713000001,-0.039682],[130.5640873000001,-0.036319],[130.5568703,-0.034232],[130.55897530000004,-0.043051],[130.55754130000003,-0.048461],[130.56366030000004,-0.052855],[130.5650793000001,-0.055966],[130.5640413000001,-0.062126],[130.5679173000001,-0.068882],[130.5679173000001,-0.07118],[130.5664223000001,-0.073026],[130.56321730000002,-0.073705],[130.56076130000008,-0.072657],[130.5556183000001,-0.064581],[130.53541630000007,-0.055243],[130.5353553000001,-0.057957],[130.54753130000006,-0.069278],[130.54707430000008,-0.071757],[130.54295430000002,-0.070998],[130.5401313000001,-0.074382],[130.53790330000004,-0.073632],[130.53619430000003,-0.069825],[130.5305793000001,-0.071998],[130.5288703000001,-0.069221],[130.52864130000012,-0.064961],[130.52497930000004,-0.061724],[130.52642930000002,-0.054414],[130.51754830000004,-0.055195],[130.5137333,-0.048847],[130.5081183000001,-0.045773],[130.49571330000003,-0.045687],[130.4934853000001,-0.046484],[130.49292030000004,-0.048899],[130.5025793000001,-0.053346],[130.5055853,-0.057868],[130.50981230000002,-0.060408],[130.51249730000006,-0.066179],[130.50265530000001,-0.064445],[130.50010730000008,-0.062465],[130.48954830000002,-0.065219],[130.4885263000001,-0.067345],[130.49058630000002,-0.071369],[130.48779330000002,-0.078091],[130.48265130000004,-0.077966],[130.47219930000006,-0.070941],[130.4602053000001,-0.073912],[130.4595193,-0.075921],[130.46391330000006,-0.078054],[130.46518030000004,-0.080415],[130.46472230000006,-0.082658],[130.4608313000001,-0.085699],[130.4559183,-0.084307],[130.45410230000005,-0.08609],[130.45146230000012,-0.08534],[130.4491733000001,-0.078385],[130.4470063000001,-0.078955],[130.44654930000002,-0.083379],[130.44346630000007,-0.086709],[130.44438230000003,-0.091304],[130.44342130000007,-0.093719],[130.44096430000002,-0.094525],[130.4393013,-0.092798],[130.4337623,-0.097214],[130.4318853000001,-0.089282],[130.42628530000002,-0.083874],[130.4250803000001,-0.079669],[130.42604130000007,-0.075598],[130.4282233,-0.074041],[130.42604130000007,-0.072775],[130.41433830000005,-0.086438],[130.41828930000008,-0.087712],[130.42343230000006,-0.087087],[130.42570530000012,-0.089157],[130.42628530000002,-0.092142],[130.42205830000012,-0.103288],[130.41943430000003,-0.103804],[130.41851830000007,-0.101272],[130.41618430000005,-0.100866],[130.41291830000011,-0.10339],[130.40995830000008,-0.103102],[130.40658630000007,-0.099476],[130.40464830000008,-0.10143],[130.4069833000001,-0.108847],[130.4031073000001,-0.111481],[130.40304630000003,-0.113552],[130.40094030000012,-0.114069],[130.3914493000001,-0.112326],[130.38722230000008,-0.109397],[130.38830630000007,-0.104855],[130.39492830000006,-0.095265],[130.39480630000003,-0.088833],[130.3887033000001,-0.083761],[130.38966430000005,-0.079626],[130.39270030000012,-0.078024],[130.39241130000005,-0.075781],[130.3841863,-0.074445],[130.3791053000001,-0.07944],[130.37579430000005,-0.080237],[130.3724833000001,-0.079831],[130.36813430000007,-0.07408],[130.35762130000012,-0.074527],[130.35620230000006,-0.075965],[130.3582613000001,-0.077629],[130.3675393000001,-0.077937],[130.36947650000002,-0.083298],[130.36494530000004,-0.083561],[130.36007730000006,-0.081771],[130.3555153000001,-0.082397],[130.35453830000006,-0.080037],[130.35197530000005,-0.080725],[130.34986930000002,-0.085384],[130.3510593000001,-0.090033],[130.35540830000002,-0.09119],[130.35684230000004,-0.096879],[130.36494530000004,-0.096668],[130.3691103000001,-0.099887],[130.36540230000003,-0.10414],[130.37089630000003,-0.116268],[130.36781330000008,-0.120918],[130.36273230000006,-0.121544],[130.35975730000007,-0.123608],[130.3560493000001,-0.129299],[130.34936530000004,-0.134285],[130.34719930000006,-0.134051],[130.34445230000006,-0.128588],[130.3443453000001,-0.118475],[130.33679230000007,-0.112435],[130.33679230000007,-0.110364],[130.34513930000003,-0.103649],[130.34124830000007,-0.099507],[130.34050030000003,-0.096577],[130.34364330000005,-0.090488],[130.3435823000001,-0.087783],[130.33923430000004,-0.083298],[130.3399813000001,-0.078585],[130.33558730000004,-0.078351],[130.3339843000001,-0.081048],[130.33261130000005,-0.087082],[130.3352973000001,-0.093575],[130.3281713,-0.094663],[130.33512930000006,-0.102314],[130.33479330000011,-0.106909],[130.33003230000008,-0.112062],[130.32954430000007,-0.108222],[130.32095430000004,-0.104992],[130.3175513000001,-0.1062],[130.31784130000005,-0.10867],[130.31018130000007,-0.109179],[130.30828930000007,-0.108374],[130.3076023000001,-0.103942],[130.30468830000007,-0.102451],[130.29933230000006,-0.10399],[130.29579230000002,-0.103358],[130.28744530000006,-0.094325],[130.2824713000001,-0.093738],[130.27984630000003,-0.094653],[130.28613330000007,-0.100757],[130.28602630000012,-0.105587],[130.2784273000001,-0.111723],[130.2720343000001,-0.112575],[130.2673503000001,-0.111419],[130.26866230000007,-0.118664],[130.27740530000005,-0.123329],[130.28038030000005,-0.13259],[130.2793583,-0.134716],[130.2723853000001,-0.130856],[130.27055430000007,-0.13206],[130.2693643,-0.142002],[130.2721103,-0.149074],[130.2821053,-0.150925],[130.28221130000009,-0.153449],[130.28443930000003,-0.154262],[130.29374730000006,-0.151337],[130.29489230000001,-0.156574],[130.29347330000007,-0.161568],[130.29759230000002,-0.163303],[130.29695230000004,-0.166289],[130.28982630000007,-0.168236],[130.28799430000004,-0.170073],[130.2881013000001,-0.172199],[130.29284730000006,-0.177715],[130.31604030000005,-0.180565],[130.33346630000005,-0.19145],[130.34112630000004,-0.193411],[130.3437503,-0.192496],[130.3437963,-0.189104],[130.33688430000007,-0.1795],[130.33882230000006,-0.170824],[130.3353433000001,-0.161916],[130.33053630000006,-0.157937],[130.32545530000004,-0.157188],[130.31900130000008,-0.151374],[130.31927530000007,-0.145168],[130.3207093000001,-0.142699],[130.32275430000004,-0.142128],[130.32762230000003,-0.142072],[130.33030730000007,-0.145698],[130.33944730000007,-0.148644],[130.34944230000008,-0.159287],[130.3525853000001,-0.16067],[130.3551493000001,-0.159756],[130.35166930000003,-0.156184],[130.35548430000006,-0.15062],[130.35138030000007,-0.144922],[130.35125830000004,-0.140381],[130.3532563000001,-0.138716],[130.35823130000006,-0.139411],[130.36193930000002,-0.142232],[130.36485330000005,-0.15494],[130.36828630000002,-0.158159],[130.3647463000001,-0.162123],[130.36605930000007,-0.165632],[130.3684703,-0.166264],[130.37234530000012,-0.172188],[130.37498530000005,-0.171789],[130.37686230000008,-0.173172],[130.37846430000002,-0.171742],[130.37336730000004,-0.162364],[130.37336730000004,-0.160121],[130.3802803000001,-0.16266],[130.38240130000008,-0.166974],[130.3846893000001,-0.168412],[130.38983230000008,-0.169568],[130.39291430000003,-0.166301],[130.39531030000012,-0.167105],[130.39560030000007,-0.164636],[130.40078830000004,-0.160274],[130.40638830000012,-0.16304],[130.40872230000002,-0.162813],[130.4071203000001,-0.153732],[130.40210030000003,-0.150504],[130.4028323000001,-0.146596],[130.40129130000003,-0.144525],[130.40231430000006,-0.142055],[130.39444030000004,-0.142221],[130.39012230000003,-0.136391],[130.38884030000008,-0.129342],[130.39025930000003,-0.127677],[130.39531030000012,-0.127670699999953],[130.39994830000012,-0.130236],[130.41336130000002,-0.132848799999977],[130.41659630000004,-0.13656],[130.41514630000006,-0.141577],[130.4111183000001,-0.145291],[130.41151430000002,-0.148049],[130.40905830000008,-0.151551],[130.41507030000002,-0.160296],[130.4151773000001,-0.165524],[130.4116983,-0.168565],[130.3684703,-0.177816],[130.36624230000007,-0.179083],[130.36653230000002,-0.183732],[130.3708653000001,-0.186381],[130.3778383,-0.185592],[130.38172930000007,-0.188069],[130.3902283000001,-0.182439],[130.4013063000001,-0.18211],[130.41142330000002,-0.178452],[130.4172523000001,-0.17817],[130.41975430000002,-0.182999],[130.42195230000004,-0.18038],[130.42433230000006,-0.184725],[130.42964230000007,-0.187265],[130.43261730000006,-0.193243],[130.43495230000008,-0.192555],[130.4374703000001,-0.194002],[130.44039930000008,-0.197733],[130.43501330000004,-0.199285],[130.43095430000005,-0.197269],[130.4286813000001,-0.200997],[130.4270173000001,-0.199731],[130.42428630000006,-0.203296],[130.41856430000007,-0.204718],[130.4163363,-0.203968],[130.4126893,-0.206665],[130.4131473000001,-0.208736],[130.40560930000004,-0.208214],[130.40052830000002,-0.211482],[130.39737030000003,-0.215612],[130.40177930000004,-0.217661599999929],[130.39802630000008,-0.22297],[130.3992773000001,-0.224752],[130.40379430000007,-0.224754],[130.40002530000004,-0.227574],[130.39259430000004,-0.225496],[130.3905343,-0.227849],[130.39151030000005,-0.229802],[130.3901373000001,-0.231349],[130.3856353000001,-0.231577],[130.3856813000001,-0.23382],[130.38066130000004,-0.23318],[130.37489330000005,-0.234892],[130.37170430000003,-0.239895],[130.36462430000006,-0.242177],[130.36102330000006,-0.241373],[130.35955830000012,-0.233114],[130.37120130000005,-0.237003],[130.37197930000002,-0.231329],[130.36808830000007,-0.227241],[130.36317530000008,-0.226375],[130.36563130000002,-0.224764],[130.3658153,-0.222294],[130.3633423000001,-0.218785],[130.36312930000008,-0.213835],[130.36706630000003,-0.213854],[130.36363230000006,-0.207125],[130.36088630000006,-0.207352],[130.35678130000008,-0.204124],[130.34849630000008,-0.205665],[130.34301830000004,-0.20497],[130.33404630000007,-0.209786],[130.33233730000006,-0.211505],[130.32919330000004,-0.221619],[130.3254243,-0.219603],[130.31703230000005,-0.220909],[130.30641230000003,-0.218542],[130.3029183000001,-0.221755],[130.29361030000007,-0.218529],[130.28361530000006,-0.221445],[130.27156130000003,-0.218672],[130.2560883000001,-0.224684],[130.26037630000008,-0.217617],[130.2581943,-0.215085],[130.2418063,-0.207538],[130.22850130000006,-0.205742],[130.2267303000001,-0.207118],[130.21507330000009,-0.205376],[130.20851230000005,-0.211403],[130.20909130000007,-0.215537],[130.2109683000001,-0.218593],[130.21440130000008,-0.220257],[130.2265023000001,-0.224649],[130.23651230000007,-0.226156],[130.2419893000001,-0.228913],[130.2522133000001,-0.23014],[130.26895230000002,-0.228325],[130.27957230000004,-0.23023],[130.28151030000004,-0.236724],[130.30339130000004,-0.248883],[130.3094483000001,-0.256018],[130.30894530000012,-0.26538],[130.30569530000002,-0.270664],[130.30432230000008,-0.276526],[130.30757230000006,-0.277511],[130.3110663000001,-0.276017],[130.31294330000003,-0.273954],[130.3119203000001,-0.269413],[130.3134003,-0.266826],[130.32022130000007,-0.266099],[130.31694130000005,-0.274305],[130.31951930000002,-0.27511],[130.32995630000005,-0.26455],[130.33097830000008,-0.259782],[130.33310030000007,-0.258687],[130.34343030000002,-0.261062],[130.3470923000001,-0.258366],[130.35138030000007,-0.259802],[130.35377530000005,-0.264288],[130.35315030000004,-0.26958],[130.35435530000007,-0.271244],[130.35617130000003,-0.269299],[130.3578953000001,-0.273206],[130.3600623000001,-0.273612],[130.36058130000004,-0.268673],[130.36326630000008,-0.268102],[130.3651433000001,-0.269594],[130.36737130000006,-0.276667],[130.36692830000004,-0.281145],[130.36886630000004,-0.28213],[130.37486330000002,-0.281386],[130.37515330000008,-0.28363],[130.38262930000008,-0.279276],[130.37657230000002,-0.273398],[130.37513830000012,-0.275009],[130.37359630000003,-0.273571],[130.36914130000002,-0.273799],[130.36714230000007,-0.265577],[130.36988830000007,-0.264771],[130.3783423000001,-0.266225],[130.38183630000003,-0.264077],[130.38404930000002,-0.266693],[130.38244730000008,-0.271515],[130.3872533000001,-0.270482],[130.38713130000008,-0.272897],[130.3887333,-0.274163],[130.39096130000007,-0.273764],[130.39106830000003,-0.271584],[130.3932503000001,-0.270607],[130.39404330000002,-0.273022],[130.40124530000003,-0.271074],[130.40374830000007,-0.266885],[130.4060373000001,-0.267699],[130.4107213000001,-0.263445],[130.42259230000002,-0.263803],[130.42248530000006,-0.266626],[130.42465230000005,-0.26714],[130.43002330000002,-0.274565],[130.43402130000004,-0.276355],[130.43443330000002,-0.283302],[130.43231230000004,-0.285374],[130.42106730000012,-0.286219],[130.42141730000003,-0.289095],[130.42633130000002,-0.292142],[130.43118330000004,-0.290431],[130.4398043000001,-0.292047],[130.44220030000008,-0.291133],[130.4453893000001,-0.277174],[130.44990630000007,-0.275164],[130.4512793,-0.273101],[130.4500733000001,-0.271311],[130.45640630000003,-0.263276],[130.4658823000001,-0.261853],[130.47291630000007,-0.263469],[130.47508330000005,-0.267322],[130.47976730000005,-0.263078],[130.4894723000001,-0.259701],[130.5070803000001,-0.24836],[130.50947630000007,-0.248079],[130.51326030000007,-0.25062],[130.51754830000004,-0.251269],[130.52092030000006,-0.256985],[130.5233773000001,-0.258402499999931],[130.52417030000004,-0.264365],[130.5215303000001,-0.266085],[130.5192873000001,-0.273449],[130.5152743000001,-0.277014],[130.51480130000004,-0.279086],[130.51623630000006,-0.280533],[130.51525930000003,-0.282424],[130.5119323,-0.285012],[130.51156630000003,-0.296183],[130.50938430000008,-0.301069],[130.5141913000001,-0.308114],[130.51634230000002,-0.315322],[130.5229343000001,-0.31286],[130.5284273000001,-0.313229],[130.53347830000007,-0.311454],[130.53799530000003,-0.312909],[130.53460730000006,-0.317559],[130.54065030000004,-0.332555],[130.53884930000004,-0.347183],[130.5398563000001,-0.362279],[130.54190130000006,-0.366267],[130.5397653000001,-0.369944],[130.54190130000006,-0.372075],[130.54229830000008,-0.376625],[130.54205330000002,-0.382903],[130.53700330000004,-0.391181],[130.53910930000006,-0.392691],[130.54330530000004,-0.391432],[130.5484623000001,-0.386563],[130.55113330000006,-0.398893],[130.54582330000005,-0.420414],[130.53595030000008,-0.431507],[130.53755230000002,-0.436862],[130.5421913,-0.434925],[130.54321330000005,-0.436706],[130.54556330000003,-0.435792],[130.54843230000006,-0.438857],[130.55777030000002,-0.433933],[130.55743430000007,-0.431798],[130.5592653000001,-0.430939],[130.5594493000001,-0.423566],[130.56190530000003,-0.422941],[130.55928130000007,-0.418266],[130.56420930000002,-0.414076],[130.56433130000005,-0.412058],[130.5661623000001,-0.411027],[130.56549130000008,-0.408087],[130.5716863,-0.40074],[130.57586730000003,-0.399888],[130.5786293000001,-0.39569],[130.57771330000003,-0.393094],[130.57908730000008,-0.390905],[130.5840763000001,-0.389311],[130.5851143000001,-0.386832],[130.5811013000001,-0.382329],[130.5804293000001,-0.379271],[130.5845643,-0.371744],[130.5831303000001,-0.369085],[130.58021630000007,-0.367521],[130.5752873,-0.367333],[130.5702523000001,-0.372509],[130.5656133000001,-0.371805],[130.55918930000007,-0.37547],[130.55461230000003,-0.376322],[130.55380330000003,-0.373953],[130.5565653000001,-0.370795],[130.55583230000002,-0.366299],[130.55703830000004,-0.36354],[130.56127930000002,-0.36021],[130.56712430000005,-0.359077],[130.56936730000007,-0.353377],[130.56857330000003,-0.347561],[130.5717323,-0.344801],[130.57418830000006,-0.341236],[130.5740823000001,-0.338188],[130.57643230000008,-0.336469],[130.57174730000008,-0.333114],[130.5729523000001,-0.330581],[130.567979,-0.328149],[130.56843630000003,-0.325264],[130.57577530000003,-0.3237952],[130.58339030000002,-0.324508],[130.5977183000001,-0.31913],[130.60017430000005,-0.316714],[130.60377530000005,-0.31863],[130.60682730000008,-0.310868],[130.6101083000001,-0.306842],[130.61164930000007,-0.308695],[130.60894830000007,-0.312486],[130.61203030000001,-0.315489],[130.61805830000003,-0.311823],[130.61908030000006,-0.314066],[130.62652630000002,-0.312598],[130.62902930000007,-0.309287],[130.63179130000003,-0.314622],[130.6302343000001,-0.316694],[130.63264530000004,-0.31682],[130.63987830000008,-0.310395],[130.64439430000004,-0.310982],[130.6529243000001,-0.309043],[130.6568913000001,-0.307793],[130.6602183000001,-0.304111],[130.6645053000001,-0.304127],[130.66600130000006,-0.302055],[130.66789330000006,-0.302923],[130.6694953000001,-0.297974],[130.67477530000008,-0.29534],[130.67952030000004,-0.296162],[130.67956630000003,-0.300884],[130.6810613,-0.303081],[130.68551730000001,-0.304645],[130.6908423000001,-0.304489],[130.69244430000003,-0.306108],[130.6912393,-0.30893],[130.6939393,-0.308188],[130.69564830000002,-0.309689],[130.6921393,-0.315615],[130.69203230000005,-0.318374],[130.6942603000001,-0.319187],[130.6953893000001,-0.324496],[130.70179830000006,-0.330157],[130.69659430000002,-0.330867],[130.69360430000006,-0.335551],[130.68711930000006,-0.336503],[130.68306030000008,-0.338974],[130.67509530000007,-0.338778],[130.66919030000008,-0.342217],[130.66906730000005,-0.344288],[130.67285230000005,-0.344242],[130.67680430000007,-0.346963],[130.68109130000005,-0.345533],[130.68446430000006,-0.348887],[130.6849833000001,-0.353555],[130.6905223000001,-0.357542],[130.69274930000006,-0.364687],[130.6960603000001,-0.367174],[130.6947943,-0.369535],[130.69650330000002,-0.374727],[130.70262230000003,-0.384593],[130.70060730000012,-0.386023],[130.6962433000001,-0.396382],[130.70332430000008,-0.400839],[130.7045293000001,-0.405506],[130.70330830000012,-0.411323],[130.70015030000002,-0.41506],[130.7018743000001,-0.416389],[130.70541430000003,-0.415197],[130.70735230000003,-0.421987],[130.71199130000002,-0.430072],[130.71575930000006,-0.433074],[130.71649230000003,-0.43832],[130.72357230000011,-0.446287],[130.73634430000004,-0.446382],[130.74778830000002,-0.449761],[130.76561030000005,-0.449809],[130.76727330000006,-0.448036],[130.7663583000001,-0.44354],[130.77168330000006,-0.442109],[130.77409430000012,-0.445347],[130.77987730000007,-0.444956],[130.78100630000006,-0.44709],[130.78993230000003,-0.451321],[130.7946323000001,-0.447882],[130.7983703000001,-0.440409],[130.8006143,-0.439892],[130.80941830000006,-0.446891],[130.8196263000001,-0.438918],[130.83221530000003,-0.438199],[130.84712230000002,-0.428913],[130.85234130000003,-0.430485],[130.85394330000008,-0.428594],[130.8619543000001,-0.428039],[130.86808830000007,-0.430878],[130.8694613,-0.429159],[130.8731233000001,-0.430605],[130.8756413000001,-0.429979],[130.87420730000008,-0.427673],[130.87527520000003,-0.423658],[130.88012730000003,-0.419566],[130.88031030000002,-0.415071],[130.8886113000001,-0.41343],[130.88867230000005,-0.410663],[130.89085430000011,-0.409233],[130.8951423000001,-0.411601],[130.90023830000007,-0.409953],[130.90701330000002,-0.402135],[130.90832530000012,-0.406287],[130.91117930000007,-0.406005],[130.9236913000001,-0.393835],[130.92306530000008,-0.391582],[130.92501830000003,-0.391075],[130.9286813000001,-0.393326],[130.93240430000003,-0.391724],[130.93113730000005,-0.389246],[130.92181430000005,-0.383053],[130.92056330000003,-0.379073],[130.92211930000008,-0.375219],[130.9172523000001,-0.373366],[130.9161693000001,-0.371169],[130.92111230000012,-0.366463],[130.92321830000003,-0.3663],[130.92573630000004,-0.369881],[130.93060330000003,-0.369888],[130.93220530000008,-0.373298],[130.9347233000001,-0.374165],[130.9409793000001,-0.365199],[130.94120830000008,-0.36111],[130.93766830000004,-0.358624],[130.92804030000002,-0.359975],[130.93028330000004,-0.355777],[130.92680430000007,-0.347818],[130.92636130000005,-0.338601],[130.91653530000008,-0.327623],[130.91763330000003,-0.320485],[130.9155273,-0.318641],[130.91650430000004,-0.316397],[130.91546730000005,-0.314317],[130.90246630000001,-0.314448],[130.90332130000002,-0.31647],[130.89965930000005,-0.318185],[130.8936013000001,-0.324219],[130.8876193000001,-0.325751],[130.88415580000003,-0.325167299999976],[130.87889560000008,-0.320719799999949],[130.85894830000007,-0.32112],[130.84721430000002,-0.318266],[130.84417830000007,-0.31549],[130.84315530000003,-0.312831],[130.84419330000003,-0.307539],[130.8425453000001,-0.302239],[130.82136530000002,-0.296122],[130.80635130000007,-0.302296],[130.8054813000001,-0.304893],[130.80668730000002,-0.306792],[130.8133243000001,-0.308888],[130.81463630000007,-0.313438],[130.81285130000003,-0.317753],[130.80586330000006,-0.319755],[130.80632030000004,-0.317511],[130.80094930000007,-0.312538],[130.79710430000011,-0.314484],[130.7909853000001,-0.312333],[130.78744530000006,-0.305876],[130.78762830000005,-0.303452],[130.78361530000006,-0.302178],[130.78172330000007,-0.303897],[130.78102130000002,-0.308501],[130.77902330000006,-0.308267],[130.77851930000008,-0.299339],[130.77502530000004,-0.298113399999977],[130.76780730000007,-0.301324],[130.76551830000005,-0.300908],[130.76016330000004,-0.29374],[130.74864230000003,-0.297115],[130.7411353000001,-0.294965],[130.73666430000003,-0.29939],[130.73191830000007,-0.300178],[130.72607530000005,-0.297801],[130.72436630000004,-0.295775],[130.72580030000006,-0.293767],[130.7322693000001,-0.290391],[130.73187330000007,-0.288256],[130.73869430000002,-0.283894],[130.73635930000012,-0.280258],[130.73178130000008,-0.277537],[130.72869930000002,-0.271079],[130.72520530000008,-0.268882],[130.7202003000001,-0.252566],[130.71608030000004,-0.249962],[130.7187203000001,-0.246053],[130.71769730000005,-0.243973],[130.71518030000004,-0.244083],[130.7167363000001,-0.239885],[130.7020883,-0.226131],[130.6936343000001,-0.213778],[130.69221530000004,-0.210432],[130.6938173000001,-0.208993],[130.69221530000004,-0.207727],[130.69262730000003,-0.205131],[130.6911933,-0.202598],[130.6765143,-0.188555],[130.67028830000004,-0.174826],[130.66565030000004,-0.171933],[130.6650853000001,-0.169627],[130.66046230000006,-0.167313],[130.65565530000003,-0.161941],[130.65583830000003,-0.159056],[130.6525123,-0.155077],[130.64730930000007,-0.151894],[130.63804730000004,-0.149039],[130.63060030000008,-0.149765],[130.6257333000001,-0.148021],[130.62155230000008,-0.150085399999966],[130.6183933000001,-0.14938],[130.61399930000005,-0.146949],[130.61291530000005,-0.144642],[130.61320530000012,-0.135253],[130.61509730000012,-0.133588],[130.6167613,-0.13527],[130.6161813000001,-0.138436],[130.61788930000012,-0.143799],[130.62870830000008,-0.144691],[130.6256413000001,-0.135122],[130.6266793000001,-0.13305],[130.62004130000003,-0.126639],[130.61259530000007,-0.124199],[130.61300730000005,-0.121947],[130.61587630000008,-0.121674],[130.6228033000001,-0.116796],[130.63317930000005,-0.116594],[130.63317930000005,-0.114061],[130.63638330000003,-0.113038],[130.641021,-0.114600099999961]]],[[[130.1221773000001,-0.005888],[130.11909530000003,-0.005759],[130.1204533,-0.007896],[130.1228033000001,-0.007905],[130.1221773000001,-0.005888]]],[[[130.11012330000005,-0.004146],[130.0962833000001,0.008309],[130.0867313000001,0.01022],[130.08207730000004,-0.002735],[130.08332830000006,-0.006127],[130.0864113,-0.005782],[130.09436130000006,-0.01298],[130.09504730000003,-0.021193],[130.0983583000001,-0.024883],[130.1033943000001,-0.027359],[130.10504230000004,-0.0319],[130.10453830000006,-0.037128],[130.10243230000003,-0.039083],[130.09539830000006,-0.040623],[130.09106530000008,-0.0382],[130.0901493,-0.040272],[130.0927743000001,-0.048548],[130.0967263000001,-0.051776],[130.08877630000006,-0.051761],[130.0869603000001,-0.053371],[130.09237730000007,-0.059466],[130.08958430000007,-0.068486],[130.09101930000008,-0.070557],[130.0978093000001,-0.072807],[130.1020363,-0.070806],[130.1041573000001,-0.071611],[130.10696430000007,-0.08564],[130.10594230000004,-0.091845],[130.10771230000012,-0.095182],[130.11142030000008,-0.098058],[130.11354130000007,-0.097831],[130.11450230000003,-0.093],[130.1181643000001,-0.091461],[130.12335230000008,-0.101292],[130.13072230000012,-0.101018],[130.13340830000004,-0.099868],[130.1332403,-0.097336],[130.13848930000006,-0.095163],[130.14219730000002,-0.091145],[130.14259430000004,-0.086658],[130.14442530000008,-0.084595],[130.14465430000007,-0.076897],[130.1465303000001,-0.075513],[130.14848430000006,-0.077873],[130.15029930000003,-0.073449],[130.15995830000008,-0.070415],[130.15829530000008,-0.068525],[130.14938430000007,-0.065173],[130.14646930000004,-0.060687],[130.14709530000005,-0.041728],[130.14172430000008,-0.048902],[130.13601730000005,-0.048551],[130.1299593000001,-0.040955],[130.12509230000012,-0.037555],[130.12332230000004,-0.038931],[130.12344430000007,-0.043933],[130.12138430000005,-0.043934],[130.11790530000007,-0.041972],[130.11590630000012,-0.043411],[130.11322130000008,-0.039902],[130.1087043000001,-0.037308],[130.10905530000002,-0.034838],[130.11526530000003,-0.032837],[130.1155553000001,-0.02864],[130.12567230000002,-0.027677],[130.13291930000003,-0.030841],[130.13458330000003,-0.029293],[130.1332553000001,-0.027051],[130.13610930000004,-0.02022],[130.1295473,-0.01825],[130.11178630000006,-0.01898],[130.11160330000007,-0.016854],[130.11418230000004,-0.016456],[130.11326630000008,-0.014267],[130.10566730000005,-0.010353],[130.10423330000003,-0.007875],[130.10583530000008,-0.006617],[130.1117253000001,-0.008342],[130.11012330000005,-0.004146]]],[[[130.92973330000007,-0.008711],[130.94976830000007,-0.000219],[130.96125830000005,0.007557],[130.9616403000001,0.01584],[130.95895430000007,0.017184],[130.9472353000001,0.018057],[130.93991130000006,0.020993],[130.93319730000007,0.020639],[130.92536930000006,0.016633],[130.92060930000002,0.009332],[130.92059330000006,-0.000169],[130.9177863000001,-0.00394],[130.91740430000004,-0.009299],[130.91984630000002,-0.011618],[130.92460730000005,-0.011748],[130.92973330000007,-0.008711]]],[[[130.8759463,0.028167],[130.8675243,0.032567],[130.86335830000007,0.024656],[130.8671273000001,0.015514],[130.87909030000003,0.010865],[130.88604830000008,0.010244],[130.88934430000006,0.010847],[130.8968053000001,0.020579],[130.89682030000006,0.026426],[130.89096130000007,0.03143],[130.88375930000007,0.030712],[130.8792423000001,0.027632],[130.8759463,0.028167]]],[[[131.07335310000008,0.37749580000002],[131.0643351000001,0.389814800000067],[131.04872610000007,0.399707800000044],[131.04445310000006,0.398983800000053],[131.03845610000008,0.394852800000024],[131.03148310000006,0.382926800000064],[131.03598410000006,0.376463800000067],[131.05589710000004,0.375698800000066],[131.05539310000006,0.373750800000039],[131.04806910000002,0.368524800000046],[131.04611610000006,0.364995800000031],[131.04720010000005,0.36121780000002],[131.05061710000007,0.358288800000025],[131.05440210000006,0.358038800000031],[131.0647781,0.352539800000045],[131.07552010000006,0.353130800000031],[131.07796110000004,0.354465800000071],[131.07980810000004,0.359578800000065],[131.08017410000002,0.363232800000048],[131.07335310000008,0.37749580000002]]],[[[131.14215480000007,0.386844900000028],[131.14679280000007,0.389882900000032],[131.14607580000006,0.398166900000035],[131.14364980000005,0.406940900000052],[131.13949980000007,0.412672900000075],[131.1353488000001,0.41365490000004],[131.13154980000002,0.399896900000044],[131.13238880000006,0.394413900000075],[131.13666180000007,0.387463900000057],[131.14215480000007,0.386844900000028]]],[[[131.1806421000001,0.482026700000063],[131.18345010000007,0.485066700000061],[131.1827181000001,0.48847870000003],[131.17858210000009,0.494575700000041],[131.16698610000003,0.503852700000039],[131.15992110000002,0.515924700000028],[131.15540510000005,0.519099700000027],[131.1475921000001,0.520208700000069],[131.14441810000005,0.516194700000028],[131.14501310000003,0.50985970000005],[131.1490421000001,0.501447700000028],[131.1569611000001,0.491445700000043],[131.17171610000003,0.482893700000034],[131.17806410000003,0.48105570000007],[131.1806421000001,0.482026700000063]]],[[[131.2225251000001,0.556229200000075],[131.22399010000004,0.560855200000049],[131.22205210000004,0.568167200000062],[131.2013151000001,0.578191200000049],[131.1870331,0.582235200000071],[131.1836151000001,0.581266200000073],[131.1792051000001,0.576279200000045],[131.1795711000001,0.572381200000052],[131.18237910000005,0.569209200000046],[131.19139710000002,0.564808200000073],[131.2065341000001,0.561006200000065],[131.2166661000001,0.554777200000046],[131.2225251000001,0.556229200000075]]]]},"properties":{"shapeName":"Raja Ampat","shapeISO":"","shapeID":"22746128B54793503897310","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[102.44294660000008,-3.5275336],[102.45066790000004,-3.530109],[102.45545680000004,-3.529283299999975],[102.46585460000006,-3.5321247],[102.47203940000009,-3.530932499999949],[102.48088750000005,-3.519705599999952],[102.48716260000003,-3.516072599999973],[102.49688050000003,-3.513582499999927],[102.49760830000008,-3.506769199999951],[102.50054070000004,-3.500789499999939],[102.50901410000006,-3.498091599999952],[102.50875990000009,-3.4956643],[102.51174680000008,-3.493973899999958],[102.51212330000004,-3.4977503],[102.51846980000005,-3.496025],[102.53314270000004,-3.496133399999962],[102.56564130000004,-3.507663899999955],[102.58371380000006,-3.517836899999963],[102.59438230000006,-3.525643699999932],[102.60101360000004,-3.525936499999943],[102.62458930000008,-3.516417499999932],[102.62819810000008,-3.5164362],[102.63069960000007,-3.523050799999965],[102.63750790000006,-3.532632799999931],[102.65504250000004,-3.540660699999933],[102.661519,-3.542057299999954],[102.66337320000008,-3.5383489],[102.66905830000007,-3.539669699999934],[102.68475460000008,-3.539596199999949],[102.68246090000008,-3.545116399999927],[102.67744860000005,-3.548420399999941],[102.68753160000006,-3.546270499999935],[102.70594850000003,-3.547264],[102.72219140000004,-3.552597299999945],[102.729481,-3.551221899999973],[102.75101020000005,-3.543156799999963],[102.77491910000003,-3.546911399999942],[102.78490730000004,-3.540675399999941],[102.796376,-3.537381],[102.81019040000007,-3.530074599999978],[102.81886010000005,-3.527632399999959],[102.82444880000008,-3.529091299999948],[102.82736950000003,-3.5351283],[102.83793080000004,-3.537375899999972],[102.847578,-3.537108899999964],[102.85144340000005,-3.5453153],[102.86008970000006,-3.548108299999967],[102.86288420000005,-3.552872299999933],[102.869075,-3.557412299999953],[102.88580020000006,-3.578807799999936],[102.89003860000008,-3.596639],[102.88971130000004,-3.605082099999947],[102.89198130000005,-3.609415699999943],[102.90278260000008,-3.616264499999943],[102.90386020000005,-3.614878699999963],[102.90364720000008,-3.608386399999972],[102.91355530000004,-3.593317899999931],[102.924289,-3.587951099999941],[102.93544510000004,-3.578257899999926],[102.94162810000006,-3.56669],[102.94122820000007,-3.552096099999972],[102.94385650000004,-3.547775599999966],[102.94351840000007,-3.540105],[102.94660470000008,-3.5357588],[102.95170470000005,-3.530847899999969],[102.95451750000007,-3.530023299999925],[102.978164,-3.527057799999966],[102.98300540000008,-3.524896499999954],[102.99078960000008,-3.516663499999936],[102.99220040000006,-3.512815],[102.990534,-3.506517899999949],[102.98804360000008,-3.503725399999951],[102.98861020000004,-3.498152399999981],[102.98639720000006,-3.495360499999947],[102.99664980000006,-3.474793599999941],[102.99832550000008,-3.468798399999969],[102.99118450000009,-3.461367899999971],[102.99009680000006,-3.451053299999955],[102.992444,-3.448224799999934],[102.99317390000004,-3.438517799999943],[102.99923060000003,-3.435334399999931],[102.99815390000003,-3.425954599999955],[102.99119370000005,-3.417564699999957],[102.99160230000007,-3.412085199999979],[102.99193020000007,-3.407687499999952],[102.99470460000003,-3.404041799999959],[102.99465230000004,-3.399761799999965],[102.99930660000007,-3.39477],[102.99601670000004,-3.391203],[102.989434,-3.3697435],[102.98546660000005,-3.366684899999939],[102.98313940000008,-3.367172499999981],[102.97883960000007,-3.364379799999938],[102.97732760000008,-3.365328899999952],[102.97110440000006,-3.364535],[102.969021,-3.362141299999962],[102.96820090000006,-3.363537599999972],[102.96596140000008,-3.3620911],[102.96457510000005,-3.3641418],[102.96372380000008,-3.360900099999981],[102.96253160000003,-3.3622417],[102.96144090000007,-3.360589799999957],[102.96093120000006,-3.362296399999934],[102.95906940000003,-3.361520699999971],[102.95809420000006,-3.362894799999935],[102.95765090000003,-3.360412499999939],[102.95574480000005,-3.363936499999966],[102.95244240000005,-3.363382399999978],[102.95033560000007,-3.364537399999961],[102.948741,-3.362961299999938],[102.94730030000005,-3.366130799999951],[102.94632510000008,-3.365000399999929],[102.94307190000006,-3.366329499999949],[102.94259540000007,-3.363936099999933],[102.93796990000004,-3.366844299999968],[102.939798,-3.368783199999939],[102.93489550000004,-3.369392499999947],[102.93389840000003,-3.368146099999933],[102.93157180000009,-3.370528099999945],[102.92852510000006,-3.368810899999971],[102.92293020000005,-3.368423099999973],[102.92378880000007,-3.370140399999968],[102.91655970000005,-3.372217699999965],[102.91428850000005,-3.375735299999974],[102.91007850000005,-3.3782834],[102.90830580000005,-3.3766493],[102.90199080000008,-3.377397099999939],[102.89985810000007,-3.376150699999926],[102.89235210000004,-3.375901399999975],[102.88572070000004,-3.365747399999975],[102.89100630000007,-3.360590899999977],[102.88293490000007,-3.347151399999973],[102.886591,-3.340753199999938],[102.89147050000008,-3.336789],[102.89477040000008,-3.328025399999945],[102.87924980000008,-3.333605299999931],[102.87000480000006,-3.344501199999968],[102.86439170000006,-3.343510699999968],[102.85683910000006,-3.344669799999963],[102.85151510000009,-3.341158199999938],[102.83599620000007,-3.3420644],[102.83475020000009,-3.341384799999958],[102.83486350000004,-3.3339085],[102.83282450000007,-3.333455399999934],[102.81775870000007,-3.333568699999944],[102.81311440000007,-3.336627199999953],[102.80903640000008,-3.330510199999935],[102.79884150000004,-3.321108299999935],[102.79600960000005,-3.311366499999963],[102.79612290000006,-3.306042499999933],[102.79068560000007,-3.289617399999941],[102.78875990000006,-3.288031499999931],[102.77981110000007,-3.287351899999976],[102.77539330000008,-3.281008399999962],[102.77312770000003,-3.280442],[102.76888060000005,-3.283964],[102.76236650000004,-3.282481],[102.76046320000006,-3.2836779],[102.75896380000006,-3.2882142],[102.75065410000008,-3.294891499999949],[102.74854670000008,-3.298339699999929],[102.74367580000006,-3.315784299999962],[102.72648050000004,-3.315553099999931],[102.724875,-3.317040299999974],[102.70591750000006,-3.318914399999926],[102.70111610000004,-3.317778799999928],[102.696309,-3.319090399999936],[102.68759320000004,-3.318737599999963],[102.67525680000006,-3.322241],[102.67042170000008,-3.329611599999964],[102.650182,-3.339231099999949],[102.64180240000007,-3.3497063],[102.63649310000005,-3.352761399999963],[102.632981,-3.343387799999959],[102.628765,-3.341177799999969],[102.61561930000005,-3.337741199999925],[102.60986940000004,-3.333643699999925],[102.59621390000007,-3.333448799999928],[102.590824,-3.331154499999968],[102.58430340000007,-3.3264597],[102.57873650000005,-3.319520199999943],[102.57011220000004,-3.3148487],[102.56895770000006,-3.310938799999974],[102.56485110000006,-3.309169299999951],[102.56062170000007,-3.303652599999964],[102.56037330000004,-3.293694099999925],[102.55717620000007,-3.295525],[102.54554160000004,-3.295219499999973],[102.54296340000008,-3.294103699999937],[102.540138,-3.289452899999958],[102.53142020000007,-3.289049199999965],[102.52837320000003,-3.2869427],[102.52453890000004,-3.278376099999946],[102.52052930000008,-3.275782899999967],[102.51153680000004,-3.274468799999966],[102.508338,-3.26881],[102.49807190000007,-3.262972199999979],[102.49807910000004,-3.260057499999959],[102.49390570000008,-3.260289299999954],[102.49463970000005,-3.267952099999945],[102.48696480000007,-3.283870499999978],[102.48895460000006,-3.296662],[102.49520820000004,-3.302062899999953],[102.50089340000005,-3.309737799999937],[102.50032480000004,-3.315423],[102.49748230000006,-3.319971099999975],[102.49236560000008,-3.322529399999951],[102.48980730000005,-3.326224699999955],[102.48469070000004,-3.326224699999955],[102.47531020000008,-3.321392399999979],[102.46138170000006,-3.321676599999932],[102.45569650000004,-3.319402599999933],[102.453991,-3.320823899999937],[102.44859010000005,-3.320823899999937],[102.45057990000004,-3.324803499999973],[102.45029560000006,-3.328783],[102.44461050000007,-3.331341399999928],[102.44432620000003,-3.334183899999971],[102.44739050000004,-3.337648699999932],[102.44262070000008,-3.341006099999959],[102.44347350000004,-3.344985699999938],[102.44119940000007,-3.347259699999938],[102.42357550000008,-3.358061499999963],[102.41675330000004,-3.35863],[102.39287580000007,-3.354650399999969],[102.38690640000004,-3.3577772],[102.38235830000008,-3.365452199999936],[102.38036850000009,-3.374832699999956],[102.37605890000003,-3.382015199999955],[102.37439910000006,-3.3847816],[102.37413720000006,-3.390508699999941],[102.37660530000005,-3.394692499999962],[102.36848650000007,-3.400330499999939],[102.36689470000005,-3.405333399999961],[102.369851,-3.409881499999926],[102.37303460000004,-3.411473399999977],[102.38986260000007,-3.414657],[102.39645740000009,-3.422388799999965],[102.398504,-3.4373976],[102.40805510000007,-3.447630799999956],[102.40828250000004,-3.4510419],[102.40600840000008,-3.45559],[102.41806090000006,-3.478558],[102.42010760000005,-3.492429699999946],[102.42167470000004,-3.494045799999981],[102.42738450000007,-3.499934099999962],[102.42920270000008,-3.510829699999931],[102.44294660000008,-3.5275336]]]},"properties":{"shapeName":"Rejang Lebong","shapeISO":"","shapeID":"22746128B5843078512663","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[111.30635130000007,-6.675871699999959],[111.30763,-6.6748491],[111.30653010000009,-6.673397899999941],[111.30382240000006,-6.674912099999972],[111.30635130000007,-6.675871699999959]]],[[[111.29952750000007,-6.672785099999942],[111.30007930000005,-6.670295],[111.29750380000007,-6.669849699999929],[111.29739870000009,-6.672041599999943],[111.29952750000007,-6.672785099999942]]],[[[111.30271950000008,-6.672038399999963],[111.30505770000008,-6.6695538],[111.30141960000009,-6.669357899999966],[111.30086780000005,-6.671911799999975],[111.30271950000008,-6.672038399999963]]],[[[111.30129120000004,-6.668123799999933],[111.30190730000004,-6.666421],[111.29941750000006,-6.666890699999954],[111.30129120000004,-6.668123799999933]]],[[[111.31360920000009,-6.667864499999951],[111.31609340000006,-6.666425499999946],[111.31652170000007,-6.664544799999931],[111.31283240000005,-6.665184899999929],[111.31360920000009,-6.667864499999951]]],[[[111.30085410000004,-6.661550399999953],[111.30211850000006,-6.659834899999964],[111.30005960000005,-6.658204199999943],[111.29884290000007,-6.660723799999971],[111.30085410000004,-6.661550399999953]]],[[[111.30572650000005,-6.6607551],[111.305985,-6.658082399999955],[111.30475820000004,-6.659990899999968],[111.30572650000005,-6.6607551]]],[[[111.57497690000008,-6.918127599999934],[111.57774770000009,-6.913312399999938],[111.58355010000008,-6.910139299999969],[111.60239650000005,-6.9115123],[111.607881,-6.902293],[111.60742530000005,-6.901248499999951],[111.60247820000006,-6.902243899999974],[111.60291620000004,-6.899176699999941],[111.59966870000005,-6.895504499999959],[111.60010710000006,-6.892698499999938],[111.60971640000008,-6.887025799999947],[111.61139680000008,-6.882449599999973],[111.615097,-6.881911699999932],[111.61337770000006,-6.877914499999974],[111.61080080000005,-6.879214],[111.61230450000005,-6.875389499999926],[111.609497,-6.871032699999944],[111.61261240000005,-6.8640253],[111.61565920000004,-6.862265699999966],[111.61245720000005,-6.860503599999959],[111.61141960000003,-6.854614699999956],[111.61332420000008,-6.854394599999978],[111.61286230000007,-6.851481199999967],[111.61071010000006,-6.849386599999946],[111.610527,-6.845761299999936],[111.61348720000007,-6.831672099999935],[111.61911010000006,-6.821911299999954],[111.62911110000005,-6.824944099999925],[111.63502610000006,-6.828921699999967],[111.64701370000006,-6.823337],[111.64918460000007,-6.822937699999954],[111.65270080000005,-6.8254213],[111.65628710000004,-6.820635699999968],[111.65826850000008,-6.820604],[111.66119540000005,-6.8167115],[111.65778350000005,-6.811482399999932],[111.658458,-6.808273899999961],[111.65717040000004,-6.806903599999941],[111.66147540000009,-6.802162899999928],[111.66227090000007,-6.797875499999975],[111.66438990000006,-6.797232],[111.66403020000007,-6.789974699999959],[111.65985750000004,-6.782560399999966],[111.66309010000003,-6.770840299999975],[111.67179050000004,-6.762974499999928],[111.67175540000005,-6.770235],[111.67553060000006,-6.769343499999934],[111.67378060000004,-6.774592],[111.67585030000004,-6.774776299999928],[111.677436,-6.770829599999956],[111.68440120000008,-6.770570099999929],[111.68720680000007,-6.766015799999934],[111.68792670000005,-6.759364699999935],[111.691412,-6.753820299999973],[111.64069080000007,-6.711144099999956],[111.63285920000004,-6.703902],[111.63293570000008,-6.702070299999946],[111.63182210000008,-6.702769899999964],[111.6292,-6.70108],[111.56255,-6.63944],[111.54874560000007,-6.636839799999962],[111.54943090000006,-6.632856599999968],[111.54837440000006,-6.636411499999952],[111.54797460000009,-6.634812499999953],[111.54607580000004,-6.635454899999957],[111.543663,-6.634555499999976],[111.54379150000005,-6.6334419],[111.540635,-6.634757099999945],[111.5259,-6.62962],[111.51595890000004,-6.632713499999966],[111.50852790000005,-6.632228399999974],[111.49960490000007,-6.626903199999958],[111.49667,-6.62337],[111.49455,-6.6236],[111.49226,-6.62056],[111.48974220000008,-6.6215903],[111.48968260000004,-6.624947199999951],[111.48125850000008,-6.627471399999934],[111.47068590000003,-6.637988599999971],[111.46494,-6.64123],[111.46534320000006,-6.645963599999959],[111.46398440000007,-6.646619399999963],[111.46671730000008,-6.6488298],[111.46738970000007,-6.657625499999938],[111.46078940000007,-6.664430699999969],[111.44399690000006,-6.670618599999955],[111.40588590000004,-6.690149],[111.39065890000006,-6.694146699999976],[111.38927740000008,-6.697958],[111.38612,-6.69857],[111.38525760000005,-6.697442099999932],[111.37917520000008,-6.702063599999974],[111.37384090000006,-6.701427899999942],[111.36902230000004,-6.703260799999953],[111.36574,-6.70246],[111.35713590000006,-6.704412099999956],[111.35133120000006,-6.702941199999941],[111.34304120000007,-6.703055399999926],[111.33693070000004,-6.700333299999954],[111.33396110000007,-6.700523699999962],[111.33298,-6.70223],[111.32003650000007,-6.697563599999967],[111.30558840000003,-6.6967451],[111.29806020000007,-6.69112],[111.29022660000004,-6.6875889],[111.272257,-6.690532299999973],[111.262663,-6.689747099999977],[111.25849420000009,-6.687869699999965],[111.24533570000006,-6.691738699999974],[111.23422360000006,-6.687323299999946],[111.23456770000007,-6.698217899999975],[111.23601340000005,-6.699512599999935],[111.23677210000005,-6.698117899999943],[111.23848350000009,-6.70023],[111.23649850000004,-6.702564099999961],[111.23959490000004,-6.703210099999978],[111.23796140000007,-6.703878799999927],[111.23989020000005,-6.705420599999968],[111.238794,-6.708612099999925],[111.24199270000008,-6.7091571],[111.24032910000005,-6.710315899999955],[111.23891770000006,-6.709395399999948],[111.23995540000004,-6.712498699999969],[111.23906030000006,-6.713332899999955],[111.242436,-6.715268599999945],[111.240365,-6.714629899999977],[111.24043820000009,-6.718146399999966],[111.23788790000009,-6.720127],[111.23936460000004,-6.722412099999929],[111.23766150000006,-6.722293099999945],[111.23580810000004,-6.726374799999974],[111.23853980000007,-6.732412299999964],[111.23635650000006,-6.736642699999948],[111.23714160000009,-6.740171199999963],[111.23329710000007,-6.7412532],[111.23480780000006,-6.743390899999952],[111.23406010000008,-6.745107499999961],[111.23583770000005,-6.745431799999949],[111.23705080000008,-6.743611199999975],[111.23848510000005,-6.745457],[111.237005,-6.746599],[111.23861480000005,-6.746846499999947],[111.237773,-6.748516],[111.23872370000004,-6.749662399999977],[111.23376460000009,-6.752503],[111.23766330000007,-6.755899399999976],[111.23654170000009,-6.756446799999935],[111.23691560000009,-6.759627799999976],[111.23761750000006,-6.757959799999981],[111.23963930000008,-6.7577519],[111.24198910000007,-6.760598099999982],[111.24410250000005,-6.760278199999959],[111.243782,-6.761598599999957],[111.24693960000008,-6.764088],[111.24578860000008,-6.765266399999973],[111.24742380000004,-6.766828299999929],[111.24533650000006,-6.771455099999969],[111.24658890000006,-6.774462],[111.243923,-6.775279399999931],[111.24332480000004,-6.7770105],[111.24494170000008,-6.778524799999957],[111.24539950000008,-6.777677],[111.24543760000006,-6.779450899999972],[111.24707790000008,-6.778751799999952],[111.24842070000005,-6.7802624],[111.24712580000005,-6.781549499999926],[111.24896,-6.783445799999981],[111.248131,-6.786148399999945],[111.24671380000007,-6.7864611],[111.24926760000005,-6.788479799999948],[111.2472,-6.789085399999976],[111.24713140000006,-6.792032199999937],[111.245163,-6.792498599999931],[111.24459070000006,-6.796199299999955],[111.24671170000005,-6.797833399999945],[111.246643,-6.799726899999939],[111.25101890000008,-6.801881899999955],[111.25054890000007,-6.807940199999962],[111.25201070000008,-6.806965],[111.252956,-6.808608899999967],[111.25471240000007,-6.807877099999928],[111.25686740000003,-6.811783899999966],[111.25901020000003,-6.811965499999928],[111.261327,-6.814583],[111.26100340000005,-6.817222299999969],[111.26432580000005,-6.820235199999956],[111.26537320000006,-6.824687399999959],[111.26852230000009,-6.824313299999972],[111.26883950000007,-6.828647399999966],[111.270874,-6.828703399999938],[111.270462,-6.831304],[111.26707460000006,-6.833466],[111.26605220000005,-6.832820899999945],[111.26508330000007,-6.834106399999939],[111.26342770000008,-6.832610099999954],[111.26195530000007,-6.835228899999947],[111.25898740000008,-6.834471699999938],[111.25583650000004,-6.836631199999943],[111.25717480000009,-6.839349199999958],[111.25773740000005,-6.838314899999943],[111.25974140000005,-6.839282399999945],[111.26009780000004,-6.843588299999965],[111.26183870000006,-6.8429068],[111.26383110000006,-6.846505],[111.26223070000009,-6.85113],[111.26430510000006,-6.853993899999978],[111.26285550000006,-6.853981499999975],[111.26345540000005,-6.855369199999927],[111.26519890000009,-6.857092799999975],[111.27262480000007,-6.858266599999979],[111.28475940000004,-6.865131799999972],[111.31360880000005,-6.864800899999977],[111.33010980000006,-6.868704499999978],[111.33394970000006,-6.871941699999979],[111.33836690000004,-6.873161],[111.33855090000009,-6.8754617],[111.34238470000008,-6.877608899999927],[111.34118170000005,-6.880748399999959],[111.34593960000007,-6.8829689],[111.34787280000006,-6.886013799999944],[111.35650960000004,-6.884717799999976],[111.35992430000005,-6.886371099999963],[111.363884,-6.884554799999933],[111.37768550000004,-6.891548099999966],[111.38116450000007,-6.890074199999958],[111.38967130000009,-6.892749299999934],[111.39974210000008,-6.891183299999966],[111.40232480000009,-6.887735899999939],[111.40532680000007,-6.887138299999947],[111.40523530000007,-6.884783699999957],[111.40833280000004,-6.885863299999926],[111.41287990000006,-6.882431499999939],[111.41420740000007,-6.884373099999948],[111.41353610000004,-6.890008399999942],[111.41997530000003,-6.891627299999925],[111.42133330000007,-6.893721099999937],[111.42552950000004,-6.894144499999925],[111.434906,-6.890221099999962],[111.43713240000005,-6.886251899999934],[111.43597760000006,-6.884551599999952],[111.43708930000008,-6.8841801],[111.43929290000005,-6.886636199999941],[111.44125480000008,-6.884432799999956],[111.43977890000008,-6.882737],[111.44145380000003,-6.882625599999926],[111.44334590000005,-6.879893399999958],[111.44753370000006,-6.880328599999928],[111.45435690000005,-6.876269],[111.45895420000005,-6.878012699999942],[111.45820010000006,-6.879097399999978],[111.46030040000005,-6.878779799999961],[111.45942450000007,-6.881648299999938],[111.46035,-6.88244],[111.46578980000004,-6.881082],[111.46987280000008,-6.882036],[111.47671650000007,-6.886523899999929],[111.47996090000004,-6.886214],[111.48180390000005,-6.8834676],[111.488121,-6.881225499999971],[111.49479670000005,-6.888941199999977],[111.49623110000005,-6.893589899999938],[111.50207520000004,-6.893297199999949],[111.50503540000005,-6.890817099999936],[111.50945280000008,-6.892016899999931],[111.51444890000005,-6.889332],[111.51657,-6.89236],[111.51672,-6.89642],[111.51847130000004,-6.8978222],[111.53862220000008,-6.900413299999968],[111.54054260000004,-6.9038715],[111.54330440000007,-6.902985499999943],[111.54526520000007,-6.904141799999934],[111.54197690000007,-6.907662399999936],[111.54410550000006,-6.909255],[111.54854580000006,-6.910721299999977],[111.55329890000007,-6.909753299999977],[111.55565640000009,-6.911766],[111.55553670000006,-6.914345599999933],[111.56003530000004,-6.913655099999971],[111.561148,-6.912195],[111.56380170000006,-6.913172199999963],[111.56574460000007,-6.916879499999936],[111.56889440000003,-6.919142299999976],[111.56824550000005,-6.914704099999938],[111.57497690000008,-6.918127599999934]]]]},"properties":{"shapeName":"Rembang","shapeISO":"","shapeID":"22746128B18638764648069","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[100.88102570000007,2.004334400000062],[100.88250440000007,2.006675900000062],[100.882629,2.014507700000024],[100.88058150000006,2.026119900000026],[100.87726,2.034059800000023],[100.87041970000007,2.042419100000075],[100.84387890000005,2.069775600000071],[100.82051080000008,2.087818200000072],[100.80608450000005,2.095874],[100.79591720000008,2.094831500000055],[100.79688820000007,2.088752800000066],[100.803302,2.078035100000022],[100.80507080000007,2.071185800000023],[100.82781510000007,2.041248900000028],[100.84394010000005,2.023099],[100.86652810000004,2.001953400000048],[100.88102570000007,2.004334400000062]]],[[[100.64244210000004,2.21953620000005],[100.63446770000007,2.218606500000021],[100.63177250000007,2.213021100000049],[100.63183680000009,2.206696600000043],[100.63546750000006,2.193231600000047],[100.64291880000007,2.185602900000049],[100.65447430000006,2.17685460000007],[100.67957490000003,2.162991200000022],[100.68388790000006,2.162818100000038],[100.68382350000007,2.168788900000038],[100.67524,2.182233200000042],[100.67051850000007,2.196249500000022],[100.65172460000008,2.216528900000071],[100.64244210000004,2.21953620000005]]],[[[100.73304540000004,2.271835200000055],[100.73218490000005,2.273402300000043],[100.72988990000005,2.271816600000022],[100.72910170000006,2.273367500000063],[100.72658770000004,2.271460700000034],[100.72466910000009,2.272638400000062],[100.72502140000006,2.270816600000046],[100.72378290000006,2.273130700000024],[100.72388080000007,2.269302400000072],[100.72016680000007,2.268703200000061],[100.71943770000007,2.270389800000032],[100.71853820000007,2.26871170000004],[100.71777960000009,2.269833],[100.71759910000009,2.264543900000035],[100.71569540000007,2.265715300000068],[100.71680470000007,2.263114800000039],[100.71397110000004,2.263485900000035],[100.71433160000004,2.261388500000066],[100.71306590000006,2.260249900000076],[100.71021530000007,2.260681600000055],[100.71120510000009,2.258916900000031],[100.71000520000007,2.255840700000022],[100.70600710000008,2.251981],[100.70423060000007,2.247079],[100.70419210000006,2.235898900000052],[100.70728030000004,2.219085],[100.72027960000008,2.177337700000066],[100.72965150000005,2.157429600000057],[100.74201540000007,2.14292290000003],[100.75163610000004,2.136726800000076],[100.77025730000008,2.129341100000033],[100.78482790000004,2.121052100000043],[100.78617240000005,2.124830200000076],[100.78499270000003,2.133049100000051],[100.77673720000007,2.158595600000069],[100.77839070000005,2.184618400000033],[100.76454850000005,2.203895100000068],[100.75175680000007,2.253927300000043],[100.73991920000009,2.261194600000067],[100.73304540000004,2.271835200000055]]],[[[100.75177480000008,2.28112550000003],[100.74515190000005,2.281764100000032],[100.738234,2.280470700000023],[100.73787570000007,2.276586700000053],[100.73968920000004,2.269351500000027],[100.74344,2.262747700000034],[100.75154350000008,2.258998500000075],[100.75657240000004,2.278272700000059],[100.753971,2.281172800000036],[100.75177480000008,2.28112550000003]]],[[[101.02615550000007,2.309647600000062],[101.01271220000007,2.309389400000043],[100.99981710000009,2.306841900000052],[100.98506310000005,2.306099900000049],[100.98237330000006,2.30527150000006],[100.97961090000007,2.301738600000022],[100.98271040000009,2.299792600000046],[100.98905320000006,2.30006110000005],[100.99333060000004,2.302343500000063],[101.001672,2.302193100000068],[101.02041890000004,2.299184600000046],[101.03080550000004,2.300558],[101.03463770000008,2.304615400000046],[101.037386,2.305193400000064],[101.03780230000007,2.307065100000045],[101.03613150000007,2.308676200000036],[101.03304890000004,2.309360300000037],[101.02897950000005,2.307909900000027],[101.02615550000007,2.309647600000062]]],[[[101.31741720000008,1.474730100000045],[101.33303440000009,1.496340500000031],[101.31394860000006,1.526824900000065],[101.31104870000007,1.541827100000035],[101.30792960000008,1.547073],[101.29996580000005,1.588604],[101.29296590000007,1.598093800000072],[101.28466010000005,1.615330800000038],[101.28140920000004,1.626173100000074],[101.28177840000006,1.631620800000064],[101.27147040000006,1.647010700000067],[101.26962080000004,1.654909800000041],[101.26373850000004,1.661398700000063],[101.25290670000004,1.681451300000049],[101.241986,1.694264900000064],[101.20293020000008,1.752829200000065],[101.12994880000008,1.840755100000024],[101.12607990000004,1.851623],[101.12106630000005,1.857640700000047],[101.117078,1.869690400000025],[101.11292580000008,1.872328],[101.10832010000007,1.881779700000038],[101.09855220000009,1.89201840000004],[101.08809340000005,1.907525700000065],[101.08798870000004,1.910465100000067],[101.084533,1.915803500000038],[101.07901930000008,1.919293800000048],[101.07308040000004,1.929098700000054],[101.06023660000005,1.955078200000059],[101.05791150000005,1.975578900000073],[101.05400620000006,1.993919400000038],[101.03263430000004,2.04457530000002],[101.02586120000007,2.065034600000047],[101.018712,2.075536800000066],[101.01860550000004,2.090581200000031],[101.012846,2.098195500000031],[101.00932370000004,2.119869700000038],[101.01277450000003,2.144779800000038],[101.03644320000006,2.215759400000024],[101.05008440000006,2.24327820000002],[101.05165870000008,2.248175400000036],[101.05172780000004,2.257579700000065],[101.05454070000008,2.267374400000051],[101.05616870000006,2.270582],[101.061816,2.275299600000039],[101.06021990000005,2.281163500000048],[101.05639790000004,2.284162700000024],[101.05215640000006,2.29122540000003],[101.04663180000006,2.292944],[101.03727870000006,2.29317130000004],[101.02749680000005,2.290833],[100.98768860000007,2.293152200000065],[100.94578610000008,2.304543],[100.89671220000008,2.305375400000059],[100.86310280000004,2.300692600000048],[100.863088,2.299420400000031],[100.85899470000004,2.298400300000026],[100.84469740000009,2.298049200000037],[100.84296510000007,2.29641040000007],[100.83689710000004,2.297950400000047],[100.83626540000006,2.295930300000066],[100.82541980000008,2.296672],[100.82072390000008,2.293949],[100.818496,2.296430200000032],[100.815357,2.293935400000066],[100.81203840000006,2.295296400000041],[100.79901610000007,2.29160550000006],[100.79674580000005,2.292633700000067],[100.79620820000008,2.291112400000031],[100.78891240000007,2.289631900000074],[100.77790120000009,2.283180600000037],[100.76823270000006,2.275087300000052],[100.76367880000004,2.269207200000039],[100.760366,2.251280500000064],[100.76583040000008,2.211490300000037],[100.76820750000007,2.204284400000063],[100.77871990000006,2.190463600000044],[100.78156350000006,2.183368],[100.77863260000004,2.159730800000034],[100.78769580000005,2.133107400000029],[100.78920760000005,2.118363700000032],[100.79499280000005,2.112806600000056],[100.84367280000004,2.079033800000047],[100.862941,2.05752190000004],[100.87737770000007,2.04373750000002],[100.88387690000008,2.032687100000032],[100.88679410000003,2.021587400000044],[100.88902910000007,1.995698800000071],[100.86446380000007,1.987624100000062],[100.84483140000003,2.009016300000042],[100.82127580000008,2.031825400000059],[100.803006,2.051836800000046],[100.79324810000008,2.064780300000052],[100.78301430000005,2.074554800000044],[100.77363430000008,2.081053600000075],[100.75933490000006,2.08769],[100.74067390000005,2.093240700000024],[100.72764190000004,2.096204500000056],[100.72206920000008,2.095161500000074],[100.68482910000006,2.120122800000047],[100.66893980000003,2.124048300000027],[100.64991810000004,2.124842],[100.647281,2.127205500000059],[100.63121250000006,2.134175200000072],[100.61739210000007,2.137806400000045],[100.56770030000007,2.15597820000005],[100.54737460000007,2.170396800000049],[100.51844720000008,2.196818800000074],[100.50286,2.207745400000022],[100.49553850000007,2.21101740000006],[100.49073560000005,2.216805600000043],[100.48784310000008,2.215194],[100.48674870000008,2.219023800000059],[100.48359960000005,2.220149700000036],[100.48116560000005,2.224090200000035],[100.47855540000006,2.224706],[100.47446380000008,2.23112610000004],[100.46234380000004,2.240221100000042],[100.46085920000007,2.243651500000055],[100.45577720000006,2.247066700000062],[100.45576350000005,2.248806200000047],[100.44056570000004,2.259347900000023],[100.438108,2.264883500000053],[100.43559240000008,2.26575310000004],[100.43564230000004,2.267285100000038],[100.434216,2.266902300000027],[100.43416930000006,2.269050600000071],[100.43247310000004,2.269109],[100.42973750000004,2.272942700000044],[100.42709610000009,2.281733100000054],[100.42556150000007,2.282655500000033],[100.42602060000007,2.284535600000027],[100.42472060000006,2.28598850000003],[100.42364490000006,2.285279900000035],[100.42426710000007,2.287121600000035],[100.42070640000009,2.287999400000047],[100.41989790000008,2.292691200000036],[100.418205,2.293226],[100.41909030000005,2.294519100000059],[100.415586,2.296342500000037],[100.41470350000009,2.299819200000059],[100.41260310000007,2.299770300000034],[100.41355960000004,2.301513300000067],[100.41123630000004,2.302174800000046],[100.40826390000007,2.308065],[100.40457830000008,2.309819800000071],[100.40376830000008,2.312722600000029],[100.40180480000004,2.312561100000039],[100.39948,2.31650140000005],[100.39774750000004,2.314669],[100.398945,2.318996800000036],[100.39559980000007,2.319926400000043],[100.39269620000005,2.329839900000024],[100.393923,2.331651200000067],[100.39258830000006,2.331412300000068],[100.39317330000006,2.334097100000065],[100.38671120000004,2.345456900000045],[100.38838110000006,2.348407400000042],[100.38448280000006,2.349802900000043],[100.38331630000005,2.352772100000038],[100.38237420000007,2.357605200000023],[100.38419690000006,2.359756900000036],[100.38168550000006,2.360110400000053],[100.38106340000007,2.361751300000037],[100.37986230000007,2.369141400000046],[100.38215780000007,2.374129100000061],[100.38018690000007,2.375786600000026],[100.37977160000008,2.378651],[100.36138320000003,2.392750800000044],[100.36143610000005,2.403789600000039],[100.35968840000004,2.403918800000042],[100.35659450000009,2.414085600000021],[100.34752060000005,2.428620800000033],[100.34143330000006,2.456626400000061],[100.34198370000007,2.45869330000005],[100.34006210000007,2.461256900000024],[100.34082950000004,2.464377300000024],[100.34711920000007,2.465629900000067],[100.34738810000005,2.466988100000037],[100.34589430000005,2.467161600000054],[100.34710630000006,2.469344300000046],[100.34383920000005,2.469917700000053],[100.34553240000008,2.471307400000057],[100.34265850000008,2.470490300000051],[100.34170630000006,2.47141890000006],[100.34032010000004,2.470124200000043],[100.33847260000005,2.471914],[100.33983640000008,2.475453600000037],[100.33693210000007,2.482342800000026],[100.33787070000005,2.486017900000036],[100.33070970000006,2.504129400000068],[100.33072910000004,2.513861700000064],[100.33312,2.519086],[100.32947840000008,2.520805800000062],[100.32916070000005,2.522603200000049],[100.33324870000007,2.527194300000076],[100.33241190000007,2.528305100000068],[100.33010990000008,2.527727900000059],[100.32382910000007,2.539801700000055],[100.32275050000004,2.544933700000058],[100.31956270000006,2.528946900000051],[100.307102,2.491265700000042],[100.30714930000005,2.480027700000051],[100.30012610000006,2.460751100000039],[100.299622,2.446216100000072],[100.29545260000003,2.428214],[100.29939630000007,2.356466100000034],[100.30191440000004,2.349935],[100.30082360000006,2.340143],[100.31305550000008,2.310027],[100.31736380000007,2.289711600000032],[100.32780760000009,2.275919200000033],[100.33356560000004,2.263944700000025],[100.33535880000005,2.253424600000073],[100.34998270000006,2.230591600000025],[100.35935750000004,2.211730600000067],[100.36506120000007,2.21023230000003],[100.36358850000005,2.168874900000048],[100.33670560000007,2.122234700000035],[100.33046460000008,2.095939300000055],[100.31553960000008,2.052412200000049],[100.31645570000006,1.998084800000072],[100.31330310000004,1.944011300000057],[100.31440020000008,1.909613100000058],[100.31078380000008,1.899677900000029],[100.31115850000003,1.892797500000029],[100.30507250000005,1.882290700000055],[100.29217670000008,1.87887610000007],[100.289267,1.876789900000063],[100.28847680000007,1.873385400000075],[100.28150730000004,1.865107700000067],[100.27998110000004,1.842330700000048],[100.281297,1.83396010000007],[100.27767660000006,1.813479800000039],[100.28429790000007,1.800717100000043],[100.28894720000005,1.795798],[100.29615580000007,1.791228100000069],[100.33058110000007,1.784648900000036],[100.35375010000007,1.782145300000025],[100.35233620000008,1.737781100000063],[100.34165140000005,1.715148900000031],[100.33854820000005,1.712897500000054],[100.33975440000006,1.712439200000063],[100.32861480000008,1.698830300000054],[100.31905150000006,1.690039500000069],[100.32030460000004,1.680495700000051],[100.33067550000004,1.678550200000075],[100.34319660000006,1.679138],[100.36897020000004,1.667005200000062],[100.38290180000007,1.672065],[100.40070360000004,1.665581900000063],[100.40701840000008,1.672755100000074],[100.41201680000006,1.661205100000075],[100.41260960000005,1.646076300000061],[100.40638310000008,1.639645500000029],[100.40342540000006,1.624011],[100.41116450000004,1.619409],[100.414801,1.60948540000004],[100.41404450000005,1.600104],[100.41028830000005,1.591857],[100.40395480000007,1.58591720000004],[100.40804230000003,1.575454400000069],[100.41150460000006,1.571965400000067],[100.41150030000006,1.565626100000031],[100.41864720000007,1.566700700000069],[100.41750740000003,1.555074800000057],[100.41253220000004,1.541248],[100.41746530000006,1.536461100000054],[100.42249750000008,1.525680800000032],[100.42011760000008,1.514804100000049],[100.42287930000003,1.512888400000065],[100.42495350000007,1.508919400000025],[100.42577970000008,1.502027600000019],[100.423953,1.488757],[100.41720960000004,1.470534800000053],[100.41306350000008,1.465017400000022],[100.39835470000008,1.461068900000043],[100.38817220000004,1.455533800000069],[100.38516710000005,1.459847],[100.37678450000004,1.455342800000039],[100.33269340000004,1.46012410000003],[100.323679,1.459458900000072],[100.32320670000007,1.475376400000073],[100.32155410000007,1.475058500000046],[100.32178140000008,1.477520900000059],[100.31677950000005,1.476083200000062],[100.30897230000005,1.47172420000004],[100.30349810000007,1.47172740000002],[100.29440810000006,1.473602],[100.28585040000007,1.478857900000037],[100.28156270000005,1.475695],[100.27941440000006,1.466158900000039],[100.28241190000006,1.463344900000038],[100.28832230000006,1.460951700000066],[100.29145480000005,1.457115700000031],[100.29975120000006,1.454741400000046],[100.30603680000007,1.450651300000061],[100.31942760000004,1.446754800000065],[100.32274660000007,1.442909900000075],[100.32749330000007,1.443200500000046],[100.33205250000003,1.439824500000043],[100.33904270000005,1.439103500000044],[100.34539040000004,1.43630980000006],[100.33356720000006,1.433362800000054],[100.35521760000006,1.417551100000026],[100.381167,1.391788700000063],[100.41189840000004,1.382739800000024],[100.417717,1.375915400000054],[100.45282590000005,1.345921],[100.45836050000008,1.343227800000022],[100.45815890000006,1.340658500000075],[100.44928860000005,1.336412400000029],[100.45901910000003,1.326992],[100.46798910000007,1.323143900000048],[100.47867910000008,1.322561200000052],[100.48219360000007,1.316623],[100.493723,1.305586],[100.51880370000003,1.28902590000007],[100.52932530000004,1.28039590000003],[100.54597530000007,1.271741],[100.55655380000007,1.261303200000043],[100.58939740000005,1.240198700000064],[100.60261990000004,1.226874200000054],[100.607249,1.224208100000055],[100.61672980000009,1.222648800000059],[100.62092010000003,1.223977900000023],[100.62820120000003,1.231297400000074],[100.64078150000006,1.25015430000002],[100.64762010000004,1.255032500000027],[100.65358380000004,1.271008100000074],[100.65403180000004,1.281882600000074],[100.65756370000008,1.287872500000049],[100.66429090000008,1.290642300000059],[100.67134230000005,1.28331380000003],[100.69359260000004,1.252006900000026],[100.69998340000006,1.246232600000042],[100.70593560000003,1.244453300000032],[100.72798480000006,1.243995],[100.74540460000009,1.245315],[100.75598640000004,1.242644800000051],[100.76767190000004,1.241971200000023],[100.78597320000006,1.243290300000069],[100.79391370000008,1.247723300000075],[100.79678990000008,1.262146],[100.80347410000007,1.268350300000066],[100.80329030000007,1.275672300000053],[100.80641290000005,1.288835300000073],[100.81599010000008,1.307742],[100.82959210000007,1.323605800000053],[100.85645380000005,1.345369500000061],[100.86552240000003,1.356338900000026],[100.901951,1.381639700000051],[100.92891830000008,1.39516],[100.931918,1.397856300000058],[100.93743890000007,1.39594610000006],[100.94643420000006,1.398003],[100.95195980000005,1.401334100000042],[100.95339490000003,1.404478900000072],[100.95287590000004,1.400496500000031],[100.95433810000009,1.397433],[100.94959960000006,1.390858700000024],[100.95162530000005,1.387227700000039],[100.95624350000008,1.384842],[100.95533580000006,1.37735710000004],[100.94754060000008,1.35122],[100.95417330000004,1.348990700000058],[100.97126180000004,1.348434500000053],[100.97484890000004,1.349978700000065],[100.99512340000007,1.351504800000043],[101.01348980000006,1.351220400000045],[101.02800640000004,1.360567500000059],[101.05690890000005,1.373601800000074],[101.07484090000008,1.384328],[101.07924,1.39047110000007],[101.08584450000006,1.393177300000048],[101.09568710000008,1.40083020000003],[101.10229190000007,1.403875300000038],[101.11359280000005,1.413881400000037],[101.12048590000006,1.413467],[101.12373320000006,1.41713690000006],[101.13691380000006,1.419165200000066],[101.14004270000004,1.423273800000061],[101.15121820000007,1.432143600000074],[101.16848150000004,1.441612300000031],[101.24102180000006,1.465618900000038],[101.27055380000007,1.468419200000028],[101.29555470000008,1.473521500000061],[101.31741720000008,1.474730100000045]]],[[[100.55589870000006,2.868137300000058],[100.55730680000005,2.869761600000061],[100.55443130000003,2.868614600000058],[100.55452840000004,2.866838200000075],[100.55747810000008,2.867622200000028],[100.55589870000006,2.868137300000058]]],[[[100.562657,2.883173900000031],[100.56159230000009,2.88385390000002],[100.56148350000007,2.882229],[100.56602220000008,2.876347600000031],[100.56650740000003,2.88047210000002],[100.56427420000006,2.883903800000041],[100.562657,2.883173900000031]]]]},"properties":{"shapeName":"Rokan Hilir","shapeISO":"","shapeID":"22746128B69867286412473","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.94754060000008,1.35122],[100.95533580000006,1.37735710000004],[100.95624350000008,1.384842],[100.95162530000005,1.387227700000039],[100.94959960000006,1.390858700000024],[100.95433810000009,1.397433],[100.95287590000004,1.400496500000031],[100.95339490000003,1.404478900000072],[100.95195980000005,1.401334100000042],[100.94643420000006,1.398003],[100.93743890000007,1.39594610000006],[100.931918,1.397856300000058],[100.92891830000008,1.39516],[100.901951,1.381639700000051],[100.86552240000003,1.356338900000026],[100.85645380000005,1.345369500000061],[100.82959210000007,1.323605800000053],[100.81599010000008,1.307742],[100.80641290000005,1.288835300000073],[100.80329030000007,1.275672300000053],[100.80347410000007,1.268350300000066],[100.79678990000008,1.262146],[100.79391370000008,1.247723300000075],[100.78597320000006,1.243290300000069],[100.76767190000004,1.241971200000023],[100.75598640000004,1.242644800000051],[100.74540460000009,1.245315],[100.72798480000006,1.243995],[100.70593560000003,1.244453300000032],[100.69998340000006,1.246232600000042],[100.69359260000004,1.252006900000026],[100.67134230000005,1.28331380000003],[100.66429090000008,1.290642300000059],[100.65756370000008,1.287872500000049],[100.65403180000004,1.281882600000074],[100.65358380000004,1.271008100000074],[100.64762010000004,1.255032500000027],[100.64078150000006,1.25015430000002],[100.62820120000003,1.231297400000074],[100.62092010000003,1.223977900000023],[100.61672980000009,1.222648800000059],[100.607249,1.224208100000055],[100.60261990000004,1.226874200000054],[100.58939740000005,1.240198700000064],[100.55655380000007,1.261303200000043],[100.54597530000007,1.271741],[100.52932530000004,1.28039590000003],[100.51880370000003,1.28902590000007],[100.493723,1.305586],[100.48219360000007,1.316623],[100.47867910000008,1.322561200000052],[100.46798910000007,1.323143900000048],[100.45901910000003,1.326992],[100.44928860000005,1.336412400000029],[100.45815890000006,1.340658500000075],[100.45836050000008,1.343227800000022],[100.45282590000005,1.345921],[100.417717,1.375915400000054],[100.41189840000004,1.382739800000024],[100.381167,1.391788700000063],[100.35521760000006,1.417551100000026],[100.33356720000006,1.433362800000054],[100.33160390000006,1.430854100000033],[100.32813250000004,1.430656700000043],[100.32469950000007,1.427799],[100.31562070000007,1.425667500000031],[100.31090550000005,1.422115100000042],[100.310051,1.418775900000071],[100.30753340000007,1.416999200000021],[100.29639940000004,1.418171200000074],[100.288742,1.423115200000041],[100.28340120000007,1.424664500000063],[100.27345990000003,1.422752700000046],[100.26567840000007,1.422963800000048],[100.26055930000007,1.420478400000036],[100.25173190000004,1.412804900000026],[100.23851760000008,1.412628200000029],[100.22208390000009,1.409825700000056],[100.21191430000005,1.40602],[100.20078250000006,1.398772700000052],[100.16880810000004,1.402710900000045],[100.13602420000007,1.403872800000045],[100.11729570000006,1.39532360000004],[100.10110450000008,1.39736],[100.09528350000005,1.400416900000039],[100.08689850000007,1.400489300000061],[100.06909960000007,1.398706300000072],[100.05103280000009,1.394835900000032],[100.04162580000008,1.392040100000031],[100.03164690000006,1.381559800000048],[100.02928140000006,1.376224600000057],[100.02535950000004,1.356916200000057],[100.02552790000004,1.335094200000071],[100.02940050000007,1.326100500000052],[100.03700050000003,1.318600500000059],[100.05030050000005,1.313100500000075],[100.05913550000008,1.297531500000048],[100.07444740000005,1.276110800000026],[100.09532930000006,1.270228400000065],[100.10271450000005,1.270032],[100.10780310000007,1.26780830000007],[100.11998780000005,1.25515],[100.122757,1.250011500000028],[100.122795,1.246981900000037],[100.11895750000008,1.234956100000034],[100.11988070000007,1.226299600000061],[100.11804,1.216653700000052],[100.12440470000007,1.206345400000032],[100.12419870000008,1.20254140000003],[100.12149020000004,1.196922800000038],[100.12982170000004,1.185996200000034],[100.13542910000007,1.168274200000042],[100.14343790000004,1.159332600000027],[100.15244290000004,1.157296900000063],[100.15844720000007,1.153449],[100.16305560000006,1.146049100000027],[100.16386410000007,1.13848020000006],[100.16609950000009,1.134209500000054],[100.17274320000007,1.133471100000065],[100.17761510000008,1.126721800000041],[100.18399060000007,1.124251500000071],[100.18289950000008,1.120663300000047],[100.18029770000004,1.119977900000038],[100.17909250000008,1.117537],[100.16927080000005,1.122704700000043],[100.16310110000006,1.118066800000065],[100.16015190000007,1.119827500000042],[100.146604,1.118733200000065],[100.141774,1.117189900000028],[100.13465740000004,1.112079400000027],[100.12846240000005,1.104334200000039],[100.12321440000005,1.094109100000026],[100.12146180000008,1.082013],[100.12255270000009,1.077393900000061],[100.12091250000003,1.073655500000029],[100.12123820000005,1.06804690000007],[100.12582340000006,1.058477900000071],[100.12925710000007,1.055104],[100.13765710000007,1.06105210000004],[100.14020530000005,1.060752200000024],[100.14114360000008,1.049366600000042],[100.13871750000004,1.039177100000074],[100.14024340000003,1.02937970000005],[100.14449320000006,1.019427400000041],[100.14938370000004,1.012198400000045],[100.15953810000008,1.008543100000054],[100.16488670000007,1.003969300000051],[100.16658030000008,0.998412100000053],[100.16445140000008,0.997685800000056],[100.16146860000003,0.999475],[100.159111,0.995029600000066],[100.15644850000007,0.994132],[100.15407520000008,0.990841300000056],[100.14759040000007,0.98804],[100.14578990000007,0.98517970000006],[100.143715,0.986096800000041],[100.13954920000003,0.98415330000006],[100.14162420000008,0.978482500000041],[100.14673630000004,0.97534],[100.14785750000004,0.96584480000007],[100.14461490000008,0.961617],[100.14308180000006,0.953520800000035],[100.13190470000006,0.948564],[100.12841030000004,0.936815],[100.12974560000004,0.93066140000002],[100.13578030000008,0.925016400000061],[100.13224770000005,0.911154600000032],[100.13769470000005,0.90193030000006],[100.14137730000004,0.899790200000041],[100.13993050000005,0.892168300000037],[100.14276860000007,0.883581500000048],[100.14156330000009,0.881651600000055],[100.13718590000008,0.881302800000071],[100.13407540000009,0.866178400000024],[100.13785960000007,0.844186900000068],[100.12900850000005,0.84361210000003],[100.12816780000009,0.847395400000039],[100.12387870000003,0.846904900000027],[100.12274180000009,0.838441500000044],[100.11905650000006,0.834638200000029],[100.12033330000008,0.831676400000049],[100.12001840000005,0.826278700000046],[100.12228090000008,0.823575800000071],[100.12425990000008,0.81648830000006],[100.13800830000008,0.800353900000061],[100.14495870000007,0.793745],[100.15296930000005,0.788870800000041],[100.15704350000004,0.783821400000022],[100.164604,0.780324700000051],[100.17861730000004,0.764380100000039],[100.19328710000008,0.763815700000066],[100.20054490000007,0.744736],[100.21107030000007,0.735512300000039],[100.21322120000008,0.735625500000026],[100.21905320000008,0.742738700000075],[100.22379690000008,0.738794],[100.23925890000004,0.733954100000062],[100.24270120000006,0.694307600000059],[100.24077290000008,0.679348800000071],[100.23781930000007,0.673329],[100.21576290000007,0.663115100000027],[100.20302720000007,0.643600900000024],[100.20152390000004,0.643238],[100.20133820000007,0.64094110000002],[100.19981570000004,0.640752],[100.19609180000003,0.635351700000058],[100.18675190000005,0.62658360000006],[100.17827990000006,0.58951490000004],[100.17681910000005,0.572675200000049],[100.17979720000005,0.565903300000059],[100.18409790000004,0.560950500000047],[100.19173890000008,0.560038200000065],[100.19483040000006,0.557803100000058],[100.20015130000007,0.55985110000006],[100.20450920000007,0.557914900000071],[100.21147130000008,0.559108800000047],[100.22112840000005,0.556250700000021],[100.231994,0.548450700000046],[100.23717730000004,0.542559200000028],[100.23819570000006,0.540680800000075],[100.23756730000008,0.535345200000052],[100.22941530000008,0.527662900000053],[100.21613560000009,0.52069640000002],[100.21658680000007,0.511646300000052],[100.22156890000008,0.502891200000022],[100.22614220000008,0.501405200000022],[100.23023050000006,0.497421700000075],[100.23771760000005,0.494667100000072],[100.24204480000009,0.490763800000025],[100.24236250000007,0.485818700000038],[100.23975940000008,0.480099100000075],[100.23728980000004,0.478789800000072],[100.23763440000005,0.475101],[100.24302320000004,0.468765100000041],[100.24387230000008,0.465691100000072],[100.24620860000005,0.464247200000045],[100.250004,0.455853500000046],[100.26041040000007,0.445721200000037],[100.25623150000007,0.44503480000003],[100.25501250000008,0.44197470000006],[100.25901410000006,0.432309],[100.27822760000004,0.409374200000059],[100.28693120000008,0.403236200000038],[100.28961830000009,0.398446900000067],[100.29469070000005,0.400583600000061],[100.30051260000005,0.396600200000023],[100.31340210000008,0.398236300000065],[100.31676120000009,0.402028],[100.31957150000005,0.402992900000072],[100.33764790000004,0.390719500000046],[100.34415820000004,0.384513],[100.34718970000006,0.384285300000045],[100.36405140000005,0.390281200000061],[100.36610830000006,0.394831500000066],[100.37577140000008,0.389314],[100.38918490000003,0.39897430000002],[100.40248250000008,0.405935900000031],[100.40985020000005,0.414663500000074],[100.416499,0.417764900000066],[100.41978990000007,0.423900700000047],[100.43102980000003,0.421830200000045],[100.43532820000007,0.417534900000021],[100.44789550000007,0.41885],[100.44781370000004,0.422033],[100.45267030000008,0.424630700000023],[100.46186220000004,0.434036400000025],[100.46528250000006,0.443014600000026],[100.47233680000005,0.445152300000075],[100.47447440000008,0.449427600000035],[100.47725340000005,0.451137700000061],[100.48815550000006,0.454130400000054],[100.49136190000007,0.457978200000071],[100.49756120000006,0.459047100000021],[100.51209730000005,0.457764500000053],[100.51423490000008,0.463108600000055],[100.51979280000006,0.470162900000048],[100.53026740000007,0.478072200000042],[100.54120620000003,0.503162600000053],[100.54736880000007,0.511419600000067],[100.55463670000006,0.51484],[100.56233250000008,0.524887],[100.571738,0.532155100000068],[100.57686840000008,0.528521],[100.578151,0.524887],[100.58563280000004,0.518474],[100.60358920000004,0.510778300000027],[100.60893260000006,0.50628990000007],[100.64078450000005,0.467170200000055],[100.65083150000004,0.459688400000061],[100.66258860000005,0.447289900000044],[100.68246820000007,0.431899100000066],[100.69037420000006,0.420674700000063],[100.69443980000005,0.418004],[100.70683820000005,0.403467900000066],[100.71645770000003,0.397696200000041],[100.72046610000007,0.390547200000071],[100.72671840000004,0.388504200000057],[100.728001,0.385939],[100.73505530000006,0.380808700000046],[100.74251930000008,0.377811800000075],[100.74989130000006,0.379570700000045],[100.75453,0.381064],[100.76046810000008,0.385732300000029],[100.77271430000008,0.389839],[100.77011520000008,0.381994700000064],[100.77753560000008,0.376950100000045],[100.77512350000006,0.376016700000037],[100.80276370000007,0.354905],[100.81049970000004,0.353156600000034],[100.815185,0.354890500000067],[100.83477160000007,0.370425600000033],[100.838933,0.375392400000067],[100.84009240000006,0.380981600000041],[100.83943340000008,0.386668500000042],[100.84134930000005,0.392269900000031],[100.84226390000003,0.424967200000026],[100.84126390000006,0.427745500000071],[100.84080210000008,0.466614],[100.83871480000005,0.476031100000057],[100.825071,0.492781900000068],[100.81955080000006,0.511014800000055],[100.80857350000008,0.529435200000023],[100.79316550000004,0.544911700000057],[100.78960450000005,0.54470630000003],[100.78549570000007,0.540939900000069],[100.77700420000008,0.528408],[100.77159430000006,0.528202600000043],[100.74583780000006,0.544558800000061],[100.73365290000004,0.554426200000023],[100.72262670000003,0.55783230000003],[100.71479610000006,0.566962200000034],[100.70948990000005,0.569750400000032],[100.68971770000007,0.587028400000065],[100.67997740000004,0.587567700000022],[100.67678960000006,0.589494200000047],[100.67421,0.593883500000061],[100.67390740000008,0.59832670000003],[100.66694150000006,0.604999],[100.66224960000005,0.607524700000056],[100.65227860000005,0.618448500000056],[100.65046290000004,0.625917700000059],[100.64445880000005,0.63487],[100.64134580000007,0.63774630000006],[100.62614610000008,0.644637900000021],[100.624301,0.647086900000033],[100.61573370000008,0.658609600000034],[100.61002220000006,0.670979600000067],[100.60436430000004,0.690832],[100.59722290000008,0.698874200000034],[100.59396930000008,0.700128900000038],[100.59538,0.704063800000029],[100.61142150000006,0.716152600000044],[100.65659110000007,0.745894600000042],[100.67807020000004,0.778627500000027],[100.64140850000007,0.797519900000054],[100.61254650000006,0.807444900000064],[100.61793760000006,0.817369800000051],[100.61751880000008,0.823231900000053],[100.62764630000004,0.823209700000064],[100.63524110000009,0.833414400000038],[100.64362710000006,0.823958],[100.647755,0.825503],[100.67962010000008,0.813360100000068],[100.69169990000006,0.803922400000033],[100.70042230000007,0.810769],[100.691439,0.82158910000004],[100.70331140000008,0.83211110000002],[100.724258,0.841401900000051],[100.72825590000008,0.833237200000042],[100.74452890000003,0.848440400000072],[100.75042590000004,0.849097900000061],[100.73998890000007,0.858494300000075],[100.74499160000005,0.869792100000041],[100.75928360000006,0.85580310000006],[100.76384260000003,0.858181700000046],[100.77150050000006,0.865332900000055],[100.90687270000006,1.029913100000044],[100.93258910000009,1.248483100000044],[100.93524060000004,1.280247800000041],[100.94754060000008,1.35122]],[[100.74499160000005,0.869792100000041],[100.73405690000004,0.876036200000044],[100.74001460000005,0.887372200000073],[100.75861360000005,0.886787300000037],[100.75854420000007,0.884159600000032],[100.76534430000004,0.884392400000024],[100.76573810000008,0.879608800000028],[100.77642980000007,0.879603700000075],[100.77642660000004,0.872827400000062],[100.75821050000008,0.871640200000058],[100.75836960000004,0.877619300000049],[100.75108550000004,0.877622700000074],[100.74499160000005,0.869792100000041]]]},"properties":{"shapeName":"Rokan Hulu","shapeISO":"","shapeID":"22746128B12875562415950","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[122.87141420000012,-10.968847299999936],[122.86412810000002,-10.964033099999938],[122.852951,-10.969190599999934],[122.84082030000002,-10.968479199999933],[122.84730530000002,-10.97748759999996],[122.84699250000006,-10.980624199999966],[122.84482570000011,-10.981175399999927],[122.84426120000012,-10.983061799999973],[122.84643560000006,-10.98225119999995],[122.853653,-10.993290899999977],[122.85796360000006,-10.995349899999951],[122.86920930000008,-11.005328199999951],[122.87468720000004,-11.007615099999953],[122.88332370000012,-11.004606199999955],[122.88597870000001,-11.001776699999937],[122.88666540000008,-10.998333899999977],[122.88174440000012,-10.977745],[122.87141420000012,-10.968847299999936]]],[[[122.8832321000001,-10.955338499999925],[122.878273,-10.952831299999957],[122.87798310000005,-10.9547529],[122.879982,-10.955803899999978],[122.8832321000001,-10.955338499999925]]],[[[122.95301820000009,-10.944193799999937],[122.9509964,-10.94252679999994],[122.95093540000005,-10.94429589999993],[122.95301820000009,-10.944193799999937]]],[[[122.99453740000001,-10.929242099999954],[122.99800870000001,-10.926426899999967],[122.9976196,-10.92374419999993],[122.99546810000004,-10.924565299999927],[122.99453740000001,-10.929242099999954]]],[[[122.95777890000011,-10.9172573],[122.95902250000006,-10.914796799999976],[122.9564514000001,-10.916610699999978],[122.95574950000002,-10.9200115],[122.9535141,-10.920689599999946],[122.95284270000002,-10.917880099999934],[122.95330810000007,-10.916909199999964],[122.95413210000004,-10.920298599999967],[122.95434570000009,-10.916071899999963],[122.95126340000002,-10.915970799999968],[122.95050810000009,-10.9189415],[122.9490128000001,-10.919073099999935],[122.95090490000007,-10.920725799999957],[122.94768520000002,-10.919965699999977],[122.94870760000003,-10.922449099999938],[122.94737240000006,-10.923323599999947],[122.94493870000008,-10.918000199999938],[122.94332880000002,-10.917883899999936],[122.94258880000007,-10.91990759999993],[122.9421463000001,-10.917222],[122.93882750000012,-10.9176588],[122.93973540000002,-10.915824899999961],[122.93515780000007,-10.915861099999972],[122.93344120000006,-10.917779899999971],[122.9336929000001,-10.920641],[122.930191,-10.9243889],[122.93225860000007,-10.928710899999942],[122.93161010000006,-10.930090899999982],[122.93447110000011,-10.933782599999972],[122.93283080000003,-10.93606],[122.93994140000007,-10.940507899999943],[122.94429780000007,-10.940319099999954],[122.94592280000006,-10.938415499999962],[122.9561996000001,-10.938153299999954],[122.95495610000012,-10.935872099999926],[122.95602420000012,-10.93590359999996],[122.95696260000011,-10.931617699999947],[122.96101380000005,-10.930371299999933],[122.96405030000005,-10.9266825],[122.96395110000003,-10.923895799999968],[122.9718018000001,-10.920455],[122.9652023000001,-10.9169731],[122.95928960000003,-10.917717899999957],[122.96012110000004,-10.91589829999998],[122.95777890000011,-10.9172573]]],[[[123.021019,-10.90868759999995],[123.0206985000001,-10.907339099999945],[123.01923370000009,-10.907816899999943],[123.021019,-10.90868759999995]]],[[[122.99183660000006,-10.907892199999935],[122.98413850000009,-10.910100899999975],[122.9827805000001,-10.912883799999975],[122.97644040000012,-10.911678299999949],[122.97935490000009,-10.918805099999929],[122.98606110000003,-10.924095099999931],[122.99029540000004,-10.925218599999937],[122.99279020000006,-10.922743799999978],[122.995842,-10.923028],[123.0005417000001,-10.919004399999949],[122.998085,-10.917393699999934],[122.99797060000003,-10.914938899999981],[123.00108340000008,-10.909425699999929],[122.99536890000002,-10.910623499999929],[122.99183660000006,-10.907892199999935]]],[[[123.06384280000009,-10.871672599999954],[123.0579987000001,-10.86913869999995],[123.05825040000002,-10.871920599999953],[123.0636826000001,-10.877145799999937],[123.06486510000002,-10.8755455],[123.06384280000009,-10.871672599999954]]],[[[123.07200620000003,-10.862711899999965],[123.0732498000001,-10.861510299999964],[123.07058710000001,-10.860025399999927],[123.07200620000003,-10.862711899999965]]],[[[122.73854060000008,-10.824254],[122.733345,-10.825777099999925],[122.7307968,-10.828781099999958],[122.73103330000004,-10.83163639999998],[122.73481750000008,-10.835342399999945],[122.74013520000005,-10.834874199999945],[122.749115,-10.8281097],[122.74629980000009,-10.825099],[122.73854060000008,-10.824254]]],[[[122.6683121000001,-10.8000698],[122.6661759000001,-10.798462899999947],[122.6557312000001,-10.80091669999996],[122.64491270000008,-10.801557499999944],[122.64158630000009,-10.802822099999958],[122.63979340000003,-10.806754099999978],[122.6722794000001,-10.831072799999959],[122.67782590000002,-10.833925299999976],[122.68080140000006,-10.831411399999979],[122.68615720000003,-10.833991],[122.68757630000005,-10.826750799999957],[122.68151090000003,-10.820173299999965],[122.67151640000009,-10.812645],[122.66895290000002,-10.807874699999957],[122.6683121000001,-10.8000698]]],[[[122.77306360000011,-10.772307399999931],[122.76229100000012,-10.772503899999947],[122.75206760000003,-10.775305699999933],[122.74981690000004,-10.778285],[122.749855,-10.785485299999948],[122.75576020000005,-10.7890472],[122.76202390000003,-10.789165499999967],[122.78437810000003,-10.781519899999978],[122.78674320000005,-10.774128899999937],[122.77306360000011,-10.772307399999931]]],[[[122.99726110000006,-10.730377399999952],[122.99449920000006,-10.729675399999962],[122.99237830000004,-10.731405399999971],[122.99726870000006,-10.73166],[122.99726110000006,-10.730377399999952]]],[[[122.96283720000008,-10.727973099999929],[122.96328740000001,-10.731558899999982],[122.96393590000002,-10.729223399999967],[122.96283720000008,-10.727973099999929]]],[[[122.95693210000002,-10.7303058],[122.95490260000008,-10.727599299999952],[122.94654850000006,-10.727936],[122.94387820000009,-10.729662099999928],[122.94364930000006,-10.731502699999965],[122.94821170000012,-10.732722399999943],[122.95693210000002,-10.7303058]]],[[[123.3731232,-10.5404167],[123.3722077000001,-10.535847599999954],[123.37133030000007,-10.538311],[123.3731232,-10.5404167]]],[[[123.38278960000002,-10.53620529999995],[123.38249210000004,-10.534868199999949],[123.38037870000005,-10.5360985],[123.3789825,-10.539135899999962],[123.38184360000002,-10.538400599999932],[123.38278960000002,-10.53620529999995]]],[[[123.38473510000006,-10.535015099999953],[123.38478850000001,-10.53297329999998],[123.3832169000001,-10.536095599999953],[123.38473510000006,-10.535015099999953]]],[[[123.3771286000001,-10.537734],[123.3779297000001,-10.534919699999932],[123.3767471000001,-10.531533199999956],[123.37474820000011,-10.535259199999928],[123.3771286000001,-10.537734]]],[[[123.38980870000012,-10.529169099999933],[123.38617710000005,-10.5273209],[123.38721470000007,-10.531738299999972],[123.38552860000004,-10.535264],[123.38762660000009,-10.533980399999962],[123.38980870000012,-10.529169099999933]]],[[[123.42678070000011,-10.490935299999933],[123.4079666,-10.49421689999997],[123.40390780000007,-10.498895699999935],[123.40431210000008,-10.502906799999948],[123.40198520000001,-10.50704],[123.40242770000009,-10.511268599999937],[123.40436550000004,-10.514062899999942],[123.40637210000011,-10.514296499999944],[123.40517430000011,-10.518058799999949],[123.40351110000006,-10.519773499999928],[123.39947510000002,-10.519602799999973],[123.3968430000001,-10.52102659999997],[123.39642330000004,-10.523617699999932],[123.394783,-10.523010299999953],[123.39360050000005,-10.525108399999965],[123.39411160000009,-10.526917499999968],[123.39134220000005,-10.526527399999964],[123.39169310000011,-10.5288334],[123.38576510000007,-10.538596199999972],[123.38657380000006,-10.544291499999929],[123.38343810000003,-10.539176],[123.383255,-10.543237699999963],[123.38143920000005,-10.540156399999944],[123.37445830000001,-10.544192299999963],[123.37710570000002,-10.547565499999962],[123.38048550000008,-10.546510699999942],[123.38054660000012,-10.556404099999952],[123.38280490000011,-10.560554499999967],[123.384613,-10.560681399999964],[123.38866430000007,-10.557085099999938],[123.38854980000008,-10.55318159999996],[123.39118960000008,-10.551143699999955],[123.39686580000011,-10.538690599999939],[123.40246580000007,-10.536301599999945],[123.40544890000001,-10.539532699999938],[123.40673830000003,-10.535265],[123.40927890000012,-10.534355199999936],[123.41399380000007,-10.529084199999943],[123.41201020000005,-10.52967549999994],[123.41114040000002,-10.527390499999967],[123.42011260000004,-10.522561099999962],[123.42205050000007,-10.519146899999953],[123.42441560000009,-10.519863099999952],[123.42838290000009,-10.5156584],[123.42868040000008,-10.511921899999948],[123.4324875000001,-10.50690839999993],[123.43487550000009,-10.506562199999962],[123.43618010000012,-10.5106955],[123.43750000000011,-10.5086422],[123.439003,-10.51087],[123.43958280000004,-10.506052],[123.4422379,-10.500977499999976],[123.44127660000004,-10.491929],[123.43437960000006,-10.493042],[123.42678070000011,-10.490935299999933]]],[[[123.3979111000001,-10.487095799999963],[123.39654540000004,-10.4846058],[123.39225770000007,-10.489153899999963],[123.39362330000006,-10.488697099999968],[123.39444730000002,-10.4912968],[123.39818570000011,-10.494627],[123.3979111000001,-10.487095799999963]]],[[[123.39694210000005,-10.484346399999936],[123.39692690000004,-10.48212049999995],[123.39579770000012,-10.483531899999946],[123.39694210000005,-10.484346399999936]]],[[[123.40013120000003,-10.480457299999955],[123.40061190000006,-10.478987699999948],[123.39851380000005,-10.480680499999949],[123.40013120000003,-10.480457299999955]]],[[[123.33291630000008,-10.454337099999975],[123.33014680000008,-10.455308],[123.32936860000007,-10.457468],[123.3314133,-10.457401299999958],[123.33291630000008,-10.454337099999975]]],[[[123.378685,-10.4310417],[123.3740692,-10.431377399999974],[123.36894990000008,-10.44069959999996],[123.36903380000001,-10.443193399999927],[123.3726196,-10.44803429999996],[123.37159730000008,-10.452837],[123.37583160000008,-10.457293499999935],[123.37198640000008,-10.465509399999974],[123.365036,-10.469755199999952],[123.36983490000011,-10.476313599999969],[123.36964420000004,-10.478049299999952],[123.36523440000008,-10.480268499999966],[123.36504360000004,-10.478998199999978],[123.363266,-10.482983599999955],[123.362297,-10.480876],[123.35919950000005,-10.481024699999978],[123.35865790000003,-10.482835799999975],[123.35559080000007,-10.481717099999969],[123.35585790000005,-10.484412199999952],[123.34951020000005,-10.487391499999944],[123.34820550000006,-10.484676399999955],[123.35006710000005,-10.483243],[123.349144,-10.4822865],[123.33931730000006,-10.486091599999952],[123.32639310000002,-10.5003757],[123.29533390000006,-10.509024599999975],[123.28750610000009,-10.517446499999949],[123.285881,-10.513402],[123.28404240000009,-10.512324299999932],[123.284111,-10.51457789999995],[123.27961730000004,-10.5192928],[123.27284240000006,-10.518296199999952],[123.26448820000007,-10.520546899999943],[123.25000000000011,-10.535776099999964],[123.2427216000001,-10.549133299999937],[123.24110410000003,-10.549610099999938],[123.23963170000002,-10.553343799999936],[123.234436,-10.559209799999962],[123.23343660000012,-10.56494429999998],[123.22103880000009,-10.5695477],[123.21324160000006,-10.57971759999998],[123.21516420000012,-10.582660699999963],[123.21847530000002,-10.584249499999942],[123.220665,-10.592645599999969],[123.22437290000005,-10.596594799999934],[123.22914120000007,-10.595939599999951],[123.24482280000007,-10.602909199999942],[123.25490660000003,-10.603061399999945],[123.25513500000011,-10.600435799999957],[123.25840740000001,-10.595793499999957],[123.26415330000009,-10.593282099999954],[123.27621580000005,-10.579659399999969],[123.2864518,-10.5804204],[123.300112,-10.577274099999954],[123.3133319000001,-10.576575799999944],[123.3160047,-10.581066699999951],[123.31234460000007,-10.591240399999947],[123.31017740000004,-10.593287199999963],[123.3014846000001,-10.595406199999957],[123.29654820000007,-10.595273799999973],[123.29411620000008,-10.593503899999973],[123.2877711000001,-10.599102499999958],[123.28217250000012,-10.5999934],[123.27478,-10.604809399999965],[123.26941020000004,-10.604026799999929],[123.26731530000006,-10.600848299999939],[123.26160830000003,-10.603870299999926],[123.26018760000011,-10.606025399999965],[123.24637780000012,-10.604580599999963],[123.23743660000002,-10.6013803],[123.23462680000011,-10.604829799999948],[123.23085780000008,-10.605926499999953],[123.22598270000003,-10.60108379999997],[123.22145840000007,-10.600903499999959],[123.22165680000012,-10.597117399999945],[123.21710970000004,-10.594969799999944],[123.21340180000004,-10.594914399999936],[123.20693970000002,-10.5914288],[123.20300290000012,-10.591260899999952],[123.1949234000001,-10.593817699999931],[123.1896286000001,-10.603961899999945],[123.19191740000008,-10.614219699999978],[123.19114690000004,-10.619884499999955],[123.18863680000004,-10.621069899999952],[123.18054960000006,-10.630839299999934],[123.17786180000007,-10.6374349],[123.16770180000003,-10.643874],[123.16188820000002,-10.644723699999929],[123.16329960000007,-10.646604399999944],[123.16175090000002,-10.64934809999994],[123.15316010000004,-10.650308399999972],[123.149025,-10.652809],[123.14186860000007,-10.65161969999997],[123.13379680000003,-10.647560899999974],[123.1327973000001,-10.644325099999946],[123.12918090000005,-10.643540199999961],[123.11591340000007,-10.661756299999979],[123.1096649000001,-10.663589499999944],[123.10834510000007,-10.661709799999926],[123.10894010000004,-10.6638069],[123.10691070000007,-10.665244099999938],[123.10894780000001,-10.666683199999966],[123.10881040000004,-10.670201299999974],[123.09916690000011,-10.674622499999941],[123.09375000000011,-10.671463],[123.0931091000001,-10.680696499999954],[123.08726500000012,-10.6866608],[123.08035280000001,-10.689347299999952],[123.076622,-10.693018],[123.0712433000001,-10.693118099999936],[123.0709839000001,-10.694704099999967],[123.07368470000006,-10.695524199999966],[123.07447810000008,-10.697892199999956],[123.07341,-10.700975399999948],[123.067688,-10.704867399999955],[123.06388850000008,-10.702293399999974],[123.0629196000001,-10.703864099999976],[123.06147,-10.70312309999997],[123.06234740000002,-10.706096599999967],[123.06053920000011,-10.709687199999962],[123.05163570000002,-10.718811],[123.04791260000002,-10.725261699999976],[123.04364010000006,-10.7261095],[123.04269410000006,-10.729385399999956],[123.0394897000001,-10.72886559999995],[123.03677370000003,-10.730622399999959],[123.02868650000005,-10.724929],[123.022934,-10.727895899999965],[123.02413180000008,-10.728411799999947],[123.02248380000003,-10.729470399999968],[123.02377320000005,-10.73258889999994],[123.02047730000004,-10.734573499999954],[123.0172272000001,-10.734894899999972],[123.01686860000007,-10.73180309999998],[123.01380160000008,-10.730100799999946],[123.00785830000007,-10.730060699999967],[123.007637,-10.731643799999972],[123.00120540000012,-10.73306],[122.99478150000004,-10.73181649999998],[122.991333,-10.733724699999925],[122.986824,-10.73322879999995],[122.98557280000011,-10.736825199999942],[122.98473360000003,-10.736394099999927],[122.9851761000001,-10.739642299999957],[122.9809570000001,-10.740894499999968],[122.98078920000012,-10.742121899999972],[122.97981260000006,-10.740870599999937],[122.9741974000001,-10.743155599999966],[122.958931,-10.74179],[122.95634460000008,-10.744121699999937],[122.94750980000003,-10.746216],[122.937851,-10.737387799999965],[122.933548,-10.736515199999928],[122.93170170000008,-10.73824609999997],[122.93258670000012,-10.7443744],[122.9299774000001,-10.7422659],[122.92253520000008,-10.747169099999951],[122.92091370000003,-10.745542499999942],[122.91293340000004,-10.746433299999978],[122.91111750000005,-10.749527],[122.90083310000011,-10.751780499999938],[122.90040590000001,-10.754444099999944],[122.89801790000001,-10.75527379999994],[122.88883210000006,-10.757442499999968],[122.87398530000007,-10.755511299999966],[122.86603550000007,-10.756010099999969],[122.85826110000005,-10.758833899999956],[122.8467865,-10.770632699999965],[122.83407590000002,-10.774209],[122.8333053,-10.778239299999939],[122.83757020000007,-10.783065799999974],[122.83715820000009,-10.787902799999927],[122.82447820000004,-10.785205799999972],[122.82328030000008,-10.786564799999951],[122.822937,-10.784847299999967],[122.8258972000001,-10.782740599999954],[122.82321170000012,-10.780028399999935],[122.81002050000006,-10.7819948],[122.80371860000002,-10.802487399999961],[122.8127975000001,-10.81614589999998],[122.81186680000008,-10.81742],[122.81299590000003,-10.818972599999938],[122.81719210000006,-10.8185768],[122.81797030000007,-10.821065],[122.81954960000007,-10.820425],[122.8256378000001,-10.834096],[122.82451630000003,-10.835393899999929],[122.82536320000008,-10.839881899999966],[122.82341,-10.840839399999936],[122.82952880000005,-10.853639599999951],[122.83111570000005,-10.8709402],[122.829895,-10.874715799999933],[122.82743840000012,-10.876401],[122.82692720000011,-10.880460699999958],[122.82133480000005,-10.891728399999977],[122.82129670000006,-10.905728299999964],[122.82392880000009,-10.914347599999928],[122.82208250000008,-10.919438399999933],[122.82550810000009,-10.923679399999969],[122.83366400000011,-10.927335699999958],[122.83415220000006,-10.929060899999968],[122.83209990000012,-10.930996899999968],[122.83538820000001,-10.932013499999925],[122.84082790000002,-10.937850899999944],[122.8440323000001,-10.938382199999978],[122.84690090000004,-10.943105699999933],[122.84734350000008,-10.941515],[122.85577390000003,-10.939848899999959],[122.8582229000001,-10.9362049],[122.86014560000001,-10.928265599999975],[122.85780330000011,-10.928620399999943],[122.85758210000006,-10.927019099999939],[122.86240390000012,-10.917375599999957],[122.86529540000004,-10.917664499999944],[122.87467960000004,-10.9143343],[122.8752975000001,-10.916721399999972],[122.88249210000004,-10.915630299999975],[122.8824234000001,-10.913208],[122.88582610000003,-10.912575699999934],[122.88653570000008,-10.91401389999993],[122.8887711000001,-10.910329799999943],[122.8880157000001,-10.914682399999947],[122.89085390000002,-10.912166599999978],[122.89060970000003,-10.910627399999953],[122.89119720000008,-10.913312],[122.90109250000012,-10.910937299999944],[122.90167240000005,-10.912896199999977],[122.89729310000007,-10.919432599999936],[122.89994050000007,-10.921315199999981],[122.9032059000001,-10.9206667],[122.90538790000005,-10.917353699999978],[122.90328220000004,-10.911273],[122.9052124000001,-10.911926299999948],[122.90913390000003,-10.910091399999942],[122.91011050000009,-10.911903399999971],[122.90810390000001,-10.917376499999932],[122.90886690000002,-10.9185553],[122.906517,-10.922639799999956],[122.91136170000004,-10.924904799999979],[122.9195175000001,-10.920576099999948],[122.92169950000005,-10.914860699999963],[122.92320250000012,-10.914867399999935],[122.923912,-10.919095],[122.92575840000006,-10.916011799999978],[122.93991090000009,-10.911004099999957],[122.94932560000007,-10.904048899999964],[122.95743560000005,-10.908573199999978],[122.95993810000004,-10.909038499999951],[122.96083070000009,-10.907732],[122.9704971000001,-10.915105799999935],[122.97295380000003,-10.9133387],[122.97205350000002,-10.909756699999946],[122.969574,-10.906731599999944],[122.96646880000003,-10.906134599999973],[122.96427150000011,-10.9031],[122.96450040000002,-10.900492699999973],[122.95570370000007,-10.8983536],[122.94900510000002,-10.892917599999976],[122.9525986000001,-10.8911858],[122.95278170000006,-10.888431499999967],[122.94959260000007,-10.887052599999947],[122.95043180000005,-10.884076099999959],[122.9527283000001,-10.8837729],[122.953064,-10.881637599999976],[122.95800780000002,-10.880752599999937],[122.95818330000009,-10.878465699999936],[122.96450040000002,-10.879127499999981],[122.9637527000001,-10.8754845],[122.9687348000001,-10.87017439999994],[122.97888180000007,-10.865021699999943],[122.9821167,-10.865344099999959],[122.98844150000002,-10.860635799999955],[122.99735260000011,-10.858703599999956],[123.00550840000005,-10.858871499999964],[123.01103970000008,-10.864378],[123.01408390000006,-10.862306599999954],[123.01524350000011,-10.867599499999926],[123.01822660000005,-10.866632399999958],[123.02056120000009,-10.862688099999957],[123.02574160000006,-10.859051699999952],[123.05196380000007,-10.8556404],[123.05818180000006,-10.8586073],[123.0569,-10.861665699999946],[123.05802920000008,-10.86370089999997],[123.0601196,-10.861946099999955],[123.06105040000011,-10.857782399999962],[123.06284330000005,-10.857889199999931],[123.06346130000009,-10.856191599999931],[123.06720730000006,-10.85687059999998],[123.06970210000009,-10.854547499999967],[123.06926730000009,-10.84970089999996],[123.07057190000012,-10.847708699999941],[123.07540130000007,-10.851676],[123.07556910000005,-10.8554001],[123.07936860000007,-10.8547316],[123.08591460000002,-10.857832899999948],[123.08966060000012,-10.856747599999949],[123.09407810000005,-10.847919499999932],[123.0938949,-10.844904],[123.10071560000006,-10.8366271],[123.0983963000001,-10.837183099999947],[123.10122680000006,-10.834780799999976],[123.1005325000001,-10.834173299999975],[123.10192870000003,-10.834352599999931],[123.1012191000001,-10.833270199999959],[123.10262300000011,-10.8315507],[123.11875910000003,-10.823244199999976],[123.12560270000006,-10.818076299999973],[123.13262930000008,-10.815464099999929],[123.13545980000004,-10.816334899999958],[123.15053550000005,-10.813652199999979],[123.15579220000006,-10.816788799999927],[123.16152190000003,-10.817174],[123.16069790000006,-10.8179913],[123.17044070000009,-10.824358],[123.17089840000006,-10.826311099999941],[123.17375950000007,-10.828258499999947],[123.17971040000009,-10.828860299999974],[123.17990880000002,-10.830604599999958],[123.18828580000002,-10.83463],[123.18216710000002,-10.833297699999946],[123.18212130000006,-10.8342428],[123.1889877000001,-10.836867299999938],[123.19641880000006,-10.833427399999948],[123.19500730000004,-10.833583799999928],[123.19615940000006,-10.828322399999934],[123.1983871000001,-10.825292599999955],[123.20451350000008,-10.8244209],[123.2055511000001,-10.823063899999966],[123.20933530000002,-10.823825799999952],[123.20791630000008,-10.819369299999948],[123.21319580000011,-10.822758699999952],[123.21537020000005,-10.821675299999981],[123.21828460000006,-10.824986399999943],[123.220932,-10.8243189],[123.22009280000009,-10.8264027],[123.22271730000011,-10.82963559999996],[123.2245941000001,-10.827662499999974],[123.22345730000006,-10.827880899999968],[123.22308350000003,-10.826117499999953],[123.22808070000008,-10.818738899999971],[123.22982020000006,-10.799407899999949],[123.24118810000004,-10.785455699999943],[123.24494170000003,-10.776924099999974],[123.2429810000001,-10.772569699999963],[123.24303440000006,-10.764032399999962],[123.23686980000002,-10.75679589999993],[123.23683170000004,-10.753516199999979],[123.24073790000011,-10.749251399999935],[123.24781030000008,-10.75],[123.24565120000011,-10.7459126],[123.2531815000001,-10.734385499999973],[123.25524140000005,-10.733283099999937],[123.25900270000011,-10.735077799999942],[123.2616882000001,-10.733089399999926],[123.26631170000007,-10.734044099999949],[123.2702713000001,-10.729564699999969],[123.28422550000005,-10.728007299999945],[123.287323,-10.724547399999949],[123.29418180000005,-10.723571799999945],[123.2960968000001,-10.719821899999943],[123.300003,-10.720323599999972],[123.30059050000011,-10.716945599999974],[123.30426030000001,-10.7127218],[123.30414580000001,-10.70543],[123.30596160000005,-10.703363399999944],[123.3105316000001,-10.703090699999962],[123.30999760000009,-10.7001457],[123.31137850000005,-10.699322699999982],[123.31328580000002,-10.70045],[123.31778720000011,-10.69983389999993],[123.3212433000001,-10.6969299],[123.32078550000006,-10.695468],[123.32504270000004,-10.693980199999942],[123.32493590000001,-10.692485799999929],[123.32904050000002,-10.6919336],[123.330658,-10.687304499999982],[123.32728580000003,-10.683527],[123.33203890000004,-10.67799759999997],[123.33733370000004,-10.677768699999945],[123.34003450000012,-10.684934599999963],[123.34172820000003,-10.684882199999947],[123.34338380000008,-10.681899099999953],[123.34484860000009,-10.685830099999976],[123.34740450000004,-10.686731399999928],[123.3506317,-10.684064899999953],[123.3527908000001,-10.684805899999958],[123.35466770000005,-10.683589899999959],[123.35666660000004,-10.686158199999966],[123.35974120000003,-10.682752599999958],[123.36406710000006,-10.681154299999946],[123.36621860000002,-10.682563799999969],[123.368187,-10.688295399999959],[123.37097930000004,-10.688597699999946],[123.37432860000001,-10.686752299999966],[123.37918090000005,-10.690671899999927],[123.3850632000001,-10.6882448],[123.392273,-10.681489899999974],[123.3939362000001,-10.681985899999972],[123.395752,-10.686623599999962],[123.3976669000001,-10.687553399999956],[123.40430450000008,-10.684287099999949],[123.40962980000006,-10.674728399999935],[123.40596770000002,-10.670422599999938],[123.40699770000003,-10.666131],[123.41172030000007,-10.661301599999945],[123.41937260000009,-10.657252299999982],[123.42366030000005,-10.656170799999927],[123.4253235000001,-10.656366299999945],[123.42538450000006,-10.657945599999948],[123.42673490000004,-10.656451199999935],[123.42571260000011,-10.655755],[123.42737580000005,-10.652112899999963],[123.425827,-10.652657499999975],[123.42495730000007,-10.648349799999949],[123.42710110000007,-10.639344199999925],[123.42511750000006,-10.635391199999958],[123.42594910000003,-10.62559989999994],[123.4205932000001,-10.613739],[123.41626740000004,-10.608652099999972],[123.41191860000004,-10.610026399999981],[123.40410610000004,-10.608902],[123.39609530000007,-10.601040799999964],[123.38941190000003,-10.596928599999956],[123.38168340000004,-10.596853299999964],[123.38143920000005,-10.598738699999956],[123.37636570000006,-10.600972199999944],[123.37058260000003,-10.599606499999936],[123.36744690000012,-10.601157199999932],[123.36315920000004,-10.600975099999971],[123.35800170000005,-10.598342899999977],[123.35458370000003,-10.598571799999945],[123.35112760000004,-10.597106899999972],[123.34922790000007,-10.5910902],[123.34324650000008,-10.588983499999927],[123.34252930000002,-10.586714799999982],[123.345581,-10.585469199999977],[123.35125730000004,-10.586130199999957],[123.36026760000004,-10.582027399999959],[123.36307520000003,-10.5827303],[123.36607360000005,-10.581119499999943],[123.36382290000006,-10.583482699999934],[123.36847690000002,-10.583528499999943],[123.3737106000001,-10.577741599999968],[123.37748720000002,-10.576204299999972],[123.37897490000012,-10.572793],[123.38153080000006,-10.57168],[123.3834915000001,-10.568504299999972],[123.38426210000011,-10.563332599999967],[123.3807220000001,-10.56130879999995],[123.37921140000003,-10.55249779999997],[123.37624360000007,-10.551409699999965],[123.37532810000005,-10.554571199999941],[123.37344360000009,-10.555826199999956],[123.37248990000012,-10.561760899999967],[123.36983490000011,-10.558589],[123.3726349000001,-10.5525369],[123.36758420000001,-10.554042799999934],[123.36342620000005,-10.5520001],[123.36154940000006,-10.555460899999957],[123.3584595000001,-10.551269499999933],[123.36130520000006,-10.5493755],[123.35919950000005,-10.549065599999949],[123.35837550000008,-10.5504694],[123.3572845000001,-10.545906099999968],[123.3608703000001,-10.548612599999956],[123.36138920000008,-10.5455904],[123.36344150000002,-10.544903699999963],[123.36466220000011,-10.542078],[123.36567690000004,-10.53313259999993],[123.36690520000002,-10.535361299999977],[123.36830140000006,-10.5352154],[123.3686523,-10.529365499999926],[123.37221530000011,-10.527851099999964],[123.37162780000006,-10.531000099999972],[123.37557980000008,-10.524862299999938],[123.37789150000003,-10.528163899999981],[123.37756350000006,-10.529951099999948],[123.37957,-10.529845199999954],[123.38106540000001,-10.533407199999942],[123.38212580000004,-10.529905299999939],[123.38535310000009,-10.52704239999997],[123.38595580000003,-10.523751299999958],[123.38966370000003,-10.5208292],[123.39042660000007,-10.523723599999926],[123.39125830000012,-10.518829399999959],[123.38964080000005,-10.516115199999945],[123.390892,-10.50932309999996],[123.39337160000002,-10.50873759999996],[123.39435580000008,-10.505785],[123.3964539000001,-10.508688899999981],[123.39989470000012,-10.505198499999949],[123.39816280000002,-10.500801099999933],[123.39615630000003,-10.501579299999946],[123.39217380000002,-10.499720599999932],[123.39115140000001,-10.50101],[123.39112860000012,-10.496047],[123.39041140000006,-10.498378699999932],[123.38860320000003,-10.496734599999968],[123.38908390000006,-10.499938],[123.3873367000001,-10.502857199999937],[123.38753510000004,-10.493272799999943],[123.38471220000008,-10.496039399999972],[123.3841705000001,-10.494792899999936],[123.38375090000011,-10.497328799999934],[123.37894440000002,-10.502286899999945],[123.37770080000007,-10.502077099999951],[123.38196560000006,-10.493967099999963],[123.38320920000001,-10.494823499999939],[123.38285070000006,-10.4882145],[123.38433080000004,-10.488076199999966],[123.384964,-10.489949199999955],[123.39026640000009,-10.485455499999944],[123.38913730000002,-10.483808499999952],[123.3909073000001,-10.4803562],[123.3950119000001,-10.478776899999957],[123.39608,-10.476845699999956],[123.39876560000005,-10.477660199999946],[123.40249630000005,-10.473018599999932],[123.40411380000012,-10.47324939999993],[123.40463260000001,-10.471343],[123.40493010000012,-10.475320799999963],[123.41966250000007,-10.471568099999956],[123.42595670000003,-10.472146099999975],[123.41940310000007,-10.469742799999949],[123.410202,-10.470393199999933],[123.40770720000012,-10.459353499999963],[123.40484620000007,-10.455008499999963],[123.38583380000011,-10.439022099999931],[123.38394160000007,-10.43538],[123.378685,-10.4310417]]]]},"properties":{"shapeName":"Rote Ndao","shapeISO":"","shapeID":"22746128B7131564165847","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[121.27793120000001,-10.822053899999958],[121.27520750000008,-10.819945299999972],[121.2722702000001,-10.822608],[121.27029420000008,-10.822504],[121.26970670000003,-10.824535399999945],[121.2763824000001,-10.829387699999927],[121.2830887,-10.828406299999926],[121.27793120000001,-10.822053899999958]]],[[[121.63447570000005,-10.602364499999965],[121.63389590000008,-10.600499099999979],[121.629219,-10.5976305],[121.61755370000003,-10.60245509999993],[121.60716250000007,-10.604085],[121.58992770000009,-10.600229299999967],[121.57240290000004,-10.598199799999975],[121.56671140000003,-10.598138799999958],[121.5602493,-10.600694699999963],[121.55708310000011,-10.600514399999952],[121.55162050000001,-10.606433899999956],[121.54246520000004,-10.611845],[121.53423310000005,-10.6221819],[121.52862550000009,-10.625544599999955],[121.52567290000002,-10.630429299999946],[121.52114870000003,-10.63088229999994],[121.51872250000008,-10.632672299999967],[121.52088930000002,-10.637182199999927],[121.52405550000003,-10.638406799999927],[121.53871160000006,-10.636205699999948],[121.55439,-10.6404409],[121.56815340000003,-10.64023869999994],[121.57407380000006,-10.642372099999932],[121.57770540000001,-10.63847919999995],[121.58750920000011,-10.634182],[121.6097641,-10.629431699999941],[121.61697390000006,-10.62278269999996],[121.62530520000007,-10.6199446],[121.6344147000001,-10.610370599999953],[121.63447570000005,-10.602364499999965]]],[[[121.95289610000009,-10.433817899999951],[121.9430847000001,-10.4280825],[121.92662050000001,-10.42213529999998],[121.90709690000006,-10.418642099999943],[121.89723210000011,-10.420053499999938],[121.88192750000007,-10.425388299999952],[121.86692810000011,-10.434038099999952],[121.8603058000001,-10.435812899999974],[121.85202030000005,-10.441699],[121.84444430000008,-10.450367],[121.84375000000011,-10.454273199999932],[121.84648130000005,-10.460974699999952],[121.8404465000001,-10.477867099999969],[121.84076690000006,-10.488982199999953],[121.83824160000006,-10.490294499999948],[121.8338242000001,-10.498532299999965],[121.82257080000011,-10.50280289999995],[121.81803130000003,-10.507015199999955],[121.80033880000008,-10.5105514],[121.7962189000001,-10.514539699999943],[121.79116820000002,-10.515628799999945],[121.77388,-10.525424],[121.76362610000001,-10.535653099999934],[121.7274857000001,-10.5498009],[121.70706940000002,-10.565447799999959],[121.68886570000006,-10.572500199999979],[121.68582920000006,-10.574506799999938],[121.68423460000008,-10.577868499999965],[121.70650480000006,-10.592040099999963],[121.70874790000005,-10.591280899999958],[121.7308273000001,-10.601652199999933],[121.7387695000001,-10.603171299999929],[121.74422460000005,-10.611372899999935],[121.74930570000004,-10.615131399999939],[121.75394440000002,-10.613035199999956],[121.76228330000004,-10.6123161],[121.77066800000011,-10.608226799999954],[121.78236390000006,-10.607646899999963],[121.78903960000002,-10.609048799999925],[121.79501340000002,-10.606790499999931],[121.80304720000004,-10.609979599999974],[121.80628210000009,-10.612833],[121.81646730000011,-10.6140928],[121.82711030000007,-10.622501399999976],[121.83782960000008,-10.625856399999975],[121.84185030000003,-10.625233699999967],[121.84267430000011,-10.623283399999934],[121.8465652000001,-10.621310199999925],[121.855629,-10.619361899999944],[121.85925290000012,-10.619959799999947],[121.86054230000002,-10.623203299999943],[121.86327360000007,-10.622675899999933],[121.870018,-10.615875199999948],[121.87412260000008,-10.616188099999931],[121.87517550000007,-10.618167899999946],[121.88088990000006,-10.614324599999975],[121.88243100000011,-10.609141299999976],[121.89704890000007,-10.595290199999965],[121.91224670000008,-10.590502699999945],[121.9186936000001,-10.580227899999954],[121.92652890000011,-10.574967399999935],[121.92814640000006,-10.571197499999926],[121.93486020000012,-10.567118599999958],[121.9379196000001,-10.563237199999946],[121.94482420000008,-10.560432399999968],[121.94741060000001,-10.557828899999947],[121.94609070000001,-10.556809399999963],[121.95048520000012,-10.556408899999951],[121.95722200000012,-10.551424],[121.9627915000001,-10.549763699999971],[121.97264860000007,-10.548976],[121.97644810000008,-10.550613399999975],[121.98622130000001,-10.550859499999945],[121.98816680000004,-10.545720099999926],[121.98488620000012,-10.544629099999952],[121.98533630000009,-10.542613],[121.9940415000001,-10.534785299999953],[121.99258420000001,-10.532685299999969],[121.99624630000005,-10.527493499999935],[121.99716950000004,-10.522951099999943],[121.99296570000001,-10.517150899999933],[121.99671940000007,-10.5014744],[121.99347690000002,-10.489387499999964],[121.99655150000001,-10.481960299999969],[122.00743100000011,-10.467432],[122.00820920000001,-10.46345329999997],[122.005867,-10.453040099999953],[122.00193020000006,-10.445555699999943],[121.99661260000005,-10.441688499999941],[121.98809810000012,-10.44089889999998],[121.96972660000006,-10.4425764],[121.95886990000008,-10.439005899999927],[121.95289610000009,-10.433817899999951]]]]},"properties":{"shapeName":"Sabu Raijua","shapeISO":"","shapeID":"22746128B56051571857924","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[109.75030060000006,1.537466800000061],[109.74300590000007,1.547603],[109.73346190000007,1.553193800000031],[109.73229480000003,1.55828850000006],[109.72920860000005,1.558710400000052],[109.72649310000008,1.562401],[109.72272060000006,1.561887700000057],[109.71981490000007,1.568448700000033],[109.71673110000006,1.568310900000029],[109.71663560000007,1.571545400000048],[109.71366380000006,1.574671],[109.71314750000005,1.578346900000042],[109.70833530000004,1.581283400000075],[109.70704250000006,1.586375],[109.701016,1.584939],[109.69684860000007,1.588158],[109.69332990000004,1.595167500000059],[109.69485860000009,1.597825400000033],[109.68998730000004,1.603866700000026],[109.68852510000005,1.609812100000056],[109.68254450000006,1.611953600000049],[109.67760760000004,1.611015100000031],[109.66938950000008,1.614099100000033],[109.66591440000008,1.614016400000025],[109.665943,1.615472900000043],[109.66199470000004,1.61741950000004],[109.65963650000003,1.632786500000066],[109.65779650000007,1.63662290000002],[109.667008,1.652558400000032],[109.66517770000007,1.654962100000034],[109.66516630000007,1.659996700000022],[109.66022010000006,1.673864900000069],[109.66021210000008,1.677549700000043],[109.66329890000009,1.67983810000004],[109.66430630000008,1.682939],[109.66088520000005,1.693246700000032],[109.66527330000008,1.697612700000036],[109.66987110000008,1.699267300000031],[109.66730680000006,1.712305],[109.66707410000004,1.718068200000062],[109.66859140000008,1.720736600000066],[109.66718630000008,1.724940700000047],[109.66769830000004,1.733137900000031],[109.67105850000007,1.73773680000005],[109.67169350000006,1.742310100000054],[109.67834290000008,1.749115900000049],[109.68058380000008,1.75890110000006],[109.685125,1.768415600000026],[109.68353890000009,1.775497900000062],[109.68548510000005,1.78213850000003],[109.68295930000005,1.786175400000047],[109.67451960000005,1.787460200000055],[109.66868630000005,1.79337270000002],[109.66037280000006,1.798141200000032],[109.64923360000006,1.795982600000059],[109.64172960000008,1.797617800000069],[109.63917160000005,1.799279600000034],[109.63705,1.805040100000042],[109.63539830000008,1.80536120000005],[109.62997120000006,1.800079100000062],[109.62282160000007,1.803283900000054],[109.61753640000006,1.798546600000066],[109.61247450000008,1.796257900000057],[109.60237550000005,1.795854900000052],[109.600488,1.797974500000066],[109.58632840000007,1.791899600000022],[109.58133270000008,1.798452500000053],[109.57922310000004,1.805035600000053],[109.58068620000006,1.808406800000057],[109.58400360000007,1.809546900000043],[109.58646830000004,1.812644200000022],[109.58514850000006,1.814115500000071],[109.58609840000008,1.819484300000056],[109.58162490000007,1.830710700000054],[109.58240980000005,1.835464200000047],[109.57942520000006,1.836805500000025],[109.57576460000007,1.843805],[109.57624020000009,1.846744200000046],[109.57317250000006,1.842658500000027],[109.56371790000009,1.843260500000042],[109.56132160000004,1.848582900000054],[109.55503240000007,1.850902500000075],[109.55334070000004,1.853552100000059],[109.55473890000007,1.855622500000038],[109.55157290000005,1.859083100000021],[109.55223150000006,1.862818700000048],[109.55828660000009,1.872063800000035],[109.55434630000008,1.872823200000028],[109.55171970000004,1.877454600000021],[109.54955360000008,1.877283700000021],[109.54835330000009,1.884588800000074],[109.54662940000009,1.885670900000036],[109.54438080000006,1.891494200000068],[109.54760540000007,1.895415800000023],[109.54610430000008,1.903884100000028],[109.53883090000005,1.911829100000034],[109.53805140000009,1.927141600000027],[109.54008170000009,1.926461700000061],[109.54488250000009,1.928627300000073],[109.54778820000007,1.926966600000071],[109.55253290000007,1.930140200000039],[109.55623520000006,1.928755],[109.55537970000006,1.930254],[109.55735090000007,1.933680200000026],[109.56443390000004,1.936611300000038],[109.56199340000006,1.940682400000071],[109.56612790000008,1.943163],[109.56699670000006,1.945740100000023],[109.56361910000004,1.948244100000068],[109.564907,1.951224400000058],[109.56066650000008,1.955056900000045],[109.55609570000007,1.95442010000005],[109.55171490000004,1.95623],[109.55255530000005,1.960016900000028],[109.55473340000009,1.96205150000003],[109.55326060000004,1.96593340000004],[109.55789330000005,1.966334200000063],[109.56024420000006,1.971219900000051],[109.566257,1.972596500000066],[109.57642460000005,1.977835700000071],[109.58480380000009,1.977245700000026],[109.597625,1.978789600000027],[109.59815760000004,1.974906300000043],[109.600619,1.973893300000043],[109.60694650000005,1.979782300000068],[109.613511,1.982611200000065],[109.62042030000003,1.983114600000022],[109.62387750000005,1.991979800000024],[109.62725310000008,1.990745100000026],[109.62651660000006,1.996542200000022],[109.63056230000007,2.00450440000003],[109.62943860000007,2.006075500000065],[109.62969580000004,2.01417790000005],[109.63820810000004,2.027710900000045],[109.63293270000008,2.031603700000062],[109.63019480000008,2.036518900000033],[109.63025430000005,2.045948800000076],[109.639108,2.064641900000026],[109.64062290000004,2.071109200000024],[109.64408470000006,2.074452300000075],[109.64456540000003,2.081301],[109.63526810000008,2.075563],[109.63191210000008,2.069640500000048],[109.62547390000009,2.06497580000007],[109.62451490000007,2.057014500000037],[109.62075,2.053864100000055],[109.61694150000005,2.045466200000021],[109.61372420000004,2.04169980000006],[109.61361670000008,2.039274800000044],[109.60627460000006,2.030577600000072],[109.60652620000008,2.027843200000063],[109.60360570000006,2.025415800000076],[109.60222180000005,2.018164300000024],[109.59672690000008,2.008446100000072],[109.59764570000004,2.004689900000074],[109.59414580000004,2.001574800000071],[109.59026240000009,1.993330100000037],[109.58490020000005,1.990052700000035],[109.56860370000004,1.988110600000027],[109.53583240000006,1.989629200000024],[109.47649390000004,1.982379200000025],[109.45699030000009,1.97686340000007],[109.452331,1.974198500000057],[109.45152170000006,1.969022300000063],[109.44723830000004,1.964482300000043],[109.43513810000007,1.95286980000003],[109.42892470000004,1.950459400000057],[109.39410670000007,1.945895500000063],[109.34879290000003,1.94543520000002],[109.33725410000005,1.943155],[109.3329,1.933897700000045],[109.322172,1.926545900000065],[109.32334710000003,1.920654600000034],[109.34343520000004,1.875832],[109.34281790000006,1.87098020000002],[109.33455940000005,1.857476400000053],[109.337899,1.857901800000036],[109.33892360000004,1.863709200000073],[109.34001340000009,1.862402900000063],[109.33749930000005,1.854882800000041],[109.33875030000007,1.844320700000026],[109.33729110000007,1.833179],[109.32680970000007,1.818386700000076],[109.28769850000003,1.776888100000065],[109.28788430000009,1.772992400000021],[109.30054330000007,1.768079400000033],[109.29648140000006,1.75978420000007],[109.29198320000006,1.75696030000006],[109.28902530000005,1.75212],[109.28851980000007,1.74486870000004],[109.28519270000004,1.739638200000059],[109.28641930000003,1.73211630000003],[109.281807,1.721606],[109.28048260000008,1.719752],[109.27359030000008,1.71773810000002],[109.270262,1.715085100000067],[109.26640860000003,1.689958500000046],[109.26211680000006,1.678670400000044],[109.26249330000007,1.67675360000004],[109.25128010000009,1.659017400000039],[109.23161490000007,1.640619900000047],[109.199094,1.620394800000042],[109.15417610000009,1.600419],[109.12865690000007,1.586453300000073],[109.09504480000004,1.559255300000075],[109.06792230000008,1.533774300000061],[109.05646340000004,1.52108370000002],[109.05082720000007,1.510786200000041],[109.04300480000006,1.489729800000021],[109.03723560000009,1.462553100000036],[109.03625710000006,1.431154900000024],[109.03823750000004,1.426824600000032],[109.03697260000007,1.415251],[109.03846880000003,1.412237700000048],[109.03795740000004,1.405235800000071],[109.04022740000005,1.401636100000076],[109.03977790000005,1.396342200000049],[109.04236720000006,1.376657600000044],[109.0438,1.37510240000006],[109.04273120000005,1.373656500000038],[109.04310040000007,1.354349800000023],[109.04132910000004,1.345105200000035],[109.03570960000008,1.329828300000031],[109.02556140000007,1.314667400000076],[109.01039980000007,1.295550500000047],[108.99260080000005,1.277121200000067],[108.98966040000005,1.275861600000042],[108.98986740000004,1.273613400000045],[108.98724260000006,1.271390300000064],[108.98961710000009,1.269430900000032],[108.98980920000008,1.266233900000032],[108.98438590000006,1.25],[108.97664020000008,1.238679600000069],[108.976817,1.23673720000005],[108.97286620000006,1.229836100000057],[108.963732,1.21777220000007],[108.96130470000008,1.207350500000075],[108.95961070000004,1.205544300000042],[108.96822710000004,1.179961900000023],[108.97112120000008,1.176463600000034],[108.96485390000004,1.169552400000043],[108.95609170000006,1.165969500000074],[108.94790560000007,1.164688500000068],[108.92721660000007,1.175649100000044],[108.90667550000006,1.173856100000023],[108.90436330000006,1.171340300000054],[108.90309770000005,1.162466700000039],[108.91604330000007,1.137135],[108.92344350000008,1.118902800000058],[108.92626160000009,1.116395600000033],[108.931594,1.105716],[108.93279080000008,1.10194],[108.93125160000005,1.100170100000071],[108.93164010000004,1.097417800000073],[108.93875520000006,1.094245300000068],[108.94446940000006,1.084101100000055],[108.95006530000006,1.067216600000052],[108.95713610000007,1.062020200000063],[108.96822490000005,1.041068100000075],[108.96882650000003,1.035007300000075],[108.97016820000005,1.035068200000069],[108.97233740000007,1.030595100000028],[108.97703320000005,1.014042400000051],[108.97870990000007,0.989167900000041],[109.02216740000006,0.990450900000042],[109.06274510000009,0.989570900000047],[109.06690090000006,0.992132800000036],[109.07582780000007,0.992611],[109.07962240000006,0.998123600000042],[109.08483680000006,1.00087910000002],[109.08857780000005,0.990916700000071],[109.09555910000006,0.991244100000074],[109.09827070000006,0.994389500000068],[109.09631840000009,1.004910300000063],[109.107978,1.005018800000073],[109.10830340000007,1.011960300000055],[109.120885,1.011146900000028],[109.13025110000007,1.018359600000053],[109.13297850000004,1.016190400000028],[109.13516090000007,1.011458100000027],[109.14290280000006,1.011960300000055],[109.14697020000006,1.010333400000036],[109.14675060000008,1.003126500000064],[109.15087480000005,0.993142200000023],[109.14514030000004,0.990441300000043],[109.14686170000004,0.988044400000035],[109.15006130000006,0.98717670000002],[109.149784,0.980026500000065],[109.15489290000005,0.979516600000068],[109.15981450000004,0.976960100000042],[109.16267830000004,0.97217420000004],[109.16719140000004,0.973681200000044],[109.16742150000005,0.974831400000028],[109.16498960000007,0.976113],[109.16577830000006,0.977263200000039],[109.17139790000004,0.977329],[109.17369830000007,0.979399300000068],[109.17606990000007,0.974584800000059],[109.17264670000009,0.967108600000074],[109.17621180000003,0.964820900000063],[109.17944730000005,0.965791300000035],[109.18756950000005,0.96403],[109.19553810000008,0.966514600000039],[109.20382610000007,0.972243100000071],[109.20372840000005,0.976293700000042],[109.20520090000008,0.978986900000052],[109.21099380000004,0.981490500000064],[109.21315060000006,0.987714200000028],[109.21682850000008,0.98906560000006],[109.22639870000006,0.9876],[109.22991010000004,0.988810500000056],[109.23357060000006,0.994651100000056],[109.23094080000004,1.001558100000068],[109.23589640000006,1.018825900000024],[109.24160090000004,1.02338050000003],[109.250997,1.03546410000007],[109.27197580000006,1.041952300000048],[109.27931490000009,1.042788200000075],[109.29347120000006,1.040973200000053],[109.31196730000005,1.046170700000062],[109.31696610000006,1.045343800000069],[109.32721660000004,1.046392700000069],[109.332327,1.044789200000025],[109.33980680000008,1.046832100000074],[109.34295110000005,1.044772300000034],[109.34637260000005,1.045942700000069],[109.35323710000006,1.041819800000042],[109.36344640000004,1.046614300000044],[109.37639830000006,1.046690700000056],[109.38051460000008,1.044127100000026],[109.38879990000004,1.044222500000046],[109.39973390000006,1.046632600000066],[109.40760090000003,1.05254240000005],[109.41264670000004,1.05120990000006],[109.42132230000004,1.051756600000033],[109.42465340000007,1.045036100000061],[109.4354,1.042490500000042],[109.43854790000006,1.035943700000075],[109.44254040000004,1.033200800000031],[109.46424880000006,1.023829],[109.46921210000005,1.020333600000072],[109.47621150000003,1.035064800000043],[109.48312380000004,1.063474400000075],[109.494545,1.078253400000051],[109.50740810000008,1.108046800000068],[109.51549530000005,1.118113500000049],[109.51976010000004,1.132811300000071],[109.51826480000005,1.142796800000042],[109.52078250000005,1.162668200000041],[109.52639770000008,1.176678500000037],[109.53735410000007,1.19372530000004],[109.54021930000005,1.193726800000036],[109.551855,1.200337300000058],[109.588975,1.201994400000046],[109.598255,1.212600200000054],[109.59991210000004,1.216908700000033],[109.60156930000005,1.223868700000025],[109.60123780000004,1.238451600000076],[109.60613210000008,1.255131400000039],[109.61002350000007,1.260386900000071],[109.61078640000005,1.274967100000026],[109.60720830000008,1.286038],[109.61405940000009,1.301450300000056],[109.62149050000005,1.311787500000037],[109.62615670000008,1.32620460000004],[109.62643030000004,1.331900900000051],[109.61878320000005,1.355330600000059],[109.61503890000006,1.363333],[109.610983,1.367821200000037],[109.59986140000007,1.373601200000053],[109.59836610000008,1.373344],[109.59706820000008,1.37056750000005],[109.59205060000005,1.36983790000005],[109.58155840000006,1.37338440000002],[109.57580650000006,1.376350900000034],[109.57620480000008,1.381429500000024],[109.58576150000005,1.385614400000065],[109.59387220000008,1.38558450000005],[109.60379930000005,1.390945700000032],[109.60940460000006,1.388810100000057],[109.60909350000009,1.393568900000048],[109.60258050000004,1.400648800000056],[109.60138080000007,1.404733700000065],[109.60236210000005,1.407556800000066],[109.60639360000005,1.409026800000049],[109.60317970000006,1.417366700000059],[109.60847750000005,1.425429700000052],[109.60974520000008,1.432600600000058],[109.62169660000006,1.433315800000059],[109.62751920000005,1.436783200000036],[109.63041040000007,1.440475900000024],[109.63931130000009,1.443544700000075],[109.64289790000004,1.442935100000057],[109.645594,1.439648600000055],[109.65330070000005,1.43579550000004],[109.664571,1.441124100000025],[109.67038380000008,1.445709600000043],[109.67804250000006,1.448611600000049],[109.67952770000005,1.450078400000052],[109.67871850000006,1.455118],[109.68337860000008,1.458420800000056],[109.68443870000004,1.46219190000005],[109.688554,1.463563400000055],[109.69575750000007,1.463295],[109.698483,1.466459900000075],[109.70103470000004,1.467167700000061],[109.70166560000007,1.471873900000048],[109.70418520000004,1.475937600000066],[109.71233670000004,1.47380910000004],[109.71968620000007,1.476804100000038],[109.72390290000004,1.485533500000031],[109.72733970000007,1.487098300000071],[109.73364850000007,1.49688180000004],[109.73694470000004,1.497690900000066],[109.74407170000006,1.505705],[109.750072,1.520432800000037],[109.74907710000008,1.53355890000006],[109.75030060000006,1.537466800000061]]]},"properties":{"shapeName":"Sambas","shapeISO":"","shapeID":"22746128B81063167534782","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[98.64464730000009,2.645433300000036],[98.64410610000004,2.646404],[98.64313560000005,2.645087400000023],[98.64414420000008,2.641794200000049],[98.64769950000004,2.641032700000039],[98.64801510000007,2.642670100000032],[98.64464730000009,2.645433300000036]]],[[[98.46685210000004,2.552821200000039],[98.46749330000006,2.54930070000006],[98.46472170000004,2.547485400000028],[98.45913880000006,2.535966500000029],[98.44909670000004,2.525878900000066],[98.43704270000006,2.52249960000006],[98.42297890000003,2.52821160000002],[98.41542190000007,2.528880900000047],[98.40964850000006,2.5272],[98.39970370000003,2.520131800000058],[98.40027920000006,2.516624300000046],[98.40588380000008,2.508117700000071],[98.40550690000003,2.499973100000034],[98.41506150000004,2.480334300000038],[98.422789,2.481285600000035],[98.43090890000008,2.48703],[98.44581250000005,2.487083],[98.47371290000007,2.464595100000054],[98.48341,2.467350200000055],[98.50167620000008,2.478666300000043],[98.51059730000009,2.487079100000074],[98.58183790000004,2.486574900000051],[98.594055,2.476350100000047],[98.60392260000003,2.465463100000022],[98.610874,2.453363700000068],[98.61376020000006,2.434842900000035],[98.61563350000006,2.401720400000045],[98.61461270000007,2.398116300000027],[98.62948820000008,2.409318600000063],[98.649936,2.419371900000044],[98.65954710000005,2.425820200000032],[98.66736880000008,2.428002400000025],[98.69411650000006,2.430891300000042],[98.70348090000005,2.433735100000035],[98.74923490000003,2.439345900000035],[98.777579,2.42015850000007],[98.78895160000008,2.40943290000007],[98.78900310000006,2.404178800000068],[98.79082950000009,2.399639100000059],[98.79879290000008,2.390611400000068],[98.80711220000006,2.374544300000025],[98.81531790000008,2.371350600000028],[98.82714840000006,2.363114400000029],[98.83207660000005,2.362189],[98.83397210000004,2.360609600000032],[98.83537130000008,2.35550070000005],[98.83831930000008,2.350863600000025],[98.83966870000006,2.351881800000058],[98.83907610000006,2.357206200000064],[98.84132140000008,2.359821900000043],[98.84167560000009,2.363269600000024],[98.83413310000009,2.366328300000021],[98.83044650000005,2.370876900000042],[98.83043070000008,2.373382500000048],[98.82341690000004,2.376321],[98.822832,2.379652300000032],[98.82127330000009,2.38082780000002],[98.81776650000006,2.381219300000055],[98.81767960000008,2.387519200000042],[98.81604180000005,2.389075700000035],[98.81601170000005,2.391996900000038],[98.81274630000007,2.394677600000023],[98.808814,2.395245600000067],[98.80918470000006,2.401340300000072],[98.81059230000005,2.402589800000044],[98.81522950000004,2.401674300000025],[98.81539410000005,2.40917040000005],[98.81406840000005,2.415250400000048],[98.81067290000004,2.418498200000045],[98.808023,2.41874770000004],[98.80678050000006,2.42149610000007],[98.80752480000007,2.428575800000033],[98.79957470000005,2.432156100000043],[98.79742370000008,2.434237100000075],[98.79800070000005,2.436986700000034],[98.79609560000006,2.440484600000048],[98.79112660000004,2.443315600000062],[98.79071340000007,2.438401500000055],[98.78864370000008,2.434986300000048],[98.77928590000005,2.437899900000048],[98.781521,2.44239790000006],[98.77696530000009,2.45022640000002],[98.77770970000006,2.455390500000021],[98.77514240000005,2.456389500000057],[98.77497510000006,2.466967300000022],[98.76984040000008,2.469548400000065],[98.76851380000005,2.479126400000041],[98.76456390000004,2.480366700000047],[98.76197050000007,2.485955],[98.75749840000003,2.488119700000027],[98.75310940000008,2.487785700000074],[98.74929950000006,2.491116600000055],[98.75051010000004,2.504089600000043],[98.74764020000003,2.507441],[98.74231870000006,2.509427300000027],[98.74202920000005,2.511643900000024],[98.73968070000006,2.511970500000075],[98.737533,2.516999700000042],[98.73448830000007,2.517694600000027],[98.73181160000007,2.516278100000022],[98.73371760000003,2.518484],[98.733152,2.519621100000052],[98.72206880000005,2.528261900000075],[98.723538,2.532091],[98.72059260000003,2.532898800000055],[98.71826720000007,2.53590360000004],[98.71784360000004,2.537521],[98.72025590000004,2.537691800000061],[98.72101730000009,2.539820100000043],[98.71602260000009,2.542883700000061],[98.71538610000005,2.550545200000045],[98.71018030000005,2.551182500000039],[98.70696440000006,2.548840700000028],[98.70544110000009,2.547606],[98.70497650000004,2.543392],[98.70112520000004,2.543433700000037],[98.69947590000004,2.538027600000021],[98.69604890000005,2.533515],[98.69363660000005,2.533088700000064],[98.69181620000006,2.535769900000048],[98.68766850000009,2.536279700000023],[98.68691820000004,2.537951300000032],[98.68971110000007,2.545079],[98.67748080000007,2.540098],[98.67646610000008,2.545702500000061],[98.678086,2.551104],[98.67653170000006,2.553379500000062],[98.67264230000006,2.551800200000059],[98.66910620000004,2.547438700000043],[98.665673,2.556493900000021],[98.66345630000006,2.556149800000071],[98.65623340000008,2.560681100000068],[98.65866330000006,2.562838900000031],[98.66717270000004,2.56390360000006],[98.67434090000006,2.56816230000004],[98.67621080000004,2.564493500000026],[98.68948550000005,2.565660600000058],[98.68893910000008,2.57003190000006],[98.68604830000004,2.571462900000029],[98.67731340000006,2.573190700000055],[98.67739990000007,2.570783],[98.67442310000007,2.570200100000022],[98.67298890000006,2.576891],[98.67714320000005,2.57885],[98.678988,2.582327],[98.68715550000007,2.586938300000043],[98.68602550000008,2.590734900000029],[98.68870650000008,2.593006600000024],[98.68740080000003,2.593822400000022],[98.68627030000005,2.599428800000055],[98.68990290000005,2.606278300000042],[98.69329,2.607308200000034],[98.69258360000003,2.610253200000045],[98.68756790000003,2.616058800000076],[98.67828480000009,2.617863300000067],[98.67459070000007,2.620071300000063],[98.67248030000007,2.624626],[98.67321940000005,2.628580300000067],[98.67112690000005,2.626782200000036],[98.65974790000007,2.627682600000071],[98.65773610000008,2.634805700000072],[98.65412890000005,2.633864100000039],[98.65395850000004,2.628383600000063],[98.650872,2.628421900000035],[98.64927,2.625821400000063],[98.64637260000006,2.628582300000062],[98.64499190000004,2.634498500000063],[98.64219760000003,2.638261600000021],[98.63896260000007,2.633030600000041],[98.633994,2.634300300000064],[98.63219640000005,2.637612300000058],[98.63260270000006,2.645327900000041],[98.63149910000004,2.646753900000022],[98.62899960000004,2.646946600000035],[98.623658,2.642156800000066],[98.62211350000007,2.643330800000058],[98.61572540000009,2.643027700000061],[98.61439130000008,2.645245],[98.61482510000008,2.649652400000036],[98.61741990000007,2.650757400000032],[98.61871640000004,2.654271100000074],[98.620122,2.654467600000032],[98.62101120000005,2.657483900000045],[98.62460340000007,2.661299400000075],[98.62290630000007,2.662302700000055],[98.62779620000003,2.665817400000037],[98.62639730000006,2.670534800000041],[98.62759480000005,2.671739700000046],[98.62652650000007,2.67312910000004],[98.62729410000009,2.675855200000058],[98.62439910000006,2.676958400000046],[98.62679170000007,2.684475400000053],[98.62596420000006,2.685822500000029],[98.62269930000008,2.686192800000072],[98.622298,2.690695600000026],[98.61723,2.69358630000005],[98.61402230000004,2.702536500000065],[98.60731290000007,2.703553900000031],[98.60512090000003,2.706456400000036],[98.60352040000004,2.713595500000054],[98.59813390000005,2.717302200000063],[98.59873070000003,2.720693900000072],[98.596335,2.723926600000027],[98.59650420000008,2.728615400000024],[98.59493150000009,2.72936720000007],[98.594546,2.733128100000044],[98.58854640000004,2.731552700000066],[98.58694850000006,2.733559700000058],[98.58405240000008,2.73249990000005],[98.57833620000008,2.735183300000074],[98.57480690000006,2.73507230000007],[98.57309030000005,2.731037100000037],[98.572604,2.710079800000074],[98.56649680000004,2.686343],[98.55407710000009,2.583679200000063],[98.546875,2.577880900000025],[98.52368160000003,2.56872560000005],[98.49871830000006,2.551086400000031],[98.49047850000005,2.546875],[98.48651120000005,2.546875],[98.47528080000006,2.552307100000064],[98.46685210000004,2.552821200000039]]],[[[98.74558850000005,2.757407400000034],[98.74363690000007,2.756274700000063],[98.74780340000007,2.755407400000024],[98.74558850000005,2.757407400000034]]],[[[98.73402740000006,2.759103300000049],[98.72633290000005,2.758837300000039],[98.720742,2.751287400000024],[98.716238,2.750720200000046],[98.71308990000006,2.743898800000068],[98.69775660000005,2.733012200000076],[98.69623870000004,2.730299100000025],[98.69092620000004,2.708033900000032],[98.68948920000008,2.668042900000046],[98.688239,2.666659300000049],[98.68770650000005,2.652987600000074],[98.68572440000008,2.649717500000065],[98.69078630000007,2.649656200000038],[98.68572440000008,2.649699300000066],[98.68502330000007,2.647707100000048],[98.68623950000006,2.646261600000059],[98.68434310000004,2.645549],[98.68290370000005,2.642009700000074],[98.68367270000005,2.638740200000029],[98.69021190000007,2.635005100000058],[98.69183830000009,2.631843600000025],[98.69266270000008,2.621010800000022],[98.69059220000008,2.613949900000023],[98.69236130000007,2.611812500000042],[98.69402380000008,2.606980200000066],[98.69816840000004,2.606136900000024],[98.704744,2.598251700000048],[98.70638810000008,2.595647100000065],[98.70622810000003,2.592305500000066],[98.70874740000005,2.58988080000006],[98.70885560000005,2.585551200000054],[98.71180370000008,2.582731300000034],[98.71203870000005,2.570389200000022],[98.71377160000009,2.569599100000062],[98.71550540000004,2.564713],[98.71730970000004,2.563994800000046],[98.71700650000008,2.561964600000067],[98.72072290000006,2.558102900000051],[98.71979510000006,2.553108300000076],[98.72126030000004,2.550934900000073],[98.72090410000004,2.546174],[98.72199440000009,2.543012300000044],[98.72344130000005,2.542743100000052],[98.72517540000007,2.536240100000043],[98.73357690000006,2.529347100000052],[98.73574220000006,2.53180750000007],[98.73360720000005,2.529335400000036],[98.73548070000004,2.525124300000073],[98.74051770000005,2.521564400000045],[98.74346580000008,2.52239510000004],[98.74328150000008,2.516725],[98.74450310000003,2.517757500000073],[98.745579,2.513481400000046],[98.75244620000007,2.509501400000033],[98.75699250000008,2.502055700000028],[98.75850750000006,2.502105100000051],[98.76117010000007,2.507143700000029],[98.76461510000007,2.509307],[98.771946,2.507489700000065],[98.77587990000006,2.50921070000004],[98.77983840000007,2.509039400000063],[98.78431120000005,2.502871500000026],[98.78598210000007,2.502423400000055],[98.78642090000005,2.503674100000069],[98.78606520000005,2.500952400000074],[98.78819550000009,2.498910600000045],[98.79392720000004,2.49572390000003],[98.79541630000006,2.497161400000039],[98.79398960000003,2.49572390000003],[98.79684770000006,2.494861600000036],[98.79606630000006,2.491592800000035],[98.79924310000007,2.490143300000057],[98.79983060000006,2.483262],[98.801028,2.482623200000035],[98.79917190000003,2.476110200000051],[98.80110390000004,2.465198600000065],[98.80259460000008,2.464166700000021],[98.80718810000008,2.465322400000048],[98.80931310000005,2.471024400000033],[98.813882,2.474023400000021],[98.81906240000006,2.473065600000041],[98.82103760000007,2.471170500000028],[98.82131130000005,2.468525800000066],[98.82715160000004,2.463432800000021],[98.82980030000004,2.461635],[98.83145210000004,2.463285900000074],[98.83381150000008,2.462861700000076],[98.83533780000005,2.458494],[98.84107140000003,2.458616800000073],[98.84252210000005,2.454415200000028],[98.84593010000003,2.454297200000042],[98.847367,2.44971490000006],[98.84950910000003,2.447807900000043],[98.85969870000008,2.443680200000074],[98.86099430000007,2.438494700000035],[98.864391,2.434415400000034],[98.87448270000004,2.430803600000047],[98.87704830000007,2.43026320000007],[98.87780560000004,2.432524300000068],[98.88454930000006,2.433925700000032],[98.88775040000007,2.431959900000038],[98.88848380000007,2.42778190000007],[98.891929,2.427192400000024],[98.89791510000003,2.430486100000053],[98.90060250000005,2.436089700000025],[98.90891020000004,2.435058100000049],[98.91587390000007,2.436803400000031],[98.92376640000003,2.433314100000075],[98.93468830000006,2.43771380000004],[98.93744930000008,2.439950400000043],[98.93964820000008,2.444939500000032],[98.94529260000007,2.442851100000041],[98.94648990000007,2.444473200000061],[98.94954420000005,2.443416600000035],[98.95496860000009,2.446169300000065],[98.96093060000004,2.445088100000021],[98.969507,2.451158700000065],[98.97727720000006,2.45270720000002],[98.98411880000003,2.458826800000054],[98.99149810000006,2.46204640000002],[98.99399590000007,2.467015200000048],[98.99212930000004,2.472127300000068],[98.99335770000005,2.474055700000065],[98.98930480000007,2.481340200000034],[98.98390090000004,2.486171300000024],[98.98393830000003,2.490323200000034],[98.98161160000006,2.491455400000063],[98.97951,2.498060600000031],[98.97234210000005,2.510553600000037],[98.97024050000005,2.510968800000057],[98.96840160000005,2.514101500000038],[98.96183410000003,2.518177600000058],[98.96033290000008,2.520744200000024],[98.95567940000007,2.522178300000064],[98.95455350000003,2.524329600000044],[98.94370760000004,2.53240640000007],[98.93961690000003,2.533689500000037],[98.92584340000008,2.544785400000023],[98.90767810000006,2.565354600000035],[98.90839370000003,2.575693600000022],[98.90291080000009,2.580413],[98.90144670000006,2.58641410000007],[98.89575560000009,2.596120100000064],[98.89633510000004,2.597640800000022],[98.89130620000009,2.603347600000063],[98.89161190000004,2.609701100000052],[98.88902190000005,2.614532100000076],[98.88819560000007,2.622043],[98.87006580000008,2.645404500000041],[98.86852650000009,2.64966940000005],[98.85167310000008,2.664047800000048],[98.85733990000006,2.669332600000075],[98.86225680000007,2.667408200000068],[98.86413330000005,2.668427500000064],[98.86364490000005,2.672541500000023],[98.86015410000005,2.675862500000051],[98.85474910000005,2.678126500000076],[98.85215950000008,2.677522300000021],[98.85336090000004,2.674427500000036],[98.85148430000004,2.673672400000044],[98.84934490000006,2.674691200000041],[98.84945720000007,2.676804900000036],[98.84315140000007,2.679597100000024],[98.84303860000006,2.680918100000042],[98.839811,2.679407900000058],[98.83035020000005,2.68452510000003],[98.83147780000007,2.687257500000044],[98.82580990000008,2.690012],[98.81303090000006,2.703988300000049],[98.81387120000005,2.711599500000034],[98.80437330000007,2.724053300000037],[98.79679030000005,2.730959100000064],[98.79690270000003,2.732393400000035],[98.789614,2.735255400000028],[98.78139940000005,2.741939700000046],[98.77062690000008,2.742843500000049],[98.766236,2.739898700000026],[98.76319510000008,2.742917600000055],[98.760718,2.742162200000053],[98.76030540000005,2.740539200000057],[98.75805340000005,2.740538700000059],[98.748292,2.752727800000059],[98.73740650000008,2.754876800000034],[98.73402740000006,2.759103300000049]]]]},"properties":{"shapeName":"Samosir","shapeISO":"","shapeID":"22746128B99087570910085","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[113.20605440000008,-7.306668499999944],[113.20374570000001,-7.306768099999942],[113.202235,-7.309898399999952],[113.213766,-7.314624599999945],[113.22039860000007,-7.314066799999978],[113.22465810000006,-7.311042099999952],[113.21923660000004,-7.308328399999937],[113.20605440000008,-7.306668499999944]]],[[[113.04040420000001,-7.212724099999946],[113.04090870000005,-7.214011399999947],[113.054358,-7.216589],[113.07088340000007,-7.222844299999963],[113.08062730000006,-7.223308299999928],[113.08625020000011,-7.226199399999928],[113.0978927000001,-7.228544899999974],[113.107857,-7.227917199999979],[113.13235910000003,-7.222492199999976],[113.14059980000002,-7.224433699999963],[113.150154,-7.224186699999962],[113.149826,-7.216515799999968],[113.14442430000008,-7.213064399999951],[113.15296520000004,-7.205098299999975],[113.15435020000007,-7.206654299999968],[113.1588901,-7.206853499999966],[113.16261680000002,-7.209700299999952],[113.16553350000004,-7.214844299999982],[113.16855070000008,-7.225847199999976],[113.1711729000001,-7.227323099999978],[113.18633210000007,-7.225716499999976],[113.19901260000006,-7.221895899999936],[113.20603170000004,-7.222229199999958],[113.220497,-7.2200715],[113.26213830000006,-7.224776899999938],[113.26886740000009,-7.221036599999934],[113.27400190000003,-7.2157838],[113.27844460000006,-7.215093299999978],[113.29392060000009,-7.217910599999925],[113.30081630000006,-7.216751199999976],[113.3062010000001,-7.218446599999936],[113.31549820000009,-7.218892299999936],[113.31987750000008,-7.217882799999927],[113.32656090000012,-7.213563099999931],[113.34182150000004,-7.215365199999951],[113.34057230000008,-7.218648799999926],[113.34298740000008,-7.2187797],[113.34204880000004,-7.215625599999953],[113.34330870000008,-7.214877399999978],[113.34881710000002,-7.214865499999974],[113.34850950000009,-7.218601199999966],[113.35476580000011,-7.219077099999936],[113.35509560000003,-7.215587199999959],[113.363082,-7.215769699999953],[113.3630313000001,-7.217759799999953],[113.3648763000001,-7.217827799999952],[113.3655328000001,-7.215793499999961],[113.39351640000007,-7.2176277],[113.39366140000004,-7.2095658],[113.39494310000009,-7.208568299999968],[113.39478310000004,-7.205833599999949],[113.3953782000001,-7.206564599999979],[113.397161,-7.203832899999952],[113.39678480000009,-7.202060699999947],[113.38786320000008,-7.196220599999947],[113.38595,-7.1900629],[113.38330080000003,-7.189612099999977],[113.38072970000007,-7.191056],[113.3821564000001,-7.203148499999941],[113.37919620000002,-7.2099397],[113.3772507000001,-7.208222599999942],[113.37653350000005,-7.199354799999981],[113.3732758000001,-7.197632499999941],[113.37350470000001,-7.193043399999965],[113.38139350000006,-7.178768299999945],[113.38137820000009,-7.1758854],[113.378456,-7.173442499999965],[113.37942510000005,-7.149581099999978],[113.36659290000011,-7.153496799999971],[113.36430360000008,-7.152294299999937],[113.35684210000011,-7.153199399999949],[113.35880280000003,-7.144719799999962],[113.36363990000007,-7.1426718],[113.36569220000001,-7.138832699999966],[113.36754610000003,-7.138139899999942],[113.36431890000006,-7.1313679],[113.36659240000006,-7.128136299999937],[113.36588290000009,-7.123257799999976],[113.36778260000006,-7.121573199999943],[113.36719340000002,-7.11689],[113.36990340000011,-7.111632499999928],[113.36934670000005,-7.109914],[113.36493690000009,-7.109395199999938],[113.3626786000001,-7.106983799999966],[113.36324310000009,-7.101403399999981],[113.36698920000003,-7.098105099999941],[113.37654880000002,-7.095084399999962],[113.37956240000005,-7.092518],[113.38304140000002,-7.086727799999949],[113.3823777,-7.079804099999933],[113.39350900000011,-7.073308199999929],[113.39477540000007,-7.069413399999974],[113.39447030000008,-7.0619222],[113.39308170000004,-7.061001],[113.39621740000007,-7.0555775],[113.39353950000009,-7.047808299999929],[113.396988,-7.039465599999971],[113.39232620000007,-7.034317699999974],[113.39698780000003,-7.0281579],[113.39894090000007,-7.029796699999963],[113.41053760000011,-7.019046499999945],[113.41312390000007,-7.020312499999932],[113.41413120000004,-7.017897299999959],[113.41683180000007,-7.016879699999947],[113.4175719000001,-7.013074099999926],[113.42158510000002,-7.011506199999928],[113.42282850000004,-7.008590399999946],[113.41984670000011,-7.007114799999954],[113.41955690000009,-7.004771],[113.42182160000004,-7.003523],[113.42091360000006,-7.001910799999962],[113.4226073000001,-7.002104899999949],[113.42311860000007,-6.998541499999931],[113.42161550000003,-6.996647499999938],[113.42044050000004,-6.997124399999961],[113.419645,-6.994920299999933],[113.42138680000005,-6.9935958],[113.4202666000001,-6.992119099999968],[113.422844,-6.984860099999935],[113.42490390000012,-6.981789299999946],[113.42915710000011,-6.9804949],[113.42965690000005,-6.974273],[113.43366990000004,-6.9703053],[113.43662260000008,-6.960126099999968],[113.43988800000011,-6.957228399999963],[113.44464110000001,-6.955766399999959],[113.44783020000011,-6.951734199999976],[113.45314790000009,-6.951229699999942],[113.4576035,-6.949031],[113.45949560000008,-6.947043599999972],[113.4590531,-6.943197399999974],[113.461085,-6.940041199999939],[113.46134070000005,-6.935201599999971],[113.4661741000001,-6.935060699999951],[113.46756120000009,-6.930935299999931],[113.47167960000002,-6.932443899999953],[113.47406010000009,-6.927390699999933],[113.47792360000005,-6.924638799999968],[113.47593680000011,-6.918155899999931],[113.47695150000004,-6.911128799999972],[113.47604360000003,-6.9091156],[113.48300920000008,-6.902143799999976],[113.483514,-6.896335699999952],[113.45631680000008,-6.890551199999948],[113.45223410000006,-6.891627299999925],[113.45077260000005,-6.8896232],[113.44027440000002,-6.887731499999973],[113.43066140000008,-6.888416799999959],[113.41792650000002,-6.886722599999928],[113.4131135,-6.888442299999952],[113.40702770000007,-6.886769899999933],[113.39361230000009,-6.888511699999981],[113.38560310000003,-6.886769899999933],[113.37934740000003,-6.889907],[113.37523640000006,-6.888237599999968],[113.352989,-6.890096799999981],[113.32349380000005,-6.888074099999926],[113.31664260000002,-6.889702],[113.31074020000005,-6.893234799999959],[113.29514990000007,-6.889237299999934],[113.28319410000006,-6.892049799999938],[113.27587630000005,-6.890474599999948],[113.2575690000001,-6.889838399999974],[113.24418190000006,-6.892816],[113.23410750000005,-6.890644499999951],[113.23085690000005,-6.8926257],[113.22712700000011,-6.890784899999971],[113.2232997000001,-6.8929683],[113.19877580000002,-6.897128799999962],[113.19017210000004,-6.892962699999941],[113.179524,-6.893866899999978],[113.16732920000004,-6.890238299999965],[113.16383140000005,-6.893141199999945],[113.15909390000002,-6.894183399999974],[113.14926130000003,-6.891235699999982],[113.14165350000007,-6.892136599999958],[113.13611460000004,-6.894439],[113.1295732000001,-6.891294199999948],[113.12735570000007,-6.8930042],[113.12450810000007,-6.8928877],[113.12438430000009,-6.896010299999944],[113.12734210000008,-6.898631799999976],[113.12754810000001,-6.904719099999966],[113.12663830000008,-6.906184199999927],[113.11876670000004,-6.905103899999972],[113.11626120000005,-6.9153601],[113.11758670000006,-6.9272843],[113.11559380000006,-6.936481599999979],[113.11121420000006,-6.937359399999934],[113.10694110000009,-6.933566399999961],[113.10164630000008,-6.931810199999973],[113.10065450000002,-6.936571399999934],[113.097976,-6.938617],[113.0977630000001,-6.942837899999972],[113.09510030000001,-6.945797199999959],[113.09919320000006,-6.951011699999981],[113.1017074,-6.950309499999946],[113.10441130000004,-6.953646899999967],[113.108261,-6.953398],[113.10757440000009,-6.956289],[113.10304910000002,-6.958391199999937],[113.10247310000011,-6.959991499999944],[113.10268480000002,-6.964525799999933],[113.1068874,-6.969744399999968],[113.10615530000007,-6.972140599999932],[113.10939780000001,-6.974140899999952],[113.10591120000004,-6.984747199999958],[113.10392720000004,-6.985950899999978],[113.1050093,-6.987076299999956],[113.11256230000004,-6.988915899999938],[113.11402880000003,-6.986905299999933],[113.11583030000008,-6.986903199999972],[113.11729730000002,-6.983924],[113.12204860000008,-6.985507799999937],[113.12284050000005,-6.983165099999951],[113.12706390000005,-6.982142299999964],[113.13384430000008,-6.976145299999928],[113.147811,-6.984626399999968],[113.14475240000002,-6.989298599999927],[113.1464995,-6.993474699999979],[113.14627070000006,-6.997767199999942],[113.14086140000006,-7.000031199999967],[113.13875570000005,-7.005353199999945],[113.14057150000008,-7.007277299999942],[113.13938130000008,-7.009540799999968],[113.14205160000006,-7.010387699999967],[113.14228050000008,-7.014078899999959],[113.13899220000008,-7.019474299999956],[113.13359060000005,-7.023640399999977],[113.13278950000006,-7.027237199999945],[113.13459000000012,-7.029763899999978],[113.13347620000002,-7.035539399999948],[113.12990560000003,-7.035234199999934],[113.12785330000008,-7.036573199999964],[113.11522660000003,-7.031735599999934],[113.11638630000004,-7.036545],[113.11424240000008,-7.041022099999964],[113.11630240000011,-7.045069399999932],[113.11608880000006,-7.049524599999927],[113.110649,-7.047163199999943],[113.11345540000002,-7.053055299999926],[113.11196890000008,-7.059690199999977],[113.11664570000005,-7.061408799999981],[113.11989580000011,-7.067229],[113.1201324000001,-7.080107399999974],[113.11677540000005,-7.082043899999974],[113.11452470000006,-7.078621099999964],[113.11251060000006,-7.079914299999928],[113.1086001000001,-7.077419799999973],[113.107629,-7.079688499999975],[113.11062370000002,-7.0858177],[113.11194820000003,-7.095185],[113.11410510000007,-7.098325],[113.11612690000004,-7.098412699999926],[113.1148376000001,-7.0993988],[113.1159209000001,-7.104572099999928],[113.11343370000009,-7.104346499999963],[113.11267080000005,-7.105822299999943],[113.1145858000001,-7.107355299999938],[113.11381520000009,-7.113404499999945],[113.1155394000001,-7.116165399999943],[113.11225120000006,-7.114208899999937],[113.1102446000001,-7.108446399999934],[113.10727680000002,-7.107961],[113.10569750000002,-7.111433799999929],[113.1075667,-7.1172035],[113.10382830000003,-7.125472299999956],[113.09615320000012,-7.127436899999964],[113.09216250000009,-7.133171899999979],[113.09410850000006,-7.134734399999957],[113.09278860000006,-7.139036399999952],[113.09503160000008,-7.141696199999956],[113.09526050000011,-7.1480477],[113.09358210000005,-7.151215799999932],[113.09688560000006,-7.154392499999972],[113.09711450000009,-7.1572144],[113.09267420000003,-7.157848599999966],[113.08827970000004,-7.156399099999931],[113.08808040000008,-7.152215099999978],[113.08441720000008,-7.153426399999944],[113.077011,-7.151008399999967],[113.07019030000004,-7.162507799999958],[113.06388850000008,-7.164272099999948],[113.05759420000004,-7.163670299999978],[113.05680080000002,-7.168598],[113.05480950000003,-7.169860599999936],[113.05646500000012,-7.174945599999944],[113.05408470000009,-7.1780498],[113.04983510000011,-7.1786439],[113.04821,-7.184324499999946],[113.05426010000008,-7.187577499999975],[113.05843340000001,-7.187829699999952],[113.0612334000001,-7.1900785],[113.06188020000002,-7.192135899999926],[113.05974150000009,-7.192918],[113.06095110000001,-7.196104299999945],[113.05555760000004,-7.194268],[113.05030780000004,-7.195767899999964],[113.04932510000003,-7.198250499999972],[113.04779930000007,-7.198069499999974],[113.04492940000011,-7.201526899999976],[113.04040420000001,-7.212724099999946]]]]},"properties":{"shapeName":"Sampang","shapeISO":"","shapeID":"22746128B58234549546732","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[110.12200980000006,1.019483800000046],[110.15929650000004,1.003753300000028],[110.17575280000005,1.001341100000047],[110.18307950000008,1.003034400000047],[110.20175030000007,1],[110.21372130000009,0.98997010000005],[110.21690630000006,0.98270720000005],[110.22451330000007,0.980950900000039],[110.21796340000009,0.975409400000046],[110.21647160000003,0.971801],[110.21730060000004,0.969455],[110.22196950000006,0.967434300000036],[110.22571260000007,0.96328120000004],[110.22416680000003,0.956991500000072],[110.21698930000008,0.956406500000071],[110.21780640000009,0.952046400000029],[110.21653210000005,0.947514700000056],[110.20738560000007,0.938573100000042],[110.20250090000008,0.926981400000045],[110.20523990000004,0.924889700000051],[110.20813420000007,0.91751320000003],[110.22129160000009,0.915888700000039],[110.22487950000004,0.911514400000044],[110.22755430000007,0.906583300000023],[110.227773,0.899268100000029],[110.23356860000007,0.887164300000052],[110.25763440000009,0.874615900000038],[110.26587960000006,0.867668300000048],[110.26454370000005,0.863184600000068],[110.25630110000009,0.856458],[110.24783520000005,0.85242130000006],[110.24449390000007,0.847937300000069],[110.23959240000005,0.846815500000048],[110.22469420000004,0.847059700000045],[110.21486180000005,0.842775500000073],[110.210983,0.844165500000031],[110.20882750000004,0.84746860000007],[110.20488360000007,0.848043500000074],[110.202507,0.84593],[110.19732320000008,0.844919300000072],[110.19607390000004,0.841561300000023],[110.19234210000008,0.841730900000073],[110.19202820000004,0.838304600000072],[110.18175220000006,0.836316600000032],[110.178134,0.822650300000021],[110.17815780000006,0.818828800000063],[110.17971690000007,0.81641680000007],[110.17737730000005,0.813543400000071],[110.17647070000004,0.808259400000054],[110.17990530000009,0.801198900000031],[110.18136640000006,0.791375800000026],[110.19154420000007,0.772152500000061],[110.19145260000005,0.766260600000066],[110.195273,0.758246300000053],[110.23411030000005,0.731824200000062],[110.23977680000007,0.72432120000002],[110.24074030000008,0.709375400000056],[110.24341460000005,0.704892500000028],[110.24519830000008,0.696822800000064],[110.23027580000007,0.665436900000032],[110.23428850000005,0.649521700000037],[110.22537720000008,0.646157800000026],[110.21933890000008,0.623587],[110.22350390000008,0.600013800000056],[110.22814580000005,0.591081400000064],[110.23535960000004,0.583012600000075],[110.24101920000004,0.584336300000075],[110.24587430000008,0.588829500000031],[110.25187550000004,0.591420800000037],[110.25868060000005,0.591073300000062],[110.26262940000004,0.588248800000031],[110.26308970000008,0.58554040000007],[110.26072070000004,0.578565800000035],[110.25709180000007,0.577197200000057],[110.25305360000004,0.57294950000005],[110.25525180000005,0.563261400000044],[110.25413860000003,0.557208700000047],[110.25636740000004,0.549774],[110.25244160000005,0.545900200000062],[110.242612,0.541062700000055],[110.232437,0.53824220000007],[110.21751450000005,0.536863400000072],[110.21091570000004,0.531945700000051],[110.20044980000006,0.526901800000076],[110.19978170000007,0.524660100000062],[110.20357140000004,0.506278900000041],[110.20758260000008,0.497537],[110.20729510000007,0.48373220000002],[110.20417640000005,0.480369300000064],[110.19615620000008,0.479471700000033],[110.19104130000005,0.484897200000034],[110.18738170000006,0.485128800000041],[110.18687540000008,0.477638300000024],[110.18097430000006,0.466206800000066],[110.17133960000007,0.462332200000048],[110.16823290000008,0.458241300000054],[110.16177410000006,0.45414420000003],[110.15936880000004,0.450167400000055],[110.15890680000007,0.445716300000072],[110.16177550000003,0.441144800000075],[110.16990840000005,0.437049400000035],[110.17421090000005,0.433199900000034],[110.18598450000007,0.427320200000054],[110.19166580000007,0.427180400000054],[110.19477280000007,0.42934630000002],[110.20911410000008,0.426460400000053],[110.21198840000005,0.422370100000023],[110.21246710000008,0.418033100000059],[110.20958,0.412965300000053],[110.20295930000009,0.411370400000067],[110.19781770000009,0.407050500000025],[110.19302790000006,0.395182200000022],[110.190923,0.385445],[110.18846760000008,0.382276600000068],[110.18098060000005,0.379167500000051],[110.16942550000005,0.383723],[110.15508940000007,0.379504600000075],[110.15150470000009,0.375167200000021],[110.14861180000008,0.362651100000051],[110.14468440000007,0.356860700000027],[110.14485870000004,0.350307800000053],[110.14848770000003,0.341206200000045],[110.14837710000006,0.337921900000026],[110.13752070000004,0.330953400000055],[110.13306950000003,0.323176200000034],[110.13221680000004,0.318509300000073],[110.13314260000004,0.308540900000025],[110.142874,0.267754700000069],[110.14148350000005,0.261808900000062],[110.12903260000007,0.24907920000004],[110.12932440000009,0.243202],[110.13485680000008,0.224042500000053],[110.13218370000004,0.21866250000005],[110.12706010000005,0.215075600000034],[110.12059970000007,0.212833600000067],[110.11592160000004,0.208574300000066],[110.11102040000009,0.209919],[110.10545060000004,0.217988400000024],[110.10366830000004,0.218436600000075],[110.09765340000007,0.218884600000024],[110.09342070000008,0.21731520000003],[110.087629,0.210590100000047],[110.08272770000008,0.214848800000027],[110.07348990000008,0.217926300000045],[110.06880140000004,0.217812700000025],[110.06091420000007,0.215049700000066],[110.05376670000004,0.215570700000058],[110.04542710000004,0.20791040000006],[110.03635980000007,0.185730600000056],[110.02979410000006,0.176687],[110.01373690000008,0.168222800000024],[109.99727380000007,0.164944400000024],[109.96176460000004,0.168702],[109.95044760000007,0.165537100000051],[109.93410880000005,0.152355400000033],[109.92012090000009,0.134492900000055],[109.918726,0.129857500000071],[109.91822710000008,0.116097],[109.91288810000009,0.107416200000046],[109.90266330000009,0.09872],[109.89631930000007,0.096705800000052],[109.87693920000004,0.095157400000062],[109.86917590000007,0.08594590000007],[109.86080390000006,0.07586370000007],[109.85924470000003,0.06913940000004],[109.86080440000006,0.051207900000065],[109.85991350000006,0.046500900000069],[109.864146,0.038431800000069],[109.85634960000004,0.024983200000065],[109.83808230000005,0.025279400000045],[109.83607750000004,0.024158700000044],[109.834741,0.019227600000022],[109.84180150000009,-0.000031199999967],[109.84776350000004,-0.045903299999964],[109.86017040000007,-0.056741699999975],[109.86640040000009,-0.065946699999927],[109.87340040000004,-0.070741699999928],[109.87501040000006,-0.080681799999979],[109.87952540000003,-0.086631799999964],[109.89044540000003,-0.0967118],[109.89496040000006,-0.103221799999972],[109.90367550000008,-0.106861799999933],[109.90262550000006,-0.114771799999971],[109.90038540000006,-0.119916799999942],[109.90119040000008,-0.129156799999976],[109.90332550000005,-0.132866799999931],[109.907795,-0.138186799999971],[109.92015420000007,-0.145312],[109.91986980000007,-0.147302399999944],[109.914693,-0.149955],[109.91918290000007,-0.151854499999956],[109.92896170000006,-0.149696399999925],[109.938869,-0.143391399999928],[109.93814760000004,-0.162987],[109.94187120000004,-0.1893242],[109.94033360000009,-0.213868699999978],[109.94151420000009,-0.224891499999956],[109.94898290000003,-0.240818199999978],[109.94968080000007,-0.248071899999957],[109.94819060000009,-0.257564099999968],[109.95151150000004,-0.261610599999926],[109.96180280000004,-0.268446799999936],[109.96479210000007,-0.274080099999935],[109.96569740000007,-0.2814489],[109.95025780000009,-0.302413899999976],[109.93622060000007,-0.3106906],[109.93168740000004,-0.315705299999934],[109.93049420000006,-0.322173],[109.93168640000005,-0.325707099999931],[109.94642630000004,-0.340260599999965],[109.94841940000003,-0.346457],[109.943813,-0.351534299999969],[109.93853780000006,-0.352902],[109.93012710000005,-0.352251499999966],[109.92480350000005,-0.354330399999981],[109.92252680000007,-0.356867799999975],[109.92061660000007,-0.364619599999969],[109.92025530000006,-0.398176699999965],[109.92252740000004,-0.408111499999961],[109.92606540000008,-0.412394],[109.93996830000009,-0.419915599999968],[109.94699890000004,-0.4214536],[109.95656880000007,-0.4266099],[109.96711740000006,-0.429213299999958],[109.97174930000006,-0.433135199999924],[109.97222260000007,-0.440843699999959],[109.96840210000005,-0.444596599999954],[109.963804,-0.444157099999927],[109.95295120000009,-0.439559],[109.94848830000007,-0.439998499999945],[109.94602020000008,-0.442770899999971],[109.94722550000006,-0.446308],[109.95034780000009,-0.448281799999961],[109.96671170000008,-0.452508],[109.97147880000006,-0.461028],[109.97316930000005,-0.471170899999947],[109.972155,-0.477459499999952],[109.95873260000008,-0.4863176],[109.96076120000004,-0.490780499999971],[109.96596780000004,-0.494262799999944],[109.96596780000004,-0.495885699999974],[109.96444270000006,-0.496466199999929],[109.97585520000007,-0.498427199999981],[109.980845,-0.490776199999971],[109.98749810000004,-0.485204299999964],[109.99057510000006,-0.483956899999953],[109.99598070000008,-0.485370599999953],[109.99598070000008,-0.483291599999973],[109.99215520000007,-0.478717599999925],[109.99365210000008,-0.472646699999927],[109.99656280000005,-0.471399299999973],[110.00504550000005,-0.472147699999937],[110.01011840000007,-0.460005899999942],[110.014526,-0.458176299999934],[110.01527450000009,-0.447032499999978],[110.02633520000006,-0.444703899999979],[110.03606530000008,-0.436470799999938],[110.03806120000007,-0.4328116],[110.03606530000008,-0.427156499999967],[110.03648110000006,-0.423247899999978],[110.04188670000008,-0.418008599999951],[110.04363310000008,-0.414266299999952],[110.03989080000008,-0.404453],[110.03980760000007,-0.399795899999958],[110.042552,-0.395637799999975],[110.04829020000005,-0.392643899999939],[110.05128410000009,-0.386489799999936],[110.05785820000006,-0.385664599999927],[110.06028020000008,-0.388451499999974],[110.07732820000007,-0.388513499999931],[110.07939840000006,-0.394356199999947],[110.08575920000004,-0.397998399999949],[110.09233040000004,-0.398432299999968],[110.09877770000008,-0.396820499999933],[110.09976960000006,-0.400726099999929],[110.10317920000006,-0.404259699999955],[110.10057550000005,-0.405313499999977],[110.10001750000004,-0.407297299999925],[110.10224930000004,-0.413000599999975],[110.104233,-0.414426499999934],[110.10317920000006,-0.418766],[110.10795260000003,-0.418456],[110.10615480000007,-0.420811699999945],[110.10807660000006,-0.423911399999952],[110.10634080000005,-0.426143099999933],[110.10844860000009,-0.427383],[110.11099030000008,-0.427568899999926],[110.11037030000006,-0.425709199999972],[110.11216810000008,-0.422485499999937],[110.113098,-0.424159299999928],[110.11384190000007,-0.421865599999933],[110.120093,-0.422329899999966],[110.12001610000004,-0.424848699999927],[110.13054010000008,-0.424798399999929],[110.13526540000004,-0.428114499999936],[110.14135980000009,-0.428871399999935],[110.146749,-0.434372199999927],[110.15052940000004,-0.435426399999926],[110.15644390000006,-0.428432599999951],[110.167182,-0.422952799999962],[110.18408360000006,-0.418483099999946],[110.19136370000007,-0.418483799999933],[110.194301,-0.421285699999942],[110.21300290000005,-0.419315899999958],[110.21545180000004,-0.420794599999965],[110.21533630000005,-0.423693599999979],[110.22618910000006,-0.427067299999976],[110.23135770000005,-0.432599299999936],[110.24561510000007,-0.437727399999972],[110.25111190000007,-0.443961199999933],[110.26384430000007,-0.438547799999981],[110.27464760000004,-0.437186499999939],[110.29529760000008,-0.4480072],[110.29993340000004,-0.448998399999937],[110.30239530000006,-0.446398],[110.30272390000005,-0.441774699999939],[110.30658070000004,-0.437812199999939],[110.30719670000008,-0.431991699999969],[110.311546,-0.425965299999973],[110.31287220000007,-0.414889],[110.31819620000005,-0.409365699999967],[110.33075690000004,-0.402754899999934],[110.33400120000005,-0.398654199999953],[110.34516150000007,-0.392823699999951],[110.35770980000007,-0.396100099999956],[110.36681160000006,-0.395508499999949],[110.37147530000004,-0.401067499999954],[110.37129420000008,-0.4124339],[110.35715680000004,-0.420665499999927],[110.35051710000005,-0.433621799999969],[110.35059670000004,-0.437927299999956],[110.35205590000004,-0.442061099999933],[110.35611160000008,-0.445258099999933],[110.36684290000005,-0.444650699999954],[110.36966250000006,-0.445747599999947],[110.37125780000008,-0.449465699999962],[110.36845370000009,-0.461630099999979],[110.36973320000004,-0.465991299999928],[110.37622680000004,-0.467410199999961],[110.381815,-0.471021599999972],[110.38451280000004,-0.469913399999939],[110.39063650000008,-0.474081199999944],[110.39210560000004,-0.472518099999945],[110.39171230000005,-0.466669099999933],[110.39618940000008,-0.468659099999968],[110.39507420000007,-0.4631806],[110.39852570000005,-0.459840899999961],[110.39806350000003,-0.455692599999963],[110.40015550000004,-0.449946],[110.40444680000007,-0.448029],[110.40585950000008,-0.443024599999944],[110.41002240000006,-0.444056899999964],[110.41177210000006,-0.443085799999949],[110.41195350000004,-0.437683],[110.41442940000007,-0.434134],[110.41098960000005,-0.425319399999978],[110.41304130000009,-0.420361899999932],[110.41088590000004,-0.412268199999971],[110.41289870000008,-0.402239799999961],[110.40646680000003,-0.383127499999944],[110.40236640000006,-0.377065799999968],[110.41648220000008,-0.367447799999979],[110.42688440000006,-0.362979199999927],[110.43380090000005,-0.354759599999966],[110.43838320000003,-0.346235399999955],[110.45838740000005,-0.330829199999926],[110.47163770000009,-0.325566499999979],[110.52815180000005,-0.338292799999977],[110.56178580000005,-0.365678399999979],[110.56080370000006,-0.3507273],[110.55619140000005,-0.3426702],[110.55477650000006,-0.332152599999972],[110.555466,-0.324445099999934],[110.55596940000004,-0.320559399999979],[110.56055690000005,-0.311491799999942],[110.56157470000005,-0.30381],[110.56971470000008,-0.2858858],[110.56971480000004,-0.282300899999939],[110.56666260000009,-0.277691599999969],[110.56106720000008,-0.273082199999976],[110.56005030000006,-0.258742599999948],[110.56513750000005,-0.253109299999949],[110.57073340000005,-0.250548899999956],[110.58395970000004,-0.248500799999931],[110.60532570000004,-0.237746699999946],[110.60990470000007,-0.224431399999958],[110.63014640000006,-0.204067699999939],[110.64195650000005,-0.146319499999947],[110.64594550000004,-0.144072],[110.65073280000007,-0.145610499999975],[110.66919790000009,-0.156618899999955],[110.686865,-0.162147199999936],[110.70145470000006,-0.168739799999969],[110.71627170000005,-0.169516099999953],[110.74995160000009,-0.164360399999964],[110.74590520000004,-0.156329099999937],[110.74544870000005,-0.147969499999931],[110.74071810000004,-0.1406145],[110.73843760000005,-0.127957799999933],[110.72014240000004,-0.1068974],[110.71558230000005,-0.092088299999944],[110.71415640000004,-0.078417499999944],[110.71432690000006,-0.069608],[110.71896420000007,-0.0392657],[110.72577860000007,-0.032988899999964],[110.730109,-0.022722899999962],[110.74042320000007,-0.013603399999965],[110.75033220000006,0],[110.75378530000006,0.013101500000062],[110.75631210000006,0.02835680000004],[110.75516350000004,0.034135400000025],[110.75010980000008,0.045230100000026],[110.74965040000006,0.060947700000042],[110.754704,0.068806500000051],[110.76894610000005,0.077127700000062],[110.81190230000004,0.090996400000051],[110.83556270000008,0.093539100000044],[110.84010350000005,0.090119100000038],[110.84843340000003,0.093308200000024],[110.85565310000004,0.100577],[110.86803030000004,0.114595200000053],[110.87318750000009,0.123940700000048],[110.87731310000004,0.15301560000006],[110.88247040000005,0.160284300000058],[110.88894770000007,0.186357800000053],[110.88892470000008,0.195472500000051],[110.88608020000004,0.205973300000039],[110.88825840000004,0.214788300000066],[110.89609790000009,0.223489700000073],[110.90298930000006,0.227650400000073],[110.91516430000007,0.226263600000038],[110.91906940000007,0.226957],[110.921826,0.229268500000046],[110.93514930000003,0.257468],[110.94467630000008,0.294106100000022],[110.94624110000007,0.309187500000064],[110.95426850000007,0.320468900000037],[110.96805150000006,0.334106400000053],[110.97195660000006,0.347512700000038],[110.97333490000005,0.359994400000062],[110.96664750000008,0.380005400000073],[110.96360860000004,0.385131800000067],[110.960793,0.385367900000062],[110.95329360000005,0.390907600000048],[110.95130160000008,0.39727240000002],[110.94790340000009,0.398215300000061],[110.94591140000006,0.400690500000053],[110.94638,0.405405200000075],[110.94274750000005,0.414245100000073],[110.93977,0.431781200000046],[110.94275630000004,0.442876100000035],[110.94252640000008,0.461829800000032],[110.95149090000007,0.481506400000058],[110.95650390000009,0.49726140000007],[110.96251390000003,0.502094900000031],[110.97440720000009,0.52519060000003],[110.99628050000007,0.551844800000026],[111.00191970000009,0.562857400000041],[111.00091890000004,0.58043280000004],[111.00983690000004,0.605015800000047],[111.01083780000005,0.618380500000058],[111.00952150000006,0.640714800000069],[111.01327610000004,0.661890700000072],[111.012485,0.668695],[111.00922110000005,0.674205800000038],[111.00726870000005,0.681865200000061],[111.00816980000008,0.685169200000075],[111.01027240000008,0.688022700000033],[111.02494570000005,0.696856500000024],[111.04025730000006,0.712199],[111.05007120000005,0.728872800000033],[111.05382580000008,0.737733700000035],[111.05352540000007,0.739986400000021],[111.02071160000008,0.745545500000048],[110.99942560000005,0.753903800000046],[110.99159020000008,0.754246100000046],[110.96989220000006,0.744203500000026],[110.95693750000004,0.741712],[110.93892450000004,0.740913100000057],[110.91789780000005,0.733076],[110.90477530000004,0.730928200000051],[110.89923630000004,0.732113200000072],[110.893911,0.735196200000075],[110.87654650000007,0.751927300000034],[110.86749180000004,0.758670300000063],[110.83175470000003,0.74647340000007],[110.82747930000005,0.747161500000061],[110.82422990000003,0.749742400000059],[110.81602110000006,0.750774400000068],[110.80575970000007,0.760581700000046],[110.793269,0.780654100000049],[110.79053230000005,0.788052700000037],[110.78916370000007,0.797688200000039],[110.78163830000005,0.80990440000005],[110.78728180000007,0.811281200000053],[110.78796570000009,0.814378400000066],[110.784374,0.820744600000069],[110.78762320000004,0.82418610000002],[110.78728090000004,0.829175900000052],[110.79070040000005,0.844834],[110.79206840000006,0.846898800000019],[110.79976430000005,0.847931600000038],[110.80096130000004,0.849996500000032],[110.80472370000007,0.851201100000026],[110.80506550000007,0.856018900000038],[110.80781620000005,0.857858800000031],[110.809184,0.86542970000005],[110.80730260000007,0.86938710000004],[110.79840930000006,0.874032400000033],[110.78489810000008,0.88401140000002],[110.78164840000005,0.888656900000058],[110.77651760000003,0.891065500000025],[110.77891170000004,0.894162800000061],[110.79635540000004,0.904143600000054],[110.79796110000007,0.90664060000006],[110.79646550000007,0.905810900000063],[110.79176360000008,0.908097400000031],[110.78995050000009,0.91228330000007],[110.78387160000005,0.912450500000034],[110.78060930000004,0.926213700000062],[110.77870930000006,0.926989800000058],[110.77703120000007,0.930550600000061],[110.77148250000005,0.932222500000023],[110.76865480000004,0.93163480000004],[110.76572650000008,0.929522700000064],[110.76480770000006,0.924528400000042],[110.76179890000009,0.92340850000005],[110.760566,0.919548200000065],[110.76528870000004,0.910232700000051],[110.76482960000004,0.90821980000004],[110.75954020000006,0.905752800000073],[110.75564820000005,0.899282800000037],[110.75001840000004,0.899733100000049],[110.74840220000004,0.90326170000003],[110.74136010000007,0.903436500000055],[110.73474450000003,0.90735710000007],[110.72744270000004,0.907367900000054],[110.726097,0.905722500000024],[110.723957,0.907254600000044],[110.72161570000009,0.906941900000049],[110.72128790000005,0.905521700000065],[110.71889350000004,0.904834600000072],[110.71630360000006,0.90607620000003],[110.71178490000005,0.896488300000044],[110.71028760000007,0.897081600000035],[110.70893470000004,0.894274100000075],[110.70442560000004,0.891436200000044],[110.70275130000005,0.886432200000058],[110.69763670000009,0.884167900000023],[110.69749610000008,0.877957500000036],[110.69588740000006,0.876863100000037],[110.69647170000007,0.874615200000051],[110.69912830000004,0.873207300000047],[110.69898140000004,0.869622],[110.69594260000008,0.867782200000022],[110.69613140000007,0.864556800000059],[110.69460140000007,0.863508900000056],[110.69029610000007,0.863447800000074],[110.68820220000003,0.864868200000046],[110.68806140000004,0.868796300000042],[110.68639520000005,0.870402],[110.68325510000005,0.867838900000038],[110.68082820000006,0.869009700000049],[110.67990660000004,0.87196890000007],[110.674606,0.875556500000073],[110.67593890000006,0.877599100000054],[110.67489210000008,0.878332100000023],[110.67264620000009,0.87620620000007],[110.67064870000007,0.877539400000046],[110.67022650000007,0.875743700000044],[110.66314660000006,0.873504800000035],[110.66226250000005,0.870558300000027],[110.65895320000004,0.871062800000061],[110.65815330000004,0.874202500000024],[110.65511490000006,0.87669040000003],[110.65359010000009,0.87574550000005],[110.65146620000007,0.880194600000038],[110.65346460000006,0.88342410000007],[110.65464530000008,0.891149100000064],[110.65252560000005,0.893654800000036],[110.65136850000005,0.890544200000022],[110.64980620000006,0.890944700000034],[110.65006510000006,0.893906500000071],[110.64788680000004,0.896146900000076],[110.65175240000008,0.900770900000055],[110.65158190000005,0.903397400000074],[110.64814840000008,0.902205],[110.64617560000005,0.897975900000063],[110.64313550000008,0.897699800000055],[110.64213470000004,0.894904800000063],[110.63815990000006,0.892373900000052],[110.63334420000007,0.895550900000046],[110.632664,0.894730700000025],[110.63485320000007,0.893216300000063],[110.63617380000005,0.888787200000024],[110.63248450000009,0.883488100000022],[110.63676890000005,0.880097],[110.63510440000005,0.875832600000024],[110.63176040000008,0.874256600000024],[110.63050220000008,0.875437400000067],[110.63013470000004,0.873492200000044],[110.62722260000004,0.871315500000037],[110.62881850000008,0.869070300000033],[110.62353580000007,0.869163100000037],[110.62105940000004,0.866042],[110.61201450000004,0.869366300000024],[110.60997090000006,0.866547600000047],[110.60181220000004,0.868875500000058],[110.59968890000005,0.866706800000031],[110.59764680000006,0.858758500000022],[110.59559210000003,0.857745200000068],[110.58969090000005,0.860325],[110.58624220000007,0.857791100000043],[110.57904140000005,0.858347200000026],[110.57540540000008,0.85382050000004],[110.57194620000007,0.856758400000047],[110.569897,0.856277400000067],[110.56856060000007,0.860687900000073],[110.560926,0.861010700000065],[110.55348530000003,0.859513900000024],[110.55309760000006,0.861801300000025],[110.54985240000008,0.861658500000033],[110.54655730000007,0.863982300000032],[110.54512810000006,0.86859080000005],[110.54270750000006,0.867464300000051],[110.54032510000008,0.868904200000031],[110.53505720000004,0.867794900000035],[110.52983140000003,0.871150500000056],[110.52124230000004,0.869895300000053],[110.51206540000004,0.874575800000059],[110.50641950000005,0.873366300000043],[110.49048240000008,0.876694300000054],[110.48991330000007,0.879720500000076],[110.48055570000008,0.884186600000021],[110.47960890000007,0.891995500000064],[110.46730720000005,0.89259450000003],[110.462749,0.904766400000028],[110.45601710000005,0.906434700000034],[110.45271690000004,0.909383300000059],[110.44658240000007,0.907537300000058],[110.43827780000004,0.91739240000004],[110.437982,0.922565900000052],[110.43306270000005,0.925351100000057],[110.43265750000006,0.928494400000034],[110.44058740000008,0.937005200000044],[110.43857960000008,0.940100500000028],[110.43900370000006,0.943744200000026],[110.43554420000004,0.946732],[110.43354030000006,0.945018],[110.43090680000006,0.947173400000054],[110.42940690000006,0.944764200000066],[110.42457230000008,0.946711300000061],[110.42036150000007,0.952390600000058],[110.41782930000005,0.950655500000039],[110.41745690000005,0.952027600000065],[110.41570290000004,0.950919100000021],[110.413081,0.952386200000035],[110.405442,0.953032400000041],[110.40686240000008,0.956971200000055],[110.408763,0.958032],[110.40801650000009,0.963878],[110.41022070000008,0.965057],[110.40937440000005,0.968480400000033],[110.40473110000005,0.971931300000051],[110.40494250000006,0.975132700000074],[110.40645290000003,0.976236800000038],[110.40243350000009,0.985588900000039],[110.40441520000007,0.989720600000055],[110.40092070000009,0.988549800000044],[110.39738860000006,0.990356700000063],[110.39741840000005,0.994241100000067],[110.39546030000008,0.996216300000071],[110.39644550000008,0.99769230000004],[110.39363750000007,0.998597200000063],[110.393665,0.996495200000027],[110.38913670000005,0.99359620000007],[110.384707,0.995815300000061],[110.378645,0.99579140000003],[110.37085340000004,0.991287100000022],[110.37068790000006,0.987912300000062],[110.36612260000004,0.987231300000076],[110.36189230000008,0.983998800000052],[110.35878690000004,0.983453900000029],[110.35781560000004,0.984583300000054],[110.35938410000006,0.985734500000035],[110.35742960000005,0.98931570000002],[110.357356,0.98743],[110.35363590000009,0.987864700000046],[110.35311260000009,0.986475900000073],[110.34345140000005,0.991934700000058],[110.34166310000006,0.997783200000072],[110.34379260000009,1.006333700000027],[110.33936570000009,1.012646600000039],[110.33626250000009,1.009652700000061],[110.33745870000007,1.00636540000005],[110.335004,1.00468],[110.33089260000008,1.006867400000033],[110.32889120000004,1.003019600000073],[110.329994,1.001145300000076],[110.32779030000006,0.993336900000031],[110.32516540000006,0.992084300000045],[110.31924570000007,1.000769600000069],[110.31559730000004,1.001939200000038],[110.31390030000006,0.999807700000019],[110.30916840000003,1.000447500000064],[110.30796050000004,1.003840300000036],[110.30534390000008,1.003524500000026],[110.30434650000007,0.999036800000056],[110.30263310000004,0.999489800000049],[110.29839610000005,0.995598400000063],[110.295807,0.997876600000041],[110.29261270000006,0.998233600000049],[110.29010640000007,0.995498500000053],[110.27630540000007,0.996658300000036],[110.27568210000004,0.998285900000042],[110.27725330000004,0.998881700000027],[110.27945010000008,1.006932800000072],[110.28262910000007,1.011296900000048],[110.28167340000005,1.014364900000032],[110.28291320000005,1.01824490000007],[110.27815140000007,1.032568800000035],[110.28664760000004,1.040257100000076],[110.28632740000006,1.044524100000046],[110.27931170000005,1.052297400000043],[110.27605130000006,1.051477],[110.269445,1.053420800000026],[110.26749580000006,1.050499700000046],[110.26331920000007,1.056438800000024],[110.26026460000008,1.057592100000022],[110.26043620000007,1.061742600000059],[110.26463630000006,1.063380500000051],[110.26722260000008,1.066327700000045],[110.264438,1.067982100000052],[110.26353170000004,1.074395500000037],[110.25160970000007,1.079644100000053],[110.24745030000008,1.086444200000074],[110.24793660000006,1.09806210000005],[110.24587670000005,1.102997600000037],[110.24658160000007,1.106554500000072],[110.24955510000007,1.107621600000073],[110.24410190000009,1.111182500000041],[110.24455270000004,1.113247900000033],[110.24211,1.115147],[110.24126040000004,1.117921200000069],[110.23744060000007,1.119408900000053],[110.23465990000005,1.118916400000046],[110.23190160000007,1.120364900000027],[110.22842090000006,1.119236500000056],[110.22350480000006,1.114171],[110.21596480000005,1.115185800000063],[110.21046080000008,1.118571100000054],[110.20695050000006,1.128766300000052],[110.20777620000007,1.130851600000028],[110.20523710000003,1.132969800000069],[110.20599150000004,1.138365800000031],[110.21195820000008,1.140906400000063],[110.21270520000007,1.150789400000065],[110.20664580000005,1.157695400000023],[110.20721490000005,1.164608300000054],[110.20044390000004,1.168011200000024],[110.19827810000004,1.173623300000031],[110.19571570000005,1.175159600000029],[110.19302380000005,1.182875400000057],[110.19089580000008,1.184643300000062],[110.189201,1.182794],[110.18622690000007,1.183167],[110.17217770000008,1.188008500000024],[110.17125190000007,1.187203500000066],[110.16513190000006,1.196074],[110.16243280000003,1.196082300000057],[110.15910040000006,1.19881220000002],[110.15419030000004,1.198646600000075],[110.15253610000008,1.196913700000039],[110.13892760000005,1.199933100000067],[110.13426950000007,1.197574400000065],[110.13203290000007,1.199160100000029],[110.12946460000006,1.195681],[110.12224960000009,1.175276900000028],[110.10619610000003,1.15872],[110.10234070000007,1.151679200000046],[110.09891510000006,1.148631100000046],[110.08213810000007,1.144841600000063],[110.07459260000007,1.138003800000035],[110.07123570000005,1.128696800000057],[110.07341,1.116576700000053],[110.07889560000007,1.109576],[110.08632660000006,1.105623200000025],[110.10472110000006,1.103750700000035],[110.11740610000004,1.093623800000046],[110.12653190000009,1.090401800000052],[110.12959290000003,1.087180300000057],[110.12828830000007,1.081382500000075],[110.12611390000006,1.079031],[110.11521150000004,1.073966],[110.11241150000006,1.066730300000074],[110.112709,1.061212900000044],[110.11539460000006,1.055478500000049],[110.12808230000007,1.043548100000066],[110.13786320000008,1.031563600000027],[110.13578030000008,1.024979100000053],[110.13201140000007,1.021415500000046],[110.12807460000005,1.019398600000045],[110.12200980000006,1.019483800000046]]]},"properties":{"shapeName":"Sanggau","shapeISO":"","shapeID":"22746128B72002231640135","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[139.57272310000008,-2.237119899999925],[139.57238740000003,-2.235781899999949],[139.5717313,-2.237564799999973],[139.57272310000008,-2.237119899999925]]],[[[139.53099040000006,-2.209315099999969],[139.5319211000001,-2.206225099999926],[139.52760290000003,-2.206975199999931],[139.52856420000012,-2.209365099999957],[139.53099040000006,-2.209315099999969]]],[[[139.51443460000007,-2.133812899999953],[139.5137022,-2.127732699999967],[139.506561,-2.125322799999935],[139.50709510000002,-2.133192799999961],[139.51278660000003,-2.139152799999977],[139.5157316000001,-2.139762899999937],[139.51715060000004,-2.137432799999942],[139.51443460000007,-2.133812899999953]]],[[[139.47325110000008,-2.123572799999977],[139.4786832000001,-2.1205928],[139.47726420000004,-2.113062899999932],[139.47447180000006,-2.113832699999932],[139.47142010000005,-2.121242699999925],[139.47195410000006,-2.123572799999977],[139.47325110000008,-2.123572799999977]]],[[[139.45849590000012,-2.119792699999948],[139.4604032000001,-2.113522799999942],[139.45770240000002,-2.111812799999939],[139.454437,-2.1138627],[139.4526975000001,-2.1187029],[139.45555090000005,-2.120612899999969],[139.45849590000012,-2.119792699999948]]],[[[139.24140910000006,-2.035952599999973],[139.24179060000006,-2.033542599999976],[139.23886090000008,-2.032422499999939],[139.2389372,-2.035752799999955],[139.24140910000006,-2.035952599999973]]],[[[139.24726850000002,-2.004388099999971],[139.23995950000005,-2.004888],[139.2400358000001,-2.008028],[139.24195840000004,-2.008528],[139.24104290000002,-2.007108],[139.2420042000001,-2.005268099999967],[139.24485760000005,-2.006187899999929],[139.24697860000003,-2.010247899999968],[139.24714640000002,-2.014967899999931],[139.2511290000001,-2.014928099999963],[139.25329570000008,-2.011578099999952],[139.25317360000008,-2.007318],[139.24726850000002,-2.004388099999971]]],[[[139.135803,-1.999485599999957],[139.133209,-1.999525699999936],[139.1324919000001,-2.001545199999953],[139.133911,-2.004805099999942],[139.13201890000005,-2.009265199999959],[139.1355284000001,-2.011585199999956],[139.13774090000004,-2.009585099999924],[139.1393736000001,-2.004125099999953],[139.1375273000001,-1.9999557],[139.135803,-1.999485599999957]]],[[[139.0104216000001,-1.948148199999935],[139.01016220000008,-1.946957],[139.0048369000001,-1.949084499999969],[139.00720200000012,-1.950526499999967],[139.0104216000001,-1.948148199999935]]],[[[139.0247038000001,-1.934243599999945],[139.02348310000002,-1.933005099999946],[139.0124052000001,-1.935996299999942],[139.01083360000007,-1.9338739],[139.00819380000007,-1.933517299999949],[139.00082380000003,-1.937749599999961],[139.01222210000003,-1.943064599999957],[139.01416,-1.947661299999936],[139.0182341000001,-1.948897799999941],[139.01644880000003,-1.943246199999976],[139.0247038000001,-1.939191599999958],[139.0247038000001,-1.934243599999945]]],[[[138.76664720000008,-1.868103],[138.7680663000001,-1.865582899999936],[138.76629620000006,-1.863973],[138.76217640000004,-1.868063],[138.76664720000008,-1.868103]]],[[[138.80097950000004,-1.663765499999954],[138.79830920000006,-1.663765399999932],[138.79354840000008,-1.6666254],[138.79383840000003,-1.6685255],[138.78997790000005,-1.6730154],[138.79055770000002,-1.676935399999934],[138.7953642000001,-1.686015399999974],[138.7958983000001,-1.691135499999973],[138.79336530000012,-1.699795399999971],[138.79740890000005,-1.706775499999935],[138.80062850000002,-1.702315599999963],[138.8000945000001,-1.693485499999952],[138.8054350000001,-1.678045499999939],[138.8047789000001,-1.674895499999934],[138.80245960000002,-1.673045499999944],[138.8038329000001,-1.665675499999963],[138.8027647,-1.663825499999973],[138.80097950000004,-1.663765499999954]]],[[[138.777191,-1.644503099999952],[138.77487170000006,-1.640253099999939],[138.7742766,-1.644513],[138.77294910000012,-1.644883],[138.7761839000001,-1.645623099999966],[138.777191,-1.644503099999952]]],[[[139.99981920000005,-2.3622036],[139.98178070000006,-2.361857899999961],[139.88369720000003,-2.374937799999941],[139.82365390000007,-2.374657599999978],[139.81076020000012,-2.377627599999926],[139.80354280000006,-2.376547599999981],[139.78900120000003,-2.368807499999946],[139.75543190000008,-2.358406499999944],[139.7048642000001,-2.332554799999969],[139.6888272000001,-2.319294],[139.663284,-2.301975499999969],[139.6437681000001,-2.291551099999936],[139.6420743000001,-2.289226499999927],[139.6199338,-2.285208],[139.61633270000004,-2.285883699999943],[139.61311310000008,-2.282520299999931],[139.59686250000004,-2.278030399999977],[139.58103920000008,-2.271690399999954],[139.53582740000002,-2.2484748],[139.5154874000001,-2.234525],[139.5004117000001,-2.226402],[139.44749430000002,-2.189554699999974],[139.3833006000001,-2.158234599999957],[139.36273170000004,-2.146584299999972],[139.31388830000003,-2.133672199999978],[139.2768400000001,-2.1218059],[139.2492674,-2.109701399999949],[139.190399,-2.070946899999967],[139.15762310000002,-2.056452699999966],[139.1461332,-2.049932699999943],[139.13281230000007,-2.039732699999945],[139.1249693000001,-2.030512599999952],[139.1012571000001,-2.024637199999972],[139.0485685000001,-2.005557099999976],[139.03091410000002,-1.997389899999973],[139.00070170000004,-1.976141799999937],[138.99220260000004,-1.972842899999932],[138.97604350000006,-1.969687699999952],[138.97171,-1.970907699999941],[138.90544110000008,-1.954213599999946],[138.90412890000005,-1.955168799999967],[138.90493760000004,-1.957284299999969],[138.90293870000005,-1.958875199999966],[138.9012755000001,-1.958753499999943],[138.90055830000006,-1.956240799999932],[138.8965147,-1.955159299999934],[138.8867491000001,-1.960108799999944],[138.87683090000007,-1.969327599999929],[138.87184130000003,-1.9691177],[138.86392200000012,-1.965727699999945],[138.83584580000002,-1.948597799999959],[138.8014525000001,-1.930097799999942],[138.7899169000001,-1.920347699999979],[138.78572070000007,-1.911947699999928],[138.78080740000007,-1.907277699999952],[138.77525320000007,-1.8956778],[138.76608260000012,-1.890827799999954],[138.75819380000007,-1.881936199999927],[138.75500480000005,-1.873167699999954],[138.74842820000003,-1.866694699999925],[138.74697860000003,-1.861036299999967],[138.7479552000001,-1.857428199999958],[138.750305,-1.856299899999954],[138.75212080000006,-1.857325799999956],[138.75395190000006,-1.855011699999977],[138.75134260000004,-1.846604299999967],[138.7499388000001,-1.846656399999972],[138.7494048000001,-1.851288699999941],[138.747711,-1.852950299999975],[138.73806750000006,-1.853477699999928],[138.716339,-1.838793499999952],[138.68749990000003,-1.808677799999941],[138.68328850000012,-1.805962699999952],[138.68180830000006,-1.803019199999937],[138.66331470000011,-1.792099099999973],[138.64897140000005,-1.785949199999948],[138.62268050000011,-1.778929199999936],[138.49226370000008,-1.753513599999962],[138.47587570000007,-1.748679599999946],[138.4734343,-1.748459599999933],[138.47285450000004,-1.750679599999955],[138.469818,-1.7473496],[138.36242670000001,-1.716799799999933],[138.3203734000001,-1.701509899999962],[138.28070060000005,-1.684716699999967],[138.1778564000001,-1.632084499999962],[138.17037960000005,-1.630883599999947],[138.1681324000001,-1.634610199999941],[138.16849890000003,-1.651100099999951],[138.1749116000001,-1.673819599999945],[138.17940310000006,-1.6807176],[138.1784718,-1.6818559],[138.17547090000005,-1.678958499999965],[138.1732978000001,-1.678751599999941],[138.1713317000001,-1.6839255],[138.1670891000001,-1.681131599999958],[138.16357080000012,-1.6818559],[138.16460560000007,-1.685684599999945],[138.17009,-1.689823799999942],[138.17050390000009,-1.692617699999971],[138.16802040000005,-1.693549],[138.16491610000003,-1.689927199999943],[138.1616047000001,-1.690444599999978],[138.1624326000001,-1.695308099999977],[138.1608804000001,-1.6977916],[138.16295,-1.697998599999949],[138.16419170000006,-1.6998612],[138.16025950000005,-1.701930799999957],[138.16657170000008,-1.710726399999942],[138.17184910000003,-1.712071699999967],[138.17474650000008,-1.714451699999927],[138.1732978000001,-1.717452599999945],[138.16501950000008,-1.7213847],[138.16915870000003,-1.724489099999971],[138.16574390000005,-1.731111699999929],[138.17102130000012,-1.732974299999967],[138.17143520000002,-1.738976099999945],[138.17422910000005,-1.741563099999951],[138.1744361000001,-1.744460499999946],[138.16957260000004,-1.747978699999976],[138.16812390000007,-1.757498799999951],[138.16564040000003,-1.762051799999938],[138.1585004000001,-1.764535299999977],[138.15818990000002,-1.769398799999976],[138.15508560000012,-1.772710099999927],[138.15881080000008,-1.775607499999978],[138.1562239000001,-1.780781499999932],[138.15684470000008,-1.782851],[138.1651230000001,-1.783678899999927],[138.16615780000006,-1.785645],[138.1647091000001,-1.788852799999972],[138.15808650000008,-1.786990199999934],[138.15612040000008,-1.789266699999928],[138.1592247000001,-1.793509299999926],[138.15870730000006,-1.796717199999932],[138.160363,-1.801477199999965],[138.1589143000001,-1.806547599999931],[138.15715520000003,-1.8090311],[138.1511534000001,-1.804581499999927],[138.14763510000012,-1.806547599999931],[138.14773860000003,-1.808306799999968],[138.150636,-1.8101694],[138.150843,-1.812652899999932],[138.14515160000008,-1.813895399999979],[138.14422030000003,-1.815653699999928],[138.14442730000007,-1.826829399999951],[138.13113810000004,-1.853739],[138.1286238,-1.888101199999937],[138.13532930000008,-1.907377499999939],[138.13532870000006,-1.9258157],[138.13700490000008,-1.940063399999929],[138.1504145,-1.954311099999927],[138.179748,-1.965206399999943],[138.20321480000007,-1.971073099999956],[138.21830060000002,-1.976939899999934],[138.23217710000006,-1.979874299999949],[138.23610930000007,-1.982254299999965],[138.23797190000005,-1.990532599999938],[138.23962760000006,-1.991878],[138.2421111000001,-1.991360399999962],[138.2463537000001,-1.9842204],[138.25090680000005,-1.983496],[138.2526659,-1.984944699999971],[138.25307980000002,-1.988256099999944],[138.247285,-1.988152599999978],[138.2448015000001,-1.991877799999941],[138.24531890000003,-1.995396099999937],[138.25090680000005,-1.999121299999956],[138.25421810000012,-1.997155199999952],[138.2519416,-1.993016099999977],[138.2529763000001,-1.990118699999925],[138.25970250000012,-1.988980399999946],[138.26011640000002,-1.990429099999972],[138.25566680000009,-1.997051699999929],[138.2564946000001,-1.998293499999932],[138.26115120000009,-1.998500399999955],[138.26249640000003,-2.000466499999959],[138.26063380000005,-2.004709199999979],[138.26125460000003,-2.010193499999957],[138.25711550000005,-2.016298799999959],[138.25732240000002,-2.018575299999952],[138.261772,-2.021886599999959],[138.26218590000008,-2.025715299999945],[138.2607372000001,-2.026750099999958],[138.25370070000008,-2.023542299999974],[138.25235550000002,-2.0317171],[138.24914760000001,-2.033062299999926],[138.24821630000008,-2.035442299999943],[138.25514940000005,-2.033579699999962],[138.2603233000001,-2.034304],[138.26053030000003,-2.037201399999958],[138.25432160000003,-2.039995399999952],[138.2533903000001,-2.043617099999949],[138.25545980000004,-2.044755399999929],[138.25980590000006,-2.041858],[138.261772,-2.042271899999946],[138.26322070000003,-2.044962299999952],[138.26301380000007,-2.049515399999962],[138.26570420000007,-2.051274499999977],[138.28060510000012,-2.049515399999962],[138.28805560000012,-2.044444899999974],[138.28929730000004,-2.045169299999941],[138.28940080000007,-2.048998],[138.2821573000001,-2.052930199999935],[138.28681380000012,-2.0638989],[138.28971120000006,-2.065347599999939],[138.29084950000004,-2.064105899999959],[138.2896078000001,-2.057586699999945],[138.29105650000008,-2.055310199999951],[138.29291910000006,-2.055103199999962],[138.30150780000008,-2.061829299999943],[138.30544,-2.067003299999953],[138.31071740000004,-2.068762399999969],[138.30657830000007,-2.077247599999964],[138.30150780000008,-2.076005899999927],[138.29405740000004,-2.077868499999965],[138.29240170000003,-2.081386799999962],[138.295713,-2.085939899999971],[138.2980930000001,-2.085629399999959],[138.30274960000008,-2.081490299999928],[138.30575040000008,-2.082318099999952],[138.305647,-2.085629399999959],[138.30274960000008,-2.088423299999931],[138.30274960000008,-2.0911138],[138.3051296000001,-2.092666],[138.30833740000003,-2.088009399999976],[138.31071740000004,-2.086871199999962],[138.31547740000008,-2.086767699999939],[138.3182713000001,-2.088423299999931],[138.31454610000003,-2.0932868],[138.31444260000012,-2.098046799999963],[138.32054790000007,-2.095666799999947],[138.32510090000005,-2.097426],[138.3253079000001,-2.098667699999964],[138.32448010000007,-2.100012899999967],[138.31702960000007,-2.099909499999967],[138.31620180000004,-2.104048599999942],[138.322514,-2.108187799999939],[138.3256183000001,-2.108705099999952],[138.32675660000007,-2.111188599999934],[138.3257218000001,-2.112430399999937],[138.31878870000003,-2.112326899999971],[138.31247650000012,-2.116466],[138.3121661,-2.119466899999964],[138.3159948000001,-2.120501699999977],[138.32623920000003,-2.117604299999925],[138.3281018,-2.121226099999944],[138.3220999,-2.125365199999976],[138.32282440000006,-2.12878],[138.32427310000003,-2.129193899999962],[138.33058530000005,-2.125572199999965],[138.33337920000008,-2.125882599999954],[138.34486530000004,-2.1343678],[138.34217490000003,-2.136023499999965],[138.33565570000007,-2.130746099999953],[138.33265490000008,-2.13116],[138.33255140000006,-2.1331261],[138.3374149000001,-2.139955699999973],[138.34051920000002,-2.141197399999953],[138.34724540000002,-2.137472199999934],[138.35200540000005,-2.142439199999956],[138.35066010000003,-2.144612199999926],[138.34579670000005,-2.143474],[138.344141,-2.144301799999937],[138.3440375,-2.153821799999946],[138.34496880000006,-2.155270499999972],[138.3588350000001,-2.157961],[138.3594558000001,-2.162514],[138.3579036000001,-2.164687099999981],[138.35645490000002,-2.163962699999956],[138.35355750000008,-2.158374899999956],[138.35014280000007,-2.157754],[138.3494184000001,-2.160341],[138.3521088000001,-2.163445299999978],[138.35190190000003,-2.166860099999951],[138.35003930000005,-2.1670671],[138.34496880000006,-2.163962699999956],[138.34238190000008,-2.1649975],[138.3432097000001,-2.167274],[138.34838360000003,-2.170171399999958],[138.3474523000001,-2.174828],[138.34838360000003,-2.177621899999963],[138.35231580000004,-2.176897499999939],[138.3537645,-2.169654],[138.3568689000001,-2.169343599999934],[138.35852450000004,-2.171930599999939],[138.35676540000009,-2.179381],[138.36007670000004,-2.180312299999969],[138.3614219000001,-2.175862799999948],[138.36411240000007,-2.174621],[138.36876890000008,-2.185175799999968],[138.37259760000006,-2.189728899999977],[138.3739428,-2.189211499999942],[138.37497760000008,-2.184141],[138.37963420000005,-2.184451499999966],[138.37963420000005,-2.177208],[138.38170370000012,-2.176794099999938],[138.3835663000001,-2.177932299999952],[138.3832559000001,-2.182175],[138.38449760000003,-2.183934099999931],[138.39029240000002,-2.184555],[138.39225850000003,-2.190142799999933],[138.3946386,-2.191488],[138.39857070000005,-2.190349799999979],[138.39660460000005,-2.183623699999941],[138.39784640000005,-2.179691499999933],[138.4007438000001,-2.178967099999966],[138.4034342000001,-2.184761899999955],[138.40364120000004,-2.191591499999959],[138.40633160000004,-2.192005399999971],[138.4111951000001,-2.187762799999973],[138.41295430000002,-2.187555799999927],[138.4147134000001,-2.189521899999932],[138.409436,-2.193661099999929],[138.40757340000005,-2.199869799999931],[138.409229,-2.201835899999935],[138.4127473000001,-2.201422],[138.4174038000001,-2.203802],[138.41761080000003,-2.2081481],[138.42009430000007,-2.207941099999971],[138.42164650000007,-2.202249799999947],[138.41947340000002,-2.198628],[138.42071520000002,-2.197386299999948],[138.42495780000002,-2.199973299999954],[138.4283726000001,-2.197489799999971],[138.43013170000006,-2.197800199999961],[138.43095950000009,-2.199662799999942],[138.43044210000005,-2.200904599999944],[138.42506130000004,-2.202456799999936],[138.42464730000006,-2.2070098],[138.43095950000009,-2.203284599999961],[138.43385690000002,-2.2070098],[138.43985870000006,-2.2102177],[138.4423422000001,-2.207837599999948],[138.44254910000006,-2.2047333],[138.44410130000006,-2.204215899999951],[138.44668830000012,-2.208458499999949],[138.440583,-2.211562899999933],[138.4407900000001,-2.214770699999974],[138.44555,-2.2139429],[138.44989610000005,-2.214770699999974],[138.45217270000012,-2.217047199999968],[138.45724310000003,-2.216736799999978],[138.4579675000001,-2.219013299999972],[138.45455270000002,-2.220979399999976],[138.45496660000003,-2.222221199999979],[138.46086490000005,-2.219944599999963],[138.46303790000002,-2.217150699999934],[138.46562490000008,-2.221082899999942],[138.467384,-2.2195307],[138.47297190000006,-2.220979399999976],[138.47762840000007,-2.227705499999956],[138.4715232000001,-2.224187299999926],[138.4691431000001,-2.226567299999942],[138.47017790000007,-2.230292499999962],[138.48280230000012,-2.230499499999951],[138.4905632000001,-2.235569899999973],[138.4921154000001,-2.240329899999949],[138.49615110000002,-2.238156899999979],[138.50505020000003,-2.245193399999948],[138.51146590000008,-2.244986499999925],[138.51726070000007,-2.2467456],[138.5185024000001,-2.247676899999931],[138.51829550000002,-2.253368199999954],[138.5162259000001,-2.259887399999968],[138.52853990000006,-2.261336099999937],[138.53091990000007,-2.266199599999936],[138.53319640000007,-2.267544799999939],[138.5359903000001,-2.267648299999962],[138.53971550000006,-2.264026499999943],[138.5442686,-2.263819599999977],[138.54789040000003,-2.265682199999958],[138.54799380000009,-2.267544799999939],[138.55109820000007,-2.270338699999968],[138.55720340000005,-2.2660961],[138.56061820000002,-2.270959599999969],[138.56186,-2.265889099999924],[138.5652748000001,-2.267544799999939],[138.5695174000001,-2.266717],[138.5695174000001,-2.2651648],[138.57344960000012,-2.269407399999977],[138.57655390000002,-2.2706492],[138.57789920000005,-2.273443099999952],[138.5792444000001,-2.2681657],[138.58286610000005,-2.267130899999927],[138.5853496000001,-2.268786499999976],[138.59042010000007,-2.265682199999958],[138.5940418,-2.266717],[138.59880180000005,-2.261853499999972],[138.6016992000001,-2.264750899999967],[138.6032514000001,-2.263923],[138.60387230000003,-2.266199599999936],[138.6079079000001,-2.264957799999934],[138.6088393000001,-2.269200499999954],[138.61090880000006,-2.269407399999977],[138.61173670000005,-2.2715805],[138.62136020000003,-2.277271799999937],[138.62032540000007,-2.2773753],[138.6204289000001,-2.279341399999964],[138.622188,-2.289275299999929],[138.62989720000007,-2.301120399999945],[138.66676140000004,-2.351081099999931],[138.71445860000006,-2.412359899999956],[138.7241517000001,-2.422549699999934],[138.72135930000002,-2.428339],[138.72152540000002,-2.438636199999962],[138.72684010000012,-2.449929899999972],[138.72733830000004,-2.457071499999927],[138.724681,-2.461555699999963],[138.720861,-2.462386199999969],[138.71986450000009,-2.465375699999925],[138.72218970000006,-2.470026],[138.72185760000002,-2.473679899999979],[138.7203628000001,-2.474842499999966],[138.72135930000002,-2.477665899999977],[138.63566,-2.619667599999957],[138.62121070000012,-2.645908899999938],[138.6705376000001,-2.673811],[138.76653410000006,-2.720812699999954],[139.1114904000001,-2.902840599999934],[139.11392190000004,-2.906667],[139.11758410000004,-2.908808499999964],[139.113632,-2.908522099999971],[139.11187730000006,-2.914990899999964],[139.10888650000004,-2.914990199999977],[139.11033610000004,-2.9175589],[139.10958840000012,-2.920351499999924],[139.10321030000011,-2.922365199999945],[139.1025999000001,-2.924492399999963],[139.11065660000008,-2.925782399999946],[139.11418130000004,-2.924887399999932],[139.11518840000008,-2.9271271],[139.113983,-2.932557299999928],[139.1160887000001,-2.932906099999968],[139.11999490000005,-2.932337299999972],[139.12556440000003,-2.92629],[139.12684610000008,-2.928921699999933],[139.1261747000001,-2.933344399999953],[139.13803080000002,-2.941521199999954],[139.1398008000001,-2.9498615],[139.14538560000005,-2.956303099999957],[139.139572,-2.959324799999933],[139.1409453000001,-2.968506799999943],[139.1353911000001,-2.967273699999964],[139.13298020000002,-2.970184099999926],[139.13803080000002,-2.969625699999938],[139.1420591000001,-2.973545799999954],[139.1401518,-2.974441],[139.1359556000001,-2.973320199999932],[139.13421610000012,-2.975559],[139.1403196000001,-2.976288599999975],[139.13900740000008,-2.983118499999932],[139.1326292000001,-2.983676699999933],[139.1324614,-2.985747799999956],[139.13670330000002,-2.989220099999955],[139.13636760000009,-2.991571399999941],[139.13284280000005,-2.994605099999944],[139.13015730000006,-2.987567399999932],[139.12356550000004,-2.988916899999936],[139.12065110000003,-2.984456499999965],[139.1193998000001,-2.984813],[139.11921670000004,-2.989332],[139.11708050000004,-2.990639399999964],[139.12265,-2.995444099999929],[139.1269377000001,-2.995930899999962],[139.123596,-2.998435],[139.1268004000001,-3.005684799999926],[139.1259272000001,-3.018658499999958],[139.12307070000008,-3.030798499999946],[139.09254440000007,-3.0738282],[139.0876005,-3.073048799999981],[139.0842894000001,-3.076599599999952],[139.08241250000003,-3.075351499999954],[139.074005,-3.076755],[139.07360820000008,-3.078437099999974],[139.0767363000001,-3.083096499999954],[139.0748747,-3.084973299999945],[139.07339460000003,-3.082594399999948],[139.06925950000004,-3.082189799999981],[139.06994610000004,-3.087536799999953],[139.07180770000002,-3.090411699999947],[139.071121,-3.092785799999945],[139.0681608000001,-3.090602199999978],[139.06658920000007,-3.085748],[139.06048570000007,-3.088804],[139.06037890000005,-3.093159399999934],[139.05732710000007,-3.0941431],[139.05683880000004,-3.098398699999962],[139.05308520000006,-3.097994599999936],[139.05061320000004,-3.102840199999946],[139.05160510000007,-3.105713099999946],[139.04981980000002,-3.108480899999961],[139.04528790000006,-3.108372199999963],[139.04763780000008,-3.113524899999959],[139.0449827000001,-3.115598199999965],[139.0442961000001,-3.120150299999978],[139.03868090000003,-3.123009199999956],[139.0373839,-3.127559899999937],[139.0392607000001,-3.129939799999931],[139.035507,-3.129337799999973],[139.03070050000008,-3.124080899999967],[139.02911360000007,-3.125265599999977],[139.02951030000008,-3.127048199999933],[139.032852,-3.131608699999958],[139.03245530000004,-3.1334887],[139.03009020000002,-3.133384699999965],[139.0287016000001,-3.132194],[139.0280302000001,-3.127341699999931],[139.02607710000007,-3.126545699999951],[139.0258635,-3.131099],[139.02851850000002,-3.133480299999974],[139.03076160000012,-3.140117399999951],[139.03352340000004,-3.141212499999938],[139.02516160000005,-3.143768099999932],[139.022003,-3.142870199999948],[139.02120960000002,-3.145640399999934],[139.02249130000007,-3.148909799999956],[139.0168761000001,-3.146818899999971],[139.0167692000001,-3.148996599999975],[139.02307110000004,-3.152672799999948],[139.0220640000001,-3.162371599999972],[139.01832560000003,-3.163056399999959],[139.02215560000002,-3.164351499999952],[139.02264390000005,-3.1659365],[139.02136210000003,-3.1669238],[139.0182188000001,-3.165926899999931],[139.0152739,-3.169682],[139.01576220000004,-3.171366],[139.02087390000008,-3.170684299999948],[139.021942,-3.172468399999957],[139.0205687,-3.174841199999946],[139.01536540000006,-3.172553099999959],[139.0146635000001,-3.174828299999945],[139.02282700000012,-3.1771228],[139.02183520000006,-3.179496299999926],[139.0162352000001,-3.182651799999974],[139.02142320000007,-3.186127899999974],[139.01444990000005,-3.189379199999962],[139.01246630000003,-3.188385],[139.00862110000003,-3.190257299999928],[139.0031126,-3.190641199999959],[139.0011442000001,-3.1935074],[139.00221240000008,-3.196974499999953],[139.00386030000004,-3.198019],[139.00692730000003,-3.197332899999935],[139.0063322000001,-3.200301399999944],[139.00277690000007,-3.200887399999942],[139.00317370000005,-3.203561099999945],[139.00694260000012,-3.205939299999955],[139.0025786000001,-3.209301],[139.00503520000007,-3.217423699999927],[139.0066832000001,-3.217328299999963],[139.00698840000007,-3.214458199999967],[139.0085600000001,-3.215154599999948],[139.00688160000004,-3.218813399999931],[139.0088499000001,-3.220005699999945],[139.0024565000001,-3.223951099999965],[139.00679,-3.2268314],[139.0035246000001,-3.231278699999962],[139.00706470000011,-3.233959399999947],[139.0078429,-3.228714699999955],[139.0106962000001,-3.229710799999964],[139.01129130000004,-3.232879899999944],[139.01396160000002,-3.230015],[139.0146483000001,-3.231303399999945],[139.0122679000001,-3.2338719],[139.0118712000001,-3.237236499999938],[139.0145262000001,-3.237044799999978],[139.01463300000012,-3.238529699999958],[139.0122679000001,-3.238920399999927],[139.01216110000007,-3.241889899999933],[139.009796,-3.240696699999944],[139.00862110000003,-3.242377],[139.01066570000012,-3.245945199999937],[139.012451,-3.243078499999967],[139.01344280000012,-3.243575599999929],[139.0114592000001,-3.248025699999971],[139.01243580000005,-3.2496116],[139.018051,-3.249426099999937],[139.01725750000003,-3.252493399999935],[139.02090440000006,-3.253491399999973],[139.01567060000002,-3.256350299999951],[139.01606730000003,-3.257539],[139.0202177000001,-3.255568499999924],[139.0217894000001,-3.257353799999976],[139.0208891000001,-3.261113399999942],[139.01753220000012,-3.262393],[139.01890550000007,-3.266850499999975],[139.017227,-3.2673418],[139.0155638000001,-3.273388899999929],[139.01962240000012,-3.284204],[139.02049840000006,-3.282170399999927],[139.033565,-3.282411399999944],[139.03816040000004,-3.293734],[139.048392,-3.292267899999956],[139.05147190000002,-3.283608399999935],[139.05880720000005,-3.276521899999977],[139.0721182000001,-3.274943199999939],[139.08882130000006,-3.280593899999928],[139.09826150000004,-3.295546599999966],[139.097461,-3.308018499999946],[139.08357020000005,-3.310967799999958],[139.0825651,-3.3004916],[139.0835727000001,-3.287657099999933],[139.07434780000006,-3.287342899999942],[139.06734540000002,-3.296507899999938],[139.06898610000007,-3.309379099999944],[139.0756795000001,-3.325279899999941],[139.076216,-3.336019],[139.08913,-3.334099099999946],[139.1000822000001,-3.328748],[139.10460910000006,-3.338176799999928],[139.10443010000006,-3.354976699999952],[139.10718630000008,-3.371946199999968],[139.106155,-3.379949599999975],[139.11209350000001,-3.388483099999974],[139.1251903000001,-3.383814],[139.1269095,-3.369884899999931],[139.12140990000012,-3.363865199999964],[139.1276405000001,-3.355370899999969],[139.14039530000002,-3.361746799999935],[139.1479471,-3.369109599999945],[139.14545060000012,-3.3778841],[139.14834230000008,-3.3898123],[139.14723230000004,-3.400360499999977],[139.140366,-3.409344399999952],[139.1381967000001,-3.419190199999946],[139.14620890000003,-3.426766599999951],[139.1675166000001,-3.431088399999965],[139.18183260000012,-3.423266799999965],[139.1876493000001,-3.426618099999928],[139.19459560000007,-3.4477774],[139.20358040000008,-3.4469219],[139.21335770000007,-3.439866699999925],[139.2321234000001,-3.432931799999949],[139.25101530000006,-3.416756799999973],[139.2658365000001,-3.416370699999959],[139.27287890000002,-3.420592799999952],[139.27160630000003,-3.427747199999942],[139.25801080000008,-3.427796499999943],[139.25090450000005,-3.433767299999943],[139.2503081000001,-3.445127199999945],[139.25536350000004,-3.4547446],[139.27085380000005,-3.4397123],[139.27929540000002,-3.467598],[139.30678330000012,-3.4708008],[139.31789980000008,-3.450952399999949],[139.32842490000007,-3.445982399999934],[139.33749710000006,-3.455729199999951],[139.33347930000002,-3.465248],[139.33228680000002,-3.474403099999961],[139.33786510000004,-3.4848512],[139.3710132000001,-3.475324299999954],[139.38012670000012,-3.463756099999955],[139.361486,-3.449146299999938],[139.36613940000007,-3.436169899999925],[139.3741176000001,-3.434475599999928],[139.38968050000005,-3.443473799999936],[139.40849930000002,-3.443657099999939],[139.4260233000001,-3.446310399999959],[139.43641460000003,-3.462996],[139.45722610000007,-3.459576299999981],[139.46134690000008,-3.458425499999976],[139.45988450000004,-3.454912599999943],[139.4626005,-3.453010899999981],[139.45936830000005,-3.448509199999933],[139.45607990000008,-3.454356599999926],[139.45383730000003,-3.454863199999977],[139.4531253,-3.4518749],[139.45672810000008,-3.450716099999966],[139.45427340000003,-3.446360099999936],[139.45017380000002,-3.4479973],[139.44804240000008,-3.445858299999941],[139.4493599000001,-3.443813099999943],[139.4518021,-3.445464299999969],[139.45231610000008,-3.443112099999951],[139.44636260000004,-3.441703299999972],[139.4451216000001,-3.438317699999971],[139.44086830000003,-3.437606799999969],[139.44464950000008,-3.433057399999939],[139.44340490000002,-3.428904399999965],[139.4478124000001,-3.426051],[139.44932930000004,-3.421362899999963],[139.45103340000003,-3.424082899999974],[139.45601460000012,-3.422835099999929],[139.45406120000007,-3.420244199999956],[139.4546656000001,-3.4190976],[139.46774370000003,-3.421125199999949],[139.46645580000006,-3.417722899999944],[139.4620007000001,-3.419565399999954],[139.4627848,-3.415890199999978],[139.4665579000001,-3.413622],[139.47374620000005,-3.414598699999942],[139.4761879,-3.411330699999951],[139.47043710000003,-3.406657299999949],[139.47607620000008,-3.407022199999972],[139.4768299000001,-3.405454099999929],[139.4718696000001,-3.404641799999979],[139.4696877,-3.3988186],[139.47218750000002,-3.396677],[139.47508170000003,-3.3992378],[139.4772415000001,-3.398712299999943],[139.47529210000005,-3.392499499999929],[139.47720960000004,-3.391308599999945],[139.47875610000006,-3.386685199999931],[139.48243890000003,-3.387615799999935],[139.48229420000007,-3.379658799999959],[139.48471640000002,-3.378648399999975],[139.48631910000006,-3.3755303],[139.49027920000003,-3.377738299999976],[139.48567480000008,-3.370911199999966],[139.49533410000004,-3.3683751],[139.49577310000006,-3.3666416],[139.490536,-3.367281],[139.49216450000006,-3.362186599999973],[139.4950007000001,-3.362702799999965],[139.49371310000004,-3.360313699999949],[139.496063,-3.358096599999953],[139.4938823000001,-3.352994099999933],[139.4961393000001,-3.350891099999956],[139.49311000000012,-3.348283199999969],[139.49714870000003,-3.346134199999938],[139.4965701000001,-3.3423017],[139.49423950000005,-3.340919299999939],[139.4959285000001,-3.340028199999949],[139.4959318000001,-3.336123699999973],[139.4989164000001,-3.334662899999955],[139.496063,-3.330662699999948],[139.50049080000008,-3.330201099999954],[139.50227330000007,-3.3261338],[139.50148410000008,-3.322559499999954],[139.50519730000008,-3.323764],[139.50421210000002,-3.318894599999965],[139.5082982,-3.319100499999934],[139.50585910000007,-3.314982899999961],[139.5109251,-3.3122771],[139.5079191000001,-3.309962699999971],[139.50702220000005,-3.307219599999939],[139.5126951000001,-3.307103899999959],[139.51222210000003,-3.302452799999969],[139.5101645000001,-3.300432499999943],[139.50559970000006,-3.302932699999928],[139.5039365,-3.301882699999965],[139.5043098000001,-3.299647199999924],[139.50812140000005,-3.297869599999956],[139.5094425000001,-3.293169099999943],[139.50799540000003,-3.291939299999967],[139.5057604000001,-3.296378],[139.50407370000005,-3.290468799999928],[139.4990726000001,-3.290064899999948],[139.50151330000006,-3.286140199999977],[139.49899140000002,-3.287157699999966],[139.49749880000002,-3.285936],[139.4965118,-3.2834093],[139.49949320000007,-3.278886399999976],[139.49687170000004,-3.279470199999935],[139.49615280000012,-3.277694299999951],[139.4970413000001,-3.271871499999975],[139.50067120000006,-3.269644599999936],[139.49597030000007,-3.269063899999935],[139.49525430000006,-3.267658399999959],[139.496277,-3.265237199999945],[139.499115,-3.264873699999953],[139.49914790000003,-3.263622],[139.49551370000006,-3.259940099999938],[139.4962614000001,-3.256630499999972],[139.49327060000007,-3.258160299999929],[139.49209570000005,-3.2568002],[139.49158940000007,-3.254949799999963],[139.49319050000008,-3.253413899999941],[139.4914347,-3.248148199999946],[139.48850990000005,-3.249370299999953],[139.48623980000002,-3.247779499999979],[139.48683070000004,-3.246377499999937],[139.48976920000007,-3.246925699999963],[139.4898611000001,-3.245462099999941],[139.48719270000004,-3.243661399999951],[139.49219930000004,-3.237537699999962],[139.48936930000002,-3.235907499999939],[139.48845430000006,-3.233229599999959],[139.48676410000007,-3.234830199999976],[139.484973,-3.234377599999959],[139.48689950000005,-3.232101399999976],[139.48468350000007,-3.224871699999937],[139.48714010000003,-3.224945699999978],[139.48853370000006,-3.227847899999972],[139.4914086000001,-3.222390099999927],[139.48980490000008,-3.220446],[139.4889644000001,-3.223946699999942],[139.4871985000001,-3.2240468],[139.485663,-3.2181968],[139.48719290000008,-3.217911299999969],[139.48859090000008,-3.220021499999973],[139.49053290000006,-3.217641799999967],[139.48785240000007,-3.212568799999929],[139.49079870000003,-3.210476399999948],[139.48989530000006,-3.207815499999981],[139.49246190000008,-3.2079103],[139.49308650000012,-3.203886299999965],[139.49012830000004,-3.205743199999972],[139.4873795000001,-3.202270299999952],[139.48471050000012,-3.2045903],[139.48382730000003,-3.203046799999925],[139.48552330000007,-3.199503299999947],[139.48237070000005,-3.200008],[139.48050220000005,-3.198759],[139.48457310000003,-3.194541199999946],[139.47980210000003,-3.188639099999932],[139.47560190000002,-3.187770899999975],[139.47595060000003,-3.186440299999958],[139.483269,-3.187247699999944],[139.4813643000001,-3.184302899999977],[139.4824073000001,-3.1824896],[139.4814619000001,-3.179416499999945],[139.48281840000004,-3.178040299999964],[139.48134230000005,-3.176931399999944],[139.48175070000002,-3.174972399999945],[139.47879090000004,-3.176241699999935],[139.47583510000004,-3.175554899999952],[139.47860620000006,-3.173015599999928],[139.4770803,-3.168312899999933],[139.47838550000006,-3.166974599999946],[139.48009600000012,-3.168840599999953],[139.48322940000003,-3.167593099999976],[139.4869338000001,-3.169514899999967],[139.48777670000004,-3.168043699999942],[139.48653400000012,-3.165181299999972],[139.49133890000007,-3.165139299999964],[139.49000260000003,-3.162999699999943],[139.49060450000002,-3.161116899999968],[139.49416040000006,-3.163827699999956],[139.4965644,-3.162348099999974],[139.49212720000003,-3.158645399999955],[139.49520370000005,-3.158047799999963],[139.49728990000006,-3.160425399999951],[139.49936900000012,-3.159838099999945],[139.4996807000001,-3.155765499999973],[139.49700610000002,-3.152928499999973],[139.49834610000005,-3.152209699999958],[139.50008620000006,-3.153873399999952],[139.50103840000008,-3.150752399999931],[139.50733920000005,-3.146692199999961],[139.50228920000006,-3.145735299999956],[139.5031487000001,-3.141289],[139.50678470000003,-3.141822699999977],[139.50825780000002,-3.139737499999967],[139.50693880000006,-3.1364741],[139.509424,-3.1366008],[139.51064310000004,-3.134301099999959],[139.51442970000005,-3.135135199999979],[139.5157786000001,-3.132790899999975],[139.50574740000002,-3.130918699999938],[139.50111760000004,-3.1276347],[139.49697230000004,-3.120097899999962],[139.4926117000001,-3.0960338],[139.48602930000004,-3.0300497],[139.4799041000001,-2.986946499999931],[139.47718180000004,-2.9483806],[139.47355330000005,-2.931366199999957],[139.4644777000001,-2.844025599999952],[139.443153,-2.679326299999957],[139.44269930000007,-2.663673099999926],[139.441112,-2.661631399999976],[139.4392964000001,-2.635769499999981],[139.43725470000004,-2.630098],[139.4347593000001,-2.593120099999965],[139.43317120000006,-2.591305199999965],[139.4322638000001,-2.563174699999934],[139.43067580000002,-2.556822699999941],[139.43135640000003,-2.536178599999971],[139.42681920000007,-2.511224099999936],[139.4227357000001,-2.470616399999926],[139.44088440000007,-2.465625499999931],[139.4474633000001,-2.465625499999931],[139.45494970000004,-2.462903199999971],[139.5202849000001,-2.450426],[139.5372993000001,-2.445435099999941],[139.5452394,-2.445662],[139.592426,-2.434092199999952],[139.59832430000006,-2.434545899999932],[139.60830610000005,-2.431596799999966],[139.6160192000001,-2.431143],[139.69156320000002,-2.414355499999942],[139.74328690000004,-2.404827499999953],[139.7466898,-2.402332],[139.7893392000001,-2.408230299999957],[139.98356020000006,-2.429915799999947],[139.9887252000001,-2.421150399999931],[139.98518060000004,-2.413416899999959],[139.98659840000005,-2.4107101],[139.98472950000007,-2.409807899999976],[139.98324720000005,-2.404072199999973],[139.98485840000012,-2.395758599999965],[139.98414950000006,-2.391827399999954],[139.98659840000005,-2.391505099999961],[139.98917630000005,-2.384802699999966],[139.99284970000008,-2.381516],[139.99400980000007,-2.382740499999954],[139.99400980000007,-2.380227099999956],[139.99568540000007,-2.379969299999971],[139.99626540000008,-2.375780299999974],[139.99368750000008,-2.3728802],[139.998521,-2.373460199999954],[140.00064770000006,-2.375715799999966],[140.0007766000001,-2.371397899999977],[140.00380560000008,-2.369206799999972],[140.00116330000003,-2.367273399999931],[139.99981920000005,-2.3622036]]],[[[138.73228440000003,-1.591567699999928],[138.72830190000002,-1.587407699999972],[138.71699510000008,-1.579967599999975],[138.71163930000012,-1.591007599999955],[138.71122730000002,-1.594627599999967],[138.7092894000001,-1.5965176],[138.70931990000008,-1.605397599999947],[138.715515,-1.6115876],[138.71830740000007,-1.618367499999977],[138.720764,-1.618527599999936],[138.72534170000006,-1.6217376],[138.73580920000006,-1.624327799999946],[138.7479552000001,-1.6246777],[138.7491454000001,-1.622777699999972],[138.747589,-1.622177699999952],[138.74777210000002,-1.620517699999937],[138.75074760000007,-1.6189678],[138.7463378000001,-1.616947799999934],[138.7458037,-1.607037699999978],[138.74282820000008,-1.604067699999973],[138.73983750000002,-1.5967477],[138.73228440000003,-1.591567699999928]]]]},"properties":{"shapeName":"Sarmi","shapeISO":"","shapeID":"22746128B38720100158774","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[102.50973040000008,-1.911871099999928],[102.49698030000008,-1.904537399999924],[102.46499770000008,-1.894542799999954],[102.459495,-1.897340399999962],[102.45971820000005,-1.914959799999963],[102.46187210000005,-1.925879799999962],[102.46582180000007,-1.945172199999945],[102.47015090000008,-1.952456599999948],[102.47482040000006,-1.973933599999953],[102.48313360000009,-1.9775853],[102.48818840000007,-1.983415399999956],[102.48635840000009,-1.997604799999976],[102.49140930000004,-2.005982299999971],[102.49492660000004,-2.008466699999929],[102.48774440000005,-2.011216],[102.49412470000004,-2.018189899999925],[102.499777,-2.021608899999933],[102.50897030000004,-2.033671399999946],[102.51865970000006,-2.039143699999954],[102.52857170000004,-2.047146899999973],[102.55741020000005,-2.0818062],[102.57781530000005,-2.099516299999948],[102.58920260000008,-2.102743199999964],[102.61474730000003,-2.102155799999935],[102.62296110000005,-2.1141219],[102.62264050000005,-2.115529899999956],[102.62432750000005,-2.116333199999929],[102.63075590000005,-2.147823699999947],[102.61485510000006,-2.160447099999942],[102.60755180000007,-2.175968399999931],[102.58899260000004,-2.195465499999955],[102.57464430000005,-2.202320799999939],[102.55743290000004,-2.206508399999962],[102.51685980000008,-2.199784299999976],[102.509602,-2.197213899999952],[102.50090950000003,-2.200166199999956],[102.48926470000004,-2.199832199999946],[102.47392680000007,-2.19875],[102.46099050000004,-2.195757799999967],[102.45021050000008,-2.223855199999946],[102.43694160000007,-2.244466],[102.42406050000005,-2.246986099999958],[102.40379090000005,-2.3136785],[102.39524050000006,-2.3222275],[102.39267460000008,-2.331135],[102.37367310000008,-2.34907],[102.37155210000009,-2.349402699999928],[102.37366020000007,-2.355947599999979],[102.37012330000005,-2.360156099999926],[102.36548780000004,-2.362144],[102.36658270000004,-2.3663614],[102.36171980000006,-2.371898499999929],[102.35222140000008,-2.379423299999928],[102.33501090000004,-2.382939499999964],[102.33028690000003,-2.3816358],[102.32927560000007,-2.383372],[102.32552440000006,-2.384252099999969],[102.30346330000003,-2.387092799999948],[102.30106330000007,-2.386247799999978],[102.30075060000007,-2.382082],[102.29527480000007,-2.372057799999936],[102.29669570000004,-2.367233299999953],[102.29459030000004,-2.361124],[102.29531330000003,-2.352180699999963],[102.29223210000004,-2.350953],[102.27222270000004,-2.356749099999945],[102.267986,-2.361144299999978],[102.26508,-2.362213899999972],[102.26410610000005,-2.365386499999943],[102.25721770000007,-2.364627699999971],[102.22208560000007,-2.397450899999967],[102.21292640000007,-2.3969809],[102.20460070000007,-2.400282299999958],[102.19195520000005,-2.408135399999935],[102.18290080000008,-2.410240599999952],[102.12950460000008,-2.411342099999956],[102.12315970000009,-2.416183199999978],[102.12223110000008,-2.427407499999958],[102.13055880000007,-2.441788499999973],[102.14268560000005,-2.468377699999962],[102.14850620000004,-2.476280399999951],[102.15290890000006,-2.4883273],[102.15279170000008,-2.496014799999955],[102.15646420000007,-2.508642599999973],[102.14075170000007,-2.520323399999938],[102.09391830000004,-2.564899499999967],[102.09561240000005,-2.581150899999955],[102.103736,-2.59652],[102.10372420000004,-2.601698399999975],[102.09761070000008,-2.605826899999954],[102.08555310000008,-2.609383899999955],[102.069311,-2.617185799999959],[102.06351310000008,-2.621952],[102.06311110000007,-2.624341],[102.06937960000005,-2.636686099999963],[102.08320950000007,-2.655041899999958],[102.083359,-2.675647399999946],[102.08484370000008,-2.684732899999972],[102.08792290000008,-2.690077899999949],[102.08736240000007,-2.692386899999974],[102.07757930000008,-2.703820199999939],[102.082441,-2.726138399999968],[102.07849390000007,-2.734713299999953],[102.076309,-2.745183299999951],[102.07707990000006,-2.750003099999958],[102.07589810000007,-2.7584143],[102.072549,-2.7648921],[102.07521160000005,-2.765643699999941],[102.086682,-2.770068],[102.09148030000006,-2.769887799999935],[102.09670240000008,-2.767105499999957],[102.09847030000009,-2.765041799999949],[102.10005440000003,-2.757657699999925],[102.10348910000005,-2.755009499999971],[102.105963,-2.748006399999952],[102.110264,-2.745341199999928],[102.11106720000004,-2.741203599999949],[102.11616850000007,-2.735837199999935],[102.12293070000004,-2.733785499999954],[102.12571150000008,-2.729322299999978],[102.13381520000007,-2.727902899999947],[102.14476250000007,-2.721429399999977],[102.16557820000008,-2.714092599999958],[102.17463630000003,-2.707097399999952],[102.17901440000009,-2.706245399999943],[102.18624990000006,-2.708471599999939],[102.19027280000006,-2.707650599999965],[102.20501540000004,-2.702993599999957],[102.21187990000004,-2.698669499999937],[102.22194690000003,-2.697996599999954],[102.23452860000003,-2.691354599999954],[102.23628010000004,-2.688439499999959],[102.236706,-2.674233199999946],[102.24251820000006,-2.669843399999934],[102.24339660000004,-2.667442],[102.24170790000005,-2.661511599999926],[102.24518560000007,-2.649796699999968],[102.24765940000003,-2.647602099999972],[102.24550830000004,-2.642627499999946],[102.24698390000003,-2.639676099999974],[102.25073230000004,-2.641931399999976],[102.249664,-2.639553799999931],[102.25096810000008,-2.631152799999938],[102.259226,-2.621113499999979],[102.27651380000003,-2.613906199999974],[102.28066650000005,-2.614437099999975],[102.29630760000003,-2.632532399999945],[102.32473510000005,-2.653988],[102.32776790000008,-2.654985799999963],[102.33717750000005,-2.654396299999974],[102.34315940000005,-2.650081599999965],[102.35314810000006,-2.646244799999977],[102.36021840000006,-2.650610799999924],[102.369415,-2.651288099999931],[102.38721960000004,-2.646964],[102.39234920000007,-2.653440199999977],[102.39234460000006,-2.659162299999934],[102.38873180000007,-2.669170299999962],[102.38972940000008,-2.675932199999977],[102.40624970000005,-2.689111399999945],[102.41178850000006,-2.687700699999937],[102.42078120000008,-2.691979699999933],[102.438593,-2.690987599999971],[102.44950210000007,-2.698888099999976],[102.46120390000004,-2.700225599999953],[102.46823670000003,-2.703532099999961],[102.47142280000008,-2.704072599999961],[102.47985240000008,-2.701039899999955],[102.48773460000007,-2.705860599999937],[102.48986070000007,-2.705254899999943],[102.49526190000006,-2.698784199999977],[102.50601510000007,-2.695386799999937],[102.514797,-2.6845306],[102.51885550000009,-2.676519499999927],[102.525612,-2.679254],[102.53785330000005,-2.679465299999947],[102.54797910000008,-2.677411699999936],[102.56512480000004,-2.676722199999972],[102.57228160000005,-2.674078099999974],[102.590528,-2.679634399999941],[102.598583,-2.677141199999937],[102.60827060000008,-2.670503799999949],[102.61647840000006,-2.6606252],[102.62442330000005,-2.638276499999961],[102.64057230000009,-2.611009],[102.64424150000008,-2.609542099999942],[102.64893570000004,-2.611401099999966],[102.666167,-2.609737099999961],[102.66881270000005,-2.606517599999961],[102.67754890000003,-2.603739499999961],[102.68460420000008,-2.592667899999981],[102.692799,-2.589243899999929],[102.69684150000006,-2.584092599999963],[102.70141810000007,-2.583486899999969],[102.70397040000006,-2.5878383],[102.70654210000004,-2.586640699999975],[102.70967070000006,-2.583251699999948],[102.71013490000007,-2.579290399999934],[102.71247290000008,-2.577386899999965],[102.71216880000009,-2.573346099999981],[102.71592530000004,-2.570368599999938],[102.72239920000004,-2.584579699999949],[102.72830720000007,-2.586109499999964],[102.73870030000006,-2.579245],[102.74024410000004,-2.57007],[102.74492170000008,-2.562578499999972],[102.74999750000006,-2.561479399999939],[102.75554760000006,-2.557506299999943],[102.75988140000004,-2.549934599999972],[102.77356220000007,-2.543010699999968],[102.78055720000003,-2.541049],[102.783746,-2.536820299999931],[102.79624280000007,-2.533209899999974],[102.798072,-2.519948799999952],[102.79354570000004,-2.504700299999968],[102.81028650000007,-2.483860499999935],[102.81546950000006,-2.473973],[102.82516920000006,-2.465363099999934],[102.82595050000003,-2.458988699999964],[102.83498050000009,-2.455757499999947],[102.84124910000008,-2.450229],[102.84453910000008,-2.444841599999961],[102.84513390000006,-2.437731],[102.85210620000004,-2.433244299999956],[102.86205850000005,-2.423250899999971],[102.86829190000009,-2.414138699999967],[102.87538310000008,-2.409802899999931],[102.87550640000006,-2.406636299999946],[102.87254540000004,-2.404045399999973],[102.86946740000008,-2.395219699999927],[102.87188970000005,-2.385087699999929],[102.86410020000005,-2.387264],[102.84984,-2.385955199999955],[102.84779860000003,-2.384194799999932],[102.84714140000006,-2.3743866],[102.84218610000005,-2.370491399999935],[102.83960080000008,-2.358818499999927],[102.84112770000007,-2.353255499999932],[102.845039,-2.347583],[102.84047020000008,-2.340051],[102.84064170000005,-2.337853099999961],[102.84431,-2.334937699999955],[102.85192690000008,-2.335522199999957],[102.85863610000007,-2.331827399999952],[102.86079420000004,-2.327412399999957],[102.86438310000005,-2.324608399999931],[102.86667990000007,-2.317966699999943],[102.87430520000004,-2.313445299999955],[102.87694350000004,-2.304507599999965],[102.88541790000005,-2.308008899999948],[102.89199830000007,-2.314241399999958],[102.89737630000008,-2.3150611],[102.90499760000006,-2.311810899999955],[102.90894680000008,-2.3116964],[102.91243760000003,-2.315624599999978],[102.91700220000007,-2.316600899999969],[102.92305030000006,-2.323486399999979],[102.92641170000007,-2.3240325],[102.93475270000005,-2.322015599999929],[102.94402560000003,-2.3266288],[102.951541,-2.326368399999978],[102.95972890000007,-2.329639],[102.96805480000006,-2.329463099999941],[102.98901810000007,-2.340126199999929],[103.00006080000009,-2.340403599999945],[103.00396230000007,-2.336098899999968],[103.01851140000008,-2.336339599999974],[103.02562520000004,-2.340325199999938],[103.03419650000006,-2.339264199999946],[103.03637080000004,-2.337209599999937],[103.03674720000004,-2.334216799999979],[103.03225780000008,-2.323889699999938],[103.03257220000006,-2.321083899999962],[103.04257270000005,-2.312180599999976],[103.05023140000009,-2.313937199999941],[103.05476850000008,-2.312204399999928],[103.05831440000009,-2.318259499999954],[103.06432160000008,-2.323768],[103.06813950000009,-2.330831899999964],[103.07068960000004,-2.332027099999948],[103.07488310000008,-2.331024499999955],[103.07909780000006,-2.332852399999979],[103.08488350000005,-2.331589199999939],[103.08754780000004,-2.333150299999943],[103.08858060000006,-2.339689699999951],[103.09245370000008,-2.344524299999932],[103.103955,-2.345344199999943],[103.11168390000006,-2.344092099999955],[103.11523550000004,-2.346113699999933],[103.11855,-2.352865299999962],[103.12357620000006,-2.357357799999932],[103.13735310000004,-2.3560901],[103.14255860000009,-2.360961299999929],[103.14411070000006,-2.360090199999945],[103.15047690000006,-2.3474301],[103.16966160000004,-2.333168499999942],[103.18497930000007,-2.328237899999976],[103.19081860000006,-2.323203299999932],[103.19738520000004,-2.319544599999972],[103.20093950000006,-2.319640899999968],[103.20458870000004,-2.316803499999935],[103.20987310000004,-2.318093699999963],[103.212498,-2.317100599999947],[103.21190960000007,-2.311695499999928],[103.20766590000005,-2.308645599999977],[103.20488140000003,-2.296484899999939],[103.20474720000004,-2.291837799999939],[103.20661960000007,-2.287052399999936],[103.20624240000006,-2.276572099999953],[103.19495520000004,-2.256129],[103.191503,-2.253060599999969],[103.17978920000007,-2.249561699999958],[103.17956880000008,-2.239141099999927],[103.18290290000004,-2.221825099999933],[103.17876660000007,-2.2083956],[103.18158560000006,-2.192393099999947],[103.18148090000005,-2.178809699999931],[103.18516590000007,-2.166120699999965],[103.18852940000005,-2.160248699999954],[103.19437040000008,-2.152839399999948],[103.20665370000006,-2.1423397],[103.22206090000009,-2.141793799999959],[103.22216760000003,-2.131447499999979],[103.21947690000007,-2.122012],[103.22027860000009,-2.115778],[103.21600280000007,-2.102823499999943],[103.21506270000003,-2.090992],[103.21126010000006,-2.081075699999928],[103.20111240000006,-2.061400099999958],[103.17548040000008,-2.040016099999946],[103.16348040000008,-2.024815],[103.16049740000005,-2.017171299999973],[103.15951140000004,-1.997020899999939],[103.160684,-1.981446099999971],[103.16371270000008,-1.976151499999958],[103.19350910000009,-1.947454599999958],[103.19557180000004,-1.943776799999966],[103.19534980000009,-1.937566699999934],[103.17864260000005,-1.944908399999974],[103.164247,-1.953513299999941],[103.15653470000007,-1.955756899999926],[103.13284520000008,-1.956230799999958],[103.12333070000005,-1.957721699999979],[103.08354190000006,-1.955299299999979],[103.07415880000008,-1.950784499999941],[103.06395120000008,-1.940638699999965],[103.05143590000006,-1.937451899999928],[103.04179150000004,-1.937627299999974],[103.025836,-1.942553699999962],[103.01947530000007,-1.941319],[103.01552820000006,-1.943062699999928],[103.01449130000009,-1.946227499999964],[103.00186580000008,-1.949777399999959],[102.97943390000006,-1.943442499999946],[102.96494660000008,-1.955210299999976],[102.96121430000005,-1.964494299999956],[102.94629720000006,-1.982542399999943],[102.93986140000004,-1.985765599999979],[102.93059860000005,-1.985409199999935],[102.92854380000006,-1.982187099999976],[102.919393,-1.983555199999955],[102.914363,-1.9821692],[102.91184340000007,-1.984810399999958],[102.90965590000008,-2.001334699999973],[102.90475310000005,-2.0049821],[102.88563570000008,-2.004957399999967],[102.877159,-2.0073359],[102.87096020000007,-2.006288899999959],[102.85824590000004,-2.009388899999976],[102.84285820000008,-2.0024079],[102.82229620000004,-2.001445599999954],[102.81140040000008,-1.992548599999964],[102.81533870000004,-1.977692],[102.81953740000006,-1.973895599999935],[102.82058590000008,-1.969111399999974],[102.81808470000004,-1.960412699999949],[102.81764350000009,-1.952002899999968],[102.81662930000005,-1.949615299999948],[102.81459540000009,-1.949044599999979],[102.80170380000004,-1.9543685],[102.79661680000004,-1.955043599999954],[102.77727540000006,-1.947289599999976],[102.76099040000008,-1.950114499999927],[102.75043660000006,-1.954311799999971],[102.74456430000004,-1.950895],[102.73258650000008,-1.949174199999959],[102.720822,-1.957112299999949],[102.71534450000007,-1.959808499999951],[102.71172840000008,-1.959576099999936],[102.70642090000007,-1.956387399999926],[102.70522770000008,-1.951769599999977],[102.69831460000006,-1.947586],[102.69671120000004,-1.945084699999938],[102.67963520000006,-1.939456899999925],[102.67408810000006,-1.934379899999954],[102.65229040000008,-1.924578099999962],[102.64607640000008,-1.923319699999979],[102.64037970000004,-1.924893],[102.59960360000008,-1.910860699999944],[102.59027450000008,-1.910167099999967],[102.56268140000009,-1.917337399999951],[102.55685730000005,-1.9162022],[102.54032960000006,-1.908732399999963],[102.532347,-1.909378799999956],[102.52284720000006,-1.914932],[102.51742220000006,-1.9156058],[102.50973040000008,-1.911871099999928]]]},"properties":{"shapeName":"Sarolangun","shapeISO":"","shapeID":"22746128B563456923033","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[111.08886980000005,-0.495542399999977],[111.08632890000007,-0.4856933],[111.07767550000005,-0.474709699999948],[111.06714110000007,-0.465241099999957],[111.057359,-0.4481974],[111.04682470000006,-0.437971199999936],[111.03478530000007,-0.416382499999941],[111.02801320000009,-0.382295099999965],[111.02720420000009,-0.347321099999931],[111.02891320000003,-0.327566499999932],[111.034002,-0.310218299999974],[111.03663420000004,-0.306302699999947],[111.042814,-0.2999032],[111.05548640000006,-0.293270899999925],[111.07019560000003,-0.280709299999955],[111.07535640000009,-0.274214899999947],[111.07649570000007,-0.2684874],[111.07941840000007,-0.266318399999932],[111.08764660000008,-0.253713199999936],[111.09128870000006,-0.243063199999938],[111.09243220000008,-0.230987599999935],[111.08553050000006,-0.202536499999951],[111.08519990000008,-0.195772799999929],[111.08735780000006,-0.183004699999969],[111.094883,-0.181578199999933],[111.09777040000006,-0.166064],[111.09584390000003,-0.152003699999966],[111.09632550000003,-0.138913],[111.09873340000007,-0.133579699999927],[111.11173650000006,-0.124367699999937],[111.128592,-0.120973799999945],[111.13585860000006,-0.112850399999957],[111.13533690000008,-0.099640799999975],[111.14207680000004,-0.083641099999966],[111.14593030000009,-0.070065599999964],[111.148773,0.001472800000045],[111.13456240000005,0.044752500000072],[111.13017920000004,0.075141300000041],[111.12363310000006,0.085581900000022],[111.14759620000007,0.102404600000057],[111.15293680000008,0.104026900000065],[111.15954540000007,0.102642800000069],[111.16515080000005,0.098696500000074],[111.17844370000006,0.079093100000023],[111.18274230000009,0.076578500000039],[111.20156660000004,0.072041400000046],[111.206518,0.067924800000071],[111.21053870000009,0.062033700000029],[111.21436870000008,0.061716],[111.219057,0.064233600000023],[111.22417350000006,0.073296200000073],[111.23215280000005,0.10907],[111.23847790000008,0.121355100000073],[111.24894210000008,0.126934900000037],[111.27486370000008,0.132393200000024],[111.27485980000006,0.141590700000052],[111.27304850000007,0.149216400000057],[111.26876730000004,0.157007900000053],[111.26580340000004,0.164799400000049],[111.26595770000006,0.170070600000031],[111.264299,0.171833],[111.26422490000004,0.180065600000034],[111.26259290000007,0.183482300000037],[111.26004860000006,0.204177100000038],[111.262088,0.212464300000022],[111.26768550000008,0.216043],[111.26685960000009,0.219162900000072],[111.26314590000004,0.222653100000059],[111.26595560000004,0.232746200000065],[111.27117240000007,0.231091900000024],[111.27254880000004,0.232376600000066],[111.270278,0.235579200000075],[111.27344060000007,0.241103900000041],[111.273103,0.245776500000034],[111.27099160000006,0.248864400000059],[111.26885160000006,0.249044],[111.27058740000007,0.244263700000033],[111.26902980000006,0.241144600000041],[111.26704320000005,0.25072890000007],[111.260976,0.246834500000034],[111.26300570000006,0.25072890000007],[111.25970220000005,0.261189700000045],[111.26274790000008,0.260435900000061],[111.26322350000004,0.261513100000059],[111.25870590000005,0.266300700000045],[111.26108370000009,0.268694400000072],[111.25799260000008,0.269053500000041],[111.25465540000005,0.272370400000057],[111.25483890000004,0.274678600000072],[111.25906280000004,0.278389100000027],[111.25612350000006,0.289360400000021],[111.25918210000009,0.294906],[111.25668540000004,0.296461900000054],[111.25264330000005,0.296462],[111.24895770000006,0.293948700000044],[111.24731440000005,0.297619],[111.24410280000006,0.297710700000039],[111.24045270000005,0.300923],[111.23718790000004,0.301608900000076],[111.23671250000007,0.305678300000068],[111.23171920000004,0.306276900000057],[111.23112480000009,0.309747800000025],[111.23576180000003,0.324708700000031],[111.23492960000004,0.325666200000057],[111.22993620000005,0.323392300000023],[111.23171970000004,0.330932500000074],[111.22767750000008,0.327940400000045],[111.22767760000005,0.331890100000066],[111.22327870000004,0.332728100000054],[111.22339760000006,0.334284],[111.22648880000008,0.335959500000058],[111.22149560000008,0.340986500000042],[111.22270950000006,0.343708200000037],[111.21719070000006,0.357963],[111.22028150000006,0.362949900000046],[111.23019970000007,0.366422100000023],[111.253004,0.363786100000027],[111.259222,0.365194300000041],[111.26422680000007,0.369457900000043],[111.26738540000008,0.375211800000045],[111.26857560000008,0.383269400000074],[111.26785840000008,0.391940300000044],[111.26468460000007,0.404831],[111.25800890000005,0.422210800000073],[111.25803180000008,0.427599600000065],[111.26000020000004,0.433224300000063],[111.26691240000008,0.442824100000053],[111.26785840000008,0.455372800000021],[111.27075760000008,0.466011800000047],[111.28540960000004,0.490831100000037],[111.29174610000007,0.506354200000033],[111.29564880000004,0.524564200000043],[111.29126680000007,0.546249],[111.28032340000004,0.564702600000032],[111.27354510000004,0.582743700000037],[111.26964030000005,0.589051400000073],[111.26243150000005,0.594157700000039],[111.25777570000008,0.595509400000026],[111.23629940000006,0.589502],[111.23014190000004,0.589051400000073],[111.22019760000006,0.5927],[111.20770060000007,0.600087900000062],[111.19334210000005,0.612767600000041],[111.16648660000004,0.649397800000031],[111.15594280000005,0.661529400000063],[111.137327,0.678212600000052],[111.12293040000009,0.688720600000067],[111.12103060000004,0.693741100000068],[111.11989530000005,0.705912800000021],[111.10542470000007,0.71681970000003],[111.10027710000008,0.727914700000042],[111.06013350000006,0.740286800000035],[111.05352540000007,0.739986400000021],[111.05382580000008,0.737733700000035],[111.05007120000005,0.728872800000033],[111.04025730000006,0.712199],[111.02494570000005,0.696856500000024],[111.01027240000008,0.688022700000033],[111.00816980000008,0.685169200000075],[111.00726870000005,0.681865200000061],[111.00922110000005,0.674205800000038],[111.012485,0.668695],[111.01327610000004,0.661890700000072],[111.00952150000006,0.640714800000069],[111.01083780000005,0.618380500000058],[111.00983690000004,0.605015800000047],[111.00091890000004,0.58043280000004],[111.00191970000009,0.562857400000041],[110.99628050000007,0.551844800000026],[110.97440720000009,0.52519060000003],[110.96251390000003,0.502094900000031],[110.95650390000009,0.49726140000007],[110.95149090000007,0.481506400000058],[110.94252640000008,0.461829800000032],[110.94275630000004,0.442876100000035],[110.93977,0.431781200000046],[110.94274750000005,0.414245100000073],[110.94638,0.405405200000075],[110.94591140000006,0.400690500000053],[110.94790340000009,0.398215300000061],[110.95130160000008,0.39727240000002],[110.95329360000005,0.390907600000048],[110.960793,0.385367900000062],[110.96360860000004,0.385131800000067],[110.96664750000008,0.380005400000073],[110.97333490000005,0.359994400000062],[110.97195660000006,0.347512700000038],[110.96805150000006,0.334106400000053],[110.95426850000007,0.320468900000037],[110.94624110000007,0.309187500000064],[110.94467630000008,0.294106100000022],[110.93514930000003,0.257468],[110.921826,0.229268500000046],[110.91906940000007,0.226957],[110.91516430000007,0.226263600000038],[110.90298930000006,0.227650400000073],[110.89609790000009,0.223489700000073],[110.88825840000004,0.214788300000066],[110.88608020000004,0.205973300000039],[110.88892470000008,0.195472500000051],[110.88894770000007,0.186357800000053],[110.88247040000005,0.160284300000058],[110.87731310000004,0.15301560000006],[110.87318750000009,0.123940700000048],[110.86803030000004,0.114595200000053],[110.85565310000004,0.100577],[110.84843340000003,0.093308200000024],[110.84010350000005,0.090119100000038],[110.83556270000008,0.093539100000044],[110.81190230000004,0.090996400000051],[110.76894610000005,0.077127700000062],[110.754704,0.068806500000051],[110.74965040000006,0.060947700000042],[110.75010980000008,0.045230100000026],[110.75516350000004,0.034135400000025],[110.75631210000006,0.02835680000004],[110.75378530000006,0.013101500000062],[110.75033220000006,0],[110.74042320000007,-0.013603399999965],[110.730109,-0.022722899999962],[110.72577860000007,-0.032988899999964],[110.71896420000007,-0.0392657],[110.71432690000006,-0.069608],[110.71415640000004,-0.078417499999944],[110.71558230000005,-0.092088299999944],[110.72014240000004,-0.1068974],[110.73843760000005,-0.127957799999933],[110.74071810000004,-0.1406145],[110.74544870000005,-0.147969499999931],[110.74590520000004,-0.156329099999937],[110.74995160000009,-0.164360399999964],[110.71627170000005,-0.169516099999953],[110.70145470000006,-0.168739799999969],[110.686865,-0.162147199999936],[110.66919790000009,-0.156618899999955],[110.65073280000007,-0.145610499999975],[110.64594550000004,-0.144072],[110.64195650000005,-0.146319499999947],[110.63014640000006,-0.204067699999939],[110.60990470000007,-0.224431399999958],[110.60532570000004,-0.237746699999946],[110.58395970000004,-0.248500799999931],[110.57073340000005,-0.250548899999956],[110.56513750000005,-0.253109299999949],[110.56005030000006,-0.258742599999948],[110.56106720000008,-0.273082199999976],[110.56666260000009,-0.277691599999969],[110.56971480000004,-0.282300899999939],[110.56971470000008,-0.2858858],[110.56157470000005,-0.30381],[110.56055690000005,-0.311491799999942],[110.55596940000004,-0.320559399999979],[110.555466,-0.324445099999934],[110.55477650000006,-0.332152599999972],[110.55619140000005,-0.3426702],[110.56080370000006,-0.3507273],[110.56178580000005,-0.365678399999979],[110.56629710000004,-0.379291099999932],[110.59323930000005,-0.404761599999972],[110.60415910000006,-0.422943099999941],[110.61679970000006,-0.459417599999938],[110.61321790000005,-0.467857599999945],[110.61567720000005,-0.487500299999965],[110.61373940000004,-0.507212899999956],[110.62183720000007,-0.5302431],[110.63013590000008,-0.542318199999954],[110.63166930000006,-0.546766799999943],[110.629853,-0.567173299999979],[110.63693240000003,-0.619130199999972],[110.64913870000004,-0.616388799999925],[110.67011580000008,-0.6195892],[110.67816360000006,-0.621614499999964],[110.698279,-0.632818],[110.70321460000008,-0.6320132],[110.71535740000007,-0.623123299999975],[110.72032260000009,-0.622348199999976],[110.728144,-0.6226059],[110.73194220000005,-0.629404199999954],[110.73618440000007,-0.625540899999976],[110.748858,-0.622146699999973],[110.76512520000006,-0.609414799999968],[110.77442740000004,-0.608895],[110.77546110000009,-0.606814099999951],[110.78269610000007,-0.606814399999962],[110.80388460000006,-0.601092499999936],[110.80905270000005,-0.595890299999951],[110.81267040000006,-0.589647499999955],[110.84367820000006,-0.567798299999936],[110.84677930000004,-0.555312499999957],[110.84626280000003,-0.541266],[110.85039750000004,-0.527219499999944],[110.85991950000005,-0.515987199999927],[110.87210280000005,-0.50589],[110.86693530000008,-0.4903578],[110.88143720000005,-0.477983299999948],[110.89959740000006,-0.459164199999975],[110.90724460000007,-0.458028099999979],[110.92142440000003,-0.4622097],[110.92578020000008,-0.4677645],[110.93565440000003,-0.470103499999937],[110.94698120000004,-0.481505899999945],[110.97180170000007,-0.484997],[111.01782730000008,-0.503618199999949],[111.02960540000004,-0.501221399999963],[111.05088490000009,-0.502856599999973],[111.06538920000008,-0.500698799999952],[111.06885680000005,-0.501931899999931],[111.084191,-0.499125399999969],[111.08848570000004,-0.4972374],[111.08886980000005,-0.495542399999977]]]},"properties":{"shapeName":"Sekadau","shapeISO":"","shapeID":"22746128B72791351146728","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[102.999669,-4.1581752],[102.99832160000005,-4.151438799999937],[102.99648820000004,-4.149125799999979],[102.98661090000007,-4.145869],[102.981118,-4.136160099999927],[102.97048120000005,-4.124046499999963],[102.95898590000007,-4.120066],[102.952682,-4.112428099999931],[102.94112130000008,-4.110698599999978],[102.919639,-4.0965931],[102.91778170000003,-4.092832199999975],[102.91872020000005,-4.085448399999962],[102.92227050000008,-4.079789399999925],[102.92203840000008,-4.0763025],[102.91417410000008,-4.065585899999974],[102.91395070000004,-4.063046299999939],[102.91603550000008,-4.0568195],[102.927084,-4.050846599999943],[102.93054070000005,-4.047393099999965],[102.94639360000008,-4.0539434],[102.95672330000008,-4.056000399999959],[102.96023280000009,-4.053114299999947],[102.96271940000008,-4.048167399999954],[102.967785,-4.044717699999978],[102.98101110000005,-4.041572],[102.98346170000008,-4.037355699999978],[102.98458950000008,-4.031139699999926],[102.997449,-4.019094499999937],[102.983369,-4.018015],[102.96278150000006,-4.020659599999931],[102.96111030000009,-4.019724599999961],[102.95583060000007,-4.015041599999961],[102.95189,-4.007648199999949],[102.93994640000005,-4.000946899999974],[102.93511240000004,-3.992733599999951],[102.934181,-3.985507899999959],[102.92097380000007,-3.980170899999962],[102.91653010000005,-3.973701099999971],[102.91174970000009,-3.971076099999948],[102.89877410000008,-3.9732374],[102.88680280000005,-3.989238599999965],[102.86858160000008,-3.986381799999947],[102.86381660000006,-3.991934699999945],[102.86003230000006,-3.992655299999967],[102.85213950000008,-3.982313899999951],[102.84503040000004,-3.976942],[102.82625230000008,-3.978163499999937],[102.82139030000008,-3.980936699999972],[102.81641910000008,-3.981546499999979],[102.815291,-3.979122299999972],[102.81771980000008,-3.972292599999946],[102.81679240000005,-3.966786799999966],[102.80642940000007,-3.959255399999961],[102.791748,-3.953281799999957],[102.78296780000005,-3.9448748],[102.78434360000006,-3.944835299999966],[102.781787,-3.941206699999952],[102.78037190000003,-3.934293199999956],[102.77479730000005,-3.9285202],[102.77740640000007,-3.917514799999935],[102.775691,-3.915782799999931],[102.764082,-3.915607799999975],[102.75492060000005,-3.911264699999947],[102.74866410000004,-3.901782799999978],[102.74460810000005,-3.891404199999954],[102.73426670000003,-3.890192499999955],[102.73190950000009,-3.887379099999976],[102.73110490000005,-3.882203699999934],[102.72756990000005,-3.87894],[102.71623840000007,-3.874694],[102.71216850000008,-3.869670099999951],[102.70687780000009,-3.869246],[102.70351950000008,-3.862454199999945],[102.69994080000004,-3.861320199999966],[102.68995860000007,-3.861634799999933],[102.68588740000007,-3.857180599999936],[102.68645420000007,-3.84729],[102.6854,-3.844838299999935],[102.67902060000006,-3.836566799999957],[102.67494150000005,-3.834684399999958],[102.66928820000004,-3.824462299999936],[102.65911560000006,-3.817005799999947],[102.65164440000007,-3.811744899999951],[102.63973260000006,-3.812965299999973],[102.63247970000003,-3.810894699999949],[102.62440840000005,-3.803288899999927],[102.61861490000007,-3.801097399999946],[102.61428480000006,-3.800461],[102.61126550000006,-3.801043199999981],[102.60939620000005,-3.803412899999955],[102.60679820000007,-3.810170699999958],[102.58557560000008,-3.804929299999969],[102.57670860000007,-3.805906599999958],[102.573538,-3.802890799999943],[102.56347940000006,-3.8067782],[102.56126840000007,-3.809126099999958],[102.55922570000007,-3.817581399999938],[102.55603650000006,-3.8211851],[102.55416780000007,-3.833673199999964],[102.55219020000004,-3.8354856],[102.53290060000006,-3.829556299999979],[102.5107,-3.838497],[102.49796460000005,-3.83886],[102.49542060000005,-3.836907199999928],[102.49164330000008,-3.837390399999947],[102.47251930000004,-3.846395399999949],[102.45995590000007,-3.847923099999946],[102.438009,-3.846963099999925],[102.42969280000005,-3.851828299999966],[102.4273,-3.854982],[102.4139,-3.860452],[102.40597660000009,-3.8610348],[102.39811910000009,-3.862625499999979],[102.39449960000007,-3.867259099999956],[102.38788170000004,-3.871324499999957],[102.38518630000004,-3.876697599999943],[102.38231370000005,-3.877457499999934],[102.37751330000003,-3.882824],[102.37062470000006,-3.882802499999968],[102.36530550000003,-3.879527899999971],[102.36317160000004,-3.879704099999969],[102.35995330000009,-3.886635099999978],[102.35318940000008,-3.883438699999942],[102.34715890000007,-3.886713399999962],[102.34435260000004,-3.891207399999928],[102.34781690000005,-3.900575699999933],[102.33481950000004,-3.909129299999961],[102.31845320000008,-3.910512199999971],[102.31557040000007,-3.911948299999949],[102.313367,-3.915491],[102.314289,-3.919706],[102.316193,-3.921493],[102.313606,-3.925449],[102.315437,-3.930397],[102.310707,-3.929818],[102.31024310000004,-3.936954299999968],[102.30386450000003,-3.94173],[102.30329210000008,-3.944762699999956],[102.29941730000007,-3.941143299999965],[102.28753290000009,-3.939572899999973],[102.27703870000005,-3.933144],[102.26914210000007,-3.923728199999971],[102.27875360000007,-3.939979499999936],[102.27675420000008,-3.954987799999969],[102.28068440000004,-3.964244699999938],[102.28501560000007,-3.966202],[102.29715970000007,-3.980299],[102.33212430000003,-4.009813099999974],[102.34501810000006,-4.019150799999977],[102.34711890000005,-4.017579199999943],[102.34886030000007,-4.019163399999968],[102.34693580000004,-4.020209399999942],[102.34739980000006,-4.021306599999946],[102.39833660000005,-4.058612099999948],[102.39938850000004,-4.057387699999936],[102.40060840000007,-4.058268599999963],[102.401297,-4.061428],[102.40443310000006,-4.063893699999937],[102.40827070000006,-4.065484699999956],[102.427437,-4.080455299999926],[102.46989090000005,-4.107454799999971],[102.509045,-4.137421699999948],[102.53070020000007,-4.151864699999976],[102.61982440000008,-4.220372],[102.65583280000004,-4.245377099999928],[102.67779220000006,-4.263657199999955],[102.69136660000004,-4.272131899999977],[102.70819070000005,-4.285189199999934],[102.72192340000004,-4.299197],[102.72542380000004,-4.305312499999957],[102.74076610000009,-4.320530899999937],[102.74639860000008,-4.324813],[102.76697570000005,-4.335415799999964],[102.79475510000003,-4.353717499999959],[102.80011260000003,-4.359912299999962],[102.83687440000006,-4.344304],[102.84263770000007,-4.3447728],[102.84609990000007,-4.340165099999979],[102.85022090000007,-4.325434199999961],[102.855342,-4.317876799999965],[102.85767660000005,-4.310494099999971],[102.86178840000008,-4.283166399999971],[102.87500550000004,-4.273297199999945],[102.88531940000007,-4.263211799999965],[102.88503020000007,-4.259713599999941],[102.88249350000007,-4.255884199999969],[102.88254080000007,-4.246156599999949],[102.88081760000006,-4.242246499999965],[102.88073780000008,-4.2371027],[102.88758070000006,-4.222534],[102.89124660000004,-4.203428499999973],[102.893145,-4.201611399999933],[102.89876760000004,-4.200408],[102.90057920000004,-4.197946099999967],[102.89981420000004,-4.182019899999943],[102.901426,-4.179046799999981],[102.90499680000005,-4.176165199999957],[102.909439,-4.1752629],[102.91708540000008,-4.181780799999956],[102.92236480000008,-4.181794899999943],[102.93495790000009,-4.185419],[102.94655220000004,-4.1803198],[102.95172080000003,-4.17183],[102.95687410000005,-4.168259899999953],[102.96613130000009,-4.166793899999959],[102.98786490000003,-4.169697699999972],[102.999669,-4.1581752]]]},"properties":{"shapeName":"Seluma","shapeISO":"","shapeID":"22746128B77656234597079","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[110.57141710000008,-7.445131899999978],[110.57226240000006,-7.442265599999928],[110.56497810000008,-7.442579899999942],[110.57141710000008,-7.445131899999978]]],[[[110.62759910000005,-7.219434899999953],[110.62699890000005,-7.217885899999942],[110.62410730000005,-7.2170553],[110.616745,-7.217927399999951],[110.61322960000007,-7.2151777],[110.6116,-7.21226],[110.61296,-7.19941],[110.60641,-7.19489],[110.60084,-7.19515],[110.60082,-7.19993],[110.59339,-7.19944],[110.58971320000006,-7.197527299999933],[110.58900080000006,-7.200796299999979],[110.58532490000005,-7.2006503],[110.58406210000004,-7.202777],[110.57994840000003,-7.200217699999939],[110.578949,-7.196869299999946],[110.57632320000005,-7.198882399999945],[110.57656640000005,-7.195195299999966],[110.57042690000009,-7.1889562],[110.56907650000005,-7.189295699999946],[110.57012180000004,-7.192227799999955],[110.56874850000008,-7.194382599999926],[110.56613920000007,-7.190238499999964],[110.563902,-7.191341399999942],[110.56227050000007,-7.188046799999938],[110.56166840000009,-7.191841599999975],[110.55965420000007,-7.192671699999948],[110.55550770000008,-7.187167699999975],[110.55420940000005,-7.1891086],[110.55662540000009,-7.190456299999937],[110.55425260000004,-7.190207899999962],[110.55390930000004,-7.193763199999978],[110.55148310000004,-7.192739499999959],[110.55089570000007,-7.194138499999951],[110.54600530000005,-7.194927699999937],[110.546196,-7.192299299999945],[110.54404450000004,-7.188552799999968],[110.54597980000005,-7.185079],[110.54389490000005,-7.185389899999961],[110.545166,-7.182937099999947],[110.54160290000004,-7.181665499999951],[110.54196620000005,-7.177212299999951],[110.54784710000007,-7.167845599999964],[110.55161070000008,-7.1670628],[110.553755,-7.168241899999941],[110.55388920000007,-7.160103899999967],[110.558182,-7.151749499999937],[110.55744510000005,-7.146703599999967],[110.56122540000007,-7.142120199999965],[110.55827370000009,-7.139654],[110.55131530000006,-7.137258499999973],[110.54885020000006,-7.138141399999938],[110.54631040000004,-7.134951399999977],[110.54741560000008,-7.132219899999939],[110.54238580000003,-7.128355299999953],[110.53844450000008,-7.127697],[110.53639220000008,-7.1299639],[110.53526310000007,-7.128314499999931],[110.534935,-7.130744899999968],[110.53163910000006,-7.131872199999975],[110.52716060000006,-7.129183699999942],[110.52091980000006,-7.133235399999933],[110.51634210000009,-7.130700599999955],[110.51339720000004,-7.128255799999977],[110.51335150000006,-7.1234922],[110.51020810000006,-7.1219344],[110.50536350000004,-7.123053499999969],[110.49978640000006,-7.118557899999928],[110.49955350000005,-7.112034799999947],[110.501648,-7.113271699999927],[110.50289920000006,-7.111363399999959],[110.49971770000008,-7.109886599999925],[110.49685670000008,-7.110956199999976],[110.49575810000005,-7.109660599999927],[110.49864960000008,-7.108812299999954],[110.502594,-7.102767],[110.50241090000009,-7.101624499999957],[110.49978640000006,-7.101811899999973],[110.49966430000006,-7.096715399999937],[110.49691770000004,-7.094221599999969],[110.48955540000009,-7.091556499999967],[110.48223110000004,-7.090649599999949],[110.47817230000004,-7.087792399999955],[110.47758480000005,-7.085433899999941],[110.47656250000006,-7.083539499999972],[110.46782690000003,-7.079352799999981],[110.45429940000008,-7.078817799999968],[110.45374540000006,-7.086265099999935],[110.45192130000004,-7.090073299999972],[110.448333,-7.089076099999943],[110.44427170000006,-7.091242099999931],[110.429184,-7.091765799999962],[110.42244720000008,-7.096894299999974],[110.42129520000009,-7.104675699999973],[110.41915890000007,-7.105044799999973],[110.41619120000007,-7.108368799999937],[110.40457940000005,-7.110080899999957],[110.40292820000008,-7.1138217],[110.40258750000004,-7.109628599999951],[110.39702460000007,-7.113503099999946],[110.39724770000004,-7.114579699999979],[110.38963360000008,-7.111844699999949],[110.38423160000008,-7.114063699999974],[110.38171190000008,-7.110687799999937],[110.37737120000008,-7.110465599999941],[110.37641040000005,-7.107303199999933],[110.37958170000007,-7.101332899999932],[110.37790850000005,-7.098423899999943],[110.37599060000008,-7.098099799999943],[110.37641680000007,-7.0944233],[110.37303680000008,-7.097979299999963],[110.37370610000005,-7.1048165],[110.37160550000004,-7.107309499999928],[110.36988590000004,-7.1067932],[110.37004390000004,-7.108690099999933],[110.36857460000004,-7.106537899999978],[110.36488090000006,-7.1064059],[110.36242810000005,-7.104434],[110.35612470000007,-7.106565699999976],[110.35502510000003,-7.107831],[110.35348540000007,-7.106881699999974],[110.35397120000005,-7.110623499999974],[110.35087390000007,-7.112021899999945],[110.34939,-7.110949699999935],[110.34887730000008,-7.112319299999967],[110.34993690000005,-7.116266],[110.34855220000009,-7.119342599999925],[110.35261330000009,-7.122856699999943],[110.35096370000008,-7.132446899999934],[110.35295220000006,-7.136801799999944],[110.35257850000005,-7.144323799999938],[110.34881250000007,-7.151427599999977],[110.34828720000007,-7.153511599999945],[110.35115210000004,-7.155127899999968],[110.35030920000008,-7.157803099999967],[110.35282120000005,-7.158193199999971],[110.369433,-7.148049799999967],[110.371795,-7.148195],[110.37058710000008,-7.151247099999978],[110.37203040000009,-7.152628],[110.37759750000004,-7.149780899999939],[110.37726220000008,-7.152246299999945],[110.37924040000007,-7.151415],[110.38060820000004,-7.154601599999978],[110.38311140000008,-7.154601599999978],[110.38386420000006,-7.157328499999949],[110.38658580000003,-7.156561199999942],[110.39061620000007,-7.163446199999953],[110.395203,-7.164273299999934],[110.39847580000009,-7.1631823],[110.39841830000006,-7.166760099999976],[110.39025930000008,-7.1677582],[110.38865650000008,-7.169783399999972],[110.380636,-7.1731287],[110.37386180000004,-7.174613],[110.367,-7.173131],[110.362836,-7.174671699999976],[110.35754910000009,-7.1800726],[110.36100890000006,-7.182832899999937],[110.36320620000004,-7.187295],[110.35351,-7.18637],[110.34857060000007,-7.1834402],[110.340376,-7.2002732],[110.34071120000004,-7.194001299999968],[110.33253920000004,-7.193312799999944],[110.32216470000009,-7.196848199999977],[110.32007260000006,-7.194940299999928],[110.29691630000008,-7.195216199999948],[110.29162340000005,-7.193445299999951],[110.284322,-7.187524699999926],[110.285614,-7.193460899999934],[110.28144070000008,-7.193679799999927],[110.28062440000008,-7.195766899999967],[110.27545180000004,-7.195898199999931],[110.27596310000007,-7.199657799999954],[110.27249820000009,-7.198885099999927],[110.27252240000007,-7.199944099999925],[110.26968950000008,-7.196536299999934],[110.25999320000005,-7.199276599999962],[110.25862930000005,-7.1985153],[110.251734,-7.197381599999972],[110.25231660000009,-7.203900199999964],[110.25463250000007,-7.211704299999951],[110.25843210000005,-7.214091399999973],[110.25765220000005,-7.217167399999937],[110.25999170000006,-7.216543499999943],[110.26545980000009,-7.218521399999929],[110.26656150000008,-7.217670599999963],[110.26401410000005,-7.224468799999954],[110.26713150000006,-7.2303334],[110.266696,-7.232304699999929],[110.27162450000009,-7.234804399999973],[110.27245280000005,-7.233765199999937],[110.27355190000009,-7.235425899999939],[110.27353670000008,-7.238886799999932],[110.27050780000008,-7.245968799999957],[110.27108770000007,-7.252026],[110.277832,-7.251750399999935],[110.28308870000006,-7.253715499999942],[110.296524,-7.269326199999966],[110.30541270000003,-7.275305899999978],[110.30925150000007,-7.275617799999964],[110.31163,-7.27978],[110.310409,-7.280850799999939],[110.31435390000007,-7.282029099999932],[110.32177730000006,-7.287512299999946],[110.32371520000004,-7.292522399999939],[110.32715610000008,-7.29604],[110.32821270000005,-7.301510299999961],[110.32562690000009,-7.303716899999927],[110.31753540000005,-7.3047804],[110.31347660000006,-7.308788799999945],[110.31808470000004,-7.312251099999969],[110.32515720000004,-7.308985199999938],[110.32756040000004,-7.311532899999975],[110.33000180000005,-7.311940599999957],[110.32811740000005,-7.313995299999931],[110.32801820000009,-7.320250499999929],[110.33220670000009,-7.320459799999981],[110.34320830000007,-7.325928699999963],[110.35514070000005,-7.326165199999934],[110.36261750000006,-7.3311267],[110.36822510000007,-7.330786699999976],[110.37158210000007,-7.333382599999936],[110.37914280000007,-7.334552299999928],[110.38035550000006,-7.337678499999981],[110.37857510000003,-7.336652499999957],[110.37759760000006,-7.338373399999966],[110.376774,-7.345368699999938],[110.37929540000005,-7.346591699999976],[110.38153840000007,-7.354054899999937],[110.38508610000008,-7.352521899999942],[110.39070890000005,-7.353017799999975],[110.39747620000009,-7.357504799999958],[110.40361780000006,-7.365453699999932],[110.40420530000006,-7.374957099999961],[110.40664670000007,-7.376963099999955],[110.40518950000006,-7.378689699999939],[110.40618130000007,-7.384057499999926],[110.40527340000006,-7.389591199999927],[110.41323090000009,-7.407930299999975],[110.41434480000004,-7.416642599999932],[110.42419430000007,-7.429689399999972],[110.42491910000007,-7.434871599999951],[110.43196110000008,-7.445827],[110.43929290000005,-7.453609399999948],[110.44270090000003,-7.449649299999976],[110.44297030000007,-7.444252],[110.447319,-7.436971599999936],[110.44840240000008,-7.431370199999947],[110.45647430000008,-7.422580699999969],[110.45871750000003,-7.414044099999956],[110.463885,-7.409109499999943],[110.47560880000009,-7.404447499999947],[110.47731520000008,-7.405499199999952],[110.48352210000007,-7.402409699999964],[110.48359760000005,-7.407386899999949],[110.49756860000008,-7.410822399999972],[110.5042,-7.411487899999941],[110.50629770000006,-7.408273299999962],[110.50894090000008,-7.407241499999941],[110.51125350000007,-7.4095],[110.50918340000004,-7.409805799999958],[110.50811560000005,-7.412044799999933],[110.51129150000008,-7.414896899999974],[110.51727890000006,-7.416361],[110.51556860000005,-7.419562099999951],[110.51235120000007,-7.421458499999972],[110.51459020000004,-7.4274033],[110.51345950000007,-7.428436399999953],[110.51758940000008,-7.438728499999968],[110.53075410000008,-7.433299499999976],[110.53769680000005,-7.4347567],[110.544545,-7.433067599999958],[110.54596050000004,-7.4349792],[110.54783020000008,-7.434724699999947],[110.547482,-7.438861799999927],[110.55425720000005,-7.442158399999926],[110.55404110000006,-7.444626899999946],[110.551008,-7.444554099999948],[110.55099840000008,-7.448236799999961],[110.55534980000004,-7.4517102],[110.56049250000007,-7.451231499999949],[110.55815460000008,-7.4417394],[110.55958080000005,-7.436421899999971],[110.55884720000006,-7.431430399999954],[110.56232930000004,-7.430809299999964],[110.56462130000006,-7.4258618],[110.56620060000006,-7.426724599999943],[110.56720040000005,-7.424909599999978],[110.56980940000005,-7.425171599999942],[110.56738590000003,-7.4402625],[110.57143630000007,-7.440421399999934],[110.57419690000006,-7.436173399999973],[110.57290470000004,-7.435196699999949],[110.57379940000004,-7.432517399999938],[110.57275290000007,-7.430749599999956],[110.57576290000009,-7.431692399999974],[110.57322670000008,-7.422477399999934],[110.57394650000003,-7.423528599999941],[110.57685980000008,-7.423011199999962],[110.57975130000005,-7.4252814],[110.58258640000008,-7.429673699999967],[110.58386810000007,-7.435715099999925],[110.58558950000008,-7.437006699999927],[110.58596580000005,-7.4419137],[110.58945680000005,-7.442423699999949],[110.58910940000004,-7.4459223],[110.59319120000004,-7.444961099999944],[110.599778,-7.447846099999936],[110.59748170000006,-7.454072699999926],[110.59379380000007,-7.450605199999927],[110.58441630000004,-7.448809899999958],[110.58605860000006,-7.445968],[110.58282380000009,-7.446790499999963],[110.58314640000009,-7.445045199999981],[110.580407,-7.445115],[110.58063510000005,-7.448847699999931],[110.57871640000008,-7.450032599999929],[110.58551520000009,-7.451348499999938],[110.58379420000006,-7.451964199999964],[110.58597370000007,-7.452380099999971],[110.58566730000007,-7.455154599999958],[110.587524,-7.456358299999977],[110.58635490000006,-7.460085099999958],[110.58926460000004,-7.460963499999934],[110.58913510000008,-7.464817],[110.57736470000009,-7.462189],[110.57875190000004,-7.463036899999963],[110.57880950000003,-7.465528399999926],[110.58214180000004,-7.466337],[110.58640350000007,-7.472023799999931],[110.58995040000008,-7.472604399999966],[110.59075070000006,-7.476008599999943],[110.59396220000008,-7.476197399999933],[110.59893240000008,-7.480170899999962],[110.59865930000007,-7.481198799999959],[110.59610660000004,-7.480565399999932],[110.596139,-7.482943099999943],[110.60178640000004,-7.4829848],[110.60206140000008,-7.490402499999959],[110.60388190000003,-7.488738499999954],[110.60465650000003,-7.489775399999928],[110.60600170000004,-7.4877506],[110.61500720000004,-7.489645699999926],[110.61838620000009,-7.488186699999972],[110.62179620000006,-7.4914605],[110.62793850000008,-7.491878899999961],[110.63338980000009,-7.490104799999926],[110.63915110000005,-7.495311399999935],[110.63939780000004,-7.494065499999977],[110.64393490000003,-7.493590099999949],[110.64736880000004,-7.491175299999952],[110.64878950000008,-7.492947099999981],[110.65670120000004,-7.495117499999935],[110.65732570000006,-7.496489],[110.66076650000008,-7.496318799999926],[110.65832520000004,-7.491913799999963],[110.658165,-7.487848699999972],[110.65472410000007,-7.486768199999972],[110.65415190000004,-7.484476099999938],[110.65543360000004,-7.4805083],[110.66148350000009,-7.474662299999977],[110.65077970000004,-7.471797899999956],[110.65013890000006,-7.470604899999955],[110.640686,-7.470036],[110.63922880000007,-7.472426899999959],[110.635437,-7.470669199999975],[110.63394240000008,-7.467248299999937],[110.62922670000006,-7.464358799999957],[110.63219450000008,-7.457651099999964],[110.63751220000006,-7.455549699999949],[110.639061,-7.453470699999968],[110.64524840000007,-7.451750199999935],[110.648809,-7.447945399999981],[110.64440920000004,-7.446449299999927],[110.64038850000009,-7.448673699999972],[110.63773350000008,-7.452123599999936],[110.63099670000008,-7.451379699999961],[110.62354280000005,-7.455359],[110.62129970000007,-7.454279399999962],[110.62184140000005,-7.448860099999933],[110.61878560000008,-7.446454899999935],[110.62222370000006,-7.444314199999951],[110.62312380000009,-7.445838499999979],[110.625944,-7.441443699999979],[110.63141680000007,-7.4390912],[110.632262,-7.433632],[110.63579040000008,-7.429658899999936],[110.63372520000007,-7.425871399999949],[110.63479960000006,-7.422490699999969],[110.63257860000004,-7.421053299999926],[110.63184040000004,-7.418352299999981],[110.63637830000005,-7.416296],[110.63665970000005,-7.413218299999926],[110.63515260000008,-7.412095499999964],[110.63569090000004,-7.406351],[110.63817320000004,-7.4064605],[110.63813280000005,-7.402990699999975],[110.63455770000007,-7.400518299999931],[110.63472750000005,-7.389559199999951],[110.62883760000005,-7.386784099999943],[110.62961620000004,-7.384713799999929],[110.62479110000004,-7.382326199999966],[110.62861520000007,-7.378765099999953],[110.628715,-7.376339599999937],[110.63200480000006,-7.3727699],[110.62899810000005,-7.369632599999932],[110.63598270000006,-7.361517],[110.63612720000003,-7.352390899999932],[110.63818,-7.35034],[110.640167,-7.350748199999941],[110.64098640000009,-7.343729699999926],[110.63971740000005,-7.343760599999939],[110.63995430000006,-7.338905699999941],[110.64292220000004,-7.334264399999938],[110.64657970000007,-7.332577499999957],[110.64382780000005,-7.331416099999956],[110.64267960000006,-7.326009099999965],[110.64080960000007,-7.325768799999935],[110.63581080000006,-7.328152599999953],[110.63107630000007,-7.327065199999936],[110.62226270000008,-7.332233],[110.61277930000006,-7.333580899999959],[110.60786,-7.33101],[110.61005980000004,-7.324561899999935],[110.60307080000007,-7.322586699999931],[110.59931950000004,-7.315480699999966],[110.59929590000007,-7.307096399999978],[110.60355380000004,-7.300034499999981],[110.60107420000008,-7.291633599999955],[110.60459140000006,-7.290088599999933],[110.621675,-7.289278799999977],[110.61766770000008,-7.286287399999935],[110.62392430000006,-7.285586299999977],[110.62464820000008,-7.278787899999941],[110.62206570000006,-7.276927699999931],[110.62102040000008,-7.268511],[110.62502840000008,-7.270803899999976],[110.63087910000007,-7.265693599999963],[110.63557430000009,-7.265270199999975],[110.63634490000004,-7.263922699999966],[110.63384640000004,-7.253724799999929],[110.62833420000004,-7.247451],[110.62397870000007,-7.2340262],[110.624095,-7.229494399999965],[110.62680050000006,-7.224632199999974],[110.62759910000005,-7.219434899999953]],[[110.48836520000003,-7.292072699999949],[110.49152260000005,-7.291209699999968],[110.49439240000004,-7.287944399999958],[110.49363310000007,-7.292123499999946],[110.498316,-7.298544799999945],[110.50029970000008,-7.300193199999967],[110.50877570000006,-7.300554399999953],[110.51064320000006,-7.301902199999972],[110.51323410000003,-7.294217],[110.515037,-7.295066499999962],[110.51798680000007,-7.292464299999949],[110.51786520000007,-7.289258699999948],[110.52043680000008,-7.292418],[110.51853940000007,-7.296607],[110.52059940000004,-7.298559599999976],[110.52075960000008,-7.302042],[110.51809690000005,-7.304090499999973],[110.51691440000008,-7.309051],[110.51673890000006,-7.320263799999964],[110.51977540000007,-7.321476899999936],[110.52265170000004,-7.326026399999932],[110.52447510000007,-7.326234299999953],[110.52349860000004,-7.330202499999928],[110.52799270000008,-7.337573799999973],[110.53020620000007,-7.337299499999972],[110.53085480000004,-7.340496299999927],[110.52841070000005,-7.343714899999952],[110.53038030000005,-7.344976899999949],[110.53053280000006,-7.348349599999949],[110.53388870000003,-7.351901399999974],[110.53165790000008,-7.354387899999949],[110.53378070000008,-7.353254199999981],[110.53428570000005,-7.3574716],[110.53297160000005,-7.3606788],[110.52822170000007,-7.361686199999951],[110.52729440000007,-7.364143399999932],[110.52442610000008,-7.362400299999933],[110.52210010000005,-7.363505699999962],[110.51564910000008,-7.362544299999968],[110.516103,-7.379122099999961],[110.51210920000005,-7.379339899999934],[110.51230280000004,-7.383741199999974],[110.51523,-7.383635],[110.51523490000005,-7.385264],[110.51034810000004,-7.386868099999958],[110.50409060000004,-7.386573899999973],[110.49204160000005,-7.388816099999929],[110.49042110000005,-7.384603399999946],[110.49117150000006,-7.3816299],[110.488179,-7.376794899999936],[110.48144530000008,-7.379601899999955],[110.47711870000006,-7.374270199999955],[110.47837730000003,-7.370571699999971],[110.47460170000005,-7.359418399999981],[110.47424950000004,-7.353533299999981],[110.47611030000007,-7.349639699999955],[110.47139740000006,-7.345538099999942],[110.46952050000004,-7.337981199999945],[110.47218320000007,-7.331681199999935],[110.47225790000005,-7.325274099999945],[110.47543430000007,-7.3186127],[110.47461140000007,-7.31564],[110.47614020000009,-7.312525699999981],[110.47322340000005,-7.309563499999967],[110.47522120000008,-7.310600199999953],[110.47585710000004,-7.309097099999974],[110.47244060000008,-7.307106499999975],[110.46963750000003,-7.299238599999967],[110.47168520000008,-7.297252799999967],[110.46875830000005,-7.2958322],[110.48429870000007,-7.285979199999929],[110.48836520000003,-7.292072699999949]]]]},"properties":{"shapeName":"Semarang","shapeISO":"","shapeID":"22746128B19817580309765","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[127.58855210000002,-3.355009499999937],[127.58700220000003,-3.354041099999961],[127.585295,-3.356080799999972],[127.58627060000003,-3.361374099999978],[127.59254160000012,-3.361207499999978],[127.58999010000002,-3.357800299999951],[127.59045790000005,-3.354646],[127.58855210000002,-3.355009499999937]]],[[[127.47477270000002,-3.300453199999936],[127.47016780000001,-3.3036479],[127.47543670000005,-3.303218699999945],[127.47477270000002,-3.300453199999936]]],[[[128.14990970000008,-3.299085],[128.15110540000012,-3.2980481],[128.14443710000012,-3.302417299999945],[128.13923840000007,-3.308417],[128.13875310000003,-3.314233699999932],[128.14315020000004,-3.311799699999938],[128.14990970000008,-3.299085]]],[[[127.61709790000009,-3.299266799999941],[127.61473890000002,-3.297217299999943],[127.61266990000001,-3.299725199999955],[127.61512470000002,-3.301244399999973],[127.61708370000008,-3.300709299999937],[127.61709790000009,-3.299266799999941]]],[[[127.53235810000001,-3.256879899999944],[127.52885650000007,-3.257980299999929],[127.53166720000002,-3.262055],[127.53845480000007,-3.259049699999935],[127.53469180000002,-3.256565],[127.53235810000001,-3.256879899999944]]],[[[127.57285320000005,-3.255834799999946],[127.56950830000005,-3.255116],[127.56978150000009,-3.256360199999961],[127.56565450000005,-3.257690299999979],[127.564487,-3.264875199999949],[127.55967580000004,-3.263854799999933],[127.560979,-3.266067899999939],[127.55978690000006,-3.266319599999974],[127.55781940000008,-3.263921299999936],[127.55424620000008,-3.262649199999942],[127.55697450000002,-3.261824],[127.55105390000006,-3.259396899999956],[127.54653870000004,-3.259758899999952],[127.54095120000011,-3.264726],[127.53847860000008,-3.263064],[127.53410030000009,-3.263817699999947],[127.53213720000008,-3.266348499999935],[127.529296,-3.266021899999942],[127.52712610000003,-3.261043399999949],[127.52481210000008,-3.260625399999981],[127.52522620000002,-3.259566499999949],[127.52289950000011,-3.259977699999979],[127.5220031,-3.261773],[127.52472560000001,-3.264978599999949],[127.5238759,-3.266129099999944],[127.52777780000008,-3.269889299999932],[127.52637630000004,-3.280183199999954],[127.51736390000008,-3.284177599999964],[127.51306010000008,-3.288731799999937],[127.50620690000005,-3.2893895],[127.4874473000001,-3.298205799999948],[127.48723630000006,-3.301314899999966],[127.48965050000004,-3.303668],[127.48831590000009,-3.307259099999953],[127.49072330000001,-3.306548799999973],[127.49324530000001,-3.313439499999959],[127.49989520000008,-3.318563],[127.50228020000009,-3.325154199999929],[127.50740510000003,-3.330943299999944],[127.50850660000003,-3.330000599999948],[127.51275630000009,-3.331112699999949],[127.51710680000008,-3.333791099999928],[127.53019970000003,-3.3371738],[127.5401108000001,-3.338040799999931],[127.54072740000004,-3.3395389],[127.55169650000005,-3.337873799999954],[127.56415060000006,-3.339504499999975],[127.58179160000009,-3.344252199999971],[127.583461,-3.346857499999942],[127.5848605000001,-3.345846],[127.58823820000009,-3.347854799999936],[127.595722,-3.347497099999941],[127.59798820000003,-3.349504299999978],[127.6008088000001,-3.348425799999973],[127.60369280000009,-3.351217],[127.60584690000007,-3.359512499999937],[127.61126190000004,-3.363459099999943],[127.61299840000004,-3.367285199999969],[127.61677760000009,-3.369156399999952],[127.63150650000011,-3.367380599999933],[127.64140250000003,-3.371379499999932],[127.65693810000005,-3.366402599999958],[127.6599589000001,-3.361477399999956],[127.65875190000008,-3.355763099999933],[127.65569710000011,-3.352050299999974],[127.6458583000001,-3.348143799999946],[127.63659890000008,-3.339562],[127.6321084000001,-3.330042499999934],[127.63231960000007,-3.318157],[127.62516130000006,-3.306952299999978],[127.62202430000002,-3.304828699999973],[127.618422,-3.307772099999966],[127.61486950000005,-3.3078362],[127.61147480000011,-3.301543099999947],[127.60718230000009,-3.298151],[127.60746150000011,-3.295133899999939],[127.60459220000007,-3.290108399999951],[127.59609560000001,-3.285766],[127.591732,-3.277661],[127.589942,-3.2776032],[127.58657760000006,-3.274396699999954],[127.5830482,-3.2744378],[127.58101270000009,-3.271463499999925],[127.58199980000006,-3.270313199999975],[127.5771701000001,-3.266091099999926],[127.5785581,-3.2650105],[127.5819709000001,-3.266443399999957],[127.58050720000006,-3.264276199999927],[127.57587740000008,-3.264615099999958],[127.57089960000008,-3.267878799999949],[127.57101790000002,-3.265253099999939],[127.56833740000002,-3.264673399999936],[127.57127430000003,-3.262236],[127.5746663000001,-3.262079599999936],[127.574465,-3.258555099999967],[127.57579280000004,-3.259524499999941],[127.57285320000005,-3.255834799999946]]],[[[127.54839130000005,-3.246263799999952],[127.54440140000008,-3.247985599999936],[127.54215810000005,-3.254178399999944],[127.54607680000004,-3.254230099999972],[127.54925850000006,-3.256883599999981],[127.55820360000007,-3.2573791],[127.55903730000011,-3.261642699999925],[127.56034360000001,-3.261644499999932],[127.56404290000012,-3.254831799999977],[127.56303960000002,-3.251283199999932],[127.54839130000005,-3.246263799999952]]],[[[128.17227810000009,-3.223811199999943],[128.1712073000001,-3.221717399999932],[128.1720881000001,-3.216714],[128.1702729000001,-3.215595199999939],[128.16616620000002,-3.221524399999964],[128.16133330000002,-3.225312899999949],[128.1611283000001,-3.227122399999928],[128.155136,-3.231759599999975],[128.15713990000006,-3.23184],[128.1579528000001,-3.233367099999953],[128.16179160000002,-3.229625],[128.1646730000001,-3.228809099999978],[128.167811,-3.230133499999965],[128.17077070000005,-3.229207499999973],[128.17262440000002,-3.231176099999971],[128.17227810000009,-3.223811199999943]]],[[[127.8200154000001,-3.151745799999958],[127.8056643000001,-3.151248799999962],[127.79568140000003,-3.152678699999967],[127.7853143000001,-3.151774299999943],[127.77669720000006,-3.153182799999968],[127.77571590000002,-3.155401],[127.778794,-3.160644199999979],[127.77860750000002,-3.164419299999963],[127.78076850000002,-3.165657299999964],[127.78575520000004,-3.164130199999931],[127.78689520000012,-3.162507099999971],[127.79191170000001,-3.164801],[127.7989457000001,-3.164397399999928],[127.8006597000001,-3.168380599999978],[127.80616390000012,-3.172230899999931],[127.81296320000001,-3.168120199999976],[127.81091620000007,-3.162343399999941],[127.80784660000006,-3.159394],[127.806395,-3.159849899999926],[127.80346660000009,-3.157844499999953],[127.80429330000004,-3.156472599999972],[127.8079355000001,-3.156276599999956],[127.81131960000005,-3.157910699999945],[127.81311370000003,-3.156539899999927],[127.81519020000007,-3.157057099999975],[127.81751840000004,-3.1614357],[127.817088,-3.164552699999945],[127.81916740000008,-3.162553],[127.82737760000009,-3.1613326],[127.83509470000001,-3.155799599999966],[127.83348870000009,-3.153591499999948],[127.8200154000001,-3.151745799999958]]],[[[127.76119370000004,-3.151188099999956],[127.75299840000002,-3.152007599999934],[127.74085570000011,-3.1585138],[127.73661670000001,-3.158194],[127.73384590000012,-3.155473599999937],[127.72766720000004,-3.159269799999947],[127.72133620000011,-3.1596052],[127.72036530000003,-3.162464],[127.70994510000003,-3.167885],[127.70534250000003,-3.173942299999965],[127.69063390000008,-3.184248099999934],[127.68352270000003,-3.193962799999952],[127.67021570000009,-3.198149599999965],[127.65360020000003,-3.208452099999931],[127.65311340000005,-3.210768],[127.63966940000012,-3.2215891],[127.63812690000009,-3.2261628],[127.64133870000012,-3.228712399999949],[127.64940360000003,-3.229924399999959],[127.65560210000001,-3.233221499999956],[127.65920820000008,-3.238888899999949],[127.6675785000001,-3.245992599999965],[127.6725848000001,-3.247229],[127.67674670000008,-3.252296499999943],[127.696872,-3.2570989],[127.70042920000003,-3.256817499999954],[127.70775170000002,-3.260401899999977],[127.72541080000008,-3.258136599999943],[127.72961060000011,-3.255996899999957],[127.7354438000001,-3.2560615],[127.73567320000006,-3.254574599999955],[127.7509758000001,-3.248101499999962],[127.76205830000004,-3.248715799999957],[127.76714970000012,-3.250352299999975],[127.77021060000004,-3.248725799999931],[127.77464940000004,-3.24896],[127.78214380000009,-3.251915],[127.78879670000003,-3.256642099999965],[127.79070390000004,-3.256043799999929],[127.79503280000006,-3.252988799999969],[127.79567930000007,-3.247698399999933],[127.79286890000003,-3.242089399999941],[127.7919237000001,-3.235338499999955],[127.79692650000004,-3.227708099999973],[127.79633060000003,-3.226334599999973],[127.80026040000007,-3.223736599999938],[127.80116120000002,-3.219933799999978],[127.79872130000001,-3.213724599999978],[127.79882740000005,-3.208176199999969],[127.80068070000004,-3.204975099999956],[127.79936550000002,-3.198138],[127.79643870000007,-3.194731099999956],[127.797123,-3.193502099999932],[127.79353970000011,-3.191924799999924],[127.7944106000001,-3.189323199999933],[127.7905158000001,-3.186429899999951],[127.79020580000008,-3.183855499999936],[127.792114,-3.182313299999976],[127.79805810000005,-3.184608399999945],[127.79945630000009,-3.181206499999973],[127.79139640000005,-3.175419799999929],[127.785963,-3.174469599999952],[127.78424540000003,-3.171149899999932],[127.7800069000001,-3.170315499999958],[127.7751766,-3.164561099999958],[127.77553620000003,-3.161243799999966],[127.77241150000009,-3.156835699999931],[127.76731880000011,-3.156572199999971],[127.76119370000004,-3.151188099999956]]],[[[127.938424,-3.119766199999958],[127.93974380000009,-3.117971599999976],[127.937374,-3.115466699999956],[127.93681390000006,-3.119057899999973],[127.938424,-3.119766199999958]]],[[[127.934861,-3.1097231],[127.93500970000002,-3.107456299999967],[127.93297140000004,-3.107709899999975],[127.934861,-3.1097231]]],[[[127.93228980000004,-3.106680599999947],[127.93066890000011,-3.105747299999962],[127.93031960000008,-3.107493799999929],[127.93228980000004,-3.106680599999947]]],[[[127.92986220000012,-3.100326299999949],[127.92775270000004,-3.101148499999965],[127.92892240000003,-3.102916099999959],[127.93150070000002,-3.101888299999928],[127.92986220000012,-3.100326299999949]]],[[[127.94040650000011,-3.099468499999944],[127.93924830000003,-3.099234399999943],[127.93947870000011,-3.1005157],[127.94052110000007,-3.100749599999972],[127.94040650000011,-3.099468499999944]]],[[[127.93727850000005,-3.099581799999953],[127.93727990000002,-3.098184299999957],[127.93600530000003,-3.098415899999964],[127.93611950000002,-3.1000464],[127.93727850000005,-3.099581799999953]]],[[[127.94670370000006,-3.099165599999935],[127.94612550000011,-3.09621],[127.94503470000006,-3.098810599999979],[127.94670370000006,-3.099165599999935]]],[[[128.02712310000004,-3.072441599999934],[128.02913200000012,-3.070884699999965],[128.02898670000002,-3.069194599999946],[128.024415,-3.0709952],[128.02599470000007,-3.073403199999973],[128.02712310000004,-3.072441599999934]]],[[[128.08130970000002,-3.057850599999938],[128.08286710000004,-3.053646499999957],[128.08104130000004,-3.052271799999971],[128.0794843000001,-3.056012399999929],[128.08130970000002,-3.057850599999938]]],[[[128.09008990000007,-3.053343699999971],[128.0898347000001,-3.052227799999969],[128.0920212000001,-3.051199699999927],[128.0915457000001,-3.046636399999954],[128.088489,-3.048467499999958],[128.09008990000007,-3.053343699999971]]],[[[127.83255910000003,-3.038294399999927],[127.83188540000003,-3.036187199999972],[127.8304654000001,-3.036729299999934],[127.83255910000003,-3.038294399999927]]],[[[128.0733265,-3.036959799999977],[128.07519120000006,-3.035918299999935],[128.07514630000003,-3.032921399999964],[128.0722042000001,-3.03495],[128.0733265,-3.036959799999977]]],[[[128.07645990000003,-3.021814199999938],[128.07051840000008,-3.0235845],[128.07191360000002,-3.0245195],[128.07965180000008,-3.022928799999931],[128.07645990000003,-3.021814199999938]]],[[[128.08323760000007,-3.022429699999975],[128.08596760000012,-3.021427799999969],[128.08587940000007,-3.020298],[128.08198950000008,-3.021783099999936],[128.08323760000007,-3.022429699999975]]],[[[128.05988350000007,-2.996045299999935],[128.054552,-2.994652499999972],[128.05023870000002,-2.999722799999972],[128.0495185000001,-3.006662899999981],[128.0464277000001,-3.015635399999951],[128.0508651,-3.018678899999941],[128.05550920000007,-3.0166725],[128.0581949000001,-3.009194399999956],[128.05988350000007,-2.996045299999935]]],[[[127.8667799000001,-2.9648986],[127.86958320000008,-2.9640862],[127.86804640000003,-2.9609],[127.86632630000008,-2.963282],[127.8667799000001,-2.9648986]]],[[[127.89935620000006,-2.925707699999975],[127.90157140000008,-2.923608399999978],[127.89750370000002,-2.925156499999957],[127.89935620000006,-2.925707699999975]]],[[[127.92232270000011,-2.924200799999937],[127.91891110000006,-2.923089399999981],[127.91892930000006,-2.926264699999933],[127.90329340000005,-2.930106699999953],[127.89850070000011,-2.9326166],[127.8861720000001,-2.9464776],[127.87895030000004,-2.950796299999979],[127.87463960000002,-2.958591599999977],[127.88171080000006,-2.956425099999933],[127.88906950000012,-2.958113199999957],[127.89747690000002,-2.951183599999979],[127.90335320000008,-2.949125099999947],[127.90975060000005,-2.948887799999966],[127.91154680000011,-2.943668399999979],[127.92153680000001,-2.936986599999955],[127.92492630000004,-2.927911399999971],[127.92448360000003,-2.925332399999945],[127.92232270000011,-2.924200799999937]]],[[[127.910838,-2.918099499999926],[127.90729850000002,-2.917857199999958],[127.90413380000007,-2.923132799999962],[127.90893260000007,-2.923137499999939],[127.910838,-2.918099499999926]]],[[[127.92513150000002,-2.911916299999973],[127.920269,-2.912249699999961],[127.91308890000005,-2.915415199999927],[127.91197560000012,-2.916714199999944],[127.9131493000001,-2.9198878],[127.91850080000006,-2.922155199999963],[127.9241412,-2.919898399999965],[127.93278520000001,-2.927551699999981],[127.93791780000004,-2.928908799999931],[127.94129850000002,-2.936817],[127.94138530000009,-2.940821599999936],[127.93660010000008,-2.941207099999929],[127.93106840000007,-2.937873399999944],[127.92967140000007,-2.938288099999966],[127.92711420000012,-2.934827199999972],[127.92468290000011,-2.934876799999927],[127.92338550000011,-2.939348099999961],[127.917354,-2.944751],[127.91503420000004,-2.949923299999966],[127.9091863000001,-2.952699899999971],[127.90660140000011,-2.951163199999939],[127.90690810000001,-2.954855899999927],[127.90393640000002,-2.952148699999952],[127.90469570000005,-2.955919899999969],[127.90154050000001,-2.955760699999928],[127.89408760000003,-2.959939799999972],[127.88877140000011,-2.9610526],[127.88432470000009,-2.959201899999925],[127.87794720000011,-2.961197599999934],[127.8785137000001,-2.963772499999948],[127.87698590000002,-2.965539099999944],[127.87950420000004,-2.968948099999977],[127.87600570000006,-2.975705299999959],[127.8718272000001,-2.977131099999951],[127.87017390000005,-2.987842599999965],[127.86778850000007,-2.993612699999971],[127.8690193000001,-3.004041099999938],[127.86573170000008,-3.00669],[127.86536750000005,-3.008717799999943],[127.86218550000001,-3.0093126],[127.85282680000012,-3.017519499999935],[127.84484840000005,-3.016705],[127.84158270000012,-3.023072099999979],[127.83100850000005,-3.030887499999949],[127.82899980000002,-3.034707599999933],[127.8351302000001,-3.034350199999949],[127.83989150000002,-3.0323792],[127.84388600000011,-3.033969599999978],[127.84566630000006,-3.038106],[127.8530406000001,-3.035591599999975],[127.85819980000008,-3.036533199999951],[127.863421,-3.039945099999954],[127.86878960000001,-3.0385206],[127.8747168000001,-3.034704399999953],[127.87909750000006,-3.038037299999928],[127.88840870000001,-3.038541],[127.89333820000002,-3.036413899999957],[127.8911369000001,-3.039089899999965],[127.89333360000012,-3.041016399999933],[127.90457530000003,-3.0380636],[127.91453310000009,-3.0385677],[127.923707,-3.034156399999972],[127.92645060000007,-3.032286899999974],[127.92917120000004,-3.027592],[127.95568960000003,-3.007924299999956],[127.96497410000006,-2.995451499999945],[127.97111180000002,-2.973406199999943],[127.987639,-2.959743499999945],[128.00384580000002,-2.942413599999952],[128.002233,-2.9348057],[127.99074910000002,-2.923913099999936],[127.97092570000007,-2.922594799999956],[127.96219430000008,-2.925265099999933],[127.9521198000001,-2.925827799999979],[127.93692990000011,-2.920612699999936],[127.92513150000002,-2.911916299999973]]],[[[128.75356280000005,-2.851192499999968],[128.737506,-2.854741599999954],[128.73138820000008,-2.858368499999926],[128.72458130000007,-2.860225299999968],[128.7041617000001,-2.861341099999947],[128.687719,-2.856322],[128.67591260000006,-2.848885099999961],[128.66822860000002,-2.840151399999968],[128.66390150000007,-2.839560099999971],[128.654689,-2.841179799999964],[128.6393131000001,-2.851086599999974],[128.6215188000001,-2.854178099999956],[128.6075406000001,-2.850604099999941],[128.5636945000001,-2.853774099999953],[128.5437468,-2.849164599999938],[128.52921530000003,-2.836710599999947],[128.52416990000006,-2.835204099999942],[128.51450310000007,-2.836114499999951],[128.5109543000001,-2.833841699999937],[128.50046510000004,-2.836757499999976],[128.48199210000007,-2.849138399999958],[128.47123880000004,-2.851994699999977],[128.46499,-2.852050799999972],[128.452803,-2.846617499999979],[128.44178740000007,-2.845963299999937],[128.43439390000003,-2.847287],[128.42245050000008,-2.854006499999969],[128.4147154000001,-2.863441699999953],[128.39826830000004,-2.870542],[128.3898928000001,-2.870183599999962],[128.38114940000003,-2.871801199999936],[128.3757078000001,-2.871001799999931],[128.35554430000002,-2.860991099999978],[128.34975090000012,-2.859778399999925],[128.3418283000001,-2.862900599999932],[128.33483290000004,-2.860477699999933],[128.32834830000002,-2.862597699999981],[128.30264770000008,-2.865561499999956],[128.2950647,-2.864907899999935],[128.29169260000003,-2.862221599999941],[128.28738020000003,-2.862307399999963],[128.27815220000002,-2.865015299999925],[128.27404310000009,-2.868168799999978],[128.2662246000001,-2.868724199999974],[128.256869,-2.864618199999938],[128.25678490000007,-2.858571299999937],[128.2496708000001,-2.858714199999952],[128.24761850000004,-2.856884],[128.237749,-2.853898399999935],[128.23317180000004,-2.855016199999966],[128.2299137000001,-2.857845599999962],[128.22502970000005,-2.857193399999971],[128.22423590000005,-2.859818],[128.21901370000012,-2.860433899999975],[128.211901,-2.858718199999942],[128.20861250000007,-2.862845399999969],[128.20380210000008,-2.861898199999928],[128.19211110000003,-2.862951799999962],[128.18621240000004,-2.866192199999944],[128.17775010000003,-2.8646228],[128.1700489000001,-2.865590599999962],[128.1663834000001,-2.863464299999976],[128.16327380000007,-2.863521],[128.16145380000012,-2.865259899999955],[128.16153740000004,-2.871218099999965],[128.16265240000007,-2.870982899999944],[128.16647530000012,-2.8784482],[128.1646823000001,-2.883254699999952],[128.14891220000004,-2.885897599999964],[128.1474875,-2.888521599999933],[128.1474250000001,-2.8935948],[128.1447534,-2.896394899999962],[128.14018880000003,-2.900078399999927],[128.12911050000002,-2.905143099999975],[128.12840170000004,-2.911277599999949],[128.13114080000003,-2.916411899999957],[128.140115,-2.920046799999966],[128.14207870000007,-2.922437499999944],[128.140417,-2.927981399999965],[128.13461670000004,-2.936147199999937],[128.12200530000007,-2.950295099999948],[128.11239080000007,-2.958575599999961],[128.09060540000007,-2.961359899999934],[128.0815848000001,-2.960674099999949],[128.07685850000007,-2.964298],[128.07140970000012,-2.972345599999926],[128.07338310000011,-2.980546899999979],[128.0765914000001,-2.985563699999943],[128.07999310000002,-2.987365799999964],[128.09881710000002,-2.9829572],[128.10488020000003,-2.9770336],[128.11469880000004,-2.970759099999952],[128.1176620000001,-2.970614],[128.11959550000006,-2.974155],[128.11769450000008,-2.985066699999948],[128.11911150000003,-2.992500699999937],[128.12236530000007,-2.995924799999955],[128.12271350000003,-3.000762299999963],[128.1197039000001,-3.003738899999973],[128.1178271000001,-3.002646099999936],[128.11709210000004,-3.004621699999973],[128.11530270000003,-3.004207299999962],[128.10160930000006,-3.012720199999933],[128.09286380000003,-3.015780399999926],[128.0870649000001,-3.021025699999939],[128.0943665000001,-3.025692099999958],[128.09307380000007,-3.0277851],[128.09486160000006,-3.030146199999933],[128.09512270000005,-3.033685899999966],[128.0914279000001,-3.031352699999957],[128.0892238,-3.0356571],[128.0920711000001,-3.034037299999966],[128.0918004,-3.041971199999978],[128.1028808000001,-3.053985099999977],[128.10511150000002,-3.052984099999946],[128.1052314000001,-3.049946199999965],[128.10869390000005,-3.049477199999956],[128.11056670000005,-3.055436799999939],[128.11514230000012,-3.057239799999934],[128.1147688000001,-3.065409699999975],[128.111689,-3.064374799999939],[128.1099848,-3.067322899999965],[128.10535,-3.0661097],[128.0997278000001,-3.070293299999946],[128.0918669,-3.0676026],[128.08834490000004,-3.068926799999929],[128.08404740000003,-3.067979299999934],[128.07585890000007,-3.0709807],[128.07559250000008,-3.073635],[128.0740366000001,-3.074695499999962],[128.06214320000004,-3.069995399999925],[128.05964820000008,-3.071261499999935],[128.05847570000003,-3.070021599999961],[128.05526290000012,-3.070107299999961],[128.05358880000006,-3.071964],[128.04377320000003,-3.073488899999973],[128.0433028000001,-3.074638799999946],[128.0423942000001,-3.073546599999929],[128.03819850000002,-3.073690299999953],[128.0366408000001,-3.076579399999957],[128.03241470000012,-3.077902799999947],[128.02653570000007,-3.073856699999965],[128.0243620000001,-3.076656699999944],[128.021427,-3.077686299999925],[128.01720520000003,-3.07432],[128.011175,-3.075258199999951],[128.0093862000001,-3.0741948],[128.00968080000007,-3.072867799999926],[128.00492810000003,-3.072597899999948],[128.00272640000003,-3.073893599999963],[128.0057607000001,-3.076462499999934],[128.00660860000005,-3.079648599999928],[128.00170450000007,-3.0842747],[128.00097340000002,-3.081737399999952],[127.9976306000001,-3.079669699999954],[127.999569,-3.077547899999956],[128.00144310000007,-3.081442899999956],[128.0051714000001,-3.079116399999975],[128.00097790000007,-3.076841399999978],[127.99960470000008,-3.070675799999947],[127.986025,-3.081457799999953],[127.98294970000006,-3.091217399999948],[127.97998560000008,-3.092040399999973],[127.9774298000001,-3.095341299999973],[127.977501,-3.097671399999967],[127.97858640000004,-3.097849399999973],[127.97678960000007,-3.105103199999974],[127.98369950000006,-3.104844499999956],[127.98537140000008,-3.1054655],[127.9855745000001,-3.107825199999979],[127.97304620000011,-3.107724499999961],[127.972052,-3.104243299999951],[127.96750090000012,-3.107778099999962],[127.96294220000004,-3.103939399999945],[127.9603595000001,-3.104733199999941],[127.9595935000001,-3.107947299999978],[127.95748030000004,-3.108623499999965],[127.95375420000005,-3.108560799999964],[127.95154070000001,-3.106789],[127.95092210000007,-3.109324899999933],[127.946665,-3.112152],[127.9473382000001,-3.113774799999931],[127.9442888000001,-3.111736699999938],[127.94340770000008,-3.112650099999939],[127.94291980000003,-3.116395399999931],[127.94581660000006,-3.124391099999968],[127.94512330000009,-3.128165599999932],[127.93394060000003,-3.132047399999976],[127.926933,-3.141714099999945],[127.91291360000002,-3.150547599999925],[127.90542890000006,-3.153223699999955],[127.89833810000005,-3.157935099999975],[127.89349670000001,-3.158047899999929],[127.89162210000006,-3.154978599999936],[127.88474340000005,-3.153408],[127.88005270000008,-3.149775299999931],[127.87275430000011,-3.156521299999952],[127.867325,-3.157665599999973],[127.8561304000001,-3.158715099999938],[127.84646710000004,-3.154752299999927],[127.840393,-3.155305899999973],[127.837574,-3.157367199999953],[127.8410861000001,-3.165304699999979],[127.85400110000012,-3.17399],[127.86469110000007,-3.178455299999939],[127.87223440000002,-3.189553],[127.8738575000001,-3.194509599999947],[127.87415020000003,-3.208607599999937],[127.87247320000006,-3.2126463],[127.87271320000002,-3.221258599999942],[127.87477850000005,-3.224298699999963],[127.87413730000003,-3.233617699999968],[127.87753390000012,-3.240198499999963],[127.87730970000007,-3.243914399999937],[127.88804830000004,-3.25826],[127.88717380000003,-3.266340099999979],[127.888518,-3.271473399999934],[127.90141640000002,-3.283491499999968],[127.91757370000005,-3.294274299999927],[127.91930060000004,-3.298375799999974],[127.92349250000007,-3.302538899999945],[127.92436550000002,-3.309382399999947],[127.93016640000008,-3.318266199999925],[127.93309780000004,-3.334933299999932],[127.94329180000011,-3.352286599999957],[127.94365360000006,-3.357006],[127.9403506000001,-3.371926199999962],[127.94245390000003,-3.380894499999954],[127.93714660000012,-3.390090699999973],[127.93002380000007,-3.395421099999965],[127.92981450000002,-3.398901099999932],[127.92341710000005,-3.411576199999956],[127.91928970000004,-3.4150813],[127.92027890000008,-3.422898099999941],[127.91556530000003,-3.438612699999965],[127.915397,-3.444688199999973],[127.90949890000002,-3.456508199999973],[127.90411970000002,-3.463668899999959],[127.8987538,-3.484484799999962],[127.89554370000008,-3.488395499999967],[127.894864,-3.4918623],[127.90094710000005,-3.506692599999951],[127.90640910000002,-3.5273488],[127.91973330000008,-3.543826299999978],[127.92327150000006,-3.560350799999981],[127.92106750000005,-3.568433599999935],[127.92415530000005,-3.565025599999956],[127.9346825,-3.564313099999936],[127.93675020000012,-3.562630199999944],[127.93692010000007,-3.558173699999941],[127.93430110000008,-3.551835099999948],[127.936267,-3.543912599999942],[127.93959510000002,-3.541766699999926],[127.94599040000003,-3.533317],[127.95429310000009,-3.529272299999946],[127.96020710000005,-3.528116],[127.95130820000008,-3.518618199999935],[127.94801180000002,-3.510712699999942],[127.9441442000001,-3.486504699999955],[127.94653770000002,-3.469888199999957],[127.94526910000002,-3.467469299999948],[127.94822280000005,-3.463270099999932],[127.954004,-3.459981],[127.95447610000008,-3.457091099999957],[127.962618,-3.4474249],[127.96366420000004,-3.443414899999937],[127.96992440000008,-3.435399399999937],[127.9701801000001,-3.429589399999941],[127.97319760000005,-3.420980399999962],[127.97255840000003,-3.414874499999939],[127.977602,-3.405264899999963],[127.97876990000009,-3.3970963],[127.98375380000004,-3.388164899999936],[127.98402210000006,-3.384242399999948],[127.9920581,-3.375284699999952],[127.99511020000011,-3.375405799999953],[127.99804140000003,-3.378977599999928],[128.00624090000008,-3.38226],[128.01600010000004,-3.381473599999936],[128.0229925000001,-3.374077599999964],[128.02542960000005,-3.372929799999952],[128.0271603000001,-3.373786799999948],[128.02973180000004,-3.370279599999947],[128.03110750000008,-3.359073099999932],[128.0342482000001,-3.358604299999968],[128.0368343,-3.355126499999926],[128.04194250000012,-3.353420799999981],[128.0509439000001,-3.346970299999953],[128.054911,-3.341635599999961],[128.05643380000004,-3.329632799999956],[128.0551306000001,-3.326770499999952],[128.05859210000006,-3.3128524],[128.06239970000001,-3.305275799999947],[128.06190560000005,-3.3000843],[128.05907750000006,-3.296040799999957],[128.06184050000002,-3.291294799999946],[128.06330060000005,-3.283303099999955],[128.0583048000001,-3.275010299999963],[128.06358590000002,-3.260503899999946],[128.06075950000002,-3.2546318],[128.06738730000006,-3.243282399999941],[128.06686620000005,-3.235524799999951],[128.06929270000012,-3.229392099999927],[128.06831740000007,-3.220896699999969],[128.0695826000001,-3.217152],[128.06725640000002,-3.209805699999947],[128.07116320000011,-3.205326],[128.07271040000012,-3.197983199999953],[128.07174680000003,-3.192702699999927],[128.07687180000005,-3.1875457],[128.0764068000001,-3.182501699999932],[128.07888950000006,-3.178935],[128.0787163000001,-3.175660899999968],[128.08240550000005,-3.168231499999933],[128.0836875000001,-3.145079],[128.08674130000009,-3.142574699999955],[128.0909620000001,-3.130898299999956],[128.1006334000001,-3.127190299999938],[128.1100001000001,-3.119382099999939],[128.11221980000005,-3.114074799999969],[128.11932460000003,-3.109155099999953],[128.12189550000005,-3.104939399999978],[128.12219270000003,-3.100308899999959],[128.12454220000006,-3.0976562],[128.1292241000001,-3.095300499999951],[128.13468750000004,-3.087960599999974],[128.13929440000004,-3.0876104],[128.14118970000004,-3.084072499999934],[128.1449467000001,-3.0824828],[128.14801950000003,-3.074108499999966],[128.151893,-3.073462699999936],[128.1544487000001,-3.0695713],[128.16114030000006,-3.067187399999966],[128.1835291000001,-3.064933699999926],[128.1879285000001,-3.067267199999947],[128.18842590000008,-3.069096299999956],[128.1946904,-3.068776599999978],[128.19917480000004,-3.075328099999979],[128.1998903000001,-3.0798415],[128.19845550000002,-3.095414299999959],[128.20063830000004,-3.099604399999976],[128.20060620000004,-3.103320899999972],[128.1977985000001,-3.110722199999941],[128.19501,-3.111988399999973],[128.19970090000004,-3.117153799999926],[128.20189520000008,-3.125502799999936],[128.1976631000001,-3.134407299999964],[128.1947864000001,-3.135850399999924],[128.19523730000003,-3.140983],[128.18896730000006,-3.147762199999931],[128.18518110000002,-3.148998099999972],[128.18268860000012,-3.146842899999967],[128.17981270000007,-3.147165099999938],[128.17940360000011,-3.144982099999936],[128.17272860000003,-3.144239399999947],[128.1713526000001,-3.140285899999981],[128.172019,-3.151052299999947],[128.17037440000001,-3.152820799999972],[128.17066640000007,-3.154649699999936],[128.16864060000012,-3.155975399999932],[128.1729037,-3.164001699999972],[128.1672089000001,-3.166799199999957],[128.16096330000005,-3.161042499999951],[128.1602755,-3.158888699999977],[128.15889490000006,-3.160716299999933],[128.16070700000012,-3.169566499999974],[128.16533960000004,-3.174201099999948],[128.16470220000008,-3.1822529],[128.1592128000001,-3.184814499999959],[128.15787530000011,-3.187704],[128.162629,-3.187796399999968],[128.16312960000005,-3.185614099999952],[128.1666213000001,-3.185911899999951],[128.1677386,-3.183169699999951],[128.17078760000004,-3.186623199999929],[128.16914170000007,-3.189984299999935],[128.16102180000007,-3.197558099999981],[128.16034480000008,-3.200123699999949],[128.16553710000005,-3.202251599999954],[128.1678237000001,-3.204996599999959],[128.1697901000001,-3.204644199999962],[128.17144630000007,-3.206887199999926],[128.17059110000002,-3.212077799999975],[128.1765461000001,-3.219213199999956],[128.17833740000003,-3.226809799999955],[128.18149670000003,-3.229253099999937],[128.18161240000006,-3.231329699999947],[128.18642450000004,-3.231970699999977],[128.1874355000001,-3.230154599999935],[128.18671140000004,-3.2255291],[128.18847230000006,-3.225318099999924],[128.19010720000006,-3.221142799999939],[128.1940978,-3.221641499999976],[128.19457010000008,-3.218008],[128.19689570000003,-3.2161457],[128.2006500000001,-3.218697099999929],[128.20284540000011,-3.218108899999947],[128.1990949000001,-3.207062699999938],[128.19660120000003,-3.206264399999952],[128.1955766000001,-3.2031075],[128.19223340000008,-3.200361799999939],[128.19252820000008,-3.198739699999976],[128.19933490000005,-3.200278899999944],[128.19983090000005,-3.204025199999933],[128.20516770000006,-3.209220699999946],[128.21106580000003,-3.209490699999947],[128.214307,-3.21144],[128.2184112000001,-3.216840899999966],[128.22119840000005,-3.217698399999961],[128.2243393000001,-3.216373499999975],[128.2220546000001,-3.210797],[128.22449160000008,-3.209029099999952],[128.226661,-3.211832899999933],[128.22877370000003,-3.212070499999925],[128.2300331,-3.215404499999977],[128.2355791000001,-3.215733099999966],[128.2428321000001,-3.209485399999949],[128.24139760000003,-3.204794399999969],[128.2448769,-3.202171799999974],[128.24722430000008,-3.202557],[128.25312630000008,-3.197576499999968],[128.25441740000008,-3.197665899999947],[128.253036,-3.200644],[128.25045360000001,-3.200671599999964],[128.2495709000001,-3.203945099999942],[128.247193,-3.205152699999928],[128.24889310000003,-3.207897099999968],[128.25799010000003,-3.207903699999974],[128.2662252,-3.2027773],[128.2700390000001,-3.204284399999949],[128.27090210000006,-3.207972],[128.26905090000002,-3.211451299999965],[128.27101370000003,-3.216113099999973],[128.2802415000001,-3.218213899999967],[128.2828214000001,-3.221843799999931],[128.2915742,-3.225467],[128.29201620000003,-3.2293424],[128.29596020000008,-3.2337696],[128.30177680000008,-3.246457199999952],[128.29959430000008,-3.257618199999968],[128.30020810000008,-3.265628799999945],[128.31227910000007,-3.273630799999978],[128.3125106000001,-3.278527399999973],[128.31756860000007,-3.285138099999926],[128.31810530000007,-3.294311899999968],[128.32320890000005,-3.298828399999934],[128.3283090000001,-3.308447799999954],[128.329918,-3.316236],[128.33336240000006,-3.3224032],[128.3331376000001,-3.329305199999965],[128.34858180000003,-3.341881199999932],[128.3516145000001,-3.349493399999972],[128.3548403000001,-3.353625099999931],[128.36814650000008,-3.360123199999975],[128.3746106000001,-3.372280099999955],[128.37883520000003,-3.375321],[128.38060550000012,-3.383817199999953],[128.3884835,-3.388423799999941],[128.39030130000003,-3.391669599999943],[128.39525980000008,-3.3947109],[128.3968536000001,-3.404092],[128.4017659000001,-3.4108499],[128.4022734,-3.420908699999927],[128.40524790000006,-3.428550299999927],[128.4148418000001,-3.435901],[128.42354350000005,-3.438443],[128.43087890000004,-3.443314499999929],[128.433122,-3.447533899999939],[128.4355868,-3.4490692],[128.44216240000003,-3.448394699999938],[128.45153920000007,-3.451261399999964],[128.46056150000004,-3.458316499999967],[128.47106930000007,-3.460033199999941],[128.47472560000006,-3.456967499999962],[128.47945170000003,-3.456734199999971],[128.48174240000003,-3.454729599999951],[128.48567550000007,-3.4554102],[128.4912389000001,-3.453849799999944],[128.4939392000001,-3.454352799999981],[128.50095210000006,-3.459577499999966],[128.51385360000006,-3.459053299999937],[128.51812540000003,-3.457433099999946],[128.52199970000004,-3.458467499999927],[128.52555310000002,-3.455342599999938],[128.535638,-3.4519258],[128.53913280000006,-3.448387799999978],[128.5541938,-3.443350899999928],[128.56391010000004,-3.4430309],[128.56802160000007,-3.438844099999926],[128.57496360000005,-3.439230699999939],[128.58218640000007,-3.435310699999945],[128.5911347000001,-3.427619299999947],[128.59506440000007,-3.426342799999929],[128.6049025000001,-3.429621],[128.61598890000005,-3.428503599999942],[128.618583,-3.4294156],[128.6226627000001,-3.433849399999929],[128.64211080000007,-3.434193499999935],[128.65267530000006,-3.432746399999928],[128.66065230000004,-3.434094],[128.66948790000004,-3.432115599999975],[128.67439690000003,-3.433373199999949],[128.67652810000004,-3.4324007],[128.69171160000008,-3.418420499999968],[128.6979358000001,-3.414528799999971],[128.69865590000006,-3.411461199999962],[128.69152510000004,-3.404880799999944],[128.67569190000006,-3.396350599999948],[128.6703662000001,-3.390744199999972],[128.6740238000001,-3.381335499999977],[128.6718403000001,-3.371511799999951],[128.679549,-3.360246099999927],[128.6880784000001,-3.351723899999968],[128.6925695000001,-3.350869899999964],[128.69395010000005,-3.347153499999934],[128.69804570000008,-3.343939499999976],[128.7231769000001,-3.313548399999945],[128.73643860000004,-3.302492599999937],[128.76473870000007,-3.282962199999929],[128.77140970000005,-3.272059599999977],[128.77951530000007,-3.265124],[128.78702150000004,-3.260571099999936],[128.8023703,-3.256894899999963],[128.817104,-3.25],[128.8332858000001,-3.247063],[128.8411215000001,-3.242550499999936],[128.84241940000004,-3.240591199999926],[128.84080840000001,-3.240116399999977],[128.84285760000012,-3.239349899999979],[128.83754580000004,-3.240989099999979],[128.83423040000002,-3.239857599999937],[128.83396090000008,-3.235802899999953],[128.830089,-3.231589],[128.82961790000002,-3.225567],[128.77567240000008,-3.042835399999944],[128.75839930000006,-3.044246299999941],[128.7522874000001,-3.031950699999925],[128.75095850000002,-3.017711],[128.7481126,-3.007568699999979],[128.7488217,-3.002250299999957],[128.751873,-3.000089],[128.75016440000002,-2.998261599999978],[128.74865490000002,-2.991724399999953],[128.74553960000003,-2.989960899999971],[128.74300630000005,-2.981490899999926],[128.7449702,-2.976518599999963],[128.74356330000012,-2.972963199999981],[128.74468940000008,-2.967776],[128.74231,-2.966043199999945],[128.74175260000004,-2.962032199999953],[128.74266450000005,-2.960830899999962],[128.74623970000005,-2.963225399999942],[128.74993260000008,-2.968336799999975],[128.75343440000006,-2.967190699999946],[128.75442880000003,-2.964749199999972],[128.75339670000005,-2.961151399999949],[128.75521490000006,-2.961296899999979],[128.75412270000004,-2.957624299999964],[128.75539270000002,-2.956986299999926],[128.75680660000012,-2.958379199999968],[128.75669190000008,-2.954955699999971],[128.76174320000007,-2.95104],[128.75894960000005,-2.947015499999964],[128.761605,-2.945826499999953],[128.76065360000007,-2.9409522],[128.7635689000001,-2.938921899999968],[128.76030860000003,-2.935333],[128.76074240000003,-2.930778099999941],[128.75485170000002,-2.925306899999953],[128.7584022000001,-2.921913199999949],[128.7569016000001,-2.921477599999946],[128.757537,-2.919127699999933],[128.7556326,-2.917734699999926],[128.75618180000004,-2.913818099999958],[128.753117,-2.911706199999969],[128.7524833000001,-2.906222599999978],[128.75086640000006,-2.907139599999937],[128.75037630000008,-2.905137599999932],[128.752311,-2.899654599999963],[128.75072440000008,-2.897014099999978],[128.75032420000002,-2.891161],[128.75237370000002,-2.888434199999949],[128.7546824000001,-2.888550799999962],[128.75508710000008,-2.885446499999944],[128.7566167000001,-2.884982599999944],[128.75589580000008,-2.882168199999967],[128.75110150000012,-2.878604699999926],[128.7556389,-2.865990799999963],[128.7550622000001,-2.864104899999973],[128.7528691000001,-2.863495099999966],[128.75356280000005,-2.851192499999968]]],[[[128.7520863000001,-1.523947299999975],[128.7521683000001,-1.517770599999949],[128.7485822000001,-1.5228125],[128.7493531,-1.524208099999953],[128.7520863000001,-1.523947299999975]]],[[[128.7125171,-1.5088241],[128.71006380000006,-1.507221099999924],[128.7046378000001,-1.511438099999964],[128.70597710000004,-1.515627299999949],[128.71222580000006,-1.51886],[128.71389540000007,-1.518479299999967],[128.716033,-1.514969899999926],[128.71504290000007,-1.510451399999965],[128.7125171,-1.5088241]]],[[[128.73204780000003,-1.521347299999945],[128.7374410000001,-1.517512499999953],[128.73690140000008,-1.509693899999945],[128.7345901000001,-1.505963099999974],[128.72700110000005,-1.505304299999978],[128.72299280000004,-1.511081599999955],[128.7236888000001,-1.518150699999978],[128.72510020000004,-1.520690799999954],[128.73204780000003,-1.521347299999945]]],[[[128.63635090000002,-1.512703199999976],[128.64100960000007,-1.511553499999934],[128.64607630000012,-1.508087299999943],[128.64722940000001,-1.503055599999925],[128.6453153000001,-1.4997688],[128.63839380000002,-1.498624],[128.6309351000001,-1.502508899999953],[128.62941790000002,-1.506150199999979],[128.6301959000001,-1.510856299999944],[128.63224490000005,-1.512585599999966],[128.63635090000002,-1.512703199999976]]],[[[128.65256050000005,-1.492287899999951],[128.66265910000004,-1.487682499999949],[128.66239030000008,-1.484159499999976],[128.6602365000001,-1.481720099999961],[128.65727440000012,-1.482126199999925],[128.65139030000012,-1.486434299999928],[128.64973340000006,-1.490390399999967],[128.6504063000001,-1.492423],[128.65256050000005,-1.492287899999951]]],[[[128.9367,-1.393912799999953],[128.9372082000001,-1.392975199999967],[128.93530080000005,-1.393063799999936],[128.9367,-1.393912799999953]]],[[[128.92794550000008,-1.3806496],[128.9244973000001,-1.378661],[128.918432,-1.380674],[128.916714,-1.378867599999978],[128.91194640000003,-1.384453],[128.9113264,-1.391545299999962],[128.91675320000002,-1.398708899999974],[128.92228780000005,-1.397529599999928],[128.9295221000001,-1.3903078],[128.9308691000001,-1.385528199999953],[128.92794550000008,-1.3806496]]]]},"properties":{"shapeName":"Seram Bagian Barat","shapeISO":"","shapeID":"22746128B64057916233658","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[131.8654901000001,-4.7618411],[131.86625190000007,-4.755899599999964],[131.86434610000003,-4.758331699999928],[131.8654901000001,-4.7618411]]],[[[131.73654480000005,-4.703993599999933],[131.72810290000007,-4.700648399999977],[131.72455660000003,-4.707297099999948],[131.7224937000001,-4.70813],[131.7220148,-4.711818699999981],[131.72759280000002,-4.715885299999968],[131.73116130000005,-4.723452799999961],[131.72794790000012,-4.739044699999965],[131.72752790000004,-4.748593299999925],[131.72870590000002,-4.751802],[131.72765170000002,-4.754632299999969],[131.73305060000007,-4.7602988],[131.73629170000004,-4.7753271],[131.73508440000012,-4.779190799999981],[131.73915310000007,-4.782897199999979],[131.7401536000001,-4.7881507],[131.74526850000007,-4.783460799999943],[131.74868090000007,-4.776769399999978],[131.7467626,-4.772624099999973],[131.74923750000005,-4.767507299999977],[131.74864790000004,-4.7630842],[131.75768230000006,-4.753429599999947],[131.75926320000008,-4.739259799999957],[131.75708450000002,-4.725882099999978],[131.75133920000007,-4.717491499999937],[131.73654480000005,-4.703993599999933]]],[[[131.69684460000008,-4.590816299999972],[131.6916079,-4.585253099999932],[131.68895840000005,-4.592840199999955],[131.69082860000003,-4.595953399999928],[131.69172260000005,-4.594163899999955],[131.6969103,-4.597465399999976],[131.70179110000004,-4.598415199999977],[131.7053337000001,-4.605194499999925],[131.70330030000002,-4.607781599999953],[131.7036171000001,-4.6106022],[131.7061318000001,-4.612091799999973],[131.70934810000006,-4.610092599999973],[131.70924860000002,-4.608357099999978],[131.70662920000007,-4.607520699999952],[131.70350050000002,-4.6005462],[131.70344320000004,-4.596730499999978],[131.7005411,-4.594847799999968],[131.6981022000001,-4.590696799999932],[131.69684460000008,-4.590816299999972]]],[[[131.788619,-4.5453552],[131.7833879000001,-4.541813199999979],[131.786804,-4.545462699999973],[131.788619,-4.5453552]]],[[[131.60957970000004,-4.423797499999978],[131.60847450000006,-4.4277024],[131.61452150000002,-4.436016599999959],[131.61468460000003,-4.441740399999958],[131.6258001000001,-4.448315299999933],[131.6284578000001,-4.448040399999968],[131.6295229000001,-4.450095399999952],[131.63044850000006,-4.449087799999973],[131.6316567,-4.451206799999966],[131.63108970000008,-4.4563728],[131.63055450000002,-4.452788899999973],[131.62753370000007,-4.4554825],[131.62557630000003,-4.453739199999973],[131.6248167000001,-4.455183799999929],[131.6295371000001,-4.462132199999928],[131.62960540000006,-4.465259599999968],[131.6378241000001,-4.481032899999946],[131.637649,-4.486004599999944],[131.64109760000008,-4.488969],[131.6406329,-4.490936199999965],[131.643291,-4.492698399999938],[131.64443790000007,-4.495606499999951],[131.64851650000003,-4.498812499999929],[131.6500813,-4.502972199999931],[131.65096660000006,-4.513028799999972],[131.65431750000005,-4.514630499999953],[131.65266240000005,-4.517455699999971],[131.65391590000002,-4.520148199999937],[131.65180140000007,-4.530313299999932],[131.654061,-4.534465399999931],[131.65756150000004,-4.537852599999951],[131.66936220000002,-4.535800599999959],[131.67278140000008,-4.5384204],[131.68061250000005,-4.539596399999937],[131.68141490000005,-4.536222099999975],[131.67943050000008,-4.533059],[131.68122010000002,-4.529924899999969],[131.6793332000001,-4.528009499999939],[131.68106120000004,-4.519768399999975],[131.67957660000002,-4.5183824],[131.6800211000001,-4.505110499999944],[131.67400820000012,-4.498741499999937],[131.67313860000002,-4.495452199999932],[131.66769950000003,-4.493521099999953],[131.6660419000001,-4.489732599999968],[131.667144,-4.488164799999936],[131.6619972000001,-4.485988599999928],[131.65712670000005,-4.477219199999979],[131.6567999,-4.469824799999969],[131.65350300000011,-4.467275899999947],[131.65083960000004,-4.462013199999944],[131.63970870000003,-4.453251699999953],[131.6314774000001,-4.437772499999937],[131.62299340000004,-4.435629199999937],[131.60957970000004,-4.423797499999978]]],[[[131.58375620000004,-4.378762699999925],[131.57947260000003,-4.379959099999951],[131.57781950000003,-4.378792199999964],[131.57966740000006,-4.380963],[131.579348,-4.383263299999953],[131.58362910000005,-4.386777599999959],[131.585546,-4.396330299999931],[131.5875588,-4.397863799999925],[131.59193570000002,-4.408534699999962],[131.59676330000002,-4.411450699999932],[131.59978350000006,-4.416577899999936],[131.6062902000001,-4.416691899999933],[131.60630990000004,-4.405938699999979],[131.60174440000003,-4.402231699999959],[131.6007386000001,-4.402787599999954],[131.5938129000001,-4.394411499999933],[131.5930264000001,-4.395729499999959],[131.58691980000003,-4.386522],[131.5868630000001,-4.3838487],[131.58375620000004,-4.378762699999925]]],[[[131.55521270000008,-4.343320899999981],[131.5553946000001,-4.347095099999933],[131.5576,-4.348345599999959],[131.55828210000004,-4.345503599999972],[131.55521270000008,-4.343320899999981]]],[[[131.2968717000001,-4.0755381],[131.2808089,-4.070604299999957],[131.2765508000001,-4.073364499999968],[131.2752786000001,-4.075822],[131.27333580000004,-4.075978599999928],[131.27458680000007,-4.077008299999932],[131.27275630000008,-4.076573399999972],[131.27227090000008,-4.080162499999972],[131.2748001000001,-4.088488199999972],[131.2831294,-4.099332599999968],[131.28872710000007,-4.111107899999979],[131.2945248000001,-4.116104299999961],[131.29655580000008,-4.122465199999965],[131.29945340000006,-4.126173599999959],[131.30579820000003,-4.125911199999962],[131.3227677000001,-4.130181],[131.33731090000003,-4.130712199999948],[131.3531005000001,-4.146809],[131.36525930000005,-4.145667699999933],[131.37167840000006,-4.151208899999972],[131.37228670000002,-4.1586761],[131.37075690000006,-4.160876199999961],[131.37325350000003,-4.167421199999978],[131.37678010000002,-4.171811099999957],[131.38200480000012,-4.174533599999961],[131.38980950000007,-4.175777399999959],[131.39692420000006,-4.173352099999931],[131.4005956000001,-4.170483],[131.40336220000006,-4.164581699999928],[131.40253140000004,-4.160815199999945],[131.3910125000001,-4.152936599999975],[131.38567290000003,-4.142829199999937],[131.38086870000006,-4.137254599999949],[131.37733250000008,-4.127973899999972],[131.36817730000007,-4.122562799999969],[131.3572818,-4.118197],[131.34921090000012,-4.116994],[131.33889780000004,-4.111420799999962],[131.33462940000004,-4.108118499999932],[131.32853510000007,-4.098564799999963],[131.3225579000001,-4.092397299999959],[131.3113346,-4.083224199999961],[131.2968717000001,-4.0755381]]],[[[131.242763,-4.013125599999967],[131.24327340000002,-4.003767399999958],[131.23082560000012,-3.990196599999933],[131.22170810000011,-3.984739299999944],[131.2075747,-3.979237799999964],[131.2058042000001,-3.980017499999974],[131.20761950000008,-3.997563099999979],[131.21099860000004,-4.009770499999945],[131.21722440000008,-4.019853299999966],[131.21771380000007,-4.026884],[131.22047180000004,-4.033842799999945],[131.21961480000004,-4.036189199999967],[131.225987,-4.04478],[131.23638560000006,-4.053282899999942],[131.2426372000001,-4.055576099999939],[131.24404210000012,-4.049401299999943],[131.243332,-4.048405899999977],[131.24292220000007,-4.050107599999933],[131.241343,-4.044881],[131.2393456000001,-4.043501699999979],[131.23779320000006,-4.034364399999959],[131.24145870000007,-4.024782199999947],[131.24150150000003,-4.014277099999958],[131.242763,-4.013125599999967]]],[[[131.4086483000001,-3.948640699999942],[131.37847580000005,-3.966098399999964],[131.3687295000001,-3.969726399999956],[131.36689330000002,-3.973020199999951],[131.37341190000006,-3.984467699999925],[131.37587510000003,-3.986232599999937],[131.37968690000002,-3.998119],[131.38274260000003,-4.000712199999953],[131.38706160000004,-4.017109699999935],[131.39216670000008,-4.0201022],[131.3926090000001,-4.024752499999977],[131.39591930000006,-4.027698399999963],[131.39598730000012,-4.033380299999976],[131.3998329000001,-4.043375499999968],[131.4075474000001,-4.0511409],[131.4122291000001,-4.053899599999966],[131.4153143000001,-4.066259399999979],[131.41790140000012,-4.071273799999972],[131.42437930000006,-4.077625299999966],[131.43106210000008,-4.079202599999974],[131.43840440000008,-4.078348099999971],[131.43800650000003,-4.075938599999972],[131.44676540000012,-4.071023799999978],[131.450041,-4.067397899999946],[131.44771560000004,-4.058372399999939],[131.4422412,-4.055447499999957],[131.43969110000012,-4.050863499999934],[131.44751510000003,-4.039217299999962],[131.4428941000001,-4.032697599999949],[131.443232,-4.028454199999942],[131.4401199,-4.019796799999938],[131.43509730000005,-4.017912499999966],[131.43075010000007,-4.011323],[131.42967720000001,-3.996381699999972],[131.42546740000012,-3.987532699999974],[131.42526250000003,-3.977009099999975],[131.4224134000001,-3.970129899999961],[131.4216593000001,-3.959258199999965],[131.422678,-3.951665699999978],[131.42008690000011,-3.949932199999978],[131.4086483000001,-3.948640699999942]]],[[[131.20445560000007,-3.926284099999975],[131.20499940000002,-3.924794899999938],[131.2036964,-3.923745899999972],[131.19956350000007,-3.924335699999972],[131.20445560000007,-3.926284099999975]]],[[[131.17122070000005,-3.919352199999935],[131.165512,-3.919324],[131.1812317,-3.919842799999969],[131.17122070000005,-3.919352199999935]]],[[[130.98849880000012,-3.912628799999936],[130.98729420000006,-3.913073699999927],[130.98913670000002,-3.9135115],[130.98849880000012,-3.912628799999936]]],[[[131.04777550000006,-3.915960699999971],[131.04952960000003,-3.912511699999925],[131.0462957000001,-3.913645599999938],[131.04777550000006,-3.915960699999971]]],[[[130.91610720000006,-3.905520899999942],[130.9175795000001,-3.904487199999949],[130.91523040000004,-3.905222399999957],[130.91610720000006,-3.905520899999942]]],[[[130.89608280000004,-3.898424499999976],[130.894819,-3.897118099999943],[130.89563610000005,-3.899327],[130.8974720000001,-3.898442899999964],[130.89608280000004,-3.898424499999976]]],[[[130.891375,-3.895601899999974],[130.89239720000012,-3.894011199999966],[130.88955850000002,-3.895606],[130.88870180000004,-3.894749299999944],[130.88827730000003,-3.896081099999947],[130.891375,-3.895601899999974]]],[[[130.86004120000007,-3.889269],[130.86114440000006,-3.885617599999932],[130.85920540000006,-3.888197599999955],[130.86004120000007,-3.889269]]],[[[130.86417960000006,-3.885889899999938],[130.864625,-3.8843649],[130.86325850000003,-3.884883099999968],[130.86417960000006,-3.885889899999938]]],[[[130.90029460000005,-3.877448],[130.89661120000005,-3.8781048],[130.89446010000006,-3.880693599999972],[130.89389860000006,-3.884738699999957],[130.89632560000007,-3.887765399999978],[130.90195070000004,-3.882835099999966],[130.901865,-3.879998799999953],[130.899831,-3.883982],[130.8984862000001,-3.884148599999946],[130.89833450000003,-3.8822462],[130.89580220000005,-3.882768499999941],[130.8971156,-3.880351],[130.90243,-3.879435899999976],[130.90029460000005,-3.877448]]],[[[130.9616192000001,-3.8762344],[130.9609229,-3.875493899999981],[130.95870270000012,-3.877791599999966],[130.9642354,-3.883641599999976],[130.9616192000001,-3.8762344]]],[[[130.8568954000001,-3.867683799999952],[130.85593170000004,-3.868052599999942],[130.8621359000001,-3.873725199999967],[130.86785280000004,-3.875714499999958],[130.8568954000001,-3.867683799999952]]],[[[130.9351799000001,-3.869098099999974],[130.9374993,-3.866323],[130.9326188000001,-3.867861799999957],[130.92852430000005,-3.874167299999954],[130.92070910000007,-3.875842499999976],[130.9163926000001,-3.883594599999981],[130.920514,-3.882635899999968],[130.9177284000001,-3.888237599999968],[130.91837670000007,-3.890879899999959],[130.91684480000004,-3.890942699999925],[130.915923,-3.888208299999974],[130.91647650000004,-3.884799399999963],[130.9130722000001,-3.886197699999968],[130.91302140000005,-3.891529899999966],[130.9112798000001,-3.8919269],[130.90918840000006,-3.8960067],[130.91290370000002,-3.901523099999963],[130.91900270000008,-3.903211099999965],[130.92421230000002,-3.906658599999957],[130.9198239000001,-3.902297],[130.92135140000005,-3.898652299999981],[130.9287111000001,-3.896277199999929],[130.93709850000005,-3.896154099999933],[130.9507139000001,-3.889889599999947],[130.956529,-3.883787799999936],[130.956712,-3.881503299999963],[130.95531440000002,-3.883794299999977],[130.95553960000007,-3.878958699999941],[130.95093180000003,-3.883515199999977],[130.94756470000004,-3.8833784],[130.947557,-3.875161799999944],[130.94614070000011,-3.874115699999948],[130.94240460000003,-3.874065],[130.9392074000001,-3.877172099999939],[130.93817280000007,-3.881631399999947],[130.93458510000005,-3.880264],[130.93222670000011,-3.877258599999948],[130.93205310000008,-3.872375699999964],[130.9351799000001,-3.869098099999974]]],[[[130.81806730000005,-3.851676],[130.80527540000003,-3.853788899999927],[130.80024990000004,-3.852132799999936],[130.7971010000001,-3.853737699999954],[130.79567250000002,-3.856375299999968],[130.79658870000003,-3.863374699999952],[130.79900440000006,-3.862479499999949],[130.81623180000008,-3.870070699999928],[130.8153496000001,-3.870994],[130.82174270000007,-3.870512799999972],[130.82166510000002,-3.864296599999932],[130.8191524,-3.860641799999939],[130.817565,-3.854678199999967],[130.81909530000007,-3.852875199999971],[130.81806730000005,-3.851676]]],[[[130.7186554000001,-3.846580099999926],[130.72013540000012,-3.843903],[130.71789520000004,-3.842686799999967],[130.71854760000008,-3.840980299999956],[130.717121,-3.8414676],[130.7161053000001,-3.844802499999957],[130.7169976,-3.847222899999963],[130.7186554000001,-3.846580099999926]]],[[[130.87842590000002,-3.665049],[130.88039240000012,-3.661705499999925],[130.87820380000005,-3.6581621],[130.8753732,-3.6622727],[130.87613910000005,-3.664288599999963],[130.87842590000002,-3.665049]]],[[[130.8728771000001,-3.525525499999958],[130.8707352,-3.523455499999955],[130.868622,-3.523557399999959],[130.86707730000012,-3.528587699999946],[130.873402,-3.532918799999948],[130.87476030000005,-3.531891099999939],[130.87509340000008,-3.528376299999934],[130.8728771000001,-3.525525499999958]]],[[[130.79218750000007,-3.333757899999966],[130.79903920000004,-3.333089399999949],[130.803387,-3.329378399999939],[130.8057176000001,-3.321631299999979],[130.80101960000002,-3.316926899999942],[130.7993272000001,-3.307167399999969],[130.79061360000003,-3.304490099999953],[130.7808867000001,-3.297101399999974],[130.7758636000001,-3.297783699999968],[130.76683350000008,-3.305542799999955],[130.76249510000002,-3.314640099999963],[130.76585780000005,-3.322040299999969],[130.78497310000012,-3.334461699999963],[130.79218750000007,-3.333757899999966]]],[[[129.85842760000003,-3.336138499999947],[129.866421,-3.336746699999935],[129.87762370000007,-3.340574699999934],[129.8861194000001,-3.341472099999976],[129.88887320000003,-3.34123],[129.89174380000009,-3.3387174],[129.9043190000001,-3.335869599999967],[129.9273796000001,-3.3382165],[129.93597290000002,-3.345589199999949],[129.94578300000012,-3.350752899999975],[129.95151850000002,-3.352094799999975],[129.9576187,-3.356453699999975],[129.960396,-3.359819799999968],[129.96197510000002,-3.367016299999932],[129.969727,-3.37649],[129.97082580000006,-3.381044599999939],[129.9691146,-3.389372199999968],[129.97502780000002,-3.40876],[129.9708567,-3.426608399999964],[129.98917690000007,-3.441820499999949],[130.00534060000007,-3.470776299999955],[130.0087585000001,-3.472394699999938],[130.0154314,-3.482741699999963],[130.0359409,-3.485537199999953],[130.042431,-3.490197199999955],[130.0456319000001,-3.4894787],[130.06435840000006,-3.491597299999967],[130.07209010000008,-3.4948426],[130.08129340000005,-3.495747],[130.09248480000008,-3.501253199999951],[130.09950460000005,-3.500875099999973],[130.11748310000007,-3.512993299999948],[130.12053350000008,-3.516156499999965],[130.12264330000005,-3.523437699999931],[130.13168840000003,-3.531977099999949],[130.13999,-3.533761399999946],[130.15301420000003,-3.539814099999944],[130.16444320000005,-3.540629399999943],[130.17288480000002,-3.543642899999952],[130.17655320000006,-3.548791899999969],[130.1783511000001,-3.5480626],[130.19898950000004,-3.552128599999946],[130.20524460000001,-3.555371299999933],[130.2060110000001,-3.559127899999964],[130.21691690000011,-3.562500299999954],[130.243599,-3.565942099999972],[130.2487351000001,-3.5691154],[130.25205070000004,-3.573325],[130.25844080000002,-3.576335499999971],[130.2769032000001,-3.579619899999955],[130.2848792000001,-3.585058799999956],[130.29663,-3.586575],[130.30309080000006,-3.593750599999964],[130.31603860000007,-3.596726399999966],[130.32369140000003,-3.6013578],[130.32790180000006,-3.607173799999941],[130.32581520000008,-3.6125205],[130.32751970000004,-3.614921799999934],[130.34244730000012,-3.612424],[130.35349220000012,-3.621200199999976],[130.3717319000001,-3.618907699999966],[130.39391080000007,-3.6245071],[130.402228,-3.628556699999933],[130.4151696,-3.631293299999925],[130.42621250000002,-3.643601899999965],[130.446569,-3.655527099999972],[130.44778840000004,-3.654352299999971],[130.4470133000001,-3.655179799999928],[130.44866810000008,-3.657633],[130.47233530000005,-3.685963799999968],[130.47380250000003,-3.69286],[130.4708498000001,-3.696226799999977],[130.47144930000002,-3.698221299999943],[130.47362140000007,-3.700776],[130.47914920000005,-3.7020099],[130.48394220000012,-3.707231699999966],[130.48979450000002,-3.707861],[130.50353170000005,-3.706169799999941],[130.53260850000004,-3.7098304],[130.55017450000003,-3.713984899999957],[130.56651130000012,-3.720175099999949],[130.5723974000001,-3.726337899999976],[130.5714157000001,-3.728581599999927],[130.57497540000008,-3.734855699999969],[130.5741362000001,-3.740781799999979],[130.57962740000005,-3.740791099999967],[130.58403650000002,-3.743227299999944],[130.5895752,-3.748727599999938],[130.595164,-3.751411499999961],[130.59976930000005,-3.758789399999955],[130.60481120000009,-3.760667399999932],[130.6106456000001,-3.765925699999968],[130.61341660000005,-3.775357199999974],[130.612809,-3.780928599999925],[130.6093413000001,-3.780952699999943],[130.60961870000006,-3.785598299999947],[130.61177980000002,-3.788864799999942],[130.60995,-3.789090599999952],[130.6140219,-3.793276699999979],[130.61904790000006,-3.794372199999941],[130.6126442000001,-3.7908171],[130.6141030000001,-3.789242299999955],[130.61975710000002,-3.79352],[130.62088440000002,-3.791484],[130.62562480000008,-3.791853299999957],[130.62557130000005,-3.788927799999954],[130.63059440000006,-3.787325499999952],[130.6321557000001,-3.788474099999974],[130.6324469000001,-3.7930399],[130.6459165000001,-3.798095899999964],[130.6529541000001,-3.804993899999943],[130.65392310000004,-3.807635199999936],[130.65531750000002,-3.807421699999963],[130.65516030000003,-3.804370499999948],[130.6568731000001,-3.8019565],[130.656755,-3.8029387],[130.6646799,-3.801364299999932],[130.66735360000007,-3.802967599999931],[130.67359030000011,-3.802162],[130.6847758,-3.804442],[130.6921125,-3.808280299999979],[130.6975083000001,-3.813050499999974],[130.7003079000001,-3.821322299999963],[130.7029245000001,-3.820939899999928],[130.70836520000012,-3.824577499999975],[130.7165202000001,-3.826904499999955],[130.73372890000007,-3.823273299999926],[130.74285940000004,-3.824292899999932],[130.74678710000012,-3.826272199999948],[130.74941350000006,-3.834475599999962],[130.75411940000004,-3.837629099999958],[130.75890430000004,-3.835917],[130.75910470000008,-3.8338831],[130.7636242000001,-3.830557499999941],[130.76392090000002,-3.8283025],[130.7671954000001,-3.827982899999938],[130.7745596000001,-3.835985],[130.77703110000004,-3.844422399999928],[130.7753802000001,-3.8476366],[130.77698140000007,-3.848961399999951],[130.7805839,-3.847889499999951],[130.78356840000004,-3.850865599999963],[130.7917139000001,-3.8524779],[130.79840280000008,-3.851117],[130.8097762000001,-3.852560599999947],[130.81840050000005,-3.850943099999938],[130.820001,-3.852949499999966],[130.8182051000001,-3.854596399999934],[130.8196378,-3.860270599999978],[130.8224931000001,-3.864268099999947],[130.82235040000012,-3.868551099999934],[130.82587880000005,-3.871545799999978],[130.8285631000001,-3.8720001],[130.82836210000005,-3.875195099999928],[130.83013710000012,-3.873256099999935],[130.831978,-3.875452399999972],[130.83468720000008,-3.8743172],[130.83604790000004,-3.875879],[130.84712980000006,-3.873880899999961],[130.84849,-3.8713859],[130.84640020000006,-3.869514099999947],[130.84922760000006,-3.8701351],[130.85091410000007,-3.865241399999945],[130.84754350000003,-3.858847699999956],[130.8448774000001,-3.857551799999953],[130.84008170000004,-3.849443399999927],[130.83605680000005,-3.845686899999976],[130.82634890000008,-3.840623599999958],[130.82083150000005,-3.832879],[130.82120880000002,-3.820087299999955],[130.8237570000001,-3.817863299999942],[130.826466,-3.810500699999977],[130.826337,-3.794257],[130.82778510000003,-3.790053899999975],[130.83252420000008,-3.784009599999933],[130.83195840000008,-3.777409499999976],[130.8297496,-3.773220699999968],[130.8295101000001,-3.767423699999938],[130.8317241000001,-3.762171699999953],[130.82829760000004,-3.744683299999963],[130.8304068000001,-3.729954299999974],[130.8255412000001,-3.710150299999952],[130.8217787000001,-3.702087399999925],[130.832305,-3.659413499999971],[130.84143170000004,-3.646642899999961],[130.8471823000001,-3.643465799999944],[130.8511949000001,-3.639044599999977],[130.8641354,-3.636571],[130.8752843000001,-3.624821199999928],[130.88084070000002,-3.614342499999964],[130.8827678,-3.589284099999929],[130.8818854000001,-3.583641099999966],[130.87636040000007,-3.574589],[130.87528140000006,-3.566630499999974],[130.87295050000012,-3.567284099999938],[130.8656688000001,-3.557747499999948],[130.86168310000005,-3.548995199999979],[130.85735770000008,-3.550037199999963],[130.85236350000002,-3.547496199999955],[130.84894770000005,-3.544492299999945],[130.84789200000012,-3.540593699999931],[130.8392606000001,-3.536884499999928],[130.83582820000004,-3.532890399999928],[130.8361278000001,-3.527644299999963],[130.83169450000003,-3.527753299999972],[130.82499450000012,-3.521943799999974],[130.82283660000007,-3.5166642],[130.8215656000001,-3.502528199999972],[130.8183084000001,-3.501247899999953],[130.81548680000003,-3.497016499999972],[130.81150790000004,-3.4957428],[130.80659570000012,-3.488760699999943],[130.8068733,-3.476501399999961],[130.8100856000001,-3.472034199999939],[130.81507280000005,-3.468644499999925],[130.8196421,-3.467716899999971],[130.8208320000001,-3.470326299999954],[130.82736690000002,-3.4688059],[130.8317674000001,-3.470394499999941],[130.84291340000004,-3.467585299999939],[130.84096320000003,-3.455577299999959],[130.83910670000012,-3.454634299999952],[130.84089130000007,-3.461558499999967],[130.83724970000003,-3.455143799999973],[130.82294990000003,-3.4421307],[130.81405630000006,-3.428454899999963],[130.80471540000008,-3.406737699999951],[130.7696701000001,-3.402673299999947],[130.74890520000008,-3.401841899999965],[130.74242170000002,-3.404679399999964],[130.73527720000004,-3.400779899999975],[130.731172,-3.403178199999957],[130.72338220000006,-3.401236],[130.71430150000003,-3.403208499999948],[130.7060825000001,-3.403223099999934],[130.6987183000001,-3.397367399999951],[130.6870461000001,-3.401735199999962],[130.682077,-3.405004399999939],[130.6736095000001,-3.406049399999972],[130.6628204000001,-3.4013427],[130.66194930000006,-3.397866399999941],[130.65978450000011,-3.396783299999925],[130.65999450000004,-3.393087699999967],[130.65652080000007,-3.385485899999935],[130.65305980000005,-3.3852745],[130.65067250000004,-3.380496499999936],[130.6474270000001,-3.379849899999954],[130.64330790000008,-3.374205399999937],[130.6428506000001,-3.359425199999976],[130.63265330000002,-3.340314],[130.62936690000004,-3.314669899999956],[130.63215750000006,-3.301840499999969],[130.6386202000001,-3.286179299999958],[130.63818060000006,-3.281832699999939],[130.6366564000001,-3.275531499999943],[130.6294991000001,-3.2629358],[130.631201,-3.245326199999965],[130.63032270000008,-3.237067599999932],[130.62295760000006,-3.229471499999931],[130.62208740000005,-3.226212299999929],[130.6127662,-3.212315499999931],[130.61425450000002,-3.196010299999955],[130.61215550000009,-3.186050199999954],[130.6079893000001,-3.182651799999974],[130.6038817000001,-3.156091099999969],[130.5999111000001,-3.147851499999945],[130.58570270000007,-3.135327599999925],[130.5759144000001,-3.122646299999928],[130.56463710000003,-3.120356499999957],[130.55536970000003,-3.1136264],[130.55349360000002,-3.107526699999937],[130.53930450000007,-3.107136599999933],[130.5341340000001,-3.103156299999966],[130.52901540000005,-3.1016993],[130.51067880000005,-3.103643599999941],[130.50925260000008,-3.102423099999953],[130.5063722000001,-3.105866699999979],[130.4952627,-3.103588499999944],[130.48928720000004,-3.095458299999962],[130.48457580000002,-3.085642699999937],[130.4817200000001,-3.075491799999952],[130.47750140000005,-3.071152799999936],[130.45927990000007,-3.056774299999972],[130.45797140000002,-3.059700799999973],[130.4603131,-3.0590678],[130.45934050000005,-3.062135299999966],[130.45524970000008,-3.064086299999929],[130.4510914000001,-3.063441099999977],[130.44482170000003,-3.059990099999936],[130.4420709000001,-3.0484619],[130.44257740000012,-3.037439599999971],[130.43948740000008,-3.031468299999972],[130.43424310000012,-3.0282849],[130.4242571000001,-3.025977499999954],[130.41958710000006,-3.022781399999928],[130.41355050000004,-3.0114364],[130.3895883,-2.996910299999968],[130.38411370000006,-2.9882624],[130.37936190000005,-2.987453199999948],[130.37082370000007,-2.990601599999934],[130.36578170000007,-2.989648899999963],[130.36097070000005,-2.9873727],[130.35251110000002,-2.974865399999942],[130.34167710000008,-2.974957],[130.338859,-2.976491899999928],[130.33808480000005,-2.974932],[130.3167016000001,-2.972546],[130.3110706000001,-2.973121299999946],[130.30888590000006,-2.975247399999944],[130.3080715000001,-2.973014099999943],[130.29451960000006,-2.976645599999927],[130.2767473,-2.975823599999956],[130.2652700000001,-2.979114899999956],[130.24840960000006,-2.986712],[130.2207317000001,-3.004986499999973],[130.1955431,-3.010330599999975],[130.18285350000008,-3.010339399999964],[130.17615940000007,-3.007149599999934],[130.17538950000005,-3.006179599999939],[130.1766861000001,-3.004978599999959],[130.1724895000001,-2.997494899999936],[130.1723710000001,-2.9901799],[130.16991540000004,-2.988760299999967],[130.1517447000001,-2.987147099999959],[130.14245230000006,-2.994317499999966],[130.14179910000007,-2.993112399999973],[130.12718990000008,-2.997968899999933],[130.11231970000006,-2.9956223],[130.11019940000006,-2.995546199999978],[130.110239,-2.996612499999969],[130.10973930000011,-3.007770499999936],[130.1080151000001,-3.012117399999966],[130.10395620000008,-3.014730499999928],[130.106863,-3.022069899999963],[130.10429340000007,-3.023944799999924],[130.10341070000004,-3.028848599999947],[130.10527580000007,-3.030808299999933],[130.10572580000007,-3.037315699999965],[130.101965,-3.046781499999952],[130.10287670000002,-3.060258899999951],[130.1006413,-3.069297799999958],[130.10315130000004,-3.074604],[130.101881,-3.075700799999936],[130.1033916,-3.080246],[130.10102270000004,-3.081979799999942],[130.105703,-3.090680199999952],[130.1033867000001,-3.117804199999966],[130.1063087000001,-3.122024899999928],[130.1058217000001,-3.139881499999944],[130.09656870000003,-3.151894199999958],[130.093322,-3.1704002],[130.0960817,-3.177705199999934],[130.09566030000008,-3.192620099999942],[130.0847122,-3.208470499999976],[130.07817720000003,-3.195051699999965],[130.06855770000004,-3.1923637],[130.05817680000007,-3.192163599999958],[130.04424660000006,-3.181527399999936],[130.02020030000006,-3.182489299999929],[129.92708390000007,-3.163839499999938],[129.91273680000006,-3.167938699999979],[129.91516430000001,-3.177302099999963],[129.91343040000004,-3.1825041],[129.91421060000005,-3.198586699999964],[129.910669,-3.209211599999946],[129.9001654000001,-3.221735199999955],[129.9058486,-3.233433199999979],[129.9031423,-3.2385683],[129.8996883000001,-3.2592792],[129.8948286000001,-3.261144899999977],[129.88441840000007,-3.269297699999925],[129.88279290000003,-3.278328699999975],[129.8837390000001,-3.286516099999972],[129.87981090000005,-3.294895899999972],[129.87634070000001,-3.297691],[129.87380170000006,-3.306302199999948],[129.8580125000001,-3.32046],[129.85623270000008,-3.323683699999947],[129.85559590000003,-3.329824699999961],[129.85842760000003,-3.336138499999947]]]]},"properties":{"shapeName":"Seram Bagian Timur","shapeISO":"","shapeID":"22746128B72017030474196","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[106.21916230000005,-5.940700299999946],[106.216492,-5.941037899999969],[106.21568330000008,-5.942997699999978],[106.220856,-5.943336299999942],[106.22148160000006,-5.942407399999979],[106.21916230000005,-5.940700299999946]]],[[[105.85638560000007,-5.937729499999932],[105.84800930000006,-5.942664399999956],[105.83792080000006,-5.946306599999957],[105.83906920000004,-5.947378199999946],[105.84046530000006,-5.9464682],[105.84165210000003,-5.948255499999959],[105.83549810000005,-5.9490071],[105.83659830000005,-5.946436699999936],[105.83401860000004,-5.944976899999972],[105.82972440000003,-5.950695899999971],[105.837043,-5.956527599999959],[105.84612490000006,-5.956867699999975],[105.84867350000007,-5.958187599999974],[105.84924150000006,-5.9631683],[105.85069110000006,-5.964497699999981],[105.85126080000003,-5.980137],[105.85727710000003,-5.974913399999934],[105.86149460000007,-5.973812899999928],[105.86624180000007,-5.967419699999937],[105.86320780000005,-5.9633247],[105.86361310000007,-5.959228699999926],[105.86056470000005,-5.955105399999979],[105.861704,-5.949869399999955],[105.85985790000007,-5.946016499999928],[105.85976340000008,-5.940067499999941],[105.85638560000007,-5.937729499999932]]],[[[106.16814450000004,-5.9323771],[106.16050750000005,-5.921534799999961],[106.14990270000004,-5.919417199999941],[106.13903840000006,-5.922002099999929],[106.13988530000006,-5.934299199999941],[106.14157140000003,-5.939476299999967],[106.152573,-5.944624699999963],[106.15615110000005,-5.944504],[106.16148410000005,-5.940623099999925],[106.16272770000006,-5.938152599999967],[106.167702,-5.936902799999928],[106.16904480000005,-5.935133699999938],[106.16814450000004,-5.9323771]]],[[[106.09356880000007,-5.900881099999935],[106.09272170000008,-5.899694299999965],[106.09160750000007,-5.901216199999965],[106.09413640000008,-5.902677499999925],[106.09356880000007,-5.900881099999935]]],[[[105.92320850000004,-6.046801499999958],[105.92150010000006,-6.047551],[105.91992,-6.0528],[105.91414660000004,-6.053151799999966],[105.91217820000008,-6.055379],[105.90254820000007,-6.059696699999961],[105.90298,-6.06086],[105.89446,-6.06284],[105.8931,-6.06584],[105.88306,-6.07099],[105.88181020000007,-6.075576599999977],[105.88273,-6.07782],[105.88108,-6.0767],[105.88347040000008,-6.082880199999977],[105.88277570000008,-6.089264399999934],[105.88078830000006,-6.0913519],[105.88149010000006,-6.0992442],[105.88023810000004,-6.108982399999945],[105.87838460000006,-6.1118482],[105.87334,-6.1131],[105.87022,-6.12007],[105.86531,-6.12339],[105.86308620000005,-6.128121699999951],[105.86360020000006,-6.135115699999972],[105.86085,-6.13961],[105.85614340000006,-6.141507499999932],[105.85461260000005,-6.146310799999981],[105.85465960000005,-6.153239799999938],[105.85258870000007,-6.158037699999966],[105.85323,-6.16441],[105.84699,-6.17147],[105.84656520000004,-6.175157599999977],[105.84321,-6.17981],[105.84160070000007,-6.188499399999955],[105.83980170000007,-6.188933],[105.84086380000008,-6.189698],[105.83912410000005,-6.189066399999945],[105.84133610000004,-6.192624499999965],[105.83580730000006,-6.199916899999948],[105.83248,-6.20927],[105.83144,-6.2299],[105.82533030000008,-6.238401799999963],[105.82583990000006,-6.242300099999966],[105.83387030000006,-6.244286599999953],[105.84604350000006,-6.240304799999933],[105.84941830000008,-6.242082],[105.85601840000004,-6.241827499999943],[105.86547130000008,-6.239620699999932],[105.87187230000006,-6.236205599999948],[105.87610660000007,-6.2411447],[105.878899,-6.233400899999936],[105.88121830000006,-6.231714799999963],[105.88002050000006,-6.227469],[105.88138620000007,-6.221971099999962],[105.88495670000003,-6.221837599999958],[105.887566,-6.222764599999948],[105.89205210000006,-6.231074899999953],[105.89912450000008,-6.237522199999944],[105.897736,-6.239283199999932],[105.89852940000009,-6.243517499999939],[105.90267980000004,-6.242873699999961],[105.90433540000004,-6.246059],[105.90521280000007,-6.244326199999932],[105.90768470000006,-6.245479699999976],[105.908852,-6.2444869],[105.916367,-6.250012],[105.92112770000006,-6.266441],[105.920113,-6.2699319],[105.92202790000005,-6.274063699999942],[105.92919190000003,-6.279377499999953],[105.93457830000006,-6.275457],[105.93412820000003,-6.242354499999976],[105.93911780000008,-6.239054299999964],[105.946976,-6.237453599999981],[105.94836460000005,-6.242371699999978],[105.94688450000007,-6.245742899999925],[105.950951,-6.248554799999965],[105.958115,-6.244835499999965],[105.97173350000008,-6.245569299999943],[105.98101840000004,-6.2437693],[105.985802,-6.258357199999978],[105.99279060000003,-6.263111199999969],[105.99224890000005,-6.265150199999937],[105.99526250000008,-6.272317499999929],[106.00125160000005,-6.275415599999974],[106.02069130000007,-6.273662699999932],[106.02848850000004,-6.275710799999956],[106.03553040000008,-6.273455299999966],[106.041199,-6.275570099999925],[106.04959140000005,-6.268628799999931],[106.057175,-6.266137799999967],[106.07234990000006,-6.256781299999943],[106.07550080000004,-6.251985699999977],[106.07695040000004,-6.242818099999965],[106.08321410000008,-6.231297199999972],[106.092255,-6.236078899999939],[106.10097530000007,-6.231652899999972],[106.10742220000009,-6.243078899999944],[106.10828430000004,-6.248615],[106.11142,-6.251405],[106.11762270000008,-6.2517077],[106.12241390000008,-6.249288799999931],[106.12458830000008,-6.254194],[106.13241610000006,-6.258068299999934],[106.13432340000008,-6.258201799999938],[106.13874850000008,-6.254626499999972],[106.14537840000008,-6.254788599999927],[106.14576750000003,-6.251765899999953],[106.14759090000007,-6.251246699999967],[106.16551240000007,-6.252506],[106.16991450000006,-6.250959199999954],[106.17473630000006,-6.251363],[106.17570830000005,-6.269016],[106.17493810000008,-6.272276899999952],[106.17010250000004,-6.277960499999949],[106.170521,-6.283754099999953],[106.16917840000008,-6.2878705],[106.17083920000005,-6.290031],[106.17390410000007,-6.288421699999958],[106.18049970000004,-6.289306],[106.18443780000007,-6.287283799999955],[106.18924,-6.28911],[106.19689210000007,-6.288721299999963],[106.20568970000005,-6.291122599999937],[106.21174020000007,-6.290996899999925],[106.21537050000006,-6.294051899999943],[106.21564510000007,-6.298750699999971],[106.22078730000004,-6.299864099999979],[106.21808650000008,-6.3029735],[106.21710230000008,-6.308844399999941],[106.21981080000006,-6.308906299999933],[106.22235140000004,-6.311792199999957],[106.22510560000006,-6.312573699999973],[106.23142270000005,-6.310893799999974],[106.23398620000006,-6.3034342],[106.23853330000009,-6.306053899999938],[106.24401120000005,-6.304597599999965],[106.24356870000008,-6.298192799999981],[106.24517850000007,-6.297068399999944],[106.25899530000004,-6.299557],[106.25903350000004,-6.303634],[106.25279270000004,-6.306435399999941],[106.25229670000004,-6.308926399999962],[106.25965150000007,-6.310778899999946],[106.26161220000006,-6.309751299999959],[106.26102480000009,-6.306292799999937],[106.27437280000004,-6.301026399999955],[106.27688680000006,-6.301467199999934],[106.27962520000005,-6.303071799999941],[106.27988460000006,-6.3071626],[106.283089,-6.309500499999956],[106.28395870000008,-6.313442499999951],[106.29306820000005,-6.312283799999932],[106.29742460000006,-6.317148499999973],[106.29669220000005,-6.320597899999939],[106.30318480000005,-6.321338499999968],[106.30453520000003,-6.319942799999978],[106.30973080000007,-6.322400399999935],[106.31210350000003,-6.327708099999938],[106.31700160000008,-6.329535799999974],[106.31823760000009,-6.335269799999935],[106.32624080000005,-6.335832899999957],[106.33506040000009,-6.334448699999939],[106.33790310000006,-6.336776399999962],[106.35184930000008,-6.332389299999932],[106.35731530000004,-6.329131],[106.36532620000008,-6.332591899999954],[106.39117850000008,-6.329023499999948],[106.39575830000007,-6.329476299999953],[106.39972690000008,-6.332384799999943],[106.40140930000007,-6.331834],[106.40081050000003,-6.330655],[106.40290090000008,-6.327511699999945],[106.40213040000003,-6.325521799999933],[106.39905570000008,-6.327303699999959],[106.40065790000006,-6.324079899999958],[106.39778930000006,-6.324715],[106.399689,-6.318761699999925],[106.39692710000008,-6.317159499999946],[106.39932280000005,-6.316007],[106.39539360000003,-6.315908299999933],[106.39192230000003,-6.313926099999946],[106.39446280000004,-6.313864599999931],[106.39575220000006,-6.3068765],[106.39454680000006,-6.305188],[106.39741540000006,-6.30488],[106.39893370000004,-6.302556899999956],[106.39810210000007,-6.296638399999949],[106.39465360000008,-6.293346299999939],[106.39276910000007,-6.283473799999967],[106.39031250000005,-6.281788699999936],[106.39125850000005,-6.279576199999951],[106.39410430000004,-6.281206],[106.39513420000009,-6.279893299999969],[106.393059,-6.278534699999966],[106.39231140000004,-6.274662399999954],[106.38929010000004,-6.2767986],[106.38737510000004,-6.275221199999976],[106.38913750000006,-6.272078399999941],[106.38774140000004,-6.270117599999935],[106.389374,-6.268558399999961],[106.38732940000006,-6.268481599999973],[106.38481170000006,-6.266032499999937],[106.38775660000005,-6.264660699999979],[106.385834,-6.261419199999978],[106.38278220000007,-6.261917899999958],[106.38600180000009,-6.252714499999968],[106.38523890000005,-6.248879799999941],[106.38726070000007,-6.248177399999975],[106.38864160000008,-6.244926799999973],[106.38658170000008,-6.242783899999949],[106.38654350000007,-6.240463099999943],[106.38394950000009,-6.240240899999947],[106.38587980000005,-6.238192399999946],[106.38427760000008,-6.232294899999943],[106.38710810000003,-6.2303203],[106.38552880000009,-6.229226499999925],[106.38623070000006,-6.227916099999959],[106.38182860000006,-6.226667299999974],[106.38328580000007,-6.224027499999977],[106.38125640000004,-6.2209104],[106.37826560000008,-6.2199057],[106.379555,-6.218632599999978],[106.37312340000005,-6.221577],[106.370354,-6.218752299999949],[106.36698330000007,-6.217980199999943],[106.36644010000003,-6.214778299999978],[106.36817990000009,-6.213561899999945],[106.36899450000004,-6.215316299999927],[106.36787220000008,-6.216400199999953],[106.37003240000007,-6.216394599999944],[106.36907750000006,-6.212613799999929],[106.37033110000004,-6.209898799999962],[106.37289440000006,-6.212237],[106.374431,-6.211789199999942],[106.37283350000007,-6.207889899999941],[106.37703730000004,-6.204819499999928],[106.37656430000004,-6.201515499999971],[106.379288,-6.200752099999931],[106.37830510000003,-6.195803],[106.372803,-6.195759599999974],[106.37377960000003,-6.191479499999957],[106.37799860000007,-6.187745899999925],[106.38013490000009,-6.189008599999966],[106.38024930000006,-6.186276799999973],[106.38570430000004,-6.186179],[106.38749720000004,-6.179353099999958],[106.38943510000007,-6.180407399999979],[106.39075490000005,-6.179121799999962],[106.39129660000003,-6.176452],[106.38879420000006,-6.176722899999959],[106.38892390000007,-6.175308599999937],[106.39425680000005,-6.170584599999927],[106.39086180000004,-6.169736299999954],[106.39022850000003,-6.166372699999954],[106.39312770000004,-6.166412199999968],[106.39366180000007,-6.1650494],[106.39025140000007,-6.162693399999966],[106.39277680000004,-6.161934299999928],[106.39278440000004,-6.160369299999957],[106.38753540000005,-6.1573251],[106.38821440000004,-6.156320499999936],[106.39266990000004,-6.156810199999939],[106.39257840000005,-6.151805299999978],[106.38458280000003,-6.140445599999964],[106.37879970000006,-6.1348237],[106.37723570000009,-6.128857499999981],[106.37189510000007,-6.129230799999959],[106.36773710000006,-6.127336399999933],[106.36215240000007,-6.121276699999953],[106.36460140000008,-6.1203831],[106.36185480000006,-6.116478299999926],[106.35585050000009,-6.113596299999926],[106.35389740000005,-6.110239899999954],[106.35168480000004,-6.111114799999939],[106.35073880000004,-6.109929399999942],[106.34977750000007,-6.102745899999945],[106.352196,-6.102478799999972],[106.35279110000005,-6.101120799999933],[106.35128050000009,-6.1007455],[106.35016660000008,-6.097566],[106.35260040000009,-6.096776399999953],[106.35353120000008,-6.092441899999926],[106.35107450000004,-6.092054699999949],[106.35086080000008,-6.090602299999944],[106.35274530000004,-6.089271899999972],[106.35115080000008,-6.0872148],[106.34839660000006,-6.086581599999931],[106.33997370000009,-6.074607199999946],[106.33938620000004,-6.0631784],[106.34999870000007,-6.062485599999945],[106.35052520000005,-6.059746099999927],[106.34887440000006,-6.057255599999962],[106.35172410000007,-6.057596099999955],[106.35620550000004,-6.049717499999929],[106.359075,-6.0497813],[106.358149,-6.045726899999977],[106.366524,-6.038467799999978],[106.37075640000006,-6.037326899999925],[106.37236320000005,-6.044171199999937],[106.37430680000006,-6.040624399999956],[106.37874630000005,-6.038370499999928],[106.37991360000007,-6.034825199999943],[106.38311820000007,-6.032235699999944],[106.382976,-6.029722299999946],[106.38522790000007,-6.031166499999927],[106.38554760000005,-6.028718699999956],[106.38823730000007,-6.031220299999973],[106.38805660000008,-6.027903299999934],[106.39091050000007,-6.0289382],[106.39369990000006,-6.027711299999964],[106.39650750000004,-6.029094099999952],[106.39787320000005,-6.027823299999966],[106.40120720000004,-6.030308099999957],[106.40747860000005,-6.030905099999927],[106.41196340000005,-6.023995499999955],[106.40406830000006,-6.018709299999955],[106.40161030000007,-6.015139399999953],[106.39119340000008,-5.989097099999981],[106.39154450000007,-5.981664699999953],[106.38908660000004,-5.977217099999962],[106.36936460000004,-5.971423399999935],[106.36673110000004,-5.9723597],[106.36573620000007,-5.977392599999973],[106.36402510000005,-5.978493799999967],[106.36293740000008,-5.968887199999926],[106.36414880000007,-5.965326699999935],[106.36017240000007,-5.962270299999943],[106.35460490000008,-5.961341499999946],[106.35038320000007,-5.963533],[106.34107730000005,-5.977195399999971],[106.33386760000008,-5.981228499999929],[106.33326080000006,-5.983120199999973],[106.32933,-5.98076],[106.32692830000008,-5.983750699999973],[106.31460550000008,-5.9764031],[106.31263090000004,-5.9732181],[106.30622180000006,-5.968422399999952],[106.29258270000008,-5.969186299999933],[106.28404710000007,-5.966263699999956],[106.269874,-5.9648016],[106.2673,-5.963091899999938],[106.26660580000004,-5.960682299999974],[106.26390520000007,-5.961720899999932],[106.26500030000005,-5.9578875],[106.26366460000008,-5.959357499999953],[106.255911,-5.9598907],[106.24366450000008,-5.967167699999948],[106.24562920000005,-5.970134399999949],[106.24408190000008,-5.976325599999939],[106.245955,-5.977733899999976],[106.24326170000006,-5.9806248],[106.245002,-5.9818023],[106.24287190000007,-5.9848919],[106.24380920000004,-5.986455499999977],[106.24210180000006,-5.987228],[106.24310260000004,-5.989404299999933],[106.24223910000006,-5.991766499999926],[106.23899180000006,-5.9928619],[106.23836790000007,-5.996825699999931],[106.23685070000005,-5.995707399999958],[106.23542540000005,-5.998535699999934],[106.234526,-5.997644499999979],[106.23253630000005,-5.998583799999949],[106.23250740000009,-6.000672399999928],[106.23001530000005,-5.999763099999939],[106.22529360000004,-6.003745],[106.22668,-6.0074],[106.224422,-6.012429499999939],[106.21625050000006,-6.0160007],[106.22232,-6.02542],[106.22521,-6.03443],[106.224,-6.03845],[106.22709150000009,-6.043356899999935],[106.22193830000003,-6.045317799999964],[106.21796610000007,-6.0611508],[106.21953260000004,-6.062605399999939],[106.21611990000008,-6.068759599999964],[106.22091850000004,-6.072212899999954],[106.21905,-6.08289],[106.22246270000005,-6.085510599999964],[106.22215480000006,-6.091192599999943],[106.22971650000005,-6.0950316],[106.23025440000004,-6.097822699999938],[106.22436870000007,-6.105032899999969],[106.22414410000005,-6.107043099999942],[106.22480030000008,-6.109355899999969],[106.22643160000007,-6.108723599999962],[106.22947730000004,-6.111482299999977],[106.22599170000007,-6.114105099999961],[106.22502650000007,-6.118360099999961],[106.21763020000009,-6.129073399999925],[106.21959490000006,-6.131222],[106.22294760000005,-6.131898],[106.22468790000005,-6.131549799999959],[106.22583910000009,-6.128454099999942],[106.23005370000004,-6.130458699999963],[106.23247370000007,-6.129122199999927],[106.23200220000007,-6.131781899999964],[106.23432280000009,-6.1340542],[106.24110290000004,-6.130488199999945],[106.24082,-6.13482],[106.23839490000006,-6.1368392],[106.24436280000003,-6.137025599999959],[106.24634960000009,-6.141728499999942],[106.25525060000007,-6.1479936],[106.25469970000006,-6.151653299999964],[106.25217,-6.1538],[106.25116,-6.15914],[106.24408680000005,-6.169455899999946],[106.24074270000006,-6.171678899999961],[106.23301,-6.17076],[106.2257,-6.18085],[106.22717,-6.19505],[106.22418,-6.19801],[106.2184,-6.19704],[106.21508,-6.19842],[106.21331,-6.19622],[106.20951,-6.19614],[106.20052,-6.19811],[106.19835,-6.20065],[106.19479,-6.20187],[106.19249,-6.20549],[106.19523,-6.21543],[106.19726080000004,-6.2176411],[106.19260860000009,-6.216676199999938],[106.19227630000006,-6.218158099999926],[106.17968410000009,-6.215639899999928],[106.17492760000005,-6.217935899999929],[106.17208,-6.21776],[106.16931280000006,-6.219907399999954],[106.16780230000006,-6.218666199999973],[106.16793450000006,-6.213096899999925],[106.16465970000007,-6.214630499999942],[106.15754270000008,-6.214286499999957],[106.15662,-6.20972],[106.1406,-6.20743],[106.13541,-6.20357],[106.13565,-6.19114],[106.14282770000005,-6.185588899999971],[106.145893,-6.185391799999934],[106.14842,-6.17919],[106.15248,-6.17733],[106.15067,-6.17338],[106.15112,-6.17039],[106.14949,-6.16931],[106.14495,-6.17183],[106.13774,-6.17206],[106.1293,-6.17474],[106.12794,-6.16972],[106.1249,-6.16985],[106.122,-6.16779],[106.11964,-6.17147],[106.12029,-6.1774],[106.11542,-6.17649],[106.11475,-6.18107],[106.11137,-6.18197],[106.1069,-6.17948],[106.10254,-6.17342],[106.09568,-6.17529],[106.08642,-6.17353],[106.07585,-6.18304],[106.07221,-6.17691],[106.06859,-6.17542],[106.06717,-6.17677],[106.06598,-6.17503],[106.06759,-6.16873],[106.06659,-6.16487],[106.07037,-6.16051],[106.07334,-6.15224],[106.07608,-6.15018],[106.07309,-6.1337],[106.06937210000007,-6.130946699999981],[106.07152630000007,-6.126252499999964],[106.07388220000007,-6.124592899999925],[106.07445470000005,-6.121656399999949],[106.07734,-6.1192],[106.07821,-6.12072],[106.08298,-6.11902],[106.08277,-6.11779],[106.08701,-6.11818],[106.09018,-6.11273],[106.09311350000007,-6.113875],[106.09144120000008,-6.111967499999935],[106.09537680000005,-6.109229599999935],[106.09521,-6.10655],[106.09853,-6.10234],[106.09998,-6.09648],[106.10593,-6.08944],[106.10959,-6.08789],[106.11007,-6.08575],[106.11487,-6.08489],[106.11787,-6.0822],[106.11977,-6.08321],[106.12184,-6.08147],[106.1221,-6.07889],[106.12577,-6.07912],[106.12743,-6.0766],[106.13223,-6.0766],[106.14002,-6.06847],[106.14023,-6.0664],[106.14506,-6.06861],[106.14759,-6.06794],[106.14282690000005,-6.058024499999931],[106.14471,-6.05246],[106.14899,-6.04731],[106.14776,-6.04384],[106.149302,-6.035002199999951],[106.14656980000007,-6.030059599999959],[106.14837530000005,-6.019821899999954],[106.14397310000004,-6.016629799999976],[106.12151820000008,-6.010089599999958],[106.11820670000009,-6.007688299999927],[106.108381,-5.997586799999965],[106.09818830000006,-5.981994699999973],[106.11216350000007,-5.981683],[106.11098530000004,-5.978693899999939],[106.09949940000007,-5.977943699999969],[106.10009350000007,-5.976836799999944],[106.11215050000004,-5.9786034],[106.10778940000006,-5.976360099999965],[106.11049320000006,-5.976571699999965],[106.11011710000008,-5.974883299999931],[106.11396710000008,-5.974641799999972],[106.10807560000006,-5.973808899999938],[106.10551070000008,-5.971935],[106.10525580000007,-5.969812299999944],[106.10741370000005,-5.968091699999945],[106.10650430000004,-5.967347399999937],[106.10831310000003,-5.967242],[106.10435920000003,-5.965309799999943],[106.10377770000008,-5.959090499999945],[106.11035860000004,-5.956832],[106.10684,-5.94947],[106.10508,-5.94951],[106.10676,-5.94848],[106.10329340000004,-5.949061599999936],[106.10293570000005,-5.947974],[106.10769760000005,-5.947496399999977],[106.10669550000006,-5.944405199999949],[106.10431740000007,-5.944348899999966],[106.10769720000008,-5.943887599999925],[106.10944,-5.93946],[106.11222,-5.93951],[106.11432270000006,-5.930219099999931],[106.11228390000008,-5.930392799999936],[106.10468450000008,-5.9238321],[106.10105390000007,-5.918109899999934],[106.10188840000006,-5.915286299999934],[106.10064750000004,-5.911266199999943],[106.09720560000005,-5.911086399999931],[106.09410990000003,-5.907802499999946],[106.09306910000004,-5.9090358],[106.09106610000003,-5.908486899999957],[106.08824460000005,-5.905056499999944],[106.08795040000007,-5.903591799999958],[106.08968420000008,-5.903323899999975],[106.08804770000006,-5.903143899999975],[106.08800020000007,-5.899613199999976],[106.08390860000009,-5.892756199999951],[106.07818360000005,-5.8888973],[106.07218580000006,-5.882349099999942],[106.06516810000005,-5.882596599999943],[106.064379,-5.880885199999966],[106.05995340000004,-5.883921],[106.05087250000008,-5.8834818],[106.04745,-5.880913799999973],[106.04408150000006,-5.880913899999939],[106.04139740000005,-5.876696799999934],[106.03968840000005,-5.898134899999945],[106.04431950000009,-5.911249899999973],[106.04003940000007,-5.918971699999929],[106.03912390000005,-5.926625499999943],[106.03311870000005,-5.934350599999959],[106.04792050000003,-5.946439],[106.05885350000005,-5.951766699999951],[106.06182130000008,-5.955689599999971],[106.062569,-5.959781899999939],[106.05858650000005,-5.972749],[106.06082870000006,-5.979010399999936],[106.05934330000008,-5.983190799999932],[106.06470480000007,-5.986523199999965],[106.06256710000008,-5.989524399999937],[106.07348170000006,-5.995785099999978],[106.07416120000005,-5.997532199999966],[106.07752290000008,-5.998009499999966],[106.077427,-6.0014428],[106.08789760000008,-6.002466899999945],[106.08517530000006,-6.030297599999926],[106.08243590000006,-6.037132],[106.07776970000003,-6.040407499999958],[106.07611550000007,-6.040121499999941],[106.07693750000004,-6.038389699999925],[106.07260040000006,-6.0395834],[106.06499320000006,-6.045695299999977],[106.06275420000009,-6.049786099999949],[106.06246450000003,-6.053552399999944],[106.06381860000005,-6.055844099999945],[106.06039610000005,-6.057696399999941],[106.05885690000008,-6.061259899999925],[106.05328030000004,-6.061219899999969],[106.05255260000007,-6.069026399999927],[106.05024480000009,-6.075473099999954],[106.03644380000009,-6.080764599999952],[106.02817570000008,-6.078273899999942],[106.02021820000004,-6.0782401],[106.02144660000005,-6.071758399999965],[106.01976050000007,-6.070939199999941],[106.01969180000003,-6.064867199999981],[106.02188910000007,-6.063233099999934],[106.02066080000009,-6.062258],[106.022652,-6.062351899999953],[106.02222470000004,-6.0605356],[106.02368960000007,-6.060543699999926],[106.02290380000005,-6.058466099999976],[106.02391850000004,-6.0592467],[106.025101,-6.057863399999974],[106.02344550000004,-6.057360299999971],[106.02708470000005,-6.054012899999975],[106.02614630000005,-6.049968399999955],[106.02995330000005,-6.0476434],[106.02882420000009,-6.045415099999957],[106.03025090000006,-6.044478599999934],[106.02995330000005,-6.040578099999948],[106.01770820000007,-6.039415099999928],[106.01504910000006,-6.042938699999979],[106.01114,-6.042206499999963],[106.00972490000004,-6.039984499999946],[106.00746410000005,-6.046085199999936],[106.00304080000006,-6.046370099999933],[105.99377480000004,-6.040392099999963],[105.99129520000008,-6.040608599999928],[105.99136390000007,-6.042508699999928],[105.98818240000008,-6.042583599999944],[105.987923,-6.038018399999942],[105.98437660000008,-6.037207199999955],[105.98375940000005,-6.039318499999979],[105.98069620000007,-6.0398842],[105.98117,-6.04473],[105.98753390000007,-6.050615899999968],[105.98801630000008,-6.053165599999943],[105.98447640000006,-6.054998699999942],[105.97588140000005,-6.051887699999952],[105.975741,-6.053856699999926],[105.973412,-6.053714],[105.97183640000009,-6.052353299999936],[105.97284010000004,-6.0500524],[105.97111210000008,-6.049415299999964],[105.969134,-6.0519798],[105.96913180000007,-6.055053899999962],[105.96376070000008,-6.058093199999973],[105.95145450000007,-6.055016199999955],[105.94317660000007,-6.045138],[105.93823280000004,-6.052165199999934],[105.92902410000005,-6.047455899999932],[105.92752110000004,-6.04909],[105.92358850000005,-6.049373899999978],[105.92320850000004,-6.046801499999958]]],[[[106.271021,-5.807418299999938],[106.253981,-5.810686499999974],[106.28268510000004,-5.816552799999954],[106.29191030000004,-5.815598699999953],[106.29489950000004,-5.812206699999933],[106.29483360000006,-5.810647199999948],[106.29163580000005,-5.808928199999968],[106.271021,-5.807418299999938]]]]},"properties":{"shapeName":"Serang","shapeISO":"","shapeID":"22746128B48396814841190","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[99.22897780000005,3.244884600000034],[99.23520840000003,3.252381700000058],[99.23484710000008,3.26676070000002],[99.24471690000007,3.28287940000007],[99.24523790000006,3.289859],[99.25103490000004,3.29484240000005],[99.25969460000005,3.311030500000072],[99.26102460000004,3.317644600000051],[99.25902230000008,3.322107500000072],[99.26278780000007,3.332606600000076],[99.27138170000006,3.342804900000033],[99.27786020000008,3.352887800000076],[99.28282090000005,3.364797200000055],[99.287519,3.371014700000046],[99.29177150000004,3.386430500000074],[99.30381730000005,3.41417720000004],[99.30597020000005,3.425431300000071],[99.31481340000005,3.443133400000022],[99.30934350000007,3.451270500000021],[99.30457490000003,3.45276640000003],[99.30377330000005,3.456655],[99.29968820000005,3.461853100000042],[99.292293,3.463638500000059],[99.29409830000009,3.464975300000049],[99.29478640000008,3.469423800000072],[99.29007630000007,3.478160800000069],[99.294351,3.476428200000043],[99.29664290000005,3.479010600000038],[99.28442240000004,3.480696800000032],[99.28281290000007,3.473659400000031],[99.28099840000004,3.472108800000058],[99.27813670000006,3.474045500000045],[99.27976280000007,3.478565300000071],[99.27868190000004,3.484315200000026],[99.27294550000005,3.489724],[99.26165060000005,3.493805300000076],[99.26047980000004,3.492441400000075],[99.25468710000007,3.496021300000052],[99.25184590000003,3.495935300000042],[99.25042190000005,3.494250900000054],[99.24581010000009,3.495017200000063],[99.24405180000008,3.497970900000041],[99.24579760000006,3.499260700000036],[99.24733630000009,3.498182800000052],[99.24637110000003,3.501209],[99.21045430000004,3.52661420000004],[99.209963,3.528534400000069],[99.20444630000009,3.531633900000031],[99.20477390000008,3.533224500000074],[99.20279060000007,3.532493500000044],[99.18467,3.545424500000024],[99.17028830000004,3.553408700000034],[99.15532920000004,3.559325700000045],[99.13254790000008,3.563795500000026],[99.12198680000006,3.568660300000033],[99.121281,3.570767200000034],[99.10016540000004,3.584837500000049],[99.096197,3.589731800000038],[99.08688760000007,3.59546210000002],[99.07465060000004,3.60682810000003],[99.05605040000006,3.619121600000028],[99.03531960000004,3.624890500000049],[99.02117530000004,3.630458800000042],[99.01248030000005,3.63557030000004],[99.01151990000005,3.638428200000021],[99.00533430000007,3.641553900000076],[99.004213,3.644308400000057],[98.99662890000008,3.646327],[98.98711490000005,3.653801700000031],[98.97523510000008,3.65693680000004],[98.96816080000008,3.660332600000061],[98.95948630000004,3.669113300000049],[98.95899860000009,3.675099500000044],[98.95548450000007,3.682816500000058],[98.95424920000005,3.682742800000028],[98.954542,3.678578],[98.95306210000007,3.675911400000075],[98.94467780000008,3.676883300000043],[98.94437190000008,3.675837700000045],[98.94441110000008,3.668401300000028],[98.94902040000005,3.664650700000038],[98.94611880000008,3.658148400000073],[98.94589340000005,3.647201300000063],[98.93851550000005,3.624539600000048],[98.92995850000005,3.614833],[98.92528720000007,3.612820300000067],[98.91880320000007,3.599951300000043],[98.92131580000006,3.591385200000047],[98.91890170000005,3.586256200000037],[98.91911090000008,3.582214500000021],[98.92346640000005,3.57537],[98.93382370000006,3.567435800000055],[98.93110520000005,3.554158900000061],[98.92615430000006,3.545289900000057],[98.93296740000005,3.53768],[98.93102210000006,3.532669800000065],[98.93594730000007,3.525148500000057],[98.93525960000005,3.522213800000031],[98.93682980000006,3.515077800000029],[98.933301,3.503418600000032],[98.93628810000007,3.499831700000072],[98.93464610000007,3.491225900000074],[98.91994190000008,3.466134400000044],[98.919435,3.454851700000063],[98.91429030000006,3.448969600000055],[98.91632530000004,3.438755400000048],[98.91556210000005,3.428423700000053],[98.91867440000004,3.416515600000025],[98.91785980000009,3.411298500000044],[98.92076530000008,3.405234500000063],[98.92142810000007,3.39879],[98.91908540000009,3.393573],[98.91888180000007,3.388997500000073],[98.916641,3.386337800000035],[98.92092,3.38117230000006],[98.91617590000004,3.373311800000067],[98.91887570000006,3.370243400000049],[98.91907970000005,3.367021],[98.91322,3.35824180000003],[98.89830130000007,3.358336500000064],[98.89140870000006,3.356755600000042],[98.88711220000005,3.35394320000006],[98.88348780000007,3.353660900000023],[98.87995430000007,3.350412900000038],[98.87947140000006,3.347265],[98.87552650000003,3.347887700000058],[98.87199310000005,3.344964200000049],[98.86352840000006,3.342807300000061],[98.86015580000009,3.340461700000048],[98.85752510000003,3.343825100000061],[98.84838780000007,3.336622300000045],[98.84477230000005,3.337438200000065],[98.84201430000007,3.33469690000004],[98.84019220000005,3.329756600000053],[98.83597460000004,3.329325400000073],[98.83246750000006,3.318176900000026],[98.83011120000003,3.315294200000039],[98.81989920000007,3.312986300000034],[98.81432240000004,3.308502700000076],[98.81226850000007,3.304618700000049],[98.80764590000007,3.304830100000061],[98.79605910000004,3.29835410000004],[98.79561730000006,3.285515500000031],[98.789083,3.275627600000064],[98.77372060000005,3.266647900000066],[98.77033980000004,3.261698200000069],[98.77086450000007,3.25890030000005],[98.76849860000004,3.252834900000039],[98.76390980000008,3.247496700000056],[98.75286180000006,3.239761700000031],[98.74955540000008,3.232688200000041],[98.75054730000005,3.228704400000026],[98.74807260000006,3.218835100000035],[98.74807270000008,3.218392400000027],[98.75010070000008,3.209002],[98.75152110000005,3.209041900000045],[98.75889780000006,3.213648600000056],[98.76112080000007,3.220352100000071],[98.77059570000006,3.214587400000028],[98.78189940000004,3.213976900000034],[98.78560950000008,3.215771300000029],[98.788768,3.222501500000021],[98.84068340000005,3.222373800000071],[98.84351180000004,3.225462100000072],[98.85344360000005,3.229690500000061],[98.85541420000004,3.236417800000027],[98.85995270000006,3.237677100000042],[98.86329840000008,3.241276900000059],[98.86394970000003,3.244444600000065],[98.86287150000004,3.246483900000044],[98.86501870000006,3.249369700000045],[98.86257720000003,3.257725100000073],[98.86494210000006,3.260855100000072],[98.90080660000007,3.260132100000021],[98.89899780000007,3.256449800000041],[98.899898,3.255346200000076],[98.90364210000007,3.259064900000055],[98.90908970000004,3.253869800000075],[98.92707140000005,3.267036100000041],[98.93869590000008,3.271883800000069],[98.94131060000007,3.275992500000029],[98.947128,3.275306400000034],[98.952023,3.276401600000042],[98.95527,3.281779],[98.95787350000006,3.28019340000003],[98.96485460000008,3.273034900000027],[98.96483170000005,3.267991800000061],[98.95530310000004,3.24003330000005],[98.95259660000005,3.221903500000053],[98.949252,3.220361700000069],[98.94643250000007,3.215233600000033],[98.94117670000009,3.212218300000075],[98.93987330000004,3.207456700000023],[98.99453770000008,3.206256300000064],[98.99516270000004,3.208710300000064],[98.99911760000003,3.208917600000063],[98.99901220000004,3.206205500000067],[99.00516670000007,3.20550350000002],[99.00297050000006,3.202265200000056],[99.00031,3.185462900000061],[98.99648730000007,3.181787200000031],[98.98776660000004,3.182517200000063],[98.986116,3.172455100000036],[98.96485530000007,3.143750900000043],[98.97133540000004,3.136896300000046],[98.97212140000005,3.129275300000074],[98.97645240000008,3.129279100000076],[98.98682590000004,3.123982500000068],[98.98560170000007,3.121865800000023],[98.97716450000007,3.118837100000064],[98.97692540000008,3.107549500000061],[98.97858280000008,3.092675600000064],[98.97996880000005,3.091905800000063],[98.98152170000009,3.082048200000031],[98.98073480000005,3.078532900000027],[98.97535420000008,3.067279100000064],[98.95630380000006,3.047483500000055],[98.95284810000004,3.038167200000032],[98.935855,3.02741130000004],[98.92754750000006,3.01594110000002],[98.95728540000005,3.015562400000022],[98.98011070000007,3.019367700000032],[98.999989,3.027307200000052],[99.00146860000007,3.040413300000068],[99.00982730000004,3.048481800000047],[99.00932830000005,3.060299],[99.00707870000008,3.070317500000044],[99.018646,3.084411800000055],[99.03167470000005,3.094802],[99.03259820000005,3.109264],[99.04544180000005,3.113455900000076],[99.04638950000003,3.117812100000037],[99.04832150000004,3.118685],[99.07535760000007,3.129305200000033],[99.08182870000007,3.129322800000068],[99.08181810000008,3.134788300000025],[99.09588730000007,3.134605100000044],[99.11289840000006,3.142999],[99.13730060000006,3.163994200000047],[99.13783210000008,3.167422900000076],[99.14646340000007,3.167476],[99.15029930000009,3.165485100000069],[99.15124710000003,3.167237900000032],[99.15721880000007,3.167166800000075],[99.15773230000008,3.170297],[99.16401540000004,3.175425700000062],[99.16811980000006,3.17682730000007],[99.16819250000003,3.181007],[99.17546570000007,3.18561980000004],[99.17196750000005,3.196907600000031],[99.18657440000004,3.197035100000051],[99.186547,3.194637700000044],[99.19066750000007,3.194547],[99.20028960000008,3.204242900000054],[99.20121180000007,3.20922760000002],[99.19921430000005,3.212901100000067],[99.20647020000007,3.219087800000068],[99.20802270000007,3.217376700000045],[99.20796520000005,3.223574800000051],[99.21355760000006,3.225198100000057],[99.21397960000007,3.228295200000048],[99.21557070000006,3.230486800000051],[99.21757030000003,3.230711900000074],[99.21877710000007,3.235217100000057],[99.22232050000008,3.23714810000007],[99.22393810000005,3.240519200000051],[99.22897780000005,3.244884600000034]],[[99.17137760000008,3.376269900000068],[99.17665170000004,3.371491800000058],[99.17608820000004,3.369592],[99.177375,3.368055800000036],[99.17323190000008,3.366257800000028],[99.17270870000004,3.364297400000055],[99.16989320000005,3.364358500000037],[99.16812270000008,3.360013500000036],[99.17188250000004,3.355222800000035],[99.16767890000006,3.353139500000054],[99.16774170000008,3.350390600000026],[99.17532310000007,3.349551],[99.17813990000008,3.353823100000056],[99.18876550000004,3.35826],[99.19382240000004,3.351520100000073],[99.19030110000006,3.340970700000071],[99.18316120000009,3.337253200000021],[99.18243630000006,3.33214],[99.18390420000009,3.331109],[99.18738060000004,3.317223400000046],[99.19144290000008,3.317768300000068],[99.19106020000004,3.314696300000037],[99.19264810000004,3.31087610000003],[99.191743,3.309704100000033],[99.18383960000006,3.308881400000075],[99.18182830000006,3.306431800000041],[99.17310080000004,3.306534400000032],[99.173061,3.309202300000038],[99.15421830000008,3.309124500000053],[99.15538420000007,3.306294800000046],[99.152991,3.30536550000005],[99.15089960000006,3.305567900000028],[99.14953590000005,3.307985100000053],[99.146154,3.306943],[99.14424420000006,3.311652400000071],[99.14038280000005,3.308803200000057],[99.13879420000006,3.309571500000061],[99.13702390000009,3.305064700000059],[99.142587,3.295987100000048],[99.14377680000007,3.291281800000036],[99.137021,3.283560200000068],[99.136538,3.281094500000052],[99.13814640000004,3.278446600000052],[99.13630550000005,3.277586900000074],[99.12923350000005,3.286392400000068],[99.12493050000006,3.289626700000042],[99.120266,3.296984100000032],[99.11898560000009,3.301642900000047],[99.126332,3.30737860000005],[99.129131,3.30606860000006],[99.12958190000006,3.308784900000035],[99.13239710000005,3.308267100000023],[99.13172190000006,3.311678800000038],[99.13345950000007,3.312551700000029],[99.12948650000004,3.317920300000026],[99.13013030000008,3.319828100000052],[99.126752,3.321316100000047],[99.12931040000007,3.324258500000042],[99.12889260000009,3.327896500000065],[99.12498820000008,3.329337700000053],[99.12495040000005,3.335895700000037],[99.11492420000008,3.33583230000005],[99.11443050000008,3.337114500000041],[99.12432560000008,3.344146700000067],[99.12890550000009,3.349853300000063],[99.13542130000008,3.349791800000048],[99.13996560000004,3.344920300000069],[99.14511460000006,3.349992500000042],[99.15436410000007,3.341583400000047],[99.15927180000006,3.346877800000073],[99.158367,3.347807700000033],[99.15957390000005,3.349303100000043],[99.16633210000003,3.355708800000059],[99.15456920000008,3.36717040000002],[99.15611770000004,3.366887200000065],[99.15977850000007,3.370928800000058],[99.16816060000008,3.374139400000047],[99.16846770000006,3.378486200000054],[99.17137760000008,3.376269900000068]]]},"properties":{"shapeName":"Serdang Bedagai","shapeISO":"","shapeID":"22746128B76849419335011","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[112.1516683000001,-0.728795299999945],[112.14630960000011,-0.7303733],[112.11765170000001,-0.7132543],[112.10850230000005,-0.701538],[112.0941295,-0.697459899999956],[112.09104380000008,-0.698702799999978],[112.08504890000006,-0.701987199999962],[112.0777002000001,-0.722341099999937],[112.07270160000007,-0.728123299999936],[112.06173620000004,-0.738756],[112.0458225000001,-0.745370199999968],[112.04313390000004,-0.748432099999945],[112.04145660000006,-0.755839599999945],[112.04568860000006,-0.762173299999972],[112.04561970000009,-0.770666299999959],[112.0276847,-0.780276599999979],[112.02177930000005,-0.7900385],[112.01820840000005,-0.790793599999972],[112.01322750000008,-0.794654699999967],[112.00326410000002,-0.796431699999971],[111.994316,-0.800443799999925],[111.97857710000005,-0.800974899999972],[111.969321,-0.798835899999972],[111.96070180000004,-0.790701599999977],[111.954105,-0.787491299999942],[111.94644510000006,-0.787279],[111.935382,-0.792420299999947],[111.92547550000006,-0.791747499999929],[111.92219020000005,-0.793922099999975],[111.92038220000006,-0.796492],[111.92304410000008,-0.806554899999981],[111.92155680000008,-0.815762399999926],[111.91772810000003,-0.821544499999959],[111.91764090000004,-0.841339499999947],[111.91508810000005,-0.843481299999951],[111.90976860000006,-0.843482499999936],[111.90385550000008,-0.840659499999958],[111.89955440000006,-0.840273099999933],[111.88849,-0.841346299999941],[111.88508720000004,-0.848627199999953],[111.88466410000007,-0.8595474],[111.87700590000009,-0.868114099999957],[111.85211390000006,-0.884393099999954],[111.84403150000009,-0.899383599999965],[111.82530890000004,-0.911485899999946],[111.779933,-0.909424099999967],[111.75854820000006,-0.912640599999975],[111.74982370000004,-0.912642499999947],[111.74301520000006,-0.916712299999972],[111.73982420000004,-0.921102599999926],[111.73706010000006,-0.932237899999961],[111.73493260000004,-0.934165499999949],[111.71514420000005,-0.941664199999934],[111.70513420000009,-0.942074799999943],[111.70234640000007,-0.944212199999924],[111.70387970000007,-0.945699],[111.70408030000004,-0.949161],[111.70088920000006,-0.953230099999928],[111.68929230000003,-0.956016199999965],[111.68110030000008,-0.959658],[111.67173750000006,-0.961158799999964],[111.66578,-0.965656799999977],[111.65641750000009,-0.969513],[111.65237450000006,-0.9706915],[111.64343680000007,-0.969943799999953],[111.64003240000005,-0.972299899999939],[111.638224,-0.974334499999941],[111.63727310000007,-0.979958299999964],[111.62694810000005,-0.988469399999929],[111.622042,-0.9990842],[111.62128760000007,-1.011896899999954],[111.61683890000006,-1.030023799999981],[111.61684,-1.035781499999928],[111.61811330000006,-1.041965399999924],[111.624052,-1.054759099999956],[111.623842,-1.064781699999969],[111.619391,-1.070966799999951],[111.59552010000004,-1.081843599999956],[111.57925120000004,-1.0962189],[111.56827140000007,-1.109626799999944],[111.55669090000004,-1.145673099999954],[111.56297830000005,-1.166611399999965],[111.56661710000009,-1.172261099999957],[111.56801850000005,-1.181369],[111.56668130000008,-1.1865287],[111.55810620000005,-1.201359899999943],[111.55033360000004,-1.208641399999976],[111.52425990000006,-1.220405399999947],[111.51660580000004,-1.222135199999968],[111.50547030000007,-1.219123699999955],[111.49500590000008,-1.212726],[111.47079290000005,-1.213201699999956],[111.462514,-1.215874099999951],[111.44630970000009,-1.224033299999974],[111.42740390000006,-1.253944299999944],[111.40119940000005,-1.264514],[111.38900170000005,-1.271048699999938],[111.38388920000006,-1.280054099999973],[111.38440320000007,-1.297548799999959],[111.38829320000008,-1.310311],[111.39610650000009,-1.324613899999974],[111.39410130000005,-1.326738299999931],[111.44697210000004,-1.3929295],[111.46927350000004,-1.407757499999946],[111.51820890000005,-1.419799499999954],[111.606777,-1.413907699999925],[111.62318930000004,-1.420424399999945],[111.68630260000003,-1.472914699999933],[111.73566840000007,-1.5010344],[111.77539680000007,-1.538150199999961],[111.78116930000004,-1.554107599999952],[111.79687640000009,-1.562832199999946],[111.83609710000007,-1.594942299999957],[111.85308180000004,-1.595834899999943],[111.85844940000004,-1.605728],[111.86202960000008,-1.616521499999976],[111.87812280000009,-1.622811499999955],[111.88528,-1.636302],[111.88349850000009,-1.650696],[111.88797130000006,-1.657890499999951],[111.88708020000007,-1.664188],[111.88082740000004,-1.674985699999979],[111.89871480000005,-1.693868499999951],[111.90140460000003,-1.710959],[111.90553630000005,-1.717467099999965],[111.94700690000008,-1.733425799999964],[111.95466270000009,-1.733421899999939],[111.96139050000005,-1.763056899999981],[111.96293880000007,-1.776931499999932],[111.95597320000007,-1.796524],[111.95338410000005,-1.809013199999924],[111.95485110000004,-1.822234899999955],[111.96313940000005,-1.849573199999952],[111.97369360000005,-1.866136099999949],[111.99082730000003,-1.898202899999944],[112.03173350000009,-1.9366209],[112.05753750000008,-1.950153399999977],[112.07360840000001,-1.964915799999972],[112.090505,-2.001469],[112.0811192000001,-2.028253899999925],[112.07857,-2.027552499999956],[112.06215270000007,-2.0311262],[112.04503740000007,-2.053946599999961],[112.020704,-2.095241199999975],[112.009645,-2.129686299999946],[112.008666,-2.1403306],[111.99181060000006,-2.179926499999965],[111.98991840000008,-2.187120499999935],[111.98321740000006,-2.239269099999945],[111.98334180000006,-2.2553512],[111.98528960000004,-2.2717599],[111.99061770000009,-2.289327],[112.00125580000008,-2.297723],[112.02465560000007,-2.300524399999972],[112.04404950000003,-2.350163499999951],[112.04406090000009,-2.365469899999937],[112.05931120000002,-2.409022199999924],[112.05581860000007,-2.433750399999951],[112.04414560000009,-2.476146299999925],[112.01492040000005,-2.529152899999929],[112.0079376000001,-2.5821423],[112.00445610000008,-2.621],[111.99628970000003,-2.657506699999942],[111.983436,-2.6893076],[111.984622,-2.708145399999978],[111.97059510000008,-2.737592499999948],[111.97766,-2.785861299999965],[111.98938920000006,-2.8093999],[112.026894,-2.848221899999942],[112.05269340000007,-2.889407399999925],[112.05483270000002,-2.888822699999935],[112.05487110000001,-2.930117199999927],[112.04679240000007,-3.007160699999929],[111.99473570000004,-3.1317799],[111.96872730000007,-3.2186763],[111.93293740000007,-3.312139],[111.89875270000005,-3.382652899999925],[111.87920410000004,-3.408896899999945],[111.81879460000005,-3.533783],[111.85304650000006,-3.541269499999942],[111.86437270000005,-3.542128599999955],[111.87834310000005,-3.5415488],[111.89019520000005,-3.543584099999975],[111.90420760000006,-3.539362199999971],[111.92176650000005,-3.527393399999937],[111.95643250000006,-3.4939461],[111.99204160000005,-3.465778799999953],[112.04111220000004,-3.430939599999931],[112.08050980000007,-3.405597099999966],[112.08163950000005,-3.403661499999941],[112.08549110000001,-3.4025909],[112.130343,-3.375440899999944],[112.18595850000008,-3.340152],[112.2204445000001,-3.324399899999946],[112.250688,-3.315039499999955],[112.26542440000003,-3.312366699999927],[112.30897390000007,-3.310668799999974],[112.32587480000007,-3.3145337],[112.33747820000008,-3.315487499999961],[112.35150130000011,-3.3209571],[112.35902390000001,-3.326067399999943],[112.36887750000005,-3.330200199999979],[112.37819310000009,-3.333257899999978],[112.38093550000008,-3.331974499999944],[112.3804649000001,-3.334357599999976],[112.40276990000007,-3.343060099999946],[112.42087730000003,-3.352781199999924],[112.42663080000011,-3.360873599999934],[112.43127110000012,-3.374041299999931],[112.43759980000004,-3.378668599999969],[112.44577170000002,-3.387607499999945],[112.47988270000008,-3.4109726],[112.49666900000011,-3.419591799999978],[112.50942920000011,-3.428988199999935],[112.53505,-3.4411268],[112.54624070000011,-3.445441799999969],[112.56246880000003,-3.446891599999958],[112.56377220000002,-3.446172699999977],[112.564866,-3.436397599999964],[112.56811160000007,-3.430328299999928],[112.57208330000003,-3.430212],[112.5723101000001,-3.432315699999947],[112.57440660000009,-3.433013599999981],[112.607649,-3.415099],[112.62411980000002,-3.409001799999942],[112.636922,-3.406403099999977],[112.64157420000004,-3.403260399999965],[112.66171870000005,-3.379204099999924],[112.67282780000005,-3.369370799999956],[112.68458870000006,-3.362217899999962],[112.686237,-3.361641199999951],[112.68661250000002,-3.362825599999951],[112.691246,-3.361127599999975],[112.7378417000001,-3.338927499999954],[112.79222760000005,-3.3083044],[112.81518760000006,-3.299506799999961],[112.87382800000012,-3.265249],[112.84067670000002,-3.165532299999938],[112.81008650000001,-3.042848299999946],[112.84756770000001,-2.936972599999933],[112.87063060000003,-2.830598799999962],[112.78200350000009,-2.7802696],[112.73312140000007,-2.748179],[112.68808680000006,-2.721538399999929],[112.6074751000001,-2.682997299999954],[112.57813090000002,-2.658048199999939],[112.51086920000012,-2.615914099999941],[112.480698,-2.581090199999949],[112.47412880000002,-2.552849499999979],[112.47018720000005,-2.499130699999967],[112.45915840000009,-2.404657699999973],[112.452432,-2.398227899999938],[112.43475190000004,-2.390853899999968],[112.4353033000001,-2.356797799999924],[112.4291194000001,-2.328026299999976],[112.40826690000006,-2.3283116],[112.40819460000012,-2.267376],[112.37339740000004,-2.267092799999944],[112.37333290000004,-2.197053799999935],[112.35592820000011,-2.193016499999942],[112.35341160000007,-2.188020299999948],[112.3503535000001,-2.187723499999947],[112.341969,-2.181617499999959],[112.333539,-2.181159],[112.33353670000008,-2.178628799999956],[112.32701060000011,-2.170538],[112.32699360000004,-2.166457799999932],[112.3220272000001,-2.166157799999951],[112.32107460000009,-2.162428199999965],[112.28394230000004,-2.095341599999927],[112.28495090000001,-1.974568],[112.27157790000001,-1.894647799999973],[112.26943250000011,-1.885938],[112.26103880000005,-1.8808735],[112.25724750000006,-1.873186],[112.2610284000001,-1.866355499999941],[112.26072050000005,-1.8615306],[112.25346130000003,-1.855642],[112.2556952000001,-1.850958599999956],[112.25119280000001,-1.831230499999947],[112.24734850000004,-1.828086399999961],[112.2389482000001,-1.826563799999974],[112.23367260000009,-1.820993],[112.23447010000007,-1.811192399999925],[112.23160740000003,-1.806159399999956],[112.20183020000002,-1.786230599999953],[112.19806850000009,-1.770259199999941],[112.19229640000003,-1.758036199999935],[112.14112470000009,-1.695284199999946],[112.08953070000007,-1.643947499999967],[112.0727276,-1.598727799999949],[112.070915,-1.569782299999929],[112.07869190000008,-1.543847099999937],[112.11222380000004,-1.494983199999979],[112.125385,-1.452160499999934],[112.13255350000009,-1.411896699999943],[112.13204050000002,-1.365459899999962],[112.1275376000001,-1.313127699999939],[112.11326810000003,-1.166468],[112.09903340000005,-0.990108599999928],[112.121005,-0.924451499999975],[112.16950860000009,-0.824436099999957],[112.18097080000007,-0.796213499999965],[112.17963570000006,-0.776139599999965],[112.15480670000011,-0.728859899999975],[112.1516683000001,-0.728795299999945]]]},"properties":{"shapeName":"Seruyan","shapeISO":"","shapeID":"22746128B29582481079382","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.93258910000009,1.248483100000044],[100.90687270000006,1.029913100000044],[101.27336540000005,0.828258500000061],[101.29865690000008,0.810470100000032],[101.30094510000004,0.808074800000043],[101.30027520000004,0.804602100000068],[101.30565560000008,0.800759],[101.30956860000003,0.802715500000033],[101.311071,0.805825],[101.31477440000003,0.806453800000043],[101.31805850000006,0.800269800000024],[101.32008490000004,0.800269800000024],[101.32053910000008,0.802401],[101.32263540000008,0.80323960000004],[101.33482870000006,0.797439900000029],[101.32345520000007,0.722473800000046],[101.31547020000005,0.711779600000057],[101.31119250000006,0.708642600000076],[101.31775160000007,0.702368700000022],[101.31432950000004,0.697235500000033],[101.317609,0.694668900000067],[101.32259960000005,0.695952200000022],[101.37818940000005,0.662598400000036],[101.37776030000003,0.66870670000003],[101.38224020000007,0.681218200000046],[101.38631240000007,0.686529500000063],[101.39726980000006,0.692421],[101.40147080000008,0.689093900000046],[101.40715160000008,0.688265100000024],[101.41131340000004,0.683525600000053],[101.41499740000006,0.682822500000043],[101.41781390000006,0.684935300000063],[101.42640440000008,0.674706400000048],[101.44073560000004,0.665977100000021],[101.45709930000004,0.661824300000035],[101.48449490000007,0.659672700000044],[101.48429150000004,0.654884500000037],[101.48907770000005,0.651272200000051],[101.49199250000004,0.654435100000057],[101.49607160000005,0.655886900000041],[101.49815690000008,0.659515900000031],[101.51875210000009,0.656989600000031],[101.54028440000008,0.658007200000043],[101.54445550000008,0.649845300000038],[101.54590340000004,0.642240500000071],[101.549801,0.638430100000051],[101.554931,0.637182300000063],[101.55983990000004,0.637952300000052],[101.56381930000003,0.640944800000057],[101.56921930000004,0.640307800000073],[101.57139620000004,0.638686700000051],[101.57420180000008,0.632887400000072],[101.57130980000005,0.624804400000073],[101.57559860000003,0.617653],[101.58081650000008,0.612757800000054],[101.58806270000008,0.609827900000028],[101.59143410000007,0.606591500000036],[101.59035120000004,0.600612],[101.58811080000004,0.596825400000057],[101.58445040000004,0.595322100000033],[101.578501,0.597092400000065],[101.58181550000006,0.58816870000004],[101.58445350000005,0.585045200000025],[101.58600070000006,0.577551800000037],[101.58522410000006,0.574742400000048],[101.57995040000009,0.570998400000065],[101.58196030000005,0.558667900000046],[101.57941320000003,0.556889900000044],[101.57578870000003,0.550627100000042],[101.57858410000006,0.542460800000072],[101.58835210000007,0.542306],[101.58838310000004,0.539286900000036],[101.59257950000006,0.533677500000067],[101.59201080000008,0.530542],[101.59543980000007,0.529377100000033],[101.61068990000007,0.536521200000038],[101.61179190000007,0.53931590000002],[101.624711,0.541956200000072],[101.64175760000006,0.54317640000005],[101.659077,0.54070420000005],[101.66457820000005,0.537422800000058],[101.66539690000008,0.501028600000041],[101.67654940000006,0.455645900000036],[101.671622,0.446483300000068],[101.67064710000005,0.43145190000007],[101.67163340000008,0.407790800000043],[101.69215190000006,0.419380800000056],[101.69677120000006,0.434972600000037],[101.69751660000009,0.445755],[101.71788030000005,0.449857400000042],[101.72583010000005,0.448501600000043],[101.73331770000004,0.445081400000049],[101.75054210000008,0.429459200000053],[101.79425890000005,0.407501500000023],[101.79849580000007,0.417729],[101.81276270000006,0.424507],[101.81503120000008,0.430133400000045],[101.81941430000006,0.432699100000036],[101.83659990000007,0.436265900000024],[101.84425320000008,0.449608900000044],[101.84989720000004,0.47516330000002],[101.84333750000008,0.482836300000031],[101.84172150000006,0.495138900000029],[101.83429260000008,0.498058400000048],[101.831197,0.507067600000028],[101.84981210000007,0.510391100000049],[101.885503,0.510554900000045],[101.88638610000004,0.45745450000004],[101.87809310000006,0.457254200000023],[101.87814060000005,0.449313],[101.89482740000005,0.449357200000065],[101.89472820000009,0.454244100000039],[101.90843140000004,0.454289500000073],[101.90848420000003,0.459888900000067],[101.91470370000008,0.459886400000073],[101.91475670000005,0.465893],[101.91359350000005,0.465231700000061],[101.91298770000009,0.467777200000057],[101.91152140000008,0.467981400000042],[101.91147470000004,0.477195100000074],[101.92047530000008,0.477394900000036],[101.92149570000004,0.498519400000021],[101.91709660000004,0.498470500000053],[101.91704470000008,0.495416300000045],[101.91577920000009,0.495318800000064],[101.91579210000003,0.498819200000071],[101.91437470000005,0.498819200000071],[101.91277240000005,0.502455200000043],[101.91283410000005,0.504550400000028],[101.92022920000005,0.504612100000031],[101.92016760000007,0.506091100000049],[101.915977,0.50707710000006],[101.91982840000009,0.52091020000006],[101.97341070000004,0.550225200000057],[101.97745740000005,0.571925],[102.06195560000003,0.587852],[102.11855310000004,0.596784500000069],[102.34016450000007,0.611379100000022],[102.41701150000006,0.620645500000023],[102.526612,0.63112510000002],[102.73142090000005,0.653612700000053],[102.77966620000007,0.660082500000044],[102.84823370000004,0.666723800000057],[102.85619680000008,0.669168900000045],[102.86013330000009,0.672842900000035],[102.86838590000008,0.686130200000036],[102.872145,0.70177810000007],[102.87983290000005,0.711199900000054],[102.89332640000003,0.719390900000064],[102.90065060000006,0.720967500000029],[102.89337910000006,0.728177800000026],[102.87697760000003,0.73392350000006],[102.84959050000003,0.738790600000073],[102.81805780000008,0.736639700000069],[102.78786660000009,0.730893900000069],[102.76739090000007,0.731207300000051],[102.74994470000007,0.735908400000028],[102.72957350000007,0.745415],[102.71902220000004,0.747608800000023],[102.71849990000004,0.750325],[102.69520360000007,0.754921500000023],[102.66908660000007,0.755548400000066],[102.65665490000004,0.752205400000037],[102.64213390000003,0.751265200000034],[102.62426990000006,0.742072],[102.59386980000005,0.736639700000069],[102.57005110000006,0.737475400000051],[102.54288950000006,0.746250700000076],[102.53024890000006,0.745728400000075],[102.52878630000004,0.744370300000071],[102.52680140000007,0.744892600000071],[102.52847290000005,0.745101600000055],[102.52806860000004,0.74617470000004],[102.50768380000005,0.748653500000046],[102.487626,0.760980700000061],[102.46934410000006,0.777068700000029],[102.46035990000007,0.779889400000059],[102.450122,0.787097600000038],[102.43988420000005,0.791067400000031],[102.42034870000003,0.801618700000063],[102.41094660000005,0.808095700000024],[102.40115350000008,0.817210800000055],[102.37720350000006,0.85113640000003],[102.36247350000008,0.869313800000043],[102.34951950000004,0.88185],[102.33896830000003,0.900131800000054],[102.334894,0.904519500000049],[102.30929940000004,0.924890700000049],[102.29728560000007,0.937635800000066],[102.28861480000006,0.940038600000037],[102.26270670000008,0.956231100000025],[102.23847020000005,0.982243600000061],[102.225934,1.000107600000035],[102.22290450000008,1.007420300000035],[102.21851680000003,1.027478100000053],[102.20786110000006,1.048267200000055],[102.19196250000005,1.087240700000052],[102.19154760000004,1.104365800000039],[102.19407140000004,1.119932200000051],[102.20723430000004,1.169449900000075],[102.20838350000008,1.187209500000051],[102.20744320000006,1.193268600000067],[102.20232430000004,1.206640500000049],[102.19574280000006,1.217191700000058],[102.17944590000008,1.230354700000021],[102.17735650000009,1.230668100000059],[102.17283770000006,1.227631600000052],[102.17349120000006,1.215102400000035],[102.17181970000007,1.205700300000046],[102.16333320000007,1.191048700000067],[102.162007,1.190790800000059],[102.15099780000008,1.186886900000047],[102.14628190000008,1.186671200000035],[102.14261090000008,1.180601],[102.13186780000007,1.17693410000004],[102.10980010000009,1.147411700000021],[102.107215,1.137467700000059],[102.09461310000006,1.12532310000006],[102.061908,1.076994],[102.032624,1.03756930000003],[102.01131350000009,1.012536700000055],[101.99308150000007,0.995215200000075],[101.96899430000008,0.960484800000074],[101.93773710000005,0.958857500000022],[101.91468390000006,0.96251890000002],[101.90932740000005,0.959535600000038],[101.90193680000004,0.947059700000068],[101.84057470000005,0.946856900000057],[101.87841480000009,1.01428420000002],[101.88415540000005,1.043088400000045],[101.88348080000009,1.068318600000055],[101.87389360000009,1.099985600000025],[101.86368250000004,1.119645600000069],[101.85069910000004,1.137892200000067],[101.81385670000009,1.16891750000002],[101.74048810000005,1.192774200000031],[101.71185010000005,1.197127100000046],[101.61201360000007,1.030612200000064],[101.539421,0.925400400000058],[101.52495220000009,0.93065230000002],[101.52241510000005,0.93543660000006],[101.52028330000007,0.948724700000071],[101.51826250000005,0.951419200000032],[101.51354720000006,0.954306100000053],[101.49778450000008,0.959678900000029],[101.48910460000008,0.966334900000049],[101.47765320000008,0.971242700000062],[101.47433320000005,0.975909800000068],[101.45595320000007,0.984859300000039],[101.45518330000004,0.986495200000036],[101.457974,0.99813910000006],[101.45595320000007,1.003335600000071],[101.44998690000006,1.006414900000038],[101.43988260000003,1.007377200000064],[101.43348330000003,1.016086100000052],[101.42250760000007,1.013958100000025],[101.41635430000008,1.02282230000003],[101.40875210000007,1.021859900000038],[101.401234,1.023399600000062],[101.39431750000006,1.02051270000004],[101.37637050000006,1.023832700000071],[101.37236320000005,1.026549100000068],[101.36769240000007,1.027278900000056],[101.36549640000004,1.032204700000023],[101.35876030000009,1.029029100000059],[101.35362370000007,1.032683200000065],[101.35119870000005,1.032752500000072],[101.33981360000007,1.028154700000073],[101.33191190000008,1.034995400000071],[101.32653110000007,1.035598800000059],[101.32159310000009,1.041635700000029],[101.31631370000008,1.042021100000056],[101.31011570000004,1.046591200000023],[101.30540040000005,1.044955300000026],[101.29779820000005,1.047457300000076],[101.29617090000005,1.051143800000034],[101.29091620000008,1.049903100000051],[101.28843490000008,1.052895300000046],[101.2883,1.057000900000048],[101.28417870000004,1.058271600000069],[101.282391,1.060398],[101.27804310000005,1.053884800000048],[101.27449550000006,1.044210600000042],[101.26653530000004,1.036824500000023],[101.26084090000006,1.034235500000023],[101.25087640000004,1.021269300000029],[101.23668820000006,1.013642],[101.23452270000007,1.009906600000022],[101.23051410000005,1.006868900000029],[100.93258910000009,1.248483100000044]]]},"properties":{"shapeName":"Siak","shapeISO":"","shapeID":"22746128B3903195505018","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[125.333548,2.085704600000042],[125.33216450000009,2.090907200000061],[125.33177100000012,2.087557300000071],[125.333548,2.085704600000042]]],[[[125.34035720000008,2.099713500000064],[125.34002510000005,2.097008300000027],[125.3415563000001,2.098425700000064],[125.34035720000008,2.099713500000064]]],[[[125.34654750000004,2.104127800000072],[125.34311130000003,2.102847100000076],[125.3423183000001,2.104280200000062],[125.3428977000001,2.099767500000041],[125.34654750000004,2.104127800000072]]],[[[125.35181190000003,2.117601700000023],[125.35043070000006,2.120947],[125.34668560000011,2.113611700000035],[125.349802,2.112163700000053],[125.35254290000012,2.112910700000043],[125.35181190000003,2.117601700000023]]],[[[125.36985350000009,2.124457500000062],[125.37040230000002,2.125876800000071],[125.36768350000011,2.128308200000049],[125.36654740000006,2.126503],[125.368758,2.124498700000061],[125.366159,2.12413760000004],[125.36855880000007,2.123389700000075],[125.36985350000009,2.124457500000062]]],[[[125.4087915,2.114443700000038],[125.41264540000009,2.125747800000056],[125.410355,2.13372320000002],[125.40599810000003,2.130734600000039],[125.399891,2.118121500000029],[125.39581240000007,2.114281300000073],[125.39249390000009,2.11378430000002],[125.391493,2.115926],[125.39094010000008,2.112477300000023],[125.385345,2.116235200000062],[125.38272050000012,2.11467870000007],[125.3805354000001,2.117935300000056],[125.37408230000005,2.120564400000035],[125.37283950000005,2.124369200000046],[125.37108990000002,2.123403300000064],[125.37162240000009,2.121680400000059],[125.36755530000005,2.121597100000031],[125.3682477000001,2.119443500000045],[125.36585660000003,2.118873200000053],[125.36357040000007,2.124284100000068],[125.36478980000004,2.12853350000006],[125.36059910000006,2.129329400000074],[125.35854350000011,2.126516400000071],[125.35413620000008,2.125608500000055],[125.35354830000006,2.118498],[125.3551907000001,2.119392300000072],[125.35505750000004,2.113867500000026],[125.3598932000001,2.114936300000068],[125.36229890000004,2.113371900000061],[125.36074580000002,2.109305400000039],[125.36423490000004,2.104654],[125.36130650000007,2.102649500000041],[125.35851150000008,2.106259400000056],[125.35564030000012,2.106712300000027],[125.35532210000008,2.108632200000045],[125.354038,2.10875980000003],[125.35235510000007,2.104636600000049],[125.354493,2.10292910000004],[125.35359760000006,2.100562700000069],[125.35187350000001,2.09937270000006],[125.35034310000003,2.101832600000023],[125.34884390000002,2.101278800000046],[125.34734790000005,2.095803400000023],[125.34582680000005,2.099991],[125.34453410000003,2.10026270000003],[125.34192590000009,2.098131300000034],[125.343769,2.095082600000069],[125.33806720000007,2.09405350000003],[125.336257,2.088262200000031],[125.3366784000001,2.081934200000035],[125.33842490000006,2.080819400000053],[125.34103010000001,2.081425300000035],[125.34048940000002,2.07769490000004],[125.34299370000008,2.072005],[125.3459074000001,2.069649100000049],[125.34813830000007,2.072333100000037],[125.35221110000009,2.070692],[125.35811460000002,2.072250700000041],[125.36020380000002,2.078823900000032],[125.35898150000003,2.08050540000005],[125.36118970000007,2.082898200000045],[125.362022,2.088495700000067],[125.367682,2.089940200000058],[125.37146860000007,2.093306700000028],[125.3794732,2.090442100000075],[125.37883460000012,2.092775],[125.38022390000003,2.094824900000049],[125.39082360000009,2.097768],[125.39227530000005,2.10235780000005],[125.39803140000004,2.104799800000023],[125.40359070000011,2.101024100000075],[125.406641,2.101162700000032],[125.40917080000008,2.103094300000066],[125.40608960000009,2.106023],[125.40832480000006,2.109678700000075],[125.4087915,2.114443700000038]]],[[[125.3787473000001,2.326553300000057],[125.3776395000001,2.328417700000045],[125.376526,2.326929600000028],[125.371959,2.32706150000007],[125.35689050000008,2.321623500000044],[125.351609,2.31669050000005],[125.34282070000006,2.305023300000073],[125.3429761000001,2.303433700000028],[125.3520502,2.296743400000025],[125.3544141000001,2.293004500000052],[125.36443680000002,2.286789500000054],[125.37265380000008,2.287491],[125.377715,2.290740700000072],[125.38315060000002,2.302333600000054],[125.3862395000001,2.304190900000037],[125.38636750000012,2.306922300000053],[125.38353140000004,2.308665400000052],[125.38193500000011,2.313634700000023],[125.38280070000008,2.314626600000054],[125.381582,2.323941],[125.3787473000001,2.326553300000057]]],[[[125.30695360000004,2.3534],[125.30474460000005,2.355311],[125.30506770000011,2.359601800000064],[125.302937,2.361115300000051],[125.3029424,2.364373600000022],[125.29978270000004,2.364696700000025],[125.29622240000003,2.36168280000004],[125.29495450000002,2.359380200000032],[125.2951835,2.354452700000024],[125.29959750000012,2.348167200000034],[125.30410050000012,2.347921300000053],[125.30829030000007,2.349503800000036],[125.30931920000012,2.350614600000029],[125.3086128000001,2.35339730000004],[125.30695360000004,2.3534]]],[[[125.40352580000001,2.366944700000033],[125.40018580000003,2.368604600000026],[125.39589970000009,2.381223700000021],[125.39075690000004,2.383687],[125.38482270000009,2.38184810000007],[125.37685280000005,2.375726800000052],[125.3760519000001,2.372820500000046],[125.37275880000004,2.370905600000071],[125.36904880000009,2.361424400000033],[125.369968,2.355900800000029],[125.37235290000001,2.354136],[125.37460640000006,2.347843800000021],[125.38048590000005,2.341751400000021],[125.38663280000003,2.332308500000067],[125.40445420000003,2.321281100000022],[125.4219839000001,2.316552],[125.429519,2.31693660000002],[125.43131860000005,2.314500500000065],[125.44063010000002,2.317989500000067],[125.44353860000001,2.31682980000005],[125.44399520000002,2.320086600000025],[125.44826610000007,2.324491400000056],[125.44786160000001,2.327667200000064],[125.4553687,2.330705500000022],[125.45738270000004,2.333794600000033],[125.45712620000006,2.339506100000051],[125.45889260000001,2.341606],[125.4639777000001,2.342710300000022],[125.46222040000009,2.34576480000004],[125.46409040000003,2.348544900000036],[125.4668382000001,2.349241],[125.46577280000008,2.349449100000072],[125.46582,2.352995200000066],[125.4621337000001,2.35481610000005],[125.46267140000009,2.35753660000006],[125.46003030000008,2.359252600000048],[125.45811530000003,2.365894800000035],[125.45328490000009,2.36982080000007],[125.44973730000004,2.368940500000065],[125.447649,2.370346200000029],[125.44757080000011,2.372737400000062],[125.444334,2.373527300000035],[125.44359910000003,2.375260500000024],[125.4384265000001,2.37417860000005],[125.4365328,2.375870700000064],[125.43775720000008,2.37789470000007],[125.43715170000007,2.380720300000064],[125.4331274000001,2.38330620000005],[125.43025490000002,2.381346500000063],[125.42573850000008,2.381784300000049],[125.42140060000008,2.379643],[125.41753560000006,2.368536100000028],[125.4159929000001,2.367788300000029],[125.410853,2.369679200000064],[125.406285,2.366939800000068],[125.40352580000001,2.366944700000033]]],[[[125.47669540000004,2.646113700000058],[125.4754153,2.64614320000004],[125.4754124000001,2.644653300000073],[125.47669540000004,2.646113700000058]]],[[[125.484457,2.657450200000028],[125.48160370000005,2.656402700000058],[125.48816150000005,2.647670500000061],[125.48939440000004,2.653168600000072],[125.48753030000012,2.652119],[125.48543870000003,2.653703200000052],[125.484457,2.657450200000028]]],[[[125.47451460000002,2.661391],[125.47404680000011,2.660221600000057],[125.47613950000004,2.659164],[125.47701490000009,2.660449600000049],[125.47451460000002,2.661391]]],[[[125.47564480000005,2.664044500000045],[125.47632540000006,2.664839800000038],[125.47359430000006,2.666717900000037],[125.47564480000005,2.664044500000045]]],[[[125.46494360000008,2.667458500000066],[125.46591930000011,2.67151130000002],[125.46275090000006,2.673247700000047],[125.4613534,2.673412800000051],[125.45617950000008,2.666935500000022],[125.4530142000001,2.670293800000024],[125.44914250000011,2.669815],[125.4535916000001,2.66321030000006],[125.45611520000011,2.661637400000075],[125.45595050000009,2.659907600000054],[125.45938820000003,2.658387],[125.460404,2.655519500000025],[125.45728430000008,2.654714800000022],[125.45845540000005,2.648846500000047],[125.4421526000001,2.642012800000032],[125.44144870000002,2.639473100000032],[125.4428974000001,2.638010500000064],[125.44440780000002,2.640602600000022],[125.45263350000005,2.640802600000029],[125.45612460000007,2.639119700000037],[125.45752880000009,2.64241480000004],[125.4592996,2.640735300000074],[125.46258420000004,2.643431900000053],[125.46623470000009,2.640775500000075],[125.46645510000008,2.643532300000061],[125.463938,2.648349],[125.47030990000007,2.651859900000034],[125.47481510000011,2.656372400000066],[125.46710320000011,2.654288600000029],[125.46454,2.657362],[125.46503040000005,2.661721100000022],[125.46262590000003,2.663825200000076],[125.46494360000008,2.667458500000066]]],[[[125.45351810000011,2.676135800000054],[125.46103,2.679375600000071],[125.46297860000004,2.689072200000055],[125.44801710000002,2.684252100000037],[125.44720810000001,2.681666900000039],[125.45025280000004,2.676648800000066],[125.45351810000011,2.676135800000054]]],[[[125.18109890000005,2.723546700000043],[125.18624120000004,2.728904200000045],[125.18692780000003,2.734537400000022],[125.18454740000004,2.73976730000004],[125.17761990000008,2.744685700000048],[125.16967010000008,2.740334500000074],[125.16824340000005,2.736855300000059],[125.17350010000007,2.729566300000045],[125.17514040000003,2.722333],[125.17843630000004,2.721920500000067],[125.18109890000005,2.723546700000043]]],[[[125.42164610000009,2.80967],[125.41081240000005,2.81124310000007],[125.39257050000003,2.810071900000025],[125.37540430000001,2.797284300000058],[125.369805,2.785822600000074],[125.370987,2.773000500000023],[125.36873320000007,2.764560700000061],[125.36632720000011,2.762538300000074],[125.3633804000001,2.754456300000072],[125.35950470000012,2.73758440000006],[125.36192320000009,2.725855100000047],[125.3609772000001,2.71465470000004],[125.36499020000008,2.698277200000064],[125.37306980000005,2.67802690000002],[125.37365720000003,2.663865800000053],[125.37730410000006,2.65801330000005],[125.37719730000003,2.649872100000039],[125.39850620000004,2.633310300000062],[125.40588380000008,2.631444700000031],[125.4123459000001,2.632140200000038],[125.4195112000001,2.63581240000002],[125.42894430000001,2.644563700000049],[125.4298404000001,2.647758],[125.43187720000003,2.64916020000004],[125.42985240000007,2.65389440000007],[125.4219902000001,2.663157700000056],[125.403311,2.668544200000042],[125.39273140000012,2.682526300000063],[125.3937247,2.691062],[125.39653640000006,2.693238],[125.39664920000007,2.69931680000002],[125.4021504000001,2.708993],[125.40083980000009,2.711475800000073],[125.40579980000007,2.725189800000066],[125.40967490000003,2.730721100000039],[125.41658460000008,2.732526],[125.41871980000008,2.73136420000003],[125.42332710000005,2.733008300000051],[125.42390680000005,2.735074],[125.427521,2.733495900000037],[125.42793540000002,2.735148500000037],[125.43141160000005,2.736484800000028],[125.430597,2.740206700000044],[125.43522450000012,2.741644],[125.43872980000003,2.747217200000023],[125.44449010000005,2.749788900000055],[125.44736710000006,2.749576300000058],[125.44881320000002,2.75319010000004],[125.45148560000007,2.753391300000033],[125.45344620000003,2.757314100000031],[125.45139470000004,2.759178500000075],[125.45499830000006,2.762477800000056],[125.45583770000007,2.770846500000061],[125.45339410000008,2.781908800000053],[125.44744860000003,2.789258300000029],[125.44662320000009,2.78771],[125.44528940000009,2.788746100000026],[125.44550130000005,2.791845900000055],[125.44211690000009,2.795263100000057],[125.43657130000008,2.797238200000038],[125.437092,2.800544],[125.432579,2.804893700000036],[125.42164610000009,2.80967]]]]},"properties":{"shapeName":"Siau Tagulandang Biaro","shapeISO":"","shapeID":"22746128B2725922496712","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[119.74940760000004,-4.1290267],[119.76042180000002,-4.129155199999957],[119.76480870000012,-4.127753699999971],[119.76908110000011,-4.133101499999952],[119.77301790000001,-4.1309552],[119.77697750000004,-4.132668499999966],[119.7816772000001,-4.123750199999961],[119.78748320000011,-4.125478299999941],[119.79414370000006,-4.123759699999937],[119.8004532000001,-4.130869399999938],[119.80410770000003,-4.130366299999935],[119.805809,-4.131596599999966],[119.8091965000001,-4.128898099999958],[119.80589290000012,-4.118739599999969],[119.80703740000001,-4.111710499999958],[119.82566070000007,-4.106090499999937],[119.83205410000005,-4.107336],[119.84903310000004,-4.098392399999966],[119.86489870000003,-4.1060143],[119.87996670000007,-4.111172699999941],[119.88663480000002,-4.112054299999954],[119.89216320000003,-4.107827599999951],[119.8907587000001,-4.105021699999952],[119.89189190000002,-4.102369499999952],[119.8900499,-4.100197899999955],[119.89200360000007,-4.081764699999951],[119.8945615,-4.076008],[119.90505220000011,-4.066873499999929],[119.899971,-4.061524399999939],[119.90185380000003,-4.059363899999937],[119.902127,-4.053401799999961],[119.89529260000006,-4.043142899999964],[119.89367070000003,-4.028047],[119.88670410000009,-4.019035299999928],[119.89261850000003,-4.001620099999968],[119.90466370000001,-3.985397099999943],[119.9057117000001,-3.982279099999971],[119.90505210000003,-3.968746],[119.91153240000006,-3.962847899999929],[119.914903,-3.950588],[119.91451260000008,-3.943055899999933],[119.9183273000001,-3.936186299999974],[119.9159393000001,-3.934925799999974],[119.91706240000008,-3.934018399999957],[119.91619520000006,-3.932531899999958],[119.92974420000007,-3.931839599999932],[119.9395760000001,-3.928796399999953],[119.94079040000008,-3.934936899999968],[119.95230720000006,-3.938919099999964],[119.953505,-3.934835599999928],[119.9589324000001,-3.936822],[119.96010760000001,-3.938821399999938],[119.96064510000008,-3.937102399999958],[119.97018430000003,-3.936729199999945],[119.97324760000004,-3.9311121],[119.9754603,-3.931605599999955],[119.97497250000004,-3.934830699999964],[119.97704380000005,-3.935682799999938],[119.98752050000007,-3.933639599999935],[119.99214160000008,-3.9295401],[119.99614050000002,-3.930958299999929],[119.99755540000001,-3.927729899999974],[119.999338,-3.927651899999944],[120.00050210000006,-3.9307063],[120.00258170000006,-3.931197699999927],[120.0038379,-3.929569599999979],[120.00247260000003,-3.926709399999936],[120.00567750000005,-3.925480199999924],[120.00861180000004,-3.928334699999937],[120.00656830000003,-3.936265],[120.01609940000003,-3.938048799999933],[120.02286750000007,-3.936090199999967],[120.02682470000002,-3.925976599999956],[120.03877370000009,-3.917123199999935],[120.04232260000003,-3.912454599999933],[120.05228670000008,-3.884144499999934],[120.04877050000005,-3.880624],[120.04985340000007,-3.876327599999968],[120.04908110000008,-3.868806199999938],[120.05715180000004,-3.862099199999932],[120.05754850000005,-3.854876799999943],[120.06288150000012,-3.855390499999942],[120.06412320000004,-3.857224899999949],[120.06827550000003,-3.852992499999971],[120.07100680000008,-3.853238599999941],[120.0725632000001,-3.851706699999966],[120.0760269000001,-3.852700199999958],[120.07944490000011,-3.848527],[120.08198550000009,-3.850845299999946],[120.08240580000006,-3.847575799999959],[120.08712930000002,-3.8484265],[120.08821510000007,-3.844861099999946],[120.09297590000006,-3.843068799999969],[120.09577940000008,-3.844586399999969],[120.1019669000001,-3.843498899999929],[120.10260930000004,-3.839988299999959],[120.11157070000002,-3.841108499999962],[120.11257880000005,-3.848221599999931],[120.10993960000008,-3.848175],[120.11148150000008,-3.850463199999979],[120.1152585000001,-3.849876399999971],[120.11441250000007,-3.8525294],[120.11783060000005,-3.851299299999937],[120.11945570000012,-3.847211],[120.12217540000006,-3.849994199999969],[120.130076,-3.846169299999929],[120.13128050000012,-3.844087899999977],[120.12920370000006,-3.841588899999977],[120.12897850000002,-3.838510099999951],[120.1303147000001,-3.833420199999978],[120.14067160000002,-3.8286553],[120.14172620000011,-3.824569199999928],[120.13934290000009,-3.8161986],[120.14425540000002,-3.814246899999944],[120.14553020000005,-3.802067099999931],[120.1542832,-3.797523099999978],[120.14807050000002,-3.7915081],[120.14813790000005,-3.787930299999971],[120.15130780000004,-3.785112],[120.14582760000008,-3.779277699999966],[120.147988,-3.775731099999973],[120.15029450000009,-3.775215199999934],[120.15025470000012,-3.773050499999954],[120.1558940000001,-3.770288599999958],[120.1629746000001,-3.769022399999926],[120.1869822000001,-3.774730399999953],[120.19278,-3.773981599999956],[120.19524580000007,-3.767772699999966],[120.20180690000007,-3.760877299999947],[120.2017896000001,-3.757976599999949],[120.20678690000011,-3.752031199999976],[120.21047710000005,-3.734749499999964],[120.212526,-3.734953],[120.21291180000003,-3.730146099999956],[120.227059,-3.725075799999956],[120.23141410000005,-3.715811699999961],[120.23568190000003,-3.711996499999941],[120.23709320000012,-3.707618199999956],[120.24066060000007,-3.707461699999953],[120.2491083000001,-3.714886299999932],[120.2566766000001,-3.716005299999949],[120.2604047000001,-3.720722799999976],[120.26661950000005,-3.722491899999966],[120.27011220000009,-3.721403599999974],[120.27470050000011,-3.717515399999968],[120.28219810000007,-3.718849499999976],[120.28541660000008,-3.7208447],[120.29686450000008,-3.717755499999953],[120.30136170000003,-3.710318799999925],[120.30517650000002,-3.709587699999929],[120.30999770000005,-3.701254199999937],[120.31068840000012,-3.695086799999956],[120.31438120000007,-3.690341799999942],[120.331073,-3.679455],[120.33019960000001,-3.665193399999964],[120.32443790000002,-3.651683099999957],[120.3226548,-3.651835199999937],[120.32176740000011,-3.649685199999965],[120.30473330000007,-3.648627],[120.28984830000002,-3.639771],[120.282839,-3.632876299999964],[120.27962080000009,-3.632669599999929],[120.27018670000007,-3.627671199999952],[120.2682215000001,-3.6203014],[120.25091880000002,-3.609714299999951],[120.24277110000003,-3.600910699999929],[120.23065190000011,-3.592427199999975],[120.22094630000004,-3.5913929],[120.20756070000004,-3.594367199999965],[120.20579530000009,-3.5861654],[120.1983871000001,-3.584379899999931],[120.19641880000006,-3.581456199999934],[120.19196320000003,-3.566352099999961],[120.1929474000001,-3.5607672],[120.191658,-3.5472507],[120.18902590000005,-3.544942099999957],[120.18794250000008,-3.539603899999975],[120.18389890000003,-3.534795799999927],[120.18207250000012,-3.534410199999968],[120.18214190000003,-3.524051699999973],[120.17954980000002,-3.519995299999948],[120.17899680000005,-3.506790599999931],[120.17405680000002,-3.500497799999948],[120.17147530000011,-3.500712799999974],[120.17063070000006,-3.497957799999938],[120.16521010000008,-3.497801],[120.15751460000001,-3.501],[120.14949520000005,-3.502271899999926],[120.14538270000003,-3.500436099999945],[120.13575490000005,-3.5007531],[120.1251023000001,-3.490971],[120.11701650000009,-3.486587],[120.10257060000004,-3.487706499999945],[120.10146370000007,-3.485291299999972],[120.0985634000001,-3.485755499999925],[120.09614310000006,-3.483085799999969],[120.09734050000009,-3.497897299999977],[120.09491670000011,-3.502745],[120.08885710000004,-3.507592699999975],[120.07673780000005,-3.508804599999962],[120.06797030000007,-3.530301099999974],[120.06255340000007,-3.535675],[120.0447845000001,-3.538204199999939],[120.0413132000001,-3.541451199999926],[120.04082490000008,-3.551607599999954],[120.038826,-3.558752099999936],[120.02716060000012,-3.57827],[120.01529690000007,-3.609211699999946],[120.00548550000008,-3.6234004],[119.9993134,-3.627430699999934],[119.99620820000007,-3.626991299999929],[119.99149490000002,-3.629269299999976],[119.99371230000008,-3.632845199999963],[119.992466,-3.640218599999969],[119.99533040000006,-3.6401136],[119.99599810000007,-3.642771799999935],[119.99538170000005,-3.648704599999974],[119.99346220000007,-3.649126899999942],[119.99162660000002,-3.653928299999961],[119.99266050000006,-3.657803299999955],[119.99520870000003,-3.659986699999934],[119.98878480000008,-3.661891199999957],[119.98076020000008,-3.660820499999943],[119.98018610000008,-3.667283299999951],[119.98271720000002,-3.669932699999947],[119.972496,-3.665645799999936],[119.96987150000007,-3.667157599999939],[119.96736150000004,-3.6645641],[119.95096590000003,-3.660103799999945],[119.94798280000009,-3.6682689],[119.9405746000001,-3.671737],[119.93695830000001,-3.676034199999947],[119.92707450000012,-3.679176799999937],[119.92272230000003,-3.685841],[119.92364960000009,-3.690531899999939],[119.9217016,-3.694116299999962],[119.92493530000002,-3.700661699999955],[119.93131630000005,-3.702878899999973],[119.93268850000004,-3.709194099999934],[119.937166,-3.708911399999977],[119.93490930000007,-3.717297899999949],[119.93148070000007,-3.719523299999935],[119.93857160000005,-3.7196745],[119.93864950000011,-3.723414799999944],[119.93653110000002,-3.724595499999964],[119.9384308000001,-3.726513099999977],[119.93800350000004,-3.729247599999951],[119.93941390000009,-3.731897599999968],[119.9380996000001,-3.735651899999937],[119.94067480000001,-3.738526],[119.94045910000011,-3.752434899999969],[119.944138,-3.756628499999977],[119.94315510000001,-3.758227],[119.94023090000007,-3.758647],[119.94055420000007,-3.761936],[119.94391630000007,-3.765740199999925],[119.94779530000005,-3.766954],[119.94551320000005,-3.771173499999975],[119.95024790000002,-3.779293499999937],[119.95387530000005,-3.781075899999962],[119.95912930000009,-3.778872299999932],[119.96350890000008,-3.781283199999962],[119.9664001000001,-3.786717899999928],[119.96926,-3.788698699999941],[119.96697440000003,-3.790810399999941],[119.96760370000004,-3.796286399999929],[119.96330910000006,-3.7948246],[119.95928,-3.799973299999976],[119.96022120000009,-3.801999599999931],[119.950325,-3.802405599999929],[119.94659420000005,-3.8056214],[119.94487,-3.8097596],[119.9363403000001,-3.802373899999964],[119.9275742000001,-3.815556499999957],[119.9250793000001,-3.815708899999947],[119.91946410000003,-3.810305599999936],[119.91722870000001,-3.8106194],[119.907753,-3.8165441],[119.90107730000011,-3.824099099999955],[119.8927155,-3.817054],[119.88618470000006,-3.816966799999932],[119.87751010000011,-3.819302799999946],[119.86870570000008,-3.816304],[119.86065670000005,-3.810755299999926],[119.85977170000001,-3.807719],[119.86082460000011,-3.805619699999966],[119.8552668000001,-3.805918499999962],[119.85474610000006,-3.802922199999955],[119.852473,-3.803108499999951],[119.85283330000004,-3.800915699999962],[119.84982760000003,-3.797814599999981],[119.84982270000012,-3.794708899999932],[119.845137,-3.789268799999945],[119.84592880000002,-3.787340899999947],[119.84448510000004,-3.785866699999929],[119.8437881000001,-3.778854599999931],[119.83743290000007,-3.773310699999968],[119.82254790000002,-3.767931199999964],[119.81997680000006,-3.751918599999954],[119.81817630000012,-3.748340799999937],[119.81477360000008,-3.744488499999932],[119.8125305000001,-3.744757899999968],[119.80975340000009,-3.741509],[119.80559540000002,-3.740286799999978],[119.80222320000007,-3.734983899999975],[119.80313870000009,-3.731356399999925],[119.79733280000005,-3.726301699999965],[119.79650880000008,-3.723282799999936],[119.78236250000009,-3.718953899999974],[119.78520970000011,-3.729877699999975],[119.78251650000004,-3.731018799999958],[119.77799990000005,-3.737857799999972],[119.76536560000011,-3.741616],[119.7647095000001,-3.743655199999978],[119.76222990000008,-3.744859899999938],[119.75643920000005,-3.745046399999978],[119.75444030000006,-3.753602699999931],[119.7511826000001,-3.757275799999945],[119.75024410000003,-3.760288],[119.75857540000004,-3.7651401],[119.75496670000007,-3.767369],[119.74595640000007,-3.784881799999937],[119.75647030000005,-3.800769],[119.75350240000012,-3.799111399999958],[119.745103,-3.817461699999967],[119.73829460000002,-3.837957],[119.7400914000001,-3.843295299999966],[119.73652510000011,-3.846523],[119.73732660000007,-3.848447299999975],[119.7338641,-3.852830499999925],[119.73405290000005,-3.857139699999948],[119.72886530000005,-3.860046899999929],[119.72756850000007,-3.8628682],[119.72726780000005,-3.8679918],[119.72533270000008,-3.871295499999974],[119.72608750000006,-3.872486299999935],[119.72329850000006,-3.877132199999949],[119.72707320000006,-3.883453299999928],[119.72318270000005,-3.888454199999956],[119.72456360000001,-3.895049099999937],[119.71778870000003,-3.907406299999934],[119.71272280000005,-3.910791899999936],[119.70945740000002,-3.910962299999937],[119.70362850000004,-3.906290099999978],[119.69312290000005,-3.920706499999937],[119.69292450000012,-3.927029399999981],[119.68212890000007,-3.936694599999953],[119.66408660000002,-3.961288899999943],[119.67069310000011,-3.973027899999977],[119.6832889000001,-3.986306099999979],[119.6856103,-3.993126599999925],[119.69212530000004,-3.994567],[119.693161,-3.999815399999932],[119.6909667000001,-4.001719499999979],[119.689521,-4.008235599999978],[119.68558660000008,-4.011508099999958],[119.6892782000001,-4.014334299999973],[119.6924146,-4.014410199999929],[119.69353120000005,-4.016140499999949],[119.69852530000003,-4.013751599999978],[119.6956024000001,-4.01788],[119.70187980000003,-4.019241399999942],[119.70218510000007,-4.021703],[119.69939420000003,-4.022718399999974],[119.70052830000009,-4.030609199999958],[119.69795450000004,-4.03425],[119.698555,-4.039225099999953],[119.701724,-4.040158299999973],[119.6978262,-4.045417499999928],[119.69792780000012,-4.051532],[119.70649630000003,-4.060571599999946],[119.70841220000011,-4.070899499999939],[119.7150421,-4.072540299999957],[119.71458440000004,-4.076785099999938],[119.70721810000009,-4.079323099999954],[119.712545,-4.081195],[119.712407,-4.08238],[119.715769,-4.083204],[119.71866980000004,-4.0862867],[119.7180939000001,-4.090931399999931],[119.71989440000004,-4.096000199999935],[119.734314,-4.108296399999972],[119.74940760000004,-4.1290267]]]},"properties":{"shapeName":"Sidenreng Rappang","shapeISO":"","shapeID":"22746128B88967156917164","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[112.49372660000006,-7.409214599999927],[112.491798,-7.410289],[112.48627470000008,-7.4090093],[112.48351280000009,-7.410325399999977],[112.48354330000006,-7.417044499999975],[112.473816,-7.424147],[112.47347250000007,-7.429113299999926],[112.46781080000005,-7.431708799999967],[112.46232290000012,-7.432275799999957],[112.45668790000002,-7.446969399999944],[112.468643,-7.445291],[112.488594,-7.459949],[112.50548550000008,-7.462478499999975],[112.512192,-7.466928],[112.529217,-7.469222],[112.534065,-7.47121],[112.53772170000002,-7.470404099999939],[112.55506900000012,-7.475113],[112.562632,-7.475217],[112.570325,-7.478125],[112.573212,-7.483362],[112.57782,-7.484037],[112.579994,-7.48643],[112.58185930000002,-7.4919316],[112.591309,-7.494201],[112.5977282,-7.500064599999973],[112.60263220000002,-7.501175099999955],[112.60544820000007,-7.5066165],[112.608716,-7.50723],[112.614234,-7.515409],[112.619858,-7.518998],[112.630479,-7.532712],[112.640167,-7.536288],[112.64674530000002,-7.537044699999967],[112.65157310000006,-7.546725099999946],[112.663694,-7.557212],[112.66352670000003,-7.5598906],[112.670564,-7.560774699999968],[112.67383510000002,-7.559998099999973],[112.67335380000009,-7.558817799999929],[112.6775368000001,-7.552546499999949],[112.68256550000001,-7.548573899999951],[112.68894150000006,-7.551046699999972],[112.689192,-7.549577899999974],[112.69470210000009,-7.545925899999929],[112.70618430000002,-7.544932699999947],[112.71001430000001,-7.548610499999938],[112.71188350000011,-7.557371],[112.719223,-7.561007299999972],[112.72158040000011,-7.563732399999935],[112.72283030000006,-7.568798799999968],[112.72618680000005,-7.571176099999946],[112.73298590000002,-7.571008499999948],[112.7397155000001,-7.573274],[112.74691770000004,-7.571750899999927],[112.75291430000004,-7.575239],[112.75643150000008,-7.573209099999929],[112.76243580000005,-7.574870899999951],[112.76987560000009,-7.574006399999973],[112.76972650000005,-7.571892],[112.77162870000006,-7.570484399999941],[112.77694880000001,-7.5725495],[112.77799980000009,-7.568349699999942],[112.784706,-7.562778299999934],[112.79019160000007,-7.564448199999958],[112.79592720000005,-7.561151699999925],[112.7995218000001,-7.560545899999966],[112.80144490000009,-7.5620459],[112.80213160000005,-7.559101399999975],[112.8049926000001,-7.559256399999981],[112.805046,-7.556312899999966],[112.80651080000007,-7.555036799999925],[112.81163780000009,-7.554587199999958],[112.81092830000011,-7.556824499999948],[112.81289670000001,-7.558673699999929],[112.8165206000001,-7.558917799999961],[112.82708730000002,-7.553461299999981],[112.83203120000007,-7.552370399999973],[112.83422110000004,-7.553862299999935],[112.83750140000006,-7.568353899999977],[112.8448,-7.57786],[112.84756,-7.5795],[112.85636370000009,-7.580222],[112.8632861000001,-7.579484099999945],[112.868283,-7.5765098],[112.88166750000005,-7.577937499999962],[112.87571880000007,-7.571929299999965],[112.87357730000008,-7.565623699999946],[112.874648,-7.562173499999972],[112.8736368000001,-7.554559299999937],[112.86805690000006,-7.551394599999981],[112.8697820000001,-7.544672599999956],[112.86880110000004,-7.540378099999941],[112.87311330000011,-7.5372368],[112.86948460000008,-7.532002],[112.86597490000008,-7.530574299999955],[112.86645080000005,-7.5290871],[112.86288160000004,-7.523792799999967],[112.8603237000001,-7.524268699999936],[112.85782530000006,-7.522543599999949],[112.86126310000009,-7.520936199999937],[112.84900890000006,-7.517307599999981],[112.83969920000004,-7.510526099999936],[112.83699260000003,-7.511715799999934],[112.83101720000002,-7.5008929],[112.82202370000005,-7.4919552],[112.818641,-7.480961299999933],[112.81623180000008,-7.478849499999967],[112.8129100000001,-7.47949],[112.81754,-7.4737],[112.81976,-7.47318],[112.82895280000002,-7.474523],[112.83535070000005,-7.4843104],[112.83913410000002,-7.483311],[112.84065690000011,-7.479837],[112.83761720000007,-7.440564],[112.83461910000005,-7.425811299999964],[112.83599920000006,-7.423241499999961],[112.83666540000002,-7.410202099999935],[112.83561840000004,-7.405585899999949],[112.83322790000011,-7.404698199999928],[112.83651380000003,-7.386246699999958],[112.83327310000004,-7.383518799999933],[112.83668890000001,-7.378603399999974],[112.83731870000008,-7.373328399999934],[112.83544940000002,-7.372236899999962],[112.838029,-7.369856499999969],[112.8427,-7.338545499999952],[112.84213710000006,-7.332143799999926],[112.83911060000003,-7.330309399999976],[112.83626470000002,-7.331504299999949],[112.83073720000004,-7.336859499999946],[112.8280185000001,-7.3434],[112.82663120000007,-7.343308599999943],[112.8196249,-7.343326199999979],[112.81280980000008,-7.346290899999929],[112.79868310000006,-7.344906199999969],[112.79364770000007,-7.346391],[112.78893270000003,-7.343962499999975],[112.78373710000005,-7.345486],[112.77947230000007,-7.344696399999975],[112.77943410000012,-7.342612599999939],[112.77747810000005,-7.341127799999981],[112.77014150000002,-7.339232299999935],[112.76728050000008,-7.3416393],[112.76650990000007,-7.3383363],[112.75540920000003,-7.336743199999944],[112.75346370000011,-7.3422302],[112.74302670000009,-7.340814899999941],[112.7419814000001,-7.345201799999927],[112.73677060000011,-7.344796499999973],[112.73631280000006,-7.346227499999941],[112.73342890000004,-7.346590299999946],[112.73315420000006,-7.348126699999966],[112.72718930000008,-7.3484439],[112.71972650000009,-7.3444999],[112.7198423000001,-7.342963899999972],[112.7156801000001,-7.341827499999965],[112.71610110000006,-7.339933],[112.70467470000006,-7.336152799999979],[112.6952056,-7.343425599999932],[112.67646780000007,-7.351013],[112.66242490000002,-7.351342899999963],[112.65634340000008,-7.356820099999936],[112.65397180000002,-7.3590018],[112.65353280000011,-7.362098299999957],[112.64264160000005,-7.360835099999974],[112.62893670000005,-7.36808],[112.62499990000003,-7.366806399999973],[112.6215896000001,-7.368008499999974],[112.61824030000002,-7.366362],[112.6131286000001,-7.368735199999946],[112.5968246000001,-7.372170799999935],[112.59237670000005,-7.3722146],[112.58892820000005,-7.370105599999931],[112.588272,-7.375601099999926],[112.58403770000007,-7.379687599999954],[112.5835571,-7.383378799999946],[112.5793761000001,-7.383669199999929],[112.57834620000006,-7.387087199999939],[112.57475280000006,-7.388584],[112.5718154000001,-7.391987699999959],[112.57041740000011,-7.391548599999965],[112.57001490000005,-7.387979399999949],[112.5683504000001,-7.3877496],[112.56738260000009,-7.397271399999966],[112.55232880000005,-7.400400899999966],[112.54909820000012,-7.403572799999949],[112.54282120000005,-7.404457299999933],[112.54248360000008,-7.405951799999968],[112.5381546000001,-7.405073199999947],[112.53068540000004,-7.406185599999958],[112.52375030000007,-7.403612599999974],[112.49372660000006,-7.409214599999927]]]},"properties":{"shapeName":"Sidoarjo","shapeISO":"","shapeID":"22746128B91854409622518","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[119.69700650000004,-1.452524699999969],[119.7004521,-1.458651599999939],[119.69259540000007,-1.467011399999933],[119.69334920000006,-1.472722],[119.68657960000007,-1.477366399999937],[119.68476910000004,-1.485285199999964],[119.68009440000003,-1.4903066],[119.68050920000007,-1.494526499999949],[119.67509970000003,-1.502169699999968],[119.66931440000008,-1.514187499999935],[119.66872290000003,-1.521065599999929],[119.66642230000002,-1.525605299999938],[119.66663540000002,-1.5304852],[119.66853230000004,-1.533528399999966],[119.67346830000008,-1.535618799999952],[119.67109850000008,-1.543999399999961],[119.6778399000001,-1.550398299999927],[119.68648080000003,-1.55468],[119.6889063000001,-1.558047699999975],[119.689701,-1.562854499999958],[119.69200020000005,-1.564839699999936],[119.70126470000002,-1.566065799999933],[119.70334190000005,-1.572696299999961],[119.709984,-1.5768176],[119.7097017000001,-1.582429899999966],[119.71530890000008,-1.592182499999979],[119.72068420000005,-1.597146899999927],[119.72668910000004,-1.599216199999944],[119.7279936000001,-1.602259799999956],[119.7334373000001,-1.604954599999928],[119.73568180000007,-1.613852799999961],[119.73342240000011,-1.617768799999965],[119.72704880000003,-1.6223231],[119.72884660000011,-1.627010799999937],[119.72624580000002,-1.634984899999949],[119.72783720000007,-1.643468399999961],[119.72990470000002,-1.645019899999966],[119.73617810000007,-1.643447799999933],[119.75047250000011,-1.643409899999938],[119.75128390000009,-1.6531143],[119.75981230000002,-1.659328599999981],[119.75937490000001,-1.668492399999934],[119.76427640000009,-1.678552299999978],[119.77892050000003,-1.690043799999955],[119.77942690000009,-1.700335699999926],[119.77643980000005,-1.704605299999969],[119.7764658000001,-1.709053499999925],[119.77877300000011,-1.7122692],[119.79200070000002,-1.721135099999969],[119.79428070000006,-1.724564499999929],[119.79245450000008,-1.730300599999964],[119.79754080000009,-1.739182099999937],[119.80446270000004,-1.7436622],[119.80900930000007,-1.741287399999976],[119.81459380000001,-1.749298599999975],[119.81460820000007,-1.755014699999947],[119.82008340000004,-1.758122599999979],[119.822374,-1.762987199999941],[119.82694140000001,-1.767393399999946],[119.83571610000001,-1.769770599999958],[119.84377,-1.7755111],[119.8547516000001,-1.769946],[119.8613921000001,-1.772447599999964],[119.86644860000001,-1.770948799999928],[119.87094130000003,-1.777483699999948],[119.87127790000011,-1.780922299999929],[119.86567050000008,-1.788421799999981],[119.86507390000008,-1.794874299999947],[119.86080270000002,-1.800257399999964],[119.85897260000002,-1.808211899999947],[119.86268860000007,-1.816790099999935],[119.85794930000009,-1.822065599999974],[119.86243880000006,-1.836208599999964],[119.86888380000005,-1.842306399999927],[119.86722510000004,-1.849863099999936],[119.87509540000008,-1.860205299999961],[119.87536820000003,-1.862617399999976],[119.86345970000002,-1.872856399999932],[119.8568954000001,-1.876499699999954],[119.85929040000008,-1.880308899999932],[119.86577240000008,-1.8813192],[119.869124,-1.890376599999968],[119.86567840000009,-1.911833399999978],[119.86053020000008,-1.915754599999957],[119.86309620000009,-1.920033299999943],[119.86046750000003,-1.928034499999967],[119.86335190000011,-1.935023399999977],[119.87082630000009,-1.938218399999926],[119.86562910000009,-1.949702799999955],[119.8675108000001,-1.953187399999933],[119.8645643000001,-1.957285699999943],[119.86379810000005,-1.961208599999964],[119.867699,-1.967761799999948],[119.86761260000003,-1.984442099999967],[119.87043720000008,-1.999807099999941],[119.86613090000003,-2.011389599999973],[119.86914030000003,-2.013742599999944],[119.87027130000001,-2.018059699999981],[119.87344610000002,-2.021081099999947],[119.86823490000006,-2.027505799999972],[119.87158940000006,-2.034538699999928],[119.8792883000001,-2.038021699999945],[119.88388730000008,-2.046253899999954],[119.89114110000003,-2.049719499999981],[119.89380060000008,-2.048908499999925],[119.89680240000007,-2.054019199999971],[119.90095810000003,-2.055448299999966],[119.90910290000011,-2.053427499999941],[119.92066810000006,-2.033682],[119.92437920000009,-2.033883],[119.93037850000007,-2.037468099999955],[119.9366159000001,-2.035206899999935],[119.93926230000011,-2.030829],[119.9440327000001,-2.029320399999961],[119.94522740000002,-2.027330499999948],[119.94384060000004,-2.022435899999948],[119.94522620000009,-2.020174599999962],[119.94448140000009,-2.015468599999963],[119.94832880000001,-2.011350599999957],[119.95234230000005,-2.009382699999946],[119.95550450000007,-2.003784199999927],[119.963787,-2.000317699999925],[119.96447380000006,-1.989582799999937],[119.96841430000006,-1.977315199999964],[119.972033,-1.974986699999931],[119.9837768000001,-1.973619299999939],[119.99127690000012,-1.965953199999944],[120.01001180000003,-1.9643835],[120.01322660000005,-1.966277599999955],[120.01571740000009,-1.969995399999959],[120.02161400000011,-1.967747299999928],[120.03393110000002,-1.972594099999981],[120.0408298000001,-1.980539299999975],[120.05086560000007,-1.984776699999941],[120.05354370000009,-1.982206499999961],[120.06128680000006,-1.980937299999937],[120.08526450000011,-1.979733099999976],[120.09898410000005,-1.985720799999967],[120.10651260000009,-1.965039799999943],[120.10086990000002,-1.958780799999943],[120.10007510000003,-1.951076399999977],[120.10137820000011,-1.942509799999925],[120.09760810000012,-1.934928299999967],[120.10321660000011,-1.916552],[120.10300270000005,-1.899410899999964],[120.10541790000002,-1.896980699999972],[120.11198470000011,-1.895866699999942],[120.12064950000001,-1.904243799999961],[120.12447150000003,-1.905645599999957],[120.13189370000009,-1.895740199999977],[120.14329170000008,-1.888555799999949],[120.1447839000001,-1.886213399999974],[120.13796860000002,-1.872740299999975],[120.13561780000009,-1.871441],[120.13563910000005,-1.864470899999958],[120.13119180000001,-1.861791899999957],[120.13305890000004,-1.860883299999955],[120.1328191,-1.858534199999951],[120.12647630000004,-1.855009099999961],[120.1271365,-1.850470099999939],[120.12365670000008,-1.845843399999978],[120.1192122000001,-1.844005799999934],[120.12078310000004,-1.836985899999945],[120.11600270000008,-1.835579299999949],[120.11439030000008,-1.831555099999946],[120.11034710000001,-1.833869199999924],[120.10059110000009,-1.823632299999929],[120.104165,-1.821160099999929],[120.107365,-1.815504399999952],[120.10911340000007,-1.815366599999948],[120.10755040000004,-1.803113099999962],[120.11245080000003,-1.79705],[120.12136240000007,-1.798771399999964],[120.14689080000005,-1.792730699999936],[120.17209380000008,-1.785342899999932],[120.1769326000001,-1.782651599999951],[120.1776446,-1.780852699999969],[120.17702430000008,-1.776951499999939],[120.1702457,-1.767586599999959],[120.16706740000006,-1.756399699999974],[120.17074820000005,-1.744624099999953],[120.16989820000003,-1.741499],[120.16049780000003,-1.730783199999962],[120.1555866000001,-1.727909799999964],[120.15130290000002,-1.721485099999938],[120.1563268000001,-1.718559499999969],[120.15533170000003,-1.717881299999931],[120.15587890000006,-1.714241699999945],[120.1484034,-1.69859],[120.15162170000008,-1.6831193],[120.14537860000007,-1.669136499999979],[120.14384230000007,-1.657666399999925],[120.13594640000008,-1.650759299999947],[120.1376997000001,-1.6412983],[120.1368543000001,-1.628959699999939],[120.14002110000001,-1.626793799999973],[120.14598720000004,-1.617924499999958],[120.14464740000005,-1.608342],[120.1408206000001,-1.604056899999932],[120.14028760000008,-1.599279],[120.14237330000003,-1.593187199999932],[120.14312530000007,-1.5710809],[120.13999500000011,-1.566198399999962],[120.1385471000001,-1.559723499999961],[120.13363110000012,-1.556731699999943],[120.13077520000002,-1.556185],[120.12878950000004,-1.558076],[120.12308120000012,-1.558924599999955],[120.1205136000001,-1.562930399999971],[120.11794530000009,-1.564135799999974],[120.1134396000001,-1.5622093],[120.10621870000011,-1.563376399999925],[120.102602,-1.560265],[120.10124070000006,-1.556708199999946],[120.09880080000005,-1.556865399999936],[120.10613950000004,-1.5429695],[120.10670020000009,-1.5354894],[120.11040390000005,-1.529625399999929],[120.1093773,-1.523942299999931],[120.11071220000008,-1.519935499999974],[120.11301250000008,-1.517812],[120.12025480000011,-1.515960299999961],[120.12788520000004,-1.503667299999961],[120.130581,-1.5023883],[120.13639720000003,-1.503881699999965],[120.13705460000006,-1.495796899999959],[120.14384940000002,-1.492701199999942],[120.15109830000006,-1.478958],[120.15961570000002,-1.472460699999942],[120.16670480000005,-1.460550599999976],[120.169966,-1.457675],[120.17478140000003,-1.456549399999972],[120.1810392000001,-1.4480852],[120.186696,-1.4514956],[120.1954991,-1.450231],[120.1985615000001,-1.4534506],[120.20303600000011,-1.455338499999925],[120.21418490000008,-1.453188799999964],[120.21920040000009,-1.456247499999961],[120.22173340000006,-1.455918599999961],[120.2266548,-1.445969499999933],[120.24185960000011,-1.435541699999931],[120.2440712,-1.423856099999966],[120.25005650000003,-1.412937599999964],[120.25380490000009,-1.411785499999951],[120.26037630000008,-1.415825799999936],[120.26709770000002,-1.415894699999967],[120.27767480000011,-1.406878899999924],[120.2795354000001,-1.400311699999975],[120.27909140000008,-1.3983975],[120.27545510000004,-1.395548399999939],[120.27475090000007,-1.390789299999938],[120.27109440000004,-1.387615],[120.2651734000001,-1.385831199999927],[120.28201950000005,-1.384432299999958],[120.2879852000001,-1.378631299999938],[120.286415,-1.3699896],[120.28810930000009,-1.366482699999949],[120.28749460000006,-1.363593299999934],[120.28254990000005,-1.358512799999971],[120.27644260000011,-1.346085599999981],[120.27148820000002,-1.341404499999953],[120.26515290000009,-1.3392],[120.26065730000005,-1.3356021],[120.25865890000011,-1.331214899999964],[120.2574002,-1.321886],[120.2402935,-1.311033099999975],[120.23031760000003,-1.299520199999961],[120.21557580000001,-1.2888171],[120.20449380000002,-1.286256699999967],[120.1960769000001,-1.279835799999944],[120.18896980000011,-1.276999299999943],[120.185279,-1.272893799999963],[120.18718620000004,-1.273189499999944],[120.19324780000011,-1.269397],[120.208996,-1.263605299999938],[120.21625540000002,-1.254454899999928],[120.22491520000005,-1.251084],[120.21983300000011,-1.243528],[120.220653,-1.238956799999926],[120.22250430000008,-1.233761199999947],[120.23201830000005,-1.224545699999965],[120.23739980000005,-1.227632399999948],[120.24827360000006,-1.230803699999967],[120.26000110000007,-1.230184099999974],[120.27033440000002,-1.231553399999939],[120.27258190000009,-1.230475699999943],[120.27867450000008,-1.216576399999951],[120.28404850000004,-1.2115117],[120.2898355000001,-1.2016866],[120.29793340000003,-1.198678],[120.29937730000006,-1.195867299999975],[120.31326250000006,-1.190106],[120.32362210000008,-1.1938704],[120.328157,-1.186819],[120.33321990000002,-1.189025099999981],[120.34211440000001,-1.186936899999978],[120.34080470000004,-1.178358299999957],[120.34331580000003,-1.167995799999971],[120.34866080000006,-1.159337],[120.35353430000009,-1.155203699999959],[120.35756820000006,-1.147223899999972],[120.35647520000009,-1.145933699999944],[120.34901470000011,-1.144524499999932],[120.34615410000004,-1.146108399999946],[120.34216790000005,-1.153889499999934],[120.3400223000001,-1.155057199999931],[120.33749300000011,-1.153145399999971],[120.33567670000002,-1.146509099999946],[120.32691590000002,-1.137017799999967],[120.31243020000011,-1.134325],[120.30623680000008,-1.135614699999962],[120.29308990000004,-1.132965299999967],[120.28486580000003,-1.137581199999943],[120.28313870000011,-1.142108299999961],[120.27785660000006,-1.143053799999961],[120.27197990000002,-1.151334199999951],[120.26918130000001,-1.152511699999934],[120.26721630000009,-1.151800399999956],[120.25614660000008,-1.135346799999979],[120.25299510000002,-1.133236699999941],[120.24782120000009,-1.1324412],[120.23943730000008,-1.133240099999966],[120.23710770000002,-1.1309603],[120.2325598000001,-1.129809199999954],[120.22834640000008,-1.125568499999929],[120.2249488000001,-1.117144599999961],[120.22722550000003,-1.111866899999939],[120.22449080000001,-1.1046437],[120.22550190000004,-1.100397099999952],[120.23072630000001,-1.092126399999927],[120.22662550000007,-1.0814269],[120.2185601000001,-1.073134299999936],[120.21889090000002,-1.065401699999939],[120.20985,-1.061752899999931],[120.20270520000008,-1.054253899999935],[120.20095870000011,-1.055957799999931],[120.19841770000005,-1.054614499999957],[120.19525770000007,-1.063354499999946],[120.19220930000006,-1.064612],[120.18978110000012,-1.063435899999945],[120.18380350000007,-1.0638702],[120.16630950000001,-1.047678899999937],[120.16025320000006,-1.049907699999949],[120.15881210000009,-1.053776],[120.15133710000009,-1.049323],[120.1513576000001,-1.045021199999951],[120.14730930000007,-1.042821099999969],[120.12889530000007,-1.044394199999942],[120.12564440000006,-1.041143199999965],[120.12523360000012,-1.037937899999974],[120.119351,-1.032172899999978],[120.1182123000001,-1.023120099999971],[120.11528780000003,-1.022820699999954],[120.11276880000003,-1.016051199999936],[120.10566140000003,-1.017557799999963],[120.09875860000011,-1.027134799999942],[120.09405170000002,-1.019602899999938],[120.08084230000009,-1.015780099999972],[120.07620730000008,-1.017345099999943],[120.08031370000003,-1.011014299999943],[120.0735532000001,-1.008301599999925],[120.07769810000002,-0.999570699999936],[120.07613620000006,-0.997532799999931],[120.07882610000001,-0.990348],[120.07837610000001,-0.987658],[120.07436610000002,-0.985098],[120.07334530000003,-0.977314499999977],[120.06908,-0.974743699999976],[120.06623380000008,-0.969876799999952],[120.05728610000006,-0.967548],[120.05862610000008,-0.963158],[120.06595610000011,-0.951728],[120.06658610000011,-0.942978],[120.06908610000005,-0.938718],[120.06802610000011,-0.932168],[120.06972610000003,-0.922978],[120.0680761000001,-0.919888],[120.07213610000008,-0.914818],[120.07200610000007,-0.913158],[120.06971740000006,-0.910549],[120.06651380000005,-0.912111699999969],[120.06532470000002,-0.909678399999962],[120.05111000000011,-0.90181],[120.0468800000001,-0.89727],[120.03615,-0.89276],[120.03138,-0.89272],[120.023307,-0.882681299999945],[120.02320340000006,-0.884276399999976],[120.01738640000008,-0.888464399999975],[120.01685140000006,-0.892982399999937],[120.01820040000007,-0.895691399999976],[120.00940440000011,-0.8953374],[120.0097654000001,-0.898318399999937],[120.00572740000007,-0.899586399999976],[120.00339640000004,-0.902570399999945],[119.99594840000009,-0.904202399999974],[119.9765344000001,-0.913150599999938],[119.96403390000012,-0.9129206],[119.95831550000003,-0.916979699999956],[119.95475850000003,-0.914446299999952],[119.94802550000009,-0.9130963],[119.92928080000002,-0.920839],[119.93724810000003,-0.940907799999934],[119.93330230000004,-0.944360399999937],[119.90502570000001,-0.942853699999944],[119.88593260000005,-0.932028],[119.8815489000001,-0.9322979],[119.88058630000012,-0.9266455],[119.87586770000007,-0.922522399999934],[119.862222,-0.925270099999977],[119.86205280000001,-0.933128],[119.85121920000006,-0.934674799999925],[119.83069310000008,-0.941836599999931],[119.82781920000002,-0.911081],[119.83277620000001,-0.909750199999962],[119.83252030000006,-0.9047618],[119.82719070000007,-0.904634199999975],[119.82468460000007,-0.881731299999956],[119.82653560000006,-0.881744499999968],[119.8246554000001,-0.881651799999929],[119.8223044,-0.874076799999955],[119.81708070000002,-0.873245099999963],[119.81169140000009,-0.867781899999954],[119.80046330000005,-0.869078499999944],[119.79604790000008,-0.871304799999962],[119.78354880000006,-0.887191399999949],[119.78140090000011,-0.897577199999944],[119.78244760000007,-0.903250299999968],[119.78455310000004,-0.904126399999939],[119.77333830000009,-0.907308799999953],[119.76917710000009,-0.906878199999937],[119.7652577,-0.908941599999935],[119.760169,-0.907716499999935],[119.75381980000009,-0.908995599999969],[119.75162850000004,-0.909919],[119.745601,-0.919041799999945],[119.73957410000003,-0.914528],[119.73104670000009,-0.900509199999931],[119.72377690000008,-0.908232299999952],[119.705404,-0.935393799999929],[119.69502120000004,-0.939197499999977],[119.689356,-0.938316199999974],[119.67245960000002,-0.940868799999976],[119.66559120000011,-0.948149199999932],[119.66092930000002,-0.951053799999954],[119.6542806000001,-0.9511584],[119.65299440000001,-0.956256599999961],[119.65081690000011,-0.956620599999951],[119.64794360000008,-0.969545699999969],[119.65063110000006,-0.979927799999928],[119.64965020000011,-0.993611399999963],[119.65460670000004,-0.988953099999947],[119.65720490000001,-0.9877851],[119.66052510000009,-0.9883789],[119.66519950000009,-0.994728799999962],[119.67069920000006,-0.997019499999965],[119.67470520000006,-1.008160199999963],[119.68286250000006,-1.014469599999927],[119.7039913000001,-1.019720599999971],[119.7124033,-1.018141],[119.7121452,-1.012023099999965],[119.71947040000009,-1.005040299999962],[119.72251280000012,-1.006077],[119.7247939,-1.011162899999931],[119.73012430000006,-1.017104699999948],[119.73700710000003,-1.009535],[119.73995530000002,-1.008312499999931],[119.74637440000004,-1.008659499999965],[119.75036320000004,-1.007255399999963],[119.753487,-1.008653399999957],[119.75930360000007,-1.0163658],[119.76117540000007,-1.026864899999964],[119.76729360000002,-1.029950099999951],[119.779531,-1.042394399999978],[119.7840354000001,-1.057273599999974],[119.78335430000004,-1.062072599999965],[119.78468690000011,-1.067538499999955],[119.79002580000008,-1.0762524],[119.79505860000006,-1.078117099999929],[119.79648310000005,-1.084037699999953],[119.80048850000003,-1.087756599999977],[119.804153,-1.088566399999934],[119.79897740000001,-1.101728299999934],[119.79590960000007,-1.120734],[119.79590420000011,-1.130886399999952],[119.80091590000006,-1.133320399999945],[119.80477910000002,-1.132792599999959],[119.80611920000001,-1.134499099999971],[119.80518020000011,-1.142723099999955],[119.79879280000011,-1.146172299999932],[119.79357790000006,-1.151156499999956],[119.793569,-1.155945799999927],[119.78935510000008,-1.164354],[119.79119070000002,-1.170506],[119.79068410000002,-1.1720517],[119.78682130000004,-1.172408],[119.786965,-1.185420399999941],[119.77973670000006,-1.189548399999978],[119.77737800000011,-1.193671499999937],[119.76955570000007,-1.197819399999958],[119.77471460000004,-1.209732299999928],[119.77023070000007,-1.216478199999926],[119.76649550000002,-1.219448499999942],[119.76938780000012,-1.226769599999955],[119.76762350000001,-1.233137099999965],[119.75320950000003,-1.239008699999943],[119.74487780000004,-1.255313799999954],[119.74286270000005,-1.263718799999936],[119.74818790000006,-1.2754262],[119.75072840000007,-1.285354],[119.75048110000012,-1.290701599999977],[119.7438489000001,-1.310544599999957],[119.743457,-1.32236],[119.73436120000008,-1.333370199999933],[119.73103260000005,-1.343253799999957],[119.72800130000007,-1.347535099999959],[119.72862150000003,-1.359145699999942],[119.7314636000001,-1.366679699999963],[119.73815450000006,-1.376857299999926],[119.74736770000004,-1.383876199999975],[119.75447510000004,-1.404028899999958],[119.76364200000012,-1.423535299999969],[119.75386880000008,-1.4258353],[119.75106240000002,-1.428396099999929],[119.74049880000007,-1.42896],[119.72787850000009,-1.4202997],[119.7181915000001,-1.432185799999957],[119.7099664000001,-1.434003],[119.69700650000004,-1.452524699999969]]]},"properties":{"shapeName":"Sigi","shapeISO":"","shapeID":"22746128B16783883085331","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[101.49498480000005,-0.805459699999972],[101.48603470000006,-0.794563899999957],[101.479614,-0.782306199999937],[101.45860070000003,-0.768102799999951],[101.44420270000006,-0.7624603],[101.43201220000009,-0.754362299999968],[101.43162060000009,-0.747440199999971],[101.42647920000007,-0.743534099999977],[101.42456010000006,-0.736947099999952],[101.42175760000003,-0.736713499999951],[101.41848790000006,-0.7388155],[101.41405050000009,-0.736947099999952],[101.41264920000003,-0.720131599999945],[101.41101440000006,-0.717562599999951],[101.40190150000006,-0.710687699999937],[101.38264380000004,-0.702627799999959],[101.37363430000005,-0.697614399999964],[101.36820980000005,-0.691857499999969],[101.36112410000004,-0.6891649],[101.35488860000004,-0.67967],[101.35493590000004,-0.6774193],[101.35753190000008,-0.674122699999941],[101.35750070000006,-0.667955499999948],[101.35068520000004,-0.671965499999942],[101.33320630000009,-0.649484799999925],[101.30744910000004,-0.629272299999968],[101.30377680000004,-0.631959399999971],[101.29588810000007,-0.631298],[101.28818820000004,-0.624684699999932],[101.28096080000006,-0.6219449],[101.26575010000005,-0.623078599999928],[101.25290230000007,-0.626945899999953],[101.24963260000004,-0.625544699999978],[101.23585330000009,-0.605693099999939],[101.22277460000004,-0.601956299999927],[101.207594,-0.593782099999942],[101.20549210000007,-0.587709899999936],[101.19334760000004,-0.572529199999963],[101.183651,-0.555104899999947],[101.183387,-0.551738799999953],[101.16786640000004,-0.539604599999961],[101.16092840000005,-0.537577299999953],[101.15078010000008,-0.531248199999936],[101.14463120000005,-0.533325899999966],[101.14215430000007,-0.530533],[101.13499460000008,-0.527940699999931],[101.12965670000006,-0.524303399999951],[101.12192740000006,-0.512122],[101.11913480000004,-0.510725699999966],[101.113836,-0.503734599999973],[101.10967490000007,-0.502054199999975],[101.10490380000005,-0.503424099999961],[101.09795980000007,-0.508856499999979],[101.09191330000004,-0.511596299999951],[101.08936240000008,-0.511360099999933],[101.08104850000007,-0.505455299999937],[101.07127020000007,-0.503093399999955],[101.07274330000007,-0.498724899999957],[101.06873950000005,-0.498391199999958],[101.06666130000008,-0.495091699999932],[101.06672810000003,-0.482959499999936],[101.062106,-0.480466299999932],[101.05700420000005,-0.474608799999942],[101.05273,-0.464521699999977],[101.04814670000007,-0.459938399999942],[101.04909910000003,-0.455176399999971],[101.04481340000007,-0.450414499999965],[101.04368550000004,-0.4443993],[101.03767040000008,-0.435176099999978],[101.03767040000008,-0.424699799999928],[101.04313660000008,-0.421511099999975],[101.039099,-0.418033],[101.03005120000006,-0.402318499999978],[101.02576540000007,-0.398032699999931],[101.02528920000003,-0.394699299999957],[101.03005120000006,-0.389461099999949],[101.03481320000009,-0.388508699999932],[101.04290860000003,-0.382318199999929],[101.04243240000005,-0.367079799999942],[101.04098290000007,-0.362731499999938],[101.02474090000004,-0.339525299999934],[101.01862250000005,-0.336126899999954],[101.00583440000008,-0.323678],[101.00064030000004,-0.320451799999944],[100.99436290000006,-0.319263599999942],[100.97900410000005,-0.312886399999968],[100.969195,-0.314631499999962],[100.94766110000006,-0.310830099999976],[100.94340010000008,-0.313077599999929],[100.93262360000006,-0.314791499999956],[100.92429650000008,-0.319620199999974],[100.92030560000006,-0.323609799999929],[100.92036680000007,-0.319073199999934],[100.91663730000005,-0.320101299999976],[100.90876590000005,-0.332332199999939],[100.90319530000005,-0.334875299999965],[100.88890570000007,-0.334875299999965],[100.88182150000006,-0.338750399999924],[100.875161,-0.339477],[100.86959050000007,-0.337781699999937],[100.861598,-0.332574399999942],[100.85869170000007,-0.332574399999942],[100.84455590000005,-0.339450499999941],[100.84379650000005,-0.344199899999978],[100.84141,-0.346161],[100.83884610000007,-0.346018599999979],[100.83968550000009,-0.347529499999951],[100.829277,-0.348704699999928],[100.82894120000009,-0.347529499999951],[100.82474420000005,-0.347361599999942],[100.82424060000005,-0.351597399999946],[100.82577970000006,-0.352221799999938],[100.82841970000004,-0.359419199999934],[100.828034,-0.362448599999937],[100.83213520000004,-0.366119099999935],[100.83389290000008,-0.374121399999979],[100.83357870000003,-0.380125899999939],[100.83703510000004,-0.393065099999944],[100.83397360000004,-0.396981299999936],[100.82911240000004,-0.399396699999954],[100.83132510000007,-0.4079505],[100.828447,-0.415836399999932],[100.82866290000004,-0.419905599999936],[100.81876210000007,-0.4345571],[100.81964010000007,-0.438942599999962],[100.81697260000004,-0.444757699999968],[100.81755360000005,-0.449278899999968],[100.82510370000006,-0.457108099999971],[100.82239280000005,-0.462190699999951],[100.82084770000006,-0.474932299999978],[100.81737080000005,-0.4765429],[100.81646940000007,-0.487882599999978],[100.81973570000008,-0.492258399999969],[100.82429780000007,-0.490539099999978],[100.83264910000008,-0.494117699999947],[100.83560260000007,-0.4917929],[100.84059820000004,-0.494621799999948],[100.84210460000008,-0.499531499999932],[100.84799650000008,-0.507568799999945],[100.85184210000006,-0.517406],[100.85214180000008,-0.52275],[100.84931070000005,-0.526684399999965],[100.83696280000004,-0.536707199999967],[100.82488250000006,-0.535354499999926],[100.813474,-0.540593699999931],[100.80202130000004,-0.556087399999967],[100.79779940000009,-0.564543599999979],[100.80461780000007,-0.567614399999968],[100.81261060000008,-0.578697499999976],[100.813553,-0.582467],[100.81234140000004,-0.585159399999952],[100.80789880000003,-0.587582699999928],[100.80789880000003,-0.590140499999961],[100.80614870000005,-0.592025199999966],[100.80130220000007,-0.594852299999957],[100.80305230000005,-0.598352599999942],[100.81274520000005,-0.606295399999965],[100.81436070000007,-0.615449799999965],[100.809097,-0.620903899999973],[100.80157150000008,-0.663914299999931],[100.79085010000006,-0.668369499999926],[100.79941750000006,-0.674415],[100.80184070000007,-0.701878199999953],[100.80430430000007,-0.707780099999979],[100.80068530000005,-0.718043699999953],[100.80365170000005,-0.719942099999969],[100.81083020000005,-0.734655199999963],[100.81083020000005,-0.7430796],[100.81462720000007,-0.745512],[100.82210230000004,-0.758326599999975],[100.82150910000007,-0.766395099999954],[100.81682230000007,-0.767463],[100.81118620000007,-0.766276399999924],[100.81159690000004,-0.769966299999965],[100.82660720000007,-0.780069699999956],[100.82833020000004,-0.782654299999933],[100.84182730000003,-0.783228599999973],[100.85001910000005,-0.779293799999948],[100.855843,-0.7874045],[100.86747210000004,-0.798549099999946],[100.88330060000004,-0.810824299999979],[100.88620790000004,-0.822776499999975],[100.88798460000004,-0.824876199999949],[100.896868,-0.818900099999951],[100.90042130000006,-0.813570099999936],[100.90591290000003,-0.810501299999942],[100.92515930000008,-0.806739499999935],[100.93343480000004,-0.817976299999941],[100.93946540000007,-0.822283899999945],[100.95296240000005,-0.828314499999976],[100.956527,-0.831794699999932],[100.96146120000009,-0.831512699999962],[100.96554960000009,-0.8334864],[100.96766430000008,-0.839125499999966],[100.96966580000009,-0.839578899999935],[100.97354110000003,-0.844745799999941],[100.98581260000009,-0.845714599999951],[100.99227120000006,-0.849266899999975],[100.99388590000007,-0.851527499999975],[100.99388590000007,-0.855079699999976],[100.99162540000003,-0.865406399999927],[100.99905290000004,-0.875747499999932],[101.01519960000007,-0.8796227],[101.02133530000003,-0.883498],[101.02714820000006,-0.882529199999965],[101.03231510000006,-0.883498],[101.032961,-0.881560299999933],[101.03619030000004,-0.881237399999975],[101.03683620000004,-0.8796227],[101.042649,-0.881560299999933],[101.047493,-0.891248399999938],[101.047493,-0.895123599999977],[101.05330580000003,-0.904488699999945],[101.05336720000008,-0.909361399999966],[101.05723640000008,-0.917336499999976],[101.05980970000007,-0.918746499999941],[101.057691,-0.918425099999979],[101.06028590000005,-0.923295099999962],[101.059924,-0.9268705],[101.06883530000005,-0.948693599999956],[101.06557760000004,-0.952875399999925],[101.064273,-0.957228899999961],[101.05489660000006,-0.964504599999941],[101.05267660000004,-0.969406],[101.05269190000007,-0.972970799999928],[101.06969780000009,-0.986375499999951],[101.08279740000006,-0.986641799999973],[101.10881340000009,-0.9759389],[101.12407970000004,-0.972513899999967],[101.12999370000006,-0.972549199999946],[101.14112430000006,-0.960560499999929],[101.14872570000006,-0.957344499999977],[101.16100480000006,-0.9547133],[101.17240690000006,-0.958513899999957],[101.17562290000006,-0.955590299999926],[101.18720520000005,-0.950676199999975],[101.18819440000004,-0.940679899999964],[101.19141030000009,-0.937756299999933],[101.19316450000008,-0.932786199999953],[101.19170270000006,-0.921968899999968],[101.18848670000006,-0.9161216],[101.19141030000009,-0.913782799999979],[101.194334,-0.905889],[101.208952,-0.908812599999976],[101.20953670000006,-0.912321],[101.21408780000007,-0.918339499999945],[101.224403,-0.927476799999965],[101.23260850000008,-0.931039899999973],[101.23665140000008,-0.9292969],[101.23935750000004,-0.929862599999979],[101.24144550000005,-0.932493],[101.24916930000006,-0.933558299999959],[101.26115440000007,-0.941282099999967],[101.26275250000003,-0.941015799999946],[101.27338930000008,-0.949571899999967],[101.27954840000007,-0.950737099999969],[101.30268650000005,-0.950737099999969],[101.30668150000008,-0.952235299999927],[101.31228740000006,-0.951354399999957],[101.31569810000008,-0.952491299999963],[101.33218310000007,-0.949080599999945],[101.33445690000008,-0.950596499999961],[101.33786750000007,-0.958365199999946],[101.34357990000007,-0.955517899999961],[101.34407610000005,-0.9511091],[101.35310740000006,-0.947817899999961],[101.35354520000004,-0.939455099999975],[101.34999420000008,-0.933548],[101.34877150000005,-0.928419799999972],[101.34943450000009,-0.925185799999952],[101.351628,-0.923723699999925],[101.35353190000006,-0.923483099999942],[101.35586830000005,-0.926153299999953],[101.36079490000009,-0.937711699999966],[101.37036830000005,-0.936236099999974],[101.37515370000006,-0.939639799999952],[101.38387710000006,-0.936071099999936],[101.38665280000004,-0.939507599999956],[101.39420450000006,-0.941287599999953],[101.39930160000006,-0.938942699999927],[101.40760940000007,-0.931243699999925],[101.42749440000006,-0.931577199999936],[101.42881610000006,-0.928008499999976],[101.42498310000008,-0.922985899999958],[101.41784570000004,-0.921796299999926],[101.411237,-0.9224572],[101.41004750000008,-0.921135499999934],[101.40899010000004,-0.917302399999926],[101.41432040000007,-0.914749799999925],[101.41480570000004,-0.912808499999926],[101.41335180000004,-0.906199899999933],[101.414277,-0.897344199999964],[101.41255880000006,-0.894039899999939],[101.40856210000004,-0.892717499999947],[101.40568570000005,-0.889678199999935],[101.40581790000005,-0.887959899999942],[101.40832920000008,-0.886770399999932],[101.40880510000005,-0.884985699999959],[101.41573040000009,-0.884766499999955],[101.42164740000004,-0.880821899999944],[101.42646870000004,-0.8654815],[101.432824,-0.866577199999938],[101.43260480000004,-0.8624134],[101.429975,-0.857153799999935],[101.43216650000005,-0.852332499999932],[101.433654,-0.852699599999937],[101.43685130000006,-0.850306599999954],[101.43971070000003,-0.840266699999972],[101.44637720000009,-0.837161],[101.44947930000006,-0.833924099999933],[101.45247370000004,-0.8333506],[101.45693030000007,-0.835458099999926],[101.46123750000004,-0.840018699999973],[101.464,-0.839732899999944],[101.46709590000006,-0.836875199999952],[101.47227070000008,-0.826911299999949],[101.48209910000008,-0.824396299999933],[101.48603470000006,-0.820441399999936],[101.49498480000005,-0.805459699999972]]]},"properties":{"shapeName":"Sijunjung","shapeISO":"","shapeID":"22746128B52734992945112","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[122.39953620000006,-8.496529599999974],[122.39720150000005,-8.494978899999978],[122.39653780000003,-8.495963099999926],[122.39896390000001,-8.497219099999938],[122.3989868000001,-8.4987459],[122.39953620000006,-8.496529599999974]]],[[[122.46762090000004,-8.4809246],[122.46488190000002,-8.4784746],[122.45720670000003,-8.4763393],[122.4576492000001,-8.478466],[122.4609527,-8.480364799999961],[122.46762090000004,-8.4809246]]],[[[122.4523163,-8.4591713],[122.43875890000004,-8.459962799999971],[122.42838290000009,-8.465876599999945],[122.4226837000001,-8.466814],[122.42285920000006,-8.4719753],[122.42465210000012,-8.4744968],[122.42749790000005,-8.47254179999993],[122.43106080000007,-8.475256],[122.43589780000002,-8.476110399999925],[122.43825530000004,-8.479186099999936],[122.43724820000011,-8.474597899999935],[122.43889620000004,-8.472444499999938],[122.44264220000002,-8.472482699999944],[122.44563290000008,-8.475169199999925],[122.44858550000004,-8.473239899999953],[122.45227810000006,-8.476409],[122.4552155,-8.476231599999949],[122.45726780000007,-8.473269499999958],[122.45680240000002,-8.469176299999958],[122.44853970000008,-8.464864699999964],[122.4523163,-8.4591713]]],[[[122.4430542,-8.455917399999976],[122.44914250000011,-8.45195579999995],[122.4437180000001,-8.450567299999932],[122.44116210000004,-8.454667099999938],[122.4430542,-8.455917399999976]]],[[[122.3725128000001,-8.4283075],[122.36328120000007,-8.4293165],[122.3575287000001,-8.428381],[122.35517880000009,-8.4299564],[122.34540560000005,-8.428382899999974],[122.33954620000009,-8.433910399999945],[122.33419040000001,-8.43548869999995],[122.3352814000001,-8.4435768],[122.333786,-8.453588499999967],[122.33583070000009,-8.4571648],[122.33403010000006,-8.460460699999942],[122.33461000000011,-8.463961599999948],[122.34804540000005,-8.481926],[122.34966280000003,-8.482364699999948],[122.34935760000008,-8.483748399999968],[122.3548813000001,-8.488210699999968],[122.36422730000004,-8.489359899999954],[122.36980440000002,-8.494485899999972],[122.37881470000002,-8.497386],[122.38902280000002,-8.497846599999946],[122.39398190000009,-8.492674799999975],[122.39412690000006,-8.489124299999958],[122.39711000000011,-8.48805139999996],[122.40075680000007,-8.489188199999944],[122.405365,-8.482941599999947],[122.40588380000008,-8.4779882],[122.41010280000012,-8.478859899999975],[122.41510770000002,-8.476924899999972],[122.41492460000006,-8.473072],[122.41706090000002,-8.469302199999959],[122.41497040000002,-8.467281299999968],[122.4122162000001,-8.469207799999936],[122.41365050000002,-8.458185199999946],[122.41877750000003,-8.45515729999994],[122.41979980000008,-8.452542299999948],[122.42223360000003,-8.451675399999942],[122.422699,-8.449317],[122.41716770000005,-8.441097199999945],[122.41532130000007,-8.43571],[122.41394810000008,-8.439260499999932],[122.4093094000001,-8.443727499999966],[122.41004940000005,-8.446962399999961],[122.40777590000005,-8.4478827],[122.40344240000002,-8.442625],[122.39717870000004,-8.439869899999962],[122.39322660000005,-8.434582699999964],[122.38751990000003,-8.434206],[122.38665010000011,-8.432929],[122.380806,-8.431875199999979],[122.377182,-8.429068599999937],[122.3725128000001,-8.4283075]]],[[[122.5120697000001,-8.413160299999959],[122.50820920000001,-8.413203199999941],[122.50366970000005,-8.415761],[122.49797060000003,-8.421330499999954],[122.49797060000003,-8.429902099999936],[122.50154110000005,-8.435370499999976],[122.5070038,-8.433896],[122.5132446,-8.43487639999995],[122.51924130000009,-8.431222],[122.52024080000001,-8.4235468],[122.51882940000007,-8.4184551],[122.51581570000008,-8.414736699999935],[122.5120697000001,-8.413160299999959]]],[[[121.99718580000001,-8.805875199999946],[122.001023,-8.807694399999946],[122.00212140000008,-8.806953599999929],[122.00140610000005,-8.80593179999994],[122.00488020000012,-8.804731199999935],[122.00490570000011,-8.802279],[122.0093121000001,-8.799239199999931],[122.01196870000001,-8.79952019999996],[122.01679660000002,-8.795305399999961],[122.01803550000011,-8.796659199999965],[122.02005350000002,-8.796276],[122.02125410000008,-8.799060399999973],[122.02549450000004,-8.795279799999946],[122.03107590000002,-8.795203199999946],[122.03291510000008,-8.792802],[122.0320210000001,-8.791039499999954],[122.03647850000004,-8.784576699999946],[122.04645360000006,-8.779289],[122.0524521000001,-8.768096899999932],[122.05714420000004,-8.7655992],[122.0660782000001,-8.764008499999932],[122.07504270000004,-8.759388],[122.07857510000008,-8.746594399999935],[122.08404540000004,-8.741437899999937],[122.09608460000004,-8.736238499999956],[122.11207580000007,-8.733960199999956],[122.11309810000012,-8.73059749999993],[122.1152039000001,-8.729654299999936],[122.12875370000006,-8.731140099999948],[122.13267520000011,-8.729269],[122.1436996000001,-8.729454],[122.14627840000003,-8.728202799999963],[122.1750641000001,-8.729825],[122.18163970000012,-8.732479799999965],[122.19603730000006,-8.75],[122.20057680000002,-8.748363499999925],[122.20561220000002,-8.750787699999933],[122.213089,-8.7498751],[122.21650690000001,-8.74457549999994],[122.2321167,-8.742961899999955],[122.23456570000008,-8.7449312],[122.2375565000001,-8.742115],[122.24118040000008,-8.744428599999935],[122.24436190000006,-8.74333669999993],[122.24992370000007,-8.747684499999934],[122.25501250000002,-8.746973],[122.25695040000005,-8.749529799999948],[122.26640320000001,-8.7525988],[122.28018190000012,-8.754688299999941],[122.28401950000011,-8.754509],[122.28624730000001,-8.749815],[122.29133610000008,-8.746824299999957],[122.29935460000002,-8.746141399999942],[122.30670170000008,-8.741760299999953],[122.31232450000005,-8.740671199999952],[122.32321170000012,-8.742358199999956],[122.33023070000002,-8.7418213],[122.33329010000011,-8.739200599999947],[122.34636690000002,-8.740756],[122.36152680000009,-8.746782799999949],[122.36422040000002,-8.750077499999975],[122.36800380000011,-8.75082109999994],[122.36853790000009,-8.752730399999962],[122.37161260000005,-8.751256],[122.3762283000001,-8.752476699999931],[122.38275910000004,-8.744677599999932],[122.40836330000002,-8.744207399999937],[122.4110108000001,-8.745462399999951],[122.416153,-8.741029699999956],[122.4212265000001,-8.744482],[122.42219540000008,-8.741677299999935],[122.42885590000003,-8.7355757],[122.4341736,-8.733448],[122.43627170000002,-8.733567199999982],[122.43878170000005,-8.73671059999998],[122.4399261000001,-8.733275399999968],[122.44272610000007,-8.7330952],[122.44582370000012,-8.736690499999952],[122.44838720000007,-8.735066399999937],[122.452713,-8.736808799999949],[122.46154020000006,-8.732163399999934],[122.466713,-8.7334051],[122.46762090000004,-8.731542599999955],[122.47029880000002,-8.732374199999981],[122.47054290000005,-8.728581399999939],[122.47709650000002,-8.722564699999964],[122.48366550000003,-8.72202109999995],[122.4879532000001,-8.720845199999928],[122.48896030000003,-8.718923599999926],[122.49237820000008,-8.718795799999953],[122.49346160000005,-8.7198792],[122.49554440000009,-8.719148599999926],[122.4989395,-8.722008699999947],[122.50074770000003,-8.718501099999969],[122.50616450000007,-8.716640499999926],[122.50995640000008,-8.718170199999975],[122.51007080000011,-8.716230399999972],[122.5189362000001,-8.711972199999934],[122.5202637000001,-8.709154099999978],[122.52269750000005,-8.708005],[122.52837370000009,-8.7089891],[122.53295130000004,-8.703565599999934],[122.53967280000006,-8.701332099999945],[122.542717,-8.691860199999951],[122.54627990000006,-8.6884031],[122.54662320000011,-8.6844492],[122.55229190000011,-8.678341899999964],[122.55485540000006,-8.669549],[122.5572433000001,-8.666337],[122.5668793000001,-8.664354299999957],[122.57739260000005,-8.665062899999953],[122.5840531,-8.662260099999969],[122.58689880000009,-8.662429799999927],[122.59797590000005,-8.652208899999948],[122.60429440000007,-8.649115],[122.610308,-8.64942],[122.61823880000009,-8.655477099999928],[122.6243591000001,-8.650699599999939],[122.62966160000008,-8.639954599999953],[122.64578250000011,-8.636498399999937],[122.6478806,-8.637896499999954],[122.64813990000005,-8.636473699999954],[122.65069580000011,-8.63599869999996],[122.65419010000005,-8.637121199999967],[122.64842990000011,-8.627647399999944],[122.64994810000007,-8.6201849],[122.64889530000005,-8.615232499999934],[122.6513672000001,-8.607213],[122.64918520000003,-8.604332899999974],[122.6515045000001,-8.598850199999958],[122.65186310000001,-8.581785199999956],[122.65612030000011,-8.569153799999981],[122.65565490000006,-8.562332099999935],[122.65847010000005,-8.560545],[122.65921020000008,-8.552731499999936],[122.66336820000004,-8.547658],[122.66396330000009,-8.532190299999968],[122.66653440000005,-8.525812199999962],[122.66484830000002,-8.519599899999946],[122.66709140000012,-8.5156145],[122.67099760000008,-8.512603799999965],[122.67419430000007,-8.502810499999953],[122.68050390000008,-8.500288],[122.67987820000008,-8.497017899999946],[122.6868591000001,-8.484678299999928],[122.68212890000007,-8.473609],[122.67893220000008,-8.471357299999966],[122.67649840000001,-8.467042],[122.677742,-8.462566399999957],[122.67342380000002,-8.459706299999937],[122.67910770000003,-8.4553413],[122.68472290000011,-8.438661599999932],[122.68377690000011,-8.421774899999946],[122.67805480000004,-8.419404],[122.67653660000008,-8.413305299999934],[122.68253330000005,-8.406850799999972],[122.68411260000005,-8.399839399999962],[122.68241120000005,-8.395583099999953],[122.68348690000005,-8.386141799999962],[122.68221280000012,-8.383280799999966],[122.668808,-8.38905049999994],[122.66204830000004,-8.390281699999946],[122.65530400000011,-8.3900871],[122.63484190000008,-8.381307599999957],[122.63040920000003,-8.381600399999968],[122.62489320000009,-8.384112399999935],[122.62055210000005,-8.383591699999954],[122.61539460000006,-8.388980899999979],[122.6165009,-8.395225499999981],[122.60997770000006,-8.397138599999948],[122.60949710000011,-8.398765599999933],[122.60773470000004,-8.39698409999994],[122.60779570000011,-8.399348299999929],[122.60364530000004,-8.392435099999943],[122.5971909000001,-8.392876599999965],[122.5957337000001,-8.395664199999942],[122.596756,-8.400318099999936],[122.5896378000001,-8.411315],[122.59217840000008,-8.423458099999948],[122.58625030000007,-8.428076699999963],[122.5818253000001,-8.429096199999947],[122.57536320000008,-8.426943799999947],[122.57069400000012,-8.42895219999997],[122.57039640000005,-8.433669099999975],[122.56670380000003,-8.437336899999934],[122.56505590000006,-8.441914499999939],[122.5592117000001,-8.445603399999925],[122.55974580000009,-8.448483499999952],[122.5554962000001,-8.454969399999925],[122.54867550000006,-8.460448199999973],[122.54787440000007,-8.464155199999936],[122.54254150000008,-8.462760899999978],[122.53919220000012,-8.463443799999936],[122.53740690000006,-8.461567899999977],[122.53521730000011,-8.4616518],[122.53334810000001,-8.463206299999968],[122.53193660000011,-8.471769299999949],[122.52997590000007,-8.47154039999998],[122.53023530000007,-8.466895099999931],[122.52632140000003,-8.465229],[122.51970670000003,-8.467289],[122.5084763000001,-8.468279799999948],[122.49450690000003,-8.473673799999972],[122.49134060000006,-8.472987199999977],[122.48207090000005,-8.486689499999954],[122.48249050000004,-8.488407199999926],[122.47967530000005,-8.489714599999957],[122.47893520000002,-8.493569399999956],[122.48861690000001,-8.509179099999926],[122.49681090000001,-8.517190899999946],[122.506958,-8.519948],[122.51172640000004,-8.5231562],[122.513588,-8.52662369999996],[122.51802060000011,-8.526421599999935],[122.51850130000003,-8.528388],[122.51413730000002,-8.537336299999936],[122.51448820000007,-8.54217049999994],[122.5173416,-8.544988599999954],[122.51757810000004,-8.547060899999963],[122.51672360000009,-8.548839599999951],[122.51335140000003,-8.549623499999939],[122.51058200000011,-8.555047],[122.50789640000005,-8.555099499999926],[122.50582880000002,-8.557304399999964],[122.50392320000003,-8.562193099999945],[122.49967750000008,-8.566707599999972],[122.49982540000008,-8.570737599999973],[122.49596180000003,-8.573658399999943],[122.4949266000001,-8.579610899999977],[122.49185790000001,-8.579573899999957],[122.4902681000001,-8.5827905],[122.48631210000008,-8.583677899999941],[122.484408,-8.594288899999981],[122.47494510000001,-8.608397499999967],[122.47176360000003,-8.609453199999962],[122.46160120000002,-8.603105599999935],[122.45879360000004,-8.604252799999927],[122.45066070000007,-8.603172299999926],[122.44177250000007,-8.604655299999934],[122.43343350000009,-8.608297299999947],[122.41886140000008,-8.607585],[122.40779120000002,-8.6121426],[122.3992386000001,-8.607968299999925],[122.39084630000002,-8.610186599999963],[122.3832321000001,-8.608624499999962],[122.37284850000003,-8.611151699999937],[122.36404420000008,-8.611368199999959],[122.3597794000001,-8.612461099999962],[122.34962460000008,-8.619103399999972],[122.3417664000001,-8.618516899999975],[122.33775330000003,-8.616673499999933],[122.33468630000004,-8.61896319999994],[122.32963560000007,-8.618487399999935],[122.31947330000003,-8.629102699999976],[122.31801610000002,-8.63250729999993],[122.313385,-8.631993299999976],[122.30871660000003,-8.636239799999942],[122.3022175000001,-8.637954899999954],[122.29693290000012,-8.642174599999976],[122.29152820000002,-8.642210899999952],[122.28039250000006,-8.6363812],[122.271696,-8.636624299999937],[122.26723170000002,-8.634392099999957],[122.26743380000005,-8.632354],[122.26267340000004,-8.6339631],[122.25125480000008,-8.632654],[122.23987580000005,-8.62763119999994],[122.233551,-8.626785299999938],[122.2275628000001,-8.622225599999979],[122.2213915000001,-8.620075499999928],[122.21913690000008,-8.616503299999977],[122.22036290000005,-8.6141712],[122.218339,-8.6150787],[122.21646070000008,-8.607940299999939],[122.21100010000009,-8.605268799999976],[122.20788870000001,-8.60741939999997],[122.20705490000012,-8.605412499999943],[122.20924960000002,-8.603557499999965],[122.20824950000008,-8.602622099999962],[122.202095,-8.603935199999967],[122.203949,-8.600277],[122.2034149000001,-8.5979404],[122.20050810000009,-8.602510399999971],[122.19876860000011,-8.601159099999961],[122.19934080000007,-8.600125299999945],[122.1959534,-8.599387199999967],[122.19209290000003,-8.591021499999954],[122.18508150000002,-8.587970699999971],[122.18231960000003,-8.579314199999942],[122.179451,-8.576375],[122.17556760000002,-8.574971199999936],[122.16998290000004,-8.56579019999998],[122.15936280000005,-8.555812799999956],[122.15211490000002,-8.552551299999948],[122.13965610000002,-8.549944899999957],[122.13249210000004,-8.5452547],[122.13196560000006,-8.542925799999978],[122.12718960000007,-8.544090199999971],[122.1177063,-8.536931],[122.10597230000008,-8.531361599999968],[122.10454560000005,-8.528907799999956],[122.09792330000005,-8.529396099999929],[122.09234620000007,-8.532539399999962],[122.08822630000009,-8.52752019999997],[122.08863830000007,-8.536933899999951],[122.09193420000008,-8.539643299999966],[122.0895157000001,-8.54317569999995],[122.08389280000006,-8.543004],[122.08115390000012,-8.540377599999943],[122.07994840000003,-8.53008079999995],[122.07762150000008,-8.526725799999952],[122.072197,-8.52474879999994],[122.07142640000006,-8.522549599999934],[122.068016,-8.524202399999979],[122.06504060000009,-8.520999],[122.06283570000005,-8.523451799999975],[122.0614471,-8.52213379999995],[122.05980680000005,-8.524727799999937],[122.06108090000009,-8.527877799999942],[122.05860140000004,-8.530110399999955],[122.05651090000003,-8.530043599999942],[122.0466080000001,-8.525250399999948],[122.04232020000006,-8.519237499999974],[122.040596,-8.520679499999972],[122.04008490000001,-8.526520699999935],[122.03756710000005,-8.528439499999934],[122.03125760000012,-8.5291176],[122.0262375000001,-8.52539829999995],[122.02376560000005,-8.525792099999933],[122.02033230000006,-8.530398399999967],[122.01811220000002,-8.530563299999926],[122.013298,-8.52703],[122.01012420000006,-8.521553],[122.01029210000002,-8.5134163],[122.00660710000011,-8.513908399999934],[121.99955020000004,-8.516045399999939],[122.00007630000005,-8.519835499999942],[121.99941700000011,-8.518994499999962],[121.998452,-8.519997699999976],[121.99830190000011,-8.524182699999926],[121.99576120000006,-8.529378399999928],[121.990843,-8.5346],[121.98999860000004,-8.53970789999994],[121.9864960000001,-8.543431299999952],[121.98049170000002,-8.545284299999935],[121.97681430000011,-8.550617199999976],[121.98086550000005,-8.562746],[121.98822780000012,-8.567332199999953],[121.98483280000005,-8.576041199999963],[121.97971350000012,-8.577075],[121.98036960000002,-8.584679599999959],[121.98548130000006,-8.5913715],[121.98565670000005,-8.595676399999945],[121.98210140000003,-8.604767799999934],[121.9844131000001,-8.609864199999947],[121.9681931,-8.6110058],[121.96263890000012,-8.616171899999927],[121.971878,-8.625406299999952],[121.97077180000008,-8.626730899999927],[121.96795650000001,-8.626026199999956],[121.96567530000004,-8.627325],[121.9642258,-8.629014],[121.96582790000002,-8.629971499999954],[121.96251680000012,-8.63212109999995],[121.9629364000001,-8.633574499999952],[121.96057890000009,-8.636451699999952],[121.96201230000008,-8.6443919],[121.95853420000003,-8.657514599999956],[121.9587097000001,-8.670547499999941],[121.95320890000005,-8.674892399999976],[121.94904330000008,-8.676210399999945],[121.9471410000001,-8.678710099999932],[121.94247440000004,-8.692841499999929],[121.93789670000001,-8.699493399999938],[121.93677520000006,-8.705284099999972],[121.93444820000002,-8.707183799999939],[121.927037,-8.708965099999944],[121.92615150000006,-8.710616499999958],[121.9298487000001,-8.720580199999972],[121.93617780000011,-8.723337399999934],[121.9401256000001,-8.726971899999967],[121.94065820000003,-8.7310451],[121.944311,-8.7370279],[121.94380910000007,-8.741482599999927],[121.94757360000006,-8.7479525],[121.95069460000002,-8.749047099999927],[121.95177750000005,-8.752120699999978],[121.95493940000006,-8.752054499999929],[121.95952110000007,-8.755774299999928],[121.96475080000005,-8.7566125],[121.96694950000006,-8.760669699999937],[121.9690534,-8.759226799999965],[121.96902970000008,-8.754155899999944],[121.97084540000003,-8.750881099999958],[121.9838506000001,-8.751201099999946],[121.99048590000007,-8.755200699999932],[121.99553680000008,-8.767597199999955],[121.99543,-8.774072699999977],[121.99136350000003,-8.776616099999956],[121.99189760000002,-8.792596799999956],[121.99025730000005,-8.7954264],[121.99718580000001,-8.805875199999946]]],[[[122.3403168000001,-8.348671],[122.33614350000005,-8.347767799999929],[122.33153530000004,-8.3496819],[122.33917240000005,-8.352659199999948],[122.34338380000008,-8.350223599999936],[122.34266660000003,-8.347799299999963],[122.3403168000001,-8.348671]]],[[[122.31477360000008,-8.345105199999978],[122.31079860000011,-8.345914799999946],[122.30705260000002,-8.351716],[122.30116270000008,-8.355967499999963],[122.2975159,-8.356616],[122.29576110000005,-8.354540799999938],[122.284668,-8.354344399999945],[122.28404240000009,-8.357096699999943],[122.27723690000005,-8.363418599999932],[122.27540590000001,-8.367717699999957],[122.2790146000001,-8.368969899999968],[122.28582760000006,-8.36866],[122.293747,-8.363569299999938],[122.2987137,-8.365117099999964],[122.29914090000011,-8.368628499999943],[122.30741120000005,-8.368494],[122.3173905000001,-8.354349099999979],[122.32365340000001,-8.3499974],[122.32092290000003,-8.345865299999957],[122.31477360000008,-8.345105199999978]]],[[[121.70702850000009,-8.29199],[121.70262140000011,-8.295007699999928],[121.695755,-8.295659099999966],[121.68556980000005,-8.30472949999995],[121.68617250000011,-8.310946499999943],[121.681305,-8.313022599999954],[121.680809,-8.3166933],[121.67665860000011,-8.323161099999936],[121.67849730000012,-8.3257904],[121.67698670000004,-8.32731819999998],[121.67755130000012,-8.338202499999966],[121.68713380000008,-8.347320599999932],[121.69279480000012,-8.350138699999945],[121.7127762,-8.354404399999964],[121.72801210000011,-8.353309599999932],[121.72808080000004,-8.351914399999941],[121.73284910000007,-8.349165899999946],[121.73579410000002,-8.3490257],[121.73713690000011,-8.346217099999933],[121.73883820000003,-8.344944],[121.7397003000001,-8.345749799999965],[121.7424698000001,-8.342855499999928],[121.74453730000005,-8.333627699999965],[121.74620060000007,-8.331600199999968],[121.746282,-8.324417399999959],[121.74118180000005,-8.320017399999927],[121.741188,-8.314935699999978],[121.73890690000007,-8.307678199999941],[121.73522420000006,-8.30491969999997],[121.73000060000004,-8.296623],[121.72065740000005,-8.296649],[121.71453980000001,-8.292748],[121.70702850000009,-8.29199]]],[[[122.13134760000003,-8.107473399999947],[122.131012,-8.106098199999963],[122.12721250000004,-8.107333199999971],[122.12071230000004,-8.112298],[122.11263280000003,-8.111420599999974],[122.10479740000005,-8.117641399999968],[122.10511020000001,-8.124124499999937],[122.1097794000001,-8.124114],[122.11284640000008,-8.121294],[122.1184158000001,-8.1195431],[122.1219635000001,-8.121304499999951],[122.13069910000002,-8.121531499999946],[122.13488010000003,-8.113208799999938],[122.13524630000006,-8.109073599999931],[122.13326260000008,-8.10697749999997],[122.13134760000003,-8.107473399999947]]]]},"properties":{"shapeName":"Sikka","shapeISO":"","shapeID":"22746128B85278687716846","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[99.56120020000009,3.070155700000043],[99.565879,3.07748840000005],[99.54652850000008,3.098191800000052],[99.53485650000005,3.099508200000059],[99.51703650000007,3.109460300000023],[99.50824850000004,3.101075],[99.48206090000008,3.111880600000063],[99.49277880000005,3.121402100000068],[99.42187230000008,3.146724300000074],[99.36317230000009,3.15104830000007],[99.39752680000004,3.223120100000074],[99.40702150000004,3.251582100000064],[99.40303640000008,3.253239300000075],[99.399278,3.252014300000042],[99.394737,3.244648400000074],[99.39249910000007,3.246017300000062],[99.39003080000003,3.250729400000068],[99.38743090000008,3.251380900000072],[99.38697260000004,3.253506800000025],[99.37904110000005,3.247559],[99.37402970000005,3.246975900000052],[99.37157380000008,3.244645900000023],[99.37234950000004,3.241292300000055],[99.37058010000004,3.240795100000071],[99.36573430000004,3.234680900000058],[99.36460630000005,3.229926900000066],[99.36129130000006,3.225412100000028],[99.36257260000008,3.221537],[99.35943950000006,3.217628500000046],[99.359158,3.214354],[99.35018750000006,3.219095100000061],[99.35690340000008,3.229117900000062],[99.34593070000005,3.241805400000032],[99.34327640000004,3.238293400000032],[99.34190450000006,3.238765200000046],[99.34425670000007,3.243317500000046],[99.34525830000007,3.248898500000053],[99.34425970000007,3.252191900000071],[99.34731310000006,3.259759900000063],[99.34532770000004,3.264383],[99.34539040000004,3.268420200000037],[99.34840280000009,3.274332600000037],[99.34417230000008,3.287732800000072],[99.30864270000006,3.299750200000062],[99.30983480000003,3.290531100000067],[99.30795480000006,3.283690200000024],[99.30528680000003,3.280996200000061],[99.298124,3.277947400000073],[99.29448170000006,3.272848500000066],[99.28195490000007,3.270848200000046],[99.26925350000005,3.276753800000051],[99.267546,3.273323800000071],[99.25964290000007,3.265689300000076],[99.26441710000006,3.259885900000029],[99.26219880000008,3.255418400000053],[99.25454180000008,3.253358800000058],[99.25194470000008,3.256732],[99.24645380000004,3.253764600000068],[99.23520840000003,3.252381700000058],[99.22897780000005,3.244884600000034],[99.231448,3.240558],[99.23625290000007,3.238397],[99.23388860000006,3.225650200000075],[99.22978590000008,3.218194200000028],[99.231076,3.211374800000044],[99.22935430000007,3.205019400000026],[99.23102020000005,3.203300700000057],[99.23044960000004,3.199744200000055],[99.20796520000005,3.223574800000051],[99.20802270000007,3.217376700000045],[99.20647020000007,3.219087800000068],[99.19921430000005,3.212901100000067],[99.20121180000007,3.20922760000002],[99.20028960000008,3.204242900000054],[99.19066750000007,3.194547],[99.186547,3.194637700000044],[99.18657440000004,3.197035100000051],[99.17196750000005,3.196907600000031],[99.17546570000007,3.18561980000004],[99.16819250000003,3.181007],[99.16811980000006,3.17682730000007],[99.16401540000004,3.175425700000062],[99.15773230000008,3.170297],[99.15721880000007,3.167166800000075],[99.15124710000003,3.167237900000032],[99.15029930000009,3.165485100000069],[99.14646340000007,3.167476],[99.13783210000008,3.167422900000076],[99.13730060000006,3.163994200000047],[99.11289840000006,3.142999],[99.09588730000007,3.134605100000044],[99.08181810000008,3.134788300000025],[99.08182870000007,3.129322800000068],[99.07535760000007,3.129305200000033],[99.04832150000004,3.118685],[99.04638950000003,3.117812100000037],[99.04544180000005,3.113455900000076],[99.03259820000005,3.109264],[99.03167470000005,3.094802],[99.018646,3.084411800000055],[99.00707870000008,3.070317500000044],[99.00932830000005,3.060299],[99.00982730000004,3.048481800000047],[99.00146860000007,3.040413300000068],[98.999989,3.027307200000052],[98.98011070000007,3.019367700000032],[98.95728540000005,3.015562400000022],[98.92754750000006,3.01594110000002],[98.935855,3.02741130000004],[98.95284810000004,3.038167200000032],[98.95630380000006,3.047483500000055],[98.97535420000008,3.067279100000064],[98.98073480000005,3.078532900000027],[98.98152170000009,3.082048200000031],[98.97996880000005,3.091905800000063],[98.97858280000008,3.092675600000064],[98.97692540000008,3.107549500000061],[98.97716450000007,3.118837100000064],[98.98560170000007,3.121865800000023],[98.98682590000004,3.123982500000068],[98.97645240000008,3.129279100000076],[98.97212140000005,3.129275300000074],[98.97133540000004,3.136896300000046],[98.96485530000007,3.143750900000043],[98.986116,3.172455100000036],[98.98776660000004,3.182517200000063],[98.99648730000007,3.181787200000031],[99.00031,3.185462900000061],[99.00297050000006,3.202265200000056],[99.00516670000007,3.20550350000002],[98.99901220000004,3.206205500000067],[98.99911760000003,3.208917600000063],[98.99516270000004,3.208710300000064],[98.99453770000008,3.206256300000064],[98.93987330000004,3.207456700000023],[98.94117670000009,3.212218300000075],[98.94643250000007,3.215233600000033],[98.949252,3.220361700000069],[98.95259660000005,3.221903500000053],[98.95530310000004,3.24003330000005],[98.96483170000005,3.267991800000061],[98.96485460000008,3.273034900000027],[98.95787350000006,3.28019340000003],[98.95527,3.281779],[98.952023,3.276401600000042],[98.947128,3.275306400000034],[98.94131060000007,3.275992500000029],[98.93869590000008,3.271883800000069],[98.92707140000005,3.267036100000041],[98.90908970000004,3.253869800000075],[98.90364210000007,3.259064900000055],[98.899898,3.255346200000076],[98.89899780000007,3.256449800000041],[98.90080660000007,3.260132100000021],[98.86494210000006,3.260855100000072],[98.86257720000003,3.257725100000073],[98.86501870000006,3.249369700000045],[98.86287150000004,3.246483900000044],[98.86394970000003,3.244444600000065],[98.86329840000008,3.241276900000059],[98.85995270000006,3.237677100000042],[98.85541420000004,3.236417800000027],[98.85344360000005,3.229690500000061],[98.84351180000004,3.225462100000072],[98.84068340000005,3.222373800000071],[98.788768,3.222501500000021],[98.78560950000008,3.215771300000029],[98.78189940000004,3.213976900000034],[98.77059570000006,3.214587400000028],[98.76112080000007,3.220352100000071],[98.75889780000006,3.213648600000056],[98.75152110000005,3.209041900000045],[98.75010070000008,3.209002],[98.74807270000008,3.218392400000027],[98.74477580000007,3.216928],[98.73422390000007,3.221811],[98.73015410000005,3.220272],[98.72352610000007,3.207333],[98.72774710000004,3.203444],[98.72940710000006,3.196931],[98.726697,3.185259],[98.730468,3.175218],[98.72384290000008,3.149071],[98.717216,3.132966],[98.708783,3.103018],[98.70577990000004,3.063753],[98.704274,3.059772],[98.69447990000003,3.051808],[98.69071280000009,3.05045],[98.68739690000007,3.052711],[98.682269,3.067365],[98.67337490000006,3.071343],[98.65921,3.066635],[98.64609910000007,3.066902],[98.62726210000005,3.062462],[98.62469890000006,3.063547],[98.62213390000005,3.071779],[98.62047110000003,3.089058],[98.61715190000007,3.097199],[98.613383,3.101268],[98.60528960000005,3.104056400000047],[98.60454960000004,3.099212900000055],[98.60059290000004,3.095157800000038],[98.59541020000006,3.095106100000066],[98.58373950000004,3.079931800000054],[98.58287540000003,3.075492500000053],[98.58636980000006,3.062428900000043],[98.58010290000004,3.050891700000022],[98.57561370000008,3.048025500000051],[98.56613020000003,3.032957500000066],[98.56010190000006,3.030141700000058],[98.55620330000005,3.026559700000064],[98.55747390000005,3.021633500000064],[98.55431450000003,3.016839100000027],[98.55325350000004,3.006611500000076],[98.55107250000003,3.000069300000064],[98.55333140000005,2.996855200000027],[98.55449120000009,2.991358400000024],[98.55151250000006,2.987543800000026],[98.54922570000008,2.978058800000042],[98.54999130000004,2.973057100000062],[98.55361360000006,2.968898500000023],[98.54860320000006,2.960539],[98.54699380000005,2.95475650000003],[98.54746390000008,2.949507100000062],[98.54549560000004,2.944330900000068],[98.53484820000006,2.928232300000047],[98.53263060000006,2.905176200000028],[98.54044110000007,2.897206],[98.54486250000008,2.898136500000021],[98.54859140000008,2.89533380000006],[98.54915080000006,2.891162],[98.55705890000007,2.89938],[98.560935,2.891673],[98.569877,2.88941],[98.57184520000004,2.884345],[98.573508,2.883489],[98.586968,2.882863],[98.594681,2.886477],[98.59848010000007,2.881594],[98.597183,2.877782],[98.59783210000006,2.874556],[98.601363,2.872893],[98.604787,2.868668],[98.61196240000004,2.86901210000002],[98.617793,2.865292700000055],[98.62197950000007,2.868048900000076],[98.63002130000007,2.86727570000005],[98.635581,2.858359],[98.64727420000008,2.856298],[98.66476510000007,2.86197],[98.66946490000004,2.860148],[98.67069290000006,2.866959],[98.67410390000003,2.87303],[98.67661420000007,2.874139],[98.68033690000004,2.873234],[98.687417,2.865369],[98.68676110000007,2.858965],[98.69184220000005,2.850744],[98.709116,2.84241],[98.72602310000008,2.838689],[98.72963890000005,2.835996],[98.73570490000009,2.824436],[98.742861,2.82401],[98.747469,2.819419],[98.75272610000007,2.82031],[98.75619680000005,2.813984],[98.76003590000005,2.812792],[98.763835,2.808544],[98.77111420000006,2.806619],[98.77595110000004,2.80053],[98.78525780000007,2.794983],[98.79167480000007,2.793573],[98.79721420000004,2.785125],[98.805843,2.775883],[98.80592690000003,2.770636],[98.80967410000005,2.764946],[98.81104720000008,2.765587],[98.80884220000007,2.771054],[98.81020690000008,2.773713],[98.81931710000003,2.770933],[98.826687,2.7633],[98.82734290000008,2.757075],[98.83166110000008,2.752426],[98.834553,2.746385],[98.84150320000003,2.740768],[98.85297820000005,2.736385],[98.855114,2.731609],[98.865194,2.732525],[98.872709,2.727949],[98.876912,2.723414],[98.88356480000004,2.721198],[98.88707480000005,2.717409],[98.89556620000008,2.700959],[98.90955110000004,2.697741],[98.91726410000007,2.701931],[98.92364180000004,2.697119],[98.92399390000008,2.695506],[98.91706610000006,2.694664],[98.91576110000005,2.692409],[98.92365080000008,2.68374],[98.92522620000005,2.673516300000074],[98.92773520000009,2.672799500000053],[98.93487780000004,2.675871100000052],[98.93717780000009,2.67276],[98.94244720000006,2.659805],[98.94096110000004,2.655635300000029],[98.95817010000007,2.647140500000035],[98.95673450000004,2.634767],[98.96220340000008,2.62588],[98.96309210000004,2.621094700000071],[98.96097290000006,2.613916700000061],[98.977243,2.601611500000047],[98.99194080000007,2.602568600000041],[98.99570070000004,2.605918300000042],[98.99864030000003,2.611524],[99.00007590000007,2.611865800000032],[99.000281,2.610088400000052],[99.00479290000004,2.610225100000036],[99.00677540000004,2.613711600000045],[99.01552570000007,2.613848300000029],[99.02817260000006,2.619248900000059],[99.03924720000003,2.629093],[99.04232350000007,2.633673200000032],[99.04950150000008,2.628956300000027],[99.06413090000007,2.61118220000003],[99.07410380000005,2.60463610000005],[99.07287860000008,2.613492200000053],[99.07452020000005,2.628988900000024],[99.07332360000004,2.636349100000075],[99.07407440000009,2.644361700000047],[99.08108970000006,2.652286300000071],[99.08906270000006,2.668270200000052],[99.10767970000006,2.678522200000032],[99.11932650000006,2.681103500000063],[99.12496050000004,2.696847200000036],[99.13424880000008,2.710972100000049],[99.14660960000003,2.719355800000073],[99.15797040000007,2.735240200000021],[99.16639090000007,2.742875400000059],[99.16952820000006,2.748353200000054],[99.17621950000006,2.752327600000058],[99.18410140000003,2.754420200000027],[99.19905140000009,2.767709],[99.20791640000004,2.769964200000061],[99.210202,2.774536500000067],[99.21221480000008,2.785680300000024],[99.21605650000004,2.789699900000073],[99.21676020000007,2.79399120000005],[99.22003040000004,2.795020600000043],[99.22830930000003,2.802268500000025],[99.23955690000008,2.806708900000046],[99.24108420000005,2.809164500000065],[99.24831930000005,2.812518300000022],[99.25113460000006,2.823742800000048],[99.25753220000007,2.830481400000053],[99.25661360000004,2.837113],[99.25996520000007,2.841895],[99.25859330000009,2.845759],[99.26449530000008,2.850959100000068],[99.26562,2.860492100000045],[99.27066650000006,2.862374400000022],[99.27410490000005,2.865513100000044],[99.28384760000006,2.866555700000049],[99.28775510000008,2.869819500000062],[99.28911410000006,2.873285600000031],[99.29564590000007,2.870648700000061],[99.30391830000008,2.881219300000055],[99.30572520000004,2.881524400000046],[99.309651,2.879089700000065],[99.31647280000004,2.885895700000049],[99.32170910000008,2.886031],[99.33349650000008,2.894431900000029],[99.33828810000006,2.894993400000033],[99.34108560000004,2.893733400000031],[99.344132,2.895701300000042],[99.34670120000004,2.894740700000057],[99.348636,2.895643100000029],[99.35364270000008,2.891459],[99.35549010000005,2.886192],[99.36021290000008,2.882629100000031],[99.37129230000005,2.883310800000061],[99.37642020000004,2.885663600000044],[99.38334610000004,2.896650700000066],[99.39042260000008,2.900445400000024],[99.39227180000006,2.907253100000048],[99.39827330000008,2.914865100000043],[99.40330960000006,2.917033900000035],[99.40833890000005,2.916709800000035],[99.414424,2.921621400000049],[99.42032540000008,2.922420700000032],[99.42443390000005,2.927763],[99.42688410000005,2.928905100000065],[99.44381980000009,2.930396900000062],[99.44711240000004,2.934374200000036],[99.44955520000008,2.940743500000053],[99.45569330000006,2.944103900000073],[99.45475920000007,2.956479700000045],[99.46293570000006,2.957352700000058],[99.46832050000006,2.961209200000042],[99.47425780000003,2.962467500000059],[99.47724440000007,2.967008300000032],[99.48727670000005,2.976469300000076],[99.49057230000005,2.977515600000061],[99.49334,2.981532200000061],[99.49663630000003,2.982989500000031],[99.49698140000004,2.987460700000042],[99.49430230000007,2.994334900000069],[99.49595730000004,2.999990900000057],[99.50700810000006,3.011427900000058],[99.51690060000004,3.013335200000029],[99.51943740000007,3.015111400000023],[99.52314140000004,3.020896400000026],[99.52211760000006,3.023894100000064],[99.52394830000009,3.026280200000031],[99.52989510000003,3.030397500000049],[99.53348690000007,3.029405900000029],[99.53944330000007,3.03562880000004],[99.54408490000009,3.037587],[99.54398760000004,3.039805700000045],[99.54695380000004,3.043072900000027],[99.56120020000009,3.070155700000043]],[[99.10191240000006,3.015847300000075],[99.10290120000008,3.014869100000055],[99.10656990000007,3.016808900000058],[99.11050940000007,3.015846400000044],[99.10273410000008,3.008850500000051],[99.10361050000006,3.006642600000021],[99.10025710000008,3.008299700000066],[99.09577550000006,3.005880600000069],[99.09261270000007,2.995809300000076],[99.09212,2.98775130000007],[99.09469850000005,2.981183800000053],[99.08148510000007,2.978593500000045],[99.08162020000003,2.974693400000035],[99.08455060000006,2.973946],[99.08455050000003,2.972636900000055],[99.09020210000006,2.972376],[99.08779510000005,2.967228900000066],[99.08835390000007,2.96458320000005],[99.08495850000008,2.959237400000063],[99.08212930000008,2.958524800000021],[99.08139840000007,2.956645900000069],[99.08417870000005,2.955687300000022],[99.08792330000006,2.956798300000059],[99.09270830000008,2.95944170000007],[99.09407120000009,2.962006600000052],[99.09844680000003,2.962811600000066],[99.10127210000007,2.959668600000043],[99.09291460000009,2.954614500000048],[99.09498870000004,2.948411100000044],[99.096634,2.94359170000007],[99.09911120000004,2.94311870000007],[99.09937660000008,2.941512300000056],[99.10576570000006,2.941154900000072],[99.10026860000005,2.934841300000073],[99.09633930000007,2.933807600000023],[99.09354770000004,2.935208500000044],[99.08601030000005,2.933409],[99.07637840000007,2.924691600000074],[99.06888610000004,2.921627900000033],[99.05966810000007,2.914899400000024],[99.05267640000005,2.913037200000076],[99.05097680000006,2.908402700000067],[99.04891550000008,2.907088600000066],[99.04604660000007,2.906458600000065],[99.03963680000004,2.908350400000074],[99.03686120000003,2.904569],[99.03505450000006,2.904585800000064],[99.028028,2.892243300000075],[99.02494210000003,2.892106300000023],[99.02764930000006,2.89930430000004],[99.01716170000009,2.893259500000056],[99.01672580000007,2.899502700000028],[99.02482370000007,2.904263900000046],[99.02592890000005,2.908666700000026],[99.03174760000007,2.910676200000069],[99.03430160000005,2.910207200000059],[99.03633380000008,2.912975900000049],[99.03881010000003,2.913701500000059],[99.03270280000004,2.919339800000046],[99.041209,2.924296600000048],[99.04122010000003,2.925491200000067],[99.03304270000007,2.931201],[99.03006090000008,2.93120140000002],[99.02908690000004,2.937090900000044],[99.02693890000006,2.939851600000054],[99.02476130000008,2.938589500000035],[99.02415340000005,2.942279500000041],[99.02069020000005,2.945227400000022],[99.01897790000004,2.949448],[99.02189680000004,2.953418400000032],[99.02218380000005,2.952351700000065],[99.022256,2.957913700000063],[99.02467460000008,2.959984],[99.02583120000008,2.968074400000035],[99.02593370000005,2.97236010000006],[99.02198020000009,2.971837200000039],[99.02283990000006,2.975905800000021],[99.02079280000004,2.981240200000059],[99.02499490000008,2.985788700000057],[99.02597610000004,2.99037160000006],[99.02940260000008,2.99154],[99.03092730000009,2.996456800000033],[99.03753880000005,2.998748],[99.03641370000008,3.001565700000072],[99.037063,3.006686],[99.05072710000007,3.006561100000056],[99.05466870000004,3.007912800000042],[99.05780640000006,3.006296600000042],[99.061694,3.008572900000047],[99.063124,3.01274520000004],[99.06696590000007,3.011305800000059],[99.07236880000005,3.013688600000023],[99.08219590000004,3.012873600000034],[99.08523380000008,3.015637900000058],[99.08909180000006,3.011040700000024],[99.09234260000005,3.010549900000058],[99.09417660000008,3.014228500000058],[99.10168920000007,3.017065900000034],[99.10191240000006,3.015847300000075]]]},"properties":{"shapeName":"Simalungun","shapeISO":"","shapeID":"22746128B13863991083748","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[96.66509270000006,2.12017830000002],[96.64972990000007,2.122976],[96.64515350000005,2.122066500000074],[96.640023,2.11894940000002],[96.62776880000007,2.121003200000075],[96.62190720000007,2.118255900000065],[96.61347470000004,2.111464700000056],[96.61052920000009,2.103740100000039],[96.61069320000007,2.095456100000035],[96.61581240000004,2.093787400000053],[96.61232390000004,2.08845720000005],[96.61194450000005,2.082567400000073],[96.61528980000008,2.074640100000067],[96.62276440000005,2.066250900000057],[96.62876190000009,2.061995700000068],[96.63570730000004,2.058349400000054],[96.638196,2.059529800000064],[96.644052,2.055993800000067],[96.648415,2.056343200000072],[96.65966030000004,2.066952900000047],[96.66313740000004,2.066250100000047],[96.669332,2.072093300000063],[96.67284620000004,2.07138150000003],[96.67559490000008,2.072792700000036],[96.68494730000003,2.08258120000005],[96.68685650000003,2.085749],[96.68716110000008,2.090490800000055],[96.68133260000008,2.097446600000069],[96.67805950000007,2.110207600000024],[96.66509270000006,2.12017830000002]]],[[[96.64818550000007,2.169428100000061],[96.64343550000007,2.173226700000043],[96.64235420000006,2.177113],[96.63463340000004,2.186394],[96.62507880000004,2.187862800000062],[96.61225010000004,2.184730300000069],[96.60834790000007,2.181973],[96.609565,2.174758900000029],[96.61745070000006,2.168327800000043],[96.62456210000005,2.158422800000039],[96.63611440000005,2.149385700000039],[96.65160640000005,2.149342800000056],[96.65788740000005,2.155759700000033],[96.66195990000006,2.166579200000058],[96.65740530000005,2.169106700000043],[96.65145580000006,2.168245600000034],[96.64818550000007,2.169428100000061]]],[[[96.19906170000007,2.358565200000044],[96.19441050000006,2.358965400000045],[96.19189230000006,2.35572650000006],[96.19131750000008,2.351392700000076],[96.19424750000007,2.347964800000057],[96.19714820000007,2.348278100000073],[96.20624930000008,2.355521400000043],[96.20459760000006,2.358644500000025],[96.19906170000007,2.358565200000044]]],[[[96.25895810000009,2.359705100000042],[96.26176090000007,2.362299600000028],[96.25675480000007,2.369585800000038],[96.25830860000008,2.372727],[96.25554450000004,2.374087200000076],[96.25011350000005,2.366460600000039],[96.24135640000009,2.361566400000072],[96.23064670000008,2.359491800000058],[96.222364,2.360593100000074],[96.21758560000006,2.358913400000063],[96.22537290000008,2.350311400000066],[96.23534630000006,2.344519300000059],[96.24697580000009,2.345010700000046],[96.25048270000008,2.346429800000067],[96.255856,2.350676800000031],[96.25623570000005,2.355934],[96.25895810000009,2.359705100000042]]],[[[96.501713,2.414097500000025],[96.49914410000008,2.413253300000065],[96.50255060000006,2.411834700000043],[96.501713,2.414097500000025]]],[[[96.23114650000008,2.413134800000023],[96.23208420000003,2.414545600000054],[96.23116720000007,2.416093500000045],[96.22933020000005,2.414144100000044],[96.23114650000008,2.413134800000023]]],[[[96.49388930000003,2.435887700000023],[96.48927370000007,2.437708600000065],[96.48816160000007,2.433566700000029],[96.491152,2.432263900000066],[96.48964020000005,2.429535300000055],[96.48187170000006,2.42752390000004],[96.47951830000005,2.424823400000037],[96.48141160000006,2.423939300000029],[96.48636550000003,2.426612300000045],[96.48529310000004,2.423973],[96.48685670000003,2.424462500000061],[96.48797260000003,2.423678],[96.48712880000005,2.42173],[96.48889380000008,2.422796400000038],[96.48989780000005,2.421379600000023],[96.48534240000004,2.419291300000054],[96.48605530000003,2.41845440000003],[96.49257680000005,2.420143],[96.49538430000007,2.41877850000003],[96.49874640000007,2.414246],[96.49847560000006,2.417802900000027],[96.50182730000006,2.418974400000025],[96.50361690000005,2.418487],[96.50004260000009,2.416783500000065],[96.50065660000007,2.414474400000074],[96.50183110000006,2.416909500000031],[96.50996820000006,2.414819400000056],[96.51673850000003,2.423458900000071],[96.51634570000004,2.427097400000036],[96.50704620000005,2.432743300000027],[96.49688080000004,2.433971500000041],[96.49511020000006,2.435154],[96.49579980000004,2.435952600000064],[96.49388930000003,2.435887700000023]]],[[[96.48226150000005,2.438433500000031],[96.47740840000006,2.440187500000036],[96.47566210000008,2.436628600000063],[96.48180380000008,2.433172600000034],[96.48518810000007,2.435764900000038],[96.48342940000003,2.438847100000032],[96.48226150000005,2.438433500000031]]],[[[96.35577420000004,2.523132500000031],[96.35347230000008,2.523303300000066],[96.351035,2.52029790000006],[96.35577420000004,2.523132500000031]]],[[[96.38168390000004,2.524613300000055],[96.37801230000008,2.527360600000065],[96.37591030000004,2.524855900000034],[96.37650610000009,2.521932700000036],[96.37439930000005,2.521886100000074],[96.36693210000004,2.526109],[96.36343920000007,2.523813300000029],[96.36285540000006,2.520760700000039],[96.36433350000004,2.519153200000062],[96.36555260000006,2.520596600000033],[96.36496690000007,2.518518800000038],[96.36694740000007,2.518522800000028],[96.36674050000005,2.516615200000047],[96.36808820000005,2.516999400000032],[96.36847010000008,2.515686300000027],[96.37353110000004,2.51353510000007],[96.37487630000004,2.515148300000021],[96.37790970000003,2.51545120000003],[96.38120430000004,2.511558700000023],[96.38242220000006,2.513637800000026],[96.38650950000005,2.51377320000006],[96.38385340000008,2.514446],[96.38532420000007,2.516483300000061],[96.39047730000004,2.510390600000051],[96.39181880000007,2.513911],[96.38742780000007,2.518182800000034],[96.38304840000006,2.516605800000036],[96.38292520000005,2.514995100000021],[96.37921650000004,2.515199500000051],[96.38178290000008,2.517281400000059],[96.37895810000003,2.517996200000027],[96.37734980000005,2.521510600000056],[96.38177160000004,2.522918200000049],[96.38168390000004,2.524613300000055]]],[[[96.34764620000004,2.52687480000003],[96.34747670000007,2.528224900000055],[96.34579340000005,2.527418200000056],[96.349747,2.525272700000073],[96.34764620000004,2.52687480000003]]],[[[96.34999210000007,2.53419690000004],[96.34827180000008,2.534308100000032],[96.34769560000007,2.532806400000027],[96.346271,2.534189200000071],[96.34473950000006,2.532067700000027],[96.35075320000004,2.529374300000029],[96.34786420000006,2.531897600000036],[96.34999210000007,2.53419690000004]]],[[[96.34549110000006,2.53364920000007],[96.34557510000008,2.53547640000005],[96.34447390000008,2.534581400000036],[96.34549110000006,2.53364920000007]]],[[[96.35919690000009,2.539238100000034],[96.35568660000007,2.53915150000006],[96.35674340000008,2.537353],[96.35919690000009,2.539238100000034]]],[[[96.34662990000004,2.538956300000052],[96.34674950000004,2.540571800000066],[96.34481060000007,2.54025],[96.34662990000004,2.538956300000052]]],[[[96.34814450000005,2.540768900000046],[96.34686150000005,2.541595900000061],[96.34764060000003,2.538243400000056],[96.34946280000008,2.539871300000073],[96.35093090000004,2.53863860000007],[96.35343880000005,2.539676500000041],[96.34814450000005,2.540768900000046]]],[[[95.93551760000008,2.542446900000073],[95.93216720000004,2.544860800000038],[95.92922580000004,2.544046500000036],[95.92668930000008,2.541753],[95.92616150000003,2.538657],[95.91880940000004,2.536082800000031],[95.91868420000009,2.532449600000064],[95.91588870000004,2.526522600000021],[95.91656140000003,2.524909600000058],[95.92539460000006,2.523450500000024],[95.92726440000007,2.524800500000026],[95.93583110000009,2.522937100000036],[95.93823640000005,2.524153800000022],[95.95763730000004,2.523392300000069],[95.95976350000007,2.529586900000027],[95.94958530000008,2.534003300000052],[95.94368530000008,2.539640700000064],[95.93994120000008,2.538824400000067],[95.93551760000008,2.542446900000073]]],[[[95.86707760000007,2.605281800000057],[95.869574,2.605900800000029],[95.86895720000007,2.608962800000029],[95.87272680000007,2.612097100000028],[95.87247840000003,2.61399590000002],[95.86700040000005,2.611837700000024],[95.86487580000005,2.608707500000037],[95.86519120000008,2.60435810000007],[95.86707760000007,2.605281800000057]]],[[[96.21591680000006,2.649700800000062],[96.21899640000004,2.65042660000006],[96.21972970000007,2.65320470000006],[96.21282220000006,2.655643200000043],[96.20971980000007,2.654124],[96.21234,2.650833],[96.21591680000006,2.649700800000062]]],[[[96.37722960000008,2.655198700000028],[96.37176190000008,2.656021800000076],[96.36705690000008,2.658507600000064],[96.36540850000006,2.66386760000006],[96.35585780000008,2.660448400000064],[96.35238280000004,2.655661500000065],[96.35397030000007,2.654125],[96.36088860000007,2.653768100000036],[96.36982030000007,2.650229200000069],[96.37537380000003,2.646045800000024],[96.38224330000008,2.643776900000034],[96.38757220000008,2.645965500000045],[96.39713240000003,2.644923600000027],[96.395593,2.648744],[96.39141730000006,2.650646900000027],[96.38702430000006,2.655417100000022],[96.37722960000008,2.655198700000028]]],[[[96.16201410000008,2.668681500000048],[96.15198530000004,2.668083],[96.15759170000007,2.662816400000054],[96.161916,2.666102300000034],[96.16201410000008,2.668681500000048]]],[[[96.146721,2.672467400000073],[96.14732160000005,2.675275800000065],[96.144251,2.678195300000027],[96.14347070000008,2.674883800000032],[96.146721,2.672467400000073]]],[[[95.74517120000007,2.712655],[95.74668610000003,2.717971200000022],[95.74181520000008,2.719961700000056],[95.74047220000006,2.719678500000043],[95.73779930000006,2.71390770000005],[95.73414270000006,2.712671700000044],[95.72418020000003,2.712691200000052],[95.72181090000004,2.714968],[95.71463350000005,2.713177700000074],[95.71338670000006,2.711590100000024],[95.71668010000008,2.710294400000066],[95.71770690000005,2.707548],[95.72211970000006,2.703506200000049],[95.73120640000008,2.701760100000058],[95.74486720000004,2.705012300000021],[95.74402080000004,2.709623100000044],[95.74517120000007,2.712655]]],[[[96.13494960000008,2.726402300000075],[96.13302160000006,2.726553700000068],[96.13524210000008,2.724509200000057],[96.13382790000009,2.722901700000023],[96.13496160000005,2.721344800000054],[96.13504730000005,2.72254810000004],[96.13644350000004,2.72244],[96.13569230000007,2.721524700000032],[96.13709260000007,2.719656500000042],[96.138798,2.719905700000027],[96.13814660000008,2.723669500000028],[96.13494960000008,2.726402300000075]]],[[[96.10429560000006,2.749811300000033],[96.10164080000004,2.748178400000029],[96.09909110000007,2.748885200000075],[96.10479330000004,2.745534900000052],[96.10567820000006,2.74611630000004],[96.10429560000006,2.749811300000033]]],[[[96.11584770000007,2.746230100000048],[96.11393810000004,2.747963300000038],[96.11359890000006,2.750792],[96.111358,2.752101100000061],[96.10823720000008,2.750756700000068],[96.106386,2.746608200000026],[96.10716820000005,2.743825100000038],[96.10543610000008,2.745447300000023],[96.10402010000007,2.744619500000056],[96.10666120000008,2.742754400000024],[96.10906930000004,2.745612100000073],[96.11339050000004,2.745355200000063],[96.11301710000004,2.743973],[96.114567,2.744422300000053],[96.12111620000007,2.738957300000038],[96.12381680000004,2.740011],[96.12319890000003,2.738962400000048],[96.12506440000004,2.737139900000045],[96.12786820000008,2.736818],[96.127862,2.734431700000073],[96.12940530000009,2.737907900000039],[96.12734340000009,2.738482200000021],[96.12784940000006,2.739953900000046],[96.11584770000007,2.746230100000048]]],[[[96.012214,2.783541500000069],[96.00864710000008,2.782646900000032],[96.008048,2.781293700000049],[96.00972240000004,2.77901410000004],[96.013985,2.779724100000067],[96.012214,2.783541500000069]]],[[[95.96367080000005,2.82457080000006],[95.96403410000005,2.827461400000061],[95.96018520000007,2.828103800000065],[95.96158350000007,2.825124600000038],[95.96367080000005,2.82457080000006]]],[[[95.76986480000005,2.833877400000063],[95.76457570000008,2.83600610000002],[95.763048,2.835396],[95.76352960000008,2.828873700000031],[95.76770290000007,2.828],[95.76871930000004,2.82916780000005],[95.76713760000007,2.831306900000072],[95.77163450000006,2.830760300000065],[95.76986480000005,2.833877400000063]]],[[[95.788541,2.834069500000055],[95.78830260000007,2.836492],[95.78682640000005,2.834018100000037],[95.788541,2.834069500000055]]],[[[95.78524320000008,2.836716400000057],[95.78649030000008,2.838257700000042],[95.78445160000007,2.83806560000005],[95.78431760000007,2.836247900000046],[95.78524320000008,2.836716400000057]]],[[[95.77744660000008,2.840608900000063],[95.77483810000007,2.841692200000068],[95.77368730000006,2.840300100000036],[95.77783,2.836043300000028],[95.78088840000004,2.836145100000067],[95.78097580000008,2.838055900000029],[95.77744660000008,2.840608900000063]]],[[[95.96274320000003,2.842558700000041],[95.96449790000008,2.845126700000037],[95.96240570000003,2.847544700000071],[95.96087790000007,2.846841600000062],[95.960607,2.844091],[95.96126040000007,2.842368300000032],[95.96274320000003,2.842558700000041]]],[[[95.94199930000008,2.851824800000031],[95.941805,2.855179900000053],[95.93976540000006,2.855221100000051],[95.93940230000004,2.852283900000032],[95.94199930000008,2.851824800000031]]],[[[95.93029370000005,2.861161200000026],[95.92940250000004,2.865120200000035],[95.92652820000006,2.865298900000028],[95.92881060000008,2.861110600000075],[95.93029370000005,2.861161200000026]]],[[[95.76418890000008,2.891223800000034],[95.76432230000006,2.893181300000037],[95.76220930000005,2.895348600000034],[95.75704250000007,2.894418500000029],[95.75695420000005,2.892880500000047],[95.76085410000007,2.89046860000002],[95.76418890000008,2.891223800000034]]],[[[95.76010680000007,2.905591100000038],[95.759565,2.90682970000006],[95.75808830000005,2.905986300000052],[95.76010680000007,2.905591100000038]]],[[[95.80514330000005,2.929832],[95.80141520000006,2.931570600000043],[95.79513570000006,2.928498400000024],[95.78994030000007,2.930021300000021],[95.78402040000003,2.925577300000043],[95.78089560000006,2.916155300000071],[95.78082140000004,2.909631300000058],[95.77448570000007,2.904766800000061],[95.77127690000003,2.908578700000021],[95.77021380000008,2.907550400000048],[95.77041590000005,2.901679600000023],[95.76773960000008,2.897524700000076],[95.769069,2.88634490000004],[95.76721680000009,2.885780400000044],[95.76370940000004,2.88050480000004],[95.76748670000006,2.872221100000047],[95.76643120000006,2.868536900000038],[95.76756050000006,2.862482300000067],[95.763357,2.857531],[95.76582890000003,2.851946200000043],[95.76477290000008,2.848401800000033],[95.76639870000008,2.847055],[95.76792380000006,2.848550500000044],[95.77084690000004,2.847347100000036],[95.77223140000007,2.84860720000006],[95.77298120000006,2.846467800000028],[95.77887080000005,2.845086400000071],[95.78374770000005,2.841232400000024],[95.78578470000008,2.842030200000067],[95.78750660000009,2.839425500000061],[95.78781810000004,2.842827200000045],[95.79176580000006,2.84106840000004],[95.795094,2.844199900000035],[95.79644340000004,2.842246400000022],[95.79061870000004,2.836917800000037],[95.78960760000007,2.833839500000067],[95.79114920000006,2.83261310000006],[95.79068240000004,2.830627100000072],[95.78878020000008,2.831367400000033],[95.78804370000006,2.829548],[95.786091,2.831407600000034],[95.78791350000006,2.826332300000047],[95.78619860000003,2.826374100000066],[95.78503040000004,2.82986580000005],[95.78225110000005,2.829392],[95.78326770000007,2.830466700000045],[95.78168770000008,2.832],[95.77762750000005,2.82546480000002],[95.77777640000005,2.821877100000052],[95.78014230000008,2.821045],[95.77847770000005,2.819642400000021],[95.77894590000005,2.817919500000073],[95.77499040000004,2.823826500000052],[95.77225950000008,2.822607300000072],[95.77415560000009,2.824057200000027],[95.77396380000005,2.826386600000035],[95.76761440000007,2.826508600000068],[95.76127190000005,2.824160900000038],[95.75560590000003,2.828525200000058],[95.75024650000006,2.830383300000051],[95.74703010000007,2.829386400000033],[95.74517310000004,2.830546100000049],[95.739573,2.827920800000072],[95.73803740000005,2.830199800000059],[95.73298170000004,2.831769700000052],[95.718541,2.825391600000046],[95.71692750000005,2.822404900000038],[95.71875330000006,2.815793500000041],[95.71636120000005,2.809496200000069],[95.71025730000008,2.804866],[95.70629190000005,2.79777230000002],[95.70679630000006,2.789625800000067],[95.695174,2.779941600000029],[95.692136,2.772617600000046],[95.69990020000006,2.763320400000055],[95.69792770000004,2.756092600000045],[95.69928260000006,2.752042600000038],[95.70365150000003,2.747255500000051],[95.70855570000003,2.750018200000056],[95.71379970000004,2.74714380000006],[95.71347040000006,2.748960100000033],[95.71688250000005,2.755120300000044],[95.72146760000004,2.756018300000051],[95.71988560000005,2.75839030000003],[95.720856,2.759371500000043],[95.72618280000006,2.760131800000067],[95.73003760000006,2.756973900000048],[95.731145,2.758701100000053],[95.73351350000007,2.756797100000028],[95.73426590000008,2.752791900000034],[95.73240140000007,2.749569400000041],[95.73038960000008,2.749859600000036],[95.72506080000005,2.746802200000047],[95.72246410000008,2.747447300000033],[95.72340230000003,2.743256300000041],[95.72173920000006,2.741387800000041],[95.724434,2.73873930000002],[95.73041190000004,2.738662500000032],[95.74284,2.735201800000027],[95.750037,2.72981610000005],[95.75065020000005,2.725810400000057],[95.74922350000008,2.722125300000073],[95.752108,2.717846100000031],[95.755675,2.718228600000032],[95.75595990000005,2.715666400000032],[95.76304690000006,2.714725],[95.76305550000006,2.711518400000045],[95.76502120000004,2.70889040000003],[95.75634190000005,2.703389300000026],[95.75456840000004,2.699869800000045],[95.76000670000008,2.69286180000006],[95.770166,2.68714650000004],[95.77333190000007,2.687652600000035],[95.78195770000008,2.682027],[95.78965860000005,2.670426700000064],[95.79264510000007,2.663815500000055],[95.79382980000008,2.655383100000051],[95.79282580000006,2.651324400000021],[95.78800730000006,2.648773700000049],[95.78794660000005,2.643523200000061],[95.79012780000005,2.64208560000003],[95.78820340000004,2.639915700000074],[95.79270920000005,2.633574100000033],[95.79502550000007,2.633015800000067],[95.79571520000007,2.630412],[95.80352180000006,2.629429500000072],[95.80477310000003,2.633588400000065],[95.80320650000004,2.636595300000067],[95.80352010000007,2.639781200000073],[95.80921550000005,2.638103800000067],[95.81094360000009,2.639651100000037],[95.80975,2.641962300000046],[95.81083550000005,2.643209300000024],[95.818813,2.646310200000073],[95.82661280000008,2.64424],[95.82880460000007,2.638621700000044],[95.82758110000003,2.633218600000021],[95.82860470000008,2.629637900000034],[95.831672,2.630019],[95.83284170000007,2.627359300000023],[95.83816710000008,2.622750600000074],[95.84052070000007,2.624094100000036],[95.84228650000006,2.630394400000057],[95.84131410000003,2.63327860000004],[95.844423,2.636845100000073],[95.85077830000006,2.638503700000058],[95.86009280000007,2.636464600000068],[95.86162720000004,2.637491300000022],[95.87328320000006,2.627687500000036],[95.884608,2.623276600000054],[95.88881050000003,2.619586600000048],[95.88998020000008,2.615969200000052],[95.88797980000004,2.615389],[95.88424050000003,2.610541300000023],[95.88611710000004,2.606722700000034],[95.884778,2.604012600000033],[95.88558740000008,2.603202600000031],[95.88979490000008,2.602384100000052],[95.88947790000003,2.601300500000036],[95.89488540000008,2.598184200000048],[95.89760990000008,2.598444700000073],[95.899067,2.601036700000066],[95.90204440000008,2.601094800000055],[95.90404140000004,2.603045300000076],[95.90285260000007,2.600775400000032],[95.90568050000007,2.600054900000032],[95.90708350000006,2.597266900000022],[95.91097010000004,2.600292300000035],[95.91769520000008,2.598836600000027],[95.91696310000003,2.594226800000058],[95.91808490000005,2.589475600000071],[95.92062560000005,2.589228100000071],[95.92657910000008,2.582898400000033],[95.930859,2.586952200000042],[95.93104520000009,2.579474800000071],[95.94280460000004,2.572143900000071],[95.94960530000009,2.570248500000048],[95.95569590000008,2.570376900000042],[95.956307,2.574629500000071],[95.95847620000006,2.576821700000039],[95.96532580000007,2.576651],[95.96580490000008,2.577945400000033],[95.96302380000009,2.581448500000022],[95.96494950000005,2.583847200000037],[95.97383470000005,2.587301600000046],[95.97987390000009,2.58778680000006],[95.98416970000005,2.583917100000065],[95.98823930000003,2.585058500000059],[95.99242610000005,2.58199680000007],[95.99360970000004,2.57995180000006],[95.99229190000005,2.570679700000028],[95.993695,2.566425800000047],[95.99632190000005,2.565839200000028],[96.00428830000004,2.587284],[96.00751610000003,2.590816700000062],[96.01542250000006,2.589569100000062],[96.01699820000005,2.58803690000002],[96.01691420000009,2.585552100000029],[96.01857820000004,2.584697800000072],[96.03455630000008,2.581920600000046],[96.03860060000005,2.584055300000045],[96.03707920000005,2.581711400000074],[96.04213240000007,2.579976700000032],[96.04299650000007,2.581789900000047],[96.04538260000004,2.579111],[96.04946640000009,2.579314600000032],[96.04983240000007,2.574011100000064],[96.05748460000007,2.563687200000061],[96.06019140000006,2.563715200000047],[96.06142640000007,2.568428600000061],[96.06391440000004,2.569887600000072],[96.07530540000005,2.569793600000025],[96.07517820000004,2.568731],[96.08594550000004,2.562431400000037],[96.083304,2.558285900000044],[96.08667180000003,2.554174300000057],[96.09455940000004,2.552037300000052],[96.11676920000008,2.540440900000021],[96.11959630000007,2.541860500000041],[96.11933550000003,2.538121300000057],[96.12562340000005,2.529355200000055],[96.126375,2.522942],[96.12840410000007,2.520190200000059],[96.13928150000004,2.513478700000064],[96.14467250000007,2.513721100000055],[96.14686640000008,2.517645],[96.14995430000005,2.518353400000024],[96.15173,2.517565500000046],[96.152024,2.515270800000053],[96.16055220000004,2.511921600000051],[96.16425030000005,2.506948100000045],[96.16419610000008,2.504371900000024],[96.16184060000006,2.50136980000002],[96.16991660000008,2.490361500000063],[96.17306370000006,2.491380700000036],[96.17736320000006,2.489425400000073],[96.178167,2.486369900000057],[96.18135980000005,2.484612600000048],[96.18346090000006,2.485429],[96.18291030000006,2.486580600000025],[96.18801910000008,2.488365700000031],[96.18966130000007,2.48472060000006],[96.19595890000005,2.480433900000037],[96.20029310000007,2.471461900000065],[96.20419360000005,2.469665900000052],[96.20660360000005,2.470513],[96.21597230000003,2.465470700000026],[96.223346,2.456454600000029],[96.22667010000004,2.448973600000045],[96.22562140000008,2.445242500000063],[96.22821210000006,2.441813800000034],[96.23208770000008,2.442259900000067],[96.23527160000003,2.440185600000063],[96.23825320000003,2.441155500000036],[96.23918610000004,2.442931800000053],[96.26168250000006,2.431380800000056],[96.27250520000007,2.429129800000055],[96.28125050000006,2.429349200000047],[96.29724840000006,2.425860600000021],[96.30937190000009,2.422244500000033],[96.312809,2.41970340000006],[96.31657810000007,2.414532800000075],[96.31940550000007,2.405084600000066],[96.31453720000007,2.403488700000025],[96.31327890000006,2.401759],[96.31385160000008,2.395661800000028],[96.31228370000008,2.390935100000036],[96.31386410000005,2.389246200000059],[96.31341570000006,2.385544],[96.31477420000004,2.384514900000056],[96.31716370000004,2.386467900000071],[96.31965820000005,2.383264900000029],[96.33306560000005,2.39104640000005],[96.33563870000006,2.387949300000059],[96.33389610000006,2.382922600000029],[96.33528760000007,2.378913700000055],[96.33396110000007,2.371906800000033],[96.32149480000004,2.362188600000025],[96.31663130000004,2.362752],[96.314053,2.359486300000071],[96.318217,2.356633100000067],[96.31862450000006,2.352996800000028],[96.32639480000006,2.34960030000002],[96.33400210000008,2.350497800000028],[96.34040010000007,2.346292],[96.34465070000005,2.341242800000032],[96.35348760000005,2.339031300000045],[96.35978760000006,2.341098600000066],[96.36431610000005,2.337223800000061],[96.36735240000007,2.336809200000062],[96.372747,2.340061500000047],[96.37405990000008,2.347481500000072],[96.38735290000005,2.348991800000022],[96.39065940000006,2.345694600000058],[96.392569,2.340122600000029],[96.39935930000007,2.337571900000057],[96.40706160000008,2.332076400000062],[96.41587140000007,2.329874],[96.42532530000005,2.330117400000063],[96.44225380000006,2.327706100000057],[96.44426230000005,2.329017900000053],[96.444257,2.331970400000046],[96.44890310000005,2.331248300000027],[96.45365540000006,2.333075200000053],[96.45956670000004,2.339283800000032],[96.46352240000004,2.339719600000024],[96.46412750000007,2.342627100000072],[96.46627110000009,2.344393700000069],[96.46821990000007,2.344137],[96.46784880000007,2.340794100000039],[96.46998250000007,2.340019300000051],[96.480856,2.344251],[96.48491940000008,2.352888800000073],[96.49157220000006,2.356558600000028],[96.49229950000006,2.359847300000069],[96.49870160000006,2.363226],[96.49904430000004,2.367589600000031],[96.49675460000003,2.373975500000029],[96.49241360000008,2.375906600000064],[96.49153370000005,2.377976300000057],[96.49177830000008,2.388024600000051],[96.48993470000005,2.389960200000075],[96.48700070000007,2.389117500000054],[96.47691190000006,2.39852],[96.477515,2.401263],[96.48186430000004,2.402460500000075],[96.486918,2.410446900000068],[96.48303240000007,2.417684],[96.480789,2.419780600000024],[96.47721880000006,2.419330700000046],[96.475285,2.422588200000064],[96.47695040000008,2.42232690000003],[96.47896170000007,2.424578200000042],[96.47566560000007,2.43026640000005],[96.47329950000005,2.43007620000003],[96.46863840000003,2.426497400000073],[96.46666270000009,2.427011500000049],[96.46821410000007,2.431697100000065],[96.47043530000008,2.431462100000033],[96.47189150000008,2.433246500000052],[96.47131640000003,2.436242],[96.46548410000008,2.436988700000029],[96.47127680000006,2.449216300000046],[96.46732780000008,2.460384100000056],[96.46548430000007,2.462099200000068],[96.46154020000006,2.462532300000021],[96.45548470000006,2.467368200000067],[96.45723010000006,2.471117400000026],[96.45375920000004,2.476134400000035],[96.44626380000005,2.477794500000073],[96.43493880000005,2.488657200000034],[96.42765960000008,2.491771700000072],[96.427097,2.488157],[96.42484710000008,2.487097500000061],[96.42951790000006,2.482389],[96.43002120000006,2.479465800000071],[96.42688320000008,2.477011800000071],[96.42777070000005,2.479653400000075],[96.42676310000007,2.48122520000004],[96.42645430000005,2.477713],[96.42523390000008,2.477357],[96.42198090000005,2.482947100000047],[96.41942730000005,2.484450300000049],[96.42122730000006,2.487484500000051],[96.41542090000007,2.485152400000061],[96.41388280000007,2.487155900000062],[96.41649510000008,2.487651500000027],[96.41706030000006,2.4899],[96.412941,2.489618300000075],[96.41429670000008,2.491613100000052],[96.41161450000004,2.496455200000071],[96.41124790000003,2.504694900000061],[96.40930860000003,2.510507800000028],[96.404222,2.512612800000056],[96.40362750000008,2.510676300000057],[96.40212590000004,2.511088200000074],[96.401836,2.50679770000005],[96.40390340000005,2.504242],[96.40515350000004,2.50674250000003],[96.40727190000007,2.50509610000006],[96.40495440000007,2.496441],[96.40217810000007,2.493487300000027],[96.402056,2.487711800000056],[96.39926760000009,2.487373300000058],[96.40092430000004,2.483916400000055],[96.40311050000008,2.483417600000053],[96.40360450000009,2.479707800000028],[96.40128540000006,2.478753300000051],[96.39966810000004,2.475519500000075],[96.40048690000003,2.474205900000072],[96.40395290000004,2.474504],[96.40780520000004,2.47021280000007],[96.408997,2.467494700000032],[96.40664560000005,2.466264900000056],[96.40720070000003,2.46061670000006],[96.40597650000007,2.458275100000037],[96.40099390000006,2.454987100000039],[96.40021820000004,2.458338300000037],[96.39899420000006,2.458871600000066],[96.39785490000008,2.456449],[96.39653150000004,2.457398700000056],[96.39797030000005,2.457937100000038],[96.39828090000003,2.460556500000052],[96.40086250000007,2.461751900000024],[96.40194050000008,2.465245700000025],[96.39545710000004,2.462197600000025],[96.39528390000004,2.459975300000053],[96.39269580000007,2.462092900000073],[96.39015640000008,2.460491700000034],[96.38888980000007,2.461856100000034],[96.38717130000003,2.45567],[96.38406770000006,2.456362400000046],[96.385169,2.458031],[96.38406080000004,2.459893700000066],[96.38679790000003,2.462279700000067],[96.38449110000005,2.461779200000024],[96.38600750000006,2.462972500000035],[96.38349470000009,2.466994800000066],[96.38546250000007,2.465084500000046],[96.38724360000003,2.465299900000048],[96.38577380000004,2.467433100000051],[96.38871150000006,2.468630500000074],[96.39250760000004,2.474748700000021],[96.38855350000006,2.471161100000074],[96.38655550000004,2.470709400000032],[96.38628410000007,2.472109300000056],[96.38241090000008,2.471264400000052],[96.38455090000008,2.477735400000029],[96.38231480000007,2.479732300000023],[96.38279280000006,2.481398200000058],[96.379861,2.483471],[96.375989,2.481990900000028],[96.37727630000006,2.484187500000075],[96.37601040000004,2.485686200000032],[96.37411750000007,2.484931800000027],[96.37483110000005,2.486954100000048],[96.37325080000005,2.487759200000028],[96.371876,2.486313],[96.36906690000006,2.488381100000026],[96.373964,2.489983600000073],[96.37043630000005,2.492647200000022],[96.37324790000008,2.495415600000058],[96.36477420000006,2.497825900000066],[96.36614710000003,2.500317800000062],[96.36335430000008,2.50130960000007],[96.36465180000005,2.501974200000063],[96.36360170000006,2.504876],[96.36496520000009,2.507668],[96.36382850000007,2.509943],[96.36592920000004,2.512692400000049],[96.37078330000008,2.512305],[96.36574140000005,2.514475],[96.36195530000003,2.520601900000031],[96.35787610000006,2.519755],[96.36153320000005,2.516664300000059],[96.36224980000009,2.518148600000075],[96.36186140000007,2.514934900000071],[96.35699330000006,2.515850800000067],[96.35578850000007,2.514807800000028],[96.35651490000004,2.515833200000031],[96.35070510000008,2.520181700000023],[96.35221090000005,2.522029500000031],[96.34954590000007,2.520558900000026],[96.34899870000004,2.522058300000026],[96.34690670000003,2.51938830000006],[96.34467750000005,2.519401400000049],[96.34102380000007,2.520797300000027],[96.33943730000004,2.524165800000048],[96.34054190000006,2.524768300000062],[96.34269680000006,2.522398400000043],[96.34538190000006,2.525278700000058],[96.34436320000003,2.527238800000021],[96.34013040000008,2.528554],[96.33956530000006,2.530255300000022],[96.34155460000005,2.531663900000069],[96.34403240000006,2.530256800000075],[96.34280970000003,2.531613500000049],[96.34491160000005,2.538052400000026],[96.34468320000008,2.542482900000039],[96.34631580000007,2.542362700000069],[96.349836,2.546191900000053],[96.34143890000007,2.547025500000075],[96.34223830000008,2.549221300000056],[96.33911670000003,2.552189300000066],[96.33629440000004,2.550418200000024],[96.33028960000007,2.551323600000046],[96.32619020000004,2.554403600000057],[96.32502350000004,2.558215400000051],[96.31809930000009,2.561312],[96.31297090000004,2.561751500000071],[96.30815540000003,2.558469900000034],[96.29408130000007,2.563147400000048],[96.28039970000003,2.573844200000053],[96.27015680000005,2.573698800000045],[96.26250660000005,2.581268600000044],[96.25293210000007,2.585669800000062],[96.25115060000007,2.589812700000039],[96.25201330000004,2.590157300000044],[96.24831840000007,2.592634800000042],[96.24848350000008,2.593919800000037],[96.245553,2.593707800000061],[96.248457,2.595656400000053],[96.24777430000006,2.59824750000007],[96.239934,2.607629200000076],[96.24112420000006,2.615419400000064],[96.23978140000008,2.619393],[96.23634490000006,2.619732800000065],[96.23371810000003,2.622129100000052],[96.22293170000006,2.620213300000046],[96.22075660000007,2.621924200000024],[96.221771,2.624110100000053],[96.22602320000004,2.624944],[96.22610750000007,2.626905],[96.21972470000009,2.627692900000056],[96.21743740000005,2.630027400000074],[96.21692470000005,2.63143],[96.217499,2.632211100000063],[96.21765840000006,2.630273],[96.218744,2.630297700000028],[96.21885350000008,2.630899500000055],[96.21978560000008,2.630210900000066],[96.21920210000008,2.633529600000031],[96.21527530000009,2.635838100000058],[96.21292920000008,2.634718700000064],[96.21212690000004,2.636833700000068],[96.21013610000006,2.635336300000063],[96.20578940000007,2.637198200000057],[96.205675,2.638779900000031],[96.20698250000004,2.638693700000033],[96.20354210000005,2.643710100000021],[96.20412750000008,2.647154300000068],[96.20205020000009,2.64474320000005],[96.19959070000004,2.644826700000067],[96.19938470000005,2.64824260000006],[96.19641710000008,2.647159100000067],[96.19291950000007,2.651273900000035],[96.19009560000006,2.650264100000072],[96.18794440000005,2.651172700000075],[96.18774130000008,2.652776500000073],[96.18492680000008,2.653082],[96.18502080000007,2.655797],[96.18760640000005,2.653645100000062],[96.18816520000007,2.655531500000052],[96.18382030000004,2.662281600000028],[96.18096450000007,2.661227800000063],[96.18312990000004,2.66383970000004],[96.18103750000006,2.668090600000028],[96.17871550000007,2.666169],[96.17802420000004,2.668128200000069],[96.17687390000003,2.667301100000032],[96.17574010000004,2.669014200000049],[96.17419670000004,2.665713],[96.17609,2.670998],[96.17531240000005,2.671954300000039],[96.17414250000007,2.670013100000062],[96.17256940000004,2.670031800000061],[96.17508860000004,2.67293410000002],[96.17233750000008,2.674554300000068],[96.16883680000007,2.674546100000043],[96.17265540000005,2.671190600000045],[96.17093090000009,2.669560100000069],[96.17257070000005,2.669452400000068],[96.17137730000007,2.668135100000029],[96.16385740000004,2.672061400000075],[96.16363240000004,2.67355370000007],[96.16557870000008,2.675051],[96.16306520000006,2.679323100000033],[96.15881690000003,2.67684],[96.16312440000007,2.672839500000066],[96.16401540000004,2.670791800000075],[96.16271330000006,2.668538400000045],[96.16674570000004,2.66857],[96.16731890000005,2.669796800000029],[96.16912060000004,2.666726200000028],[96.16909620000007,2.667706500000065],[96.17091410000006,2.667220500000042],[96.17020770000005,2.666104800000028],[96.17464930000006,2.66154750000004],[96.16918790000005,2.666369800000041],[96.17016990000008,2.663252800000066],[96.17158710000007,2.663568],[96.17383320000005,2.659941400000037],[96.17549230000009,2.661059200000068],[96.17522940000003,2.659766300000058],[96.17854980000004,2.658592400000032],[96.18117580000006,2.656014500000026],[96.18173390000004,2.651960300000042],[96.18386770000006,2.651141100000075],[96.18312430000003,2.64675],[96.18126310000008,2.646790300000021],[96.18307650000008,2.642137],[96.18163170000008,2.638747600000045],[96.18634140000006,2.628865500000074],[96.19291030000005,2.620235100000059],[96.19183130000005,2.617247],[96.18635130000007,2.620621400000061],[96.185378,2.619928500000071],[96.18699940000005,2.618127400000049],[96.184093,2.619947900000057],[96.18405780000006,2.615848],[96.18244470000008,2.613950500000044],[96.18128380000007,2.617913900000076],[96.17980460000007,2.615548800000056],[96.17800870000008,2.616168600000037],[96.17979210000004,2.621163600000045],[96.17905910000007,2.622642400000075],[96.177575,2.621827],[96.17568240000008,2.626011500000061],[96.17640160000008,2.631338400000061],[96.17555850000008,2.631871200000035],[96.175761,2.630467900000042],[96.17306280000008,2.628367400000059],[96.171286,2.630279500000029],[96.17327880000005,2.630796500000031],[96.17221350000005,2.631640700000048],[96.17280530000005,2.634449500000073],[96.17109640000007,2.63576020000005],[96.16904130000006,2.633393700000056],[96.16617330000008,2.63777650000003],[96.16370110000008,2.633693400000027],[96.16055420000004,2.634087300000033],[96.16123250000004,2.635737900000038],[96.15899510000008,2.637693200000058],[96.16223130000009,2.637054500000033],[96.162517,2.63805780000007],[96.16109510000007,2.639814700000045],[96.15947840000007,2.639499],[96.15821020000004,2.641857900000048],[96.15409090000009,2.641157700000065],[96.15505530000007,2.645749700000067],[96.15348040000003,2.646548200000041],[96.15487670000005,2.646328600000061],[96.15489570000005,2.64773230000003],[96.153256,2.648318500000073],[96.15242020000005,2.645142100000044],[96.14751050000007,2.641298500000062],[96.14804170000008,2.639829500000076],[96.14572370000008,2.637885400000073],[96.14619330000005,2.635992700000031],[96.14512710000008,2.637193400000058],[96.14386720000005,2.635898200000042],[96.14295360000006,2.638213200000052],[96.14520840000006,2.640401900000029],[96.14622930000007,2.639624500000025],[96.14491490000006,2.64280750000006],[96.14820670000006,2.646892500000035],[96.14609570000005,2.649605800000074],[96.14479420000004,2.647107400000039],[96.14228490000005,2.64961930000004],[96.14344790000007,2.654523700000027],[96.14030860000008,2.65157540000007],[96.141645,2.648481500000059],[96.13759610000005,2.646088100000043],[96.13652570000005,2.649115700000038],[96.13764510000004,2.653685800000062],[96.13567190000003,2.654282800000033],[96.13581360000006,2.650473200000022],[96.13350080000004,2.654255400000068],[96.13351070000004,2.649977600000057],[96.13222790000003,2.649016600000039],[96.13460380000004,2.646682700000042],[96.13331960000005,2.646345500000052],[96.13292860000007,2.642980300000033],[96.13111080000004,2.643421700000033],[96.13094370000005,2.648657100000037],[96.12928390000008,2.647851200000048],[96.12931050000003,2.645957400000043],[96.12711440000004,2.648847100000069],[96.12501110000005,2.646526700000038],[96.12334580000004,2.648104700000033],[96.12339630000008,2.645431200000075],[96.12769760000003,2.644015300000035],[96.12557040000007,2.644166300000052],[96.12646250000006,2.641606200000069],[96.12420970000005,2.638570800000025],[96.12371080000008,2.633935400000041],[96.12231570000006,2.633664800000076],[96.12053690000005,2.636423400000069],[96.11903490000003,2.63445930000006],[96.11759410000008,2.634812400000044],[96.117099,2.638153200000033],[96.11431160000006,2.636386600000037],[96.11386650000009,2.637276800000052],[96.11119230000008,2.63446330000005],[96.110899,2.636735100000067],[96.11478830000004,2.640999700000066],[96.11014010000008,2.639161900000033],[96.108133,2.635302800000034],[96.10564860000005,2.636656],[96.10699970000007,2.636770600000034],[96.10701520000003,2.639667],[96.10543970000003,2.640755],[96.10569610000005,2.644832800000074],[96.10219530000006,2.645025100000055],[96.10373440000006,2.650041600000066],[96.10269090000008,2.650997200000063],[96.09986420000007,2.647113900000022],[96.099306,2.648961800000052],[96.10061050000007,2.650078800000074],[96.09743720000006,2.652343900000062],[96.09820820000004,2.654217200000062],[96.10005220000005,2.651993600000026],[96.09860550000008,2.65486420000002],[96.09989410000009,2.653307700000028],[96.10114330000005,2.649634500000047],[96.10169530000007,2.650437900000043],[96.099336,2.655133300000045],[96.10220270000008,2.651374800000042],[96.10552510000008,2.65167230000003],[96.10574280000009,2.653343800000073],[96.10092490000005,2.65778830000005],[96.10096580000004,2.659258900000054],[96.10494980000004,2.660894700000028],[96.10295320000006,2.662026300000036],[96.10343030000007,2.666461],[96.10122860000007,2.669998300000032],[96.10249420000008,2.673405200000047],[96.09464150000008,2.673057200000073],[96.09283380000005,2.676777500000071],[96.096666,2.676983800000073],[96.09591850000004,2.67878550000006],[96.10099640000004,2.674565100000052],[96.10000210000004,2.679243100000065],[96.10410080000008,2.682838200000049],[96.10495850000007,2.685513800000024],[96.10753090000009,2.684495100000049],[96.10659670000007,2.686052400000051],[96.10863070000005,2.688920300000063],[96.11157220000007,2.690096900000071],[96.11229920000005,2.691836500000022],[96.116885,2.692003300000067],[96.119074,2.693857800000046],[96.12096040000006,2.692503200000033],[96.11976940000005,2.690205500000047],[96.11246580000005,2.686935300000073],[96.11523760000006,2.685917],[96.11844690000004,2.687328300000047],[96.121383,2.684947],[96.12951380000004,2.682475100000033],[96.13462970000006,2.683378400000038],[96.13602690000005,2.686566500000026],[96.14014620000006,2.689233300000069],[96.14554340000007,2.687303100000065],[96.14491770000006,2.689574300000061],[96.14682370000008,2.689356],[96.14764010000005,2.690806100000032],[96.14904890000008,2.68808880000006],[96.15165470000005,2.688944],[96.14816450000006,2.693948900000066],[96.14555650000005,2.691202300000043],[96.14509660000004,2.693347],[96.14254310000007,2.691262],[96.14184620000003,2.695605],[96.14561410000005,2.695012400000053],[96.14744450000006,2.698548900000048],[96.14639970000007,2.700138700000025],[96.14505320000006,2.697996600000067],[96.14524720000009,2.700473200000033],[96.14265260000008,2.701310700000022],[96.14293780000008,2.702514500000063],[96.14628460000006,2.701987700000075],[96.14772050000005,2.703818100000035],[96.14622760000003,2.707446300000072],[96.14674770000005,2.713013600000068],[96.14163490000004,2.710109100000068],[96.14169430000004,2.713117100000034],[96.14018930000003,2.71242280000007],[96.13899540000006,2.711372800000049],[96.14090580000004,2.709260700000073],[96.13511190000008,2.704568100000074],[96.13482910000005,2.702339400000028],[96.12871710000007,2.701010300000064],[96.12731040000006,2.705663500000071],[96.12190320000008,2.706118500000059],[96.12164860000007,2.710752100000036],[96.11586320000004,2.711896900000056],[96.11536840000008,2.714970300000061],[96.11435320000004,2.713319100000035],[96.11259980000005,2.714607200000046],[96.11381650000004,2.71541220000006],[96.11189760000008,2.721088900000041],[96.11289180000006,2.724594800000034],[96.11021020000004,2.725897100000054],[96.11309450000005,2.727057400000035],[96.11235870000007,2.730095700000049],[96.11551540000005,2.728732800000046],[96.11478950000009,2.72751820000002],[96.11688950000007,2.727770100000043],[96.12591230000004,2.723754100000065],[96.12805120000007,2.724215600000036],[96.13207640000007,2.719855800000062],[96.13001010000005,2.72696650000006],[96.12889180000008,2.725801600000068],[96.12587250000007,2.726323400000069],[96.12471590000007,2.728335],[96.12638580000004,2.727162900000053],[96.12778370000007,2.728607300000021],[96.13182510000007,2.727942700000028],[96.13190060000005,2.731076200000075],[96.12657750000005,2.729404600000066],[96.12504950000005,2.73155730000002],[96.12226770000007,2.728476600000022],[96.12184440000004,2.732126300000061],[96.12347480000005,2.73361680000005],[96.12142750000004,2.732641200000046],[96.11999350000008,2.73521420000003],[96.12035550000007,2.731429500000047],[96.11942610000006,2.731478600000059],[96.11826880000007,2.73321],[96.11943870000005,2.736336700000038],[96.118234,2.737741300000039],[96.11418060000005,2.73850740000006],[96.11826530000008,2.736581500000057],[96.11617330000007,2.736306700000057],[96.10833420000006,2.742072900000039],[96.10546820000008,2.741325600000039],[96.098602,2.746888600000034],[96.09126160000005,2.75004720000004],[96.08917820000005,2.745143900000073],[96.08696760000004,2.74525970000002],[96.09071390000008,2.739456100000041],[96.08987110000004,2.737029100000029],[96.08829160000005,2.737266800000043],[96.08888430000007,2.732462400000031],[96.08775390000005,2.733811700000047],[96.08423540000007,2.732371200000046],[96.08090890000005,2.740612100000021],[96.08148090000003,2.744532],[96.08433480000008,2.748778200000061],[96.08678340000006,2.749702300000024],[96.08735410000008,2.752956700000027],[96.08573140000004,2.754816500000061],[96.09419050000008,2.755074700000023],[96.09725240000006,2.753321100000051],[96.09883580000007,2.754268500000023],[96.10296390000008,2.750766100000021],[96.10293660000008,2.752882600000021],[96.09882280000005,2.756770300000028],[96.08532880000007,2.758694900000023],[96.07543510000005,2.756938300000058],[96.06362930000006,2.761065],[96.05560920000005,2.761417900000026],[96.04471950000004,2.760085600000025],[96.04467770000008,2.758221100000071],[96.04212360000008,2.760125800000026],[96.03690580000006,2.759947900000043],[96.03270890000005,2.758761400000026],[96.03295510000004,2.756374],[96.02674120000006,2.757477],[96.02353570000008,2.760358800000063],[96.01936270000004,2.760907600000053],[96.00845730000003,2.76596040000004],[96.00566830000008,2.769122700000025],[96.00895680000008,2.770109900000023],[96.00611970000006,2.773924600000043],[96.00522670000004,2.778816200000051],[96.00164720000004,2.782955300000026],[95.99732870000008,2.786020400000041],[95.98699180000006,2.786180300000069],[95.97882070000009,2.791379300000074],[95.97476410000007,2.800736900000061],[95.97455310000004,2.810710300000039],[95.972323,2.812708600000065],[95.96013470000008,2.811884500000076],[95.95683930000007,2.813600300000076],[95.95506160000008,2.81988750000005],[95.95371530000006,2.820676300000059],[95.95288480000005,2.819229300000075],[95.95135250000004,2.820250600000065],[95.95056880000004,2.818617300000028],[95.94954680000006,2.819500100000027],[95.95069970000009,2.821740300000044],[95.94398220000005,2.820417600000042],[95.93873360000003,2.824598200000025],[95.93168980000007,2.824020300000029],[95.930799,2.827886200000023],[95.92704030000004,2.829507300000046],[95.923036,2.836394200000029],[95.91480830000006,2.845273700000064],[95.91226040000004,2.844754200000068],[95.910145,2.83845690000004],[95.90740540000007,2.840313700000024],[95.90638750000005,2.839658500000041],[95.90616040000003,2.837886900000058],[95.90950230000004,2.836124900000073],[95.91001710000006,2.834262100000046],[95.90836360000009,2.828571900000043],[95.90470090000008,2.82898160000002],[95.90510960000006,2.83215180000002],[95.90056990000005,2.831207500000062],[95.899508,2.829620100000056],[95.90233780000005,2.82869560000006],[95.902159,2.826225100000045],[95.89910680000008,2.823653700000023],[95.89765880000004,2.82784410000005],[95.893715,2.829371500000036],[95.89042940000007,2.827451800000063],[95.88717960000008,2.829447],[95.88504970000008,2.828649],[95.88463740000003,2.826830400000063],[95.88238060000003,2.827499800000055],[95.88218320000004,2.825984900000037],[95.880654,2.825887600000044],[95.87898220000005,2.827094700000032],[95.87976080000004,2.830592100000047],[95.88172470000006,2.831420300000048],[95.88277750000003,2.829062300000032],[95.88420550000006,2.832375],[95.88601330000006,2.832286700000054],[95.88600310000004,2.836108200000069],[95.88400710000008,2.837221300000067],[95.88392150000004,2.834564600000022],[95.88270830000005,2.837590600000055],[95.88548580000008,2.838903],[95.88537890000003,2.844168900000057],[95.87383150000005,2.846560900000043],[95.87377840000005,2.849077300000033],[95.87567820000004,2.849268900000027],[95.87385750000004,2.85411060000007],[95.87010950000007,2.851770200000033],[95.86988130000003,2.850464700000032],[95.87210870000007,2.849492200000043],[95.86863040000009,2.850274900000045],[95.87123450000007,2.847113],[95.86450990000009,2.848585900000046],[95.86395050000004,2.849796100000049],[95.86682370000005,2.84994370000004],[95.86917750000003,2.853631800000073],[95.86387930000006,2.85893],[95.87013780000007,2.861010800000031],[95.87067660000008,2.864867200000049],[95.88102620000006,2.859815800000035],[95.88166910000007,2.862054500000056],[95.87934440000004,2.864704600000039],[95.87679540000005,2.864604400000076],[95.87576980000006,2.866791900000067],[95.87191960000007,2.867946400000051],[95.87057,2.869946600000048],[95.87468890000008,2.87224150000003],[95.87700860000007,2.871455600000047],[95.87432250000006,2.870656],[95.87427930000007,2.869490800000051],[95.87766620000008,2.868241800000021],[95.87816860000004,2.870992800000067],[95.88150060000004,2.872912700000029],[95.89130350000005,2.864457600000037],[95.89470250000005,2.858734600000048],[95.90351540000006,2.856381800000065],[95.90659320000003,2.849399400000038],[95.910492,2.847405900000069],[95.91155170000008,2.849785600000075],[95.90987270000005,2.853695900000048],[95.911077,2.85397880000005],[95.91323830000005,2.860416100000066],[95.91219950000004,2.867543800000021],[95.91576960000003,2.867134],[95.91627360000007,2.86932580000007],[95.91300960000007,2.876540700000021],[95.910408,2.878724],[95.90336110000004,2.89636790000003],[95.89417480000009,2.899511600000039],[95.88994870000005,2.902436],[95.88160310000006,2.90329840000004],[95.878213,2.905619100000024],[95.87457950000004,2.91218],[95.87067890000009,2.914732300000026],[95.86054160000003,2.909810700000037],[95.85900620000007,2.911903500000051],[95.85283470000007,2.91435610000002],[95.83671020000008,2.9124],[95.83286080000005,2.913227900000038],[95.83213350000005,2.908146300000055],[95.83408470000006,2.906520800000067],[95.83394850000008,2.905495200000075],[95.83237090000006,2.906096600000069],[95.83200870000007,2.903019900000061],[95.83609660000008,2.899722700000041],[95.834708,2.899066400000038],[95.83684520000008,2.897208300000045],[95.834296,2.89720120000004],[95.83803940000007,2.890213200000062],[95.83696490000005,2.887469],[95.83984810000004,2.884028500000056],[95.83808560000006,2.884489600000052],[95.83204940000007,2.888387200000068],[95.83222610000007,2.89151],[95.83362370000003,2.888950800000032],[95.836358,2.889051700000039],[95.83574420000008,2.893104300000061],[95.82695340000004,2.904170600000043],[95.82449670000005,2.904256900000064],[95.824273,2.901367],[95.82191430000006,2.899542900000029],[95.82221940000005,2.906440700000076],[95.82420410000003,2.909428800000057],[95.820912,2.909885400000064],[95.81720930000006,2.908010900000022],[95.81715790000004,2.909828200000049],[95.81919570000008,2.910393200000044],[95.81742640000004,2.913230800000065],[95.81654340000006,2.914067100000068],[95.81409170000006,2.912382500000035],[95.81668210000004,2.914207300000044],[95.81107170000007,2.914983500000062],[95.81038170000005,2.913117500000055],[95.80810350000007,2.915627500000028],[95.80676010000008,2.915390600000023],[95.80881060000007,2.911435500000039],[95.80603120000006,2.910868300000061],[95.80481910000003,2.913381300000026],[95.80200960000008,2.90708230000007],[95.801208,2.911926400000027],[95.80296580000004,2.913143],[95.798888,2.912851800000055],[95.79790580000008,2.915971100000036],[95.799671,2.914578200000051],[95.80573760000004,2.91636630000005],[95.80461830000007,2.918832900000041],[95.80091290000007,2.917936900000029],[95.80202330000009,2.918639100000064],[95.801641,2.922692200000029],[95.80525890000007,2.921770500000036],[95.80514330000005,2.929832]]],[[[95.76351160000007,2.928964],[95.76267240000004,2.93146],[95.76108980000004,2.930998],[95.76097530000004,2.928778400000056],[95.76351160000007,2.928964]]],[[[95.40181650000005,2.966938800000037],[95.40643130000007,2.975887900000032],[95.40211540000007,2.977652300000045],[95.39674850000006,2.987523700000054],[95.390849,2.989359],[95.38908370000007,2.986640200000068],[95.39494730000007,2.978037500000028],[95.39731440000008,2.96759510000004],[95.40043510000004,2.965648700000031],[95.40181650000005,2.966938800000037]]],[[[95.40504290000007,3.013483],[95.41253920000008,3.017159100000072],[95.41283310000006,3.018522800000028],[95.40988030000005,3.020673500000044],[95.40624280000009,3.020194300000071],[95.40321170000004,3.016719800000033],[95.40341760000007,3.01425560000007],[95.40504290000007,3.013483]]]]},"properties":{"shapeName":"Simeulue","shapeISO":"","shapeID":"22746128B42167813718662","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[120.39205060000006,-5.125885499999981],[120.39520590000006,-5.124933],[120.3965022000001,-5.122262],[120.39502730000004,-5.118801099999928],[120.39157440000008,-5.1159436],[120.38758570000005,-5.122015899999951],[120.39205060000006,-5.125885499999981]]],[[[120.41257280000002,-5.112951099999975],[120.41412030000004,-5.111774399999945],[120.41425880000008,-5.108579899999938],[120.41113150000001,-5.111484299999972],[120.41257280000002,-5.112951099999975]]],[[[120.42010860000005,-5.101986099999976],[120.4218800000001,-5.095433499999956],[120.4208599000001,-5.093511],[120.4190886,-5.094645499999956],[120.4178763000001,-5.098551099999952],[120.41847360000008,-5.101313199999936],[120.42010860000005,-5.101986099999976]]],[[[120.39943170000004,-5.070394],[120.40140510000003,-5.068047],[120.3992091,-5.066595599999971],[120.39814500000011,-5.067949899999974],[120.39943170000004,-5.070394]]],[[[120.4264429000001,-5.073969599999941],[120.42631580000011,-5.067938599999934],[120.42405620000011,-5.066484699999933],[120.4226397000001,-5.068603199999927],[120.42540140000006,-5.071655299999975],[120.4249635000001,-5.073912499999949],[120.4264429000001,-5.073969599999941]]],[[[119.95511780000004,-5.355242],[119.95501660000002,-5.351653],[119.95824930000003,-5.343461],[119.96231890000001,-5.341562199999942],[119.969142,-5.341511099999934],[119.98522680000008,-5.330429199999969],[119.98833450000006,-5.330043699999976],[119.99515780000002,-5.322882399999969],[119.99789790000011,-5.322074099999952],[120.00537020000002,-5.322541699999931],[120.00795180000011,-5.324740599999927],[120.01205520000008,-5.325347699999952],[120.0127089,-5.328787899999952],[120.01678040000002,-5.333040599999947],[120.01757260000011,-5.3363505],[120.0203553,-5.338249699999949],[120.03305840000007,-5.339511],[120.03320340000005,-5.341309],[120.0369928,-5.342343699999958],[120.03739030000008,-5.345881299999974],[120.03974110000001,-5.3469528],[120.05470570000011,-5.339458],[120.05689380000001,-5.335749799999974],[120.06149330000005,-5.333084799999938],[120.06780770000012,-5.333358799999928],[120.07336140000007,-5.335511099999962],[120.07435050000004,-5.3332327],[120.07671620000008,-5.332842299999925],[120.08163950000005,-5.323995399999944],[120.08945970000002,-5.321143699999936],[120.09715860000006,-5.322297399999968],[120.09828470000002,-5.321173699999974],[120.0979976000001,-5.3168106],[120.1023752000001,-5.317040599999928],[120.10566380000012,-5.3137813],[120.10766310000008,-5.316175],[120.1142827000001,-5.313514299999952],[120.115567,-5.314638899999977],[120.11756690000004,-5.312236499999926],[120.12159380000003,-5.310665599999936],[120.12486310000008,-5.311855799999933],[120.12509160000002,-5.306697499999927],[120.13015260000009,-5.307707],[120.13005870000006,-5.304902899999945],[120.1329009000001,-5.300884199999928],[120.1349206000001,-5.300364599999966],[120.1361151000001,-5.294455399999947],[120.14048260000004,-5.289902899999959],[120.14045370000008,-5.288339899999926],[120.15013780000004,-5.299673399999961],[120.16081550000001,-5.303662],[120.16914910000003,-5.311344599999927],[120.17412960000001,-5.310985099999925],[120.17647430000011,-5.312826899999948],[120.18970740000009,-5.3065139],[120.19644630000005,-5.305613799999946],[120.20237820000011,-5.3006277],[120.21409040000003,-5.303216599999928],[120.2216734000001,-5.303304199999957],[120.22377590000008,-5.3010723],[120.22278510000001,-5.300126499999976],[120.22615640000004,-5.299573499999951],[120.23019130000012,-5.296592399999952],[120.231018,-5.297681499999953],[120.23732380000001,-5.296781399999929],[120.23911150000004,-5.2983751],[120.24192260000007,-5.2971077],[120.24650840000004,-5.299364599999933],[120.24582960000009,-5.301066099999957],[120.25197820000005,-5.302012],[120.254479,-5.302159299999971],[120.25486240000009,-5.3003272],[120.25813750000009,-5.298896599999978],[120.25803610000003,-5.297158699999954],[120.26004530000012,-5.296692],[120.26208550000001,-5.298243499999955],[120.27032070000007,-5.297228299999972],[120.2722447000001,-5.299485599999969],[120.27555830000006,-5.298776099999941],[120.277442,-5.301203599999951],[120.27850330000001,-5.297555],[120.277181,-5.2967461],[120.2793521000001,-5.295248099999981],[120.28129720000004,-5.296924499999932],[120.28049850000002,-5.294053499999961],[120.28322860000003,-5.292836899999941],[120.28156,-5.290072499999951],[120.28491010000005,-5.290309299999933],[120.28571550000004,-5.287399799999946],[120.28883650000012,-5.286556],[120.29111870000008,-5.289115399999957],[120.29184930000008,-5.2866832],[120.2947127000001,-5.289925],[120.29889490000005,-5.288076499999931],[120.29785980000008,-5.290640699999926],[120.30170510000005,-5.291510499999958],[120.30151160000003,-5.295226499999956],[120.3029017,-5.296320399999956],[120.30121560000009,-5.298928899999964],[120.30220720000011,-5.300930599999958],[120.30490140000006,-5.301560099999961],[120.30822770000009,-5.297374699999978],[120.30629490000001,-5.29539],[120.3066794,-5.294057099999975],[120.31155510000008,-5.295329799999934],[120.313205,-5.297457699999939],[120.316172,-5.295008099999961],[120.31858310000007,-5.294942499999934],[120.3209230000001,-5.2901906],[120.32557480000003,-5.290760699999964],[120.32857510000008,-5.288645299999928],[120.33234880000009,-5.290028599999971],[120.33424,-5.287667399999975],[120.33049340000002,-5.274908299999936],[120.32734890000006,-5.270082299999956],[120.32778930000006,-5.265395399999932],[120.3244347000001,-5.251145399999928],[120.3178306000001,-5.236949399999958],[120.31396540000003,-5.232915399999968],[120.3151749000001,-5.227328399999976],[120.31243280000001,-5.226550199999963],[120.313377,-5.224840799999981],[120.3111824,-5.217042499999934],[120.30719720000002,-5.211322399999972],[120.29462480000007,-5.20135],[120.28452740000012,-5.185113],[120.28145440000003,-5.176054299999976],[120.27775720000011,-5.171496599999955],[120.27737960000002,-5.160651899999948],[120.27540280000005,-5.152854],[120.2765429000001,-5.1500483],[120.27304660000004,-5.147814699999969],[120.270702,-5.142969099999959],[120.27431780000006,-5.1395147],[120.27356710000004,-5.135325499999965],[120.27549970000007,-5.135236199999952],[120.28352650000011,-5.124013599999955],[120.28661950000003,-5.122052699999927],[120.28969890000008,-5.115146899999957],[120.28680860000009,-5.112579399999959],[120.27348,-5.107916499999931],[120.26508290000004,-5.101336499999945],[120.26335960000006,-5.1049962],[120.26549970000008,-5.114120899999932],[120.26235670000005,-5.116573199999948],[120.25953840000011,-5.115928599999961],[120.25748460000011,-5.112925399999938],[120.25705130000006,-5.108794499999931],[120.25487260000011,-5.106995599999948],[120.24975110000003,-5.096867299999928],[120.250186,-5.095072],[120.24800990000006,-5.093190799999945],[120.24095000000011,-5.092660799999976],[120.23198700000012,-5.0874315],[120.23197790000006,-5.0920778],[120.22812040000008,-5.096298499999932],[120.22530830000005,-5.092580899999973],[120.22069650000003,-5.093899199999953],[120.221082,-5.097317099999941],[120.2166883000001,-5.099914199999944],[120.21397,-5.098310799999979],[120.21151550000002,-5.099707199999955],[120.2097649000001,-5.097808499999928],[120.20680420000008,-5.100025699999946],[120.20152270000006,-5.096332899999936],[120.1977250000001,-5.089852599999972],[120.19541450000008,-5.090311],[120.19551790000003,-5.084869099999935],[120.19381450000003,-5.082063499999947],[120.1951580000001,-5.080051499999968],[120.19185830000004,-5.078632199999959],[120.189406,-5.080734599999971],[120.1882862000001,-5.080061899999976],[120.18830320000006,-5.077907099999948],[120.19089450000001,-5.075573399999939],[120.19056010000008,-5.073821199999941],[120.187871,-5.074640899999963],[120.18841290000012,-5.069338799999969],[120.18589630000008,-5.068963199999928],[120.18411340000011,-5.071252199999947],[120.18093050000004,-5.069219399999952],[120.17456530000004,-5.0761769],[120.16847210000003,-5.074346499999933],[120.16402960000005,-5.078436199999942],[120.15976740000008,-5.073448499999927],[120.16196840000009,-5.0700025],[120.16146950000007,-5.065566799999942],[120.15911910000011,-5.063014599999974],[120.15537730000005,-5.063307899999927],[120.15134770000009,-5.065644199999952],[120.15022390000001,-5.064964499999974],[120.1517804,-5.060544599999957],[120.15093130000002,-5.057926],[120.14679210000008,-5.060557399999936],[120.14221920000011,-5.059599699999978],[120.1407355,-5.057311599999935],[120.1373311000001,-5.057146599999953],[120.13851220000004,-5.054069799999979],[120.13279440000008,-5.0483987],[120.13327320000008,-5.046067],[120.13142440000001,-5.044324299999971],[120.12470180000003,-5.045444099999941],[120.1251271000001,-5.048058499999968],[120.11961170000006,-5.058825],[120.11588610000001,-5.058460599999933],[120.10939330000008,-5.062799],[120.10925490000011,-5.067107799999974],[120.10614410000005,-5.071323699999937],[120.09659180000006,-5.075957699999947],[120.08537110000009,-5.075177199999928],[120.081423,-5.078052],[120.079624,-5.083113099999935],[120.07677780000006,-5.084424299999966],[120.07652750000011,-5.090514699999972],[120.07273180000004,-5.092601399999978],[120.07196440000007,-5.098690599999941],[120.06403520000003,-5.0996881],[120.06518810000011,-5.104356],[120.060908,-5.111074499999972],[120.0608734000001,-5.122623499999975],[120.05556970000009,-5.125867199999959],[120.05228000000011,-5.126875699999971],[120.04849270000011,-5.125483299999928],[120.04633320000005,-5.126843299999962],[120.03916,-5.126328399999977],[120.03184570000008,-5.1291229],[120.02719890000003,-5.127538299999969],[120.0244752000001,-5.128880799999934],[120.023696,-5.130946],[120.02145330000008,-5.129987],[120.018843,-5.131700399999943],[120.0147022000001,-5.124254699999938],[120.01109740000004,-5.1226207],[120.00001440000005,-5.1326796],[119.99460510000006,-5.130191899999943],[119.98739250000006,-5.1302438],[119.98410220000005,-5.123636899999951],[119.98234390000005,-5.123021699999981],[119.969601,-5.133154599999955],[119.96901050000008,-5.136129699999969],[119.97049120000008,-5.139546099999961],[119.972719,-5.141962899999953],[119.97491220000006,-5.150505799999962],[119.97219040000004,-5.157716899999969],[119.9767753000001,-5.163554],[119.98602830000004,-5.167468099999951],[119.99935440000002,-5.164928799999927],[120.00352040000007,-5.165404299999977],[120.00926190000007,-5.170754399999964],[120.02026770000009,-5.17662],[120.02146770000002,-5.182624499999974],[120.02700830000003,-5.183756399999936],[120.02929060000008,-5.1857102],[120.03265520000002,-5.184587499999964],[120.02888310000003,-5.192861499999935],[120.02504720000002,-5.1934646],[120.02683760000002,-5.197334599999976],[120.0260211000001,-5.200431],[120.02307610000003,-5.197653],[120.01473180000005,-5.199903499999948],[120.01048970000011,-5.1975843],[120.00648400000011,-5.198596699999939],[120.0039230000001,-5.19669],[120.0029085000001,-5.197793599999954],[120.00413050000009,-5.200399199999936],[120.001361,-5.198636299999976],[119.99983050000003,-5.199985899999945],[119.99720330000002,-5.199445499999968],[119.9954222,-5.201613399999928],[119.99719470000002,-5.203077699999938],[119.99481290000006,-5.203891],[119.99484270000005,-5.206312599999933],[119.99186,-5.2058781],[119.993184,-5.216473699999938],[119.99455660000001,-5.218964799999981],[119.99627770000006,-5.217867],[119.99720420000006,-5.218878],[119.99633310000002,-5.224926299999936],[119.99797030000002,-5.229967199999976],[119.99160110000003,-5.237142799999958],[119.98763540000004,-5.239097],[119.9862121000001,-5.2439453],[119.9807154,-5.247599599999944],[119.97604,-5.2570027],[119.97646440000005,-5.266129499999977],[119.97305440000002,-5.270453],[119.97410490000004,-5.276967099999979],[119.96942920000004,-5.278893],[119.96603850000008,-5.282248399999958],[119.96330160000002,-5.281757199999959],[119.95433680000008,-5.2904196],[119.94527660000006,-5.3071179],[119.94494320000001,-5.3131511],[119.94103380000001,-5.316846899999973],[119.93780110000012,-5.324758699999961],[119.92908810000006,-5.3382441],[119.93323220000002,-5.352970399999947],[119.93675710000002,-5.356290199999933],[119.94123020000006,-5.3547798],[119.95511780000004,-5.355242]]],[[[120.42437070000005,-5.049275399999942],[120.42238120000002,-5.043364199999928],[120.41985430000011,-5.043065299999967],[120.41708190000008,-5.048734399999944],[120.41258940000012,-5.049625299999946],[120.41215450000004,-5.052472199999954],[120.41967590000002,-5.054680599999926],[120.42405250000002,-5.0585843],[120.42782050000005,-5.058616],[120.42440020000004,-5.052338299999974],[120.42437070000005,-5.049275399999942]]],[[[120.39667950000012,-5.040356199999962],[120.39547090000008,-5.042110899999955],[120.39624350000008,-5.046991399999968],[120.39862960000005,-5.042816],[120.39667950000012,-5.040356199999962]]],[[[120.392451,-5.041488399999935],[120.3938581000001,-5.040648399999952],[120.39334740000004,-5.038236599999948],[120.39001170000006,-5.040751799999953],[120.392451,-5.041488399999935]]]]},"properties":{"shapeName":"Sinjai","shapeISO":"","shapeID":"22746128B50140317635593","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[113.26548280000009,-0.420019699999955],[113.25749260000009,-0.408273699999938],[113.26209310000002,-0.398433099999977],[113.26231430000007,-0.391658499999949],[113.24207290000004,-0.375595799999928],[113.24023420000003,-0.370594],[113.236862,-0.367609199999947],[113.2304610000001,-0.364353],[113.22467030000007,-0.351491199999941],[113.21969590000003,-0.347999799999968],[113.20861040000011,-0.344915399999934],[113.20655810000005,-0.342907399999945],[113.20774830000005,-0.339226199999928],[113.22058090000007,-0.333799499999941],[113.22753890000001,-0.328381799999931],[113.22871380000004,-0.316207499999962],[113.23236070000007,-0.309071199999948],[113.23541250000005,-0.295675899999935],[113.25000000000011,-0.2846441],[113.25748470000008,-0.276970399999925],[113.26250490000007,-0.274546499999929],[113.26998170000002,-0.274130599999978],[113.2746585000001,-0.270675499999925],[113.279259,-0.2548289],[113.287575,-0.244852799999933],[113.2917407000001,-0.241795699999955],[113.29750080000008,-0.240176799999972],[113.3236544,-0.237934],[113.33608270000002,-0.227686399999925],[113.352524,-0.223752199999979],[113.3596956,-0.213043199999959],[113.36842360000003,-0.204749299999946],[113.3749696000001,-0.194573899999966],[113.38443770000003,-0.189264699999967],[113.38711560000002,-0.185176599999977],[113.38824480000005,-0.179433099999926],[113.38588730000004,-0.169212499999958],[113.3883363000001,-0.1665081],[113.39643870000009,-0.163731499999926],[113.40637980000008,-0.165441099999953],[113.41407780000009,-0.159272599999952],[113.421074,-0.145180899999957],[113.42073070000004,-0.141508699999974],[113.40010840000002,-0.135692699999936],[113.397194,-0.133105799999953],[113.39746860000002,-0.126955399999929],[113.40202340000008,-0.122532499999977],[113.41407020000008,-0.121863399999938],[113.42091370000003,-0.117268699999954],[113.42261510000003,-0.112086],[113.42310340000006,-0.096348099999943],[113.42544550000002,-0.091852899999935],[113.43997950000005,-0.0758619],[113.44144430000006,-0.068327599999975],[113.44001,-0.0621319],[113.43652340000006,-0.057591399999978],[113.431549,-0.055185399999971],[113.4205856000001,-0.054172199999925],[113.4174422000001,-0.048844799999927],[113.41736590000005,-0.043264099999931],[113.41896050000003,-0.0391216],[113.42688740000006,-0.031931099999952],[113.42967980000003,-0.027499199999966],[113.42754350000007,-0.012973299999942],[113.44022350000012,0.014385700000048],[113.43827040000008,0.019043700000054],[113.4183882000001,0.035587],[113.41255170000011,0.044143400000053],[113.41049180000005,0.049841700000059],[113.41036210000004,0.057972900000038],[113.41545850000011,0.083551500000056],[113.411209,0.099371],[113.41325360000008,0.10618160000007],[113.42121870000005,0.116094600000054],[113.42069230000004,0.12238080000003],[113.40834790000008,0.136572200000046],[113.39012890000004,0.148511600000063],[113.37870770000006,0.154698400000029],[113.3508528000001,0.164250100000061],[113.32508830000006,0.179744300000038],[113.31857290000005,0.186003400000061],[113.30679310000005,0.204871],[113.29141980000009,0.221586],[113.27228530000002,0.233118400000023],[113.27013380000005,0.238056900000061],[113.27147890000003,0.240828600000043],[113.25675150000006,0.245018800000025],[113.20483350000006,0.25418940000003],[113.17760410000005,0.261112400000059],[113.1678538000001,0.262010700000076],[113.15264840000009,0.257397800000035],[113.13670290000005,0.242832300000032],[113.13014930000008,0.24188730000003],[113.12330570000006,0.243592900000067],[113.11103,0.249031600000023],[113.10216460000004,0.257881700000041],[113.10096680000004,0.262069300000064],[113.10394990000009,0.278624700000023],[113.10095920000003,0.285307800000055],[113.09815920000005,0.287250100000051],[113.0873712,0.289351500000066],[113.08206120000011,0.291816500000039],[113.07501160000004,0.299744900000064],[113.06880890000002,0.311480900000049],[113.06491030000007,0.315955200000076],[113.06159910000008,0.317563700000051],[113.05738010000005,0.317379200000062],[113.03599480000003,0.308790400000021],[113.01216060000002,0.308367200000021],[113.00174650000008,0.298854400000039],[112.99117980000005,0.296938300000022],[112.9859689000001,0.292602500000044],[112.97865230000002,0.28088450000007],[112.96946650000007,0.270594200000062],[112.96188290000009,0.256740400000069],[112.96176080000009,0.247279700000036],[112.9700616,0.224788300000057],[112.96591880000005,0.205861500000026],[112.96043330000009,0.200358200000039],[112.94858480000005,0.199888800000053],[112.92278220000003,0.205905400000063],[112.89203570000006,0.209195700000066],[112.85817640000005,0.21004970000007],[112.84468,0.215774900000042],[112.81877820000011,0.233250300000066],[112.80862350000007,0.237367500000062],[112.79360120000001,0.241010200000062],[112.78790970000011,0.240463700000021],[112.77922740000008,0.237192500000049],[112.75463020000007,0.218722700000058],[112.74787820000006,0.216746300000068],[112.73732670000004,0.216819800000053],[112.72155680000003,0.224089400000025],[112.7017661000001,0.23790340000005],[112.69149690000006,0.240927400000032],[112.68316560000005,0.241023200000029],[112.6770163000001,0.238920300000075],[112.6608801000001,0.227674900000068],[112.63874730000009,0.21636060000003],[112.63052280000011,0.209235800000044],[112.62764650000008,0.202594200000021],[112.6280508000001,0.198966800000051],[112.64484310000012,0.180692300000032],[112.64858920000006,0.171656200000029],[112.646308,0.166806800000074],[112.64045620000002,0.161314100000027],[112.61913210000012,0.148108700000023],[112.61428740000008,0.14756310000007],[112.60636810000005,0.152487500000063],[112.58894740000005,0.181434],[112.58215330000007,0.187956100000065],[112.5749588000001,0.201233],[112.56798550000008,0.202874800000075],[112.54685210000002,0.19143710000003],[112.54286960000002,0.181242700000041],[112.54113010000003,0.179750800000022],[112.535408,0.179502200000059],[112.52170160000003,0.183711100000039],[112.51769920000004,0.179361],[112.50685020000003,0.15921910000003],[112.50504200000012,0.152680500000031],[112.5065221000001,0.143059600000072],[112.51496020000002,0.12880750000005],[112.51505940000004,0.121211900000048],[112.51332750000006,0.119162700000061],[112.49970140000005,0.121129900000028],[112.4736775,0.131106100000068],[112.46550650000006,0.132302700000025],[112.42280470000003,0.144406700000047],[112.41757860000007,0.142871900000046],[112.40401350000002,0.131905600000039],[112.39774210000007,0.128604700000039],[112.3722676000001,0.121011800000019],[112.34760930000004,0.117158800000027],[112.33701970000004,0.11634250000003],[112.33438,0.117621800000052],[112.32826120000004,0.116025400000069],[112.31757240000002,0.117063900000062],[112.29767490000006,0.121153700000036],[112.27998230000003,0.127671],[112.27278020000006,0.128216100000031],[112.25916170000005,0.122743800000023],[112.2496784000001,0.112588600000038],[112.24354430000005,0.10916990000004],[112.23298650000004,0.107566],[112.21639890000006,0.109938500000055],[112.2054736,0.105283600000064],[112.18891780000001,0.093147200000033],[112.17093530000011,0.089835100000073],[112.15773650000006,0.082072800000049],[112.14975630000004,0.079720500000064],[112.1384799000001,0.083510900000022],[112.1234194000001,0.080907400000058],[112.12084070000003,0.081637900000032],[112.11733120000008,0.085409],[112.11315020000006,0.094047900000021],[112.11037310000006,0.107287500000041],[112.10675680000008,0.115121200000033],[112.09248980000007,0.127008300000057],[112.09147510000003,0.133116900000061],[112.09559500000012,0.154886600000054],[112.08950670000002,0.170165300000065],[112.0849138000001,0.173129],[112.05209980000006,0.18596290000005],[112.02740340000003,0.202632700000038],[112.0102601000001,0.211717700000065],[111.99863290000008,0.214184600000067],[111.995337,0.213247800000033],[111.98657090000006,0.207575800000029],[111.97648480000004,0.195702100000062],[111.96942,0.189614200000051],[111.95744940000009,0.185366100000067],[111.91885230000008,0.182647400000064],[111.910721,0.17969080000006],[111.89764490000005,0.178732],[111.88575750000007,0.178495300000066],[111.87173050000007,0.180410800000061],[111.86150380000004,0.185869900000057],[111.85761190000005,0.192027600000074],[111.85094070000008,0.213485900000023],[111.84267430000006,0.224445100000025],[111.83650210000008,0.228500500000052],[111.82521820000005,0.230969],[111.81739430000005,0.229907900000057],[111.80775640000007,0.230841500000054],[111.78421780000008,0.237187],[111.76345890000005,0.23868090000002],[111.73102340000008,0.246519800000044],[111.69382480000007,0.261095800000021],[111.68183140000008,0.267731500000025],[111.67391970000006,0.277174700000046],[111.66540530000009,0.293076300000052],[111.65169360000004,0.336605300000031],[111.65280750000005,0.345142800000076],[111.65550830000006,0.352724200000068],[111.66173390000006,0.361594400000058],[111.67059920000008,0.368288300000074],[111.67960190000008,0.371951100000047],[111.68727870000004,0.378245600000071],[111.698555,0.409864800000037],[111.71037290000004,0.428723],[111.713768,0.444615300000066],[111.72953640000009,0.471695900000043],[111.73143610000005,0.479835],[111.72939140000005,0.499136400000054],[111.72368460000007,0.515657],[111.71203450000007,0.541037700000061],[111.71016530000009,0.54749860000004],[111.71011950000008,0.554387400000053],[111.71245360000006,0.560238100000049],[111.71632220000004,0.564581700000076],[111.73234560000009,0.569717800000035],[111.73771670000008,0.572890800000039],[111.74086,0.57834820000005],[111.73944850000004,0.591347600000063],[111.73455050000007,0.597063200000036],[111.72616580000005,0.602801100000022],[111.72187040000006,0.604161300000044],[111.71918490000007,0.602981700000043],[111.69924160000005,0.610578400000065],[111.69229130000008,0.616155],[111.687767,0.626028700000063],[111.696579,0.64190080000003],[111.71726990000008,0.666742200000044],[111.71815490000006,0.675544900000034],[111.71565250000003,0.685635400000024],[111.71670530000006,0.69835930000005],[111.72567750000007,0.716099900000074],[111.72650910000004,0.726527300000043],[111.72926330000007,0.730135700000062],[111.74489440000008,0.737203900000054],[111.74894560000007,0.74431960000004],[111.748436,0.750037600000041],[111.73922730000004,0.767742300000066],[111.72662350000007,0.78100610000007],[111.70095060000006,0.799798500000065],[111.67771910000005,0.811936],[111.67563630000006,0.815772200000026],[111.67248370000004,0.831502200000045],[111.66821130000005,0.840574500000059],[111.66428210000004,0.845418900000027],[111.65653060000005,0.85177630000004],[111.63811330000004,0.860963],[111.63709090000009,0.882735900000057],[111.62772830000006,0.907347800000025],[111.62920230000009,0.9177],[111.62341310000005,0.924875100000065],[111.61467740000006,0.92964390000003],[111.605668,0.931132800000057],[111.59587170000009,0.926982800000076],[111.58452810000006,0.918854300000021],[111.56679530000008,0.916453500000046],[111.56115610000006,0.918166100000064],[111.55239220000004,0.921973200000025],[111.54019210000007,0.932181400000047],[111.53589660000006,0.93771780000003],[111.53050280000008,0.953746300000034],[111.52266850000007,0.956024600000035],[111.51785670000004,0.966779200000076],[111.51568980000008,0.974633100000062],[111.51639610000007,0.978679100000022],[111.51523510000004,0.981066700000042],[111.51674470000006,0.986921300000063],[111.51472530000007,1.003904],[111.513308,1.004078700000036],[111.51127860000008,1.009159200000056],[111.50816350000008,1.012386200000037],[111.50558770000004,1.02101250000004],[111.49863480000005,1.023522300000025],[111.49698750000005,1.027544600000056],[111.49370460000006,1.027348200000063],[111.48866390000006,1.035276],[111.48411030000005,1.034357500000056],[111.46439350000009,1.036918100000037],[111.46282720000005,1.031818200000032],[111.45718740000007,1.02357040000004],[111.44427730000007,1.013532200000043],[111.43256130000009,1.01186430000007],[111.42555670000007,1.008841300000029],[111.419183,1.010018200000047],[111.41793040000005,1.008355800000061],[111.41562430000005,1.008901300000048],[111.41343290000009,1.007577300000037],[111.40997230000005,1.010523500000033],[111.409006,1.009657400000037],[111.40669720000005,1.011546700000054],[111.40412910000003,1.010076800000036],[111.39793580000008,1.014047100000028],[111.394819,1.01286250000004],[111.38509350000004,1.015017100000023],[111.37882890000009,1.022093400000074],[111.36878940000008,1.027084200000047],[111.364876,1.031898600000034],[111.35979280000004,1.033873500000027],[111.35234240000005,1.039528700000062],[111.34926390000004,1.040271700000062],[111.34684010000007,1.038412400000027],[111.33561090000006,1.042869600000074],[111.32177890000008,1.042982600000073],[111.30949220000008,1.04664930000007],[111.29868390000007,1.054045300000041],[111.28821410000006,1.055481],[111.27298540000004,1.067875300000026],[111.26585240000009,1.068108900000027],[111.25939880000004,1.066120800000022],[111.25576730000006,1.063180100000068],[111.25206550000007,1.062957100000062],[111.24465490000006,1.07873410000002],[111.23581390000004,1.082015600000034],[111.23590670000004,1.083738800000049],[111.23154360000007,1.086153700000068],[111.22803570000008,1.085252100000048],[111.22806020000007,1.082876700000043],[111.21330090000004,1.073393400000043],[111.19690020000007,1.064541],[111.18178110000008,1.060058100000049],[111.17151610000008,1.061385900000062],[111.16510980000004,1.060489300000029],[111.15355570000008,1.052902700000061],[111.14978680000007,1.053561],[111.13831780000004,1.05046770000007],[111.11270530000007,1.05251880000003],[111.11033460000004,1.049523200000067],[111.10610870000005,1.047963100000061],[111.10047750000007,1.050603700000067],[111.09203350000007,1.047807300000045],[111.07977470000009,1.051143500000023],[111.07450870000008,1.049153100000069],[111.06845670000007,1.04937590000003],[111.05450180000008,1.042552100000023],[111.04536620000005,1.040287500000034],[111.04171770000005,1.040697300000033],[111.03430670000006,1.035615800000073],[111.02718070000009,1.034444500000063],[111.02193670000008,1.035628400000064],[111.01617380000005,1.033435200000042],[111.00762850000007,1.032677],[111.00246250000004,1.033487300000047],[110.99793810000006,1.029341800000054],[110.99499680000008,1.028688500000044],[110.98769330000005,1.029553200000066],[110.97798170000004,1.027542],[110.96987810000007,1.030032700000049],[110.96341850000005,1.029678],[110.95854530000008,1.026765600000033],[110.93745440000004,1.02601020000003],[110.93148380000008,1.02614520000003],[110.92379570000008,1.030460600000026],[110.91857550000009,1.031131100000039],[110.90495610000005,1.028540200000066],[110.90327550000006,1.02015670000003],[110.89999560000007,1.014710700000023],[110.89656070000007,1.010822700000062],[110.89167440000006,1.008705100000043],[110.89084950000006,1.002165600000069],[110.89190760000008,0.995366700000034],[110.88996980000007,0.983381500000064],[110.88562060000004,0.978106400000058],[110.87657170000006,0.975014500000043],[110.87493240000003,0.970267],[110.87316570000007,0.970123400000034],[110.86924780000004,0.96548370000005],[110.86268140000004,0.965385400000059],[110.86105110000005,0.956565800000021],[110.85920820000007,0.953546300000028],[110.86118490000007,0.951304500000049],[110.85501150000005,0.950555200000053],[110.849097,0.954520800000068],[110.84707960000009,0.954515800000024],[110.83800010000004,0.951297500000067],[110.831501,0.951059300000054],[110.82322570000008,0.954035],[110.819948,0.947318900000027],[110.81620130000005,0.945024100000069],[110.81364220000006,0.949160400000039],[110.80929720000006,0.949997100000076],[110.80621920000004,0.938025200000027],[110.80885460000007,0.934124300000065],[110.80821440000005,0.932655],[110.81043940000006,0.92751590000006],[110.81410860000005,0.922964],[110.81244570000007,0.917681300000027],[110.81785250000007,0.914197400000035],[110.81601380000006,0.909166400000061],[110.81630960000007,0.90537020000005],[110.81490140000005,0.905147200000044],[110.81441040000004,0.902911600000039],[110.81179210000005,0.903472600000043],[110.81222560000003,0.901776600000062],[110.81002060000009,0.899929300000053],[110.80657160000004,0.899763200000052],[110.80319620000006,0.900609],[110.79908460000007,0.907263800000067],[110.79796110000007,0.90664060000006],[110.79635540000004,0.904143600000054],[110.77891170000004,0.894162800000061],[110.77651760000003,0.891065500000025],[110.78164840000005,0.888656900000058],[110.78489810000008,0.88401140000002],[110.79840930000006,0.874032400000033],[110.80730260000007,0.86938710000004],[110.809184,0.86542970000005],[110.80781620000005,0.857858800000031],[110.80506550000007,0.856018900000038],[110.80472370000007,0.851201100000026],[110.80096130000004,0.849996500000032],[110.79976430000005,0.847931600000038],[110.79206840000006,0.846898800000019],[110.79070040000005,0.844834],[110.78728090000004,0.829175900000052],[110.78762320000004,0.82418610000002],[110.784374,0.820744600000069],[110.78796570000009,0.814378400000066],[110.78728180000007,0.811281200000053],[110.78163830000005,0.80990440000005],[110.78916370000007,0.797688200000039],[110.79053230000005,0.788052700000037],[110.793269,0.780654100000049],[110.80575970000007,0.760581700000046],[110.81602110000006,0.750774400000068],[110.82422990000003,0.749742400000059],[110.82747930000005,0.747161500000061],[110.83175470000003,0.74647340000007],[110.86749180000004,0.758670300000063],[110.87654650000007,0.751927300000034],[110.893911,0.735196200000075],[110.89923630000004,0.732113200000072],[110.90477530000004,0.730928200000051],[110.91789780000005,0.733076],[110.93892450000004,0.740913100000057],[110.95693750000004,0.741712],[110.96989220000006,0.744203500000026],[110.99159020000008,0.754246100000046],[110.99942560000005,0.753903800000046],[111.02071160000008,0.745545500000048],[111.05352540000007,0.739986400000021],[111.06013350000006,0.740286800000035],[111.10027710000008,0.727914700000042],[111.10542470000007,0.71681970000003],[111.11989530000005,0.705912800000021],[111.12103060000004,0.693741100000068],[111.12293040000009,0.688720600000067],[111.137327,0.678212600000052],[111.15594280000005,0.661529400000063],[111.16648660000004,0.649397800000031],[111.19334210000005,0.612767600000041],[111.20770060000007,0.600087900000062],[111.22019760000006,0.5927],[111.23014190000004,0.589051400000073],[111.23629940000006,0.589502],[111.25777570000008,0.595509400000026],[111.26243150000005,0.594157700000039],[111.26964030000005,0.589051400000073],[111.27354510000004,0.582743700000037],[111.28032340000004,0.564702600000032],[111.29126680000007,0.546249],[111.29564880000004,0.524564200000043],[111.29174610000007,0.506354200000033],[111.28540960000004,0.490831100000037],[111.27075760000008,0.466011800000047],[111.26785840000008,0.455372800000021],[111.26691240000008,0.442824100000053],[111.26000020000004,0.433224300000063],[111.25803180000008,0.427599600000065],[111.25800890000005,0.422210800000073],[111.26468460000007,0.404831],[111.26785840000008,0.391940300000044],[111.26857560000008,0.383269400000074],[111.26738540000008,0.375211800000045],[111.26422680000007,0.369457900000043],[111.259222,0.365194300000041],[111.253004,0.363786100000027],[111.23019970000007,0.366422100000023],[111.22028150000006,0.362949900000046],[111.21719070000006,0.357963],[111.22270950000006,0.343708200000037],[111.22149560000008,0.340986500000042],[111.22648880000008,0.335959500000058],[111.22339760000006,0.334284],[111.22327870000004,0.332728100000054],[111.22767760000005,0.331890100000066],[111.22767750000008,0.327940400000045],[111.23171970000004,0.330932500000074],[111.22993620000005,0.323392300000023],[111.23492960000004,0.325666200000057],[111.23576180000003,0.324708700000031],[111.23112480000009,0.309747800000025],[111.23171920000004,0.306276900000057],[111.23671250000007,0.305678300000068],[111.23718790000004,0.301608900000076],[111.24045270000005,0.300923],[111.24410280000006,0.297710700000039],[111.24731440000005,0.297619],[111.24895770000006,0.293948700000044],[111.25264330000005,0.296462],[111.25668540000004,0.296461900000054],[111.25918210000009,0.294906],[111.25612350000006,0.289360400000021],[111.25906280000004,0.278389100000027],[111.25483890000004,0.274678600000072],[111.25465540000005,0.272370400000057],[111.25799260000008,0.269053500000041],[111.26108370000009,0.268694400000072],[111.25870590000005,0.266300700000045],[111.26322350000004,0.261513100000059],[111.26274790000008,0.260435900000061],[111.25970220000005,0.261189700000045],[111.26300570000006,0.25072890000007],[111.260976,0.246834500000034],[111.26704320000005,0.25072890000007],[111.26902980000006,0.241144600000041],[111.27058740000007,0.244263700000033],[111.26885160000006,0.249044],[111.27099160000006,0.248864400000059],[111.273103,0.245776500000034],[111.27344060000007,0.241103900000041],[111.270278,0.235579200000075],[111.27254880000004,0.232376600000066],[111.27117240000007,0.231091900000024],[111.26595560000004,0.232746200000065],[111.26314590000004,0.222653100000059],[111.26685960000009,0.219162900000072],[111.26768550000008,0.216043],[111.262088,0.212464300000022],[111.26004860000006,0.204177100000038],[111.26259290000007,0.183482300000037],[111.26422490000004,0.180065600000034],[111.264299,0.171833],[111.26595770000006,0.170070600000031],[111.26580340000004,0.164799400000049],[111.26876730000004,0.157007900000053],[111.27304850000007,0.149216400000057],[111.27485980000006,0.141590700000052],[111.27486370000008,0.132393200000024],[111.24894210000008,0.126934900000037],[111.23847790000008,0.121355100000073],[111.23215280000005,0.10907],[111.22417350000006,0.073296200000073],[111.219057,0.064233600000023],[111.21436870000008,0.061716],[111.21053870000009,0.062033700000029],[111.206518,0.067924800000071],[111.20156660000004,0.072041400000046],[111.18274230000009,0.076578500000039],[111.17844370000006,0.079093100000023],[111.16515080000005,0.098696500000074],[111.15954540000007,0.102642800000069],[111.15293680000008,0.104026900000065],[111.14759620000007,0.102404600000057],[111.12363310000006,0.085581900000022],[111.13017920000004,0.075141300000041],[111.13456240000005,0.044752500000072],[111.148773,0.001472800000045],[111.14593030000009,-0.070065599999964],[111.14207680000004,-0.083641099999966],[111.13533690000008,-0.099640799999975],[111.13585860000006,-0.112850399999957],[111.128592,-0.120973799999945],[111.11173650000006,-0.124367699999937],[111.09873340000007,-0.133579699999927],[111.09632550000003,-0.138913],[111.09584390000003,-0.152003699999966],[111.09777040000006,-0.166064],[111.094883,-0.181578199999933],[111.08735780000006,-0.183004699999969],[111.08519990000008,-0.195772799999929],[111.08553050000006,-0.202536499999951],[111.09243220000008,-0.230987599999935],[111.09128870000006,-0.243063199999938],[111.08764660000008,-0.253713199999936],[111.07941840000007,-0.266318399999932],[111.07649570000007,-0.2684874],[111.07535640000009,-0.274214899999947],[111.07019560000003,-0.280709299999955],[111.05548640000006,-0.293270899999925],[111.042814,-0.2999032],[111.03663420000004,-0.306302699999947],[111.034002,-0.310218299999974],[111.02891320000003,-0.327566499999932],[111.02720420000009,-0.347321099999931],[111.02801320000009,-0.382295099999965],[111.03478530000007,-0.416382499999941],[111.04682470000006,-0.437971199999936],[111.057359,-0.4481974],[111.06714110000007,-0.465241099999957],[111.07767550000005,-0.474709699999948],[111.08632890000007,-0.4856933],[111.08886980000005,-0.495542399999977],[111.09163450000005,-0.501977899999929],[111.09580780000005,-0.503649799999948],[111.11919190000003,-0.504160799999966],[111.13308510000007,-0.513162],[111.15057170000006,-0.515926499999978],[111.18046370000008,-0.513784299999941],[111.19640910000004,-0.519456399999967],[111.20206530000007,-0.5251554],[111.21008370000004,-0.5207914],[111.221655,-0.519684299999938],[111.22934670000006,-0.515812299999936],[111.235711,-0.510559699999931],[111.24057130000006,-0.504776899999968],[111.24454760000003,-0.496325299999967],[111.24631470000008,-0.486539199999925],[111.25029120000005,-0.480311699999959],[111.25841530000008,-0.4731027],[111.26109480000008,-0.468122299999948],[111.26645410000003,-0.462726699999962],[111.27449310000009,-0.459406199999933],[111.277708,-0.449315099999978],[111.293394,-0.446733],[111.30407520000006,-0.440131],[111.30798140000007,-0.433169799999973],[111.30040610000009,-0.424510099999964],[111.31795360000007,-0.411318899999969],[111.32450370000004,-0.397423],[111.33011820000007,-0.391063799999927],[111.33549890000006,-0.388943899999958],[111.34111370000005,-0.389885699999979],[111.34930180000003,-0.388001199999962],[111.35398060000006,-0.384703799999954],[111.35702150000009,-0.3741053],[111.36006260000005,-0.369159299999978],[111.36801650000007,-0.361622399999931],[111.37643830000007,-0.3557341],[111.38977320000004,-0.355027],[111.40764430000007,-0.358366799999942],[111.43594490000004,-0.354408199999966],[111.44681860000009,-0.350498099999925],[111.45225530000005,-0.343460499999935],[111.457302,-0.302018199999964],[111.46351240000007,-0.2863794],[111.46513340000007,-0.272046],[111.46350420000005,-0.2562423],[111.46435610000009,-0.252104],[111.46678680000008,-0.246230599999933],[111.48084830000005,-0.229575099999977],[111.49242870000006,-0.2237455],[111.50359550000007,-0.220830499999977],[111.53709610000004,-0.220412899999928],[111.55405330000008,-0.224576],[111.56998980000009,-0.222681199999954],[111.57878670000008,-0.211909399999968],[111.59828270000008,-0.19635],[111.60779240000005,-0.186296899999945],[111.61349930000006,-0.189647299999933],[111.62187880000005,-0.204713099999935],[111.64678620000007,-0.197305599999936],[111.65296780000006,-0.191560699999968],[111.68349590000008,-0.143947499999967],[111.68915050000004,-0.140331299999957],[111.68991360000007,-0.144431],[111.70056090000008,-0.155798899999979],[111.706691,-0.155798699999934],[111.71509830000008,-0.147671099999968],[111.72273090000004,-0.144557899999938],[111.72630150000003,-0.145285899999976],[111.74138210000007,-0.152742],[111.76169740000006,-0.171323399999949],[111.77425770000008,-0.179129499999931],[111.77808040000008,-0.180668699999956],[111.79031260000005,-0.177809399999944],[111.79948680000007,-0.177919],[111.80735050000004,-0.180337599999973],[111.82318740000005,-0.191442],[111.837973,-0.195667899999933],[111.84546510000007,-0.200417899999934],[111.85440680000005,-0.208825899999965],[111.85870970000008,-0.224927899999955],[111.86443180000003,-0.2355379],[111.86800230000006,-0.238461899999947],[111.896872,-0.234399899999971],[111.90576790000006,-0.225602899999956],[111.91464850000006,-0.210216899999978],[111.92068910000006,-0.203986199999974],[111.94338010000007,-0.195781599999975],[111.95419170000008,-0.195524899999953],[111.96239330000009,-0.198076899999933],[111.97096110000007,-0.206852899999944],[111.98132950000007,-0.222214899999926],[111.988112,-0.227331899999967],[111.99738940000009,-0.227686899999981],[112.01804210000012,-0.215946899999949],[112.02324740000006,-0.214546699999971],[112.03067680000004,-0.215970599999935],[112.03811420000011,-0.2219456],[112.04951910000011,-0.237078199999928],[112.0578134000001,-0.244905199999948],[112.08684220000009,-0.259512799999925],[112.11742570000001,-0.270470099999955],[112.12571980000007,-0.277775],[112.12883030000012,-0.281949299999951],[112.13090450000004,-0.290298399999926],[112.12884080000003,-0.305864],[112.14796320000005,-0.302181899999937],[112.19071070000007,-0.2860219],[112.20104090000007,-0.279053899999951],[112.2241580000001,-0.253765899999962],[112.24338410000007,-0.2416619],[112.268317,-0.231746899999962],[112.2904281000001,-0.230618599999957],[112.30752450000011,-0.226573899999948],[112.31927380000002,-0.219969899999967],[112.34134560000007,-0.202004899999963],[112.36136420000003,-0.188486599999976],[112.3728731000001,-0.183589899999959],[112.3808735,-0.181821899999932],[112.3730839000001,-0.2078229],[112.37028390000012,-0.231255899999951],[112.37145880000003,-0.290558899999951],[112.36985520000007,-0.295415499999933],[112.37355510000009,-0.305928299999948],[112.37043970000002,-0.336614],[112.367881,-0.338019499999973],[112.36657880000007,-0.344330899999932],[112.37299850000011,-0.349918799999955],[112.37052730000005,-0.356643199999951],[112.37552240000002,-0.371636299999977],[112.40588920000005,-0.388994199999956],[112.415973,-0.401224],[112.41959550000001,-0.419960799999956],[112.41727060000005,-0.429590299999973],[112.41146380000009,-0.441947599999935],[112.4115882000001,-0.454574699999966],[112.41805320000003,-0.466024199999936],[112.42899950000003,-0.4793748],[112.43150010000011,-0.487881699999946],[112.43021270000008,-0.511303799999951],[112.4271146000001,-0.529521399999965],[112.428926,-0.537328199999934],[112.43575180000005,-0.544537099999957],[112.45181930000001,-0.556598099999974],[112.45468040000003,-0.559523],[112.45539750000012,-0.563915099999974],[112.45541280000009,-0.5675761],[112.4522161000001,-0.575634099999945],[112.45117080000011,-0.588814],[112.4583348000001,-0.6056441],[112.45905960000005,-0.614063],[112.45161330000008,-0.633841099999927],[112.45056810000005,-0.646655099999975],[112.45771690000004,-0.656164099999955],[112.459876,-0.664215099999979],[112.45978560000003,-0.672730599999966],[112.46363310000004,-0.672867899999972],[112.46657940000011,-0.680745299999955],[112.47302960000002,-0.686551799999961],[112.49472550000007,-0.6975843],[112.50331810000012,-0.69862],[112.51031380000006,-0.698339199999964],[112.5237509000001,-0.693173799999954],[112.5339586,-0.697288599999979],[112.54053440000007,-0.694916499999977],[112.56705970000007,-0.696592],[112.56923780000011,-0.687782399999946],[112.57316270000001,-0.683534899999927],[112.57777520000002,-0.681361199999969],[112.57964040000002,-0.681755399999929],[112.585498,-0.687854299999969],[112.59102870000004,-0.6891576],[112.59612790000006,-0.687982799999929],[112.60182270000007,-0.680859399999974],[112.60937880000006,-0.677284699999973],[112.6188998,-0.676212699999951],[112.63905110000007,-0.678272199999981],[112.64359920000004,-0.676461099999926],[112.6460518,-0.673201799999958],[112.6451651000001,-0.662834199999963],[112.64656,-0.657845399999928],[112.65246450000006,-0.656127199999958],[112.66742550000004,-0.659158499999933],[112.678054,-0.6565146],[112.68697740000005,-0.657435699999951],[112.68894540000008,-0.655850899999962],[112.69300980000003,-0.645552499999951],[112.69760130000009,-0.641458299999954],[112.70326390000002,-0.639311099999929],[112.70299860000011,-0.630202199999928],[112.7053595000001,-0.627032899999961],[112.710477,-0.626503299999968],[112.72884490000001,-0.6335083],[112.7333595,-0.632519199999933],[112.73436040000001,-0.629135699999949],[112.73252160000004,-0.624383899999941],[112.73293950000004,-0.600527499999941],[112.729262,-0.590363899999943],[112.72978590000002,-0.5873273],[112.74526520000006,-0.572405199999935],[112.75405730000011,-0.573722699999962],[112.77334610000003,-0.573188499999958],[112.78024540000001,-0.576087899999948],[112.78418390000002,-0.582423],[112.78746490000003,-0.584930099999951],[112.80517780000002,-0.580700099999945],[112.8146253000001,-0.580565],[112.835638,-0.576920899999948],[112.8395518000001,-0.568412599999931],[112.84457590000011,-0.562010399999963],[112.86648370000012,-0.5480111],[112.88275180000005,-0.542198],[112.90012980000006,-0.531200699999943],[112.9104972,-0.527359699999977],[112.91745790000004,-0.521086],[112.9293861000001,-0.523007799999959],[112.93633970000008,-0.5226095],[112.9498516000001,-0.516005499999949],[112.96402400000011,-0.511522799999966],[112.97275250000007,-0.512017699999944],[112.97760670000002,-0.510828299999957],[112.99376570000004,-0.490598299999931],[112.99701770000001,-0.488779499999964],[113.002266,-0.490493799999967],[113.00882760000002,-0.4966955],[113.01538710000011,-0.495241399999941],[113.0181391000001,-0.4848134],[113.02417520000006,-0.475459499999943],[113.029922,-0.477687699999933],[113.046676,-0.499166299999956],[113.05516530000011,-0.503711],[113.05918940000004,-0.509160299999962],[113.062555,-0.509407],[113.06540980000011,-0.507904499999938],[113.0836005000001,-0.495182099999965],[113.08704850000004,-0.495594],[113.0922213,-0.499804099999949],[113.09509420000006,-0.499142499999948],[113.09733390000008,-0.488466199999948],[113.1003505000001,-0.486353699999938],[113.10321720000002,-0.487825899999962],[113.10471570000004,-0.498621299999968],[113.109231,-0.500354199999947],[113.11210370000003,-0.499279599999966],[113.11481130000004,-0.495892799999979],[113.11735390000001,-0.489285399999972],[113.11653110000009,-0.4826792],[113.1135753000001,-0.480285199999969],[113.11275300000011,-0.475412899999981],[113.11968790000003,-0.470353],[113.12899820000007,-0.456756199999973],[113.13320380000005,-0.454070299999955],[113.14961910000011,-0.448532499999942],[113.15379070000006,-0.451337499999966],[113.15300740000009,-0.463743799999975],[113.15580780000005,-0.470424499999979],[113.158913,-0.471660799999938],[113.16507850000005,-0.471262899999942],[113.17772350000007,-0.4687663],[113.18541140000002,-0.469936799999971],[113.190035,-0.473135199999945],[113.19449770000006,-0.481052199999965],[113.19974580000007,-0.484086],[113.20630840000001,-0.494773799999962],[113.21065460000011,-0.5062691],[113.21945390000008,-0.506397599999957],[113.2261492,-0.498418699999945],[113.22706210000001,-0.481921899999975],[113.22958050000011,-0.4757131],[113.23425750000001,-0.470839599999977],[113.23965080000005,-0.468456599999968],[113.2434783000001,-0.461534799999924],[113.2464920000001,-0.450184399999955],[113.24958550000008,-0.447086299999967],[113.25356220000003,-0.448613],[113.25913930000002,-0.4483538],[113.26422620000005,-0.441911599999969],[113.26643420000005,-0.426589599999943],[113.26548280000009,-0.420019699999955]]]},"properties":{"shapeName":"Sintang","shapeISO":"","shapeID":"22746128B87804825109954","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[114.42380020000007,-7.935504],[114.42123,-7.92643],[114.42354000000012,-7.91686],[114.4370206000001,-7.9095337],[114.43874810000011,-7.904365499999926],[114.44227,-7.90031],[114.46163970000009,-7.891317799999968],[114.46445,-7.88671],[114.46401,-7.88031],[114.46185,-7.87582],[114.46172,-7.86782],[114.46010710000007,-7.864222599999948],[114.45867950000002,-7.864906699999949],[114.45746,-7.862675899999942],[114.45924460000003,-7.859493399999963],[114.464182,-7.858422699999949],[114.4651338000001,-7.855894499999977],[114.461981,-7.851224799999954],[114.45904,-7.85074],[114.45781690000001,-7.848458699999981],[114.4632004,-7.842093599999941],[114.46412250000003,-7.8374834],[114.467305,-7.835044499999981],[114.46364660000006,-7.832070099999953],[114.46397380000008,-7.8293932],[114.46525270000006,-7.8293337],[114.46480660000009,-7.825229199999967],[114.45969070000001,-7.815681599999948],[114.45746,-7.814253899999926],[114.45790610000006,-7.810744199999931],[114.45472360000008,-7.809703199999944],[114.45258210000009,-7.803219199999944],[114.44898320000004,-7.806520699999965],[114.44764470000007,-7.805509399999949],[114.44815040000003,-7.800512499999968],[114.44496780000009,-7.7999177],[114.44264790000011,-7.797597699999926],[114.44300480000004,-7.793969],[114.44100960000003,-7.79131],[114.43684080000003,-7.789044699999977],[114.4339854000001,-7.7926805],[114.43019730000003,-7.791919099999973],[114.42810340000005,-7.788245199999949],[114.42134570000007,-7.786589099999958],[114.416682,-7.780002799999977],[114.41080000000011,-7.7776043],[114.40439,-7.77011],[114.39343940000003,-7.771094099999971],[114.38737,-7.76377],[114.38109,-7.76081],[114.37784920000001,-7.7525723],[114.3783251000001,-7.757102799999927],[114.37392780000005,-7.7555229],[114.37409910000008,-7.752305799999931],[114.37611690000006,-7.751906099999928],[114.37543160000007,-7.750992399999973],[114.37379460000011,-7.751925099999937],[114.36410540000008,-7.748955599999931],[114.3668100000001,-7.75374],[114.3722,-7.75436],[114.37106,-7.75704],[114.36402,-7.75379],[114.35033,-7.75353],[114.34786,-7.75627],[114.33758000000012,-7.75595],[114.32872,-7.75828],[114.31852,-7.75593],[114.30981,-7.7463],[114.30524,-7.7458],[114.30082,-7.74773],[114.29377000000011,-7.74784],[114.28638,-7.74089],[114.28314740000008,-7.7343964],[114.280649,-7.734467799999948],[114.26730020000002,-7.723248699999942],[114.25897,-7.71829],[114.25092,-7.70952],[114.24556870000004,-7.701186],[114.24014100000011,-7.697719399999926],[114.23511560000009,-7.698932899999932],[114.21805,-7.71271],[114.20757810000009,-7.717844899999932],[114.2023511000001,-7.71579],[114.19582830000002,-7.707965399999978],[114.18574110000009,-7.712916599999971],[114.17855,-7.71197],[114.17669510000007,-7.7151014],[114.14116,-7.71457],[114.13451920000011,-7.713864099999967],[114.12418480000008,-7.707556899999929],[114.11801760000003,-7.7096167],[114.10504950000006,-7.705559699999981],[114.10114720000001,-7.702180899999973],[114.09450630000003,-7.687247899999932],[114.08500970000011,-7.673577399999942],[114.06858670000008,-7.636945599999933],[114.05921160000003,-7.622906799999953],[114.0485278000001,-7.6109619],[114.0397,-7.604489799999953],[114.03505260000009,-7.604444],[114.03232490000005,-7.606146799999976],[114.01688410000008,-7.620411199999978],[114.00320460000012,-7.636108499999978],[114.00055860000009,-7.637174499999958],[113.9965992000001,-7.636508299999946],[113.99041000000011,-7.63981],[113.98919,-7.64264],[113.9861800000001,-7.64358],[113.9824,-7.64895],[113.97251510000001,-7.651177699999948],[113.96897,-7.65526],[113.96672,-7.66187],[113.9580836,-7.675150699999961],[113.95385010000007,-7.679032399999926],[113.95005,-7.68104],[113.9445300000001,-7.6754887],[113.9404459000001,-7.676468399999976],[113.93920860000003,-7.679097699999943],[113.94054,-7.68173],[113.93737640000006,-7.681132099999957],[113.93736450000006,-7.689079499999934],[113.93587730000002,-7.693945499999927],[113.93359150000003,-7.696973799999967],[113.93422870000006,-7.698007899999936],[113.93101490000004,-7.700793],[113.92348630000004,-7.697071499999936],[113.92033780000008,-7.700831099999959],[113.912971,-7.696695599999941],[113.90471490000004,-7.699400399999945],[113.89753870000004,-7.695918899999981],[113.89568280000003,-7.696461399999976],[113.89076000000011,-7.69184],[113.88851000000011,-7.69181],[113.88626010000007,-7.688171399999931],[113.88227210000002,-7.687095899999974],[113.87842,-7.68813],[113.87452410000003,-7.686632],[113.86911,-7.6826],[113.86817,-7.67995],[113.86721000000011,-7.68174],[113.86102830000004,-7.684897199999966],[113.84106620000011,-7.684278599999971],[113.8311867000001,-7.6882285],[113.8268,-7.69535],[113.82040530000006,-7.696537599999942],[113.81661010000005,-7.6992739],[113.81099460000007,-7.711516299999971],[113.79996580000011,-7.722307099999966],[113.79869,-7.72522],[113.79313860000002,-7.729388599999936],[113.78313460000004,-7.733166599999947],[113.77734570000007,-7.732951199999945],[113.77358350000009,-7.731039399999929],[113.77279830000009,-7.733166599999947],[113.76101,-7.73807],[113.75070240000002,-7.735435],[113.73204290000001,-7.725416699999926],[113.73076750000007,-7.7230087],[113.7286583,-7.7236228],[113.72548510000001,-7.722176599999955],[113.72185880000006,-7.716424699999948],[113.7144717000001,-7.711054899999965],[113.71305040000004,-7.708123399999977],[113.709795,-7.709026799999947],[113.69408990000011,-7.72179],[113.68595280000011,-7.725491399999953],[113.68276,-7.72874],[113.67477080000003,-7.729363899999953],[113.67428540000003,-7.731262699999945],[113.66637,-7.73696],[113.65707,-7.73358],[113.65244,-7.73024],[113.65002,-7.72438],[113.6473165000001,-7.723715099999936],[113.64291,-7.72561],[113.63571,-7.72234],[113.62521,-7.72266],[113.61922940000011,-7.719974599999944],[113.612762,-7.723244],[113.61021360000007,-7.723079799999937],[113.60848610000005,-7.720638399999928],[113.59904440000003,-7.717973499999971],[113.59790830000009,-7.715193099999965],[113.59651930000007,-7.717204199999969],[113.5906447000001,-7.716666299999929],[113.59054550000008,-7.723726299999953],[113.58827960000008,-7.726529699999958],[113.57900990000007,-7.7261864],[113.57823170000006,-7.733021299999962],[113.57324970000002,-7.738878799999952],[113.57255540000006,-7.742067899999938],[113.57623280000007,-7.750000099999966],[113.576393,-7.756195599999955],[113.5904921,-7.763538399999959],[113.59823590000008,-7.770851199999981],[113.602661,-7.781870399999946],[113.601776,-7.788893299999927],[113.60404950000009,-7.798208799999941],[113.60608660000003,-7.798938799999974],[113.60134870000002,-7.802372499999933],[113.59339120000004,-7.803744799999947],[113.59215530000006,-7.805414299999939],[113.60250840000003,-7.813509],[113.60553720000007,-7.819891],[113.61164840000004,-7.825199699999928],[113.60234820000005,-7.8451558],[113.60948930000006,-7.853387899999973],[113.60862720000011,-7.859669799999949],[113.61727890000009,-7.873166599999934],[113.61830120000002,-7.880201899999975],[113.61565380000002,-7.882740599999977],[113.61509690000003,-7.887129399999935],[113.623329,-7.895119699999952],[113.6238859,-7.899304899999947],[113.62225330000001,-7.907167499999957],[113.62628920000009,-7.917029899999932],[113.62483960000009,-7.925346],[113.61990340000011,-7.927260499999932],[113.61750780000011,-7.931398899999976],[113.61702710000009,-7.934598],[113.61869030000003,-7.938920099999962],[113.61505870000008,-7.941809699999965],[113.61104570000009,-7.949621699999966],[113.61470020000002,-7.953142199999945],[113.62232950000009,-7.952441699999952],[113.62123090000011,-7.955051499999968],[113.6155470000001,-7.957800899999938],[113.62377860000004,-7.961455799999953],[113.63712260000011,-7.949588699999936],[113.64424880000001,-7.947674799999959],[113.6483687000001,-7.945510899999931],[113.65150310000001,-7.941723599999932],[113.66043840000009,-7.938458],[113.6616977000001,-7.931609699999967],[113.660858,-7.9264288],[113.66291850000005,-7.921591599999942],[113.67331680000007,-7.918925299999955],[113.67942030000006,-7.912585799999931],[113.68484480000006,-7.910330299999941],[113.68889800000011,-7.903313399999945],[113.69437390000007,-7.900482699999941],[113.69974860000002,-7.899613599999952],[113.70319350000011,-7.892453699999976],[113.70722980000005,-7.888537399999962],[113.70808760000011,-7.884838899999977],[113.71167530000002,-7.885301299999981],[113.7157820000001,-7.8812056],[113.72201810000001,-7.879817799999955],[113.721836,-7.871892299999956],[113.72854990000008,-7.858161499999937],[113.7279909,-7.8532405],[113.73119120000001,-7.8462203],[113.73301330000004,-7.837079199999948],[113.7347555,-7.835867],[113.7341245,-7.834099],[113.73218540000005,-7.8337114],[113.73372630000006,-7.831425199999956],[113.73136120000004,-7.819929099999968],[113.73370340000008,-7.815536499999951],[113.7336805000001,-7.809320899999932],[113.7365645000001,-7.808353899999929],[113.73937970000009,-7.804452399999946],[113.73851,-7.7910142],[113.73971540000002,-7.788903699999935],[113.74404130000005,-7.789669],[113.74624620000009,-7.7930932],[113.7454222,-7.795111199999951],[113.74736010000004,-7.796250799999939],[113.75816330000009,-7.795696199999952],[113.76622750000001,-7.798428],[113.76831040000002,-7.794936699999937],[113.78137190000007,-7.800254799999948],[113.78308090000007,-7.799020299999938],[113.78574350000008,-7.799858099999938],[113.78770430000009,-7.802926499999955],[113.793434,-7.802810199999954],[113.79993420000005,-7.807780699999967],[113.8013075,-7.816135399999951],[113.8041151000001,-7.816607899999951],[113.80908190000002,-7.813111299999946],[113.81610090000004,-7.813310099999967],[113.82142620000002,-7.810972199999981],[113.82941420000009,-7.813191899999936],[113.83688340000003,-7.812307299999929],[113.84900650000009,-7.796058599999981],[113.8532484000001,-7.794363],[113.86449410000012,-7.793307699999957],[113.87232190000009,-7.797525399999927],[113.87573110000005,-7.7951444],[113.87574010000003,-7.791595599999937],[113.877288,-7.791079699999955],[113.88292090000004,-7.797086599999943],[113.89672070000006,-7.798278299999936],[113.89771250000001,-7.800024],[113.899597,-7.800064499999962],[113.89932230000011,-7.801740099999961],[113.90359210000008,-7.803212299999927],[113.90595990000008,-7.800092099999972],[113.90476970000009,-7.798837599999956],[113.90550210000004,-7.795645599999943],[113.91690040000003,-7.792497099999935],[113.91822800000011,-7.788805899999943],[113.92868790000011,-7.790613599999972],[113.92976360000011,-7.792712599999959],[113.93180830000006,-7.792215299999953],[113.93309760000011,-7.7934007],[113.93682080000008,-7.791729399999952],[113.93600440000012,-7.790127699999971],[113.937721,-7.7869438],[113.93570690000001,-7.776435299999946],[113.9409025000001,-7.775495],[113.9508436000001,-7.765230599999938],[113.95974710000007,-7.771497099999976],[113.9622419000001,-7.771407499999953],[113.9631346000001,-7.773503199999936],[113.98058360000005,-7.771468],[113.99046670000007,-7.775602899999967],[113.9914103000001,-7.778337],[113.99990820000005,-7.772096499999975],[114.00475290000008,-7.763401399999964],[114.00646190000009,-7.756792899999937],[114.00721720000001,-7.759719699999948],[114.01193980000005,-7.762610299999949],[114.02078230000006,-7.760117399999956],[114.032461,-7.760215499999958],[114.04423520000012,-7.758394599999974],[114.06204550000007,-7.758764099999951],[114.071262,-7.761195699999973],[114.07458470000006,-7.769578299999978],[114.07935310000005,-7.770710299999962],[114.07929210000009,-7.773635699999943],[114.07489750000002,-7.783171],[114.0794141,-7.789364699999965],[114.0806119,-7.795542099999977],[114.08686810000006,-7.799302399999931],[114.08935530000008,-7.806004799999926],[114.0878904000001,-7.815147199999956],[114.089752,-7.819039699999962],[114.08916450000004,-7.824265799999978],[114.09559610000008,-7.840616099999977],[114.09414650000008,-7.8417609],[114.09484080000004,-7.8443325],[114.09320810000008,-7.845194699999979],[114.09387190000007,-7.858236099999942],[114.09191110000006,-7.862285499999928],[114.09349040000006,-7.864585199999965],[114.09225440000012,-7.866976099999931],[114.09389470000008,-7.872508299999936],[114.09252910000009,-7.875441399999943],[114.09394050000003,-7.881668399999967],[114.09614540000007,-7.882742699999937],[114.09884620000003,-7.8889731],[114.10224890000006,-7.8924768],[114.1027219,-7.899220299999968],[114.11113720000003,-7.909597699999949],[114.11168650000002,-7.921141],[114.1137159000001,-7.924414899999931],[114.11374640000008,-7.932614599999965],[114.11563090000004,-7.935996799999941],[114.11344120000001,-7.938960799999961],[114.11442540000007,-7.941565299999979],[114.11350990000005,-7.942084099999931],[114.1162336000001,-7.947778],[114.11710340000002,-7.954073199999925],[114.12335180000002,-7.963495099999932],[114.12400790000004,-7.971924099999967],[114.127876,-7.975959099999955],[114.12631970000007,-7.978121099999953],[114.12591530000009,-7.983506],[114.12786840000001,-7.986844799999972],[114.1276395000001,-7.993020799999954],[114.14115120000008,-7.981392599999936],[114.163223,-7.9730261],[114.16623660000005,-7.970444899999961],[114.17506970000011,-7.969558499999948],[114.19284340000002,-7.972003],[114.19908880000003,-7.975823599999956],[114.20364360000008,-7.975441699999976],[114.2116926000001,-7.977763399999958],[114.22434210000006,-7.986662099999933],[114.23060580000003,-7.972247299999935],[114.23287940000012,-7.970396699999981],[114.2375181000001,-7.961431199999936],[114.24055450000003,-7.960234899999932],[114.24600190000001,-7.950472599999955],[114.24969460000011,-7.939358],[114.25404330000003,-7.934086099999945],[114.259033,-7.9312345],[114.27132390000008,-7.919591099999934],[114.27130860000011,-7.9149096],[114.27615330000003,-7.912658399999941],[114.27842690000011,-7.909445499999947],[114.278259,-7.906630699999937],[114.282768,-7.900841399999933],[114.28313420000006,-7.8972361],[114.28840610000009,-7.894171899999947],[114.29313630000001,-7.888921899999957],[114.29598210000006,-7.888521799999978],[114.29943060000005,-7.885656099999949],[114.30673190000005,-7.885267899999974],[114.31768770000008,-7.895144199999947],[114.32337160000009,-7.897073399999954],[114.32359290000011,-7.899085199999945],[114.33001680000007,-7.901777399999958],[114.33283970000002,-7.9069153],[114.33953070000007,-7.907591499999967],[114.34054540000011,-7.905920699999967],[114.34426850000011,-7.908879399999933],[114.34437530000002,-7.911421399999938],[114.34799930000008,-7.910834499999964],[114.35157750000008,-7.913653499999953],[114.35742920000007,-7.9128429],[114.3617627000001,-7.914478],[114.36528750000002,-7.9182087],[114.37264990000006,-7.9186584],[114.37335940000003,-7.920294899999931],[114.37847870000007,-7.920969099999979],[114.39028140000005,-7.926918599999965],[114.39652990000002,-7.926803199999938],[114.40647860000001,-7.937322199999926],[114.41265080000005,-7.940043099999968],[114.4141767000001,-7.9395061],[114.41361970000003,-7.937259799999936],[114.41448180000009,-7.938083799999959],[114.41974610000011,-7.934413499999948],[114.42380020000007,-7.935504]]]},"properties":{"shapeName":"Situbondo","shapeISO":"","shapeID":"22746128B80971389741227","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[110.51951650000007,-7.830975299999977],[110.52269660000007,-7.828147699999931],[110.53096690000007,-7.825875499999938],[110.52989110000004,-7.823750299999972],[110.53230950000005,-7.823468399999967],[110.53246480000007,-7.824756299999933],[110.53473830000007,-7.822551899999951],[110.53762990000007,-7.823987699999975],[110.542365,-7.823536599999954],[110.54207730000007,-7.819781],[110.54554110000004,-7.815713499999958],[110.54526640000006,-7.811069099999941],[110.54647950000009,-7.809836],[110.54457210000004,-7.807414699999981],[110.54652950000008,-7.798026399999969],[110.54399330000007,-7.796499299999937],[110.54395650000004,-7.793773599999952],[110.54015530000004,-7.795046599999978],[110.53958340000008,-7.7980376],[110.53621670000007,-7.7977109],[110.53743740000004,-7.794723499999975],[110.53613280000008,-7.794014],[110.53495340000006,-7.796665799999971],[110.53363580000007,-7.79601],[110.530672,-7.798137],[110.52949030000008,-7.790832499999965],[110.52526320000004,-7.788182399999926],[110.523333,-7.783382599999925],[110.51888280000009,-7.782807299999945],[110.51244350000007,-7.779113699999925],[110.51005020000008,-7.770693399999971],[110.50709,-7.768972099999928],[110.49177820000006,-7.766842199999928],[110.49181370000008,-7.742148399999962],[110.46870420000005,-7.638313299999936],[110.46849790000005,-7.617576199999974],[110.46325680000007,-7.6047482],[110.46051020000004,-7.590043],[110.45969390000005,-7.569947699999943],[110.45744320000006,-7.565381499999944],[110.45626070000009,-7.557588499999952],[110.44607540000004,-7.5418973],[110.44414520000004,-7.544238099999973],[110.430687,-7.55093],[110.42475890000009,-7.556634899999949],[110.42076110000005,-7.557508899999959],[110.41596980000008,-7.561164299999973],[110.41421510000004,-7.564870799999937],[110.40150450000004,-7.579478699999981],[110.40015410000007,-7.5847067],[110.39638520000005,-7.589157099999966],[110.38999180000008,-7.592373799999962],[110.39097590000006,-7.594924399999968],[110.38821410000008,-7.597523599999931],[110.38555910000008,-7.598069199999941],[110.38482670000008,-7.599962699999935],[110.37954710000008,-7.601124299999981],[110.37604520000008,-7.6066255],[110.367073,-7.6121659],[110.36512770000007,-7.615106599999933],[110.35501860000005,-7.622571899999969],[110.34487150000007,-7.626125299999956],[110.33804320000007,-7.630496499999936],[110.33271790000003,-7.637247499999944],[110.32495880000005,-7.642026399999963],[110.32265470000004,-7.645204099999944],[110.3041,-7.654914399999939],[110.29974370000008,-7.664659],[110.29131320000005,-7.672366099999977],[110.28659060000007,-7.680441299999927],[110.28465270000004,-7.687128],[110.27365110000005,-7.701305799999943],[110.27404790000008,-7.704425799999967],[110.272644,-7.704882099999963],[110.27267460000007,-7.706691699999965],[110.27043490000005,-7.705739899999969],[110.26775360000005,-7.707287699999938],[110.26173490000008,-7.7048418],[110.25804270000003,-7.705306499999949],[110.25317380000007,-7.708491099999947],[110.243721,-7.710190699999941],[110.23871610000003,-7.713112799999976],[110.23292630000009,-7.713449799999978],[110.23154540000007,-7.717346499999962],[110.23186580000004,-7.722445799999946],[110.22507560000008,-7.723321299999952],[110.22109380000006,-7.735276099999965],[110.21648590000007,-7.738316599999962],[110.21614260000007,-7.742526599999962],[110.21954840000006,-7.7477768],[110.21787,-7.7521041],[110.22040810000004,-7.754691],[110.21868170000005,-7.758384899999953],[110.222115,-7.759980399999961],[110.21955910000008,-7.7633474],[110.22230820000004,-7.764751199999978],[110.22276550000004,-7.767539599999964],[110.22042640000006,-7.776729399999965],[110.22765970000006,-7.784415099999933],[110.22906350000005,-7.788802499999974],[110.23300670000003,-7.790886099999966],[110.23605080000004,-7.798041499999954],[110.22842530000008,-7.805863299999942],[110.23236210000005,-7.809974599999975],[110.23343610000006,-7.8150045],[110.24040710000008,-7.806420399999979],[110.24471010000008,-7.804671799999937],[110.24781190000004,-7.805846499999973],[110.24830920000005,-7.803765099999964],[110.25053020000007,-7.803617699999961],[110.25239350000004,-7.801841599999932],[110.25392220000003,-7.796089599999959],[110.25741240000008,-7.797345099999973],[110.25588090000008,-7.800069],[110.25691710000007,-7.800265399999944],[110.263716,-7.794106],[110.26779040000008,-7.795749399999977],[110.27035340000003,-7.7930678],[110.27337650000004,-7.793391699999972],[110.274379,-7.791378399999928],[110.27574460000005,-7.791812799999946],[110.27943540000007,-7.784982299999967],[110.28378080000005,-7.7861558],[110.28714890000003,-7.784176599999967],[110.28881450000006,-7.784874099999968],[110.28654630000005,-7.7874259],[110.29043670000004,-7.789206399999955],[110.29092730000008,-7.793363199999931],[110.29001790000007,-7.797531699999979],[110.28684150000004,-7.8001068],[110.28699850000004,-7.802923199999952],[110.282017,-7.8062519],[110.28384240000008,-7.808128299999964],[110.28377710000007,-7.813484799999969],[110.28209440000006,-7.817111099999977],[110.28474810000006,-7.816863499999954],[110.28762230000007,-7.8219415],[110.28871840000005,-7.833825799999943],[110.29283810000004,-7.833959399999969],[110.29511110000004,-7.8305663],[110.29849480000007,-7.832255599999939],[110.29934080000004,-7.830421699999931],[110.29821680000003,-7.830475799999931],[110.29759840000008,-7.827202099999965],[110.30252410000008,-7.827210299999933],[110.30347940000007,-7.825237699999946],[110.30642860000006,-7.828333499999928],[110.30706460000005,-7.822127399999943],[110.31135630000006,-7.818103599999972],[110.31242820000006,-7.8206606],[110.31644230000006,-7.823713299999952],[110.31698330000006,-7.819887699999981],[110.31424610000005,-7.818841],[110.31560020000006,-7.8154607],[110.31444610000005,-7.812279399999966],[110.31481360000004,-7.810545699999977],[110.31610350000005,-7.8106877],[110.31471180000005,-7.809892899999966],[110.31622950000008,-7.807937399999958],[110.31600950000006,-7.805242399999941],[110.31910080000006,-7.807261399999959],[110.32076030000007,-7.804373699999928],[110.32507410000005,-7.805718399999932],[110.327546,-7.804724199999953],[110.33045560000005,-7.806821599999978],[110.33011830000004,-7.804807599999947],[110.33229270000004,-7.803233599999942],[110.33143840000008,-7.800074699999925],[110.33338330000004,-7.7978935],[110.33798690000003,-7.797662299999956],[110.33916790000006,-7.792351699999926],[110.34364040000008,-7.791863699999965],[110.34637170000008,-7.785283799999945],[110.34556950000007,-7.782695299999943],[110.34774420000008,-7.780392099999972],[110.34881050000007,-7.770280199999945],[110.35102880000005,-7.768221499999981],[110.35249570000008,-7.772252199999969],[110.35334480000006,-7.771099599999957],[110.35214360000003,-7.766351399999962],[110.35906140000009,-7.771261599999946],[110.36064430000005,-7.771349199999975],[110.36211560000004,-7.768564399999946],[110.36658250000005,-7.769602799999973],[110.36653550000005,-7.771713299999931],[110.36769440000006,-7.772021799999948],[110.36851210000009,-7.770320699999957],[110.37007720000008,-7.775223499999981],[110.37544140000006,-7.774647],[110.375744,-7.776534799999979],[110.37955540000007,-7.778148899999962],[110.38074760000006,-7.780245299999933],[110.39054240000007,-7.7803966],[110.392757,-7.786296199999981],[110.394505,-7.786516899999981],[110.39482270000008,-7.788472899999931],[110.39711520000009,-7.788325099999952],[110.39696170000008,-7.786264599999981],[110.39908420000006,-7.785844199999929],[110.39996990000009,-7.791353199999946],[110.40143910000006,-7.792523299999971],[110.40167380000008,-7.7874974],[110.40291320000006,-7.786286899999936],[110.40565130000005,-7.787019899999962],[110.40643960000006,-7.784908],[110.40679620000009,-7.78787],[110.40857090000009,-7.788841199999979],[110.40935710000008,-7.7863],[110.41024050000004,-7.789574199999947],[110.411295,-7.789647599999967],[110.41122630000007,-7.787162099999932],[110.41285430000005,-7.787017099999957],[110.41282930000006,-7.783301399999971],[110.41623790000006,-7.783340299999963],[110.416497,-7.786700599999961],[110.42099420000005,-7.786347],[110.42068460000007,-7.793761599999925],[110.42290040000006,-7.795984799999928],[110.42090130000008,-7.807003899999927],[110.42202760000004,-7.812544799999955],[110.42105870000006,-7.816689],[110.42317960000008,-7.818481899999938],[110.42132590000006,-7.820815299999936],[110.42514230000006,-7.822843899999953],[110.42819640000005,-7.8217963],[110.42702830000007,-7.828873099999953],[110.43072740000008,-7.830370899999934],[110.42994570000008,-7.837450399999966],[110.43501770000006,-7.836723099999972],[110.43421870000009,-7.8330817],[110.43617150000006,-7.831940299999928],[110.43700280000007,-7.828235399999926],[110.43925880000006,-7.828735399999971],[110.44087610000008,-7.827389099999948],[110.44472220000006,-7.828550499999949],[110.44341180000004,-7.826860099999976],[110.44379330000004,-7.823929899999939],[110.452638,-7.824598099999946],[110.45374380000004,-7.820555899999931],[110.45604710000003,-7.821363699999949],[110.46017770000009,-7.819644899999957],[110.46126670000007,-7.8225937],[110.46186450000005,-7.821075399999927],[110.46535990000007,-7.822026899999969],[110.46625280000006,-7.827726199999972],[110.46758730000005,-7.828001699999959],[110.47064630000006,-7.822815399999968],[110.47601070000007,-7.823724299999981],[110.476734,-7.825480599999935],[110.47695120000009,-7.824038299999927],[110.47936620000007,-7.824900699999944],[110.48130910000003,-7.8174853],[110.48551240000006,-7.818453499999976],[110.48449580000005,-7.821242599999948],[110.492316,-7.8227999],[110.50166960000007,-7.8223226],[110.50517910000008,-7.823552399999926],[110.50737590000006,-7.821728399999927],[110.50952060000009,-7.822094399999969],[110.51109780000007,-7.828763699999968],[110.51455340000007,-7.828084699999977],[110.515088,-7.830264799999952],[110.51951650000007,-7.830975299999977]]]},"properties":{"shapeName":"Sleman","shapeISO":"","shapeID":"22746128B94539349095263","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.52050780000008,-0.635498],[100.50590190000008,-0.642901799999947],[100.48579040000004,-0.658972899999981],[100.48247860000004,-0.659028199999966],[100.47509770000005,-0.655212399999925],[100.46569820000008,-0.656005899999968],[100.45063650000009,-0.654063199999939],[100.43656480000004,-0.656871],[100.43002980000006,-0.656846499999972],[100.44173370000004,-0.664157499999931],[100.44224230000003,-0.672753199999931],[100.43942620000007,-0.680722599999967],[100.44210310000005,-0.688574099999926],[100.44232260000007,-0.701423499999976],[100.44875020000006,-0.713250799999969],[100.45391170000005,-0.7185097],[100.45788570000008,-0.7252808],[100.45614430000006,-0.729042099999958],[100.45871930000004,-0.731384299999945],[100.47347450000007,-0.731384299999945],[100.47768970000004,-0.734430299999929],[100.47909740000006,-0.736537899999973],[100.47675510000005,-0.750356699999941],[100.47909740000006,-0.752464299999929],[100.49619480000007,-0.756212199999936],[100.50041010000007,-0.7552757],[100.50251130000004,-0.756793199999947],[100.50549320000005,-0.765197799999953],[100.50451660000004,-0.786315899999977],[100.52850340000003,-0.7999878],[100.54137,-0.809081399999968],[100.54417790000008,-0.804465799999946],[100.553914,-0.802688199999977],[100.55822420000004,-0.800143599999956],[100.562953,-0.791954899999951],[100.565023,-0.791209799999933],[100.56620650000008,-0.792697899999951],[100.56295510000007,-0.797313599999939],[100.56443470000005,-0.799694699999975],[100.57019970000005,-0.794482599999981],[100.56901480000005,-0.789422],[100.57078830000006,-0.786742],[100.59710860000007,-0.785094599999979],[100.605979,-0.780625599999951],[100.60967250000004,-0.772139699999968],[100.62179780000008,-0.772730499999966],[100.62564120000008,-0.769603099999927],[100.62689780000005,-0.770292499999925],[100.63264390000006,-0.764709],[100.64288330000005,-0.744506799999954],[100.67508860000004,-0.738712499999963],[100.68053390000006,-0.739451899999949],[100.68790060000003,-0.743876599999965],[100.688876,-0.746524199999953],[100.68573460000005,-0.7606527],[100.68647960000004,-0.762443699999949],[100.684931,-0.762048099999959],[100.67818290000008,-0.767235299999925],[100.67263470000006,-0.768877799999927],[100.67303610000005,-0.7804761],[100.67062860000004,-0.782777499999952],[100.66970290000006,-0.7878124],[100.67353770000005,-0.790805099999943],[100.673741,-0.7924737],[100.67682650000006,-0.79352],[100.67949230000005,-0.804124399999978],[100.67900510000004,-0.806191899999931],[100.67505520000009,-0.808353599999975],[100.66625080000006,-0.810914499999967],[100.66115890000003,-0.809232],[100.65799910000004,-0.805982599999936],[100.65382780000004,-0.807740199999955],[100.64717950000005,-0.804397299999948],[100.64164060000007,-0.805016499999965],[100.64270750000009,-0.797283099999959],[100.63614960000007,-0.795201099999929],[100.625357,-0.799522],[100.62210330000005,-0.798034799999925],[100.620921,-0.799672599999951],[100.59253310000008,-0.807275299999958],[100.56133680000005,-0.819046899999933],[100.54477330000009,-0.8148854],[100.54256020000008,-0.817772599999955],[100.54299590000005,-0.827298299999939],[100.54111920000008,-0.833005799999967],[100.53823,-0.8359843],[100.54274280000004,-0.8359085],[100.53833010000005,-0.8359985],[100.531311,-0.844482399999947],[100.53747560000005,-0.855590799999959],[100.54351810000009,-0.854309099999966],[100.545105,-0.855407699999944],[100.55950930000006,-0.890808099999958],[100.56390380000005,-0.893371599999966],[100.56530760000004,-0.900329599999964],[100.56372070000003,-0.908081099999947],[100.555481,-0.923400899999933],[100.55371090000006,-0.922912599999961],[100.550293,-0.928283699999952],[100.54730220000005,-0.928894],[100.54571530000004,-0.9343262],[100.53771970000008,-0.945190399999944],[100.53607180000006,-0.950988799999948],[100.53660890000003,-0.9570719],[100.538574,-0.958973699999945],[100.54052730000006,-0.966308599999934],[100.54567670000006,-0.9701583],[100.55237870000008,-0.9874337],[100.55006560000004,-0.993625],[100.551601,-0.999557599999946],[100.55024950000006,-1.002609799999959],[100.55072730000006,-1.010214499999961],[100.55316430000005,-1.024155899999926],[100.55299450000007,-1.031422899999939],[100.55652170000008,-1.035199899999952],[100.55745080000008,-1.044094199999961],[100.559417,-1.046534799999961],[100.56658390000007,-1.047345099999973],[100.57239210000006,-1.054775599999971],[100.57649640000005,-1.056633799999929],[100.57893040000005,-1.069654699999944],[100.58609820000004,-1.072741],[100.58569340000008,-1.073608399999955],[100.59710690000009,-1.074096699999927],[100.60429360000006,-1.071037699999977],[100.60966540000004,-1.065279699999962],[100.61914070000006,-1.0606242],[100.62081730000006,-1.061088199999972],[100.62268070000005,-1.062988299999972],[100.62255560000006,-1.069807299999979],[100.62030440000007,-1.074924199999941],[100.62343330000004,-1.0824051],[100.621521,-1.095825199999979],[100.62535030000004,-1.100716099999943],[100.63740020000006,-1.109936199999936],[100.64537540000003,-1.109408499999972],[100.65005740000004,-1.110859199999936],[100.68668350000007,-1.098728699999924],[100.69348140000005,-1.093505899999968],[100.70089560000008,-1.090524199999948],[100.720646,-1.096334099999979],[100.72440680000005,-1.104063199999928],[100.73649570000003,-1.118101199999955],[100.736209,-1.121937899999978],[100.73181970000007,-1.126765299999931],[100.73506070000008,-1.134727199999929],[100.73675250000008,-1.153788499999962],[100.74472940000004,-1.156457499999931],[100.74952860000008,-1.160639899999978],[100.75558490000009,-1.162809599999946],[100.763615,-1.158386699999937],[100.77176360000004,-1.158614099999966],[100.77419170000007,-1.160065799999927],[100.77752950000007,-1.1631242],[100.77645210000009,-1.170469399999945],[100.778419,-1.173723299999949],[100.78747280000005,-1.183525],[100.79105650000008,-1.184627099999943],[100.80047610000008,-1.203002899999944],[100.80108640000009,-1.206909199999927],[100.79721070000005,-1.212754],[100.79600240000008,-1.220776399999977],[100.79687110000003,-1.223507899999959],[100.80571950000007,-1.233034799999928],[100.80897660000005,-1.24488],[100.80782410000006,-1.249763499999972],[100.80108640000009,-1.256286599999953],[100.80174490000007,-1.265441599999974],[100.79791260000007,-1.2753906],[100.80009770000004,-1.282569],[100.81408690000006,-1.289001499999927],[100.82055990000003,-1.281712],[100.82830810000007,-1.287109399999963],[100.82903580000004,-1.297057299999949],[100.83695940000007,-1.305596199999968],[100.84112550000003,-1.306579599999964],[100.84649660000008,-1.304626499999927],[100.85371230000004,-1.296632399999964],[100.85901670000004,-1.297918399999958],[100.86520740000009,-1.307678899999928],[100.87188720000006,-1.312011699999971],[100.87596730000007,-1.320460699999956],[100.88062610000009,-1.312559299999975],[100.88784020000008,-1.310235699999964],[100.89375010000003,-1.306199699999979],[100.90043790000004,-1.298097399999961],[100.91148870000006,-1.290227199999947],[100.91893670000007,-1.288425199999949],[100.92505060000008,-1.289327699999944],[100.92690430000005,-1.287320799999975],[100.93670650000007,-1.283691399999952],[100.94110110000008,-1.283996599999966],[100.944519,-1.287109399999963],[100.96447750000004,-1.278198199999963],[100.99072270000005,-1.261108399999955],[101.00892550000003,-1.241128799999956],[101.01788210000007,-1.226875599999971],[101.02210850000006,-1.201721599999928],[101.02102480000008,-1.175427599999978],[101.01921160000006,-1.168753199999969],[100.99664540000003,-1.135757],[101.00700670000003,-1.133202],[101.02271460000009,-1.132619099999943],[101.03842480000009,-1.135539299999948],[101.05867570000004,-1.133455199999958],[101.06144970000008,-1.1362414],[101.07325170000007,-1.141022899999939],[101.08384720000004,-1.148164399999928],[101.09337270000003,-1.150087699999972],[101.10180690000004,-1.156513299999972],[101.10564850000009,-1.161371899999949],[101.11538970000004,-1.166654899999969],[101.11603160000004,-1.169585499999926],[101.12200650000005,-1.175657599999965],[101.12268620000003,-1.179930199999944],[101.12897770000006,-1.188685499999963],[101.13417070000008,-1.1894458],[101.13680210000007,-1.191517],[101.14879010000004,-1.195362499999931],[101.15498070000007,-1.204508199999964],[101.16121060000006,-1.221501099999955],[101.16745130000004,-1.227500899999939],[101.169923,-1.225585299999977],[101.17596590000005,-1.227582],[101.19101210000008,-1.227460199999939],[101.19812160000004,-1.230242299999929],[101.20822160000006,-1.239598599999965],[101.22198390000005,-1.247498399999927],[101.23390460000007,-1.246409699999958],[101.23586270000004,-1.240237],[101.23473490000003,-1.2327681],[101.241188,-1.221490199999948],[101.24576530000007,-1.217125599999974],[101.24543530000005,-1.213752299999953],[101.23544590000006,-1.202241399999934],[101.23396780000007,-1.195166399999948],[101.22271730000006,-1.186955099999977],[101.21665220000006,-1.172313899999949],[101.21124690000005,-1.164254599999936],[101.208137,-1.162446799999941],[101.19823850000006,-1.162207699999954],[101.19602840000005,-1.160316899999941],[101.19320880000004,-1.154089499999941],[101.17658770000008,-1.134436499999936],[101.17453970000008,-1.130570699999964],[101.17337310000005,-1.121952699999952],[101.16930250000007,-1.113090199999931],[101.16826590000005,-1.102126899999973],[101.169346,-1.092397099999971],[101.16853730000008,-1.087329099999977],[101.16023630000007,-1.067293199999938],[101.16231120000003,-1.059101899999973],[101.16153110000005,-1.056753],[101.14573190000004,-1.0348851],[101.16249040000008,-1.030987699999969],[101.16794180000005,-1.033333399999947],[101.17786770000004,-1.032543399999952],[101.181628,-1.028625099999942],[101.18729680000007,-1.017487699999947],[101.19053190000005,-1.004433399999925],[101.18661730000008,-0.994387899999936],[101.188241,-0.987499799999966],[101.19131490000007,-0.984538199999974],[101.19987150000009,-0.981034899999941],[101.20260640000004,-0.978040199999953],[101.19651510000006,-0.960724099999936],[101.19543990000005,-0.952249799999947],[101.18720520000005,-0.950676199999975],[101.17562290000006,-0.955590299999926],[101.17240690000006,-0.958513899999957],[101.16100480000006,-0.9547133],[101.14872570000006,-0.957344499999977],[101.14112430000006,-0.960560499999929],[101.12999370000006,-0.972549199999946],[101.12407970000004,-0.972513899999967],[101.10881340000009,-0.9759389],[101.08279740000006,-0.986641799999973],[101.06969780000009,-0.986375499999951],[101.05269190000007,-0.972970799999928],[101.05267660000004,-0.969406],[101.05489660000006,-0.964504599999941],[101.064273,-0.957228899999961],[101.06557760000004,-0.952875399999925],[101.06883530000005,-0.948693599999956],[101.059924,-0.9268705],[101.06028590000005,-0.923295099999962],[101.057691,-0.918425099999979],[101.05980970000007,-0.918746499999941],[101.05723640000008,-0.917336499999976],[101.05336720000008,-0.909361399999966],[101.05330580000003,-0.904488699999945],[101.047493,-0.895123599999977],[101.047493,-0.891248399999938],[101.042649,-0.881560299999933],[101.03683620000004,-0.8796227],[101.03619030000004,-0.881237399999975],[101.032961,-0.881560299999933],[101.03231510000006,-0.883498],[101.02714820000006,-0.882529199999965],[101.02133530000003,-0.883498],[101.01519960000007,-0.8796227],[100.99905290000004,-0.875747499999932],[100.99162540000003,-0.865406399999927],[100.99388590000007,-0.855079699999976],[100.99388590000007,-0.851527499999975],[100.99227120000006,-0.849266899999975],[100.98581260000009,-0.845714599999951],[100.97354110000003,-0.844745799999941],[100.96966580000009,-0.839578899999935],[100.96766430000008,-0.839125499999966],[100.96554960000009,-0.8334864],[100.96146120000009,-0.831512699999962],[100.956527,-0.831794699999932],[100.95296240000005,-0.828314499999976],[100.93946540000007,-0.822283899999945],[100.93343480000004,-0.817976299999941],[100.92515930000008,-0.806739499999935],[100.90591290000003,-0.810501299999942],[100.90042130000006,-0.813570099999936],[100.896868,-0.818900099999951],[100.88798460000004,-0.824876199999949],[100.88620790000004,-0.822776499999975],[100.88330060000004,-0.810824299999979],[100.86747210000004,-0.798549099999946],[100.855843,-0.7874045],[100.85001910000005,-0.779293799999948],[100.84182730000003,-0.783228599999973],[100.82833020000004,-0.782654299999933],[100.82660720000007,-0.780069699999956],[100.81159690000004,-0.769966299999965],[100.80418560000004,-0.773514299999931],[100.80199050000004,-0.773336299999926],[100.80128730000007,-0.770938199999932],[100.79809280000006,-0.768772899999931],[100.78905730000008,-0.770132699999976],[100.78223470000006,-0.762123599999939],[100.77648,-0.751504],[100.77125920000003,-0.750258199999962],[100.76675030000007,-0.744859399999939],[100.76354670000006,-0.744028899999932],[100.75992770000005,-0.7405879],[100.75352040000007,-0.740706499999931],[100.75429170000007,-0.735663799999941],[100.74913020000008,-0.7328161],[100.74942690000006,-0.730502299999955],[100.74663850000007,-0.723917],[100.73412050000007,-0.724925599999949],[100.73183640000008,-0.723148799999933],[100.72833930000007,-0.723599399999955],[100.72216280000004,-0.732394399999976],[100.71409010000008,-0.734517899999958],[100.71001110000009,-0.7337409],[100.70670910000007,-0.726942699999938],[100.700882,-0.727525399999934],[100.69583190000009,-0.724223399999971],[100.69715920000004,-0.718640199999925],[100.69656660000004,-0.710983799999951],[100.70338920000006,-0.69633],[100.70326280000006,-0.679005299999972],[100.70671150000004,-0.673133199999938],[100.70868160000003,-0.661908099999948],[100.70997450000004,-0.660615199999938],[100.70647420000006,-0.661683099999948],[100.70598860000007,-0.657183099999941],[100.69871890000007,-0.653279099999963],[100.694519,-0.647827099999972],[100.69592290000008,-0.638305699999933],[100.69470210000009,-0.632812499999943],[100.690684,-0.628621499999952],[100.69929560000008,-0.623120599999936],[100.70321120000006,-0.616713299999958],[100.70321120000006,-0.606509099999926],[100.70564360000009,-0.600457699999936],[100.70137210000007,-0.599211899999943],[100.69704120000006,-0.594347099999936],[100.699177,-0.591914699999961],[100.70089750000005,-0.580642499999954],[100.70726730000007,-0.573922],[100.70111080000004,-0.569213899999966],[100.70045050000004,-0.557664099999954],[100.69855540000003,-0.555277299999943],[100.68908690000006,-0.554077099999972],[100.68236820000004,-0.555493599999977],[100.67770170000006,-0.554333699999972],[100.68048540000007,-0.542042899999956],[100.67791750000004,-0.5366821],[100.66632080000005,-0.534606899999972],[100.65339830000005,-0.537275399999942],[100.63723130000005,-0.538408799999956],[100.630127,-0.548706099999947],[100.62268070000005,-0.551696799999945],[100.617273,-0.557536899999945],[100.61248780000005,-0.559509299999945],[100.60650630000004,-0.550903299999959],[100.59948730000008,-0.554687499999943],[100.59667970000004,-0.565002399999969],[100.58312990000007,-0.584289599999977],[100.57867430000005,-0.597106899999972],[100.57348630000007,-0.6074829],[100.57171630000005,-0.608398399999942],[100.572876,-0.619384799999978],[100.579895,-0.630188],[100.585083,-0.643310499999927],[100.59167480000008,-0.671814],[100.59490970000007,-0.678283699999952],[100.59729,-0.679199199999971],[100.59869380000004,-0.685791],[100.59613040000005,-0.692077599999948],[100.59130860000005,-0.695007299999929],[100.58349610000005,-0.6984253],[100.56909180000008,-0.6968994],[100.56207280000007,-0.690979],[100.56048580000004,-0.687316899999928],[100.56127930000008,-0.685485799999924],[100.56011960000006,-0.682678199999941],[100.56347660000006,-0.676025399999958],[100.56152340000006,-0.671875],[100.55407710000009,-0.666626],[100.54589840000006,-0.669311499999935],[100.54388430000006,-0.668090799999959],[100.54028320000003,-0.663513199999954],[100.54089360000006,-0.659484899999939],[100.54248050000007,-0.658813499999951],[100.53967290000008,-0.653381299999978],[100.52490230000006,-0.645324699999946],[100.52288820000007,-0.640380899999968],[100.52050780000008,-0.638977099999977],[100.52172850000005,-0.637390099999948],[100.52050780000008,-0.635498]]]},"properties":{"shapeName":"Solok","shapeISO":"","shapeID":"22746128B74690118481661","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[101.16826590000005,-1.102126899999973],[101.16930250000007,-1.113090199999931],[101.17337310000005,-1.121952699999952],[101.17453970000008,-1.130570699999964],[101.17658770000008,-1.134436499999936],[101.19320880000004,-1.154089499999941],[101.19602840000005,-1.160316899999941],[101.19823850000006,-1.162207699999954],[101.208137,-1.162446799999941],[101.21124690000005,-1.164254599999936],[101.21665220000006,-1.172313899999949],[101.22271730000006,-1.186955099999977],[101.23396780000007,-1.195166399999948],[101.23544590000006,-1.202241399999934],[101.24543530000005,-1.213752299999953],[101.24576530000007,-1.217125599999974],[101.241188,-1.221490199999948],[101.23473490000003,-1.2327681],[101.23586270000004,-1.240237],[101.23390460000007,-1.246409699999958],[101.22198390000005,-1.247498399999927],[101.20822160000006,-1.239598599999965],[101.19812160000004,-1.230242299999929],[101.19101210000008,-1.227460199999939],[101.17596590000005,-1.227582],[101.169923,-1.225585299999977],[101.16745130000004,-1.227500899999939],[101.16121060000006,-1.221501099999955],[101.15498070000007,-1.204508199999964],[101.14879010000004,-1.195362499999931],[101.13680210000007,-1.191517],[101.13417070000008,-1.1894458],[101.12897770000006,-1.188685499999963],[101.12268620000003,-1.179930199999944],[101.12200650000005,-1.175657599999965],[101.11603160000004,-1.169585499999926],[101.11538970000004,-1.166654899999969],[101.10564850000009,-1.161371899999949],[101.10180690000004,-1.156513299999972],[101.09337270000003,-1.150087699999972],[101.08384720000004,-1.148164399999928],[101.07325170000007,-1.141022899999939],[101.06144970000008,-1.1362414],[101.05867570000004,-1.133455199999958],[101.03842480000009,-1.135539299999948],[101.02271460000009,-1.132619099999943],[101.00700670000003,-1.133202],[100.99664540000003,-1.135757],[101.01921160000006,-1.168753199999969],[101.02102480000008,-1.175427599999978],[101.02210850000006,-1.201721599999928],[101.01788210000007,-1.226875599999971],[101.00892550000003,-1.241128799999956],[100.99072270000005,-1.261108399999955],[100.96447750000004,-1.278198199999963],[100.944519,-1.287109399999963],[100.94110110000008,-1.283996599999966],[100.93670650000007,-1.283691399999952],[100.92690430000005,-1.287320799999975],[100.92505060000008,-1.289327699999944],[100.91893670000007,-1.288425199999949],[100.91148870000006,-1.290227199999947],[100.90043790000004,-1.298097399999961],[100.89375010000003,-1.306199699999979],[100.88784020000008,-1.310235699999964],[100.88062610000009,-1.312559299999975],[100.87596730000007,-1.320460699999956],[100.88454760000008,-1.328577499999938],[100.893216,-1.328396399999974],[100.89587540000008,-1.329847499999971],[100.89605180000007,-1.333799799999952],[100.89229890000007,-1.338278299999956],[100.89195460000008,-1.341417299999932],[100.90561960000008,-1.359594199999947],[100.905912,-1.363953299999935],[100.91042720000007,-1.373540199999979],[100.90939080000004,-1.378307199999938],[100.89787120000005,-1.380105499999956],[100.89371460000007,-1.385688799999969],[100.89522080000006,-1.390163199999961],[100.93371470000005,-1.414412399999947],[100.94169680000005,-1.4228917],[100.941961,-1.431074899999942],[100.93745880000006,-1.437704799999949],[100.93960630000004,-1.448513799999944],[100.93423040000005,-1.460072799999978],[100.93510070000008,-1.464082499999961],[100.942848,-1.467737499999942],[100.95774730000005,-1.480502],[100.96838150000008,-1.48119],[100.97578170000008,-1.484496299999932],[100.97751740000007,-1.486703399999953],[100.97596350000003,-1.49397],[100.97967160000007,-1.504486699999973],[100.98062260000006,-1.5182525],[100.98311420000005,-1.525399199999924],[100.99121,-1.530796899999928],[101.00193680000007,-1.548612399999968],[101.00800850000007,-1.552384399999937],[101.00877910000008,-1.555800499999975],[101.01513980000004,-1.559514099999944],[101.016299,-1.563116399999956],[101.02017330000007,-1.565495599999963],[101.01931340000004,-1.572703299999944],[101.01556450000004,-1.5806113],[101.01407470000004,-1.588853399999948],[101.01466240000008,-1.598849499999972],[101.01732770000007,-1.605879399999935],[101.02862590000007,-1.615392899999961],[101.06272260000009,-1.634694299999978],[101.059956,-1.641962],[101.06436230000008,-1.655615299999965],[101.06780140000006,-1.659199199999932],[101.07843810000008,-1.661977699999966],[101.09514920000004,-1.670735599999944],[101.10792120000008,-1.670721899999933],[101.12057850000008,-1.675980199999969],[101.13162660000006,-1.685208599999953],[101.13440270000007,-1.683868299999972],[101.15186670000008,-1.694019199999957],[101.16330210000007,-1.707936099999927],[101.16885310000004,-1.710661199999947],[101.17503040000008,-1.705075099999931],[101.18170150000009,-1.696076],[101.18317390000004,-1.6889326],[101.18818890000006,-1.677652799999976],[101.19038490000008,-1.677650299999925],[101.19458020000008,-1.686356299999943],[101.19439230000006,-1.695544799999936],[101.19714860000005,-1.710585399999957],[101.199175,-1.713953599999968],[101.21201560000009,-1.723876],[101.21842990000005,-1.723636099999965],[101.225348,-1.718991499999959],[101.23153730000007,-1.724156199999925],[101.24284810000006,-1.710719],[101.26727030000006,-1.696072199999946],[101.28405960000003,-1.696273799999972],[101.30884260000005,-1.701178099999936],[101.32259,-1.696803399999965],[101.32996380000009,-1.697143099999948],[101.33250240000007,-1.693886],[101.33276770000003,-1.688160299999936],[101.33548040000005,-1.686775799999964],[101.34671460000004,-1.691893099999959],[101.35335930000008,-1.691594399999929],[101.36287710000005,-1.693729699999949],[101.37564370000007,-1.6910992],[101.380894,-1.684642899999972],[101.39030240000005,-1.689613699999938],[101.39717840000009,-1.6896633],[101.40179720000003,-1.686694199999977],[101.40323170000005,-1.678557699999942],[101.41119660000004,-1.672098799999958],[101.42837140000006,-1.678595399999949],[101.42664920000004,-1.677036399999963],[101.42875170000008,-1.670168699999977],[101.43087260000004,-1.644403899999929],[101.43216490000003,-1.639965299999972],[101.44006650000006,-1.628341299999931],[101.45292980000005,-1.617824499999927],[101.46462460000004,-1.601324199999965],[101.48639950000006,-1.580745099999945],[101.48879770000008,-1.57885],[101.50451120000008,-1.575176899999974],[101.50843740000005,-1.572436599999946],[101.50903570000008,-1.5671674],[101.51637520000008,-1.554088799999931],[101.51545620000007,-1.543755699999963],[101.51666090000003,-1.540005599999972],[101.52161720000004,-1.5373072],[101.52422550000006,-1.527679099999943],[101.52744520000005,-1.523926699999947],[101.53217810000007,-1.521894799999927],[101.53922050000006,-1.513173499999937],[101.53872970000003,-1.508377899999971],[101.53405510000005,-1.505186399999957],[101.52843,-1.496836199999962],[101.52570180000004,-1.485714199999961],[101.534249,-1.484389599999929],[101.54258520000008,-1.474468599999966],[101.555582,-1.462865299999976],[101.55486990000009,-1.455685499999959],[101.55788180000008,-1.4510299],[101.55888110000006,-1.445365199999969],[101.56260110000005,-1.4444508],[101.56501710000003,-1.446571799999958],[101.568736,-1.444646099999943],[101.57296250000007,-1.446967299999926],[101.57939970000007,-1.447769],[101.59266670000005,-1.440876799999955],[101.59739390000004,-1.441377],[101.60734550000006,-1.437522599999966],[101.61186420000007,-1.431651799999941],[101.61482180000007,-1.424396],[101.62366480000009,-1.418621499999972],[101.62466410000007,-1.413058199999966],[101.62687420000003,-1.411033099999941],[101.63511710000006,-1.408192099999951],[101.63853040000004,-1.403030699999931],[101.64864350000005,-1.4016588],[101.65829360000004,-1.3984117],[101.66471390000004,-1.391739399999949],[101.67093960000005,-1.390688499999953],[101.67087240000006,-1.388601],[101.65003,-1.369575],[101.64444890000004,-1.3670369],[101.63472790000009,-1.365504699999974],[101.62226710000004,-1.359320599999933],[101.617527,-1.354693699999928],[101.60675390000006,-1.349616699999956],[101.60052180000008,-1.344926099999952],[101.585985,-1.326045199999953],[101.54933470000009,-1.325626799999952],[101.54222580000004,-1.333940499999926],[101.53541470000005,-1.334012799999925],[101.52906060000004,-1.336955399999965],[101.51446620000007,-1.3382754],[101.51349090000008,-1.335992799999929],[101.51697410000008,-1.3225023],[101.51878510000006,-1.3171503],[101.52286730000009,-1.312644299999931],[101.52435520000006,-1.308597599999928],[101.52376690000006,-1.304031],[101.51172070000007,-1.299572099999978],[101.49906860000004,-1.296909599999935],[101.467613,-1.282376199999931],[101.46838390000005,-1.267902799999945],[101.466495,-1.259748699999932],[101.45193220000004,-1.251034699999934],[101.44731730000007,-1.241186499999969],[101.44730740000006,-1.230355199999963],[101.44476650000007,-1.219801099999927],[101.45008,-1.2132714],[101.44949330000009,-1.21014],[101.43483070000008,-1.207934799999975],[101.41933350000005,-1.194152599999939],[101.40881240000004,-1.180394],[101.40815210000005,-1.171854199999927],[101.40301630000005,-1.1590042],[101.40391590000007,-1.148759],[101.41150620000008,-1.134926399999927],[101.414285,-1.122004499999946],[101.43557070000008,-1.098254099999963],[101.44049170000005,-1.087092499999926],[101.44197890000004,-1.0795282],[101.43943740000009,-1.064849199999969],[101.44053450000007,-1.057540399999937],[101.44730250000003,-1.050825],[101.44885640000007,-1.047104599999955],[101.455016,-1.043641599999944],[101.45650230000007,-1.0363326],[101.45922340000004,-1.032154599999956],[101.455201,-1.022717899999975],[101.45577890000004,-1.015018199999929],[101.45383070000008,-1.0120835],[101.44915830000008,-1.009281399999963],[101.429391,-1.004786399999944],[101.424981,-1.006094699999949],[101.42245270000006,-1.008119399999941],[101.420303,-1.019450899999924],[101.416482,-1.027675399999964],[101.409285,-1.031987399999934],[101.40494310000008,-1.037732799999958],[101.38968840000007,-1.044113599999946],[101.38579620000007,-1.044051299999978],[101.374966,-1.048105199999952],[101.37083120000005,-1.047649099999944],[101.36005810000006,-1.041523499999926],[101.34351830000008,-1.044668099999967],[101.34267810000006,-1.048845],[101.34794230000006,-1.061695899999961],[101.34306590000006,-1.067821099999946],[101.33950660000005,-1.079178],[101.34042,-1.085898499999928],[101.34399720000005,-1.094485499999962],[101.34179750000004,-1.102121899999929],[101.34407880000003,-1.115823399999954],[101.35071390000007,-1.131462599999963],[101.34851010000006,-1.133813599999939],[101.34435940000009,-1.135187299999927],[101.33475710000005,-1.134020499999963],[101.32382220000005,-1.1408333],[101.30812640000005,-1.1456749],[101.28724990000006,-1.141384599999981],[101.27687350000008,-1.146156599999927],[101.26123390000004,-1.140687499999956],[101.24982060000008,-1.147287499999948],[101.24121380000008,-1.148335],[101.23667460000007,-1.1512752],[101.23232760000008,-1.151082899999949],[101.21466820000006,-1.135042899999974],[101.20626880000003,-1.121360399999958],[101.19555370000006,-1.107924799999978],[101.18226560000005,-1.102804099999958],[101.17207840000003,-1.101375799999971],[101.16826590000005,-1.102126899999973]]]},"properties":{"shapeName":"Solok Selatan","shapeISO":"","shapeID":"22746128B56628508377078","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[119.80625120000002,-4.536602099999925],[119.81056260000003,-4.535483599999964],[119.81272970000009,-4.530351799999949],[119.82140780000009,-4.5273271],[119.845136,-4.532212699999945],[119.85131270000011,-4.5322696],[119.85321070000009,-4.533373499999925],[119.85377360000007,-4.537166199999945],[119.8549925000001,-4.537721599999941],[119.85921050000002,-4.529238599999928],[119.86836190000008,-4.528506599999957],[119.87463520000006,-4.532936099999972],[119.88717310000004,-4.524456099999952],[119.89181850000011,-4.523534],[119.898318,-4.516812899999934],[119.90146090000007,-4.515761199999929],[119.91051530000004,-4.51961],[119.91845200000012,-4.525911699999938],[119.92139330000009,-4.525529399999925],[119.9284391000001,-4.530515299999934],[119.93101350000006,-4.529980799999976],[119.93876130000001,-4.533789199999944],[119.94117670000003,-4.533454099999972],[119.94236610000007,-4.53118],[119.94407220000005,-4.533044699999948],[119.95166170000005,-4.533727499999941],[119.95338460000005,-4.532609099999945],[119.96028860000001,-4.535363599999926],[119.96237870000004,-4.532554199999936],[119.9679291000001,-4.533272299999965],[119.97077160000003,-4.531760799999972],[119.97632970000006,-4.538784899999939],[119.9806536000001,-4.534340099999952],[119.98495350000007,-4.533111699999949],[119.98678070000005,-4.5253616],[119.99098960000003,-4.524305199999958],[119.99394550000011,-4.5208147],[120.01408120000008,-4.526422199999956],[120.0194001000001,-4.523941499999978],[120.03210060000004,-4.523262],[120.03849570000011,-4.520324799999969],[120.04817830000002,-4.504210099999966],[120.0581585000001,-4.500004199999978],[120.0592898000001,-4.497316299999966],[120.05825550000009,-4.493463299999974],[120.06057740000006,-4.486714599999971],[120.05851970000003,-4.480119799999954],[120.05971650000004,-4.470547599999975],[120.05703630000005,-4.4645196],[120.05996790000006,-4.4532139],[120.06240490000005,-4.449416699999972],[120.06196480000006,-4.440081799999973],[120.064475,-4.436071199999958],[120.064553,-4.432981599999948],[120.053169,-4.415327299999944],[120.04896190000011,-4.397434499999974],[120.05434910000008,-4.399566099999959],[120.06156870000007,-4.399883799999941],[120.0678842000001,-4.4026011],[120.07993090000002,-4.401455899999974],[120.09473590000005,-4.392126699999949],[120.09619680000003,-4.385617699999955],[120.092873,-4.378756099999976],[120.095707,-4.362061],[120.0911301000001,-4.3559264],[120.08907210000007,-4.350397899999962],[120.07771550000007,-4.347860199999957],[120.07686130000002,-4.346456399999965],[120.07856850000007,-4.341647399999943],[120.0767806,-4.335388099999932],[120.08533590000002,-4.322437699999966],[120.08255070000007,-4.318776799999966],[120.08448320000002,-4.3175735],[120.08461690000001,-4.312297499999943],[120.07716840000012,-4.304218599999956],[120.07941670000002,-4.297821399999975],[120.08301590000008,-4.294510199999934],[120.08289740000009,-4.290389799999957],[120.073203,-4.285111099999938],[120.05198650000011,-4.286582299999964],[120.04290780000008,-4.285787399999947],[120.04005430000007,-4.2819051],[120.04107680000004,-4.278748099999973],[120.0399096000001,-4.274588],[120.04199950000009,-4.268581],[120.04154950000009,-4.263848899999971],[120.03975690000004,-4.261507199999926],[120.02966290000006,-4.264537399999938],[120.021732,-4.265004099999942],[120.01835830000005,-4.267235899999946],[120.01485080000009,-4.266843499999936],[120.01074210000002,-4.268669399999965],[120.00824450000005,-4.268654499999968],[120.00497650000011,-4.2647092],[119.993406,-4.266777],[119.97792360000005,-4.266918099999941],[119.97330090000003,-4.2706285],[119.96355360000007,-4.273633399999937],[119.96065780000004,-4.2722284],[119.95828070000005,-4.2672293],[119.95767160000003,-4.258460799999966],[119.95141300000012,-4.256647299999941],[119.938055,-4.255804],[119.93440080000005,-4.248952199999962],[119.935423,-4.238986899999929],[119.937356,-4.237304199999926],[119.93647910000004,-4.2320099],[119.9382227000001,-4.227928099999929],[119.93844210000009,-4.220320399999935],[119.93559760000005,-4.206448699999953],[119.93913630000009,-4.20289],[119.94319070000006,-4.201612399999931],[119.946579,-4.193121399999939],[119.9460269000001,-4.188921099999959],[119.94922940000004,-4.184739399999955],[119.94878340000002,-4.182248199999947],[119.9449327000001,-4.177315599999929],[119.94310840000003,-4.176993],[119.94455130000006,-4.17608],[119.9423091000001,-4.175979499999926],[119.94322370000009,-4.178844],[119.94221650000009,-4.180227299999956],[119.94449320000001,-4.179892],[119.94462410000006,-4.181071399999951],[119.94120750000002,-4.1859853],[119.93910790000007,-4.185339699999929],[119.93865570000003,-4.180440399999952],[119.931003,-4.180724099999964],[119.92899110000008,-4.183641199999954],[119.9274994000001,-4.182138099999975],[119.92638570000008,-4.184612499999957],[119.92537240000001,-4.182975],[119.92293010000003,-4.183382],[119.9248315000001,-4.181824799999958],[119.922454,-4.1819],[119.92196950000005,-4.180376599999931],[119.925182,-4.178375099999926],[119.9250095000001,-4.176402899999971],[119.92218630000002,-4.176512899999977],[119.9204056000001,-4.174969399999952],[119.9209876000001,-4.171618299999977],[119.91823810000005,-4.170445299999926],[119.92115990000002,-4.167643799999951],[119.91738050000004,-4.162666799999954],[119.91987230000007,-4.155805499999929],[119.92473770000004,-4.15345],[119.9266616000001,-4.147591199999965],[119.92914960000007,-4.146494599999926],[119.93220310000004,-4.141403399999945],[119.93282160000001,-4.134487799999931],[119.93052520000003,-4.134115],[119.9309631000001,-4.132525699999974],[119.92871570000011,-4.131452499999966],[119.92874350000011,-4.130026699999974],[119.9248004000001,-4.131489299999942],[119.92327030000001,-4.128846899999928],[119.92092480000008,-4.129351],[119.92005730000005,-4.126396199999931],[119.92237770000008,-4.1241731],[119.92202180000004,-4.122071],[119.92080070000009,-4.122758099999942],[119.92052320000005,-4.1212346],[119.9182561,-4.120947199999932],[119.9180665,-4.124404699999957],[119.91481240000007,-4.121141899999941],[119.91469140000004,-4.119026199999951],[119.90962410000009,-4.118305299999975],[119.90453570000011,-4.111759499999948],[119.90486590000012,-4.115330599999936],[119.90095250000002,-4.117233499999941],[119.89942480000002,-4.112046899999939],[119.89368070000012,-4.110866099999953],[119.89216320000003,-4.107827599999951],[119.88663480000002,-4.112054299999954],[119.87996670000007,-4.111172699999941],[119.86489870000003,-4.1060143],[119.84903310000004,-4.098392399999966],[119.83205410000005,-4.107336],[119.82566070000007,-4.106090499999937],[119.80703740000001,-4.111710499999958],[119.80589290000012,-4.118739599999969],[119.8091965000001,-4.128898099999958],[119.805809,-4.131596599999966],[119.80410770000003,-4.130366299999935],[119.8004532000001,-4.130869399999938],[119.79414370000006,-4.123759699999937],[119.78748320000011,-4.125478299999941],[119.7816772000001,-4.123750199999961],[119.77697750000004,-4.132668499999966],[119.77301790000001,-4.1309552],[119.76908110000011,-4.133101499999952],[119.76480870000012,-4.127753699999971],[119.76042180000002,-4.129155199999957],[119.74940760000004,-4.1290267],[119.7457108000001,-4.138761699999975],[119.7412700000001,-4.140900699999975],[119.73868090000008,-4.138623499999937],[119.730877,-4.147316599999954],[119.73373950000007,-4.162162799999976],[119.72974560000011,-4.173879099999965],[119.73589650000008,-4.183698499999934],[119.74426330000006,-4.188847099999975],[119.75499560000003,-4.192514199999948],[119.75478190000001,-4.200241099999971],[119.75640720000001,-4.206533699999966],[119.75288540000008,-4.208995],[119.74208810000005,-4.207713899999931],[119.73716800000011,-4.2100627],[119.72397450000005,-4.211663299999941],[119.72038540000005,-4.214242299999967],[119.7128861000001,-4.225763299999926],[119.70613780000008,-4.230522199999939],[119.71441190000007,-4.235490499999969],[119.71591890000002,-4.239316799999926],[119.71517850000009,-4.247018599999933],[119.71671530000003,-4.2493989],[119.72851850000006,-4.25252],[119.73590850000005,-4.260346499999969],[119.74439820000009,-4.264093399999979],[119.74554250000006,-4.270288299999947],[119.74152320000007,-4.275444499999935],[119.74137040000005,-4.278201199999955],[119.74958390000006,-4.279707899999948],[119.75481290000005,-4.28465],[119.7533204,-4.296764199999927],[119.75348870000005,-4.314149599999951],[119.75495580000006,-4.318463699999938],[119.753796,-4.331624899999952],[119.75600920000011,-4.347538899999961],[119.74976190000007,-4.364170799999954],[119.74955180000006,-4.368283099999928],[119.75238940000008,-4.378492799999947],[119.74982460000001,-4.386752499999943],[119.7527818000001,-4.399410699999976],[119.75591220000001,-4.404983499999958],[119.75466210000002,-4.416175199999941],[119.756453,-4.4207138],[119.75563350000004,-4.423229],[119.75379980000002,-4.423531899999944],[119.75397260000011,-4.438814899999954],[119.7518837,-4.449649],[119.75503470000001,-4.4626492],[119.754991,-4.472531],[119.759224,-4.482374],[119.7646784000001,-4.488943899999981],[119.77206500000011,-4.488110699999936],[119.78564290000008,-4.497800199999972],[119.78770550000002,-4.501985099999956],[119.7885592,-4.510710699999947],[119.7955988000001,-4.517551],[119.798565,-4.522672],[119.80683850000003,-4.529236199999957],[119.80625120000002,-4.536602099999925]]]},"properties":{"shapeName":"Soppeng","shapeISO":"","shapeID":"22746128B68490824698642","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[131.30004850000012,-1.533278799999948],[131.28928140000005,-1.532710499999951],[131.28652440000008,-1.534089],[131.27825340000004,-1.534318699999972],[131.27027070000008,-1.541964],[131.27498550000007,-1.544941799999947],[131.279103,-1.545682099999965],[131.29657440000005,-1.545438099999956],[131.2998004000001,-1.547299199999941],[131.30960230000005,-1.547051],[131.3127157,-1.545576399999959],[131.30985040000007,-1.540226899999936],[131.30004850000012,-1.533278799999948]]],[[[131.0179717000001,-1.311113899999953],[131.01999,-1.306473799999935],[131.022634,-1.304435],[131.02457720000007,-1.298223099999973],[131.01780410000003,-1.295522799999958],[131.0145629000001,-1.296025799999938],[131.01076290000003,-1.299658099999931],[131.01623940000002,-1.311169799999959],[131.0179717000001,-1.311113899999953]]],[[[130.73415970000008,-1.186977099999979],[130.73423760000003,-1.1884575],[130.7450169000001,-1.190993799999944],[130.7484138000001,-1.196516899999949],[130.74713050000003,-1.206845699999974],[130.7441715000001,-1.212552399999936],[130.742692,-1.219738599999971],[130.74374880000005,-1.225022599999932],[130.7498782,-1.243622199999947],[130.76211650000005,-1.252332499999966],[130.766313,-1.259386199999938],[130.7697952000001,-1.259654099999977],[130.77827750000006,-1.254743299999973],[130.78536880000001,-1.253225399999963],[130.7889166000001,-1.254941899999949],[130.79250150000007,-1.259198899999944],[130.79944710000007,-1.259647],[130.8104257000001,-1.267712899999935],[130.81333840000002,-1.272642099999928],[130.82342070000004,-1.277347199999951],[130.824541,-1.280707899999925],[130.83193470000003,-1.2889979],[130.84210840000003,-1.2954899],[130.86234880000006,-1.303695399999924],[130.8735630000001,-1.311354],[130.88286270000003,-1.313815599999941],[130.8987267000001,-1.322841699999969],[130.93047080000008,-1.331603399999949],[130.93074130000002,-1.334354099999928],[130.9340572000001,-1.337368599999934],[130.9360167000001,-1.342191799999966],[130.9455124000001,-1.353496299999961],[130.9649561000001,-1.363142799999935],[130.96766920000005,-1.363142799999935],[130.97942580000006,-1.355305],[130.984852,-1.346864299999936],[130.99223760000007,-1.3236525],[130.99989630000005,-1.312569899999971],[131.0015767000001,-1.303831699999932],[131.00661800000012,-1.293749299999945],[131.01367570000002,-1.285347199999933],[131.0183809,-1.26451],[131.03451280000002,-1.262829599999975],[131.03955410000003,-1.257116199999928],[131.043251,-1.243336799999952],[131.0412345000001,-1.230229599999973],[131.03989020000006,-1.225188299999957],[131.0324964,-1.213425399999949],[131.0298077000001,-1.202334699999938],[131.02368720000004,-1.195542099999955],[131.00695410000003,-1.183850099999972],[130.998552,-1.181161499999973],[130.97939530000008,-1.183514099999968],[130.95923030000006,-1.174439799999959],[130.95049210000002,-1.177464599999951],[130.946123,-1.177464599999951],[130.94040960000007,-1.181161499999973],[130.9316715000001,-1.182505799999944],[130.92192510000007,-1.192588299999954],[130.9181009,-1.201391699999931],[130.90273530000002,-1.1973604],[130.8917567000001,-1.197136399999977],[130.88525920000006,-1.201169299999947],[130.87338440000008,-1.198256599999979],[130.86800720000008,-1.198704699999951],[130.8612856000001,-1.202737699999943],[130.85321970000007,-1.202737699999943],[130.8478424000001,-1.205874399999971],[130.83754310000006,-1.203402599999947],[130.835521,-1.197460899999953],[130.83096650000005,-1.190629199999933],[130.82185750000008,-1.186757799999953],[130.81559310000011,-1.179095399999937],[130.8084216000001,-1.177421099999947],[130.79384720000007,-1.170589299999961],[130.7801052000001,-1.166059],[130.77198550000003,-1.167856599999936],[130.76708050000002,-1.166669599999977],[130.75692950000007,-1.167145399999924],[130.742692,-1.172394199999928],[130.7340263000001,-1.184441599999957],[130.73415970000008,-1.186977099999979]]],[[[131.2355371000001,-1.055635699999925],[131.22619830000008,-1.056976299999974],[131.2237086,-1.062530199999969],[131.22504920000006,-1.066552],[131.21853770000007,-1.076510699999972],[131.21987830000012,-1.0814901],[131.22390010000004,-1.083213699999931],[131.22677280000005,-1.0826392],[131.234005,-1.0643446],[131.2355371000001,-1.055635699999925]]],[[[131.244214,-1.014537099999927],[131.23895770000001,-1.013598399999978],[131.23470150000003,-1.015759799999955],[131.22975540000004,-1.0144526],[131.22750640000004,-1.020732],[131.2350901000001,-1.0229671],[131.2444018000001,-1.020356599999957],[131.2460913000001,-1.015851099999963],[131.244214,-1.014537099999927]]],[[[131.27001380000002,-0.9338112],[131.27414370000008,-0.942772199999979],[131.27470140000003,-0.947977899999955],[131.27069530000006,-0.9514611],[131.26699750000012,-0.968617399999971],[131.27671550000002,-0.977645],[131.27321060000008,-0.981149899999934],[131.26492650000012,-0.980406399999936],[131.26630720000003,-0.987416099999962],[131.2727397000001,-0.987309099999948],[131.27665170000012,-0.993506499999967],[131.2749371000001,-0.998650299999952],[131.26810620000003,-0.9993935],[131.25821840000003,-1.002872499999967],[131.2412776000001,-1.038716499999964],[131.24136690000012,-1.056063399999971],[131.23663120000003,-1.066417799999954],[131.22987380000006,-1.075190599999928],[131.2289254000001,-1.084556099999929],[131.23520860000008,-1.088705399999981],[131.23275230000002,-1.102692199999979],[131.22128880000002,-1.116134799999941],[131.2191865000001,-1.123964399999977],[131.21334050000007,-1.1327334],[131.2115089,-1.142486299999973],[131.2144412,-1.150877499999979],[131.2044456000001,-1.160959499999933],[131.1993533000001,-1.174996499999963],[131.1736912,-1.229457699999955],[131.14661850000005,-1.237333399999955],[131.14270870000007,-1.239798599999972],[131.14158020000002,-1.243184],[131.1365022000001,-1.245723],[131.1291672000001,-1.246005099999934],[131.1254997000001,-1.248262],[131.12098580000008,-1.248826299999962],[131.09474920000002,-1.247133599999927],[131.08346460000007,-1.240080699999965],[131.06287020000002,-1.253058],[131.054971,-1.256161199999951],[131.04566120000004,-1.265471],[131.0380441000001,-1.282115799999929],[131.0369157,-1.287476],[131.02901640000005,-1.295375199999967],[131.0273238000001,-1.299606899999958],[131.0295807000001,-1.314559],[131.01762140000005,-1.326384799999971],[131.01138560000004,-1.330282199999942],[131.01021630000002,-1.332815599999947],[131.007683,-1.353276899999969],[131.00456610000003,-1.362598599999956],[131.00191240000004,-1.3644562],[130.99819720000005,-1.3718865],[130.9955341000001,-1.386175199999968],[130.99258350000002,-1.387309],[130.99143520000007,-1.390012499999955],[130.98752090000005,-1.390592899999945],[130.98233690000006,-1.391493299999979],[130.9822190000001,-1.395105199999932],[130.97335930000008,-1.397662599999933],[130.97024880000004,-1.397052],[130.9640587,-1.401332899999943],[130.96353620000002,-1.410216799999944],[130.9614458000001,-1.412307099999964],[130.9551748,-1.413874899999939],[130.95099420000008,-1.423281399999951],[130.94211030000008,-1.426939499999946],[130.93636190000007,-1.426939499999946],[130.9347941000001,-1.429029799999967],[130.933749,-1.440004],[130.94001990000004,-1.446797599999968],[130.94838130000005,-1.452546],[130.97346520000008,-1.454636299999947],[130.97816850000004,-1.458294399999943],[130.9933234,-1.464565399999969],[131.041401,-1.459862199999975],[131.0617817000001,-1.455681499999969],[131.0706656000001,-1.455681499999969],[131.0764140000001,-1.458817],[131.0837302000001,-1.457249299999944],[131.08582050000007,-1.454113799999959],[131.09313670000006,-1.448887899999932],[131.11404,-1.458817],[131.11978840000006,-1.464565399999969],[131.132853,-1.468746099999976],[131.162927,-1.468126699999971],[131.1747031000001,-1.481558499999949],[131.18782040000008,-1.490932699999973],[131.20037720000005,-1.515261599999974],[131.1980228000001,-1.528603199999964],[131.2113644000001,-1.536451199999931],[131.23726290000002,-1.527818399999944],[131.2488926000001,-1.514561799999967],[131.26437610000005,-1.511796899999979],[131.29257810000001,-1.503502199999957],[131.31580320000012,-1.491889599999979],[131.321886,-1.485806799999978],[131.33681650000005,-1.462581599999965],[131.33902840000007,-1.454286899999943],[131.33736950000002,-1.452628],[131.33460460000003,-1.443227299999933],[131.31282850000002,-1.411894899999936],[131.31856820000007,-1.413366399999973],[131.32520390000002,-1.410048499999959],[131.3285218000001,-1.392906099999948],[131.33389640000007,-1.390950299999929],[131.3422101000001,-1.3841482],[131.3462409000001,-1.376842299999964],[131.34548510000002,-1.370796],[131.34340650000001,-1.370539],[131.3506410000001,-1.364151099999958],[131.3600417,-1.365810099999976],[131.36341530000004,-1.364284],[131.36000330000002,-1.3658568],[131.36426970000002,-1.368909499999972],[131.36451650000004,-1.386146],[131.36914860000002,-1.402358299999946],[131.37204370000006,-1.408727499999941],[131.3755178,-1.412491],[131.37783380000008,-1.413938599999938],[131.3856505000001,-1.409885499999973],[131.3902826000001,-1.411043499999948],[131.3917031000001,-1.412605699999972],[131.39284210000005,-1.422477399999934],[131.4019545000001,-1.431589799999927],[131.4076497000001,-1.430830399999934],[131.41182620000006,-1.431969399999957],[131.41979950000007,-1.429311699999971],[131.42473540000003,-1.420958699999971],[131.4292915000001,-1.423236799999927],[131.4266338000001,-1.424755499999947],[131.42739310000002,-1.427793],[131.43043060000002,-1.430071],[131.42169790000003,-1.435006899999962],[131.40878880000002,-1.439183399999933],[131.40005610000003,-1.445258299999978],[131.381072,-1.450953499999969],[131.3795533000001,-1.459306499999968],[131.3852485000001,-1.466900099999975],[131.40081540000006,-1.480948299999966],[131.4266338000001,-1.494616899999926],[131.4395429000001,-1.508665099999973],[131.44371940000008,-1.515119699999957],[131.44865530000004,-1.515119699999957],[131.4665003,-1.509424399999943],[131.4729549000001,-1.505627599999968],[131.4869231,-1.486194],[131.580708,-1.533625399999949],[131.6608725000001,-1.560903599999961],[131.67952790000004,-1.547614899999928],[131.675629,-1.546484],[131.669952,-1.547517],[131.691589,-1.524783],[131.713837,-1.495717],[131.723984,-1.480634],[131.7389958000001,-1.4529613],[131.74737760000005,-1.480701099999976],[131.76642690000006,-1.499227799999971],[131.81279940000002,-1.511118199999942],[131.85956520000002,-1.4880645],[131.87314250000009,-1.439938099999949],[131.84456250000005,-1.436700899999948],[131.8415490000001,-1.427086399999951],[131.8275274,-1.410060099999953],[131.82450630000005,-1.392297],[131.8287524000001,-1.385927899999956],[131.83020610000005,-1.373977899999943],[131.8355398000001,-1.365741799999967],[131.83604060000005,-1.3627372],[131.8307824000001,-1.353222499999958],[131.8307824000001,-1.348214799999937],[131.8345382000001,-1.3449598],[131.8380436000001,-1.344208599999945],[131.84630640000012,-1.352220899999963],[131.8737043000001,-1.334060199999954],[131.88520460000007,-1.322804499999961],[131.88941820000002,-1.315621499999963],[131.890925,-1.286547799999937],[131.89639120000004,-1.263182699999959],[131.87231,-1.223489399999949],[131.85574880000001,-1.189732],[131.85007080000003,-1.180854899999929],[131.84269530000006,-1.171826299999964],[131.82696420000002,-1.165705699999933],[131.80107140000007,-1.135829299999955],[131.88402670000005,-1.074909],[131.87580800000012,-1.051982899999928],[131.887665,-1.052265],[131.908295,-1.055589],[131.912079,-1.057544],[131.93787440000006,-1.0612325],[131.94192670000007,-1.0521151],[131.97189030000004,-1.050508899999954],[132.12499780000007,-0.991091399999959],[132.15330740000002,-0.935649299999966],[132.1466647000001,-0.928924099999961],[132.13727740000002,-0.924256899999932],[132.14369050000005,-0.900123],[132.15130030000012,-0.895557199999928],[132.15597660000003,-0.890880899999956],[132.17944080000007,-0.8794587],[132.11091540000007,-0.831490899999949],[132.05928,-0.777508399999931],[132.03364520000002,-0.780695899999955],[132.02833470000007,-0.755736699999943],[132.0294053,-0.7412837],[132.03373390000002,-0.723697299999969],[132.05005870000002,-0.7188839],[132.10273130000007,-0.683044799999948],[132.12399,-0.675212599999952],[132.13594180000007,-0.654865],[132.09854360000008,-0.643223299999931],[132.04149010000003,-0.582604],[132.02145,-0.5500146],[131.98346070000002,-0.564857199999949],[131.94905270000004,-0.601820499999974],[131.93471720000002,-0.608870699999954],[131.9234368000001,-0.619211099999973],[131.91356650000012,-0.624851299999932],[131.91006030000005,-0.634479699999929],[131.91168260000006,-0.6476],[131.8984385000001,-0.661244],[131.89314330000002,-0.662485099999969],[131.8846635000001,-0.6778618],[131.8623351000001,-0.685834099999965],[131.85516250000012,-0.690053199999966],[131.8510394000001,-0.6950682],[131.8391296000001,-0.703554599999961],[131.82731590000003,-0.711149099999943],[131.8176118,-0.715368299999966],[131.8020008000001,-0.714946399999974],[131.77710760000002,-0.720431299999973],[131.74672950000001,-0.7229629],[131.74012560000006,-0.726834099999962],[131.70968460000006,-0.731284799999969],[131.6866695000001,-0.7415138],[131.66475020000007,-0.743340399999965],[131.62445130000003,-0.739783799999941],[131.61554250000006,-0.741094],[131.6024414000001,-0.744238199999927],[131.58872470000006,-0.749688799999944],[131.5836554000001,-0.748549899999944],[131.57944320000001,-0.750988199999938],[131.574988,-0.7595272],[131.5590238000001,-0.767230899999959],[131.54686750000008,-0.770895699999926],[131.5374018000001,-0.768502099999978],[131.52641290000008,-0.771875],[131.5209728000001,-0.770895699999926],[131.51863450000008,-0.774792899999966],[131.51260120000006,-0.770182099999943],[131.5324710000001,-0.7609743],[131.53745560000004,-0.757097299999941],[131.54188640000007,-0.750451099999964],[131.5402249000001,-0.747128],[131.5402249000001,-0.742143399999975],[131.5369018,-0.737158699999952],[131.53302480000002,-0.735497199999941],[131.5219479000001,-0.735497199999941],[131.51197860000002,-0.738820299999929],[131.49868620000007,-0.739374099999964],[131.4826246,-0.748235699999952],[131.4789843000001,-0.751876],[131.4678722000001,-0.755550099999937],[131.4517552000001,-0.755697899999973],[131.44332710000003,-0.760873099999969],[131.42883660000007,-0.765456799999924],[131.41257180000002,-0.765161099999943],[131.40946670000005,-0.7775815],[131.40739660000008,-0.779799499999967],[131.3998167000001,-0.782253599999933],[131.4014323,-0.794952699999953],[131.39729540000008,-0.801505199999951],[131.39761220000003,-0.808035899999936],[131.4021914000001,-0.809960799999942],[131.40439020000008,-0.809252399999934],[131.40634180000006,-0.8147983],[131.40856080000003,-0.816541399999949],[131.40688110000008,-0.818322699999953],[131.40508230000012,-0.816644499999938],[131.40405440000006,-0.817655199999933],[131.40254430000005,-0.823329399999977],[131.39895510000008,-0.823594699999944],[131.3969651000001,-0.820252],[131.3957322000001,-0.824556199999961],[131.39269090000005,-0.825183],[131.3888849000001,-0.822933699999965],[131.38844630000006,-0.825964299999953],[131.39173610000012,-0.827711099999931],[131.3947362,-0.838301699999931],[131.401576,-0.841743099999974],[131.4006498000001,-0.845197699999972],[131.4033687000001,-0.8457467],[131.4047375,-0.847739799999943],[131.40517010000008,-0.850392599999964],[131.39676950000012,-0.856288099999972],[131.39746660000003,-0.857706],[131.40300530000002,-0.861206599999946],[131.40825890000008,-0.859501299999977],[131.4104076000001,-0.862795399999925],[131.41490440000007,-0.864504899999929],[131.4112275000001,-0.869279499999948],[131.41598350000004,-0.867140599999971],[131.41678190000005,-0.871395],[131.42231110000012,-0.873085099999969],[131.42252760000008,-0.874686799999949],[131.41886550000004,-0.876608],[131.418574,-0.887270499999943],[131.42219110000008,-0.892641],[131.4216060000001,-0.900198599999953],[131.4245856000001,-0.905238199999928],[131.423628,-0.90832],[131.42989450000005,-0.913673099999926],[131.43130480000002,-0.921387599999946],[131.428954,-0.927990299999976],[131.433649,-0.937372499999981],[131.4330986000001,-0.9440624],[131.42678780000006,-0.947523599999954],[131.423889,-0.946275499999956],[131.41015210000012,-0.9549921],[131.404938,-0.955531299999961],[131.3937522000001,-0.952887299999929],[131.36635910000007,-0.952274899999964],[131.3616402,-0.950674399999969],[131.35725560000003,-0.9523943],[131.34896980000008,-0.95007],[131.34629,-0.950685],[131.3407366,-0.946668799999941],[131.33173610000006,-0.9476467],[131.3237223000001,-0.944462099999953],[131.31765560000008,-0.944326399999966],[131.31546590000005,-0.945800799999972],[131.312596,-0.944480699999929],[131.311252,-0.942039099999931],[131.30217930000003,-0.938942],[131.29547690000004,-0.931587199999967],[131.28999520000002,-0.933675799999946],[131.28463550000004,-0.934047699999951],[131.28000070000007,-0.931596799999966],[131.27659030000007,-0.9330711],[131.27232930000002,-0.932338699999946],[131.27001380000002,-0.9338112]]]]},"properties":{"shapeName":"Sorong","shapeISO":"","shapeID":"22746128B12607985538440","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[132.0253507000001,-1.067743499999949],[131.97908,-1.063263],[131.93787440000006,-1.0612325],[131.912079,-1.057544],[131.908295,-1.055589],[131.887665,-1.052265],[131.87580800000012,-1.051982899999928],[131.88402670000005,-1.074909],[131.80107140000007,-1.135829299999955],[131.82696420000002,-1.165705699999933],[131.84269530000006,-1.171826299999964],[131.85007080000003,-1.180854899999929],[131.85574880000001,-1.189732],[131.87231,-1.223489399999949],[131.89639120000004,-1.263182699999959],[131.890925,-1.286547799999937],[131.88941820000002,-1.315621499999963],[131.88520460000007,-1.322804499999961],[131.8737043000001,-1.334060199999954],[131.84630640000012,-1.352220899999963],[131.8380436000001,-1.344208599999945],[131.8345382000001,-1.3449598],[131.8307824000001,-1.348214799999937],[131.8307824000001,-1.353222499999958],[131.83604060000005,-1.3627372],[131.8355398000001,-1.365741799999967],[131.83020610000005,-1.373977899999943],[131.8287524000001,-1.385927899999956],[131.82450630000005,-1.392297],[131.8275274,-1.410060099999953],[131.8415490000001,-1.427086399999951],[131.84456250000005,-1.436700899999948],[131.87314250000009,-1.439938099999949],[131.85956520000002,-1.4880645],[131.81279940000002,-1.511118199999942],[131.76642690000006,-1.499227799999971],[131.74737760000005,-1.480701099999976],[131.7389958000001,-1.4529613],[131.723984,-1.480634],[131.713837,-1.495717],[131.691589,-1.524783],[131.669952,-1.547517],[131.675629,-1.546484],[131.67952790000004,-1.547614899999928],[131.69751,-1.55507],[131.698303,-1.558634],[131.70845,-1.572298],[131.715363,-1.579279],[131.723755,-1.583962],[131.7279820000001,-1.585073],[131.738266,-1.583152],[131.760055,-1.575338],[131.76757070000008,-1.574306699999966],[131.76934540000002,-1.572421099999929],[131.76914820000002,-1.574991399999931],[131.771896,-1.576184],[131.77931200000012,-1.584259],[131.7913820000001,-1.607412],[131.799545,-1.612964],[131.807373,-1.61505],[131.811493,-1.614552],[131.819962,-1.609863],[131.827118,-1.600914],[131.833817,-1.59685],[131.836288,-1.593123],[131.837143,-1.588472],[131.839096,-1.586904],[131.841553,-1.587386],[131.845612,-1.583839],[131.851669,-1.583339],[131.854889,-1.580706],[131.862884,-1.579925],[131.8752290000001,-1.584272],[131.881515,-1.583953],[131.891861,-1.580015],[131.906067,-1.568793],[131.924652,-1.55729],[131.936157,-1.55497],[131.948898,-1.558231],[131.953629,-1.558537],[131.955582,-1.556582],[131.957413,-1.559585],[131.9542540000001,-1.565032],[131.936172,-1.574581],[131.924103,-1.579081],[131.904694,-1.595126],[131.893753,-1.613718],[131.884445,-1.637041],[131.88443,-1.647679],[131.889435,-1.661553],[131.893143,-1.667721],[131.898788,-1.670189],[131.901413,-1.673553],[131.90071100000011,-1.687809],[131.910202,-1.719122],[131.9139100000001,-1.722241],[131.918762,-1.722203],[131.931763,-1.715107],[131.943817,-1.713421],[131.9488520000001,-1.714305],[131.95079,-1.712296],[131.9515990000001,-1.707529],[131.953323,-1.706443],[131.963775,-1.708601],[131.983276,-1.702507],[131.9882050000001,-1.697521],[131.989807,-1.693785],[131.989654,-1.684875],[131.991486,-1.680568],[132.000351,-1.670366],[132.00444,-1.670768],[132.006424,-1.689755],[132.0102230000001,-1.698891],[132.0129700000001,-1.700102],[132.016449,-1.698257],[132.02656600000012,-1.702561],[132.041229,-1.71715],[132.032486,-1.722542],[132.025696,-1.71964],[132.023987,-1.720906],[132.015106,-1.735407],[132.018082,-1.741332],[132.017578,-1.743404],[132.0139160000001,-1.740871],[132.004379,-1.750913],[132.000366,-1.750634],[132.000122,-1.744545],[131.995102,-1.744068],[131.990738,-1.750609],[131.979813,-1.759369],[131.972183,-1.768779],[131.959717,-1.776038],[131.957596,-1.780978],[131.960037,-1.789905],[131.952194,-1.791491],[131.934006,-1.801438],[131.926956,-1.808596],[131.924271,-1.81388],[131.9469150000001,-1.843279],[131.950104,-1.844735],[131.953827,-1.841061],[131.957397,-1.828197],[131.959061,-1.825898],[131.961563,-1.827689],[131.960251,-1.832746],[131.962463,-1.835341],[131.9608,-1.840045],[131.952209,-1.848244],[131.939224,-1.855448],[131.933273,-1.86038],[131.927902,-1.862146],[131.926407,-1.86363],[131.9258880000001,-1.868063],[131.926681,-1.871283],[131.930328,-1.874918],[131.9303890000001,-1.879459],[131.933517,-1.886142],[131.941788,-1.895945],[131.959625,-1.922162],[131.96843,-1.925072],[131.983871,-1.922244],[131.988724,-1.927263],[131.991287,-1.927615],[131.984863,-1.938345],[131.9853670000001,-1.950421],[131.976547,-1.96023],[131.9699710000001,-1.961417],[131.9689330000001,-1.964004],[131.970978,-1.968382],[131.979141,-1.976855],[131.996964,-1.985768],[132.002563,-1.990252],[132.008499,-1.987538],[132.010788,-1.988161],[132.022415,-2.000201],[132.025192,-2.009597],[132.028137,-2.013072],[132.041687,-2.023292],[132.043915,-2.023925],[132.048462,-2.020524],[132.061386,-2.015619],[132.065826,-2.01712],[132.0655670000001,-2.020558],[132.067734,-2.020956],[132.071991,-2.014397],[132.077057,-2.012262],[132.083176,-2.01691],[132.090134,-2.017479],[132.096008,-2.019831],[132.096069,-2.022816],[132.093414,-2.02685],[132.08931,-2.025937],[132.081619,-2.031121],[132.080719,-2.033826],[132.082062,-2.038656],[132.077377,-2.038548],[132.056854,-2.052436],[132.050629,-2.049225],[132.045227,-2.054011],[132.043747,-2.052347],[132.03849800000012,-2.067707],[132.039948,-2.072999],[132.041885,-2.074319],[132.044846,-2.073568],[132.04277,-2.067073],[132.04396,-2.065002],[132.045898,-2.066087],[132.04673800000012,-2.062116],[132.048798,-2.062115],[132.046768,-2.070112],[132.047302,-2.072934],[132.055191,-2.080803],[132.067703,-2.086537],[132.065369,-2.09011],[132.066071,-2.09229],[132.086868,-2.105612],[132.093399,-2.112965],[132.101608,-2.116058],[132.110245,-2.123176],[132.116073,-2.126052],[132.12306200000012,-2.132944],[132.133957,-2.134996],[132.13778700000012,-2.138677],[132.13974,-2.14339],[132.142532,-2.143841],[132.144256,-2.147234],[132.154236,-2.148083],[132.181549,-2.146777],[132.192886,-2.160762],[132.2233890000001,-2.177211],[132.252899,-2.203974],[132.288101,-2.255702],[132.305908,-2.274542],[132.31601000000012,-2.280059],[132.329102,-2.272215],[132.340271,-2.272023],[132.349442,-2.269598],[132.367447,-2.269108],[132.370178,-2.266285],[132.378326,-2.264837],[132.396515,-2.252505],[132.4044950000001,-2.251057],[132.414108,-2.243449],[132.428208,-2.235659],[132.448639,-2.227986],[132.45393400000012,-2.223263],[132.4597930000001,-2.22291],[132.486877,-2.207972],[132.50914000000012,-2.200462],[132.512436,-2.197576],[132.5183720000001,-2.197458],[132.541596,-2.189893],[132.5055390000001,-2.123839],[132.4844210000001,-2.057899],[132.473007,-1.974391],[132.471329,-1.912633],[132.474457,-1.884792],[132.475021,-1.857744],[132.4871670000001,-1.805134],[132.4967187000001,-1.781363799999951],[132.49307180000005,-1.764692499999967],[132.4634701000001,-1.738206799999944],[132.43854240000007,-1.703931099999977],[132.43386840000005,-1.669655499999976],[132.41361470000004,-1.627589899999975],[132.39336090000006,-1.610452099999975],[132.37012860000004,-1.595779099999959],[132.3725260000001,-1.586988299999973],[132.33367120000003,-1.555688599999939],[132.3217989000001,-1.542737],[132.305461,-1.547577899999965],[132.30675270000006,-1.528933499999937],[132.3094953000001,-1.520705499999963],[132.3106977000001,-1.506277],[132.306091,-1.492456899999979],[132.306625,-1.487762],[132.30425910000008,-1.486961099999974],[132.30348340000012,-1.484634199999959],[132.2890549000001,-1.4690033],[132.2746264000001,-1.462991399999964],[132.2662097000001,-1.45217],[132.2445669000001,-1.437741399999936],[132.2366617,-1.434148199999925],[132.21734720000006,-1.440715099999977],[132.20949450000012,-1.441177],[132.20220580000012,-1.444335399999943],[132.184733,-1.436574],[132.1700853000001,-1.434921599999939],[132.16877880000004,-1.432373799999937],[132.10150610000005,-1.428331199999946],[132.10570880000012,-1.409419],[132.1212286000001,-1.361824899999931],[132.09749820000002,-1.348881],[132.0783328000001,-1.345789799999977],[132.0349979,-1.318780099999969],[132.0172391000001,-1.304826799999944],[132.0134296000001,-1.30343],[132.01263470000004,-1.286736599999927],[132.02083790000006,-1.278545],[132.02165450000007,-1.259764],[132.01757170000008,-1.248332099999971],[132.01300220000007,-1.241804299999956],[132.01824540000007,-1.240217099999938],[132.0381724,-1.238858499999935],[132.07254740000008,-1.225604099999941],[132.0695555000001,-1.191197299999942],[132.0700475000001,-1.170041599999934],[132.0253507000001,-1.067743499999949]]]},"properties":{"shapeName":"Sorong Selatan","shapeISO":"","shapeID":"22746128B34786274819360","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[110.796875,-7.305919599999982],[110.802269,-7.306023599999946],[110.80126190000004,-7.304340799999977],[110.80282590000007,-7.305259699999965],[110.80569460000004,-7.303718499999945],[110.80369570000005,-7.302921699999956],[110.80329890000007,-7.300127],[110.80615230000006,-7.3020792],[110.80621340000005,-7.300031599999954],[110.80705260000008,-7.300758799999926],[110.81128690000008,-7.297567299999969],[110.81320190000008,-7.2980623],[110.81248470000008,-7.296447699999931],[110.81416320000005,-7.295791099999974],[110.81325530000004,-7.294436399999938],[110.81571960000008,-7.295241799999928],[110.81559750000008,-7.296537399999977],[110.81696320000009,-7.29565],[110.81561280000005,-7.293708799999933],[110.81366730000008,-7.294116],[110.814125,-7.290688],[110.81081390000008,-7.296298499999978],[110.809494,-7.294375399999979],[110.80733490000006,-7.2958903],[110.80696110000008,-7.2929687],[110.80906680000004,-7.293739799999969],[110.81112670000005,-7.292657799999972],[110.80995940000008,-7.291852399999925],[110.81192780000003,-7.289660399999946],[110.81021880000009,-7.288275699999929],[110.81159210000004,-7.287801699999932],[110.81074520000004,-7.286780299999975],[110.80867,-7.288165099999958],[110.80657960000008,-7.285237799999948],[110.806366,-7.287160899999947],[110.80104060000008,-7.287730199999942],[110.804306,-7.286276799999939],[110.80341340000007,-7.285386099999926],[110.80592350000006,-7.282372],[110.80788420000005,-7.283213599999954],[110.80880740000003,-7.281424],[110.81088260000007,-7.283267],[110.80918880000007,-7.281035399999951],[110.81169130000006,-7.280139899999938],[110.81124110000007,-7.278820499999938],[110.81414790000008,-7.275476899999944],[110.80450440000004,-7.277377599999966],[110.81073760000004,-7.273563799999977],[110.80665590000007,-7.2734313],[110.80811310000007,-7.272211499999969],[110.80718230000008,-7.2713265],[110.81787870000005,-7.269927],[110.81239320000009,-7.268272399999944],[110.81023410000006,-7.269045799999958],[110.81018830000005,-7.267717799999957],[110.80747990000003,-7.267052199999966],[110.806366,-7.268483099999969],[110.80654910000004,-7.2667226],[110.80334470000008,-7.265820499999961],[110.80475620000004,-7.267506599999933],[110.80340580000006,-7.268149799999946],[110.804245,-7.271116699999936],[110.80232240000004,-7.272158099999956],[110.80235290000007,-7.274237099999937],[110.799591,-7.271801],[110.79786680000007,-7.274960499999963],[110.79691310000004,-7.273912399999972],[110.79423520000006,-7.275002499999971],[110.79299920000005,-7.278045599999928],[110.79438780000004,-7.284032299999978],[110.79267880000003,-7.289430099999947],[110.79485320000003,-7.2925176],[110.79361720000009,-7.295365299999958],[110.796875,-7.305919599999982]]],[[[110.80478370000009,-7.459251399999971],[110.809298,-7.458268199999964],[110.81271120000008,-7.4603302],[110.81362150000007,-7.458879],[110.81859590000005,-7.459554199999957],[110.82342530000005,-7.457949099999951],[110.82415770000006,-7.456098499999939],[110.82588960000004,-7.458505099999968],[110.82808680000005,-7.457488],[110.84075160000003,-7.4596486],[110.84215860000006,-7.460721399999954],[110.84266270000006,-7.464443199999948],[110.84516860000008,-7.465541499999972],[110.84754270000008,-7.471641],[110.84780880000005,-7.468719399999941],[110.85109710000006,-7.4676437],[110.85316030000007,-7.469930699999964],[110.85557530000005,-7.468496399999935],[110.85752820000005,-7.469464899999934],[110.85726930000004,-7.473085399999945],[110.86372120000004,-7.472997699999951],[110.86511230000008,-7.476332199999945],[110.86355590000005,-7.479352],[110.865654,-7.480644199999972],[110.86559120000004,-7.482922699999961],[110.87200930000006,-7.485429299999964],[110.87197530000009,-7.488798699999961],[110.87380520000005,-7.488608299999953],[110.87470810000008,-7.486244799999952],[110.87612150000007,-7.488338399999975],[110.87937390000008,-7.487934299999949],[110.88074040000004,-7.486240099999975],[110.88321040000005,-7.487597699999981],[110.88280490000005,-7.491981],[110.88685330000004,-7.490827899999942],[110.88919110000006,-7.4916089],[110.89246780000008,-7.489601499999935],[110.89512940000009,-7.493450299999949],[110.91808450000008,-7.496095199999957],[110.92053480000004,-7.49092],[110.939472,-7.494905299999971],[110.95157620000003,-7.500231699999972],[110.95413270000006,-7.5035277],[110.96402740000008,-7.507466799999975],[110.97552160000004,-7.515695199999925],[110.98860170000006,-7.521132],[111.0026,-7.524690799999973],[111.00912610000006,-7.529133199999933],[111.01345360000005,-7.528238499999929],[111.01764480000008,-7.529592299999933],[111.02106640000005,-7.531929099999957],[111.02425340000008,-7.527728599999932],[111.03175830000004,-7.534075199999961],[111.04305270000009,-7.536970499999939],[111.04942860000006,-7.537316699999963],[111.04575670000008,-7.527067399999964],[111.04125220000009,-7.520744299999933],[111.04033770000007,-7.511293799999976],[111.04507760000007,-7.508863699999949],[111.04817330000009,-7.509555299999931],[111.04980150000006,-7.508021099999951],[111.05708070000009,-7.5092821],[111.058258,-7.503790799999933],[111.06298830000009,-7.502775199999974],[111.06215540000005,-7.498902399999963],[111.06392170000004,-7.495842699999969],[111.07224870000005,-7.4987496],[111.07299990000007,-7.496624199999928],[111.073745,-7.497637399999974],[111.07484580000005,-7.496663399999932],[111.07925680000005,-7.499393099999963],[111.07890890000004,-7.508005899999944],[111.08118440000004,-7.508194399999979],[111.08023070000007,-7.5113678],[111.08290230000006,-7.513149899999974],[111.07926540000005,-7.517249899999968],[111.08075710000008,-7.521859599999971],[111.07882690000008,-7.524755],[111.08141,-7.527599799999962],[111.08842430000004,-7.528330599999947],[111.092279,-7.530570599999976],[111.09627180000007,-7.529166299999929],[111.11133460000008,-7.531277],[111.11540280000008,-7.529164199999968],[111.11597760000006,-7.526186299999949],[111.11765140000006,-7.525862299999972],[111.116746,-7.521416899999963],[111.119445,-7.522156499999937],[111.12392880000004,-7.519133099999976],[111.12455750000004,-7.513350499999945],[111.12969270000008,-7.511022499999967],[111.12986490000009,-7.514042699999948],[111.13964080000005,-7.523897599999941],[111.14776860000006,-7.525037099999963],[111.15199280000007,-7.521910199999979],[111.15020750000008,-7.520397599999967],[111.15065,-7.5180554],[111.14810940000007,-7.516478],[111.15028380000007,-7.511261399999967],[111.15357750000004,-7.5098593],[111.15208430000007,-7.507175399999937],[111.15341950000004,-7.505526],[111.15258020000005,-7.499448299999926],[111.14807130000008,-7.494094799999971],[111.14480170000007,-7.493376699999942],[111.14139560000007,-7.486203099999955],[111.13941950000009,-7.486849799999959],[111.13523860000004,-7.483703099999957],[111.13682550000004,-7.480194],[111.13316340000006,-7.474960299999964],[111.13511660000006,-7.473519299999964],[111.133995,-7.472125499999947],[111.13555910000008,-7.470850899999959],[111.13446810000005,-7.468478599999969],[111.13724520000005,-7.465707699999939],[111.13474270000006,-7.462098599999933],[111.131752,-7.464380199999937],[111.13220210000009,-7.461065299999973],[111.128746,-7.461122],[111.13105770000004,-7.457022099999961],[111.12841030000004,-7.451529499999936],[111.12522120000006,-7.450403699999981],[111.12556460000008,-7.446535099999949],[111.124237,-7.444298199999935],[111.12585450000006,-7.444402699999955],[111.12606810000005,-7.442703699999981],[111.12522120000006,-7.439472599999931],[111.12283320000006,-7.439099299999953],[111.12393190000006,-7.434353299999941],[111.121413,-7.425289199999952],[111.11906430000005,-7.423327899999947],[111.119957,-7.421076699999958],[111.11862940000009,-7.419153199999926],[111.11985010000006,-7.417099399999927],[111.11843870000007,-7.414453499999979],[111.120163,-7.412034899999981],[111.11985010000006,-7.409419],[111.12420650000007,-7.409182],[111.12337490000004,-7.40557],[111.12637330000007,-7.405075],[111.12964630000005,-7.401486399999953],[111.12837980000006,-7.400705799999969],[111.12913510000004,-7.399327699999958],[111.12734980000005,-7.398814199999947],[111.12818140000007,-7.396850499999971],[111.129303,-7.395483],[111.13098910000008,-7.396048],[111.13349910000005,-7.391061299999933],[111.13917540000006,-7.385703499999977],[111.13653560000006,-7.382373799999925],[111.13711550000005,-7.378960599999971],[111.13957980000004,-7.378250599999944],[111.14315790000006,-7.374329099999954],[111.14147180000003,-7.373228499999925],[111.14546970000004,-7.368330899999933],[111.14362340000008,-7.367295199999944],[111.14411930000006,-7.364781799999946],[111.14173890000006,-7.363590699999975],[111.14425660000006,-7.361932199999956],[111.14458470000005,-7.359613399999944],[111.14128110000007,-7.360987099999932],[111.14279170000009,-7.357722699999954],[111.14139560000007,-7.3571529],[111.140564,-7.352735899999971],[111.14300530000008,-7.347178],[111.14152530000007,-7.341569899999968],[111.14292910000006,-7.337825799999962],[111.141983,-7.332574799999975],[111.143547,-7.3289504],[111.14939880000009,-7.323744699999963],[111.14942170000006,-7.320848],[111.15530390000004,-7.313345899999945],[111.14689630000004,-7.3082061],[111.14208220000006,-7.307375399999955],[111.13702390000009,-7.297486299999946],[111.13798520000006,-7.293771699999979],[111.14146420000009,-7.2900004],[111.14010620000005,-7.2837519],[111.14389040000009,-7.281366299999945],[111.14428710000004,-7.279522399999962],[111.14677430000006,-7.279593899999952],[111.15042110000007,-7.273722099999929],[111.15081790000005,-7.268802099999959],[111.148674,-7.264358499999958],[111.14630130000006,-7.264508199999966],[111.143753,-7.261670599999945],[111.13613130000005,-7.261796899999979],[111.13406370000007,-7.259649699999954],[111.127449,-7.2579889],[111.12586970000007,-7.251235],[111.123436,-7.248821699999951],[111.11185450000005,-7.249248499999965],[111.10707850000006,-7.247235699999976],[111.098175,-7.249058699999978],[111.09530640000008,-7.252455199999929],[111.09146880000009,-7.252872399999944],[111.08896640000006,-7.251056199999937],[111.08510590000009,-7.254842699999926],[111.08020020000004,-7.254268599999932],[111.07872010000006,-7.257393299999933],[111.07925410000007,-7.262044399999979],[111.07486730000005,-7.262598],[111.07224270000006,-7.2671251],[111.06546780000008,-7.267148899999938],[111.06078340000005,-7.269930799999941],[111.05784610000006,-7.270611699999961],[111.05433650000003,-7.26825],[111.04566950000009,-7.266111799999976],[111.04135130000009,-7.266964399999949],[111.03198240000006,-7.2644973],[111.03311920000004,-7.257889199999966],[111.02986910000004,-7.256733899999972],[111.02338410000004,-7.2581606],[111.02096550000005,-7.260689199999945],[111.01808170000004,-7.258871099999965],[111.013031,-7.2621612],[111.007225,-7.260866599999929],[111.00558470000004,-7.2660765],[110.99649050000005,-7.267530399999941],[110.99498750000004,-7.273939599999949],[110.98642730000006,-7.274418799999978],[110.985405,-7.276446799999974],[110.981575,-7.277307],[110.978157,-7.277417599999978],[110.97732540000004,-7.276204599999971],[110.970993,-7.277550699999949],[110.96869660000004,-7.275548399999934],[110.96361540000004,-7.275963299999944],[110.955368,-7.2827124],[110.94792180000007,-7.281345299999941],[110.94498440000007,-7.277204],[110.93847660000006,-7.277828199999931],[110.93194580000005,-7.276108199999953],[110.92884830000008,-7.277649399999973],[110.925209,-7.275075899999933],[110.92454530000003,-7.271908699999926],[110.92224120000009,-7.269586499999946],[110.91970060000006,-7.280487],[110.91735080000007,-7.282009599999981],[110.907753,-7.281441199999961],[110.904686,-7.283214],[110.90074920000006,-7.282012899999927],[110.89984890000005,-7.279437499999972],[110.90083310000006,-7.275914599999965],[110.89699550000006,-7.2755213],[110.89505010000005,-7.273841399999981],[110.88919070000009,-7.272666899999933],[110.87876130000006,-7.274222799999961],[110.87696840000007,-7.275078299999961],[110.87699890000005,-7.277292699999975],[110.87435150000005,-7.276205],[110.86972810000009,-7.273117499999955],[110.87119290000004,-7.269153599999981],[110.86749270000007,-7.265151],[110.85779570000005,-7.271109099999933],[110.85535430000004,-7.269502599999953],[110.85197450000004,-7.269869299999925],[110.85310360000005,-7.271464299999934],[110.85031130000004,-7.270177299999943],[110.84944150000007,-7.272369399999945],[110.84397120000006,-7.269912199999965],[110.84266660000009,-7.274515099999974],[110.84429170000004,-7.275616199999945],[110.84323880000005,-7.275784499999929],[110.84116360000007,-7.271287899999948],[110.84228510000008,-7.268584699999963],[110.84030920000004,-7.269385299999954],[110.84108730000008,-7.267549],[110.83833310000006,-7.266547699999933],[110.83682250000004,-7.267758799999967],[110.83628850000008,-7.266246799999976],[110.83754730000004,-7.265287399999977],[110.83387760000005,-7.263840199999947],[110.83240510000007,-7.264674199999945],[110.83227540000007,-7.268759199999977],[110.830574,-7.268281899999977],[110.83267980000005,-7.273683],[110.83387760000005,-7.273451299999977],[110.83287810000007,-7.274599099999932],[110.83510590000009,-7.276490699999954],[110.83348850000004,-7.276633699999934],[110.82870480000008,-7.272834299999943],[110.83038330000005,-7.275182699999959],[110.82938380000007,-7.276061],[110.83259580000004,-7.278106699999967],[110.83294680000006,-7.280200499999978],[110.83489230000004,-7.279646799999966],[110.83373260000008,-7.281974299999945],[110.83728790000004,-7.280835599999932],[110.83520510000005,-7.282705699999951],[110.83654780000006,-7.284532499999955],[110.83338930000008,-7.2838764],[110.83338930000008,-7.287038299999949],[110.83905030000005,-7.286124699999959],[110.83889770000008,-7.284003199999972],[110.84033960000005,-7.282898899999964],[110.840416,-7.287765],[110.84450530000004,-7.285513899999955],[110.84220890000006,-7.287760699999978],[110.84263610000005,-7.290729],[110.84156040000005,-7.289221299999951],[110.83895110000009,-7.289224599999955],[110.840004,-7.293006399999967],[110.84179690000008,-7.293247199999939],[110.84044650000004,-7.293777],[110.84497070000003,-7.297140599999977],[110.842598,-7.298398899999938],[110.83988950000008,-7.295439699999974],[110.838562,-7.296661299999926],[110.83679960000006,-7.290485299999943],[110.83468630000004,-7.2924199],[110.83673860000005,-7.292619699999932],[110.836853,-7.295951799999955],[110.835434,-7.295122599999956],[110.83589170000005,-7.296815799999933],[110.83429720000004,-7.296558799999957],[110.83547210000006,-7.298246799999959],[110.83236690000007,-7.297376099999951],[110.83284,-7.294820299999969],[110.83020780000004,-7.296792499999981],[110.828537,-7.295618],[110.83035280000007,-7.294092099999943],[110.82637020000004,-7.292891],[110.82409670000004,-7.293886599999951],[110.82722470000004,-7.2951131],[110.82527920000007,-7.297230199999944],[110.82799530000005,-7.296108699999934],[110.83053590000009,-7.298812799999951],[110.83174130000003,-7.297588299999973],[110.830925,-7.298676399999977],[110.83240510000007,-7.299606299999937],[110.82993320000008,-7.299962499999936],[110.83287050000007,-7.300682499999937],[110.83261870000007,-7.302245599999935],[110.83444210000005,-7.301815899999951],[110.83428950000007,-7.3004517],[110.83581540000006,-7.301310499999943],[110.83525080000004,-7.299664],[110.83771520000005,-7.299363599999936],[110.83614350000005,-7.302977],[110.84076690000006,-7.301178],[110.84786990000003,-7.3038349],[110.84098050000006,-7.303285599999981],[110.84022520000008,-7.30412],[110.84152980000005,-7.305236799999932],[110.83738710000006,-7.304808099999946],[110.83849330000004,-7.307188],[110.83659360000007,-7.305472299999963],[110.82946780000009,-7.306250099999943],[110.83373260000008,-7.308016299999963],[110.835556,-7.307222799999977],[110.83699030000008,-7.309969399999943],[110.83817290000007,-7.309493],[110.83583830000003,-7.312875199999951],[110.83892820000005,-7.312802799999929],[110.83902740000008,-7.309514],[110.84102630000007,-7.3100757],[110.84078980000004,-7.312031199999979],[110.842659,-7.308536],[110.84409330000005,-7.309941699999968],[110.84339140000009,-7.311520099999939],[110.84690090000004,-7.308548899999948],[110.84764860000007,-7.310707499999978],[110.850853,-7.308492199999932],[110.84891510000006,-7.310598299999981],[110.857666,-7.311392299999966],[110.84219360000009,-7.312850899999944],[110.84158330000008,-7.314844599999958],[110.84435270000006,-7.316359],[110.850151,-7.315300399999956],[110.86125180000005,-7.316191199999935],[110.854187,-7.317163],[110.85430910000008,-7.318198199999927],[110.85359950000009,-7.316733299999953],[110.85087580000004,-7.316491599999949],[110.85337060000006,-7.318376],[110.85151670000005,-7.317883],[110.85104370000005,-7.319033599999955],[110.85026550000003,-7.3180055],[110.84985350000005,-7.319283499999926],[110.84963230000005,-7.317165799999941],[110.84746550000006,-7.317563],[110.84863280000008,-7.318184299999928],[110.84692380000007,-7.3181967],[110.84709930000008,-7.319385],[110.84272770000007,-7.318391799999972],[110.83936310000007,-7.320227599999953],[110.83952330000005,-7.321860299999969],[110.84440610000007,-7.322936499999969],[110.83988950000008,-7.3228736],[110.83952330000005,-7.324155299999973],[110.83836370000006,-7.321995699999945],[110.83663180000008,-7.322960799999976],[110.83919520000006,-7.325938699999938],[110.83859250000006,-7.326833199999953],[110.841835,-7.326118399999928],[110.83981320000004,-7.328227],[110.84273530000007,-7.327358199999935],[110.84275820000005,-7.329082899999946],[110.839592,-7.329899799999964],[110.84087370000009,-7.329823499999975],[110.84156040000005,-7.332150399999932],[110.845787,-7.331701199999941],[110.84324650000008,-7.333596199999931],[110.83868410000008,-7.332433199999969],[110.83876040000007,-7.331357899999944],[110.837883,-7.332139],[110.83825680000007,-7.337026099999946],[110.83743290000007,-7.338847099999953],[110.83500670000006,-7.339610499999935],[110.83485410000009,-7.344283599999926],[110.83305360000008,-7.3446665],[110.83474730000006,-7.341917499999965],[110.83132170000005,-7.339759299999969],[110.83370210000004,-7.3401737],[110.83599090000007,-7.335565499999973],[110.83469390000005,-7.333547599999974],[110.83618930000006,-7.333593399999927],[110.83783720000008,-7.329516899999931],[110.83609010000004,-7.330504399999938],[110.83638,-7.329286099999933],[110.83444210000005,-7.329414299999939],[110.83541110000004,-7.327718699999934],[110.83320620000006,-7.329010899999957],[110.83422850000005,-7.327616199999966],[110.83188630000006,-7.327118799999937],[110.83464050000003,-7.326468899999952],[110.833519,-7.326002099999926],[110.83575440000004,-7.324294499999951],[110.83143620000004,-7.324029399999972],[110.82661440000004,-7.327843599999937],[110.82873530000006,-7.325614399999949],[110.82794950000005,-7.324909199999979],[110.83231350000005,-7.322657099999958],[110.83044430000007,-7.321646699999974],[110.82102970000005,-7.3241338],[110.82010650000007,-7.3222642],[110.82456970000004,-7.322145399999954],[110.82427980000006,-7.320661499999972],[110.82561490000006,-7.321752099999969],[110.830162,-7.321006299999965],[110.83461760000006,-7.322328],[110.83575440000004,-7.320656699999972],[110.83653260000006,-7.3217473],[110.83725740000006,-7.319378299999926],[110.84025570000006,-7.318577299999959],[110.83988950000008,-7.317264],[110.83769230000007,-7.317226399999981],[110.83921810000004,-7.314818299999956],[110.83665470000005,-7.316730499999949],[110.83740230000006,-7.314949899999931],[110.83513640000007,-7.315395299999977],[110.83741760000004,-7.313526599999932],[110.83436580000006,-7.315192199999956],[110.83357240000004,-7.314038299999936],[110.83338930000008,-7.315073],[110.83120730000007,-7.314708699999926],[110.83008580000006,-7.312315],[110.82944490000006,-7.313406],[110.82836150000009,-7.311818099999925],[110.82704160000009,-7.312942],[110.82284550000008,-7.311863399999936],[110.82575220000007,-7.3101592],[110.82338720000007,-7.309685699999932],[110.822525,-7.311777599999971],[110.82128140000009,-7.311735099999964],[110.82160950000008,-7.309451099999933],[110.81899260000006,-7.312089899999933],[110.82146450000005,-7.308432099999948],[110.82073210000004,-7.307443599999942],[110.82593540000005,-7.305573899999956],[110.82206730000007,-7.303839699999969],[110.81912990000006,-7.307586199999946],[110.81884,-7.303098599999942],[110.81752780000005,-7.307655799999964],[110.81589510000003,-7.308116899999959],[110.81734470000004,-7.310269799999958],[110.815155,-7.3112764],[110.81459050000007,-7.314187499999946],[110.81422420000007,-7.311761799999942],[110.81104280000005,-7.312951099999964],[110.81529240000003,-7.309034299999951],[110.808609,-7.308974699999965],[110.81442260000006,-7.307722499999954],[110.814888,-7.302466799999934],[110.81050110000007,-7.303035199999954],[110.807724,-7.306333499999937],[110.80532840000006,-7.305272499999944],[110.79711910000009,-7.3078279],[110.79830170000008,-7.313226199999974],[110.80146790000003,-7.317313199999944],[110.80323030000005,-7.327512199999944],[110.79814910000005,-7.340480299999967],[110.79667170000005,-7.350983699999972],[110.79026030000006,-7.354769699999963],[110.78863480000007,-7.361951499999975],[110.79247170000008,-7.3626547],[110.79290510000004,-7.365439899999956],[110.79484870000005,-7.364362599999936],[110.79519810000005,-7.366735199999937],[110.80256960000008,-7.368451],[110.79895130000006,-7.369519399999945],[110.79758450000008,-7.371808],[110.78852610000007,-7.3774],[110.78801560000005,-7.379983399999958],[110.781517,-7.386292],[110.77836470000005,-7.386378699999966],[110.77836610000008,-7.388678],[110.77636880000006,-7.3878889],[110.77273560000003,-7.392242899999928],[110.77281190000008,-7.413285199999962],[110.77467030000008,-7.4174991],[110.77341780000006,-7.418882399999973],[110.76897670000005,-7.4173285],[110.774489,-7.429091099999937],[110.78208440000009,-7.431131799999946],[110.782533,-7.432340599999975],[110.78105650000003,-7.43656],[110.774498,-7.435757099999933],[110.77078250000005,-7.440175499999953],[110.77428440000006,-7.444713099999944],[110.77822150000009,-7.445614899999953],[110.78086850000005,-7.453098299999965],[110.78491970000005,-7.454128699999956],[110.78923040000006,-7.458556599999952],[110.79188540000007,-7.457286799999963],[110.79316710000006,-7.4604725],[110.79612730000008,-7.461554499999977],[110.79743190000005,-7.4597702],[110.80005980000004,-7.460756299999957],[110.80156710000006,-7.459163199999978],[110.80478370000009,-7.459251399999971]]]]},"properties":{"shapeName":"Sragen","shapeISO":"","shapeID":"22746128B37172978150880","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[107.75000010000008,-6.812845],[107.75178540000007,-6.813548399999945],[107.76132210000009,-6.811068299999931],[107.76982540000006,-6.805737799999974],[107.77410540000005,-6.8048508],[107.77644,-6.801184],[107.78031570000007,-6.800741899999935],[107.78498930000006,-6.804321199999947],[107.79325950000003,-6.801971799999933],[107.79768450000006,-6.802338],[107.80407030000003,-6.808708499999966],[107.816709,-6.799662299999966],[107.81790930000005,-6.792265699999973],[107.82556970000007,-6.782349899999929],[107.83145190000005,-6.781451499999946],[107.83475160000006,-6.7772229],[107.83739850000006,-6.776078699999971],[107.83899640000004,-6.761960199999976],[107.84189470000007,-6.758427299999937],[107.84030330000007,-6.75025],[107.83722310000007,-6.749054],[107.83987610000008,-6.741398099999969],[107.83895620000004,-6.739211099999977],[107.83641570000009,-6.738179899999977],[107.83794220000004,-6.736776299999974],[107.83672930000006,-6.736132399999974],[107.83858040000007,-6.730566099999976],[107.83764280000008,-6.7292698],[107.83887350000003,-6.724985499999946],[107.83761240000007,-6.724039699999935],[107.83958150000007,-6.722773099999927],[107.83824580000004,-6.720990899999947],[107.83746130000009,-6.722041499999932],[107.83569480000006,-6.720884399999932],[107.83530220000006,-6.718274899999926],[107.83342880000004,-6.717268899999965],[107.83539920000004,-6.716150399999947],[107.83377940000008,-6.715039199999978],[107.83481450000005,-6.7130202],[107.83730010000005,-6.711108199999956],[107.83674860000008,-6.709151399999939],[107.837966,-6.708226199999956],[107.83552520000006,-6.70717],[107.83763230000005,-6.703923599999939],[107.83657850000009,-6.701570799999956],[107.83835580000004,-6.701313599999935],[107.83738720000008,-6.699880899999926],[107.84032650000006,-6.697985199999948],[107.84041620000005,-6.691746199999955],[107.836831,-6.690447899999981],[107.83684340000008,-6.688809699999979],[107.83527250000009,-6.689168199999926],[107.83514990000003,-6.686853599999949],[107.82917810000004,-6.684012299999949],[107.82645160000004,-6.683302199999957],[107.82574080000006,-6.685937399999943],[107.823522,-6.686721299999931],[107.82300780000008,-6.684093099999927],[107.82184110000009,-6.686368099999981],[107.81606460000006,-6.683504],[107.81728360000005,-6.681454899999949],[107.81215510000004,-6.680609199999935],[107.80990940000004,-6.677472],[107.81932960000006,-6.677089599999931],[107.81918650000006,-6.67485],[107.81415980000008,-6.673998499999925],[107.81811690000006,-6.669699899999955],[107.82610110000007,-6.670960899999955],[107.83241480000004,-6.667438299999958],[107.840902,-6.665154899999948],[107.84113620000005,-6.661991499999942],[107.84422190000004,-6.6573146],[107.84772070000008,-6.655577899999969],[107.84953390000004,-6.656650599999978],[107.850205,-6.652269799999942],[107.85183960000006,-6.6524123],[107.84885130000004,-6.642412899999954],[107.85048050000006,-6.640836299999933],[107.85063560000003,-6.632501599999955],[107.85501650000003,-6.625386099999957],[107.85175420000007,-6.619190899999978],[107.85296850000009,-6.614687299999957],[107.85099950000006,-6.6126228],[107.85068820000004,-6.606968299999949],[107.85678230000008,-6.599878199999978],[107.85215010000007,-6.594913299999973],[107.85295090000005,-6.591681899999969],[107.84790720000007,-6.586219599999936],[107.849001,-6.581161499999951],[107.85283730000003,-6.5812799],[107.85558360000005,-6.578923],[107.85129550000005,-6.574844599999949],[107.85143290000008,-6.571598299999948],[107.86305,-6.567656299999953],[107.86716110000003,-6.568627],[107.87372820000007,-6.566567299999974],[107.87712150000004,-6.567128599999933],[107.877716,-6.5684407],[107.88101970000008,-6.5666454],[107.88043220000009,-6.562109299999975],[107.88357550000006,-6.559950599999979],[107.88443,-6.556770099999937],[107.88670360000003,-6.555251899999973],[107.89368450000006,-6.5571401],[107.89236460000006,-6.553102299999978],[107.89603430000005,-6.553245799999956],[107.89832210000009,-6.549588299999925],[107.89358630000004,-6.549290299999939],[107.89388290000005,-6.546519199999977],[107.89670140000004,-6.547298299999966],[107.90132080000006,-6.545681],[107.90927450000004,-6.539397599999972],[107.91142870000004,-6.53421],[107.90898610000005,-6.532552199999941],[107.90827950000005,-6.528713],[107.91192640000008,-6.528056899999967],[107.91623690000006,-6.524644699999953],[107.91736610000004,-6.516970399999934],[107.92015140000007,-6.514494799999966],[107.91801440000006,-6.511510499999929],[107.91975770000005,-6.508631899999955],[107.91552080000008,-6.5010003],[107.91326970000006,-6.501476099999934],[107.91103230000004,-6.506908],[107.90682440000006,-6.507126399999947],[107.90570970000005,-6.505371199999956],[107.90932650000008,-6.498393699999951],[107.90777580000008,-6.496073699999954],[107.91701150000006,-6.495498099999963],[107.91947980000003,-6.493886499999974],[107.92029890000003,-6.490985599999931],[107.91551540000006,-6.494894599999952],[107.91307630000006,-6.4912213],[107.91904290000008,-6.487992299999974],[107.91876170000006,-6.485829299999978],[107.91231380000005,-6.488389299999938],[107.91341110000008,-6.484546299999977],[107.91169790000004,-6.482511],[107.91064720000008,-6.485613699999931],[107.908464,-6.483365499999934],[107.90561820000005,-6.484217899999976],[107.90286150000009,-6.482397399999968],[107.89829420000007,-6.484991299999933],[107.89653690000006,-6.480426099999931],[107.89940910000007,-6.477354799999944],[107.89775210000005,-6.475178899999946],[107.89918830000005,-6.471598799999981],[107.89517340000003,-6.472044699999969],[107.89509670000007,-6.4626924],[107.89199710000008,-6.462968499999931],[107.89101680000005,-6.4599662],[107.88798510000004,-6.459771899999964],[107.88729330000007,-6.4579194],[107.87890850000008,-6.457212899999945],[107.88892520000007,-6.4577528],[107.88988030000007,-6.455015099999969],[107.89301950000004,-6.452409099999954],[107.89110330000005,-6.450870899999927],[107.89120570000006,-6.448943399999962],[107.89479390000008,-6.448923],[107.89004520000009,-6.443294299999934],[107.89266210000005,-6.4388898],[107.89157880000005,-6.433800499999961],[107.89704040000004,-6.425654599999973],[107.89457980000009,-6.4229134],[107.89314280000008,-6.416518],[107.88794710000008,-6.416313],[107.89170080000008,-6.413956],[107.89135780000004,-6.410301499999946],[107.89310490000008,-6.407898099999954],[107.890503,-6.4036],[107.89662180000005,-6.404213699999957],[107.89890310000004,-6.406225399999926],[107.89869570000008,-6.401365],[107.89483650000005,-6.397199],[107.898079,-6.390274799999929],[107.90827190000005,-6.377573799999936],[107.91401320000006,-6.376910199999941],[107.91537790000007,-6.375434499999926],[107.91888380000006,-6.371031],[107.91464080000009,-6.370474399999978],[107.92351540000004,-6.359858299999928],[107.92031110000005,-6.351093099999957],[107.91757210000009,-6.350590499999953],[107.91661080000006,-6.347509699999932],[107.91967490000008,-6.340363399999944],[107.92253360000007,-6.341153599999927],[107.92426760000006,-6.340019499999926],[107.92393940000005,-6.336930499999937],[107.92829160000008,-6.327468499999952],[107.92394010000004,-6.324072899999976],[107.91797780000007,-6.323521199999959],[107.92158890000007,-6.322037699999953],[107.92800320000003,-6.324946199999943],[107.93005130000006,-6.3186065],[107.92714530000006,-6.312185],[107.93047670000004,-6.309733699999981],[107.92957140000004,-6.308019599999966],[107.92732640000008,-6.311423],[107.92273190000009,-6.312282399999958],[107.92187510000008,-6.310755599999936],[107.92355360000005,-6.302905899999928],[107.92184460000004,-6.295571199999927],[107.92501840000006,-6.290853799999979],[107.923256,-6.290294],[107.92290510000004,-6.288185399999975],[107.92452250000008,-6.285414499999945],[107.92149360000008,-6.283394199999975],[107.92542270000007,-6.279590399999961],[107.92306530000008,-6.279218499999956],[107.92334760000006,-6.2769387],[107.92073140000008,-6.276841299999944],[107.92135950000005,-6.27431],[107.91803750000008,-6.272776399999941],[107.91808330000003,-6.271148499999981],[107.91661510000006,-6.273759699999971],[107.91516970000004,-6.273823099999959],[107.91551980000008,-6.2706521],[107.91183480000007,-6.2697752],[107.91468820000006,-6.267751499999974],[107.91617510000003,-6.269432],[107.91804260000004,-6.269244899999933],[107.92535,-6.262929699999972],[107.92636280000005,-6.256382699999961],[107.923665,-6.251965699999971],[107.92058050000009,-6.249329599999953],[107.91133630000007,-6.248080399999935],[107.90462620000005,-6.243119199999967],[107.90312710000006,-6.243547499999977],[107.89495370000009,-6.234981499999947],[107.89070630000003,-6.226451099999963],[107.88802940000005,-6.226558199999943],[107.88938570000005,-6.2229176],[107.88810080000007,-6.221489899999938],[107.88852910000008,-6.209604499999955],[107.88649470000007,-6.205571299999974],[107.88699440000005,-6.2045006],[107.89184850000004,-6.208533799999941],[107.89720230000006,-6.207177499999943],[107.89395430000008,-6.196541299999978],[107.897672,-6.194302199999981],[107.89700570000008,-6.191884699999946],[107.89995150000004,-6.186937799999953],[107.899309,-6.185438699999963],[107.89124270000008,-6.182404899999938],[107.88660270000008,-6.1820123],[107.88189140000009,-6.184831899999949],[107.88546060000004,-6.186473799999931],[107.88435410000005,-6.189579],[107.88571040000005,-6.193362299999933],[107.88210550000008,-6.194861399999979],[107.876145,-6.193576499999949],[107.87645550000008,-6.197970099999964],[107.87364660000009,-6.1987875],[107.87125520000006,-6.201500099999976],[107.87136230000004,-6.206782499999974],[107.86790020000007,-6.209352299999978],[107.86429530000004,-6.207460599999933],[107.85692370000004,-6.212571699999955],[107.85445030000005,-6.211815],[107.84823150000005,-6.197318199999927],[107.84787460000007,-6.192975599999954],[107.85025410000009,-6.189436199999932],[107.82619180000006,-6.188008499999967],[107.81860720000009,-6.186045499999977],[107.81768520000008,-6.188097699999958],[107.81239090000008,-6.189852599999938],[107.813329,-6.19318],[107.81054680000005,-6.198032],[107.80911910000003,-6.196217699999977],[107.80703710000006,-6.197883299999944],[107.80456840000005,-6.197407399999975],[107.80462790000007,-6.199935599999947],[107.80162380000007,-6.199935599999947],[107.80058280000009,-6.201660699999934],[107.80536550000005,-6.201960499999927],[107.80125550000008,-6.204520499999944],[107.79344550000008,-6.205220599999961],[107.79301550000008,-6.203880599999934],[107.78411250000005,-6.206421699999964],[107.78362920000006,-6.207774299999926],[107.77343360000003,-6.212014299999964],[107.76483820000004,-6.212754899999936],[107.75955580000004,-6.217323499999964],[107.76049890000007,-6.219593199999963],[107.75798530000009,-6.219536399999981],[107.75050850000008,-6.227578],[107.74842850000005,-6.226708],[107.74477930000006,-6.229815599999938],[107.74278480000004,-6.227756499999941],[107.73657020000007,-6.232385499999964],[107.73278690000006,-6.233456199999978],[107.73278690000006,-6.234883899999943],[107.72103530000004,-6.237409099999979],[107.71125570000004,-6.234839299999976],[107.70668710000007,-6.231912499999964],[107.701833,-6.228414699999973],[107.69578920000004,-6.220895599999949],[107.69431390000005,-6.227843699999937],[107.68755630000004,-6.232935699999928],[107.67870470000008,-6.237028399999929],[107.66761640000004,-6.2390271],[107.66775920000003,-6.234268199999974],[107.65890760000008,-6.230984599999942],[107.65276860000006,-6.226416],[107.64357770000004,-6.214957899999945],[107.64121580000005,-6.216564499999947],[107.63985070000007,-6.214621099999931],[107.62995120000005,-6.224188699999956],[107.62560840000003,-6.224411599999939],[107.62233190000006,-6.222124699999938],[107.61302730000006,-6.231887499999971],[107.61104550000005,-6.231857699999978],[107.60872150000006,-6.235444399999949],[107.60507950000004,-6.235575599999947],[107.60037470000009,-6.237899099999936],[107.60014230000007,-6.241032599999926],[107.60258490000007,-6.242731799999945],[107.60173810000003,-6.248693699999933],[107.59925850000008,-6.251138],[107.599434,-6.252996199999927],[107.59211740000006,-6.250898599999971],[107.58580030000007,-6.252431599999966],[107.58063520000007,-6.256424199999969],[107.58388530000008,-6.260282299999972],[107.58217630000007,-6.261414299999956],[107.58172620000005,-6.266316199999949],[107.57820140000007,-6.2678325],[107.57982650000008,-6.271259099999952],[107.578888,-6.280449199999964],[107.58226790000003,-6.288500099999965],[107.58459480000005,-6.289283],[107.58473220000008,-6.293324299999938],[107.58614360000007,-6.294452],[107.58471690000005,-6.298510299999975],[107.58020030000006,-6.300528299999939],[107.57886520000005,-6.306432],[107.58125320000005,-6.306557399999974],[107.57989510000004,-6.308817199999964],[107.58273330000009,-6.312414399999966],[107.57989510000004,-6.313741899999968],[107.579033,-6.3223545],[107.57558450000005,-6.327332699999943],[107.57633980000008,-6.3283703],[107.57156380000004,-6.330471699999975],[107.57035840000009,-6.332769199999973],[107.57209790000007,-6.331993299999965],[107.57279220000004,-6.333011399999975],[107.56804670000008,-6.336302499999931],[107.56851970000008,-6.338850699999966],[107.57073980000007,-6.337323399999946],[107.57047280000006,-6.340965499999925],[107.56292730000007,-6.349894699999936],[107.56542980000006,-6.3526485],[107.56224070000007,-6.355064599999935],[107.56204230000009,-6.3586523],[107.559456,-6.358849799999973],[107.55806740000008,-6.364610899999946],[107.55576330000008,-6.365091099999972],[107.55500040000004,-6.362726],[107.55351270000006,-6.363282899999945],[107.55339060000006,-6.365805399999942],[107.548607,-6.371395299999961],[107.54953780000005,-6.3738897],[107.54830180000005,-6.379542599999979],[107.54296120000004,-6.381917199999975],[107.54210670000003,-6.384701],[107.53776560000006,-6.386966899999948],[107.53731550000003,-6.389689199999964],[107.53981790000006,-6.396142299999951],[107.53964250000007,-6.403827399999955],[107.53709420000007,-6.404984199999944],[107.53484360000004,-6.415009199999929],[107.53238690000006,-6.414861],[107.531128,-6.418096799999944],[107.52940380000007,-6.418358099999978],[107.52974710000007,-6.424227499999972],[107.526497,-6.425803899999948],[107.52672590000009,-6.437024799999961],[107.528412,-6.437462499999981],[107.530678,-6.441731799999957],[107.533806,-6.441909499999952],[107.53311170000006,-6.443562699999973],[107.53587350000004,-6.445540699999981],[107.53928380000008,-6.4441564],[107.54209150000008,-6.445762399999978],[107.54383860000007,-6.450019599999962],[107.54110730000008,-6.453763699999968],[107.54405980000007,-6.455666299999962],[107.54266180000008,-6.459658199999978],[107.54495250000008,-6.4596751],[107.54367840000003,-6.462401099999965],[107.54564680000004,-6.466523399999971],[107.54534920000003,-6.470151599999951],[107.55100260000006,-6.470568899999932],[107.55206310000005,-6.473996899999975],[107.55684670000005,-6.474151399999926],[107.55934150000007,-6.475922299999979],[107.56044010000005,-6.478071899999975],[107.55828870000005,-6.482467399999962],[107.55899820000008,-6.487204799999972],[107.56198130000007,-6.488527499999975],[107.56239330000005,-6.485344599999962],[107.56548320000007,-6.487187099999971],[107.56368260000005,-6.490272799999957],[107.55963910000008,-6.490412],[107.562523,-6.496342899999945],[107.56032570000008,-6.500000199999931],[107.56151590000007,-6.509464499999979],[107.55879220000008,-6.510243199999934],[107.56066140000007,-6.514688199999966],[107.55481710000004,-6.517337399999974],[107.55653390000003,-6.519384599999967],[107.56015030000009,-6.520218099999965],[107.55857860000003,-6.523292799999979],[107.56213390000005,-6.524402399999929],[107.563675,-6.5278719],[107.55800640000007,-6.531748099999959],[107.55902110000005,-6.536221199999943],[107.55803690000005,-6.538662699999975],[107.55582440000006,-6.539754099999925],[107.55612960000008,-6.541258599999935],[107.56028760000004,-6.542585599999938],[107.56240850000006,-6.546832299999949],[107.55844890000009,-6.550266499999964],[107.55854810000005,-6.552970099999925],[107.56100470000007,-6.555654299999958],[107.55744950000008,-6.556058599999972],[107.55648050000008,-6.558539599999961],[107.55846420000006,-6.559302099999968],[107.55841070000008,-6.560879],[107.55613720000008,-6.562830199999951],[107.55445110000005,-6.561782599999958],[107.55393990000005,-6.566571],[107.55649580000005,-6.568024399999956],[107.55805980000008,-6.56655],[107.56082930000008,-6.567316299999959],[107.56201180000005,-6.569825399999957],[107.56454480000008,-6.567636199999981],[107.56349960000006,-6.571142399999928],[107.56954970000004,-6.5749352],[107.56764230000005,-6.577223499999945],[107.568329,-6.578434199999947],[107.57134260000004,-6.579088899999931],[107.57393660000008,-6.584050399999967],[107.57859050000008,-6.581889899999965],[107.58271040000005,-6.588404899999944],[107.58119980000004,-6.590502],[107.58581550000008,-6.591589699999929],[107.58512890000009,-6.593335899999943],[107.58251960000007,-6.594082599999979],[107.582779,-6.595863099999974],[107.58641830000005,-6.596963599999981],[107.58690650000005,-6.599649699999929],[107.59040080000005,-6.599836599999946],[107.58866890000007,-6.602605099999948],[107.58908850000006,-6.604849599999966],[107.58670050000006,-6.605532399999959],[107.58415230000008,-6.609298499999966],[107.58309180000003,-6.614547],[107.58492290000004,-6.6175849],[107.58473210000005,-6.621238],[107.58352670000005,-6.622157799999968],[107.58387,-6.6249158],[107.57999810000007,-6.630079],[107.58113110000005,-6.631819],[107.57952130000007,-6.633897499999932],[107.57994090000005,-6.635764799999947],[107.58254250000005,-6.636851499999977],[107.58381660000003,-6.640542699999969],[107.587906,-6.642225],[107.58700560000005,-6.643051],[107.58898940000006,-6.6470034],[107.59300240000005,-6.648358599999938],[107.59282690000003,-6.650499599999932],[107.60163390000008,-6.654042299999958],[107.60211460000005,-6.663455499999941],[107.60015390000007,-6.665296099999978],[107.59595780000006,-6.677198899999951],[107.59055630000006,-6.680791899999974],[107.59112850000008,-6.682734599999947],[107.588771,-6.685866899999951],[107.58882440000008,-6.688334099999963],[107.59192960000007,-6.691372899999976],[107.59148710000005,-6.699587799999961],[107.59488990000006,-6.706632099999979],[107.59395150000006,-6.709035099999937],[107.59097470000006,-6.708967399999949],[107.58878340000007,-6.711819399999968],[107.58825310000009,-6.715287699999976],[107.59121980000003,-6.719966899999974],[107.59429030000007,-6.719818299999929],[107.59493210000005,-6.726595399999951],[107.59226240000004,-6.726595199999963],[107.59550920000004,-6.729216299999962],[107.60003670000003,-6.731370699999957],[107.60235610000007,-6.736107599999968],[107.60180670000005,-6.739447299999938],[107.60417950000004,-6.749241599999948],[107.60361490000008,-6.752091199999938],[107.60013590000005,-6.756300199999941],[107.60059370000005,-6.761097699999937],[107.61059580000006,-6.759181799999965],[107.61853040000005,-6.760105399999929],[107.61741650000005,-6.763319199999955],[107.620659,-6.764484599999946],[107.62693030000008,-6.773238399999968],[107.62902080000003,-6.7741344],[107.64261640000007,-6.774300299999936],[107.64930730000003,-6.772391599999935],[107.66250620000005,-6.774112499999944],[107.66931930000004,-6.777221399999974],[107.67110450000007,-6.7763441],[107.672043,-6.780666599999961],[107.67738350000008,-6.786047199999928],[107.67829140000003,-6.788843399999962],[107.68801890000009,-6.798347199999967],[107.69908150000003,-6.794891099999973],[107.70111090000006,-6.792962299999942],[107.70764930000007,-6.792939899999965],[107.71139540000007,-6.797608199999956],[107.72184760000005,-6.800489199999959],[107.724228,-6.802373699999976],[107.72624220000006,-6.805056799999932],[107.72652950000008,-6.810822799999926],[107.73035440000007,-6.811649099999954],[107.73353590000005,-6.814269799999977],[107.73909770000006,-6.812742],[107.74309550000004,-6.813893599999972],[107.75000010000008,-6.812845]]]},"properties":{"shapeName":"Subang","shapeISO":"","shapeID":"22746128B59845500864248","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[106.52477490000007,-6.762330499999962],[106.52553580000006,-6.768723799999975],[106.51585410000007,-6.7772545],[106.50753040000006,-6.781259899999952],[106.497658,-6.791006399999958],[106.48864010000005,-6.792447899999956],[106.48891470000007,-6.794887399999936],[106.48694630000006,-6.796173899999928],[106.48583240000005,-6.794582699999978],[106.48259760000008,-6.795810599999925],[106.48194070000005,-6.794640399999935],[106.479317,-6.795126299999936],[106.47749350000004,-6.796846199999948],[106.47322870000005,-6.797418],[106.47307610000007,-6.799684899999932],[106.47146630000009,-6.798123699999962],[106.47035240000008,-6.800577499999974],[106.46851370000007,-6.799820299999965],[106.46380640000007,-6.802878199999952],[106.46200590000007,-6.801661299999978],[106.45723750000008,-6.803562499999941],[106.45402550000006,-6.808761],[106.45219450000008,-6.8093632],[106.45291160000005,-6.813145199999951],[106.44998190000007,-6.816253],[106.44686910000007,-6.818526599999927],[106.44307730000008,-6.817613899999969],[106.44167350000004,-6.815611699999977],[106.44036890000007,-6.818782599999963],[106.436043,-6.819803899999954],[106.43705010000008,-6.822258799999929],[106.43553190000006,-6.825205599999947],[106.43762990000005,-6.827901699999927],[106.43484520000004,-6.8324421],[106.43531060000004,-6.838906099999974],[106.43117550000005,-6.846004799999946],[106.43202230000009,-6.849322199999961],[106.42984030000008,-6.855381299999976],[106.43213780000008,-6.857254699999942],[106.43101530000007,-6.862184799999966],[106.428467,-6.864985799999943],[106.42474390000007,-6.8656133],[106.42516350000005,-6.869212499999946],[106.41918970000006,-6.874290299999927],[106.41949490000007,-6.8804238],[106.41372710000007,-6.882412699999975],[106.41255980000005,-6.884599499999979],[106.40959190000007,-6.884318699999938],[106.40625790000007,-6.886378599999944],[106.40179470000004,-6.896439799999939],[106.39287590000004,-6.9006327],[106.39216640000006,-6.904633799999942],[106.39724760000007,-6.908919099999935],[106.39794180000007,-6.9183753],[106.40007040000006,-6.920296],[106.400223,-6.924183699999958],[106.39865140000006,-6.924288599999954],[106.39807150000007,-6.928857599999958],[106.391083,-6.932365199999936],[106.39144920000007,-6.939359899999943],[106.38964160000006,-6.941997499999957],[106.39499980000005,-6.950741299999947],[106.39539790000003,-6.959037099999932],[106.39222040000004,-6.9593419],[106.39553150000006,-6.962965899999972],[106.39386010000004,-6.963916299999937],[106.39306870000007,-6.971267599999976],[106.39373810000006,-6.973932499999933],[106.39638640000004,-6.9745059],[106.39597050000003,-6.977684699999941],[106.397488,-6.978781199999958],[106.39956920000009,-6.977233899999931],[106.41456,-6.975687799999946],[106.41610710000003,-6.971826699999951],[106.41461190000007,-6.967914499999949],[106.41680650000006,-6.963151499999981],[106.42895970000006,-6.958435599999973],[106.42892540000008,-6.95737],[106.43544030000004,-6.958332299999938],[106.43600290000006,-6.955668799999955],[106.44319230000008,-6.952642899999944],[106.45567,-6.955858899999953],[106.45674410000004,-6.958070099999929],[106.45918110000008,-6.955163],[106.46119380000005,-6.955279],[106.47754720000006,-6.9634013],[106.48702960000008,-6.960909799999968],[106.49649680000005,-6.963671699999963],[106.50061790000007,-6.962719299999947],[106.51217260000004,-6.965374099999963],[106.52146560000006,-6.971545899999967],[106.52533,-6.972371299999963],[106.53328880000004,-6.980730899999969],[106.540199,-6.981686099999934],[106.54393760000005,-6.987968099999932],[106.54243430000008,-6.990064199999949],[106.542176,-6.987689399999965],[106.542843,-6.998091299999942],[106.54026790000006,-7.006844299999955],[106.54091250000005,-7.016613499999949],[106.53985820000008,-7.020842699999946],[106.54289980000004,-7.025039499999934],[106.54382680000003,-7.029222499999946],[106.54310930000008,-7.044808199999977],[106.54469080000007,-7.055719299999964],[106.53924320000004,-7.057781299999931],[106.53774570000007,-7.060719699999936],[106.52943270000009,-7.065977199999963],[106.52907580000004,-7.069934499999931],[106.52569330000006,-7.074936599999944],[106.51535450000006,-7.085810399999957],[106.51255440000006,-7.086886399999969],[106.51156490000005,-7.090016099999957],[106.50665320000007,-7.095304699999929],[106.49936480000008,-7.099630799999943],[106.492978,-7.100015499999927],[106.49071810000004,-7.102049],[106.48381760000007,-7.103737299999977],[106.48407310000005,-7.108249499999943],[106.48250530000007,-7.111542099999951],[106.475172,-7.115288799999973],[106.472477,-7.1192833],[106.46905970000006,-7.120033199999966],[106.46879830000006,-7.123966199999927],[106.46700620000007,-7.126672799999938],[106.45682160000007,-7.129455599999972],[106.457979,-7.133104599999967],[106.45198840000006,-7.142979699999955],[106.45198350000004,-7.145989199999974],[106.44888570000006,-7.147617299999979],[106.44933270000007,-7.151563799999963],[106.44752030000006,-7.152668399999925],[106.45113520000007,-7.154669599999977],[106.45547570000008,-7.1600434],[106.45775760000004,-7.166766399999972],[106.46564360000008,-7.1713309],[106.46556530000004,-7.175123799999938],[106.46345810000008,-7.179234],[106.45745720000008,-7.184883499999955],[106.44963180000008,-7.186604399999965],[106.44773540000006,-7.185446299999967],[106.44409780000007,-7.191003],[106.44013330000007,-7.190563399999974],[106.43819810000008,-7.185382299999958],[106.43440360000005,-7.183894499999951],[106.43271240000007,-7.187198699999954],[106.42786190000004,-7.187879399999929],[106.42481,-7.190399299999967],[106.414497,-7.186680099999933],[106.40711580000004,-7.188403],[106.40412220000007,-7.185661499999981],[106.400677,-7.186361499999975],[106.39895570000004,-7.189862599999969],[106.39951920000004,-7.193364599999938],[106.39711250000005,-7.1944802],[106.39541750000006,-7.198522299999979],[106.39916420000009,-7.202115899999967],[106.39936640000008,-7.205927899999949],[106.39482370000007,-7.212094799999932],[106.38942450000008,-7.209937299999979],[106.389159,-7.212693],[106.38606160000006,-7.216332799999975],[106.38872320000007,-7.218252699999937],[106.38816850000006,-7.222582899999964],[106.39066410000004,-7.225658],[106.390689,-7.228811499999949],[106.38637190000009,-7.234004599999935],[106.38641790000008,-7.236504799999977],[106.384768,-7.236183499999981],[106.38103020000005,-7.239174799999944],[106.37587720000005,-7.236373199999946],[106.373052,-7.236922199999981],[106.37858250000005,-7.242252199999939],[106.37813130000006,-7.246260399999926],[106.38169480000005,-7.252207399999975],[106.38491610000005,-7.263946099999941],[106.38270090000009,-7.270877199999973],[106.37467570000007,-7.2769347],[106.37135210000008,-7.277446099999963],[106.37032330000005,-7.279853599999967],[106.37152660000004,-7.284566199999972],[106.37614480000008,-7.289447399999972],[106.37833860000006,-7.298081799999977],[106.37970340000004,-7.298890699999959],[106.375,-7.3],[106.37463310000004,-7.302421899999956],[106.37277180000007,-7.303366399999959],[106.37273270000009,-7.307776799999942],[106.37908980000009,-7.317585099999974],[106.384842,-7.318181099999947],[106.39785110000008,-7.331629599999928],[106.39962470000006,-7.34584],[106.40221120000007,-7.347827299999949],[106.40303470000003,-7.352262899999971],[106.40292050000005,-7.359366299999976],[106.39930380000004,-7.370898699999941],[106.400619,-7.3734574],[106.40360780000009,-7.373480899999947],[106.40485820000004,-7.382122399999957],[106.40657540000007,-7.382472499999949],[106.40768640000005,-7.378638599999931],[106.40491540000005,-7.374506399999973],[106.40560410000006,-7.370056599999941],[106.41379040000004,-7.363636099999951],[106.42663760000005,-7.359753099999978],[106.44352220000007,-7.360756199999969],[106.44922530000008,-7.366369899999938],[106.46114050000006,-7.368315799999948],[106.46754790000006,-7.371390699999949],[106.47197680000005,-7.370759699999951],[106.48911520000007,-7.377163399999972],[106.49054260000008,-7.376257299999963],[106.49143260000005,-7.378565699999967],[106.49371660000008,-7.3792405],[106.49364780000008,-7.382050799999945],[106.49942960000004,-7.389753599999949],[106.50164170000005,-7.389943799999969],[106.50356780000004,-7.392775599999936],[106.515587,-7.399454299999945],[106.52137460000006,-7.404358499999944],[106.52307760000008,-7.4078133],[106.53383580000008,-7.408404899999937],[106.53347070000007,-7.409411099999943],[106.53630720000007,-7.411077],[106.54070650000006,-7.410931399999981],[106.54661920000007,-7.414150699999936],[106.55538330000007,-7.414862299999982],[106.56005020000003,-7.417156499999976],[106.57511460000006,-7.418055699999968],[106.57961970000008,-7.416294799999946],[106.58066020000007,-7.4138117],[106.58112750000004,-7.415508699999975],[106.58201760000009,-7.4129112],[106.60332410000007,-7.413915799999927],[106.66378680000008,-7.423346199999969],[106.67137470000006,-7.421475099999952],[106.68073890000005,-7.423066899999981],[106.68262290000007,-7.425095599999963],[106.73525940000007,-7.430199399999935],[106.79134680000004,-7.437560299999973],[106.79388650000004,-7.433649899999978],[106.79282950000004,-7.415118299999961],[106.79205420000005,-7.417283599999962],[106.78916950000007,-7.408812499999954],[106.78644750000007,-7.410625499999981],[106.78335590000006,-7.416240199999947],[106.78084580000007,-7.415598799999941],[106.776047,-7.406256199999973],[106.77714560000004,-7.401955099999952],[106.78277780000008,-7.396905899999979],[106.79512810000006,-7.3968186],[106.79559340000009,-7.3916039],[106.80524460000004,-7.388107699999978],[106.81967180000004,-7.372426899999937],[106.82313560000006,-7.362461499999938],[106.82682050000005,-7.365441799999928],[106.83193150000005,-7.358004199999925],[106.83564780000006,-7.3572378],[106.84251420000004,-7.358471399999928],[106.84491750000007,-7.356429599999956],[106.85080740000006,-7.360733],[106.85330220000009,-7.356870199999946],[106.85855880000008,-7.354219],[106.86081710000008,-7.356307],[106.85565970000005,-7.362029499999949],[106.86111470000009,-7.363424799999962],[106.86864490000005,-7.355588399999931],[106.87029280000007,-7.356995599999948],[106.87107860000003,-7.363175399999932],[106.87266560000006,-7.364385599999935],[106.87536640000008,-7.363961699999948],[106.876877,-7.362344699999937],[106.875931,-7.355833],[106.87683890000005,-7.353525199999979],[106.88112660000007,-7.351450899999975],[106.88471240000007,-7.353368299999943],[106.88998430000004,-7.348712899999953],[106.89492050000007,-7.347577099999967],[106.89286820000007,-7.343349399999965],[106.89527910000004,-7.341423499999962],[106.90318320000006,-7.342561699999976],[106.90345020000007,-7.351259699999957],[106.90940110000008,-7.349299899999949],[106.90980550000006,-7.345118],[106.90798210000008,-7.339463299999977],[106.91082020000005,-7.334748299999944],[106.91141530000004,-7.328292399999953],[106.91507740000009,-7.322981399999946],[106.91953290000004,-7.322002],[106.92169210000009,-7.324732299999937],[106.92622390000008,-7.326958199999979],[106.92757430000006,-7.332996399999956],[106.93411270000007,-7.334126499999968],[106.93531820000004,-7.332808],[106.93359390000006,-7.328734399999973],[106.93393720000006,-7.324397599999941],[106.93582170000008,-7.321240399999965],[106.94059010000007,-7.317816299999947],[106.94675460000008,-7.318467599999963],[106.95024890000008,-7.321446399999957],[106.95374320000008,-7.321148899999969],[106.95716870000007,-7.318083799999954],[106.96146410000006,-7.318206299999929],[106.96717090000004,-7.312165799999946],[106.97309130000008,-7.294911899999931],[106.973015,-7.290167799999949],[106.97498340000004,-7.290116799999964],[106.97418230000005,-7.286999699999967],[106.97599040000006,-7.284421499999951],[106.97225970000005,-7.279396599999927],[106.97283190000007,-7.273929199999941],[106.96997850000008,-7.271258899999964],[106.96999380000005,-7.266302199999927],[106.96476,-7.265717599999959],[106.96031970000007,-7.260272099999952],[106.96191420000008,-7.256311],[106.96473710000004,-7.253813299999933],[106.963402,-7.250472599999966],[106.96671310000005,-7.250698099999966],[106.96837630000005,-7.248688699999946],[106.96697250000005,-7.2455173],[106.97207660000004,-7.246576299999958],[106.97452560000005,-7.241054099999928],[106.97995780000008,-7.241189],[106.97942370000004,-7.236378699999932],[106.98083510000004,-7.229608599999949],[106.98263570000006,-7.228479899999968],[106.98263570000006,-7.222243399999968],[106.98014080000007,-7.216703],[106.97520460000004,-7.215076499999952],[106.97531150000003,-7.206294599999978],[106.97378560000004,-7.204666199999963],[106.97303790000007,-7.1991973],[106.969948,-7.196112199999959],[106.96788040000007,-7.196226599999932],[106.96710220000006,-7.189558099999942],[106.97142050000008,-7.188234399999942],[106.97184770000007,-7.189840799999956],[106.973694,-7.1899515],[106.97474690000007,-7.185556399999939],[106.97247330000005,-7.184207899999933],[106.97039810000007,-7.175936699999966],[106.96789570000004,-7.178281299999981],[106.96562980000004,-7.1764055],[106.96408860000008,-7.177809799999977],[106.96317310000006,-7.173726099999953],[106.96507280000009,-7.172939799999938],[106.96095290000005,-7.170465499999978],[106.95784780000008,-7.1645456],[106.95773330000009,-7.1613947],[106.96038830000003,-7.159234099999935],[106.960457,-7.156425],[106.96474470000004,-7.154218199999946],[106.96607990000007,-7.156349199999966],[106.96743030000005,-7.155955399999925],[106.96536270000007,-7.148260599999958],[106.965912,-7.144946599999969],[106.96267720000009,-7.140071],[106.95832080000008,-7.139849199999958],[106.95681020000006,-7.136500399999932],[106.95443740000007,-7.135806099999968],[106.95253010000005,-7.132783],[106.94898240000003,-7.132670399999938],[106.94901290000007,-7.134927299999958],[106.94552630000004,-7.133324199999947],[106.94679280000008,-7.131249],[106.94236010000009,-7.132854],[106.94168870000004,-7.131210399999929],[106.94395470000006,-7.130891399999939],[106.94531270000004,-7.128175799999951],[106.94402330000008,-7.127272199999936],[106.94203970000007,-7.128411799999981],[106.93703480000005,-7.1228309],[106.93652360000004,-7.115429],[106.93825550000008,-7.112929399999928],[106.93662280000007,-7.109110899999962],[106.93907180000008,-7.107516299999929],[106.93922440000006,-7.102266799999938],[106.94219990000005,-7.100403799999981],[106.94304670000008,-7.092424],[106.94594590000008,-7.0909319],[106.94400040000005,-7.087030499999969],[106.94827290000006,-7.0859752],[106.94635030000006,-7.081566799999962],[106.94689960000005,-7.079702399999974],[106.94555680000008,-7.0798164],[106.94357320000006,-7.074841],[106.94641130000008,-7.072038199999952],[106.94606030000006,-7.070845599999927],[106.95018780000004,-7.071409299999971],[106.95394150000004,-7.068388],[106.95303360000008,-7.064422599999943],[106.95486470000009,-7.0634575],[106.95331590000006,-7.058770699999968],[106.95915820000005,-7.0335483],[106.96545490000005,-7.025712699999929],[106.97092460000005,-7.021951],[106.97508450000004,-7.016760799999929],[106.97568940000008,-7.013576499999942],[106.97706790000007,-7.014613399999973],[106.98261280000008,-7.013744899999949],[106.989052,-7.017023599999959],[106.994713,-7.028416199999981],[107.00165570000007,-7.030568599999981],[107.00750240000008,-7.036704799999939],[107.01206220000006,-7.035637399999928],[107.02251450000006,-7.037323099999981],[107.02823650000005,-7.044504699999948],[107.03884140000008,-7.043379799999968],[107.03942890000008,-7.037366],[107.04747790000005,-7.031469899999934],[107.04292310000005,-7.023213899999973],[107.04580750000008,-7.0222201],[107.04900380000004,-7.017764599999964],[107.04942340000008,-7.014714799999979],[107.04705830000006,-7.011588199999949],[107.04965990000005,-7.004754599999956],[107.04553240000007,-7.002198799999974],[107.03808610000004,-6.989285499999937],[107.03303540000007,-6.987178899999947],[107.03408830000006,-6.986052599999937],[107.03234120000008,-6.981159799999944],[107.03337110000007,-6.976351299999976],[107.03676620000005,-6.974802599999975],[107.037285,-6.969405699999925],[107.041115,-6.965263899999968],[107.04157270000007,-6.962926],[107.04557820000008,-6.9627491],[107.046837,-6.960837399999946],[107.04908660000007,-6.960602599999959],[107.05784040000009,-6.967622499999948],[107.06413890000005,-6.966868099999942],[107.06501740000004,-6.964986199999942],[107.06269450000008,-6.956314099999929],[107.05382550000007,-6.950056599999925],[107.04870620000008,-6.942375799999979],[107.04858410000008,-6.932457],[107.05000320000005,-6.929739099999949],[107.04896560000009,-6.915077799999949],[107.04728710000006,-6.909829699999932],[107.04182450000008,-6.909130199999936],[107.04003920000008,-6.904842899999949],[107.04017650000009,-6.899835199999927],[107.03206650000004,-6.897610699999973],[107.03090350000008,-6.8930315],[107.02867150000009,-6.891586299999972],[107.02931230000007,-6.887963399999933],[107.03520160000005,-6.886653699999954],[107.03121370000008,-6.877926899999977],[107.03287570000003,-6.8736958],[107.02859510000008,-6.868172699999946],[107.02693190000008,-6.867860899999926],[107.02379620000005,-6.860778899999957],[107.01121540000008,-6.852024099999937],[107.00936910000007,-6.849237],[107.00526440000004,-6.848387799999955],[107.00053420000006,-6.840541],[106.99905410000008,-6.832893899999931],[106.99535390000005,-6.824529699999971],[106.996277,-6.819364099999973],[106.99290480000008,-6.804669899999965],[106.983803,-6.789516],[106.97148150000004,-6.780730299999959],[106.96858230000004,-6.773747],[106.96515670000008,-6.7703377],[106.96230330000009,-6.764587899999981],[106.95829030000004,-6.761406499999964],[106.95320150000003,-6.760148099999981],[106.94699880000007,-6.760793299999932],[106.93450950000005,-6.768491799999936],[106.92791480000005,-6.781449099999975],[106.92099820000004,-6.786610899999971],[106.90402240000009,-6.788518],[106.89976870000004,-6.7881384],[106.897022,-6.7862037],[106.887288,-6.785449099999937],[106.88447230000008,-6.782788899999957],[106.87875960000008,-6.781304199999965],[106.87119880000006,-6.7816206],[106.86491420000004,-6.778114099999925],[106.85863790000008,-6.776769199999933],[106.84457850000007,-6.7758861],[106.83870330000008,-6.771453899999926],[106.83734140000007,-6.768861399999935],[106.831293,-6.766999099999964],[106.82267780000006,-6.769601799999975],[106.81444490000007,-6.768708],[106.80724630000009,-6.764336499999956],[106.80131270000004,-6.762912099999937],[106.79789410000006,-6.755188299999929],[106.79318780000006,-6.752614199999925],[106.78804040000006,-6.754135599999927],[106.78667470000005,-6.755947099999958],[106.77756520000008,-6.754759299999932],[106.77249490000008,-6.751189699999941],[106.76649050000009,-6.744336499999974],[106.76429110000004,-6.736779699999943],[106.76272920000008,-6.736211899999944],[106.75778410000004,-6.727546399999937],[106.74060080000004,-6.7153167],[106.73263480000008,-6.715714499999933],[106.72524280000005,-6.718351299999938],[106.71392080000004,-6.729131199999927],[106.70272090000009,-6.733360299999958],[106.69938680000007,-6.741781199999934],[106.69380970000009,-6.744809099999941],[106.68291490000007,-6.7458534],[106.67579670000003,-6.737865899999974],[106.67320230000007,-6.731638499999974],[106.66751880000004,-6.736624199999937],[106.659096,-6.7317819],[106.65601370000007,-6.739310699999976],[106.65769210000008,-6.745022699999936],[106.65605180000006,-6.747749299999953],[106.64229610000007,-6.749022899999943],[106.63174460000005,-6.754997699999933],[106.62998220000009,-6.752228699999932],[106.62295560000007,-6.748986199999933],[106.59907550000008,-6.748796399999947],[106.588959,-6.743731399999945],[106.58474750000005,-6.737238299999945],[106.58274860000006,-6.721862199999975],[106.58017750000005,-6.718589699999939],[106.57585930000005,-6.717398599999967],[106.57411980000006,-6.720202399999948],[106.56860370000004,-6.722629899999959],[106.56662770000008,-6.727717799999937],[106.56081410000007,-6.733482699999968],[106.55993670000004,-6.738283499999966],[106.54793570000004,-6.750786199999936],[106.53328420000008,-6.751484699999935],[106.525689,-6.757565099999965],[106.52477490000007,-6.762330499999962]],[[106.91538610000003,-6.893193499999938],[106.91809220000005,-6.9028424],[106.922198,-6.901446499999963],[106.92427410000005,-6.898330199999975],[106.92497560000004,-6.900368599999979],[106.92792850000006,-6.901380699999947],[106.92891090000006,-6.904126299999973],[106.93417260000007,-6.902382099999954],[106.94034240000008,-6.9053143],[106.94422390000005,-6.905108],[106.94882340000004,-6.907904],[106.95015920000009,-6.905636299999969],[106.95424810000009,-6.905204],[106.95519440000004,-6.915294199999948],[106.95226410000004,-6.915979199999981],[106.94993470000009,-6.920665199999974],[106.959837,-6.918745799999954],[106.95723750000008,-6.924201599999947],[106.95884240000004,-6.927578399999959],[106.95923930000004,-6.933303399999943],[106.95822060000006,-6.933983799999965],[106.96020030000005,-6.937338599999975],[106.96002380000004,-6.942603099999928],[106.955443,-6.954833099999973],[106.95566560000009,-6.958541599999933],[106.95364210000008,-6.960284299999955],[106.95268390000007,-6.964072699999974],[106.94664730000005,-6.969112799999948],[106.94464350000004,-6.967161799999928],[106.93768640000008,-6.9671911],[106.93623530000008,-6.965245699999969],[106.93143590000005,-6.9653751],[106.92622640000008,-6.969753599999933],[106.92295960000007,-6.969712],[106.92320290000004,-6.972634199999959],[106.91767160000006,-6.974083],[106.91757830000006,-6.976207099999954],[106.91452220000008,-6.974402599999962],[106.91171750000007,-6.978368499999931],[106.91110750000007,-6.977428199999963],[106.906013,-6.979085599999962],[106.90223920000005,-6.975964699999963],[106.90059760000008,-6.977542699999958],[106.89922640000009,-6.976297599999953],[106.89723220000008,-6.978210899999965],[106.89467630000007,-6.974044099999958],[106.89583780000004,-6.972022799999934],[106.88880020000005,-6.96939],[106.886374,-6.973994599999969],[106.88006850000005,-6.973239599999943],[106.87905920000009,-6.9759084],[106.87691490000009,-6.973904799999957],[106.87515270000006,-6.976229499999931],[106.87129920000007,-6.97239],[106.87171550000005,-6.969540099999961],[106.87321550000007,-6.969645599999978],[106.87291050000005,-6.967727399999944],[106.87447450000008,-6.966792399999974],[106.87378410000008,-6.963018199999965],[106.884283,-6.958828],[106.88662040000008,-6.956044799999972],[106.88848940000008,-6.957003199999974],[106.89354220000007,-6.956134399999939],[106.894476,-6.957441399999936],[106.89812550000005,-6.956355499999972],[106.89898020000004,-6.958281899999974],[106.90086970000004,-6.958065699999963],[106.90205660000004,-6.956127099999946],[106.91029810000003,-6.954311399999938],[106.91157410000005,-6.952149599999927],[106.90859440000008,-6.945816199999967],[106.90919760000008,-6.943177099999957],[106.90742820000008,-6.941352599999959],[106.907358,-6.938508899999931],[106.90060730000005,-6.933472399999971],[106.90073760000007,-6.921150299999965],[106.90183530000007,-6.919319199999961],[106.90093020000006,-6.913997499999937],[106.90140110000004,-6.912009399999931],[106.90487270000006,-6.912292599999944],[106.906177,-6.914922499999932],[106.90731650000004,-6.907560399999966],[106.90982450000007,-6.903482499999939],[106.90896530000003,-6.898581],[106.91009470000006,-6.8939773],[106.91153330000009,-6.892419],[106.91412510000004,-6.894057],[106.91489080000008,-6.892359699999929],[106.91538610000003,-6.893193499999938]]]},"properties":{"shapeName":"Sukabumi","shapeISO":"","shapeID":"22746128B66454957891939","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[110.73447880000003,-2.988270799999952],[110.74585510000009,-2.988243699999941],[110.75915610000004,-2.982103099999961],[110.78028590000008,-2.976485699999955],[110.80158380000006,-2.976858799999945],[110.81851960000006,-2.981393099999934],[110.83929840000008,-2.989811799999927],[110.84816180000007,-2.995181799999955],[110.91906940000007,-3.046392199999957],[110.93902160000005,-3.052070699999945],[110.95010190000005,-3.061074499999961],[110.95710090000006,-3.064257],[110.97323290000008,-3.066321799999969],[110.98271510000006,-3.065515699999935],[111.04641930000008,-3.052008399999977],[111.09448850000007,-3.033379599999932],[111.11071170000008,-3.028528599999959],[111.191996,-2.989767399999948],[111.230029,-2.965021],[111.26673340000008,-2.943219499999941],[111.33825740000009,-2.909948699999973],[111.34558790000006,-2.907368199999951],[111.35382030000005,-2.906677099999968],[111.36210170000004,-2.908207899999979],[111.38014380000004,-2.877021599999978],[111.38270660000006,-2.816984199999979],[111.37949610000004,-2.791589099999953],[111.38254110000008,-2.759307699999965],[111.38258470000005,-2.734579],[111.38613250000009,-2.709581799999967],[111.40016170000007,-2.653020199999958],[111.39752650000008,-2.648450699999955],[111.37722530000008,-2.645523],[111.34398710000005,-2.626025099999936],[111.30165810000005,-2.617563399999938],[111.29970860000009,-2.594197399999928],[111.29431890000006,-2.590407899999946],[111.288871,-2.580491799999947],[111.27904770000004,-2.542328],[111.27982530000008,-2.501291199999969],[111.28450240000006,-2.446633299999974],[111.28372220000006,-2.372695199999953],[111.26480180000004,-2.372501799999952],[111.26599090000008,-2.347018399999968],[111.26765010000008,-2.343884],[111.271814,-2.343121599999961],[111.27178440000006,-2.340397499999938],[111.27446260000005,-2.336179099999924],[111.30538730000006,-2.335938399999975],[111.30652230000004,-2.332716099999971],[111.316569,-2.3323684],[111.31705730000004,-2.305092399999978],[111.33840180000004,-2.307020699999953],[111.35554210000004,-2.306700199999966],[111.34156830000006,-2.275532299999952],[111.36843760000005,-2.263285199999927],[111.38187980000004,-2.280818799999963],[111.39067990000007,-2.266875],[111.38964890000005,-2.218931299999952],[111.38614950000004,-2.197951799999942],[111.37856970000007,-2.192266899999936],[111.36776910000009,-2.193905199999961],[111.36335570000006,-2.187760899999944],[111.36238840000004,-2.184859099999926],[111.363936,-2.182344099999966],[111.35851920000005,-2.174799299999961],[111.35463460000005,-2.162827],[111.35536,-2.152428699999973],[111.29256760000004,-2.148810799999978],[111.26517370000005,-2.140781599999968],[111.25194910000005,-2.125667699999951],[111.23541830000005,-2.124723099999926],[111.222666,-2.120944599999973],[111.20849670000007,-2.105830799999978],[111.20141210000008,-2.100163099999975],[111.19999520000005,-2.0916615],[111.20471830000008,-2.0893],[111.20324620000008,-2.074579899999947],[111.19281420000004,-2.072562199999936],[111.18771520000007,-2.062850699999956],[111.17879620000008,-2.056348699999944],[111.16747170000008,-2.054348],[111.15657910000004,-2.055952799999943],[111.14728110000004,-2.063705199999958],[111.06620180000004,-2.117956499999934],[111.06755060000006,-2.130904899999962],[111.070755,-2.141464699999972],[111.07822040000008,-2.153856099999928],[111.07878110000007,-2.161196],[111.07233810000008,-2.178227199999981],[111.06529230000007,-2.182342499999947],[111.06361770000007,-2.185128299999974],[111.06584930000008,-2.197212199999967],[111.06300350000004,-2.202901399999973],[111.04064180000006,-2.2222207],[111.03506850000008,-2.231559399999981],[111.03189090000006,-2.241056399999934],[111.03349340000005,-2.248665099999926],[111.04138940000007,-2.262460899999951],[111.04941560000009,-2.2722745],[111.05852510000005,-2.278117599999973],[111.06421660000007,-2.291314099999965],[111.06958390000005,-2.299576499999944],[111.07978820000005,-2.338881],[111.08951570000005,-2.362922199999957],[111.09362790000006,-2.380948499999931],[111.09602360000008,-2.399725399999966],[111.10318760000007,-2.424110399999961],[111.10599520000005,-2.448956499999952],[111.10546110000007,-2.484213099999977],[111.11429590000006,-2.515155499999935],[111.11608890000008,-2.541729],[111.13442990000004,-2.595491599999946],[111.13629910000009,-2.611283799999967],[111.13370510000004,-2.624434899999926],[111.12796020000008,-2.634944899999937],[111.12002560000008,-2.642705199999966],[111.11832430000004,-2.647019599999965],[111.118576,-2.652645299999961],[111.12815850000004,-2.666059],[111.13566590000005,-2.670355299999926],[111.14396670000008,-2.671956499999965],[111.15933990000008,-2.670844299999942],[111.16380690000005,-2.671698899999967],[111.16632840000005,-2.674326599999972],[111.17163080000006,-2.685922099999971],[111.17133750000005,-2.697717699999941],[111.16931710000006,-2.706264499999975],[111.15730790000003,-2.718254899999977],[111.15586910000007,-2.724731199999951],[111.14637280000005,-2.741369899999938],[111.127694,-2.752986499999963],[111.11236480000008,-2.758616199999949],[111.10152470000008,-2.767778699999951],[111.08315150000004,-2.7719043],[111.074158,-2.777366099999938],[111.05786340000009,-2.782491499999935],[111.04141330000004,-2.785776699999928],[111.03291930000006,-2.785654799999975],[111.01154740000004,-2.794880399999954],[111.00584620000006,-2.802769199999943],[110.99889670000005,-2.826704199999938],[110.99314810000004,-2.832795899999951],[110.97550760000007,-2.842319299999929],[110.97129630000006,-2.8528202],[110.96664270000008,-2.857847499999934],[110.94640210000006,-2.864950599999929],[110.93124960000006,-2.867692899999952],[110.92703290000009,-2.868314899999973],[110.91482620000005,-2.866549],[110.888565,-2.871518],[110.879834,-2.8818107],[110.83813180000004,-2.895586399999956],[110.82884860000007,-2.905523],[110.824784,-2.906713399999944],[110.79969480000005,-2.907045799999935],[110.79364960000004,-2.909267399999976],[110.788194,-2.913119],[110.780672,-2.921624899999927],[110.75517330000008,-2.942372099999943],[110.744321,-2.9628793],[110.74110150000007,-2.973838299999954],[110.73447880000003,-2.988270799999952]]]},"properties":{"shapeName":"Sukamara","shapeISO":"","shapeID":"22746128B20342304669702","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[110.70303120000005,-7.593487499999981],[110.70821330000007,-7.595850499999926],[110.71769330000006,-7.597364399999947],[110.72059540000004,-7.594896299999959],[110.72580250000004,-7.597132],[110.72915650000004,-7.596238099999937],[110.731987,-7.599923099999955],[110.73936460000004,-7.597926099999938],[110.74175990000003,-7.600214],[110.74356840000007,-7.599007599999936],[110.74519350000008,-7.602976299999966],[110.747055,-7.603942399999937],[110.74234010000004,-7.609859],[110.74575810000005,-7.611302799999976],[110.74492080000005,-7.616393799999969],[110.74646940000008,-7.617662499999938],[110.75054750000004,-7.616014499999949],[110.75661470000006,-7.618895],[110.75787330000009,-7.617313599999932],[110.761223,-7.619947799999977],[110.76459270000004,-7.619811099999936],[110.76689520000008,-7.622772099999963],[110.76644320000008,-7.625743599999964],[110.76836450000008,-7.626689],[110.76350080000009,-7.635968199999979],[110.77253440000004,-7.6403212],[110.77698060000006,-7.633003799999926],[110.77774490000007,-7.635083799999961],[110.78082020000005,-7.635120899999947],[110.78181460000008,-7.637918899999931],[110.78761290000006,-7.6419749],[110.79559540000008,-7.643353799999943],[110.79797190000005,-7.641274399999929],[110.79974940000005,-7.642737499999953],[110.79899010000008,-7.644318599999963],[110.79143650000009,-7.647549799999979],[110.79411010000007,-7.648960799999941],[110.79392440000004,-7.650891699999931],[110.79180780000007,-7.651634399999978],[110.79426570000004,-7.655225199999961],[110.79383090000005,-7.657141599999932],[110.79009240000005,-7.655589799999973],[110.78641510000006,-7.656132199999945],[110.78630830000009,-7.657469299999946],[110.79021450000005,-7.659237399999938],[110.79007720000004,-7.6630974],[110.78783420000008,-7.663162199999931],[110.78556960000009,-7.661177499999951],[110.78095270000006,-7.661925599999961],[110.77784740000004,-7.664791499999978],[110.77923280000005,-7.667003499999964],[110.77807940000008,-7.671718899999973],[110.78053010000008,-7.673123199999964],[110.77885,-7.67463],[110.77777150000009,-7.673339299999952],[110.77732720000006,-7.676557099999968],[110.78160560000003,-7.678816199999972],[110.78141650000003,-7.681193],[110.77604170000006,-7.678735099999926],[110.77612270000009,-7.6823814],[110.76849360000006,-7.684162599999979],[110.77051180000007,-7.687098799999944],[110.76994170000006,-7.688876599999958],[110.76759870000006,-7.687828099999933],[110.76714970000006,-7.6893925],[110.77417750000006,-7.6933641],[110.76840480000004,-7.697361599999965],[110.76962550000007,-7.699973899999975],[110.76736550000004,-7.700809499999934],[110.76922960000007,-7.702576399999941],[110.76786990000005,-7.704128699999956],[110.76981350000005,-7.708254799999963],[110.76933290000005,-7.7103233],[110.77223970000006,-7.712430899999958],[110.77137760000005,-7.713800899999967],[110.770462,-7.712128599999971],[110.76918790000008,-7.713096599999972],[110.77034,-7.716938499999969],[110.76842550000003,-7.715644099999963],[110.76712040000007,-7.716788699999938],[110.76659360000008,-7.715315299999929],[110.76467890000004,-7.716599899999949],[110.76361850000006,-7.719788499999936],[110.76601120000004,-7.720519799999977],[110.76409470000004,-7.724465399999929],[110.76226280000009,-7.724813],[110.76191520000003,-7.727161599999931],[110.75969810000004,-7.727593799999966],[110.75933890000005,-7.732534799999939],[110.75764820000006,-7.732211899999982],[110.75877830000007,-7.734293],[110.75620990000004,-7.735757699999965],[110.75485230000004,-7.738775199999964],[110.75092510000007,-7.740272],[110.750136,-7.7430419],[110.75143740000004,-7.744155899999953],[110.74927740000004,-7.744371099999967],[110.74684140000005,-7.749209399999927],[110.74444580000005,-7.750514499999952],[110.74473330000006,-7.752164],[110.74154840000006,-7.755172199999947],[110.74312990000004,-7.756532599999957],[110.73967660000005,-7.757356199999947],[110.74306850000005,-7.7579624],[110.74221850000004,-7.761143899999979],[110.73727420000006,-7.760213399999941],[110.73491670000004,-7.762646199999949],[110.73018650000006,-7.762459699999965],[110.72853010000006,-7.767042599999968],[110.72895690000007,-7.770663199999944],[110.72717390000008,-7.769991799999957],[110.72498520000005,-7.777221199999929],[110.72159650000009,-7.777785199999926],[110.72256540000006,-7.778053199999931],[110.72118040000004,-7.783257299999946],[110.71909170000004,-7.783477199999936],[110.71495050000004,-7.789796799999976],[110.71244560000008,-7.790124299999945],[110.71254790000006,-7.792938399999969],[110.71640640000004,-7.791533099999981],[110.71784590000004,-7.793060499999967],[110.72391890000006,-7.794428599999947],[110.72858560000009,-7.797763599999939],[110.72857920000007,-7.800504199999978],[110.73281480000009,-7.801197799999954],[110.73559890000007,-7.803938],[110.74233190000007,-7.806702499999972],[110.74263970000004,-7.812864899999965],[110.74537420000007,-7.818396099999973],[110.75152560000004,-7.8198228],[110.75171960000006,-7.823892199999932],[110.756366,-7.827334],[110.76323990000009,-7.824388099999965],[110.764122,-7.819117],[110.76260690000004,-7.818093799999929],[110.76266130000005,-7.815738799999963],[110.76532640000005,-7.813407799999936],[110.76449120000007,-7.809876499999973],[110.77218160000007,-7.8085433],[110.77505320000006,-7.810979],[110.775363,-7.813848599999972],[110.778102,-7.815381599999967],[110.77983390000009,-7.81388],[110.78567860000004,-7.816686499999946],[110.78588030000009,-7.813747],[110.78270460000005,-7.808715199999938],[110.78499290000008,-7.800214899999958],[110.787381,-7.797752299999956],[110.79361580000005,-7.796298899999954],[110.79341710000006,-7.794649899999968],[110.79748880000005,-7.796018499999946],[110.79887930000007,-7.794280399999934],[110.80127710000005,-7.794885099999931],[110.80138270000003,-7.792116599999929],[110.80635730000006,-7.790919899999949],[110.80988310000004,-7.791064699999936],[110.81082420000007,-7.792487499999936],[110.81184750000006,-7.791446599999972],[110.81474420000006,-7.794132699999977],[110.81604440000007,-7.793276099999957],[110.81977980000005,-7.794892799999957],[110.82581280000005,-7.794622],[110.82706270000006,-7.797323099999971],[110.83297130000005,-7.795360099999925],[110.83816530000007,-7.797823899999969],[110.83973250000008,-7.801281],[110.84074160000006,-7.799645199999929],[110.84172060000009,-7.800406399999929],[110.84083560000005,-7.805381699999941],[110.84605410000006,-7.813320099999942],[110.84996030000008,-7.815166399999953],[110.85578920000006,-7.812708799999939],[110.85751340000007,-7.808423499999947],[110.85580450000003,-7.801447399999972],[110.860054,-7.796185499999979],[110.85710910000006,-7.787529899999981],[110.85467530000005,-7.784692699999937],[110.85821530000004,-7.780165199999942],[110.85676570000004,-7.775986199999977],[110.85786110000004,-7.770773099999928],[110.85918430000004,-7.770208799999978],[110.85984620000005,-7.766239299999938],[110.86260030000005,-7.765974699999958],[110.86024580000009,-7.759172099999944],[110.86359930000003,-7.757069299999955],[110.86377280000005,-7.752947099999972],[110.86600180000005,-7.754026],[110.87001670000006,-7.750291199999936],[110.87337210000004,-7.749772199999938],[110.87648970000004,-7.752226399999927],[110.878177,-7.751815599999929],[110.87632530000008,-7.747272599999974],[110.87721180000005,-7.746256599999981],[110.88297270000004,-7.749824499999932],[110.88345340000006,-7.755112099999963],[110.88748160000006,-7.751906599999927],[110.89485240000005,-7.750617],[110.90399170000006,-7.752708899999959],[110.90603540000006,-7.755545899999959],[110.91035810000005,-7.755690799999968],[110.91236880000008,-7.758996499999967],[110.91646570000006,-7.760611499999925],[110.91844940000004,-7.765191499999958],[110.92351050000008,-7.770474599999943],[110.92933660000006,-7.77095],[110.93171360000008,-7.777125399999932],[110.93439480000006,-7.776693299999977],[110.93611620000007,-7.780306499999938],[110.940628,-7.768033],[110.93988320000005,-7.746883399999945],[110.94125620000005,-7.739679],[110.94410320000009,-7.720027199999947],[110.94516150000004,-7.712451699999974],[110.94771250000008,-7.708904799999971],[110.949351,-7.695267099999967],[110.95368830000007,-7.683235599999932],[110.95760640000009,-7.684425399999952],[110.95820860000003,-7.682699599999978],[110.95821610000007,-7.6840453],[110.96023070000007,-7.684179],[110.958417,-7.681478699999957],[110.95321490000003,-7.680855799999961],[110.94765030000008,-7.669935799999962],[110.94690270000007,-7.6591156],[110.94832860000008,-7.655335599999944],[110.94645890000004,-7.653221899999949],[110.94460050000004,-7.641107699999964],[110.94231670000005,-7.637552399999947],[110.94474140000005,-7.636427799999979],[110.94744440000005,-7.629344099999969],[110.94786610000006,-7.623615399999949],[110.94540130000007,-7.6195616],[110.94668440000004,-7.618356899999981],[110.93644720000009,-7.617535099999941],[110.91628580000008,-7.612623799999938],[110.902946,-7.614452399999948],[110.90485110000009,-7.613247],[110.90840810000009,-7.595681799999966],[110.91227380000004,-7.584244099999978],[110.86839880000008,-7.566652199999965],[110.86771690000006,-7.568283599999972],[110.86579990000007,-7.566959],[110.86336020000005,-7.568158599999947],[110.86102950000009,-7.567144799999937],[110.859726,-7.569984399999953],[110.85427480000004,-7.570260499999961],[110.85425470000007,-7.574837199999934],[110.84694960000007,-7.572937199999956],[110.84595910000007,-7.576517199999955],[110.84334240000004,-7.577680399999963],[110.84290210000006,-7.580631299999936],[110.841066,-7.582129099999975],[110.840013,-7.590290799999934],[110.83692040000005,-7.590622499999938],[110.83286720000007,-7.594873199999938],[110.82792610000007,-7.592803],[110.82365420000008,-7.595080799999948],[110.81882120000006,-7.594675799999948],[110.81680860000006,-7.591847299999927],[110.81769730000008,-7.588933099999963],[110.80969240000007,-7.583150399999965],[110.80934910000008,-7.580961699999932],[110.80662190000004,-7.579616599999952],[110.804718,-7.573853499999927],[110.80180140000004,-7.571462199999928],[110.79336090000004,-7.572192399999949],[110.79288130000003,-7.571161299999972],[110.79242330000005,-7.573487399999976],[110.79021660000006,-7.573073099999931],[110.78773640000009,-7.575346699999955],[110.78244020000005,-7.575818499999968],[110.78389740000006,-7.572115399999973],[110.78405760000004,-7.5641689],[110.77823640000008,-7.560508699999957],[110.778582,-7.554257099999973],[110.76912290000007,-7.551397099999974],[110.77098130000007,-7.545269399999938],[110.76288180000006,-7.541770499999927],[110.76386720000005,-7.543787099999975],[110.76225750000009,-7.543392499999925],[110.76184510000007,-7.547117199999946],[110.75979640000008,-7.547382599999935],[110.75886010000005,-7.549896199999978],[110.75675660000007,-7.549098399999934],[110.75505490000006,-7.546116299999937],[110.74863810000005,-7.544069899999954],[110.74847630000005,-7.541692799999964],[110.73744320000009,-7.539505299999973],[110.73768520000004,-7.538326099999949],[110.73131380000007,-7.538206199999934],[110.73085490000005,-7.539238699999942],[110.72550960000007,-7.537985399999968],[110.71794940000007,-7.541165199999966],[110.71681630000006,-7.542847799999947],[110.71341260000008,-7.541625099999976],[110.71157870000008,-7.547888799999953],[110.72177890000006,-7.550193799999931],[110.72642060000004,-7.5538472],[110.72173790000005,-7.559598799999947],[110.72000120000007,-7.558913699999948],[110.71902470000003,-7.560570699999971],[110.72040560000005,-7.562042699999949],[110.72018710000009,-7.565194399999939],[110.72150130000006,-7.565867599999933],[110.71574160000006,-7.575409699999966],[110.71484210000006,-7.5739425],[110.71239790000004,-7.575913599999978],[110.71538410000005,-7.578603099999953],[110.71313190000006,-7.584387],[110.70305950000005,-7.592163899999946],[110.70303120000005,-7.593487499999981]]]},"properties":{"shapeName":"Sukoharjo","shapeISO":"","shapeID":"22746128B52792619819195","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[119.54304530000002,-9.752657099999965],[119.54138820000003,-9.749998299999959],[119.54027460000009,-9.7418877],[119.506898,-9.7411447],[119.5062061000001,-9.7382442],[119.50788740000007,-9.733383499999945],[119.5066988000001,-9.729606899999965],[119.51001740000004,-9.728639],[119.50933860000009,-9.726394099999936],[119.51083910000011,-9.726675299999954],[119.51999290000003,-9.710802299999955],[119.52546530000006,-9.706099],[119.53476720000003,-9.69386069999996],[119.532173,-9.6886803],[119.52472990000001,-9.683953299999928],[119.51509190000002,-9.680906],[119.50204250000002,-9.680250599999965],[119.49893550000002,-9.68153579999995],[119.4973711,-9.6794563],[119.49251580000009,-9.67884349999997],[119.48288430000002,-9.6839121],[119.48038420000012,-9.68203559999995],[119.47786180000003,-9.6834006],[119.47504550000008,-9.680627899999934],[119.47088810000002,-9.680506299999934],[119.46959360000005,-9.6775235],[119.46969680000007,-9.676018299999953],[119.47269580000011,-9.6746118],[119.47109320000004,-9.670070099999975],[119.47291830000006,-9.667303499999946],[119.47611480000012,-9.66580879999998],[119.47644610000009,-9.663403599999981],[119.48136430000011,-9.657142],[119.483809,-9.65742119999993],[119.48766650000005,-9.655183799999975],[119.48484940000003,-9.649982499999965],[119.48521570000003,-9.644488099999933],[119.48805640000012,-9.640014],[119.488754,-9.634829099999934],[119.48262150000005,-9.630139499999927],[119.4818864,-9.626367199999947],[119.48387260000004,-9.621011599999974],[119.482597,-9.610287],[119.48059300000011,-9.605519399999935],[119.49498540000002,-9.587027399999954],[119.5076504000001,-9.577022],[119.51312480000001,-9.568245299999944],[119.516069,-9.5602688],[119.5149282000001,-9.542415199999937],[119.51859280000008,-9.536110399999927],[119.50774110000009,-9.53383169999995],[119.496658,-9.526789399999927],[119.48902750000002,-9.528184199999941],[119.48035630000004,-9.525193799999954],[119.475522,-9.527812],[119.47301070000003,-9.520455],[119.4659,-9.514812899999981],[119.45947420000005,-9.505616],[119.45800240000005,-9.502565699999934],[119.45941610000011,-9.500490099999979],[119.46480030000009,-9.498734499999955],[119.4649839000001,-9.493554299999971],[119.45954350000011,-9.489806399999964],[119.45568670000011,-9.48412879999995],[119.45563460000005,-9.478507199999967],[119.45204680000006,-9.478641],[119.45058460000007,-9.477287599999954],[119.4533738,-9.474244099999964],[119.45631720000006,-9.474120899999946],[119.45498070000008,-9.469042899999977],[119.450052,-9.468437699999981],[119.44935880000003,-9.463868199999979],[119.44338650000009,-9.46538229999993],[119.44536790000006,-9.458890399999973],[119.4436836000001,-9.456353399999955],[119.44512930000008,-9.454825399999947],[119.44171570000003,-9.454322199999979],[119.44302140000002,-9.452377],[119.44079150000005,-9.449989399999936],[119.441653,-9.446714799999938],[119.43936730000007,-9.44751309999998],[119.43866850000006,-9.4431935],[119.43660550000004,-9.444415599999957],[119.43639930000006,-9.442027199999927],[119.4348662000001,-9.442425499999956],[119.43633080000006,-9.440002399999969],[119.43246160000001,-9.438272899999959],[119.43324350000012,-9.435535199999947],[119.43092520000005,-9.434044],[119.43078560000004,-9.432217499999979],[119.43423490000009,-9.430828799999972],[119.43273750000003,-9.429322],[119.43078780000008,-9.430196199999955],[119.43171280000001,-9.426245599999959],[119.42951510000012,-9.4265054],[119.42652750000002,-9.423590799999943],[119.42972,-9.421692899999925],[119.42781620000005,-9.420611599999972],[119.42866560000004,-9.416664599999933],[119.42667370000004,-9.41697849999997],[119.42622490000008,-9.4153173],[119.42122490000008,-9.412434399999938],[119.41599710000003,-9.373706599999934],[119.40584560000002,-9.374546],[119.39635470000007,-9.381899799999928],[119.39076310000007,-9.383100499999955],[119.39145610000003,-9.385798399999942],[119.3948074000001,-9.388002899999947],[119.39560960000006,-9.392117699999972],[119.3805082,-9.413779699999964],[119.3766528000001,-9.426496699999973],[119.37668840000003,-9.47360509999993],[119.37555270000007,-9.479348499999958],[119.37714180000012,-9.502642899999955],[119.37779050000006,-9.504112],[119.37943650000011,-9.502223799999967],[119.38317820000009,-9.5013528],[119.3845252000001,-9.502587799999958],[119.383301,-9.503284699999938],[119.384153,-9.505078699999956],[119.38707580000005,-9.504557399999953],[119.384556,-9.5125731],[119.39188350000006,-9.520423],[119.39168540000003,-9.522156699999925],[119.39531820000002,-9.5247231],[119.39542340000003,-9.533269],[119.39292420000004,-9.540602799999931],[119.39706950000004,-9.545998],[119.40528210000002,-9.547754099999963],[119.4080004000001,-9.550043],[119.41364640000006,-9.562392299999942],[119.4053728,-9.569052299999953],[119.38790240000003,-9.589665499999967],[119.37398220000011,-9.598299599999962],[119.37233470000001,-9.606823299999974],[119.36901890000001,-9.608997299999942],[119.36976450000009,-9.609761799999944],[119.36653600000011,-9.615634499999942],[119.36060820000012,-9.615723199999934],[119.35498920000009,-9.612967099999935],[119.35308520000001,-9.615566],[119.35456590000001,-9.618031599999938],[119.35032620000004,-9.620609199999933],[119.3486501000001,-9.61972069999996],[119.342711,-9.62369339999998],[119.33781490000001,-9.622678199999939],[119.33863940000003,-9.621744399999955],[119.33680630000003,-9.619454899999937],[119.3351977000001,-9.6205722],[119.33324220000009,-9.618568599999946],[119.32949830000007,-9.623009799999977],[119.31333020000011,-9.657448199999976],[119.3042345,-9.672169399999973],[119.29692720000003,-9.677888099999961],[119.288751,-9.6818497],[119.27758840000001,-9.684530699999925],[119.270571,-9.6804537],[119.26396120000004,-9.678680699999973],[119.24929760000009,-9.683563499999934],[119.24579050000011,-9.685169199999962],[119.24458450000009,-9.687274499999944],[119.23408790000008,-9.689851399999952],[119.2159157000001,-9.677267699999959],[119.2020222000001,-9.65853059999995],[119.19908640000006,-9.650285499999939],[119.19649980000008,-9.647826599999973],[119.193146,-9.648554199999978],[119.19244150000009,-9.652078299999971],[119.18883520000009,-9.648682699999938],[119.18261250000012,-9.652762199999927],[119.17873970000005,-9.651771699999927],[119.17688120000003,-9.65527389999994],[119.17056920000005,-9.6601348],[119.16627030000006,-9.6581465],[119.16579840000009,-9.660916099999952],[119.16253060000008,-9.663039199999957],[119.1628396000001,-9.668744499999946],[119.15750870000011,-9.672143],[119.1578022000001,-9.674886499999957],[119.15429940000001,-9.677948499999957],[119.15220140000008,-9.685498199999927],[119.14854570000011,-9.690417299999979],[119.147052,-9.698276],[119.14805030000002,-9.703534599999955],[119.14355120000005,-9.709114799999952],[119.14862860000005,-9.718559599999935],[119.14422700000011,-9.724330699999939],[119.14579150000009,-9.727575499999944],[119.14457820000007,-9.730021499999964],[119.15900420000003,-9.736588499999925],[119.16307070000005,-9.742165599999964],[119.1673889000001,-9.741259599999978],[119.16830450000009,-9.742848399999957],[119.17034150000006,-9.740852399999937],[119.17433170000004,-9.741344399999946],[119.18273160000001,-9.749055899999973],[119.18495180000002,-9.758671799999945],[119.18708040000001,-9.757896399999936],[119.18852230000005,-9.759261099999947],[119.19345090000002,-9.754832299999975],[119.19264980000003,-9.749648099999945],[119.19385530000011,-9.747775099999956],[119.1999207,-9.7437849],[119.21872710000002,-9.737724299999968],[119.2229996000001,-9.738474799999949],[119.22620390000009,-9.741206199999965],[119.22610470000006,-9.742593799999952],[119.23205570000005,-9.744801499999937],[119.24545290000003,-9.742034],[119.24720760000002,-9.743022899999971],[119.24694060000002,-9.7453518],[119.24885560000007,-9.745222099999978],[119.24846650000006,-9.746588699999961],[119.25120540000012,-9.744959799999947],[119.25151060000007,-9.747409799999957],[119.25365450000004,-9.746665899999925],[119.2535782000001,-9.747942899999941],[119.25538630000005,-9.7473373],[119.25574490000008,-9.748540899999966],[119.25883480000005,-9.745865799999933],[119.2714539000001,-9.7447529],[119.27242280000007,-9.746032699999944],[119.27260590000003,-9.744741499999975],[119.27446750000001,-9.744481099999973],[119.27918240000008,-9.74617859999995],[119.282547,-9.744935],[119.28400420000003,-9.746167199999945],[119.28330230000006,-9.747377399999948],[119.28675080000005,-9.749039699999969],[119.30130770000005,-9.744357099999945],[119.30670170000008,-9.749125499999934],[119.31066890000011,-9.7600937],[119.31858060000002,-9.766353599999945],[119.32900240000004,-9.768045399999949],[119.33035280000001,-9.766946799999971],[119.32958990000009,-9.765269299999943],[119.33198550000009,-9.764509199999964],[119.33185580000008,-9.76137069999993],[119.336853,-9.758112899999958],[119.34672550000005,-9.758798599999977],[119.35162350000007,-9.760629699999981],[119.35677340000007,-9.765679299999931],[119.36169440000003,-9.767139399999962],[119.37342070000011,-9.775652],[119.37568670000007,-9.78366559999995],[119.374649,-9.785755199999926],[119.38450620000003,-9.795807799999977],[119.38980860000004,-9.797127699999976],[119.39694980000002,-9.796576499999958],[119.41027830000007,-9.788060199999961],[119.410965,-9.783625599999937],[119.40898890000005,-9.78053],[119.411232,-9.769455],[119.41734310000004,-9.7610941],[119.42391970000006,-9.758020399999964],[119.434906,-9.756232299999965],[119.4364471,-9.757697099999973],[119.44006350000006,-9.75503729999997],[119.44759370000008,-9.75495239999998],[119.4469147000001,-9.751594499999953],[119.44821170000012,-9.747651099999928],[119.45572660000005,-9.742071199999941],[119.46701050000001,-9.7408667],[119.47599030000003,-9.742319099999975],[119.48200220000001,-9.744580299999939],[119.48317720000011,-9.746988299999941],[119.48960110000007,-9.751788099999942],[119.50109860000009,-9.754894299999933],[119.50188450000007,-9.756267599999944],[119.50251770000011,-9.753765099999953],[119.50573730000008,-9.753525699999955],[119.51038360000007,-9.758558299999947],[119.50997160000009,-9.76021959999997],[119.51103210000008,-9.760325399999942],[119.51158910000004,-9.757615099999953],[119.51333620000003,-9.757577899999944],[119.52693940000006,-9.766584399999942],[119.53450010000006,-9.7650137],[119.53590390000011,-9.766381299999978],[119.53630830000009,-9.76389789999996],[119.53885650000007,-9.762747699999977],[119.54063420000011,-9.755002],[119.54304530000002,-9.752657099999965]]]},"properties":{"shapeName":"Sumba Barat","shapeISO":"","shapeID":"22746128B23159725212772","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[119.39076310000007,-9.383100499999955],[119.38387300000011,-9.383127199999933],[119.3754272000001,-9.380143199999964],[119.35415650000004,-9.37677569999994],[119.3481369000001,-9.377198199999953],[119.341568,-9.374567],[119.32545470000002,-9.371365499999968],[119.31706240000005,-9.367528],[119.30631260000007,-9.359583899999961],[119.2984848000001,-9.357095699999945],[119.28592680000008,-9.359845099999973],[119.2714539000001,-9.3683319],[119.26242830000001,-9.368387199999972],[119.25226590000011,-9.371485699999937],[119.23683460000007,-9.378565899999955],[119.225094,-9.389364399999977],[119.21972540000002,-9.391017],[119.2076492000001,-9.386770199999944],[119.20050050000009,-9.379215199999976],[119.19423680000011,-9.374942799999928],[119.18657680000001,-9.374032],[119.1725540000001,-9.376296],[119.15361020000012,-9.383856799999933],[119.1370773000001,-9.395842499999958],[119.12300110000001,-9.402759599999968],[119.11404420000008,-9.408980399999962],[119.10933690000002,-9.415858299999968],[119.10162350000007,-9.421349499999963],[119.09407040000008,-9.421849299999963],[119.08415990000003,-9.41879369999998],[119.07209780000005,-9.42381949999998],[119.051506,-9.424603499999932],[119.032959,-9.431012199999941],[119.00402830000007,-9.446410199999946],[118.9956360000001,-9.452158899999972],[118.99474340000006,-9.454072],[118.98983,-9.456274],[118.9716568,-9.475020399999948],[118.97127530000012,-9.4773941],[118.96640780000007,-9.480425799999978],[118.96660610000004,-9.481861099999946],[118.96453090000011,-9.481991799999946],[118.95269010000004,-9.500972699999977],[118.9440231000001,-9.510613399999954],[118.92948920000003,-9.541867299999979],[118.9270782000001,-9.551448799999946],[118.92785640000011,-9.557576199999971],[118.9313049000001,-9.562390299999947],[118.9469147000001,-9.574828199999956],[118.97190090000004,-9.597928],[118.98613740000008,-9.607698399999947],[118.984848,-9.610733],[118.98645780000004,-9.615355499999964],[118.995018,-9.626662199999942],[119.0029144,-9.630489299999965],[119.00523380000004,-9.633104299999957],[119.00910950000002,-9.646331799999928],[119.01519770000004,-9.654777499999966],[119.01496120000002,-9.657002399999953],[119.01757810000004,-9.661912899999948],[119.02418520000003,-9.670361499999956],[119.02618410000002,-9.675084099999935],[119.04676060000008,-9.689181299999973],[119.049118,-9.692493499999955],[119.05559540000002,-9.695541399999968],[119.05790710000008,-9.698558799999944],[119.059494,-9.69945619999993],[119.06220250000001,-9.697249399999976],[119.07492830000001,-9.702405899999974],[119.09087370000009,-9.71349429999998],[119.0914001000001,-9.715754499999946],[119.09242250000011,-9.714187599999946],[119.10511780000002,-9.713535299999933],[119.11574550000012,-9.7207365],[119.11605070000007,-9.724503499999969],[119.11780550000003,-9.72646709999998],[119.12336730000004,-9.724903099999949],[119.12486270000011,-9.727013599999964],[119.12918850000005,-9.7273646],[119.12802890000012,-9.729887],[119.13022610000007,-9.729339599999946],[119.13141630000007,-9.73081019999995],[119.13264470000001,-9.7291345],[119.134552,-9.730921799999976],[119.13793950000002,-9.727685899999926],[119.14457820000007,-9.730021499999964],[119.14579150000009,-9.727575499999944],[119.14422700000011,-9.724330699999939],[119.14862860000005,-9.718559599999935],[119.14355120000005,-9.709114799999952],[119.14805030000002,-9.703534599999955],[119.147052,-9.698276],[119.14854570000011,-9.690417299999979],[119.15220140000008,-9.685498199999927],[119.15429940000001,-9.677948499999957],[119.1578022000001,-9.674886499999957],[119.15750870000011,-9.672143],[119.1628396000001,-9.668744499999946],[119.16253060000008,-9.663039199999957],[119.16579840000009,-9.660916099999952],[119.16627030000006,-9.6581465],[119.17056920000005,-9.6601348],[119.17688120000003,-9.65527389999994],[119.17873970000005,-9.651771699999927],[119.18261250000012,-9.652762199999927],[119.18883520000009,-9.648682699999938],[119.19244150000009,-9.652078299999971],[119.193146,-9.648554199999978],[119.19649980000008,-9.647826599999973],[119.19908640000006,-9.650285499999939],[119.2020222000001,-9.65853059999995],[119.2159157000001,-9.677267699999959],[119.23408790000008,-9.689851399999952],[119.24458450000009,-9.687274499999944],[119.24579050000011,-9.685169199999962],[119.24929760000009,-9.683563499999934],[119.26396120000004,-9.678680699999973],[119.270571,-9.6804537],[119.27758840000001,-9.684530699999925],[119.288751,-9.6818497],[119.29692720000003,-9.677888099999961],[119.3042345,-9.672169399999973],[119.31333020000011,-9.657448199999976],[119.32949830000007,-9.623009799999977],[119.33324220000009,-9.618568599999946],[119.3351977000001,-9.6205722],[119.33680630000003,-9.619454899999937],[119.33863940000003,-9.621744399999955],[119.33781490000001,-9.622678199999939],[119.342711,-9.62369339999998],[119.3486501000001,-9.61972069999996],[119.35032620000004,-9.620609199999933],[119.35456590000001,-9.618031599999938],[119.35308520000001,-9.615566],[119.35498920000009,-9.612967099999935],[119.36060820000012,-9.615723199999934],[119.36653600000011,-9.615634499999942],[119.36976450000009,-9.609761799999944],[119.36901890000001,-9.608997299999942],[119.37233470000001,-9.606823299999974],[119.37398220000011,-9.598299599999962],[119.38790240000003,-9.589665499999967],[119.4053728,-9.569052299999953],[119.41364640000006,-9.562392299999942],[119.4080004000001,-9.550043],[119.40528210000002,-9.547754099999963],[119.39706950000004,-9.545998],[119.39292420000004,-9.540602799999931],[119.39542340000003,-9.533269],[119.39531820000002,-9.5247231],[119.39168540000003,-9.522156699999925],[119.39188350000006,-9.520423],[119.384556,-9.5125731],[119.38707580000005,-9.504557399999953],[119.384153,-9.505078699999956],[119.383301,-9.503284699999938],[119.3845252000001,-9.502587799999958],[119.38317820000009,-9.5013528],[119.37943650000011,-9.502223799999967],[119.37779050000006,-9.504112],[119.37714180000012,-9.502642899999955],[119.37555270000007,-9.479348499999958],[119.37668840000003,-9.47360509999993],[119.3766528000001,-9.426496699999973],[119.3805082,-9.413779699999964],[119.39560960000006,-9.392117699999972],[119.3948074000001,-9.388002899999947],[119.39145610000003,-9.385798399999942],[119.39076310000007,-9.383100499999955]]]},"properties":{"shapeName":"Sumba Barat Daya","shapeISO":"","shapeID":"22746128B40471014517797","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[119.54304530000002,-9.752657099999965],[119.546669,-9.751935],[119.54939270000011,-9.7536097],[119.54859920000001,-9.758467699999926],[119.55323790000011,-9.765955899999938],[119.55924990000005,-9.763841599999978],[119.56608580000011,-9.76881789999993],[119.56817630000012,-9.76885509999994],[119.57447050000007,-9.765629799999942],[119.57742310000003,-9.766335499999968],[119.5802536000001,-9.762197499999957],[119.58423620000008,-9.762340499999937],[119.58567810000011,-9.765263599999969],[119.587883,-9.7662983],[119.58694460000004,-9.769929899999966],[119.58993530000009,-9.771730399999967],[119.58990480000011,-9.773320199999944],[119.59035490000008,-9.772131899999977],[119.59180450000008,-9.773946799999976],[119.59551240000008,-9.7725849],[119.59606930000007,-9.773757],[119.59406280000007,-9.774792699999978],[119.59325410000008,-9.777237899999932],[119.59384150000005,-9.778553],[119.59496310000009,-9.777616499999965],[119.59485630000006,-9.779061299999967],[119.60189060000005,-9.7770367],[119.60556030000009,-9.773795099999973],[119.6085663,-9.775353399999972],[119.61318970000002,-9.770053899999937],[119.61430360000008,-9.76464939999994],[119.61605830000008,-9.763611799999978],[119.62637330000007,-9.766836199999943],[119.628418,-9.772568699999965],[119.62548060000006,-9.775112199999967],[119.6279068,-9.777957],[119.62373350000007,-9.784799599999928],[119.61988830000007,-9.783868799999937],[119.61988830000007,-9.786334],[119.62249760000009,-9.788043],[119.62207030000002,-9.789886499999966],[119.62033840000004,-9.791629799999953],[119.61416630000008,-9.790041],[119.6178589000001,-9.798565899999971],[119.62110140000004,-9.800899499999957],[119.6279449000001,-9.7998009],[119.64217380000002,-9.792375599999957],[119.64603430000011,-9.793374099999937],[119.64741520000007,-9.789953199999957],[119.65000920000011,-9.78849219999995],[119.6467209000001,-9.785452799999973],[119.6469727000001,-9.783319499999948],[119.64957430000004,-9.782600399999978],[119.6500473000001,-9.778599799999938],[119.65351110000006,-9.776337599999977],[119.66113280000002,-9.776888799999938],[119.671051,-9.780947699999956],[119.67301940000004,-9.783135399999935],[119.67311860000007,-9.786058399999945],[119.67874910000012,-9.790248899999938],[119.67734530000007,-9.796085399999981],[119.67237850000004,-9.797155399999951],[119.67546080000011,-9.801835099999948],[119.67463680000003,-9.803566899999964],[119.67893980000008,-9.803325599999937],[119.68068690000007,-9.804939299999944],[119.68103790000009,-9.803731],[119.68273920000001,-9.804699899999946],[119.68409730000008,-9.803629899999976],[119.68657690000009,-9.807313],[119.685051,-9.811905899999942],[119.68870540000012,-9.812740299999973],[119.68995670000004,-9.81663229999998],[119.688385,-9.821050599999978],[119.6828461,-9.82434459999996],[119.68276980000007,-9.827050199999974],[119.68013760000008,-9.828621899999973],[119.67827610000006,-9.827359199999933],[119.678421,-9.828881199999955],[119.67483520000008,-9.828663799999958],[119.68571470000006,-9.830173499999944],[119.69139860000007,-9.8335619],[119.713974,-9.838258699999926],[119.72029880000002,-9.84389109999995],[119.73195650000002,-9.840475099999935],[119.73165890000007,-9.8226547],[119.73600010000007,-9.806797],[119.73406980000004,-9.7914047],[119.7369079,-9.778998399999978],[119.73783870000011,-9.75606629999993],[119.74256130000003,-9.743236599999932],[119.74971770000002,-9.734654399999954],[119.74865720000003,-9.731396699999948],[119.74591060000012,-9.730712],[119.74124150000011,-9.726507199999958],[119.73841090000008,-9.7271538],[119.7325211000001,-9.717882199999963],[119.72783660000005,-9.7154913],[119.72530360000007,-9.691006699999946],[119.72671510000009,-9.686550099999977],[119.73605350000003,-9.676353499999948],[119.746315,-9.670199399999944],[119.75145720000012,-9.67091849999997],[119.7591705000001,-9.675309199999958],[119.764801,-9.676322899999946],[119.78689580000002,-9.669840799999974],[119.8085632000001,-9.666791],[119.8180618,-9.666997],[119.8308029000001,-9.669452699999965],[119.83547210000006,-9.66774179999993],[119.83819580000011,-9.6692286],[119.8416214,-9.666620299999977],[119.84465030000001,-9.66145229999995],[119.84400940000012,-9.65363689999998],[119.8466949000001,-9.641612099999975],[119.84552760000008,-9.639523499999939],[119.84697720000008,-9.634199199999955],[119.84612270000002,-9.631819699999937],[119.84765620000007,-9.629312499999969],[119.84568020000006,-9.626811],[119.84542850000003,-9.622918099999936],[119.84167480000008,-9.617681499999946],[119.85083770000006,-9.612106299999937],[119.85007480000002,-9.610077899999965],[119.84828190000007,-9.609758399999976],[119.84975430000009,-9.606773399999952],[119.84651950000011,-9.60209939999993],[119.844223,-9.602053699999942],[119.84393310000007,-9.604126899999926],[119.84077450000007,-9.6019516],[119.84592440000006,-9.598379099999931],[119.84541320000005,-9.595094699999947],[119.84307860000001,-9.594091399999968],[119.84200290000001,-9.589344],[119.83952330000011,-9.5874071],[119.8412628000001,-9.577693899999929],[119.84741970000005,-9.573398599999962],[119.85325620000003,-9.573934599999973],[119.852562,-9.568010299999969],[119.85541540000008,-9.567432399999973],[119.85600280000006,-9.563927599999943],[119.85936740000011,-9.56182769999998],[119.85818480000012,-9.555782299999976],[119.86511230000008,-9.553135899999972],[119.86721040000009,-9.555523899999969],[119.86987310000006,-9.554429099999936],[119.86978910000005,-9.5518665],[119.86686710000004,-9.549827599999958],[119.87100980000002,-9.546491599999968],[119.871048,-9.542688399999975],[119.87484740000002,-9.543430299999955],[119.87305450000008,-9.532821699999943],[119.87516790000006,-9.5283012],[119.88262940000004,-9.523220099999946],[119.88602450000008,-9.51878359999995],[119.88735960000008,-9.515317899999957],[119.88664250000011,-9.513031],[119.888977,-9.5126505],[119.89278410000009,-9.516219099999944],[119.89630130000012,-9.516605399999946],[119.90341190000004,-9.512823099999935],[119.90434270000003,-9.508605899999964],[119.90592960000004,-9.512501699999973],[119.9091644,-9.512912799999981],[119.91249080000011,-9.505483599999934],[119.91141510000011,-9.497023599999977],[119.91428380000002,-9.495659799999942],[119.91607670000008,-9.499622299999942],[119.91714480000007,-9.497018799999978],[119.92079930000011,-9.495925],[119.917366,-9.492954299999951],[119.917984,-9.487667099999953],[119.92330930000003,-9.489424699999972],[119.9258575,-9.484897599999954],[119.92276,-9.484557199999927],[119.92583470000011,-9.4819689],[119.92079160000003,-9.480547],[119.92183690000002,-9.476060899999936],[119.91733550000004,-9.477336899999955],[119.91517640000006,-9.474482499999965],[119.91660310000009,-9.465663],[119.90615850000006,-9.454209299999945],[119.89733120000005,-9.433925599999952],[119.8985977000001,-9.432832699999949],[119.8964691000001,-9.4319],[119.89852140000005,-9.425748799999951],[119.90151980000007,-9.423920599999974],[119.90139770000008,-9.421721399999967],[119.89917750000006,-9.420670499999972],[119.90228270000011,-9.417635],[119.90238190000002,-9.411917699999947],[119.9050903000001,-9.412527099999977],[119.90447230000007,-9.4109163],[119.906807,-9.410370799999953],[119.90696720000005,-9.406748799999946],[119.91134640000007,-9.402612699999963],[119.90979,-9.399353],[119.91058350000003,-9.396555],[119.91284940000003,-9.3952198],[119.9105072000001,-9.393541299999981],[119.91173550000008,-9.391645399999959],[119.91003420000004,-9.387389199999973],[119.90789030000008,-9.386355399999957],[119.909111,-9.383151099999964],[119.90488440000001,-9.379257199999927],[119.90037530000006,-9.3786373],[119.89824680000004,-9.37996579999998],[119.89379120000001,-9.376538299999936],[119.88810730000012,-9.375624699999946],[119.88676450000003,-9.373391199999958],[119.87637330000007,-9.371293099999946],[119.8754196000001,-9.367241899999954],[119.8690262,-9.357525799999962],[119.86962130000006,-9.35574719999994],[119.86484530000007,-9.343454399999928],[119.84937290000005,-9.352649699999972],[119.8342133000001,-9.36468309999998],[119.82066350000002,-9.38058849999993],[119.80700680000007,-9.393884699999944],[119.79400640000006,-9.399467499999957],[119.7843094000001,-9.399648699999943],[119.77314760000002,-9.396779099999947],[119.76154330000008,-9.385685899999942],[119.75369260000002,-9.385873799999956],[119.74568940000006,-9.388494499999979],[119.73071290000007,-9.389223099999981],[119.68637080000008,-9.38241],[119.65662390000011,-9.367854099999931],[119.64067840000007,-9.355452499999956],[119.63240050000002,-9.346145599999943],[119.6280670000001,-9.345279699999935],[119.60037230000012,-9.346579599999927],[119.58580020000011,-9.350656499999957],[119.57176970000012,-9.356296499999928],[119.5617294000001,-9.365440399999954],[119.55131530000006,-9.37216189999998],[119.5317841000001,-9.377796199999977],[119.52261350000003,-9.377946899999927],[119.51437380000004,-9.375636099999952],[119.50009920000002,-9.368398699999943],[119.48925020000001,-9.365822799999933],[119.47692110000003,-9.358839099999955],[119.47236630000009,-9.358048399999973],[119.4606629000001,-9.359281499999952],[119.4433441000001,-9.364305499999944],[119.42881770000008,-9.374608],[119.42861940000012,-9.376461],[119.42615510000007,-9.377940199999955],[119.42517850000002,-9.375467299999968],[119.41599710000003,-9.373706599999934],[119.42122490000008,-9.412434399999938],[119.42622490000008,-9.4153173],[119.42667370000004,-9.41697849999997],[119.42866560000004,-9.416664599999933],[119.42781620000005,-9.420611599999972],[119.42972,-9.421692899999925],[119.42652750000002,-9.423590799999943],[119.42951510000012,-9.4265054],[119.43171280000001,-9.426245599999959],[119.43078780000008,-9.430196199999955],[119.43273750000003,-9.429322],[119.43423490000009,-9.430828799999972],[119.43078560000004,-9.432217499999979],[119.43092520000005,-9.434044],[119.43324350000012,-9.435535199999947],[119.43246160000001,-9.438272899999959],[119.43633080000006,-9.440002399999969],[119.4348662000001,-9.442425499999956],[119.43639930000006,-9.442027199999927],[119.43660550000004,-9.444415599999957],[119.43866850000006,-9.4431935],[119.43936730000007,-9.44751309999998],[119.441653,-9.446714799999938],[119.44079150000005,-9.449989399999936],[119.44302140000002,-9.452377],[119.44171570000003,-9.454322199999979],[119.44512930000008,-9.454825399999947],[119.4436836000001,-9.456353399999955],[119.44536790000006,-9.458890399999973],[119.44338650000009,-9.46538229999993],[119.44935880000003,-9.463868199999979],[119.450052,-9.468437699999981],[119.45498070000008,-9.469042899999977],[119.45631720000006,-9.474120899999946],[119.4533738,-9.474244099999964],[119.45058460000007,-9.477287599999954],[119.45204680000006,-9.478641],[119.45563460000005,-9.478507199999967],[119.45568670000011,-9.48412879999995],[119.45954350000011,-9.489806399999964],[119.4649839000001,-9.493554299999971],[119.46480030000009,-9.498734499999955],[119.45941610000011,-9.500490099999979],[119.45800240000005,-9.502565699999934],[119.45947420000005,-9.505616],[119.4659,-9.514812899999981],[119.47301070000003,-9.520455],[119.475522,-9.527812],[119.48035630000004,-9.525193799999954],[119.48902750000002,-9.528184199999941],[119.496658,-9.526789399999927],[119.50774110000009,-9.53383169999995],[119.51859280000008,-9.536110399999927],[119.5149282000001,-9.542415199999937],[119.516069,-9.5602688],[119.51312480000001,-9.568245299999944],[119.5076504000001,-9.577022],[119.49498540000002,-9.587027399999954],[119.48059300000011,-9.605519399999935],[119.482597,-9.610287],[119.48387260000004,-9.621011599999974],[119.4818864,-9.626367199999947],[119.48262150000005,-9.630139499999927],[119.488754,-9.634829099999934],[119.48805640000012,-9.640014],[119.48521570000003,-9.644488099999933],[119.48484940000003,-9.649982499999965],[119.48766650000005,-9.655183799999975],[119.483809,-9.65742119999993],[119.48136430000011,-9.657142],[119.47644610000009,-9.663403599999981],[119.47611480000012,-9.66580879999998],[119.47291830000006,-9.667303499999946],[119.47109320000004,-9.670070099999975],[119.47269580000011,-9.6746118],[119.46969680000007,-9.676018299999953],[119.46959360000005,-9.6775235],[119.47088810000002,-9.680506299999934],[119.47504550000008,-9.680627899999934],[119.47786180000003,-9.6834006],[119.48038420000012,-9.68203559999995],[119.48288430000002,-9.6839121],[119.49251580000009,-9.67884349999997],[119.4973711,-9.6794563],[119.49893550000002,-9.68153579999995],[119.50204250000002,-9.680250599999965],[119.51509190000002,-9.680906],[119.52472990000001,-9.683953299999928],[119.532173,-9.6886803],[119.53476720000003,-9.69386069999996],[119.52546530000006,-9.706099],[119.51999290000003,-9.710802299999955],[119.51083910000011,-9.726675299999954],[119.50933860000009,-9.726394099999936],[119.51001740000004,-9.728639],[119.5066988000001,-9.729606899999965],[119.50788740000007,-9.733383499999945],[119.5062061000001,-9.7382442],[119.506898,-9.7411447],[119.54027460000009,-9.7418877],[119.54138820000003,-9.749998299999959],[119.54304530000002,-9.752657099999965]]]},"properties":{"shapeName":"Sumba Tengah","shapeISO":"","shapeID":"22746128B45776549192217","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[120.11576840000009,-10.334692899999936],[120.12398530000007,-10.332538599999964],[120.12608340000008,-10.327417399999945],[120.12329870000008,-10.325937299999964],[120.11743160000003,-10.32626629999993],[120.10957340000004,-10.329511599999933],[120.10640720000004,-10.332756],[120.10921480000002,-10.334335299999964],[120.11576840000009,-10.334692899999936]]],[[[120.16495510000004,-10.31230729999993],[120.16203310000003,-10.313075099999935],[120.16173550000008,-10.315285699999947],[120.16403960000002,-10.316386199999954],[120.16510010000002,-10.314679199999944],[120.16615290000004,-10.315274199999976],[120.16495510000004,-10.31230729999993]]],[[[120.21263890000012,-10.304607399999952],[120.20879360000004,-10.303970299999946],[120.19911190000005,-10.306943],[120.19511410000007,-10.3099527],[120.18032080000012,-10.312390299999947],[120.17089080000005,-10.317384699999934],[120.17537690000006,-10.321219399999961],[120.18362430000002,-10.323645599999963],[120.200386,-10.322835],[120.20652770000004,-10.319310199999961],[120.21170810000001,-10.3184672],[120.21334840000009,-10.316236499999945],[120.21395870000003,-10.309743899999944],[120.21263890000012,-10.304607399999952]]],[[[120.010498,-10.125466399999937],[120.0106201000001,-10.12411789999993],[120.00931550000007,-10.125976599999944],[120.010498,-10.125466399999937]]],[[[119.7673416,-9.907682399999942],[119.76813510000011,-9.906632399999978],[119.76656340000011,-9.906208],[119.7673416,-9.907682399999942]]],[[[119.70150760000001,-9.859681099999932],[119.70226290000005,-9.857308399999965],[119.70108790000006,-9.857965499999978],[119.70150760000001,-9.859681099999932]]],[[[119.67483520000008,-9.828663799999958],[119.67752840000003,-9.830055199999947],[119.674469,-9.832045499999936],[119.68038940000008,-9.833205199999952],[119.68105320000006,-9.837273599999946],[119.68350980000002,-9.837634099999946],[119.68456270000001,-9.842495],[119.68328860000008,-9.842704799999979],[119.68596650000006,-9.844671299999959],[119.68461610000008,-9.845572499999946],[119.68650820000005,-9.847977599999979],[119.687912,-9.846450799999957],[119.68944550000003,-9.847926099999938],[119.6933441000001,-9.843530699999974],[119.69661710000003,-9.84375],[119.6986237000001,-9.8459768],[119.69826510000007,-9.849571199999957],[119.70323940000003,-9.856459599999937],[119.70688630000006,-9.856277499999976],[119.70867160000012,-9.857689799999946],[119.70780950000005,-9.8630018],[119.71119690000012,-9.863220199999944],[119.71188350000011,-9.865764599999977],[119.7218246000001,-9.865993499999945],[119.72212980000006,-9.867581399999949],[119.72608950000006,-9.868431099999952],[119.72853090000001,-9.871460899999931],[119.73667140000009,-9.87369629999995],[119.73904420000008,-9.877520599999968],[119.74425510000003,-9.880107899999928],[119.74474340000006,-9.882697099999973],[119.74652860000003,-9.882184],[119.75009160000002,-9.885337799999945],[119.75018310000007,-9.887293799999952],[119.75124360000007,-9.8864784],[119.75376890000007,-9.888854],[119.755661,-9.888267499999927],[119.76808170000004,-9.89645669999993],[119.7726517000001,-9.9026174],[119.77764890000003,-9.905290599999944],[119.77809140000011,-9.90709019999997],[119.77690890000008,-9.9075117],[119.78095250000001,-9.909864399999947],[119.780426,-9.912528],[119.77836610000008,-9.9133663],[119.77728270000011,-9.915815399999929],[119.77956390000008,-9.9151049],[119.78360750000002,-9.919093099999941],[119.78147890000002,-9.92030049999994],[119.78366090000009,-9.922316499999965],[119.78462980000006,-9.9199676],[119.78677370000003,-9.921799599999929],[119.79431920000002,-9.919181799999933],[119.79840090000005,-9.920050599999968],[119.79747770000006,-9.918227199999933],[119.8004456000001,-9.91893959999993],[119.80181880000009,-9.91518689999998],[119.80741120000005,-9.914371499999959],[119.81143190000012,-9.915388099999973],[119.813385,-9.917192399999976],[119.81268310000007,-9.919208499999968],[119.81403350000005,-9.918196699999953],[119.81526180000003,-9.920996699999932],[119.82012940000004,-9.922823],[119.82272340000009,-9.922687499999938],[119.8235168000001,-9.920273799999961],[119.82520290000002,-9.920055399999967],[119.8269653000001,-9.9215498],[119.826622,-9.924923899999953],[119.83473970000011,-9.928582199999937],[119.84220120000009,-9.927067799999975],[119.84399410000003,-9.923630699999933],[119.84913640000002,-9.9205494],[119.85720060000006,-9.920649499999968],[119.8629151,-9.922313699999961],[119.87054440000009,-9.928659399999958],[119.87386320000007,-9.934931699999936],[119.87218480000001,-9.941894499999933],[119.87058260000003,-9.943009399999937],[119.86797330000002,-9.942290299999968],[119.87126160000003,-9.949134799999968],[119.88208770000006,-9.957920099999967],[119.89489750000007,-9.954327599999942],[119.89913940000008,-9.948091499999975],[119.90504450000003,-9.950207699999964],[119.905365,-9.9606409],[119.90170290000003,-9.964043599999968],[119.90258030000007,-9.970394099999965],[119.90513610000005,-9.973547899999971],[119.93132780000008,-9.980936],[119.936348,-9.979426399999966],[119.9376602000001,-9.9760685],[119.94216920000008,-9.973626199999956],[119.946701,-9.973068199999943],[119.94989010000006,-9.974368099999936],[119.95386510000003,-9.979690499999947],[119.954216,-9.984423599999957],[119.95163730000002,-9.9954281],[119.94807430000003,-9.996293099999946],[119.9471893000001,-9.999659599999973],[119.95672610000008,-10.0060082],[119.95661160000009,-10.007084799999973],[119.97095490000004,-10.015113799999938],[119.99545290000003,-10.038473099999976],[119.9993134,-10.044879899999955],[119.9987106000001,-10.050066],[120.00019070000008,-10.054834299999982],[120.00856020000003,-10.062185299999953],[120.0094223000001,-10.064076399999976],[120.0084534,-10.065871199999947],[120.0132675000001,-10.0703764],[120.013298,-10.072693799999968],[120.01496120000002,-10.074048],[120.01438140000005,-10.075839],[120.01876070000003,-10.0795279],[120.0174637,-10.082899099999963],[120.01967620000005,-10.083243399999958],[120.02111050000008,-10.086519199999941],[120.02294920000008,-10.098184599999968],[120.02188110000009,-10.100071899999932],[120.01116180000008,-10.104630499999928],[120.01235960000008,-10.107987399999956],[120.0063477000001,-10.114828099999954],[120.00775910000004,-10.114872899999966],[120.00695040000005,-10.117793099999972],[120.0090408000001,-10.117515599999933],[120.01000220000003,-10.120017],[120.00815580000005,-10.124085399999956],[120.01103970000008,-10.123445499999946],[120.01119230000006,-10.121948199999963],[120.01393130000008,-10.123607599999957],[120.02017980000005,-10.121548599999926],[120.03544610000006,-10.120505299999934],[120.045723,-10.125546399999962],[120.07012180000004,-10.149625799999967],[120.07778170000006,-10.159853899999973],[120.0781631000001,-10.161768],[120.07612610000001,-10.163803099999939],[120.07862860000012,-10.162557599999957],[120.08436580000011,-10.1680279],[120.08439640000006,-10.17610929999995],[120.08258060000003,-10.177453],[120.08493810000004,-10.176941899999974],[120.08565520000002,-10.178505899999948],[120.08748630000002,-10.176620499999956],[120.09030150000001,-10.178160699999978],[120.09220890000006,-10.1756248],[120.0993118,-10.175541899999928],[120.10181430000011,-10.17424109999996],[120.11065670000005,-10.178072],[120.12667850000003,-10.192174],[120.1321335,-10.202023499999939],[120.13964080000005,-10.209021599999971],[120.14490510000007,-10.219017],[120.14588160000005,-10.218620299999941],[120.14912410000011,-10.223815],[120.16394050000008,-10.2331238],[120.16453550000006,-10.234763199999975],[120.16305540000008,-10.235580499999969],[120.16588590000003,-10.236751499999968],[120.16484070000001,-10.240181],[120.16708370000003,-10.2399836],[120.1673813000001,-10.237262699999974],[120.16985320000003,-10.235781699999961],[120.17159270000002,-10.231864],[120.17960360000006,-10.229189899999938],[120.18582920000006,-10.231006599999944],[120.1971741000001,-10.238070499999935],[120.20938870000009,-10.252025599999968],[120.21210480000002,-10.253196699999933],[120.21637730000009,-10.252071399999977],[120.218277,-10.254083599999944],[120.21951290000004,-10.252204899999981],[120.22360230000004,-10.252536799999973],[120.22449490000008,-10.25112439999998],[120.23016360000008,-10.250590299999942],[120.23657230000003,-10.245408099999963],[120.24305720000007,-10.244051899999931],[120.26795960000004,-10.245485299999928],[120.28030390000004,-10.2500744],[120.28858180000009,-10.255796399999952],[120.29561620000004,-10.257806799999969],[120.29824830000007,-10.2572441],[120.30084230000011,-10.253958699999941],[120.30374150000011,-10.254052199999933],[120.30437470000004,-10.251092899999946],[120.31917570000007,-10.253869099999974],[120.3260193000001,-10.251547799999969],[120.3342133000001,-10.251895899999965],[120.34619140000007,-10.248562799999945],[120.34973910000008,-10.249174099999948],[120.36557010000001,-10.255555099999981],[120.39084630000002,-10.269641899999954],[120.42665860000011,-10.297065699999962],[120.4290390000001,-10.302964199999963],[120.43203740000001,-10.30167769999997],[120.43839260000004,-10.30765249999996],[120.44315340000003,-10.3066025],[120.4444198000001,-10.308725399999958],[120.44905090000009,-10.309942299999932],[120.45022590000008,-10.3130913],[120.4493179000001,-10.314918499999976],[120.45236970000008,-10.313560499999937],[120.45336910000003,-10.317213099999947],[120.45433050000008,-10.31706909999997],[120.4541779000001,-10.312617299999943],[120.45713810000007,-10.3087959],[120.46372990000009,-10.305446599999925],[120.46865850000006,-10.305975899999964],[120.47295380000003,-10.3019485],[120.4750977000001,-10.292692199999976],[120.47839350000004,-10.28715989999995],[120.47764590000008,-10.282886499999961],[120.47899630000006,-10.274054499999977],[120.48254390000011,-10.270039499999939],[120.48558810000009,-10.263037699999927],[120.50032040000008,-10.258945499999982],[120.50577550000003,-10.255749699999967],[120.51335140000003,-10.256503099999975],[120.51714320000008,-10.24727439999998],[120.5319290000001,-10.240047499999946],[120.5518952000001,-10.237842599999965],[120.56741330000011,-10.238687499999969],[120.57255550000002,-10.240098],[120.58317570000008,-10.247981099999947],[120.591011,-10.251379],[120.605484,-10.253343599999937],[120.61303710000004,-10.252975499999934],[120.62391660000003,-10.24823859999998],[120.63005070000008,-10.236736299999961],[120.64005280000003,-10.229039199999931],[120.648674,-10.228241],[120.67049410000004,-10.2298031],[120.68528750000007,-10.224436699999956],[120.68789670000001,-10.219650299999955],[120.70327760000009,-10.208995799999968],[120.71805570000004,-10.204243599999927],[120.7293701000001,-10.194582],[120.73919680000006,-10.190235099999938],[120.74250790000008,-10.186468099999956],[120.74590300000011,-10.17375469999996],[120.75070960000005,-10.163472199999944],[120.7575455000001,-10.1541281],[120.77388760000008,-10.141731299999947],[120.79283910000004,-10.133482],[120.80542750000006,-10.131094],[120.81542210000009,-10.125056299999926],[120.81752010000002,-10.11878969999998],[120.82727050000005,-10.110398299999929],[120.83940120000011,-10.095290199999965],[120.8416519000001,-10.088417],[120.83715060000009,-10.086705199999926],[120.8443069000001,-10.06885909999994],[120.84437560000003,-10.0569],[120.84708410000007,-10.0384483],[120.84592440000006,-10.028822899999966],[120.83911890000002,-10.015155799999945],[120.83476260000009,-10.011088399999949],[120.83036040000002,-10.010849],[120.83257290000006,-10.007288899999935],[120.83220670000003,-10.004966699999954],[120.82641600000011,-9.9968233],[120.82267,-9.994862599999976],[120.82099910000011,-9.987069099999928],[120.81759640000007,-9.982531599999959],[120.81613920000007,-9.97740269999997],[120.797287,-9.963042299999927],[120.78467560000001,-9.948715199999981],[120.76558680000005,-9.938508],[120.75923160000002,-9.93200109999998],[120.75549320000005,-9.9311161],[120.754036,-9.928653699999927],[120.74703980000004,-9.92409989999993],[120.73991390000003,-9.921816799999931],[120.7390213000001,-9.923834799999952],[120.7338181,-9.924546199999952],[120.72718050000003,-9.922758099999953],[120.72857670000008,-9.921809199999927],[120.71987910000007,-9.918082199999958],[120.71678930000007,-9.921104399999933],[120.71321870000008,-9.920947099999978],[120.70904540000004,-9.91881559999996],[120.70431520000011,-9.911007899999959],[120.69528960000002,-9.904154799999958],[120.68939970000008,-9.903274499999952],[120.68865970000002,-9.905452699999955],[120.67808530000002,-9.89918709999995],[120.66041570000004,-9.873169899999937],[120.64604190000011,-9.8451376],[120.63023380000004,-9.819086099999936],[120.62783050000007,-9.81088159999996],[120.62749480000002,-9.796489699999938],[120.62557980000008,-9.790243199999964],[120.6178589000001,-9.779450399999973],[120.6085892000001,-9.773443199999974],[120.60558320000007,-9.769013399999949],[120.60171510000009,-9.754942899999946],[120.60025790000009,-9.740652099999977],[120.59714510000003,-9.731618899999944],[120.5927124000001,-9.72857],[120.5825195000001,-9.727271099999939],[120.57800290000012,-9.725337],[120.5732269,-9.712195399999928],[120.56967930000008,-9.707193399999937],[120.55789950000008,-9.695836099999951],[120.54487610000001,-9.688679699999966],[120.53878780000002,-9.686535799999945],[120.5299682000001,-9.690427799999952],[120.52201080000009,-9.691974699999946],[120.50408940000011,-9.685654599999964],[120.49839020000002,-9.677540799999974],[120.4931183000001,-9.657316199999968],[120.48086550000005,-9.631259899999975],[120.4769745000001,-9.62459279999996],[120.46808620000002,-9.61663059999995],[120.46213530000011,-9.615005499999938],[120.4386826000001,-9.626411399999938],[120.42663570000002,-9.627853399999935],[120.40661620000003,-9.635640199999955],[120.38834380000003,-9.637661899999955],[120.3829727000001,-9.643730199999936],[120.38634490000004,-9.644619899999952],[120.3890305000001,-9.648424099999943],[120.37907410000003,-9.647361799999942],[120.37843320000002,-9.644387199999926],[120.37608340000008,-9.642584799999952],[120.36586000000011,-9.643580399999962],[120.36392210000008,-9.644562699999938],[120.36369320000006,-9.646311799999978],[120.36024480000003,-9.645932199999947],[120.35553740000012,-9.649158499999942],[120.35243990000004,-9.649582899999928],[120.34791570000004,-9.65376189999995],[120.34896090000007,-9.654428499999938],[120.3466797000001,-9.657562299999938],[120.33639530000005,-9.663644799999929],[120.32730870000012,-9.66654109999996],[120.3204727000001,-9.67375759999993],[120.31656650000002,-9.675458],[120.31546020000008,-9.674664499999949],[120.31947330000003,-9.672292699999957],[120.32051090000004,-9.669460299999969],[120.3196640000001,-9.670074499999942],[120.31903080000006,-9.667879099999936],[120.31697080000004,-9.66923049999997],[120.31086730000004,-9.665019],[120.30947110000011,-9.660306],[120.30491640000002,-9.656085],[120.30477910000002,-9.649986299999966],[120.29894260000003,-9.641902899999934],[120.29400630000009,-9.642044099999964],[120.29305270000009,-9.640613599999938],[120.29022980000002,-9.640320799999927],[120.27844240000002,-9.640903499999979],[120.27832030000002,-9.639164899999969],[120.27501680000012,-9.637963299999967],[120.27396390000001,-9.640336],[120.26927950000004,-9.640520099999947],[120.2685394,-9.642852799999957],[120.26166530000012,-9.642675399999973],[120.26033780000012,-9.640392299999974],[120.25802610000005,-9.639650299999971],[120.25726320000001,-9.638112099999944],[120.258728,-9.637761099999977],[120.25775910000004,-9.63762],[120.25662230000012,-9.637986199999943],[120.25680540000008,-9.639880199999936],[120.25453950000008,-9.640931099999932],[120.25536350000004,-9.642265299999963],[120.25276180000003,-9.6448231],[120.2522507000001,-9.647524799999928],[120.24967960000004,-9.645340899999951],[120.25090790000002,-9.6402264],[120.24589540000011,-9.641966799999977],[120.24349980000011,-9.640691799999956],[120.24646,-9.6371946],[120.2469635000001,-9.634341199999938],[120.245018,-9.633364699999959],[120.23948670000004,-9.618282299999976],[120.23683060000008,-9.61521339999996],[120.2340742,-9.615700599999968],[120.23365290000004,-9.612712699999975],[120.23611440000002,-9.612295899999936],[120.22811130000002,-9.58560179999995],[120.22870630000011,-9.559590299999968],[120.22692110000003,-9.546433499999978],[120.2258835,-9.5456514],[120.22541810000007,-9.546993199999974],[120.225029,-9.544045399999959],[120.2268524000001,-9.542570099999978],[120.2254028000001,-9.53515049999993],[120.22631840000008,-9.530776],[120.22409820000007,-9.528935399999966],[120.21877290000009,-9.5128755],[120.2138824000001,-9.504806499999972],[120.21095280000009,-9.491121299999975],[120.19614410000008,-9.4838095],[120.19355010000004,-9.479501699999958],[120.19244390000006,-9.473632799999962],[120.18983460000004,-9.470851899999957],[120.18182370000011,-9.467883099999938],[120.17258450000008,-9.469890599999928],[120.16535190000002,-9.469536799999958],[120.14077760000009,-9.48236369999995],[120.12826540000003,-9.485374499999978],[120.12390140000002,-9.485199],[120.11540220000006,-9.4808455],[120.10849,-9.4813547],[120.102539,-9.476732199999958],[120.10191340000006,-9.478091199999938],[120.09713740000007,-9.476442299999974],[120.08450320000009,-9.469729399999949],[120.07794190000004,-9.4641323],[120.0660782000001,-9.446947099999932],[120.06374360000007,-9.444894799999929],[120.06272890000002,-9.446284299999945],[120.06148530000007,-9.445359199999928],[120.0561752000001,-9.435530699999958],[120.04918670000006,-9.429593099999977],[120.03891750000003,-9.408939399999952],[120.035469,-9.4045448],[120.03433990000008,-9.397315],[120.02909090000003,-9.3965874],[120.02355960000011,-9.38869],[120.01275630000009,-9.3864937],[120.00743870000008,-9.382679],[119.999115,-9.372643499999981],[119.99187470000004,-9.355425799999978],[119.98258210000006,-9.347077399999932],[119.9759216000001,-9.33865929999996],[119.96330260000002,-9.328211799999963],[119.95356750000008,-9.315734899999939],[119.9465408000001,-9.302207],[119.94277960000011,-9.2848463],[119.93588260000001,-9.27594659999994],[119.93222810000009,-9.278778099999954],[119.92803960000003,-9.278701799999965],[119.92559810000012,-9.283702799999958],[119.922081,-9.285039899999958],[119.919426,-9.292203899999947],[119.89137270000003,-9.326319699999942],[119.88130190000004,-9.334772099999952],[119.86484530000007,-9.343454399999928],[119.86962130000006,-9.35574719999994],[119.8690262,-9.357525799999962],[119.8754196000001,-9.367241899999954],[119.87637330000007,-9.371293099999946],[119.88676450000003,-9.373391199999958],[119.88810730000012,-9.375624699999946],[119.89379120000001,-9.376538299999936],[119.89824680000004,-9.37996579999998],[119.90037530000006,-9.3786373],[119.90488440000001,-9.379257199999927],[119.909111,-9.383151099999964],[119.90789030000008,-9.386355399999957],[119.91003420000004,-9.387389199999973],[119.91173550000008,-9.391645399999959],[119.9105072000001,-9.393541299999981],[119.91284940000003,-9.3952198],[119.91058350000003,-9.396555],[119.90979,-9.399353],[119.91134640000007,-9.402612699999963],[119.90696720000005,-9.406748799999946],[119.906807,-9.410370799999953],[119.90447230000007,-9.4109163],[119.9050903000001,-9.412527099999977],[119.90238190000002,-9.411917699999947],[119.90228270000011,-9.417635],[119.89917750000006,-9.420670499999972],[119.90139770000008,-9.421721399999967],[119.90151980000007,-9.423920599999974],[119.89852140000005,-9.425748799999951],[119.8964691000001,-9.4319],[119.8985977000001,-9.432832699999949],[119.89733120000005,-9.433925599999952],[119.90615850000006,-9.454209299999945],[119.91660310000009,-9.465663],[119.91517640000006,-9.474482499999965],[119.91733550000004,-9.477336899999955],[119.92183690000002,-9.476060899999936],[119.92079160000003,-9.480547],[119.92583470000011,-9.4819689],[119.92276,-9.484557199999927],[119.9258575,-9.484897599999954],[119.92330930000003,-9.489424699999972],[119.917984,-9.487667099999953],[119.917366,-9.492954299999951],[119.92079930000011,-9.495925],[119.91714480000007,-9.497018799999978],[119.91607670000008,-9.499622299999942],[119.91428380000002,-9.495659799999942],[119.91141510000011,-9.497023599999977],[119.91249080000011,-9.505483599999934],[119.9091644,-9.512912799999981],[119.90592960000004,-9.512501699999973],[119.90434270000003,-9.508605899999964],[119.90341190000004,-9.512823099999935],[119.89630130000012,-9.516605399999946],[119.89278410000009,-9.516219099999944],[119.888977,-9.5126505],[119.88664250000011,-9.513031],[119.88735960000008,-9.515317899999957],[119.88602450000008,-9.51878359999995],[119.88262940000004,-9.523220099999946],[119.87516790000006,-9.5283012],[119.87305450000008,-9.532821699999943],[119.87484740000002,-9.543430299999955],[119.871048,-9.542688399999975],[119.87100980000002,-9.546491599999968],[119.86686710000004,-9.549827599999958],[119.86978910000005,-9.5518665],[119.86987310000006,-9.554429099999936],[119.86721040000009,-9.555523899999969],[119.86511230000008,-9.553135899999972],[119.85818480000012,-9.555782299999976],[119.85936740000011,-9.56182769999998],[119.85600280000006,-9.563927599999943],[119.85541540000008,-9.567432399999973],[119.852562,-9.568010299999969],[119.85325620000003,-9.573934599999973],[119.84741970000005,-9.573398599999962],[119.8412628000001,-9.577693899999929],[119.83952330000011,-9.5874071],[119.84200290000001,-9.589344],[119.84307860000001,-9.594091399999968],[119.84541320000005,-9.595094699999947],[119.84592440000006,-9.598379099999931],[119.84077450000007,-9.6019516],[119.84393310000007,-9.604126899999926],[119.844223,-9.602053699999942],[119.84651950000011,-9.60209939999993],[119.84975430000009,-9.606773399999952],[119.84828190000007,-9.609758399999976],[119.85007480000002,-9.610077899999965],[119.85083770000006,-9.612106299999937],[119.84167480000008,-9.617681499999946],[119.84542850000003,-9.622918099999936],[119.84568020000006,-9.626811],[119.84765620000007,-9.629312499999969],[119.84612270000002,-9.631819699999937],[119.84697720000008,-9.634199199999955],[119.84552760000008,-9.639523499999939],[119.8466949000001,-9.641612099999975],[119.84400940000012,-9.65363689999998],[119.84465030000001,-9.66145229999995],[119.8416214,-9.666620299999977],[119.83819580000011,-9.6692286],[119.83547210000006,-9.66774179999993],[119.8308029000001,-9.669452699999965],[119.8180618,-9.666997],[119.8085632000001,-9.666791],[119.78689580000002,-9.669840799999974],[119.764801,-9.676322899999946],[119.7591705000001,-9.675309199999958],[119.75145720000012,-9.67091849999997],[119.746315,-9.670199399999944],[119.73605350000003,-9.676353499999948],[119.72671510000009,-9.686550099999977],[119.72530360000007,-9.691006699999946],[119.72783660000005,-9.7154913],[119.7325211000001,-9.717882199999963],[119.73841090000008,-9.7271538],[119.74124150000011,-9.726507199999958],[119.74591060000012,-9.730712],[119.74865720000003,-9.731396699999948],[119.74971770000002,-9.734654399999954],[119.74256130000003,-9.743236599999932],[119.73783870000011,-9.75606629999993],[119.7369079,-9.778998399999978],[119.73406980000004,-9.7914047],[119.73600010000007,-9.806797],[119.73165890000007,-9.8226547],[119.73195650000002,-9.840475099999935],[119.72029880000002,-9.84389109999995],[119.713974,-9.838258699999926],[119.69139860000007,-9.8335619],[119.68571470000006,-9.830173499999944],[119.67483520000008,-9.828663799999958]]]]},"properties":{"shapeName":"Sumba Timur","shapeISO":"","shapeID":"22746128B53205663475219","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.9579010000001,-8.905290599999944],[117.95674130000009,-8.903695099999936],[117.95731350000005,-8.906394],[117.9579010000001,-8.905290599999944]]],[[[117.94831090000002,-8.7409029],[117.9483795000001,-8.739611599999932],[117.94696810000005,-8.740093199999933],[117.94831090000002,-8.7409029]]],[[[117.94976810000003,-8.72603319999996],[117.95224,-8.72223],[117.94860840000001,-8.724721899999963],[117.94976810000003,-8.72603319999996]]],[[[118.01119990000007,-8.692068099999972],[118.01071170000012,-8.69358539999996],[118.01372530000003,-8.694330199999968],[118.01375580000001,-8.692515399999934],[118.01119990000007,-8.692068099999972]]],[[[118.00878140000009,-8.686504399999933],[118.00908660000005,-8.6850376],[118.00616460000003,-8.683754],[118.00624850000008,-8.68527309999996],[118.00878140000009,-8.686504399999933]]],[[[117.77835850000008,-8.662889499999949],[117.77874760000009,-8.659864399999947],[117.777359,-8.659037599999976],[117.77604680000002,-8.661444699999947],[117.77835850000008,-8.662889499999949]]],[[[117.86197660000005,-8.657912299999964],[117.86044310000011,-8.655700699999954],[117.8572693000001,-8.657950399999947],[117.86197660000005,-8.657912299999964]]],[[[117.96597290000011,-8.611586599999953],[117.95664980000004,-8.611173599999972],[117.95018,-8.613793399999963],[117.95709230000011,-8.615384099999972],[117.95514680000008,-8.618769699999973],[117.96007540000005,-8.6181726],[117.961441,-8.61970329999997],[117.95690150000007,-8.624559399999953],[117.95740510000007,-8.626777599999969],[117.95371250000005,-8.629776899999968],[117.9598846,-8.630271],[117.965622,-8.627260199999967],[117.96726990000002,-8.627665499999978],[117.97081760000003,-8.631146399999977],[117.96824650000008,-8.634265899999946],[117.96932980000008,-8.636241],[117.97160340000005,-8.637982399999942],[117.97403720000011,-8.636300099999971],[117.97805790000007,-8.636665299999947],[117.97930910000002,-8.640224499999931],[117.97643280000011,-8.642272],[117.97366330000011,-8.648408899999936],[117.96492770000009,-8.647323599999936],[117.96640780000007,-8.650912299999959],[117.96133420000001,-8.656210899999962],[117.96208950000005,-8.660699799999975],[117.95828250000011,-8.6644955],[117.95515440000008,-8.664836899999955],[117.95494080000003,-8.666519199999925],[117.9590607,-8.67058469999995],[117.96419530000003,-8.670906],[117.96496580000007,-8.666081399999939],[117.97002410000005,-8.664116899999954],[117.97076420000008,-8.658681899999976],[117.97403720000011,-8.658436799999947],[117.97785190000002,-8.660583499999973],[117.98148350000008,-8.65723319999995],[117.98368830000004,-8.657085399999971],[117.9862366000001,-8.660138099999926],[117.98800660000006,-8.656503699999973],[117.9873047000001,-8.65024569999997],[117.9898071,-8.6479159],[117.9913788,-8.652653699999973],[117.99427030000004,-8.65476609999996],[117.993393,-8.658248],[117.99501040000007,-8.662617699999942],[117.98790740000004,-8.6680145],[117.987854,-8.672029499999951],[117.97821040000008,-8.685550699999965],[117.97806550000007,-8.691315699999961],[117.9824982,-8.690959],[117.98815920000004,-8.686004599999933],[117.99391170000001,-8.691128699999979],[117.9972,-8.687495199999944],[117.99900820000005,-8.687634499999945],[118.0012359000001,-8.692725199999927],[118.00321960000008,-8.6933165],[118.00408940000011,-8.690420099999926],[118.00180050000006,-8.6843128],[118.00547790000007,-8.679429099999936],[118.01129150000008,-8.678326599999934],[118.0067596,-8.674821899999927],[118.00865170000009,-8.672074299999963],[118.0077973000001,-8.668871899999942],[118.00239560000011,-8.664302799999973],[118.00508120000006,-8.661842399999955],[118.0053253000001,-8.658468199999959],[118.00325780000003,-8.656765],[118.00032810000005,-8.657468799999947],[117.99716190000004,-8.651629399999933],[117.99729920000004,-8.645854],[117.99933620000002,-8.6454935],[117.99727630000007,-8.642811799999947],[117.99773410000012,-8.641392699999926],[118.00038150000012,-8.639385199999936],[117.999794,-8.637084899999934],[118.00297550000005,-8.637442599999929],[118.004982,-8.633416199999942],[118.00334930000008,-8.628631599999949],[117.99871830000006,-8.627271699999937],[117.99585720000005,-8.634460399999966],[117.98971560000007,-8.634854299999972],[117.98854830000005,-8.6333685],[117.9912872000001,-8.631934199999932],[117.99122620000003,-8.630371099999934],[117.987648,-8.628755599999977],[117.9871826000001,-8.626819599999976],[117.9798737000001,-8.6292648],[117.97602080000001,-8.627129599999932],[117.97605130000011,-8.623338699999977],[117.98410030000002,-8.619690899999966],[117.9818649,-8.617107399999952],[117.97863770000004,-8.616056399999934],[117.97801970000012,-8.611362499999927],[117.97266390000004,-8.613787699999932],[117.96597290000011,-8.611586599999953]]],[[[117.86711120000007,-8.608042699999942],[117.86474610000005,-8.6072244],[117.86671450000006,-8.6107731],[117.87291720000007,-8.608341199999927],[117.87215420000007,-8.607307399999968],[117.86711120000007,-8.608042699999942]]],[[[117.83445740000002,-8.574788099999978],[117.83079530000009,-8.574765199999945],[117.82605740000008,-8.5779867],[117.8302460000001,-8.579064399999936],[117.8297424000001,-8.582048399999962],[117.82814790000009,-8.58255],[117.83209230000011,-8.585320499999966],[117.83084870000005,-8.589314499999944],[117.833641,-8.5916281],[117.83461000000011,-8.594739],[117.83726500000012,-8.593190199999981],[117.83656310000003,-8.590494099999944],[117.841629,-8.584959],[117.84212490000004,-8.582355499999949],[117.84088140000006,-8.575723599999947],[117.83445740000002,-8.574788099999978]]],[[[117.822731,-8.5557604],[117.82198330000006,-8.554509199999927],[117.819458,-8.555978799999934],[117.81802370000003,-8.555298799999946],[117.81418610000003,-8.558861699999966],[117.81345370000008,-8.5613937],[117.81874850000008,-8.566878299999928],[117.82253270000001,-8.567411399999969],[117.82415770000011,-8.566314699999964],[117.8252106000001,-8.567799599999944],[117.8314438000001,-8.564067799999975],[117.82884220000005,-8.561751399999935],[117.82704160000003,-8.563555699999938],[117.82465360000003,-8.563394499999958],[117.82321170000012,-8.561574],[117.822731,-8.5557604]]],[[[117.6370697000001,-8.518768299999977],[117.63551330000007,-8.520052],[117.63841250000007,-8.519973799999946],[117.638443,-8.518703499999958],[117.6370697000001,-8.518768299999977]]],[[[117.74989320000009,-8.50444129999994],[117.74793240000008,-8.504653899999937],[117.74878690000003,-8.505786899999976],[117.74989320000009,-8.50444129999994]]],[[[117.63219450000008,-8.5079994],[117.63185880000003,-8.502447099999927],[117.62916570000004,-8.507711399999948],[117.63219450000008,-8.5079994]]],[[[117.63777160000006,-8.50457],[117.640831,-8.5013437],[117.63990780000006,-8.498429299999941],[117.63802340000007,-8.497824699999967],[117.63582610000003,-8.500394799999981],[117.63777160000006,-8.50457]]],[[[116.87348940000004,-8.492684399999973],[116.86788940000008,-8.493215599999928],[116.86441040000011,-8.498155599999961],[116.865921,-8.501854899999955],[116.86995700000011,-8.504823699999974],[116.87593840000011,-8.504301099999964],[116.882103,-8.498115499999926],[116.878479,-8.493420599999979],[116.87348940000004,-8.492684399999973]]],[[[116.99429980000002,-8.475692],[116.99107010000012,-8.476873599999976],[116.9933228000001,-8.477066599999944],[116.9947519000001,-8.478955699999972],[116.99744070000008,-8.477870499999938],[116.99646370000005,-8.475925099999927],[116.99429980000002,-8.475692]]],[[[117.72793580000007,-8.478085499999963],[117.72785190000002,-8.474721899999963],[117.72534180000002,-8.47299],[117.7211761000001,-8.474884],[117.71968840000011,-8.477147099999968],[117.71492010000009,-8.478024499999947],[117.708046,-8.484600099999966],[117.7066956000001,-8.490921],[117.70121770000003,-8.494842499999947],[117.70350650000012,-8.496408499999973],[117.70541380000009,-8.500939399999936],[117.71012120000012,-8.503232],[117.71362310000006,-8.5126047],[117.7127991000001,-8.51640889999993],[117.7100372000001,-8.51791959999997],[117.70961760000012,-8.519992799999955],[117.71273810000002,-8.527818699999955],[117.71379090000005,-8.535162899999932],[117.72319790000006,-8.5438547],[117.7282944000001,-8.545379599999933],[117.7325363000001,-8.5498009],[117.73409270000002,-8.555131899999935],[117.73326870000005,-8.560166299999935],[117.7356033000001,-8.559004799999968],[117.73857120000002,-8.5604496],[117.7467957,-8.569275799999957],[117.75038150000012,-8.568016099999966],[117.75957490000008,-8.569775599999957],[117.76582340000004,-8.565435399999956],[117.76979830000005,-8.565250399999968],[117.76782230000003,-8.563560499999937],[117.76811980000002,-8.559883099999979],[117.76660160000006,-8.556564299999934],[117.77079770000012,-8.552586499999961],[117.77784730000008,-8.5615606],[117.79734040000005,-8.555660199999977],[117.79669190000004,-8.55475709999996],[117.798233,-8.5535812],[117.79939270000011,-8.554285],[117.80026240000007,-8.551653899999963],[117.79500580000001,-8.548333199999945],[117.77763370000002,-8.554733299999953],[117.77178960000003,-8.552390099999968],[117.76948550000009,-8.542655899999943],[117.76636510000003,-8.53879829999994],[117.764267,-8.543324499999926],[117.76428220000003,-8.546933199999955],[117.76142120000009,-8.547836299999972],[117.7583618000001,-8.546856899999966],[117.75576020000005,-8.5436573],[117.75601960000006,-8.540157299999976],[117.75289920000012,-8.540937399999962],[117.748352,-8.539007199999958],[117.74553680000008,-8.534277],[117.74492640000005,-8.529571499999975],[117.73939510000002,-8.528327],[117.73472590000006,-8.518528899999978],[117.7388611,-8.508340799999928],[117.74057770000002,-8.507346199999972],[117.74398040000005,-8.508905399999946],[117.74668120000001,-8.503182399999957],[117.74230190000003,-8.498456],[117.74351500000012,-8.50358289999997],[117.74169160000008,-8.5056477],[117.73810580000008,-8.506372399999975],[117.73658750000004,-8.503665],[117.73173520000012,-8.501180599999941],[117.73096470000007,-8.492430699999943],[117.72925570000007,-8.492205599999977],[117.726738,-8.488938299999973],[117.727562,-8.485593799999947],[117.73059080000007,-8.483258299999932],[117.72778320000009,-8.480285599999945],[117.72793580000007,-8.478085499999963]]],[[[117.67761230000008,-8.466830199999947],[117.67601780000007,-8.466962799999976],[117.6774673000001,-8.468483],[117.67761230000008,-8.466830199999947]]],[[[117.01211790000002,-8.465495199999964],[117.01045330000011,-8.463673899999947],[117.01266060000012,-8.461864699999978],[117.0079204000001,-8.460501699999952],[117.00918690000003,-8.465434899999934],[117.0149765000001,-8.466604899999936],[117.01211790000002,-8.465495199999964]]],[[[116.85987090000003,-8.459384899999975],[116.85997010000006,-8.455980299999965],[116.85894010000004,-8.45817089999997],[116.85987090000003,-8.459384899999975]]],[[[117.65278630000012,-8.447889299999929],[117.65140530000008,-8.447707199999968],[117.65145870000003,-8.454680399999972],[117.64891050000006,-8.463778499999933],[117.65067290000002,-8.466407799999956],[117.65048980000006,-8.470541],[117.64662170000008,-8.475203499999964],[117.6412888000001,-8.476105699999948],[117.641243,-8.479790699999967],[117.64370730000007,-8.4806128],[117.64868160000003,-8.479174599999965],[117.65065770000001,-8.483023599999967],[117.64954380000006,-8.484673499999928],[117.6504364000001,-8.48656939999995],[117.64700320000009,-8.489728899999932],[117.64376070000003,-8.484644899999978],[117.63899990000004,-8.486548399999947],[117.63809970000011,-8.49073409999994],[117.64049530000011,-8.49244779999998],[117.64361570000005,-8.491887099999929],[117.64369970000007,-8.4959507],[117.642189,-8.4991913],[117.64273830000002,-8.502822899999956],[117.63763430000006,-8.506311399999959],[117.63648220000005,-8.509347899999966],[117.63965610000002,-8.515040399999975],[117.6402207000001,-8.521280299999944],[117.6439514000001,-8.5219174],[117.644577,-8.5241413],[117.6451492000001,-8.522440899999935],[117.64777370000002,-8.522406599999954],[117.65061950000006,-8.533118199999933],[117.65409090000003,-8.530294399999946],[117.65191650000008,-8.523769399999935],[117.65384670000003,-8.5206604],[117.66098020000004,-8.516680699999938],[117.66255190000004,-8.517356899999982],[117.66349030000003,-8.52203469999995],[117.66714480000007,-8.513788199999965],[117.66909790000011,-8.513847399999975],[117.66950230000009,-8.51859849999994],[117.67230990000007,-8.52337259999996],[117.67527770000004,-8.524119399999961],[117.67620090000003,-8.522091899999964],[117.67974090000007,-8.522076599999934],[117.67813870000009,-8.513667099999964],[117.67086790000008,-8.512959499999965],[117.67427060000011,-8.506554599999959],[117.6765137000001,-8.505974799999933],[117.67778780000003,-8.503297799999928],[117.67528530000004,-8.499626199999966],[117.67679590000012,-8.491561899999965],[117.675766,-8.4856338],[117.67019650000009,-8.480600299999935],[117.66823580000005,-8.475754699999925],[117.6697464,-8.470275899999933],[117.67407230000003,-8.466165499999931],[117.667305,-8.45433429999997],[117.66069030000006,-8.448910699999942],[117.65278630000012,-8.447889299999929]]],[[[117.03692630000012,-8.443887699999948],[117.0346985000001,-8.444606799999974],[117.0360260000001,-8.445258099999933],[117.03630070000008,-8.448061],[117.03864290000001,-8.446010599999966],[117.03692630000012,-8.443887699999948]]],[[[116.95118710000008,-8.419961],[116.9408188000001,-8.421375299999966],[116.92880250000007,-8.42555139999996],[116.92395780000004,-8.433956099999932],[116.91908260000002,-8.437116599999968],[116.9159317000001,-8.437486699999965],[116.90726470000004,-8.434944099999939],[116.9028244000001,-8.43652439999994],[116.8950043000001,-8.436772299999973],[116.88098910000008,-8.432030699999927],[116.8724975,-8.431750299999976],[116.86997990000009,-8.432901399999935],[116.86704250000003,-8.43814089999995],[116.86079410000002,-8.441084899999964],[116.84871670000007,-8.439960499999927],[116.84420010000008,-8.441616099999976],[116.83937070000002,-8.446125],[116.8424377,-8.449857699999939],[116.84808350000003,-8.449114799999961],[116.8510361000001,-8.450983099999974],[116.855484,-8.449589699999933],[116.86083990000009,-8.452480299999934],[116.876915,-8.44467069999996],[116.88856510000005,-8.444356],[116.89123530000006,-8.447534599999926],[116.89689640000006,-8.4492235],[116.90454100000011,-8.446573299999955],[116.91242980000004,-8.446270899999945],[116.92636870000001,-8.441359499999976],[116.93279270000005,-8.436910599999976],[116.9336929000001,-8.434883099999979],[116.93498230000012,-8.435687099999939],[116.93930060000002,-8.433331499999952],[116.94264220000002,-8.43303009999994],[116.94408420000002,-8.437704099999962],[116.94747920000009,-8.438621499999954],[116.95014950000007,-8.43465329999998],[116.95442960000003,-8.435289399999931],[116.95534510000005,-8.4328689],[116.9584579000001,-8.431941],[116.95966340000007,-8.4300871],[116.95939640000006,-8.4235163],[116.95607760000007,-8.420834599999978],[116.95118710000008,-8.419961]]],[[[117.66118620000009,-8.434414899999979],[117.66412350000007,-8.422503499999948],[117.662178,-8.41898059999994],[117.65828710000005,-8.418642],[117.65218350000009,-8.423255],[117.641922,-8.438880899999958],[117.64493560000005,-8.439963299999931],[117.6566391,-8.439147],[117.65975190000006,-8.434585599999934],[117.66118620000009,-8.434414899999979]]],[[[117.0745468,-8.390513399999975],[117.0745468,-8.389311799999973],[117.07279970000002,-8.390143399999943],[117.0745468,-8.390513399999975]]],[[[117.04731750000008,-8.378565799999933],[117.0407944000001,-8.378528599999981],[117.03129580000007,-8.385698299999945],[117.02597810000009,-8.392869899999937],[117.02494050000007,-8.402283699999941],[117.02272030000006,-8.403911599999958],[117.022316,-8.406761199999949],[116.99965670000006,-8.4130516],[116.99920650000001,-8.411305399999947],[116.99342350000006,-8.408042899999941],[116.99219510000012,-8.402996099999939],[116.98984530000007,-8.404590599999949],[116.98246,-8.413957599999947],[116.98181920000002,-8.4204645],[116.97686770000007,-8.427776299999948],[116.97678380000002,-8.431071299999928],[116.97991180000008,-8.432962399999951],[116.99632270000006,-8.43000319999993],[117.00447850000012,-8.431704499999967],[117.00402830000007,-8.430206299999952],[116.9972077000001,-8.42926689999996],[116.99760440000011,-8.42682069999995],[116.9951019,-8.426107399999978],[116.9954987000001,-8.420578],[116.9903336000001,-8.423244499999953],[116.99131770000008,-8.4189825],[116.990509,-8.417675],[116.9916306,-8.416214899999943],[116.99416350000001,-8.416080499999964],[116.99111940000012,-8.418195699999956],[116.9920959000001,-8.419542299999932],[116.9939194000001,-8.418722199999934],[116.99608610000007,-8.420722],[116.997963,-8.419506099999978],[117.00371550000011,-8.421129199999939],[117.010109,-8.416756599999928],[117.01341250000007,-8.4169865],[117.01435850000007,-8.4158211],[117.02407080000012,-8.418361699999934],[117.02281950000008,-8.41300579999995],[117.024147,-8.409229299999936],[117.03240970000002,-8.410109499999976],[117.03371430000004,-8.412497499999972],[117.03436280000005,-8.409166299999981],[117.03707120000001,-8.406112699999937],[117.0399933000001,-8.403372799999943],[117.04400630000009,-8.402130099999965],[117.04284670000004,-8.398365],[117.04553990000011,-8.39502239999996],[117.0423813000001,-8.390651699999978],[117.0434189,-8.388131099999953],[117.04731750000008,-8.38561249999998],[117.04920960000004,-8.381215099999963],[117.04731750000008,-8.378565799999933]]],[[[117.05700680000007,-8.379030199999931],[117.05624390000003,-8.376892099999964],[117.05333710000002,-8.375540699999931],[117.05327610000006,-8.381370499999946],[117.05635830000006,-8.381681399999934],[117.05954740000004,-8.377538699999945],[117.05700680000007,-8.379030199999931]]],[[[117.08087160000002,-8.371393199999943],[117.07297520000009,-8.3713856],[117.0708313,-8.373061199999938],[117.07130430000007,-8.374556499999926],[117.07781980000004,-8.378195799999958],[117.08244320000006,-8.3734312],[117.08087160000002,-8.371393199999943]]],[[[118.175827,-8.654845299999977],[118.17578130000004,-8.659451499999932],[118.172493,-8.660518599999932],[118.16968540000005,-8.659207299999935],[118.16896820000011,-8.655138],[118.16622920000009,-8.652204499999925],[118.16081240000005,-8.654426599999965],[118.1554718000001,-8.6505928],[118.15621190000002,-8.655504199999939],[118.15444950000006,-8.656422599999928],[118.1513443,-8.654764199999931],[118.14906310000003,-8.650392499999953],[118.14797210000006,-8.653690299999937],[118.1451492000001,-8.65580179999995],[118.14122770000006,-8.64787389999998],[118.1387711000001,-8.650471699999969],[118.1333237,-8.651731499999926],[118.13174440000012,-8.649823199999958],[118.12799840000002,-8.650110199999972],[118.12471770000002,-8.648358299999927],[118.1266022000001,-8.6513786],[118.12306980000005,-8.651742899999931],[118.1257935000001,-8.656392099999948],[118.1226196,-8.658264199999962],[118.12041470000008,-8.657755799999961],[118.12055210000005,-8.654994899999963],[118.11624140000004,-8.651184099999966],[118.11557010000001,-8.653269799999975],[118.11224360000006,-8.6525869],[118.1110916,-8.655805599999951],[118.10806280000008,-8.656895599999928],[118.09744260000002,-8.653372799999943],[118.09781650000002,-8.654597299999978],[118.09603120000008,-8.655588099999932],[118.08843230000002,-8.652225499999929],[118.08377080000002,-8.655020699999966],[118.08354950000012,-8.658064799999977],[118.079216,-8.659653699999978],[118.07581330000005,-8.659622199999944],[118.0748291000001,-8.656136499999945],[118.07148740000002,-8.658307099999945],[118.06974790000004,-8.65720559999994],[118.06852720000006,-8.657968499999981],[118.07046510000009,-8.660604499999977],[118.06890870000007,-8.662827499999935],[118.06010440000011,-8.661508599999934],[118.05430600000011,-8.664527],[118.05190280000011,-8.663000099999977],[118.05124660000001,-8.666201599999965],[118.04705050000007,-8.669796],[118.035881,-8.671572699999956],[118.0383835,-8.673894899999937],[118.0340576000001,-8.677605599999936],[118.0357742000001,-8.678800599999931],[118.03506470000002,-8.68273069999998],[118.02603910000005,-8.686682699999949],[118.02547460000005,-8.69001579999997],[118.0200119000001,-8.695065499999941],[118.01608270000008,-8.702119799999934],[118.01131440000006,-8.705951699999957],[118.00918580000007,-8.711992299999963],[118.0070267000001,-8.713585799999976],[118.0046463000001,-8.711430499999949],[118.00205230000006,-8.713190099999963],[118.00022890000002,-8.711324699999977],[117.99939730000006,-8.714171399999941],[117.99480440000002,-8.710059199999932],[117.99117280000007,-8.710708599999975],[117.9862518000001,-8.717645599999969],[117.9915466000001,-8.72186469999997],[117.98387150000008,-8.727411299999972],[117.98076630000003,-8.733420399999943],[117.9741821,-8.739727],[117.97110750000002,-8.739282599999967],[117.96302030000004,-8.742855099999929],[117.95908350000002,-8.74298],[117.9560394,-8.739958799999954],[117.95108790000006,-8.74399569999997],[117.94596860000001,-8.743016199999943],[117.945137,-8.740067499999952],[117.94821170000012,-8.738965],[117.94738010000003,-8.737038599999948],[117.94900510000002,-8.730733899999962],[117.93891140000005,-8.726817099999948],[117.93786620000003,-8.7212915],[117.93338010000002,-8.724603599999966],[117.92797850000011,-8.7254972],[117.924118,-8.724374799999964],[117.923233,-8.722296699999958],[117.9242554000001,-8.719613099999947],[117.92169950000005,-8.718928399999982],[117.91894530000002,-8.719700799999941],[117.91802220000011,-8.7266398],[117.91454310000006,-8.729133599999955],[117.91401670000005,-8.732041399999957],[117.90777590000005,-8.7357426],[117.90770720000012,-8.738870599999927],[117.90498350000007,-8.740999199999976],[117.90348050000011,-8.736944199999925],[117.90187070000002,-8.736633299999937],[117.9016418000001,-8.72812369999997],[117.89947510000002,-8.729764],[117.89922330000002,-8.732515299999932],[117.8977890000001,-8.732822399999975],[117.89405060000001,-8.730506899999966],[117.8885269000001,-8.7234983],[117.88954930000011,-8.720657399999936],[117.89179990000002,-8.72083189999995],[117.88935090000007,-8.72034259999998],[117.88990020000006,-8.7190676],[117.89337160000002,-8.718572599999959],[117.90179440000009,-8.713030799999956],[117.90342710000004,-8.709269499999948],[117.90184020000004,-8.705099099999927],[117.8934326000001,-8.7005301],[117.88800810000009,-8.699938799999927],[117.88000490000002,-8.701987299999928],[117.87099460000002,-8.696399699999972],[117.86056520000011,-8.702115099999958],[117.85721590000003,-8.705210699999952],[117.85363010000003,-8.712236399999938],[117.84593960000007,-8.718768099999977],[117.84030910000001,-8.718412399999977],[117.83630370000003,-8.710880299999928],[117.83177950000004,-8.709223699999939],[117.8266602000001,-8.711842499999932],[117.82380680000006,-8.7165823],[117.81604,-8.722590399999945],[117.80997470000011,-8.725575399999968],[117.80729670000005,-8.725473399999942],[117.80683140000008,-8.726950699999975],[117.80503840000006,-8.724421499999949],[117.8049774000001,-8.72728159999997],[117.80388640000001,-8.726773299999934],[117.8024597000001,-8.722065899999961],[117.79922480000005,-8.718483899999967],[117.79644010000004,-8.7183819],[117.79279330000008,-8.72230819999993],[117.7906647000001,-8.7227869],[117.79003910000006,-8.720994899999937],[117.7851257000001,-8.719846699999948],[117.78137210000011,-8.715825099999961],[117.77405550000003,-8.712932599999931],[117.77027890000011,-8.705089599999951],[117.77175140000008,-8.70128539999996],[117.76974490000009,-8.6896858],[117.77313230000004,-8.688812299999938],[117.772728,-8.684257499999944],[117.7650986000001,-8.67155839999998],[117.7648544000001,-8.668464699999959],[117.76862330000006,-8.665900199999953],[117.76976780000007,-8.6563273],[117.76721950000001,-8.654977799999926],[117.76160430000004,-8.66077139999993],[117.75739290000001,-8.659409499999981],[117.7560959000001,-8.657546099999934],[117.7567749000001,-8.65491869999994],[117.75246430000004,-8.652484899999934],[117.74914550000005,-8.644637099999954],[117.74977880000006,-8.63900949999993],[117.75432590000003,-8.635828],[117.76844790000007,-8.637575199999958],[117.77308660000006,-8.635092699999973],[117.777359,-8.634866699999975],[117.7812805000001,-8.631961799999942],[117.77381900000012,-8.630203199999926],[117.76394650000009,-8.632935499999974],[117.75984190000008,-8.6293621],[117.75135040000009,-8.631030099999975],[117.75107570000011,-8.625165],[117.754715,-8.622190499999931],[117.75194550000003,-8.61969659999994],[117.75228120000008,-8.616224299999942],[117.75567630000012,-8.61201],[117.76003270000001,-8.613356599999975],[117.76046750000012,-8.611451099999954],[117.7583694000001,-8.608831399999929],[117.75947570000005,-8.607380899999953],[117.76247410000008,-8.607367499999953],[117.76257320000002,-8.605264699999964],[117.76000210000007,-8.605484],[117.75910950000002,-8.603517499999953],[117.76136020000001,-8.598843599999952],[117.75774380000007,-8.597240399999976],[117.75629420000007,-8.591389599999957],[117.75376890000007,-8.589633899999967],[117.74317170000006,-8.588976899999977],[117.73735810000005,-8.594271699999979],[117.72703550000006,-8.588195799999937],[117.73140720000004,-8.578173599999957],[117.7375336,-8.571188899999981],[117.73554230000002,-8.567990299999963],[117.73721310000008,-8.563663499999961],[117.73123170000008,-8.562212899999963],[117.72929380000005,-8.559076299999958],[117.72547150000003,-8.557475099999976],[117.72451020000005,-8.562878599999976],[117.71920010000008,-8.567700399999978],[117.71523290000005,-8.568265],[117.710907,-8.566123],[117.705307,-8.567097699999977],[117.70027920000007,-8.5638876],[117.6962433000001,-8.56737419999996],[117.697876,-8.569527599999958],[117.69578550000006,-8.5745516],[117.68892670000002,-8.577633799999944],[117.68598940000004,-8.575370799999973],[117.68665310000006,-8.572284699999955],[117.68547060000003,-8.57106209999995],[117.68138890000012,-8.570407899999964],[117.67739110000002,-8.567776699999968],[117.6637955000001,-8.566576899999973],[117.6617126000001,-8.565119799999934],[117.660492,-8.561384199999964],[117.65850830000011,-8.564215699999977],[117.657547,-8.562490499999967],[117.65314480000006,-8.563652],[117.64907070000004,-8.558864599999936],[117.64401250000003,-8.556049299999927],[117.63967130000003,-8.560442],[117.63643650000006,-8.55908489999996],[117.63356020000003,-8.562983499999973],[117.63166810000007,-8.560867299999927],[117.63403320000009,-8.560511599999927],[117.63595580000003,-8.556697799999938],[117.63227080000001,-8.553004299999941],[117.62915040000007,-8.55234809999996],[117.63459780000005,-8.546502099999941],[117.63435360000005,-8.544526099999928],[117.6315231000001,-8.542892499999937],[117.63143160000004,-8.535876299999927],[117.62876890000007,-8.5387373],[117.6227722000001,-8.538112599999977],[117.626564,-8.533981299999937],[117.630188,-8.526025799999957],[117.63318640000011,-8.524919499999953],[117.63176730000009,-8.52259639999994],[117.63379670000006,-8.523671199999967],[117.63494870000011,-8.521329899999955],[117.63184360000002,-8.520077699999945],[117.63376620000008,-8.515763299999946],[117.63063050000005,-8.518083599999954],[117.6283188000001,-8.516687399999967],[117.62854,-8.512423499999954],[117.6264877000001,-8.508512499999938],[117.62967680000008,-8.50255009999995],[117.62628940000002,-8.501596399999926],[117.62531280000007,-8.498860399999955],[117.63270570000009,-8.483717],[117.63171390000002,-8.4791889],[117.63464360000012,-8.47445769999996],[117.63503270000001,-8.466037799999981],[117.63192750000007,-8.46281719999996],[117.62811280000005,-8.4509211],[117.625885,-8.448180199999967],[117.62391660000003,-8.449542],[117.62325290000001,-8.448662799999966],[117.624855,-8.4436312],[117.61658480000006,-8.439180399999941],[117.6070175000001,-8.438111299999946],[117.60140230000002,-8.435143499999981],[117.60059360000002,-8.4329948],[117.6020813,-8.428367599999945],[117.59989930000006,-8.42684079999998],[117.59797670000012,-8.427628499999969],[117.5982666000001,-8.431674],[117.59583280000004,-8.433915099999979],[117.58441930000004,-8.433830299999954],[117.5844727000001,-8.432018299999982],[117.58747860000005,-8.429437599999972],[117.58805080000002,-8.430739399999936],[117.58621210000001,-8.432463599999949],[117.5911407000001,-8.431808499999931],[117.59247590000007,-8.430385599999966],[117.5905838000001,-8.426240899999925],[117.5890121000001,-8.4257402],[117.5838394000001,-8.426092199999971],[117.5777359000001,-8.432413099999962],[117.57438660000003,-8.441822099999968],[117.57557680000002,-8.4452305],[117.58028410000009,-8.4475288],[117.57598110000004,-8.447770099999957],[117.5747070000001,-8.451127],[117.5757446,-8.454775799999936],[117.5790482000001,-8.45646759999994],[117.57684330000006,-8.457033199999955],[117.5781631000001,-8.460890799999959],[117.58386230000008,-8.46425819999996],[117.5847549,-8.466122599999949],[117.57922360000009,-8.464097],[117.57712560000004,-8.467701],[117.57969670000011,-8.47013279999993],[117.5785294000001,-8.47134019999993],[117.57914730000005,-8.473277099999962],[117.58279420000008,-8.474716199999932],[117.5808029000001,-8.4760656],[117.5808105000001,-8.482106199999976],[117.58535,-8.483585399999981],[117.5859527,-8.486345299999925],[117.58786010000006,-8.485505099999955],[117.58923340000001,-8.48740859999998],[117.58789060000004,-8.492994299999964],[117.591301,-8.499153099999944],[117.5905457,-8.501585],[117.59185030000003,-8.503964399999973],[117.58747860000005,-8.505559],[117.58686060000002,-8.503474199999971],[117.58138280000003,-8.502061799999979],[117.58048250000002,-8.499615699999936],[117.5758896000001,-8.502005599999961],[117.57037350000007,-8.500836399999969],[117.5712433000001,-8.495415699999967],[117.56755070000008,-8.490835199999935],[117.56551360000003,-8.48537159999995],[117.567482,-8.479651399999966],[117.56440730000008,-8.478151299999979],[117.56538390000003,-8.475762399999951],[117.56949620000012,-8.473079699999971],[117.56455230000006,-8.470715499999926],[117.56565100000012,-8.46689129999993],[117.56326290000004,-8.4657345],[117.56031040000005,-8.467398599999967],[117.55978390000007,-8.464002599999958],[117.56283570000005,-8.46143429999995],[117.56813810000006,-8.459878899999978],[117.56684110000003,-8.448869699999932],[117.56481170000006,-8.447982799999977],[117.56153110000002,-8.453602799999942],[117.5592041000001,-8.4529152],[117.56136320000007,-8.45020859999994],[117.561409,-8.447327599999937],[117.56568140000002,-8.442610799999954],[117.5656891000001,-8.441432899999938],[117.56281280000007,-8.44029039999998],[117.56502530000012,-8.437947299999962],[117.5671463000001,-8.438671099999965],[117.57042700000011,-8.428934099999935],[117.56948090000003,-8.4270382],[117.57041930000003,-8.424246799999935],[117.56716160000008,-8.4172707],[117.56636810000009,-8.4094],[117.56732180000006,-8.408698099999981],[117.56217960000004,-8.4049988],[117.55310820000011,-8.406209],[117.55196380000007,-8.40297789999994],[117.5484772000001,-8.40250009999994],[117.53376010000011,-8.41052819999993],[117.53100580000012,-8.409341799999936],[117.5012283000001,-8.413662],[117.48261260000004,-8.411713599999928],[117.47248840000009,-8.414979899999935],[117.46256260000007,-8.410776099999964],[117.45001980000006,-8.411824199999955],[117.44675450000011,-8.409167299999979],[117.44049840000002,-8.39857],[117.43054960000006,-8.3953323],[117.42781830000001,-8.395771],[117.42713170000002,-8.397002199999974],[117.430542,-8.401964199999952],[117.43579870000008,-8.405061699999976],[117.4356232,-8.410842899999977],[117.42512510000006,-8.421082499999955],[117.41680910000002,-8.439126],[117.4098282000001,-8.446312899999953],[117.40529630000003,-8.454047199999934],[117.40460210000003,-8.45578],[117.406517,-8.462152499999945],[117.40420430000006,-8.465031899999929],[117.40798450000011,-8.467740499999934],[117.40357430000006,-8.465800299999955],[117.39518740000005,-8.471480399999962],[117.38809970000011,-8.472671499999933],[117.382103,-8.469448099999966],[117.383316,-8.466449699999941],[117.37723540000002,-8.463541],[117.37294770000005,-8.466317199999935],[117.37054440000009,-8.465489399999967],[117.36814880000009,-8.467896499999938],[117.36735540000006,-8.465978599999971],[117.37066310000012,-8.463335299999926],[117.37284090000003,-8.463530599999956],[117.37256620000005,-8.460786799999937],[117.36790470000005,-8.457779899999935],[117.36360170000012,-8.456841499999939],[117.36180880000006,-8.457741699999929],[117.3575211000001,-8.454669],[117.35438540000007,-8.455812499999979],[117.34449770000003,-8.451674399999945],[117.33801270000004,-8.446097399999928],[117.3323822000001,-8.443933499999957],[117.33087920000003,-8.441404299999931],[117.3155670000001,-8.4396095],[117.30911250000008,-8.434874499999978],[117.30599210000003,-8.441845899999976],[117.30341340000007,-8.440448699999934],[117.30307010000001,-8.438558599999965],[117.30608370000004,-8.434413899999981],[117.30614470000012,-8.431915299999957],[117.30001830000003,-8.430467599999929],[117.29573060000007,-8.432782199999963],[117.2909012,-8.427031499999941],[117.28276820000008,-8.425924299999963],[117.27976990000002,-8.42309],[117.262085,-8.416295099999957],[117.2513351,-8.416934],[117.24823,-8.412509],[117.24464420000004,-8.410974499999952],[117.23664860000008,-8.399480799999935],[117.227211,-8.398064599999941],[117.2157135000001,-8.405667299999948],[117.21392820000005,-8.408156399999939],[117.20194250000009,-8.406346299999939],[117.20034030000011,-8.4034729],[117.1901855000001,-8.395440099999973],[117.18329620000009,-8.3848143],[117.17624660000001,-8.381738699999971],[117.17259220000005,-8.382326099999943],[117.17208860000005,-8.38517],[117.17054750000011,-8.384866699999975],[117.1710892000001,-8.380767799999944],[117.17380520000006,-8.380535099999975],[117.17385860000002,-8.381591799999967],[117.17548370000009,-8.379932399999973],[117.17559810000012,-8.376413399999933],[117.16547390000005,-8.368934599999932],[117.15505980000012,-8.364287399999967],[117.15225980000002,-8.3660536],[117.15144350000003,-8.373388299999931],[117.14800260000004,-8.376219699999979],[117.142807,-8.377900099999977],[117.1382751000001,-8.377324099999953],[117.13108060000002,-8.371573399999932],[117.12322240000003,-8.3690128],[117.11303710000004,-8.371459],[117.11107640000012,-8.370619799999929],[117.1094055000001,-8.372342099999969],[117.10549930000002,-8.372779899999955],[117.10578920000012,-8.375064799999961],[117.10691830000007,-8.376493399999958],[117.11397550000004,-8.37584019999997],[117.11550140000008,-8.37695789999998],[117.11344910000003,-8.378107099999966],[117.10980990000007,-8.37667659999994],[117.10523220000005,-8.3800764],[117.10240930000009,-8.390287399999977],[117.0966644,-8.394840299999942],[117.08850860000007,-8.397462899999937],[117.0876465,-8.3989115],[117.0880661000001,-8.408164],[117.09091950000004,-8.4096031],[117.08879850000005,-8.406691499999965],[117.08840180000004,-8.400698699999964],[117.08860780000009,-8.3987551],[117.09049230000005,-8.39776519999998],[117.09023290000005,-8.402236],[117.09133150000002,-8.404291199999932],[117.0925903000001,-8.404062299999964],[117.09254460000011,-8.4082031],[117.0936584000001,-8.409199699999931],[117.09405520000007,-8.407704399999943],[117.098259,-8.406551399999955],[117.09637450000002,-8.40791409999997],[117.09626010000011,-8.410203899999942],[117.09953310000003,-8.414447799999948],[117.09797670000012,-8.4140501],[117.09677890000012,-8.4163027],[117.09456630000011,-8.4169731],[117.09107210000002,-8.41401389999993],[117.08146670000008,-8.416246399999977],[117.0814362000001,-8.418915699999957],[117.08993530000009,-8.420246099999929],[117.08821100000011,-8.423299799999938],[117.08456420000005,-8.42153929999995],[117.08102420000012,-8.422563499999967],[117.08120730000007,-8.420320499999946],[117.07912450000003,-8.418924299999958],[117.07542420000004,-8.420928],[117.07043460000011,-8.420340499999952],[117.06668090000005,-8.424325],[117.0667343,-8.43516059999996],[117.05950930000006,-8.436029399999939],[117.0517731000001,-8.443561599999953],[117.04971310000008,-8.44263079999996],[117.04049680000003,-8.445090299999947],[117.032959,-8.454174],[117.02642820000005,-8.455829599999959],[117.02432250000004,-8.463359799999978],[117.01646420000009,-8.463806199999965],[117.0152283000001,-8.466602299999977],[117.01876070000003,-8.479632399999957],[117.01393130000008,-8.481965099999968],[117.01184080000007,-8.481110599999965],[117.00943760000007,-8.486022],[117.01174160000005,-8.492767299999969],[117.010292,-8.4977961],[117.00745390000009,-8.499489799999935],[117.00978090000001,-8.501156799999933],[117.0093994,-8.502181099999973],[117.00685880000003,-8.5021095],[117.0044861,-8.505528399999946],[116.99832920000006,-8.507048599999962],[117.0005188,-8.503072699999962],[116.99653630000012,-8.500288],[116.9964447000001,-8.494936],[116.99119570000005,-8.492883699999936],[116.9915390000001,-8.490333599999929],[116.99450680000007,-8.4880591],[116.99352270000009,-8.485724399999981],[116.989975,-8.485746399999925],[116.98725130000003,-8.47909169999997],[116.98480230000007,-8.482447599999944],[116.984848,-8.484797499999956],[116.9833145,-8.485486],[116.98426820000009,-8.490231499999936],[116.97979730000009,-8.493569399999956],[116.97187810000003,-8.495123899999953],[116.96999960000005,-8.492451],[116.9656893,-8.4924205],[116.96488330000011,-8.489390699999944],[116.96360020000009,-8.489124299999958],[116.96184540000002,-8.494607],[116.9563217000001,-8.498068799999942],[116.9572677000001,-8.498762099999965],[116.95560460000002,-8.50074],[116.95561220000002,-8.508366599999931],[116.94580080000003,-8.516583399999945],[116.92969510000012,-8.512710599999934],[116.92556,-8.521308],[116.916893,-8.526328099999944],[116.90486910000004,-8.527514499999938],[116.88354620000007,-8.525922699999967],[116.88833620000003,-8.526740099999927],[116.8780670000001,-8.535694099999944],[116.87603760000002,-8.53992459999995],[116.88924410000004,-8.5541086],[116.9197693000001,-8.57445329999996],[116.94152830000007,-8.5946941],[116.95068360000005,-8.60138889999996],[116.97093960000007,-8.612546],[117.00049590000003,-8.625],[117.0250397000001,-8.651713399999949],[117.03900910000004,-8.670604699999956],[117.04204560000005,-8.672529199999929],[117.04895780000004,-8.670101199999976],[117.05586240000002,-8.677406299999973],[117.0593262000001,-8.6775198],[117.0625381000001,-8.674813299999926],[117.06936640000004,-8.677976599999965],[117.071167,-8.680526699999973],[117.07057190000012,-8.684723899999938],[117.07166290000009,-8.687008799999944],[117.0748215000001,-8.690726299999938],[117.08309170000007,-8.696076399999981],[117.0879212000001,-8.705153499999938],[117.0905457,-8.7181682],[117.09063720000006,-8.730510699999968],[117.08859250000012,-8.748440699999946],[117.08320620000006,-8.758825299999955],[117.08414460000006,-8.763708099999974],[117.0816956000001,-8.7661371],[117.07953640000005,-8.76544],[117.077713,-8.767115599999954],[117.07406620000006,-8.767066],[117.0734711,-8.771208799999954],[117.07021330000009,-8.771750399999974],[117.07020570000009,-8.774809799999957],[117.06709290000003,-8.7764759],[117.06587220000006,-8.780279199999939],[117.05846410000004,-8.782451599999945],[117.04855350000003,-8.783011399999964],[117.04294590000006,-8.786781299999973],[117.04056550000007,-8.791766199999927],[117.04508970000006,-8.8026628],[117.04795840000008,-8.80404569999996],[117.05564120000008,-8.803302799999926],[117.06095120000009,-8.804903],[117.06548310000005,-8.8098078],[117.07392880000009,-8.8147678],[117.07660670000007,-8.82372],[117.08451080000009,-8.825484299999971],[117.08538050000004,-8.834565099999963],[117.08185580000008,-8.835713399999975],[117.08091740000009,-8.839057],[117.07900240000004,-8.839815099999953],[117.07902530000001,-8.844222099999968],[117.07379910000009,-8.848017699999957],[117.0722962000001,-8.857139599999925],[117.06995390000009,-8.860014],[117.06267550000007,-8.860907599999962],[117.06144720000009,-8.863842],[117.062294,-8.872628199999951],[117.06420140000012,-8.8760119],[117.07118990000004,-8.883009899999934],[117.07625580000001,-8.885847099999978],[117.0829010000001,-8.898070299999972],[117.08344270000009,-8.914951299999927],[117.08848570000009,-8.926935199999946],[117.08478550000007,-8.940469699999937],[117.0737,-8.942351299999928],[117.06735990000004,-8.946399699999972],[117.06763460000002,-8.957861899999955],[117.07020570000009,-8.971093199999927],[117.06867220000004,-8.984821299999965],[117.06983950000006,-8.988334599999973],[117.06779480000012,-8.995448099999976],[117.0681992000001,-8.998953799999981],[117.06522370000005,-9.000153499999954],[117.06649780000009,-9.002973599999962],[117.06390380000005,-9.005714399999931],[117.06151580000005,-9.013094899999942],[117.06298830000003,-9.015057599999977],[117.0631714000001,-9.019942299999968],[117.0654144,-9.021013299999936],[117.06404880000002,-9.022211099999936],[117.06729890000008,-9.023374599999954],[117.06490330000008,-9.0280628],[117.067421,-9.028722699999946],[117.06737520000001,-9.0306845],[117.0642395000001,-9.031935699999963],[117.06752780000011,-9.034765299999947],[117.06599430000006,-9.036415099999942],[117.066658,-9.042058899999972],[117.06356050000011,-9.041851099999974],[117.0631409,-9.044333499999937],[117.0590668000001,-9.0430841],[117.05828090000011,-9.045064],[117.05963140000006,-9.046765299999947],[117.05723570000009,-9.048120499999982],[117.05658720000008,-9.0528088],[117.05512240000007,-9.051610899999957],[117.0536499000001,-9.053138699999977],[117.05368810000004,-9.0545626],[117.05673220000006,-9.053850199999943],[117.059372,-9.0560551],[117.05860140000004,-9.056976299999974],[117.0568009000001,-9.056020699999976],[117.05662540000003,-9.059097299999962],[117.05183410000006,-9.061526299999969],[117.05197140000007,-9.063749299999927],[117.05505370000003,-9.063071299999933],[117.05564880000009,-9.065449699999931],[117.05260470000007,-9.067482],[117.05333710000002,-9.068923],[117.05122380000012,-9.069497099999978],[117.0503159000001,-9.0680904],[117.048111,-9.07078169999994],[117.04760740000006,-9.072623299999975],[117.04923250000002,-9.074029],[117.04637910000008,-9.07618229999997],[117.04770660000008,-9.077571899999953],[117.04395290000002,-9.082329799999968],[117.0443878000001,-9.087087599999961],[117.04173280000009,-9.091394399999956],[117.04337310000005,-9.097992899999952],[117.04010770000002,-9.098756799999933],[117.0404205000001,-9.100878699999953],[117.04492950000008,-9.0994711],[117.05166620000011,-9.103116],[117.05747990000009,-9.104223199999979],[117.06583410000007,-9.097862199999952],[117.07261660000006,-9.098286599999938],[117.0817032000001,-9.093915],[117.0883179000001,-9.094110499999942],[117.099884,-9.089561499999945],[117.1148071,-9.090434099999982],[117.1273728000001,-9.085027699999955],[117.12978360000011,-9.086106299999926],[117.135109,-9.083998699999938],[117.1358871000001,-9.079945599999974],[117.1366882000001,-9.080493899999965],[117.13404850000006,-9.075426099999959],[117.13474280000003,-9.070112199999926],[117.147995,-9.061742799999934],[117.14939880000009,-9.0626593],[117.14942930000007,-9.0599937],[117.15156560000003,-9.059496899999942],[117.15245820000007,-9.057181399999934],[117.15245820000007,-9.053372399999944],[117.1596975000001,-9.05163319999997],[117.16357040000003,-9.0485621],[117.1668462,-9.043477799999948],[117.16797230000009,-9.037881599999935],[117.17268130000002,-9.032166],[117.17518930000006,-9.025733799999955],[117.1858357000001,-9.021263699999963],[117.2090224000001,-9.01906269999995],[117.22091430000012,-9.02020589999995],[117.24360610000008,-9.02786649999996],[117.27104950000012,-9.041318899999965],[117.2801349,-9.041857],[117.2875567000001,-9.045491099999936],[117.2936476000001,-9.046651199999928],[117.30676270000004,-9.042244899999957],[117.30871580000007,-9.044929499999967],[117.31971740000006,-9.050324399999965],[117.32399750000002,-9.055607799999962],[117.32952120000004,-9.055008899999962],[117.33715820000009,-9.04836649999993],[117.33958440000004,-9.049383199999966],[117.33976750000011,-9.047134399999948],[117.345604,-9.042031299999962],[117.35429380000005,-9.045520799999963],[117.35955050000007,-9.055698399999926],[117.36434940000004,-9.05585579999996],[117.36449430000005,-9.053989399999978],[117.36603550000007,-9.054692299999942],[117.36721040000009,-9.052089699999954],[117.37046050000004,-9.050426499999958],[117.37233730000003,-9.050946199999942],[117.3715439,-9.047219299999938],[117.37339020000002,-9.050615299999947],[117.37497710000002,-9.048096599999951],[117.37733460000004,-9.050128],[117.38124080000011,-9.048982599999931],[117.38222510000003,-9.051000599999952],[117.38311010000007,-9.050153699999953],[117.38639830000011,-9.052685699999927],[117.38746640000011,-9.051692],[117.3911667000001,-9.052328099999954],[117.39768220000008,-9.048496199999931],[117.4103851000001,-9.049445099999957],[117.41608430000008,-9.042946799999982],[117.42080690000012,-9.04081059999993],[117.42636870000001,-9.041309399999932],[117.42769620000001,-9.038282399999957],[117.43334960000004,-9.035424199999966],[117.43674470000008,-9.034617399999945],[117.44007110000007,-9.035717],[117.44058990000008,-9.03374],[117.44373320000011,-9.033618899999965],[117.45889280000006,-9.024473199999932],[117.4793701000001,-9.02217769999993],[117.48296360000006,-9.020364799999982],[117.48365780000006,-9.018477399999938],[117.48698420000005,-9.021779099999947],[117.49043270000004,-9.018342],[117.50044250000008,-9.0196648],[117.50131990000011,-9.017663],[117.50328060000004,-9.0180216],[117.50447080000004,-9.0163851],[117.50513460000002,-9.01740069999994],[117.509407,-9.014154399999939],[117.51371,-9.013094899999942],[117.51499940000008,-9.010632499999929],[117.51666260000002,-9.0107365],[117.5172348000001,-9.012952799999937],[117.520134,-9.008309399999973],[117.52616880000005,-9.006963699999972],[117.5294113000001,-9.000961299999972],[117.53506470000002,-8.9981794],[117.5422211,-8.998364399999957],[117.54732510000008,-9.003127099999972],[117.55022430000008,-9.001432399999942],[117.5513611,-8.997382199999947],[117.55320740000002,-8.998795499999972],[117.55408480000006,-8.9948702],[117.56023410000012,-8.99597259999996],[117.56349180000007,-8.994943599999942],[117.56417850000003,-8.991888099999926],[117.567482,-8.99269389999995],[117.57289890000004,-8.984909099999982],[117.57484440000007,-8.984883299999979],[117.57573700000012,-8.98659989999993],[117.58637240000007,-8.981676099999959],[117.5953369,-8.981341399999963],[117.59468840000011,-8.979405399999962],[117.59644320000007,-8.975565899999935],[117.5990524,-8.974376699999937],[117.6002731000001,-8.975931199999934],[117.6006317,-8.973213199999975],[117.602005,-8.9732275],[117.6018448000001,-8.9715634],[117.60584260000007,-8.966095],[117.6150589,-8.961177799999973],[117.621788,-8.9604301],[117.63139340000009,-8.954617499999927],[117.63786320000008,-8.952437399999951],[117.64426420000007,-8.943012199999941],[117.64893340000003,-8.942618399999958],[117.65192410000009,-8.940224599999965],[117.6566696000001,-8.94077109999995],[117.66760250000004,-8.937708899999961],[117.67477420000012,-8.930732699999965],[117.67715450000003,-8.923946399999977],[117.6905365,-8.9188137],[117.70661160000009,-8.919968599999947],[117.72456360000001,-8.918428399999925],[117.73384090000002,-8.916088099999968],[117.73777010000003,-8.917831399999955],[117.74224090000007,-8.924134199999969],[117.753273,-8.931568199999958],[117.76552580000009,-8.934247],[117.77589420000004,-8.931209599999931],[117.78450010000006,-8.922176299999933],[117.7957229000001,-8.9059534],[117.80043790000002,-8.904840499999978],[117.80928040000003,-8.898901],[117.81708530000003,-8.898962],[117.82582850000006,-8.90727709999993],[117.829422,-8.9165306],[117.8314133,-8.918825099999935],[117.8339691000001,-8.918945299999962],[117.83556370000008,-8.927925099999982],[117.83779140000001,-8.931601499999942],[117.84487150000007,-8.93248079999995],[117.84956360000001,-8.928672799999958],[117.85031890000005,-8.9264698],[117.85312650000003,-8.9264955],[117.86158750000004,-8.936421399999972],[117.8686523,-8.935377099999926],[117.8710632000001,-8.936852399999964],[117.87303920000011,-8.941757199999927],[117.88420870000004,-8.943720799999937],[117.88884740000003,-8.94036479999994],[117.8938217000001,-8.93200109999998],[117.89603420000003,-8.926110299999948],[117.89589690000003,-8.9224205],[117.90261080000005,-8.919841799999972],[117.907898,-8.919349699999941],[117.90959930000008,-8.9206238],[117.91249850000008,-8.918519],[117.91825870000002,-8.918571499999928],[117.92332460000011,-8.916515299999958],[117.9249115,-8.91029169999996],[117.93223570000009,-8.900938],[117.93519590000005,-8.899145099999942],[117.9428329000001,-8.899782199999947],[117.94744870000011,-8.905814199999952],[117.95028680000007,-8.906876599999975],[117.95444490000011,-8.90603249999998],[117.957756,-8.901279399999964],[117.96139530000005,-8.89922139999993],[117.96383670000012,-8.89925859999994],[117.96579740000004,-8.901272799999958],[117.97200770000006,-8.897397],[117.98080440000001,-8.894764899999927],[117.98272710000003,-8.892882399999962],[117.98990630000003,-8.872883799999954],[118.00007630000005,-8.8641233],[118.00493620000009,-8.855703399999982],[118.00830840000003,-8.853999199999976],[118.01040650000004,-8.854598],[118.0127106000001,-8.8527632],[118.0161743000001,-8.8529167],[118.02098850000004,-8.856372799999974],[118.024086,-8.854794499999969],[118.02498620000006,-8.852736499999935],[118.0277939,-8.85211279999993],[118.02983090000009,-8.855395299999941],[118.0345764000001,-8.854977599999927],[118.0370789000001,-8.857677399999943],[118.03899380000007,-8.857599199999981],[118.04441070000007,-8.855806399999949],[118.05977630000007,-8.845612499999959],[118.07029720000003,-8.841187499999933],[118.079483,-8.840216599999962],[118.09039310000003,-8.8478003],[118.09407040000008,-8.853936199999964],[118.09250640000005,-8.859320699999955],[118.09582520000004,-8.862401],[118.1082153000001,-8.871199599999954],[118.11895750000008,-8.876816799999972],[118.12698360000002,-8.877947799999959],[118.13728330000004,-8.872329699999966],[118.14157110000008,-8.867106399999955],[118.15059660000009,-8.864925399999947],[118.15882870000007,-8.858786599999974],[118.17327880000005,-8.858387],[118.18518070000005,-8.853881799999954],[118.188057,-8.846383099999969],[118.19476320000001,-8.84343339999998],[118.20972440000003,-8.832533799999965],[118.21064,-8.825670199999934],[118.2133636000001,-8.82031059999997],[118.21949770000003,-8.81452939999997],[118.21875760000012,-8.812503799999945],[118.22151180000003,-8.806758899999977],[118.22763060000011,-8.805134799999962],[118.23425290000012,-8.800808899999936],[118.24893190000012,-8.794562399999961],[118.24927520000006,-8.789758699999936],[118.25551610000002,-8.787441299999955],[118.25468440000009,-8.784083399999929],[118.25937650000003,-8.774622],[118.267189,-8.77163889999997],[118.2697372,-8.773830399999952],[118.2737198000001,-8.770321899999942],[118.28382870000007,-8.769309],[118.28599550000001,-8.757693299999971],[118.28249360000007,-8.750910799999929],[118.28727720000006,-8.740434599999958],[118.30363470000009,-8.732430499999964],[118.3158188000001,-8.728642499999978],[118.32035830000007,-8.728811299999961],[118.3218994,-8.731918299999961],[118.32359310000004,-8.731648399999926],[118.32749180000008,-8.728046399999926],[118.32674410000004,-8.724701899999957],[118.33078770000009,-8.722041099999956],[118.33082580000007,-8.717804899999976],[118.33348080000007,-8.715389199999947],[118.33303070000011,-8.712858199999971],[118.33076480000011,-8.708681099999978],[118.31961820000004,-8.701451299999974],[118.3197937000001,-8.696776399999976],[118.313652,-8.693553899999927],[118.28953550000006,-8.695706399999949],[118.27760320000004,-8.692674599999975],[118.27204130000007,-8.692796699999974],[118.24013520000005,-8.7029428],[118.23299410000004,-8.701529499999936],[118.22628020000002,-8.704223599999978],[118.22259520000011,-8.701772699999935],[118.21652990000007,-8.701319699999942],[118.18862920000004,-8.705855399999962],[118.1839523000001,-8.697356199999945],[118.17764280000006,-8.691590299999973],[118.17692570000008,-8.6824417],[118.17930600000011,-8.677493099999936],[118.1765213000001,-8.669482199999948],[118.17755130000012,-8.663832699999944],[118.175827,-8.654845299999977]]],[[[117.55998230000012,-8.144153599999981],[117.55345920000002,-8.145175],[117.53771970000003,-8.154945399999974],[117.52964020000002,-8.154999699999962],[117.51646420000009,-8.160930599999972],[117.50058750000005,-8.173906299999942],[117.48545840000008,-8.1827288],[117.4822464,-8.186112399999956],[117.48009490000004,-8.192300799999941],[117.47925570000007,-8.208096499999954],[117.48168180000005,-8.216039699999953],[117.48529050000002,-8.21978379999996],[117.48796840000011,-8.228076],[117.47890470000004,-8.257381399999929],[117.4849319000001,-8.261341099999981],[117.4899292,-8.259787599999981],[117.49638370000002,-8.261324899999977],[117.499321,-8.265191099999981],[117.50698090000003,-8.268043499999976],[117.50824740000007,-8.273055099999965],[117.50221250000004,-8.29531],[117.49322510000002,-8.316573199999937],[117.48641970000006,-8.324777599999948],[117.4764709000001,-8.332121799999982],[117.47335050000004,-8.347894699999927],[117.47015380000005,-8.355972299999962],[117.48355870000012,-8.362809199999958],[117.48698420000005,-8.366299599999934],[117.49918370000012,-8.371305499999949],[117.51612850000004,-8.384462399999961],[117.5280838000001,-8.389620799999932],[117.52909850000003,-8.385608699999977],[117.53514860000007,-8.379124599999955],[117.54719540000008,-8.370615],[117.55173490000004,-8.358185799999944],[117.55779270000005,-8.352538099999947],[117.57032010000012,-8.33527659999993],[117.5745849000001,-8.324331299999926],[117.57254790000002,-8.321132699999964],[117.57357790000003,-8.315504099999941],[117.5787659,-8.310133899999926],[117.58621210000001,-8.281674399999929],[117.5892487000001,-8.27787879999994],[117.60427850000008,-8.268375399999968],[117.60706330000005,-8.264422399999944],[117.6083374000001,-8.256722399999944],[117.60588840000003,-8.2524834],[117.61028290000002,-8.243817299999932],[117.60900880000008,-8.2406645],[117.61027530000001,-8.2381001],[117.6150742000001,-8.232461899999976],[117.62669370000003,-8.223562199999947],[117.63180540000008,-8.221696899999927],[117.63909910000007,-8.216017699999952],[117.64662930000009,-8.213125199999979],[117.65985110000008,-8.198295599999938],[117.67996220000009,-8.19084259999994],[117.68995670000004,-8.180741299999966],[117.6881638000001,-8.173217799999975],[117.68363950000003,-8.166046199999926],[117.66992190000008,-8.153727499999945],[117.66276550000009,-8.150137899999947],[117.65648650000003,-8.148647299999936],[117.65336610000008,-8.151440599999944],[117.64886480000007,-8.15286539999994],[117.63728330000004,-8.152140599999939],[117.62389370000005,-8.1544294],[117.60640720000004,-8.1547604],[117.60042570000007,-8.152450599999952],[117.59346770000002,-8.15336229999997],[117.58594510000012,-8.152112],[117.55998230000012,-8.144153599999981]]],[[[117.406456,-8.129159],[117.40228270000011,-8.128589599999941],[117.384613,-8.131723399999942],[117.38143920000005,-8.134231599999964],[117.38098140000011,-8.139189699999974],[117.3768616000001,-8.146389],[117.3587189000001,-8.146032299999945],[117.34530640000003,-8.151636099999962],[117.34419250000008,-8.152567899999951],[117.34468840000011,-8.15474409999996],[117.35353850000001,-8.153729399999975],[117.351387,-8.156093599999963],[117.35395810000011,-8.156770699999981],[117.356575,-8.15413],[117.36129,-8.152689899999928],[117.36168670000006,-8.1547604],[117.35722350000003,-8.1564093],[117.3600159,-8.159375199999943],[117.36283880000008,-8.160500499999955],[117.37789920000012,-8.160356499999978],[117.38282780000009,-8.157796899999937],[117.38193510000008,-8.156006799999943],[117.37638860000004,-8.156558],[117.3795166000001,-8.155448899999953],[117.37572480000006,-8.150058699999931],[117.37940980000008,-8.150991499999975],[117.412117,-8.1386595],[117.41578670000001,-8.138443],[117.41721340000004,-8.139830599999925],[117.42392730000006,-8.137777299999925],[117.42368320000003,-8.134464299999934],[117.418045,-8.135559099999966],[117.4139709000001,-8.1308165],[117.406456,-8.129159]]]]},"properties":{"shapeName":"Sumbawa","shapeISO":"","shapeID":"22746128B7770911830857","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[116.7197427000001,-8.748822299999972],[116.7115437000001,-8.748880799999938],[116.717197,-8.751795],[116.71997150000004,-8.751065299999937],[116.7197427000001,-8.748822299999972]]],[[[116.76973730000009,-8.712405199999978],[116.77345280000009,-8.708059299999945],[116.7723846,-8.706147199999975],[116.76846310000008,-8.709352499999966],[116.76802060000011,-8.711690899999951],[116.76973730000009,-8.712405199999978]]],[[[116.7294769,-8.685109099999977],[116.72956080000006,-8.683796899999948],[116.72813410000003,-8.683708199999955],[116.72424320000005,-8.687772699999925],[116.72679140000002,-8.687623],[116.7294769,-8.685109099999977]]],[[[116.73126980000006,-8.681664499999954],[116.7298737000001,-8.682442699999967],[116.73041540000008,-8.683589899999959],[116.73126980000006,-8.681664499999954]]],[[[116.78806310000004,-8.529089899999974],[116.78720850000002,-8.5274744],[116.7828522000001,-8.5294733],[116.78344730000003,-8.530493699999965],[116.7816772000001,-8.531546599999956],[116.77834320000011,-8.531695399999933],[116.77263640000001,-8.537711099999967],[116.76931760000002,-8.543057399999952],[116.76908880000008,-8.548337899999979],[116.76638030000004,-8.553137799999945],[116.76898960000005,-8.559204099999931],[116.77368930000011,-8.5584707],[116.77988430000005,-8.553818699999965],[116.78755950000004,-8.543328299999928],[116.78884890000006,-8.537965799999938],[116.78905490000011,-8.529212],[116.78806310000004,-8.529089899999974]]],[[[116.79034420000005,-8.526269],[116.7918777000001,-8.524366399999963],[116.79001620000008,-8.524348299999929],[116.79034420000005,-8.526269]]],[[[116.88354620000007,-8.525922699999967],[116.87879180000004,-8.525857899999949],[116.87386320000007,-8.528796199999931],[116.869873,-8.527924499999926],[116.86856840000007,-8.530324899999925],[116.8604279000001,-8.533890699999972],[116.8595352000001,-8.53609369999998],[116.85482790000003,-8.53931719999997],[116.8466644,-8.536322599999949],[116.84301,-8.538616199999979],[116.833195,-8.5301941],[116.830864,-8.523948699999949],[116.83283230000006,-8.520384799999931],[116.83138280000003,-8.515452399999958],[116.8195343000001,-8.516113299999972],[116.8191299,-8.51790049999994],[116.82340240000008,-8.523576699999978],[116.8328934000001,-8.544161799999927],[116.83334350000007,-8.557497],[116.83039860000008,-8.559906],[116.82848360000003,-8.566394799999955],[116.82482730000004,-8.572287899999935],[116.8176678000001,-8.5787761],[116.80874170000004,-8.581574799999942],[116.80218750000006,-8.581698299999971],[116.78852840000002,-8.58961679999993],[116.7860108000001,-8.594220199999938],[116.7868042,-8.602213899999981],[116.78522490000012,-8.608467099999928],[116.78318790000003,-8.612649899999951],[116.77404780000006,-8.621444699999927],[116.77042390000008,-8.628843299999971],[116.770256,-8.6409016],[116.77166750000004,-8.640287399999977],[116.766388,-8.644718199999943],[116.76410670000007,-8.653575899999964],[116.76078030000008,-8.655407899999943],[116.75974270000006,-8.658655199999941],[116.75292210000009,-8.663268099999925],[116.74913790000005,-8.66395],[116.74620060000007,-8.662694],[116.75900270000011,-8.67451],[116.76367190000008,-8.675007799999946],[116.77033230000006,-8.672622699999977],[116.77365870000006,-8.674729299999967],[116.77441410000006,-8.680709899999954],[116.77195740000002,-8.687436099999957],[116.7729111000001,-8.688489],[116.77454380000006,-8.687752699999976],[116.776329,-8.6905231],[116.77545930000008,-8.692298899999969],[116.77760320000004,-8.69658949999996],[116.77758790000007,-8.7031889],[116.78508000000011,-8.711591699999929],[116.78621670000007,-8.709738699999946],[116.78620150000006,-8.713394199999925],[116.78031160000012,-8.716042499999958],[116.7828522000001,-8.716692],[116.78587340000001,-8.720795599999974],[116.7829666,-8.723171199999967],[116.78087620000008,-8.728385],[116.77816010000004,-8.72607039999997],[116.77406310000003,-8.727093699999955],[116.771759,-8.725666],[116.76902770000004,-8.7289152],[116.76585390000002,-8.7286053],[116.76584630000002,-8.730012899999963],[116.7685547000001,-8.73138709999995],[116.7680054000001,-8.734051699999952],[116.76319120000005,-8.736598],[116.76615140000001,-8.736563699999977],[116.76634980000006,-8.738360399999976],[116.768364,-8.738719],[116.76570890000005,-8.740411799999947],[116.76600650000012,-8.742362],[116.76826480000011,-8.743012399999941],[116.77062230000001,-8.740127599999937],[116.77246860000002,-8.740283],[116.77856450000002,-8.7443018],[116.78353880000009,-8.751378099999954],[116.78436280000005,-8.754235299999948],[116.7806091000001,-8.7579737],[116.78051760000005,-8.762680099999955],[116.77748870000005,-8.766227699999945],[116.7814178000001,-8.774681099999952],[116.7871857,-8.765789],[116.79039770000009,-8.76534179999993],[116.79643250000004,-8.768994299999974],[116.80398560000003,-8.777211199999954],[116.8114395,-8.790556899999956],[116.81108090000009,-8.799705499999959],[116.80936430000008,-8.803319],[116.81472780000001,-8.812686],[116.81327820000001,-8.815660499999979],[116.81102750000002,-8.81536479999994],[116.81271360000005,-8.818422299999952],[116.81088260000001,-8.821915599999954],[116.8035278000001,-8.8261022],[116.800148,-8.824859599999968],[116.79882810000004,-8.822218899999939],[116.79865260000008,-8.825049399999955],[116.79602810000006,-8.825320199999965],[116.79424290000009,-8.821518899999944],[116.79027560000009,-8.8199139],[116.7865524,-8.813886599999933],[116.78610230000004,-8.818571099999929],[116.78379060000009,-8.822931299999937],[116.78504180000004,-8.823628399999961],[116.78479,-8.8270455],[116.78326420000008,-8.828258499999947],[116.78155520000007,-8.827306699999951],[116.7817917000001,-8.830160099999944],[116.78031160000012,-8.831325499999934],[116.77119450000009,-8.832583399999976],[116.76660920000006,-8.834915099999932],[116.76545720000001,-8.838666],[116.77002720000007,-8.838986399999953],[116.77115630000003,-8.842875499999934],[116.77108,-8.848348599999952],[116.76788330000011,-8.855494499999963],[116.75719450000008,-8.864244499999927],[116.75337980000006,-8.862317099999927],[116.749794,-8.86419959999995],[116.74662780000006,-8.863256499999977],[116.74452970000004,-8.865450899999928],[116.73486330000003,-8.866396899999927],[116.73445890000005,-8.868742],[116.73286440000004,-8.86929129999993],[116.73361970000008,-8.871502899999939],[116.73883050000006,-8.8718538],[116.73986050000008,-8.873259599999926],[116.7386398000001,-8.87750909999994],[116.73413120000009,-8.880692599999975],[116.73866270000008,-8.883473399999957],[116.7416,-8.8830843],[116.74517820000005,-8.886929499999951],[116.75059510000006,-8.888097799999969],[116.75223540000002,-8.893893299999945],[116.74950410000008,-8.899480799999935],[116.74617010000009,-8.900242799999944],[116.7427368000001,-8.896159199999943],[116.7366181000001,-8.894002899999975],[116.73400120000008,-8.891192399999966],[116.73191830000007,-8.891741799999977],[116.73197940000011,-8.893791199999953],[116.72943110000006,-8.896232599999962],[116.73011020000001,-8.89891339999997],[116.73266600000011,-8.90110969999995],[116.73234560000003,-8.903733199999976],[116.73078920000012,-8.905935299999953],[116.72635650000007,-8.906038299999977],[116.72517390000007,-8.911021199999936],[116.73441320000006,-8.9160356],[116.74323270000002,-8.9151735],[116.7506790000001,-8.920591399999978],[116.75172420000001,-8.924122799999964],[116.74120330000005,-8.933415399999944],[116.73591610000005,-8.933801699999947],[116.7370529000001,-8.935060499999963],[116.73469540000008,-8.938095099999941],[116.7364655,-8.94142249999993],[116.73534390000009,-8.942760499999963],[116.73714450000011,-8.947080599999936],[116.73607630000004,-8.948173099999963],[116.73813630000006,-8.952268599999968],[116.73696140000004,-8.955327],[116.72664640000005,-8.958067899999946],[116.726326,-8.960751499999958],[116.72518920000005,-8.960026699999958],[116.72409820000007,-8.961566],[116.7268295,-8.96301649999998],[116.72678370000006,-8.965103099999965],[116.71913150000012,-8.968235],[116.71782680000001,-8.9659472],[116.71594240000002,-8.965592399999935],[116.7152099000001,-8.971299199999976],[116.71975710000004,-8.975577399999963],[116.72316740000008,-8.974354699999935],[116.7231064,-8.971492799999965],[116.72450260000005,-8.970405599999935],[116.73016360000008,-8.971098899999959],[116.73642730000006,-8.97684],[116.7375336,-8.986457799999926],[116.72729830000003,-8.999042199999963],[116.73018530000002,-9.002268899999933],[116.72865690000003,-9.006203199999959],[116.7315589000001,-9.004564199999948],[116.73231510000005,-9.001375199999927],[116.73589320000008,-8.997554799999932],[116.73954010000011,-8.997006399999975],[116.76886750000006,-9.01830289999998],[116.78810880000003,-9.035653099999934],[116.79656220000004,-9.03576849999996],[116.80197140000007,-9.0324402],[116.80799860000002,-9.032486],[116.8157883,-9.037669199999925],[116.8244476000001,-9.0401917],[116.83379360000004,-9.045969],[116.83980560000009,-9.044121699999948],[116.83955380000009,-9.040227899999934],[116.84223180000004,-9.039720599999953],[116.84410090000006,-9.04277609999997],[116.850708,-9.04469869999997],[116.85243230000003,-9.043829],[116.85366820000002,-9.047883],[116.86312870000006,-9.052395799999942],[116.86806490000004,-9.0572577],[116.87006380000003,-9.0568685],[116.88262180000004,-9.06212329999994],[116.8863831000001,-9.058903699999973],[116.887001,-9.061110499999927],[116.89313510000011,-9.062044199999946],[116.89373780000005,-9.06392],[116.89733890000002,-9.064876599999934],[116.90669250000008,-9.062071799999956],[116.907898,-9.060501099999954],[116.90960690000009,-9.061260199999936],[116.91535190000002,-9.059772499999951],[116.92252350000001,-9.052080199999978],[116.92572790000008,-9.052207899999928],[116.92845920000002,-9.054130499999928],[116.94247440000004,-9.052297599999974],[116.94203190000007,-9.054601699999978],[116.95412440000007,-9.058361099999956],[116.95564270000011,-9.064024899999936],[116.95844270000009,-9.063756],[116.96219630000007,-9.067395199999964],[116.96591950000004,-9.072250399999973],[116.96552280000003,-9.07399179999993],[116.97059630000001,-9.078043],[116.97052770000005,-9.079657599999962],[116.97969820000003,-9.082773199999963],[116.98364260000005,-9.087316499999929],[116.9851685000001,-9.087332699999934],[116.98541260000002,-9.0889654],[116.98818210000002,-9.0891733],[116.9898071,-9.085234599999978],[116.99201970000001,-9.084617599999945],[116.99339290000012,-9.086601199999961],[116.9928589000001,-9.0893755],[116.99484250000012,-9.091105399999947],[117.00444030000006,-9.093347599999959],[117.0093002000001,-9.100659399999927],[117.00783540000009,-9.103186599999958],[117.00932310000007,-9.1035185],[117.00909420000005,-9.10732269999994],[117.01145170000007,-9.106717099999969],[117.01190950000012,-9.10888289999997],[117.01534270000002,-9.109656299999926],[117.0183029000001,-9.1079492],[117.02183530000002,-9.102017399999966],[117.02454380000006,-9.102750799999967],[117.02483370000004,-9.105569799999955],[117.02985380000007,-9.106061],[117.03887940000004,-9.104552299999966],[117.0404205000001,-9.100878699999953],[117.04010770000002,-9.098756799999933],[117.04337310000005,-9.097992899999952],[117.04173280000009,-9.091394399999956],[117.0443878000001,-9.087087599999961],[117.04395290000002,-9.082329799999968],[117.04770660000008,-9.077571899999953],[117.04637910000008,-9.07618229999997],[117.04923250000002,-9.074029],[117.04760740000006,-9.072623299999975],[117.048111,-9.07078169999994],[117.0503159000001,-9.0680904],[117.05122380000012,-9.069497099999978],[117.05333710000002,-9.068923],[117.05260470000007,-9.067482],[117.05564880000009,-9.065449699999931],[117.05505370000003,-9.063071299999933],[117.05197140000007,-9.063749299999927],[117.05183410000006,-9.061526299999969],[117.05662540000003,-9.059097299999962],[117.0568009000001,-9.056020699999976],[117.05860140000004,-9.056976299999974],[117.059372,-9.0560551],[117.05673220000006,-9.053850199999943],[117.05368810000004,-9.0545626],[117.0536499000001,-9.053138699999977],[117.05512240000007,-9.051610899999957],[117.05658720000008,-9.0528088],[117.05723570000009,-9.048120499999982],[117.05963140000006,-9.046765299999947],[117.05828090000011,-9.045064],[117.0590668000001,-9.0430841],[117.0631409,-9.044333499999937],[117.06356050000011,-9.041851099999974],[117.066658,-9.042058899999972],[117.06599430000006,-9.036415099999942],[117.06752780000011,-9.034765299999947],[117.0642395000001,-9.031935699999963],[117.06737520000001,-9.0306845],[117.067421,-9.028722699999946],[117.06490330000008,-9.0280628],[117.06729890000008,-9.023374599999954],[117.06404880000002,-9.022211099999936],[117.0654144,-9.021013299999936],[117.0631714000001,-9.019942299999968],[117.06298830000003,-9.015057599999977],[117.06151580000005,-9.013094899999942],[117.06390380000005,-9.005714399999931],[117.06649780000009,-9.002973599999962],[117.06522370000005,-9.000153499999954],[117.0681992000001,-8.998953799999981],[117.06779480000012,-8.995448099999976],[117.06983950000006,-8.988334599999973],[117.06867220000004,-8.984821299999965],[117.07020570000009,-8.971093199999927],[117.06763460000002,-8.957861899999955],[117.06735990000004,-8.946399699999972],[117.0737,-8.942351299999928],[117.08478550000007,-8.940469699999937],[117.08848570000009,-8.926935199999946],[117.08344270000009,-8.914951299999927],[117.0829010000001,-8.898070299999972],[117.07625580000001,-8.885847099999978],[117.07118990000004,-8.883009899999934],[117.06420140000012,-8.8760119],[117.062294,-8.872628199999951],[117.06144720000009,-8.863842],[117.06267550000007,-8.860907599999962],[117.06995390000009,-8.860014],[117.0722962000001,-8.857139599999925],[117.07379910000009,-8.848017699999957],[117.07902530000001,-8.844222099999968],[117.07900240000004,-8.839815099999953],[117.08091740000009,-8.839057],[117.08185580000008,-8.835713399999975],[117.08538050000004,-8.834565099999963],[117.08451080000009,-8.825484299999971],[117.07660670000007,-8.82372],[117.07392880000009,-8.8147678],[117.06548310000005,-8.8098078],[117.06095120000009,-8.804903],[117.05564120000008,-8.803302799999926],[117.04795840000008,-8.80404569999996],[117.04508970000006,-8.8026628],[117.04056550000007,-8.791766199999927],[117.04294590000006,-8.786781299999973],[117.04855350000003,-8.783011399999964],[117.05846410000004,-8.782451599999945],[117.06587220000006,-8.780279199999939],[117.06709290000003,-8.7764759],[117.07020570000009,-8.774809799999957],[117.07021330000009,-8.771750399999974],[117.0734711,-8.771208799999954],[117.07406620000006,-8.767066],[117.077713,-8.767115599999954],[117.07953640000005,-8.76544],[117.0816956000001,-8.7661371],[117.08414460000006,-8.763708099999974],[117.08320620000006,-8.758825299999955],[117.08859250000012,-8.748440699999946],[117.09063720000006,-8.730510699999968],[117.0905457,-8.7181682],[117.0879212000001,-8.705153499999938],[117.08309170000007,-8.696076399999981],[117.0748215000001,-8.690726299999938],[117.07166290000009,-8.687008799999944],[117.07057190000012,-8.684723899999938],[117.071167,-8.680526699999973],[117.06936640000004,-8.677976599999965],[117.0625381000001,-8.674813299999926],[117.0593262000001,-8.6775198],[117.05586240000002,-8.677406299999973],[117.04895780000004,-8.670101199999976],[117.04204560000005,-8.672529199999929],[117.03900910000004,-8.670604699999956],[117.0250397000001,-8.651713399999949],[117.00049590000003,-8.625],[116.97093960000007,-8.612546],[116.95068360000005,-8.60138889999996],[116.94152830000007,-8.5946941],[116.9197693000001,-8.57445329999996],[116.88924410000004,-8.5541086],[116.87603760000002,-8.53992459999995],[116.8780670000001,-8.535694099999944],[116.88833620000003,-8.526740099999927],[116.88354620000007,-8.525922699999967]]],[[[116.79139710000004,-8.511615799999959],[116.78719330000001,-8.514626499999963],[116.78870390000009,-8.51846889999996],[116.79423520000012,-8.51639369999998],[116.79139710000004,-8.511615799999959]]],[[[116.85599520000005,-8.50237459999994],[116.8503799,-8.5030641],[116.84291840000003,-8.507585499999948],[116.8415298000001,-8.509835299999963],[116.84935,-8.518432599999926],[116.85102080000001,-8.5182209],[116.85543060000009,-8.512997599999949],[116.85668180000005,-8.507980299999929],[116.85961150000003,-8.5050049],[116.85599520000005,-8.50237459999994]]],[[[116.83518980000008,-8.501250299999981],[116.83509060000006,-8.4987946],[116.830864,-8.496091899999954],[116.83075710000003,-8.498552299999972],[116.83518980000008,-8.501250299999981]]]]},"properties":{"shapeName":"Sumbawa Barat","shapeISO":"","shapeID":"22746128B62586093875775","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[107.91466530000008,-6.952776699999959],[107.91592540000005,-6.945701799999938],[107.92182170000007,-6.949609599999974],[107.92610940000009,-6.948708299999964],[107.92697150000004,-6.952179199999932],[107.93141940000004,-6.955915299999958],[107.934784,-6.9550317],[107.93901830000004,-6.956302899999969],[107.942936,-6.9530807],[107.94662480000005,-6.957757299999969],[107.95339210000009,-6.958300899999927],[107.95811470000007,-6.960360399999956],[107.96650140000008,-6.958736],[107.96858220000007,-6.962644399999931],[107.97656260000008,-6.969438799999978],[107.978386,-6.972795299999973],[107.99069220000007,-6.981968199999926],[107.99675730000007,-6.981150899999932],[108.00000010000008,-6.983578499999965],[108.00323490000005,-6.982953399999928],[108.00400060000004,-6.980985699999962],[108.00759130000006,-6.9823747],[108.01587680000006,-6.9801167],[108.01673080000006,-6.981236],[108.01808570000009,-6.9804738],[108.02069810000006,-6.983244199999945],[108.02322510000005,-6.981808299999955],[108.02379060000004,-6.983954499999925],[108.02655670000007,-6.985520799999961],[108.02541760000008,-6.987444099999948],[108.02736470000008,-6.988901299999952],[108.02883410000004,-6.987580899999955],[108.03073580000006,-6.989314699999966],[108.03048120000005,-6.991562299999941],[108.03716970000005,-6.991749499999969],[108.03750790000004,-6.9946894],[108.04267330000005,-6.996555899999976],[108.04635310000003,-6.995579],[108.04790430000008,-6.992726499999947],[108.05499130000004,-6.996247299999936],[108.05853310000003,-6.994498799999974],[108.06459480000007,-6.995020899999929],[108.06522970000009,-6.992518599999926],[108.07380840000008,-6.9821039],[108.08323320000005,-6.9828131],[108.08772870000007,-6.980504099999962],[108.09015150000005,-6.981781499999954],[108.09137220000008,-6.984459499999957],[108.09147570000005,-6.991356399999972],[108.09351310000005,-6.995769299999949],[108.09208220000005,-6.999729299999956],[108.09412540000005,-6.999794599999973],[108.09315990000005,-7.001999499999954],[108.09499630000005,-7.00488],[108.09413150000006,-7.007139],[108.099495,-7.0146039],[108.10005960000007,-7.019531599999937],[108.10930640000004,-7.026064199999951],[108.11502080000008,-7.032906899999944],[108.12274940000009,-7.037163599999928],[108.12543490000007,-7.037049099999933],[108.12905890000008,-7.040762299999926],[108.13047810000006,-7.041432599999951],[108.13175970000009,-7.038950299999954],[108.133458,-7.039232799999979],[108.13559730000009,-7.0393289],[108.143303,-7.031689],[108.14517980000005,-7.024731],[108.15216070000008,-7.020065099999954],[108.15340810000004,-7.012936],[108.165001,-6.998486399999933],[108.16514980000005,-6.993762799999956],[108.16809090000004,-6.9894369],[108.167717,-6.983746899999971],[108.17125130000005,-6.977118],[108.16987230000007,-6.975076299999955],[108.17097460000008,-6.968680799999959],[108.17883870000009,-6.962522299999932],[108.18092370000005,-6.956124199999977],[108.18339550000007,-6.954089],[108.18851290000003,-6.952998],[108.19102030000005,-6.948117299999979],[108.19897660000004,-6.947030199999972],[108.20171470000008,-6.944267099999934],[108.20178260000006,-6.941170299999953],[108.20589450000006,-6.9404476],[108.20512390000005,-6.937232799999947],[108.20959480000005,-6.934023699999955],[108.21313450000008,-6.934346699999935],[108.21480310000004,-6.931970799999931],[108.217082,-6.932004],[108.21736390000007,-6.929063299999939],[108.21984870000006,-6.9280284],[108.21929180000006,-6.926009],[108.21706590000008,-6.925328599999943],[108.21768980000007,-6.919535799999949],[108.21301290000008,-6.918347],[108.21140880000007,-6.915173599999946],[108.21418960000005,-6.911853599999972],[108.21341270000005,-6.908562399999937],[108.21609980000005,-6.90273],[108.21138320000006,-6.907238099999972],[108.20991840000005,-6.906615399999964],[108.21452890000006,-6.889190599999949],[108.21172210000009,-6.888579899999968],[108.20641010000008,-6.893103699999926],[108.20452120000004,-6.890818899999942],[108.19937140000008,-6.888646399999971],[108.19725350000004,-6.889500399999974],[108.19689980000004,-6.887771199999975],[108.19417040000008,-6.886246099999937],[108.19307640000005,-6.881422199999975],[108.19925570000004,-6.8718356],[108.195978,-6.868779099999927],[108.19403820000008,-6.863766699999928],[108.19230630000004,-6.865823699999964],[108.18945660000009,-6.865373699999964],[108.18990720000005,-6.863392099999942],[108.18631050000005,-6.859117199999957],[108.18950960000006,-6.858235699999966],[108.18882740000004,-6.853032599999949],[108.18504860000007,-6.855223799999976],[108.17982860000006,-6.852288399999964],[108.17939290000004,-6.849740299999951],[108.18208030000005,-6.847627699999975],[108.18084480000005,-6.845288699999969],[108.18180410000008,-6.842596699999945],[108.177878,-6.838739799999928],[108.17961810000008,-6.833774299999959],[108.17535540000006,-6.831526399999973],[108.17063830000006,-6.833093199999951],[108.16671530000008,-6.829693],[108.16678230000008,-6.835186699999952],[108.16483510000006,-6.835347799999965],[108.15946970000005,-6.825831699999981],[108.159134,-6.820153599999969],[108.16161410000007,-6.813769199999967],[108.16050810000007,-6.809796399999925],[108.15400460000006,-6.805170099999941],[108.15282040000005,-6.802570699999933],[108.155813,-6.7964884],[108.165195,-6.797146899999973],[108.16648110000006,-6.794203099999947],[108.16480780000006,-6.7887718],[108.16670230000005,-6.786116],[108.169571,-6.787083],[108.16954810000004,-6.783745099999976],[108.16360120000007,-6.773869699999977],[108.16428380000008,-6.761350499999935],[108.15956890000007,-6.758862799999974],[108.15406130000008,-6.762263599999926],[108.14927940000007,-6.759548299999949],[108.14868930000006,-6.754852599999936],[108.15321830000005,-6.751346199999944],[108.15138660000008,-6.748126399999933],[108.151764,-6.744866699999932],[108.15675070000009,-6.740844299999935],[108.16021740000008,-6.733126499999969],[108.16365820000004,-6.729280299999971],[108.16202870000006,-6.724567199999967],[108.15877290000009,-6.720567099999926],[108.15714820000005,-6.722860599999933],[108.15498330000008,-6.720209199999942],[108.15557830000006,-6.72216],[108.15435560000009,-6.7210976],[108.15294170000004,-6.723057199999971],[108.15182090000008,-6.718427199999951],[108.14888950000005,-6.718857799999967],[108.15032950000005,-6.717140699999959],[108.147873,-6.715904099999932],[108.14751060000003,-6.717547299999978],[108.145752,-6.717476199999965],[108.14728170000006,-6.715577],[108.14579310000005,-6.712099399999943],[108.14368940000008,-6.710521799999981],[108.14262790000004,-6.711920799999973],[108.14017490000003,-6.710528699999941],[108.13812770000004,-6.707317099999955],[108.13660080000005,-6.708117499999958],[108.13535720000004,-6.706725199999937],[108.13380460000008,-6.709145499999977],[108.13367260000007,-6.707015299999966],[108.13132710000008,-6.706970699999943],[108.13267410000009,-6.705464699999936],[108.12831310000007,-6.706557399999951],[108.125943,-6.703802499999938],[108.12375660000004,-6.707364799999937],[108.122212,-6.706148199999973],[108.12351220000005,-6.704457299999945],[108.12245670000004,-6.703512],[108.12145320000008,-6.7050269],[108.11930930000005,-6.704479699999979],[108.11814060000006,-6.706576899999959],[108.11698680000006,-6.704231099999959],[108.11811120000004,-6.7013395],[108.11398120000007,-6.701814199999944],[108.11277330000007,-6.698411799999974],[108.11100080000006,-6.698510499999941],[108.11116850000008,-6.694258799999943],[108.10820540000009,-6.692655399999978],[108.10959620000006,-6.690590699999973],[108.10696680000007,-6.690301399999953],[108.10785930000009,-6.687602499999969],[108.10538180000009,-6.686711799999955],[108.10185550000006,-6.687710099999947],[108.09458590000008,-6.677512199999967],[108.09306430000004,-6.677693399999953],[108.09188760000006,-6.672664699999928],[108.08788310000006,-6.673828899999933],[108.08862310000006,-6.6713966],[108.08466350000003,-6.672294],[108.08390810000009,-6.669544099999939],[108.07975780000004,-6.669874499999935],[108.07958990000009,-6.666413599999942],[108.07666790000007,-6.667475099999933],[108.07138830000008,-6.663438199999973],[108.06875620000005,-6.665690699999971],[108.06671150000005,-6.658778],[108.06996540000006,-6.657090299999936],[108.06605540000004,-6.655723899999941],[108.06590280000006,-6.657361799999933],[108.06327070000003,-6.658274],[108.06011020000005,-6.652816899999948],[108.05874640000008,-6.655616099999975],[108.056038,-6.653005399999927],[108.05389410000004,-6.653114399999936],[108.05484780000006,-6.648514099999943],[108.05170450000008,-6.646211499999936],[108.05281070000007,-6.642343399999959],[108.05094150000008,-6.640889499999957],[108.05047620000005,-6.638175799999942],[108.04506690000005,-6.637806699999942],[108.04312140000008,-6.639104699999962],[108.042656,-6.640696799999944],[108.03781130000004,-6.641500299999961],[108.03484350000008,-6.640602399999977],[108.03291330000008,-6.637094299999944],[108.03120430000007,-6.638549599999976],[108.03445440000007,-6.643440099999964],[108.03278360000007,-6.644986399999937],[108.03488170000008,-6.647717799999953],[108.03240210000007,-6.652048399999956],[108.03482830000007,-6.654559499999948],[108.03309640000003,-6.655549399999927],[108.03075420000005,-6.654555099999925],[108.02873240000008,-6.656443],[108.03023540000004,-6.659645399999931],[108.028122,-6.660612899999933],[108.02960210000003,-6.663027099999965],[108.027649,-6.664298799999926],[108.02709210000006,-6.668318099999965],[108.02494820000004,-6.669598399999927],[108.02751930000005,-6.6741112],[108.02661140000004,-6.675480199999981],[108.02475740000006,-6.674023899999952],[108.02559830000007,-6.677756099999954],[108.02184880000004,-6.6753537],[108.02041920000005,-6.676199699999927],[108.01992810000007,-6.673580499999957],[108.016655,-6.676157799999942],[108.01504530000005,-6.674702899999943],[108.01160460000006,-6.674966199999972],[108.01260290000005,-6.672225399999945],[108.00832,-6.674272],[108.00880440000009,-6.671633099999951],[108.00566110000005,-6.670169199999975],[108.00463870000004,-6.6726187],[108.00135810000006,-6.669743599999947],[107.99857340000005,-6.670023799999967],[107.99862680000007,-6.668043399999931],[107.99662790000008,-6.667234699999938],[107.98876960000007,-6.669610299999931],[107.98565680000007,-6.662163599999928],[107.97707380000008,-6.654524599999945],[107.97015390000007,-6.638841],[107.96134960000006,-6.632597699999963],[107.95339210000009,-6.631172],[107.95030220000007,-6.627321599999959],[107.94030770000006,-6.625615899999957],[107.936554,-6.621958099999972],[107.93523410000006,-6.614843199999939],[107.93063360000008,-6.615872199999956],[107.92840580000006,-6.613653499999941],[107.92709360000003,-6.614077399999928],[107.92533120000007,-6.610387099999969],[107.92065440000005,-6.6072839],[107.91832740000007,-6.603174],[107.90914160000005,-6.5960167],[107.90413670000004,-6.592988799999944],[107.87950910000006,-6.587841799999978],[107.87524420000005,-6.584467699999948],[107.85558360000005,-6.578923],[107.85283730000003,-6.5812799],[107.849001,-6.581161499999951],[107.84790720000007,-6.586219599999936],[107.85295090000005,-6.591681899999969],[107.85215010000007,-6.594913299999973],[107.85678230000008,-6.599878199999978],[107.85068820000004,-6.606968299999949],[107.85099950000006,-6.6126228],[107.85296850000009,-6.614687299999957],[107.85175420000007,-6.619190899999978],[107.85501650000003,-6.625386099999957],[107.85063560000003,-6.632501599999955],[107.85048050000006,-6.640836299999933],[107.84885130000004,-6.642412899999954],[107.85183960000006,-6.6524123],[107.850205,-6.652269799999942],[107.84953390000004,-6.656650599999978],[107.84772070000008,-6.655577899999969],[107.84422190000004,-6.6573146],[107.84113620000005,-6.661991499999942],[107.840902,-6.665154899999948],[107.83241480000004,-6.667438299999958],[107.82610110000007,-6.670960899999955],[107.81811690000006,-6.669699899999955],[107.81415980000008,-6.673998499999925],[107.81918650000006,-6.67485],[107.81932960000006,-6.677089599999931],[107.80990940000004,-6.677472],[107.81215510000004,-6.680609199999935],[107.81728360000005,-6.681454899999949],[107.81606460000006,-6.683504],[107.82184110000009,-6.686368099999981],[107.82300780000008,-6.684093099999927],[107.823522,-6.686721299999931],[107.82574080000006,-6.685937399999943],[107.82645160000004,-6.683302199999957],[107.82917810000004,-6.684012299999949],[107.83514990000003,-6.686853599999949],[107.83527250000009,-6.689168199999926],[107.83684340000008,-6.688809699999979],[107.836831,-6.690447899999981],[107.84041620000005,-6.691746199999955],[107.84032650000006,-6.697985199999948],[107.83738720000008,-6.699880899999926],[107.83835580000004,-6.701313599999935],[107.83657850000009,-6.701570799999956],[107.83763230000005,-6.703923599999939],[107.83552520000006,-6.70717],[107.837966,-6.708226199999956],[107.83674860000008,-6.709151399999939],[107.83730010000005,-6.711108199999956],[107.83481450000005,-6.7130202],[107.83377940000008,-6.715039199999978],[107.83539920000004,-6.716150399999947],[107.83342880000004,-6.717268899999965],[107.83530220000006,-6.718274899999926],[107.83569480000006,-6.720884399999932],[107.83746130000009,-6.722041499999932],[107.83824580000004,-6.720990899999947],[107.83958150000007,-6.722773099999927],[107.83761240000007,-6.724039699999935],[107.83887350000003,-6.724985499999946],[107.83764280000008,-6.7292698],[107.83858040000007,-6.730566099999976],[107.83672930000006,-6.736132399999974],[107.83794220000004,-6.736776299999974],[107.83641570000009,-6.738179899999977],[107.83895620000004,-6.739211099999977],[107.83987610000008,-6.741398099999969],[107.83722310000007,-6.749054],[107.84030330000007,-6.75025],[107.84189470000007,-6.758427299999937],[107.83899640000004,-6.761960199999976],[107.83739850000006,-6.776078699999971],[107.83475160000006,-6.7772229],[107.83145190000005,-6.781451499999946],[107.82556970000007,-6.782349899999929],[107.81790930000005,-6.792265699999973],[107.816709,-6.799662299999966],[107.80407030000003,-6.808708499999966],[107.79768450000006,-6.802338],[107.79325950000003,-6.801971799999933],[107.78498930000006,-6.804321199999947],[107.78031570000007,-6.800741899999935],[107.77644,-6.801184],[107.77410540000005,-6.8048508],[107.76982540000006,-6.805737799999974],[107.76132210000009,-6.811068299999931],[107.75178540000007,-6.813548399999945],[107.75000010000008,-6.812845],[107.74458320000008,-6.828033699999935],[107.74630750000006,-6.833733799999948],[107.74191290000005,-6.843391699999927],[107.74392710000006,-6.8463724],[107.74147040000008,-6.849024099999951],[107.74079140000003,-6.854955899999936],[107.74314890000005,-6.861521],[107.74446880000005,-6.876443199999926],[107.748848,-6.883686299999965],[107.75855350000006,-6.891805899999952],[107.760374,-6.897104699999943],[107.75882730000006,-6.898702899999932],[107.75929870000004,-6.903595899999971],[107.75772410000008,-6.905526399999928],[107.758812,-6.908737],[107.75759040000008,-6.909963199999936],[107.75943,-6.912986099999955],[107.75842430000006,-6.9146037],[107.76008620000005,-6.920614],[107.75686470000005,-6.929174499999931],[107.75801690000009,-6.9348271],[107.75695990000008,-6.938352699999939],[107.75897620000006,-6.9439191],[107.75390880000003,-6.951160199999947],[107.75522420000004,-6.956037799999933],[107.75847210000006,-6.955431],[107.75992080000009,-6.952765099999965],[107.76192020000008,-6.953554299999951],[107.76298190000006,-6.956332599999939],[107.76481120000005,-6.954951499999936],[107.76487530000009,-6.952209799999935],[107.77062890000008,-6.954957499999978],[107.76896460000006,-6.957430599999952],[107.77419340000006,-6.959491],[107.77398630000005,-6.956033899999966],[107.77809150000007,-6.957185099999947],[107.77850980000005,-6.955061699999931],[107.78135690000005,-6.955125099999975],[107.78264430000007,-6.958882],[107.80089650000008,-6.964832],[107.826483,-6.967236599999978],[107.82673520000009,-6.970692299999939],[107.82895210000004,-6.971972099999959],[107.83197930000006,-6.969808299999954],[107.82928770000007,-6.9668295],[107.83126660000005,-6.964466399999935],[107.83336650000007,-6.9644735],[107.83959210000006,-6.969240899999932],[107.84062970000008,-6.968412199999932],[107.84483960000006,-6.969991599999958],[107.84777910000008,-6.969679299999939],[107.85222530000004,-6.966263599999934],[107.85418930000009,-6.967617699999948],[107.86209710000008,-6.967769799999928],[107.86342630000007,-6.9651308],[107.866511,-6.965809799999931],[107.86828820000005,-6.964566599999955],[107.86837850000006,-6.962788199999977],[107.87281050000007,-6.962584299999946],[107.87399670000008,-6.963750499999946],[107.87602240000007,-6.9621628],[107.87908940000005,-6.963331],[107.88015640000003,-6.9610783],[107.88215650000006,-6.963105499999926],[107.88517010000004,-6.962265799999955],[107.88992320000006,-6.963863599999968],[107.892006,-6.959528199999966],[107.90015420000009,-6.953047599999934],[107.90877540000008,-6.953345099999979],[107.91051490000007,-6.954741299999966],[107.91466530000008,-6.952776699999959]]]},"properties":{"shapeName":"Sumedang","shapeISO":"","shapeID":"22746128B28251135128279","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[113.72796030000006,-7.250671499999953],[113.72518980000007,-7.248739099999966],[113.723782,-7.249271499999963],[113.72504430000004,-7.252229899999975],[113.72843130000001,-7.251786599999946],[113.72912050000002,-7.250744599999962],[113.72796030000006,-7.250671499999953]]],[[[113.66333750000001,-7.252461],[113.66824330000009,-7.246994099999938],[113.6633528000001,-7.251089199999967],[113.66333750000001,-7.252461]]],[[[113.70044940000002,-7.244531799999947],[113.70163410000009,-7.242471399999943],[113.69937190000007,-7.240828499999964],[113.69914690000007,-7.244774699999937],[113.70044940000002,-7.244531799999947]]],[[[113.67363720000003,-7.236879399999964],[113.67196640000009,-7.236552299999971],[113.6731794000001,-7.241674499999931],[113.67485030000012,-7.239659399999937],[113.67363720000003,-7.236879399999964]]],[[[113.76362590000008,-7.209284799999978],[113.75422650000007,-7.206247799999971],[113.74935890000006,-7.218796299999951],[113.75925430000007,-7.218452],[113.77278880000006,-7.228119899999967],[113.78446180000003,-7.230617099999961],[113.79263290000006,-7.235832699999946],[113.7964171000001,-7.235676799999965],[113.79789720000008,-7.230127299999936],[113.81253030000005,-7.220807599999944],[113.80983720000006,-7.215918099999953],[113.80380990000003,-7.214041699999939],[113.79994180000006,-7.213745599999982],[113.79564650000009,-7.216183199999932],[113.79257180000002,-7.2162252],[113.78063180000004,-7.210063],[113.76362590000008,-7.209284799999978]]],[[[114.04568460000007,-7.206438899999966],[114.04817180000009,-7.203002799999979],[114.0471189000001,-7.201620899999966],[114.0448606000001,-7.202275199999974],[114.0444639000001,-7.205046599999946],[114.04568460000007,-7.206438899999966]]],[[[113.9245069000001,-7.174322099999927],[113.922447,-7.1737718],[113.90969070000006,-7.181422199999929],[113.905525,-7.181232899999941],[113.89739210000005,-7.184194499999933],[113.88723740000012,-7.190162599999951],[113.88287330000003,-7.193775599999981],[113.88051590000009,-7.200614899999948],[113.88183580000009,-7.205210699999952],[113.88672620000011,-7.211791],[113.88967880000007,-7.212278399999946],[113.90220620000002,-7.209239],[113.90540290000001,-7.210439599999972],[113.90966010000011,-7.209658099999956],[113.9235685000001,-7.203124],[113.930557,-7.204334699999947],[113.9353559000001,-7.208645299999944],[113.9366606000001,-7.210867299999961],[113.93621040000005,-7.213607799999977],[113.94135270000004,-7.218920599999933],[113.94696790000012,-7.229845499999954],[113.955139,-7.232392699999934],[113.95622230000004,-7.230895499999974],[113.95397160000005,-7.224659899999949],[113.95043160000012,-7.221911399999954],[113.94394660000012,-7.219750399999953],[113.93955210000001,-7.2145185],[113.94120770000006,-7.203530699999931],[113.94024640000009,-7.199703599999964],[113.937393,-7.194529499999931],[113.93060280000009,-7.187427],[113.92719250000005,-7.175435499999935],[113.9245069000001,-7.174322099999927]]],[[[114.610102,-7.167438699999934],[114.61260550000009,-7.162253599999929],[114.60942180000006,-7.162510599999962],[114.60708040000009,-7.164923399999964],[114.60446780000007,-7.169110899999964],[114.60475330000008,-7.171533499999953],[114.60980730000006,-7.172789899999941],[114.61780230000011,-7.169434899999942],[114.61657450000007,-7.165080399999965],[114.61133490000009,-7.168249899999978],[114.610102,-7.167438699999934]]],[[[114.67663010000001,-7.158451199999945],[114.66731640000012,-7.158743899999934],[114.65827190000005,-7.162814399999945],[114.65597120000007,-7.165757799999938],[114.656686,-7.170057399999962],[114.66864210000006,-7.168313599999976],[114.67769190000001,-7.164889199999948],[114.67933090000008,-7.166306599999928],[114.68530840000005,-7.164405399999964],[114.68405470000005,-7.162004],[114.67663010000001,-7.158451199999945]]],[[[115.869719,-7.157463],[115.869898,-7.154925],[115.868872,-7.156442],[115.869719,-7.157463]]],[[[115.84140350000007,-7.152011499999958],[115.84077780000007,-7.150719299999935],[115.83943510000006,-7.151497],[115.84140350000007,-7.152011499999958]]],[[[115.8598290000001,-7.152214],[115.863749,-7.151205],[115.863155,-7.149451],[115.864591,-7.148141],[115.85958,-7.145107],[115.85694200000012,-7.14502],[115.85485,-7.149105],[115.8598290000001,-7.152214]]],[[[115.852752,-7.14213],[115.8505530000001,-7.142546],[115.851941,-7.147845],[115.854594,-7.145816],[115.852752,-7.14213]]],[[[115.84142120000001,-7.140993099999946],[115.84045990000004,-7.144634199999928],[115.8416959000001,-7.145929299999978],[115.84337430000005,-7.144067199999938],[115.84142120000001,-7.140993099999946]]],[[[115.84155360000011,-7.139911699999971],[115.84157650000009,-7.136843699999929],[115.83978360000003,-7.135579699999937],[115.83499240000003,-7.138125499999944],[115.8362512000001,-7.140180699999974],[115.84155360000011,-7.139911699999971]]],[[[114.77052540000011,-7.132867399999952],[114.76798480000002,-7.130168],[114.76822130000005,-7.128921],[114.76766440000006,-7.130326799999978],[114.76941160000001,-7.132831099999976],[114.77212760000009,-7.133047599999941],[114.77343230000008,-7.132337599999971],[114.77052540000011,-7.132867399999952]]],[[[114.5786634000001,-7.132290599999976],[114.575586,-7.128254],[114.5629550000001,-7.132513],[114.55288670000004,-7.131196599999953],[114.54760990000011,-7.128550399999938],[114.538921,-7.130158],[114.532817,-7.128641499999958],[114.53198,-7.129896],[114.529851,-7.129353],[114.530497,-7.131095],[114.526547,-7.133876],[114.51402030000008,-7.135776199999952],[114.5138204000001,-7.138774299999966],[114.5158080000001,-7.141778],[114.50309020000009,-7.144660499999929],[114.49842870000009,-7.141695099999936],[114.50189510000007,-7.139227],[114.49941350000006,-7.138494399999956],[114.50020020000011,-7.136641899999972],[114.48754290000011,-7.139087299999971],[114.48095360000002,-7.138238],[114.47598960000005,-7.141122699999926],[114.47496460000002,-7.147668099999976],[114.48149540000009,-7.1575814],[114.4879916000001,-7.159570799999926],[114.49652890000004,-7.158845499999927],[114.5092777000001,-7.1543027],[114.5102389000001,-7.152513099999965],[114.50559260000011,-7.153023799999971],[114.50779750000004,-7.149787499999945],[114.50510440000005,-7.146793899999977],[114.5067676000001,-7.145563699999968],[114.51546580000002,-7.143250399999943],[114.528559,-7.1436304],[114.53781030000005,-7.142031399999951],[114.54462510000008,-7.144315699999936],[114.55079260000002,-7.142849899999931],[114.55463780000002,-7.145400699999925],[114.5572648000001,-7.149379099999976],[114.5626899,-7.149188799999934],[114.56529780000005,-7.150673599999948],[114.56551860000002,-7.156515799999966],[114.57192220000002,-7.157412199999953],[114.57424460000004,-7.161124199999961],[114.5732167000001,-7.164512499999944],[114.57582460000003,-7.166187699999966],[114.57812790000003,-7.1638843],[114.58490110000002,-7.164235799999972],[114.586845,-7.162473399999953],[114.592722,-7.164333],[114.61003470000003,-7.161083599999927],[114.61142760000007,-7.158047299999964],[114.614537,-7.157211],[114.61635710000007,-7.152831899999967],[114.61363660000006,-7.148693699999967],[114.61626190000004,-7.147287799999958],[114.6125737000001,-7.147811199999978],[114.61205020000011,-7.145550699999944],[114.61535770000012,-7.142124299999978],[114.61283550000007,-7.139269],[114.60954170000002,-7.139534599999934],[114.60690470000009,-7.137221599999975],[114.60472870000001,-7.137574599999937],[114.60388870000008,-7.135200099999963],[114.60198260000004,-7.136625799999933],[114.595573,-7.13696],[114.590185,-7.132458],[114.58594320000009,-7.133524399999942],[114.5786634000001,-7.132290599999976]]],[[[114.586629,-7.128689],[114.5873150000001,-7.127246],[114.58486,-7.126208],[114.581094,-7.127638],[114.579649,-7.129708],[114.586629,-7.128689]]],[[[115.76589600000011,-7.120273],[115.76243000000011,-7.121955],[115.762961,-7.125476],[115.760616,-7.127593],[115.760608,-7.129387],[115.7653600000001,-7.128323],[115.767027,-7.130495],[115.771003,-7.128093],[115.770809,-7.123847],[115.769109,-7.124233],[115.76823700000011,-7.121012],[115.76589600000011,-7.120273]]],[[[114.78127710000001,-7.117276299999958],[114.77936210000007,-7.1145288],[114.77325860000008,-7.123348],[114.77398340000002,-7.1263978],[114.77214480000009,-7.1285941],[114.77495240000007,-7.133397799999955],[114.77923250000003,-7.130633099999955],[114.784161,-7.120083899999941],[114.78127710000001,-7.117276299999958]]],[[[115.759674,-7.11503],[115.756116,-7.115021],[115.757457,-7.11796],[115.760127,-7.118602],[115.764163,-7.116041],[115.759674,-7.11503]]],[[[115.761447,-7.105853],[115.75900500000012,-7.106493],[115.75909700000011,-7.109704],[115.757271,-7.112175],[115.763752,-7.115026],[115.770259,-7.115471],[115.770439,-7.109655],[115.76497920000008,-7.108493499999952],[115.761447,-7.105853]]],[[[114.70197050000002,-7.106683499999974],[114.69934520000004,-7.104427699999974],[114.6957284,-7.106831],[114.69940150000002,-7.109028499999965],[114.70197050000002,-7.106683499999974]]],[[[114.79500120000012,-7.103933099999949],[114.79268890000003,-7.104665],[114.79420570000002,-7.107974099999979],[114.79599530000007,-7.104918],[114.79500120000012,-7.103933099999949]]],[[[115.905838,-7.105363],[115.906786,-7.102596],[115.90071300000011,-7.105277],[115.896007,-7.105577],[115.89130300000011,-7.11004],[115.8980590000001,-7.113355],[115.899119,-7.116338],[115.896539,-7.126106],[115.8964,-7.13244],[115.89224,-7.138339],[115.890288,-7.136609],[115.889979,-7.132101],[115.893246,-7.126165],[115.88982260000012,-7.124448899999948],[115.88976900000011,-7.121892],[115.888118,-7.120291],[115.87816,-7.128219],[115.870478,-7.131728],[115.870037,-7.136739],[115.873444,-7.151506],[115.87991000000011,-7.159862],[115.8829280000001,-7.160679],[115.88727,-7.154132],[115.887628,-7.146886],[115.88995000000011,-7.146627],[115.892423,-7.149914],[115.8898,-7.157315],[115.890797,-7.158654],[115.892794,-7.15767],[115.893019,-7.158898],[115.890384,-7.162038],[115.88745,-7.161165],[115.885199,-7.164476],[115.876613,-7.160518],[115.87228,-7.156679],[115.869489,-7.158256],[115.869028,-7.163222],[115.86579,-7.162514],[115.860573,-7.158138],[115.857702,-7.160087],[115.8536808,-7.159895],[115.84998050000002,-7.162621099999967],[115.84319030000006,-7.162682199999949],[115.83705630000009,-7.156676399999981],[115.8377200000001,-7.151549],[115.83556090000002,-7.148920199999964],[115.82051580000007,-7.148018],[115.81458010000006,-7.149537699999939],[115.81305420000001,-7.152375399999926],[115.80893440000011,-7.153872199999967],[115.80853760000002,-7.146688599999948],[115.80462370000009,-7.144749399999966],[115.80210610000006,-7.147909799999979],[115.79837530000009,-7.143467199999975],[115.79787170000009,-7.140854599999955],[115.793584,-7.138825199999928],[115.79368320000003,-7.134272799999962],[115.79873390000012,-7.1281712],[115.79799380000009,-7.126962399999968],[115.795911,-7.127327199999968],[115.79660530000001,-7.1256559],[115.79835240000011,-7.125616299999933],[115.79698670000005,-7.121022899999957],[115.78284950000011,-7.109490599999958],[115.77900430000011,-7.110504399999968],[115.77895080000008,-7.113320599999952],[115.7767536,-7.116730399999938],[115.78052250000007,-7.119379299999935],[115.78009530000008,-7.1237271],[115.77726480000001,-7.124602599999946],[115.77893560000007,-7.128983199999936],[115.7741367000001,-7.131218199999978],[115.7714588,-7.136696599999937],[115.77486150000004,-7.142504],[115.77708160000009,-7.142486799999972],[115.77424350000001,-7.144163399999968],[115.77538790000006,-7.150004099999933],[115.77252690000012,-7.148285199999975],[115.77210730000002,-7.149574099999938],[115.76990240000009,-7.148672799999929],[115.77172580000001,-7.146755],[115.77198520000002,-7.142865899999947],[115.76968880000004,-7.141115899999932],[115.76740760000007,-7.133084599999961],[115.76293680000003,-7.1293781],[115.76069370000005,-7.130757099999926],[115.76170840000009,-7.133294899999953],[115.76083110000002,-7.135007599999938],[115.75748180000005,-7.1364091],[115.754491,-7.140877499999931],[115.75225560000001,-7.141311899999948],[115.75421640000002,-7.143937899999969],[115.75337710000008,-7.145859499999972],[115.74770850000004,-7.150576899999976],[115.74220770000011,-7.152016],[115.741605,-7.154598499999963],[115.74718210000003,-7.164429499999926],[115.75701630000003,-7.173207499999933],[115.7717487000001,-7.180425899999932],[115.79379,-7.186563699999965],[115.81471740000006,-7.196001699999954],[115.82047000000011,-7.198893699999928],[115.82806120000009,-7.205981899999927],[115.8366138,-7.206678],[115.879649,-7.202076],[115.885012,-7.200208],[115.893875,-7.193376],[115.89776480000012,-7.182578],[115.90167870000005,-7.148833699999955],[115.902071,-7.123155],[115.905838,-7.105363]]],[[[114.68711480000002,-7.098955],[114.68711480000002,-7.095814099999927],[114.6843070000001,-7.093648799999926],[114.67640740000002,-7.099316],[114.67543160000002,-7.098693199999957],[114.677743,-7.100220599999943],[114.68279350000012,-7.101109199999939],[114.68711480000002,-7.098955]]],[[[115.76182190000009,-7.084660399999962],[115.75720620000004,-7.085471499999926],[115.75695440000004,-7.0870431],[115.7550318000001,-7.086475699999937],[115.7535898000001,-7.0896586],[115.75419260000001,-7.095390699999939],[115.74872990000006,-7.100316899999939],[115.74959970000009,-7.103679],[115.755398,-7.107984899999963],[115.75751140000011,-7.098554499999977],[115.76375980000012,-7.097766199999967],[115.76620890000004,-7.092116199999964],[115.76593420000006,-7.088981499999932],[115.76182190000009,-7.084660399999962]]],[[[115.19988500000011,-7.0831735],[115.19668160000003,-7.081947],[115.1930178,-7.085864],[115.1936816000001,-7.09163],[115.1971079000001,-7.091563599999972],[115.2004382,-7.088321899999926],[115.2012734000001,-7.0853549],[115.19988500000011,-7.0831735]]],[[[114.648755,-7.088091199999951],[114.65080130000001,-7.081143199999929],[114.64834570000005,-7.076479499999948],[114.64549040000009,-7.074880499999949],[114.64379,-7.079213599999946],[114.6440189000001,-7.085003899999947],[114.648755,-7.088091199999951]]],[[[114.576746,-7.075580599999967],[114.5795941,-7.073568],[114.5786237000001,-7.070954899999947],[114.57450770000003,-7.075079099999925],[114.57098610000003,-7.075864299999978],[114.576746,-7.075580599999967]]],[[[115.6957298000001,-7.059086299999933],[115.68629990000011,-7.056330599999967],[115.68445350000002,-7.063223299999947],[115.68995430000007,-7.070369699999958],[115.69608080000012,-7.073037499999941],[115.70541150000008,-7.073850099999959],[115.71223220000002,-7.069312499999967],[115.7126823000001,-7.063070699999969],[115.7105156,-7.059272699999951],[115.70407630000011,-7.05797],[115.6957298000001,-7.059086299999933]]],[[[113.95310190000009,-7.057227599999976],[113.95127080000009,-7.055244899999934],[113.947212,-7.0565281],[113.94598370000006,-7.059079599999961],[113.93861850000008,-7.063644799999963],[113.93646980000005,-7.068142399999942],[113.93637060000003,-7.074335099999928],[113.94200120000005,-7.083885199999941],[113.9415586,-7.089633899999967],[113.94493080000007,-7.087908199999958],[113.94911170000012,-7.088366],[113.95761850000008,-7.092653199999972],[113.96098310000002,-7.096593299999938],[113.96974160000002,-7.097620899999981],[113.97132850000003,-7.099606899999969],[113.97604350000006,-7.100183399999935],[113.98680860000002,-7.106255],[114.0075068000001,-7.10632],[114.01237190000006,-7.105133],[114.046691,-7.113],[114.06472090000011,-7.110339],[114.064133,-7.102089],[114.059947,-7.095903],[114.05593580000004,-7.083343],[114.0537240000001,-7.078583],[114.048967,-7.074399],[114.01413410000009,-7.069684],[114.01030120000007,-7.071373],[113.97849250000002,-7.072503],[113.96800210000004,-7.069965799999977],[113.95919780000008,-7.065580299999965],[113.95405560000006,-7.060966],[113.95310190000009,-7.057227599999976]]],[[[114.33530960000007,-7.056693499999938],[114.329004,-7.0551706],[114.30429570000001,-7.059291799999926],[114.29310270000008,-7.0653024],[114.27511390000006,-7.083219699999972],[114.2728297000001,-7.088430699999947],[114.27098880000005,-7.093987599999934],[114.27523570000005,-7.108997899999963],[114.2858572,-7.124604899999952],[114.28619040000001,-7.127365099999963],[114.295248,-7.143353299999944],[114.31250720000003,-7.159487799999965],[114.3271171,-7.165769599999976],[114.32878270000003,-7.165055799999948],[114.33606390000011,-7.166959399999939],[114.36418910000009,-7.179427699999962],[114.38141550000012,-7.180088399999931],[114.38369120000004,-7.181332899999973],[114.38617840000006,-7.180524699999978],[114.38666910000006,-7.181928699999958],[114.40505760000008,-7.170907],[114.4072847000001,-7.165253399999926],[114.39820470000006,-7.160799],[114.39614890000007,-7.157829499999934],[114.39386460000003,-7.152118799999926],[114.3938075000001,-7.141953699999931],[114.39152320000005,-7.1325882],[114.38038730000005,-7.1209954],[114.37776040000006,-7.115284699999961],[114.37604720000002,-7.115684499999929],[114.37451460000011,-7.1099811],[114.37533810000002,-7.105498],[114.37408170000003,-7.094704799999931],[114.370484,-7.086881099999971],[114.35038230000009,-7.069806099999937],[114.34627060000003,-7.067978599999947],[114.34603140000002,-7.065811599999961],[114.34054910000009,-7.060024699999929],[114.33530960000007,-7.056693499999938]]],[[[115.80106710000007,-7.059542399999941],[115.80411120000008,-7.051209599999936],[115.80034230000001,-7.057112399999937],[115.80106710000007,-7.059542399999941]]],[[[115.6631718000001,-7.044131199999981],[115.66201970000009,-7.041230699999971],[115.65995980000002,-7.040465299999937],[115.65012550000006,-7.044392099999925],[115.64882090000003,-7.046475899999962],[115.64870650000012,-7.0549764],[115.64999580000006,-7.060132499999952],[115.65381050000008,-7.064245199999959],[115.66227920000006,-7.066470599999946],[115.66835980000008,-7.066448599999944],[115.67554670000004,-7.061980199999937],[115.67001530000005,-7.058185],[115.67012220000004,-7.056001099999946],[115.6631718000001,-7.044131199999981]]],[[[115.63666050000006,-7.041615499999978],[115.63664520000009,-7.036370699999964],[115.63194550000003,-7.033963699999958],[115.62710080000011,-7.037258099999974],[115.62713130000009,-7.042226299999925],[115.61809810000011,-7.040028099999972],[115.61356630000012,-7.037237199999936],[115.60959900000012,-7.037708299999963],[115.60663880000004,-7.039920799999948],[115.604968,-7.037813699999958],[115.60051240000007,-7.036592],[115.59825410000008,-7.038712],[115.59657560000005,-7.038163199999929],[115.59566770000004,-7.040349],[115.6002453000001,-7.043653499999948],[115.60094730000003,-7.0473399],[115.59977070000002,-7.050876599999981],[115.59653390000005,-7.050760799999978],[115.59634920000008,-7.053479899999957],[115.60196110000004,-7.054252899999938],[115.60008650000009,-7.051151799999957],[115.60344210000005,-7.052493099999936],[115.6069821000001,-7.048506699999962],[115.61488610000004,-7.049521399999946],[115.61825070000009,-7.047138199999949],[115.61774720000005,-7.050023099999976],[115.61332980000009,-7.055384599999968],[115.6139554,-7.05726],[115.616824,-7.058624299999963],[115.61570250000011,-7.062492799999973],[115.62146270000005,-7.064650099999938],[115.63059510000005,-7.064816399999927],[115.63670620000005,-7.059210699999937],[115.63649260000011,-7.057652399999938],[115.63392910000005,-7.056431799999928],[115.63666050000006,-7.041615499999978]]],[[[115.8132283000001,-7.038373699999966],[115.81660050000005,-7.033694499999967],[115.816303,-7.031902099999968],[115.8129384,-7.031986],[115.81086320000009,-7.035299599999973],[115.81062670000006,-7.037271799999928],[115.8132283000001,-7.038373699999966]]],[[[115.69748530000004,-7.026989299999968],[115.69867550000004,-7.024168399999951],[115.69588310000006,-7.020186799999976],[115.69350270000007,-7.0197243],[115.68996270000002,-7.023099299999956],[115.69200740000008,-7.025263199999927],[115.69748530000004,-7.026989299999968]]],[[[115.691935,-7.009266],[115.69002100000012,-7.009863],[115.691723,-7.010813],[115.691935,-7.009266]]],[[[115.54859840000006,-7.008480499999962],[115.54408950000004,-7.007312299999967],[115.54373850000002,-7.0092912],[115.54064860000005,-7.0115304],[115.53968730000008,-7.022687899999937],[115.541648,-7.022491499999944],[115.54176250000012,-7.025347699999941],[115.54871290000006,-7.023812799999973],[115.55163490000007,-7.018698699999959],[115.55538090000005,-7.015651199999979],[115.5547706000001,-7.009967299999971],[115.54859840000006,-7.008480499999962]]],[[[115.66192860000001,-7.010993699999972],[115.663897,-7.009283],[115.661992,-7.007149],[115.66034,-7.008564],[115.66192860000001,-7.010993699999972]]],[[[115.59645120000005,-7.0050721],[115.59805860000006,-7.004481299999952],[115.59862270000008,-7.001754],[115.59492420000004,-7.003857899999957],[115.59645120000005,-7.0050721]]],[[[115.70601640000007,-7.010842399999945],[115.7116698000001,-7.004612],[115.70858750000002,-7.000544099999956],[115.70573410000009,-7.001194],[115.70444480000003,-7.003851899999972],[115.704048,-7.008700399999952],[115.70601640000007,-7.010842399999945]]],[[[115.60472170000003,-7.000557],[115.6021713,-7.000606],[115.60167790000003,-7.001987099999951],[115.60530680000011,-7.002457299999946],[115.60472170000003,-7.000557]]],[[[115.30979060000004,-7.006239599999958],[115.31221720000008,-7.003235399999937],[115.31021840000005,-6.998809599999959],[115.306792,-6.998381299999949],[115.30522150000002,-7.000237199999958],[115.30583270000011,-7.005917599999975],[115.30979060000004,-7.006239599999958]]],[[[114.48725680000007,-6.999633699999947],[114.49078930000007,-6.999352199999976],[114.49629740000012,-6.991425899999967],[114.49228210000001,-6.985603699999956],[114.48970340000005,-6.992884099999969],[114.48519560000011,-6.999657],[114.48725680000007,-6.999633699999947]]],[[[115.584776,-6.986014],[115.582439,-6.985015],[115.578787,-6.985804],[115.579511,-6.989397],[115.577852,-6.991347],[115.583224,-6.992216],[115.585133,-6.995521],[115.587597,-6.989721],[115.584776,-6.986014]]],[[[115.54572980000012,-6.984792699999957],[115.5462715000001,-6.981581199999937],[115.54489810000007,-6.979212799999971],[115.5432197,-6.979014899999981],[115.53829870000004,-6.9835162],[115.53813090000006,-6.985469399999943],[115.53224860000012,-6.985922799999969],[115.52934180000011,-6.987627099999941],[115.52728190000005,-6.993894099999977],[115.51945420000004,-6.995302199999969],[115.517234,-6.997339299999965],[115.51972880000005,-7.004214799999943],[115.5176689000001,-7.000011499999971],[115.51564710000002,-7.003430899999955],[115.51179420000005,-7.004980099999955],[115.50872720000007,-7.010728899999947],[115.50465310000004,-7.0117064],[115.51719580000008,-7.015175399999976],[115.52310860000011,-7.022135799999944],[115.52405470000008,-7.025345799999968],[115.52886120000005,-7.029368],[115.5289527000001,-7.0315748],[115.53097450000007,-7.030190499999946],[115.53412550000007,-7.030835199999956],[115.53615490000004,-7.0226288],[115.5387641000001,-7.020092499999976],[115.53778760000012,-7.019510699999955],[115.53890910000007,-7.009756099999947],[115.5368949000001,-7.007066799999961],[115.5390159000001,-7.005765899999972],[115.541999,-7.006461099999967],[115.54237280000007,-7.007047199999931],[115.53998480000007,-7.007964199999947],[115.541587,-7.008695099999954],[115.54341040000008,-7.007320899999968],[115.5427314000001,-7.006291399999952],[115.53839030000006,-7.004620099999954],[115.53649060000009,-7.000052899999957],[115.5391227,-6.995167699999968],[115.53874120000012,-6.992150299999935],[115.54083170000001,-6.991325399999937],[115.54096140000001,-6.9877],[115.54225080000003,-6.988464799999974],[115.54277720000005,-6.995583099999976],[115.54528730000004,-6.996269199999972],[115.54572980000012,-6.984792699999957]]],[[[115.29343080000001,-6.976429199999927],[115.29197620000002,-6.977295399999946],[115.29609460000006,-6.977725499999963],[115.29343080000001,-6.976429199999927]]],[[[115.46700640000006,-6.977815899999939],[115.46653930000002,-6.975036099999954],[115.46236220000003,-6.972260099999971],[115.46154320000005,-6.974038199999939],[115.46488060000001,-6.9761135],[115.4645637000001,-6.977697899999953],[115.46055720000004,-6.978494599999976],[115.45787730000006,-6.980968899999937],[115.45629270000006,-6.980319599999973],[115.45525590000011,-6.976954499999977],[115.45186300000012,-6.975823299999945],[115.44929220000006,-6.977251199999955],[115.45180960000005,-6.982906699999944],[115.4492983,-6.981286099999977],[115.4303413,-6.978801699999963],[115.42571080000005,-6.985053599999958],[115.42957380000007,-6.9951565],[115.43690520000007,-7.000135499999942],[115.44573990000004,-7.001907899999935],[115.4472727000001,-7.003719599999954],[115.46232980000002,-7.005029799999932],[115.46339360000002,-7.004083199999968],[115.467027,-7.006990299999927],[115.47633170000006,-7.005859299999941],[115.46661490000008,-6.995242399999938],[115.46392750000007,-6.9895789],[115.46700640000006,-6.977815899999939]]],[[[115.25431760000004,-6.9688748],[115.24438420000001,-6.970559499999979],[115.2473063000001,-6.976773699999967],[115.24999940000009,-6.976960099999928],[115.25487460000011,-6.9817471],[115.26177160000009,-6.985070599999972],[115.26312960000007,-6.975601599999948],[115.25993290000008,-6.971927499999936],[115.25431760000004,-6.9688748]]],[[[115.7566915000001,-6.9683975],[115.75595140000007,-6.967328],[115.75808,-6.965113599999938],[115.753304,-6.968789],[115.75061850000009,-6.968319399999928],[115.74792530000002,-6.970151399999963],[115.75282340000001,-6.972204599999941],[115.7555013000001,-6.97517],[115.7578969000001,-6.975079],[115.76162770000008,-6.969399799999962],[115.76104790000011,-6.966259899999955],[115.75950670000009,-6.9657482],[115.7588201000001,-6.968114299999968],[115.7566915000001,-6.9683975]]],[[[114.18235750000008,-7.002982],[114.1840208000001,-6.989966199999969],[114.18724040000006,-6.9800423],[114.1872098,-6.974077099999931],[114.18215920000011,-6.967105199999935],[114.1746061,-6.964856499999939],[114.1710203,-6.966560199999947],[114.16699960000005,-6.973761899999943],[114.16429110000001,-6.989361199999962],[114.16088080000009,-6.998466299999961],[114.165405,-7.001931099999979],[114.17627690000006,-7.005062899999928],[114.17945840000004,-7.004956599999957],[114.18235750000008,-7.002982]]],[[[115.32411700000011,-6.970616799999959],[115.32564830000001,-6.964340399999969],[115.3226489000001,-6.967386799999929],[115.32227360000002,-6.970236],[115.32411700000011,-6.970616799999959]]],[[[115.4989806000001,-6.9661805],[115.50137710000001,-6.964278299999933],[115.50066150000009,-6.962858399999959],[115.49627480000004,-6.964908199999968],[115.4989806000001,-6.9661805]]],[[[114.4341763000001,-6.979757],[114.43756470000005,-6.968830299999979],[114.43613850000008,-6.963569099999972],[114.43417770000008,-6.962226399999963],[114.43088380000006,-6.964284899999939],[114.42801510000004,-6.9724454],[114.43071340000006,-6.981102199999953],[114.43207930000005,-6.981583499999942],[114.4341763000001,-6.979757]]],[[[115.55650010000011,-6.963017399999956],[115.5558089000001,-6.962138099999947],[115.553953,-6.963127499999928],[115.55228350000004,-6.968338499999959],[115.55544970000005,-6.967585099999951],[115.55650010000011,-6.963017399999956]]],[[[115.46614510000006,-6.965031799999963],[115.46838070000001,-6.9633839],[115.46743470000001,-6.9617139],[115.46350530000007,-6.963590499999952],[115.46614510000006,-6.965031799999963]]],[[[115.41594630000009,-6.984934],[115.41748740000003,-6.980801299999939],[115.41427550000003,-6.974179],[115.41812830000003,-6.966006],[115.41706020000004,-6.960944299999937],[115.41511470000012,-6.959902],[115.41137630000003,-6.964969399999973],[115.41246730000012,-6.974233799999979],[115.40895010000008,-6.979065099999957],[115.41183410000008,-6.984480599999927],[115.41594630000009,-6.984934]]],[[[115.30682880000006,-6.960048499999971],[115.30575310000006,-6.960841699999946],[115.30662510000002,-6.963139499999954],[115.30962040000009,-6.964057099999934],[115.30682880000006,-6.960048499999971]]],[[[115.2595285000001,-6.969815199999971],[115.26085610000007,-6.967210699999953],[115.25493560000007,-6.961170599999946],[115.24968660000002,-6.960375699999929],[115.24912970000003,-6.961833899999931],[115.25179230000003,-6.964694899999927],[115.2595285000001,-6.969815199999971]]],[[[115.52562640000008,-6.959481299999936],[115.52568270000006,-6.958194],[115.5244973,-6.9583822],[115.52562640000008,-6.959481299999936]]],[[[115.43761040000004,-6.959365899999966],[115.4377455,-6.956943199999955],[115.436346,-6.958304],[115.43761040000004,-6.959365899999966]]],[[[115.50738830000012,-6.957117499999981],[115.50400470000011,-6.957143899999949],[115.50319600000012,-6.958414599999969],[115.50768330000005,-6.959464799999978],[115.50738830000012,-6.957117499999981]]],[[[115.5004990000001,-6.958638],[115.50284910000005,-6.956563499999959],[115.49838190000003,-6.954193199999963],[115.49771050000004,-6.957129499999951],[115.5004990000001,-6.958638]]],[[[115.52368710000007,-6.952931799999931],[115.51831750000008,-6.960425899999962],[115.52085040000009,-6.960419699999932],[115.5252398,-6.957303099999933],[115.52489650000007,-6.953605],[115.52368710000007,-6.952931799999931]]],[[[115.503753,-6.950937299999964],[115.50195420000011,-6.954245699999944],[115.50480320000008,-6.954106299999978],[115.50408880000009,-6.952902499999936],[115.50525790000006,-6.951904699999943],[115.503753,-6.950937299999964]]],[[[115.91447970000002,-6.950013499999955],[115.9052392000001,-6.950142899999946],[115.90131470000006,-6.9519105],[115.90093460000003,-6.957196899999929],[115.90286430000003,-6.961444],[115.91384110000001,-6.962260199999946],[115.92587070000002,-6.959313699999939],[115.928594,-6.960238599999968],[115.927582,-6.964094799999941],[115.92898490000005,-6.960404599999947],[115.933529,-6.962135299999943],[115.93572110000002,-6.961338499999954],[115.93523980000009,-6.958170799999948],[115.9316189000001,-6.954872099999932],[115.92391840000005,-6.951305899999966],[115.91447970000002,-6.950013499999955]]],[[[115.50761090000003,-6.952393],[115.50913040000012,-6.950665199999946],[115.50794150000002,-6.948869299999956],[115.50554590000002,-6.950652199999979],[115.50761090000003,-6.952393]]],[[[115.41675640000005,-6.947891099999936],[115.4160379000001,-6.946625899999958],[115.41365750000011,-6.948615299999972],[115.41396570000006,-6.952301499999976],[115.416468,-6.9540313],[115.41761710000003,-6.951393799999948],[115.41551130000005,-6.950233399999945],[115.41675640000005,-6.947891099999936]]],[[[115.51765610000007,-6.946846299999947],[115.5098183,-6.947214199999962],[115.50887990000001,-6.948750599999926],[115.5124886000001,-6.952065],[115.51479070000005,-6.9493625],[115.51811910000004,-6.952646299999969],[115.52273250000007,-6.9502488],[115.51992730000006,-6.947038199999952],[115.51765610000007,-6.946846299999947]]],[[[115.46256030000006,-6.946797499999946],[115.4610742000001,-6.9459673],[115.45798750000006,-6.948331399999972],[115.46182550000003,-6.948996299999976],[115.46256030000006,-6.946797499999946]]],[[[115.48828060000005,-6.943308],[115.48686150000003,-6.941953699999942],[115.48602970000002,-6.944293099999925],[115.4896652000001,-6.946680699999945],[115.4899759000001,-6.950062199999934],[115.49496450000004,-6.950923499999931],[115.49884610000004,-6.953553099999965],[115.49291920000007,-6.943470099999956],[115.49038630000007,-6.9444733],[115.48828060000005,-6.943308]]],[[[115.474128,-6.941944199999966],[115.47252590000005,-6.941776399999981],[115.47347450000007,-6.945728299999928],[115.48153940000009,-6.944792499999949],[115.48120810000012,-6.9424773],[115.47719510000002,-6.941235199999937],[115.47640160000003,-6.942732],[115.474128,-6.941944199999966]]],[[[115.587976,-6.940274],[115.581696,-6.940027],[115.58222100000012,-6.944418],[115.57789,-6.941022],[115.57666,-6.941681],[115.576605,-6.945243],[115.572201,-6.945411],[115.573906,-6.95554],[115.577292,-6.959865],[115.57632,-6.962043],[115.572329,-6.960837],[115.570417,-6.955739],[115.565193,-6.960523],[115.572468,-6.975368],[115.584006,-6.974278],[115.591646,-6.978212],[115.59164,-6.983973],[115.589214,-6.986943],[115.592507,-6.990677],[115.589907,-6.993084],[115.592344,-6.992777],[115.5973550000001,-6.995504],[115.597862,-6.992409],[115.600721,-6.992616],[115.606799,-6.99573],[115.608736,-6.998899],[115.61524940000004,-7.003040099999964],[115.61714110000003,-7.001814099999933],[115.6194547,-7.003232],[115.62060480000002,-7.0015001],[115.62384080000004,-7.000873099999978],[115.631996,-7.005511],[115.6354950000001,-7.003397],[115.64080700000011,-6.996796],[115.648245,-6.997354],[115.668107,-7.004847],[115.678398,-7.013199],[115.681899,-7.0145],[115.68524800000012,-7.012821],[115.683832,-7.000517],[115.675786,-6.99506],[115.675918,-6.99206],[115.673853,-6.989261],[115.670926,-6.987809],[115.667997,-6.988527],[115.66548100000011,-6.985098],[115.65539400000011,-6.9797],[115.652843,-6.975147],[115.647191,-6.972474],[115.64607400000011,-6.969248],[115.644759,-6.969981],[115.632777,-6.964809],[115.60673,-6.950166],[115.602993,-6.949842],[115.587976,-6.940274]]],[[[115.87559420000002,-6.938837299999932],[115.87404230000004,-6.939135599999929],[115.87118080000005,-6.947283699999957],[115.86748570000009,-6.951509699999974],[115.86918450000007,-6.956518],[115.86873920000005,-6.961460299999942],[115.87458370000002,-6.961527],[115.87871460000008,-6.959439499999974],[115.88398460000008,-6.950690299999962],[115.88120570000001,-6.944976499999939],[115.87559420000002,-6.938837299999932]]],[[[115.3871501000001,-6.939309799999933],[115.387598,-6.937514699999952],[115.38504220000004,-6.937111399999935],[115.38432390000003,-6.940013199999953],[115.3871501000001,-6.939309799999933]]],[[[115.79111750000004,-6.935504799999933],[115.78874470000005,-6.935791299999948],[115.77870440000004,-6.961201499999959],[115.78496060000009,-6.962737899999979],[115.78901180000003,-6.961939699999959],[115.79453540000009,-6.9561928],[115.7966411000001,-6.9455985],[115.79470330000004,-6.937508399999956],[115.7939785000001,-6.941030799999965],[115.78942370000004,-6.936987299999942],[115.79111750000004,-6.935504799999933]]],[[[115.36077850000004,-6.936871],[115.36111420000009,-6.935652699999935],[115.35904660000006,-6.935072799999944],[115.36077850000004,-6.936871]]],[[[115.6375862000001,-6.937674399999935],[115.63653190000002,-6.933119],[115.63533010000003,-6.935936399999946],[115.6375862000001,-6.937674399999935]]],[[[115.38408330000004,-6.934288799999933],[115.384964,-6.931918199999927],[115.3835011000001,-6.932726],[115.38408330000004,-6.934288799999933]]],[[[116.25339930000007,-6.928397399999938],[116.25187580000011,-6.928182899999968],[116.25202280000008,-6.929992499999969],[116.2521,-6.9285826],[116.25577120000003,-6.929187299999967],[116.25926920000006,-6.931306599999971],[116.2603937,-6.931108699999925],[116.26046670000005,-6.932331699999963],[116.26511550000009,-6.934886699999936],[116.25340950000009,-6.930343799999946],[116.24382120000007,-6.936103599999967],[116.23681370000008,-6.937578],[116.23469050000006,-6.942952799999944],[116.23559880000005,-6.946113599999933],[116.24607910000009,-6.949869699999965],[116.25403890000007,-6.949735],[116.26372440000011,-6.946034699999927],[116.26667180000004,-6.943573499999957],[116.2681166000001,-6.9390473],[116.27015110000002,-6.939973799999962],[116.26951730000008,-6.937888899999962],[116.26245050000011,-6.931674699999974],[116.25645180000004,-6.928867],[116.25339930000007,-6.928397399999938]]],[[[115.74634390000006,-6.935766],[115.7488234000001,-6.933083299999964],[115.748091,-6.928177199999936],[115.74696950000009,-6.9335945],[115.74494770000001,-6.935776499999974],[115.74634390000006,-6.935766]]],[[[115.37414390000004,-6.930999299999939],[115.37518910000006,-6.929893],[115.37189320000004,-6.928002799999945],[115.37135150000006,-6.929065199999968],[115.37414390000004,-6.930999299999939]]],[[[113.60221110000009,-7.128500699999961],[113.60698330000002,-7.126242199999979],[113.61989580000011,-7.125968099999966],[113.634133,-7.123410699999965],[113.63979610000001,-7.124243499999977],[113.64190660000008,-7.128415599999926],[113.644555,-7.129787599999929],[113.64806360000011,-7.126877799999932],[113.65412050000009,-7.127075],[113.66570260000003,-7.115671199999952],[113.67060060000006,-7.114202199999966],[113.67293530000006,-7.110734099999945],[113.683859,-7.108586599999967],[113.69183490000012,-7.110937499999977],[113.71568660000003,-7.112355699999966],[113.72408140000005,-7.116476899999952],[113.73838790000002,-7.1151349],[113.748447,-7.116210399999943],[113.75175930000012,-7.118085399999927],[113.75124530000005,-7.119113399999947],[113.76940530000002,-7.121707],[113.7704642000001,-7.1235035],[113.77841160000003,-7.123313099999962],[113.78500270000006,-7.125371399999949],[113.79626950000011,-7.124871699999971],[113.79969590000007,-7.127203499999951],[113.8112006,-7.128405199999975],[113.816138,-7.133271199999967],[113.82705670000007,-7.133524299999976],[113.83075970000004,-7.132259899999951],[113.85717180000006,-7.134651299999973],[113.86059820000003,-7.133532899999977],[113.8851208000001,-7.134228199999939],[113.8918026,-7.133003899999949],[113.89319590000002,-7.131344299999967],[113.89212380000004,-7.128397],[113.89284490000011,-7.1247444],[113.89486490000002,-7.122771899999975],[113.8926848000001,-7.121862399999941],[113.89015940000002,-7.116377799999952],[113.88866530000007,-7.1157585],[113.89082460000009,-7.111614699999961],[113.88756950000004,-7.105375699999968],[113.88851180000006,-7.104247799999939],[113.88516980000009,-7.104255199999955],[113.88370490000011,-7.101654],[113.87619760000007,-7.100641199999927],[113.870849,-7.096722799999952],[113.870165,-7.094789499999933],[113.87640510000006,-7.078955399999927],[113.89008220000005,-7.062865399999964],[113.90675750000003,-7.047532199999978],[113.9165799000001,-7.042849399999966],[113.92045570000005,-7.0443792],[113.92106280000007,-7.043177799999967],[113.93158480000011,-7.049373899999978],[113.94145450000008,-7.057455299999958],[113.94365730000004,-7.057115099999976],[113.94747140000004,-7.0531797],[113.94838690000006,-7.049209099999928],[113.9466801000001,-7.044300899999939],[113.92663180000011,-7.035217899999964],[113.9207851000001,-7.031017799999972],[113.92125560000011,-7.023975699999937],[113.92636180000011,-7.018743699999959],[113.93458460000011,-7.019938599999932],[113.93436660000009,-7.021095099999968],[113.93932040000004,-7.023307],[113.93863510000006,-7.0244491],[113.94134440000005,-7.026774399999965],[113.94529260000002,-7.027406499999927],[113.93798120000008,-7.033810299999971],[113.94464090000008,-7.038440399999956],[113.94880970000008,-7.034119299999929],[113.95026590000009,-7.034642699999949],[113.94690140000012,-7.042109499999981],[113.9493427000001,-7.040296299999966],[113.95690700000011,-7.040363599999978],[113.96007650000001,-7.038511699999958],[113.96167070000001,-7.040700799999968],[113.96615770000005,-7.0379485],[113.97560840000006,-7.021165499999938],[113.98889770000005,-7.008233099999927],[113.99275240000009,-7.007079099999942],[113.99507240000003,-7.007400299999972],[113.99531030000003,-7.008970699999963],[114.00185370000008,-7.0055617],[114.0123377000001,-7.0053349],[114.015136,-7.0071243],[114.02288350000003,-7.006210599999974],[114.03211580000004,-7.009027799999956],[114.04306130000009,-7.007790499999942],[114.05985080000005,-7.003031599999929],[114.09348450000005,-6.979783099999963],[114.10533880000003,-6.979568399999948],[114.11396450000007,-6.982364],[114.12047550000011,-6.980512499999975],[114.12480140000002,-6.977566099999933],[114.11978120000003,-6.969821799999977],[114.10662820000005,-6.941477199999952],[114.09403070000008,-6.9305662],[114.02177410000002,-6.898983399999963],[114.0005847000001,-6.886711699999978],[113.98002520000011,-6.880285],[113.97606610000003,-6.876854199999968],[113.96736640000006,-6.873222799999951],[113.95449830000007,-6.871757],[113.94389540000009,-6.868216399999937],[113.93824180000001,-6.8685591],[113.93508130000009,-6.8668928],[113.92139410000004,-6.866033099999981],[113.914459,-6.863842],[113.89976480000007,-6.864224399999955],[113.89197520000005,-6.866466],[113.8860853000001,-6.865839499999936],[113.8757551000001,-6.868133499999942],[113.87088760000006,-6.871173399999975],[113.85385310000004,-6.872111],[113.79492650000009,-6.885786899999971],[113.77215400000011,-6.883049299999925],[113.76393310000003,-6.885680099999945],[113.74508650000007,-6.883936499999948],[113.73941020000007,-6.884238299999936],[113.73240260000011,-6.887490599999978],[113.72171880000008,-6.887419299999976],[113.68191120000006,-6.882160899999974],[113.6687558000001,-6.882915],[113.65623610000011,-6.886111],[113.6554628,-6.884047599999974],[113.65388280000002,-6.887036199999955],[113.63953090000007,-6.887704699999972],[113.63780210000004,-6.892934],[113.63922120000007,-6.9006091],[113.63566590000005,-6.914108799999951],[113.64156340000011,-6.916073899999958],[113.64196,-6.9175669],[113.6426239000001,-6.916271299999948],[113.64733890000002,-6.915761099999941],[113.64813230000004,-6.916876399999978],[113.64833620000002,-6.915136899999936],[113.64982530000009,-6.915458899999976],[113.64995570000008,-6.919177599999955],[113.64584350000007,-6.925456199999928],[113.64397430000008,-6.925178199999948],[113.64346310000008,-6.927083599999946],[113.63999180000008,-6.928086399999927],[113.63688660000003,-6.938670699999932],[113.6319046000001,-6.9383479],[113.63288120000004,-6.943264099999965],[113.62725830000011,-6.951649299999929],[113.62638860000004,-6.956313699999953],[113.62754820000009,-6.961387699999932],[113.62574770000003,-6.966025],[113.61344150000002,-6.968589899999927],[113.61370850000003,-6.970753299999956],[113.61197660000005,-6.973097399999972],[113.60831960000007,-6.974246899999969],[113.61167910000006,-6.9827],[113.6121597,-6.991992099999948],[113.61072540000009,-6.99572],[113.6085892000001,-6.996449599999949],[113.61025240000004,-6.999071699999945],[113.60707720000005,-7.005522799999937],[113.61205280000001,-7.0113006],[113.6082838000001,-7.012973899999963],[113.60140970000009,-7.011043199999961],[113.59531390000006,-7.011140499999954],[113.59469590000003,-7.015944099999956],[113.58979020000004,-7.016404699999953],[113.58682240000007,-7.0190049],[113.58139160000007,-7.018752699999936],[113.5806894000001,-7.026289899999938],[113.57749,-7.033736199999964],[113.57790550000004,-7.036012299999925],[113.58316040000011,-7.0414816],[113.59770950000006,-7.0379707],[113.59940340000003,-7.041909299999929],[113.60313420000011,-7.041420599999981],[113.60476690000007,-7.042507299999954],[113.6049729,-7.045071699999937],[113.59346770000002,-7.061950799999977],[113.60015870000007,-7.062871599999937],[113.60059450000006,-7.066497199999958],[113.60237960000006,-7.067456799999945],[113.60617040000011,-7.067180499999949],[113.60733790000006,-7.073918899999967],[113.61370340000008,-7.077953099999945],[113.61407470000006,-7.0810538],[113.618454,-7.083458499999949],[113.61987310000006,-7.088729],[113.62194060000002,-7.089699799999948],[113.620941,-7.103709799999933],[113.61219770000002,-7.104968399999962],[113.61176620000003,-7.107497099999932],[113.60680390000005,-7.113861199999974],[113.60597230000008,-7.117884699999934],[113.60231210000006,-7.121508499999948],[113.60221110000009,-7.128500699999961]]],[[[115.21728220000011,-6.845906599999978],[115.2215318000001,-6.843991599999981],[115.219594,-6.839283399999943],[115.21657270000003,-6.843313599999931],[115.21728220000011,-6.845906599999978]]],[[[115.2672344,-6.827546599999948],[115.24671890000002,-6.827262899999937],[115.23662520000005,-6.833934799999952],[115.2337566000001,-6.834142699999973],[115.2330928,-6.833044599999937],[115.22787430000005,-6.837949799999933],[115.22657730000003,-6.840816],[115.22741650000012,-6.843339499999956],[115.22869070000002,-6.841302399999961],[115.23150590000012,-6.841028299999948],[115.23173480000003,-6.838725599999975],[115.23265790000005,-6.839704499999925],[115.23675490000005,-6.838242499999978],[115.24353750000012,-6.843134899999939],[115.24891620000005,-6.844668799999965],[115.25272330000007,-6.8521509],[115.25357780000002,-6.862452],[115.24485740000011,-6.873579],[115.24462850000009,-6.876378599999953],[115.24297290000004,-6.873168],[115.2388836,-6.872916199999963],[115.2401119000001,-6.878607799999941],[115.24096640000005,-6.879691599999944],[115.2428509,-6.8790913],[115.23986780000007,-6.8862534],[115.23332940000012,-6.884101899999962],[115.23004110000011,-6.886066],[115.22758440000007,-6.8829809],[115.22060360000012,-6.882892599999934],[115.20709950000003,-6.889885],[115.203384,-6.8976513],[115.20159870000009,-6.903762],[115.20214040000008,-6.906761299999971],[115.20033230000001,-6.9075447],[115.19995080000001,-6.918594499999926],[115.198074,-6.922129699999971],[115.20410120000008,-6.927040199999965],[115.20780910000008,-6.927363],[115.206535,-6.918435699999975],[115.21070830000008,-6.923682299999939],[115.21045650000008,-6.928725799999938],[115.20754970000007,-6.930223099999978],[115.2075344000001,-6.931783799999948],[115.20651970000006,-6.930478199999925],[115.20529140000008,-6.9311767],[115.20321620000004,-6.9371544],[115.20445980000011,-6.939237699999978],[115.21179930000005,-6.942669499999965],[115.214729,-6.941943699999968],[115.22251860000006,-6.935090099999968],[115.22482260000004,-6.934943199999964],[115.22574580000003,-6.936447699999974],[115.22962920000009,-6.936193],[115.22953760000007,-6.938962],[115.2312085000001,-6.940289099999973],[115.22985810000011,-6.941499299999975],[115.23323790000006,-6.944188099999963],[115.23622860000012,-6.944528099999957],[115.23871580000002,-6.941426299999932],[115.2406079000001,-6.933435899999949],[115.24346130000004,-6.9350267],[115.24510920000012,-6.939037299999939],[115.24497190000011,-6.945310099999972],[115.24781,-6.948251299999981],[115.25378380000006,-6.945359199999928],[115.25489770000001,-6.941175899999962],[115.25860560000001,-6.942641699999967],[115.262962,-6.936063199999978],[115.26975220000008,-6.935514399999931],[115.27099570000007,-6.938608099999954],[115.2702786000001,-6.941613599999926],[115.2741162000001,-6.940977],[115.27561160000005,-6.943333099999961],[115.27431460000003,-6.9489741],[115.26697510000008,-6.951479899999981],[115.26115390000007,-6.951525199999935],[115.2562405000001,-6.954927399999974],[115.25959740000008,-6.962843899999939],[115.263252,-6.963794699999937],[115.261398,-6.972688599999969],[115.264755,-6.976463299999978],[115.26348850000011,-6.983658799999944],[115.26496860000009,-6.991426899999965],[115.26712770000006,-6.994739],[115.27397130000008,-6.994300799999962],[115.28046390000009,-7.003544699999964],[115.293205,-7.012878299999954],[115.29159520000007,-7.009622499999978],[115.29255650000005,-7.005500199999972],[115.29752330000008,-7.003143699999953],[115.30141420000007,-6.998188899999946],[115.29899570000009,-6.991859799999929],[115.3009717000001,-6.990733],[115.30104040000003,-6.988573],[115.29330420000008,-6.981526299999928],[115.29003880000005,-6.980272199999945],[115.2891538,-6.978314799999964],[115.29117560000009,-6.976561],[115.2877423000001,-6.974757099999977],[115.28830690000007,-6.973339],[115.28652160000001,-6.970282899999972],[115.2903821000001,-6.9723782],[115.29272430000003,-6.97126],[115.29702730000008,-6.971786399999928],[115.3045499000001,-6.978250899999978],[115.30989810000005,-6.977884199999949],[115.306854,-6.970714],[115.3073270000001,-6.967798099999925],[115.30444310000007,-6.9657029],[115.30316130000006,-6.960510599999964],[115.29862180000009,-6.956356899999946],[115.30201690000001,-6.956535199999962],[115.30076570000006,-6.953717099999949],[115.30346650000001,-6.948373199999935],[115.3055951,-6.952027699999974],[115.31163760000004,-6.955922899999962],[115.31390350000004,-6.951251899999932],[115.31589480000002,-6.9565547],[115.31966370000009,-6.9583],[115.31850410000004,-6.962295899999958],[115.3200604000001,-6.962358799999947],[115.32143370000006,-6.960129599999959],[115.32619450000004,-6.9619215],[115.325813,-6.969908099999941],[115.32385990000012,-6.972562599999947],[115.32264680000003,-6.970772599999975],[115.3167188000001,-6.970471699999962],[115.31652040000006,-6.968690699999968],[115.31550570000002,-6.969934299999977],[115.32101410000007,-6.974882899999955],[115.3230893000001,-6.9811576],[115.32830020000006,-6.984909799999969],[115.32991,-6.987621099999956],[115.33019990000003,-6.993596399999944],[115.33376290000001,-6.995883299999946],[115.33678410000005,-6.996225599999946],[115.34495520000007,-6.993594899999948],[115.35209630000008,-6.996015299999954],[115.3623884000001,-6.992064699999958],[115.3814771000001,-6.995424899999932],[115.3916776000001,-6.990725199999929],[115.40403720000006,-6.9890028],[115.402313,-6.982150199999978],[115.39724710000007,-6.978930199999979],[115.38688630000001,-6.9816081],[115.37536590000002,-6.973568599999965],[115.3806684000001,-6.974062599999968],[115.382179,-6.976039599999979],[115.3869092000001,-6.977721899999949],[115.39118170000006,-6.976143499999978],[115.39247870000008,-6.970062399999961],[115.38944980000008,-6.9647414],[115.38502480000011,-6.963242699999967],[115.38697790000003,-6.960255299999972],[115.38539860000003,-6.957997],[115.377197,-6.953593],[115.37659430000008,-6.951448599999935],[115.37082640000006,-6.953557699999976],[115.37111630000004,-6.950749599999938],[115.36775180000006,-6.951481499999943],[115.36247230000004,-6.955450799999937],[115.36164830000007,-6.953299299999969],[115.359039,-6.952551099999937],[115.3591077000001,-6.951108199999965],[115.36164830000007,-6.950537899999972],[115.36451690000001,-6.947090799999955],[115.360397,-6.943951799999979],[115.35718510000004,-6.9438436],[115.35749790000011,-6.941181899999947],[115.35246250000012,-6.942302899999959],[115.35048640000002,-6.938579799999957],[115.35333220000007,-6.937439199999972],[115.3511883000001,-6.9367283],[115.3441312000001,-6.937393],[115.341705,-6.945814899999959],[115.33721890000004,-6.947878599999967],[115.3393857000001,-6.945019],[115.33913390000009,-6.936941399999967],[115.33434260000001,-6.935927699999979],[115.33095520000006,-6.931252299999926],[115.33911100000012,-6.932305099999951],[115.33450280000011,-6.929011199999934],[115.33676120000007,-6.927680299999963],[115.33357210000008,-6.922501399999931],[115.33513610000011,-6.921424699999932],[115.33417480000003,-6.920283599999948],[115.33802,-6.922119899999927],[115.33745540000007,-6.918858799999953],[115.33910340000011,-6.918412899999964],[115.34439820000011,-6.922410299999967],[115.34728970000003,-6.922383599999932],[115.34993710000003,-6.925228799999957],[115.35257690000003,-6.924815899999942],[115.35353060000011,-6.922957199999928],[115.35041010000009,-6.919359],[115.3537136000001,-6.9192431],[115.354263,-6.916038299999968],[115.35784110000009,-6.919052799999974],[115.3588406,-6.924915599999963],[115.36658440000008,-6.926918199999932],[115.369476,-6.929408299999977],[115.3656995,-6.924931699999945],[115.366409,-6.922239],[115.36779750000005,-6.9241163],[115.3697125000001,-6.9237501],[115.36922420000008,-6.917514499999925],[115.37060510000003,-6.916273299999943],[115.36530270000003,-6.912389],[115.365303,-6.910321299999964],[115.36833920000004,-6.910265699999968],[115.36852230000011,-6.906487199999958],[115.37331360000007,-6.904584599999964],[115.37281260000009,-6.901104399999952],[115.3761095000001,-6.900105899999971],[115.37842960000012,-6.900110899999959],[115.37844760000007,-6.907054199999948],[115.375933,-6.908958699999971],[115.3787436,-6.908074699999929],[115.37948570000003,-6.909378299999958],[115.37824810000006,-6.912256899999932],[115.37921480000011,-6.914652199999978],[115.38147310000011,-6.9154879],[115.38028220000001,-6.919540599999948],[115.38116560000003,-6.924019399999963],[115.38290370000004,-6.92265],[115.38264430000004,-6.9179012],[115.38514680000003,-6.916882699999974],[115.38432980000005,-6.911254399999962],[115.38804590000007,-6.910050099999978],[115.39024620000009,-6.904700699999978],[115.39428420000002,-6.906612099999961],[115.39446180000004,-6.908665799999937],[115.39731860000006,-6.907863199999952],[115.39763890000006,-6.910409499999957],[115.39509010000006,-6.913171699999964],[115.395563,-6.915252499999951],[115.39849960000004,-6.915536499999973],[115.3974535000001,-6.917587199999957],[115.3986546000001,-6.918953299999941],[115.39597870000011,-6.920246899999938],[115.39705860000004,-6.92431],[115.398648,-6.924375699999928],[115.39925620000008,-6.927150499999925],[115.401303,-6.924055099999975],[115.40627,-6.924738099999956],[115.40609240000003,-6.933922],[115.40841770000009,-6.934415899999976],[115.40855780000004,-6.9394056],[115.41236920000006,-6.942948199999933],[115.41748020000011,-6.942173599999933],[115.41347470000005,-6.939396],[115.41334510000002,-6.937056699999971],[115.41042830000004,-6.934263],[115.41939,-6.937503899999967],[115.42106600000011,-6.936411],[115.417854,-6.933237199999951],[115.41816680000011,-6.929119699999944],[115.42281930000001,-6.933743199999981],[115.42504850000012,-6.932407499999954],[115.42443820000005,-6.925453299999958],[115.42286650000005,-6.924338899999952],[115.42409490000011,-6.92237],[115.421806,-6.918924899999979],[115.42246360000001,-6.916546799999935],[115.4260478000001,-6.919588],[115.42839530000003,-6.917272199999957],[115.42954750000001,-6.918845899999951],[115.43132660000003,-6.9177967],[115.4318545000001,-6.920682299999953],[115.4347418000001,-6.921181],[115.43394410000008,-6.922930399999927],[115.431968,-6.922246599999937],[115.4311593000001,-6.923580799999968],[115.43396120000011,-6.925561899999934],[115.433822,-6.928782],[115.43547360000002,-6.9302116],[115.433616,-6.931093399999952],[115.43308230000002,-6.935319399999969],[115.430198,-6.937736199999961],[115.43410080000001,-6.948093299999925],[115.4330943000001,-6.942569099999957],[115.43464030000007,-6.942382899999927],[115.4372737000001,-6.946674499999972],[115.43575170000008,-6.940653899999973],[115.43640690000007,-6.937114099999974],[115.43821770000011,-6.935887599999944],[115.43514290000007,-6.933616799999925],[115.43789060000006,-6.929517799999928],[115.43956670000011,-6.931487299999958],[115.44061210000007,-6.929392499999949],[115.44008570000005,-6.9231025],[115.43615110000007,-6.920643],[115.43978410000011,-6.921060399999931],[115.44144480000011,-6.919627199999979],[115.44511150000005,-6.924833099999944],[115.44651770000007,-6.924884299999974],[115.44735690000005,-6.920153599999935],[115.44464080000012,-6.917273499999965],[115.44736450000005,-6.915802],[115.44588240000007,-6.912308],[115.44913620000011,-6.911612299999945],[115.45099010000001,-6.914058099999977],[115.45300190000012,-6.913052],[115.45557870000005,-6.914152099999967],[115.45503130000009,-6.921568599999944],[115.45714770000006,-6.920686],[115.46197330000007,-6.922242899999958],[115.4550091000001,-6.928152599999976],[115.4538017000001,-6.932001499999956],[115.45778670000004,-6.928733],[115.45907000000011,-6.933972099999949],[115.46520710000004,-6.930730199999971],[115.46766590000004,-6.931188499999962],[115.47163360000002,-6.929055199999937],[115.47561320000011,-6.923666],[115.47949530000005,-6.925973],[115.47784380000007,-6.926694099999963],[115.476201,-6.931360899999959],[115.48419050000007,-6.934560199999964],[115.48631260000002,-6.931965699999978],[115.48557590000007,-6.928092399999969],[115.4880753000001,-6.930763399999933],[115.48800730000005,-6.937194799999929],[115.4895560000001,-6.937561699999947],[115.4918652,-6.935542599999962],[115.49362730000007,-6.936277899999936],[115.49250960000006,-6.939126],[115.49677190000011,-6.941727299999968],[115.4946278000001,-6.945476199999973],[115.49803610000004,-6.949247899999932],[115.5027692000001,-6.950762199999929],[115.50218170000005,-6.9489211],[115.50811740000006,-6.946413399999926],[115.51948330000005,-6.945313],[115.529221,-6.951402],[115.53672760000006,-6.959242099999926],[115.5486906000001,-6.966275899999971],[115.55155160000004,-6.965098099999977],[115.55464150000012,-6.958038099999953],[115.55287650000002,-6.954461499999979],[115.55359620000002,-6.952233099999944],[115.5563810000001,-6.952447599999971],[115.55944040000008,-6.949323899999968],[115.56362130000002,-6.9483077],[115.56429270000001,-6.944482499999935],[115.5708082000001,-6.943552699999941],[115.57296430000008,-6.934399599999949],[115.57610290000002,-6.933746099999951],[115.57560350000006,-6.930025599999965],[115.56476710000004,-6.922093599999926],[115.56202670000005,-6.910131699999965],[115.55995150000001,-6.906292199999939],[115.55568420000009,-6.903272199999947],[115.54307520000009,-6.901878199999942],[115.51850090000005,-6.881421899999964],[115.49026460000005,-6.871026],[115.4771191000001,-6.863215399999945],[115.45284230000004,-6.8529606],[115.44384730000002,-6.849741],[115.43991810000011,-6.850038099999949],[115.43665280000005,-6.846677299999953],[115.41363480000007,-6.840608699999962],[115.40583,-6.837112099999956],[115.39351620000002,-6.8347651],[115.378387,-6.835674499999925],[115.36654620000002,-6.833799599999963],[115.35136370000009,-6.834303199999965],[115.34264330000008,-6.832410599999946],[115.31899220000003,-6.8345288],[115.30962330000011,-6.832042499999943],[115.29879720000008,-6.832297199999971],[115.29130510000005,-6.830296399999952],[115.28445390000002,-6.830322199999955],[115.27593190000005,-6.8275871],[115.2672344,-6.827546599999948]]],[[[115.63530910000009,-6.674237399999981],[115.63689620000002,-6.672313899999949],[115.63618020000001,-6.670314699999949],[115.63341990000004,-6.675022699999943],[115.63530910000009,-6.674237399999981]]],[[[115.7158945000001,-6.631477899999936],[115.71330620000003,-6.632646899999941],[115.71291240000005,-6.634753299999943],[115.71486690000006,-6.634115],[115.7158945000001,-6.631477899999936]]],[[[115.51313030000006,-6.6048786],[115.51258470000005,-6.602183299999979],[115.51138360000004,-6.610536199999956],[115.51331530000004,-6.609225599999945],[115.51313030000006,-6.6048786]]],[[[115.5454549000001,-6.563164599999936],[115.54699760000005,-6.562014799999929],[115.5438918000001,-6.5614663],[115.543689,-6.562862199999927],[115.5454549000001,-6.563164599999936]]],[[[115.74999920000005,-6.486943099999962],[115.75131910000005,-6.485017599999935],[115.7483893000001,-6.481032699999957],[115.74787060000006,-6.486095699999964],[115.74999920000005,-6.486943099999962]]],[[[114.4130080000001,-5.532784099999958],[114.40907120000008,-5.532817499999965],[114.40648480000004,-5.534827399999926],[114.40666030000011,-5.536606899999981],[114.40403580000009,-5.5372001],[114.40406630000007,-5.538821399999961],[114.3982909,-5.539114599999948],[114.39333180000006,-5.542471099999943],[114.39468980000004,-5.543315099999973],[114.39356060000011,-5.545113299999969],[114.39640640000005,-5.546644299999969],[114.3967421000001,-5.54903],[114.3929121000001,-5.5645878],[114.39400310000008,-5.567920399999934],[114.3974803000001,-5.571825499999932],[114.40564230000007,-5.569580799999926],[114.41667770000004,-5.574089699999945],[114.41958470000009,-5.578556099999957],[114.42231390000006,-5.590725899999939],[114.428145,-5.587695399999973],[114.4343328000001,-5.588857799999971],[114.44776800000011,-5.579190399999959],[114.44862140000009,-5.577387599999952],[114.4465484000001,-5.575202299999944],[114.44673340000008,-5.5727375],[114.45085060000008,-5.572180699999933],[114.44970680000006,-5.569790299999966],[114.45176540000011,-5.569511899999952],[114.45109,-5.567651399999932],[114.45493350000004,-5.565764399999978],[114.4507896,-5.5617269],[114.45216650000009,-5.558522699999969],[114.45174680000002,-5.554929499999957],[114.45326590000002,-5.553322499999979],[114.4519295,-5.552065199999959],[114.45190190000005,-5.547337699999957],[114.43975740000008,-5.550271799999962],[114.43879650000008,-5.545017],[114.43608730000005,-5.547696199999962],[114.431833,-5.547521199999949],[114.43116040000007,-5.546126799999968],[114.43052450000005,-5.551088299999947],[114.4290711000001,-5.552598],[114.4274352000001,-5.549257399999931],[114.4241422,-5.550695499999961],[114.42120960000011,-5.545901899999933],[114.41900470000007,-5.548491699999943],[114.4192336000001,-5.552186199999937],[114.41783740000005,-5.551892899999928],[114.41254260000005,-5.545603399999948],[114.41496110000003,-5.536334199999942],[114.4130080000001,-5.532784099999958]]],[[[114.415824,-5.430883599999959],[114.41361150000012,-5.430737199999953],[114.4120382000001,-5.432502599999964],[114.41125060000002,-5.4342384],[114.41311930000006,-5.4356928],[114.40949640000008,-5.4413068],[114.41185580000001,-5.447286499999962],[114.41398990000005,-5.4486728],[114.4138713000001,-5.451203899999939],[114.41715060000001,-5.455313799999942],[114.4222122000001,-5.457349199999953],[114.4249618,-5.461795],[114.42902540000011,-5.4629037],[114.43139570000005,-5.459760499999959],[114.43671440000003,-5.460262799999953],[114.4388497000001,-5.455457],[114.436805,-5.448495599999944],[114.43044970000005,-5.442111699999941],[114.42959520000011,-5.4387867],[114.42179790000012,-5.432327],[114.415824,-5.430883599999959]]],[[[114.59891540000001,-5.106722099999956],[114.59759120000001,-5.107395399999973],[114.598855,-5.1077877],[114.59891540000001,-5.106722099999956]]],[[[114.60804640000003,-5.059708499999942],[114.61041910000006,-5.052963699999964],[114.60898480000003,-5.048857099999964],[114.5997456,-5.053210199999967],[114.58779790000006,-5.067047],[114.58949160000009,-5.076592799999958],[114.59282570000005,-5.077836399999967],[114.5932987000001,-5.080988799999943],[114.59257370000012,-5.090099399999929],[114.58902690000002,-5.095659099999978],[114.59563120000007,-5.101214699999957],[114.60027150000008,-5.099857099999952],[114.6035260000001,-5.102638],[114.60558970000011,-5.088929599999972],[114.61157870000011,-5.080033199999946],[114.61057170000004,-5.078690399999971],[114.6114414000001,-5.068290599999955],[114.60977060000005,-5.063933799999973],[114.6074665000001,-5.062804099999937],[114.60804640000003,-5.059708499999942]]]]},"properties":{"shapeName":"Sumenep","shapeISO":"","shapeID":"22746128B72415143398434","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[135.5005794000001,-0.942287499999964],[135.4928794000001,-0.933834499999932],[135.49027920000003,-0.9289637],[135.4947198000001,-0.9383431],[135.4950401000001,-0.9410001],[135.49260070000003,-0.942208199999925],[135.4923212000001,-0.946072899999933],[135.4952611000001,-0.948568499999965],[135.49670190000006,-0.955693899999972],[135.49608290000003,-0.9620144],[135.49364370000012,-0.964752199999964],[135.50888180000004,-0.967890099999977],[135.51308030000007,-0.962172899999928],[135.50492080000004,-0.956940599999939],[135.5005794000001,-0.942287499999964]]],[[[135.44753420000006,-0.882723699999929],[135.44586230000004,-0.872839599999963],[135.44565810000006,-0.878376699999933],[135.44753420000006,-0.882723699999929]]],[[[135.43756910000002,-0.864311799999939],[135.43595620000008,-0.864155899999957],[135.43710420000002,-0.867340399999932],[135.43974070000002,-0.867902099999981],[135.43756910000002,-0.864311799999939]]],[[[135.52845350000007,-0.863210199999969],[135.52598380000006,-0.862987499999974],[135.52554080000004,-0.864676699999961],[135.52884990000007,-0.8677759],[135.5307332000001,-0.863337399999978],[135.52845350000007,-0.863210199999969]]],[[[135.508201,-0.831254699999931],[135.50594130000002,-0.828583499999979],[135.503933,-0.828439399999979],[135.5010645000001,-0.832483],[135.50604980000003,-0.835406499999976],[135.508201,-0.831254699999931]]],[[[135.49550510000006,-0.826491],[135.4938195000001,-0.826094099999978],[135.49349690000008,-0.827574299999981],[135.49550510000006,-0.826491]]],[[[135.52980730000002,-0.806826199999932],[135.5286774000001,-0.806074899999942],[135.52539910000007,-0.807761099999937],[135.52910140000006,-0.808837],[135.530554,-0.808308699999941],[135.52980730000002,-0.806826199999932]]],[[[135.54098310000006,-0.804557299999942],[135.54222640000012,-0.802696899999944],[135.54115650000006,-0.801466199999936],[135.53983670000002,-0.8036763],[135.54098310000006,-0.804557299999942]]],[[[135.52393570000004,-0.802521399999932],[135.52477280000005,-0.800845799999934],[135.52335,-0.798835399999973],[135.52246270000012,-0.801404599999955],[135.52393570000004,-0.802521399999932]]],[[[135.52146370000003,-0.798358299999961],[135.5227850000001,-0.796946599999956],[135.52128170000003,-0.795372799999939],[135.5198898000001,-0.796530699999948],[135.52146370000003,-0.798358299999961]]],[[[135.72716580000008,-0.777047299999936],[135.7268745,-0.776124799999934],[135.72494760000006,-0.776901099999975],[135.72651510000003,-0.777978499999961],[135.72716580000008,-0.777047299999936]]],[[[135.5263252000001,-0.642304099999933],[135.52410270000007,-0.650896199999977],[135.52539410000009,-0.655444599999953],[135.5272589000001,-0.6555527],[135.5320282,-0.653350099999955],[135.5344305000001,-0.649739899999929],[135.52991140000006,-0.643639399999927],[135.5263252000001,-0.642304099999933]]],[[[135.49934770000004,-0.638597299999958],[135.50345750000008,-0.635030099999938],[135.501959,-0.632849399999941],[135.49815290000004,-0.636273899999935],[135.49934770000004,-0.638597299999958]]],[[[135.4858217000001,-0.628529899999933],[135.48122590000003,-0.629447499999969],[135.484709,-0.6363975],[135.48863730000005,-0.640718099999958],[135.48930460000008,-0.631729599999971],[135.4858217000001,-0.628529899999933]]],[[[135.8035731000001,-0.686842599999977],[135.79944860000012,-0.693239799999958],[135.7979335000001,-0.699552899999958],[135.78859010000008,-0.7065394],[135.78884260000007,-0.711000699999943],[135.78269790000002,-0.716724499999941],[135.78042510000012,-0.722616799999969],[135.77457520000007,-0.721136399999978],[135.7668119000001,-0.722809499999926],[135.7640011000001,-0.731442899999934],[135.76185940000005,-0.733584499999949],[135.763536,-0.736274299999934],[135.76038030000007,-0.735552899999959],[135.7487446,-0.7405726],[135.7373219000001,-0.733066],[135.7335200000001,-0.728229399999975],[135.73244320000003,-0.7223455],[135.72769080000012,-0.716137299999957],[135.72951940000007,-0.714548599999944],[135.72833570000012,-0.712599499999953],[135.71872470000005,-0.7087023],[135.71418830000005,-0.708450399999947],[135.71085360000006,-0.709822599999939],[135.70992150000006,-0.711772099999962],[135.7032875000001,-0.712278499999968],[135.7002943000001,-0.720148599999959],[135.69570470000008,-0.723001099999976],[135.69122220000008,-0.723110099999928],[135.6851971000001,-0.719753799999978],[135.68030120000003,-0.712931799999978],[135.6837789000001,-0.708021799999926],[135.68390410000006,-0.705639199999951],[135.6819673000001,-0.7037624],[135.6822896000001,-0.70073],[135.6798146000001,-0.695820899999944],[135.6804059000001,-0.693005],[135.67771560000006,-0.687662799999941],[135.6688749000001,-0.678747499999929],[135.665719,-0.677701099999979],[135.6625636000001,-0.679795299999967],[135.6607705,-0.679109599999947],[135.6614154,-0.6746332],[135.65894030000004,-0.669363099999941],[135.64342990000011,-0.6626868],[135.63916260000008,-0.662615099999925],[135.634519,-0.6648178],[135.62996580000004,-0.67341],[135.62713250000002,-0.670991699999945],[135.6194762,-0.669945799999937],[135.6188671000001,-0.674458399999935],[135.6147794000001,-0.677130299999931],[135.6158557000001,-0.681281599999977],[135.6078417000001,-0.687744399999929],[135.60791360000007,-0.689368799999954],[135.60197920000007,-0.693051799999978],[135.6008322,-0.697203399999978],[135.5950951000001,-0.702763499999946],[135.59337370000003,-0.7014281],[135.5933731,-0.696915599999954],[135.5985,-0.68789],[135.5974595,-0.684496799999977],[135.5987143000001,-0.680958899999951],[135.59586280000008,-0.676121799999976],[135.59794220000003,-0.671320299999934],[135.59690220000005,-0.671284399999934],[135.59663260000002,-0.665977699999928],[135.5904643,-0.663704199999927],[135.5843321000001,-0.663271699999939],[135.58013670000003,-0.6655104],[135.573377,-0.665475099999981],[135.56946790000006,-0.663454],[135.5662764000001,-0.664140199999963],[135.56548720000012,-0.661685499999976],[135.5601974000001,-0.659050799999932],[135.55944410000006,-0.657209799999976],[135.55191350000007,-0.658365899999978],[135.55073,-0.656994199999929],[135.5508738000001,-0.660676399999943],[135.5476109000001,-0.6642146],[135.54422180000006,-0.665803299999936],[135.53852030000007,-0.665659599999969],[135.53475590000005,-0.674540599999943],[135.5317791000001,-0.671689],[135.5321732000001,-0.668367799999942],[135.52691960000004,-0.6686932],[135.53158120000012,-0.665768599999979],[135.5257355000001,-0.661978699999963],[135.51587360000008,-0.660716299999933],[135.51225190000002,-0.663063199999954],[135.5106019000001,-0.659453299999939],[135.50448710000012,-0.654291599999965],[135.4956651000001,-0.652018199999929],[135.489802,-0.654040399999928],[135.48976660000005,-0.6587334],[135.4867901,-0.658661499999937],[135.4849974000001,-0.662271699999962],[135.4830968000001,-0.6624524],[135.47325190000004,-0.653103399999964],[135.46317440000007,-0.646209099999965],[135.45969580000008,-0.646028899999976],[135.45012170000007,-0.655668599999956],[135.44355940000003,-0.659207099999946],[135.44381,-0.654153],[135.44108440000002,-0.652059399999928],[135.44363050000004,-0.651228799999956],[135.4464637000001,-0.653502899999978],[135.4486869000001,-0.651192299999934],[135.44782610000004,-0.649459499999978],[135.45069480000006,-0.647545899999955],[135.45040770000003,-0.644910599999946],[135.44721570000002,-0.6414453],[135.4398645000001,-0.645128199999931],[135.43746160000012,-0.642240299999969],[135.4367803,-0.6432873],[135.43380380000008,-0.642854299999954],[135.42942930000004,-0.650363699999957],[135.42516180000007,-0.650255699999946],[135.4249469,-0.6538297],[135.4220778,-0.651014099999941],[135.41963940000005,-0.653577399999961],[135.41750590000004,-0.653036099999952],[135.41599910000002,-0.649281799999926],[135.41377590000002,-0.651339699999937],[135.41169590000004,-0.651195499999972],[135.41036850000012,-0.646105399999954],[135.39980660000003,-0.635564799999941],[135.39415740000004,-0.621738599999958],[135.39182630000005,-0.620330799999977],[135.384941,-0.620981099999938],[135.38307640000005,-0.623688899999934],[135.3807455000001,-0.6243027],[135.37846810000008,-0.622534],[135.3774284000001,-0.626396799999952],[135.375205,-0.625999899999954],[135.37545620000003,-0.627841],[135.36505650000004,-0.629502399999978],[135.36209810000003,-0.633221],[135.361453,-0.638600099999962],[135.3632645,-0.645062],[135.37174650000009,-0.6554946],[135.37269770000012,-0.666469199999938],[135.38252440000008,-0.674374499999942],[135.38740170000005,-0.675601599999936],[135.3888184000001,-0.678200699999934],[135.38620070000002,-0.680619699999966],[135.3860575000001,-0.683688299999972],[135.39389390000008,-0.6916298],[135.39106130000005,-0.697586699999931],[135.3852518000001,-0.699103399999956],[135.38430160000007,-0.700655799999936],[135.3878162000001,-0.702352299999973],[135.38882090000004,-0.708814199999949],[135.39289180000003,-0.715420399999971],[135.39373520000004,-0.722929299999976],[135.395349,-0.722965199999976],[135.39481120000005,-0.724337099999957],[135.39613810000003,-0.725095099999976],[135.3986126000001,-0.724300699999958],[135.39911480000012,-0.726141799999937],[135.40184020000004,-0.725239399999964],[135.40768690000004,-0.738198599999976],[135.41008970000007,-0.739028699999949],[135.409301,-0.7414115],[135.41152440000008,-0.741194599999972],[135.411776,-0.746573599999977],[135.41439380000008,-0.745923599999969],[135.41489560000002,-0.742818899999975],[135.4167963000001,-0.743143599999939],[135.4158999000001,-0.744551599999966],[135.41715540000007,-0.748017199999936],[135.42144120000012,-0.750688199999956],[135.41954050000004,-0.751121599999976],[135.418716,-0.753793099999939],[135.427126,-0.757691199999954],[135.42784340000003,-0.759243399999946],[135.4264449000001,-0.760037799999964],[135.4282022000001,-0.761084499999924],[135.42777200000012,-0.762673],[135.42949340000007,-0.762384],[135.4351243000001,-0.768231699999944],[135.4449330000001,-0.771660299999951],[135.44565050000006,-0.7738984],[135.4479099,-0.774800699999957],[135.44791020000002,-0.777508299999965],[135.45348740000009,-0.783139299999959],[135.45667890000004,-0.781658899999968],[135.46137690000012,-0.782127699999933],[135.4648023000001,-0.786531499999967],[135.4652331000001,-0.791044099999965],[135.4782342000001,-0.799851099999955],[135.4762978000001,-0.801548],[135.4804577000001,-0.800608899999929],[135.4902128000001,-0.805228599999964],[135.49085850000006,-0.806672499999934],[135.48859950000008,-0.809019299999932],[135.4825929000001,-0.812016399999948],[135.48331050000002,-0.815193099999931],[135.48962240000003,-0.815878299999952],[135.490842,-0.8180802],[135.49464350000005,-0.818910099999925],[135.49579130000006,-0.820678899999962],[135.50183420000008,-0.821255699999938],[135.5004001000001,-0.8247937],[135.51033430000007,-0.827355799999964],[135.50970740000002,-0.832409699999971],[135.507269,-0.834359399999926],[135.50848860000008,-0.836416899999961],[135.50725210000007,-0.842770799999926],[135.5089379000001,-0.8447921],[135.50825670000006,-0.846091799999954],[135.51691870000002,-0.855151799999931],[135.5220468000001,-0.853490499999964],[135.52434240000002,-0.856125499999962],[135.528108,-0.856774799999926],[135.5285381000001,-0.8546448],[135.53043880000007,-0.854464099999973],[135.5304393,-0.857929699999943],[135.5327165000001,-0.857568399999934],[135.5314975000001,-0.860420399999953],[135.5346895,-0.861647399999924],[135.5331477000001,-0.863560899999925],[135.536806,-0.866376199999934],[135.5372192000001,-0.871394099999975],[135.5400165000001,-0.872115699999938],[135.54284890000008,-0.866736299999957],[135.5412924000001,-0.862352699999974],[135.54520060000004,-0.849153099999967],[135.54209240000012,-0.838736899999958],[135.53873750000002,-0.838452],[135.528306,-0.831746899999928],[135.5256835,-0.831461799999943],[135.525482,-0.826253599999973],[135.52022440000007,-0.819476299999963],[135.5225392000001,-0.815219],[135.5232347000001,-0.805682299999944],[135.51982060000012,-0.802329399999962],[135.5185441000001,-0.796693199999936],[135.512885,-0.789440299999967],[135.5051003000001,-0.788275899999974],[135.5016985000001,-0.790345399999978],[135.5024313,-0.793389499999932],[135.5009314,-0.796124599999928],[135.50279810000006,-0.798621499999967],[135.5003647000001,-0.798645599999929],[135.49834520000002,-0.8031645],[135.49893630000008,-0.8065891],[135.5009682000001,-0.807302299999947],[135.4993617,-0.808158599999956],[135.50100410000005,-0.811321499999963],[135.49729480000008,-0.810656],[135.49599490000003,-0.806446699999924],[135.49189550000006,-0.803117699999973],[135.48985130000005,-0.797957199999928],[135.49169340000003,-0.792724899999939],[135.48777140000004,-0.790846299999941],[135.47883990000003,-0.781358399999931],[135.47827270000005,-0.779551],[135.48141450000003,-0.776030899999967],[135.48033920000012,-0.773105799999939],[135.47693690000006,-0.770799199999942],[135.4777639,-0.772321199999965],[135.47587410000006,-0.773653299999978],[135.47445630000004,-0.771013599999947],[135.47636970000008,-0.768754],[135.473936,-0.766804099999945],[135.47517620000008,-0.7655673],[135.47290830000009,-0.7662573],[135.4713488000001,-0.764021899999932],[135.4730022000001,-0.761144],[135.47023830000012,-0.763213399999927],[135.46924590000003,-0.761881699999947],[135.47123020000004,-0.760002699999973],[135.4682299000001,-0.760716499999944],[135.46739090000005,-0.7586237],[135.4689499000001,-0.755793399999959],[135.46743780000008,-0.755270399999972],[135.46775620000005,-0.749538799999925],[135.46645650000005,-0.746804],[135.46766120000007,-0.744972599999926],[135.469008,-0.7465659],[135.4684648000001,-0.748088],[135.47118150000006,-0.746779699999934],[135.47222110000007,-0.747826],[135.4727759000001,-0.743759099999977],[135.474217,-0.743426],[135.47426440000004,-0.744900499999972],[135.47773730000006,-0.745066599999973],[135.4829353,-0.748585899999966],[135.48160110000003,-0.754293799999971],[135.48245180000004,-0.756006],[135.48108160000004,-0.757385499999941],[135.48168450000003,-0.7612382],[135.48724930000003,-0.7701084],[135.49133660000007,-0.771130599999935],[135.49247040000012,-0.770012699999938],[135.49571920000005,-0.772176499999944],[135.50008980000007,-0.772199699999931],[135.50025540000001,-0.774221199999943],[135.50280720000012,-0.776456399999972],[135.50922190000006,-0.779642499999966],[135.5141122000001,-0.779094899999961],[135.51604980000002,-0.781472899999926],[135.52885490000006,-0.782945799999936],[135.53339180000012,-0.789842],[135.53855440000007,-0.793646499999966],[135.54017340000007,-0.798783199999946],[135.543032,-0.799187099999926],[135.54404840000007,-0.802183499999956],[135.5471195,-0.801327],[135.54900970000006,-0.802825],[135.55206870000006,-0.801968399999964],[135.55532960000005,-0.803323599999942],[135.5552355000001,-0.806296299999929],[135.55679480000003,-0.8070809],[135.558461,-0.811432799999977],[135.560918,-0.81148],[135.564049,-0.815879299999949],[135.56317520000005,-0.818162499999971],[135.5664008000001,-0.823441599999967],[135.56876330000011,-0.823132099999953],[135.57133890000011,-0.826841699999932],[135.5726618000001,-0.825438399999939],[135.5711500000001,-0.827531399999941],[135.5727333000001,-0.829790099999968],[135.57676170000002,-0.832287],[135.5779192000001,-0.830812399999957],[135.57813220000003,-0.833523499999956],[135.5847122,-0.836043399999937],[135.58811470000012,-0.839229699999976],[135.590548,-0.838611],[135.59260370000004,-0.8402278],[135.59233230000007,-0.842249299999935],[135.59424580000007,-0.841535599999929],[135.60581180000008,-0.850761099999943],[135.6115294000001,-0.852805499999931],[135.61130550000007,-0.855778199999975],[135.61508550000008,-0.855682499999944],[135.61329030000002,-0.8576567],[135.6165741000001,-0.857014],[135.61536980000005,-0.860486399999957],[135.62198620000004,-0.869023],[135.62529490000009,-0.875919099999976],[135.6271024,-0.876989],[135.627669,-0.874111299999925],[135.62835440000003,-0.8760137],[135.6291338000001,-0.874348899999973],[135.6297958,-0.877131199999951],[135.63833680000005,-0.881220199999973],[135.6398497,-0.885096399999952],[135.64282680000008,-0.887141099999951],[135.65394060000006,-0.875938],[135.6557236000001,-0.8718948],[135.66719190000003,-0.862380099999939],[135.67185630000006,-0.853318499999943],[135.67186760000004,-0.849965299999951],[135.6763323,-0.847848],[135.67691020000007,-0.842639899999938],[135.67988660000003,-0.840475099999935],[135.6838791,-0.840070099999934],[135.6850952000001,-0.836550299999942],[135.68381870000007,-0.832293599999957],[135.68615710000006,-0.829510699999958],[135.6916493000001,-0.826679799999965],[135.69337350000012,-0.823920799999939],[135.6927588000001,-0.821186099999977],[135.6942944000001,-0.821233399999926],[135.69768380000005,-0.817380199999945],[135.6990641000001,-0.807249099999979],[135.69771720000006,-0.805013799999927],[135.69886250000002,-0.802469199999962],[135.70120090000012,-0.799662399999931],[135.7041541000001,-0.8003754],[135.706658,-0.798948],[135.70898420000003,-0.794001099999946],[135.71302390000005,-0.793477199999927],[135.71238520000009,-0.788602199999957],[135.7157161,-0.788054599999953],[135.71627080000007,-0.7848916],[135.71749950000003,-0.7864847],[135.71868030000007,-0.784177799999952],[135.7203813000001,-0.784534199999939],[135.7209123,-0.780895499999929],[135.72619110000005,-0.773998099999972],[135.72949870000002,-0.775257899999929],[135.72296830000005,-0.7853185],[135.7234304000001,-0.793546799999945],[135.72059610000008,-0.797043099999939],[135.71387550000009,-0.799969399999952],[135.70922140000005,-0.799922599999945],[135.70867910000004,-0.803157],[135.7388029000001,-0.794467599999962],[135.80353680000007,-0.740779599999939],[135.8035731000001,-0.686842599999977]]],[[[135.2782201000001,-0.406896599999925],[135.2780795000001,-0.404397099999926],[135.27250460000005,-0.394493799999964],[135.2678476000001,-0.392290899999978],[135.26632130000007,-0.399775899999952],[135.2630422000001,-0.402982799999961],[135.2623866,-0.4093494],[135.26955390000012,-0.410481],[135.2782201000001,-0.406896599999925]]],[[[134.3025553000001,0.80856540000002],[134.3004876000001,0.813390100000049],[134.30083220000006,0.820282400000053],[134.30634610000004,0.837513200000046],[134.30393370000002,0.844405600000073],[134.29876450000006,0.834756300000038],[134.29635220000011,0.824073200000043],[134.2970414,0.804774700000053],[134.3004876000001,0.80443],[134.3025553000001,0.80856540000002]]],[[[134.33184770000003,0.90953810000002],[134.3411523000001,0.918153500000074],[134.34011850000002,0.924012],[134.34218620000001,0.926079700000059],[134.33770620000007,0.930215100000055],[134.33563850000007,0.921599700000058],[134.32943540000008,0.919876600000066],[134.3246107000001,0.916085800000076],[134.3246107000001,0.910916600000064],[134.32288770000002,0.907125800000074],[134.32633380000004,0.905058100000076],[134.33184770000003,0.90953810000002]]],[[[134.30324450000012,0.93435050000005],[134.30221070000005,0.936762800000054],[134.2991091,0.937796700000035],[134.29566290000002,0.936762800000054],[134.29945370000007,0.93435050000005],[134.30324450000012,0.93435050000005]]]]},"properties":{"shapeName":"Supiori","shapeISO":"","shapeID":"22746128B96591890843994","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[115.7214441000001,-1.990307],[115.71730220000006,-1.990040799999974],[115.71332690000008,-1.992117399999927],[115.71232930000008,-1.988954199999966],[115.71347450000007,-1.986080199999947],[115.71062180000001,-1.979896899999972],[115.70376610000005,-1.977304099999969],[115.6973365,-1.977874],[115.69619620000003,-1.974423199999933],[115.70634990000008,-1.961494],[115.7062161,-1.949706699999979],[115.71236460000011,-1.9428116],[115.7113667000001,-1.939935899999966],[115.71565570000007,-1.936058099999968],[115.71866290000003,-1.926716799999951],[115.72323620000009,-1.924564099999941],[115.72752220000007,-1.924567299999978],[115.72395230000006,-1.922264599999949],[115.71910060000005,-1.914367899999945],[115.72101960000009,-1.907968199999971],[115.72522820000006,-1.901835799999958],[115.72508520000008,-1.890501699999959],[115.72964680000007,-1.881358],[115.72620440000003,-1.875796199999968],[115.73053740000012,-1.869852299999934],[115.7293687,-1.862505699999929],[115.73268590000009,-1.8602516],[115.7279248000001,-1.8580041],[115.725533,-1.853118699999925],[115.72578290000001,-1.850870099999952],[115.72903080000003,-1.848764299999971],[115.730149,-1.8459666],[115.7237735000001,-1.836543399999925],[115.72117270000001,-1.829102899999953],[115.721707,-1.825678299999936],[115.72735120000004,-1.816156699999965],[115.7267217000001,-1.803633599999955],[115.72576630000003,-1.800957199999971],[115.72151150000002,-1.801061199999936],[115.71555970000009,-1.794314099999951],[115.71077480000008,-1.7920631],[115.70811830000002,-1.788208199999929],[115.70013760000006,-1.792911799999956],[115.69574000000011,-1.799400499999933],[115.691405,-1.801862299999925],[115.68864730000007,-1.800386099999969],[115.68647650000003,-1.802796799999953],[115.68099570000004,-1.794691799999953],[115.68083630000001,-1.789157],[115.6855144000001,-1.786042099999975],[115.69008610000003,-1.779047899999966],[115.68972830000007,-1.771371399999964],[115.6870755000001,-1.7674602],[115.68734930000005,-1.757840299999941],[115.68997280000008,-1.752513699999952],[115.69699420000006,-1.747257199999979],[115.69629970000005,-1.746148499999947],[115.69788070000004,-1.743843699999957],[115.70181720000005,-1.74251],[115.70286050000004,-1.7387237],[115.70526840000002,-1.737415],[115.70788550000009,-1.733158299999957],[115.70800770000005,-1.727480299999968],[115.70476750000012,-1.727533],[115.70331570000008,-1.725039799999934],[115.70046020000007,-1.726584899999978],[115.69756310000002,-1.726199699999938],[115.68605730000002,-1.721695499999953],[115.68748820000008,-1.717376],[115.6812566000001,-1.715177499999925],[115.67934,-1.710215399999925],[115.67652590000012,-1.708426799999927],[115.67452530000003,-1.710029599999928],[115.6708847000001,-1.709089699999936],[115.669921,-1.710041499999932],[115.6671133000001,-1.708482899999979],[115.6652074000001,-1.709792299999947],[115.6671907000001,-1.701936599999954],[115.66622570000004,-1.688953099999935],[115.66782030000002,-1.685667],[115.66748880000011,-1.679644199999927],[115.67030540000007,-1.675645599999939],[115.67200580000008,-1.675316299999963],[115.6722635000001,-1.670960299999933],[115.67456330000005,-1.666898299999957],[115.67265530000009,-1.663435199999981],[115.673954,-1.660794799999962],[115.66962630000012,-1.647859099999948],[115.67087570000001,-1.641802499999926],[115.66841550000004,-1.634885199999928],[115.669099,-1.6311349],[115.66847630000007,-1.6293937],[115.66544850000002,-1.628120599999932],[115.65863850000005,-1.628113],[115.65469610000002,-1.626126],[115.65138320000005,-1.621909599999981],[115.651774,-1.616020099999957],[115.65400040000009,-1.613347799999929],[115.64521280000008,-1.613442099999929],[115.63944360000005,-1.609284199999934],[115.64079010000012,-1.60661],[115.6366097,-1.603949099999966],[115.63666310000008,-1.597705599999927],[115.63801720000004,-1.5933816],[115.64018290000001,-1.5913958],[115.64016460000005,-1.585893599999963],[115.63700820000008,-1.581471099999931],[115.63124770000002,-1.578935799999954],[115.63020240000003,-1.575426199999924],[115.63722760000007,-1.571285],[115.63888480000003,-1.5670672],[115.642802,-1.564186899999925],[115.645711,-1.559175799999934],[115.6455079000001,-1.552074],[115.63648340000009,-1.545801899999958],[115.6343544,-1.538667799999928],[115.63285010000004,-1.538460399999963],[115.63127970000005,-1.534743299999946],[115.63141930000006,-1.530270199999961],[115.63613960000009,-1.527176499999939],[115.64099970000007,-1.519196799999975],[115.654981,-1.512493099999972],[115.634464,-1.5106741],[115.633078,-1.512545499999931],[115.63096590000009,-1.512173299999972],[115.63002110000002,-1.5100291],[115.62792170000012,-1.513012499999945],[115.62335790000009,-1.513082],[115.62291160000007,-1.516229199999941],[115.6206456000001,-1.514563599999974],[115.62056450000011,-1.510846199999946],[115.62713190000011,-1.505088899999976],[115.62749020000001,-1.503334499999937],[115.62174140000002,-1.500445599999978],[115.61817630000007,-1.501230199999952],[115.61688,-1.499962],[115.62002570000004,-1.496372799999961],[115.61857320000001,-1.491628799999944],[115.62111230000005,-1.477482699999939],[115.62322820000009,-1.477247699999964],[115.625619,-1.472919399999967],[115.62788390000003,-1.472275899999943],[115.62796590000005,-1.467833299999938],[115.63839650000011,-1.463002099999926],[115.6490176000001,-1.4611182],[115.65252360000011,-1.463146299999948],[115.65521390000004,-1.461673699999949],[115.66290950000007,-1.461615],[115.66854780000006,-1.456843599999956],[115.67883330000006,-1.456305599999951],[115.67866880000008,-1.454250499999944],[115.68135790000008,-1.450124],[115.68771650000008,-1.445029199999965],[115.68691840000008,-1.4382807],[115.68877950000001,-1.435084699999948],[115.69205810000005,-1.4330449],[115.693305,-1.427041799999927],[115.69725530000005,-1.422506299999952],[115.69735230000003,-1.417117799999971],[115.69904550000001,-1.414944499999933],[115.70656610000003,-1.413247],[115.70919930000002,-1.410885099999973],[115.71748920000005,-1.397811799999943],[115.72351830000002,-1.372857299999964],[115.7345428000001,-1.369326099999967],[115.7415952,-1.364035699999931],[115.74507840000001,-1.353543799999954],[115.74481490000005,-1.332881899999961],[115.74782690000006,-1.324658599999964],[115.75398990000008,-1.315042299999959],[115.74635020000005,-1.316687499999944],[115.73137180000003,-1.3292469],[115.72349280000003,-1.332806799999958],[115.7190508000001,-1.3319546],[115.71631180000008,-1.336307],[115.7119229000001,-1.336343099999965],[115.70928230000004,-1.338947499999961],[115.70833820000007,-1.337769099999946],[115.69682360000002,-1.336685599999953],[115.69035720000011,-1.338234399999976],[115.68161350000003,-1.335051699999951],[115.6726440000001,-1.336138099999971],[115.66760290000002,-1.334786599999973],[115.66424960000006,-1.339696499999945],[115.65773090000005,-1.3445848],[115.64731610000001,-1.3451968],[115.64126720000002,-1.351223799999957],[115.62559770000007,-1.350664699999925],[115.61968960000002,-1.358299899999963],[115.61558330000003,-1.366556799999955],[115.60388220000004,-1.372889],[115.59869930000002,-1.377200199999947],[115.5979264,-1.379872299999931],[115.59299990000011,-1.376564599999938],[115.58622730000002,-1.379668199999969],[115.57602840000004,-1.380931099999941],[115.57379620000006,-1.382953399999963],[115.57283970000003,-1.387210799999934],[115.56713030000003,-1.392142899999953],[115.56709820000003,-1.396073399999977],[115.56438650000007,-1.397818599999937],[115.5645283,-1.399350199999958],[115.56074720000004,-1.400233299999968],[115.55668340000011,-1.397964199999933],[115.55153170000006,-1.407852699999978],[115.54557520000003,-1.414102899999932],[115.5237634,-1.430242499999963],[115.5148961000001,-1.447846],[115.50724430000002,-1.473342499999944],[115.50000000000011,-1.478719599999977],[115.4830627,-1.513511799999947],[115.47364390000007,-1.526009],[115.46843320000005,-1.537159599999939],[115.4601100000001,-1.546328399999936],[115.447241,-1.565034499999967],[115.4359386000001,-1.595223699999963],[115.42346930000008,-1.621414099999924],[115.41565860000003,-1.644213299999933],[115.40166950000003,-1.672795599999972],[115.39904880000006,-1.675303099999951],[115.39501630000007,-1.689256299999954],[115.38168030000008,-1.719103899999936],[115.38263110000003,-1.724246199999925],[115.38789120000001,-1.7279378],[115.38833120000004,-1.737252299999966],[115.39698550000003,-1.741857299999936],[115.39523880000002,-1.744763099999943],[115.39629980000007,-1.747021599999925],[115.39376560000005,-1.749119099999973],[115.39433470000006,-1.750941299999965],[115.38646860000006,-1.770818],[115.38710630000003,-1.773596299999951],[115.3796248000001,-1.783082599999943],[115.38021980000008,-1.784969699999976],[115.38340710000011,-1.780108899999959],[115.38498550000008,-1.782201399999963],[115.37957760000006,-1.794901799999934],[115.38046010000005,-1.797152],[115.3743803000001,-1.7971077],[115.37696110000002,-1.802306499999929],[115.36611010000001,-1.807074299999954],[115.3644207000001,-1.814488],[115.36664150000001,-1.8170737],[115.36447450000003,-1.819137099999978],[115.36640950000003,-1.824981299999934],[115.37219020000009,-1.821063599999945],[115.37220850000006,-1.824924499999952],[115.370146,-1.828585499999974],[115.36024710000004,-1.826567599999976],[115.36147480000011,-1.830094499999973],[115.36443120000001,-1.830592199999955],[115.36309270000004,-1.8316291],[115.35932720000005,-1.830739599999959],[115.358816,-1.833905699999946],[115.3535872000001,-1.832091799999944],[115.35989,-1.836681],[115.36241030000008,-1.835593399999937],[115.3631759000001,-1.839146],[115.3647916000001,-1.8385345],[115.36688250000009,-1.841674699999942],[115.36645020000003,-1.843751899999972],[115.36164950000011,-1.847970799999928],[115.35164350000002,-1.848646799999926],[115.35336070000005,-1.850681899999927],[115.356214,-1.850649],[115.35923720000005,-1.8552252],[115.35855820000006,-1.858352199999956],[115.3629783,-1.863198799999964],[115.3655020000001,-1.863810599999965],[115.36944920000008,-1.862325399999975],[115.37148,-1.8663962],[115.37121860000002,-1.873341599999947],[115.37248740000007,-1.876529699999935],[115.3748465000001,-1.878647699999931],[115.38826510000001,-1.883112299999937],[115.3966349000001,-1.899840899999958],[115.39764470000011,-1.890203],[115.40006610000012,-1.8864538],[115.40533210000001,-1.88659],[115.40589440000008,-1.895728299999973],[115.40945910000005,-1.899796599999945],[115.41069730000004,-1.899518799999953],[115.40933840000002,-1.897765899999968],[115.4107739000001,-1.8932648],[115.41528440000002,-1.896506299999942],[115.41779020000001,-1.892038599999978],[115.42060790000005,-1.891969899999935],[115.41954650000002,-1.893634799999973],[115.42034970000009,-1.9005997],[115.41741860000002,-1.911817299999939],[115.41960620000009,-1.915142699999933],[115.42619800000011,-1.914676799999938],[115.43146050000007,-1.924145499999952],[115.42900980000002,-1.9302788],[115.4219518000001,-1.932836499999951],[115.42572540000003,-1.936377399999969],[115.4295029000001,-1.935763],[115.42985020000003,-1.938014899999928],[115.40428170000007,-1.989445399999966],[115.40846590000001,-2.058023399999968],[115.40663970000003,-2.060825499999964],[115.39590420000002,-2.061393199999941],[115.38695450000012,-2.064145599999961],[115.37896050000006,-2.064660599999968],[115.37261,-2.068520099999944],[115.35592620000011,-2.071971499999961],[115.35142640000004,-2.074146799999937],[115.34719490000009,-2.081387899999925],[115.34537580000006,-2.082254099999943],[115.33766530000003,-2.079983099999936],[115.32153870000002,-2.072136599999965],[115.3169157000001,-2.0857687],[115.31766070000003,-2.1240893],[115.309409,-2.133462399999928],[115.30356060000008,-2.136928499999954],[115.30940280000004,-2.149048],[115.32993520000002,-2.162627799999939],[115.32516970000006,-2.167756199999928],[115.3205180000001,-2.168046899999979],[115.319375,-2.169992899999954],[115.32133190000002,-2.179707099999973],[115.3189939,-2.186126499999943],[115.31511060000003,-2.190042699999935],[115.31501360000004,-2.193226599999946],[115.290729,-2.225570499999947],[115.26933150000002,-2.220359299999927],[115.26475190000008,-2.225570499999947],[115.26388340000005,-2.2211488],[115.25504010000009,-2.2084366],[115.24351230000002,-2.198724899999945],[115.244144,-2.196829899999955],[115.2411902,-2.196409099999926],[115.23919250000006,-2.200051199999962],[115.24620330000005,-2.205277],[115.24907280000002,-2.209436199999971],[115.24787420000007,-2.211855],[115.24282950000008,-2.215449199999966],[115.25357660000009,-2.239225599999941],[115.2490527000001,-2.244720899999948],[115.15375360000007,-2.304807099999948],[115.21274930000004,-2.339755699999955],[115.25055470000007,-2.354006099999935],[115.28250560000004,-2.358923199999936],[115.288205,-2.356743],[115.3044824000001,-2.345984099999953],[115.31065750000005,-2.343817899999976],[115.3246593,-2.345451399999945],[115.33905220000008,-2.342275599999937],[115.3558799000001,-2.341643599999941],[115.358491,-2.337909599999932],[115.36290080000003,-2.336333599999932],[115.37782390000007,-2.3247715],[115.38826090000009,-2.312633399999925],[115.40066630000001,-2.301492499999938],[115.44655710000006,-2.276158099999975],[115.4636011,-2.260683799999924],[115.48187410000003,-2.256175399999961],[115.4918818000001,-2.249783899999954],[115.50140480000005,-2.239488599999959],[115.509469,-2.218322299999954],[115.51821230000007,-2.207890499999962],[115.53894900000012,-2.197024399999975],[115.57838530000004,-2.181094],[115.58419890000005,-2.177521499999955],[115.58817380000005,-2.169117699999958],[115.59095090000005,-2.151859099999967],[115.59458250000012,-2.147912799999972],[115.59951110000009,-2.145514499999933],[115.6045236000001,-2.145096799999976],[115.62696170000004,-2.154814],[115.63388150000003,-2.153748],[115.63986310000007,-2.149910299999931],[115.65051360000007,-2.129727599999967],[115.66355980000003,-2.119600799999944],[115.67412650000006,-2.101729599999942],[115.69292540000004,-2.082423699999936],[115.70166860000006,-2.069152599999939],[115.70589530000007,-2.057873499999971],[115.70486530000005,-2.037010399999929],[115.71071710000001,-2.0240066],[115.71195300000011,-2.007279399999959],[115.7214441000001,-1.990307]]]},"properties":{"shapeName":"Tabalong","shapeISO":"","shapeID":"22746128B16499203224571","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[115.1860984000001,-8.247060099999942],[115.17982610000001,-8.24218049999996],[115.177066,-8.241950299999928],[115.1721262000001,-8.248746],[115.16688190000002,-8.250649599999974],[115.1638094000001,-8.255352899999934],[115.15983680000011,-8.2576764],[115.15635830000008,-8.258983899999976],[115.15521830000012,-8.258026099999938],[115.15300350000007,-8.260495799999944],[115.150368,-8.259871699999962],[115.14311280000004,-8.266439899999966],[115.13163880000002,-8.2723631],[115.12310840000009,-8.272612899999956],[115.11754050000002,-8.274361799999951],[115.11597,-8.277609799999937],[115.1092949,-8.278809499999966],[115.1114655,-8.281767299999956],[115.10900990000005,-8.285250799999972],[115.10934860000009,-8.297121199999935],[115.10831170000006,-8.299336299999936],[115.106106,-8.297867599999961],[115.10263060000011,-8.298594599999944],[115.10124870000004,-8.307143099999962],[115.0927709,-8.306920699999978],[115.08740410000007,-8.310928599999954],[115.07438310000009,-8.31153949999998],[115.07249380000007,-8.31443889999997],[115.0629805000001,-8.31231859999997],[115.06078760000003,-8.310178299999961],[115.05831200000011,-8.310791],[115.04920990000005,-8.306440899999927],[115.04424150000011,-8.307059799999934],[115.03663490000008,-8.302527899999973],[115.03037840000002,-8.300774099999956],[115.02427150000005,-8.301271],[115.02265790000001,-8.30650019999996],[115.01336260000005,-8.305408299999954],[115.01210850000007,-8.310054399999956],[115.01098170000012,-8.31028],[115.009021,-8.307091599999978],[115.0009404000001,-8.304088699999966],[114.9990183000001,-8.3001965],[114.9941047000001,-8.299792],[114.9918331,-8.2946162],[114.98701840000001,-8.289197],[114.98518510000008,-8.290425099999936],[114.9802439,-8.289719099999957],[114.98040810000009,-8.291475099999957],[114.98256390000006,-8.291832],[114.98302790000002,-8.296671899999978],[114.98080070000003,-8.296778899999936],[114.98077220000005,-8.2986111],[114.97703170000011,-8.30168059999994],[114.96508670000003,-8.305608799999959],[114.96232010000006,-8.313648],[114.95760430000007,-8.318769],[114.96065560000011,-8.3313677],[114.95814360000008,-8.332510099999979],[114.95889310000007,-8.333959199999981],[114.95533110000008,-8.338163699999939],[114.954762,-8.340110899999956],[114.95666790000007,-8.340988899999957],[114.95495470000003,-8.343837199999939],[114.9556543000001,-8.345500399999935],[114.95199290000005,-8.350726299999963],[114.95261390000007,-8.355037899999957],[114.95046530000002,-8.356365599999947],[114.94995130000007,-8.360655799999961],[114.9472,-8.361612],[114.935419,-8.356798799999979],[114.93561590000002,-8.35849449999995],[114.93405980000011,-8.3592726],[114.93513770000004,-8.360950099999968],[114.93356720000008,-8.360800199999971],[114.93165410000006,-8.363662699999963],[114.93271060000006,-8.364605],[114.93115550000005,-8.366617599999927],[114.9306825000001,-8.374230299999965],[114.9289394000001,-8.37624779999993],[114.93342840000003,-8.38045619999997],[114.93168670000011,-8.383083099999965],[114.93272890000003,-8.385181799999941],[114.93171460000008,-8.38616639999998],[114.93684,-8.391837499999951],[114.9370732000001,-8.394374],[114.93562170000007,-8.400394099999971],[114.930366,-8.405788299999926],[114.93055630000003,-8.407558599999959],[114.92867180000007,-8.4077871],[114.92861470000003,-8.411232499999926],[114.92438880000009,-8.414659],[114.92604490000008,-8.416372199999955],[114.92448390000004,-8.4217973],[114.927049,-8.425599699999964],[114.92712990000007,-8.4323324],[114.92534060000003,-8.432979599999953],[114.92861470000003,-8.43678669999997],[114.92728220000004,-8.4390901],[114.92848140000001,-8.440879399999972],[114.92553090000001,-8.442326099999946],[114.925036,-8.445866799999976],[114.92650250000008,-8.448457399999938],[114.92555070000003,-8.450194499999952],[114.92428960000007,-8.449968399999932],[114.92356390000009,-8.452633399999968],[114.92155320000006,-8.4527762],[114.92192210000007,-8.45437039999996],[114.92004230000009,-8.454358499999955],[114.92075610000006,-8.45602409999998],[114.91840050000008,-8.457618399999944],[114.91865030000008,-8.459617099999946],[114.9167705000001,-8.459581399999934],[114.91863840000008,-8.461996599999964],[114.91544990000011,-8.466101199999969],[114.91588840000009,-8.46767639999996],[114.93229020000001,-8.4755658],[114.9443275000001,-8.486076199999957],[114.95276840000008,-8.496720699999969],[114.96015450000004,-8.499732599999959],[114.96033060000002,-8.502264399999945],[114.9613637000001,-8.501070099999936],[114.9612221000001,-8.502312199999949],[114.97067730000003,-8.506002399999943],[114.97614890000011,-8.513387099999932],[114.98208130000012,-8.515981899999929],[114.99488180000003,-8.52756249999993],[114.99638560000005,-8.533594499999936],[114.99779190000004,-8.53362059999995],[114.99842300000012,-8.535475899999938],[114.99760440000011,-8.537377699999979],[114.99956680000003,-8.536955399999954],[115.00420020000001,-8.541029699999967],[115.00963270000011,-8.541952199999969],[115.01390910000009,-8.54735039999997],[115.01349030000006,-8.5484354],[115.01446120000003,-8.547797699999933],[115.0320372000001,-8.559107199999971],[115.04528290000007,-8.569861599999967],[115.05131370000004,-8.576861],[115.05280440000001,-8.576652799999977],[115.05730160000007,-8.580388599999935],[115.07077620000007,-8.593449],[115.08178050000004,-8.607123299999955],[115.08602320000011,-8.619794],[115.09189970000011,-8.62851319999993],[115.09921940000004,-8.635691599999973],[115.10124480000002,-8.634535099999937],[115.10183580000012,-8.631096],[115.10508180000011,-8.628128499999946],[115.10696890000008,-8.623153299999956],[115.11361470000008,-8.617321299999958],[115.11766290000003,-8.61558089999994],[115.11954870000011,-8.610938799999929],[115.12897490000012,-8.608044199999938],[115.1364661,-8.608810799999958],[115.13710230000004,-8.610960399999954],[115.13384770000005,-8.610807199999954],[115.1325991000001,-8.612928499999953],[115.13930230000005,-8.616066399999966],[115.14065710000011,-8.612487199999975],[115.14614530000006,-8.609495],[115.14670450000006,-8.60727019999996],[115.15066160000003,-8.606987499999946],[115.1510032000001,-8.6053388],[115.14906540000004,-8.603854699999943],[115.1501032000001,-8.601507799999979],[115.15604360000009,-8.600398],[115.15716070000008,-8.596886199999972],[115.15520950000007,-8.59507489999993],[115.15679190000003,-8.5924694],[115.14910840000005,-8.5916589],[115.150493,-8.582665299999974],[115.14936570000009,-8.582143],[115.15043330000003,-8.5794636],[115.153303,-8.577826499999958],[115.15295630000003,-8.572739399999932],[115.15592230000004,-8.567945899999927],[115.1556839000001,-8.565299899999957],[115.15910550000001,-8.560545299999944],[115.15994840000008,-8.554415799999958],[115.16191590000005,-8.551308099999972],[115.1630540000001,-8.5369783],[115.16440680000005,-8.534190799999976],[115.16363940000008,-8.531710199999964],[115.16459590000011,-8.530560899999955],[115.16763070000002,-8.533221099999935],[115.167849,-8.530552799999953],[115.1714,-8.525898],[115.17247440000006,-8.517403299999955],[115.1771940000001,-8.511149599999953],[115.17842150000001,-8.503998899999942],[115.18274070000007,-8.500033199999962],[115.18414740000003,-8.4932462],[115.18373940000004,-8.4894776],[115.17673230000003,-8.487250199999949],[115.17710040000009,-8.478722699999935],[115.18035420000001,-8.465688299999954],[115.17467220000003,-8.464084299999968],[115.17629570000008,-8.4594228],[115.18007590000002,-8.451792299999966],[115.184007,-8.448932099999979],[115.18380740000009,-8.447659699999974],[115.1854704000001,-8.447867299999928],[115.1847696000001,-8.446341699999948],[115.18811160000007,-8.445749599999942],[115.18888260000006,-8.443101599999977],[115.19295020000004,-8.445285599999977],[115.1983699000001,-8.445738699999936],[115.19760810000002,-8.451945399999943],[115.199782,-8.453273699999954],[115.19787780000001,-8.462631],[115.2001719000001,-8.472155499999928],[115.19565120000004,-8.489096899999936],[115.20250010000007,-8.48925369999995],[115.204465,-8.482257499999946],[115.20303220000005,-8.477169199999935],[115.20440460000009,-8.4733277],[115.2030142000001,-8.470071099999927],[115.20464650000008,-8.465830899999958],[115.20791380000003,-8.46272719999996],[115.20703070000002,-8.460077399999932],[115.21129650000012,-8.457305799999972],[115.21050240000011,-8.455761499999937],[115.21199720000004,-8.450844599999925],[115.21402450000005,-8.448655499999973],[115.21536650000007,-8.440893699999947],[115.21742240000003,-8.438678399999958],[115.21694050000008,-8.431409199999962],[115.21366000000012,-8.42449929999998],[115.21352640000009,-8.41929529999993],[115.21151250000003,-8.412901499999975],[115.20966840000006,-8.411277499999926],[115.21221570000012,-8.406033699999966],[115.2117558000001,-8.396824299999935],[115.20927260000008,-8.393197399999963],[115.21079590000011,-8.389485599999944],[115.20936820000009,-8.389420199999961],[115.2077584000001,-8.38615619999996],[115.2095488000001,-8.383421699999928],[115.20931960000007,-8.379968599999927],[115.20493470000008,-8.376574499999947],[115.19976770000005,-8.367858],[115.200077,-8.366299499999968],[115.19631740000011,-8.36207],[115.197741,-8.357838],[115.2035969000001,-8.350034599999958],[115.20214070000009,-8.347143899999935],[115.20301160000008,-8.344394399999942],[115.2017191000001,-8.333456199999944],[115.21219110000004,-8.33189649999997],[115.2123696000001,-8.329035099999942],[115.20774230000006,-8.323846],[115.2091746000001,-8.313017299999956],[115.2072243,-8.309967299999926],[115.20772310000007,-8.308127499999955],[115.20514850000006,-8.305463699999962],[115.20175070000005,-8.293184499999938],[115.19723460000012,-8.289682099999936],[115.1973253000001,-8.287654],[115.19365130000006,-8.284360899999967],[115.193117,-8.279071299999941],[115.1906,-8.277775399999939],[115.18804120000004,-8.273322899999926],[115.1904561,-8.263361299999929],[115.1889427000001,-8.258450099999948],[115.19044180000003,-8.255466299999966],[115.1860984000001,-8.247060099999942]]]},"properties":{"shapeName":"Tabanan","shapeISO":"","shapeID":"22746128B45523936709928","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[119.28167280000002,-5.450842899999941],[119.2762983,-5.448712],[119.27129190000005,-5.449328499999979],[119.26272920000008,-5.455694799999947],[119.26323090000005,-5.462266099999965],[119.26994490000004,-5.471682],[119.27412210000011,-5.4725027],[119.27472390000003,-5.4739346],[119.27246830000001,-5.476691899999935],[119.27225740000006,-5.483982799999978],[119.27742230000001,-5.493643399999939],[119.27673360000006,-5.500697099999968],[119.26969150000002,-5.499289799999929],[119.26778650000006,-5.5001336],[119.26719830000002,-5.502287],[119.2613583000001,-5.503384799999935],[119.25753590000011,-5.501845699999933],[119.25657150000006,-5.499100599999963],[119.25977630000011,-5.495025099999964],[119.25986450000005,-5.486778499999957],[119.2578271000001,-5.484156899999959],[119.25448690000007,-5.483930499999929],[119.24866580000003,-5.490047499999946],[119.24893480000003,-5.498173299999962],[119.24371090000011,-5.504527099999962],[119.2434809,-5.506798699999933],[119.24994070000002,-5.511913399999969],[119.25734340000008,-5.514036499999975],[119.25712030000011,-5.518100799999957],[119.25486050000006,-5.519782499999963],[119.25474930000007,-5.521934099999953],[119.25869970000008,-5.525743499999976],[119.2682436,-5.526304599999946],[119.27026120000005,-5.523667699999976],[119.27000630000009,-5.519366299999945],[119.27227510000012,-5.520074699999952],[119.272058,-5.525692499999934],[119.26789540000004,-5.528815599999973],[119.26754850000009,-5.5316852],[119.268393,-5.534191699999951],[119.272934,-5.536445],[119.2855694000001,-5.534484199999952],[119.28651390000005,-5.531970899999976],[119.29008870000007,-5.531120499999929],[119.29665040000009,-5.531573199999968],[119.30677060000005,-5.526992599999971],[119.30807790000006,-5.525792499999966],[119.30817820000004,-5.520892299999957],[119.31032450000009,-5.520764499999927],[119.31710220000002,-5.5154798],[119.319946,-5.510688499999958],[119.320482,-5.495150599999931],[119.31687050000005,-5.486440699999946],[119.31900470000005,-5.483205799999951],[119.31721650000009,-5.4812974],[119.32029950000003,-5.478779],[119.320287,-5.4755524],[119.31705330000011,-5.471979699999963],[119.31300280000005,-5.473071],[119.31158360000006,-5.476183599999956],[119.30967690000011,-5.476549499999976],[119.3023826000001,-5.4714388],[119.30846550000001,-5.471654399999977],[119.31525210000007,-5.46876],[119.3149906000001,-5.462785699999927],[119.30314980000003,-5.453748699999949],[119.29454580000004,-5.449120799999946],[119.28453720000005,-5.451429499999961],[119.28167280000002,-5.450842899999941]]],[[[119.23519620000002,-5.443000199999972],[119.22760040000003,-5.443876699999976],[119.2238056000001,-5.449540099999979],[119.22142840000004,-5.460759199999927],[119.22234170000002,-5.467219199999931],[119.224953,-5.469956499999967],[119.23395210000001,-5.463751799999955],[119.239191,-5.457307399999934],[119.2393393000001,-5.445310699999936],[119.23519620000002,-5.443000199999972]]],[[[119.229673,-5.4341607],[119.22223980000001,-5.433984099999975],[119.2169824,-5.438041699999928],[119.21667820000005,-5.4411456],[119.22187930000007,-5.444025099999976],[119.22529230000009,-5.439176299999929],[119.23013350000008,-5.437126299999932],[119.23101440000005,-5.435193599999934],[119.229673,-5.4341607]]],[[[119.19165320000002,-5.401679099999967],[119.1983576,-5.396477299999958],[119.1963445,-5.392636799999934],[119.19064260000005,-5.396168299999943],[119.1900045000001,-5.400763099999949],[119.19165320000002,-5.401679099999967]]],[[[119.34167290000005,-5.329684899999961],[119.34476780000011,-5.324218199999962],[119.34074830000009,-5.320336699999928],[119.33700580000004,-5.3197709],[119.3362863000001,-5.323607699999968],[119.34167290000005,-5.329684899999961]]],[[[119.34313320000001,-5.3167423],[119.34120560000008,-5.313044599999955],[119.34016810000003,-5.313516199999981],[119.34044460000007,-5.316145399999925],[119.34313320000001,-5.3167423]]],[[[119.42506190000006,-5.261703699999941],[119.42793630000006,-5.259158599999978],[119.42726190000008,-5.254702399999928],[119.42419910000001,-5.255177199999935],[119.423912,-5.260941299999956],[119.42506190000006,-5.261703699999941]]],[[[119.40126380000004,-5.233322599999951],[119.3981463,-5.2325166],[119.395525,-5.228574599999945],[119.39187530000004,-5.226264599999979],[119.39210260000004,-5.217500899999948],[119.38374990000011,-5.2144387],[119.38275180000005,-5.231931599999939],[119.37043870000002,-5.296187499999974],[119.36316140000008,-5.315676599999961],[119.35407870000006,-5.325543799999934],[119.3604458000001,-5.345059799999945],[119.35858790000009,-5.396269199999949],[119.36312280000004,-5.418919],[119.36653070000011,-5.424301799999967],[119.37398410000003,-5.430968199999938],[119.3811515000001,-5.447983299999976],[119.3828807000001,-5.450387899999953],[119.384901,-5.4493258],[119.3910681000001,-5.4559017],[119.39596740000002,-5.4573231],[119.4016974000001,-5.465648099999953],[119.40303820000008,-5.4710799],[119.4008338000001,-5.471958099999938],[119.40262550000011,-5.4716791],[119.40653640000005,-5.474942699999929],[119.4092571000001,-5.481247199999927],[119.4151491,-5.4877771],[119.41455890000009,-5.492521],[119.42219350000005,-5.496561499999927],[119.43183030000012,-5.512233299999934],[119.43540450000012,-5.525206799999978],[119.43457160000003,-5.536465899999939],[119.43583930000011,-5.538036499999976],[119.42456950000008,-5.547118699999942],[119.41983830000004,-5.5463893],[119.41790230000004,-5.560411099999953],[119.42375270000002,-5.567780499999969],[119.4246333000001,-5.576001799999972],[119.42980290000003,-5.582289199999934],[119.43280790000006,-5.583852199999967],[119.43317980000006,-5.586476299999958],[119.437956,-5.589567399999964],[119.44022790000008,-5.596595599999944],[119.45510590000004,-5.601046699999927],[119.45977750000009,-5.606326],[119.47292430000005,-5.607317399999943],[119.487325,-5.604814899999951],[119.48898240000005,-5.603976299999943],[119.48895590000006,-5.601903],[119.48301620000007,-5.595558399999959],[119.4848148000001,-5.590409899999941],[119.48794350000003,-5.588010599999961],[119.48615430000007,-5.583969099999933],[119.48433510000007,-5.584681799999942],[119.48154240000008,-5.589999],[119.47109050000006,-5.593522899999925],[119.46867080000004,-5.591138],[119.47022130000005,-5.586567199999934],[119.4650021000001,-5.585378],[119.460096,-5.581512199999963],[119.45954160000008,-5.578748899999937],[119.46116670000004,-5.5752804],[119.47247320000008,-5.568138],[119.47308910000004,-5.563887499999964],[119.47742470000003,-5.5641584],[119.48031820000006,-5.562718199999949],[119.4796027000001,-5.560949799999946],[119.4806933000001,-5.559661799999958],[119.48410440000009,-5.558915299999967],[119.48620090000009,-5.5608768],[119.4893389,-5.557646],[119.49292090000006,-5.559610199999952],[119.49490350000008,-5.558481099999938],[119.49766530000011,-5.559517699999958],[119.50284990000011,-5.558483499999966],[119.50533160000009,-5.552065],[119.50315450000005,-5.549832899999956],[119.50462990000005,-5.547169499999939],[119.503755,-5.546124799999973],[119.50578540000004,-5.5452395],[119.505296,-5.543632899999977],[119.50656120000008,-5.543790199999933],[119.50862720000009,-5.537219899999968],[119.51103090000004,-5.536798599999941],[119.50531690000003,-5.523264199999971],[119.48717170000009,-5.510958399999936],[119.48860660000003,-5.505059599999925],[119.48615780000011,-5.4992312],[119.48682010000005,-5.492418199999975],[119.49120870000002,-5.492214499999932],[119.49226320000002,-5.4907392],[119.49589430000003,-5.4913164],[119.49634920000005,-5.488476099999957],[119.501502,-5.492151299999932],[119.50549990000002,-5.492144599999961],[119.50600330000009,-5.4909004],[119.51195460000008,-5.492017099999941],[119.51363110000011,-5.489373199999932],[119.52154230000008,-5.485399299999926],[119.51751960000001,-5.475275799999963],[119.509634,-5.468747399999927],[119.50805180000009,-5.462002699999971],[119.50538570000003,-5.459998399999961],[119.5057375,-5.457032399999946],[119.52356010000005,-5.446058199999925],[119.523751,-5.443843199999947],[119.52164540000001,-5.440526099999943],[119.52421760000004,-5.440434],[119.52734380000004,-5.436444199999926],[119.52845780000007,-5.437018],[119.52993120000008,-5.431905499999971],[119.536422,-5.435240199999953],[119.54188250000004,-5.433473],[119.5495671000001,-5.436531399999978],[119.55085780000002,-5.440005499999927],[119.55640170000004,-5.440397699999949],[119.56203090000008,-5.442425299999968],[119.56461720000004,-5.445152699999937],[119.56679580000002,-5.443715499999939],[119.57342690000007,-5.446859299999971],[119.583518,-5.441149699999926],[119.59201140000005,-5.441293899999948],[119.60016970000004,-5.4395417],[119.6082626000001,-5.440970799999945],[119.61239970000008,-5.437337899999932],[119.6328138,-5.434917599999949],[119.63617110000007,-5.431197699999927],[119.637632,-5.4254252],[119.63374870000007,-5.424249799999927],[119.63082680000002,-5.427318799999966],[119.630216,-5.423115299999949],[119.63230340000007,-5.420631299999968],[119.62735910000004,-5.420551699999976],[119.62732010000002,-5.419175],[119.62877130000004,-5.417074],[119.6344841,-5.417504299999962],[119.63740670000004,-5.413806099999931],[119.641493,-5.414318499999979],[119.64536410000005,-5.407095599999934],[119.64698980000003,-5.396718299999975],[119.64368980000006,-5.392676299999948],[119.64271940000003,-5.387777],[119.63753990000009,-5.384901699999944],[119.6368821000001,-5.380536199999938],[119.63313750000009,-5.376217199999928],[119.63054250000005,-5.37656],[119.623454,-5.373725],[119.61757770000008,-5.367562],[119.6170763,-5.362399099999948],[119.61915090000002,-5.356173099999978],[119.61547590000009,-5.347932299999968],[119.60670280000011,-5.340312199999971],[119.60455630000001,-5.340100799999959],[119.6031355,-5.336793899999975],[119.59975180000004,-5.334479699999974],[119.60166320000008,-5.331965499999967],[119.6007859,-5.329434499999934],[119.59334410000008,-5.321543299999973],[119.59509060000005,-5.3173431],[119.58552170000007,-5.301892699999939],[119.58512140000005,-5.295215699999972],[119.59067520000008,-5.296194299999968],[119.59331530000009,-5.293400499999962],[119.58473150000009,-5.289401099999964],[119.58127660000002,-5.292500399999938],[119.57803510000008,-5.289904199999967],[119.56602580000003,-5.292403799999931],[119.56058270000005,-5.290938599999947],[119.55324570000005,-5.2957331],[119.54875160000006,-5.295435599999962],[119.5438736000001,-5.300351],[119.54350290000002,-5.304254499999956],[119.54183220000004,-5.306324599999925],[119.53778320000004,-5.305677],[119.53112670000007,-5.3015957],[119.52893590000008,-5.298000199999933],[119.52083630000004,-5.301465699999937],[119.5117007,-5.309856299999979],[119.50220090000005,-5.31254],[119.50548830000002,-5.316966899999954],[119.50454220000006,-5.320881199999974],[119.5019565,-5.323309299999949],[119.49631690000001,-5.319821699999977],[119.49142470000004,-5.320561899999973],[119.4921538000001,-5.315606799999955],[119.48882430000003,-5.314039099999945],[119.48715850000008,-5.316546099999925],[119.48519890000011,-5.315907399999958],[119.48254310000004,-5.311658199999954],[119.47931720000008,-5.312053399999968],[119.47846650000008,-5.313992699999972],[119.47090920000005,-5.315069699999981],[119.4669583000001,-5.312345099999959],[119.46393150000006,-5.312955199999976],[119.4674232000001,-5.317592499999932],[119.4672829000001,-5.31974],[119.46260240000004,-5.322953899999959],[119.45919890000005,-5.320628499999941],[119.45716020000009,-5.320812899999964],[119.4558373000001,-5.322697599999969],[119.45633260000011,-5.329805699999952],[119.46011340000007,-5.330884],[119.46636160000003,-5.326989499999968],[119.47147870000003,-5.325877899999966],[119.474196,-5.326510599999949],[119.47547740000005,-5.330190099999925],[119.4676852,-5.335825],[119.46583140000007,-5.342078899999933],[119.46212280000009,-5.345847399999968],[119.46171230000004,-5.350527299999953],[119.45771480000008,-5.355329899999958],[119.44958770000005,-5.356351199999949],[119.44748770000001,-5.365360199999941],[119.4489211,-5.369488],[119.4490138000001,-5.367892299999937],[119.45024320000005,-5.3677965],[119.4560143000001,-5.369067399999949],[119.45740850000004,-5.371099199999946],[119.45707820000007,-5.375502599999948],[119.44736580000006,-5.383132899999964],[119.44161720000011,-5.385205499999927],[119.4397302000001,-5.387911299999928],[119.4414723000001,-5.393883099999925],[119.44001810000009,-5.395568399999945],[119.43539640000006,-5.395716799999946],[119.43269530000009,-5.394076799999937],[119.42648190000011,-5.397974899999952],[119.42690290000007,-5.400671699999975],[119.4300449000001,-5.4043488],[119.42840920000003,-5.412389399999938],[119.42542340000011,-5.413840799999946],[119.42361520000009,-5.416983899999934],[119.42391490000011,-5.422725699999944],[119.4282002000001,-5.426497299999937],[119.43266730000005,-5.427754299999947],[119.43509690000008,-5.431060899999977],[119.4333358,-5.437779899999953],[119.42858520000004,-5.4395899],[119.41873260000011,-5.438281599999925],[119.419786,-5.433306099999925],[119.41708990000006,-5.419316199999969],[119.42136160000007,-5.410305799999946],[119.40977270000008,-5.4109337],[119.40747540000007,-5.408322399999975],[119.40127450000011,-5.407790099999943],[119.39940480000007,-5.413285499999972],[119.39553,-5.416456499999981],[119.39226440000004,-5.415906799999959],[119.3913768000001,-5.413705599999957],[119.38457190000008,-5.414108099999964],[119.38295420000009,-5.415919199999962],[119.3808514000001,-5.415642699999978],[119.38056260000008,-5.421450799999946],[119.37892330000011,-5.423869399999944],[119.37528320000001,-5.423365799999942],[119.370548,-5.425438899999961],[119.36663940000005,-5.421930499999974],[119.36601990000008,-5.4178098],[119.36367750000011,-5.416695499999946],[119.36322480000001,-5.408917599999938],[119.36955950000004,-5.400920399999961],[119.37285660000009,-5.391534199999967],[119.37815980000005,-5.389253799999949],[119.38724490000004,-5.388504199999943],[119.3926891000001,-5.3857601],[119.39372630000003,-5.381555099999957],[119.38959390000002,-5.3766],[119.38844490000008,-5.371443399999976],[119.39091710000002,-5.368270099999961],[119.3958967000001,-5.367382899999939],[119.39814680000006,-5.3621589],[119.40074310000011,-5.361030199999959],[119.40628330000004,-5.351747899999964],[119.40172990000008,-5.348561699999948],[119.40006630000005,-5.344218499999954],[119.4060449000001,-5.330443899999977],[119.39885040000001,-5.327081299999975],[119.39410650000002,-5.32282],[119.3924952000001,-5.310714599999926],[119.39048770000011,-5.305725499999937],[119.38831730000004,-5.303129],[119.38586270000008,-5.304223099999945],[119.38257270000008,-5.302825699999971],[119.377779,-5.297131599999943],[119.3761032000001,-5.292049199999951],[119.3802157,-5.281812099999968],[119.38511950000009,-5.2781129],[119.38621350000005,-5.269440499999973],[119.398065,-5.260157399999969],[119.3998487,-5.256218699999977],[119.40775610000003,-5.2526631],[119.40920440000002,-5.248411399999952],[119.40352120000011,-5.244156],[119.40397260000009,-5.235007099999962],[119.40126380000004,-5.233322599999951]],[[119.42940470000008,-5.452551099999937],[119.43129010000007,-5.458595099999968],[119.42966690000003,-5.460511599999961],[119.42540010000005,-5.460086299999944],[119.42250030000002,-5.469272199999978],[119.42150590000006,-5.467736299999956],[119.42338390000009,-5.463773199999935],[119.41905170000007,-5.454152699999952],[119.42784350000011,-5.451215499999932],[119.42940470000008,-5.452551099999937]]]]},"properties":{"shapeName":"Takalar","shapeISO":"","shapeID":"22746128B76868748602342","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[133.50658010000006,-0.747705099999962],[133.5083198000001,-0.743480099999942],[133.48435920000009,-0.740354799999977],[133.45245670000008,-0.740427699999941],[133.4182740000001,-0.736365099999944],[133.3952640000001,-0.740686],[133.389481,-0.739691],[133.373657,-0.72503],[133.34993,-0.714875],[133.321533,-0.698632],[133.28996340000003,-0.660557799999935],[133.27222410000002,-0.650568499999963],[133.24969080000005,-0.627465],[133.24705240000003,-0.618870799999968],[133.2386504000001,-0.611983899999927],[133.237045,-0.608619],[133.227951,-0.603039],[133.22587350000003,-0.600274899999931],[133.196709,-0.5916792],[133.179151,-0.584842399999957],[133.17355730000008,-0.580647099999965],[133.1721394000001,-0.577527699999962],[133.16280930000005,-0.572184199999924],[133.15833,-0.566973599999926],[133.15926220000006,-0.553610799999944],[133.15164860000004,-0.546152599999971],[133.14468620000002,-0.543637],[133.12729350000006,-0.544979799999965],[133.12279390000003,-0.553214899999944],[133.1121128000001,-0.5514331],[133.10777970000004,-0.548309299999971],[133.0960689000001,-0.545549799999947],[133.0870192000001,-0.538196899999946],[133.08156630000008,-0.528355199999964],[133.08150410000007,-0.517239599999925],[133.07061180000005,-0.517239599999925],[133.07067140000004,-0.520216299999959],[133.06986430000006,-0.516003199999943],[133.0591680000001,-0.519445599999926],[133.0514469000001,-0.518894099999955],[133.04997880000008,-0.515824299999963],[133.0470471000001,-0.515485],[133.04151980000006,-0.520548599999927],[133.03724560000012,-0.521238],[133.03076540000006,-0.519445599999926],[133.026916,-0.516891899999962],[133.02464740000005,-0.513242499999933],[133.01616080000008,-0.529536099999973],[133.00700360000008,-0.50198],[132.9995113000001,-0.4915741],[133.002425,-0.481584399999974],[132.9850692000001,-0.480715499999974],[132.97140510000008,-0.476021599999967],[132.96187810000004,-0.47451],[132.96974390000003,-0.452310599999976],[132.96195610000007,-0.440535299999965],[132.9561973000001,-0.439283399999965],[132.92550030000007,-0.452154199999939],[132.90505030000008,-0.447433499999931],[132.89427100000012,-0.448631199999966],[132.886965,-0.446235799999954],[132.8801380000001,-0.447792799999945],[132.86169330000007,-0.437492499999962],[132.8292355000001,-0.424677],[132.81115010000008,-0.415454699999941],[132.80168820000006,-0.413538399999936],[132.78827390000004,-0.406591699999979],[132.77509910000003,-0.396770499999946],[132.7693511000001,-0.397365099999945],[132.7564383,-0.383079799999962],[132.7485455000001,-0.387722599999961],[132.7137245,-0.373794199999963],[132.709546,-0.362187199999937],[132.7099,-0.356934099999933],[132.70188080000003,-0.358925199999931],[132.69143910000003,-0.3663657],[132.67565360000003,-0.365437199999974],[132.64733250000006,-0.357080099999962],[132.63990400000012,-0.360330099999942],[132.60090450000007,-0.355223],[132.581869,-0.356615899999952],[132.52597570000012,-0.353666],[132.5032827000001,-0.358393699999965],[132.43047610000008,-0.343737899999951],[132.40920140000003,-0.344683399999951],[132.38225350000005,-0.363594199999966],[132.36253130000011,-0.359805],[132.35851,-0.368422199999941],[132.3441481000001,-0.377613699999927],[132.32088190000002,-0.381922299999928],[132.2892482000001,-0.381086],[132.2685897,-0.376715899999965],[132.25746590000006,-0.379496899999936],[132.25627410000004,-0.394593499999928],[132.2441904000001,-0.4005006],[132.19306270000004,-0.409227399999963],[132.1621788000001,-0.425032499999929],[132.1452869000001,-0.446001799999976],[132.10434380000004,-0.463903],[132.0786333000001,-0.4828788],[132.07108510000012,-0.492142499999943],[132.07382990000008,-0.506209599999977],[132.07280060000005,-0.5151302],[132.05907660000003,-0.536402399999929],[132.02145,-0.5500146],[132.04149010000003,-0.582604],[132.09854360000008,-0.643223299999931],[132.13594180000007,-0.654865],[132.12399,-0.675212599999952],[132.10273130000007,-0.683044799999948],[132.05005870000002,-0.7188839],[132.03373390000002,-0.723697299999969],[132.0294053,-0.7412837],[132.02833470000007,-0.755736699999943],[132.03364520000002,-0.780695899999955],[132.05928,-0.777508399999931],[132.11091540000007,-0.831490899999949],[132.17944080000007,-0.8794587],[132.15597660000003,-0.890880899999956],[132.15130030000012,-0.895557199999928],[132.14369050000005,-0.900123],[132.13727740000002,-0.924256899999932],[132.1466647000001,-0.928924099999961],[132.15330740000002,-0.935649299999966],[132.12499780000007,-0.991091399999959],[131.97189030000004,-1.050508899999954],[131.94192670000007,-1.0521151],[131.93787440000006,-1.0612325],[131.97908,-1.063263],[132.0253507000001,-1.067743499999949],[132.09185800000012,-1.069793],[132.114319,-1.067032],[132.160095,-1.06833],[132.1828,-1.06703],[132.225525,-1.071611],[132.2276,-1.069544],[132.263474,-1.074965],[132.279709,-1.073898],[132.311203,-1.076876],[132.330734,-1.074718],[132.344162,-1.079491],[132.367096,-1.083184],[132.381378,-1.08735],[132.429596,-1.088774],[132.438873,-1.091713],[132.446808,-1.091483],[132.452789,-1.088449],[132.47608900000012,-1.093848],[132.4872130000001,-1.094441],[132.4927060000001,-1.116543],[132.505661,-1.12652],[132.581268,-1.133245],[132.581223,-1.134424],[132.675995,-1.145474],[132.7088010000001,-1.160487],[132.7126310000001,-1.162801],[132.7319030000001,-1.168663],[132.794418,-1.172111],[132.820908,-1.179425],[132.863998,-1.187797],[132.947418,-1.200426],[132.96933,-1.207765],[132.988235,-1.210531],[133.005432,-1.2156],[133.032135,-1.220504],[133.110382,-1.230866],[133.175156,-1.246119],[133.234177,-1.257846],[133.249207,-1.262354],[133.29318200000012,-1.266131499999972],[133.301666,-1.269298],[133.3344290000001,-1.27542],[133.34343580000007,-1.257536399999935],[133.36058260000004,-1.2060959],[133.36725080000008,-1.194664699999976],[133.40535490000002,-1.145129399999973],[133.4205965000001,-1.1155988],[133.45584270000006,-1.069873899999948],[133.4634635000001,-1.0546323],[133.4644161000001,-1.044153699999924],[133.46917910000002,-1.030817299999967],[133.46917910000002,-1.018540799999926],[133.50380710000002,-1.005074399999955],[133.51672130000009,-0.998617299999978],[133.51672130000009,-0.974328499999956],[133.5113441000001,-0.964281699999958],[133.4975644000001,-0.922483199999931],[133.48811480000006,-0.887440799999979],[133.47981650000008,-0.884121499999935],[133.47007710000003,-0.883760799999948],[133.46973140000011,-0.860812],[133.47315260000005,-0.810349199999962],[133.4837013,-0.773571199999935],[133.49568120000004,-0.763694599999951],[133.50067860000001,-0.754287599999941],[133.50658010000006,-0.747705099999962]]]},"properties":{"shapeName":"Tambrauw","shapeISO":"","shapeID":"22746128B58798862539154","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[117.41697320000003,3.361617500000023],[117.4198295000001,3.371910300000025],[117.41654620000008,3.383442900000034],[117.4150509000001,3.377628700000059],[117.41697320000003,3.361617500000023]]],[[[117.41722090000007,3.421142700000075],[117.3724678000001,3.440472500000055],[117.36656970000001,3.440721100000076],[117.36669970000003,3.425875500000075],[117.36988720000011,3.415466400000071],[117.39693430000011,3.407484700000055],[117.4089560000001,3.398801200000037],[117.41585650000002,3.390469600000074],[117.42041050000012,3.380790500000046],[117.42173060000005,3.373464600000034],[117.41607230000011,3.344429200000036],[117.4159816,3.340544600000044],[117.41782280000007,3.339482700000076],[117.4247004,3.340701500000023],[117.43586080000011,3.349705],[117.43594160000009,3.354018500000052],[117.439021,3.361666900000046],[117.43708210000011,3.370407100000023],[117.43791470000008,3.379293700000062],[117.44426650000003,3.398699300000033],[117.4424739000001,3.410497500000076],[117.43811320000009,3.417575700000043],[117.42597550000005,3.419836600000053],[117.42278320000003,3.418734100000052],[117.42505010000002,3.419995800000038],[117.41722090000007,3.421142700000075]]],[[[117.38808860000006,3.322965400000044],[117.3954758000001,3.322391700000026],[117.40912970000011,3.326409200000057],[117.41523350000011,3.336758900000063],[117.41244690000008,3.342951600000049],[117.41443970000012,3.36461550000007],[117.41292830000009,3.376301700000056],[117.41433880000011,3.385735200000056],[117.41342,3.39004790000007],[117.39408540000011,3.406148700000074],[117.37353010000004,3.410237],[117.3697787000001,3.412500600000044],[117.36500890000002,3.420307200000025],[117.36287510000011,3.430246900000043],[117.36184220000007,3.428002900000024],[117.3606109000001,3.428627500000061],[117.35881770000003,3.42688510000005],[117.36065070000006,3.428772600000059],[117.36173170000006,3.42826690000004],[117.36276540000006,3.430905200000041],[117.36087870000006,3.443105500000058],[117.35681040000009,3.448288500000046],[117.35265070000003,3.449656300000072],[117.32589130000008,3.451262],[117.3065497,3.449120100000073],[117.3043176000001,3.447253100000069],[117.30374890000007,3.441860900000052],[117.312691,3.417811400000062],[117.325485,3.406950900000027],[117.331917,3.398218500000041],[117.33332050000001,3.39078150000006],[117.33117260000006,3.379551500000048],[117.34424110000009,3.372915800000044],[117.34913230000006,3.368707900000061],[117.36637860000008,3.371700400000066],[117.36916940000003,3.373296100000061],[117.37058030000003,3.370277300000055],[117.37251820000006,3.370821800000044],[117.37306190000004,3.368692800000076],[117.37145940000005,3.366568800000039],[117.36792570000011,3.366220500000054],[117.37112760000002,3.356996500000037],[117.38649910000004,3.347818700000062],[117.39145730000007,3.342481100000043],[117.38808860000006,3.322965400000044]]],[[[117.40016780000008,3.451648300000045],[117.3949649000001,3.451345500000059],[117.40320870000005,3.446467100000064],[117.41796020000004,3.444225600000038],[117.4106614000001,3.448956700000053],[117.40016780000008,3.451648300000045]]],[[[117.43414980000011,3.453844200000049],[117.4276506000001,3.45374860000004],[117.44602060000011,3.442903200000046],[117.46011560000011,3.438101500000073],[117.46003990000008,3.441950400000053],[117.4575628,3.446705400000042],[117.45394050000004,3.449253700000042],[117.44364710000002,3.453181100000052],[117.43414980000011,3.453844200000049]]],[[[117.29549280000003,3.464707200000021],[117.29762180000012,3.46582010000003],[117.2829441,3.46879],[117.27652410000007,3.468777600000067],[117.28138760000002,3.465130400000021],[117.29549280000003,3.464707200000021]]],[[[117.34433590000003,3.469487100000038],[117.3359286000001,3.473682600000075],[117.32753980000007,3.474126400000046],[117.34433590000003,3.469487100000038]]],[[[117.33154380000008,3.482208600000035],[117.32409710000002,3.488279100000057],[117.3166824000001,3.484213100000034],[117.32606050000004,3.481930300000045],[117.33154380000008,3.482208600000035]]],[[[117.41011190000006,3.550087500000075],[117.41246560000002,3.553741800000068],[117.41187930000001,3.557875700000068],[117.40839380000011,3.56053460000004],[117.4038571000001,3.561042800000052],[117.406458,3.552774300000067],[117.41011190000006,3.550087500000075]]],[[[117.32566880000002,3.571617700000047],[117.33110310000006,3.574230900000032],[117.33265930000005,3.57721470000007],[117.32386480000002,3.574859],[117.32045270000003,3.572346300000049],[117.32566880000002,3.571617700000047]]],[[[117.31467710000004,3.570962500000064],[117.334649,3.582547],[117.311944,3.580923700000028],[117.30894910000006,3.575558200000046],[117.31467710000004,3.570962500000064]]],[[[117.395824,3.584815],[117.39386720000005,3.58458],[117.39416850000009,3.582877300000064],[117.40335510000011,3.571909800000071],[117.40519460000007,3.568066300000055],[117.41189580000002,3.565113800000063],[117.41624880000006,3.566169900000034],[117.4162526,3.574665300000049],[117.41263990000004,3.582860700000026],[117.395824,3.584815]]],[[[117.38578,3.585666900000035],[117.37706750000007,3.58402030000002],[117.36722650000002,3.579780600000049],[117.40330620000009,3.568890100000033],[117.40328080000006,3.570995100000061],[117.39410710000004,3.582305600000041],[117.39279380000005,3.584867200000076],[117.38578,3.585666900000035]]],[[[117.24806730000012,3.588147700000036],[117.23660410000002,3.586754300000052],[117.21955350000007,3.572031600000059],[117.2110149,3.554707200000053],[117.20141600000011,3.539910200000065],[117.22501160000002,3.502244700000062],[117.23076860000003,3.49675940000003],[117.26511640000001,3.487372200000038],[117.29266020000011,3.484351200000049],[117.29965770000001,3.484797800000024],[117.32495740000002,3.491021300000057],[117.34764890000008,3.484100200000057],[117.37841990000004,3.470689900000025],[117.41258970000001,3.465493500000036],[117.42825550000009,3.459565],[117.44915460000004,3.455293100000063],[117.46177770000008,3.449270500000068],[117.4689982000001,3.443455700000072],[117.47463550000009,3.43658030000006],[117.48281780000002,3.432374500000037],[117.4857525000001,3.432813400000043],[117.48764060000008,3.436125200000049],[117.48663770000007,3.449951200000044],[117.49131040000009,3.457780600000035],[117.50205750000009,3.467259200000058],[117.5111654000001,3.471973900000023],[117.51776240000004,3.481199300000071],[117.50496140000007,3.497495700000059],[117.49926790000006,3.496401800000058],[117.49140380000006,3.492467300000044],[117.4850282000001,3.491922300000056],[117.48012160000007,3.493585100000075],[117.46900290000008,3.505291700000043],[117.45735180000008,3.50923],[117.4531856000001,3.509061200000076],[117.44408940000005,3.503811600000063],[117.43976060000011,3.504572200000041],[117.43543610000006,3.508633],[117.43431270000008,3.513946500000031],[117.43498330000011,3.523395],[117.43765810000002,3.528919100000053],[117.42771260000006,3.532942400000024],[117.41520280000009,3.534982700000057],[117.407137,3.53793150000007],[117.40038310000011,3.548151300000029],[117.37109590000011,3.56256170000006],[117.35992170000009,3.565264900000045],[117.33813970000006,3.565467800000022],[117.3110517,3.559860100000037],[117.30235750000008,3.560348400000066],[117.29019130000006,3.565512900000044],[117.28241470000012,3.572968500000059],[117.27964490000011,3.577801600000043],[117.2763073000001,3.579546300000061],[117.27721,3.582031900000061],[117.27595330000008,3.585938700000042],[117.278266,3.587587800000051],[117.24806730000012,3.588147700000036]]],[[[117.42231990000005,3.600744300000031],[117.40379140000005,3.610713200000021],[117.3895361000001,3.613681],[117.36259810000001,3.60548540000002],[117.32684590000008,3.60066530000006],[117.30189270000005,3.601004300000056],[117.29503680000005,3.599592200000075],[117.29189,3.596953100000064],[117.29559780000011,3.591860300000064],[117.29944480000006,3.581911500000047],[117.30250110000009,3.578447500000038],[117.31203460000006,3.584243100000037],[117.32659110000009,3.586500900000033],[117.37815660000001,3.590120500000069],[117.39665630000002,3.589971200000036],[117.40940920000003,3.588308300000051],[117.41748340000004,3.584203100000025],[117.42424170000004,3.577788400000031],[117.43149060000007,3.565267400000039],[117.43562090000012,3.562201100000038],[117.4519193000001,3.564859400000046],[117.46037790000003,3.568736600000022],[117.45920840000008,3.578328900000031],[117.45648840000001,3.582242800000074],[117.42231990000005,3.600744300000031]]],[[[117.54544190000001,3.580549200000064],[117.5485159000001,3.581708300000059],[117.54964970000003,3.584811400000035],[117.549375,3.598695300000031],[117.54338260000009,3.607259700000043],[117.52275,3.615303400000073],[117.51725090000002,3.614552600000025],[117.51389310000002,3.611753100000044],[117.5070141000001,3.594082300000025],[117.52487870000004,3.589219200000059],[117.54124350000006,3.581209],[117.54544190000001,3.580549200000064]]],[[[117.05880960000002,3.615901400000041],[117.05839560000004,3.618664],[117.0502388000001,3.615761],[117.04155380000009,3.609526800000026],[117.04019750000009,3.604553800000076],[117.04302910000001,3.604173],[117.05340350000006,3.61019310000006],[117.05708390000007,3.612724800000024],[117.05880960000002,3.615901400000041]]],[[[117.370015,3.622581900000057],[117.36087920000011,3.62363490000007],[117.34247110000001,3.622170700000026],[117.32367550000004,3.618101300000035],[117.31937430000005,3.614258900000038],[117.32288720000008,3.612608100000045],[117.33613340000011,3.611381700000038],[117.35754240000006,3.613499600000068],[117.36343640000007,3.615476800000067],[117.37172590000011,3.620742800000073],[117.370015,3.622581900000057]]],[[[117.1009706000001,3.614878600000054],[117.10718120000001,3.620666500000027],[117.10275180000008,3.623525400000062],[117.0963789000001,3.624020400000063],[117.0907628000001,3.619095500000071],[117.09550020000006,3.615952100000072],[117.1009706000001,3.614878600000054]]],[[[117.37789940000005,3.636566],[117.36742390000006,3.632233],[117.37279080000008,3.628971300000046],[117.38492270000006,3.630698900000027],[117.3818199000001,3.634886700000038],[117.37789940000005,3.636566]]],[[[117.40014970000004,3.634777900000074],[117.39155390000008,3.637484500000028],[117.38254280000001,3.636331600000062],[117.3837883000001,3.63437730000004],[117.38965030000008,3.632309200000066],[117.40279680000003,3.630822100000046],[117.40223170000002,3.63364770000004],[117.40014970000004,3.634777900000074]]],[[[117.48215590000007,3.637394900000061],[117.4760467000001,3.646973800000069],[117.473859,3.645861900000057],[117.46848390000002,3.637718900000039],[117.46217190000004,3.637174],[117.45700420000003,3.633476600000051],[117.43523520000008,3.640907800000036],[117.43347280000012,3.638566900000058],[117.43311890000007,3.632085500000073],[117.4300895,3.624142800000072],[117.442899,3.616603],[117.46722960000011,3.609250800000041],[117.4906069000001,3.598143100000073],[117.49564090000001,3.598356100000046],[117.5033707,3.605644400000074],[117.51264420000007,3.61874],[117.52113310000004,3.636835200000064],[117.51704410000002,3.638722200000075],[117.51032270000007,3.634600800000044],[117.50522610000007,3.634232800000063],[117.49572820000003,3.637412600000062],[117.49079350000011,3.634427500000072],[117.48736280000003,3.634093700000051],[117.48215590000007,3.637394900000061]]],[[[117.49342180000008,3.667594500000064],[117.49175360000004,3.668642600000055],[117.48938420000002,3.665687700000035],[117.488732,3.655498800000032],[117.49737960000004,3.63993750000003],[117.5033568,3.638856600000054],[117.50783540000009,3.635724],[117.51382460000002,3.640135300000054],[117.52095170000007,3.640348300000028],[117.51817580000011,3.651192500000036],[117.51247330000001,3.659014400000046],[117.50275450000004,3.668212600000061],[117.49342180000008,3.667594500000064]]],[[[117.29930860000002,3.419344600000045],[117.30404640000006,3.410974800000076],[117.30783860000008,3.410656900000049],[117.30878460000008,3.414682500000026],[117.30362690000004,3.422411300000022],[117.2974167000001,3.438397900000041],[117.29710420000004,3.44226210000005],[117.29942320000009,3.449253500000054],[117.30502430000001,3.454743500000063],[117.3206219000001,3.459319100000073],[117.32230120000008,3.460922800000048],[117.321743,3.462496],[117.31570520000002,3.465833100000054],[117.30763230000002,3.466019500000073],[117.29525770000009,3.463862],[117.28430220000007,3.463932600000021],[117.2839408000001,3.461806700000068],[117.28332250000005,3.461560100000042],[117.28237160000003,3.462186300000042],[117.28178660000003,3.46023770000005],[117.282251,3.462215],[117.28253170000005,3.462306],[117.28329450000001,3.461637400000029],[117.28380780000009,3.461840700000039],[117.28403590000005,3.46400680000005],[117.28123940000012,3.464643900000056],[117.27517740000008,3.468775500000049],[117.2532996000001,3.471355100000039],[117.24165460000006,3.477090300000043],[117.22975450000001,3.486203100000068],[117.22320490000004,3.48938],[117.22114570000008,3.486068800000055],[117.22251110000002,3.460655700000075],[117.22514340000009,3.45122820000006],[117.22810250000009,3.447066300000074],[117.22556330000009,3.442606400000045],[117.224083,3.442814800000065],[117.21723170000007,3.437207300000068],[117.20143120000012,3.434134800000038],[117.191948,3.429061500000046],[117.17983250000009,3.42530030000006],[117.176773,3.425509],[117.17350770000007,3.429218800000058],[117.17182170000001,3.429327700000044],[117.171402,3.423818200000028],[117.17318730000011,3.413974800000062],[117.17202760000009,3.411957500000028],[117.16865530000007,3.411958100000049],[117.16370390000009,3.417151900000022],[117.16391750000003,3.412284600000021],[117.15959940000005,3.404450700000041],[117.15759290000005,3.391477700000053],[117.15791330000002,3.403654800000027],[117.1629716000001,3.413497100000029],[117.16065230000004,3.417098100000032],[117.1642379000001,3.419214500000066],[117.1677092000001,3.413921500000072],[117.17139430000009,3.413387],[117.17013540000005,3.429798400000038],[117.17319490000011,3.43112780000007],[117.17824550000012,3.426784300000065],[117.18636330000004,3.429533],[117.18467710000004,3.44308570000004],[117.18270430000007,3.445951300000047],[117.1871033000001,3.442985700000065],[117.18667590000007,3.432391800000062],[117.18825520000007,3.430383100000029],[117.20491040000002,3.43916420000005],[117.22113810000008,3.443349300000023],[117.21324160000006,3.467804900000033],[117.21440110000003,3.480986],[117.217601,3.492825100000061],[117.21099310000011,3.50163850000007],[117.20721620000006,3.516441600000064],[117.19620870000006,3.527228200000025],[117.19342690000008,3.535995200000059],[117.19513960000006,3.543727700000034],[117.207261,3.569516700000065],[117.21226290000004,3.57636350000007],[117.224319,3.587407700000028],[117.22708690000002,3.59192580000007],[117.22744240000009,3.600558],[117.220876,3.609050400000058],[117.20071430000007,3.61107080000005],[117.17328810000004,3.619637600000033],[117.16043690000004,3.618922500000053],[117.13247810000007,3.621092300000043],[117.12495320000005,3.619648500000039],[117.10496440000009,3.610561100000041],[117.09526610000012,3.608386100000075],[117.0890687000001,3.608451],[117.07762120000007,3.611214600000039],[117.07234210000001,3.61076010000005],[117.03530770000009,3.590324400000043],[117.02225790000011,3.586401300000034],[117.01430660000005,3.585624100000075],[117.00000000000011,3.587652500000047],[117.00000000000011,3.597814400000061],[117.01055570000005,3.594983],[117.017394,3.596020500000066],[117.0522069000001,3.623010600000043],[117.0659468,3.631378200000029],[117.0764597000001,3.635643500000072],[117.08825710000008,3.638052500000072],[117.10980360000008,3.635997100000054],[117.12482460000001,3.636539900000059],[117.1566041000001,3.644345200000032],[117.1737865,3.643305500000054],[117.2015196000001,3.633385700000076],[117.21893340000008,3.630499100000065],[117.261065,3.617164100000025],[117.3210719000001,3.623788600000069],[117.35499990000005,3.63258060000004],[117.374696,3.639361700000052],[117.38428460000011,3.640607400000022],[117.39946350000002,3.637889200000075],[117.42841260000012,3.624740900000063],[117.43216210000003,3.631740400000069],[117.43250420000004,3.638914400000033],[117.43560680000007,3.641964900000062],[117.457063,3.634511],[117.46102070000006,3.638267300000052],[117.4670542,3.638471500000037],[117.47177160000001,3.645609800000045],[117.47547910000003,3.647962800000073],[117.47992460000012,3.645593],[117.4854418000001,3.635685400000057],[117.48916680000002,3.63589920000004],[117.4958272,3.639585600000032],[117.4880601000001,3.654994900000077],[117.48847620000004,3.66551080000005],[117.49037680000004,3.668953700000031],[117.48955610000007,3.670152200000075],[117.48444040000004,3.664767900000072],[117.47627180000006,3.65960380000007],[117.46042740000007,3.654566700000032],[117.32927710000001,3.638052400000049],[117.29685830000005,3.636463900000024],[117.27644530000009,3.641762100000051],[117.23088440000004,3.66056240000006],[117.19642540000007,3.669226],[117.09320590000004,3.680728600000066],[117.02168570000003,3.701350300000058],[116.95614910000006,3.714860800000054],[116.9381694000001,3.714817700000026],[116.88619710000012,3.703387100000043],[116.84771650000005,3.692055],[116.83853540000007,3.686310300000059],[116.83791740000004,3.688782300000071],[116.82625990000008,3.685214100000053],[116.82394410000006,3.687334600000042],[116.79421790000004,3.692895800000031],[116.7705380000001,3.695252],[116.742918,3.681177],[116.761234,3.659569600000054],[116.76123770000004,3.641864800000064],[116.763387,3.635662],[116.760352,3.626147],[116.761603,3.623813],[116.76517700000011,3.623096],[116.766607,3.621122],[116.770005,3.61089],[116.769113,3.604786],[116.761276,3.589655],[116.761098,3.588219],[116.764672,3.584271],[116.759133,3.586244],[116.758956,3.580678],[116.757527,3.579421],[116.75480070000003,3.580406400000072],[116.75367070000004,3.579091800000072],[116.755205,3.574215],[116.74405330000002,3.568885800000032],[116.74283140000011,3.566594900000041],[116.743237,3.562722],[116.73698600000012,3.555539],[116.743062,3.549257],[116.740919,3.545487],[116.741456,3.542794],[116.738063,3.537587],[116.73761700000011,3.533548],[116.73458,3.53211],[116.734942,3.518108],[116.731011,3.517029],[116.729047,3.514875],[116.731103,3.510297],[116.728245,3.507603],[116.726639,3.500243],[116.728427,3.494678],[116.72235400000011,3.488393],[116.712528,3.489287],[116.708956,3.486593],[116.7055620000001,3.486233],[116.702347,3.480847],[116.69538100000011,3.477074],[116.69311170000003,3.473702900000035],[116.6936280000001,3.469811],[116.707084,3.451614],[116.707804,3.441343],[116.703325,3.429988],[116.71717,3.416615],[116.7271750000001,3.410694],[116.735394,3.408901],[116.737538,3.406388],[116.735882,3.394947],[116.742724,3.385924],[116.75331290000008,3.376669700000036],[116.75624320000009,3.385058700000059],[116.75820040000008,3.384708700000033],[116.76122480000004,3.378088500000047],[116.766117,3.380484900000056],[116.77006990000007,3.380583200000046],[116.772375,3.383660600000042],[116.77628030000005,3.380273100000068],[116.77765870000007,3.368745200000035],[116.7809142000001,3.36783070000007],[116.78560330000005,3.368493900000033],[116.79589120000003,3.374338100000045],[116.80632550000007,3.375255500000037],[116.80819450000001,3.37992950000006],[116.81957740000007,3.385929400000066],[116.82925670000009,3.384139600000026],[116.83409080000001,3.386847300000056],[116.83546600000011,3.390566900000067],[116.8408528000001,3.390957300000025],[116.8472379000001,3.389322600000071],[116.851763,3.386129600000061],[116.85370050000006,3.38766830000003],[116.88090540000007,3.394935600000053],[116.8904490000001,3.392755800000032],[116.9019105000001,3.395678],[116.90701690000003,3.391297],[116.91189980000001,3.39328370000004],[116.91605590000006,3.39786040000007],[116.924146,3.398795800000073],[116.955538,3.390930500000024],[116.96079920000011,3.384971800000073],[116.9645584000001,3.385283500000071],[116.9762138000001,3.388458100000037],[116.9794207000001,3.391301300000066],[116.983645,3.392236100000048],[116.9899524000001,3.389918800000032],[117.00553180000009,3.390386200000023],[117.01773,3.395410200000072],[117.01936750000004,3.399597],[117.0298606,3.402556700000048],[117.03422060000003,3.405282800000066],[117.0415551000001,3.404951500000038],[117.04784330000007,3.407404800000052],[117.05090490000009,3.405788400000063],[117.0540248000001,3.406800800000042],[117.05668910000009,3.404989600000022],[117.06271550000008,3.404054500000029],[117.06641620000005,3.39694650000007],[117.06930330000012,3.395544200000074],[117.07385710000005,3.396128100000055],[117.07840150000004,3.400781800000061],[117.08115310000005,3.40095690000004],[117.08938740000008,3.387909],[117.09210010000004,3.386175600000058],[117.09350410000002,3.377470800000026],[117.092564,3.374257800000066],[117.09490770000002,3.364540400000067],[117.09872470000005,3.362358900000061],[117.1100699000001,3.362416200000041],[117.11363410000001,3.352912700000047],[117.10966150000002,3.349232700000073],[117.110756,3.34672050000006],[117.1162591000001,3.34796620000003],[117.12593740000011,3.345725500000071],[117.13236020000011,3.342219500000056],[117.13550940000005,3.34634740000007],[117.145421,3.349637],[117.14819220000004,3.351953900000069],[117.14932640000006,3.356432600000062],[117.15769610000007,3.349751900000058],[117.16514690000008,3.352885900000047],[117.16626190000011,3.358279800000048],[117.17317910000008,3.356623400000046],[117.18665310000006,3.343340100000034],[117.18402620000006,3.33597960000003],[117.19470150000006,3.330622400000038],[117.19817010000008,3.331906900000035],[117.205593,3.340824200000043],[117.21995980000008,3.337354800000071],[117.22171270000001,3.33439450000003],[117.2254137000001,3.335075200000063],[117.23092550000001,3.332191900000055],[117.23514690000002,3.321110600000054],[117.242905,3.31318310000006],[117.27548810000008,3.381199200000026],[117.27738180000006,3.38187],[117.28359990000001,3.39319480000006],[117.28296690000002,3.396687200000031],[117.2785493,3.40177280000006],[117.28497330000005,3.412040800000057],[117.28392780000001,3.423366100000067],[117.28614040000002,3.42569960000003],[117.29267130000005,3.426014500000065],[117.29678330000002,3.424321200000065],[117.29930860000002,3.419344600000045]]],[[[117.744522,3.699461400000075],[117.744278,3.706499500000064],[117.74036420000004,3.712364700000023],[117.73310860000004,3.717898],[117.7288972,3.715929500000072],[117.73152180000011,3.712788200000034],[117.730263,3.701318700000058],[117.72767660000011,3.697467200000062],[117.73008720000007,3.69285160000004],[117.72933220000004,3.687578300000041],[117.72207660000004,3.678954100000055],[117.71965810000006,3.679372200000046],[117.71881840000003,3.678034100000048],[117.71548470000005,3.677539200000069],[117.71506490000002,3.67469],[117.71031180000011,3.671337600000072],[117.70858790000011,3.66763],[117.70880110000007,3.665395400000023],[117.71163930000012,3.664805200000046],[117.7092970000001,3.660455800000022],[117.71038040000008,3.65408640000004],[117.71229530000005,3.653162100000031],[117.71096040000009,3.648802900000021],[117.71370700000011,3.643608200000074],[117.72129160000009,3.635176200000046],[117.72468780000008,3.636384200000066],[117.72680810000008,3.633431300000041],[117.7306225000001,3.631760400000076],[117.73675720000006,3.632047400000033],[117.73775910000006,3.633686100000034],[117.73537810000005,3.632961900000055],[117.73925610000003,3.636948500000074],[117.7434584,3.637564900000029],[117.74845830000004,3.642679100000066],[117.75035050000008,3.649139900000023],[117.75493890000007,3.654933],[117.76111390000005,3.657110900000021],[117.76071090000005,3.659689400000047],[117.76397020000002,3.662339900000063],[117.76323,3.663944600000036],[117.75944330000004,3.664733700000056],[117.76126570000008,3.668567500000051],[117.76041640000005,3.669786600000066],[117.76563910000004,3.670019500000024],[117.76858270000002,3.676988200000039],[117.76785260000008,3.683357400000034],[117.76444260000005,3.687132600000041],[117.75968920000003,3.689642500000048],[117.759529,3.687815300000068],[117.7549361,3.687719700000059],[117.7534333000001,3.686219300000062],[117.75292230000002,3.67482160000003],[117.7491682000001,3.670301700000039],[117.74491110000008,3.668631700000049],[117.74149320000004,3.668969300000072],[117.73599260000003,3.671651500000053],[117.73506920000011,3.668386600000076],[117.73557260000007,3.672158400000058],[117.74182910000002,3.669557],[117.7462461,3.66938140000002],[117.75075530000004,3.672399],[117.75318160000006,3.686717100000067],[117.7552720000001,3.688307400000042],[117.75893430000008,3.688639],[117.7587737,3.689733700000033],[117.7519377000001,3.691910600000028],[117.744774,3.69861990000004],[117.74251550000008,3.69854040000007],[117.7429350000001,3.694858200000056],[117.7413484000001,3.695357100000024],[117.74034870000003,3.693096400000059],[117.73417680000011,3.693354800000066],[117.7399292,3.69351290000003],[117.74076850000006,3.695773700000075],[117.74209610000003,3.695772600000055],[117.74185210000007,3.698712800000067],[117.744522,3.699461400000075]]],[[[117.79393020000009,3.737258100000076],[117.78970350000009,3.741007],[117.78137210000011,3.741521],[117.78510310000001,3.739138600000047],[117.79393020000009,3.737258100000076]]],[[[117.77359510000008,3.74334140000002],[117.77281130000006,3.746142400000053],[117.76447510000003,3.749452700000063],[117.7490921000001,3.751589800000033],[117.7560631,3.747760700000072],[117.77359510000008,3.74334140000002]]],[[[117.77493860000004,3.752648300000033],[117.75000000000011,3.761647800000048],[117.74562580000008,3.76198990000006],[117.7424840000001,3.759621100000061],[117.74901750000004,3.754383400000052],[117.77195720000009,3.747699600000033],[117.778705,3.742021800000032],[117.7859724000001,3.742638600000021],[117.79232040000011,3.740887],[117.80062520000001,3.73210940000007],[117.8099059000001,3.730289900000059],[117.8139552,3.734386100000052],[117.81515930000012,3.743171200000063],[117.80910570000003,3.75334730000003],[117.78544490000002,3.751514],[117.77493860000004,3.752648300000033]]],[[[117.68013140000005,3.775586],[117.67028070000003,3.774659500000041],[117.66440590000002,3.77192290000005],[117.677696,3.765607400000022],[117.67910770000003,3.762847200000067],[117.70111820000011,3.750508700000069],[117.7083742000001,3.748413200000073],[117.71228810000002,3.742882700000052],[117.72379280000007,3.744293500000026],[117.727211,3.743205100000068],[117.72821020000004,3.744796400000041],[117.72937790000003,3.741945900000076],[117.732796,3.742693900000063],[117.73488610000004,3.7411],[117.73229990000004,3.742441],[117.73079660000008,3.741772900000058],[117.72853860000009,3.73156160000002],[117.73696130000008,3.73314670000002],[117.73896030000003,3.730295400000045],[117.74112670000011,3.729868400000043],[117.73896040000011,3.729707400000052],[117.73687740000003,3.73246830000005],[117.72987380000006,3.730384500000071],[117.73586290000003,3.719153100000028],[117.7432023,3.717057300000022],[117.74629240000002,3.722075300000029],[117.749962,3.725509700000032],[117.74996970000007,3.728694],[117.75222,3.731541600000071],[117.75029730000006,3.728693700000065],[117.7506254000001,3.724758300000076],[117.74921440000003,3.724669100000028],[117.75404330000003,3.722738100000072],[117.74862650000011,3.723584],[117.74278240000001,3.714958900000056],[117.74669630000005,3.709844600000054],[117.749771,3.699954500000047],[117.75169390000008,3.700459400000057],[117.75035880000007,3.702306],[117.74994660000004,3.706657500000063],[117.7513656000001,3.709505900000067],[117.75320450000004,3.709251],[117.75479150000001,3.711095100000023],[117.75344840000002,3.708753300000069],[117.75161730000002,3.709089500000061],[117.75011460000007,3.705653300000051],[117.75228140000002,3.701046900000051],[117.7506945,3.698614900000052],[117.75440240000012,3.699561600000038],[117.75519550000001,3.704979500000036],[117.758957,3.707409700000028],[117.76270280000006,3.707316],[117.765877,3.711926800000072],[117.76196310000012,3.719465600000035],[117.766464,3.712595700000065],[117.76721180000004,3.715607400000067],[117.76988970000002,3.71837320000003],[117.76772310000001,3.720464700000036],[117.7678069000001,3.722391500000072],[117.77063730000009,3.719204800000057],[117.76729570000009,3.714349900000059],[117.76696030000005,3.711166],[117.76871480000011,3.709490900000048],[117.77338390000011,3.710997500000076],[117.77589440000008,3.719290600000022],[117.77448290000007,3.710824700000046],[117.76954670000009,3.708992700000067],[117.76646440000002,3.710415600000033],[117.76253520000012,3.706058800000051],[117.75803360000009,3.70631590000005],[117.75561550000009,3.703893600000072],[117.75536360000001,3.699533600000052],[117.7527768000001,3.696604900000068],[117.76611340000011,3.696846700000037],[117.76686870000003,3.69893570000005],[117.77136990000008,3.700858600000061],[117.7721252,3.704214100000058],[117.77621470000008,3.704545200000041],[117.77863320000006,3.706632700000057],[117.77980050000008,3.710657200000071],[117.7825547000001,3.710482900000045],[117.78355410000006,3.712327400000049],[117.7845612000001,3.712579800000071],[117.78772760000004,3.711400900000058],[117.78572110000005,3.710651900000073],[117.78405770000006,3.712155],[117.78321830000004,3.709984700000064],[117.78047170000002,3.710403300000053],[117.77929680000011,3.706134600000041],[117.77712990000009,3.704037800000037],[117.77279640000006,3.70396020000004],[117.77187340000012,3.700613900000064],[117.76720420000004,3.698356500000045],[117.767029,3.696176500000036],[117.76403060000007,3.695591100000058],[117.76502970000001,3.693826200000046],[117.77053060000003,3.692229300000065],[117.77636730000006,3.68846110000004],[117.7754440000001,3.688036700000055],[117.77669540000011,3.686534],[117.77941040000007,3.685656700000038],[117.78517680000004,3.688598800000022],[117.7919528000001,3.689009200000044],[117.81476110000006,3.704476500000055],[117.81708690000005,3.70502],[117.82295660000011,3.703008600000032],[117.82635340000002,3.704938100000049],[117.82418220000011,3.712132700000041],[117.82231360000003,3.713905600000032],[117.81986440000003,3.713600100000065],[117.8150965000001,3.720770400000049],[117.811301,3.72272810000004],[117.8101018000001,3.726024800000062],[117.75000000000011,3.747161700000049],[117.72556050000003,3.76237210000005],[117.6946627000001,3.769123],[117.68013140000005,3.775586]]],[[[117.59534470000006,3.77982540000005],[117.59880840000005,3.791909100000055],[117.59618350000005,3.794905200000073],[117.59225450000008,3.792990100000054],[117.57794960000001,3.779122500000028],[117.57103720000009,3.779244700000049],[117.55942550000009,3.782843800000023],[117.53165420000005,3.765980500000069],[117.52736670000002,3.768380400000069],[117.52415480000002,3.773647500000038],[117.52087430000006,3.77437320000007],[117.50490560000003,3.765046600000062],[117.50111370000002,3.765139200000021],[117.49835210000003,3.767682900000068],[117.4989551000001,3.773906600000032],[117.49573520000001,3.773429],[117.4838181,3.765058600000032],[117.47821820000001,3.755725600000062],[117.47833250000008,3.750460400000065],[117.48523720000003,3.746865100000036],[117.4861297000001,3.744584800000041],[117.4833834000001,3.727714400000025],[117.48909790000005,3.726752300000044],[117.49112680000007,3.724598100000037],[117.49028750000002,3.720292400000062],[117.48597610000002,3.716700200000048],[117.49420390000012,3.710941500000047],[117.50236790000008,3.702012900000057],[117.51016120000008,3.685163700000032],[117.52082750000011,3.673685400000068],[117.53773010000009,3.66169960000002],[117.55598950000001,3.645934],[117.58512110000004,3.630175400000041],[117.60094690000005,3.62573720000006],[117.64313570000002,3.620694],[117.66122630000007,3.615294900000038],[117.66652840000006,3.615028],[117.67646650000006,3.620334200000059],[117.68314850000002,3.619826500000045],[117.68311530000005,3.623165500000027],[117.69731930000012,3.627240300000039],[117.69854770000006,3.626162300000033],[117.70736840000006,3.627964900000052],[117.70881,3.625292600000023],[117.70968540000001,3.629700800000023],[117.71677410000007,3.628287800000066],[117.71754360000011,3.634369],[117.7099611000001,3.648387600000035],[117.71179980000011,3.652827800000068],[117.70954910000012,3.653996600000028],[117.70854970000005,3.661207200000035],[117.71105210000007,3.664470900000026],[117.70805340000004,3.664979900000048],[117.70788550000009,3.667485900000031],[117.70989240000006,3.671926],[117.71489710000003,3.675278100000071],[117.71473720000006,3.678037300000028],[117.71807090000004,3.678450800000064],[117.71898680000004,3.680214100000057],[117.72240430000011,3.679876600000057],[117.72883610000008,3.68791340000007],[117.72942340000009,3.692517400000042],[117.72676070000011,3.697802600000045],[117.7294313000001,3.700812800000051],[117.7310255000001,3.712200700000039],[117.72777540000004,3.715722300000039],[117.73152940000011,3.719998100000055],[117.72869870000011,3.727707800000076],[117.72586820000004,3.728967500000067],[117.70930480000004,3.725606800000037],[117.70379610000009,3.725774100000024],[117.70068380000009,3.727893400000028],[117.70026380000002,3.729902],[117.70360570000003,3.736105100000032],[117.70302570000001,3.739317],[117.70077520000007,3.740965200000062],[117.69522080000002,3.736754100000041],[117.69184870000004,3.736449200000038],[117.68717960000004,3.739465300000063],[117.68543260000001,3.745165800000052],[117.68371610000008,3.743882600000063],[117.68442510000011,3.737205800000027],[117.68070210000008,3.732911800000068],[117.67716960000007,3.734027200000071],[117.676758,3.735284900000067],[117.67108170000006,3.734873200000038],[117.67075360000001,3.736375100000032],[117.67441540000004,3.735123900000076],[117.6768416000001,3.736370400000055],[117.67784140000003,3.734533300000066],[117.6794202000001,3.735364300000072],[117.68100730000003,3.733770900000025],[117.6840975,3.738545],[117.68267810000009,3.743738600000029],[117.68543220000004,3.746088500000042],[117.68502020000005,3.747590500000058],[117.67976380000005,3.745921100000032],[117.67551440000011,3.748023100000069],[117.67401110000003,3.743663900000058],[117.67200450000007,3.74274280000003],[117.66900650000002,3.743749200000025],[117.6665038000001,3.746935400000041],[117.65986640000006,3.745493100000033],[117.660675,3.753561800000057],[117.65516660000003,3.752055200000029],[117.65025350000008,3.761023800000032],[117.6443633,3.760168800000031],[117.6445844000001,3.765388400000063],[117.64211290000003,3.762260100000049],[117.63891580000006,3.762036300000034],[117.63744350000002,3.763756200000046],[117.63774870000009,3.766144200000042],[117.64053350000006,3.768295200000068],[117.636833,3.770161500000029],[117.63558180000007,3.768579300000056],[117.63586420000001,3.769908900000075],[117.63733660000003,3.770667700000047],[117.6410062000001,3.768991400000061],[117.64116680000006,3.767652500000054],[117.63800070000002,3.765221300000064],[117.63932820000002,3.762542600000074],[117.6414185000001,3.762450600000022],[117.64317310000001,3.765805500000056],[117.64492050000001,3.766301800000065],[117.64617160000012,3.763795],[117.6445844000001,3.76077470000007],[117.650505,3.761693],[117.65499890000001,3.752896600000042],[117.65683760000002,3.752723400000036],[117.65834020000011,3.754821],[117.66133890000003,3.753977400000053],[117.66091950000009,3.746270200000026],[117.66700720000006,3.748029600000052],[117.66900640000006,3.745006600000067],[117.67192080000007,3.743665600000043],[117.67585020000001,3.749189800000067],[117.68043510000007,3.747178],[117.68552380000006,3.748847500000068],[117.68826310000009,3.740893700000072],[117.6922684000001,3.73770630000007],[117.6958542000001,3.738454300000058],[117.69902790000003,3.741970700000024],[117.70261370000003,3.742049300000076],[117.70502480000005,3.737108100000057],[117.7020185,3.729656400000067],[117.70443740000007,3.72747430000004],[117.71210470000005,3.727630900000065],[117.72695170000009,3.732476600000041],[117.7295458000001,3.738010700000075],[117.728996,3.740860700000042],[117.72438060000002,3.74320750000004],[117.71178440000006,3.742213700000036],[117.70870230000003,3.74766210000007],[117.70078300000011,3.750011400000062],[117.67910760000007,3.762005900000077],[117.6772767000001,3.76493830000004],[117.66394030000004,3.770982500000059],[117.66394060000005,3.772909300000038],[117.66703010000003,3.774417700000072],[117.678649,3.776548500000047],[117.6649476,3.78405360000005],[117.66111,3.782464400000038],[117.65543370000012,3.770572800000025],[117.64958980000006,3.767646200000058],[117.6425858,3.769243600000038],[117.63101970000002,3.776091100000031],[117.62363410000012,3.776331700000071],[117.61314370000002,3.772277300000042],[117.60546130000012,3.771441400000072],[117.59879280000007,3.773363900000049],[117.5959319000001,3.775998400000049],[117.59534470000006,3.77982540000005]]]]},"properties":{"shapeName":"Tana Tidung","shapeISO":"","shapeID":"22746128B47106115521621","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[120.0339437,-3.373661399999946],[120.0399546000001,-3.371835799999928],[120.04378520000012,-3.358679],[120.04387290000011,-3.353209599999957],[120.03631990000008,-3.340569],[120.03731290000007,-3.338653699999952],[120.03554730000008,-3.336842499999932],[120.03405280000004,-3.329587699999934],[120.03020070000002,-3.322082399999942],[120.03121140000007,-3.309894499999928],[120.02820440000005,-3.295469599999933],[120.02519710000001,-3.290910399999973],[120.02481410000007,-3.281649399999935],[120.01300170000002,-3.272120799999925],[120.00128,-3.267942299999959],[120.00022560000002,-3.265263499999946],[119.99734490000003,-3.2642729],[119.9953997,-3.261176],[119.99496470000008,-3.255602799999963],[119.98986230000003,-3.255539699999929],[119.982162,-3.250444],[119.98053360000006,-3.245029299999942],[119.98024730000009,-3.224451599999952],[119.987518,-3.217977399999938],[119.99168320000001,-3.210970799999927],[119.99166470000011,-3.204607499999952],[119.98945,-3.198671299999944],[119.98619890000009,-3.196156499999972],[119.98408670000003,-3.189431199999945],[119.98514980000004,-3.187236299999938],[119.97799440000006,-3.185946899999976],[119.968424,-3.180793499999936],[119.96621540000001,-3.177358],[119.95620830000007,-3.1731102],[119.9586422000001,-3.169105199999933],[119.95928830000003,-3.164291799999944],[119.95764780000002,-3.158333199999959],[119.95899830000008,-3.151386],[119.95669970000006,-3.1501002],[119.96396210000012,-3.146660699999927],[119.96578740000007,-3.141233799999952],[119.97160510000003,-3.136997799999961],[119.97156880000011,-3.135379799999953],[119.97449580000011,-3.133234499999958],[119.9764699000001,-3.129353499999979],[119.96327070000007,-3.100794499999949],[119.9627799000001,-3.091960299999926],[119.96916020000003,-3.0733102],[119.96695230000012,-3.063496899999961],[119.96411180000007,-3.063676299999941],[119.94795980000004,-3.072709599999939],[119.94297190000009,-3.068186799999978],[119.93307980000009,-3.065575099999933],[119.93127830000003,-3.058086599999967],[119.92654550000009,-3.048529799999926],[119.92344020000007,-3.045489699999962],[119.8942707000001,-3.044834499999979],[119.89223790000005,-3.042581699999971],[119.89160430000004,-3.036429899999973],[119.89509650000002,-3.033123599999954],[119.89389570000003,-3.030773699999941],[119.8959393,-3.017965499999946],[119.88972050000007,-3.023162899999932],[119.884946,-3.022076699999957],[119.88207110000008,-3.025164699999948],[119.87596280000002,-3.025458899999933],[119.87402070000007,-3.030189699999937],[119.86957760000007,-3.030679099999929],[119.87062190000006,-3.034725499999979],[119.86867150000012,-3.038567199999932],[119.8652737000001,-3.0393431],[119.86257260000002,-3.041918299999963],[119.8571799,-3.042958599999963],[119.8534969000001,-3.045860599999969],[119.8487828000001,-3.037994099999935],[119.84806680000008,-3.017272899999966],[119.84673780000003,-3.013093699999956],[119.83849740000005,-3.000446299999965],[119.83713720000003,-3.000673],[119.83419250000009,-3.006807899999956],[119.83124770000006,-3.017114499999934],[119.82241350000004,-3.029384299999947],[119.8152970000001,-3.030365899999936],[119.80344900000011,-3.029104399999937],[119.80081870000004,-3.018586899999946],[119.80106410000008,-3.014169799999934],[119.79664690000004,-3.007053299999939],[119.7944384000001,-2.999446],[119.79247520000001,-2.983004499999936],[119.78732190000005,-2.9729433],[119.79002120000007,-2.969262399999934],[119.79345680000006,-2.967299199999957],[119.79972650000002,-2.966389199999981],[119.79968970000004,-2.964976399999955],[119.7970021000001,-2.958977],[119.79236520000006,-2.955713599999967],[119.79005240000004,-2.947964399999933],[119.78830330000005,-2.946996899999931],[119.78632270000003,-2.941166599999974],[119.7840599000001,-2.9389573],[119.78329960000008,-2.933322099999941],[119.77210730000002,-2.938097099999936],[119.75959220000004,-2.9376063],[119.75419350000004,-2.935888499999976],[119.74609540000006,-2.936133899999959],[119.7409421000001,-2.938097099999936],[119.7362796000001,-2.9415326],[119.73308940000004,-2.952575499999966],[119.72572750000006,-2.951348499999938],[119.71189960000004,-2.944850899999949],[119.7098281000001,-2.940119299999935],[119.71062680000011,-2.937162399999977],[119.70776650000005,-2.934953599999972],[119.70587290000003,-2.929040599999951],[119.70516170000008,-2.91846],[119.70203060000006,-2.910090299999979],[119.69391590000009,-2.900169],[119.69056730000011,-2.8847417],[119.68700650000005,-2.877131899999938],[119.6873829000001,-2.873552299999972],[119.695281,-2.864614],[119.69603740000002,-2.8493125],[119.691581,-2.837394],[119.692324,-2.827135099999964],[119.68899880000004,-2.81159],[119.6842160000001,-2.795225799999969],[119.681262,-2.792783499999928],[119.67929,-2.784934699999951],[119.68039810000005,-2.777648199999931],[119.67689010000004,-2.774393799999928],[119.67472080000005,-2.769627],[119.6814025000001,-2.761731399999974],[119.6850568000001,-2.759400599999935],[119.6884318000001,-2.753007599999933],[119.67986940000003,-2.756375899999966],[119.6651733000001,-2.753499],[119.66011750000007,-2.754793699999937],[119.6569290000001,-2.753192199999944],[119.64959620000002,-2.7541033],[119.6442757000001,-2.751575699999933],[119.63547440000002,-2.751721799999927],[119.63023360000011,-2.754517],[119.6248839000001,-2.751040299999943],[119.6139108000001,-2.749098599999968],[119.610748,-2.741647399999977],[119.60744390000002,-2.740143199999977],[119.59655920000012,-2.742706599999963],[119.58822260000011,-2.743013899999937],[119.58344480000005,-2.747640499999932],[119.58356060000006,-2.750001299999951],[119.5786442000001,-2.751548499999956],[119.5778686000001,-2.755309899999929],[119.57877810000002,-2.758173],[119.58443090000003,-2.762544],[119.58453530000008,-2.764595399999962],[119.57566980000001,-2.770841899999937],[119.57322810000005,-2.7751583],[119.571198,-2.7865958],[119.56506,-2.806402499999933],[119.56150790000004,-2.812149499999975],[119.56288770000003,-2.817008899999962],[119.56627730000002,-2.819477799999959],[119.56673580000006,-2.821564599999931],[119.5625073000001,-2.834127799999976],[119.56138,-2.850796399999979],[119.5631876000001,-2.854498],[119.56786920000002,-2.857960499999933],[119.56879050000009,-2.870365099999958],[119.563011,-2.880148299999973],[119.55602490000001,-2.885433199999966],[119.55074390000004,-2.897791199999972],[119.55484010000009,-2.903548199999932],[119.55430940000008,-2.913355699999954],[119.55659820000005,-2.920788799999968],[119.56219130000011,-2.924517799999933],[119.56484350000005,-2.924385199999961],[119.56871820000003,-2.926523],[119.5690145000001,-2.936188199999947],[119.57313320000003,-2.941773099999978],[119.57350110000004,-2.945622499999956],[119.5766589000001,-2.951119199999937],[119.57517980000011,-2.964345099999946],[119.57303410000009,-2.966799399999957],[119.5720751,-2.972061499999938],[119.56919430000005,-2.974047799999937],[119.56555150000008,-2.988706899999954],[119.56547010000008,-2.997175699999957],[119.56817430000001,-3.000269299999957],[119.56854620000001,-3.003791499999977],[119.57169510000006,-3.005132499999945],[119.57504070000005,-3.012409099999957],[119.57698690000007,-3.018306199999927],[119.57650010000009,-3.026333099999931],[119.57970880000005,-3.028105899999957],[119.5786508000001,-3.030964399999959],[119.5802450000001,-3.0349218],[119.58520830000009,-3.035545299999967],[119.58528590000003,-3.041332899999929],[119.58809630000007,-3.044796699999949],[119.58662890000005,-3.048406299999954],[119.5938814000001,-3.058104399999934],[119.59476060000009,-3.0632952],[119.59995090000007,-3.065988599999969],[119.6069424000001,-3.0666403],[119.6107287000001,-3.073754299999962],[119.6190514000001,-3.0792451],[119.62105080000003,-3.088042799999926],[119.6273979,-3.096712099999934],[119.62784620000002,-3.102359399999955],[119.63211940000008,-3.109578799999952],[119.6316352,-3.124635199999943],[119.63649580000003,-3.127982599999939],[119.63503570000012,-3.129011],[119.63276610000003,-3.1271912],[119.63073270000007,-3.128389299999981],[119.62666600000011,-3.126049799999976],[119.6221604000001,-3.1268925],[119.61437510000007,-3.124643599999956],[119.60990320000008,-3.120226299999956],[119.60660550000011,-3.119195199999979],[119.5978272000001,-3.127866199999971],[119.5867118000001,-3.125173399999937],[119.57960960000003,-3.130948099999955],[119.5719223000001,-3.1313918],[119.5669524000001,-3.129479],[119.5629044000001,-3.130519299999946],[119.55865670000003,-3.134461199999976],[119.54514340000003,-3.138579599999957],[119.53616290000002,-3.139333599999929],[119.5254576000001,-3.151290099999926],[119.51623530000006,-3.16628],[119.51561890000005,-3.171686399999942],[119.50351100000012,-3.177807799999925],[119.4895696000001,-3.182731499999932],[119.48376170000006,-3.1878433],[119.47561410000003,-3.191071699999952],[119.46389760000011,-3.1886415],[119.4585052000001,-3.182291199999952],[119.4520649000001,-3.182566699999938],[119.44713050000007,-3.184415399999978],[119.4386032000001,-3.183595099999934],[119.4301468000001,-3.172488299999941],[119.42318150000006,-3.178669299999967],[119.40931660000001,-3.184720299999981],[119.39931990000002,-3.192076],[119.394511,-3.197881399999972],[119.38890330000004,-3.197840299999939],[119.38305360000004,-3.195720699999924],[119.37449260000005,-3.195831],[119.37148080000009,-3.1971306],[119.37041810000005,-3.201390599999968],[119.37447430000009,-3.214180699999929],[119.38196590000007,-3.221150499999965],[119.39082340000004,-3.232392399999981],[119.40040490000001,-3.238805599999978],[119.4212040000001,-3.249010299999952],[119.42226160000007,-3.252598299999931],[119.43061910000006,-3.263156199999969],[119.43219880000004,-3.267709599999932],[119.4336406000001,-3.257833499999947],[119.44057690000011,-3.253833099999952],[119.44347540000001,-3.254739],[119.44795310000006,-3.259665],[119.46271150000007,-3.264233699999977],[119.47204540000007,-3.274367599999948],[119.48484610000003,-3.279167899999948],[119.48991300000012,-3.279701199999977],[119.50144030000001,-3.294784399999969],[119.50760790000004,-3.297709699999928],[119.51481920000003,-3.296274499999925],[119.51723210000011,-3.292296499999964],[119.51936990000002,-3.2811179],[119.52478990000009,-3.277311599999962],[119.52705970000011,-3.278156299999978],[119.52891450000004,-3.274679399999968],[119.53276140000003,-3.275240099999962],[119.53479090000008,-3.273544],[119.54120990000001,-3.274797],[119.55034640000008,-3.2709867],[119.55363260000001,-3.272568699999965],[119.55548830000009,-3.270112599999948],[119.55870760000005,-3.269739899999934],[119.5629523,-3.273892499999931],[119.56467540000006,-3.273382199999958],[119.56763970000009,-3.277158],[119.56911910000008,-3.276363699999933],[119.56871050000007,-3.278210199999933],[119.5704177,-3.278403799999978],[119.570118,-3.281032099999948],[119.57245680000005,-3.285785799999928],[119.58055210000009,-3.2884375],[119.59084770000004,-3.287611799999979],[119.59538220000002,-3.284544599999947],[119.59821370000009,-3.285301599999968],[119.6038936000001,-3.282472],[119.60546340000008,-3.285317499999962],[119.61487620000003,-3.2874331],[119.61740590000011,-3.298517199999935],[119.62091150000003,-3.3030088],[119.6274912,-3.307000199999948],[119.63300310000011,-3.313897299999951],[119.63590130000011,-3.316130799999939],[119.6439851,-3.317945799999961],[119.64671220000002,-3.327479099999948],[119.64271670000005,-3.331420299999934],[119.6421712,-3.335457],[119.65073550000011,-3.343639499999938],[119.65084460000003,-3.346148699999958],[119.64778980000006,-3.351058199999954],[119.64997180000012,-3.3600044],[119.65946340000005,-3.359895299999948],[119.6744615,-3.366190099999926],[119.67971360000001,-3.366414199999952],[119.69021690000011,-3.360147099999949],[119.69502540000008,-3.350388699999939],[119.69685930000003,-3.3497872],[119.70365830000003,-3.349191099999928],[119.71268410000005,-3.350459099999966],[119.71694290000005,-3.353219099999933],[119.72126360000004,-3.352476599999932],[119.7171896000001,-3.340450799999928],[119.72334790000002,-3.331846299999938],[119.7293783,-3.3299061],[119.72356820000005,-3.331704399999978],[119.72233010000002,-3.324702799999955],[119.71765810000011,-3.320456299999933],[119.7154842000001,-3.314939],[119.71337270000004,-3.313512699999933],[119.71655150000004,-3.298456499999929],[119.72277,-3.291298799999936],[119.7371250000001,-3.282357399999967],[119.7526918000001,-3.278973299999961],[119.7567527000001,-3.276491699999951],[119.76287090000005,-3.276607699999943],[119.77003530000002,-3.274319599999956],[119.77525750000007,-3.267326],[119.7754460000001,-3.260444899999925],[119.77393780000011,-3.255166199999962],[119.77478620000011,-3.246682499999963],[119.77855670000008,-3.241403799999944],[119.78260990000001,-3.240084199999956],[119.7873231000001,-3.243666099999928],[119.79585670000006,-3.247211499999935],[119.81385260000002,-3.245229499999937],[119.83100150000007,-3.248684099999934],[119.83302210000011,-3.253457],[119.84045290000006,-3.255959699999948],[119.8406893,-3.259491399999945],[119.84262290000004,-3.2615459],[119.84232630000008,-3.270880899999952],[119.85056050000003,-3.278930499999944],[119.85058630000003,-3.280704299999968],[119.85343440000008,-3.280897299999936],[119.85484760000008,-3.277710099999979],[119.85705310000003,-3.277256699999953],[119.85790210000005,-3.272617699999955],[119.85921120000012,-3.274592899999959],[119.86060070000008,-3.271917199999962],[119.861571,-3.273381399999948],[119.863018,-3.272525899999948],[119.86137010000004,-3.269551599999943],[119.86425240000005,-3.270418599999971],[119.86659510000004,-3.273105799999939],[119.86825090000002,-3.271245499999964],[119.87058490000004,-3.274453699999981],[119.87239040000009,-3.271983099999943],[119.87099550000005,-3.269470499999954],[119.87897140000007,-3.269649299999969],[119.87644090000003,-3.266913199999976],[119.8800265000001,-3.261101199999928],[119.87937370000009,-3.259608],[119.88192210000011,-3.256970199999955],[119.88272680000011,-3.258383],[119.8858206000001,-3.257783899999936],[119.88652700000011,-3.259420199999965],[119.89029140000002,-3.260305399999936],[119.89132860000007,-3.2585707],[119.89212870000006,-3.260352099999977],[119.89454750000004,-3.2598494],[119.8957636,-3.2621205],[119.9031404000001,-3.259867299999939],[119.9046694000001,-3.261271099999931],[119.90655560000005,-3.259654799999964],[119.909242,-3.262146399999949],[119.91091110000002,-3.261621799999944],[119.91118130000007,-3.2630842],[119.91394180000009,-3.262263599999926],[119.92199460000006,-3.264414699999975],[119.92545770000004,-3.271874499999967],[119.92613570000003,-3.277539399999966],[119.92856760000006,-3.280866899999978],[119.932048,-3.284252699999968],[119.93693480000002,-3.284811099999956],[119.9427108000001,-3.290133499999968],[119.94493150000005,-3.2942798],[119.94927630000007,-3.296667099999979],[119.9529338000001,-3.296437499999968],[119.95531210000001,-3.292369899999926],[119.96416890000012,-3.293862399999966],[119.96620540000004,-3.291717399999925],[119.9714666000001,-3.298116799999946],[119.9767948000001,-3.298662599999943],[119.97769420000009,-3.297386699999947],[119.97973420000005,-3.298460399999954],[119.98097970000003,-3.302390199999934],[119.984974,-3.304451699999959],[119.98905410000009,-3.309154599999943],[119.99233970000012,-3.306599199999937],[119.99370320000003,-3.302953399999979],[119.99594600000012,-3.302278499999943],[119.99912010000003,-3.3048479],[120.00579770000002,-3.318203099999948],[120.00204990000009,-3.3339139],[120.00872490000006,-3.339199399999927],[120.00927700000011,-3.338436699999932],[120.01337850000004,-3.340983599999959],[120.01990790000002,-3.358521899999971],[120.0251922000001,-3.362549599999966],[120.03267240000002,-3.363512499999956],[120.02765150000005,-3.371099499999957],[120.0339437,-3.373661399999946]]]},"properties":{"shapeName":"Tana Toraja","shapeISO":"","shapeID":"22746128B56922557906886","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[116.03671530000008,-3.441238699999928],[116.03787430000011,-3.4352423],[116.034792,-3.438569299999926],[116.03548,-3.441106499999933],[116.03671530000008,-3.441238699999928]]],[[[116.0272652000001,-3.4573416],[116.03164150000009,-3.45376],[116.03480450000006,-3.448117799999977],[116.03300160000003,-3.438763599999959],[116.039887,-3.425567199999932],[116.040717,-3.421705299999928],[116.03958760000012,-3.420242099999939],[116.03123390000007,-3.420879599999978],[116.02656150000007,-3.423946599999965],[116.019972,-3.429704],[116.01550140000006,-3.437567899999976],[116.01770060000001,-3.448784199999977],[116.02247940000007,-3.455010799999968],[116.0272652000001,-3.4573416]]],[[[116.04053010000007,-3.390202099999954],[116.0415852000001,-3.388126599999964],[116.04080850000003,-3.385571199999958],[116.03938280000011,-3.388732199999936],[116.04053010000007,-3.390202099999954]]],[[[116.02698960000009,-3.405471499999976],[116.03590940000004,-3.397521],[116.04418320000002,-3.369860799999969],[116.04573470000003,-3.362330799999938],[116.04511450000007,-3.357297699999947],[116.03742330000011,-3.359479599999929],[116.0325994000001,-3.3649327],[116.03289330000007,-3.376743199999964],[116.02485920000004,-3.4023557],[116.02698960000009,-3.405471499999976]]],[[[116.06086980000009,-3.383740399999965],[116.06895390000011,-3.3786866],[116.0716748000001,-3.366351399999928],[116.07230960000004,-3.349524799999926],[116.07093120000002,-3.348556599999938],[116.05977310000003,-3.350673499999971],[116.058232,-3.353126599999939],[116.05624990000001,-3.368830099999968],[116.05346310000004,-3.378621199999941],[116.0573700000001,-3.383905599999935],[116.06086980000009,-3.383740399999965]]],[[[116.06543680000004,-3.321207699999945],[116.066624,-3.320132499999943],[116.0642997000001,-3.319936699999971],[116.06543680000004,-3.321207699999945]]],[[[115.24742360000005,-3.5962015],[115.26710920000005,-3.651216499999975],[115.279892,-3.6792653],[115.291092,-3.698365299999978],[115.296692,-3.7037653],[115.299159,-3.710024199999964],[115.31238930000006,-3.719963199999938],[115.317392,-3.736365299999932],[115.3401831000001,-3.778774299999952],[115.34360010000012,-3.781706799999938],[115.34383730000002,-3.785153299999934],[115.34609200000011,-3.787965299999939],[115.345792,-3.792765299999928],[115.352992,-3.809965299999931],[115.355292,-3.813565299999937],[115.367292,-3.817565299999956],[115.368892,-3.820965299999955],[115.368892,-3.826265299999932],[115.37198540000009,-3.832161],[115.37146870000004,-3.839128599999981],[115.36910420000004,-3.839875],[115.36667480000006,-3.846502699999974],[115.36828570000011,-3.853675],[115.376292,-3.855265299999928],[115.377492,-3.858865299999934],[115.37599140000009,-3.861072099999944],[115.41161010000008,-3.845568199999946],[115.45607210000003,-3.8218729],[115.47568790000003,-3.814527599999963],[115.47775650000005,-3.810415399999954],[115.47957410000004,-3.813026],[115.4856410000001,-3.815088],[115.51052290000007,-3.803362599999957],[115.52540780000004,-3.798882],[115.5267047000001,-3.794350299999962],[115.52904490000003,-3.792641799999956],[115.53838580000001,-3.791607799999952],[115.59027090000006,-3.770272599999942],[115.60549720000006,-3.769156099999975],[115.63225030000001,-3.7526184],[115.632889,-3.750575499999968],[115.6374303,-3.7506061],[115.6555217,-3.743094599999949],[115.6685973000001,-3.7427301],[115.67009580000001,-3.740884499999936],[115.67994930000009,-3.737801899999965],[115.706509,-3.734526199999948],[115.71614770000008,-3.731446399999925],[115.71755430000007,-3.730662199999927],[115.71884760000012,-3.724705299999926],[115.73217310000007,-3.711184799999955],[115.74957440000003,-3.700681399999951],[115.76152860000002,-3.694860799999958],[115.7660605000001,-3.694149599999946],[115.7881215000001,-3.678530799999976],[115.79087520000007,-3.667957199999933],[115.79786380000007,-3.660157699999957],[115.80047330000002,-3.6547763],[115.80882310000004,-3.649949299999946],[115.821222,-3.637956199999962],[115.833087,-3.632815899999969],[115.83346860000006,-3.6307163],[115.85631210000008,-3.623669699999937],[115.87716430000012,-3.619389599999977],[115.92622590000008,-3.612011499999937],[115.9579556000001,-3.611345],[115.96541280000008,-3.610132799999974],[115.96977190000007,-3.607474399999944],[115.97805630000005,-3.590412599999979],[115.98561920000009,-3.578742699999964],[115.99305670000001,-3.571565899999939],[115.99569530000008,-3.566133599999944],[115.99556560000008,-3.563473599999952],[115.99290950000011,-3.559718799999928],[115.99140610000006,-3.548424],[115.99193900000012,-3.528600199999971],[115.99081300000012,-3.526793399999974],[115.9938,-3.514993799999957],[115.99799170000006,-3.506431099999929],[116.0066015000001,-3.492142099999967],[116.0144782000001,-3.4831895],[116.01468080000006,-3.477685099999974],[116.00806950000003,-3.453676899999948],[116.00922780000008,-3.450000599999953],[116.007891,-3.4491051],[116.00743810000006,-3.44547],[116.00757050000004,-3.443198499999937],[116.00877660000003,-3.443043199999977],[116.00721010000007,-3.4327066],[116.0092184,-3.428231899999957],[116.01019560000009,-3.428442899999936],[116.01341840000009,-3.417524499999956],[116.02400490000002,-3.410804199999973],[116.02282900000012,-3.395601299999953],[116.02619290000007,-3.390143299999977],[116.03088060000005,-3.376542599999937],[116.03077310000003,-3.365739299999973],[116.03649,-3.358349],[116.04594530000008,-3.3550484],[116.05052030000002,-3.350794299999961],[116.05257010000003,-3.343823099999952],[116.060632,-3.333787699999959],[116.064158,-3.318856499999924],[116.07154580000008,-3.309574299999952],[116.07404930000007,-3.298287799999969],[116.07942830000002,-3.295816099999968],[116.08724340000003,-3.280870499999935],[116.08421090000002,-3.277258599999925],[116.08482910000009,-3.264893499999971],[116.08275110000011,-3.257573499999978],[116.07785380000007,-3.258962099999962],[116.07113690000006,-3.264844699999969],[116.06771050000009,-3.263774099999978],[116.0647163000001,-3.258624299999951],[116.06145430000004,-3.256613],[116.06028720000006,-3.260981099999981],[116.0520461000001,-3.260313],[116.041135,-3.261550899999975],[116.03905220000001,-3.257007899999962],[116.03074350000009,-3.249654799999973],[116.01713680000012,-3.243425799999955],[116.00982440000007,-3.236888099999931],[116.0011187,-3.234417699999938],[115.99586860000011,-3.223445199999958],[115.99004030000003,-3.219950099999949],[115.98215860000005,-3.220939699999974],[115.98180230000003,-3.222237399999926],[115.9782901000001,-3.2206436],[115.97894990000009,-3.222581499999933],[115.97394210000004,-3.223733899999957],[115.96426930000007,-3.246549399999935],[115.96013390000007,-3.249049699999944],[115.95819090000009,-3.247276199999931],[115.95247740000002,-3.2476367],[115.94680540000002,-3.253913299999965],[115.93788990000007,-3.245506699999964],[115.9305845,-3.235951],[115.9279385000001,-3.2265959],[115.92841950000002,-3.220965799999931],[115.93107810000004,-3.216101799999933],[115.946818,-3.205195499999945],[115.95052350000003,-3.198044599999946],[115.95143750000011,-3.192225599999972],[115.94849770000008,-3.177842399999975],[115.93445940000004,-3.152752799999973],[115.86945850000006,-3.166912199999956],[115.86277670000004,-3.166733],[115.85578510000005,-3.1702438],[115.85199990000001,-3.168828599999927],[115.84878420000007,-3.170507399999963],[115.84061530000008,-3.170145499999933],[115.83659790000002,-3.172239399999967],[115.83042770000009,-3.1856735],[115.82888280000009,-3.186386299999981],[115.81290020000006,-3.1852645],[115.8083213000001,-3.181333599999959],[115.8012189000001,-3.183261],[115.79250550000006,-3.181785499999933],[115.77957440000012,-3.190399099999979],[115.77550850000011,-3.191036399999973],[115.77283810000006,-3.193267299999945],[115.76852680000002,-3.193206799999928],[115.7687681000001,-3.192003799999952],[115.76464680000004,-3.191888399999925],[115.76275750000002,-3.186445499999934],[115.76358660000005,-3.182359099999928],[115.7596837000001,-3.183514299999956],[115.76078670000004,-3.180201499999953],[115.75985390000005,-3.179040499999928],[115.75754590000008,-3.179092899999944],[115.7562802000001,-3.180693199999951],[115.75611920000006,-3.177434199999936],[115.75348460000009,-3.174890199999936],[115.75458690000005,-3.172129799999936],[115.7524254000001,-3.164642799999967],[115.74940890000005,-3.159778499999959],[115.74830910000003,-3.160495199999957],[115.74556450000011,-3.158116799999959],[115.7435832000001,-3.160710399999971],[115.74188060000006,-3.159990299999947],[115.74182780000001,-3.158222799999976],[115.74353170000006,-3.157838199999958],[115.741115,-3.156951499999934],[115.74029690000009,-3.151813699999934],[115.73771760000011,-3.149104],[115.7404653000001,-3.148831199999961],[115.74082420000002,-3.147423199999935],[115.73571490000006,-3.1466437],[115.73440090000008,-3.142665199999954],[115.7353419000001,-3.136977199999933],[115.73304180000002,-3.130567199999973],[115.73516040000004,-3.1280014],[115.7322544000001,-3.122750599999961],[115.73082620000002,-3.122417399999961],[115.73198530000002,-3.118110599999966],[115.728906,-3.119929599999978],[115.72803050000005,-3.116945799999939],[115.7256135,-3.116335299999946],[115.72324480000009,-3.121303499999954],[115.72127450000005,-3.114894],[115.7197341000001,-3.116438599999981],[115.71814430000006,-3.1133988],[115.717261,-3.116822299999967],[115.71610910000004,-3.115219099999933],[115.71226330000002,-3.114827699999978],[115.7145177000001,-3.113560099999972],[115.71774010000001,-3.106853099999967],[115.71268270000007,-3.108835299999953],[115.7108713,-3.107341799999972],[115.71098360000008,-3.105353499999978],[115.71587430000011,-3.104917599999965],[115.7181898,-3.098458],[115.71528110000008,-3.095637599999975],[115.709234,-3.098170899999957],[115.70720250000011,-3.096953299999939],[115.70561520000001,-3.091925099999969],[115.706663,-3.088722799999971],[115.71259530000009,-3.090221399999962],[115.71166480000011,-3.087292799999943],[115.70699520000005,-3.086624299999926],[115.70466870000007,-3.0794687],[115.700546,-3.081065399999943],[115.69675660000007,-3.079624699999954],[115.69472050000002,-3.082162899999958],[115.69197330000009,-3.082159599999954],[115.68845880000003,-3.080608699999971],[115.6860501000001,-3.073370099999977],[115.68396320000011,-3.072594299999935],[115.6819269,-3.075298199999963],[115.68383990000007,-3.0835303],[115.67938580000009,-3.086452099999974],[115.6769766000001,-3.079710699999964],[115.67260820000001,-3.080009],[115.673826,-3.072664499999973],[115.6706402000001,-3.071887299999958],[115.6683306000001,-3.073486099999968],[115.66629970000008,-3.071881799999971],[115.66625240000008,-3.065750899999955],[115.65883370000006,-3.066901499999972],[115.65333280000004,-3.072196899999938],[115.65217930000006,-3.071919299999934],[115.651192,-3.070592399999953],[115.65267970000002,-3.067169899999953],[115.65196710000009,-3.065843399999949],[115.6497710000001,-3.064570299999957],[115.64746130000003,-3.066279499999951],[115.6437,-3.064479699999936],[115.63862960000006,-3.060107399999936],[115.63839180000002,-3.057194799999934],[115.63677990000008,-3.059661899999981],[115.6332235000001,-3.060154799999964],[115.62859220000007,-3.0631787],[115.62963570000011,-3.0656854],[115.62417810000011,-3.068644899999924],[115.6171706,-3.067324399999961],[115.61586870000008,-3.0687608],[115.6122898000001,-3.0666668],[115.60936460000005,-3.066681099999926],[115.60373310000011,-3.061491299999943],[115.60126030000004,-3.060918299999969],[115.5930436000001,-3.061839099999929],[115.58538650000003,-3.065247699999929],[115.57600320000006,-3.0654251],[115.57245750000004,-3.0685045],[115.56844600000011,-3.068806599999959],[115.5637885000001,-3.065625799999964],[115.56177510000009,-3.0604892],[115.5520318,-3.0746111],[115.53242030000001,-3.086224399999935],[115.52903460000005,-3.086936],[115.51992560000008,-3.104114799999934],[115.49411610000004,-3.125265],[115.49185890000001,-3.120975099999953],[115.4861419,-3.115266299999973],[115.47963490000006,-3.111820299999977],[115.47741380000002,-3.105438699999979],[115.43884820000005,-3.136715],[115.422073,-3.158844],[115.42135910000002,-3.1716931],[115.4167192000001,-3.194892799999934],[115.4135113000001,-3.228671299999974],[115.41180910000003,-3.228668599999935],[115.41262060000008,-3.235099799999944],[115.41057420000004,-3.239097299999969],[115.40581530000009,-3.241762299999948],[115.4031503000001,-3.2491862],[115.400295,-3.250138],[115.39191930000004,-3.249376499999926],[115.38963500000011,-3.252422199999955],[115.38240140000005,-3.2522319],[115.37408440000002,-3.254749299999958],[115.372855,-3.257432],[115.38991320000002,-3.264975499999935],[115.40739880000001,-3.269902199999933],[115.444717,-3.27364],[115.45258,-3.278304],[115.45729,-3.286166],[115.453156,-3.306037],[115.4563720000001,-3.31709],[115.4609200000001,-3.322228],[115.459895,-3.329205],[115.455536,-3.332256],[115.444241,-3.335942],[115.43749,-3.344154],[115.435419,-3.353111],[115.429884,-3.363139],[115.430086,-3.407553],[115.427302,-3.425299],[115.42357,-3.433957],[115.407328,-3.444496],[115.418106,-3.459149],[115.421621,-3.468982],[115.420155,-3.478235],[115.412361,-3.488888],[115.395967,-3.49942],[115.380459,-3.506313],[115.360713,-3.509743],[115.349392,-3.508587],[115.342607,-3.509674],[115.333725,-3.513811],[115.3256070000001,-3.520218],[115.318116,-3.53162],[115.31141,-3.549694],[115.29638000000011,-3.56235],[115.273491,-3.572309],[115.265831,-3.580076],[115.259689,-3.589659],[115.24742360000005,-3.5962015]]]]},"properties":{"shapeName":"Tanah Bumbu","shapeISO":"","shapeID":"22746128B90687449352515","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[100.31568630000004,-0.429181099999937],[100.31355110000004,-0.447264599999926],[100.31873640000003,-0.473889199999974],[100.320602,-0.478786499999956],[100.32707350000004,-0.482342899999935],[100.33173760000005,-0.488639499999977],[100.34613810000008,-0.486977899999943],[100.36013040000006,-0.491642],[100.36846760000009,-0.4849082],[100.37062470000006,-0.484733299999959],[100.37727130000007,-0.491472399999964],[100.38777030000006,-0.489523099999928],[100.39289590000004,-0.491088199999979],[100.38770710000006,-0.501844799999958],[100.38636610000003,-0.507074499999931],[100.38718230000006,-0.513884],[100.38263480000006,-0.525602599999957],[100.38834670000006,-0.533036699999968],[100.38776540000003,-0.544754699999942],[100.393887,-0.5549866],[100.39651680000009,-0.563668899999925],[100.40047380000004,-0.5655311],[100.40875630000005,-0.562815699999931],[100.41285510000006,-0.566170199999931],[100.41912840000003,-0.582824699999946],[100.41797330000009,-0.599371399999939],[100.41580840000006,-0.602618899999925],[100.410328,-0.603435099999956],[100.39866770000003,-0.614425],[100.37562780000007,-0.621918],[100.39783570000009,-0.631575199999929],[100.40238890000006,-0.627492],[100.41278050000005,-0.626893399999972],[100.41719420000004,-0.629192099999955],[100.420125,-0.6332335],[100.43042050000008,-0.637237299999924],[100.43207960000007,-0.639914],[100.42831090000004,-0.646897399999943],[100.42766720000009,-0.652645099999972],[100.42814370000008,-0.655390199999943],[100.43002980000006,-0.656846499999972],[100.43656480000004,-0.656871],[100.45063650000009,-0.654063199999939],[100.46569820000008,-0.656005899999968],[100.47509770000005,-0.655212399999925],[100.48247860000004,-0.659028199999966],[100.48579040000004,-0.658972899999981],[100.50590190000008,-0.642901799999947],[100.52050780000008,-0.635498],[100.51727290000008,-0.632507299999929],[100.51849370000008,-0.628784199999927],[100.51531980000004,-0.625183099999958],[100.51531980000004,-0.622985799999924],[100.51129150000008,-0.619995099999926],[100.49792480000008,-0.601806599999975],[100.49810790000004,-0.5949097],[100.49609380000004,-0.592590299999927],[100.494873,-0.586486799999932],[100.49188230000004,-0.580810499999927],[100.48547360000003,-0.574890099999948],[100.48931880000004,-0.568908699999952],[100.48907470000006,-0.565185499999927],[100.48327640000008,-0.556518599999947],[100.48272710000003,-0.548584],[100.48327640000008,-0.544677699999966],[100.487915,-0.539001499999927],[100.49267580000009,-0.538024899999925],[100.49572750000004,-0.535400399999958],[100.50451660000004,-0.535400399999958],[100.50952150000006,-0.5426025],[100.51647950000006,-0.548217799999975],[100.519104,-0.548706099999947],[100.52270510000005,-0.546325699999954],[100.52667240000005,-0.545898399999942],[100.53070070000007,-0.549194299999954],[100.53210450000006,-0.548217799999975],[100.534729,-0.5499878],[100.53692630000006,-0.549377399999969],[100.53833010000005,-0.5518799],[100.54327390000009,-0.553222699999935],[100.54492190000008,-0.556518599999947],[100.552124,-0.563476599999944],[100.55749510000004,-0.574279799999942],[100.56030270000008,-0.577026399999966],[100.56750490000007,-0.591918899999939],[100.56750490000007,-0.598693799999978],[100.571106,-0.601379399999928],[100.57171630000005,-0.608398399999942],[100.57348630000007,-0.6074829],[100.57867430000005,-0.597106899999972],[100.58312990000007,-0.584289599999977],[100.59667970000004,-0.565002399999969],[100.59948730000008,-0.554687499999943],[100.60650630000004,-0.550903299999959],[100.61248780000005,-0.559509299999945],[100.617273,-0.557536899999945],[100.62268070000005,-0.551696799999945],[100.630127,-0.548706099999947],[100.63723130000005,-0.538408799999956],[100.65339830000005,-0.537275399999942],[100.66632080000005,-0.534606899999972],[100.67791750000004,-0.5366821],[100.68048540000007,-0.542042899999956],[100.67770170000006,-0.554333699999972],[100.68236820000004,-0.555493599999977],[100.68908690000006,-0.554077099999972],[100.69855540000003,-0.555277299999943],[100.70045050000004,-0.557664099999954],[100.70111080000004,-0.569213899999966],[100.70726730000007,-0.573922],[100.71314820000003,-0.572961599999928],[100.71887210000006,-0.568908699999952],[100.72369380000004,-0.558410599999945],[100.72813670000005,-0.554662699999938],[100.73167340000003,-0.553576499999963],[100.74593380000005,-0.5605265],[100.75246170000008,-0.5563274],[100.77239050000009,-0.557986399999947],[100.77987880000006,-0.561610299999927],[100.78099240000006,-0.553498499999932],[100.78496730000006,-0.549428],[100.78837810000005,-0.553984599999978],[100.78696150000007,-0.55734],[100.78770830000008,-0.561083399999973],[100.79068170000005,-0.563279899999941],[100.795115,-0.562708899999961],[100.79779940000009,-0.564543599999979],[100.80202130000004,-0.556087399999967],[100.813474,-0.540593699999931],[100.82488250000006,-0.535354499999926],[100.83696280000004,-0.536707199999967],[100.84931070000005,-0.526684399999965],[100.85214180000008,-0.52275],[100.85184210000006,-0.517406],[100.84799650000008,-0.507568799999945],[100.84210460000008,-0.499531499999932],[100.84059820000004,-0.494621799999948],[100.83560260000007,-0.4917929],[100.83264910000008,-0.494117699999947],[100.82429780000007,-0.490539099999978],[100.81973570000008,-0.492258399999969],[100.81646940000007,-0.487882599999978],[100.81737080000005,-0.4765429],[100.82084770000006,-0.474932299999978],[100.82239280000005,-0.462190699999951],[100.82510370000006,-0.457108099999971],[100.81755360000005,-0.449278899999968],[100.81697260000004,-0.444757699999968],[100.81964010000007,-0.438942599999962],[100.81876210000007,-0.4345571],[100.82866290000004,-0.419905599999936],[100.828447,-0.415836399999932],[100.83132510000007,-0.4079505],[100.82911240000004,-0.399396699999954],[100.83397360000004,-0.396981299999936],[100.83703510000004,-0.393065099999944],[100.83357870000003,-0.380125899999939],[100.83389290000008,-0.374121399999979],[100.83213520000004,-0.366119099999935],[100.828034,-0.362448599999937],[100.82841970000004,-0.359419199999934],[100.82577970000006,-0.352221799999938],[100.82424060000005,-0.351597399999946],[100.81320960000005,-0.350334299999929],[100.81261740000008,-0.353490399999941],[100.81022830000006,-0.354150899999979],[100.808648,-0.351555899999937],[100.80742110000006,-0.353156799999965],[100.80287430000004,-0.353275199999928],[100.79907710000003,-0.351196199999947],[100.79113620000004,-0.351830699999937],[100.78650530000004,-0.349561799999947],[100.78571310000007,-0.346948499999939],[100.78361880000006,-0.348404799999969],[100.77782080000009,-0.3465612],[100.77625840000007,-0.349771699999962],[100.77290810000005,-0.350794299999961],[100.77293940000004,-0.355641299999945],[100.77573120000005,-0.358064199999944],[100.77374760000004,-0.360433799999953],[100.76289250000008,-0.365246799999966],[100.75434560000008,-0.366225099999951],[100.75000130000006,-0.363024799999948],[100.73562130000005,-0.358361299999956],[100.71120890000009,-0.343625399999951],[100.69579920000007,-0.339468599999975],[100.68918630000007,-0.3349429],[100.686181,-0.327132499999948],[100.67392030000008,-0.324939299999926],[100.66825430000006,-0.329018899999937],[100.66660590000004,-0.331940199999963],[100.66795620000005,-0.344917],[100.661717,-0.3493045],[100.64513190000008,-0.352400299999942],[100.63785240000004,-0.351008899999954],[100.62502120000005,-0.352557699999977],[100.61708690000006,-0.351372899999944],[100.60800060000008,-0.352235099999973],[100.60527670000005,-0.3508518],[100.601374,-0.344205399999964],[100.60219670000004,-0.334924899999976],[100.60086220000005,-0.314071599999977],[100.59899630000007,-0.312561599999924],[100.59325040000004,-0.313557299999957],[100.58834010000004,-0.311604599999953],[100.58454360000007,-0.312229199999933],[100.57999580000006,-0.308883599999945],[100.57650590000009,-0.302092199999947],[100.58205820000006,-0.293979099999945],[100.57955150000004,-0.292125399999975],[100.57951730000008,-0.288372299999935],[100.57471050000004,-0.287251499999968],[100.57484820000008,-0.284049899999957],[100.56752290000009,-0.280885599999976],[100.55821630000008,-0.283735699999966],[100.54981490000006,-0.282751],[100.54348520000008,-0.284615],[100.53961590000006,-0.2839552],[100.53555930000005,-0.280546799999968],[100.53087130000006,-0.282455099999936],[100.52538730000003,-0.290260799999942],[100.51790060000008,-0.295136599999978],[100.50960080000004,-0.303440299999977],[100.50513550000005,-0.312783599999932],[100.50376110000008,-0.321393799999953],[100.49537550000008,-0.334599599999933],[100.49500430000006,-0.34122],[100.48756890000004,-0.347751199999948],[100.48135850000006,-0.356615499999975],[100.47874330000008,-0.374921599999936],[100.473094,-0.380864599999938],[100.47168510000006,-0.386996899999929],[100.46932740000005,-0.390280399999938],[100.45186280000007,-0.392029],[100.43772130000008,-0.389209599999958],[100.41809150000006,-0.392016699999942],[100.39788590000006,-0.384802599999944],[100.38111770000006,-0.383937],[100.36995730000007,-0.389881199999934],[100.36616460000005,-0.389113099999975],[100.36335830000007,-0.390388799999926],[100.35786470000005,-0.388969599999939],[100.35302980000006,-0.391503],[100.33327080000004,-0.392085],[100.33190270000006,-0.393984699999976],[100.331876,-0.402957199999946],[100.32336,-0.410737099999949],[100.31568630000004,-0.429181099999937]],[[100.39987660000008,-0.450042099999962],[100.40416580000004,-0.451608699999952],[100.40438840000007,-0.455045699999971],[100.40767950000009,-0.455593499999964],[100.40885,-0.459356],[100.41188170000004,-0.454588099999967],[100.42484990000008,-0.455640399999936],[100.42582010000007,-0.459593499999926],[100.42945180000004,-0.460056399999928],[100.43245590000004,-0.4628118],[100.43635770000009,-0.469658799999934],[100.43572850000004,-0.472238699999934],[100.43268750000004,-0.4730261],[100.43454020000007,-0.478228099999967],[100.43332540000006,-0.488740699999937],[100.431271,-0.4884068],[100.43058850000006,-0.486504299999979],[100.42356330000007,-0.485765899999933],[100.42218850000006,-0.4833177],[100.42068420000004,-0.485232],[100.41236990000004,-0.483579],[100.40775230000008,-0.484361599999943],[100.40575690000009,-0.480236499999933],[100.40419,-0.480175199999962],[100.40646080000005,-0.4852229],[100.38008910000008,-0.485574299999939],[100.36782720000008,-0.479032399999937],[100.36631720000008,-0.476557399999933],[100.37028430000004,-0.473268899999937],[100.36998720000008,-0.471115],[100.37179360000005,-0.468191399999967],[100.374814,-0.466842299999939],[100.375182,-0.463710799999944],[100.37643170000007,-0.464335099999971],[100.37877880000008,-0.461479399999973],[100.38093520000007,-0.461727699999926],[100.385169,-0.459165699999971],[100.38757850000007,-0.460106399999972],[100.38955820000007,-0.458356399999957],[100.39005340000006,-0.460164499999962],[100.39090140000008,-0.458888299999956],[100.39598660000007,-0.460190499999953],[100.396819,-0.455327399999931],[100.39535860000007,-0.454211799999939],[100.39644970000006,-0.450956],[100.39987660000008,-0.450042099999962]]]},"properties":{"shapeName":"Tanah Datar","shapeISO":"","shapeID":"22746128B35096878186167","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[114.92004610000004,-3.595912699999928],[114.91761910000002,-3.596398399999941],[114.90814880000005,-3.588117899999929],[114.90536960000009,-3.583911],[114.90587650000009,-3.581039199999964],[114.89868390000004,-3.575851299999954],[114.8939673000001,-3.574202799999966],[114.89720330000011,-3.5691583],[114.890936,-3.5613857],[114.89031320000004,-3.559540099999936],[114.89208360000009,-3.5563992],[114.88899980000008,-3.553886499999976],[114.88979930000005,-3.550974],[114.8833998,-3.549885299999971],[114.87859150000008,-3.554264099999955],[114.87726020000002,-3.557743099999925],[114.86919210000008,-3.554765699999962],[114.86973820000003,-3.552012],[114.86806740000009,-3.549045299999932],[114.863365,-3.5509529],[114.86127980000003,-3.549029],[114.860334,-3.549941099999955],[114.8594700000001,-3.545787399999938],[114.85799710000003,-3.546174],[114.85730320000005,-3.549583799999937],[114.850808,-3.5482361],[114.84005560000003,-3.539828799999952],[114.8348334000001,-3.538260899999955],[114.8349584,-3.535596399999974],[114.83247430000006,-3.532771599999933],[114.83337870000003,-3.5284951],[114.83168450000005,-3.523102499999936],[114.82144,-3.521278499999937],[114.80887590000009,-3.523326],[114.7958499,-3.521462799999938],[114.787979,-3.518731399999979],[114.7858834000001,-3.514269399999932],[114.78019930000005,-3.514407099999971],[114.77549820000002,-3.51183],[114.76183650000007,-3.509306],[114.73549660000003,-3.510033699999951],[114.70435140000006,-3.513475699999958],[114.6205920000001,-3.530765299999928],[114.611292,-3.534265299999959],[114.605092,-3.532865299999969],[114.585892,-3.532865299999969],[114.530592,-3.540765299999975],[114.51676730000008,-3.544197899999972],[114.52013210000007,-3.546373],[114.52712910000002,-3.546511299999963],[114.540113,-3.550779],[114.55516310000007,-3.5568457],[114.55677960000003,-3.555798099999947],[114.55609790000005,-3.554319499999963],[114.5587614000001,-3.555169599999942],[114.55884250000008,-3.560145099999943],[114.56100050000009,-3.563605299999949],[114.5638474000001,-3.567104399999948],[114.5711195,-3.571404599999937],[114.581805,-3.590158699999961],[114.5970132000001,-3.608996699999977],[114.60402660000011,-3.621355899999969],[114.61552740000002,-3.649469699999941],[114.6203686,-3.673183499999936],[114.62301150000008,-3.711468399999944],[114.62111880000009,-3.723540699999944],[114.61870610000005,-3.724767099999951],[114.61171210000009,-3.740483099999949],[114.60739090000004,-3.78298],[114.60870260000002,-3.794364499999972],[114.60577790000002,-3.7963912],[114.60300040000004,-3.806205699999964],[114.60499620000007,-3.829532599999936],[114.61121680000008,-3.861688199999946],[114.60898940000004,-3.868948799999941],[114.61051630000009,-3.8757212],[114.60959250000008,-3.887822699999958],[114.61491620000004,-3.909055499999965],[114.61409480000009,-3.910540899999944],[114.61602730000004,-3.912475499999971],[114.61799440000004,-3.919469299999946],[114.61784550000004,-3.923132399999929],[114.6276583,-3.962879499999929],[114.63032610000005,-3.96757],[114.62863930000003,-3.975624399999958],[114.63264150000009,-3.990885299999945],[114.63731320000011,-4.026860599999964],[114.63786530000004,-4.048639699999967],[114.63463060000004,-4.061634499999968],[114.63307440000005,-4.063602599999967],[114.62911850000012,-4.062834899999928],[114.62418050000008,-4.065666399999941],[114.625794,-4.066542399999946],[114.6275237000001,-4.0714642],[114.627002,-4.077123299999926],[114.62888350000003,-4.0890503],[114.6302548000001,-4.149130499999956],[114.62670530000003,-4.155551899999978],[114.61940290000007,-4.1605],[114.62501780000002,-4.167045299999927],[114.63594440000008,-4.172940599999947],[114.6594543000001,-4.177649499999973],[114.67731420000007,-4.177747799999963],[114.69496590000006,-4.174398099999962],[114.72002860000009,-4.165058299999941],[114.75418260000004,-4.147331099999974],[114.7773175000001,-4.132001],[114.83565390000001,-4.101231799999937],[114.879218,-4.079489299999977],[114.92593410000006,-4.058340699999974],[114.92536710000002,-4.056279599999925],[114.92458350000004,-4.057909599999959],[114.924996,-4.055943499999955],[114.93197490000011,-4.054596],[114.97078030000011,-4.032633399999952],[114.97504350000008,-4.033468099999936],[114.9739029000001,-4.032209899999941],[114.9747767,-4.030996499999958],[114.98806790000003,-4.0218154],[115.0211637000001,-4.006156],[115.08446340000012,-3.979603],[115.12505090000002,-3.967344],[115.12526580000008,-3.964519299999949],[115.13088840000012,-3.963865899999973],[115.1411988000001,-3.959172599999931],[115.14289030000009,-3.956704899999977],[115.1746882000001,-3.943543199999965],[115.18539240000007,-3.937413],[115.2089572000001,-3.927167699999927],[115.23064620000002,-3.918629],[115.24743660000001,-3.914295699999968],[115.25000050000006,-3.908689199999969],[115.2549911000001,-3.910087899999951],[115.27233120000005,-3.9012527],[115.3137848,-3.883873499999936],[115.3721455000001,-3.862853199999961],[115.3742486000001,-3.860704599999963],[115.37599140000009,-3.861072099999944],[115.377492,-3.858865299999934],[115.376292,-3.855265299999928],[115.36828570000011,-3.853675],[115.36667480000006,-3.846502699999974],[115.36910420000004,-3.839875],[115.37146870000004,-3.839128599999981],[115.37198540000009,-3.832161],[115.368892,-3.826265299999932],[115.368892,-3.820965299999955],[115.367292,-3.817565299999956],[115.355292,-3.813565299999937],[115.352992,-3.809965299999931],[115.345792,-3.792765299999928],[115.34609200000011,-3.787965299999939],[115.34383730000002,-3.785153299999934],[115.34360010000012,-3.781706799999938],[115.3401831000001,-3.778774299999952],[115.317392,-3.736365299999932],[115.31238930000006,-3.719963199999938],[115.299159,-3.710024199999964],[115.296692,-3.7037653],[115.291092,-3.698365299999978],[115.279892,-3.6792653],[115.26710920000005,-3.651216499999975],[115.24742360000005,-3.5962015],[115.237092,-3.603565299999957],[115.21929200000011,-3.607565299999976],[115.196995,-3.607843],[115.18840300000011,-3.610156],[115.17169700000011,-3.62024],[115.153492,-3.633765299999936],[115.149592,-3.635065299999951],[115.122105,-3.634274],[115.105892,-3.645765299999937],[115.099093,-3.652274],[115.08994,-3.664291],[115.08339200000012,-3.669065299999943],[115.011724,-3.693011],[114.998935,-3.702771],[114.983392,-3.700165299999981],[114.969892,-3.7232653],[114.96553,-3.727498],[114.956787,-3.730723],[114.943792,-3.7289653],[114.940492,-3.727365299999974],[114.938038,-3.724436],[114.936821,-3.722618],[114.9365659,-3.7168466],[114.9365782000001,-3.7168458],[114.93649090000008,-3.715082799999948],[114.93490740000004,-3.7109128],[114.9345379,-3.704103599999939],[114.93529200000012,-3.687865299999942],[114.94485010000005,-3.667737799999941],[114.9681690000001,-3.638904],[114.968111,-3.628443],[114.964309,-3.621934],[114.95733,-3.61423],[114.93044,-3.609799],[114.91866850000008,-3.609854399999961],[114.916989,-3.606517],[114.92004610000004,-3.595912699999928]]]},"properties":{"shapeName":"Tanah Laut","shapeISO":"","shapeID":"22746128B15542856646407","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[106.65116030000007,-6.362204],[106.65684680000004,-6.3595158],[106.65683960000007,-6.357265199999972],[106.65425130000006,-6.350199199999963],[106.64698,-6.34378],[106.64697,-6.33998],[106.65457,-6.33541],[106.66062,-6.32804],[106.65774,-6.32484],[106.65846,-6.32026],[106.65914,-6.31802],[106.66231,-6.31758],[106.66089,-6.31568],[106.65638,-6.31683],[106.65538,-6.31591],[106.65916,-6.30853],[106.65707,-6.30613],[106.65585,-6.30052],[106.65367,-6.29871],[106.65388,-6.29466],[106.65752,-6.29001],[106.65582,-6.28633],[106.64996,-6.28393],[106.64649,-6.27918],[106.64603,-6.27605],[106.65101,-6.27258],[106.65186,-6.26903],[106.64739,-6.26585],[106.64906,-6.26103],[106.64396,-6.24752],[106.64433,-6.24249],[106.63671,-6.23667],[106.63949030000003,-6.230999299999951],[106.638065,-6.229747299999929],[106.63046290000005,-6.225513],[106.62784710000005,-6.227812],[106.619285,-6.227484499999946],[106.61781610000008,-6.224926],[106.611634,-6.227167599999973],[106.61075110000007,-6.225301599999966],[106.61358490000003,-6.223552],[106.61358140000004,-6.220709799999952],[106.609489,-6.220338499999968],[106.61258720000006,-6.215792099999931],[106.60238210000006,-6.213429899999937],[106.60471220000005,-6.208392899999978],[106.60126050000008,-6.205773199999953],[106.59990810000005,-6.207358199999931],[106.59698290000006,-6.207595099999935],[106.5957,-6.20586],[106.593735,-6.213551],[106.59474970000008,-6.2145791],[106.59062190000009,-6.2216432],[106.59163250000006,-6.222724599999935],[106.58288460000006,-6.220676699999956],[106.58032250000008,-6.216339099999971],[106.57317840000007,-6.215519799999981],[106.57334490000005,-6.214328099999932],[106.57132110000003,-6.214140899999961],[106.57141180000008,-6.212289],[106.56975680000005,-6.213203699999951],[106.56490350000007,-6.211240199999963],[106.56908440000007,-6.206267799999978],[106.55807520000008,-6.201459399999976],[106.55619860000007,-6.198923699999966],[106.55261250000007,-6.1994852],[106.55394,-6.197649399999932],[106.55335260000004,-6.195025899999962],[106.551938,-6.1948461],[106.55164360000003,-6.189044899999942],[106.55338310000008,-6.188133599999958],[106.55265070000007,-6.184793899999931],[106.56093620000007,-6.181604799999945],[106.56103610000008,-6.180189799999937],[106.564873,-6.1797804],[106.564728,-6.178111],[106.56845880000009,-6.174938199999929],[106.57922390000004,-6.172037099999955],[106.57863640000005,-6.170040599999936],[106.58064290000004,-6.166967299999953],[106.58261130000005,-6.166902499999935],[106.58355430000006,-6.162277],[106.58739490000005,-6.162125499999945],[106.59177380000006,-6.158514799999978],[106.59032520000005,-6.148125],[106.61335010000005,-6.147672599999964],[106.61567750000006,-6.140526899999941],[106.61083950000005,-6.135185199999967],[106.61404440000007,-6.131606099999942],[106.61409020000008,-6.125971299999946],[106.62306240000004,-6.120690299999978],[106.63209,-6.12023],[106.63133140000008,-6.117271199999948],[106.63578050000007,-6.105780099999947],[106.64249440000003,-6.107842399999981],[106.64250970000006,-6.117345299999954],[106.67152430000004,-6.105793],[106.67013260000004,-6.102960899999971],[106.67548390000007,-6.102169],[106.67577380000006,-6.098608499999955],[106.67696090000004,-6.098011099999951],[106.68723570000009,-6.097140699999954],[106.69196760000005,-6.095673899999952],[106.70214860000004,-6.0967608],[106.70410180000005,-6.095236799999952],[106.71137910000004,-6.09595],[106.71373450000004,-6.093319299999962],[106.72233330000006,-6.091892199999961],[106.72465820000008,-6.089184499999931],[106.71262,-6.06897],[106.70953,-6.05557],[106.70959,-6.04983],[106.7111,-6.04605],[106.71469,-6.04486],[106.71302110000005,-6.043982399999948],[106.71241430000003,-6.040306199999975],[106.70930910000004,-6.036130199999945],[106.70509750000008,-6.035059499999932],[106.70363690000005,-6.031225799999959],[106.700636,-6.030062599999951],[106.69943,-6.02605],[106.69870860000009,-6.027064499999938],[106.69521080000004,-6.025672499999928],[106.68921460000007,-6.021889099999953],[106.67941,-6.01267],[106.66487660000007,-6.0219348],[106.65772920000006,-6.018760099999952],[106.658234,-6.017177799999956],[106.65236890000006,-6.013125399999979],[106.64859720000004,-6.005256699999961],[106.64489060000005,-6.005692599999975],[106.64306490000007,-6.001402],[106.63806810000005,-6.005113899999969],[106.63299980000005,-6.006505899999979],[106.62935920000007,-6.012752],[106.62391020000007,-6.014476799999954],[106.614,-6.02249],[106.60813280000008,-6.025109499999928],[106.60135040000006,-6.025926399999946],[106.60128080000004,-6.027264899999977],[106.59580880000004,-6.027885399999946],[106.58677880000005,-6.032061299999953],[106.56944220000008,-6.031048699999928],[106.55847,-6.02525],[106.55306390000004,-6.025367],[106.54398630000009,-6.019085799999971],[106.54088680000007,-6.014252],[106.53986370000007,-6.014852899999937],[106.53721180000008,-6.012771899999962],[106.53760520000009,-6.010910799999976],[106.53524,-6.010473],[106.52969660000008,-6.014570699999979],[106.52361210000004,-6.029170799999974],[106.52505530000008,-6.031231199999979],[106.52140850000006,-6.033172],[106.52241360000005,-6.033983],[106.51844250000005,-6.031491299999971],[106.51726910000008,-6.033390099999963],[106.51573490000004,-6.03235],[106.51426320000007,-6.034249799999941],[106.51234630000005,-6.033176699999956],[106.50877470000006,-6.037663],[106.503589,-6.040985899999953],[106.49668180000003,-6.044548799999973],[106.489633,-6.046078399999942],[106.48223920000004,-6.046562399999971],[106.47335,-6.04465],[106.46333930000009,-6.038639799999942],[106.45874410000005,-6.037762199999975],[106.45789,-6.03623],[106.44597,-6.03372],[106.44213380000008,-6.03088],[106.44186450000007,-6.027795499999968],[106.44070850000008,-6.028125799999941],[106.4403,-6.03166],[106.43111,-6.03213],[106.41535270000008,-6.024150099999929],[106.41196340000005,-6.023995499999955],[106.40747860000005,-6.030905099999927],[106.40120720000004,-6.030308099999957],[106.39787320000005,-6.027823299999966],[106.39650750000004,-6.029094099999952],[106.39369990000006,-6.027711299999964],[106.39091050000007,-6.0289382],[106.38805660000008,-6.027903299999934],[106.38823730000007,-6.031220299999973],[106.38554760000005,-6.028718699999956],[106.38522790000007,-6.031166499999927],[106.382976,-6.029722299999946],[106.38311820000007,-6.032235699999944],[106.37991360000007,-6.034825199999943],[106.37874630000005,-6.038370499999928],[106.37430680000006,-6.040624399999956],[106.37236320000005,-6.044171199999937],[106.37075640000006,-6.037326899999925],[106.366524,-6.038467799999978],[106.358149,-6.045726899999977],[106.359075,-6.0497813],[106.35620550000004,-6.049717499999929],[106.35172410000007,-6.057596099999955],[106.34887440000006,-6.057255599999962],[106.35052520000005,-6.059746099999927],[106.34999870000007,-6.062485599999945],[106.33938620000004,-6.0631784],[106.33997370000009,-6.074607199999946],[106.34839660000006,-6.086581599999931],[106.35115080000008,-6.0872148],[106.35274530000004,-6.089271899999972],[106.35086080000008,-6.090602299999944],[106.35107450000004,-6.092054699999949],[106.35353120000008,-6.092441899999926],[106.35260040000009,-6.096776399999953],[106.35016660000008,-6.097566],[106.35128050000009,-6.1007455],[106.35279110000005,-6.101120799999933],[106.352196,-6.102478799999972],[106.34977750000007,-6.102745899999945],[106.35073880000004,-6.109929399999942],[106.35168480000004,-6.111114799999939],[106.35389740000005,-6.110239899999954],[106.35585050000009,-6.113596299999926],[106.36185480000006,-6.116478299999926],[106.36460140000008,-6.1203831],[106.36215240000007,-6.121276699999953],[106.36773710000006,-6.127336399999933],[106.37189510000007,-6.129230799999959],[106.37723570000009,-6.128857499999981],[106.37879970000006,-6.1348237],[106.38458280000003,-6.140445599999964],[106.39257840000005,-6.151805299999978],[106.39266990000004,-6.156810199999939],[106.38821440000004,-6.156320499999936],[106.38753540000005,-6.1573251],[106.39278440000004,-6.160369299999957],[106.39277680000004,-6.161934299999928],[106.39025140000007,-6.162693399999966],[106.39366180000007,-6.1650494],[106.39312770000004,-6.166412199999968],[106.39022850000003,-6.166372699999954],[106.39086180000004,-6.169736299999954],[106.39425680000005,-6.170584599999927],[106.38892390000007,-6.175308599999937],[106.38879420000006,-6.176722899999959],[106.39129660000003,-6.176452],[106.39075490000005,-6.179121799999962],[106.38943510000007,-6.180407399999979],[106.38749720000004,-6.179353099999958],[106.38570430000004,-6.186179],[106.38024930000006,-6.186276799999973],[106.38013490000009,-6.189008599999966],[106.37799860000007,-6.187745899999925],[106.37377960000003,-6.191479499999957],[106.372803,-6.195759599999974],[106.37830510000003,-6.195803],[106.379288,-6.200752099999931],[106.37656430000004,-6.201515499999971],[106.37703730000004,-6.204819499999928],[106.37283350000007,-6.207889899999941],[106.374431,-6.211789199999942],[106.37289440000006,-6.212237],[106.37033110000004,-6.209898799999962],[106.36907750000006,-6.212613799999929],[106.37003240000007,-6.216394599999944],[106.36787220000008,-6.216400199999953],[106.36899450000004,-6.215316299999927],[106.36817990000009,-6.213561899999945],[106.36644010000003,-6.214778299999978],[106.36698330000007,-6.217980199999943],[106.370354,-6.218752299999949],[106.37312340000005,-6.221577],[106.379555,-6.218632599999978],[106.37826560000008,-6.2199057],[106.38125640000004,-6.2209104],[106.38328580000007,-6.224027499999977],[106.38182860000006,-6.226667299999974],[106.38623070000006,-6.227916099999959],[106.38552880000009,-6.229226499999925],[106.38710810000003,-6.2303203],[106.38427760000008,-6.232294899999943],[106.38587980000005,-6.238192399999946],[106.38394950000009,-6.240240899999947],[106.38654350000007,-6.240463099999943],[106.38658170000008,-6.242783899999949],[106.38864160000008,-6.244926799999973],[106.38726070000007,-6.248177399999975],[106.38523890000005,-6.248879799999941],[106.38600180000009,-6.252714499999968],[106.38278220000007,-6.261917899999958],[106.385834,-6.261419199999978],[106.38775660000005,-6.264660699999979],[106.38481170000006,-6.266032499999937],[106.38732940000006,-6.268481599999973],[106.389374,-6.268558399999961],[106.38774140000004,-6.270117599999935],[106.38913750000006,-6.272078399999941],[106.38737510000004,-6.275221199999976],[106.38929010000004,-6.2767986],[106.39231140000004,-6.274662399999954],[106.393059,-6.278534699999966],[106.39513420000009,-6.279893299999969],[106.39410430000004,-6.281206],[106.39125850000005,-6.279576199999951],[106.39031250000005,-6.281788699999936],[106.39276910000007,-6.283473799999967],[106.39465360000008,-6.293346299999939],[106.39810210000007,-6.296638399999949],[106.39893370000004,-6.302556899999956],[106.39741540000006,-6.30488],[106.39454680000006,-6.305188],[106.39575220000006,-6.3068765],[106.39446280000004,-6.313864599999931],[106.39192230000003,-6.313926099999946],[106.39539360000003,-6.315908299999933],[106.39932280000005,-6.316007],[106.39692710000008,-6.317159499999946],[106.399689,-6.318761699999925],[106.39778930000006,-6.324715],[106.40065790000006,-6.324079899999958],[106.39905570000008,-6.327303699999959],[106.40213040000003,-6.325521799999933],[106.40290090000008,-6.327511699999945],[106.40081050000003,-6.330655],[106.40140930000007,-6.331834],[106.39972690000008,-6.332384799999943],[106.40431240000004,-6.333837899999935],[106.40319850000009,-6.336569199999929],[106.40531180000005,-6.340001499999971],[106.41071350000004,-6.339195599999925],[106.41026330000005,-6.345063099999948],[106.41320830000006,-6.344209099999944],[106.41378810000003,-6.346226599999966],[106.41583280000003,-6.346084499999961],[106.41679410000006,-6.347800599999971],[106.41837340000006,-6.346377699999948],[106.42061640000009,-6.349154399999975],[106.42224910000004,-6.3465851],[106.42670470000007,-6.348073799999952],[106.43065670000004,-6.347770599999933],[106.44214650000004,-6.325714],[106.46441680000004,-6.308880199999976],[106.46617910000003,-6.305146099999945],[106.46925380000005,-6.303490099999976],[106.47182310000005,-6.306170699999939],[106.47144390000005,-6.308456499999977],[106.47322490000005,-6.307668],[106.47619780000008,-6.308871899999929],[106.47818780000006,-6.316650299999935],[106.47927120000008,-6.316590699999949],[106.48033170000008,-6.3207477],[106.483475,-6.322558799999968],[106.48410520000004,-6.325012099999981],[106.48309350000005,-6.326613099999975],[106.48435230000007,-6.328752899999927],[106.48374960000007,-6.331006899999977],[106.481705,-6.332066],[106.48273490000008,-6.332550899999944],[106.48173550000007,-6.334395799999925],[106.483475,-6.342847699999936],[106.48205590000003,-6.344043599999964],[106.47635680000008,-6.344130399999926],[106.47628810000003,-6.350949699999944],[106.49900080000003,-6.355904499999951],[106.50189230000007,-6.353902699999935],[106.50244930000008,-6.346178],[106.51109340000005,-6.355136799999968],[106.51657130000007,-6.353882699999929],[106.51910420000007,-6.355163],[106.52188140000004,-6.352868],[106.52210260000004,-6.350148599999955],[106.52617670000006,-6.349483899999939],[106.52969380000008,-6.3468312],[106.52839680000005,-6.345214799999951],[106.53137990000005,-6.342922099999953],[106.530411,-6.341283199999964],[106.53188350000005,-6.339636699999971],[106.52995320000008,-6.337597799999969],[106.52827480000008,-6.339386399999967],[106.52444480000008,-6.3388757],[106.52649710000009,-6.336357499999963],[106.52150750000004,-6.332109399999979],[106.52043180000004,-6.333417399999973],[106.518738,-6.331562899999938],[106.51509880000003,-6.332291099999964],[106.51524380000006,-6.329832899999928],[106.51272610000007,-6.329372799999931],[106.51458760000008,-6.327540299999953],[106.51329830000009,-6.325706399999945],[106.51557950000006,-6.324307799999929],[106.51575490000005,-6.325699199999974],[106.51811240000006,-6.325736],[106.51869220000003,-6.327093499999933],[106.51928740000005,-6.325808499999937],[106.52605460000007,-6.325853699999925],[106.52687860000009,-6.324633499999948],[106.52906060000004,-6.326258099999961],[106.52848080000007,-6.328119699999945],[106.53067040000008,-6.328765799999928],[106.52998380000008,-6.32979],[106.533829,-6.330539599999952],[106.53414940000005,-6.3323006],[106.53837610000005,-6.330983099999969],[106.54048180000007,-6.333303899999976],[106.54201530000006,-6.332005399999957],[106.54198480000008,-6.334006199999976],[106.54894280000008,-6.332408799999939],[106.551575,-6.333118799999966],[106.54879780000005,-6.3338555],[106.552048,-6.334052499999927],[106.55183430000005,-6.335967],[106.554024,-6.335036199999934],[106.55628990000008,-6.336268799999971],[106.55789210000006,-6.340592299999969],[106.55931120000008,-6.340109299999938],[106.55923480000007,-6.336999799999944],[106.56033350000007,-6.338638299999957],[106.56394220000004,-6.339595299999928],[106.56634540000005,-6.3374786],[106.56836720000007,-6.338820899999973],[106.57305930000007,-6.338447499999972],[106.57514980000008,-6.339865599999939],[106.57460050000009,-6.341944599999977],[106.576462,-6.341199299999971],[106.57633230000005,-6.338579099999947],[106.57730890000005,-6.338576299999943],[106.57751490000004,-6.340315299999929],[106.58287830000006,-6.3446164],[106.58239010000005,-6.3458356],[106.58727290000007,-6.348288899999943],[106.58853170000003,-6.347480699999949],[106.58765430000005,-6.3515501],[106.59007290000005,-6.352249599999936],[106.58799770000007,-6.356235899999945],[106.59027890000004,-6.356522499999926],[106.58902760000007,-6.357015499999932],[106.59087390000008,-6.358826099999931],[106.59291860000008,-6.358623899999941],[106.59386470000004,-6.3627281],[106.59776330000005,-6.362566399999935],[106.59672570000004,-6.359932399999934],[106.59809130000008,-6.3587064],[106.60339380000005,-6.361899299999948],[106.62870050000004,-6.3608708],[106.65116030000007,-6.362204]]]},"properties":{"shapeName":"Tangerang","shapeISO":"","shapeID":"22746128B22810106624983","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[104.83571670000003,-5.790390299999956],[104.82910730000003,-5.789091099999951],[104.81226540000006,-5.779464699999949],[104.80736730000007,-5.771917299999927],[104.79855540000005,-5.7649288],[104.78960610000007,-5.763013799999953],[104.78276630000005,-5.765583],[104.781908,-5.770128199999931],[104.78361320000005,-5.781332],[104.79196740000003,-5.783641799999941],[104.79650330000004,-5.796230899999955],[104.80324560000008,-5.800286],[104.80876850000004,-5.811886099999981],[104.812123,-5.815050299999939],[104.81438990000004,-5.8247712],[104.82314070000007,-5.824378399999944],[104.82833720000008,-5.828926899999942],[104.83491710000004,-5.8274789],[104.83853460000006,-5.832092899999964],[104.84485040000004,-5.834335099999976],[104.85080350000004,-5.840102799999954],[104.85475130000003,-5.840235499999949],[104.85725210000004,-5.837731899999937],[104.85843760000006,-5.832921499999941],[104.85567670000006,-5.8307648],[104.85238840000005,-5.8269882],[104.85449410000007,-5.822177899999929],[104.85455890000009,-5.816511199999979],[104.85301780000003,-5.806329699999935],[104.85071370000009,-5.801055899999938],[104.84328270000009,-5.798616399999958],[104.83571670000003,-5.790390299999956]]],[[[104.348983,-5.381569499999955],[104.36216750000006,-5.399704199999974],[104.37476270000008,-5.411988399999927],[104.382071,-5.423650699999939],[104.39663240000004,-5.438137199999971],[104.410985,-5.455501599999934],[104.41406750000004,-5.463293299999975],[104.41390130000008,-5.482032],[104.41913260000007,-5.488853199999937],[104.43102380000005,-5.498616299999981],[104.43144340000003,-5.5106208],[104.43937020000004,-5.519520599999964],[104.44075030000005,-5.523203599999931],[104.44932470000003,-5.520660599999928],[104.45217130000003,-5.521224099999927],[104.45525330000004,-5.528599499999928],[104.473616,-5.534496],[104.48133310000009,-5.54259],[104.48772590000004,-5.546603],[104.48612080000004,-5.557755499999928],[104.49999820000005,-5.568468899999971],[104.50733350000007,-5.572147899999948],[104.50912880000004,-5.574293299999965],[104.50959940000007,-5.585556099999962],[104.51697640000003,-5.585806499999933],[104.51996340000005,-5.589219299999968],[104.53034010000005,-5.5928553],[104.53510130000006,-5.595943699999964],[104.53958970000008,-5.601999199999966],[104.53873410000006,-5.605345599999964],[104.53002430000004,-5.61187],[104.53255860000007,-5.620194399999946],[104.53693050000004,-5.623183199999971],[104.53962170000005,-5.622660599999961],[104.54821750000008,-5.616253599999936],[104.55304020000005,-5.622453899999925],[104.57057010000005,-5.625588],[104.57641980000005,-5.634674399999938],[104.583612,-5.639474299999961],[104.58272480000005,-5.643119299999967],[104.58392210000005,-5.647824199999945],[104.58878420000008,-5.655942099999947],[104.60521930000004,-5.665244],[104.60921480000007,-5.669769799999926],[104.61227450000007,-5.6763123],[104.62226180000005,-5.684008199999937],[104.62476780000009,-5.690134099999966],[104.629198,-5.694497299999966],[104.62906730000009,-5.698088499999926],[104.62165910000004,-5.7011504],[104.61615480000006,-5.706954399999972],[104.61151440000003,-5.717309199999931],[104.612159,-5.723081099999945],[104.61459980000006,-5.725507199999981],[104.61199820000007,-5.731340199999977],[104.61440130000005,-5.7416274],[104.61301890000004,-5.749216199999978],[104.60968610000003,-5.751412199999947],[104.60092390000005,-5.753432399999951],[104.59022380000005,-5.7503492],[104.58831480000003,-5.751107699999977],[104.58744910000007,-5.755114499999934],[104.59205040000006,-5.763096499999961],[104.59417790000003,-5.770787299999938],[104.60228390000003,-5.77803],[104.604037,-5.784490199999937],[104.60835990000004,-5.787179899999956],[104.61058530000008,-5.793242299999974],[104.61472320000007,-5.798672899999929],[104.62054290000003,-5.802973799999961],[104.62797490000008,-5.801422699999932],[104.63091210000005,-5.802347399999974],[104.637558,-5.809443899999962],[104.642394,-5.810586799999953],[104.64789220000006,-5.816732599999966],[104.65418020000004,-5.820454499999926],[104.65306660000005,-5.822299299999941],[104.64536770000007,-5.823262399999976],[104.64037940000009,-5.826199299999928],[104.63904210000004,-5.828279],[104.63848550000006,-5.835995099999934],[104.63366180000008,-5.840497],[104.63564580000008,-5.8460617],[104.64064780000007,-5.851610199999925],[104.64050760000003,-5.857110199999966],[104.63825920000005,-5.861360499999932],[104.64252270000009,-5.868600199999946],[104.64099460000006,-5.876066199999968],[104.64505360000004,-5.877259],[104.64309370000007,-5.879700199999945],[104.64381110000005,-5.882278799999938],[104.647617,-5.883041099999957],[104.64850410000008,-5.888315599999942],[104.65037140000004,-5.889112799999964],[104.65054950000007,-5.893554599999959],[104.65282680000007,-5.894225499999948],[104.65235890000008,-5.8962063],[104.65746840000008,-5.900036],[104.65467190000004,-5.905326299999956],[104.65745850000008,-5.9084942],[104.65600520000004,-5.910528699999929],[104.65886950000004,-5.910801799999945],[104.65605890000006,-5.913649699999951],[104.65940460000007,-5.914827699999933],[104.66005290000004,-5.916447399999981],[104.65607430000006,-5.919882499999972],[104.65719820000004,-5.922180899999944],[104.65600090000004,-5.926223799999946],[104.65935070000006,-5.93036],[104.65745770000007,-5.931326799999965],[104.65664210000006,-5.935279699999967],[104.65903110000005,-5.936815499999966],[104.70312660000008,-5.933665799999972],[104.72449940000007,-5.934115799999972],[104.73057380000006,-5.930741099999977],[104.73304850000005,-5.927366499999948],[104.727874,-5.922866899999974],[104.72652420000009,-5.915442699999971],[104.728324,-5.911618099999941],[104.718875,-5.898344499999951],[104.71399480000008,-5.893369099999973],[104.71269260000008,-5.893803199999979],[104.71167890000004,-5.891130799999928],[104.71398270000009,-5.891038699999967],[104.70965160000009,-5.886799699999926],[104.70366180000008,-5.884311699999955],[104.698225,-5.877584699999943],[104.70154240000005,-5.861458299999981],[104.71158680000008,-5.844134099999962],[104.71029670000007,-5.8420146],[104.710481,-5.831140799999957],[104.702556,-5.826901899999939],[104.70154240000005,-5.822386499999936],[104.69840930000004,-5.819990599999926],[104.697027,-5.8124343],[104.69389390000003,-5.809946199999956],[104.69008220000006,-5.809469399999955],[104.691498,-5.805891599999939],[104.68467880000009,-5.8001783],[104.68191430000007,-5.789120199999957],[104.67887340000004,-5.786632099999963],[104.67509520000004,-5.786171399999944],[104.67564810000005,-5.781932499999925],[104.66922670000008,-5.775017199999979],[104.66435130000008,-5.7722056],[104.65869240000006,-5.757696899999928],[104.65261050000004,-5.752167799999938],[104.65011590000006,-5.752005199999928],[104.64484010000007,-5.742651699999954],[104.64330330000007,-5.733277],[104.64607320000005,-5.728784599999926],[104.64920090000004,-5.729038099999968],[104.65528280000007,-5.726365699999974],[104.64800290000005,-5.699365599999965],[104.64321110000009,-5.694481599999961],[104.63952510000007,-5.6857273],[104.61888340000007,-5.659844],[104.61682220000006,-5.658913199999972],[104.61170790000006,-5.6506059],[104.59367940000004,-5.632520299999953],[104.58929570000004,-5.626045099999942],[104.57132810000007,-5.6100349],[104.56414270000005,-5.601847799999973],[104.56495620000004,-5.599179],[104.56073930000008,-5.589023099999963],[104.555959,-5.583660799999961],[104.55472940000004,-5.573342599999933],[104.54894350000006,-5.564730299999951],[104.54842520000005,-5.559460299999955],[104.54599140000005,-5.554573799999957],[104.54087380000004,-5.552860199999941],[104.53609180000007,-5.549688599999968],[104.53438140000009,-5.546672199999932],[104.53134040000003,-5.546487899999931],[104.53041890000009,-5.544368499999962],[104.53419710000009,-5.536167099999943],[104.54083190000006,-5.533126099999947],[104.539607,-5.532282299999963],[104.54481340000007,-5.527108299999952],[104.54662860000008,-5.528896799999927],[104.55216070000006,-5.518004],[104.55819770000005,-5.512826],[104.56559910000004,-5.509152299999926],[104.56738860000007,-5.5063878],[104.57446680000004,-5.5066789],[104.59454160000007,-5.497215899999958],[104.60118460000007,-5.497602399999948],[104.60450790000004,-5.495067899999981],[104.60671950000005,-5.490921199999946],[104.60920760000005,-5.493685699999958],[104.60897850000003,-5.500082499999962],[104.61171870000004,-5.498339299999941],[104.616787,-5.497878499999956],[104.62461980000006,-5.503637899999944],[104.631531,-5.5027164],[104.63475630000005,-5.503637899999944],[104.63659930000006,-5.505480899999952],[104.64719660000009,-5.509167],[104.64927350000005,-5.511934099999962],[104.64997650000004,-5.509845699999971],[104.65487950000005,-5.511335299999928],[104.681764,-5.512361599999963],[104.69814920000005,-5.518025199999954],[104.69986410000007,-5.520529299999964],[104.70248690000005,-5.519764299999963],[104.70709450000004,-5.521146499999929],[104.71630950000008,-5.529670499999952],[104.72372840000008,-5.543913199999963],[104.72581610000009,-5.546705],[104.72830960000005,-5.547236099999964],[104.72921060000004,-5.554090299999928],[104.72824950000006,-5.557852499999967],[104.72932060000005,-5.559435599999972],[104.73829040000004,-5.559383199999957],[104.74184250000008,-5.564019599999938],[104.74764070000003,-5.566069899999945],[104.75063560000007,-5.569064799999978],[104.75086590000006,-5.573902699999962],[104.75846840000008,-5.576206499999955],[104.769296,-5.596249199999932],[104.77666810000005,-5.604542699999968],[104.78956920000007,-5.610071799999957],[104.79786960000007,-5.611928699999964],[104.80104030000007,-5.6102537],[104.80546510000005,-5.614679299999978],[104.81018690000008,-5.614102499999944],[104.82128510000007,-5.621598799999958],[104.82389520000004,-5.620438699999966],[104.82873310000008,-5.6213602],[104.83149760000003,-5.626198099999954],[104.83135410000006,-5.6286391],[104.836538,-5.630080299999975],[104.83798560000008,-5.631511299999943],[104.83641760000006,-5.632628299999965],[104.84099590000005,-5.635753399999942],[104.85154040000003,-5.637486499999966],[104.87365650000004,-5.648083899999961],[104.87678060000007,-5.652258699999948],[104.87566810000004,-5.657572099999925],[104.87724740000004,-5.659828199999936],[104.87983380000009,-5.661892799999976],[104.88588080000005,-5.659622699999943],[104.88489280000005,-5.665565699999945],[104.89001320000006,-5.666514],[104.901532,-5.6655924],[104.90567880000003,-5.661445699999945],[104.91282050000007,-5.663749399999972],[104.91857990000005,-5.663288699999953],[104.92894680000006,-5.6655924],[104.92894680000006,-5.667665799999952],[104.92019250000004,-5.671351899999934],[104.91280240000003,-5.669652399999961],[104.90600790000008,-5.676011099999926],[104.90660030000004,-5.677111299999979],[104.91235970000008,-5.677111299999979],[104.91397230000007,-5.679415],[104.91443310000005,-5.681949199999963],[104.91305080000006,-5.684252899999933],[104.91396410000004,-5.687531],[104.91531870000006,-5.686575699999935],[104.92134440000007,-5.6874782],[104.92203550000005,-5.692546499999935],[104.93731050000008,-5.702298399999961],[104.942311,-5.7021987],[104.94481150000007,-5.699794599999962],[104.94602610000004,-5.695706499999972],[104.94949270000006,-5.694583],[104.94972860000007,-5.692813699999931],[104.95090810000005,-5.693521399999952],[104.95137990000006,-5.697295899999972],[104.95314920000004,-5.697767699999929],[104.956216,-5.702367899999956],[104.95810320000004,-5.702132],[104.95786730000003,-5.705788499999926],[104.95574420000008,-5.706968],[104.95786730000003,-5.71204],[104.96022640000007,-5.712511799999959],[104.96046230000007,-5.717347899999936],[104.96258540000008,-5.718527399999971],[104.96635990000004,-5.718409399999928],[104.96812920000008,-5.715460599999972],[104.97247220000008,-5.7137142],[104.975842,-5.717224899999962],[104.97594210000005,-5.715521799999976],[104.98314310000006,-5.711815499999943],[104.98944370000004,-5.719429199999979],[104.99264410000006,-5.717225299999939],[104.994527,-5.720228799999973],[104.99714550000004,-5.718763299999978],[105.00252980000005,-5.719908099999941],[105.00299540000009,-5.717776399999934],[105.00599580000005,-5.717075099999931],[105.01509710000005,-5.722685],[105.01509730000004,-5.727693899999963],[105.012997,-5.728996299999949],[105.010488,-5.728541199999938],[105.01236140000009,-5.7327997],[105.01660770000007,-5.732091899999944],[105.01861290000005,-5.725840399999981],[105.02026430000006,-5.724660899999947],[105.02179760000007,-5.724307099999976],[105.02686960000005,-5.727845599999966],[105.02510030000008,-5.731974],[105.02108990000005,-5.733153499999958],[105.02002840000006,-5.735040799999979],[105.02170810000007,-5.738114899999971],[105.02131290000005,-5.740681299999949],[105.02269890000008,-5.741017499999941],[105.022249,-5.745976399999961],[105.02875690000008,-5.752615699999978],[105.03135180000004,-5.751672099999951],[105.03371090000007,-5.747425799999974],[105.03689560000004,-5.749666899999966],[105.04043420000005,-5.748959199999945],[105.04019830000004,-5.754267],[105.04243940000003,-5.753441399999929],[105.04998830000005,-5.744359],[105.05423460000009,-5.743887199999961],[105.05490370000007,-5.749089399999946],[105.05816480000004,-5.751444699999979],[105.06347930000004,-5.764428899999928],[105.06577420000008,-5.763945799999931],[105.06831060000007,-5.757302699999968],[105.07441020000005,-5.752894099999935],[105.080178,-5.752672],[105.08947990000007,-5.756322099999977],[105.09371870000007,-5.756439899999975],[105.09289450000006,-5.759501299999954],[105.08889110000007,-5.7616207],[105.09077510000009,-5.7643288],[105.08877340000004,-5.770098399999938],[105.08944910000008,-5.771086299999979],[105.09127570000004,-5.769402199999945],[105.08901390000005,-5.772107299999959],[105.08947990000007,-5.7746904],[105.09501390000008,-5.773866199999929],[105.09689780000008,-5.771511299999929],[105.10043020000006,-5.770451599999944],[105.104669,-5.771393599999953],[105.10549330000003,-5.770451599999944],[105.10837070000008,-5.772703499999977],[105.10547910000008,-5.776625599999932],[105.10443350000008,-5.775750199999948],[105.09854630000007,-5.778340599999979],[105.09725110000005,-5.78046],[105.09760430000006,-5.783639099999959],[105.08794920000008,-5.7940007],[105.08865560000004,-5.795295899999928],[105.09089280000006,-5.795178199999953],[105.09254120000008,-5.796826599999974],[105.10292570000007,-5.7877286],[105.10499650000008,-5.782965699999977],[105.11679680000009,-5.775396899999976],[105.12280190000007,-5.7773986],[105.12315510000008,-5.780813199999955],[105.12751170000007,-5.784581099999969],[105.12774720000004,-5.788466699999958],[105.12539230000004,-5.794236199999943],[105.12774720000004,-5.7987105],[105.131044,-5.798004099999957],[105.12974880000007,-5.794118499999968],[105.13304570000008,-5.793647499999963],[105.14185710000004,-5.799014499999942],[105.142789,-5.800360599999976],[105.14165,-5.801292399999966],[105.14434210000007,-5.802534899999955],[105.14744830000006,-5.807401399999947],[105.15076160000007,-5.8086438],[105.15231470000003,-5.8086438],[105.15210760000008,-5.805744699999934],[105.15366080000007,-5.804502199999945],[105.15728470000005,-5.808333199999936],[105.16225470000006,-5.807815499999947],[105.16587860000004,-5.802845599999955],[105.17211130000004,-5.800406199999941],[105.17209070000007,-5.780995],[105.14528370000005,-5.778097499999944],[105.11837590000005,-5.7720894],[105.10896520000006,-5.751939399999969],[105.09846190000007,-5.747891299999935],[105.09381,-5.735901099999978],[105.08930870000006,-5.728890199999967],[105.08640730000008,-5.725884399999927],[105.08330690000008,-5.726085199999943],[105.08330630000006,-5.721677299999953],[105.08650640000008,-5.719773399999951],[105.08680490000006,-5.709154399999932],[105.09435240000005,-5.688766699999974],[105.09290060000006,-5.678398399999935],[105.093562,-5.673438099999942],[105.07669410000005,-5.672847899999965],[105.074777,-5.669408],[105.07580690000003,-5.667658],[105.07463290000004,-5.6642371],[105.062802,-5.655709599999966],[105.05482480000006,-5.644937],[105.04657950000006,-5.639191899999958],[105.04366650000009,-5.633132],[105.02683450000006,-5.616925399999957],[105.01769370000005,-5.612167499999941],[105.01052450000009,-5.602740899999958],[105.00281790000008,-5.596636],[104.99302790000007,-5.5912844],[104.98668810000004,-5.5904412],[104.97969870000009,-5.586400899999944],[104.97160560000003,-5.585781499999939],[104.95669380000004,-5.577217599999926],[104.95669390000006,-5.576037299999939],[104.95137840000007,-5.575599699999941],[104.94437050000005,-5.569009199999925],[104.94516470000008,-5.573935499999948],[104.93777190000009,-5.567773599999953],[104.92523940000007,-5.567866899999956],[104.919033,-5.565833099999963],[104.91258790000006,-5.563320799999929],[104.89572450000009,-5.550874399999941],[104.89217310000004,-5.546568699999966],[104.89573410000008,-5.539880899999957],[104.88888970000005,-5.533584099999928],[104.88155710000007,-5.5238821],[104.87887670000003,-5.514138799999955],[104.882525,-5.502927],[104.87925740000009,-5.495787399999926],[104.88311380000005,-5.491420699999935],[104.89199860000008,-5.490162399999974],[104.89543560000004,-5.487139399999933],[104.89682030000006,-5.476347099999941],[104.89849690000005,-5.474499599999945],[104.90000660000004,-5.467948699999965],[104.90436560000006,-5.463078],[104.90650380000005,-5.456485199999975],[104.90407410000006,-5.4506056],[104.90558340000007,-5.445650499999942],[104.90373990000006,-5.443802399999925],[104.90256740000007,-5.438091],[104.88950230000006,-5.426763799999947],[104.892793,-5.421382799999947],[104.89799310000006,-5.420357],[104.89952710000006,-5.414447699999926],[104.90394030000004,-5.415341599999977],[104.90356440000005,-5.410625699999969],[104.89321420000005,-5.406073499999934],[104.89242860000007,-5.404156599999965],[104.89402910000007,-5.401495099999977],[104.88978090000006,-5.401574],[104.88546960000008,-5.397448099999963],[104.88189260000007,-5.397152799999958],[104.87826860000007,-5.386495499999967],[104.87376110000008,-5.384383],[104.87272780000006,-5.379855699999951],[104.86795940000007,-5.379195099999947],[104.86633350000005,-5.380527699999959],[104.86588940000007,-5.384230399999979],[104.86383390000009,-5.384728199999927],[104.86416840000004,-5.381215899999972],[104.85716060000004,-5.376029499999959],[104.85732810000007,-5.373186199999964],[104.86166750000007,-5.370845599999939],[104.85871150000008,-5.3676492],[104.86205240000004,-5.359791399999949],[104.85716760000008,-5.34492],[104.85783530000003,-5.343749399999979],[104.85466480000008,-5.343581399999948],[104.85166080000005,-5.345253299999968],[104.84565360000005,-5.344415599999934],[104.844152,-5.343578899999955],[104.84465340000008,-5.340401199999974],[104.83430840000005,-5.336693],[104.83297490000007,-5.331173199999967],[104.82605170000005,-5.324564799999962],[104.82571880000006,-5.321386799999971],[104.823383,-5.320382699999925],[104.820212,-5.322556099999929],[104.81654160000005,-5.3203807],[104.81373670000005,-5.313497699999971],[104.81036930000005,-5.315052699999967],[104.81036840000007,-5.318063299999949],[104.80436450000008,-5.307859],[104.79969270000004,-5.306854],[104.798859,-5.305013899999949],[104.79619170000007,-5.2973193],[104.79669520000004,-5.288120499999934],[104.79235870000008,-5.282766899999956],[104.79352750000004,-5.280258499999945],[104.78693820000007,-5.2759913],[104.77993310000005,-5.268295199999955],[104.77459490000007,-5.265617299999974],[104.76542190000004,-5.255578699999944],[104.761085,-5.252733699999965],[104.76525840000005,-5.246379599999955],[104.76425950000004,-5.240525299999945],[104.76692960000008,-5.238686499999972],[104.76743110000007,-5.2361778],[104.77143540000009,-5.235844799999938],[104.77419610000004,-5.213517199999956],[104.77319690000007,-5.208164699999941],[104.76969580000008,-5.201473299999975],[104.76302510000005,-5.1946134],[104.76169180000005,-5.190933299999926],[104.76353020000005,-5.181734899999981],[104.77512860000007,-5.170449299999973],[104.77946810000009,-5.164262399999927],[104.78263680000003,-5.166939499999955],[104.79454110000006,-5.170991399999934],[104.79229350000008,-5.157852699999978],[104.78534760000008,-5.158366],[104.78204390000008,-5.1561846],[104.78415720000004,-5.144940499999962],[104.78339110000007,-5.142343899999958],[104.78223820000005,-5.141420799999935],[104.77116790000008,-5.148500299999967],[104.76681380000008,-5.149249599999962],[104.75694590000006,-5.141836699999942],[104.75110970000009,-5.132100399999956],[104.744284,-5.133165199999951],[104.73939330000007,-5.135587699999974],[104.73070450000006,-5.133078199999943],[104.72491260000004,-5.134143199999926],[104.71948270000007,-5.138130299999943],[104.71105210000007,-5.156056599999943],[104.69938870000004,-5.167205399999943],[104.69362980000005,-5.16941],[104.67955960000006,-5.168073199999981],[104.67272840000004,-5.172294299999976],[104.66867670000005,-5.172789799999975],[104.66133960000008,-5.170551399999965],[104.65049370000008,-5.163824],[104.64510690000009,-5.156421],[104.63714420000008,-5.150473],[104.62500150000005,-5.150031699999943],[104.60693890000005,-5.154525899999953],[104.59871130000005,-5.147763099999963],[104.59576080000005,-5.147019399999976],[104.58975050000004,-5.148879099999931],[104.58533050000005,-5.148559599999942],[104.58292670000009,-5.146495399999935],[104.57852530000008,-5.135057899999936],[104.569376,-5.126204499999972],[104.56025160000007,-5.113488199999949],[104.54679790000006,-5.109426],[104.54548720000008,-5.107751499999949],[104.54634280000005,-5.107210299999963],[104.53295030000004,-5.107118],[104.52455590000005,-5.110666599999945],[104.51592270000003,-5.117300099999966],[104.50863270000008,-5.120008399999961],[104.50181020000008,-5.1244991],[104.498938,-5.128486199999941],[104.49061380000006,-5.130677799999944],[104.48601320000006,-5.136644599999954],[104.47650570000008,-5.144832699999938],[104.46080410000008,-5.150346799999966],[104.44122190000007,-5.162225599999942],[104.43825640000006,-5.166483699999958],[104.439071,-5.174481199999946],[104.43313160000008,-5.171445399999925],[104.41482440000004,-5.171754399999941],[104.41151660000008,-5.170050599999968],[104.40755810000007,-5.170435899999973],[104.40587280000005,-5.168731699999967],[104.407158,-5.171056199999953],[104.40423030000005,-5.174211299999968],[104.40152120000005,-5.184133499999973],[104.41020040000006,-5.203194499999938],[104.40139540000007,-5.229241599999966],[104.396233,-5.232066599999939],[104.39480520000006,-5.251342299999976],[104.38184980000005,-5.329712899999947],[104.37957590000008,-5.337249199999974],[104.348983,-5.381569499999955]]]]},"properties":{"shapeName":"Tanggamus","shapeISO":"","shapeID":"22746128B47994829431009","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[103.20536750000008,-1.355465399999957],[103.21886150000006,-1.3448146],[103.23172770000008,-1.343139699999938],[103.23255540000008,-1.357793199999946],[103.23638030000006,-1.363795],[103.24665190000007,-1.361079299999972],[103.25292870000004,-1.353982599999938],[103.25269090000006,-1.343046499999957],[103.25556970000008,-1.339854399999979],[103.25624930000004,-1.336842499999932],[103.26216230000006,-1.332549599999936],[103.26023010000006,-1.318089399999963],[103.26301530000006,-1.316067199999964],[103.26394370000008,-1.310859],[103.26054390000007,-1.231264499999952],[103.27274,-1.229669399999977],[103.34689670000006,-1.228777799999932],[103.40176890000004,-1.228233399999965],[103.43569990000009,-1.195365899999956],[103.43623710000008,-1.170478099999968],[103.43183890000006,-1.104516399999966],[103.43493770000003,-1.088438],[103.43943540000004,-1.079479],[103.44111660000004,-1.069274299999961],[103.45288920000007,-1.058978899999943],[103.45874030000004,-1.045832399999938],[103.46568070000006,-1.040452799999969],[103.475763,-1.0276308],[103.49277340000003,-1.019127599999933],[103.49582670000007,-1.015100699999948],[103.50634370000006,-1.0084912],[103.51245190000009,-1.006782],[103.51466210000007,-1.005029499999978],[103.51423240000008,-1.001491199999975],[103.52049490000007,-1.000404599999968],[103.52389550000004,-1.002585],[103.52683440000004,-1.000096199999973],[103.52606280000003,-0.996594],[103.53000560000004,-0.996595799999966],[103.53116690000007,-0.992938799999934],[103.53513710000004,-0.993154],[103.53714820000005,-0.988279099999943],[103.53475040000006,-0.984851899999967],[103.53921560000003,-0.981877099999963],[103.53904890000007,-0.980248199999949],[103.54061190000004,-0.978844699999968],[103.54786560000008,-0.979184799999928],[103.54909370000007,-0.978062],[103.54959640000004,-0.976882799999942],[103.54809030000007,-0.975702599999977],[103.54318070000005,-0.974071599999945],[103.54312630000004,-0.970757799999944],[103.54580540000006,-0.968961599999943],[103.54357450000003,-0.966545499999938],[103.54854110000008,-0.965424299999938],[103.54879120000004,-0.959915199999955],[103.55055380000005,-0.960401699999977],[103.551663,-0.963880299999971],[103.55507750000004,-0.963302099999964],[103.55874110000008,-0.957175499999948],[103.55586190000008,-0.956470299999978],[103.55409240000006,-0.958167299999957],[103.55088440000009,-0.956675299999972],[103.55117370000005,-0.953445699999975],[103.555616,-0.954234299999939],[103.55643930000008,-0.952826799999968],[103.55343850000008,-0.947773899999959],[103.55767590000005,-0.946657699999946],[103.55722540000005,-0.942019899999934],[103.55965260000005,-0.941399799999942],[103.56409460000003,-0.942892299999926],[103.56598740000004,-0.941568099999927],[103.56467210000005,-0.939000299999975],[103.55990050000008,-0.938708499999962],[103.56064280000004,-0.934112599999935],[103.55924670000007,-0.927983899999958],[103.56315380000007,-0.929931599999975],[103.567885,-0.928235799999925],[103.56648770000004,-0.9250883],[103.56315530000006,-0.926039299999957],[103.56134680000008,-0.922436199999936],[103.56028,-0.915893499999925],[103.56451680000004,-0.916143599999941],[103.56715050000008,-0.913411799999949],[103.56246190000007,-0.911339599999963],[103.56053040000006,-0.906742699999938],[103.56328710000008,-0.896564399999932],[103.56929920000005,-0.893213499999945],[103.56749080000009,-0.887672499999951],[103.56819290000004,-0.881833899999947],[103.57406010000005,-0.875229699999977],[103.56624850000009,-0.863119099999949],[103.54984790000009,-0.856225799999947],[103.55590560000007,-0.854647299999954],[103.55910890000007,-0.844218099999978],[103.55760140000007,-0.835036699999932],[103.54844530000008,-0.810558299999968],[103.54183760000006,-0.8067571],[103.51797850000008,-0.800696199999948],[103.48836720000008,-0.796564599999954],[103.48896990000009,-0.776745699999935],[103.48677720000006,-0.764423199999953],[103.47726290000008,-0.747569799999951],[103.46324850000008,-0.735559299999977],[103.45573090000005,-0.733294599999965],[103.44687970000007,-0.734073099999932],[103.44240890000003,-0.7396057],[103.44214180000006,-0.743934099999933],[103.44557370000007,-0.752214699999968],[103.44335890000008,-0.763867199999936],[103.43972420000006,-0.771243099999936],[103.42485740000006,-0.7760149],[103.37771660000004,-0.796073799999931],[103.36619890000009,-0.798617599999943],[103.36148980000007,-0.805231699999979],[103.35719880000005,-0.8066896],[103.35317010000006,-0.805802599999936],[103.35046130000006,-0.803420699999947],[103.34808810000004,-0.793956399999956],[103.345248,-0.792902399999946],[103.26476170000007,-0.776430699999935],[103.25280570000007,-0.772877899999969],[103.22172310000008,-0.767859199999975],[103.14689030000005,-0.751932499999953],[103.13890570000007,-0.749165699999935],[103.12154640000006,-0.746922799999936],[103.10646390000005,-0.752583699999946],[103.09780920000009,-0.757566299999951],[103.092604,-0.758497],[103.082623,-0.756554699999924],[103.06814940000004,-0.756763599999942],[103.04868610000005,-0.754745199999945],[103.01223050000004,-0.755344299999933],[103.00361020000008,-0.762929299999939],[102.97234540000005,-0.8082257],[102.96164630000004,-0.820907699999964],[102.92805150000004,-0.867494499999964],[102.88303810000008,-0.912560599999949],[102.86159620000006,-0.931586],[102.824717,-0.959897799999965],[102.79002130000003,-0.9941076],[102.78342430000004,-0.998474499999929],[102.77536280000004,-1.008865899999932],[102.77370520000005,-1.013838599999929],[102.78109440000009,-1.019769899999972],[102.78195980000004,-1.022679],[102.78101870000006,-1.024605599999973],[102.78286920000005,-1.026722899999925],[102.78315180000004,-1.030442599999958],[102.78178360000004,-1.033072799999957],[102.77740070000004,-1.030988699999966],[102.77365780000008,-1.031201299999964],[102.77337150000005,-1.032827699999928],[102.77056660000005,-1.033997699999929],[102.76051940000008,-1.027472599999953],[102.75810730000006,-1.027722099999949],[102.75590570000008,-1.032779399999924],[102.75992920000004,-1.038881699999934],[102.75659760000008,-1.045600599999943],[102.75097860000005,-1.044221199999924],[102.74716240000004,-1.0475073],[102.74021140000008,-1.048004599999956],[102.733197,-1.054062899999963],[102.734847,-1.072374],[102.73199220000004,-1.076844599999959],[102.72903240000005,-1.078636299999971],[102.716976,-1.074286],[102.709746,-1.082460699999956],[102.70538610000006,-1.081871399999955],[102.690982,-1.087241899999924],[102.68566130000005,-1.084511199999952],[102.68532040000008,-1.095309899999961],[102.67648130000003,-1.094776799999977],[102.67465030000005,-1.096413799999937],[102.67156250000005,-1.110020499999962],[102.66329020000006,-1.1139963],[102.65406910000007,-1.115818599999955],[102.64957270000008,-1.118519699999979],[102.65069830000004,-1.1264471],[102.64557010000004,-1.135818599999936],[102.64631710000003,-1.137660799999935],[102.66655390000005,-1.162802899999974],[102.67111910000006,-1.172954899999979],[102.67499780000009,-1.1780632],[102.67661790000005,-1.184548099999972],[102.68446870000008,-1.191098899999929],[102.68572990000007,-1.194781099999943],[102.68390710000006,-1.205731899999932],[102.68817980000006,-1.216536499999961],[102.68763490000003,-1.2197064],[102.69340240000008,-1.2253879],[102.69995140000003,-1.240580099999931],[102.71246180000009,-1.245794699999976],[102.715334,-1.248796699999957],[102.719172,-1.257563699999935],[102.72317260000005,-1.261036299999944],[102.73924840000006,-1.259838499999944],[102.74632750000006,-1.262889599999937],[102.75675910000007,-1.270700599999941],[102.76131520000007,-1.275984199999925],[102.76278460000003,-1.282522399999948],[102.76742480000007,-1.286245699999938],[102.76641470000004,-1.296826299999964],[102.77492260000008,-1.301897199999928],[102.78000560000004,-1.307709399999965],[102.78213770000008,-1.316675499999974],[102.78973690000004,-1.333389899999929],[102.79091110000007,-1.342098499999963],[102.80558350000007,-1.373990299999946],[102.80509520000004,-1.3790104],[102.79918360000005,-1.383904899999948],[102.79772810000009,-1.387248499999941],[102.79924090000009,-1.3968448],[102.80509490000009,-1.412270599999943],[102.81357630000008,-1.423173299999974],[102.81903770000008,-1.422608399999945],[102.82263960000006,-1.418136699999934],[102.82204410000008,-1.398968499999967],[102.82363690000005,-1.395651799999939],[102.82631670000006,-1.394833],[102.83185540000005,-1.397701099999949],[102.834582,-1.397688799999969],[102.83866190000003,-1.394392299999936],[102.84479220000009,-1.385981299999969],[102.84746440000004,-1.385405],[102.85783930000008,-1.389086299999974],[102.86065850000006,-1.385398499999951],[102.85751520000008,-1.380099599999937],[102.85897570000009,-1.377503099999956],[102.86384080000005,-1.3789284],[102.86770580000007,-1.376780899999972],[102.86750110000008,-1.370877499999949],[102.89301930000005,-1.369678599999929],[102.90098120000005,-1.377637199999924],[102.907605,-1.379797099999962],[102.92105990000005,-1.381390099999976],[102.93239510000006,-1.390647],[102.94616740000004,-1.4059175],[102.95427660000007,-1.4104618],[102.96141750000004,-1.4202478],[102.97198760000003,-1.423576399999945],[102.981576,-1.421276399999954],[102.98834050000005,-1.423182],[102.99688020000008,-1.43087],[103.01020250000005,-1.434814599999925],[103.01182440000008,-1.439342299999964],[103.02121410000007,-1.436314599999946],[103.02830440000008,-1.436880599999938],[103.03064150000006,-1.439095599999973],[103.03171570000006,-1.447737599999925],[103.03526110000007,-1.451869899999963],[103.042452,-1.451682399999925],[103.04753340000008,-1.436033599999973],[103.05130350000007,-1.433237799999972],[103.051398,-1.428297599999951],[103.05368720000007,-1.422579399999961],[103.05191320000006,-1.415737899999954],[103.05420950000007,-1.412643199999934],[103.06590430000006,-1.4094437],[103.07100310000004,-1.404031499999974],[103.06999950000005,-1.398705199999938],[103.06368880000008,-1.395269299999939],[103.05980350000004,-1.388494099999946],[103.06541840000006,-1.388368499999956],[103.07897370000006,-1.392990199999929],[103.11781820000004,-1.399622699999952],[103.11945680000008,-1.397542499999929],[103.120013,-1.391508],[103.12799560000008,-1.389154899999937],[103.13697140000005,-1.380498899999964],[103.14623990000007,-1.368409699999972],[103.14853850000009,-1.368476099999953],[103.14896460000006,-1.373933699999952],[103.15597540000005,-1.376468099999954],[103.16291820000004,-1.383959699999934],[103.16745430000009,-1.386468199999968],[103.175303,-1.378363599999943],[103.19476990000004,-1.367242099999942],[103.20536750000008,-1.355465399999957]]]},"properties":{"shapeName":"Tanjung Jabung Barat","shapeISO":"","shapeID":"22746128B97544157404395","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[104.49795610000007,-1.672937399999967],[104.49440250000004,-1.662797],[104.48803090000007,-1.657426199999975],[104.46988330000005,-1.627070499999945],[104.457519,-1.5853814],[104.45633550000008,-1.577178099999969],[104.45337270000005,-1.572553899999946],[104.45226670000005,-1.551002299999936],[104.43997520000005,-1.515801099999976],[104.438353,-1.484778699999936],[104.44332420000006,-1.458008599999971],[104.44985050000008,-1.4338489],[104.458003,-1.425797099999954],[104.45741560000005,-1.402977799999974],[104.450306,-1.387465099999929],[104.45520180000005,-1.362857499999961],[104.45609750000006,-1.333327099999963],[104.43943120000006,-1.312816],[104.44298760000004,-1.3128168],[104.43943320000005,-1.303419899999938],[104.42217540000007,-1.278285299999936],[104.40092040000008,-1.238086299999964],[104.39277540000006,-1.216607799999963],[104.38966770000008,-1.198262599999964],[104.39263550000004,-1.179023799999925],[104.40360040000007,-1.179771899999935],[104.40455460000004,-1.166660299999933],[104.40879090000004,-1.159042099999965],[104.40553490000008,-1.140249299999937],[104.40613040000005,-1.126528199999939],[104.39902550000005,-1.089837499999931],[104.39139930000005,-1.066345899999931],[104.37718050000007,-1.038155099999926],[104.36414550000006,-1.018764],[104.35955250000006,-1.017868199999953],[104.35614280000004,-1.027263499999947],[104.34999260000006,-1.033153399999946],[104.34954770000007,-1.035390399999926],[104.34347230000009,-1.0377754],[104.33769260000008,-1.0429941],[104.33309930000007,-1.043589699999927],[104.33362580000005,-1.048036699999955],[104.32774530000006,-1.044340399999953],[104.32579450000009,-1.041066099999966],[104.322449,-1.041346],[104.31938180000009,-1.043777399999954],[104.30432690000004,-1.045738399999948],[104.29921520000005,-1.048169299999927],[104.28759920000005,-1.047792499999957],[104.280259,-1.042833199999961],[104.27159280000006,-1.043648899999937],[104.26599270000008,-1.042451799999981],[104.25004220000005,-1.033052699999928],[104.21423380000004,-1.033727299999953],[104.20507020000008,-1.031504299999938],[104.19268060000007,-1.035600899999963],[104.18029190000004,-1.036281],[104.17282130000007,-1.050115499999947],[104.15966960000009,-1.0481475],[104.150166,-1.048828199999946],[104.14795940000005,-1.050365],[104.13455270000009,-1.050532099999941],[104.12787750000007,-1.048525699999971],[104.12728240000007,-1.046887799999979],[104.13010940000004,-1.043149099999937],[104.114327,-1.037719599999946],[104.10855410000005,-1.031614799999943],[104.09970050000004,-1.028996699999936],[104.08521630000007,-1.0279753],[104.04627390000007,-1.008652],[104.039709,-1.009294799999964],[104.030905,-1.001717299999939],[104.01462790000005,-0.997898099999929],[103.97388130000007,-0.991734399999928],[103.96598270000004,-0.991355899999974],[103.96075190000005,-0.992858399999932],[103.95626080000005,-0.996226899999954],[103.95194640000005,-0.992517299999975],[103.93114120000007,-0.988472599999966],[103.91916170000007,-0.983515499999953],[103.90846490000007,-0.981896799999959],[103.90081550000008,-0.984532399999978],[103.89407430000006,-0.9903447],[103.88070070000003,-0.996585499999981],[103.872463,-0.999059199999976],[103.86925470000006,-0.996258499999954],[103.85727140000006,-1.003468599999962],[103.84421930000008,-1.007878699999935],[103.84891050000004,-1.028747499999952],[103.842911,-1.008573799999965],[103.80864210000004,-1.0143401],[103.80897950000008,-1.008605599999953],[103.807341,-1.001755699999933],[103.80554870000009,-0.996909899999935],[103.80218040000005,-0.993913499999962],[103.79187620000005,-0.991421099999968],[103.78128640000006,-0.99221],[103.75461660000008,-0.990768599999967],[103.74984670000003,-0.991779799999961],[103.74819890000003,-1.009904],[103.75327260000006,-1.01572],[103.75351160000008,-1.019838299999947],[103.75180420000004,-1.0222161],[103.748478,-1.0236683],[103.74500730000005,-1.022236599999928],[103.74259980000005,-1.016392099999962],[103.74095690000007,-1.016005599999971],[103.73388720000008,-1.028020599999934],[103.72880850000007,-1.028653799999972],[103.72947,-1.027323399999943],[103.73312460000005,-1.027188599999931],[103.73623910000003,-1.023919899999953],[103.74064160000006,-1.014861399999972],[103.74483650000008,-1.017724199999975],[103.74537680000009,-1.020721799999933],[103.74754180000008,-1.0224938],[103.75241520000009,-1.0208608],[103.753093,-1.018272399999944],[103.75309380000004,-1.016228699999942],[103.74768140000003,-1.011321699999939],[103.74727720000004,-1.006553],[103.74701150000004,-0.993337099999962],[103.75039860000004,-0.984754899999928],[103.72929280000005,-0.9598141],[103.71170040000004,-0.951087799999925],[103.70006090000004,-0.949312299999974],[103.689097,-0.950806799999953],[103.68652680000008,-0.947127299999977],[103.67935270000004,-0.948759399999972],[103.67589670000007,-0.951710799999944],[103.67408920000008,-0.951296599999978],[103.66922560000006,-0.937601899999947],[103.658233,-0.927945499999964],[103.64275260000005,-0.921652499999936],[103.63395670000006,-0.91475],[103.63003210000005,-0.913794799999948],[103.62691840000008,-0.915837199999942],[103.62665020000009,-0.909161299999937],[103.60407370000007,-0.889937499999974],[103.592992,-0.875958799999978],[103.58841850000005,-0.872860299999957],[103.58554530000004,-0.8739786],[103.58266460000004,-0.877831699999945],[103.579509,-0.8741321],[103.57406010000005,-0.875229699999977],[103.56819290000004,-0.881833899999947],[103.56749080000009,-0.887672499999951],[103.56929920000005,-0.893213499999945],[103.56328710000008,-0.896564399999932],[103.56053040000006,-0.906742699999938],[103.56246190000007,-0.911339599999963],[103.56715050000008,-0.913411799999949],[103.56451680000004,-0.916143599999941],[103.56028,-0.915893499999925],[103.56134680000008,-0.922436199999936],[103.56315530000006,-0.926039299999957],[103.56648770000004,-0.9250883],[103.567885,-0.928235799999925],[103.56315380000007,-0.929931599999975],[103.55924670000007,-0.927983899999958],[103.56064280000004,-0.934112599999935],[103.55990050000008,-0.938708499999962],[103.56467210000005,-0.939000299999975],[103.56598740000004,-0.941568099999927],[103.56409460000003,-0.942892299999926],[103.55965260000005,-0.941399799999942],[103.55722540000005,-0.942019899999934],[103.55767590000005,-0.946657699999946],[103.55343850000008,-0.947773899999959],[103.55643930000008,-0.952826799999968],[103.555616,-0.954234299999939],[103.55117370000005,-0.953445699999975],[103.55088440000009,-0.956675299999972],[103.55409240000006,-0.958167299999957],[103.55586190000008,-0.956470299999978],[103.55874110000008,-0.957175499999948],[103.55507750000004,-0.963302099999964],[103.551663,-0.963880299999971],[103.55055380000005,-0.960401699999977],[103.54879120000004,-0.959915199999955],[103.54854110000008,-0.965424299999938],[103.54357450000003,-0.966545499999938],[103.54580540000006,-0.968961599999943],[103.54312630000004,-0.970757799999944],[103.54318070000005,-0.974071599999945],[103.54809030000007,-0.975702599999977],[103.54959640000004,-0.976882799999942],[103.54909370000007,-0.978062],[103.54786560000008,-0.979184799999928],[103.54061190000004,-0.978844699999968],[103.53904890000007,-0.980248199999949],[103.53921560000003,-0.981877099999963],[103.53475040000006,-0.984851899999967],[103.53714820000005,-0.988279099999943],[103.53513710000004,-0.993154],[103.53116690000007,-0.992938799999934],[103.53000560000004,-0.996595799999966],[103.52606280000003,-0.996594],[103.52683440000004,-1.000096199999973],[103.52389550000004,-1.002585],[103.52049490000007,-1.000404599999968],[103.51423240000008,-1.001491199999975],[103.51466210000007,-1.005029499999978],[103.51245190000009,-1.006782],[103.50634370000006,-1.0084912],[103.49582670000007,-1.015100699999948],[103.49277340000003,-1.019127599999933],[103.475763,-1.0276308],[103.46568070000006,-1.040452799999969],[103.45874030000004,-1.045832399999938],[103.45288920000007,-1.058978899999943],[103.44111660000004,-1.069274299999961],[103.43943540000004,-1.079479],[103.43493770000003,-1.088438],[103.43183890000006,-1.104516399999966],[103.43623710000008,-1.170478099999968],[103.43569990000009,-1.195365899999956],[103.40176890000004,-1.228233399999965],[103.34689670000006,-1.228777799999932],[103.34626750000007,-1.265721],[103.39301920000008,-1.266264499999977],[103.43394040000004,-1.297519799999975],[103.45669250000009,-1.319006299999955],[103.51127360000004,-1.321061499999928],[103.51128170000004,-1.315272499999935],[103.53616740000007,-1.314907799999958],[103.53606340000005,-1.306583599999954],[103.55222350000008,-1.3069764],[103.55222040000007,-1.312233799999944],[103.55679110000005,-1.312126899999953],[103.55569550000007,-1.324941099999933],[103.55960980000003,-1.330857899999955],[103.57892730000003,-1.330869199999938],[103.58319360000007,-1.3374834],[103.58314310000009,-1.344579299999964],[103.58476950000005,-1.344712099999924],[103.58460770000005,-1.382508499999972],[103.83789660000008,-1.334581],[104.05699280000005,-1.310641399999952],[104.06856320000009,-1.308447699999931],[104.07279630000005,-1.302687899999967],[104.09490510000006,-1.323148199999935],[104.11109140000008,-1.341647799999976],[104.147115,-1.407627099999956],[104.16232530000008,-1.430281899999954],[104.17092370000006,-1.446319599999924],[104.18696330000006,-1.462490699999933],[104.19706560000009,-1.474883499999976],[104.20596260000008,-1.489818799999966],[104.21236520000008,-1.496267099999955],[104.25383290000008,-1.549002799999926],[104.26044190000005,-1.554327499999943],[104.284092,-1.561314],[104.29734010000004,-1.571046699999954],[104.31213680000008,-1.607333099999948],[104.33240490000009,-1.626234599999975],[104.34550680000007,-1.635730699999954],[104.35847070000005,-1.642855199999929],[104.36162320000005,-1.638865299999964],[104.37179960000009,-1.634255199999927],[104.39649960000008,-1.631835199999955],[104.40759960000008,-1.625441199999955],[104.41589960000005,-1.628264199999933],[104.41890060000009,-1.626310599999954],[104.42209960000008,-1.626363199999957],[104.42675470000006,-1.629296199999942],[104.42853410000004,-1.625866],[104.43419960000006,-1.635293199999978],[104.43969960000004,-1.636445199999969],[104.45029960000005,-1.632816199999979],[104.45269960000007,-1.633219199999928],[104.46039960000007,-1.642034199999955],[104.46454410000007,-1.641088599999932],[104.46482880000008,-1.644231699999978],[104.47099960000008,-1.645261199999936],[104.47231670000008,-1.652032799999972],[104.47417460000008,-1.652575299999967],[104.47280820000009,-1.654546],[104.47439960000008,-1.656380199999944],[104.47923470000006,-1.657722599999943],[104.48025050000007,-1.6551124],[104.48078680000003,-1.6574086],[104.48409960000004,-1.656034199999965],[104.49795610000007,-1.672937399999967]]],[[[104.40394070000008,-0.861341299999935],[104.40486250000004,-0.863602399999934],[104.40714370000006,-0.863707],[104.40900110000007,-0.859508399999925],[104.40394070000008,-0.861341299999935]]]]},"properties":{"shapeName":"Tanjung Jabung Timur","shapeISO":"","shapeID":"22746128B77401088174996","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[99.42665820000008,1.477140800000029],[99.42306430000008,1.47648920000006],[99.42420390000007,1.470863700000052],[99.42037220000003,1.464379200000053],[99.42137430000008,1.463730800000064],[99.41984160000004,1.459250600000075],[99.42125640000006,1.454239800000039],[99.419028,1.446340100000043],[99.42195190000007,1.444265100000052],[99.42001840000006,1.444123600000069],[99.425253,1.439030500000058],[99.42680920000004,1.434173100000066],[99.43543930000004,1.432098100000076],[99.44177310000003,1.433465700000056],[99.44424440000006,1.44678330000005],[99.44078830000007,1.453884300000027],[99.43353290000005,1.460424],[99.43180870000003,1.467114500000037],[99.43318940000006,1.471449700000051],[99.43670870000005,1.475462],[99.43406630000004,1.48026],[99.42665820000008,1.477140800000029]]],[[[99.45948990000005,2.126261400000033],[99.45486860000005,2.095842900000036],[99.44986130000007,2.081035900000074],[99.44535070000006,2.025664800000072],[99.44794460000008,2.009969800000022],[99.44733410000003,2.001195400000029],[99.457962,1.966330200000073],[99.45826710000006,1.960074600000041],[99.45674920000005,1.954017700000065],[99.45059230000004,1.950258900000051],[99.44709,1.950013800000022],[99.44027720000008,1.952555100000041],[99.43429580000009,1.951460500000053],[99.42987070000004,1.948800600000027],[99.41899120000005,1.948200900000074],[99.41418460000006,1.943862900000056],[99.40444180000009,1.940019500000062],[99.37985210000005,1.94328530000007],[99.36464690000008,1.936914700000045],[99.35697930000003,1.915721800000028],[99.354622,1.913941800000032],[99.35372150000006,1.910173],[99.34820560000009,1.906498400000032],[99.34169750000007,1.906756100000052],[99.33939350000009,1.904484300000036],[99.34072120000008,1.897613400000068],[99.34473580000008,1.894805500000075],[99.34300110000004,1.889876500000071],[99.34377150000006,1.884017100000051],[99.34147310000009,1.882475700000043],[99.34938050000005,1.874720400000058],[99.34658120000006,1.853532500000028],[99.33994270000005,1.850011600000073],[99.33338190000006,1.840809200000024],[99.32479090000004,1.835432600000047],[99.31733690000004,1.833631400000058],[99.31186690000004,1.830208800000037],[99.30383180000007,1.831603400000063],[99.30113480000006,1.833601700000031],[99.29402440000007,1.834259400000064],[99.28773230000007,1.837344600000051],[99.28368050000006,1.825661600000046],[99.28216420000007,1.804111100000057],[99.27532190000005,1.781218500000023],[99.26700150000005,1.760789300000056],[99.25799310000008,1.74431850000002],[99.24461860000008,1.734074100000043],[99.23306610000009,1.718189400000028],[99.21640420000006,1.702117900000076],[99.20764760000009,1.697177],[99.20120390000005,1.689330600000062],[99.18405150000007,1.675956100000064],[99.17048660000006,1.667145100000027],[99.16344460000005,1.664701100000059],[99.14276890000008,1.639905],[99.13079820000007,1.64055460000003],[99.12264270000009,1.646773400000029],[99.11634840000005,1.648936300000059],[99.11074840000003,1.657386300000042],[99.10453030000008,1.661575200000073],[99.09716790000004,1.673897700000055],[99.08959970000006,1.681569100000047],[99.08502190000007,1.691312],[99.08004010000008,1.694090100000039],[99.07776650000005,1.698708600000032],[99.06850430000009,1.696773800000074],[99.061821,1.699165500000049],[99.06072240000003,1.699403],[99.060417,1.699401900000055],[99.05174250000005,1.700116900000069],[99.05165870000008,1.69918430000007],[99.06027980000005,1.66779450000007],[99.057045,1.643000500000028],[99.04491410000008,1.629004100000031],[99.03786480000008,1.62391260000004],[99.03762810000006,1.620677400000034],[99.03144060000005,1.606841600000052],[99.02944940000003,1.598224200000061],[99.03049470000008,1.590251600000045],[99.02725990000005,1.586256900000024],[99.02517710000006,1.576580300000046],[99.02136220000006,1.572283900000059],[99.01457210000007,1.569184700000051],[99.011879,1.563615],[99.01275630000004,1.556424400000026],[99.00487510000005,1.547474200000067],[99.00651550000003,1.545051800000067],[99.00617220000004,1.542541200000073],[99.00165560000005,1.53876],[98.99666580000007,1.538469900000052],[98.99221050000006,1.533812],[98.99185060000008,1.527474300000051],[98.98828130000004,1.52247490000002],[98.98848740000005,1.512482100000057],[98.99212850000004,1.510972600000059],[98.99413850000008,1.506168700000046],[99.00653120000004,1.502286200000071],[99.01373850000004,1.497958700000027],[99.00971990000005,1.484802900000034],[99.01198020000004,1.481824],[99.00934590000008,1.479041900000027],[99.00839240000005,1.473624200000074],[99.00497440000004,1.471580200000062],[99.002037,1.470733200000041],[98.995018,1.472515],[98.99071510000005,1.46858670000006],[98.986107,1.470567900000049],[98.98098770000007,1.470727400000044],[98.97567760000004,1.465224100000057],[98.97242730000005,1.463777500000049],[98.96913140000004,1.466985400000056],[98.96189120000008,1.460009400000047],[98.96449290000004,1.456947100000036],[98.97102360000008,1.455530900000042],[98.97840890000003,1.455495800000051],[98.98293320000005,1.458364800000027],[98.98825840000006,1.454215400000066],[98.98491660000008,1.446817500000066],[98.97060380000005,1.439057400000024],[98.96763610000005,1.440583700000047],[98.97023770000004,1.44494480000003],[98.967949,1.447279600000059],[98.96123520000003,1.446893700000032],[98.95663460000009,1.440394300000037],[98.95420850000005,1.444535],[98.94853970000008,1.44389620000004],[98.94571690000004,1.44694910000004],[98.94120030000005,1.441712900000027],[98.94253540000005,1.435309200000063],[98.93511190000004,1.439952600000026],[98.928978,1.43665290000007],[98.92660540000008,1.436805200000038],[98.92118840000006,1.441311700000028],[98.92385110000004,1.446844200000044],[98.91983030000006,1.446394300000065],[98.91679390000007,1.442578100000048],[98.91320040000005,1.44757],[98.91104130000008,1.444962300000043],[98.91146850000007,1.440947200000039],[98.90637220000008,1.442841600000065],[98.90255740000003,1.43927530000002],[98.90141290000008,1.439965500000028],[98.90235140000004,1.447884200000033],[98.89517210000008,1.44688270000006],[98.89694230000003,1.451896300000044],[98.892784,1.452516500000058],[98.88769540000004,1.449998300000061],[98.88374320000008,1.454327800000044],[98.88167580000004,1.44916790000002],[98.87985230000004,1.455818200000067],[98.87146750000005,1.465860900000052],[98.86966690000008,1.463042400000063],[98.87071230000004,1.457814],[98.86852260000006,1.454586200000051],[98.86483770000007,1.460509800000068],[98.86597450000005,1.46705890000004],[98.86338040000004,1.466409300000066],[98.85950460000004,1.46078650000004],[98.85752870000005,1.462083700000051],[98.85607150000004,1.467431300000044],[98.85266890000008,1.459781],[98.85061640000004,1.459815100000071],[98.849022,1.461751500000048],[98.84893810000005,1.456937500000038],[98.84185790000004,1.461105900000064],[98.83953110000004,1.45658080000004],[98.83886710000007,1.45076210000002],[98.83480080000004,1.452989900000034],[98.83200070000004,1.451113],[98.83351890000006,1.446132200000022],[98.83812720000009,1.445633800000053],[98.83991250000008,1.44150030000003],[98.84331520000006,1.439176600000053],[98.841751,1.434919],[98.84294130000006,1.430861200000038],[98.83772270000009,1.433018300000072],[98.83267210000008,1.428190800000039],[98.82795710000005,1.432602100000054],[98.824623,1.433434300000044],[98.821907,1.430826400000058],[98.82126620000008,1.426831400000026],[98.81920660000009,1.427694300000041],[98.81832030000004,1.430254700000035],[98.81985490000005,1.43421120000005],[98.817688,1.435293300000069],[98.81261440000009,1.430549],[98.80742630000003,1.430882],[98.80786890000007,1.425777200000027],[98.80524690000004,1.424903400000062],[98.80262750000009,1.426082400000041],[98.80232340000003,1.428117500000042],[98.805542,1.432685200000037],[98.80059820000008,1.434682800000076],[98.79874420000004,1.433406600000069],[98.79815680000007,1.430382700000052],[98.80059820000008,1.42502810000002],[98.798236,1.423921200000052],[98.79247290000006,1.427580500000033],[98.78735240000003,1.428380900000036],[98.78496550000006,1.431203500000038],[98.77967830000006,1.431572900000049],[98.78507240000005,1.42062],[98.81042480000008,1.393385700000067],[98.82350160000004,1.376575500000058],[98.83721940000004,1.354481100000044],[98.84632870000007,1.328701600000045],[98.85042570000007,1.325012500000071],[98.85441580000008,1.314914300000055],[98.85385890000003,1.30756580000002],[98.85215760000006,1.304403],[98.84865570000005,1.301903700000025],[98.84241480000009,1.301283600000033],[98.84399940000009,1.29730840000002],[98.84595280000008,1.298968700000046],[98.84841880000005,1.297259600000075],[98.85264370000004,1.285995200000059],[98.85608560000009,1.287981400000035],[98.865437,1.279777500000023],[98.86782420000009,1.279215900000054],[98.86990980000007,1.281387400000028],[98.86769710000004,1.282226700000024],[98.86830750000007,1.286957400000063],[98.88137410000007,1.296469900000034],[98.88190960000009,1.298676200000045],[98.88499420000005,1.297883600000034],[98.88865710000005,1.300411300000064],[98.89379810000008,1.29679120000003],[98.89675260000007,1.299486400000035],[98.89911040000004,1.294756200000052],[98.90003150000007,1.297262500000045],[98.90277330000004,1.298376300000029],[98.90573320000004,1.292330900000024],[98.908407,1.294285],[98.91194140000005,1.302553300000056],[98.92091660000006,1.307865700000036],[98.92042390000006,1.310586100000023],[98.92452020000007,1.315814300000056],[98.92685850000004,1.321804],[98.93676620000008,1.329056],[98.93839380000009,1.327882700000032],[98.94698040000009,1.329464600000051],[98.95208740000004,1.328443200000038],[98.958393,1.317376100000047],[98.96334210000003,1.319465200000025],[98.965468,1.317922600000031],[98.970575,1.299945700000023],[98.98052190000004,1.300804800000037],[98.98686940000005,1.298288],[98.99186020000008,1.299243],[98.99559970000007,1.292591500000071],[99.00029820000003,1.288710200000025],[99.00527720000008,1.287823400000036],[99.00897410000005,1.277179400000023],[99.014598,1.270426800000052],[99.02082860000007,1.269099],[99.02952450000004,1.272073900000066],[99.03225,1.266121600000019],[99.02992240000003,1.262163900000076],[99.03155350000009,1.256024900000057],[99.03400490000007,1.251837100000046],[99.03939260000004,1.249616],[99.03992910000005,1.232328100000075],[99.03849910000008,1.225178200000073],[99.04901970000009,1.215372600000023],[99.04958680000004,1.204542100000026],[99.06349250000005,1.196530600000074],[99.06807640000005,1.195795100000055],[99.07060890000008,1.192410700000039],[99.06877910000009,1.192146],[99.07060080000008,1.190198400000043],[99.13862540000008,1.159200700000042],[99.117317,1.107504300000073],[99.118042,1.101080900000056],[99.12222280000003,1.102967800000044],[99.12194830000004,1.107877600000052],[99.126358,1.108759700000064],[99.13021080000004,1.107229800000027],[99.13259120000004,1.110577300000045],[99.13437670000008,1.106779],[99.14605710000006,1.107232300000021],[99.14659870000008,1.10335630000003],[99.15140520000006,1.102541],[99.15251170000005,1.098278300000061],[99.15721130000009,1.099687],[99.16337580000004,1.098119100000019],[99.16509240000005,1.09988450000003],[99.16726670000008,1.099617900000055],[99.171219,1.093053600000076],[99.17533120000007,1.093513100000052],[99.177849,1.097285],[99.182228,1.097822200000053],[99.184433,1.094894500000066],[99.18729390000004,1.095932800000071],[99.19263450000005,1.089479500000039],[99.19804050000005,1.090696500000035],[99.19991290000007,1.086977200000035],[99.20329280000004,1.086673500000074],[99.21041870000005,1.080844500000069],[99.20929980000005,1.074500600000022],[99.21732730000008,1.068854700000031],[99.21780860000007,1.066260600000021],[99.21413780000006,1.063912800000026],[99.21393830000005,1.062180500000068],[99.21838190000005,1.058648300000073],[99.21593430000007,1.054532100000074],[99.22103130000005,1.044488400000034],[99.22215250000005,1.044326],[99.22161860000006,1.048697200000049],[99.22770130000004,1.049311300000056],[99.23091240000008,1.048475400000029],[99.23694580000006,1.042981400000031],[99.24052420000004,1.042064900000071],[99.24758170000007,1.044056300000022],[99.25167840000006,1.048247200000048],[99.255249,1.048709100000053],[99.26145170000007,1.053018100000031],[99.26382440000003,1.057519],[99.26159660000008,1.066155],[99.26577760000004,1.069931],[99.26417520000007,1.074005200000045],[99.26782370000006,1.078770700000064],[99.26702650000004,1.084484],[99.26899710000004,1.089267100000029],[99.26864430000006,1.096229400000027],[99.27091230000008,1.097202800000048],[99.27651970000005,1.09549370000002],[99.28165410000008,1.08833670000007],[99.28245540000006,1.084097100000065],[99.29020150000008,1.078106200000036],[99.29820250000006,1.064302500000053],[99.305214,1.060114100000021],[99.30594620000005,1.057129300000042],[99.30910090000003,1.054986],[99.31065340000004,1.048223700000051],[99.315397,1.043674200000055],[99.31952640000009,1.043151900000055],[99.32332630000008,1.03864580000004],[99.33054330000004,1.034889],[99.33420550000005,1.030724500000076],[99.33628110000006,1.024424200000055],[99.341324,1.025640500000065],[99.34703830000007,1.021451100000036],[99.34796140000009,1.017692200000056],[99.35095990000008,1.017186],[99.35727690000004,1.018271500000026],[99.35960410000007,1.021950300000071],[99.36766050000006,1.020113400000071],[99.372597,1.023736400000075],[99.37640380000005,1.022692500000062],[99.38663480000008,1.007066500000064],[99.38900740000008,1.005643500000076],[99.39749890000007,1.00636460000004],[99.40701290000004,0.995716500000071],[99.41242220000004,0.993741500000056],[99.41950230000003,0.987946400000055],[99.42136920000007,0.98476050000005],[99.42018150000007,0.979885900000056],[99.42805490000006,0.976323800000046],[99.43941490000003,0.975828200000024],[99.443123,0.980649600000049],[99.439206,0.989222200000029],[99.44061730000004,0.995434700000033],[99.43967430000004,1.021866500000044],[99.44331330000006,1.026157300000023],[99.44380940000008,1.030762800000048],[99.44236750000005,1.03521470000004],[99.44550310000005,1.038984900000059],[99.44397740000005,1.043025400000033],[99.44433610000004,1.052803400000073],[99.44266530000004,1.056177500000047],[99.43572980000005,1.062925100000029],[99.43475330000007,1.06564080000004],[99.42427070000008,1.071563600000047],[99.42442350000005,1.07572440000007],[99.42902350000008,1.082350100000042],[99.42799350000007,1.09228980000006],[99.43669890000007,1.099046500000043],[99.44117720000008,1.10977250000002],[99.44350430000009,1.111881500000038],[99.458847,1.115196500000025],[99.47516610000008,1.122565500000064],[99.49134060000006,1.120804],[99.49508850000007,1.127725200000043],[99.49742060000005,1.129207100000031],[99.51019250000007,1.130890700000066],[99.50941,1.13332870000005],[99.50479540000003,1.133693300000061],[99.48408510000007,1.142255100000057],[99.46536990000004,1.159544600000061],[99.46162430000004,1.167728200000056],[99.45238510000007,1.176333500000055],[99.44731890000008,1.179126800000063],[99.43650060000004,1.180879600000026],[99.43249510000004,1.184082900000021],[99.43061090000003,1.187887],[99.43041990000006,1.198464],[99.42020420000006,1.218457400000034],[99.41896050000008,1.226520500000049],[99.42116560000005,1.23058750000007],[99.42387380000008,1.233074300000055],[99.42400330000004,1.235133400000052],[99.41609210000007,1.251717],[99.41896030000004,1.260814200000027],[99.41735860000006,1.267412400000069],[99.41921260000004,1.278431100000034],[99.41259740000004,1.285041500000034],[99.40779140000006,1.300342900000032],[99.39083110000007,1.314435400000036],[99.39280720000005,1.323226],[99.390648,1.33296850000005],[99.385948,1.336944300000027],[99.37775420000008,1.35295270000006],[99.36891150000008,1.36205810000007],[99.36380750000006,1.377543200000048],[99.35270660000003,1.398084500000039],[99.34735850000004,1.405031600000029],[99.34584060000009,1.428958800000032],[99.34757990000008,1.431393800000023],[99.35520160000004,1.433911200000068],[99.36647060000007,1.432461600000067],[99.36984230000007,1.429876700000023],[99.38278960000008,1.425308500000028],[99.38674940000004,1.418738700000063],[99.39456970000003,1.413052700000037],[99.39979490000007,1.413619500000038],[99.40015470000009,1.425886700000035],[99.39655680000004,1.430743900000039],[99.39763620000008,1.433442300000024],[99.40051450000004,1.434881500000074],[99.40537170000005,1.431643400000041],[99.40699080000007,1.432183100000032],[99.40393260000008,1.442437200000029],[99.40447230000007,1.44693460000002],[99.40123410000007,1.454310300000031],[99.40285320000004,1.462765500000046],[99.40195370000004,1.464744400000029],[99.40357280000006,1.483633500000053],[99.40807020000005,1.48992990000005],[99.418864,1.496226300000046],[99.41922380000005,1.498205100000064],[99.41652530000005,1.499284500000044],[99.41418670000007,1.503062300000067],[99.42947790000005,1.51169740000006],[99.43289590000006,1.51511540000007],[99.43703350000004,1.514935500000036],[99.43820190000008,1.518057200000044],[99.43421190000004,1.522539],[99.42678830000006,1.525989500000037],[99.42172260000007,1.531586200000049],[99.42065420000006,1.538696100000038],[99.41708360000007,1.547541800000033],[99.40964480000008,1.557470100000046],[99.40396130000005,1.558978400000058],[99.39061720000007,1.572145300000045],[99.39774340000008,1.575130500000057],[99.40576190000007,1.575653400000022],[99.41091180000006,1.577671400000042],[99.42931350000003,1.574627200000066],[99.449501,1.586167500000045],[99.45472730000006,1.595306200000039],[99.45417790000005,1.603380400000049],[99.451271,1.612444200000027],[99.44608330000005,1.617902900000047],[99.43698910000006,1.621963300000061],[99.43489060000007,1.625157600000023],[99.437454,1.644037100000048],[99.43530270000008,1.654960800000026],[99.43943,1.663709900000072],[99.44346620000005,1.667118100000039],[99.45921330000004,1.669726200000071],[99.464508,1.672180500000024],[99.46686540000007,1.675900100000035],[99.46810120000004,1.68385840000002],[99.47144440000005,1.687949900000035],[99.473331,1.696421800000053],[99.47744780000005,1.702182200000038],[99.48934440000005,1.709375600000044],[99.50219140000007,1.714748500000042],[99.50595070000008,1.721830900000043],[99.51142140000007,1.726259700000071],[99.51860820000007,1.728791100000024],[99.52235430000007,1.726057200000071],[99.52874760000009,1.726245200000051],[99.53324130000004,1.724740800000063],[99.53764340000004,1.721247300000073],[99.53881050000007,1.717551300000025],[99.550354,1.71709670000007],[99.54943830000008,1.723611600000027],[99.55298630000004,1.730028300000072],[99.55091850000008,1.73405630000002],[99.55242140000007,1.737177],[99.55193330000009,1.741693400000031],[99.55818920000007,1.75022320000005],[99.56590270000004,1.756723700000066],[99.56491880000004,1.776968700000054],[99.57049550000005,1.806948700000021],[99.57028210000004,1.81453620000002],[99.56743610000007,1.825896200000045],[99.56278990000004,1.83259],[99.55606080000007,1.847133],[99.55419140000004,1.856583100000023],[99.54891970000006,1.859660500000075],[99.54801930000008,1.862710400000026],[99.55046840000006,1.866824700000052],[99.56004330000007,1.872205600000029],[99.55874660000006,1.885329600000034],[99.57124310000006,1.898872100000062],[99.57636230000008,1.91042230000005],[99.57467640000004,1.911983],[99.56693270000005,1.911983],[99.56424720000007,1.915541800000028],[99.55950140000004,1.917227400000058],[99.55524420000006,1.921340100000066],[99.55490110000005,1.927326900000025],[99.55265040000006,1.93240110000005],[99.55307790000006,1.942073600000072],[99.54608910000007,1.94860250000005],[99.54493690000004,1.953517100000056],[99.549576,1.963956300000063],[99.54908010000008,1.969896800000072],[99.55307030000006,1.972344200000066],[99.55780770000007,1.978695800000025],[99.55872370000009,1.992134400000054],[99.55502350000006,2.000003100000072],[99.55456560000005,2.008796400000051],[99.55734240000004,2.017024800000058],[99.56583390000009,2.029520500000046],[99.55604530000005,2.041824800000029],[99.55191050000008,2.054331300000058],[99.54627220000003,2.061943],[99.55079640000008,2.078408700000068],[99.53805550000004,2.091480500000046],[99.53305050000006,2.092364300000042],[99.52256790000007,2.091329100000053],[99.51690690000004,2.102247400000067],[99.51252750000003,2.122584900000049],[99.50981160000003,2.123853],[99.50155160000008,2.121054500000071],[99.47329710000008,2.119200100000057],[99.46331770000006,2.125323700000024],[99.45948990000005,2.126261400000033]],[[99.25068220000009,1.469986300000073],[99.29869240000005,1.466679700000043],[99.30184230000003,1.438595400000054],[99.324732,1.410049400000048],[99.32575360000004,1.40411030000007],[99.32038340000008,1.400122],[99.31896980000005,1.405982800000061],[99.31477520000004,1.405058500000052],[99.314681,1.406030900000076],[99.31175890000009,1.405450200000075],[99.30809470000008,1.407087100000069],[99.30768210000008,1.405189900000039],[99.30579710000006,1.406458900000075],[99.30585490000004,1.397921],[99.31122670000008,1.390639300000032],[99.308268,1.387597200000073],[99.329378,1.350757500000043],[99.346223,1.326042500000028],[99.349874,1.315808400000037],[99.34931970000008,1.31159880000007],[99.34056570000007,1.311908300000027],[99.33654020000006,1.309745200000066],[99.32746870000005,1.309851300000048],[99.32069520000005,1.306566400000065],[99.32088020000003,1.304020900000069],[99.31047380000007,1.303897800000072],[99.30340730000006,1.311732100000029],[99.301615,1.317451100000028],[99.27806520000007,1.358100200000024],[99.26974,1.359534500000052],[99.26559310000005,1.361929],[99.24801890000003,1.361899400000027],[99.24575,1.364104600000076],[99.24460930000004,1.381099400000039],[99.23997740000004,1.384297200000049],[99.23684790000004,1.388880800000038],[99.23163690000007,1.391669200000024],[99.22885160000004,1.395370800000023],[99.22752790000004,1.404625900000042],[99.22632310000006,1.406626300000028],[99.22227,1.408280500000046],[99.22175380000004,1.411084100000039],[99.22474580000005,1.414626800000065],[99.22725550000007,1.415255],[99.22576570000007,1.455664500000069],[99.23124880000006,1.464285400000051],[99.23670990000005,1.46800520000005],[99.24413840000005,1.470172800000057],[99.25068220000009,1.469986300000073]]]]},"properties":{"shapeName":"Tapanuli Selatan","shapeISO":"","shapeID":"22746128B44766043841199","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[98.48956790000005,1.68841],[98.49283160000005,1.696392],[98.48209920000005,1.703431300000034],[98.45597310000005,1.702015700000061],[98.44151950000008,1.669617600000038],[98.44385730000005,1.651308700000072],[98.46018970000006,1.637228800000059],[98.47418490000007,1.63958],[98.49238180000003,1.631134100000054],[98.50031450000006,1.624093800000026],[98.51617650000009,1.62409770000005],[98.53250380000009,1.629735400000072],[98.53810130000005,1.633492600000068],[98.54836570000003,1.630678],[98.55116610000005,1.625044800000069],[98.55116710000004,1.62035],[98.56376460000007,1.615188400000022],[98.56842920000008,1.618475800000056],[98.57309440000006,1.618946300000061],[98.57822720000007,1.614722],[98.58009250000003,1.618478200000027],[98.57962510000004,1.622703500000057],[98.58475660000005,1.624582500000031],[98.59828670000007,1.621298900000056],[98.60528670000008,1.611441],[98.61088470000004,1.61332],[98.60714970000004,1.627404],[98.60574950000006,1.630690100000038],[98.600617,1.633506],[98.60061610000008,1.638200900000072],[98.58615190000006,1.64570980000002],[98.58614940000007,1.657446900000025],[98.58988070000004,1.662612100000047],[98.58708080000008,1.665897900000061],[98.58055020000006,1.660732100000075],[98.57915170000007,1.655567500000075],[98.58008590000009,1.65040330000005],[98.57635420000008,1.64758560000007],[98.57075560000004,1.648053900000036],[98.56608970000008,1.650400300000058],[98.57168490000004,1.66542510000005],[98.57168380000007,1.67058940000004],[98.56468560000008,1.671057400000052],[98.56001850000007,1.678098600000055],[98.55628650000006,1.676689300000021],[98.55488750000006,1.67387210000004],[98.55022080000003,1.679504800000075],[98.54508820000007,1.681851100000074],[98.54788940000009,1.673870500000021],[98.54695820000006,1.665419500000041],[98.53902950000008,1.654619600000046],[98.543229,1.651803600000051],[98.53436730000004,1.641003400000045],[98.52830160000008,1.64428840000005],[98.52550120000006,1.648982500000045],[98.51057230000004,1.648039900000072],[98.50497360000008,1.649447],[98.50543890000006,1.65414190000007],[98.50403880000005,1.656489],[98.49704150000008,1.653200800000036],[98.49190890000006,1.656016400000055],[98.49377410000005,1.659772700000076],[98.49330620000006,1.665406400000052],[98.49750380000006,1.670102300000053],[98.49703550000004,1.677144400000032],[98.50123460000003,1.676206500000035],[98.50543210000006,1.681371900000045],[98.49936640000004,1.684187200000054],[98.49610110000003,1.682308400000068],[98.48956950000007,1.682306700000026],[98.48956790000005,1.68841]]],[[[98.54918490000006,1.853002400000037],[98.54417260000008,1.853266500000075],[98.54338260000009,1.847824800000069],[98.54918490000006,1.853002400000037]]],[[[98.49749760000003,1.934838200000058],[98.49938960000009,1.938462100000038],[98.49566650000008,1.936965100000066],[98.49526980000007,1.934607100000051],[98.49749760000003,1.934838200000058]]],[[[98.18042760000009,2.091529600000058],[98.18260190000007,2.092393400000049],[98.18305970000006,2.094812400000023],[98.17893980000008,2.098095900000033],[98.17481990000005,2.092164],[98.18042760000009,2.091529600000058]]],[[[98.13165460000005,2.165067300000032],[98.16206360000007,2.141986800000041],[98.18706510000004,2.11548920000007],[98.20880130000006,2.106041],[98.22361760000007,2.096766],[98.23483280000005,2.086685200000034],[98.24313350000006,2.075625700000046],[98.25554660000006,2.069519],[98.26092530000005,2.064161800000022],[98.26847840000005,2.053390300000046],[98.27162170000008,2.045614200000045],[98.27219390000005,2.038933],[98.26499180000008,2.029084700000055],[98.26613620000006,2.026723100000027],[98.27333830000003,2.028623100000061],[98.27757260000004,2.027355400000033],[98.27958140000004,2.028542900000048],[98.28040020000009,2.030467500000043],[98.27766520000006,2.036514],[98.27811960000008,2.038804900000059],[98.28330910000005,2.042839100000037],[98.287043,2.043482100000062],[98.30371540000004,2.037135500000034],[98.30785830000008,2.033387400000038],[98.31007690000007,2.033239600000059],[98.31256120000006,2.034460800000033],[98.31263720000004,2.039644800000076],[98.31475830000005,2.042902200000071],[98.318306,2.044572100000039],[98.32854460000004,2.042209600000035],[98.33998870000005,2.04635520000005],[98.354494,2.037235400000043],[98.36451460000006,2.026178900000048],[98.36874710000006,2.018088400000067],[98.35695030000005,2.003317700000025],[98.36076360000004,2.002579200000071],[98.36459350000007,2.004767400000048],[98.37409210000004,2.016228],[98.37723540000007,2.01651570000007],[98.39249460000008,2.004683200000045],[98.39671690000006,2.007572400000072],[98.40350890000008,2.008341800000039],[98.40759740000004,2.006629700000076],[98.41336140000004,2.007205400000032],[98.41659230000005,2.006123100000025],[98.42209630000008,2.009019900000055],[98.43290840000009,2.006587300000035],[98.44699830000008,1.99965670000006],[98.47727970000005,1.974028500000031],[98.48274230000004,1.97107550000004],[98.49059980000004,1.96333020000003],[98.50012970000006,1.950816600000053],[98.50017550000007,1.942696800000022],[98.502243,1.940742500000056],[98.50767520000005,1.94206790000004],[98.51076510000007,1.940976600000056],[98.516777,1.932813200000055],[98.52478790000004,1.925973400000032],[98.531601,1.916430100000071],[98.54322050000007,1.907119300000033],[98.56103020000006,1.880946800000061],[98.56202550000006,1.868783300000075],[98.57121030000008,1.862278400000037],[98.574961,1.862799900000027],[98.57444320000008,1.864751900000044],[98.58608510000005,1.859418800000071],[98.59479210000006,1.84753980000005],[98.59951240000004,1.845719300000042],[98.60688470000008,1.839215100000047],[98.62133960000006,1.81919670000002],[98.64053340000004,1.798760900000048],[98.653718,1.780453900000055],[98.67253880000004,1.746040300000061],[98.67922970000006,1.738509800000031],[98.68506460000003,1.73448460000003],[98.70163150000008,1.728859900000032],[98.71672140000004,1.721323600000062],[98.71929170000004,1.721391200000028],[98.72315860000003,1.715803300000061],[98.72653510000004,1.716016100000047],[98.72780090000003,1.718352200000027],[98.73276030000005,1.717078800000024],[98.73603090000006,1.720370800000069],[98.73940580000004,1.731732300000033],[98.73416140000006,1.73129],[98.73128150000008,1.728758200000073],[98.72866820000007,1.73146],[98.72872670000004,1.735401900000056],[98.72689150000008,1.736940400000037],[98.73035720000007,1.740018500000076],[98.73300670000003,1.74781530000007],[98.73255160000008,1.752625100000046],[98.72885050000008,1.757213500000034],[98.73294830000003,1.761596700000041],[98.72958850000003,1.762097800000049],[98.731636,1.766657],[98.72962950000004,1.767288600000029],[98.72802730000006,1.765907500000026],[98.71792030000006,1.753764800000056],[98.70225820000007,1.769207600000072],[98.69508310000003,1.768781700000034],[98.69290150000006,1.769906100000071],[98.68824360000008,1.767995700000029],[98.68496490000007,1.771988100000044],[98.68168690000005,1.771640300000058],[98.68041590000007,1.769841],[98.68104960000005,1.766761900000063],[98.67503460000006,1.769309100000044],[98.67260810000005,1.767185200000029],[98.66995580000008,1.767818900000066],[98.66892030000008,1.76972840000002],[98.67133510000008,1.773027300000024],[98.67862130000003,1.774406300000066],[98.69793170000008,1.770905700000071],[98.69888040000006,1.776958],[98.70714460000005,1.785553500000049],[98.71554270000007,1.78299990000005],[98.71899110000004,1.780542900000057],[98.72462650000006,1.779616500000031],[98.72779290000005,1.774520400000029],[98.73201330000006,1.776538400000049],[98.73562960000004,1.775827200000037],[98.73851740000003,1.77793],[98.73667310000008,1.783927600000027],[98.74109770000007,1.782320600000048],[98.74331020000005,1.780280400000038],[98.74594240000005,1.772293300000058],[98.75255070000009,1.76431580000002],[98.75892060000007,1.764768300000071],[98.76828460000007,1.760681800000043],[98.76871730000005,1.756382200000075],[98.79481160000006,1.756404100000054],[98.79274710000004,1.751141600000039],[98.80220790000004,1.740218600000048],[98.80858010000009,1.729519100000061],[98.80289190000008,1.725513200000023],[98.80264470000009,1.723242900000059],[98.79959630000008,1.72318660000002],[98.79859120000003,1.721275400000025],[98.79623220000008,1.721649200000058],[98.79307480000006,1.719356800000071],[98.78913040000003,1.719433],[98.78488110000006,1.722468800000058],[98.78041080000008,1.715902100000051],[98.78077380000008,1.712132700000041],[98.78427830000004,1.709458],[98.78379540000009,1.705445300000065],[98.78101630000003,1.704593800000055],[98.78174170000005,1.700946],[98.78500440000005,1.70046],[98.78693880000009,1.690732500000024],[98.79479390000006,1.68282970000007],[98.80748090000009,1.689153900000065],[98.81139550000006,1.689232300000072],[98.82541620000006,1.677774600000021],[98.82825470000006,1.667729700000052],[98.827879,1.664089500000046],[98.81938030000003,1.662729700000057],[98.81875140000005,1.661252600000068],[98.82084840000005,1.65967020000005],[98.82900240000004,1.658988700000066],[98.83805850000005,1.647732400000052],[98.84004970000007,1.641741300000035],[98.84010890000008,1.629116],[98.83911530000006,1.627463700000021],[98.83302460000004,1.627190800000051],[98.82057480000003,1.600902],[98.81340120000004,1.603353100000049],[98.80703980000004,1.603488700000071],[98.80067910000008,1.597903700000074],[98.79946190000004,1.587824400000045],[98.79770270000006,1.58428280000004],[98.79553730000003,1.583465400000023],[98.79919210000008,1.578426200000024],[98.807457,1.57823540000004],[98.80900570000006,1.571565200000066],[98.80728910000005,1.567883600000073],[98.803688,1.567364300000065],[98.80094150000008,1.569778400000075],[98.79190060000008,1.571614400000044],[98.78920750000003,1.579894400000057],[98.78263090000007,1.580926500000032],[98.78102870000004,1.575404800000058],[98.77324680000004,1.567752400000074],[98.77239230000004,1.564588900000047],[98.77508540000008,1.557689100000061],[98.77491,1.554583500000035],[98.76919560000005,1.54376910000002],[98.76971440000005,1.536408100000074],[98.76864270000004,1.531164200000035],[98.76625030000008,1.528488500000037],[98.75895690000004,1.530364400000053],[98.748024,1.540883400000041],[98.74172970000006,1.552612300000021],[98.74034880000005,1.559455200000059],[98.73336790000008,1.564685200000042],[98.73113250000006,1.568249700000024],[98.72300720000004,1.567958400000066],[98.71911620000009,1.571061900000075],[98.71202850000009,1.564444900000069],[98.71815490000006,1.553176],[98.72518920000005,1.548406100000022],[98.72914890000004,1.531442900000059],[98.73321530000004,1.524198700000056],[98.73773190000009,1.52172790000003],[98.744545,1.510286800000074],[98.75948330000006,1.501840100000038],[98.76469420000006,1.49465390000006],[98.77552030000004,1.464179300000069],[98.77684020000004,1.451067800000033],[98.77598640000008,1.445783900000038],[98.77967830000006,1.431572900000049],[98.78496550000006,1.431203500000038],[98.78735240000003,1.428380900000036],[98.79247290000006,1.427580500000033],[98.798236,1.423921200000052],[98.80059820000008,1.42502810000002],[98.79815680000007,1.430382700000052],[98.79874420000004,1.433406600000069],[98.80059820000008,1.434682800000076],[98.805542,1.432685200000037],[98.80232340000003,1.428117500000042],[98.80262750000009,1.426082400000041],[98.80524690000004,1.424903400000062],[98.80786890000007,1.425777200000027],[98.80742630000003,1.430882],[98.81261440000009,1.430549],[98.817688,1.435293300000069],[98.81985490000005,1.43421120000005],[98.81832030000004,1.430254700000035],[98.81920660000009,1.427694300000041],[98.82126620000008,1.426831400000026],[98.821907,1.430826400000058],[98.824623,1.433434300000044],[98.82795710000005,1.432602100000054],[98.83267210000008,1.428190800000039],[98.83772270000009,1.433018300000072],[98.84294130000006,1.430861200000038],[98.841751,1.434919],[98.84331520000006,1.439176600000053],[98.83991250000008,1.44150030000003],[98.83812720000009,1.445633800000053],[98.83351890000006,1.446132200000022],[98.83200070000004,1.451113],[98.83480080000004,1.452989900000034],[98.83886710000007,1.45076210000002],[98.83953110000004,1.45658080000004],[98.84185790000004,1.461105900000064],[98.84893810000005,1.456937500000038],[98.849022,1.461751500000048],[98.85061640000004,1.459815100000071],[98.85266890000008,1.459781],[98.85607150000004,1.467431300000044],[98.85752870000005,1.462083700000051],[98.85950460000004,1.46078650000004],[98.86338040000004,1.466409300000066],[98.86597450000005,1.46705890000004],[98.86483770000007,1.460509800000068],[98.86852260000006,1.454586200000051],[98.87071230000004,1.457814],[98.86966690000008,1.463042400000063],[98.87146750000005,1.465860900000052],[98.87985230000004,1.455818200000067],[98.88167580000004,1.44916790000002],[98.88374320000008,1.454327800000044],[98.88769540000004,1.449998300000061],[98.892784,1.452516500000058],[98.89694230000003,1.451896300000044],[98.89517210000008,1.44688270000006],[98.90235140000004,1.447884200000033],[98.90141290000008,1.439965500000028],[98.90255740000003,1.43927530000002],[98.90637220000008,1.442841600000065],[98.91146850000007,1.440947200000039],[98.91104130000008,1.444962300000043],[98.91320040000005,1.44757],[98.91679390000007,1.442578100000048],[98.91983030000006,1.446394300000065],[98.92385110000004,1.446844200000044],[98.92118840000006,1.441311700000028],[98.92660540000008,1.436805200000038],[98.928978,1.43665290000007],[98.93511190000004,1.439952600000026],[98.94253540000005,1.435309200000063],[98.94120030000005,1.441712900000027],[98.94571690000004,1.44694910000004],[98.94853970000008,1.44389620000004],[98.95420850000005,1.444535],[98.95663460000009,1.440394300000037],[98.96123520000003,1.446893700000032],[98.967949,1.447279600000059],[98.97023770000004,1.44494480000003],[98.96763610000005,1.440583700000047],[98.97060380000005,1.439057400000024],[98.98491660000008,1.446817500000066],[98.98825840000006,1.454215400000066],[98.98293320000005,1.458364800000027],[98.97840890000003,1.455495800000051],[98.97102360000008,1.455530900000042],[98.96449290000004,1.456947100000036],[98.96189120000008,1.460009400000047],[98.96913140000004,1.466985400000056],[98.97242730000005,1.463777500000049],[98.97567760000004,1.465224100000057],[98.98098770000007,1.470727400000044],[98.986107,1.470567900000049],[98.99071510000005,1.46858670000006],[98.995018,1.472515],[99.002037,1.470733200000041],[99.00497440000004,1.471580200000062],[99.00839240000005,1.473624200000074],[99.00934590000008,1.479041900000027],[99.01198020000004,1.481824],[99.00971990000005,1.484802900000034],[99.01373850000004,1.497958700000027],[99.00653120000004,1.502286200000071],[98.99413850000008,1.506168700000046],[98.99212850000004,1.510972600000059],[98.98848740000005,1.512482100000057],[98.98828130000004,1.52247490000002],[98.99185060000008,1.527474300000051],[98.99221050000006,1.533812],[98.99666580000007,1.538469900000052],[99.00165560000005,1.53876],[99.00617220000004,1.542541200000073],[99.00651550000003,1.545051800000067],[99.00487510000005,1.547474200000067],[99.01275630000004,1.556424400000026],[99.011879,1.563615],[99.01457210000007,1.569184700000051],[99.02136220000006,1.572283900000059],[99.02517710000006,1.576580300000046],[99.02725990000005,1.586256900000024],[99.03049470000008,1.590251600000045],[99.02944940000003,1.598224200000061],[99.03144060000005,1.606841600000052],[99.03762810000006,1.620677400000034],[99.03786480000008,1.62391260000004],[99.04491410000008,1.629004100000031],[99.057045,1.643000500000028],[99.06027980000005,1.66779450000007],[99.05165870000008,1.69918430000007],[99.05174250000005,1.700116900000069],[99.060417,1.699401900000055],[99.06072240000003,1.699403],[99.061821,1.699165500000049],[99.05162050000007,1.714144600000054],[99.042272,1.705692800000065],[99.03812130000006,1.710048900000061],[99.02832030000008,1.701110800000038],[99.018721,1.697539100000029],[99.01007080000005,1.692321800000059],[99.00249220000006,1.683082900000045],[98.99736080000008,1.671231300000045],[98.99389650000006,1.671081500000071],[98.99318430000005,1.660673200000076],[98.99029040000005,1.661252],[98.98720360000004,1.659708600000044],[98.97731090000008,1.661794],[98.96955430000008,1.678360200000043],[98.97366970000007,1.697634500000049],[98.97704520000008,1.69925180000007],[98.98353770000006,1.712558700000045],[98.98446730000006,1.721577600000046],[98.98266660000007,1.725645],[98.98330670000007,1.736356200000046],[98.98868870000007,1.760878],[98.985288,1.771921400000053],[98.98344640000005,1.773625500000037],[98.98080930000003,1.773645200000033],[98.96680050000003,1.764085700000066],[98.95814070000006,1.760930600000052],[98.946583,1.759696200000064],[98.93920320000007,1.760436900000059],[98.93306890000008,1.758261200000049],[98.92294810000004,1.757930100000067],[98.92120670000008,1.756341600000042],[98.91288670000006,1.758834800000045],[98.90697940000007,1.756087500000035],[98.89177680000006,1.754409500000065],[98.88111630000009,1.76891530000006],[98.87311760000006,1.793309700000066],[98.87203220000004,1.802092400000049],[98.86047360000003,1.815601600000036],[98.84233090000004,1.82416180000007],[98.82607270000005,1.84871030000005],[98.81502530000006,1.861587200000031],[98.81759640000007,1.86641910000003],[98.81581880000005,1.86854610000006],[98.80359150000004,1.872432200000048],[98.78848950000008,1.861539200000038],[98.78545550000007,1.868484700000067],[98.78529850000007,1.875629700000047],[98.78424360000008,1.874823],[98.78173550000008,1.879067400000054],[98.78231430000005,1.886977500000057],[98.78964560000009,1.897395600000038],[98.79215360000006,1.906656100000021],[98.78810210000006,1.90742780000005],[98.79253950000003,1.912251],[98.79311830000006,1.917653],[98.79138190000003,1.936367],[98.78597990000009,1.949293100000034],[98.78019210000008,1.954309300000034],[98.77363260000004,1.957589],[98.76379320000007,1.95701020000007],[98.74450050000007,1.960482900000045],[98.727478,1.95788570000002],[98.716333,1.963376900000071],[98.70833420000008,1.971764800000074],[98.69938180000008,1.973298400000033],[98.67995410000003,1.986059],[98.67806920000004,1.988012500000025],[98.67919060000008,1.989629500000035],[98.67314370000008,1.992009200000041],[98.66411090000008,2.002332300000035],[98.65536910000009,2.018040500000041],[98.65072260000005,2.01875990000002],[98.64824890000006,2.015344],[98.64679220000005,2.00753],[98.64442290000005,2.003411300000039],[98.63876110000007,2.010767500000043],[98.63826860000006,2.009292200000061],[98.63344960000006,2.011952400000041],[98.63194140000007,2.015269800000056],[98.62770170000005,2.015268800000058],[98.62308570000005,2.012613500000043],[98.60637060000005,2.02257910000003],[98.60441770000006,2.031819300000052],[98.60807350000005,2.039016400000037],[98.60230030000008,2.048337400000037],[98.60221830000006,2.05136310000006],[98.60489990000008,2.054225900000063],[98.60652560000005,2.061616900000047],[98.60019290000008,2.066347300000075],[98.59798430000006,2.070734300000026],[98.59602070000005,2.071209400000043],[98.59198780000008,2.083028600000034],[98.58324450000003,2.081934300000057],[98.57992860000007,2.079749400000026],[98.57588820000007,2.080719],[98.56220160000004,2.07458790000004],[98.55394060000003,2.074039600000049],[98.54900230000004,2.078548600000033],[98.53940570000003,2.083196],[98.52831080000004,2.081979400000023],[98.52553650000004,2.083495200000073],[98.51974770000004,2.083311400000071],[98.50606070000003,2.079727900000023],[98.44970240000004,2.092661200000066],[98.44489540000006,2.097683300000028],[98.42915720000008,2.10782],[98.41747210000005,2.113029100000062],[98.38626940000006,2.11853190000005],[98.37280480000004,2.131684900000039],[98.35533390000006,2.141228400000045],[98.35357910000005,2.143525300000022],[98.34189490000006,2.145700400000067],[98.33587650000004,2.148315400000058],[98.33367920000006,2.159912100000042],[98.325851,2.155973300000028],[98.32337970000003,2.158470800000032],[98.31594350000006,2.158852800000034],[98.31446120000004,2.161225900000034],[98.31178310000007,2.159285300000022],[98.30382310000005,2.161323300000049],[98.29184960000003,2.177526200000045],[98.27543340000005,2.188000300000056],[98.28391190000008,2.200106900000037],[98.27977840000005,2.222520100000054],[98.26580820000004,2.221121200000027],[98.26475360000006,2.237326600000074],[98.26981530000006,2.24181180000005],[98.26639010000008,2.253769600000055],[98.26760030000008,2.256785200000024],[98.26159860000007,2.260511100000031],[98.27006060000008,2.262341700000036],[98.26494610000003,2.266333400000065],[98.26608880000003,2.263649100000066],[98.26411520000005,2.264502500000049],[98.25283180000008,2.275516100000061],[98.24716190000004,2.280001700000071],[98.23090720000005,2.288547400000027],[98.19707070000004,2.311698100000058],[98.18800620000007,2.295759],[98.18133730000005,2.259099],[98.17806210000003,2.252996],[98.17246680000005,2.250611],[98.17526790000005,2.248544],[98.17880190000005,2.239912],[98.13049890000008,2.165970100000038],[98.13165460000005,2.165067300000032]]]]},"properties":{"shapeName":"Tapanuli Tengah","shapeISO":"","shapeID":"22746128B91010140813467","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[98.85761660000009,2.335451400000068],[98.85904680000004,2.33415],[98.85835840000004,2.331701800000076],[98.86392830000005,2.332815800000049],[98.86625420000007,2.334766500000057],[98.87398190000005,2.33221560000004],[98.88601430000006,2.33576510000006],[98.88971540000006,2.328452300000038],[98.89455590000006,2.325372700000059],[98.90000910000003,2.326953300000071],[98.92410950000004,2.323965300000054],[98.928369,2.326385500000072],[98.93274620000005,2.322446],[98.93780480000004,2.323878600000057],[98.94019570000006,2.320016500000065],[98.95387440000007,2.321287100000063],[98.95868510000008,2.312292600000035],[98.95834580000007,2.310131],[98.96162580000004,2.306831800000054],[98.96434040000008,2.301029600000049],[98.97101330000004,2.297958],[98.96829930000007,2.283111100000042],[98.97265370000008,2.275033600000029],[98.97242760000006,2.272530600000039],[98.96462380000008,2.274350800000036],[98.964737,2.270653300000049],[98.95808950000009,2.267293300000063],[98.94067950000004,2.262468600000034],[98.92846130000004,2.233573],[98.92506390000005,2.233342800000059],[98.92163740000007,2.229329100000029],[98.89517140000004,2.221958500000028],[98.87425310000003,2.210676400000068],[98.86388860000005,2.202333700000054],[98.85776390000007,2.200058],[98.83081490000006,2.195031200000074],[98.81105290000005,2.188131200000043],[98.816676,2.169508],[98.81652230000009,2.161103900000057],[98.79934740000004,2.158247500000073],[98.78116310000007,2.148007300000074],[98.77390790000004,2.146963500000027],[98.76589920000004,2.143644600000073],[98.74941180000008,2.13141360000003],[98.73932980000006,2.131696300000044],[98.73560060000005,2.126783300000056],[98.72502830000008,2.126174400000025],[98.72648190000007,2.116293400000075],[98.68293530000005,2.008024800000044],[98.67919060000008,1.989629500000035],[98.67806920000004,1.988012500000025],[98.67995410000003,1.986059],[98.69938180000008,1.973298400000033],[98.70833420000008,1.971764800000074],[98.716333,1.963376900000071],[98.727478,1.95788570000002],[98.74450050000007,1.960482900000045],[98.76379320000007,1.95701020000007],[98.77363260000004,1.957589],[98.78019210000008,1.954309300000034],[98.78597990000009,1.949293100000034],[98.79138190000003,1.936367],[98.79311830000006,1.917653],[98.79253950000003,1.912251],[98.78810210000006,1.90742780000005],[98.79215360000006,1.906656100000021],[98.78964560000009,1.897395600000038],[98.78231430000005,1.886977500000057],[98.78173550000008,1.879067400000054],[98.78424360000008,1.874823],[98.78529850000007,1.875629700000047],[98.78545550000007,1.868484700000067],[98.78848950000008,1.861539200000038],[98.80359150000004,1.872432200000048],[98.81581880000005,1.86854610000006],[98.81759640000007,1.86641910000003],[98.81502530000006,1.861587200000031],[98.82607270000005,1.84871030000005],[98.84233090000004,1.82416180000007],[98.86047360000003,1.815601600000036],[98.87203220000004,1.802092400000049],[98.87311760000006,1.793309700000066],[98.88111630000009,1.76891530000006],[98.89177680000006,1.754409500000065],[98.90697940000007,1.756087500000035],[98.91288670000006,1.758834800000045],[98.92120670000008,1.756341600000042],[98.92294810000004,1.757930100000067],[98.93306890000008,1.758261200000049],[98.93920320000007,1.760436900000059],[98.946583,1.759696200000064],[98.95814070000006,1.760930600000052],[98.96680050000003,1.764085700000066],[98.98080930000003,1.773645200000033],[98.98344640000005,1.773625500000037],[98.985288,1.771921400000053],[98.98868870000007,1.760878],[98.98330670000007,1.736356200000046],[98.98266660000007,1.725645],[98.98446730000006,1.721577600000046],[98.98353770000006,1.712558700000045],[98.97704520000008,1.69925180000007],[98.97366970000007,1.697634500000049],[98.96955430000008,1.678360200000043],[98.97731090000008,1.661794],[98.98720360000004,1.659708600000044],[98.99029040000005,1.661252],[98.99318430000005,1.660673200000076],[98.99389650000006,1.671081500000071],[98.99736080000008,1.671231300000045],[99.00249220000006,1.683082900000045],[99.01007080000005,1.692321800000059],[99.018721,1.697539100000029],[99.02832030000008,1.701110800000038],[99.03812130000006,1.710048900000061],[99.042272,1.705692800000065],[99.05162050000007,1.714144600000054],[99.061821,1.699165500000049],[99.06850430000009,1.696773800000074],[99.07776650000005,1.698708600000032],[99.08004010000008,1.694090100000039],[99.08502190000007,1.691312],[99.08959970000006,1.681569100000047],[99.09716790000004,1.673897700000055],[99.10453030000008,1.661575200000073],[99.11074840000003,1.657386300000042],[99.11634840000005,1.648936300000059],[99.12264270000009,1.646773400000029],[99.13079820000007,1.64055460000003],[99.14276890000008,1.639905],[99.16344460000005,1.664701100000059],[99.17048660000006,1.667145100000027],[99.18405150000007,1.675956100000064],[99.20120390000005,1.689330600000062],[99.20764760000009,1.697177],[99.21640420000006,1.702117900000076],[99.23306610000009,1.718189400000028],[99.24461860000008,1.734074100000043],[99.25799310000008,1.74431850000002],[99.26700150000005,1.760789300000056],[99.27532190000005,1.781218500000023],[99.28216420000007,1.804111100000057],[99.28368050000006,1.825661600000046],[99.28773230000007,1.837344600000051],[99.29402440000007,1.834259400000064],[99.30113480000006,1.833601700000031],[99.30383180000007,1.831603400000063],[99.31186690000004,1.830208800000037],[99.31733690000004,1.833631400000058],[99.32479090000004,1.835432600000047],[99.33338190000006,1.840809200000024],[99.33994270000005,1.850011600000073],[99.34658120000006,1.853532500000028],[99.34938050000005,1.874720400000058],[99.34147310000009,1.882475700000043],[99.34377150000006,1.884017100000051],[99.34300110000004,1.889876500000071],[99.34473580000008,1.894805500000075],[99.34072120000008,1.897613400000068],[99.33939350000009,1.904484300000036],[99.34169750000007,1.906756100000052],[99.34820560000009,1.906498400000032],[99.35372150000006,1.910173],[99.354622,1.913941800000032],[99.35697930000003,1.915721800000028],[99.36464690000008,1.936914700000045],[99.37985210000005,1.94328530000007],[99.40444180000009,1.940019500000062],[99.41418460000006,1.943862900000056],[99.41899120000005,1.948200900000074],[99.42987070000004,1.948800600000027],[99.43429580000009,1.951460500000053],[99.44027720000008,1.952555100000041],[99.44709,1.950013800000022],[99.45059230000004,1.950258900000051],[99.45674920000005,1.954017700000065],[99.45826710000006,1.960074600000041],[99.457962,1.966330200000073],[99.44733410000003,2.001195400000029],[99.44794460000008,2.009969800000022],[99.44535070000006,2.025664800000072],[99.44986130000007,2.081035900000074],[99.45486860000005,2.095842900000036],[99.45948990000005,2.126261400000033],[99.43567590000004,2.123834400000021],[99.41917950000004,2.13643490000004],[99.40714130000003,2.150092700000073],[99.39830080000007,2.156343400000026],[99.39391550000005,2.16607920000007],[99.39237840000004,2.166234],[99.39225390000007,2.169017100000076],[99.38956240000005,2.169139700000073],[99.38192540000006,2.166603800000075],[99.37700080000008,2.15948190000006],[99.37668590000004,2.155953500000066],[99.369374,2.14361370000006],[99.36546130000005,2.142964],[99.36159370000007,2.139710600000058],[99.35762830000004,2.138849500000049],[99.34208050000007,2.129918900000064],[99.33442110000004,2.123316300000056],[99.32701540000005,2.124303600000076],[99.32099140000008,2.122293200000058],[99.31497340000004,2.123032100000046],[99.31337420000006,2.121201100000064],[99.304485,2.11767610000004],[99.29719660000006,2.116116300000044],[99.29188820000007,2.111687],[99.27755080000009,2.11445],[99.26300960000003,2.122229100000027],[99.25842410000007,2.122493500000076],[99.24741970000008,2.127240300000039],[99.23523330000006,2.145214300000021],[99.23301160000005,2.151363],[99.22722380000005,2.155876500000034],[99.21633110000005,2.170302400000026],[99.20799760000006,2.186334100000067],[99.21261910000004,2.185965900000042],[99.21328450000004,2.187631],[99.211785,2.190641200000073],[99.21237680000007,2.194735800000046],[99.21056920000007,2.196894100000065],[99.21235420000005,2.198224300000049],[99.21076080000006,2.202499100000068],[99.21205750000007,2.212919600000021],[99.19877820000005,2.230917500000032],[99.179294,2.231715400000041],[99.17382880000008,2.233957],[99.16015140000007,2.236062600000025],[99.15821520000009,2.237378400000068],[99.15844920000006,2.23933020000004],[99.13775140000007,2.256624800000054],[99.12900820000004,2.256006],[99.12523310000006,2.259307300000046],[99.11830330000004,2.256177700000023],[99.11360890000003,2.256401200000028],[99.10865810000007,2.254524],[99.10265540000006,2.25506],[99.09952580000004,2.25953080000005],[99.09684330000005,2.260872100000029],[99.09572560000004,2.267578300000025],[99.08433430000008,2.272164],[99.06698820000008,2.272257300000035],[99.064681,2.270425700000033],[99.05785180000004,2.269386800000063],[99.047206,2.26417390000006],[99.03268680000008,2.254389400000036],[99.02531,2.253048100000058],[99.00245830000006,2.253093400000068],[99.00536750000003,2.268293800000038],[98.99927640000004,2.281199400000048],[98.99359550000008,2.304661800000076],[98.98927670000006,2.336876],[98.98714160000009,2.346956300000045],[98.98542870000006,2.348164500000053],[98.98318480000006,2.348728],[98.97958260000007,2.346193400000061],[98.97991570000005,2.341149],[98.97843950000004,2.338430500000072],[98.97576760000004,2.339139300000056],[98.97162380000003,2.341102700000022],[98.96826980000009,2.347760900000026],[98.96741790000004,2.342569400000059],[98.96013740000006,2.354807600000072],[98.95958370000005,2.350592900000038],[98.95601310000006,2.34984170000007],[98.95409070000005,2.353234200000031],[98.94834620000006,2.353310500000021],[98.94482660000006,2.359734800000069],[98.93461670000005,2.357319600000039],[98.93198860000007,2.353965500000072],[98.92630980000007,2.354730200000063],[98.916692,2.35150150000004],[98.91544050000005,2.349247300000059],[98.91172620000003,2.348957700000028],[98.91031410000005,2.341281600000059],[98.90495710000005,2.334370900000067],[98.89514290000005,2.338985600000058],[98.89261020000004,2.341290400000048],[98.89325190000005,2.343365800000072],[98.88833140000008,2.347826],[98.88460490000006,2.347108],[98.881213,2.344463700000063],[98.87825820000006,2.344788400000027],[98.87419,2.341692300000034],[98.86914190000005,2.34549480000004],[98.86985310000006,2.349420200000054],[98.86610520000005,2.350884600000029],[98.85973850000005,2.349068],[98.86004460000004,2.344806900000037],[98.856513,2.338792800000022],[98.85761660000009,2.335451400000068]]],[[[98.89389320000004,2.375918800000022],[98.89450580000005,2.368565300000057],[98.88587630000006,2.367327700000033],[98.88404390000005,2.359868800000072],[98.888455,2.35784510000002],[98.88849460000006,2.353918800000031],[98.89223340000007,2.349077100000045],[98.90061820000005,2.346551],[98.91059470000005,2.352543600000047],[98.91109750000004,2.355997],[98.90790990000005,2.358041100000037],[98.91084650000005,2.361531],[98.90517750000004,2.365606700000058],[98.90333470000007,2.372291400000051],[98.90388090000005,2.378467700000044],[98.901584,2.382333100000039],[98.89654530000007,2.38196750000003],[98.89458510000009,2.380133600000022],[98.89389320000004,2.375918800000022]]]]},"properties":{"shapeName":"Tapanuli Utara","shapeISO":"","shapeID":"22746128B82949851084673","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[115.50666750000005,-2.884884299999953],[115.499539,-2.880435499999976],[115.48241610000002,-2.876079399999981],[115.47851580000008,-2.872889099999952],[115.47434610000005,-2.874806699999965],[115.46625480000012,-2.873007],[115.45799780000004,-2.873491],[115.4498784000001,-2.885109299999954],[115.44574780000005,-2.888807199999974],[115.44316880000008,-2.889248],[115.43821730000002,-2.883626],[115.4313466000001,-2.887861399999963],[115.41046580000011,-2.892667399999937],[115.39818190000005,-2.891239699999971],[115.39154910000002,-2.885588499999926],[115.3863014000001,-2.885390699999959],[115.38269690000004,-2.881682099999978],[115.3755284,-2.894041399999935],[115.37632970000004,-2.897277899999949],[115.38466530000005,-2.903994499999953],[115.38409280000008,-2.910311899999954],[115.3786659000001,-2.918785],[115.36613190000003,-2.925803299999927],[115.354184,-2.934970199999952],[115.34821390000002,-2.936887099999979],[115.33793680000008,-2.936982899999975],[115.33506840000007,-2.933793699999967],[115.33160710000004,-2.932973799999957],[115.32209970000008,-2.935699899999975],[115.31795340000008,-2.924991],[115.31508180000003,-2.924023799999929],[115.30145360000006,-2.923781],[115.29657750000001,-2.9331059],[115.28715330000011,-2.929610299999979],[115.2827701000001,-2.929640599999971],[115.2810942000001,-2.917491299999938],[115.27002880000009,-2.903513],[115.26724060000004,-2.896250299999963],[115.26312080000002,-2.892688899999939],[115.25442090000001,-2.8930369],[115.24506250000002,-2.888396899999975],[115.230709,-2.870771899999966],[115.2177028000001,-2.873879599999952],[115.19807980000007,-2.8690117],[115.186953,-2.864778599999966],[115.18597470000009,-2.862054599999965],[115.17379630000005,-2.855138199999942],[115.12748710000005,-2.838964199999964],[115.11014770000008,-2.835121799999968],[115.10690370000009,-2.837116099999946],[115.10462330000007,-2.835334899999964],[115.099909,-2.835623399999974],[115.09998850000011,-2.831994699999939],[115.09770530000003,-2.831990899999937],[115.09476360000008,-2.829245899999933],[115.0899012000001,-2.830052499999965],[115.0880188000001,-2.832078699999954],[115.088384,-2.835994099999937],[115.0860722000001,-2.8407541],[115.08061520000001,-2.839572199999964],[115.06869070000005,-2.8453136],[115.0628034,-2.839624299999969],[115.06345980000003,-2.834909399999958],[115.0683888000001,-2.826908699999933],[115.06833920000008,-2.818661],[115.07293350000009,-2.810807599999976],[115.0758909000001,-2.789977199999953],[115.07426350000003,-2.786596799999927],[115.06993000000011,-2.783305699999971],[115.06666490000009,-2.782831199999976],[115.05994340000007,-2.784837399999958],[115.05511600000011,-2.784055299999977],[115.04373040000007,-2.7852561],[115.0261273000001,-2.7799959],[115.02100040000005,-2.7770788],[114.997476,-2.756069799999977],[114.98572390000004,-2.739092699999958],[114.98305840000012,-2.737252399999932],[114.98227210000005,-2.733677099999966],[114.96672550000005,-2.705026199999963],[114.8664533000001,-2.531909799999937],[114.86179410000011,-2.523846899999967],[114.85204610000005,-2.553546399999959],[114.80441250000001,-2.742071499999952],[114.81185890000006,-2.806715699999927],[114.84021,-2.870668],[114.8398439,-2.874401099999943],[114.815315,-2.929980299999954],[114.80265020000002,-2.9407406],[114.80462460000001,-2.968042899999944],[114.80879290000007,-2.974234099999933],[114.8074186,-2.977617],[114.81532130000005,-2.989742799999931],[114.81614880000006,-2.998753799999974],[114.81504540000003,-3.0069679],[114.824271,-3.010891099999981],[114.82773050000003,-3.014846],[114.86751720000007,-3.036033099999941],[115.0024386,-3.121995199999958],[115.0477168000001,-3.156917599999929],[115.08921550000002,-3.183298399999956],[115.11291290000008,-3.193238399999927],[115.14050310000005,-3.200646199999937],[115.17005110000002,-3.207018399999924],[115.19747510000002,-3.209225599999968],[115.2038851000001,-3.212128299999961],[115.20379430000003,-3.2020597],[115.21044620000009,-3.190267699999936],[115.21531420000008,-3.186246399999959],[115.22456640000007,-3.182678499999952],[115.22759,-3.174938199999929],[115.23590480000007,-3.168014099999937],[115.2399564000001,-3.162269299999934],[115.23895870000001,-3.150326199999938],[115.24219390000007,-3.135057],[115.22635030000004,-3.132940499999961],[115.21821690000002,-3.127044499999954],[115.19947060000004,-3.1242628],[115.16908360000002,-3.1155247],[115.2027663,-3.0760971],[115.20863210000005,-3.0583789],[115.21997050000004,-3.038272],[115.23799110000004,-3.049580299999946],[115.24709210000003,-3.043865699999969],[115.2669873000001,-3.019556],[115.270404,-3.009487499999977],[115.27400200000011,-3.004075299999954],[115.2759976000001,-3.003228699999966],[115.27920260000008,-2.996455799999978],[115.2819541,-2.996425599999952],[115.28491720000011,-2.993099699999959],[115.29066200000011,-2.990983099999937],[115.29695110000011,-2.991104099999973],[115.29864430000009,-2.988503799999933],[115.31016410000007,-2.982849699999974],[115.3127644000001,-2.9811565],[115.31385290000003,-2.973960299999931],[115.3157275000001,-2.971904299999949],[115.3241633,-2.968124799999941],[115.33299220000004,-2.967580599999962],[115.34024880000004,-2.964919799999961],[115.34575170000005,-2.966008299999942],[115.34726350000005,-2.971632199999931],[115.34965220000004,-2.971843799999931],[115.3525548,-2.974807],[115.35061970000004,-2.978193399999952],[115.35074070000007,-2.981337899999971],[115.356546,-2.984603399999969],[115.36857980000002,-2.978798099999949],[115.37638070000003,-2.977044399999954],[115.388082,-2.977921199999969],[115.38971470000001,-2.979433],[115.39201260000004,-2.9885643],[115.39914830000009,-2.9950952],[115.4016276000001,-2.995034699999962],[115.41193810000004,-2.982668299999943],[115.4208274,-2.982607799999926],[115.42986790000009,-2.976772299999936],[115.43476610000005,-2.976409499999932],[115.44247630000007,-2.961503199999925],[115.44797920000008,-2.955818799999975],[115.4539357000001,-2.951918399999954],[115.45871290000002,-2.950829899999974],[115.46291570000005,-2.944692],[115.465637,-2.942877899999928],[115.4770056000001,-2.940821799999981],[115.47987810000006,-2.932627899999943],[115.48456460000011,-2.924978199999941],[115.485381,-2.916179599999964],[115.49596350000002,-2.908741599999928],[115.49735440000006,-2.903903799999966],[115.50058960000001,-2.901817599999958],[115.50775550000003,-2.886185599999976],[115.50666750000005,-2.884884299999953]]]},"properties":{"shapeName":"Tapin","shapeISO":"","shapeID":"22746128B15759643697154","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[108.31296690000005,-7.3396216],[108.310915,-7.339951],[108.31059,-7.337669],[108.309123,-7.337585],[108.307682,-7.338411],[108.307931,-7.340085],[108.303629,-7.341591],[108.301096,-7.34442],[108.299903,-7.342798],[108.297178,-7.343328],[108.29713,-7.340782],[108.295875,-7.341758],[108.292165,-7.340671],[108.290669,-7.343224],[108.287179,-7.344781],[108.286518,-7.348223],[108.283352,-7.349371],[108.282092,-7.351528],[108.283503,-7.356980499999963],[108.28694190000004,-7.357265299999938],[108.28908350000006,-7.355699299999969],[108.29359880000004,-7.358721299999956],[108.28693340000007,-7.360793599999965],[108.28365290000005,-7.365052699999978],[108.27781980000009,-7.368471599999964],[108.27669930000008,-7.371781699999929],[108.27249820000009,-7.370725899999968],[108.26914770000008,-7.373274099999946],[108.26677080000007,-7.3724273],[108.26366730000007,-7.374165199999936],[108.26589630000007,-7.375479499999926],[108.26729210000008,-7.373888499999964],[108.26963290000003,-7.375188699999967],[108.27244390000004,-7.374641199999928],[108.27440490000004,-7.3781396],[108.27194420000006,-7.378465],[108.27254520000008,-7.380176199999937],[108.27932750000008,-7.382076599999948],[108.28253940000008,-7.385154599999964],[108.28119670000007,-7.384996699999931],[108.281454,-7.386792],[108.278083,-7.389823],[108.275481,-7.387649],[108.272704,-7.391229],[108.273631,-7.392949],[108.271083,-7.393627],[108.275377,-7.395551],[108.27600780000006,-7.394651599999975],[108.27600090000004,-7.395839599999931],[108.27387240000007,-7.396697399999937],[108.27658090000006,-7.397196099999974],[108.278,-7.399523099999954],[108.27667240000005,-7.400805799999944],[108.27780230000008,-7.404826599999978],[108.273732,-7.404651399999977],[108.27499860000006,-7.409773499999972],[108.276624,-7.410901],[108.27631380000008,-7.416962],[108.27473460000004,-7.417620499999941],[108.27521520000005,-7.420204499999954],[108.27130140000008,-7.425558299999977],[108.26927310000008,-7.425476899999978],[108.26726150000007,-7.423042699999939],[108.26759880000009,-7.430126099999939],[108.265503,-7.433958399999938],[108.26283210000008,-7.431591099999935],[108.25763990000007,-7.430161],[108.25577430000004,-7.431500699999958],[108.25177840000003,-7.430048099999965],[108.24881550000003,-7.430927799999949],[108.23794630000003,-7.429915299999948],[108.23236940000004,-7.425978],[108.22906820000009,-7.425476],[108.230781,-7.430742499999951],[108.21818110000004,-7.435582199999942],[108.21280680000007,-7.434951599999977],[108.20796210000009,-7.441915799999947],[108.20233920000004,-7.445677099999955],[108.200922,-7.449877],[108.198171,-7.450671],[108.195027,-7.448951],[108.191786,-7.450289],[108.187244,-7.446283],[108.18919380000006,-7.444448299999976],[108.19300850000008,-7.4438813],[108.19361880000008,-7.438987099999963],[108.18929070000007,-7.438184699999965],[108.18730280000005,-7.436091099999942],[108.18841560000004,-7.434043199999962],[108.18434150000007,-7.4202188],[108.186102,-7.414444],[108.181946,-7.411812],[108.18090110000009,-7.408947699999942],[108.18409940000004,-7.407413199999951],[108.18636230000004,-7.403368299999954],[108.18438350000008,-7.4024875],[108.18299180000008,-7.398552199999926],[108.18352220000008,-7.396273199999939],[108.18545930000005,-7.395178699999974],[108.18464780000005,-7.392543199999977],[108.17415630000005,-7.392844499999967],[108.17473560000008,-7.387337699999932],[108.17121170000007,-7.385979],[108.17282870000008,-7.380688499999962],[108.17234050000008,-7.376783199999977],[108.163403,-7.363219],[108.164429,-7.354763],[108.16712970000003,-7.352380699999969],[108.166295,-7.351274],[108.16775440000004,-7.350417399999969],[108.16692360000008,-7.348724199999936],[108.16818810000007,-7.346691699999951],[108.166401,-7.34732],[108.16658,-7.344225],[108.159597,-7.342229],[108.15666,-7.337797],[108.15255630000007,-7.335023],[108.153253,-7.325872],[108.154647,-7.324036],[108.16026080000006,-7.3238895],[108.160876,-7.321456],[108.159422,-7.320358],[108.161366,-7.318123],[108.159369,-7.31537],[108.15860760000004,-7.310415399999954],[108.16047450000008,-7.303431099999955],[108.15310050000005,-7.2952282],[108.14971150000008,-7.287702899999942],[108.152282,-7.285772],[108.155022,-7.289692],[108.159445,-7.288566],[108.16523,-7.289821],[108.17076730000008,-7.287668],[108.17296920000007,-7.289139399999954],[108.17607230000004,-7.288580299999978],[108.175926,-7.283988],[108.178941,-7.284905],[108.180031,-7.279124],[108.181412,-7.27886],[108.178283,-7.27363],[108.178853,-7.27207],[108.182905,-7.271617],[108.18455180000007,-7.269567299999949],[108.18965780000008,-7.2722651],[108.19314520000006,-7.269289499999957],[108.193077,-7.2663505],[108.19019220000007,-7.265232799999978],[108.19160280000006,-7.261856799999975],[108.18929110000005,-7.263842199999942],[108.18812440000005,-7.262503899999956],[108.18924440000006,-7.259013599999946],[108.18846040000005,-7.255205899999964],[108.19061210000007,-7.251456099999928],[108.19264230000005,-7.252737399999944],[108.19238290000004,-7.250728899999956],[108.19491860000005,-7.2505209],[108.19322,-7.248822399999938],[108.19404130000004,-7.246041299999945],[108.19204410000003,-7.24522],[108.195185,-7.241375],[108.19312290000005,-7.239317299999925],[108.19413370000007,-7.233822699999962],[108.195468,-7.23403],[108.195352,-7.230647],[108.196944,-7.232455],[108.19889890000007,-7.231559399999981],[108.197618,-7.228951],[108.198993,-7.225504],[108.196568,-7.220347],[108.196669,-7.21642],[108.198216,-7.214567],[108.195685,-7.212736],[108.19733130000009,-7.208485],[108.195283,-7.205918],[108.198056,-7.197056],[108.19757670000007,-7.193712799999957],[108.19959930000005,-7.189684299999954],[108.192117,-7.187443],[108.194773,-7.182655],[108.192969,-7.175993],[108.194851,-7.17448],[108.194403,-7.173219],[108.192096,-7.173315],[108.192273,-7.169882],[108.19423650000004,-7.169074799999976],[108.19123,-7.168928699999981],[108.19070830000004,-7.167537699999968],[108.19455420000008,-7.165047099999981],[108.19457750000004,-7.161699799999951],[108.19735540000005,-7.159588499999927],[108.19706640000004,-7.156652299999962],[108.199319,-7.157863],[108.201834,-7.155195],[108.199867,-7.15338],[108.203112,-7.15217],[108.199739,-7.146366],[108.201984,-7.14547],[108.200296,-7.144703],[108.20315430000005,-7.141802699999971],[108.201128,-7.137697],[108.20410870000006,-7.138069199999961],[108.20401560000005,-7.136373799999944],[108.20608620000007,-7.138010299999962],[108.20845060000005,-7.135134099999959],[108.21368090000004,-7.134746899999925],[108.21366520000004,-7.132704299999943],[108.217276,-7.129241],[108.215867,-7.125201],[108.21801,-7.126056],[108.217383,-7.124654],[108.219836,-7.123452],[108.21330590000008,-7.111353799999961],[108.21466120000008,-7.104331399999978],[108.216964,-7.104112],[108.21776,-7.105529],[108.218958,-7.104082],[108.217869,-7.102073],[108.218986,-7.100121],[108.21677,-7.100399],[108.215367,-7.098712],[108.21842060000006,-7.097534399999972],[108.21957850000007,-7.0884656],[108.22188,-7.085878],[108.213361,-7.081588],[108.211682,-7.082645],[108.211134,-7.086401],[108.208998,-7.087722],[108.208369,-7.083135],[108.207097,-7.082152],[108.203661,-7.082952],[108.205112,-7.080753],[108.203952,-7.077165],[108.196166,-7.075109],[108.193641,-7.070921],[108.190896,-7.070127],[108.184894,-7.07182],[108.182993,-7.069658],[108.180593,-7.0701],[108.17618030000006,-7.067677499999945],[108.16695840000006,-7.074160399999926],[108.16210940000008,-7.074101299999938],[108.14998630000008,-7.057428699999946],[108.14587320000004,-7.047862299999963],[108.13901530000004,-7.042482199999938],[108.13446050000005,-7.041553299999975],[108.133458,-7.039232799999979],[108.13175970000009,-7.038950299999954],[108.13047810000006,-7.041432599999951],[108.12905890000008,-7.040762299999926],[108.127788,-7.0433161],[108.128948,-7.045436],[108.131493,-7.046412],[108.132492,-7.049307],[108.135522,-7.050257],[108.133816,-7.055134],[108.136057,-7.060506],[108.134656,-7.062842],[108.13005870000006,-7.064499],[108.127384,-7.071431],[108.124702,-7.069175],[108.12345130000006,-7.069605199999955],[108.11798870000007,-7.077934099999936],[108.12341320000007,-7.085802399999977],[108.123581,-7.0919827],[108.12101750000005,-7.094143199999962],[108.12202460000009,-7.098028499999941],[108.12599950000003,-7.102023899999949],[108.12250520000003,-7.114639099999977],[108.12069380000008,-7.1107586],[108.11617090000004,-7.107835],[108.11372140000009,-7.1025966],[108.110179,-7.102053],[108.108312,-7.103687],[108.106105,-7.102426],[108.101598,-7.104378],[108.09899,-7.102877],[108.096052,-7.106188],[108.09160920000005,-7.105895],[108.08580790000008,-7.109019599999954],[108.068018,-7.130072699999971],[108.070681,-7.135015],[108.07367710000005,-7.135346699999957],[108.08067310000007,-7.142859899999962],[108.08454970000008,-7.162149199999931],[108.08085320000004,-7.167151799999942],[108.076174,-7.169527799999969],[108.07609840000003,-7.174085099999957],[108.07243520000009,-7.17421],[108.06987340000006,-7.177113199999951],[108.07132880000006,-7.179622],[108.067009,-7.187247099999979],[108.07354,-7.193848],[108.07510380000008,-7.198158099999944],[108.07365420000008,-7.199858],[108.068793,-7.200749],[108.066063,-7.207338599999957],[108.06837470000005,-7.208605599999942],[108.06877140000006,-7.211054099999956],[108.06238560000008,-7.223192499999925],[108.06036390000008,-7.224892399999931],[108.03317270000008,-7.2268761],[108.01857760000007,-7.230915799999934],[108.01480870000006,-7.235746699999936],[108.01354230000004,-7.241119199999957],[108.00498970000007,-7.244917699999974],[108.00013740000009,-7.249999799999955],[107.99475870000003,-7.252785],[107.994538,-7.258569],[107.98503120000004,-7.260390599999937],[107.982447,-7.262077],[107.980763,-7.264601],[107.98074350000007,-7.271002099999976],[107.979448,-7.272853],[107.976756,-7.274047],[107.967465,-7.273161],[107.94222270000006,-7.282900099999949],[107.93196870000008,-7.282406099999946],[107.929112,-7.284875],[107.927267,-7.284267],[107.924412,-7.285682],[107.92257860000007,-7.2887772],[107.922796,-7.293581],[107.92596440000005,-7.296975399999951],[107.926809,-7.30183],[107.93025020000005,-7.301060199999938],[107.93158990000006,-7.303011899999944],[107.93192410000006,-7.306295099999943],[107.93058780000007,-7.306475],[107.92848160000005,-7.3125693],[107.93211660000009,-7.316331499999933],[107.940181,-7.316192],[107.94060060000004,-7.322407799999951],[107.94625360000003,-7.330504],[107.93802650000003,-7.330740299999945],[107.93416820000004,-7.3343491],[107.934641,-7.337123],[107.92931290000007,-7.338562199999956],[107.931183,-7.340062],[107.92997790000004,-7.341802199999961],[107.93163270000008,-7.344161799999938],[107.92832530000004,-7.350641799999948],[107.924245,-7.352237],[107.920652,-7.351288],[107.913698,-7.356221],[107.904979,-7.359524],[107.90447240000009,-7.3625524],[107.90739450000007,-7.367101],[107.91428380000008,-7.3690637],[107.91983040000008,-7.376360199999965],[107.93375410000004,-7.388408499999969],[107.93282330000005,-7.394202499999949],[107.936226,-7.399928799999941],[107.94895940000004,-7.401545299999952],[107.94800510000005,-7.404772299999934],[107.94187930000004,-7.409581399999979],[107.943676,-7.414084],[107.95142370000008,-7.421680299999935],[107.95117960000005,-7.435325899999953],[107.94901280000005,-7.445582699999932],[107.950615,-7.451224599999932],[107.94972240000004,-7.454129499999965],[107.95331580000004,-7.460229699999957],[107.94821940000008,-7.4653719],[107.946785,-7.473415699999975],[107.95130170000004,-7.480610699999943],[107.95041660000004,-7.486667399999931],[107.94483950000006,-7.494996799999967],[107.94184120000006,-7.502498899999978],[107.942253,-7.528139],[107.946996,-7.537585],[107.946601,-7.541804],[107.943193,-7.546833],[107.932904,-7.555769],[107.931359,-7.560453],[107.93316660000005,-7.563964599999963],[107.94052890000006,-7.569758199999967],[107.94184880000006,-7.5730246],[107.940603,-7.581403],[107.933354,-7.586491],[107.92604110000008,-7.588228199999946],[107.91698460000003,-7.597011399999928],[107.91686260000006,-7.603563099999974],[107.91894540000004,-7.604884399999946],[107.918213,-7.608018699999946],[107.92012790000007,-7.610050499999943],[107.918686,-7.613293899999974],[107.92163860000005,-7.612835699999948],[107.92186740000005,-7.615525499999933],[107.92516330000007,-7.617923499999961],[107.924261,-7.619822699999929],[107.92561350000005,-7.622134499999959],[107.92481010000006,-7.630949599999951],[107.925828,-7.634165],[107.92107960000004,-7.637046599999962],[107.92266090000004,-7.639771199999927],[107.92519390000007,-7.640101199999947],[107.92584240000008,-7.642663299999981],[107.924939,-7.647731],[107.92283630000009,-7.6497895],[107.923256,-7.652022599999952],[107.92482770000004,-7.6544631],[107.92942820000007,-7.655148299999951],[107.93027510000007,-7.657339399999955],[107.92951,-7.659885],[107.92614630000008,-7.662114799999927],[107.92851260000003,-7.664010799999971],[107.92841,-7.665979],[107.926569,-7.66631],[107.925321,-7.664044],[107.923509,-7.664662],[107.92777260000008,-7.671368899999948],[107.923611,-7.676723],[107.92551430000009,-7.676355599999965],[107.92863470000009,-7.682022299999971],[107.93093120000009,-7.682076199999926],[107.93125920000006,-7.686004899999944],[107.927765,-7.693219899999974],[107.92404180000005,-7.695442],[107.92711650000007,-7.7003458],[107.92294320000008,-7.701183599999979],[107.92149360000008,-7.703205399999945],[107.92145550000004,-7.706858899999929],[107.91741950000005,-7.7109564],[107.91809850000004,-7.7154372],[107.91583260000004,-7.716285499999969],[107.91333380000003,-7.720043699999962],[107.91332250000005,-7.725436],[107.90974890000007,-7.731702699999971],[107.944236,-7.734014],[107.998961,-7.745612],[108.005888,-7.7441],[108.0123,-7.748728],[108.038051,-7.754207],[108.049358,-7.758651],[108.056335,-7.764227],[108.057965,-7.76358],[108.061153,-7.765036],[108.061733,-7.766829],[108.073075,-7.767347],[108.082852,-7.772705],[108.088955,-7.771316],[108.096332,-7.772836],[108.10231,-7.771799],[108.109179,-7.773465],[108.11366,-7.777058],[108.124174,-7.780555],[108.126492,-7.776225],[108.132747,-7.777109],[108.133642,-7.77568],[108.134202,-7.777345],[108.139392,-7.77947],[108.133379,-7.778696],[108.144479,-7.783031],[108.144067,-7.785589],[108.293417,-7.810722],[108.299925,-7.814914],[108.302564,-7.811154],[108.316638,-7.813145],[108.322347,-7.815676],[108.327871,-7.814429],[108.34047490000006,-7.816615899999931],[108.338926,-7.815006],[108.339361,-7.809695],[108.335147,-7.806168],[108.329277,-7.803885],[108.328577,-7.800846],[108.330304,-7.797778],[108.327143,-7.795535],[108.32356,-7.795311],[108.323373,-7.790505],[108.31782,-7.786318],[108.322935,-7.78344],[108.324962,-7.778617],[108.322806,-7.768444],[108.323345,-7.762663],[108.32167770000007,-7.760537399999976],[108.32428710000005,-7.75885],[108.323774,-7.751116599999932],[108.32227050000006,-7.749817699999937],[108.32355990000008,-7.746679799999981],[108.31937510000006,-7.742393199999981],[108.31656070000008,-7.742222099999935],[108.317861,-7.738128],[108.31421,-7.731134],[108.312711,-7.724431],[108.315829,-7.724299],[108.319395,-7.726214],[108.321674,-7.722975],[108.320836,-7.721099],[108.31200280000007,-7.718738599999938],[108.31546150000008,-7.712383599999953],[108.31860630000006,-7.718439299999943],[108.320336,-7.714036],[108.323653,-7.72012],[108.33035,-7.716387],[108.331887,-7.712552],[108.329702,-7.709599],[108.32806310000007,-7.713379299999929],[108.32604710000004,-7.710133499999927],[108.32379950000006,-7.712766099999953],[108.32348,-7.702168],[108.317234,-7.698722],[108.314268,-7.690409],[108.316379,-7.690157],[108.317707,-7.69335],[108.324483,-7.693092],[108.324859,-7.691719],[108.321608,-7.691103],[108.324266,-7.688167],[108.321747,-7.685289],[108.323721,-7.682996],[108.326475,-7.688322],[108.329328,-7.690696],[108.33178960000004,-7.692089899999928],[108.33354250000008,-7.690514699999937],[108.336446,-7.691289499999925],[108.3342,-7.689413199999933],[108.33476330000008,-7.686442399999976],[108.33253020000006,-7.686578],[108.33186020000005,-7.685316799999953],[108.33596570000009,-7.684356299999934],[108.34027950000007,-7.679747],[108.34749920000007,-7.680957099999944],[108.35053810000005,-7.683883699999967],[108.354808,-7.683678],[108.355671,-7.68209],[108.353038,-7.678007],[108.354983,-7.674837],[108.354247,-7.672194],[108.35754440000005,-7.671812099999954],[108.35611340000008,-7.670083899999952],[108.358357,-7.66777],[108.361663,-7.668112],[108.36205,-7.665709],[108.36016,-7.664347],[108.361665,-7.662028],[108.365531,-7.660647],[108.366182,-7.658605],[108.36334620000008,-7.6582997],[108.363249,-7.656467],[108.360597,-7.654787],[108.361867,-7.650451],[108.36049460000004,-7.6474226],[108.36169710000007,-7.645440699999938],[108.35507230000007,-7.6445853],[108.35340380000008,-7.638739],[108.35695840000005,-7.635252599999944],[108.355141,-7.623691599999972],[108.35814170000003,-7.620978199999968],[108.35633830000006,-7.618671],[108.35819030000005,-7.618348199999957],[108.35663590000007,-7.6172038],[108.35707790000004,-7.6144249],[108.35963390000006,-7.611861099999942],[108.358772,-7.601534],[108.361178,-7.600445],[108.35658,-7.595717199999967],[108.35724010000007,-7.592828399999973],[108.355817,-7.591184],[108.35732610000008,-7.586049199999934],[108.355468,-7.585186],[108.357002,-7.578123],[108.355029,-7.574664],[108.356371,-7.571914],[108.354581,-7.570906],[108.354386,-7.568953],[108.35312,-7.569125],[108.355118,-7.567583],[108.352695,-7.566433],[108.353818,-7.565665],[108.352442,-7.56389],[108.353612,-7.562194],[108.347833,-7.559646],[108.347276,-7.557739],[108.34244130000008,-7.555130099999928],[108.34241130000004,-7.553629],[108.339046,-7.554179],[108.33835,-7.552638],[108.334079,-7.55103],[108.334069,-7.548859],[108.32747220000005,-7.5508444],[108.32772560000006,-7.548366399999964],[108.32979810000006,-7.5463577],[108.32825150000008,-7.545916599999941],[108.33024080000007,-7.544905],[108.33264650000007,-7.538998599999957],[108.334392,-7.529904],[108.336465,-7.528253],[108.333939,-7.524045199999932],[108.33308110000007,-7.513501099999928],[108.33600910000007,-7.507841499999927],[108.35175630000003,-7.500338099999965],[108.35197870000007,-7.493082699999945],[108.35613560000007,-7.4904202],[108.36315120000006,-7.488641499999972],[108.36707330000007,-7.483551199999965],[108.37356,-7.478585],[108.38017140000005,-7.479037499999947],[108.382007,-7.477455],[108.38400430000007,-7.479473399999961],[108.39067540000008,-7.476978799999927],[108.40057910000007,-7.478204699999935],[108.40238820000008,-7.4808814],[108.401403,-7.485476],[108.406866,-7.488752],[108.406923,-7.493713],[108.410466,-7.494454],[108.410372,-7.49809],[108.41186270000009,-7.497829299999978],[108.41229840000005,-7.494478199999946],[108.41349390000005,-7.495309099999929],[108.41466530000008,-7.493853],[108.41479660000005,-7.489215499999943],[108.41731140000007,-7.488236699999959],[108.41930390000005,-7.489318799999978],[108.41950020000007,-7.492619499999932],[108.42632280000004,-7.494880699999953],[108.42950210000004,-7.500543099999959],[108.442488,-7.488658],[108.43792430000008,-7.490315899999928],[108.43321830000008,-7.4877894],[108.431581,-7.489533199999926],[108.42625250000003,-7.490030399999966],[108.42379730000005,-7.489295299999981],[108.42443730000008,-7.487833899999941],[108.42251910000005,-7.489123199999938],[108.42120640000007,-7.4878591],[108.4235,-7.484590399999945],[108.42387610000009,-7.479360199999974],[108.42638090000008,-7.474112299999945],[108.42537,-7.452981],[108.424377,-7.450561],[108.42297730000007,-7.4537064],[108.42141190000007,-7.453125599999964],[108.42092630000008,-7.450744899999961],[108.42341760000005,-7.445896199999936],[108.41985410000007,-7.440110299999958],[108.422251,-7.434185],[108.42033880000008,-7.422462899999971],[108.41589140000008,-7.419700299999931],[108.409824,-7.422271499999965],[108.40417490000004,-7.4184173],[108.39915470000005,-7.4170007],[108.39534080000004,-7.411324099999945],[108.396483,-7.404603],[108.399871,-7.396912],[108.400674,-7.389857],[108.411737,-7.376896],[108.407151,-7.370585],[108.40768,-7.365456],[108.405509,-7.360814],[108.401701,-7.363147],[108.39876380000004,-7.361401199999932],[108.395512,-7.362439],[108.392959,-7.359557],[108.390264,-7.361891],[108.388478,-7.358821],[108.385721,-7.359049],[108.384811,-7.35688],[108.382053,-7.357751],[108.380411,-7.355868],[108.378703,-7.356837],[108.378711,-7.359279],[108.37264470000008,-7.3598675],[108.371961,-7.357781],[108.367589,-7.357114],[108.36235650000003,-7.352458],[108.35581770000005,-7.352376899999967],[108.341367,-7.356531699999948],[108.33899250000007,-7.3516289],[108.33672760000007,-7.351408],[108.33732,-7.345893],[108.334596,-7.347536],[108.331352,-7.346529],[108.33174670000005,-7.349065],[108.32983160000003,-7.350238299999944],[108.32950690000007,-7.3481916],[108.32593090000006,-7.347568399999943],[108.32699540000004,-7.346225299999958],[108.32540380000006,-7.345833699999957],[108.32675980000005,-7.344018399999925],[108.324143,-7.343152],[108.324118,-7.340267],[108.31296690000005,-7.3396216]]]},"properties":{"shapeName":"Tasikmalaya","shapeISO":"","shapeID":"22746128B74688870064468","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[102.81357630000008,-1.423173299999974],[102.80509490000009,-1.412270599999943],[102.79924090000009,-1.3968448],[102.79772810000009,-1.387248499999941],[102.79918360000005,-1.383904899999948],[102.80509520000004,-1.3790104],[102.80558350000007,-1.373990299999946],[102.79091110000007,-1.342098499999963],[102.78973690000004,-1.333389899999929],[102.78213770000008,-1.316675499999974],[102.78000560000004,-1.307709399999965],[102.77492260000008,-1.301897199999928],[102.76641470000004,-1.296826299999964],[102.76742480000007,-1.286245699999938],[102.76278460000003,-1.282522399999948],[102.76131520000007,-1.275984199999925],[102.75675910000007,-1.270700599999941],[102.74632750000006,-1.262889599999937],[102.73924840000006,-1.259838499999944],[102.72317260000005,-1.261036299999944],[102.719172,-1.257563699999935],[102.715334,-1.248796699999957],[102.71246180000009,-1.245794699999976],[102.69995140000003,-1.240580099999931],[102.69340240000008,-1.2253879],[102.68763490000003,-1.2197064],[102.68817980000006,-1.216536499999961],[102.68390710000006,-1.205731899999932],[102.68572990000007,-1.194781099999943],[102.68446870000008,-1.191098899999929],[102.67661790000005,-1.184548099999972],[102.67499780000009,-1.1780632],[102.67111910000006,-1.172954899999979],[102.66655390000005,-1.162802899999974],[102.64631710000003,-1.137660799999935],[102.64557010000004,-1.135818599999936],[102.65069830000004,-1.1264471],[102.64957270000008,-1.118519699999979],[102.64680480000004,-1.122272799999962],[102.641659,-1.121008],[102.63778860000008,-1.115886199999977],[102.63034820000007,-1.109973299999979],[102.62316130000005,-1.097864899999934],[102.61681370000008,-1.094634199999973],[102.60279850000006,-1.094744099999957],[102.58677670000009,-1.092201499999931],[102.57139910000006,-1.0966127],[102.56685190000007,-1.095359599999938],[102.55860580000007,-1.097319699999957],[102.55623760000009,-1.0958011],[102.55502780000006,-1.090031599999975],[102.55036050000007,-1.090358699999967],[102.54936980000008,-1.085615299999972],[102.54336550000005,-1.082846],[102.53803450000004,-1.087009],[102.52780020000006,-1.0854181],[102.52471920000005,-1.082492899999977],[102.51716610000005,-1.079550099999949],[102.49957310000008,-1.083500799999968],[102.48193780000008,-1.079921299999967],[102.47649380000007,-1.076882599999976],[102.468895,-1.067829299999971],[102.47171020000008,-1.060163299999942],[102.47023010000004,-1.057510899999954],[102.44994350000007,-1.037211499999955],[102.44252010000008,-1.0254487],[102.43874360000007,-1.025389699999948],[102.43090060000009,-1.031612399999972],[102.42346950000007,-1.0289],[102.38244630000008,-1.026693699999953],[102.37490080000003,-1.020753399999933],[102.37422180000004,-1.0182166],[102.37686160000004,-1.011184699999944],[102.37538150000006,-1.0057653],[102.37882230000008,-1.001558399999965],[102.38531490000008,-0.999947899999938],[102.38623050000007,-0.993381599999964],[102.37310030000003,-0.9851372],[102.36573030000005,-0.976319799999942],[102.35768130000008,-0.97044],[102.35042570000007,-0.969053599999938],[102.34403230000004,-0.963981],[102.32992550000006,-0.9655864],[102.32633210000006,-0.963337799999977],[102.32438660000008,-0.960802299999955],[102.32267760000008,-0.947840499999927],[102.312233,-0.933088399999974],[102.30989840000007,-0.9205295],[102.30681610000005,-0.917359599999941],[102.29351040000006,-0.916315599999962],[102.27523040000005,-0.917861099999925],[102.26300810000004,-0.923384399999975],[102.25432590000008,-0.921536499999945],[102.24975590000008,-0.925451],[102.24813320000004,-0.931249399999956],[102.24303490000005,-0.933539899999971],[102.23952480000008,-0.931436399999939],[102.23564150000004,-0.931146299999966],[102.22981260000006,-0.938689199999942],[102.21939350000008,-0.944979199999977],[102.20359040000005,-0.948525299999972],[102.18788910000006,-0.942468499999961],[102.18692020000009,-0.931638499999963],[102.18875120000007,-0.923402099999976],[102.18766780000004,-0.918044399999928],[102.18430330000007,-0.915680899999927],[102.17722320000007,-0.915561899999943],[102.17396550000007,-0.913774399999966],[102.17042540000006,-0.908127299999933],[102.16677090000007,-0.905706],[102.16500090000005,-0.898734899999965],[102.15523530000007,-0.903798799999947],[102.14781190000008,-0.903103599999952],[102.13930510000006,-0.899412499999926],[102.13346860000007,-0.913234199999977],[102.11708320000008,-0.920966199999953],[102.099144,-0.911545199999978],[102.09126280000004,-0.905435],[102.07064820000005,-0.896380099999931],[102.06237030000005,-0.8895209],[102.05797580000007,-0.889921699999945],[102.04794380000004,-0.897096],[102.03048970000003,-0.890575199999944],[102.00777440000007,-0.878604399999972],[102.00405880000005,-0.878717599999959],[101.99968720000004,-0.881360399999949],[101.99425510000003,-0.882003199999929],[101.983551,-0.880407499999933],[101.97772220000007,-0.882837199999926],[101.97063450000007,-0.889648099999931],[101.96744790000008,-0.897131099999967],[101.95905620000008,-0.909696599999961],[101.95401760000004,-0.903792499999952],[101.94696810000005,-0.900346899999931],[101.94177250000007,-0.902314599999954],[101.93926240000008,-0.906813099999965],[101.936058,-0.908719899999937],[101.92787370000008,-0.905183499999964],[101.92113490000008,-0.911222199999941],[101.91271850000004,-0.922284099999956],[101.91458890000007,-0.931515399999967],[101.91390990000008,-0.935146599999939],[101.91036990000003,-0.938667199999941],[101.90934750000008,-0.946678199999951],[101.90716480000003,-0.9505606],[101.90120530000007,-0.9510245],[101.89780430000008,-0.953035399999976],[101.89165360000004,-0.960789399999953],[101.88376490000007,-0.964499199999977],[101.87231450000007,-0.966733599999941],[101.85924650000004,-0.9654463],[101.85426330000007,-0.968600199999969],[101.85569250000003,-0.968041199999959],[101.85455540000004,-0.972302699999943],[101.85545090000005,-0.977377],[101.85169840000003,-0.980404499999963],[101.84180560000004,-0.983091],[101.83340560000005,-0.981525699999963],[101.82341140000005,-0.992187],[101.82199060000005,-0.995768899999973],[101.82201170000008,-1],[101.82733070000006,-1.007382399999926],[101.82197410000003,-1.031071299999951],[101.82243880000004,-1.034149399999933],[101.82538740000007,-1.0381547],[101.82153160000007,-1.059173699999974],[101.82667610000004,-1.064861399999927],[101.82876140000008,-1.071055499999943],[101.82490850000005,-1.088484799999947],[101.830818,-1.102578],[101.836986,-1.110307399999954],[101.84091470000004,-1.112336599999935],[101.84547610000004,-1.111867399999937],[101.84651420000006,-1.110472399999935],[101.84552420000006,-1.101702599999953],[101.84921780000008,-1.099491799999953],[101.85360220000007,-1.100162699999942],[101.86018130000008,-1.108940299999972],[101.86506620000006,-1.1119404],[101.86783,-1.111087699999928],[101.87251240000006,-1.104675099999952],[101.87634990000004,-1.093127399999958],[101.87889960000007,-1.093771799999956],[101.88144260000007,-1.100833899999941],[101.88399160000006,-1.102120099999979],[101.89143180000008,-1.100630499999966],[101.89291750000007,-1.102557399999966],[101.89291350000008,-1.106408],[101.88513190000003,-1.112987799999928],[101.88460670000006,-1.134866799999941],[101.886717,-1.137634299999945],[101.891943,-1.137191199999961],[101.89309880000008,-1.1322931],[101.88842670000008,-1.128865299999973],[101.88757990000005,-1.125655499999937],[101.888433,-1.122875399999941],[101.89055970000004,-1.121594099999925],[101.90457980000008,-1.128454799999929],[101.91115730000007,-1.138944299999935],[101.91455660000008,-1.140231599999936],[101.91880870000006,-1.138952599999925],[101.92158030000007,-1.130826199999944],[101.92353310000004,-1.129265699999962],[101.93468490000004,-1.128395099999977],[101.94314210000005,-1.129887399999973],[101.94730680000004,-1.1318913],[101.94890870000006,-1.136225799999977],[101.94014950000008,-1.1417309],[101.93857020000007,-1.143680299999971],[101.93930120000005,-1.145357899999965],[101.94640580000004,-1.146464299999934],[101.95652780000006,-1.137768],[101.965837,-1.138275499999963],[101.96779080000005,-1.1410141],[101.96262890000008,-1.153074299999957],[101.96448190000007,-1.153781099999946],[101.96984080000004,-1.150200299999938],[101.97204,-1.1546185],[101.97137490000006,-1.160298199999943],[101.96737250000007,-1.166513399999928],[101.96568670000005,-1.1674922],[101.95820170000007,-1.166003899999964],[101.95748470000007,-1.175517399999933],[101.95125970000004,-1.189751099999967],[101.945343,-1.196966099999941],[101.94738010000003,-1.208399699999973],[101.95256810000006,-1.214529699999957],[101.97189110000005,-1.214550599999939],[101.96665420000005,-1.232033199999933],[101.96239620000006,-1.235061499999972],[101.963272,-1.242624299999932],[101.96206180000007,-1.251999],[101.95534020000008,-1.256176099999948],[101.92202680000008,-1.255707299999926],[101.90532560000008,-1.259017],[101.90371720000007,-1.262246299999958],[101.90370870000004,-1.271003199999939],[101.89524630000005,-1.278273799999965],[101.89123810000007,-1.279282699999953],[101.88930380000005,-1.281447599999979],[101.88637470000003,-1.294119099999932],[101.87234620000004,-1.305429099999969],[101.87182280000007,-1.315441],[101.87518390000008,-1.32195],[101.88654920000005,-1.338546599999972],[101.89735050000007,-1.346787],[101.90067330000005,-1.353127699999959],[101.905457,-1.352064299999938],[101.91059090000005,-1.355524399999979],[101.91689610000009,-1.35681],[101.94843760000003,-1.369792799999971],[101.99476430000004,-1.381701899999939],[102.02860550000008,-1.388972799999976],[102.04040270000007,-1.388599499999941],[102.03516970000004,-1.392027],[102.03890690000009,-1.395371599999976],[102.05211210000004,-1.3952423],[102.06082090000007,-1.393500699999947],[102.07713680000006,-1.394929199999979],[102.08277230000004,-1.4063019],[102.091378,-1.410650299999929],[102.09455880000007,-1.416226499999937],[102.09807930000005,-1.418426],[102.114559,-1.423347699999965],[102.12106210000007,-1.420650099999932],[102.12408030000006,-1.422173599999951],[102.14271220000006,-1.448612399999945],[102.14948030000005,-1.454348699999969],[102.15286110000005,-1.459808099999975],[102.16858790000003,-1.453554699999927],[102.18485150000004,-1.451665799999944],[102.18722530000008,-1.450298799999928],[102.19052890000006,-1.452776599999936],[102.20407260000007,-1.471223],[102.21193550000004,-1.474612299999933],[102.22825730000005,-1.477176799999938],[102.25532430000004,-1.478376599999933],[102.25859520000006,-1.473716699999954],[102.27007870000006,-1.4712929],[102.27640190000005,-1.4683326],[102.27809020000007,-1.465790599999934],[102.28240880000004,-1.465689899999973],[102.29621640000005,-1.457650399999977],[102.30010790000006,-1.4624253],[102.30516330000006,-1.4627494],[102.30484470000005,-1.464975099999947],[102.30747630000008,-1.466356399999938],[102.30852740000006,-1.468159699999944],[102.30589320000007,-1.469004599999948],[102.30430810000007,-1.4732428],[102.30556450000006,-1.479498599999943],[102.30882890000004,-1.480244699999957],[102.30777250000006,-1.482787499999972],[102.31481930000007,-1.491382499999929],[102.31365520000008,-1.495833299999958],[102.31544560000003,-1.496047499999975],[102.31639090000004,-1.498274799999933],[102.32182340000008,-1.498221499999943],[102.32316720000006,-1.502636],[102.31831360000007,-1.525770299999976],[102.31168370000006,-1.541422499999953],[102.31002810000007,-1.549816299999975],[102.30946350000005,-1.558923099999959],[102.31361390000006,-1.568592799999976],[102.323761,-1.572874399999932],[102.33782960000008,-1.574445399999945],[102.35947420000008,-1.573441699999933],[102.39230350000008,-1.566549799999962],[102.40083310000006,-1.565683699999965],[102.40838620000005,-1.566967399999953],[102.41934970000005,-1.564508399999966],[102.42463680000009,-1.565656099999956],[102.45959470000008,-1.563699499999927],[102.47677610000005,-1.568462099999977],[102.47995760000003,-1.569837499999949],[102.48121520000007,-1.595579],[102.488995,-1.595399899999961],[102.48840410000008,-1.618792],[102.48971,-1.623887199999956],[102.48735030000006,-1.637089799999956],[102.48902630000003,-1.646052899999972],[102.49531190000005,-1.641721799999971],[102.51858430000004,-1.6385797],[102.52029040000008,-1.64224],[102.51996630000008,-1.645779399999981],[102.51861370000006,-1.6462143],[102.52076430000005,-1.6464575],[102.51955560000005,-1.650534499999935],[102.52939140000007,-1.656127899999944],[102.52990740000007,-1.657587499999977],[102.52307890000009,-1.676542799999936],[102.51336760000004,-1.686196],[102.50810480000007,-1.694670299999927],[102.50644520000009,-1.6946388],[102.50485020000008,-1.688455599999941],[102.50237520000007,-1.686507799999958],[102.49672640000006,-1.686600299999952],[102.49697010000006,-1.689791699999944],[102.50174650000008,-1.696791899999937],[102.51205180000005,-1.704696],[102.51414380000006,-1.7081561],[102.51400590000009,-1.714715299999966],[102.50224250000008,-1.741604499999937],[102.49473110000008,-1.751035099999967],[102.48589010000006,-1.768443099999956],[102.47718350000008,-1.776377099999934],[102.47005030000008,-1.780668599999956],[102.469417,-1.786697899999979],[102.45977610000006,-1.800449299999968],[102.458331,-1.812740799999972],[102.46252550000008,-1.8293195],[102.46151070000008,-1.832210099999941],[102.46253770000004,-1.841976299999942],[102.46972690000007,-1.859527799999967],[102.45968940000006,-1.877509199999963],[102.459495,-1.897340399999962],[102.46499770000008,-1.894542799999954],[102.49698030000008,-1.904537399999924],[102.50973040000008,-1.911871099999928],[102.50809990000005,-1.897987399999977],[102.50849770000008,-1.892154399999924],[102.50990510000008,-1.890271899999959],[102.50805960000008,-1.870953199999974],[102.50993910000005,-1.866244599999959],[102.52065940000006,-1.857313599999941],[102.537699,-1.863778499999967],[102.55214790000008,-1.874364799999967],[102.56343910000004,-1.880629499999941],[102.57236420000004,-1.882005499999934],[102.58513390000007,-1.881568799999968],[102.59749210000007,-1.876040499999931],[102.61551190000006,-1.860336699999948],[102.627061,-1.843195699999967],[102.63464310000006,-1.834911499999976],[102.658536,-1.820582699999932],[102.66387530000009,-1.8128042],[102.668755,-1.796675899999968],[102.67804260000008,-1.78765],[102.686992,-1.773910799999953],[102.688018,-1.766640099999961],[102.68703460000006,-1.745014199999957],[102.69586930000008,-1.727981199999931],[102.69574990000007,-1.724229099999945],[102.69854560000005,-1.721879599999966],[102.70690330000008,-1.722992499999975],[102.70935950000006,-1.72079],[102.71047590000006,-1.715959099999964],[102.71397090000005,-1.718246799999974],[102.712488,-1.713116599999978],[102.70624690000005,-1.706578199999967],[102.70651150000003,-1.704465099999936],[102.71319980000004,-1.7035315],[102.71588090000006,-1.705727],[102.71859110000008,-1.702297699999974],[102.721572,-1.704823699999963],[102.724154,-1.702002399999969],[102.72696040000005,-1.704437299999938],[102.72734370000006,-1.7008579],[102.73189970000004,-1.696286699999973],[102.73044570000008,-1.689588],[102.73158540000009,-1.687248199999942],[102.73385950000005,-1.687142],[102.73353050000009,-1.690735],[102.73629080000006,-1.691500499999961],[102.73704510000005,-1.694713699999966],[102.74187960000006,-1.691976499999953],[102.74659780000007,-1.685176099999978],[102.74595480000005,-1.679295099999933],[102.74915120000009,-1.677611],[102.75,-1.674835099999939],[102.75842430000006,-1.666423799999961],[102.77105020000005,-1.6414928],[102.77897270000005,-1.637125799999978],[102.78189470000007,-1.633298299999979],[102.78336960000007,-1.628104399999927],[102.78317830000009,-1.619448899999952],[102.80531690000004,-1.578510199999926],[102.803939,-1.5605294],[102.802255,-1.556451],[102.80233810000004,-1.539495],[102.81254860000007,-1.523027799999966],[102.82312580000007,-1.498767199999975],[102.82287840000004,-1.467577899999981],[102.82479510000007,-1.452627899999925],[102.81744360000005,-1.445105599999977],[102.81505860000004,-1.434477499999957],[102.81284870000007,-1.430971499999941],[102.81209180000008,-1.4259065],[102.81357630000008,-1.423173299999974]]]},"properties":{"shapeName":"Tebo","shapeISO":"","shapeID":"22746128B52743882093292","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[109.20383450000008,-7.2476124],[109.20266720000006,-7.246619199999941],[109.20513150000005,-7.244167299999958],[109.20444490000006,-7.242731499999934],[109.20645140000005,-7.238502],[109.21026610000007,-7.235027699999932],[109.21354680000007,-7.234932399999934],[109.199997,-7.224192099999925],[109.20000460000006,-7.216214099999945],[109.19649510000005,-7.208229899999935],[109.19934850000004,-7.193116099999941],[109.19661710000008,-7.1827564],[109.19801330000007,-7.170206499999949],[109.19429020000007,-7.168972899999972],[109.18876550000004,-7.160766899999942],[109.18854520000008,-7.156559899999934],[109.194444,-7.147019199999932],[109.19269970000005,-7.147472099999959],[109.192009,-7.142253399999959],[109.18767550000007,-7.140338899999961],[109.185942,-7.135976699999958],[109.189317,-7.133136799999932],[109.19372980000009,-7.132185199999981],[109.19527730000004,-7.129959699999972],[109.20224380000008,-7.130887299999927],[109.20832420000005,-7.128677799999934],[109.21461820000007,-7.129309299999932],[109.21659770000008,-7.125062599999978],[109.21789580000006,-7.124822499999937],[109.21758670000008,-7.123158],[109.219464,-7.122692499999971],[109.219074,-7.119294299999979],[109.22051310000006,-7.118827099999976],[109.22449070000005,-7.102026699999954],[109.22604270000005,-7.101067399999977],[109.22563680000007,-7.097623599999963],[109.22761640000004,-7.096754699999963],[109.22664280000004,-7.094002199999977],[109.22861490000008,-7.092972199999963],[109.22736290000006,-7.091547499999933],[109.23038480000008,-7.092071899999951],[109.22842570000006,-7.090022399999953],[109.230484,-7.089660599999945],[109.23187930000006,-7.087541599999952],[109.23074220000007,-7.084679299999948],[109.23323630000004,-7.0853259],[109.23247910000003,-7.083193199999926],[109.234467,-7.082763799999952],[109.23394550000006,-7.080923299999938],[109.23538550000006,-7.080837699999961],[109.23718270000006,-7.074625399999945],[109.24142460000007,-7.073024699999962],[109.245102,-7.074894799999981],[109.24449920000006,-7.072936499999969],[109.24993140000004,-7.072278399999959],[109.249785,-7.068494599999951],[109.25243380000006,-7.067348399999958],[109.25366980000007,-7.0636176],[109.26161960000007,-7.060996],[109.264328,-7.058292799999947],[109.26664740000007,-7.058944699999927],[109.27257430000009,-7.056549699999948],[109.27288170000008,-7.054477499999962],[109.27562720000009,-7.052924599999926],[109.27495580000004,-7.0505747],[109.27743530000004,-7.040746599999977],[109.27577980000007,-7.037921399999959],[109.27901460000004,-7.032983299999955],[109.28305060000008,-7.031867899999952],[109.28255460000008,-7.024065],[109.28775790000009,-7.021547799999951],[109.28663640000008,-7.017905199999973],[109.28875730000004,-7.012896],[109.28603360000005,-7.008613099999934],[109.28858950000006,-7.006163499999957],[109.28832250000005,-7.0034961],[109.29193880000008,-7.002767499999948],[109.29122160000009,-6.997978099999955],[109.29285430000004,-6.994565899999941],[109.30123140000006,-6.990736399999946],[109.30171970000004,-6.987782899999956],[109.30525970000008,-6.989019799999937],[109.31165320000008,-6.988459099999943],[109.3153,-6.984224299999937],[109.31608580000005,-6.979336199999977],[109.319397,-6.976562899999976],[109.31665040000007,-6.974148699999944],[109.31657410000008,-6.967387199999962],[109.321312,-6.970194799999945],[109.32213590000003,-6.9684829],[109.320015,-6.967165899999941],[109.321518,-6.965591899999936],[109.32332610000009,-6.968615499999942],[109.32453160000006,-6.968417599999952],[109.325531,-6.965580399999965],[109.32250220000009,-6.963292499999966],[109.32498930000008,-6.961217799999929],[109.32675170000005,-6.961872099999937],[109.32928470000007,-6.960532599999965],[109.32971190000006,-6.9633941],[109.33132940000007,-6.963666399999966],[109.33170320000005,-6.958155599999941],[109.335701,-6.956800399999963],[109.33533480000006,-6.955426599999953],[109.33271790000003,-6.954678499999943],[109.33222960000006,-6.9571118],[109.33100130000008,-6.957106499999952],[109.329216,-6.9545769],[109.33158110000005,-6.949956399999962],[109.33152770000004,-6.9460482],[109.33449560000008,-6.945749699999965],[109.332962,-6.944094099999973],[109.33360290000007,-6.941904499999964],[109.33132170000005,-6.939730099999963],[109.33311470000007,-6.939170799999943],[109.33322150000004,-6.935620299999925],[109.33137520000008,-6.934330899999964],[109.33053590000009,-6.9363236],[109.32680510000006,-6.934998499999949],[109.33040620000008,-6.929268799999932],[109.32821660000008,-6.928883499999927],[109.32840730000004,-6.926989],[109.32607270000005,-6.928472],[109.32536320000008,-6.925290099999927],[109.329155,-6.922742299999925],[109.32868360000003,-6.921166299999925],[109.33177950000004,-6.919279099999926],[109.33206180000008,-6.916617799999926],[109.33357240000004,-6.917066],[109.33205260000005,-6.914763599999958],[109.33489230000004,-6.913384899999926],[109.33641550000004,-6.9098945],[109.33647920000004,-6.904580499999952],[109.33779150000004,-6.903704599999969],[109.34046940000007,-6.905419299999949],[109.34091190000004,-6.903301699999929],[109.33911510000007,-6.902898799999946],[109.34237680000007,-6.900136299999929],[109.34128620000007,-6.898782299999937],[109.34878960000009,-6.897074199999963],[109.34558760000004,-6.895092699999964],[109.34661960000005,-6.893686199999934],[109.35119140000006,-6.895412199999953],[109.34999220000009,-6.892665699999952],[109.35221510000008,-6.890117499999974],[109.35597990000008,-6.889358899999934],[109.35392,-6.886888899999974],[109.35696470000005,-6.883000899999956],[109.35971110000008,-6.882241399999941],[109.35849760000008,-6.879883199999938],[109.36034070000005,-6.877649],[109.35936230000004,-6.871276399999942],[109.35434650000008,-6.872196],[109.35431270000004,-6.870373699999959],[109.35702080000004,-6.867996199999936],[109.35588880000006,-6.866853799999944],[109.352837,-6.868974699999967],[109.35125020000004,-6.868295799999942],[109.34992590000007,-6.8657044],[109.35056620000006,-6.861691299999961],[109.34381570000005,-6.861509199999944],[109.32136520000006,-6.868796799999927],[109.30606,-6.87205],[109.27277660000004,-6.873353499999951],[109.26845790000004,-6.871521299999927],[109.26838160000005,-6.872523699999931],[109.26303270000005,-6.872294599999975],[109.24640460000006,-6.869471],[109.224861,-6.862946499999964],[109.21777970000005,-6.864474099999939],[109.19260380000009,-6.8605706],[109.17926930000004,-6.855345299999954],[109.16513530000009,-6.845308799999941],[109.16155690000005,-6.844108],[109.16047550000008,-6.848037599999941],[109.15328690000007,-6.857423099999949],[109.15248360000004,-6.863322799999935],[109.14999490000008,-6.865240099999937],[109.14656030000003,-6.8790787],[109.14789310000003,-6.881479299999967],[109.14743630000004,-6.886312799999928],[109.13771060000005,-6.885713499999952],[109.13592530000005,-6.886734399999966],[109.13280490000005,-6.885645799999963],[109.13269810000008,-6.892238099999929],[109.130806,-6.896213899999964],[109.12819520000005,-6.894891399999949],[109.124695,-6.897039099999972],[109.12431990000005,-6.898876099999939],[109.12102770000007,-6.899998299999936],[109.12000020000005,-6.897303099999931],[109.11980340000008,-6.898816599999975],[109.11837950000006,-6.897303499999964],[109.11096830000008,-6.8979489],[109.10894780000007,-6.895000899999957],[109.10619060000005,-6.894627199999945],[109.106537,-6.892704199999969],[109.10252950000006,-6.892189899999948],[109.10247490000006,-6.889890499999979],[109.08370750000006,-6.887602399999935],[109.08129930000007,-6.889297],[109.07739260000005,-6.887848299999973],[109.073082,-6.893223699999965],[109.07327270000008,-6.9000215],[109.07586670000006,-6.907399099999964],[109.07456610000008,-6.912185199999954],[109.07665490000005,-6.919016799999952],[109.07921510000006,-6.919016799999952],[109.08207920000007,-6.927707399999974],[109.08118440000004,-6.9321288],[109.07887820000008,-6.933363099999951],[109.07780120000007,-6.936137799999926],[109.07781220000004,-6.94492],[109.07502080000006,-6.951789099999928],[109.07685860000004,-6.962254399999949],[109.07026580000007,-6.972671599999956],[109.07163860000009,-6.974532599999975],[109.07051270000005,-6.977085399999964],[109.07480620000007,-6.994173],[109.06651690000007,-6.993780399999935],[109.06914520000004,-6.991045899999961],[109.06813,-6.982883199999947],[109.06980640000006,-6.982927299999972],[109.06990560000008,-6.981350199999952],[109.06877960000008,-6.973908199999926],[109.065904,-6.973057099999949],[109.06616040000006,-6.973951899999975],[109.06338080000006,-6.974119199999961],[109.06414860000007,-6.976674],[109.05552680000005,-6.977292899999952],[109.05326850000006,-6.975477199999943],[109.04810340000006,-6.978454499999941],[109.04838560000007,-6.980921199999955],[109.04517810000004,-6.987442899999962],[109.03265540000007,-6.984365099999934],[109.02724760000007,-6.985697399999935],[109.02611120000006,-6.988518899999974],[109.02803130000007,-6.993848299999968],[109.03230270000006,-6.996944099999951],[109.03496510000008,-7.001313599999946],[109.02744620000004,-6.99931],[109.02658850000006,-7.005276599999945],[109.01850130000008,-7.024398699999949],[109.02619170000008,-7.037567099999933],[109.024971,-7.043977199999972],[109.02425390000008,-7.044922299999939],[109.02166070000004,-7.043914099999938],[109.017067,-7.048549099999946],[109.01325990000004,-7.044547],[109.01096350000006,-7.045386699999938],[109.00411230000009,-7.041134799999952],[109.00203710000005,-7.042496599999936],[109.00057980000008,-7.048996899999963],[108.99511720000004,-7.050911799999938],[108.99365240000009,-7.054634],[108.98837280000004,-7.060232099999951],[108.98422240000008,-7.061542899999949],[108.96927650000003,-7.060370399999954],[108.96690020000005,-7.066929399999935],[108.97713470000008,-7.075024499999927],[108.978592,-7.078870199999926],[108.97783660000005,-7.083907499999953],[108.98377230000006,-7.086953599999958],[108.983635,-7.092592199999956],[108.98588570000004,-7.097065899999961],[108.98490910000004,-7.098984199999961],[108.98144540000004,-7.100244499999974],[108.98032380000006,-7.103644299999928],[108.98505410000007,-7.105836799999963],[108.98446660000008,-7.111257],[108.98357390000007,-7.112436199999934],[108.98101050000008,-7.110880299999963],[108.97949220000004,-7.111990899999967],[108.98010920000007,-7.118759199999943],[108.97728730000006,-7.121305399999926],[108.96751410000007,-7.121571899999935],[108.96756750000009,-7.126373199999932],[108.96418770000008,-7.124261299999944],[108.95553590000009,-7.122281499999929],[108.95256810000006,-7.123471699999925],[108.95149230000004,-7.126871],[108.95715330000007,-7.135435499999971],[108.95744330000008,-7.138041399999963],[108.96056370000008,-7.141023099999927],[108.96263120000003,-7.147799899999939],[108.96540840000006,-7.150715299999945],[108.96811680000008,-7.150663299999962],[108.97225190000006,-7.148076899999978],[108.97484590000005,-7.139677],[108.97862250000009,-7.135114099999953],[108.98374940000008,-7.1321396],[108.98999790000005,-7.132078599999943],[109,-7.141698799999972],[109.00901030000006,-7.139523899999972],[109.02560430000005,-7.143114499999967],[109.03645330000006,-7.140364099999942],[109.04228980000005,-7.1435527],[109.04662330000008,-7.150135399999954],[109.05293280000006,-7.150747199999955],[109.05712130000006,-7.149942799999963],[109.059578,-7.146242099999938],[109.060463,-7.141435599999966],[109.05771640000006,-7.138544],[109.05729680000007,-7.13595],[109.05958560000005,-7.130166899999949],[109.06183630000004,-7.128054099999929],[109.06921,-7.12695],[109.07413,-7.11413],[109.07326820000009,-7.124830699999961],[109.082428,-7.135199],[109.08419040000007,-7.147798899999941],[109.08140570000006,-7.155227099999934],[109.06558990000008,-7.170527899999968],[109.05570990000007,-7.184927899999934],[109.05756380000008,-7.1915688],[109.06523060000006,-7.196917099999951],[109.06793850000008,-7.196619599999963],[109.07749450000006,-7.2009214],[109.07861280000009,-7.212334],[109.08027240000007,-7.214994799999943],[109.094149,-7.214980399999945],[109.10764950000004,-7.212598499999956],[109.11032510000007,-7.215053699999942],[109.11136780000004,-7.212907399999949],[109.11334850000009,-7.213099299999953],[109.11639210000004,-7.215315699999962],[109.12042530000008,-7.222411],[109.12815870000009,-7.2269382],[109.132087,-7.231498599999952],[109.13608650000003,-7.232871399999965],[109.13886010000004,-7.238694199999941],[109.14627850000005,-7.242710599999953],[109.14955960000009,-7.246165499999961],[109.15655470000007,-7.246379899999965],[109.15754880000009,-7.244157099999939],[109.16841780000004,-7.239736899999969],[109.17549190000005,-7.239810299999931],[109.17469480000005,-7.250301],[109.16529970000005,-7.248719599999959],[109.16566360000007,-7.255446199999938],[109.162366,-7.262058199999956],[109.16711030000005,-7.268391099999974],[109.17918720000006,-7.2626269],[109.19713590000003,-7.249593199999936],[109.20383450000008,-7.2476124]]]},"properties":{"shapeName":"Tegal","shapeISO":"","shapeID":"22746128B89260019628882","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[133.617309,-2.543844],[133.619995,-2.539538],[133.618958,-2.537069],[133.611969,-2.536428],[133.604584,-2.537803],[133.599213,-2.541187],[133.58577,-2.554739],[133.583603,-2.564563],[133.588516,-2.564282],[133.597733,-2.557162],[133.5993350000001,-2.548369],[133.603226,-2.544353],[133.601791,-2.553769],[133.605179,-2.553253],[133.608551,-2.549816],[133.609802,-2.547744],[133.60842900000011,-2.544696],[133.617309,-2.543844]]],[[[133.62592640000003,-2.493334799999957],[133.6194399000001,-2.493947299999945],[133.61451840000007,-2.501473899999951],[133.61402930000008,-2.505932],[133.61945130000004,-2.511949399999935],[133.62605670000005,-2.515228099999945],[133.63670420000005,-2.524479199999973],[133.6387462,-2.524807599999974],[133.6402892000001,-2.521044599999925],[133.6400393,-2.515768099999946],[133.63537840000004,-2.498295199999973],[133.63216220000004,-2.493340499999931],[133.62592640000003,-2.493334799999957]]],[[[133.690619,-2.543497399999978],[133.69496870000012,-2.538664399999959],[133.69496870000012,-2.529481799999928],[133.682403,-2.500483899999949],[133.67080380000004,-2.492267799999979],[133.65823810000006,-2.492751099999964],[133.65292180000006,-2.498067399999968],[133.65243850000002,-2.509666599999946],[133.65582160000008,-2.5178826],[133.66017130000012,-2.523682199999939],[133.67998650000004,-2.542530799999952],[133.68481950000012,-2.543980699999963],[133.690619,-2.543497399999978]]],[[[133.4399687,-2.485549599999956],[133.43192950000002,-2.4818146],[133.42688120000003,-2.489594599999975],[133.4311977000001,-2.501841699999943],[133.4334249000001,-2.502872699999955],[133.44173810000007,-2.498828699999933],[133.4482819000001,-2.497959799999933],[133.44980740000005,-2.496005799999978],[133.4487547000001,-2.487493699999959],[133.44452920000003,-2.486290699999927],[133.44018270000004,-2.488226599999962],[133.4399687,-2.485549599999956]]],[[[133.33972140000003,-2.423153699999943],[133.33124120000002,-2.425235599999951],[133.32748850000007,-2.4303016],[133.32166140000004,-2.439800599999955],[133.32407160000002,-2.4448657],[133.34141480000005,-2.462213899999938],[133.34330620000003,-2.466346899999962],[133.343901,-2.474750899999947],[133.362068,-2.485594099999958],[133.3732192000001,-2.496285199999932],[133.37590330000012,-2.4966832],[133.37842050000006,-2.486325199999953],[133.37736790000008,-2.476085199999943],[133.3674992000001,-2.446525],[133.3562419000001,-2.437281799999937],[133.3520003000001,-2.431302799999969],[133.33972140000003,-2.423153699999943]]],[[[133.48792590000005,-2.401625199999955],[133.48597360000008,-2.398866199999929],[133.4820989000001,-2.397852199999932],[133.48357840000006,-2.401508199999967],[133.4815191,-2.402657199999965],[133.47390770000004,-2.398289099999943],[133.46696710000003,-2.398615099999972],[133.4630625000001,-2.402306099999976],[133.4579672000001,-2.410828099999947],[133.4665093000001,-2.4239882],[133.47415160000003,-2.4322373],[133.47924590000002,-2.434136299999977],[133.48704120000002,-2.432190399999968],[133.48801680000008,-2.434425399999952],[133.48154910000005,-2.439192399999968],[133.48121420000007,-2.444023399999935],[133.4939968000001,-2.468155599999932],[133.49799340000004,-2.469475699999975],[133.4989690000001,-2.464708599999938],[133.50635150000005,-2.474938699999939],[133.51117180000006,-2.476955799999928],[133.51608310000006,-2.4755168],[133.5303461000001,-2.484253],[133.53612710000004,-2.490693],[133.5369958000001,-2.496672099999955],[133.5386592000001,-2.498852099999965],[133.55153270000005,-2.505698199999927],[133.56442210000012,-2.509614399999975],[133.57008110000004,-2.508980399999928],[133.57294810000008,-2.506745399999943],[133.57906490000005,-2.500023399999975],[133.58055940000008,-2.496448399999963],[133.58335140000008,-2.495491399999935],[133.58478490000005,-2.492270399999938],[133.58937630000003,-2.488486399999942],[133.59382970000001,-2.488715499999955],[133.59439450000002,-2.485847399999955],[133.59192340000004,-2.478891399999952],[133.5936478000001,-2.477570399999934],[133.59134360000007,-2.474866399999939],[133.58722510000007,-2.462456299999928],[133.57598410000003,-2.444302099999959],[133.57398580000006,-2.443497099999945],[133.56728920000012,-2.446655],[133.55171570000005,-2.4423329],[133.53894810000008,-2.433025799999939],[133.53127580000012,-2.435315699999933],[133.52630360000012,-2.432493699999952],[133.52561680000008,-2.429626599999949],[133.519302,-2.423132599999974],[133.505101,-2.413699399999928],[133.49233440000012,-2.407603299999948],[133.48792590000005,-2.401625199999955]]],[[[133.632858,-2.234227],[133.62323,-2.2236],[133.618423,-2.220778],[133.615036,-2.22095],[133.613846,-2.222615],[133.609955,-2.233126],[133.611557,-2.237721],[133.614029,-2.238933],[133.6241000000001,-2.236064],[133.631195,-2.235955],[133.632858,-2.234227]]],[[[133.763291,-2.245447],[133.772262,-2.221611],[133.772095,-2.218164],[133.762589,-2.215054],[133.732132,-2.230091],[133.710907,-2.246963],[133.70256,-2.251903],[133.6904760000001,-2.254709],[133.687393,-2.258671],[133.68641700000012,-2.263041],[133.687958,-2.266541],[133.693741,-2.266034],[133.718536,-2.255873],[133.728088,-2.248527],[133.733231,-2.246464],[133.745941,-2.246417],[133.7575680000001,-2.251128],[133.763291,-2.245447]]],[[[133.759979,-2.183059],[133.7512210000001,-2.181622],[133.73707600000012,-2.175979],[133.733811,-2.176902],[133.730667,-2.181841],[133.728683,-2.198784],[133.723419,-2.206709],[133.7087100000001,-2.218298],[133.689362,-2.222597],[133.686615,-2.224497],[133.685364,-2.22892],[133.686218,-2.231734],[133.692123,-2.234148],[133.699402,-2.241103],[133.704956,-2.24151],[133.709763,-2.23875],[133.7270360000001,-2.223479],[133.739853,-2.215906],[133.747696,-2.209302],[133.752502,-2.207013],[133.760803,-2.206614],[133.775223,-2.188811],[133.778992,-2.18066],[133.777161,-2.179339],[133.7742310000001,-2.17962],[133.766678,-2.182661],[133.759979,-2.183059]]],[[[133.874588,-2.160721],[133.8558660000001,-2.161402],[133.852203,-2.164098],[133.852783,-2.167029],[133.860397,-2.173984],[133.861603,-2.179212],[133.87207,-2.16813],[133.875626,-2.162793],[133.874588,-2.160721]]],[[[133.811188,-2.19929],[133.836487,-2.195859],[133.852966,-2.191325],[133.855713,-2.188738],[133.856689,-2.182306],[133.850082,-2.168576],[133.850082,-2.160652],[133.852371,-2.158644],[133.859528,-2.158127],[133.8698270000001,-2.155087],[133.8731540000001,-2.15296],[133.872513,-2.150952],[133.858887,-2.147155],[133.847259,-2.145709],[133.838852,-2.146858],[133.827286,-2.153798],[133.794556,-2.180152],[133.790451,-2.186982],[133.789245,-2.192554],[133.790115,-2.195828],[133.80047600000012,-2.199111],[133.811188,-2.19929]]],[[[133.8989560000001,-2.134712],[133.9120630000001,-2.132938],[133.914414,-2.131445],[133.928024,-2.118698],[133.92727700000012,-2.114736],[133.924301,-2.111751],[133.914505,-2.107836],[133.892639,-2.112479],[133.890183,-2.11673],[133.889786,-2.123162],[133.892944,-2.133736],[133.8989560000001,-2.134712]]],[[[133.882645,-2.140621],[133.886246,-2.133845],[133.886291,-2.113339],[133.876434,-2.109884],[133.8668060000001,-2.10207],[133.860062,-2.100859],[133.857254,-2.10275],[133.854858,-2.108892],[133.851547,-2.124975],[133.8523560000001,-2.130493],[133.867233,-2.135096],[133.879959,-2.141707],[133.882645,-2.140621]]],[[[133.9331820000001,-2.114166],[133.936264,-2.108195],[133.9359740000001,-2.096472],[133.934418,-2.094862],[133.925674,-2.102606],[133.931,-2.10882],[133.929459,-2.114049],[133.9331820000001,-2.114166]]],[[[133.6783140000001,-3.004281],[133.712982,-3.013584],[133.7519767000001,-3.0094273],[133.76080580000007,-3.006325199999935],[133.7696350000001,-3.005609299999946],[133.77560060000008,-2.999882299999967],[133.7915885000001,-2.992962199999965],[133.80948540000009,-2.982701299999974],[133.865204,-2.955449],[133.916794,-2.935107],[134.074051,-2.86883],[134.13327,-2.839965],[134.172607,-2.852346],[134.173477,-2.84683],[134.1710200000001,-2.83583],[134.162888,-2.815339],[134.154953,-2.789684],[134.145676,-2.768625],[134.14225870000007,-2.751597],[134.133667,-2.730144],[134.128952,-2.70516],[134.12001,-2.683526],[134.108215,-2.663169],[134.096512,-2.63765],[134.09169,-2.617026],[134.083725,-2.603302],[134.080582,-2.594715],[134.076004,-2.574549],[134.071274,-2.509413],[134.071579,-2.480157],[134.073334,-2.466611],[134.072403,-2.444589],[134.0741279,-2.427372],[134.070618,-2.413164799999947],[134.064545,-2.372816],[134.06221,-2.343001],[134.057022,-2.31584],[134.051804,-2.264359],[134.05137600000012,-2.231322],[134.047531,-2.196926],[134.0450740000001,-2.190056],[134.043945,-2.170789],[134.035782,-2.104639],[134.028961,-2.073128],[134.026306,-2.04928],[134.02385,-2.039312],[134.024201,-2.021643],[134.0202183,-2.004573],[134.0187754000001,-2.004920299999981],[133.95491,-2.015363],[133.920914,-2.017726],[133.88224800000012,-2.022638],[133.871658,-1.99195],[133.871384,-1.983577],[133.873581,-1.967275],[133.871781,-1.953518],[133.84166,-1.869704],[133.8373110000001,-1.829576],[133.838623,-1.8189],[133.835922,-1.806983],[133.837173,-1.786097],[133.8429870000001,-1.759451],[133.862427,-1.715178],[133.86203090000004,-1.706232199999931],[133.866135,-1.703227],[133.868805,-1.691626],[133.87290970000004,-1.657191],[133.866333,-1.59665],[133.854675,-1.60004],[133.81425500000012,-1.600373],[133.805191,-1.597668],[133.759613,-1.594587],[133.683823,-1.593963],[133.666183,-1.592452],[133.652313,-1.588053],[133.664185,-1.542674],[133.6658328000001,-1.510543],[133.665894,-1.481404],[133.660462,-1.430841],[133.65965390000008,-1.410196],[133.66174300000011,-1.395271],[133.6628945000001,-1.3641],[133.662933,-1.363143],[133.615021,-1.352732],[133.572128,-1.338049],[133.526154,-1.325678],[133.469757,-1.313133],[133.426636,-1.301435],[133.401154,-1.297806],[133.3344290000001,-1.27542],[133.301666,-1.269298],[133.29318200000012,-1.266131499999972],[133.249207,-1.262354],[133.234177,-1.257846],[133.175156,-1.246119],[133.110382,-1.230866],[133.032135,-1.220504],[133.005432,-1.2156],[132.988235,-1.210531],[132.96933,-1.207765],[132.947418,-1.200426],[132.863998,-1.187797],[132.820908,-1.179425],[132.794418,-1.172111],[132.7319030000001,-1.168663],[132.7126310000001,-1.162801],[132.7088010000001,-1.160487],[132.722748,-1.184011],[132.7233430000001,-1.196706],[132.719894,-1.219046],[132.671997,-1.295482],[132.632797,-1.36194],[132.609588,-1.395311],[132.599853,-1.414569],[132.568054,-1.594052],[132.549866,-1.650772],[132.524521,-1.70524],[132.5167080000001,-1.733414],[132.4967187000001,-1.781363799999951],[132.4871670000001,-1.805134],[132.475021,-1.857744],[132.474457,-1.884792],[132.471329,-1.912633],[132.473007,-1.974391],[132.4844210000001,-2.057899],[132.5055390000001,-2.123839],[132.541596,-2.189893],[132.5671390000001,-2.189853],[132.577103,-2.188116],[132.59108,-2.189534],[132.594727,-2.191198],[132.6106410000001,-2.207515],[132.620117,-2.224529],[132.625427,-2.242122],[132.6231990000001,-2.257717],[132.625671,-2.261452],[132.629532,-2.258684],[132.631592,-2.259371],[132.629211,-2.264265],[132.630203,-2.27076],[132.635422,-2.276503],[132.650681,-2.285981],[132.66835,-2.287219],[132.676285,-2.289226],[132.681137,-2.292093],[132.695618,-2.292761],[132.71257,-2.298666],[132.718857,-2.29862],[132.722824,-2.296005],[132.729843,-2.282589],[132.737503,-2.272683],[132.740341,-2.270096],[132.7529300000001,-2.264721],[132.7648620000001,-2.256651],[132.786667,-2.248517],[132.80928,-2.242155],[132.84266700000012,-2.240152],[132.85568200000012,-2.242493],[132.872894,-2.250066],[132.8826600000001,-2.26012],[132.887939,-2.269889],[132.901199,-2.278273],[132.907928,-2.279982],[132.9413760000001,-2.277698],[132.95393400000012,-2.281994],[132.9549710000001,-2.284807],[132.9598390000001,-2.289637],[132.96406600000012,-2.292395],[132.967835,-2.29244],[132.972946,-2.288468],[132.980347,-2.286043],[132.9908600000001,-2.27544],[133.003372,-2.270129],[133.022446,-2.246057],[133.039337,-2.236547],[133.0516970000001,-2.232901],[133.068161,-2.230294],[133.09787,-2.233067],[133.100876,-2.229159],[133.120529,-2.225041],[133.126831,-2.217496],[133.157715,-2.1979],[133.179809,-2.193953],[133.19470200000012,-2.194169],[133.224014,-2.199186],[133.224884,-2.201139],[133.222839,-2.205744],[133.227753,-2.209018],[133.2309110000001,-2.214997],[133.235931,-2.213323],[133.2501370000001,-2.203353],[133.268036,-2.200275],[133.270935,-2.20108],[133.284073,-2.192377],[133.28624,-2.192259],[133.289566,-2.195361],[133.290894,-2.201856],[133.296677,-2.207201],[133.30542,-2.212021],[133.314545,-2.214417],[133.339401,-2.214216],[133.347946,-2.211501],[133.362595,-2.210613],[133.373749,-2.208296],[133.377731,-2.204207],[133.395249,-2.209252],[133.40156500000012,-2.207279],[133.41358900000012,-2.207151],[133.418075,-2.214279],[133.4258420000001,-2.218412],[133.4275060000001,-2.223179],[133.431793,-2.226344],[133.443207,-2.227645],[133.469589,-2.226801],[133.48027,-2.230644],[133.490173,-2.227866],[133.505829,-2.230542],[133.5167540000001,-2.227972],[133.520874,-2.230604],[133.522812,-2.235027],[133.5249940000001,-2.236465],[133.531632,-2.237387],[133.537766,-2.234636],[133.543716,-2.234409],[133.5448,-2.232057],[133.5600280000001,-2.228908],[133.572784,-2.220584],[133.578735,-2.2118],[133.578796,-2.205938],[133.577072,-2.201741],[133.579239,-2.198874],[133.581528,-2.190597],[133.592911,-2.177859],[133.595367,-2.176249],[133.600021,-2.176366],[133.60553,-2.181901],[133.605163,-2.185158],[133.6012730000001,-2.182915],[133.596298,-2.184118],[133.587769,-2.194621],[133.586807,-2.211229],[133.591507,-2.222319],[133.594376,-2.225647],[133.598496,-2.226804],[133.602341,-2.225764],[133.609711,-2.217902],[133.612686,-2.216527],[133.6232910000001,-2.216815],[133.628494,-2.22027],[133.635605,-2.232454],[133.637894,-2.232851],[133.646545,-2.22878],[133.651855,-2.223614],[133.65741,-2.221723],[133.664612,-2.211094],[133.669769,-2.210125],[133.6739500000001,-2.202716],[133.6766970000001,-2.202146],[133.68013,-2.198066],[133.687393,-2.196926],[133.706696,-2.199347],[133.709091,-2.197909],[133.7123570000001,-2.194354],[133.718063,-2.179075],[133.721619,-2.173213],[133.732773,-2.16489],[133.73346,-2.162538],[133.7291560000001,-2.161326],[133.729248,-2.158495],[133.731216,-2.156215],[133.7354580000001,-2.16024],[133.743988,-2.164961],[133.758087,-2.169102],[133.764435,-2.16996],[133.773651,-2.167671],[133.783493,-2.161935],[133.791672,-2.151504],[133.794998,-2.150048],[133.797806,-2.150572],[133.827515,-2.140474],[133.831512,-2.136339],[133.834381,-2.135823],[133.8376310000001,-2.131689],[133.845093,-2.111403],[133.851242,-2.103727],[133.8514100000001,-2.101366],[133.85791,-2.09725],[133.86348,-2.095458],[133.873856,-2.098912],[133.88829,-2.109205],[133.900192,-2.105531],[133.906922,-2.101279],[133.919769,-2.103529],[133.933334,-2.090041],[133.937302,-2.090474],[133.939453,-2.092401],[133.942337,-2.103084],[133.940048,-2.111469],[133.915558,-2.13604],[133.915787,-2.140961],[133.9145360000001,-2.143449],[133.8963930000001,-2.143786],[133.888946,-2.148436],[133.884125,-2.169467],[133.880203,-2.171865],[133.876434,-2.18462],[133.864548,-2.202251],[133.8595580000001,-2.202822],[133.817261,-2.218476],[133.8135380000001,-2.223261],[133.804153,-2.225533],[133.7849880000001,-2.233622],[133.783402,-2.236585],[133.780365,-2.236878],[133.7794950000001,-2.239764],[133.784149,-2.255738],[133.790054,-2.265046],[133.793716,-2.265498],[133.80362,-2.274705],[133.809647,-2.278124],[133.814056,-2.283216],[133.829056,-2.291898],[133.837128,-2.29282],[133.855621,-2.287607],[133.861511,-2.28037],[133.865402,-2.281229],[133.871246,-2.278252],[133.8807680000001,-2.285687],[133.882141,-2.291177],[133.887466,-2.296414],[133.894623,-2.298078],[133.90802,-2.297108],[133.9292150000001,-2.302352],[133.934296,-2.301321],[133.9387660000001,-2.294545],[133.94114700000011,-2.277828],[133.94006400000012,-2.275295],[133.9367370000001,-2.274608],[133.937882,-2.271216],[133.945496,-2.263924],[133.948746,-2.250491],[133.9469600000001,-2.236525],[133.945007,-2.235494],[133.9403840000001,-2.238706],[133.937118,-2.238534],[133.945465,-2.232219],[133.944427,-2.227109],[133.941345,-2.222396],[133.943909,-2.220849],[133.943283,-2.216136],[133.945404,-2.21487],[133.94722,-2.209931],[133.944824,-2.205851],[133.9468230000001,-2.204594],[133.947433,-2.187814],[133.950577,-2.183336],[133.951431,-2.179256],[133.949249,-2.171043],[133.951401,-2.169894],[133.955383,-2.170879],[133.955673,-2.183109],[133.952255,-2.196895],[133.953629,-2.19931],[133.952377,-2.206773],[133.953537,-2.217691],[133.961609,-2.22964],[133.964584,-2.237898],[133.959854,-2.246248],[133.961288,-2.251602],[133.957916,-2.260603],[133.954727,-2.280649],[133.947296,-2.300405],[133.943115,-2.305055],[133.937225,-2.307119],[133.897888,-2.310832],[133.878479,-2.311223],[133.874252,-2.312599],[133.866409,-2.316959],[133.862869,-2.320985],[133.860748,-2.333097],[133.8722990000001,-2.349785],[133.875031,-2.357049],[133.874634,-2.361201],[133.876465,-2.364303],[133.880249,-2.367062],[133.8898160000001,-2.367757],[133.889984,-2.372814],[133.896744,-2.377064],[133.905914,-2.378963],[133.915131,-2.38334],[133.933563,-2.386052],[133.9403840000001,-2.384848],[133.954636,-2.38566],[133.967682,-2.383425],[133.9874420000001,-2.384815],[133.997406,-2.388152],[134.00085500000012,-2.393181],[133.997009,-2.39424],[133.979431,-2.391528],[133.9751890000001,-2.392216],[133.964005,-2.397636],[133.95857300000011,-2.397636],[133.952347,-2.394905],[133.940842,-2.397249],[133.927521,-2.397016],[133.921722,-2.394257],[133.903,-2.391084],[133.891342,-2.391855],[133.88598600000012,-2.387459],[133.877518,-2.386076],[133.860168,-2.391234],[133.851547,-2.404243],[133.837235,-2.411906],[133.826813,-2.412812],[133.821258,-2.415969],[133.8078,-2.4174],[133.796982,-2.42073],[133.78244,-2.42066],[133.77201800000012,-2.423293],[133.75679,-2.421965],[133.751816,-2.426217],[133.745972,-2.426553],[133.741974,-2.431953],[133.740784,-2.441379],[133.741745,-2.445972],[133.750168,-2.440636],[133.752228,-2.441785],[133.742493,-2.449291],[133.745651,-2.455336],[133.754257,-2.465167],[133.756027,-2.470911],[133.759155,-2.470684],[133.761017,-2.474592],[133.76416,-2.47603],[133.773209,-2.468622],[133.772461,-2.471841],[133.7667540000001,-2.476486],[133.768005,-2.478789],[133.772415,-2.481375],[133.778198,-2.481836],[133.781021,-2.478533],[133.785004,-2.482586],[133.788788,-2.481781],[133.7922820000001,-2.477076],[133.797089,-2.481381],[133.7998500000001,-2.485995],[133.7979580000001,-2.491214],[133.802719,-2.500576],[133.801712,-2.510436],[133.797119,-2.516895],[133.79248,-2.517004],[133.78480500000012,-2.514698],[133.77092,-2.514347],[133.7566680000001,-2.511336],[133.736877,-2.502664],[133.709732,-2.501672],[133.707504,-2.502821],[133.705444,-2.505517],[133.703964,-2.512925],[133.707748,-2.53392],[133.704681,-2.544757],[133.706345,-2.55733],[133.708816,-2.559573],[133.702484,-2.5672],[133.693024,-2.568354],[133.684311,-2.565935],[133.669464,-2.549791],[133.661102,-2.545594],[133.6565700000001,-2.538123],[133.652908,-2.535708],[133.6445460000001,-2.534434],[133.629959,-2.537819],[133.611633,-2.550385],[133.5948790000001,-2.566009],[133.5883020000001,-2.568696],[133.5800170000001,-2.566119],[133.5763250000001,-2.559218],[133.575867,-2.554333],[133.573166,-2.552778],[133.56395,-2.557772],[133.554504,-2.555186],[133.5487670000001,-2.549949],[133.546478,-2.549551],[133.543335,-2.556381],[133.536423,-2.562235],[133.529221,-2.577921],[133.526962,-2.579748],[133.5222920000001,-2.579546499999935],[133.52005010000005,-2.578494699999965],[133.51367430000005,-2.564764599999933],[133.50857910000002,-2.557699499999956],[133.50276810000003,-2.543580399999939],[133.49973220000004,-2.541093299999943],[133.49546060000011,-2.540234299999952],[133.4966512000001,-2.538045299999965],[133.49543070000004,-2.533214299999941],[133.49070230000007,-2.533170199999972],[133.49399720000008,-2.529596199999958],[133.494546,-2.526204199999938],[133.4896037000001,-2.512455099999954],[133.4873765000001,-2.5118861],[133.4847684,-2.515287099999966],[133.48310590000006,-2.513849099999959],[133.485714,-2.508729099999925],[133.48432650000007,-2.507002099999966],[133.4775539000001,-2.509137],[133.4705213000001,-2.517659],[133.47143690000007,-2.5348361],[133.47624130000008,-2.551923199999976],[133.46805010000003,-2.557994199999939],[133.45918810000012,-2.5598311],[133.44632950000005,-2.554278],[133.43336390000002,-2.545903899999928],[133.4161428000001,-2.545000799999968],[133.42576750000012,-2.542113799999925],[133.43249420000006,-2.543026899999973],[133.43923690000008,-2.545604899999944],[133.45145480000008,-2.554043099999944],[133.45619810000005,-2.555363099999965],[133.45863930000007,-2.554612099999929],[133.4596,-2.552595099999962],[133.45848640000008,-2.542816],[133.45993590000012,-2.535507],[133.4498374000001,-2.503938799999958],[133.44790100000012,-2.5032518],[133.4310458000001,-2.506672699999967],[133.427446,-2.517319699999973],[133.42289950000009,-2.521408699999938],[133.41684450000002,-2.532056699999941],[133.41092550000008,-2.5361547],[133.409568,-2.539257699999951],[133.41234410000004,-2.546963699999935],[133.40824140000007,-2.549388699999952],[133.38745040000003,-2.547563599999933],[133.38848810000002,-2.522724499999924],[133.38479640000003,-2.514095399999974],[133.3785574000001,-2.507085299999972],[133.3728983000001,-2.5040013],[133.3601006,-2.491981099999975],[133.346845,-2.484411],[133.320343,-2.451649],[133.310852,-2.444468],[133.298355,-2.441267],[133.2905270000001,-2.435524],[133.270096,-2.430026],[133.261185,-2.425495],[133.25274600000012,-2.424528],[133.2474820000001,-2.418496],[133.244217,-2.417356],[133.223053,-2.413125],[133.21611,-2.413823],[133.213089,-2.41613],[133.209183,-2.423674],[133.19548,-2.431971],[133.172272,-2.431602],[133.154907,-2.437547],[133.14971900000012,-2.43658],[133.129089,-2.438337],[133.10643,-2.460167],[133.104263,-2.461153],[133.099121,-2.459716],[133.094803,-2.461109],[133.07634,-2.478154],[133.060013,-2.486351],[133.05307,-2.491824],[133.04541,-2.501612],[133.0401,-2.513354],[133.04134420000003,-2.514294399999926],[133.195801,-2.644168],[133.369248,-2.778178],[133.38298,-2.791975],[133.43830900000012,-2.826873],[133.499679,-2.856814],[133.5965430000001,-2.936489],[133.6443630000001,-2.964899],[133.6783140000001,-3.004281]]]]},"properties":{"shapeName":"Teluk Bintuni","shapeISO":"","shapeID":"22746128B72327923625551","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[134.4828490000001,-2.859637],[134.4836580000001,-2.857339],[134.479706,-2.852337],[134.475006,-2.858082],[134.479904,-2.862531],[134.4828490000001,-2.859637]]],[[[134.46336340000005,-2.824068199999942],[134.4595643,-2.819664899999964],[134.457565,-2.82354],[134.45976990000008,-2.825911599999927],[134.4622680000001,-2.826138699999944],[134.46336340000005,-2.824068199999942]]],[[[134.38329270000008,-2.531227499999943],[134.379928,-2.527954],[134.3783112000001,-2.523241799999937],[134.37207,-2.526227],[134.370529,-2.531972],[134.372981,-2.541685],[134.3699788,-2.548377399999936],[134.3702134,-2.550941699999953],[134.3760529000001,-2.555697899999927],[134.37954700000012,-2.567647],[134.38723760000005,-2.579079099999944],[134.38986210000007,-2.578681199999949],[134.3926090000001,-2.575578],[134.396088,-2.56134],[134.3940745000001,-2.542552099999966],[134.395676,-2.541232],[134.39137270000003,-2.536519299999952],[134.38999880000006,-2.531978599999945],[134.38329270000008,-2.531227499999943]]],[[[134.3088530000001,-2.500572],[134.30497250000008,-2.482322299999964],[134.301766,-2.485398399999951],[134.30339460000005,-2.497692299999926],[134.306732,-2.502635],[134.3088530000001,-2.500572]]],[[[134.284775,-2.475048],[134.2851710000001,-2.472008],[134.28186,-2.47333],[134.2812960000001,-2.475908],[134.2834620000001,-2.476712],[134.284775,-2.475048]]],[[[134.52342170000009,-2.458229099999926],[134.5247803000001,-2.455708],[134.521286,-2.452840799999933],[134.517105,-2.45674],[134.519165,-2.458178],[134.52342170000009,-2.458229099999926]]],[[[134.537186,-2.437679],[134.531982,-2.43682],[134.530655,-2.43871],[134.537186,-2.437679]]],[[[134.52208480000002,-2.434274599999981],[134.5175484,-2.438480699999957],[134.52224290000004,-2.440556799999968],[134.52761980000002,-2.437396099999944],[134.526535,-2.435663],[134.52208480000002,-2.434274599999981]]],[[[134.52092,-2.42773],[134.522629,-2.42555],[134.5193180000001,-2.425378],[134.518112,-2.42859],[134.52092,-2.42773]]],[[[134.549881,-2.354737],[134.548691,-2.352612],[134.544785,-2.351925],[134.54213,-2.353517],[134.547653,-2.355425],[134.549881,-2.354737]]],[[[134.5056300000001,-2.345696],[134.503616,-2.343915],[134.501785,-2.346213],[134.500931,-2.352355],[134.510208,-2.354778],[134.514847,-2.35305],[134.51651,-2.354551],[134.521377,-2.353284],[134.524063,-2.355645],[134.527618,-2.354441],[134.52755700000012,-2.352026],[134.518387,-2.344781],[134.512436,-2.344954],[134.507233,-2.347361],[134.5056300000001,-2.345696]]],[[[134.526672,-2.312849],[134.531753,-2.310669],[134.532898,-2.308778],[134.531693,-2.306245],[134.528671,-2.305151],[134.525635,-2.301651],[134.518387,-2.300912],[134.520996,-2.308599],[134.524261,-2.313365],[134.526672,-2.312849]]],[[[134.471741,-2.328747],[134.476593,-2.316446],[134.486298,-2.311576],[134.490967,-2.30742],[134.492203,-2.303972],[134.491501,-2.301337],[134.488983,-2.299515],[134.486114,-2.298154],[134.48233,-2.298634],[134.466034,-2.310653],[134.463867,-2.313876],[134.461838,-2.317903],[134.462677,-2.325814],[134.468765,-2.328993],[134.471741,-2.328747]]],[[[134.572779,-2.352411599999925],[134.575928,-2.342061],[134.573227,-2.33648],[134.5731201000001,-2.331198],[134.57705670000007,-2.319311],[134.569321,-2.311207],[134.570007,-2.303563],[134.573257,-2.294897],[134.570557,-2.284839],[134.562836,-2.283628],[134.5617370000001,-2.288395],[134.564499,-2.295468],[134.56060800000012,-2.299485],[134.562378,-2.301611],[134.562042,-2.305111],[134.560104,-2.306206],[134.5626830000001,-2.320968],[134.5599976000001,-2.3258528],[134.553024,-2.330612],[134.551193,-2.333425],[134.55217,-2.3367],[134.564926,-2.338716],[134.568436,-2.343319],[134.5686647000001,-2.347055],[134.565399,-2.353134],[134.559677,-2.353307],[134.557785,-2.355143],[134.560822,-2.358535],[134.562256,-2.363818],[134.55975300000011,-2.369562],[134.557968,-2.371227],[134.5553430000001,-2.371055],[134.550873,-2.36893],[134.544296,-2.369265],[134.536728,-2.36714],[134.53215000000012,-2.367711],[134.5294040000001,-2.369837],[134.523681,-2.366671],[134.511368,-2.367125],[134.504318,-2.362006],[134.50238,-2.363734],[134.50216410000007,-2.366477],[134.504898,-2.371432],[134.5040427,-2.376833599999941],[134.50720200000012,-2.378378],[134.5108031000001,-2.3836698],[134.5205380000001,-2.385858],[134.519974,-2.38821],[134.509781,-2.387406],[134.507324,-2.389242],[134.508758,-2.398261],[134.51283300000011,-2.403317],[134.518097,-2.404926],[134.524506,-2.403152299999931],[134.529373,-2.40488],[134.529098,-2.410388],[134.533737,-2.415164],[134.55142200000012,-2.413561],[134.56150800000012,-2.41782],[134.560303,-2.419422],[134.550919,-2.422354],[134.54588300000012,-2.421712],[134.542267,-2.426714],[134.534881,-2.426706],[134.532318,-2.427855],[134.531403,-2.430551],[134.533798,-2.433084],[134.541306,-2.434349],[134.5461120000001,-2.438148],[134.554993,-2.438092],[134.562103,-2.443555],[134.56420900000012,-2.443555],[134.566391,-2.437069],[134.5682680000001,-2.435341],[134.573944,-2.435169],[134.576569,-2.433513],[134.577026,-2.422251],[134.576218,-2.41961],[134.563507,-2.414546],[134.56080640000005,-2.411036],[134.5600594000001,-2.407762],[134.561157,-2.404659],[134.564239,-2.403627399999948],[134.57341,-2.405363],[134.575012,-2.404097],[134.5744780000001,-2.399212],[134.5765530000001,-2.39847],[134.579239,-2.398298],[134.583252,-2.402431],[134.58541900000012,-2.402666],[134.588287,-2.398414],[134.58627300000012,-2.384457],[134.584381,-2.383019],[134.580429,-2.384738],[134.5782018000001,-2.3837606],[134.57807900000012,-2.375548],[134.572113,-2.363256],[134.572779,-2.352411599999925]]],[[[134.769913,-2.213609],[134.770203,-2.211311],[134.76831,-2.208208],[134.765503,-2.208435],[134.767853,-2.21378],[134.769913,-2.213609]]],[[[134.478348,-2.241295],[134.487183,-2.224268],[134.4946900000001,-2.216541],[134.495132,-2.2139],[134.4854580000001,-2.203513],[134.482819,-2.202265],[134.477722,-2.212618],[134.477676,-2.225467],[134.471908,-2.237658],[134.472046,-2.242017],[134.475265,-2.244294],[134.478348,-2.241295]]],[[[134.7463037000001,-2.160017299999936],[134.7477722000001,-2.157753899999932],[134.74714660000006,-2.155691599999955],[134.73905950000005,-2.147931299999925],[134.7367706000001,-2.148618899999974],[134.74142460000007,-2.158613899999978],[134.744339,-2.160396],[134.7463037000001,-2.160017299999936]]],[[[134.14017610000008,-2.1404254],[134.13560570000004,-2.134744699999942],[134.13691740000002,-2.141043699999955],[134.1387482,-2.141912199999979],[134.14017610000008,-2.1404254]]],[[[134.15249630000005,-2.0860264],[134.151001,-2.07936],[134.14877300000012,-2.078555],[134.1506045000001,-2.086884899999973],[134.15249630000005,-2.0860264]]],[[[134.72876,-2.083645],[134.727615,-2.080832],[134.72869900000012,-2.074165],[134.727448,-2.072555],[134.724869,-2.072383],[134.722519,-2.075595],[134.72287,-2.082669],[134.726822,-2.085653],[134.72876,-2.083645]]],[[[134.156037,-2.069889],[134.156326,-2.067763],[134.154434,-2.066379],[134.152527,-2.06784],[134.154327,-2.071264],[134.156037,-2.069889]]],[[[134.720963,-2.065943],[134.72171,-2.063763],[134.71759,-2.063013],[134.716675,-2.065139],[134.720963,-2.065943]]],[[[134.1371,-2.023631],[134.135956,-2.021677],[134.133957,-2.0226],[134.1352690000001,-2.025178],[134.1371,-2.023631]]],[[[134.74076800000012,-2.052572],[134.7454530000001,-2.04879],[134.7465360000001,-2.041544],[134.7446440000001,-2.030174],[134.7419430000001,-2.02822],[134.740738,-2.018623],[134.738678,-2.016841],[134.728424,-2.022406],[134.7252810000001,-2.026024],[134.729706,-2.03516],[134.731888,-2.046422],[134.736877,-2.051884],[134.74076800000012,-2.052572]]],[[[134.1590880000001,-2.024678],[134.158112,-2.015949],[134.151123,-2.00296],[134.149796,-2.004797],[134.1519320000001,-2.012956],[134.14827,-2.026335],[134.148621,-2.029609],[134.151428,-2.033978],[134.147995,-2.036791],[134.151047,-2.049781],[134.153626,-2.05386],[134.156372,-2.054547],[134.157974,-2.050069],[134.155319,-2.031969],[134.1563410000001,-2.026858],[134.15885900000012,-2.026976],[134.1590880000001,-2.024678]]],[[[134.4129180000001,-2.042523],[134.4073029000001,-2.035739399999954],[134.407455,-2.022126],[134.40516660000003,-2.014889499999924],[134.406067,-2.004206],[134.404663,-2.000091],[134.389328,-1.993172],[134.373489,-1.992243],[134.36013800000012,-2.000114],[134.355927,-2.010038],[134.34523020000006,-2.025479799999971],[134.339859,-2.044151],[134.3261414000001,-2.062524099999962],[134.31749,-2.071761],[134.31424,-2.080608],[134.31463660000009,-2.083312099999944],[134.319565,-2.0869295],[134.323914,-2.086133],[134.32775830000003,-2.088196],[134.327591,-2.091018],[134.325073,-2.094979399999943],[134.3224335000001,-2.094917099999975],[134.317337,-2.089002],[134.315216,-2.089228],[134.31099,-2.093127],[134.31092850000005,-2.099277599999937],[134.31471250000004,-2.100254799999959],[134.31723020000004,-2.0984726],[134.3194122000001,-2.099168799999973],[134.320725,-2.101176299999963],[134.3233643000001,-2.101239899999939],[134.33361820000005,-2.106241],[134.3351268,-2.108570899999961],[134.336426,-2.113649],[134.3359679,-2.119166899999925],[134.33403,-2.123075],[134.334549,-2.134671],[134.340744,-2.1455889],[134.340744,-2.153983],[134.348495,-2.167135],[134.35112,-2.166972],[134.35374450000006,-2.158178799999973],[134.358444,-2.157265],[134.36119070000007,-2.154911899999945],[134.369659,-2.143252],[134.372787,-2.130506],[134.378799,-2.12022],[134.3811333000001,-2.118493599999965],[134.37917830000004,-2.108819799999935],[134.37981490000004,-2.105670599999939],[134.38381960000004,-2.102824899999973],[134.389038,-2.103222],[134.391723,-2.096166],[134.383865,-2.089437],[134.38328500000011,-2.083811],[134.3917540000001,-2.076745],[134.39324990000011,-2.078816199999949],[134.39576670000008,-2.0784723],[134.39662170000008,-2.0758855],[134.401199,-2.07641],[134.40509,-2.072845],[134.399475,-2.066695],[134.3970806000001,-2.066061499999932],[134.407028,-2.044007],[134.409546,-2.044188],[134.4107973,-2.046195099999977],[134.4126275000001,-2.045390499999939],[134.4129180000001,-2.042523]]],[[[134.705475,-1.987998],[134.70256040000004,-1.9839191],[134.69844060000003,-1.983512499999961],[134.703476,-1.989545499999963],[134.705887,-1.990242],[134.705475,-1.987998]]],[[[134.703209,-1.979604699999925],[134.7032928000001,-1.976673499999947],[134.70106510000005,-1.975922899999944],[134.69998170000008,-1.977768399999945],[134.7007751000001,-1.979948299999933],[134.703209,-1.979604699999925]]],[[[134.14563,-1.957986],[134.144653,-1.955055],[134.1409450000001,-1.957127],[134.142883,-1.958447],[134.14563,-1.957986]]],[[[134.14971850000006,-1.942761099999927],[134.1482850000001,-1.941323],[134.146638,-1.942988],[134.14744630000007,-1.945348199999955],[134.15013120000003,-1.945746299999939],[134.14971850000006,-1.942761099999927]]],[[[134.13685610000005,-1.896141399999976],[134.139252,-1.891085],[134.13679500000012,-1.883269],[134.13513180000007,-1.881948799999975],[134.132797,-1.886318],[134.13417,-1.888498],[134.13497970000003,-1.897063],[134.13685610000005,-1.896141399999976]]],[[[134.211136,-1.806553],[134.20845,-1.80299],[134.206345,-1.804654],[134.210236,-1.808734],[134.211136,-1.806553]]],[[[134.6358801,-3.5426395],[134.7268014000001,-3.408591299999955],[134.72592940000004,-3.363769199999979],[134.7035059000001,-3.345510099999956],[134.65721470000005,-2.961710699999969],[134.62980960000004,-2.741607699999975],[134.63089270000012,-2.741558599999962],[134.624391,-2.699685099999954],[134.59881970000004,-2.4893491],[134.57048080000004,-2.476417099999935],[134.5697937000001,-2.472564],[134.571854,-2.464585],[134.56761170000004,-2.461709299999939],[134.5666351000001,-2.459122399999956],[134.5592957,-2.457449699999927],[134.5565491000001,-2.458427],[134.53067040000008,-2.452035499999965],[134.52987670000005,-2.453871],[134.53291320000005,-2.457154299999956],[134.53239440000004,-2.460483099999976],[134.5338901,-2.462780499999951],[134.54418970000006,-2.467149],[134.550324,-2.472322],[134.55107010000006,-2.4748544],[134.545639,-2.475081399999965],[134.53784180000002,-2.470993499999963],[134.52758790000007,-2.470479199999943],[134.5210571,-2.467250599999943],[134.518722,-2.467486],[134.51431270000012,-2.471502799999939],[134.51287890000003,-2.477536],[134.51586910000003,-2.479254199999957],[134.520157,-2.476043],[134.52255250000007,-2.475988599999937],[134.5353851000001,-2.481106699999941],[134.5454559000001,-2.477722599999936],[134.556439,-2.4781893],[134.561264,-2.481293899999969],[134.569458,-2.482677],[134.567627,-2.487562],[134.56527710000012,-2.488991499999941],[134.5570984000001,-2.485545899999977],[134.551025,-2.485076],[134.54856870000003,-2.486569199999963],[134.54736330000003,-2.489671899999962],[134.55314640000006,-2.492602099999942],[134.552628,-2.495135],[134.5501709,-2.4959311],[134.547302,-2.495244],[134.53746030000002,-2.488062899999932],[134.517014,-2.48546],[134.511856,-2.486148],[134.48732,-2.509742],[134.48571890000005,-2.5126189],[134.489609,-2.51687],[134.48388710000006,-2.517838899999958],[134.473068,-2.527084],[134.467361,-2.538799],[134.46422110000003,-2.549062399999968],[134.462227,-2.551721199999974],[134.45951800000012,-2.552124],[134.462555,-2.555001],[134.4630737000001,-2.557469799999978],[134.45903,-2.5716],[134.4596100000001,-2.593997],[134.463745,-2.599686],[134.47015380000005,-2.602218499999935],[134.47250370000006,-2.606758599999978],[134.47389160000012,-2.614113],[134.46879580000007,-2.618989],[134.468689,-2.621404199999972],[134.469253,-2.62732],[134.47259520000011,-2.635134899999969],[134.472137,-2.641973],[134.474136,-2.646225],[134.484634,-2.657088],[134.49162300000012,-2.65962],[134.493454,-2.662604],[134.49569540000005,-2.677929799999959],[134.49191280000002,-2.682713],[134.4906006000001,-2.688339699999972],[134.49731450000002,-2.697592499999928],[134.4980011,-2.700812799999937],[134.4946440000001,-2.715395],[134.498138,-2.724874],[134.507126,-2.733331],[134.5083313,-2.735972199999935],[134.50233460000004,-2.753829],[134.50274660000002,-2.7587137],[134.50590520000003,-2.766872399999954],[134.513748,-2.772453],[134.5125587000001,-2.782276],[134.521042,-2.797445],[134.52002,-2.805369],[134.5170449000001,-2.813637],[134.5175018000001,-2.820303899999942],[134.5106508,-2.842872],[134.50892620000002,-2.837420499999951],[134.49806300000012,-2.846945499999947],[134.49754410000003,-2.849016499999948],[134.50001340000006,-2.849533299999962],[134.4965820000001,-2.852638],[134.49411010000006,-2.853895399999942],[134.49011230000008,-2.851715799999965],[134.488098,-2.852168],[134.48764,-2.854529],[134.490112,-2.858319],[134.49624630000005,-2.863782199999946],[134.494812,-2.867337199999952],[134.48937990000002,-2.863654599999961],[134.484787,-2.862969],[134.481842,-2.865861],[134.475449,-2.867533],[134.46373,-2.868641],[134.455597,-2.867141],[134.452332,-2.857607],[134.44390870000007,-2.849557199999936],[134.4449310000001,-2.847548699999948],[134.4469299000001,-2.847204899999952],[134.44876080000006,-2.843016099999943],[134.449219,-2.837725],[134.44755140000007,-2.833545899999933],[134.4494324000001,-2.827674899999977],[134.44926450000003,-2.823133899999959],[134.44668710000008,-2.817852099999925],[134.44856260000006,-2.816358799999932],[134.44839480000007,-2.814115499999957],[134.450394,-2.813491],[134.45388790000004,-2.816765299999929],[134.456374,-2.816764099999943],[134.45646670000008,-2.814585],[134.45205690000012,-2.811021599999947],[134.440719,-2.809114],[134.434418,-2.798658],[134.4290932,-2.795213399999966],[134.426453,-2.800032499999929],[134.4245605000001,-2.794172499999945],[134.4247894,-2.783715699999959],[134.42289730000005,-2.779003099999954],[134.41526790000012,-2.773603699999967],[134.408508,-2.772619],[134.40742550000004,-2.770438899999931],[134.4119415,-2.754816299999959],[134.4108430000001,-2.749642],[134.40431200000012,-2.737748],[134.4045258000001,-2.732700299999976],[134.4084170000001,-2.722994],[134.40629580000007,-2.720119],[134.4000092000001,-2.723673299999973],[134.39535790000002,-2.711268099999927],[134.3808590000001,-2.696322],[134.388413,-2.696383],[134.3797,-2.676448],[134.372376,-2.677245],[134.370941,-2.67294],[134.3686996,-2.672056299999952],[134.3676898000001,-2.669700099999943],[134.36743730000012,-2.661032599999942],[134.37440450000008,-2.654385899999966],[134.3754874000001,-2.647494],[134.3698273000001,-2.649149399999942],[134.3669586000001,-2.648516299999926],[134.361114,-2.643117],[134.3573914000001,-2.635935099999926],[134.353668,-2.633403],[134.3549200000001,-2.630879],[134.350861,-2.629667],[134.3508,-2.626972299999977],[134.35687270000005,-2.6269705],[134.360306,-2.625424],[134.360474,-2.621118],[134.351822,-2.616053],[134.34980740000003,-2.608700599999963],[134.34167480000008,-2.607488399999966],[134.341736,-2.600713],[134.33668520000003,-2.593468],[134.335083,-2.588303],[134.327347,-2.587028],[134.323181,-2.590539],[134.3202063000001,-2.591045],[134.319229,-2.587889],[134.320358,-2.583293],[134.32260110000004,-2.582208599999944],[134.33342,-2.584052],[134.336792,-2.580894499999943],[134.33995060000007,-2.5812922],[134.34172100000012,-2.578714],[134.33725,-2.57515],[134.332611,-2.568023],[134.334549,-2.558832],[134.338547,-2.559411],[134.34076430000005,-2.555094099999963],[134.33322140000007,-2.549985899999967],[134.328415,-2.549236],[134.32766660000004,-2.5463596],[134.32577560000004,-2.545618799999943],[134.32525570000007,-2.547797099999968],[134.32044980000012,-2.547391199999936],[134.32061770000007,-2.545383],[134.3187256000001,-2.543890699999963],[134.32090760000006,-2.541014],[134.31134,-2.536818],[134.31460570000002,-2.533832299999972],[134.31912230000012,-2.535324299999957],[134.32163960000003,-2.532339],[134.3209534,-2.528892799999937],[134.3164220000001,-2.522751],[134.313965,-2.522688],[134.311951,-2.519007],[134.301529,-2.52136],[134.29592900000011,-2.520664],[134.286987,-2.522158],[134.2898560000001,-2.518937],[134.310577,-2.516021699999953],[134.31486510000002,-2.512746799999945],[134.31761170000004,-2.514881399999979],[134.319626,-2.514022],[134.3195035000001,-2.509192199999973],[134.3165894000001,-2.5081606],[134.31498720000002,-2.509653299999968],[134.3082733000001,-2.507745499999942],[134.30072010000004,-2.508315599999946],[134.29866,-2.507168],[134.296707,-2.496706],[134.29374710000002,-2.497596599999952],[134.290695,-2.495961],[134.29057310000007,-2.489583699999969],[134.2883911,-2.487458199999935],[134.28530880000005,-2.486943],[134.28421020000008,-2.484527799999967],[134.28044180000006,-2.484699399999954],[134.28038020000008,-2.480276799999956],[134.275391,-2.478893],[134.26760880000006,-2.482394399999976],[134.26486340000008,-2.481011],[134.2662352000001,-2.479347399999938],[134.27224730000012,-2.478378299999974],[134.27562000000012,-2.474181],[134.276581,-2.468961],[134.271607,-2.464303],[134.26925660000006,-2.464412],[134.26800550000007,-2.468092699999943],[134.266052,-2.466249],[134.26547240000002,-2.464240599999926],[134.268677,-2.459817],[134.2680964000001,-2.452011499999969],[134.26580820000004,-2.4518307],[134.2636414000001,-2.454761],[134.26054450000004,-2.455222],[134.2585907,-2.445969099999957],[134.2588806000001,-2.443789],[134.26264950000007,-2.439880799999969],[134.2624207,-2.435629399999925],[134.25376890000007,-2.4303386],[134.25091620000012,-2.431551399999933],[134.25010680000003,-2.433441899999934],[134.24851990000002,-2.442804299999978],[134.24484230000007,-2.442921399999932],[134.2403107,-2.434012899999971],[134.23073550000004,-2.4260458],[134.2254878000001,-2.424112399999956],[134.215637,-2.423776],[134.214539,-2.418891],[134.20794650000005,-2.407340799999929],[134.202957,-2.403027],[134.202728,-2.400964],[134.205933,-2.398033],[134.202438,-2.394243],[134.2050630000001,-2.387694],[134.20454410000002,-2.3826375],[134.202484,-2.383325],[134.198883,-2.389703],[134.1968230000001,-2.388898],[134.19647220000002,-2.381887699999936],[134.194244,-2.380676],[134.1934357,-2.37694],[134.19422910000003,-2.3721728],[134.1930850000001,-2.36879],[134.18747,-2.364476],[134.18736300000012,-2.36017],[134.18580630000008,-2.358100399999955],[134.182373,-2.360849],[134.17642200000012,-2.355395],[134.1743775000001,-2.340217],[134.17421,-2.323337],[134.16333,-2.312475],[134.160004,-2.300698],[134.1571960000001,-2.296555],[134.1586761000001,-2.289381699999979],[134.154831,-2.278057],[134.15826420000008,-2.269734599999936],[134.156708,-2.264624],[134.1525269000001,-2.258988899999963],[134.155502,-2.256293],[134.1600790000001,-2.255893799999967],[134.1593928000001,-2.253878],[134.1529236,-2.253018899999972],[134.1520088000001,-2.250540199999932],[134.15737920000004,-2.247391899999968],[134.15634160000002,-2.24561],[134.15130610000006,-2.244913399999973],[134.148849,-2.242553],[134.139572,-2.24146],[134.138931,-2.239045],[134.139618,-2.233997],[134.13774150000006,-2.229219399999977],[134.14671260000011,-2.228306],[134.14752110000006,-2.224978299999975],[134.140411,-2.223025],[134.1368112,-2.217432199999962],[134.142182,-2.215897],[134.149384,-2.203557],[134.14961240000002,-2.199477699999932],[134.14817790000006,-2.197524599999952],[134.143478,-2.196367],[134.1427917000001,-2.194412899999975],[134.14697230000002,-2.193552199999942],[134.14737,-2.191256],[134.14398190000009,-2.180744899999979],[134.1477661,-2.175923099999977],[134.14770510000005,-2.172874699999966],[134.1467894000001,-2.170288399999947],[134.1419678000001,-2.169483199999945],[134.143341,-2.167357],[134.145523,-2.167185],[134.1454010000001,-2.158691],[134.141281,-2.15662],[134.132065,-2.157191],[134.129425,-2.156151],[134.12776180000003,-2.1575897],[134.1279449000001,-2.160113299999978],[134.13121030000002,-2.167413],[134.129898,-2.169132],[134.12353560000008,-2.169303699999944],[134.120895,-2.163841],[134.11842350000006,-2.143678399999942],[134.1145782000001,-2.128744599999948],[134.116745,-2.114271],[134.1150206000001,-2.109558899999968],[134.107969,-2.103573099999949],[134.10693360000005,-2.100767099999928],[134.108307,-2.098469],[134.11346460000004,-2.100874099999942],[134.1146665000001,-2.098806],[134.10427860000004,-2.074164199999927],[134.1071928,-2.061473],[134.10420290000002,-2.0529068],[134.1073,-2.050157],[134.10981750000008,-2.044186099999934],[134.1177063,-2.040168799999947],[134.11988810000003,-2.041949599999953],[134.121369,-2.039825],[134.1212,-2.028563],[134.1230164000001,-2.025696099999948],[134.12513730000012,-2.026436599999954],[134.128006,-2.032588],[134.13166750000005,-2.030922699999962],[134.13029480000012,-2.019950399999971],[134.1312561000001,-2.017426499999942],[134.13886980000007,-2.010306699999944],[134.14241030000005,-2.002726099999961],[134.140122,-1.982989],[134.136276,-1.976377],[134.138382,-1.966435199999978],[134.14295960000004,-1.966036699999961],[134.14506530000006,-1.9673028],[134.1446228000001,-1.969772299999931],[134.14627080000002,-1.9719611],[134.151764,-1.970459],[134.153748,-1.966035],[134.1528320000001,-1.963448],[134.14729310000007,-1.962879199999975],[134.14602650000006,-1.9608086],[134.14163210000004,-1.960636499999964],[134.138382,-1.963794],[134.134537,-1.956784],[134.136185,-1.946209],[134.133896,-1.938331],[134.1329651000001,-1.927638899999977],[134.1277920000001,-1.913501],[134.121018,-1.885279],[134.1223755000001,-1.8766587],[134.1206055,-1.875220499999955],[134.1226044000001,-1.871538799999939],[134.121567,-1.864302],[134.1198422000001,-1.862802],[134.1179657,-1.863723799999946],[134.1140289000001,-1.868436199999962],[134.10739200000012,-1.867804099999944],[134.1063683000001,-1.863200799999959],[134.1017303000001,-1.862106399999959],[134.10360720000006,-1.855900899999938],[134.102357,-1.853775199999973],[134.103943,-1.851993],[134.10691740000004,-1.851992199999927],[134.10679630000004,-1.849812899999961],[134.10244750000004,-1.843599],[134.099579,-1.833948],[134.102707,-1.815612],[134.099091,-1.804576],[134.101257,-1.79923],[134.100845,-1.796932],[134.096787,-1.791415],[134.098999,-1.783192],[134.099686,-1.778081],[134.0985260000001,-1.773197],[134.100128,-1.766874],[134.09292410000012,-1.768191799999954],[134.084488,-1.769735],[134.06514,-1.770069],[134.044754,-1.768458],[134.00329460000012,-1.771539799999971],[134.0057508000001,-1.825036399999931],[134.0057508000001,-1.8619738],[134.00304730000005,-1.862061199999971],[134.00461410000003,-1.910031699999934],[134.0187754000001,-2.004920299999981],[134.0202183,-2.004573],[134.024201,-2.021643],[134.02385,-2.039312],[134.026306,-2.04928],[134.028961,-2.073128],[134.035782,-2.104639],[134.043945,-2.170789],[134.0450740000001,-2.190056],[134.047531,-2.196926],[134.05137600000012,-2.231322],[134.051804,-2.264359],[134.057022,-2.31584],[134.06221,-2.343001],[134.064545,-2.372816],[134.070618,-2.413164799999947],[134.0741279,-2.427372],[134.072403,-2.444589],[134.073334,-2.466611],[134.071579,-2.480157],[134.071274,-2.509413],[134.076004,-2.574549],[134.080582,-2.594715],[134.083725,-2.603302],[134.09169,-2.617026],[134.096512,-2.63765],[134.108215,-2.663169],[134.12001,-2.683526],[134.128952,-2.70516],[134.133667,-2.730144],[134.14225870000007,-2.751597],[134.145676,-2.768625],[134.154953,-2.789684],[134.162888,-2.815339],[134.1710200000001,-2.83583],[134.173477,-2.84683],[134.172607,-2.852346],[134.176071,-2.860866],[134.1772,-2.860749],[134.1931,-2.902854],[134.204849,-2.950433],[134.2334750000001,-3.043154],[134.292648,-3.137738],[134.297882,-3.143202],[134.296997,-3.144476],[134.323089,-3.184835],[134.279465,-3.240215],[134.2564850000001,-3.282468],[134.237625,-3.31085],[134.22426380000002,-3.350043199999959],[134.25141440000004,-3.402180499999929],[134.283875,-3.414061],[134.3356480000001,-3.436207],[134.3852230000001,-3.462114],[134.41301,-3.474069],[134.487427,-3.489891],[134.525162,-3.505782],[134.6358801,-3.5426395]]],[[[134.1990876000001,-1.755987599999969],[134.19981330000007,-1.749477499999955],[134.19763180000007,-1.7494225],[134.196792,-1.753846],[134.19776950000005,-1.757118899999966],[134.1990876000001,-1.755987599999969]]],[[[134.23471730000006,-1.7424162],[134.2299650000001,-1.737641],[134.2216797000001,-1.7341325],[134.2198486000001,-1.735806199999956],[134.22102360000008,-1.739963899999964],[134.219848,-1.742612899999926],[134.21682740000006,-1.7404017],[134.21064760000002,-1.739073799999971],[134.2087705,-1.743214799999976],[134.20648190000009,-1.741832099999954],[134.20465090000005,-1.737924699999951],[134.2023160000001,-1.73816],[134.2025000000001,-1.754424],[134.20130920000008,-1.757355099999927],[134.1950836000001,-1.7634436],[134.1828918000001,-1.7833817],[134.18003850000002,-1.795973499999945],[134.173607,-1.804923199999962],[134.15899600000012,-1.819476599999973],[134.151733,-1.822408],[134.1481470000001,-1.82913],[134.146637,-1.852350099999967],[134.14961240000002,-1.859477799999979],[134.14985660000002,-1.867808799999978],[134.14689640000006,-1.880165599999941],[134.146744,-1.89046],[134.142578,-1.896204],[134.1474908,-1.901141899999971],[134.13681050000002,-1.902980499999956],[134.135284,-1.908444],[134.1379700000001,-1.913618],[134.14453130000004,-1.909419499999956],[134.145966,-1.911725099999956],[134.14825370000005,-1.911318299999948],[134.150482,-1.907013],[134.15751650000004,-1.9198838],[134.1594238,-1.9347186],[134.1640625000001,-1.942126499999972],[134.16499380000005,-1.949832699999945],[134.16732790000003,-1.9506924],[134.17195130000005,-1.9444323],[134.169479,-1.933741],[134.174774,-1.919375],[134.1729587000001,-1.912182499999972],[134.1774597000001,-1.913395399999956],[134.18191530000001,-1.910754],[134.18508910000003,-1.900287699999978],[134.1857758000001,-1.892191899999943],[134.1902308000001,-1.883830899999964],[134.191086,-1.888392],[134.18731690000004,-1.900350799999956],[134.1881843000001,-1.903745399999934],[134.19104,-1.90443],[134.19258120000006,-1.902132299999948],[134.201798,-1.871502],[134.20130870000003,-1.867227699999944],[134.21072390000006,-1.837127899999928],[134.21482850000007,-1.829547199999979],[134.209549,-1.814604],[134.20680240000002,-1.809882799999968],[134.20480380000004,-1.80954],[134.20054630000004,-1.826952699999936],[134.19927940000002,-1.829022299999963],[134.19672730000002,-1.826723499999957],[134.198914,-1.807297],[134.19519,-1.801264],[134.195236,-1.793448],[134.20704650000005,-1.781723499999941],[134.209351,-1.78678],[134.2090154000001,-1.799425],[134.214951,-1.796666],[134.221512,-1.789203],[134.22682190000012,-1.777071799999931],[134.23098760000005,-1.776266199999952],[134.233993,-1.763512],[134.237595,-1.757134],[134.23963930000002,-1.746496],[134.23471730000006,-1.7424162]]]]},"properties":{"shapeName":"Teluk Wondama","shapeISO":"","shapeID":"22746128B48004392618078","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[109.93407560000009,-7.202319899999964],[109.93321990000004,-7.204401],[109.93694540000007,-7.209562199999937],[109.93921040000004,-7.207487199999946],[109.94367920000008,-7.214615499999979],[109.95046240000005,-7.217272099999946],[109.95915670000005,-7.232631399999946],[109.96196940000004,-7.233086299999968],[109.97065880000008,-7.240064899999936],[109.97264240000004,-7.243650899999977],[109.97727640000005,-7.245741599999974],[109.99478150000004,-7.260952],[109.99559020000004,-7.265901099999951],[109.99819940000003,-7.2696557],[109.99414060000004,-7.283901199999946],[109.99451450000004,-7.289053399999943],[109.99643710000004,-7.291914],[109.99609410000005,-7.3064512],[109.99839810000009,-7.3134687],[110.00592530000006,-7.318985199999929],[110.01840050000004,-7.331639399999972],[110.02807450000006,-7.345180299999981],[110.02990710000006,-7.345098599999972],[110.02910380000009,-7.345575599999961],[110.03179960000006,-7.348999],[110.040937,-7.355792399999928],[110.04319850000007,-7.360800499999925],[110.05682970000004,-7.372366799999952],[110.07051270000005,-7.379513599999939],[110.07107730000007,-7.383642499999951],[110.07420930000006,-7.385716299999956],[110.07860570000008,-7.383388],[110.09346830000004,-7.387827699999946],[110.12072760000007,-7.390310299999953],[110.12771610000004,-7.387120699999969],[110.13916020000005,-7.388498799999979],[110.14235690000004,-7.384894399999951],[110.14679720000004,-7.383592599999929],[110.15998080000008,-7.386076899999978],[110.17295070000006,-7.381120199999941],[110.17783360000004,-7.381101599999965],[110.18133550000005,-7.383735599999966],[110.18910980000004,-7.383852],[110.18951850000008,-7.381742399999951],[110.19278220000007,-7.379983299999935],[110.20042410000008,-7.382358],[110.20361880000007,-7.385767599999951],[110.20506810000006,-7.385670799999957],[110.20519260000009,-7.387106399999936],[110.20798490000004,-7.387387299999943],[110.211853,-7.385492299999953],[110.21629260000009,-7.388108799999941],[110.21328730000005,-7.397174299999961],[110.21511840000005,-7.402225499999929],[110.21640010000004,-7.395047599999941],[110.22241980000007,-7.391552399999966],[110.224968,-7.386577099999954],[110.22340390000005,-7.379038299999934],[110.22625730000004,-7.3833642],[110.231781,-7.382142499999929],[110.23484040000005,-7.378994399999954],[110.23642730000006,-7.372738799999979],[110.249527,-7.369105299999944],[110.25526470000005,-7.370933099999945],[110.25739290000007,-7.377395099999944],[110.26285550000006,-7.380932799999925],[110.26729670000009,-7.381232099999977],[110.27037170000006,-7.379441],[110.27148440000008,-7.374975199999938],[110.27632140000009,-7.372427399999935],[110.276619,-7.370873],[110.28134920000008,-7.369307],[110.28274540000007,-7.366207599999939],[110.28388980000005,-7.366775],[110.28655670000006,-7.364037799999949],[110.29408260000008,-7.361518799999942],[110.296669,-7.359317699999963],[110.300293,-7.359781699999928],[110.30006410000004,-7.358685],[110.30370330000005,-7.3578367],[110.30531310000003,-7.355882099999974],[110.31670380000008,-7.352604399999962],[110.31596380000008,-7.351463299999978],[110.31763460000008,-7.351204399999972],[110.32486730000005,-7.341312399999936],[110.32212070000008,-7.337801],[110.31915280000004,-7.336973199999932],[110.31953430000004,-7.331074199999932],[110.326294,-7.327409699999976],[110.32662960000005,-7.321257599999967],[110.32801820000009,-7.320250499999929],[110.32811740000005,-7.313995299999931],[110.33000180000005,-7.311940599999957],[110.32756040000004,-7.311532899999975],[110.32515720000004,-7.308985199999938],[110.31808470000004,-7.312251099999969],[110.31347660000006,-7.308788799999945],[110.31753540000005,-7.3047804],[110.32562690000009,-7.303716899999927],[110.32821270000005,-7.301510299999961],[110.32715610000008,-7.29604],[110.32371520000004,-7.292522399999939],[110.32177730000006,-7.287512299999946],[110.31435390000007,-7.282029099999932],[110.310409,-7.280850799999939],[110.31163,-7.27978],[110.30925150000007,-7.275617799999964],[110.30541270000003,-7.275305899999978],[110.296524,-7.269326199999966],[110.28308870000006,-7.253715499999942],[110.277832,-7.251750399999935],[110.27108770000007,-7.252026],[110.27050780000008,-7.245968799999957],[110.27353670000008,-7.238886799999932],[110.27355190000009,-7.235425899999939],[110.27245280000005,-7.233765199999937],[110.27162450000009,-7.234804399999973],[110.266696,-7.232304699999929],[110.26713150000006,-7.2303334],[110.26401410000005,-7.224468799999954],[110.26656150000008,-7.217670599999963],[110.26545980000009,-7.218521399999929],[110.25999170000006,-7.216543499999943],[110.25765220000005,-7.217167399999937],[110.25843210000005,-7.214091399999973],[110.25463250000007,-7.211704299999951],[110.25231660000009,-7.203900199999964],[110.251734,-7.197381599999972],[110.25862930000005,-7.1985153],[110.25765730000006,-7.195728799999927],[110.25263850000005,-7.1915471],[110.25213860000008,-7.188829799999951],[110.24856550000004,-7.187400299999979],[110.24636670000007,-7.184113099999934],[110.23884580000004,-7.187660199999925],[110.22982790000009,-7.187575299999935],[110.22104640000003,-7.184079099999963],[110.21352390000004,-7.185625],[110.21213090000003,-7.182265299999926],[110.20938060000009,-7.181189099999926],[110.20826220000004,-7.177191199999982],[110.20304290000007,-7.177544199999943],[110.19596170000005,-7.175015199999962],[110.19237120000008,-7.172216],[110.19125460000004,-7.169274299999927],[110.19271670000006,-7.164734099999976],[110.184929,-7.151666899999952],[110.18301220000006,-7.151041],[110.18054020000005,-7.152506399999936],[110.17770790000009,-7.148547399999927],[110.16895180000006,-7.143429799999979],[110.16523720000004,-7.145297899999946],[110.16135880000007,-7.143416099999968],[110.15230830000007,-7.147280799999976],[110.14602430000008,-7.143264099999953],[110.14514230000009,-7.141494],[110.14610790000006,-7.138618299999962],[110.14449070000006,-7.136816799999963],[110.14042220000005,-7.138053199999945],[110.13973070000009,-7.135482899999943],[110.14209860000005,-7.133471699999973],[110.141776,-7.128582399999971],[110.14396680000004,-7.131067499999972],[110.14477810000005,-7.125347599999941],[110.14632840000007,-7.124978899999974],[110.14813580000003,-7.126747],[110.15054830000008,-7.125690899999938],[110.15358610000004,-7.127846199999965],[110.15898420000008,-7.126136199999962],[110.16121240000007,-7.116722699999968],[110.16609590000007,-7.112819199999933],[110.17279750000006,-7.110942399999942],[110.17386990000006,-7.111727499999972],[110.17605580000009,-7.1093648],[110.17913920000007,-7.110272599999973],[110.19013710000007,-7.107908399999928],[110.19337940000008,-7.105717699999957],[110.190926,-7.105134599999928],[110.19088140000008,-7.101439899999946],[110.18879960000004,-7.102798299999961],[110.187693,-7.102047199999959],[110.19153830000005,-7.096129],[110.193648,-7.095440699999926],[110.19068780000003,-7.092087599999957],[110.19332,-7.088854599999934],[110.19109220000007,-7.084936499999969],[110.193442,-7.080612499999972],[110.19026820000005,-7.079590699999926],[110.18694940000006,-7.080924399999958],[110.18317680000007,-7.077573299999926],[110.18265890000004,-7.079550599999948],[110.17715330000004,-7.082434],[110.17742030000005,-7.086071899999979],[110.17569610000004,-7.089889399999947],[110.17677950000007,-7.093841899999973],[110.17383040000004,-7.098587599999973],[110.17533740000005,-7.101208199999974],[110.170333,-7.097521699999959],[110.16720980000008,-7.099831599999959],[110.16527330000008,-7.096218699999952],[110.16343070000005,-7.097236899999928],[110.16504870000006,-7.097869799999955],[110.16490980000009,-7.0992997],[110.16356440000004,-7.098684299999945],[110.16154030000007,-7.100074699999936],[110.15746240000004,-7.098809499999959],[110.15491630000008,-7.1001447],[110.15246740000003,-7.098625399999946],[110.14475770000007,-7.100520199999949],[110.14402770000004,-7.098027199999933],[110.14182280000006,-7.097099299999968],[110.13926930000008,-7.098552599999948],[110.13825140000006,-7.096677299999953],[110.13315960000006,-7.097286699999927],[110.132285,-7.099342499999977],[110.13016450000003,-7.09606],[110.12780010000006,-7.0978287],[110.12510520000006,-7.097271599999942],[110.12500830000005,-7.095381199999963],[110.12042480000008,-7.092880199999968],[110.11782350000004,-7.095240599999954],[110.109954,-7.095169899999973],[110.108057,-7.098751399999969],[110.10439910000008,-7.098436399999969],[110.103216,-7.100420699999972],[110.10240350000004,-7.099592199999961],[110.09503170000005,-7.104669],[110.09454680000005,-7.107147899999973],[110.09130550000003,-7.106791399999963],[110.08840720000006,-7.110264799999925],[110.08595630000008,-7.108990899999981],[110.08370210000004,-7.113110499999948],[110.08463290000009,-7.11451],[110.08261870000007,-7.114927299999977],[110.07659150000006,-7.120904899999971],[110.06894740000007,-7.121362099999942],[110.05985660000005,-7.119020299999931],[110.057873,-7.121374299999957],[110.05564880000009,-7.121102299999961],[110.05505650000003,-7.123587899999961],[110.04996490000008,-7.124355799999933],[110.05091,-7.12757],[110.04862980000007,-7.125975099999948],[110.04875190000007,-7.128176699999926],[110.04712680000006,-7.127944399999933],[110.04597470000004,-7.130251399999963],[110.04403690000004,-7.1296176],[110.04312130000005,-7.130561799999953],[110.04426570000004,-7.131500699999947],[110.04099270000006,-7.132849199999953],[110.04096990000005,-7.134729799999945],[110.03892520000005,-7.133927799999981],[110.03659060000007,-7.138819199999944],[110.03437810000008,-7.138762899999961],[110.033577,-7.140756099999976],[110.03223420000006,-7.139221599999928],[110.02952650000009,-7.144196199999953],[110.02778630000006,-7.143790199999955],[110.02645110000009,-7.145261299999959],[110.02735140000004,-7.146751399999971],[110.02315520000008,-7.149237099999937],[110.02185060000005,-7.148029299999962],[110.01963810000007,-7.150241299999948],[110.01785290000004,-7.149114],[110.017663,-7.1519786],[110.01611950000006,-7.150906199999952],[110.01376340000007,-7.153262599999948],[110.01232910000004,-7.152781899999979],[110.01250460000006,-7.154724599999952],[110.00996660000004,-7.154802299999972],[110.01003590000005,-7.157727099999931],[110.00725620000009,-7.1590361],[110.00737440000006,-7.160351399999968],[109.99886550000008,-7.163233799999944],[109.99734320000005,-7.166605799999957],[109.99275270000004,-7.168986599999926],[109.99364470000006,-7.171944799999949],[109.98612230000003,-7.173158],[109.98155410000004,-7.1799989],[109.97476960000006,-7.1832184],[109.96390130000009,-7.191396699999927],[109.95639490000008,-7.194727399999977],[109.94862180000007,-7.195230399999957],[109.93407560000009,-7.202319899999964]]]},"properties":{"shapeName":"Temanggung","shapeISO":"","shapeID":"22746128B35926503636707","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[124.21988680000004,-10.162870399999974],[124.33717350000006,-10.172236399999974],[124.33827970000004,-10.171705199999963],[124.33718870000007,-10.16994189999997],[124.33879090000005,-10.169120799999973],[124.3493118,-10.1727323],[124.39569090000009,-10.169714899999974],[124.40694430000008,-10.165517799999975],[124.4221649000001,-10.157201799999939],[124.4425735000001,-10.144156499999951],[124.46619420000002,-10.126080499999944],[124.47769170000004,-10.121556299999952],[124.48745730000007,-10.111754399999938],[124.4897003000001,-10.107342699999947],[124.4977798000001,-10.102911],[124.50831610000012,-10.091991399999927],[124.5181808000001,-10.076649699999962],[124.52604680000002,-10.060687099999939],[124.53295140000012,-10.028885799999955],[124.53720090000002,-10.0218553],[124.54834750000009,-10.010613399999954],[124.55558010000004,-10.005706799999928],[124.5720596000001,-10.00324919999997],[124.58262630000002,-10.003396],[124.58820340000011,-10.000218399999937],[124.5953369,-9.9886141],[124.60392,-9.978925699999934],[124.62311560000012,-9.965730699999938],[124.63199620000012,-9.96257019999996],[124.63779450000004,-9.959216099999935],[124.64122010000006,-9.955216399999927],[124.65556330000004,-9.948062899999968],[124.664032,-9.930308299999979],[124.67259980000006,-9.920203199999946],[124.68350220000002,-9.9215088],[124.68891910000002,-9.917834299999981],[124.69862360000002,-9.914415399999939],[124.72295380000003,-9.895109199999979],[124.732132,-9.8911266],[124.73524470000007,-9.887933699999962],[124.74480440000002,-9.885442699999942],[124.75075530000004,-9.881637599999976],[124.75567630000012,-9.873446499999943],[124.75346370000011,-9.871388399999944],[124.75445560000003,-9.865822799999933],[124.76279450000004,-9.84937],[124.76798250000002,-9.8439064],[124.77434540000002,-9.840859399999943],[124.78633880000007,-9.8176632],[124.80010220000008,-9.800285299999928],[124.8095856000001,-9.791879699999981],[124.80813720000003,-9.789514],[124.80753620000007,-9.787015099999962],[124.80941010000004,-9.78072359999993],[124.80285990000004,-9.774744899999973],[124.7998113000001,-9.7744266],[124.79774510000004,-9.770868],[124.79711910000003,-9.761212299999954],[124.79938510000011,-9.756020499999977],[124.79810670000006,-9.74825439999995],[124.8061384,-9.725375799999938],[124.81347660000006,-9.6862154],[124.82134440000004,-9.6691542],[124.82077290000007,-9.657965199999978],[124.81564190000006,-9.654792],[124.80436710000004,-9.652857799999936],[124.8000336,-9.648950599999978],[124.79890440000008,-9.645082499999944],[124.79633510000008,-9.64391809999995],[124.79349650000006,-9.639150399999949],[124.7927605000001,-9.632952399999965],[124.79655730000002,-9.628774],[124.80054470000005,-9.619526899999926],[124.79814150000004,-9.614273099999934],[124.79343440000002,-9.611839199999963],[124.78834390000009,-9.600248399999941],[124.78565380000009,-9.598192],[124.78189770000006,-9.598907499999939],[124.78007080000009,-9.5969641],[124.77418470000009,-9.598431799999958],[124.76466550000009,-9.596907399999964],[124.76223750000008,-9.597764],[124.74415560000011,-9.619893599999955],[124.73143010000001,-9.629591],[124.72773740000002,-9.629309599999942],[124.71881870000004,-9.63731],[124.713562,-9.638592699999947],[124.7029265000001,-9.636627699999963],[124.7040869000001,-9.633854],[124.69977570000003,-9.628317799999934],[124.696941,-9.6294772],[124.69612170000005,-9.6282336],[124.696233,-9.630591799999934],[124.69275410000012,-9.632092499999942],[124.6881409,-9.632213599999943],[124.68475340000009,-9.629962],[124.68349460000002,-9.63237],[124.68202210000004,-9.630444499999953],[124.68007530000011,-9.631401099999948],[124.67871050000008,-9.629756199999974],[124.67340090000005,-9.6299505],[124.67341610000005,-9.628368399999943],[124.67138860000011,-9.627846],[124.67227170000001,-9.627116199999932],[124.66344450000008,-9.627036499999974],[124.66400150000004,-9.625989],[124.66086580000001,-9.620685599999945],[124.65251920000003,-9.617872199999965],[124.6496591,-9.612310299999933],[124.6521378000001,-9.608085599999981],[124.64937590000011,-9.607057599999962],[124.6485748,-9.603129399999943],[124.6469052000001,-9.602957599999968],[124.64813230000004,-9.599594099999933],[124.64238260000002,-9.595393499999943],[124.64290690000007,-9.593639099999962],[124.6439514000001,-9.594413799999927],[124.64304350000009,-9.591052],[124.644533,-9.591007299999944],[124.6452637000001,-9.584867499999973],[124.63842010000008,-9.587733299999968],[124.63378910000006,-9.5861244],[124.63167570000007,-9.587455699999964],[124.62702940000008,-9.594440499999962],[124.6261062000001,-9.599144],[124.61910250000005,-9.602720199999965],[124.6175766,-9.610826499999973],[124.61550140000008,-9.613420499999961],[124.60924530000011,-9.613047599999959],[124.60654450000004,-9.6165066],[124.59995270000002,-9.619179699999961],[124.58459470000003,-9.6162634],[124.58042150000006,-9.616856599999949],[124.57424930000002,-9.621250199999963],[124.5720596000001,-9.631142599999976],[124.56716920000008,-9.635361699999976],[124.56557470000007,-9.638742499999978],[124.5592117000001,-9.6436634],[124.55405430000008,-9.6454887],[124.54412840000009,-9.644220299999972],[124.54055790000007,-9.646913499999926],[124.5397339000001,-9.653457699999933],[124.531044,-9.660242099999948],[124.52564240000004,-9.661553399999946],[124.51982880000003,-9.66067789999994],[124.51713560000007,-9.662955299999965],[124.51414490000002,-9.6604023],[124.51045990000011,-9.659619299999974],[124.50860590000002,-9.655961],[124.50251770000011,-9.653432799999962],[124.49266050000006,-9.645553599999971],[124.45752720000007,-9.634625399999948],[124.4550858,-9.625352799999973],[124.45800780000002,-9.625340499999936],[124.4564362000001,-9.6188288],[124.45911410000008,-9.617230399999926],[124.46097570000006,-9.613461499999971],[124.45781710000006,-9.6158924],[124.457634,-9.614692699999978],[124.45581820000007,-9.614794699999948],[124.452095,-9.619071899999938],[124.45053860000007,-9.617286699999966],[124.44886780000002,-9.618675199999927],[124.44757840000011,-9.614717499999927],[124.43270110000003,-9.6052437],[124.42431640000007,-9.594265899999925],[124.42258450000008,-9.597668599999963],[124.40927120000003,-9.599973699999964],[124.40285490000008,-9.594639799999982],[124.393837,-9.593546899999978],[124.39004520000003,-9.598154099999931],[124.3856125000001,-9.594903899999963],[124.38144680000005,-9.596386],[124.37878420000004,-9.593401899999947],[124.37641910000002,-9.593691799999931],[124.37500000000011,-9.591336299999966],[124.37042240000005,-9.590206099999932],[124.36176300000011,-9.597077399999932],[124.35435490000009,-9.58784769999994],[124.35095980000006,-9.586401],[124.34784700000012,-9.588142399999981],[124.34092710000004,-9.587035199999946],[124.33461000000011,-9.588808099999937],[124.329628,-9.59198189999995],[124.31779480000012,-9.592434899999944],[124.31147770000007,-9.580241199999932],[124.31250760000012,-9.575738],[124.30861660000005,-9.571824099999958],[124.30473330000007,-9.5734119],[124.2976761000001,-9.567954099999952],[124.28858950000006,-9.568489099999965],[124.28523260000009,-9.567399],[124.28287510000007,-9.569705],[124.2801895,-9.56988339999998],[124.27608490000011,-9.566308],[124.27598570000009,-9.5644665],[124.27416230000006,-9.564397799999938],[124.27274320000004,-9.559856399999944],[124.26826480000011,-9.558881799999938],[124.26686860000007,-9.556642499999953],[124.26717380000002,-9.552794499999948],[124.25898740000002,-9.55215839999994],[124.25744630000008,-9.550321599999961],[124.25411990000009,-9.550849],[124.24679560000004,-9.546346699999958],[124.24005130000012,-9.5455665],[124.2363663000001,-9.54319479999998],[124.23352050000005,-9.543973],[124.23142240000004,-9.546529799999973],[124.229538,-9.5585632],[124.226654,-9.560344699999973],[124.22453310000003,-9.558510799999965],[124.22319030000006,-9.5531082],[124.21688080000001,-9.5470038],[124.21315,-9.545453099999975],[124.21475220000002,-9.538206099999968],[124.22348780000004,-9.530114199999957],[124.23127750000003,-9.526482599999952],[124.23851780000007,-9.525724399999945],[124.23542780000002,-9.522694599999966],[124.233902,-9.518273399999941],[124.2292404000001,-9.518082599999957],[124.22442630000012,-9.514202099999977],[124.22290040000007,-9.511330599999951],[124.223938,-9.5062437],[124.21934510000006,-9.505717299999958],[124.21533970000007,-9.502107599999931],[124.21207430000004,-9.502093299999956],[124.20978550000007,-9.500197399999934],[124.20626830000003,-9.491769799999929],[124.20321650000005,-9.489876699999968],[124.20188910000002,-9.48512459999995],[124.1898804000001,-9.4831667],[124.19040680000012,-9.493169799999976],[124.19544220000012,-9.504859899999929],[124.19301610000002,-9.5115108],[124.19038390000003,-9.509695],[124.18560030000003,-9.511410699999942],[124.18460850000008,-9.508821499999954],[124.180809,-9.5079718],[124.178154,-9.50407219999994],[124.17410280000001,-9.5030518],[124.17263790000004,-9.500207899999964],[124.17136380000011,-9.500355699999943],[124.17006680000009,-9.49554919999997],[124.16160580000007,-9.491601899999978],[124.1598206000001,-9.488701799999944],[124.1553421000001,-9.487962699999969],[124.15507510000009,-9.483573899999953],[124.14571380000007,-9.476291599999968],[124.14247130000001,-9.475486699999976],[124.13952640000002,-9.477602],[124.13184360000002,-9.477059399999973],[124.12181090000001,-9.47238539999995],[124.12081150000006,-9.477156599999944],[124.1175766,-9.478671099999929],[124.11701970000001,-9.484322499999962],[124.12399290000008,-9.49324889999997],[124.12678530000005,-9.49261569999993],[124.12918850000005,-9.494708],[124.129425,-9.49842549999994],[124.1337357000001,-9.500659],[124.13514710000004,-9.507363299999952],[124.13723760000005,-9.510120399999948],[124.13913730000002,-9.510173799999961],[124.14310450000005,-9.520294199999967],[124.14303590000009,-9.528925899999933],[124.14614110000002,-9.532840699999952],[124.15349580000009,-9.536221499999954],[124.15505980000012,-9.539197],[124.154007,-9.542472799999928],[124.15814210000008,-9.552185099999974],[124.15750880000007,-9.55708119999997],[124.15212250000002,-9.556970599999943],[124.15165710000008,-9.561425199999974],[124.14704130000007,-9.5650654],[124.14132690000008,-9.562242499999968],[124.13771820000011,-9.557033499999932],[124.12018580000006,-9.552840199999935],[124.1163788,-9.5564003],[124.1112518000001,-9.567206399999975],[124.10118870000008,-9.57314969999993],[124.09515380000005,-9.580325099999982],[124.08496090000006,-9.581698399999937],[124.07842260000007,-9.586087199999952],[124.0786438,-9.589642499999968],[124.08153530000004,-9.59234719999995],[124.082283,-9.596067399999981],[124.08673090000002,-9.603204699999935],[124.0863647000001,-9.607568699999945],[124.0892563000001,-9.610076],[124.08949280000002,-9.620077099999946],[124.08551750000004,-9.629320899999925],[124.07358090000002,-9.63567779999994],[124.06825450000008,-9.636458699999935],[124.060134,-9.6419832],[124.05354910000005,-9.647455099999945],[124.0535794000001,-9.652143499999966],[124.05469830000004,-9.657929899999942],[124.057339,-9.660333299999934],[124.05579030000001,-9.663279699999975],[124.05816560000005,-9.667920199999969],[124.06770150000011,-9.675444599999935],[124.069911,-9.679855399999951],[124.07873350000011,-9.688216499999953],[124.0796385000001,-9.691563299999927],[124.09107010000002,-9.693337399999962],[124.09237960000007,-9.697258599999941],[124.08997410000006,-9.704495699999939],[124.08533080000007,-9.707877499999938],[124.08466480000004,-9.709880899999973],[124.08586,-9.7127],[124.09004030000006,-9.713292399999943],[124.09123230000012,-9.718354199999965],[124.08733370000004,-9.7314825],[124.087471,-9.735912299999939],[124.078392,-9.744448699999964],[124.07167820000006,-9.747270599999979],[124.069252,-9.750848799999972],[124.0672684000001,-9.7586851],[124.0683441000001,-9.761929499999951],[124.07595060000006,-9.770958899999926],[124.083725,-9.793019299999969],[124.09161380000012,-9.800057399999957],[124.09394070000008,-9.808859799999937],[124.09146880000003,-9.818854299999941],[124.08491520000007,-9.829876899999931],[124.086113,-9.8363266],[124.08524320000004,-9.844125799999972],[124.09116360000007,-9.86131949999998],[124.08927920000008,-9.874028199999941],[124.0919037000001,-9.880419699999948],[124.09013370000002,-9.893723499999965],[124.08431240000004,-9.902590799999928],[124.081398,-9.923272099999963],[124.0816651,-9.9277935],[124.08594510000012,-9.932302499999935],[124.08756260000007,-9.948446299999944],[124.08480830000008,-9.956395199999974],[124.08668520000003,-9.960665699999936],[124.08530420000011,-9.964184699999976],[124.08822630000009,-9.967960399999981],[124.09471130000009,-9.971282],[124.0957413000001,-9.975580199999968],[124.09735870000009,-9.976533899999936],[124.10046390000002,-9.976179099999968],[124.10397340000009,-9.972996699999953],[124.10829930000011,-9.975145299999951],[124.11648560000003,-9.973422099999937],[124.12500000000011,-9.975980799999945],[124.12863920000007,-9.985453599999971],[124.13694,-9.986316699999975],[124.14568230000009,-9.994746599999928],[124.14830250000011,-9.999778099999958],[124.14941410000006,-10.008597399999928],[124.1557236000001,-10.01121139999998],[124.16490170000009,-10.017784099999972],[124.16475680000008,-10.021117199999935],[124.16286470000011,-10.022003199999972],[124.15146640000012,-10.017588599999954],[124.14507290000006,-10.017216699999949],[124.142601,-10.020134],[124.1425858,-10.023497599999928],[124.1512375000001,-10.040494899999942],[124.15657040000008,-10.042901099999938],[124.1636734000001,-10.0435419],[124.17641450000008,-10.055556299999978],[124.18162540000003,-10.058173199999942],[124.18769840000004,-10.069543799999963],[124.19644930000004,-10.07896519999997],[124.20850370000005,-10.086496299999965],[124.208519,-10.089647299999967],[124.203453,-10.093544],[124.1990128000001,-10.100134799999978],[124.20018010000001,-10.102372199999934],[124.20265960000006,-10.103120799999942],[124.20191950000003,-10.109667799999954],[124.20794680000006,-10.109615299999973],[124.21141820000003,-10.111269],[124.21222690000002,-10.1160231],[124.21523290000005,-10.118435899999952],[124.20866390000003,-10.129214299999944],[124.2059097,-10.1306906],[124.206337,-10.132627499999955],[124.20963290000009,-10.133528699999943],[124.2149505000001,-10.129932399999973],[124.21781160000012,-10.12984659999995],[124.22183990000008,-10.1359634],[124.22005460000003,-10.137790699999925],[124.21417240000005,-10.137666699999954],[124.21511840000005,-10.143470799999932],[124.21905520000007,-10.146212599999956],[124.22377780000011,-10.142903299999944],[124.22587580000004,-10.144702],[124.22743990000004,-10.154854799999953],[124.21988680000004,-10.162870399999974]]]},"properties":{"shapeName":"Timor Tengah Selatan","shapeISO":"","shapeID":"22746128B44628276351041","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[124.79243630000008,-9.018230699999947],[124.79016880000006,-9.019434],[124.7853622,-9.019103099999938],[124.77323910000007,-9.031806],[124.76564030000009,-9.032834],[124.760704,-9.0365257],[124.75724790000004,-9.041523899999959],[124.7297592000001,-9.058787299999949],[124.72451020000005,-9.058456399999955],[124.71550750000006,-9.05066679999993],[124.70609280000008,-9.050552399999958],[124.6974335000001,-9.053628899999978],[124.6946564000001,-9.059628499999974],[124.69144440000002,-9.07866189999993],[124.68651580000005,-9.093949299999963],[124.68162540000003,-9.1033926],[124.67024230000004,-9.118059099999925],[124.65866090000009,-9.125324299999932],[124.65367130000004,-9.125630399999977],[124.64921570000001,-9.123972],[124.63934330000006,-9.128340699999967],[124.62285610000004,-9.148052199999938],[124.61588290000009,-9.153420399999959],[124.58744050000007,-9.161649699999941],[124.57267,-9.164363799999933],[124.57249450000006,-9.166555399999936],[124.5697861000001,-9.166396199999951],[124.56882480000002,-9.167370799999958],[124.57067110000003,-9.166634599999952],[124.56987,-9.1677847],[124.57259370000008,-9.168132799999967],[124.56909180000002,-9.16930489999993],[124.56116490000011,-9.177765799999975],[124.55340580000006,-9.178070099999957],[124.5528107,-9.172939299999939],[124.55120850000003,-9.172484399999973],[124.5418701000001,-9.176331499999947],[124.53870390000009,-9.176181799999938],[124.5303345000001,-9.186431899999945],[124.50606540000001,-9.17611979999998],[124.50170140000012,-9.176199899999972],[124.49755860000005,-9.179184],[124.49172210000006,-9.1779213],[124.48566440000002,-9.171961799999963],[124.481102,-9.171968499999934],[124.476073,-9.174389299999973],[124.47805320000009,-9.175957299999936],[124.48077280000007,-9.191734499999939],[124.47923730000002,-9.195444899999927],[124.48294070000009,-9.197701499999937],[124.47757530000001,-9.199957199999972],[124.4760238,-9.203377199999977],[124.4685548000001,-9.208106899999962],[124.466107,-9.22398],[124.4685386000001,-9.228117199999929],[124.46568820000005,-9.231721599999958],[124.46726560000002,-9.238317399999971],[124.46449530000007,-9.242380199999957],[124.46492150000006,-9.249802099999954],[124.46205750000001,-9.250809699999934],[124.45823240000004,-9.261923699999954],[124.454547,-9.265814699999964],[124.45613160000005,-9.275096],[124.45541770000011,-9.283691],[124.4583593000001,-9.289760499999943],[124.462028,-9.293462099999942],[124.4626204000001,-9.299509199999932],[124.45941620000008,-9.304760299999941],[124.4554879000001,-9.306281799999965],[124.45449570000005,-9.308636599999943],[124.44665780000003,-9.306336199999976],[124.44454050000002,-9.31125419999995],[124.44019380000009,-9.314477199999942],[124.43841850000001,-9.333797799999957],[124.43645330000004,-9.333314599999937],[124.43504930000006,-9.334749899999963],[124.43360110000003,-9.3313859],[124.4309909000001,-9.3339481],[124.42957270000011,-9.332233899999949],[124.42664610000008,-9.331827199999964],[124.421911,-9.336260899999957],[124.41489350000006,-9.335581599999955],[124.411153,-9.338205399999936],[124.40939520000006,-9.336943399999939],[124.403484,-9.340038499999935],[124.40434280000011,-9.3421863],[124.4020911,-9.345548299999962],[124.40107190000003,-9.352177],[124.38972170000011,-9.360569899999973],[124.37988410000003,-9.356882499999926],[124.38042980000012,-9.35857889999994],[124.37873220000006,-9.361186499999974],[124.3799580000001,-9.36348309999994],[124.3778913000001,-9.365282499999978],[124.37831090000009,-9.370528499999978],[124.37651990000006,-9.374864199999934],[124.375249,-9.3743978],[124.37411310000005,-9.376265299999943],[124.37857350000002,-9.3798423],[124.38185190000002,-9.389500899999973],[124.37907560000008,-9.393312099999946],[124.38039690000005,-9.396768099999974],[124.3777933,-9.399348799999927],[124.37186670000006,-9.401762799999972],[124.36545210000008,-9.402016799999956],[124.37287930000002,-9.407436899999936],[124.37402440000005,-9.412044],[124.36680120000005,-9.419486899999981],[124.35581250000007,-9.418552699999964],[124.354266,-9.419110299999943],[124.35357180000005,-9.421771399999955],[124.34984760000009,-9.423747899999967],[124.34851930000002,-9.435218899999938],[124.35406840000007,-9.44255819999995],[124.35796750000009,-9.442904799999951],[124.36205210000003,-9.44612619999998],[124.3620704000001,-9.450783],[124.36497580000002,-9.458918899999958],[124.363435,-9.461585299999967],[124.36152430000004,-9.461298499999941],[124.35654810000005,-9.464095],[124.35487530000012,-9.469388],[124.3569017000001,-9.471765499999947],[124.3553045000001,-9.4765523],[124.35658830000011,-9.481808599999965],[124.35478010000008,-9.4852363],[124.34965410000007,-9.485578699999962],[124.34216040000001,-9.482833099999937],[124.33830740000008,-9.48655539999993],[124.33219090000011,-9.485643399999958],[124.31617070000004,-9.495889599999941],[124.30141490000005,-9.493531399999938],[124.296753,-9.502717899999936],[124.292905,-9.501493299999936],[124.29151170000011,-9.50308089999993],[124.2869296,-9.503748899999948],[124.28127430000006,-9.501337199999966],[124.27812460000007,-9.502931199999978],[124.27957130000004,-9.489153899999963],[124.28237090000005,-9.485263],[124.28397040000004,-9.477858],[124.2882356,-9.472548399999937],[124.28646450000008,-9.468679599999973],[124.28693360000011,-9.463830899999948],[124.28461590000006,-9.462797099999932],[124.28359180000007,-9.458185599999979],[124.28699060000008,-9.451211],[124.28128650000008,-9.440637299999935],[124.27422780000006,-9.434078299999953],[124.27424570000005,-9.432477799999958],[124.27646120000009,-9.431421599999965],[124.2765078000001,-9.4289568],[124.27566460000003,-9.4248252],[124.27329620000012,-9.424041399999965],[124.27397310000003,-9.420365],[124.27107520000004,-9.414586199999974],[124.27160850000007,-9.412365499999964],[124.26981830000011,-9.411251599999957],[124.26760860000002,-9.412133299999937],[124.26670980000006,-9.407024799999931],[124.262801,-9.40395559999996],[124.2609629000001,-9.39566579999996],[124.25213240000005,-9.3923386],[124.24611730000004,-9.384952399999975],[124.23961310000004,-9.382163699999978],[124.23501150000004,-9.374446899999953],[124.230229,-9.375391699999966],[124.2173054000001,-9.365631099999973],[124.21218130000011,-9.367828],[124.21094010000002,-9.370021599999973],[124.20502220000003,-9.370662799999934],[124.203017,-9.3778032],[124.19714240000008,-9.378909799999974],[124.19247380000002,-9.377869399999952],[124.19006790000003,-9.383861099999933],[124.18555820000006,-9.387406299999952],[124.17382520000001,-9.390545599999939],[124.17224550000003,-9.393174699999975],[124.16819380000004,-9.39445059999997],[124.16810590000011,-9.396705399999973],[124.1718859,-9.400308799999948],[124.161184,-9.412637],[124.162185,-9.418980099999942],[124.15471680000007,-9.422485499999937],[124.150134,-9.421909],[124.149953,-9.427272699999946],[124.14384050000001,-9.424188399999935],[124.134078,-9.426480499999968],[124.12831010000002,-9.41657829999997],[124.1263494000001,-9.416132699999935],[124.12480530000005,-9.410666799999944],[124.1199332000001,-9.406708599999945],[124.1164238,-9.4099896],[124.11270880000006,-9.406704499999933],[124.11074620000011,-9.409993199999974],[124.10777790000009,-9.410011599999962],[124.09750440000005,-9.408785699999953],[124.09590850000006,-9.406016199999954],[124.09323880000011,-9.409268399999974],[124.09311680000008,-9.4144773],[124.09538270000007,-9.417348899999979],[124.1006546000001,-9.417942099999948],[124.10601810000003,-9.421359099999961],[124.10851290000005,-9.428285599999981],[124.1111145000001,-9.430354099999931],[124.11753080000005,-9.430725099999961],[124.1219559000001,-9.4338093],[124.1242218000001,-9.433559399999979],[124.12420650000001,-9.437008799999944],[124.12994380000009,-9.439621899999963],[124.13285070000006,-9.440270399999974],[124.1342926000001,-9.438443199999938],[124.13612360000002,-9.442625],[124.13990780000006,-9.443249699999967],[124.1398163,-9.445640599999933],[124.14158630000009,-9.443966799999941],[124.14392850000002,-9.44555379999997],[124.14455410000005,-9.447958899999946],[124.14276120000011,-9.450643499999956],[124.14510350000012,-9.45288949999997],[124.14749150000011,-9.453145],[124.15467070000011,-9.448689499999944],[124.162262,-9.452081699999951],[124.16661070000009,-9.455765699999972],[124.17853550000007,-9.474827799999957],[124.18337250000002,-9.47470379999993],[124.18535610000004,-9.480470699999955],[124.18866730000002,-9.480890299999942],[124.1898804000001,-9.4831667],[124.20188910000002,-9.48512459999995],[124.20321650000005,-9.489876699999968],[124.20626830000003,-9.491769799999929],[124.20978550000007,-9.500197399999934],[124.21207430000004,-9.502093299999956],[124.21533970000007,-9.502107599999931],[124.21934510000006,-9.505717299999958],[124.223938,-9.5062437],[124.22290040000007,-9.511330599999951],[124.22442630000012,-9.514202099999977],[124.2292404000001,-9.518082599999957],[124.233902,-9.518273399999941],[124.23542780000002,-9.522694599999966],[124.23851780000007,-9.525724399999945],[124.23127750000003,-9.526482599999952],[124.22348780000004,-9.530114199999957],[124.21475220000002,-9.538206099999968],[124.21315,-9.545453099999975],[124.21688080000001,-9.5470038],[124.22319030000006,-9.5531082],[124.22453310000003,-9.558510799999965],[124.226654,-9.560344699999973],[124.229538,-9.5585632],[124.23142240000004,-9.546529799999973],[124.23352050000005,-9.543973],[124.2363663000001,-9.54319479999998],[124.24005130000012,-9.5455665],[124.24679560000004,-9.546346699999958],[124.25411990000009,-9.550849],[124.25744630000008,-9.550321599999961],[124.25898740000002,-9.55215839999994],[124.26717380000002,-9.552794499999948],[124.26686860000007,-9.556642499999953],[124.26826480000011,-9.558881799999938],[124.27274320000004,-9.559856399999944],[124.27416230000006,-9.564397799999938],[124.27598570000009,-9.5644665],[124.27608490000011,-9.566308],[124.2801895,-9.56988339999998],[124.28287510000007,-9.569705],[124.28523260000009,-9.567399],[124.28858950000006,-9.568489099999965],[124.2976761000001,-9.567954099999952],[124.30473330000007,-9.5734119],[124.30861660000005,-9.571824099999958],[124.31250760000012,-9.575738],[124.31147770000007,-9.580241199999932],[124.31779480000012,-9.592434899999944],[124.329628,-9.59198189999995],[124.33461000000011,-9.588808099999937],[124.34092710000004,-9.587035199999946],[124.34784700000012,-9.588142399999981],[124.35095980000006,-9.586401],[124.35435490000009,-9.58784769999994],[124.36176300000011,-9.597077399999932],[124.37042240000005,-9.590206099999932],[124.37500000000011,-9.591336299999966],[124.37641910000002,-9.593691799999931],[124.37878420000004,-9.593401899999947],[124.38144680000005,-9.596386],[124.3856125000001,-9.594903899999963],[124.39004520000003,-9.598154099999931],[124.393837,-9.593546899999978],[124.40285490000008,-9.594639799999982],[124.40927120000003,-9.599973699999964],[124.42258450000008,-9.597668599999963],[124.42431640000007,-9.594265899999925],[124.43270110000003,-9.6052437],[124.44757840000011,-9.614717499999927],[124.44886780000002,-9.618675199999927],[124.45053860000007,-9.617286699999966],[124.452095,-9.619071899999938],[124.45581820000007,-9.614794699999948],[124.457634,-9.614692699999978],[124.45781710000006,-9.6158924],[124.46097570000006,-9.613461499999971],[124.45911410000008,-9.617230399999926],[124.4564362000001,-9.6188288],[124.45800780000002,-9.625340499999936],[124.4550858,-9.625352799999973],[124.45752720000007,-9.634625399999948],[124.49266050000006,-9.645553599999971],[124.50251770000011,-9.653432799999962],[124.50860590000002,-9.655961],[124.51045990000011,-9.659619299999974],[124.51414490000002,-9.6604023],[124.51713560000007,-9.662955299999965],[124.51982880000003,-9.66067789999994],[124.52564240000004,-9.661553399999946],[124.531044,-9.660242099999948],[124.5397339000001,-9.653457699999933],[124.54055790000007,-9.646913499999926],[124.54412840000009,-9.644220299999972],[124.55405430000008,-9.6454887],[124.5592117000001,-9.6436634],[124.56557470000007,-9.638742499999978],[124.56716920000008,-9.635361699999976],[124.5720596000001,-9.631142599999976],[124.57424930000002,-9.621250199999963],[124.58042150000006,-9.616856599999949],[124.58459470000003,-9.6162634],[124.59995270000002,-9.619179699999961],[124.60654450000004,-9.6165066],[124.60924530000011,-9.613047599999959],[124.61550140000008,-9.613420499999961],[124.6175766,-9.610826499999973],[124.61910250000005,-9.602720199999965],[124.6261062000001,-9.599144],[124.62702940000008,-9.594440499999962],[124.63167570000007,-9.587455699999964],[124.63378910000006,-9.5861244],[124.63842010000008,-9.587733299999968],[124.6452637000001,-9.584867499999973],[124.6538776000001,-9.581659399999978],[124.66037640000002,-9.581384199999945],[124.67025160000003,-9.582213799999977],[124.67851310000003,-9.585889799999961],[124.68596270000012,-9.584587899999974],[124.69622920000006,-9.586246599999981],[124.69949370000006,-9.584964799999966],[124.701285,-9.582496899999967],[124.70032870000011,-9.568903899999953],[124.70475010000007,-9.560745199999928],[124.72205960000008,-9.557504699999981],[124.73106230000008,-9.554141899999934],[124.73459620000006,-9.555504799999937],[124.73722840000005,-9.561876299999938],[124.75343320000002,-9.563799899999935],[124.75675280000007,-9.560124599999938],[124.75686740000003,-9.55761979999994],[124.75221460000012,-9.554804399999966],[124.75251010000011,-9.551201799999944],[124.75052640000001,-9.5501547],[124.75264920000006,-9.548288399999933],[124.75410460000012,-9.543917699999952],[124.75268330000006,-9.541033],[124.7530365,-9.536294],[124.74150090000012,-9.530246699999964],[124.74119570000005,-9.525800699999934],[124.73918910000009,-9.523587199999952],[124.7395782000001,-9.520895],[124.73651890000008,-9.5162115],[124.73836520000009,-9.509710299999938],[124.7341355000001,-9.510124699999949],[124.72899980000011,-9.513341599999933],[124.72236160000011,-9.506947399999945],[124.72122960000002,-9.503482799999972],[124.72274020000009,-9.501252199999954],[124.72600280000006,-9.50298639999994],[124.7285690000001,-9.502621699999963],[124.7284012,-9.4984636],[124.7312971,-9.49851209999997],[124.73233030000006,-9.496204399999954],[124.73337270000002,-9.498122099999932],[124.73195650000002,-9.501134899999954],[124.73714650000011,-9.499513799999932],[124.73991060000003,-9.497511],[124.73673250000002,-9.496398],[124.7379069000001,-9.494133],[124.74091620000002,-9.493889699999954],[124.74087120000002,-9.491855699999974],[124.74404140000001,-9.487576499999932],[124.7459186000001,-9.4899501],[124.74860380000007,-9.489831899999956],[124.75268710000012,-9.48225789999998],[124.75712870000007,-9.482218299999943],[124.7598865000001,-9.4793657],[124.76226340000005,-9.4824095],[124.76480190000007,-9.47998279999996],[124.7671054000001,-9.481915],[124.76821140000004,-9.47631739999997],[124.76606760000004,-9.474668699999938],[124.76876830000003,-9.471599599999934],[124.76871490000008,-9.467706699999951],[124.77139710000006,-9.46745519999996],[124.77308830000004,-9.46996],[124.78164960000004,-9.470178799999928],[124.78134390000002,-9.467196899999976],[124.77872790000004,-9.464027899999962],[124.78070070000001,-9.4614525],[124.77986150000004,-9.458812699999953],[124.78157810000005,-9.45712569999995],[124.78000640000005,-9.453043],[124.78388220000011,-9.452812199999926],[124.78831480000008,-9.445576699999947],[124.784935,-9.443942099999958],[124.78784940000003,-9.439183],[124.7861746000001,-9.4360935],[124.78789770000003,-9.430675399999927],[124.78555390000008,-9.428488799999968],[124.78801070000009,-9.425657299999955],[124.78617310000004,-9.424626899999964],[124.78771210000002,-9.418782199999953],[124.77873230000012,-9.411274899999967],[124.77203650000001,-9.410260199999925],[124.76985160000004,-9.406483399999956],[124.7704503000001,-9.399464499999965],[124.76863990000004,-9.397476],[124.775032,-9.398171399999967],[124.78899410000008,-9.385050599999943],[124.79438020000009,-9.382855399999926],[124.80013050000002,-9.383583699999974],[124.80261430000007,-9.381103],[124.8052384,-9.373760699999934],[124.80886080000005,-9.368916499999955],[124.80732030000001,-9.3678967],[124.8081360000001,-9.3659821],[124.80633730000011,-9.365516],[124.80608370000004,-9.36192509999995],[124.80089730000009,-9.355843099999959],[124.80194860000006,-9.353394499999979],[124.80062,-9.350724899999932],[124.80324550000012,-9.349760099999969],[124.8043345000001,-9.347146599999974],[124.8061705,-9.347544099999936],[124.812084,-9.344503499999973],[124.81532090000007,-9.341069599999969],[124.82000530000005,-9.339129],[124.82393960000002,-9.340076199999942],[124.83039860000008,-9.3353996],[124.83531190000008,-9.334351499999968],[124.83753910000007,-9.335223699999972],[124.8377991000001,-9.331302599999958],[124.83979050000005,-9.332572299999981],[124.84116910000012,-9.330440599999974],[124.8403095000001,-9.32925169999993],[124.8424662000001,-9.328725199999951],[124.844707,-9.3225661],[124.84361270000011,-9.321636199999944],[124.84417,-9.318889399999932],[124.8425827000001,-9.317497299999957],[124.84533020000003,-9.319154599999933],[124.84783610000011,-9.316908699999942],[124.84754940000005,-9.315889399999946],[124.8451583000001,-9.316321799999969],[124.844658,-9.3109494],[124.846297,-9.311320599999931],[124.843063,-9.309212799999955],[124.84274160000007,-9.305886],[124.8457565000001,-9.302271799999971],[124.84420010000008,-9.301136],[124.84580920000008,-9.300736699999959],[124.843729,-9.299436599999979],[124.84508510000012,-9.299199099999953],[124.84459840000011,-9.297958499999936],[124.8466797000001,-9.298214],[124.8456192000001,-9.296518299999946],[124.84690150000006,-9.293724699999927],[124.848786,-9.293715],[124.85480940000002,-9.28490549999998],[124.85330140000008,-9.284018299999957],[124.85406230000001,-9.282802899999979],[124.85219250000011,-9.278111599999932],[124.852743,-9.271165699999926],[124.85046340000008,-9.265093299999933],[124.85049420000007,-9.254353],[124.848938,-9.250001],[124.837616,-9.233971599999961],[124.83583690000012,-9.21567159999995],[124.82720190000009,-9.205232599999931],[124.81995390000009,-9.199580199999957],[124.81872480000004,-9.189199199999962],[124.81665040000007,-9.185357099999976],[124.82028240000011,-9.180694],[124.82086580000009,-9.173889499999973],[124.81272260000003,-9.172574299999951],[124.80922770000006,-9.1682885],[124.81250380000006,-9.166545299999939],[124.81214160000002,-9.165091599999926],[124.815596,-9.165761299999929],[124.81509130000006,-9.163919599999929],[124.81726530000003,-9.159469699999931],[124.8248291000001,-9.152169199999946],[124.82692080000004,-9.145453399999951],[124.82595830000002,-9.143704399999933],[124.82054060000007,-9.1442017],[124.82137970000008,-9.142606299999954],[124.81658180000011,-9.105789399999935],[124.81355220000012,-9.10199849999998],[124.8154373000001,-9.098228399999925],[124.81422820000012,-9.095684799999958],[124.81601450000005,-9.091342],[124.81402440000011,-9.0895381],[124.81811330000005,-9.085855599999945],[124.82019720000005,-9.076262699999972],[124.81536910000011,-9.064814099999978],[124.8114395,-9.063486099999977],[124.80445860000009,-9.054536799999937],[124.802475,-9.04723169999994],[124.80564860000004,-9.0413016],[124.80203250000011,-9.037366899999938],[124.80079400000011,-9.029871199999945],[124.79683680000005,-9.026368099999956],[124.797445,-9.022428899999966],[124.79511260000004,-9.021826699999963],[124.79243630000008,-9.018230699999947]]]},"properties":{"shapeName":"Timor Tengah Utara","shapeISO":"","shapeID":"22746128B92989767501985","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[99.07410380000005,2.60463610000005],[99.06413090000007,2.61118220000003],[99.04950150000008,2.628956300000027],[99.04232350000007,2.633673200000032],[99.03924720000003,2.629093],[99.02817260000006,2.619248900000059],[99.01552570000007,2.613848300000029],[99.00677540000004,2.613711600000045],[99.00479290000004,2.610225100000036],[99.000281,2.610088400000052],[99.00007590000007,2.611865800000032],[98.99864030000003,2.611524],[98.99570070000004,2.605918300000042],[98.99194080000007,2.602568600000041],[98.977243,2.601611500000047],[98.96097290000006,2.613916700000061],[98.96309210000004,2.621094700000071],[98.96220340000008,2.62588],[98.95673450000004,2.634767],[98.95817010000007,2.647140500000035],[98.94096110000004,2.655635300000029],[98.93550580000004,2.659459600000048],[98.93315370000005,2.658449],[98.93203310000007,2.651922600000034],[98.92480160000008,2.653812300000027],[98.91377280000006,2.634630200000061],[98.90814010000008,2.62950630000006],[98.90842410000005,2.627115900000035],[98.913193,2.620654800000068],[98.91326310000005,2.612667200000033],[98.91712290000004,2.603237400000069],[98.91545880000007,2.598545600000023],[98.91749270000008,2.597158900000068],[98.92206890000006,2.601111100000026],[98.925166,2.601296],[98.92651280000007,2.607977],[98.92518910000007,2.601272900000026],[98.92800880000004,2.598915400000067],[98.92405660000009,2.593738300000041],[98.92398720000006,2.585810800000047],[98.92590560000008,2.583984900000075],[98.93191480000007,2.583014200000036],[98.93489620000008,2.57795260000006],[98.94097480000005,2.575595100000044],[98.94623680000007,2.567902200000049],[98.94908230000004,2.567766400000039],[98.948336,2.563958300000024],[98.95399740000005,2.56205],[98.951877,2.567923400000041],[98.95457030000006,2.568835500000034],[98.96067660000006,2.567350900000065],[98.96363740000004,2.564811900000052],[98.96558730000004,2.565567700000031],[98.96747050000005,2.560781700000064],[98.97346770000007,2.55325890000006],[98.978637,2.555150500000025],[98.98031460000004,2.56097120000004],[98.98334450000004,2.558388900000068],[98.98281840000004,2.551156200000037],[98.98704990000004,2.547751],[98.98880260000004,2.541666700000064],[98.995613,2.540840400000036],[98.99145670000007,2.548376900000051],[98.991657,2.549954400000047],[98.99345970000007,2.550530200000026],[99.00417610000005,2.542518],[99.00845940000005,2.536949400000026],[99.00914710000006,2.535039200000028],[99.007466,2.533969400000046],[99.00792450000006,2.532364800000039],[99.011363,2.528162200000054],[99.02840260000005,2.520826700000043],[99.03352220000005,2.523883200000057],[99.03168830000004,2.521896500000025],[99.03205740000004,2.516674900000055],[99.03415440000003,2.514721200000054],[99.03740150000004,2.514476600000023],[99.03730820000004,2.512796200000025],[99.04054050000008,2.511466],[99.03894180000003,2.509120500000051],[99.03604790000009,2.510042300000066],[99.03657860000004,2.505926600000066],[99.04284430000007,2.498591100000056],[99.04834590000007,2.489039800000057],[99.04911,2.480176100000051],[99.04597720000004,2.475285800000051],[99.04613,2.470089800000039],[99.04765820000006,2.46741540000005],[99.05098090000007,2.466089200000056],[99.048724,2.464262100000042],[99.048724,2.459533300000032],[99.05237810000006,2.456954],[99.05420510000005,2.45201030000004],[99.05764420000008,2.448356200000035],[99.05411480000004,2.444054],[99.05851770000004,2.442857100000026],[99.05387430000007,2.429964400000074],[99.05323220000008,2.422060800000054],[99.05170090000007,2.421616200000074],[99.05125630000003,2.418899400000043],[99.04937920000003,2.418109],[99.04977440000005,2.416429500000049],[99.04728470000003,2.413722500000063],[99.04483460000006,2.414009],[99.044884,2.412280100000032],[99.04172260000007,2.410007900000039],[99.04162380000008,2.40887170000002],[99.04374790000008,2.408229600000027],[99.04340210000004,2.404129600000033],[99.04834180000006,2.39558390000002],[99.05886350000009,2.39874530000003],[99.06488990000008,2.397016400000041],[99.06834780000008,2.401807900000051],[99.07506580000006,2.402548900000056],[99.07788140000008,2.405907900000045],[99.08474770000004,2.407093400000065],[99.09032950000005,2.410057300000062],[99.09645480000006,2.409316300000057],[99.09887530000003,2.405957300000068],[99.09976440000008,2.410106700000028],[99.103568,2.414404200000035],[99.11468240000005,2.416923500000053],[99.11404030000006,2.421863200000075],[99.11828840000004,2.423246300000073],[99.12130170000006,2.432483600000069],[99.12475950000004,2.433570400000065],[99.12634020000007,2.436139],[99.12998850000008,2.437952900000028],[99.13219380000004,2.436285100000021],[99.13598030000009,2.437881100000027],[99.13604280000004,2.434939500000041],[99.137451,2.434032],[99.14458590000004,2.43587830000007],[99.15120510000008,2.429065700000024],[99.15449130000007,2.419651700000031],[99.15436780000005,2.409906600000056],[99.15168820000008,2.403603],[99.15319020000004,2.399113800000066],[99.15179620000004,2.39595410000004],[99.15012350000006,2.39567530000005],[99.15148190000008,2.391701],[99.147537,2.384644],[99.13867990000006,2.376593],[99.13221,2.372823],[99.126689,2.37223],[99.12223190000003,2.374649],[99.122257,2.379062200000021],[99.11399030000007,2.375944100000027],[99.11558560000003,2.373696100000075],[99.11536810000007,2.369852800000046],[99.10987890000007,2.359264200000041],[99.10737970000008,2.35766140000004],[99.11058338300006,2.350635846000046],[99.105854,2.359264200000041],[99.10575080000007,2.361431500000037],[99.10033260000006,2.355032900000026],[99.08485230000008,2.352401200000031],[99.08392350000008,2.351162800000054],[99.08557470000005,2.348944],[99.08282080000004,2.344849600000032],[99.07947980000006,2.34497650000003],[99.07368410000004,2.348955400000023],[99.069601,2.347464800000068],[99.06286070000004,2.341631800000073],[99.06195330000008,2.336252500000057],[99.05754620000005,2.335021100000063],[99.04186840000006,2.349915700000054],[99.03732450000007,2.349731400000053],[99.03670640000007,2.354882],[99.03001070000005,2.363947100000075],[99.02825950000005,2.363947100000075],[99.02578720000008,2.361886800000036],[99.02558120000003,2.353748900000028],[99.02250360000005,2.349230600000055],[99.01468780000005,2.34687770000005],[99.01466670000008,2.341328200000021],[99.01273410000005,2.339629200000047],[99.00795580000005,2.342114],[99.00857170000006,2.339459300000044],[99.00285890000004,2.337760400000036],[99.00470610000008,2.334215800000038],[99.00362580000007,2.326617500000054],[98.99911910000009,2.321463700000038],[98.99663630000003,2.322093800000061],[98.99216260000009,2.328535700000032],[98.98927670000006,2.336876],[98.99359550000008,2.304661800000076],[98.99927640000004,2.281199400000048],[99.00536750000003,2.268293800000038],[99.00245830000006,2.253093400000068],[99.02531,2.253048100000058],[99.03268680000008,2.254389400000036],[99.047206,2.26417390000006],[99.05785180000004,2.269386800000063],[99.064681,2.270425700000033],[99.06698820000008,2.272257300000035],[99.08433430000008,2.272164],[99.09572560000004,2.267578300000025],[99.09684330000005,2.260872100000029],[99.09952580000004,2.25953080000005],[99.10265540000006,2.25506],[99.10865810000007,2.254524],[99.11360890000003,2.256401200000028],[99.11830330000004,2.256177700000023],[99.12523310000006,2.259307300000046],[99.12900820000004,2.256006],[99.13775140000007,2.256624800000054],[99.15844920000006,2.23933020000004],[99.15821520000009,2.237378400000068],[99.16015140000007,2.236062600000025],[99.17382880000008,2.233957],[99.179294,2.231715400000041],[99.19877820000005,2.230917500000032],[99.21205750000007,2.212919600000021],[99.21076080000006,2.202499100000068],[99.21235420000005,2.198224300000049],[99.21056920000007,2.196894100000065],[99.21237680000007,2.194735800000046],[99.211785,2.190641200000073],[99.21328450000004,2.187631],[99.21261910000004,2.185965900000042],[99.20799760000006,2.186334100000067],[99.21633110000005,2.170302400000026],[99.22722380000005,2.155876500000034],[99.23301160000005,2.151363],[99.23523330000006,2.145214300000021],[99.24741970000008,2.127240300000039],[99.25842410000007,2.122493500000076],[99.26300960000003,2.122229100000027],[99.27755080000009,2.11445],[99.29188820000007,2.111687],[99.29719660000006,2.116116300000044],[99.304485,2.11767610000004],[99.31337420000006,2.121201100000064],[99.31497340000004,2.123032100000046],[99.32099140000008,2.122293200000058],[99.32701540000005,2.124303600000076],[99.33442110000004,2.123316300000056],[99.34208050000007,2.129918900000064],[99.35762830000004,2.138849500000049],[99.36159370000007,2.139710600000058],[99.36546130000005,2.142964],[99.369374,2.14361370000006],[99.37668590000004,2.155953500000066],[99.37700080000008,2.15948190000006],[99.38192540000006,2.166603800000075],[99.38956240000005,2.169139700000073],[99.39225390000007,2.169017100000076],[99.39237840000004,2.166234],[99.39391550000005,2.16607920000007],[99.40430450000008,2.176028600000052],[99.41501930000004,2.19329620000002],[99.41731090000007,2.199368900000024],[99.41564870000008,2.210887700000058],[99.41710660000007,2.213400300000046],[99.42293630000006,2.215702300000032],[99.43584390000007,2.217374],[99.46491280000004,2.229068300000051],[99.47408840000008,2.233717900000045],[99.47623910000004,2.239283600000022],[99.48202570000007,2.242688],[99.49691630000007,2.24329670000003],[99.5,2.244874300000049],[99.50098020000007,2.247025500000063],[99.52237360000004,2.241661600000043],[99.529953,2.246668400000033],[99.53699340000009,2.24809010000007],[99.53808990000005,2.25],[99.53631090000005,2.255540800000063],[99.53458510000007,2.256262700000036],[99.540177,2.259410800000069],[99.54250480000007,2.265839600000049],[99.54688380000005,2.268407900000057],[99.54556110000004,2.271969],[99.54675260000005,2.274538500000062],[99.54660730000006,2.283766400000047],[99.54476260000007,2.292957600000022],[99.54891220000007,2.306923500000039],[99.55572770000003,2.309617],[99.56105890000003,2.302332700000022],[99.56437720000008,2.30656410000006],[99.56954170000006,2.305891],[99.57793880000008,2.30749030000004],[99.58303670000004,2.310994200000039],[99.585209,2.314244600000052],[99.58341160000003,2.318031],[99.58391340000009,2.325209800000039],[99.58278550000006,2.328102],[99.55152970000006,2.336456300000066],[99.53312370000003,2.343482900000026],[99.519833,2.351253900000074],[99.52109540000004,2.355059700000027],[99.51958370000006,2.35947230000005],[99.52037680000007,2.363418900000056],[99.51763080000006,2.366480900000056],[99.51734950000008,2.371947500000033],[99.51883710000004,2.376166100000034],[99.52296550000005,2.378547500000025],[99.521066,2.38707450000004],[99.52414630000004,2.388628100000062],[99.52319730000005,2.394590900000026],[99.52464450000008,2.401452800000072],[99.52635680000009,2.403495100000043],[99.52705160000005,2.413013300000046],[99.525603,2.417350300000066],[99.52759160000005,2.43215390000006],[99.52315060000006,2.434926500000074],[99.51964690000005,2.440849100000037],[99.52249460000007,2.446097300000076],[99.52794920000008,2.449906500000054],[99.52378360000006,2.456786300000033],[99.524023,2.460253100000045],[99.52154110000004,2.459093200000041],[99.51899790000004,2.455104100000028],[99.51201520000006,2.439749100000029],[99.51401540000006,2.430970200000047],[99.51763570000008,2.424755900000036],[99.51734510000006,2.41912190000005],[99.51589250000006,2.416513900000041],[99.51167630000003,2.416622400000051],[99.50983840000004,2.414129200000048],[99.51089490000004,2.411043300000074],[99.51718520000009,2.40587430000005],[99.517006,2.402617900000052],[99.51959750000003,2.399429200000043],[99.51660390000006,2.398241700000028],[99.51560710000007,2.395637900000054],[99.50991370000008,2.396838400000036],[99.503085,2.395275300000037],[99.41919180000008,2.459998900000073],[99.43976040000007,2.489025300000037],[99.44534370000008,2.493016300000022],[99.44933970000005,2.498622400000045],[99.45073590000004,2.502944200000059],[99.44933590000005,2.505022800000063],[99.45254670000008,2.540320800000075],[99.46120690000004,2.550818900000024],[99.44289690000005,2.562472700000058],[99.44852510000004,2.567075300000056],[99.45576740000007,2.576241100000061],[99.45851370000008,2.600795900000037],[99.44582170000007,2.593624200000022],[99.44484470000003,2.590789200000074],[99.44547580000005,2.580388800000037],[99.432784,2.568002100000058],[99.42667350000005,2.57039450000002],[99.41983990000006,2.562472800000023],[99.41436380000005,2.560356500000069],[99.40995430000004,2.561812],[99.41421630000008,2.577042200000051],[99.41748450000006,2.580714700000044],[99.42052810000007,2.589864],[99.42636070000003,2.595249800000033],[99.42642040000004,2.59710780000006],[99.42474730000004,2.597498800000039],[99.40550030000009,2.590079900000035],[99.39740470000004,2.582360300000062],[99.39105680000006,2.56656920000006],[99.38633220000008,2.563818100000049],[99.38319110000003,2.565487100000041],[99.37934750000005,2.564718400000061],[99.37332050000003,2.568633900000066],[99.37111970000007,2.567527700000028],[99.36850450000009,2.568330500000059],[99.36475590000003,2.565605100000028],[99.36277860000007,2.565830100000028],[99.35968710000009,2.562284900000066],[99.348783,2.56043690000007],[99.34539530000006,2.56352940000005],[99.34218020000009,2.562393400000076],[99.34178050000008,2.564505200000042],[99.32654970000004,2.566167600000028],[99.32455220000008,2.564200400000061],[99.31770690000008,2.563185400000066],[99.31462780000004,2.559331100000065],[99.31365020000004,2.561790900000062],[99.31063050000006,2.561812900000064],[99.30875760000004,2.554114100000049],[99.30852960000004,2.574106300000039],[99.30389460000004,2.574271400000043],[99.29339940000006,2.563963400000034],[99.28522640000006,2.559004600000037],[99.276975,2.550040600000045],[99.26754870000008,2.549288300000057],[99.25544190000005,2.540653400000053],[99.24785230000003,2.539448200000038],[99.23865760000007,2.544519700000023],[99.230352,2.544784700000037],[99.21904670000004,2.53668220000003],[99.21360910000004,2.52374750000007],[99.20750920000006,2.529453],[99.18368310000005,2.532944200000031],[99.18168920000005,2.538873700000067],[99.18111290000007,2.552588900000046],[99.17710490000007,2.557106200000021],[99.16729510000005,2.560839800000053],[99.16137320000007,2.568042],[99.15705980000007,2.568092900000067],[99.145364,2.573107200000038],[99.14002230000006,2.571956900000032],[99.13540230000007,2.567909600000064],[99.13196450000004,2.566951600000039],[99.12528060000005,2.569017500000029],[99.11764150000005,2.568778200000054],[99.11374710000007,2.573526100000038],[99.10124910000008,2.571930900000041],[99.09805620000009,2.57293],[99.08737890000003,2.581768900000043],[99.07647870000005,2.595048600000041],[99.07410380000005,2.60463610000005]]]},"properties":{"shapeName":"Toba Samosir","shapeISO":"","shapeID":"22746128B44931532039678","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[121.66541340000003,-0.8848349],[121.66435510000008,-0.884170199999971],[121.66243570000006,-0.885796699999958],[121.66630590000011,-0.886956199999929],[121.66683180000007,-0.885483299999976],[121.66541340000003,-0.8848349]]],[[[121.66733210000007,-0.8675142],[121.66690820000008,-0.866580899999974],[121.66550360000008,-0.867976099999964],[121.66733210000007,-0.8675142]]],[[[121.85165940000002,-0.969449099999963],[121.84889840000005,-0.968642899999963],[121.84321950000003,-0.968472599999927],[121.83373370000004,-0.968188899999973],[121.8268402000001,-0.964527099999941],[121.82542510000007,-0.959583599999974],[121.8227912000001,-0.957032199999958],[121.81848960000002,-0.957357599999966],[121.81656270000008,-0.956098299999951],[121.81107640000005,-0.957921699999929],[121.80911810000009,-0.962500699999964],[121.805773,-0.964130099999977],[121.80416720000005,-0.962484699999948],[121.80177340000012,-0.962940499999945],[121.79738190000012,-0.960640099999978],[121.7932717000001,-0.9603597],[121.78535460000012,-0.964985499999955],[121.78577809800004,-0.966506100999936],[121.78435480000007,-0.965260799999953],[121.7808758000001,-0.969537399999979],[121.77810550000004,-0.970621499999936],[121.77017610000007,-0.971830199999943],[121.76759880000009,-0.970227899999941],[121.7605936000001,-0.971046099999967],[121.75366740000004,-0.965042899999958],[121.74604140000008,-0.963742],[121.73657170000001,-0.9592559],[121.732101,-0.953161499999965],[121.72978150000006,-0.952018299999963],[121.7259041000001,-0.953393],[121.72075080000002,-0.951621099999954],[121.71879270000011,-0.9531493],[121.70992360000002,-0.949495099999979],[121.7086385,-0.947127799999976],[121.7117995000001,-0.9420418],[121.71107390000009,-0.940716399999928],[121.70158250000009,-0.932129699999962],[121.697359,-0.931551],[121.696336,-0.926130199999932],[121.69333740000002,-0.926094],[121.68977630000006,-0.923665],[121.68361370000002,-0.9259293],[121.67977280000002,-0.921144799999979],[121.67699991500001,-0.922261120999963],[121.66672170000004,-0.921664599999929],[121.6643719000001,-0.915415799999948],[121.65989410000009,-0.913051],[121.65726080000002,-0.913342499999942],[121.65538460000005,-0.908615299999951],[121.65754240000001,-0.884365599999967],[121.66197720000002,-0.880779699999948],[121.6607408000001,-0.877687599999945],[121.66226570000003,-0.877178399999934],[121.66104970000004,-0.876682],[121.66461040000002,-0.867968499999961],[121.66361480000012,-0.865100299999938],[121.66564,-0.860774899999967],[121.66903920000004,-0.857660599999974],[121.668152,-0.854095299999926],[121.66580370000008,-0.852647899999965],[121.66294990000006,-0.847117699999956],[121.66519950000009,-0.838478399999929],[121.664591,-0.819996499999945],[121.66305370000009,-0.812666299999933],[121.660176,-0.808833],[121.65698060000011,-0.807947599999977],[121.65401650000001,-0.802089399999943],[121.6510224000001,-0.804702],[121.645929,-0.8062983],[121.63358670000002,-0.807050599999968],[121.6281537000001,-0.809384399999942],[121.620394,-0.814949199999944],[121.61700380000002,-0.815422299999966],[121.60758890000011,-0.826711],[121.5970115,-0.825148599999977],[121.59567730000003,-0.828716],[121.59370220000005,-0.829833099999973],[121.58957350000003,-0.836156499999959],[121.59244870000009,-0.834572199999968],[121.596205,-0.835129799999947],[121.59344620000002,-0.837492],[121.59709440000006,-0.838244399999951],[121.59492450000005,-0.841839499999935],[121.59603470000002,-0.842932099999928],[121.60089750000009,-0.844257299999924],[121.6012280000001,-0.850618199999928],[121.59774370000002,-0.857447299999933],[121.58876750000002,-0.866020499999934],[121.583943,-0.867624899999953],[121.57834770000011,-0.865915199999961],[121.5716258000001,-0.867622299999937],[121.56198540000003,-0.86701],[121.5623117,-0.868896],[121.56143370000007,-0.867041399999948],[121.55142010000009,-0.874420799999939],[121.53847690000009,-0.873189899999943],[121.52260460000002,-0.884987099999933],[121.50952990000008,-0.885081199999945],[121.5074843000001,-0.888239099999964],[121.505298,-0.886180199999956],[121.50135140000009,-0.887375099999929],[121.5000073000001,-0.889767],[121.494594,-0.8929854],[121.49452210000004,-0.896503499999938],[121.49167350000005,-0.899577299999976],[121.47976380000011,-0.900106],[121.4805622,-0.9038958],[121.47699590000002,-0.9037767],[121.47370680000006,-0.910060899999962],[121.47363770000004,-0.917522199999951],[121.471522,-0.920424499999967],[121.47163790000002,-0.925000799999964],[121.46852780000006,-0.9296933],[121.46708390000003,-0.937506699999972],[121.45759310000005,-0.9454348],[121.4599902000001,-0.9501414],[121.45958740000003,-0.956460199999924],[121.44933390000006,-0.973059399999954],[121.44382150000001,-0.978316399999926],[121.43168860000003,-0.983579099999929],[121.4248837,-0.988158099999964],[121.41981550000003,-0.988595699999962],[121.413704,-0.992262399999959],[121.41191,-0.995260299999927],[121.40827710000008,-0.996269299999938],[121.40940360000002,-0.998917699999936],[121.40761730000008,-0.996976599999925],[121.40621340000007,-0.9988552],[121.40387940000005,-0.998699],[121.40354170000012,-1.000236199999961],[121.39631660000009,-1.004990199999952],[121.40000570000007,-1.010585399999968],[121.398211,-1.012124399999948],[121.39772660000006,-1.015521799999931],[121.39944610000009,-1.019241399999942],[121.3958818000001,-1.022858499999927],[121.39227770000002,-1.034955499999967],[121.38718630000005,-1.038451099999975],[121.37939340000003,-1.034629299999949],[121.35176050000007,-1.052225399999941],[121.34255140000005,-1.061179399999958],[121.3377101000001,-1.063316499999928],[121.3284397000001,-1.0792796],[121.31469110000012,-1.094834899999967],[121.30811730000005,-1.098394599999949],[121.30268110000009,-1.105891199999974],[121.30145490000007,-1.111930699999959],[121.29516780000006,-1.115971599999966],[121.29453750000005,-1.121046799999931],[121.29649050000012,-1.123974499999974],[121.2950125000001,-1.132633399999975],[121.28827380000007,-1.137038399999938],[121.28371730000003,-1.142905399999961],[121.2859721000001,-1.146502599999963],[121.282272,-1.148113399999943],[121.28218660000005,-1.1541444],[121.27955950000012,-1.158756899999958],[121.2716931000001,-1.164779299999964],[121.26445490000003,-1.164313799999945],[121.26221630000009,-1.1690028],[121.25447730000008,-1.174783799999943],[121.2541639000001,-1.177837499999953],[121.24992440000005,-1.183845099999928],[121.2487188,-1.19013],[121.2458832000001,-1.193028399999946],[121.24156870000002,-1.193393599999979],[121.23966840000003,-1.1921412],[121.23618770000007,-1.194397699999968],[121.23253850000003,-1.192762199999947],[121.23262910000005,-1.195259],[121.230257,-1.196573499999943],[121.22933320000004,-1.199941199999955],[121.22501640000007,-1.203095499999961],[121.22269090000009,-1.202547299999935],[121.220792,-1.2088726],[121.2242625,-1.213217199999974],[121.22319990000005,-1.216822799999932],[121.22044070000004,-1.217097699999954],[121.21657990000006,-1.220535199999972],[121.2168339000001,-1.223405699999944],[121.21182490000001,-1.232154899999955],[121.20550240000011,-1.234590099999934],[121.204158,-1.236584799999946],[121.20427150000012,-1.245565899999974],[121.20614920000003,-1.245652099999973],[121.20556610000006,-1.253270899999961],[121.20854520000012,-1.261475399999938],[121.19862780000005,-1.266787399999941],[121.19432210000002,-1.271948599999973],[121.19566530000009,-1.281909799999937],[121.19278770000005,-1.2873003],[121.19483250000008,-1.291095299999938],[121.19449480000003,-1.294607599999949],[121.188615,-1.298978899999952],[121.18815010000003,-1.304215499999941],[121.1844853,-1.306020499999931],[121.18140240000002,-1.319100499999934],[121.18202320000012,-1.325463299999967],[121.1798490000001,-1.329196699999954],[121.173922,-1.332409799999937],[121.16806550000001,-1.338274899999931],[121.166404,-1.343893699999967],[121.161391,-1.348590399999978],[121.16355140000007,-1.357011399999976],[121.1635318000001,-1.367196],[121.15753550000011,-1.366562],[121.151834,-1.372218499999974],[121.141341,-1.377920699999947],[121.13639050000006,-1.383204699999965],[121.13209140000004,-1.394304199999965],[121.133449,-1.397211399999946],[121.132976,-1.402169799999967],[121.13005980000003,-1.406053199999974],[121.1253441,-1.408604899999943],[121.12499810000008,-1.415550199999927],[121.112426,-1.429006899999933],[121.10407140000007,-1.431832799999938],[121.10343820000003,-1.435224199999936],[121.10085660000004,-1.437565799999959],[121.09793550000006,-1.436441499999944],[121.09121120000009,-1.440184099999954],[121.08618360000003,-1.4384422],[121.08263090000003,-1.438791],[121.07800190000012,-1.435585899999978],[121.0724887,-1.435371599999939],[121.06773070000008,-1.436582699999974],[121.06391310000004,-1.439808199999959],[121.05895440000006,-1.440027499999928],[121.05876260000002,-1.442604],[121.05894790000002,-1.440003],[121.04780770000002,-1.432044599999927],[121.04150640000012,-1.434374899999966],[121.03914080000004,-1.433891799999969],[121.03849860000003,-1.4209273],[121.04149470000004,-1.417263499999933],[121.03968010000006,-1.412829899999963],[121.03544350000004,-1.417476699999952],[121.03205590000005,-1.418713099999934],[121.01749970000003,-1.419744],[121.000795,-1.413437],[120.993366,-1.405609899999945],[120.98186010000006,-1.399072899999965],[120.9797142000001,-1.401577],[120.97864340000001,-1.400850899999966],[120.97662560000003,-1.403370099999961],[120.96777080000004,-1.408157699999947],[120.9646629,-1.411578099999929],[120.9508866000001,-1.414632399999959],[120.95152380000002,-1.417094799999973],[120.95085570000003,-1.414702099999943],[120.93037410000011,-1.412871399999972],[120.9311977000001,-1.414379199999928],[120.92960140000002,-1.4130687],[120.91317960000003,-1.417200299999934],[120.8892671000001,-1.410707199999933],[120.8905486000001,-1.4132763],[120.8909857000001,-1.415213899999969],[120.88882090000004,-1.414889199999948],[120.88981700000011,-1.417317799999978],[120.88884810000002,-1.421149499999956],[120.89356750000002,-1.424844699999937],[120.89223260000006,-1.428927399999964],[120.88979690000008,-1.4284639],[120.8913262000001,-1.441105],[120.88972150000006,-1.455236599999978],[120.89056990000006,-1.483174],[120.89547090000008,-1.497886299999948],[120.89689580000004,-1.517331899999931],[120.89812070000005,-1.520053799999971],[120.90069710000012,-1.519987899999933],[120.90082710000001,-1.52284],[120.90256640000007,-1.523552299999949],[120.90070020000007,-1.527571899999941],[120.90201800000011,-1.537830399999962],[120.90585950000002,-1.540193899999963],[120.90761590000011,-1.5499943],[120.91504370000007,-1.571467899999959],[120.93088710000006,-1.582617199999959],[120.9618762,-1.623660599999937],[120.98256360000005,-1.622452],[121.00714160000007,-1.624202699999955],[121.0200943000001,-1.618704199999968],[121.07369480000011,-1.580447299999946],[121.12583770000003,-1.572824499999967],[121.14353580000011,-1.571975],[121.16151090000005,-1.574945499999956],[121.161439,-1.569473],[121.15800600000011,-1.563761199999931],[121.15845980000006,-1.561724499999968],[121.162656,-1.558292899999969],[121.17878320000011,-1.565967],[121.18781190000004,-1.566785899999957],[121.18732020000004,-1.552110299999924],[121.1883557000001,-1.547807899999952],[121.21096030000001,-1.512065199999938],[121.21633440000005,-1.517274699999973],[121.21904080000002,-1.517207199999973],[121.22328410000011,-1.514374399999951],[121.22748800000011,-1.507399599999928],[121.22568720000004,-1.499466599999948],[121.25733330000003,-1.475508299999944],[121.26329580000004,-1.472574],[121.27510040000004,-1.471250899999973],[121.2978399000001,-1.472878699999967],[121.35200510000004,-1.473071599999969],[121.36029510000003,-1.4567877],[121.376371,-1.45226],[121.4030527000001,-1.435252],[121.43267970000011,-1.404866399999946],[121.46594940000011,-1.404866399999946],[121.46618790000002,-1.398783399999957],[121.4748303,-1.37744],[121.47480330000008,-1.374436899999978],[121.48844620000011,-1.3755303],[121.50287090000006,-1.374531299999944],[121.50617570000009,-1.3758439],[121.51488540000003,-1.383712899999978],[121.51838250000003,-1.397929899999951],[121.52569270000004,-1.401362199999937],[121.54051680000009,-1.403085399999952],[121.548128,-1.406013799999926],[121.57055480000008,-1.424981299999956],[121.57927270000005,-1.420449899999937],[121.58718770000007,-1.418236799999931],[121.58959430000004,-1.414205599999946],[121.61463490000006,-1.406152899999938],[121.62865220000003,-1.395792599999936],[121.63057690000005,-1.392890499999965],[121.64022230000012,-1.389265699999953],[121.6434928000001,-1.386676799999975],[121.65036540000006,-1.378800499999954],[121.6536632000001,-1.377005099999963],[121.66369780000002,-1.36443],[121.68169210000008,-1.365407799999957],[121.69089720000011,-1.362509499999931],[121.71150190000003,-1.362935499999935],[121.72427920000007,-1.358933],[121.72675270000002,-1.357275199999947],[121.73445110000011,-1.346080699999959],[121.74970520000011,-1.333783899999958],[121.76234350000004,-1.332822499999963],[121.76962550000007,-1.329784599999925],[121.7788289,-1.330480399999942],[121.80081040000005,-1.325375699999938],[121.80397060000007,-1.323994699999957],[121.82321080000008,-1.306030299999975],[121.82788120000009,-1.306447299999945],[121.83186180000007,-1.313223799999946],[121.8344346,-1.313535799999954],[121.84010500000011,-1.311153799999943],[121.84944410000003,-1.315859],[121.85823630000004,-1.314895199999967],[121.86908830000004,-1.315729799999929],[121.86950380000007,-1.308263799999963],[121.87348940000004,-1.304117799999972],[121.8829687000001,-1.302877699999954],[121.88599050000005,-1.303708599999936],[121.88912390000007,-1.306961299999955],[121.891271,-1.306585899999959],[121.898521,-1.301106199999936],[121.90898990000005,-1.300872399999946],[121.91202350000003,-1.296392099999935],[121.91467680000005,-1.295106],[121.92007550000005,-1.298684099999946],[121.9237227000001,-1.299353099999962],[121.93002450000006,-1.295684699999924],[121.932207,-1.287485099999969],[121.94007180000006,-1.2843417],[121.949329,-1.282825199999934],[121.95362860000012,-1.285774199999935],[121.96387450000009,-1.284746599999949],[121.9628325000001,-1.285601099999951],[121.9633500000001,-1.289975699999957],[121.96820430000002,-1.291445099999976],[121.96352060000004,-1.294555],[121.96336730000007,-1.297781499999928],[121.96510440000009,-1.298766],[121.96314640000003,-1.300044599999978],[121.965218,-1.301701],[121.96297020000009,-1.302442099999951],[121.9624841000001,-1.307080299999939],[121.9613485000001,-1.30679],[121.95999270000004,-1.3094572],[121.96023910000008,-1.312472899999932],[121.96188830000006,-1.313936799999965],[121.96137910000004,-1.3174548],[121.96547770000006,-1.320767499999931],[121.965167,-1.321977599999968],[121.96280720000004,-1.3218003],[121.96261270000002,-1.329261299999928],[121.9651831000001,-1.332480399999952],[121.97444890000008,-1.334118399999966],[121.97477730000003,-1.335928199999955],[121.972273,-1.339056599999935],[121.97282030000008,-1.341963199999952],[121.97996410000007,-1.347826199999929],[121.99037620000001,-1.351657099999954],[121.99468120000006,-1.351379299999962],[121.99964350000005,-1.355214599999954],[122.00191990000008,-1.354382799999939],[122.00639500000011,-1.347749599999929],[122.00961390000009,-1.346158199999934],[122.00824850000004,-1.342624],[122.00741660000006,-1.338464899999963],[122.01189780000004,-1.336203799999964],[122.01526030000002,-1.338996099999974],[122.02317870000002,-1.338662899999974],[122.02713950000009,-1.340423499999929],[122.03363820000004,-1.350216899999964],[122.03740370000003,-1.351259],[122.04183880000005,-1.346289],[122.04534760000001,-1.336284199999966],[122.04809770000008,-1.332566899999961],[122.08479420000003,-1.300177599999927],[122.08908210000004,-1.282343],[122.0971684000001,-1.266797899999972],[122.10079280000002,-1.249034499999937],[122.09556740000005,-1.239185899999939],[122.09632110000007,-1.236888599999929],[122.09273040000005,-1.225981199999978],[122.0880562000001,-1.223529799999937],[122.08451570000011,-1.220037699999978],[122.08425210000007,-1.217927799999927],[122.08189450000009,-1.219248499999935],[122.081106,-1.218392],[122.08130410000001,-1.2149573],[122.07841670000005,-1.211997699999927],[122.07880870000008,-1.210546699999952],[122.08220480000011,-1.210454699999957],[122.05453520000003,-1.1762172],[122.04314910000005,-1.140030499999966],[122.03097160000004,-1.119958399999973],[122.02598680000006,-1.131035499999939],[122.01903520000008,-1.140767799999935],[122.00621500000011,-1.142276],[122.007282,-1.1329737],[122.00605760000008,-1.1315123],[122.0030766000001,-1.132899599999973],[122.00315000000012,-1.128358899999967],[122.00047360000008,-1.127899],[121.99688130000004,-1.129979399999968],[121.99521020000009,-1.126025699999957],[121.99045690000003,-1.127367199999981],[121.98831310000003,-1.123058899999933],[121.98647860000005,-1.123906699999964],[121.98188980000009,-1.122216699999967],[121.97561990000008,-1.122144],[121.974856,-1.123222],[121.9727143,-1.122069],[121.97011540000005,-1.123148199999946],[121.96869870000012,-1.120638399999962],[121.966596,-1.119995199999948],[121.9667478,-1.118225],[121.96361360000003,-1.119304499999942],[121.96093610000003,-1.117382299999974],[121.96009290000006,-1.114150399999971],[121.95634650000011,-1.114460799999961],[121.95588510000005,-1.110536],[121.94923490000008,-1.113542],[121.94893120000006,-1.116774599999928],[121.95107160000009,-1.116003599999942],[121.95221980000008,-1.117926899999929],[121.95015650000005,-1.119621399999971],[121.94977790000007,-1.125316899999973],[121.94771490000005,-1.127473299999963],[121.94129160000011,-1.126861899999938],[121.94007280000005,-1.129022099999929],[121.93743930000005,-1.129372599999954],[121.93535640000005,-1.123862799999927],[121.93168230000003,-1.122749099999965],[121.9312642000001,-1.119261199999926],[121.92731120000008,-1.115705899999966],[121.92527370000005,-1.111556],[121.9259171000001,-1.103358799999967],[121.92355750000002,-1.098546699999929],[121.9193289000001,-1.097433199999955],[121.92092190000005,-1.095618399999978],[121.91953480000006,-1.094224],[121.9142663,-1.092622799999958],[121.90888570000004,-1.088344099999972],[121.8980954000001,-1.090223799999933],[121.8906492000001,-1.084235499999977],[121.890275,-1.080864599999927],[121.88841350000007,-1.079367599999955],[121.88543190000007,-1.071878199999958],[121.87761750000004,-1.072257599999944],[121.875009,-1.0662661],[121.87128550000011,-1.062522699999931],[121.8721021,-1.055147299999931],[121.86867140000004,-1.054255699999942],[121.86672950000002,-1.0460111],[121.86793620000003,-1.039389299999925],[121.86353550000001,-1.035817399999928],[121.86252370000011,-1.030740499999979],[121.85860760000003,-1.027858799999933],[121.85957140000005,-1.019653],[121.85553350000009,-1.015390299999979],[121.85448240000005,-1.0121006],[121.85391210000012,-1.002636499999937],[121.85608910000008,-0.998857599999951],[121.85503710000012,-0.993861899999956],[121.85265570000001,-0.993010199999958],[121.85188380000011,-0.983586799999955],[121.85626760000002,-0.968786],[121.85353490000011,-0.969210399999952],[121.85165940000002,-0.969449099999963]]],[[[121.77246610000009,-0.737977299999955],[121.76645830000007,-0.739881599999933],[121.76048,-0.738293899999974],[121.7575078000001,-0.741007599999932],[121.762374,-0.750172099999929],[121.76897290000011,-0.754596699999979],[121.7695265000001,-0.7449936],[121.77246610000009,-0.737977299999955]]],[[[121.62959350000006,-0.592764],[121.63078030000008,-0.590726899999936],[121.62645550000002,-0.582506099999932],[121.62338350000005,-0.588476899999932],[121.62059150000005,-0.590373099999965],[121.62265090000005,-0.5928288],[121.62617360000002,-0.594097899999952],[121.62959350000006,-0.592764]]],[[[121.64717510000003,-0.534648599999969],[121.64261010000007,-0.535122899999976],[121.64644,-0.5368669],[121.64717510000003,-0.534648599999969]]],[[[121.87207030000002,-0.512328099999934],[121.86872610000012,-0.515785299999948],[121.86592270000006,-0.516522099999975],[121.86101660000008,-0.523888799999952],[121.86166580000008,-0.5270584],[121.86546340000007,-0.529201599999965],[121.86851940000008,-0.528641199999925],[121.8691682000001,-0.530505599999969],[121.87361340000007,-0.5302246],[121.87497960000007,-0.526728],[121.872593,-0.524537899999928],[121.87378920000003,-0.520170499999949],[121.87194220000003,-0.516054199999928],[121.87207030000002,-0.512328099999934]]],[[[121.6761007,-0.484713399999976],[121.67999140000006,-0.4793167],[121.67452390000005,-0.483725299999946],[121.6761007,-0.484713399999976]]],[[[121.69024130000003,-0.475156799999979],[121.68886960000009,-0.475217],[121.6884387,-0.477263],[121.69007080000006,-0.476487199999951],[121.69029910000006,-0.4798288],[121.69273090000002,-0.4780913],[121.69128690000002,-0.477886],[121.691973,-0.474986699999931],[121.69024130000003,-0.475156799999979]]],[[[121.70589770000004,-0.466406],[121.70478490000005,-0.467095099999938],[121.71248720000006,-0.470327699999928],[121.7132577000001,-0.4695093],[121.70589770000004,-0.466406]]],[[[121.692487,-0.466656099999966],[121.69446790000006,-0.465703799999972],[121.69118850000007,-0.466833099999974],[121.692487,-0.466656099999966]]],[[[121.72491880000007,-0.465496299999927],[121.72523430000001,-0.464649699999939],[121.7242179000001,-0.465778399999977],[121.7229565,-0.464966799999956],[121.7221502000001,-0.466554199999962],[121.72376220000001,-0.466519199999937],[121.72491880000007,-0.465496299999927]]],[[[121.70354190000012,-0.467630499999927],[121.69756010000003,-0.464321299999938],[121.69545340000002,-0.465254],[121.70354190000012,-0.467630499999927]]],[[[121.71787470000004,-0.468105599999944],[121.71966220000002,-0.466059799999925],[121.71976820000009,-0.461544299999957],[121.7186458000001,-0.467118],[121.71622760000002,-0.468563899999936],[121.71787470000004,-0.468105599999944]]],[[[121.76668870000003,-0.461710599999947],[121.76794860000007,-0.460836799999925],[121.76716570000008,-0.459465699999953],[121.7646803,-0.459722299999953],[121.76668870000003,-0.461710599999947]]],[[[121.76165020000008,-0.459499],[121.76037340000005,-0.459858699999927],[121.7612921000001,-0.462635099999943],[121.761922,-0.462618099999929],[121.76243250000005,-0.463612099999978],[121.76316450000002,-0.463852199999963],[121.7653266000001,-0.462858599999947],[121.76571840000008,-0.461710499999924],[121.76165020000008,-0.459499]]],[[[121.75996490000011,-0.459138799999948],[121.76059490000011,-0.458282099999963],[121.75894370000003,-0.457904799999937],[121.75996490000011,-0.459138799999948]]],[[[121.75964220000003,-0.455077199999948],[121.75841650000007,-0.455111299999942],[121.75936940000008,-0.457253599999945],[121.76049310000008,-0.456534],[121.76057790000004,-0.458196399999963],[121.7630292,-0.458676699999955],[121.76068060000011,-0.454854599999976],[121.75964220000003,-0.455077199999948]]],[[[122.07321850000005,-0.443024899999955],[122.0730132000001,-0.441290299999935],[122.07163960000003,-0.441800099999966],[122.07321850000005,-0.443024899999955]]],[[[122.08388280000008,-0.442306199999962],[122.08419540000011,-0.439892],[122.0820629000001,-0.441409],[122.08388280000008,-0.442306199999962]]],[[[121.92201100000011,-0.439815099999976],[121.91934330000004,-0.439244799999926],[121.9187932000001,-0.440909099999942],[121.92350740000006,-0.449286099999938],[121.92842930000006,-0.444483599999955],[121.92686030000004,-0.443470199999979],[121.92735990000006,-0.441317399999946],[121.9247213000001,-0.439164199999936],[121.92201100000011,-0.439815099999976]]],[[[122.08190580000007,-0.439553],[122.08111030000009,-0.438958799999966],[122.0813879000001,-0.440596399999947],[122.08190580000007,-0.439553]]],[[[122.10264380000001,-0.438989099999958],[122.10071610000011,-0.439923799999974],[122.10518730000001,-0.442385099999967],[122.10264380000001,-0.438989099999958]]],[[[121.78561950000005,-0.440771099999949],[121.78609110000002,-0.439602799999932],[121.78467690000002,-0.438616799999977],[121.78424120000011,-0.441318499999966],[121.78561950000005,-0.440771099999949]]],[[[122.09571470000003,-0.4378023],[122.09324440000012,-0.4377544],[122.0957393000001,-0.4396462],[122.09571470000003,-0.4378023]]],[[[122.07448290000002,-0.439894799999934],[122.07259020000004,-0.436850399999969],[122.07316960000003,-0.440392499999973],[122.07448290000002,-0.439894799999934]]],[[[122.0849419000001,-0.437696099999926],[122.08302580000009,-0.437199299999975],[122.08534,-0.4394429],[122.0849419000001,-0.437696099999926]]],[[[121.79425170000002,-0.437486499999977],[121.7935265000001,-0.4362815],[121.79178520000005,-0.438946499999929],[121.79330850000008,-0.439092799999969],[121.79425170000002,-0.437486499999977]]],[[[121.78641790000006,-0.437740799999972],[121.7855115000001,-0.435477],[121.78503970000008,-0.437850099999935],[121.78641790000006,-0.437740799999972]]],[[[121.783662,-0.434892499999933],[121.78210250000006,-0.4351113],[121.78351680000003,-0.435878299999956],[121.783662,-0.434892499999933]]],[[[121.78913820000002,-0.436207799999977],[121.788377,-0.433469399999979],[121.78750620000005,-0.435878899999977],[121.78913820000002,-0.436207799999977]]],[[[122.08078260000002,-0.433729],[122.08006100000011,-0.433099099999936],[122.08130270000004,-0.434508599999958],[122.08078260000002,-0.433729]]],[[[122.09900310000012,-0.4331673],[122.09971460000008,-0.435120199999972],[122.10300440000003,-0.4357501],[122.09900310000012,-0.4331673]]],[[[121.94078390000004,-0.434682399999929],[121.94078350000007,-0.433064199999933],[121.93862150000007,-0.432172],[121.93812330000003,-0.434738899999957],[121.935574,-0.436525199999949],[121.9405071000001,-0.436300699999947],[121.94078390000004,-0.434682399999929]]],[[[122.1115205000001,-0.433480199999963],[122.11011370000006,-0.432155099999932],[122.11020440000004,-0.435468799999967],[122.11217990000011,-0.437336099999925],[122.11325670000008,-0.435347499999978],[122.1115205000001,-0.433480199999963]]],[[[122.08470760000012,-0.431356799999946],[122.08347690000005,-0.431442599999968],[122.08628850000002,-0.431644699999936],[122.08470760000012,-0.431356799999946]]],[[[122.01934480000011,-0.431592699999953],[122.01646070000004,-0.4292675],[122.01804350000009,-0.435441499999968],[122.02145930000006,-0.435853599999973],[122.02203660000009,-0.434107799999936],[122.01934480000011,-0.431592699999953]]],[[[122.07829880000008,-0.429329199999927],[122.07713150000006,-0.428592499999979],[122.07814040000005,-0.432074199999931],[122.078819,-0.4304719],[122.07981660000007,-0.4316893],[122.07829880000008,-0.429329199999927]]],[[[122.10987310000007,-0.427696599999933],[122.10894520000011,-0.426732799999968],[122.11223810000001,-0.431280799999968],[122.10987310000007,-0.427696599999933]]],[[[122.07608070000003,-0.428248],[122.07477330000006,-0.426494],[122.07444260000011,-0.428318599999955],[122.07566280000003,-0.429370899999924],[122.07608070000003,-0.428248]]],[[[122.07161930000007,-0.427319399999931],[122.07059090000007,-0.42646],[122.06907520000004,-0.428074399999957],[122.070452,-0.428530199999955],[122.0715517000001,-0.435354299999972],[122.07135930000004,-0.432600099999945],[122.07325880000008,-0.432546899999977],[122.07134130000009,-0.430512399999941],[122.07161930000007,-0.427319399999931]]],[[[122.06088090000003,-0.4278211],[122.0618416000001,-0.426214699999946],[122.05984250000006,-0.426621599999976],[122.06005440000001,-0.428092299999946],[122.0591121000001,-0.426912099999925],[122.06070870000008,-0.431033499999955],[122.06088090000003,-0.4278211]]],[[[121.97935370000005,-0.427434699999935],[121.97878330000003,-0.426141],[121.97835480000003,-0.430166399999962],[121.98113640000008,-0.430528599999946],[121.98156470000004,-0.427579699999967],[121.97935370000005,-0.427434699999935]]],[[[121.8039003,-0.428615899999954],[121.80321170000002,-0.425256799999943],[121.8023045000001,-0.428250499999933],[121.8039003,-0.428615899999954]]],[[[122.03126720000012,-0.426555599999972],[122.0284792000001,-0.42395],[122.0266524000001,-0.425207099999966],[122.0261713000001,-0.427721899999938],[122.02944030000003,-0.426853899999969],[122.03069,-0.427821899999969],[122.03126720000012,-0.426555599999972]]],[[[122.12636070000008,-0.425101199999972],[122.12582160000011,-0.423324],[122.12510370000007,-0.424438799999962],[122.12636070000008,-0.425101199999972]]],[[[122.06999,-0.424087099999952],[122.06951230000004,-0.4232648],[122.06939640000007,-0.426212799999973],[122.06999,-0.424087099999952]]],[[[122.10502430000008,-0.424052699999947],[122.10373760000004,-0.4242941],[122.10475530000008,-0.425227699999937],[122.105922,-0.423841599999946],[122.10502430000008,-0.424052699999947]]],[[[122.0153074000001,-0.425784599999929],[122.012712,-0.42317],[122.0125193,-0.425585199999944],[122.0153074000001,-0.425784599999929]]],[[[122.06869060000008,-0.422257899999977],[122.06709990000002,-0.422258399999976],[122.06617290000008,-0.425550399999963],[122.06820530000005,-0.425060499999972],[122.06869060000008,-0.422257899999977]]],[[[122.1187301000001,-0.425434699999926],[122.11848980000002,-0.422090899999944],[122.11756260000004,-0.423537199999942],[122.1187301000001,-0.425434699999926]]],[[[122.0728011000001,-0.422441499999934],[122.07141120000006,-0.422217599999954],[122.07074320000004,-0.423926699999924],[122.07241980000003,-0.424887499999954],[122.07259080000006,-0.429523],[122.07450090000009,-0.430836199999931],[122.0728011000001,-0.422441499999934]]],[[[122.0785800000001,-0.416346899999951],[122.07665640000005,-0.416462299999978],[122.0776512000001,-0.417692899999963],[122.07492860000002,-0.4176116],[122.07476620000011,-0.419794399999944],[122.07049470000004,-0.4188108],[122.06924040000001,-0.4226351],[122.0716691,-0.421370699999954],[122.07140790000005,-0.419778899999926],[122.07452280000007,-0.424258499999951],[122.07732710000005,-0.425094699999931],[122.0775059,-0.423092399999973],[122.0792014000001,-0.423272499999939],[122.0797391000001,-0.422566599999925],[122.07833670000002,-0.421024299999942],[122.0785800000001,-0.416346899999951]]],[[[121.802125,-0.4167495],[121.800493,-0.415982499999927],[121.79951360000007,-0.417406299999925],[121.802125,-0.4167495]]],[[[121.80694830000004,-0.418685299999936],[121.80611450000004,-0.416056399999945],[121.80295920000003,-0.416275],[121.80208840000012,-0.418757599999935],[121.80071020000003,-0.418793899999969],[121.80212410000001,-0.4224452],[121.80081840000003,-0.422591099999977],[121.79991130000008,-0.425402299999973],[121.79817050000008,-0.425438499999927],[121.79759080000008,-0.421276199999966],[121.79371010000011,-0.422188299999959],[121.79312890000006,-0.427993499999957],[121.79787940000006,-0.431097699999953],[121.800818,-0.425146799999936],[121.80662120000011,-0.423030099999949],[121.80694830000004,-0.418685299999936]]],[[[121.831739,-0.415679499999953],[121.83038390000002,-0.414533199999937],[121.83049210000001,-0.416006799999934],[121.831739,-0.415679499999953]]],[[[121.7923326,-0.4173687],[121.79516160000003,-0.416419799999971],[121.79646790000004,-0.412367299999971],[121.79574280000008,-0.410468699999967],[121.79102820000003,-0.409737699999937],[121.78823510000007,-0.412621699999931],[121.78856110000004,-0.415798099999961],[121.7923326,-0.4173687]]],[[[121.83146880000004,-0.409948899999961],[121.83282420000012,-0.409185099999945],[121.8311979,-0.408966499999963],[121.83146880000004,-0.409948899999961]]],[[[121.852872,-0.4100517],[121.85118120000004,-0.408784599999933],[121.84293420000006,-0.412116399999945],[121.842147,-0.416976099999943],[121.83875150000006,-0.415247499999964],[121.833186,-0.419526],[121.82722930000011,-0.426993799999934],[121.81787170000007,-0.434282],[121.80908450000004,-0.4366013],[121.8063615000001,-0.440474799999947],[121.8031985,-0.442115299999955],[121.7948728,-0.441759099999956],[121.79110260000004,-0.444761699999958],[121.78942240000003,-0.437116899999978],[121.78809360000002,-0.4370074],[121.788554,-0.4408298],[121.78489260000003,-0.441730099999972],[121.78489180000008,-0.447026699999924],[121.7831016,-0.448719099999948],[121.78331920000005,-0.444869599999947],[121.77929130000007,-0.432735899999955],[121.77860020000003,-0.423110099999974],[121.77397850000011,-0.417121899999927],[121.76897970000005,-0.415650699999958],[121.77104220000001,-0.418318899999974],[121.7697018,-0.4199861],[121.77196,-0.422805899999958],[121.77039370000011,-0.424836899999946],[121.76881320000007,-0.421168299999977],[121.76750320000008,-0.4213197],[121.76879840000004,-0.419667599999968],[121.76696170000002,-0.417939299999944],[121.76544060000003,-0.419879299999934],[121.76648030000001,-0.422296599999925],[121.76442,-0.421224199999926],[121.76381830000003,-0.423917499999959],[121.7631272000001,-0.421980599999927],[121.761203,-0.423826299999973],[121.75792650000005,-0.422706],[121.7549494000001,-0.429575199999931],[121.75503880000008,-0.434265899999957],[121.76351410000007,-0.445979099999931],[121.76065870000002,-0.443406299999936],[121.76307510000004,-0.450027699999964],[121.76156520000006,-0.451576799999941],[121.76224990000003,-0.455602399999975],[121.76486480000005,-0.457993699999975],[121.76681870000004,-0.458690099999956],[121.76886250000007,-0.461020699999949],[121.76366140000005,-0.464046],[121.76242890000003,-0.463803699999971],[121.76155720000008,-0.463047],[121.76032480000003,-0.462713899999926],[121.7593634000001,-0.459505899999954],[121.75765,-0.458779199999924],[121.75614830000006,-0.450668599999972],[121.75402170000007,-0.4489806],[121.75317220000011,-0.4506902],[121.7490236000001,-0.4522713],[121.73835250000002,-0.448728699999947],[121.73109290000002,-0.451712199999974],[121.73080520000008,-0.460469199999977],[121.728713,-0.464193199999954],[121.72319830000004,-0.468759699999964],[121.72293720000005,-0.4713732],[121.72088280000003,-0.473207899999977],[121.716893,-0.474866099999929],[121.7154097,-0.472740299999941],[121.71936640000001,-0.471917599999927],[121.71788290000006,-0.47073],[121.7118660000001,-0.472423299999946],[121.70227890000001,-0.469090599999959],[121.70639170000004,-0.472863699999948],[121.7002218,-0.471104],[121.699461,-0.471926399999973],[121.69844710000007,-0.469799],[121.6965871000001,-0.472464799999955],[121.6937981000001,-0.471131199999945],[121.69503740000005,-0.472776499999952],[121.69376950000003,-0.473145],[121.69275560000005,-0.471414599999946],[121.69252970000002,-0.473938899999951],[121.69655880000005,-0.4731455],[121.69520610000006,-0.474591799999928],[121.69664290000003,-0.475272799999971],[121.69867160000001,-0.4743088],[121.69757310000011,-0.472890399999926],[121.69943230000001,-0.474564199999975],[121.69872770000006,-0.476067299999954],[121.70016480000004,-0.474819599999933],[121.70230590000006,-0.475614199999939],[121.70551690000002,-0.4805217],[121.70210760000009,-0.481428599999958],[121.7003615000001,-0.477287299999944],[121.6966423,-0.478336],[121.69703730000003,-0.475329599999952],[121.6940217,-0.480491099999938],[121.69295130000012,-0.479044399999964],[121.6912880000001,-0.484858499999973],[121.69393550000007,-0.489170199999933],[121.69221660000005,-0.490332799999976],[121.69294890000003,-0.491722699999968],[121.68962350000004,-0.495834699999932],[121.6858764000001,-0.495720499999948],[121.683706,-0.500485099999935],[121.68446040000003,-0.503794899999946],[121.68132810000009,-0.509856],[121.67715260000011,-0.513128399999971],[121.67229540000005,-0.513450699999964],[121.67048790000001,-0.518703699999946],[121.66972350000003,-0.5267049],[121.671179,-0.526906099999962],[121.6698219000001,-0.531629199999941],[121.66397840000002,-0.535344299999963],[121.66371250000009,-0.538096],[121.6623704000001,-0.5378095],[121.65950140000007,-0.540942299999926],[121.66342270000007,-0.534628599999962],[121.66291090000004,-0.532056099999977],[121.65624220000007,-0.539579499999945],[121.65498180000009,-0.537946499999975],[121.65360020000003,-0.540170799999942],[121.64942680000001,-0.539700099999948],[121.65252690000011,-0.548056299999928],[121.659067,-0.551517499999932],[121.6603371000001,-0.554020499999979],[121.65971020000006,-0.558315299999947],[121.65453470000011,-0.567299699999978],[121.6583051,-0.577175299999965],[121.67029450000007,-0.574983699999962],[121.6764356000001,-0.564797],[121.68021870000007,-0.561231499999963],[121.68661070000007,-0.561478799999975],[121.69221980000009,-0.563552899999934],[121.69518870000002,-0.562431099999969],[121.70017870000004,-0.563052399999947],[121.70471240000006,-0.554457599999978],[121.708054,-0.551680599999941],[121.705159,-0.546220799999958],[121.70941730000004,-0.538629699999944],[121.71374810000009,-0.535461699999928],[121.71235710000008,-0.532029099999932],[121.71347130000004,-0.5276581],[121.71499810000012,-0.526085599999931],[121.72127860000012,-0.525133799999935],[121.7257902,-0.519500799999946],[121.73177630000009,-0.509203199999945],[121.72996720000003,-0.5009328],[121.73534130000007,-0.496422199999927],[121.74122520000003,-0.495446299999969],[121.745956,-0.497767599999975],[121.74328660000003,-0.500392799999929],[121.74340730000006,-0.503629199999978],[121.74534770000002,-0.506804899999963],[121.74443710000003,-0.510834899999963],[121.74728770000002,-0.512178799999958],[121.75050340000007,-0.507599699999957],[121.75201970000012,-0.508210599999927],[121.76251460000003,-0.502045199999941],[121.76906570000006,-0.501558],[121.7724631000001,-0.498383299999944],[121.77429270000005,-0.498762399999976],[121.77349370000002,-0.5016809],[121.77591960000007,-0.503635399999951],[121.78125760000012,-0.503331099999969],[121.78101650000008,-0.495087399999932],[121.78315440000006,-0.494231499999955],[121.78365070000007,-0.497675899999933],[121.78603070000008,-0.496692199999927],[121.78420070000004,-0.500256299999933],[121.7944106000001,-0.505662399999949],[121.79895810000005,-0.506075],[121.80555030000005,-0.512231199999974],[121.80599370000004,-0.515641399999936],[121.81484320000004,-0.514840099999958],[121.82548080000004,-0.520951299999979],[121.82735790000004,-0.525312199999973],[121.82467310000004,-0.527739899999972],[121.82500930000003,-0.529214399999944],[121.8310828000001,-0.532192499999951],[121.8334628,-0.5311473],[121.83446870000012,-0.527399099999968],[121.84407920000001,-0.520668499999942],[121.84594060000006,-0.520452899999952],[121.84838250000007,-0.522664099999929],[121.85820850000005,-0.522384699999975],[121.86260160000006,-0.518635499999959],[121.86253880000004,-0.512645199999952],[121.85670790000006,-0.503922399999965],[121.85281730000008,-0.504981399999963],[121.85515320000002,-0.509636799999953],[121.85286420000011,-0.508377899999971],[121.85228360000008,-0.505736199999944],[121.84816340000009,-0.503556199999935],[121.84721790000003,-0.505307599999981],[121.8455394,-0.504816499999947],[121.8456910000001,-0.5013451],[121.8436163,-0.502543799999955],[121.84129640000003,-0.499871799999937],[121.833941,-0.496003099999939],[121.84501380000006,-0.496517599999947],[121.85103820000006,-0.493372399999942],[121.85864760000004,-0.496248099999946],[121.86313350000012,-0.4959812],[121.87320960000011,-0.512581199999943],[121.87519150000003,-0.522143899999946],[121.87787560000004,-0.526880399999925],[121.87413880000008,-0.531663199999969],[121.871676,-0.531752499999925],[121.871193,-0.534630499999935],[121.88614770000004,-0.539717399999972],[121.89129180000009,-0.534978399999943],[121.88948830000004,-0.533606499999962],[121.89230320000001,-0.534269699999925],[121.89414870000007,-0.529133399999978],[121.89450190000002,-0.533516399999939],[121.89854730000002,-0.531345699999974],[121.90020330000004,-0.5271107],[121.90668230000006,-0.527712799999961],[121.9162222000001,-0.5158446],[121.91776140000002,-0.515977],[121.9190794000001,-0.511372199999926],[121.91419650000012,-0.506902],[121.91454740000006,-0.503847099999973],[121.91160050000008,-0.502608299999963],[121.91333150000003,-0.501587299999926],[121.91311420000011,-0.4999967],[121.90997210000012,-0.498535599999968],[121.914589,-0.495568],[121.9147637000001,-0.491184899999951],[121.91001470000003,-0.493621299999973],[121.90913460000002,-0.491939099999968],[121.91383950000011,-0.489104299999951],[121.91247540000006,-0.486226899999963],[121.91665380000006,-0.487731],[121.91995340000005,-0.492245899999944],[121.922152,-0.491138499999977],[121.921228,-0.489633499999968],[121.922547,-0.488349199999959],[121.92113870000003,-0.484807699999976],[121.91638860000012,-0.483303799999931],[121.91603630000009,-0.481577199999947],[121.918938,-0.478167399999961],[121.92038950000006,-0.479185199999961],[121.92337580000003,-0.476934399999948],[121.9196538000001,-0.474511199999938],[121.92058630000008,-0.471813499999939],[121.91767360000006,-0.471109299999966],[121.91709070000002,-0.473572399999966],[121.91476080000007,-0.470757],[121.91744090000009,-0.468763399999943],[121.91650950000007,-0.464071499999932],[121.91790780000008,-0.463719799999978],[121.91825760000006,-0.461608499999954],[121.91720940000005,-0.459262499999966],[121.91534500000012,-0.460200599999951],[121.91383140000005,-0.453397299999949],[121.91534600000011,-0.453632099999936],[121.9142978000001,-0.4508169],[121.91301610000005,-0.451051299999961],[121.9142164000001,-0.448255399999937],[121.91678910000007,-0.448199599999953],[121.91706230000011,-0.446325899999977],[121.91851340000005,-0.448309299999949],[121.91681320000009,-0.444963],[121.9176361000001,-0.442606099999978],[121.91443320000008,-0.4398516],[121.91520020000007,-0.442331199999956],[121.91406580000012,-0.443661899999938],[121.91440120000004,-0.441347899999926],[121.90552890000004,-0.436234599999977],[121.90326230000005,-0.429252499999961],[121.89682470000002,-0.424892299999954],[121.88961680000011,-0.426113499999929],[121.88279240000008,-0.424355799999944],[121.87969830000009,-0.419963499999938],[121.87845430000004,-0.420769499999949],[121.87658990000011,-0.419722499999978],[121.8755139000001,-0.422140799999966],[121.87441210000009,-0.416810399999974],[121.87280150000004,-0.417508],[121.87166570000011,-0.413062399999944],[121.86907010000004,-0.409962199999939],[121.86584010000001,-0.4088191],[121.86259250000012,-0.410451599999931],[121.85930550000012,-0.409719199999927],[121.85531010000011,-0.411068199999931],[121.852872,-0.4100517]]],[[[121.83520970000006,-0.408257599999956],[121.83320390000006,-0.407711499999948],[121.83380010000008,-0.408857699999942],[121.83520970000006,-0.408257599999956]]],[[[121.82729510000001,-0.405418499999939],[121.82621080000001,-0.405418299999951],[121.8270238,-0.407001099999945],[121.82729510000001,-0.405418499999939]]],[[[122.10065010000005,-0.404442199999949],[122.09798680000006,-0.404232],[122.09813760000009,-0.4087508],[122.1005315000001,-0.408539299999973],[122.0993042,-0.4070634],[122.10065010000005,-0.404442199999949]]],[[[122.09589160000007,-0.402455099999941],[122.09484430000009,-0.402636099999938],[122.0954733000001,-0.404985799999963],[122.0974179000001,-0.403117499999951],[122.09589160000007,-0.402455099999941]]],[[[121.79831890000003,-0.402911299999971],[121.79879070000004,-0.400720699999965],[121.79697750000003,-0.399515599999972],[121.79570790000002,-0.401304399999958],[121.79831890000003,-0.402911299999971]]],[[[122.0800048000001,-0.396085199999959],[122.07652640000003,-0.396586299999967],[122.07602980000001,-0.398287399999958],[122.07911130000002,-0.399787499999945],[122.08050240000011,-0.398386399999936],[122.0800048000001,-0.396085199999959]]],[[[121.8178617000001,-0.408091299999967],[121.82615730000009,-0.400288099999955],[121.82707930000004,-0.397614],[121.81862300000012,-0.391936899999962],[121.8165093,-0.38828],[121.81374420000009,-0.390298899999948],[121.81477350000011,-0.395483799999965],[121.81233250000002,-0.405143399999929],[121.81303690000004,-0.407435699999951],[121.81661470000006,-0.408909799999947],[121.8178617000001,-0.408091299999967]]],[[[122.01887150000005,-0.368867799999975],[122.02204460000007,-0.366642799999966],[122.0217563000001,-0.363160099999959],[122.01810280000007,-0.365095599999961],[122.01771780000001,-0.3681983],[122.01887150000005,-0.368867799999975]]],[[[121.85306190000006,-0.359361599999943],[121.85234890000004,-0.357642799999951],[121.84807,-0.355489499999976],[121.84707190000006,-0.353119399999969],[121.84143430000006,-0.359559099999956],[121.84393280000006,-0.361658],[121.84329070000001,-0.362951399999929],[121.84671390000005,-0.363738799999965],[121.85120720000009,-0.362237799999946],[121.85306190000006,-0.359361599999943]]],[[[121.8508852000001,-0.353762099999926],[121.85176860000001,-0.352975299999969],[121.8494151000001,-0.3530474],[121.8508852000001,-0.353762099999926]]],[[[121.98357890000011,-0.353834799999959],[121.98343860000011,-0.352378399999964],[121.98227080000004,-0.352658699999949],[121.98357890000011,-0.353834799999959]]],[[[122.0141622000001,-0.353769599999964],[122.01521990000003,-0.351354399999934],[122.01214340000001,-0.352322],[122.0130084000001,-0.354058899999927],[122.0141622000001,-0.353769599999964]]],[[[121.87737690000006,-0.349992899999961],[121.87815090000004,-0.349080899999933],[121.86760570000001,-0.353293299999962],[121.85697890000006,-0.354585499999928],[121.85512430000006,-0.3576698],[121.85476790000007,-0.355589299999963],[121.85355550000008,-0.3556615],[121.85334100000011,-0.360184199999935],[121.85626480000008,-0.361912299999972],[121.85555650000003,-0.3649338],[121.86690640000006,-0.362157199999956],[121.87737690000006,-0.349992899999961]]],[[[121.83803540000008,-0.349444199999937],[121.83377510000003,-0.349804099999972],[121.82990840000002,-0.352182299999924],[121.83413270000005,-0.353156],[121.83803540000008,-0.349444199999937]]],[[[121.87998330000005,-0.343062099999941],[121.87664810000001,-0.342907899999943],[121.87900710000008,-0.344211],[121.88319740000009,-0.343768299999965],[121.87998330000005,-0.343062099999941]]],[[[121.94110540000008,-0.342219099999966],[121.93830690000004,-0.342761499999938],[121.94074870000009,-0.347574099999974],[121.94219920000012,-0.3436846],[121.94110540000008,-0.342219099999966]]],[[[122.0010516000001,-0.340588],[122.00214130000006,-0.340108099999952],[121.997238,-0.338530699999978],[121.99281090000011,-0.342781],[122.0010516000001,-0.340588]]],[[[121.9176609000001,-0.3382002],[121.91823150000005,-0.337196199999937],[121.91659110000012,-0.3373407],[121.9176609000001,-0.3382002]]],[[[122.14313670000001,-0.337119199999961],[122.1438501,-0.3348939],[122.14220950000004,-0.3368296],[122.14313670000001,-0.337119199999961]]],[[[121.85124240000005,-0.335393],[121.85182530000009,-0.333598599999959],[121.85045390000005,-0.335945099999947],[121.85124240000005,-0.335393]]],[[[121.98197610000011,-0.333587899999941],[121.97996420000004,-0.332996899999955],[121.979489,-0.334319],[121.97434720000001,-0.3355],[121.97644290000005,-0.336906799999952],[121.97982410000009,-0.336625799999979],[121.98270250000007,-0.3345444],[121.98197610000011,-0.333587899999941]]],[[[121.92950130000008,-0.326930499999946],[121.92529330000002,-0.327861799999937],[121.92557840000006,-0.329227699999933],[121.93092760000002,-0.328151799999944],[121.92950130000008,-0.326930499999946]]],[[[121.948304,-0.324028799999951],[121.93068750000009,-0.325962799999957],[121.93197110000006,-0.328115799999978],[121.9342534000001,-0.327690899999936],[121.93446720000009,-0.328839699999946],[121.92747760000009,-0.330060099999969],[121.92626490000009,-0.332357599999966],[121.92733450000003,-0.334863399999961],[121.92526630000009,-0.333931399999926],[121.92490950000001,-0.3356591],[121.9290459,-0.337450599999954],[121.93232580000006,-0.344778],[121.93510730000003,-0.345493],[121.93687920000002,-0.341567299999952],[121.94052810000005,-0.341830099999925],[121.94216630000005,-0.338727499999948],[121.9450925000001,-0.343268799999976],[121.9468968000001,-0.338927099999978],[121.9458777000001,-0.337380099999962],[121.94944410000005,-0.334368299999937],[121.950912,-0.337444],[121.9539727,-0.3374805],[121.949083,-0.339723299999946],[121.95178590000012,-0.342328799999962],[121.95027510000011,-0.343730699999981],[121.94948030000012,-0.342690399999924],[121.94773140000007,-0.343413899999973],[121.9472316,-0.348515599999928],[121.94823,-0.349230399999954],[121.95035450000012,-0.3466073],[121.95151080000005,-0.349592599999937],[121.9554025000001,-0.349891499999956],[121.954767,-0.345965599999943],[121.95593350000001,-0.342700099999945],[121.95721730000002,-0.342049],[121.95621860000006,-0.343921399999942],[121.95771610000008,-0.346074399999964],[121.96028390000004,-0.344129899999928],[121.9600541000001,-0.342763899999966],[121.961326,-0.343451499999958],[121.95750180000005,-0.349448499999937],[121.95978410000009,-0.349304],[121.95921340000007,-0.350950299999965],[121.9630644,-0.354116799999929],[121.9644197,-0.352172099999962],[121.963512,-0.3490511],[121.965775,-0.350951],[121.96691620000001,-0.350164199999938],[121.96584580000001,-0.355121199999928],[121.9712664000001,-0.353755799999931],[121.96677050000005,-0.357418899999971],[121.96646240000007,-0.358668899999941],[121.96980370000006,-0.361265499999945],[121.96725950000007,-0.360903399999927],[121.96717970000009,-0.363309499999957],[121.96570230000009,-0.357501899999932],[121.9578388000001,-0.3557823],[121.95895180000002,-0.356904199999974],[121.95803730000011,-0.358867],[121.95978230000003,-0.359654199999966],[121.95910990000004,-0.3660314],[121.96068750000006,-0.3694092],[121.95939780000003,-0.368777399999942],[121.95782860000008,-0.362123399999973],[121.9551748,-0.361906],[121.95604990000004,-0.357898899999952],[121.95187650000003,-0.352823699999931],[121.9489747,-0.353501799999947],[121.94979760000001,-0.357075],[121.95163690000004,-0.358350599999937],[121.951295,-0.360087399999941],[121.94851360000007,-0.359083],[121.94963660000008,-0.360032899999965],[121.94794280000008,-0.361235799999974],[121.94879810000009,-0.365252199999929],[121.94667740000011,-0.362484],[121.9458006000001,-0.3638046],[121.9457192000001,-0.356034199999954],[121.9422373000001,-0.359009899999933],[121.94125250000002,-0.364193],[121.938705,-0.358014399999945],[121.93465040000001,-0.358203899999978],[121.9333931000001,-0.361948699999971],[121.93621130000008,-0.363369199999966],[121.93415630000004,-0.364689699999929],[121.93495070000006,-0.366562199999976],[121.93744370000002,-0.367340399999932],[121.9370599,-0.369321399999933],[121.93985440000006,-0.371782199999927],[121.93703230000006,-0.370759699999951],[121.93612860000007,-0.368661],[121.93401860000006,-0.3696829],[121.93136170000002,-0.365403899999933],[121.928599,-0.367799],[121.92818780000005,-0.371308699999929],[121.92661740000005,-0.368902299999945],[121.9242637000001,-0.369616599999972],[121.92446230000007,-0.366731099999924],[121.92704550000008,-0.366821899999934],[121.92816110000001,-0.364470099999949],[121.9259968,-0.364243699999975],[121.92790190000005,-0.362941299999932],[121.9254218000001,-0.361430399999961],[121.92136670000002,-0.3628682],[121.92232580000007,-0.36143],[121.92148350000002,-0.358490099999926],[121.92312070000003,-0.359557699999925],[121.92632660000004,-0.355614099999968],[121.9250393000001,-0.352140399999939],[121.9202997000001,-0.350864399999978],[121.91963020000003,-0.348937599999942],[121.91542290000007,-0.3507825],[121.91484790000004,-0.348602399999947],[121.91627240000003,-0.347526099999925],[121.91284860000007,-0.341076199999975],[121.91580780000004,-0.339556799999968],[121.916027,-0.337575799999968],[121.914438,-0.337458099999935],[121.91350620000003,-0.339339499999937],[121.911753,-0.338561299999981],[121.91227320000007,-0.341709299999934],[121.91082070000004,-0.344106199999942],[121.910794,-0.339746199999979],[121.90947890000007,-0.338705799999957],[121.90864760000011,-0.342333],[121.8989481000001,-0.341680599999961],[121.89936920000002,-0.339916799999969],[121.90120460000003,-0.341237599999943],[121.90593760000002,-0.340324599999974],[121.90522460000011,-0.338958599999955],[121.90287100000012,-0.3388136],[121.90509530000008,-0.337574599999925],[121.90830050000011,-0.340659499999958],[121.90914750000002,-0.336444399999948],[121.90657980000003,-0.337520499999926],[121.90656260000003,-0.336100299999941],[121.902089,-0.333775099999968],[121.8973059000001,-0.335339399999953],[121.89966170000002,-0.338026299999967],[121.89638080000009,-0.339527499999974],[121.89766440000005,-0.340965899999958],[121.88860670000008,-0.341109499999959],[121.88782220000007,-0.341679299999953],[121.88939110000001,-0.342765],[121.881359,-0.345742599999937],[121.87853730000006,-0.351169599999935],[121.87237120000009,-0.3578806],[121.87224650000007,-0.359969699999965],[121.87394,-0.3602508],[121.88325850000001,-0.357927199999949],[121.88454260000003,-0.359718399999963],[121.87807980000002,-0.365678599999967],[121.874296,-0.364990699999964],[121.87418530000002,-0.371684399999936],[121.87187010000002,-0.371472199999971],[121.86880410000003,-0.367142799999954],[121.863954,-0.369864899999925],[121.86217080000006,-0.369367199999942],[121.85910290000004,-0.377833299999963],[121.86022480000008,-0.380945199999928],[121.85889940000004,-0.381523899999934],[121.85952060000011,-0.383405399999958],[121.86097920000009,-0.383291199999974],[121.86134220000008,-0.388534499999935],[121.8631289000001,-0.3895771],[121.86701760000005,-0.385532099999978],[121.87072680000006,-0.389756899999952],[121.87607550000007,-0.391557699999964],[121.87586070000009,-0.396360899999934],[121.873793,-0.393565499999966],[121.87036960000012,-0.394352],[121.8727225,-0.398875099999941],[121.87307780000003,-0.408354899999949],[121.87478940000005,-0.409286799999961],[121.87528810000003,-0.412516099999948],[121.879781,-0.414533899999924],[121.88184890000002,-0.417763499999978],[121.8838459000001,-0.417691399999967],[121.8840593000001,-0.421282599999927],[121.891405,-0.4234365],[121.89497150000011,-0.420777599999951],[121.89772070000004,-0.42156],[121.9010191000001,-0.425993],[121.90487030000008,-0.427142299999957],[121.90608180000004,-0.43418],[121.91799170000002,-0.439274499999954],[121.91984630000002,-0.437700799999959],[121.91917200000012,-0.434444199999973],[121.92232500000011,-0.432490799999925],[121.92335120000007,-0.433449799999948],[121.9220573,-0.437194499999976],[121.92566060000001,-0.434707499999945],[121.9274931000001,-0.436182199999962],[121.9322572000001,-0.430954499999928],[121.93255320000003,-0.4267754],[121.934496,-0.429172799999947],[121.93720850000011,-0.428766099999962],[121.93518130000007,-0.431597099999976],[121.93789160000006,-0.431235699999945],[121.93852250000009,-0.429197199999976],[121.9390039000001,-0.430914599999937],[121.94041060000006,-0.425599399999953],[121.94610950000003,-0.429517399999952],[121.94837310000003,-0.429362],[121.95022770000003,-0.427426499999967],[121.94814310000004,-0.423066099999971],[121.95353320000004,-0.418696],[121.9657707,-0.418435599999953],[121.96883470000012,-0.416236899999944],[121.9699769,-0.418232899999964],[121.9719993000001,-0.4157118],[121.9711860000001,-0.419056599999976],[121.97446780000007,-0.4213197],[121.97596570000007,-0.420822299999941],[121.97518090000005,-0.422758],[121.97731350000004,-0.425300199999924],[121.97962450000011,-0.424540699999966],[121.98033910000004,-0.420732399999963],[121.98352610000006,-0.419095599999935],[121.98487740000007,-0.415993],[121.98495220000007,-0.421827599999972],[121.98661880000009,-0.422978199999932],[121.99303150000003,-0.424820599999975],[121.99789870000006,-0.423270899999977],[121.99981260000004,-0.424670799999944],[122.00053660000003,-0.420486499999924],[122.002415,-0.422172599999953],[122.0015251000001,-0.418591799999945],[122.00265430000002,-0.418103],[122.00279670000009,-0.419749399999944],[122.0058524000001,-0.416055299999925],[122.00799150000012,-0.421129599999972],[122.01083030000007,-0.4211287],[122.00765390000004,-0.413704299999949],[122.00727440000003,-0.4116379],[122.00871210000003,-0.410264299999938],[122.00657290000004,-0.406464699999958],[122.00379140000007,-0.405668299999945],[122.007551,-0.403515599999935],[122.00650240000004,-0.400141599999927],[122.00802370000008,-0.402732399999934],[122.009355,-0.402222499999937],[122.00921290000008,-0.3981337],[122.01103140000009,-0.399789299999952],[122.01046050000002,-0.402584499999932],[122.0123860000001,-0.40481],[122.00938990000009,-0.408545599999968],[122.01259840000012,-0.417230099999927],[122.014881,-0.415511699999968],[122.01723420000008,-0.419383699999969],[122.02080090000004,-0.415367699999933],[122.02187040000001,-0.418172099999936],[122.02358210000011,-0.418308],[122.025009,-0.415223499999968],[122.02714880000008,-0.414219599999967],[122.02943110000001,-0.415224],[122.02978730000007,-0.418173099999933],[122.02736210000012,-0.420181],[122.02821770000003,-0.421972199999971],[122.02657710000005,-0.423482699999965],[122.02800350000007,-0.423627599999975],[122.03039330000001,-0.420326099999954],[122.03317470000002,-0.421900499999936],[122.03638450000005,-0.420399199999963],[122.03695490000007,-0.421756199999948],[122.0353857,-0.422977199999934],[122.04151940000008,-0.426071699999966],[122.046227,-0.424995799999976],[122.05093490000002,-0.420681399999978],[122.05464370000004,-0.421043699999927],[122.05443020000007,-0.417597199999932],[122.05172,-0.415878099999929],[122.053646,-0.4142229],[122.0573548000001,-0.414585199999976],[122.0585678000001,-0.4105598],[122.05371780000007,-0.4103421],[122.04765530000009,-0.413507],[122.05000880000011,-0.411418199999957],[122.04879640000001,-0.4100611],[122.05057940000006,-0.411345899999958],[122.05482350000011,-0.4087682],[122.05304120000005,-0.401513099999931],[122.05539480000004,-0.402228],[122.056179,-0.405964099999949],[122.05881780000004,-0.407837],[122.06131410000012,-0.4076202],[122.0620990000001,-0.405105399999968],[122.06345410000006,-0.405603099999951],[122.06345480000004,-0.3998589],[122.06516660000011,-0.399578599999927],[122.0654522000001,-0.3967744],[122.06723520000003,-0.397706299999925],[122.06816260000005,-0.396277099999963],[122.06395490000011,-0.392178799999954],[122.06245710000007,-0.392106199999944],[122.06210010000007,-0.393616899999927],[122.0612446,-0.391889],[122.05939010000009,-0.392612499999927],[122.06049590000009,-0.389663599999949],[122.06384830000002,-0.388876899999957],[122.06128660000002,-0.385146299999974],[122.05679290000012,-0.387733],[122.05886180000005,-0.382920699999943],[122.05736430000002,-0.380333399999927],[122.06307030000005,-0.379764099999932],[122.06078830000001,-0.376172599999961],[122.05636630000004,-0.375602199999946],[122.05451220000009,-0.372580599999935],[122.05593890000011,-0.3705725],[122.06014670000002,-0.373657699999967],[122.06150220000006,-0.370283599999937],[122.0586138000001,-0.368275099999948],[122.05576080000003,-0.368781399999932],[122.0571877000001,-0.364756],[122.05947010000011,-0.3640416],[122.05939920000003,-0.359871399999975],[122.05704690000005,-0.357534799999939],[122.05340830000011,-0.357428299999924],[122.05454290000011,-0.356928399999958],[122.0587230000001,-0.357851399999959],[122.0584014000001,-0.353050499999938],[122.06004220000011,-0.349106599999971],[122.05480000000011,-0.348165299999948],[122.05401530000006,-0.349386399999958],[122.05052090000004,-0.345080099999961],[122.04460070000005,-0.347956199999942],[122.04281830000002,-0.3410629],[122.04410220000011,-0.340122199999939],[122.0401796000001,-0.339045399999975],[122.03611330000001,-0.344933899999944],[122.03711170000008,-0.346010499999977],[122.03882360000011,-0.344219599999974],[122.040179,-0.345079099999964],[122.03761080000004,-0.347014699999932],[122.0397501000001,-0.351329799999974],[122.03925010000012,-0.358150499999965],[122.0406051000001,-0.362746],[122.03675380000004,-0.358077899999955],[122.035042,-0.358077699999967],[122.0343286000001,-0.3600135],[122.0344004000001,-0.3552734],[122.03333060000011,-0.354775699999948],[122.0305843000001,-0.358077199999968],[122.02580630000011,-0.352187799999967],[122.022953,-0.355272099999979],[122.01895910000007,-0.353408199999933],[122.019244,-0.357352299999945],[122.02395120000006,-0.359008199999948],[122.02395080000008,-0.362165299999958],[122.02245290000008,-0.363748199999975],[122.02502030000005,-0.3661185],[122.02088330000004,-0.368126299999972],[122.0188859000001,-0.370930299999941],[122.01366260000009,-0.369891099999961],[122.01168210000003,-0.372865299999944],[122.01203540000006,-0.374983699999973],[122.01117150000005,-0.373818399999948],[122.011403,-0.368742199999929],[122.00879410000005,-0.367048399999931],[122.01014930000008,-0.366478699999959],[122.00900840000008,-0.364389],[122.01150480000001,-0.363819299999932],[122.00908,-0.362091299999975],[122.0107918000001,-0.361594],[122.00651260000006,-0.359585299999935],[122.005086,-0.360869699999967],[122.00209080000002,-0.358001799999954],[122.004088,-0.355849099999944],[122.00180570000009,-0.355631699999947],[121.99972580000008,-0.353173199999958],[121.9988929000001,-0.355923099999927],[121.9973807,-0.351608],[121.99595870000007,-0.3520783],[121.9951129000001,-0.354991],[121.99197470000001,-0.355135399999938],[121.99141750000001,-0.353335199999947],[121.97913660000006,-0.355631499999959],[121.980923,-0.353686799999934],[121.97856650000006,-0.351397899999938],[121.980765,-0.349571],[121.98116190000007,-0.351208299999939],[121.98313120000012,-0.350756199999978],[121.98406390000002,-0.348847599999942],[121.98434370000007,-0.350105],[121.98548490000007,-0.349752299999977],[121.98633010000003,-0.347608599999944],[121.98955060000003,-0.346948599999962],[121.99033770000005,-0.344779599999924],[121.99307650000003,-0.343618099999958],[121.99098520000007,-0.341437499999927],[121.98644460000003,-0.3432654],[121.985839,-0.345642199999929],[121.98329650000005,-0.3440574],[121.98323610000011,-0.3425947],[121.98178320000011,-0.342777399999932],[121.97990630000004,-0.3446665],[121.97996650000005,-0.347043399999961],[121.97863490000009,-0.344910099999936],[121.97524440000007,-0.348261799999932],[121.97451810000007,-0.346677099999965],[121.97215690000007,-0.348078599999951],[121.96804080000004,-0.343751],[121.9718544000001,-0.346676799999955],[121.9751844000001,-0.342776599999979],[121.97809030000008,-0.343020699999954],[121.979059,-0.341558099999929],[121.97657720000007,-0.339485699999955],[121.971976,-0.341984],[121.97318710000002,-0.338693099999944],[121.97064460000001,-0.337595799999974],[121.972703,-0.336620899999957],[121.97288480000009,-0.334853499999952],[121.96920100000011,-0.326690499999927],[121.96549220000009,-0.326753399999973],[121.95949870000004,-0.331881799999962],[121.957932,-0.328408],[121.9514421,-0.3243186],[121.948304,-0.324028799999951]]],[[[122.03339320000009,-0.326669799999934],[122.03714290000005,-0.325032799999974],[122.03743180000004,-0.3228979],[122.03579740000009,-0.321540899999945],[122.03137460000005,-0.323765799999933],[122.03108590000011,-0.326479599999971],[122.03339320000009,-0.326669799999934]]],[[[121.94919640000012,-0.3131559],[121.94711550000011,-0.312432],[121.94352720000006,-0.315534399999933],[121.93915020000009,-0.315751],[121.94338330000005,-0.319360699999947],[121.94840640000007,-0.320157199999926],[121.94969810000009,-0.316692799999942],[121.94919640000012,-0.3131559]],[[121.94566490000011,-0.315172699999948],[121.94652090000011,-0.313589799999932],[121.94908840000005,-0.314386099999979],[121.94566490000011,-0.315172699999948]]],[[[122.23397280000006,-0.314076299999954],[122.23383030000002,-0.311353299999951],[122.23240360000011,-0.314076199999931],[122.23397280000006,-0.314076299999954]]],[[[121.98292790000005,-0.316118199999949],[121.98591810000005,-0.314346199999932],[121.98329170000011,-0.3105763],[121.97828950000007,-0.313698399999964],[121.98052470000005,-0.316596199999935],[121.98292790000005,-0.316118199999949]]],[[[121.961969,-0.311420399999975],[121.96132320000004,-0.310407199999929],[121.95995980000009,-0.311854399999959],[121.96283,-0.313437699999952],[121.961969,-0.311420399999975]]],[[[122.32920680000007,-0.30475],[122.32831540000006,-0.3036774],[122.32690380000008,-0.304343],[122.32742370000005,-0.306894899999975],[122.32931810000002,-0.306340299999931],[122.32920680000007,-0.30475]]],[[[122.23841060000007,-0.301550499999962],[122.23825210000007,-0.300435599999958],[122.23228740000002,-0.301695199999926],[122.23344340000006,-0.306680599999936],[122.23472520000007,-0.307285599999943],[122.23448840000003,-0.310041399999932],[122.23788960000002,-0.307093799999961],[122.23841060000007,-0.301550499999962]]],[[[122.31700110000008,-0.288932399999965],[122.31628450000005,-0.287765299999933],[122.31512690000011,-0.288814699999932],[122.31700110000008,-0.288932399999965]]],[[[122.27342050000004,-0.286830899999927],[122.27216980000003,-0.285871899999961],[122.2701717000001,-0.286776399999951],[122.27216970000006,-0.287889299999961],[122.27342050000004,-0.286830899999927]]],[[[122.26707850000003,-0.289844199999948],[122.268347,-0.287631099999942],[122.26555680000001,-0.285502799999961],[122.26301990000002,-0.289503499999967],[122.26707850000003,-0.289844199999948]]],[[[122.31574590000002,-0.283413799999948],[122.31368450000002,-0.282487199999935],[122.31280090000007,-0.284599499999956],[122.31438380000009,-0.284043799999949],[122.31408920000001,-0.285896699999967],[122.316766,-0.287345699999946],[122.31574590000002,-0.283413799999948]]],[[[122.25804610000012,-0.282125699999938],[122.25763290000009,-0.279981599999928],[122.2553593,-0.2810852],[122.25804610000012,-0.282125699999938]]],[[[122.0924199000001,-0.274954099999945],[122.0930403000001,-0.2720706],[122.0906781000001,-0.2707922],[122.08565790000011,-0.275310299999944],[122.086396,-0.276558899999941],[122.08102040000006,-0.293592199999978],[122.087074,-0.291214499999967],[122.0849478,-0.293384399999979],[122.085656,-0.298378599999978],[122.08388410000009,-0.300816099999963],[122.0799568000001,-0.301648199999931],[122.08060830000011,-0.306454799999926],[122.0789112000001,-0.307003899999927],[122.07697470000005,-0.304592299999968],[122.07560970000009,-0.308902099999955],[122.0733709000001,-0.302885],[122.06978930000002,-0.303186699999969],[122.0735284000001,-0.317755299999931],[122.07691810000006,-0.320991399999969],[122.07648390000008,-0.3223912],[122.07266020000009,-0.321342199999947],[122.07187850000003,-0.323135699999966],[122.07465960000002,-0.325278499999968],[122.06762160000005,-0.3284292],[122.0757933000001,-0.344524],[122.07118780000008,-0.344481299999927],[122.06749550000006,-0.34855],[122.06345460000011,-0.347851],[122.06375930000002,-0.350125499999933],[122.06137020000006,-0.352881699999955],[122.06128380000007,-0.355112499999962],[122.06224060000011,-0.359092699999962],[122.06415230000005,-0.358917299999973],[122.06211960000007,-0.361064599999963],[122.06198150000012,-0.366353699999934],[122.06332870000006,-0.367753099999959],[122.0671956000001,-0.367271099999925],[122.06702140000004,-0.365740199999948],[122.06906350000008,-0.365827199999956],[122.06836810000004,-0.364690099999962],[122.07023690000005,-0.366701699999965],[122.0691945000001,-0.368364099999951],[122.07023360000005,-0.368682299999932],[122.06610990000001,-0.369589599999927],[122.06629140000007,-0.371509299999957],[122.064503,-0.372564299999965],[122.06667920000007,-0.378084699999931],[122.06428770000002,-0.3807439],[122.06928570000002,-0.386778899999968],[122.06715780000002,-0.3909785],[122.07037360000004,-0.393427199999962],[122.08388,-0.392182],[122.08487460000003,-0.394883299999947],[122.08129780000002,-0.399686899999949],[122.07675930000005,-0.400859],[122.07284940000011,-0.398188199999936],[122.06827780000003,-0.3997903],[122.06716050000011,-0.405124399999977],[122.06361460000005,-0.4085127],[122.0683752000001,-0.413516399999935],[122.0709647000001,-0.412897],[122.07352530000003,-0.415562299999976],[122.078864,-0.414215499999955],[122.07965310000009,-0.417709599999966],[122.07891790000008,-0.420699299999967],[122.07999350000011,-0.42185],[122.07997050000006,-0.427893899999958],[122.08100160000004,-0.4287136],[122.08125890000008,-0.4268],[122.08241880000003,-0.427415899999971],[122.08315890000006,-0.424367099999927],[122.08341750000011,-0.427610199999947],[122.08451270000012,-0.427123499999936],[122.085092,-0.4248531],[122.08518990000005,-0.429685399999926],[122.08989350000002,-0.430040799999972],[122.09092480000004,-0.4315],[122.0905924000001,-0.432448299999976],[122.08880230000011,-0.430716599999926],[122.08746910000002,-0.432068699999945],[122.08884890000002,-0.432809],[122.08668760000012,-0.43318],[122.08955830000002,-0.437364199999934],[122.08770120000008,-0.439966399999946],[122.0894125000001,-0.442428799999959],[122.09771150000006,-0.446587799999975],[122.0983443,-0.443657299999927],[122.09577420000005,-0.442396599999938],[122.0954511000001,-0.440367399999957],[122.0925572000001,-0.442476899999974],[122.09308740000006,-0.4395918],[122.09136460000002,-0.437463799999932],[122.09171350000008,-0.435474299999953],[122.08973680000008,-0.4338856],[122.0927134000001,-0.434721899999943],[122.09311150000008,-0.436213899999927],[122.09381,-0.435000599999967],[122.09478640000009,-0.436128499999938],[122.09561760000008,-0.4353033],[122.09715790000007,-0.437200899999937],[122.0964206000001,-0.432993199999942],[122.093648,-0.431439199999943],[122.093372,-0.427185899999927],[122.09834060000003,-0.430381399999931],[122.10410280000008,-0.431077499999958],[122.10630160000005,-0.434146599999963],[122.10838060000003,-0.434006499999953],[122.105826,-0.432631799999967],[122.1035998000001,-0.428059399999938],[122.107676,-0.430037899999945],[122.10634330000005,-0.427787199999955],[122.10380580000003,-0.427420699999971],[122.10185450000006,-0.424866799999961],[122.1022187000001,-0.422711399999969],[122.10429590000001,-0.4216253],[122.10341860000005,-0.417876499999977],[122.09946450000007,-0.420096],[122.09255020000012,-0.415235399999972],[122.093516,-0.4144146],[122.09114410000007,-0.410874],[122.09469150000007,-0.4075763],[122.09363440000004,-0.405601199999978],[122.09450830000003,-0.399249299999951],[122.09740610000006,-0.398488799999939],[122.10389730000009,-0.401526199999978],[122.10788280000008,-0.404290699999933],[122.10854770000003,-0.4072688],[122.11105390000012,-0.409425799999951],[122.11866150000003,-0.410669799999937],[122.11733440000012,-0.414924799999937],[122.11799910000002,-0.417416699999933],[122.11993110000003,-0.417081799999949],[122.1215621,-0.420515499999965],[122.12557780000009,-0.423036799999977],[122.12674020000009,-0.421617599999934],[122.12974040000006,-0.423925199999928],[122.12891690000004,-0.416649899999925],[122.13063350000004,-0.414089199999978],[122.13211730000012,-0.415243799999928],[122.13238680000006,-0.411800699999958],[122.13496850000001,-0.415756499999929],[122.13350780000007,-0.418138799999952],[122.136431,-0.420239599999945],[122.13698680000005,-0.416876799999955],[122.1387228000001,-0.415889399999969],[122.13642870000001,-0.411482899999953],[122.13823760000002,-0.410431599999924],[122.14262320000012,-0.416665099999932],[122.14603350000004,-0.418695699999944],[122.14108940000006,-0.405667199999925],[122.145752,-0.406926899999974],[122.14797790000011,-0.403844],[122.14644670000007,-0.402653499999928],[122.14818580000008,-0.400411299999973],[122.15073560000008,-0.402417599999978],[122.1504126000001,-0.400550799999962],[122.15396060000012,-0.3971874],[122.15395940000008,-0.392704],[122.15096770000002,-0.3945261],[122.14929690000008,-0.391444199999967],[122.153402,-0.389972099999966],[122.14992160000008,-0.385489599999971],[122.14999050000006,-0.382477299999948],[122.146651,-0.38493],[122.14964160000011,-0.378694499999938],[122.14915310000004,-0.372950299999957],[122.14762170000006,-0.3709892],[122.14462980000008,-0.3718305],[122.14337780000005,-0.3742127],[122.13990910000007,-0.3754987],[122.13931820000005,-0.3744969],[122.142316,-0.3711173],[122.14031510000007,-0.370500599999957],[122.14073220000012,-0.368679099999952],[122.143863,-0.366436599999929],[122.14379280000003,-0.363774599999942],[122.14553240000009,-0.3634239],[122.14581030000011,-0.361742599999957],[122.14135970000007,-0.357830299999932],[122.14654020000012,-0.356636399999957],[122.14275020000002,-0.353238099999942],[122.14462560000004,-0.351198099999976],[122.143574,-0.345910699999934],[122.14090970000007,-0.343569599999967],[122.141584,-0.339150399999937],[122.13456850000011,-0.339756299999976],[122.1347383000001,-0.341466599999933],[122.13820810000004,-0.342059399999926],[122.13832160000004,-0.346025199999929],[122.1338194000001,-0.345308599999953],[122.13562040000011,-0.3461013],[122.13449590000005,-0.350898299999926],[122.13978710000004,-0.356524699999966],[122.136823,-0.355467799999929],[122.13160590000007,-0.347563399999956],[122.12935990000005,-0.347269799999935],[122.12821010000005,-0.35034],[122.121159,-0.338484499999936],[122.11911370000007,-0.3377864],[122.11863950000009,-0.340580699999975],[122.12021030000005,-0.342437099999927],[122.11644850000005,-0.341592299999945],[122.11535330000004,-0.343816899999979],[122.11344290000011,-0.3423772],[122.11347980000005,-0.339158],[122.11091020000003,-0.339010899999948],[122.1117488000001,-0.3373026],[122.110558,-0.336702599999967],[122.11174840000001,-0.335446899999965],[122.11362960000008,-0.335938799999951],[122.1130644000001,-0.331924399999934],[122.11603670000011,-0.333438699999931],[122.11727770000005,-0.3313554],[122.11520850000011,-0.330787799999939],[122.1157720000001,-0.326773099999969],[122.11370370000009,-0.328477699999951],[122.11234860000002,-0.326925299999971],[122.10975330000008,-0.329274],[122.10885010000004,-0.328100099999972],[122.10997840000005,-0.326282],[122.10591560000012,-0.327116099999955],[122.1052797000001,-0.325819899999942],[122.11114410000005,-0.324123],[122.114454,-0.320789499999933],[122.11148240000011,-0.3226837],[122.10790840000004,-0.32223],[122.11197030000005,-0.316926899999942],[122.10982520000005,-0.312988599999926],[122.11068980000005,-0.309920699999964],[122.10667940000008,-0.310836199999926],[122.10782940000001,-0.303445],[122.10431760000006,-0.305276899999967],[122.10236880000002,-0.303998499999977],[122.10434750000002,-0.300817799999948],[122.1019219000001,-0.297159199999953],[122.10225910000008,-0.290152599999942],[122.09826540000006,-0.291066799999953],[122.09909880000009,-0.288789699999938],[122.09808280000004,-0.287199299999941],[122.1003396000001,-0.2853809],[122.09827020000012,-0.283790599999975],[122.09511010000006,-0.283829099999934],[122.09578570000008,-0.281821399999956],[122.09446960000002,-0.278413299999954],[122.09567270000002,-0.273830399999952],[122.0924199000001,-0.274954099999945]]],[[[122.15139540000007,-0.263122499999952],[122.14821570000004,-0.267448199999933],[122.151513,-0.270046399999956],[122.1473797000001,-0.272307199999943],[122.14721250000002,-0.273683399999925],[122.15011920000006,-0.276377799999977],[122.14961190000008,-0.274694099999977],[122.152318,-0.274581199999943],[122.15439910000009,-0.271610299999963],[122.15332090000004,-0.266492399999947],[122.15502250000009,-0.265705699999955],[122.15139540000007,-0.263122499999952]]],[[[122.096189,-0.256308499999932],[122.09504940000011,-0.255065399999978],[122.09270660000004,-0.256626899999958],[122.09150340000008,-0.260515099999964],[122.09422590000008,-0.260865899999942],[122.096189,-0.256308499999932]]],[[[122.12829340000008,-0.268102799999951],[122.12943810000002,-0.266093799999965],[122.12682670000004,-0.258855099999948],[122.1246258000001,-0.25658],[122.11734790000003,-0.253063599999962],[122.1152935,-0.253152099999966],[122.11212380000006,-0.2563428],[122.11250490000009,-0.262547199999972],[122.11086130000001,-0.264585699999941],[122.113796,-0.2653836],[122.11309150000011,-0.267156299999954],[122.1153819000001,-0.269636599999956],[122.12251170000002,-0.271204599999976],[122.12829340000008,-0.268102799999951]]],[[[122.08906040000011,-0.241456899999946],[122.0868144000001,-0.2410427],[122.0683709000001,-0.250404499999945],[122.05970310000009,-0.250563099999965],[122.04777660000002,-0.255817],[122.043158,-0.256135099999938],[122.03663770000003,-0.261770599999977],[122.03028160000008,-0.2738092],[122.02825690000009,-0.275114699999961],[122.031863,-0.276994],[122.04416860000003,-0.277727499999969],[122.054197,-0.27362],[122.0642888000001,-0.2669966],[122.06998340000007,-0.261296399999935],[122.07425690000002,-0.266297299999962],[122.08330120000005,-0.265819699999952],[122.08969180000008,-0.259068499999955],[122.09013490000007,-0.256138599999929],[122.0911473000001,-0.256043099999943],[122.091495,-0.258941299999947],[122.09402610000006,-0.253877699999975],[122.09399480000002,-0.249068699999953],[122.09532360000003,-0.247794899999974],[122.08906040000011,-0.241456899999946]]],[[[122.20820630000003,-0.223896899999943],[122.20991720000006,-0.221850199999949],[122.20654520000005,-0.223322699999926],[122.20820630000003,-0.223896899999943]]],[[[122.2846009000001,-0.220981399999971],[122.28231850000009,-0.219787099999962],[122.28144350000002,-0.220592199999942],[122.28380190000007,-0.222736399999974],[122.28730170000006,-0.2228903],[122.2846009000001,-0.220981399999971]]],[[[122.26461170000005,-0.219958099999928],[122.26521810000008,-0.218275499999947],[122.26354190000006,-0.217515499999934],[122.26350610000009,-0.2201028],[122.26461170000005,-0.219958099999928]]],[[[122.20865330000004,-0.210343499999965],[122.20369460000006,-0.210642699999937],[122.20505810000009,-0.213238699999977],[122.20066640000005,-0.211899699999947],[122.19782370000007,-0.214761299999964],[122.1971208000001,-0.213459899999975],[122.198477,-0.212076699999955],[122.19606510000006,-0.211273299999959],[122.192535,-0.213118299999962],[122.19146440000009,-0.212291899999968],[122.19050070000003,-0.214950499999929],[122.18933260000006,-0.213428],[122.1850763000001,-0.215183699999955],[122.18666420000011,-0.217123899999933],[122.18438030000004,-0.216459099999952],[122.18384490000005,-0.218165599999963],[122.17622360000007,-0.221567099999959],[122.176164,-0.222897499999931],[122.1735771000001,-0.223001599999975],[122.16680350000001,-0.230472],[122.16511950000006,-0.229726699999958],[122.164046,-0.232539899999949],[122.16273210000008,-0.2320926],[122.163102,-0.235148099999947],[122.16143650000004,-0.234011499999951],[122.15723560000004,-0.234626099999957],[122.15643960000011,-0.238762],[122.1539226000001,-0.242338899999936],[122.15262740000003,-0.239730499999951],[122.15062850000004,-0.242450499999961],[122.14883350000002,-0.242170899999962],[122.14751950000004,-0.243698499999937],[122.14631620000011,-0.249008099999969],[122.14839880000011,-0.252497099999971],[122.15040990000011,-0.251918199999977],[122.14963030000001,-0.253612499999974],[122.15123090000009,-0.252992399999926],[122.15373540000007,-0.257909099999949],[122.15151980000007,-0.262289399999929],[122.1558702000001,-0.260883799999931],[122.15562370000009,-0.259396299999935],[122.15767570000003,-0.258197699999926],[122.16079510000009,-0.2586103],[122.1584150000001,-0.261089899999945],[122.15960560000008,-0.262990499999944],[122.16190330000006,-0.2587341],[122.16674640000008,-0.256703899999934],[122.16543220000005,-0.253527199999951],[122.16945120000003,-0.250904],[122.16860630000008,-0.248436099999935],[122.17214010000009,-0.251384899999948],[122.1747094000001,-0.248171799999966],[122.17816510000011,-0.251149599999962],[122.17791590000002,-0.252967499999954],[122.17337020000002,-0.256070199999954],[122.17408580000006,-0.262746299999947],[122.18037370000002,-0.279295799999943],[122.19269330000009,-0.277183499999978],[122.1956143000001,-0.2744269],[122.199864,-0.275639599999977],[122.204735,-0.271884099999966],[122.20758650000005,-0.2745892],[122.20299000000011,-0.276420599999938],[122.20184330000006,-0.278628199999957],[122.20673290000002,-0.282383399999958],[122.20874950000007,-0.287693299999944],[122.21326650000003,-0.291544299999941],[122.21529450000003,-0.290368299999955],[122.21394180000004,-0.287274899999943],[122.21584710000002,-0.287460199999941],[122.21861210000009,-0.283950399999981],[122.22793380000007,-0.281671899999935],[122.22954090000007,-0.283056599999952],[122.23367070000006,-0.283125899999959],[122.23960970000007,-0.2806119],[122.23711660000004,-0.285175399999957],[122.23546680000004,-0.285444799999937],[122.2346255000001,-0.289174299999956],[122.22927220000008,-0.292439199999933],[122.23224690000006,-0.294321599999932],[122.23361250000005,-0.2975871],[122.2351033000001,-0.2948554],[122.2387513000001,-0.293446599999925],[122.23854870000002,-0.291580599999975],[122.24006510000004,-0.290307899999959],[122.24511240000004,-0.2921815],[122.24432750000005,-0.285328],[122.2470234000001,-0.284165399999949],[122.2456376,-0.280874799999935],[122.24928040000009,-0.283311599999934],[122.2506605000001,-0.280679499999962],[122.24775550000004,-0.2782664],[122.24946240000008,-0.275853599999948],[122.2481189,-0.274098699999968],[122.24630310000009,-0.274829799999964],[122.24176390000002,-0.272818799999925],[122.24111040000003,-0.271100499999932],[122.239803,-0.271392899999967],[122.23998440000003,-0.2740251],[122.23802340000009,-0.274719599999969],[122.23406520000003,-0.272818299999926],[122.23370200000011,-0.274426799999958],[122.23224770000002,-0.274043499999948],[122.23007350000012,-0.275925199999961],[122.23008090000008,-0.273986399999956],[122.22805420000009,-0.272955199999956],[122.2282914000001,-0.2704416],[122.23170490000007,-0.271355799999981],[122.23530040000003,-0.264994799999954],[122.23315830000001,-0.258377499999938],[122.22981750000008,-0.2562935],[122.2247695000001,-0.260314599999958],[122.2216102000001,-0.259985399999948],[122.22077720000004,-0.262571199999968],[122.21563190000006,-0.262478599999952],[122.2145465000001,-0.261437399999977],[122.21598050000011,-0.260447099999965],[122.21754460000011,-0.254472],[122.21539,-0.252588699999933],[122.21839740000007,-0.248465],[122.21491660000004,-0.249644699999976],[122.21258430000012,-0.248774499999968],[122.21203380000009,-0.247034499999927],[122.2101573000001,-0.249561],[122.20227440000008,-0.245996799999944],[122.19944,-0.248510299999964],[122.19707810000011,-0.248238399999934],[122.19464830000004,-0.255167799999924],[122.19289370000001,-0.256458499999951],[122.18810090000011,-0.250408399999969],[122.18750060000002,-0.247523599999965],[122.19023760000005,-0.242540199999951],[122.20110960000011,-0.232928299999969],[122.20637170000009,-0.221600399999943],[122.21098340000003,-0.218929899999978],[122.21105790000001,-0.2172077],[122.20842990000006,-0.215734899999973],[122.209868,-0.214686599999936],[122.20865330000004,-0.210343499999965]]],[[[122.2425826000001,-0.207156199999929],[122.24014940000006,-0.205948599999942],[122.2340425000001,-0.211601],[122.23040680000008,-0.211163299999953],[122.22771010000008,-0.214083899999935],[122.23174310000002,-0.2252264],[122.231005,-0.230128899999954],[122.23279930000001,-0.237786799999981],[122.24718740000003,-0.250780199999951],[122.24940060000006,-0.258208599999932],[122.25141730000007,-0.260090499999933],[122.2524423000001,-0.253536499999939],[122.25420250000002,-0.25592],[122.25675210000009,-0.255553499999962],[122.26509840000006,-0.264384699999937],[122.27796750000005,-0.2689995],[122.28100280000001,-0.2678997],[122.28024440000002,-0.259771599999965],[122.28353360000006,-0.258603099999959],[122.284152,-0.256851799999936],[122.28548780000006,-0.259799799999939],[122.28659410000012,-0.259444599999938],[122.28791890000002,-0.266115299999967],[122.29163670000003,-0.269376799999975],[122.2943977000001,-0.265708099999927],[122.29988290000006,-0.262113599999964],[122.30010390000007,-0.258667099999968],[122.30128190000005,-0.258296599999937],[122.3044106000001,-0.262892099999931],[122.30120780000004,-0.266079],[122.30253290000007,-0.269303299999933],[122.30779650000011,-0.276011299999936],[122.31081520000009,-0.274232599999948],[122.3176985,-0.281904299999951],[122.3191342,-0.281570899999963],[122.32229490000009,-0.289000099999953],[122.3255603,-0.291639599999939],[122.33217900000011,-0.293880199999933],[122.34015050000005,-0.286113499999942],[122.34259020000002,-0.289121],[122.34552450000001,-0.290096699999935],[122.3452165000001,-0.295342],[122.34235190000004,-0.300577899999951],[122.34446220000007,-0.3050552],[122.34326210000006,-0.310466899999938],[122.34726440000009,-0.320666299999971],[122.34975740000004,-0.323871199999928],[122.35155120000002,-0.322257599999944],[122.3531382000001,-0.322917399999938],[122.35320180000008,-0.3254808],[122.35814380000011,-0.329538899999932],[122.35906650000004,-0.335461799999962],[122.3581431,-0.340552699999932],[122.36127120000003,-0.346077899999955],[122.36993680000012,-0.3576374],[122.37097890000007,-0.3570404],[122.37889750000011,-0.364574299999958],[122.39111610000009,-0.383386299999927],[122.39679170000011,-0.389607699999942],[122.39185390000011,-0.382014699999957],[122.38705530000004,-0.370315199999936],[122.38338440000007,-0.366409399999952],[122.38383050000004,-0.362773599999969],[122.38135760000011,-0.356191099999933],[122.38294780000001,-0.347471799999937],[122.375216,-0.339101399999947],[122.37352610000005,-0.338938299999938],[122.37134690000005,-0.3357114],[122.3713709000001,-0.332633499999929],[122.3679661000001,-0.328983199999925],[122.36842370000011,-0.327512699999943],[122.37057740000012,-0.327138399999967],[122.36827480000011,-0.325955099999931],[122.36975980000011,-0.324309899999946],[122.37404250000009,-0.322939499999961],[122.3691497000001,-0.318204899999955],[122.36959450000006,-0.314994399999932],[122.37362770000004,-0.315489199999945],[122.3756902,-0.311074399999939],[122.37909080000009,-0.313670299999956],[122.378707,-0.3109802],[122.37272380000002,-0.301914],[122.38425240000004,-0.293762099999924],[122.37719220000008,-0.287893899999972],[122.37821270000006,-0.2855896],[122.38252570000009,-0.284126799999967],[122.38317680000011,-0.282443899999976],[122.38018650000004,-0.278805699999964],[122.37957590000008,-0.27381],[122.3772997000001,-0.272729],[122.3721028000001,-0.273964],[122.3677421000001,-0.272960199999943],[122.36270410000009,-0.269659],[122.36110460000009,-0.271671699999956],[122.35518740000009,-0.260641599999929],[122.35646710000003,-0.256616299999962],[122.34753460000002,-0.258044799999936],[122.34510020000005,-0.252977899999962],[122.34145880000005,-0.252493499999957],[122.3412528,-0.250649],[122.339352,-0.251017799999943],[122.338874,-0.248725499999978],[122.32048110000005,-0.244055099999969],[122.318322,-0.240915199999961],[122.31018430000006,-0.235333599999933],[122.30903770000009,-0.235028499999942],[122.307917,-0.237639],[122.30155030000003,-0.242411],[122.2986419,-0.2429181],[122.2982525000001,-0.244601099999954],[122.29623730000003,-0.243494299999952],[122.29520580000008,-0.240444399999944],[122.293822,-0.240826399999946],[122.29431420000003,-0.247326799999939],[122.29179370000008,-0.247939799999926],[122.2875031000001,-0.2426637],[122.28470180000011,-0.242626399999949],[122.28514430000007,-0.240325799999937],[122.28849850000006,-0.239101399999925],[122.28831430000002,-0.2369492],[122.28709920000006,-0.2364159],[122.28610520000007,-0.238693],[122.28692750000005,-0.229665799999964],[122.2826344,-0.225682499999948],[122.28204520000008,-0.224496],[122.28372890000003,-0.223224899999934],[122.28170860000012,-0.222123],[122.2813718000001,-0.224072199999966],[122.27547920000006,-0.223732899999959],[122.27215750000005,-0.226444099999981],[122.27109480000001,-0.230825799999934],[122.26605690000008,-0.232792099999926],[122.26482280000005,-0.238726399999962],[122.2634177000001,-0.2386918],[122.26053940000008,-0.230342199999939],[122.26215020000006,-0.228272199999935],[122.26201240000012,-0.221577799999977],[122.25776410000003,-0.216886399999964],[122.25656460000005,-0.216782899999941],[122.25683860000004,-0.220474599999932],[122.25426830000004,-0.220267399999955],[122.2517322000001,-0.222026899999946],[122.24782540000001,-0.219163],[122.24881950000008,-0.215367899999933],[122.24703760000011,-0.210572099999979],[122.242788,-0.212228],[122.2425826000001,-0.207156199999929]]],[[[121.63358910000011,-0.126608],[121.62881140000002,-0.1216875],[121.62496030000011,-0.126707099999976],[121.61668810000003,-0.127574899999956],[121.6082732000001,-0.131337],[121.60363810000001,-0.128252599999939],[121.59479520000002,-0.134927],[121.5910153000001,-0.136147799999947],[121.58359850000011,-0.144368799999938],[121.58067480000011,-0.144296299999951],[121.572484,-0.155881699999952],[121.5663406000001,-0.1575817],[121.56377320000001,-0.160520899999938],[121.56220380000002,-0.1681996],[121.56477010000003,-0.179975599999977],[121.57453870000006,-0.191245799999933],[121.57824630000005,-0.198463699999934],[121.58487760000003,-0.204496899999924],[121.59186620000003,-0.207075299999929],[121.59257890000003,-0.210702199999957],[121.60320400000012,-0.214149199999952],[121.61603990000003,-0.216167299999938],[121.61946340000009,-0.210460399999931],[121.62852020000003,-0.208589],[121.63180040000009,-0.2103168],[121.6360793,-0.208951399999933],[121.63971640000011,-0.206401099999937],[121.64221280000004,-0.201092099999926],[121.64663440000004,-0.198939799999948],[121.65241130000004,-0.1917587],[121.65647690000003,-0.1820268],[121.657547,-0.175424199999952],[121.65612180000005,-0.160165499999948],[121.65783390000001,-0.150695699999972],[121.65391220000004,-0.143513799999937],[121.653128,-0.138738099999955],[121.65412650000007,-0.136730299999954],[121.64863580000008,-0.128969499999926],[121.64236050000011,-0.126102],[121.63629890000004,-0.127892499999973],[121.63358910000011,-0.126608]]]]},"properties":{"shapeName":"Tojo Una-Una","shapeISO":"","shapeID":"22746128B36715486091301","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[120.348558,0.96517590000002],[120.34754630000009,0.966366200000039],[120.34665960000007,0.965348100000028],[120.348558,0.96517590000002]]],[[[120.23551840000005,0.969832100000076],[120.23781570000006,0.97427330000005],[120.24385360000008,0.976883900000075],[120.24940740000011,0.985381],[120.24796830000003,0.98653790000003],[120.24077880000004,0.985277300000064],[120.24020670000004,0.981416600000045],[120.23092560000009,0.97282210000003],[120.2310136000001,0.968284400000073],[120.23610670000005,0.968193900000074],[120.23551840000005,0.969832100000076]]],[[[120.68907030000003,0.987604200000021],[120.68731820000005,0.987823400000025],[120.68761250000011,0.984443500000054],[120.691261,0.986503500000026],[120.68907030000003,0.987604200000021]]],[[[120.73481630000003,0.993672500000059],[120.73565760000008,0.997815200000048],[120.73259750000011,0.998131700000044],[120.72774110000012,1.002376500000025],[120.71476380000001,1.001517800000045],[120.70359090000011,0.996652400000073],[120.69972430000007,0.993196100000034],[120.7029404000001,0.98724640000006],[120.7042662,0.988032600000054],[120.70686100000012,0.986325],[120.70812350000006,0.991636100000051],[120.70896920000007,0.989194],[120.71023430000002,0.990681700000039],[120.71139750000009,0.986965300000065],[120.71509030000004,0.987074100000029],[120.71519440000009,0.98909210000005],[120.718151,0.98569550000002],[120.72005030000003,0.985590700000046],[120.71804270000007,0.989731300000074],[120.7226882000001,0.985380100000043],[120.72564110000008,0.9874],[120.72179630000005,0.990047600000025],[120.72278950000009,0.991540100000066],[120.72521670000003,0.990798300000051],[120.72500460000003,0.99249750000007],[120.72796060000007,0.989950600000043],[120.72838110000009,0.992181200000061],[120.73102030000007,0.99016510000007],[120.731546,0.992926800000021],[120.7334459000001,0.991866100000038],[120.73481630000003,0.993672500000059]]],[[[120.37822560000006,1.002242200000069],[120.37578,1.002618900000073],[120.37418370000012,0.999493600000051],[120.37230270000009,0.999492100000055],[120.37315030000002,0.998072700000023],[120.37559650000003,0.996844],[120.37822560000006,1.002242200000069]]],[[[120.77396670000007,1.040983400000073],[120.7745076000001,1.042701400000055],[120.7769829,1.043588400000033],[120.77402580000012,1.050089400000047],[120.771465,1.048142800000051],[120.7704394000001,1.042444600000067],[120.7714347000001,1.040726300000074],[120.77396670000007,1.040983400000073]]],[[[120.66882930000008,1.048866500000031],[120.66776930000003,1.051173700000049],[120.664948,1.050106300000039],[120.66642350000006,1.046623600000032],[120.66882930000008,1.048866500000031]]],[[[120.62075,1.065866],[120.61166790000004,1.069416600000068],[120.60479060000011,1.067813500000057],[120.59950230000004,1.064081200000032],[120.5987311,1.054604],[120.60232660000008,1.061065400000075],[120.607968,1.064265300000045],[120.61361640000007,1.058411200000023],[120.6146801000001,1.051310800000067],[120.61820550000004,1.053976500000033],[120.62526580000008,1.046880700000031],[120.62720430000002,1.04901250000006],[120.6346115,1.049728300000027],[120.63955120000003,1.048134300000072],[120.64081520000002,1.043508900000063],[120.64414080000006,1.042989200000022],[120.64537930000006,1.037841700000058],[120.64291120000007,1.036242],[120.64397170000007,1.033224700000062],[120.65226160000009,1.032875800000056],[120.656678,1.023292100000049],[120.66179340000008,1.022585700000036],[120.6653262000001,1.015309300000069],[120.66814750000003,1.016376600000058],[120.67555790000006,1.012831200000051],[120.67449740000006,1.015848600000027],[120.66483670000002,1.024666900000057],[120.66725270000006,1.034129700000051],[120.66548440000008,1.040342200000055],[120.66020440000011,1.043065],[120.65737090000005,1.04051370000002],[120.64714010000012,1.041748700000028],[120.64466890000006,1.044409900000062],[120.6459023000001,1.04600860000005],[120.64272490000008,1.049556900000027],[120.63177140000005,1.055992500000059],[120.62789960000009,1.062505500000043],[120.62075,1.065866]]],[[[120.39863290000005,1.038836],[120.39977040000008,1.043533800000034],[120.39931860000002,1.045728600000075],[120.39722530000006,1.046182300000055],[120.39918630000011,1.046955600000047],[120.39884210000002,1.049542900000063],[120.40144690000011,1.051423900000032],[120.40282370000011,1.055820600000061],[120.40132820000008,1.059735800000055],[120.40264520000005,1.064012],[120.40025260000004,1.071179800000039],[120.3894825000001,1.07786690000006],[120.38403720000008,1.07768690000006],[120.37769380000009,1.073531700000046],[120.37206780000008,1.063895400000035],[120.36769750000008,1.046609600000068],[120.36825440000007,1.03858740000004],[120.36578070000007,1.029082500000072],[120.36799350000001,1.018722400000058],[120.37361730000009,1.01034960000004],[120.38582370000006,1.006674100000055],[120.39037150000001,1.008058900000037],[120.3925858,1.010347400000057],[120.39426230000004,1.0189],[120.39707480000004,1.02058610000006],[120.39598410000008,1.023462500000051],[120.394574,1.022609400000022],[120.39456220000011,1.024621900000056],[120.39623770000003,1.025525200000061],[120.39504160000001,1.030885900000044],[120.397914,1.031969700000047],[120.39863290000005,1.038836]]],[[[120.67198780000001,1.070706],[120.67445590000011,1.072305800000038],[120.67551010000011,1.077810300000067],[120.66933780000011,1.076385200000061],[120.66772,1.070912200000066],[120.67057850000003,1.068397],[120.67198780000001,1.070706]]],[[[120.78686140000002,1.168178800000021],[120.783165,1.168313700000056],[120.78779710000003,1.166086300000075],[120.78686140000002,1.168178800000021]]],[[[120.80744590000006,1.280631300000039],[120.8014485000001,1.284063],[120.79970320000007,1.281798800000047],[120.7998794,1.279126800000029],[120.80392450000011,1.278616500000055],[120.80744590000006,1.280631300000039]]],[[[121.06098060000011,1.315293800000063],[121.06350370000007,1.321884700000055],[121.06023560000006,1.320001700000034],[121.05673640000009,1.315063],[121.05930680000006,1.313184600000056],[121.06098060000011,1.315293800000063]]],[[[120.79301040000007,1.334819],[120.7901984,1.335952100000043],[120.78991640000004,1.333404700000074],[120.7916034000001,1.332272],[120.79301040000007,1.334819]]],[[[121.1767436,1.260527900000056],[121.17745190000005,1.267888200000073],[121.1631139000001,1.277635500000031],[121.155643,1.284761700000047],[121.10005720000004,1.316410700000063],[121.09293510000009,1.314856],[121.07961970000008,1.319546800000069],[121.0742557000001,1.309905600000036],[121.07005160000006,1.310372400000062],[121.06818710000005,1.305434900000023],[121.06269920000011,1.302847700000029],[121.05561280000006,1.305129500000021],[121.0526585,1.310217800000032],[121.0463363,1.310212800000045],[121.04591220000009,1.313606100000072],[121.03959070000008,1.312752700000033],[121.03843440000003,1.321854100000053],[121.03418510000006,1.321166400000038],[121.0248342000001,1.322869800000035],[121.02551040000003,1.327660900000069],[121.02074930000003,1.329368],[121.01803270000005,1.325259600000038],[121.0090219000001,1.326963200000023],[121.00828460000002,1.326017200000024],[121.00902650000012,1.327513600000032],[121.00705440000002,1.329495300000076],[121.00545390000002,1.32887420000003],[120.99904750000007,1.331843800000058],[120.99559250000004,1.340021700000023],[120.993133,1.335681400000055],[120.9829085,1.338895700000023],[120.97342120000008,1.344341600000064],[120.9661559000001,1.342468500000052],[120.9421506000001,1.350355800000045],[120.93943020000006,1.346012500000029],[120.93111140000008,1.340217400000029],[120.93096260000004,1.33724710000007],[120.92869510000003,1.334122700000023],[120.9216609,1.330613500000027],[120.92105740000011,1.328328300000067],[120.924387,1.328102600000022],[120.93013580000002,1.33054450000003],[120.92930650000005,1.326888200000042],[120.93029160000003,1.325137400000074],[120.9280993000001,1.322622400000057],[120.92567660000009,1.324219700000071],[120.92492060000006,1.323457500000075],[120.928479,1.321023400000058],[120.92832970000006,1.318586200000027],[120.92628720000005,1.317975300000057],[120.92454570000007,1.319344600000022],[120.92439630000001,1.316983600000071],[120.92242880000003,1.317134300000021],[120.92227610000009,1.318809600000066],[120.9198540000001,1.319645300000047],[120.92060590000006,1.32535770000004],[120.91841090000003,1.326117500000066],[120.91663370000003,1.323892200000046],[120.91614640000012,1.319489900000065],[120.913423,1.31880220000005],[120.90868960000012,1.314439800000059],[120.912065,1.311878500000034],[120.91098370000009,1.308465700000056],[120.90543830000001,1.307427300000029],[120.90297490000012,1.30556450000006],[120.90040580000004,1.30721630000005],[120.89712,1.306896400000028],[120.8951704000001,1.303903900000023],[120.89290870000002,1.30648640000004],[120.8944471000001,1.309175300000049],[120.90132850000009,1.309181200000069],[120.9010168000001,1.313522600000056],[120.89300620000006,1.312688800000046],[120.88879040000006,1.31837070000006],[120.885197,1.316713700000037],[120.89012330000003,1.321162900000047],[120.8928969000001,1.320545],[120.89279620000002,1.31816740000005],[120.895775,1.317859800000065],[120.89001780000001,1.324470700000063],[120.89145030000009,1.32603210000002],[120.89659070000005,1.322761900000046],[120.89862220000009,1.317849900000056],[120.90580620000003,1.31798370000007],[120.90635,1.322349100000054],[120.9001158000001,1.325079800000026],[120.9006591000001,1.328217400000028],[120.89849060000006,1.328763900000069],[120.89944140000011,1.334220500000072],[120.90445860000011,1.339675500000055],[120.90794230000006,1.338588900000047],[120.91164260000005,1.339536400000043],[120.91340380000008,1.337080200000059],[120.91516600000011,1.337215900000047],[120.91449040000009,1.343082400000071],[120.908937,1.353998300000057],[120.90338050000003,1.356728900000064],[120.89727860000005,1.350592100000028],[120.89145,1.350730700000042],[120.89122020000002,1.349382700000035],[120.894702,1.347455300000036],[120.89510660000008,1.341861800000061],[120.88819130000002,1.335316],[120.88874150000004,1.32788910000005],[120.88152650000006,1.322234300000048],[120.87598980000007,1.322635600000069],[120.87005650000003,1.320772200000022],[120.869004,1.317718200000058],[120.86493670000004,1.318203600000061],[120.86332920000007,1.321961],[120.85647720000009,1.316601700000035],[120.84943510000005,1.316259900000034],[120.84726120000005,1.318787800000052],[120.84513070000003,1.314721500000076],[120.838517,1.312629600000037],[120.8328954000001,1.31399870000007],[120.83150650000005,1.319373400000075],[120.82652070000006,1.321946700000069],[120.82476070000007,1.324990400000047],[120.82215130000009,1.323069900000064],[120.81656510000005,1.323172800000066],[120.8076195000001,1.325391],[120.80742730000009,1.319246600000042],[120.8092861,1.317399],[120.81137600000011,1.299624],[120.82058590000008,1.295754500000044],[120.82159510000008,1.293886200000031],[120.81962550000003,1.286745900000028],[120.82045820000008,1.283227100000033],[120.81877880000002,1.283364800000072],[120.81619310000008,1.280499200000065],[120.81152960000009,1.281628600000033],[120.81014960000005,1.271086900000057],[120.80824890000008,1.266694800000039],[120.8083736000001,1.262559600000031],[120.81339920000005,1.258336900000074],[120.81832310000004,1.258887600000037],[120.81999730000007,1.256705500000066],[120.8169041000001,1.240899],[120.81052910000005,1.22309290000004],[120.81033090000005,1.219324800000038],[120.81190620000007,1.215952800000025],[120.81663730000002,1.211895800000036],[120.81607530000008,1.210225900000069],[120.818426,1.205802],[120.8274252000001,1.205092500000035],[120.82710450000002,1.182749700000045],[120.82553580000001,1.176618900000051],[120.82202660000007,1.17184130000004],[120.81452800000011,1.170556400000066],[120.81005830000004,1.166039500000068],[120.79732710000008,1.157914400000038],[120.79239380000001,1.163761200000067],[120.78816640000002,1.164065100000073],[120.78884070000004,1.156183800000065],[120.78732090000005,1.145394],[120.7876275000001,1.142361100000073],[120.78936970000007,1.141948],[120.79029150000008,1.139822700000025],[120.789963,1.138007300000027],[120.7842184000001,1.119756100000075],[120.77925420000008,1.112286200000028],[120.77688480000006,1.110822],[120.77695430000006,1.108229100000074],[120.78236560000005,1.103803200000073],[120.78432840000005,1.103359800000021],[120.7865445000001,1.105183900000043],[120.78909340000007,1.103524600000071],[120.797177,1.089084600000035],[120.80096010000011,1.075025800000049],[120.7994513000001,1.07031610000007],[120.79708830000004,1.067839400000025],[120.79838530000006,1.061765100000059],[120.79601530000002,1.053274],[120.79953120000005,1.050157700000057],[120.80395220000003,1.053122700000074],[120.80957920000003,1.048735900000054],[120.80857060000005,1.045770700000048],[120.80967450000003,1.042720900000063],[120.80851480000001,1.041399],[120.80949880000003,1.039945200000034],[120.80824120000011,1.03758],[120.80933070000003,1.037022600000057],[120.80861610000011,1.035083100000065],[120.81012250000003,1.034265600000026],[120.808728,1.028868600000067],[120.80615960000011,1.029472700000042],[120.80320910000012,1.028153700000075],[120.79356320000011,1.030371500000058],[120.78511920000005,1.030290100000059],[120.78103480000004,1.025487],[120.7765591000001,1.023720500000024],[120.77714450000008,1.021663600000068],[120.77529540000012,1.021564400000045],[120.76518640000006,1.012946700000043],[120.75850780000007,1.01059650000002],[120.76089640000009,1.005795900000066],[120.75960590000011,1.003953],[120.75486450000005,1.005583600000023],[120.75218440000003,1.001244500000041],[120.74954050000008,1.001520800000037],[120.747054,0.99622990000006],[120.7479,0.993469100000027],[120.74220250000008,0.99325280000005],[120.741146,0.99527],[120.73893090000001,0.994206400000053],[120.741781,0.992402800000036],[120.74167650000004,0.990809600000034],[120.73990970000011,0.988967400000035],[120.738308,0.989657],[120.7383096000001,0.987277800000072],[120.74062470000001,0.985923400000047],[120.73724960000004,0.984115600000052],[120.73725220000006,0.980185900000038],[120.73915230000011,0.978912700000024],[120.74189510000008,0.979658],[120.74179210000011,0.975940700000024],[120.74421930000005,0.975305100000071],[120.73788890000003,0.974769800000047],[120.73725480000007,0.97636250000005],[120.73504050000008,0.974130600000024],[120.73324360000004,0.979014900000038],[120.72997390000012,0.977313400000071],[120.7297651,0.973914600000057],[120.72723340000005,0.973063300000035],[120.72871340000006,0.971230900000023],[120.72993290000011,0.971922400000039],[120.73191620000011,0.970542300000034],[120.7306976000001,0.968622800000048],[120.72497740000006,0.971228300000064],[120.72734380000009,0.965735100000074],[120.73156480000011,0.964888300000041],[120.729179,0.963530900000023],[120.73223010000004,0.961614200000042],[120.72470640000006,0.965202300000044],[120.71746010000004,0.957767],[120.7146954000001,0.959012200000075],[120.71259940000004,0.957955600000048],[120.70525850000001,0.961596100000065],[120.7125033000001,0.959202600000026],[120.71985450000011,0.962862500000028],[120.7209769000001,0.97206360000007],[120.72280210000008,0.972847800000068],[120.71744650000005,0.97810510000005],[120.71750270000007,0.975214100000073],[120.71529090000001,0.976287100000036],[120.71430060000012,0.974905],[120.71208840000008,0.976591900000074],[120.71193760000006,0.974059100000034],[120.70713400000011,0.974362800000051],[120.7062936000001,0.97681810000006],[120.7080466000001,0.977817100000038],[120.70789270000012,0.979812400000071],[120.7053777000001,0.978352500000028],[120.703546,0.98096060000006],[120.70568020000007,0.981883],[120.70358780000004,0.986253500000032],[120.70046310000009,0.980337600000041],[120.70193670000003,0.978645800000038],[120.70112380000012,0.974900500000047],[120.6999535000001,0.978279800000053],[120.69761660000006,0.979674300000056],[120.69944020000003,0.981733],[120.70009440000001,0.985774800000058],[120.69702770000004,0.986874900000032],[120.69440150000003,0.984227800000042],[120.6916278000001,0.983858500000053],[120.69177490000004,0.982242],[120.6866202000001,0.978772900000024],[120.68615820000002,0.976212800000042],[120.68228980000004,0.975401800000043],[120.67872590000002,0.970092300000033],[120.6823677000001,0.968274400000041],[120.68667240000002,0.971510400000057],[120.69047340000009,0.963944600000048],[120.6918597,0.964900800000066],[120.69288270000004,0.963431900000046],[120.69273520000002,0.965709700000048],[120.69587400000012,0.965858800000035],[120.69397790000005,0.963138800000024],[120.69478210000011,0.961302300000057],[120.69741010000007,0.961230600000022],[120.69456460000004,0.959097800000052],[120.69120540000006,0.960932500000069],[120.69259510000006,0.956818500000054],[120.683175,0.961808700000063],[120.68067750000012,0.961221500000022],[120.68358150000006,0.958533300000056],[120.68273330000011,0.957204500000046],[120.686383,0.957436600000051],[120.68866530000003,0.955830800000058],[120.68741090000003,0.955485500000066],[120.68902150000008,0.953497500000026],[120.68136740000011,0.95295550000003],[120.68232400000011,0.949653900000044],[120.67885980000005,0.950542800000051],[120.67851560000008,0.953527700000052],[120.67675550000001,0.95307420000006],[120.67611990000012,0.954214900000068],[120.6772595000001,0.955593400000055],[120.67508970000006,0.959610300000065],[120.67666910000003,0.964634700000033],[120.67015,0.965728],[120.66954030000011,0.963384200000064],[120.67098250000004,0.961214900000073],[120.66903580000007,0.961445100000049],[120.66862250000008,0.959856600000023],[120.67007230000002,0.957884700000022],[120.66539740000007,0.955700100000058],[120.66323220000004,0.95294320000005],[120.6643739000001,0.951336600000047],[120.670552,0.949981200000025],[120.66771370000004,0.949342200000046],[120.66722930000003,0.947778200000073],[120.657522,0.945132900000033],[120.65752440000006,0.941614600000037],[120.65480460000003,0.943469600000071],[120.64733030000002,0.941119],[120.64464740000005,0.943208200000072],[120.64111590000005,0.94228750000002],[120.63849710000011,0.938376600000026],[120.63529240000003,0.939547100000027],[120.63527110000007,0.937664400000074],[120.63704760000007,0.93692070000003],[120.63519630000008,0.937091800000076],[120.634739,0.933078200000068],[120.638122,0.91895640000007],[120.63559220000002,0.918182900000033],[120.634828,0.914400500000056],[120.631992,0.912932200000057],[120.63184010000009,0.910771100000034],[120.6230981000001,0.912617600000033],[120.62448270000004,0.905826700000034],[120.62187690000007,0.904204200000038],[120.62172570000007,0.900808200000029],[120.61981060000005,0.89826],[120.6209622,0.895868200000052],[120.61981260000005,0.895172800000068],[120.6199679,0.892085800000075],[120.617131,0.892161100000067],[120.61339340000006,0.882600300000036],[120.61069970000005,0.880699700000037],[120.610703,0.875545500000044],[120.60598670000002,0.875949400000025],[120.60369850000006,0.872014500000034],[120.60329640000009,0.868758900000046],[120.60499880000009,0.863676800000064],[120.60980350000011,0.861482100000046],[120.60866770000007,0.859196500000053],[120.611552,0.858552800000041],[120.60706610000011,0.855973600000027],[120.6050275,0.851871300000028],[120.60631830000011,0.848439800000051],[120.601329,0.844429],[120.59788190000006,0.839204],[120.597593,0.835540900000069],[120.60094140000001,0.834370800000045],[120.6006516000001,0.832319400000074],[120.60254420000001,0.831587900000045],[120.59992650000004,0.827923400000032],[120.6030396000001,0.82163950000006],[120.607206,0.82470440000003],[120.61303040000007,0.820898500000055],[120.60764870000003,0.81444840000006],[120.61027170000011,0.809321900000043],[120.60721650000005,0.806975800000032],[120.60546750000003,0.810930700000029],[120.599502,0.807410700000048],[120.59673540000006,0.809313800000041],[120.59586330000002,0.807262100000059],[120.5971747000001,0.804772100000037],[120.60183390000009,0.802137500000072],[120.59761780000008,0.793783500000075],[120.594851,0.79612620000006],[120.59063120000008,0.794072500000027],[120.58350940000003,0.783052600000076],[120.57611880000002,0.77609590000003],[120.57388260000005,0.769613800000059],[120.57606370000008,0.767709400000058],[120.57783250000011,0.768953400000044],[120.57890720000012,0.773231],[120.57974630000001,0.770942400000024],[120.58202070000004,0.770100400000047],[120.57938890000003,0.767990500000053],[120.5836981000001,0.766788200000065],[120.58524150000005,0.764806400000055],[120.59225440000012,0.76433970000005],[120.59100360000002,0.758057700000052],[120.59693560000005,0.753400400000032],[120.595885,0.751046700000074],[120.59292330000005,0.749324],[120.5874702000001,0.750453800000059],[120.58653410000011,0.75233570000006],[120.57741850000002,0.750918800000022],[120.57718550000004,0.749624500000039],[120.57566580000002,0.750211900000068],[120.57437730000004,0.755387900000073],[120.5690217,0.752777200000025],[120.55554,0.756214200000045],[120.54723760000002,0.755666100000042],[120.54649820000009,0.758461900000043],[120.54779870000004,0.761127800000054],[120.54996820000008,0.762396100000046],[120.55005340000002,0.765236100000038],[120.55499820000011,0.770613],[120.54926740000008,0.773493300000041],[120.55508470000007,0.771224700000062],[120.55743040000004,0.76777450000003],[120.55651740000008,0.770439100000033],[120.55179480000004,0.777923],[120.54544040000007,0.78157230000005],[120.53430140000012,0.792308500000047],[120.530233,0.790992200000062],[120.51856160000011,0.793381100000033],[120.49549070000012,0.793147300000044],[120.488143,0.790286],[120.48547620000011,0.787134900000069],[120.48234820000005,0.786021400000038],[120.47738290000007,0.779441500000075],[120.4738870000001,0.77795720000006],[120.44827270000008,0.781904800000063],[120.43825330000004,0.785673],[120.432833,0.789423700000043],[120.41621440000006,0.792853200000025],[120.404444,0.790312200000074],[120.39725560000011,0.792221600000062],[120.39126620000002,0.796775900000057],[120.38508420000005,0.804322600000035],[120.38397370000007,0.807205600000032],[120.38457430000005,0.81320530000005],[120.38299730000006,0.815044400000033],[120.38375240000005,0.816948400000058],[120.38059670000007,0.823227900000063],[120.37490820000005,0.829048500000056],[120.37339610000004,0.84366650000004],[120.375279,0.850015300000052],[120.37439170000005,0.852517100000057],[120.37611030000005,0.86187220000005],[120.37376990000007,0.866799600000036],[120.36965210000005,0.867132800000036],[120.36738460000004,0.86462640000002],[120.3674764000001,0.857625100000064],[120.36503540000001,0.852050100000042],[120.36549330000003,0.84595760000002],[120.3620969000001,0.841605700000059],[120.36531530000002,0.839157400000033],[120.36572220000005,0.836547900000028],[120.3658431,0.829968400000041],[120.36344640000004,0.828312700000026],[120.36045320000005,0.829264600000045],[120.35810650000008,0.828212800000074],[120.35688850000008,0.829524800000058],[120.35732080000002,0.833113300000036],[120.36070970000003,0.83582860000007],[120.3604481000001,0.836966100000041],[120.35210110000003,0.838010700000041],[120.35001320000003,0.840109700000028],[120.342596,0.841531800000041],[120.32871880000005,0.851295800000059],[120.32708780000007,0.854937500000062],[120.3267221000001,0.860401600000046],[120.33111940000003,0.86626160000003],[120.32990670000004,0.878011100000037],[120.33611420000011,0.884633300000075],[120.33869740000011,0.892752200000075],[120.34036550000008,0.892193900000052],[120.33924990000003,0.897415500000022],[120.34007980000001,0.902918400000033],[120.33785120000005,0.909911100000045],[120.33812780000005,0.911683200000027],[120.339795,0.912244],[120.34145780000006,0.918866500000036],[120.33895080000002,0.92632530000003],[120.33906230000002,0.92869810000002],[120.341855,0.931312800000057],[120.34212150000008,0.936689700000045],[120.34028230000001,0.941576],[120.34130220000009,0.944967200000065],[120.34316400000012,0.945056200000067],[120.3466843000001,0.95095230000004],[120.34607720000008,0.957798100000048],[120.3449336000001,0.95873290000003],[120.34859690000008,0.959191600000054],[120.34980020000012,0.961900700000058],[120.34557760000007,0.962766],[120.34557360000008,0.967977400000052],[120.3479757,0.970057600000075],[120.3531709,0.969012100000043],[120.35504720000006,0.973746900000037],[120.352009,0.974869],[120.3486822000001,0.973005100000023],[120.34654610000007,0.974035600000036],[120.34679150000011,0.975786700000072],[120.35027910000008,0.980172100000061],[120.35412480000002,0.980645500000037],[120.35412810000003,0.984207800000036],[120.34187310000004,0.984555700000044],[120.33636820000004,0.981600700000058],[120.32942560000004,0.983767200000045],[120.32421680000004,0.983544600000073],[120.32020520000003,0.985619900000074],[120.31131670000002,0.982318700000064],[120.30114290000006,0.981494200000043],[120.2823251000001,0.986270400000024],[120.28015280000011,0.984173300000066],[120.28201460000002,0.983593100000064],[120.28444780000007,0.976446900000042],[120.28246970000009,0.979168900000047],[120.27905950000002,0.980704400000036],[120.27561950000006,0.968976200000043],[120.26472790000003,0.968860100000029],[120.266141,0.965666500000054],[120.26358520000008,0.965464],[120.26305880000007,0.961221800000033],[120.259491,0.958620300000064],[120.25437550000004,0.957789200000036],[120.24826120000012,0.960150700000042],[120.24710450000009,0.95772340000002],[120.25232260000007,0.93762520000007],[120.24354060000007,0.922239200000035],[120.24032860000011,0.921417200000064],[120.24163640000006,0.903334400000062],[120.23958280000011,0.896706600000073],[120.23702330000003,0.895430200000021],[120.234635,0.886282400000027],[120.23541870000008,0.881564800000035],[120.24049690000004,0.87763620000004],[120.24288330000002,0.855716900000061],[120.24284680000005,0.840882800000031],[120.2451761000001,0.838251800000023],[120.2460307,0.834020500000065],[120.24464060000003,0.819336800000031],[120.24198660000002,0.81551810000002],[120.24164780000001,0.81003190000007],[120.23885110000003,0.801874400000031],[120.23042610000005,0.79203190000004],[120.21541630000002,0.782819400000051],[120.2027303000001,0.772803200000055],[120.19017560000009,0.766510800000049],[120.18905410000002,0.765593400000057],[120.19138250000003,0.764336],[120.18853260000003,0.76465630000007],[120.17787970000006,0.756608700000072],[120.16470350000009,0.753938700000049],[120.16142020000007,0.754537400000061],[120.1434425000001,0.748817400000064],[120.13805380000008,0.748799400000053],[120.136734,0.748035600000037],[120.13724,0.745031],[120.13929240000004,0.743270900000027],[120.13832900000011,0.742003600000032],[120.143665,0.733112200000051],[120.14295430000004,0.731943900000033],[120.14978180000003,0.727325],[120.15149140000005,0.724615200000073],[120.1782938,0.713273400000048],[120.18385340000009,0.707596600000045],[120.18884880000007,0.706497400000046],[120.1965656000001,0.700646400000039],[120.19990660000008,0.673402500000066],[120.19888520000006,0.663803],[120.19585670000004,0.658066600000041],[120.19618090000006,0.646622100000059],[120.19344710000007,0.638449200000025],[120.193137,0.615745300000071],[120.21522420000008,0.60550470000004],[120.219332,0.604916100000025],[120.22964820000004,0.607973400000049],[120.2403981000001,0.612934500000051],[120.25144340000008,0.62029670000004],[120.25915070000008,0.623460300000033],[120.26442440000005,0.622803200000021],[120.2689904,0.630348600000048],[120.28517230000011,0.631068700000071],[120.28699950000009,0.639096800000061],[120.29979530000003,0.642606100000023],[120.3007182,0.651933800000052],[120.30775670000003,0.657025900000065],[120.32981390000009,0.667838400000051],[120.344301,0.668262200000072],[120.35054670000011,0.673828700000058],[120.35139210000011,0.67676380000006],[120.35570830000006,0.678172500000073],[120.37355040000011,0.675277100000073],[120.38198360000001,0.670601800000043],[120.40828970000007,0.668742500000064],[120.41200540000011,0.663451100000032],[120.41651980000006,0.661530400000061],[120.43904140000006,0.664102],[120.44144490000008,0.655891600000075],[120.44890060000012,0.642828800000075],[120.45920380000007,0.641608500000075],[120.47165510000002,0.644276600000069],[120.48203110000009,0.643387300000029],[120.48440280000011,0.644573100000059],[120.49271380000005,0.641588100000035],[120.49450620000005,0.636931],[120.49595860000011,0.636282400000027],[120.50576710000007,0.635797],[120.50928370000008,0.634214300000053],[120.51660250000009,0.636444500000039],[120.52220060000002,0.633314600000062],[120.52759120000007,0.63617110000007],[120.53816450000011,0.635122900000056],[120.54091970000002,0.632008],[120.54337670000007,0.620444900000052],[120.540998,0.614150300000063],[120.54219230000001,0.606358900000032],[120.5451733000001,0.597519400000067],[120.54742580000004,0.595197700000028],[120.5569918000001,0.59471730000007],[120.56304310000007,0.605521900000042],[120.57486540000002,0.609323600000039],[120.58040230000006,0.605315900000051],[120.5896924000001,0.60432510000004],[120.59684160000006,0.595620300000064],[120.60116090000008,0.595555700000034],[120.60726270000009,0.601070900000025],[120.6138889,0.599687800000027],[120.61534070000005,0.589399],[120.6187513000001,0.587148100000036],[120.626334,0.587575400000048],[120.62960370000008,0.592988500000047],[120.63776370000005,0.597995900000058],[120.63686560000008,0.60582050000005],[120.6421798,0.612004600000034],[120.64401740000005,0.61175650000007],[120.65023270000006,0.616951500000027],[120.65651230000003,0.617222600000048],[120.66086710000002,0.615580900000054],[120.66128490000006,0.623639],[120.66633850000005,0.627882300000067],[120.6659145000001,0.633819600000038],[120.67433760000006,0.64505470000006],[120.68524410000009,0.650191500000062],[120.6895512000001,0.65556470000007],[120.69447520000006,0.658252700000048],[120.69693640000003,0.661352700000066],[120.70530370000006,0.661552500000028],[120.7064286000001,0.668572600000061],[120.736228,0.660778600000071],[120.74439870000003,0.663773900000024],[120.75429610000003,0.662017],[120.76410810000004,0.669895600000075],[120.7758586000001,0.672888900000032],[120.78316890000008,0.678291300000069],[120.79699380000011,0.679264500000045],[120.81461980000006,0.675875500000075],[120.81883190000008,0.67884650000002],[120.818239,0.682120500000053],[120.81941430000006,0.684186200000056],[120.8307443000001,0.690404100000023],[120.83529690000012,0.690624300000025],[120.83848660000001,0.687672900000052],[120.84804760000009,0.696792600000038],[120.84999810000011,0.700630500000045],[120.8454719,0.699195100000054],[120.84227010000006,0.695900400000028],[120.8794352000001,0.749936700000035],[120.89087080000002,0.780382700000075],[120.89186660000007,0.788044800000023],[120.90020240000001,0.792646],[120.91256890000011,0.794559600000071],[120.91530890000001,0.796884800000043],[120.91673680000008,0.803632400000026],[120.92473040000004,0.811092400000064],[120.93008850000001,0.818665400000043],[120.93283730000007,0.819284400000072],[120.93331290000003,0.822349300000042],[120.93178840000007,0.826694],[120.95046430000002,0.827275500000042],[120.96352390000004,0.83638510000003],[120.97277080000003,0.837419200000056],[120.97751760000006,0.841035400000067],[120.98208430000011,0.841182300000071],[120.9844012000001,0.84273150000007],[120.9902638000001,0.841590900000028],[120.99593860000004,0.852366500000073],[120.99855050000008,0.854403500000046],[121.00018380000006,0.859550500000068],[121.0060449,0.861452],[121.00616890000003,0.86664490000004],[121.0079498,0.868611900000076],[121.00724130000003,0.87645660000004],[121.002513,0.880639700000074],[121.00223920000008,0.882789500000058],[121.00596330000008,0.886839900000041],[121.0052789,0.891985700000021],[121.01247880000005,0.938442800000075],[121.017258,0.965023],[121.02036670000007,0.972343900000055],[121.0190457000001,0.977718100000061],[121.02147460000003,0.981882300000052],[121.01942580000002,0.988170900000057],[121.02133040000001,0.995056600000055],[121.02387130000011,0.998444400000039],[121.02646330000005,0.999131],[121.02702970000007,1.001967500000035],[121.02434110000002,1.014065200000061],[121.01443390000009,1.016235800000061],[121.01211250000006,1.020370400000047],[121.0119965,1.024167100000057],[121.00681080000004,1.032169100000033],[121.01112640000008,1.034893500000067],[121.02643880000005,1.039294700000028],[121.03393280000012,1.046824400000048],[121.04018040000005,1.048795300000052],[121.041445,1.061353100000076],[121.04460210000002,1.063779600000032],[121.04805820000001,1.069755],[121.05039280000005,1.069753100000071],[121.05611380000005,1.078173900000024],[121.06525460000012,1.083056100000022],[121.07310760000007,1.083697100000052],[121.0793043000001,1.089444700000058],[121.0867601000001,1.090298300000029],[121.09514550000006,1.093447800000035],[121.09125240000003,1.095100900000034],[121.08926410000004,1.099454500000036],[121.09264410000003,1.10755290000003],[121.09055390000003,1.112722400000052],[121.0892874000001,1.122475700000052],[121.08396770000002,1.127213],[121.08240520000004,1.131510500000047],[121.08014760000003,1.133330500000056],[121.08524510000007,1.134686200000033],[121.08101750000003,1.142673800000068],[121.08016860000009,1.151581800000031],[121.092802,1.167286500000046],[121.0927967,1.175264300000038],[121.09869660000004,1.176199200000042],[121.09827,1.183834900000022],[121.11511440000004,1.191642400000035],[121.12144250000006,1.196577700000034],[121.12579970000002,1.20331230000005],[121.12934980000011,1.206215100000065],[121.13378100000011,1.204863],[121.13703110000006,1.205921500000045],[121.14881910000008,1.225868600000069],[121.1481447000001,1.231091100000071],[121.15096060000008,1.234627800000055],[121.15143790000002,1.238780700000063],[121.14958,1.241409300000043],[121.15792620000002,1.243033400000058],[121.1588805,1.24467240000007],[121.16518790000009,1.239960600000074],[121.16758450000009,1.242520900000045],[121.1711706000001,1.242446400000063],[121.1723601000001,1.244582200000025],[121.17534880000005,1.245008200000029],[121.177473,1.248767100000066],[121.1767436,1.260527900000056]]],[[[120.88915060000011,1.364237500000058],[120.88996640000005,1.370785500000068],[120.88820540000006,1.373923900000023],[120.88346160000003,1.375153500000067],[120.87898640000003,1.369698200000073],[120.87803430000008,1.360831],[120.88155770000003,1.358237600000052],[120.88426860000004,1.358100200000024],[120.88915060000011,1.364237500000058]]]]},"properties":{"shapeName":"Toli-Toli","shapeISO":"","shapeID":"22746128B27437751823591","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[138.60940530000005,-3.722558799999945],[138.65218620000007,-3.722541],[138.659434,-3.707992899999965],[138.6960408000001,-3.703198399999962],[138.74014670000008,-3.655764199999965],[138.7501327000001,-3.6466099],[138.75928670000008,-3.642449],[138.75545490000002,-3.563392],[138.75699870000005,-3.504723799999965],[138.76626210000006,-3.452231299999937],[138.78633280000008,-3.405914299999949],[138.78015720000008,-3.367316899999935],[138.792496,-3.3470755],[138.73013730000002,-3.285773799999959],[138.68786020000005,-3.288944599999979],[138.6466401,-3.309026199999948],[138.56273170000009,-3.337540499999932],[138.49771240000007,-3.331585],[138.4696378000001,-3.324979199999973],[138.40688280000006,-3.329933499999925],[138.3804596000001,-3.318373399999928],[138.36559660000012,-3.290298699999937],[138.35733930000004,-3.262224099999969],[138.33917340000005,-3.215983599999959],[138.32724560000008,-3.194438599999955],[138.27476690000003,-3.197817599999951],[138.21531470000002,-3.207726299999933],[138.17733140000007,-3.2308466],[138.17226920000007,-3.236431399999958],[138.16767570000002,-3.266112799999974],[138.16166870000006,-3.278126799999939],[138.1556617000001,-3.282367],[138.1457679,-3.2862538],[138.13349080000012,-3.283622799999932],[138.12788890000002,-3.272419099999979],[138.11038320000011,-3.262615899999957],[138.0872756000001,-3.2640163],[138.0760719000001,-3.262615899999957],[138.06836940000005,-3.254913399999964],[138.06626870000002,-3.245110099999977],[138.0578660000001,-3.241609],[138.04806270000006,-3.241609],[138.04120050000006,-3.246370599999977],[138.03223750000006,-3.242449299999976],[138.03201400000012,-3.254503599999964],[138.0342266,-3.257139799999948],[138.035905,-3.266349],[138.03064070000005,-3.278824899999961],[138.02014270000006,-3.291942899999981],[138.0164195000001,-3.309682699999939],[138.02096670000003,-3.335668],[138.01449690000004,-3.355604799999981],[138.0200969000001,-3.380107499999951],[138.02662770000006,-3.381801499999938],[138.02902330000006,-3.396166899999969],[138.02851980000003,-3.413112499999954],[138.02996940000003,-3.4217879],[138.0301677000001,-3.436297299999978],[138.028535,-3.449456599999962],[138.03909410000006,-3.469732599999929],[138.03663740000002,-3.485850399999947],[138.0449993000001,-3.490138399999978],[138.05427010000005,-3.491306799999961],[138.0680989000001,-3.497233399999971],[138.07303780000007,-3.504147799999942],[138.07106220000003,-3.522915499999954],[138.084891,-3.540695299999925],[138.09674430000007,-3.550573099999951],[138.1085975000001,-3.557487399999957],[138.13724290000005,-3.569340699999941],[138.16812390000007,-3.600153399999954],[138.18327870000007,-3.609108799999944],[138.2018779000001,-3.609108599999956],[138.23632070000008,-3.616686],[138.24496340000007,-3.628913399999931],[138.26665090000006,-3.701205099999925],[138.2732777000001,-3.710844],[138.2768923000001,-3.722290199999975],[138.28231430000005,-3.732531599999959],[138.29074820000005,-3.742170399999964],[138.30460410000012,-3.772894299999962],[138.33395960000007,-3.773577799999941],[138.39326190000008,-3.783109799999977],[138.40637040000001,-3.753409899999951],[138.4282892000001,-3.755402599999968],[138.45220070000005,-3.747432099999969],[138.47312320000003,-3.743446799999958],[138.50500520000003,-3.725513199999966],[138.53389820000007,-3.723520599999972],[138.56578020000006,-3.725513199999966],[138.60940530000005,-3.722558799999945]]]},"properties":{"shapeName":"Tolikara","shapeISO":"","shapeID":"22746128B80883017120226","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[120.048287,-2.954007299999944],[120.04321020000009,-2.938094],[120.04617610000003,-2.928207499999928],[120.0431003000001,-2.922934599999962],[120.03396320000002,-2.918857199999934],[120.02400030000001,-2.910467399999959],[120.01665930000001,-2.908894299999929],[120.01211480000006,-2.905049],[120.004599,-2.901902799999959],[120.00250150000011,-2.898931399999981],[120.00285110000004,-2.891415599999959],[120.001278,-2.887745099999961],[119.99767120000001,-2.885505699999953],[119.99615330000006,-2.881877699999961],[119.991031,-2.876797299999964],[119.98993160000009,-2.869985199999974],[119.98357890000011,-2.8605655],[119.96774540000001,-2.859061499999939],[119.9629433,-2.856081599999925],[119.95973360000005,-2.850581699999964],[119.95539660000009,-2.847161399999948],[119.9537855000001,-2.834796499999925],[119.95172710000008,-2.830208499999969],[119.95974260000003,-2.814865399999974],[119.96020070000009,-2.806391399999939],[119.95665760000009,-2.801406699999973],[119.95046710000008,-2.800436699999977],[119.94817680000006,-2.792878799999926],[119.941306,-2.780740399999956],[119.9351223000001,-2.7791372],[119.92614980000008,-2.7816565],[119.92013140000006,-2.777734899999928],[119.90917750000006,-2.778523399999926],[119.902363,-2.774806399999932],[119.89800360000004,-2.77572],[119.88714120000009,-2.7663117],[119.88164460000007,-2.763334399999962],[119.87431570000001,-2.754402399999947],[119.87225450000005,-2.750050899999962],[119.87211490000004,-2.740699899999925],[119.86698690000003,-2.722796699999947],[119.8605741,-2.711803399999951],[119.8592877000001,-2.704856],[119.85374280000008,-2.701159399999938],[119.85244210000008,-2.698374899999976],[119.85375820000002,-2.686246599999947],[119.85252020000007,-2.677233899999976],[119.85522020000008,-2.670649499999968],[119.85372130000007,-2.665177599999936],[119.8584403000001,-2.642340899999965],[119.85681050000005,-2.636433],[119.85375470000008,-2.632562299999961],[119.85477330000003,-2.627469299999973],[119.853551,-2.620746499999939],[119.84764920000009,-2.611839],[119.83927230000006,-2.611266],[119.82703970000011,-2.624052699999936],[119.8205977,-2.627672699999948],[119.80609540000012,-2.630443499999956],[119.79696120000006,-2.640458299999977],[119.78723710000008,-2.650727599999925],[119.78418940000006,-2.6523249],[119.77762810000002,-2.661828],[119.76622730000008,-2.663625],[119.752488,-2.6709937],[119.75533170000006,-2.677358099999935],[119.75987480000003,-2.678920199999936],[119.7573473000001,-2.680877799999962],[119.75558400000011,-2.685219399999937],[119.752639,-2.685316399999977],[119.74799590000009,-2.688553],[119.74951250000004,-2.691875099999947],[119.7461085000001,-2.694657099999972],[119.74871980000012,-2.699784],[119.74808970000004,-2.703300699999943],[119.74937770000008,-2.707355199999938],[119.74673540000003,-2.7144641],[119.73663980000003,-2.717487299999959],[119.73096540000006,-2.717482199999949],[119.72343460000002,-2.726997],[119.7078226000001,-2.732355199999972],[119.70039430000008,-2.742330899999956],[119.69588240000007,-2.744880499999965],[119.69308210000008,-2.749504799999954],[119.68918680000002,-2.751312],[119.6884318000001,-2.753007599999933],[119.6850568000001,-2.759400599999935],[119.6814025000001,-2.761731399999974],[119.67472080000005,-2.769627],[119.67689010000004,-2.774393799999928],[119.68039810000005,-2.777648199999931],[119.67929,-2.784934699999951],[119.681262,-2.792783499999928],[119.6842160000001,-2.795225799999969],[119.68899880000004,-2.81159],[119.692324,-2.827135099999964],[119.691581,-2.837394],[119.69603740000002,-2.8493125],[119.695281,-2.864614],[119.6873829000001,-2.873552299999972],[119.68700650000005,-2.877131899999938],[119.69056730000011,-2.8847417],[119.69391590000009,-2.900169],[119.70203060000006,-2.910090299999979],[119.70516170000008,-2.91846],[119.70587290000003,-2.929040599999951],[119.70776650000005,-2.934953599999972],[119.71062680000011,-2.937162399999977],[119.7098281000001,-2.940119299999935],[119.71189960000004,-2.944850899999949],[119.72572750000006,-2.951348499999938],[119.73308940000004,-2.952575499999966],[119.7362796000001,-2.9415326],[119.7409421000001,-2.938097099999936],[119.74609540000006,-2.936133899999959],[119.75419350000004,-2.935888499999976],[119.75959220000004,-2.9376063],[119.77210730000002,-2.938097099999936],[119.78329960000008,-2.933322099999941],[119.7840599000001,-2.9389573],[119.78632270000003,-2.941166599999974],[119.78830330000005,-2.946996899999931],[119.79005240000004,-2.947964399999933],[119.79236520000006,-2.955713599999967],[119.7970021000001,-2.958977],[119.79968970000004,-2.964976399999955],[119.79972650000002,-2.966389199999981],[119.79345680000006,-2.967299199999957],[119.79002120000007,-2.969262399999934],[119.78732190000005,-2.9729433],[119.79247520000001,-2.983004499999936],[119.7944384000001,-2.999446],[119.79664690000004,-3.007053299999939],[119.80106410000008,-3.014169799999934],[119.80081870000004,-3.018586899999946],[119.80344900000011,-3.029104399999937],[119.8152970000001,-3.030365899999936],[119.82241350000004,-3.029384299999947],[119.83124770000006,-3.017114499999934],[119.83419250000009,-3.006807899999956],[119.83713720000003,-3.000673],[119.83849740000005,-3.000446299999965],[119.84673780000003,-3.013093699999956],[119.84806680000008,-3.017272899999966],[119.8487828000001,-3.037994099999935],[119.8534969000001,-3.045860599999969],[119.8571799,-3.042958599999963],[119.86257260000002,-3.041918299999963],[119.8652737000001,-3.0393431],[119.86867150000012,-3.038567199999932],[119.87062190000006,-3.034725499999979],[119.86957760000007,-3.030679099999929],[119.87402070000007,-3.030189699999937],[119.87596280000002,-3.025458899999933],[119.88207110000008,-3.025164699999948],[119.884946,-3.022076699999957],[119.88972050000007,-3.023162899999932],[119.8959393,-3.017965499999946],[119.89389570000003,-3.030773699999941],[119.89509650000002,-3.033123599999954],[119.89160430000004,-3.036429899999973],[119.89223790000005,-3.042581699999971],[119.8942707000001,-3.044834499999979],[119.92344020000007,-3.045489699999962],[119.92654550000009,-3.048529799999926],[119.93127830000003,-3.058086599999967],[119.93307980000009,-3.065575099999933],[119.94297190000009,-3.068186799999978],[119.94795980000004,-3.072709599999939],[119.96411180000007,-3.063676299999941],[119.96695230000012,-3.063496899999961],[119.96916020000003,-3.0733102],[119.9627799000001,-3.091960299999926],[119.96327070000007,-3.100794499999949],[119.9764699000001,-3.129353499999979],[119.97449580000011,-3.133234499999958],[119.97156880000011,-3.135379799999953],[119.97160510000003,-3.136997799999961],[119.96578740000007,-3.141233799999952],[119.96396210000012,-3.146660699999927],[119.95669970000006,-3.1501002],[119.95899830000008,-3.151386],[119.95764780000002,-3.158333199999959],[119.95928830000003,-3.164291799999944],[119.9586422000001,-3.169105199999933],[119.95620830000007,-3.1731102],[119.96621540000001,-3.177358],[119.968424,-3.180793499999936],[119.97799440000006,-3.185946899999976],[119.98514980000004,-3.187236299999938],[119.98558830000002,-3.184010099999966],[119.99122910000006,-3.180627899999934],[119.99372490000007,-3.175256499999932],[119.99622000000011,-3.173172399999942],[120.00567180000007,-3.176531599999976],[120.00764930000003,-3.1726096],[120.00709160000008,-3.169481299999973],[119.99911310000005,-3.156386],[120.0027808000001,-3.146051199999931],[120.0049795000001,-3.144240499999967],[120.00545380000005,-3.141653799999972],[120.00377240000012,-3.139972399999976],[120.00493640000002,-3.139411899999971],[120.00646030000007,-3.127542699999935],[120.016767,-3.119444599999952],[120.016767,-3.112082699999974],[120.02142950000007,-3.097113599999943],[120.01995710000006,-3.0914695],[120.02118410000003,-3.081162799999959],[120.02669790000004,-3.071314799999925],[120.02848630000005,-3.070924399999967],[120.02879140000005,-3.068647699999929],[120.03503880000005,-3.066048799999976],[120.038335,-3.0653035],[120.04145990000006,-3.06745],[120.0433882000001,-3.066777199999933],[120.04891380000004,-3.054414699999938],[120.06641,-3.050488],[120.06878260000008,-3.046967],[120.06628210000008,-3.034803599999975],[120.07119010000008,-3.032451899999955],[120.07279820000008,-3.029812599999957],[120.07441560000007,-3.029379699999936],[120.07898760000012,-3.031836899999973],[120.082895,-3.0310729],[120.0859699,-3.021725199999935],[120.08314610000002,-3.012269799999956],[120.0842857,-3.006411499999956],[120.0774335000001,-3.002023799999961],[120.07179750000012,-3.000977399999954],[120.06180580000012,-2.991888199999948],[120.06240690000004,-2.990296199999932],[120.05623040000012,-2.987668699999972],[120.05301410000004,-2.984421],[120.05262190000008,-2.982793099999981],[120.05906130000005,-2.967717099999959],[120.05707010000003,-2.964290399999925],[120.0509158000001,-2.960326799999962],[120.048287,-2.954007299999944]]]},"properties":{"shapeName":"Toraja Utara","shapeISO":"","shapeID":"22746128B52634379797533","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[111.65082550000005,-8.376455199999953],[111.64950560000005,-8.376403799999935],[111.64897150000007,-8.379871299999934],[111.64993290000007,-8.379831199999956],[111.650383,-8.384308699999963],[111.65062710000007,-8.382665599999939],[111.65196990000004,-8.382609299999956],[111.65082550000005,-8.376455199999953]]],[[[111.51229860000007,-8.371308299999953],[111.51501460000009,-8.3693018],[111.513092,-8.369011799999953],[111.51142880000003,-8.3704509],[111.51229860000007,-8.371308299999953]]],[[[111.777636,-8.369683],[111.779202,-8.368105],[111.777679,-8.36771],[111.777636,-8.369683]]],[[[111.779961,-8.366474],[111.779156,-8.367803],[111.784205,-8.370609],[111.783905,-8.367204],[111.779961,-8.366474]]],[[[111.48656460000007,-8.360681499999941],[111.48622130000007,-8.358674],[111.48428340000004,-8.357817599999976],[111.48357390000007,-8.360651899999937],[111.48471070000005,-8.360862699999927],[111.48320010000003,-8.362258899999972],[111.48638150000005,-8.364821399999926],[111.48751060000006,-8.363421399999936],[111.48656460000007,-8.360681499999941]]],[[[111.62624360000007,-8.356984099999977],[111.62562560000003,-8.35548209999996],[111.62374880000004,-8.356858199999976],[111.62624360000007,-8.356984099999977]]],[[[111.798875,-8.359149],[111.799673,-8.357963],[111.796241,-8.354658],[111.796005,-8.35765],[111.798875,-8.359149]]],[[[111.7464,-8.351895],[111.747343,-8.34727],[111.746357,-8.346445],[111.745185,-8.34771],[111.7464,-8.351895]]],[[[111.759429,-8.3423],[111.757136,-8.342419],[111.760351,-8.343902],[111.759429,-8.3423]]],[[[111.56903840000007,-8.334804499999962],[111.56752010000008,-8.336520099999973],[111.56982420000008,-8.335580799999946],[111.56903840000007,-8.334804499999962]]],[[[111.47954560000005,-8.330774299999973],[111.48146050000008,-8.327787299999954],[111.47879790000007,-8.327892299999974],[111.47761530000008,-8.330847699999936],[111.47954560000005,-8.330774299999973]]],[[[111.44383240000008,-8.296831099999963],[111.44228360000005,-8.295839299999955],[111.442482,-8.297118099999977],[111.44514460000005,-8.297731299999953],[111.44383240000008,-8.296831099999963]]],[[[111.43916320000005,-8.270893],[111.43863680000004,-8.2694768],[111.436264,-8.272064199999932],[111.43916320000005,-8.270893]]],[[[111.40370360000009,-8.270820599999979],[111.40427,-8.273],[111.40752,-8.27347],[111.40893,-8.27511],[111.40801,-8.27655],[111.40921,-8.2782],[111.41576,-8.2764],[111.41553,-8.26737],[111.41907,-8.26452],[111.41872,-8.26193],[111.42241,-8.26182],[111.42221,-8.25887],[111.42547,-8.25708],[111.42615,-8.25818],[111.42469,-8.25842],[111.43376,-8.26069],[111.44092,-8.26683],[111.44865,-8.27012],[111.45395,-8.27857],[111.45225,-8.27905],[111.45006,-8.28432],[111.45357,-8.2853],[111.4541,-8.28752],[111.45329,-8.28954],[111.45033,-8.28934],[111.45023,-8.29079],[111.44832,-8.29073],[111.44489,-8.29393],[111.44499,-8.29547],[111.44886,-8.29589],[111.44946,-8.29717],[111.44667,-8.29894],[111.44495,-8.30249],[111.44694,-8.30545],[111.44947,-8.30646],[111.44934,-8.30896],[111.45782,-8.3107],[111.45641,-8.31677],[111.45452,-8.31627],[111.45265,-8.3179],[111.4545,-8.31816],[111.45502,-8.32062],[111.45591,-8.31878],[111.46006,-8.31744],[111.46213,-8.32012],[111.46169,-8.3232],[111.46761,-8.32016],[111.46698,-8.31767],[111.46945,-8.31373],[111.47134,-8.31402],[111.47394,-8.30958],[111.47842,-8.30605],[111.48324,-8.30913],[111.48117,-8.31518],[111.48203,-8.31982],[111.4874,-8.31797],[111.48899,-8.31449],[111.49087,-8.31405],[111.49469,-8.31544],[111.49648,-8.31928],[111.49365,-8.32328],[111.49763,-8.32518],[111.49834,-8.32368],[111.50469,-8.3224],[111.50584,-8.32571],[111.50688,-8.32553],[111.5062,-8.32681],[111.50774,-8.32616],[111.51013,-8.3275],[111.51178,-8.33301],[111.51424,-8.33222],[111.51427,-8.33389],[111.51482,-8.33292],[111.51739,-8.33397],[111.51961,-8.33199],[111.52138,-8.33294],[111.52263,-8.33153],[111.52809,-8.33179],[111.52927,-8.32996],[111.53027,-8.33204],[111.53195,-8.33134],[111.53216,-8.33291],[111.53374,-8.33304],[111.53465,-8.33259],[111.53278,-8.32973],[111.53799,-8.32691],[111.53536,-8.32403],[111.53073,-8.32219],[111.53069,-8.31916],[111.53265,-8.31592],[111.53395,-8.31523],[111.53686,-8.31669],[111.53757,-8.31388],[111.54601,-8.31339],[111.54678,-8.30768],[111.55515,-8.30671],[111.56538,-8.31029],[111.5723,-8.3166],[111.57307,-8.31872],[111.57061,-8.32401],[111.57145,-8.32577],[111.56775,-8.32611],[111.57058,-8.33135],[111.56973,-8.33426],[111.57479,-8.33346],[111.57475,-8.33226],[111.57597,-8.33375],[111.57562,-8.33039],[111.5782,-8.32938],[111.58788,-8.33512],[111.59021,-8.33125],[111.58777,-8.32849],[111.59098,-8.32544],[111.59308,-8.32578],[111.59531,-8.3223],[111.59852,-8.32239],[111.6027,-8.32479],[111.60133,-8.32982],[111.60313,-8.33052],[111.60262,-8.33314],[111.60435,-8.33433],[111.6041,-8.33919],[111.60523,-8.33973],[111.61121,-8.33498],[111.60722,-8.33035],[111.60854,-8.32667],[111.6119,-8.32465],[111.61196,-8.3216],[111.61697,-8.32048],[111.62096,-8.32312],[111.62282,-8.32188],[111.62832,-8.32545],[111.62706,-8.33006],[111.62893,-8.33112],[111.62695,-8.33523],[111.63239,-8.33686],[111.63406,-8.34074],[111.63277,-8.34335],[111.62459,-8.3477],[111.62431,-8.35033],[111.62669,-8.35117],[111.62541,-8.35388],[111.6284,-8.35347],[111.62962,-8.35163],[111.63045,-8.35249],[111.63247,-8.3493],[111.6335,-8.35068],[111.63464,-8.3476],[111.6381,-8.34768],[111.64088,-8.35116],[111.643,-8.35025],[111.64388,-8.35267],[111.64742,-8.35206],[111.64938,-8.35524],[111.6497,-8.362],[111.65253,-8.36673],[111.6572,-8.363],[111.65497,-8.3604],[111.6575,-8.35729],[111.66401,-8.3566],[111.66459,-8.35543],[111.66734,-8.35605],[111.66843,-8.36143],[111.67048,-8.36284],[111.67007,-8.36712],[111.67463,-8.37161],[111.68127,-8.37394],[111.68183,-8.37279],[111.68235,-8.3752],[111.68501,-8.3726],[111.68557,-8.3683],[111.6883,-8.36663],[111.69269,-8.37032],[111.69334,-8.37526],[111.69693,-8.37955],[111.69878,-8.37924],[111.70192,-8.38363],[111.70233,-8.38061],[111.70078,-8.37724],[111.7039,-8.37394],[111.70384,-8.36729],[111.70542,-8.36697],[111.70767,-8.36983],[111.70986,-8.36709],[111.71436,-8.37262],[111.71902,-8.3704],[111.7207,-8.3715],[111.72064,-8.36915],[111.72419,-8.36907],[111.72517,-8.372],[111.72665,-8.37074],[111.71773,-8.36244],[111.71518,-8.35852],[111.71529,-8.35462],[111.71346,-8.35165],[111.70771,-8.35036],[111.70352,-8.34399],[111.69861,-8.34542],[111.69486,-8.34245],[111.69309,-8.33801],[111.68964,-8.33748],[111.68867,-8.33616],[111.68846,-8.33004],[111.6894,-8.33657],[111.68997,-8.32911],[111.69512,-8.32232],[111.70121,-8.32472],[111.70279,-8.32251],[111.7131,-8.32248],[111.71568,-8.31526],[111.71398,-8.30922],[111.70969,-8.30424],[111.70708,-8.3032],[111.71011,-8.29456],[111.71299,-8.29112],[111.72475,-8.28712],[111.72984,-8.28793],[111.73383,-8.29173],[111.73264,-8.28935],[111.73409,-8.2905],[111.73528,-8.29474],[111.73298,-8.29644],[111.73401,-8.29767],[111.73817,-8.29656],[111.74011,-8.29984],[111.73921,-8.30153],[111.74174,-8.30169],[111.74466,-8.30407],[111.74857,-8.3099],[111.74847,-8.31316],[111.74337,-8.32148],[111.74148,-8.32226],[111.74156,-8.32611],[111.73866,-8.33288],[111.74698,-8.33472],[111.74915,-8.34366],[111.75105,-8.33954],[111.75276,-8.33871],[111.75397,-8.34009],[111.7581,-8.33475],[111.76192,-8.33488],[111.76281,-8.33608],[111.76567,-8.33116],[111.77,-8.3284],[111.77672,-8.32558],[111.78208,-8.3263],[111.77784,-8.3227],[111.77793,-8.32134],[111.77026,-8.31884],[111.76907,-8.31686],[111.76878,-8.31413],[111.7702,-8.31249],[111.76939,-8.30898],[111.7759,-8.30827],[111.77621,-8.30725],[111.76823,-8.29632],[111.77013,-8.29273],[111.7738,-8.29428],[111.77557,-8.29337],[111.77779,-8.28973],[111.77404880000006,-8.289099399999941],[111.75883480000005,-8.290201099999933],[111.75601950000004,-8.286263399999939],[111.74885560000007,-8.281383399999982],[111.74889370000005,-8.272211],[111.74585720000005,-8.265364599999941],[111.74589540000005,-8.258978799999966],[111.74349970000009,-8.258338899999956],[111.74069210000005,-8.253221399999973],[111.73480990000007,-8.254161799999963],[111.72723390000004,-8.242031],[111.73162070000006,-8.238888699999961],[111.73309320000004,-8.233940099999927],[111.73181150000005,-8.2299384],[111.733078,-8.226590099999953],[111.73191070000007,-8.219444199999941],[111.73321530000004,-8.219103699999948],[111.73442080000007,-8.215120299999967],[111.73369590000004,-8.210525399999938],[111.73224640000007,-8.208416899999975],[111.72885130000009,-8.207889499999965],[111.72680660000009,-8.204558299999974],[111.72858430000008,-8.202844599999935],[111.72847750000005,-8.20050139999995],[111.72100060000008,-8.199726099999964],[111.72126010000005,-8.197918799999968],[111.72354120000006,-8.197494399999925],[111.72283170000009,-8.193462299999965],[111.71686550000004,-8.1911191],[111.71647640000003,-8.189867899999967],[111.71926110000004,-8.187184299999956],[111.71144860000004,-8.179081899999971],[111.71706390000008,-8.174637699999948],[111.71817010000007,-8.168174699999952],[111.71954340000008,-8.167967699999963],[111.72123720000008,-8.164495399999964],[111.72217560000007,-8.158986],[111.72882080000005,-8.153021699999954],[111.73361180000006,-8.142205],[111.73613710000006,-8.142747699999973],[111.74214910000006,-8.138750799999968],[111.74478910000005,-8.13866319999994],[111.74628450000006,-8.1392316],[111.74925230000008,-8.145502],[111.75317380000007,-8.1467599],[111.760765,-8.141245799999979],[111.77102660000008,-8.139457599999957],[111.77104180000003,-8.1380319],[111.78591920000008,-8.138339],[111.78813170000006,-8.13710969999994],[111.80991760000006,-8.136221399999954],[111.81901570000008,-8.137390899999957],[111.81767960000008,-8.136878399999944],[111.81938170000006,-8.132723699999929],[111.82372280000004,-8.133764199999973],[111.82455440000007,-8.132081899999946],[111.83242790000008,-8.128439799999967],[111.83836360000004,-8.122828399999946],[111.84097290000005,-8.118990799999949],[111.84237670000005,-8.111748599999942],[111.84394070000008,-8.111682799999926],[111.84405510000005,-8.109995799999979],[111.84644310000004,-8.110636599999964],[111.84693140000007,-8.10641759999993],[111.84259790000004,-8.103854099999978],[111.84387970000006,-8.096390699999972],[111.83911130000007,-8.093497199999945],[111.83833310000006,-8.091597499999978],[111.83718870000007,-8.091224599999975],[111.83565520000008,-8.094686499999966],[111.82307430000009,-8.088933899999972],[111.818573,-8.0895595],[111.81315610000007,-8.087645399999928],[111.809433,-8.07861889999998],[111.80960080000006,-8.075693099999967],[111.797615,-8.0673217],[111.79642480000007,-8.061493799999937],[111.79429620000008,-8.061684499999956],[111.79138940000007,-8.05939],[111.78967280000006,-8.052366199999938],[111.78799430000004,-8.051370499999962],[111.78658290000004,-8.04735839999995],[111.78376770000006,-8.04580489999995],[111.78021240000004,-8.03923119999996],[111.77674860000008,-8.0376672],[111.77028650000005,-8.041439],[111.764389,-8.034488599999975],[111.75414270000005,-8.030285799999945],[111.75579070000003,-8.025260899999978],[111.75577540000006,-8.015882399999953],[111.75425720000004,-8.013562099999945],[111.75376890000007,-8.002488099999937],[111.756546,-7.996701599999938],[111.76046750000006,-7.992690499999981],[111.76045990000006,-7.987843899999973],[111.75897980000008,-7.9836893],[111.75334930000008,-7.9795918],[111.75070950000008,-7.971978099999944],[111.74830620000006,-7.9699148],[111.74287410000005,-7.970664899999974],[111.74039460000006,-7.967182099999945],[111.73809810000006,-7.958457399999929],[111.74340820000003,-7.954467199999954],[111.73937990000007,-7.946673299999929],[111.74043270000004,-7.943126099999972],[111.73810570000006,-7.9339799],[111.73993680000007,-7.925219],[111.746849,-7.920998],[111.74973290000008,-7.922793299999967],[111.75263970000009,-7.928502],[111.756073,-7.9284567],[111.76071930000006,-7.924595299999964],[111.75913240000006,-7.917927199999951],[111.75492090000006,-7.914392899999939],[111.75614930000006,-7.912591899999939],[111.754303,-7.910087499999975],[111.75598140000005,-7.909119099999941],[111.75529480000006,-7.908286],[111.75289150000009,-7.903471399999944],[111.754364,-7.902659399999948],[111.75340270000004,-7.899985699999945],[111.75491330000006,-7.897420299999965],[111.75188440000005,-7.897250099999951],[111.75013730000006,-7.890871499999946],[111.74336240000008,-7.888472],[111.73464960000007,-7.892302],[111.73246760000006,-7.894945099999973],[111.71285250000005,-7.896339399999931],[111.71047970000006,-7.8945984],[111.707428,-7.897362699999974],[111.70139310000008,-7.896198199999958],[111.699646,-7.897472299999947],[111.69914240000008,-7.899589499999934],[111.70199580000008,-7.901579799999979],[111.70458220000006,-7.906249899999978],[111.70040130000007,-7.913914199999965],[111.69207760000006,-7.919605199999978],[111.69128410000008,-7.9221291],[111.69292450000006,-7.928746599999954],[111.69181820000006,-7.930999199999974],[111.68315120000005,-7.936250599999937],[111.67798610000006,-7.941261699999927],[111.66951750000004,-7.944765],[111.66326140000007,-7.9432439],[111.65917970000004,-7.945177499999943],[111.65527340000006,-7.940686599999935],[111.64726260000003,-7.950729299999978],[111.64168550000005,-7.955273099999943],[111.63722990000008,-7.962096599999938],[111.63695520000005,-7.965369199999941],[111.63908390000006,-7.966422],[111.64745330000005,-7.968635],[111.652977,-7.966392399999961],[111.659935,-7.968622599999946],[111.66163630000005,-7.971289099999979],[111.66223140000005,-7.974143],[111.66083520000007,-7.975528699999927],[111.65625760000006,-7.975928199999942],[111.65338130000004,-7.983362199999931],[111.65698150000009,-7.9926757],[111.65577460000009,-7.998232499999972],[111.65699,-8.00435349999998],[111.653305,-8.020481],[111.65064240000004,-8.0221424],[111.64755250000007,-8.021966899999939],[111.64508050000006,-8.01565359999995],[111.64688110000009,-8.012378599999977],[111.635582,-8.007937399999946],[111.63360590000008,-8.004317199999946],[111.63068390000007,-8.003616299999976],[111.625,-8.007462399999952],[111.61215930000009,-8.008862399999941],[111.60856710000007,-8.010542099999952],[111.60660550000006,-8.0122937],[111.60638430000006,-8.016256299999952],[111.60778040000008,-8.018157],[111.60627740000007,-8.019347099999948],[111.59712980000006,-8.018708199999935],[111.59624480000008,-8.017536099999973],[111.58947750000004,-8.020394299999964],[111.58668520000003,-8.023674899999946],[111.58135220000008,-8.02632989999995],[111.57813260000006,-8.038219399999946],[111.57427980000006,-8.040095299999962],[111.57311250000004,-8.04801459999993],[111.56846620000005,-8.048925399999973],[111.56530760000004,-8.0479316],[111.563652,-8.049585299999933],[111.55722810000009,-8.049927699999955],[111.556488,-8.0537757],[111.55386350000003,-8.056150399999979],[111.55060570000006,-8.05655],[111.54478450000005,-8.054651199999967],[111.54284670000004,-8.0569419],[111.53997040000007,-8.056438399999934],[111.53407290000007,-8.060046199999931],[111.53353120000008,-8.062595299999941],[111.54128260000005,-8.066843],[111.54294590000006,-8.069132799999977],[111.52702330000005,-8.081160499999953],[111.52789310000009,-8.0892343],[111.52568820000005,-8.092398599999967],[111.52841180000007,-8.101175299999966],[111.52246090000006,-8.108443199999954],[111.51953990000004,-8.110029899999972],[111.51633450000008,-8.1097507],[111.51172640000004,-8.107367499999953],[111.506218,-8.10663029999995],[111.50515740000009,-8.109539],[111.50643920000005,-8.112775799999952],[111.50465390000005,-8.113923],[111.50253290000006,-8.113309799999968],[111.500473,-8.109501799999975],[111.49342350000006,-8.10963529999998],[111.48747250000008,-8.10784719999998],[111.48264310000008,-8.108818],[111.48251340000007,-8.114219599999956],[111.48025510000008,-8.11518],[111.47935480000007,-8.117577499999982],[111.48158260000008,-8.12229919999993],[111.48339840000006,-8.123176499999943],[111.48303980000009,-8.125885899999957],[111.47879030000007,-8.129412599999966],[111.47865290000004,-8.137298499999929],[111.47605130000005,-8.139686499999925],[111.47623440000007,-8.141877099999931],[111.47232820000005,-8.143006299999968],[111.47477720000006,-8.150465],[111.47357180000006,-8.157999],[111.47600550000004,-8.165591199999938],[111.47517390000007,-8.171342799999934],[111.46495050000004,-8.175518899999929],[111.45855710000006,-8.16877459999995],[111.45523070000007,-8.167509099999961],[111.45041650000007,-8.168731599999944],[111.44930270000009,-8.16667069999994],[111.43955990000006,-8.165638899999976],[111.43782810000005,-8.163202199999944],[111.43277740000008,-8.169825499999945],[111.42480470000004,-8.1703415],[111.42658230000006,-8.17558],[111.42513270000006,-8.179427099999941],[111.42556760000008,-8.183359099999961],[111.42259210000009,-8.188846499999954],[111.408803,-8.192844899999955],[111.40241790000005,-8.190577699999949],[111.40074210000006,-8.195295599999952],[111.40306850000007,-8.200246799999945],[111.40425870000007,-8.208137499999964],[111.40891260000006,-8.212659799999926],[111.404541,-8.219701699999973],[111.40041350000007,-8.220726],[111.40179440000009,-8.224061],[111.40081780000008,-8.227042099999949],[111.39579010000006,-8.227559],[111.39095150000009,-8.2336759],[111.398407,-8.241262399999925],[111.40149690000004,-8.250926899999968],[111.40438840000007,-8.253418899999929],[111.40639490000007,-8.258376099999964],[111.40478510000008,-8.266130399999952],[111.40319060000007,-8.267801199999951],[111.40370360000009,-8.270820599999979]]]]},"properties":{"shapeName":"Trenggalek","shapeISO":"","shapeID":"22746128B52987138430136","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[111.62336210000007,-6.987544799999966],[111.62426390000007,-6.989658099999929],[111.63204850000005,-6.993457899999953],[111.64672330000008,-6.996673299999941],[111.65259550000007,-7.000153499999954],[111.65390010000004,-7.010161299999936],[111.65753170000005,-7.0142889],[111.65579960000008,-7.026234799999941],[111.66011810000003,-7.039155],[111.67180630000007,-7.040576899999962],[111.67301940000004,-7.044782099999964],[111.674675,-7.045358599999929],[111.674057,-7.049889499999949],[111.67679380000004,-7.048554899999942],[111.68043140000009,-7.051466499999947],[111.68718280000007,-7.053855],[111.69133380000005,-7.052876599999934],[111.69235990000004,-7.054948299999978],[111.69515120000005,-7.054358599999944],[111.69230650000009,-7.063542299999938],[111.69501490000005,-7.0663347],[111.69749450000006,-7.065569799999935],[111.70397950000006,-7.075426099999959],[111.71053310000008,-7.076871299999937],[111.71450590000006,-7.081968699999948],[111.73674780000005,-7.084942699999942],[111.77759990000004,-7.0824051],[111.77885670000006,-7.080543],[111.78581380000008,-7.079347599999949],[111.79634910000004,-7.082568],[111.79749130000005,-7.086919299999977],[111.80164230000008,-7.0851644],[111.80748380000006,-7.085616399999935],[111.80655520000005,-7.087152399999979],[111.80773730000004,-7.087742099999957],[111.80874130000007,-7.085849099999962],[111.815323,-7.085792599999934],[111.81420180000003,-7.0920448],[111.81829830000004,-7.087011],[111.82551660000007,-7.0874703],[111.826098,-7.090721199999962],[111.82987920000005,-7.092362699999967],[111.83060450000005,-7.095904799999971],[111.83393860000007,-7.0978555],[111.83330530000006,-7.099363699999969],[111.83866120000005,-7.104125899999929],[111.85440820000008,-7.114853299999936],[111.85630790000005,-7.114820399999928],[111.85494230000006,-7.121835199999964],[111.85659790000005,-7.125791],[111.85800680000006,-7.123748599999942],[111.85989650000005,-7.123946099999955],[111.86032680000005,-7.126882199999955],[111.85919190000004,-7.128061699999932],[111.86113240000009,-7.127990099999977],[111.86133080000008,-7.129231899999979],[111.860064,-7.130214399999943],[111.86312140000007,-7.128834],[111.86465450000009,-7.124216499999932],[111.86643220000008,-7.129024],[111.86828610000003,-7.128867599999978],[111.86655420000005,-7.126883],[111.86782830000004,-7.126414699999941],[111.87117760000007,-7.129903699999943],[111.876868,-7.132809599999973],[111.87677760000008,-7.131154],[111.87913510000004,-7.132603099999926],[111.87964630000005,-7.1313958],[111.88191220000004,-7.131588399999941],[111.88266290000007,-7.1268939],[111.88438410000003,-7.1281466],[111.89372250000008,-7.128481299999976],[111.89706420000005,-7.130198399999927],[111.89904020000006,-7.136618599999963],[111.90718840000005,-7.138004699999954],[111.91215510000006,-7.1380033],[111.91775510000008,-7.133056599999975],[111.921524,-7.131913099999963],[111.93129730000004,-7.13346],[111.93238060000004,-7.141840399999978],[111.93020630000007,-7.154340699999977],[111.93080140000006,-7.158843899999965],[111.93257140000009,-7.160015499999929],[111.93586730000004,-7.159930599999939],[111.94264980000008,-7.154706899999951],[111.95127860000008,-7.133223499999929],[111.95488730000005,-7.132158699999934],[111.96321870000008,-7.137155],[111.96974180000007,-7.137846399999944],[111.97666170000008,-7.143550799999957],[111.97973630000007,-7.150595099999975],[111.97724910000005,-7.161724499999934],[111.97960660000007,-7.164931699999954],[111.98357390000007,-7.164022399999965],[111.98462670000004,-7.1614346],[111.98268890000008,-7.154858],[111.98373410000005,-7.148823599999957],[111.98626710000008,-7.138790499999971],[111.99365990000007,-7.127611599999966],[111.99503320000008,-7.114562],[111.99853510000008,-7.115485099999944],[111.997528,-7.121548099999927],[112.00000000000011,-7.125668],[112.00634760000003,-7.131544],[112.01040650000004,-7.13033],[112.0107574000001,-7.125000399999976],[112.0055847000001,-7.116418299999964],[112.00341790000004,-7.108170399999949],[112.00624840000012,-7.105051399999979],[112.01334380000003,-7.103562299999965],[112.01439660000005,-7.101677799999948],[112.01246640000011,-7.099290799999949],[112.00582120000001,-7.096208],[112.00538630000005,-7.094601499999953],[112.00734710000006,-7.093068499999958],[112.0100632000001,-7.094238699999948],[112.01535790000003,-7.092658899999947],[112.02006530000006,-7.088649699999962],[112.02072140000007,-7.083669099999952],[112.01666260000002,-7.077758199999948],[112.01535790000003,-7.072978],[112.0160141,-7.069381199999953],[112.01994320000006,-7.067400899999939],[112.02323910000007,-7.067668399999945],[112.027565,-7.0706381],[112.03077690000009,-7.078767199999959],[112.03480530000002,-7.0771693],[112.0390777,-7.071004799999969],[112.04225150000002,-7.070370599999933],[112.0446167,-7.071659],[112.04669950000005,-7.075361199999975],[112.03982540000004,-7.078403399999956],[112.03939810000008,-7.080708899999934],[112.041481,-7.082138899999961],[112.04830930000003,-7.076944799999978],[112.05126970000003,-7.077047099999959],[112.05494810000005,-7.072615],[112.06490440000005,-7.072439],[112.08242030000008,-7.065417699999955],[112.08427620000009,-7.067998799999941],[112.08410640000011,-7.081644],[112.08564750000005,-7.085560699999974],[112.10089110000001,-7.088582899999949],[112.10768120000012,-7.0864496],[112.115509,-7.089724],[112.12416070000006,-7.08786],[112.12496940000005,-7.090038199999981],[112.12373350000007,-7.092282699999942],[112.11756890000004,-7.096501299999943],[112.11927030000004,-7.103828399999941],[112.12254330000007,-7.108171899999945],[112.12681580000003,-7.106819],[112.12729640000009,-7.098639899999966],[112.13076010000009,-7.096776899999952],[112.1418685000001,-7.1047029],[112.14752190000002,-7.101232],[112.15155030000005,-7.101025499999935],[112.15183250000007,-7.103160299999956],[112.14691160000007,-7.105140099999971],[112.14612580000005,-7.107024599999932],[112.15454100000011,-7.110118299999954],[112.16097260000004,-7.109376299999951],[112.16307830000005,-7.106785699999932],[112.164299,-7.0994762],[112.16618340000002,-7.097813],[112.17034910000007,-7.097549799999967],[112.17525480000006,-7.099470499999939],[112.17834470000003,-7.097754399999928],[112.1835632000001,-7.089226199999928],[112.17501850000008,-7.086481699999979],[112.17484280000008,-7.083852699999966],[112.17931360000011,-7.075096499999972],[112.18338770000003,-7.074621099999945],[112.18492890000005,-7.076317699999947],[112.18384980000008,-7.0834856],[112.1881452,-7.0831971],[112.18983890000004,-7.084404899999981],[112.20365140000001,-7.074477099999967],[112.20832060000009,-7.0736779],[112.21720320000009,-7.074825799999928],[112.219018,-7.066567299999974],[112.21526040000003,-7.054737799999941],[112.21576370000002,-7.042966699999965],[112.217198,-7.040574399999969],[112.2220046000001,-7.038510099999939],[112.22190480000006,-7.037197499999934],[112.21848290000003,-7.035872799999936],[112.20735170000012,-7.034128099999975],[112.20333540000001,-7.029440199999954],[112.20409070000005,-7.025910599999975],[112.2107969000001,-7.020591],[112.21457350000003,-7.009467799999925],[112.21164380000005,-7.001812099999938],[112.21398160000001,-6.999239299999942],[112.20978730000002,-6.996912099999975],[112.2108809,-6.985634],[112.20904980000012,-6.9791838],[112.2095839000001,-6.973890399999959],[112.20675330000006,-6.971346899999958],[112.2055937,-6.967716799999948],[112.20396850000009,-6.951213699999926],[112.201947,-6.944363899999928],[112.20317210000007,-6.921776199999954],[112.19904980000001,-6.919826099999966],[112.19783630000006,-6.915025699999944],[112.19330260000004,-6.914395199999944],[112.1894929,-6.911953299999936],[112.1864667000001,-6.9119438],[112.18378880000012,-6.914930699999957],[112.18323950000001,-6.912077299999964],[112.18028690000006,-6.913134899999932],[112.18081740000002,-6.910483],[112.17893650000008,-6.905032499999948],[112.1757321,-6.902284899999927],[112.17197360000011,-6.902608899999962],[112.1706094000001,-6.897339399999964],[112.16227,-6.89899],[112.15748370000006,-6.898296399999936],[112.1578522000001,-6.896731899999963],[112.15376270000002,-6.898242099999948],[112.15266,-6.89693],[112.1494226000001,-6.898137399999939],[112.1478141,-6.897118899999953],[112.14610990000006,-6.897906599999942],[112.14572970000006,-6.900393099999974],[112.14361910000002,-6.901149799999928],[112.12577060000001,-6.902427],[112.11743070000011,-6.900393099999974],[112.1051900000001,-6.89492],[112.10303220000003,-6.896463299999937],[112.08757,-6.89398],[112.08291,-6.89645],[112.07773180000004,-6.894232699999975],[112.07046140000011,-6.894455299999947],[112.06626,-6.89257],[112.06800780000003,-6.886870199999976],[112.0655713000001,-6.892619499999967],[112.05276,-6.88674],[112.03623310000012,-6.870478099999957],[112.0286324000001,-6.860421299999928],[112.03057410000008,-6.858651],[112.02857060000008,-6.8575707],[112.02947,-6.856285799999966],[112.0261875000001,-6.857664199999931],[112.01033180000002,-6.834759],[112.00658,-6.823116499999969],[112.00786890000006,-6.82071],[112.00710170000002,-6.818986799999948],[112.0012746000001,-6.8131878],[111.99784820000008,-6.8068061],[111.99303690000005,-6.803365399999961],[111.98665520000009,-6.795556],[111.98481350000009,-6.789659699999959],[111.98594130000004,-6.787703799999974],[111.98005980000005,-6.773202399999946],[111.96732440000005,-6.763143],[111.96096890000007,-6.760601699999938],[111.96055250000006,-6.76266],[111.9569,-6.7636831],[111.94836490000006,-6.763292899999954],[111.94534770000007,-6.765551],[111.94444350000003,-6.764511199999959],[111.924233,-6.778139199999941],[111.90513480000004,-6.786821],[111.89904340000004,-6.787582399999962],[111.89765220000004,-6.789242699999932],[111.88583270000004,-6.793521599999963],[111.85887810000008,-6.799765299999933],[111.84028020000005,-6.801212],[111.82808550000004,-6.799762899999962],[111.80629060000007,-6.792720199999962],[111.785308,-6.780165],[111.77412140000007,-6.777864099999931],[111.765737,-6.771649],[111.76471380000004,-6.773812199999952],[111.76217620000006,-6.774782199999947],[111.75096330000008,-6.770430899999951],[111.74843040000007,-6.771535799999981],[111.74154530000004,-6.770315899999957],[111.73001430000005,-6.7717294],[111.71788670000007,-6.769324299999937],[111.70970470000009,-6.766039299999932],[111.691412,-6.753820299999973],[111.68792670000005,-6.759364699999935],[111.68720680000007,-6.766015799999934],[111.68440120000008,-6.770570099999929],[111.677436,-6.770829599999956],[111.67585030000004,-6.774776299999928],[111.67378060000004,-6.774592],[111.67553060000006,-6.769343499999934],[111.67175540000005,-6.770235],[111.67179050000004,-6.762974499999928],[111.66309010000003,-6.770840299999975],[111.65985750000004,-6.782560399999966],[111.66403020000007,-6.789974699999959],[111.66438990000006,-6.797232],[111.66227090000007,-6.797875499999975],[111.66147540000009,-6.802162899999928],[111.65717040000004,-6.806903599999941],[111.658458,-6.808273899999961],[111.65778350000005,-6.811482399999932],[111.66119540000005,-6.8167115],[111.65826850000008,-6.820604],[111.65628710000004,-6.820635699999968],[111.65270080000005,-6.8254213],[111.64918460000007,-6.822937699999954],[111.64701370000006,-6.823337],[111.63502610000006,-6.828921699999967],[111.62911110000005,-6.824944099999925],[111.61911010000006,-6.821911299999954],[111.61348720000007,-6.831672099999935],[111.610527,-6.845761299999936],[111.61071010000006,-6.849386599999946],[111.61286230000007,-6.851481199999967],[111.61332420000008,-6.854394599999978],[111.61141960000003,-6.854614699999956],[111.61245720000005,-6.860503599999959],[111.61565920000004,-6.862265699999966],[111.61261240000005,-6.8640253],[111.609497,-6.871032699999944],[111.61230450000005,-6.875389499999926],[111.61080080000005,-6.879214],[111.61337770000006,-6.877914499999974],[111.615097,-6.881911699999932],[111.61139680000008,-6.882449599999973],[111.60971640000008,-6.887025799999947],[111.60010710000006,-6.892698499999938],[111.59966870000005,-6.895504499999959],[111.60291620000004,-6.899176699999941],[111.60247820000006,-6.902243899999974],[111.60742530000005,-6.901248499999951],[111.607881,-6.902293],[111.60239650000005,-6.9115123],[111.58355010000008,-6.910139299999969],[111.57774770000009,-6.913312399999938],[111.57497690000008,-6.918127599999934],[111.57686610000007,-6.919641],[111.57692720000006,-6.921983199999943],[111.57621760000006,-6.923811899999976],[111.57329560000005,-6.924118899999939],[111.57309720000006,-6.926347699999951],[111.57632440000003,-6.931314399999962],[111.57503510000004,-6.937857099999974],[111.57698820000007,-6.941839699999946],[111.57432550000004,-6.9453778],[111.572052,-6.945127899999932],[111.57006070000006,-6.946714799999938],[111.57214350000004,-6.952383499999939],[111.58973690000005,-6.964889],[111.59024810000005,-6.963477599999976],[111.59375,-6.964260499999966],[111.59429930000005,-6.965852699999971],[111.60082240000008,-6.965611899999942],[111.60510250000004,-6.967182099999945],[111.60945890000005,-6.971575199999961],[111.61077880000005,-6.975001799999973],[111.62191010000004,-6.9822306],[111.62336210000007,-6.987544799999966]]]},"properties":{"shapeName":"Tuban","shapeISO":"","shapeID":"22746128B88287010564718","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[105.2004,-4.613020799999958],[105.20026640000003,-4.59865],[105.203265,-4.5835833],[105.19841440000005,-4.583584599999938],[105.197488,-4.574545299999954],[105.18326970000004,-4.572266499999955],[105.175725,-4.562952899999971],[105.17439830000006,-4.558961899999929],[105.17610820000004,-4.531570899999963],[105.17402590000006,-4.514191399999959],[105.16317110000006,-4.504576899999961],[105.16085190000007,-4.496422199999927],[105.16661060000007,-4.500969299999952],[105.18305830000008,-4.495382899999925],[105.186385,-4.490646399999946],[105.19587060000003,-4.486157599999956],[105.19113140000007,-4.484218599999963],[105.18816920000006,-4.480060599999945],[105.18725130000007,-4.474726899999951],[105.19452970000003,-4.468061599999942],[105.20180130000006,-4.468243499999971],[105.20550480000009,-4.461788899999931],[105.21293970000005,-4.463753899999972],[105.21438590000008,-4.4623077],[105.21703720000005,-4.450834799999939],[105.21944750000006,-4.448183499999971],[105.22200240000006,-4.447846099999936],[105.22687110000004,-4.451895399999955],[105.231547,-4.462163099999941],[105.23882610000004,-4.4603313],[105.24239330000006,-4.471515],[105.24756170000006,-4.472637899999938],[105.25547780000005,-4.4679017],[105.25470710000008,-4.466356],[105.26027720000008,-4.453499099999931],[105.26730660000004,-4.445001099999956],[105.25820190000007,-4.441585599999939],[105.25659710000008,-4.439703899999927],[105.25798970000005,-4.434889599999963],[105.25558310000008,-4.425253199999929],[105.25667410000005,-4.422513599999945],[105.25253160000005,-4.418426599999975],[105.24754750000005,-4.419532899999979],[105.24379310000006,-4.414590299999929],[105.24005090000009,-4.412338299999931],[105.24204550000007,-4.409583699999928],[105.24360670000004,-4.389678],[105.23897720000008,-4.387892399999942],[105.22778460000006,-4.389313499999957],[105.21992710000006,-4.387183399999969],[105.21672090000004,-4.382001899999977],[105.204708,-4.380453299999942],[105.20016450000008,-4.371987399999966],[105.20158460000005,-4.369675499999971],[105.20089950000005,-4.3598439],[105.20363040000007,-4.359872199999927],[105.20816050000008,-4.355137499999955],[105.22056770000006,-4.353191599999946],[105.22609070000004,-4.360274299999958],[105.230644,-4.360330099999942],[105.22990170000008,-4.352274699999953],[105.23217810000006,-4.351588399999969],[105.23251780000004,-4.345589399999938],[105.23109420000009,-4.343476],[105.22876080000003,-4.343819499999938],[105.22961530000003,-4.346447299999966],[105.22728190000004,-4.3469622],[105.20423170000004,-4.348968299999967],[105.20455410000005,-4.343615099999965],[105.20329850000007,-4.341455799999949],[105.20692150000008,-4.334927299999947],[105.20562580000006,-4.3289475],[105.20153950000008,-4.328867899999977],[105.20033,-4.301773799999978],[105.18229760000008,-4.301555599999972],[105.17600440000007,-4.296295799999939],[105.17049890000004,-4.296428599999956],[105.16533550000008,-4.298666899999944],[105.15939950000006,-4.297258],[105.15823790000007,-4.295529099999953],[105.15847340000005,-4.273865599999965],[105.16356460000009,-4.269263699999954],[105.16950520000006,-4.26824],[105.19038340000009,-4.2695984],[105.19067390000004,-4.252949799999953],[105.18882070000006,-4.243319199999974],[105.19037480000009,-4.234325199999944],[105.20218170000004,-4.230099299999949],[105.21368820000004,-4.228177799999969],[105.21654620000004,-4.221938799999975],[105.21707150000009,-4.213316],[105.22327150000007,-4.207483299999978],[105.22445160000007,-4.2040854],[105.224602,-4.191731599999969],[105.22572120000007,-4.1894825],[105.23068390000009,-4.188826],[105.22690420000004,-4.183418699999947],[105.21011420000008,-4.170406299999968],[105.20418560000007,-4.170047099999977],[105.19556380000006,-4.175640899999962],[105.19179270000006,-4.181954899999937],[105.18700610000008,-4.184970199999952],[105.18640440000007,-4.187367499999937],[105.180177,-4.187567199999933],[105.17335080000004,-4.190274399999964],[105.16185440000004,-4.197491899999932],[105.14400640000008,-4.201287199999967],[105.14239460000005,-4.218220899999949],[105.14410860000004,-4.222497199999964],[105.13918630000006,-4.223860099999968],[105.134682,-4.219563499999936],[105.13076980000005,-4.210997599999928],[105.10766260000008,-4.223922399999935],[105.10766040000004,-4.207675599999959],[105.11072530000007,-4.207657199999971],[105.11094370000006,-4.203700899999944],[105.09583840000005,-4.205681],[105.08751980000005,-4.208978899999977],[105.08757250000008,-4.214800899999943],[105.085769,-4.214473899999973],[105.08576960000005,-4.219968799999947],[105.08047520000008,-4.219641299999978],[105.07842420000009,-4.217876599999954],[105.06885760000006,-4.217877499999929],[105.06687820000008,-4.216221699999949],[105.06621770000004,-4.207279599999936],[105.06419670000008,-4.205905499999972],[105.073393,-4.174994799999979],[105.06867080000006,-4.166013299999975],[105.06065670000004,-4.159545499999979],[105.06417350000004,-4.1571941],[105.06081930000005,-4.151713799999925],[105.06236690000009,-4.150847299999953],[105.04996310000007,-4.141271299999971],[105.04769560000005,-4.141682599999967],[105.04652520000008,-4.139625799999976],[105.04257120000005,-4.138506099999972],[105.03529310000005,-4.1401506],[105.03096230000006,-4.144105199999956],[105.02864480000005,-4.144034599999941],[105.02668530000005,-4.146973899999978],[105.02456670000004,-4.156281499999977],[105.02231140000004,-4.156246499999952],[105.02348910000006,-4.157161299999927],[105.02122290000005,-4.158211599999959],[105.02099060000006,-4.1657898],[105.01881820000006,-4.166417199999955],[105.01827350000008,-4.168661699999973],[105.01308520000003,-4.173730299999932],[105.00943280000007,-4.173477599999956],[105.00856990000005,-4.175317299999961],[105.00619810000006,-4.174784],[105.00620070000008,-4.176135],[105.00087170000006,-4.177178899999944],[104.997046,-4.175266099999931],[104.99144740000008,-4.176105799999959],[104.97847740000009,-4.171673699999928],[104.96970630000004,-4.173026599999957],[104.96730750000006,-4.171778299999971],[104.96195510000007,-4.1756491],[104.95316830000007,-4.178210099999944],[104.94963340000004,-4.181537],[104.945877,-4.1921837],[104.940575,-4.190187],[104.93794210000004,-4.191090599999939],[104.937048,-4.189729],[104.93438890000004,-4.192404599999975],[104.92923140000005,-4.192478499999936],[104.93056730000006,-4.199455],[104.92921410000008,-4.201383499999963],[104.93263740000003,-4.212133599999959],[104.94209050000006,-4.229877399999964],[104.97157260000006,-4.252502299999946],[104.978221,-4.254414399999973],[104.97952390000006,-4.256963499999927],[104.98453540000008,-4.2554543],[104.98849440000004,-4.2566786],[104.99522630000007,-4.270749],[104.99789840000005,-4.287768899999946],[104.99401920000008,-4.288742499999955],[104.99401910000006,-4.293630599999972],[104.99827270000009,-4.311774699999944],[104.990367,-4.310331599999927],[104.99073530000004,-4.327052299999934],[104.98932850000006,-4.334358899999927],[104.99196790000008,-4.352538],[104.99602760000005,-4.368050499999981],[104.986833,-4.398803199999975],[104.98665240000008,-4.404393299999981],[104.98939980000006,-4.404903799999943],[104.99076320000006,-4.401186899999971],[104.99805090000007,-4.398605099999941],[105.00815840000007,-4.404006799999934],[105.01286740000006,-4.404624799999965],[105.01267560000008,-4.408918299999925],[105.01707580000004,-4.410653599999932],[105.01919980000008,-4.408969],[105.01795170000008,-4.400105899999971],[105.02387620000007,-4.402612499999975],[105.02608980000008,-4.409253199999966],[105.02895440000003,-4.406518799999958],[105.02547130000005,-4.401212699999974],[105.02953050000008,-4.400904299999979],[105.03224220000004,-4.403198399999951],[105.031168,-4.409123],[105.03549750000008,-4.410587799999973],[105.03780870000008,-4.409220599999969],[105.03859,-4.39952],[105.04138950000004,-4.400203599999941],[105.04148720000006,-4.404044799999951],[105.04461220000007,-4.406486199999961],[105.04627240000008,-4.404956199999958],[105.04689090000005,-4.401212699999974],[105.04846990000004,-4.400439699999936],[105.04985320000009,-4.403361199999949],[105.04829060000009,-4.407527899999934],[105.05636370000008,-4.406225799999959],[105.056852,-4.408764899999937],[105.05274790000004,-4.411446799999965],[105.05764140000008,-4.415077699999927],[105.06129140000007,-4.414532099999974],[105.06254550000006,-4.435284599999932],[105.06729610000008,-4.434986199999969],[105.067594,-4.446608599999934],[105.06414990000007,-4.464840199999969],[105.04804460000008,-4.470938199999978],[105.02015880000005,-4.470027799999968],[105.00813240000008,-4.463022899999942],[105.00084550000008,-4.462210299999981],[104.99760690000005,-4.455709399999932],[104.99023670000008,-4.454599799999926],[104.98236360000004,-4.4470261],[104.97942950000004,-4.44784],[104.97736720000006,-4.453163599999925],[104.97152610000006,-4.458825499999932],[104.97246330000007,-4.468466499999977],[104.96733920000008,-4.4752634],[104.96866720000008,-4.479958],[104.967743,-4.484594499999957],[104.96358490000006,-4.489346799999964],[104.95607730000006,-4.493287499999951],[104.95388250000008,-4.498039799999958],[104.951226,-4.499430599999926],[104.95024340000003,-4.511891399999968],[104.947355,-4.523946299999977],[104.94362710000007,-4.530605399999956],[104.952679,-4.528631299999972],[104.95911820000003,-4.5311843],[104.96080040000004,-4.529497099999958],[104.96380410000006,-4.529979399999945],[104.96731060000008,-4.527881],[104.97099810000009,-4.533784199999957],[104.97224950000003,-4.544631],[104.97512370000004,-4.550617299999942],[104.98575830000004,-4.5587102],[104.98761280000008,-4.574227899999926],[104.99152380000004,-4.577571499999976],[104.98864750000007,-4.579860599999961],[104.98843370000009,-4.582858],[104.99234170000005,-4.581007899999975],[104.993957,-4.581948699999941],[104.98889220000007,-4.584823099999937],[104.99451970000007,-4.584614099999953],[104.992159,-4.5877044],[104.98910560000007,-4.587254799999926],[104.98899610000007,-4.590212399999928],[104.985513,-4.592475299999933],[104.98966160000003,-4.594683],[104.99011150000007,-4.59834],[104.997689,-4.606845299999975],[104.99499050000009,-4.614625799999942],[104.99894620000003,-4.630659499999979],[104.99814580000009,-4.651107399999944],[104.99946670000008,-4.659912199999951],[105.00393250000008,-4.662318399999947],[105.009065,-4.659089499999936],[105.02741290000006,-4.667842599999972],[105.03498890000009,-4.668294099999969],[105.05392720000003,-4.692617699999971],[105.06591070000007,-4.6966104],[105.06931470000006,-4.708552699999927],[105.07524330000007,-4.706712099999947],[105.07819790000008,-4.707422899999926],[105.07950610000006,-4.711294399999929],[105.10168250000004,-4.713095299999964],[105.11734520000005,-4.720270399999947],[105.11966540000009,-4.720076099999972],[105.11966580000006,-4.722403899999961],[105.12121250000007,-4.721433699999977],[105.12699060000006,-4.727344699999946],[105.13819150000006,-4.715140299999973],[105.14300930000007,-4.704744699999935],[105.14101040000008,-4.696693599999946],[105.14182610000006,-4.690623099999925],[105.13762060000005,-4.685091],[105.13980760000004,-4.683078599999931],[105.13830940000008,-4.679694899999959],[105.14088730000009,-4.6787438],[105.14263550000004,-4.680520899999976],[105.14479880000005,-4.676298199999962],[105.14980350000008,-4.677019599999937],[105.15121140000008,-4.675274699999932],[105.15591950000004,-4.677132699999959],[105.16056290000006,-4.669687299999964],[105.16050530000007,-4.666360399999974],[105.16391920000007,-4.663651899999934],[105.17328510000004,-4.645449099999951],[105.17736880000007,-4.643703399999936],[105.18238440000005,-4.638853799999936],[105.17716090000005,-4.634815199999935],[105.17633170000005,-4.621028299999978],[105.178475,-4.617888599999958],[105.18283090000006,-4.615037799999925],[105.2004,-4.613020799999958]]]},"properties":{"shapeName":"Tulang Bawang Barat","shapeISO":"","shapeID":"22746128B23163115514293","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[105.81661260000004,-4.649592199999972],[105.82772380000006,-4.640525199999956],[105.82987730000008,-4.6363046],[105.83257880000008,-4.621200599999952],[105.83577150000008,-4.6198498],[105.839087,-4.620770799999946],[105.84227980000009,-4.628629799999942],[105.84498130000009,-4.6311472],[105.85591020000004,-4.631208599999979],[105.85812060000006,-4.634769699999936],[105.85799780000008,-4.655706599999974],[105.85118260000007,-4.668968699999937],[105.85155090000006,-4.674433099999931],[105.85480510000008,-4.677748599999973],[105.86843550000003,-4.682414899999969],[105.87580080000004,-4.683003799999938],[105.87718760000007,-4.682872599999939],[105.87728650000008,-4.681066399999963],[105.88105230000008,-4.680575199999964],[105.88686470000005,-4.683113],[105.89848950000004,-4.684914099999958],[105.90086350000007,-4.682294399999932],[105.90940480000006,-4.659481399999947],[105.91693630000009,-4.646710499999926],[105.91636330000006,-4.642699099999959],[105.91276120000003,-4.638360299999931],[105.90768560000004,-4.634185199999934],[105.90320320000006,-4.633951599999932],[105.90198320000007,-4.628255899999942],[105.89537160000003,-4.625397],[105.890899,-4.619130499999926],[105.88577410000005,-4.605706399999974],[105.88449610000004,-4.590086099999951],[105.88691010000008,-4.578441899999973],[105.89180920000007,-4.564951599999972],[105.89656630000007,-4.558064499999944],[105.90529940000005,-4.550467399999945],[105.89912230000004,-4.512978799999928],[105.89919330000004,-4.4889803],[105.90274340000008,-4.466259899999955],[105.90643550000004,-4.454047699999933],[105.91261260000005,-4.441267499999981],[105.91310960000004,-4.4370074],[105.91218660000004,-4.435516399999926],[105.90167840000004,-4.433670399999926],[105.89408120000007,-4.4367944],[105.89160530000004,-4.440444699999944],[105.88052,-4.430191299999933],[105.86536790000008,-4.410539699999958],[105.85256990000005,-4.4068376],[105.85119650000007,-4.403636899999981],[105.85439160000004,-4.4000868],[105.85929060000007,-4.388513599999953],[105.85879360000007,-4.377934399999958],[105.85382350000003,-4.372041299999978],[105.84998950000005,-4.370834299999956],[105.83772340000007,-4.362099299999954],[105.82982510000005,-4.353581],[105.82528110000004,-4.343072799999959],[105.821447,-4.327665499999966],[105.81860690000008,-4.305087199999946],[105.81814490000005,-4.274762099999975],[105.81938950000006,-4.236373299999968],[105.82066040000007,-4.233913499999971],[105.81971750000008,-4.227518099999941],[105.82721980000008,-4.189104399999962],[105.81925660000007,-4.162079199999937],[105.82137020000005,-4.158289299999979],[105.81856880000004,-4.141611299999965],[105.80827280000005,-4.123472699999979],[105.78985460000007,-4.121642],[105.78075140000004,-4.118170199999952],[105.77673760000005,-4.112517799999978],[105.77024490000008,-4.119920899999954],[105.771989,-4.131123099999968],[105.76593060000005,-4.139722399999926],[105.75299090000004,-4.147124899999937],[105.75161280000003,-4.154489299999966],[105.754715,-4.160936599999957],[105.75759480000005,-4.194049399999926],[105.72140730000007,-4.199760799999979],[105.71991960000008,-4.187984099999937],[105.68270550000005,-4.191024],[105.68279370000005,-4.192803199999958],[105.654991,-4.195881899999961],[105.653877,-4.217319199999963],[105.62527320000004,-4.215324799999962],[105.62219130000005,-4.220397099999957],[105.60695770000007,-4.218901499999959],[105.60674520000003,-4.199285],[105.60169060000004,-4.192810799999961],[105.58682,-4.189723899999933],[105.57531510000007,-4.185507499999972],[105.57363010000006,-4.182973799999957],[105.54460780000005,-4.168387399999972],[105.54458730000005,-4.1704797],[105.54121430000004,-4.167913799999951],[105.53168220000003,-4.165574399999969],[105.52675570000008,-4.161114299999952],[105.50447090000006,-4.161374399999943],[105.50454190000005,-4.131096699999944],[105.46828620000008,-4.134724199999937],[105.46773380000008,-4.159916499999952],[105.45991070000008,-4.1610103],[105.45909340000009,-4.162448299999937],[105.42382690000005,-4.161488299999974],[105.42418720000006,-4.143732],[105.42568850000004,-4.140479399999947],[105.42532090000009,-4.1191341],[105.402081,-4.119762199999968],[105.40207970000006,-4.124676099999931],[105.40043390000005,-4.125141799999938],[105.39554570000007,-4.121247],[105.39408990000004,-4.121620199999938],[105.38731330000007,-4.131438199999934],[105.36591520000007,-4.129655099999979],[105.36494750000008,-4.162521499999968],[105.35676950000004,-4.160958099999959],[105.31820410000006,-4.160244],[105.31209140000004,-4.159077499999967],[105.27790270000008,-4.189336799999978],[105.24754910000007,-4.190358],[105.23735980000004,-4.192254899999966],[105.22690420000004,-4.183418699999947],[105.23068390000009,-4.188826],[105.22572120000007,-4.1894825],[105.224602,-4.191731599999969],[105.22445160000007,-4.2040854],[105.22327150000007,-4.207483299999978],[105.21707150000009,-4.213316],[105.21654620000004,-4.221938799999975],[105.21368820000004,-4.228177799999969],[105.20218170000004,-4.230099299999949],[105.19037480000009,-4.234325199999944],[105.18882070000006,-4.243319199999974],[105.19067390000004,-4.252949799999953],[105.19038340000009,-4.2695984],[105.16950520000006,-4.26824],[105.16356460000009,-4.269263699999954],[105.15847340000005,-4.273865599999965],[105.15823790000007,-4.295529099999953],[105.15939950000006,-4.297258],[105.16533550000008,-4.298666899999944],[105.17049890000004,-4.296428599999956],[105.17600440000007,-4.296295799999939],[105.18229760000008,-4.301555599999972],[105.20033,-4.301773799999978],[105.20153950000008,-4.328867899999977],[105.20562580000006,-4.3289475],[105.20692150000008,-4.334927299999947],[105.20329850000007,-4.341455799999949],[105.20455410000005,-4.343615099999965],[105.20423170000004,-4.348968299999967],[105.22728190000004,-4.3469622],[105.22961530000003,-4.346447299999966],[105.22876080000003,-4.343819499999938],[105.23109420000009,-4.343476],[105.23251780000004,-4.345589399999938],[105.23217810000006,-4.351588399999969],[105.22990170000008,-4.352274699999953],[105.230644,-4.360330099999942],[105.22609070000004,-4.360274299999958],[105.22056770000006,-4.353191599999946],[105.20816050000008,-4.355137499999955],[105.20363040000007,-4.359872199999927],[105.20089950000005,-4.3598439],[105.20158460000005,-4.369675499999971],[105.20016450000008,-4.371987399999966],[105.204708,-4.380453299999942],[105.21672090000004,-4.382001899999977],[105.21992710000006,-4.387183399999969],[105.22778460000006,-4.389313499999957],[105.23897720000008,-4.387892399999942],[105.24360670000004,-4.389678],[105.24204550000007,-4.409583699999928],[105.24005090000009,-4.412338299999931],[105.24379310000006,-4.414590299999929],[105.24754750000005,-4.419532899999979],[105.25253160000005,-4.418426599999975],[105.25667410000005,-4.422513599999945],[105.25558310000008,-4.425253199999929],[105.25798970000005,-4.434889599999963],[105.25659710000008,-4.439703899999927],[105.25820190000007,-4.441585599999939],[105.26730660000004,-4.445001099999956],[105.26027720000008,-4.453499099999931],[105.25470710000008,-4.466356],[105.25547780000005,-4.4679017],[105.24756170000006,-4.472637899999938],[105.24239330000006,-4.471515],[105.23882610000004,-4.4603313],[105.231547,-4.462163099999941],[105.22687110000004,-4.451895399999955],[105.22200240000006,-4.447846099999936],[105.21944750000006,-4.448183499999971],[105.21703720000005,-4.450834799999939],[105.21438590000008,-4.4623077],[105.21293970000005,-4.463753899999972],[105.20550480000009,-4.461788899999931],[105.20180130000006,-4.468243499999971],[105.19452970000003,-4.468061599999942],[105.18725130000007,-4.474726899999951],[105.18816920000006,-4.480060599999945],[105.19113140000007,-4.484218599999963],[105.19587060000003,-4.486157599999956],[105.186385,-4.490646399999946],[105.18305830000008,-4.495382899999925],[105.16661060000007,-4.500969299999952],[105.16085190000007,-4.496422199999927],[105.16317110000006,-4.504576899999961],[105.17402590000006,-4.514191399999959],[105.17610820000004,-4.531570899999963],[105.17439830000006,-4.558961899999929],[105.175725,-4.562952899999971],[105.18326970000004,-4.572266499999955],[105.197488,-4.574545299999954],[105.19841440000005,-4.583584599999938],[105.203265,-4.5835833],[105.20026640000003,-4.59865],[105.2004,-4.613020799999958],[105.20766290000006,-4.610670499999969],[105.21048990000008,-4.6107873],[105.21264690000004,-4.612659299999962],[105.21390320000006,-4.6154815],[105.21261780000003,-4.623081099999979],[105.20888280000008,-4.634277199999929],[105.215739,-4.638649399999963],[105.22663470000003,-4.639104199999963],[105.22827980000005,-4.643065699999966],[105.23447130000005,-4.640224299999943],[105.24056420000005,-4.640843399999937],[105.24285340000006,-4.638743399999953],[105.245256,-4.640275799999927],[105.24713970000005,-4.639312],[105.24593420000008,-4.637983],[105.24723120000004,-4.636374699999976],[105.25066670000007,-4.637634],[105.25498010000007,-4.635338099999956],[105.26129880000008,-4.635924599999953],[105.26377710000008,-4.631440899999973],[105.26023940000005,-4.629170699999975],[105.26145320000006,-4.626684],[105.26436360000008,-4.625576199999955],[105.26260420000006,-4.623586799999941],[105.263263,-4.622395399999959],[105.26512590000004,-4.6220092],[105.26544390000004,-4.623395],[105.27000380000004,-4.621962499999938],[105.27285790000008,-4.626843799999961],[105.27526170000004,-4.620767299999955],[105.27772,-4.620638499999927],[105.27836320000006,-4.622019599999931],[105.28407650000008,-4.620619599999941],[105.28657380000004,-4.622114199999942],[105.28617650000007,-4.6189737],[105.28774670000007,-4.619049399999938],[105.28820070000006,-4.617346699999928],[105.28585490000006,-4.617517],[105.28555220000004,-4.615719699999943],[105.28880610000004,-4.613714399999935],[105.29143580000004,-4.613846799999976],[105.29172620000008,-4.616089399999964],[105.29353570000006,-4.616892699999937],[105.29404420000009,-4.613427099999967],[105.29673290000005,-4.612844199999927],[105.29523840000007,-4.611198299999955],[105.29680860000008,-4.610384799999963],[105.296384,-4.607062799999937],[105.29958960000005,-4.608360499999947],[105.29923020000007,-4.604917399999977],[105.30414890000009,-4.604368699999952],[105.30312730000009,-4.601947199999927],[105.304603,-4.600149899999963],[105.30298850000008,-4.598920899999939],[105.304029,-4.594979599999931],[105.31035420000006,-4.592185299999926],[105.31215140000006,-4.579680199999927],[105.31555670000006,-4.577523499999927],[105.31854580000004,-4.578469499999926],[105.31977550000005,-4.576483],[105.32242410000003,-4.577523499999927],[105.32346460000008,-4.5725291],[105.32503480000008,-4.574231699999928],[105.32671860000005,-4.573437199999944],[105.32664290000008,-4.575480299999981],[105.32809960000009,-4.575593899999944],[105.32861040000006,-4.5722642],[105.32738070000005,-4.569823799999938],[105.32866720000004,-4.568688599999973],[105.32982120000008,-4.570334499999944],[105.32972660000007,-4.5658509],[105.33142920000006,-4.567061699999954],[105.33816420000005,-4.563788799999941],[105.33960790000003,-4.560052599999949],[105.33794190000003,-4.558328],[105.33899660000009,-4.558113299999945],[105.34009250000008,-4.552783],[105.34448290000006,-4.551889099999926],[105.34523970000004,-4.550489199999959],[105.34672610000007,-4.551601699999935],[105.34787710000006,-4.5483],[105.35038550000007,-4.548256799999933],[105.35013950000007,-4.549827],[105.35352590000008,-4.550602699999956],[105.35577720000003,-4.543754199999967],[105.35382860000004,-4.538949],[105.35738530000003,-4.538873299999977],[105.36126350000006,-4.536281499999973],[105.36487690000007,-4.528543799999966],[105.36998880000004,-4.525703599999929],[105.36958860000004,-4.521505199999979],[105.37549010000004,-4.521960199999967],[105.37917920000007,-4.518706299999963],[105.37908460000006,-4.516473899999937],[105.38056030000007,-4.517325199999959],[105.38481690000003,-4.515849599999967],[105.38818440000006,-4.517873899999927],[105.39170320000005,-4.515187499999968],[105.39561930000008,-4.515414499999963],[105.39879760000008,-4.513522599999931],[105.39993270000008,-4.510968699999978],[105.40821190000008,-4.513617199999942],[105.41026920000007,-4.511446399999954],[105.40810230000005,-4.517817099999945],[105.41203310000009,-4.518548599999974],[105.41463540000007,-4.511107399999958],[105.41841910000005,-4.508080499999949],[105.42131990000007,-4.508004799999981],[105.42321180000005,-4.510199299999954],[105.42618830000004,-4.506138199999953],[105.427727,-4.510098399999947],[105.43431060000006,-4.506138199999953],[105.43694340000008,-4.5017302],[105.44159730000007,-4.503111199999978],[105.44487020000008,-4.502297699999929],[105.44905110000008,-4.494768199999953],[105.45591850000005,-4.493746599999952],[105.45669410000005,-4.492138599999976],[105.464375,-4.497038399999951],[105.46630470000008,-4.493746599999952],[105.46358040000007,-4.494673599999942],[105.46501820000009,-4.492384499999957],[105.468783,-4.491533199999935],[105.47122350000006,-4.494049299999972],[105.47247210000006,-4.489944],[105.47508280000005,-4.491268299999945],[105.47372070000006,-4.495770899999968],[105.47822330000008,-4.496830299999942],[105.48238530000003,-4.492081799999937],[105.48272580000008,-4.487522499999955],[105.48756890000004,-4.489338699999962],[105.48919590000008,-4.483284799999979],[105.49254450000006,-4.482736099999954],[105.49513630000007,-4.4924223],[105.497066,-4.494825],[105.50522420000004,-4.49547],[105.50730370000008,-4.492236099999957],[105.50999010000004,-4.491517199999976],[105.51432240000008,-4.497249499999953],[105.51958170000006,-4.496927899999946],[105.52151140000007,-4.498119699999961],[105.52414110000007,-4.507257299999935],[105.531103,-4.507219499999962],[105.53520830000008,-4.509319399999981],[105.53681640000008,-4.513670599999955],[105.53384620000008,-4.518646199999978],[105.53430020000008,-4.520632599999942],[105.55195110000005,-4.520538],[105.56158050000005,-4.517113799999947],[105.57141810000007,-4.519232599999953],[105.57338560000005,-4.521616399999971],[105.57440720000005,-4.531813399999976],[105.57728280000003,-4.534632199999976],[105.58127460000009,-4.535294299999975],[105.58341240000004,-4.534045699999979],[105.58467990000008,-4.530924199999959],[105.585342,-4.518759699999976],[105.58922030000008,-4.514540899999929],[105.59769570000009,-4.514219299999979],[105.603201,-4.521956899999964],[105.60764680000005,-4.521654199999944],[105.61216830000006,-4.518267799999933],[105.62083290000004,-4.517757],[105.62711380000007,-4.500881799999945],[105.627757,-4.486976799999979],[105.63307310000005,-4.482095899999933],[105.638673,-4.482776899999976],[105.64332690000003,-4.481149899999934],[105.64659980000005,-4.486844399999939],[105.64548360000003,-4.495527899999956],[105.64177560000007,-4.498554799999965],[105.64139720000009,-4.501468299999942],[105.64610790000006,-4.508941],[105.65464010000005,-4.509092399999929],[105.65848050000005,-4.506538399999954],[105.66092080000004,-4.500619699999959],[105.66969890000007,-4.500448899999981],[105.67416910000009,-4.494230099999925],[105.67424940000006,-4.486495599999955],[105.68141680000008,-4.485085399999946],[105.69372540000006,-4.490855099999976],[105.69624160000006,-4.493598199999951],[105.69807670000006,-4.4967387],[105.69871990000007,-4.504514099999938],[105.69784970000006,-4.506481599999972],[105.693366,-4.5092248],[105.69325250000009,-4.512440899999945],[105.70660890000005,-4.518097499999953],[105.70791420000006,-4.527632399999959],[105.71324920000006,-4.531037699999956],[105.71981390000008,-4.531113399999981],[105.72373,-4.527727],[105.72670020000004,-4.529694499999948],[105.72866770000007,-4.536713199999951],[105.73750260000008,-4.535634899999934],[105.745211,-4.529820399999949],[105.74499830000008,-4.522855199999981],[105.74894820000009,-4.520973099999935],[105.75411290000005,-4.522354199999938],[105.75653450000004,-4.529902599999957],[105.75937220000009,-4.532153899999969],[105.76162350000004,-4.532002499999976],[105.76601260000007,-4.528654],[105.77117730000003,-4.529259399999944],[105.77361270000006,-4.532392],[105.77395830000006,-4.536410499999931],[105.76860440000007,-4.540875299999925],[105.76760170000006,-4.544488699999931],[105.77100390000004,-4.552585699999952],[105.78351520000007,-4.556672099999957],[105.78694580000007,-4.549684899999932],[105.78951870000009,-4.549508399999979],[105.79294920000007,-4.551702899999952],[105.79993640000004,-4.561212499999954],[105.79991120000005,-4.570268099999964],[105.79428610000008,-4.573396],[105.79401810000007,-4.579872399999942],[105.79623150000003,-4.581158799999969],[105.80251240000007,-4.579966899999931],[105.80494590000006,-4.584918199999947],[105.80121690000004,-4.591164],[105.79736660000003,-4.590863899999931],[105.79312890000006,-4.588518099999931],[105.78511290000006,-4.596419399999945],[105.78331270000007,-4.603307299999926],[105.778848,-4.605274799999961],[105.77960470000005,-4.612337699999955],[105.78338840000004,-4.613649399999929],[105.77917590000004,-4.622478],[105.78199930000005,-4.625179799999955],[105.78137920000006,-4.6330996],[105.79111730000005,-4.635699],[105.79987580000005,-4.644472699999938],[105.80423980000006,-4.653568399999926],[105.81189780000005,-4.652939799999956],[105.81661260000004,-4.649592199999972]]]},"properties":{"shapeName":"Tulangbawang","shapeISO":"","shapeID":"22746128B64158935968656","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[111.95705490000006,-7.997469],[111.95648890000007,-7.990152599999931],[111.95550530000008,-7.990868],[111.95580290000004,-7.98913],[111.95361320000006,-7.987917799999934],[111.95036280000005,-7.974756499999955],[111.94753230000003,-7.972261299999957],[111.94699850000006,-7.966652699999941],[111.94387050000006,-7.964491299999963],[111.94659390000004,-7.960888199999943],[111.94524180000008,-7.9535693],[111.94375630000008,-7.9533529],[111.94106260000007,-7.9561318],[111.935188,-7.956729699999926],[111.93122070000004,-7.9622997],[111.92909970000005,-7.962510899999927],[111.92527770000004,-7.960389],[111.92288940000009,-7.956855099999927],[111.91778530000005,-7.956562799999972],[111.91823550000004,-7.960037499999942],[111.91712190000004,-7.961213],[111.91307060000008,-7.958671],[111.91065210000005,-7.958948499999963],[111.91004180000004,-7.956123299999945],[111.90820310000004,-7.957711099999926],[111.90682980000008,-7.957452199999977],[111.90695190000008,-7.956078],[111.90260310000008,-7.957068399999969],[111.89619440000007,-7.9521765],[111.89544680000006,-7.953186],[111.89395870000004,-7.952260799999976],[111.89468380000005,-7.953566],[111.89180750000008,-7.952731099999937],[111.88668820000004,-7.948485799999958],[111.88362880000005,-7.947909799999934],[111.88198850000003,-7.943711699999938],[111.88002010000008,-7.942537199999947],[111.87824240000003,-7.932869199999971],[111.86911740000005,-7.917832499999975],[111.86289210000007,-7.910702199999946],[111.86302920000008,-7.907657499999971],[111.85124940000009,-7.900854899999956],[111.84465760000006,-7.891560399999946],[111.83037540000004,-7.877434099999959],[111.820152,-7.871923299999935],[111.81684080000008,-7.872048699999937],[111.81037110000005,-7.866426299999944],[111.80271120000003,-7.8656663],[111.801994,-7.856285899999932],[111.79717230000006,-7.847897899999964],[111.79701970000008,-7.842717499999935],[111.799202,-7.836567299999956],[111.79467770000008,-7.836537299999975],[111.78572840000004,-7.833311],[111.78525540000004,-7.8358678],[111.78210450000006,-7.837364099999945],[111.77950290000007,-7.841090599999973],[111.77656550000006,-7.8482813],[111.77307890000009,-7.851184299999943],[111.77140040000006,-7.855962199999965],[111.77313990000005,-7.860045399999933],[111.77683250000007,-7.8619441],[111.77862550000009,-7.865139399999975],[111.77329250000008,-7.872097],[111.77167510000004,-7.872415],[111.77169030000005,-7.879044499999964],[111.76960750000006,-7.878931],[111.77064510000008,-7.880532199999948],[111.76919550000008,-7.881730499999946],[111.77105710000006,-7.882853],[111.77119440000007,-7.886666199999979],[111.76411440000004,-7.8905248],[111.76116940000009,-7.8904018],[111.75874320000008,-7.894784399999935],[111.75617210000007,-7.893060599999956],[111.75605010000004,-7.8961348],[111.75779720000008,-7.896502],[111.75608060000008,-7.898702599999979],[111.76066590000005,-7.900955199999942],[111.75791930000008,-7.902065199999981],[111.75858310000007,-7.9059781],[111.75529480000006,-7.908286],[111.75598140000005,-7.909119099999941],[111.754303,-7.910087499999975],[111.75614930000006,-7.912591899999939],[111.75492090000006,-7.914392899999939],[111.75913240000006,-7.917927199999951],[111.76071930000006,-7.924595299999964],[111.756073,-7.9284567],[111.75263970000009,-7.928502],[111.74973290000008,-7.922793299999967],[111.746849,-7.920998],[111.73993680000007,-7.925219],[111.73810570000006,-7.9339799],[111.74043270000004,-7.943126099999972],[111.73937990000007,-7.946673299999929],[111.74340820000003,-7.954467199999954],[111.73809810000006,-7.958457399999929],[111.74039460000006,-7.967182099999945],[111.74287410000005,-7.970664899999974],[111.74830620000006,-7.9699148],[111.75070950000008,-7.971978099999944],[111.75334930000008,-7.9795918],[111.75897980000008,-7.9836893],[111.76045990000006,-7.987843899999973],[111.76046750000006,-7.992690499999981],[111.756546,-7.996701599999938],[111.75376890000007,-8.002488099999937],[111.75425720000004,-8.013562099999945],[111.75577540000006,-8.015882399999953],[111.75579070000003,-8.025260899999978],[111.75414270000005,-8.030285799999945],[111.764389,-8.034488599999975],[111.77028650000005,-8.041439],[111.77674860000008,-8.0376672],[111.78021240000004,-8.03923119999996],[111.78376770000006,-8.04580489999995],[111.78658290000004,-8.04735839999995],[111.78799430000004,-8.051370499999962],[111.78967280000006,-8.052366199999938],[111.79138940000007,-8.05939],[111.79429620000008,-8.061684499999956],[111.79642480000007,-8.061493799999937],[111.797615,-8.0673217],[111.80960080000006,-8.075693099999967],[111.809433,-8.07861889999998],[111.81315610000007,-8.087645399999928],[111.818573,-8.0895595],[111.82307430000009,-8.088933899999972],[111.83565520000008,-8.094686499999966],[111.83718870000007,-8.091224599999975],[111.83833310000006,-8.091597499999978],[111.83911130000007,-8.093497199999945],[111.84387970000006,-8.096390699999972],[111.84259790000004,-8.103854099999978],[111.84693140000007,-8.10641759999993],[111.84644310000004,-8.110636599999964],[111.84405510000005,-8.109995799999979],[111.84394070000008,-8.111682799999926],[111.84237670000005,-8.111748599999942],[111.84097290000005,-8.118990799999949],[111.83836360000004,-8.122828399999946],[111.83242790000008,-8.128439799999967],[111.82455440000007,-8.132081899999946],[111.82372280000004,-8.133764199999973],[111.81938170000006,-8.132723699999929],[111.81767960000008,-8.136878399999944],[111.81901570000008,-8.137390899999957],[111.80991760000006,-8.136221399999954],[111.78813170000006,-8.13710969999994],[111.78591920000008,-8.138339],[111.77104180000003,-8.1380319],[111.77102660000008,-8.139457599999957],[111.760765,-8.141245799999979],[111.75317380000007,-8.1467599],[111.74925230000008,-8.145502],[111.74628450000006,-8.1392316],[111.74478910000005,-8.13866319999994],[111.74214910000006,-8.138750799999968],[111.73613710000006,-8.142747699999973],[111.73361180000006,-8.142205],[111.72882080000005,-8.153021699999954],[111.72217560000007,-8.158986],[111.72123720000008,-8.164495399999964],[111.71954340000008,-8.167967699999963],[111.71817010000007,-8.168174699999952],[111.71706390000008,-8.174637699999948],[111.71144860000004,-8.179081899999971],[111.71926110000004,-8.187184299999956],[111.71647640000003,-8.189867899999967],[111.71686550000004,-8.1911191],[111.72283170000009,-8.193462299999965],[111.72354120000006,-8.197494399999925],[111.72126010000005,-8.197918799999968],[111.72100060000008,-8.199726099999964],[111.72847750000005,-8.20050139999995],[111.72858430000008,-8.202844599999935],[111.72680660000009,-8.204558299999974],[111.72885130000009,-8.207889499999965],[111.73224640000007,-8.208416899999975],[111.73369590000004,-8.210525399999938],[111.73442080000007,-8.215120299999967],[111.73321530000004,-8.219103699999948],[111.73191070000007,-8.219444199999941],[111.733078,-8.226590099999953],[111.73181150000005,-8.2299384],[111.73309320000004,-8.233940099999927],[111.73162070000006,-8.238888699999961],[111.72723390000004,-8.242031],[111.73480990000007,-8.254161799999963],[111.74069210000005,-8.253221399999973],[111.74349970000009,-8.258338899999956],[111.74589540000005,-8.258978799999966],[111.74585720000005,-8.265364599999941],[111.74889370000005,-8.272211],[111.74885560000007,-8.281383399999982],[111.75601950000004,-8.286263399999939],[111.75883480000005,-8.290201099999933],[111.77404880000006,-8.289099399999941],[111.77034,-8.28908],[111.76894,-8.28634],[111.77411,-8.28305],[111.7759,-8.27884],[111.77866,-8.2787],[111.77915,-8.27499],[111.77005,-8.27029],[111.77071,-8.26434],[111.7756,-8.25714],[111.79233,-8.25559],[111.79679,-8.25648],[111.80034,-8.25825],[111.80341,-8.26287],[111.79924,-8.26879],[111.79975,-8.26985],[111.80238,-8.26913],[111.80249,-8.26787],[111.8059,-8.26893],[111.80577,-8.26667],[111.80865,-8.2645],[111.81093,-8.26787],[111.81541,-8.26865],[111.81377,-8.27068],[111.81452,-8.27291],[111.81801,-8.27314],[111.8185,-8.27087],[111.82181,-8.27053],[111.82439,-8.27236],[111.82883,-8.27245],[111.8279,-8.27358],[111.82962,-8.2739],[111.82772,-8.27564],[111.82916,-8.27617],[111.8289,-8.27792],[111.83179,-8.27796],[111.83237,-8.2813],[111.84261,-8.28221],[111.84174,-8.2765],[111.83952,-8.27469],[111.84202,-8.27422],[111.84073,-8.27295],[111.84218,-8.27218],[111.84022,-8.27135],[111.84079,-8.26814],[111.83827,-8.26746],[111.83843,-8.26476],[111.83524,-8.26417],[111.83566,-8.26188],[111.83833,-8.26108],[111.83981,-8.25879],[111.8413,-8.26415],[111.84418,-8.2629],[111.84573,-8.26465],[111.84891,-8.26424],[111.85278,-8.27143],[111.85398,-8.26978],[111.85476,-8.27088],[111.85532,-8.26904],[111.8571,-8.27008],[111.85784,-8.26848],[111.85856,-8.26992],[111.86243,-8.26954],[111.86227,-8.27489],[111.86385,-8.27563],[111.86555,-8.27446],[111.86803,-8.27693],[111.86869,-8.27931],[111.8667,-8.28053],[111.86842,-8.28088],[111.86766,-8.28183],[111.86916,-8.28254],[111.86915,-8.28467],[111.87384,-8.28528],[111.87339,-8.28924],[111.87512,-8.29132],[111.87891,-8.29086],[111.88531,-8.29318],[111.88904,-8.29527],[111.88888,-8.29685],[111.89098,-8.29829],[111.8989,-8.30077],[111.8972,-8.30317],[111.89906,-8.30455],[111.90228,-8.30394],[111.90261,-8.30176],[111.90575,-8.30338],[111.90749,-8.30276],[111.91039,-8.30009],[111.91022,-8.29791],[111.91256,-8.29735],[111.91617,-8.2981],[111.91755,-8.30025],[111.92204,-8.30149],[111.92517,-8.3046],[111.92656,-8.30397],[111.92738,-8.3057],[111.92852,-8.30441],[111.92916,-8.30658],[111.93391,-8.30609],[111.93462,-8.30809],[111.93777,-8.30645],[111.94379,-8.29929],[111.9425,-8.29731],[111.94399,-8.29634],[111.94302,-8.29396],[111.93578,-8.29282],[111.93684,-8.28602],[111.94291,-8.27904],[111.94972,-8.27756],[111.96738,-8.28008],[111.978,-8.28395],[111.98524,-8.29177],[111.99344,-8.29736],[112.00658,-8.29965],[112.0107200000001,-8.304],[112.0167,-8.30239],[112.02018,-8.30396],[112.0253100000001,-8.31104],[112.02813190000006,-8.312601799999982],[112.03158570000005,-8.307504599999959],[112.03232570000011,-8.2952336],[112.0243544000001,-8.286929],[112.02379680000001,-8.281103899999948],[112.02891880000004,-8.2732135],[112.030632,-8.262681899999961],[112.02626120000002,-8.257143399999961],[112.02513120000003,-8.248011499999961],[112.0226593000001,-8.244342699999947],[112.025505,-8.2293882],[112.0226593000001,-8.228844599999945],[112.02192680000007,-8.226425099999972],[112.02391810000006,-8.225267299999928],[112.023262,-8.221628099999975],[112.02565760000005,-8.214509899999939],[112.0254440000001,-8.20588289999995],[112.02818290000005,-8.200269599999956],[112.0263748000001,-8.199019299999975],[112.0261001,-8.195659499999977],[112.02297210000006,-8.193277299999977],[112.02541350000001,-8.187633399999982],[112.02419280000004,-8.1857156],[112.02709960000004,-8.184596],[112.02909850000003,-8.181438399999934],[112.02883910000003,-8.168212799999935],[112.03162380000003,-8.1699676],[112.03544610000006,-8.1692838],[112.03787590000002,-8.17321439999995],[112.0576324000001,-8.183625099999972],[112.06716920000008,-8.186864799999967],[112.07858270000008,-8.1875171],[112.08901970000011,-8.173355],[112.09397120000006,-8.1736154],[112.09577940000008,-8.171782399999927],[112.09751130000006,-8.1664428],[112.10365290000004,-8.158392799999945],[112.114685,-8.158826699999963],[112.1165390000001,-8.157614599999931],[112.1173248,-8.143616599999973],[112.12006370000006,-8.13453759999993],[112.119873,-8.127345899999966],[112.12186980000001,-8.125416899999948],[112.11672070000009,-8.123837799999933],[112.11093890000006,-8.118798199999958],[112.09478800000011,-8.110554799999932],[112.08972160000008,-8.111215499999958],[112.08592220000003,-8.113652099999968],[112.08209390000002,-8.118884599999944],[112.0788645,-8.119001699999956],[112.071067,-8.116706799999974],[112.066719,-8.111201199999925],[112.04515070000002,-8.108527099999947],[112.03263850000008,-8.100144299999954],[112.0030746000001,-8.095440799999949],[111.99779510000008,-8.092158199999972],[111.99491880000005,-8.088351199999977],[111.99118490000006,-8.078156399999955],[111.99336070000004,-8.073514299999943],[111.99311060000008,-8.065585],[111.99462890000007,-8.059328],[111.98911560000005,-8.054644199999927],[111.98792260000005,-8.04973689999997],[111.979721,-8.04773419999998],[111.97740930000003,-8.044028199999957],[111.97486870000006,-8.044353399999977],[111.97090910000009,-8.037063499999931],[111.97075650000005,-8.03121939999994],[111.96933740000009,-8.030041599999947],[111.97034450000007,-8.027749],[111.96883390000005,-8.0267009],[111.96815790000005,-8.022760199999937],[111.96507260000004,-8.019864],[111.96212,-8.013971199999958],[111.96260070000005,-8.012118199999975],[111.95673370000009,-8.008941599999957],[111.95805360000008,-8.005955599999936],[111.95557470000006,-7.9981325],[111.95705490000006,-7.997469]]]},"properties":{"shapeName":"Tulungagung","shapeISO":"","shapeID":"22746128B30168476897506","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[107.36784380000006,-6.700699],[107.36687480000006,-6.6987545],[107.36186990000004,-6.697837499999935],[107.34428460000004,-6.689449699999955],[107.33963790000007,-6.690528099999938],[107.33950050000004,-6.688595],[107.33797570000007,-6.690247199999931],[107.33671580000004,-6.688945499999932],[107.33750160000005,-6.6878278],[107.33589190000004,-6.687413399999969],[107.33511980000009,-6.689570299999957],[107.33413710000008,-6.688575899999933],[107.33226790000003,-6.689760399999955],[107.33317550000004,-6.6932988],[107.33110060000007,-6.689995499999952],[107.32926380000004,-6.689774199999931],[107.32846080000007,-6.693354799999952],[107.32542430000007,-6.6927449],[107.32758340000004,-6.6979095],[107.32555020000007,-6.6989171],[107.32489790000005,-6.7037083],[107.32635510000006,-6.709176699999944],[107.32442490000005,-6.712027199999966],[107.32421320000009,-6.709926899999971],[107.32303610000008,-6.7110649],[107.32146840000007,-6.718037899999956],[107.31954840000009,-6.7202153],[107.31720750000005,-6.720506399999977],[107.31398120000006,-6.7176716],[107.31576550000005,-6.716305899999952],[107.31551250000007,-6.714209599999947],[107.31185950000008,-6.717252099999939],[107.31188220000007,-6.72075],[107.30871590000004,-6.719808299999954],[107.30637580000007,-6.720721],[107.30553450000008,-6.7164194],[107.30146160000004,-6.7206835],[107.30146030000009,-6.717552299999966],[107.29722040000007,-6.713867599999958],[107.30183430000005,-6.7114932],[107.30063640000009,-6.707290299999954],[107.29548660000006,-6.708204899999942],[107.29305190000008,-6.703382],[107.29236620000006,-6.708986],[107.28976550000004,-6.703205199999957],[107.28037470000004,-6.700025],[107.28052530000008,-6.702765599999964],[107.28235030000008,-6.702223699999934],[107.284218,-6.703776],[107.28551610000005,-6.702738499999953],[107.28776560000006,-6.705318099999943],[107.28403770000006,-6.7054418],[107.28434,-6.707010299999979],[107.28311170000006,-6.712985699999933],[107.28528610000006,-6.715699399999949],[107.28431710000007,-6.716787499999953],[107.28131880000007,-6.715072299999974],[107.27837380000005,-6.710148499999946],[107.27545940000005,-6.710275299999978],[107.27642830000008,-6.713284699999974],[107.27259840000005,-6.712773499999969],[107.27286540000006,-6.710410299999978],[107.26970680000005,-6.710243899999966],[107.26931780000007,-6.708421399999963],[107.26696030000005,-6.709095599999955],[107.26667040000007,-6.710463699999934],[107.26419080000005,-6.709448],[107.26454940000008,-6.71238],[107.26195540000003,-6.711099299999944],[107.26200120000004,-6.713498699999946],[107.25975050000005,-6.715855699999963],[107.25717940000004,-6.710081699999932],[107.25373090000005,-6.712699599999951],[107.25383770000008,-6.714262599999927],[107.25167860000005,-6.712811599999952],[107.25071730000008,-6.713859699999944],[107.25000010000008,-6.721511499999963],[107.251381,-6.723050699999931],[107.25028240000006,-6.725994299999968],[107.25534840000006,-6.727741],[107.25631730000003,-6.730077399999971],[107.25800340000006,-6.730246699999952],[107.25447860000008,-6.734063799999944],[107.25795,-6.733490099999926],[107.25857560000009,-6.731503199999963],[107.26165780000008,-6.731972799999937],[107.26048290000006,-6.735416599999951],[107.26494610000009,-6.734546799999976],[107.26927960000006,-6.736530899999934],[107.27027910000004,-6.735241599999938],[107.27551280000006,-6.740552599999944],[107.27062240000004,-6.74427],[107.26948560000005,-6.742112299999974],[107.26757060000006,-6.742218699999967],[107.263672,-6.738355799999965],[107.26206980000006,-6.740732799999932],[107.25925460000008,-6.741434699999957],[107.25909440000004,-6.743641099999934],[107.25828570000004,-6.742072199999939],[107.25601970000008,-6.741518199999973],[107.25572980000004,-6.738778299999979],[107.25347910000005,-6.738524599999948],[107.25552380000005,-6.741794699999957],[107.25919360000006,-6.744539399999951],[107.25763720000003,-6.746183499999972],[107.25873580000007,-6.748204399999963],[107.256157,-6.7498323],[107.25715650000006,-6.752723799999956],[107.25569930000006,-6.751477399999942],[107.25445570000005,-6.752585499999952],[107.25515760000008,-6.75377],[107.25009170000004,-6.755663099999936],[107.25598920000004,-6.754849599999943],[107.25567640000008,-6.752554599999939],[107.25740070000006,-6.753414799999973],[107.25775920000007,-6.7515923],[107.25885780000004,-6.752249899999981],[107.25985730000008,-6.750926599999957],[107.25917830000009,-6.749386],[107.26040660000007,-6.747828599999934],[107.25914780000005,-6.746654199999966],[107.26064320000006,-6.743440299999975],[107.26597610000005,-6.741833399999962],[107.27034010000006,-6.745939399999941],[107.26851670000008,-6.749212399999976],[107.27108010000006,-6.7529251],[107.27487190000005,-6.751538899999957],[107.28028880000005,-6.752780599999937],[107.28301250000004,-6.749604899999952],[107.28433240000004,-6.751515499999925],[107.28239450000007,-6.751486],[107.28331770000005,-6.753503899999941],[107.27290360000006,-6.755409399999962],[107.27067580000005,-6.754436599999963],[107.26678480000004,-6.757384399999978],[107.26105220000005,-6.756196599999953],[107.26049590000008,-6.765133699999978],[107.26163980000007,-6.76713],[107.25965130000009,-6.766618899999969],[107.25817940000007,-6.768263299999944],[107.25877390000005,-6.769965299999967],[107.26168070000006,-6.770642],[107.26058210000008,-6.772239799999966],[107.26229870000009,-6.774421799999971],[107.25902570000005,-6.77344],[107.25502790000007,-6.779540199999929],[107.25592820000008,-6.782748399999946],[107.25314460000004,-6.784689199999946],[107.25408630000004,-6.786123599999939],[107.25106060000007,-6.789125599999977],[107.25230420000008,-6.791424399999926],[107.249611,-6.795432199999937],[107.25202190000005,-6.797870799999941],[107.24984750000004,-6.798936],[107.24980940000006,-6.803495099999964],[107.25186170000006,-6.803350599999931],[107.25039690000006,-6.805729099999951],[107.25218210000008,-6.803258099999937],[107.25070970000007,-6.802479399999982],[107.250992,-6.799129199999925],[107.25291460000005,-6.796890399999938],[107.25063340000008,-6.795051699999931],[107.25504320000005,-6.792462499999942],[107.25312060000005,-6.788654],[107.25608840000007,-6.789260499999955],[107.25675220000005,-6.785679],[107.25820940000006,-6.784882699999969],[107.25757610000005,-6.782563799999934],[107.26042190000004,-6.780394699999931],[107.26132980000006,-6.776963899999942],[107.26302350000009,-6.776455599999963],[107.26361860000009,-6.772394799999972],[107.26553360000008,-6.771029599999963],[107.26932540000007,-6.771243699999957],[107.27359780000006,-6.767783299999962],[107.27671060000006,-6.7743856],[107.27842730000003,-6.7741],[107.27969370000005,-6.776482699999974],[107.28205120000007,-6.774661199999969],[107.281273,-6.779541599999959],[107.27922830000006,-6.780123899999978],[107.28047190000007,-6.780531599999961],[107.279442,-6.783809799999972],[107.28045670000006,-6.781893399999944],[107.28087630000005,-6.7844121],[107.282921,-6.779572599999938],[107.288109,-6.781430899999975],[107.28618640000008,-6.784748699999966],[107.28660590000004,-6.785827299999937],[107.28736130000004,-6.7840706],[107.29051220000008,-6.785749099999975],[107.29009260000004,-6.790135599999928],[107.29213730000004,-6.790432099999975],[107.29572310000009,-6.787988799999937],[107.30408490000008,-6.796697799999947],[107.31340040000003,-6.800786699999946],[107.31266040000008,-6.802868099999955],[107.31418620000005,-6.807353199999966],[107.31166850000005,-6.809628699999962],[107.31599440000008,-6.809525199999939],[107.31918350000007,-6.814619199999981],[107.31488810000008,-6.819500099999971],[107.31653130000007,-6.822963799999968],[107.31633610000006,-6.819197699999961],[107.31931330000003,-6.815751099999943],[107.32293810000004,-6.817078699999968],[107.32090770000008,-6.814734199999975],[107.32050340000006,-6.810902299999952],[107.31591810000003,-6.807843399999967],[107.317505,-6.805117299999949],[107.31452950000005,-6.803206099999954],[107.31871050000007,-6.801845199999946],[107.31603260000009,-6.801837599999942],[107.316475,-6.799159199999963],[107.31483470000006,-6.799387599999932],[107.31469740000006,-6.797650499999975],[107.313965,-6.798910799999931],[107.31152350000008,-6.796249099999955],[107.30971540000007,-6.797121199999935],[107.30805980000008,-6.794411799999978],[107.30542770000005,-6.794977299999971],[107.30382550000007,-6.792923599999938],[107.30197160000006,-6.793008499999928],[107.30330670000006,-6.790418299999942],[107.29762280000006,-6.787696499999981],[107.29898080000004,-6.786771899999962],[107.29509750000005,-6.785750099999973],[107.29367080000009,-6.787713699999927],[107.29243480000008,-6.787323099999981],[107.29137430000009,-6.783149399999957],[107.29338850000005,-6.783650099999932],[107.29390730000006,-6.780917799999941],[107.292801,-6.780231599999979],[107.29547890000003,-6.7783114],[107.29377,-6.779375199999947],[107.29198470000006,-6.778207499999951],[107.28956620000008,-6.7788235],[107.28850570000009,-6.776649199999952],[107.288704,-6.774927799999944],[107.29467790000007,-6.775363099999936],[107.29578410000005,-6.773491499999977],[107.299431,-6.7747866],[107.29645550000004,-6.771663799999942],[107.29815690000004,-6.768208199999947],[107.29521190000008,-6.766905899999927],[107.29367840000003,-6.764951399999973],[107.29463970000006,-6.764026299999955],[107.29340380000008,-6.763854699999968],[107.29395310000007,-6.760814399999958],[107.29589860000004,-6.759066699999948],[107.29827890000007,-6.763838899999939],[107.29772960000008,-6.752945099999977],[107.30005660000006,-6.754976899999974],[107.30117810000007,-6.749927699999944],[107.29474650000009,-6.745341899999971],[107.29510510000006,-6.742824699999971],[107.29701250000005,-6.742615799999953],[107.29729480000009,-6.743841299999929],[107.30027780000006,-6.744033499999944],[107.303383,-6.746379499999932],[107.30230730000005,-6.747430899999927],[107.30410020000005,-6.751218899999969],[107.30071270000008,-6.7577707],[107.30068980000004,-6.760624599999971],[107.30473340000009,-6.752666599999941],[107.30744950000008,-6.7525284],[107.30808270000006,-6.749968199999955],[107.30960090000008,-6.752248499999951],[107.31056230000007,-6.751484599999969],[107.31444560000006,-6.753265099999965],[107.31151590000007,-6.756900499999972],[107.30669420000004,-6.756340699999953],[107.30496230000006,-6.762248199999931],[107.30724350000008,-6.759415299999944],[107.31104290000007,-6.758707199999947],[107.30926530000005,-6.763278199999945],[107.31297310000008,-6.7597],[107.31587230000008,-6.759849199999962],[107.31611650000008,-6.758433499999967],[107.31774150000007,-6.759775799999943],[107.32085430000006,-6.758271799999932],[107.32096110000003,-6.759713799999929],[107.32334910000009,-6.7560093],[107.32444010000006,-6.7589885],[107.32342540000008,-6.760746199999971],[107.32530990000004,-6.758852599999955],[107.32636270000006,-6.760156299999949],[107.32541670000006,-6.764836],[107.32402050000007,-6.765383399999962],[107.32145710000009,-6.762866699999961],[107.32019050000008,-6.764305299999933],[107.316002,-6.764252299999953],[107.31754320000005,-6.765901299999939],[107.32053390000004,-6.766040499999974],[107.31959550000005,-6.768116199999952],[107.32099930000004,-6.768983499999933],[107.32461560000007,-6.768336],[107.32391370000005,-6.771521199999938],[107.32583630000005,-6.769051199999979],[107.32872780000008,-6.772339],[107.327469,-6.767615499999977],[107.33017740000008,-6.769466099999931],[107.32708750000006,-6.764449299999967],[107.33371750000003,-6.770295799999928],[107.33025370000007,-6.765218399999981],[107.32892620000007,-6.765286599999968],[107.328911,-6.760955],[107.33045210000006,-6.760968399999967],[107.33293930000008,-6.766207899999927],[107.33494580000007,-6.7669923],[107.33408370000006,-6.765626599999962],[107.33533490000008,-6.764658599999962],[107.33912670000007,-6.765343799999926],[107.33631150000008,-6.763813599999935],[107.33375560000007,-6.764912299999935],[107.33239,-6.762381699999935],[107.33229080000007,-6.75969],[107.33551040000003,-6.760023299999943],[107.33219160000004,-6.758871699999929],[107.334633,-6.755110899999977],[107.33427440000008,-6.758239399999979],[107.33692950000005,-6.757245699999942],[107.33941660000005,-6.759690899999953],[107.34133920000005,-6.757992399999978],[107.34207990000004,-6.76106],[107.34477250000003,-6.758787799999936],[107.34233870000008,-6.760577399999931],[107.34211740000006,-6.757829799999968],[107.34046180000007,-6.7574045],[107.33896650000008,-6.7587068],[107.33904280000007,-6.756514299999935],[107.33652510000007,-6.7561933],[107.33565540000006,-6.7540318],[107.33225260000006,-6.755307799999969],[107.33229840000007,-6.750783199999944],[107.34776320000009,-6.757900399999926],[107.35215010000007,-6.7543251],[107.35154740000007,-6.753176399999973],[107.34821330000005,-6.756756],[107.34517680000005,-6.755875799999956],[107.34591690000008,-6.754865799999948],[107.34346780000004,-6.753836799999931],[107.34269730000005,-6.750963399999932],[107.33612070000004,-6.748848099999975],[107.33560830000005,-6.747108299999979],[107.33042570000003,-6.744783899999959],[107.32947740000009,-6.741448399999967],[107.33157490000008,-6.741360699999973],[107.32694380000004,-6.737006899999926],[107.33059590000005,-6.7370413],[107.33051030000007,-6.735384599999975],[107.33300230000003,-6.736537899999973],[107.333825,-6.735265199999958],[107.336415,-6.735278699999981],[107.33116160000009,-6.732214099999965],[107.33372510000004,-6.730990599999927],[107.33232890000005,-6.728689799999927],[107.33081830000003,-6.729935299999966],[107.32695780000006,-6.727085299999942],[107.32863630000008,-6.724412099999938],[107.33118450000006,-6.724493699999925],[107.33148970000008,-6.722977799999967],[107.33538830000003,-6.724644799999965],[107.33305370000005,-6.721437199999968],[107.33512130000008,-6.719114],[107.33866130000007,-6.718017299999929],[107.34290330000005,-6.719007699999963],[107.33989730000008,-6.714843],[107.34049240000007,-6.712342],[107.34354410000009,-6.713008099999968],[107.34101880000009,-6.710441699999933],[107.34307880000006,-6.704593099999954],[107.34271250000006,-6.699710099999947],[107.34622970000004,-6.699786399999937],[107.348816,-6.697290599999974],[107.352501,-6.696909099999971],[107.36045850000005,-6.702611599999955],[107.36686720000006,-6.702392799999927],[107.36784380000006,-6.700699]]]},"properties":{"shapeName":"Waduk Cirata","shapeISO":"","shapeID":"22746128B70613244887656","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[110.79423520000006,-7.275002499999971],[110.79691310000004,-7.273912399999972],[110.79786680000007,-7.274960499999963],[110.799591,-7.271801],[110.80235290000007,-7.274237099999937],[110.80232240000004,-7.272158099999956],[110.804245,-7.271116699999936],[110.80340580000006,-7.268149799999946],[110.80475620000004,-7.267506599999933],[110.80334470000008,-7.265820499999961],[110.80654910000004,-7.2667226],[110.806366,-7.268483099999969],[110.80747990000003,-7.267052199999966],[110.81018830000005,-7.267717799999957],[110.81023410000006,-7.269045799999958],[110.81239320000009,-7.268272399999944],[110.81787870000005,-7.269927],[110.80718230000008,-7.2713265],[110.80811310000007,-7.272211499999969],[110.80665590000007,-7.2734313],[110.81073760000004,-7.273563799999977],[110.80450440000004,-7.277377599999966],[110.81414790000008,-7.275476899999944],[110.81124110000007,-7.278820499999938],[110.81169130000006,-7.280139899999938],[110.80918880000007,-7.281035399999951],[110.81088260000007,-7.283267],[110.80880740000003,-7.281424],[110.80788420000005,-7.283213599999954],[110.80592350000006,-7.282372],[110.80341340000007,-7.285386099999926],[110.804306,-7.286276799999939],[110.80104060000008,-7.287730199999942],[110.806366,-7.287160899999947],[110.80657960000008,-7.285237799999948],[110.80867,-7.288165099999958],[110.81074520000004,-7.286780299999975],[110.81159210000004,-7.287801699999932],[110.81021880000009,-7.288275699999929],[110.81192780000003,-7.289660399999946],[110.80995940000008,-7.291852399999925],[110.81112670000005,-7.292657799999972],[110.80906680000004,-7.293739799999969],[110.80696110000008,-7.2929687],[110.80733490000006,-7.2958903],[110.809494,-7.294375399999979],[110.81081390000008,-7.296298499999978],[110.814125,-7.290688],[110.81366730000008,-7.294116],[110.81561280000005,-7.293708799999933],[110.81696320000009,-7.29565],[110.81559750000008,-7.296537399999977],[110.81571960000008,-7.295241799999928],[110.81325530000004,-7.294436399999938],[110.81416320000005,-7.295791099999974],[110.81248470000008,-7.296447699999931],[110.81320190000008,-7.2980623],[110.81128690000008,-7.297567299999969],[110.80705260000008,-7.300758799999926],[110.80621340000005,-7.300031599999954],[110.80615230000006,-7.3020792],[110.80329890000007,-7.300127],[110.80369570000005,-7.302921699999956],[110.80569460000004,-7.303718499999945],[110.80282590000007,-7.305259699999965],[110.80126190000004,-7.304340799999977],[110.802269,-7.306023599999946],[110.796875,-7.305919599999982],[110.79514310000008,-7.3071088],[110.79711910000009,-7.3078279],[110.80532840000006,-7.305272499999944],[110.807724,-7.306333499999937],[110.81050110000007,-7.303035199999954],[110.814888,-7.302466799999934],[110.81442260000006,-7.307722499999954],[110.808609,-7.308974699999965],[110.81529240000003,-7.309034299999951],[110.81104280000005,-7.312951099999964],[110.81422420000007,-7.311761799999942],[110.81459050000007,-7.314187499999946],[110.815155,-7.3112764],[110.81734470000004,-7.310269799999958],[110.81589510000003,-7.308116899999959],[110.81752780000005,-7.307655799999964],[110.81884,-7.303098599999942],[110.81912990000006,-7.307586199999946],[110.82206730000007,-7.303839699999969],[110.82593540000005,-7.305573899999956],[110.82073210000004,-7.307443599999942],[110.82146450000005,-7.308432099999948],[110.81899260000006,-7.312089899999933],[110.82160950000008,-7.309451099999933],[110.82128140000009,-7.311735099999964],[110.822525,-7.311777599999971],[110.82338720000007,-7.309685699999932],[110.82575220000007,-7.3101592],[110.82284550000008,-7.311863399999936],[110.82704160000009,-7.312942],[110.82836150000009,-7.311818099999925],[110.82944490000006,-7.313406],[110.83008580000006,-7.312315],[110.83120730000007,-7.314708699999926],[110.83338930000008,-7.315073],[110.83357240000004,-7.314038299999936],[110.83436580000006,-7.315192199999956],[110.83741760000004,-7.313526599999932],[110.83513640000007,-7.315395299999977],[110.83740230000006,-7.314949899999931],[110.83665470000005,-7.316730499999949],[110.83921810000004,-7.314818299999956],[110.83769230000007,-7.317226399999981],[110.83988950000008,-7.317264],[110.84025570000006,-7.318577299999959],[110.83725740000006,-7.319378299999926],[110.83653260000006,-7.3217473],[110.83575440000004,-7.320656699999972],[110.83461760000006,-7.322328],[110.830162,-7.321006299999965],[110.82561490000006,-7.321752099999969],[110.82427980000006,-7.320661499999972],[110.82456970000004,-7.322145399999954],[110.82010650000007,-7.3222642],[110.82102970000005,-7.3241338],[110.83044430000007,-7.321646699999974],[110.83231350000005,-7.322657099999958],[110.82794950000005,-7.324909199999979],[110.82873530000006,-7.325614399999949],[110.82661440000004,-7.327843599999937],[110.83143620000004,-7.324029399999972],[110.83575440000004,-7.324294499999951],[110.833519,-7.326002099999926],[110.83464050000003,-7.326468899999952],[110.83188630000006,-7.327118799999937],[110.83422850000005,-7.327616199999966],[110.83320620000006,-7.329010899999957],[110.83541110000004,-7.327718699999934],[110.83444210000005,-7.329414299999939],[110.83638,-7.329286099999933],[110.83609010000004,-7.330504399999938],[110.83783720000008,-7.329516899999931],[110.83618930000006,-7.333593399999927],[110.83469390000005,-7.333547599999974],[110.83599090000007,-7.335565499999973],[110.83370210000004,-7.3401737],[110.83132170000005,-7.339759299999969],[110.83474730000006,-7.341917499999965],[110.83305360000008,-7.3446665],[110.83485410000009,-7.344283599999926],[110.83500670000006,-7.339610499999935],[110.83743290000007,-7.338847099999953],[110.83825680000007,-7.337026099999946],[110.837883,-7.332139],[110.83876040000007,-7.331357899999944],[110.83868410000008,-7.332433199999969],[110.84324650000008,-7.333596199999931],[110.845787,-7.331701199999941],[110.84156040000005,-7.332150399999932],[110.84087370000009,-7.329823499999975],[110.839592,-7.329899799999964],[110.84275820000005,-7.329082899999946],[110.84273530000007,-7.327358199999935],[110.83981320000004,-7.328227],[110.841835,-7.326118399999928],[110.83859250000006,-7.326833199999953],[110.83919520000006,-7.325938699999938],[110.83663180000008,-7.322960799999976],[110.83836370000006,-7.321995699999945],[110.83952330000005,-7.324155299999973],[110.83988950000008,-7.3228736],[110.84440610000007,-7.322936499999969],[110.83952330000005,-7.321860299999969],[110.83936310000007,-7.320227599999953],[110.84272770000007,-7.318391799999972],[110.84709930000008,-7.319385],[110.84692380000007,-7.3181967],[110.84863280000008,-7.318184299999928],[110.84746550000006,-7.317563],[110.84963230000005,-7.317165799999941],[110.84985350000005,-7.319283499999926],[110.85026550000003,-7.3180055],[110.85104370000005,-7.319033599999955],[110.85151670000005,-7.317883],[110.85337060000006,-7.318376],[110.85087580000004,-7.316491599999949],[110.85359950000009,-7.316733299999953],[110.85430910000008,-7.318198199999927],[110.854187,-7.317163],[110.86125180000005,-7.316191199999935],[110.850151,-7.315300399999956],[110.84435270000006,-7.316359],[110.84158330000008,-7.314844599999958],[110.84219360000009,-7.312850899999944],[110.857666,-7.311392299999966],[110.84891510000006,-7.310598299999981],[110.850853,-7.308492199999932],[110.84764860000007,-7.310707499999978],[110.84690090000004,-7.308548899999948],[110.84339140000009,-7.311520099999939],[110.84409330000005,-7.309941699999968],[110.842659,-7.308536],[110.84078980000004,-7.312031199999979],[110.84102630000007,-7.3100757],[110.83902740000008,-7.309514],[110.83892820000005,-7.312802799999929],[110.83583830000003,-7.312875199999951],[110.83817290000007,-7.309493],[110.83699030000008,-7.309969399999943],[110.835556,-7.307222799999977],[110.83373260000008,-7.308016299999963],[110.82946780000009,-7.306250099999943],[110.83659360000007,-7.305472299999963],[110.83849330000004,-7.307188],[110.83738710000006,-7.304808099999946],[110.84152980000005,-7.305236799999932],[110.84022520000008,-7.30412],[110.84098050000006,-7.303285599999981],[110.84786990000003,-7.3038349],[110.84076690000006,-7.301178],[110.83614350000005,-7.302977],[110.83771520000005,-7.299363599999936],[110.83525080000004,-7.299664],[110.83581540000006,-7.301310499999943],[110.83428950000007,-7.3004517],[110.83444210000005,-7.301815899999951],[110.83261870000007,-7.302245599999935],[110.83287050000007,-7.300682499999937],[110.82993320000008,-7.299962499999936],[110.83240510000007,-7.299606299999937],[110.830925,-7.298676399999977],[110.83174130000003,-7.297588299999973],[110.83053590000009,-7.298812799999951],[110.82799530000005,-7.296108699999934],[110.82527920000007,-7.297230199999944],[110.82722470000004,-7.2951131],[110.82409670000004,-7.293886599999951],[110.82637020000004,-7.292891],[110.83035280000007,-7.294092099999943],[110.828537,-7.295618],[110.83020780000004,-7.296792499999981],[110.83284,-7.294820299999969],[110.83236690000007,-7.297376099999951],[110.83547210000006,-7.298246799999959],[110.83429720000004,-7.296558799999957],[110.83589170000005,-7.296815799999933],[110.835434,-7.295122599999956],[110.836853,-7.295951799999955],[110.83673860000005,-7.292619699999932],[110.83468630000004,-7.2924199],[110.83679960000006,-7.290485299999943],[110.838562,-7.296661299999926],[110.83988950000008,-7.295439699999974],[110.842598,-7.298398899999938],[110.84497070000003,-7.297140599999977],[110.84044650000004,-7.293777],[110.84179690000008,-7.293247199999939],[110.840004,-7.293006399999967],[110.83895110000009,-7.289224599999955],[110.84156040000005,-7.289221299999951],[110.84263610000005,-7.290729],[110.84220890000006,-7.287760699999978],[110.84450530000004,-7.285513899999955],[110.840416,-7.287765],[110.84033960000005,-7.282898899999964],[110.83889770000008,-7.284003199999972],[110.83905030000005,-7.286124699999959],[110.83338930000008,-7.287038299999949],[110.83338930000008,-7.2838764],[110.83654780000006,-7.284532499999955],[110.83520510000005,-7.282705699999951],[110.83728790000004,-7.280835599999932],[110.83373260000008,-7.281974299999945],[110.83489230000004,-7.279646799999966],[110.83294680000006,-7.280200499999978],[110.83259580000004,-7.278106699999967],[110.82938380000007,-7.276061],[110.83038330000005,-7.275182699999959],[110.82870480000008,-7.272834299999943],[110.83348850000004,-7.276633699999934],[110.83510590000009,-7.276490699999954],[110.83287810000007,-7.274599099999932],[110.83387760000005,-7.273451299999977],[110.83267980000005,-7.273683],[110.830574,-7.268281899999977],[110.83227540000007,-7.268759199999977],[110.83240510000007,-7.264674199999945],[110.83387760000005,-7.263840199999947],[110.83754730000004,-7.265287399999977],[110.83628850000008,-7.266246799999976],[110.83682250000004,-7.267758799999967],[110.83833310000006,-7.266547699999933],[110.84108730000008,-7.267549],[110.84030920000004,-7.269385299999954],[110.84228510000008,-7.268584699999963],[110.84116360000007,-7.271287899999948],[110.84323880000005,-7.275784499999929],[110.84429170000004,-7.275616199999945],[110.84266660000009,-7.274515099999974],[110.84397120000006,-7.269912199999965],[110.84944150000007,-7.272369399999945],[110.85031130000004,-7.270177299999943],[110.85310360000005,-7.271464299999934],[110.85197450000004,-7.269869299999925],[110.854042,-7.2679338],[110.84938050000005,-7.268399699999975],[110.84866330000006,-7.269834],[110.846962,-7.268665799999951],[110.85322570000005,-7.265937299999962],[110.85034180000008,-7.265637799999979],[110.84551240000008,-7.267922799999951],[110.84413150000006,-7.262692399999935],[110.84340670000006,-7.263375699999926],[110.83759310000005,-7.259096599999964],[110.83575440000004,-7.254440699999975],[110.83451080000009,-7.254461299999946],[110.83494570000005,-7.2524199],[110.83181760000008,-7.251739],[110.83146670000008,-7.249771599999974],[110.82987980000007,-7.250104399999941],[110.83002470000008,-7.248408299999937],[110.82904050000008,-7.249135499999966],[110.82794190000004,-7.247489899999948],[110.828331,-7.251918299999943],[110.82386020000007,-7.247882799999957],[110.82472990000008,-7.245905799999946],[110.82379150000008,-7.246762699999977],[110.82237240000006,-7.245463399999949],[110.82273870000006,-7.247907599999962],[110.81797030000007,-7.246107099999961],[110.81934360000008,-7.248419699999943],[110.82242580000008,-7.249369099999967],[110.81993870000008,-7.2507009],[110.82151030000006,-7.252195799999981],[110.82302860000004,-7.252481399999965],[110.82346340000004,-7.251001299999928],[110.82498170000008,-7.252477599999963],[110.82267760000008,-7.2544837],[110.820816,-7.253419799999961],[110.82177730000006,-7.254540399999939],[110.82077030000005,-7.255778799999973],[110.82326510000007,-7.255372],[110.82218170000004,-7.2564397],[110.82300570000007,-7.2576027],[110.82411960000007,-7.2560982],[110.82529450000004,-7.258513899999969],[110.825203,-7.256338599999935],[110.82869720000008,-7.255239],[110.82868960000008,-7.256684299999961],[110.82700350000005,-7.256109199999969],[110.82764430000009,-7.257466299999976],[110.82592770000008,-7.258199199999979],[110.82776640000009,-7.259358899999938],[110.82653050000005,-7.262609],[110.82401280000005,-7.260346399999946],[110.82250980000003,-7.2614436],[110.82083130000007,-7.260705399999949],[110.81899260000006,-7.255350599999929],[110.81967160000005,-7.253386499999976],[110.81740570000005,-7.251486299999954],[110.81670380000008,-7.253080299999965],[110.813652,-7.252845699999966],[110.81694030000006,-7.254545699999937],[110.81650540000004,-7.257251699999927],[110.81534580000005,-7.257443899999942],[110.81287380000003,-7.256155499999977],[110.81091310000005,-7.256979],[110.81193540000004,-7.255762599999969],[110.81000520000003,-7.254962399999954],[110.80867770000003,-7.250822],[110.80789180000005,-7.256505899999979],[110.80184170000007,-7.256119699999942],[110.79916380000009,-7.252813299999957],[110.80027010000003,-7.256870699999979],[110.797905,-7.2559624],[110.79852290000008,-7.256977499999948],[110.79702760000004,-7.2585482],[110.798584,-7.257698499999947],[110.80037690000006,-7.258674599999949],[110.79624940000008,-7.261847],[110.79868320000008,-7.262872699999946],[110.79840090000005,-7.264271699999938],[110.79683690000007,-7.263370499999951],[110.79316710000006,-7.264513],[110.79327390000009,-7.261208499999952],[110.79087070000008,-7.263983199999927],[110.78794860000005,-7.258539599999949],[110.78650670000007,-7.259988299999975],[110.78934480000004,-7.264999899999964],[110.78804020000007,-7.266209099999969],[110.783226,-7.263778199999933],[110.78318020000006,-7.262119699999971],[110.78086090000005,-7.263580299999944],[110.78137210000006,-7.261479299999962],[110.77805330000007,-7.262528399999951],[110.77822110000005,-7.2595558],[110.77606960000008,-7.261853199999962],[110.77306370000008,-7.260715],[110.77604680000007,-7.262850299999968],[110.77566530000007,-7.2644577],[110.77188110000009,-7.2648377],[110.77216340000007,-7.263373299999955],[110.770874,-7.262898399999926],[110.76972960000006,-7.266299199999935],[110.76849360000006,-7.263944099999947],[110.76433560000004,-7.264368499999932],[110.76808930000004,-7.266470399999946],[110.76475520000008,-7.269307599999934],[110.76030730000008,-7.270441],[110.76749420000004,-7.269252299999948],[110.77051540000008,-7.270138199999963],[110.774231,-7.267422199999942],[110.77643590000008,-7.268549899999925],[110.77980810000008,-7.267831799999954],[110.78073120000005,-7.269968],[110.77211760000006,-7.271231099999966],[110.77588650000007,-7.272624899999926],[110.77567290000007,-7.275500299999976],[110.77294160000008,-7.276824],[110.77220920000008,-7.275301399999933],[110.77130120000004,-7.277577899999926],[110.76921840000006,-7.276560699999948],[110.768631,-7.278023699999949],[110.77091980000006,-7.2801132],[110.76964570000007,-7.280492299999935],[110.76983640000009,-7.282040099999961],[110.76626590000006,-7.281963299999973],[110.77175140000008,-7.285914899999966],[110.76818080000004,-7.287179899999956],[110.77172850000005,-7.289358599999957],[110.76866150000006,-7.296792],[110.75987240000006,-7.296816799999931],[110.763237,-7.2991385],[110.76252860000005,-7.297981899999968],[110.76381710000004,-7.2969679],[110.76853110000008,-7.298480499999926],[110.77047730000004,-7.294499899999948],[110.77220150000005,-7.294564199999968],[110.77246860000008,-7.301773],[110.76818080000004,-7.305683599999952],[110.77165220000006,-7.303240799999969],[110.77524570000008,-7.303257899999949],[110.77362060000007,-7.3009925],[110.77462770000005,-7.297731899999974],[110.77710730000007,-7.298321199999975],[110.77519220000005,-7.296942699999931],[110.77664180000005,-7.295987599999933],[110.77602390000004,-7.294712],[110.77948,-7.296328099999926],[110.78204340000008,-7.295165499999939],[110.78157040000008,-7.293576199999961],[110.77767180000006,-7.293581],[110.78015140000008,-7.291247799999951],[110.77609250000006,-7.287314899999956],[110.77980040000006,-7.285472399999946],[110.77671810000004,-7.284923],[110.77607720000009,-7.281660099999954],[110.78250890000004,-7.278152399999954],[110.782814,-7.2815451],[110.78407290000007,-7.281135499999948],[110.78546910000006,-7.284117699999967],[110.78476710000007,-7.281820699999969],[110.78617090000006,-7.280700199999956],[110.78448490000005,-7.278981699999974],[110.78620150000006,-7.277612199999965],[110.78446960000008,-7.276605599999925],[110.78665160000008,-7.275432099999932],[110.78645320000004,-7.272043199999928],[110.78952790000005,-7.2723283],[110.79255680000006,-7.270312299999944],[110.79344940000004,-7.273476599999981],[110.79582210000007,-7.272202],[110.79423520000006,-7.275002499999971]]]},"properties":{"shapeName":"Wadung Kedungombo","shapeISO":"","shapeID":"22746128B90849139764847","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[120.36668970000005,-4.222787299999936],[120.36924020000004,-4.211074499999938],[120.37108820000003,-4.210284799999954],[120.37536490000002,-4.203584099999944],[120.37665020000009,-4.189367599999969],[120.38148690000003,-4.176812199999972],[120.3795335000001,-4.166149],[120.37814670000012,-4.162877899999955],[120.3758385000001,-4.162425199999973],[120.37581560000001,-4.1587345],[120.37321430000009,-4.153658499999949],[120.37403920000008,-4.14625],[120.37203820000002,-4.143683599999974],[120.36255090000009,-4.141203099999927],[120.35385950000011,-4.133293499999979],[120.34689340000011,-4.131625499999927],[120.34402530000011,-4.128035],[120.34538540000005,-4.126701899999944],[120.34536810000009,-4.123356299999955],[120.34025480000003,-4.110722399999929],[120.33807530000001,-4.109102599999972],[120.33241620000001,-4.110276599999963],[120.3308187,-4.107885499999952],[120.33146780000004,-4.096220899999935],[120.33451990000003,-4.095788199999959],[120.33545850000007,-4.093333299999927],[120.338329,-4.091912699999966],[120.34875490000002,-4.0744975],[120.34842270000001,-4.069708799999944],[120.35270610000009,-4.068056099999978],[120.35591020000004,-4.064851899999951],[120.35665730000005,-4.0566341],[120.35449910000011,-4.053688899999941],[120.35685650000005,-4.052251299999966],[120.35763680000002,-4.049080299999957],[120.35639160000005,-4.0434856],[120.3538516000001,-4.041061699999943],[120.3552959000001,-4.0364132],[120.35393460000012,-4.032146599999976],[120.3569063000001,-4.028743299999974],[120.35675690000005,-4.025755],[120.3593135000001,-4.026037199999962],[120.36095590000002,-4.021796599999959],[120.3588985,-4.018201199999965],[120.35262310000007,-4.014631799999961],[120.34885820000011,-4.010021799999947],[120.346331,-4.001151199999981],[120.34500290000005,-3.998893399999929],[120.34275910000008,-4.000003899999967],[120.34132960000011,-3.9953823],[120.35042350000003,-3.986287899999979],[120.35115660000008,-3.982808],[120.34979440000006,-3.981329],[120.35249140000008,-3.979980499999954],[120.35310550000008,-3.973159799999962],[120.351347,-3.968401],[120.34454140000003,-3.959929899999963],[120.3359028000001,-3.937688899999955],[120.344133,-3.904566899999963],[120.34477860000004,-3.896589099999971],[120.343692,-3.89157],[120.346027,-3.889489799999978],[120.35653230000003,-3.866749],[120.35606020000012,-3.864379699999972],[120.36080850000008,-3.854399299999955],[120.36152360000006,-3.848671799999977],[120.36564560000011,-3.849714899999981],[120.3732285000001,-3.8412793],[120.3777745000001,-3.828704099999925],[120.38353810000001,-3.818328699999938],[120.38486160000002,-3.814493099999936],[120.38397170000007,-3.813449799999944],[120.38520040000003,-3.813302499999963],[120.39439140000002,-3.796942699999931],[120.398229,-3.7948543],[120.40106140000012,-3.786137599999961],[120.40634040000009,-3.778851699999962],[120.42050740000002,-3.764098499999932],[120.431687,-3.754834799999969],[120.43935940000006,-3.7459681],[120.44083200000011,-3.742367899999977],[120.44094930000006,-3.727959899999973],[120.4385784000001,-3.725836499999957],[120.43835690000003,-3.714893699999948],[120.43628560000002,-3.707168599999932],[120.43722810000008,-3.700971099999947],[120.43476280000004,-3.697361699999931],[120.43709420000005,-3.6962362],[120.43801010000004,-3.688860299999931],[120.4360918000001,-3.685877699999935],[120.42965490000006,-3.682663099999957],[120.43255080000006,-3.680268399999932],[120.42884560000005,-3.683018299999958],[120.42865,-3.678777499999967],[120.42752230000008,-3.679595899999981],[120.42829370000004,-3.682654099999979],[120.42733040000007,-3.681119099999933],[120.4277651000001,-3.682634499999949],[120.42425570000012,-3.682057199999974],[120.42035640000006,-3.678656099999955],[120.41769420000003,-3.678497199999981],[120.412,-3.6636218],[120.40940340000009,-3.663795899999968],[120.410023,-3.665160299999968],[120.408046,-3.667374],[120.40200930000003,-3.661500899999965],[120.39790670000002,-3.660814099999925],[120.39223090000007,-3.662509899999975],[120.38762180000003,-3.658790199999942],[120.36126720000004,-3.654932699999961],[120.3577563,-3.6523078],[120.35064430000011,-3.652224499999932],[120.34987170000011,-3.650413699999945],[120.3437431000001,-3.649997],[120.3354958000001,-3.653600199999971],[120.32809670000006,-3.649890399999947],[120.32443790000002,-3.651683099999957],[120.33019960000001,-3.665193399999964],[120.331073,-3.679455],[120.31438120000007,-3.690341799999942],[120.31068840000012,-3.695086799999956],[120.30999770000005,-3.701254199999937],[120.30517650000002,-3.709587699999929],[120.30136170000003,-3.710318799999925],[120.29686450000008,-3.717755499999953],[120.28541660000008,-3.7208447],[120.28219810000007,-3.718849499999976],[120.27470050000011,-3.717515399999968],[120.27011220000009,-3.721403599999974],[120.26661950000005,-3.722491899999966],[120.2604047000001,-3.720722799999976],[120.2566766000001,-3.716005299999949],[120.2491083000001,-3.714886299999932],[120.24066060000007,-3.707461699999953],[120.23709320000012,-3.707618199999956],[120.23568190000003,-3.711996499999941],[120.23141410000005,-3.715811699999961],[120.227059,-3.725075799999956],[120.21291180000003,-3.730146099999956],[120.212526,-3.734953],[120.21047710000005,-3.734749499999964],[120.20678690000011,-3.752031199999976],[120.2017896000001,-3.757976599999949],[120.20180690000007,-3.760877299999947],[120.19524580000007,-3.767772699999966],[120.19278,-3.773981599999956],[120.1869822000001,-3.774730399999953],[120.1629746000001,-3.769022399999926],[120.1558940000001,-3.770288599999958],[120.15025470000012,-3.773050499999954],[120.15029450000009,-3.775215199999934],[120.147988,-3.775731099999973],[120.14582760000008,-3.779277699999966],[120.15130780000004,-3.785112],[120.14813790000005,-3.787930299999971],[120.14807050000002,-3.7915081],[120.1542832,-3.797523099999978],[120.14553020000005,-3.802067099999931],[120.14425540000002,-3.814246899999944],[120.13934290000009,-3.8161986],[120.14172620000011,-3.824569199999928],[120.14067160000002,-3.8286553],[120.1303147000001,-3.833420199999978],[120.12897850000002,-3.838510099999951],[120.12920370000006,-3.841588899999977],[120.13128050000012,-3.844087899999977],[120.130076,-3.846169299999929],[120.12217540000006,-3.849994199999969],[120.11945570000012,-3.847211],[120.11783060000005,-3.851299299999937],[120.11441250000007,-3.8525294],[120.1152585000001,-3.849876399999971],[120.11148150000008,-3.850463199999979],[120.10993960000008,-3.848175],[120.11257880000005,-3.848221599999931],[120.11157070000002,-3.841108499999962],[120.10260930000004,-3.839988299999959],[120.1019669000001,-3.843498899999929],[120.09577940000008,-3.844586399999969],[120.09297590000006,-3.843068799999969],[120.08821510000007,-3.844861099999946],[120.08712930000002,-3.8484265],[120.08240580000006,-3.847575799999959],[120.08198550000009,-3.850845299999946],[120.07944490000011,-3.848527],[120.0760269000001,-3.852700199999958],[120.0725632000001,-3.851706699999966],[120.07100680000008,-3.853238599999941],[120.06827550000003,-3.852992499999971],[120.06412320000004,-3.857224899999949],[120.06288150000012,-3.855390499999942],[120.05754850000005,-3.854876799999943],[120.05715180000004,-3.862099199999932],[120.04908110000008,-3.868806199999938],[120.04985340000007,-3.876327599999968],[120.04877050000005,-3.880624],[120.05228670000008,-3.884144499999934],[120.04232260000003,-3.912454599999933],[120.03877370000009,-3.917123199999935],[120.02682470000002,-3.925976599999956],[120.02286750000007,-3.936090199999967],[120.01609940000003,-3.938048799999933],[120.00656830000003,-3.936265],[120.00861180000004,-3.928334699999937],[120.00567750000005,-3.925480199999924],[120.00247260000003,-3.926709399999936],[120.0038379,-3.929569599999979],[120.00258170000006,-3.931197699999927],[120.00050210000006,-3.9307063],[119.999338,-3.927651899999944],[119.99755540000001,-3.927729899999974],[119.99614050000002,-3.930958299999929],[119.99214160000008,-3.9295401],[119.98752050000007,-3.933639599999935],[119.97704380000005,-3.935682799999938],[119.97497250000004,-3.934830699999964],[119.9754603,-3.931605599999955],[119.97324760000004,-3.9311121],[119.97018430000003,-3.936729199999945],[119.96064510000008,-3.937102399999958],[119.96010760000001,-3.938821399999938],[119.9589324000001,-3.936822],[119.953505,-3.934835599999928],[119.95230720000006,-3.938919099999964],[119.94079040000008,-3.934936899999968],[119.9395760000001,-3.928796399999953],[119.92974420000007,-3.931839599999932],[119.91619520000006,-3.932531899999958],[119.91706240000008,-3.934018399999957],[119.9159393000001,-3.934925799999974],[119.9183273000001,-3.936186299999974],[119.91451260000008,-3.943055899999933],[119.914903,-3.950588],[119.91153240000006,-3.962847899999929],[119.90505210000003,-3.968746],[119.9057117000001,-3.982279099999971],[119.90466370000001,-3.985397099999943],[119.89261850000003,-4.001620099999968],[119.88670410000009,-4.019035299999928],[119.89367070000003,-4.028047],[119.89529260000006,-4.043142899999964],[119.902127,-4.053401799999961],[119.90185380000003,-4.059363899999937],[119.899971,-4.061524399999939],[119.90505220000011,-4.066873499999929],[119.8945615,-4.076008],[119.89200360000007,-4.081764699999951],[119.8900499,-4.100197899999955],[119.89189190000002,-4.102369499999952],[119.8907587000001,-4.105021699999952],[119.89216320000003,-4.107827599999951],[119.89368070000012,-4.110866099999953],[119.89942480000002,-4.112046899999939],[119.90095250000002,-4.117233499999941],[119.90486590000012,-4.115330599999936],[119.90453570000011,-4.111759499999948],[119.90962410000009,-4.118305299999975],[119.91469140000004,-4.119026199999951],[119.91481240000007,-4.121141899999941],[119.9180665,-4.124404699999957],[119.9182561,-4.120947199999932],[119.92052320000005,-4.1212346],[119.92080070000009,-4.122758099999942],[119.92202180000004,-4.122071],[119.92237770000008,-4.1241731],[119.92005730000005,-4.126396199999931],[119.92092480000008,-4.129351],[119.92327030000001,-4.128846899999928],[119.9248004000001,-4.131489299999942],[119.92874350000011,-4.130026699999974],[119.92871570000011,-4.131452499999966],[119.9309631000001,-4.132525699999974],[119.93052520000003,-4.134115],[119.93282160000001,-4.134487799999931],[119.93220310000004,-4.141403399999945],[119.92914960000007,-4.146494599999926],[119.9266616000001,-4.147591199999965],[119.92473770000004,-4.15345],[119.91987230000007,-4.155805499999929],[119.91738050000004,-4.162666799999954],[119.92115990000002,-4.167643799999951],[119.91823810000005,-4.170445299999926],[119.9209876000001,-4.171618299999977],[119.9204056000001,-4.174969399999952],[119.92218630000002,-4.176512899999977],[119.9250095000001,-4.176402899999971],[119.925182,-4.178375099999926],[119.92196950000005,-4.180376599999931],[119.922454,-4.1819],[119.9248315000001,-4.181824799999958],[119.92293010000003,-4.183382],[119.92537240000001,-4.182975],[119.92638570000008,-4.184612499999957],[119.9274994000001,-4.182138099999975],[119.92899110000008,-4.183641199999954],[119.931003,-4.180724099999964],[119.93865570000003,-4.180440399999952],[119.93910790000007,-4.185339699999929],[119.94120750000002,-4.1859853],[119.94462410000006,-4.181071399999951],[119.94449320000001,-4.179892],[119.94221650000009,-4.180227299999956],[119.94322370000009,-4.178844],[119.9423091000001,-4.175979499999926],[119.94455130000006,-4.17608],[119.94310840000003,-4.176993],[119.9449327000001,-4.177315599999929],[119.94878340000002,-4.182248199999947],[119.94922940000004,-4.184739399999955],[119.9460269000001,-4.188921099999959],[119.946579,-4.193121399999939],[119.94319070000006,-4.201612399999931],[119.93913630000009,-4.20289],[119.93559760000005,-4.206448699999953],[119.93844210000009,-4.220320399999935],[119.9382227000001,-4.227928099999929],[119.93647910000004,-4.2320099],[119.937356,-4.237304199999926],[119.935423,-4.238986899999929],[119.93440080000005,-4.248952199999962],[119.938055,-4.255804],[119.95141300000012,-4.256647299999941],[119.95767160000003,-4.258460799999966],[119.95828070000005,-4.2672293],[119.96065780000004,-4.2722284],[119.96355360000007,-4.273633399999937],[119.97330090000003,-4.2706285],[119.97792360000005,-4.266918099999941],[119.993406,-4.266777],[120.00497650000011,-4.2647092],[120.00824450000005,-4.268654499999968],[120.01074210000002,-4.268669399999965],[120.01485080000009,-4.266843499999936],[120.01835830000005,-4.267235899999946],[120.021732,-4.265004099999942],[120.02966290000006,-4.264537399999938],[120.03975690000004,-4.261507199999926],[120.04154950000009,-4.263848899999971],[120.04199950000009,-4.268581],[120.0399096000001,-4.274588],[120.04107680000004,-4.278748099999973],[120.04005430000007,-4.2819051],[120.04290780000008,-4.285787399999947],[120.05198650000011,-4.286582299999964],[120.073203,-4.285111099999938],[120.0708919000001,-4.272020699999928],[120.07393690000004,-4.2647952],[120.07276230000002,-4.260083499999951],[120.0763141000001,-4.247370199999978],[120.08350610000002,-4.2490839],[120.08941690000006,-4.248375099999976],[120.09989480000002,-4.252214799999933],[120.11068240000009,-4.248213399999941],[120.1199117000001,-4.243228699999975],[120.1248144000001,-4.227529799999957],[120.13061020000009,-4.225804499999981],[120.13295770000002,-4.2227727],[120.135556,-4.222706799999969],[120.13856160000012,-4.219577],[120.1397558000001,-4.223671899999943],[120.14152630000001,-4.224782299999958],[120.14852110000004,-4.2227778],[120.15129410000009,-4.225016799999935],[120.1614317000001,-4.227802499999939],[120.16585320000002,-4.225710699999979],[120.17367810000007,-4.2266039],[120.177969,-4.230098799999951],[120.18312950000006,-4.230884699999933],[120.19232140000008,-4.236939499999949],[120.21842790000005,-4.237537599999939],[120.22543240000005,-4.235382199999947],[120.23181530000011,-4.242246799999975],[120.231876,-4.248273599999948],[120.23419550000006,-4.255119499999978],[120.23407940000004,-4.262517199999934],[120.2396738000001,-4.269456199999979],[120.2443747000001,-4.269558],[120.2502948,-4.272701099999949],[120.25940480000008,-4.270482299999969],[120.26515440000003,-4.267251199999976],[120.27910980000001,-4.249312399999951],[120.28343440000003,-4.246580699999924],[120.292178,-4.244432199999949],[120.30031870000005,-4.248079099999927],[120.3123293000001,-4.241033499999958],[120.31870980000008,-4.238913799999978],[120.33467760000008,-4.240060699999958],[120.34531320000008,-4.231425199999933],[120.34954410000012,-4.231440699999951],[120.35093130000007,-4.229860699999961],[120.35066310000002,-4.226011199999959],[120.35717420000003,-4.222415199999944],[120.36123580000003,-4.221764699999937],[120.36395340000001,-4.224806499999943],[120.36668970000005,-4.222787299999936]]]},"properties":{"shapeName":"Wajo","shapeISO":"","shapeID":"22746128B66764397150411","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[124.60118220000004,-6.1256283],[124.6122448000001,-6.110291399999937],[124.61168020000002,-6.106320299999936],[124.60912430000008,-6.104275099999938],[124.60396690000005,-6.104734299999961],[124.5984585000001,-6.109589399999948],[124.59597890000009,-6.122523699999931],[124.59762690000002,-6.1256722],[124.60118220000004,-6.1256283]]],[[[123.97650140000007,-5.9201131],[123.97446030000003,-5.922696499999972],[123.97471730000007,-5.9245097],[123.96953480000002,-5.929235299999959],[123.96904150000012,-5.937165499999935],[123.97827870000003,-5.950144099999932],[123.9811989000001,-5.961657799999955],[123.98571040000002,-5.966069399999981],[123.99984440000003,-5.969096],[124.012895,-5.976224299999956],[124.02864060000002,-5.978747099999964],[124.03947670000002,-5.978218899999945],[124.04612970000005,-5.982816],[124.04947040000002,-5.9896689],[124.04966700000011,-6.001689],[124.0463406,-6.007756599999936],[124.03913550000004,-6.013890899999979],[124.03809810000007,-6.018226199999958],[124.04166570000007,-6.030657799999972],[124.04502280000008,-6.034766799999943],[124.05684560000009,-6.028532899999959],[124.07345310000005,-6.023882199999946],[124.07887110000001,-6.019299399999966],[124.08203340000011,-6.0136279],[124.0809134000001,-6.000735299999974],[124.07568260000005,-5.9897843],[124.07209910000006,-5.9765973],[124.0662314000001,-5.971686099999943],[124.06162060000008,-5.951781399999959],[124.05983540000011,-5.948029499999961],[124.05783,-5.9471665],[124.04161820000002,-5.908311499999968],[124.03876290000005,-5.907583399999965],[124.01592,-5.891407799999968],[124.00936700000011,-5.889894499999969],[123.99183510000012,-5.877787799999965],[123.98660980000011,-5.877944799999966],[123.98265040000001,-5.891369699999927],[123.9777011000001,-5.898008399999981],[123.97601170000007,-5.903076699999929],[123.97851010000011,-5.912903899999947],[123.97650140000007,-5.9201131]]],[[[123.9328858,-5.802260399999966],[123.90715790000002,-5.801397799999961],[123.90333630000009,-5.805124899999953],[123.911779,-5.814773699999932],[123.91886480000005,-5.818995099999938],[123.92233240000007,-5.823216399999978],[123.94102480000004,-5.823075299999971],[123.9459,-5.817627399999935],[123.9460021000001,-5.809798599999965],[123.94373320000011,-5.806465099999969],[123.9328858,-5.802260399999966]]],[[[124.33375520000004,-5.802990399999942],[124.3347903,-5.799385499999971],[124.3331247000001,-5.7975831],[124.33085230000006,-5.798873899999933],[124.33375520000004,-5.802990399999942]]],[[[123.87349890000007,-5.791075099999944],[123.8711872,-5.789015199999938],[123.87169830000005,-5.778986299999929],[123.86527440000009,-5.772300599999937],[123.86604490000002,-5.786444099999926],[123.86296270000003,-5.793646699999954],[123.86476320000008,-5.795445799999925],[123.87066840000011,-5.792613899999935],[123.87298770000007,-5.793130699999949],[123.87349890000007,-5.791075099999944]]],[[[123.91293480000002,-5.772223899999972],[123.90039360000003,-5.760257099999933],[123.89760730000012,-5.759293099999979],[123.89504430000011,-5.760197699999935],[123.89248140000007,-5.765323599999931],[123.8945920000001,-5.777686099999926],[123.90316770000004,-5.776114499999949],[123.90948490000005,-5.777297],[123.921277,-5.783113599999979],[123.92474460000005,-5.7829628],[123.91293480000002,-5.772223899999972]]],[[[123.90813450000007,-5.718325099999959],[123.90420720000009,-5.718685],[123.89485990000003,-5.7262231],[123.89320150000003,-5.729690699999935],[123.89244770000005,-5.740545599999962],[123.89787510000008,-5.7465761],[123.90007720000006,-5.752337099999977],[123.90550230000008,-5.756762899999956],[123.90678730000002,-5.761188699999934],[123.91,-5.76227],[123.92169190000004,-5.773119],[123.92686460000004,-5.775689599999964],[123.94099430000006,-5.779612099999952],[123.95993250000004,-5.778761],[123.99410250000005,-5.771001799999965],[124.00342180000007,-5.765272299999936],[124.00604850000002,-5.761104499999931],[124.00348550000001,-5.757184699999925],[123.99579660000006,-5.756581599999947],[123.99082140000007,-5.754471],[123.97757720000004,-5.745770899999968],[123.97491220000006,-5.741012],[123.964307,-5.732447899999954],[123.9388871000001,-5.723166],[123.92356340000003,-5.7208817],[123.92015680000009,-5.718701499999952],[123.91490940000006,-5.719739],[123.90813450000007,-5.718325099999959]]],[[[124.48479340000006,-5.719591499999979],[124.49090380000007,-5.716088899999932],[124.48752500000012,-5.7161936],[124.48479340000006,-5.719591499999979]]],[[[123.823695,-5.5825837],[123.8183064000001,-5.584121299999936],[123.8171046000001,-5.593828599999938],[123.81974250000007,-5.598185299999955],[123.82300070000008,-5.596441],[123.82422560000009,-5.591208799999947],[123.82348150000007,-5.586261899999954],[123.82714590000012,-5.583739699999967],[123.823695,-5.5825837]]],[[[123.83567170000003,-5.548285899999939],[123.8321082000001,-5.549685899999929],[123.8279083000001,-5.548667699999953],[123.82587200000012,-5.549940399999969],[123.82841740000003,-5.554903899999942],[123.83269,-5.556998699999951],[123.82967530000008,-5.5588725],[123.82853310000007,-5.561499399999946],[123.8301212,-5.567207899999971],[123.82893290000004,-5.572121399999958],[123.83267250000006,-5.57609],[123.82904950000011,-5.580646399999978],[123.8292398000001,-5.582264399999929],[123.83325960000002,-5.585951799999975],[123.83602140000005,-5.587318899999957],[123.84876250000002,-5.5880837],[123.86490630000003,-5.5944037],[123.87370480000004,-5.590795399999934],[123.8747327000001,-5.587483199999951],[123.8726769000001,-5.584113799999955],[123.87772370000005,-5.5850468],[123.88095740000006,-5.583599899999967],[123.88130010000009,-5.584570699999972],[123.88307040000007,-5.582686199999955],[123.88295620000008,-5.575547799999981],[123.87998660000005,-5.571436099999971],[123.87227710000002,-5.570636599999943],[123.86936470000012,-5.5721785],[123.86719460000006,-5.569037599999945],[123.86599540000009,-5.570408099999952],[123.86079860000007,-5.569608599999981],[123.85788620000005,-5.565953799999932],[123.85531630000003,-5.565040099999976],[123.85634430000005,-5.562241799999981],[123.85525920000009,-5.559900399999947],[123.85316150000006,-5.558490399999926],[123.85029090000012,-5.5602431],[123.841782,-5.551048799999933],[123.83779060000006,-5.553229899999963],[123.83567170000003,-5.548285899999939]]],[[[123.86973210000008,-5.541956299999981],[123.87122710000006,-5.533777899999961],[123.86321380000004,-5.533497899999929],[123.86083430000008,-5.537245599999949],[123.8500054000001,-5.545680799999957],[123.8488632000001,-5.548193499999968],[123.85029090000012,-5.551391499999966],[123.848178,-5.551848299999961],[123.84749270000009,-5.554532399999971],[123.84954850000008,-5.555560299999968],[123.85023380000007,-5.554589499999963],[123.86022760000003,-5.559500699999944],[123.86336840000001,-5.5580159],[123.868451,-5.551220199999932],[123.87564650000002,-5.551391499999966],[123.87690280000004,-5.545623699999965],[123.87359060000006,-5.545452399999931],[123.87290530000007,-5.543510699999956],[123.86973210000008,-5.541956299999981]]],[[[123.71076360000006,-5.523336799999981],[123.71506740000007,-5.518454199999951],[123.71546530000012,-5.512016599999981],[123.713,-5.50757],[123.70861220000006,-5.506186199999945],[123.70794590000003,-5.504615799999954],[123.703901,-5.506614499999955],[123.70437680000009,-5.509993299999962],[123.69852350000008,-5.51361],[123.69495440000003,-5.520367499999963],[123.699,-5.52479],[123.70385570000008,-5.525940799999944],[123.71076360000006,-5.523336799999981]]],[[[123.759,-5.48745],[123.757,-5.48483],[123.752,-5.48838],[123.741,-5.48632],[123.74017340000012,-5.489000699999963],[123.751,-5.49623],[123.75500000000011,-5.49305],[123.759,-5.49736],[123.759,-5.48745]]],[[[123.70908330000009,-5.475529499999936],[123.69155650000005,-5.471990499999947],[123.6921463000001,-5.474813299999937],[123.69994070000007,-5.482354899999962],[123.72,-5.51652],[123.75500000000011,-5.54359],[123.76091140000005,-5.551125499999955],[123.75996370000007,-5.554036899999971],[123.761899,-5.558534499999951],[123.770889,-5.566581199999973],[123.77381220000007,-5.572284099999933],[123.77338390000011,-5.575523399999952],[123.77930870000012,-5.5846606],[123.78066500000011,-5.590157099999942],[123.79101570000012,-5.594154599999968],[123.8007239000001,-5.593654899999933],[123.8105273000001,-5.597319299999981],[123.81102850000002,-5.599578799999961],[123.818827,-5.601944299999957],[123.81534380000005,-5.594923199999926],[123.81484390000003,-5.5882674],[123.81164330000001,-5.581580599999938],[123.80888350000009,-5.581146099999955],[123.80781280000008,-5.5781718],[123.81706290000011,-5.571509299999946],[123.82759210000006,-5.57142],[123.82824640000001,-5.565947299999948],[123.824947,-5.559380099999942],[123.81587860000002,-5.559681599999976],[123.812,-5.55849],[123.8060455000001,-5.546891699999946],[123.78981780000004,-5.534068099999956],[123.78446990000009,-5.528445799999929],[123.78240230000006,-5.524097],[123.77900000000011,-5.52286],[123.77524520000009,-5.514162499999941],[123.77091890000008,-5.510797599999933],[123.76685960000009,-5.503053],[123.763,-5.50366],[123.75922180000009,-5.502145],[123.75677240000005,-5.497442299999932],[123.749,-5.49651],[123.7372696000001,-5.490022899999929],[123.7325929000001,-5.479953399999943],[123.72600000000011,-5.47797],[123.71755180000002,-5.479869099999974],[123.70908330000009,-5.475529499999936]]],[[[123.77283330000012,-5.457752699999958],[123.7728724000001,-5.456696499999964],[123.770721,-5.456735599999945],[123.77122950000012,-5.459278199999972],[123.76935190000006,-5.459747599999957],[123.76653550000003,-5.457205],[123.76082440000005,-5.459982299999979],[123.76019850000012,-5.474846699999944],[123.76223260000006,-5.476998199999969],[123.76477520000003,-5.474925],[123.76669190000007,-5.475472599999932],[123.77232480000009,-5.469957099999931],[123.77568880000001,-5.473164699999927],[123.77917020000007,-5.472460599999977],[123.78046110000002,-5.475746399999935],[123.7858983000001,-5.477272],[123.78636770000003,-5.47559],[123.784099,-5.471717399999932],[123.78022640000006,-5.467297199999962],[123.77651030000004,-5.465771599999925],[123.77435890000004,-5.460177899999962],[123.77549320000003,-5.459082599999931],[123.77283330000012,-5.457752699999958]]],[[[123.61951150000004,-5.405112299999928],[123.61330120000002,-5.402196899999979],[123.61101240000005,-5.403471499999966],[123.61113450000005,-5.406637699999976],[123.6006364000001,-5.4059277],[123.58933730000001,-5.4080311],[123.58572860000004,-5.409829699999932],[123.58550730000002,-5.411900599999967],[123.5880479000001,-5.415456799999959],[123.61018080000008,-5.428662799999927],[123.6293687000001,-5.435490699999946],[123.63579270000002,-5.434724399999936],[123.64304820000007,-5.426478],[123.64371960000005,-5.421928499999979],[123.6383714000001,-5.417982199999926],[123.6321153,-5.416451],[123.61951150000004,-5.405112299999928]]],[[[123.6014798000001,-5.389974499999937],[123.6001116000001,-5.388070899999946],[123.59487680000007,-5.390034],[123.59059380000008,-5.389796],[123.5920215000001,-5.397291299999949],[123.59517280000011,-5.395367],[123.59460170000011,-5.394189099999949],[123.59699310000008,-5.395367],[123.59706440000002,-5.394082],[123.59934870000006,-5.393939299999943],[123.60052660000008,-5.395509699999934],[123.60445410000011,-5.394138599999962],[123.60451360000002,-5.392472899999973],[123.6014798000001,-5.389974499999937]]],[[[123.638173,-5.393550499999947],[123.64181990000009,-5.385546699999963],[123.6396913000001,-5.3838273],[123.63074960000006,-5.387197599999979],[123.62880410000002,-5.389612299999953],[123.63019270000007,-5.391910099999961],[123.638173,-5.393550499999947]]],[[[123.53485610000007,-5.351601399999936],[123.53101330000004,-5.352124799999956],[123.53044220000004,-5.355468],[123.5346062000001,-5.356693399999926],[123.5363076000001,-5.354825499999947],[123.53979820000006,-5.3543925],[123.53938420000009,-5.3521367],[123.53485610000007,-5.351601399999936]]],[[[123.48039540000002,-5.330342],[123.47646110000005,-5.326778],[123.46726690000003,-5.325637599999936],[123.463669,-5.327678299999945],[123.46296390000009,-5.331047099999978],[123.46915310000009,-5.3447964],[123.47318770000004,-5.348674399999936],[123.47459790000005,-5.3537668],[123.47996450000005,-5.359720899999957],[123.49874870000008,-5.365313699999945],[123.50370260000011,-5.368064499999946],[123.50476020000008,-5.370532299999979],[123.51924470000006,-5.3738011],[123.52724480000006,-5.3804819],[123.53591410000001,-5.380719],[123.54127390000008,-5.377133199999946],[123.54172,-5.373028599999941],[123.5399652000001,-5.372106499999973],[123.53292080000006,-5.376014],[123.52791910000008,-5.375289099999975],[123.5277109000001,-5.371600899999976],[123.52945610000006,-5.367371399999968],[123.526809,-5.365676099999973],[123.52701720000005,-5.362493499999971],[123.52095950000012,-5.363425499999948],[123.50873620000004,-5.354014799999959],[123.5006929000001,-5.345762699999966],[123.499805,-5.344242099999974],[123.50131310000006,-5.340683399999932],[123.49610330000007,-5.335747699999956],[123.48950810000008,-5.332391199999961],[123.48039540000002,-5.330342]]],[[[124.34434680000004,-5.332087099999967],[124.3368623,-5.325091899999961],[124.32996890000004,-5.3221284],[124.32223570000008,-5.3241509],[124.32354440000006,-5.3297427],[124.33615550000002,-5.346042],[124.34198820000006,-5.348934399999962],[124.34940510000001,-5.350351899999964],[124.3518600000001,-5.348302499999932],[124.35138110000003,-5.340972499999964],[124.34946610000009,-5.336150199999963],[124.3474596000001,-5.336213199999975],[124.34434680000004,-5.332087099999967]]],[[[124.30070150000006,-5.295422899999949],[124.29817340000011,-5.291407599999957],[124.2962103000001,-5.290991199999951],[124.29293860000007,-5.293430099999966],[124.29835180000009,-5.298456699999974],[124.30070150000006,-5.295422899999949]]],[[[123.57548480000003,-5.2471525],[123.57138580000003,-5.246705599999927],[123.5604092000001,-5.249335299999927],[123.54400270000008,-5.247469799999976],[123.53204460000006,-5.247804599999938],[123.5231956,-5.253831499999933],[123.52035220000005,-5.258628199999976],[123.51924810000003,-5.2674543],[123.52735220000011,-5.292508199999929],[123.52774970000007,-5.3110372],[123.5302779000001,-5.319335599999931],[123.53493570000012,-5.324612],[123.53379360000008,-5.325183099999947],[123.53438840000001,-5.326777299999947],[123.53629200000012,-5.327336499999944],[123.53701770000009,-5.334891299999981],[123.53856440000004,-5.336652099999981],[123.53739850000011,-5.337175599999966],[123.53832530000011,-5.339998499999979],[123.536348,-5.341768799999954],[123.53930330000003,-5.345395099999962],[123.53803270000003,-5.348678799999959],[123.5414948,-5.350913099999957],[123.54353350000008,-5.347832],[123.54454950000002,-5.349877499999934],[123.5436691000001,-5.3514242],[123.54514440000003,-5.350472399999944],[123.54918470000007,-5.352027],[123.58194,-5.382589199999927],[123.5945511000001,-5.386658099999977],[123.59613950000005,-5.385315799999944],[123.59873170000003,-5.386220499999979],[123.6029334000001,-5.383978899999931],[123.60283170000002,-5.381661299999962],[123.60109460000001,-5.382327499999974],[123.59961940000005,-5.380281199999956],[123.59983350000005,-5.377663799999937],[123.60769230000005,-5.380528599999934],[123.61563970000009,-5.375555599999927],[123.61435480000011,-5.377268799999968],[123.6142430000001,-5.382441099999937],[123.61742430000004,-5.383598099999972],[123.62756080000008,-5.3748893],[123.63655520000009,-5.372176699999955],[123.6384111000001,-5.368179199999929],[123.6389822000001,-5.365323899999964],[123.63341430000003,-5.342338299999938],[123.6429657000001,-5.30708],[123.64435220000007,-5.299278199999947],[123.64341190000005,-5.292208399999936],[123.6410155000001,-5.285372],[123.62535220000007,-5.270358199999976],[123.62363260000006,-5.266777899999965],[123.60415080000007,-5.256516499999975],[123.60094560000005,-5.256083199999978],[123.59074850000002,-5.2484799],[123.57548480000003,-5.2471525]]]]},"properties":{"shapeName":"Wakatobi","shapeISO":"","shapeID":"22746128B18768669101594","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[136.75044250000008,-2.260437699999954],[136.75140380000005,-2.259677199999942],[136.7502899000001,-2.259020299999975],[136.74879450000003,-2.260794199999964],[136.75044250000008,-2.260437699999954]]],[[[136.75573730000008,-2.255773099999942],[136.75315850000004,-2.256282599999963],[136.75302120000003,-2.259472599999981],[136.755188,-2.259672599999931],[136.7541199000001,-2.257597899999951],[136.75573730000008,-2.255773099999942]]],[[[136.7602081000001,-2.254841099999965],[136.75856020000003,-2.250023099999964],[136.7534485000001,-2.247816599999965],[136.750473,-2.252245399999936],[136.74673460000008,-2.253598199999942],[136.7488251000001,-2.260307299999965],[136.75392150000005,-2.254927899999927],[136.76013180000007,-2.255789499999935],[136.7602081000001,-2.254841099999965]]],[[[136.74002070000006,-2.2458966],[136.7402191000001,-2.244249299999979],[136.7379608000001,-2.244766699999957],[136.74002070000006,-2.2458966]]],[[[136.26965330000007,-2.222919199999978],[136.26876830000003,-2.220169099999964],[136.2613983000001,-2.216809],[136.26058960000012,-2.214909099999943],[136.25659180000002,-2.216809],[136.25215150000008,-2.223199099999931],[136.25019830000008,-2.223899399999937],[136.24891660000003,-2.229939499999944],[136.25099180000007,-2.2329993],[136.2553253000001,-2.233139],[136.26679990000002,-2.228379],[136.26965330000007,-2.222919199999978]]],[[[136.88159080000003,-3.241375799999958],[136.8829793000001,-3.234491499999933],[136.88988670000003,-3.2296169],[136.88849530000005,-3.225489299999936],[136.88628690000007,-3.223881499999948],[136.89337120000005,-3.223121399999968],[136.8983393000001,-3.219231],[136.90011990000005,-3.215371599999969],[136.8974939000001,-3.2128188],[136.89671040000007,-3.204827499999965],[136.8986288000001,-3.199719],[136.89735640000004,-3.193942599999957],[136.899292,-3.192199699999946],[136.9014893000001,-3.192810099999974],[136.90167240000005,-3.203308099999958],[136.90490720000003,-3.204589799999951],[136.90789790000008,-3.203186],[136.90948490000005,-3.192077599999948],[136.92510990000005,-3.186096199999952],[136.92791750000004,-3.187377899999944],[136.92767330000004,-3.191589399999941],[136.92449950000002,-3.193908699999952],[136.92590330000007,-3.196106],[136.9304810000001,-3.193725599999937],[136.93170170000008,-3.189880399999936],[136.93469240000002,-3.1875],[136.93890380000005,-3.186889599999972],[136.947876,-3.195312499999943],[136.9531250000001,-3.189209],[136.9575195000001,-3.188110399999971],[136.96252440000012,-3.196594199999936],[136.9669189000001,-3.197814899999969],[136.97070310000004,-3.186401399999966],[136.97290040000007,-3.185424799999964],[136.9755249000001,-3.186096199999952],[136.97827150000012,-3.1914062],[136.98229980000008,-3.1914062],[136.9810791000001,-3.186828599999956],[136.98248290000004,-3.181823699999939],[136.98907470000006,-3.174316399999952],[136.99267580000003,-3.174011199999939],[136.99450680000007,-3.182189899999969],[136.99609380000004,-3.184021],[136.99969480000004,-3.183898899999974],[137.00207520000004,-3.1768799],[137.00549320000005,-3.174804699999925],[137.00787350000007,-3.1757812],[137.0092773,-3.178283699999952],[137.00830080000003,-3.180725099999961],[137.0045166000001,-3.183288599999969],[137.003479,-3.186096199999952],[137.005127,-3.189392099999964],[137.0092773,-3.188415499999962],[137.010498,-3.184387199999946],[137.0128784000001,-3.183105499999954],[137.022522,-3.182189899999969],[137.0324707000001,-3.185180699999933],[137.03692630000012,-3.1851196],[137.0418701000001,-3.182678199999941],[137.0441284000001,-3.179199199999971],[137.04309080000007,-3.169799799999964],[137.04431150000005,-3.167907699999944],[137.0499268000001,-3.168579099999931],[137.05187990000002,-3.176391599999931],[137.0637207000001,-3.175476099999969],[137.07171630000005,-3.179504399999928],[137.088501,-3.1715088],[137.09167480000008,-3.163513199999954],[137.09210210000003,-3.156982399999947],[137.09747310000012,-3.155578599999956],[137.1029053000001,-3.157287599999961],[137.10711670000012,-3.153991699999949],[137.10729980000008,-3.146911599999953],[137.10528560000012,-3.140380899999968],[137.1157227000001,-3.130127],[137.12707520000004,-3.122680699999933],[137.1279297000001,-3.132202099999972],[137.1342773,-3.135192899999936],[137.14251710000008,-3.134704599999964],[137.15087890000007,-3.131225599999937],[137.16070560000003,-3.133178699999974],[137.1652832000001,-3.125610399999971],[137.17547610000008,-3.126220699999976],[137.18188480000003,-3.1218262],[137.182312,-3.113891599999931],[137.1870728,-3.106384299999945],[137.17407230000003,-3.0894775],[137.1624756000001,-3.081604],[137.15167240000005,-3.077697799999953],[137.2094727000001,-3.057312],[137.22772220000002,-3.0465088],[137.2493286,-3.031311],[137.2611084,-3.015197799999953],[137.29351810000003,-3.003418],[137.36370850000003,-2.9699097],[137.38044880000007,-2.965819899999929],[137.37707520000004,-2.958007799999962],[137.378479,-2.955810499999927],[137.38250730000004,-2.955993699999965],[137.38208010000005,-2.953979499999946],[137.37707520000004,-2.951293899999939],[137.3704834,-2.950927699999966],[137.36950680000007,-2.9487915],[137.371521,-2.947876],[137.3751221000001,-2.949707],[137.38171390000002,-2.947814899999969],[137.3842773,-2.945312499999943],[137.38287350000007,-2.943481399999939],[137.3779297000001,-2.943908699999952],[137.3776855000001,-2.942077599999948],[137.3803101000001,-2.939697299999978],[137.37927250000007,-2.9328003],[137.37207030000002,-2.937683099999958],[137.36889650000012,-2.937988299999972],[137.3673096000001,-2.937194799999929],[137.368103,-2.9346924],[137.36407470000006,-2.931884799999978],[137.3646851000001,-2.930481],[137.36907960000008,-2.931213399999933],[137.3704834,-2.930175799999972],[137.3657227000001,-2.9249878],[137.366272,-2.922912599999961],[137.37207030000002,-2.923095699999976],[137.3724976000001,-2.920898399999942],[137.3685303000001,-2.918823199999963],[137.36511230000008,-2.919799799999964],[137.36328130000004,-2.916992199999925],[137.3693237000001,-2.913513199999954],[137.36950680000007,-2.911499],[137.3604736000001,-2.911010699999963],[137.35632320000002,-2.909484899999939],[137.35430910000002,-2.906005899999968],[137.35467530000005,-2.903808599999934],[137.36328130000004,-2.901306199999965],[137.35888670000008,-2.8936768],[137.3599243000001,-2.8789062],[137.3579102000001,-2.877319299999954],[137.3544922000001,-2.877624499999968],[137.35192870000003,-2.879577599999948],[137.35107420000008,-2.875488299999972],[137.35351560000004,-2.869995099999926],[137.34991460000003,-2.864685099999974],[137.34570310000004,-2.869079599999964],[137.34472660000006,-2.868103],[137.3442993000001,-2.856689499999959],[137.34130860000005,-2.859985399999971],[137.33691410000006,-2.8580933],[137.33752440000012,-2.856811499999935],[137.33587650000004,-2.855285599999945],[137.33312990000002,-2.855712899999958],[137.33068850000006,-2.850708],[137.32690430000002,-2.851684599999942],[137.32330320000005,-2.8491821],[137.3247070000001,-2.8527222],[137.3231201000001,-2.853088399999933],[137.31909180000002,-2.847778299999959],[137.28491210000004,-2.843078599999956],[137.27551270000004,-2.836608899999931],[137.269104,-2.824096699999927],[137.26678230000005,-2.796296799999936],[137.27037240000004,-2.7944558],[137.27248970000005,-2.791141799999934],[137.27212140000006,-2.777241599999968],[137.249244,-2.761148699999978],[137.27631910000002,-2.729082499999947],[137.279199,-2.7240369],[137.27923080000005,-2.720414699999935],[137.2804675000001,-2.720166099999972],[137.28298240000004,-2.723113099999978],[137.28361660000007,-2.720958699999926],[137.28727720000006,-2.719078499999966],[137.2861004,-2.714606099999969],[137.26641840000002,-2.697536],[137.2633819,-2.692868499999975],[137.26306150000005,-2.688081699999941],[137.260781,-2.685711899999944],[137.2600708000001,-2.681559299999947],[137.26280210000004,-2.674977499999954],[137.26299730000005,-2.670561299999974],[137.26131380000004,-2.665538599999934],[137.263031,-2.6633805],[137.26462850000007,-2.653003399999932],[137.2606310000001,-2.638117099999931],[137.26343250000002,-2.637237],[137.26769600000011,-2.631010499999945],[137.26514950000012,-2.627625099999932],[137.26359850000006,-2.630519099999958],[137.2634124000001,-2.627033799999936],[137.261723,-2.625957199999959],[137.2610016000001,-2.622262],[137.264389,-2.625373799999977],[137.2654113000001,-2.624356699999964],[137.2617646000001,-2.619219699999974],[137.26348870000004,-2.616458199999954],[137.26066590000005,-2.616398099999969],[137.26283260000002,-2.614363699999956],[137.26089120000006,-2.612438199999929],[137.262186,-2.610709699999973],[137.2578125000001,-2.608379599999978],[137.2607773000001,-2.606084799999962],[137.2563629000001,-2.602575499999944],[137.25529480000012,-2.604131199999927],[137.25363570000002,-2.603484199999968],[137.25495210000008,-2.603099499999928],[137.25329740000006,-2.602140299999974],[137.2549768,-2.599484],[137.2518023,-2.595784399999957],[137.25369010000009,-2.591145],[137.2517478000001,-2.591089299999965],[137.2505493000001,-2.588932299999954],[137.24888050000004,-2.589595799999927],[137.2483985,-2.587461299999973],[137.24649060000002,-2.587563399999965],[137.245152,-2.584733],[137.24232240000003,-2.585009099999979],[137.24070270000004,-2.5810236],[137.2368732000001,-2.579391899999962],[137.23765560000004,-2.577460099999939],[137.24026490000006,-2.576664899999969],[137.2398283000001,-2.575442199999941],[137.23705080000002,-2.574255699999981],[137.23685690000002,-2.576108899999952],[137.23059080000007,-2.575886],[137.23161160000006,-2.577811199999928],[137.22999570000002,-2.578279499999951],[137.2275770000001,-2.574928299999954],[137.22656540000003,-2.576932499999941],[137.22357290000002,-2.577601699999946],[137.221887,-2.576668699999971],[137.22325100000012,-2.574312899999939],[137.22253580000006,-2.573011299999962],[137.21337890000007,-2.572393399999953],[137.1930632000001,-2.563691299999959],[137.19069950000005,-2.555469599999981],[137.18335130000003,-2.550434699999926],[137.17777200000012,-2.549754299999961],[137.1736896000001,-2.547304799999949],[137.16770210000004,-2.539276199999961],[137.1611703000001,-2.537643199999934],[137.15858480000009,-2.539276199999961],[137.15681580000012,-2.536826699999949],[137.15504680000004,-2.536282399999948],[137.15463850000003,-2.537779299999954],[137.15167780000002,-2.534943299999952],[137.1490249000001,-2.535274699999945],[137.14905050000004,-2.533377199999961],[137.1474151000001,-2.53249],[137.1488495000001,-2.529816599999947],[137.14563970000006,-2.526289599999927],[137.14285960000007,-2.527057],[137.14318020000007,-2.523027],[137.14082550000012,-2.521899599999927],[137.1392059000001,-2.522983299999964],[137.1371180000001,-2.517840799999931],[137.13098750000006,-2.520531399999925],[137.128463,-2.518545],[137.12788390000003,-2.521021799999971],[137.1256866000001,-2.518407299999978],[137.12489720000008,-2.520687399999929],[137.1229611000001,-2.515350599999977],[137.12074280000002,-2.517456299999935],[137.1194977,-2.515310899999974],[137.11593030000006,-2.514693199999954],[137.11479110000005,-2.5123235],[137.11343080000006,-2.511964699999965],[137.1121673,-2.513943],[137.11003110000001,-2.510956499999963],[137.11366350000003,-2.504775699999925],[137.111094,-2.499592199999938],[137.1071730000001,-2.501501699999949],[137.10576750000007,-2.499429],[137.10612060000005,-2.4957061],[137.10388360000002,-2.495472899999925],[137.09810430000005,-2.490645699999959],[137.0966099000001,-2.491137],[137.09323670000003,-2.487938799999938],[137.08966170000008,-2.489020899999957],[137.08852610000008,-2.486064499999941],[137.08709710000005,-2.486225399999967],[137.08671270000002,-2.483218],[137.07980190000012,-2.482104699999979],[137.07725520000008,-2.480043399999943],[137.0765097000001,-2.485245299999974],[137.07496230000004,-2.4855982],[137.0694228000001,-2.480051499999945],[137.06765740000003,-2.480925099999979],[137.06435950000002,-2.479855099999952],[137.0634656000001,-2.476965599999971],[137.06163020000008,-2.477835699999957],[137.05933990000005,-2.475719199999958],[137.0582737000001,-2.470104299999946],[137.0547825000001,-2.469691199999943],[137.05632020000007,-2.467433199999959],[137.05548540000007,-2.464784099999974],[137.04936120000002,-2.462158699999975],[137.04858400000012,-2.457708799999978],[137.04354460000002,-2.461568499999942],[137.04222970000012,-2.460894199999927],[137.04217530000005,-2.456787099999929],[137.04060570000001,-2.455921599999954],[137.03630650000002,-2.460100599999976],[137.03491210000004,-2.458036799999945],[137.03700250000009,-2.455315199999973],[137.03462720000005,-2.453038799999945],[137.03634640000007,-2.449831199999949],[137.03401070000007,-2.448218499999939],[137.03907770000012,-2.448124399999926],[137.040378,-2.441754299999957],[137.03478040000005,-2.440298299999938],[137.03426760000002,-2.438728799999978],[137.03641420000008,-2.434642699999927],[137.036176,-2.429397],[137.0351309,-2.427802699999972],[137.0307292000001,-2.430221299999971],[137.031589,-2.424563399999954],[137.03084180000008,-2.418327799999929],[137.02928380000003,-2.416728099999943],[137.02583160000006,-2.418022699999938],[137.01992080000002,-2.423878699999932],[137.01296520000005,-2.419880899999953],[137.00660830000004,-2.420431],[137.00227350000011,-2.425603399999943],[136.99752480000006,-2.422868],[136.99497110000004,-2.418861199999981],[136.98776240000007,-2.422156099999938],[136.98562090000007,-2.418047299999955],[136.98431390000007,-2.417974699999945],[136.97429980000004,-2.426114799999937],[136.97082050000006,-2.425573099999951],[136.9692103000001,-2.423291],[136.96434020000004,-2.4251809],[136.96346660000006,-2.420473],[136.9670383,-2.415762699999959],[136.96602970000004,-2.414021899999966],[136.95773180000003,-2.411633799999947],[136.9537855000001,-2.403469],[136.94970310000008,-2.401836099999969],[136.94970310000008,-2.398570199999938],[136.9480701000001,-2.396801099999948],[136.944396,-2.3947599],[136.94072190000009,-2.397889799999973],[136.934054,-2.392854799999952],[136.91323380000006,-2.385370499999965],[136.90792670000008,-2.379519099999925],[136.90792670000008,-2.377205699999934],[136.91214390000005,-2.371814799999925],[136.90935950000005,-2.364420099999961],[136.9099880000001,-2.361353599999973],[136.91537440000002,-2.359399199999928],[136.91565880000007,-2.356372399999941],[136.9204797000001,-2.358242399999938],[136.92485040000008,-2.362403399999948],[136.93107910000003,-2.362013199999978],[136.9325338000001,-2.361211699999956],[136.93174740000006,-2.358993299999952],[136.92778010000006,-2.356190899999945],[136.92672070000003,-2.350241],[136.93106020000005,-2.347404099999949],[136.93364640000004,-2.346990199999937],[136.93739330000005,-2.349482199999954],[136.938034,-2.347676499999977],[136.93814080000004,-2.340010899999925],[136.9368588000001,-2.339093799999944],[136.93137550000006,-2.338145499999939],[136.92483220000008,-2.334891],[136.9213257,-2.338863799999956],[136.91921460000003,-2.33398],[136.9151217000001,-2.331947299999968],[136.91585190000012,-2.3287536],[136.91850970000007,-2.328033199999936],[136.91426400000012,-2.319232],[136.9206478000001,-2.309848299999942],[136.9213933000001,-2.304357499999981],[136.9262758000001,-2.302066499999967],[136.92650850000007,-2.300640499999929],[136.92048550000004,-2.299602899999968],[136.91868890000012,-2.295414699999981],[136.91636270000004,-2.293745399999978],[136.91383440000004,-2.294262699999933],[136.90941550000002,-2.298223599999972],[136.90293880000002,-2.294199699999979],[136.9058778000001,-2.289622299999962],[136.90379330000007,-2.285272599999928],[136.9047088000001,-2.283356],[136.91368010000008,-2.286641199999963],[136.91390990000002,-2.285351699999978],[136.91003610000007,-2.282689199999936],[136.91117530000008,-2.278065899999945],[136.90662650000002,-2.276487399999951],[136.90227290000007,-2.264808499999958],[136.89951250000001,-2.269354],[136.89379770000005,-2.265100599999926],[136.8961951000001,-2.270513799999947],[136.8943302,-2.272436599999935],[136.89158630000009,-2.271344399999975],[136.89183050000008,-2.265316499999926],[136.888614,-2.260310799999957],[136.88946210000006,-2.254758599999946],[136.8837284000001,-2.2522391],[136.88553810000008,-2.249775299999953],[136.884985,-2.247637599999962],[136.88123030000008,-2.248827099999971],[136.8781719000001,-2.248074699999961],[136.8779270000001,-2.243367599999942],[136.87449370000002,-2.241603099999963],[136.87325610000005,-2.238873],[136.8737943000001,-2.231403299999954],[136.87162610000007,-2.231723299999942],[136.86965940000005,-2.235609099999976],[136.8674099000001,-2.234571],[136.86698750000005,-2.228488599999935],[136.8640101000001,-2.221776299999931],[136.86037980000003,-2.224400599999967],[136.85721390000003,-2.219763599999965],[136.85570870000004,-2.222766199999967],[136.85350820000008,-2.223390799999947],[136.85123420000002,-2.222373],[136.85056020000002,-2.220201699999961],[136.84602430000007,-2.220863799999961],[136.84399240000005,-2.217569499999968],[136.84116160000008,-2.219684299999926],[136.83867610000004,-2.2194305],[136.83936770000003,-2.213408199999947],[136.83493040000008,-2.213204099999928],[136.825747,-2.20356],[136.8250859000001,-2.200241099999971],[136.82717760000003,-2.194517799999971],[136.82263380000006,-2.190361],[136.8225874000001,-2.186435899999935],[136.8069763000001,-2.176330299999961],[136.80470270000012,-2.176999299999977],[136.80456540000012,-2.178412199999968],[136.8133392000001,-2.185863199999972],[136.81600950000006,-2.189323199999933],[136.81681820000006,-2.193133099999955],[136.81707760000006,-2.208333299999936],[136.8138427,-2.215423599999951],[136.8135681000001,-2.2212334],[136.81225580000012,-2.223393399999964],[136.81248470000003,-2.220333599999947],[136.81098940000004,-2.219513399999926],[136.8102722000001,-2.220973499999957],[136.80755610000006,-2.218363499999953],[136.8045959000001,-2.218423399999949],[136.80387880000012,-2.220391499999948],[136.80134580000004,-2.220735799999943],[136.79325860000006,-2.210893599999963],[136.78713990000006,-2.220663499999944],[136.78529360000005,-2.221023599999967],[136.78451540000003,-2.223773499999936],[136.77987670000005,-2.226963499999954],[136.7798004000001,-2.229953499999965],[136.7774353000001,-2.231043599999964],[136.77691650000008,-2.233473499999945],[136.7766418000001,-2.2318237],[136.7698669,-2.229413499999964],[136.76873780000005,-2.231573599999933],[136.7651214000001,-2.230773699999929],[136.7633972000001,-2.234283399999924],[136.75988770000004,-2.233983499999965],[136.755249,-2.237823499999934],[136.75354,-2.241943599999956],[136.75447080000004,-2.246472099999949],[136.75871270000005,-2.248205399999961],[136.76162720000002,-2.255629499999941],[136.76768490000006,-2.2590201],[136.76965330000007,-2.264390899999967],[136.7708282000001,-2.263046],[136.77020260000006,-2.264943399999936],[136.7688598000001,-2.2647078],[136.7650146000001,-2.258470299999942],[136.7631225,-2.2587094],[136.763443,-2.261158699999953],[136.7624969000001,-2.258236199999942],[136.75950620000003,-2.2564223],[136.75588990000006,-2.259350499999925],[136.7544861,-2.262671],[136.755661,-2.26425],[136.7486725000001,-2.264337499999954],[136.75410460000012,-2.276974],[136.75851440000008,-2.277521599999943],[136.7610168000001,-2.274436699999967],[136.75991820000002,-2.272146699999951],[136.76251220000006,-2.270247],[136.76416010000003,-2.271114099999977],[136.76502990000006,-2.273562699999957],[136.75764460000005,-2.278786899999943],[136.75340270000004,-2.277527799999973],[136.75001520000012,-2.271368499999937],[136.7471008000001,-2.264971499999945],[136.74717710000004,-2.260388399999954],[136.7451324000001,-2.254464399999961],[136.74159250000002,-2.257471299999963],[136.744339,-2.252489799999978],[136.74134820000006,-2.247120099999961],[136.7375793000001,-2.249337199999957],[136.73216250000007,-2.248237699999947],[136.73670960000004,-2.248627],[136.73883060000003,-2.246649],[136.73117060000004,-2.242707699999926],[136.72293090000005,-2.234767699999963],[136.7117157,-2.227937699999927],[136.70478820000005,-2.227477799999974],[136.70172120000007,-2.235777599999949],[136.69027710000012,-2.245297699999981],[136.68530270000008,-2.246957799999961],[136.682846,-2.252197699999954],[136.67414850000011,-2.258067599999947],[136.67453000000012,-2.260521399999959],[136.67330950000007,-2.261170599999957],[136.666214,-2.258027799999979],[136.6634216000001,-2.259637599999962],[136.662857,-2.256657599999926],[136.65446470000006,-2.256973699999946],[136.654129,-2.254543799999965],[136.6466064000001,-2.251589099999933],[136.64584350000007,-2.248083799999961],[136.64080810000007,-2.246083699999929],[136.6372070000001,-2.246483799999965],[136.63542170000005,-2.251851599999952],[136.62992860000008,-2.247218399999952],[136.62059020000004,-2.247138299999961],[136.6147003000001,-2.250718399999926],[136.61022950000006,-2.248748299999932],[136.60586550000005,-2.253098199999954],[136.60243220000007,-2.254055699999981],[136.60012820000009,-2.252859599999965],[136.59570310000004,-2.245305499999972],[136.59660340000005,-2.239509299999952],[136.590744,-2.245714199999952],[136.5901947000001,-2.248385699999972],[136.58984370000007,-2.2459166],[136.59564210000008,-2.236789199999976],[136.59133910000003,-2.237348099999963],[136.5887298,-2.240828],[136.58497620000003,-2.239219699999978],[136.58668520000003,-2.237151599999947],[136.58172610000008,-2.237509699999976],[136.58256530000006,-2.2357452],[136.5791015000001,-2.229526],[136.575943,-2.218926199999942],[136.57690430000002,-2.214386],[136.57923890000006,-2.214125899999942],[136.58068850000006,-2.210846],[136.5800934,-2.206755899999962],[136.5819855000001,-2.204942899999935],[136.5825195000001,-2.201236699999924],[136.58947750000004,-2.193955699999947],[136.58796690000008,-2.190114499999936],[136.58094790000007,-2.190990899999974],[136.57754510000007,-2.195935299999974],[136.5755005000001,-2.193741599999953],[136.57400510000002,-2.194429399999933],[136.57836910000003,-2.198953899999935],[136.57714840000006,-2.204170199999965],[136.5763244000001,-2.199001299999964],[136.57264710000004,-2.198951499999964],[136.57127380000009,-2.205813399999954],[136.55548090000002,-2.210915799999952],[136.55131530000006,-2.215925699999957],[136.5459595000001,-2.219555599999978],[136.54417420000004,-2.223415599999953],[136.53817750000007,-2.220915799999943],[136.53852840000002,-2.220025799999974],[136.5348358000001,-2.221275799999944],[136.53570560000003,-2.217885699999954],[136.53237910000007,-2.213896],[136.53201290000004,-2.210506],[136.526123,-2.211875899999939],[136.52671810000004,-2.2023559],[136.52476500000012,-2.201257],[136.52249140000004,-2.204682799999944],[136.51828000000012,-2.191026499999964],[136.51443480000012,-2.192323499999929],[136.51017760000002,-2.190360099999964],[136.50205990000006,-2.199861099999964],[136.495224,-2.199666],[136.48606870000003,-2.205376199999932],[136.48297120000007,-2.205786199999977],[136.47999570000002,-2.204186199999981],[136.47457880000002,-2.208286299999941],[136.46858210000005,-2.206916299999932],[136.46107480000012,-2.209176299999967],[136.45782470000006,-2.213745599999925],[136.44763180000007,-2.205741899999964],[136.42529290000004,-2.2043819],[136.4178009000001,-2.207171899999935],[136.4116974000001,-2.211811799999964],[136.40605160000007,-2.211931899999968],[136.40260310000008,-2.2155018],[136.3987274000001,-2.215982],[136.39361570000005,-2.218951899999979],[136.38978570000006,-2.225431899999933],[136.38227840000002,-2.232991899999945],[136.37324520000004,-2.236621899999932],[136.36764520000008,-2.240841899999964],[136.3641662000001,-2.246372],[136.36555480000004,-2.248875399999974],[136.35849,-2.256315699999959],[136.344162,-2.259665699999971],[136.3445892000001,-2.262215599999934],[136.339508,-2.263745799999924],[136.33921810000004,-2.270305599999972],[136.33628840000006,-2.276475699999935],[136.3335571,-2.277705699999956],[136.3323669,-2.284435799999926],[136.335144,-2.2933557],[136.3371277000001,-2.295114299999966],[136.33801270000004,-2.307945699999948],[136.33970640000007,-2.310045699999932],[136.34022520000008,-2.3384354],[136.34146120000003,-2.341295],[136.3372803000001,-2.363502],[136.33915710000008,-2.366692099999966],[136.3422088000001,-2.368294],[136.3423309000001,-2.372960299999932],[136.33380130000012,-2.379022099999929],[136.3374023,-2.375772199999972],[136.33659360000001,-2.374162199999944],[136.32923890000006,-2.380552],[136.32640070000002,-2.387122199999965],[136.32565310000007,-2.387692199999947],[136.326767,-2.384232],[136.3151398000001,-2.399772199999973],[136.312027,-2.400442099999964],[136.31272890000002,-2.399512099999924],[136.3015137000001,-2.404342399999962],[136.29866030000005,-2.406392299999936],[136.29895020000004,-2.408539799999971],[136.29586790000008,-2.411232499999926],[136.29719540000008,-2.417312399999958],[136.29573060000007,-2.425222399999939],[136.2902527000001,-2.440642399999945],[136.28570560000003,-2.448802199999932],[136.28863520000004,-2.451462299999946],[136.281189,-2.459942299999966],[136.278183,-2.468722399999933],[136.27964780000002,-2.470922199999961],[136.28775020000012,-2.473852399999942],[136.29205320000005,-2.4846334],[136.29035950000002,-2.485756899999956],[136.2888031000001,-2.484690399999977],[136.28292850000003,-2.477480399999934],[136.2808685000001,-2.507700499999942],[136.27642820000005,-2.521970499999952],[136.26622010000006,-2.545310499999971],[136.266861,-2.546280399999944],[136.26329040000007,-2.549570299999971],[136.26000970000007,-2.559330699999975],[136.25405880000005,-2.561910599999976],[136.24241640000002,-2.585200499999928],[136.22474670000008,-2.610610699999938],[136.22436520000008,-2.613500599999952],[136.22224430000006,-2.612750499999947],[136.22038270000007,-2.613860599999953],[136.21473690000005,-2.620570699999973],[136.205841,-2.625850699999944],[136.19668580000007,-2.626880699999958],[136.1950836000001,-2.630420699999945],[136.18945310000004,-2.632580799999971],[136.1875000000001,-2.637180599999965],[136.18217470000002,-2.640340599999945],[136.17684940000004,-2.636270799999977],[136.17326350000008,-2.636730899999975],[136.170105,-2.640380899999968],[136.1577453000001,-2.643570899999929],[136.14613340000005,-2.650491],[136.1383819,-2.644940899999938],[136.13514710000004,-2.645660899999939],[136.1325531000001,-2.650610899999947],[136.12466430000006,-2.658480899999972],[136.1268768000001,-2.661210799999935],[136.1234131000001,-2.661711],[136.1121674000001,-2.667520799999977],[136.0838165,-2.671521],[136.06723020000004,-2.672161099999926],[136.0629272000001,-2.671551199999953],[136.0588226000001,-2.668251],[136.05570980000005,-2.668851099999927],[136.05691530000001,-2.672391199999936],[136.0553741000001,-2.678611],[136.05242920000012,-2.680261899999948],[136.05043030000002,-2.678261],[136.05108640000003,-2.679951199999948],[136.04890440000008,-2.680751099999952],[136.0462189000001,-2.684491099999946],[136.04631040000004,-2.687391],[136.03784180000002,-2.695291],[136.02696230000004,-2.691271099999938],[136.02059930000007,-2.691351199999929],[136.01794430000007,-2.692831],[136.01634220000005,-2.6990612],[136.0177460000001,-2.700011],[136.0153656000001,-2.700171199999943],[136.01031490000003,-2.705151099999966],[136.00912470000003,-2.7084711],[136.01368710000008,-2.715861099999927],[136.01278680000007,-2.717761],[136.0184895000001,-2.722148499999946],[136.01471220000008,-2.727873],[136.0207551000001,-2.741014],[136.01811730000009,-2.744467099999952],[136.0183092000001,-2.746721199999968],[136.02406440000004,-2.744131399999958],[136.02766140000006,-2.746337599999947],[136.03221760000008,-2.7436038],[136.03998710000008,-2.745042599999977],[136.0439196000001,-2.742644599999949],[136.0437280000001,-2.746001799999931],[136.04761380000002,-2.757599],[136.0513562000001,-2.763782099999958],[136.05623750000007,-2.766548199999932],[136.07499210000003,-2.766817699999933],[136.09048470000005,-2.764037],[136.09516330000008,-2.760720899999967],[136.09814030000007,-2.754689399999961],[136.10105370000008,-2.753378399999974],[136.107463,-2.754252399999928],[136.1140180000001,-2.759787699999947],[136.118825,-2.753524099999936],[136.12785630000008,-2.754252399999928],[136.13557660000004,-2.7520674],[136.13528530000008,-2.760516099999961],[136.12989560000005,-2.766342699999939],[136.13004130000002,-2.772169399999939],[136.133683,-2.775374099999965],[136.137616,-2.771732399999962],[136.140238,-2.771441099999947],[136.14606460000005,-2.7747914],[136.14650160000008,-2.779161399999964],[136.142423,-2.7814921],[136.13790730000005,-2.786590399999966],[136.14431660000002,-2.797661],[136.145482,-2.796641399999942],[136.14213160000008,-2.789795099999935],[136.14227730000005,-2.785716399999956],[136.14344260000007,-2.7833857],[136.145919,-2.7833857],[136.14839530000006,-2.784988099999964],[136.149415,-2.7900864],[136.15145430000007,-2.792708399999981],[136.15422190000004,-2.794019399999968],[136.15596990000006,-2.794019399999968],[136.1564069000001,-2.790232099999969],[136.16048560000002,-2.787755699999934],[136.1636903000001,-2.789649399999973],[136.16135960000008,-2.795184699999936],[136.16281630000003,-2.799554699999931],[136.16835160000005,-2.796932699999957],[136.17461530000003,-2.79635],[136.1779656000001,-2.791980099999932],[136.18277260000002,-2.793728099999953],[136.18437490000008,-2.797661],[136.1797136,-2.799554699999931],[136.17883960000006,-2.8014484],[136.17883960000006,-2.804653],[136.18248130000006,-2.809605699999963],[136.18801660000008,-2.809751399999925],[136.18889060000004,-2.807712],[136.18714260000002,-2.800137399999926],[136.18932760000007,-2.797661],[136.1966109000001,-2.801011399999936],[136.20433120000007,-2.800428699999941],[136.20491390000007,-2.8014484],[136.2015636000001,-2.805964],[136.20302020000008,-2.80946],[136.2065162,-2.805235699999969],[136.2103036000001,-2.806692399999974],[136.21729560000006,-2.805964],[136.21831520000012,-2.807129399999951],[136.2158389000001,-2.8100427],[136.2181696,-2.816597699999932],[136.22370490000003,-2.820967699999926],[136.2282206000001,-2.821113399999945],[136.22909460000005,-2.8222787],[136.22210260000008,-2.8281054],[136.22166560000005,-2.832912299999975],[136.22501590000002,-2.832621],[136.22880320000002,-2.828688],[136.23288190000005,-2.829707699999972],[136.23462990000007,-2.831601399999954],[136.23404720000008,-2.833640699999933],[136.2283662000001,-2.836845299999936],[136.2293859,-2.841361],[136.2320079000001,-2.842089299999941],[136.2352125000001,-2.840632699999958],[136.23768890000008,-2.835243],[136.2394369000001,-2.835097299999973],[136.24351550000006,-2.840632699999958],[136.2524012,-2.840487],[136.25327520000008,-2.841798],[136.2531295000001,-2.843691699999965],[136.25109020000002,-2.844711299999972],[136.24599190000004,-2.843254699999932],[136.2443895,-2.844711299999972],[136.23929120000003,-2.853597],[136.2401652000001,-2.858986699999946],[136.2486139,-2.863211],[136.2512359000001,-2.862774],[136.25109020000002,-2.859132299999942],[136.24482650000004,-2.856510299999968],[136.24278720000007,-2.854179699999975],[136.2424959000001,-2.8517033],[136.24409820000005,-2.849955299999976],[136.2480312,-2.850683699999934],[136.25079890000006,-2.854908],[136.2531295000001,-2.855199299999924],[136.25589720000005,-2.854471],[136.2611412000001,-2.84879],[136.2662395000001,-2.8498097],[136.26580250000006,-2.851266299999963],[136.2618695000001,-2.852140299999974],[136.26099550000004,-2.854471],[136.2631805000001,-2.860880299999963],[136.26070420000008,-2.866124299999967],[136.26565690000007,-2.871514],[136.27177480000012,-2.873844599999927],[136.27323150000007,-2.875738299999966],[136.27206620000004,-2.879234299999951],[136.26565690000007,-2.878943],[136.26420020000012,-2.880836599999952],[136.2660939000001,-2.886372],[136.26958980000006,-2.887246],[136.27221180000004,-2.886226299999976],[136.27221180000004,-2.8830216],[136.2774558000001,-2.876029599999924],[136.2784755,-2.870931299999938],[136.28095180000003,-2.869766],[136.28386520000004,-2.871222599999953],[136.28444780000007,-2.874864299999956],[136.27818420000006,-2.880691],[136.2786212000001,-2.883604299999945],[136.28095180000003,-2.885352299999965],[136.28299120000008,-2.8838956],[136.28386520000004,-2.880545299999937],[136.28692420000004,-2.879234299999951],[136.29449880000004,-2.879817],[136.29566950000003,-2.883397299999956],[136.29125980000003,-2.884800199999972],[136.28976440000008,-2.888224599999944],[136.29051210000011,-2.890884199999959],[136.2935486,-2.893412399999931],[136.29165650000004,-2.893923],[136.28762820000009,-2.898999699999933],[136.29304500000012,-2.901396299999931],[136.29618830000004,-2.900756399999977],[136.29707340000004,-2.903668899999957],[136.29406740000002,-2.906589499999939],[136.28952020000008,-2.906598799999927],[136.2885132,-2.909261899999933],[136.2934418000001,-2.915587399999936],[136.29495240000006,-2.914950799999929],[136.29470820000006,-2.910263099999952],[136.29745480000008,-2.9098771],[136.3002444000001,-2.912221799999941],[136.30082950000008,-2.911030899999957],[136.30566340000007,-2.910730299999955],[136.3059082000001,-2.908205499999951],[136.31281910000007,-2.9142073],[136.31498720000002,-2.912368299999969],[136.31674830000009,-2.914134699999977],[136.31743,-2.910593199999937],[136.32256740000003,-2.914506699999947],[136.32535330000007,-2.9131413],[136.3260474000001,-2.918525],[136.32975040000008,-2.918558399999938],[136.3285949000001,-2.920717],[136.32581590000007,-2.920426499999962],[136.32745640000007,-2.926385299999936],[136.32884320000005,-2.925849199999959],[136.32825040000012,-2.923983599999929],[136.33139040000003,-2.9223447],[136.33160570000007,-2.925659099999962],[136.3346388000001,-2.931348199999945],[136.3351573000001,-2.934128],[136.3338884000001,-2.935680599999955],[136.33614410000007,-2.939589199999944],[136.34146140000007,-2.9418803],[136.3450391,-2.939802099999952],[136.3515777,-2.941942199999971],[136.3496857,-2.944589299999961],[136.3531537,-2.946334799999931],[136.3532881000001,-2.953415699999937],[136.35138870000003,-2.956688],[136.34663280000007,-2.958897099999945],[136.34448310000005,-2.963392599999963],[136.3440399000001,-2.966286899999943],[136.34542850000003,-2.967551],[136.3445455000001,-2.970083099999954],[136.34624510000003,-2.971288199999947],[136.34446520000006,-2.973046499999953],[136.34310160000007,-2.9800862],[136.34587250000004,-2.980798499999935],[136.34657290000007,-2.982473199999959],[136.34129330000007,-2.988467499999956],[136.34452970000007,-2.987740199999962],[136.34699510000007,-2.984020399999963],[136.34821820000002,-2.985597299999938],[136.34802890000003,-2.990263399999947],[136.34570310000004,-2.993019599999968],[136.34211060000007,-2.993358099999966],[136.34100890000002,-2.9952288],[136.33946980000007,-3.005706399999951],[136.34851070000002,-3.008726099999933],[136.34826280000004,-3.011387899999932],[136.34585990000005,-3.012474299999951],[136.34632370000008,-3.018431799999973],[136.3489075000001,-3.018482],[136.34912960000008,-3.020103899999981],[136.3513031000001,-3.020643499999949],[136.35212780000006,-3.0239699],[136.35342520000006,-3.023582699999963],[136.35445550000009,-3.025802399999975],[136.35484830000007,-3.031759799999975],[136.35751820000007,-3.034404399999971],[136.36076350000008,-3.034548499999971],[136.36498270000004,-3.042066899999952],[136.36758180000004,-3.042148199999929],[136.37133230000006,-3.046824699999945],[136.3765896000001,-3.046951],[136.37992810000003,-3.049145799999962],[136.38482180000005,-3.049637399999938],[136.398072,-3.060316099999966],[136.4034306000001,-3.069211699999926],[136.4082002,-3.072485499999971],[136.424587,-3.075882099999944],[136.43486930000006,-3.085271099999943],[136.43411250000008,-3.091592499999933],[136.43176270000004,-3.096888599999943],[136.43236500000012,-3.100104],[136.4338484000001,-3.103816299999949],[136.43724020000002,-3.106339],[136.4378561000001,-3.109444399999973],[136.44162470000003,-3.1125117],[136.44387820000009,-3.119648699999971],[136.44058890000008,-3.1263121],[136.4413773000001,-3.128785299999947],[136.44006030000003,-3.135739799999953],[136.44182390000003,-3.141417199999978],[136.4406738,-3.158454],[136.4435413000001,-3.161049599999956],[136.44354250000004,-3.163416199999972],[136.44749360000003,-3.167419699999925],[136.4491303000001,-3.171716599999968],[136.4456229000001,-3.1739896],[136.44538860000011,-3.177646599999946],[136.4466033000001,-3.178640899999948],[136.44895760000009,-3.176829199999929],[136.45073150000007,-3.1775511],[136.45589180000002,-3.189308299999936],[136.465498,-3.193888699999945],[136.468488,-3.197006],[136.4689969000001,-3.204321899999968],[136.48203840000008,-3.218126899999959],[136.48337440000012,-3.224043199999926],[136.48693690000005,-3.226842399999953],[136.498388,-3.228051099999959],[136.5093938000001,-3.232567899999935],[136.53147780000006,-3.230532699999969],[136.53433560000008,-3.227426399999956],[136.5371934000001,-3.2269294],[136.54626380000002,-3.230408399999931],[136.55458870000007,-3.238112099999967],[136.5619196,-3.240597099999945],[136.56490170000006,-3.249419],[136.56875350000007,-3.250661499999978],[136.58105440000008,-3.248300699999959],[136.58453350000002,-3.245939899999939],[136.58850960000007,-3.247182499999951],[136.59745570000007,-3.246437],[136.60491090000005,-3.238981799999976],[136.60901120000005,-3.236745299999939],[136.6255367000001,-3.237242299999934],[136.6430563,-3.248673499999938],[136.644423,-3.256128599999954],[136.6465353000001,-3.257868199999962],[136.6701432000001,-3.2581167],[136.68157440000004,-3.262092699999926],[136.68492920000006,-3.266068799999971],[136.6907691,-3.268305299999952],[136.69747870000003,-3.263583799999935],[136.70667330000003,-3.268429599999934],[136.71040090000008,-3.267932599999938],[136.7137557000001,-3.269299299999943],[136.72009260000004,-3.274517899999978],[136.72046530000011,-3.277624199999934],[136.72332310000002,-3.279985],[136.7315238000001,-3.282345799999973],[136.7376121000001,-3.280979],[136.74618550000002,-3.282345799999973],[136.7512799000001,-3.281351799999925],[136.7686112,-3.275356399999964],[136.77141230000007,-3.273239899999965],[136.77730530000008,-3.278571599999964],[136.78189270000007,-3.276531299999931],[136.78171570000006,-3.273090699999955],[136.78838,-3.265706299999977],[136.79030060000002,-3.2668217],[136.79374710000002,-3.2662562],[136.79491410000003,-3.267597399999943],[136.8010752,-3.265715199999931],[136.80189830000006,-3.268421599999954],[136.80532830000004,-3.269993299999953],[136.81212920000007,-3.277232099999935],[136.816486,-3.2794243],[136.81965990000003,-3.279122399999949],[136.82058210000002,-3.281429299999957],[136.82748860000004,-3.281762799999967],[136.8296755,-3.281062899999938],[136.832647,-3.275138499999969],[136.8343946000001,-3.274805],[136.833786,-3.2700369],[136.8349254000001,-3.269024],[136.83909360000007,-3.268787499999974],[136.8418911000001,-3.265211199999953],[136.84999470000002,-3.261596299999951],[136.85180790000004,-3.259910399999967],[136.85238820000006,-3.256429499999967],[136.8543532000001,-3.255250299999943],[136.85993710000002,-3.254645599999947],[136.8643982000001,-3.251038299999948],[136.8689985000001,-3.2524322],[136.87412260000008,-3.242214],[136.87978570000007,-3.242581399999949],[136.88159080000003,-3.241375799999958]]]]},"properties":{"shapeName":"Waropen","shapeISO":"","shapeID":"22746128B31638098733552","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[104.50089430000008,-4.954988699999944],[104.50609630000008,-4.948445599999957],[104.50777020000004,-4.944998299999952],[104.50741170000003,-4.942337699999939],[104.51079360000006,-4.938707399999942],[104.51128760000006,-4.935357799999963],[104.50933,-4.930874899999935],[104.51356250000003,-4.924079499999948],[104.51788930000004,-4.922736],[104.52833740000005,-4.903415],[104.52942340000004,-4.896847099999945],[104.53549610000005,-4.891151899999954],[104.54042960000004,-4.874084799999935],[104.54755130000007,-4.865886],[104.54594830000008,-4.862009299999954],[104.55008420000007,-4.858119899999963],[104.54775850000004,-4.856870299999969],[104.555928,-4.844811],[104.55570210000008,-4.840031899999929],[104.55033080000004,-4.836218499999973],[104.55170960000004,-4.832212499999969],[104.55071930000008,-4.830198499999938],[104.56229790000003,-4.830461799999966],[104.60402610000006,-4.825143599999933],[104.60776450000009,-4.827128699999946],[104.61024850000007,-4.831199099999935],[104.61245580000008,-4.831302],[104.620157,-4.824262099999942],[104.62167620000008,-4.8211462],[104.62405840000008,-4.808110799999952],[104.62618450000008,-4.803413099999943],[104.62340340000009,-4.801272499999925],[104.62361540000006,-4.7999134],[104.62889330000007,-4.798588399999971],[104.632006,-4.794753599999979],[104.63648770000003,-4.784325899999942],[104.63847040000007,-4.784794699999964],[104.64053330000007,-4.780781299999944],[104.64182260000007,-4.773941],[104.637626,-4.7689109],[104.63762720000005,-4.765987699999926],[104.64269990000008,-4.759754899999962],[104.64514220000007,-4.752828199999954],[104.63907890000007,-4.749122299999954],[104.63093820000006,-4.733652699999936],[104.62863860000004,-4.731668299999967],[104.62505480000004,-4.731499099999951],[104.61772990000009,-4.717131399999971],[104.62853750000005,-4.711273699999936],[104.63002980000005,-4.709105],[104.63077930000009,-4.702148099999931],[104.62794830000007,-4.697658],[104.62186120000007,-4.697149599999932],[104.60977720000005,-4.690999599999941],[104.60548980000004,-4.686029699999949],[104.60610540000005,-4.681641499999955],[104.61078120000008,-4.679834699999958],[104.61031590000005,-4.6764237],[104.61430180000008,-4.6695313],[104.62039330000005,-4.666668],[104.62480810000005,-4.663405299999965],[104.627173,-4.659590199999968],[104.63035,-4.659287699999936],[104.63089010000004,-4.657366299999978],[104.63613720000006,-4.657136399999956],[104.63808630000005,-4.655554399999971],[104.63864120000005,-4.652298099999939],[104.63675,-4.6511877],[104.63946860000004,-4.6466354],[104.643954,-4.643101399999978],[104.64168970000009,-4.637273799999946],[104.64480250000008,-4.632489199999952],[104.65092930000009,-4.62998],[104.65752260000005,-4.624294599999928],[104.65979240000007,-4.625346799999932],[104.66054330000009,-4.622484199999974],[104.66368450000004,-4.622038399999951],[104.665943,-4.619992699999955],[104.66903020000007,-4.620387799999946],[104.67097890000008,-4.618069899999966],[104.66882010000006,-4.61687],[104.66928530000007,-4.614293599999939],[104.67412830000006,-4.612443199999973],[104.67396920000004,-4.609115],[104.67580760000004,-4.608346399999959],[104.67920430000004,-4.609811199999967],[104.68495260000009,-4.605483599999957],[104.68779780000006,-4.605066399999941],[104.688923,-4.602919699999973],[104.692349,-4.603941099999929],[104.69226160000005,-4.600406799999973],[104.69461850000005,-4.597365899999943],[104.69881680000009,-4.596640699999966],[104.694663,-4.591009699999972],[104.69427190000005,-4.587520299999937],[104.69591440000005,-4.585946399999955],[104.69588240000007,-4.581927199999939],[104.69875540000004,-4.5821252],[104.69988020000005,-4.58073],[104.702006,-4.572712299999978],[104.70109730000007,-4.56662],[104.694814,-4.5623668],[104.69620650000007,-4.562117199999932],[104.69834210000005,-4.556765799999937],[104.69548110000005,-4.555386899999974],[104.71715950000004,-4.554450599999939],[104.72171490000005,-4.5567742],[104.73086740000008,-4.556505399999935],[104.73430240000005,-4.558828499999947],[104.74175980000007,-4.560089499999947],[104.74589180000004,-4.562962],[104.74996520000008,-4.563601399999925],[104.76184280000007,-4.575155799999948],[104.76492170000006,-4.575414099999932],[104.76589580000007,-4.578244499999926],[104.76974450000006,-4.578606],[104.77005280000009,-4.577371099999937],[104.77451780000007,-4.575880299999938],[104.77961610000006,-4.583775099999968],[104.78295130000004,-4.585216899999978],[104.81398390000004,-4.584484099999941],[104.822349,-4.583302799999956],[104.82194850000008,-4.570098599999938],[104.82328360000008,-4.566857199999959],[104.82815920000007,-4.564491399999952],[104.83618340000004,-4.566188799999964],[104.84059590000004,-4.569277199999931],[104.84377780000005,-4.5680944],[104.843932,-4.566653699999961],[104.84844810000004,-4.565368199999966],[104.84988540000006,-4.563516099999958],[104.86053050000004,-4.560105499999963],[104.86535570000007,-4.551667599999973],[104.87422560000005,-4.543803499999967],[104.88515380000007,-4.541847799999971],[104.88677060000003,-4.543702699999926],[104.90109270000005,-4.548109499999953],[104.90652090000003,-4.552746799999966],[104.91206560000006,-4.5499656],[104.91345220000005,-4.545676899999933],[104.93147240000008,-4.5339715],[104.93678570000009,-4.532349199999942],[104.94169460000006,-4.533334899999943],[104.94362710000007,-4.530605399999956],[104.947355,-4.523946299999977],[104.95024340000003,-4.511891399999968],[104.951226,-4.499430599999926],[104.95388250000008,-4.498039799999958],[104.95607730000006,-4.493287499999951],[104.96358490000006,-4.489346799999964],[104.967743,-4.484594499999957],[104.96866720000008,-4.479958],[104.96733920000008,-4.4752634],[104.97246330000007,-4.468466499999977],[104.97152610000006,-4.458825499999932],[104.97736720000006,-4.453163599999925],[104.97942950000004,-4.44784],[104.98236360000004,-4.4470261],[104.99023670000008,-4.454599799999926],[104.99760690000005,-4.455709399999932],[105.00084550000008,-4.462210299999981],[105.00813240000008,-4.463022899999942],[105.02015880000005,-4.470027799999968],[105.04804460000008,-4.470938199999978],[105.06414990000007,-4.464840199999969],[105.067594,-4.446608599999934],[105.06729610000008,-4.434986199999969],[105.06254550000006,-4.435284599999932],[105.06129140000007,-4.414532099999974],[105.05764140000008,-4.415077699999927],[105.05274790000004,-4.411446799999965],[105.056852,-4.408764899999937],[105.05636370000008,-4.406225799999959],[105.04829060000009,-4.407527899999934],[105.04985320000009,-4.403361199999949],[105.04846990000004,-4.400439699999936],[105.04689090000005,-4.401212699999974],[105.04627240000008,-4.404956199999958],[105.04461220000007,-4.406486199999961],[105.04148720000006,-4.404044799999951],[105.04138950000004,-4.400203599999941],[105.03859,-4.39952],[105.03780870000008,-4.409220599999969],[105.03549750000008,-4.410587799999973],[105.031168,-4.409123],[105.03224220000004,-4.403198399999951],[105.02953050000008,-4.400904299999979],[105.02547130000005,-4.401212699999974],[105.02895440000003,-4.406518799999958],[105.02608980000008,-4.409253199999966],[105.02387620000007,-4.402612499999975],[105.01795170000008,-4.400105899999971],[105.01919980000008,-4.408969],[105.01707580000004,-4.410653599999932],[105.01267560000008,-4.408918299999925],[105.01286740000006,-4.404624799999965],[105.00815840000007,-4.404006799999934],[104.99805090000007,-4.398605099999941],[104.99076320000006,-4.401186899999971],[104.98939980000006,-4.404903799999943],[104.98665240000008,-4.404393299999981],[104.986833,-4.398803199999975],[104.99602760000005,-4.368050499999981],[104.99196790000008,-4.352538],[104.98932850000006,-4.334358899999927],[104.99073530000004,-4.327052299999934],[104.990367,-4.310331599999927],[104.99827270000009,-4.311774699999944],[104.99401910000006,-4.293630599999972],[104.99401920000008,-4.288742499999955],[104.99789840000005,-4.287768899999946],[104.99522630000007,-4.270749],[104.98849440000004,-4.2566786],[104.98453540000008,-4.2554543],[104.97952390000006,-4.256963499999927],[104.978221,-4.254414399999973],[104.97157260000006,-4.252502299999946],[104.94209050000006,-4.229877399999964],[104.93263740000003,-4.212133599999959],[104.92921410000008,-4.201383499999963],[104.93056730000006,-4.199455],[104.92923140000005,-4.192478499999936],[104.92829640000008,-4.192612499999939],[104.92726070000003,-4.191706799999963],[104.92562350000009,-4.194356399999947],[104.92143080000005,-4.195244799999955],[104.919994,-4.198196199999927],[104.91449870000008,-4.197474499999942],[104.90610930000008,-4.203270399999951],[104.90372350000007,-4.208927399999936],[104.89992240000004,-4.210589399999947],[104.89484110000006,-4.210145099999977],[104.89241010000006,-4.215911799999958],[104.88887490000008,-4.218129399999953],[104.87628190000004,-4.2176839],[104.87517650000007,-4.222563499999978],[104.877827,-4.227000099999941],[104.87442110000006,-4.233978099999945],[104.86653720000004,-4.2309246],[104.86280260000007,-4.231877399999973],[104.86107370000008,-4.2358998],[104.85549380000003,-4.240881199999933],[104.85338940000008,-4.239324099999976],[104.85219290000003,-4.240239199999962],[104.84857870000008,-4.238551799999925],[104.83747050000005,-4.237627099999941],[104.836806,-4.238753599999939],[104.82893430000007,-4.238916599999925],[104.82579320000008,-4.241867499999955],[104.81849350000005,-4.241379399999971],[104.80733350000008,-4.247313399999939],[104.80395840000006,-4.250566],[104.79622410000007,-4.250849099999925],[104.79488690000005,-4.254001499999958],[104.79558670000006,-4.260709799999972],[104.79281270000007,-4.264666899999952],[104.79062240000007,-4.264393699999971],[104.78666660000005,-4.259868899999958],[104.77433650000006,-4.251364399999943],[104.76867930000009,-4.249599599999954],[104.76443610000007,-4.245198799999969],[104.76049670000003,-4.245056399999953],[104.75832940000004,-4.246890599999972],[104.75576260000008,-4.245804499999963],[104.75583720000009,-4.249607499999968],[104.75135820000008,-4.247815899999978],[104.743296,-4.251847],[104.73792120000007,-4.256326],[104.725828,-4.257221799999968],[104.71687,-4.263492399999961],[104.71206570000004,-4.257315499999947],[104.68364640000004,-4.258510099999967],[104.67821460000005,-4.259845899999959],[104.66607520000008,-4.259261199999969],[104.66255840000008,-4.2614262],[104.65873180000006,-4.259080499999925],[104.65710090000005,-4.250778599999933],[104.649328,-4.246118599999932],[104.63959040000009,-4.243432199999972],[104.635361,-4.244611199999952],[104.62307380000004,-4.242413699999929],[104.62231650000007,-4.240008799999941],[104.626657,-4.237563399999942],[104.62729560000008,-4.234611299999926],[104.62291810000005,-4.22846],[104.63042550000006,-4.223181499999953],[104.62505070000009,-4.214223499999946],[104.62101960000007,-4.212879799999939],[104.620332,-4.2166618],[104.61513210000004,-4.221284],[104.61161370000008,-4.220494099999939],[104.61116580000004,-4.223629399999936],[104.60847840000008,-4.224077299999976],[104.60947230000005,-4.225733699999978],[104.60758860000004,-4.227936099999965],[104.58931810000007,-4.2384253],[104.59107090000003,-4.243170799999973],[104.56863130000005,-4.248495399999968],[104.54999960000004,-4.256780099999958],[104.53663280000006,-4.2599638],[104.53705150000008,-4.264193],[104.53031160000006,-4.264400299999977],[104.52546540000009,-4.267569],[104.51345750000007,-4.2805222],[104.510471,-4.278376499999979],[104.51006470000004,-4.279623699999945],[104.507858,-4.279606199999932],[104.50894820000008,-4.2812529],[104.50819120000006,-4.283019499999966],[104.50056330000007,-4.293373499999973],[104.497855,-4.2936664],[104.49725710000007,-4.290732599999956],[104.49521760000005,-4.291442899999936],[104.491611,-4.298022599999967],[104.49044970000006,-4.296808799999951],[104.488599,-4.2983639],[104.48764520000009,-4.296881699999972],[104.489005,-4.295912699999974],[104.48612930000007,-4.295281],[104.48349220000006,-4.291375699999946],[104.48391310000005,-4.292599299999949],[104.481796,-4.293740899999932],[104.48253540000007,-4.295404699999949],[104.47948770000005,-4.296472],[104.479516,-4.2980891],[104.47693710000004,-4.296652399999971],[104.47933280000007,-4.301616199999955],[104.47814380000005,-4.301991899999962],[104.47836470000004,-4.304668199999981],[104.47186070000004,-4.311317599999938],[104.465907,-4.313564],[104.46060340000008,-4.3112151],[104.45708860000008,-4.304699099999937],[104.45708860000008,-4.301115899999957],[104.45101780000005,-4.299301599999978],[104.43717990000005,-4.304075699999942],[104.43419110000008,-4.3071538],[104.43517940000004,-4.315425199999936],[104.424661,-4.320035799999971],[104.42276240000007,-4.324036199999966],[104.41882150000004,-4.325620899999933],[104.417932,-4.330153699999926],[104.41442510000007,-4.332278499999973],[104.41200970000006,-4.3370209],[104.40466880000008,-4.337779699999942],[104.40217670000004,-4.3396096],[104.39696760000004,-4.338813099999925],[104.39648170000004,-4.341073499999936],[104.39347380000004,-4.341296799999952],[104.386205,-4.347286399999973],[104.38414760000006,-4.347518899999955],[104.38050930000009,-4.358250199999929],[104.382333,-4.362611],[104.37970030000008,-4.363476599999956],[104.37881070000009,-4.3737855],[104.37451340000007,-4.37474],[104.36286550000005,-4.387308299999972],[104.35879290000008,-4.388479899999936],[104.35564050000005,-4.393595499999947],[104.34870770000003,-4.397947599999952],[104.35069670000007,-4.398793599999976],[104.34795380000008,-4.401928299999952],[104.34720930000009,-4.407421099999965],[104.34423130000005,-4.412116099999935],[104.34403540000005,-4.417406],[104.34123720000008,-4.421376599999974],[104.33933330000008,-4.4211284],[104.33913140000004,-4.422554499999933],[104.33580680000006,-4.423479499999928],[104.33639450000004,-4.428377499999954],[104.33814460000008,-4.429523399999937],[104.33266130000004,-4.4378031],[104.33537470000005,-4.454232199999979],[104.32815110000007,-4.461257899999964],[104.330818,-4.471188599999948],[104.333347,-4.500268099999971],[104.32945230000007,-4.510672599999964],[104.32346380000007,-4.511055699999929],[104.32182070000005,-4.512493399999926],[104.31574050000006,-4.512220699999943],[104.31351140000004,-4.5226012],[104.31357540000005,-4.525025199999959],[104.31732540000007,-4.529262099999926],[104.31702380000007,-4.538541499999951],[104.32411990000008,-4.546399899999926],[104.32598610000008,-4.557686299999943],[104.33444020000007,-4.59064],[104.33429320000005,-4.605448199999955],[104.33015190000003,-4.614077499999951],[104.32680680000004,-4.614787],[104.32721230000004,-4.617625299999929],[104.32556710000006,-4.619120899999928],[104.32429530000007,-4.627317199999936],[104.31921890000007,-4.62848],[104.31686420000005,-4.625514],[104.31505720000007,-4.631572],[104.31306830000005,-4.631865499999947],[104.31376620000003,-4.633770199999958],[104.31218240000004,-4.636233299999958],[104.30216050000007,-4.638688399999978],[104.30053380000004,-4.643959],[104.29810780000008,-4.643548499999952],[104.29831450000006,-4.645597499999951],[104.29515380000004,-4.646279299999946],[104.29648040000006,-4.648293299999978],[104.29646350000007,-4.654567699999973],[104.293088,-4.657818299999974],[104.29533580000003,-4.658084899999949],[104.29686560000005,-4.662941599999954],[104.29623330000004,-4.666997599999945],[104.29429690000006,-4.667688299999952],[104.29182850000007,-4.672045599999933],[104.29236120000007,-4.676931699999955],[104.290898,-4.676574399999936],[104.28990270000008,-4.681285899999978],[104.28728310000008,-4.683137399999964],[104.28952760000004,-4.684051899999929],[104.29032640000008,-4.686344599999927],[104.28775390000004,-4.686770099999933],[104.29046050000005,-4.691636099999926],[104.28811470000005,-4.693028499999969],[104.28897760000007,-4.694455399999981],[104.28791970000003,-4.698391],[104.28942820000009,-4.699480599999958],[104.28974480000005,-4.702638799999932],[104.295407,-4.704790899999978],[104.30221320000004,-4.702130499999953],[104.307997,-4.696031599999969],[104.315733,-4.691875399999958],[104.31573230000004,-4.698368],[104.30787390000006,-4.699869799999931],[104.30720140000005,-4.703726699999947],[104.30385630000006,-4.705400599999962],[104.29566360000007,-4.706734099999949],[104.29482180000008,-4.712603599999966],[104.29565410000004,-4.716126599999939],[104.30644390000003,-4.729664099999979],[104.30505290000008,-4.732183199999952],[104.30648960000008,-4.733567499999936],[104.30468890000009,-4.736166599999933],[104.30607820000006,-4.738358099999971],[104.30472430000003,-4.740927399999975],[104.305875,-4.744961899999964],[104.30826520000005,-4.7473017],[104.30674630000004,-4.748592699999961],[104.30758990000004,-4.754295],[104.30655480000007,-4.755737099999976],[104.30822660000007,-4.760415699999953],[104.30473740000008,-4.766231199999936],[104.31339730000008,-4.7733453],[104.31367220000004,-4.7769151],[104.31228260000006,-4.778993799999967],[104.31544720000005,-4.784453],[104.31426930000003,-4.785620599999959],[104.31865820000007,-4.787932099999978],[104.31824480000006,-4.789774499999965],[104.32372050000004,-4.796277799999928],[104.32324710000006,-4.797934599999962],[104.32547430000005,-4.798019899999929],[104.32680640000007,-4.801368199999956],[104.32843970000005,-4.802012],[104.32662170000003,-4.807330599999943],[104.32877860000008,-4.812325599999951],[104.33597460000004,-4.815912699999956],[104.33991280000004,-4.821336599999938],[104.34821590000007,-4.823620499999947],[104.35320620000005,-4.822487299999977],[104.35808880000008,-4.824204299999963],[104.36283930000008,-4.823819399999934],[104.368439,-4.821221899999955],[104.37169270000004,-4.817907599999955],[104.35960330000006,-4.837998899999945],[104.35906330000006,-4.844155399999977],[104.34051460000006,-4.8647629],[104.34348980000004,-4.8689624],[104.34799990000005,-4.8696832],[104.35280180000007,-4.874579599999947],[104.35851350000007,-4.870413299999939],[104.36364180000004,-4.8690099],[104.36805250000003,-4.870669299999975],[104.38170430000008,-4.869692899999961],[104.38653260000007,-4.873032599999931],[104.40638450000006,-4.868699499999934],[104.41087330000005,-4.86564],[104.41832710000006,-4.8775273],[104.41959320000007,-4.882242199999951],[104.41929860000005,-4.892239099999927],[104.42240120000008,-4.903930799999955],[104.42878140000005,-4.911881899999969],[104.438207,-4.917016899999965],[104.44042290000004,-4.920279899999969],[104.43728160000006,-4.927753],[104.437058,-4.933549899999946],[104.43794230000009,-4.937330599999939],[104.44121940000008,-4.939260399999966],[104.44180920000008,-4.944215799999938],[104.44513690000008,-4.944613899999979],[104.45935730000008,-4.940080099999932],[104.46809960000007,-4.933456799999931],[104.47997860000004,-4.932366599999966],[104.48697410000005,-4.937526599999956],[104.49882740000004,-4.94311],[104.49768360000007,-4.94718],[104.500186,-4.949479599999961],[104.50089430000008,-4.954988699999944]]]},"properties":{"shapeName":"Way Kanan","shapeISO":"","shapeID":"22746128B20142986176458","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[110.82982330000004,-8.201424799999927],[110.83246,-8.20378],[110.83311,-8.20233],[110.83449,-8.20341],[110.83733,-8.20281],[110.83746,-8.20619],[110.83884,-8.20495],[110.83949,-8.20606],[110.84161,-8.2034],[110.84224,-8.20543],[110.84422,-8.20407],[110.84579,-8.20532],[110.84757,-8.20368],[110.85329,-8.20616],[110.85708,-8.20486],[110.86243,-8.20674],[110.86237,-8.20535],[110.86401,-8.20502],[110.87267,-8.2058],[110.88212,-8.2116],[110.88448,-8.21156],[110.88606,-8.2096],[110.89086,-8.21173],[110.90871010000006,-8.210956499999952],[110.90824130000004,-8.203666699999928],[110.90525820000005,-8.198164],[110.90376280000004,-8.1902132],[110.89947510000007,-8.187145199999975],[110.90127560000008,-8.183176],[110.89871980000004,-8.179265],[110.90190890000008,-8.1703672],[110.89973450000008,-8.166538199999934],[110.90280910000007,-8.16091819999997],[110.90230560000003,-8.154443699999945],[110.910202,-8.134417499999927],[110.908371,-8.125240299999973],[110.909729,-8.123146],[110.916893,-8.121117599999934],[110.92122440000009,-8.117988899999943],[110.92596440000005,-8.105810099999928],[110.93161010000006,-8.101488099999926],[110.93775180000006,-8.0908851],[110.94280240000006,-8.087515799999949],[110.94218440000009,-8.083097399999929],[110.94625090000005,-8.074444699999958],[110.95159150000006,-8.070361099999957],[110.95272830000005,-8.062685899999963],[110.95994910000007,-8.06379039999996],[110.97512820000009,-8.073324199999945],[110.98221590000009,-8.073093399999948],[110.99379730000004,-8.082448899999974],[110.99990840000004,-8.080515799999944],[111.00220490000004,-8.07759],[111.01123810000007,-8.077687199999957],[111.01306920000007,-8.07649989999993],[111.01501460000009,-8.077882699999975],[111.01548770000005,-8.075783699999931],[111.01618950000005,-8.07689],[111.01895140000005,-8.076401699999963],[111.02002720000007,-8.077898],[111.021759,-8.076922399999944],[111.025711,-8.080615],[111.03556820000006,-8.080668399999979],[111.04061890000008,-8.076045],[111.04545590000004,-8.07458779999996],[111.04650880000008,-8.0757494],[111.04941560000009,-8.07452479999995],[111.05062870000006,-8.075487099999975],[111.05269620000007,-8.071892699999978],[111.05574040000005,-8.072217899999941],[111.05578610000003,-8.068457599999931],[111.06428530000005,-8.067703199999926],[111.065567,-8.0633134],[111.07173160000008,-8.064026799999965],[111.07138820000006,-8.061447099999953],[111.06948850000003,-8.061166699999944],[111.07002260000007,-8.059198299999935],[111.06671140000009,-8.055656399999975],[111.06912990000006,-8.046108199999935],[111.06726840000005,-8.03554719999994],[111.06916050000007,-8.031845],[111.07154080000004,-8.030510899999967],[111.07073210000004,-8.029484699999955],[111.07507320000008,-8.025078699999938],[111.07704160000009,-8.02472679999994],[111.09143060000008,-8.029152799999963],[111.09304050000009,-8.030937199999926],[111.09146120000008,-8.034324599999934],[111.09181980000005,-8.040163],[111.09025570000006,-8.041851],[111.09132380000005,-8.04638],[111.08927920000008,-8.048915799999975],[111.09062190000009,-8.050984299999925],[111.08866880000005,-8.05994789999994],[111.09190370000005,-8.060726099999954],[111.09297180000004,-8.065191199999958],[111.09604640000003,-8.06445789999998],[111.09534450000007,-8.062143299999946],[111.09731290000008,-8.060533499999963],[111.11316680000004,-8.056685399999935],[111.11669920000008,-8.058991399999968],[111.12248610000006,-8.0601911],[111.12416080000008,-8.063968599999953],[111.126178,-8.064676599999927],[111.12770840000007,-8.063942899999972],[111.12644190000009,-8.061049399999945],[111.12632750000006,-8.037467899999967],[111.13616940000009,-8.023616799999957],[111.13625340000004,-8.018264699999975],[111.13521580000008,-8.013096799999971],[111.13049320000005,-8.0079145],[111.13204950000005,-7.996756499999947],[111.12870790000005,-7.991682499999968],[111.12926480000004,-7.985607099999982],[111.12754820000004,-7.983475699999929],[111.12661740000004,-7.977362599999935],[111.12337060000004,-7.972460399999932],[111.12597710000006,-7.971312699999942],[111.13287350000007,-7.973886499999935],[111.13770290000008,-7.96948],[111.14028930000006,-7.968433299999958],[111.14192960000008,-7.9695634],[111.144104,-7.966702899999973],[111.14701080000009,-7.966309],[111.14614870000008,-7.965176499999927],[111.14762880000006,-7.960481099999981],[111.14601130000005,-7.957284399999935],[111.14948270000008,-7.953903199999957],[111.14886470000005,-7.950806599999964],[111.14349370000008,-7.943511399999977],[111.14479070000004,-7.937028399999974],[111.14388270000006,-7.933273299999939],[111.14900210000008,-7.930763199999944],[111.15271760000007,-7.924282499999947],[111.15432740000006,-7.924638199999947],[111.15489960000008,-7.922442399999966],[111.15602110000009,-7.923640699999964],[111.15723420000006,-7.922026599999981],[111.15893550000004,-7.923105699999951],[111.16313170000006,-7.922415699999931],[111.16474910000005,-7.9240169],[111.169342,-7.921336099999962],[111.17895510000005,-7.921806799999956],[111.18324280000007,-7.918823699999962],[111.18822480000006,-7.922595],[111.19322970000007,-7.932928499999946],[111.19203190000007,-7.939111199999957],[111.19797510000006,-7.939867899999967],[111.21162410000005,-7.936693199999979],[111.21310420000009,-7.935303599999941],[111.21437070000007,-7.928035199999954],[111.21649930000007,-7.925987699999951],[111.227005,-7.933208],[111.23605340000006,-7.9448914],[111.24636840000005,-7.948777599999971],[111.25715640000004,-7.948880199999962],[111.26734920000007,-7.945030199999962],[111.27107240000004,-7.9417619],[111.273323,-7.937360699999942],[111.27464290000006,-7.931476099999941],[111.27339930000005,-7.924196699999925],[111.28785590000007,-7.9061741],[111.28788760000003,-7.900692399999969],[111.29264830000005,-7.887970899999971],[111.29940030000006,-7.878501399999948],[111.29665370000004,-7.870398499999965],[111.29779050000008,-7.862027099999978],[111.299675,-7.859858],[111.30747990000003,-7.858724099999961],[111.31930540000008,-7.854368199999954],[111.31793970000007,-7.8505425],[111.31877130000004,-7.848452499999951],[111.31443020000006,-7.843137699999943],[111.30578610000003,-7.841066299999966],[111.30558780000007,-7.834743899999978],[111.30382540000005,-7.831279699999925],[111.30690760000005,-7.824172899999951],[111.30393980000008,-7.818069399999956],[111.30488590000004,-7.814744899999937],[111.300766,-7.811497199999963],[111.29860690000004,-7.801251799999932],[111.29592890000004,-7.800233799999944],[111.28992460000006,-7.794013],[111.28559870000004,-7.794152699999927],[111.28276820000008,-7.789781499999947],[111.28344720000007,-7.788371499999926],[111.28070830000007,-7.788888899999961],[111.28333280000004,-7.787148399999978],[111.28305050000006,-7.782261799999958],[111.28462980000006,-7.777730399999939],[111.29355620000007,-7.760667799999965],[111.29353330000004,-7.757160099999965],[111.29096220000008,-7.755057799999975],[111.28607180000006,-7.755549899999949],[111.28512570000004,-7.754388799999958],[111.28907780000009,-7.75],[111.29013060000005,-7.742869799999937],[111.28682710000004,-7.742975199999933],[111.28330230000006,-7.738294599999961],[111.27454370000004,-7.734913799999958],[111.271286,-7.736852599999963],[111.273201,-7.741086399999972],[111.27074430000005,-7.739772799999969],[111.26650230000007,-7.741561799999943],[111.26702110000008,-7.743289],[111.26523590000005,-7.744166299999961],[111.26047510000006,-7.743937],[111.25962830000009,-7.746790799999928],[111.25446320000009,-7.745745599999964],[111.25213620000005,-7.746804199999929],[111.24908450000004,-7.741957199999945],[111.24363710000006,-7.741528499999959],[111.23864740000005,-7.751138599999933],[111.233078,-7.746522399999947],[111.22750860000008,-7.745336499999951],[111.22484590000005,-7.740873299999976],[111.21572870000006,-7.737803],[111.21552270000007,-7.735041099999933],[111.213623,-7.733379299999967],[111.21555330000007,-7.7273378],[111.21386720000004,-7.722965699999975],[111.20725250000004,-7.721061199999951],[111.201416,-7.721151299999974],[111.19132990000008,-7.712368899999944],[111.18867490000008,-7.713503299999957],[111.18186190000006,-7.712306699999942],[111.17936710000004,-7.712893899999926],[111.17750550000005,-7.7157983],[111.17614670000006,-7.713933699999927],[111.16671750000006,-7.716542699999934],[111.16172030000007,-7.713137099999926],[111.15811920000004,-7.714780799999971],[111.15131380000008,-7.714806499999952],[111.13808440000008,-7.719812799999943],[111.12867540000008,-7.727395099999967],[111.12562020000007,-7.733288399999935],[111.12293240000008,-7.734914299999957],[111.12305450000008,-7.7377],[111.12105560000003,-7.738271199999929],[111.12081910000006,-7.742334799999981],[111.11281590000004,-7.746771799999976],[111.11179350000003,-7.74862],[111.10832210000007,-7.745545399999969],[111.11177820000006,-7.741582899999969],[111.10985560000006,-7.737362799999971],[111.10140990000008,-7.746238699999935],[111.09355160000007,-7.751738499999931],[111.07889130000007,-7.748183399999959],[111.074325,-7.752142399999968],[111.072775,-7.751947199999961],[111.07028960000008,-7.757364699999926],[111.06871370000005,-7.756026],[111.06570430000005,-7.757041399999935],[111.06601450000005,-7.755431099999953],[111.06499920000005,-7.756266399999959],[111.06412290000009,-7.755092799999943],[111.06330110000005,-7.757163499999933],[111.06229110000004,-7.755929199999969],[111.06104410000006,-7.756178199999965],[111.06141660000009,-7.757636],[111.05968470000005,-7.756475399999943],[111.05623290000005,-7.759464899999955],[111.05048960000005,-7.759278499999937],[111.04786250000006,-7.767336499999942],[111.05163860000005,-7.778078099999959],[111.04588920000003,-7.783098299999949],[111.04018980000006,-7.778243799999927],[111.039705,-7.775833599999942],[111.03750510000003,-7.7756367],[111.03758840000006,-7.771459899999968],[111.03461350000003,-7.771405699999946],[111.03126390000006,-7.763142899999934],[111.02786360000005,-7.764125199999967],[111.02487090000005,-7.762675199999933],[111.020601,-7.763256],[111.01746580000008,-7.7594567],[111.00975440000008,-7.763503199999946],[111.00901790000006,-7.762294699999927],[111.00568390000007,-7.764945499999953],[111.00425320000005,-7.763426299999935],[111.00324770000009,-7.765664399999935],[111.00086210000006,-7.765474299999937],[110.99956630000008,-7.767211299999929],[110.99882780000007,-7.7652791],[110.99565770000004,-7.763868199999933],[110.989346,-7.767120499999976],[110.98870980000004,-7.763652799999932],[110.98636350000004,-7.763777399999981],[110.986392,-7.7611369],[110.98021670000008,-7.761714599999948],[110.97321180000006,-7.765312299999948],[110.97001650000004,-7.769080599999938],[110.96905870000006,-7.767873099999974],[110.968053,-7.769284],[110.96893340000008,-7.771692199999961],[110.965616,-7.766694299999926],[110.97184840000006,-7.763669],[110.97155330000004,-7.759017],[110.97462110000004,-7.7576346],[110.97464160000004,-7.753694199999927],[110.97182240000006,-7.751141099999927],[110.96454980000004,-7.751464399999975],[110.96543250000008,-7.749666599999955],[110.96971890000009,-7.748435899999947],[110.97058010000006,-7.744632299999978],[110.96908450000006,-7.7434136],[110.96902280000006,-7.740680899999973],[110.96738320000009,-7.741341299999931],[110.96670330000006,-7.738573799999926],[110.96165590000004,-7.737629299999981],[110.95937110000006,-7.733873499999959],[110.94125620000005,-7.739679],[110.93988320000005,-7.746883399999945],[110.940628,-7.768033],[110.93611620000007,-7.780306499999938],[110.93439480000006,-7.776693299999977],[110.93171360000008,-7.777125399999932],[110.92933660000006,-7.77095],[110.92351050000008,-7.770474599999943],[110.91844940000004,-7.765191499999958],[110.91646570000006,-7.760611499999925],[110.91236880000008,-7.758996499999967],[110.91035810000005,-7.755690799999968],[110.90603540000006,-7.755545899999959],[110.90399170000006,-7.752708899999959],[110.89485240000005,-7.750617],[110.88748160000006,-7.751906599999927],[110.88345340000006,-7.755112099999963],[110.88297270000004,-7.749824499999932],[110.87721180000005,-7.746256599999981],[110.87632530000008,-7.747272599999974],[110.878177,-7.751815599999929],[110.87648970000004,-7.752226399999927],[110.87337210000004,-7.749772199999938],[110.87001670000006,-7.750291199999936],[110.86600180000005,-7.754026],[110.86377280000005,-7.752947099999972],[110.86359930000003,-7.757069299999955],[110.86024580000009,-7.759172099999944],[110.86260030000005,-7.765974699999958],[110.85984620000005,-7.766239299999938],[110.85918430000004,-7.770208799999978],[110.85786110000004,-7.770773099999928],[110.85676570000004,-7.775986199999977],[110.85821530000004,-7.780165199999942],[110.85467530000005,-7.784692699999937],[110.85710910000006,-7.787529899999981],[110.860054,-7.796185499999979],[110.85580450000003,-7.801447399999972],[110.85751340000007,-7.808423499999947],[110.85578920000006,-7.812708799999939],[110.84996030000008,-7.815166399999953],[110.84605410000006,-7.813320099999942],[110.84083560000005,-7.805381699999941],[110.84172060000009,-7.800406399999929],[110.84074160000006,-7.799645199999929],[110.83973250000008,-7.801281],[110.83816530000007,-7.797823899999969],[110.83297130000005,-7.795360099999925],[110.82706270000006,-7.797323099999971],[110.82581280000005,-7.794622],[110.81977980000005,-7.794892799999957],[110.81604440000007,-7.793276099999957],[110.81474420000006,-7.794132699999977],[110.81184750000006,-7.791446599999972],[110.81082420000007,-7.792487499999936],[110.80988310000004,-7.791064699999936],[110.80635730000006,-7.790919899999949],[110.80138270000003,-7.792116599999929],[110.80127710000005,-7.794885099999931],[110.79887930000007,-7.794280399999934],[110.79748880000005,-7.796018499999946],[110.79341710000006,-7.794649899999968],[110.79361580000005,-7.796298899999954],[110.787381,-7.797752299999956],[110.78499290000008,-7.800214899999958],[110.78270460000005,-7.808715199999938],[110.78588030000009,-7.813747],[110.78567860000004,-7.816686499999946],[110.78472140000008,-7.826713499999926],[110.782959,-7.829908799999941],[110.782486,-7.846478],[110.78453830000007,-7.847318199999961],[110.78311920000004,-7.851540499999942],[110.78800960000007,-7.851132399999926],[110.78828430000004,-7.855024799999967],[110.78620150000006,-7.857655],[110.78405760000004,-7.8577652],[110.78429410000007,-7.860739199999955],[110.78256220000009,-7.862922599999933],[110.78395840000007,-7.866295799999932],[110.78288270000007,-7.866980499999954],[110.78406520000004,-7.869195399999967],[110.78289030000008,-7.871325],[110.78398890000005,-7.872339199999942],[110.77726740000008,-7.879737299999931],[110.77545930000008,-7.886712],[110.777832,-7.891917199999966],[110.77703860000008,-7.894098299999939],[110.77416230000006,-7.895655599999941],[110.77104950000006,-7.902040899999974],[110.769165,-7.915411399999925],[110.77212520000006,-7.926809299999945],[110.770411,-7.931320199999959],[110.77009580000004,-7.941996499999959],[110.77170560000008,-7.945043099999964],[110.76828770000009,-7.955642199999943],[110.76843260000004,-7.979480699999954],[110.76602170000007,-7.990042699999947],[110.76218410000007,-7.991794599999935],[110.76078030000008,-7.991148399999929],[110.76174930000008,-8.003481799999975],[110.75688170000006,-8.012255599999946],[110.75417330000005,-8.025791099999935],[110.75730130000005,-8.032177899999965],[110.76655580000005,-8.044120799999973],[110.77180480000004,-8.057982399999958],[110.77851870000006,-8.067645],[110.77954860000006,-8.0849571],[110.78733820000008,-8.102284399999974],[110.78916930000008,-8.114723199999958],[110.78989410000008,-8.125518799999952],[110.78776550000003,-8.128459899999939],[110.78549960000004,-8.139707499999929],[110.78702540000006,-8.153210599999966],[110.79099270000006,-8.1589937],[110.796196,-8.162288599999954],[110.79930110000004,-8.1625547],[110.80973820000008,-8.155511799999942],[110.81212620000008,-8.146821],[110.81712340000007,-8.14363],[110.81855770000004,-8.144305199999962],[110.81641390000004,-8.153625499999976],[110.81840520000009,-8.1585788],[110.82308960000006,-8.161266299999966],[110.82636260000004,-8.1697836],[110.83318330000009,-8.173638299999936],[110.83421330000004,-8.175752599999953],[110.83255,-8.180794699999979],[110.83463290000009,-8.189838399999928],[110.82923890000006,-8.194750799999952],[110.82982330000004,-8.201424799999927]]]},"properties":{"shapeName":"Wonogiri","shapeISO":"","shapeID":"22746128B81203040091109","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[109.75216460000007,-7.461879899999929],[109.75605180000008,-7.468055599999957],[109.75916170000005,-7.468814899999927],[109.761111,-7.478843099999949],[109.76127640000004,-7.487966799999981],[109.75805930000007,-7.491409],[109.75819820000004,-7.495447499999955],[109.768219,-7.506082],[109.76709750000003,-7.510118399999953],[109.77429960000006,-7.517135099999962],[109.77291870000005,-7.518685299999959],[109.76730350000008,-7.518206099999929],[109.76157380000006,-7.523355],[109.75204470000006,-7.523615799999959],[109.750267,-7.528228199999944],[109.74530030000005,-7.530493199999967],[109.74114990000004,-7.530339699999956],[109.73791530000005,-7.5353062],[109.739357,-7.542885299999966],[109.73715130000005,-7.544065799999942],[109.74218690000004,-7.5510731],[109.74063960000007,-7.555530699999963],[109.74195290000006,-7.560794299999941],[109.74122620000009,-7.574204899999927],[109.74633380000006,-7.576154],[109.74973170000004,-7.579265699999951],[109.74980960000005,-7.581906699999934],[109.75080110000005,-7.580075699999952],[109.75228120000008,-7.582068399999969],[109.75616270000006,-7.594357299999956],[109.76003270000007,-7.599883499999976],[109.76452640000008,-7.603243299999974],[109.78029110000006,-7.605642499999931],[109.78586180000008,-7.611363],[109.78788180000004,-7.608506899999952],[109.78891370000008,-7.610048],[109.80046080000005,-7.612314699999956],[109.80563360000008,-7.6068143],[109.80822760000007,-7.606926399999963],[109.81076810000008,-7.599923099999955],[109.81498820000007,-7.599243199999933],[109.81571880000007,-7.594960399999934],[109.81385250000005,-7.593197799999928],[109.81573770000006,-7.592628699999977],[109.81744440000006,-7.595126299999947],[109.82114810000007,-7.595388],[109.821504,-7.597544899999946],[109.824047,-7.597877099999948],[109.82307790000004,-7.591606899999931],[109.82416140000004,-7.585205899999949],[109.82692610000004,-7.583740299999931],[109.82589480000007,-7.579658599999959],[109.83669260000005,-7.5751476],[109.83773280000008,-7.572129699999948],[109.839615,-7.571239399999968],[109.84221410000004,-7.561071799999979],[109.84975570000006,-7.561571099999981],[109.85576280000004,-7.558439599999929],[109.85581530000007,-7.552350299999944],[109.86039850000009,-7.549299299999973],[109.86026560000005,-7.544584599999951],[109.86680210000009,-7.541747499999929],[109.86901260000008,-7.538274799999954],[109.86336190000009,-7.5316892],[109.86393620000007,-7.5289684],[109.86818930000004,-7.527675399999964],[109.87500040000003,-7.526618399999961],[109.87890340000007,-7.533411499999943],[109.880464,-7.533171299999935],[109.88374380000005,-7.536055699999963],[109.88510050000008,-7.529692099999977],[109.88661590000004,-7.527751399999943],[109.88879960000008,-7.528019299999926],[109.89052850000007,-7.524143699999968],[109.89371230000006,-7.521926899999926],[109.89577820000005,-7.522402399999976],[109.89844790000006,-7.519723],[109.90978470000005,-7.522889699999951],[109.91124810000008,-7.520587099999943],[109.91343270000004,-7.521279799999945],[109.91968240000006,-7.519269399999928],[109.92598570000007,-7.524066699999935],[109.92718010000004,-7.522928199999967],[109.93389920000004,-7.523486199999979],[109.93951170000008,-7.532789199999968],[109.94339920000004,-7.530549099999973],[109.94873670000004,-7.531766799999957],[109.95111650000007,-7.530442599999958],[109.95264750000007,-7.525065299999937],[109.95496,-7.527757],[109.96404310000008,-7.532391099999927],[109.97296250000005,-7.531173099999933],[109.97525070000006,-7.533240499999977],[109.97268530000008,-7.537422099999958],[109.97520720000006,-7.539652899999965],[109.97371380000004,-7.540716599999939],[109.97300260000009,-7.547235899999976],[109.97022810000004,-7.553849599999978],[109.96754050000004,-7.554751599999975],[109.96989470000005,-7.5585792],[109.96804670000006,-7.562473],[109.97041040000005,-7.564594899999975],[109.97199120000005,-7.569609199999945],[109.974523,-7.569787],[109.97710170000005,-7.572153599999979],[109.97854820000003,-7.576995799999963],[109.98542270000007,-7.577489399999934],[109.99242860000004,-7.575029299999926],[109.99538350000006,-7.575397899999928],[109.99634390000006,-7.5821742],[109.99522790000009,-7.587318799999935],[109.99947380000003,-7.590543199999956],[110.00920930000007,-7.586650799999973],[110.01709250000005,-7.586074599999961],[110.01671320000008,-7.582971499999928],[110.01429070000006,-7.582613299999934],[110.01536820000007,-7.580517499999928],[110.01440190000005,-7.578552599999966],[110.016857,-7.573375699999929],[110.01587530000006,-7.5727404],[110.01646880000004,-7.567694899999935],[110.01418080000008,-7.566441599999962],[110.02376920000006,-7.556758499999944],[110.02738170000003,-7.555572699999971],[110.02829470000006,-7.553223199999934],[110.03151270000006,-7.553447399999925],[110.032419,-7.552327899999966],[110.03168690000007,-7.550001799999961],[110.03410880000007,-7.542473099999938],[110.03158560000008,-7.5377101],[110.03205420000006,-7.535757499999931],[110.02800750000006,-7.531669499999964],[110.02789720000004,-7.529435299999932],[110.036274,-7.5302032],[110.04424110000008,-7.534788799999944],[110.04577940000007,-7.534505799999977],[110.04480950000004,-7.533235],[110.04570650000005,-7.531988399999932],[110.04372560000007,-7.530139399999939],[110.04503710000006,-7.528749499999947],[110.04346470000007,-7.527492],[110.04475410000003,-7.524821199999963],[110.04446360000009,-7.520065399999964],[110.04720980000008,-7.517943699999933],[110.04676820000009,-7.514067099999977],[110.04920970000006,-7.512668199999951],[110.04698180000008,-7.509683099999961],[110.05012450000004,-7.507398299999977],[110.05059160000008,-7.505444599999976],[110.04862980000007,-7.502614499999936],[110.05380960000008,-7.491906799999981],[110.05187990000007,-7.482523799999967],[110.05523030000006,-7.474124299999971],[110.05959520000005,-7.470217299999945],[110.05942450000003,-7.466626199999951],[110.06495670000004,-7.459512199999949],[110.05745580000007,-7.453052899999932],[110.05608240000004,-7.442438599999946],[110.05309090000009,-7.435358],[110.05962230000006,-7.434021399999949],[110.05865480000006,-7.428155899999979],[110.06269840000004,-7.413647599999933],[110.06267550000007,-7.408310399999948],[110.07420930000006,-7.385716299999956],[110.07107730000007,-7.383642499999951],[110.07051270000005,-7.379513599999939],[110.05682970000004,-7.372366799999952],[110.04319850000007,-7.360800499999925],[110.040937,-7.355792399999928],[110.03179960000006,-7.348999],[110.02910380000009,-7.345575599999961],[110.02990710000006,-7.345098599999972],[110.02807450000006,-7.345180299999981],[110.01840050000004,-7.331639399999972],[110.00592530000006,-7.318985199999929],[109.99839810000009,-7.3134687],[109.99609410000005,-7.3064512],[109.99643710000004,-7.291914],[109.99451450000004,-7.289053399999943],[109.99414060000004,-7.283901199999946],[109.99819940000003,-7.2696557],[109.99559020000004,-7.265901099999951],[109.99478150000004,-7.260952],[109.97727640000005,-7.245741599999974],[109.97264240000004,-7.243650899999977],[109.97065880000008,-7.240064899999936],[109.96196940000004,-7.233086299999968],[109.95915670000005,-7.232631399999946],[109.95046240000005,-7.217272099999946],[109.94367920000008,-7.214615499999979],[109.93921040000004,-7.207487199999946],[109.93694540000007,-7.209562199999937],[109.93321990000004,-7.204401],[109.93407560000009,-7.202319899999964],[109.93089340000006,-7.195230899999956],[109.92697860000004,-7.192716399999938],[109.92475370000005,-7.188596899999936],[109.92270130000009,-7.187189299999943],[109.91886910000005,-7.189640399999973],[109.91853880000008,-7.194369799999947],[109.91495210000005,-7.195840199999964],[109.91378020000008,-7.199237299999936],[109.91049960000004,-7.200199599999962],[109.91114040000008,-7.203385299999979],[109.90940090000004,-7.205790499999978],[109.91222380000005,-7.215281899999979],[109.91002660000004,-7.216151699999955],[109.90670780000005,-7.221650099999977],[109.90253450000006,-7.221352099999933],[109.89557650000006,-7.223884599999963],[109.88919830000009,-7.223503099999959],[109.88359830000007,-7.225643099999957],[109.88085180000007,-7.224444799999958],[109.87767030000003,-7.225982599999952],[109.87517550000007,-7.22506],[109.86972810000009,-7.227012099999968],[109.86763770000005,-7.230472099999929],[109.86444860000006,-7.230444399999953],[109.86172490000007,-7.232819499999948],[109.85955810000007,-7.2369208],[109.85478210000008,-7.241079799999966],[109.85260010000007,-7.250873099999978],[109.84970860000004,-7.251314599999944],[109.85048680000006,-7.254843699999981],[109.845398,-7.268763499999977],[109.84148410000006,-7.272887199999957],[109.84357450000005,-7.274855099999968],[109.84173590000006,-7.276332399999944],[109.843216,-7.280391699999939],[109.84152990000007,-7.281451699999934],[109.84024050000005,-7.286001699999929],[109.83881380000008,-7.285545799999966],[109.83614350000005,-7.287499899999943],[109.83541870000005,-7.2913608],[109.83015440000008,-7.296840199999963],[109.83057410000004,-7.298007],[109.82842260000007,-7.2973399],[109.82549290000009,-7.299112299999933],[109.82548520000006,-7.301918],[109.81924440000006,-7.305143299999941],[109.81596380000008,-7.309467799999936],[109.81494140000007,-7.313434599999937],[109.810051,-7.315565099999958],[109.80686950000006,-7.323442],[109.80226140000008,-7.325207699999964],[109.79982,-7.324573499999929],[109.79662330000008,-7.327330599999925],[109.792778,-7.333247599999936],[109.79268880000006,-7.337627299999951],[109.78766380000008,-7.341231299999947],[109.78570190000005,-7.349799599999926],[109.78691770000006,-7.356224099999963],[109.78581170000007,-7.359020299999941],[109.78330020000004,-7.360340199999939],[109.783251,-7.362672599999939],[109.77940020000005,-7.365129899999943],[109.77458190000004,-7.364459499999953],[109.77201850000006,-7.369942599999945],[109.76851660000005,-7.371589099999937],[109.76663060000004,-7.377747099999965],[109.76466190000008,-7.3794057],[109.76451310000004,-7.382444],[109.76128160000007,-7.3828963],[109.76104290000006,-7.3860429],[109.75568570000007,-7.385829],[109.75334660000004,-7.383959399999981],[109.75123630000007,-7.388629199999968],[109.750885,-7.390838599999938],[109.75442510000005,-7.388855899999953],[109.75805670000005,-7.388734299999953],[109.76319890000008,-7.392947599999957],[109.76840580000004,-7.3929629],[109.76821140000004,-7.395283599999971],[109.779335,-7.4023132],[109.78047940000005,-7.406022],[109.78581240000005,-7.405937599999959],[109.79109190000008,-7.4090318],[109.79206090000008,-7.411504699999966],[109.79561620000004,-7.410410799999966],[109.80309930000004,-7.411950799999943],[109.80502610000008,-7.4109892],[109.80774450000007,-7.413717799999972],[109.81779870000008,-7.415951299999961],[109.82254790000007,-7.421352399999932],[109.82947540000004,-7.419806],[109.82864380000007,-7.421648499999947],[109.83299260000007,-7.422843899999975],[109.83173370000009,-7.432658599999968],[109.82735080000003,-7.438360399999965],[109.82831260000006,-7.443257899999935],[109.827059,-7.447656799999947],[109.81697080000004,-7.449520099999972],[109.80784090000009,-7.449061599999936],[109.802059,-7.451243599999941],[109.79514780000005,-7.449872299999981],[109.78644530000008,-7.450694399999975],[109.77876140000006,-7.448028099999931],[109.77098080000007,-7.447463899999946],[109.76142880000003,-7.440783899999929],[109.75494130000004,-7.439729599999964],[109.75268890000007,-7.445536299999958],[109.75624760000005,-7.449100499999929],[109.75216460000007,-7.461879899999929]]]},"properties":{"shapeName":"Wonosobo","shapeISO":"","shapeID":"22746128B99460987429706","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[139.64443370000004,-5.041069499999935],[140.0981468000001,-5.1604444],[140.1470776000001,-5.169007299999976],[140.15388020000012,-5.105906899999979],[140.15283220000003,-5.066007699999943],[140.14857910000012,-5.064147699999978],[140.14665700000012,-5.061639599999978],[140.1394411000001,-5.058834899999965],[140.1396171,-5.0540229],[140.1326732000001,-5.050449699999945],[140.131235,-5.053839899999957],[140.1260784000001,-5.053398799999968],[140.1236043,-5.054806499999927],[140.1180571000001,-5.050950499999942],[140.1123970000001,-5.051502],[140.11234930000012,-5.057293399999935],[140.1079208000001,-5.060722299999952],[140.08634890000008,-5.059443299999941],[140.07540390000008,-5.0545401],[140.0861992,-5.041658499999926],[140.09878360000005,-5.038238899999953],[140.10564510000006,-5.030997799999966],[140.115567,-5.023607799999979],[140.12553350000007,-5.012153099999978],[140.12864620000005,-5.005458899999951],[140.1328085,-5.001731899999925],[140.14128990000006,-4.997353699999962],[140.16593290000003,-4.979387899999949],[140.21112570000003,-4.970860899999934],[140.2341484000001,-4.962334],[140.25121850000005,-4.952067499999941],[140.25291850000008,-4.935867499999972],[140.24861850000002,-4.923067499999945],[140.24951850000002,-4.898367499999949],[140.24181850000002,-4.886467499999981],[140.23501850000002,-4.864267499999926],[140.23411850000002,-4.842067499999928],[140.2392185000001,-4.830167499999959],[140.23581850000005,-4.815667499999961],[140.22731850000002,-4.799467499999935],[140.22821850000003,-4.789267499999937],[140.2256185000001,-4.769667499999969],[140.22681850000004,-4.7451675],[140.22041850000005,-4.732467499999927],[140.21291850000011,-4.705767499999979],[140.21081850000007,-4.686567499999967],[140.2012185000001,-4.671667499999955],[140.16281850000007,-4.6609675],[140.1191185,-4.6386675],[140.10421850000012,-4.629067499999962],[140.0480185,-4.570167499999968],[139.98411850000002,-4.508967499999926],[139.96781850000002,-4.488567499999931],[139.95691850000003,-4.455967499999929],[139.9623279000001,-4.41783],[139.97461850000002,-4.3689675],[139.98411850000002,-4.311867499999948],[139.99361850000003,-4.276467499999967],[139.98951850000003,-4.181367499999965],[139.9909328000001,-4.149393199999963],[139.99007560000007,-4.147567299999935],[139.9859785000001,-4.146662099999958],[139.9842714,-4.142925099999957],[139.98534340000003,-4.132553599999937],[139.9892202000001,-4.129835],[139.98152560000005,-4.127050499999939],[139.97939970000004,-4.119787199999962],[139.97450630000003,-4.116651599999955],[139.9788185000001,-4.113967499999944],[139.98711850000007,-4.104267499999935],[139.9855185,-4.098267499999963],[139.9793185000001,-4.088867499999935],[139.97981850000008,-4.084867499999973],[139.9847185000001,-4.080467499999941],[139.98851850000005,-4.0676675],[139.98911850000002,-4.060867499999972],[139.9915185000001,-4.0576675],[139.9933185000001,-4.058167499999968],[139.9991185,-4.053767499999935],[140.00971850000008,-4.050567499999943],[140.01491850000002,-4.045067499999959],[140.01571850000005,-4.041467499999953],[140.02131850000012,-4.039167499999962],[140.0236185000001,-4.031067499999949],[140.03491850000012,-4.025867499999947],[140.03701850000004,-4.0225675],[140.04251850000003,-4.024967499999946],[140.0449185000001,-4.024267499999951],[140.0477185000001,-4.019867499999975],[140.05231850000007,-4.017867499999966],[140.06691850000004,-4.018267499999979],[140.07461850000004,-4.016367499999944],[140.09301850000008,-4.015267499999936],[140.09141850000003,-4.010067499999934],[140.08371850000003,-4.008467499999938],[140.0812185000001,-4.004367499999944],[140.07731850000005,-4.003167499999961],[140.07191850000004,-3.997467499999971],[140.0649185000001,-4.000067499999943],[140.05471850000004,-3.997067499999957],[140.0513185000001,-4.000367499999925],[140.04701850000004,-3.998367499999972],[140.0449185000001,-3.994467499999928],[140.04161850000003,-3.992767499999957],[140.0400185000001,-3.988567499999931],[140.03401850000012,-3.9874675],[140.03871850000007,-3.9799675],[140.04201850000004,-3.967667499999948],[140.0481185000001,-3.962067499999932],[140.05211850000012,-3.953967499999976],[140.0557185,-3.951067499999965],[140.0572185000001,-3.944167499999935],[140.0612185000001,-3.939867499999934],[140.06721850000008,-3.939067499999965],[140.09461850000002,-3.950267499999939],[140.09781850000002,-3.949467499999969],[140.10671850000006,-3.934567499999957],[140.1033185000001,-3.924167499999953],[140.10391850000008,-3.9097675],[140.11221850000004,-3.906667499999969],[140.1206185000001,-3.899367499999926],[140.1328185000001,-3.894867499999975],[140.14226250000002,-3.894632699999931],[140.14615920000006,-3.890168],[140.14511790000006,-3.8769056],[140.14756180000006,-3.869445299999938],[140.1406191000001,-3.858655499999941],[140.13380140000004,-3.851882299999943],[140.13278650000007,-3.848841799999946],[140.134267,-3.847341699999959],[140.14137940000012,-3.848986199999956],[140.1451337000001,-3.847054199999945],[140.14802290000011,-3.842552199999943],[140.1529511000001,-3.841399299999978],[140.153,-3.833782699999972],[140.1605423000001,-3.8277293],[140.1611041000001,-3.814884699999936],[140.15633650000007,-3.809968],[140.15011120000008,-3.808505499999967],[140.1511620000001,-3.799849599999959],[140.148346,-3.794274499999972],[140.1499176000001,-3.787781099999961],[140.1481497000001,-3.786413399999958],[140.14367530000004,-3.786553699999956],[140.13845630000003,-3.781338099999971],[140.14027750000002,-3.776039],[140.138183,-3.773097],[140.13501150000002,-3.772243599999968],[140.13499070000012,-3.765956599999924],[140.14127240000005,-3.766089499999964],[140.13966010000001,-3.769986699999947],[140.14662840000005,-3.768238699999927],[140.1513291000001,-3.771056599999952],[140.15535310000007,-3.771530899999959],[140.1583369000001,-3.770593],[140.161283,-3.764788399999929],[140.15172030000008,-3.762562799999955],[140.1325419000001,-3.750313899999981],[140.13211250000006,-3.744867799999952],[140.1344216000001,-3.7397592],[140.13350620000006,-3.737225399999943],[140.1395861000001,-3.737747],[140.1412474000001,-3.735568599999965],[140.13062660000003,-3.726322299999936],[140.1305678000001,-3.722342],[140.1225194000001,-3.714898299999959],[140.1254252000001,-3.715661],[140.1270502000001,-3.713898699999959],[140.13184760000001,-3.714256199999966],[140.12957990000007,-3.704773899999964],[140.131968,-3.700778],[140.13605690000009,-3.7024012],[140.1342998,-3.69579],[140.12717220000002,-3.695361299999945],[140.12229700000012,-3.692175899999938],[140.1181702,-3.687345899999968],[140.11751630000003,-3.683110699999929],[140.10247090000007,-3.680586299999959],[140.09766680000007,-3.676526799999976],[140.09561830000007,-3.676797499999964],[140.0960232000001,-3.678376899999932],[140.09193060000007,-3.682350799999938],[140.0880307000001,-3.682243],[140.0826171000001,-3.674666199999933],[140.07618090000005,-3.670450899999935],[140.0749101,-3.664494299999944],[140.07568320000007,-3.657666899999981],[140.07260320000012,-3.657441799999958],[140.06554270000004,-3.648264599999948],[140.05669910000006,-3.655176],[140.04963820000012,-3.6659274],[140.04444640000008,-3.668026899999973],[140.04341340000008,-3.671686899999941],[140.04109160000007,-3.670786799999973],[140.03290390000006,-3.659631499999932],[140.0315064,-3.653670499999976],[140.03404210000008,-3.647664],[140.0268651,-3.642013599999927],[140.02555790000008,-3.6394874],[140.0191952,-3.636107],[140.01642990000005,-3.638427],[140.00904850000006,-3.639903699999934],[140.00588860000005,-3.649563899999976],[140.00379340000006,-3.651700499999947],[139.999399,-3.6525746],[139.99057630000004,-3.657276],[139.98296630000004,-3.656066799999962],[139.97808640000005,-3.651848899999948],[139.97091390000003,-3.641180799999972],[139.9666129000001,-3.640157],[139.96111580000002,-3.641703799999959],[139.95807560000003,-3.639019599999926],[139.95917040000006,-3.631550399999981],[139.96411540000008,-3.624668299999939],[139.9665636000001,-3.6222291],[139.971302,-3.620643299999927],[139.97036320000007,-3.613348499999972],[139.9651523000001,-3.610039099999938],[139.96110720000001,-3.609206499999971],[139.9568306000001,-3.6113731],[139.94519470000012,-3.612949899999933],[139.93876330000012,-3.615809],[139.9385569000001,-3.619868099999962],[139.92501540000012,-3.624400399999956],[139.9173237000001,-3.623991699999976],[139.906959,-3.616251499999976],[139.901516,-3.616133199999979],[139.89385430000004,-3.620540499999947],[139.684721,-4],[139.63189780000005,-4.036965099999975],[139.56546030000004,-4.0629628],[139.53368590000002,-4.068739499999936],[139.4942085,-4.080293899999958],[139.48401330000002,-4.085512599999959],[139.38415310000005,-4.109867299999962],[139.362384,-4.113898699999936],[139.35109660000012,-4.118736099999978],[139.282565,-4.132443099999932],[139.16162670000006,-4.162273899999946],[139.0479448000001,-4.192911599999945],[139.0142009000001,-4.204750799999943],[138.8985331,-4.252456],[138.8390902000001,-4.266552099999956],[138.8449637000001,-4.404579599999977],[138.8449637000001,-4.433156799999949],[138.8490468000001,-4.499496799999974],[138.84598430000005,-4.520929699999954],[138.8408812,-4.532156399999963],[138.83373690000008,-4.542362599999933],[138.83373690000008,-4.556651199999976],[138.852108,-4.584207699999979],[138.85721160000003,-4.599517],[138.85823170000003,-4.638300299999969],[138.865376,-4.6638157],[138.8689849000001,-4.727681599999926],[138.9497507000001,-4.726469699999939],[139.02964350000002,-4.73744],[139.13426650000008,-4.8261421],[139.304221,-4.938344],[139.51140410000005,-5.006300099999976],[139.64443370000004,-5.041069499999935]]]},"properties":{"shapeName":"Yahukimo","shapeISO":"","shapeID":"22746128B95836092331804","shapeGroup":"IDN","shapeType":"ADM2"}}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[139.46134690000008,-3.458425499999976],[139.45722610000007,-3.459576299999981],[139.4542788000001,-3.474641899999938],[139.4151438,-3.564714399999957],[139.40644720000012,-3.574342799999954],[139.3915386000001,-3.6063341],[139.36389570000006,-3.635219399999926],[139.33563160000006,-3.656339799999955],[139.33159390000003,-3.669384799999932],[139.32973030000005,-3.685224199999936],[139.30892040000003,-3.677770899999928],[139.3027085000001,-3.673422599999981],[139.28624700000012,-3.669384799999932],[139.27661870000009,-3.669695399999966],[139.28300720000004,-3.690181399999972],[139.2793293000001,-3.696158],[139.2761111000001,-3.7076515],[139.2793293000001,-3.737074899999925],[139.2761111000001,-3.747648899999945],[139.26645660000008,-3.753165799999977],[139.2609397000001,-3.758682599999929],[139.24438910000003,-3.760981299999969],[139.22412810000003,-3.7588361],[139.214189,-3.753556],[139.20456060000004,-3.750760699999944],[139.19896990000007,-3.746412299999974],[139.18623550000007,-3.7429958],[139.16294090000008,-3.742374599999948],[139.1495853,-3.7439276],[139.133745,-3.748897099999965],[139.1210106000001,-3.756040799999937],[139.107655,-3.768154],[139.09989020000012,-3.767222199999935],[139.09212530000002,-3.772812899999963],[139.06386120000002,-3.7849261],[139.05267980000008,-3.784304899999938],[139.0439831000001,-3.778404499999965],[139.0347584000001,-3.815763799999957],[139.0340348000001,-3.841810399999929],[139.03837590000012,-3.867133499999966],[139.04789950000009,-3.897088],[138.97777540000004,-3.922503699999936],[138.98009060000004,-3.940562399999976],[139.00486380000007,-3.9943631],[139.0251512000001,-4.043424],[139.14712480000003,-4.018414299999961],[139.2052238000001,-4.009842399999968],[139.24729260000004,-4.012382899999977],[139.2908195000001,-4.047995799999967],[139.34885540000005,-4.0888848],[139.362384,-4.113898699999936],[139.38415310000005,-4.109867299999962],[139.48401330000002,-4.085512599999959],[139.4942085,-4.080293899999958],[139.53368590000002,-4.068739499999936],[139.56546030000004,-4.0629628],[139.63189780000005,-4.036965099999975],[139.684721,-4],[139.89385430000004,-3.620540499999947],[139.8906981,-3.621349799999962],[139.88918090000004,-3.620067499999948],[139.88232240000002,-3.606059799999969],[139.872756,-3.595392199999935],[139.8696992,-3.589320399999963],[139.86231490000011,-3.583077299999957],[139.85533110000006,-3.583049299999971],[139.84482350000008,-3.588819399999977],[139.83585790000006,-3.5848272],[139.8304134000001,-3.578339799999981],[139.82245450000005,-3.575824799999964],[139.8149102000001,-3.5785155],[139.8090393000001,-3.584526099999948],[139.8014608000001,-3.584379599999977],[139.80028620000007,-3.580327199999942],[139.8057487000001,-3.575386899999955],[139.8073141000001,-3.567409699999928],[139.80403020000006,-3.5644956],[139.78467850000004,-3.566641199999935],[139.77184080000006,-3.561973299999977],[139.76565950000008,-3.558190099999933],[139.76023840000005,-3.56055],[139.75234710000007,-3.567279499999927],[139.75367030000007,-3.556597899999929],[139.7504364,-3.553713099999925],[139.738854,-3.550455099999965],[139.74552890000007,-3.545693699999958],[139.74201660000006,-3.5400835],[139.7316373000001,-3.545299799999952],[139.72590950000006,-3.539302599999928],[139.7231448000001,-3.525005699999952],[139.71772420000002,-3.520607499999926],[139.7130492000001,-3.522311299999956],[139.70893980000005,-3.528344899999979],[139.70712660000004,-3.535782199999971],[139.70317740000007,-3.541128599999979],[139.69794230000002,-3.540449899999942],[139.68756830000007,-3.528909399999975],[139.68252530000007,-3.526739299999974],[139.67605980000008,-3.529132199999935],[139.6746604000001,-3.535292599999934],[139.68194460000007,-3.549428099999943],[139.67382830000008,-3.554167],[139.66651830000012,-3.547065099999941],[139.66565140000012,-3.5353134],[139.6605287000001,-3.527585099999953],[139.6526841000001,-3.528692699999965],[139.64477510000006,-3.536949899999968],[139.63905570000009,-3.547937299999944],[139.63174830000003,-3.553825],[139.62521880000008,-3.554874],[139.61668020000002,-3.551443799999959],[139.6106751000001,-3.545030099999963],[139.59578650000003,-3.550064899999938],[139.59056420000002,-3.545738599999936],[139.5865874000001,-3.538562499999955],[139.58548640000004,-3.532526099999927],[139.58829580000008,-3.527125399999932],[139.59403780000002,-3.523460599999964],[139.6088635000001,-3.518017599999951],[139.6132070000001,-3.514040799999975],[139.6150510000001,-3.508390099999929],[139.61200530000008,-3.501936099999966],[139.60846350000008,-3.498018799999954],[139.6019831000001,-3.496446899999967],[139.59675590000006,-3.497443],[139.58362320000003,-3.504281699999979],[139.57752860000005,-3.510001199999977],[139.56119320000005,-3.532581099999959],[139.55110890000003,-3.536887199999967],[139.54481350000003,-3.537047499999971],[139.53645240000003,-3.533293799999967],[139.530102,-3.527552799999967],[139.50588070000003,-3.518882699999949],[139.50307070000008,-3.515600399999926],[139.5026160000001,-3.5117144],[139.5055811000001,-3.5008069],[139.50469880000003,-3.493856199999925],[139.50139450000006,-3.4897],[139.49536610000007,-3.487542499999961],[139.48690310000006,-3.491117199999962],[139.48260570000002,-3.497022799999968],[139.4812657000001,-3.501632799999925],[139.484099,-3.510174],[139.48414580000008,-3.514888099999951],[139.48149710000007,-3.5177374],[139.47701010000003,-3.519612],[139.47429870000008,-3.518879199999958],[139.4725555000001,-3.516995399999928],[139.46694910000008,-3.498409799999934],[139.46700620000001,-3.494876399999953],[139.47140830000012,-3.489091899999949],[139.48157220000007,-3.485705399999972],[139.48487240000009,-3.482580499999926],[139.4871052000001,-3.479527399999938],[139.4871346000001,-3.475507899999968],[139.47632470000008,-3.458265],[139.47017710000011,-3.456355799999926],[139.46134690000008,-3.458425499999976]]]},"properties":{"shapeName":"Yalimo","shapeISO":"","shapeID":"22746128B78863673415861","shapeGroup":"IDN","shapeType":"ADM2"}} +]} \ No newline at end of file diff --git a/sigap-website/public/geojson/indo_faults_lines.geojson b/sigap-website/public/geojson/indo_faults_lines.geojson new file mode 100644 index 0000000..9e52b5c --- /dev/null +++ b/sigap-website/public/geojson/indo_faults_lines.geojson @@ -0,0 +1,1196 @@ +{ +"type": "FeatureCollection", +"name": "indo_faults_lines", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 105.203723, -5.328199 ], [ 105.292491, -5.466554 ], [ 105.415807, -5.649379 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 104.887757, -4.957623 ], [ 105.104949, -5.22444 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 105.471358, -5.278715 ], [ 105.550262, -5.402246 ], [ 105.698444, -5.550471 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 104.644847, -5.021927 ], [ 104.867007, -5.283801 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 105.576485, -6.622916 ], [ 105.645268, -6.82058 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 105.943177, -6.578351 ], [ 105.9773, -6.771081 ], [ 105.972388, -6.756256 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 106.098055, -6.118707 ], [ 106.231363, -6.271878 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 105.900139, -6.039682 ], [ 105.96929, -6.108854 ], [ 106.05319, -6.217558 ], [ 106.107452, -6.296617 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 105.855075, -6.207721 ], [ 105.944055, -6.271946 ], [ 106.018175, -6.336174 ], [ 106.11702, -6.415223 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 106.399473, -6.380562 ], [ 106.542546, -6.58315 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 106.220365, -6.652415 ], [ 106.249605, -6.820436 ], [ 106.264281, -6.884679 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 106.309147, -6.785828 ], [ 106.353163, -6.983498 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 106.339138, -6.691923 ], [ 106.358612, -6.810526 ], [ 106.402698, -6.983486 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 106.452263, -6.97359 ], [ 106.457584, -6.845097 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 106.304987, -6.509076 ], [ 106.374209, -6.553538 ], [ 106.438478, -6.598001 ], [ 106.512541, -6.681997 ], [ 106.542163, -6.716584 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 107.235282, -6.849853 ], [ 107.379248, -6.741095 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 106.511436, -7.067474 ], [ 107.185647, -6.884459 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 107.243476, -7.447835 ], [ 107.496746, -7.225384 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 106.98214, -7.027826 ], [ 107.086349, -6.963555 ], [ 107.185619, -6.894343 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 107.488156, -6.765779 ], [ 107.681246, -6.800327 ], [ 107.943616, -6.859569 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 108.136579, -6.938595 ], [ 108.240349, -7.027526 ], [ 108.334212, -7.11646 ], [ 108.487277, -7.289394 ], [ 108.566266, -7.383273 ], [ 108.674819, -7.531508 ], [ 108.758761, -7.625386 ], [ 108.837735, -7.724207 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 107.98732, -7.165963 ], [ 108.096157, -7.215357 ], [ 108.234744, -7.25486 ], [ 108.358484, -7.289425 ], [ 108.467392, -7.314109 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 108.085768, -7.383388 ], [ 108.184585, -7.47232 ], [ 108.308184, -7.556305 ], [ 108.456494, -7.660052 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 108.09007, -7.610719 ], [ 108.203918, -7.640344 ], [ 108.283104, -7.665035 ], [ 108.495924, -7.729231 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 108.913172, -7.328829 ], [ 108.799438, -7.259667 ], [ 108.70549, -7.200386 ], [ 108.626346, -7.160869 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 109.250794, -7.056938 ], [ 109.151411, -7.165685 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 109.290126, -7.16071 ], [ 109.33492, -7.08657 ], [ 109.359929, -7.002549 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 109.33458, -7.205178 ], [ 109.413979, -7.155739 ], [ 109.453735, -7.111251 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 109.70651, -7.061771 ], [ 109.725956, -7.190259 ], [ 109.735665, -7.259444 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 109.773877, -7.753636 ], [ 109.868491, -7.580643 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 109.815035, -7.219889 ], [ 109.889141, -7.28906 ], [ 109.943502, -7.333525 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 109.80551, -7.086457 ], [ 109.998218, -7.25444 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 110.176958, -7.111079 ], [ 110.335473, -7.111041 ], [ 110.449433, -7.10113 ], [ 110.518854, -7.076403 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.926564, -5.02704 ], [ 104.208054, -5.328436 ], [ 104.464804, -5.619953 ], [ 104.662268, -5.857123 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.18575, -4.251321 ], [ 103.40818, -4.419297 ], [ 103.536704, -4.513164 ], [ 103.645385, -4.616921 ], [ 103.86773, -4.814548 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.951629, -4.923252 ], [ 104.114729, -5.051706 ], [ 104.277815, -5.185101 ], [ 104.391478, -5.278972 ], [ 104.530116, -5.382741 ], [ 104.62682, -5.470145 ], [ 104.722532, -5.570472 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 104.267412, -5.358074 ], [ 104.356279, -5.461835 ], [ 104.331723, -5.38771 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 104.237492, -5.427269 ], [ 104.207926, -5.372914 ], [ 104.306715, -5.471731 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 104.3617, -5.298747 ], [ 104.317273, -5.244396 ], [ 104.425983, -5.338268 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 104.361955, -5.209791 ], [ 104.460771, -5.298724 ], [ 104.431262, -5.2246 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.820021, -3.95983 ], [ 102.977969, -4.157473 ], [ 103.150792, -4.35017 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.516837, -2.368813 ], [ 101.645219, -2.512101 ], [ 101.753886, -2.620799 ], [ 101.818127, -2.675146 ], [ 101.911934, -2.783848 ], [ 101.990879, -2.892553 ], [ 102.08954, -3.035848 ], [ 102.207944, -3.203848 ], [ 102.296755, -3.327377 ], [ 102.395501, -3.44102 ], [ 102.499172, -3.564546 ], [ 102.583113, -3.658424 ], [ 102.676991, -3.742416 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.356396, -3.258175 ], [ 102.509376, -3.460761 ], [ 102.682058, -3.702878 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.442503, -1.855532 ], [ 101.514154, -1.968354 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.534659, -1.988865 ], [ 101.61998, -2.115361 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.643884, -2.146129 ], [ 101.742905, -2.276041 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.770235, -2.306809 ], [ 101.896636, -2.450392 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.923967, -2.481159 ], [ 102.047018, -2.597388 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.077776, -2.628155 ], [ 102.170129, -2.6931 ], [ 102.245413, -2.734115 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.464676, -2.764837 ], [ 102.331538, -2.580223 ], [ 102.19512, -2.344321 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.791731, -1.981965 ], [ 101.873742, -2.06743 ], [ 101.945511, -2.139219 ], [ 102.037844, -2.211003 ], [ 102.133565, -2.296464 ], [ 102.219053, -2.364831 ], [ 102.294308, -2.416103 ], [ 102.386709, -2.463952 ], [ 102.427779, -2.484459 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.85359, -1.923822 ], [ 101.921911, -2.00245 ], [ 102.003952, -2.077657 ], [ 102.072323, -2.139189 ], [ 102.174899, -2.224648 ], [ 102.260426, -2.279337 ], [ 102.332273, -2.323772 ], [ 102.438384, -2.371617 ], [ 102.49659, -2.39212 ], [ 102.561661, -2.409201 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.731577, -1.445141 ], [ 102.004648, -1.834882 ], [ 102.247099, -2.145986 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.446116, -1.790564 ], [ 101.370999, -1.691421 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.34026, -1.653815 ], [ 101.272027, -1.544412 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.25158, -1.503385 ], [ 101.190231, -1.383722 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.156094, -1.335859 ], [ 101.101629, -1.205937 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.403792, -2.207735 ], [ 101.342404, -2.10175 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.308238, -2.064145 ], [ 101.240034, -1.944484 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.212723, -1.906878 ], [ 101.154752, -1.804311 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.134285, -1.770122 ], [ 101.066121, -1.636784 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.049101, -1.595755 ], [ 100.980848, -1.493191 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 100.946731, -1.43849 ], [ 100.837477, -1.291484 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 100.707718, -1.123966 ], [ 100.813603, -1.250457 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.033571, -1.585025 ], [ 102.907121, -1.458539 ], [ 102.828635, -1.33888 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.818941, -1.133721 ], [ 102.911117, -1.260215 ], [ 102.982846, -1.345682 ], [ 103.06149, -1.410631 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.05436, -1.506375 ], [ 103.065162, -1.325146 ], [ 103.058709, -1.184954 ], [ 103.048682, -1.096054 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.808865, -1.061917 ], [ 102.82178, -1.338882 ], [ 102.821143, -1.56114 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.622984, -1.342348 ], [ 102.554966, -1.15772 ], [ 102.521016, -1.044889 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 100.938154, -0.843524 ], [ 100.996008, -0.987123 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.016455, -1.028151 ], [ 101.074357, -1.154653 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 100.680417, -1.08294 ], [ 100.591707, -0.942768 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 100.571329, -0.877805 ], [ 100.550902, -0.829939 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.111561, -0.132258 ], [ 101.063715, -0.084398 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.026092, -0.057052 ], [ 100.93043, 0.048925 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 100.906527, 0.079693 ], [ 100.776669, 0.213017 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 100.759601, 0.236948 ], [ 100.640016, 0.366855 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 100.609288, 0.40788 ], [ 100.537587, 0.503605 ], [ 100.489683, 0.530948 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 100.45205, 0.554875 ], [ 100.113516, 0.824923 ], [ 99.93219, 0.937718 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 100.133385, 0.582154 ], [ 100.024307, 0.790708 ], [ 99.95955, 0.917209 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 100.779519, 0.011276 ], [ 100.65303, 0.124084 ], [ 100.543727, 0.253994 ], [ 100.413977, 0.42493 ], [ 100.369598, 0.486468 ], [ 100.263624, 0.582185 ], [ 100.171301, 0.657388 ], [ 100.031015, 0.739419 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.918196, 0.838554 ], [ 99.695927, 1.016307 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.838426, 0.510277 ], [ 99.681101, 0.626497 ], [ 99.554622, 0.742725 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 100.38452, -0.286302 ], [ 100.217246, -0.053826 ], [ 100.114895, 0.110279 ], [ 100.077371, 0.171818 ], [ 100.05714, 0.288071 ], [ 100.071379, 0.47272 ], [ 99.924473, 0.636814 ], [ 99.65475, 0.999201 ], [ 99.531836, 1.1633 ], [ 99.391804, 1.334234 ], [ 99.320045, 1.409443 ], [ 99.20753, 1.614577 ], [ 99.013063, 1.925692 ], [ 98.828711, 2.17868 ], [ 98.719486, 2.335944 ], [ 98.552084, 2.523969 ], [ 98.384673, 2.708574 ], [ 98.166077, 2.971812 ], [ 98.056783, 3.105141 ], [ 97.930491, 3.286336 ], [ 97.82815, 3.45386 ], [ 97.664215, 3.655563 ], [ 97.640351, 3.700009 ], [ 97.58896, 3.706835 ], [ 97.565145, 3.768378 ], [ 97.524203, 3.833336 ], [ 97.483173, 3.86752 ], [ 97.274408, 3.97347 ], [ 97.212823, 4.011068 ], [ 97.182055, 4.038415 ], [ 97.017748, 4.110183 ], [ 96.812508, 4.250327 ], [ 96.627813, 4.383638 ], [ 96.302616, 4.523754 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 97.962826, 3.806086 ], [ 97.975958, 3.604347 ], [ 98.006441, 3.477838 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 97.975977, 3.611186 ], [ 98.075037, 3.494951 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 98.08198, 3.525727 ], [ 98.088394, 3.371858 ], [ 98.094984, 3.279537 ], [ 98.135779, 3.163289 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 97.466065, 3.877774 ], [ 97.414939, 3.976923 ], [ 97.312383, 4.069221 ], [ 97.196049, 4.13758 ], [ 96.922272, 4.281128 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 97.755421, 3.190553 ], [ 97.704324, 3.29996 ], [ 97.62575, 3.388844 ], [ 97.54366, 3.446954 ], [ 97.475465, 3.570034 ], [ 97.40402, 3.754662 ], [ 97.370041, 3.857235 ], [ 97.315477, 3.952963 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 96.375257, 4.756287 ], [ 96.529174, 4.646905 ], [ 96.652353, 4.575128 ], [ 96.765319, 4.527284 ], [ 96.854352, 4.49995 ], [ 96.915995, 4.482868 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 97.115211, 3.436594 ], [ 96.957925, 3.566491 ], [ 96.85202, 3.686144 ], [ 96.732493, 3.836567 ], [ 96.612986, 3.993828 ], [ 96.565219, 4.069043 ], [ 96.45953, 4.263921 ], [ 96.329868, 4.465631 ], [ 96.196828, 4.684438 ], [ 96.145673, 4.773329 ], [ 96.104672, 4.817771 ], [ 95.933745, 4.971601 ], [ 95.776439, 5.09466 ], [ 95.677203, 5.149346 ], [ 95.47541, 5.29633 ], [ 95.17112, 5.556129 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 95.414688, 5.634832 ], [ 95.551331, 5.477574 ], [ 95.677752, 5.34083 ], [ 95.824697, 5.190414 ], [ 95.995614, 5.033164 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 96.338908, 5.228149 ], [ 96.355506, 5.040089 ], [ 96.413105, 4.807586 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 97.113413, 5.200979 ], [ 97.164235, 4.99583 ], [ 97.23571, 4.82146 ], [ 97.276564, 4.725728 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 98.082781, 2.609341 ], [ 98.062639, 2.756368 ], [ 98.015018, 2.882873 ], [ 97.93331, 3.074337 ], [ 97.861816, 3.241868 ], [ 97.831323, 3.364958 ], [ 97.817897, 3.464116 ], [ 97.835407, 3.594055 ], [ 97.804717, 3.648758 ], [ 97.698949, 3.816281 ], [ 97.63758, 3.929105 ], [ 97.590019, 4.076126 ], [ 97.539186, 4.277855 ], [ 97.515626, 4.428301 ], [ 97.509438, 4.660816 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 97.638038, 2.893041 ], [ 97.573281, 3.019542 ], [ 97.443414, 3.149446 ], [ 97.392131, 3.193886 ], [ 97.306584, 3.241736 ], [ 97.286089, 3.265667 ], [ 97.255468, 3.344304 ], [ 97.211147, 3.426358 ], [ 97.153078, 3.494732 ], [ 96.99919, 3.614372 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.220125, 2.421548 ], [ 99.079976, 2.551449 ], [ 98.963759, 2.660841 ], [ 98.874864, 2.736046 ], [ 98.738024, 2.824916 ], [ 98.638787, 2.879602 ], [ 98.536094, 2.924029 ], [ 98.381961, 2.958186 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 98.044522, 2.414429 ], [ 98.095697, 2.332376 ], [ 98.170883, 2.257169 ], [ 98.266653, 2.188804 ], [ 98.393289, 2.127286 ], [ 98.547344, 2.065775 ], [ 98.547334, 2.062355 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 98.571306, 2.055522 ], [ 98.701457, 2.024779 ], [ 98.804239, 2.011126 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 98.790353, 1.949575 ], [ 98.933312, 1.604254 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.339475, 2.209576 ], [ 99.246917, 2.202715 ], [ 99.133853, 2.216366 ], [ 98.97972, 2.250523 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.706261, 2.23018 ], [ 99.600229, 2.30538 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.965466, 1.785726 ], [ 99.811725, 1.956657 ], [ 99.647692, 2.124166 ], [ 99.524631, 2.236975 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.766866, 1.850646 ], [ 99.581896, 1.888215 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.701511, 1.768566 ], [ 99.537243, 1.854011 ], [ 99.376392, 1.936037 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.362173, 1.758227 ], [ 99.26653, 1.871043 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.249452, 1.891555 ], [ 99.164023, 1.980438 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.133275, 2.014624 ], [ 99.047846, 2.103507 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.006835, 2.144529 ], [ 98.935076, 2.219738 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.556405, 1.365048 ], [ 99.392245, 1.488105 ], [ 99.279368, 1.566724 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.556396, 1.361628 ], [ 99.361467, 1.512034 ], [ 99.27593, 1.563303 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.465275, 0.66064 ], [ 99.36976, 0.817907 ], [ 99.229787, 1.009357 ], [ 99.106863, 1.170038 ], [ 99.02492, 1.279437 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.734518, 0.130704 ], [ 99.601145, 0.233253 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.577231, 0.260602 ], [ 99.491744, 0.328969 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.457539, 0.352896 ], [ 99.334428, 0.448609 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.313942, 0.475958 ], [ 99.218221, 0.561419 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.187463, 0.592186 ], [ 99.08149, 0.687903 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.050751, 0.725508 ], [ 98.948224, 0.828065 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.957678, 0.264112 ], [ 99.824266, 0.352983 ], [ 99.663601, 0.499977 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.809939, 0.137561 ], [ 99.734988, 0.294833 ], [ 99.660037, 0.452105 ], [ 99.56792, 0.599116 ], [ 99.472424, 0.763222 ], [ 99.387083, 0.882879 ], [ 99.288091, 1.023049 ], [ 99.236955, 1.118778 ], [ 99.196082, 1.207672 ], [ 99.172326, 1.289731 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 100.863392, 0.575489 ], [ 100.836052, 0.602837 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 100.781371, 0.657534 ], [ 100.316505, 1.0951 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 100.356787, -0.395728 ], [ 100.220066, -0.265825 ], [ 100.066295, -0.105152 ], [ 99.946749, 0.038432 ], [ 99.837485, 0.182019 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.861369, 0.144412 ], [ 99.806531, 0.144399 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 107.701259, -6.497521 ], [ 107.841673, -6.535101 ], [ 107.95126, -6.565849 ], [ 108.139471, -6.668385 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 107.841516, -6.58981 ], [ 107.797362, -6.449628 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 107.882625, -6.596639 ], [ 107.930872, -6.504305 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 109.272123, -7.297276 ], [ 109.152567, -7.157111 ], [ 109.108198, -7.092153 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 109.522506, -7.232248 ], [ 109.601032, -7.338229 ], [ 109.662587, -7.386086 ], [ 109.748144, -7.430517 ], [ 109.91248, -7.492026 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 109.812558, -7.676695 ], [ 109.456416, -7.57078 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 110.086639, -7.714242 ], [ 109.88793, -7.686935 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 110.558507, -8.100517 ], [ 110.692497, -7.987646 ], [ 110.829993, -7.84742 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.26087, -8.185833 ], [ 111.387878, -8.117416 ], [ 111.48405, -8.045587 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.732564, -7.436883 ], [ 111.777522, -7.296679 ], [ 111.811962, -7.238541 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.876356, -7.491558 ], [ 111.989645, -7.426563 ], [ 112.099419, -7.392344 ], [ 112.178268, -7.385486 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.17241, -8.233487 ], [ 112.251504, -8.141146 ], [ 112.289381, -8.079588 ], [ 112.296324, -8.048812 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.651789, -8.390663 ], [ 112.583654, -8.247066 ], [ 112.546227, -8.151333 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.59045, -8.267581 ], [ 112.624958, -8.185508 ], [ 112.686906, -8.09659 ], [ 112.738502, -8.03161 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 113.775757, -8.462201 ], [ 113.755438, -8.376723 ], [ 113.748779, -8.308337 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 114.12143, -8.633087 ], [ 114.217974, -8.431322 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 115.540964, -8.420749 ], [ 115.50718, -8.249789 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 117.419175, -8.413462 ], [ 117.370967, -8.492119 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 117.336566, -8.536579 ], [ 117.271152, -8.639175 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 117.247043, -8.680213 ], [ 117.188484, -8.782807 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 117.167783, -8.830683 ], [ 117.136809, -8.875142 ], [ 117.129886, -8.899079 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 117.342068, -9.008448 ], [ 117.342695, -8.789609 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 117.27736, -8.864851 ], [ 117.301499, -8.813555 ], [ 117.34956, -8.786188 ], [ 117.411311, -8.765658 ], [ 117.452577, -8.717777 ], [ 117.466355, -8.693838 ], [ 117.480221, -8.639125 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 118.357399, -8.717561 ], [ 118.463647, -8.717536 ], [ 118.542447, -8.727775 ], [ 118.658889, -8.758522 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 118.546306, -8.577323 ], [ 118.426456, -8.539738 ], [ 118.313431, -8.512411 ], [ 118.203785, -8.502179 ], [ 118.083818, -8.505627 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 118.899127, -8.645626 ], [ 118.823961, -8.563579 ], [ 118.731647, -8.484956 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.403534, -9.637118 ], [ 119.516667, -9.626833 ], [ 119.571553, -9.609723 ], [ 119.681239, -9.606277 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.680513, -9.85931 ], [ 119.828409, -9.678049 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.077469, -10.074634 ], [ 120.160108, -9.94126 ], [ 120.20487, -9.869443 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.291076, -8.491423 ], [ 120.503944, -8.361437 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.463041, -8.282802 ], [ 120.514128, -8.395628 ], [ 120.578974, -8.491355 ], [ 120.643898, -8.559726 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.791195, -8.587046 ], [ 120.84571, -8.699872 ], [ 120.903701, -8.7956 ], [ 120.951527, -8.850298 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.095819, -8.730586 ], [ 121.209088, -8.67243 ], [ 121.32934, -8.569821 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.72607, -8.863791 ], [ 121.705928, -8.716763 ], [ 121.689016, -8.638122 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.757299, -8.730428 ], [ 121.874015, -8.665433 ], [ 121.994227, -8.576501 ], [ 122.056116, -8.508099 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.63937, -8.022651 ], [ 121.525914, -8.019619 ], [ 121.512567, -8.019262 ], [ 121.468465, -8.007371 ], [ 121.385853, -7.985098 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.468051, -8.005595 ], [ 121.468465, -8.007371 ], [ 121.481594, -8.063721 ], [ 121.525914, -8.019619 ], [ 121.526277, -8.019258 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.327637, -7.968015 ], [ 121.218079, -7.927009 ], [ 121.1633, -7.906506 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.200952, -7.923594 ], [ 121.214485, -7.985139 ], [ 121.269431, -7.947513 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.108541, -7.879164 ], [ 121.037317, -7.843602 ], [ 121.012712, -7.831316 ], [ 120.933961, -7.80398 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.975041, -7.821067 ], [ 120.988583, -7.879193 ], [ 121.037317, -7.843602 ], [ 121.040102, -7.841568 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.855181, -7.786902 ], [ 120.786096, -7.772399 ], [ 120.72502, -7.759578 ], [ 120.670212, -7.749333 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.72502, -7.759578 ], [ 120.7557, -7.8177 ], [ 120.786096, -7.772399 ], [ 120.79012, -7.766402 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.605111, -7.74251 ], [ 120.542374, -7.737033 ], [ 120.409801, -7.72546 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.474901, -7.732283 ], [ 120.5056, -7.783566 ], [ 120.542374, -7.737033 ], [ 120.543439, -7.735686 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.344691, -7.722056 ], [ 120.149341, -7.718683 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.19046, -7.722093 ], [ 120.224586, -7.773375 ], [ 120.259007, -7.722077 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.077367, -7.718701 ], [ 119.861434, -7.722171 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.936835, -7.722153 ], [ 119.970982, -7.766597 ], [ 120.005383, -7.722137 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.782585, -7.729029 ], [ 119.549475, -7.746181 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.628305, -7.746162 ], [ 119.665849, -7.800863 ], [ 119.696881, -7.735888 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 118.380325, -7.893492 ], [ 118.256881, -7.914037 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.470627, -7.753039 ], [ 119.353541, -7.767831 ], [ 119.172339, -7.790723 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.295763, -7.777016 ], [ 119.326472, -7.824879 ], [ 119.353541, -7.767831 ], [ 119.354057, -7.766744 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.0935, -7.794161 ], [ 118.947716, -7.81464 ], [ 118.885633, -7.823361 ], [ 118.874061, -7.824987 ], [ 118.771191, -7.842108 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 118.884352, -7.821565 ], [ 118.885633, -7.823361 ], [ 118.918489, -7.869428 ], [ 118.947716, -7.81464 ], [ 118.949502, -7.811292 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 118.695769, -7.848965 ], [ 118.597918, -7.862929 ], [ 118.455756, -7.883216 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 118.534615, -7.872939 ], [ 118.568751, -7.920802 ], [ 118.597918, -7.862929 ], [ 118.599774, -7.859246 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.359751, -10.467078 ], [ 123.446023, -10.261896 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.466744, -10.207181 ], [ 123.518605, -10.049879 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.529025, -10.002005 ], [ 123.580944, -9.824187 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.591364, -9.776313 ], [ 123.626127, -9.605337 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.63308, -9.571142 ], [ 123.636694, -9.506174 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.643784, -9.424107 ], [ 123.647495, -9.324945 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.919097, -10.22759 ], [ 123.730984, -10.09086 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.769332, -9.865174 ], [ 123.704663, -9.707899 ], [ 123.656885, -9.636104 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.797934, -10.648199 ], [ 123.859881, -10.559281 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.88397, -10.525082 ], [ 123.956209, -10.432742 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.970007, -10.401964 ], [ 124.025109, -10.309629 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.231251, -10.135193 ], [ 124.176668, -10.046303 ], [ 124.128871, -9.981346 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.014134, -9.355632 ], [ 124.078999, -9.44452 ], [ 124.154176, -9.523147 ], [ 124.188312, -9.57101 ], [ 124.212147, -9.625714 ], [ 124.239399, -9.683836 ], [ 124.256359, -9.745381 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.3615, -10.131742 ], [ 124.471372, -10.063329 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.310354, -10.039432 ], [ 124.362047, -10.015277 ], [ 124.529999, -9.936799 ], [ 124.691267, -9.836712 ], [ 124.73944, -9.806814 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.725711, -9.813656 ], [ 124.684681, -9.779472 ], [ 124.691267, -9.836712 ], [ 124.691369, -9.837599 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.57808, -9.902594 ], [ 124.526768, -9.868413 ], [ 124.519717, -9.936802 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.427051, -9.981275 ], [ 124.365417, -9.960774 ], [ 124.362047, -10.015277 ], [ 124.361823, -10.018904 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.944431, -9.759132 ], [ 124.050688, -9.755688 ], [ 124.122683, -9.748832 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.006133, -9.755698 ], [ 124.026785, -9.724919 ], [ 124.043834, -9.755689 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.920596, -9.704428 ], [ 124.00628, -9.704408 ], [ 124.043981, -9.704399 ], [ 124.053341, -9.703063 ], [ 124.139986, -9.690699 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.00628, -9.704408 ], [ 124.023544, -9.659952 ], [ 124.053341, -9.703063 ], [ 124.054263, -9.704397 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.2837, -9.772729 ], [ 124.313664, -10.080463 ], [ 124.320323, -10.148849 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.424878, -9.543599 ], [ 124.273094, -9.88557 ], [ 124.183513, -10.04972 ], [ 124.062928, -10.268588 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.019088, -10.018985 ], [ 124.152892, -9.971082 ], [ 124.218129, -9.930035 ], [ 124.290329, -9.851372 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.332643, -9.437621 ], [ 124.38046, -9.495738 ], [ 124.414508, -9.574375 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.407585, -9.598312 ], [ 124.534397, -9.598282 ], [ 124.616673, -9.591424 ], [ 124.729893, -9.550365 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.720483, -9.246045 ], [ 124.723303, -9.458044 ], [ 124.733134, -9.615332 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.748311, -10.299198 ], [ 124.731449, -10.203461 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.728149, -10.15901 ], [ 124.71818, -10.049593 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.714871, -10.008561 ], [ 124.728923, -9.888881 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.518064, -9.317899 ], [ 124.415262, -9.311085 ], [ 124.305744, -9.256401 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.367358, -9.283742 ], [ 124.398312, -9.246121 ], [ 124.41869, -9.311084 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.452434, -9.495721 ], [ 124.556, -9.235826 ], [ 124.652642, -8.999867 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.669935, -8.945154 ], [ 124.721689, -8.825464 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.735555, -8.770751 ], [ 124.766578, -8.709195 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.729011, -9.858107 ], [ 124.781186, -9.591385 ], [ 124.83671, -9.352017 ], [ 124.912641, -9.167354 ], [ 124.967959, -8.999792 ], [ 125.030288, -8.77752 ], [ 125.08589, -8.510797 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.85747, -9.283625 ], [ 124.830178, -9.23918 ], [ 124.833851, -9.153695 ], [ 124.861554, -9.054527 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.961084, -9.006633 ], [ 124.879727, -9.049045 ], [ 124.737973, -9.122944 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.827231, -9.071632 ], [ 124.834262, -9.010082 ], [ 124.879727, -9.049045 ], [ 124.882128, -9.051103 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.36468, -9.297181 ], [ 125.450805, -9.14329 ], [ 125.584981, -8.965452 ], [ 125.722536, -8.804709 ], [ 125.904725, -8.616602 ], [ 125.997538, -8.520838 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.829117, -8.688426 ], [ 125.7435, -8.728399 ], [ 125.62537, -8.783551 ], [ 125.565041, -8.811717 ], [ 125.557994, -8.815007 ], [ 125.379763, -8.909739 ], [ 125.30055, -8.951842 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.794814, -8.698692 ], [ 125.753774, -8.667928 ], [ 125.7435, -8.728399 ], [ 125.743316, -8.729479 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.626629, -8.784216 ], [ 125.62537, -8.783551 ], [ 125.568452, -8.753456 ], [ 125.565041, -8.811717 ], [ 125.564848, -8.815005 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.420713, -8.880007 ], [ 125.383081, -8.856081 ], [ 125.379763, -8.909739 ], [ 125.379487, -8.91421 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.01503, -9.317781 ], [ 125.147227, -9.220262 ], [ 125.2005, -9.180963 ], [ 125.33781, -9.105704 ], [ 125.406655, -9.062059 ], [ 125.413349, -9.057815 ], [ 125.455857, -9.034709 ], [ 125.564388, -8.975715 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.100901, -9.252793 ], [ 125.097659, -9.187826 ], [ 125.145554, -9.218588 ], [ 125.147227, -9.220262 ], [ 125.148972, -9.222007 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.406474, -9.064655 ], [ 125.406655, -9.062059 ], [ 125.410049, -9.013364 ], [ 125.455857, -9.034709 ], [ 125.461391, -9.037288 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.248571, -9.150177 ], [ 125.248718, -9.098887 ], [ 125.30005, -9.126229 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.57466, -8.979132 ], [ 125.650013, -8.99621 ], [ 125.739163, -8.982512 ], [ 125.807415, -8.960849 ], [ 125.814634, -8.958558 ], [ 125.845842, -8.916459 ], [ 125.862803, -8.893579 ], [ 125.897302, -8.814926 ], [ 125.904255, -8.780731 ], [ 125.914684, -8.729438 ], [ 125.912683, -8.713094 ], [ 125.901288, -8.620022 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.656877, -8.992789 ], [ 125.677579, -8.944914 ], [ 125.701453, -8.98594 ], [ 125.70488, -8.985939 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.807769, -8.961979 ], [ 125.807415, -8.960849 ], [ 125.787391, -8.897016 ], [ 125.845842, -8.916459 ], [ 125.849025, -8.917518 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.904255, -8.780731 ], [ 125.849544, -8.736292 ], [ 125.912683, -8.713094 ], [ 125.914733, -8.712341 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.072117, -8.808045 ], [ 126.113892, -8.582358 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.189323, -8.572082 ], [ 125.904637, -8.647376 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.062433, -8.599467 ], [ 126.079805, -8.517399 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.170981, -8.992667 ], [ 126.339607, -8.753272 ], [ 126.439383, -8.619894 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.46688, -8.592532 ], [ 126.563219, -8.462574 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.627437, -8.777139 ], [ 126.744526, -8.582208 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.665295, -8.72242 ], [ 126.569495, -8.664314 ], [ 126.53529, -8.640387 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.207748, -8.397453 ], [ 127.125286, -8.469279 ], [ 127.001695, -8.541114 ], [ 126.936497, -8.568485 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.926822, -8.356487 ], [ 126.820369, -8.428319 ], [ 126.71742, -8.472795 ], [ 126.607676, -8.496757 ], [ 126.52541, -8.500196 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.445327, -8.387853 ], [ 124.576165, -8.179241 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.251428, -7.878416 ], [ 124.35088, -7.857876 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.358631, -7.820023 ], [ 125.519874, -7.765275 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.422874, -7.85102 ], [ 124.495352, -7.84851 ], [ 124.522278, -7.847577 ], [ 124.555199, -7.859405 ], [ 124.607873, -7.878331 ], [ 124.686693, -7.881731 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.494859, -7.847583 ], [ 124.495352, -7.84851 ], [ 124.522131, -7.898867 ], [ 124.555199, -7.859405 ], [ 124.556522, -7.857827 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.765532, -7.878293 ], [ 124.855269, -7.879608 ], [ 124.995155, -7.881658 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.916326, -7.881676 ], [ 124.881895, -7.936394 ], [ 124.855269, -7.879608 ], [ 124.854643, -7.878272 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.05342, -7.881644 ], [ 125.11987, -7.872908 ], [ 125.183709, -7.864516 ], [ 125.290015, -7.843975 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.176844, -7.867937 ], [ 125.156143, -7.915813 ], [ 125.11987, -7.872908 ], [ 125.118569, -7.87137 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.619571, -7.659251 ], [ 125.643861, -7.64916 ], [ 125.743103, -7.607931 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.705333, -7.631876 ], [ 125.691487, -7.67975 ], [ 125.643861, -7.64916 ], [ 125.643592, -7.648987 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.808291, -7.58398 ], [ 125.870054, -7.559346 ], [ 125.945542, -7.529238 ], [ 126.021023, -7.501865 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.928386, -7.536081 ], [ 125.917928, -7.597632 ], [ 125.870054, -7.559346 ], [ 125.866635, -7.556612 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.093076, -7.474493 ], [ 126.162486, -7.454708 ], [ 126.237142, -7.433427 ], [ 126.326381, -7.388954 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.22685, -7.436848 ], [ 126.209537, -7.498401 ], [ 126.162486, -7.454708 ], [ 126.161682, -7.453961 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.384695, -7.371843 ], [ 126.487594, -7.344464 ], [ 126.58359, -7.334183 ], [ 126.624698, -7.341012 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.525295, -7.344455 ], [ 126.504584, -7.39575 ], [ 126.463583, -7.351308 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.238352, -7.286156 ], [ 127.34133, -7.231422 ], [ 127.3688, -7.207643 ], [ 127.420355, -7.163016 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.306997, -7.251946 ], [ 127.361766, -7.275868 ], [ 127.3688, -7.207643 ], [ 127.368817, -7.20748 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.967336, -7.375124 ], [ 127.083974, -7.337483 ], [ 127.176601, -7.306687 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.097693, -7.33406 ], [ 127.08039, -7.392193 ], [ 127.032515, -7.354592 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.672642, -7.354678 ], [ 126.766014, -7.367081 ], [ 126.826814, -7.375157 ], [ 126.905644, -7.375138 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.826805, -7.378576 ], [ 126.792374, -7.433294 ], [ 126.766014, -7.367081 ], [ 126.765151, -7.364914 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 131.58713, -7.473184 ], [ 131.532841, -7.281713 ], [ 131.519367, -7.199652 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 131.505177, -7.367204 ], [ 131.545855, -7.524484 ], [ 131.559202, -7.650997 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 131.418504, -7.712579 ], [ 131.411962, -7.603161 ], [ 131.401945, -7.510841 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 131.171459, -7.80838 ], [ 131.316104, -7.565571 ], [ 131.419483, -7.370643 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 109.017679, -7.160775 ], [ 108.933524, -7.141027 ], [ 108.907769, -7.117418 ], [ 108.874237, -7.086679 ], [ 108.868376, -7.083235 ], [ 108.790168, -7.037279 ], [ 108.696206, -6.98294 ], [ 108.635763, -6.970251 ], [ 108.602145, -6.963194 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 108.635575, -6.969169 ], [ 108.635763, -6.970251 ], [ 108.645691, -7.027296 ], [ 108.700636, -6.98967 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 108.868312, -7.081953 ], [ 108.868376, -7.083235 ], [ 108.871553, -7.146919 ], [ 108.907769, -7.117418 ], [ 108.909343, -7.116136 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.763724, -7.327456 ], [ 111.601397, -7.29306 ], [ 111.489702, -7.269392 ], [ 111.468448, -7.263076 ], [ 111.328753, -7.22156 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.393814, -7.24206 ], [ 111.417639, -7.300184 ], [ 111.468448, -7.263076 ], [ 111.469157, -7.262558 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.599328, -7.286463 ], [ 111.601397, -7.29306 ], [ 111.619706, -7.351426 ], [ 111.664389, -7.306964 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.068225, -7.238719 ], [ 110.94157, -7.184039 ], [ 110.921321, -7.181859 ], [ 110.814797, -7.170392 ], [ 110.758032, -7.170405 ], [ 110.696981, -7.17042 ], [ 110.657138, -7.170429 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 110.694849, -7.167001 ], [ 110.696981, -7.17042 ], [ 110.728966, -7.221703 ], [ 110.758032, -7.170405 ], [ 110.759969, -7.166986 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 110.921015, -7.180625 ], [ 110.921321, -7.181859 ], [ 110.934568, -7.235331 ], [ 110.972377, -7.197709 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 110.952548, -6.941262 ], [ 111.058775, -6.935004 ], [ 111.185647, -6.92753 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.062243, -6.934398 ], [ 111.065221, -6.897154 ], [ 111.065797, -6.889945 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.072603, -6.90704 ], [ 111.065778, -6.896784 ], [ 111.065221, -6.897154 ], [ 111.045174, -6.910466 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.058815, -6.934398 ], [ 111.058775, -6.935004 ], [ 111.055231, -6.989109 ], [ 111.079272, -6.972006 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.055241, -6.98569 ], [ 111.031298, -6.968599 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.271654, -6.81467 ], [ 111.573105, -6.869308 ], [ 111.655518, -6.881943 ], [ 111.706713, -6.889792 ], [ 111.888295, -6.913685 ], [ 112.059633, -6.923902 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.655323, -6.882966 ], [ 111.655518, -6.881943 ], [ 111.665761, -6.828254 ], [ 111.679402, -6.852186 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.665761, -6.828254 ], [ 111.648576, -6.845355 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.65875, -6.882965 ], [ 111.641456, -6.937679 ], [ 111.665497, -6.920576 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.641466, -6.93426 ], [ 111.631233, -6.917165 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.047367, -7.341304 ], [ 111.187859, -7.351529 ], [ 111.335206, -7.361752 ], [ 111.444882, -7.361725 ], [ 111.578509, -7.375371 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.328371, -7.354915 ], [ 111.325061, -7.313883 ], [ 111.342149, -7.330976 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.321634, -7.313884 ], [ 111.311293, -7.334402 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.328352, -7.361753 ], [ 111.335069, -7.409623 ], [ 111.34542, -7.385685 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.331642, -7.409623 ], [ 111.317991, -7.389111 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.117389, -7.101694 ], [ 112.210071, -7.09869 ], [ 112.223647, -7.09825 ], [ 112.302495, -7.091392 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.209947, -7.094834 ], [ 112.20319, -7.060642 ], [ 112.220298, -7.070896 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.20319, -7.060642 ], [ 112.192849, -7.08116 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.209937, -7.098253 ], [ 112.210071, -7.09869 ], [ 112.222284, -7.138661 ], [ 112.223519, -7.142701 ], [ 112.23387, -7.118763 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.223529, -7.139282 ], [ 112.222284, -7.138661 ], [ 112.202994, -7.129029 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.38766, -7.272598 ], [ 112.51788, -7.279405 ], [ 112.620701, -7.279381 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.497247, -7.303346 ], [ 112.51788, -7.279405 ], [ 112.517743, -7.327276 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.521307, -7.279405 ], [ 112.531531, -7.299918 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.535075, -7.258885 ], [ 112.51789, -7.275986 ], [ 112.518007, -7.234954 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.51789, -7.275986 ], [ 112.500821, -7.252055 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.959279, -7.259022 ], [ 112.11682, -7.300017 ], [ 112.117732, -7.300204 ], [ 112.233282, -7.323925 ], [ 112.373754, -7.340988 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.130677, -7.248723 ], [ 112.123695, -7.293177 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.102993, -7.341053 ], [ 112.117732, -7.300204 ], [ 112.120267, -7.293178 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.188428, -7.153206 ], [ 111.184824, -7.214755 ], [ 111.208894, -7.187395 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.315211, -7.163434 ], [ 111.06849, -7.146396 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.188428, -7.153206 ], [ 111.188604, -7.091658 ], [ 111.209109, -7.112169 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.185177, -7.091659 ], [ 111.171399, -7.115597 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.184834, -7.211336 ], [ 111.167766, -7.187405 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 113.478383, -6.985112 ], [ 113.464624, -7.002212 ], [ 113.444099, -6.98854 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.981514, -6.951037 ], [ 113.461666, -6.964323 ], [ 113.471587, -6.964598 ], [ 113.646402, -6.957717 ], [ 113.961797, -6.930287 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 113.458024, -6.913311 ], [ 113.461666, -6.964323 ], [ 113.464615, -7.005632 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 113.444286, -6.923572 ], [ 113.444266, -6.930411 ], [ 113.458024, -6.913311 ], [ 113.481957, -6.933821 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 113.066924, -7.046759 ], [ 113.299925, -7.067219 ], [ 113.330771, -7.067212 ], [ 113.478148, -7.067177 ], [ 113.601533, -7.067147 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 113.334306, -7.029598 ], [ 113.330771, -7.067212 ], [ 113.32786, -7.098188 ], [ 113.327236, -7.104826 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 113.31715, -7.036441 ], [ 113.334316, -7.026179 ], [ 113.351414, -7.039852 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 113.340995, -7.087726 ], [ 113.32786, -7.098188 ], [ 113.323819, -7.101407 ], [ 113.313576, -7.087732 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 107.986208, -2.743005 ], [ 107.814262, -2.944788 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 107.59118, -3.050841 ], [ 107.821901, -2.671238 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 106.056508, -2.777658 ], [ 106.440754, -2.644212 ], [ 106.656834, -2.589451 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 105.654931, -1.782722 ], [ 105.725926, -2.124641 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 105.359669, -1.960599 ], [ 105.500759, -1.762243 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 105.030924, -3.058289 ], [ 105.12875, -3.089665 ], [ 105.22268, -3.119792 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 105.137192, -3.051425 ], [ 105.12875, -3.089665 ], [ 105.11983, -3.130075 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 105.147425, -3.06852 ], [ 105.137192, -3.051425 ], [ 105.120016, -3.065107 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 105.137015, -3.112974 ], [ 105.11983, -3.130075 ], [ 105.106189, -3.106142 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 104.741301, -3.660164 ], [ 104.794526, -3.656934 ], [ 104.854424, -3.653299 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 104.792829, -3.61912 ], [ 104.794526, -3.656934 ], [ 104.795891, -3.68737 ], [ 104.796051, -3.690926 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 104.77909, -3.629381 ], [ 104.792849, -3.612281 ], [ 104.806529, -3.622536 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 104.806382, -3.673826 ], [ 104.796061, -3.687506 ], [ 104.795891, -3.68737 ], [ 104.778963, -3.673833 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.495409, -3.079171 ], [ 103.803146, -3.33213 ], [ 103.821859, -3.342267 ], [ 104.005046, -3.441501 ], [ 104.385032, -3.598701 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.858101, -3.291085 ], [ 103.821859, -3.342267 ], [ 103.797118, -3.377208 ], [ 103.792717, -3.383423 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.830673, -3.294511 ], [ 103.858101, -3.291085 ], [ 103.864887, -3.315019 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.816718, -3.379998 ], [ 103.797118, -3.377208 ], [ 103.792736, -3.376584 ], [ 103.782533, -3.349232 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.081924, -2.651851 ], [ 103.184313, -2.802278 ], [ 103.229402, -2.854452 ], [ 103.293626, -2.928768 ], [ 103.433775, -3.05867 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.190923, -2.88776 ], [ 103.229402, -2.854452 ], [ 103.269948, -2.819354 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.266442, -2.84671 ], [ 103.269948, -2.819354 ], [ 103.242549, -2.812522 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.184147, -2.860407 ], [ 103.190913, -2.89118 ], [ 103.22174, -2.898011 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.996597, -2.310679 ], [ 103.10031, -2.419378 ], [ 103.173011, -2.481163 ], [ 103.199141, -2.503369 ], [ 103.302939, -2.582416 ], [ 103.362269, -2.621938 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.199042, -2.446662 ], [ 103.173011, -2.481163 ], [ 103.147435, -2.515061 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.178478, -2.446667 ], [ 103.199042, -2.446662 ], [ 103.205828, -2.470596 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.171437, -2.511636 ], [ 103.147435, -2.515061 ], [ 103.144077, -2.491127 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.963426, -2.142396 ], [ 103.154878, -2.309898 ], [ 103.260852, -2.405615 ], [ 103.329571, -2.462047 ], [ 103.356592, -2.484237 ], [ 103.469391, -2.59021 ], [ 103.575395, -2.675669 ], [ 103.691641, -2.774802 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.363633, -2.419268 ], [ 103.329571, -2.462047 ], [ 103.301718, -2.497027 ], [ 103.298278, -2.501348 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.366963, -2.453461 ], [ 103.363643, -2.415848 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.329134, -2.497921 ], [ 103.301706, -2.501347 ], [ 103.301718, -2.497027 ], [ 103.301794, -2.470573 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.339622, -2.426112 ], [ 103.360196, -2.422688 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.114661, -1.991908 ], [ 103.306025, -2.190185 ], [ 103.494079, -2.34743 ], [ 103.54195, -2.386383 ], [ 103.544059, -2.388099 ], [ 103.544768, -2.388676 ], [ 103.544815, -2.388715 ], [ 103.545424, -2.38921 ], [ 103.641112, -2.467073 ], [ 103.750523, -2.559369 ], [ 103.921558, -2.675586 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.576335, -2.347411 ], [ 103.545463, -2.387865 ], [ 103.544875, -2.388636 ], [ 103.544815, -2.388715 ], [ 103.500649, -2.44659 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.583092, -2.381603 ], [ 103.545463, -2.387865 ], [ 103.544059, -2.388099 ], [ 103.541944, -2.388451 ], [ 103.54195, -2.386383 ], [ 103.542042, -2.354258 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.517923, -2.398715 ], [ 103.544768, -2.388676 ], [ 103.544875, -2.388636 ], [ 103.545372, -2.38845 ], [ 103.545424, -2.38921 ], [ 103.548662, -2.436321 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.214476, -1.844852 ], [ 103.334061, -1.974759 ], [ 103.467415, -2.084147 ], [ 103.624789, -2.18327 ], [ 103.642217, -2.194689 ], [ 103.833466, -2.319995 ], [ 103.980626, -2.395185 ], [ 104.062746, -2.443037 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.669442, -2.149066 ], [ 103.642217, -2.194689 ], [ 103.619483, -2.232783 ], [ 103.61434, -2.241402 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.648849, -2.159329 ], [ 103.669452, -2.145647 ], [ 103.676209, -2.179839 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.611011, -2.207209 ], [ 103.619483, -2.232783 ], [ 103.621205, -2.237981 ], [ 103.648653, -2.227716 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.313561, -1.677519 ], [ 102.2414, -1.742504 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.98574, -1.257016 ], [ 102.064354, -1.332223 ], [ 102.109751, -1.367737 ], [ 102.221659, -1.455283 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.150077, -1.318526 ], [ 102.146638, -1.322723 ], [ 102.109751, -1.367737 ], [ 102.080015, -1.404026 ], [ 102.07441, -1.410866 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.129513, -1.318531 ], [ 102.14664, -1.321946 ], [ 102.146638, -1.322723 ], [ 102.146571, -1.345881 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.077916, -1.38351 ], [ 102.077857, -1.404027 ], [ 102.080015, -1.404026 ], [ 102.105276, -1.40402 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.169886, -1.581811 ], [ 102.409047, -1.845044 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.293007, -1.674104 ], [ 102.313561, -1.677519 ], [ 102.320337, -1.704872 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.268829, -1.739078 ], [ 102.248265, -1.739083 ], [ 102.238061, -1.71173 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.409753, -1.598851 ], [ 102.585806, -1.721108 ], [ 102.611565, -1.738996 ], [ 102.724491, -1.800517 ], [ 102.799805, -1.831274 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.611731, -1.680867 ], [ 102.61116, -1.681753 ], [ 102.585806, -1.721108 ], [ 102.560194, -1.760861 ], [ 102.556649, -1.766364 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.584293, -1.687712 ], [ 102.61116, -1.681753 ], [ 102.615159, -1.680866 ], [ 102.625362, -1.708219 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.587534, -1.752679 ], [ 102.560194, -1.760861 ], [ 102.553231, -1.762945 ], [ 102.553329, -1.728752 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.136803, -1.441387 ], [ 103.203153, -1.476469 ], [ 103.311334, -1.533668 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.222517, -1.431109 ], [ 103.221417, -1.433686 ], [ 103.203153, -1.476469 ], [ 103.187826, -1.512372 ], [ 103.184561, -1.520021 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.201913, -1.444791 ], [ 103.221417, -1.433686 ], [ 103.225944, -1.431108 ], [ 103.229293, -1.458462 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.212019, -1.506337 ], [ 103.187826, -1.512372 ], [ 103.18458, -1.513182 ], [ 103.181231, -1.485828 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.274436, -1.25329 ], [ 103.167379, -1.234045 ], [ 103.165443, -1.233697 ], [ 103.165024, -1.233622 ], [ 103.163972, -1.233433 ], [ 103.161023, -1.232903 ], [ 103.065475, -1.215727 ], [ 102.970435, -1.17411 ], [ 102.965034, -1.171746 ], [ 102.963515, -1.171081 ], [ 102.962651, -1.170702 ], [ 102.960266, -1.169658 ], [ 102.870361, -1.13029 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.182074, -1.191764 ], [ 103.165443, -1.233697 ], [ 103.165196, -1.23432 ], [ 103.164957, -1.234924 ], [ 103.144099, -1.287515 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.983454, -1.133682 ], [ 102.968159, -1.165288 ], [ 102.965667, -1.170436 ], [ 102.965034, -1.171746 ], [ 102.942081, -1.219176 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.997085, -1.161034 ], [ 102.970033, -1.16913 ], [ 102.965667, -1.170436 ], [ 102.963515, -1.171081 ], [ 102.962782, -1.1713 ], [ 102.962651, -1.170702 ], [ 102.962187, -1.168594 ], [ 102.956016, -1.140527 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 102.938761, -1.181564 ], [ 102.960266, -1.169658 ], [ 102.962187, -1.168594 ], [ 102.968159, -1.165288 ], [ 102.969656, -1.164459 ], [ 102.970033, -1.16913 ], [ 102.970435, -1.17411 ], [ 102.972966, -1.205491 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.158044, -1.205447 ], [ 103.161023, -1.232903 ], [ 103.161297, -1.235431 ], [ 103.161383, -1.23622 ], [ 103.164957, -1.234924 ], [ 103.165314, -1.234794 ], [ 103.167379, -1.234045 ], [ 103.199123, -1.222534 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 103.137342, -1.253323 ], [ 103.161297, -1.235431 ], [ 103.163972, -1.233433 ], [ 103.16482, -1.2328 ], [ 103.165024, -1.233622 ], [ 103.165196, -1.23432 ], [ 103.165314, -1.234794 ], [ 103.174984, -1.27383 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.293397, -0.067247 ], [ 101.440254, -0.248438 ], [ 101.445363, -0.254051 ], [ 101.6145, -0.43988 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.491762, -0.214232 ], [ 101.491386, -0.214554 ], [ 101.445363, -0.254051 ], [ 101.396109, -0.296319 ], [ 101.392124, -0.299739 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.460906, -0.217658 ], [ 101.491772, -0.210812 ], [ 101.491386, -0.214554 ], [ 101.488247, -0.245007 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 101.402494, -0.268963 ], [ 101.392134, -0.29632 ], [ 101.396109, -0.296319 ], [ 101.433262, -0.29631 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 100.157525, -2.953451 ], [ 100.263471, -3.066213 ], [ 100.318121, -3.12438 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 100.225876, -3.021821 ], [ 100.284161, -3.014969 ], [ 100.263471, -3.066213 ], [ 100.26345, -3.066264 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 100.027873, -2.74832 ], [ 100.089556, -2.751725 ], [ 100.056387, -2.804439 ], [ 100.055126, -2.806443 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 100.014223, -2.727808 ], [ 100.056387, -2.804439 ], [ 100.068776, -2.826956 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.55676, -2.098756 ], [ 99.616541, -2.173043 ], [ 99.754841, -2.344902 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.669471, -2.235503 ], [ 99.724318, -2.232071 ], [ 99.71387, -2.290202 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 99.577256, -2.122686 ], [ 99.628676, -2.119255 ], [ 99.616541, -2.173043 ], [ 99.61479, -2.180806 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 98.642323, -1.268071 ], [ 98.706781, -1.377515 ], [ 98.725887, -1.409954 ], [ 98.787324, -1.498843 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 98.705416, -1.377475 ], [ 98.706781, -1.377515 ], [ 98.763676, -1.379171 ], [ 98.742955, -1.433886 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 98.821485, -1.538157 ], [ 98.846353, -1.575712 ], [ 98.883698, -1.632111 ], [ 98.935807, -1.710807 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 98.845369, -1.575764 ], [ 98.846353, -1.575712 ], [ 98.910499, -1.57233 ], [ 98.883698, -1.632111 ], [ 98.882903, -1.633884 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 98.692461, -1.114188 ], [ 98.842638, -1.332991 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 98.767554, -1.22188 ], [ 98.815527, -1.225288 ], [ 98.798268, -1.268034 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 98.871657, -1.372307 ], [ 98.907577, -1.419992 ], [ 99.023597, -1.574012 ], [ 99.028896, -1.582158 ], [ 99.122554, -1.72615 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 98.873371, -1.372306 ], [ 98.926495, -1.372294 ], [ 98.907577, -1.419992 ], [ 98.907507, -1.420169 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 98.98946, -1.52615 ], [ 99.052857, -1.529554 ], [ 99.028896, -1.582158 ], [ 99.028713, -1.582559 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 97.535272, 1.118373 ], [ 97.571271, 1.058531 ], [ 97.6052, 1.002132 ], [ 97.707614, 0.860253 ], [ 97.830602, 0.721798 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 97.571088, 1.058543 ], [ 97.571271, 1.058531 ], [ 97.624202, 1.055136 ], [ 97.601802, 1.012389 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 97.663235, 0.921791 ], [ 97.723214, 0.921805 ], [ 97.707614, 0.860253 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 97.541779, 0.996987 ], [ 97.595707, 0.921522 ], [ 97.643168, 0.855108 ], [ 97.666378, 0.82263 ], [ 97.671702, 0.816454 ], [ 97.711947, 0.76977 ], [ 97.816682, 0.648279 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 97.563969, 0.966219 ], [ 97.610238, 0.96623 ], [ 97.595707, 0.921522 ], [ 97.594678, 0.918355 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 97.64248, 0.855108 ], [ 97.643168, 0.855108 ], [ 97.683608, 0.855118 ], [ 97.671702, 0.816454 ], [ 97.671499, 0.815793 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 97.710782, 0.769641 ], [ 97.711947, 0.76977 ], [ 97.757066, 0.774781 ], [ 97.744952, 0.733746 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 95.691034, 2.800255 ], [ 95.862102, 2.695815 ], [ 95.875788, 2.68746 ], [ 95.974996, 2.622516 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 95.810796, 2.731896 ], [ 95.862255, 2.749005 ], [ 95.862102, 2.695815 ], [ 95.862098, 2.694296 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 109.262506, 1.305812 ], [ 109.590856, 1.069955 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 109.439906, 1.018629 ], [ 109.675795, 0.810105 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 110.010706, 0.471669 ], [ 110.258564, 0.851276 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 110.069226, 0.560586 ], [ 110.171106, 0.232352 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 109.303896, 0.201371 ], [ 109.266391, 0.269749 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 109.198138, 0.372314 ], [ 109.146993, 0.464624 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 110.379038, -0.164243 ], [ 110.422918, -0.400168 ], [ 110.460354, -0.492482 ], [ 110.52517, -0.598466 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 110.607613, -0.533479 ], [ 110.522135, -0.461693 ], [ 110.447017, -0.362549 ], [ 110.412851, -0.324945 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 110.752904, -0.064993 ], [ 110.875927, -0.19148 ], [ 110.985357, -0.276937 ], [ 111.115352, -0.36239 ], [ 111.228298, -0.417073 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.111934, -0.358972 ], [ 111.093357, -0.861621 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.093543, -0.796653 ], [ 110.960229, -0.673588 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 110.949976, -0.663333 ], [ 110.929481, -0.639402 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.399813, -0.365742 ], [ 111.694477, -0.396446 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.746338, -0.239143 ], [ 111.807472, -0.434032 ], [ 111.837946, -0.56396 ], [ 111.857981, -0.7486 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 110.964492, 0.813831 ], [ 111.121876, 0.718127 ], [ 111.251968, 0.666867 ], [ 111.430044, 0.61562 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.409411, 0.591679 ], [ 111.539514, 0.543839 ], [ 111.703919, 0.506266 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.107245, 0.396704 ], [ 111.258343, 0.499321 ], [ 111.375098, 0.577994 ], [ 111.529575, 0.663514 ], [ 111.738996, 0.786661 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.789133, 0.342157 ], [ 111.97986, 0.272662 ], [ 112.004831, 0.263563 ], [ 112.17944, 0.198637 ], [ 112.223789, 0.187403 ], [ 112.395206, 0.143979 ], [ 112.470859, 0.130671 ], [ 112.521207, 0.121814 ], [ 112.569914, 0.113246 ], [ 112.754952, 0.099613 ], [ 112.967438, 0.096244 ], [ 113.183401, 0.109973 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.929517, 0.294319 ], [ 111.970734, 0.325103 ], [ 111.97986, 0.272662 ], [ 111.980849, 0.266977 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.179459, 0.205476 ], [ 112.220666, 0.232841 ], [ 112.223789, 0.187403 ], [ 112.223956, 0.18497 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.470569, 0.130319 ], [ 112.470859, 0.130671 ], [ 112.501523, 0.16794 ], [ 112.521207, 0.121814 ], [ 112.52195, 0.120074 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.73098, 0.106446 ], [ 112.765351, 0.140648 ], [ 112.778943, 0.099619 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 113.001721, 0.099672 ], [ 113.025831, 0.14071 ], [ 113.053142, 0.103103 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.186221, 0.448013 ], [ 111.374736, 0.451477 ], [ 111.429239, 0.438882 ], [ 111.655593, 0.386577 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.361036, 0.454894 ], [ 111.412574, 0.499357 ], [ 111.429239, 0.438882 ], [ 111.429534, 0.437813 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.830692, 0.492618 ], [ 111.947232, 0.496065 ], [ 111.995244, 0.506335 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.347255, 1.350999 ], [ 112.453562, 1.37154 ], [ 112.563208, 1.361308 ], [ 112.731051, 1.327155 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.302347, 1.227891 ], [ 112.401887, 1.279205 ], [ 112.491067, 1.303162 ], [ 112.59051, 1.320283 ], [ 112.700185, 1.320309 ], [ 112.820113, 1.310079 ], [ 112.963974, 1.279339 ], [ 113.042715, 1.248584 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 113.275795, 1.255478 ], [ 113.220301, 1.026368 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 113.089944, 0.985305 ], [ 113.213426, 1.019528 ], [ 113.357552, 1.081111 ], [ 113.487978, 1.146109 ], [ 113.566954, 1.197419 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 113.291736, 0.838321 ], [ 113.384451, 0.899891 ], [ 113.484011, 0.958044 ], [ 113.611029, 1.029881 ], [ 113.762078, 1.115401 ], [ 113.868463, 1.163297 ], [ 113.957702, 1.20777 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 113.387418, 0.739183 ], [ 113.452244, 0.636618 ], [ 113.520438, 0.513537 ], [ 113.588554, 0.363102 ], [ 113.639543, 0.216082 ], [ 113.693989, 0.079321 ], [ 113.707502, 0.010937 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 113.646359, 0.202406 ], [ 113.680818, 0.267382 ], [ 113.739338, 0.356299 ], [ 113.804654, 0.424702 ], [ 113.869931, 0.479427 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 113.03196, -0.112321 ], [ 113.1655, -0.156741 ], [ 113.288777, -0.194324 ], [ 113.425753, -0.235324 ], [ 113.559283, -0.283163 ], [ 113.730494, -0.337832 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 113.898533, -0.303598 ], [ 113.809559, -0.255748 ], [ 113.751441, -0.204472 ], [ 113.720741, -0.153189 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 114.464752, -0.05727 ], [ 114.410169, 0.03162 ], [ 114.386354, 0.093163 ], [ 114.362637, 0.188899 ], [ 114.328569, 0.260698 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 114.277267, 0.298298 ], [ 114.31487, 0.264114 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 114.325162, 0.267535 ], [ 114.407644, 0.3462 ], [ 114.503835, 0.424868 ], [ 114.599997, 0.493278 ], [ 114.733919, 0.582213 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 114.78199, 0.612999 ], [ 114.823197, 0.640364 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 114.936466, 0.69852 ], [ 115.032589, 0.753252 ], [ 115.142411, 0.804568 ], [ 115.224776, 0.842201 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 114.936895, -0.347802 ], [ 114.820022, -0.467507 ], [ 114.706635, -0.566696 ], [ 114.579558, -0.659048 ], [ 114.431917, -0.751406 ], [ 114.260323, -0.830092 ], [ 114.095644, -0.88826 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 113.94865, -0.754941 ], [ 114.113329, -0.696772 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 114.147662, -0.676248 ], [ 114.305555, -0.594146 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 114.33647, -0.570203 ], [ 114.497899, -0.450487 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 114.549437, -0.406023 ], [ 114.576934, -0.378662 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 113.691431, -0.813131 ], [ 113.818381, -0.76523 ], [ 113.935126, -0.689976 ], [ 114.079389, -0.580522 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.95449, -0.833823 ], [ 113.081548, -0.748308 ], [ 113.191507, -0.649121 ], [ 113.287777, -0.543098 ], [ 113.349695, -0.464438 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.648779, -1.069831 ], [ 112.78937, -1.045862 ], [ 112.947146, -1.004792 ], [ 113.080911, -0.970566 ], [ 113.255863, -0.915815 ], [ 113.406794, -0.871328 ], [ 113.437679, -0.857643 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.732509, -1.476952 ], [ 111.770425, -1.401717 ], [ 111.880542, -1.24782 ], [ 111.939022, -1.17258 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.351626, -1.907643 ], [ 112.372856, -1.675122 ], [ 112.397485, -1.452858 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 112.133431, -1.504211 ], [ 112.087778, -1.887189 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 111.544259, -1.388094 ], [ 111.51257, -1.682165 ], [ 111.512237, -1.798423 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 110.618363, -1.566121 ], [ 110.567501, -1.374649 ], [ 110.550844, -1.207105 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 110.593646, -1.819158 ], [ 110.676226, -1.7063 ], [ 110.772564, -1.576342 ], [ 110.810442, -1.514784 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.207008, -3.240271 ], [ 116.109974, -3.613004 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.180668, -2.864149 ], [ 116.266557, -2.792322 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 115.480712, -3.134445 ], [ 115.63416, -3.407956 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 114.727828, -3.934752 ], [ 114.837626, -3.864869 ], [ 114.851438, -3.856078 ], [ 114.971592, -3.787662 ], [ 115.067863, -3.73862 ], [ 115.126048, -3.70898 ], [ 115.130196, -3.70695 ], [ 115.314817, -3.616613 ], [ 115.441933, -3.510583 ], [ 115.520998, -3.428499 ], [ 115.576198, -3.30197 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 114.837699, -3.866339 ], [ 114.837626, -3.864869 ], [ 114.834458, -3.801372 ], [ 114.885771, -3.835554 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 115.067695, -3.739768 ], [ 115.067863, -3.73862 ], [ 115.078183, -3.667959 ], [ 115.130196, -3.70695 ], [ 115.132903, -3.708979 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 115.345742, -3.589251 ], [ 115.332238, -3.517447 ], [ 115.400707, -3.544786 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 115.54213, -3.230172 ], [ 115.607417, -3.172027 ], [ 115.706219, -3.024779 ], [ 115.710679, -3.018132 ], [ 115.820903, -2.826622 ], [ 115.834033, -2.781224 ], [ 115.890136, -2.587251 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 115.6625, -3.08653 ], [ 115.635296, -3.011311 ], [ 115.706219, -3.024779 ], [ 115.707232, -3.024971 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 115.83474, -2.782167 ], [ 115.834033, -2.781224 ], [ 115.804011, -2.741142 ], [ 115.848606, -2.727454 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 115.240895, -3.100308 ], [ 115.354273, -3.004539 ], [ 115.47801, -2.881413 ], [ 115.529675, -2.792498 ], [ 115.550563, -2.679654 ], [ 115.616143, -2.518929 ], [ 115.661071, -2.388983 ], [ 115.709417, -2.262455 ], [ 115.720032, -2.146195 ], [ 115.706489, -2.088069 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.123062, -1.438293 ], [ 116.074775, -1.544304 ], [ 116.060605, -1.705017 ], [ 116.058862, -1.735831 ], [ 116.049774, -1.896503 ], [ 116.049562, -1.970322 ], [ 116.04935, -2.04434 ], [ 116.049166, -2.108503 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.060713, -1.667404 ], [ 116.002359, -1.698192 ], [ 116.058862, -1.735831 ], [ 116.063934, -1.73921 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.052996, -1.968309 ], [ 116.049562, -1.970322 ], [ 115.994632, -2.002517 ], [ 116.04935, -2.04434 ], [ 116.05277, -2.046954 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.069547, -0.976693 ], [ 116.179487, -0.884344 ], [ 116.286088, -0.761222 ], [ 116.372105, -0.644944 ], [ 116.427286, -0.525253 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.871686, -0.928631 ], [ 116.937266, -0.767906 ], [ 117.019983, -0.607177 ], [ 117.106099, -0.456705 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.96541, -0.514867 ], [ 117.013403, -0.511436 ], [ 117.109506, -0.463542 ], [ 117.184987, -0.43617 ], [ 117.277555, -0.42589 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 117.174695, -0.439591 ], [ 117.236809, -0.292544 ], [ 117.309273, -0.12156 ], [ 117.399129, 0.138333 ], [ 117.423385, 0.230661 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 117.299951, 0.213535 ], [ 117.450275, 0.046022 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 117.471192, 0.169124 ], [ 117.320868, 0.336636 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 117.527078, 0.535008 ], [ 117.450677, 0.186216 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 117.193605, 0.179316 ], [ 117.255739, 0.333201 ], [ 117.321398, 0.521281 ], [ 117.349375, 0.716191 ], [ 117.380848, 0.935037 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.971229, 0.319456 ], [ 117.036927, 0.521214 ], [ 117.123199, 0.726395 ], [ 117.161223, 0.839243 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.689012, 1.10584 ], [ 116.664364, 0.876738 ], [ 116.667301, 0.705771 ], [ 116.680795, 0.630548 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 115.707818, 0.76709 ], [ 115.782769, 0.609818 ], [ 115.840779, 0.520929 ], [ 115.987616, 0.332899 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 115.924417, 1.003077 ], [ 116.030107, 0.808199 ], [ 116.101591, 0.637249 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.047126, 0.767171 ], [ 116.167182, 0.801393 ], [ 116.28381, 0.835615 ], [ 116.427847, 0.866423 ], [ 116.534154, 0.886965 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 117.34585, 0.681997 ], [ 117.438967, 0.883761 ], [ 117.53882, 1.044494 ], [ 117.659268, 1.21549 ], [ 117.783025, 1.345455 ], [ 117.913608, 1.465164 ], [ 118.013227, 1.543833 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 117.722283, 1.677118 ], [ 117.632712, 1.516387 ], [ 117.539771, 1.376172 ], [ 117.45723, 1.276991 ], [ 117.388477, 1.205168 ], [ 117.340387, 1.167544 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 117.402598, 1.348784 ], [ 117.340396, 1.170963 ], [ 117.298945, 1.058114 ], [ 117.240307, 0.928165 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 115.99598, 0.859482 ], [ 116.088744, 0.938149 ], [ 116.212502, 1.068114 ], [ 116.32254, 1.194656 ], [ 116.401722, 1.317771 ], [ 116.429395, 1.406681 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.689924, 1.42384 ], [ 116.834029, 1.478584 ], [ 116.943901, 1.546997 ], [ 117.019479, 1.608564 ], [ 117.153489, 1.728273 ], [ 117.249739, 1.827457 ], [ 117.270362, 1.847978 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.501154, 1.331472 ], [ 116.361034, 1.471633 ], [ 116.255149, 1.598123 ], [ 116.166381, 1.71778 ], [ 116.115156, 1.782735 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.255678, 1.782768 ], [ 116.304161, 1.957167 ], [ 116.335468, 2.117884 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 115.641181, 1.433848 ], [ 115.768327, 1.550136 ], [ 115.919679, 1.741656 ], [ 116.077975, 1.963952 ], [ 116.212298, 2.19308 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 117.178206, 1.981311 ], [ 117.307887, 1.786439 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 117.269039, 1.386365 ], [ 117.382671, 1.571037 ], [ 117.472341, 1.765962 ], [ 117.568895, 1.971146 ], [ 117.600026, 2.070314 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 117.603492, 2.083993 ], [ 117.634544, 2.155806 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 117.631185, 2.179741 ], [ 117.655392, 2.254973 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 117.623409, 1.85832 ], [ 117.720238, 2.159246 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 117.689039, 2.036142 ], [ 117.545629, 2.224172 ], [ 117.450035, 2.354085 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 114.562211, 1.659268 ], [ 114.988026, 1.946595 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 114.950551, 2.025231 ], [ 115.107445, 1.758559 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 115.052881, 1.854288 ], [ 115.186803, 1.943223 ], [ 115.362039, 2.097136 ], [ 115.523654, 2.281819 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.031256, 2.405037 ], [ 116.078945, 2.302468 ], [ 116.15419, 2.247776 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.181521, 2.217009 ], [ 116.290971, 2.13839 ], [ 116.390207, 2.083704 ], [ 116.489375, 2.005082 ], [ 116.65003, 1.854669 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.479074, 1.998241 ], [ 116.541129, 2.124772 ], [ 116.616972, 2.278661 ], [ 116.682562, 2.442805 ], [ 116.741278, 2.600109 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.903696, 3.06518 ], [ 117.416036, 2.449819 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.975367, 2.959197 ], [ 117.095619, 3.061806 ], [ 117.257106, 3.202038 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 115.643994, 2.415203 ], [ 115.785153, 2.637494 ], [ 115.871327, 2.808483 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 115.543261, 3.143501 ], [ 115.715207, 3.345284 ], [ 115.921466, 3.560752 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.009195, 3.078644 ], [ 116.078232, 3.249628 ], [ 116.116894, 3.584734 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.153225, 4.302807 ], [ 116.094147, 4.018986 ], [ 116.045115, 3.653104 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 115.918685, 3.786429 ], [ 116.03826, 3.653102 ], [ 116.161322, 3.540293 ], [ 116.318539, 3.38646 ], [ 116.390357, 3.331767 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.277872, 3.547159 ], [ 116.602432, 3.184785 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.499935, 3.2976 ], [ 116.479704, 3.413853 ], [ 116.507563, 3.56773 ], [ 116.576571, 3.728456 ], [ 116.624829, 3.82421 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.540014, 2.931739 ], [ 116.646801, 3.119828 ], [ 116.732975, 3.290817 ], [ 116.781311, 3.413925 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.836051, 3.379744 ], [ 116.657995, 3.437831 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.729901, 3.413912 ], [ 116.864499, 3.738783 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.832937, 3.489163 ], [ 116.723389, 3.533588 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.86248, 3.034396 ], [ 116.917739, 3.181441 ], [ 116.979961, 3.366101 ], [ 117.021736, 3.591788 ], [ 117.032282, 3.684113 ], [ 117.02912, 3.776435 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.509602, 4.278956 ], [ 116.65642, 4.084088 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.828424, 4.306387 ], [ 116.958125, 4.118353 ], [ 116.992252, 4.067071 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 115.269316, -1.554754 ], [ 115.386415, -1.356404 ], [ 115.534419, -1.13753 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.528582, -4.616502 ], [ 119.558222, -4.683461 ], [ 119.599071, -4.742976 ], [ 119.647356, -4.80993 ], [ 119.684519, -4.854565 ], [ 119.732836, -4.910358 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.7031, -4.876883 ], [ 119.702801, -4.981051 ], [ 119.713839, -5.033133 ], [ 119.721212, -5.062894 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.735989, -5.111255 ], [ 119.758193, -5.170774 ], [ 119.791584, -5.230292 ], [ 119.810154, -5.256329 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.839912, -5.282364 ], [ 119.862168, -5.323283 ], [ 119.903102, -5.353035 ], [ 119.925381, -5.386513 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.93838, -4.754056 ], [ 119.960552, -4.824737 ], [ 119.993932, -4.887974 ], [ 120.019875, -4.943773 ], [ 120.049558, -4.99585 ], [ 120.079262, -5.040487 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.065764, -4.545688 ], [ 120.072988, -4.627533 ], [ 120.09143, -4.698215 ], [ 120.098803, -4.727976 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.109809, -4.791218 ], [ 120.132023, -4.847018 ], [ 120.150487, -4.910259 ], [ 120.161589, -4.940019 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.172627, -4.9921 ], [ 120.228274, -5.092536 ], [ 120.243094, -5.126015 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.272799, -5.170652 ], [ 120.291326, -5.211571 ], [ 120.321009, -5.263648 ], [ 120.350692, -5.315726 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.372885, -5.378966 ], [ 120.395078, -5.442206 ], [ 120.421075, -5.479403 ], [ 120.43956, -5.535203 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.461731, -5.605884 ], [ 120.517166, -5.780725 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.879601, -4.445284 ], [ 119.883149, -4.508528 ], [ 119.897788, -4.605253 ], [ 119.916219, -4.679655 ], [ 119.927353, -4.698254 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.145663, -3.991342 ], [ 120.075067, -3.902071 ], [ 120.004525, -3.794199 ], [ 119.937679, -3.697486 ], [ 119.863419, -3.585895 ], [ 119.818894, -3.507779 ], [ 119.763194, -3.425945 ], [ 119.73725, -3.370146 ], [ 119.726127, -3.347827 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.914719, -3.902109 ], [ 119.859018, -3.820276 ], [ 119.803328, -3.734722 ], [ 119.755064, -3.660327 ], [ 119.680835, -3.537574 ], [ 119.632582, -3.459459 ], [ 119.595494, -3.388782 ], [ 119.558417, -3.314384 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.823007, -3.373846 ], [ 119.893901, -3.358948 ], [ 119.957348, -3.340331 ], [ 120.002129, -3.32916 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.50995, -3.310675 ], [ 119.580759, -3.32554 ], [ 119.651568, -3.340404 ], [ 119.707482, -3.347832 ], [ 119.782041, -3.355254 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.484271, -2.945852 ], [ 120.539759, -3.102092 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.561962, -3.161612 ], [ 120.654623, -3.358767 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 118.203067, -2.611567 ], [ 118.296004, -2.711994 ], [ 118.359174, -2.790105 ], [ 118.418646, -2.857057 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 118.455809, -2.901692 ], [ 118.511488, -2.990966 ], [ 118.611756, -3.136035 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 118.64146, -3.180671 ], [ 118.704545, -3.288545 ], [ 118.797312, -3.448497 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 118.960365, -3.805608 ], [ 118.978904, -3.842807 ], [ 118.982633, -3.842806 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.000947, -3.958132 ], [ 119.02672, -4.073455 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 118.827005, -3.496854 ], [ 118.860375, -3.563812 ], [ 118.890015, -3.63077 ], [ 118.915948, -3.690289 ], [ 118.945598, -3.753528 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.556085, -2.827023 ], [ 119.614598, -3.228804 ], [ 119.632912, -3.344129 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.90003, -2.521875 ], [ 119.907168, -2.633483 ], [ 119.936616, -2.767408 ], [ 119.966267, -2.830646 ], [ 120.025676, -2.919919 ], [ 120.08143, -2.983151 ], [ 120.144717, -3.02034 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.176662, -2.499726 ], [ 119.082808, -2.719247 ], [ 119.03401, -2.830868 ], [ 118.996528, -2.897843 ], [ 118.951588, -2.964819 ], [ 118.906616, -3.042956 ], [ 118.865277, -3.154576 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.224926, -2.574121 ], [ 119.396611, -2.521995 ], [ 119.486204, -2.488491 ], [ 119.594495, -2.436381 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.465765, -2.897493 ], [ 120.428805, -2.782172 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.380818, -2.611048 ], [ 120.340172, -2.480847 ], [ 120.196009, -2.038164 ], [ 120.162693, -1.952604 ], [ 120.136749, -1.896806 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.747923, -5.50117 ], [ 122.747913, -5.504891 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.725165, -5.635107 ], [ 122.747945, -5.49373 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.669752, -5.452825 ], [ 122.673481, -5.452824 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.616938, -5.664895 ], [ 122.628392, -5.571885 ], [ 122.658437, -5.497471 ], [ 122.688451, -5.434219 ], [ 122.722151, -5.385847 ], [ 122.759569, -5.341194 ], [ 122.770777, -5.333751 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.748008, -5.471408 ], [ 122.850483, -4.84637 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.78205, -5.303985 ], [ 122.860551, -5.237001 ], [ 122.93152, -5.196061 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.976964, -5.170246 ], [ 121.894936, -5.166545 ], [ 121.835175, -5.200042 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.032696, -5.240918 ], [ 121.950679, -5.233497 ], [ 121.879881, -5.214913 ], [ 121.827728, -5.196324 ], [ 121.801667, -5.181448 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.018471, -4.783085 ], [ 122.99647, -4.652879 ], [ 122.996737, -4.559871 ], [ 122.993189, -4.496626 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.451989, -4.66789 ], [ 122.310553, -4.574916 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.269608, -4.548883 ], [ 122.16168, -4.474503 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.015725, -4.656833 ], [ 121.840653, -4.589909 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.73184, -4.824315 ], [ 121.893222, -4.463406 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.247472, -5.333399 ], [ 124.020715, -5.084191 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.983564, -5.035836 ], [ 123.868273, -4.927975 ], [ 123.779064, -4.827547 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.887912, -4.797997 ], [ 122.933748, -4.418514 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.741891, -4.786633 ], [ 123.652651, -4.697366 ], [ 123.555952, -4.608102 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.511321, -4.567189 ], [ 123.329078, -4.399818 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.28074, -4.351466 ], [ 123.146804, -4.243608 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.102184, -4.198975 ], [ 122.997995, -4.120873 ], [ 122.923574, -4.065086 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.635535, -4.597398 ], [ 121.4977, -4.549067 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.120746, -4.44475 ], [ 122.016525, -4.377809 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.990486, -4.355493 ], [ 121.875089, -4.284835 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.837873, -4.258801 ], [ 121.74111, -4.191859 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.700155, -4.169547 ], [ 121.577289, -4.10261 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.643129, -4.333016 ], [ 122.583689, -4.254903 ], [ 122.494342, -4.20284 ], [ 122.431023, -4.176813 ], [ 122.37139, -4.165666 ], [ 122.21117, -4.121061 ], [ 122.058429, -4.069013 ], [ 121.819953, -4.005824 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.890109, -4.031611 ], [ 122.70402, -3.905165 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.648191, -3.867975 ], [ 122.529086, -3.789877 ], [ 122.484434, -3.756405 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.428573, -3.730376 ], [ 122.2499, -3.618809 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.194018, -3.600221 ], [ 122.082318, -3.540722 ], [ 121.989199, -3.503541 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.193946, -3.842279 ], [ 121.33957, -3.775279 ], [ 121.455393, -3.697125 ], [ 121.548843, -3.618976 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.970716, -3.663757 ], [ 121.053234, -3.496324 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.208219, -3.849478 ], [ 122.081784, -3.726738 ], [ 121.973963, -3.615154 ], [ 121.907064, -3.537044 ], [ 121.881046, -3.507287 ], [ 121.866343, -3.432884 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.922151, -3.477515 ], [ 121.735987, -3.377111 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.698772, -3.351077 ], [ 121.505235, -3.220912 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.464301, -3.19116 ], [ 121.293182, -3.046108 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.299819, -3.332571 ], [ 121.281632, -3.172602 ], [ 121.29689, -3.053548 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.011991, -3.57446 ], [ 120.960094, -3.466583 ], [ 120.867135, -3.373597 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.154462, -3.306563 ], [ 121.110161, -3.150321 ], [ 121.10313, -3.00151 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.248594, -2.990314 ], [ 121.133346, -2.867571 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.092454, -2.822937 ], [ 121.021805, -2.752268 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.051094, -2.941997 ], [ 121.125738, -2.919657 ], [ 121.170508, -2.912206 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.435066, -2.982829 ], [ 121.520759, -3.008851 ], [ 121.580338, -3.038599 ], [ 121.665989, -3.079502 ], [ 121.740452, -3.120408 ], [ 121.844673, -3.187349 ], [ 121.945111, -3.272892 ], [ 122.02324, -3.336119 ], [ 122.101315, -3.417947 ], [ 122.197992, -3.514652 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.030911, -3.261711 ], [ 122.109551, -3.146362 ], [ 122.195788, -2.982648 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.098343, -3.153805 ], [ 121.998043, -3.019898 ], [ 121.953508, -2.945502 ], [ 121.894131, -2.845068 ], [ 121.819902, -2.722315 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.905233, -2.874828 ], [ 121.827062, -2.826482 ], [ 121.707893, -2.770706 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.660954, -2.451008 ], [ 120.530811, -2.320828 ], [ 120.422968, -2.216685 ], [ 120.348568, -2.153457 ], [ 120.196009, -2.038164 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.117145, -2.231639 ], [ 120.091447, -2.090273 ], [ 120.117859, -1.982378 ], [ 120.140468, -1.900525 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.405221, -2.120199 ], [ 119.46887, -2.030896 ], [ 119.499022, -1.91928 ], [ 119.562735, -1.807655 ], [ 119.641333, -1.707188 ], [ 119.764711, -1.595549 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.641311, -1.714628 ], [ 119.600537, -1.629071 ], [ 119.578483, -1.517467 ], [ 119.567563, -1.424461 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.136803, -1.878204 ], [ 120.025668, -1.621529 ], [ 119.944354, -1.368567 ], [ 119.885223, -1.182565 ], [ 119.811453, -0.899839 ], [ 119.745013, -0.661754 ], [ 119.674929, -0.393908 ], [ 119.494414, 0.376154 ], [ 119.369482, 1.02346 ], [ 119.307293, 1.44384 ], [ 119.27124, 1.875389 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.096007, -1.800087 ], [ 119.980642, -1.718268 ], [ 119.880172, -1.643886 ], [ 119.764902, -1.528583 ], [ 119.672039, -1.402115 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.459447, -2.49942 ], [ 120.448623, -2.372932 ], [ 120.434016, -2.265046 ], [ 120.419239, -2.216686 ], [ 120.400828, -2.134843 ], [ 120.367523, -2.045564 ], [ 120.341611, -1.978604 ], [ 120.338021, -1.930241 ], [ 120.338234, -1.855834 ], [ 120.345842, -1.803748 ], [ 120.387085, -1.725612 ], [ 120.428232, -1.680958 ], [ 120.499318, -1.599094 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.394585, -1.710729 ], [ 120.391123, -1.617722 ], [ 120.410077, -1.509828 ], [ 120.425292, -1.405655 ], [ 120.436788, -1.297763 ], [ 120.425857, -1.208479 ], [ 120.418687, -1.108032 ], [ 120.415139, -1.044787 ], [ 120.42281, -0.970379 ], [ 120.434136, -0.922012 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.566702, -2.592164 ], [ 121.458645, -2.562428 ], [ 121.372963, -2.532685 ], [ 121.283573, -2.495504 ], [ 121.216514, -2.473198 ], [ 121.149477, -2.443451 ], [ 121.093649, -2.406261 ], [ 120.989385, -2.354202 ], [ 120.941025, -2.31329 ], [ 120.914964, -2.298415 ], [ 120.892676, -2.268657 ], [ 120.803339, -2.212874 ], [ 120.691639, -2.153376 ], [ 120.587397, -2.093875 ], [ 120.568805, -2.075278 ], [ 120.505529, -2.03437 ], [ 120.431076, -1.989744 ], [ 120.408777, -1.963707 ], [ 120.315732, -1.900484 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.527871, -2.045525 ], [ 120.513211, -1.956241 ], [ 120.491252, -1.811154 ], [ 120.469262, -1.677228 ], [ 120.458181, -1.640027 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.692726, -1.773903 ], [ 120.659464, -1.669742 ], [ 120.641042, -1.59162 ], [ 120.622728, -1.476294 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.607764, -2.577273 ], [ 121.53703, -2.536367 ], [ 121.451422, -2.480582 ], [ 121.373251, -2.432237 ], [ 121.309964, -2.395049 ], [ 121.257864, -2.357858 ], [ 121.213212, -2.324386 ], [ 121.149946, -2.279757 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.90039, -2.179368 ], [ 120.871176, -1.963597 ], [ 120.845531, -1.803629 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.161891, -2.015612 ], [ 121.113968, -1.822167 ], [ 121.099233, -1.758925 ], [ 121.08095, -1.632438 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.276744, -2.276007 ], [ 121.243524, -2.156964 ], [ 121.217762, -2.03792 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.281102, -2.056507 ], [ 121.25159, -1.944904 ], [ 121.240627, -1.86678 ], [ 121.23352, -1.744012 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.2747, -1.688197 ], [ 121.215291, -1.598924 ], [ 121.178182, -1.535687 ], [ 121.141169, -1.438968 ], [ 121.119104, -1.331084 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.708789, -2.458199 ], [ 121.600977, -2.342895 ], [ 121.522966, -2.238745 ], [ 121.452381, -2.145754 ], [ 121.415294, -2.075076 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.401668, -1.624921 ], [ 121.454279, -1.483537 ], [ 121.510567, -1.360753 ], [ 121.574195, -1.278891 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.308437, -2.711038 ], [ 122.177942, -2.703628 ], [ 122.092196, -2.696208 ], [ 121.999002, -2.685069 ], [ 121.917006, -2.670207 ], [ 121.820094, -2.655349 ], [ 121.700851, -2.625615 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.790787, -1.17095 ], [ 121.746359, -1.059351 ], [ 121.702026, -0.914269 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.218013, -0.866259 ], [ 120.125043, -0.776994 ], [ 120.050708, -0.691444 ], [ 119.976479, -0.568691 ], [ 119.920831, -0.468256 ], [ 119.865312, -0.323177 ], [ 119.83956, -0.200413 ], [ 119.821374, -0.040443 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.075193, 0.045185 ], [ 119.930219, 0.205124 ], [ 119.881945, 0.275798 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.039417, 0.573461 ], [ 120.151426, 0.621852 ], [ 120.278352, 0.670246 ], [ 120.375402, 0.703752 ], [ 120.513472, 0.737268 ], [ 120.670198, 0.774508 ], [ 120.83436, 0.80431 ], [ 120.950003, 0.819219 ], [ 121.017147, 0.826675 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.706774, 0.525256 ], [ 120.81873, 0.555045 ], [ 120.915717, 0.566229 ], [ 121.042482, 0.558819 ], [ 121.102125, 0.551392 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.142953, 0.484436 ], [ 121.076257, 0.633233 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.595156, 0.830533 ], [ 121.710682, 0.804519 ], [ 121.82626, 0.797106 ], [ 121.919486, 0.797128 ], [ 122.035107, 0.804596 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.228536, 0.637228 ], [ 122.120651, 0.72649 ], [ 122.064864, 0.778561 ], [ 122.009068, 0.826912 ], [ 121.916087, 0.912457 ], [ 121.845438, 0.983126 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.263793, 1.879107 ], [ 119.375855, 1.946099 ], [ 119.502802, 2.001934 ], [ 119.614812, 2.050325 ], [ 119.741748, 2.10244 ], [ 119.850007, 2.143389 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.607322, 2.039163 ], [ 119.588431, 1.953591 ], [ 119.521447, 2.001939 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.909746, 2.169446 ], [ 120.029192, 2.210398 ], [ 120.129982, 2.247625 ], [ 120.223261, 2.266249 ], [ 120.249106, 2.269229 ], [ 120.320248, 2.277433 ], [ 120.458265, 2.292347 ], [ 120.581344, 2.299817 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.148628, 2.247629 ], [ 120.211786, 2.165797 ], [ 120.249106, 2.269229 ], [ 120.249375, 2.269975 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.659685, 2.310996 ], [ 120.853595, 2.311043 ], [ 121.002735, 2.303637 ], [ 121.151864, 2.292512 ], [ 121.267399, 2.270218 ], [ 121.450047, 2.244219 ], [ 121.520856, 2.229355 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.021348, 2.292481 ], [ 121.054706, 2.221803 ], [ 121.103386, 2.292501 ], [ 121.107083, 2.28134 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.587936, 2.214489 ], [ 121.733293, 2.188482 ], [ 121.867453, 2.158751 ], [ 121.997873, 2.125299 ], [ 122.117095, 2.088125 ], [ 122.210246, 2.062105 ], [ 122.329458, 2.02121 ], [ 122.3816, 1.9989 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.908419, 2.140159 ], [ 121.926872, 2.073198 ], [ 121.982967, 2.129016 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.467304, 1.976599 ], [ 122.586505, 1.931983 ], [ 122.72059, 1.87621 ], [ 122.817416, 1.83159 ], [ 122.865197, 1.812512 ], [ 122.929159, 1.786973 ], [ 123.022268, 1.746071 ], [ 123.07067, 1.720041 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.77645, 1.850182 ], [ 122.78736, 1.753456 ], [ 122.865197, 1.812512 ], [ 122.86584, 1.813 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.141468, 1.701456 ], [ 123.249514, 1.667999 ], [ 123.406027, 1.630833 ], [ 123.479446, 1.618637 ], [ 123.517844, 1.612258 ], [ 123.659505, 1.59741 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.398569, 1.630831 ], [ 123.420751, 1.563871 ], [ 123.479446, 1.618637 ], [ 123.480575, 1.61969 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.71919, 1.604865 ], [ 123.845977, 1.604896 ], [ 123.954151, 1.616082 ], [ 124.008786, 1.62765 ], [ 124.077283, 1.642154 ], [ 124.174334, 1.67566 ], [ 124.271406, 1.716606 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.935495, 1.612357 ], [ 123.980084, 1.556563 ], [ 124.008786, 1.62765 ], [ 124.010129, 1.630977 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.087093, 1.378252 ], [ 124.96428, 1.46379 ], [ 124.867507, 1.527012 ], [ 124.815417, 1.567923 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.85098, 0.965241 ], [ 124.709619, 1.084257 ], [ 124.646374, 1.136326 ], [ 124.557134, 1.225593 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.190324, 0.749305 ], [ 124.011683, 0.872033 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.726752, 0.33996 ], [ 123.809718, 0.663647 ], [ 123.836205, 0.797585 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.574704, 0.633828 ], [ 123.873581, 0.827356 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.877321, 0.831077 ], [ 123.873581, 0.827356 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.38366, 0.332437 ], [ 123.432426, 0.432897 ], [ 123.458913, 0.566835 ], [ 123.492986, 0.745418 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.47026, 0.622643 ], [ 123.373348, 0.637501 ], [ 123.272749, 0.667239 ], [ 123.202026, 0.711866 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.070859, 0.484896 ], [ 122.848099, 0.827112 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.959031, 0.49975 ], [ 122.654136, 0.808464 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.312243, -1.382884 ], [ 122.163445, -1.256429 ], [ 122.089067, -1.18576 ], [ 122.011024, -1.092771 ], [ 121.944157, -1.003499 ], [ 121.884781, -0.903065 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.167163, -1.260148 ], [ 122.197283, -1.159692 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.227457, -1.040635 ], [ 122.261178, -0.984822 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.294952, -0.910408 ], [ 122.332531, -0.80995 ], [ 122.351336, -0.754141 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.227254, -1.111321 ], [ 122.272216, -1.036904 ], [ 122.335737, -0.992245 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.365665, -0.958755 ], [ 122.459062, -0.899208 ], [ 122.548665, -0.861983 ], [ 122.589759, -0.835931 ], [ 122.712977, -0.780097 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.936835, -0.73912 ], [ 123.026321, -0.742819 ], [ 123.123223, -0.761398 ], [ 123.238748, -0.787413 ], [ 123.32443, -0.817155 ], [ 123.354241, -0.824588 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.354241, -0.824588 ], [ 123.35423, -0.828308 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.428768, -0.843172 ], [ 123.499567, -0.861757 ], [ 123.588978, -0.891498 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.663505, -0.910082 ], [ 123.689598, -0.913796 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.827486, -0.943526 ], [ 123.879661, -0.954674 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.961646, -0.973256 ], [ 124.196457, -1.014124 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.378545, -1.669332 ], [ 122.329886, -1.732589 ], [ 122.299926, -1.77724 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.258768, -1.825614 ], [ 122.191283, -1.952121 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.165031, -2.004212 ], [ 122.10495, -2.149318 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.097322, -2.208845 ], [ 122.08215, -2.298137 ], [ 122.078154, -2.391145 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.085495, -2.432067 ], [ 122.100208, -2.50275 ], [ 122.129838, -2.573429 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.148366, -2.614348 ], [ 122.222691, -2.703618 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.375549, -2.714742 ], [ 122.476243, -2.710998 ], [ 122.562053, -2.696096 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.636666, -2.684917 ], [ 122.74859, -2.666289 ], [ 122.841901, -2.636504 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.935191, -2.61416 ], [ 123.13301, -2.550868 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.230061, -2.517362 ], [ 123.342028, -2.483852 ], [ 123.375632, -2.468963 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.450297, -2.439183 ], [ 123.633233, -2.364733 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.715357, -2.334951 ], [ 123.84973, -2.290275 ], [ 123.976634, -2.249321 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.055018, -2.22326 ], [ 124.211754, -2.182299 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.275201, -2.163683 ], [ 124.472957, -2.122712 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.473501, -1.932976 ], [ 124.507936, -1.627902 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.540111, -2.111535 ], [ 124.73042, -2.066846 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.741692, -2.037081 ], [ 124.521562, -2.078057 ], [ 124.603739, -2.029673 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.540026, -2.141298 ], [ 124.778801, -2.100317 ], [ 124.692852, -2.163583 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.801293, -2.059388 ], [ 125.036338, -2.018409 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.096003, -2.018395 ], [ 125.271331, -1.996031 ], [ 125.323548, -1.992298 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.386952, -1.988563 ], [ 125.666736, -1.951293 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.633228, -1.932699 ], [ 125.435536, -1.951348 ], [ 125.510213, -1.917847 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.465166, -2.022027 ], [ 125.629307, -1.999666 ], [ 125.562089, -2.033165 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.7264, -1.951279 ], [ 125.85324, -1.932647 ], [ 125.994944, -1.932613 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.058348, -1.928878 ], [ 126.229862, -1.936278 ], [ 126.308182, -1.932539 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.382762, -1.932521 ], [ 126.613909, -1.951067 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.68102, -1.954772 ], [ 126.781683, -1.962188 ], [ 126.945717, -1.97703 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.016579, -1.973293 ], [ 127.158272, -1.97698 ], [ 127.240321, -1.97324 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.303736, -1.965784 ], [ 127.438013, -1.954591 ], [ 127.523802, -1.94713 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.605872, -1.93595 ], [ 127.71036, -1.909883 ], [ 127.83346, -1.894972 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.908094, -1.876353 ], [ 128.031237, -1.846561 ], [ 128.113329, -1.82794 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.916778, -1.448514 ], [ 127.912793, -1.537803 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.845287, -1.67175 ], [ 127.812014, -1.57131 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.834185, -1.64199 ], [ 127.703829, -1.586217 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.69244, -1.656905 ], [ 127.558291, -1.623454 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.558163, -1.668098 ], [ 127.55844, -1.57137 ], [ 127.614599, -1.49323 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.550822, -1.627177 ], [ 127.461443, -1.586274 ], [ 127.45033, -1.560235 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.569723, -1.537884 ], [ 127.446836, -1.478389 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.610891, -1.48579 ], [ 127.558845, -1.429998 ], [ 127.521715, -1.374202 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.722752, -1.489484 ], [ 127.678238, -1.407648 ], [ 127.659881, -1.307203 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.206376, -3.625307 ], [ 126.218128, -3.428127 ], [ 126.240875, -3.297911 ], [ 126.297258, -3.141644 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.554455, -3.178786 ], [ 126.64425, -3.074596 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.414913, -3.725706 ], [ 126.448666, -3.658732 ], [ 126.486127, -3.599198 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.407626, -3.666182 ], [ 126.41176, -3.524809 ], [ 126.651132, -3.275491 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.485733, -3.73685 ], [ 126.456498, -3.528519 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.695635, -3.361048 ], [ 126.815284, -3.24941 ], [ 126.886317, -3.186147 ], [ 126.949891, -3.122887 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.739882, -3.535892 ], [ 126.814879, -3.390782 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.810915, -3.47263 ], [ 126.833449, -3.41682 ], [ 127.012848, -3.275405 ], [ 127.054006, -3.227031 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.967993, -3.312619 ], [ 126.96078, -3.227053 ], [ 126.968419, -3.163806 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.921954, -3.762788 ], [ 126.858785, -3.684676 ], [ 126.776895, -3.632611 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.86994, -3.695835 ], [ 126.952469, -3.52468 ], [ 127.053547, -3.387005 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.915083, -3.558172 ], [ 127.00476, -3.494905 ], [ 127.105647, -3.424195 ], [ 127.154241, -3.38326 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.978431, -3.357022 ], [ 128.001328, -3.174721 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.874285, -3.264039 ], [ 127.956473, -3.211935 ], [ 128.012493, -3.182159 ], [ 128.068482, -3.163544 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 128.37813, -3.115106 ], [ 128.262956, -2.966321 ], [ 128.199894, -2.851006 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 128.516264, -3.059268 ], [ 128.453403, -2.873267 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 128.34101, -3.05559 ], [ 128.41199, -3.010929 ], [ 128.490374, -2.984868 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 128.616222, -3.312226 ], [ 128.702225, -3.230358 ], [ 128.769571, -3.152216 ], [ 128.810718, -3.107562 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 128.754303, -3.27499 ], [ 128.784476, -3.155933 ], [ 128.833188, -3.074074 ], [ 128.896923, -2.955009 ], [ 128.979239, -2.858261 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 128.508912, -3.022067 ], [ 128.583621, -2.977405 ], [ 128.662005, -2.951344 ], [ 128.736607, -2.943886 ], [ 128.844663, -2.973623 ], [ 128.88564, -2.988494 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 129.410942, -3.159504 ], [ 129.448712, -2.99208 ], [ 129.471225, -2.943711 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 129.567529, -3.170627 ], [ 129.676183, -2.992026 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 129.634972, -3.059002 ], [ 129.530676, -3.018103 ], [ 129.44867, -3.006962 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 129.433551, -3.077651 ], [ 129.485757, -3.077639 ], [ 129.549065, -3.107386 ], [ 129.59375, -3.129698 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 129.201594, -3.341849 ], [ 129.306295, -3.241376 ], [ 129.343702, -3.200443 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 128.88564, -2.988494 ], [ 128.967583, -3.021958 ], [ 129.056919, -3.077741 ], [ 129.131372, -3.122367 ], [ 129.183493, -3.152117 ], [ 129.235203, -3.103105 ], [ 129.262016, -3.077692 ], [ 129.340507, -3.014428 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 129.518743, -3.278528 ], [ 129.3772, -3.222757 ], [ 129.325089, -3.189287 ], [ 129.287895, -3.155813 ], [ 129.235203, -3.103105 ], [ 129.23212, -3.100021 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 130.137548, -3.352787 ], [ 130.178866, -3.248608 ], [ 130.24259, -3.133263 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 130.178002, -3.549954 ], [ 130.338787, -3.397383 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 130.514041, -3.401061 ], [ 130.398953, -3.222514 ], [ 130.317202, -3.122085 ], [ 130.268917, -3.05513 ], [ 130.209423, -2.995619 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 132.943799, -3.947369 ], [ 133.040945, -3.88038 ], [ 133.134278, -3.843155 ], [ 133.208944, -3.813374 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.391303, -3.939822 ], [ 133.271953, -3.947291 ], [ 133.178706, -3.954754 ], [ 133.085534, -3.936174 ], [ 133.029641, -3.921306 ], [ 132.981228, -3.898996 ], [ 132.899381, -3.83205 ], [ 132.858607, -3.746492 ], [ 132.832717, -3.672092 ], [ 132.821701, -3.612569 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 132.982561, -3.433956 ], [ 132.953006, -3.337235 ], [ 132.942042, -3.259111 ], [ 132.931101, -3.173546 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 132.762996, -3.277755 ], [ 132.737223, -3.162431 ], [ 132.737522, -3.058262 ], [ 132.734177, -2.924332 ], [ 132.745833, -2.760635 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 132.662792, -3.110365 ], [ 132.741123, -3.102905 ], [ 132.797111, -3.08429 ], [ 132.856851, -3.058234 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 132.734123, -2.942933 ], [ 132.637435, -2.849949 ], [ 132.566765, -2.78672 ], [ 132.458879, -2.697458 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 132.659255, -3.0434 ], [ 132.525298, -2.942983 ], [ 132.447137, -2.890917 ], [ 132.36153, -2.835133 ], [ 132.197751, -2.731003 ], [ 132.115851, -2.682659 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 132.559158, -2.838806 ], [ 132.626472, -2.771825 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 132.5592, -2.823925 ], [ 132.555418, -2.842527 ], [ 132.581521, -2.842521 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 132.622679, -2.794147 ], [ 132.619014, -2.771826 ], [ 132.604098, -2.77183 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 132.858372, -3.828339 ], [ 132.921862, -3.794841 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 132.91808, -3.813444 ], [ 132.910675, -3.794844 ], [ 132.899498, -3.791126 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 132.858426, -3.809738 ], [ 132.858362, -3.832059 ], [ 132.876996, -3.835775 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.186292, -3.910108 ], [ 133.189776, -3.995674 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.175084, -3.917551 ], [ 133.186303, -3.906388 ], [ 133.204895, -3.924985 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.204735, -3.98079 ], [ 133.189765, -3.999395 ], [ 133.174881, -3.988237 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.97885, -3.2105 ], [ 133.938236, -3.069137 ], [ 133.934987, -2.901724 ], [ 133.954048, -2.756627 ], [ 133.976742, -2.645012 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.680422, -3.247774 ], [ 133.837158, -3.206813 ], [ 133.934166, -3.188188 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.167442, -3.764782 ], [ 134.216015, -3.731287 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.357974, -3.641966 ], [ 134.552225, -3.52287 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.659471, -3.835351 ], [ 134.801611, -3.682784 ], [ 134.839029, -3.638131 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.997773, -3.113767 ], [ 134.071863, -3.284884 ], [ 134.14607, -3.415077 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.116142, -3.448567 ], [ 134.198351, -3.389022 ], [ 134.276799, -3.34064 ], [ 134.3776, -3.299692 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.233213, -2.935136 ], [ 134.158569, -2.957475 ], [ 134.065183, -3.013302 ], [ 134.016674, -3.024475 ], [ 134.016706, -3.013314 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.638976, -3.396596 ], [ 133.628103, -3.360093 ], [ 133.60957, -3.297872 ], [ 133.605734, -3.284995 ], [ 133.606182, -3.128741 ], [ 133.621482, -2.994806 ], [ 133.647604, -2.889418 ], [ 133.662981, -2.827382 ], [ 133.66564, -2.819289 ], [ 133.711885, -2.678558 ], [ 133.753203, -2.574379 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.624156, -3.363117 ], [ 133.628103, -3.360093 ], [ 133.67274, -3.325902 ], [ 133.60957, -3.297872 ], [ 133.605702, -3.296156 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.609943, -3.11758 ], [ 133.673401, -3.095243 ], [ 133.613832, -3.061774 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.644155, -2.890632 ], [ 133.647604, -2.889418 ], [ 133.707612, -2.868295 ], [ 133.66564, -2.819289 ], [ 133.663013, -2.816221 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.708114, -2.69344 ], [ 133.760373, -2.674826 ], [ 133.734419, -2.622748 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.866361, -3.426305 ], [ 133.851758, -3.370338 ], [ 133.83649, -3.311821 ], [ 133.811034, -3.21426 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.851605, -3.370504 ], [ 133.851758, -3.370338 ], [ 133.892752, -3.32585 ], [ 133.83649, -3.311821 ], [ 133.83313, -3.310983 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.943988, -3.664387 ], [ 133.91212, -3.568187 ], [ 133.895927, -3.519306 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.9292, -3.619746 ], [ 133.966629, -3.571373 ], [ 133.91212, -3.568187 ], [ 133.903246, -3.567668 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.246914, -3.359248 ], [ 134.176574, -3.18069 ], [ 134.163225, -3.141748 ], [ 134.146256, -3.092247 ], [ 134.139593, -3.07281 ], [ 134.110006, -2.987249 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.161765, -3.14349 ], [ 134.163225, -3.141748 ], [ 134.199183, -3.098838 ], [ 134.146256, -3.092247 ], [ 134.13954, -3.091411 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.845501, -2.898025 ], [ 133.849437, -2.857997 ], [ 133.854958, -2.801847 ], [ 133.860865, -2.741768 ], [ 133.89825, -2.643926 ], [ 133.913466, -2.604104 ], [ 133.91644, -2.591887 ], [ 133.936107, -2.51109 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.841879, -2.860823 ], [ 133.849437, -2.857997 ], [ 133.901607, -2.838486 ], [ 133.854958, -2.801847 ], [ 133.849518, -2.797575 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.894703, -2.645032 ], [ 133.89825, -2.643926 ], [ 133.954421, -2.626416 ], [ 133.91644, -2.591887 ], [ 133.913509, -2.589222 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.012977, -3.013315 ], [ 133.987087, -2.938915 ], [ 133.983784, -2.790103 ], [ 134.002675, -2.704531 ], [ 134.006608, -2.682332 ], [ 134.017836, -2.61896 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.006468, -2.682208 ], [ 134.006608, -2.682332 ], [ 134.039944, -2.711963 ], [ 133.99886, -2.734294 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.990794, -2.946354 ], [ 134.035649, -2.90914 ], [ 133.987279, -2.871949 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.703953, -3.928348 ], [ 134.666523, -3.920431 ], [ 134.605566, -3.907538 ], [ 134.580969, -3.902335 ], [ 134.491537, -3.880034 ], [ 134.452265, -3.865335 ], [ 134.342536, -3.824265 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.398428, -3.839133 ], [ 134.435815, -3.805641 ], [ 134.452265, -3.865335 ], [ 134.454268, -3.872603 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.603322, -3.90977 ], [ 134.605566, -3.907538 ], [ 134.648199, -3.865116 ], [ 134.666523, -3.920431 ], [ 134.666684, -3.920916 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.046349, -1.778162 ], [ 134.090415, -2.016252 ], [ 134.097873, -2.01625 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.008909, -1.830255 ], [ 134.067614, -2.16507 ], [ 134.059751, -2.306443 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.000449, -2.179967 ], [ 134.036993, -2.44038 ], [ 134.312749, -2.50728 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.408787, -2.827205 ], [ 134.223316, -2.48498 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.206907, -3.005828 ], [ 134.408552, -2.909052 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.089178, -2.447808 ], [ 134.066335, -2.611508 ], [ 134.155575, -2.700774 ], [ 134.244688, -2.834684 ], [ 134.281573, -2.976048 ], [ 134.303649, -3.080211 ], [ 134.325618, -3.221578 ], [ 134.384984, -3.325733 ], [ 134.503801, -3.50428 ], [ 134.637683, -3.630738 ], [ 134.749255, -3.734881 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.355343, -3.258774 ], [ 134.415349, -3.13971 ], [ 134.49775, -3.013199 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.593553, -3.414971 ], [ 134.534123, -3.333138 ], [ 134.415413, -3.117388 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.6402, -2.752743 ], [ 134.565107, -2.931336 ], [ 134.557095, -3.124795 ], [ 134.668326, -3.347987 ], [ 134.831593, -3.630692 ], [ 134.876128, -3.705088 ], [ 134.957953, -3.779475 ], [ 135.084655, -3.809207 ], [ 135.121945, -3.809198 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.55767, -2.923897 ], [ 134.513306, -2.789977 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.59447, -3.095023 ], [ 134.691148, -3.191728 ], [ 134.780218, -3.34052 ], [ 134.884161, -3.504189 ], [ 134.995691, -3.623212 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.69119, -3.176847 ], [ 134.66952, -2.931311 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.914655, -3.273522 ], [ 134.921814, -3.377689 ], [ 134.958849, -3.466968 ], [ 135.040631, -3.556236 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.041335, -3.310695 ], [ 135.143956, -3.935684 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.092688, -3.608308 ], [ 135.263712, -3.786842 ], [ 135.353272, -3.764499 ], [ 135.465314, -3.704947 ], [ 135.614773, -3.600743 ], [ 135.75686, -3.466778 ], [ 135.883967, -3.355138 ], [ 136.011074, -3.243498 ], [ 136.13068, -3.146742 ], [ 136.197888, -3.116963 ], [ 136.317281, -3.094613 ], [ 136.495655, -3.310348 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.390648, -3.734728 ], [ 135.465591, -3.608219 ], [ 135.585325, -3.466819 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.407012, -3.012744 ], [ 136.548821, -2.975507 ], [ 136.772862, -2.871285 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.533607, -3.07968 ], [ 136.765169, -2.953134 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.914204, -3.213759 ], [ 136.002187, -3.742023 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.934133, -3.933645 ], [ 134.993491, -3.963283 ], [ 135.077645, -3.983031 ], [ 135.137088, -3.983017 ], [ 135.186638, -3.978063 ], [ 135.246138, -3.958281 ], [ 135.275888, -3.94839 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.834183, -4.240074 ], [ 134.888616, -4.259829 ], [ 134.938152, -4.259817 ], [ 135.007502, -4.259801 ], [ 135.08182, -4.254841 ], [ 135.12643, -4.244946 ], [ 135.195795, -4.239988 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.389395, -4.096623 ], [ 135.483499, -4.101543 ], [ 135.567752, -4.086697 ], [ 135.68177, -4.057017 ], [ 135.835415, -4.027329 ], [ 135.939568, -3.982826 ], [ 135.979239, -3.96799 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.285172, -4.165836 ], [ 135.522462, -4.333808 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.957952, -4.047544 ], [ 134.002237, -4.151316 ], [ 134.026736, -4.245208 ], [ 134.051234, -4.339101 ], [ 134.055975, -4.41323 ], [ 134.065543, -4.531835 ], [ 134.060363, -4.610909 ], [ 134.045374, -4.655391 ], [ 134.025305, -4.744351 ], [ 133.975514, -4.833319 ], [ 133.940613, -4.9124 ], [ 133.87589, -5.026082 ], [ 133.841031, -5.090336 ], [ 133.771327, -5.213903 ], [ 133.731457, -5.297927 ], [ 133.666707, -5.421492 ], [ 133.631819, -5.495631 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.098876, -3.488825 ], [ 135.084298, -3.389989 ], [ 135.113892, -3.43446 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.994922, -3.46414 ], [ 135.039376, -3.508607 ], [ 135.024855, -3.390003 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.901384, -3.47875 ], [ 135.921085, -3.518281 ], [ 135.916486, -3.394732 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.995474, -3.488612 ], [ 135.975985, -3.37495 ], [ 136.010519, -3.424362 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.771274, -3.938388 ], [ 136.0139, -3.972924 ], [ 136.182265, -3.992652 ], [ 136.340737, -4.00744 ], [ 136.627988, -4.02714 ], [ 136.920264, -4.022128 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.776171, -4.175365 ], [ 136.855258, -4.23465 ], [ 136.964067, -4.293928 ], [ 137.043168, -4.348272 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.072946, -4.328496 ], [ 137.191691, -4.377888 ], [ 137.270891, -4.397637 ], [ 137.374832, -4.427265 ], [ 137.424339, -4.437137 ], [ 137.508507, -4.451943 ], [ 137.617458, -4.461801 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.320795, -4.269133 ], [ 137.370133, -4.33831 ], [ 137.429293, -4.437136 ], [ 137.517933, -4.619969 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.365208, -4.328427 ], [ 137.449419, -4.328407 ], [ 137.5337, -4.303677 ], [ 137.627903, -4.274002 ], [ 137.662621, -4.259168 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.617458, -4.461801 ], [ 137.691705, -4.481551 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.835557, -4.412329 ], [ 137.974356, -4.377702 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.905091, -4.348066 ], [ 137.984249, -4.382641 ], [ 138.043607, -4.412279 ], [ 138.147533, -4.446849 ], [ 138.201994, -4.45672 ], [ 138.241595, -4.466594 ], [ 138.34562, -4.46657 ], [ 138.43477, -4.47149 ], [ 138.538795, -4.471465 ], [ 138.642778, -4.486267 ], [ 138.786375, -4.506001 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.553415, -4.555476 ], [ 138.766547, -4.510947 ], [ 138.816125, -4.496109 ], [ 138.905304, -4.491146 ], [ 139.00446, -4.461471 ], [ 139.088685, -4.456508 ], [ 139.148199, -4.431784 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.730441, -5.444519 ], [ 140.829385, -5.488974 ], [ 140.87885, -5.513672 ], [ 140.958022, -5.543305 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.409188, -5.190082 ], [ 140.468631, -5.190068 ], [ 140.463521, -5.244431 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.58211, -5.348185 ], [ 140.631716, -5.323463 ], [ 140.626607, -5.377827 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.864025, -5.50132 ], [ 140.923524, -5.481538 ], [ 140.923383, -5.530958 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.23805, -4.192075 ], [ 139.39181, -4.122851 ], [ 139.49098, -4.088233 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.416875, -4.019062 ], [ 139.490952, -4.098117 ], [ 139.560189, -4.137636 ], [ 139.589896, -4.142571 ], [ 139.664172, -4.152438 ], [ 139.787954, -4.172176 ], [ 139.867155, -4.191925 ], [ 139.971067, -4.231437 ], [ 140.074965, -4.27589 ], [ 140.154094, -4.320349 ], [ 140.282675, -4.394449 ], [ 140.396367, -4.478436 ], [ 140.465547, -4.537724 ], [ 140.564378, -4.621714 ], [ 140.682938, -4.735352 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.974887, -4.844007 ], [ 140.816458, -4.814392 ], [ 140.7372, -4.814411 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.014629, -4.370041 ], [ 138.9355, -4.325582 ], [ 138.831602, -4.281128 ], [ 138.712773, -4.261389 ], [ 138.638469, -4.261406 ], [ 138.524607, -4.236723 ], [ 138.331446, -4.226885 ], [ 138.212617, -4.207146 ], [ 138.133402, -4.192339 ], [ 138.059169, -4.167646 ], [ 138.014601, -4.162715 ], [ 137.979997, -4.138013 ], [ 137.891257, -3.989774 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.831588, -4.28607 ], [ 138.757227, -4.305856 ], [ 138.697742, -4.320696 ], [ 138.648206, -4.320708 ], [ 138.618485, -4.320715 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.578842, -4.325667 ], [ 138.504538, -4.325684 ], [ 138.445095, -4.325699 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.39062, -4.32077 ], [ 138.321326, -4.301018 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.014601, -4.379925 ], [ 138.905622, -4.379951 ], [ 138.84124, -4.375024 ], [ 138.757072, -4.360218 ], [ 138.662954, -4.360241 ], [ 138.583696, -4.36026 ], [ 138.484625, -4.360283 ], [ 138.400442, -4.350419 ], [ 138.286524, -4.345504 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.237016, -4.335632 ], [ 138.113219, -4.320836 ], [ 138.073633, -4.306019 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.014219, -4.296149 ], [ 137.8806, -4.251703 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.831149, -4.222063 ], [ 137.702497, -4.172673 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.653032, -4.147975 ], [ 137.484894, -4.049175 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.861408, -3.817049 ], [ 136.965533, -3.78243 ], [ 137.064633, -3.772522 ], [ 137.168729, -3.747788 ], [ 137.287615, -3.747759 ], [ 137.480804, -3.747713 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.958869, -3.522826 ], [ 136.065306, -3.528111 ], [ 136.134409, -3.559956 ], [ 136.208849, -3.586489 ], [ 136.277936, -3.623643 ], [ 136.363022, -3.650174 ], [ 136.458768, -3.671392 ], [ 136.543869, -3.692612 ], [ 136.618385, -3.692595 ], [ 136.703532, -3.697885 ], [ 136.820599, -3.708477 ], [ 136.948326, -3.713757 ], [ 137.102682, -3.71372 ], [ 137.24107, -3.713687 ], [ 137.257037, -3.713683 ], [ 137.305002, -3.692431 ], [ 137.379549, -3.681793 ], [ 137.448743, -3.681776 ], [ 137.549872, -3.681752 ], [ 137.656248, -3.708278 ], [ 137.72012, -3.708263 ], [ 137.77333, -3.71356 ], [ 137.858446, -3.72947 ], [ 137.943623, -3.72414 ], [ 138.050121, -3.708184 ], [ 138.146004, -3.68161 ], [ 138.199291, -3.660357 ], [ 138.257886, -3.644412 ], [ 138.332509, -3.607223 ], [ 138.364475, -3.596595 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.214335, -3.756175 ], [ 137.262132, -3.793335 ], [ 137.304637, -3.819875 ], [ 137.363079, -3.857033 ], [ 137.421551, -3.88357 ], [ 137.453456, -3.894182 ], [ 137.517282, -3.910098 ], [ 137.591723, -3.936631 ], [ 137.714051, -3.968463 ], [ 137.81512, -3.989679 ], [ 137.894944, -3.99497 ], [ 137.937479, -4.010891 ], [ 138.038532, -4.037418 ], [ 138.166229, -4.053318 ], [ 138.251391, -4.053297 ], [ 138.35249, -4.063894 ], [ 138.416346, -4.069189 ], [ 138.458988, -4.047938 ], [ 138.506922, -4.037306 ], [ 138.592129, -4.021355 ], [ 138.597467, -4.016044 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.773026, -3.819764 ], [ 137.879433, -3.835669 ], [ 138.001837, -3.84095 ], [ 138.113566, -3.856854 ], [ 138.241355, -3.840893 ], [ 138.310579, -3.830256 ], [ 138.42243, -3.803678 ], [ 138.56097, -3.750544 ], [ 138.587644, -3.729297 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.475702, -3.787735 ], [ 138.55551, -3.798337 ], [ 138.640642, -3.808937 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.257033, -3.941782 ], [ 138.390114, -3.936441 ], [ 138.480613, -3.931109 ], [ 138.619077, -3.904525 ], [ 138.746865, -3.888564 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.544843, -3.352761 ], [ 136.619162, -3.421776 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.576489, -3.453647 ], [ 136.736442, -3.358025 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.938564, -3.405769 ], [ 136.991668, -3.448238 ], [ 137.055433, -3.485394 ], [ 137.124505, -3.527859 ], [ 137.177655, -3.554397 ], [ 137.25208, -3.58624 ], [ 137.422327, -3.61275 ], [ 137.512827, -3.607419 ], [ 137.645984, -3.575526 ], [ 137.741897, -3.538332 ], [ 137.901758, -3.474572 ], [ 137.971073, -3.432074 ], [ 138.061649, -3.400191 ], [ 138.114936, -3.378938 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.051156, -3.347092 ], [ 138.130873, -3.389554 ], [ 138.199991, -3.416089 ], [ 138.300999, -3.458546 ], [ 138.402053, -3.485073 ], [ 138.508429, -3.511598 ], [ 138.582915, -3.522201 ], [ 138.705335, -3.522172 ], [ 138.774529, -3.522155 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.700256, -3.43721 ], [ 138.827572, -3.585865 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.811985, -3.453114 ], [ 138.912825, -3.553983 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.039933, -3.548881 ], [ 138.162307, -3.564783 ], [ 138.263421, -3.570069 ], [ 138.375105, -3.601903 ], [ 138.486788, -3.633738 ], [ 138.561229, -3.660271 ], [ 138.672882, -3.702725 ], [ 138.784595, -3.72394 ], [ 138.906955, -3.745151 ], [ 139.008069, -3.750437 ], [ 139.093185, -3.766347 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.949231, -3.851344 ], [ 139.066511, -3.787594 ], [ 139.210465, -3.702597 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.076578, -3.989379 ], [ 139.156326, -4.021221 ], [ 139.214874, -4.021207 ], [ 139.294698, -4.026498 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.683542, -3.697413 ], [ 138.77944, -3.665529 ], [ 138.864663, -3.644268 ], [ 138.971115, -3.644242 ], [ 139.104135, -3.660141 ], [ 139.205142, -3.702599 ], [ 139.300873, -3.729127 ], [ 139.42311, -3.79282 ], [ 139.555978, -3.86182 ], [ 139.683629, -3.893651 ], [ 139.837924, -3.914855 ], [ 139.976236, -3.941373 ], [ 140.045277, -3.994458 ], [ 140.172761, -4.084701 ], [ 140.289508, -4.206807 ], [ 140.369013, -4.323612 ], [ 140.44324, -4.424487 ], [ 140.50156, -4.504126 ], [ 140.517437, -4.535983 ], [ 140.602538, -4.557204 ], [ 140.730143, -4.604965 ], [ 140.84172, -4.673971 ], [ 140.932037, -4.732361 ], [ 140.974527, -4.764212 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.870381, -3.506202 ], [ 138.928991, -3.484947 ], [ 139.014152, -3.484927 ], [ 139.088638, -3.49553 ], [ 139.179031, -3.527369 ], [ 139.269364, -3.580449 ], [ 139.354419, -3.6176 ], [ 139.455442, -3.654747 ], [ 139.551188, -3.675965 ], [ 139.67893, -3.675935 ], [ 139.732157, -3.675922 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.6367, -3.553811 ], [ 139.801092, -3.766179 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.742771, -3.68654 ], [ 139.811935, -3.697144 ], [ 139.88636, -3.728987 ], [ 139.944848, -3.750214 ], [ 140.008689, -3.760819 ], [ 140.104343, -3.813898 ], [ 140.194691, -3.861668 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.290285, -3.935988 ], [ 140.354019, -3.983764 ], [ 140.42303, -4.04747 ], [ 140.518578, -4.13772 ], [ 140.614081, -4.243901 ], [ 140.704185, -4.376634 ], [ 140.741291, -4.429727 ], [ 140.783659, -4.504059 ], [ 140.836656, -4.583699 ], [ 140.889746, -4.631478 ], [ 140.953495, -4.673944 ], [ 140.980078, -4.684558 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.945422, -3.776526 ], [ 140.887056, -3.712818 ], [ 140.860625, -3.649102 ], [ 140.834226, -3.574766 ], [ 140.807826, -3.50043 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.661803, -3.400525 ], [ 136.736183, -3.448299 ], [ 136.744063, -3.452441 ], [ 136.79475, -3.479084 ], [ 136.83716, -3.501376 ], [ 136.895633, -3.527913 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.74149, -3.453607 ], [ 136.744063, -3.452441 ], [ 136.800115, -3.427043 ], [ 136.79475, -3.479084 ], [ 136.79464, -3.480146 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.680648, -2.396897 ], [ 136.755042, -2.439361 ], [ 136.813484, -2.476518 ], [ 136.81808, -2.479799 ], [ 136.887849, -2.529602 ], [ 136.962213, -2.582686 ], [ 137.031179, -2.662322 ], [ 137.06833, -2.699485 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.818822, -2.471207 ], [ 136.81808, -2.479799 ], [ 136.813317, -2.53493 ], [ 136.861281, -2.513678 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.983427, -2.609232 ], [ 136.967277, -2.672958 ], [ 137.020564, -2.651704 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.867, -2.375612 ], [ 136.951994, -2.434004 ], [ 136.997626, -2.466578 ], [ 137.026358, -2.487088 ], [ 137.090108, -2.529554 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.952009, -2.428693 ], [ 136.951994, -2.434004 ], [ 136.951857, -2.481795 ], [ 136.997626, -2.466578 ], [ 136.999806, -2.465853 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.143456, -2.48706 ], [ 137.248556, -2.557072 ], [ 137.286892, -2.582609 ], [ 137.440959, -2.683465 ], [ 137.520615, -2.747168 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.249725, -2.550757 ], [ 137.248556, -2.557072 ], [ 137.238913, -2.609171 ], [ 137.30283, -2.593225 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.398454, -2.656925 ], [ 137.398302, -2.710026 ], [ 137.446266, -2.688774 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.606736, -2.412607 ], [ 137.654502, -2.460387 ], [ 137.718282, -2.492233 ], [ 137.776739, -2.52408 ], [ 137.86181, -2.555921 ], [ 137.94688, -2.587762 ], [ 138.010721, -2.598367 ], [ 138.090515, -2.614278 ], [ 138.165016, -2.619571 ], [ 138.223565, -2.619557 ], [ 138.292758, -2.61954 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.346719, -2.13654 ], [ 137.42636, -2.205553 ], [ 137.506063, -2.253326 ], [ 137.575135, -2.295791 ], [ 137.654852, -2.338253 ], [ 137.75583, -2.391331 ], [ 137.814333, -2.407247 ], [ 137.862221, -2.412546 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.585765, -2.301098 ], [ 137.479313, -2.301124 ], [ 137.410119, -2.30114 ], [ 137.346247, -2.301155 ], [ 137.293052, -2.290548 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.745626, -2.237338 ], [ 137.825495, -2.226699 ], [ 137.91598, -2.226677 ], [ 138.022462, -2.216031 ], [ 138.081011, -2.216017 ], [ 138.166173, -2.215997 ], [ 138.214076, -2.215986 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.954017, -2.634837 ], [ 140.821043, -2.603007 ], [ 140.719959, -2.587101 ], [ 140.59763, -2.555269 ], [ 140.512605, -2.507498 ], [ 140.427565, -2.465037 ], [ 140.390429, -2.422564 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.879334, -1.78618 ], [ 136.969788, -1.796778 ], [ 137.054935, -1.802068 ], [ 137.134758, -1.807359 ], [ 137.187969, -1.812657 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.61877, -1.701279 ], [ 136.740946, -1.786213 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.506919, -1.727856 ], [ 136.64517, -1.775615 ], [ 136.693012, -1.796844 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.623727, -1.828722 ], [ 136.527981, -1.807504 ], [ 136.453541, -1.780971 ], [ 136.38973, -1.759745 ], [ 136.363224, -1.72258 ], [ 136.320765, -1.680109 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.511861, -1.86061 ], [ 136.41613, -1.834082 ], [ 136.331075, -1.796931 ], [ 136.256665, -1.759777 ], [ 136.192916, -1.717311 ], [ 136.145119, -1.680151 ], [ 136.097383, -1.62175 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.134367, -1.717325 ], [ 136.038636, -1.690797 ], [ 135.964226, -1.653643 ], [ 135.905754, -1.627106 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.304991, -1.83918 ], [ 137.453978, -1.855075 ], [ 137.555077, -1.865671 ], [ 137.645501, -1.88689 ], [ 137.751922, -1.897485 ], [ 137.895496, -1.945243 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.422332, -1.754189 ], [ 137.534106, -1.754162 ], [ 137.629868, -1.77007 ], [ 137.746965, -1.770042 ], [ 137.853371, -1.785947 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.906597, -1.785935 ], [ 137.996991, -1.817774 ], [ 138.092676, -1.860233 ], [ 138.145841, -1.881461 ], [ 138.268033, -1.961084 ], [ 138.321152, -1.998243 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.725016, -2.226484 ], [ 138.836638, -2.279559 ], [ 138.97495, -2.306077 ], [ 139.097355, -2.311358 ], [ 139.177285, -2.279478 ], [ 139.262432, -2.284768 ], [ 139.358193, -2.300676 ], [ 139.432634, -2.327209 ], [ 139.501736, -2.359054 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.863236, -2.284863 ], [ 138.932628, -2.215814 ], [ 139.012589, -2.173314 ], [ 139.108411, -2.167981 ], [ 139.220201, -2.162644 ], [ 139.289319, -2.189179 ], [ 139.379681, -2.231639 ], [ 139.443446, -2.268795 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.26817, -1.913293 ], [ 138.379731, -1.987609 ], [ 138.491278, -2.067235 ], [ 138.511704, -2.07822 ], [ 138.629452, -2.141544 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.459373, -2.056622 ], [ 138.464573, -2.099102 ], [ 138.511704, -2.07822 ], [ 138.512538, -2.07785 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.016462, -2.905879 ], [ 139.798615, -2.773177 ], [ 139.70296, -2.720098 ], [ 139.601968, -2.67233 ], [ 139.564755, -2.656408 ], [ 139.500975, -2.624563 ], [ 139.405381, -2.550243 ], [ 139.325618, -2.523711 ], [ 139.24587, -2.491869 ], [ 139.176692, -2.486575 ], [ 139.107513, -2.481282 ], [ 138.995845, -2.444137 ], [ 138.916097, -2.412295 ], [ 138.815013, -2.396388 ], [ 138.735083, -2.428269 ], [ 138.666011, -2.385804 ], [ 138.596908, -2.353959 ], [ 138.511792, -2.338049 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.840911, -2.645961 ], [ 138.920811, -2.624701 ], [ 138.990111, -2.587513 ], [ 139.080778, -2.523769 ], [ 139.112836, -2.48128 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.299153, -2.698715 ], [ 140.40556, -2.71462 ], [ 140.496014, -2.725219 ], [ 140.575777, -2.751751 ], [ 140.644879, -2.783595 ], [ 140.669468, -2.799975 ], [ 140.724566, -2.836678 ], [ 140.809545, -2.90038 ], [ 140.907288, -2.936511 ], [ 140.953104, -2.953447 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.331074, -2.704017 ], [ 140.357535, -2.757113 ], [ 140.394915, -2.714623 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.607667, -2.767674 ], [ 140.602207, -2.815466 ], [ 140.669468, -2.799975 ], [ 140.671447, -2.799519 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.852065, -2.92161 ], [ 140.851944, -2.964092 ], [ 140.907288, -2.936511 ], [ 140.915906, -2.932216 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.02333, -1.913351 ], [ 138.094659, -1.952211 ], [ 138.140244, -1.977045 ], [ 138.225254, -2.030127 ], [ 138.277847, -2.067228 ], [ 138.315556, -2.093828 ], [ 138.400489, -2.17346 ], [ 138.501375, -2.258399 ], [ 138.612922, -2.338025 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.049897, -1.929275 ], [ 138.04976, -1.977067 ], [ 138.094659, -1.952211 ], [ 138.09774, -1.950505 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.278389, -2.061975 ], [ 138.277847, -2.067228 ], [ 138.272914, -2.115078 ], [ 138.320863, -2.099136 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.448271, -2.21593 ], [ 138.442796, -2.269033 ], [ 138.496037, -2.26371 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.272225, -2.582136 ], [ 139.341343, -2.60867 ], [ 139.421075, -2.645822 ], [ 139.490163, -2.682977 ], [ 139.575172, -2.736059 ], [ 139.676089, -2.810377 ], [ 139.792851, -2.927173 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.750377, -2.890012 ], [ 139.713088, -2.900641 ], [ 139.71321, -2.85816 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.580464, -2.746678 ], [ 139.521839, -2.773242 ], [ 139.522037, -2.70421 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.37854, -2.629902 ], [ 139.319885, -2.667087 ], [ 139.320067, -2.603365 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.442522, -2.364616 ], [ 138.628511, -2.470172 ], [ 138.676336, -2.497315 ], [ 138.678884, -2.498421 ], [ 138.628372, -2.518567 ], [ 138.628511, -2.470172 ], [ 138.628524, -2.465465 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.458459, -2.375233 ], [ 138.463584, -2.444264 ], [ 138.532854, -2.417696 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.814541, -2.561004 ], [ 138.819697, -2.619415 ], [ 138.872999, -2.592851 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.920826, -2.619391 ], [ 138.798604, -2.550387 ], [ 138.678884, -2.498421 ], [ 138.681659, -2.497314 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.441852, -2.598264 ], [ 138.542845, -2.646032 ], [ 138.61724, -2.688495 ], [ 138.686342, -2.72034 ], [ 138.750137, -2.746875 ], [ 138.840591, -2.757474 ], [ 138.890187, -2.766198 ], [ 138.93103, -2.773383 ], [ 139.026913, -2.74681 ], [ 139.074908, -2.714937 ], [ 139.170882, -2.656502 ], [ 139.266887, -2.587447 ], [ 139.336264, -2.523708 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.23486, -2.619316 ], [ 139.245338, -2.677725 ], [ 139.18688, -2.645878 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.957658, -2.768067 ], [ 138.925525, -2.837107 ], [ 138.890187, -2.766198 ], [ 138.88848, -2.762773 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.643807, -2.704419 ], [ 138.59052, -2.725673 ], [ 138.590657, -2.677881 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.500336, -2.84759 ], [ 139.547813, -2.996264 ], [ 139.551925, -3.002961 ], [ 139.573894, -3.038738 ], [ 139.590196, -3.065286 ], [ 139.659147, -3.150232 ], [ 139.733374, -3.251108 ], [ 139.791664, -3.341367 ], [ 139.855337, -3.410384 ], [ 139.956193, -3.505943 ], [ 139.982684, -3.548418 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.903074, -3.468785 ], [ 139.849847, -3.468797 ], [ 139.860645, -3.415693 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.722744, -3.2458 ], [ 139.674795, -3.261742 ], [ 139.690945, -3.198016 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.579627, -3.038737 ], [ 139.573894, -3.038738 ], [ 139.521079, -3.038751 ], [ 139.551925, -3.002961 ], [ 139.553121, -3.001573 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.234095, -3.112924 ], [ 140.223145, -3.21913 ], [ 140.22275, -3.357195 ], [ 140.248921, -3.511184 ], [ 140.285936, -3.596138 ], [ 140.323073, -3.63861 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.238307, -3.500566 ], [ 140.200927, -3.543056 ], [ 140.264752, -3.558971 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.936044, -3.107685 ], [ 140.020932, -3.203248 ], [ 140.079252, -3.282886 ], [ 140.164186, -3.362519 ], [ 140.178889, -3.378568 ], [ 140.222552, -3.426227 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.132311, -3.341286 ], [ 140.126867, -3.383768 ], [ 140.178889, -3.378568 ], [ 140.180108, -3.378446 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.97315, -3.160778 ], [ 139.95703, -3.213883 ], [ 140.015579, -3.213869 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.330115, -3.038559 ], [ 140.377821, -3.10758 ], [ 140.441464, -3.187217 ], [ 140.505152, -3.250924 ], [ 140.544801, -3.286165 ], [ 140.552934, -3.293394 ], [ 140.637974, -3.335855 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.3301, -3.043869 ], [ 140.308672, -3.091666 ], [ 140.356606, -3.081034 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.49983, -3.250925 ], [ 140.489017, -3.30934 ], [ 140.544801, -3.286165 ], [ 140.552964, -3.282774 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.592571, -2.236898 ], [ 139.656092, -2.359017 ], [ 139.690582, -2.39618 ], [ 139.725073, -2.433343 ], [ 139.799452, -2.481117 ], [ 139.905752, -2.534193 ], [ 139.937998, -2.555673 ], [ 139.969502, -2.576659 ], [ 139.973416, -2.579453 ], [ 140.043866, -2.629743 ], [ 140.070357, -2.672218 ], [ 140.086112, -2.746557 ], [ 140.181675, -2.831497 ], [ 140.1907, -2.842616 ], [ 140.233388, -2.895207 ], [ 140.250626, -2.916444 ], [ 140.303624, -2.996084 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.64017, -2.34309 ], [ 139.62405, -2.396196 ], [ 139.690582, -2.39618 ], [ 139.693243, -2.396179 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.94298, -2.544805 ], [ 139.937998, -2.555673 ], [ 139.916199, -2.603223 ], [ 139.973416, -2.579453 ], [ 139.980147, -2.576657 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.192305, -2.836805 ], [ 140.1907, -2.842616 ], [ 140.17617, -2.895221 ], [ 140.233388, -2.895207 ], [ 140.240041, -2.895205 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.962973, -3.224264 ], [ 140.899177, -3.197728 ], [ 140.803492, -3.15527 ], [ 140.766295, -3.134038 ], [ 140.702576, -3.080951 ], [ 140.622874, -3.033179 ], [ 140.597398, -3.007696 ], [ 140.575107, -2.985399 ], [ 140.566711, -2.979405 ], [ 140.500743, -2.932315 ], [ 140.452931, -2.900465 ], [ 140.357245, -2.858006 ], [ 140.298742, -2.842444 ], [ 140.277467, -2.836785 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.298758, -2.836779 ], [ 140.298742, -2.842444 ], [ 140.29859, -2.895191 ], [ 140.35723, -2.863316 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.569815, -2.974779 ], [ 140.566711, -2.979405 ], [ 140.537742, -3.022579 ], [ 140.597398, -3.007696 ], [ 140.601659, -3.006633 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.81943, -3.165886 ], [ 140.81394, -3.2243 ], [ 140.883225, -3.192422 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.53409, -4.819402 ], [ 140.627967, -4.903394 ], [ 140.702115, -4.957738 ], [ 140.776263, -5.012082 ], [ 140.821303, -5.041507 ], [ 140.870204, -5.073454 ], [ 140.904815, -5.096066 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.652706, -4.913272 ], [ 140.702285, -4.898434 ], [ 140.697175, -4.952797 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.82076, -5.041724 ], [ 140.821303, -5.041507 ], [ 140.870352, -5.021944 ], [ 140.870204, -5.073454 ], [ 140.870196, -5.076306 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.733182, -4.27103 ], [ 139.781338, -4.328869 ], [ 139.856596, -4.41926 ], [ 139.856597, -4.419261 ], [ 139.898372, -4.473957 ], [ 139.984908, -4.587258 ], [ 140.123013, -4.79479 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.748, -4.285852 ], [ 139.812425, -4.275953 ], [ 139.781338, -4.328869 ], [ 139.77758, -4.335265 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.851643, -4.419262 ], [ 139.856597, -4.419261 ], [ 139.916039, -4.419246 ], [ 139.901037, -4.46867 ], [ 139.898372, -4.473957 ], [ 139.896055, -4.478555 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.984922, -4.582316 ], [ 140.044365, -4.582302 ], [ 140.019455, -4.631728 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.068552, -4.784919 ], [ 140.127797, -4.854093 ], [ 140.196949, -4.923264 ], [ 140.236464, -4.962791 ], [ 140.261161, -4.987495 ], [ 140.33037, -5.036899 ], [ 140.379888, -5.075397 ], [ 140.419336, -5.106066 ], [ 140.488572, -5.145585 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.201916, -4.918321 ], [ 140.236591, -4.918313 ], [ 140.236464, -4.962791 ], [ 140.23645, -4.967733 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.335323, -5.036897 ], [ 140.384901, -5.02206 ], [ 140.379888, -5.075397 ], [ 140.379792, -5.076423 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.082825, -4.990009 ], [ 140.186709, -5.039404 ], [ 140.222183, -5.061062 ], [ 140.265827, -5.087707 ], [ 140.275717, -5.093745 ], [ 140.374576, -5.167851 ], [ 140.478347, -5.256783 ], [ 140.547541, -5.311128 ], [ 140.621675, -5.370415 ], [ 140.690883, -5.419818 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.22132, -5.061635 ], [ 140.222183, -5.061062 ], [ 140.265987, -5.031972 ], [ 140.265827, -5.087707 ], [ 140.265803, -5.096218 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.706934, -4.787476 ], [ 139.855357, -4.851687 ], [ 139.880089, -4.864036 ], [ 139.934501, -4.891204 ], [ 140.023524, -4.940603 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.830632, -4.836866 ], [ 139.880267, -4.80226 ], [ 139.880089, -4.864036 ], [ 139.880068, -4.871449 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.069055, -4.392267 ], [ 139.153167, -4.426841 ], [ 139.182846, -4.44166 ], [ 139.236021, -4.468211 ], [ 139.242204, -4.471298 ], [ 139.360976, -4.510806 ], [ 139.464917, -4.540433 ], [ 139.477715, -4.54469 ], [ 139.509456, -4.555248 ], [ 139.588685, -4.565114 ], [ 139.653011, -4.589808 ], [ 139.742062, -4.629323 ], [ 139.763107, -4.641147 ], [ 139.821192, -4.673782 ], [ 139.870614, -4.713307 ], [ 139.929972, -4.742945 ], [ 139.960906, -4.752204 ], [ 139.979466, -4.757759 ], [ 140.06362, -4.777507 ], [ 140.172599, -4.777481 ], [ 140.281577, -4.777455 ], [ 140.37077, -4.76755 ], [ 140.420348, -4.752712 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.182846, -4.44166 ], [ 139.227513, -4.411997 ], [ 139.236021, -4.468211 ], [ 139.237236, -4.476241 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.415423, -4.525619 ], [ 139.46009, -4.495956 ], [ 139.477715, -4.54469 ], [ 139.479749, -4.550313 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.712383, -4.614504 ], [ 139.747143, -4.584844 ], [ 139.763107, -4.641147 ], [ 139.766759, -4.654027 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 139.954698, -4.757765 ], [ 139.960906, -4.752204 ], [ 140.004361, -4.713275 ], [ 140.02402, -4.767632 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 140.276652, -4.767572 ], [ 140.296608, -4.718147 ], [ 140.346002, -4.767555 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.532765, -4.62985 ], [ 137.532766, -4.62985 ], [ 137.656747, -4.5804 ], [ 137.666151, -4.584482 ], [ 137.770537, -4.629793 ], [ 137.876707, -4.646722 ], [ 137.89432, -4.649531 ], [ 137.998303, -4.664333 ], [ 138.097318, -4.684077 ], [ 138.207948, -4.684051 ], [ 138.236018, -4.684044 ], [ 138.285554, -4.684032 ], [ 138.340086, -4.669193 ], [ 138.424268, -4.679057 ], [ 138.506454, -4.698343 ], [ 138.508422, -4.698805 ], [ 138.567794, -4.723501 ], [ 138.632149, -4.738312 ], [ 138.736174, -4.738287 ], [ 138.90962, -4.713536 ], [ 138.998855, -4.688804 ], [ 139.01289, -4.682807 ], [ 139.06829, -4.659136 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.211307, -4.447072 ], [ 137.241113, -4.417413 ], [ 137.241, -4.456949 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.379488, -4.531046 ], [ 137.419201, -4.501384 ], [ 137.41904, -4.557394 ], [ 137.419031, -4.560688 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.181614, -4.437195 ], [ 137.300344, -4.491529 ], [ 137.41904, -4.557394 ], [ 137.433878, -4.565627 ], [ 137.522887, -4.619968 ], [ 137.532766, -4.62985 ], [ 137.537705, -4.63479 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.61709, -4.590293 ], [ 137.646924, -4.55075 ], [ 137.666151, -4.584482 ], [ 137.66664, -4.58534 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.874506, -4.649536 ], [ 137.876707, -4.646722 ], [ 137.909308, -4.60505 ], [ 137.948795, -4.65446 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.151821, -4.679122 ], [ 138.171777, -4.629697 ], [ 138.207948, -4.684051 ], [ 138.211236, -4.688992 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.449036, -4.679051 ], [ 138.48875, -4.64939 ], [ 138.506454, -4.698343 ], [ 138.508408, -4.703747 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.671791, -4.73336 ], [ 138.696715, -4.678992 ], [ 138.73122, -4.738288 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 138.959198, -4.698698 ], [ 138.974243, -4.634448 ], [ 139.01289, -4.682807 ], [ 139.01373, -4.683859 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.692031, -4.150675 ], [ 136.751205, -4.244559 ], [ 136.790995, -4.28436 ], [ 136.840114, -4.333494 ], [ 136.894462, -4.382901 ], [ 137.003214, -4.461947 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.736415, -4.219852 ], [ 136.7959, -4.205012 ], [ 136.790995, -4.28436 ], [ 136.790706, -4.289028 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.904355, -4.387841 ], [ 136.953961, -4.363119 ], [ 136.958731, -4.427364 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.399869, -4.11615 ], [ 136.457807, -4.190267 ], [ 136.488707, -4.229796 ], [ 136.493831, -4.234407 ], [ 136.538116, -4.274262 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.454146, -4.190268 ], [ 136.457807, -4.190267 ], [ 136.518542, -4.190252 ], [ 136.493831, -4.234407 ], [ 136.493647, -4.234736 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.206622, -4.135965 ], [ 136.3004, -4.25455 ], [ 136.364599, -4.323723 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.265853, -4.210081 ], [ 136.325296, -4.210066 ], [ 136.30534, -4.259491 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.557562, -4.185539 ], [ 135.621732, -4.264596 ], [ 135.676172, -4.281571 ], [ 135.700918, -4.289287 ], [ 135.78503, -4.323861 ], [ 135.898863, -4.358428 ], [ 136.032581, -4.36828 ], [ 136.146556, -4.353427 ], [ 136.269989, -4.33801 ], [ 136.305127, -4.333621 ], [ 136.369566, -4.31878 ], [ 136.473519, -4.293882 ], [ 136.493491, -4.289098 ], [ 136.607508, -4.259419 ], [ 136.64224, -4.239643 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.611867, -4.249772 ], [ 135.676334, -4.225047 ], [ 135.676172, -4.281571 ], [ 135.676164, -4.284351 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.928599, -4.353479 ], [ 135.958462, -4.304052 ], [ 135.988013, -4.363349 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.210981, -4.343528 ], [ 136.230951, -4.289161 ], [ 136.269989, -4.33801 ], [ 136.270438, -4.338572 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.43402, -4.298997 ], [ 136.439101, -4.254517 ], [ 136.473519, -4.293882 ], [ 136.473662, -4.294045 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.152105, -3.928651 ], [ 135.226366, -3.94346 ], [ 135.232533, -3.944018 ], [ 135.280841, -3.948389 ], [ 135.369935, -3.973078 ], [ 135.463968, -4.002707 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.181826, -3.928644 ], [ 135.206736, -3.879218 ], [ 135.232533, -3.944018 ], [ 135.236245, -3.953341 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.409549, -3.97801 ], [ 135.449249, -3.953291 ], [ 135.463982, -3.997765 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.039362, -3.73076 ], [ 135.979678, -3.814788 ], [ 135.939951, -3.849392 ], [ 135.845663, -3.908718 ], [ 135.761353, -3.943332 ], [ 135.725451, -3.957102 ], [ 135.696885, -3.968058 ], [ 135.667164, -3.968065 ], [ 135.622553, -3.977959 ], [ 135.553146, -3.997744 ], [ 135.493675, -4.007642 ], [ 135.429264, -4.0126 ], [ 135.255861, -4.022525 ], [ 135.082443, -4.037392 ], [ 134.923886, -4.052256 ], [ 134.775236, -4.067117 ], [ 134.601875, -4.062217 ], [ 134.423546, -4.062259 ], [ 134.052056, -4.052464 ], [ 133.873727, -4.052506 ], [ 133.764748, -4.052532 ], [ 133.635927, -4.062447 ], [ 133.531902, -4.062472 ], [ 133.28912, -4.082298 ], [ 132.971991, -4.116967 ], [ 132.932334, -4.126861 ], [ 132.858031, -4.126878 ], [ 132.763913, -4.126901 ], [ 132.659972, -4.097274 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.677099, -3.958178 ], [ 135.677227, -3.9137 ], [ 135.725451, -3.957102 ], [ 135.726635, -3.958167 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.944932, -3.839506 ], [ 135.940092, -3.799971 ], [ 135.989628, -3.79996 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.722092, -4.03206 ], [ 136.613326, -3.957955 ], [ 136.559102, -3.907343 ], [ 136.53922, -3.888785 ], [ 136.521608, -3.873246 ], [ 136.455222, -3.814675 ], [ 136.415721, -3.770206 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.519449, -3.873964 ], [ 136.521608, -3.873246 ], [ 136.564073, -3.859127 ], [ 136.559102, -3.907343 ], [ 136.558978, -3.908548 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.69828, -3.69848 ], [ 136.796924, -3.760074 ], [ 136.816954, -3.772581 ], [ 136.841651, -3.797285 ], [ 136.891045, -3.846694 ], [ 136.984951, -3.920802 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 136.787261, -3.762704 ], [ 136.796924, -3.760074 ], [ 136.841792, -3.747865 ], [ 136.841651, -3.797285 ], [ 136.841637, -3.802228 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.073832, -4.019621 ], [ 137.178195, -4.077802 ], [ 137.286496, -4.138178 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.138129, -4.054199 ], [ 137.182796, -4.024537 ], [ 137.178195, -4.077802 ], [ 137.177673, -4.083842 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.420596, -4.014596 ], [ 137.262399, -3.903933 ], [ 137.07454, -3.77252 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 137.21791, -3.871326 ], [ 137.262549, -3.851547 ], [ 137.262399, -3.903933 ], [ 137.262365, -3.915794 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.860224, -0.79873 ], [ 135.695513, -0.697876 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.620768, -0.777546 ], [ 135.509267, -0.68199 ], [ 135.477453, -0.639516 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.59934, -0.825343 ], [ 135.498424, -0.751024 ], [ 135.445335, -0.703246 ], [ 135.392322, -0.628916 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.927105, -1.60586 ], [ 135.740859, -1.589974 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.661035, -1.584683 ], [ 135.501372, -1.579411 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.416211, -1.579431 ], [ 135.283145, -1.579463 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.203306, -1.579482 ], [ 135.048935, -1.584829 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.347504, -1.409522 ], [ 135.166535, -1.409565 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 135.097311, -1.420202 ], [ 134.942955, -1.420239 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.863101, -1.425568 ], [ 134.724759, -1.409671 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.639597, -1.409691 ], [ 134.506532, -1.409723 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.458643, -1.404424 ], [ 134.304318, -1.39384 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.245785, -1.388544 ], [ 134.118088, -1.372644 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.746232, -1.345943 ], [ 134.69293, -1.372507 ], [ 134.847255, -1.38309 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.687394, -1.446851 ], [ 134.825782, -1.446818 ], [ 134.761819, -1.478694 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.911663, -0.96912 ], [ 133.969968, -1.054069 ], [ 134.049442, -1.181494 ], [ 134.091673, -1.303618 ], [ 134.128566, -1.431053 ], [ 134.16009, -1.57442 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 134.085346, -1.654091 ], [ 133.926017, -1.531995 ], [ 133.819748, -1.468298 ], [ 133.724093, -1.415219 ], [ 133.601856, -1.351526 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.884395, -1.197464 ], [ 133.815171, -1.208101 ], [ 133.719288, -1.234674 ], [ 133.628804, -1.234696 ], [ 133.570179, -1.261261 ], [ 133.500878, -1.298448 ], [ 133.362628, -1.25069 ], [ 133.245698, -1.192306 ], [ 133.091555, -1.118 ], [ 132.958703, -1.043689 ], [ 132.863079, -0.97999 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.842454, -0.974446 ], [ 133.656771, -0.762084 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.688585, -0.804557 ], [ 133.518277, -0.799288 ], [ 133.379904, -0.794011 ], [ 133.284113, -0.788723 ], [ 133.161693, -0.788752 ], [ 133.097821, -0.788768 ], [ 132.948834, -0.772873 ], [ 132.863718, -0.756962 ], [ 132.762588, -0.756987 ], [ 132.634846, -0.757017 ], [ 132.528394, -0.757042 ], [ 132.459139, -0.7783 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 133.188032, -0.884329 ], [ 133.044321, -0.884364 ], [ 132.884674, -0.873781 ], [ 132.799542, -0.863181 ], [ 132.714426, -0.847271 ], [ 132.629295, -0.836671 ], [ 132.581437, -0.820752 ], [ 132.469769, -0.783607 ], [ 132.427218, -0.772997 ], [ 132.336765, -0.762398 ], [ 132.262294, -0.746485 ], [ 132.193145, -0.730571 ], [ 132.129335, -0.709346 ], [ 132.076139, -0.698738 ], [ 132.022974, -0.67751 ], [ 131.969824, -0.650972 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 132.171901, -0.714646 ], [ 132.326408, -0.661507 ], [ 132.432754, -0.698653 ], [ 132.533853, -0.709249 ], [ 132.603047, -0.709233 ], [ 132.666903, -0.714528 ], [ 132.784016, -0.70919 ], [ 132.869254, -0.682619 ], [ 132.890559, -0.677303 ], [ 132.970414, -0.671974 ], [ 133.055575, -0.671954 ], [ 133.124724, -0.687868 ], [ 133.215117, -0.719707 ], [ 133.300141, -0.767479 ], [ 133.342646, -0.79402 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 132.970429, -0.666664 ], [ 132.85873, -0.64014 ], [ 132.805534, -0.629532 ], [ 132.720418, -0.613622 ], [ 132.640579, -0.613641 ], [ 132.53948, -0.603045 ], [ 132.448996, -0.603066 ], [ 132.342544, -0.603092 ], [ 132.310608, -0.603099 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 132.156572, -0.491622 ], [ 132.257671, -0.502218 ], [ 132.358785, -0.507504 ], [ 132.427964, -0.512798 ], [ 132.534386, -0.523393 ], [ 132.646161, -0.523367 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 132.502724, -0.427818 ], [ 132.587779, -0.464969 ], [ 132.662265, -0.475571 ], [ 132.763334, -0.496788 ], [ 132.880447, -0.49145 ], [ 133.040125, -0.491412 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 132.13449, -0.767757 ], [ 131.985549, -0.735931 ], [ 131.831239, -0.720037 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 132.277744, -0.927028 ], [ 132.155355, -0.916436 ], [ 132.075515, -0.916455 ], [ 132.000999, -0.916473 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 132.12316, -1.006717 ], [ 131.974447, -0.895239 ], [ 131.900113, -0.831534 ], [ 131.820502, -0.751901 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 131.878883, -0.810299 ], [ 131.697762, -0.863444 ], [ 131.537993, -0.895343 ], [ 131.420835, -0.916611 ], [ 131.319705, -0.916636 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 131.767291, -0.746603 ], [ 131.639442, -0.783805 ], [ 131.532914, -0.810381 ], [ 131.389142, -0.831656 ], [ 131.272015, -0.842304 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 130.872515, -0.948603 ], [ 130.76588, -1.012351 ], [ 130.685919, -1.054851 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 131.321577, -0.263484 ], [ 131.188755, -0.178552 ], [ 131.077102, -0.136098 ], [ 130.933544, -0.08303 ], [ 130.837737, -0.083053 ], [ 130.709979, -0.088394 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 130.698999, -0.20522 ], [ 130.581917, -0.199938 ], [ 130.438207, -0.199972 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 130.369526, -1.878004 ], [ 130.241723, -1.899275 ], [ 130.172483, -1.915222 ], [ 130.0872, -1.957724 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 129.789179, -1.941864 ], [ 129.895769, -1.894047 ], [ 129.938425, -1.867486 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 129.853431, -1.809094 ], [ 129.959655, -1.888722 ], [ 130.06594, -1.947108 ], [ 130.129705, -1.984264 ], [ 130.241358, -2.026719 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.105676, -0.402553 ], [ 127.201376, -0.439701 ], [ 127.238604, -0.450313 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.439996, -0.752945 ], [ 127.520002, -0.694514 ], [ 127.605316, -0.641392 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 128.169208, -0.747461 ], [ 128.079135, -0.604107 ], [ 128.020891, -0.497918 ], [ 127.936185, -0.338633 ], [ 127.878048, -0.195272 ], [ 127.820032, -0.009429 ], [ 127.80446, 0.128631 ], [ 127.794195, 0.261383 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.888571, -0.237751 ], [ 127.803531, -0.19529 ], [ 127.739782, -0.152823 ], [ 127.665417, -0.099739 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 128.084427, -0.614726 ], [ 128.015248, -0.609433 ], [ 127.940747, -0.60414 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 128.61412, 0.346541 ], [ 128.508063, 0.484581 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 128.518511, 0.415551 ], [ 128.305804, 0.484533 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 128.183415, 0.495124 ], [ 128.023874, 0.542877 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.938484, 0.463204 ], [ 127.896207, 0.569398 ], [ 127.86453, 0.659663 ], [ 127.84876, 0.728692 ], [ 127.849095, 0.845516 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 128.035021, 0.718116 ], [ 128.141762, 0.819034 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 128.488295, 1.015594 ], [ 128.573654, 1.084646 ], [ 128.696394, 1.196189 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 128.386907, 0.925296 ], [ 128.429853, 1.052751 ], [ 128.493998, 1.148349 ], [ 128.563405, 1.222708 ], [ 128.632736, 1.270516 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 128.286005, 1.004925 ], [ 128.32886, 1.100518 ], [ 128.424941, 1.196124 ], [ 128.48901, 1.265172 ], [ 128.558265, 1.286429 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 128.185469, 1.211998 ], [ 128.297488, 1.296987 ], [ 128.393477, 1.360732 ], [ 128.452132, 1.397918 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.580229, 1.748181 ], [ 127.713447, 1.801315 ], [ 127.825358, 1.849133 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 128.326505, 2.136002 ], [ 128.35908, 2.359037 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 128.443983, 2.268784 ], [ 128.524142, 2.380317 ], [ 128.577703, 2.497154 ], [ 128.604483, 2.555572 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 141.983821, -1.379786 ], [ 141.776439, -1.477068 ], [ 141.605883, -1.477109 ], [ 141.362511, -1.379934 ], [ 141.106852, -1.319224 ], [ 140.790001, -1.355762 ], [ 140.582654, -1.44089 ], [ 140.338759, -1.526027 ], [ 140.046065, -1.635484 ], [ 139.838683, -1.732766 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 141.968503, -2.473658 ], [ 141.773722, -2.425088 ], [ 141.542358, -2.388681 ], [ 141.201525, -2.291529 ], [ 140.909388, -2.20652 ], [ 140.56859, -2.097214 ], [ 140.179202, -1.939304 ], [ 139.85083, -1.744917 ], [ 139.522633, -1.489759 ], [ 139.218696, -1.271058 ], [ 138.805187, -1.028075 ], [ 138.403685, -0.845859 ], [ 137.989966, -0.6758 ], [ 137.612656, -0.554349 ], [ 137.186685, -0.408602 ], [ 136.809339, -0.299305 ], [ 136.32242, -0.165726 ], [ 136.115491, -0.105005 ], [ 135.945145, -0.032121 ], [ 135.896554, 0.016484 ], [ 135.543748, 0.186557 ], [ 135.105699, 0.368764 ], [ 134.618884, 0.538805 ], [ 134.229356, 0.648099 ], [ 133.937115, 0.696646 ], [ 133.669168, 0.72089 ], [ 133.43763, 0.696527 ], [ 133.230353, 0.635707 ], [ 132.974241, 0.538413 ], [ 132.742389, 0.404663 ], [ 132.534624, 0.173686 ], [ 132.314711, -0.04514 ], [ 132.033921, -0.251826 ], [ 131.85073, -0.409873 ], [ 131.740947, -0.458516 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 131.679895, -0.507147 ], [ 131.460226, -0.640894 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 131.387026, -0.677374 ], [ 131.179644, -0.774656 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 131.08208, -0.811141 ], [ 130.874802, -0.871961 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 130.801602, -0.908441 ], [ 130.56996, -0.969267 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 130.460282, -0.981447 ], [ 130.289587, -1.030104 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 130.204309, -1.030124 ], [ 129.984884, -1.078793 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 124.234897, -1.019392 ], [ 124.734172, -1.092198 ], [ 125.306647, -1.128524 ], [ 125.708636, -1.140582 ], [ 126.354242, -1.164737 ], [ 126.805066, -1.140321 ], [ 127.389932, -1.103719 ], [ 127.779774, -1.103626 ], [ 128.120885, -1.103545 ], [ 128.632517, -1.115577 ], [ 129.058871, -1.12763 ], [ 129.400052, -1.10324 ], [ 129.728981, -1.103162 ], [ 129.911824, -1.066656 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.062139, -1.067573 ], [ 125.98887, -1.128361 ], [ 126.196008, -1.116158 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.000878, -1.189129 ], [ 126.183616, -1.189085 ], [ 126.098234, -1.225568 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 129.273116, 1.36401 ], [ 129.577192, 1.193925 ], [ 129.869085, 1.023837 ], [ 130.148691, 0.817284 ], [ 130.525514, 0.525676 ], [ 130.78079, 0.331271 ], [ 130.975502, 0.258393 ], [ 131.230987, 0.136913 ], [ 131.547072, -0.093939 ], [ 131.778052, -0.264041 ], [ 131.911782, -0.361242 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 130.708113, 0.477103 ], [ 130.610722, 0.501388 ], [ 130.780965, 0.392042 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 130.574001, 0.440609 ], [ 130.707695, 0.331254 ], [ 130.6346, 0.331236 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.958497, 5.276837 ], [ 126.006322, 4.960842 ], [ 126.054285, 4.693463 ], [ 126.10204, 4.35316 ], [ 126.101448, 4.14654 ], [ 126.003465, 3.964206 ], [ 125.941925, 3.745418 ], [ 125.965489, 3.465879 ], [ 125.964619, 3.162027 ], [ 125.866009, 2.760918 ], [ 125.755286, 2.384115 ], [ 125.68125, 2.055937 ], [ 125.643692, 1.703459 ], [ 125.569761, 1.411744 ], [ 125.410378, 1.059237 ], [ 125.178143, 0.791792 ], [ 124.945839, 0.500038 ], [ 124.786664, 0.220456 ], [ 124.77375, -0.034783 ], [ 124.773158, -0.241402 ], [ 124.906295, -0.545223 ], [ 125.10031, -0.861183 ], [ 125.245804, -1.10423 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.604116, 5.617543 ], [ 127.469446, 5.386584 ], [ 127.451867, 5.274661 ], [ 127.41981, 5.070565 ], [ 127.382357, 4.75455 ], [ 127.393669, 4.450701 ], [ 127.417093, 4.122546 ], [ 127.452569, 3.854981 ], [ 127.46373, 3.770811 ], [ 127.476717, 3.672859 ], [ 127.560567, 3.174561 ], [ 127.608322, 2.834258 ], [ 127.522243, 2.554693 ], [ 127.362825, 2.190033 ], [ 127.19457, 1.900466 ], [ 127.179181, 1.873982 ], [ 127.056659, 1.630872 ], [ 126.921745, 1.314833 ], [ 126.884466, 1.059588 ], [ 126.843837, 0.893617 ], [ 126.798178, 0.707099 ], [ 126.675238, 0.318139 ], [ 126.641474, 0.108585 ], [ 126.628953, 0.030876 ], [ 126.600819, -0.143734 ], [ 126.624034, -0.544814 ], [ 126.708894, -0.690642 ], [ 126.790042, -0.812583 ], [ 126.878718, -0.945838 ], [ 127.02463, -1.043036 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.65028, 0.111513 ], [ 126.641474, 0.108585 ], [ 126.540533, 0.075025 ], [ 126.628953, 0.030876 ], [ 126.637854, 0.026432 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.859857, 0.974504 ], [ 126.774579, 0.974483 ], [ 126.843837, 0.893617 ], [ 126.84743, 0.889422 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.240442, 1.995538 ], [ 127.118616, 1.995509 ], [ 127.19457, 1.900466 ], [ 127.215728, 1.873991 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.583957, 2.834252 ], [ 127.474244, 2.809918 ], [ 127.571565, 2.761325 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.452875, 3.855164 ], [ 127.452569, 3.854981 ], [ 127.391857, 3.818688 ], [ 127.46373, 3.770811 ], [ 127.464813, 3.770089 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.370105, 4.730239 ], [ 127.296905, 4.693759 ], [ 127.382009, 4.633009 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.45695, 5.277194 ], [ 127.451867, 5.274661 ], [ 127.35935, 5.228554 ], [ 127.432237, 5.155647 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.720937, -0.739256 ], [ 126.684146, -0.824343 ], [ 126.790042, -0.812583 ], [ 126.793824, -0.812163 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 129.236638, 1.388309 ], [ 129.188151, 1.473376 ], [ 129.200299, 1.461225 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 129.176178, 1.546298 ], [ 129.140536, 1.862296 ], [ 129.129398, 2.226916 ], [ 129.093826, 2.567222 ], [ 129.02181, 2.943981 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.736337, 7.804358 ], [ 123.687119, 7.634189 ], [ 123.706812733, 7.22830718402 ], [ 123.679616935, 6.89107928448 ], [ 123.690495254, 6.57560802362 ], [ 123.695934414, 6.42875071253 ], [ 123.76664349, 6.21118432573 ], [ 123.889659, 6.042051 ], [ 123.986736, 5.90838 ], [ 124.294241978, 5.78692987147 ], [ 124.510063, 5.726193 ], [ 124.74569223, 5.69990331675 ], [ 124.936062819, 5.60743760236 ], [ 125.04484601199999, 5.41706701391 ], [ 125.110115928, 5.15054819008 ], [ 125.11555508799999, 4.8568335679 ], [ 125.110115928, 4.49784902968 ], [ 125.066602651, 4.17693860915 ], [ 125.050285172, 4.07903373509 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.307536435, 8.00066785716 ], [ 127.30209727499999, 7.62536583993 ], [ 127.318414754, 6.99986247788 ], [ 127.30209727499999, 6.49945978824 ], [ 127.356488872, 6.26557592243 ], [ 127.604046, 5.593235 ], [ 128.125597, 4.79119 ], [ 128.574296, 4.074205 ], [ 128.877222, 3.503035 ], [ 128.997794, 3.065517 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 118.914913064, 4.03552045773 ], [ 119.273897602, 4.12254701245 ], [ 119.562173065, 4.27484348321 ], [ 119.80149609, 4.39450499595 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 118.349240459, 3.92129810466 ], [ 118.55048936599999, 3.95937222235 ], [ 118.82244735, 4.00288549971 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 119.883083485, 4.43257911364 ], [ 120.220311385, 4.62838886176 ], [ 120.590174243, 4.8568335679 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.64456583899999, 4.90034684526 ], [ 120.887005, 5.098634 ], [ 121.228848, 5.353952 ], [ 121.33877, 5.451211 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.411934, 5.475536 ], [ 121.607238, 5.609278 ], [ 121.824863488, 5.7814907118 ], [ 122.09138231199999, 5.96642214058 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.17296970699999, 6.04257037596 ], [ 122.828175, 6.545434 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 122.901445, 6.606222 ], [ 123.231279, 6.922306 ], [ 123.413098111, 7.10864567128 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 123.456611389, 7.16303726798 ], [ 123.634348, 7.287025 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 125.94136, -2.828046 ], [ 126.185429, -2.682139 ], [ 126.368411, -2.597017 ], [ 126.636566, -2.548336 ], [ 126.929052, -2.511804 ], [ 127.209285, -2.499584 ], [ 127.452936, -2.499526 ], [ 127.635709, -2.487328 ], [ 127.842882, -2.46297 ], [ 128.037907, -2.426462 ], [ 128.269654, -2.329174 ], [ 128.428027, -2.329136 ], [ 128.561931, -2.365566 ], [ 128.79326, -2.414128 ], [ 129.048884, -2.486991 ], [ 129.304613, -2.523392 ], [ 129.79181, -2.559739 ], [ 130.084087, -2.596131 ], [ 130.485867, -2.681114 ], [ 130.850995, -2.802568 ], [ 131.167323, -2.948342 ], [ 131.31327, -3.033386 ], [ 131.592876, -3.239939 ], [ 131.738823, -3.324982 ], [ 131.848362, -3.361419 ], [ 131.982056, -3.470774 ], [ 132.200715, -3.689495 ], [ 132.382826, -3.908225 ], [ 132.516451, -4.041888 ], [ 132.650285, -4.102627 ], [ 132.893622, -4.211956 ], [ 133.051333, -4.442846 ], [ 133.172323, -4.734515 ], [ 133.305669, -4.965411 ], [ 133.475911, -5.074757 ], [ 133.573058, -5.184121 ], [ 133.633448, -5.366418 ], [ 133.620917, -5.487962 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 127.140874, -9.366661 ], [ 127.384803, -9.26937 ], [ 127.689646, -9.172064 ], [ 127.945653, -9.111233 ], [ 128.213808, -9.062553 ], [ 128.750084, -8.977346 ], [ 129.152213, -8.940788 ], [ 129.469098, -8.892096 ], [ 129.822671, -8.794779 ], [ 130.432042, -8.709556 ], [ 130.95624, -8.58789 ], [ 131.371004, -8.393325 ], [ 131.627394, -8.198799 ], [ 131.896281, -7.894883 ], [ 132.214107, -7.51803 ], [ 132.532177, -7.056099 ], [ 132.837542, -6.776482 ], [ 133.265499, -6.229446 ], [ 133.559378, -5.70675 ], [ 133.645422, -5.43934 ], [ 133.657535, -5.463645 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 126.616362, -9.597713 ], [ 127.018874, -9.42746 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 120.545683, -11.977943 ], [ 120.910741, -12.123705 ], [ 121.105592, -12.147967 ], [ 121.33713, -12.123604 ], [ 121.581234, -11.965542 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 121.553813, -11.968967 ], [ 121.980655, -11.810862 ], [ 122.334437, -11.640621 ], [ 122.871444, -11.300178 ], [ 123.152026, -11.166416 ], [ 123.335043, -11.06914 ], [ 123.566755, -10.984006 ], [ 123.969232, -10.825907 ], [ 124.38403, -10.619189 ], [ 124.689221, -10.400342 ], [ 124.945577, -10.21797 ], [ 125.043316, -10.120714 ], [ 125.616418, -9.938266 ], [ 126.067556, -9.804464 ], [ 126.518763, -9.646353 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 93.992098, 2.733181 ], [ 94.236421, 2.552693 ], [ 94.47022, 2.414684 ], [ 94.565966, 2.393466 ], [ 94.736107, 2.329785 ], [ 94.853052, 2.276711 ], [ 94.991044, 2.138679 ], [ 95.139742, 2.021891 ], [ 95.320498, 1.947591 ], [ 95.490608, 1.87329 ], [ 95.681826, 1.735271 ], [ 95.926088, 1.533542 ], [ 96.138353, 1.310565 ], [ 96.339973, 1.087586 ], [ 96.488367, 0.864594 ], [ 96.710881, 0.503555 ], [ 96.859305, 0.291183 ], [ 97.01804, -0.03801 ], [ 97.145052, -0.292868 ], [ 97.250865, -0.51587 ], [ 97.452211, -0.834432 ], [ 97.579284, -1.06805 ], [ 97.770198, -1.312272 ], [ 97.950284, -1.62022 ], [ 98.056249, -1.79012 ], [ 98.215166, -2.055591 ], [ 98.374205, -2.27858 ], [ 98.459093, -2.374143 ], [ 98.575825, -2.50156 ], [ 98.777475, -2.713919 ], [ 98.926143, -2.841327 ], [ 99.117057, -3.08555 ], [ 99.286863, -3.266055 ], [ 99.721643, -3.850071 ], [ 99.859422, -4.062445 ], [ 100.0184, -4.306676 ], [ 100.124548, -4.412854 ], [ 100.209131, -4.61462 ], [ 100.336326, -4.805756 ], [ 100.400014, -4.869463 ], [ 100.601665, -5.081822 ], [ 100.803102, -5.368524 ], [ 101.004631, -5.623364 ], [ 101.110718, -5.750783 ], [ 101.238034, -5.899437 ], [ 101.418363, -6.122422 ], [ 101.556234, -6.302935 ], [ 101.725949, -6.515302 ], [ 102.012456, -6.833844 ], [ 102.299086, -7.109905 ], [ 102.500858, -7.279782 ], [ 102.755886, -7.439027 ], [ 102.989655, -7.587656 ], [ 103.202224, -7.704429 ], [ 103.351136, -7.746875 ], [ 103.574472, -7.821164 ], [ 103.925429, -7.937904 ], [ 104.180732, -8.001566 ], [ 104.361518, -8.065245 ], [ 104.574087, -8.182018 ], [ 104.797302, -8.298789 ], [ 104.977845, -8.44743 ], [ 105.190201, -8.638546 ], [ 105.381328, -8.808426 ], [ 105.530117, -8.893354 ], [ 105.689552, -8.978278 ], [ 105.934027, -9.105664 ], [ 106.210498, -9.211802 ], [ 106.529428, -9.360411 ], [ 106.805808, -9.49841 ], [ 107.114093, -9.647021 ], [ 107.273467, -9.753187 ], [ 107.400966, -9.838119 ], [ 107.64538, -9.986746 ], [ 107.932466, -10.103501 ], [ 108.262011, -10.262728 ], [ 108.559803, -10.35824 ], [ 108.804522, -10.400663 ], [ 109.092064, -10.358113 ], [ 109.315583, -10.36868 ], [ 109.517842, -10.368632 ], [ 109.805385, -10.326082 ], [ 110.039519, -10.347267 ], [ 110.380166, -10.347186 ], [ 110.614239, -10.389612 ], [ 110.773886, -10.400194 ], [ 110.9655, -10.400148 ], [ 111.103827, -10.421356 ], [ 111.305995, -10.453169 ], [ 111.497518, -10.484984 ], [ 111.784756, -10.548638 ], [ 112.008062, -10.633547 ], [ 112.156943, -10.686614 ], [ 112.38034, -10.739662 ], [ 112.656933, -10.803318 ], [ 112.965522, -10.845726 ], [ 113.157045, -10.877542 ], [ 113.412317, -10.951823 ], [ 113.816592, -11.03669 ], [ 114.178438, -11.068465 ], [ 114.465859, -11.068396 ], [ 114.785063, -11.121422 ], [ 115.05098, -11.195701 ], [ 115.274438, -11.227509 ], [ 115.433995, -11.269952 ], [ 115.604318, -11.269912 ], [ 115.700156, -11.259268 ], [ 115.89177, -11.259223 ], [ 116.168454, -11.291018 ], [ 116.381297, -11.312208 ], [ 116.658012, -11.333383 ], [ 117.062408, -11.375768 ], [ 117.328539, -11.375704 ], [ 117.647956, -11.354387 ], [ 117.882212, -11.333091 ], [ 118.137849, -11.279928 ], [ 118.36152, -11.237394 ], [ 118.574455, -11.226722 ], [ 118.744839, -11.205441 ], [ 118.87243, -11.258513 ], [ 119.138439, -11.300931 ], [ 119.42592, -11.279621 ], [ 119.659963, -11.332667 ], [ 119.946957, -11.481284 ], [ 120.223124, -11.693625 ], [ 120.414282, -11.852885 ], [ 120.552274, -11.990916 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.529652, -8.800231 ], [ 116.694152, -8.531833 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "LineString", "coordinates": [ [ 116.729371, -8.485154 ], [ 116.788582, -8.228449 ], [ 116.824236, -8.030089 ], [ 116.954454, -7.481673 ], [ 117.189793, -6.979903 ], [ 117.600827, -6.384749 ], [ 117.964912, -5.847945 ], [ 118.223408, -5.427843 ], [ 118.789153, -3.899231 ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 128.41933, -3.051851 ], [ 128.382104, -3.029538 ], [ 128.430656, -3.003484 ], [ 128.41933, -3.051851 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 128.743905, -2.999689 ], [ 128.71794, -2.951331 ], [ 128.773865, -2.955038 ], [ 128.743905, -2.999689 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 128.557475, -2.992293 ], [ 128.606016, -2.969959 ], [ 128.59468, -3.022046 ], [ 128.557475, -2.992293 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.060467, -3.140986 ], [ 129.064377, -3.077739 ], [ 129.116488, -3.11121 ], [ 129.060467, -3.140986 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.388216, -3.282279 ], [ 129.384647, -3.226476 ], [ 129.444237, -3.252504 ], [ 129.388216, -3.282279 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 128.922706, -3.066612 ], [ 128.934064, -3.007084 ], [ 128.978748, -3.029396 ], [ 128.922706, -3.066612 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.243072, -3.181866 ], [ 129.254419, -3.126058 ], [ 129.295332, -3.163251 ], [ 129.243072, -3.181866 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.972795, -1.696271 ], [ 140.04603, -1.647638 ], [ 140.033568, -1.744873 ], [ 139.972795, -1.696271 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.337902, -1.465018 ], [ 141.313816, -1.367792 ], [ 141.386841, -1.392082 ], [ 141.337902, -1.465018 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.582619, -1.453044 ], [ 140.655819, -1.416565 ], [ 140.619027, -1.501652 ], [ 140.582619, -1.453044 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.022358, 0.684512 ], [ 134.168444, 0.648085 ], [ 134.070774, 0.575137 ], [ 134.022358, 0.684512 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.047406, 0.562739 ], [ 133.144971, 0.599225 ], [ 133.144657, 0.489838 ], [ 133.047406, 0.562739 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 139.352043, -1.501954 ], [ 139.376756, -1.380407 ], [ 139.449642, -1.453314 ], [ 139.352043, -1.501954 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.339111, -0.03298 ], [ 132.400303, 0.064267 ], [ 132.424319, -0.057268 ], [ 132.339111, -0.03298 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 136.809339, -0.299305 ], [ 136.894547, -0.323593 ], [ 136.845538, -0.420837 ], [ 136.809339, -0.299305 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 134.910952, 0.429488 ], [ 135.020525, 0.405206 ], [ 134.959404, 0.332267 ], [ 134.910952, 0.429488 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 140.178958, -2.024383 ], [ 140.167054, -1.927153 ], [ 140.252192, -1.975749 ], [ 140.178958, -2.024383 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.968225, -2.57089 ], [ 141.919773, -2.473669 ], [ 141.992868, -2.473652 ], [ 141.968225, -2.57089 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 137.746524, -0.602934 ], [ 137.831698, -0.639376 ], [ 137.758463, -0.68801 ], [ 137.746524, -0.602934 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 141.067378, -2.340177 ], [ 141.043292, -2.24295 ], [ 141.116282, -2.279395 ], [ 141.067378, -2.340177 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 135.896206, -0.105057 ], [ 135.896554, 0.016484 ], [ 135.945145, -0.032121 ], [ 135.896206, -0.105057 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 138.586145, -0.943048 ], [ 138.659135, -0.979493 ], [ 138.598083, -1.028124 ], [ 138.586145, -0.943048 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.668824, 1.970855 ], [ 125.692106013, 2.0828621362 ], [ 125.757375929, 2.02303137983 ], [ 125.668824, 1.970855 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.958091, 0.524349 ], [ 125.03143, 0.609445 ], [ 125.079881, 0.512224 ], [ 124.958091, 0.524349 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.039281, 3.708978 ], [ 125.953795, 3.636034 ], [ 125.954143, 3.757575 ], [ 126.039281, 3.708978 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.19971, 4.426108 ], [ 126.102075, 4.365314 ], [ 126.089164669, 4.45977491199 ], [ 126.19971, 4.426108 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.067757, 5.143168 ], [ 125.98234, 5.094531 ], [ 125.974942316, 5.21037894645 ], [ 126.067757, 5.143168 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.887915761, 2.81714869165 ], [ 125.90423324, 2.91505356571 ], [ 125.975895, 2.846023 ], [ 125.890548, 2.821694 ], [ 125.887915761, 2.81714869165 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.773367, -0.168478 ], [ 124.773611, -0.083399 ], [ 124.858749, -0.131995 ], [ 124.773367, -0.168478 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.015451, -0.715354 ], [ 125.088546, -0.715337 ], [ 125.063937, -0.800421 ], [ 125.015451, -0.715354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.496108, 1.217261 ], [ 125.520682, 1.290191 ], [ 125.581421, 1.229435 ], [ 125.496108, 1.217261 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.028528533, 5.4551411316 ], [ 124.957819458, 5.57480264434 ], [ 125.055724332, 5.56936348467 ], [ 125.028528533, 5.4551411316 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.195268, 4.641604 ], [ 125.110115928, 4.5848755844 ], [ 125.120994248, 4.70453709714 ], [ 125.195268, 4.641604 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.68505609499999, 6.58104718329 ], [ 123.76120433, 6.55929054461 ], [ 123.695934414, 6.4885814689 ], [ 123.701373574, 6.57016886395 ], [ 123.68505609499999, 6.58104718329 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.10535, 5.850676 ], [ 124.187765, 5.914505 ], [ 124.193569, 5.814235 ], [ 124.10535, 5.850676 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.649583, 7.289308 ], [ 123.662061, 7.39262 ], [ 123.735, 7.337944 ], [ 123.649583, 7.289308 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 128.800922, 3.447564 ], [ 128.849931, 3.544808 ], [ 128.8862, 3.447584 ], [ 128.800922, 3.447564 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.201709, 6.546476 ], [ 127.307536435, 6.61368214131 ], [ 127.30209727499999, 6.50489894791 ], [ 127.201709, 6.546476 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.203346, 7.117718 ], [ 127.312975595, 7.17391558732 ], [ 127.312975595, 7.07057155359 ], [ 127.203346, 7.117718 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 128.255599, 4.456223 ], [ 128.268025, 4.541305 ], [ 128.328694, 4.456241 ], [ 128.255599, 4.456223 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.928099, 4.954463 ], [ 127.964855, 5.027396 ], [ 128.013376, 4.954483 ], [ 127.928099, 4.954463 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 128.534439, 3.98228 ], [ 128.583343, 4.043062 ], [ 128.6319, 3.982304 ], [ 128.534439, 3.98228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.205053, 7.713269 ], [ 127.307536435, 7.76134483168 ], [ 127.30209727499999, 7.65256163828 ], [ 127.205053, 7.713269 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.030719, 2.864222 ], [ 128.969876, 2.888516 ], [ 129.01878, 2.949298 ], [ 129.030719, 2.864222 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.370558, 5.950966 ], [ 127.44351542699999, 6.02625289695 ], [ 127.470711225, 5.9446655019 ], [ 127.370558, 5.950966 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.649189, 5.404098 ], [ 127.685876, 5.452723 ], [ 127.734467, 5.404118 ], [ 127.649189, 5.404098 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.114464, 2.329462 ], [ 129.041473, 2.365907 ], [ 129.102456, 2.39023 ], [ 129.114464, 2.329462 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.149374, 1.758228 ], [ 129.088636, 1.818984 ], [ 129.145972403, 1.84897827039 ], [ 129.149374, 1.758228 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 119.312705, 4.138086 ], [ 119.31741088, 4.23133020585 ], [ 119.388119956, 4.18781692849 ], [ 119.312705, 4.138086 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.236628864, 4.6392671811 ], [ 120.242068024, 4.71541541648 ], [ 120.313206, 4.673105 ], [ 120.236628864, 4.6392671811 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.121357, 6.825048 ], [ 123.097167, 6.885812 ], [ 123.18241, 6.873678 ], [ 123.121357, 6.825048 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.997136, 5.268818 ], [ 121.057944, 5.23237 ], [ 121.009074, 5.183742 ], [ 120.997136, 5.268818 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 122.49848, 6.277965 ], [ 122.483001808, 6.35804163682 ], [ 122.559532, 6.326596 ], [ 122.49848, 6.277965 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.770471891, 5.8358823085 ], [ 121.852059286, 5.81412566982 ], [ 121.770471891, 5.74341659411 ], [ 121.770471891, 5.8358823085 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.474341131, 3.94849390301 ], [ 118.506976089, 4.01920297872 ], [ 118.55048936599999, 3.95937222235 ], [ 118.474341131, 3.94849390301 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.838703, -7.794245 ], [ 131.972711, -7.794213 ], [ 131.911484, -7.903615 ], [ 131.838703, -7.794245 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 128.155916, -9.071302 ], [ 128.192812, -8.949753 ], [ 128.253412, -9.059125 ], [ 128.155916, -9.071302 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.050595, -2.592721 ], [ 130.172351, -2.617 ], [ 130.074681, -2.689948 ], [ 130.050595, -2.592721 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.980802, -2.520528 ], [ 127.102628, -2.520499 ], [ 127.053654, -2.605589 ], [ 126.980802, -2.520528 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.042015, -2.775987 ], [ 126.127467, -2.715197 ], [ 126.127118, -2.836738 ], [ 126.042015, -2.775987 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.163231, -4.718945 ], [ 133.065944, -4.658198 ], [ 133.126996, -4.609567 ], [ 133.163231, -4.718945 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.231797, -6.29896 ], [ 133.171163, -6.201742 ], [ 133.256441, -6.201722 ], [ 133.231797, -6.29896 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.458454, -4.0871 ], [ 132.446516, -4.002024 ], [ 132.543837, -4.050618 ], [ 132.458454, -4.0871 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.838956, -3.455235 ], [ 131.851382, -3.370154 ], [ 131.924303, -3.430907 ], [ 131.838956, -3.455235 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 133.624077, -5.448081 ], [ 133.551121, -5.399482 ], [ 133.636504, -5.362999 ], [ 133.624077, -5.448081 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 130.167012, -8.730509 ], [ 130.203734, -8.669729 ], [ 130.264437, -8.742639 ], [ 130.167012, -8.730509 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 128.02871, -2.447354 ], [ 128.101945, -2.39872 ], [ 128.077301, -2.495958 ], [ 128.02871, -2.447354 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 127.156146, -9.351085 ], [ 127.192938, -9.265997 ], [ 127.229277, -9.338913 ], [ 127.156146, -9.351085 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 132.523015, -7.064837 ], [ 132.511077, -6.979761 ], [ 132.571989, -6.979747 ], [ 132.523015, -7.064837 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.012006, -2.94496 ], [ 131.01218, -2.88419 ], [ 131.097353, -2.920632 ], [ 131.012006, -2.94496 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.143086, -8.937372 ], [ 129.16766, -8.864442 ], [ 129.216216, -8.925201 ], [ 129.143086, -8.937372 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 129.039757, -2.483575 ], [ 129.112783, -2.507866 ], [ 129.063948, -2.54434 ], [ 129.039757, -2.483575 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 131.093547, -8.49936 ], [ 131.105869, -8.450741 ], [ 131.166712, -8.475034 ], [ 131.093547, -8.49936 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 124.350887, -10.494237 ], [ 124.448208, -10.542831 ], [ 124.362686, -10.62793 ], [ 124.350887, -10.494237 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 121.47173, -11.916952 ], [ 121.569086, -11.953391 ], [ 121.483599, -12.026336 ], [ 121.47173, -11.916952 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 120.509239, -11.941489 ], [ 120.594587, -11.917161 ], [ 120.606491, -12.014391 ], [ 120.509239, -11.941489 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 122.422944, -11.576411 ], [ 122.43544, -11.467021 ], [ 122.496179, -11.527777 ], [ 122.422944, -11.576411 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 125.351249, -10.007835 ], [ 125.278049, -10.044315 ], [ 125.278293, -9.959236 ], [ 125.351249, -10.007835 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 123.386933, -11.029247 ], [ 123.423689, -10.956314 ], [ 123.47228, -11.004918 ], [ 123.386933, -11.029247 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.326723, -9.703751 ], [ 126.241376, -9.728079 ], [ 126.253732, -9.667306 ], [ 126.326723, -9.703751 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 102.346675, -7.132798 ], [ 102.468536, -7.120614 ], [ 102.443788, -7.254315 ], [ 102.346675, -7.132798 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 115.345791, -11.262091 ], [ 115.22407, -11.225657 ], [ 115.321774, -11.140556 ], [ 115.345791, -11.262091 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 108.051581, -10.169961 ], [ 108.124885, -10.097019 ], [ 108.161015, -10.242859 ], [ 108.051581, -10.169961 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.70032, -3.83967 ], [ 99.834329, -3.839638 ], [ 99.773137, -3.936885 ], [ 99.70032, -3.83967 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 96.048388, 1.397873 ], [ 96.1581, 1.422207 ], [ 96.133387, 1.30066 ], [ 96.048388, 1.397873 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.001262, -10.3642 ], [ 109.050306, -10.254801 ], [ 109.11087, -10.376328 ], [ 109.001262, -10.3642 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 116.429828, -11.334757 ], [ 116.308107, -11.298324 ], [ 116.357081, -11.213233 ], [ 116.429828, -11.334757 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 100.962324, -5.577404 ], [ 101.072037, -5.55307 ], [ 101.022958, -5.674622 ], [ 100.962324, -5.577404 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 109.878475, -10.339683 ], [ 109.915301, -10.242441 ], [ 109.988118, -10.339657 ], [ 109.963718, -10.351816 ], [ 109.878475, -10.339683 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 117.48964, -11.358813 ], [ 117.392145, -11.37099 ], [ 117.453406, -11.249434 ], [ 117.48964, -11.358813 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 100.258279, -4.690323 ], [ 100.367922, -4.690297 ], [ 100.318913, -4.787541 ], [ 100.258279, -4.690323 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 98.364839, -2.235648 ], [ 98.462369, -2.211317 ], [ 98.41329, -2.332869 ], [ 98.364839, -2.235648 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 99.093492, -3.037645 ], [ 99.191022, -3.013313 ], [ 99.166344, -3.122706 ], [ 99.093492, -3.037645 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.167749, -10.70376 ], [ 112.05828, -10.643015 ], [ 112.131515, -10.594382 ], [ 112.167749, -10.70376 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 95.185134, 1.993217 ], [ 95.282803, 2.066165 ], [ 95.282524, 1.968932 ], [ 95.185134, 1.993217 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 105.180924, -8.627075 ], [ 105.266272, -8.602747 ], [ 105.265958, -8.712134 ], [ 105.180924, -8.627075 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.782724, -1.312076 ], [ 97.867967, -1.32421 ], [ 97.83114, -1.421451 ], [ 97.782724, -1.312076 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 113.239255, -10.89797 ], [ 113.1419, -10.861531 ], [ 113.215169, -10.800743 ], [ 113.239255, -10.89797 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 114.262102, -11.067884 ], [ 114.176824, -11.067904 ], [ 114.225833, -10.970659 ], [ 114.262102, -11.067884 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 94.260828, 2.539931 ], [ 94.346245, 2.588568 ], [ 94.345966, 2.491335 ], [ 94.260828, 2.539931 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 101.642143, -6.415874 ], [ 101.739603, -6.415851 ], [ 101.714994, -6.500935 ], [ 101.642143, -6.415874 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 107.115023, -9.647558 ], [ 107.20037, -9.623229 ], [ 107.187909, -9.720465 ], [ 107.115023, -9.647558 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 96.728032, 0.498632 ], [ 96.825458, 0.486501 ], [ 96.764336, 0.413562 ], [ 96.728032, 0.498632 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 104.305418, -8.056042 ], [ 104.378687, -7.995254 ], [ 104.390591, -8.092484 ], [ 104.305418, -8.056042 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 118.586452, -11.224856 ], [ 118.489027, -11.212725 ], [ 118.550149, -11.139786 ], [ 118.586452, -11.224856 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 110.962548, -10.400195 ], [ 111.023669, -10.327256 ], [ 111.059973, -10.412326 ], [ 110.962548, -10.400195 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.237017, -0.437112 ], [ 97.322295, -0.437091 ], [ 97.261138, -0.522185 ], [ 97.237017, -0.437112 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 106.12956, -9.185937 ], [ 106.214977, -9.137301 ], [ 106.214734, -9.222379 ], [ 106.12956, -9.185937 ] ] ] ] } }, +{ "type": "Feature", "properties": { "Primary ID": "", "Secondary ID": "rank 1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 103.246547, -7.703825 ], [ 103.319746, -7.667346 ], [ 103.33172, -7.740267 ], [ 103.246547, -7.703825 ] ] ] ] } } +] +} diff --git a/sigap-website/public/geojson/timezones_wVVG8.geojson b/sigap-website/public/geojson/timezones_wVVG8.geojson new file mode 100644 index 0000000..a742445 --- /dev/null +++ b/sigap-website/public/geojson/timezones_wVVG8.geojson @@ -0,0 +1,45 @@ +{ +"type": "FeatureCollection", +"name": "timezones_wVVG8", +"features": [ +{ "type": "Feature", "properties": { "name": "-9.5" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -142.5, -12.3 ], [ -142.5, -6.0 ], [ -136.5, -6.0 ], [ -136.5, -12.3 ], [ -142.5, -12.3 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "-9" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -127.5, -25.7 ], [ -127.5, -89.974339 ], [ -127.5, -90.0 ], [ -142.5, -90.0 ], [ -142.5, -29.5 ], [ -140.4, -29.5 ], [ -140.4, -27.5 ], [ -135.6, -27.5 ], [ -135.6, -21.8 ], [ -135.0, -21.8 ], [ -135.0, -16.261722 ], [ -136.5, -12.3 ], [ -136.5, -6.0 ], [ -142.5, -6.0 ], [ -142.5, 59.960316 ], [ -156.842254, 54.711991 ], [ -169.4, 52.3 ], [ -169.4, 54.1 ], [ -173.4, 59.980477 ], [ -173.400001999998835, 63.100738184103847 ], [ -173.400002, 63.10074 ], [ -169.0, 65.5 ], [ -169.0, 68.0 ], [ -166.953846, 68.374155 ], [ -166.915219, 68.433533 ], [ -166.776935, 68.483402 ], [ -166.423293, 68.538792 ], [ -166.312928, 68.763834 ], [ -166.349011, 68.859966 ], [ -166.304839, 68.969569 ], [ -166.205617, 69.001552 ], [ -165.657045, 68.974483 ], [ -165.41812, 68.974953 ], [ -165.18208, 68.98714 ], [ -164.609217, 69.037176 ], [ -164.448066, 69.037792 ], [ -164.188184, 69.060897 ], [ -163.983763, 69.106358 ], [ -163.873981, 69.152601 ], [ -163.734309, 69.188486 ], [ -163.608677, 69.243468 ], [ -163.524872, 69.302417 ], [ -163.306473, 69.411614 ], [ -163.271962, 69.457999 ], [ -163.274889, 69.590061 ], [ -163.249698, 69.700516 ], [ -163.140218, 69.853916 ], [ -163.084929, 69.910273 ], [ -162.757335, 70.084384 ], [ -162.530556, 70.241024 ], [ -162.40484, 70.301046 ], [ -162.269059, 70.347649 ], [ -161.895166, 70.452381 ], [ -161.573279, 70.426475 ], [ -161.313238, 70.416353 ], [ -160.960293, 70.472064 ], [ -160.84057, 70.496654 ], [ -160.502099, 70.586872 ], [ -160.23959, 70.685882 ], [ -159.951155, 70.80912 ], [ -159.688941, 70.913541 ], [ -159.300395, 70.981151 ], [ -158.878806, 71.027675 ], [ -158.786409, 71.026131 ], [ -158.646845, 70.991988 ], [ -158.593497, 70.941096 ], [ -158.525886, 70.960328 ], [ -158.277925, 70.937964 ], [ -158.02371, 70.953547 ], [ -157.733559, 71.011399 ], [ -157.528876, 71.069512 ], [ -157.484045, 71.086672 ], [ -157.361234, 71.135077 ], [ -157.179773, 71.241494 ], [ -156.839881, 71.406152 ], [ -156.662636, 71.461554 ], [ -156.447784, 71.509241 ], [ -156.310175, 71.471327 ], [ -156.000023, 71.439172 ], [ -155.875732, 71.393459 ], [ -155.824884, 71.333914 ], [ -155.709915, 71.364109 ], [ -155.497988, 71.344301 ], [ -155.401313, 71.318657 ], [ -155.324675, 71.263863 ], [ -155.229619, 71.302676 ], [ -155.166061, 71.29694 ], [ -154.802961, 71.21568 ], [ -154.558947, 71.127917 ], [ -154.481164, 71.069719 ], [ -154.462922, 70.949273 ], [ -154.35444, 70.953597 ], [ -154.245562, 70.936156 ], [ -154.155181, 70.896767 ], [ -154.057271, 70.93147 ], [ -153.969013, 70.995237 ], [ -153.73033, 71.01752 ], [ -153.559638, 71.008645 ], [ -153.414875, 71.013187 ], [ -153.269731, 71.043495 ], [ -153.131139, 71.045129 ], [ -152.948318, 71.020416 ], [ -152.840555, 71.033589 ], [ -152.742735, 71.002984 ], [ -152.633889, 71.008895 ], [ -152.249726, 70.96153 ], [ -152.103144, 70.88415 ], [ -152.07276, 70.815983 ], [ -152.107333, 70.711386 ], [ -151.871619, 70.696046 ], [ -151.804423, 70.670609 ], [ -151.684983, 70.675308 ], [ -151.613978, 70.629122 ], [ -151.586512, 70.562155 ], [ -151.271682, 70.519357 ], [ -151.204424, 70.553904 ], [ -150.931814, 70.585264 ], [ -150.8818, 70.580708 ], [ -150.776937, 70.620469 ], [ -150.563874, 70.624943 ], [ -150.318099, 70.607529 ], [ -150.277028, 70.654196 ], [ -150.151533, 70.677942 ], [ -150.079078, 70.654747 ], [ -150.035309, 70.610202 ], [ -149.973396, 70.6742 ], [ -149.85701, 70.688051 ], [ -149.771219, 70.676165 ], [ -149.613881, 70.689991 ], [ -149.386846, 70.666313 ], [ -149.338146, 70.639938 ], [ -149.2658, 70.654696 ], [ -148.971812, 70.605048 ], [ -148.813158, 70.598097 ], [ -148.734069, 70.563294 ], [ -148.561463, 70.535308 ], [ -148.497021, 70.496615 ], [ -148.440999, 70.58365 ], [ -148.367717, 70.609391 ], [ -148.259418, 70.593588 ], [ -148.203684, 70.539442 ], [ -148.190374, 70.471772 ], [ -148.103058, 70.467608 ], [ -148.097217, 70.540351 ], [ -148.039523, 70.601909 ], [ -147.943973, 70.617114 ], [ -147.829615, 70.552422 ], [ -147.807654, 70.480492 ], [ -147.824242, 70.424507 ], [ -147.749096, 70.407695 ], [ -147.634676, 70.34103 ], [ -147.650208, 70.409699 ], [ -147.624551, 70.475261 ], [ -147.566537, 70.515149 ], [ -147.435152, 70.508345 ], [ -147.371186, 70.464602 ], [ -147.316555, 70.362071 ], [ -147.20707, 70.357821 ], [ -147.1625, 70.410154 ], [ -147.09286, 70.431146 ], [ -146.948137, 70.415881 ], [ -146.894138, 70.367658 ], [ -146.878039, 70.308091 ], [ -146.684545, 70.300339 ], [ -146.600307, 70.355211 ], [ -146.41655, 70.355285 ], [ -146.287343, 70.341629 ], [ -146.243882, 70.319616 ], [ -146.090709, 70.326105 ], [ -145.788645, 70.278355 ], [ -145.394099, 70.155154 ], [ -145.285537, 70.138064 ], [ -145.12891, 70.142157 ], [ -145.080795, 70.106771 ], [ -144.93934, 70.086767 ], [ -144.818902, 70.10523 ], [ -144.681053, 70.086282 ], [ -144.611457, 70.096607 ], [ -144.513563, 70.140352 ], [ -144.245772, 70.184768 ], [ -144.096026, 70.187477 ], [ -143.928599, 70.243443 ], [ -143.544487, 70.270117 ], [ -143.385769, 70.247649 ], [ -143.289366, 70.275019 ], [ -142.897895, 70.192521 ], [ -142.733683, 70.168203 ], [ -142.5, 70.099716 ], [ -142.5, 89.0 ], [ -127.5, 89.0 ], [ -127.5, 70.531547 ], [ -127.515917, 70.536761 ], [ -127.791589, 70.629163 ], [ -128.037079, 70.698127 ], [ -128.125965, 70.733317 ], [ -128.260587, 70.758951 ], [ -128.336129, 70.738779 ], [ -128.4641, 70.562503 ], [ -128.467127, 70.479289 ], [ -128.422642, 70.414611 ], [ -128.326163, 70.385831 ], [ -128.321674, 70.333286 ], [ -128.270329, 70.262837 ], [ -128.402616, 70.227318 ], [ -128.487588, 70.158125 ], [ -128.499711, 70.025854 ], [ -128.673205, 69.966193 ], [ -128.726799, 69.922597 ], [ -128.775409, 70.025392 ], [ -128.907535, 70.080413 ], [ -129.046067, 70.045106 ], [ -129.120163, 69.970264 ], [ -129.339923, 69.958552 ], [ -129.267533, 70.042157 ], [ -129.262456, 70.149605 ], [ -129.344067, 70.224471 ], [ -129.480297, 70.266516 ], [ -129.562885, 70.350612 ], [ -129.627613, 70.388444 ], [ -129.813927, 70.383433 ], [ -129.931946, 70.323039 ], [ -129.950603, 70.268794 ], [ -130.015868, 70.19753 ], [ -130.143582, 70.228893 ], [ -130.255, 70.228672 ], [ -130.370249, 70.276423 ], [ -130.574407, 70.270744 ], [ -130.805261, 70.22566 ], [ -130.883906, 70.247052 ], [ -130.952476, 70.226502 ], [ -131.057843, 70.163958 ], [ -131.168955, 70.039882 ], [ -131.204313, 70.037258 ], [ -131.352547, 70.089574 ], [ -131.48436, 70.065251 ], [ -131.591098, 69.993624 ], [ -131.736754, 69.984005 ], [ -131.817095, 69.961044 ], [ -131.974098, 69.882591 ], [ -132.148325, 69.84101 ], [ -132.192687, 69.874951 ], [ -132.280666, 69.885284 ], [ -132.583457, 69.852453 ], [ -132.735999, 69.762033 ], [ -132.801506, 69.775009 ], [ -132.938357, 69.768122 ], [ -133.023179, 69.737189 ], [ -133.114614, 69.661114 ], [ -133.145271, 69.597159 ], [ -133.137133, 69.535604 ], [ -133.316412, 69.505243 ], [ -133.417636, 69.51727 ], [ -133.447879, 69.598053 ], [ -133.525712, 69.657102 ], [ -133.626662, 69.660687 ], [ -133.681566, 69.635883 ], [ -133.759816, 69.697994 ], [ -133.848631, 69.728146 ], [ -134.049507, 69.729551 ], [ -134.086535, 69.771631 ], [ -134.157155, 69.793662 ], [ -134.182978, 69.85724 ], [ -134.272658, 69.904594 ], [ -134.377437, 69.912732 ], [ -134.568088, 69.812583 ], [ -134.618317, 69.754085 ], [ -134.670219, 69.797487 ], [ -134.747174, 69.819069 ], [ -134.917664, 69.819827 ], [ -135.001186, 69.803048 ], [ -135.086061, 69.727016 ], [ -135.087716, 69.646545 ], [ -135.151883, 69.65813 ], [ -135.197574, 69.720053 ], [ -135.258955, 69.742963 ], [ -135.410584, 69.757373 ], [ -135.550691, 69.743741 ], [ -135.66617, 69.686359 ], [ -135.715389, 69.624292 ], [ -135.834312, 69.623423 ], [ -135.932327, 69.549313 ], [ -135.942749, 69.481471 ], [ -135.913143, 69.415578 ], [ -135.955443, 69.361888 ], [ -136.031897, 69.324189 ], [ -136.151636, 69.322023 ], [ -136.301949, 69.300374 ], [ -136.380743, 69.218863 ], [ -136.391092, 69.122323 ], [ -136.341218, 69.005133 ], [ -136.437546, 69.019915 ], [ -136.570778, 69.037781 ], [ -136.671647, 69.033104 ], [ -136.736597, 68.983593 ], [ -136.82853, 68.999433 ], [ -136.959316, 69.049652 ], [ -137.10699, 69.059051 ], [ -137.204706, 69.119596 ], [ -137.312515, 69.099572 ], [ -137.537071, 69.130149 ], [ -137.855439, 69.197734 ], [ -138.156645, 69.280978 ], [ -138.211586, 69.306394 ], [ -138.346678, 69.40917 ], [ -138.44228, 69.410948 ], [ -138.51805, 69.37211 ], [ -138.676611, 69.447927 ], [ -138.776037, 69.479445 ], [ -138.731636, 69.575173 ], [ -138.754681, 69.643341 ], [ -138.833754, 69.703502 ], [ -138.947502, 69.740827 ], [ -139.15987, 69.755905 ], [ -139.241168, 69.730958 ], [ -139.366313, 69.666139 ], [ -139.51931, 69.673475 ], [ -139.789038, 69.724613 ], [ -139.924857, 69.735294 ], [ -140.24711, 69.711108 ], [ -140.377119, 69.709288 ], [ -140.68073, 69.728624 ], [ -140.966101, 69.761894 ], [ -140.992218, 69.644768 ], [ -141.0, 64.0 ], [ -141.0, 60.321346 ], [ -140.521942, 60.225739 ], [ -140.45546, 60.31152 ], [ -139.977295, 60.184658 ], [ -139.674545, 60.33947 ], [ -139.069016, 60.35199 ], [ -139.058105, 60.327339 ], [ -139.186188, 60.092613 ], [ -139.044586, 59.993969 ], [ -138.705765, 59.911114 ], [ -138.623749, 59.771629 ], [ -137.893494, 59.403839 ], [ -137.598221, 59.241577 ], [ -137.492722, 58.990978 ], [ -137.520828, 58.916744 ], [ -137.445801, 58.910595 ], [ -137.254288, 59.007549 ], [ -136.82341, 59.157921 ], [ -136.575775, 59.170059 ], [ -136.457764, 59.281422 ], [ -136.464035, 59.46553 ], [ -136.400955, 59.452648 ], [ -136.29454, 59.470951 ], [ -136.237076, 59.520966 ], [ -136.234802, 59.56266 ], [ -136.346222, 59.602013 ], [ -136.172226, 59.641815 ], [ -135.930969, 59.668461 ], [ -135.483109, 59.800018 ], [ -135.357605, 59.738922 ], [ -135.234329, 59.698383 ], [ -135.214996, 59.658623 ], [ -135.128235, 59.630825 ], [ -135.028885, 59.569237 ], [ -135.030838, 59.473507 ], [ -135.094864, 59.431946 ], [ -134.990463, 59.389515 ], [ -135.033539, 59.350227 ], [ -134.960022, 59.283901 ], [ -134.699738, 59.248711 ], [ -134.683929, 59.197491 ], [ -134.562714, 59.133808 ], [ -134.479965, 59.132103 ], [ -134.389633, 59.053547 ], [ -134.401718, 58.979607 ], [ -134.241592, 58.858574 ], [ -133.847427, 58.735752 ], [ -133.704697, 58.618069 ], [ -133.373108, 58.426991 ], [ -133.453766, 58.388897 ], [ -133.384415, 58.313625 ], [ -133.1707, 58.154446 ], [ -133.062271, 58.002327 ], [ -132.881912, 57.856197 ], [ -132.728104, 57.68037 ], [ -132.631836, 57.599201 ], [ -132.606247, 57.56567 ], [ -132.544846, 57.494354 ], [ -132.372131, 57.353298 ], [ -132.241562, 57.214241 ], [ -132.366898, 57.092178 ], [ -132.042267, 57.04644 ], [ -132.120026, 56.879803 ], [ -131.872223, 56.808132 ], [ -131.899887, 56.755901 ], [ -131.847336, 56.662312 ], [ -131.843552, 56.648071 ], [ -131.830963, 56.60091 ], [ -131.583221, 56.61451 ], [ -131.469147, 56.55492 ], [ -131.17157, 56.453968 ], [ -131.073792, 56.406818 ], [ -130.784042, 56.370392 ], [ -130.625595, 56.271912 ], [ -130.469086, 56.245045 ], [ -130.417252, 56.140877 ], [ -130.250671, 56.097202 ], [ -130.10733, 56.124535 ], [ -130.010666, 56.0 ], [ -130.001266, 55.924786 ], [ -129.997391, 55.928207 ], [ -129.993134, 55.894798 ], [ -130.003372, 55.885765 ], [ -130.136902, 55.755589 ], [ -130.137085, 55.742985 ], [ -130.087082, 55.673912 ], [ -130.104614, 55.58086 ], [ -130.111603, 55.556423 ], [ -130.033875, 55.461952 ], [ -130.037125, 55.458931 ], [ -130.001068, 55.362926 ], [ -129.999252, 55.357075 ], [ -129.99353, 55.351898 ], [ -129.996246, 55.346706 ], [ -130.00856, 55.343494 ], [ -129.983444, 55.261066 ], [ -130.0, 55.251068 ], [ -130.134018, 55.143242 ], [ -130.165039, 55.078667 ], [ -130.134903, 55.01165 ], [ -130.11908, 54.989647 ], [ -130.101338, 54.982405 ], [ -130.319255, 54.762995 ], [ -131.228631, 54.281844 ], [ -133.143612, 54.410151 ], [ -133.425887, 53.807109 ], [ -131.578267, 51.997981 ], [ -127.5, 49.902361 ], [ -127.5, -23.4 ], [ -131.5, -23.4 ], [ -131.5, -25.7 ], [ -127.5, -25.7 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "-8" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -127.5, 89.0 ], [ -112.5, 89.0 ], [ -112.5, 78.675274 ], [ -114.189909, 78.422453 ], [ -116.997457, 77.58712 ], [ -118.831029, 77.465807 ], [ -119.274857, 77.280556 ], [ -120.336164, 76.888449 ], [ -120.415703, 76.881004 ], [ -121.18483, 76.68837 ], [ -121.512423, 76.572877 ], [ -122.649176, 76.442824 ], [ -123.150119, 76.091201 ], [ -122.745511, 75.821463 ], [ -121.550957, 75.64806 ], [ -121.769398, 74.667216 ], [ -122.274827, 74.598051 ], [ -122.742146, 74.57715 ], [ -122.872418, 74.581883 ], [ -123.106508, 74.566902 ], [ -123.187616, 74.571826 ], [ -123.487626, 74.544867 ], [ -124.037863, 74.526648 ], [ -124.208079, 74.507593 ], [ -124.626646, 74.48355 ], [ -124.943299, 74.438129 ], [ -124.98901, 74.414258 ], [ -125.112852, 74.410528 ], [ -125.195545, 74.336926 ], [ -125.185311, 74.228057 ], [ -125.127832, 74.18075 ], [ -125.00128, 74.172468 ], [ -124.811826, 74.194844 ], [ -124.712874, 74.092075 ], [ -124.69285, 74.014794 ], [ -124.63624, 73.970892 ], [ -124.647491, 73.89254 ], [ -124.609198, 73.825671 ], [ -124.607689, 73.823683 ], [ -124.681505, 73.832641 ], [ -124.784996, 73.794075 ], [ -124.823709, 73.707739 ], [ -124.801982, 73.62852 ], [ -124.728723, 73.576208 ], [ -124.583556, 73.552343 ], [ -124.468357, 73.580426 ], [ -124.458086, 73.534459 ], [ -124.586084, 73.42574 ], [ -124.669182, 73.321063 ], [ -124.822946, 73.261566 ], [ -124.960827, 73.161579 ], [ -124.98351, 73.082035 ], [ -124.956181, 72.994245 ], [ -125.029591, 73.006741 ], [ -125.14309, 72.992282 ], [ -125.269683, 72.944189 ], [ -125.334075, 72.840146 ], [ -125.310059, 72.76545 ], [ -125.229964, 72.702911 ], [ -125.289105, 72.618585 ], [ -125.370591, 72.611783 ], [ -125.506557, 72.495978 ], [ -125.610868, 72.383036 ], [ -125.684059, 72.374177 ], [ -125.761227, 72.314919 ], [ -125.782762, 72.256859 ], [ -125.870866, 72.20696 ], [ -125.903349, 72.107382 ], [ -126.01438, 72.101873 ], [ -126.110134, 72.03685 ], [ -126.121639, 71.922846 ], [ -126.069561, 71.864532 ], [ -125.977188, 71.842611 ], [ -125.72877, 71.833487 ], [ -125.334337, 71.861009 ], [ -125.165988, 71.800858 ], [ -124.980008, 71.759814 ], [ -124.866236, 71.722586 ], [ -124.6253, 71.669438 ], [ -124.427447, 71.651419 ], [ -124.201819, 71.612625 ], [ -124.090938, 71.582122 ], [ -123.958157, 71.523667 ], [ -123.86283, 71.42194 ], [ -123.69577, 71.387487 ], [ -123.616075, 71.300212 ], [ -123.55507, 71.188164 ], [ -123.448034, 71.092858 ], [ -123.216335, 70.985922 ], [ -124.29182, 70.21823 ], [ -124.415244, 70.263503 ], [ -124.486782, 70.311752 ], [ -124.691501, 70.310201 ], [ -124.803891, 70.29414 ], [ -124.865476, 70.237338 ], [ -124.958058, 70.298758 ], [ -125.137815, 70.294793 ], [ -125.215921, 70.23978 ], [ -125.260367, 70.171914 ], [ -125.264512, 70.115257 ], [ -125.331843, 70.020099 ], [ -125.341225, 69.922801 ], [ -125.473756, 69.814028 ], [ -125.500334, 69.732042 ], [ -125.604232, 69.657368 ], [ -125.717472, 69.606719 ], [ -125.760318, 69.495247 ], [ -125.897224, 69.508734 ], [ -126.243879, 69.634601 ], [ -126.61799, 69.833627 ], [ -126.668109, 69.883929 ], [ -126.662503, 69.997023 ], [ -126.704151, 70.062109 ], [ -126.840573, 70.10764 ], [ -126.979794, 70.245681 ], [ -127.089934, 70.331191 ], [ -127.320459, 70.46054 ], [ -127.462322, 70.519203 ], [ -127.5, 70.531547 ], [ -127.5, 89.0 ] ] ], [ [ [ -112.265469, 27.988714 ], [ -114.204066, 28.0 ], [ -115.169964, 28.62 ], [ -117.3, 28.62 ], [ -117.3, 24.2 ], [ -112.5, 24.2 ], [ -112.5, 10.7 ], [ -108.8, 10.7 ], [ -108.8, 9.8 ], [ -112.5, 9.8 ], [ -112.5, -90.0 ], [ -127.5, -89.974339 ], [ -127.5, -25.7 ], [ -131.5, -25.7 ], [ -131.5, -23.4 ], [ -127.5, -23.4 ], [ -127.5, 49.902361 ], [ -131.578267, 51.997981 ], [ -133.425887, 53.807109 ], [ -133.143612, 54.410151 ], [ -131.228631, 54.281844 ], [ -130.319255, 54.762995 ], [ -130.101338, 54.982405 ], [ -130.11908, 54.989647 ], [ -130.134903, 55.01165 ], [ -130.165039, 55.078667 ], [ -130.134018, 55.143242 ], [ -130.0, 55.251068 ], [ -129.983444, 55.261066 ], [ -130.00856, 55.343494 ], [ -129.996246, 55.346706 ], [ -129.99353, 55.351898 ], [ -129.999252, 55.357075 ], [ -130.001068, 55.362926 ], [ -130.037125, 55.458931 ], [ -130.033875, 55.461952 ], [ -130.111603, 55.556423 ], [ -130.104614, 55.58086 ], [ -130.087082, 55.673912 ], [ -130.137085, 55.742985 ], [ -130.136902, 55.755589 ], [ -130.003372, 55.885765 ], [ -129.993134, 55.894798 ], [ -129.997391, 55.928207 ], [ -130.001266, 55.924786 ], [ -130.010666, 56.0 ], [ -130.10733, 56.124535 ], [ -130.250671, 56.097202 ], [ -130.417252, 56.140877 ], [ -130.469086, 56.245045 ], [ -130.625595, 56.271912 ], [ -130.784042, 56.370392 ], [ -131.073792, 56.406818 ], [ -131.17157, 56.453968 ], [ -131.469147, 56.55492 ], [ -131.583221, 56.61451 ], [ -131.830963, 56.60091 ], [ -131.843552, 56.648071 ], [ -131.847336, 56.662312 ], [ -131.899887, 56.755901 ], [ -131.872223, 56.808132 ], [ -132.120026, 56.879803 ], [ -132.042267, 57.04644 ], [ -132.366898, 57.092178 ], [ -132.241562, 57.214241 ], [ -132.372131, 57.353298 ], [ -132.544846, 57.494354 ], [ -132.606247, 57.56567 ], [ -132.631836, 57.599201 ], [ -132.728104, 57.68037 ], [ -132.881912, 57.856197 ], [ -133.062271, 58.002327 ], [ -133.1707, 58.154446 ], [ -133.384415, 58.313625 ], [ -133.453766, 58.388897 ], [ -133.373108, 58.426991 ], [ -133.704697, 58.618069 ], [ -133.847427, 58.735752 ], [ -134.241592, 58.858574 ], [ -134.401718, 58.979607 ], [ -134.389633, 59.053547 ], [ -134.479965, 59.132103 ], [ -134.562714, 59.133808 ], [ -134.683929, 59.197491 ], [ -134.699738, 59.248711 ], [ -134.960022, 59.283901 ], [ -135.033539, 59.350227 ], [ -134.990463, 59.389515 ], [ -135.094864, 59.431946 ], [ -135.030838, 59.473507 ], [ -135.028885, 59.569237 ], [ -135.128235, 59.630825 ], [ -135.214996, 59.658623 ], [ -135.234329, 59.698383 ], [ -135.357605, 59.738922 ], [ -135.483109, 59.800018 ], [ -135.930969, 59.668461 ], [ -136.172226, 59.641815 ], [ -136.346222, 59.602013 ], [ -136.234802, 59.56266 ], [ -136.237076, 59.520966 ], [ -136.29454, 59.470951 ], [ -136.400955, 59.452648 ], [ -136.464035, 59.46553 ], [ -136.457764, 59.281422 ], [ -136.575775, 59.170059 ], [ -136.82341, 59.157921 ], [ -137.254288, 59.007549 ], [ -137.445801, 58.910595 ], [ -137.520828, 58.916744 ], [ -137.492722, 58.990978 ], [ -137.598221, 59.241577 ], [ -137.893494, 59.403839 ], [ -138.623749, 59.771629 ], [ -138.705765, 59.911114 ], [ -139.044586, 59.993969 ], [ -139.186188, 60.092613 ], [ -139.058105, 60.327339 ], [ -139.069016, 60.35199 ], [ -139.674545, 60.33947 ], [ -139.977295, 60.184658 ], [ -140.45546, 60.31152 ], [ -140.521942, 60.225739 ], [ -141.0, 60.321346 ], [ -140.992218, 69.644768 ], [ -140.966101, 69.761894 ], [ -140.68073, 69.728624 ], [ -140.377119, 69.709288 ], [ -140.24711, 69.711108 ], [ -139.924857, 69.735294 ], [ -139.789038, 69.724613 ], [ -139.51931, 69.673475 ], [ -139.366313, 69.666139 ], [ -139.241168, 69.730958 ], [ -139.15987, 69.755905 ], [ -138.947502, 69.740827 ], [ -138.833754, 69.703502 ], [ -138.754681, 69.643341 ], [ -138.731636, 69.575173 ], [ -138.776037, 69.479445 ], [ -138.676611, 69.447927 ], [ -138.51805, 69.37211 ], [ -138.44228, 69.410948 ], [ -138.346678, 69.40917 ], [ -138.211586, 69.306394 ], [ -138.156645, 69.280978 ], [ -137.855439, 69.197734 ], [ -137.537071, 69.130149 ], [ -137.312515, 69.099572 ], [ -137.204706, 69.119596 ], [ -137.10699, 69.059051 ], [ -136.959316, 69.049652 ], [ -136.82853, 68.999433 ], [ -136.736597, 68.983593 ], [ -136.671647, 69.033104 ], [ -136.570778, 69.037781 ], [ -136.437546, 69.019915 ], [ -136.441971, 68.898529 ], [ -136.431915, 68.096405 ], [ -136.41629, 67.653519 ], [ -136.225357, 67.624695 ], [ -136.153717, 67.511482 ], [ -136.162811, 67.402885 ], [ -136.080414, 67.304138 ], [ -136.169235, 67.196121 ], [ -136.20929, 67.115601 ], [ -136.199356, 67.059593 ], [ -136.144989, 67.006813 ], [ -136.076218, 67.003326 ], [ -134.707733, 67.008354 ], [ -133.855316, 67.004715 ], [ -133.875916, 66.986862 ], [ -134.031464, 66.987686 ], [ -133.998123, 66.916 ], [ -133.881256, 66.900948 ], [ -133.814102, 66.832535 ], [ -133.748215, 66.814682 ], [ -133.76825, 66.655853 ], [ -133.685013, 66.628983 ], [ -133.634521, 66.437126 ], [ -133.745804, 66.434502 ], [ -133.753632, 66.381065 ], [ -133.817383, 66.326622 ], [ -133.740356, 66.304291 ], [ -133.610794, 66.306625 ], [ -133.551117, 66.282005 ], [ -133.538834, 66.168221 ], [ -133.648727, 66.123352 ], [ -133.669098, 66.065025 ], [ -133.595535, 66.061623 ], [ -133.613068, 65.978996 ], [ -133.571121, 65.958061 ], [ -133.478561, 65.961891 ], [ -133.428726, 65.939697 ], [ -133.334808, 65.988007 ], [ -133.103149, 66.036247 ], [ -132.92746, 66.028816 ], [ -132.923691, 65.912521 ], [ -132.796753, 65.92424 ], [ -132.779968, 65.968765 ], [ -132.669449, 66.015373 ], [ -132.566193, 66.033089 ], [ -132.476288, 65.9776 ], [ -132.327454, 65.996521 ], [ -132.411819, 65.926605 ], [ -132.523834, 65.899765 ], [ -132.558929, 65.845612 ], [ -132.367981, 65.78418 ], [ -132.26445, 65.716049 ], [ -132.153336, 65.61171 ], [ -132.30098, 65.49514 ], [ -132.310455, 65.441132 ], [ -132.50145, 65.380272 ], [ -132.552155, 65.291046 ], [ -132.677002, 65.260773 ], [ -132.680756, 65.165688 ], [ -132.571075, 65.200211 ], [ -132.503555, 65.178322 ], [ -132.525009, 65.09655 ], [ -132.317673, 65.075569 ], [ -132.424591, 64.982666 ], [ -132.449783, 64.913033 ], [ -132.599609, 64.82045 ], [ -132.543625, 64.777145 ], [ -132.457596, 64.794716 ], [ -132.33934, 64.788078 ], [ -132.158432, 64.711845 ], [ -132.024368, 64.696365 ], [ -131.975601, 64.612053 ], [ -131.851013, 64.560036 ], [ -131.753571, 64.547798 ], [ -131.691559, 64.493011 ], [ -131.835632, 64.429924 ], [ -131.819977, 64.376953 ], [ -131.713058, 64.386787 ], [ -131.612808, 64.367226 ], [ -131.450531, 64.436218 ], [ -131.275467, 64.450256 ], [ -131.155121, 64.417068 ], [ -131.118698, 64.353897 ], [ -131.04776, 64.328415 ], [ -131.071091, 64.281151 ], [ -130.991043, 64.257965 ], [ -130.9505, 64.214752 ], [ -130.975937, 64.149261 ], [ -130.914383, 64.104874 ], [ -130.901413, 64.045738 ], [ -130.749283, 64.043777 ], [ -130.758224, 63.969444 ], [ -130.589874, 63.924324 ], [ -130.536896, 63.931164 ], [ -130.444748, 63.89492 ], [ -130.345978, 63.824352 ], [ -130.239899, 63.873241 ], [ -130.148956, 63.865566 ], [ -130.113098, 63.792156 ], [ -130.137238, 63.752594 ], [ -130.231461, 63.722458 ], [ -130.270905, 63.656967 ], [ -130.129318, 63.694912 ], [ -130.083572, 63.612305 ], [ -130.005707, 63.616478 ], [ -129.993347, 63.573177 ], [ -129.910217, 63.551128 ], [ -129.829453, 63.470745 ], [ -129.90654, 63.466293 ], [ -129.939713, 63.423584 ], [ -129.900284, 63.372791 ], [ -130.058792, 63.339222 ], [ -130.156906, 63.299873 ], [ -130.154449, 63.245644 ], [ -130.032776, 63.242641 ], [ -129.984222, 63.178612 ], [ -129.891937, 63.182964 ], [ -129.852356, 63.085827 ], [ -129.779694, 63.069386 ], [ -129.64093, 63.080502 ], [ -129.666138, 63.0037 ], [ -129.770645, 62.886509 ], [ -129.634888, 62.760838 ], [ -129.600403, 62.696075 ], [ -129.473404, 62.588127 ], [ -129.355026, 62.540813 ], [ -129.248383, 62.519451 ], [ -129.228134, 62.456268 ], [ -129.248642, 62.384098 ], [ -129.305954, 62.317142 ], [ -129.294754, 62.266895 ], [ -129.212875, 62.200279 ], [ -129.278366, 62.169357 ], [ -129.185959, 62.120621 ], [ -129.090988, 62.111713 ], [ -128.997879, 62.136738 ], [ -128.875702, 62.106163 ], [ -128.84111, 62.06316 ], [ -128.768097, 62.051914 ], [ -128.692535, 62.127438 ], [ -128.56514, 62.124088 ], [ -128.379852, 62.018951 ], [ -128.27887, 61.945335 ], [ -128.210602, 61.839603 ], [ -128.090759, 61.852146 ], [ -128.005173, 61.767376 ], [ -127.97345, 61.689049 ], [ -127.909264, 61.672634 ], [ -127.797852, 61.602764 ], [ -127.70816, 61.589268 ], [ -127.674263, 61.551125 ], [ -127.52919, 61.502766 ], [ -127.317642, 61.511467 ], [ -127.217911, 61.466053 ], [ -127.151779, 61.466251 ], [ -127.129013, 61.382652 ], [ -127.073029, 61.332874 ], [ -127.011253, 61.211571 ], [ -127.023949, 61.126724 ], [ -127.108002, 61.087147 ], [ -127.071426, 61.035091 ], [ -126.96228, 61.064564 ], [ -126.903198, 60.949707 ], [ -126.882935, 60.7771 ], [ -126.816353, 60.758415 ], [ -126.741173, 60.779488 ], [ -126.661606, 60.745663 ], [ -126.53228, 60.811737 ], [ -126.354378, 60.770374 ], [ -126.262688, 60.786362 ], [ -126.241615, 60.852856 ], [ -126.115326, 60.86274 ], [ -126.100159, 60.812019 ], [ -126.003609, 60.80032 ], [ -125.93293, 60.877716 ], [ -125.854828, 60.889725 ], [ -125.710587, 60.823219 ], [ -125.549217, 60.821224 ], [ -125.384201, 60.782257 ], [ -125.293106, 60.789101 ], [ -125.187149, 60.850246 ], [ -125.019249, 60.861122 ], [ -124.871887, 60.855087 ], [ -124.871948, 60.923649 ], [ -124.808342, 60.973358 ], [ -124.759605, 60.952034 ], [ -124.60244, 60.957607 ], [ -124.568634, 60.904488 ], [ -124.52285, 60.757126 ], [ -124.634911, 60.69743 ], [ -124.610115, 60.656128 ], [ -124.439102, 60.536369 ], [ -124.430298, 60.467064 ], [ -124.225456, 60.455841 ], [ -124.231934, 60.383026 ], [ -124.117981, 60.209698 ], [ -124.020439, 60.145992 ], [ -124.01001, 60.0 ], [ -120.0, 60.0 ], [ -120.0, 57.999886 ], [ -121.273823, 58.001412 ], [ -124.001053, 57.999308 ], [ -124.941685, 57.999868 ], [ -124.913315, 57.979296 ], [ -124.944816, 57.836473 ], [ -124.885614, 57.822323 ], [ -124.822784, 57.739478 ], [ -124.763796, 57.739478 ], [ -124.636778, 57.677524 ], [ -124.489215, 57.662827 ], [ -124.40775, 57.551822 ], [ -124.269554, 57.492417 ], [ -124.179184, 57.502457 ], [ -124.183588, 57.455189 ], [ -124.07525, 57.319517 ], [ -124.180698, 57.294044 ], [ -124.188497, 57.26472 ], [ -124.094305, 57.204084 ], [ -124.083458, 57.163792 ], [ -123.94003, 57.104594 ], [ -123.889162, 56.938183 ], [ -123.769783, 56.809357 ], [ -123.761567, 56.685251 ], [ -123.664181, 56.651708 ], [ -123.723668, 56.549796 ], [ -123.679814, 56.502626 ], [ -123.61346, 56.505231 ], [ -123.553875, 56.463774 ], [ -123.574784, 56.258324 ], [ -123.487451, 56.203269 ], [ -123.450503, 56.049397 ], [ -123.478223, 55.968118 ], [ -123.3858, 55.8343 ], [ -123.3074, 55.7992 ], [ -123.3465, 55.7287 ], [ -123.2779, 55.7009 ], [ -123.1519, 55.7368 ], [ -123.1271, 55.6753 ], [ -123.0228, 55.5504 ], [ -122.954668, 55.587255 ], [ -122.9593, 55.4871 ], [ -123.0082, 55.465 ], [ -122.9823, 55.402 ], [ -122.8773, 55.4171 ], [ -122.7329, 55.3406 ], [ -122.6599, 55.3413 ], [ -122.596, 55.4098 ], [ -122.476, 55.3094 ], [ -122.4219, 55.3072 ], [ -122.350101, 55.258141 ], [ -122.263025, 55.130424 ], [ -122.187212, 55.134234 ], [ -121.97794, 55.025196 ], [ -121.8426, 54.922 ], [ -121.8724, 54.8678 ], [ -121.7901, 54.8363 ], [ -121.7246, 54.8881 ], [ -121.5598, 54.818 ], [ -121.48, 54.7221 ], [ -121.5288, 54.6519 ], [ -121.4558, 54.6076 ], [ -121.398067, 54.531913 ], [ -121.2694, 54.5158 ], [ -121.2468, 54.5439 ], [ -121.1181, 54.5486 ], [ -121.1318, 54.4848 ], [ -121.0812, 54.4503 ], [ -120.9986, 54.4657 ], [ -120.9291, 54.4536 ], [ -120.8764, 54.4903 ], [ -120.792156, 54.473775 ], [ -120.6526, 54.3569 ], [ -120.7305, 54.2991 ], [ -120.6052, 54.2892 ], [ -120.5652, 54.2355 ], [ -120.5859, 54.1816 ], [ -120.5066, 54.1278 ], [ -120.4022, 54.1301 ], [ -120.3353, 54.1059 ], [ -120.1672, 54.1234 ], [ -120.175935, 54.046398 ], [ -120.232381, 54.04254 ], [ -120.251795, 53.976495 ], [ -120.1705, 53.9405 ], [ -120.0783, 53.9798 ], [ -120.037, 53.804 ], [ -119.995082, 53.803519 ], [ -119.980927, 53.800705 ], [ -119.886566, 53.775742 ], [ -119.90242, 53.707794 ], [ -119.796425, 53.702251 ], [ -119.731514, 53.655769 ], [ -119.746887, 53.587822 ], [ -119.923149, 53.612865 ], [ -119.839973, 53.517132 ], [ -119.78511, 53.491985 ], [ -119.754951, 53.425289 ], [ -119.675774, 53.366982 ], [ -119.410233, 53.363605 ], [ -119.224602, 53.192787 ], [ -119.149994, 53.189911 ], [ -119.026955, 53.124378 ], [ -118.982864, 53.240646 ], [ -118.778053, 53.15675 ], [ -118.727936, 53.116924 ], [ -118.739258, 53.058407 ], [ -118.653282, 53.034363 ], [ -118.658279, 52.962669 ], [ -118.557426, 52.904297 ], [ -118.466606, 52.901512 ], [ -118.403069, 52.852791 ], [ -118.413116, 52.771992 ], [ -118.335716, 52.736885 ], [ -118.286392, 52.676807 ], [ -118.347038, 52.632385 ], [ -118.277802, 52.571186 ], [ -118.217842, 52.388107 ], [ -118.2236, 52.3803 ], [ -118.2893, 52.3399 ], [ -118.3267, 52.3694 ], [ -118.4984, 52.3101 ], [ -118.565, 52.2614 ], [ -118.5782, 52.1905 ], [ -118.6782, 52.1503 ], [ -118.607, 52.1049 ], [ -118.5884, 52.0541 ], [ -118.512, 52.0545 ], [ -118.3895, 51.9808 ], [ -118.2881, 51.9868 ], [ -118.1926, 51.9504 ], [ -118.1391, 51.8499 ], [ -118.1846, 51.7865 ], [ -118.1097, 51.7326 ], [ -117.943, 51.7221 ], [ -117.9133, 51.656 ], [ -117.9801, 51.6238 ], [ -117.9237, 51.4514 ], [ -117.8475, 51.4882 ], [ -117.8158, 51.4532 ], [ -117.7174, 51.4183 ], [ -117.6057, 51.4305 ], [ -117.5531, 51.4592 ], [ -117.432, 51.4671 ], [ -117.4204, 51.4122 ], [ -117.3618, 51.3677 ], [ -117.2493, 51.3611 ], [ -117.2012, 51.3292 ], [ -117.2521, 51.276 ], [ -117.3331, 51.2833 ], [ -117.2173, 51.0665 ], [ -117.1345, 51.0178 ], [ -117.1623, 50.9759 ], [ -117.0426, 50.9619 ], [ -117.0691, 50.9231 ], [ -116.7867, 50.7073 ], [ -116.7096, 50.667 ], [ -116.6628, 50.679 ], [ -116.5713, 50.6495 ], [ -116.674, 50.5823 ], [ -116.6924, 50.5131 ], [ -116.6207, 50.331 ], [ -116.5419, 50.3197 ], [ -116.5516, 50.2484 ], [ -116.4421, 50.1338 ], [ -116.4976, 50.053 ], [ -116.5084, 49.9858 ], [ -116.6336, 49.8875 ], [ -116.6885, 49.883 ], [ -116.6788, 49.8028 ], [ -116.5882, 49.7365 ], [ -116.6572, 49.6701 ], [ -116.6206, 49.5559 ], [ -116.6641, 49.4722 ], [ -116.5576, 49.457 ], [ -116.4672, 49.4889 ], [ -116.4324, 49.5338 ], [ -116.2969, 49.5227 ], [ -116.2369, 49.4207 ], [ -116.1507, 49.3549 ], [ -116.1669, 49.288 ], [ -116.0268, 49.2916 ], [ -115.996, 49.2232 ], [ -115.9362, 49.1591 ], [ -115.8614, 49.166 ], [ -115.8324, 49.0985 ], [ -115.7334, 49.0296 ], [ -115.7284, 49.0009 ], [ -116.05072, 49.000374 ], [ -116.047237, 47.996629 ], [ -115.994766, 47.927517 ], [ -115.848297, 47.815414 ], [ -115.831436, 47.752319 ], [ -115.723999, 47.696281 ], [ -115.727859, 47.642529 ], [ -115.689842, 47.592598 ], [ -115.704735, 47.454494 ], [ -115.502937, 47.287327 ], [ -115.326012, 47.260033 ], [ -115.29631, 47.188637 ], [ -115.184158, 47.127983 ], [ -115.014542, 46.975185 ], [ -114.923256, 46.915195 ], [ -114.922516, 46.828274 ], [ -114.767906, 46.760262 ], [ -114.629395, 46.713425 ], [ -114.64138, 46.665894 ], [ -114.467941, 46.633053 ], [ -114.432167, 46.660141 ], [ -114.330925, 46.658607 ], [ -114.349884, 46.511375 ], [ -114.419006, 46.392769 ], [ -114.415375, 46.338524 ], [ -114.452156, 46.239143 ], [ -114.446884, 46.173927 ], [ -114.487503, 46.003281 ], [ -114.385986, 45.88628 ], [ -114.513145, 45.842991 ], [ -114.565544, 45.777309 ], [ -114.50074, 45.71801 ], [ -114.509972, 45.656475 ], [ -114.557388, 45.570793 ], [ -114.624474, 45.527149 ], [ -114.662689, 45.466316 ], [ -114.795395, 45.508602 ], [ -114.793861, 45.391068 ], [ -114.882965, 45.424664 ], [ -115.017349, 45.507389 ], [ -115.060936, 45.50996 ], [ -115.216293, 45.569111 ], [ -115.421707, 45.460899 ], [ -115.510117, 45.378918 ], [ -115.623421, 45.402237 ], [ -115.697517, 45.444561 ], [ -115.802559, 45.469177 ], [ -115.944603, 45.457672 ], [ -116.108253, 45.401428 ], [ -116.142677, 45.428894 ], [ -116.223175, 45.402744 ], [ -116.315674, 45.438099 ], [ -116.306351, 45.573997 ], [ -116.2752, 45.601845 ], [ -116.315422, 45.667622 ], [ -116.326874, 45.776787 ], [ -116.297836, 45.86182 ], [ -116.407616, 45.906544 ], [ -116.444717, 45.967342 ], [ -116.539307, 45.977859 ], [ -116.649239, 46.029091 ], [ -116.744606, 45.966591 ], [ -116.728523, 45.903515 ], [ -116.787514, 45.85556 ], [ -116.761391, 45.816631 ], [ -116.693542, 45.817947 ], [ -116.662354, 45.781181 ], [ -116.592361, 45.779308 ], [ -116.53447, 45.734921 ], [ -116.534126, 45.69252 ], [ -116.461639, 45.609306 ], [ -116.520264, 45.555325 ], [ -116.667038, 45.327099 ], [ -116.728424, 45.145035 ], [ -116.84127, 45.028683 ], [ -116.833054, 44.938622 ], [ -116.855194, 44.881615 ], [ -116.935211, 44.783031 ], [ -117.028534, 44.751083 ], [ -117.095787, 44.660095 ], [ -117.147339, 44.535202 ], [ -117.223999, 44.479935 ], [ -117.237312, 44.396652 ], [ -117.19207, 44.344158 ], [ -117.218132, 44.301785 ], [ -117.483765, 44.29987 ], [ -117.485008, 44.387012 ], [ -117.590569, 44.445923 ], [ -117.971565, 44.442749 ], [ -118.032112, 44.414692 ], [ -118.154144, 44.271439 ], [ -118.23317, 44.256397 ], [ -118.228622, 44.068062 ], [ -118.233772, 43.779751 ], [ -118.227768, 42.913055 ], [ -118.21714, 42.912872 ], [ -118.214354, 42.448506 ], [ -117.029724, 42.452209 ], [ -117.029274, 42.000309 ], [ -115.226387, 41.994457 ], [ -114.854584, 42.000248 ], [ -114.598396, 41.995354 ], [ -114.040382, 41.993378 ], [ -114.04055, 40.796795 ], [ -114.048683, 40.216129 ], [ -114.046333, 39.646412 ], [ -114.052017, 38.999348 ], [ -114.049133, 38.837093 ], [ -114.049385, 38.032864 ], [ -114.05407, 37.644726 ], [ -114.047974, 36.488811 ], [ -114.048309, 36.204716 ], [ -114.150871, 36.028805 ], [ -114.233765, 36.013908 ], [ -114.316216, 36.062843 ], [ -114.373802, 36.143795 ], [ -114.440018, 36.127354 ], [ -114.510818, 36.152748 ], [ -114.629791, 36.142056 ], [ -114.753922, 36.081074 ], [ -114.724426, 36.032654 ], [ -114.7453, 35.984608 ], [ -114.704674, 35.904663 ], [ -114.712746, 35.808628 ], [ -114.659409, 35.535439 ], [ -114.670288, 35.469753 ], [ -114.595619, 35.324566 ], [ -114.570724, 35.179996 ], [ -114.635208, 35.03532 ], [ -114.634979, 34.886696 ], [ -114.558495, 34.779644 ], [ -114.470779, 34.715199 ], [ -114.430977, 34.592506 ], [ -114.345985, 34.455589 ], [ -114.184486, 34.358486 ], [ -114.137794, 34.308102 ], [ -114.155579, 34.263844 ], [ -114.252083, 34.178371 ], [ -114.401794, 34.115814 ], [ -114.434174, 34.033302 ], [ -114.525436, 33.953064 ], [ -114.525307, 33.816025 ], [ -114.493973, 33.700382 ], [ -114.529533, 33.674236 ], [ -114.536896, 33.546494 ], [ -114.591667, 33.50042 ], [ -114.634239, 33.423458 ], [ -114.72229, 33.409515 ], [ -114.67646, 33.273655 ], [ -114.675743, 33.163372 ], [ -114.699738, 33.11969 ], [ -114.660667, 33.03331 ], [ -114.514244, 33.029041 ], [ -114.46032, 32.9011 ], [ -114.466003, 32.846184 ], [ -114.526489, 32.757965 ], [ -114.613914, 32.729115 ], [ -114.7192, 32.718044 ], [ -114.717033, 32.716759 ], [ -114.810532, 32.565258 ], [ -114.81573, 32.483323 ], [ -114.939225, 32.474274 ], [ -114.965634, 32.341029 ], [ -115.053022, 32.245174 ], [ -114.975318, 32.177995 ], [ -114.989736, 32.146378 ], [ -114.957005, 32.038636 ], [ -114.953695, 31.91456 ], [ -114.762849, 31.764344 ], [ -112.5, 28.344109 ], [ -112.5, 28.343287 ], [ -112.265469, 27.988714 ] ] ] ] } }, +{ "type": "Feature", "properties": { "name": "-7" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -112.5, -90.0 ], [ -112.5, 9.8 ], [ -108.8, 9.8 ], [ -108.8, 10.7 ], [ -112.5, 10.7 ], [ -112.5, 24.2 ], [ -117.3, 24.2 ], [ -117.3, 28.62 ], [ -115.169964, 28.62 ], [ -114.2, 28.0 ], [ -112.764929, 28.0 ], [ -112.265469, 27.988714 ], [ -112.273446, 28.001679 ], [ -114.762849, 31.764344 ], [ -114.953695, 31.91456 ], [ -114.957005, 32.038636 ], [ -114.989736, 32.146378 ], [ -114.975318, 32.177995 ], [ -115.053022, 32.245174 ], [ -114.965634, 32.341029 ], [ -114.939225, 32.474274 ], [ -114.81573, 32.483323 ], [ -114.810532, 32.565258 ], [ -114.717033, 32.716759 ], [ -114.7192, 32.718044 ], [ -114.613914, 32.729115 ], [ -114.526489, 32.757965 ], [ -114.466003, 32.846184 ], [ -114.46032, 32.9011 ], [ -114.514244, 33.029041 ], [ -114.660667, 33.03331 ], [ -114.699738, 33.11969 ], [ -114.675743, 33.163372 ], [ -114.67646, 33.273655 ], [ -114.72229, 33.409515 ], [ -114.634239, 33.423458 ], [ -114.591667, 33.50042 ], [ -114.536896, 33.546494 ], [ -114.529533, 33.674236 ], [ -114.493973, 33.700382 ], [ -114.525307, 33.816025 ], [ -114.525436, 33.953064 ], [ -114.434174, 34.033302 ], [ -114.401794, 34.115814 ], [ -114.252083, 34.178371 ], [ -114.155579, 34.263844 ], [ -114.137794, 34.308102 ], [ -114.184486, 34.358486 ], [ -114.345985, 34.455589 ], [ -114.430977, 34.592506 ], [ -114.470779, 34.715199 ], [ -114.558495, 34.779644 ], [ -114.634979, 34.886696 ], [ -114.635208, 35.03532 ], [ -114.570724, 35.179996 ], [ -114.595619, 35.324566 ], [ -114.670288, 35.469753 ], [ -114.659409, 35.535439 ], [ -114.712746, 35.808628 ], [ -114.704674, 35.904663 ], [ -114.7453, 35.984608 ], [ -114.724426, 36.032654 ], [ -114.753922, 36.081074 ], [ -114.629791, 36.142056 ], [ -114.510818, 36.152748 ], [ -114.440018, 36.127354 ], [ -114.373802, 36.143795 ], [ -114.316216, 36.062843 ], [ -114.233765, 36.013908 ], [ -114.150871, 36.028805 ], [ -114.048309, 36.204716 ], [ -114.047974, 36.488811 ], [ -114.05407, 37.644726 ], [ -114.049385, 38.032864 ], [ -114.049133, 38.837093 ], [ -114.052017, 38.999348 ], [ -114.046333, 39.646412 ], [ -114.048683, 40.216129 ], [ -114.04055, 40.796795 ], [ -114.040382, 41.993378 ], [ -114.598396, 41.995354 ], [ -114.854584, 42.000248 ], [ -115.226387, 41.994457 ], [ -117.029274, 42.000309 ], [ -117.029724, 42.452209 ], [ -118.214354, 42.448506 ], [ -118.21714, 42.912872 ], [ -118.227768, 42.913055 ], [ -118.233772, 43.779751 ], [ -118.228622, 44.068062 ], [ -118.23317, 44.256397 ], [ -118.154144, 44.271439 ], [ -118.032112, 44.414692 ], [ -117.971565, 44.442749 ], [ -117.590569, 44.445923 ], [ -117.485008, 44.387012 ], [ -117.483765, 44.29987 ], [ -117.218132, 44.301785 ], [ -117.19207, 44.344158 ], [ -117.237312, 44.396652 ], [ -117.223999, 44.479935 ], [ -117.147339, 44.535202 ], [ -117.095787, 44.660095 ], [ -117.028534, 44.751083 ], [ -116.935211, 44.783031 ], [ -116.855194, 44.881615 ], [ -116.833054, 44.938622 ], [ -116.84127, 45.028683 ], [ -116.728424, 45.145035 ], [ -116.667038, 45.327099 ], [ -116.520264, 45.555325 ], [ -116.461639, 45.609306 ], [ -116.534126, 45.69252 ], [ -116.53447, 45.734921 ], [ -116.592361, 45.779308 ], [ -116.662354, 45.781181 ], [ -116.693542, 45.817947 ], [ -116.761391, 45.816631 ], [ -116.787514, 45.85556 ], [ -116.728523, 45.903515 ], [ -116.744606, 45.966591 ], [ -116.649239, 46.029091 ], [ -116.539307, 45.977859 ], [ -116.444717, 45.967342 ], [ -116.407616, 45.906544 ], [ -116.297836, 45.86182 ], [ -116.326874, 45.776787 ], [ -116.315422, 45.667622 ], [ -116.2752, 45.601845 ], [ -116.306351, 45.573997 ], [ -116.315674, 45.438099 ], [ -116.223175, 45.402744 ], [ -116.142677, 45.428894 ], [ -116.108253, 45.401428 ], [ -115.944603, 45.457672 ], [ -115.802559, 45.469177 ], [ -115.697517, 45.444561 ], [ -115.623421, 45.402237 ], [ -115.510117, 45.378918 ], [ -115.421707, 45.460899 ], [ -115.216293, 45.569111 ], [ -115.060936, 45.50996 ], [ -115.017349, 45.507389 ], [ -114.882965, 45.424664 ], [ -114.793861, 45.391068 ], [ -114.795395, 45.508602 ], [ -114.662689, 45.466316 ], [ -114.624474, 45.527149 ], [ -114.557388, 45.570793 ], [ -114.509972, 45.656475 ], [ -114.50074, 45.71801 ], [ -114.565544, 45.777309 ], [ -114.513145, 45.842991 ], [ -114.385986, 45.88628 ], [ -114.487503, 46.003281 ], [ -114.446884, 46.173927 ], [ -114.452156, 46.239143 ], [ -114.415375, 46.338524 ], [ -114.419006, 46.392769 ], [ -114.349884, 46.511375 ], [ -114.330925, 46.658607 ], [ -114.432167, 46.660141 ], [ -114.467941, 46.633053 ], [ -114.64138, 46.665894 ], [ -114.629395, 46.713425 ], [ -114.767906, 46.760262 ], [ -114.922516, 46.828274 ], [ -114.923256, 46.915195 ], [ -115.014542, 46.975185 ], [ -115.184158, 47.127983 ], [ -115.29631, 47.188637 ], [ -115.326012, 47.260033 ], [ -115.502937, 47.287327 ], [ -115.704735, 47.454494 ], [ -115.689842, 47.592598 ], [ -115.727859, 47.642529 ], [ -115.723999, 47.696281 ], [ -115.831436, 47.752319 ], [ -115.848297, 47.815414 ], [ -115.994766, 47.927517 ], [ -116.047237, 47.996629 ], [ -116.05072, 49.000374 ], [ -115.7284, 49.0009 ], [ -115.7334, 49.0296 ], [ -115.8324, 49.0985 ], [ -115.8614, 49.166 ], [ -115.9362, 49.1591 ], [ -115.996, 49.2232 ], [ -116.0268, 49.2916 ], [ -116.1669, 49.288 ], [ -116.1507, 49.3549 ], [ -116.2369, 49.4207 ], [ -116.2969, 49.5227 ], [ -116.4324, 49.5338 ], [ -116.4672, 49.4889 ], [ -116.5576, 49.457 ], [ -116.6641, 49.4722 ], [ -116.6206, 49.5559 ], [ -116.6572, 49.6701 ], [ -116.5882, 49.7365 ], [ -116.6788, 49.8028 ], [ -116.6885, 49.883 ], [ -116.6336, 49.8875 ], [ -116.5084, 49.9858 ], [ -116.4976, 50.053 ], [ -116.4421, 50.1338 ], [ -116.5516, 50.2484 ], [ -116.5419, 50.3197 ], [ -116.6207, 50.331 ], [ -116.6924, 50.5131 ], [ -116.674, 50.5823 ], [ -116.5713, 50.6495 ], [ -116.6628, 50.679 ], [ -116.7096, 50.667 ], [ -116.7867, 50.7073 ], [ -117.0691, 50.9231 ], [ -117.0426, 50.9619 ], [ -117.1623, 50.9759 ], [ -117.1345, 51.0178 ], [ -117.2173, 51.0665 ], [ -117.3331, 51.2833 ], [ -117.2521, 51.276 ], [ -117.2012, 51.3292 ], [ -117.2493, 51.3611 ], [ -117.3618, 51.3677 ], [ -117.4204, 51.4122 ], [ -117.432, 51.4671 ], [ -117.5531, 51.4592 ], [ -117.6057, 51.4305 ], [ -117.7174, 51.4183 ], [ -117.8158, 51.4532 ], [ -117.8475, 51.4882 ], [ -117.9237, 51.4514 ], [ -117.9801, 51.6238 ], [ -117.9133, 51.656 ], [ -117.943, 51.7221 ], [ -118.1097, 51.7326 ], [ -118.1846, 51.7865 ], [ -118.1391, 51.8499 ], [ -118.1926, 51.9504 ], [ -118.2881, 51.9868 ], [ -118.3895, 51.9808 ], [ -118.512, 52.0545 ], [ -118.5884, 52.0541 ], [ -118.607, 52.1049 ], [ -118.6782, 52.1503 ], [ -118.5782, 52.1905 ], [ -118.565, 52.2614 ], [ -118.4984, 52.3101 ], [ -118.3267, 52.3694 ], [ -118.2893, 52.3399 ], [ -118.2236, 52.3803 ], [ -118.217842, 52.388107 ], [ -118.277802, 52.571186 ], [ -118.347038, 52.632385 ], [ -118.286392, 52.676807 ], [ -118.335716, 52.736885 ], [ -118.413116, 52.771992 ], [ -118.403069, 52.852791 ], [ -118.466606, 52.901512 ], [ -118.557426, 52.904297 ], [ -118.658279, 52.962669 ], [ -118.653282, 53.034363 ], [ -118.739258, 53.058407 ], [ -118.727936, 53.116924 ], [ -118.778053, 53.15675 ], [ -118.982864, 53.240646 ], [ -119.026955, 53.124378 ], [ -119.149994, 53.189911 ], [ -119.224602, 53.192787 ], [ -119.410233, 53.363605 ], [ -119.675774, 53.366982 ], [ -119.754951, 53.425289 ], [ -119.78511, 53.491985 ], [ -119.839973, 53.517132 ], [ -119.923149, 53.612865 ], [ -119.746887, 53.587822 ], [ -119.731514, 53.655769 ], [ -119.796425, 53.702251 ], [ -119.90242, 53.707794 ], [ -119.886566, 53.775742 ], [ -119.980927, 53.800705 ], [ -119.995082, 53.803519 ], [ -120.037, 53.804 ], [ -120.0783, 53.9798 ], [ -120.1705, 53.9405 ], [ -120.251795, 53.976495 ], [ -120.232381, 54.04254 ], [ -120.175935, 54.046398 ], [ -120.1672, 54.1234 ], [ -120.3353, 54.1059 ], [ -120.4022, 54.1301 ], [ -120.5066, 54.1278 ], [ -120.5859, 54.1816 ], [ -120.5652, 54.2355 ], [ -120.6052, 54.2892 ], [ -120.7305, 54.2991 ], [ -120.6526, 54.3569 ], [ -120.792156, 54.473775 ], [ -120.8764, 54.4903 ], [ -120.9291, 54.4536 ], [ -120.9986, 54.4657 ], [ -121.0812, 54.4503 ], [ -121.1318, 54.4848 ], [ -121.1181, 54.5486 ], [ -121.2468, 54.5439 ], [ -121.2694, 54.5158 ], [ -121.398067, 54.531913 ], [ -121.4558, 54.6076 ], [ -121.5288, 54.6519 ], [ -121.48, 54.7221 ], [ -121.5598, 54.818 ], [ -121.7246, 54.8881 ], [ -121.7901, 54.8363 ], [ -121.8724, 54.8678 ], [ -121.8426, 54.922 ], [ -121.97794, 55.025196 ], [ -122.187212, 55.134234 ], [ -122.263025, 55.130424 ], [ -122.350101, 55.258141 ], [ -122.4219, 55.3072 ], [ -122.476, 55.3094 ], [ -122.596, 55.4098 ], [ -122.6599, 55.3413 ], [ -122.7329, 55.3406 ], [ -122.8773, 55.4171 ], [ -122.9823, 55.402 ], [ -123.0082, 55.465 ], [ -122.9593, 55.4871 ], [ -122.954668, 55.587255 ], [ -123.0228, 55.5504 ], [ -123.1271, 55.6753 ], [ -123.1519, 55.7368 ], [ -123.2779, 55.7009 ], [ -123.3465, 55.7287 ], [ -123.3074, 55.7992 ], [ -123.3858, 55.8343 ], [ -123.478223, 55.968118 ], [ -123.450503, 56.049397 ], [ -123.487451, 56.203269 ], [ -123.574784, 56.258324 ], [ -123.553875, 56.463774 ], [ -123.61346, 56.505231 ], [ -123.679814, 56.502626 ], [ -123.723668, 56.549796 ], [ -123.664181, 56.651708 ], [ -123.761567, 56.685251 ], [ -123.769783, 56.809357 ], [ -123.889162, 56.938183 ], [ -123.94003, 57.104594 ], [ -124.083458, 57.163792 ], [ -124.094305, 57.204084 ], [ -124.188497, 57.26472 ], [ -124.180698, 57.294044 ], [ -124.07525, 57.319517 ], [ -124.183588, 57.455189 ], [ -124.179184, 57.502457 ], [ -124.269554, 57.492417 ], [ -124.40775, 57.551822 ], [ -124.489215, 57.662827 ], [ -124.636778, 57.677524 ], [ -124.763796, 57.739478 ], [ -124.822784, 57.739478 ], [ -124.885614, 57.822323 ], [ -124.944816, 57.836473 ], [ -124.913315, 57.979296 ], [ -124.941685, 57.999868 ], [ -124.001053, 57.999308 ], [ -121.273823, 58.001412 ], [ -120.0, 57.999886 ], [ -120.0, 60.0 ], [ -124.01001, 60.0 ], [ -124.020439, 60.145992 ], [ -124.117981, 60.209698 ], [ -124.231934, 60.383026 ], [ -124.225456, 60.455841 ], [ -124.430298, 60.467064 ], [ -124.439102, 60.536369 ], [ -124.610115, 60.656128 ], [ -124.634911, 60.69743 ], [ -124.52285, 60.757126 ], [ -124.568634, 60.904488 ], [ -124.60244, 60.957607 ], [ -124.759605, 60.952034 ], [ -124.808342, 60.973358 ], [ -124.871948, 60.923649 ], [ -124.871887, 60.855087 ], [ -125.019249, 60.861122 ], [ -125.187149, 60.850246 ], [ -125.293106, 60.789101 ], [ -125.384201, 60.782257 ], [ -125.549217, 60.821224 ], [ -125.710587, 60.823219 ], [ -125.854828, 60.889725 ], [ -125.93293, 60.877716 ], [ -126.003609, 60.80032 ], [ -126.100159, 60.812019 ], [ -126.115326, 60.86274 ], [ -126.241615, 60.852856 ], [ -126.262688, 60.786362 ], [ -126.354378, 60.770374 ], [ -126.53228, 60.811737 ], [ -126.661606, 60.745663 ], [ -126.741173, 60.779488 ], [ -126.816353, 60.758415 ], [ -126.882935, 60.7771 ], [ -126.903198, 60.949707 ], [ -126.96228, 61.064564 ], [ -127.071426, 61.035091 ], [ -127.108002, 61.087147 ], [ -127.023949, 61.126724 ], [ -127.011253, 61.211571 ], [ -127.073029, 61.332874 ], [ -127.129013, 61.382652 ], [ -127.151779, 61.466251 ], [ -127.217911, 61.466053 ], [ -127.317642, 61.511467 ], [ -127.52919, 61.502766 ], [ -127.674263, 61.551125 ], [ -127.70816, 61.589268 ], [ -127.797852, 61.602764 ], [ -127.909264, 61.672634 ], [ -127.97345, 61.689049 ], [ -128.005173, 61.767376 ], [ -128.090759, 61.852146 ], [ -128.210602, 61.839603 ], [ -128.27887, 61.945335 ], [ -128.379852, 62.018951 ], [ -128.56514, 62.124088 ], [ -128.692535, 62.127438 ], [ -128.768097, 62.051914 ], [ -128.84111, 62.06316 ], [ -128.875702, 62.106163 ], [ -128.997879, 62.136738 ], [ -129.090988, 62.111713 ], [ -129.185959, 62.120621 ], [ -129.278366, 62.169357 ], [ -129.212875, 62.200279 ], [ -129.294754, 62.266895 ], [ -129.305954, 62.317142 ], [ -129.248642, 62.384098 ], [ -129.228134, 62.456268 ], [ -129.248383, 62.519451 ], [ -129.355026, 62.540813 ], [ -129.473404, 62.588127 ], [ -129.600403, 62.696075 ], [ -129.634888, 62.760838 ], [ -129.770645, 62.886509 ], [ -129.666138, 63.0037 ], [ -129.64093, 63.080502 ], [ -129.779694, 63.069386 ], [ -129.852356, 63.085827 ], [ -129.891937, 63.182964 ], [ -129.984222, 63.178612 ], [ -130.032776, 63.242641 ], [ -130.154449, 63.245644 ], [ -130.156906, 63.299873 ], [ -130.058792, 63.339222 ], [ -129.900284, 63.372791 ], [ -129.939713, 63.423584 ], [ -129.90654, 63.466293 ], [ -129.829453, 63.470745 ], [ -129.910217, 63.551128 ], [ -129.993347, 63.573177 ], [ -130.005707, 63.616478 ], [ -130.083572, 63.612305 ], [ -130.129318, 63.694912 ], [ -130.270905, 63.656967 ], [ -130.231461, 63.722458 ], [ -130.137238, 63.752594 ], [ -130.113098, 63.792156 ], [ -130.148956, 63.865566 ], [ -130.239899, 63.873241 ], [ -130.345978, 63.824352 ], [ -130.444748, 63.89492 ], [ -130.536896, 63.931164 ], [ -130.589874, 63.924324 ], [ -130.758224, 63.969444 ], [ -130.749283, 64.043777 ], [ -130.901413, 64.045738 ], [ -130.914383, 64.104874 ], [ -130.975937, 64.149261 ], [ -130.9505, 64.214752 ], [ -130.991043, 64.257965 ], [ -131.071091, 64.281151 ], [ -131.04776, 64.328415 ], [ -131.118698, 64.353897 ], [ -131.155121, 64.417068 ], [ -131.275467, 64.450256 ], [ -131.450531, 64.436218 ], [ -131.612808, 64.367226 ], [ -131.713058, 64.386787 ], [ -131.819977, 64.376953 ], [ -131.835632, 64.429924 ], [ -131.691559, 64.493011 ], [ -131.753571, 64.547798 ], [ -131.851013, 64.560036 ], [ -131.975601, 64.612053 ], [ -132.024368, 64.696365 ], [ -132.158432, 64.711845 ], [ -132.33934, 64.788078 ], [ -132.457596, 64.794716 ], [ -132.543625, 64.777145 ], [ -132.599609, 64.82045 ], [ -132.449783, 64.913033 ], [ -132.424591, 64.982666 ], [ -132.317673, 65.075569 ], [ -132.525009, 65.09655 ], [ -132.503555, 65.178322 ], [ -132.571075, 65.200211 ], [ -132.680756, 65.165688 ], [ -132.677002, 65.260773 ], [ -132.552155, 65.291046 ], [ -132.50145, 65.380272 ], [ -132.310455, 65.441132 ], [ -132.30098, 65.49514 ], [ -132.153336, 65.61171 ], [ -132.26445, 65.716049 ], [ -132.367981, 65.78418 ], [ -132.558929, 65.845612 ], [ -132.523834, 65.899765 ], [ -132.411819, 65.926605 ], [ -132.327454, 65.996521 ], [ -132.476288, 65.9776 ], [ -132.566193, 66.033089 ], [ -132.669449, 66.015373 ], [ -132.779968, 65.968765 ], [ -132.796753, 65.92424 ], [ -132.923691, 65.912521 ], [ -132.92746, 66.028816 ], [ -133.103149, 66.036247 ], [ -133.334808, 65.988007 ], [ -133.428726, 65.939697 ], [ -133.478561, 65.961891 ], [ -133.571121, 65.958061 ], [ -133.613068, 65.978996 ], [ -133.595535, 66.061623 ], [ -133.669098, 66.065025 ], [ -133.648727, 66.123352 ], [ -133.538834, 66.168221 ], [ -133.551117, 66.282005 ], [ -133.610794, 66.306625 ], [ -133.740356, 66.304291 ], [ -133.817383, 66.326622 ], [ -133.753632, 66.381065 ], [ -133.745804, 66.434502 ], [ -133.634521, 66.437126 ], [ -133.685013, 66.628983 ], [ -133.76825, 66.655853 ], [ -133.748215, 66.814682 ], [ -133.814102, 66.832535 ], [ -133.881256, 66.900948 ], [ -133.998123, 66.916 ], [ -134.031464, 66.987686 ], [ -133.875916, 66.986862 ], [ -133.855316, 67.004715 ], [ -134.707733, 67.008354 ], [ -136.076218, 67.003326 ], [ -136.144989, 67.006813 ], [ -136.199356, 67.059593 ], [ -136.20929, 67.115601 ], [ -136.169235, 67.196121 ], [ -136.080414, 67.304138 ], [ -136.162811, 67.402885 ], [ -136.153717, 67.511482 ], [ -136.225357, 67.624695 ], [ -136.41629, 67.653519 ], [ -136.431915, 68.096405 ], [ -136.441971, 68.898529 ], [ -136.437546, 69.019915 ], [ -136.341218, 69.005133 ], [ -136.391092, 69.122323 ], [ -136.380743, 69.218863 ], [ -136.301949, 69.300374 ], [ -136.151636, 69.322023 ], [ -136.031897, 69.324189 ], [ -135.955443, 69.361888 ], [ -135.913143, 69.415578 ], [ -135.942749, 69.481471 ], [ -135.932327, 69.549313 ], [ -135.834312, 69.623423 ], [ -135.715389, 69.624292 ], [ -135.66617, 69.686359 ], [ -135.550691, 69.743741 ], [ -135.410584, 69.757373 ], [ -135.258955, 69.742963 ], [ -135.197574, 69.720053 ], [ -135.151883, 69.65813 ], [ -135.087716, 69.646545 ], [ -135.086061, 69.727016 ], [ -135.001186, 69.803048 ], [ -134.917664, 69.819827 ], [ -134.747174, 69.819069 ], [ -134.670219, 69.797487 ], [ -134.618317, 69.754085 ], [ -134.568088, 69.812583 ], [ -134.377437, 69.912732 ], [ -134.272658, 69.904594 ], [ -134.182978, 69.85724 ], [ -134.157155, 69.793662 ], [ -134.086535, 69.771631 ], [ -134.049507, 69.729551 ], [ -133.848631, 69.728146 ], [ -133.759816, 69.697994 ], [ -133.681566, 69.635883 ], [ -133.626662, 69.660687 ], [ -133.525712, 69.657102 ], [ -133.447879, 69.598053 ], [ -133.417636, 69.51727 ], [ -133.316412, 69.505243 ], [ -133.137133, 69.535604 ], [ -133.145271, 69.597159 ], [ -133.114614, 69.661114 ], [ -133.023179, 69.737189 ], [ -132.938357, 69.768122 ], [ -132.801506, 69.775009 ], [ -132.735999, 69.762033 ], [ -132.583457, 69.852453 ], [ -132.280666, 69.885284 ], [ -132.192687, 69.874951 ], [ -132.148325, 69.84101 ], [ -131.974098, 69.882591 ], [ -131.817095, 69.961044 ], [ -131.736754, 69.984005 ], [ -131.591098, 69.993624 ], [ -131.48436, 70.065251 ], [ -131.352547, 70.089574 ], [ -131.204313, 70.037258 ], [ -131.168955, 70.039882 ], [ -131.057843, 70.163958 ], [ -130.952476, 70.226502 ], [ -130.883906, 70.247052 ], [ -130.805261, 70.22566 ], [ -130.574407, 70.270744 ], [ -130.370249, 70.276423 ], [ -130.255, 70.228672 ], [ -130.143582, 70.228893 ], [ -130.015868, 70.19753 ], [ -129.950603, 70.268794 ], [ -129.931946, 70.323039 ], [ -129.813927, 70.383433 ], [ -129.627613, 70.388444 ], [ -129.562885, 70.350612 ], [ -129.480297, 70.266516 ], [ -129.344067, 70.224471 ], [ -129.262456, 70.149605 ], [ -129.267533, 70.042157 ], [ -129.339923, 69.958552 ], [ -129.120163, 69.970264 ], [ -129.046067, 70.045106 ], [ -128.907535, 70.080413 ], [ -128.775409, 70.025392 ], [ -128.726799, 69.922597 ], [ -128.673205, 69.966193 ], [ -128.499711, 70.025854 ], [ -128.487588, 70.158125 ], [ -128.402616, 70.227318 ], [ -128.270329, 70.262837 ], [ -128.321674, 70.333286 ], [ -128.326163, 70.385831 ], [ -128.422642, 70.414611 ], [ -128.467127, 70.479289 ], [ -128.4641, 70.562503 ], [ -128.336129, 70.738779 ], [ -128.260587, 70.758951 ], [ -128.125965, 70.733317 ], [ -128.037079, 70.698127 ], [ -127.791589, 70.629163 ], [ -127.515917, 70.536761 ], [ -127.462322, 70.519203 ], [ -127.320459, 70.46054 ], [ -127.089934, 70.331191 ], [ -126.979794, 70.245681 ], [ -126.840573, 70.10764 ], [ -126.704151, 70.062109 ], [ -126.662503, 69.997023 ], [ -126.668109, 69.883929 ], [ -126.61799, 69.833627 ], [ -126.243879, 69.634601 ], [ -125.897224, 69.508734 ], [ -125.760318, 69.495247 ], [ -125.717472, 69.606719 ], [ -125.604232, 69.657368 ], [ -125.500334, 69.732042 ], [ -125.473756, 69.814028 ], [ -125.341225, 69.922801 ], [ -125.331843, 70.020099 ], [ -125.264512, 70.115257 ], [ -125.260367, 70.171914 ], [ -125.215921, 70.23978 ], [ -125.137815, 70.294793 ], [ -124.958058, 70.298758 ], [ -124.865476, 70.237338 ], [ -124.803891, 70.29414 ], [ -124.691501, 70.310201 ], [ -124.486782, 70.311752 ], [ -124.415244, 70.263503 ], [ -124.29182, 70.21823 ], [ -123.216335, 70.985922 ], [ -123.448034, 71.092858 ], [ -123.55507, 71.188164 ], [ -123.616075, 71.300212 ], [ -123.69577, 71.387487 ], [ -123.86283, 71.42194 ], [ -123.958157, 71.523667 ], [ -124.090938, 71.582122 ], [ -124.201819, 71.612625 ], [ -124.427447, 71.651419 ], [ -124.6253, 71.669438 ], [ -124.866236, 71.722586 ], [ -124.980008, 71.759814 ], [ -125.165988, 71.800858 ], [ -125.334337, 71.861009 ], [ -125.72877, 71.833487 ], [ -125.977188, 71.842611 ], [ -126.069561, 71.864532 ], [ -126.121639, 71.922846 ], [ -126.110134, 72.03685 ], [ -126.01438, 72.101873 ], [ -125.903349, 72.107382 ], [ -125.870866, 72.20696 ], [ -125.782762, 72.256859 ], [ -125.761227, 72.314919 ], [ -125.684059, 72.374177 ], [ -125.610868, 72.383036 ], [ -125.506557, 72.495978 ], [ -125.370591, 72.611783 ], [ -125.289105, 72.618585 ], [ -125.229964, 72.702911 ], [ -125.310059, 72.76545 ], [ -125.334075, 72.840146 ], [ -125.269683, 72.944189 ], [ -125.14309, 72.992282 ], [ -125.029591, 73.006741 ], [ -124.956181, 72.994245 ], [ -124.98351, 73.082035 ], [ -124.960827, 73.161579 ], [ -124.822946, 73.261566 ], [ -124.669182, 73.321063 ], [ -124.586084, 73.42574 ], [ -124.458086, 73.534459 ], [ -124.468357, 73.580426 ], [ -124.583556, 73.552343 ], [ -124.728723, 73.576208 ], [ -124.801982, 73.62852 ], [ -124.823709, 73.707739 ], [ -124.784996, 73.794075 ], [ -124.681505, 73.832641 ], [ -124.607689, 73.823683 ], [ -124.609198, 73.825671 ], [ -124.647491, 73.89254 ], [ -124.63624, 73.970892 ], [ -124.69285, 74.014794 ], [ -124.712874, 74.092075 ], [ -124.811826, 74.194844 ], [ -125.00128, 74.172468 ], [ -125.127832, 74.18075 ], [ -125.185311, 74.228057 ], [ -125.195545, 74.336926 ], [ -125.112852, 74.410528 ], [ -124.98901, 74.414258 ], [ -124.943299, 74.438129 ], [ -124.626646, 74.48355 ], [ -124.208079, 74.507593 ], [ -124.037863, 74.526648 ], [ -123.487626, 74.544867 ], [ -123.187616, 74.571826 ], [ -123.106508, 74.566902 ], [ -122.872418, 74.581883 ], [ -122.742146, 74.57715 ], [ -122.274827, 74.598051 ], [ -121.769398, 74.667216 ], [ -121.550957, 75.64806 ], [ -122.745511, 75.821463 ], [ -123.150119, 76.091201 ], [ -122.649176, 76.442824 ], [ -121.512423, 76.572877 ], [ -121.18483, 76.68837 ], [ -120.415703, 76.881004 ], [ -120.336164, 76.888449 ], [ -119.274857, 77.280556 ], [ -118.831029, 77.465807 ], [ -116.997457, 77.58712 ], [ -114.189909, 78.422453 ], [ -112.5, 78.675274 ], [ -112.5, 89.0 ], [ -97.5, 89.0 ], [ -97.5, 80.893776 ], [ -102.012406, 80.946863 ], [ -102.028684, 76.527432 ], [ -102.048947, 76.520658 ], [ -102.057996, 75.424573 ], [ -102.032746, 75.424692 ], [ -102.040135, 73.418474 ], [ -101.298388, 73.189711 ], [ -100.744677, 73.239103 ], [ -99.663186, 73.079425 ], [ -98.635258480624969, 72.933637655856444 ], [ -96.881752, 72.684944 ], [ -96.244801, 72.587475 ], [ -95.509986, 71.984372 ], [ -93.901711, 71.984372 ], [ -90.49106, 70.237453 ], [ -88.967728, 69.252724 ], [ -89.0, 67.0 ], [ -102.0, 67.0 ], [ -102.008194, 64.279419 ], [ -102.008194, 60.0 ], [ -110.0, 60.0 ], [ -110.0, 53.598941 ], [ -109.8342, 53.5518 ], [ -109.7337, 53.6037 ], [ -109.6384, 53.5872 ], [ -109.6167, 53.5208 ], [ -109.5442, 53.4888 ], [ -109.5674, 53.4467 ], [ -109.4601, 53.3755 ], [ -109.2887, 53.3957 ], [ -109.2363, 53.3331 ], [ -109.0743, 53.2791 ], [ -109.0675, 53.2295 ], [ -108.9821, 53.1666 ], [ -108.8829, 53.0165 ], [ -108.883, 52.8043 ], [ -109.0038, 52.8047 ], [ -109.0041, 52.8854 ], [ -109.1252, 52.8855 ], [ -109.1249, 52.9359 ], [ -109.2467, 52.9297 ], [ -109.2457, 52.8202 ], [ -109.3062, 52.813 ], [ -109.3068, 52.7399 ], [ -109.3908, 52.74 ], [ -109.3907, 52.6967 ], [ -109.4634, 52.6681 ], [ -110.0, 52.667308 ], [ -110.0, 48.996571 ], [ -109.236328, 48.999477 ], [ -108.282516, 48.995708 ], [ -107.710121, 48.996784 ], [ -106.970345, 48.993778 ], [ -105.420883, 48.997227 ], [ -104.46701, 48.994411 ], [ -104.049544, 48.990587 ], [ -104.044815, 48.000519 ], [ -103.965942, 47.959892 ], [ -103.965576, 47.848114 ], [ -103.800613, 47.84893 ], [ -103.799232, 47.675797 ], [ -103.738724, 47.675842 ], [ -103.737091, 47.588871 ], [ -103.610252, 47.589474 ], [ -103.609627, 47.515476 ], [ -103.455376, 47.519238 ], [ -103.395149, 47.597355 ], [ -103.27961, 47.595581 ], [ -103.194191, 47.575176 ], [ -103.072113, 47.576118 ], [ -103.020645, 47.633202 ], [ -102.907097, 47.631538 ], [ -102.841133, 47.595947 ], [ -102.768646, 47.595226 ], [ -102.514961, 47.511948 ], [ -102.438293, 47.515064 ], [ -102.414787, 47.590809 ], [ -102.250024, 47.615253 ], [ -102.158264, 47.564732 ], [ -102.029465, 47.572887 ], [ -102.018028, 47.533215 ], [ -101.930092, 47.52771 ], [ -101.817497, 47.495255 ], [ -101.696335, 47.537281 ], [ -101.594307, 47.529846 ], [ -101.429871, 47.561863 ], [ -101.376289, 47.517139 ], [ -101.439117, 47.45879 ], [ -101.362907, 47.366879 ], [ -101.339844, 47.288891 ], [ -101.211823, 47.246414 ], [ -101.184792, 47.278255 ], [ -101.048019, 47.290348 ], [ -100.992378, 47.263451 ], [ -100.991196, 47.19408 ], [ -100.933807, 47.088638 ], [ -100.880936, 47.041039 ], [ -100.931824, 46.989014 ], [ -100.908463, 46.9048 ], [ -100.817795, 46.792965 ], [ -100.839005, 46.765293 ], [ -100.788506, 46.69162 ], [ -100.734642, 46.656368 ], [ -100.565109, 46.593048 ], [ -100.59201, 46.427361 ], [ -100.680298, 46.413525 ], [ -100.716431, 46.379562 ], [ -100.898979, 46.397484 ], [ -101.036331, 46.275612 ], [ -101.355957, 46.077507 ], [ -101.349696, 45.943693 ], [ -100.512184, 45.943882 ], [ -100.426544, 45.878887 ], [ -100.356743, 45.85482 ], [ -100.366562, 45.801983 ], [ -100.298958, 45.702648 ], [ -100.339493, 45.654686 ], [ -100.428764, 45.645161 ], [ -100.430214, 45.594879 ], [ -100.483597, 45.551228 ], [ -100.446106, 45.510223 ], [ -100.380516, 45.510445 ], [ -100.277863, 45.383984 ], [ -100.316345, 45.312309 ], [ -100.260887, 45.233192 ], [ -100.280556, 45.158318 ], [ -100.35778, 45.026917 ], [ -100.426239, 44.984058 ], [ -100.398048, 44.860802 ], [ -100.533203, 44.764553 ], [ -100.602638, 44.767258 ], [ -100.678017, 44.827862 ], [ -100.728691, 44.778046 ], [ -100.638588, 44.741669 ], [ -100.610863, 44.685581 ], [ -100.649208, 44.603893 ], [ -100.600395, 44.556503 ], [ -100.548409, 44.444809 ], [ -100.430016, 44.461216 ], [ -100.389725, 44.443405 ], [ -100.371283, 44.371542 ], [ -100.554504, 44.167671 ], [ -101.045906, 44.169754 ], [ -101.04705, 43.995705 ], [ -101.068039, 43.844398 ], [ -101.124466, 43.842777 ], [ -101.233551, 43.783474 ], [ -101.228081, 43.38839 ], [ -101.227699, 42.995293 ], [ -100.904144, 42.995083 ], [ -100.891045, 42.611336 ], [ -100.773277, 42.610268 ], [ -100.775101, 42.438473 ], [ -100.829506, 42.438934 ], [ -100.809998, 42.351925 ], [ -100.808517, 42.205063 ], [ -100.750061, 42.205807 ], [ -100.748962, 42.088654 ], [ -100.844398, 42.089584 ], [ -100.843887, 41.740372 ], [ -101.404457, 41.743195 ], [ -101.405487, 41.395439 ], [ -101.27018, 41.395943 ], [ -101.268829, 41.048794 ], [ -101.248695, 41.04763 ], [ -101.245575, 40.697426 ], [ -101.343185, 40.697338 ], [ -101.342125, 40.351723 ], [ -101.32576, 40.315159 ], [ -101.322418, 40.004246 ], [ -102.048553, 40.00391 ], [ -102.047546, 39.568859 ], [ -101.39016, 39.56855 ], [ -101.391281, 39.134537 ], [ -101.47789, 39.13385 ], [ -101.484985, 38.700176 ], [ -101.569351, 38.700375 ], [ -101.566925, 38.263298 ], [ -101.540527, 38.263046 ], [ -101.540138, 37.828167 ], [ -101.527054, 37.736435 ], [ -102.043236, 37.738407 ], [ -102.042274, 36.992226 ], [ -103.00087, 36.998989 ], [ -103.000656, 36.501289 ], [ -103.040779, 36.500473 ], [ -103.042709, 34.000713 ], [ -103.063171, 33.001743 ], [ -103.064163, 31.999643 ], [ -104.920052, 32.002937 ], [ -104.914124, 30.979086 ], [ -104.90358, 30.813017 ], [ -104.914108, 30.664709 ], [ -104.980888, 30.629295 ], [ -104.980881, 30.621708 ], [ -104.895699, 30.564341 ], [ -104.86113, 30.468424 ], [ -104.85247, 30.381113 ], [ -104.705284, 30.237196 ], [ -104.684837, 30.164455 ], [ -104.701729, 30.027929 ], [ -104.678497, 29.926056 ], [ -104.560936, 29.766449 ], [ -104.50618, 29.635252 ], [ -104.33168, 29.5194 ], [ -104.260384, 29.511538 ], [ -104.160606, 29.392506 ], [ -103.974449, 29.29351 ], [ -103.839813, 29.276876 ], [ -103.774078, 29.247608 ], [ -103.715714, 29.178549 ], [ -103.524055, 29.133392 ], [ -103.431564, 29.044111 ], [ -103.305428, 29.022345 ], [ -103.307503, 29.013384 ], [ -103.40365, 28.869254 ], [ -103.514512, 28.664998 ], [ -103.557295, 28.611281 ], [ -103.596374, 28.639475 ], [ -103.643011, 28.512462 ], [ -103.76818, 28.300373 ], [ -103.8675, 28.112136 ], [ -103.941868, 27.927796 ], [ -103.93565, 27.797553 ], [ -103.881145, 27.739186 ], [ -103.897263, 27.656549 ], [ -103.854601, 27.549433 ], [ -103.876876, 27.311592 ], [ -103.832123, 27.298293 ], [ -103.798427, 27.213476 ], [ -103.799398, 27.12473 ], [ -103.751833, 27.076655 ], [ -103.744789, 27.022731 ], [ -103.835919, 26.935813 ], [ -103.851701, 26.896134 ], [ -103.75062, 26.809905 ], [ -103.715249, 26.735077 ], [ -103.861298, 26.754095 ], [ -104.056933, 26.748158 ], [ -104.227809, 26.777154 ], [ -104.273042, 26.84228 ], [ -104.31314, 26.797696 ], [ -104.286543, 26.725403 ], [ -104.330387, 26.656533 ], [ -104.434775, 26.604521 ], [ -104.503062, 26.464981 ], [ -104.50109, 26.414542 ], [ -104.574451, 26.340468 ], [ -104.654075, 26.391053 ], [ -104.713553, 26.466714 ], [ -104.809274, 26.508497 ], [ -104.8989, 26.510018 ], [ -104.94405, 26.468735 ], [ -105.056634, 26.419301 ], [ -105.10155, 26.521406 ], [ -105.264683, 26.462073 ], [ -105.31737, 26.462492 ], [ -105.40084, 26.517847 ], [ -105.549003, 26.546579 ], [ -105.60101, 26.614849 ], [ -105.674883, 26.61767 ], [ -105.746342, 26.713869 ], [ -105.814553, 26.690967 ], [ -105.865437, 26.747376 ], [ -105.939194, 26.763216 ], [ -106.047339, 26.844876 ], [ -106.100643, 26.759333 ], [ -106.157794, 26.770974 ], [ -106.167708, 26.706112 ], [ -106.219826, 26.656356 ], [ -106.255182, 26.49891 ], [ -106.24203, 26.466824 ], [ -106.312258, 26.348754 ], [ -106.432776, 26.204013 ], [ -106.415615, 26.1394 ], [ -106.471229, 26.060523 ], [ -106.455815, 25.972579 ], [ -106.547306, 25.952422 ], [ -106.56013, 25.912707 ], [ -106.555968, 25.691707 ], [ -106.653673, 25.577927 ], [ -106.744796, 25.585163 ], [ -106.873756, 25.571865 ], [ -106.899222, 25.643742 ], [ -106.97329, 25.62957 ], [ -107.109988, 25.560556 ], [ -107.15858, 25.442166 ], [ -107.210132, 25.417101 ], [ -107.124919, 25.18664 ], [ -107.129892, 25.053139 ], [ -107.067399, 25.030155 ], [ -107.018344, 24.933617 ], [ -106.867816, 24.824164 ], [ -106.705948, 24.665262 ], [ -106.624775, 24.500236 ], [ -106.560016, 24.472711 ], [ -106.601588, 24.414566 ], [ -106.527991, 24.295124 ], [ -106.469655, 24.277857 ], [ -106.363013, 24.304173 ], [ -106.327848, 24.361063 ], [ -106.268869, 24.374755 ], [ -106.15254, 24.33877 ], [ -106.077154, 24.272563 ], [ -105.989077, 24.107998 ], [ -106.007908, 24.071757 ], [ -105.908462, 23.983427 ], [ -105.867241, 23.875243 ], [ -105.953662, 23.908585 ], [ -105.961266, 23.840742 ], [ -105.906093, 23.739399 ], [ -105.926634, 23.684136 ], [ -105.908905, 23.58827 ], [ -105.811644, 23.611029 ], [ -105.772912, 23.560998 ], [ -105.68481, 23.285742 ], [ -105.643208, 23.276479 ], [ -105.645259, 23.143696 ], [ -105.555068, 23.098991 ], [ -105.501978, 23.128012 ], [ -105.415892, 23.116897 ], [ -105.350471, 23.060575 ], [ -105.353805, 23.020256 ], [ -105.297699, 22.954162 ], [ -105.076016, 22.959639 ], [ -105.013825, 22.977673 ], [ -104.989653, 22.83886 ], [ -104.908257, 22.807601 ], [ -104.915637, 22.748538 ], [ -105.057303, 22.688094 ], [ -105.072369, 22.656499 ], [ -104.960525, 22.505311 ], [ -104.862493, 22.60707 ], [ -104.779187, 22.642931 ], [ -104.737053, 22.558096 ], [ -104.656495, 22.541315 ], [ -104.655292, 22.462155 ], [ -104.574589, 22.39476 ], [ -104.494135, 22.376255 ], [ -104.371512, 22.421659 ], [ -104.293128, 22.365131 ], [ -104.29564, 22.276908 ], [ -104.328602, 22.245486 ], [ -104.373224, 22.101356 ], [ -104.369863, 21.974784 ], [ -104.295792, 22.00239 ], [ -104.245257, 21.966912 ], [ -104.173655, 21.970883 ], [ -104.190819, 21.854668 ], [ -104.130382, 21.790451 ], [ -104.052615, 21.794646 ], [ -103.977757, 21.771332 ], [ -103.89044, 21.69944 ], [ -103.930249, 21.641914 ], [ -103.923183, 21.590028 ], [ -103.851483, 21.515461 ], [ -103.750915, 21.476308 ], [ -103.765419, 21.386021 ], [ -103.749585, 21.336944 ], [ -103.86189, 21.248868 ], [ -103.917899, 21.231028 ], [ -103.971276, 21.256329 ], [ -104.015755, 21.208484 ], [ -104.208702, 21.189282 ], [ -104.233129, 20.968743 ], [ -104.290374, 20.849794 ], [ -104.282856, 20.783481 ], [ -104.241429, 20.709985 ], [ -104.256237, 20.651966 ], [ -104.396622, 20.780837 ], [ -104.503217, 20.841816 ], [ -104.542852, 20.91194 ], [ -104.681, 20.943841 ], [ -104.779391, 21.021182 ], [ -104.867559, 20.994589 ], [ -104.968822, 20.909026 ], [ -105.001698, 20.986428 ], [ -105.119988, 20.962233 ], [ -105.278587, 20.675657 ], [ -105.407253, 20.63336 ], [ -105.601106, 20.605033 ], [ -105.766006, 20.525921 ], [ -105.816142, 20.441086 ], [ -105.810809, 20.331349 ], [ -105.687127, 20.16533 ], [ -105.682762, 20.067465 ], [ -105.618751, 19.938478 ], [ -105.5197, 19.801763 ], [ -105.273805, 19.5069 ], [ -105.20662, 19.467539 ], [ -105.187515, 19.388743 ], [ -105.133303, 19.312768 ], [ -105.045766, 19.227824 ], [ -104.855834, 19.106181 ], [ -104.742024, 19.060343 ], [ -104.547872, 19.01205 ], [ -104.450669, 18.968273 ], [ -104.394645, 18.91069 ], [ -104.166067, 18.830656 ], [ -104.045963, 18.768963 ], [ -103.896688, 18.659224 ], [ -103.836087, 18.596667 ], [ -103.788196, 18.487731 ], [ -103.688448, 18.431827 ], [ -103.597041, 18.261784 ], [ -103.550924, 18.220392 ], [ -103.406259, 18.153497 ], [ -103.080744, 18.068197 ], [ -102.890908, 17.981022 ], [ -102.740126, 17.929969 ], [ -102.629154, 17.918045 ], [ -102.296506, 17.835001 ], [ -102.21106, 17.792387 ], [ -102.084414, 17.81364 ], [ -102.030118, 17.85983 ], [ -101.890627, 17.796242 ], [ -101.856561, 17.73172 ], [ -101.791815, 17.674648 ], [ -101.763497, 17.594547 ], [ -101.711597, 17.551262 ], [ -101.575475, 17.492833 ], [ -101.518361, 17.42598 ], [ -101.279254, 17.323013 ], [ -101.17745, 17.251077 ], [ -101.108485, 17.159589 ], [ -100.860156, 17.080607 ], [ -100.729792, 17.027729 ], [ -100.453027, 16.939182 ], [ -100.183775, 16.830643 ], [ -100.027131, 16.789464 ], [ -99.992282, 16.736732 ], [ -99.797176, 16.615702 ], [ -99.632327, 16.571561 ], [ -99.482564, 16.564643 ], [ -99.346304, 16.521981 ], [ -99.025072, 16.468103 ], [ -98.883096, 16.413261 ], [ -98.817048, 16.4227 ], [ -98.788224, 16.37718 ], [ -98.681364, 16.286091 ], [ -98.650932, 16.236992 ], [ -98.445135, 16.152812 ], [ -98.259043, 16.115753 ], [ -97.996891, 15.974418 ], [ -97.818665, 15.847477 ], [ -97.642881, 15.83855 ], [ -97.5, 15.818415 ], [ -97.5, -90.0 ], [ -112.5, -90.0 ] ], [ [ -105.0, -29.0 ], [ -105.0, -25.0 ], [ -110.0, -25.0 ], [ -110.0, -29.0 ], [ -105.0, -29.0 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "-6" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -85.001862, 82.477631 ], [ -84.982391, 66.264542 ], [ -85.033571, 66.268717 ], [ -85.828896, 66.053677 ], [ -89.111625, 62.483572 ], [ -88.991257, 56.847542 ], [ -90.0, 56.218323 ], [ -90.0, 54.0 ], [ -89.0, 54.0 ], [ -88.5, 53.625 ], [ -88.5, 53.375 ], [ -89.0, 53.0 ], [ -89.0, 52.75 ], [ -90.0, 52.75 ], [ -90.0, 52.0 ], [ -90.5, 51.75 ], [ -90.75, 51.5 ], [ -90.75, 51.25 ], [ -90.5, 51.0 ], [ -90.0, 50.75 ], [ -90.0, 49.5 ], [ -91.0, 49.25 ], [ -91.0, 49.0 ], [ -90.9639, 49.0 ], [ -90.9639, 48.5 ], [ -90.0, 48.25 ], [ -89.992905, 48.020023 ], [ -89.862091, 47.987865 ], [ -89.755028, 48.020103 ], [ -89.505821, 47.993664 ], [ -89.876047, 46.767605 ], [ -89.866028, 46.593441 ], [ -89.737686, 46.591949 ], [ -89.738808, 46.507069 ], [ -89.36499, 46.504402 ], [ -89.366119, 46.332916 ], [ -88.992073, 46.331093 ], [ -88.992722, 46.418163 ], [ -88.117409, 46.419403 ], [ -88.117798, 46.24712 ], [ -87.618874, 46.247551 ], [ -87.620338, 45.985188 ], [ -87.370888, 45.98473 ], [ -87.370407, 45.897785 ], [ -87.329216, 45.898045 ], [ -87.330078, 45.549538 ], [ -87.258012, 45.548811 ], [ -87.18721, 45.639111 ], [ -87.101112, 45.681698 ], [ -87.040871, 45.743164 ], [ -87.052254, 45.804073 ], [ -87.001472, 45.828678 ], [ -86.98027, 45.694004 ], [ -86.836685, 45.720116 ], [ -86.804047, 45.783455 ], [ -86.706657, 45.687596 ], [ -86.705429, 45.645775 ], [ -86.629913, 45.612058 ], [ -85.947211, 44.940085 ], [ -85.979149, 44.90242 ], [ -86.069824, 44.890121 ], [ -86.083878, 44.740383 ], [ -86.243599, 44.698666 ], [ -86.220291, 44.536808 ], [ -86.257011, 44.355785 ], [ -86.412308, 44.129673 ], [ -86.510025, 44.047245 ], [ -86.440262, 43.938156 ], [ -86.428131, 43.777046 ], [ -86.522476, 43.656612 ], [ -86.526375, 43.610035 ], [ -86.457695, 43.489483 ], [ -86.389252, 43.313671 ], [ -86.251472, 43.094612 ], [ -86.21553, 42.988354 ], [ -86.197563, 42.872677 ], [ -86.204193, 42.670059 ], [ -86.254898, 42.437504 ], [ -86.294678, 42.340019 ], [ -86.371376, 42.221115 ], [ -86.482231, 42.101135 ], [ -86.605278, 41.894928 ], [ -86.677841, 41.834064 ], [ -86.806435, 41.760872 ], [ -86.524025, 41.760254 ], [ -86.526436, 41.64994 ], [ -86.486511, 41.576855 ], [ -86.524544, 41.520115 ], [ -86.524513, 41.43388 ], [ -86.64151, 41.4338 ], [ -86.702057, 41.400585 ], [ -86.739136, 41.322464 ], [ -86.784241, 41.28516 ], [ -86.930038, 41.237099 ], [ -86.929291, 40.913601 ], [ -86.987656, 40.913391 ], [ -86.98716, 40.840809 ], [ -87.099533, 40.839874 ], [ -87.098671, 40.73827 ], [ -87.526283, 40.737804 ], [ -87.532715, 40.130928 ], [ -87.530449, 39.351601 ], [ -87.587631, 39.336102 ], [ -87.603203, 39.263802 ], [ -87.574753, 39.216171 ], [ -87.653786, 39.142563 ], [ -87.570702, 39.056171 ], [ -87.57653, 39.004498 ], [ -87.513039, 38.954216 ], [ -87.543732, 38.89114 ], [ -87.497078, 38.743126 ], [ -87.536934, 38.682968 ], [ -87.587242, 38.671089 ], [ -87.669121, 38.543995 ], [ -87.738052, 38.479355 ], [ -87.743416, 38.414089 ], [ -87.579971, 38.48362 ], [ -87.500175, 38.495171 ], [ -87.407593, 38.379398 ], [ -87.315987, 38.377327 ], [ -87.316864, 38.245876 ], [ -87.298546, 38.231949 ], [ -87.072975, 38.232304 ], [ -87.072777, 38.20647 ], [ -86.793411, 38.207005 ], [ -86.800163, 38.139458 ], [ -86.771797, 38.063377 ], [ -86.79631, 37.987358 ], [ -86.731148, 37.892727 ], [ -86.667267, 37.855522 ], [ -86.604599, 37.860142 ], [ -86.581619, 37.920967 ], [ -86.528481, 37.917801 ], [ -86.521851, 38.028908 ], [ -86.489334, 38.04459 ], [ -86.242775, 37.876812 ], [ -86.151718, 37.798916 ], [ -86.271957, 37.599667 ], [ -86.186775, 37.560284 ], [ -86.113098, 37.56657 ], [ -86.047203, 37.449932 ], [ -85.749748, 37.430962 ], [ -85.665146, 37.43655 ], [ -85.633911, 37.471039 ], [ -85.479118, 37.363678 ], [ -85.353226, 37.192234 ], [ -85.269821, 37.262371 ], [ -85.192299, 37.272629 ], [ -85.176514, 37.312031 ], [ -85.05648, 37.256798 ], [ -85.053368, 37.196941 ], [ -84.971344, 37.113651 ], [ -84.915985, 37.107502 ], [ -84.905495, 37.047607 ], [ -84.835594, 36.997822 ], [ -85.064011, 36.858303 ], [ -85.003731, 36.756046 ], [ -85.02005, 36.718025 ], [ -84.988617, 36.618172 ], [ -84.784172, 36.606289 ], [ -84.659531, 36.394909 ], [ -84.730286, 36.368919 ], [ -84.794266, 36.29882 ], [ -84.877296, 36.281937 ], [ -84.912613, 36.208321 ], [ -84.903748, 36.151085 ], [ -84.720062, 35.99456 ], [ -84.679497, 35.907455 ], [ -84.780251, 35.823681 ], [ -84.905212, 35.773621 ], [ -85.050621, 35.616501 ], [ -85.107719, 35.571564 ], [ -85.249901, 35.316566 ], [ -85.387062, 35.147583 ], [ -85.381691, 35.047222 ], [ -85.474213, 34.984474 ], [ -85.605515, 34.985531 ], [ -85.572998, 34.802887 ], [ -85.449356, 34.219746 ], [ -85.224541, 33.069317 ], [ -85.190277, 32.880558 ], [ -85.142067, 32.78767 ], [ -85.078438, 32.593781 ], [ -85.000565, 32.507347 ], [ -84.972794, 32.439938 ], [ -84.999725, 32.322342 ], [ -84.895866, 32.266697 ], [ -84.980103, 32.213383 ], [ -85.064453, 32.131516 ], [ -85.059708, 32.018993 ], [ -85.143547, 31.838377 ], [ -85.125694, 31.694794 ], [ -85.067436, 31.626978 ], [ -85.045441, 31.544319 ], [ -85.117332, 31.274069 ], [ -85.109947, 31.193531 ], [ -85.040375, 31.109709 ], [ -84.972252, 30.929657 ], [ -84.93766, 30.888376 ], [ -84.916435, 30.754196 ], [ -84.858414, 30.699812 ], [ -84.905388, 30.622177 ], [ -84.965874, 30.572287 ], [ -84.987473, 30.471035 ], [ -85.050438, 30.337345 ], [ -85.060089, 30.265421 ], [ -85.107567, 30.217825 ], [ -85.148888, 30.111225 ], [ -85.132057, 30.03862 ], [ -85.026428, 29.982895 ], [ -85.012085, 29.930832 ], [ -85.020554, 29.807112 ], [ -85.109993, 29.777132 ], [ -85.211922, 29.845205 ], [ -85.324188, 29.956547 ], [ -85.533139, 29.848459 ], [ -85.522494, 29.74559 ], [ -85.475882, 29.624693 ], [ -85.429987, 29.567408 ], [ -85.360062, 29.542196 ], [ -85.241762, 29.553384 ], [ -85.072642, 29.466053 ], [ -84.966857, 29.477858 ], [ -84.743479, 29.569412 ], [ -84.624111, 29.659927 ], [ -84.498884, 29.713603 ], [ -84.455307, 29.788781 ], [ -84.372687, 29.772068 ], [ -84.256666, 29.817987 ], [ -84.202291, 29.958072 ], [ -84.051623, 29.978776 ], [ -83.881639, 29.873572 ], [ -83.740892, 29.810565 ], [ -83.69204, 29.704857 ], [ -83.629732, 29.639423 ], [ -83.529471, 29.577917 ], [ -83.518303, 29.48228 ], [ -83.475992, 29.423591 ], [ -83.308092, 29.313803 ], [ -83.276375, 29.226702 ], [ -83.198512, 29.166069 ], [ -83.195508, 29.075121 ], [ -83.155389, 29.006683 ], [ -83.08684, 28.976796 ], [ -83.024719, 28.98383 ], [ -82.953444, 29.046986 ], [ -82.88304, 28.987272 ], [ -82.826044, 28.891404 ], [ -82.827734, 28.758798 ], [ -82.782416, 28.65775 ], [ -82.777005, 28.572776 ], [ -82.85301, 28.32452 ], [ -82.952756, 28.264647 ], [ -82.972541, 28.185211 ], [ -82.950516, 28.106919 ], [ -82.949752, 27.990765 ], [ -82.975301, 27.858304 ], [ -82.927734, 27.753271 ], [ -82.860744, 27.679543 ], [ -82.889523, 27.559284 ], [ -82.797336, 27.378706 ], [ -82.632444, 27.173574 ], [ -82.5, 26.913254 ], [ -82.5, 23.694104 ], [ -86.0, 23.694104 ], [ -86.0, 21.8 ], [ -87.534912, 21.8 ], [ -87.534912, 21.489881 ], [ -87.533145, 20.999602 ], [ -87.744259, 20.653787 ], [ -88.13649, 20.281372 ], [ -88.264634, 20.290342 ], [ -88.308788, 20.25351 ], [ -88.443426, 20.23815 ], [ -88.502345, 20.190078 ], [ -88.690609, 20.089856 ], [ -88.700176, 20.010357 ], [ -88.783503, 20.00818 ], [ -88.833043, 19.878227 ], [ -88.880192, 19.878125 ], [ -88.929512, 19.790949 ], [ -88.974452, 19.818101 ], [ -89.048827, 19.721493 ], [ -89.123399, 19.703424 ], [ -89.144862, 19.637399 ], [ -89.296562, 19.551174 ], [ -89.146667, 19.423862 ], [ -89.144382, 18.755919 ], [ -89.152115, 18.735731 ], [ -89.150238, 18.451059 ], [ -89.13236, 18.293403 ], [ -89.143066, 18.14582 ], [ -89.200237, 18.144629 ], [ -89.205872, 17.9541 ], [ -89.151957, 17.940257 ], [ -89.14537, 17.944826 ], [ -89.093597, 17.985266 ], [ -89.021935, 18.000355 ], [ -88.880333, 17.906065 ], [ -88.779533, 17.979416 ], [ -88.755753, 18.033674 ], [ -88.699089, 18.063341 ], [ -88.652939, 18.17399 ], [ -88.608856, 18.226326 ], [ -88.591042, 18.304064 ], [ -88.548134, 18.346989 ], [ -88.512932, 18.462267 ], [ -88.433426, 18.480844 ], [ -88.305504, 18.485069 ], [ -88.066451, 18.418134 ], [ -87.943972, 18.183289 ], [ -87.839046, 18.172742 ], [ -82.5, 18.183319 ], [ -82.5, 9.668421 ], [ -82.611656, 9.502308 ], [ -82.693932, 9.508739 ], [ -82.745399, 9.57808 ], [ -82.853714, 9.615466 ], [ -82.88414, 9.552131 ], [ -82.844963, 9.497264 ], [ -82.937561, 9.473368 ], [ -82.936188, 9.103702 ], [ -82.800766, 9.008022 ], [ -82.741608, 8.981502 ], [ -82.715706, 8.925186 ], [ -82.769592, 8.878805 ], [ -82.852463, 8.853965 ], [ -82.917137, 8.744999 ], [ -82.82785, 8.626787 ], [ -82.833427, 8.505902 ], [ -82.858879, 8.44946 ], [ -82.928246, 8.434606 ], [ -82.993309, 8.366836 ], [ -83.050148, 8.339612 ], [ -82.990341, 8.277086 ], [ -82.937759, 8.269567 ], [ -82.891182, 8.111118 ], [ -82.891903, 7.888236 ], [ -82.826912, 7.899011 ], [ -82.793125, 7.921825 ], [ -82.743744, 8.025913 ], [ -82.737662, 8.098532 ], [ -82.760203, 8.175588 ], [ -82.759493, 8.18478 ], [ -82.70534, 8.201503 ], [ -82.680483, 8.202643 ], [ -82.5, 8.143071 ], [ -82.5, -90.0 ], [ -97.5, -90.0 ], [ -97.5, 15.818415 ], [ -97.642881, 15.83855 ], [ -97.818665, 15.847477 ], [ -97.996891, 15.974418 ], [ -98.259043, 16.115753 ], [ -98.445135, 16.152812 ], [ -98.650932, 16.236992 ], [ -98.681364, 16.286091 ], [ -98.788224, 16.37718 ], [ -98.817048, 16.4227 ], [ -98.883096, 16.413261 ], [ -99.025072, 16.468103 ], [ -99.346304, 16.521981 ], [ -99.482564, 16.564643 ], [ -99.632327, 16.571561 ], [ -99.797176, 16.615702 ], [ -99.992282, 16.736732 ], [ -100.027131, 16.789464 ], [ -100.183775, 16.830643 ], [ -100.453027, 16.939182 ], [ -100.729792, 17.027729 ], [ -100.860156, 17.080607 ], [ -101.108485, 17.159589 ], [ -101.17745, 17.251077 ], [ -101.279254, 17.323013 ], [ -101.518361, 17.42598 ], [ -101.575475, 17.492833 ], [ -101.711597, 17.551262 ], [ -101.763497, 17.594547 ], [ -101.791815, 17.674648 ], [ -101.856561, 17.73172 ], [ -101.890627, 17.796242 ], [ -102.030118, 17.85983 ], [ -102.084414, 17.81364 ], [ -102.21106, 17.792387 ], [ -102.296506, 17.835001 ], [ -102.629154, 17.918045 ], [ -102.740126, 17.929969 ], [ -102.890908, 17.981022 ], [ -103.080744, 18.068197 ], [ -103.406259, 18.153497 ], [ -103.550924, 18.220392 ], [ -103.597041, 18.261784 ], [ -103.688448, 18.431827 ], [ -103.788196, 18.487731 ], [ -103.836087, 18.596667 ], [ -103.896688, 18.659224 ], [ -104.045963, 18.768963 ], [ -104.166067, 18.830656 ], [ -104.394645, 18.91069 ], [ -104.450669, 18.968273 ], [ -104.547872, 19.01205 ], [ -104.742024, 19.060343 ], [ -104.855834, 19.106181 ], [ -105.045766, 19.227824 ], [ -105.133303, 19.312768 ], [ -105.187515, 19.388743 ], [ -105.20662, 19.467539 ], [ -105.273805, 19.5069 ], [ -105.5197, 19.801763 ], [ -105.618751, 19.938478 ], [ -105.682762, 20.067465 ], [ -105.687127, 20.16533 ], [ -105.810809, 20.331349 ], [ -105.816142, 20.441086 ], [ -105.766006, 20.525921 ], [ -105.601106, 20.605033 ], [ -105.407253, 20.63336 ], [ -105.278587, 20.675657 ], [ -105.196961, 20.777171 ], [ -105.152622, 20.862624 ], [ -105.046805, 20.934284 ], [ -104.968822, 20.909026 ], [ -104.867559, 20.994589 ], [ -104.779391, 21.021182 ], [ -104.681, 20.943841 ], [ -104.542852, 20.91194 ], [ -104.503217, 20.841816 ], [ -104.396622, 20.780837 ], [ -104.256237, 20.651966 ], [ -104.241429, 20.709985 ], [ -104.282856, 20.783481 ], [ -104.290374, 20.849794 ], [ -104.233129, 20.968743 ], [ -104.208702, 21.189282 ], [ -104.015755, 21.208484 ], [ -103.971276, 21.256329 ], [ -103.917899, 21.231028 ], [ -103.86189, 21.248868 ], [ -103.749585, 21.336944 ], [ -103.765419, 21.386021 ], [ -103.750915, 21.476308 ], [ -103.851483, 21.515461 ], [ -103.923183, 21.590028 ], [ -103.930249, 21.641914 ], [ -103.89044, 21.69944 ], [ -103.977757, 21.771332 ], [ -104.052615, 21.794646 ], [ -104.130382, 21.790451 ], [ -104.190819, 21.854668 ], [ -104.173655, 21.970883 ], [ -104.245257, 21.966912 ], [ -104.295792, 22.00239 ], [ -104.369863, 21.974784 ], [ -104.373224, 22.101356 ], [ -104.328602, 22.245486 ], [ -104.29564, 22.276908 ], [ -104.293128, 22.365131 ], [ -104.371512, 22.421659 ], [ -104.494135, 22.376255 ], [ -104.574589, 22.39476 ], [ -104.655292, 22.462155 ], [ -104.656495, 22.541315 ], [ -104.737053, 22.558096 ], [ -104.779187, 22.642931 ], [ -104.862493, 22.60707 ], [ -104.960525, 22.505311 ], [ -105.072369, 22.656499 ], [ -105.057303, 22.688094 ], [ -104.915637, 22.748538 ], [ -104.908257, 22.807601 ], [ -104.989653, 22.83886 ], [ -105.013825, 22.977673 ], [ -105.076016, 22.959639 ], [ -105.297699, 22.954162 ], [ -105.353805, 23.020256 ], [ -105.350471, 23.060575 ], [ -105.415892, 23.116897 ], [ -105.501978, 23.128012 ], [ -105.555068, 23.098991 ], [ -105.645259, 23.143696 ], [ -105.643208, 23.276479 ], [ -105.68481, 23.285742 ], [ -105.772912, 23.560998 ], [ -105.811644, 23.611029 ], [ -105.908905, 23.58827 ], [ -105.926634, 23.684136 ], [ -105.906093, 23.739399 ], [ -105.961266, 23.840742 ], [ -105.953662, 23.908585 ], [ -105.867241, 23.875243 ], [ -105.908462, 23.983427 ], [ -106.007908, 24.071757 ], [ -105.989077, 24.107998 ], [ -106.077154, 24.272563 ], [ -106.15254, 24.33877 ], [ -106.268869, 24.374755 ], [ -106.327848, 24.361063 ], [ -106.363013, 24.304173 ], [ -106.469655, 24.277857 ], [ -106.527991, 24.295124 ], [ -106.601588, 24.414566 ], [ -106.560016, 24.472711 ], [ -106.624775, 24.500236 ], [ -106.705948, 24.665262 ], [ -106.867816, 24.824164 ], [ -107.018344, 24.933617 ], [ -107.067399, 25.030155 ], [ -107.129892, 25.053139 ], [ -107.124919, 25.18664 ], [ -107.210132, 25.417101 ], [ -107.15858, 25.442166 ], [ -107.109988, 25.560556 ], [ -106.97329, 25.62957 ], [ -106.899222, 25.643742 ], [ -106.873756, 25.571865 ], [ -106.744796, 25.585163 ], [ -106.653673, 25.577927 ], [ -106.555968, 25.691707 ], [ -106.56013, 25.912707 ], [ -106.547306, 25.952422 ], [ -106.455815, 25.972579 ], [ -106.471229, 26.060523 ], [ -106.415615, 26.1394 ], [ -106.432776, 26.204013 ], [ -106.312258, 26.348754 ], [ -106.24203, 26.466824 ], [ -106.255182, 26.49891 ], [ -106.219826, 26.656356 ], [ -106.167708, 26.706112 ], [ -106.157794, 26.770974 ], [ -106.100643, 26.759333 ], [ -106.047339, 26.844876 ], [ -105.939194, 26.763216 ], [ -105.865437, 26.747376 ], [ -105.814553, 26.690967 ], [ -105.746342, 26.713869 ], [ -105.674883, 26.61767 ], [ -105.60101, 26.614849 ], [ -105.549003, 26.546579 ], [ -105.40084, 26.517847 ], [ -105.31737, 26.462492 ], [ -105.264683, 26.462073 ], [ -105.10155, 26.521406 ], [ -105.056634, 26.419301 ], [ -104.94405, 26.468735 ], [ -104.8989, 26.510018 ], [ -104.809274, 26.508497 ], [ -104.713553, 26.466714 ], [ -104.654075, 26.391053 ], [ -104.574451, 26.340468 ], [ -104.50109, 26.414542 ], [ -104.503062, 26.464981 ], [ -104.434775, 26.604521 ], [ -104.330387, 26.656533 ], [ -104.286543, 26.725403 ], [ -104.31314, 26.797696 ], [ -104.273042, 26.84228 ], [ -104.227809, 26.777154 ], [ -104.056933, 26.748158 ], [ -103.861298, 26.754095 ], [ -103.715249, 26.735077 ], [ -103.75062, 26.809905 ], [ -103.851701, 26.896134 ], [ -103.835919, 26.935813 ], [ -103.744789, 27.022731 ], [ -103.751833, 27.076655 ], [ -103.799398, 27.12473 ], [ -103.798427, 27.213476 ], [ -103.832123, 27.298293 ], [ -103.876876, 27.311592 ], [ -103.854601, 27.549433 ], [ -103.897263, 27.656549 ], [ -103.881145, 27.739186 ], [ -103.93565, 27.797553 ], [ -103.941868, 27.927796 ], [ -103.8675, 28.112136 ], [ -103.76818, 28.300373 ], [ -103.643011, 28.512462 ], [ -103.596374, 28.639475 ], [ -103.557295, 28.611281 ], [ -103.514512, 28.664998 ], [ -103.40365, 28.869254 ], [ -103.307503, 29.013384 ], [ -103.305428, 29.022345 ], [ -103.431564, 29.044111 ], [ -103.524055, 29.133392 ], [ -103.715714, 29.178549 ], [ -103.774078, 29.247608 ], [ -103.839813, 29.276876 ], [ -103.974449, 29.29351 ], [ -104.160606, 29.392506 ], [ -104.260384, 29.511538 ], [ -104.33168, 29.5194 ], [ -104.50618, 29.635252 ], [ -104.560936, 29.766449 ], [ -104.678497, 29.926056 ], [ -104.701729, 30.027929 ], [ -104.684837, 30.164455 ], [ -104.705284, 30.237196 ], [ -104.85247, 30.381113 ], [ -104.86113, 30.468424 ], [ -104.895699, 30.564341 ], [ -104.980881, 30.621708 ], [ -104.980888, 30.629295 ], [ -104.914108, 30.664709 ], [ -104.90358, 30.813017 ], [ -104.914124, 30.979086 ], [ -104.920052, 32.002937 ], [ -103.064163, 31.999643 ], [ -103.063171, 33.001743 ], [ -103.042709, 34.000713 ], [ -103.040779, 36.500473 ], [ -103.000656, 36.501289 ], [ -103.00087, 36.998989 ], [ -102.042274, 36.992226 ], [ -102.043236, 37.738407 ], [ -101.527054, 37.736435 ], [ -101.540138, 37.828167 ], [ -101.540527, 38.263046 ], [ -101.566925, 38.263298 ], [ -101.569351, 38.700375 ], [ -101.484985, 38.700176 ], [ -101.47789, 39.13385 ], [ -101.391281, 39.134537 ], [ -101.39016, 39.56855 ], [ -102.047546, 39.568859 ], [ -102.048553, 40.00391 ], [ -101.322418, 40.004246 ], [ -101.32576, 40.315159 ], [ -101.342125, 40.351723 ], [ -101.343185, 40.697338 ], [ -101.245575, 40.697426 ], [ -101.248695, 41.04763 ], [ -101.268829, 41.048794 ], [ -101.27018, 41.395943 ], [ -101.405487, 41.395439 ], [ -101.404457, 41.743195 ], [ -100.843887, 41.740372 ], [ -100.844398, 42.089584 ], [ -100.748962, 42.088654 ], [ -100.750061, 42.205807 ], [ -100.808517, 42.205063 ], [ -100.809998, 42.351925 ], [ -100.829506, 42.438934 ], [ -100.775101, 42.438473 ], [ -100.773277, 42.610268 ], [ -100.891045, 42.611336 ], [ -100.904144, 42.995083 ], [ -101.227699, 42.995293 ], [ -101.228081, 43.38839 ], [ -101.233551, 43.783474 ], [ -101.124466, 43.842777 ], [ -101.068039, 43.844398 ], [ -101.04705, 43.995705 ], [ -101.045906, 44.169754 ], [ -100.554504, 44.167671 ], [ -100.371283, 44.371542 ], [ -100.389725, 44.443405 ], [ -100.430016, 44.461216 ], [ -100.548409, 44.444809 ], [ -100.600395, 44.556503 ], [ -100.649208, 44.603893 ], [ -100.610863, 44.685581 ], [ -100.638588, 44.741669 ], [ -100.728691, 44.778046 ], [ -100.678017, 44.827862 ], [ -100.602638, 44.767258 ], [ -100.533203, 44.764553 ], [ -100.398048, 44.860802 ], [ -100.426239, 44.984058 ], [ -100.35778, 45.026917 ], [ -100.280556, 45.158318 ], [ -100.260887, 45.233192 ], [ -100.316345, 45.312309 ], [ -100.277863, 45.383984 ], [ -100.380516, 45.510445 ], [ -100.446106, 45.510223 ], [ -100.483597, 45.551228 ], [ -100.430214, 45.594879 ], [ -100.428764, 45.645161 ], [ -100.339493, 45.654686 ], [ -100.298958, 45.702648 ], [ -100.366562, 45.801983 ], [ -100.356743, 45.85482 ], [ -100.426544, 45.878887 ], [ -100.512184, 45.943882 ], [ -101.349696, 45.943693 ], [ -101.355957, 46.077507 ], [ -101.036331, 46.275612 ], [ -100.898979, 46.397484 ], [ -100.716431, 46.379562 ], [ -100.680298, 46.413525 ], [ -100.59201, 46.427361 ], [ -100.565109, 46.593048 ], [ -100.734642, 46.656368 ], [ -100.788506, 46.69162 ], [ -100.839005, 46.765293 ], [ -100.817795, 46.792965 ], [ -100.908463, 46.9048 ], [ -100.931824, 46.989014 ], [ -100.880936, 47.041039 ], [ -100.933807, 47.088638 ], [ -100.991196, 47.19408 ], [ -100.992378, 47.263451 ], [ -101.048019, 47.290348 ], [ -101.184792, 47.278255 ], [ -101.211823, 47.246414 ], [ -101.339844, 47.288891 ], [ -101.362907, 47.366879 ], [ -101.439117, 47.45879 ], [ -101.376289, 47.517139 ], [ -101.429871, 47.561863 ], [ -101.594307, 47.529846 ], [ -101.696335, 47.537281 ], [ -101.817497, 47.495255 ], [ -101.930092, 47.52771 ], [ -102.018028, 47.533215 ], [ -102.029465, 47.572887 ], [ -102.158264, 47.564732 ], [ -102.250024, 47.615253 ], [ -102.414787, 47.590809 ], [ -102.438293, 47.515064 ], [ -102.514961, 47.511948 ], [ -102.768646, 47.595226 ], [ -102.841133, 47.595947 ], [ -102.907097, 47.631538 ], [ -103.020645, 47.633202 ], [ -103.072113, 47.576118 ], [ -103.194191, 47.575176 ], [ -103.27961, 47.595581 ], [ -103.395149, 47.597355 ], [ -103.455376, 47.519238 ], [ -103.609627, 47.515476 ], [ -103.610252, 47.589474 ], [ -103.737091, 47.588871 ], [ -103.738724, 47.675842 ], [ -103.799232, 47.675797 ], [ -103.800613, 47.84893 ], [ -103.965576, 47.848114 ], [ -103.965942, 47.959892 ], [ -104.044815, 48.000519 ], [ -104.049544, 48.990587 ], [ -104.46701, 48.994411 ], [ -105.420883, 48.997227 ], [ -106.970345, 48.993778 ], [ -107.710121, 48.996784 ], [ -108.282516, 48.995708 ], [ -109.236328, 48.999477 ], [ -110.0, 48.996571 ], [ -110.0, 52.667308 ], [ -109.4634, 52.6681 ], [ -109.3907, 52.6967 ], [ -109.3908, 52.74 ], [ -109.3068, 52.7399 ], [ -109.3062, 52.813 ], [ -109.2457, 52.8202 ], [ -109.2467, 52.9297 ], [ -109.1249, 52.9359 ], [ -109.1252, 52.8855 ], [ -109.0041, 52.8854 ], [ -109.0038, 52.8047 ], [ -108.883, 52.8043 ], [ -108.8829, 53.0165 ], [ -108.9821, 53.1666 ], [ -109.0675, 53.2295 ], [ -109.0743, 53.2791 ], [ -109.2363, 53.3331 ], [ -109.2887, 53.3957 ], [ -109.4601, 53.3755 ], [ -109.5674, 53.4467 ], [ -109.5442, 53.4888 ], [ -109.6167, 53.5208 ], [ -109.6384, 53.5872 ], [ -109.7337, 53.6037 ], [ -109.8342, 53.5518 ], [ -110.0, 53.598941 ], [ -110.0, 60.0 ], [ -102.008194, 60.0 ], [ -102.008194, 64.279419 ], [ -102.0, 67.0 ], [ -89.0, 67.0 ], [ -89.0, 69.260324 ], [ -90.49106, 70.237453 ], [ -93.901711, 71.984372 ], [ -95.509986, 71.984372 ], [ -96.244801, 72.587475 ], [ -98.635258480624969, 72.933637655856444 ], [ -100.744677, 73.239103 ], [ -101.298388, 73.189711 ], [ -102.040135, 73.418474 ], [ -102.012406, 80.946863 ], [ -97.5, 80.893776 ], [ -97.5, 89.0 ], [ -82.5, 89.0 ], [ -82.5, 83.884861 ], [ -83.5, 82.477631 ], [ -85.001862, 82.477631 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "-4" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -67.5, 89.0 ], [ -52.5, 89.0 ], [ -52.5, 82.36558 ], [ -52.568443, 82.392989 ], [ -52.758651, 82.424874 ], [ -53.082761, 82.449707 ], [ -53.21288, 82.440755 ], [ -53.397841, 82.380117 ], [ -53.500335, 82.319154 ], [ -53.537395, 82.217196 ], [ -53.627937, 82.24281 ], [ -53.779951, 82.32579 ], [ -53.847852, 82.336573 ], [ -54.156054, 82.436723 ], [ -54.343793, 82.454827 ], [ -54.434215, 82.477882 ], [ -54.593305, 82.482373 ], [ -55.239665, 82.434585 ], [ -55.362181, 82.414068 ], [ -55.450689, 82.417746 ], [ -55.650984, 82.395016 ], [ -55.707051, 82.36641 ], [ -55.84651, 82.387122 ], [ -55.966439, 82.383545 ], [ -56.193406, 82.356479 ], [ -56.298592, 82.304127 ], [ -56.418219, 82.313336 ], [ -56.579973, 82.343894 ], [ -57.209302, 82.296225 ], [ -57.907675, 82.269105 ], [ -58.370352, 82.237667 ], [ -58.448678, 82.216667 ], [ -58.596009, 82.224667 ], [ -58.897502, 82.192326 ], [ -59.509383, 82.117651 ], [ -59.595936, 82.083058 ], [ -59.639026, 82.014934 ], [ -60.003054, 82.055477 ], [ -60.606422, 82.01683 ], [ -60.827129, 81.994686 ], [ -61.468391, 81.874615 ], [ -67.58747, 80.544598 ], [ -61.352363, 81.911005 ], [ -60.83773, 81.993177 ], [ -61.096123, 82.154212 ], [ -61.029705, 82.25726 ], [ -61.019637, 82.386655 ], [ -61.058591, 82.448218 ], [ -61.290347, 82.540235 ], [ -61.543, 82.585584 ], [ -61.722144, 82.608225 ], [ -61.90893, 82.605938 ], [ -62.000975, 82.621591 ], [ -62.165793, 82.623936 ], [ -62.214114, 82.643029 ], [ -62.33931, 82.64973 ], [ -62.863787, 82.631841 ], [ -62.915725, 82.683544 ], [ -63.104418, 82.71189 ], [ -63.1813, 82.711338 ], [ -63.276356, 82.763276 ], [ -63.336872, 82.768781 ], [ -63.357242, 82.859385 ], [ -63.403348, 82.904194 ], [ -63.503199, 82.94015 ], [ -63.605045, 82.952502 ], [ -63.970657, 82.957209 ], [ -64.227028, 82.93271 ], [ -64.317193, 82.906102 ], [ -64.345583, 82.957811 ], [ -64.406514, 82.991613 ], [ -64.591072, 82.982145 ], [ -64.671613, 83.018419 ], [ -64.883836, 83.030866 ], [ -65.07969, 83.022129 ], [ -65.288954, 83.002455 ], [ -65.388524, 82.935975 ], [ -65.436889, 82.95626 ], [ -65.769544, 82.970363 ], [ -66.257313, 82.919924 ], [ -66.282305, 83.007047 ], [ -66.342051, 83.046612 ], [ -66.865648, 83.070542 ], [ -66.919236, 83.053478 ], [ -67.024661, 83.079222 ], [ -67.135883, 83.084379 ], [ -67.233379, 83.056915 ], [ -67.5, 83.075647 ], [ -67.5, 89.0 ] ] ], [ [ [ -52.5, -90.0 ], [ -67.5, -90.0 ], [ -67.5, -56.004087 ], [ -67.526883, -56.008284 ], [ -67.467576, -55.993698 ], [ -67.363757, -56.07278 ], [ -67.276851, -56.099228 ], [ -67.144157, -56.072022 ], [ -67.105414, -56.031872 ], [ -67.056256, -56.049952 ], [ -66.937848, -56.02184 ], [ -66.869325, -55.924605 ], [ -66.752977, -55.959964 ], [ -66.6845, -55.932865 ], [ -66.637185, -55.837951 ], [ -66.657802, -55.764939 ], [ -66.72053, -55.707933 ], [ -66.657196, -55.650039 ], [ -66.645216, -55.578495 ], [ -66.676649, -55.51312 ], [ -66.6447, -55.40179 ], [ -66.572572, -55.409374 ], [ -66.447701, -55.385838 ], [ -66.335689, -55.304881 ], [ -66.308312, -55.260966 ], [ -66.299932, -55.112112 ], [ -66.212891, -55.115523 ], [ -66.025141, -55.091249 ], [ -65.91907, -55.056495 ], [ -65.854989, -55.012448 ], [ -65.808784, -55.016468 ], [ -65.72825, -55.081592 ], [ -65.625303, -55.088172 ], [ -65.44346, -55.042668 ], [ -65.37118, -55.057375 ], [ -65.271484, -55.027683 ], [ -65.211667, -54.985802 ], [ -65.119652, -54.882892 ], [ -65.069243, -54.775901 ], [ -64.991846, -54.684378 ], [ -65.020289, -54.578965 ], [ -65.059242, -54.548526 ], [ -65.217885, -54.499603 ], [ -65.398962, -54.530452 ], [ -65.679883, -54.552949 ], [ -65.841448, -54.513211 ], [ -65.969879, -54.496717 ], [ -66.213804, -54.409889 ], [ -66.319071, -54.35188 ], [ -66.487443, -54.302624 ], [ -66.605871, -54.206215 ], [ -66.775786, -54.120217 ], [ -66.868922, -54.101125 ], [ -67.055833, -54.016421 ], [ -67.239244, -53.963867 ], [ -67.292307, -53.920003 ], [ -67.436278, -53.839136 ], [ -67.49942, -53.735802 ], [ -67.734211, -53.619885 ], [ -67.913474, -53.488894 ], [ -67.965577, -53.340277 ], [ -68.049698, -53.238115 ], [ -68.080058, -53.171222 ], [ -68.082229, -53.089639 ], [ -68.143536, -52.949786 ], [ -68.191748, -52.875859 ], [ -68.469028, -52.632035 ], [ -68.272767, -52.41344 ], [ -68.244748, -52.321808 ], [ -68.278147, -52.230329 ], [ -68.423996, -52.088677 ], [ -68.543836, -51.987599 ], [ -68.658277, -51.861786 ], [ -68.75534, -51.710629 ], [ -68.836612, -51.607472 ], [ -68.828497, -51.504154 ], [ -68.894432, -51.38285 ], [ -68.912815, -51.311664 ], [ -69.012402, -51.091602 ], [ -69.035366, -50.979474 ], [ -69.002867, -50.849875 ], [ -69.015656, -50.764118 ], [ -68.966856, -50.61996 ], [ -68.83759, -50.480332 ], [ -68.734251, -50.41396 ], [ -68.325116, -50.288239 ], [ -68.266669, -50.244697 ], [ -68.116515, -50.226775 ], [ -67.946133, -50.166359 ], [ -67.846598, -50.108812 ], [ -67.676797, -49.96377 ], [ -67.593707, -49.768804 ], [ -67.576076, -49.609995 ], [ -67.532292, -49.449244 ], [ -67.466398, -49.280391 ], [ -67.483951, -49.12638 ], [ -67.324476, -48.990073 ], [ -67.200882, -48.941261 ], [ -67.095033, -48.853942 ], [ -66.980046, -48.829632 ], [ -66.934393, -48.72564 ], [ -66.788225, -48.675277 ], [ -66.610318, -48.554541 ], [ -66.449469, -48.530391 ], [ -66.367865, -48.472582 ], [ -66.313161, -48.474581 ], [ -66.302766, -48.544709 ], [ -66.242982, -48.60366 ], [ -66.117667, -48.599023 ], [ -66.05643, -48.527995 ], [ -66.054721, -48.45864 ], [ -66.139434, -48.360575 ], [ -66.043555, -48.251061 ], [ -65.994371, -48.226697 ], [ -65.911592, -48.236847 ], [ -65.840343, -48.206972 ], [ -65.792524, -48.140398 ], [ -65.787808, -48.07555 ], [ -65.721989, -48.059298 ], [ -65.665285, -47.999957 ], [ -65.650604, -47.888171 ], [ -65.724666, -47.789572 ], [ -65.619917, -47.525359 ], [ -65.59596, -47.32922 ], [ -65.638178, -47.154291 ], [ -65.665934, -47.116639 ], [ -65.840636, -46.988685 ], [ -65.975914, -46.956428 ], [ -66.185034, -46.975978 ], [ -66.481445, -46.932688 ], [ -66.612486, -46.936896 ], [ -66.703213, -46.919204 ], [ -66.879966, -46.755752 ], [ -66.956231, -46.714442 ], [ -67.030856, -46.620739 ], [ -67.283367, -46.511115 ], [ -67.341651, -46.461657 ], [ -67.450901, -46.305785 ], [ -67.494631, -46.212878 ], [ -67.50611, -46.128541 ], [ -67.419934, -46.013943 ], [ -67.360858, -45.910004 ], [ -67.262515, -45.84078 ], [ -67.231034, -45.690283 ], [ -67.135031, -45.625352 ], [ -66.962425, -45.418439 ], [ -66.835077, -45.354261 ], [ -66.645793, -45.33787 ], [ -66.520833, -45.34853 ], [ -66.452624, -45.329136 ], [ -66.345562, -45.17869 ], [ -66.25462, -45.175161 ], [ -66.132613, -45.111068 ], [ -66.095539, -45.186596 ], [ -65.948871, -45.238819 ], [ -65.880159, -45.221425 ], [ -65.839939, -45.179079 ], [ -65.765265, -45.202535 ], [ -65.538966, -45.162321 ], [ -65.506153, -45.19892 ], [ -65.378397, -45.213931 ], [ -65.314953, -45.155839 ], [ -65.302817, -45.077888 ], [ -65.401424, -44.940839 ], [ -65.440556, -44.803057 ], [ -65.517621, -44.760107 ], [ -65.482188, -44.725254 ], [ -65.321185, -44.696749 ], [ -65.189316, -44.593284 ], [ -65.165193, -44.484267 ], [ -65.113394, -44.433273 ], [ -65.095032, -44.355032 ], [ -65.151381, -44.237305 ], [ -65.110901, -44.189714 ], [ -65.075966, -44.085639 ], [ -65.080522, -43.981895 ], [ -65.147036, -43.889959 ], [ -65.197472, -43.858988 ], [ -65.194746, -43.774524 ], [ -65.221153, -43.712498 ], [ -64.961446, -43.477007 ], [ -64.93066, -43.373436 ], [ -64.839956, -43.315173 ], [ -64.658582, -43.244398 ], [ -64.445074, -43.190567 ], [ -64.252141, -43.095928 ], [ -64.188439, -42.987422 ], [ -64.075057, -42.9948 ], [ -63.648795, -42.913031 ], [ -63.569157, -42.869993 ], [ -63.525728, -42.815647 ], [ -63.517865, -42.726981 ], [ -63.473434, -42.647512 ], [ -63.488395, -42.431788 ], [ -63.473342, -42.319715 ], [ -63.536371, -42.194978 ], [ -63.588539, -42.141563 ], [ -63.657825, -42.004413 ], [ -63.725863, -41.95909 ], [ -63.798798, -41.950469 ], [ -63.971671, -41.986292 ], [ -64.114991, -42.066636 ], [ -64.426374, -42.131855 ], [ -64.728359, -42.095518 ], [ -64.843367, -42.074155 ], [ -64.933262, -42.013555 ], [ -64.954043, -41.947388 ], [ -64.890836, -41.786347 ], [ -64.91347, -41.696631 ], [ -64.884625, -41.547063 ], [ -64.910012, -41.447842 ], [ -64.98316, -41.350162 ], [ -65.052947, -41.078482 ], [ -65.057759, -41.006436 ], [ -65.013753, -40.908497 ], [ -64.920453, -40.955089 ], [ -64.762201, -40.94627 ], [ -64.471195, -41.022342 ], [ -64.278787, -41.112844 ], [ -64.15089, -41.135247 ], [ -63.995269, -41.198004 ], [ -63.917102, -41.251024 ], [ -63.819333, -41.279916 ], [ -63.150237, -41.282209 ], [ -63.042925, -41.270127 ], [ -62.923291, -41.216831 ], [ -62.701769, -41.153077 ], [ -62.473772, -41.060589 ], [ -62.358549, -41.030185 ], [ -62.219016, -40.944572 ], [ -62.124282, -40.748907 ], [ -62.060983, -40.680883 ], [ -62.050142, -40.595051 ], [ -62.068148, -40.537471 ], [ -62.006722, -40.379772 ], [ -62.028985, -40.308173 ], [ -61.981537, -40.216952 ], [ -61.989867, -40.122449 ], [ -62.06892, -39.990798 ], [ -61.994898, -39.889614 ], [ -61.989872, -39.650179 ], [ -61.892171, -39.407676 ], [ -61.892237, -39.356221 ], [ -61.776275, -39.320538 ], [ -61.743345, -39.260249 ], [ -61.733213, -39.097736 ], [ -61.638086, -39.129378 ], [ -61.556545, -39.134766 ], [ -61.375027, -39.107998 ], [ -61.131367, -39.124153 ], [ -61.046813, -39.103991 ], [ -60.823432, -39.098606 ], [ -60.497731, -39.045236 ], [ -60.380468, -39.035568 ], [ -60.035429, -38.980621 ], [ -59.778364, -38.952889 ], [ -59.612481, -38.906555 ], [ -59.401208, -38.873052 ], [ -59.238109, -38.835928 ], [ -59.063772, -38.811562 ], [ -58.737503, -38.717894 ], [ -58.682947, -38.695703 ], [ -58.471297, -38.653965 ], [ -58.150451, -38.55671 ], [ -57.816684, -38.411941 ], [ -57.624198, -38.31498 ], [ -57.477903, -38.204322 ], [ -57.429727, -38.135369 ], [ -57.405385, -38.031945 ], [ -57.400028, -37.919877 ], [ -57.340325, -37.8465 ], [ -57.02965, -37.579027 ], [ -56.888366, -37.361695 ], [ -56.575585, -36.977877 ], [ -56.554936, -36.93573 ], [ -56.551141, -36.711005 ], [ -56.573805, -36.416046 ], [ -56.610339, -36.306002 ], [ -56.657678, -36.238061 ], [ -56.735686, -36.184657 ], [ -56.81672, -36.182699 ], [ -56.872079, -36.218188 ], [ -56.960088, -36.221664 ], [ -57.094209, -36.140675 ], [ -57.171738, -36.074656 ], [ -57.256252, -35.932697 ], [ -57.267816, -35.847659 ], [ -57.199759, -35.740856 ], [ -57.025562, -35.534202 ], [ -56.999912, -35.463939 ], [ -57.027114, -35.33998 ], [ -57.099715, -35.234532 ], [ -57.262021, -35.064686 ], [ -57.454607, -34.925659 ], [ -57.522315, -34.903239 ], [ -57.615132, -34.837616 ], [ -57.862176, -34.716007 ], [ -57.969522, -34.674851 ], [ -58.131788, -34.63547 ], [ -58.233951, -34.574588 ], [ -58.306268, -34.486775 ], [ -58.362451, -34.462513 ], [ -58.359224, -34.374294 ], [ -58.288177, -34.305873 ], [ -58.170125, -34.286442 ], [ -58.075198, -34.362856 ], [ -58.018433, -34.435064 ], [ -58.004598, -34.493989 ], [ -57.929853, -34.579802 ], [ -57.859332, -34.604951 ], [ -57.762882, -34.603595 ], [ -57.642293, -34.5799 ], [ -57.597128, -34.606063 ], [ -57.507559, -34.606821 ], [ -57.378283, -34.561743 ], [ -57.164902, -34.579218 ], [ -57.126446, -34.635254 ], [ -56.998148, -34.715694 ], [ -56.963196, -34.760163 ], [ -56.838781, -34.814895 ], [ -56.681411, -34.842588 ], [ -56.53697, -34.888574 ], [ -56.492197, -34.944292 ], [ -56.360717, -35.022534 ], [ -56.115794, -35.05109 ], [ -56.031713, -35.015825 ], [ -55.992644, -35.057412 ], [ -55.880923, -35.070056 ], [ -55.818343, -35.018672 ], [ -55.779701, -34.903666 ], [ -55.618556, -34.900822 ], [ -55.554409, -34.921193 ], [ -55.397577, -34.926557 ], [ -55.317339, -35.013036 ], [ -55.230384, -35.028933 ], [ -55.125714, -35.005587 ], [ -55.063722, -35.037779 ], [ -54.968469, -35.134516 ], [ -54.896606, -35.167416 ], [ -54.81639, -35.147255 ], [ -54.761666, -35.032209 ], [ -54.660508, -34.982365 ], [ -54.583279, -34.968241 ], [ -54.395409, -34.877967 ], [ -54.178248, -34.797616 ], [ -54.095894, -34.79148 ], [ -54.011908, -34.682906 ], [ -53.919704, -34.612685 ], [ -53.710226, -34.501911 ], [ -53.638418, -34.382192 ], [ -53.646721, -34.325081 ], [ -53.539028, -34.216841 ], [ -53.448349, -34.15134 ], [ -53.411502, -34.086311 ], [ -53.377818, -33.921705 ], [ -53.282441, -33.834551 ], [ -53.150252, -33.749879 ], [ -52.870376, -33.518675 ], [ -52.701394, -33.386417 ], [ -52.560607, -33.231605 ], [ -52.5, -33.130601 ], [ -52.5, -90.0 ] ], [ [ -61.8, -50.5 ], [ -61.8, -52.7 ], [ -57.3, -52.7 ], [ -57.3, -50.5 ], [ -61.8, -50.5 ] ] ], [ [ [ -73.900002, -41.647507 ], [ -73.91177, -41.62355 ], [ -73.913166, -41.618664 ], [ -73.900002, -41.647507 ] ] ], [ [ [ -73.670298, -37.063775 ], [ -73.672211, -37.059235 ], [ -73.675704, -37.023344 ], [ -73.670298, -37.063775 ] ] ], [ [ [ -73.337078, -37.053156 ], [ -73.342036, -37.092527 ], [ -73.355955, -37.1208 ], [ -73.337078, -37.053156 ] ] ], [ [ [ -72.93494, -36.255539 ], [ -72.941898, -36.222013 ], [ -72.944092, -36.189015 ], [ -72.93494, -36.255539 ] ] ], [ [ [ -70.250715, -20.089042 ], [ -70.252545, -20.081853 ], [ -70.252995, -20.0784 ], [ -70.250715, -20.089042 ] ] ], [ [ [ -70.327976, -19.523391 ], [ -70.327443, -19.517503 ], [ -70.327065, -19.516189 ], [ -70.327976, -19.523391 ] ] ], [ [ [ -69.504128, -17.539856 ], [ -69.462646, -17.507553 ], [ -69.462875, -17.375532 ], [ -69.610977, -17.254417 ], [ -69.551376, -17.161558 ], [ -69.457253, -17.10425 ], [ -69.374825, -17.078199 ], [ -69.391891, -17.020998 ], [ -69.181992, -16.793577 ], [ -69.1735, -16.740662 ], [ -68.996452, -16.659943 ], [ -69.031616, -16.560858 ], [ -68.982368, -16.43272 ], [ -68.817299, -16.342781 ], [ -68.817986, -16.315248 ], [ -68.962921, -16.188629 ], [ -69.09922, -16.219093 ], [ -69.235939, -16.143026 ], [ -69.298004, -15.938698 ], [ -69.413857, -15.62077 ], [ -69.296959, -15.418922 ], [ -69.264549, -15.335523 ], [ -69.185593, -15.261448 ], [ -69.125984, -15.256123 ], [ -69.19072, -15.163446 ], [ -69.279549, -15.112489 ], [ -69.374557, -14.954077 ], [ -69.348763, -14.903423 ], [ -69.352882, -14.793632 ], [ -69.251694, -14.758834 ], [ -69.236153, -14.601929 ], [ -69.146095, -14.579051 ], [ -69.153755, -14.512995 ], [ -69.061058, -14.433229 ], [ -68.979767, -14.387169 ], [ -68.996376, -14.300499 ], [ -68.981529, -14.236923 ], [ -68.858139, -14.220421 ], [ -68.854919, -14.121583 ], [ -68.880791, -14.065045 ], [ -68.965302, -13.973227 ], [ -68.95919, -13.882266 ], [ -69.046982, -13.721612 ], [ -69.074356, -13.64808 ], [ -68.997284, -13.652464 ], [ -68.941727, -13.485863 ], [ -68.960274, -13.179576 ], [ -68.944115, -13.072187 ], [ -68.970032, -13.000739 ], [ -68.962212, -12.855412 ], [ -68.874176, -12.750437 ], [ -68.750259, -12.720067 ], [ -68.727699, -12.671489 ], [ -68.753471, -12.592457 ], [ -68.704315, -12.559611 ], [ -68.679298, -12.497149 ], [ -68.92421, -11.993988 ], [ -69.027916, -11.81721 ], [ -69.566444, -10.956658 ], [ -69.433586, -10.951978 ], [ -69.390045, -10.93192 ], [ -69.312073, -10.956348 ], [ -69.060692, -10.977282 ], [ -68.867424, -11.023735 ], [ -68.819534, -10.994572 ], [ -68.750626, -11.006585 ], [ -68.776924, -11.124155 ], [ -68.738495, -11.143052 ], [ -68.587486, -11.110317 ], [ -68.512932, -11.045891 ], [ -68.414558, -11.041128 ], [ -68.367699, -11.002431 ], [ -68.289696, -10.990559 ], [ -68.246811, -10.951306 ], [ -68.184837, -10.835507 ], [ -68.059845, -10.679408 ], [ -67.869614, -10.654002 ], [ -67.810921, -10.662381 ], [ -67.734154, -10.716403 ], [ -67.684845, -10.628266 ], [ -67.632622, -10.598266 ], [ -67.588333, -10.518331 ], [ -67.443138, -10.449774 ], [ -67.406563, -10.369332 ], [ -67.327187, -10.374251 ], [ -67.315147, -10.316207 ], [ -67.237053, -10.312564 ], [ -67.181442, -10.337565 ], [ -67.134956, -10.287621 ], [ -67.029045, -10.254179 ], [ -66.883392, -10.080641 ], [ -66.645844, -9.913334 ], [ -67.557743, -9.537873 ], [ -69.945732, -4.225544 ], [ -69.922127, -4.161763 ], [ -69.777878, -3.398282 ], [ -69.664642, -2.750283 ], [ -69.447906, -1.552427 ], [ -69.452515, -1.477611 ], [ -69.386276, -1.395636 ], [ -69.368347, -1.333702 ], [ -69.375145, -1.17331 ], [ -69.410065, -1.131677 ], [ -69.437737, -1.028683 ], [ -69.419884, -1.003208 ], [ -69.507874, -0.93641 ], [ -69.551628, -0.81282 ], [ -69.59539, -0.777214 ], [ -69.551125, -0.648225 ], [ -69.586632, -0.604281 ], [ -69.589615, -0.524037 ], [ -69.630165, -0.488653 ], [ -69.730736, -0.456756 ], [ -69.850311, -0.33523 ], [ -69.907867, -0.315769 ], [ -70.068024, -0.134779 ], [ -70.035652, 0.370532 ], [ -70.037407, 0.545666 ], [ -69.910034, 0.589937 ], [ -69.79837, 0.584742 ], [ -69.651031, 0.670095 ], [ -69.60849, 0.625333 ], [ -69.565781, 0.685351 ], [ -69.468208, 0.734351 ], [ -69.358734, 0.622597 ], [ -69.294975, 0.648283 ], [ -69.201538, 0.601751 ], [ -69.186417, 0.638649 ], [ -69.11412, 0.652157 ], [ -69.183502, 0.730424 ], [ -69.136986, 0.868457 ], [ -69.191086, 0.898657 ], [ -69.185387, 0.952575 ], [ -69.256721, 1.025505 ], [ -69.329239, 1.062455 ], [ -69.416382, 1.023687 ], [ -69.45575, 1.056308 ], [ -69.608215, 1.073588 ], [ -69.70034, 1.055641 ], [ -69.753181, 1.095937 ], [ -69.817978, 1.055002 ], [ -69.854073, 1.069752 ], [ -69.855194, 1.714919 ], [ -69.778572, 1.702608 ], [ -69.740173, 1.735307 ], [ -69.654381, 1.725768 ], [ -69.55574, 1.775197 ], [ -69.394562, 1.725671 ], [ -68.638809, 1.72874 ], [ -68.162056, 1.734391 ], [ -68.182411, 1.775226 ], [ -68.246483, 1.786587 ], [ -68.283348, 1.835377 ], [ -68.222206, 1.972644 ], [ -68.116913, 1.951853 ], [ -68.067078, 1.831797 ], [ -67.971497, 1.744901 ], [ -67.896362, 1.756818 ], [ -67.786316, 1.823212 ], [ -67.668312, 1.987888 ], [ -67.577995, 2.075562 ], [ -67.446159, 2.141113 ], [ -67.360504, 2.114372 ], [ -67.250252, 1.915157 ], [ -67.116821, 1.732161 ], [ -67.068146, 1.532232 ], [ -67.106468, 1.265936 ], [ -67.096664, 1.170079 ], [ -66.869835, 1.225646 ], [ -66.893997, 1.275092 ], [ -66.886032, 1.362688 ], [ -66.926147, 1.418306 ], [ -66.929901, 1.478775 ], [ -66.974472, 1.586011 ], [ -66.974915, 1.63547 ], [ -67.071228, 1.914842 ], [ -67.126343, 1.992833 ], [ -67.10463, 2.065851 ], [ -67.156792, 2.121075 ], [ -67.211296, 2.250561 ], [ -67.173134, 2.344553 ], [ -67.195045, 2.391271 ], [ -67.275841, 2.43531 ], [ -67.39254, 2.568002 ], [ -67.478973, 2.621054 ], [ -67.492493, 2.669326 ], [ -67.571739, 2.683892 ], [ -67.567192, 2.72809 ], [ -67.615616, 2.812483 ], [ -67.714523, 2.812518 ], [ -67.81823, 2.832805 ], [ -67.854393, 2.869817 ], [ -67.434258, 3.246967 ], [ -67.391907, 3.248784 ], [ -67.302628, 3.397936 ], [ -67.32766, 3.459059 ], [ -67.382988, 3.484581 ], [ -67.446846, 3.659711 ], [ -67.509827, 3.74597 ], [ -67.582863, 3.735934 ], [ -67.619453, 3.76637 ], [ -67.6782, 3.914804 ], [ -67.736122, 4.118264 ], [ -67.784279, 4.164749 ], [ -67.809181, 4.233227 ], [ -67.784363, 4.350779 ], [ -67.830055, 4.488444 ], [ -67.871933, 4.514005 ], [ -67.817451, 4.828317 ], [ -67.829582, 4.906523 ], [ -67.794281, 5.039307 ], [ -67.796211, 5.099607 ], [ -67.851151, 5.283 ], [ -67.810722, 5.363085 ], [ -67.655846, 5.467006 ], [ -67.613472, 5.531435 ], [ -67.638153, 5.595519 ], [ -67.643753, 5.701122 ], [ -67.578835, 5.849186 ], [ -67.464241, 5.947548 ], [ -67.421112, 6.005971 ], [ -67.481003, 6.082065 ], [ -67.476051, 6.194591 ], [ -67.551483, 6.2492 ], [ -67.634148, 6.280529 ], [ -67.841576, 6.30199 ], [ -67.967018, 6.212051 ], [ -68.04213, 6.205653 ], [ -68.144501, 6.223938 ], [ -68.349831, 6.166835 ], [ -68.471756, 6.187953 ], [ -68.669266, 6.133347 ], [ -68.840569, 6.184695 ], [ -68.932892, 6.175571 ], [ -69.051498, 6.21296 ], [ -69.112648, 6.183323 ], [ -69.215149, 6.087361 ], [ -69.277451, 6.092443 ], [ -69.323372, 6.150324 ], [ -69.450424, 6.116735 ], [ -69.956154, 6.825918 ], [ -70.082687, 6.998269 ], [ -70.338409, 6.940162 ], [ -70.386948, 6.981435 ], [ -70.508255, 7.011652 ], [ -70.560799, 7.076914 ], [ -70.637451, 7.064274 ], [ -70.691467, 7.092551 ], [ -70.897026, 7.057353 ], [ -70.952988, 6.985921 ], [ -71.104218, 6.986735 ], [ -71.153076, 7.029184 ], [ -71.330185, 7.012481 ], [ -71.421059, 7.033195 ], [ -71.660118, 7.022361 ], [ -71.734474, 7.061688 ], [ -71.820343, 7.045744 ], [ -71.840485, 7.007701 ], [ -72.007805, 7.008928 ], [ -72.033905, 7.023821 ], [ -72.173103, 7.251312 ], [ -72.165939, 7.328435 ], [ -72.203331, 7.381046 ], [ -72.259674, 7.375656 ], [ -72.43866, 7.400355 ], [ -72.480705, 7.484615 ], [ -72.456696, 7.560476 ], [ -72.479225, 7.626878 ], [ -72.473854, 7.785588 ], [ -72.44902, 7.830923 ], [ -72.46431, 7.914371 ], [ -72.413818, 8.038215 ], [ -72.345818, 8.04909 ], [ -72.355118, 8.17062 ], [ -72.391029, 8.263382 ], [ -72.391769, 8.352717 ], [ -72.584145, 8.567546 ], [ -72.65313, 8.626049 ], [ -72.74379, 9.015926 ], [ -72.777946, 9.116374 ], [ -72.879364, 9.135428 ], [ -72.928604, 9.086787 ], [ -72.968483, 9.138689 ], [ -72.963615, 9.207809 ], [ -73.01078, 9.296101 ], [ -73.129234, 9.234805 ], [ -73.174316, 9.182858 ], [ -73.244011, 9.165613 ], [ -73.350319, 9.182608 ], [ -73.238029, 9.407462 ], [ -73.192924, 9.44317 ], [ -73.145767, 9.545272 ], [ -73.080238, 9.565972 ], [ -73.049919, 9.684622 ], [ -72.947723, 9.840187 ], [ -72.990448, 9.882874 ], [ -72.97757, 9.976038 ], [ -72.91404, 10.108714 ], [ -72.900017, 10.361233 ], [ -72.885368, 10.460829 ], [ -72.837746, 10.542693 ], [ -72.711716, 10.708698 ], [ -72.642365, 10.883132 ], [ -72.562035, 10.935012 ], [ -72.46714, 11.111311 ], [ -72.341637, 11.157571 ], [ -72.237442, 11.152378 ], [ -71.966057, 11.650083 ], [ -71.777512, 11.694505 ], [ -71.377151, 11.817017 ], [ -71.319916, 11.844101 ], [ -71.004998, 11.957713 ], [ -71.210802, 12.6 ], [ -71.754051, 12.6 ], [ -71.754051, 18.030148 ], [ -71.731537, 18.080132 ], [ -71.779861, 18.175028 ], [ -71.692856, 18.341171 ], [ -71.786385, 18.37888 ], [ -71.900253, 18.458145 ], [ -71.877922, 18.505085 ], [ -71.95224, 18.581852 ], [ -71.965851, 18.653511 ], [ -71.87027, 18.629663 ], [ -71.807724, 18.636812 ], [ -71.79586, 18.693542 ], [ -71.737732, 18.730448 ], [ -71.716957, 18.825472 ], [ -71.739555, 18.890114 ], [ -71.815666, 18.991751 ], [ -71.633957, 19.129425 ], [ -71.613358, 19.201639 ], [ -71.747078, 19.279165 ], [ -71.764893, 19.315668 ], [ -71.675034, 19.441677 ], [ -71.686096, 19.505245 ], [ -71.738747, 19.584814 ], [ -71.733536, 19.654676 ], [ -71.8, 19.8 ], [ -71.8, 20.0 ], [ -67.5, 20.0 ], [ -67.5, 44.356606 ], [ -67.416511, 44.427991 ], [ -67.399357, 44.473257 ], [ -67.232154, 44.493175 ], [ -67.115454, 44.551112 ], [ -67.039305, 44.61535 ], [ -67.021906, 44.545683 ], [ -66.979478, 44.497624 ], [ -66.854522, 44.486828 ], [ -66.800492, 44.452999 ], [ -66.729553, 44.452691 ], [ -66.621559, 44.529584 ], [ -66.579918, 44.60813 ], [ -66.605632, 44.753058 ], [ -66.656164, 44.852865 ], [ -66.920624, 45.04821 ], [ -67.088074, 45.076889 ], [ -67.149239, 45.157242 ], [ -67.277275, 45.186352 ], [ -67.343697, 45.126141 ], [ -67.418083, 45.187469 ], [ -67.48526, 45.287174 ], [ -67.430931, 45.344975 ], [ -67.439293, 45.397163 ], [ -67.495621, 45.478832 ], [ -67.407036, 45.553661 ], [ -67.447205, 45.600407 ], [ -67.502373, 45.585773 ], [ -67.615891, 45.607384 ], [ -67.701996, 45.65992 ], [ -67.800896, 45.675812 ], [ -67.811722, 45.788021 ], [ -67.761467, 45.819256 ], [ -67.808578, 45.879948 ], [ -67.783424, 45.939587 ], [ -67.782326, 46.393806 ], [ -67.79213, 46.851105 ], [ -67.786537, 47.066189 ], [ -67.887802, 47.10519 ], [ -67.95488, 47.194416 ], [ -68.132225, 47.294926 ], [ -68.165047, 47.330441 ], [ -68.288429, 47.364616 ], [ -68.367783, 47.354519 ], [ -68.389313, 47.287231 ], [ -68.514191, 47.2994 ], [ -68.583153, 47.287064 ], [ -68.630783, 47.241512 ], [ -68.733223, 47.237576 ], [ -68.89502, 47.178871 ], [ -69.049385, 47.252182 ], [ -69.054314, 47.297367 ], [ -68.777863, 47.355145 ], [ -68.571953, 47.425274 ], [ -68.382324, 47.551445 ], [ -68.380928, 47.913044 ], [ -68.122009, 47.915886 ], [ -68.119347, 47.999317 ], [ -67.604965, 47.999729 ], [ -67.594055, 47.926342 ], [ -67.401993, 47.864853 ], [ -67.291824, 47.895664 ], [ -67.214417, 47.872444 ], [ -67.049728, 47.929955 ], [ -66.986931, 47.893955 ], [ -66.9412, 47.968956 ], [ -66.879776, 47.992432 ], [ -66.747162, 47.983196 ], [ -66.623032, 48.0 ], [ -66.404167, 48.061893 ], [ -66.354095, 48.005039 ], [ -66.162239, 47.967869 ], [ -66.081459, 47.924438 ], [ -65.908707, 47.918674 ], [ -65.836212, 47.901775 ], [ -65.082414, 47.947287 ], [ -63.086199, 48.495041 ], [ -61.982338, 46.839249 ], [ -61.458472, 46.886023 ], [ -61.023476, 47.793434 ], [ -61.460416, 50.03299 ], [ -62.003502, 51.996037 ], [ -62.588673, 51.998413 ], [ -63.043537, 51.994617 ], [ -63.81485, 51.992664 ], [ -63.810112, 52.08572 ], [ -63.717384, 52.047218 ], [ -63.703758, 52.111706 ], [ -63.724457, 52.204418 ], [ -63.785339, 52.30777 ], [ -64.007057, 52.364895 ], [ -64.091812, 52.461369 ], [ -64.043907, 52.55703 ], [ -63.864098, 52.62286 ], [ -63.608059, 52.646759 ], [ -63.431637, 52.647064 ], [ -63.469555, 52.723072 ], [ -63.615501, 52.770523 ], [ -63.587391, 52.847294 ], [ -63.629963, 52.873257 ], [ -63.669006, 52.819706 ], [ -63.745872, 52.777332 ], [ -63.859756, 52.776287 ], [ -63.950115, 52.731518 ], [ -64.128342, 52.738171 ], [ -64.172752, 52.677155 ], [ -64.166214, 52.527477 ], [ -64.12455, 52.398003 ], [ -64.249825, 52.282864 ], [ -64.181793, 52.1422 ], [ -64.248138, 52.14719 ], [ -64.301903, 52.075222 ], [ -64.258835, 51.97765 ], [ -64.36274, 52.016701 ], [ -64.353928, 51.8451 ], [ -64.290962, 51.750557 ], [ -64.348061, 51.680485 ], [ -64.424278, 51.676289 ], [ -64.460228, 51.629833 ], [ -64.559074, 51.595375 ], [ -64.715996, 51.760509 ], [ -64.914711, 51.778309 ], [ -64.930618, 51.727718 ], [ -65.055199, 51.769421 ], [ -65.176178, 51.764648 ], [ -65.18763, 51.822567 ], [ -65.263268, 51.874905 ], [ -65.383522, 51.874088 ], [ -65.352196, 51.934624 ], [ -65.480385, 52.037167 ], [ -65.508339, 52.104397 ], [ -65.55899, 52.047497 ], [ -65.647079, 52.067871 ], [ -65.677971, 52.117973 ], [ -65.730988, 52.092739 ], [ -65.856354, 52.123314 ], [ -65.976448, 52.062778 ], [ -66.094048, 52.106564 ], [ -66.080101, 52.165752 ], [ -66.144218, 52.230568 ], [ -66.185753, 52.212139 ], [ -66.272133, 52.319317 ], [ -66.315025, 52.278526 ], [ -66.281693, 52.164001 ], [ -66.367516, 52.187653 ], [ -66.483658, 52.319031 ], [ -66.427574, 52.381931 ], [ -66.374992, 52.360435 ], [ -66.365059, 52.500645 ], [ -66.433334, 52.616276 ], [ -66.38752, 52.667114 ], [ -66.310921, 52.598454 ], [ -66.285118, 52.631683 ], [ -66.335304, 52.695099 ], [ -66.327843, 52.769566 ], [ -66.409286, 52.866638 ], [ -66.310661, 52.847744 ], [ -66.274628, 52.889977 ], [ -66.358208, 53.008987 ], [ -66.494415, 53.024708 ], [ -66.492287, 52.964046 ], [ -66.647285, 52.931095 ], [ -66.661972, 52.807552 ], [ -66.761292, 52.714378 ], [ -66.841812, 52.753429 ], [ -66.908562, 52.698902 ], [ -66.972221, 52.769363 ], [ -67.030663, 52.758392 ], [ -67.100082, 52.881489 ], [ -67.193954, 52.833458 ], [ -67.338364, 52.894337 ], [ -67.388168, 53.061676 ], [ -67.279381, 53.177761 ], [ -67.027504, 53.073238 ], [ -66.970772, 53.188499 ], [ -66.959831, 53.30201 ], [ -67.012939, 53.327198 ], [ -66.898712, 53.40712 ], [ -66.937073, 53.471714 ], [ -67.072174, 53.535809 ], [ -67.305305, 53.549458 ], [ -67.382957, 53.606777 ], [ -67.457558, 53.716816 ], [ -67.519745, 53.753666 ], [ -67.53054, 53.837482 ], [ -67.610466, 53.885384 ], [ -67.695534, 53.978146 ], [ -67.811447, 54.01543 ], [ -67.75264, 54.151363 ], [ -67.65435, 54.155155 ], [ -67.663063, 54.288429 ], [ -67.738434, 54.346668 ], [ -67.77636, 54.424881 ], [ -67.598495, 54.469299 ], [ -67.44381, 54.485916 ], [ -67.413651, 54.531979 ], [ -67.283096, 54.47953 ], [ -67.230316, 54.521111 ], [ -67.279732, 54.576733 ], [ -67.232353, 54.609047 ], [ -67.148384, 54.621872 ], [ -67.077362, 54.679066 ], [ -67.077248, 54.713688 ], [ -67.226372, 54.818493 ], [ -67.407936, 54.967117 ], [ -67.450096, 55.049252 ], [ -67.401978, 55.088741 ], [ -67.328018, 55.078453 ], [ -67.215477, 54.9837 ], [ -67.126701, 54.942417 ], [ -67.033974, 54.858681 ], [ -66.969551, 54.827576 ], [ -66.741455, 54.750851 ], [ -66.677635, 54.740715 ], [ -66.609062, 54.82106 ], [ -66.70652, 54.939182 ], [ -66.782082, 54.997711 ], [ -66.746277, 55.059856 ], [ -66.778114, 55.128025 ], [ -66.75724, 55.218681 ], [ -66.796715, 55.28117 ], [ -66.802719, 55.359394 ], [ -66.706932, 55.289333 ], [ -66.613495, 55.274731 ], [ -66.385597, 55.09972 ], [ -66.24614, 54.973854 ], [ -66.150368, 54.972336 ], [ -66.054451, 54.917423 ], [ -65.889313, 54.93021 ], [ -65.765266, 54.80294 ], [ -65.705078, 54.715725 ], [ -65.638161, 54.747559 ], [ -65.466896, 54.73584 ], [ -65.427284, 54.775288 ], [ -65.435753, 54.846989 ], [ -65.35025, 54.82019 ], [ -65.200188, 54.85318 ], [ -65.149673, 54.929554 ], [ -65.075279, 54.967976 ], [ -64.956978, 54.935818 ], [ -64.860458, 54.884434 ], [ -64.845146, 54.841122 ], [ -64.773277, 54.832859 ], [ -64.784988, 54.737312 ], [ -64.563538, 54.721684 ], [ -64.467125, 54.788647 ], [ -64.365982, 54.78233 ], [ -64.283089, 54.72961 ], [ -64.191948, 54.7267 ], [ -64.11338, 54.62574 ], [ -64.011559, 54.60318 ], [ -63.904949, 54.608559 ], [ -63.812431, 54.648151 ], [ -63.777527, 54.703114 ], [ -63.913898, 54.777821 ], [ -63.819992, 54.832294 ], [ -63.852085, 54.871536 ], [ -63.813988, 54.953999 ], [ -63.622952, 54.907005 ], [ -63.570675, 55.043205 ], [ -63.607574, 55.088306 ], [ -63.550385, 55.188759 ], [ -63.437683, 55.216236 ], [ -63.423672, 55.264545 ], [ -63.545284, 55.236843 ], [ -63.638824, 55.292004 ], [ -63.557514, 55.347446 ], [ -63.420334, 55.35548 ], [ -63.346874, 55.413765 ], [ -63.476295, 55.425659 ], [ -63.698647, 55.429337 ], [ -63.786091, 55.467899 ], [ -63.697605, 55.516785 ], [ -63.669289, 55.565056 ], [ -63.71122, 55.727032 ], [ -63.678761, 55.784763 ], [ -63.774784, 55.807125 ], [ -63.848579, 55.911304 ], [ -63.54475, 56.0 ], [ -63.667984, 56.028603 ], [ -63.898319, 56.13306 ], [ -64.02832, 56.073692 ], [ -64.030746, 56.160488 ], [ -63.948311, 56.191406 ], [ -63.934132, 56.249126 ], [ -64.118523, 56.294849 ], [ -64.120804, 56.395439 ], [ -63.898109, 56.443031 ], [ -63.9636, 56.497402 ], [ -63.959179, 56.559364 ], [ -64.055115, 56.608459 ], [ -64.053886, 56.651165 ], [ -64.140068, 56.704235 ], [ -64.075348, 56.77813 ], [ -63.999454, 56.796764 ], [ -64.017738, 56.857571 ], [ -63.883633, 56.879742 ], [ -63.917702, 56.915913 ], [ -63.889454, 57.082432 ], [ -63.786495, 57.128246 ], [ -63.794434, 57.188992 ], [ -63.749256, 57.242275 ], [ -63.793568, 57.282734 ], [ -63.885437, 57.276779 ], [ -63.857983, 57.334412 ], [ -63.72937, 57.363392 ], [ -63.716553, 57.430813 ], [ -63.769665, 57.446564 ], [ -63.761837, 57.587135 ], [ -63.604565, 57.662575 ], [ -63.601131, 57.743904 ], [ -63.671249, 57.732315 ], [ -63.719959, 57.673557 ], [ -63.756523, 57.727741 ], [ -63.806503, 57.700687 ], [ -63.910942, 57.736202 ], [ -63.932144, 57.797077 ], [ -64.009201, 57.811562 ], [ -64.061966, 57.774773 ], [ -64.209846, 57.951046 ], [ -64.236115, 58.043629 ], [ -64.443527, 58.080723 ], [ -64.434036, 58.168941 ], [ -64.370621, 58.205837 ], [ -64.236847, 58.225693 ], [ -64.201935, 58.261314 ], [ -64.189522, 58.335709 ], [ -64.130943, 58.367008 ], [ -64.049484, 58.369122 ], [ -63.981594, 58.4389 ], [ -63.900291, 58.431255 ], [ -63.827675, 58.474705 ], [ -63.86491, 58.538525 ], [ -63.935162, 58.568153 ], [ -64.002739, 58.519089 ], [ -64.063133, 58.527866 ], [ -64.114548, 58.575169 ], [ -64.118462, 58.623482 ], [ -64.042343, 58.690475 ], [ -63.957691, 58.685616 ], [ -63.906498, 58.709984 ], [ -63.614429, 58.717983 ], [ -63.472019, 58.756268 ], [ -63.535618, 58.817772 ], [ -63.697842, 58.88448 ], [ -63.77261, 58.88113 ], [ -63.862324, 58.832359 ], [ -64.00621, 58.826756 ], [ -64.090706, 58.758461 ], [ -64.138885, 58.745033 ], [ -64.220306, 58.778721 ], [ -64.25042, 58.850655 ], [ -64.313301, 58.895195 ], [ -64.478401, 58.905739 ], [ -64.556015, 58.888149 ], [ -64.728615, 58.948063 ], [ -64.814339, 58.913784 ], [ -64.869774, 59.000793 ], [ -64.826553, 59.054508 ], [ -64.727188, 59.079105 ], [ -64.682114, 59.038971 ], [ -64.500397, 59.02034 ], [ -64.476921, 58.987122 ], [ -64.27533, 59.032913 ], [ -64.389297, 59.087387 ], [ -64.490822, 59.107204 ], [ -64.481346, 59.185791 ], [ -64.501427, 59.267277 ], [ -64.541122, 59.311596 ], [ -64.512054, 59.431496 ], [ -64.380951, 59.483273 ], [ -64.428757, 59.534565 ], [ -64.502419, 59.516979 ], [ -64.693459, 59.436302 ], [ -64.811913, 59.522137 ], [ -64.868813, 59.540173 ], [ -64.813911, 59.606285 ], [ -64.80468, 59.727665 ], [ -64.81794, 59.775974 ], [ -64.767593, 59.886227 ], [ -64.677155, 59.873558 ], [ -64.667885, 59.953541 ], [ -64.777657, 59.98143 ], [ -64.815681, 60.04221 ], [ -64.718903, 60.062664 ], [ -64.732185, 60.109608 ], [ -64.604942, 60.1161 ], [ -64.629044, 60.171368 ], [ -64.739769, 60.174461 ], [ -64.86235, 60.221676 ], [ -64.874908, 60.257504 ], [ -64.699448, 60.302635 ], [ -64.588181, 60.306404 ], [ -64.537498, 60.343452 ], [ -64.440437, 60.372677 ], [ -64.423387, 60.444915 ], [ -64.654416, 61.228515 ], [ -64.530819, 61.759983 ], [ -64.617337, 62.204933 ], [ -64.011711, 62.439767 ], [ -63.764517, 63.66338 ], [ -64.419582, 64.330805 ], [ -64.283625, 64.96115 ], [ -63.393725, 64.788114 ], [ -62.029349, 65.570622 ], [ -61.020659, 66.666792 ], [ -62.26899, 67.383656 ], [ -67.126361, 68.780304 ], [ -67.126361, 69.039858 ], [ -66.582533, 69.052218 ], [ -66.545454, 69.435369 ], [ -67.5, 70.708098 ], [ -67.5, 75.908381 ], [ -68.584494, 75.975974 ], [ -72.914792, 77.419406 ], [ -72.875515, 77.537238 ], [ -73.189731, 78.146032 ], [ -72.630033, 78.617357 ], [ -67.527728, 80.138835 ], [ -66.463863, 79.253418 ], [ -66.426631, 79.211214 ], [ -63.581562, 75.986185 ], [ -63.525811, 76.067404 ], [ -63.535276, 76.133399 ], [ -63.472915, 76.183782 ], [ -63.376461, 76.226747 ], [ -63.335861, 76.18081 ], [ -63.250952, 76.158181 ], [ -63.095425, 76.186538 ], [ -63.053063, 76.218343 ], [ -62.952371, 76.201741 ], [ -62.89474, 76.131454 ], [ -62.777979, 76.054027 ], [ -62.673267, 76.039147 ], [ -62.524497, 76.08665 ], [ -62.516029, 76.014745 ], [ -62.467182, 75.959009 ], [ -62.308415, 75.929017 ], [ -62.241628, 75.970793 ], [ -62.215519, 76.042828 ], [ -62.074136, 75.952045 ], [ -61.985334, 75.942359 ], [ -61.904772, 75.980247 ], [ -61.859818, 75.940298 ], [ -61.703172, 75.903567 ], [ -61.630169, 75.932464 ], [ -61.583207, 76.009093 ], [ -61.476829, 76.001225 ], [ -61.384983, 76.015624 ], [ -61.321414, 75.948617 ], [ -61.262616, 75.93835 ], [ -61.204142, 75.885808 ], [ -61.120848, 75.875678 ], [ -61.051116, 75.898086 ], [ -60.946534, 75.891189 ], [ -60.863025, 75.93332 ], [ -60.748545, 75.877089 ], [ -60.688964, 75.877019 ], [ -60.502084, 75.924955 ], [ -60.415717, 75.91005 ], [ -60.346798, 75.927775 ], [ -60.235045, 75.905824 ], [ -60.299619, 75.854546 ], [ -60.319355, 75.774437 ], [ -60.261465, 75.678369 ], [ -60.171449, 75.657902 ], [ -60.096154, 75.688776 ], [ -60.00991, 75.677374 ], [ -59.929201, 75.697365 ], [ -59.832452, 75.644655 ], [ -59.549744, 75.707505 ], [ -59.509226, 75.660848 ], [ -59.413132, 75.64241 ], [ -59.373323, 75.610119 ], [ -59.276955, 75.597115 ], [ -59.15625, 75.613581 ], [ -59.047515, 75.581971 ], [ -58.808622, 75.593582 ], [ -58.809429, 75.531216 ], [ -58.770487, 75.455155 ], [ -58.811924, 75.394975 ], [ -58.811332, 75.31755 ], [ -58.755942, 75.248591 ], [ -58.649394, 75.221701 ], [ -58.521191, 75.223907 ], [ -58.388362, 75.144305 ], [ -58.44937, 75.062993 ], [ -58.441669, 74.987805 ], [ -58.390549, 74.932134 ], [ -58.271386, 74.909782 ], [ -58.294648, 74.842045 ], [ -58.27518, 74.773121 ], [ -58.219918, 74.727563 ], [ -58.123167, 74.715974 ], [ -57.951306, 74.780444 ], [ -57.964512, 74.697939 ], [ -57.908574, 74.519257 ], [ -57.792867, 74.476641 ], [ -57.696977, 74.506031 ], [ -57.654952, 74.490767 ], [ -57.632845, 74.423971 ], [ -57.553436, 74.371726 ], [ -57.464984, 74.362796 ], [ -57.406202, 74.306253 ], [ -57.289977, 74.255478 ], [ -57.400505, 74.189734 ], [ -57.430946, 74.115694 ], [ -57.394063, 74.018258 ], [ -57.304327, 73.977548 ], [ -57.126081, 73.987326 ], [ -57.059825, 73.910666 ], [ -57.100157, 73.852013 ], [ -57.08787, 73.755474 ], [ -57.152001, 73.731901 ], [ -57.193795, 73.672608 ], [ -57.177468, 73.567191 ], [ -57.116384, 73.520913 ], [ -56.987394, 73.5093 ], [ -56.893699, 73.433645 ], [ -56.753873, 73.423803 ], [ -56.712299, 73.36066 ], [ -56.62328, 73.321011 ], [ -56.557549, 73.32359 ], [ -56.546908, 73.252789 ], [ -56.45424, 73.104166 ], [ -56.573244, 73.066287 ], [ -56.629597, 72.956913 ], [ -56.600114, 72.883164 ], [ -56.525039, 72.815635 ], [ -56.541637, 72.7018 ], [ -56.488427, 72.639464 ], [ -56.34558, 72.597912 ], [ -56.284581, 72.603842 ], [ -56.245554, 72.541559 ], [ -56.16869, 72.497439 ], [ -56.122467, 72.440363 ], [ -56.044115, 72.407447 ], [ -56.081596, 72.272846 ], [ -56.163709, 72.212695 ], [ -56.170155, 72.091096 ], [ -56.122186, 72.039261 ], [ -56.020073, 71.972637 ], [ -55.890875, 71.950023 ], [ -55.910769, 71.890449 ], [ -55.89576, 71.825827 ], [ -55.943742, 71.8049 ], [ -55.997258, 71.737766 ], [ -55.996898, 71.648584 ], [ -55.943965, 71.586576 ], [ -55.771058, 71.55482 ], [ -55.580827, 71.366029 ], [ -55.524521, 71.335794 ], [ -55.14717, 70.497948 ], [ -55.131635, 70.372319 ], [ -55.038763, 70.286002 ], [ -54.947581, 70.260011 ], [ -54.968482, 70.212129 ], [ -54.943239, 70.032281 ], [ -55.034666, 69.922914 ], [ -55.060189, 69.818468 ], [ -55.101046, 69.756197 ], [ -55.109235, 69.669137 ], [ -55.060198, 69.598276 ], [ -54.880485, 69.504698 ], [ -54.730894, 69.463949 ], [ -54.456227, 69.444108 ], [ -54.411537, 69.411867 ], [ -54.388925, 69.32778 ], [ -54.290813, 69.255229 ], [ -54.189675, 69.220094 ], [ -54.047997, 69.199302 ], [ -53.961778, 69.202042 ], [ -53.894883, 69.150657 ], [ -53.649751, 69.137951 ], [ -53.597391, 69.116396 ], [ -53.554562, 69.0367 ], [ -53.57157, 68.979071 ], [ -53.549146, 68.906385 ], [ -53.586486, 68.744384 ], [ -53.64077, 68.707121 ], [ -53.691189, 68.566747 ], [ -53.694563, 68.489971 ], [ -53.668347, 68.40704 ], [ -53.786702, 68.396189 ], [ -53.840384, 68.352195 ], [ -53.870528, 68.181883 ], [ -53.907136, 68.132139 ], [ -53.956714, 67.977817 ], [ -53.970184, 67.834704 ], [ -53.950263, 67.768202 ], [ -53.879295, 67.682387 ], [ -53.878438, 67.517011 ], [ -53.979951, 67.403778 ], [ -54.023565, 67.211629 ], [ -54.086693, 67.169109 ], [ -54.114774, 67.110083 ], [ -54.106076, 67.037939 ], [ -54.066973, 66.98561 ], [ -54.002816, 66.954187 ], [ -53.975002, 66.884681 ], [ -53.83869, 66.794952 ], [ -53.745204, 66.777708 ], [ -53.694534, 66.72482 ], [ -53.68058, 66.668082 ], [ -53.704561, 66.609019 ], [ -53.769178, 66.574755 ], [ -53.810591, 66.514498 ], [ -53.823702, 66.42141 ], [ -53.87726, 66.371605 ], [ -53.894107, 66.304833 ], [ -53.876618, 66.194823 ], [ -53.997054, 66.169717 ], [ -54.04497, 66.097762 ], [ -54.041468, 66.025694 ], [ -53.997271, 65.968662 ], [ -53.87069, 65.946624 ], [ -53.777965, 65.998098 ], [ -53.737111, 65.958204 ], [ -53.635065, 65.909351 ], [ -53.464903, 65.725844 ], [ -53.392003, 65.697657 ], [ -53.367701, 65.62907 ], [ -53.400757, 65.553548 ], [ -53.387383, 65.481956 ], [ -53.308308, 65.382257 ], [ -53.221437, 65.327663 ], [ -53.036431, 65.329626 ], [ -52.904308, 65.252039 ], [ -52.758849, 65.200485 ], [ -52.713922, 65.145859 ], [ -52.653103, 65.125643 ], [ -52.672216, 65.065842 ], [ -52.645328, 64.966875 ], [ -52.600538, 64.913267 ], [ -52.5, 64.86084 ], [ -52.5, 52.8 ], [ -54.667474, 52.8 ], [ -55.443882, 52.283781 ], [ -55.540933, 52.831426 ], [ -55.409221, 53.489987 ], [ -55.87368, 53.815801 ], [ -56.462918, 54.023768 ], [ -56.958128, 53.893488 ], [ -57.031309, 53.758633 ], [ -57.153508, 53.703135 ], [ -57.20707, 53.515826 ], [ -57.5, 53.35 ], [ -57.5, 53.05 ], [ -57.1073, 52.75 ], [ -57.108913, 51.991547 ], [ -57.097797, 51.42244 ], [ -59.652172, 49.821977 ], [ -59.666036, 46.3 ], [ -56.6, 46.3 ], [ -56.1, 46.3 ], [ -52.5, 46.3 ], [ -52.5, 5.20706 ], [ -52.648284, 5.3608 ], [ -52.693996, 5.367508 ], [ -52.748242, 5.451519 ], [ -52.884819, 5.568465 ], [ -52.988179, 5.595882 ], [ -53.047062, 5.584181 ], [ -53.291813, 5.658221 ], [ -53.432922, 5.671764 ], [ -53.57614, 5.761423 ], [ -53.636653, 5.781828 ], [ -53.764647, 5.87216 ], [ -53.875747, 5.896467 ], [ -54.148096, 5.989297 ], [ -54.374374, 6.035828 ], [ -54.488482, 6.044968 ], [ -54.838842, 6.113918 ], [ -55.064369, 6.121452 ], [ -55.203013, 6.085397 ], [ -55.268703, 6.053504 ], [ -55.366385, 6.0809 ], [ -55.584577, 6.100878 ], [ -55.839931, 6.073116 ], [ -55.907858, 6.051434 ], [ -56.033795, 5.944343 ], [ -56.237715, 6.01304 ], [ -56.515095, 6.063865 ], [ -56.582719, 6.060735 ], [ -56.816598, 6.107843 ], [ -56.967152, 6.118586 ], [ -57.047968, 6.092151 ], [ -57.083048, 6.179154 ], [ -57.160044, 6.040344 ], [ -57.14632, 5.994199 ], [ -57.188904, 5.756562 ], [ -57.180748, 5.613526 ], [ -57.279259, 5.457143 ], [ -57.277538, 5.412064 ], [ -57.33083, 5.34869 ], [ -57.297649, 5.292176 ], [ -57.29517, 5.220871 ], [ -57.33971, 5.06158 ], [ -57.415699, 5.005502 ], [ -57.539368, 5.027977 ], [ -57.613838, 5.006851 ], [ -57.680843, 5.020937 ], [ -57.873558, 4.904678 ], [ -57.928577, 4.832965 ], [ -57.883171, 4.760627 ], [ -57.84584, 4.630972 ], [ -57.924583, 4.461399 ], [ -58.0, 4.326353 ], [ -58.001839, 4.268556 ], [ -58.086399, 4.131202 ], [ -58.05719, 4.074831 ], [ -58.050678, 3.982001 ], [ -58.0, 3.893642 ], [ -57.928627, 3.889601 ], [ -57.857269, 3.777523 ], [ -57.828239, 3.651974 ], [ -57.740864, 3.60413 ], [ -57.674175, 3.506522 ], [ -57.692398, 3.402242 ], [ -57.610638, 3.385432 ], [ -57.477974, 3.333537 ], [ -57.305061, 3.373516 ], [ -57.29459, 3.129192 ], [ -57.213673, 3.068398 ], [ -57.225842, 2.902034 ], [ -57.207619, 2.841797 ], [ -57.109787, 2.770451 ], [ -57.059872, 2.644254 ], [ -56.996029, 2.553908 ], [ -56.994816, 2.503534 ], [ -56.879753, 2.348309 ], [ -56.88377, 2.300921 ], [ -56.825649, 2.270658 ], [ -56.819576, 2.204659 ], [ -56.707043, 2.033958 ], [ -56.555508, 2.009794 ], [ -56.480251, 1.941472 ], [ -56.591675, 1.915002 ], [ -56.628956, 1.939786 ], [ -56.723507, 1.919642 ], [ -56.800163, 1.863873 ], [ -56.914501, 1.91795 ], [ -56.986225, 1.910692 ], [ -57.122406, 2.014143 ], [ -57.253845, 1.945109 ], [ -57.302399, 1.990075 ], [ -57.423721, 1.904481 ], [ -57.544678, 1.700689 ], [ -57.639664, 1.689638 ], [ -57.770401, 1.718252 ], [ -57.817326, 1.678573 ], [ -57.933014, 1.644896 ], [ -58.0, 1.665301 ], [ -58.008511, 1.500673 ], [ -58.142136, 1.507995 ], [ -58.176765, 1.561129 ], [ -58.235325, 1.551614 ], [ -58.319176, 1.591944 ], [ -58.376362, 1.544452 ], [ -58.390087, 1.465866 ], [ -58.502628, 1.444474 ], [ -58.467083, 1.350642 ], [ -58.507111, 1.264406 ], [ -58.692009, 1.288506 ], [ -58.746651, 1.198208 ], [ -58.796116, 1.175265 ], [ -58.90361, 1.233826 ], [ -58.913773, 1.29851 ], [ -58.972088, 1.309811 ], [ -58.933334, 0.8675 ], [ -58.89473, 0.519444 ], [ -58.859451, 0.049167 ], [ -58.841949, -0.0825 ], [ -58.872223, -0.181667 ], [ -58.845001, -0.372222 ], [ -58.731674, -0.429722 ], [ -58.750282, -0.505833 ], [ -58.746948, -0.642222 ], [ -58.638618, -0.757222 ], [ -58.571671, -0.761389 ], [ -58.443336, -0.848333 ], [ -58.390556, -1.049167 ], [ -58.298058, -1.131389 ], [ -58.243896, -1.131389 ], [ -58.171112, -1.233611 ], [ -58.130005, -1.232778 ], [ -58.069725, -1.306111 ], [ -57.970558, -1.351389 ], [ -57.912781, -1.42 ], [ -57.804726, -1.451945 ], [ -57.75528, -1.52 ], [ -57.695007, -1.538333 ], [ -57.666946, -1.587778 ], [ -57.585556, -1.6125 ], [ -57.447502, -1.691945 ], [ -57.338615, -1.730834 ], [ -57.273613, -1.713611 ], [ -57.253616, -1.764445 ], [ -57.159172, -1.765 ], [ -57.001396, -1.939167 ], [ -56.844727, -2.028889 ], [ -56.740562, -2.053334 ], [ -56.75, -2.178056 ], [ -56.634445, -2.225833 ], [ -56.573616, -2.182778 ], [ -56.488892, -2.163611 ], [ -56.488617, -2.239722 ], [ -56.39695, -2.273889 ], [ -56.371674, -2.353333 ], [ -56.513062, -2.665556 ], [ -56.734451, -3.137778 ], [ -57.248894, -4.2475 ], [ -57.875282, -5.591111 ], [ -58.208893, -6.321112 ], [ -58.341667, -6.5725 ], [ -58.430283, -6.639723 ], [ -58.472229, -6.723612 ], [ -58.428337, -6.900556 ], [ -58.389168, -6.965 ], [ -58.300835, -7.017501 ], [ -58.226952, -7.092223 ], [ -58.17334, -7.220834 ], [ -58.171951, -7.303056 ], [ -58.06028, -7.408334 ], [ -57.978889, -7.530556 ], [ -57.939728, -7.64 ], [ -57.892227, -7.693611 ], [ -57.878059, -7.780556 ], [ -57.836945, -7.866667 ], [ -57.782784, -8.045834 ], [ -57.705284, -8.156389 ], [ -57.643616, -8.19639 ], [ -57.683334, -8.446112 ], [ -57.651115, -8.495556 ], [ -57.646118, -8.603889 ], [ -57.607224, -8.653334 ], [ -57.58667, -8.763889 ], [ -57.501114, -8.776669 ], [ -57.373611, -8.872223 ], [ -57.361389, -8.916113 ], [ -57.090561, -9.055557 ], [ -57.065834, -9.218056 ], [ -56.998894, -9.249723 ], [ -56.946114, -9.23889 ], [ -56.847504, -9.263334 ], [ -56.806946, -9.313334 ], [ -56.786392, -9.395834 ], [ -56.678337, -9.374168 ], [ -56.600563, -9.403334 ], [ -56.483528, -9.473377 ], [ -56.447784, -9.468889 ], [ -55.391945, -9.544724 ], [ -53.806671, -9.650557 ], [ -52.012222, -9.751667 ], [ -50.232506, -9.844168 ], [ -50.273895, -9.908611 ], [ -50.29528, -10.000557 ], [ -50.381668, -10.110279 ], [ -50.390556, -10.233057 ], [ -50.430557, -10.355835 ], [ -50.48278, -10.393612 ], [ -50.495003, -10.4825 ], [ -50.543335, -10.602779 ], [ -50.606674, -10.655834 ], [ -50.58667, -10.770834 ], [ -50.629173, -10.837778 ], [ -50.637779, -10.932501 ], [ -50.609451, -11.065279 ], [ -50.664726, -11.142502 ], [ -50.659172, -11.243057 ], [ -50.694725, -11.305557 ], [ -50.743057, -11.510279 ], [ -50.648056, -11.609446 ], [ -50.657501, -11.664167 ], [ -50.711113, -11.714724 ], [ -50.663895, -11.923056 ], [ -50.682228, -11.999723 ], [ -50.674446, -12.196667 ], [ -50.645004, -12.228334 ], [ -50.613617, -12.384167 ], [ -50.615837, -12.448057 ], [ -50.663063, -12.645 ], [ -50.625557, -12.656389 ], [ -50.610001, -12.77389 ], [ -50.559174, -12.832224 ], [ -50.477226, -12.87639 ], [ -50.498062, -12.960556 ], [ -50.552223, -13.003613 ], [ -50.589172, -13.082779 ], [ -50.572502, -13.245556 ], [ -50.661118, -13.388334 ], [ -50.670563, -13.444168 ], [ -50.758339, -13.537779 ], [ -50.789726, -13.668056 ], [ -50.87056, -13.718613 ], [ -50.843056, -13.870001 ], [ -50.866112, -13.958057 ], [ -50.863617, -14.110279 ], [ -50.916946, -14.146946 ], [ -50.962227, -14.233891 ], [ -50.999168, -14.405556 ], [ -50.966667, -14.481668 ], [ -51.006111, -14.623611 ], [ -51.064445, -14.7325 ], [ -51.065559, -14.800001 ], [ -51.097504, -14.891111 ], [ -51.155006, -14.966391 ], [ -51.26889, -15.023613 ], [ -51.308617, -14.966946 ], [ -51.412506, -14.997223 ], [ -51.516396, -15.059446 ], [ -51.580833, -15.148613 ], [ -51.663338, -15.226389 ], [ -51.674446, -15.359724 ], [ -51.70195, -15.476667 ], [ -51.754173, -15.543335 ], [ -51.775002, -15.616112 ], [ -51.876945, -15.800556 ], [ -51.960556, -15.799168 ], [ -52.027504, -15.871946 ], [ -52.239174, -15.876945 ], [ -52.330559, -16.042503 ], [ -52.440559, -16.096947 ], [ -52.453613, -16.151669 ], [ -52.434723, -16.271389 ], [ -52.500839, -16.285835 ], [ -52.577507, -16.341667 ], [ -52.614723, -16.412502 ], [ -52.637779, -16.538891 ], [ -52.69445, -16.581112 ], [ -52.72084, -16.664722 ], [ -52.83223, -16.764168 ], [ -52.973335, -16.821114 ], [ -53.011673, -16.861115 ], [ -53.039726, -17.052502 ], [ -53.13945, -17.175835 ], [ -53.203056, -17.290836 ], [ -53.190285, -17.355556 ], [ -53.218895, -17.425282 ], [ -53.216393, -17.539722 ], [ -53.126114, -17.671669 ], [ -53.113892, -17.888889 ], [ -53.056396, -18.001114 ], [ -53.039452, -18.075001 ], [ -53.05806, -18.283058 ], [ -53.043892, -18.351112 ], [ -52.978058, -18.386391 ], [ -52.895004, -18.346947 ], [ -52.772224, -18.395836 ], [ -52.763336, -18.432224 ], [ -52.845284, -18.535278 ], [ -52.890007, -18.678059 ], [ -52.755005, -18.711113 ], [ -52.636673, -18.723057 ], [ -52.497505, -18.70417 ], [ -52.431396, -18.739723 ], [ -52.349167, -18.816669 ], [ -52.25695, -18.812778 ], [ -52.129723, -18.8675 ], [ -52.05584, -18.949722 ], [ -51.936668, -18.976112 ], [ -51.851952, -19.048889 ], [ -51.632225, -19.133335 ], [ -51.541672, -19.134724 ], [ -51.402779, -19.168613 ], [ -51.315559, -19.253334 ], [ -51.105003, -19.295559 ], [ -51.009171, -19.386391 ], [ -50.943893, -19.423615 ], [ -50.992783, -19.649445 ], [ -51.023613, -19.722504 ], [ -50.98584, -19.907501 ], [ -51.007225, -20.103889 ], [ -51.03389, -20.233334 ], [ -51.179169, -20.308056 ], [ -51.260559, -20.315281 ], [ -51.343895, -20.382504 ], [ -51.507965, -20.575645 ], [ -51.580833, -20.600281 ], [ -51.617226, -20.697502 ], [ -51.624725, -20.868057 ], [ -51.726952, -20.978889 ], [ -51.803894, -21.101391 ], [ -51.872505, -21.153893 ], [ -51.849724, -21.294724 ], [ -51.932503, -21.460835 ], [ -51.998894, -21.511391 ], [ -52.059448, -21.507504 ], [ -52.093895, -21.568336 ], [ -52.037224, -21.646389 ], [ -52.048615, -21.708889 ], [ -52.156113, -21.792503 ], [ -52.171669, -21.853336 ], [ -52.293335, -21.965557 ], [ -52.365562, -22.100281 ], [ -52.484169, -22.207779 ], [ -52.644173, -22.281391 ], [ -52.73278, -22.336391 ], [ -52.861389, -22.440556 ], [ -52.975281, -22.482224 ], [ -53.063614, -22.56028 ], [ -53.083893, -22.61639 ], [ -53.156845, -22.705822 ], [ -53.496674, -22.836945 ], [ -53.572174, -22.885265 ], [ -53.636948, -23.007504 ], [ -53.638062, -23.11417 ], [ -53.701668, -23.267223 ], [ -53.769173, -23.346947 ], [ -53.973618, -23.457779 ], [ -53.986671, -23.546947 ], [ -54.056946, -23.766113 ], [ -54.066116, -23.90028 ], [ -54.097229, -23.968613 ], [ -54.283779, -24.07127 ], [ -54.331337, -24.15107 ], [ -54.324097, -24.245342 ], [ -54.278988, -24.2889 ], [ -54.262371, -24.375605 ], [ -54.333027, -24.492779 ], [ -54.335812, -24.649237 ], [ -54.405254, -24.836107 ], [ -54.465706, -25.079165 ], [ -54.437, -25.146608 ], [ -54.496696, -25.280205 ], [ -54.616024, -25.457193 ], [ -54.593636, -25.668255 ], [ -54.656265, -25.702965 ], [ -54.590351, -25.838356 ], [ -54.623989, -25.926716 ], [ -54.675156, -25.985432 ], [ -54.645748, -26.075251 ], [ -54.665485, -26.178944 ], [ -54.631092, -26.231852 ], [ -54.680908, -26.276575 ], [ -54.64986, -26.317989 ], [ -54.697723, -26.385002 ], [ -54.700329, -26.440239 ], [ -54.795929, -26.529539 ], [ -54.790886, -26.638393 ], [ -54.814026, -26.673847 ], [ -54.893608, -26.666676 ], [ -54.938946, -26.693182 ], [ -54.961952, -26.790579 ], [ -55.060379, -26.804615 ], [ -55.135178, -26.866289 ], [ -55.14386, -26.957678 ], [ -55.201389, -26.972109 ], [ -55.273838, -26.946413 ], [ -55.371178, -26.968576 ], [ -55.431095, -27.008717 ], [ -55.456573, -27.102175 ], [ -55.540974, -27.108486 ], [ -55.617344, -27.209044 ], [ -55.580315, -27.251814 ], [ -55.595531, -27.337038 ], [ -55.675861, -27.381163 ], [ -55.725994, -27.439798 ], [ -55.828491, -27.43322 ], [ -55.877544, -27.36194 ], [ -55.996075, -27.340899 ], [ -56.059593, -27.304419 ], [ -56.143482, -27.312521 ], [ -56.282654, -27.408508 ], [ -56.28965, -27.488049 ], [ -56.339893, -27.52984 ], [ -56.364822, -27.598721 ], [ -56.425476, -27.606359 ], [ -56.487972, -27.575657 ], [ -56.519691, -27.506001 ], [ -56.598835, -27.447981 ], [ -56.703979, -27.462017 ], [ -56.737278, -27.559475 ], [ -56.833344, -27.601109 ], [ -56.913815, -27.574446 ], [ -57.0, -27.510633 ], [ -57.288254, -27.421616 ], [ -57.386642, -27.416693 ], [ -57.492741, -27.440533 ], [ -57.545567, -27.430344 ], [ -57.702507, -27.333624 ], [ -57.809803, -27.328304 ], [ -57.852055, -27.296431 ], [ -58.021065, -27.263735 ], [ -58.097252, -27.272621 ], [ -58.243351, -27.249126 ], [ -58.376415, -27.279015 ], [ -58.485607, -27.274845 ], [ -58.596546, -27.30121 ], [ -58.594391, -27.232431 ], [ -58.663143, -27.175026 ], [ -58.640804, -27.127163 ], [ -58.560226, -27.108776 ], [ -58.548298, -27.041265 ], [ -58.478283, -26.994698 ], [ -58.491913, -26.935892 ], [ -58.370426, -26.868376 ], [ -58.35466, -26.826445 ], [ -58.283581, -26.790993 ], [ -58.245926, -26.742037 ], [ -58.253117, -26.653145 ], [ -58.191021, -26.647156 ], [ -58.219624, -26.532639 ], [ -58.177402, -26.452932 ], [ -58.200439, -26.374983 ], [ -58.120441, -26.244438 ], [ -58.115852, -26.154106 ], [ -57.849354, -26.006014 ], [ -57.883339, -25.939693 ], [ -57.856541, -25.86091 ], [ -57.796757, -25.829599 ], [ -57.81535, -25.771088 ], [ -57.764854, -25.751343 ], [ -57.751072, -25.662785 ], [ -57.679382, -25.66235 ], [ -57.671101, -25.601357 ], [ -57.603168, -25.611706 ], [ -57.562531, -25.545593 ], [ -57.556614, -25.44768 ], [ -57.639709, -25.376892 ], [ -57.669575, -25.275646 ], [ -57.722721, -25.266859 ], [ -57.788227, -25.154484 ], [ -57.874336, -25.08222 ], [ -57.985916, -25.083776 ], [ -57.999268, -25.03863 ], [ -58.066578, -25.043455 ], [ -58.14843, -24.977417 ], [ -58.246483, -24.93379 ], [ -58.327259, -24.99917 ], [ -58.419704, -24.923058 ], [ -58.423958, -24.89085 ], [ -58.566032, -24.82617 ], [ -58.654743, -24.833561 ], [ -58.711945, -24.784903 ], [ -58.795845, -24.774811 ], [ -58.940216, -24.681837 ], [ -59.049267, -24.630917 ], [ -59.109066, -24.623266 ], [ -59.181454, -24.569651 ], [ -59.352993, -24.484718 ], [ -59.494984, -24.325083 ], [ -60.046623, -24.012131 ], [ -60.116695, -24.039494 ], [ -60.32008, -24.048523 ], [ -60.469322, -23.960855 ], [ -60.584038, -23.945009 ], [ -60.734867, -23.876431 ], [ -60.825005, -23.873764 ], [ -60.931942, -23.804802 ], [ -61.002472, -23.794147 ], [ -61.100117, -23.660902 ], [ -61.092274, -23.620857 ], [ -61.2001, -23.543812 ], [ -61.235249, -23.551317 ], [ -61.358479, -23.448719 ], [ -61.395866, -23.462955 ], [ -61.495605, -23.418417 ], [ -61.611473, -23.285118 ], [ -61.672638, -23.285799 ], [ -61.739323, -23.239704 ], [ -61.757999, -23.181223 ], [ -61.819813, -23.151896 ], [ -61.863735, -23.08939 ], [ -61.937656, -23.068697 ], [ -61.989819, -23.02355 ], [ -62.012165, -22.933062 ], [ -62.090275, -22.818949 ], [ -62.136288, -22.789499 ], [ -62.200916, -22.643961 ], [ -62.246983, -22.587626 ], [ -62.26609, -22.508268 ], [ -62.390091, -22.452646 ], [ -62.48587, -22.380816 ], [ -62.61776, -22.30274 ], [ -62.68742, -22.206707 ], [ -62.815125, -22.110928 ], [ -62.808064, -22.00444 ], [ -63.935253, -22.002724 ], [ -63.958149, -22.088572 ], [ -63.991222, -22.103397 ], [ -64.036491, -22.245047 ], [ -64.078308, -22.292671 ], [ -64.169571, -22.469728 ], [ -64.207451, -22.495255 ], [ -64.26799, -22.65069 ], [ -64.26577, -22.761272 ], [ -64.296295, -22.847158 ], [ -64.334953, -22.838812 ], [ -64.337959, -22.753046 ], [ -64.393219, -22.720087 ], [ -64.441811, -22.637613 ], [ -64.411743, -22.538935 ], [ -64.57119, -22.363108 ], [ -64.541176, -22.290604 ], [ -64.655251, -22.191767 ], [ -64.742165, -22.19471 ], [ -64.871742, -22.12039 ], [ -64.983742, -22.086403 ], [ -65.47123, -22.091839 ], [ -65.574562, -22.07744 ], [ -65.656761, -22.111191 ], [ -65.75531, -22.108543 ], [ -65.81237, -22.069746 ], [ -65.92617, -21.932043 ], [ -66.043137, -21.916096 ], [ -66.078705, -21.830694 ], [ -66.221611, -21.781277 ], [ -66.274422, -21.943729 ], [ -66.288277, -22.081659 ], [ -66.347893, -22.123537 ], [ -66.675148, -22.204031 ], [ -66.739349, -22.236582 ], [ -66.782875, -22.429701 ], [ -66.926369, -22.484844 ], [ -66.970222, -22.530806 ], [ -67.024536, -22.537531 ], [ -67.013504, -22.644667 ], [ -67.122169, -22.71084 ], [ -67.177742, -22.805611 ], [ -67.57222, -22.896133 ], [ -67.7939, -22.873558 ], [ -67.872421, -22.829714 ], [ -67.88298, -22.686295 ], [ -67.848099, -22.546459 ], [ -67.888641, -22.496523 ], [ -67.895714, -22.414806 ], [ -67.946129, -22.32144 ], [ -67.92083, -22.229277 ], [ -67.953484, -22.14629 ], [ -67.963882, -22.048464 ], [ -68.064438, -21.975716 ], [ -68.059875, -21.758326 ], [ -68.177132, -21.599545 ], [ -68.172417, -21.296675 ], [ -68.295502, -21.089737 ], [ -68.400589, -20.937944 ], [ -68.5047, -20.936312 ], [ -68.548363, -20.866165 ], [ -68.549171, -20.726265 ], [ -68.502602, -20.670551 ], [ -68.538551, -20.560022 ], [ -68.678207, -20.498291 ], [ -68.735451, -20.44245 ], [ -68.741539, -20.364286 ], [ -68.663246, -20.324041 ], [ -68.712875, -20.239777 ], [ -68.704674, -20.141741 ], [ -68.780464, -20.082048 ], [ -68.652557, -20.050724 ], [ -68.559662, -20.044783 ], [ -68.523972, -19.927412 ], [ -68.529846, -19.842819 ], [ -68.606827, -19.818111 ], [ -68.684624, -19.724897 ], [ -68.622047, -19.69668 ], [ -68.595604, -19.638296 ], [ -68.43145, -19.437071 ], [ -68.410347, -19.397928 ], [ -68.532524, -19.30011 ], [ -68.616211, -19.269604 ], [ -68.669914, -19.188759 ], [ -68.799461, -19.086332 ], [ -68.897957, -19.031897 ], [ -68.954407, -18.935547 ], [ -68.909378, -18.87579 ], [ -68.977989, -18.749912 ], [ -69.023674, -18.455172 ], [ -69.070061, -18.238306 ], [ -69.135544, -18.165943 ], [ -69.067223, -18.071812 ], [ -69.104187, -18.029619 ], [ -69.299141, -17.943911 ], [ -69.308182, -17.801001 ], [ -69.344681, -17.717327 ], [ -69.461487, -17.605848 ], [ -69.504128, -17.539856 ] ], [ [ -70.631442, -24.151441 ], [ -70.633208, -24.12773 ], [ -70.633063, -24.13427 ], [ -70.631442, -24.151441 ] ], [ [ -70.300952, -21.943313 ], [ -70.31012, -21.885034 ], [ -70.308539, -21.923241 ], [ -70.300952, -21.943313 ] ], [ [ -70.284913, -20.440445 ], [ -70.299331, -20.408118 ], [ -70.28847, -20.435501 ], [ -70.284913, -20.440445 ] ], [ [ -69.815636, -17.757608 ], [ -69.819786, -17.72127 ], [ -69.818878, -17.747467 ], [ -69.815636, -17.757608 ] ], [ [ -70.623805, -24.072098 ], [ -70.634691, -24.030939 ], [ -70.629078, -24.060895 ], [ -70.623805, -24.072098 ] ], [ [ -70.668015, -24.411313 ], [ -70.672426, -24.370799 ], [ -70.669297, -24.405995 ], [ -70.668015, -24.411313 ] ] ], [ [ [ -57.862488, 74.902703 ], [ -57.657468, 74.891911 ], [ -57.652488, 74.859927 ], [ -57.881415, 74.82956 ], [ -57.862488, 74.902703 ] ] ] ] } }, +{ "type": "Feature", "properties": { "name": "-3.5" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -52.5, 52.8 ], [ -52.5, 46.3 ], [ -56.1, 46.3 ], [ -56.1, 47.3 ], [ -56.6, 47.3 ], [ -56.6, 46.3 ], [ -59.666036, 46.3 ], [ -59.652172, 49.821977 ], [ -57.097797, 51.42244 ], [ -57.108913, 51.991547 ], [ -57.1073, 52.75 ], [ -57.5, 53.05 ], [ -57.5, 53.35 ], [ -57.20707, 53.515826 ], [ -57.153508, 53.703135 ], [ -57.031309, 53.758633 ], [ -56.958128, 53.893488 ], [ -56.462918, 54.023768 ], [ -55.87368, 53.815801 ], [ -55.409221, 53.489987 ], [ -55.540933, 52.831426 ], [ -55.443882, 52.283781 ], [ -54.667474, 52.8 ], [ -52.5, 52.8 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "+1" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 7.476254, 57.864584 ], [ 7.384891, 57.867102 ], [ 7.253933, 57.907979 ], [ 7.188554, 57.909026 ], [ 7.073061, 57.858642 ], [ 6.985732, 57.877845 ], [ 6.843911, 57.944796 ], [ 6.618516, 57.947183 ], [ 6.53033, 57.984329 ], [ 6.456483, 58.049546 ], [ 6.437802, 58.122386 ], [ 6.255725, 58.203248 ], [ 6.124397, 58.225944 ], [ 5.95985, 58.289056 ], [ 5.854562, 58.306835 ], [ 5.786664, 58.338927 ], [ 5.704833, 58.412622 ], [ 5.593719, 58.458746 ], [ 5.454796, 58.59325 ], [ 5.372648, 58.723004 ], [ 5.407531, 58.839378 ], [ 5.379792, 58.941953 ], [ 5.310008, 58.971645 ], [ 5.276521, 59.02399 ], [ 5.1744, 59.027982 ], [ 5.088171, 59.085821 ], [ 5.04725, 59.228022 ], [ 4.944222, 59.183112 ], [ 4.845132, 59.181244 ], [ 4.76751, 59.228849 ], [ 4.740102, 59.297874 ], [ 4.758565, 59.36981 ], [ 4.817671, 59.424313 ], [ 4.952299, 59.445041 ], [ 4.980559, 59.519026 ], [ 5.028372, 59.55395 ], [ 4.951624, 59.783603 ], [ 4.918043, 59.995274 ], [ 4.921188, 60.117822 ], [ 4.855485, 60.196747 ], [ 4.806521, 60.324197 ], [ 4.813296, 60.375716 ], [ 4.777744, 60.431925 ], [ 4.693054, 60.496322 ], [ 4.655886, 60.607673 ], [ 4.575719, 60.770997 ], [ 4.632184, 60.883932 ], [ 4.570581, 60.937547 ], [ 4.531105, 61.018828 ], [ 4.579675, 61.213892 ], [ 4.547131, 61.28875 ], [ 4.568897, 61.367766 ], [ 4.638274, 61.417824 ], [ 4.622663, 61.598805 ], [ 4.694232, 61.732385 ], [ 4.675973, 61.793397 ], [ 4.720497, 61.925658 ], [ 4.858988, 62.011556 ], [ 4.898078, 62.105684 ], [ 4.97446, 62.149189 ], [ 4.984363, 62.232819 ], [ 5.037699, 62.296397 ], [ 5.173817, 62.334223 ], [ 5.267278, 62.321245 ], [ 5.365434, 62.375822 ], [ 5.425897, 62.455966 ], [ 5.528186, 62.520316 ], [ 5.594944, 62.536805 ], [ 5.70873, 62.523604 ], [ 5.761963, 62.484241 ], [ 5.835621, 62.528414 ], [ 5.933485, 62.636314 ], [ 6.026669, 62.693466 ], [ 6.136761, 62.795231 ], [ 6.265085, 62.81315 ], [ 6.314087, 62.857134 ], [ 6.491257, 62.935217 ], [ 6.585396, 62.94855 ], [ 6.686007, 62.915644 ], [ 6.782847, 63.012017 ], [ 6.837921, 63.017364 ], [ 7.070766, 63.113369 ], [ 7.310063, 63.135487 ], [ 7.379449, 63.1807 ], [ 7.5, 63.201276 ], [ 7.5, 89.0 ], [ 22.5, 89.0 ], [ 22.5, 82.0 ], [ 34.0, 82.0 ], [ 34.0, 75.4 ], [ 22.5, 75.4 ], [ 22.5, 70.838489 ], [ 22.590668, 70.827044 ], [ 22.675089, 70.872252 ], [ 22.839914, 70.880431 ], [ 22.948086, 70.963974 ], [ 23.051614, 70.979768 ], [ 23.146971, 70.943004 ], [ 23.21306, 70.941995 ], [ 23.2844, 70.987854 ], [ 23.366821, 70.98123 ], [ 23.536129, 70.91455 ], [ 23.58887, 71.006015 ], [ 23.666415, 71.043332 ], [ 23.734464, 71.03575 ], [ 23.864938, 71.170215 ], [ 24.026728, 71.209442 ], [ 24.157752, 71.207334 ], [ 24.220986, 71.179708 ], [ 24.333026, 71.016915 ], [ 24.429815, 71.05443 ], [ 24.525366, 71.162938 ], [ 24.664121, 71.23025 ], [ 24.872966, 71.221302 ], [ 24.945623, 71.169601 ], [ 25.098508, 71.148627 ], [ 25.146306, 71.11427 ], [ 25.176547, 71.183428 ], [ 25.288184, 71.261328 ], [ 25.333711, 71.271522 ], [ 25.444154, 71.242961 ], [ 25.488242, 71.273884 ], [ 25.687386, 71.307512 ], [ 25.833804, 71.288975 ], [ 25.903934, 71.250118 ], [ 25.998341, 71.26079 ], [ 26.096045, 71.228283 ], [ 26.150893, 71.176135 ], [ 26.275754, 71.163339 ], [ 26.32291, 71.110833 ], [ 26.326159, 70.984322 ], [ 26.446211, 71.037596 ], [ 26.560219, 71.071369 ], [ 26.720248, 71.079151 ], [ 26.833337, 70.989042 ], [ 26.85835, 70.83578 ], [ 26.839782, 70.760496 ], [ 26.857203, 70.713571 ], [ 26.947575, 70.722241 ], [ 27.031529, 70.835353 ], [ 26.988477, 70.894652 ], [ 26.987935, 70.96793 ], [ 27.059494, 71.062914 ], [ 27.162206, 71.13821 ], [ 27.257933, 71.165287 ], [ 27.392376, 71.144555 ], [ 27.435891, 71.189345 ], [ 27.657383, 71.253022 ], [ 27.768864, 71.233098 ], [ 27.868848, 71.174026 ], [ 27.941942, 71.201576 ], [ 28.17678, 71.216645 ], [ 28.286976, 71.200501 ], [ 28.376881, 71.123501 ], [ 28.531246, 71.107311 ], [ 28.609611, 71.081754 ], [ 28.661963, 71.017875 ], [ 28.666605, 70.941989 ], [ 28.798729, 70.991521 ], [ 28.998774, 71.000707 ], [ 29.278532, 70.959065 ], [ 29.354597, 70.904376 ], [ 29.459007, 70.878428 ], [ 29.501859, 70.822251 ], [ 29.654468, 70.849485 ], [ 29.831257, 70.839334 ], [ 29.884438, 70.805282 ], [ 30.011334, 70.827785 ], [ 30.104717, 70.822933 ], [ 30.243186, 70.787974 ], [ 30.30493, 70.739743 ], [ 30.388209, 70.710815 ], [ 30.423553, 70.671271 ], [ 30.600956, 70.669504 ], [ 30.673734, 70.65536 ], [ 30.739158, 70.589141 ], [ 30.809853, 70.559016 ], [ 30.912991, 70.570531 ], [ 31.051866, 70.522748 ], [ 31.190957, 70.50398 ], [ 31.247954, 70.443007 ], [ 31.255262, 70.368132 ], [ 31.216566, 70.292651 ], [ 31.140851, 70.196894 ], [ 31.072078, 70.167624 ], [ 30.561395, 70.124145 ], [ 30.468729, 70.088045 ], [ 30.427215, 70.041783 ], [ 30.300212, 70.007543 ], [ 30.452806, 69.935058 ], [ 30.690364, 69.929577 ], [ 30.789587, 69.904906 ], [ 31.108982, 69.885649 ], [ 31.258328, 69.864569 ], [ 31.26708, 69.862428 ], [ 31.267079553967822, 69.862427553967308 ], [ 30.397726, 68.993073 ], [ 29.134854, 69.051003 ], [ 29.118279, 69.043419 ], [ 29.035223, 69.01683 ], [ 28.926945, 69.057388 ], [ 28.832027, 69.092278 ], [ 28.807751, 69.127419 ], [ 28.824556, 69.229195 ], [ 29.223305, 69.410583 ], [ 29.336166, 69.484413 ], [ 29.137167, 69.676613 ], [ 29.135084, 69.696892 ], [ 28.428473, 69.821083 ], [ 28.352612, 69.881279 ], [ 28.117971, 69.953308 ], [ 28.001583, 70.021942 ], [ 27.977777, 70.092613 ], [ 27.761084, 70.068863 ], [ 27.58264, 70.075447 ], [ 27.53561, 70.036835 ], [ 27.353416, 69.992836 ], [ 27.270834, 69.956306 ], [ 27.037889, 69.910278 ], [ 26.961, 69.938835 ], [ 26.876278, 69.934135 ], [ 26.849194, 69.961525 ], [ 26.715666, 69.949142 ], [ 26.681473, 69.965942 ], [ 26.464695, 69.93911 ], [ 26.395916, 69.86161 ], [ 26.258417, 69.815086 ], [ 26.163723, 69.753639 ], [ 25.99711, 69.721947 ], [ 25.950417, 69.580498 ], [ 25.857361, 69.554947 ], [ 25.862612, 69.513168 ], [ 25.806555, 69.433586 ], [ 25.836916, 69.392693 ], [ 25.755667, 69.336975 ], [ 25.708564, 69.208172 ], [ 25.706833, 69.205696 ], [ 25.753222, 69.149193 ], [ 25.735111, 69.107475 ], [ 25.783417, 69.020248 ], [ 25.730417, 68.991585 ], [ 25.624556, 68.889809 ], [ 25.488527, 68.905556 ], [ 25.250084, 68.84333 ], [ 25.142139, 68.796471 ], [ 25.107389, 68.678802 ], [ 25.124001, 68.646309 ], [ 24.916082, 68.609833 ], [ 24.866417, 68.561081 ], [ 24.804861, 68.631058 ], [ 24.653084, 68.683556 ], [ 24.240305, 68.732971 ], [ 24.2155, 68.744469 ], [ 24.152472, 68.796585 ], [ 24.05125, 68.801804 ], [ 24.002832, 68.828583 ], [ 23.874027, 68.839447 ], [ 23.767916, 68.822365 ], [ 23.664499, 68.713364 ], [ 23.446138, 68.697418 ], [ 23.160749, 68.629059 ], [ 23.041555, 68.697029 ], [ 22.798334, 68.691109 ], [ 22.521334, 68.74408 ], [ 22.373945, 68.720497 ], [ 22.3365, 68.83197 ], [ 22.198416, 68.916031 ], [ 22.174749, 68.96122 ], [ 21.823694, 69.156197 ], [ 21.644028, 69.270081 ], [ 21.287138, 69.307976 ], [ 21.040751, 69.234024 ], [ 21.021723, 69.184303 ], [ 21.068138, 69.123192 ], [ 21.060333, 69.044334 ], [ 20.720501, 69.121361 ], [ 20.556944, 69.0625 ], [ 20.764668, 69.037918 ], [ 20.910833, 68.96489 ], [ 20.903778, 68.893837 ], [ 20.991917, 68.893303 ], [ 21.142139, 68.855972 ], [ 21.255112, 68.805336 ], [ 21.301861, 68.763275 ], [ 21.393528, 68.755333 ], [ 21.418583, 68.699387 ], [ 21.581333, 68.670753 ], [ 21.709278, 68.623253 ], [ 21.720167, 68.588081 ], [ 21.904556, 68.576279 ], [ 22.0035, 68.525276 ], [ 22.03764, 68.480782 ], [ 22.340584, 68.474052 ], [ 22.571945, 68.423752 ], [ 22.634945, 68.433975 ], [ 22.73875, 68.387253 ], [ 22.834167, 68.388306 ], [ 22.869333, 68.35714 ], [ 22.999222, 68.32003 ], [ 23.056694, 68.307358 ], [ 23.076056, 68.269447 ], [ 23.150833, 68.242554 ], [ 23.171833, 68.133003 ], [ 23.29586, 68.152611 ], [ 23.40711, 68.046143 ], [ 23.553473, 68.008224 ], [ 23.655806, 67.962585 ], [ 23.642166, 67.919998 ], [ 23.536612, 67.894997 ], [ 23.486334, 67.82428 ], [ 23.482639, 67.724052 ], [ 23.54175, 67.591309 ], [ 23.414194, 67.508667 ], [ 23.441278, 67.46447 ], [ 23.536472, 67.447388 ], [ 23.577862, 67.463249 ], [ 23.786388, 67.427864 ], [ 23.758667, 67.282692 ], [ 23.624472, 67.269997 ], [ 23.584249, 67.223083 ], [ 23.579195, 67.162582 ], [ 23.655806, 67.120888 ], [ 23.781889, 66.999664 ], [ 23.879889, 66.944527 ], [ 23.893499, 66.912636 ], [ 24.011055, 66.830475 ], [ 23.913084, 66.71933 ], [ 23.879417, 66.637192 ], [ 23.876862, 66.5625 ], [ 23.652805, 66.454781 ], [ 23.681749, 66.380974 ], [ 23.655416, 66.306725 ], [ 23.719305, 66.222969 ], [ 23.801167, 66.18264 ], [ 23.932362, 66.149971 ], [ 23.943167, 66.083359 ], [ 24.039499, 66.004135 ], [ 24.042944, 65.957275 ], [ 24.115778, 65.919136 ], [ 24.151638, 65.819504 ], [ 24.151112, 65.802528 ], [ 24.147694, 65.791832 ], [ 24.139414, 65.79099 ], [ 24.059561, 65.397048 ], [ 22.499976963275437, 64.447226411525477 ], [ 22.487205, 64.439448 ], [ 21.695116, 63.97247 ], [ 21.050805, 63.682826 ], [ 20.672494, 63.499581 ], [ 20.104499, 63.235387 ], [ 19.25075, 61.687967 ], [ 19.094746, 60.205929 ], [ 19.187388, 60.103536 ], [ 20.184538, 59.446876 ], [ 20.397975, 58.35301 ], [ 19.410828, 56.645512 ], [ 19.090672, 55.685045 ], [ 19.411147, 54.384694 ], [ 19.441123, 54.312752 ], [ 19.663398, 54.356052 ], [ 19.7565, 54.435307 ], [ 19.950777, 54.424641 ], [ 20.0, 54.421585 ], [ 20.2195, 54.40797 ], [ 20.540501, 54.371807 ], [ 21.471472, 54.320694 ], [ 22.104139, 54.335918 ], [ 22.749083, 54.35939 ], [ 22.854555, 54.425472 ], [ 22.995762, 54.385818 ], [ 23.049, 54.312363 ], [ 23.147833, 54.311085 ], [ 23.256416, 54.24786 ], [ 23.356083, 54.230389 ], [ 23.488667, 54.151833 ], [ 23.516417, 54.037724 ], [ 23.505945, 53.966583 ], [ 23.55925, 53.845722 ], [ 23.564083, 53.782833 ], [ 23.610945, 53.742443 ], [ 23.613972, 53.600918 ], [ 23.638222, 53.583557 ], [ 23.778639, 53.306305 ], [ 23.863333, 53.231277 ], [ 23.916334, 53.13739 ], [ 23.876499, 53.083889 ], [ 23.938612, 53.018776 ], [ 23.924541, 52.669956 ], [ 23.54425, 52.603306 ], [ 23.407389, 52.548389 ], [ 23.290695, 52.446804 ], [ 23.176889, 52.282585 ], [ 23.213833, 52.2215 ], [ 23.353333, 52.211529 ], [ 23.435139, 52.171112 ], [ 23.489944, 52.179863 ], [ 23.528278, 52.130749 ], [ 23.654417, 52.077221 ], [ 23.673805, 51.984943 ], [ 23.612417, 51.873695 ], [ 23.643389, 51.804111 ], [ 23.53739, 51.74511 ], [ 23.561195, 51.700668 ], [ 23.545639, 51.605999 ], [ 23.630833, 51.496861 ], [ 23.703333, 51.420444 ], [ 23.640944, 51.321999 ], [ 23.728222, 51.258305 ], [ 23.74614, 51.214027 ], [ 23.876499, 51.136776 ], [ 23.918083, 51.075001 ], [ 23.927305, 51.009804 ], [ 24.063334, 50.895084 ], [ 23.964777, 50.800777 ], [ 24.108862, 50.635918 ], [ 24.060457, 50.469501 ], [ 24.025099, 50.435246 ], [ 23.937056, 50.412277 ], [ 23.821222, 50.420361 ], [ 23.720861, 50.386696 ], [ 23.690361, 50.337612 ], [ 23.601833, 50.275112 ], [ 23.45536, 50.204056 ], [ 23.292278, 50.095528 ], [ 23.022751, 49.86689 ], [ 22.905695, 49.790833 ], [ 22.896889, 49.750751 ], [ 22.803333, 49.695389 ], [ 22.762667, 49.635666 ], [ 22.680416, 49.566776 ], [ 22.671083, 49.523804 ], [ 22.729139, 49.405445 ], [ 22.758917, 49.285805 ], [ 22.713638, 49.177277 ], [ 22.872555, 49.098999 ], [ 22.887972, 49.006363 ], [ 22.784027, 49.05386 ], [ 22.696777, 49.041973 ], [ 22.601862, 49.094166 ], [ 22.559973, 49.036861 ], [ 22.442612, 48.941223 ], [ 22.36064, 48.770748 ], [ 22.357056, 48.699333 ], [ 22.259445, 48.655972 ], [ 22.178556, 48.588444 ], [ 22.157278, 48.408195 ], [ 22.277721, 48.413387 ], [ 22.282555, 48.357971 ], [ 22.394444, 48.241749 ], [ 22.492277, 48.255112 ], [ 22.572195, 48.186165 ], [ 22.601473, 48.113834 ], [ 22.679611, 48.091972 ], [ 22.733194, 48.117332 ], [ 22.837694, 48.11264 ], [ 22.8895, 48.043499 ], [ 22.856527, 48.0 ], [ 22.895222, 47.954693 ], [ 22.860056, 47.912971 ], [ 22.778944, 47.89061 ], [ 22.65661, 47.778278 ], [ 22.557194, 47.774361 ], [ 22.48, 47.806862 ], [ 22.433445, 47.743862 ], [ 22.331667, 47.759445 ], [ 22.282667, 47.732361 ], [ 22.197056, 47.630695 ], [ 22.062222, 47.551388 ], [ 22.022194, 47.508278 ], [ 22.026056, 47.394112 ], [ 21.960722, 47.379749 ], [ 21.887056, 47.306026 ], [ 21.793222, 47.112473 ], [ 21.733723, 47.095165 ], [ 21.667084, 47.028194 ], [ 21.684223, 46.960777 ], [ 21.625639, 46.93639 ], [ 21.608028, 46.863804 ], [ 21.545389, 46.842693 ], [ 21.415361, 46.622223 ], [ 21.333166, 46.625557 ], [ 21.270889, 46.50386 ], [ 21.31875, 46.456085 ], [ 21.299473, 46.41589 ], [ 21.218445, 46.405083 ], [ 21.173195, 46.300499 ], [ 21.121416, 46.297306 ], [ 21.071583, 46.247944 ], [ 20.920389, 46.264446 ], [ 20.857584, 46.285667 ], [ 20.789362, 46.269974 ], [ 20.760334, 46.205334 ], [ 20.64539, 46.135082 ], [ 20.503389, 46.192638 ], [ 20.442389, 46.147388 ], [ 20.358917, 46.168056 ], [ 20.276501, 46.145027 ], [ 20.264395, 46.110962 ], [ 20.335613, 46.054508 ], [ 20.353415, 45.995373 ], [ 20.483646, 45.952908 ], [ 20.515776, 45.892109 ], [ 20.660128, 45.829185 ], [ 20.700541, 45.750069 ], [ 20.802914, 45.738106 ], [ 20.806581, 45.657707 ], [ 20.766083, 45.612164 ], [ 20.832932, 45.535839 ], [ 20.867966, 45.463764 ], [ 20.950686, 45.373135 ], [ 21.06389, 45.331726 ], [ 21.096163, 45.296017 ], [ 21.176018, 45.32515 ], [ 21.202452, 45.264881 ], [ 21.276138, 45.229836 ], [ 21.402584, 45.22842 ], [ 21.51405, 45.170567 ], [ 21.456003, 45.041126 ], [ 21.406219, 44.977875 ], [ 21.546654, 44.930595 ], [ 21.559759, 44.888809 ], [ 21.367008, 44.866585 ], [ 21.397186, 44.778271 ], [ 21.552271, 44.769863 ], [ 21.612267, 44.726719 ], [ 21.629421, 44.659836 ], [ 21.765202, 44.660263 ], [ 21.990036, 44.633564 ], [ 22.026606, 44.562595 ], [ 22.130028, 44.476749 ], [ 22.180405, 44.480103 ], [ 22.27734, 44.628353 ], [ 22.331902, 44.674446 ], [ 22.464455, 44.714977 ], [ 22.580832, 44.632389 ], [ 22.712875, 44.599995 ], [ 22.751619, 44.533192 ], [ 22.693169, 44.516361 ], [ 22.582167, 44.548164 ], [ 22.515999, 44.474724 ], [ 22.49934, 44.422344 ], [ 22.525211, 44.339157 ], [ 22.566397, 44.303169 ], [ 22.67008, 44.284798 ], [ 22.611485, 44.1133 ], [ 22.621105, 44.062893 ], [ 22.531092, 44.020657 ], [ 22.408533, 44.005283 ], [ 22.408676, 43.939667 ], [ 22.356945, 43.812294 ], [ 22.408287, 43.697819 ], [ 22.476746, 43.656979 ], [ 22.489939, 43.556316 ], [ 22.534889, 43.470406 ], [ 22.676462, 43.395245 ], [ 22.767479, 43.376877 ], [ 22.827429, 43.328751 ], [ 22.897867, 43.224972 ], [ 23.005156, 43.18718 ], [ 22.980762, 43.111023 ], [ 22.897285, 43.038254 ], [ 22.78912, 42.980614 ], [ 22.750811, 42.889996 ], [ 22.682247, 42.863628 ], [ 22.6229, 42.893631 ], [ 22.4384, 42.822567 ], [ 22.486229, 42.750229 ], [ 22.440367, 42.589115 ], [ 22.55331, 42.50034 ], [ 22.516245, 42.393398 ], [ 22.461, 42.340885 ], [ 22.366102, 42.32132 ], [ 22.43409, 42.258072 ], [ 22.528339, 42.1399 ], [ 22.674755, 42.065029 ], [ 22.865559, 42.022278 ], [ 22.873531, 41.935867 ], [ 22.970232, 41.770435 ], [ 23.033573, 41.708698 ], [ 22.951115, 41.64201 ], [ 22.9671, 41.566593 ], [ 22.936724, 41.340839 ], [ 22.764927, 41.323154 ], [ 22.747747, 41.16547 ], [ 22.666767, 41.186508 ], [ 22.61149, 41.12944 ], [ 22.465981, 41.117085 ], [ 22.333298, 41.1287 ], [ 22.260443, 41.166183 ], [ 22.172552, 41.157513 ], [ 22.129551, 41.12344 ], [ 22.067457, 41.156757 ], [ 21.931063, 41.103779 ], [ 21.909302, 41.046192 ], [ 21.800362, 40.974838 ], [ 21.756752, 40.925259 ], [ 21.705103, 40.944347 ], [ 21.567787, 40.866589 ], [ 21.524864, 40.909939 ], [ 21.417091, 40.918034 ], [ 21.361689, 40.879059 ], [ 21.259954, 40.859879 ], [ 21.21295, 40.883812 ], [ 21.157011, 40.858349 ], [ 20.980568, 40.855221 ], [ 20.983522, 40.738068 ], [ 21.057281, 40.667603 ], [ 21.042191, 40.557953 ], [ 20.967579, 40.518303 ], [ 20.948006, 40.466446 ], [ 20.844213, 40.480377 ], [ 20.785191, 40.423073 ], [ 20.792316, 40.383209 ], [ 20.707558, 40.268444 ], [ 20.671606, 40.097973 ], [ 20.549414, 40.063492 ], [ 20.51166, 40.082699 ], [ 20.409992, 40.046207 ], [ 20.409992, 40.045486 ], [ 20.395424, 39.998947 ], [ 20.323957, 39.991955 ], [ 20.416054, 39.837952 ], [ 20.390425, 39.788277 ], [ 20.305878, 39.815445 ], [ 20.299721, 39.715225 ], [ 20.190916, 39.644882 ], [ 20.017031, 39.697521 ], [ 19.978834, 39.7705 ], [ 20.013361, 39.827251 ], [ 19.992056, 39.871529 ], [ 19.916889, 39.903641 ], [ 19.933083, 39.945946 ], [ 19.8736, 40.039485 ], [ 19.602778, 40.028653 ], [ 19.480972, 39.978453 ], [ 19.364765, 39.992366 ], [ 19.289853, 39.948915 ], [ 19.254445, 39.85022 ], [ 19.300994, 39.743528 ], [ 19.412806, 39.713118 ], [ 19.454679, 39.664054 ], [ 19.558596, 39.6434 ], [ 19.587015, 39.598576 ], [ 19.697783, 39.501984 ], [ 19.8008, 39.360629 ], [ 20.002994, 39.274805 ], [ 20.019891, 39.166315 ], [ 20.082439, 39.099145 ], [ 20.200349, 39.022438 ], [ 20.26722, 39.016616 ], [ 20.353959, 39.070843 ], [ 20.377884, 39.146658 ], [ 20.457626, 39.097668 ], [ 20.585972, 38.990404 ], [ 20.586692, 38.933426 ], [ 20.504743, 38.851691 ], [ 20.449138, 38.733084 ], [ 20.421996, 38.475786 ], [ 20.363923, 38.473808 ], [ 20.295735, 38.420322 ], [ 20.243689, 38.305937 ], [ 20.219368, 38.17683 ], [ 20.26213, 38.089772 ], [ 20.333213, 38.046789 ], [ 20.409381, 38.037529 ], [ 20.451172, 38.001844 ], [ 20.549094, 37.972314 ], [ 20.505984, 37.875361 ], [ 20.515049, 37.775316 ], [ 20.615644, 37.658029 ], [ 20.747559, 37.551379 ], [ 20.820126, 37.528716 ], [ 20.898255, 37.54144 ], [ 20.954648, 37.583685 ], [ 21.007995, 37.579029 ], [ 21.081324, 37.618624 ], [ 21.116831, 37.717498 ], [ 21.18377, 37.697222 ], [ 21.181881, 37.628279 ], [ 21.210875, 37.565371 ], [ 21.277143, 37.52051 ], [ 21.362906, 37.525507 ], [ 21.485772, 37.452334 ], [ 21.56712, 37.335778 ], [ 21.472581, 37.248885 ], [ 21.423, 37.04278 ], [ 21.47912, 36.946091 ], [ 21.540993, 36.922945 ], [ 21.57781, 36.811432 ], [ 21.590919, 36.682134 ], [ 21.64749, 36.630701 ], [ 21.730762, 36.593439 ], [ 21.90392, 36.574218 ], [ 21.985811, 36.618335 ], [ 22.092156, 36.781021 ], [ 22.163518, 36.773651 ], [ 22.246227, 36.641495 ], [ 22.234535, 36.482136 ], [ 22.262499, 36.424546 ], [ 22.369472, 36.350123 ], [ 22.429945, 36.28035 ], [ 22.5, 36.270335 ], [ 22.5, 32.948601 ], [ 22.418308, 32.981444 ], [ 22.277195, 32.991571 ], [ 22.170846, 33.051816 ], [ 22.033702, 33.021819 ], [ 21.919088, 33.014991 ], [ 21.696267, 33.058011 ], [ 21.579109, 33.033233 ], [ 21.400362, 32.910388 ], [ 21.346922, 32.893608 ], [ 21.110041, 32.888696 ], [ 21.036188, 32.876265 ], [ 20.889651, 32.821557 ], [ 20.842195, 32.788068 ], [ 20.502507, 32.648877 ], [ 20.297318, 32.514331 ], [ 20.012814, 32.269974 ], [ 19.933884, 32.131678 ], [ 19.866515, 32.070043 ], [ 19.82885, 31.992069 ], [ 19.804963, 31.827571 ], [ 19.811999, 31.697095 ], [ 19.840006, 31.63572 ], [ 19.876702, 31.451549 ], [ 19.933054, 31.325514 ], [ 20.018457, 31.22471 ], [ 20.054619, 31.145835 ], [ 20.04781, 31.097097 ], [ 19.954236, 30.91222 ], [ 19.815016, 30.73481 ], [ 19.695546, 30.617931 ], [ 19.580893, 30.539563 ], [ 19.528991, 30.531192 ], [ 19.330699, 30.425982 ], [ 19.1823, 30.386394 ], [ 18.995993, 30.397033 ], [ 18.83237, 30.496731 ], [ 18.739091, 30.515098 ], [ 18.645424, 30.606626 ], [ 18.583481, 30.632682 ], [ 18.390376, 30.759897 ], [ 18.292465, 30.860452 ], [ 18.241787, 30.890431 ], [ 17.977327, 30.963101 ], [ 17.882423, 31.041133 ], [ 17.7538, 31.059073 ], [ 17.521656, 31.134248 ], [ 17.428466, 31.194834 ], [ 17.356588, 31.201754 ], [ 17.009268, 31.290229 ], [ 16.703421, 31.343232 ], [ 16.577506, 31.336353 ], [ 16.377599, 31.342797 ], [ 16.068606, 31.396647 ], [ 15.873515, 31.471759 ], [ 15.738025, 31.547652 ], [ 15.618723, 31.697807 ], [ 15.518066, 31.89794 ], [ 15.480747, 32.014131 ], [ 15.488315, 32.148027 ], [ 15.47326, 32.213888 ], [ 15.391333, 32.378581 ], [ 15.302779, 32.468976 ], [ 15.148143, 32.529129 ], [ 14.883394, 32.565434 ], [ 14.781642, 32.560975 ], [ 14.686599, 32.603748 ], [ 14.534158, 32.627797 ], [ 14.286406, 32.805531 ], [ 14.207177, 32.832147 ], [ 14.0601, 32.847265 ], [ 13.985654, 32.88777 ], [ 13.80842, 32.920016 ], [ 13.631172, 32.910502 ], [ 13.438143, 33.010139 ], [ 13.299519, 33.031881 ], [ 13.175979, 33.025714 ], [ 12.908093, 32.933759 ], [ 12.74938, 32.912743 ], [ 12.568329, 32.918734 ], [ 12.350485, 32.950613 ], [ 12.129028, 33.058773 ], [ 11.952414, 33.165272 ], [ 11.726739, 33.24946 ], [ 11.661227, 33.248158 ], [ 11.545759, 33.289132 ], [ 11.467298, 33.192969 ], [ 11.543583, 33.167835 ], [ 11.53775, 33.094666 ], [ 11.532056, 33.086056 ], [ 11.489223, 32.892834 ], [ 11.507667, 32.843193 ], [ 11.488806, 32.667667 ], [ 11.508472, 32.613445 ], [ 11.598278, 32.523556 ], [ 11.527333, 32.402805 ], [ 11.366389, 32.322361 ], [ 11.204166, 32.276722 ], [ 10.982083, 32.186722 ], [ 10.857944, 32.11039 ], [ 10.794695, 32.0 ], [ 10.639139, 31.967945 ], [ 10.635305, 31.86511 ], [ 10.529805, 31.747305 ], [ 10.441028, 31.727306 ], [ 10.364889, 31.734388 ], [ 10.291166, 31.690111 ], [ 10.140611, 31.493305 ], [ 10.147528, 31.406973 ], [ 10.287639, 31.082611 ], [ 10.275167, 31.026806 ], [ 10.307777, 30.908972 ], [ 10.277833, 30.824612 ], [ 10.213223, 30.713139 ], [ 10.019861, 30.505527 ], [ 9.94725, 30.393583 ], [ 9.888917, 30.349194 ], [ 9.744278, 30.315971 ], [ 9.616138, 30.25025 ], [ 9.545639, 30.234472 ], [ 9.395223, 30.171223 ], [ 9.418528, 30.055389 ], [ 9.549048, 29.914858 ], [ 9.792983, 29.430895 ], [ 9.877125, 29.044134 ], [ 9.874373, 28.659489 ], [ 9.835972, 28.28989 ], [ 9.869641, 28.144865 ], [ 9.961322, 27.888329 ], [ 9.935256, 27.828119 ], [ 9.923803, 27.700525 ], [ 9.850559, 27.499243 ], [ 9.806441, 27.47028 ], [ 9.774294, 27.346806 ], [ 9.773975, 27.263884 ], [ 9.829903, 27.142771 ], [ 9.841372, 26.984644 ], [ 9.934465, 26.842993 ], [ 9.908139, 26.726736 ], [ 9.927657, 26.642883 ], [ 9.876212, 26.520399 ], [ 9.520967, 26.374914 ], [ 9.456484, 26.259447 ], [ 9.387854, 26.183851 ], [ 9.774089, 25.689426 ], [ 10.041826, 25.327713 ], [ 10.040716, 24.877232 ], [ 10.185399, 24.793644 ], [ 10.239261, 24.611713 ], [ 10.396629, 24.511049 ], [ 10.493262, 24.488976 ], [ 10.694419, 24.567823 ], [ 11.012614, 24.460443 ], [ 11.124939, 24.400797 ], [ 11.434692, 24.190147 ], [ 11.606182, 24.249044 ], [ 11.708302, 24.0 ], [ 11.979548, 23.525026 ], [ 12.000672, 23.515301 ], [ 13.397975, 23.217527 ], [ 13.544736, 23.157 ], [ 13.680397, 23.072237 ], [ 14.189322, 22.644482 ], [ 14.995867, 23.001894 ], [ 15.441402, 23.206142 ], [ 15.99817, 23.450369 ], [ 16.981932, 22.997187 ], [ 18.726076, 22.167698 ], [ 20.350657, 21.373545 ], [ 20.668764, 21.210119 ], [ 20.921785, 21.086548 ], [ 21.680883, 20.705065 ], [ 24.0, 19.508045 ], [ 24.0, 16.0 ], [ 24.001585, 15.704918 ], [ 23.805841, 15.742705 ], [ 23.578144, 15.753811 ], [ 23.416468, 15.693098 ], [ 23.333431, 15.686207 ], [ 23.12228, 15.709895 ], [ 23.004742, 15.589433 ], [ 22.930586, 15.550809 ], [ 22.932901, 15.464097 ], [ 22.990156, 15.415928 ], [ 22.999733, 15.237209 ], [ 22.930603, 15.157508 ], [ 22.940062, 15.107514 ], [ 22.870703, 15.083105 ], [ 22.75691, 14.972213 ], [ 22.759361, 14.917297 ], [ 22.671072, 14.848719 ], [ 22.717203, 14.686426 ], [ 22.617266, 14.650246 ], [ 22.50305, 14.630434 ], [ 22.411163, 14.595858 ], [ 22.384214, 14.506742 ], [ 22.449614, 14.472433 ], [ 22.437609, 14.275731 ], [ 22.479246, 14.232004 ], [ 22.558165, 14.229709 ], [ 22.579067, 14.184409 ], [ 22.536352, 14.118576 ], [ 22.431053, 14.05109 ], [ 22.392715, 14.049981 ], [ 22.231857, 13.947371 ], [ 22.092207, 13.776198 ], [ 22.12945, 13.715859 ], [ 22.142582, 13.629091 ], [ 22.213734, 13.566467 ], [ 22.220997, 13.451769 ], [ 22.284214, 13.349694 ], [ 22.18424, 13.245126 ], [ 22.127871, 13.164268 ], [ 22.020376, 13.139103 ], [ 21.925674, 13.046878 ], [ 21.850737, 12.871535 ], [ 21.857975, 12.734151 ], [ 21.934244, 12.639363 ], [ 22.032839, 12.637202 ], [ 22.136251, 12.66586 ], [ 22.195063, 12.706912 ], [ 22.287437, 12.696554 ], [ 22.458885, 12.619767 ], [ 22.412973, 12.495199 ], [ 22.372139, 12.441509 ], [ 22.421904, 12.387854 ], [ 22.443953, 12.272038 ], [ 22.492456, 12.148483 ], [ 22.491673, 12.020497 ], [ 22.551409, 12.052981 ], [ 22.635042, 12.026801 ], [ 22.554052, 11.687226 ], [ 22.566088, 11.620659 ], [ 22.662172, 11.515491 ], [ 22.754213, 11.475113 ], [ 22.789005, 11.403181 ], [ 22.945282, 11.417245 ], [ 22.953314, 11.312012 ], [ 22.98209, 11.296127 ], [ 22.986078, 11.199601 ], [ 22.877228, 10.917418 ], [ 23.00738, 10.71609 ], [ 23.13674, 10.634233 ], [ 23.26384, 10.494612 ], [ 23.301876, 10.474637 ], [ 23.668243, 9.891512 ], [ 23.697866, 9.667719 ], [ 23.65016, 9.57207 ], [ 23.633532, 9.473898 ], [ 23.677443, 9.438735 ], [ 23.639111, 9.343263 ], [ 23.653646, 9.293913 ], [ 23.610962, 9.230542 ], [ 23.476307, 9.141964 ], [ 23.463476, 8.984043 ], [ 23.531273, 8.963513 ], [ 23.569605, 8.878985 ], [ 23.508539, 8.814837 ], [ 23.520107, 8.726969 ], [ 23.637728, 8.742492 ], [ 23.738941, 8.716108 ], [ 23.829782, 8.734871 ], [ 23.940582, 8.730035 ], [ 23.994438, 8.707966 ], [ 24.131796, 8.692358 ], [ 24.164513, 8.707838 ], [ 24.259888, 8.683774 ], [ 24.267941, 8.592734 ], [ 24.171225, 8.481531 ], [ 24.153368, 8.369939 ], [ 24.203583, 8.303996 ], [ 24.3715, 8.251407 ], [ 24.478775, 8.272289 ], [ 24.554003, 8.20427 ], [ 24.621927, 8.222956 ], [ 24.729748, 8.209771 ], [ 24.779299, 8.181822 ], [ 24.86475, 8.180498 ], [ 24.909491, 8.047219 ], [ 24.971701, 7.983683 ], [ 25.100374, 7.884384 ], [ 25.180088, 7.902913 ], [ 25.286818, 7.781548 ], [ 25.287798, 7.638908 ], [ 25.173059, 7.573323 ], [ 25.206348, 7.485071 ], [ 25.287355, 7.460864 ], [ 25.361103, 7.344516 ], [ 25.53455, 7.273749 ], [ 25.604427, 7.215968 ], [ 25.824764, 7.142074 ], [ 25.985573, 7.006858 ], [ 26.048601, 7.000528 ], [ 26.041094, 6.931811 ], [ 26.114687, 6.815335 ], [ 26.167589, 6.813153 ], [ 26.262802, 6.709022 ], [ 26.357512, 6.689029 ], [ 26.415108, 6.637383 ], [ 26.297241, 6.493942 ], [ 26.297903, 6.387691 ], [ 26.396557, 6.305809 ], [ 26.476244, 6.274101 ], [ 26.533728, 6.194599 ], [ 26.517195, 6.115283 ], [ 26.560179, 6.033278 ], [ 26.655008, 6.004957 ], [ 26.75178, 6.013197 ], [ 26.819244, 5.980795 ], [ 26.833025, 5.903914 ], [ 26.904686, 5.894726 ], [ 26.963123, 5.847153 ], [ 27.002674, 5.856691 ], [ 27.046581, 5.79489 ], [ 27.105873, 5.799759 ], [ 27.188328, 5.727467 ], [ 27.283386, 5.58701 ], [ 27.233204, 5.426795 ], [ 27.24892, 5.326864 ], [ 27.323767, 5.199333 ], [ 27.396597, 5.15258 ], [ 27.456636, 5.06467 ], [ 27.463421, 5.016153 ], [ 27.431561, 5.077729 ], [ 27.231823, 5.152315 ], [ 27.142937, 5.204216 ], [ 27.078672, 5.204131 ], [ 26.935108, 5.134194 ], [ 26.872164, 5.033753 ], [ 26.74996, 5.103511 ], [ 26.619413, 5.088082 ], [ 26.488008, 5.046394 ], [ 26.390944, 5.147448 ], [ 26.301683, 5.141724 ], [ 26.140953, 5.263077 ], [ 26.09267, 5.206573 ], [ 26.016474, 5.205685 ], [ 25.985167, 5.23966 ], [ 25.902735, 5.170625 ], [ 25.798954, 5.26261 ], [ 25.74968, 5.237842 ], [ 25.658733, 5.328004 ], [ 25.587898, 5.369894 ], [ 25.497469, 5.364079 ], [ 25.419804, 5.318947 ], [ 25.367708, 5.315548 ], [ 25.320646, 5.187434 ], [ 25.355207, 5.149122 ], [ 25.31797, 5.036223 ], [ 25.201698, 5.017396 ], [ 25.15416, 5.028268 ], [ 25.08222, 4.938931 ], [ 25.000326, 4.993162 ], [ 24.784544, 4.905525 ], [ 24.661749, 4.916743 ], [ 24.610535, 5.032056 ], [ 24.534363, 5.080511 ], [ 24.3894, 5.109155 ], [ 24.380789, 5.010741 ], [ 24.298317, 5.002935 ], [ 24.160479, 4.894931 ], [ 24.090252, 4.910327 ], [ 23.949137, 4.852258 ], [ 23.949842, 4.809446 ], [ 23.833492, 4.829398 ], [ 23.780283, 4.783554 ], [ 23.70915, 4.782346 ], [ 23.575653, 4.72859 ], [ 23.425915, 4.644638 ], [ 23.420927, 4.588927 ], [ 23.331215, 4.602164 ], [ 23.159428, 4.736118 ], [ 23.11335, 4.707964 ], [ 23.008646, 4.758201 ], [ 22.983761, 4.823298 ], [ 22.906668, 4.817867 ], [ 22.870134, 4.713068 ], [ 22.790516, 4.714526 ], [ 22.739521, 4.624882 ], [ 22.733688, 4.556044 ], [ 22.688225, 4.461341 ], [ 22.596701, 4.463446 ], [ 22.550438, 4.21542 ], [ 22.462902, 4.136067 ], [ 22.585278, 4.084167 ], [ 22.687222, 3.998055 ], [ 22.75861, 3.991389 ], [ 22.765553, 3.905 ], [ 22.888885, 3.850277 ], [ 22.990833, 3.883333 ], [ 23.035553, 3.860555 ], [ 23.147221, 3.896111 ], [ 23.265553, 3.838055 ], [ 23.375275, 3.812222 ], [ 23.395275, 3.832778 ], [ 23.511665, 3.799166 ], [ 23.476109, 3.726111 ], [ 23.382221, 3.623333 ], [ 23.229443, 3.641944 ], [ 23.171108, 3.678055 ], [ 23.037498, 3.5475 ], [ 22.928608, 3.548055 ], [ 22.849163, 3.503055 ], [ 22.678333, 3.453888 ], [ 22.623608, 3.388889 ], [ 22.656387, 3.316944 ], [ 22.788055, 3.271667 ], [ 22.800278, 3.216389 ], [ 22.782497, 3.037222 ], [ 22.81472, 2.996111 ], [ 22.875832, 3.022778 ], [ 23.00111, 3.161666 ], [ 23.085552, 3.135 ], [ 23.025276, 2.9275 ], [ 22.982777, 2.8325 ], [ 23.003887, 2.757222 ], [ 22.959999, 2.672222 ], [ 23.064163, 2.530555 ], [ 23.151943, 2.5025 ], [ 23.308052, 2.535277 ], [ 23.359444, 2.523889 ], [ 23.44722, 2.436111 ], [ 23.554996, 2.385555 ], [ 23.627499, 2.330833 ], [ 23.651386, 2.1925 ], [ 23.354721, 2.251944 ], [ 23.10611, 2.095833 ], [ 23.055275, 2.108333 ], [ 22.987499, 2.182222 ], [ 22.837498, 2.03 ], [ 22.757221, 2.010278 ], [ 22.699718, 2.034166 ], [ 22.66, 2.101944 ], [ 22.608608, 2.120555 ], [ 22.588608, 2.048611 ], [ 22.516666, 1.916389 ], [ 22.487221, 1.732778 ], [ 22.46611, 1.681389 ], [ 22.311108, 1.5575 ], [ 22.364441, 1.504722 ], [ 22.488609, 1.465 ], [ 22.624165, 1.361666 ], [ 22.673611, 1.2375 ], [ 22.725555, 1.1725 ], [ 22.776386, 1.047222 ], [ 22.81472, 0.996389 ], [ 22.815552, 0.896389 ], [ 22.85722, 0.808056 ], [ 22.861385, 0.671111 ], [ 22.935276, 0.570833 ], [ 22.945553, 0.478333 ], [ 23.021111, 0.338056 ], [ 23.082775, 0.278889 ], [ 23.137497, 0.156944 ], [ 23.246387, 0.035833 ], [ 23.408333, -0.208333 ], [ 23.394444, -0.263889 ], [ 23.293888, -0.317222 ], [ 23.140831, -0.276667 ], [ 22.970276, -0.406389 ], [ 23.217777, -0.425 ], [ 23.243053, -0.485833 ], [ 23.32111, -0.483056 ], [ 23.467777, -0.438611 ], [ 23.561665, -0.580278 ], [ 23.619999, -0.624167 ], [ 23.601387, -0.664722 ], [ 23.50972, -0.686667 ], [ 23.35611, -0.807222 ], [ 23.526665, -0.975833 ], [ 23.729721, -1.083333 ], [ 23.772778, -1.179167 ], [ 23.835831, -1.2025 ], [ 23.935833, -1.298333 ], [ 24.058609, -1.3675 ], [ 24.153053, -1.390278 ], [ 24.292774, -1.384722 ], [ 24.375832, -1.538889 ], [ 24.421398, -1.786796 ], [ 24.276386, -1.775278 ], [ 24.035275, -1.732778 ], [ 23.998333, -1.765 ], [ 23.824718, -1.768333 ], [ 23.783054, -1.806667 ], [ 23.774719, -1.9175 ], [ 23.698055, -1.931389 ], [ 23.693886, -2.018889 ], [ 23.5, -2.01 ], [ 23.208885, -2.077222 ], [ 23.135555, -1.964167 ], [ 23.005833, -1.931945 ], [ 22.936665, -1.962222 ], [ 22.909443, -1.914167 ], [ 22.820274, -1.858611 ], [ 22.763332, -1.853889 ], [ 22.69083, -1.809445 ], [ 22.642776, -1.816945 ], [ 22.520832, -1.956111 ], [ 22.321388, -1.940278 ], [ 22.213055, -1.906111 ], [ 22.163887, -1.918334 ], [ 22.198055, -2.010834 ], [ 22.233055, -2.197778 ], [ 22.296108, -2.420278 ], [ 22.251389, -2.466945 ], [ 22.183052, -2.411389 ], [ 22.19611, -2.335278 ], [ 22.152222, -2.276389 ], [ 22.061665, -2.358612 ], [ 21.951942, -2.415556 ], [ 21.901943, -2.488611 ], [ 21.826885, -2.529217 ], [ 21.601109, -2.411389 ], [ 21.555275, -2.366945 ], [ 21.469719, -2.335278 ], [ 21.453888, -2.470834 ], [ 21.286663, -2.51 ], [ 21.154442, -2.511389 ], [ 21.018055, -2.4875 ], [ 20.968052, -2.560556 ], [ 20.93861, -2.7175 ], [ 20.829441, -2.848889 ], [ 20.692497, -3.197222 ], [ 20.656109, -3.307222 ], [ 20.641941, -3.534445 ], [ 20.664444, -3.745 ], [ 20.659721, -3.865278 ], [ 20.678055, -4.073056 ], [ 20.669167, -4.151668 ], [ 20.622498, -4.196112 ], [ 20.493053, -4.258334 ], [ 20.448608, -4.255 ], [ 20.366943, -4.302222 ], [ 20.352776, -4.385556 ], [ 20.262775, -4.395556 ], [ 20.216389, -4.329445 ], [ 20.133331, -4.280834 ], [ 20.056664, -4.283056 ], [ 20.037498, -4.347222 ], [ 20.117496, -4.495556 ], [ 20.062222, -4.595834 ], [ 20.054443, -4.769167 ], [ 20.081944, -4.810278 ], [ 20.108608, -4.935278 ], [ 20.148331, -4.991945 ], [ 20.191666, -5.159167 ], [ 20.193607, -5.277779 ], [ 20.146385, -5.353612 ], [ 20.144444, -5.522779 ], [ 20.179996, -5.684445 ], [ 20.112221, -5.834445 ], [ 20.044167, -5.876667 ], [ 20.019741, -5.942223 ], [ 19.96714, -5.987223 ], [ 19.890549, -6.0 ], [ 19.69833, -6.150278 ], [ 19.688469, -6.187502 ], [ 19.712498, -6.453611 ], [ 19.748886, -6.602222 ], [ 19.932499, -6.842501 ], [ 19.962917, -6.999361 ], [ 20.30171, -6.998033 ], [ 20.316999, -6.913004 ], [ 20.627148, -6.913397 ], [ 20.551584, -7.112648 ], [ 20.541683, -7.28143 ], [ 21.293211, -7.278564 ], [ 21.780588, -7.283894 ], [ 21.819744, -7.327551 ], [ 21.85673, -7.470244 ], [ 21.853283, -7.553751 ], [ 21.762056, -7.845356 ], [ 21.745449, -7.938798 ], [ 21.813969, -8.056138 ], [ 21.877857, -8.197234 ], [ 21.896126, -8.29108 ], [ 21.93095, -8.315278 ], [ 21.918108, -8.383592 ], [ 21.95891, -8.488909 ], [ 21.898659, -8.718971 ], [ 21.904457, -8.766575 ], [ 21.868408, -8.868245 ], [ 21.84343, -9.068139 ], [ 21.860544, -9.241109 ], [ 21.796064, -9.427587 ], [ 21.868168, -9.565719 ], [ 21.875927, -9.653144 ], [ 21.939978, -9.693267 ], [ 22.025406, -9.835176 ], [ 22.068207, -9.87302 ], [ 22.185875, -9.91745 ], [ 22.218664, -10.022099 ], [ 22.222672, -10.158716 ], [ 22.312502, -10.340161 ], [ 22.322805, -10.420269 ], [ 22.277967, -10.508468 ], [ 22.311459, -10.535863 ], [ 22.334898, -10.754074 ], [ 22.29364, -10.794472 ], [ 22.180788, -10.852005 ], [ 22.207888, -10.95412 ], [ 22.216583, -11.088059 ], [ 22.290079, -11.251032 ], [ 22.347033, -11.178544 ], [ 22.42555, -11.17889 ], [ 22.48716, -11.132171 ], [ 22.510153, -11.042392 ], [ 22.585417, -11.035999 ], [ 22.723286, -11.110023 ], [ 22.787092, -11.113168 ], [ 22.859133, -11.061598 ], [ 23.073095, -11.122757 ], [ 23.152203, -11.093228 ], [ 23.203173, -11.102197 ], [ 23.417578, -10.94504 ], [ 23.540447, -10.95949 ], [ 23.576206, -10.989503 ], [ 23.672083, -11.008182 ], [ 23.763384, -10.997374 ], [ 23.815474, -11.027856 ], [ 23.872313, -11.017395 ], [ 23.995695, -10.891575 ], [ 24.025587, -10.979017 ], [ 24.011513, -11.04961 ], [ 24.037432, -11.169257 ], [ 24.034739, -11.262874 ], [ 24.081436, -11.384388 ], [ 24.037531, -11.434245 ], [ 24.03648, -11.518435 ], [ 23.97117, -11.655663 ], [ 24.024614, -11.822521 ], [ 23.986118, -11.945529 ], [ 23.985788, -12.154165 ], [ 24.068657, -12.265388 ], [ 24.055706, -12.330236 ], [ 24.069866, -12.419043 ], [ 24.026287, -12.449577 ], [ 23.955654, -12.551822 ], [ 23.904987, -12.845443 ], [ 24.029314, -12.954432 ], [ 24.040287, -12.990556 ], [ 22.433668, -13.004004 ], [ 21.999899, -13.004716 ], [ 22.000751, -14.085768 ], [ 21.999678, -15.330224 ], [ 22.001999, -16.0 ], [ 21.999664, -16.197874 ], [ 22.108549, -16.343204 ], [ 22.139662, -16.481453 ], [ 22.190468, -16.546625 ], [ 22.31571, -16.635971 ], [ 22.527374, -16.868227 ], [ 22.583057, -16.907162 ], [ 22.789991, -17.121233 ], [ 22.807123, -17.173357 ], [ 22.902876, -17.208574 ], [ 22.984095, -17.266916 ], [ 23.084784, -17.410156 ], [ 23.128811, -17.428732 ], [ 23.227287, -17.539074 ], [ 23.337673, -17.554527 ], [ 23.428154, -17.63928 ], [ 24.215244, -17.48214 ], [ 24.339825, -17.499388 ], [ 24.388334, -17.477552 ], [ 24.474314, -17.492105 ], [ 24.510254, -17.544741 ], [ 24.601843, -17.542686 ], [ 24.713196, -17.500038 ], [ 24.811829, -17.53731 ], [ 24.88002, -17.53318 ], [ 25.035522, -17.591057 ], [ 25.085577, -17.659531 ], [ 25.157753, -17.717484 ], [ 25.141853, -17.8113 ], [ 25.068766, -17.843815 ], [ 24.966269, -17.804184 ], [ 24.806965, -17.857407 ], [ 24.632158, -17.981754 ], [ 24.575153, -18.0651 ], [ 24.489399, -18.046997 ], [ 24.423664, -17.953142 ], [ 24.367975, -17.951073 ], [ 24.30723, -18.002279 ], [ 24.201082, -18.016554 ], [ 24.117397, -18.104357 ], [ 24.073225, -18.114796 ], [ 23.935255, -18.205763 ], [ 23.908863, -18.26354 ], [ 23.811361, -18.337955 ], [ 23.791918, -18.382067 ], [ 23.61286, -18.504047 ], [ 23.568802, -18.476692 ], [ 23.556379, -18.340744 ], [ 23.527056, -18.273859 ], [ 23.41293, -18.204363 ], [ 23.327845, -18.079741 ], [ 23.296621, -17.997524 ], [ 23.103615, -17.998857 ], [ 22.988407, -18.018293 ], [ 21.468939, -18.318029 ], [ 20.998827, -18.317877 ], [ 20.99695, -20.957802 ], [ 21.001741, -22.003838 ], [ 20.0, -22.001778 ], [ 20.000244, -24.750099 ], [ 19.996761, -28.433113 ], [ 19.872667, -28.442833 ], [ 19.80776, -28.507708 ], [ 19.729679, -28.489332 ], [ 19.670256, -28.534422 ], [ 19.562378, -28.531885 ], [ 19.505596, -28.605068 ], [ 19.492449, -28.677385 ], [ 19.40477, -28.739849 ], [ 19.295662, -28.736004 ], [ 19.240953, -28.815722 ], [ 19.256201, -28.859968 ], [ 19.208967, -28.940571 ], [ 19.111198, -28.97143 ], [ 19.064875, -28.956392 ], [ 18.94862, -28.864576 ], [ 18.732044, -28.841171 ], [ 18.559448, -28.860701 ], [ 18.434662, -28.90132 ], [ 18.265015, -28.883556 ], [ 18.17901, -28.915888 ], [ 18.053329, -28.880913 ], [ 17.920086, -28.771666 ], [ 17.696325, -28.751398 ], [ 17.610027, -28.759741 ], [ 17.597996, -28.700886 ], [ 17.486361, -28.69857 ], [ 17.409491, -28.722952 ], [ 17.417404, -28.567707 ], [ 17.329664, -28.471457 ], [ 17.403767, -28.41106 ], [ 17.374403, -28.28727 ], [ 17.311808, -28.225023 ], [ 17.220682, -28.251648 ], [ 17.179968, -28.204765 ], [ 17.193094, -28.129667 ], [ 17.083324, -28.037775 ], [ 17.001648, -28.077005 ], [ 16.899778, -28.071592 ], [ 16.87648, -28.180933 ], [ 16.748398, -28.288834 ], [ 16.792807, -28.351049 ], [ 16.774389, -28.441629 ], [ 16.732834, -28.492819 ], [ 16.634956, -28.489346 ], [ 16.565689, -28.555614 ], [ 16.47328, -28.583567 ], [ 16.455729, -28.634415 ], [ 16.394382, -28.741556 ], [ 16.445402, -28.792009 ], [ 16.502196, -28.942545 ], [ 16.58707, -29.006434 ], [ 16.624691, -29.084567 ], [ 16.702235, -29.155574 ], [ 16.724916, -29.250218 ], [ 16.829503, -29.424365 ], [ 16.9186, -29.665924 ], [ 16.934201, -29.771494 ], [ 17.011687, -29.988341 ], [ 17.043465, -30.035992 ], [ 17.08688, -30.180199 ], [ 17.15023, -30.301972 ], [ 17.165483, -30.376167 ], [ 17.25972, -30.54982 ], [ 17.302572, -30.603731 ], [ 17.368087, -30.737794 ], [ 17.41568, -30.793295 ], [ 17.500621, -30.978518 ], [ 17.56878, -31.057745 ], [ 17.689392, -31.262417 ], [ 17.761316, -31.333458 ], [ 17.820658, -31.443296 ], [ 18.003333, -31.636754 ], [ 18.106711, -31.794516 ], [ 18.151381, -31.911194 ], [ 18.181446, -32.078264 ], [ 18.180358, -32.150632 ], [ 18.211015, -32.2569 ], [ 18.193072, -32.338741 ], [ 18.208838, -32.429838 ], [ 18.199696, -32.524718 ], [ 18.161291, -32.59303 ], [ 18.094819, -32.652544 ], [ 18.010046, -32.591046 ], [ 17.938695, -32.58745 ], [ 17.866037, -32.612802 ], [ 17.808832, -32.664541 ], [ 17.72748, -32.804148 ], [ 17.739303, -32.919505 ], [ 17.77297, -33.065991 ], [ 17.890886, -33.224291 ], [ 18.005734, -33.306233 ], [ 17.950618, -33.421618 ], [ 17.965327, -33.47152 ], [ 18.035783, -33.539145 ], [ 18.115427, -33.545544 ], [ 18.1723, -33.515472 ], [ 18.196583, -33.606988 ], [ 18.294266, -33.703063 ], [ 18.234857, -33.810759 ], [ 18.261029, -33.887822 ], [ 18.20474, -33.972738 ], [ 18.191956, -34.03803 ], [ 18.210637, -34.193424 ], [ 18.25768, -34.264006 ], [ 18.309518, -34.387977 ], [ 18.410857, -34.457289 ], [ 18.529832, -34.469284 ], [ 18.590137, -34.423756 ], [ 18.60667, -34.31735 ], [ 18.586435, -34.200131 ], [ 18.692551, -34.189832 ], [ 18.686961, -34.36783 ], [ 18.727183, -34.458988 ], [ 18.792277, -34.501517 ], [ 18.871186, -34.50671 ], [ 19.007297, -34.469331 ], [ 19.092888, -34.536908 ], [ 19.196272, -34.55806 ], [ 19.182319, -34.676562 ], [ 19.238569, -34.739765 ], [ 19.363451, -34.746317 ], [ 19.455517, -34.785919 ], [ 19.554497, -34.880346 ], [ 19.654908, -34.911532 ], [ 19.8288, -34.889776 ], [ 19.891374, -34.930347 ], [ 20.020518, -34.958864 ], [ 20.105188, -34.930766 ], [ 20.161185, -34.878107 ], [ 20.177267, -34.823981 ], [ 20.254114, -34.813106 ], [ 20.342427, -34.735629 ], [ 20.481927, -34.654902 ], [ 20.516492, -34.608068 ], [ 20.651552, -34.571804 ], [ 20.831421, -34.594303 ], [ 20.915534, -34.571123 ], [ 20.978567, -34.48751 ], [ 21.111264, -34.505282 ], [ 21.264877, -34.557788 ], [ 21.314897, -34.558138 ], [ 21.458243, -34.516172 ], [ 21.52665, -34.480773 ], [ 21.741847, -34.519432 ], [ 21.870909, -34.490331 ], [ 21.967531, -34.446726 ], [ 22.055125, -34.322988 ], [ 22.161949, -34.312804 ], [ 22.245654, -34.270162 ], [ 22.303995, -34.169461 ], [ 22.399465, -34.178745 ], [ 22.5, -34.1657 ], [ 22.5, -90.0 ], [ 7.5, -90.0 ], [ 7.5, -1.7 ], [ 5.3, -1.7 ], [ 5.3, -1.1 ], [ 7.5, -1.1 ], [ 7.5, 3.913207 ], [ 7.48953, 4.332007 ], [ 7.369453, 4.320237 ], [ 7.230099, 4.269982 ], [ 7.073373, 4.283107 ], [ 7.012019, 4.253881 ], [ 6.900599, 4.247105 ], [ 6.219795, 4.165405 ], [ 6.075988, 4.157842 ], [ 5.932255, 4.20423 ], [ 5.820191, 4.275559 ], [ 5.655555, 4.405783 ], [ 5.523261, 4.546293 ], [ 5.352636, 4.825526 ], [ 5.311355, 4.983169 ], [ 5.239379, 5.129729 ], [ 5.206825, 5.32776 ], [ 5.091013, 5.42633 ], [ 5.058791, 5.523609 ], [ 4.965516, 5.658231 ], [ 4.864892, 5.83977 ], [ 4.676386, 6.034143 ], [ 4.454003, 6.209215 ], [ 4.322637, 6.254432 ], [ 4.145355, 6.275292 ], [ 4.024351, 6.301484 ], [ 3.816306, 6.315143 ], [ 3.684591, 6.299011 ], [ 3.458337, 6.292646 ], [ 3.405286, 6.271855 ], [ 3.214418, 6.276619 ], [ 2.911158, 6.27196 ], [ 2.595636, 6.233996 ], [ 2.336986, 6.219202 ], [ 1.886371, 6.159096 ], [ 1.701213, 6.12343 ], [ 1.635322, 6.231274 ], [ 1.629565, 6.242366 ], [ 1.799336, 6.280558 ], [ 1.773096, 6.419725 ], [ 1.700774, 6.536752 ], [ 1.609801, 6.605819 ], [ 1.598924, 6.799778 ], [ 1.605068, 6.905774 ], [ 1.557832, 6.997486 ], [ 1.642032, 6.994573 ], [ 1.635219, 7.379398 ], [ 1.65293, 7.534023 ], [ 1.631449, 7.661111 ], [ 1.636264, 7.98842 ], [ 1.6302, 8.449511 ], [ 1.629744, 8.999118 ], [ 1.6176, 9.070923 ], [ 1.559118, 9.170154 ], [ 1.42092, 9.307435 ], [ 1.390208, 9.497304 ], [ 1.341589, 9.54626 ], [ 1.366063, 9.611395 ], [ 1.355205, 10.0 ], [ 1.13857, 10.126467 ], [ 1.016262, 10.207629 ], [ 0.774575, 10.384764 ], [ 0.783231, 10.512177 ], [ 0.806258, 10.578075 ], [ 0.808246, 10.731894 ], [ 0.873821, 10.804958 ], [ 0.921565, 11.017466 ], [ 1.009168, 11.085727 ], [ 1.086619, 11.113338 ], [ 1.150468, 11.175611 ], [ 1.159523, 11.261173 ], [ 1.273934, 11.259864 ], [ 1.325122, 11.289876 ], [ 1.317959, 11.359073 ], [ 1.388263, 11.399461 ], [ 1.443134, 11.472229 ], [ 1.578894, 11.44347 ], [ 1.599717, 11.394748 ], [ 1.714145, 11.42913 ], [ 1.773606, 11.419284 ], [ 1.872681, 11.445773 ], [ 2.019249, 11.427713 ], [ 2.18544, 11.597241 ], [ 2.305729, 11.674421 ], [ 2.299219, 11.720811 ], [ 2.372374, 11.793143 ], [ 2.405395, 11.901612 ], [ 2.059467, 12.35238 ], [ 2.152112, 12.418606 ], [ 2.272632, 12.426311 ], [ 2.217357, 12.525084 ], [ 2.216765, 12.604406 ], [ 2.122747, 12.665193 ], [ 2.098688, 12.726534 ], [ 1.986293, 12.738781 ], [ 1.922387, 12.701801 ], [ 1.873899, 12.618222 ], [ 1.570111, 12.631305 ], [ 1.051905, 13.05794 ], [ 0.992786, 13.059218 ], [ 0.991822, 13.37092 ], [ 1.110174, 13.323479 ], [ 1.1865, 13.317028 ], [ 1.280971, 13.358625 ], [ 1.245755, 13.402361 ], [ 1.14364, 13.39312 ], [ 1.076902, 13.440118 ], [ 1.00595, 13.558324 ], [ 0.897423, 13.624112 ], [ 0.781645, 13.642696 ], [ 0.772605, 13.692051 ], [ 0.635518, 13.693429 ], [ 0.619368, 13.777658 ], [ 0.526861, 13.847084 ], [ 0.476478, 13.910361 ], [ 0.483209, 13.951315 ], [ 0.398786, 14.027875 ], [ 0.35735, 14.139214 ], [ 0.391382, 14.265839 ], [ 0.362986, 14.33568 ], [ 0.288968, 14.364031 ], [ 0.176769, 14.492416 ], [ 0.16625, 14.533439 ], [ 0.202614, 14.762717 ], [ 0.190881, 14.806706 ], [ 0.235736, 14.886071 ], [ 0.229351, 14.989671 ], [ 0.401776, 14.9696 ], [ 0.512085, 15.001424 ], [ 0.694171, 14.947373 ], [ 0.719127, 14.959019 ], [ 0.973189, 14.978951 ], [ 1.32403, 15.265145 ], [ 2.004797, 15.313961 ], [ 2.62879, 15.367121 ], [ 3.097902, 15.341659 ], [ 3.527506, 15.341487 ], [ 3.538171, 15.488314 ], [ 3.60766, 15.526161 ], [ 3.706119, 15.639359 ], [ 3.822273, 15.663428 ], [ 3.872143, 15.691882 ], [ 3.905696, 15.77408 ], [ 3.942026, 15.935373 ], [ 4.004404, 15.985981 ], [ 3.987741, 16.060646 ], [ 4.076468, 16.320419 ], [ 4.076758, 16.91231 ], [ 4.241203, 16.987701 ], [ 4.239104, 17.495457 ], [ 4.244228, 18.972406 ], [ 4.242888, 19.136717 ], [ 3.333774, 18.960028 ], [ 3.121174, 19.119499 ], [ 3.108515, 19.179968 ], [ 3.197989, 19.280701 ], [ 3.209996, 19.335358 ], [ 3.272079, 19.409563 ], [ 3.212573, 19.565798 ], [ 3.234095, 19.650856 ], [ 3.212304, 19.679028 ], [ 3.228661, 19.825912 ], [ 3.180333, 19.83275 ], [ 3.002442, 19.936764 ], [ 2.811467, 19.970337 ], [ 2.705234, 20.004688 ], [ 2.578319, 20.004887 ], [ 2.462916, 20.062487 ], [ 2.399215, 20.071934 ], [ 2.33842, 20.183811 ], [ 2.253289, 20.264826 ], [ 2.186553, 20.291985 ], [ 2.095358, 20.212132 ], [ 2.045671, 20.256464 ], [ 1.927599, 20.238214 ], [ 1.876006, 20.298286 ], [ 1.803177, 20.296862 ], [ 1.76835, 20.342491 ], [ 1.671045, 20.410471 ], [ 1.653113, 20.552156 ], [ 1.592698, 20.600473 ], [ 1.455215, 20.650805 ], [ 1.371349, 20.665758 ], [ 1.305947, 20.744158 ], [ 1.176954, 20.733541 ], [ 1.158611, 20.792984 ], [ 1.184915, 20.903179 ], [ 1.187256, 21.046377 ], [ 1.166675, 21.118887 ], [ -0.000443, 21.837215 ], [ -0.027552, 21.917942 ], [ -0.336694, 22.123529 ], [ -1.134199, 22.642967 ], [ -1.704967, 23.019518 ], [ -2.712557, 23.664427 ], [ -3.706765, 24.290188 ], [ -3.96104, 24.445127 ], [ -4.521077, 24.803507 ], [ -4.789468, 24.970856 ], [ -5.408522, 25.36639 ], [ -5.979635, 25.718596 ], [ -7.0, 26.341364 ], [ -7.509962, 26.636787 ], [ -8.673868, 27.298073 ], [ -8.669257, 28.719862 ], [ -8.52137, 28.781076 ], [ -8.39103, 28.88826 ], [ -8.316542, 28.929995 ], [ -8.213035, 29.01915 ], [ -8.082245, 29.071899 ], [ -7.864933, 29.213688 ], [ -7.744092, 29.306585 ], [ -7.705597, 29.309631 ], [ -7.640522, 29.381409 ], [ -7.475306, 29.378208 ], [ -7.343539, 29.469461 ], [ -7.299794, 29.523481 ], [ -7.171687, 29.614714 ], [ -7.0, 29.644922 ], [ -6.944526, 29.625582 ], [ -6.833464, 29.634644 ], [ -6.694647, 29.58799 ], [ -6.549977, 29.587626 ], [ -6.490114, 29.624926 ], [ -6.448217, 29.700102 ], [ -6.300618, 29.717508 ], [ -6.156986, 29.703825 ], [ -6.072353, 29.711987 ], [ -5.919113, 29.790298 ], [ -5.659026, 29.818058 ], [ -5.457848, 29.895369 ], [ -5.130538, 29.999353 ], [ -5.063583, 30.069279 ], [ -5.002056, 30.166334 ], [ -4.83825, 30.628834 ], [ -4.604417, 30.697666 ], [ -4.40575, 30.705833 ], [ -4.214361, 30.743834 ], [ -4.137, 30.777472 ], [ -4.067222, 30.844833 ], [ -3.885167, 30.896166 ], [ -3.804722, 30.873249 ], [ -3.758472, 30.903749 ], [ -3.654139, 30.922945 ], [ -3.575695, 30.915222 ], [ -3.546472, 30.970583 ], [ -3.578444, 31.046139 ], [ -3.6805, 31.088249 ], [ -3.696167, 31.137278 ], [ -3.772972, 31.117666 ], [ -3.807278, 31.222 ], [ -3.766667, 31.270277 ], [ -3.763528, 31.361584 ], [ -3.651833, 31.382278 ], [ -3.66, 31.595306 ], [ -3.639667, 31.627083 ], [ -3.141889, 31.715195 ], [ -2.822972, 31.781944 ], [ -2.847389, 31.88611 ], [ -2.942722, 32.0 ], [ -2.924278, 32.059807 ], [ -2.843306, 32.113861 ], [ -2.708806, 32.110279 ], [ -2.577306, 32.124363 ], [ -2.456472, 32.161915 ], [ -2.286083, 32.177471 ], [ -1.957167, 32.139946 ], [ -1.87075, 32.147499 ], [ -1.675028, 32.130859 ], [ -1.545444, 32.147221 ], [ -1.3635, 32.131111 ], [ -1.267167, 32.097832 ], [ -1.197528, 32.129776 ], [ -1.192444, 32.177555 ], [ -1.249667, 32.236137 ], [ -1.2255, 32.348305 ], [ -1.184, 32.410583 ], [ -1.066833, 32.455639 ], [ -1.021222, 32.539806 ], [ -1.379333, 32.739529 ], [ -1.542222, 32.9575 ], [ -1.487056, 32.978111 ], [ -1.482722, 33.081638 ], [ -1.569111, 33.14761 ], [ -1.669278, 33.282307 ], [ -1.661389, 33.386806 ], [ -1.600528, 33.514137 ], [ -1.602361, 33.621445 ], [ -1.650556, 33.676556 ], [ -1.717528, 33.695835 ], [ -1.676889, 33.776222 ], [ -1.702778, 33.872917 ], [ -1.648472, 34.108418 ], [ -1.780722, 34.397278 ], [ -1.69175, 34.497639 ], [ -1.749444, 34.52375 ], [ -1.823944, 34.616306 ], [ -1.755778, 34.759556 ], [ -1.962972, 34.874805 ], [ -1.981083, 34.933998 ], [ -2.033278, 34.932499 ], [ -2.177111, 35.023056 ], [ -2.215472, 35.066002 ], [ -2.174714, 35.222204 ], [ -2.318264, 35.24914 ], [ -2.34861, 35.28413 ], [ -2.438867, 35.313323 ], [ -2.513361, 35.281605 ], [ -2.549302, 35.221163 ], [ -2.614498, 35.218859 ], [ -2.702384, 35.249893 ], [ -2.817351, 35.344108 ], [ -2.841679, 35.389398 ], [ -2.846484, 35.501565 ], [ -2.909164, 35.562512 ], [ -2.997512, 35.571686 ], [ -3.098149, 35.505898 ], [ -3.134563, 35.413722 ], [ -3.235815, 35.353892 ], [ -3.35974, 35.317097 ], [ -3.538618, 35.3504 ], [ -3.640402, 35.410391 ], [ -3.724922, 35.414553 ], [ -3.840552, 35.360158 ], [ -3.917408, 35.391014 ], [ -4.062291, 35.364539 ], [ -4.161343, 35.325919 ], [ -4.277137, 35.311925 ], [ -4.363677, 35.278611 ], [ -4.681669, 35.335979 ], [ -4.85247, 35.423597 ], [ -4.988284, 35.52163 ], [ -5.091677, 35.62815 ], [ -5.14938, 35.65905 ], [ -5.160624, 35.747188 ], [ -5.213726, 35.799794 ], [ -5.166613, 35.853174 ], [ -5.155893, 35.893631 ], [ -5.19655, 35.997682 ], [ -5.260054, 36.027697 ], [ -5.765293, 35.951133 ], [ -5.82242, 35.965986 ], [ -5.862787, 35.983854 ], [ -5.945656, 36.063835 ], [ -6.026997, 36.062783 ], [ -6.09799, 36.083332 ], [ -6.133491, 36.123581 ], [ -6.224607, 36.217604 ], [ -6.417149, 36.492977 ], [ -6.482907, 36.567012 ], [ -6.550181, 36.695844 ], [ -6.525495, 36.824382 ], [ -6.595423, 36.890778 ], [ -6.828067, 37.007524 ], [ -6.908407, 37.021971 ], [ -7.057906, 37.085893 ], [ -7.253932, 37.083749 ], [ -7.377988, 37.052382 ], [ -7.402861, 37.192554 ], [ -7.41125, 37.228722 ], [ -7.416333, 37.271194 ], [ -7.432111, 37.296944 ], [ -7.429528, 37.366611 ], [ -7.464361, 37.488888 ], [ -7.520833, 37.55722 ], [ -7.453028, 37.647083 ], [ -7.415916, 37.757195 ], [ -7.325278, 37.814861 ], [ -7.274389, 37.878834 ], [ -7.250834, 37.986168 ], [ -7.125945, 38.000751 ], [ -7.102167, 38.039944 ], [ -6.993639, 38.028111 ], [ -6.933861, 38.211193 ], [ -7.082611, 38.176193 ], [ -7.142722, 38.268444 ], [ -7.269, 38.397556 ], [ -7.327944, 38.44136 ], [ -7.265167, 38.638416 ], [ -7.254806, 38.718834 ], [ -7.08475, 38.821304 ], [ -7.037333, 38.863224 ], [ -7.027056, 38.920776 ], [ -6.953556, 39.022583 ], [ -6.96325, 39.063473 ], [ -7.035722, 39.116806 ], [ -7.144778, 39.11628 ], [ -7.144166, 39.1745 ], [ -7.218111, 39.190304 ], [ -7.230166, 39.276695 ], [ -7.292278, 39.322693 ], [ -7.329778, 39.385223 ], [ -7.300611, 39.461082 ], [ -7.371917, 39.4855 ], [ -7.504694, 39.609554 ], [ -7.466028, 39.666054 ], [ -7.313528, 39.647667 ], [ -7.251889, 39.666248 ], [ -7.059389, 39.656387 ], [ -7.012055, 39.672054 ], [ -6.9835, 39.804668 ], [ -6.902555, 39.867363 ], [ -6.902611, 39.921417 ], [ -6.863889, 40.013 ], [ -6.941222, 40.112999 ], [ -7.009139, 40.137001 ], [ -7.0055, 40.221916 ], [ -6.944083, 40.25528 ], [ -6.857944, 40.266945 ], [ -6.789694, 40.331249 ], [ -6.840389, 40.447056 ], [ -6.795055, 40.512249 ], [ -6.837778, 40.568554 ], [ -6.793194, 40.641277 ], [ -6.827194, 40.753166 ], [ -6.804611, 40.878029 ], [ -6.926333, 41.018776 ], [ -6.823083, 41.037224 ], [ -6.754111, 41.10603 ], [ -6.668917, 41.221863 ], [ -6.570472, 41.237667 ], [ -6.428389, 41.315556 ], [ -6.308111, 41.424137 ], [ -6.286472, 41.476917 ], [ -6.184055, 41.583832 ], [ -6.273417, 41.655277 ], [ -6.437611, 41.687222 ], [ -6.496611, 41.658001 ], [ -6.545166, 41.690861 ], [ -6.550472, 41.76939 ], [ -6.517334, 41.869251 ], [ -6.541945, 41.931305 ], [ -6.589334, 41.947418 ], [ -6.732611, 41.940834 ], [ -6.754556, 41.973141 ], [ -6.882722, 41.938526 ], [ -6.959028, 41.971638 ], [ -7.051139, 41.94886 ], [ -7.144805, 41.989807 ], [ -7.185833, 41.959888 ], [ -7.191722, 41.88636 ], [ -7.276528, 41.849777 ], [ -7.452333, 41.862499 ], [ -7.5665, 41.830891 ], [ -7.689333, 41.905361 ], [ -7.835667, 41.862026 ], [ -7.969333, 41.869473 ], [ -8.002778, 41.831333 ], [ -8.095388, 41.801445 ], [ -8.149195, 41.816418 ], [ -8.211861, 41.908138 ], [ -8.154361, 41.981361 ], [ -8.081445, 42.016418 ], [ -8.123694, 42.078556 ], [ -8.175472, 42.066387 ], [ -8.187333, 42.142612 ], [ -8.3315, 42.090305 ], [ -8.516472, 42.075863 ], [ -8.627556, 42.048443 ], [ -8.674611, 41.991222 ], [ -8.987241, 41.793305 ], [ -9.005027, 41.901055 ], [ -9.010634, 42.135705 ], [ -9.023974, 42.278133 ], [ -9.192439, 42.536053 ], [ -9.172927, 42.655006 ], [ -9.254886, 42.76291 ], [ -9.345215, 42.792682 ], [ -9.404692, 42.889579 ], [ -9.391728, 43.112146 ], [ -9.322861, 43.176513 ], [ -9.292025, 43.240942 ], [ -9.214632, 43.296113 ], [ -9.09718, 43.315703 ], [ -9.0573, 43.372109 ], [ -8.952023, 43.434767 ], [ -8.865774, 43.46206 ], [ -8.783791, 43.455826 ], [ -8.709364, 43.413187 ], [ -8.576404, 43.440746 ], [ -8.451384, 43.49893 ], [ -8.412037, 43.639439 ], [ -8.343157, 43.684635 ], [ -8.285748, 43.683852 ], [ -8.184949, 43.741718 ], [ -8.102851, 43.820634 ], [ -7.87292, 43.894581 ], [ -7.777335, 43.8647 ], [ -7.66177, 43.910833 ], [ -7.558828, 43.854305 ], [ -7.503032, 43.862042 ], [ -7.5, 43.861154479453567 ], [ -7.466724, 43.851414 ], [ -7.287046, 43.775917 ], [ -7.215913, 43.697433 ], [ -7.132869, 43.681431 ], [ -6.941865, 43.695081 ], [ -6.796711, 43.68462 ], [ -6.608077, 43.694241 ], [ -6.52843, 43.677282 ], [ -6.457218, 43.694515 ], [ -6.358166, 43.680692 ], [ -6.228196, 43.718666 ], [ -6.105907, 43.685589 ], [ -5.992385, 43.711392 ], [ -5.879372, 43.776242 ], [ -5.799336, 43.775019 ], [ -5.625681, 43.676972 ], [ -5.38034, 43.674424 ], [ -5.268304, 43.653919 ], [ -5.170369, 43.598392 ], [ -5.113541, 43.607133 ], [ -5.011951, 43.582598 ], [ -4.828405, 43.568572 ], [ -4.626133, 43.520881 ], [ -4.286517, 43.51428 ], [ -3.818865, 43.614821 ], [ -3.725128, 43.595621 ], [ -3.625835, 43.627601 ], [ -3.524202, 43.62734 ], [ -3.39175, 43.576985 ], [ -3.336478, 43.538252 ], [ -3.22448, 43.521984 ], [ -3.133981, 43.47904 ], [ -3.051452, 43.496905 ], [ -2.971206, 43.551311 ], [ -2.830185, 43.554132 ], [ -2.755355, 43.573747 ], [ -2.657615, 43.532602 ], [ -2.473123, 43.491404 ], [ -2.33057, 43.422008 ], [ -2.230301, 43.43202 ], [ -2.159781, 43.417162 ], [ -1.791595, 43.514332 ], [ -1.703763, 43.514631 ], [ -1.617606, 43.606742 ], [ -1.563091, 43.688438 ], [ -1.517487, 43.887241 ], [ -1.436567, 44.156767 ], [ -1.3787, 44.472579 ], [ -1.379916, 44.680948 ], [ -1.342009, 44.879594 ], [ -1.308711, 45.145151 ], [ -1.277869, 45.316333 ], [ -1.275334, 45.495857 ], [ -1.262435, 45.56037 ], [ -1.334561, 45.621496 ], [ -1.360026, 45.699623 ], [ -1.366525, 45.800856 ], [ -1.444132, 45.843614 ], [ -1.491406, 45.900867 ], [ -3.254991, 47.143562 ], [ -4.347466, 47.67122 ], [ -4.410553, 47.678171 ], [ -4.470899, 47.728925 ], [ -4.489243, 47.854622 ], [ -4.544863, 47.887301 ], [ -4.757468, 47.918853 ], [ -4.844397, 47.916144 ], [ -4.941362, 47.942279 ], [ -4.986079, 47.998026 ], [ -4.991173, 48.06931 ], [ -4.950502, 48.134766 ], [ -4.884703, 48.164849 ], [ -4.803495, 48.151323 ], [ -4.739719, 48.213913 ], [ -4.903185, 48.232197 ], [ -5.064689, 48.329402 ], [ -5.142609, 48.324059 ], [ -5.209946, 48.354714 ], [ -5.262081, 48.447949 ], [ -5.204736, 48.560278 ], [ -5.064802, 48.606225 ], [ -4.975455, 48.571604 ], [ -4.932977, 48.520424 ], [ -4.83166, 48.638407 ], [ -4.592168, 48.752958 ], [ -4.510098, 48.75492 ], [ -4.372303, 48.798691 ], [ -4.270685, 48.78129 ], [ -4.152207, 48.817711 ], [ -4.072752, 48.868103 ], [ -3.947725, 48.858424 ], [ -3.897529, 48.818782 ], [ -3.82024, 48.841479 ], [ -3.707704, 48.826715 ], [ -3.655309, 48.910256 ], [ -3.528187, 48.959016 ], [ -3.419066, 48.940696 ], [ -3.217848, 48.998332 ], [ -2.808948, 49.532541 ], [ -2.343165, 49.774276 ], [ -2.330208, 49.795139 ], [ -2.285588, 49.830988 ], [ -2.184949, 49.858591 ], [ -2.106995, 49.839935 ], [ -2.05364, 49.781662 ], [ -1.978418, 49.847164 ], [ -1.904406, 49.852394 ], [ -1.749476, 49.804924 ], [ -1.568332, 49.77973 ], [ -1.498632, 49.821606 ], [ -1.374258, 49.832952 ], [ -1.239699, 49.820736 ], [ -1.180228, 49.78551 ], [ -1.116357, 49.653518 ], [ -1.139104, 49.543926 ], [ -1.102962, 49.511425 ], [ -0.911578, 49.51448 ], [ -0.796287, 49.475988 ], [ -0.606755, 49.462184 ], [ -0.554998, 49.469053 ], [ -0.352159, 49.448094 ], [ -0.218934, 49.404535 ], [ -0.029706, 49.444111 ], [ -0.045039, 49.554433 ], [ 0.069334, 49.760346 ], [ 0.155434, 49.823936 ], [ 0.29108, 49.862171 ], [ 0.550923, 49.970905 ], [ 0.759791, 49.995389 ], [ 0.953479, 50.041195 ], [ 1.010483, 50.041088 ], [ 1.157323, 50.085848 ], [ 1.363192, 50.197281 ], [ 1.423599, 50.286516 ], [ 1.457196, 50.475967 ], [ 1.461334, 50.618747 ], [ 1.44554, 50.679965 ], [ 1.475246, 50.797904 ], [ 1.459422, 50.861142 ], [ 1.491489, 50.950213 ], [ 1.60222, 50.997067 ], [ 1.72408, 51.068551 ], [ 1.748747, 51.075135 ], [ 1.876595, 51.103165 ], [ 2.077837, 51.12641 ], [ 2.229293, 51.161974 ], [ 2.456435, 51.190688 ], [ 2.663187, 51.259222 ], [ 3.039772, 51.418466 ], [ 3.16348, 51.464025 ], [ 3.32422, 51.486508 ], [ 3.326606, 51.584431 ], [ 3.379188, 51.646123 ], [ 3.560887, 51.715975 ], [ 3.588721, 51.783995 ], [ 3.665238, 51.842392 ], [ 3.752947, 51.86085 ], [ 3.824539, 51.92957 ], [ 3.897199, 51.947168 ], [ 3.90063, 52.002004 ], [ 3.956998, 52.073862 ], [ 4.069285, 52.104219 ], [ 4.28847, 52.268426 ], [ 4.413231, 52.417108 ], [ 4.501183, 52.603731 ], [ 4.538846, 52.794272 ], [ 4.594988, 52.900277 ], [ 4.588445, 53.018856 ], [ 4.626342, 53.132246 ], [ 4.738299, 53.248091 ], [ 4.768559, 53.305966 ], [ 4.911196, 53.380502 ], [ 5.052988, 53.42766 ], [ 5.168135, 53.516716 ], [ 5.281976, 53.528816 ], [ 5.636857, 53.590286 ], [ 5.722636, 53.580463 ], [ 5.914409, 53.590804 ], [ 6.01831, 53.576098 ], [ 6.116941, 53.613147 ], [ 6.349284, 53.628626 ], [ 6.44428, 53.674889 ], [ 6.533444, 53.659919 ], [ 6.641814, 53.721143 ], [ 6.781859, 53.742469 ], [ 6.864588, 53.794035 ], [ 7.074839, 53.807401 ], [ 7.174376, 53.844768 ], [ 7.424843, 53.85608 ], [ 7.5, 53.876902 ], [ 7.5, 57.858473 ], [ 7.476254, 57.864584 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "what3" }, "geometry": null }, +{ "type": "Feature", "properties": { "name": "+4.5" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 60.878613, 29.861778 ], [ 61.293999, 30.307028 ], [ 61.766499, 30.796972 ], [ 61.803528, 30.84086 ], [ 61.78661, 30.927195 ], [ 61.832638, 30.973639 ], [ 61.845695, 31.040833 ], [ 61.815334, 31.170305 ], [ 61.778946, 31.231556 ], [ 61.756443, 31.332611 ], [ 61.682999, 31.384556 ], [ 60.856888, 31.491667 ], [ 60.829834, 31.666471 ], [ 60.83836, 31.736389 ], [ 60.823555, 31.88925 ], [ 60.834278, 32.054165 ], [ 60.877251, 32.198833 ], [ 60.819, 32.479252 ], [ 60.718277, 32.688778 ], [ 60.647915, 32.961304 ], [ 60.586113, 33.143112 ], [ 60.62764, 33.223915 ], [ 60.869999, 33.424667 ], [ 60.863167, 33.485943 ], [ 60.901138, 33.536915 ], [ 60.716251, 33.528557 ], [ 60.643223, 33.56461 ], [ 60.549583, 33.730221 ], [ 60.567307, 33.817307 ], [ 60.482582, 34.062195 ], [ 60.562389, 34.152248 ], [ 60.590946, 34.212723 ], [ 60.694221, 34.311165 ], [ 60.866859, 34.30661 ], [ 60.854305, 34.409557 ], [ 60.745693, 34.522972 ], [ 60.900471, 34.571777 ], [ 60.920444, 34.619526 ], [ 60.997971, 34.632694 ], [ 61.002419, 34.704334 ], [ 61.07711, 34.839027 ], [ 61.075249, 34.932529 ], [ 61.118832, 35.014389 ], [ 61.144611, 35.130138 ], [ 61.090668, 35.171696 ], [ 61.107613, 35.281139 ], [ 61.190887, 35.28997 ], [ 61.173416, 35.349304 ], [ 61.233944, 35.429668 ], [ 61.271641, 35.521721 ], [ 61.276638, 35.613167 ], [ 61.368805, 35.624416 ], [ 61.387222, 35.562473 ], [ 61.599861, 35.436474 ], [ 61.766998, 35.414501 ], [ 61.964279, 35.453583 ], [ 62.057388, 35.437473 ], [ 62.143444, 35.344776 ], [ 62.248138, 35.308807 ], [ 62.283001, 35.255333 ], [ 62.309807, 35.142944 ], [ 62.466835, 35.284306 ], [ 62.569916, 35.23439 ], [ 62.747833, 35.265194 ], [ 62.926388, 35.382446 ], [ 63.096359, 35.427723 ], [ 63.127224, 35.549721 ], [ 63.119751, 35.645084 ], [ 63.244251, 35.686611 ], [ 63.140556, 35.775639 ], [ 63.129223, 35.869305 ], [ 63.30011, 35.864529 ], [ 63.547195, 35.913307 ], [ 63.574471, 35.956417 ], [ 63.815277, 35.99889 ], [ 63.976223, 36.041943 ], [ 64.065224, 36.00172 ], [ 64.082222, 36.112751 ], [ 64.221497, 36.166332 ], [ 64.289108, 36.153694 ], [ 64.317833, 36.199055 ], [ 64.448807, 36.237 ], [ 64.604332, 36.4035 ], [ 64.622948, 36.472721 ], [ 64.605194, 36.626556 ], [ 64.707664, 36.805889 ], [ 64.795441, 36.936001 ], [ 64.756615, 37.106472 ], [ 64.982613, 37.212944 ], [ 65.228058, 37.250168 ], [ 65.263359, 37.23275 ], [ 65.524307, 37.234165 ], [ 65.624191, 37.319611 ], [ 65.643692, 37.431137 ], [ 65.697586, 37.528362 ], [ 65.798309, 37.538223 ], [ 65.877052, 37.47261 ], [ 66.098503, 37.429443 ], [ 66.132668, 37.387722 ], [ 66.230164, 37.367584 ], [ 66.300415, 37.323334 ], [ 66.48436, 37.334057 ], [ 66.568947, 37.360222 ], [ 66.683365, 37.337223 ], [ 66.831253, 37.351612 ], [ 66.971359, 37.386749 ], [ 67.098335, 37.330387 ], [ 67.10778, 37.286194 ], [ 67.203751, 37.25486 ], [ 67.263969, 37.188499 ], [ 67.440308, 37.233139 ], [ 67.496223, 37.271805 ], [ 67.558693, 37.230946 ], [ 67.633331, 37.248444 ], [ 67.752136, 37.217972 ], [ 67.790527, 37.18375 ], [ 67.78653, 37.093945 ], [ 67.899055, 37.06422 ], [ 67.903999, 37.019222 ], [ 67.981056, 36.977917 ], [ 68.023834, 36.928276 ], [ 68.078194, 36.942638 ], [ 68.203445, 37.023945 ], [ 68.261917, 37.002834 ], [ 68.327164, 37.112362 ], [ 68.379974, 37.101723 ], [ 68.436531, 37.148777 ], [ 68.539391, 37.166779 ], [ 68.639053, 37.207249 ], [ 68.680496, 37.276165 ], [ 68.729553, 37.271084 ], [ 68.843697, 37.316666 ], [ 68.887337, 37.27314 ], [ 68.944389, 37.321556 ], [ 69.007942, 37.300777 ], [ 69.126472, 37.17186 ], [ 69.248833, 37.097305 ], [ 69.318863, 37.117916 ], [ 69.398415, 37.172722 ], [ 69.417137, 37.234806 ], [ 69.367165, 37.405499 ], [ 69.381226, 37.451668 ], [ 69.447304, 37.489166 ], [ 69.524246, 37.584999 ], [ 69.818192, 37.573833 ], [ 69.908081, 37.616779 ], [ 69.953888, 37.563972 ], [ 70.102142, 37.524666 ], [ 70.250053, 37.611973 ], [ 70.306137, 37.695915 ], [ 70.281113, 37.811554 ], [ 70.196747, 37.842529 ], [ 70.179916, 37.944195 ], [ 70.278053, 37.940861 ], [ 70.365364, 38.051777 ], [ 70.502777, 38.127945 ], [ 70.605972, 38.34325 ], [ 70.690002, 38.367416 ], [ 70.678108, 38.407166 ], [ 70.765305, 38.448002 ], [ 70.950226, 38.434418 ], [ 70.989082, 38.483418 ], [ 71.04483, 38.398556 ], [ 71.079613, 38.415585 ], [ 71.162918, 38.379276 ], [ 71.181747, 38.338249 ], [ 71.327446, 38.294529 ], [ 71.367249, 38.236637 ], [ 71.3125, 38.061584 ], [ 71.285385, 38.036221 ], [ 71.26017, 37.93375 ], [ 71.326836, 37.885139 ], [ 71.529388, 37.954166 ], [ 71.578247, 37.927891 ], [ 71.589081, 37.796501 ], [ 71.529945, 37.757416 ], [ 71.546753, 37.709499 ], [ 71.493942, 37.538139 ], [ 71.523026, 37.478222 ], [ 71.485085, 37.339333 ], [ 71.499001, 37.308193 ], [ 71.446442, 37.173973 ], [ 71.427193, 37.055111 ], [ 71.459137, 36.951668 ], [ 71.505669, 36.900585 ], [ 71.560585, 36.756695 ], [ 71.666832, 36.67786 ], [ 71.830223, 36.687054 ], [ 72.047142, 36.834026 ], [ 72.106194, 36.847195 ], [ 72.172806, 36.905724 ], [ 72.318726, 36.977055 ], [ 72.424225, 37.004528 ], [ 72.516945, 36.998028 ], [ 72.675636, 37.026222 ], [ 72.76947, 37.18211 ], [ 72.817802, 37.229279 ], [ 72.928947, 37.276222 ], [ 73.075302, 37.317638 ], [ 73.156059, 37.407833 ], [ 73.204002, 37.402637 ], [ 73.308418, 37.462418 ], [ 73.367691, 37.437973 ], [ 73.510086, 37.47036 ], [ 73.569916, 37.44175 ], [ 73.755974, 37.435001 ], [ 73.766586, 37.338585 ], [ 73.660614, 37.30661 ], [ 73.627335, 37.244335 ], [ 73.752083, 37.222832 ], [ 73.963501, 37.292168 ], [ 74.222252, 37.348026 ], [ 74.243225, 37.379665 ], [ 74.344696, 37.416332 ], [ 74.424614, 37.388222 ], [ 74.544052, 37.398556 ], [ 74.562225, 37.379471 ], [ 74.682587, 37.40414 ], [ 74.829697, 37.329166 ], [ 74.878555, 37.235695 ], [ 74.795441, 37.226501 ], [ 74.747253, 37.275417 ], [ 74.65992, 37.238388 ], [ 74.507973, 37.239193 ], [ 74.493721, 37.179668 ], [ 74.433113, 37.115749 ], [ 74.486443, 37.093388 ], [ 74.529587, 37.029388 ], [ 74.571556, 37.034443 ], [ 74.517365, 36.998917 ], [ 74.427864, 36.997639 ], [ 74.264, 36.904446 ], [ 74.152031, 36.909863 ], [ 74.127419, 36.84811 ], [ 74.05275, 36.828724 ], [ 73.963196, 36.837502 ], [ 73.846581, 36.898613 ], [ 73.705055, 36.912724 ], [ 73.527779, 36.885555 ], [ 73.403137, 36.899139 ], [ 73.30661, 36.873138 ], [ 73.273361, 36.888557 ], [ 73.071747, 36.889057 ], [ 73.026833, 36.860695 ], [ 72.953392, 36.872112 ], [ 72.882637, 36.841084 ], [ 72.656166, 36.849834 ], [ 72.566109, 36.832417 ], [ 72.495224, 36.777557 ], [ 72.411163, 36.776669 ], [ 72.302559, 36.744999 ], [ 72.241364, 36.753471 ], [ 72.196892, 36.693554 ], [ 72.102913, 36.648556 ], [ 72.096748, 36.597332 ], [ 71.935303, 36.56089 ], [ 71.909142, 36.505306 ], [ 71.832054, 36.505474 ], [ 71.795776, 36.400585 ], [ 71.656197, 36.478222 ], [ 71.613892, 36.409111 ], [ 71.524223, 36.320862 ], [ 71.434471, 36.260944 ], [ 71.347443, 36.172554 ], [ 71.245445, 36.122776 ], [ 71.201416, 36.035778 ], [ 71.319336, 35.96489 ], [ 71.376724, 35.956112 ], [ 71.489861, 35.803471 ], [ 71.485359, 35.753887 ], [ 71.546669, 35.720222 ], [ 71.499474, 35.626415 ], [ 71.612221, 35.573223 ], [ 71.593391, 35.497528 ], [ 71.648941, 35.452473 ], [ 71.555809, 35.312862 ], [ 71.57003, 35.274361 ], [ 71.674889, 35.196529 ], [ 71.530052, 35.072361 ], [ 71.552086, 35.019085 ], [ 71.499252, 34.963749 ], [ 71.30986, 34.878834 ], [ 71.279442, 34.805027 ], [ 71.095665, 34.675529 ], [ 71.087082, 34.590443 ], [ 70.995552, 34.554779 ], [ 71.006805, 34.461113 ], [ 71.08728, 34.389137 ], [ 71.169472, 34.363609 ], [ 71.122055, 34.267193 ], [ 71.126083, 34.162418 ], [ 71.072746, 34.105694 ], [ 71.076279, 34.0625 ], [ 70.935608, 34.011665 ], [ 70.884941, 33.976749 ], [ 70.767944, 33.954861 ], [ 70.593887, 33.964333 ], [ 70.46772, 33.943333 ], [ 70.426308, 33.960388 ], [ 70.238831, 33.973141 ], [ 70.046196, 34.036724 ], [ 69.913498, 34.037945 ], [ 69.865753, 33.926918 ], [ 70.005638, 33.733528 ], [ 70.136971, 33.715057 ], [ 70.149277, 33.653526 ], [ 70.197029, 33.63361 ], [ 70.173584, 33.525055 ], [ 70.258499, 33.433029 ], [ 70.315392, 33.395557 ], [ 70.29142, 33.327835 ], [ 70.155746, 33.221195 ], [ 70.067307, 33.213554 ], [ 70.023087, 33.143276 ], [ 69.875526, 33.095695 ], [ 69.78653, 33.127556 ], [ 69.722557, 33.09314 ], [ 69.580055, 33.097557 ], [ 69.507111, 33.029026 ], [ 69.492027, 32.942696 ], [ 69.530525, 32.861168 ], [ 69.47422, 32.851055 ], [ 69.395226, 32.781582 ], [ 69.441223, 32.727749 ], [ 69.451225, 32.663166 ], [ 69.385246, 32.566555 ], [ 69.285225, 32.53297 ], [ 69.240692, 32.461388 ], [ 69.28083, 32.356388 ], [ 69.272835, 32.151001 ], [ 69.300331, 31.991945 ], [ 69.323502, 31.944166 ], [ 69.197609, 31.848389 ], [ 69.117943, 31.703251 ], [ 68.985947, 31.628 ], [ 68.900642, 31.60125 ], [ 68.804947, 31.609972 ], [ 68.717003, 31.696638 ], [ 68.701836, 31.76989 ], [ 68.632225, 31.77825 ], [ 68.570137, 31.827972 ], [ 68.423027, 31.755362 ], [ 68.286613, 31.757 ], [ 68.259361, 31.801556 ], [ 68.177498, 31.814501 ], [ 68.064087, 31.699389 ], [ 67.949913, 31.633417 ], [ 67.84314, 31.616528 ], [ 67.742058, 31.533722 ], [ 67.648476, 31.518362 ], [ 67.569557, 31.534695 ], [ 67.594696, 31.434305 ], [ 67.66008, 31.397223 ], [ 67.740944, 31.414778 ], [ 67.774086, 31.332861 ], [ 67.620415, 31.276388 ], [ 67.390526, 31.216583 ], [ 67.2715, 31.205778 ], [ 67.166336, 31.243389 ], [ 67.056168, 31.230833 ], [ 67.044472, 31.303833 ], [ 66.969109, 31.312611 ], [ 66.834969, 31.264278 ], [ 66.802002, 31.219084 ], [ 66.731087, 31.2125 ], [ 66.683167, 31.074583 ], [ 66.562553, 30.977612 ], [ 66.386581, 30.933916 ], [ 66.281059, 30.569279 ], [ 66.354111, 30.427279 ], [ 66.316612, 30.242861 ], [ 66.238441, 30.084084 ], [ 66.241669, 30.055056 ], [ 66.358749, 29.974445 ], [ 66.318916, 29.912695 ], [ 66.245636, 29.85136 ], [ 65.781136, 29.723749 ], [ 65.067055, 29.536222 ], [ 64.95578, 29.553583 ], [ 64.63192, 29.581083 ], [ 64.48761, 29.571777 ], [ 64.266808, 29.523834 ], [ 64.152336, 29.449556 ], [ 64.105309, 29.377472 ], [ 64.032364, 29.417694 ], [ 63.590832, 29.490417 ], [ 63.364498, 29.47636 ], [ 62.455776, 29.388971 ], [ 61.652527, 29.625694 ], [ 60.878613, 29.861778 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "+5.75" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 88.135971, 27.879223 ], [ 88.193748, 27.854805 ], [ 88.115974, 27.622417 ], [ 88.078781, 27.591778 ], [ 88.039558, 27.485806 ], [ 88.064163, 27.443195 ], [ 87.984306, 27.113167 ], [ 88.035698, 27.038221 ], [ 88.106224, 26.992332 ], [ 88.168526, 26.872417 ], [ 88.18853, 26.766861 ], [ 88.159859, 26.639139 ], [ 88.109169, 26.572779 ], [ 88.09053, 26.433584 ], [ 88.024055, 26.365778 ], [ 87.913361, 26.432777 ], [ 87.842308, 26.435389 ], [ 87.784225, 26.469166 ], [ 87.756058, 26.408695 ], [ 87.688393, 26.434528 ], [ 87.600975, 26.382473 ], [ 87.494637, 26.438168 ], [ 87.404808, 26.42675 ], [ 87.350113, 26.361444 ], [ 87.266167, 26.377056 ], [ 87.249191, 26.414888 ], [ 87.140472, 26.41361 ], [ 87.088219, 26.457222 ], [ 87.066475, 26.589361 ], [ 87.007446, 26.533695 ], [ 86.927307, 26.515917 ], [ 86.838142, 26.443916 ], [ 86.762779, 26.460806 ], [ 86.734947, 26.427221 ], [ 86.575333, 26.496695 ], [ 86.539108, 26.538694 ], [ 86.396553, 26.586527 ], [ 86.340858, 26.621889 ], [ 86.139359, 26.614973 ], [ 86.031776, 26.670555 ], [ 85.866249, 26.569944 ], [ 85.731613, 26.658361 ], [ 85.716393, 26.825916 ], [ 85.616669, 26.882 ], [ 85.458969, 26.790251 ], [ 85.404083, 26.794666 ], [ 85.330948, 26.747084 ], [ 85.17997, 26.805056 ], [ 85.187332, 26.8745 ], [ 85.111862, 26.877111 ], [ 84.968025, 26.917055 ], [ 84.960197, 26.962889 ], [ 84.865639, 26.985472 ], [ 84.841919, 27.01436 ], [ 84.748108, 27.010584 ], [ 84.644218, 27.049139 ], [ 84.684029, 27.141222 ], [ 84.68808, 27.226389 ], [ 84.627724, 27.328222 ], [ 84.444862, 27.36861 ], [ 84.286308, 27.389166 ], [ 84.256859, 27.445139 ], [ 84.098358, 27.514166 ], [ 84.022552, 27.434917 ], [ 83.927025, 27.448805 ], [ 83.834663, 27.428862 ], [ 83.864029, 27.351889 ], [ 83.624138, 27.467417 ], [ 83.389114, 27.480305 ], [ 83.408333, 27.41386 ], [ 83.339447, 27.334778 ], [ 83.156418, 27.458529 ], [ 82.957886, 27.467388 ], [ 82.923279, 27.504305 ], [ 82.813225, 27.495777 ], [ 82.762169, 27.510778 ], [ 82.756775, 27.585556 ], [ 82.700974, 27.722027 ], [ 82.461082, 27.682501 ], [ 82.067474, 27.924389 ], [ 81.966415, 27.930277 ], [ 81.890274, 27.858528 ], [ 81.799026, 27.910944 ], [ 81.700279, 27.989639 ], [ 81.642555, 27.996195 ], [ 81.480804, 28.0795 ], [ 81.445442, 28.160389 ], [ 81.337975, 28.182417 ], [ 81.234528, 28.279945 ], [ 81.212608, 28.35836 ], [ 81.135086, 28.376028 ], [ 80.913582, 28.464527 ], [ 80.708115, 28.570833 ], [ 80.666222, 28.635723 ], [ 80.591858, 28.647806 ], [ 80.5625, 28.689417 ], [ 80.453087, 28.624277 ], [ 80.372581, 28.629278 ], [ 80.114281, 28.829472 ], [ 80.063942, 28.842361 ], [ 80.056274, 28.916861 ], [ 80.179779, 29.136223 ], [ 80.268417, 29.139862 ], [ 80.313278, 29.312611 ], [ 80.277496, 29.338556 ], [ 80.250443, 29.448973 ], [ 80.35289, 29.528749 ], [ 80.405472, 29.597889 ], [ 80.363167, 29.745527 ], [ 80.407806, 29.79089 ], [ 80.491058, 29.802528 ], [ 80.552223, 29.849527 ], [ 80.59864, 29.956917 ], [ 80.671524, 29.959249 ], [ 80.750443, 30.013334 ], [ 80.81086, 30.093973 ], [ 80.876808, 30.132639 ], [ 80.903389, 30.218222 ], [ 80.949028, 30.18339 ], [ 81.055664, 30.204472 ], [ 81.102554, 30.150555 ], [ 81.096085, 30.079166 ], [ 81.198471, 30.029888 ], [ 81.255859, 30.057695 ], [ 81.264389, 30.144472 ], [ 81.338448, 30.151972 ], [ 81.38517, 30.203722 ], [ 81.409637, 30.31675 ], [ 81.406807, 30.41375 ], [ 81.482635, 30.422777 ], [ 81.576469, 30.371361 ], [ 81.585526, 30.426666 ], [ 81.641052, 30.431139 ], [ 81.725166, 30.394917 ], [ 82.006554, 30.335583 ], [ 82.031082, 30.3405 ], [ 82.053055, 30.341473 ], [ 82.130531, 30.333889 ], [ 82.159111, 30.230278 ], [ 82.198807, 30.198723 ], [ 82.197746, 30.092501 ], [ 82.431335, 30.012278 ], [ 82.497864, 30.007444 ], [ 82.700638, 29.839556 ], [ 82.758278, 29.755028 ], [ 82.854057, 29.704306 ], [ 82.91922, 29.702055 ], [ 83.076447, 29.629862 ], [ 83.238388, 29.582945 ], [ 83.26178, 29.517195 ], [ 83.324608, 29.50075 ], [ 83.332832, 29.448833 ], [ 83.385193, 29.412251 ], [ 83.442497, 29.288639 ], [ 83.533302, 29.207861 ], [ 83.621307, 29.168833 ], [ 83.719193, 29.245111 ], [ 83.785553, 29.237612 ], [ 83.876724, 29.305111 ], [ 83.972946, 29.315584 ], [ 84.101608, 29.273277 ], [ 84.168526, 29.185722 ], [ 84.162865, 29.107973 ], [ 84.122391, 29.059334 ], [ 84.163109, 28.99711 ], [ 84.145584, 28.889639 ], [ 84.260475, 28.913473 ], [ 84.344833, 28.858862 ], [ 84.413391, 28.843445 ], [ 84.420364, 28.768723 ], [ 84.513947, 28.717806 ], [ 84.606552, 28.740055 ], [ 84.657585, 28.726389 ], [ 84.739754, 28.596945 ], [ 84.858253, 28.568306 ], [ 84.938332, 28.614195 ], [ 84.998726, 28.604389 ], [ 85.071083, 28.670334 ], [ 85.151108, 28.664888 ], [ 85.193138, 28.618139 ], [ 85.111336, 28.338667 ], [ 85.199387, 28.341999 ], [ 85.246719, 28.284805 ], [ 85.374001, 28.282862 ], [ 85.442108, 28.329861 ], [ 85.53167, 28.327223 ], [ 85.591637, 28.300833 ], [ 85.730942, 28.197945 ], [ 85.762947, 28.209806 ], [ 85.894997, 28.115389 ], [ 85.963997, 27.982973 ], [ 85.960915, 27.935278 ], [ 86.065002, 27.908695 ], [ 86.127029, 27.938528 ], [ 86.07933, 28.012611 ], [ 86.079666, 28.100334 ], [ 86.167, 28.170139 ], [ 86.211746, 28.100027 ], [ 86.204002, 28.010666 ], [ 86.238556, 27.978001 ], [ 86.320251, 27.975973 ], [ 86.348663, 27.946472 ], [ 86.473946, 27.935055 ], [ 86.506721, 28.009916 ], [ 86.583443, 28.081139 ], [ 86.672607, 28.103027 ], [ 86.739586, 28.093611 ], [ 86.798225, 28.018944 ], [ 86.848305, 28.027945 ], [ 86.961334, 27.951 ], [ 87.023224, 27.952639 ], [ 87.14917, 27.861778 ], [ 87.178337, 27.819416 ], [ 87.270554, 27.842638 ], [ 87.344139, 27.82925 ], [ 87.404274, 27.850529 ], [ 87.463722, 27.822195 ], [ 87.591362, 27.860001 ], [ 87.613251, 27.810278 ], [ 87.695808, 27.843889 ], [ 87.795334, 27.812471 ], [ 87.918282, 27.81636 ], [ 87.999611, 27.916082 ], [ 88.088303, 27.870417 ], [ 88.135971, 27.879223 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "+8.5" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 128.361694, 38.601139 ], [ 128.336411, 38.599693 ], [ 128.2892, 38.434418 ], [ 128.137726, 38.328304 ], [ 128.046951, 38.305 ], [ 127.898247, 38.328529 ], [ 127.833473, 38.300415 ], [ 127.797165, 38.33614 ], [ 127.681862, 38.318974 ], [ 127.586082, 38.333111 ], [ 127.498917, 38.297806 ], [ 127.390526, 38.331944 ], [ 127.325584, 38.313915 ], [ 127.238747, 38.327278 ], [ 127.132332, 38.304943 ], [ 127.016586, 38.237415 ], [ 126.9645, 38.180527 ], [ 126.966888, 38.138943 ], [ 126.89225, 38.099194 ], [ 126.783997, 37.967945 ], [ 126.682861, 37.945332 ], [ 126.689247, 37.858944 ], [ 126.601028, 37.776554 ], [ 126.595833, 37.770054 ], [ 126.574448, 37.769501 ], [ 126.566528, 37.780251 ], [ 126.471863, 37.816029 ], [ 126.46228, 37.836666 ], [ 126.433334, 37.849583 ], [ 126.423027, 37.851665 ], [ 126.410858, 37.872639 ], [ 126.404419, 37.877609 ], [ 126.018282, 37.634485 ], [ 125.979938, 37.671367 ], [ 125.83197, 37.64381 ], [ 125.813846, 37.521876 ], [ 125.752907, 37.481931 ], [ 125.669603, 37.483625 ], [ 125.611184, 37.524519 ], [ 125.562824, 37.617105 ], [ 125.447008, 37.603175 ], [ 125.350085, 37.553647 ], [ 125.164454, 37.580635 ], [ 125.115858, 37.556873 ], [ 125.040911, 37.56422 ], [ 124.982879, 37.618696 ], [ 124.968698, 37.680429 ], [ 124.899464, 37.721936 ], [ 124.832187, 37.663785 ], [ 124.763653, 37.63712 ], [ 124.658481, 37.650079 ], [ 124.561771, 37.757073 ], [ 124.54645, 37.837914 ], [ 124.494563, 37.925622 ], [ 124.494381, 38.007807 ], [ 124.538472, 38.069402 ], [ 124.540495, 38.170723 ], [ 124.596412, 38.23934 ], [ 124.685697, 38.25721 ], [ 124.744669, 38.295303 ], [ 124.750092, 38.392533 ], [ 124.695545, 38.418118 ], [ 124.650381, 38.521594 ], [ 124.703498, 38.626549 ], [ 124.802049, 38.675744 ], [ 124.867923, 38.665429 ], [ 124.889875, 38.73446 ], [ 124.945583, 38.779521 ], [ 125.018677, 38.784983 ], [ 125.006964, 38.889177 ], [ 125.067108, 38.984261 ], [ 125.081879, 39.042771 ], [ 125.14072, 39.104686 ], [ 125.21411, 39.253329 ], [ 125.274107, 39.312432 ], [ 125.232018, 39.394942 ], [ 125.133744, 39.394733 ], [ 125.027299, 39.461873 ], [ 124.873273, 39.370802 ], [ 124.788918, 39.30282 ], [ 124.703786, 39.283977 ], [ 124.646311, 39.309974 ], [ 124.53058, 39.323569 ], [ 124.470294, 39.410965 ], [ 124.484595, 39.580906 ], [ 124.400143, 39.680353 ], [ 124.330796, 39.712128 ], [ 124.254862, 39.666921 ], [ 124.132185, 39.699269 ], [ 124.153305, 39.82925 ], [ 124.19722, 39.857971 ], [ 124.20372, 39.86311 ], [ 124.211945, 39.87986 ], [ 124.212776, 39.88525 ], [ 124.214668, 39.887939 ], [ 124.216217, 39.891499 ], [ 124.217758, 39.894459 ], [ 124.219139, 39.897224 ], [ 124.220398, 39.900627 ], [ 124.221863, 39.905304 ], [ 124.223106, 39.908108 ], [ 124.225311, 39.91151 ], [ 124.228317, 39.915436 ], [ 124.230019, 39.917778 ], [ 124.233475, 39.920029 ], [ 124.279114, 39.928471 ], [ 124.364693, 40.011864 ], [ 124.335587, 40.061382 ], [ 124.404984, 40.135014 ], [ 124.483849, 40.17535 ], [ 124.520767, 40.228188 ], [ 124.61438, 40.285976 ], [ 124.712753, 40.316158 ], [ 124.752907, 40.382431 ], [ 124.856216, 40.426933 ], [ 124.890533, 40.475712 ], [ 124.937218, 40.452698 ], [ 125.035728, 40.48737 ], [ 125.022789, 40.53347 ], [ 125.173927, 40.599434 ], [ 125.250793, 40.611893 ], [ 125.268257, 40.646332 ], [ 125.418671, 40.636124 ], [ 125.481468, 40.720909 ], [ 125.549103, 40.76136 ], [ 125.675453, 40.761406 ], [ 125.635246, 40.810547 ], [ 125.723663, 40.870331 ], [ 125.729713, 40.869514 ], [ 125.805962, 40.86187 ], [ 125.868729, 40.904045 ], [ 125.932159, 40.87648 ], [ 126.011673, 40.896267 ], [ 126.04892, 40.961819 ], [ 126.168083, 41.093102 ], [ 126.2771, 41.156357 ], [ 126.318977, 41.229786 ], [ 126.430344, 41.350136 ], [ 126.486427, 41.371231 ], [ 126.503319, 41.435841 ], [ 126.581467, 41.548485 ], [ 126.586212, 41.6147 ], [ 126.725227, 41.706844 ], [ 126.769623, 41.715752 ], [ 126.932487, 41.808651 ], [ 127.048576, 41.739723 ], [ 127.030899, 41.672707 ], [ 127.116287, 41.623199 ], [ 127.160431, 41.539845 ], [ 127.345238, 41.460449 ], [ 127.497307, 41.474804 ], [ 127.551987, 41.433983 ], [ 127.834328, 41.419209 ], [ 127.96582, 41.435398 ], [ 128.039001, 41.389145 ], [ 128.15036, 41.381813 ], [ 128.200348, 41.408081 ], [ 128.31131, 41.587612 ], [ 128.254013, 41.669182 ], [ 128.201675, 41.685024 ], [ 128.107697, 41.789333 ], [ 128.09848, 41.89703 ], [ 128.071136, 41.981953 ], [ 128.261826, 42.035316 ], [ 128.425659, 42.031723 ], [ 128.489258, 41.99736 ], [ 128.562347, 41.997597 ], [ 128.636261, 42.035645 ], [ 128.675659, 42.012344 ], [ 128.745789, 42.050262 ], [ 128.90773, 42.009056 ], [ 129.081024, 42.142479 ], [ 129.113937, 42.138912 ], [ 129.207916, 42.212318 ], [ 129.17659, 42.259029 ], [ 129.256363, 42.328979 ], [ 129.244446, 42.379066 ], [ 129.305328, 42.4193 ], [ 129.451706, 42.43737 ], [ 129.522354, 42.391396 ], [ 129.697296, 42.425964 ], [ 129.742783, 42.465633 ], [ 129.736145, 42.57283 ], [ 129.771088, 42.615578 ], [ 129.76236, 42.727535 ], [ 129.809235, 42.790848 ], [ 129.84938, 42.953259 ], [ 129.879257, 42.991837 ], [ 130.060303, 42.968071 ], [ 130.118729, 42.98716 ], [ 130.141876, 42.90292 ], [ 130.255371, 42.906986 ], [ 130.227386, 42.787758 ], [ 130.254379, 42.706047 ], [ 130.355499, 42.633751 ], [ 130.441101, 42.548157 ], [ 130.511353, 42.58123 ], [ 130.572144, 42.433475 ], [ 130.61261, 42.429436 ], [ 130.660034, 42.367554 ], [ 130.645035, 42.348305 ], [ 130.496499, 42.180325 ], [ 130.352617, 42.048375 ], [ 130.2596, 41.98901 ], [ 130.149155, 41.947545 ], [ 130.050986, 41.821318 ], [ 129.993838, 41.779037 ], [ 129.957301, 41.70565 ], [ 129.852029, 41.640262 ], [ 129.776795, 41.526149 ], [ 129.86533, 41.482418 ], [ 129.924793, 41.407579 ], [ 129.920979, 41.330378 ], [ 129.845949, 41.157416 ], [ 129.863693, 41.097769 ], [ 129.846057, 41.035656 ], [ 129.883198, 40.959675 ], [ 129.883947, 40.921721 ], [ 129.830005, 40.782755 ], [ 129.811615, 40.758246 ], [ 129.762719, 40.719898 ], [ 129.718094, 40.708137 ], [ 129.623914, 40.715005 ], [ 129.539681, 40.672225 ], [ 129.419898, 40.638253 ], [ 129.353172, 40.567259 ], [ 129.291811, 40.557078 ], [ 129.234675, 40.458632 ], [ 129.1301, 40.366433 ], [ 129.025729, 40.346901 ], [ 128.90886, 40.26405 ], [ 128.786272, 40.225474 ], [ 128.762819, 40.127865 ], [ 128.709478, 40.080187 ], [ 128.613874, 40.058855 ], [ 128.484962, 39.989154 ], [ 128.437018, 39.981221 ], [ 128.37224, 39.915192 ], [ 128.270357, 39.877638 ], [ 128.155818, 39.859941 ], [ 128.068498, 39.911299 ], [ 128.000779, 39.881776 ], [ 127.97852, 39.813053 ], [ 127.921743, 39.770243 ], [ 127.757002, 39.725165 ], [ 127.669626, 39.675187 ], [ 127.694178, 39.603072 ], [ 127.677852, 39.516179 ], [ 127.638373, 39.471068 ], [ 127.6812, 39.337471 ], [ 127.748766, 39.247789 ], [ 127.821669, 39.219557 ], [ 127.926117, 39.085205 ], [ 127.970116, 39.059044 ], [ 128.069463, 39.127121 ], [ 128.183461, 39.089216 ], [ 128.215234, 39.025373 ], [ 128.181887, 38.91904 ], [ 128.239326, 38.866462 ], [ 128.354566, 38.838512 ], [ 128.446066, 38.758195 ], [ 128.478916, 38.651522 ], [ 128.361694, 38.601139 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "+10" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 142.5, 89.0 ], [ 157.5, 89.0 ], [ 157.5, 71.176813 ], [ 157.351141, 71.189433 ], [ 157.018132, 71.19986 ], [ 156.919149, 71.210322 ], [ 156.576632, 71.1937 ], [ 156.175662, 71.203817 ], [ 155.882349, 71.198247 ], [ 155.627674, 71.175245 ], [ 155.537826, 71.180759 ], [ 155.348146, 71.151252 ], [ 155.134155, 71.150915 ], [ 154.974832, 71.127505 ], [ 154.348791, 71.072859 ], [ 154.072612, 71.035788 ], [ 153.811356, 70.982266 ], [ 153.590088, 70.990428 ], [ 153.125025, 70.959705 ], [ 152.990671, 70.942797 ], [ 152.710808, 70.946433 ], [ 152.569287, 70.940924 ], [ 152.410345, 70.959281 ], [ 152.351753, 71.021932 ], [ 152.238911, 71.059449 ], [ 152.179038, 71.111824 ], [ 151.9466, 71.230868 ], [ 151.859677, 71.345573 ], [ 151.783688, 71.380521 ], [ 151.539104, 71.447069 ], [ 151.426684, 71.486344 ], [ 151.404607, 71.552689 ], [ 151.324013, 71.633184 ], [ 151.261019, 71.666368 ], [ 151.097335, 71.676111 ], [ 151.027772, 71.641218 ], [ 151.001337, 71.595629 ], [ 150.901616, 71.584049 ], [ 150.865922, 71.612131 ], [ 150.739904, 71.616959 ], [ 150.658379, 71.665643 ], [ 150.471663, 71.677347 ], [ 150.404243, 71.706022 ], [ 150.237409, 71.722514 ], [ 150.18849, 71.750387 ], [ 150.226373, 71.867589 ], [ 150.194285, 71.963276 ], [ 150.108365, 72.055639 ], [ 149.994734, 72.128353 ], [ 149.863822, 72.183066 ], [ 149.610601, 72.265944 ], [ 149.369543, 72.31822 ], [ 149.216577, 72.342516 ], [ 148.806674, 72.386741 ], [ 148.546368, 72.431527 ], [ 148.137584, 72.446514 ], [ 148.01101, 72.437397 ], [ 147.619358, 72.450636 ], [ 147.525251, 72.447219 ], [ 147.388789, 72.318422 ], [ 146.879345, 72.167424 ], [ 146.345372, 72.164866 ], [ 145.790295, 72.158471 ], [ 145.191094, 72.198119 ], [ 144.530218, 72.052679 ], [ 144.103134, 72.110365 ], [ 143.985921, 72.134023 ], [ 143.772201, 72.151691 ], [ 143.689899, 72.099357 ], [ 143.539354, 72.078265 ], [ 143.464173, 71.99114 ], [ 143.523631, 71.953323 ], [ 143.330719, 71.87312 ], [ 142.753295, 71.546528 ], [ 142.648004, 71.466138 ], [ 142.581769, 71.378071 ], [ 142.529796, 71.269824 ], [ 142.639334, 71.163191 ], [ 142.63792, 71.053891 ], [ 142.43407, 71.002233 ], [ 142.346226, 70.901532 ], [ 142.034576, 70.846063 ], [ 141.901735, 70.747295 ], [ 141.73875, 70.603667 ], [ 141.514684, 70.480808 ], [ 141.274598, 70.361395 ], [ 141.073153, 70.276243 ], [ 140.919848, 70.132569 ], [ 140.919788, 70.007504 ], [ 141.087417, 69.948381 ], [ 141.377159, 69.97314 ], [ 141.384803, 69.921508 ], [ 141.562381, 69.843119 ], [ 141.774767, 69.782595 ], [ 142.150372, 69.854924 ], [ 142.340194, 69.823093 ], [ 142.193037, 69.727689 ], [ 142.086129, 69.599118 ], [ 142.231957, 69.559784 ], [ 142.405403, 69.547434 ], [ 142.442057, 69.472409 ], [ 142.59624, 69.422391 ], [ 142.783087, 69.203637 ], [ 142.550443, 69.195063 ], [ 142.373609, 69.242824 ], [ 142.137188, 69.217989 ], [ 142.053369, 69.252594 ], [ 141.870727, 69.21673 ], [ 141.701652, 69.243774 ], [ 141.526702, 69.155933 ], [ 141.56151, 69.106601 ], [ 141.696318, 69.018521 ], [ 141.740925, 68.891978 ], [ 141.957754, 68.827533 ], [ 141.91151, 68.745241 ], [ 141.95784, 68.63441 ], [ 141.720504, 68.493724 ], [ 141.557125, 68.479344 ], [ 141.379997, 68.442403 ], [ 141.205806, 68.446577 ], [ 141.027485, 68.351617 ], [ 141.100963, 68.244003 ], [ 141.247333, 68.179276 ], [ 141.158039, 68.03984 ], [ 141.162779, 67.972425 ], [ 141.266171, 67.924172 ], [ 141.266497, 67.88227 ], [ 140.922134, 67.850177 ], [ 140.538654, 67.791886 ], [ 140.172501, 67.714009 ], [ 139.873376, 67.588343 ], [ 139.500492, 67.486566 ], [ 138.903103, 67.242709 ], [ 139.02155, 67.160664 ], [ 139.160861, 67.123077 ], [ 139.248996, 67.038187 ], [ 139.411027, 66.987238 ], [ 139.547717, 66.875229 ], [ 139.6794, 66.821402 ], [ 139.813294, 66.825194 ], [ 139.953975, 66.760886 ], [ 139.99564, 66.702151 ], [ 140.264092, 66.609542 ], [ 140.450357, 66.608116 ], [ 140.419603, 66.515746 ], [ 140.425956, 66.44834 ], [ 140.228312, 66.443628 ], [ 139.978639, 66.458513 ], [ 139.747432, 66.386279 ], [ 139.618261, 66.267038 ], [ 139.682059, 66.153237 ], [ 139.776681, 66.131927 ], [ 139.810777, 66.082911 ], [ 139.923461, 66.074372 ], [ 139.919517, 65.98445 ], [ 140.050904, 65.887836 ], [ 140.205788, 65.810599 ], [ 139.862306, 65.840547 ], [ 139.612136, 65.823881 ], [ 139.281962, 65.938621 ], [ 139.124645, 65.97365 ], [ 138.676978, 65.917143 ], [ 138.423948, 65.939393 ], [ 138.24214, 65.986649 ], [ 137.897518, 66.019514 ], [ 137.731061, 66.063455 ], [ 137.579768, 66.054624 ], [ 137.41995, 66.10387 ], [ 137.122313, 66.157402 ], [ 136.516847, 66.15926 ], [ 136.305976, 66.121016 ], [ 136.128501, 66.06027 ], [ 136.023028, 66.089025 ], [ 135.966981, 66.027779 ], [ 135.927855, 65.947505 ], [ 135.712921, 65.854122 ], [ 135.644748, 65.811862 ], [ 135.459905, 65.840257 ], [ 135.310014, 65.765391 ], [ 135.160739, 65.706838 ], [ 134.9539, 65.69918 ], [ 134.824576, 65.740373 ], [ 134.726526, 65.639901 ], [ 134.602659, 65.584138 ], [ 134.55951, 65.512996 ], [ 134.347512, 65.379239 ], [ 134.207725, 65.39023 ], [ 134.017387, 65.307476 ], [ 133.596418, 65.188888 ], [ 133.31975, 65.216887 ], [ 133.142864, 65.139064 ], [ 132.867015, 65.095383 ], [ 132.822234, 65.017358 ], [ 132.81108, 64.917101 ], [ 132.881699, 64.825743 ], [ 133.067769, 64.627422 ], [ 132.881514, 64.574949 ], [ 132.697739, 64.578033 ], [ 132.401259, 64.615757 ], [ 132.246157, 64.628405 ], [ 132.223321, 64.679243 ], [ 132.293155, 64.783971 ], [ 132.259136, 64.86056 ], [ 132.131183, 64.952994 ], [ 132.082449, 65.071059 ], [ 131.948134, 65.180245 ], [ 131.815948, 65.366707 ], [ 131.634517, 65.429069 ], [ 131.563379, 65.565517 ], [ 131.607802, 65.627442 ], [ 131.60505, 65.737027 ], [ 131.413688, 65.776684 ], [ 131.227801, 65.799902 ], [ 130.953574, 65.968773 ], [ 130.672128, 66.014118 ], [ 130.453792, 66.087512 ], [ 130.291406, 66.159256 ], [ 130.10755, 66.226471 ], [ 130.071022, 66.347795 ], [ 130.078261, 66.454039 ], [ 130.04377, 66.49224 ], [ 130.407675, 66.612656 ], [ 131.867842, 67.027176 ], [ 132.565517, 67.500679 ], [ 133.104497, 67.959625 ], [ 133.141182, 68.417573 ], [ 132.717985, 68.88476 ], [ 132.246714, 69.034554 ], [ 132.372307, 69.103578 ], [ 132.621727, 69.182891 ], [ 132.539143, 69.257652 ], [ 132.886797, 69.377373 ], [ 132.91091, 69.482882 ], [ 133.0128, 69.530372 ], [ 133.193464, 69.564987 ], [ 133.193545, 69.635861 ], [ 133.508588, 69.649651 ], [ 133.518039, 69.72694 ], [ 133.386662, 69.731813 ], [ 133.159351, 69.836767 ], [ 133.171909, 69.952721 ], [ 132.954588, 70.016993 ], [ 133.102564, 70.112581 ], [ 133.249307, 70.223843 ], [ 133.098487, 70.340328 ], [ 132.577194, 70.369935 ], [ 132.11574, 70.412448 ], [ 132.092401, 70.556514 ], [ 132.032469, 70.767589 ], [ 132.184218, 70.868934 ], [ 132.184217725472735, 70.868934038939969 ], [ 131.733687, 70.932839 ], [ 131.655876, 71.078339 ], [ 131.666519, 71.183757 ], [ 131.719619, 71.236306 ], [ 131.783692, 71.259244 ], [ 131.927885, 71.37055 ], [ 131.974263, 71.491383 ], [ 132.162819, 71.722499 ], [ 132.280554, 71.821844 ], [ 132.499791, 71.97369 ], [ 132.690298, 72.05574 ], [ 132.873383, 72.062727 ], [ 133.01369, 72.08533 ], [ 133.197457, 72.076279 ], [ 133.377106, 71.994954 ], [ 133.435022, 71.95395 ], [ 133.48013, 71.863053 ], [ 133.464159, 71.790012 ], [ 133.400844, 71.734845 ], [ 133.271526, 71.74465 ], [ 133.229888, 71.781032 ], [ 133.127144, 71.774336 ], [ 133.25867, 71.687131 ], [ 133.574307, 71.58114 ], [ 133.786571, 71.537119 ], [ 134.086146, 71.496857 ], [ 134.355126, 71.478868 ], [ 134.485677, 71.481721 ], [ 134.676837, 71.510547 ], [ 134.730135, 71.541245 ], [ 134.987257, 71.625301 ], [ 135.0, 78.0 ], [ 142.5, 78.0 ], [ 142.5, 89.0 ] ] ], [ [ [ 130.660034, 42.367554 ], [ 130.61261, 42.429436 ], [ 130.561218, 42.535446 ], [ 130.600494, 42.549084 ], [ 130.623032, 42.622665 ], [ 130.530579, 42.697556 ], [ 130.459671, 42.679474 ], [ 130.405136, 42.722305 ], [ 130.544327, 42.807693 ], [ 130.684326, 42.843861 ], [ 130.771332, 42.829639 ], [ 130.789169, 42.864334 ], [ 131.0, 42.85289 ], [ 131.010162, 42.916668 ], [ 131.126587, 42.930527 ], [ 131.096588, 43.020416 ], [ 131.115524, 43.063862 ], [ 131.20433, 43.143196 ], [ 131.189896, 43.20089 ], [ 131.259048, 43.288387 ], [ 131.265884, 43.363804 ], [ 131.305756, 43.392723 ], [ 131.300888, 43.455917 ], [ 131.200577, 43.518471 ], [ 131.2285, 43.59861 ], [ 131.205383, 43.773361 ], [ 131.250473, 44.018639 ], [ 131.293106, 44.079693 ], [ 131.102661, 44.691555 ], [ 131.066803, 44.741638 ], [ 130.962997, 44.817612 ], [ 130.954224, 44.854168 ], [ 131.083939, 44.889751 ], [ 131.137939, 44.937054 ], [ 131.204865, 44.913082 ], [ 131.27095, 44.922359 ], [ 131.344254, 44.981888 ], [ 131.469864, 44.959473 ], [ 131.686752, 45.114193 ], [ 131.646469, 45.155972 ], [ 131.678192, 45.216946 ], [ 131.764496, 45.209583 ], [ 131.826782, 45.308723 ], [ 131.909134, 45.330055 ], [ 131.932526, 45.279888 ], [ 131.999863, 45.248917 ], [ 132.859695, 45.053944 ], [ 132.942001, 45.013363 ], [ 133.02858, 45.052834 ], [ 133.135559, 45.12711 ], [ 133.093857, 45.287582 ], [ 133.138275, 45.364223 ], [ 133.129639, 45.411724 ], [ 133.215134, 45.509167 ], [ 133.31778, 45.493168 ], [ 133.342117, 45.547943 ], [ 133.476105, 45.654415 ], [ 133.443695, 45.695972 ], [ 133.463882, 45.828972 ], [ 133.521088, 45.892277 ], [ 133.570892, 45.868111 ], [ 133.656891, 45.937695 ], [ 133.734451, 46.047359 ], [ 133.700104, 46.157806 ], [ 133.849396, 46.201084 ], [ 133.908493, 46.271584 ], [ 133.878525, 46.355473 ], [ 133.942108, 46.393391 ], [ 133.869949, 46.44389 ], [ 133.858887, 46.490749 ], [ 133.912994, 46.581444 ], [ 134.014725, 46.654362 ], [ 134.049225, 46.774055 ], [ 134.020752, 46.822277 ], [ 134.134583, 47.087833 ], [ 134.221451, 47.11861 ], [ 134.22261, 47.180695 ], [ 134.149078, 47.259529 ], [ 134.186996, 47.330944 ], [ 134.334061, 47.436359 ], [ 134.49353, 47.443806 ], [ 134.66983, 47.583832 ], [ 134.677979, 47.630695 ], [ 134.753281, 47.678638 ], [ 134.771561, 47.753445 ], [ 134.675522, 47.822613 ], [ 134.663971, 47.879307 ], [ 134.581085, 47.917889 ], [ 134.550552, 48.024387 ], [ 134.671082, 48.164249 ], [ 134.668579, 48.228889 ], [ 134.575424, 48.363224 ], [ 134.483246, 48.351776 ], [ 134.389282, 48.385693 ], [ 134.261688, 48.37075 ], [ 134.123337, 48.334972 ], [ 134.057693, 48.335388 ], [ 134.004715, 48.276554 ], [ 133.895966, 48.261391 ], [ 133.870087, 48.186501 ], [ 133.800446, 48.19978 ], [ 133.554749, 48.117138 ], [ 133.46817, 48.067612 ], [ 133.354996, 48.103748 ], [ 133.288773, 48.08839 ], [ 133.160309, 48.105694 ], [ 133.031281, 48.056446 ], [ 133.007919, 48.018196 ], [ 132.876587, 48.0 ], [ 132.786026, 47.927166 ], [ 132.691467, 47.953609 ], [ 132.666199, 47.885056 ], [ 132.599976, 47.802971 ], [ 132.595718, 47.743137 ], [ 132.504837, 47.71125 ], [ 132.37558, 47.753887 ], [ 132.317978, 47.751583 ], [ 132.245087, 47.705166 ], [ 132.088257, 47.696888 ], [ 131.999527, 47.705387 ], [ 131.948364, 47.665195 ], [ 131.803726, 47.669693 ], [ 131.682449, 47.706165 ], [ 131.644089, 47.66761 ], [ 131.579559, 47.660641 ], [ 131.501007, 47.727749 ], [ 131.25322, 47.733749 ], [ 131.095642, 47.681332 ], [ 131.002808, 47.690166 ], [ 130.954193, 47.720276 ], [ 130.952164, 47.818501 ], [ 130.863937, 47.93211 ], [ 130.684616, 48.039165 ], [ 130.652054, 48.109333 ], [ 130.750336, 48.189194 ], [ 130.751007, 48.223694 ], [ 130.825531, 48.300083 ], [ 130.765884, 48.355 ], [ 130.728867, 48.431526 ], [ 130.740494, 48.504417 ], [ 130.619888, 48.486084 ], [ 130.589478, 48.591915 ], [ 130.525421, 48.638527 ], [ 130.636673, 48.814251 ], [ 130.626358, 48.877632 ], [ 130.67746, 48.926941 ], [ 130.856628, 48.987495 ], [ 130.974396, 48.964714 ], [ 131.004974, 49.05027 ], [ 131.131073, 49.180275 ], [ 131.16748, 49.247215 ], [ 131.258026, 49.263329 ], [ 131.302765, 49.232208 ], [ 131.397766, 49.248878 ], [ 131.501099, 49.414154 ], [ 131.495239, 49.61721 ], [ 131.356079, 49.687767 ], [ 131.371063, 49.724991 ], [ 131.484406, 49.731102 ], [ 131.483032, 49.944153 ], [ 131.371063, 49.982491 ], [ 131.300812, 50.061935 ], [ 131.370789, 50.08638 ], [ 131.444702, 50.187492 ], [ 131.327759, 50.260826 ], [ 131.304688, 50.369438 ], [ 131.183319, 50.328049 ], [ 131.126892, 50.434563 ], [ 131.026428, 50.415169 ], [ 130.988403, 50.381027 ], [ 130.872742, 50.481377 ], [ 130.949402, 50.504715 ], [ 131.014709, 50.572769 ], [ 130.961914, 50.649437 ], [ 130.796936, 50.651382 ], [ 130.741058, 50.607773 ], [ 130.646088, 50.651932 ], [ 130.679138, 50.724434 ], [ 130.799408, 50.866104 ], [ 130.814148, 51.021103 ], [ 130.93219, 51.028328 ], [ 131.044434, 51.184433 ], [ 131.060791, 51.243881 ], [ 131.169128, 51.24749 ], [ 131.289429, 51.364441 ], [ 131.375793, 51.377769 ], [ 131.489136, 51.34388 ], [ 131.507477, 51.38221 ], [ 131.486084, 51.476936 ], [ 131.412201, 51.539993 ], [ 131.393585, 51.611938 ], [ 131.427765, 51.690826 ], [ 131.595795, 51.666939 ], [ 131.746613, 51.683327 ], [ 131.857452, 51.756943 ], [ 131.971069, 51.736656 ], [ 132.063873, 51.800827 ], [ 132.219116, 51.820274 ], [ 132.281097, 51.790276 ], [ 132.424683, 51.859436 ], [ 132.394989, 51.954712 ], [ 132.519135, 51.951385 ], [ 132.540802, 52.04277 ], [ 132.591064, 52.085266 ], [ 132.777466, 52.12999 ], [ 132.833862, 52.181381 ], [ 132.928864, 52.149719 ], [ 133.058594, 52.172768 ], [ 133.183594, 52.163048 ], [ 133.305817, 52.189713 ], [ 133.436371, 52.263611 ], [ 133.42276, 52.303879 ], [ 133.336639, 52.334717 ], [ 133.323303, 52.412491 ], [ 133.258881, 52.437767 ], [ 133.286926, 52.528046 ], [ 133.236084, 52.560547 ], [ 133.237457, 52.63221 ], [ 133.274994, 52.6661 ], [ 133.359406, 52.685265 ], [ 133.414429, 52.654434 ], [ 133.627167, 52.596382 ], [ 133.647766, 52.575554 ], [ 133.847473, 52.548882 ], [ 133.858307, 52.524437 ], [ 134.002472, 52.540833 ], [ 134.126068, 52.476654 ], [ 134.22525, 52.489159 ], [ 134.313873, 52.458885 ], [ 134.464691, 52.452217 ], [ 134.544708, 52.418602 ], [ 134.620239, 52.416939 ], [ 134.66275, 52.459717 ], [ 134.616058, 52.504997 ], [ 134.646637, 52.568054 ], [ 134.792206, 52.653046 ], [ 134.757202, 52.714157 ], [ 134.664154, 52.714439 ], [ 134.625793, 52.855553 ], [ 134.653595, 52.921936 ], [ 134.798584, 53.060272 ], [ 134.859955, 53.193878 ], [ 134.943573, 53.214439 ], [ 134.96109, 53.262497 ], [ 134.899719, 53.316101 ], [ 134.8172, 53.329437 ], [ 134.828857, 53.383606 ], [ 134.911652, 53.36805 ], [ 134.916656, 53.427773 ], [ 134.747742, 53.481102 ], [ 134.74939, 53.539719 ], [ 134.63858, 53.595268 ], [ 134.546936, 53.621101 ], [ 134.448303, 53.595543 ], [ 134.453583, 53.538048 ], [ 134.223297, 53.520828 ], [ 134.199707, 53.467766 ], [ 134.006378, 53.432495 ], [ 133.803589, 53.489159 ], [ 133.723022, 53.46666 ], [ 133.641083, 53.543327 ], [ 133.564148, 53.54583 ], [ 133.531921, 53.496101 ], [ 133.470795, 53.513054 ], [ 133.395538, 53.474159 ], [ 133.313599, 53.469986 ], [ 133.209412, 53.421661 ], [ 133.152771, 53.288887 ], [ 133.106354, 53.306381 ], [ 133.023865, 53.283051 ], [ 132.928589, 53.282768 ], [ 132.901367, 53.233879 ], [ 132.698578, 53.240547 ], [ 132.647491, 53.260551 ], [ 132.589691, 53.223602 ], [ 132.442749, 53.226654 ], [ 132.391937, 53.248047 ], [ 132.064972, 53.200546 ], [ 132.001923, 53.132492 ], [ 131.897491, 53.124992 ], [ 131.835785, 53.161659 ], [ 131.861359, 53.233879 ], [ 131.784698, 53.244438 ], [ 131.510529, 53.204437 ], [ 131.534149, 53.314438 ], [ 131.46637, 53.514999 ], [ 131.499695, 53.556381 ], [ 131.426361, 53.756943 ], [ 131.320251, 53.783333 ], [ 131.268585, 53.776657 ], [ 131.107178, 53.812767 ], [ 131.009705, 53.811661 ], [ 130.924988, 53.762772 ], [ 130.852448, 53.787216 ], [ 130.822479, 53.839432 ], [ 130.74469, 53.839989 ], [ 130.651367, 53.889992 ], [ 130.568848, 53.876938 ], [ 130.521912, 53.899719 ], [ 130.433868, 53.884438 ], [ 130.39859, 53.940544 ], [ 130.468018, 53.966934 ], [ 130.506073, 54.120544 ], [ 130.727448, 54.258331 ], [ 130.830811, 54.279716 ], [ 130.927185, 54.327492 ], [ 131.05191, 54.281662 ], [ 131.113281, 54.316101 ], [ 131.208862, 54.491379 ], [ 131.224121, 54.551102 ], [ 131.187469, 54.605553 ], [ 131.274689, 54.635269 ], [ 131.38916, 54.719711 ], [ 131.567474, 54.727211 ], [ 131.59024, 54.766388 ], [ 131.767212, 54.794716 ], [ 131.786926, 54.840828 ], [ 131.888031, 54.856384 ], [ 131.98941, 54.897217 ], [ 131.955231, 54.986938 ], [ 132.076355, 55.05027 ], [ 132.264984, 55.039436 ], [ 132.404968, 55.073051 ], [ 132.34024, 55.158043 ], [ 132.398865, 55.2061 ], [ 132.591064, 55.195541 ], [ 132.691345, 55.275826 ], [ 132.657745, 55.322769 ], [ 132.681366, 55.369438 ], [ 132.741333, 55.345825 ], [ 132.91748, 55.359718 ], [ 132.868439, 55.415504 ], [ 132.760803, 55.417213 ], [ 132.642761, 55.490273 ], [ 132.663025, 55.560822 ], [ 132.554962, 55.637497 ], [ 132.542206, 55.678604 ], [ 132.395264, 55.706383 ], [ 132.295807, 55.694992 ], [ 132.224976, 55.70916 ], [ 132.117462, 55.635269 ], [ 131.96109, 55.658325 ], [ 131.816925, 55.61277 ], [ 131.758331, 55.644997 ], [ 131.611908, 55.658325 ], [ 131.573303, 55.609161 ], [ 131.411652, 55.64138 ], [ 131.307465, 55.615547 ], [ 131.180817, 55.643883 ], [ 131.103302, 55.612495 ], [ 130.923035, 55.677773 ], [ 130.919983, 55.770828 ], [ 130.866364, 55.814995 ], [ 130.858307, 55.898605 ], [ 130.927185, 55.943047 ], [ 130.915253, 55.996941 ], [ 130.976349, 56.07666 ], [ 130.981628, 56.14888 ], [ 131.093018, 56.205551 ], [ 131.121338, 56.26194 ], [ 131.085785, 56.3461 ], [ 131.184143, 56.468323 ], [ 131.317749, 56.497772 ], [ 131.39386, 56.467491 ], [ 131.434967, 56.524437 ], [ 131.49939, 56.55027 ], [ 131.646637, 56.468048 ], [ 131.674408, 56.551102 ], [ 131.669983, 56.654991 ], [ 131.721619, 56.673882 ], [ 131.800537, 56.745544 ], [ 131.753876, 56.844154 ], [ 131.654694, 56.876656 ], [ 131.64859, 56.909157 ], [ 131.55304, 56.947487 ], [ 131.443024, 57.033607 ], [ 131.474976, 57.07972 ], [ 131.238007, 57.162766 ], [ 131.210236, 57.13221 ], [ 131.111084, 57.222488 ], [ 131.184143, 57.234993 ], [ 131.25885, 57.30777 ], [ 131.34552, 57.249435 ], [ 131.510925, 57.243935 ], [ 131.502197, 57.283607 ], [ 131.600525, 57.296387 ], [ 131.566925, 57.353607 ], [ 131.594696, 57.438881 ], [ 131.728027, 57.498604 ], [ 131.762756, 57.55555 ], [ 131.832184, 57.588043 ], [ 131.967743, 57.580551 ], [ 131.958862, 57.62471 ], [ 132.043854, 57.643608 ], [ 132.042206, 57.681938 ], [ 131.890259, 57.809433 ], [ 131.821899, 57.8386 ], [ 131.785797, 57.92749 ], [ 131.735229, 57.927773 ], [ 131.609406, 57.995544 ], [ 131.624115, 58.067497 ], [ 131.548859, 58.079163 ], [ 131.460236, 58.163322 ], [ 131.539429, 58.179436 ], [ 131.723297, 58.170273 ], [ 131.748566, 58.13221 ], [ 131.847473, 58.12249 ], [ 132.046082, 58.016106 ], [ 132.11441, 58.077492 ], [ 132.002472, 58.114998 ], [ 132.045807, 58.204163 ], [ 132.108582, 58.251938 ], [ 132.19635, 58.237213 ], [ 132.212738, 58.346382 ], [ 132.12384, 58.483047 ], [ 132.382721, 58.503609 ], [ 132.413879, 58.560272 ], [ 132.484955, 58.611382 ], [ 132.572479, 58.756386 ], [ 132.539154, 58.802773 ], [ 132.549408, 58.812767 ], [ 132.591644, 58.888603 ], [ 132.703583, 58.89666 ], [ 132.810516, 58.875549 ], [ 132.813873, 59.013329 ], [ 133.103577, 59.204994 ], [ 133.19635, 59.196098 ], [ 133.314148, 59.218597 ], [ 133.437744, 59.277771 ], [ 133.538574, 59.29583 ], [ 133.608582, 59.282494 ], [ 133.613007, 59.23333 ], [ 133.807465, 59.224159 ], [ 133.859955, 59.245544 ], [ 134.023315, 59.257217 ], [ 134.104675, 59.247772 ], [ 134.218292, 59.208603 ], [ 134.392487, 59.195541 ], [ 134.525543, 59.144157 ], [ 134.544434, 59.179993 ], [ 134.673859, 59.19249 ], [ 134.748291, 59.151657 ], [ 134.855804, 59.123878 ], [ 134.923584, 59.151382 ], [ 135.072205, 59.137772 ], [ 135.113281, 59.11055 ], [ 135.209961, 59.121658 ], [ 135.268311, 59.179436 ], [ 135.258331, 59.219986 ], [ 135.322754, 59.2686 ], [ 135.421082, 59.387772 ], [ 135.571075, 59.45166 ], [ 135.611908, 59.494156 ], [ 135.75415, 59.530548 ], [ 135.852173, 59.53138 ], [ 135.938873, 59.478043 ], [ 136.005249, 59.48555 ], [ 136.090515, 59.42083 ], [ 136.214417, 59.408043 ], [ 136.321075, 59.430824 ], [ 136.375793, 59.391663 ], [ 136.446625, 59.396942 ], [ 136.539429, 59.374992 ], [ 136.617462, 59.38221 ], [ 136.661652, 59.344994 ], [ 136.771362, 59.353882 ], [ 136.84079, 59.4011 ], [ 136.963013, 59.430275 ], [ 137.048035, 59.425552 ], [ 137.105804, 59.453323 ], [ 137.188873, 59.440269 ], [ 137.352448, 59.553879 ], [ 137.454956, 59.546944 ], [ 137.443024, 59.64444 ], [ 137.596924, 59.737213 ], [ 137.833038, 59.761383 ], [ 137.899994, 59.744713 ], [ 138.012482, 59.792221 ], [ 138.04303, 59.683601 ], [ 138.178589, 59.678047 ], [ 138.207733, 59.74749 ], [ 138.19693, 59.896942 ], [ 138.286652, 59.948044 ], [ 138.244415, 59.98082 ], [ 138.208313, 60.109161 ], [ 138.241333, 60.181664 ], [ 138.199402, 60.231102 ], [ 138.227753, 60.2761 ], [ 138.319427, 60.315544 ], [ 138.327179, 60.40638 ], [ 138.244965, 60.498878 ], [ 138.338287, 60.537498 ], [ 138.33136, 60.594994 ], [ 138.4086, 60.609718 ], [ 138.438873, 60.680275 ], [ 138.361908, 60.724991 ], [ 138.206085, 60.851387 ], [ 138.179962, 60.885826 ], [ 138.228302, 60.969986 ], [ 138.311096, 60.976097 ], [ 138.344971, 61.039993 ], [ 138.295807, 61.11277 ], [ 138.396942, 61.099434 ], [ 138.464966, 61.135551 ], [ 138.552185, 61.138046 ], [ 138.641083, 61.17749 ], [ 138.641357, 61.276657 ], [ 138.732727, 61.344437 ], [ 138.774994, 61.314156 ], [ 138.839691, 61.3386 ], [ 138.921631, 61.316383 ], [ 139.069122, 61.399994 ], [ 139.107452, 61.449997 ], [ 139.247742, 61.432495 ], [ 139.433533, 61.493179 ], [ 139.545532, 61.477768 ], [ 139.646637, 61.563881 ], [ 139.666077, 61.643883 ], [ 139.726898, 61.669991 ], [ 139.924133, 61.803047 ], [ 139.981903, 61.869438 ], [ 139.949982, 61.907768 ], [ 139.989136, 61.975822 ], [ 140.101074, 61.969711 ], [ 140.168854, 62.022217 ], [ 140.257751, 62.033333 ], [ 140.245514, 62.091103 ], [ 140.303589, 62.119438 ], [ 140.303864, 62.286385 ], [ 140.334137, 62.373604 ], [ 140.286682, 62.51056 ], [ 140.148311, 62.546553 ], [ 140.05099, 62.629401 ], [ 139.894018, 62.677839 ], [ 139.727864, 62.794727 ], [ 139.596374, 62.910486 ], [ 139.54764, 63.045639 ], [ 139.567964, 63.164305 ], [ 139.715639, 63.367111 ], [ 140.124438, 63.520561 ], [ 140.316996, 63.538813 ], [ 140.509372, 63.539808 ], [ 140.631303, 63.616492 ], [ 140.635053, 63.690621 ], [ 140.50491, 63.748819 ], [ 140.586538, 63.852202 ], [ 140.619968, 63.97678 ], [ 140.533866, 64.156539 ], [ 140.264981, 64.214915 ], [ 140.248681, 64.31815 ], [ 140.044306, 64.384238 ], [ 140.19255, 64.464393 ], [ 140.371233, 64.537187 ], [ 140.087181, 64.630473 ], [ 139.822886, 64.72702 ], [ 139.565068, 64.829265 ], [ 139.427325, 64.960067 ], [ 139.514744, 65.112639 ], [ 139.609981, 65.255486 ], [ 139.799931, 65.39275 ], [ 140.035195, 65.502646 ], [ 140.43263, 65.524948 ], [ 140.572582, 65.576033 ], [ 140.819371, 65.59248 ], [ 140.954501, 65.501231 ], [ 141.311203, 65.423812 ], [ 141.609988, 65.375097 ], [ 141.960284, 65.38864 ], [ 142.281832, 65.316043 ], [ 142.587704, 65.272145 ], [ 143.097309, 65.174397 ], [ 143.319399, 65.183792 ], [ 143.5246, 65.104406 ], [ 143.862693, 64.962635 ], [ 144.162817, 64.957769 ], [ 144.269402, 64.94635 ], [ 144.419134, 64.896768 ], [ 144.558419, 64.788866 ], [ 144.590413, 64.668221 ], [ 144.756807, 64.578315 ], [ 144.879289, 64.525875 ], [ 145.358934, 64.441418 ], [ 145.684908, 64.451083 ], [ 145.92056, 64.382017 ], [ 146.167016, 64.229904 ], [ 146.322479, 64.121643 ], [ 146.40802, 64.212769 ], [ 146.493835, 64.210266 ], [ 146.760529, 64.165268 ], [ 146.852753, 64.166931 ], [ 147.039703, 64.13472 ], [ 147.216644, 64.0522 ], [ 147.34079, 64.08638 ], [ 147.297485, 64.129974 ], [ 147.584137, 64.170822 ], [ 147.628845, 64.169708 ], [ 147.599701, 64.045822 ], [ 147.666382, 64.012772 ], [ 147.738556, 64.023315 ], [ 147.800812, 63.943321 ], [ 147.876617, 63.979431 ], [ 147.959412, 63.943878 ], [ 148.033875, 64.007492 ], [ 148.122192, 64.054977 ], [ 148.125519, 64.113037 ], [ 148.185791, 64.168594 ], [ 148.231628, 64.173599 ], [ 148.254974, 64.255829 ], [ 148.033875, 64.34166 ], [ 148.05719, 64.400818 ], [ 148.025818, 64.440811 ], [ 148.162201, 64.457214 ], [ 148.191071, 64.496933 ], [ 148.30246, 64.557755 ], [ 148.42804, 64.530273 ], [ 148.49884, 64.468872 ], [ 148.611633, 64.413605 ], [ 148.719971, 64.431656 ], [ 148.792755, 64.423874 ], [ 149.096924, 64.444427 ], [ 149.147217, 64.411926 ], [ 149.253601, 64.415817 ], [ 149.280273, 64.454163 ], [ 149.429688, 64.433868 ], [ 149.623566, 64.538879 ], [ 149.823578, 64.568054 ], [ 150.069702, 64.502213 ], [ 150.095795, 64.463318 ], [ 150.022766, 64.369705 ], [ 150.046936, 64.330551 ], [ 150.213013, 64.212769 ], [ 150.342743, 64.211655 ], [ 150.486908, 64.175812 ], [ 150.628845, 64.165543 ], [ 150.613007, 64.226089 ], [ 150.647491, 64.257767 ], [ 150.643585, 64.339706 ], [ 150.955536, 64.329987 ], [ 151.1633, 64.378586 ], [ 151.241913, 64.353592 ], [ 151.328583, 64.353043 ], [ 151.393311, 64.291656 ], [ 151.44693, 64.421371 ], [ 151.925262, 64.482483 ], [ 152.037476, 64.505829 ], [ 152.094696, 64.486374 ], [ 152.136383, 64.429428 ], [ 152.154144, 64.353043 ], [ 152.301636, 64.388321 ], [ 152.399994, 64.392212 ], [ 152.332733, 64.529434 ], [ 152.407196, 64.541931 ], [ 152.54303, 64.607758 ], [ 152.743286, 64.673599 ], [ 152.677185, 64.781097 ], [ 152.548309, 64.817215 ], [ 152.55246, 64.889435 ], [ 152.51416, 64.961929 ], [ 152.624115, 65.008041 ], [ 152.660248, 65.074432 ], [ 152.609406, 65.107758 ], [ 152.608582, 65.162201 ], [ 152.683594, 65.195251 ], [ 152.70636, 65.241928 ], [ 152.791656, 65.231934 ], [ 152.849121, 65.258606 ], [ 152.91748, 65.251099 ], [ 153.031372, 65.275269 ], [ 153.115509, 65.268051 ], [ 153.154968, 65.300262 ], [ 153.375793, 65.35582 ], [ 153.463013, 65.359985 ], [ 153.511383, 65.433044 ], [ 153.426086, 65.463608 ], [ 153.392212, 65.505554 ], [ 153.508606, 65.622482 ], [ 153.534149, 65.7061 ], [ 153.470795, 65.741928 ], [ 153.453857, 65.79332 ], [ 153.532745, 65.851929 ], [ 153.690796, 65.885818 ], [ 153.786377, 65.874695 ], [ 153.956635, 65.888885 ], [ 154.067749, 65.846939 ], [ 154.067474, 65.797485 ], [ 154.139984, 65.79332 ], [ 154.254425, 65.829163 ], [ 154.382721, 65.944427 ], [ 154.360504, 66.0336 ], [ 154.211639, 66.058868 ], [ 154.348022, 66.137497 ], [ 154.38443, 66.203323 ], [ 154.522766, 66.243591 ], [ 154.616913, 66.208603 ], [ 154.823578, 66.178589 ], [ 154.880798, 66.131363 ], [ 155.032654, 66.15007 ], [ 155.117371, 66.208954 ], [ 155.199341, 66.208374 ], [ 155.299957, 66.175552 ], [ 155.322998, 66.139999 ], [ 155.528046, 66.169708 ], [ 155.602173, 66.142487 ], [ 155.758331, 66.179428 ], [ 155.842743, 66.132477 ], [ 155.923309, 66.125809 ], [ 155.957184, 66.095825 ], [ 156.277771, 66.084717 ], [ 156.352173, 66.062759 ], [ 156.466064, 66.112198 ], [ 156.489685, 66.150269 ], [ 156.578583, 66.19664 ], [ 156.660248, 66.193314 ], [ 156.768585, 66.10054 ], [ 156.958862, 66.040543 ], [ 156.91803, 65.969147 ], [ 157.060516, 65.921371 ], [ 157.133606, 65.91304 ], [ 157.382446, 65.925262 ], [ 157.373291, 65.997482 ], [ 157.570801, 66.044983 ], [ 157.638306, 66.089706 ], [ 157.728302, 66.11499 ], [ 157.919708, 66.118591 ], [ 158.080261, 66.153046 ], [ 158.155548, 66.15387 ], [ 158.253326, 66.12442 ], [ 158.488281, 66.113876 ], [ 158.400818, 66.213318 ], [ 158.391937, 66.25444 ], [ 158.529236, 66.359482 ], [ 158.652191, 66.346649 ], [ 158.746613, 66.294434 ], [ 158.888885, 66.263321 ], [ 158.994415, 66.260818 ], [ 159.181091, 66.234146 ], [ 159.191071, 66.144989 ], [ 159.051636, 66.048035 ], [ 158.989136, 65.929428 ], [ 158.931091, 65.902771 ], [ 158.892548, 65.79184 ], [ 158.911926, 65.743042 ], [ 159.066833, 65.715607 ], [ 159.231354, 65.668594 ], [ 159.341064, 65.664703 ], [ 159.549988, 65.618042 ], [ 159.82663, 65.527771 ], [ 160.027466, 65.517761 ], [ 160.141541, 65.471741 ], [ 160.185699, 65.435425 ], [ 160.170807, 65.376648 ], [ 160.431396, 65.245422 ], [ 160.510681, 65.168564 ], [ 160.626343, 65.146652 ], [ 160.861633, 65.153595 ], [ 161.007751, 65.170258 ], [ 161.174988, 65.14415 ], [ 161.334137, 65.133041 ], [ 161.394989, 65.080551 ], [ 161.645538, 65.013321 ], [ 161.709137, 64.981659 ], [ 161.713867, 64.930817 ], [ 161.783051, 64.837769 ], [ 161.859131, 64.813873 ], [ 162.209961, 64.774429 ], [ 162.318848, 64.738312 ], [ 162.502472, 64.753876 ], [ 162.609131, 64.734421 ], [ 162.665802, 64.686096 ], [ 162.776093, 64.656937 ], [ 163.034698, 64.651382 ], [ 163.120239, 64.694977 ], [ 163.132446, 64.76416 ], [ 163.256653, 64.724701 ], [ 163.231079, 64.668869 ], [ 163.168579, 64.642761 ], [ 163.168854, 64.550812 ], [ 163.232452, 64.503876 ], [ 163.346924, 64.487488 ], [ 163.396088, 64.402206 ], [ 163.314972, 64.321381 ], [ 163.254425, 64.32222 ], [ 163.140808, 64.178314 ], [ 163.013031, 64.200546 ], [ 162.879395, 64.189697 ], [ 162.778595, 64.138596 ], [ 162.832733, 64.079987 ], [ 162.839966, 64.014999 ], [ 162.891663, 64.021103 ], [ 162.930542, 63.940269 ], [ 162.715515, 63.825829 ], [ 162.762482, 63.734436 ], [ 162.855225, 63.70694 ], [ 162.866364, 63.656937 ], [ 162.974121, 63.631104 ], [ 162.951904, 63.523323 ], [ 162.97052, 63.500549 ], [ 162.86911, 63.429161 ], [ 162.798309, 63.430824 ], [ 162.683868, 63.39222 ], [ 162.749115, 63.304436 ], [ 162.779144, 63.2286 ], [ 162.756653, 63.180275 ], [ 162.615784, 63.183876 ], [ 162.593292, 63.130272 ], [ 162.454132, 63.106659 ], [ 162.378021, 63.120827 ], [ 162.30191, 63.079994 ], [ 162.326355, 63.034164 ], [ 162.268311, 62.924438 ], [ 162.295532, 62.908325 ], [ 162.549713, 62.845825 ], [ 162.60495, 62.808327 ], [ 162.603577, 62.755829 ], [ 162.672211, 62.710274 ], [ 162.815247, 62.716385 ], [ 162.825256, 62.686935 ], [ 162.696075, 62.589432 ], [ 162.776642, 62.494156 ], [ 162.752472, 62.313881 ], [ 162.64444, 62.258888 ], [ 162.601074, 62.282768 ], [ 162.548859, 62.253052 ], [ 162.403595, 62.253609 ], [ 162.323578, 62.203323 ], [ 162.257751, 62.215546 ], [ 162.183868, 62.161102 ], [ 162.273315, 62.12471 ], [ 162.374969, 62.122765 ], [ 162.5383, 62.093323 ], [ 162.540527, 62.021103 ], [ 162.470245, 61.961937 ], [ 162.355804, 61.96666 ], [ 162.376892, 61.860275 ], [ 162.459686, 61.833603 ], [ 162.481628, 61.753326 ], [ 162.464417, 61.713882 ], [ 162.511475, 61.655689 ], [ 162.448002, 61.105454 ], [ 155.0, 57.189239 ], [ 155.0, 52.3 ], [ 152.369453, 50.294331 ], [ 154.483762, 47.394307 ], [ 157.5, 47.394307 ], [ 157.5, 9.0 ], [ 154.0, 9.0 ], [ 154.0, -8.0 ], [ 157.5, -11.4 ], [ 157.5, -90.0 ], [ 142.5, -90.0 ], [ 142.5, -38.527018 ], [ 142.358612, -38.475022 ], [ 142.23999, -38.520476 ], [ 142.09189, -38.500242 ], [ 142.03569, -38.537155 ], [ 141.968606, -38.540891 ], [ 141.910029, -38.507983 ], [ 141.87655, -38.390627 ], [ 141.764994, -38.375826 ], [ 141.761565, -38.430787 ], [ 141.712876, -38.494347 ], [ 141.54962, -38.550407 ], [ 141.4498, -38.510972 ], [ 141.397114, -38.518942 ], [ 141.306477, -38.484477 ], [ 141.256291, -38.420993 ], [ 141.252881, -38.344957 ], [ 141.088712, -38.234401 ], [ 140.967055, -38.182957 ], [ 141.003586, -26.00264 ], [ 137.998886, -26.002361 ], [ 137.995887, -16.385755 ], [ 137.996656, -16.386476 ], [ 138.187343, -16.552068 ], [ 138.335669, -16.622736 ], [ 138.529994, -16.665343 ], [ 138.638477, -16.651121 ], [ 138.887845, -16.756112 ], [ 138.986827, -16.768012 ], [ 139.014804, -16.729124 ], [ 139.054245, -16.559409 ], [ 139.158622, -16.42409 ], [ 139.196017, -16.396893 ], [ 139.171083, -16.337014 ], [ 139.183777, -16.259336 ], [ 139.229895, -16.209181 ], [ 139.2968, -16.191623 ], [ 139.359532, -16.211251 ], [ 139.431176, -16.327529 ], [ 139.491805, -16.287125 ], [ 139.574499, -16.273039 ], [ 139.655338, -16.293284 ], [ 139.709175, -16.33422 ], [ 139.783521, -16.344751 ], [ 139.889332, -16.398135 ], [ 139.931311, -16.465838 ], [ 139.921872, -16.544152 ], [ 139.982431, -16.582277 ], [ 140.008782, -16.682223 ], [ 139.92361, -16.795967 ], [ 139.857364, -16.829965 ], [ 139.783052, -16.823756 ], [ 139.727651, -16.780489 ], [ 139.705989, -16.713614 ], [ 139.7226, -16.652406 ], [ 139.604177, -16.6783 ], [ 139.569374, -16.77111 ], [ 139.499895, -16.823055 ], [ 139.401864, -16.817337 ], [ 139.304792, -16.857866 ], [ 139.382132, -16.940626 ], [ 139.433569, -16.876263 ], [ 139.548379, -16.869506 ], [ 139.635796, -16.941859 ], [ 139.72354, -16.983935 ], [ 139.757815, -17.049997 ], [ 139.751997, -17.118857 ], [ 139.694232, -17.227631 ], [ 139.543356, -17.298376 ], [ 139.698602, -17.426659 ], [ 139.86508, -17.461617 ], [ 140.015612, -17.541556 ], [ 140.052636, -17.601821 ], [ 140.352158, -17.564628 ], [ 140.474142, -17.524783 ], [ 140.773232, -17.326136 ], [ 140.798063, -17.193455 ], [ 140.827377, -17.12595 ], [ 140.807921, -17.062108 ], [ 140.85727, -16.935123 ], [ 140.963477, -16.80889 ], [ 140.986363, -16.73554 ], [ 141.105539, -16.621701 ], [ 141.127291, -16.53469 ], [ 141.180631, -16.45808 ], [ 141.172281, -16.395732 ], [ 141.215885, -16.295355 ], [ 141.258584, -16.143471 ], [ 141.30048, -16.076628 ], [ 141.255582, -15.935259 ], [ 141.295583, -15.825733 ], [ 141.320714, -15.62531 ], [ 141.355407, -15.493937 ], [ 141.46015, -15.237722 ], [ 141.459307, -15.185816 ], [ 141.513116, -15.101102 ], [ 141.537113, -15.022045 ], [ 141.481187, -14.901567 ], [ 141.450521, -14.767433 ], [ 141.435494, -14.606824 ], [ 141.408922, -14.45966 ], [ 141.431594, -14.359651 ], [ 141.482789, -14.222159 ], [ 141.478971, -14.130268 ], [ 141.385989, -14.027621 ], [ 141.348411, -13.92853 ], [ 141.355884, -13.805875 ], [ 141.390708, -13.61057 ], [ 141.447871, -13.438338 ], [ 141.494008, -13.390556 ], [ 141.558365, -13.266925 ], [ 141.519259, -13.205722 ], [ 141.466774, -12.980355 ], [ 141.498082, -12.895042 ], [ 141.54943, -12.828264 ], [ 141.654636, -12.76494 ], [ 141.68059, -12.692106 ], [ 141.601515, -12.699457 ], [ 141.529266, -12.667326 ], [ 141.476169, -12.591426 ], [ 141.477774, -12.522108 ], [ 141.562166, -12.324851 ], [ 141.60748, -12.182199 ], [ 141.638288, -12.142642 ], [ 141.715484, -11.97545 ], [ 141.835098, -11.846688 ], [ 141.889857, -11.695424 ], [ 141.944362, -11.500476 ], [ 142.001206, -11.345138 ], [ 142.006371, -11.187432 ], [ 142.028706, -11.08856 ], [ 141.987049, -11.031022 ], [ 141.982809, -10.951186 ], [ 142.068572, -10.853851 ], [ 142.009465, -10.780367 ], [ 142.000406, -10.628677 ], [ 142.066213, -10.485331 ], [ 141.988594, -10.464406 ], [ 141.941856, -10.410438 ], [ 141.931682, -10.343873 ], [ 141.959536, -10.277957 ], [ 142.019959, -10.239616 ], [ 141.984675, -10.184912 ], [ 141.975307, -10.081331 ], [ 142.048538, -9.943827 ], [ 142.047885, -9.354294 ], [ 142.02687, -9.324305 ], [ 142.013973, -9.321542 ], [ 141.996228, -9.32533 ], [ 141.935002, -9.319489 ], [ 141.905996, -9.322743 ], [ 141.876699, -9.322895 ], [ 141.853735, -9.31986 ], [ 141.815657, -9.313908 ], [ 141.785156, -9.30503 ], [ 141.721626, -9.317339 ], [ 141.68218, -9.327648 ], [ 141.646033, -9.332831 ], [ 141.631562, -9.333163 ], [ 141.592415, -9.327551 ], [ 141.576352, -9.321578 ], [ 141.561614, -9.321913 ], [ 141.52102, -9.320146 ], [ 141.485562, -9.312842 ], [ 141.450276, -9.294703 ], [ 141.426209, -9.270967 ], [ 141.419191, -9.261751 ], [ 141.397604, -9.256395 ], [ 141.383691, -9.258772 ], [ 141.36596, -9.273683 ], [ 141.339263, -9.294746 ], [ 141.3207, -9.306751 ], [ 141.297518, -9.3174 ], [ 141.268244, -9.333747 ], [ 141.226022, -9.351287 ], [ 141.190033, -9.358446 ], [ 141.146124, -9.354576 ], [ 141.070265, -9.339002 ], [ 141.022145, -9.297989 ], [ 141.020859, -8.991639 ], [ 141.019104, -8.241138 ], [ 141.021606, -7.419417 ], [ 141.021606, -7.340861 ], [ 141.021698, -7.031722 ], [ 141.018951, -6.893167 ], [ 141.0103, -6.890666 ], [ 141.003311, -6.890778 ], [ 140.998245, -6.894055 ], [ 140.989441, -6.89975 ], [ 140.910965, -6.863417 ], [ 140.853638, -6.723778 ], [ 140.874588, -6.623194 ], [ 140.930313, -6.557556 ], [ 140.956894, -6.477778 ], [ 140.916245, -6.429306 ], [ 140.978912, -6.384778 ], [ 141.000748, -6.299417 ], [ 140.991651, -2.481672 ], [ 142.5, -1.408224 ], [ 142.5, 5.93 ], [ 136.5, 5.93 ], [ 136.5, 20.73 ], [ 142.5, 20.73 ], [ 142.5, 38.736064 ], [ 147.573467, 41.922932 ], [ 146.518208, 43.779985 ], [ 145.344668, 43.636064 ], [ 145.730473, 45.408959 ], [ 140.972433, 45.790915 ], [ 136.738117, 42.347848 ], [ 130.660034, 42.367554 ] ] ] ] } }, +{ "type": "Feature", "properties": { "name": "+10.5" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 158.6, -31.1 ], [ 159.6, -31.1 ], [ 159.6, -32.0 ], [ 158.6, -32.0 ], [ 158.6, -31.1 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "+11.5" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 167.5, -28.7 ], [ 168.3, -28.7 ], [ 168.3, -29.4 ], [ 167.5, -29.4 ], [ 167.5, -28.7 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "+13" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -178.506863, -2.509434 ], [ -172.5, -2.509434 ], [ -158.486571, -2.509434 ], [ -158.486571, -5.842297 ], [ -167.5, -5.842297 ], [ -169.396078, -5.842297 ], [ -170.992788, -9.428362 ], [ -171.293786, -11.057266 ], [ -171.003287, -13.967921 ], [ -171.236701, -14.430984 ], [ -172.499983, -15.00013 ], [ -172.500023, -25.0 ], [ -180.0, -25.0 ], [ -177.8, -19.8 ], [ -177.8, -15.0 ], [ -175.0, -15.0 ], [ -175.0, -12.5 ], [ -178.5, -9.750274 ], [ -178.506863, -2.509434 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "+14" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ -158.486571, -5.842297 ], [ -158.486571, -2.509434 ], [ -158.486571, -0.228073 ], [ -160.639769, 1.498161 ], [ -160.639769, 4.937315 ], [ -157.5, 4.937315 ], [ -155.528634, 4.937315 ], [ -150.000233, -9.909233 ], [ -150.000233, -11.645359 ], [ -154.566159, -11.645359 ], [ -156.080438, -5.842297 ], [ -157.5, -5.842297 ], [ -158.486571, -5.842297 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "-1" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -17.913073, 75.500434 ], [ -19.24181, 75.725302 ], [ -18.3597, 75.878289 ], [ -17.466737, 77.805899 ], [ -17.248778, 79.098975 ], [ -17.315551, 79.218487 ], [ -17.569045, 79.294549 ], [ -19.219361, 79.492367 ], [ -19.213642, 79.532946 ], [ -19.210652, 79.538404 ], [ -19.132403, 79.561754 ], [ -19.061753, 79.600073 ], [ -18.933626, 79.612564 ], [ -18.888066, 79.612308 ], [ -18.83585, 79.611852 ], [ -18.648224, 79.603447 ], [ -18.539558, 79.594473 ], [ -18.437952, 79.583246 ], [ -18.312895, 79.567676 ], [ -18.14458, 79.562802 ], [ -18.07485, 79.522067 ], [ -17.987275, 79.521509 ], [ -17.935394, 79.534772 ], [ -17.882934, 79.585304 ], [ -17.874277, 79.597646 ], [ -17.629419, 79.653068 ], [ -17.552541, 79.702117 ], [ -17.516483, 79.728287 ], [ -17.338944, 79.787484 ], [ -17.260787, 79.836024 ], [ -17.204267, 79.861376 ], [ -17.120153, 79.885796 ], [ -17.086885, 79.902603 ], [ -17.043191, 79.96188 ], [ -17.042347, 80.035516 ], [ -17.047994, 80.047021 ], [ -16.791068, 80.054609 ], [ -16.643797, 80.06764 ], [ -16.599958, 80.076166 ], [ -16.55983, 80.078524 ], [ -16.513115, 80.083842 ], [ -16.506972, 80.084702 ], [ -16.328676, 80.109656 ], [ -16.201634, 80.160495 ], [ -16.198768, 80.160524 ], [ -16.019864, 80.209919 ], [ -16.003858, 80.224401 ], [ -15.795268, 80.255287 ], [ -15.725256, 80.276331 ], [ -15.638808, 80.31373 ], [ -15.622218, 80.328111 ], [ -15.598167, 80.356637 ], [ -15.590428, 80.49594 ], [ -15.521676, 80.493181 ], [ -15.34806, 80.53413 ], [ -15.319182, 80.552013 ], [ -15.287945, 80.589999 ], [ -15.174731, 80.600382 ], [ -14.796166, 80.612889 ], [ -14.521222, 80.622914 ], [ -14.241138, 80.670502 ], [ -14.030924, 80.742727 ], [ -13.98902, 80.800546 ], [ -13.987382, 80.871935 ], [ -13.943769, 80.897357 ], [ -13.730897, 80.88377 ], [ -13.631458, 80.884682 ], [ -13.564903, 80.882125 ], [ -13.557008, 80.882082 ], [ -13.466604, 80.884562 ], [ -13.462615, 80.884738 ], [ -13.336317, 80.892413 ], [ -13.171671, 80.932541 ], [ -13.004598, 80.972652 ], [ -12.896152, 81.015418 ], [ -12.747704, 81.056856 ], [ -12.578507, 81.060184 ], [ -12.445048, 81.076953 ], [ -12.390935, 81.127777 ], [ -12.251849, 81.159713 ], [ -11.819709, 81.209446 ], [ -11.696915, 81.232502 ], [ -11.669917, 81.239622 ], [ -11.546506, 81.258252 ], [ -11.487245, 81.27328 ], [ -11.452335, 81.286657 ], [ -11.401088, 81.304171 ], [ -11.393838, 81.307959 ], [ -11.316087, 81.326297 ], [ -11.233663, 81.366061 ], [ -11.192532, 81.463841 ], [ -11.200218, 81.499506 ], [ -11.218265, 81.531213 ], [ -11.27797, 81.571667 ], [ -11.386821, 81.595703 ], [ -11.611994, 81.605154 ], [ -11.790334, 81.686852 ], [ -11.986012, 81.73483 ], [ -12.3401, 81.76711 ], [ -12.546714, 81.792397 ], [ -12.696934, 81.807147 ], [ -12.728586, 81.808978 ], [ -12.85259, 81.814136 ], [ -12.925445, 81.810851 ], [ -13.189251, 81.849979 ], [ -13.316322, 81.854065 ], [ -13.539812, 81.89843 ], [ -13.715649, 81.917019 ], [ -13.977963, 81.924292 ], [ -14.092595, 81.933193 ], [ -14.257058, 81.921609 ], [ -14.27814, 81.921526 ], [ -14.295417, 81.919934 ], [ -14.327927, 81.920497 ], [ -14.43641, 81.916765 ], [ -14.4927, 81.917918 ], [ -14.557944, 81.913738 ], [ -14.649557, 81.913253 ], [ -14.702807, 81.921717 ], [ -14.740821, 81.91909 ], [ -14.786892, 81.923967 ], [ -14.802872, 81.924587 ], [ -14.864115, 81.922878 ], [ -14.870858, 81.925603 ], [ -14.902496, 81.935247 ], [ -14.950512, 81.940219 ], [ -15.094552, 81.937053 ], [ -15.105716, 81.936598 ], [ -15.128552, 81.934599 ], [ -15.174628, 81.926946 ], [ -15.384388, 81.927429 ], [ -15.437976, 81.930643 ], [ -15.49666, 81.938448 ], [ -15.560171, 81.943887 ], [ -15.588396, 81.948666 ], [ -15.616967, 81.950657 ], [ -15.64126, 81.949883 ], [ -15.809601, 81.921728 ], [ -15.913807, 81.876756 ], [ -16.000563, 81.87406 ], [ -16.206628, 81.893287 ], [ -16.22865, 81.891006 ], [ -16.355031, 81.886279 ], [ -16.495603, 81.872681 ], [ -16.562388, 81.828622 ], [ -16.584266, 81.816793 ], [ -16.644714, 81.757375 ], [ -16.688194, 81.755245 ], [ -16.771435, 81.759129 ], [ -16.831418, 81.767374 ], [ -16.852307, 81.767221 ], [ -17.004761, 81.70171 ], [ -17.074338, 81.648836 ], [ -17.104079, 81.603505 ], [ -17.187537, 81.603305 ], [ -17.208311, 81.656024 ], [ -17.272272, 81.699721 ], [ -17.410188, 81.732133 ], [ -17.457189, 81.75484 ], [ -17.562793, 81.788565 ], [ -17.581927, 81.795348 ], [ -17.543897, 81.905624 ], [ -17.555933, 81.974596 ], [ -17.604411, 82.025112 ], [ -17.70299, 82.080974 ], [ -17.78869, 82.106271 ], [ -17.875964, 82.166157 ], [ -17.877191, 82.17024 ], [ -17.971913, 82.24587 ], [ -18.043885, 82.260709 ], [ -18.206008, 82.239263 ], [ -18.263529, 82.19766 ], [ -18.287474, 82.130831 ], [ -18.269464, 82.062164 ], [ -18.2158, 82.01569 ], [ -18.161072, 81.959106 ], [ -18.155219, 81.956974 ], [ -18.123166, 81.851884 ], [ -18.103955, 81.837395 ], [ -18.206525, 81.831406 ], [ -18.265636, 81.822555 ], [ -18.3492, 81.741664 ], [ -18.355557, 81.703305 ], [ -18.349316, 81.664927 ], [ -18.302912, 81.60381 ], [ -18.268401, 81.587849 ], [ -18.314431, 81.58685 ], [ -18.414447, 81.608336 ], [ -18.544716, 81.605895 ], [ -18.749089, 81.585309 ], [ -18.802647, 81.577491 ], [ -18.826951, 81.676868 ], [ -18.653366, 81.680896 ], [ -18.571363, 81.707082 ], [ -18.530271, 81.740851 ], [ -18.511736, 81.773194 ], [ -18.513833, 81.899868 ], [ -18.623045, 81.980679 ], [ -18.648188, 81.993447 ], [ -18.746914, 82.046014 ], [ -18.810524, 82.07006 ], [ -18.88906, 82.09522 ], [ -19.032914, 82.176184 ], [ -19.079813, 82.187229 ], [ -19.153805, 82.221316 ], [ -19.212536, 82.234721 ], [ -19.395908, 82.229643 ], [ -19.550237, 82.194258 ], [ -19.649238, 82.14394 ], [ -19.673845, 82.109946 ], [ -19.685243, 82.069558 ], [ -19.682037, 82.027716 ], [ -19.674072, 81.996809 ], [ -19.65471, 81.955891 ], [ -19.583627, 81.890738 ], [ -19.430341, 81.826998 ], [ -19.275225, 81.76899 ], [ -19.237777, 81.753076 ], [ -19.209483, 81.736136 ], [ -19.294557, 81.724512 ], [ -19.42346, 81.721061 ], [ -19.498273, 81.745381 ], [ -19.548736, 81.790816 ], [ -19.597528, 81.803623 ], [ -19.717725, 81.823011 ], [ -20.019301, 81.775329 ], [ -20.081129, 81.745311 ], [ -20.166994, 81.630632 ], [ -20.178315, 81.578663 ], [ -20.24574, 81.559663 ], [ -20.451474, 81.518486 ], [ -20.608992, 81.496018 ], [ -20.721755, 81.436145 ], [ -20.744994, 81.406934 ], [ -20.747161, 81.401172 ], [ -20.756369, 81.393126 ], [ -20.89725, 81.392138 ], [ -21.014864, 81.36054 ], [ -21.048315, 81.342644 ], [ -21.101171, 81.313474 ], [ -21.251652, 81.303558 ], [ -21.297793, 81.333973 ], [ -21.229153, 81.370882 ], [ -21.163447, 81.413074 ], [ -21.027304, 81.517052 ], [ -20.967152, 81.601861 ], [ -20.892906, 81.672281 ], [ -20.879691, 81.712028 ], [ -20.874634, 81.833083 ], [ -20.873885, 81.922365 ], [ -20.887789, 81.956437 ], [ -20.918262, 82.016902 ], [ -21.066159, 82.104022 ], [ -21.073951, 82.11347 ], [ -21.220413, 82.186957 ], [ -21.274958, 82.193263 ], [ -21.665909, 82.185065 ], [ -21.945723, 82.174782 ], [ -21.98579, 82.174684 ], [ -22.039035, 82.172243 ], [ -22.071681, 82.17088 ], [ -22.365956, 82.168654 ], [ -22.5, 82.158979 ], [ -22.5, 82.213851 ], [ -22.494742, 82.214989 ], [ -22.444312, 82.22019 ], [ -22.200726, 82.269213 ], [ -22.103838, 82.347676 ], [ -21.830131, 82.36281 ], [ -21.655453, 82.400251 ], [ -21.613546, 82.414314 ], [ -21.41041, 82.434343 ], [ -21.28204, 82.475077 ], [ -21.247346, 82.498155 ], [ -21.222634, 82.531705 ], [ -21.210886, 82.571683 ], [ -21.210448, 82.622798 ], [ -21.242985, 82.684972 ], [ -21.301168, 82.722359 ], [ -21.60147, 82.781257 ], [ -21.742582, 82.795029 ], [ -21.777927, 82.803722 ], [ -21.976213, 82.821401 ], [ -22.059767, 82.843579 ], [ -22.15826, 82.858704 ], [ -22.222303, 82.894073 ], [ -22.296501, 82.907806 ], [ -22.397532, 82.906817 ], [ -22.446733, 82.900744 ], [ -22.5, 82.905422 ], [ -22.5, 89.0 ], [ -7.513103703915295, 89.0 ], [ -7.5, 67.3 ], [ -22.5, 67.3 ], [ -22.5, 69.837959 ], [ -22.49169, 69.841666 ], [ -22.474596, 69.857767 ], [ -22.457502, 69.862238 ], [ -22.440938, 69.854811 ], [ -22.405467, 69.850441 ], [ -22.289994, 69.870412 ], [ -22.221245, 69.910457 ], [ -22.067125, 69.992503 ], [ -22.037187, 70.012451 ], [ -22.026325, 70.023596 ], [ -21.978297, 70.06991 ], [ -21.965319, 70.172947 ], [ -22.009377, 70.236883 ], [ -22.050706, 70.260438 ], [ -22.355512, 70.236929 ], [ -22.378579, 70.232922 ], [ -22.816285, 70.203393 ], [ -23.319925, 70.220134 ], [ -23.951096, 70.275883 ], [ -23.974759420891949, 70.279650171554152 ], [ -24.434745, 70.352879 ], [ -24.601249, 70.387396 ], [ -24.390599, 72.46856 ], [ -24.305962, 72.459303 ], [ -23.584325, 72.290533 ], [ -23.492232, 72.274017 ], [ -23.201464, 72.226389 ], [ -23.038842, 72.147669 ], [ -22.438431, 72.008878 ], [ -22.314737, 71.999811 ], [ -22.224009, 72.005585 ], [ -22.129447, 72.02666 ], [ -22.062611, 72.063305 ], [ -22.008353, 72.105478 ], [ -21.991233, 72.139174 ], [ -21.930583, 72.207682 ], [ -21.915305, 72.244007 ], [ -21.912617, 72.283322 ], [ -21.914343, 72.289766 ], [ -21.875076, 72.309094 ], [ -21.830968, 72.351804 ], [ -21.806157, 72.49383 ], [ -21.867717, 72.591575 ], [ -21.850593, 72.596901 ], [ -21.82345, 72.606987 ], [ -21.770615, 72.548502 ], [ -21.638113, 72.540096 ], [ -21.63189, 72.542522 ], [ -21.561089, 72.618049 ], [ -21.577223, 72.725109 ], [ -21.671133, 72.777505 ], [ -21.688511, 72.778276 ], [ -21.756818, 72.76582 ], [ -21.76229, 72.763355 ], [ -21.791011, 72.806491 ], [ -21.794429, 72.809688 ], [ -21.775382, 72.931214 ], [ -21.819662, 72.99814 ], [ -21.824971, 73.002146 ], [ -21.88422, 73.035206 ], [ -21.936594, 73.051032 ], [ -22.020131, 73.054763 ], [ -22.128344, 73.054877 ], [ -22.142629, 73.063699 ], [ -22.174317, 73.083411 ], [ -22.245718, 73.093571 ], [ -22.258301, 73.092396 ], [ -22.297489, 73.098957 ], [ -22.37731, 73.108862 ], [ -22.208295, 73.130876 ], [ -22.111465, 73.157684 ], [ -22.007932, 73.198908 ], [ -21.94054, 73.221863 ], [ -21.752474, 73.244666 ], [ -21.678637, 73.25582 ], [ -21.616489, 73.264665 ], [ -21.534129, 73.283708 ], [ -21.519555, 73.289621 ], [ -21.449318, 73.361418 ], [ -21.31292, 73.333076 ], [ -21.216713, 73.332407 ], [ -21.149685, 73.329136 ], [ -21.107763, 73.33085 ], [ -20.961102, 73.335937 ], [ -20.850051, 73.333523 ], [ -20.824822, 73.333423 ], [ -20.648615, 73.325275 ], [ -20.576546, 73.325573 ], [ -20.512722, 73.333745 ], [ -20.456451, 73.347775 ], [ -20.411316, 73.362528 ], [ -20.307519, 73.417551 ], [ -20.267401, 73.479566 ], [ -20.260236, 73.511667 ], [ -20.218659, 73.588222 ], [ -20.23475, 73.69374 ], [ -20.171318, 73.745674 ], [ -20.119308, 73.769181 ], [ -20.10979, 73.769532 ], [ -20.070486, 73.772762 ], [ -20.016858, 73.770804 ], [ -19.93654, 73.807493 ], [ -19.901145, 73.878858 ], [ -19.946476, 73.990775 ], [ -20.025441, 74.033837 ], [ -20.042766, 74.039559 ], [ -20.090307, 74.049519 ], [ -20.128437, 74.054034 ], [ -20.129229, 74.060624 ], [ -20.064179, 74.087281 ], [ -20.016793, 74.151093 ], [ -19.981986, 74.145475 ], [ -19.962001, 74.143474 ], [ -19.917116, 74.138999 ], [ -19.902186, 74.135968 ], [ -19.762448, 74.123419 ], [ -19.654205, 74.116514 ], [ -19.54769, 74.121245 ], [ -19.476874, 74.125872 ], [ -19.455749, 74.12945 ], [ -19.301207, 74.175245 ], [ -19.155453, 74.228805 ], [ -19.076076, 74.290536 ], [ -19.019619, 74.320743 ], [ -18.900975, 74.388306 ], [ -18.87695, 74.416119 ], [ -18.859866873322716, 74.413430844849287 ], [ -18.857167, 74.413006 ], [ -18.832593, 74.399263 ], [ -18.792868, 74.384339 ], [ -18.750433, 74.384174 ], [ -18.736837, 74.386562 ], [ -18.692551, 74.403911 ], [ -18.648164, 74.441812 ], [ -18.617761, 74.553761 ], [ -18.49456, 74.502142 ], [ -18.453031, 74.501626 ], [ -18.369163, 74.493071 ], [ -18.340284, 74.503175 ], [ -18.316707, 74.514985 ], [ -18.30917, 74.520357 ], [ -18.281213, 74.528221 ], [ -17.50683, 74.835388 ], [ -17.427891, 74.868275 ], [ -17.419022, 74.875678 ], [ -17.403222, 74.880124 ], [ -17.384278, 74.883999 ], [ -17.384205372595062, 74.884013859236845 ], [ -17.363823, 74.888184 ], [ -17.344487, 74.896268 ], [ -17.321812, 74.908777 ], [ -17.201256, 75.117367 ], [ -17.259853, 75.237896 ], [ -17.913073, 75.500434 ] ] ], [ [ [ -7.5, -35.0 ], [ -15.0, -35.0 ], [ -15.0, -41.963432 ], [ -7.5, -42.0 ], [ -7.5, -90.0 ], [ -22.5, -90.0 ], [ -22.5, 14.0 ], [ -26.0, 14.0 ], [ -26.0, 18.0 ], [ -22.5, 18.0 ], [ -22.5, 36.0 ], [ -32.0, 36.0 ], [ -32.0, 40.0 ], [ -22.5, 40.0 ], [ -22.5, 62.15 ], [ -7.5, 62.15 ], [ -7.5, 58.735177 ], [ -8.993928, 58.338187 ], [ -8.993928, 57.677449 ], [ -7.961525, 57.326432 ], [ -7.961525, 56.583101 ], [ -7.5, 56.476595 ], [ -7.5, 55.44144 ], [ -7.584614, 55.38845 ], [ -7.674704, 55.399595 ], [ -7.804521, 55.377492 ], [ -7.927798, 55.333658 ], [ -7.986304, 55.348519 ], [ -8.087473, 55.319241 ], [ -8.14239, 55.373992 ], [ -8.27341, 55.395071 ], [ -8.345178, 55.35669 ], [ -8.372894, 55.248049 ], [ -8.463043, 55.181294 ], [ -8.619817, 55.121705 ], [ -8.671763, 55.064955 ], [ -8.688586, 54.982654 ], [ -8.665183, 54.908989 ], [ -8.803771, 54.845874 ], [ -8.894408, 54.782517 ], [ -8.923979, 54.705844 ], [ -8.902985, 54.617496 ], [ -8.852615, 54.559971 ], [ -8.763031, 54.537077 ], [ -8.792583, 54.398782 ], [ -8.826786, 54.384763 ], [ -8.912309, 54.414681 ], [ -9.080469, 54.415493 ], [ -9.149541, 54.39366 ], [ -9.223241, 54.427935 ], [ -9.357782, 54.450719 ], [ -9.435532, 54.434027 ], [ -9.661881, 54.451398 ], [ -9.788886, 54.470028 ], [ -9.942832, 54.415716 ], [ -10.017971, 54.43164 ], [ -10.171268, 54.359347 ], [ -10.228552, 54.276368 ], [ -10.292325, 54.238921 ], [ -10.352337, 54.156504 ], [ -10.348855, 54.058106 ], [ -10.379469, 53.998426 ], [ -10.367849, 53.922728 ], [ -10.312811, 53.869475 ], [ -10.199367, 53.844477 ], [ -10.24519, 53.752611 ], [ -10.362055, 53.718746 ], [ -10.413533, 53.651004 ], [ -10.418016, 53.572001 ], [ -10.372343, 53.507384 ], [ -10.305664, 53.485275 ], [ -10.311361, 53.375408 ], [ -10.233414, 53.297184 ], [ -10.09298, 53.2841 ], [ -10.016383, 53.209068 ], [ -9.940523, 53.208071 ], [ -9.945951, 53.107019 ], [ -9.900152, 53.043465 ], [ -9.618003, 52.950047 ], [ -9.595703, 52.919291 ], [ -9.742139, 52.785219 ], [ -9.982662, 52.676398 ], [ -10.053386, 52.603369 ], [ -10.039879, 52.494723 ], [ -10.068721, 52.430518 ], [ -10.28525, 52.38929 ], [ -10.422992, 52.339223 ], [ -10.558225, 52.265153 ], [ -10.616492, 52.250961 ], [ -10.69424, 52.186514 ], [ -10.737967, 52.054426 ], [ -10.715558, 51.978529 ], [ -10.653048, 51.931042 ], [ -10.542624, 51.924321 ], [ -10.528615, 51.788973 ], [ -10.476568, 51.729675 ], [ -10.368532, 51.671595 ], [ -10.355154, 51.559029 ], [ -10.311577, 51.489913 ], [ -10.235824, 51.463168 ], [ -9.964084, 51.492224 ], [ -9.914067, 51.382053 ], [ -9.853403, 51.340374 ], [ -9.766261, 51.331837 ], [ -9.632825, 51.37715 ], [ -9.606351, 51.337917 ], [ -9.491029, 51.307334 ], [ -9.374192, 51.352399 ], [ -9.203861, 51.366717 ], [ -9.027082, 51.43737 ], [ -8.94925, 51.413718 ], [ -8.81043, 51.468518 ], [ -8.702561, 51.453549 ], [ -8.603621, 51.509718 ], [ -8.552478, 51.490401 ], [ -8.457206, 51.516385 ], [ -8.419433, 51.571816 ], [ -8.306831, 51.605563 ], [ -8.211117, 51.672655 ], [ -8.140292, 51.672449 ], [ -7.941123, 51.728421 ], [ -7.826808, 51.771287 ], [ -7.768851, 51.822386 ], [ -7.712876, 51.822094 ], [ -7.545942, 51.879897 ], [ -7.5, 51.912702 ], [ -7.5, 43.861154479453567 ], [ -7.5, 43.861154 ], [ -7.503032, 43.862042 ], [ -7.558828, 43.854305 ], [ -7.66177, 43.910833 ], [ -7.777335, 43.8647 ], [ -7.87292, 43.894581 ], [ -8.102851, 43.820634 ], [ -8.184949, 43.741718 ], [ -8.285748, 43.683852 ], [ -8.343157, 43.684635 ], [ -8.412037, 43.639439 ], [ -8.451384, 43.49893 ], [ -8.576404, 43.440746 ], [ -8.709364, 43.413187 ], [ -8.783791, 43.455826 ], [ -8.865774, 43.46206 ], [ -8.952023, 43.434767 ], [ -9.0573, 43.372109 ], [ -9.09718, 43.315703 ], [ -9.214632, 43.296113 ], [ -9.292025, 43.240942 ], [ -9.322861, 43.176513 ], [ -9.391728, 43.112146 ], [ -9.404692, 42.889579 ], [ -9.345215, 42.792682 ], [ -9.254886, 42.76291 ], [ -9.172927, 42.655006 ], [ -9.192439, 42.536053 ], [ -9.023974, 42.278133 ], [ -9.010634, 42.135705 ], [ -9.005027, 41.901055 ], [ -8.987241, 41.793305 ], [ -18.633803, 33.418703 ], [ -18.633803, 27.352166 ], [ -13.524795, 27.352166 ], [ -13.425156, 27.355035 ], [ -13.517415, 27.21573 ], [ -13.535462, 27.121096 ], [ -13.630773, 26.872237 ], [ -13.699514, 26.776035 ], [ -13.81765, 26.703008 ], [ -14.081793, 26.557931 ], [ -14.210295, 26.543575 ], [ -14.384031, 26.388213 ], [ -14.478551, 26.354083 ], [ -14.59073, 26.216149 ], [ -14.616098, 26.136453 ], [ -14.601885, 26.07816 ], [ -14.639401, 25.966294 ], [ -14.752508, 25.801744 ], [ -14.806286, 25.607639 ], [ -14.892757, 25.483914 ], [ -14.94657, 25.322717 ], [ -14.961575, 25.229442 ], [ -14.952084, 24.924906 ], [ -15.004642, 24.761955 ], [ -15.06961, 24.718579 ], [ -15.107601, 24.646032 ], [ -15.247126, 24.584191 ], [ -15.336509, 24.499239 ], [ -15.411548, 24.402506 ], [ -15.490909, 24.341531 ], [ -15.736876, 24.094365 ], [ -15.812989, 24.059284 ], [ -15.912953, 23.98397 ], [ -16.012112, 23.86948 ], [ -16.114577, 23.694021 ], [ -16.130795, 23.578521 ], [ -16.101762, 23.450868 ], [ -16.144879, 23.417414 ], [ -16.231333, 23.249991 ], [ -16.29713, 23.174651 ], [ -16.325379, 23.103482 ], [ -16.308551, 23.020534 ], [ -16.382682, 22.975054 ], [ -16.464485, 22.724458 ], [ -16.473491, 22.63308 ], [ -16.537323, 22.566939 ], [ -16.575309, 22.438015 ], [ -16.603919, 22.40221 ], [ -16.712502, 22.407733 ], [ -16.763799, 22.381624 ], [ -16.875831, 22.280555 ], [ -16.917358, 22.214324 ], [ -17.015344, 21.960772 ], [ -17.080417, 21.82477 ], [ -17.110164, 21.518424 ], [ -17.133026, 21.43811 ], [ -17.166168, 21.20502 ], [ -17.179602, 21.033047 ], [ -17.200925, 20.99074 ], [ -17.222699, 20.832726 ], [ -17.193775, 20.760106 ], [ -17.127803, 20.681198 ], [ -17.005663, 20.657742 ], [ -16.946427, 20.702098 ], [ -16.908412, 20.832773 ], [ -16.87203, 20.834421 ], [ -16.754576, 20.585679 ], [ -16.661687, 20.501284 ], [ -16.572049, 20.444545 ], [ -16.487944, 20.448116 ], [ -16.474093, 20.389764 ], [ -16.355138, 20.205437 ], [ -16.382637, 20.127514 ], [ -16.374601, 20.01014 ], [ -16.498042, 19.924898 ], [ -16.531469, 19.842762 ], [ -16.609775, 19.765557 ], [ -16.635383, 19.64709 ], [ -16.614594, 19.57874 ], [ -16.554843, 19.530569 ], [ -16.614331, 19.481872 ], [ -16.655705, 19.411815 ], [ -16.647756, 19.330152 ], [ -16.575824, 19.204278 ], [ -16.509791, 19.14077 ], [ -16.428573, 19.096688 ], [ -16.360701, 19.013431 ], [ -16.296902, 18.874119 ], [ -16.251114, 18.62887 ], [ -16.175557, 18.438665 ], [ -16.149763, 18.16401 ], [ -16.143824, 18.002934 ], [ -16.169588, 17.703336 ], [ -16.232848, 17.439153 ], [ -16.461959, 16.896348 ], [ -16.550686, 16.660907 ], [ -16.566245, 16.511658 ], [ -16.633414, 16.300558 ], [ -16.625399, 16.052621 ], [ -16.659348, 15.806582 ], [ -16.716115, 15.696152 ], [ -16.855649, 15.495225 ], [ -16.93757, 15.356971 ], [ -17.081611, 15.163399 ], [ -17.218293, 15.00379 ], [ -17.44926, 14.897102 ], [ -17.544306, 14.877395 ], [ -17.636783, 14.811899 ], [ -17.655235, 14.747122 ], [ -17.636737, 14.682625 ], [ -17.569127, 14.57628 ], [ -17.495752, 14.531675 ], [ -17.403993, 14.53407 ], [ -17.331606, 14.599105 ], [ -17.263956, 14.559392 ], [ -17.174353, 14.402954 ], [ -17.059266, 14.308148 ], [ -17.043748, 14.222868 ], [ -16.981388, 14.128484 ], [ -16.91349, 14.059034 ], [ -16.898615, 13.836781 ], [ -16.871902, 13.764107 ], [ -16.795749, 13.700844 ], [ -16.803815, 13.646784 ], [ -16.771012, 13.573904 ], [ -16.895178, 13.454247 ], [ -16.942962, 13.356178 ], [ -16.899711, 13.050825 ], [ -16.86943, 12.99718 ], [ -16.911435, 12.789876 ], [ -16.892369, 12.563648 ], [ -16.914094, 12.434937 ], [ -16.877041, 12.336087 ], [ -16.827185, 12.26421 ], [ -16.758589, 12.214008 ], [ -16.703889, 12.20972 ], [ -16.612712, 12.155542 ], [ -16.554266, 12.081942 ], [ -16.503758, 12.061463 ], [ -16.439038, 11.930714 ], [ -16.458398, 11.819009 ], [ -16.417585, 11.760864 ], [ -16.324482, 11.72902 ], [ -16.376252, 11.682304 ], [ -16.446109, 11.671158 ], [ -16.531834, 11.601433 ], [ -16.548408, 11.52461 ], [ -16.506816, 11.426896 ], [ -16.580609, 11.383466 ], [ -16.604888, 11.252581 ], [ -16.518431, 11.162375 ], [ -16.380258, 11.157511 ], [ -16.362045, 11.041761 ], [ -16.265347, 10.931843 ], [ -16.186275, 10.899367 ], [ -16.080696, 10.896632 ], [ -16.019612, 10.918836 ], [ -15.880028, 10.930722 ], [ -15.797447, 10.916159 ], [ -15.703515, 10.852227 ], [ -15.617753, 10.849287 ], [ -15.544813, 10.905707 ], [ -15.492827, 11.066959 ], [ -15.433743, 11.051299 ], [ -15.323583, 10.908953 ], [ -15.325757, 10.812832 ], [ -15.274067, 10.755613 ], [ -15.158372, 10.754028 ], [ -15.100758, 10.691205 ], [ -15.031846, 10.658871 ], [ -14.945951, 10.653074 ], [ -14.884856, 10.675867 ], [ -14.787875, 10.531286 ], [ -14.766073, 10.4032 ], [ -14.703028, 10.352342 ], [ -14.648589, 10.346804 ], [ -14.586475, 10.278992 ], [ -14.559782, 10.147276 ], [ -14.454668, 10.087669 ], [ -14.393173, 10.103887 ], [ -14.326397, 10.034129 ], [ -14.181906, 9.935546 ], [ -14.135352, 9.928054 ], [ -13.957601, 9.815556 ], [ -13.803157, 9.65018 ], [ -13.881499, 9.611112 ], [ -13.932267, 9.556855 ], [ -13.963611, 9.473848 ], [ -13.923191, 9.368231 ], [ -13.856181, 9.331164 ], [ -13.737663, 9.322609 ], [ -13.672366, 9.35418 ], [ -13.634393, 9.411561 ], [ -13.547497, 9.311584 ], [ -13.544884, 9.218818 ], [ -13.444935, 9.146655 ], [ -13.444125, 9.055351 ], [ -13.41239, 8.921641 ], [ -13.360353, 8.851512 ], [ -13.367165, 8.661803 ], [ -13.350546, 8.602697 ], [ -13.415496, 8.510938 ], [ -13.399224, 8.368875 ], [ -13.286413, 8.219562 ], [ -13.347535, 8.154541 ], [ -13.348012, 8.041518 ], [ -13.288917, 7.98614 ], [ -13.204669, 7.981185 ], [ -13.154491, 8.003141 ], [ -13.057675, 8.096745 ], [ -13.025931, 8.010605 ], [ -13.06676, 7.957466 ], [ -13.071703, 7.887794 ], [ -13.011912, 7.7948 ], [ -13.129429, 7.772814 ], [ -13.17808, 7.714197 ], [ -13.18341, 7.64441 ], [ -13.13561, 7.542784 ], [ -13.048931, 7.47442 ], [ -12.758607, 7.401155 ], [ -12.685397, 7.374485 ], [ -12.657992, 7.316105 ], [ -12.591789, 7.276136 ], [ -12.446348, 7.252768 ], [ -12.173196, 7.152058 ], [ -11.911488, 7.045149 ], [ -11.71953, 6.943068 ], [ -11.658557, 6.87571 ], [ -11.544781, 6.818462 ], [ -11.494899, 6.775281 ], [ -11.486073, 6.686872 ], [ -11.446753, 6.631168 ], [ -11.345018, 6.57554 ], [ -11.143583, 6.486066 ], [ -10.981973, 6.39907 ], [ -10.926826, 6.355208 ], [ -10.914582, 6.247238 ], [ -10.809905, 6.161695 ], [ -10.707201, 6.113788 ], [ -10.527517, 6.069698 ], [ -10.398265, 5.993272 ], [ -10.311701, 5.958554 ], [ -10.26477, 5.89523 ], [ -10.17051, 5.839247 ], [ -10.077992, 5.720195 ], [ -9.944768, 5.609815 ], [ -9.862225, 5.519043 ], [ -9.706827, 5.405368 ], [ -9.6655, 5.338942 ], [ -9.597082, 5.305067 ], [ -9.504392, 5.185477 ], [ -9.353913, 5.044036 ], [ -9.272548, 5.012023 ], [ -9.144428, 4.928994 ], [ -9.078367, 4.867425 ], [ -8.942114, 4.827089 ], [ -8.859766, 4.757296 ], [ -8.738256, 4.692933 ], [ -8.602486, 4.64503 ], [ -8.515806, 4.578549 ], [ -8.375728, 4.522215 ], [ -8.285982, 4.461697 ], [ -8.007839, 4.40051 ], [ -7.933262, 4.368596 ], [ -7.839411, 4.285578 ], [ -7.753292, 4.252206 ], [ -7.619526, 4.234034 ], [ -7.5, 4.237433 ], [ -7.5, -7.1 ], [ -15.0, -7.1 ], [ -15.0, -8.7 ], [ -7.602596, -8.7 ], [ -7.5, -8.701714 ], [ -7.5, -35.0 ] ] ] ] } }, +{ "type": "Feature", "properties": { "name": "-12" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -180.0, -52.0 ], [ -172.500023, -45.0 ], [ -172.5, -90.0 ], [ -180.0, -90.0 ], [ -180.0, -52.0 ] ] ], [ [ [ -172.5, 70.227283 ], [ -180.0, 75.0 ], [ -180.0, 89.0 ], [ -172.5, 89.0 ], [ -172.5, 70.227283 ] ] ], [ [ [ -180.0, 24.0 ], [ -172.5, 24.0 ], [ -172.5, 15.0 ], [ -172.5, -2.509434 ], [ -178.506863, -2.509434 ], [ -180.0, -2.509434 ], [ -180.0, 24.0 ] ] ], [ [ [ -180.0, 47.0 ], [ -172.5, 47.0 ], [ -172.5, 37.0 ], [ -180.0, 37.0 ], [ -180.0, 47.0 ] ] ] ] } }, +{ "type": "Feature", "properties": { "name": "-11" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -169.0, 68.0 ], [ -172.5, 70.227283 ], [ -172.5, 89.0 ], [ -157.5, 89.0 ], [ -157.5, 71.080565 ], [ -157.528876, 71.069512 ], [ -157.733559, 71.011399 ], [ -158.02371, 70.953547 ], [ -158.277925, 70.937964 ], [ -158.525886, 70.960328 ], [ -158.593497, 70.941096 ], [ -158.646845, 70.991988 ], [ -158.786409, 71.026131 ], [ -158.878806, 71.027675 ], [ -159.300395, 70.981151 ], [ -159.688941, 70.913541 ], [ -159.951155, 70.80912 ], [ -160.23959, 70.685882 ], [ -160.502099, 70.586872 ], [ -160.84057, 70.496654 ], [ -160.960293, 70.472064 ], [ -161.313238, 70.416353 ], [ -161.573279, 70.426475 ], [ -161.895166, 70.452381 ], [ -162.269059, 70.347649 ], [ -162.40484, 70.301046 ], [ -162.530556, 70.241024 ], [ -162.757335, 70.084384 ], [ -163.084929, 69.910273 ], [ -163.140218, 69.853916 ], [ -163.249698, 69.700516 ], [ -163.274889, 69.590061 ], [ -163.271962, 69.457999 ], [ -163.306473, 69.411614 ], [ -163.524872, 69.302417 ], [ -163.608677, 69.243468 ], [ -163.734309, 69.188486 ], [ -163.873981, 69.152601 ], [ -163.983763, 69.106358 ], [ -164.188184, 69.060897 ], [ -164.448066, 69.037792 ], [ -164.609217, 69.037176 ], [ -165.18208, 68.98714 ], [ -165.41812, 68.974953 ], [ -165.657045, 68.974483 ], [ -166.205617, 69.001552 ], [ -166.304839, 68.969569 ], [ -166.349011, 68.859966 ], [ -166.312928, 68.763834 ], [ -166.423293, 68.538792 ], [ -166.776935, 68.483402 ], [ -166.915219, 68.433533 ], [ -166.953846, 68.374155 ], [ -169.0, 68.0 ] ] ], [ [ [ -157.5, 30.0 ], [ -176.8, 30.0 ], [ -176.8, 27.8 ], [ -178.8, 27.8 ], [ -178.8, 30.0 ], [ -180.0, 30.0 ], [ -180.0, 37.0 ], [ -172.5, 37.0 ], [ -172.5, 47.0 ], [ -157.5, 47.0 ], [ -157.5, 30.0 ] ] ], [ [ [ -160.639769, 4.937315 ], [ -160.639769, 1.498161 ], [ -158.486571, -0.228073 ], [ -158.486571, -2.509434 ], [ -172.5, -2.509434 ], [ -172.5, 15.0 ], [ -157.5, 15.0 ], [ -157.5, 4.937315 ], [ -160.639769, 4.937315 ] ] ], [ [ [ -167.5, -11.5 ], [ -164.0, -11.5 ], [ -164.0, -21.5 ], [ -161.5, -21.5 ], [ -161.5, -23.5 ], [ -157.5, -23.5 ], [ -157.5, -90.0 ], [ -172.5, -90.0 ], [ -172.499983, -15.00013 ], [ -171.236701, -14.430984 ], [ -171.003287, -13.967921 ], [ -171.293786, -11.057266 ], [ -170.992788, -9.428362 ], [ -169.396078, -5.842297 ], [ -167.5, -5.842297 ], [ -167.5, -11.5 ] ] ] ] } }, +{ "type": "Feature", "properties": { "name": "-5" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -105.0, -29.0 ], [ -110.0, -29.0 ], [ -110.0, -25.0 ], [ -105.0, -25.0 ], [ -105.0, -29.0 ] ] ], [ [ [ -74.948026, -43.541699 ], [ -74.938267, -44.570035 ], [ -74.938295, -44.60637 ], [ -74.927447, -44.641048 ], [ -74.926672, -44.643392 ], [ -74.908827, -44.688991 ], [ -74.884861, -44.737079 ], [ -74.800705, -44.799449 ], [ -74.758343, -44.801009 ], [ -74.721769, -44.794785 ], [ -74.697837, -44.800949 ], [ -74.670024, -44.807882 ], [ -74.636199, -44.816101 ], [ -74.634129, -44.820715 ], [ -74.631676, -44.823303 ], [ -74.631633, -44.823388 ], [ -74.645962, -44.822745 ], [ -74.660369, -44.82657 ], [ -74.700934, -44.837892 ], [ -74.767739, -44.936531 ], [ -74.714973, -45.049099 ], [ -74.713551, -45.050047 ], [ -74.701491, -45.067563 ], [ -74.640734, -45.108749 ], [ -74.65262, -45.121163 ], [ -74.684024, -45.134881 ], [ -74.727925, -45.156826 ], [ -74.758051, -45.19204 ], [ -74.773477, -45.232457 ], [ -74.774688, -45.255301 ], [ -74.737856, -45.364154 ], [ -74.720018, -45.393482 ], [ -74.650837, -45.443159 ], [ -74.65304, -45.45073 ], [ -74.656902, -45.457026 ], [ -74.662428, -45.474058 ], [ -74.689655, -45.505062 ], [ -74.727516, -45.466994 ], [ -74.739035, -45.461758 ], [ -74.795797, -45.443563 ], [ -74.800479, -45.443008 ], [ -74.809799, -45.441904 ], [ -74.817172, -45.442526 ], [ -74.902123, -45.47075 ], [ -74.925978, -45.500173 ], [ -74.987312, -45.514323 ], [ -75.058891, -45.611453 ], [ -75.045126, -45.687773 ], [ -75.054347, -45.694253 ], [ -75.095626, -45.732128 ], [ -75.123028, -45.757976 ], [ -75.142311, -45.768338 ], [ -75.184904, -45.805985 ], [ -75.215419, -45.892358 ], [ -75.182621, -45.991518 ], [ -75.197144, -46.052459 ], [ -75.193938, -46.086833 ], [ -75.184214, -46.128389 ], [ -75.178919, -46.142229 ], [ -75.174424, -46.150438 ], [ -75.178666, -46.154982 ], [ -75.249442, -46.190855 ], [ -75.32929, -46.273996 ], [ -75.355718, -46.283943 ], [ -75.362356, -46.286769 ], [ -75.394079, -46.307562 ], [ -75.457336, -46.347899 ], [ -75.486141, -46.381464 ], [ -75.494426, -46.38134 ], [ -75.525248, -46.385446 ], [ -75.575148, -46.399469 ], [ -75.61725, -46.435474 ], [ -75.681477, -46.456386 ], [ -75.682683, -46.456792 ], [ -75.692655, -46.465384 ], [ -75.722765, -46.493447 ], [ -75.780344, -46.586872 ], [ -75.786372, -46.617294 ], [ -75.792039, -46.630586 ], [ -75.794629, -46.644738 ], [ -75.80664, -46.683674 ], [ -75.809534, -46.735222 ], [ -75.807614, -46.741767 ], [ -75.814105, -46.77736 ], [ -75.798852, -46.84194 ], [ -75.790923, -46.859728 ], [ -75.744868, -46.904236 ], [ -75.731007, -46.933936 ], [ -75.729344, -46.93656 ], [ -75.70819, -46.961583 ], [ -75.665693, -46.985063 ], [ -75.644483, -47.014342 ], [ -75.538108, -47.067006 ], [ -75.500925, -47.075229 ], [ -75.372411, -47.046558 ], [ -75.324522, -47.039725 ], [ -75.219881, -46.979504 ], [ -75.187957, -46.906569 ], [ -75.17804, -46.893151 ], [ -75.155689, -46.891527 ], [ -75.144433, -46.888077 ], [ -75.072299, -46.848973 ], [ -75.024949, -46.8721 ], [ -74.986783, -46.879929 ], [ -74.957675, -46.883547 ], [ -74.916704, -46.911764 ], [ -74.88273, -46.926683 ], [ -74.806089, -46.933404 ], [ -74.780825, -46.938751 ], [ -74.749936, -46.975401 ], [ -74.746325, -46.989117 ], [ -74.698175, -47.043573 ], [ -74.662815, -47.067474 ], [ -74.60727, -47.075789 ], [ -74.607679, -47.103988 ], [ -74.599957, -47.139073 ], [ -74.596567, -47.14826 ], [ -74.591607, -47.157354 ], [ -74.593465, -47.193234 ], [ -74.565968, -47.258519 ], [ -74.551587, -47.271203 ], [ -74.554459, -47.273669 ], [ -74.579356, -47.306329 ], [ -74.607484, -47.33342 ], [ -74.632113, -47.400855 ], [ -74.63372, -47.4116 ], [ -74.63267, -47.416719 ], [ -74.633332, -47.435607 ], [ -74.642813, -47.438138 ], [ -74.682846, -47.469337 ], [ -74.685755, -47.47103 ], [ -74.693453, -47.476355 ], [ -74.694403, -47.47719 ], [ -74.735119, -47.459205 ], [ -74.803151, -47.462507 ], [ -74.858427, -47.502304 ], [ -74.879893, -47.539349 ], [ -74.894921, -47.577715 ], [ -74.935473, -47.573036 ], [ -74.975404, -47.56905 ], [ -75.025473, -47.561286 ], [ -75.072389, -47.558516 ], [ -75.100326, -47.544608 ], [ -75.179034, -47.528557 ], [ -75.253805, -47.553583 ], [ -75.288618, -47.600065 ], [ -75.329941, -47.599763 ], [ -75.330878, -47.599754 ], [ -75.386282, -47.608455 ], [ -75.437151, -47.620293 ], [ -75.471884, -47.638338 ], [ -75.515504, -47.702076 ], [ -75.519751, -47.740986 ], [ -75.511249, -47.779193 ], [ -75.484904, -47.861858 ], [ -75.426815, -47.906039 ], [ -75.451777, -47.917012 ], [ -75.464778, -47.911928 ], [ -75.538342, -47.915815 ], [ -75.542595, -47.915557 ], [ -75.575994, -47.922354 ], [ -75.606977, -47.937278 ], [ -75.651471, -47.992418 ], [ -75.6678, -48.011885 ], [ -75.689037, -48.041436 ], [ -75.700666, -48.066423 ], [ -75.706459, -48.139132 ], [ -75.693202, -48.17197 ], [ -75.689605, -48.204358 ], [ -75.675354, -48.237884 ], [ -75.739108, -48.373902 ], [ -75.739161, -48.374452 ], [ -75.778578, -48.453108 ], [ -75.785237, -48.492501 ], [ -75.785844, -48.60087 ], [ -75.760736, -48.667424 ], [ -75.765216, -48.700426 ], [ -75.759233, -48.730001 ], [ -75.769709, -48.780292 ], [ -75.76312, -48.829551 ], [ -75.76054, -48.837877 ], [ -75.759089, -48.842374 ], [ -75.775073, -48.881803 ], [ -75.775866, -48.886338 ], [ -75.771649, -48.943244 ], [ -75.771947, -48.943469 ], [ -75.786133, -48.957178 ], [ -75.808522, -48.981338 ], [ -75.830111, -49.045951 ], [ -75.811989, -49.116768 ], [ -75.802127, -49.129335 ], [ -75.790073, -49.142021 ], [ -75.787743, -49.144706 ], [ -75.786901, -49.145219 ], [ -75.794066, -49.156362 ], [ -75.815464, -49.230006 ], [ -75.815326, -49.233238 ], [ -75.786286, -49.306539 ], [ -75.755489, -49.332034 ], [ -75.704388, -49.35127 ], [ -75.673022, -49.352646 ], [ -75.697417, -49.398137 ], [ -75.690789, -49.475635 ], [ -75.689803, -49.4946 ], [ -75.681746, -49.522316 ], [ -75.663258, -49.564753 ], [ -75.705011, -49.606428 ], [ -75.718333, -49.685588 ], [ -75.707096, -49.721177 ], [ -75.705265, -49.767974 ], [ -75.705052, -49.810077 ], [ -75.689754, -49.850161 ], [ -75.68732, -49.857642 ], [ -75.650426, -49.936911 ], [ -75.598714, -49.968127 ], [ -75.511192, -49.96671 ], [ -75.487884, -49.957677 ], [ -75.497673, -49.973201 ], [ -75.506636, -49.987416 ], [ -75.514276, -50.010469 ], [ -75.517207, -50.044798 ], [ -75.508153, -50.082493 ], [ -75.507877, -50.085496 ], [ -75.508395, -50.091772 ], [ -75.504128, -50.1098 ], [ -75.519335, -50.146995 ], [ -75.528112, -50.170369 ], [ -75.529957, -50.174446 ], [ -75.535477, -50.185766 ], [ -75.55819, -50.212093 ], [ -75.576788, -50.276777 ], [ -75.58369, -50.313851 ], [ -75.583774, -50.320519 ], [ -75.586472, -50.356847 ], [ -75.599309, -50.421859 ], [ -75.599192, -50.42511 ], [ -75.5991, -50.427417 ], [ -75.597947, -50.455629 ], [ -75.598229, -50.459291 ], [ -75.598225, -50.485696 ], [ -75.600914, -50.520699 ], [ -75.592366, -50.557589 ], [ -75.593616, -50.562626 ], [ -75.64811, -50.643016 ], [ -75.648908, -50.684799 ], [ -75.61223, -50.755931 ], [ -75.574704, -50.788803 ], [ -75.573956, -50.79277 ], [ -75.544052, -50.852109 ], [ -75.503781, -50.884326 ], [ -75.474248, -50.898659 ], [ -75.395373, -50.914667 ], [ -75.321171, -50.927731 ], [ -75.314838, -50.926797 ], [ -75.27846, -50.921184 ], [ -75.262384, -50.914168 ], [ -75.250277, -50.912985 ], [ -75.237704, -50.907521 ], [ -75.189778, -50.873748 ], [ -75.174652, -50.878683 ], [ -75.155511, -50.879466 ], [ -75.145103, -50.895477 ], [ -75.151538, -50.901451 ], [ -75.192457, -50.955742 ], [ -75.19304, -51.048172 ], [ -75.220627, -51.072411 ], [ -75.263334, -51.205695 ], [ -75.28946, -51.230793 ], [ -75.292885, -51.234366 ], [ -75.32529, -51.277873 ], [ -75.347889, -51.342697 ], [ -75.340562, -51.386645 ], [ -75.355705, -51.434481 ], [ -75.390746, -51.453269 ], [ -75.430393, -51.504791 ], [ -75.433251, -51.513945 ], [ -75.449254, -51.563547 ], [ -75.425634, -51.674091 ], [ -75.390407, -51.724091 ], [ -75.352573, -51.756132 ], [ -75.270376, -51.768212 ], [ -75.232919, -51.754746 ], [ -75.245972, -51.778759 ], [ -75.238931, -51.938988 ], [ -75.219992, -51.983788 ], [ -75.194679, -52.019576 ], [ -75.174971, -52.065497 ], [ -75.161046, -52.08425 ], [ -75.159887, -52.085633 ], [ -75.151714, -52.117303 ], [ -75.100363, -52.220521 ], [ -75.055114, -52.241234 ], [ -75.044409, -52.340007 ], [ -74.985603, -52.391831 ], [ -74.963294, -52.399707 ], [ -74.906053, -52.430743 ], [ -74.895664, -52.439785 ], [ -74.849037, -52.462601 ], [ -74.815872, -52.464586 ], [ -74.811278, -52.467384 ], [ -74.803926, -52.515693 ], [ -74.75762, -52.574858 ], [ -74.711007, -52.595628 ], [ -74.725479, -52.608246 ], [ -74.790454, -52.63149 ], [ -74.84467, -52.679577 ], [ -74.86337, -52.722007 ], [ -74.866869, -52.741487 ], [ -74.869315, -52.784747 ], [ -74.843366, -52.849086 ], [ -74.826672, -52.868734 ], [ -74.806182, -52.895739 ], [ -74.777632, -52.916393 ], [ -74.755391, -52.935478 ], [ -74.752515, -52.937225 ], [ -74.738617, -52.948373 ], [ -74.739062, -52.959771 ], [ -74.727779, -52.9975 ], [ -74.637322, -53.066788 ], [ -74.610893, -53.070295 ], [ -74.607405, -53.073045 ], [ -74.567078, -53.102729 ], [ -74.481862, -53.162872 ], [ -74.465523, -53.204271 ], [ -74.461473, -53.208792 ], [ -74.453207, -53.225525 ], [ -74.446937, -53.234152 ], [ -74.434225, -53.25822 ], [ -74.421611, -53.288311 ], [ -74.421626, -53.290836 ], [ -74.397919, -53.363171 ], [ -74.378561, -53.384493 ], [ -74.315423, -53.422365 ], [ -74.300882, -53.42572 ], [ -74.28318, -53.433766 ], [ -74.224802, -53.457484 ], [ -74.149965, -53.448362 ], [ -74.095704, -53.437398 ], [ -74.036497, -53.466822 ], [ -74.054497, -53.506648 ], [ -74.036853, -53.607656 ], [ -73.97584, -53.655126 ], [ -73.960299, -53.670466 ], [ -73.934144, -53.695667 ], [ -73.901855, -53.715152 ], [ -73.773278, -53.822738 ], [ -73.69935, -53.835243 ], [ -73.659591, -53.861979 ], [ -73.534051, -53.869514 ], [ -73.517419, -53.86598 ], [ -73.519117, -53.878464 ], [ -73.515062, -53.915578 ], [ -73.517731, -53.957169 ], [ -73.583596, -54.01936 ], [ -73.593358, -54.053323 ], [ -73.592804, -54.088656 ], [ -73.578271, -54.131039 ], [ -73.476011, -54.194722 ], [ -73.450188, -54.195314 ], [ -73.39905, -54.217632 ], [ -73.372905, -54.248172 ], [ -73.28456, -54.27614 ], [ -73.236194, -54.264729 ], [ -73.180317, -54.265206 ], [ -73.142768, -54.275727 ], [ -73.134058, -54.276136 ], [ -73.095379, -54.289219 ], [ -73.025672, -54.340801 ], [ -72.994194, -54.345672 ], [ -72.938283, -54.346847 ], [ -72.897952, -54.336754 ], [ -72.856911, -54.384829 ], [ -72.778876, -54.403061 ], [ -72.754486, -54.412427 ], [ -72.71115, -54.431489 ], [ -72.699666, -54.435335 ], [ -72.682429, -54.4464 ], [ -72.615224, -54.462524 ], [ -72.593765, -54.494965 ], [ -72.536953, -54.527838 ], [ -72.527583, -54.534885 ], [ -72.494972, -54.549084 ], [ -72.479223, -54.551299 ], [ -72.474485, -54.554215 ], [ -72.438916, -54.56434 ], [ -72.433548, -54.565922 ], [ -72.394305, -54.576987 ], [ -72.359694, -54.578048 ], [ -72.325415, -54.589346 ], [ -72.227747, -54.581156 ], [ -72.216013, -54.588628 ], [ -72.217037, -54.592648 ], [ -72.214289, -54.632325 ], [ -72.217913, -54.64623 ], [ -72.21671, -54.680857 ], [ -72.215245, -54.688925 ], [ -72.183073, -54.751284 ], [ -72.15482, -54.772736 ], [ -72.14747, -54.775774 ], [ -72.136536, -54.783185 ], [ -72.133421, -54.791156 ], [ -72.111443, -54.820849 ], [ -72.085082, -54.840609 ], [ -72.037473, -54.85664 ], [ -72.004793, -54.869379 ], [ -71.946481, -54.871166 ], [ -71.919597, -54.869606 ], [ -71.904008, -54.865495 ], [ -71.857456, -54.887759 ], [ -71.77115, -54.906855 ], [ -71.692903, -54.888234 ], [ -71.67282, -54.869664 ], [ -71.607356, -54.896531 ], [ -71.57631, -54.902168 ], [ -71.576444, -54.913924 ], [ -71.576122, -54.952313 ], [ -71.563693, -54.988636 ], [ -71.508712, -55.040805 ], [ -71.484102, -55.049535 ], [ -71.410684, -55.086378 ], [ -71.36037, -55.081554 ], [ -71.341406, -55.074438 ], [ -71.328029, -55.089134 ], [ -71.289017, -55.11921 ], [ -71.213303, -55.137833 ], [ -71.127289, -55.136063 ], [ -71.124422, -55.134929 ], [ -71.123842, -55.135013 ], [ -71.061361, -55.208668 ], [ -70.971342, -55.264082 ], [ -70.895827, -55.276743 ], [ -70.849281, -55.261524 ], [ -70.836296, -55.254119 ], [ -70.798698, -55.252227 ], [ -70.781213, -55.246291 ], [ -70.768989, -55.246954 ], [ -70.758764, -55.264733 ], [ -70.731214, -55.291956 ], [ -70.689863, -55.314461 ], [ -70.594398, -55.305639 ], [ -70.578948, -55.311157 ], [ -70.576114, -55.312538 ], [ -70.545445, -55.320412 ], [ -70.519892, -55.324991 ], [ -70.489694, -55.321641 ], [ -70.472286, -55.325086 ], [ -70.320103, -55.292046 ], [ -70.295005, -55.279535 ], [ -70.279677, -55.32018 ], [ -70.219654, -55.40127 ], [ -70.164431, -55.443005 ], [ -70.074392, -55.463412 ], [ -70.072425, -55.46503 ], [ -70.05076, -55.478797 ], [ -69.990691, -55.497419 ], [ -69.959117, -55.494344 ], [ -69.920021, -55.478367 ], [ -69.83295, -55.5439 ], [ -69.766843, -55.559378 ], [ -69.752176, -55.55691 ], [ -69.750179, -55.560284 ], [ -69.717968, -55.58876 ], [ -69.679553, -55.603726 ], [ -69.626061, -55.60329 ], [ -69.581965, -55.590737 ], [ -69.581952, -55.590739 ], [ -69.538821, -55.589151 ], [ -69.486927, -55.609331 ], [ -69.484388, -55.610873 ], [ -69.316183, -55.666218 ], [ -69.296052, -55.687519 ], [ -69.267004, -55.713421 ], [ -69.227211, -55.729637 ], [ -69.19019, -55.732759 ], [ -69.150769, -55.722488 ], [ -69.131005, -55.736258 ], [ -69.042397, -55.743817 ], [ -69.039792, -55.743084 ], [ -68.995835, -55.736925 ], [ -68.985799, -55.73258 ], [ -68.964622, -55.734433 ], [ -68.928493, -55.730245 ], [ -68.87937, -55.708144 ], [ -68.873984, -55.704105 ], [ -68.870231, -55.703639 ], [ -68.839884, -55.693236 ], [ -68.762375, -55.695474 ], [ -68.738648, -55.706829 ], [ -68.665431, -55.717232 ], [ -68.6615, -55.716024 ], [ -68.553702, -55.709608 ], [ -68.541315, -55.709638 ], [ -68.510303, -55.711102 ], [ -68.442673, -55.680546 ], [ -68.386965, -55.666493 ], [ -68.284141, -55.739567 ], [ -68.247468, -55.747445 ], [ -68.140445, -55.82147 ], [ -68.113909, -55.835917 ], [ -68.045241, -55.840209 ], [ -67.994538, -55.824956 ], [ -67.964659, -55.80401 ], [ -67.959008, -55.798078 ], [ -67.958035, -55.799977 ], [ -67.953807, -55.883616 ], [ -67.910292, -55.950412 ], [ -67.864801, -55.975033 ], [ -67.859147, -55.977104 ], [ -67.82174, -55.984701 ], [ -67.802448, -55.984295 ], [ -67.743148, -55.996564 ], [ -67.708007, -55.988815 ], [ -67.693726, -55.992624 ], [ -67.678257, -55.995796 ], [ -67.665033, -56.006388 ], [ -67.622511, -56.020868 ], [ -67.526883, -56.008284 ], [ -67.5, -56.004087 ], [ -67.5, -90.0 ], [ -82.5, -90.0 ], [ -82.5, 8.143071 ], [ -82.680483, 8.202643 ], [ -82.70534, 8.201503 ], [ -82.759493, 8.18478 ], [ -82.760203, 8.175588 ], [ -82.737662, 8.098532 ], [ -82.743744, 8.025913 ], [ -82.793125, 7.921825 ], [ -82.826912, 7.899011 ], [ -82.891903, 7.888236 ], [ -82.891182, 8.111118 ], [ -82.937759, 8.269567 ], [ -82.990341, 8.277086 ], [ -83.050148, 8.339612 ], [ -82.993309, 8.366836 ], [ -82.928246, 8.434606 ], [ -82.858879, 8.44946 ], [ -82.833427, 8.505902 ], [ -82.82785, 8.626787 ], [ -82.917137, 8.744999 ], [ -82.852463, 8.853965 ], [ -82.769592, 8.878805 ], [ -82.715706, 8.925186 ], [ -82.741608, 8.981502 ], [ -82.800766, 9.008022 ], [ -82.936188, 9.103702 ], [ -82.937561, 9.473368 ], [ -82.844963, 9.497264 ], [ -82.88414, 9.552131 ], [ -82.853714, 9.615466 ], [ -82.745399, 9.57808 ], [ -82.693932, 9.508739 ], [ -82.611656, 9.502308 ], [ -82.5, 9.668421 ], [ -82.5, 18.183319 ], [ -87.839046, 18.172742 ], [ -87.943972, 18.183289 ], [ -88.066451, 18.418134 ], [ -88.305504, 18.485069 ], [ -88.433426, 18.480844 ], [ -88.512932, 18.462267 ], [ -88.548134, 18.346989 ], [ -88.591042, 18.304064 ], [ -88.608856, 18.226326 ], [ -88.652939, 18.17399 ], [ -88.699089, 18.063341 ], [ -88.755753, 18.033674 ], [ -88.779533, 17.979416 ], [ -88.880333, 17.906065 ], [ -89.021935, 18.000355 ], [ -89.093597, 17.985266 ], [ -89.14537, 17.944826 ], [ -89.151957, 17.940257 ], [ -89.205872, 17.9541 ], [ -89.200237, 18.144629 ], [ -89.143066, 18.14582 ], [ -89.13236, 18.293403 ], [ -89.150238, 18.451059 ], [ -89.152115, 18.735731 ], [ -89.144382, 18.755919 ], [ -89.146667, 19.423862 ], [ -89.296562, 19.551174 ], [ -89.144862, 19.637399 ], [ -89.123399, 19.703424 ], [ -89.048827, 19.721493 ], [ -88.974452, 19.818101 ], [ -88.929512, 19.790949 ], [ -88.880192, 19.878125 ], [ -88.833043, 19.878227 ], [ -88.783503, 20.00818 ], [ -88.700176, 20.010357 ], [ -88.690609, 20.089856 ], [ -88.502345, 20.190078 ], [ -88.443426, 20.23815 ], [ -88.308788, 20.25351 ], [ -88.264634, 20.290342 ], [ -88.13649, 20.281372 ], [ -87.744259, 20.653787 ], [ -87.533145, 20.999602 ], [ -87.534912, 21.489881 ], [ -87.534912, 21.8 ], [ -86.0, 21.8 ], [ -86.0, 23.694104 ], [ -82.5, 23.694104 ], [ -82.5, 26.913254 ], [ -82.632444, 27.173574 ], [ -82.797336, 27.378706 ], [ -82.889523, 27.559284 ], [ -82.860744, 27.679543 ], [ -82.927734, 27.753271 ], [ -82.975301, 27.858304 ], [ -82.949752, 27.990765 ], [ -82.950516, 28.106919 ], [ -82.972541, 28.185211 ], [ -82.952756, 28.264647 ], [ -82.85301, 28.32452 ], [ -82.777005, 28.572776 ], [ -82.782416, 28.65775 ], [ -82.827734, 28.758798 ], [ -82.826044, 28.891404 ], [ -82.88304, 28.987272 ], [ -82.953444, 29.046986 ], [ -83.024719, 28.98383 ], [ -83.08684, 28.976796 ], [ -83.155389, 29.006683 ], [ -83.195508, 29.075121 ], [ -83.198512, 29.166069 ], [ -83.276375, 29.226702 ], [ -83.308092, 29.313803 ], [ -83.475992, 29.423591 ], [ -83.518303, 29.48228 ], [ -83.529471, 29.577917 ], [ -83.629732, 29.639423 ], [ -83.69204, 29.704857 ], [ -83.740892, 29.810565 ], [ -83.881639, 29.873572 ], [ -84.051623, 29.978776 ], [ -84.202291, 29.958072 ], [ -84.256666, 29.817987 ], [ -84.372687, 29.772068 ], [ -84.455307, 29.788781 ], [ -84.498884, 29.713603 ], [ -84.624111, 29.659927 ], [ -84.743479, 29.569412 ], [ -84.966857, 29.477858 ], [ -85.072642, 29.466053 ], [ -85.241762, 29.553384 ], [ -85.360062, 29.542196 ], [ -85.429987, 29.567408 ], [ -85.475882, 29.624693 ], [ -85.522494, 29.74559 ], [ -85.533139, 29.848459 ], [ -85.324188, 29.956547 ], [ -85.211922, 29.845205 ], [ -85.109993, 29.777132 ], [ -85.020554, 29.807112 ], [ -85.012085, 29.930832 ], [ -85.026428, 29.982895 ], [ -85.132057, 30.03862 ], [ -85.148888, 30.111225 ], [ -85.107567, 30.217825 ], [ -85.060089, 30.265421 ], [ -85.050438, 30.337345 ], [ -84.987473, 30.471035 ], [ -84.965874, 30.572287 ], [ -84.905388, 30.622177 ], [ -84.858414, 30.699812 ], [ -84.916435, 30.754196 ], [ -84.93766, 30.888376 ], [ -84.972252, 30.929657 ], [ -85.040375, 31.109709 ], [ -85.109947, 31.193531 ], [ -85.117332, 31.274069 ], [ -85.045441, 31.544319 ], [ -85.067436, 31.626978 ], [ -85.125694, 31.694794 ], [ -85.143547, 31.838377 ], [ -85.059708, 32.018993 ], [ -85.064453, 32.131516 ], [ -84.980103, 32.213383 ], [ -84.895866, 32.266697 ], [ -84.999725, 32.322342 ], [ -84.972794, 32.439938 ], [ -85.000565, 32.507347 ], [ -85.078438, 32.593781 ], [ -85.142067, 32.78767 ], [ -85.190277, 32.880558 ], [ -85.224541, 33.069317 ], [ -85.449356, 34.219746 ], [ -85.572998, 34.802887 ], [ -85.605515, 34.985531 ], [ -85.474213, 34.984474 ], [ -85.381691, 35.047222 ], [ -85.387062, 35.147583 ], [ -85.249901, 35.316566 ], [ -85.107719, 35.571564 ], [ -85.050621, 35.616501 ], [ -84.905212, 35.773621 ], [ -84.780251, 35.823681 ], [ -84.679497, 35.907455 ], [ -84.720062, 35.99456 ], [ -84.903748, 36.151085 ], [ -84.912613, 36.208321 ], [ -84.877296, 36.281937 ], [ -84.794266, 36.29882 ], [ -84.730286, 36.368919 ], [ -84.659531, 36.394909 ], [ -84.784172, 36.606289 ], [ -84.57991, 36.8438 ], [ -84.683052, 36.982834 ], [ -84.770294, 36.958 ], [ -84.835594, 36.997822 ], [ -84.905495, 37.047607 ], [ -84.915985, 37.107502 ], [ -84.971344, 37.113651 ], [ -85.053368, 37.196941 ], [ -85.05648, 37.256798 ], [ -85.176514, 37.312031 ], [ -85.192299, 37.272629 ], [ -85.269821, 37.262371 ], [ -85.353226, 37.192234 ], [ -85.479118, 37.363678 ], [ -85.633911, 37.471039 ], [ -85.665146, 37.43655 ], [ -85.749748, 37.430962 ], [ -86.047203, 37.449932 ], [ -86.113098, 37.56657 ], [ -86.186775, 37.560284 ], [ -86.271957, 37.599667 ], [ -86.151718, 37.798916 ], [ -86.242775, 37.876812 ], [ -86.489334, 38.04459 ], [ -86.521851, 38.028908 ], [ -86.528481, 37.917801 ], [ -86.581619, 37.920967 ], [ -86.604599, 37.860142 ], [ -86.667267, 37.855522 ], [ -86.731148, 37.892727 ], [ -86.79631, 37.987358 ], [ -86.771797, 38.063377 ], [ -86.800163, 38.139458 ], [ -86.793411, 38.207005 ], [ -87.072777, 38.20647 ], [ -87.072975, 38.232304 ], [ -87.298546, 38.231949 ], [ -87.316864, 38.245876 ], [ -87.315987, 38.377327 ], [ -87.407593, 38.379398 ], [ -87.500175, 38.495171 ], [ -87.579971, 38.48362 ], [ -87.743416, 38.414089 ], [ -87.738052, 38.479355 ], [ -87.669121, 38.543995 ], [ -87.587242, 38.671089 ], [ -87.536934, 38.682968 ], [ -87.497078, 38.743126 ], [ -87.543732, 38.89114 ], [ -87.513039, 38.954216 ], [ -87.57653, 39.004498 ], [ -87.570702, 39.056171 ], [ -87.653786, 39.142563 ], [ -87.574753, 39.216171 ], [ -87.603203, 39.263802 ], [ -87.587631, 39.336102 ], [ -87.530449, 39.351601 ], [ -87.532715, 40.130928 ], [ -87.526283, 40.737804 ], [ -87.098671, 40.73827 ], [ -87.099533, 40.839874 ], [ -86.98716, 40.840809 ], [ -86.987656, 40.913391 ], [ -86.929291, 40.913601 ], [ -86.930038, 41.237099 ], [ -86.784241, 41.28516 ], [ -86.739136, 41.322464 ], [ -86.702057, 41.400585 ], [ -86.64151, 41.4338 ], [ -86.524513, 41.43388 ], [ -86.524544, 41.520115 ], [ -86.486511, 41.576855 ], [ -86.526436, 41.64994 ], [ -86.524025, 41.760254 ], [ -86.806435, 41.760872 ], [ -86.677841, 41.834064 ], [ -86.605278, 41.894928 ], [ -86.482231, 42.101135 ], [ -86.371376, 42.221115 ], [ -86.294678, 42.340019 ], [ -86.254898, 42.437504 ], [ -86.204193, 42.670059 ], [ -86.197563, 42.872677 ], [ -86.21553, 42.988354 ], [ -86.251472, 43.094612 ], [ -86.389252, 43.313671 ], [ -86.457695, 43.489483 ], [ -86.526375, 43.610035 ], [ -86.522476, 43.656612 ], [ -86.428131, 43.777046 ], [ -86.440262, 43.938156 ], [ -86.510025, 44.047245 ], [ -86.412308, 44.129673 ], [ -86.257011, 44.355785 ], [ -86.220291, 44.536808 ], [ -86.243599, 44.698666 ], [ -86.083878, 44.740383 ], [ -86.069824, 44.890121 ], [ -85.979149, 44.90242 ], [ -85.947211, 44.940085 ], [ -86.629913, 45.612058 ], [ -86.705429, 45.645775 ], [ -86.706657, 45.687596 ], [ -86.804047, 45.783455 ], [ -86.836685, 45.720116 ], [ -86.98027, 45.694004 ], [ -87.001472, 45.828678 ], [ -87.052254, 45.804073 ], [ -87.040871, 45.743164 ], [ -87.101112, 45.681698 ], [ -87.18721, 45.639111 ], [ -87.258012, 45.548811 ], [ -87.330078, 45.549538 ], [ -87.329216, 45.898045 ], [ -87.370407, 45.897785 ], [ -87.370888, 45.98473 ], [ -87.620338, 45.985188 ], [ -87.618874, 46.247551 ], [ -88.117798, 46.24712 ], [ -88.117409, 46.419403 ], [ -88.992722, 46.418163 ], [ -88.992073, 46.331093 ], [ -89.366119, 46.332916 ], [ -89.36499, 46.504402 ], [ -89.738808, 46.507069 ], [ -89.737686, 46.591949 ], [ -89.866028, 46.593441 ], [ -89.876047, 46.767605 ], [ -89.505821, 47.993664 ], [ -89.755028, 48.020103 ], [ -89.862091, 47.987865 ], [ -89.992905, 48.020023 ], [ -90.0, 48.25 ], [ -90.9639, 48.5 ], [ -90.9639, 49.0 ], [ -91.0, 49.0 ], [ -91.0, 49.25 ], [ -90.0, 49.5 ], [ -90.0, 50.75 ], [ -90.5, 51.0 ], [ -90.75, 51.25 ], [ -90.75, 51.5 ], [ -90.5, 51.75 ], [ -90.0, 52.0 ], [ -90.0, 52.75 ], [ -89.0, 52.75 ], [ -89.0, 53.0 ], [ -88.5, 53.375 ], [ -88.5, 53.625 ], [ -89.0, 54.0 ], [ -90.0, 54.0 ], [ -90.0, 56.218323 ], [ -88.991257, 56.847542 ], [ -89.111625, 62.483572 ], [ -85.828896, 66.053677 ], [ -85.0, 66.277794 ], [ -85.001862, 82.477631 ], [ -83.5, 82.477631 ], [ -82.5, 83.884861 ], [ -82.5, 89.0 ], [ -67.5, 89.0 ], [ -67.5, 83.075647 ], [ -67.233379, 83.056915 ], [ -67.135883, 83.084379 ], [ -67.024661, 83.079222 ], [ -66.919236, 83.053478 ], [ -66.865648, 83.070542 ], [ -66.342051, 83.046612 ], [ -66.282305, 83.007047 ], [ -66.257313, 82.919924 ], [ -65.769544, 82.970363 ], [ -65.436889, 82.95626 ], [ -65.388524, 82.935975 ], [ -65.288954, 83.002455 ], [ -65.07969, 83.022129 ], [ -64.883836, 83.030866 ], [ -64.671613, 83.018419 ], [ -64.591072, 82.982145 ], [ -64.406514, 82.991613 ], [ -64.345583, 82.957811 ], [ -64.317193, 82.906102 ], [ -64.227028, 82.93271 ], [ -63.970657, 82.957209 ], [ -63.605045, 82.952502 ], [ -63.503199, 82.94015 ], [ -63.403348, 82.904194 ], [ -63.357242, 82.859385 ], [ -63.336872, 82.768781 ], [ -63.276356, 82.763276 ], [ -63.1813, 82.711338 ], [ -63.104418, 82.71189 ], [ -62.915725, 82.683544 ], [ -62.863787, 82.631841 ], [ -62.33931, 82.64973 ], [ -62.214114, 82.643029 ], [ -62.165793, 82.623936 ], [ -62.000975, 82.621591 ], [ -61.90893, 82.605938 ], [ -61.722144, 82.608225 ], [ -61.543, 82.585584 ], [ -61.290347, 82.540235 ], [ -61.058591, 82.448218 ], [ -61.019637, 82.386655 ], [ -61.029705, 82.25726 ], [ -61.096123, 82.154212 ], [ -60.83773, 81.993177 ], [ -61.352363, 81.911005 ], [ -67.58747, 80.544598 ], [ -67.527728, 80.138835 ], [ -72.630033, 78.617357 ], [ -73.189731, 78.146032 ], [ -72.875515, 77.537238 ], [ -72.914792, 77.419406 ], [ -68.584494, 75.975974 ], [ -67.5, 75.908381 ], [ -67.5, 70.708098 ], [ -66.545454, 69.435369 ], [ -66.582533, 69.052218 ], [ -67.126361, 69.039858 ], [ -67.126361, 68.780304 ], [ -62.26899, 67.383656 ], [ -61.020659, 66.666792 ], [ -62.029349, 65.570622 ], [ -63.393725, 64.788114 ], [ -64.283625, 64.96115 ], [ -64.419582, 64.330805 ], [ -63.764517, 63.66338 ], [ -64.011711, 62.439767 ], [ -64.617337, 62.204933 ], [ -64.530819, 61.759983 ], [ -64.654416, 61.228515 ], [ -64.423387, 60.444915 ], [ -64.440437, 60.372677 ], [ -64.537498, 60.343452 ], [ -64.588181, 60.306404 ], [ -64.699448, 60.302635 ], [ -64.874908, 60.257504 ], [ -64.86235, 60.221676 ], [ -64.739769, 60.174461 ], [ -64.629044, 60.171368 ], [ -64.604942, 60.1161 ], [ -64.732185, 60.109608 ], [ -64.718903, 60.062664 ], [ -64.815681, 60.04221 ], [ -64.777657, 59.98143 ], [ -64.667885, 59.953541 ], [ -64.677155, 59.873558 ], [ -64.767593, 59.886227 ], [ -64.81794, 59.775974 ], [ -64.80468, 59.727665 ], [ -64.813911, 59.606285 ], [ -64.868813, 59.540173 ], [ -64.811913, 59.522137 ], [ -64.693459, 59.436302 ], [ -64.502419, 59.516979 ], [ -64.428757, 59.534565 ], [ -64.380951, 59.483273 ], [ -64.512054, 59.431496 ], [ -64.541122, 59.311596 ], [ -64.501427, 59.267277 ], [ -64.481346, 59.185791 ], [ -64.490822, 59.107204 ], [ -64.389297, 59.087387 ], [ -64.27533, 59.032913 ], [ -64.476921, 58.987122 ], [ -64.500397, 59.02034 ], [ -64.682114, 59.038971 ], [ -64.727188, 59.079105 ], [ -64.826553, 59.054508 ], [ -64.869774, 59.000793 ], [ -64.814339, 58.913784 ], [ -64.728615, 58.948063 ], [ -64.556015, 58.888149 ], [ -64.478401, 58.905739 ], [ -64.313301, 58.895195 ], [ -64.25042, 58.850655 ], [ -64.220306, 58.778721 ], [ -64.138885, 58.745033 ], [ -64.090706, 58.758461 ], [ -64.00621, 58.826756 ], [ -63.862324, 58.832359 ], [ -63.77261, 58.88113 ], [ -63.697842, 58.88448 ], [ -63.535618, 58.817772 ], [ -63.472019, 58.756268 ], [ -63.614429, 58.717983 ], [ -63.906498, 58.709984 ], [ -63.957691, 58.685616 ], [ -64.042343, 58.690475 ], [ -64.118462, 58.623482 ], [ -64.114548, 58.575169 ], [ -64.063133, 58.527866 ], [ -64.002739, 58.519089 ], [ -63.935162, 58.568153 ], [ -63.86491, 58.538525 ], [ -63.827675, 58.474705 ], [ -63.900291, 58.431255 ], [ -63.981594, 58.4389 ], [ -64.049484, 58.369122 ], [ -64.130943, 58.367008 ], [ -64.189522, 58.335709 ], [ -64.201935, 58.261314 ], [ -64.236847, 58.225693 ], [ -64.370621, 58.205837 ], [ -64.434036, 58.168941 ], [ -64.443527, 58.080723 ], [ -64.236115, 58.043629 ], [ -64.209846, 57.951046 ], [ -64.061966, 57.774773 ], [ -64.009201, 57.811562 ], [ -63.932144, 57.797077 ], [ -63.910942, 57.736202 ], [ -63.806503, 57.700687 ], [ -63.756523, 57.727741 ], [ -63.719959, 57.673557 ], [ -63.671249, 57.732315 ], [ -63.601131, 57.743904 ], [ -63.604565, 57.662575 ], [ -63.761837, 57.587135 ], [ -63.769665, 57.446564 ], [ -63.716553, 57.430813 ], [ -63.72937, 57.363392 ], [ -63.857983, 57.334412 ], [ -63.885437, 57.276779 ], [ -63.793568, 57.282734 ], [ -63.749256, 57.242275 ], [ -63.794434, 57.188992 ], [ -63.786495, 57.128246 ], [ -63.889454, 57.082432 ], [ -63.917702, 56.915913 ], [ -63.883633, 56.879742 ], [ -64.017738, 56.857571 ], [ -63.999454, 56.796764 ], [ -64.075348, 56.77813 ], [ -64.140068, 56.704235 ], [ -64.053886, 56.651165 ], [ -64.055115, 56.608459 ], [ -63.959179, 56.559364 ], [ -63.9636, 56.497402 ], [ -63.898109, 56.443031 ], [ -64.120804, 56.395439 ], [ -64.118523, 56.294849 ], [ -63.934132, 56.249126 ], [ -63.948311, 56.191406 ], [ -64.030746, 56.160488 ], [ -64.02832, 56.073692 ], [ -63.898319, 56.13306 ], [ -63.667984, 56.028603 ], [ -63.54475, 56.0 ], [ -63.848579, 55.911304 ], [ -63.774784, 55.807125 ], [ -63.678761, 55.784763 ], [ -63.71122, 55.727032 ], [ -63.669289, 55.565056 ], [ -63.697605, 55.516785 ], [ -63.786091, 55.467899 ], [ -63.698647, 55.429337 ], [ -63.476295, 55.425659 ], [ -63.346874, 55.413765 ], [ -63.420334, 55.35548 ], [ -63.557514, 55.347446 ], [ -63.638824, 55.292004 ], [ -63.545284, 55.236843 ], [ -63.423672, 55.264545 ], [ -63.437683, 55.216236 ], [ -63.550385, 55.188759 ], [ -63.607574, 55.088306 ], [ -63.570675, 55.043205 ], [ -63.622952, 54.907005 ], [ -63.813988, 54.953999 ], [ -63.852085, 54.871536 ], [ -63.819992, 54.832294 ], [ -63.913898, 54.777821 ], [ -63.777527, 54.703114 ], [ -63.812431, 54.648151 ], [ -63.904949, 54.608559 ], [ -64.011559, 54.60318 ], [ -64.11338, 54.62574 ], [ -64.191948, 54.7267 ], [ -64.283089, 54.72961 ], [ -64.365982, 54.78233 ], [ -64.467125, 54.788647 ], [ -64.563538, 54.721684 ], [ -64.784988, 54.737312 ], [ -64.773277, 54.832859 ], [ -64.845146, 54.841122 ], [ -64.860458, 54.884434 ], [ -64.956978, 54.935818 ], [ -65.075279, 54.967976 ], [ -65.149673, 54.929554 ], [ -65.200188, 54.85318 ], [ -65.35025, 54.82019 ], [ -65.435753, 54.846989 ], [ -65.427284, 54.775288 ], [ -65.466896, 54.73584 ], [ -65.638161, 54.747559 ], [ -65.705078, 54.715725 ], [ -65.765266, 54.80294 ], [ -65.889313, 54.93021 ], [ -66.054451, 54.917423 ], [ -66.150368, 54.972336 ], [ -66.24614, 54.973854 ], [ -66.385597, 55.09972 ], [ -66.613495, 55.274731 ], [ -66.706932, 55.289333 ], [ -66.802719, 55.359394 ], [ -66.796715, 55.28117 ], [ -66.75724, 55.218681 ], [ -66.778114, 55.128025 ], [ -66.746277, 55.059856 ], [ -66.782082, 54.997711 ], [ -66.70652, 54.939182 ], [ -66.609062, 54.82106 ], [ -66.677635, 54.740715 ], [ -66.741455, 54.750851 ], [ -66.969551, 54.827576 ], [ -67.033974, 54.858681 ], [ -67.126701, 54.942417 ], [ -67.215477, 54.9837 ], [ -67.328018, 55.078453 ], [ -67.401978, 55.088741 ], [ -67.450096, 55.049252 ], [ -67.407936, 54.967117 ], [ -67.226372, 54.818493 ], [ -67.077248, 54.713688 ], [ -67.077362, 54.679066 ], [ -67.148384, 54.621872 ], [ -67.232353, 54.609047 ], [ -67.279732, 54.576733 ], [ -67.230316, 54.521111 ], [ -67.283096, 54.47953 ], [ -67.413651, 54.531979 ], [ -67.44381, 54.485916 ], [ -67.598495, 54.469299 ], [ -67.77636, 54.424881 ], [ -67.738434, 54.346668 ], [ -67.663063, 54.288429 ], [ -67.65435, 54.155155 ], [ -67.75264, 54.151363 ], [ -67.811447, 54.01543 ], [ -67.695534, 53.978146 ], [ -67.610466, 53.885384 ], [ -67.53054, 53.837482 ], [ -67.519745, 53.753666 ], [ -67.457558, 53.716816 ], [ -67.382957, 53.606777 ], [ -67.305305, 53.549458 ], [ -67.072174, 53.535809 ], [ -66.937073, 53.471714 ], [ -66.898712, 53.40712 ], [ -67.012939, 53.327198 ], [ -66.959831, 53.30201 ], [ -66.970772, 53.188499 ], [ -67.027504, 53.073238 ], [ -67.279381, 53.177761 ], [ -67.388168, 53.061676 ], [ -67.338364, 52.894337 ], [ -67.193954, 52.833458 ], [ -67.100082, 52.881489 ], [ -67.030663, 52.758392 ], [ -66.972221, 52.769363 ], [ -66.908562, 52.698902 ], [ -66.841812, 52.753429 ], [ -66.761292, 52.714378 ], [ -66.661972, 52.807552 ], [ -66.647285, 52.931095 ], [ -66.492287, 52.964046 ], [ -66.494415, 53.024708 ], [ -66.358208, 53.008987 ], [ -66.274628, 52.889977 ], [ -66.310661, 52.847744 ], [ -66.409286, 52.866638 ], [ -66.327843, 52.769566 ], [ -66.335304, 52.695099 ], [ -66.285118, 52.631683 ], [ -66.310921, 52.598454 ], [ -66.38752, 52.667114 ], [ -66.433334, 52.616276 ], [ -66.365059, 52.500645 ], [ -66.374992, 52.360435 ], [ -66.427574, 52.381931 ], [ -66.483658, 52.319031 ], [ -66.367516, 52.187653 ], [ -66.281693, 52.164001 ], [ -66.315025, 52.278526 ], [ -66.272133, 52.319317 ], [ -66.185753, 52.212139 ], [ -66.144218, 52.230568 ], [ -66.080101, 52.165752 ], [ -66.094048, 52.106564 ], [ -65.976448, 52.062778 ], [ -65.856354, 52.123314 ], [ -65.730988, 52.092739 ], [ -65.677971, 52.117973 ], [ -65.647079, 52.067871 ], [ -65.55899, 52.047497 ], [ -65.508339, 52.104397 ], [ -65.480385, 52.037167 ], [ -65.352196, 51.934624 ], [ -65.383522, 51.874088 ], [ -65.263268, 51.874905 ], [ -65.18763, 51.822567 ], [ -65.176178, 51.764648 ], [ -65.055199, 51.769421 ], [ -64.930618, 51.727718 ], [ -64.914711, 51.778309 ], [ -64.715996, 51.760509 ], [ -64.559074, 51.595375 ], [ -64.460228, 51.629833 ], [ -64.424278, 51.676289 ], [ -64.348061, 51.680485 ], [ -64.290962, 51.750557 ], [ -64.353928, 51.8451 ], [ -64.36274, 52.016701 ], [ -64.258835, 51.97765 ], [ -64.301903, 52.075222 ], [ -64.248138, 52.14719 ], [ -64.181793, 52.1422 ], [ -64.249825, 52.282864 ], [ -64.12455, 52.398003 ], [ -64.166214, 52.527477 ], [ -64.172752, 52.677155 ], [ -64.128342, 52.738171 ], [ -63.950115, 52.731518 ], [ -63.859756, 52.776287 ], [ -63.745872, 52.777332 ], [ -63.669006, 52.819706 ], [ -63.629963, 52.873257 ], [ -63.587391, 52.847294 ], [ -63.615501, 52.770523 ], [ -63.469555, 52.723072 ], [ -63.431637, 52.647064 ], [ -63.608059, 52.646759 ], [ -63.864098, 52.62286 ], [ -64.043907, 52.55703 ], [ -64.091812, 52.461369 ], [ -64.007057, 52.364895 ], [ -63.785339, 52.30777 ], [ -63.724457, 52.204418 ], [ -63.703758, 52.111706 ], [ -63.717384, 52.047218 ], [ -63.810112, 52.08572 ], [ -63.81485, 51.992664 ], [ -63.043537, 51.994617 ], [ -62.588673, 51.998413 ], [ -62.003502, 51.996037 ], [ -61.460416, 50.03299 ], [ -61.023476, 47.793434 ], [ -61.458472, 46.886023 ], [ -61.982338, 46.839249 ], [ -63.086199, 48.495041 ], [ -65.082414, 47.947287 ], [ -65.836212, 47.901775 ], [ -65.908707, 47.918674 ], [ -66.081459, 47.924438 ], [ -66.162239, 47.967869 ], [ -66.354095, 48.005039 ], [ -66.404167, 48.061893 ], [ -66.623032, 48.0 ], [ -66.747162, 47.983196 ], [ -66.879776, 47.992432 ], [ -66.9412, 47.968956 ], [ -66.986931, 47.893955 ], [ -67.049728, 47.929955 ], [ -67.214417, 47.872444 ], [ -67.291824, 47.895664 ], [ -67.401993, 47.864853 ], [ -67.594055, 47.926342 ], [ -67.604965, 47.999729 ], [ -68.119347, 47.999317 ], [ -68.122009, 47.915886 ], [ -68.380928, 47.913044 ], [ -68.382324, 47.551445 ], [ -68.571953, 47.425274 ], [ -68.777863, 47.355145 ], [ -69.054314, 47.297367 ], [ -69.049385, 47.252182 ], [ -68.89502, 47.178871 ], [ -68.733223, 47.237576 ], [ -68.630783, 47.241512 ], [ -68.583153, 47.287064 ], [ -68.514191, 47.2994 ], [ -68.389313, 47.287231 ], [ -68.367783, 47.354519 ], [ -68.288429, 47.364616 ], [ -68.165047, 47.330441 ], [ -68.132225, 47.294926 ], [ -67.95488, 47.194416 ], [ -67.887802, 47.10519 ], [ -67.786537, 47.066189 ], [ -67.79213, 46.851105 ], [ -67.782326, 46.393806 ], [ -67.783424, 45.939587 ], [ -67.808578, 45.879948 ], [ -67.761467, 45.819256 ], [ -67.811722, 45.788021 ], [ -67.800896, 45.675812 ], [ -67.701996, 45.65992 ], [ -67.615891, 45.607384 ], [ -67.502373, 45.585773 ], [ -67.447205, 45.600407 ], [ -67.407036, 45.553661 ], [ -67.495621, 45.478832 ], [ -67.439293, 45.397163 ], [ -67.430931, 45.344975 ], [ -67.48526, 45.287174 ], [ -67.418083, 45.187469 ], [ -67.343697, 45.126141 ], [ -67.277275, 45.186352 ], [ -67.149239, 45.157242 ], [ -67.088074, 45.076889 ], [ -66.920624, 45.04821 ], [ -66.656164, 44.852865 ], [ -66.605632, 44.753058 ], [ -66.579918, 44.60813 ], [ -66.621559, 44.529584 ], [ -66.729553, 44.452691 ], [ -66.800492, 44.452999 ], [ -66.854522, 44.486828 ], [ -66.979478, 44.497624 ], [ -67.021906, 44.545683 ], [ -67.039305, 44.61535 ], [ -67.115454, 44.551112 ], [ -67.232154, 44.493175 ], [ -67.399357, 44.473257 ], [ -67.416511, 44.427991 ], [ -67.5, 44.356606 ], [ -67.5, 20.0 ], [ -71.8, 20.0 ], [ -71.8, 19.8 ], [ -71.733536, 19.654676 ], [ -71.738747, 19.584814 ], [ -71.686096, 19.505245 ], [ -71.675034, 19.441677 ], [ -71.764893, 19.315668 ], [ -71.747078, 19.279165 ], [ -71.613358, 19.201639 ], [ -71.633957, 19.129425 ], [ -71.815666, 18.991751 ], [ -71.739555, 18.890114 ], [ -71.716957, 18.825472 ], [ -71.737732, 18.730448 ], [ -71.79586, 18.693542 ], [ -71.807724, 18.636812 ], [ -71.87027, 18.629663 ], [ -71.965851, 18.653511 ], [ -71.95224, 18.581852 ], [ -71.877922, 18.505085 ], [ -71.900253, 18.458145 ], [ -71.786385, 18.37888 ], [ -71.692856, 18.341171 ], [ -71.779861, 18.175028 ], [ -71.731537, 18.080132 ], [ -71.754051, 18.030148 ], [ -71.754051, 12.6 ], [ -71.210802, 12.6 ], [ -71.004998, 11.957713 ], [ -71.319916, 11.844101 ], [ -71.377151, 11.817017 ], [ -71.777512, 11.694505 ], [ -71.966057, 11.650083 ], [ -72.237442, 11.152378 ], [ -72.341637, 11.157571 ], [ -72.46714, 11.111311 ], [ -72.562035, 10.935012 ], [ -72.642365, 10.883132 ], [ -72.711716, 10.708698 ], [ -72.837746, 10.542693 ], [ -72.885368, 10.460829 ], [ -72.900017, 10.361233 ], [ -72.91404, 10.108714 ], [ -72.97757, 9.976038 ], [ -72.990448, 9.882874 ], [ -72.947723, 9.840187 ], [ -73.049919, 9.684622 ], [ -73.080238, 9.565972 ], [ -73.145767, 9.545272 ], [ -73.192924, 9.44317 ], [ -73.238029, 9.407462 ], [ -73.350319, 9.182608 ], [ -73.244011, 9.165613 ], [ -73.174316, 9.182858 ], [ -73.129234, 9.234805 ], [ -73.01078, 9.296101 ], [ -72.963615, 9.207809 ], [ -72.968483, 9.138689 ], [ -72.928604, 9.086787 ], [ -72.879364, 9.135428 ], [ -72.777946, 9.116374 ], [ -72.74379, 9.015926 ], [ -72.65313, 8.626049 ], [ -72.584145, 8.567546 ], [ -72.391769, 8.352717 ], [ -72.391029, 8.263382 ], [ -72.355118, 8.17062 ], [ -72.345818, 8.04909 ], [ -72.413818, 8.038215 ], [ -72.46431, 7.914371 ], [ -72.44902, 7.830923 ], [ -72.473854, 7.785588 ], [ -72.479225, 7.626878 ], [ -72.456696, 7.560476 ], [ -72.480705, 7.484615 ], [ -72.43866, 7.400355 ], [ -72.259674, 7.375656 ], [ -72.203331, 7.381046 ], [ -72.165939, 7.328435 ], [ -72.173103, 7.251312 ], [ -72.033905, 7.023821 ], [ -72.007805, 7.008928 ], [ -71.840485, 7.007701 ], [ -71.820343, 7.045744 ], [ -71.734474, 7.061688 ], [ -71.660118, 7.022361 ], [ -71.421059, 7.033195 ], [ -71.330185, 7.012481 ], [ -71.153076, 7.029184 ], [ -71.104218, 6.986735 ], [ -70.952988, 6.985921 ], [ -70.897026, 7.057353 ], [ -70.691467, 7.092551 ], [ -70.637451, 7.064274 ], [ -70.560799, 7.076914 ], [ -70.508255, 7.011652 ], [ -70.386948, 6.981435 ], [ -70.338409, 6.940162 ], [ -70.082687, 6.998269 ], [ -69.956154, 6.825918 ], [ -69.450424, 6.116735 ], [ -69.323372, 6.150324 ], [ -69.277451, 6.092443 ], [ -69.215149, 6.087361 ], [ -69.112648, 6.183323 ], [ -69.051498, 6.21296 ], [ -68.932892, 6.175571 ], [ -68.840569, 6.184695 ], [ -68.669266, 6.133347 ], [ -68.471756, 6.187953 ], [ -68.349831, 6.166835 ], [ -68.144501, 6.223938 ], [ -68.04213, 6.205653 ], [ -67.967018, 6.212051 ], [ -67.841576, 6.30199 ], [ -67.634148, 6.280529 ], [ -67.551483, 6.2492 ], [ -67.476051, 6.194591 ], [ -67.481003, 6.082065 ], [ -67.421112, 6.005971 ], [ -67.464241, 5.947548 ], [ -67.578835, 5.849186 ], [ -67.643753, 5.701122 ], [ -67.638153, 5.595519 ], [ -67.613472, 5.531435 ], [ -67.655846, 5.467006 ], [ -67.810722, 5.363085 ], [ -67.851151, 5.283 ], [ -67.796211, 5.099607 ], [ -67.794281, 5.039307 ], [ -67.829582, 4.906523 ], [ -67.817451, 4.828317 ], [ -67.871933, 4.514005 ], [ -67.830055, 4.488444 ], [ -67.784363, 4.350779 ], [ -67.809181, 4.233227 ], [ -67.784279, 4.164749 ], [ -67.736122, 4.118264 ], [ -67.6782, 3.914804 ], [ -67.619453, 3.76637 ], [ -67.582863, 3.735934 ], [ -67.509827, 3.74597 ], [ -67.446846, 3.659711 ], [ -67.382988, 3.484581 ], [ -67.32766, 3.459059 ], [ -67.302628, 3.397936 ], [ -67.391907, 3.248784 ], [ -67.434258, 3.246967 ], [ -67.854393, 2.869817 ], [ -67.81823, 2.832805 ], [ -67.714523, 2.812518 ], [ -67.615616, 2.812483 ], [ -67.567192, 2.72809 ], [ -67.571739, 2.683892 ], [ -67.492493, 2.669326 ], [ -67.478973, 2.621054 ], [ -67.39254, 2.568002 ], [ -67.275841, 2.43531 ], [ -67.195045, 2.391271 ], [ -67.173134, 2.344553 ], [ -67.211296, 2.250561 ], [ -67.156792, 2.121075 ], [ -67.10463, 2.065851 ], [ -67.126343, 1.992833 ], [ -67.071228, 1.914842 ], [ -66.974915, 1.63547 ], [ -66.974472, 1.586011 ], [ -66.929901, 1.478775 ], [ -66.926147, 1.418306 ], [ -66.886032, 1.362688 ], [ -66.893997, 1.275092 ], [ -66.869835, 1.225646 ], [ -67.096664, 1.170079 ], [ -67.106468, 1.265936 ], [ -67.068146, 1.532232 ], [ -67.116821, 1.732161 ], [ -67.250252, 1.915157 ], [ -67.360504, 2.114372 ], [ -67.446159, 2.141113 ], [ -67.577995, 2.075562 ], [ -67.668312, 1.987888 ], [ -67.786316, 1.823212 ], [ -67.896362, 1.756818 ], [ -67.971497, 1.744901 ], [ -68.067078, 1.831797 ], [ -68.116913, 1.951853 ], [ -68.222206, 1.972644 ], [ -68.283348, 1.835377 ], [ -68.246483, 1.786587 ], [ -68.182411, 1.775226 ], [ -68.162056, 1.734391 ], [ -68.638809, 1.72874 ], [ -69.394562, 1.725671 ], [ -69.55574, 1.775197 ], [ -69.654381, 1.725768 ], [ -69.740173, 1.735307 ], [ -69.778572, 1.702608 ], [ -69.855194, 1.714919 ], [ -69.854073, 1.069752 ], [ -69.817978, 1.055002 ], [ -69.753181, 1.095937 ], [ -69.70034, 1.055641 ], [ -69.608215, 1.073588 ], [ -69.45575, 1.056308 ], [ -69.416382, 1.023687 ], [ -69.329239, 1.062455 ], [ -69.256721, 1.025505 ], [ -69.185387, 0.952575 ], [ -69.191086, 0.898657 ], [ -69.136986, 0.868457 ], [ -69.183502, 0.730424 ], [ -69.11412, 0.652157 ], [ -69.186417, 0.638649 ], [ -69.201538, 0.601751 ], [ -69.294975, 0.648283 ], [ -69.358734, 0.622597 ], [ -69.468208, 0.734351 ], [ -69.565781, 0.685351 ], [ -69.60849, 0.625333 ], [ -69.651031, 0.670095 ], [ -69.79837, 0.584742 ], [ -69.910034, 0.589937 ], [ -70.037407, 0.545666 ], [ -70.035652, 0.370532 ], [ -70.068024, -0.134779 ], [ -69.907867, -0.315769 ], [ -69.850311, -0.33523 ], [ -69.730736, -0.456756 ], [ -69.630165, -0.488653 ], [ -69.589615, -0.524037 ], [ -69.586632, -0.604281 ], [ -69.551125, -0.648225 ], [ -69.59539, -0.777214 ], [ -69.551628, -0.81282 ], [ -69.507874, -0.93641 ], [ -69.419884, -1.003208 ], [ -69.437737, -1.028683 ], [ -69.410065, -1.131677 ], [ -69.375145, -1.17331 ], [ -69.368347, -1.333702 ], [ -69.386276, -1.395636 ], [ -69.452515, -1.477611 ], [ -69.447906, -1.552427 ], [ -69.664642, -2.750283 ], [ -69.777878, -3.398282 ], [ -69.922127, -4.161763 ], [ -69.945732, -4.225544 ], [ -67.557743, -9.537873 ], [ -66.645844, -9.913334 ], [ -66.883392, -10.080641 ], [ -67.029045, -10.254179 ], [ -67.134956, -10.287621 ], [ -67.181442, -10.337565 ], [ -67.237053, -10.312564 ], [ -67.315147, -10.316207 ], [ -67.327187, -10.374251 ], [ -67.406563, -10.369332 ], [ -67.443138, -10.449774 ], [ -67.588333, -10.518331 ], [ -67.632622, -10.598266 ], [ -67.684845, -10.628266 ], [ -67.734154, -10.716403 ], [ -67.810921, -10.662381 ], [ -67.869614, -10.654002 ], [ -68.059845, -10.679408 ], [ -68.184837, -10.835507 ], [ -68.246811, -10.951306 ], [ -68.289696, -10.990559 ], [ -68.367699, -11.002431 ], [ -68.414558, -11.041128 ], [ -68.512932, -11.045891 ], [ -68.587486, -11.110317 ], [ -68.738495, -11.143052 ], [ -68.776924, -11.124155 ], [ -68.750626, -11.006585 ], [ -68.819534, -10.994572 ], [ -68.867424, -11.023735 ], [ -69.060692, -10.977282 ], [ -69.312073, -10.956348 ], [ -69.390045, -10.93192 ], [ -69.433586, -10.951978 ], [ -69.566444, -10.956658 ], [ -69.027916, -11.81721 ], [ -68.92421, -11.993988 ], [ -68.679298, -12.497149 ], [ -68.704315, -12.559611 ], [ -68.753471, -12.592457 ], [ -68.727699, -12.671489 ], [ -68.750259, -12.720067 ], [ -68.874176, -12.750437 ], [ -68.962212, -12.855412 ], [ -68.970032, -13.000739 ], [ -68.944115, -13.072187 ], [ -68.960274, -13.179576 ], [ -68.941727, -13.485863 ], [ -68.997284, -13.652464 ], [ -69.074356, -13.64808 ], [ -69.046982, -13.721612 ], [ -68.95919, -13.882266 ], [ -68.965302, -13.973227 ], [ -68.880791, -14.065045 ], [ -68.854919, -14.121583 ], [ -68.858139, -14.220421 ], [ -68.981529, -14.236923 ], [ -68.996376, -14.300499 ], [ -68.979767, -14.387169 ], [ -69.061058, -14.433229 ], [ -69.153755, -14.512995 ], [ -69.146095, -14.579051 ], [ -69.236153, -14.601929 ], [ -69.251694, -14.758834 ], [ -69.352882, -14.793632 ], [ -69.348763, -14.903423 ], [ -69.374557, -14.954077 ], [ -69.279549, -15.112489 ], [ -69.19072, -15.163446 ], [ -69.125984, -15.256123 ], [ -69.185593, -15.261448 ], [ -69.264549, -15.335523 ], [ -69.296959, -15.418922 ], [ -69.413857, -15.62077 ], [ -69.298004, -15.938698 ], [ -69.235939, -16.143026 ], [ -69.09922, -16.219093 ], [ -68.962921, -16.188629 ], [ -68.817986, -16.315248 ], [ -68.817299, -16.342781 ], [ -68.982368, -16.43272 ], [ -69.031616, -16.560858 ], [ -68.996452, -16.659943 ], [ -69.1735, -16.740662 ], [ -69.181992, -16.793577 ], [ -69.391891, -17.020998 ], [ -69.374825, -17.078199 ], [ -69.457253, -17.10425 ], [ -69.551376, -17.161558 ], [ -69.610977, -17.254417 ], [ -69.462875, -17.375532 ], [ -69.462646, -17.507553 ], [ -69.504128, -17.539856 ], [ -69.521797, -17.554321 ], [ -69.556435, -17.583485 ], [ -69.622948, -17.63035 ], [ -69.640366, -17.642509 ], [ -69.682777, -17.660521 ], [ -69.769554, -17.651014 ], [ -69.794884, -17.647888 ], [ -69.798996, -17.650354 ], [ -69.809151, -17.67156 ], [ -69.821335, -17.701181 ], [ -69.819786, -17.72127 ], [ -69.815636, -17.757608 ], [ -69.785141, -17.775152 ], [ -69.779915, -17.778137 ], [ -69.796562, -17.799433 ], [ -69.792397, -17.869772 ], [ -69.760178, -17.925591 ], [ -69.745201, -17.949694 ], [ -69.755455, -17.991808 ], [ -69.785194, -18.051785 ], [ -69.844391, -18.150139 ], [ -69.915024, -18.208796 ], [ -69.967789, -18.259893 ], [ -69.993889, -18.267984 ], [ -70.022491, -18.26799 ], [ -70.09716, -18.290216 ], [ -70.13665, -18.307026 ], [ -70.159409, -18.315836 ], [ -70.340485, -18.316393 ], [ -70.355125, -18.32762 ], [ -70.374191, -18.349728 ], [ -70.495941, -18.266405 ], [ -70.55027, -18.228975 ], [ -70.557053, -18.225275 ], [ -70.595955, -18.199251 ], [ -70.661977, -18.301169 ], [ -70.660123, -18.301999 ], [ -70.641379, -18.315255 ], [ -70.612258, -18.331945 ], [ -70.603343, -18.336601 ], [ -70.582397, -18.349626 ], [ -70.542751, -18.376899 ], [ -70.53013, -18.385107 ], [ -70.518284, -18.393644 ], [ -70.457849, -18.435834 ], [ -70.449353, -18.448188 ], [ -70.447682, -18.450119 ], [ -70.452075, -18.47031 ], [ -70.450467, -18.479481 ], [ -70.45758, -18.565639 ], [ -70.45858, -18.597806 ], [ -70.464881, -18.624998 ], [ -70.466231, -18.636931 ], [ -70.465433, -18.669709 ], [ -70.460912, -18.696891 ], [ -70.470116, -18.750614 ], [ -70.476248, -18.767357 ], [ -70.479226, -18.804926 ], [ -70.469357, -18.844085 ], [ -70.469463, -18.853067 ], [ -70.447291, -18.907029 ], [ -70.445518, -18.914983 ], [ -70.444711, -18.928768 ], [ -70.44157, -18.96374 ], [ -70.432349, -18.99882 ], [ -70.435106, -19.01039 ], [ -70.431107, -19.052266 ], [ -70.410275, -19.104772 ], [ -70.407679, -19.117294 ], [ -70.403659, -19.125055 ], [ -70.395655, -19.164377 ], [ -70.391742, -19.171365 ], [ -70.396757, -19.184081 ], [ -70.403158, -19.235316 ], [ -70.399159, -19.250227 ], [ -70.401683, -19.270528 ], [ -70.404274, -19.297692 ], [ -70.401488, -19.332389 ], [ -70.364648, -19.410987 ], [ -70.351154, -19.430328 ], [ -70.333477, -19.487595 ], [ -70.332178, -19.49898 ], [ -70.327443, -19.517503 ], [ -70.327976, -19.523391 ], [ -70.344437, -19.548007 ], [ -70.35466, -19.58345 ], [ -70.353634, -19.620324 ], [ -70.352955, -19.624011 ], [ -70.316581, -19.690223 ], [ -70.289556, -19.713809 ], [ -70.279723, -19.748135 ], [ -70.272029, -19.763628 ], [ -70.271354, -19.77054 ], [ -70.272253, -19.771792 ], [ -70.283646, -19.809247 ], [ -70.282376, -19.848375 ], [ -70.270466, -19.883064 ], [ -70.263789, -19.892276 ], [ -70.259352, -19.932189 ], [ -70.260351, -19.940406 ], [ -70.249117, -20.000498 ], [ -70.245207, -20.008013 ], [ -70.252995, -20.0784 ], [ -70.252545, -20.081853 ], [ -70.26666, -20.121401 ], [ -70.272027, -20.15861 ], [ -70.280163, -20.188213 ], [ -70.285947, -20.294725 ], [ -70.303544, -20.349413 ], [ -70.299331, -20.408118 ], [ -70.28847, -20.435501 ], [ -70.302374, -20.467422 ], [ -70.316847, -20.503067 ], [ -70.320566, -20.540608 ], [ -70.314779, -20.584468 ], [ -70.318227, -20.610409 ], [ -70.313851, -20.652797 ], [ -70.311925, -20.678872 ], [ -70.3184, -20.719342 ], [ -70.316218, -20.734863 ], [ -70.317496, -20.763723 ], [ -70.32773, -20.802778 ], [ -70.295292, -20.894098 ], [ -70.274035, -20.911199 ], [ -70.263222, -20.921999 ], [ -70.289692, -20.984395 ], [ -70.295262, -21.050279 ], [ -70.264149, -21.10853 ], [ -70.254777, -21.143496 ], [ -70.232257, -21.196293 ], [ -70.226789, -21.210381 ], [ -70.208551, -21.246802 ], [ -70.202659, -21.287063 ], [ -70.214364, -21.358898 ], [ -70.191117, -21.433349 ], [ -70.201415, -21.465829 ], [ -70.20271, -21.499218 ], [ -70.201734, -21.503196 ], [ -70.208156, -21.530153 ], [ -70.211864, -21.532056 ], [ -70.245821, -21.564894 ], [ -70.263394, -21.603235 ], [ -70.266495, -21.628426 ], [ -70.269057, -21.647172 ], [ -70.274293, -21.692727 ], [ -70.275835, -21.737849 ], [ -70.275491, -21.743896 ], [ -70.27748, -21.751595 ], [ -70.274725, -21.79021 ], [ -70.273084, -21.797115 ], [ -70.268823, -21.808659 ], [ -70.27805, -21.816681 ], [ -70.299601, -21.84827 ], [ -70.31012, -21.885034 ], [ -70.300952, -21.943313 ], [ -70.305552, -21.968013 ], [ -70.312467, -22.021474 ], [ -70.329287, -22.073336 ], [ -70.330073, -22.077458 ], [ -70.329076, -22.104779 ], [ -70.336842, -22.131184 ], [ -70.344271, -22.203424 ], [ -70.35972, -22.268014 ], [ -70.359373, -22.289356 ], [ -70.366112, -22.321547 ], [ -70.371546, -22.345652 ], [ -70.380293, -22.443276 ], [ -70.380583, -22.446944 ], [ -70.377078, -22.486659 ], [ -70.374699, -22.49196 ], [ -70.394671, -22.53708 ], [ -70.397751, -22.577909 ], [ -70.397409, -22.579157 ], [ -70.398289, -22.594248 ], [ -70.408133, -22.639886 ], [ -70.406133, -22.676393 ], [ -70.411021, -22.697268 ], [ -70.428971, -22.773247 ], [ -70.428734, -22.77412 ], [ -70.432546, -22.794532 ], [ -70.430744, -22.823912 ], [ -70.414908, -22.877256 ], [ -70.424774, -22.902947 ], [ -70.426855, -22.905265 ], [ -70.52287, -22.902068 ], [ -70.598326, -22.935829 ], [ -70.605753, -22.944574 ], [ -70.651931, -22.988367 ], [ -70.653594, -22.989731 ], [ -70.694476, -23.052241 ], [ -70.698464, -23.089085 ], [ -70.696345, -23.09942 ], [ -70.692413, -23.138528 ], [ -70.688215, -23.149254 ], [ -70.719339, -23.271197 ], [ -70.715543, -23.301663 ], [ -70.713887, -23.323196 ], [ -70.721812, -23.382371 ], [ -70.723234, -23.396477 ], [ -70.729552, -23.428075 ], [ -70.738778, -23.473192 ], [ -70.743279, -23.526422 ], [ -70.741906, -23.534461 ], [ -70.72621, -23.576506 ], [ -70.691251, -23.613573 ], [ -70.653263, -23.632901 ], [ -70.610916, -23.637731 ], [ -70.610231, -23.637733 ], [ -70.574706, -23.650181 ], [ -70.573056, -23.650253 ], [ -70.538478, -23.652649 ], [ -70.549483, -23.666024 ], [ -70.583934, -23.710589 ], [ -70.585711, -23.712378 ], [ -70.588061, -23.71514 ], [ -70.617943, -23.801527 ], [ -70.634002, -23.876773 ], [ -70.625654, -23.903883 ], [ -70.627683, -23.936423 ], [ -70.631906, -23.972655 ], [ -70.629961, -23.988342 ], [ -70.630682, -24.000187 ], [ -70.634875, -24.027781 ], [ -70.634691, -24.030939 ], [ -70.629078, -24.060895 ], [ -70.623805, -24.072098 ], [ -70.633208, -24.12773 ], [ -70.631442, -24.151441 ], [ -70.64769, -24.203605 ], [ -70.655834, -24.244797 ], [ -70.664517, -24.294196 ], [ -70.671395, -24.345794 ], [ -70.672075, -24.364867 ], [ -70.672426, -24.370799 ], [ -70.669297, -24.405995 ], [ -70.690937, -24.499729 ], [ -70.695653, -24.514573 ], [ -70.696191, -24.569949 ], [ -70.6834, -24.604486 ], [ -70.691435, -24.670596 ], [ -70.692578, -24.673647 ], [ -70.700094, -24.710532 ], [ -70.695813, -24.74793 ], [ -70.669747, -24.823168 ], [ -70.669457, -24.826874 ], [ -70.665312, -24.856163 ], [ -70.651747, -24.890235 ], [ -70.652415, -24.897673 ], [ -70.652285, -24.904006 ], [ -70.636857, -24.962356 ], [ -70.613267, -25.0 ], [ -81.5, -25.0 ], [ -81.5, -35.0 ], [ -72.307323, -35.0 ], [ -72.305087, -35.011572 ], [ -72.307463, -35.026777 ], [ -72.337346, -35.039588 ], [ -72.360866, -35.052998 ], [ -72.408657, -35.086558 ], [ -72.429399, -35.09995 ], [ -72.47588, -35.138128 ], [ -72.532787, -35.253336 ], [ -72.552155, -35.266983 ], [ -72.556321, -35.270631 ], [ -72.619076, -35.386358 ], [ -72.637875, -35.418268 ], [ -72.658769, -35.43863 ], [ -72.669674, -35.44465 ], [ -72.6968, -35.46486 ], [ -72.723629, -35.499816 ], [ -72.741169, -35.530257 ], [ -72.748275, -35.555857 ], [ -72.755904, -35.62408 ], [ -72.715633, -35.702587 ], [ -72.703458, -35.730927 ], [ -72.726513, -35.750659 ], [ -72.845431, -35.866314 ], [ -72.868609, -35.884968 ], [ -72.897939, -35.926253 ], [ -72.907922, -35.972831 ], [ -72.905412, -36.000197 ], [ -72.926254, -36.034678 ], [ -72.93149, -36.132529 ], [ -72.944092, -36.189015 ], [ -72.941898, -36.222013 ], [ -72.936135, -36.258245 ], [ -72.972883, -36.313254 ], [ -73.020774, -36.414236 ], [ -73.086346, -36.474374 ], [ -73.144233, -36.496128 ], [ -73.182142, -36.512082 ], [ -73.210431, -36.537299 ], [ -73.231089, -36.574354 ], [ -73.251686, -36.630909 ], [ -73.266101, -36.653847 ], [ -73.282319, -36.671618 ], [ -73.294417, -36.684225 ], [ -73.331862, -36.741122 ], [ -73.339139, -36.792353 ], [ -73.328885, -36.831872 ], [ -73.274109, -36.891653 ], [ -73.28278, -36.917882 ], [ -73.306949, -36.973713 ], [ -73.307212, -37.031151 ], [ -73.301542, -37.050222 ], [ -73.293934, -37.069231 ], [ -73.296121, -37.087905 ], [ -73.342036, -37.092527 ], [ -73.337078, -37.053156 ], [ -73.344152, -37.014538 ], [ -73.379111, -36.956838 ], [ -73.463488, -36.87032 ], [ -73.54064, -36.850858 ], [ -73.617456, -36.884347 ], [ -73.655719, -36.961852 ], [ -73.675704, -37.023344 ], [ -73.672211, -37.059235 ], [ -73.674843, -37.066276 ], [ -73.762867, -37.176732 ], [ -73.773922, -37.206089 ], [ -73.783312, -37.245863 ], [ -73.7913, -37.28377 ], [ -73.802498, -37.367272 ], [ -73.793909, -37.410985 ], [ -73.738528, -37.474882 ], [ -73.755038, -37.515914 ], [ -73.767617, -37.529967 ], [ -73.792824, -37.591641 ], [ -73.798611, -37.628073 ], [ -73.792326, -37.666865 ], [ -73.781113, -37.688655 ], [ -73.782048, -37.69845 ], [ -73.785596, -37.715865 ], [ -73.764192, -37.79145 ], [ -73.648718, -37.927931 ], [ -73.596819, -38.022076 ], [ -73.595417, -38.029297 ], [ -73.578847, -38.087294 ], [ -73.596975, -38.166163 ], [ -73.623831, -38.207368 ], [ -73.635129, -38.251714 ], [ -73.633145, -38.266398 ], [ -73.634613, -38.291075 ], [ -73.652132, -38.404831 ], [ -73.646701, -38.421908 ], [ -73.647873, -38.431403 ], [ -73.643759, -38.44916 ], [ -73.643831, -38.458748 ], [ -73.64007, -38.479585 ], [ -73.6362, -38.512587 ], [ -73.636045, -38.512959 ], [ -73.627522, -38.551318 ], [ -73.607602, -38.648954 ], [ -73.607399, -38.650443 ], [ -73.607909, -38.676008 ], [ -73.568341, -38.762682 ], [ -73.542259, -38.810527 ], [ -73.534932, -38.819757 ], [ -73.523674, -38.845301 ], [ -73.512207, -38.864626 ], [ -73.506783, -38.877767 ], [ -73.493508, -38.909311 ], [ -73.463868, -38.974001 ], [ -73.445111, -39.006863 ], [ -73.403229, -39.106604 ], [ -73.384891, -39.172057 ], [ -73.374354, -39.201114 ], [ -73.352356, -39.265127 ], [ -73.347783, -39.277344 ], [ -73.352384, -39.316717 ], [ -73.349037, -39.333935 ], [ -73.361154, -39.370285 ], [ -73.38516, -39.47115 ], [ -73.38336, -39.485999 ], [ -73.405939, -39.538918 ], [ -73.431453, -39.558127 ], [ -73.455673, -39.582873 ], [ -73.511654, -39.638748 ], [ -73.52351, -39.680947 ], [ -73.527423, -39.740334 ], [ -73.53397, -39.750923 ], [ -73.559717, -39.774937 ], [ -73.597141, -39.808951 ], [ -73.632255, -39.817459 ], [ -73.663608, -39.836334 ], [ -73.702992, -39.849052 ], [ -73.718729, -39.856608 ], [ -73.78286, -39.909522 ], [ -73.81484, -39.943095 ], [ -73.832793, -40.016911 ], [ -73.802822, -40.086716 ], [ -73.789221, -40.100604 ], [ -73.834478, -40.142874 ], [ -73.850291, -40.218131 ], [ -73.851935, -40.228572 ], [ -73.861793, -40.245944 ], [ -73.877339, -40.309459 ], [ -73.877331, -40.320274 ], [ -73.881481, -40.335794 ], [ -73.887715, -40.372818 ], [ -73.88561, -40.387156 ], [ -73.88782, -40.409218 ], [ -73.899172, -40.461288 ], [ -73.875039, -40.535109 ], [ -73.908713, -40.570778 ], [ -73.934749, -40.597559 ], [ -73.955286, -40.641832 ], [ -73.957028, -40.687679 ], [ -73.95394, -40.704295 ], [ -73.98309, -40.768644 ], [ -73.989168, -40.798546 ], [ -74.01012, -40.863772 ], [ -74.021313, -40.880369 ], [ -74.063599, -40.96595 ], [ -74.062082, -41.011589 ], [ -74.061717, -41.012529 ], [ -74.063829, -41.026199 ], [ -74.058904, -41.053184 ], [ -74.060083, -41.063618 ], [ -74.059732, -41.069248 ], [ -74.052578, -41.103234 ], [ -74.051155, -41.105852 ], [ -74.049451, -41.141145 ], [ -74.035947, -41.187737 ], [ -73.988622, -41.261092 ], [ -73.987642, -41.262437 ], [ -73.981371, -41.278785 ], [ -73.975699, -41.305973 ], [ -73.977681, -41.432115 ], [ -73.97879, -41.439495 ], [ -73.973976, -41.509944 ], [ -73.930375, -41.565488 ], [ -73.919313, -41.57234 ], [ -73.913166, -41.618664 ], [ -73.91177, -41.62355 ], [ -73.906975, -41.65402 ], [ -73.917761, -41.653198 ], [ -73.959445, -41.663598 ], [ -74.062658, -41.665991 ], [ -74.104491, -41.694557 ], [ -74.157861, -41.74254 ], [ -74.171954, -41.780514 ], [ -74.174393, -41.786147 ], [ -74.18345, -41.835899 ], [ -74.178422, -41.8693 ], [ -74.170025, -41.887522 ], [ -74.178326, -41.933023 ], [ -74.175445, -41.967368 ], [ -74.176694, -42.003663 ], [ -74.166692, -42.039245 ], [ -74.183174, -42.082577 ], [ -74.217827, -42.109575 ], [ -74.25639, -42.169206 ], [ -74.281816, -42.213266 ], [ -74.291832, -42.252754 ], [ -74.28806, -42.293318 ], [ -74.273653, -42.332561 ], [ -74.302571, -42.389839 ], [ -74.313564, -42.462115 ], [ -74.315023, -42.47441 ], [ -74.322846, -42.517628 ], [ -74.294681, -42.59913 ], [ -74.292453, -42.601773 ], [ -74.256091, -42.645353 ], [ -74.262438, -42.653979 ], [ -74.279411, -42.726429 ], [ -74.286176, -42.740619 ], [ -74.291394, -42.782216 ], [ -74.28764, -42.808866 ], [ -74.334503, -42.856012 ], [ -74.350227, -42.894602 ], [ -74.374266, -42.938478 ], [ -74.448012, -43.041976 ], [ -74.474204, -43.123635 ], [ -74.492273, -43.137196 ], [ -74.518421, -43.166453 ], [ -74.948026, -43.541699 ] ] ] ] } }, +{ "type": "Feature", "properties": { "name": "0" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -7.5, 89.0 ], [ 7.5, 89.0 ], [ 7.5, 63.201276 ], [ 7.379449, 63.1807 ], [ 7.310063, 63.135487 ], [ 7.070766, 63.113369 ], [ 6.837921, 63.017364 ], [ 6.782847, 63.012017 ], [ 6.686007, 62.915644 ], [ 6.585396, 62.94855 ], [ 6.491257, 62.935217 ], [ 6.314087, 62.857134 ], [ 6.265085, 62.81315 ], [ 6.136761, 62.795231 ], [ 6.026669, 62.693466 ], [ 5.933485, 62.636314 ], [ 5.835621, 62.528414 ], [ 5.761963, 62.484241 ], [ 5.70873, 62.523604 ], [ 5.594944, 62.536805 ], [ 5.528186, 62.520316 ], [ 5.425897, 62.455966 ], [ 5.365434, 62.375822 ], [ 5.267278, 62.321245 ], [ 5.173817, 62.334223 ], [ 5.037699, 62.296397 ], [ 4.984363, 62.232819 ], [ 4.97446, 62.149189 ], [ 4.898078, 62.105684 ], [ 4.858988, 62.011556 ], [ 4.720497, 61.925658 ], [ 4.675973, 61.793397 ], [ 4.694232, 61.732385 ], [ 4.622663, 61.598805 ], [ 4.638274, 61.417824 ], [ 4.568897, 61.367766 ], [ 4.547131, 61.28875 ], [ 4.579675, 61.213892 ], [ 4.531105, 61.018828 ], [ 4.570581, 60.937547 ], [ 4.632184, 60.883932 ], [ 4.575719, 60.770997 ], [ 4.655886, 60.607673 ], [ 4.693054, 60.496322 ], [ 4.777744, 60.431925 ], [ 4.813296, 60.375716 ], [ 4.806521, 60.324197 ], [ 4.855485, 60.196747 ], [ 4.921188, 60.117822 ], [ 4.918043, 59.995274 ], [ 4.951624, 59.783603 ], [ 5.028372, 59.55395 ], [ 4.980559, 59.519026 ], [ 4.952299, 59.445041 ], [ 4.817671, 59.424313 ], [ 4.758565, 59.36981 ], [ 4.740102, 59.297874 ], [ 4.76751, 59.228849 ], [ 4.845132, 59.181244 ], [ 4.944222, 59.183112 ], [ 5.04725, 59.228022 ], [ 5.088171, 59.085821 ], [ 5.1744, 59.027982 ], [ 5.276521, 59.02399 ], [ 5.310008, 58.971645 ], [ 5.379792, 58.941953 ], [ 5.407531, 58.839378 ], [ 5.372648, 58.723004 ], [ 5.454796, 58.59325 ], [ 5.593719, 58.458746 ], [ 5.704833, 58.412622 ], [ 5.786664, 58.338927 ], [ 5.854562, 58.306835 ], [ 5.95985, 58.289056 ], [ 6.124397, 58.225944 ], [ 6.255725, 58.203248 ], [ 6.437802, 58.122386 ], [ 6.456483, 58.049546 ], [ 6.53033, 57.984329 ], [ 6.618516, 57.947183 ], [ 6.843911, 57.944796 ], [ 6.985732, 57.877845 ], [ 7.073061, 57.858642 ], [ 7.188554, 57.909026 ], [ 7.253933, 57.907979 ], [ 7.384891, 57.867102 ], [ 7.476254, 57.864584 ], [ 7.5, 57.858473 ], [ 7.5, 53.876902 ], [ 7.424843, 53.85608 ], [ 7.174376, 53.844768 ], [ 7.074839, 53.807401 ], [ 6.864588, 53.794035 ], [ 6.781859, 53.742469 ], [ 6.641814, 53.721143 ], [ 6.533444, 53.659919 ], [ 6.44428, 53.674889 ], [ 6.349284, 53.628626 ], [ 6.116941, 53.613147 ], [ 6.01831, 53.576098 ], [ 5.914409, 53.590804 ], [ 5.722636, 53.580463 ], [ 5.636857, 53.590286 ], [ 5.281976, 53.528816 ], [ 5.168135, 53.516716 ], [ 5.052988, 53.42766 ], [ 4.911196, 53.380502 ], [ 4.768559, 53.305966 ], [ 4.738299, 53.248091 ], [ 4.626342, 53.132246 ], [ 4.588445, 53.018856 ], [ 4.594988, 52.900277 ], [ 4.538846, 52.794272 ], [ 4.501183, 52.603731 ], [ 4.413231, 52.417108 ], [ 4.28847, 52.268426 ], [ 4.069285, 52.104219 ], [ 3.956998, 52.073862 ], [ 3.90063, 52.002004 ], [ 3.897199, 51.947168 ], [ 3.824539, 51.92957 ], [ 3.752947, 51.86085 ], [ 3.665238, 51.842392 ], [ 3.588721, 51.783995 ], [ 3.560887, 51.715975 ], [ 3.379188, 51.646123 ], [ 3.326606, 51.584431 ], [ 3.32422, 51.486508 ], [ 3.16348, 51.464025 ], [ 3.039772, 51.418466 ], [ 2.663187, 51.259222 ], [ 2.456435, 51.190688 ], [ 2.229293, 51.161974 ], [ 2.077837, 51.12641 ], [ 1.876595, 51.103165 ], [ 1.748747, 51.075135 ], [ 1.72408, 51.068551 ], [ 1.60222, 50.997067 ], [ 1.491489, 50.950213 ], [ 1.459422, 50.861142 ], [ 1.475246, 50.797904 ], [ 1.44554, 50.679965 ], [ 1.461334, 50.618747 ], [ 1.457196, 50.475967 ], [ 1.423599, 50.286516 ], [ 1.363192, 50.197281 ], [ 1.157323, 50.085848 ], [ 1.010483, 50.041088 ], [ 0.953479, 50.041195 ], [ 0.759791, 49.995389 ], [ 0.550923, 49.970905 ], [ 0.29108, 49.862171 ], [ 0.155434, 49.823936 ], [ 0.069334, 49.760346 ], [ -0.045039, 49.554433 ], [ -0.029706, 49.444111 ], [ -0.218934, 49.404535 ], [ -0.352159, 49.448094 ], [ -0.554998, 49.469053 ], [ -0.606755, 49.462184 ], [ -0.796287, 49.475988 ], [ -0.911578, 49.51448 ], [ -1.102962, 49.511425 ], [ -1.139104, 49.543926 ], [ -1.116357, 49.653518 ], [ -1.180228, 49.78551 ], [ -1.239699, 49.820736 ], [ -1.374258, 49.832952 ], [ -1.498632, 49.821606 ], [ -1.568332, 49.77973 ], [ -1.749476, 49.804924 ], [ -1.904406, 49.852394 ], [ -1.978418, 49.847164 ], [ -2.05364, 49.781662 ], [ -2.106995, 49.839935 ], [ -2.184949, 49.858591 ], [ -2.285588, 49.830988 ], [ -2.330208, 49.795139 ], [ -2.343165, 49.774276 ], [ -2.808948, 49.532541 ], [ -3.217848, 48.998332 ], [ -3.419066, 48.940696 ], [ -3.528187, 48.959016 ], [ -3.655309, 48.910256 ], [ -3.707704, 48.826715 ], [ -3.82024, 48.841479 ], [ -3.897529, 48.818782 ], [ -3.947725, 48.858424 ], [ -4.072752, 48.868103 ], [ -4.152207, 48.817711 ], [ -4.270685, 48.78129 ], [ -4.372303, 48.798691 ], [ -4.510098, 48.75492 ], [ -4.592168, 48.752958 ], [ -4.83166, 48.638407 ], [ -4.932977, 48.520424 ], [ -4.975455, 48.571604 ], [ -5.064802, 48.606225 ], [ -5.204736, 48.560278 ], [ -5.262081, 48.447949 ], [ -5.209946, 48.354714 ], [ -5.142609, 48.324059 ], [ -5.064689, 48.329402 ], [ -4.903185, 48.232197 ], [ -4.739719, 48.213913 ], [ -4.803495, 48.151323 ], [ -4.884703, 48.164849 ], [ -4.950502, 48.134766 ], [ -4.991173, 48.06931 ], [ -4.986079, 47.998026 ], [ -4.941362, 47.942279 ], [ -4.844397, 47.916144 ], [ -4.757468, 47.918853 ], [ -4.544863, 47.887301 ], [ -4.489243, 47.854622 ], [ -4.470899, 47.728925 ], [ -4.410553, 47.678171 ], [ -4.347466, 47.67122 ], [ -3.254991, 47.143562 ], [ -1.491406, 45.900867 ], [ -1.444132, 45.843614 ], [ -1.366525, 45.800856 ], [ -1.360026, 45.699623 ], [ -1.334561, 45.621496 ], [ -1.262435, 45.56037 ], [ -1.275334, 45.495857 ], [ -1.277869, 45.316333 ], [ -1.308711, 45.145151 ], [ -1.342009, 44.879594 ], [ -1.379916, 44.680948 ], [ -1.3787, 44.472579 ], [ -1.436567, 44.156767 ], [ -1.517487, 43.887241 ], [ -1.563091, 43.688438 ], [ -1.617606, 43.606742 ], [ -1.703763, 43.514631 ], [ -1.791595, 43.514332 ], [ -2.159781, 43.417162 ], [ -2.230301, 43.43202 ], [ -2.33057, 43.422008 ], [ -2.473123, 43.491404 ], [ -2.657615, 43.532602 ], [ -2.755355, 43.573747 ], [ -2.830185, 43.554132 ], [ -2.971206, 43.551311 ], [ -3.051452, 43.496905 ], [ -3.133981, 43.47904 ], [ -3.22448, 43.521984 ], [ -3.336478, 43.538252 ], [ -3.39175, 43.576985 ], [ -3.524202, 43.62734 ], [ -3.625835, 43.627601 ], [ -3.725128, 43.595621 ], [ -3.818865, 43.614821 ], [ -4.286517, 43.51428 ], [ -4.626133, 43.520881 ], [ -4.828405, 43.568572 ], [ -5.011951, 43.582598 ], [ -5.113541, 43.607133 ], [ -5.170369, 43.598392 ], [ -5.268304, 43.653919 ], [ -5.38034, 43.674424 ], [ -5.625681, 43.676972 ], [ -5.799336, 43.775019 ], [ -5.879372, 43.776242 ], [ -5.992385, 43.711392 ], [ -6.105907, 43.685589 ], [ -6.228196, 43.718666 ], [ -6.358166, 43.680692 ], [ -6.457218, 43.694515 ], [ -6.52843, 43.677282 ], [ -6.608077, 43.694241 ], [ -6.796711, 43.68462 ], [ -6.941865, 43.695081 ], [ -7.132869, 43.681431 ], [ -7.215913, 43.697433 ], [ -7.287046, 43.775917 ], [ -7.466724, 43.851414 ], [ -7.5, 43.861154 ], [ -7.5, 43.861154479453567 ], [ -7.5, 51.912702 ], [ -7.545942, 51.879897 ], [ -7.712876, 51.822094 ], [ -7.768851, 51.822386 ], [ -7.826808, 51.771287 ], [ -7.941123, 51.728421 ], [ -8.140292, 51.672449 ], [ -8.211117, 51.672655 ], [ -8.306831, 51.605563 ], [ -8.419433, 51.571816 ], [ -8.457206, 51.516385 ], [ -8.552478, 51.490401 ], [ -8.603621, 51.509718 ], [ -8.702561, 51.453549 ], [ -8.81043, 51.468518 ], [ -8.94925, 51.413718 ], [ -9.027082, 51.43737 ], [ -9.203861, 51.366717 ], [ -9.374192, 51.352399 ], [ -9.491029, 51.307334 ], [ -9.606351, 51.337917 ], [ -9.632825, 51.37715 ], [ -9.766261, 51.331837 ], [ -9.853403, 51.340374 ], [ -9.914067, 51.382053 ], [ -9.964084, 51.492224 ], [ -10.235824, 51.463168 ], [ -10.311577, 51.489913 ], [ -10.355154, 51.559029 ], [ -10.368532, 51.671595 ], [ -10.476568, 51.729675 ], [ -10.528615, 51.788973 ], [ -10.542624, 51.924321 ], [ -10.653048, 51.931042 ], [ -10.715558, 51.978529 ], [ -10.737967, 52.054426 ], [ -10.69424, 52.186514 ], [ -10.616492, 52.250961 ], [ -10.558225, 52.265153 ], [ -10.422992, 52.339223 ], [ -10.28525, 52.38929 ], [ -10.068721, 52.430518 ], [ -10.039879, 52.494723 ], [ -10.053386, 52.603369 ], [ -9.982662, 52.676398 ], [ -9.742139, 52.785219 ], [ -9.595703, 52.919291 ], [ -9.618003, 52.950047 ], [ -9.900152, 53.043465 ], [ -9.945951, 53.107019 ], [ -9.940523, 53.208071 ], [ -10.016383, 53.209068 ], [ -10.09298, 53.2841 ], [ -10.233414, 53.297184 ], [ -10.311361, 53.375408 ], [ -10.305664, 53.485275 ], [ -10.372343, 53.507384 ], [ -10.418016, 53.572001 ], [ -10.413533, 53.651004 ], [ -10.362055, 53.718746 ], [ -10.24519, 53.752611 ], [ -10.199367, 53.844477 ], [ -10.312811, 53.869475 ], [ -10.367849, 53.922728 ], [ -10.379469, 53.998426 ], [ -10.348855, 54.058106 ], [ -10.352337, 54.156504 ], [ -10.292325, 54.238921 ], [ -10.228552, 54.276368 ], [ -10.171268, 54.359347 ], [ -10.017971, 54.43164 ], [ -9.942832, 54.415716 ], [ -9.788886, 54.470028 ], [ -9.661881, 54.451398 ], [ -9.435532, 54.434027 ], [ -9.357782, 54.450719 ], [ -9.223241, 54.427935 ], [ -9.149541, 54.39366 ], [ -9.080469, 54.415493 ], [ -8.912309, 54.414681 ], [ -8.826786, 54.384763 ], [ -8.792583, 54.398782 ], [ -8.763031, 54.537077 ], [ -8.852615, 54.559971 ], [ -8.902985, 54.617496 ], [ -8.923979, 54.705844 ], [ -8.894408, 54.782517 ], [ -8.803771, 54.845874 ], [ -8.665183, 54.908989 ], [ -8.688586, 54.982654 ], [ -8.671763, 55.064955 ], [ -8.619817, 55.121705 ], [ -8.463043, 55.181294 ], [ -8.372894, 55.248049 ], [ -8.345178, 55.35669 ], [ -8.27341, 55.395071 ], [ -8.14239, 55.373992 ], [ -8.087473, 55.319241 ], [ -7.986304, 55.348519 ], [ -7.927798, 55.333658 ], [ -7.804521, 55.377492 ], [ -7.674704, 55.399595 ], [ -7.584614, 55.38845 ], [ -7.5, 55.44144 ], [ -7.5, 56.476595 ], [ -7.961525, 56.583101 ], [ -7.961525, 57.326432 ], [ -8.993928, 57.677449 ], [ -8.993928, 58.338187 ], [ -7.507267, 58.7305 ], [ -7.5, 58.735177 ], [ -7.5, 62.15 ], [ -22.5, 62.15 ], [ -25.4, 62.15 ], [ -25.4, 67.3 ], [ -22.5, 67.3 ], [ -7.5, 67.3 ], [ -7.5, 89.0 ] ] ], [ [ [ -17.569045, 79.294549 ], [ -17.315551, 79.218487 ], [ -17.248778, 79.098975 ], [ -17.466737, 77.805899 ], [ -18.3597, 75.878289 ], [ -19.24181, 75.725302 ], [ -22.921953, 75.940074 ], [ -22.675187, 79.654553 ], [ -19.219361, 79.492367 ], [ -17.569045, 79.294549 ] ] ], [ [ [ 7.5, -1.1 ], [ 5.3, -1.1 ], [ 5.3, -1.7 ], [ 7.5, -1.7 ], [ 7.5, -90.0 ], [ -7.5, -90.0 ], [ -7.5, -42.0 ], [ -15.0, -42.0 ], [ -15.0, -41.963432 ], [ -15.0, -35.0 ], [ -7.5, -35.0 ], [ -7.5, -8.701714 ], [ -7.5, -8.7 ], [ -7.602596, -8.7 ], [ -15.0, -8.7 ], [ -15.0, -7.1 ], [ -7.5, -7.1 ], [ -7.5, 4.237433 ], [ -7.619526, 4.234034 ], [ -7.753292, 4.252206 ], [ -7.839411, 4.285578 ], [ -7.933262, 4.368596 ], [ -8.007839, 4.40051 ], [ -8.285982, 4.461697 ], [ -8.375728, 4.522215 ], [ -8.515806, 4.578549 ], [ -8.602486, 4.64503 ], [ -8.738256, 4.692933 ], [ -8.859766, 4.757296 ], [ -8.942114, 4.827089 ], [ -9.078367, 4.867425 ], [ -9.144428, 4.928994 ], [ -9.272548, 5.012023 ], [ -9.353913, 5.044036 ], [ -9.504392, 5.185477 ], [ -9.597082, 5.305067 ], [ -9.6655, 5.338942 ], [ -9.706827, 5.405368 ], [ -9.862225, 5.519043 ], [ -9.944768, 5.609815 ], [ -10.077992, 5.720195 ], [ -10.17051, 5.839247 ], [ -10.26477, 5.89523 ], [ -10.311701, 5.958554 ], [ -10.398265, 5.993272 ], [ -10.527517, 6.069698 ], [ -10.707201, 6.113788 ], [ -10.809905, 6.161695 ], [ -10.914582, 6.247238 ], [ -10.926826, 6.355208 ], [ -10.981973, 6.39907 ], [ -11.143583, 6.486066 ], [ -11.345018, 6.57554 ], [ -11.446753, 6.631168 ], [ -11.486073, 6.686872 ], [ -11.494899, 6.775281 ], [ -11.544781, 6.818462 ], [ -11.658557, 6.87571 ], [ -11.71953, 6.943068 ], [ -11.911488, 7.045149 ], [ -12.173196, 7.152058 ], [ -12.446348, 7.252768 ], [ -12.591789, 7.276136 ], [ -12.657992, 7.316105 ], [ -12.685397, 7.374485 ], [ -12.758607, 7.401155 ], [ -13.048931, 7.47442 ], [ -13.13561, 7.542784 ], [ -13.18341, 7.64441 ], [ -13.17808, 7.714197 ], [ -13.129429, 7.772814 ], [ -13.011912, 7.7948 ], [ -13.071703, 7.887794 ], [ -13.06676, 7.957466 ], [ -13.025931, 8.010605 ], [ -13.057675, 8.096745 ], [ -13.154491, 8.003141 ], [ -13.204669, 7.981185 ], [ -13.288917, 7.98614 ], [ -13.348012, 8.041518 ], [ -13.347535, 8.154541 ], [ -13.286413, 8.219562 ], [ -13.399224, 8.368875 ], [ -13.415496, 8.510938 ], [ -13.350546, 8.602697 ], [ -13.367165, 8.661803 ], [ -13.360353, 8.851512 ], [ -13.41239, 8.921641 ], [ -13.444125, 9.055351 ], [ -13.444935, 9.146655 ], [ -13.544884, 9.218818 ], [ -13.547497, 9.311584 ], [ -13.634393, 9.411561 ], [ -13.672366, 9.35418 ], [ -13.737663, 9.322609 ], [ -13.856181, 9.331164 ], [ -13.923191, 9.368231 ], [ -13.963611, 9.473848 ], [ -13.932267, 9.556855 ], [ -13.881499, 9.611112 ], [ -13.803157, 9.65018 ], [ -13.957601, 9.815556 ], [ -14.135352, 9.928054 ], [ -14.181906, 9.935546 ], [ -14.326397, 10.034129 ], [ -14.393173, 10.103887 ], [ -14.454668, 10.087669 ], [ -14.559782, 10.147276 ], [ -14.586475, 10.278992 ], [ -14.648589, 10.346804 ], [ -14.703028, 10.352342 ], [ -14.766073, 10.4032 ], [ -14.787875, 10.531286 ], [ -14.884856, 10.675867 ], [ -14.945951, 10.653074 ], [ -15.031846, 10.658871 ], [ -15.100758, 10.691205 ], [ -15.158372, 10.754028 ], [ -15.274067, 10.755613 ], [ -15.325757, 10.812832 ], [ -15.323583, 10.908953 ], [ -15.433743, 11.051299 ], [ -15.492827, 11.066959 ], [ -15.544813, 10.905707 ], [ -15.617753, 10.849287 ], [ -15.703515, 10.852227 ], [ -15.797447, 10.916159 ], [ -15.880028, 10.930722 ], [ -16.019612, 10.918836 ], [ -16.080696, 10.896632 ], [ -16.186275, 10.899367 ], [ -16.265347, 10.931843 ], [ -16.362045, 11.041761 ], [ -16.380258, 11.157511 ], [ -16.518431, 11.162375 ], [ -16.604888, 11.252581 ], [ -16.580609, 11.383466 ], [ -16.506816, 11.426896 ], [ -16.548408, 11.52461 ], [ -16.531834, 11.601433 ], [ -16.446109, 11.671158 ], [ -16.376252, 11.682304 ], [ -16.324482, 11.72902 ], [ -16.417585, 11.760864 ], [ -16.458398, 11.819009 ], [ -16.439038, 11.930714 ], [ -16.503758, 12.061463 ], [ -16.554266, 12.081942 ], [ -16.612712, 12.155542 ], [ -16.703889, 12.20972 ], [ -16.758589, 12.214008 ], [ -16.827185, 12.26421 ], [ -16.877041, 12.336087 ], [ -16.914094, 12.434937 ], [ -16.892369, 12.563648 ], [ -16.911435, 12.789876 ], [ -16.86943, 12.99718 ], [ -16.899711, 13.050825 ], [ -16.942962, 13.356178 ], [ -16.895178, 13.454247 ], [ -16.771012, 13.573904 ], [ -16.803815, 13.646784 ], [ -16.795749, 13.700844 ], [ -16.871902, 13.764107 ], [ -16.898615, 13.836781 ], [ -16.91349, 14.059034 ], [ -16.981388, 14.128484 ], [ -17.043748, 14.222868 ], [ -17.059266, 14.308148 ], [ -17.174353, 14.402954 ], [ -17.263956, 14.559392 ], [ -17.331606, 14.599105 ], [ -17.403993, 14.53407 ], [ -17.495752, 14.531675 ], [ -17.569127, 14.57628 ], [ -17.636737, 14.682625 ], [ -17.655235, 14.747122 ], [ -17.636783, 14.811899 ], [ -17.544306, 14.877395 ], [ -17.44926, 14.897102 ], [ -17.218293, 15.00379 ], [ -17.081611, 15.163399 ], [ -16.93757, 15.356971 ], [ -16.855649, 15.495225 ], [ -16.716115, 15.696152 ], [ -16.659348, 15.806582 ], [ -16.625399, 16.052621 ], [ -16.633414, 16.300558 ], [ -16.566245, 16.511658 ], [ -16.550686, 16.660907 ], [ -16.461959, 16.896348 ], [ -16.232848, 17.439153 ], [ -16.169588, 17.703336 ], [ -16.143824, 18.002934 ], [ -16.149763, 18.16401 ], [ -16.175557, 18.438665 ], [ -16.251114, 18.62887 ], [ -16.296902, 18.874119 ], [ -16.360701, 19.013431 ], [ -16.428573, 19.096688 ], [ -16.509791, 19.14077 ], [ -16.575824, 19.204278 ], [ -16.647756, 19.330152 ], [ -16.655705, 19.411815 ], [ -16.614331, 19.481872 ], [ -16.554843, 19.530569 ], [ -16.614594, 19.57874 ], [ -16.635383, 19.64709 ], [ -16.609775, 19.765557 ], [ -16.531469, 19.842762 ], [ -16.498042, 19.924898 ], [ -16.374601, 20.01014 ], [ -16.382637, 20.127514 ], [ -16.355138, 20.205437 ], [ -16.474093, 20.389764 ], [ -16.487944, 20.448116 ], [ -16.572049, 20.444545 ], [ -16.661687, 20.501284 ], [ -16.754576, 20.585679 ], [ -16.87203, 20.834421 ], [ -16.908412, 20.832773 ], [ -16.946427, 20.702098 ], [ -17.005663, 20.657742 ], [ -17.127803, 20.681198 ], [ -17.193775, 20.760106 ], [ -17.222699, 20.832726 ], [ -17.200925, 20.99074 ], [ -17.179602, 21.033047 ], [ -17.166168, 21.20502 ], [ -17.133026, 21.43811 ], [ -17.110164, 21.518424 ], [ -17.080417, 21.82477 ], [ -17.015344, 21.960772 ], [ -16.917358, 22.214324 ], [ -16.875831, 22.280555 ], [ -16.763799, 22.381624 ], [ -16.712502, 22.407733 ], [ -16.603919, 22.40221 ], [ -16.575309, 22.438015 ], [ -16.537323, 22.566939 ], [ -16.473491, 22.63308 ], [ -16.464485, 22.724458 ], [ -16.382682, 22.975054 ], [ -16.308551, 23.020534 ], [ -16.325379, 23.103482 ], [ -16.29713, 23.174651 ], [ -16.231333, 23.249991 ], [ -16.144879, 23.417414 ], [ -16.101762, 23.450868 ], [ -16.130795, 23.578521 ], [ -16.114577, 23.694021 ], [ -16.012112, 23.86948 ], [ -15.912953, 23.98397 ], [ -15.812989, 24.059284 ], [ -15.736876, 24.094365 ], [ -15.490909, 24.341531 ], [ -15.411548, 24.402506 ], [ -15.336509, 24.499239 ], [ -15.247126, 24.584191 ], [ -15.107601, 24.646032 ], [ -15.06961, 24.718579 ], [ -15.004642, 24.761955 ], [ -14.952084, 24.924906 ], [ -14.961575, 25.229442 ], [ -14.94657, 25.322717 ], [ -14.892757, 25.483914 ], [ -14.806286, 25.607639 ], [ -14.752508, 25.801744 ], [ -14.639401, 25.966294 ], [ -14.601885, 26.07816 ], [ -14.616098, 26.136453 ], [ -14.59073, 26.216149 ], [ -14.478551, 26.354083 ], [ -14.384031, 26.388213 ], [ -14.210295, 26.543575 ], [ -14.081793, 26.557931 ], [ -13.81765, 26.703008 ], [ -13.699514, 26.776035 ], [ -13.630773, 26.872237 ], [ -13.535462, 27.121096 ], [ -13.517415, 27.21573 ], [ -13.425156, 27.355035 ], [ -13.524795, 27.352166 ], [ -18.633803, 27.352166 ], [ -18.633803, 33.418703 ], [ -8.987241, 41.793305 ], [ -8.674611, 41.991222 ], [ -8.627556, 42.048443 ], [ -8.516472, 42.075863 ], [ -8.3315, 42.090305 ], [ -8.187333, 42.142612 ], [ -8.175472, 42.066387 ], [ -8.123694, 42.078556 ], [ -8.081445, 42.016418 ], [ -8.154361, 41.981361 ], [ -8.211861, 41.908138 ], [ -8.149195, 41.816418 ], [ -8.095388, 41.801445 ], [ -8.002778, 41.831333 ], [ -7.969333, 41.869473 ], [ -7.835667, 41.862026 ], [ -7.689333, 41.905361 ], [ -7.5665, 41.830891 ], [ -7.452333, 41.862499 ], [ -7.276528, 41.849777 ], [ -7.191722, 41.88636 ], [ -7.185833, 41.959888 ], [ -7.144805, 41.989807 ], [ -7.051139, 41.94886 ], [ -6.959028, 41.971638 ], [ -6.882722, 41.938526 ], [ -6.754556, 41.973141 ], [ -6.732611, 41.940834 ], [ -6.589334, 41.947418 ], [ -6.541945, 41.931305 ], [ -6.517334, 41.869251 ], [ -6.550472, 41.76939 ], [ -6.545166, 41.690861 ], [ -6.496611, 41.658001 ], [ -6.437611, 41.687222 ], [ -6.273417, 41.655277 ], [ -6.184055, 41.583832 ], [ -6.286472, 41.476917 ], [ -6.308111, 41.424137 ], [ -6.428389, 41.315556 ], [ -6.570472, 41.237667 ], [ -6.668917, 41.221863 ], [ -6.754111, 41.10603 ], [ -6.823083, 41.037224 ], [ -6.926333, 41.018776 ], [ -6.804611, 40.878029 ], [ -6.827194, 40.753166 ], [ -6.793194, 40.641277 ], [ -6.837778, 40.568554 ], [ -6.795055, 40.512249 ], [ -6.840389, 40.447056 ], [ -6.789694, 40.331249 ], [ -6.857944, 40.266945 ], [ -6.944083, 40.25528 ], [ -7.0055, 40.221916 ], [ -7.009139, 40.137001 ], [ -6.941222, 40.112999 ], [ -6.863889, 40.013 ], [ -6.902611, 39.921417 ], [ -6.902555, 39.867363 ], [ -6.9835, 39.804668 ], [ -7.012055, 39.672054 ], [ -7.059389, 39.656387 ], [ -7.251889, 39.666248 ], [ -7.313528, 39.647667 ], [ -7.466028, 39.666054 ], [ -7.504694, 39.609554 ], [ -7.371917, 39.4855 ], [ -7.300611, 39.461082 ], [ -7.329778, 39.385223 ], [ -7.292278, 39.322693 ], [ -7.230166, 39.276695 ], [ -7.218111, 39.190304 ], [ -7.144166, 39.1745 ], [ -7.144778, 39.11628 ], [ -7.035722, 39.116806 ], [ -6.96325, 39.063473 ], [ -6.953556, 39.022583 ], [ -7.027056, 38.920776 ], [ -7.037333, 38.863224 ], [ -7.08475, 38.821304 ], [ -7.254806, 38.718834 ], [ -7.265167, 38.638416 ], [ -7.327944, 38.44136 ], [ -7.269, 38.397556 ], [ -7.142722, 38.268444 ], [ -7.082611, 38.176193 ], [ -6.933861, 38.211193 ], [ -6.993639, 38.028111 ], [ -7.102167, 38.039944 ], [ -7.125945, 38.000751 ], [ -7.250834, 37.986168 ], [ -7.274389, 37.878834 ], [ -7.325278, 37.814861 ], [ -7.415916, 37.757195 ], [ -7.453028, 37.647083 ], [ -7.520833, 37.55722 ], [ -7.464361, 37.488888 ], [ -7.429528, 37.366611 ], [ -7.432111, 37.296944 ], [ -7.416333, 37.271194 ], [ -7.41125, 37.228722 ], [ -7.402861, 37.192554 ], [ -7.377988, 37.052382 ], [ -7.253932, 37.083749 ], [ -7.057906, 37.085893 ], [ -6.908407, 37.021971 ], [ -6.828067, 37.007524 ], [ -6.595423, 36.890778 ], [ -6.525495, 36.824382 ], [ -6.550181, 36.695844 ], [ -6.482907, 36.567012 ], [ -6.417149, 36.492977 ], [ -6.224607, 36.217604 ], [ -6.133491, 36.123581 ], [ -6.026997, 36.062783 ], [ -5.945656, 36.063835 ], [ -5.862787, 35.983854 ], [ -5.82242, 35.965986 ], [ -5.765293, 35.951133 ], [ -5.260054, 36.027697 ], [ -5.19655, 35.997682 ], [ -5.155893, 35.893631 ], [ -5.166613, 35.853174 ], [ -5.213726, 35.799794 ], [ -5.160624, 35.747188 ], [ -5.14938, 35.65905 ], [ -5.091677, 35.62815 ], [ -4.988284, 35.52163 ], [ -4.85247, 35.423597 ], [ -4.681669, 35.335979 ], [ -4.363677, 35.278611 ], [ -4.277137, 35.311925 ], [ -4.161343, 35.325919 ], [ -4.062291, 35.364539 ], [ -3.917408, 35.391014 ], [ -3.840552, 35.360158 ], [ -3.724922, 35.414553 ], [ -3.640402, 35.410391 ], [ -3.538618, 35.3504 ], [ -3.35974, 35.317097 ], [ -3.235815, 35.353892 ], [ -3.134563, 35.413722 ], [ -3.098149, 35.505898 ], [ -2.997512, 35.571686 ], [ -2.909164, 35.562512 ], [ -2.846484, 35.501565 ], [ -2.841679, 35.389398 ], [ -2.817351, 35.344108 ], [ -2.702384, 35.249893 ], [ -2.614498, 35.218859 ], [ -2.549302, 35.221163 ], [ -2.513361, 35.281605 ], [ -2.438867, 35.313323 ], [ -2.34861, 35.28413 ], [ -2.318264, 35.24914 ], [ -2.174714, 35.222204 ], [ -2.215472, 35.066002 ], [ -2.177111, 35.023056 ], [ -2.033278, 34.932499 ], [ -1.981083, 34.933998 ], [ -1.962972, 34.874805 ], [ -1.755778, 34.759556 ], [ -1.823944, 34.616306 ], [ -1.749444, 34.52375 ], [ -1.69175, 34.497639 ], [ -1.780722, 34.397278 ], [ -1.648472, 34.108418 ], [ -1.702778, 33.872917 ], [ -1.676889, 33.776222 ], [ -1.717528, 33.695835 ], [ -1.650556, 33.676556 ], [ -1.602361, 33.621445 ], [ -1.600528, 33.514137 ], [ -1.661389, 33.386806 ], [ -1.669278, 33.282307 ], [ -1.569111, 33.14761 ], [ -1.482722, 33.081638 ], [ -1.487056, 32.978111 ], [ -1.542222, 32.9575 ], [ -1.379333, 32.739529 ], [ -1.021222, 32.539806 ], [ -1.066833, 32.455639 ], [ -1.184, 32.410583 ], [ -1.2255, 32.348305 ], [ -1.249667, 32.236137 ], [ -1.192444, 32.177555 ], [ -1.197528, 32.129776 ], [ -1.267167, 32.097832 ], [ -1.3635, 32.131111 ], [ -1.545444, 32.147221 ], [ -1.675028, 32.130859 ], [ -1.87075, 32.147499 ], [ -1.957167, 32.139946 ], [ -2.286083, 32.177471 ], [ -2.456472, 32.161915 ], [ -2.577306, 32.124363 ], [ -2.708806, 32.110279 ], [ -2.843306, 32.113861 ], [ -2.924278, 32.059807 ], [ -2.942722, 32.0 ], [ -2.847389, 31.88611 ], [ -2.822972, 31.781944 ], [ -3.141889, 31.715195 ], [ -3.639667, 31.627083 ], [ -3.66, 31.595306 ], [ -3.651833, 31.382278 ], [ -3.763528, 31.361584 ], [ -3.766667, 31.270277 ], [ -3.807278, 31.222 ], [ -3.772972, 31.117666 ], [ -3.696167, 31.137278 ], [ -3.6805, 31.088249 ], [ -3.578444, 31.046139 ], [ -3.546472, 30.970583 ], [ -3.575695, 30.915222 ], [ -3.654139, 30.922945 ], [ -3.758472, 30.903749 ], [ -3.804722, 30.873249 ], [ -3.885167, 30.896166 ], [ -4.067222, 30.844833 ], [ -4.137, 30.777472 ], [ -4.214361, 30.743834 ], [ -4.40575, 30.705833 ], [ -4.604417, 30.697666 ], [ -4.83825, 30.628834 ], [ -5.002056, 30.166334 ], [ -5.063583, 30.069279 ], [ -5.130538, 29.999353 ], [ -5.457848, 29.895369 ], [ -5.659026, 29.818058 ], [ -5.919113, 29.790298 ], [ -6.072353, 29.711987 ], [ -6.156986, 29.703825 ], [ -6.300618, 29.717508 ], [ -6.448217, 29.700102 ], [ -6.490114, 29.624926 ], [ -6.549977, 29.587626 ], [ -6.694647, 29.58799 ], [ -6.833464, 29.634644 ], [ -6.944526, 29.625582 ], [ -7.0, 29.644922 ], [ -7.171687, 29.614714 ], [ -7.299794, 29.523481 ], [ -7.343539, 29.469461 ], [ -7.475306, 29.378208 ], [ -7.640522, 29.381409 ], [ -7.705597, 29.309631 ], [ -7.744092, 29.306585 ], [ -7.864933, 29.213688 ], [ -8.082245, 29.071899 ], [ -8.213035, 29.01915 ], [ -8.316542, 28.929995 ], [ -8.39103, 28.88826 ], [ -8.52137, 28.781076 ], [ -8.669257, 28.719862 ], [ -8.673868, 27.298073 ], [ -7.509962, 26.636787 ], [ -7.0, 26.341364 ], [ -5.979635, 25.718596 ], [ -5.408522, 25.36639 ], [ -4.789468, 24.970856 ], [ -4.521077, 24.803507 ], [ -3.96104, 24.445127 ], [ -3.706765, 24.290188 ], [ -2.712557, 23.664427 ], [ -1.704967, 23.019518 ], [ -1.134199, 22.642967 ], [ -0.336694, 22.123529 ], [ -0.027552, 21.917942 ], [ -0.000443, 21.837215 ], [ 1.166675, 21.118887 ], [ 1.187256, 21.046377 ], [ 1.184915, 20.903179 ], [ 1.158611, 20.792984 ], [ 1.176954, 20.733541 ], [ 1.305947, 20.744158 ], [ 1.371349, 20.665758 ], [ 1.455215, 20.650805 ], [ 1.592698, 20.600473 ], [ 1.653113, 20.552156 ], [ 1.671045, 20.410471 ], [ 1.76835, 20.342491 ], [ 1.803177, 20.296862 ], [ 1.876006, 20.298286 ], [ 1.927599, 20.238214 ], [ 2.045671, 20.256464 ], [ 2.095358, 20.212132 ], [ 2.186553, 20.291985 ], [ 2.253289, 20.264826 ], [ 2.33842, 20.183811 ], [ 2.399215, 20.071934 ], [ 2.462916, 20.062487 ], [ 2.578319, 20.004887 ], [ 2.705234, 20.004688 ], [ 2.811467, 19.970337 ], [ 3.002442, 19.936764 ], [ 3.180333, 19.83275 ], [ 3.228661, 19.825912 ], [ 3.212304, 19.679028 ], [ 3.234095, 19.650856 ], [ 3.212573, 19.565798 ], [ 3.272079, 19.409563 ], [ 3.209996, 19.335358 ], [ 3.197989, 19.280701 ], [ 3.108515, 19.179968 ], [ 3.121174, 19.119499 ], [ 3.333774, 18.960028 ], [ 4.242888, 19.136717 ], [ 4.244228, 18.972406 ], [ 4.239104, 17.495457 ], [ 4.241203, 16.987701 ], [ 4.076758, 16.91231 ], [ 4.076468, 16.320419 ], [ 3.987741, 16.060646 ], [ 4.004404, 15.985981 ], [ 3.942026, 15.935373 ], [ 3.905696, 15.77408 ], [ 3.872143, 15.691882 ], [ 3.822273, 15.663428 ], [ 3.706119, 15.639359 ], [ 3.60766, 15.526161 ], [ 3.538171, 15.488314 ], [ 3.527506, 15.341487 ], [ 3.097902, 15.341659 ], [ 2.62879, 15.367121 ], [ 2.004797, 15.313961 ], [ 1.32403, 15.265145 ], [ 0.973189, 14.978951 ], [ 0.719127, 14.959019 ], [ 0.694171, 14.947373 ], [ 0.512085, 15.001424 ], [ 0.401776, 14.9696 ], [ 0.229351, 14.989671 ], [ 0.235736, 14.886071 ], [ 0.190881, 14.806706 ], [ 0.202614, 14.762717 ], [ 0.16625, 14.533439 ], [ 0.176769, 14.492416 ], [ 0.288968, 14.364031 ], [ 0.362986, 14.33568 ], [ 0.391382, 14.265839 ], [ 0.35735, 14.139214 ], [ 0.398786, 14.027875 ], [ 0.483209, 13.951315 ], [ 0.476478, 13.910361 ], [ 0.526861, 13.847084 ], [ 0.619368, 13.777658 ], [ 0.635518, 13.693429 ], [ 0.772605, 13.692051 ], [ 0.781645, 13.642696 ], [ 0.897423, 13.624112 ], [ 1.00595, 13.558324 ], [ 1.076902, 13.440118 ], [ 1.14364, 13.39312 ], [ 1.245755, 13.402361 ], [ 1.280971, 13.358625 ], [ 1.1865, 13.317028 ], [ 1.110174, 13.323479 ], [ 0.991822, 13.37092 ], [ 0.992786, 13.059218 ], [ 1.051905, 13.05794 ], [ 1.570111, 12.631305 ], [ 1.873899, 12.618222 ], [ 1.922387, 12.701801 ], [ 1.986293, 12.738781 ], [ 2.098688, 12.726534 ], [ 2.122747, 12.665193 ], [ 2.216765, 12.604406 ], [ 2.217357, 12.525084 ], [ 2.272632, 12.426311 ], [ 2.152112, 12.418606 ], [ 2.059467, 12.35238 ], [ 2.405395, 11.901612 ], [ 2.372374, 11.793143 ], [ 2.299219, 11.720811 ], [ 2.305729, 11.674421 ], [ 2.18544, 11.597241 ], [ 2.019249, 11.427713 ], [ 1.872681, 11.445773 ], [ 1.773606, 11.419284 ], [ 1.714145, 11.42913 ], [ 1.599717, 11.394748 ], [ 1.578894, 11.44347 ], [ 1.443134, 11.472229 ], [ 1.388263, 11.399461 ], [ 1.317959, 11.359073 ], [ 1.325122, 11.289876 ], [ 1.273934, 11.259864 ], [ 1.159523, 11.261173 ], [ 1.150468, 11.175611 ], [ 1.086619, 11.113338 ], [ 1.009168, 11.085727 ], [ 0.921565, 11.017466 ], [ 0.873821, 10.804958 ], [ 0.808246, 10.731894 ], [ 0.806258, 10.578075 ], [ 0.783231, 10.512177 ], [ 0.774575, 10.384764 ], [ 1.016262, 10.207629 ], [ 1.13857, 10.126467 ], [ 1.355205, 10.0 ], [ 1.366063, 9.611395 ], [ 1.341589, 9.54626 ], [ 1.390208, 9.497304 ], [ 1.42092, 9.307435 ], [ 1.559118, 9.170154 ], [ 1.6176, 9.070923 ], [ 1.629744, 8.999118 ], [ 1.6302, 8.449511 ], [ 1.636264, 7.98842 ], [ 1.631449, 7.661111 ], [ 1.65293, 7.534023 ], [ 1.635219, 7.379398 ], [ 1.642032, 6.994573 ], [ 1.557832, 6.997486 ], [ 1.605068, 6.905774 ], [ 1.598924, 6.799778 ], [ 1.609801, 6.605819 ], [ 1.700774, 6.536752 ], [ 1.773096, 6.419725 ], [ 1.799336, 6.280558 ], [ 1.629565, 6.242366 ], [ 1.635322, 6.231274 ], [ 1.701213, 6.12343 ], [ 1.886371, 6.159096 ], [ 2.336986, 6.219202 ], [ 2.595636, 6.233996 ], [ 2.911158, 6.27196 ], [ 3.214418, 6.276619 ], [ 3.405286, 6.271855 ], [ 3.458337, 6.292646 ], [ 3.684591, 6.299011 ], [ 3.816306, 6.315143 ], [ 4.024351, 6.301484 ], [ 4.145355, 6.275292 ], [ 4.322637, 6.254432 ], [ 4.454003, 6.209215 ], [ 4.676386, 6.034143 ], [ 4.864892, 5.83977 ], [ 4.965516, 5.658231 ], [ 5.058791, 5.523609 ], [ 5.091013, 5.42633 ], [ 5.206825, 5.32776 ], [ 5.239379, 5.129729 ], [ 5.311355, 4.983169 ], [ 5.352636, 4.825526 ], [ 5.523261, 4.546293 ], [ 5.655555, 4.405783 ], [ 5.820191, 4.275559 ], [ 5.932255, 4.20423 ], [ 6.075988, 4.157842 ], [ 6.219795, 4.165405 ], [ 6.900599, 4.247105 ], [ 7.012019, 4.253881 ], [ 7.073373, 4.283107 ], [ 7.230099, 4.269982 ], [ 7.369453, 4.320237 ], [ 7.48953, 4.332007 ], [ 7.5, 3.913207 ], [ 7.5, -1.1 ] ] ] ] } }, +{ "type": "Feature", "properties": { "name": "+5.5" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 71.7, 12.5 ], [ 74.0, 12.5 ], [ 74.0, 7.5 ], [ 71.7, 7.5 ], [ 71.7, 12.5 ] ] ], [ [ [ 94.5, 6.5 ], [ 91.5, 6.5 ], [ 91.5, 14.5 ], [ 94.5, 14.5 ], [ 94.5, 6.5 ] ] ], [ [ [ 89.561028, 26.8095 ], [ 89.63636, 26.782278 ], [ 89.622833, 26.738333 ], [ 89.828392, 26.71525 ], [ 90.064972, 26.741417 ], [ 90.170166, 26.765278 ], [ 90.232414, 26.860916 ], [ 90.300087, 26.854221 ], [ 90.348335, 26.896029 ], [ 90.416695, 26.903528 ], [ 90.537331, 26.820999 ], [ 90.657028, 26.778084 ], [ 91.04525, 26.786861 ], [ 91.088028, 26.815861 ], [ 91.262665, 26.807194 ], [ 91.334526, 26.777361 ], [ 91.42836, 26.870695 ], [ 91.500252, 26.873388 ], [ 91.549751, 26.803167 ], [ 91.635223, 26.813223 ], [ 91.715332, 26.795555 ], [ 91.838913, 26.861944 ], [ 91.915886, 26.837194 ], [ 91.983696, 26.859278 ], [ 92.06958, 26.854166 ], [ 92.122169, 26.934 ], [ 92.080391, 27.034916 ], [ 92.030388, 27.074556 ], [ 92.032333, 27.168306 ], [ 92.068863, 27.235889 ], [ 92.124557, 27.280416 ], [ 92.10125, 27.33761 ], [ 92.001724, 27.47525 ], [ 91.948219, 27.444056 ], [ 91.810364, 27.420416 ], [ 91.695862, 27.480778 ], [ 91.628334, 27.543777 ], [ 91.60186, 27.653667 ], [ 91.651558, 27.70075 ], [ 91.657196, 27.760361 ], [ 91.825447, 27.767139 ], [ 91.9105, 27.735195 ], [ 91.999031, 27.7265 ], [ 92.086441, 27.790277 ], [ 92.281303, 27.872334 ], [ 92.307587, 27.809195 ], [ 92.363609, 27.844667 ], [ 92.449753, 27.828722 ], [ 92.530891, 27.852139 ], [ 92.702919, 27.946777 ], [ 92.723442, 28.020805 ], [ 92.668861, 28.070944 ], [ 92.689857, 28.121584 ], [ 92.769218, 28.171 ], [ 92.855637, 28.179388 ], [ 92.945, 28.255722 ], [ 93.020027, 28.266834 ], [ 93.030197, 28.324139 ], [ 93.118942, 28.357861 ], [ 93.231476, 28.36725 ], [ 93.244804, 28.448223 ], [ 93.220444, 28.530167 ], [ 93.293861, 28.631332 ], [ 93.347054, 28.661083 ], [ 93.568275, 28.685972 ], [ 93.662697, 28.673721 ], [ 93.742668, 28.692028 ], [ 93.826614, 28.764305 ], [ 93.930031, 28.766834 ], [ 93.929527, 28.826305 ], [ 94.049919, 28.867416 ], [ 94.032997, 28.967638 ], [ 94.125504, 28.955055 ], [ 94.275169, 29.128584 ], [ 94.357445, 29.145166 ], [ 94.423859, 29.214027 ], [ 94.551498, 29.228083 ], [ 94.623055, 29.293861 ], [ 94.681694, 29.312056 ], [ 94.797501, 29.17325 ], [ 94.910469, 29.159222 ], [ 95.003052, 29.166695 ], [ 95.099503, 29.139668 ], [ 95.140663, 29.091612 ], [ 95.207108, 29.108889 ], [ 95.258469, 29.073833 ], [ 95.301613, 29.140499 ], [ 95.387108, 29.136972 ], [ 95.422112, 29.182501 ], [ 95.503136, 29.131611 ], [ 95.566971, 29.1765 ], [ 95.687447, 29.227667 ], [ 95.758331, 29.318111 ], [ 95.848663, 29.316111 ], [ 95.998581, 29.367001 ], [ 96.060753, 29.448639 ], [ 96.107941, 29.447306 ], [ 96.179695, 29.355499 ], [ 96.190582, 29.30489 ], [ 96.251747, 29.235861 ], [ 96.375694, 29.283194 ], [ 96.395027, 29.244862 ], [ 96.345886, 29.174028 ], [ 96.223114, 29.146862 ], [ 96.154556, 29.057777 ], [ 96.192612, 28.987612 ], [ 96.155136, 28.954 ], [ 96.189445, 28.900612 ], [ 96.353889, 29.037111 ], [ 96.443527, 29.038834 ], [ 96.541389, 28.916666 ], [ 96.542336, 28.878778 ], [ 96.622612, 28.779945 ], [ 96.602974, 28.726223 ], [ 96.53167, 28.714056 ], [ 96.487915, 28.627777 ], [ 96.415695, 28.566195 ], [ 96.333527, 28.529917 ], [ 96.366302, 28.475584 ], [ 96.278198, 28.415001 ], [ 96.371834, 28.38825 ], [ 96.426781, 28.34675 ], [ 96.462585, 28.414528 ], [ 96.580917, 28.456472 ], [ 96.677971, 28.448778 ], [ 96.755142, 28.404778 ], [ 96.765388, 28.369028 ], [ 97.023804, 28.321028 ], [ 97.090446, 28.368416 ], [ 97.155472, 28.337694 ], [ 97.347221, 28.210583 ], [ 97.317863, 28.107 ], [ 97.398804, 28.024666 ], [ 97.36467, 27.947445 ], [ 97.259277, 27.907555 ], [ 97.123917, 27.789557 ], [ 97.017807, 27.738472 ], [ 96.967026, 27.663723 ], [ 96.89183, 27.616167 ], [ 96.920776, 27.497223 ], [ 96.901253, 27.458471 ], [ 96.965385, 27.367695 ], [ 97.167053, 27.126194 ], [ 97.125725, 27.088306 ], [ 96.871391, 27.183083 ], [ 96.887085, 27.252445 ], [ 96.783691, 27.349056 ], [ 96.628365, 27.366138 ], [ 96.563835, 27.303362 ], [ 96.292168, 27.288195 ], [ 96.094025, 27.224277 ], [ 96.035332, 27.187389 ], [ 95.923363, 27.032417 ], [ 95.808807, 27.00964 ], [ 95.747749, 26.910639 ], [ 95.668747, 26.896 ], [ 95.598503, 26.809166 ], [ 95.500946, 26.802334 ], [ 95.425636, 26.69364 ], [ 95.275414, 26.64325 ], [ 95.240776, 26.680334 ], [ 95.154747, 26.621334 ], [ 95.072418, 26.457556 ], [ 95.098305, 26.404694 ], [ 95.070831, 26.307861 ], [ 95.118553, 26.147751 ], [ 95.115692, 26.112167 ], [ 95.183418, 26.063583 ], [ 95.091698, 25.956139 ], [ 95.023834, 25.924583 ], [ 95.042862, 25.768223 ], [ 94.926414, 25.647167 ], [ 94.903114, 25.597389 ], [ 94.807724, 25.504473 ], [ 94.679581, 25.454611 ], [ 94.631165, 25.387306 ], [ 94.579056, 25.210527 ], [ 94.608665, 25.170639 ], [ 94.733498, 25.12925 ], [ 94.73967, 25.022112 ], [ 94.694916, 24.968861 ], [ 94.702003, 24.92275 ], [ 94.644806, 24.837139 ], [ 94.602859, 24.708389 ], [ 94.545891, 24.6975 ], [ 94.513557, 24.60111 ], [ 94.4505, 24.556917 ], [ 94.395226, 24.462723 ], [ 94.374809, 24.370472 ], [ 94.318275, 24.307917 ], [ 94.311775, 24.256306 ], [ 94.255806, 24.152445 ], [ 94.255447, 24.081861 ], [ 94.165779, 23.928612 ], [ 94.160698, 23.855473 ], [ 94.054779, 23.88961 ], [ 93.933167, 23.949888 ], [ 93.812309, 23.928944 ], [ 93.761024, 24.0 ], [ 93.616554, 24.0 ], [ 93.585197, 23.963583 ], [ 93.500252, 23.952694 ], [ 93.384277, 24.084694 ], [ 93.336555, 24.08625 ], [ 93.331253, 23.98311 ], [ 93.390808, 23.92436 ], [ 93.399864, 23.749861 ], [ 93.436752, 23.685278 ], [ 93.391502, 23.423056 ], [ 93.402527, 23.386499 ], [ 93.366333, 23.276611 ], [ 93.384666, 23.21839 ], [ 93.359833, 23.11414 ], [ 93.312859, 23.018499 ], [ 93.240028, 23.003639 ], [ 93.204803, 23.048555 ], [ 93.131302, 23.043972 ], [ 93.148415, 22.93136 ], [ 93.099915, 22.779417 ], [ 93.104553, 22.646139 ], [ 93.137802, 22.583555 ], [ 93.113113, 22.52739 ], [ 93.178917, 22.422361 ], [ 93.195724, 22.251167 ], [ 93.105469, 22.205444 ], [ 93.048752, 22.199499 ], [ 92.993721, 22.050362 ], [ 92.930275, 22.002138 ], [ 92.865219, 22.058916 ], [ 92.694359, 22.147388 ], [ 92.676086, 22.013195 ], [ 92.608803, 21.975861 ], [ 92.606476, 22.131945 ], [ 92.578026, 22.327444 ], [ 92.545219, 22.46525 ], [ 92.516281, 22.716249 ], [ 92.474609, 22.745056 ], [ 92.416, 22.909166 ], [ 92.374969, 22.928528 ], [ 92.383308, 23.073473 ], [ 92.349892, 23.191195 ], [ 92.376556, 23.348362 ], [ 92.321198, 23.466084 ], [ 92.302109, 23.580334 ], [ 92.272835, 23.641195 ], [ 92.177696, 23.732056 ], [ 92.143974, 23.726528 ], [ 92.074112, 23.645222 ], [ 92.022362, 23.645222 ], [ 91.97953, 23.721527 ], [ 91.938751, 23.654139 ], [ 91.966553, 23.487139 ], [ 91.935753, 23.429806 ], [ 91.84214, 23.399918 ], [ 91.770416, 23.267611 ], [ 91.805336, 23.167166 ], [ 91.813141, 23.068027 ], [ 91.71772, 22.9855 ], [ 91.575279, 22.963167 ], [ 91.54464, 22.992584 ], [ 91.497307, 23.186945 ], [ 91.427666, 23.259056 ], [ 91.379776, 23.175222 ], [ 91.402084, 23.085417 ], [ 91.349503, 23.085417 ], [ 91.319778, 23.247305 ], [ 91.243416, 23.484083 ], [ 91.197052, 23.519527 ], [ 91.150948, 23.641138 ], [ 91.162666, 23.741945 ], [ 91.21933, 23.74575 ], [ 91.246002, 23.833361 ], [ 91.227058, 23.880777 ], [ 91.261864, 23.95875 ], [ 91.302475, 23.987667 ], [ 91.370193, 23.977583 ], [ 91.412666, 24.108444 ], [ 91.536942, 24.070972 ], [ 91.637863, 24.105305 ], [ 91.652748, 24.187529 ], [ 91.733948, 24.135778 ], [ 91.757385, 24.236305 ], [ 91.906113, 24.145166 ], [ 91.933334, 24.279444 ], [ 91.920364, 24.326416 ], [ 92.010498, 24.383167 ], [ 92.088112, 24.373751 ], [ 92.137581, 24.398834 ], [ 92.128807, 24.513111 ], [ 92.193558, 24.572666 ], [ 92.203613, 24.625639 ], [ 92.296585, 24.850416 ], [ 92.489555, 24.868139 ], [ 92.463219, 24.959917 ], [ 92.340858, 25.072889 ], [ 92.21875, 25.100639 ], [ 92.122391, 25.166222 ], [ 92.019531, 25.184999 ], [ 91.759941, 25.168777 ], [ 91.632385, 25.122639 ], [ 91.584503, 25.165583 ], [ 91.476471, 25.135139 ], [ 91.346138, 25.1665 ], [ 91.261497, 25.202389 ], [ 91.083809, 25.196417 ], [ 90.957336, 25.159527 ], [ 90.83886, 25.153305 ], [ 90.762253, 25.179722 ], [ 90.716698, 25.156055 ], [ 90.648972, 25.185888 ], [ 90.533112, 25.174194 ], [ 90.443169, 25.145584 ], [ 90.31839, 25.187361 ], [ 90.10778, 25.2265 ], [ 89.952225, 25.302029 ], [ 89.834473, 25.296778 ], [ 89.815666, 25.371639 ], [ 89.868637, 25.582611 ], [ 89.869003, 25.664862 ], [ 89.822556, 25.73275 ], [ 89.838554, 25.883139 ], [ 89.878334, 25.924805 ], [ 89.820557, 25.993889 ], [ 89.744141, 26.156694 ], [ 89.608139, 26.157278 ], [ 89.612747, 26.060472 ], [ 89.582581, 25.978195 ], [ 89.495087, 26.005556 ], [ 89.475082, 26.001612 ], [ 89.410889, 26.03739 ], [ 89.357391, 26.008333 ], [ 89.259308, 26.067055 ], [ 89.217331, 26.126472 ], [ 89.16758, 26.138639 ], [ 89.151253, 26.208055 ], [ 89.092751, 26.323029 ], [ 89.100166, 26.395971 ], [ 89.049309, 26.397028 ], [ 88.947723, 26.439417 ], [ 88.919113, 26.412222 ], [ 89.065781, 26.2635 ], [ 88.958641, 26.235695 ], [ 88.911552, 26.2885 ], [ 88.857002, 26.231806 ], [ 88.806664, 26.256222 ], [ 88.795639, 26.31214 ], [ 88.721581, 26.31925 ], [ 88.683113, 26.414362 ], [ 88.556, 26.485945 ], [ 88.523415, 26.485027 ], [ 88.388306, 26.599222 ], [ 88.345253, 26.504723 ], [ 88.470497, 26.465334 ], [ 88.517586, 26.365805 ], [ 88.457108, 26.36064 ], [ 88.358803, 26.301306 ], [ 88.351585, 26.218555 ], [ 88.250275, 26.191528 ], [ 88.180359, 26.144722 ], [ 88.174637, 26.032694 ], [ 88.086502, 25.931444 ], [ 88.11467, 25.802055 ], [ 88.267998, 25.788889 ], [ 88.446945, 25.668222 ], [ 88.443581, 25.605667 ], [ 88.548141, 25.51689 ], [ 88.664612, 25.476862 ], [ 88.759697, 25.529194 ], [ 88.824837, 25.494888 ], [ 88.834167, 25.371277 ], [ 88.909554, 25.320139 ], [ 88.995804, 25.317833 ], [ 88.946472, 25.251249 ], [ 88.922165, 25.172251 ], [ 88.835831, 25.211527 ], [ 88.797142, 25.174999 ], [ 88.708252, 25.209499 ], [ 88.548691, 25.195694 ], [ 88.480637, 25.216 ], [ 88.438698, 25.182278 ], [ 88.444778, 25.03775 ], [ 88.315918, 24.881945 ], [ 88.221336, 24.959917 ], [ 88.163528, 24.944834 ], [ 88.16214, 24.848694 ], [ 88.028336, 24.688334 ], [ 88.083862, 24.623806 ], [ 88.120613, 24.521944 ], [ 88.20372, 24.474777 ], [ 88.341972, 24.438 ], [ 88.379837, 24.395445 ], [ 88.547386, 24.311251 ], [ 88.648109, 24.303389 ], [ 88.685303, 24.328278 ], [ 88.732918, 24.266722 ], [ 88.697861, 24.167028 ], [ 88.705307, 24.086945 ], [ 88.760361, 24.005083 ], [ 88.73764, 23.905861 ], [ 88.613197, 23.810499 ], [ 88.580475, 23.724611 ], [ 88.618919, 23.600584 ], [ 88.774361, 23.443195 ], [ 88.727943, 23.257416 ], [ 88.923248, 23.232611 ], [ 88.948112, 23.174862 ], [ 88.873169, 23.078777 ], [ 88.882416, 22.978277 ], [ 88.911446, 22.894945 ], [ 88.971611, 22.844528 ], [ 88.942253, 22.762417 ], [ 88.965805, 22.697083 ], [ 88.935524, 22.642334 ], [ 88.964996, 22.602777 ], [ 89.006638, 22.422638 ], [ 89.00647, 22.283278 ], [ 89.075974, 22.199472 ], [ 89.086746, 22.147528 ], [ 89.049141, 22.092501 ], [ 89.090721, 22.009388 ], [ 89.088448, 21.949278 ], [ 89.083557, 21.938555 ], [ 89.070335, 21.927944 ], [ 89.065392, 21.927805 ], [ 89.063469, 21.92775 ], [ 89.034447, 21.864471 ], [ 89.035614, 21.754417 ], [ 89.080055, 21.708139 ], [ 89.083748, 21.700666 ], [ 89.096802, 21.624945 ], [ 89.173346, 21.532527 ], [ 89.013796, 21.483529 ], [ 88.959017, 21.433458 ], [ 88.854345, 21.415144 ], [ 88.783533, 21.446179 ], [ 88.725529, 21.441629 ], [ 88.651872, 21.473324 ], [ 88.61305, 21.429521 ], [ 88.539927, 21.404918 ], [ 88.440507, 21.432175 ], [ 88.400839, 21.464145 ], [ 88.249253, 21.413656 ], [ 88.158701, 21.41946 ], [ 88.06982, 21.511434 ], [ 88.005571, 21.532997 ], [ 87.94855, 21.584384 ], [ 87.932724, 21.655104 ], [ 87.871579, 21.608721 ], [ 87.723144, 21.542275 ], [ 87.493265, 21.490454 ], [ 87.403112, 21.446791 ], [ 87.244801, 21.4345 ], [ 87.173834, 21.400281 ], [ 87.060986, 21.311819 ], [ 86.995094, 21.24026 ], [ 86.947356, 21.155351 ], [ 86.97633, 21.07795 ], [ 87.070019, 20.915596 ], [ 87.105051, 20.812228 ], [ 87.170761, 20.724569 ], [ 87.158042, 20.647327 ], [ 87.07163, 20.567171 ], [ 86.931343, 20.475015 ], [ 86.918977, 20.319669 ], [ 86.851844, 20.230211 ], [ 86.623961, 20.095645 ], [ 86.548118, 19.99085 ], [ 86.540656, 19.947888 ], [ 86.4738, 19.871286 ], [ 86.196458, 19.758879 ], [ 85.971277, 19.707296 ], [ 85.732096, 19.633927 ], [ 85.389649, 19.463682 ], [ 85.201323, 19.328048 ], [ 85.165447, 19.277971 ], [ 85.037794, 19.19933 ], [ 84.955429, 19.129342 ], [ 84.777716, 18.873037 ], [ 84.701576, 18.800443 ], [ 84.647419, 18.70467 ], [ 84.568101, 18.629811 ], [ 84.462059, 18.482739 ], [ 84.261258, 18.303787 ], [ 84.239303, 18.245253 ], [ 84.142671, 18.169703 ], [ 83.793375, 18.010185 ], [ 83.685483, 17.937672 ], [ 83.569349, 17.823715 ], [ 83.443889, 17.652314 ], [ 83.28062, 17.48971 ], [ 83.092463, 17.404803 ], [ 83.038903, 17.362 ], [ 82.79003, 17.251357 ], [ 82.650558, 17.172599 ], [ 82.5389, 17.091883 ], [ 82.468643, 17.024281 ], [ 82.498762, 16.925332 ], [ 82.500253, 16.848571 ], [ 82.5, 16.841007495529976 ], [ 82.49947, 16.825163 ], [ 82.459233, 16.654054 ], [ 82.466858, 16.587778 ], [ 82.431998, 16.517859 ], [ 82.248967, 16.407609 ], [ 81.981049, 16.280019 ], [ 81.894061, 16.260323 ], [ 81.774762, 16.201341 ], [ 81.70247, 16.190775 ], [ 81.523839, 16.238813 ], [ 81.381322, 16.204428 ], [ 81.332094, 16.161952 ], [ 81.322031, 16.097822 ], [ 81.233567, 15.87992 ], [ 81.136854, 15.81419 ], [ 81.151753, 15.754914 ], [ 81.125459, 15.684137 ], [ 80.971941, 15.592602 ], [ 80.826558, 15.577315 ], [ 80.711739, 15.636705 ], [ 80.67628, 15.75912 ], [ 80.624593, 15.756801 ], [ 80.490845, 15.702354 ], [ 80.392248, 15.633551 ], [ 80.358214, 15.581598 ], [ 80.295507, 15.390143 ], [ 80.221491, 15.299877 ], [ 80.209332, 15.184502 ], [ 80.169365, 15.081167 ], [ 80.218004, 14.807217 ], [ 80.315962, 14.575917 ], [ 80.288661, 14.335134 ], [ 80.246308, 14.188627 ], [ 80.264779, 14.067246 ], [ 80.368544, 13.821195 ], [ 80.353966, 13.6572 ], [ 80.443354, 13.460606 ], [ 80.464819, 13.323707 ], [ 80.458091, 13.243266 ], [ 80.421902, 13.117465 ], [ 80.367841, 12.851119 ], [ 80.364997, 12.728249 ], [ 80.245898, 12.379807 ], [ 80.131749, 12.226612 ], [ 79.988672, 11.995819 ], [ 79.913703, 11.755537 ], [ 79.878389, 11.590556 ], [ 79.924922, 11.488286 ], [ 79.958459, 11.357269 ], [ 79.981076, 11.145542 ], [ 79.975488, 10.651029 ], [ 79.994139, 10.317128 ], [ 80.338255, 9.904166 ], [ 80.449647, 9.746417 ], [ 80.737372, 9.520218 ], [ 80.915844, 9.350026 ], [ 80.993765, 9.176972 ], [ 81.121884, 8.975818 ], [ 81.179895, 8.934953 ], [ 81.33273, 8.703677 ], [ 81.345477, 8.642456 ], [ 81.393369, 8.619021 ], [ 81.462539, 8.539859 ], [ 81.513009, 8.369731 ], [ 81.51119, 8.33525 ], [ 81.58595, 8.086918 ], [ 81.67503, 8.003006 ], [ 81.737598, 7.866316 ], [ 81.810475, 7.809938 ], [ 81.910517, 7.623721 ], [ 81.940663, 7.474166 ], [ 81.991641, 7.321679 ], [ 81.980458, 7.110484 ], [ 82.00051, 7.040233 ], [ 81.945498, 6.734655 ], [ 81.868512, 6.528724 ], [ 81.804257, 6.422027 ], [ 81.630946, 6.264487 ], [ 81.46592, 6.139586 ], [ 81.37065, 6.082119 ], [ 81.239398, 6.041556 ], [ 81.181944, 6.007593 ], [ 81.040929, 5.981226 ], [ 80.87075, 5.921209 ], [ 80.761689, 5.848098 ], [ 80.585216, 5.796844 ], [ 80.437543, 5.820716 ], [ 80.212227, 5.891296 ], [ 80.143469, 5.92837 ], [ 80.040199, 6.014528 ], [ 79.963423, 6.123363 ], [ 79.915664, 6.233712 ], [ 79.913014, 6.286388 ], [ 79.859603, 6.429399 ], [ 79.839339, 6.555764 ], [ 79.756213, 6.763868 ], [ 79.725581, 6.908991 ], [ 79.745179, 7.00472 ], [ 79.700219, 7.176149 ], [ 79.724173, 7.270349 ], [ 79.673215, 7.557979 ], [ 79.684842, 7.655736 ], [ 79.661671, 7.797319 ], [ 79.587651, 8.027492 ], [ 79.586252, 8.256534 ], [ 79.668394, 8.400592 ], [ 79.653882, 8.506441 ], [ 79.67171, 8.581752 ], [ 79.730896, 8.635432 ], [ 79.812424, 8.641163 ], [ 79.829794, 8.710816 ], [ 79.798624, 8.801688 ], [ 79.804978, 8.85465 ], [ 79.750202, 8.931861 ], [ 79.648804, 8.957717 ], [ 79.377654, 9.050322 ], [ 79.263872, 9.128503 ], [ 79.180416, 9.111216 ], [ 79.095276, 9.068233 ], [ 79.019711, 9.084513 ], [ 78.963816, 9.05757 ], [ 78.806737, 9.033314 ], [ 78.743175, 9.065869 ], [ 78.635926, 8.987263 ], [ 78.551948, 8.978906 ], [ 78.468171, 8.998946 ], [ 78.301094, 8.867626 ], [ 78.325496, 8.759877 ], [ 78.313631, 8.708497 ], [ 78.25538, 8.638334 ], [ 78.252563, 8.478065 ], [ 78.188375, 8.373035 ], [ 78.176202, 8.311197 ], [ 78.123785, 8.259438 ], [ 77.881849, 8.133139 ], [ 77.79259, 8.062092 ], [ 77.671572, 8.034342 ], [ 77.608561, 7.962869 ], [ 77.539908, 7.949669 ], [ 77.279174, 8.00381 ], [ 77.164698, 8.07921 ], [ 76.892286, 8.302622 ], [ 76.60825, 8.657924 ], [ 76.534296, 8.75857 ], [ 76.466906, 8.804814 ], [ 76.404622, 8.966219 ], [ 76.253158, 9.300199 ], [ 76.208817, 9.428289 ], [ 76.165567, 9.720415 ], [ 76.123709, 9.919312 ], [ 76.042706, 10.148397 ], [ 76.007931, 10.285645 ], [ 75.803642, 10.728907 ], [ 75.728698, 11.031667 ], [ 75.598285, 11.345364 ], [ 75.518564, 11.406403 ], [ 75.431222, 11.627436 ], [ 75.328129, 11.736391 ], [ 75.268476, 11.774163 ], [ 75.18502, 11.885932 ], [ 75.100646, 11.936443 ], [ 75.055231, 12.025258 ], [ 74.959157, 12.27767 ], [ 74.855819, 12.460697 ], [ 74.689628, 12.870932 ], [ 74.628832, 13.142861 ], [ 74.571613, 13.215351 ], [ 74.545804, 13.391187 ], [ 74.565846, 13.462021 ], [ 74.544446, 13.60162 ], [ 74.474992, 13.852779 ], [ 74.396611, 13.914607 ], [ 74.284723, 13.900895 ], [ 74.226809, 13.94565 ], [ 74.203595, 14.033369 ], [ 74.22204, 14.084799 ], [ 74.285575, 14.134765 ], [ 74.346158, 14.139996 ], [ 74.276541, 14.27763 ], [ 74.256742, 14.410252 ], [ 74.210255, 14.446242 ], [ 74.147163, 14.600602 ], [ 74.074653, 14.620991 ], [ 73.962074, 14.732144 ], [ 73.93152, 14.792921 ], [ 73.918289, 14.92509 ], [ 73.79331, 15.043523 ], [ 73.811094, 15.174247 ], [ 73.793199, 15.23486 ], [ 73.690192, 15.254953 ], [ 73.642596, 15.318093 ], [ 73.658759, 15.425705 ], [ 73.58711, 15.634847 ], [ 73.538016, 15.697511 ], [ 73.514658, 15.788271 ], [ 73.391004, 15.781378 ], [ 73.340411, 15.82787 ], [ 73.323378, 15.894617 ], [ 73.338064, 16.106735 ], [ 73.204045, 16.473551 ], [ 73.191567, 16.538513 ], [ 73.203121, 16.656727 ], [ 73.139118, 16.995763 ], [ 73.151381, 17.097383 ], [ 73.073864, 17.268971 ], [ 73.051261, 17.397961 ], [ 73.063062, 17.454632 ], [ 73.024386, 17.524565 ], [ 73.005023, 17.727213 ], [ 72.926664, 17.890797 ], [ 72.817401, 18.180879 ], [ 72.81857, 18.277897 ], [ 72.770561, 18.447921 ], [ 72.786589, 18.548419 ], [ 72.712716, 18.620623 ], [ 72.685341, 18.688428 ], [ 72.720215, 18.811284 ], [ 72.672552, 18.933015 ], [ 72.698542, 19.056824 ], [ 72.661403, 19.146984 ], [ 72.662326, 19.303949 ], [ 72.61567, 19.426415 ], [ 72.600913, 19.619925 ], [ 72.539388, 19.843526 ], [ 72.554545, 19.962886 ], [ 72.591755, 20.026076 ], [ 72.64012, 20.332215 ], [ 72.703301, 20.430706 ], [ 72.768768, 20.581449 ], [ 72.725836, 20.742303 ], [ 72.627154, 20.932874 ], [ 72.577211, 20.952279 ], [ 72.515022, 21.043441 ], [ 72.498757, 21.113667 ], [ 72.500959, 21.343541 ], [ 72.527545, 21.405506 ], [ 72.527833, 21.494891 ], [ 72.477228, 21.55601 ], [ 72.41755, 21.488106 ], [ 72.369157, 21.473091 ], [ 72.298033, 21.33955 ], [ 72.219519, 21.250535 ], [ 72.225714, 21.185052 ], [ 72.180624, 21.108979 ], [ 72.053907, 21.031264 ], [ 71.907618, 20.978269 ], [ 71.852571, 20.929339 ], [ 71.584094, 20.833401 ], [ 71.514119, 20.772634 ], [ 71.28518, 20.697506 ], [ 71.177071, 20.639696 ], [ 70.99443, 20.582094 ], [ 70.827729, 20.568336 ], [ 70.564767, 20.65721 ], [ 70.375932, 20.750637 ], [ 70.134539, 20.917117 ], [ 69.930066, 21.10209 ], [ 69.648744, 21.417656 ], [ 69.202509, 21.804782 ], [ 69.069686, 21.935813 ], [ 68.86162, 22.165848 ], [ 68.817667, 22.27813 ], [ 68.820772, 22.350848 ], [ 68.85564, 22.434494 ], [ 68.913796, 22.511436 ], [ 69.021964, 22.584464 ], [ 69.141854, 22.594051 ], [ 69.211471, 22.574087 ], [ 69.263406, 22.626921 ], [ 69.365029, 22.641587 ], [ 69.453965, 22.58671 ], [ 69.474494, 22.535936 ], [ 69.608005, 22.577259 ], [ 69.75536, 22.590651 ], [ 69.872862, 22.698451 ], [ 69.970328, 22.721795 ], [ 70.073124, 22.691757 ], [ 70.120243, 22.704686 ], [ 70.141294, 22.780131 ], [ 70.001663, 22.774149 ], [ 69.879756, 22.740535 ], [ 69.801385, 22.65997 ], [ 69.683086, 22.618907 ], [ 69.514289, 22.656242 ], [ 69.393546, 22.669863 ], [ 69.34683, 22.699258 ], [ 69.18227, 22.714438 ], [ 68.883584, 22.874609 ], [ 68.764351, 22.952813 ], [ 68.589995, 23.047247 ], [ 68.451027, 23.186943 ], [ 68.424653, 23.239881 ], [ 68.297069, 23.350446 ], [ 68.264482, 23.448313 ], [ 68.125428, 23.477765 ], [ 68.047499, 23.586353 ], [ 68.032589, 23.585577 ], [ 67.988856, 23.595188 ], [ 67.949638, 23.622189 ], [ 67.916482, 23.683148 ], [ 67.914621, 23.696945 ], [ 68.042747, 23.790277 ], [ 68.103531, 23.855528 ], [ 68.116859, 23.851749 ], [ 68.200417, 23.885416 ], [ 68.213364, 23.888889 ], [ 68.334946, 23.965445 ], [ 68.749252, 23.962055 ], [ 68.759552, 24.035833 ], [ 68.764114, 24.284111 ], [ 68.826363, 24.30839 ], [ 68.840309, 24.228195 ], [ 68.939003, 24.290861 ], [ 69.013725, 24.229084 ], [ 69.085442, 24.268278 ], [ 69.199776, 24.235195 ], [ 69.31028, 24.276695 ], [ 69.504219, 24.263 ], [ 69.590111, 24.286777 ], [ 69.724586, 24.175083 ], [ 69.912247, 24.164194 ], [ 70.024086, 24.169361 ], [ 70.077309, 24.215639 ], [ 70.110107, 24.284889 ], [ 70.370308, 24.353445 ], [ 70.57486, 24.420305 ], [ 70.561386, 24.358389 ], [ 70.593559, 24.240278 ], [ 70.655304, 24.225082 ], [ 70.805748, 24.222723 ], [ 70.853668, 24.247389 ], [ 70.872719, 24.304945 ], [ 70.980858, 24.363361 ], [ 71.050308, 24.362249 ], [ 71.107361, 24.433195 ], [ 71.000725, 24.448889 ], [ 70.989388, 24.603167 ], [ 71.086052, 24.693361 ], [ 70.962502, 24.887306 ], [ 70.917946, 24.986389 ], [ 70.881248, 25.145945 ], [ 70.752502, 25.271723 ], [ 70.737198, 25.325722 ], [ 70.665886, 25.395971 ], [ 70.672447, 25.661417 ], [ 70.64003, 25.715445 ], [ 70.526497, 25.688528 ], [ 70.374641, 25.681278 ], [ 70.275391, 25.711306 ], [ 70.225052, 25.792473 ], [ 70.145027, 25.868528 ], [ 70.091309, 25.965166 ], [ 70.080444, 26.058222 ], [ 70.145195, 26.166166 ], [ 70.172668, 26.245083 ], [ 70.183891, 26.486834 ], [ 70.167747, 26.550751 ], [ 70.106888, 26.589527 ], [ 70.024864, 26.598722 ], [ 69.855553, 26.582916 ], [ 69.721863, 26.653833 ], [ 69.522415, 26.736 ], [ 69.483719, 26.806223 ], [ 69.513191, 27.016861 ], [ 69.58667, 27.177999 ], [ 69.665947, 27.251444 ], [ 69.861969, 27.402779 ], [ 69.936249, 27.502111 ], [ 70.016281, 27.556 ], [ 70.107803, 27.766861 ], [ 70.207581, 27.885389 ], [ 70.302917, 27.946167 ], [ 70.366165, 28.008249 ], [ 70.47908, 28.033751 ], [ 70.562637, 28.019806 ], [ 70.672112, 27.914333 ], [ 70.678413, 27.839056 ], [ 70.76722, 27.714945 ], [ 70.88533, 27.705833 ], [ 71.221085, 27.842751 ], [ 71.352531, 27.866083 ], [ 71.674889, 27.885529 ], [ 71.899582, 27.964195 ], [ 71.922279, 28.113972 ], [ 71.992027, 28.203556 ], [ 72.184418, 28.358 ], [ 72.208832, 28.399973 ], [ 72.301941, 28.664806 ], [ 72.411415, 28.786222 ], [ 72.506416, 28.82275 ], [ 72.730194, 28.950111 ], [ 72.936226, 29.027555 ], [ 73.005753, 29.156778 ], [ 73.096611, 29.255388 ], [ 73.274803, 29.556168 ], [ 73.39653, 29.938999 ], [ 73.578224, 30.010111 ], [ 73.803917, 30.06986 ], [ 73.965248, 30.191305 ], [ 73.956665, 30.277472 ], [ 73.873222, 30.383444 ], [ 73.927864, 30.420918 ], [ 73.988525, 30.504555 ], [ 74.097115, 30.563778 ], [ 74.150948, 30.63261 ], [ 74.273697, 30.74325 ], [ 74.319641, 30.843555 ], [ 74.470581, 30.966 ], [ 74.54847, 30.992834 ], [ 74.571693, 31.067444 ], [ 74.639137, 31.021111 ], [ 74.671776, 31.100056 ], [ 74.545303, 31.133612 ], [ 74.533638, 31.193916 ], [ 74.550247, 31.294695 ], [ 74.641113, 31.464695 ], [ 74.611748, 31.506195 ], [ 74.578499, 31.623417 ], [ 74.517281, 31.722918 ], [ 74.543831, 31.822306 ], [ 74.573029, 31.823029 ], [ 74.703247, 31.924889 ], [ 74.807808, 31.949833 ], [ 74.831665, 32.0 ], [ 74.932503, 32.060307 ], [ 74.998413, 32.028667 ], [ 75.126694, 32.074306 ], [ 75.239166, 32.087139 ], [ 75.374748, 32.224335 ], [ 75.330414, 32.331722 ], [ 75.179558, 32.425446 ], [ 75.147636, 32.413387 ], [ 75.082642, 32.480057 ], [ 75.030167, 32.491749 ], [ 74.987892, 32.449554 ], [ 74.856415, 32.492668 ], [ 74.698418, 32.484943 ], [ 74.642197, 32.611057 ], [ 74.675636, 32.665779 ], [ 74.650139, 32.718418 ], [ 74.700386, 32.827026 ], [ 74.641998, 32.822887 ], [ 74.614693, 32.757668 ], [ 74.531525, 32.740723 ], [ 74.466057, 32.781361 ], [ 74.413887, 32.903946 ], [ 74.318031, 32.919693 ], [ 74.351692, 33.013138 ], [ 74.254974, 33.048779 ], [ 74.205254, 33.043304 ], [ 74.176247, 33.107166 ], [ 74.082832, 33.180752 ], [ 74.014275, 33.19825 ], [ 74.024391, 33.262444 ], [ 74.102974, 33.270527 ], [ 74.185081, 33.383499 ], [ 74.178169, 33.481667 ], [ 74.088364, 33.573193 ], [ 74.028442, 33.574665 ], [ 73.966583, 33.740391 ], [ 74.049057, 33.808834 ], [ 74.170082, 33.83989 ], [ 74.261108, 33.924805 ], [ 74.248695, 34.013832 ], [ 74.214668, 34.038555 ], [ 73.89817, 34.032833 ], [ 73.904083, 34.12225 ], [ 73.976585, 34.211807 ], [ 73.976219, 34.264805 ], [ 73.899414, 34.359806 ], [ 73.841751, 34.338306 ], [ 73.763222, 34.359638 ], [ 73.77697, 34.416306 ], [ 73.89872, 34.495777 ], [ 73.895332, 34.546665 ], [ 73.948059, 34.573082 ], [ 73.92733, 34.645889 ], [ 73.96022, 34.696667 ], [ 74.148972, 34.695278 ], [ 74.30278, 34.797527 ], [ 74.375557, 34.803444 ], [ 74.58017, 34.770111 ], [ 74.671303, 34.700695 ], [ 74.835609, 34.677555 ], [ 74.893753, 34.684502 ], [ 75.018753, 34.641499 ], [ 75.142303, 34.662418 ], [ 75.266052, 34.639557 ], [ 75.261864, 34.610889 ], [ 75.394974, 34.548805 ], [ 75.591888, 34.540054 ], [ 75.749191, 34.515835 ], [ 75.93222, 34.624416 ], [ 76.036469, 34.670277 ], [ 76.157913, 34.643417 ], [ 76.275108, 34.693638 ], [ 76.316139, 34.73164 ], [ 76.385948, 34.735943 ], [ 76.469193, 34.791668 ], [ 76.561806, 34.758335 ], [ 76.671638, 34.757416 ], [ 76.744698, 34.844723 ], [ 76.738861, 34.901917 ], [ 76.863136, 34.970833 ], [ 76.950333, 34.940945 ], [ 77.010139, 34.956276 ], [ 77.013779, 35.03511 ], [ 77.068359, 35.024113 ], [ 77.15683, 35.054695 ], [ 77.280807, 35.138279 ], [ 77.650558, 35.367085 ], [ 77.840919, 35.504223 ], [ 77.888641, 35.42889 ], [ 77.990639, 35.48711 ], [ 78.079361, 35.492195 ], [ 78.097336, 35.455639 ], [ 77.99028, 35.379028 ], [ 78.002029, 35.294613 ], [ 78.057556, 35.18475 ], [ 78.116058, 35.145363 ], [ 78.082863, 35.082474 ], [ 78.184669, 34.881527 ], [ 78.207336, 34.766109 ], [ 78.284363, 34.667362 ], [ 78.387192, 34.651638 ], [ 78.418137, 34.605415 ], [ 78.569336, 34.611946 ], [ 78.660057, 34.529724 ], [ 78.73008, 34.496639 ], [ 78.838112, 34.406528 ], [ 78.981476, 34.332863 ], [ 78.993385, 34.28875 ], [ 78.956192, 34.217834 ], [ 78.87117, 34.157223 ], [ 78.729225, 34.095695 ], [ 78.712112, 34.050472 ], [ 78.763641, 34.001526 ], [ 78.715775, 33.964527 ], [ 78.717247, 33.890472 ], [ 78.775055, 33.80125 ], [ 78.775223, 33.746223 ], [ 78.709305, 33.679611 ], [ 78.729919, 33.617554 ], [ 78.82325, 33.483501 ], [ 78.92128, 33.398693 ], [ 79.066612, 33.295887 ], [ 79.074974, 33.228611 ], [ 79.180496, 33.194611 ], [ 79.188446, 33.129391 ], [ 79.148865, 33.074806 ], [ 79.154663, 33.023777 ], [ 79.260002, 32.984665 ], [ 79.278778, 32.882889 ], [ 79.249779, 32.832138 ], [ 79.288918, 32.793167 ], [ 79.26458, 32.674194 ], [ 79.291969, 32.653446 ], [ 79.258415, 32.523388 ], [ 79.148865, 32.483833 ], [ 79.067528, 32.384972 ], [ 78.97097, 32.344276 ], [ 78.781197, 32.475304 ], [ 78.780334, 32.598331 ], [ 78.736443, 32.695946 ], [ 78.632332, 32.611057 ], [ 78.526413, 32.606499 ], [ 78.40522, 32.525223 ], [ 78.485748, 32.42178 ], [ 78.462364, 32.37714 ], [ 78.497528, 32.257027 ], [ 78.46653, 32.185471 ], [ 78.539085, 32.115776 ], [ 78.617554, 32.072918 ], [ 78.746307, 31.907194 ], [ 78.697502, 31.772583 ], [ 78.764809, 31.674028 ], [ 78.837219, 31.601889 ], [ 78.72142, 31.517529 ], [ 78.796974, 31.437222 ], [ 78.760834, 31.355862 ], [ 78.79747, 31.293083 ], [ 78.881638, 31.274834 ], [ 78.937836, 31.230167 ], [ 79.000389, 31.112528 ], [ 79.068359, 31.129 ], [ 79.175781, 31.102972 ], [ 79.383804, 31.100056 ], [ 79.431442, 31.02775 ], [ 79.497643, 31.030972 ], [ 79.56942, 30.956583 ], [ 79.62439, 30.939138 ], [ 79.677139, 30.975721 ], [ 79.768364, 30.997612 ], [ 79.874611, 30.971445 ], [ 79.936859, 30.882944 ], [ 80.047165, 30.789944 ], [ 80.062363, 30.694139 ], [ 80.112808, 30.680305 ], [ 80.205307, 30.584612 ], [ 80.330948, 30.556305 ], [ 80.395302, 30.516666 ], [ 80.562637, 30.460112 ], [ 80.591721, 30.476778 ], [ 80.751083, 30.393944 ], [ 80.841835, 30.306278 ], [ 81.022751, 30.256639 ], [ 81.055664, 30.204472 ], [ 80.949028, 30.18339 ], [ 80.903389, 30.218222 ], [ 80.876808, 30.132639 ], [ 80.81086, 30.093973 ], [ 80.750443, 30.013334 ], [ 80.671524, 29.959249 ], [ 80.59864, 29.956917 ], [ 80.552223, 29.849527 ], [ 80.491058, 29.802528 ], [ 80.407806, 29.79089 ], [ 80.363167, 29.745527 ], [ 80.405472, 29.597889 ], [ 80.35289, 29.528749 ], [ 80.250443, 29.448973 ], [ 80.277496, 29.338556 ], [ 80.313278, 29.312611 ], [ 80.268417, 29.139862 ], [ 80.179779, 29.136223 ], [ 80.056274, 28.916861 ], [ 80.063942, 28.842361 ], [ 80.114281, 28.829472 ], [ 80.372581, 28.629278 ], [ 80.453087, 28.624277 ], [ 80.5625, 28.689417 ], [ 80.591858, 28.647806 ], [ 80.666222, 28.635723 ], [ 80.708115, 28.570833 ], [ 80.913582, 28.464527 ], [ 81.135086, 28.376028 ], [ 81.212608, 28.35836 ], [ 81.234528, 28.279945 ], [ 81.337975, 28.182417 ], [ 81.445442, 28.160389 ], [ 81.480804, 28.0795 ], [ 81.642555, 27.996195 ], [ 81.700279, 27.989639 ], [ 81.799026, 27.910944 ], [ 81.890274, 27.858528 ], [ 81.966415, 27.930277 ], [ 82.067474, 27.924389 ], [ 82.461082, 27.682501 ], [ 82.700974, 27.722027 ], [ 82.756775, 27.585556 ], [ 82.762169, 27.510778 ], [ 82.813225, 27.495777 ], [ 82.923279, 27.504305 ], [ 82.957886, 27.467388 ], [ 83.156418, 27.458529 ], [ 83.339447, 27.334778 ], [ 83.408333, 27.41386 ], [ 83.389114, 27.480305 ], [ 83.624138, 27.467417 ], [ 83.864029, 27.351889 ], [ 83.834663, 27.428862 ], [ 83.927025, 27.448805 ], [ 84.022552, 27.434917 ], [ 84.098358, 27.514166 ], [ 84.256859, 27.445139 ], [ 84.286308, 27.389166 ], [ 84.444862, 27.36861 ], [ 84.627724, 27.328222 ], [ 84.68808, 27.226389 ], [ 84.684029, 27.141222 ], [ 84.644218, 27.049139 ], [ 84.748108, 27.010584 ], [ 84.841919, 27.01436 ], [ 84.865639, 26.985472 ], [ 84.960197, 26.962889 ], [ 84.968025, 26.917055 ], [ 85.111862, 26.877111 ], [ 85.187332, 26.8745 ], [ 85.17997, 26.805056 ], [ 85.330948, 26.747084 ], [ 85.404083, 26.794666 ], [ 85.458969, 26.790251 ], [ 85.616669, 26.882 ], [ 85.716393, 26.825916 ], [ 85.731613, 26.658361 ], [ 85.866249, 26.569944 ], [ 86.031776, 26.670555 ], [ 86.139359, 26.614973 ], [ 86.340858, 26.621889 ], [ 86.396553, 26.586527 ], [ 86.539108, 26.538694 ], [ 86.575333, 26.496695 ], [ 86.734947, 26.427221 ], [ 86.762779, 26.460806 ], [ 86.838142, 26.443916 ], [ 86.927307, 26.515917 ], [ 87.007446, 26.533695 ], [ 87.066475, 26.589361 ], [ 87.088219, 26.457222 ], [ 87.140472, 26.41361 ], [ 87.249191, 26.414888 ], [ 87.266167, 26.377056 ], [ 87.350113, 26.361444 ], [ 87.404808, 26.42675 ], [ 87.494637, 26.438168 ], [ 87.600975, 26.382473 ], [ 87.688393, 26.434528 ], [ 87.756058, 26.408695 ], [ 87.784225, 26.469166 ], [ 87.842308, 26.435389 ], [ 87.913361, 26.432777 ], [ 88.024055, 26.365778 ], [ 88.09053, 26.433584 ], [ 88.109169, 26.572779 ], [ 88.159859, 26.639139 ], [ 88.18853, 26.766861 ], [ 88.168526, 26.872417 ], [ 88.106224, 26.992332 ], [ 88.035698, 27.038221 ], [ 87.984306, 27.113167 ], [ 88.064163, 27.443195 ], [ 88.039558, 27.485806 ], [ 88.078781, 27.591778 ], [ 88.115974, 27.622417 ], [ 88.193748, 27.854805 ], [ 88.135971, 27.879223 ], [ 88.133553, 27.949694 ], [ 88.259415, 27.946751 ], [ 88.344475, 27.987722 ], [ 88.400719, 27.984388 ], [ 88.475029, 28.035862 ], [ 88.55397, 28.039528 ], [ 88.562584, 28.081917 ], [ 88.644836, 28.106056 ], [ 88.76133, 28.068361 ], [ 88.84317, 28.000805 ], [ 88.83625, 27.905806 ], [ 88.878944, 27.818056 ], [ 88.85453, 27.785862 ], [ 88.84478, 27.637777 ], [ 88.787888, 27.542917 ], [ 88.782997, 27.440834 ], [ 88.836746, 27.351194 ], [ 88.927254, 27.289778 ], [ 88.915863, 27.239889 ], [ 88.809196, 27.205111 ], [ 88.805222, 27.101833 ], [ 88.878525, 27.068277 ], [ 88.875084, 26.992332 ], [ 88.930359, 26.985584 ], [ 88.947746, 26.935083 ], [ 89.013916, 26.938499 ], [ 89.093475, 26.889 ], [ 89.137054, 26.810362 ], [ 89.265083, 26.821638 ], [ 89.370972, 26.860611 ], [ 89.482475, 26.808277 ], [ 89.539497, 26.815083 ], [ 89.561028, 26.8095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "name": "+7" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.285742, 5.306729 ], [ 97.5, 5.37223 ], [ 97.5, 9.042358 ], [ 98.144903, 9.190062 ], [ 98.155388, 9.24902 ], [ 98.246384, 9.364133 ], [ 98.681747, 10.177584 ], [ 98.709335, 10.223528 ], [ 98.756165, 10.385361 ], [ 98.801414, 10.448112 ], [ 98.821724, 10.526694 ], [ 98.775665, 10.629194 ], [ 98.791832, 10.68225 ], [ 98.927887, 10.822278 ], [ 99.001747, 10.831555 ], [ 99.032417, 10.965138 ], [ 99.17453, 11.040083 ], [ 99.325165, 11.27625 ], [ 99.32122, 11.311973 ], [ 99.409805, 11.396639 ], [ 99.402611, 11.460944 ], [ 99.457695, 11.493389 ], [ 99.467583, 11.589306 ], [ 99.514641, 11.633778 ], [ 99.57058, 11.625417 ], [ 99.639893, 11.728389 ], [ 99.662781, 11.827111 ], [ 99.583725, 11.905583 ], [ 99.60128, 11.970222 ], [ 99.553055, 12.010445 ], [ 99.559891, 12.145833 ], [ 99.504753, 12.182889 ], [ 99.446861, 12.339 ], [ 99.451836, 12.4025 ], [ 99.415169, 12.472083 ], [ 99.443916, 12.581639 ], [ 99.374191, 12.621111 ], [ 99.254997, 12.721027 ], [ 99.188225, 12.917417 ], [ 99.204697, 12.958472 ], [ 99.111443, 13.073778 ], [ 99.136024, 13.098695 ], [ 99.141167, 13.195528 ], [ 99.209724, 13.197083 ], [ 99.214226, 13.455944 ], [ 99.181274, 13.579056 ], [ 99.176613, 13.715305 ], [ 99.132942, 13.763473 ], [ 99.058609, 13.935389 ], [ 99.028778, 13.946389 ], [ 98.963608, 14.097278 ], [ 98.890915, 14.116583 ], [ 98.70211, 14.266528 ], [ 98.610443, 14.314639 ], [ 98.604332, 14.366889 ], [ 98.519974, 14.475166 ], [ 98.499969, 14.532056 ], [ 98.426918, 14.623722 ], [ 98.303307, 14.739417 ], [ 98.256142, 14.815 ], [ 98.254837, 14.907639 ], [ 98.218529, 14.988472 ], [ 98.237831, 15.035944 ], [ 98.190613, 15.111055 ], [ 98.204941, 15.218083 ], [ 98.26889, 15.237139 ], [ 98.319778, 15.308139 ], [ 98.402809, 15.303166 ], [ 98.419807, 15.34675 ], [ 98.506836, 15.381722 ], [ 98.583641, 15.362028 ], [ 98.592087, 15.436861 ], [ 98.559723, 15.598056 ], [ 98.579613, 15.784194 ], [ 98.614136, 15.857028 ], [ 98.58783, 15.908139 ], [ 98.616081, 15.9615 ], [ 98.617302, 16.051445 ], [ 98.70208, 16.144417 ], [ 98.806, 16.115278 ], [ 98.847031, 16.141472 ], [ 98.855614, 16.238832 ], [ 98.900002, 16.264723 ], [ 98.917503, 16.394751 ], [ 98.832832, 16.432362 ], [ 98.819031, 16.380861 ], [ 98.674858, 16.285917 ], [ 98.643692, 16.408472 ], [ 98.662971, 16.452667 ], [ 98.578529, 16.56275 ], [ 98.572639, 16.624584 ], [ 98.467888, 16.7255 ], [ 98.49678, 16.835251 ], [ 98.537918, 16.888584 ], [ 98.456779, 17.0165 ], [ 98.412918, 17.049028 ], [ 98.349831, 17.041416 ], [ 98.293694, 17.14986 ], [ 98.178001, 17.255388 ], [ 97.998024, 17.504694 ], [ 97.929108, 17.539917 ], [ 97.905281, 17.586805 ], [ 97.802193, 17.674973 ], [ 97.777695, 17.750805 ], [ 97.697746, 17.820305 ], [ 97.678528, 17.867001 ], [ 97.742027, 17.978582 ], [ 97.623192, 18.216333 ], [ 97.62986, 18.309834 ], [ 97.560944, 18.337055 ], [ 97.507309, 18.264528 ], [ 97.445442, 18.353971 ], [ 97.453667, 18.384445 ], [ 97.399834, 18.467388 ], [ 97.449142, 18.493805 ], [ 97.533165, 18.491722 ], [ 97.551552, 18.526028 ], [ 97.671524, 18.577833 ], [ 97.76767, 18.579222 ], [ 97.773445, 18.691278 ], [ 97.747803, 18.842251 ], [ 97.671165, 18.945444 ], [ 97.736191, 18.976084 ], [ 97.738503, 19.031195 ], [ 97.832031, 19.098972 ], [ 97.841972, 19.295584 ], [ 97.801498, 19.356638 ], [ 97.804253, 19.406473 ], [ 97.887001, 19.505611 ], [ 97.863556, 19.573639 ], [ 97.966637, 19.598749 ], [ 98.028275, 19.640806 ], [ 98.045166, 19.808584 ], [ 98.171143, 19.77014 ], [ 98.248528, 19.679806 ], [ 98.515221, 19.716055 ], [ 98.582527, 19.707527 ], [ 98.710335, 19.760361 ], [ 98.778473, 19.757694 ], [ 98.833748, 19.809944 ], [ 98.924583, 19.744139 ], [ 99.003555, 19.775249 ], [ 99.034943, 19.843666 ], [ 99.026642, 19.931139 ], [ 99.070724, 20.088499 ], [ 99.167809, 20.127945 ], [ 99.251724, 20.1145 ], [ 99.330475, 20.064112 ], [ 99.429192, 20.08639 ], [ 99.537277, 20.144751 ], [ 99.556442, 20.208279 ], [ 99.520752, 20.234249 ], [ 99.521858, 20.361221 ], [ 99.688667, 20.315472 ], [ 99.826111, 20.348917 ], [ 99.883919, 20.442139 ], [ 99.949448, 20.449444 ], [ 100.09642, 20.361195 ], [ 100.128441, 20.400667 ], [ 100.177803, 20.620527 ], [ 100.259476, 20.746944 ], [ 100.401276, 20.832001 ], [ 100.503502, 20.809889 ], [ 100.527863, 20.9575 ], [ 100.636948, 21.064278 ], [ 100.701721, 21.181833 ], [ 100.727028, 21.312111 ], [ 100.848808, 21.30261 ], [ 100.912613, 21.358973 ], [ 101.005386, 21.392221 ], [ 101.159225, 21.525888 ], [ 101.154747, 21.563862 ], [ 101.213608, 21.561251 ], [ 101.220642, 21.491444 ], [ 101.197052, 21.41675 ], [ 101.259865, 21.364166 ], [ 101.238052, 21.250723 ], [ 101.290413, 21.178055 ], [ 101.386223, 21.22164 ], [ 101.579918, 21.244944 ], [ 101.674583, 21.198778 ], [ 101.705643, 21.149305 ], [ 101.787865, 21.140028 ], [ 101.847115, 21.252111 ], [ 101.740303, 21.314833 ], [ 101.778221, 21.513306 ], [ 101.761528, 21.567389 ], [ 101.826721, 21.602972 ], [ 101.766502, 21.669472 ], [ 101.750748, 21.738556 ], [ 101.781471, 21.8325 ], [ 101.621666, 21.976166 ], [ 101.625336, 22.022444 ], [ 101.582001, 22.102306 ], [ 101.603996, 22.1595 ], [ 101.547058, 22.250139 ], [ 101.618721, 22.274361 ], [ 101.679779, 22.373028 ], [ 101.695305, 22.474277 ], [ 101.806892, 22.485916 ], [ 101.863609, 22.390167 ], [ 101.919357, 22.434278 ], [ 102.024391, 22.456888 ], [ 102.240059, 22.426111 ], [ 102.252975, 22.458973 ], [ 102.408607, 22.64539 ], [ 102.469528, 22.769417 ], [ 102.515083, 22.780416 ], [ 102.585587, 22.708027 ], [ 102.616302, 22.731138 ], [ 102.695915, 22.706778 ], [ 102.808693, 22.624695 ], [ 102.867416, 22.608055 ], [ 102.932053, 22.488251 ], [ 103.030746, 22.444611 ], [ 103.148499, 22.54911 ], [ 103.198448, 22.651138 ], [ 103.285057, 22.685583 ], [ 103.341667, 22.821251 ], [ 103.445503, 22.75275 ], [ 103.431808, 22.713778 ], [ 103.529526, 22.593695 ], [ 103.580055, 22.663305 ], [ 103.568306, 22.70125 ], [ 103.647308, 22.797722 ], [ 103.76889, 22.688917 ], [ 103.826614, 22.616611 ], [ 103.96933, 22.506056 ], [ 104.014053, 22.574778 ], [ 104.045555, 22.726778 ], [ 104.124496, 22.81286 ], [ 104.276001, 22.842916 ], [ 104.272499, 22.739805 ], [ 104.362778, 22.692444 ], [ 104.597031, 22.851749 ], [ 104.733498, 22.824278 ], [ 104.77697, 22.901222 ], [ 104.862137, 22.947611 ], [ 104.835556, 23.008055 ], [ 104.818359, 23.125389 ], [ 104.873947, 23.123167 ], [ 104.892586, 23.178862 ], [ 104.956612, 23.176611 ], [ 105.081108, 23.265223 ], [ 105.170891, 23.286556 ], [ 105.236832, 23.278917 ], [ 105.337891, 23.386612 ], [ 105.376999, 23.318611 ], [ 105.43808, 23.310112 ], [ 105.501274, 23.211277 ], [ 105.556358, 23.187056 ], [ 105.576469, 23.081667 ], [ 105.734169, 23.06311 ], [ 105.831558, 22.986528 ], [ 105.880608, 22.921028 ], [ 105.962997, 22.949194 ], [ 106.009697, 22.994223 ], [ 106.207664, 22.985971 ], [ 106.264748, 22.920029 ], [ 106.268196, 22.876472 ], [ 106.501335, 22.904667 ], [ 106.513641, 22.940611 ], [ 106.61142, 22.923471 ], [ 106.634109, 22.877417 ], [ 106.818726, 22.818083 ], [ 106.730942, 22.640638 ], [ 106.731697, 22.586027 ], [ 106.591721, 22.544027 ], [ 106.564972, 22.456861 ], [ 106.574059, 22.34289 ], [ 106.644859, 22.340334 ], [ 106.695084, 22.276445 ], [ 106.683975, 22.225805 ], [ 106.715446, 22.105417 ], [ 106.690392, 21.996778 ], [ 106.790863, 22.008278 ], [ 106.923615, 21.97875 ], [ 107.058052, 21.923166 ], [ 107.023888, 21.860611 ], [ 107.237167, 21.706278 ], [ 107.306778, 21.742027 ], [ 107.365448, 21.669472 ], [ 107.499443, 21.617722 ], [ 107.638916, 21.60836 ], [ 107.706169, 21.618361 ], [ 107.822746, 21.661167 ], [ 107.868279, 21.654751 ], [ 107.903419, 21.592556 ], [ 107.976723, 21.539806 ], [ 108.002831, 21.549917 ], [ 108.050468, 21.555666 ], [ 108.050468, 18.279274 ], [ 112.5, 14.447275 ], [ 112.5, 6.25 ], [ 102.09175, 6.25 ], [ 102.09214, 6.243945 ], [ 102.08786, 6.143 ], [ 102.058472, 6.09525 ], [ 101.940193, 5.983111 ], [ 101.917473, 5.913583 ], [ 101.938332, 5.871639 ], [ 101.821808, 5.774556 ], [ 101.753197, 5.799778 ], [ 101.671112, 5.791472 ], [ 101.656166, 5.875167 ], [ 101.583969, 5.933694 ], [ 101.482971, 5.870361 ], [ 101.396889, 5.876389 ], [ 101.348335, 5.811028 ], [ 101.270164, 5.810083 ], [ 101.262192, 5.721917 ], [ 101.213669, 5.6605 ], [ 101.127586, 5.626861 ], [ 101.084084, 5.709111 ], [ 100.984192, 5.799278 ], [ 101.031754, 5.918167 ], [ 101.085197, 5.913195 ], [ 101.125893, 6.108333 ], [ 101.061584, 6.147972 ], [ 101.12397, 6.187556 ], [ 101.094307, 6.258889 ], [ 100.850754, 6.231194 ], [ 100.847504, 6.311528 ], [ 100.817108, 6.436167 ], [ 100.751167, 6.460778 ], [ 100.661331, 6.441945 ], [ 100.491028, 6.5165 ], [ 100.36422, 6.537472 ], [ 100.306946, 6.601917 ], [ 100.293861, 6.699695 ], [ 100.171387, 6.68875 ], [ 100.174309, 6.659056 ], [ 100.159164, 6.495306 ], [ 100.12117, 6.422583 ], [ 99.822759, 6.520294 ], [ 99.406238, 6.41125 ], [ 99.243577, 6.368666 ], [ 98.030232, 6.051015 ], [ 98.659784, 4.871855 ], [ 100.688339, 2.91325 ], [ 103.414282, 1.295827 ], [ 103.737379, 1.145873 ], [ 104.453821, 1.309908 ], [ 104.568608, 1.336189 ], [ 104.599255, 1.343206 ], [ 105.0, 1.43496 ], [ 105.0, 5.21 ], [ 109.635696, 5.21 ], [ 109.635696, 2.083083 ], [ 109.639809, 2.083333 ], [ 109.613525, 1.984444 ], [ 109.536026, 1.921444 ], [ 109.578003, 1.810556 ], [ 109.67511, 1.785472 ], [ 109.659225, 1.619639 ], [ 109.793221, 1.494028 ], [ 109.834053, 1.421556 ], [ 109.95578, 1.399861 ], [ 109.978722, 1.297278 ], [ 110.052696, 1.266194 ], [ 110.091194, 1.196944 ], [ 110.15078, 1.200111 ], [ 110.23925, 1.110583 ], [ 110.279053, 0.991222 ], [ 110.39389, 0.992917 ], [ 110.404747, 0.945806 ], [ 110.477913, 0.880639 ], [ 110.571915, 0.855222 ], [ 110.717857, 0.906694 ], [ 110.809135, 0.907444 ], [ 110.810608, 0.948139 ], [ 110.882774, 0.9765 ], [ 110.907555, 1.029778 ], [ 110.986526, 1.025472 ], [ 111.075607, 1.048972 ], [ 111.252808, 1.064889 ], [ 111.383698, 1.013056 ], [ 111.497864, 1.021722 ], [ 111.517998, 0.964222 ], [ 111.665695, 1.039889 ], [ 111.828308, 0.987667 ], [ 111.930527, 1.114472 ], [ 112.144997, 1.139944 ], [ 112.174835, 1.305389 ], [ 112.221275, 1.395111 ], [ 112.19767, 1.432917 ], [ 112.315781, 1.502833 ], [ 112.424141, 1.522222 ], [ 112.492416, 1.577361 ], [ 112.725807, 1.563083 ], [ 112.812752, 1.537417 ], [ 112.898392, 1.5865 ], [ 113.057915, 1.553806 ], [ 113.034225, 1.469056 ], [ 113.12014, 1.430944 ], [ 113.144806, 1.386222 ], [ 113.227974, 1.393889 ], [ 113.316498, 1.37575 ], [ 113.439781, 1.279944 ], [ 113.493164, 1.315306 ], [ 113.57692, 1.301528 ], [ 113.591057, 1.258 ], [ 113.658165, 1.210528 ], [ 113.701363, 1.258806 ], [ 113.799278, 1.294139 ], [ 113.815666, 1.366 ], [ 113.943726, 1.434278 ], [ 114.085945, 1.46283 ], [ 114.110802, 1.3126 ], [ 114.0952, 1.253112 ], [ 113.958, 1.11106 ], [ 113.868599, 1.034481 ], [ 113.793297, 1.0028 ], [ 113.792801, 0.885854 ], [ 113.879097, 0.849528 ], [ 113.885803, 0.769647 ], [ 113.717201, 0.580395 ], [ 113.8302, 0.548834 ], [ 114.057404, 0.63322 ], [ 114.147598, 0.592827 ], [ 114.368599, 0.540448 ], [ 114.602097, 0.610082 ], [ 114.741302, 0.706907 ], [ 114.9011, 0.760777 ], [ 114.949898, 0.717246 ], [ 115.0821, 0.460685 ], [ 115.054001, 0.370886 ], [ 114.8871, 0.29191 ], [ 114.827797, 0.092438 ], [ 114.834702, 0.01787 ], [ 114.877701, -0.133192 ], [ 114.921097, -0.181925 ], [ 114.988899, -0.200595 ], [ 115.048203, -0.171242 ], [ 115.140999, -0.04423 ], [ 115.2686, -0.00166 ], [ 115.315598, -0.073063 ], [ 115.246399, -0.227142 ], [ 115.235901, -0.297366 ], [ 115.262497, -0.390946 ], [ 115.3237, -0.490553 ], [ 115.3834, -0.689804 ], [ 115.403801, -0.837749 ], [ 115.4972, -0.847639 ], [ 115.566597, -0.934123 ], [ 115.711197, -1.084614 ], [ 115.756203, -1.199835 ], [ 115.756599, -1.26098 ], [ 115.623299, -1.493488 ], [ 115.505997, -1.475131 ], [ 115.446999, -1.488542 ], [ 115.398102, -1.539372 ], [ 115.3619, -1.63432 ], [ 115.382797, -1.836764 ], [ 115.375, -1.907042 ], [ 115.252296, -2.147742 ], [ 115.177299, -2.244553 ], [ 115.156403, -2.299944 ], [ 115.074501, -2.322189 ], [ 115.045197, -2.405314 ], [ 114.968201, -2.541959 ], [ 114.736603, -2.824281 ], [ 114.578201, -2.959252 ], [ 114.334397, -3.573208 ], [ 113.973125, -6.059539 ], [ 115.971701, -6.379311 ], [ 116.52131, -7.058827 ], [ 115.801822, -7.498514 ], [ 114.576701, -7.984634 ], [ 114.488978, -8.019441 ], [ 114.427479546731533, -8.072946524326943 ], [ 114.427479, -8.072947 ], [ 114.38575, -8.233861 ], [ 114.529162, -8.507706 ], [ 114.568438, -8.536182 ], [ 114.65545, -8.599267 ], [ 114.832513, -8.727638 ], [ 114.692612, -9.0 ], [ 112.5, -9.0 ], [ 112.76867, -90.0 ], [ 112.5, -89.994476036675096 ], [ 97.5, -89.68607 ], [ 97.5, -12.8 ], [ 97.5, -11.5 ], [ 97.5, 0.458748 ], [ 96.25025, 2.167531 ], [ 95.300926, 2.912001 ], [ 95.330905, 3.066891 ], [ 95.825553, 3.041908 ], [ 96.310208, 2.807076 ], [ 96.989724, 2.767104 ], [ 97.163794, 3.12797 ], [ 97.097106, 3.160673 ], [ 97.021786, 3.262253 ], [ 96.909513, 3.459891 ], [ 96.811832, 3.523854 ], [ 96.774249, 3.607963 ], [ 96.662731, 3.630958 ], [ 96.549435, 3.615411 ], [ 96.469414, 3.629157 ], [ 96.378474, 3.691591 ], [ 96.293562, 3.77525 ], [ 96.117206, 4.009388 ], [ 95.934679, 4.114672 ], [ 95.789816, 4.279957 ], [ 95.593801, 4.469575 ], [ 95.458891, 4.557634 ], [ 95.387424, 4.679238 ], [ 95.277909, 4.780842 ], [ 95.242683, 4.865329 ], [ 95.239698, 4.971965 ], [ 95.179143, 5.046377 ], [ 95.092708, 5.250298 ], [ 95.110158, 5.431329 ], [ 95.038181, 5.501099 ], [ 94.941764, 5.561437 ], [ 94.890317, 5.709644 ], [ 94.912631, 5.796405 ], [ 94.988197, 5.861156 ], [ 95.099679, 5.861216 ], [ 95.105702, 5.95359 ], [ 95.158313, 6.010095 ], [ 95.234456, 6.022856 ], [ 95.366886, 6.007688 ], [ 95.448987, 5.948511 ], [ 95.489927, 5.876571 ], [ 95.48824, 5.764934 ], [ 95.540703, 5.733395 ], [ 95.622365, 5.746261 ], [ 95.719745, 5.696977 ], [ 95.887733, 5.636862 ], [ 95.954197, 5.600247 ], [ 96.009598, 5.49987 ], [ 96.140198, 5.401299 ], [ 96.277179, 5.382139 ], [ 96.393657, 5.338645 ], [ 96.494367, 5.353989 ], [ 96.544075, 5.328111 ], [ 96.698839, 5.373996 ], [ 96.823579, 5.397983 ], [ 97.016719, 5.380691 ], [ 97.13257, 5.341471 ], [ 97.233207, 5.286033 ], [ 97.285742, 5.306729 ] ] ], [ [ [ 125.17937, -8.083568 ], [ 125.179370955087364, -8.083569814699079 ], [ 125.245713, -8.209622 ], [ 125.209097, -8.229172 ], [ 125.17937, -8.083568 ] ] ], [ [ [ 71.08725, 40.0 ], [ 71.007698, 40.039528 ], [ 71.003944, 40.174778 ], [ 71.081444, 40.150696 ], [ 71.119751, 40.017471 ], [ 71.229332, 39.91975 ], [ 71.180443, 39.875805 ], [ 71.112778, 39.915279 ], [ 71.08725, 40.0 ] ] ], [ [ [ 70.673615, 39.895248 ], [ 70.725441, 39.849972 ], [ 70.627975, 39.798695 ], [ 70.545998, 39.838638 ], [ 70.521248, 39.895611 ], [ 70.673615, 39.895248 ] ] ], [ [ [ 97.5, 89.0 ], [ 112.5, 89.0 ], [ 112.5, 78.5 ], [ 114.797958, 78.5 ], [ 114.797902846444345, 78.494813294981128 ], [ 114.761647, 75.085271 ], [ 111.311446, 74.532842 ], [ 111.046344, 74.433244 ], [ 111.980964, 74.075685 ], [ 111.292763, 73.859146 ], [ 110.92395, 73.694214 ], [ 111.133614, 73.641937 ], [ 111.108597, 73.588043 ], [ 110.994431, 73.564987 ], [ 110.848328, 73.565536 ], [ 110.803589, 73.508331 ], [ 110.731934, 73.494705 ], [ 110.653587, 73.439972 ], [ 110.534149, 73.403595 ], [ 110.359421, 73.399719 ], [ 110.183868, 73.384155 ], [ 110.431091, 73.334152 ], [ 110.566673, 73.319443 ], [ 110.596649, 73.253052 ], [ 110.435532, 73.185806 ], [ 110.711929, 73.18248 ], [ 110.809982, 73.168869 ], [ 110.8647, 73.073608 ], [ 110.932747, 73.028595 ], [ 110.777771, 73.000549 ], [ 110.827209, 72.950272 ], [ 110.761108, 72.912201 ], [ 110.659149, 72.900543 ], [ 110.691933, 72.809418 ], [ 110.632202, 72.786652 ], [ 110.711929, 72.65332 ], [ 110.908043, 72.633881 ], [ 110.951927, 72.571381 ], [ 111.010818, 72.576385 ], [ 111.233047, 72.545822 ], [ 111.303589, 72.478317 ], [ 111.075821, 72.406097 ], [ 111.111366, 72.3647 ], [ 111.325272, 72.33638 ], [ 111.359154, 72.31694 ], [ 111.580551, 72.319443 ], [ 111.662773, 72.275269 ], [ 111.633041, 72.209152 ], [ 111.740257, 72.187195 ], [ 111.774986, 72.144989 ], [ 111.943314, 72.127197 ], [ 112.012207, 72.133331 ], [ 112.012192, 71.407486 ], [ 112.333038, 71.343323 ], [ 112.512756, 71.265823 ], [ 112.642754, 71.289703 ], [ 112.723297, 71.248322 ], [ 112.686897, 71.202774 ], [ 112.530823, 71.169434 ], [ 112.588043, 71.101089 ], [ 112.473038, 71.062195 ], [ 112.384987, 71.064697 ], [ 112.292213, 71.013321 ], [ 112.199142, 71.009155 ], [ 112.150269, 71.055542 ], [ 112.053307, 71.05304 ], [ 111.977203, 70.982758 ], [ 111.51416, 70.935806 ], [ 111.335541, 70.852478 ], [ 111.148331, 70.853043 ], [ 110.913971, 70.817535 ], [ 110.880814, 70.796371 ], [ 110.722351, 70.821655 ], [ 110.682213, 70.796936 ], [ 110.564148, 70.8022 ], [ 110.503326, 70.765823 ], [ 110.513611, 70.716934 ], [ 110.323608, 70.704712 ], [ 110.283867, 70.672211 ], [ 110.213882, 70.669708 ], [ 110.120529, 70.631927 ], [ 110.159416, 70.552475 ], [ 110.140549, 70.478592 ], [ 110.264999, 70.46138 ], [ 110.272491, 70.417206 ], [ 110.016937, 70.41832 ], [ 109.853043, 70.4086 ], [ 109.753052, 70.387772 ], [ 109.641663, 70.384995 ], [ 109.632202, 70.329437 ], [ 109.546944, 70.256104 ], [ 109.410812, 70.227203 ], [ 109.352478, 70.23027 ], [ 109.305542, 70.177765 ], [ 109.382751, 70.119431 ], [ 109.381088, 70.079437 ], [ 109.524696, 70.008606 ], [ 109.453049, 69.989975 ], [ 109.383614, 69.929428 ], [ 109.421097, 69.892761 ], [ 109.364433, 69.838318 ], [ 109.214432, 69.7686 ], [ 109.149719, 69.761108 ], [ 108.937477, 69.788879 ], [ 108.88472, 69.839157 ], [ 108.583054, 69.836929 ], [ 108.488312, 69.853592 ], [ 108.224426, 69.852478 ], [ 108.063599, 69.785538 ], [ 108.018051, 69.707489 ], [ 107.902206, 69.674988 ], [ 107.744431, 69.68248 ], [ 107.50943, 69.642487 ], [ 107.14444, 69.591934 ], [ 106.948868, 69.537766 ], [ 106.800262, 69.514435 ], [ 106.591087, 69.516663 ], [ 106.514427, 69.563309 ], [ 106.409416, 69.558868 ], [ 106.263321, 69.451096 ], [ 106.131363, 69.404984 ], [ 106.886108, 68.866928 ], [ 106.900543, 68.609985 ], [ 106.893883, 68.443588 ], [ 106.875809, 68.316376 ], [ 106.896942, 68.120255 ], [ 106.881088, 68.023315 ], [ 106.876648, 67.84166 ], [ 106.832489, 67.681656 ], [ 106.82193, 67.488586 ], [ 106.798866, 67.338318 ], [ 106.686371, 67.253876 ], [ 106.642212, 67.244141 ], [ 106.503601, 67.286377 ], [ 106.413879, 67.267212 ], [ 106.317757, 67.208328 ], [ 106.221367, 67.182755 ], [ 106.044144, 67.163879 ], [ 105.968872, 67.062759 ], [ 105.89415, 67.04332 ], [ 105.717209, 67.025269 ], [ 105.551651, 67.024994 ], [ 105.6436, 66.94664 ], [ 105.829163, 66.944702 ], [ 105.85582, 66.921646 ], [ 106.043869, 66.901657 ], [ 106.069153, 66.85498 ], [ 106.048027, 66.788315 ], [ 106.147774, 66.809143 ], [ 106.149429, 66.722214 ], [ 106.25, 66.703323 ], [ 106.227203, 66.660538 ], [ 106.241653, 66.581665 ], [ 106.296944, 66.562759 ], [ 106.326927, 66.47554 ], [ 106.185257, 66.434982 ], [ 106.100807, 66.378036 ], [ 106.12442, 66.315262 ], [ 106.130257, 66.175537 ], [ 106.224426, 66.149155 ], [ 106.343048, 66.154709 ], [ 106.488876, 66.004715 ], [ 106.46666, 65.931931 ], [ 106.496094, 65.894989 ], [ 106.448318, 65.821381 ], [ 106.463882, 65.72998 ], [ 106.428864, 65.662766 ], [ 106.631927, 65.635818 ], [ 106.699707, 65.601379 ], [ 106.698868, 65.551086 ], [ 106.940811, 65.511658 ], [ 106.84137, 65.376083 ], [ 106.786102, 65.369705 ], [ 106.647774, 65.391937 ], [ 106.556374, 65.378586 ], [ 106.450821, 65.313873 ], [ 106.426933, 65.261383 ], [ 106.2836, 65.135818 ], [ 106.192467, 65.128586 ], [ 106.173599, 65.096375 ], [ 106.026657, 65.050537 ], [ 105.974808, 65.003052 ], [ 106.076927, 64.960815 ], [ 106.1297, 64.895264 ], [ 106.10582, 64.859146 ], [ 106.025543, 64.906372 ], [ 105.949142, 64.894989 ], [ 105.957764, 64.808319 ], [ 105.898041, 64.821381 ], [ 105.847214, 64.791656 ], [ 105.835823, 64.714996 ], [ 105.85498, 64.645828 ], [ 105.776932, 64.649429 ], [ 105.726089, 64.57222 ], [ 105.804153, 64.530548 ], [ 105.79248, 64.478043 ], [ 105.941933, 64.482483 ], [ 106.038879, 64.516098 ], [ 106.139977, 64.488876 ], [ 106.124977, 64.448029 ], [ 106.186653, 64.396378 ], [ 106.263046, 64.426086 ], [ 106.39444, 64.443314 ], [ 106.563309, 64.4422 ], [ 106.571663, 64.508606 ], [ 106.678589, 64.493866 ], [ 106.726929, 64.422211 ], [ 106.886383, 64.416092 ], [ 107.117203, 64.334991 ], [ 107.220833, 64.333603 ], [ 107.236649, 64.286926 ], [ 107.334427, 64.244431 ], [ 107.594711, 64.299149 ], [ 107.66832, 64.247208 ], [ 107.787491, 64.214996 ], [ 107.850807, 64.180542 ], [ 107.993317, 64.169708 ], [ 108.026543, 64.223465 ], [ 108.136108, 64.241928 ], [ 108.2211, 64.208328 ], [ 108.32222, 64.039429 ], [ 108.251389, 63.989159 ], [ 108.169708, 64.000549 ], [ 108.118317, 63.981377 ], [ 107.959427, 64.000549 ], [ 107.84082, 63.984993 ], [ 107.771103, 64.006653 ], [ 107.619431, 63.957497 ], [ 107.594711, 63.871658 ], [ 107.538307, 63.856659 ], [ 107.361649, 63.879433 ], [ 107.291092, 63.950829 ], [ 107.200272, 63.957214 ], [ 107.143883, 63.9086 ], [ 107.071381, 63.885269 ], [ 106.991364, 63.932213 ], [ 106.764427, 63.996658 ], [ 106.702766, 63.98555 ], [ 106.678307, 63.930275 ], [ 106.791367, 63.852776 ], [ 106.694427, 63.767769 ], [ 106.627472, 63.681381 ], [ 106.67276, 63.603607 ], [ 106.550262, 63.537498 ], [ 106.574432, 63.464439 ], [ 106.651382, 63.400269 ], [ 106.725807, 63.374992 ], [ 106.684418, 63.298332 ], [ 106.504707, 63.303047 ], [ 106.444138, 63.331108 ], [ 106.366089, 63.275826 ], [ 106.36554, 63.216385 ], [ 106.404709, 63.110275 ], [ 106.281662, 63.070549 ], [ 106.121918, 63.069717 ], [ 106.146103, 63.014442 ], [ 106.219437, 62.941933 ], [ 106.210823, 62.900269 ], [ 106.437477, 62.847488 ], [ 106.467758, 62.776939 ], [ 106.524429, 62.75222 ], [ 106.505257, 62.674438 ], [ 106.814423, 62.599716 ], [ 106.707207, 62.582771 ], [ 106.657211, 62.544998 ], [ 106.714432, 62.477211 ], [ 106.521927, 62.37027 ], [ 106.455551, 62.390549 ], [ 106.3797, 62.29055 ], [ 106.447746, 62.241661 ], [ 106.38472, 62.126099 ], [ 106.37886, 62.065269 ], [ 106.326393, 62.020828 ], [ 106.199997, 61.99749 ], [ 106.147774, 61.952774 ], [ 106.070267, 61.938324 ], [ 106.022774, 61.890274 ], [ 105.89415, 61.82888 ], [ 105.949142, 61.683327 ], [ 105.8647, 61.673882 ], [ 105.802757, 61.617767 ], [ 105.694702, 61.649437 ], [ 105.585823, 61.613052 ], [ 105.564148, 61.569717 ], [ 105.374977, 61.535271 ], [ 105.280273, 61.482208 ], [ 105.248871, 61.413322 ], [ 105.123871, 61.420273 ], [ 104.939697, 61.395538 ], [ 104.890549, 61.359711 ], [ 104.962769, 61.264992 ], [ 105.006653, 61.172493 ], [ 104.834991, 61.177765 ], [ 104.686653, 61.080826 ], [ 104.6297, 61.081108 ], [ 104.568329, 60.936653 ], [ 104.601379, 60.873604 ], [ 104.483597, 60.855553 ], [ 104.506104, 60.783333 ], [ 104.588593, 60.762497 ], [ 104.516663, 60.633331 ], [ 104.562477, 60.550545 ], [ 104.641373, 60.494156 ], [ 104.664146, 60.399719 ], [ 104.76416, 60.38221 ], [ 104.877197, 60.303879 ], [ 105.011108, 60.282768 ], [ 105.056091, 60.29277 ], [ 105.231369, 60.276939 ], [ 105.333878, 60.293327 ], [ 105.375809, 60.249161 ], [ 105.453598, 60.269989 ], [ 105.485527, 60.2286 ], [ 105.429703, 60.138603 ], [ 105.43248, 60.085266 ], [ 105.485527, 60.022217 ], [ 105.430542, 59.893883 ], [ 105.495247, 59.845543 ], [ 105.378311, 59.820831 ], [ 105.185257, 59.860275 ], [ 105.01915, 59.837212 ], [ 105.025818, 59.775551 ], [ 104.884987, 59.747215 ], [ 104.798599, 59.699158 ], [ 104.810532, 59.627769 ], [ 104.876923, 59.585823 ], [ 104.857758, 59.54583 ], [ 104.97554, 59.463058 ], [ 105.11026, 59.453323 ], [ 105.183037, 59.473045 ], [ 105.23082, 59.42527 ], [ 105.240257, 59.345825 ], [ 105.188873, 59.306381 ], [ 105.299423, 59.256386 ], [ 105.33194, 59.192764 ], [ 105.300262, 59.153877 ], [ 105.360527, 59.104439 ], [ 105.3022, 59.061661 ], [ 105.143883, 59.04583 ], [ 105.084991, 58.992767 ], [ 104.947746, 58.959152 ], [ 104.893883, 58.90387 ], [ 104.838593, 58.894432 ], [ 104.755829, 58.815262 ], [ 104.816093, 58.783043 ], [ 104.871918, 58.715538 ], [ 104.78804, 58.66526 ], [ 104.535263, 58.637489 ], [ 104.458328, 58.60054 ], [ 104.391937, 58.652206 ], [ 104.399147, 58.69915 ], [ 104.298317, 58.709984 ], [ 104.236397, 58.758659 ], [ 104.044434, 58.773048 ], [ 103.992203, 58.73555 ], [ 103.940811, 58.760826 ], [ 103.954163, 58.848602 ], [ 103.893333, 58.905548 ], [ 103.793869, 58.897484 ], [ 103.676376, 58.926094 ], [ 103.615257, 58.911377 ], [ 103.591927, 58.951935 ], [ 103.484711, 59.007774 ], [ 103.395828, 59.017769 ], [ 103.244431, 59.179436 ], [ 103.218323, 59.288887 ], [ 103.164429, 59.259995 ], [ 103.062187, 59.269157 ], [ 103.015549, 59.321938 ], [ 102.871643, 59.265274 ], [ 102.842484, 59.21888 ], [ 102.767487, 59.197487 ], [ 102.606087, 59.206383 ], [ 102.460823, 59.157494 ], [ 102.404427, 59.072495 ], [ 102.450821, 59.001106 ], [ 102.43692, 58.943047 ], [ 102.537201, 58.901657 ], [ 102.56694, 58.796944 ], [ 102.511383, 58.71666 ], [ 102.413307, 58.661377 ], [ 102.310532, 58.645271 ], [ 102.251099, 58.559715 ], [ 102.162201, 58.515274 ], [ 102.006653, 58.496658 ], [ 101.923309, 58.465546 ], [ 101.77388, 58.454437 ], [ 101.684982, 58.418884 ], [ 101.650818, 58.360275 ], [ 101.545532, 58.268326 ], [ 101.534714, 58.224709 ], [ 101.276382, 58.218597 ], [ 101.216087, 58.14444 ], [ 101.104431, 58.110825 ], [ 101.162773, 58.05555 ], [ 101.139427, 57.982491 ], [ 100.953049, 57.866936 ], [ 100.848328, 57.847214 ], [ 100.845261, 57.731934 ], [ 100.81749, 57.640549 ], [ 100.957207, 57.556381 ], [ 100.962769, 57.500832 ], [ 100.911209, 57.448357 ], [ 100.864433, 57.466103 ], [ 100.741928, 57.401932 ], [ 100.663879, 57.467491 ], [ 100.403587, 57.54805 ], [ 100.380814, 57.616936 ], [ 100.328049, 57.682495 ], [ 100.373032, 57.731102 ], [ 100.306374, 57.75972 ], [ 100.207489, 57.837769 ], [ 100.123032, 57.865547 ], [ 100.07666, 57.961105 ], [ 100.080551, 58.045547 ], [ 100.044144, 58.079437 ], [ 99.969986, 58.083878 ], [ 99.801376, 58.057213 ], [ 99.719437, 58.086937 ], [ 99.636932, 58.055824 ], [ 99.619705, 58.001663 ], [ 99.494431, 57.934158 ], [ 99.4711, 57.859718 ], [ 99.421646, 57.793327 ], [ 99.332764, 57.798882 ], [ 99.202774, 57.763329 ], [ 99.07666, 57.771378 ], [ 98.974152, 57.721657 ], [ 98.883881, 57.721375 ], [ 98.732208, 57.794159 ], [ 98.630264, 57.777214 ], [ 98.546646, 57.791664 ], [ 98.101089, 57.823051 ], [ 97.986923, 57.822495 ], [ 97.891937, 57.780548 ], [ 97.668594, 57.485825 ], [ 97.343048, 57.043327 ], [ 97.405548, 57.026382 ], [ 97.476929, 56.964439 ], [ 97.581375, 56.921661 ], [ 97.476654, 56.885826 ], [ 97.468597, 56.827492 ], [ 97.55748, 56.791382 ], [ 97.66748, 56.808601 ], [ 97.766937, 56.788605 ], [ 97.750275, 56.704163 ], [ 97.783051, 56.658043 ], [ 97.74498, 56.558601 ], [ 97.879425, 56.559433 ], [ 97.881927, 56.392494 ], [ 97.556641, 56.387497 ], [ 97.559982, 56.288887 ], [ 97.586929, 56.18943 ], [ 97.509155, 56.18499 ], [ 97.428589, 56.14666 ], [ 97.43248, 56.095825 ], [ 97.352203, 56.048607 ], [ 97.272766, 56.086937 ], [ 97.123596, 56.116386 ], [ 97.061096, 56.025551 ], [ 96.980545, 56.022217 ], [ 96.969711, 55.855827 ], [ 96.772491, 55.77916 ], [ 96.759155, 55.736656 ], [ 96.821106, 55.692215 ], [ 96.746368, 55.651382 ], [ 96.85582, 55.594437 ], [ 96.820831, 55.564438 ], [ 96.914154, 55.313324 ], [ 96.695816, 55.250832 ], [ 96.704437, 55.205269 ], [ 96.659988, 55.10833 ], [ 96.587769, 55.027214 ], [ 96.712769, 54.926384 ], [ 96.673599, 54.802216 ], [ 96.56192, 54.696938 ], [ 96.588882, 54.659714 ], [ 96.551651, 54.56916 ], [ 96.549713, 54.50444 ], [ 96.451096, 54.520271 ], [ 96.315826, 54.571388 ], [ 96.205261, 54.541382 ], [ 96.055817, 54.576103 ], [ 96.019989, 54.501106 ], [ 95.898041, 54.388329 ], [ 95.790817, 54.42083 ], [ 95.666382, 54.345268 ], [ 95.651932, 54.29361 ], [ 95.678314, 54.231377 ], [ 95.911377, 54.163322 ], [ 95.988037, 54.087212 ], [ 96.080551, 54.063049 ], [ 96.049423, 53.995544 ], [ 96.132202, 53.971931 ], [ 96.406097, 53.783607 ], [ 96.5, 53.68499 ], [ 96.655258, 53.635826 ], [ 96.71582, 53.699997 ], [ 96.886658, 53.728874 ], [ 97.1297, 53.608887 ], [ 97.199997, 53.623604 ], [ 97.302475, 53.588043 ], [ 97.433868, 53.499435 ], [ 97.448868, 53.457497 ], [ 97.587494, 53.438881 ], [ 97.631653, 53.367493 ], [ 97.723312, 53.384163 ], [ 97.914429, 53.351662 ], [ 98.039154, 53.248329 ], [ 98.181091, 53.247215 ], [ 98.285812, 53.227211 ], [ 98.299988, 53.100548 ], [ 98.543594, 53.111664 ], [ 98.61026, 53.103607 ], [ 98.67804, 53.154991 ], [ 98.877197, 53.119438 ], [ 98.901932, 53.155266 ], [ 99.059143, 53.105827 ], [ 98.985535, 53.034439 ], [ 99.11998, 52.984993 ], [ 99.249969, 52.953781 ], [ 99.159424, 52.871658 ], [ 99.044708, 52.888603 ], [ 98.931091, 52.924995 ], [ 98.847214, 52.837769 ], [ 98.922211, 52.801102 ], [ 98.94136, 52.711105 ], [ 98.924149, 52.644714 ], [ 98.804153, 52.611664 ], [ 98.828049, 52.534439 ], [ 98.629974, 52.414154 ], [ 98.679703, 52.369987 ], [ 98.646103, 52.309433 ], [ 98.669434, 52.257217 ], [ 98.733597, 52.294441 ], [ 98.816376, 52.260277 ], [ 98.808029, 52.196655 ], [ 98.933594, 52.19249 ], [ 98.948204, 52.149723 ], [ 98.871445, 52.129223 ], [ 98.852608, 52.041027 ], [ 98.728722, 51.848362 ], [ 98.696304, 51.820362 ], [ 98.494972, 51.765583 ], [ 98.367554, 51.74511 ], [ 98.315224, 51.717834 ], [ 98.299164, 51.657166 ], [ 98.240524, 51.566612 ], [ 98.262947, 51.520779 ], [ 98.234253, 51.462223 ], [ 98.099976, 51.458443 ], [ 98.048195, 51.437889 ], [ 97.953499, 51.333221 ], [ 97.941307, 51.207943 ], [ 97.907776, 51.172112 ], [ 97.867668, 51.045471 ], [ 97.867279, 50.949806 ], [ 98.012863, 50.874138 ], [ 97.955025, 50.78186 ], [ 98.048859, 50.652805 ], [ 98.132637, 50.59639 ], [ 98.264778, 50.574585 ], [ 98.324471, 50.538971 ], [ 98.256668, 50.411057 ], [ 98.278053, 50.311974 ], [ 98.248611, 50.249805 ], [ 98.18367, 50.214359 ], [ 98.116165, 50.103943 ], [ 98.057777, 50.053528 ], [ 97.972778, 50.030167 ], [ 97.862724, 49.947887 ], [ 97.765526, 49.984249 ], [ 97.674416, 49.949249 ], [ 97.611359, 49.895668 ], [ 97.42997, 49.788113 ], [ 97.316193, 49.757389 ], [ 97.193726, 49.774696 ], [ 97.091583, 49.605598 ], [ 96.964058, 49.550892 ], [ 96.953506, 49.519169 ], [ 97.001427, 49.40308 ], [ 97.070007, 49.370998 ], [ 97.370743, 49.268909 ], [ 97.611267, 49.20113 ], [ 97.712357, 49.135899 ], [ 97.834686, 49.030849 ], [ 97.917824, 49.019859 ], [ 98.164574, 49.07074 ], [ 98.282494, 49.080189 ], [ 98.368973, 49.067009 ], [ 98.597107, 49.000542 ], [ 98.733833, 49.033218 ], [ 98.912483, 49.133862 ], [ 99.053253, 49.13755 ], [ 99.124809, 49.090061 ], [ 99.159119, 49.038479 ], [ 99.221237, 48.88155 ], [ 99.182159, 48.735661 ], [ 99.098198, 48.63044 ], [ 99.045059, 48.477589 ], [ 99.050713, 48.40398 ], [ 99.105637, 48.331059 ], [ 98.863007, 48.272221 ], [ 98.750328, 48.26157 ], [ 98.552727, 48.216942 ], [ 98.386147, 48.126598 ], [ 98.085258, 48.035511 ], [ 98.048233, 47.94886 ], [ 98.075478, 47.884911 ], [ 98.167397, 47.74921 ], [ 98.341133, 47.657688 ], [ 98.313469, 47.545109 ], [ 98.234879, 47.4067 ], [ 98.102097, 47.248249 ], [ 97.974693, 47.165878 ], [ 97.861366, 47.071991 ], [ 97.793373, 46.97908 ], [ 97.630249, 46.717361 ], [ 97.555618, 46.56517 ], [ 97.549911, 46.503239 ], [ 97.614357, 46.3685 ], [ 97.801643, 46.15852 ], [ 97.889091, 46.082741 ], [ 97.974419, 46.041561 ], [ 98.181183, 45.97168 ], [ 98.26902, 45.907959 ], [ 98.324631, 45.842079 ], [ 98.428284, 45.560589 ], [ 98.445534, 45.402351 ], [ 98.43602, 45.226101 ], [ 98.340439, 45.001389 ], [ 98.182327, 44.603111 ], [ 98.078079, 44.41851 ], [ 97.981628, 44.28738 ], [ 97.912514, 44.125542 ], [ 97.854469, 44.052078 ], [ 97.779404, 43.897911 ], [ 97.703934, 43.770149 ], [ 97.685028, 43.642521 ], [ 97.724739, 43.517288 ], [ 97.745903, 43.280918 ], [ 97.721817, 43.13073 ], [ 97.758797, 42.960819 ], [ 97.765007, 42.873959 ], [ 97.827293, 42.701839 ], [ 97.519081, 42.728416 ], [ 97.151443, 42.773888 ], [ 97.128387, 42.770779 ], [ 96.932831, 42.712166 ], [ 96.691803, 42.742249 ], [ 96.433167, 42.716 ], [ 96.361504, 42.721249 ], [ 96.324448, 42.882446 ], [ 96.154419, 43.010502 ], [ 96.073944, 43.125332 ], [ 95.916473, 43.233387 ], [ 95.888527, 43.287582 ], [ 95.881058, 43.402084 ], [ 95.676498, 43.706417 ], [ 95.662247, 43.784054 ], [ 95.550781, 43.988667 ], [ 95.374809, 44.021111 ], [ 95.343719, 44.061501 ], [ 95.370636, 44.209694 ], [ 95.423615, 44.289307 ], [ 95.189476, 44.265194 ], [ 94.990501, 44.254555 ], [ 94.930946, 44.288887 ], [ 94.695419, 44.347694 ], [ 94.575974, 44.448334 ], [ 94.446136, 44.503082 ], [ 94.334, 44.523056 ], [ 94.305664, 44.589832 ], [ 94.197388, 44.662472 ], [ 93.760696, 44.846863 ], [ 93.725502, 44.886585 ], [ 93.508278, 44.965332 ], [ 93.35775, 44.989944 ], [ 93.139252, 45.0 ], [ 93.069832, 45.018417 ], [ 92.897362, 45.010502 ], [ 92.60997, 45.015415 ], [ 92.51458, 45.009998 ], [ 92.413025, 45.03936 ], [ 92.262886, 45.049252 ], [ 92.172195, 45.030472 ], [ 92.016388, 45.069168 ], [ 91.766891, 45.068668 ], [ 91.652, 45.056667 ], [ 91.544586, 45.073502 ], [ 91.482086, 45.13575 ], [ 91.383698, 45.104946 ], [ 91.232635, 45.140499 ], [ 91.158081, 45.194138 ], [ 91.022224, 45.205166 ], [ 90.938164, 45.182446 ], [ 90.872475, 45.198139 ], [ 90.875748, 45.284195 ], [ 90.813225, 45.286362 ], [ 90.807747, 45.350887 ], [ 90.767807, 45.421471 ], [ 90.663559, 45.516804 ], [ 90.725639, 45.736832 ], [ 90.803337, 45.811611 ], [ 90.894165, 45.924999 ], [ 91.011497, 46.000526 ], [ 91.021416, 46.113083 ], [ 90.934776, 46.205639 ], [ 90.913086, 46.309639 ], [ 90.955887, 46.336445 ], [ 91.077637, 46.563946 ], [ 91.02758, 46.592529 ], [ 91.05172, 46.726002 ], [ 90.953529, 46.826973 ], [ 90.96611, 46.861946 ], [ 90.881142, 46.976334 ], [ 90.734337, 47.001499 ], [ 90.51786, 47.244167 ], [ 90.475777, 47.324139 ], [ 90.491302, 47.38039 ], [ 90.456863, 47.48711 ], [ 90.326775, 47.62225 ], [ 90.323471, 47.667 ], [ 90.143501, 47.72261 ], [ 90.079498, 47.766193 ], [ 90.066917, 47.863556 ], [ 89.963776, 47.884361 ], [ 89.930252, 47.816502 ], [ 89.796417, 47.818165 ], [ 89.725197, 47.891804 ], [ 89.617279, 47.945835 ], [ 89.565887, 48.048695 ], [ 89.31842, 48.028389 ], [ 89.193031, 47.950165 ], [ 89.041, 47.947304 ], [ 89.028503, 48.03978 ], [ 88.899109, 48.119804 ], [ 88.831253, 48.115528 ], [ 88.674194, 48.174526 ], [ 88.575279, 48.275806 ], [ 88.601555, 48.343723 ], [ 88.493774, 48.416 ], [ 88.417419, 48.390556 ], [ 88.349586, 48.470638 ], [ 88.0, 48.570694 ], [ 88.014252, 48.655029 ], [ 88.073334, 48.691666 ], [ 88.0, 48.762001 ], [ 87.924667, 48.76228 ], [ 87.750031, 48.89053 ], [ 87.775139, 48.937332 ], [ 87.874557, 48.954582 ], [ 87.903389, 49.0075 ], [ 87.833191, 49.059944 ], [ 87.866165, 49.118305 ], [ 87.832306, 49.174999 ], [ 87.899918, 49.166943 ], [ 87.994331, 49.186359 ], [ 88.055275, 49.266361 ], [ 88.121193, 49.244583 ], [ 88.196777, 49.287334 ], [ 88.102974, 49.365528 ], [ 88.223221, 49.489861 ], [ 88.339836, 49.508057 ], [ 88.445274, 49.48011 ], [ 88.555359, 49.484444 ], [ 88.649971, 49.520084 ], [ 88.679001, 49.474998 ], [ 88.81514, 49.466194 ], [ 88.891113, 49.555805 ], [ 88.96386, 49.484612 ], [ 89.099503, 49.499779 ], [ 89.226639, 49.559193 ], [ 89.189941, 49.598526 ], [ 89.249809, 49.654026 ], [ 89.377335, 49.594666 ], [ 89.444725, 49.658833 ], [ 89.681831, 49.709721 ], [ 89.738525, 49.794498 ], [ 89.636719, 49.831749 ], [ 89.63858, 49.904724 ], [ 89.583603, 49.939156 ], [ 89.605545, 50.008049 ], [ 89.590546, 50.086105 ], [ 89.51915, 50.122765 ], [ 89.506943, 50.20694 ], [ 89.399719, 50.184715 ], [ 89.336105, 50.206657 ], [ 89.352768, 50.270271 ], [ 89.421921, 50.3386 ], [ 89.496368, 50.349998 ], [ 89.501938, 50.465546 ], [ 89.613312, 50.423607 ], [ 89.643051, 50.383606 ], [ 89.844147, 50.429436 ], [ 89.86998, 50.485268 ], [ 89.824707, 50.547493 ], [ 89.66832, 50.578049 ], [ 89.647766, 50.620544 ], [ 89.337494, 50.874161 ], [ 89.099991, 51.023605 ], [ 89.044144, 51.078331 ], [ 89.025543, 51.192215 ], [ 88.948029, 51.223602 ], [ 88.95665, 51.438599 ], [ 88.861649, 51.47332 ], [ 88.836929, 51.508888 ], [ 88.735855, 51.559479 ], [ 88.658875, 51.535553 ], [ 88.66748, 51.423325 ], [ 88.596375, 51.388603 ], [ 88.514999, 51.31694 ], [ 88.364426, 51.318886 ], [ 88.288315, 51.357498 ], [ 88.184143, 51.363052 ], [ 88.120255, 51.388885 ], [ 88.101929, 51.441933 ], [ 88.013321, 51.4786 ], [ 87.906097, 51.486938 ], [ 87.861649, 51.549438 ], [ 87.96138, 51.594154 ], [ 87.978592, 51.646103 ], [ 88.086929, 51.713326 ], [ 88.093048, 51.779716 ], [ 87.982208, 51.754166 ], [ 87.856644, 51.833603 ], [ 87.971924, 51.921661 ], [ 87.982483, 51.9711 ], [ 88.068604, 52.019157 ], [ 88.072495, 52.071106 ], [ 88.128586, 52.101662 ], [ 88.210266, 52.053604 ], [ 88.247757, 52.120544 ], [ 88.345535, 52.126938 ], [ 88.370255, 52.179436 ], [ 88.363037, 52.313049 ], [ 88.405548, 52.383881 ], [ 88.41304, 52.456383 ], [ 88.323608, 52.448875 ], [ 88.208603, 52.411934 ], [ 88.079163, 52.486938 ], [ 87.931091, 52.549164 ], [ 87.828598, 52.506943 ], [ 87.721375, 52.484718 ], [ 87.672211, 52.453606 ], [ 87.549713, 52.49305 ], [ 87.370255, 52.507774 ], [ 87.342209, 52.598602 ], [ 87.20504, 52.58168 ], [ 87.079163, 52.707771 ], [ 87.045822, 52.767769 ], [ 86.988586, 52.783882 ], [ 86.938309, 52.858887 ], [ 87.024429, 52.915268 ], [ 87.022766, 53.002495 ], [ 87.081665, 53.081383 ], [ 86.943863, 53.078331 ], [ 86.876923, 53.12471 ], [ 86.700821, 53.195541 ], [ 86.754166, 53.266006 ], [ 86.825272, 53.27166 ], [ 86.881363, 53.306656 ], [ 86.993591, 53.416939 ], [ 86.998032, 53.510826 ], [ 86.861099, 53.476379 ], [ 86.713608, 53.485825 ], [ 86.629974, 53.508049 ], [ 86.546097, 53.556656 ], [ 86.513321, 53.605827 ], [ 86.460541, 53.604996 ], [ 86.395264, 53.695267 ], [ 86.414993, 53.755554 ], [ 86.286926, 53.884995 ], [ 86.219986, 53.891106 ], [ 86.198318, 53.943878 ], [ 86.120819, 53.999161 ], [ 85.930267, 54.039719 ], [ 85.763046, 54.161659 ], [ 85.718872, 54.148048 ], [ 85.604706, 54.24305 ], [ 85.447205, 54.195824 ], [ 85.184143, 54.473877 ], [ 85.079468, 54.469437 ], [ 84.948593, 54.604164 ], [ 85.049423, 54.65416 ], [ 84.999146, 54.715271 ], [ 85.027206, 54.801102 ], [ 85.079437, 54.873322 ], [ 85.023605, 54.886108 ], [ 84.980545, 54.94471 ], [ 84.907486, 54.960823 ], [ 84.918594, 55.164993 ], [ 84.820831, 55.226097 ], [ 84.864426, 55.289719 ], [ 84.875534, 55.388603 ], [ 84.649429, 55.396942 ], [ 84.763885, 55.453606 ], [ 84.775543, 55.525551 ], [ 84.702774, 55.672218 ], [ 84.649719, 55.669991 ], [ 84.558594, 55.705269 ], [ 84.635818, 55.760277 ], [ 84.608032, 55.842216 ], [ 84.501938, 55.866661 ], [ 84.511932, 55.910545 ], [ 84.577209, 55.96138 ], [ 84.530823, 56.043884 ], [ 84.431931, 56.058327 ], [ 84.921921, 56.179718 ], [ 84.99498, 56.132767 ], [ 85.085266, 56.143051 ], [ 85.122757, 56.221931 ], [ 85.266937, 56.245827 ], [ 85.409714, 56.210274 ], [ 85.688034, 56.238884 ], [ 85.581375, 56.276382 ], [ 85.59082, 56.319717 ], [ 85.805542, 56.364441 ], [ 85.783325, 56.406937 ], [ 85.861374, 56.443604 ], [ 85.91832, 56.431107 ], [ 85.998032, 56.486107 ], [ 86.102203, 56.487213 ], [ 86.127472, 56.546661 ], [ 86.172485, 56.55027 ], [ 86.207214, 56.625549 ], [ 86.319443, 56.629433 ], [ 86.3936, 56.54583 ], [ 86.541092, 56.570274 ], [ 86.589157, 56.609161 ], [ 86.688309, 56.637497 ], [ 86.787201, 56.603325 ], [ 86.820831, 56.621658 ], [ 86.925262, 56.551384 ], [ 86.972763, 56.571663 ], [ 87.026657, 56.534439 ], [ 87.138596, 56.539162 ], [ 87.178864, 56.611664 ], [ 87.148041, 56.674164 ], [ 87.32666, 56.644997 ], [ 87.383331, 56.609993 ], [ 87.512772, 56.659157 ], [ 87.623871, 56.641663 ], [ 87.784424, 56.54361 ], [ 88.12915, 56.713608 ], [ 88.332489, 56.792496 ], [ 88.399719, 56.83416 ], [ 88.537491, 56.779991 ], [ 88.624146, 56.833153 ], [ 88.639435, 56.894997 ], [ 88.731369, 57.06916 ], [ 88.51915, 57.097771 ], [ 88.524704, 57.123878 ], [ 88.647217, 57.212494 ], [ 88.727203, 57.221931 ], [ 88.836929, 57.371101 ], [ 88.8647, 57.441933 ], [ 88.97554, 57.464996 ], [ 89.071381, 57.509163 ], [ 89.146378, 57.617767 ], [ 89.253601, 57.598877 ], [ 89.392487, 57.634438 ], [ 89.354431, 57.796387 ], [ 89.40387, 57.887772 ], [ 89.348602, 57.948044 ], [ 88.853592, 57.958046 ], [ 88.709152, 58.033607 ], [ 88.391663, 58.081383 ], [ 88.158325, 58.103882 ], [ 88.122757, 58.117767 ], [ 88.070541, 58.211662 ], [ 88.019714, 58.232765 ], [ 87.931091, 58.473877 ], [ 87.929977, 58.525551 ], [ 88.106705, 58.662392 ], [ 88.399429, 58.918327 ], [ 88.65416, 58.970268 ], [ 88.834427, 59.025826 ], [ 88.585266, 59.225548 ], [ 88.630539, 59.301384 ], [ 87.90332, 59.263885 ], [ 87.693314, 59.49527 ], [ 87.522766, 59.672768 ], [ 87.182755, 59.68499 ], [ 87.097763, 59.88166 ], [ 86.983597, 59.893051 ], [ 86.571381, 59.956657 ], [ 85.938873, 59.9561 ], [ 85.491653, 59.890831 ], [ 85.062759, 59.888046 ], [ 84.693863, 59.900269 ], [ 84.52916, 59.985268 ], [ 84.61554, 60.05471 ], [ 84.616653, 60.171379 ], [ 84.69693, 60.241379 ], [ 84.715271, 60.294159 ], [ 84.784714, 60.372215 ], [ 84.711929, 60.4561 ], [ 84.359985, 60.788887 ], [ 84.259644, 60.855415 ], [ 84.614151, 61.0 ], [ 84.698868, 61.002777 ], [ 84.998322, 61.099998 ], [ 85.363037, 61.2061 ], [ 85.710541, 61.297493 ], [ 85.633606, 61.376656 ], [ 85.780548, 61.445541 ], [ 85.96138, 61.464996 ], [ 85.969147, 61.543053 ], [ 85.851929, 61.597771 ], [ 85.722763, 61.573608 ], [ 85.467758, 61.628601 ], [ 85.385818, 61.70166 ], [ 85.284424, 61.681938 ], [ 85.157211, 61.708328 ], [ 85.098328, 61.75444 ], [ 84.940811, 61.797218 ], [ 84.816376, 61.786659 ], [ 84.687485, 61.806099 ], [ 84.633881, 61.879715 ], [ 84.567215, 61.89138 ], [ 84.516663, 61.939156 ], [ 84.554428, 61.996941 ], [ 84.43692, 62.189156 ], [ 84.726379, 62.406937 ], [ 84.813873, 62.42305 ], [ 84.913605, 62.504715 ], [ 84.948029, 62.591377 ], [ 85.098602, 62.638603 ], [ 85.184708, 62.77166 ], [ 85.34137, 62.876099 ], [ 85.451096, 62.882767 ], [ 85.522491, 62.938324 ], [ 85.498032, 62.99527 ], [ 85.58194, 63.042496 ], [ 85.469147, 63.142769 ], [ 85.536652, 63.260826 ], [ 85.672211, 63.338326 ], [ 85.631363, 63.372765 ], [ 85.398041, 63.359161 ], [ 85.356369, 63.408882 ], [ 85.374146, 63.462212 ], [ 85.296097, 63.515831 ], [ 85.20166, 63.506386 ], [ 85.069443, 63.544441 ], [ 85.103317, 63.606659 ], [ 85.154434, 63.590271 ], [ 85.267212, 63.646385 ], [ 85.339981, 63.70694 ], [ 85.333878, 63.758049 ], [ 85.372757, 63.819443 ], [ 85.516388, 63.929993 ], [ 85.654434, 63.985268 ], [ 85.958038, 64.054428 ], [ 85.93248, 64.122482 ], [ 86.01915, 64.231659 ], [ 86.031097, 64.275269 ], [ 85.954163, 64.323883 ], [ 85.931931, 64.408325 ], [ 85.839432, 64.464432 ], [ 85.845261, 64.507492 ], [ 85.905823, 64.565811 ], [ 85.903046, 64.601929 ], [ 85.808594, 64.647491 ], [ 85.858871, 64.739426 ], [ 85.820541, 64.784714 ], [ 85.708878, 64.81192 ], [ 85.546936, 64.830276 ], [ 85.44693, 64.794708 ], [ 85.20665, 64.753052 ], [ 85.115265, 64.768875 ], [ 85.094437, 64.812195 ], [ 84.938583, 64.82222 ], [ 84.952774, 64.918594 ], [ 84.819443, 64.931091 ], [ 84.44693, 64.888885 ], [ 84.3022, 64.897766 ], [ 84.324997, 64.966934 ], [ 84.381088, 65.032761 ], [ 84.305817, 65.08194 ], [ 84.374832, 65.164261 ], [ 84.437759, 65.199997 ], [ 84.524429, 65.212769 ], [ 84.585815, 65.317764 ], [ 84.501938, 65.396652 ], [ 84.554428, 65.425812 ], [ 84.49971, 65.506943 ], [ 84.431931, 65.551926 ], [ 84.257767, 65.585266 ], [ 84.299988, 65.616653 ], [ 84.32666, 65.687759 ], [ 84.209427, 65.69136 ], [ 84.073044, 65.752777 ], [ 84.032486, 65.793869 ], [ 83.949707, 65.803589 ], [ 83.743317, 65.801086 ], [ 83.591095, 65.773605 ], [ 83.506378, 65.829437 ], [ 83.528046, 65.904434 ], [ 83.338882, 66.00943 ], [ 83.290268, 66.061371 ], [ 83.379425, 66.140274 ], [ 83.470825, 66.15387 ], [ 83.522491, 66.202209 ], [ 83.426086, 66.258041 ], [ 83.344147, 66.341934 ], [ 83.26416, 66.389984 ], [ 83.124695, 66.421646 ], [ 83.0961, 66.448868 ], [ 83.076935, 66.578598 ], [ 83.103867, 66.617752 ], [ 83.183594, 66.622208 ], [ 83.305817, 66.661652 ], [ 83.2836, 66.695251 ], [ 83.188309, 66.743042 ], [ 83.162766, 66.818329 ], [ 83.065811, 66.84082 ], [ 83.041092, 66.892212 ], [ 82.891373, 66.938309 ], [ 82.370529, 67.142761 ], [ 82.12442, 67.234421 ], [ 82.141373, 67.256943 ], [ 82.259155, 67.279984 ], [ 82.357758, 67.334427 ], [ 82.233597, 67.420822 ], [ 82.3936, 67.52832 ], [ 82.337204, 67.564697 ], [ 82.261658, 67.551086 ], [ 82.114151, 67.599426 ], [ 82.046371, 67.651932 ], [ 82.101654, 67.680267 ], [ 82.089432, 67.729156 ], [ 81.903046, 67.777771 ], [ 81.848602, 67.833328 ], [ 81.723877, 67.906097 ], [ 81.778046, 67.951935 ], [ 81.877197, 67.931656 ], [ 81.988876, 67.963318 ], [ 82.05748, 67.947479 ], [ 82.296646, 67.941086 ], [ 82.37442, 67.949142 ], [ 82.393051, 68.064148 ], [ 82.356934, 68.095825 ], [ 82.392761, 68.177475 ], [ 82.512497, 68.164429 ], [ 82.573608, 68.255829 ], [ 82.70665, 68.29332 ], [ 82.684418, 68.346375 ], [ 82.711105, 68.398041 ], [ 82.686646, 68.481369 ], [ 82.618317, 68.534714 ], [ 82.589981, 68.602768 ], [ 82.693039, 68.632751 ], [ 82.901093, 68.625259 ], [ 83.032486, 68.676926 ], [ 82.801651, 68.740814 ], [ 82.782883, 68.798813 ], [ 82.729431, 68.787491 ], [ 82.5522, 68.818329 ], [ 82.537201, 68.926651 ], [ 82.497208, 68.987762 ], [ 82.351379, 69.021103 ], [ 82.322495, 69.059143 ], [ 82.451096, 69.075821 ], [ 82.469147, 69.155823 ], [ 82.357208, 69.170822 ], [ 82.271378, 69.156937 ], [ 82.010269, 69.180542 ], [ 81.843872, 69.184982 ], [ 81.767212, 69.231934 ], [ 81.818054, 69.289429 ], [ 81.901657, 69.313873 ], [ 81.932755, 69.351654 ], [ 81.781097, 69.431366 ], [ 81.672485, 69.448318 ], [ 81.611649, 69.286102 ], [ 81.444138, 69.25444 ], [ 81.351089, 69.288315 ], [ 81.15799, 69.236633 ], [ 80.955963, 69.206665 ], [ 80.793106, 69.263947 ], [ 80.766693, 69.305038 ], [ 80.462692, 69.316254 ], [ 80.227646, 69.35881 ], [ 80.032944, 69.355194 ], [ 79.972763, 69.336105 ], [ 79.721924, 69.428589 ], [ 79.63916, 69.485809 ], [ 79.587769, 69.592209 ], [ 79.465271, 69.658325 ], [ 79.099991, 69.680817 ], [ 79.054977, 69.790543 ], [ 78.985809, 69.8022 ], [ 78.954987, 69.877472 ], [ 79.049988, 69.931931 ], [ 79.1436, 69.960541 ], [ 79.125809, 70.002213 ], [ 79.194427, 70.051651 ], [ 79.330551, 70.082489 ], [ 79.328049, 70.14888 ], [ 79.486374, 70.108322 ], [ 79.614426, 70.192749 ], [ 79.707764, 70.276093 ], [ 79.881363, 70.277771 ], [ 80.186005, 70.391815 ], [ 80.19072, 70.436569 ], [ 80.289368, 70.431091 ], [ 80.349121, 70.460663 ], [ 80.571762, 70.461884 ], [ 80.625671, 70.421677 ], [ 80.670135, 70.446228 ], [ 80.657608, 70.568756 ], [ 80.754349, 70.634689 ], [ 80.750183, 70.670303 ], [ 80.598404, 70.712296 ], [ 80.604523, 70.753525 ], [ 80.69017, 70.801865 ], [ 80.570068, 70.849747 ], [ 80.550644, 70.911835 ], [ 80.55368, 71.052567 ], [ 80.405258, 71.092651 ], [ 80.338043, 71.092392 ], [ 79.966385, 71.131088 ], [ 79.779984, 71.192749 ], [ 79.587204, 71.270828 ], [ 79.390823, 71.311646 ], [ 79.243042, 71.316086 ], [ 79.170532, 71.351089 ], [ 79.140274, 71.421646 ], [ 79.178589, 71.445526 ], [ 79.334427, 71.48082 ], [ 79.390823, 71.543869 ], [ 79.380264, 71.616379 ], [ 79.514435, 71.599152 ], [ 79.584717, 71.608597 ], [ 79.869705, 71.600266 ], [ 79.988037, 71.620255 ], [ 80.025955, 71.661789 ], [ 80.135406, 71.67453 ], [ 80.089615, 71.746231 ], [ 80.127396, 71.774902 ], [ 80.07312, 71.846893 ], [ 80.173294, 71.869308 ], [ 80.274643, 71.851486 ], [ 80.305099, 71.905594 ], [ 80.239792, 71.938004 ], [ 80.089325, 71.949936 ], [ 80.042694, 71.978546 ], [ 79.910019, 71.984482 ], [ 79.873871, 72.018051 ], [ 79.67804, 72.059418 ], [ 79.61554, 72.042206 ], [ 79.413605, 72.039429 ], [ 79.225815, 72.07666 ], [ 79.087769, 72.074707 ], [ 79.082764, 72.105545 ], [ 78.985809, 72.122757 ], [ 78.774994, 72.185806 ], [ 78.676926, 72.179428 ], [ 78.659149, 72.261108 ], [ 78.602203, 72.301926 ], [ 78.524994, 72.306931 ], [ 78.448868, 72.343048 ], [ 78.500305, 72.378082 ], [ 78.445007, 72.378515029194702 ], [ 78.435944, 72.378586 ], [ 78.42408, 72.385391 ], [ 78.445007, 79.0 ], [ 75.605868, 79.0 ], [ 75.605868, 81.965368 ], [ 82.5, 81.965368 ], [ 97.5, 81.965368 ], [ 97.5, 89.0 ] ] ] ] } }, +{ "type": "Feature", "properties": { "name": "+8" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 112.5, 89.0 ], [ 127.5, 89.0 ], [ 127.5, 81.78707 ], [ 119.744986, 78.483647 ], [ 114.797921662233421, 78.494813252511122 ], [ 114.797902846444345, 78.494813294981128 ], [ 112.5, 78.5 ], [ 112.5, 89.0 ] ] ], [ [ [ 128.985084, -31.819749 ], [ 128.964573, -31.826888 ], [ 128.957365, -31.828823 ], [ 128.776485, -31.914202 ], [ 128.770114, -31.917435 ], [ 128.73564, -31.938263 ], [ 128.723832, -31.947495 ], [ 128.539896, -32.02839 ], [ 128.341537, -32.097806 ], [ 128.320676, -32.10667 ], [ 128.210239, -32.142097 ], [ 128.19147, -32.146811 ], [ 128.144405, -32.165484 ], [ 128.078565, -32.186509 ], [ 128.067038, -32.190398 ], [ 128.01597, -32.202558 ], [ 128.001251, -32.206939 ], [ 127.985977, -32.210567 ], [ 127.980401, -32.21151 ], [ 127.861799, -32.234595 ], [ 127.840512, -32.238631 ], [ 127.805505, -32.243797 ], [ 127.798887, -32.245889 ], [ 127.745907, -32.257441 ], [ 127.739836, -32.258484 ], [ 127.724169, -32.264271 ], [ 127.710115, -32.268374 ], [ 127.691275, -32.272121 ], [ 127.679795, -32.275122 ], [ 127.562126, -32.330845 ], [ 127.5, -32.341179 ], [ 127.5, -90.0 ], [ 112.76867, -90.0 ], [ 112.5, -90.0 ], [ 112.5, -89.994476036675096 ], [ 112.5, -9.0 ], [ 114.692612, -9.0 ], [ 114.832513, -8.727638 ], [ 114.529162, -8.507706 ], [ 114.38575, -8.233861 ], [ 114.427479546731533, -8.072946524326943 ], [ 114.429108, -8.066667 ], [ 114.488978, -8.019441 ], [ 115.801822, -7.498514 ], [ 116.52131, -7.058827 ], [ 115.971701, -6.379311 ], [ 113.973125, -6.059539 ], [ 114.334397, -3.573208 ], [ 114.485901, -3.134121 ], [ 114.578201, -2.959252 ], [ 114.736603, -2.824281 ], [ 114.968201, -2.541959 ], [ 115.045197, -2.405314 ], [ 115.074501, -2.322189 ], [ 115.156403, -2.299944 ], [ 115.177299, -2.244553 ], [ 115.252296, -2.147742 ], [ 115.375, -1.907042 ], [ 115.382797, -1.836764 ], [ 115.3619, -1.63432 ], [ 115.398102, -1.539372 ], [ 115.446999, -1.488542 ], [ 115.505997, -1.475131 ], [ 115.623299, -1.493488 ], [ 115.756599, -1.26098 ], [ 115.756203, -1.199835 ], [ 115.711197, -1.084614 ], [ 115.566597, -0.934123 ], [ 115.4972, -0.847639 ], [ 115.403801, -0.837749 ], [ 115.3834, -0.689804 ], [ 115.3237, -0.490553 ], [ 115.262497, -0.390946 ], [ 115.235901, -0.297366 ], [ 115.246399, -0.227142 ], [ 115.315598, -0.073063 ], [ 115.2686, -0.00166 ], [ 115.140999, -0.04423 ], [ 115.048203, -0.171242 ], [ 114.988899, -0.200595 ], [ 114.921097, -0.181925 ], [ 114.877701, -0.133192 ], [ 114.834702, 0.01787 ], [ 114.827797, 0.092438 ], [ 114.8871, 0.29191 ], [ 115.054001, 0.370886 ], [ 115.0821, 0.460685 ], [ 114.949898, 0.717246 ], [ 114.9011, 0.760777 ], [ 114.741302, 0.706907 ], [ 114.602097, 0.610082 ], [ 114.368599, 0.540448 ], [ 114.147598, 0.592827 ], [ 114.057404, 0.63322 ], [ 113.8302, 0.548834 ], [ 113.717201, 0.580395 ], [ 113.885803, 0.769647 ], [ 113.879097, 0.849528 ], [ 113.792801, 0.885854 ], [ 113.793297, 1.0028 ], [ 113.868599, 1.034481 ], [ 113.958, 1.11106 ], [ 114.0952, 1.253112 ], [ 114.110802, 1.3126 ], [ 114.085945, 1.46283 ], [ 113.943726, 1.434278 ], [ 113.815666, 1.366 ], [ 113.799278, 1.294139 ], [ 113.701363, 1.258806 ], [ 113.658165, 1.210528 ], [ 113.591057, 1.258 ], [ 113.57692, 1.301528 ], [ 113.493164, 1.315306 ], [ 113.439781, 1.279944 ], [ 113.316498, 1.37575 ], [ 113.227974, 1.393889 ], [ 113.144806, 1.386222 ], [ 113.12014, 1.430944 ], [ 113.034225, 1.469056 ], [ 113.057915, 1.553806 ], [ 112.898392, 1.5865 ], [ 112.812752, 1.537417 ], [ 112.725807, 1.563083 ], [ 112.492416, 1.577361 ], [ 112.424141, 1.522222 ], [ 112.315781, 1.502833 ], [ 112.19767, 1.432917 ], [ 112.221275, 1.395111 ], [ 112.174835, 1.305389 ], [ 112.144997, 1.139944 ], [ 111.930527, 1.114472 ], [ 111.828308, 0.987667 ], [ 111.665695, 1.039889 ], [ 111.517998, 0.964222 ], [ 111.497864, 1.021722 ], [ 111.383698, 1.013056 ], [ 111.252808, 1.064889 ], [ 111.075607, 1.048972 ], [ 110.986526, 1.025472 ], [ 110.907555, 1.029778 ], [ 110.882774, 0.9765 ], [ 110.810608, 0.948139 ], [ 110.809135, 0.907444 ], [ 110.717857, 0.906694 ], [ 110.571915, 0.855222 ], [ 110.477913, 0.880639 ], [ 110.404747, 0.945806 ], [ 110.39389, 0.992917 ], [ 110.279053, 0.991222 ], [ 110.23925, 1.110583 ], [ 110.15078, 1.200111 ], [ 110.091194, 1.196944 ], [ 110.052696, 1.266194 ], [ 109.978722, 1.297278 ], [ 109.95578, 1.399861 ], [ 109.834053, 1.421556 ], [ 109.793221, 1.494028 ], [ 109.659225, 1.619639 ], [ 109.67511, 1.785472 ], [ 109.578003, 1.810556 ], [ 109.536026, 1.921444 ], [ 109.613525, 1.984444 ], [ 109.639809, 2.083333 ], [ 109.635696, 2.083083 ], [ 109.635696, 5.21 ], [ 105.0, 5.21 ], [ 105.0, 1.43496 ], [ 103.737379, 1.145873 ], [ 103.414282, 1.295827 ], [ 100.688339, 2.91325 ], [ 98.659784, 4.871855 ], [ 98.030232, 6.051015 ], [ 99.822759, 6.520294 ], [ 100.12117, 6.422583 ], [ 100.159164, 6.495306 ], [ 100.174309, 6.659056 ], [ 100.171387, 6.68875 ], [ 100.293861, 6.699695 ], [ 100.306946, 6.601917 ], [ 100.36422, 6.537472 ], [ 100.491028, 6.5165 ], [ 100.661331, 6.441945 ], [ 100.751167, 6.460778 ], [ 100.817108, 6.436167 ], [ 100.847504, 6.311528 ], [ 100.850754, 6.231194 ], [ 101.094307, 6.258889 ], [ 101.12397, 6.187556 ], [ 101.061584, 6.147972 ], [ 101.125893, 6.108333 ], [ 101.085197, 5.913195 ], [ 101.031754, 5.918167 ], [ 100.984192, 5.799278 ], [ 101.084084, 5.709111 ], [ 101.127586, 5.626861 ], [ 101.213669, 5.6605 ], [ 101.262192, 5.721917 ], [ 101.270164, 5.810083 ], [ 101.348335, 5.811028 ], [ 101.396889, 5.876389 ], [ 101.482971, 5.870361 ], [ 101.583969, 5.933694 ], [ 101.656166, 5.875167 ], [ 101.671112, 5.791472 ], [ 101.753197, 5.799778 ], [ 101.821808, 5.774556 ], [ 101.938332, 5.871639 ], [ 101.917473, 5.913583 ], [ 101.940193, 5.983111 ], [ 102.058472, 6.09525 ], [ 102.08786, 6.143 ], [ 102.09214, 6.243945 ], [ 102.09175, 6.25 ], [ 112.5, 6.25 ], [ 112.5, 14.447275 ], [ 108.050468, 18.279274 ], [ 108.050468, 21.555666 ], [ 108.002831, 21.549917 ], [ 107.976723, 21.539806 ], [ 107.903419, 21.592556 ], [ 107.868279, 21.654751 ], [ 107.822746, 21.661167 ], [ 107.706169, 21.618361 ], [ 107.638916, 21.60836 ], [ 107.499443, 21.617722 ], [ 107.365448, 21.669472 ], [ 107.306778, 21.742027 ], [ 107.237167, 21.706278 ], [ 107.023888, 21.860611 ], [ 107.058052, 21.923166 ], [ 106.923615, 21.97875 ], [ 106.790863, 22.008278 ], [ 106.690392, 21.996778 ], [ 106.715446, 22.105417 ], [ 106.683975, 22.225805 ], [ 106.695084, 22.276445 ], [ 106.644859, 22.340334 ], [ 106.574059, 22.34289 ], [ 106.564972, 22.456861 ], [ 106.591721, 22.544027 ], [ 106.731697, 22.586027 ], [ 106.730942, 22.640638 ], [ 106.818726, 22.818083 ], [ 106.634109, 22.877417 ], [ 106.61142, 22.923471 ], [ 106.513641, 22.940611 ], [ 106.501335, 22.904667 ], [ 106.268196, 22.876472 ], [ 106.264748, 22.920029 ], [ 106.207664, 22.985971 ], [ 106.009697, 22.994223 ], [ 105.962997, 22.949194 ], [ 105.880608, 22.921028 ], [ 105.831558, 22.986528 ], [ 105.734169, 23.06311 ], [ 105.576469, 23.081667 ], [ 105.556358, 23.187056 ], [ 105.501274, 23.211277 ], [ 105.43808, 23.310112 ], [ 105.376999, 23.318611 ], [ 105.337891, 23.386612 ], [ 105.236832, 23.278917 ], [ 105.170891, 23.286556 ], [ 105.081108, 23.265223 ], [ 104.956612, 23.176611 ], [ 104.892586, 23.178862 ], [ 104.873947, 23.123167 ], [ 104.818359, 23.125389 ], [ 104.835556, 23.008055 ], [ 104.862137, 22.947611 ], [ 104.77697, 22.901222 ], [ 104.733498, 22.824278 ], [ 104.597031, 22.851749 ], [ 104.362778, 22.692444 ], [ 104.272499, 22.739805 ], [ 104.276001, 22.842916 ], [ 104.124496, 22.81286 ], [ 104.045555, 22.726778 ], [ 104.014053, 22.574778 ], [ 103.96933, 22.506056 ], [ 103.826614, 22.616611 ], [ 103.76889, 22.688917 ], [ 103.647308, 22.797722 ], [ 103.568306, 22.70125 ], [ 103.580055, 22.663305 ], [ 103.529526, 22.593695 ], [ 103.431808, 22.713778 ], [ 103.445503, 22.75275 ], [ 103.341667, 22.821251 ], [ 103.285057, 22.685583 ], [ 103.198448, 22.651138 ], [ 103.148499, 22.54911 ], [ 103.030746, 22.444611 ], [ 102.932053, 22.488251 ], [ 102.867416, 22.608055 ], [ 102.808693, 22.624695 ], [ 102.695915, 22.706778 ], [ 102.616302, 22.731138 ], [ 102.585587, 22.708027 ], [ 102.515083, 22.780416 ], [ 102.469528, 22.769417 ], [ 102.408607, 22.64539 ], [ 102.252975, 22.458973 ], [ 102.240059, 22.426111 ], [ 102.024391, 22.456888 ], [ 101.919357, 22.434278 ], [ 101.863609, 22.390167 ], [ 101.806892, 22.485916 ], [ 101.695305, 22.474277 ], [ 101.679779, 22.373028 ], [ 101.618721, 22.274361 ], [ 101.547058, 22.250139 ], [ 101.603996, 22.1595 ], [ 101.582001, 22.102306 ], [ 101.625336, 22.022444 ], [ 101.621666, 21.976166 ], [ 101.781471, 21.8325 ], [ 101.750748, 21.738556 ], [ 101.766502, 21.669472 ], [ 101.826721, 21.602972 ], [ 101.761528, 21.567389 ], [ 101.778221, 21.513306 ], [ 101.740303, 21.314833 ], [ 101.847115, 21.252111 ], [ 101.787865, 21.140028 ], [ 101.705643, 21.149305 ], [ 101.674583, 21.198778 ], [ 101.579918, 21.244944 ], [ 101.386223, 21.22164 ], [ 101.290413, 21.178055 ], [ 101.238052, 21.250723 ], [ 101.259865, 21.364166 ], [ 101.197052, 21.41675 ], [ 101.220642, 21.491444 ], [ 101.213608, 21.561251 ], [ 101.154747, 21.563862 ], [ 101.168114, 21.644194 ], [ 101.121246, 21.654556 ], [ 101.126526, 21.775444 ], [ 101.018028, 21.712139 ], [ 100.89183, 21.684889 ], [ 100.82811, 21.643389 ], [ 100.800781, 21.585083 ], [ 100.724419, 21.511499 ], [ 100.577774, 21.450251 ], [ 100.471443, 21.473139 ], [ 100.437447, 21.529083 ], [ 100.36158, 21.536583 ], [ 100.307976, 21.480473 ], [ 100.202583, 21.439362 ], [ 100.135582, 21.502056 ], [ 100.114807, 21.586611 ], [ 100.172531, 21.659916 ], [ 100.14003, 21.694 ], [ 100.026749, 21.692944 ], [ 99.986137, 21.718666 ], [ 99.949669, 21.866028 ], [ 99.997864, 21.97575 ], [ 99.970612, 22.052029 ], [ 99.891418, 22.067112 ], [ 99.856613, 22.02375 ], [ 99.757919, 22.077944 ], [ 99.696556, 22.066555 ], [ 99.652611, 22.10486 ], [ 99.519554, 22.104944 ], [ 99.476418, 22.137472 ], [ 99.402115, 22.103138 ], [ 99.218941, 22.11875 ], [ 99.168976, 22.155251 ], [ 99.236832, 22.253416 ], [ 99.289642, 22.403278 ], [ 99.389526, 22.499416 ], [ 99.387611, 22.569 ], [ 99.32547, 22.751083 ], [ 99.509087, 22.908278 ], [ 99.564224, 22.925806 ], [ 99.518669, 23.004 ], [ 99.511276, 23.08375 ], [ 99.385887, 23.109722 ], [ 99.360863, 23.133806 ], [ 99.212196, 23.093111 ], [ 99.109802, 23.093695 ], [ 99.040558, 23.165751 ], [ 98.968002, 23.171749 ], [ 98.897415, 23.219694 ], [ 98.941582, 23.312166 ], [ 98.923058, 23.423111 ], [ 98.878998, 23.487083 ], [ 98.829056, 23.473639 ], [ 98.811058, 23.551167 ], [ 98.882919, 23.590889 ], [ 98.824028, 23.705723 ], [ 98.813499, 23.770971 ], [ 98.704498, 23.789778 ], [ 98.692802, 23.920334 ], [ 98.76886, 24.023556 ], [ 98.839722, 24.050556 ], [ 98.846474, 24.134277 ], [ 98.71167, 24.124306 ], [ 98.608223, 24.094749 ], [ 98.535919, 24.129583 ], [ 98.427109, 24.126167 ], [ 98.345886, 24.102194 ], [ 98.230919, 24.116888 ], [ 98.029747, 24.071222 ], [ 97.885246, 24.010221 ], [ 97.852364, 23.952888 ], [ 97.795135, 23.947611 ], [ 97.673141, 23.862055 ], [ 97.534081, 23.942612 ], [ 97.632637, 24.0 ], [ 97.661888, 24.060362 ], [ 97.734276, 24.117027 ], [ 97.728249, 24.193527 ], [ 97.761475, 24.278805 ], [ 97.669357, 24.307167 ], [ 97.713806, 24.371361 ], [ 97.673553, 24.453194 ], [ 97.536583, 24.435862 ], [ 97.557587, 24.496 ], [ 97.57589, 24.763334 ], [ 97.64222, 24.776777 ], [ 97.686775, 24.825251 ], [ 97.767723, 24.823473 ], [ 97.717445, 24.980833 ], [ 97.729942, 25.06525 ], [ 97.782143, 25.123333 ], [ 97.845024, 25.267889 ], [ 97.949059, 25.223722 ], [ 98.014641, 25.303194 ], [ 98.062553, 25.309389 ], [ 98.113525, 25.394417 ], [ 98.180496, 25.553278 ], [ 98.182663, 25.625334 ], [ 98.320221, 25.546278 ], [ 98.369164, 25.573 ], [ 98.40583, 25.673973 ], [ 98.439392, 25.693056 ], [ 98.475777, 25.797695 ], [ 98.552055, 25.848417 ], [ 98.637581, 25.804222 ], [ 98.694252, 25.843721 ], [ 98.652473, 25.971222 ], [ 98.610664, 25.989861 ], [ 98.572861, 26.119083 ], [ 98.640251, 26.147972 ], [ 98.690666, 26.119194 ], [ 98.73275, 26.18786 ], [ 98.672806, 26.249945 ], [ 98.676636, 26.31575 ], [ 98.737198, 26.384556 ], [ 98.756332, 26.564083 ], [ 98.781059, 26.619888 ], [ 98.76178, 26.731417 ], [ 98.767418, 26.810055 ], [ 98.733643, 27.005167 ], [ 98.760887, 27.064556 ], [ 98.700447, 27.118221 ], [ 98.686859, 27.213722 ], [ 98.73217, 27.317194 ], [ 98.696442, 27.391056 ], [ 98.692917, 27.589666 ], [ 98.580917, 27.609806 ], [ 98.467583, 27.690166 ], [ 98.428276, 27.689028 ], [ 98.424721, 27.588722 ], [ 98.364418, 27.525972 ], [ 98.318832, 27.542778 ], [ 98.295364, 27.639639 ], [ 98.221359, 27.732222 ], [ 98.180252, 27.847416 ], [ 98.207359, 27.905111 ], [ 98.138443, 27.968805 ], [ 98.150887, 28.113916 ], [ 98.021362, 28.264694 ], [ 97.905083, 28.37211 ], [ 97.790581, 28.344055 ], [ 97.741608, 28.415167 ], [ 97.717972, 28.50386 ], [ 97.620918, 28.480139 ], [ 97.548531, 28.495832 ], [ 97.477081, 28.369528 ], [ 97.460861, 28.26811 ], [ 97.347221, 28.210583 ], [ 97.155472, 28.337694 ], [ 97.090446, 28.368416 ], [ 97.023804, 28.321028 ], [ 96.765388, 28.369028 ], [ 96.755142, 28.404778 ], [ 96.677971, 28.448778 ], [ 96.580917, 28.456472 ], [ 96.462585, 28.414528 ], [ 96.426781, 28.34675 ], [ 96.371834, 28.38825 ], [ 96.278198, 28.415001 ], [ 96.366302, 28.475584 ], [ 96.333527, 28.529917 ], [ 96.415695, 28.566195 ], [ 96.487915, 28.627777 ], [ 96.53167, 28.714056 ], [ 96.602974, 28.726223 ], [ 96.622612, 28.779945 ], [ 96.542336, 28.878778 ], [ 96.541389, 28.916666 ], [ 96.443527, 29.038834 ], [ 96.353889, 29.037111 ], [ 96.189445, 28.900612 ], [ 96.155136, 28.954 ], [ 96.192612, 28.987612 ], [ 96.154556, 29.057777 ], [ 96.223114, 29.146862 ], [ 96.345886, 29.174028 ], [ 96.395027, 29.244862 ], [ 96.375694, 29.283194 ], [ 96.251747, 29.235861 ], [ 96.190582, 29.30489 ], [ 96.179695, 29.355499 ], [ 96.107941, 29.447306 ], [ 96.060753, 29.448639 ], [ 95.998581, 29.367001 ], [ 95.848663, 29.316111 ], [ 95.758331, 29.318111 ], [ 95.687447, 29.227667 ], [ 95.566971, 29.1765 ], [ 95.503136, 29.131611 ], [ 95.422112, 29.182501 ], [ 95.387108, 29.136972 ], [ 95.301613, 29.140499 ], [ 95.258469, 29.073833 ], [ 95.207108, 29.108889 ], [ 95.140663, 29.091612 ], [ 95.099503, 29.139668 ], [ 95.003052, 29.166695 ], [ 94.910469, 29.159222 ], [ 94.797501, 29.17325 ], [ 94.681694, 29.312056 ], [ 94.623055, 29.293861 ], [ 94.551498, 29.228083 ], [ 94.423859, 29.214027 ], [ 94.357445, 29.145166 ], [ 94.275169, 29.128584 ], [ 94.125504, 28.955055 ], [ 94.032997, 28.967638 ], [ 94.049919, 28.867416 ], [ 93.929527, 28.826305 ], [ 93.930031, 28.766834 ], [ 93.826614, 28.764305 ], [ 93.742668, 28.692028 ], [ 93.662697, 28.673721 ], [ 93.568275, 28.685972 ], [ 93.347054, 28.661083 ], [ 93.293861, 28.631332 ], [ 93.220444, 28.530167 ], [ 93.244804, 28.448223 ], [ 93.231476, 28.36725 ], [ 93.118942, 28.357861 ], [ 93.030197, 28.324139 ], [ 93.020027, 28.266834 ], [ 92.945, 28.255722 ], [ 92.855637, 28.179388 ], [ 92.769218, 28.171 ], [ 92.689857, 28.121584 ], [ 92.668861, 28.070944 ], [ 92.723442, 28.020805 ], [ 92.702919, 27.946777 ], [ 92.530891, 27.852139 ], [ 92.449753, 27.828722 ], [ 92.363609, 27.844667 ], [ 92.307587, 27.809195 ], [ 92.281303, 27.872334 ], [ 92.086441, 27.790277 ], [ 91.999031, 27.7265 ], [ 91.9105, 27.735195 ], [ 91.825447, 27.767139 ], [ 91.657196, 27.760361 ], [ 91.654442, 27.856583 ], [ 91.687531, 27.918667 ], [ 91.657082, 27.951973 ], [ 91.527748, 27.985001 ], [ 91.47953, 27.979694 ], [ 91.322502, 28.089277 ], [ 91.221695, 28.067972 ], [ 91.127808, 27.974138 ], [ 91.014832, 27.977722 ], [ 90.921524, 28.046333 ], [ 90.84008, 28.042389 ], [ 90.714195, 28.09086 ], [ 90.454834, 28.065861 ], [ 90.371475, 28.077444 ], [ 90.361862, 28.115723 ], [ 90.399025, 28.213444 ], [ 90.380753, 28.247999 ], [ 90.243553, 28.283028 ], [ 90.00264, 28.323778 ], [ 89.943169, 28.284222 ], [ 89.89917, 28.304028 ], [ 89.808525, 28.204027 ], [ 89.753281, 28.171194 ], [ 89.600693, 28.156305 ], [ 89.515831, 28.094917 ], [ 89.449448, 27.991888 ], [ 89.34864, 27.947222 ], [ 89.374275, 27.875389 ], [ 89.25528, 27.815195 ], [ 89.131279, 27.617472 ], [ 89.072777, 27.615499 ], [ 89.022163, 27.568056 ], [ 88.980972, 27.472723 ], [ 88.962418, 27.373583 ], [ 88.998108, 27.307722 ], [ 88.927254, 27.289778 ], [ 88.836746, 27.351194 ], [ 88.782997, 27.440834 ], [ 88.787888, 27.542917 ], [ 88.84478, 27.637777 ], [ 88.85453, 27.785862 ], [ 88.878944, 27.818056 ], [ 88.83625, 27.905806 ], [ 88.84317, 28.000805 ], [ 88.76133, 28.068361 ], [ 88.644836, 28.106056 ], [ 88.562584, 28.081917 ], [ 88.55397, 28.039528 ], [ 88.475029, 28.035862 ], [ 88.400719, 27.984388 ], [ 88.344475, 27.987722 ], [ 88.259415, 27.946751 ], [ 88.133553, 27.949694 ], [ 88.135971, 27.879223 ], [ 88.088303, 27.870417 ], [ 87.999611, 27.916082 ], [ 87.918282, 27.81636 ], [ 87.795334, 27.812471 ], [ 87.695808, 27.843889 ], [ 87.613251, 27.810278 ], [ 87.591362, 27.860001 ], [ 87.463722, 27.822195 ], [ 87.404274, 27.850529 ], [ 87.344139, 27.82925 ], [ 87.270554, 27.842638 ], [ 87.178337, 27.819416 ], [ 87.14917, 27.861778 ], [ 87.023224, 27.952639 ], [ 86.961334, 27.951 ], [ 86.848305, 28.027945 ], [ 86.798225, 28.018944 ], [ 86.739586, 28.093611 ], [ 86.672607, 28.103027 ], [ 86.583443, 28.081139 ], [ 86.506721, 28.009916 ], [ 86.473946, 27.935055 ], [ 86.348663, 27.946472 ], [ 86.320251, 27.975973 ], [ 86.238556, 27.978001 ], [ 86.204002, 28.010666 ], [ 86.211746, 28.100027 ], [ 86.167, 28.170139 ], [ 86.079666, 28.100334 ], [ 86.07933, 28.012611 ], [ 86.127029, 27.938528 ], [ 86.065002, 27.908695 ], [ 85.960915, 27.935278 ], [ 85.963997, 27.982973 ], [ 85.894997, 28.115389 ], [ 85.762947, 28.209806 ], [ 85.730942, 28.197945 ], [ 85.591637, 28.300833 ], [ 85.53167, 28.327223 ], [ 85.442108, 28.329861 ], [ 85.374001, 28.282862 ], [ 85.246719, 28.284805 ], [ 85.199387, 28.341999 ], [ 85.111336, 28.338667 ], [ 85.193138, 28.618139 ], [ 85.151108, 28.664888 ], [ 85.071083, 28.670334 ], [ 84.998726, 28.604389 ], [ 84.938332, 28.614195 ], [ 84.858253, 28.568306 ], [ 84.739754, 28.596945 ], [ 84.657585, 28.726389 ], [ 84.606552, 28.740055 ], [ 84.513947, 28.717806 ], [ 84.420364, 28.768723 ], [ 84.413391, 28.843445 ], [ 84.344833, 28.858862 ], [ 84.260475, 28.913473 ], [ 84.145584, 28.889639 ], [ 84.163109, 28.99711 ], [ 84.122391, 29.059334 ], [ 84.162865, 29.107973 ], [ 84.168526, 29.185722 ], [ 84.101608, 29.273277 ], [ 83.972946, 29.315584 ], [ 83.876724, 29.305111 ], [ 83.785553, 29.237612 ], [ 83.719193, 29.245111 ], [ 83.621307, 29.168833 ], [ 83.533302, 29.207861 ], [ 83.442497, 29.288639 ], [ 83.385193, 29.412251 ], [ 83.332832, 29.448833 ], [ 83.324608, 29.50075 ], [ 83.26178, 29.517195 ], [ 83.238388, 29.582945 ], [ 83.076447, 29.629862 ], [ 82.91922, 29.702055 ], [ 82.854057, 29.704306 ], [ 82.758278, 29.755028 ], [ 82.700638, 29.839556 ], [ 82.497864, 30.007444 ], [ 82.431335, 30.012278 ], [ 82.197746, 30.092501 ], [ 82.198807, 30.198723 ], [ 82.159111, 30.230278 ], [ 82.130531, 30.333889 ], [ 82.053055, 30.341473 ], [ 82.031082, 30.3405 ], [ 82.006554, 30.335583 ], [ 81.725166, 30.394917 ], [ 81.641052, 30.431139 ], [ 81.585526, 30.426666 ], [ 81.576469, 30.371361 ], [ 81.482635, 30.422777 ], [ 81.406807, 30.41375 ], [ 81.409637, 30.31675 ], [ 81.38517, 30.203722 ], [ 81.338448, 30.151972 ], [ 81.264389, 30.144472 ], [ 81.255859, 30.057695 ], [ 81.198471, 30.029888 ], [ 81.096085, 30.079166 ], [ 81.102554, 30.150555 ], [ 81.055664, 30.204472 ], [ 81.022751, 30.256639 ], [ 80.841835, 30.306278 ], [ 80.751083, 30.393944 ], [ 80.591721, 30.476778 ], [ 80.562637, 30.460112 ], [ 80.395302, 30.516666 ], [ 80.330948, 30.556305 ], [ 80.205307, 30.584612 ], [ 80.112808, 30.680305 ], [ 80.062363, 30.694139 ], [ 80.047165, 30.789944 ], [ 79.936859, 30.882944 ], [ 79.874611, 30.971445 ], [ 79.768364, 30.997612 ], [ 79.677139, 30.975721 ], [ 79.62439, 30.939138 ], [ 79.56942, 30.956583 ], [ 79.497643, 31.030972 ], [ 79.431442, 31.02775 ], [ 79.383804, 31.100056 ], [ 79.175781, 31.102972 ], [ 79.068359, 31.129 ], [ 79.000389, 31.112528 ], [ 78.937836, 31.230167 ], [ 78.881638, 31.274834 ], [ 78.79747, 31.293083 ], [ 78.760834, 31.355862 ], [ 78.796974, 31.437222 ], [ 78.72142, 31.517529 ], [ 78.837219, 31.601889 ], [ 78.764809, 31.674028 ], [ 78.697502, 31.772583 ], [ 78.746307, 31.907194 ], [ 78.617554, 32.072918 ], [ 78.539085, 32.115776 ], [ 78.46653, 32.185471 ], [ 78.497528, 32.257027 ], [ 78.462364, 32.37714 ], [ 78.485748, 32.42178 ], [ 78.40522, 32.525223 ], [ 78.526413, 32.606499 ], [ 78.632332, 32.611057 ], [ 78.736443, 32.695946 ], [ 78.780334, 32.598331 ], [ 78.781197, 32.475304 ], [ 78.97097, 32.344276 ], [ 79.067528, 32.384972 ], [ 79.148865, 32.483833 ], [ 79.258415, 32.523388 ], [ 79.291969, 32.653446 ], [ 79.26458, 32.674194 ], [ 79.288918, 32.793167 ], [ 79.249779, 32.832138 ], [ 79.278778, 32.882889 ], [ 79.260002, 32.984665 ], [ 79.154663, 33.023777 ], [ 79.148865, 33.074806 ], [ 79.188446, 33.129391 ], [ 79.180496, 33.194611 ], [ 79.074974, 33.228611 ], [ 79.066612, 33.295887 ], [ 78.92128, 33.398693 ], [ 78.82325, 33.483501 ], [ 78.729919, 33.617554 ], [ 78.709305, 33.679611 ], [ 78.775223, 33.746223 ], [ 78.775055, 33.80125 ], [ 78.717247, 33.890472 ], [ 78.715775, 33.964527 ], [ 78.763641, 34.001526 ], [ 78.712112, 34.050472 ], [ 78.729225, 34.095695 ], [ 78.87117, 34.157223 ], [ 78.956192, 34.217834 ], [ 78.993385, 34.28875 ], [ 78.981476, 34.332863 ], [ 78.838112, 34.406528 ], [ 78.73008, 34.496639 ], [ 78.660057, 34.529724 ], [ 78.569336, 34.611946 ], [ 78.418137, 34.605415 ], [ 78.387192, 34.651638 ], [ 78.284363, 34.667362 ], [ 78.207336, 34.766109 ], [ 78.184669, 34.881527 ], [ 78.082863, 35.082474 ], [ 78.116058, 35.145363 ], [ 78.057556, 35.18475 ], [ 78.002029, 35.294613 ], [ 77.99028, 35.379028 ], [ 78.097336, 35.455639 ], [ 78.079361, 35.492195 ], [ 77.990639, 35.48711 ], [ 77.888641, 35.42889 ], [ 77.840919, 35.504223 ], [ 77.623222, 35.476555 ], [ 77.53611, 35.495945 ], [ 77.427277, 35.469028 ], [ 77.266945, 35.535416 ], [ 77.186722, 35.528332 ], [ 77.056725, 35.599415 ], [ 76.932945, 35.615917 ], [ 76.830307, 35.67725 ], [ 76.763779, 35.66964 ], [ 76.675415, 35.750584 ], [ 76.578529, 35.813057 ], [ 76.59053, 35.893112 ], [ 76.55542, 35.917667 ], [ 76.358414, 35.836971 ], [ 76.221832, 35.850945 ], [ 76.168999, 35.838223 ], [ 76.155167, 35.938499 ], [ 76.080055, 36.018391 ], [ 76.001556, 36.018166 ], [ 75.946281, 36.069332 ], [ 75.936806, 36.133945 ], [ 76.053024, 36.237335 ], [ 75.983109, 36.337555 ], [ 76.025169, 36.389416 ], [ 76.008392, 36.453304 ], [ 75.928864, 36.558193 ], [ 75.918861, 36.620472 ], [ 75.729698, 36.746471 ], [ 75.652443, 36.768833 ], [ 75.546219, 36.766556 ], [ 75.454498, 36.721611 ], [ 75.422943, 36.771721 ], [ 75.417336, 36.877556 ], [ 75.37236, 36.943611 ], [ 75.230309, 36.959721 ], [ 75.146858, 37.01989 ], [ 75.039864, 37.01553 ], [ 74.922417, 36.934555 ], [ 74.85128, 36.987972 ], [ 74.821587, 37.060307 ], [ 74.729469, 37.024887 ], [ 74.67675, 37.097 ], [ 74.619781, 37.088974 ], [ 74.571556, 37.034443 ], [ 74.529587, 37.029388 ], [ 74.486443, 37.093388 ], [ 74.433113, 37.115749 ], [ 74.493721, 37.179668 ], [ 74.507973, 37.239193 ], [ 74.65992, 37.238388 ], [ 74.747253, 37.275417 ], [ 74.795441, 37.226501 ], [ 74.878555, 37.235695 ], [ 74.934914, 37.289501 ], [ 75.116249, 37.320251 ], [ 75.101418, 37.375389 ], [ 75.133835, 37.437443 ], [ 75.055473, 37.527168 ], [ 75.0, 37.518166 ], [ 74.928024, 37.556252 ], [ 74.896614, 37.657665 ], [ 74.995087, 37.762806 ], [ 74.905441, 37.842861 ], [ 74.914558, 38.009029 ], [ 74.864914, 38.025333 ], [ 74.822891, 38.083057 ], [ 74.785805, 38.185528 ], [ 74.802223, 38.225555 ], [ 74.787781, 38.354527 ], [ 74.869415, 38.403526 ], [ 74.867249, 38.498417 ], [ 74.718666, 38.522251 ], [ 74.630997, 38.583027 ], [ 74.506615, 38.629776 ], [ 74.382225, 38.653027 ], [ 74.287247, 38.648724 ], [ 74.134087, 38.668446 ], [ 74.070663, 38.568722 ], [ 74.069809, 38.531029 ], [ 73.924332, 38.536083 ], [ 73.806725, 38.633499 ], [ 73.76886, 38.690224 ], [ 73.756195, 38.777611 ], [ 73.706779, 38.885555 ], [ 73.747307, 38.933083 ], [ 73.821198, 38.93861 ], [ 73.819748, 39.03297 ], [ 73.744835, 39.030388 ], [ 73.691559, 39.156776 ], [ 73.616219, 39.237835 ], [ 73.565109, 39.240417 ], [ 73.669975, 39.390835 ], [ 73.658249, 39.465084 ], [ 73.821419, 39.458946 ], [ 73.863831, 39.478889 ], [ 73.94136, 39.602917 ], [ 73.915108, 39.714638 ], [ 73.832832, 39.779804 ], [ 73.861946, 39.838085 ], [ 74.028503, 40.083637 ], [ 74.113304, 40.081055 ], [ 74.262863, 40.124832 ], [ 74.340446, 40.083862 ], [ 74.523666, 40.204277 ], [ 74.585915, 40.274529 ], [ 74.680252, 40.264221 ], [ 74.703552, 40.346111 ], [ 74.899475, 40.337082 ], [ 74.804947, 40.429611 ], [ 74.82811, 40.52475 ], [ 74.987892, 40.450584 ], [ 75.193947, 40.438751 ], [ 75.410057, 40.553333 ], [ 75.455559, 40.603249 ], [ 75.593109, 40.658722 ], [ 75.640892, 40.506916 ], [ 75.719475, 40.485085 ], [ 75.715248, 40.437363 ], [ 75.647057, 40.376945 ], [ 75.699913, 40.277279 ], [ 75.885223, 40.307888 ], [ 75.974831, 40.380112 ], [ 76.106667, 40.404804 ], [ 76.187584, 40.382805 ], [ 76.289108, 40.460804 ], [ 76.324806, 40.370609 ], [ 76.439888, 40.402416 ], [ 76.521332, 40.462612 ], [ 76.538193, 40.534863 ], [ 76.640358, 40.622833 ], [ 76.634003, 40.757332 ], [ 76.788803, 40.860001 ], [ 76.786087, 40.960667 ], [ 76.864052, 41.020943 ], [ 77.047279, 41.059696 ], [ 77.152809, 41.016388 ], [ 77.261169, 41.006554 ], [ 77.332031, 41.030056 ], [ 77.469833, 41.00111 ], [ 77.663834, 40.998585 ], [ 77.877525, 41.073193 ], [ 77.983192, 41.077805 ], [ 78.059387, 41.032776 ], [ 78.190025, 41.079029 ], [ 78.272392, 41.213276 ], [ 78.385498, 41.271084 ], [ 78.379471, 41.361279 ], [ 78.405029, 41.413502 ], [ 78.47625, 41.420723 ], [ 78.531998, 41.456085 ], [ 78.639832, 41.469582 ], [ 78.708443, 41.550694 ], [ 78.836365, 41.5755 ], [ 78.936996, 41.645557 ], [ 79.010109, 41.657639 ], [ 79.136528, 41.724083 ], [ 79.225441, 41.737751 ], [ 79.268753, 41.786278 ], [ 79.362587, 41.802387 ], [ 79.452026, 41.849194 ], [ 79.460556, 41.794224 ], [ 79.603722, 41.780918 ], [ 79.670502, 41.790085 ], [ 79.762527, 41.862305 ], [ 79.767525, 41.892113 ], [ 79.881531, 42.037998 ], [ 80.03167, 42.051613 ], [ 80.126526, 42.034752 ], [ 80.278748, 42.057777 ], [ 80.263031, 42.204029 ], [ 80.289024, 42.260139 ], [ 80.2715, 42.330639 ], [ 80.228165, 42.351665 ], [ 80.208527, 42.427723 ], [ 80.221306, 42.536251 ], [ 80.167336, 42.636585 ], [ 80.213974, 42.697056 ], [ 80.258331, 42.828445 ], [ 80.398087, 42.827389 ], [ 80.419586, 42.848362 ], [ 80.590836, 42.895668 ], [ 80.482719, 42.940498 ], [ 80.39492, 42.995419 ], [ 80.409691, 43.057304 ], [ 80.502113, 43.076752 ], [ 80.593086, 43.131748 ], [ 80.716499, 43.132332 ], [ 80.799446, 43.175415 ], [ 80.744751, 43.29789 ], [ 80.660721, 43.312832 ], [ 80.745972, 43.448502 ], [ 80.590111, 43.741417 ], [ 80.519753, 43.834194 ], [ 80.506554, 43.919666 ], [ 80.454193, 44.003387 ], [ 80.447418, 44.075722 ], [ 80.402779, 44.197971 ], [ 80.400085, 44.289417 ], [ 80.342834, 44.481304 ], [ 80.404114, 44.609165 ], [ 80.361084, 44.656361 ], [ 80.489754, 44.711418 ], [ 80.446976, 44.757416 ], [ 80.340614, 44.820251 ], [ 80.246666, 44.839584 ], [ 80.143471, 44.83036 ], [ 80.040169, 44.800415 ], [ 79.989418, 44.817001 ], [ 79.960419, 44.878944 ], [ 79.851974, 44.904945 ], [ 79.995308, 44.969139 ], [ 80.081833, 45.049557 ], [ 80.231941, 45.032749 ], [ 80.298859, 45.06575 ], [ 80.402779, 45.052834 ], [ 80.445137, 45.102695 ], [ 80.606056, 45.110332 ], [ 80.751419, 45.157722 ], [ 80.854111, 45.127945 ], [ 80.951614, 45.167137 ], [ 81.075195, 45.174389 ], [ 81.112587, 45.219723 ], [ 81.452774, 45.268696 ], [ 81.555359, 45.303444 ], [ 81.626335, 45.353889 ], [ 81.689583, 45.366638 ], [ 81.78817, 45.306889 ], [ 81.827835, 45.199974 ], [ 81.907364, 45.205696 ], [ 81.92514, 45.168861 ], [ 82.008247, 45.158474 ], [ 82.114388, 45.207916 ], [ 82.240837, 45.235363 ], [ 82.326775, 45.215832 ], [ 82.486191, 45.120667 ], [ 82.57592, 45.210861 ], [ 82.592529, 45.231445 ], [ 82.630859, 45.359665 ], [ 82.590141, 45.44561 ], [ 82.429665, 45.468613 ], [ 82.275719, 45.545387 ], [ 82.289108, 45.632473 ], [ 82.418777, 45.86639 ], [ 82.504448, 45.983387 ], [ 82.52903, 46.184029 ], [ 82.578445, 46.281666 ], [ 82.739029, 46.517693 ], [ 82.807304, 46.749638 ], [ 82.890137, 46.876415 ], [ 82.936417, 47.012444 ], [ 82.979889, 47.030693 ], [ 83.030891, 47.212112 ], [ 83.174667, 47.223667 ], [ 83.244308, 47.178165 ], [ 83.343475, 47.176056 ], [ 83.416862, 47.121307 ], [ 83.458084, 47.131943 ], [ 83.555305, 47.068306 ], [ 83.701584, 47.030083 ], [ 83.760971, 47.029804 ], [ 84.038223, 46.965363 ], [ 84.214806, 46.999611 ], [ 84.372833, 46.997276 ], [ 84.420441, 47.010918 ], [ 84.507027, 46.977833 ], [ 84.569504, 46.996113 ], [ 84.70472, 46.996223 ], [ 84.780197, 46.902111 ], [ 84.703331, 46.834141 ], [ 84.826691, 46.832333 ], [ 84.962585, 46.871639 ], [ 84.982193, 46.918915 ], [ 85.069916, 46.933167 ], [ 85.190247, 47.006916 ], [ 85.219414, 47.051388 ], [ 85.322693, 47.046749 ], [ 85.445778, 47.064919 ], [ 85.529724, 47.059387 ], [ 85.5765, 47.190666 ], [ 85.690666, 47.218224 ], [ 85.698303, 47.397778 ], [ 85.6035, 47.519665 ], [ 85.621246, 47.607639 ], [ 85.54158, 47.939445 ], [ 85.612053, 48.083332 ], [ 85.61039, 48.156723 ], [ 85.735443, 48.370998 ], [ 85.839363, 48.425499 ], [ 86.050026, 48.447304 ], [ 86.214386, 48.435471 ], [ 86.318054, 48.500973 ], [ 86.448196, 48.499054 ], [ 86.591309, 48.546276 ], [ 86.634087, 48.624668 ], [ 86.671471, 48.631554 ], [ 86.763054, 48.714863 ], [ 86.751945, 48.794388 ], [ 86.810448, 48.850304 ], [ 86.738892, 48.906223 ], [ 86.723221, 48.990665 ], [ 86.82933, 49.050472 ], [ 86.855194, 49.107529 ], [ 86.986, 49.103138 ], [ 87.134697, 49.150806 ], [ 87.221725, 49.114418 ], [ 87.43808, 49.084667 ], [ 87.702332, 49.169693 ], [ 87.832306, 49.174999 ], [ 87.866165, 49.118305 ], [ 87.833191, 49.059944 ], [ 87.903389, 49.0075 ], [ 87.874557, 48.954582 ], [ 87.775139, 48.937332 ], [ 87.750031, 48.89053 ], [ 87.924667, 48.76228 ], [ 88.0, 48.762001 ], [ 88.073334, 48.691666 ], [ 88.014252, 48.655029 ], [ 88.0, 48.570694 ], [ 88.349586, 48.470638 ], [ 88.417419, 48.390556 ], [ 88.493774, 48.416 ], [ 88.601555, 48.343723 ], [ 88.575279, 48.275806 ], [ 88.674194, 48.174526 ], [ 88.831253, 48.115528 ], [ 88.899109, 48.119804 ], [ 89.028503, 48.03978 ], [ 89.041, 47.947304 ], [ 89.193031, 47.950165 ], [ 89.31842, 48.028389 ], [ 89.565887, 48.048695 ], [ 89.617279, 47.945835 ], [ 89.725197, 47.891804 ], [ 89.796417, 47.818165 ], [ 89.930252, 47.816502 ], [ 89.963776, 47.884361 ], [ 90.066917, 47.863556 ], [ 90.079498, 47.766193 ], [ 90.143501, 47.72261 ], [ 90.323471, 47.667 ], [ 90.326775, 47.62225 ], [ 90.456863, 47.48711 ], [ 90.491302, 47.38039 ], [ 90.475777, 47.324139 ], [ 90.51786, 47.244167 ], [ 90.734337, 47.001499 ], [ 90.881142, 46.976334 ], [ 90.96611, 46.861946 ], [ 90.953529, 46.826973 ], [ 91.05172, 46.726002 ], [ 91.02758, 46.592529 ], [ 91.077637, 46.563946 ], [ 90.955887, 46.336445 ], [ 90.913086, 46.309639 ], [ 90.934776, 46.205639 ], [ 91.021416, 46.113083 ], [ 91.011497, 46.000526 ], [ 90.894165, 45.924999 ], [ 90.803337, 45.811611 ], [ 90.725639, 45.736832 ], [ 90.663559, 45.516804 ], [ 90.767807, 45.421471 ], [ 90.807747, 45.350887 ], [ 90.813225, 45.286362 ], [ 90.875748, 45.284195 ], [ 90.872475, 45.198139 ], [ 90.938164, 45.182446 ], [ 91.022224, 45.205166 ], [ 91.158081, 45.194138 ], [ 91.232635, 45.140499 ], [ 91.383698, 45.104946 ], [ 91.482086, 45.13575 ], [ 91.544586, 45.073502 ], [ 91.652, 45.056667 ], [ 91.766891, 45.068668 ], [ 92.016388, 45.069168 ], [ 92.172195, 45.030472 ], [ 92.262886, 45.049252 ], [ 92.413025, 45.03936 ], [ 92.51458, 45.009998 ], [ 92.60997, 45.015415 ], [ 92.897362, 45.010502 ], [ 93.069832, 45.018417 ], [ 93.139252, 45.0 ], [ 93.35775, 44.989944 ], [ 93.508278, 44.965332 ], [ 93.725502, 44.886585 ], [ 93.760696, 44.846863 ], [ 94.197388, 44.662472 ], [ 94.305664, 44.589832 ], [ 94.334, 44.523056 ], [ 94.446136, 44.503082 ], [ 94.575974, 44.448334 ], [ 94.695419, 44.347694 ], [ 94.930946, 44.288887 ], [ 94.990501, 44.254555 ], [ 95.189476, 44.265194 ], [ 95.423615, 44.289307 ], [ 95.370636, 44.209694 ], [ 95.343719, 44.061501 ], [ 95.374809, 44.021111 ], [ 95.550781, 43.988667 ], [ 95.662247, 43.784054 ], [ 95.676498, 43.706417 ], [ 95.881058, 43.402084 ], [ 95.888527, 43.287582 ], [ 95.916473, 43.233387 ], [ 96.073944, 43.125332 ], [ 96.154419, 43.010502 ], [ 96.324448, 42.882446 ], [ 96.361504, 42.721249 ], [ 96.433167, 42.716 ], [ 96.691803, 42.742249 ], [ 96.932831, 42.712166 ], [ 97.128387, 42.770779 ], [ 97.151443, 42.773888 ], [ 97.519081, 42.728416 ], [ 97.827293, 42.701839 ], [ 97.765007, 42.873959 ], [ 97.758797, 42.960819 ], [ 97.721817, 43.13073 ], [ 97.745903, 43.280918 ], [ 97.724739, 43.517288 ], [ 97.685028, 43.642521 ], [ 97.703934, 43.770149 ], [ 97.779404, 43.897911 ], [ 97.854469, 44.052078 ], [ 97.912514, 44.125542 ], [ 97.981628, 44.28738 ], [ 98.078079, 44.41851 ], [ 98.182327, 44.603111 ], [ 98.340439, 45.001389 ], [ 98.43602, 45.226101 ], [ 98.445534, 45.402351 ], [ 98.428284, 45.560589 ], [ 98.324631, 45.842079 ], [ 98.26902, 45.907959 ], [ 98.181183, 45.97168 ], [ 97.974419, 46.041561 ], [ 97.889091, 46.082741 ], [ 97.801643, 46.15852 ], [ 97.614357, 46.3685 ], [ 97.549911, 46.503239 ], [ 97.555618, 46.56517 ], [ 97.630249, 46.717361 ], [ 97.793373, 46.97908 ], [ 97.861366, 47.071991 ], [ 97.974693, 47.165878 ], [ 98.102097, 47.248249 ], [ 98.234879, 47.4067 ], [ 98.313469, 47.545109 ], [ 98.341133, 47.657688 ], [ 98.167397, 47.74921 ], [ 98.075478, 47.884911 ], [ 98.048233, 47.94886 ], [ 98.085258, 48.035511 ], [ 98.386147, 48.126598 ], [ 98.552727, 48.216942 ], [ 98.750328, 48.26157 ], [ 98.863007, 48.272221 ], [ 99.105637, 48.331059 ], [ 99.050713, 48.40398 ], [ 99.045059, 48.477589 ], [ 99.098198, 48.63044 ], [ 99.182159, 48.735661 ], [ 99.221237, 48.88155 ], [ 99.159119, 49.038479 ], [ 99.124809, 49.090061 ], [ 99.053253, 49.13755 ], [ 98.912483, 49.133862 ], [ 98.733833, 49.033218 ], [ 98.597107, 49.000542 ], [ 98.368973, 49.067009 ], [ 98.282494, 49.080189 ], [ 98.164574, 49.07074 ], [ 97.917824, 49.019859 ], [ 97.834686, 49.030849 ], [ 97.712357, 49.135899 ], [ 97.611267, 49.20113 ], [ 97.370743, 49.268909 ], [ 97.070007, 49.370998 ], [ 97.001427, 49.40308 ], [ 96.953506, 49.519169 ], [ 96.964058, 49.550892 ], [ 97.091583, 49.605598 ], [ 97.193726, 49.774696 ], [ 97.316193, 49.757389 ], [ 97.42997, 49.788113 ], [ 97.611359, 49.895668 ], [ 97.674416, 49.949249 ], [ 97.765526, 49.984249 ], [ 97.862724, 49.947887 ], [ 97.972778, 50.030167 ], [ 98.057777, 50.053528 ], [ 98.116165, 50.103943 ], [ 98.18367, 50.214359 ], [ 98.248611, 50.249805 ], [ 98.278053, 50.311974 ], [ 98.256668, 50.411057 ], [ 98.324471, 50.538971 ], [ 98.264778, 50.574585 ], [ 98.132637, 50.59639 ], [ 98.048859, 50.652805 ], [ 97.955025, 50.78186 ], [ 98.012863, 50.874138 ], [ 97.867279, 50.949806 ], [ 97.867668, 51.045471 ], [ 97.907776, 51.172112 ], [ 97.941307, 51.207943 ], [ 97.953499, 51.333221 ], [ 98.048195, 51.437889 ], [ 98.099976, 51.458443 ], [ 98.234253, 51.462223 ], [ 98.262947, 51.520779 ], [ 98.240524, 51.566612 ], [ 98.299164, 51.657166 ], [ 98.315224, 51.717834 ], [ 98.367554, 51.74511 ], [ 98.494972, 51.765583 ], [ 98.696304, 51.820362 ], [ 98.728722, 51.848362 ], [ 98.852608, 52.041027 ], [ 98.871445, 52.129223 ], [ 98.948204, 52.149723 ], [ 98.933594, 52.19249 ], [ 98.808029, 52.196655 ], [ 98.816376, 52.260277 ], [ 98.733597, 52.294441 ], [ 98.669434, 52.257217 ], [ 98.646103, 52.309433 ], [ 98.679703, 52.369987 ], [ 98.629974, 52.414154 ], [ 98.828049, 52.534439 ], [ 98.804153, 52.611664 ], [ 98.924149, 52.644714 ], [ 98.94136, 52.711105 ], [ 98.922211, 52.801102 ], [ 98.847214, 52.837769 ], [ 98.931091, 52.924995 ], [ 99.044708, 52.888603 ], [ 99.159424, 52.871658 ], [ 99.249969, 52.953781 ], [ 99.11998, 52.984993 ], [ 98.985535, 53.034439 ], [ 99.059143, 53.105827 ], [ 98.901932, 53.155266 ], [ 98.877197, 53.119438 ], [ 98.67804, 53.154991 ], [ 98.61026, 53.103607 ], [ 98.543594, 53.111664 ], [ 98.299988, 53.100548 ], [ 98.285812, 53.227211 ], [ 98.181091, 53.247215 ], [ 98.039154, 53.248329 ], [ 97.914429, 53.351662 ], [ 97.723312, 53.384163 ], [ 97.631653, 53.367493 ], [ 97.587494, 53.438881 ], [ 97.448868, 53.457497 ], [ 97.433868, 53.499435 ], [ 97.302475, 53.588043 ], [ 97.199997, 53.623604 ], [ 97.1297, 53.608887 ], [ 96.886658, 53.728874 ], [ 96.71582, 53.699997 ], [ 96.655258, 53.635826 ], [ 96.5, 53.68499 ], [ 96.406097, 53.783607 ], [ 96.132202, 53.971931 ], [ 96.049423, 53.995544 ], [ 96.080551, 54.063049 ], [ 95.988037, 54.087212 ], [ 95.911377, 54.163322 ], [ 95.678314, 54.231377 ], [ 95.651932, 54.29361 ], [ 95.666382, 54.345268 ], [ 95.790817, 54.42083 ], [ 95.898041, 54.388329 ], [ 96.019989, 54.501106 ], [ 96.055817, 54.576103 ], [ 96.205261, 54.541382 ], [ 96.315826, 54.571388 ], [ 96.451096, 54.520271 ], [ 96.549713, 54.50444 ], [ 96.551651, 54.56916 ], [ 96.588882, 54.659714 ], [ 96.56192, 54.696938 ], [ 96.673599, 54.802216 ], [ 96.712769, 54.926384 ], [ 96.587769, 55.027214 ], [ 96.659988, 55.10833 ], [ 96.704437, 55.205269 ], [ 96.695816, 55.250832 ], [ 96.914154, 55.313324 ], [ 96.820831, 55.564438 ], [ 96.85582, 55.594437 ], [ 96.746368, 55.651382 ], [ 96.821106, 55.692215 ], [ 96.759155, 55.736656 ], [ 96.772491, 55.77916 ], [ 96.969711, 55.855827 ], [ 96.980545, 56.022217 ], [ 97.061096, 56.025551 ], [ 97.123596, 56.116386 ], [ 97.272766, 56.086937 ], [ 97.352203, 56.048607 ], [ 97.43248, 56.095825 ], [ 97.428589, 56.14666 ], [ 97.509155, 56.18499 ], [ 97.586929, 56.18943 ], [ 97.559982, 56.288887 ], [ 97.556641, 56.387497 ], [ 97.881927, 56.392494 ], [ 97.879425, 56.559433 ], [ 97.74498, 56.558601 ], [ 97.783051, 56.658043 ], [ 97.750275, 56.704163 ], [ 97.766937, 56.788605 ], [ 97.66748, 56.808601 ], [ 97.55748, 56.791382 ], [ 97.468597, 56.827492 ], [ 97.476654, 56.885826 ], [ 97.581375, 56.921661 ], [ 97.476929, 56.964439 ], [ 97.405548, 57.026382 ], [ 97.343048, 57.043327 ], [ 97.668594, 57.485825 ], [ 97.891937, 57.780548 ], [ 97.986923, 57.822495 ], [ 98.101089, 57.823051 ], [ 98.546646, 57.791664 ], [ 98.630264, 57.777214 ], [ 98.732208, 57.794159 ], [ 98.883881, 57.721375 ], [ 98.974152, 57.721657 ], [ 99.07666, 57.771378 ], [ 99.202774, 57.763329 ], [ 99.332764, 57.798882 ], [ 99.421646, 57.793327 ], [ 99.4711, 57.859718 ], [ 99.494431, 57.934158 ], [ 99.619705, 58.001663 ], [ 99.636932, 58.055824 ], [ 99.719437, 58.086937 ], [ 99.801376, 58.057213 ], [ 99.969986, 58.083878 ], [ 100.044144, 58.079437 ], [ 100.080551, 58.045547 ], [ 100.07666, 57.961105 ], [ 100.123032, 57.865547 ], [ 100.207489, 57.837769 ], [ 100.306374, 57.75972 ], [ 100.373032, 57.731102 ], [ 100.328049, 57.682495 ], [ 100.380814, 57.616936 ], [ 100.403587, 57.54805 ], [ 100.663879, 57.467491 ], [ 100.741928, 57.401932 ], [ 100.864433, 57.466103 ], [ 100.911209, 57.448357 ], [ 100.962769, 57.500832 ], [ 100.957207, 57.556381 ], [ 100.81749, 57.640549 ], [ 100.845261, 57.731934 ], [ 100.848328, 57.847214 ], [ 100.953049, 57.866936 ], [ 101.139427, 57.982491 ], [ 101.162773, 58.05555 ], [ 101.104431, 58.110825 ], [ 101.216087, 58.14444 ], [ 101.276382, 58.218597 ], [ 101.534714, 58.224709 ], [ 101.545532, 58.268326 ], [ 101.650818, 58.360275 ], [ 101.684982, 58.418884 ], [ 101.77388, 58.454437 ], [ 101.923309, 58.465546 ], [ 102.006653, 58.496658 ], [ 102.162201, 58.515274 ], [ 102.251099, 58.559715 ], [ 102.310532, 58.645271 ], [ 102.413307, 58.661377 ], [ 102.511383, 58.71666 ], [ 102.56694, 58.796944 ], [ 102.537201, 58.901657 ], [ 102.43692, 58.943047 ], [ 102.450821, 59.001106 ], [ 102.404427, 59.072495 ], [ 102.460823, 59.157494 ], [ 102.606087, 59.206383 ], [ 102.767487, 59.197487 ], [ 102.842484, 59.21888 ], [ 102.871643, 59.265274 ], [ 103.015549, 59.321938 ], [ 103.062187, 59.269157 ], [ 103.164429, 59.259995 ], [ 103.218323, 59.288887 ], [ 103.244431, 59.179436 ], [ 103.395828, 59.017769 ], [ 103.484711, 59.007774 ], [ 103.591927, 58.951935 ], [ 103.615257, 58.911377 ], [ 103.676376, 58.926094 ], [ 103.793869, 58.897484 ], [ 103.893333, 58.905548 ], [ 103.954163, 58.848602 ], [ 103.940811, 58.760826 ], [ 103.992203, 58.73555 ], [ 104.044434, 58.773048 ], [ 104.236397, 58.758659 ], [ 104.298317, 58.709984 ], [ 104.399147, 58.69915 ], [ 104.391937, 58.652206 ], [ 104.458328, 58.60054 ], [ 104.535263, 58.637489 ], [ 104.78804, 58.66526 ], [ 104.871918, 58.715538 ], [ 104.816093, 58.783043 ], [ 104.755829, 58.815262 ], [ 104.838593, 58.894432 ], [ 104.893883, 58.90387 ], [ 104.947746, 58.959152 ], [ 105.084991, 58.992767 ], [ 105.143883, 59.04583 ], [ 105.3022, 59.061661 ], [ 105.360527, 59.104439 ], [ 105.300262, 59.153877 ], [ 105.33194, 59.192764 ], [ 105.299423, 59.256386 ], [ 105.188873, 59.306381 ], [ 105.240257, 59.345825 ], [ 105.23082, 59.42527 ], [ 105.183037, 59.473045 ], [ 105.11026, 59.453323 ], [ 104.97554, 59.463058 ], [ 104.857758, 59.54583 ], [ 104.876923, 59.585823 ], [ 104.810532, 59.627769 ], [ 104.798599, 59.699158 ], [ 104.884987, 59.747215 ], [ 105.025818, 59.775551 ], [ 105.01915, 59.837212 ], [ 105.185257, 59.860275 ], [ 105.378311, 59.820831 ], [ 105.495247, 59.845543 ], [ 105.430542, 59.893883 ], [ 105.485527, 60.022217 ], [ 105.43248, 60.085266 ], [ 105.429703, 60.138603 ], [ 105.485527, 60.2286 ], [ 105.453598, 60.269989 ], [ 105.375809, 60.249161 ], [ 105.333878, 60.293327 ], [ 105.231369, 60.276939 ], [ 105.056091, 60.29277 ], [ 105.011108, 60.282768 ], [ 104.877197, 60.303879 ], [ 104.76416, 60.38221 ], [ 104.664146, 60.399719 ], [ 104.641373, 60.494156 ], [ 104.562477, 60.550545 ], [ 104.516663, 60.633331 ], [ 104.588593, 60.762497 ], [ 104.506104, 60.783333 ], [ 104.483597, 60.855553 ], [ 104.601379, 60.873604 ], [ 104.568329, 60.936653 ], [ 104.6297, 61.081108 ], [ 104.686653, 61.080826 ], [ 104.834991, 61.177765 ], [ 105.006653, 61.172493 ], [ 104.962769, 61.264992 ], [ 104.890549, 61.359711 ], [ 104.939697, 61.395538 ], [ 105.123871, 61.420273 ], [ 105.248871, 61.413322 ], [ 105.280273, 61.482208 ], [ 105.374977, 61.535271 ], [ 105.564148, 61.569717 ], [ 105.585823, 61.613052 ], [ 105.694702, 61.649437 ], [ 105.802757, 61.617767 ], [ 105.8647, 61.673882 ], [ 105.949142, 61.683327 ], [ 105.89415, 61.82888 ], [ 106.022774, 61.890274 ], [ 106.070267, 61.938324 ], [ 106.147774, 61.952774 ], [ 106.199997, 61.99749 ], [ 106.326393, 62.020828 ], [ 106.37886, 62.065269 ], [ 106.38472, 62.126099 ], [ 106.447746, 62.241661 ], [ 106.3797, 62.29055 ], [ 106.455551, 62.390549 ], [ 106.521927, 62.37027 ], [ 106.714432, 62.477211 ], [ 106.657211, 62.544998 ], [ 106.707207, 62.582771 ], [ 106.814423, 62.599716 ], [ 106.505257, 62.674438 ], [ 106.524429, 62.75222 ], [ 106.467758, 62.776939 ], [ 106.437477, 62.847488 ], [ 106.210823, 62.900269 ], [ 106.219437, 62.941933 ], [ 106.146103, 63.014442 ], [ 106.121918, 63.069717 ], [ 106.281662, 63.070549 ], [ 106.404709, 63.110275 ], [ 106.36554, 63.216385 ], [ 106.366089, 63.275826 ], [ 106.444138, 63.331108 ], [ 106.504707, 63.303047 ], [ 106.684418, 63.298332 ], [ 106.725807, 63.374992 ], [ 106.651382, 63.400269 ], [ 106.574432, 63.464439 ], [ 106.550262, 63.537498 ], [ 106.67276, 63.603607 ], [ 106.627472, 63.681381 ], [ 106.694427, 63.767769 ], [ 106.791367, 63.852776 ], [ 106.678307, 63.930275 ], [ 106.702766, 63.98555 ], [ 106.764427, 63.996658 ], [ 106.991364, 63.932213 ], [ 107.071381, 63.885269 ], [ 107.143883, 63.9086 ], [ 107.200272, 63.957214 ], [ 107.291092, 63.950829 ], [ 107.361649, 63.879433 ], [ 107.538307, 63.856659 ], [ 107.594711, 63.871658 ], [ 107.619431, 63.957497 ], [ 107.771103, 64.006653 ], [ 107.84082, 63.984993 ], [ 107.959427, 64.000549 ], [ 108.118317, 63.981377 ], [ 108.169708, 64.000549 ], [ 108.251389, 63.989159 ], [ 108.32222, 64.039429 ], [ 108.2211, 64.208328 ], [ 108.136108, 64.241928 ], [ 108.026543, 64.223465 ], [ 108.139977, 64.262207 ], [ 108.29776, 64.246933 ], [ 108.36998, 64.300537 ], [ 108.452209, 64.289154 ], [ 108.530823, 64.241653 ], [ 108.53804, 64.104156 ], [ 108.577477, 64.047211 ], [ 108.703323, 64.005554 ], [ 108.741364, 63.976097 ], [ 108.683868, 63.9086 ], [ 108.76944, 63.858604 ], [ 108.687477, 63.794998 ], [ 108.605553, 63.807495 ], [ 108.466087, 63.789436 ], [ 108.366653, 63.814156 ], [ 108.277771, 63.796387 ], [ 108.272774, 63.68499 ], [ 108.190262, 63.632767 ], [ 108.106934, 63.606102 ], [ 108.136658, 63.563606 ], [ 108.535538, 63.598602 ], [ 108.617752, 63.573326 ], [ 108.70665, 63.579163 ], [ 108.856644, 63.535828 ], [ 109.04332, 63.554161 ], [ 109.140266, 63.473877 ], [ 109.228867, 63.440269 ], [ 109.260536, 63.361107 ], [ 109.351379, 63.363609 ], [ 109.391663, 63.324715 ], [ 109.375259, 63.255272 ], [ 109.453049, 63.154434 ], [ 109.481087, 63.027771 ], [ 109.486099, 62.916382 ], [ 109.615807, 62.876099 ], [ 109.623871, 62.801659 ], [ 109.554428, 62.789436 ], [ 109.467209, 62.740273 ], [ 109.463043, 62.679161 ], [ 109.380257, 62.649437 ], [ 109.371094, 62.576103 ], [ 109.244431, 62.572769 ], [ 109.3022, 62.48333 ], [ 109.402481, 62.463882 ], [ 109.4711, 62.404991 ], [ 109.544144, 62.432495 ], [ 109.732758, 62.411102 ], [ 109.913879, 62.41082 ], [ 109.889977, 62.35833 ], [ 109.962486, 62.333328 ], [ 109.997482, 62.2761 ], [ 109.932213, 62.23999 ], [ 110.004173, 62.180824 ], [ 109.924698, 62.125824 ], [ 109.818268, 62.003624 ], [ 109.765823, 61.988045 ], [ 109.633621, 61.894165 ], [ 109.58638, 61.823326 ], [ 109.638893, 61.760826 ], [ 109.612633, 61.713936 ], [ 109.719147, 61.671936 ], [ 109.794144, 61.594437 ], [ 109.865807, 61.547493 ], [ 109.848877, 61.441376 ], [ 109.801651, 61.368881 ], [ 109.804153, 61.309433 ], [ 109.855263, 61.291382 ], [ 109.948593, 61.300827 ], [ 110.090271, 61.270271 ], [ 110.171654, 61.159714 ], [ 110.321114, 61.146385 ], [ 110.409988, 61.179993 ], [ 110.497482, 61.152214 ], [ 110.506653, 61.064995 ], [ 110.46582, 61.000832 ], [ 110.387497, 60.933876 ], [ 110.319992, 60.902214 ], [ 110.222214, 60.800827 ], [ 110.270264, 60.762215 ], [ 110.267761, 60.691933 ], [ 110.228867, 60.675827 ], [ 110.076927, 60.676102 ], [ 110.117752, 60.57972 ], [ 110.038879, 60.558327 ], [ 109.910538, 60.447487 ], [ 109.939972, 60.393883 ], [ 109.855263, 60.369156 ], [ 109.805542, 60.313049 ], [ 109.794144, 60.245827 ], [ 109.731369, 60.231934 ], [ 109.692749, 60.11721 ], [ 109.716377, 60.052216 ], [ 109.76944, 60.028877 ], [ 109.67804, 59.931107 ], [ 109.651382, 59.861938 ], [ 109.52887, 59.790833 ], [ 109.494713, 59.750275 ], [ 109.506104, 59.619987 ], [ 109.428307, 59.57972 ], [ 109.267487, 59.462212 ], [ 109.317207, 59.397774 ], [ 109.250816, 59.36805 ], [ 109.287491, 59.30777 ], [ 109.48082, 59.295547 ], [ 109.50499, 59.238602 ], [ 109.639427, 59.13221 ], [ 109.640549, 59.061661 ], [ 109.720543, 59.077217 ], [ 109.830276, 58.978043 ], [ 109.915268, 59.008049 ], [ 110.181931, 58.974159 ], [ 110.287773, 58.983047 ], [ 110.330276, 59.025826 ], [ 110.481934, 59.033333 ], [ 110.538589, 59.06221 ], [ 110.592758, 59.136658 ], [ 110.578873, 59.191658 ], [ 110.654427, 59.242493 ], [ 110.741364, 59.262497 ], [ 110.92276, 59.238045 ], [ 110.996933, 59.208046 ], [ 111.105263, 59.234161 ], [ 111.182213, 59.183327 ], [ 111.304153, 59.256943 ], [ 111.424149, 59.274162 ], [ 111.570541, 59.21888 ], [ 111.646103, 59.2061 ], [ 111.760536, 59.275269 ], [ 111.887772, 59.285828 ], [ 111.941933, 59.271103 ], [ 111.981659, 59.334435 ], [ 112.094437, 59.394997 ], [ 112.221367, 59.503609 ], [ 112.329437, 59.426659 ], [ 112.276382, 59.369987 ], [ 112.291367, 59.299721 ], [ 112.428589, 59.329163 ], [ 112.624153, 59.319443 ], [ 112.638603, 59.26944 ], [ 112.537773, 59.236938 ], [ 112.464706, 59.168053 ], [ 112.449707, 59.124992 ], [ 112.466377, 59.031662 ], [ 112.44693, 58.92305 ], [ 112.485527, 58.874992 ], [ 112.627617, 58.961182 ], [ 112.63443, 59.033051 ], [ 112.71666, 59.080551 ], [ 112.882202, 59.118324 ], [ 112.911652, 59.154991 ], [ 112.971367, 59.134438 ], [ 113.141663, 59.165825 ], [ 113.218872, 59.149437 ], [ 113.469437, 59.264999 ], [ 113.483047, 59.337769 ], [ 113.423599, 59.366661 ], [ 113.47998, 59.442215 ], [ 113.515823, 59.437767 ], [ 113.609711, 59.49527 ], [ 113.608871, 59.581108 ], [ 113.775543, 59.607216 ], [ 113.878593, 59.678879 ], [ 113.938309, 59.692215 ], [ 114.041931, 59.68055 ], [ 114.051933, 59.74305 ], [ 114.165543, 59.745827 ], [ 114.27388, 59.832214 ], [ 114.302467, 59.874435 ], [ 114.546097, 59.984993 ], [ 114.523323, 60.040276 ], [ 114.551086, 60.11805 ], [ 114.609993, 60.136108 ], [ 114.69664, 60.219986 ], [ 114.803307, 60.18055 ], [ 115.013046, 60.27166 ], [ 115.097214, 60.387497 ], [ 115.189148, 60.429718 ], [ 115.34166, 60.477486 ], [ 115.665817, 60.525551 ], [ 115.733322, 60.52166 ], [ 115.855553, 60.462494 ], [ 116.003197, 60.459305 ], [ 116.054153, 60.413048 ], [ 116.185257, 60.400826 ], [ 116.246094, 60.375824 ], [ 116.382751, 60.388046 ], [ 116.591087, 60.359993 ], [ 116.732208, 60.257774 ], [ 116.839981, 60.242218 ], [ 116.885818, 60.196655 ], [ 116.968048, 60.161659 ], [ 117.033867, 60.048882 ], [ 117.281097, 60.024994 ], [ 117.205551, 59.95166 ], [ 117.123596, 59.965271 ], [ 117.057213, 59.908882 ], [ 117.23082, 59.810822 ], [ 117.191093, 59.646103 ], [ 117.099716, 59.60305 ], [ 117.209991, 59.56221 ], [ 117.236099, 59.527771 ], [ 117.331383, 59.494156 ], [ 117.452209, 59.500275 ], [ 117.598877, 59.470825 ], [ 117.758331, 59.540833 ], [ 117.818878, 59.449432 ], [ 117.906937, 59.443604 ], [ 117.973602, 59.522217 ], [ 118.057213, 59.583328 ], [ 118.149986, 59.609993 ], [ 118.2836, 59.61055 ], [ 118.350273, 59.588882 ], [ 118.390266, 59.517769 ], [ 118.551933, 59.480545 ], [ 118.578598, 59.452492 ], [ 118.764427, 59.4011 ], [ 118.755257, 59.333328 ], [ 118.833878, 59.304436 ], [ 118.803864, 59.249435 ], [ 118.728592, 59.233604 ], [ 118.686096, 59.185822 ], [ 118.702477, 59.065544 ], [ 118.736923, 59.023605 ], [ 118.847794, 59.014412 ], [ 118.853867, 58.943604 ], [ 118.792191, 58.939697 ], [ 118.793869, 58.877769 ], [ 118.896652, 58.80777 ], [ 118.874977, 58.722488 ], [ 118.793869, 58.580826 ], [ 118.981369, 58.543327 ], [ 119.0336, 58.502495 ], [ 119.133041, 58.477486 ], [ 119.126083, 58.408325 ], [ 119.069992, 58.368599 ], [ 119.120529, 58.29805 ], [ 119.108383, 58.222672 ], [ 119.161377, 58.146942 ], [ 119.138321, 58.012215 ], [ 119.106934, 57.935547 ], [ 119.077766, 57.78611 ], [ 119.045822, 57.726936 ], [ 119.166382, 57.700272 ], [ 119.148041, 57.63472 ], [ 119.185806, 57.50222 ], [ 119.319992, 57.610825 ], [ 119.422493, 57.614441 ], [ 119.496368, 57.591103 ], [ 119.421097, 57.516937 ], [ 119.400543, 57.431107 ], [ 119.448318, 57.361938 ], [ 119.561653, 57.328049 ], [ 119.612762, 57.219437 ], [ 119.683868, 57.175827 ], [ 119.616928, 57.089714 ], [ 119.614151, 57.033607 ], [ 119.700821, 56.984436 ], [ 119.774429, 56.983604 ], [ 119.886932, 56.866386 ], [ 119.713318, 56.811935 ], [ 119.664993, 56.768051 ], [ 119.785538, 56.699158 ], [ 119.868317, 56.695541 ], [ 119.877197, 56.658043 ], [ 119.804153, 56.608047 ], [ 119.927467, 56.546104 ], [ 119.974152, 56.486938 ], [ 120.099152, 56.484436 ], [ 120.208603, 56.452774 ], [ 120.262207, 56.461937 ], [ 120.276657, 56.390274 ], [ 120.412491, 56.351387 ], [ 120.395264, 56.310547 ], [ 120.538589, 56.287216 ], [ 120.529427, 56.229713 ], [ 120.342758, 56.220543 ], [ 120.29248, 56.193321 ], [ 120.201393, 56.191658 ], [ 120.164146, 56.15638 ], [ 120.054977, 56.135269 ], [ 120.063026, 56.068886 ], [ 120.1586, 55.999435 ], [ 120.128311, 55.911659 ], [ 120.181664, 55.86805 ], [ 120.260269, 55.921104 ], [ 120.337769, 55.907494 ], [ 120.360809, 55.871101 ], [ 120.487198, 55.874992 ], [ 120.508331, 55.918884 ], [ 120.633041, 55.928047 ], [ 120.667763, 55.949997 ], [ 120.80304, 55.974434 ], [ 120.856644, 56.006943 ], [ 120.991089, 56.02166 ], [ 121.083054, 55.99527 ], [ 121.205261, 56.020546 ], [ 121.263611, 55.965271 ], [ 121.27388, 55.866661 ], [ 121.355263, 55.81221 ], [ 121.300262, 55.732208 ], [ 121.359993, 55.592216 ], [ 121.335274, 55.509995 ], [ 121.420822, 55.48082 ], [ 121.460541, 55.503883 ], [ 121.556091, 55.505272 ], [ 121.634987, 55.534164 ], [ 121.684708, 55.598602 ], [ 121.766098, 55.61805 ], [ 121.897217, 55.608047 ], [ 121.93692, 55.504997 ], [ 121.98082, 55.48777 ], [ 121.946091, 55.20694 ], [ 121.948318, 54.994156 ], [ 121.777206, 54.881378 ], [ 121.665268, 54.821938 ], [ 121.651657, 54.760551 ], [ 121.68692, 54.720543 ], [ 121.739433, 54.759995 ], [ 121.90387, 54.798882 ], [ 121.925537, 54.70916 ], [ 121.879433, 54.657211 ], [ 121.940811, 54.616936 ], [ 121.922211, 54.572495 ], [ 122.013321, 54.508888 ], [ 122.13472, 54.466385 ], [ 122.124687, 54.407211 ], [ 121.896103, 54.369438 ], [ 121.876083, 54.419441 ], [ 121.812187, 54.438881 ], [ 121.730553, 54.426384 ], [ 121.669983, 54.369987 ], [ 121.754173, 54.282211 ], [ 121.729156, 54.222763 ], [ 121.756653, 54.141106 ], [ 121.66832, 54.134163 ], [ 121.630539, 54.084991 ], [ 121.678864, 53.998329 ], [ 121.824158, 53.932213 ], [ 121.930542, 53.821106 ], [ 121.9272, 53.716934 ], [ 121.974426, 53.702217 ], [ 121.943863, 53.604713 ], [ 122.021103, 53.523605 ], [ 122.025726, 53.420399 ], [ 122.076057, 53.421139 ], [ 122.132057, 53.465416 ], [ 122.214638, 53.46125 ], [ 122.305389, 53.495918 ], [ 122.442108, 53.441833 ], [ 122.642525, 53.462612 ], [ 122.833557, 53.452915 ], [ 123.049698, 53.51125 ], [ 123.150307, 53.508141 ], [ 123.257004, 53.56086 ], [ 123.442307, 53.530304 ], [ 123.521805, 53.553165 ], [ 123.718529, 53.49736 ], [ 123.856613, 53.485474 ], [ 124.062531, 53.391724 ], [ 124.114998, 53.343693 ], [ 124.220886, 53.368111 ], [ 124.224808, 53.367695 ], [ 124.319641, 53.318359 ], [ 124.375504, 53.246193 ], [ 124.530334, 53.194889 ], [ 124.663025, 53.199196 ], [ 124.748337, 53.138638 ], [ 124.833054, 53.132694 ], [ 124.981972, 53.19286 ], [ 125.188225, 53.191582 ], [ 125.482056, 53.090305 ], [ 125.508362, 53.046417 ], [ 125.579666, 53.080723 ], [ 125.669197, 53.007473 ], [ 125.736359, 52.984501 ], [ 125.722389, 52.934113 ], [ 125.662666, 52.915943 ], [ 125.672638, 52.856918 ], [ 125.774529, 52.89489 ], [ 125.849113, 52.860168 ], [ 125.967697, 52.760834 ], [ 126.058861, 52.794693 ], [ 126.049751, 52.668335 ], [ 125.970413, 52.656776 ], [ 126.005722, 52.580971 ], [ 126.069832, 52.60014 ], [ 126.183914, 52.541695 ], [ 126.202003, 52.462387 ], [ 126.258469, 52.468918 ], [ 126.343697, 52.395943 ], [ 126.339195, 52.299362 ], [ 126.302666, 52.223278 ], [ 126.333054, 52.188446 ], [ 126.435524, 52.175777 ], [ 126.549973, 52.130165 ], [ 126.506302, 52.029026 ], [ 126.452637, 52.028252 ], [ 126.469193, 51.935307 ], [ 126.680252, 51.72261 ], [ 126.713364, 51.720695 ], [ 126.734612, 51.632805 ], [ 126.694, 51.575668 ], [ 126.832779, 51.526554 ], [ 126.783836, 51.440361 ], [ 126.886833, 51.403362 ], [ 126.895973, 51.33503 ], [ 126.818611, 51.322193 ], [ 126.81942, 51.282112 ], [ 126.902885, 51.243637 ], [ 126.892113, 51.319473 ], [ 126.979858, 51.307777 ], [ 126.897919, 51.188362 ], [ 126.922859, 51.057999 ], [ 127.031723, 50.971695 ], [ 127.111809, 50.933861 ], [ 127.232803, 50.776943 ], [ 127.284363, 50.756973 ], [ 127.279892, 50.687027 ], [ 127.35936, 50.583279 ], [ 127.287636, 50.468082 ], [ 127.361053, 50.403946 ], [ 127.328667, 50.337334 ], [ 127.368805, 50.293167 ], [ 127.571472, 50.242748 ], [ 127.59433, 50.172916 ], [ 127.501335, 50.061028 ], [ 127.492722, 49.975639 ], [ 127.536247, 49.925861 ], [ 127.515137, 49.834641 ], [ 127.578003, 49.783916 ], [ 127.649719, 49.777779 ], [ 127.684914, 49.673306 ], [ 127.802414, 49.591251 ], [ 127.904831, 49.577583 ], [ 127.942749, 49.613083 ], [ 128.065918, 49.542252 ], [ 128.222977, 49.524582 ], [ 128.260895, 49.499943 ], [ 128.392029, 49.58889 ], [ 128.535477, 49.601833 ], [ 128.708252, 49.563721 ], [ 128.77298, 49.470612 ], [ 128.880554, 49.480499 ], [ 128.995163, 49.4505 ], [ 129.048187, 49.372166 ], [ 129.118134, 49.348721 ], [ 129.205811, 49.398945 ], [ 129.317886, 49.354362 ], [ 129.368744, 49.367085 ], [ 129.384048, 49.431473 ], [ 129.520966, 49.411888 ], [ 129.545395, 49.299721 ], [ 129.596222, 49.275749 ], [ 129.667755, 49.290195 ], [ 129.743835, 49.249111 ], [ 129.779556, 49.176418 ], [ 129.841995, 49.119778 ], [ 129.912552, 49.097111 ], [ 129.906418, 49.054001 ], [ 130.257477, 48.861832 ], [ 130.443253, 48.900307 ], [ 130.516022, 48.852612 ], [ 130.626358, 48.877632 ], [ 130.636673, 48.814251 ], [ 130.525421, 48.638527 ], [ 130.589478, 48.591915 ], [ 130.619888, 48.486084 ], [ 130.740494, 48.504417 ], [ 130.728867, 48.431526 ], [ 130.765884, 48.355 ], [ 130.825531, 48.300083 ], [ 130.751007, 48.223694 ], [ 130.750336, 48.189194 ], [ 130.652054, 48.109333 ], [ 130.684616, 48.039165 ], [ 130.863937, 47.93211 ], [ 130.952164, 47.818501 ], [ 130.954193, 47.720276 ], [ 131.002808, 47.690166 ], [ 131.095642, 47.681332 ], [ 131.25322, 47.733749 ], [ 131.501007, 47.727749 ], [ 131.579559, 47.660641 ], [ 131.644089, 47.66761 ], [ 131.682449, 47.706165 ], [ 131.803726, 47.669693 ], [ 131.948364, 47.665195 ], [ 131.999527, 47.705387 ], [ 132.088257, 47.696888 ], [ 132.245087, 47.705166 ], [ 132.317978, 47.751583 ], [ 132.37558, 47.753887 ], [ 132.504837, 47.71125 ], [ 132.595718, 47.743137 ], [ 132.599976, 47.802971 ], [ 132.666199, 47.885056 ], [ 132.691467, 47.953609 ], [ 132.786026, 47.927166 ], [ 132.876587, 48.0 ], [ 133.007919, 48.018196 ], [ 133.031281, 48.056446 ], [ 133.160309, 48.105694 ], [ 133.288773, 48.08839 ], [ 133.354996, 48.103748 ], [ 133.46817, 48.067612 ], [ 133.554749, 48.117138 ], [ 133.800446, 48.19978 ], [ 133.870087, 48.186501 ], [ 133.895966, 48.261391 ], [ 134.004715, 48.276554 ], [ 134.057693, 48.335388 ], [ 134.123337, 48.334972 ], [ 134.261688, 48.37075 ], [ 134.389282, 48.385693 ], [ 134.483246, 48.351776 ], [ 134.575424, 48.363224 ], [ 134.668579, 48.228889 ], [ 134.671082, 48.164249 ], [ 134.550552, 48.024387 ], [ 134.581085, 47.917889 ], [ 134.663971, 47.879307 ], [ 134.675522, 47.822613 ], [ 134.771561, 47.753445 ], [ 134.753281, 47.678638 ], [ 134.677979, 47.630695 ], [ 134.66983, 47.583832 ], [ 134.49353, 47.443806 ], [ 134.334061, 47.436359 ], [ 134.186996, 47.330944 ], [ 134.149078, 47.259529 ], [ 134.22261, 47.180695 ], [ 134.221451, 47.11861 ], [ 134.134583, 47.087833 ], [ 134.020752, 46.822277 ], [ 134.049225, 46.774055 ], [ 134.014725, 46.654362 ], [ 133.912994, 46.581444 ], [ 133.858887, 46.490749 ], [ 133.869949, 46.44389 ], [ 133.942108, 46.393391 ], [ 133.878525, 46.355473 ], [ 133.908493, 46.271584 ], [ 133.849396, 46.201084 ], [ 133.700104, 46.157806 ], [ 133.734451, 46.047359 ], [ 133.656891, 45.937695 ], [ 133.570892, 45.868111 ], [ 133.521088, 45.892277 ], [ 133.463882, 45.828972 ], [ 133.443695, 45.695972 ], [ 133.476105, 45.654415 ], [ 133.342117, 45.547943 ], [ 133.31778, 45.493168 ], [ 133.215134, 45.509167 ], [ 133.129639, 45.411724 ], [ 133.138275, 45.364223 ], [ 133.093857, 45.287582 ], [ 133.135559, 45.12711 ], [ 133.02858, 45.052834 ], [ 132.942001, 45.013363 ], [ 132.859695, 45.053944 ], [ 131.999863, 45.248917 ], [ 131.932526, 45.279888 ], [ 131.909134, 45.330055 ], [ 131.826782, 45.308723 ], [ 131.764496, 45.209583 ], [ 131.678192, 45.216946 ], [ 131.646469, 45.155972 ], [ 131.686752, 45.114193 ], [ 131.469864, 44.959473 ], [ 131.344254, 44.981888 ], [ 131.27095, 44.922359 ], [ 131.204865, 44.913082 ], [ 131.137939, 44.937054 ], [ 131.083939, 44.889751 ], [ 130.954224, 44.854168 ], [ 130.962997, 44.817612 ], [ 131.066803, 44.741638 ], [ 131.102661, 44.691555 ], [ 131.293106, 44.079693 ], [ 131.250473, 44.018639 ], [ 131.205383, 43.773361 ], [ 131.2285, 43.59861 ], [ 131.200577, 43.518471 ], [ 131.300888, 43.455917 ], [ 131.305756, 43.392723 ], [ 131.265884, 43.363804 ], [ 131.259048, 43.288387 ], [ 131.189896, 43.20089 ], [ 131.20433, 43.143196 ], [ 131.115524, 43.063862 ], [ 131.096588, 43.020416 ], [ 131.126587, 42.930527 ], [ 131.010162, 42.916668 ], [ 131.0, 42.85289 ], [ 130.789169, 42.864334 ], [ 130.771332, 42.829639 ], [ 130.684326, 42.843861 ], [ 130.544327, 42.807693 ], [ 130.405136, 42.722305 ], [ 130.459671, 42.679474 ], [ 130.530579, 42.697556 ], [ 130.623032, 42.622665 ], [ 130.600494, 42.549084 ], [ 130.561218, 42.535446 ], [ 130.61261, 42.429436 ], [ 130.572144, 42.433475 ], [ 130.511353, 42.58123 ], [ 130.441101, 42.548157 ], [ 130.355499, 42.633751 ], [ 130.254379, 42.706047 ], [ 130.227386, 42.787758 ], [ 130.255371, 42.906986 ], [ 130.141876, 42.90292 ], [ 130.118729, 42.98716 ], [ 130.060303, 42.968071 ], [ 129.879257, 42.991837 ], [ 129.84938, 42.953259 ], [ 129.809235, 42.790848 ], [ 129.76236, 42.727535 ], [ 129.771088, 42.615578 ], [ 129.736145, 42.57283 ], [ 129.742783, 42.465633 ], [ 129.697296, 42.425964 ], [ 129.522354, 42.391396 ], [ 129.451706, 42.43737 ], [ 129.305328, 42.4193 ], [ 129.244446, 42.379066 ], [ 129.256363, 42.328979 ], [ 129.17659, 42.259029 ], [ 129.207916, 42.212318 ], [ 129.113937, 42.138912 ], [ 129.081024, 42.142479 ], [ 128.90773, 42.009056 ], [ 128.745789, 42.050262 ], [ 128.675659, 42.012344 ], [ 128.636261, 42.035645 ], [ 128.562347, 41.997597 ], [ 128.489258, 41.99736 ], [ 128.425659, 42.031723 ], [ 128.261826, 42.035316 ], [ 128.071136, 41.981953 ], [ 128.09848, 41.89703 ], [ 128.107697, 41.789333 ], [ 128.201675, 41.685024 ], [ 128.254013, 41.669182 ], [ 128.31131, 41.587612 ], [ 128.200348, 41.408081 ], [ 128.15036, 41.381813 ], [ 128.039001, 41.389145 ], [ 127.96582, 41.435398 ], [ 127.834328, 41.419209 ], [ 127.551987, 41.433983 ], [ 127.497307, 41.474804 ], [ 127.345238, 41.460449 ], [ 127.160431, 41.539845 ], [ 127.116287, 41.623199 ], [ 127.030899, 41.672707 ], [ 127.048576, 41.739723 ], [ 126.932487, 41.808651 ], [ 126.769623, 41.715752 ], [ 126.725227, 41.706844 ], [ 126.586212, 41.6147 ], [ 126.581467, 41.548485 ], [ 126.503319, 41.435841 ], [ 126.486427, 41.371231 ], [ 126.430344, 41.350136 ], [ 126.318977, 41.229786 ], [ 126.2771, 41.156357 ], [ 126.168083, 41.093102 ], [ 126.04892, 40.961819 ], [ 126.011673, 40.896267 ], [ 125.932159, 40.87648 ], [ 125.868729, 40.904045 ], [ 125.805962, 40.86187 ], [ 125.729713, 40.869514 ], [ 125.723663, 40.870331 ], [ 125.635246, 40.810547 ], [ 125.675453, 40.761406 ], [ 125.549103, 40.76136 ], [ 125.481468, 40.720909 ], [ 125.418671, 40.636124 ], [ 125.268257, 40.646332 ], [ 125.250793, 40.611893 ], [ 125.173927, 40.599434 ], [ 125.022789, 40.53347 ], [ 125.035728, 40.48737 ], [ 124.937218, 40.452698 ], [ 124.890533, 40.475712 ], [ 124.856216, 40.426933 ], [ 124.752907, 40.382431 ], [ 124.712753, 40.316158 ], [ 124.61438, 40.285976 ], [ 124.520767, 40.228188 ], [ 124.483849, 40.17535 ], [ 124.404984, 40.135014 ], [ 124.335587, 40.061382 ], [ 124.364693, 40.011864 ], [ 124.279114, 39.928471 ], [ 124.233475, 39.920029 ], [ 124.230019, 39.917778 ], [ 124.228317, 39.915436 ], [ 124.225311, 39.91151 ], [ 124.223106, 39.908108 ], [ 124.221863, 39.905304 ], [ 124.220398, 39.900627 ], [ 124.219139, 39.897224 ], [ 124.217758, 39.894459 ], [ 124.216217, 39.891499 ], [ 124.214668, 39.887939 ], [ 124.212776, 39.88525 ], [ 124.211945, 39.87986 ], [ 124.20372, 39.86311 ], [ 124.19722, 39.857971 ], [ 124.153305, 39.82925 ], [ 124.132185, 39.699269 ], [ 124.158606, 26.456676 ], [ 122.6, 24.763042 ], [ 122.6, 23.0 ], [ 127.5, 23.0 ], [ 127.5, 3.797013 ], [ 123.881809, -1.727936 ], [ 125.179370955087364, -8.083569814699079 ], [ 125.209097, -8.229172 ], [ 125.256156, -8.459677 ], [ 125.197419, -8.49661 ], [ 124.037697, -9.225813 ], [ 124.069809, -9.385056 ], [ 124.118797, -9.432285 ], [ 124.249397, -9.404364 ], [ 124.293404, -9.463627 ], [ 124.340401, -9.46166 ], [ 124.449303, -9.282654 ], [ 124.463577, -9.178817 ], [ 124.481636, -9.183722 ], [ 124.494698, -9.184 ], [ 124.515251, -9.186944 ], [ 124.525169, -9.176778 ], [ 124.530586, -9.175222 ], [ 124.544556, -9.180139 ], [ 124.57692, -9.159333 ], [ 124.600136, -9.154944 ], [ 124.628914, -9.126917 ], [ 124.643501, -9.12675 ], [ 124.689392, -9.049778 ], [ 124.696556, -9.050138 ], [ 124.776558, -9.01525 ], [ 124.786972, -9.002528 ], [ 124.809776, -8.996278 ], [ 124.837723, -8.998861 ], [ 124.859108, -8.993028 ], [ 124.87117, -8.991167 ], [ 124.911415, -8.978306 ], [ 124.931503, -8.969778 ], [ 124.965302, -9.037271 ], [ 125.0933, -9.011669 ], [ 125.1399, -9.024118 ], [ 125.165901, -9.109211 ], [ 125.139999, -9.150401 ], [ 125.019699, -9.167853 ], [ 124.966301, -9.221311 ], [ 124.971001, -9.274391 ], [ 125.120392, -9.438945 ], [ 125.164205, -9.55827 ], [ 127.5, -10.926096 ], [ 127.5, -13.852976 ], [ 127.615608, -13.99844 ], [ 127.724225, -14.069543 ], [ 127.814937, -14.159074 ], [ 127.868322, -14.247587 ], [ 127.918083, -14.290017 ], [ 127.991795, -14.400453 ], [ 128.0489, -14.457727 ], [ 128.221347, -14.583032 ], [ 128.378907, -14.632265 ], [ 128.425042, -14.672714 ], [ 128.443157, -14.67017 ], [ 128.533402, -14.642695 ], [ 128.728072, -14.676161 ], [ 128.84175, -14.722609 ], [ 128.86827, -14.725139 ], [ 128.997077, -14.740563 ], [ 128.993177, -31.3 ], [ 128.989868, -31.693056 ], [ 128.988572471481348, -31.727365028974088 ], [ 128.985084, -31.819749 ] ] ] ] } }, +{ "type": "Feature", "properties": { "name": "-3" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -56.6, 46.3 ], [ -56.6, 47.3 ], [ -56.1, 47.3 ], [ -56.1, 46.3 ], [ -56.6, 46.3 ] ] ], [ [ [ -61.8, -50.5 ], [ -57.3, -50.5 ], [ -57.3, -52.7 ], [ -61.8, -52.7 ], [ -61.8, -50.5 ] ] ], [ [ [ -69.484388, -55.610873 ], [ -69.486927, -55.609331 ], [ -69.538821, -55.589151 ], [ -69.581952, -55.590739 ], [ -69.581965, -55.590737 ], [ -69.626061, -55.60329 ], [ -69.679553, -55.603726 ], [ -69.717968, -55.58876 ], [ -69.750179, -55.560284 ], [ -69.752176, -55.55691 ], [ -69.766843, -55.559378 ], [ -69.83295, -55.5439 ], [ -69.920021, -55.478367 ], [ -69.959117, -55.494344 ], [ -69.990691, -55.497419 ], [ -70.05076, -55.478797 ], [ -70.072425, -55.46503 ], [ -70.074392, -55.463412 ], [ -70.164431, -55.443005 ], [ -70.219654, -55.40127 ], [ -70.279677, -55.32018 ], [ -70.295005, -55.279535 ], [ -70.320103, -55.292046 ], [ -70.472286, -55.325086 ], [ -70.489694, -55.321641 ], [ -70.519892, -55.324991 ], [ -70.545445, -55.320412 ], [ -70.576114, -55.312538 ], [ -70.578948, -55.311157 ], [ -70.594398, -55.305639 ], [ -70.689863, -55.314461 ], [ -70.731214, -55.291956 ], [ -70.758764, -55.264733 ], [ -70.768989, -55.246954 ], [ -70.781213, -55.246291 ], [ -70.798698, -55.252227 ], [ -70.836296, -55.254119 ], [ -70.849281, -55.261524 ], [ -70.895827, -55.276743 ], [ -70.971342, -55.264082 ], [ -71.061361, -55.208668 ], [ -71.123842, -55.135013 ], [ -71.124422, -55.134929 ], [ -71.127289, -55.136063 ], [ -71.213303, -55.137833 ], [ -71.289017, -55.11921 ], [ -71.328029, -55.089134 ], [ -71.341406, -55.074438 ], [ -71.36037, -55.081554 ], [ -71.410684, -55.086378 ], [ -71.484102, -55.049535 ], [ -71.508712, -55.040805 ], [ -71.563693, -54.988636 ], [ -71.576122, -54.952313 ], [ -71.576444, -54.913924 ], [ -71.57631, -54.902168 ], [ -71.607356, -54.896531 ], [ -71.67282, -54.869664 ], [ -71.692903, -54.888234 ], [ -71.77115, -54.906855 ], [ -71.857456, -54.887759 ], [ -71.904008, -54.865495 ], [ -71.919597, -54.869606 ], [ -71.946481, -54.871166 ], [ -72.004793, -54.869379 ], [ -72.037473, -54.85664 ], [ -72.085082, -54.840609 ], [ -72.111443, -54.820849 ], [ -72.133421, -54.791156 ], [ -72.136536, -54.783185 ], [ -72.14747, -54.775774 ], [ -72.15482, -54.772736 ], [ -72.183073, -54.751284 ], [ -72.215245, -54.688925 ], [ -72.21671, -54.680857 ], [ -72.217913, -54.64623 ], [ -72.214289, -54.632325 ], [ -72.217037, -54.592648 ], [ -72.216013, -54.588628 ], [ -72.227747, -54.581156 ], [ -72.325415, -54.589346 ], [ -72.359694, -54.578048 ], [ -72.394305, -54.576987 ], [ -72.433548, -54.565922 ], [ -72.438916, -54.56434 ], [ -72.474485, -54.554215 ], [ -72.479223, -54.551299 ], [ -72.494972, -54.549084 ], [ -72.527583, -54.534885 ], [ -72.536953, -54.527838 ], [ -72.593765, -54.494965 ], [ -72.615224, -54.462524 ], [ -72.682429, -54.4464 ], [ -72.699666, -54.435335 ], [ -72.71115, -54.431489 ], [ -72.754486, -54.412427 ], [ -72.778876, -54.403061 ], [ -72.856911, -54.384829 ], [ -72.897952, -54.336754 ], [ -72.938283, -54.346847 ], [ -72.994194, -54.345672 ], [ -73.025672, -54.340801 ], [ -73.095379, -54.289219 ], [ -73.134058, -54.276136 ], [ -73.142768, -54.275727 ], [ -73.180317, -54.265206 ], [ -73.236194, -54.264729 ], [ -73.28456, -54.27614 ], [ -73.372905, -54.248172 ], [ -73.39905, -54.217632 ], [ -73.450188, -54.195314 ], [ -73.476011, -54.194722 ], [ -73.578271, -54.131039 ], [ -73.592804, -54.088656 ], [ -73.593358, -54.053323 ], [ -73.583596, -54.01936 ], [ -73.517731, -53.957169 ], [ -73.515062, -53.915578 ], [ -73.519117, -53.878464 ], [ -73.517419, -53.86598 ], [ -73.534051, -53.869514 ], [ -73.659591, -53.861979 ], [ -73.69935, -53.835243 ], [ -73.773278, -53.822738 ], [ -73.901855, -53.715152 ], [ -73.934144, -53.695667 ], [ -73.960299, -53.670466 ], [ -73.97584, -53.655126 ], [ -74.036853, -53.607656 ], [ -74.054497, -53.506648 ], [ -74.036497, -53.466822 ], [ -74.095704, -53.437398 ], [ -74.149965, -53.448362 ], [ -74.224802, -53.457484 ], [ -74.28318, -53.433766 ], [ -74.300882, -53.42572 ], [ -74.315423, -53.422365 ], [ -74.378561, -53.384493 ], [ -74.397919, -53.363171 ], [ -74.421626, -53.290836 ], [ -74.421611, -53.288311 ], [ -74.434225, -53.25822 ], [ -74.446937, -53.234152 ], [ -74.453207, -53.225525 ], [ -74.461473, -53.208792 ], [ -74.465523, -53.204271 ], [ -74.481862, -53.162872 ], [ -74.567078, -53.102729 ], [ -74.607405, -53.073045 ], [ -74.610893, -53.070295 ], [ -74.637322, -53.066788 ], [ -74.727779, -52.9975 ], [ -74.739062, -52.959771 ], [ -74.738617, -52.948373 ], [ -74.752515, -52.937225 ], [ -74.755391, -52.935478 ], [ -74.777632, -52.916393 ], [ -74.806182, -52.895739 ], [ -74.826672, -52.868734 ], [ -74.843366, -52.849086 ], [ -74.869315, -52.784747 ], [ -74.866869, -52.741487 ], [ -74.86337, -52.722007 ], [ -74.84467, -52.679577 ], [ -74.790454, -52.63149 ], [ -74.725479, -52.608246 ], [ -74.69818, -52.605324 ], [ -74.711007, -52.595628 ], [ -74.75762, -52.574858 ], [ -74.803926, -52.515693 ], [ -74.811278, -52.467384 ], [ -74.815872, -52.464586 ], [ -74.849037, -52.462601 ], [ -74.895664, -52.439785 ], [ -74.906053, -52.430743 ], [ -74.963294, -52.399707 ], [ -74.985603, -52.391831 ], [ -75.044409, -52.340007 ], [ -75.055114, -52.241234 ], [ -75.100363, -52.220521 ], [ -75.151714, -52.117303 ], [ -75.159887, -52.085633 ], [ -75.161046, -52.08425 ], [ -75.174971, -52.065497 ], [ -75.194679, -52.019576 ], [ -75.219992, -51.983788 ], [ -75.238931, -51.938988 ], [ -75.245972, -51.778759 ], [ -75.232919, -51.754746 ], [ -75.270376, -51.768212 ], [ -75.352573, -51.756132 ], [ -75.390407, -51.724091 ], [ -75.425634, -51.674091 ], [ -75.449254, -51.563547 ], [ -75.433251, -51.513945 ], [ -75.430393, -51.504791 ], [ -75.390746, -51.453269 ], [ -75.355705, -51.434481 ], [ -75.340562, -51.386645 ], [ -75.347889, -51.342697 ], [ -75.32529, -51.277873 ], [ -75.292885, -51.234366 ], [ -75.28946, -51.230793 ], [ -75.263334, -51.205695 ], [ -75.220627, -51.072411 ], [ -75.19304, -51.048172 ], [ -75.192457, -50.955742 ], [ -75.151538, -50.901451 ], [ -75.145103, -50.895477 ], [ -75.155511, -50.879466 ], [ -75.174652, -50.878683 ], [ -75.189778, -50.873748 ], [ -75.237704, -50.907521 ], [ -75.250277, -50.912985 ], [ -75.262384, -50.914168 ], [ -75.27846, -50.921184 ], [ -75.314838, -50.926797 ], [ -75.321171, -50.927731 ], [ -75.395373, -50.914667 ], [ -75.474248, -50.898659 ], [ -75.503781, -50.884326 ], [ -75.544052, -50.852109 ], [ -75.573956, -50.79277 ], [ -75.574704, -50.788803 ], [ -75.61223, -50.755931 ], [ -75.648908, -50.684799 ], [ -75.64811, -50.643016 ], [ -75.593616, -50.562626 ], [ -75.592366, -50.557589 ], [ -75.600914, -50.520699 ], [ -75.598225, -50.485696 ], [ -75.598229, -50.459291 ], [ -75.597947, -50.455629 ], [ -75.5991, -50.427417 ], [ -75.599192, -50.42511 ], [ -75.599309, -50.421859 ], [ -75.586472, -50.356847 ], [ -75.581504, -50.334687 ], [ -75.583774, -50.320519 ], [ -75.58369, -50.313851 ], [ -75.576788, -50.276777 ], [ -75.55819, -50.212093 ], [ -75.535477, -50.185766 ], [ -75.529957, -50.174446 ], [ -75.528112, -50.170369 ], [ -75.519335, -50.146995 ], [ -75.504128, -50.1098 ], [ -75.508395, -50.091772 ], [ -75.507877, -50.085496 ], [ -75.508153, -50.082493 ], [ -75.517207, -50.044798 ], [ -75.514276, -50.010469 ], [ -75.506636, -49.987416 ], [ -75.497673, -49.973201 ], [ -75.487884, -49.957677 ], [ -75.511192, -49.96671 ], [ -75.598714, -49.968127 ], [ -75.650426, -49.936911 ], [ -75.68732, -49.857642 ], [ -75.689754, -49.850161 ], [ -75.705052, -49.810077 ], [ -75.705265, -49.767974 ], [ -75.707096, -49.721177 ], [ -75.718333, -49.685588 ], [ -75.705011, -49.606428 ], [ -75.663258, -49.564753 ], [ -75.681746, -49.522316 ], [ -75.689803, -49.4946 ], [ -75.690789, -49.475635 ], [ -75.697417, -49.398137 ], [ -75.673022, -49.352646 ], [ -75.704388, -49.35127 ], [ -75.755489, -49.332034 ], [ -75.786286, -49.306539 ], [ -75.815326, -49.233238 ], [ -75.815464, -49.230006 ], [ -75.794066, -49.156362 ], [ -75.786901, -49.145219 ], [ -75.787743, -49.144706 ], [ -75.790073, -49.142021 ], [ -75.802127, -49.129335 ], [ -75.811989, -49.116768 ], [ -75.830111, -49.045951 ], [ -75.808522, -48.981338 ], [ -75.786133, -48.957178 ], [ -75.771947, -48.943469 ], [ -75.771649, -48.943244 ], [ -75.775866, -48.886338 ], [ -75.775073, -48.881803 ], [ -75.759089, -48.842374 ], [ -75.76054, -48.837877 ], [ -75.76312, -48.829551 ], [ -75.769709, -48.780292 ], [ -75.759233, -48.730001 ], [ -75.765216, -48.700426 ], [ -75.760736, -48.667424 ], [ -75.785844, -48.60087 ], [ -75.785237, -48.492501 ], [ -75.778578, -48.453108 ], [ -75.739161, -48.374452 ], [ -75.739108, -48.373902 ], [ -75.675354, -48.237884 ], [ -75.689605, -48.204358 ], [ -75.693202, -48.17197 ], [ -75.706459, -48.139132 ], [ -75.700666, -48.066423 ], [ -75.689037, -48.041436 ], [ -75.6678, -48.011885 ], [ -75.651471, -47.992418 ], [ -75.606977, -47.937278 ], [ -75.575994, -47.922354 ], [ -75.542595, -47.915557 ], [ -75.538342, -47.915815 ], [ -75.464778, -47.911928 ], [ -75.451777, -47.917012 ], [ -75.426815, -47.906039 ], [ -75.484904, -47.861858 ], [ -75.511249, -47.779193 ], [ -75.515504, -47.702076 ], [ -75.471884, -47.638338 ], [ -75.437151, -47.620293 ], [ -75.386282, -47.608455 ], [ -75.330878, -47.599754 ], [ -75.329941, -47.599763 ], [ -75.288618, -47.600065 ], [ -75.253805, -47.553583 ], [ -75.179034, -47.528557 ], [ -75.100326, -47.544608 ], [ -75.072389, -47.558516 ], [ -75.025473, -47.561286 ], [ -74.975404, -47.56905 ], [ -74.935473, -47.573036 ], [ -74.894921, -47.577715 ], [ -74.879893, -47.539349 ], [ -74.858427, -47.502304 ], [ -74.803151, -47.462507 ], [ -74.735119, -47.459205 ], [ -74.694403, -47.47719 ], [ -74.693453, -47.476355 ], [ -74.685755, -47.47103 ], [ -74.682846, -47.469337 ], [ -74.642813, -47.438138 ], [ -74.633332, -47.435607 ], [ -74.63267, -47.416719 ], [ -74.63372, -47.4116 ], [ -74.632113, -47.400855 ], [ -74.607484, -47.33342 ], [ -74.579356, -47.306329 ], [ -74.554459, -47.273669 ], [ -74.551587, -47.271203 ], [ -74.565968, -47.258519 ], [ -74.593465, -47.193234 ], [ -74.591607, -47.157354 ], [ -74.596567, -47.14826 ], [ -74.599957, -47.139073 ], [ -74.607679, -47.103988 ], [ -74.60727, -47.075789 ], [ -74.662815, -47.067474 ], [ -74.698175, -47.043573 ], [ -74.746325, -46.989117 ], [ -74.749936, -46.975401 ], [ -74.780825, -46.938751 ], [ -74.806089, -46.933404 ], [ -74.88273, -46.926683 ], [ -74.916704, -46.911764 ], [ -74.957675, -46.883547 ], [ -74.986783, -46.879929 ], [ -75.024949, -46.8721 ], [ -75.072299, -46.848973 ], [ -75.144433, -46.888077 ], [ -75.155689, -46.891527 ], [ -75.17804, -46.893151 ], [ -75.187957, -46.906569 ], [ -75.219881, -46.979504 ], [ -75.324522, -47.039725 ], [ -75.372411, -47.046558 ], [ -75.500925, -47.075229 ], [ -75.538108, -47.067006 ], [ -75.644483, -47.014342 ], [ -75.665693, -46.985063 ], [ -75.70819, -46.961583 ], [ -75.729344, -46.93656 ], [ -75.731007, -46.933936 ], [ -75.744868, -46.904236 ], [ -75.790923, -46.859728 ], [ -75.798852, -46.84194 ], [ -75.814105, -46.77736 ], [ -75.807614, -46.741767 ], [ -75.809534, -46.735222 ], [ -75.80664, -46.683674 ], [ -75.794629, -46.644738 ], [ -75.792039, -46.630586 ], [ -75.786372, -46.617294 ], [ -75.780344, -46.586872 ], [ -75.722765, -46.493447 ], [ -75.692655, -46.465384 ], [ -75.682683, -46.456792 ], [ -75.681477, -46.456386 ], [ -75.61725, -46.435474 ], [ -75.575148, -46.399469 ], [ -75.525248, -46.385446 ], [ -75.494426, -46.38134 ], [ -75.486141, -46.381464 ], [ -75.457336, -46.347899 ], [ -75.394079, -46.307562 ], [ -75.362356, -46.286769 ], [ -75.355718, -46.283943 ], [ -75.32929, -46.273996 ], [ -75.249442, -46.190855 ], [ -75.178666, -46.154982 ], [ -75.174424, -46.150438 ], [ -75.178919, -46.142229 ], [ -75.184214, -46.128389 ], [ -75.193938, -46.086833 ], [ -75.197144, -46.052459 ], [ -75.182621, -45.991518 ], [ -75.215419, -45.892358 ], [ -75.184904, -45.805985 ], [ -75.142311, -45.768338 ], [ -75.123028, -45.757976 ], [ -75.095626, -45.732128 ], [ -75.054347, -45.694253 ], [ -75.045126, -45.687773 ], [ -75.058891, -45.611453 ], [ -74.987312, -45.514323 ], [ -74.925978, -45.500173 ], [ -74.902123, -45.47075 ], [ -74.817172, -45.442526 ], [ -74.809799, -45.441904 ], [ -74.800479, -45.443008 ], [ -74.795797, -45.443563 ], [ -74.739035, -45.461758 ], [ -74.727516, -45.466994 ], [ -74.689655, -45.505062 ], [ -74.662428, -45.474058 ], [ -74.656902, -45.457026 ], [ -74.65304, -45.45073 ], [ -74.650837, -45.443159 ], [ -74.720018, -45.393482 ], [ -74.737856, -45.364154 ], [ -74.774688, -45.255301 ], [ -74.773477, -45.232457 ], [ -74.758051, -45.19204 ], [ -74.727925, -45.156826 ], [ -74.684024, -45.134881 ], [ -74.65262, -45.121163 ], [ -74.640734, -45.108749 ], [ -74.701491, -45.067563 ], [ -74.713551, -45.050047 ], [ -74.714973, -45.049099 ], [ -74.767739, -44.936531 ], [ -74.700934, -44.837892 ], [ -74.660369, -44.82657 ], [ -74.645962, -44.822745 ], [ -74.631633, -44.823388 ], [ -74.631676, -44.823303 ], [ -74.634129, -44.820715 ], [ -74.636199, -44.816101 ], [ -74.670024, -44.807882 ], [ -74.697837, -44.800949 ], [ -74.721769, -44.794785 ], [ -74.758343, -44.801009 ], [ -74.800705, -44.799449 ], [ -74.884861, -44.737079 ], [ -74.908827, -44.688991 ], [ -74.926672, -44.643392 ], [ -74.927447, -44.641048 ], [ -74.938295, -44.60637 ], [ -74.938267, -44.570035 ], [ -74.948026, -43.541699 ], [ -74.518421, -43.166453 ], [ -74.492273, -43.137196 ], [ -74.474204, -43.123635 ], [ -74.448012, -43.041976 ], [ -74.374266, -42.938478 ], [ -74.350227, -42.894602 ], [ -74.334503, -42.856012 ], [ -74.28764, -42.808866 ], [ -74.291394, -42.782216 ], [ -74.286176, -42.740619 ], [ -74.279411, -42.726429 ], [ -74.262438, -42.653979 ], [ -74.256091, -42.645353 ], [ -74.292453, -42.601773 ], [ -74.294681, -42.59913 ], [ -74.322846, -42.517628 ], [ -74.315023, -42.47441 ], [ -74.313564, -42.462115 ], [ -74.302571, -42.389839 ], [ -74.273653, -42.332561 ], [ -74.28806, -42.293318 ], [ -74.291832, -42.252754 ], [ -74.281816, -42.213266 ], [ -74.25639, -42.169206 ], [ -74.217827, -42.109575 ], [ -74.183174, -42.082577 ], [ -74.166692, -42.039245 ], [ -74.176694, -42.003663 ], [ -74.175445, -41.967368 ], [ -74.178326, -41.933023 ], [ -74.170025, -41.887522 ], [ -74.178422, -41.8693 ], [ -74.18345, -41.835899 ], [ -74.174393, -41.786147 ], [ -74.171954, -41.780514 ], [ -74.157861, -41.74254 ], [ -74.104491, -41.694557 ], [ -74.062658, -41.665991 ], [ -73.959445, -41.663598 ], [ -73.917761, -41.653198 ], [ -73.906975, -41.65402 ], [ -73.900002, -41.647507 ], [ -73.913166, -41.618664 ], [ -73.919313, -41.57234 ], [ -73.930375, -41.565488 ], [ -73.973976, -41.509944 ], [ -73.97879, -41.439495 ], [ -73.977681, -41.432115 ], [ -73.975699, -41.305973 ], [ -73.981371, -41.278785 ], [ -73.987642, -41.262437 ], [ -73.988622, -41.261092 ], [ -74.035947, -41.187737 ], [ -74.049451, -41.141145 ], [ -74.051155, -41.105852 ], [ -74.059732, -41.069248 ], [ -74.058904, -41.053184 ], [ -74.063829, -41.026199 ], [ -74.061717, -41.012529 ], [ -74.062082, -41.011589 ], [ -74.063599, -40.96595 ], [ -74.021313, -40.880369 ], [ -74.01012, -40.863772 ], [ -73.989168, -40.798546 ], [ -73.98309, -40.768644 ], [ -73.95394, -40.704295 ], [ -73.957028, -40.687679 ], [ -73.955286, -40.641832 ], [ -73.934749, -40.597559 ], [ -73.908713, -40.570778 ], [ -73.875039, -40.535109 ], [ -73.899172, -40.461288 ], [ -73.88782, -40.409218 ], [ -73.88561, -40.387156 ], [ -73.887715, -40.372818 ], [ -73.881481, -40.335794 ], [ -73.877331, -40.320274 ], [ -73.877339, -40.309459 ], [ -73.861793, -40.245944 ], [ -73.851935, -40.228572 ], [ -73.850291, -40.218131 ], [ -73.834478, -40.142874 ], [ -73.789221, -40.100604 ], [ -73.802822, -40.086716 ], [ -73.832793, -40.016911 ], [ -73.81484, -39.943095 ], [ -73.78286, -39.909522 ], [ -73.718729, -39.856608 ], [ -73.702992, -39.849052 ], [ -73.663608, -39.836334 ], [ -73.632255, -39.817459 ], [ -73.597141, -39.808951 ], [ -73.559717, -39.774937 ], [ -73.53397, -39.750923 ], [ -73.527423, -39.740334 ], [ -73.52351, -39.680947 ], [ -73.511654, -39.638748 ], [ -73.455673, -39.582873 ], [ -73.431453, -39.558127 ], [ -73.405939, -39.538918 ], [ -73.38336, -39.485999 ], [ -73.38516, -39.47115 ], [ -73.361154, -39.370285 ], [ -73.349037, -39.333935 ], [ -73.352384, -39.316717 ], [ -73.347783, -39.277344 ], [ -73.352356, -39.265127 ], [ -73.374354, -39.201114 ], [ -73.384891, -39.172057 ], [ -73.403229, -39.106604 ], [ -73.445111, -39.006863 ], [ -73.463868, -38.974001 ], [ -73.493508, -38.909311 ], [ -73.506783, -38.877767 ], [ -73.512207, -38.864626 ], [ -73.523674, -38.845301 ], [ -73.534932, -38.819757 ], [ -73.542259, -38.810527 ], [ -73.568341, -38.762682 ], [ -73.607909, -38.676008 ], [ -73.607399, -38.650443 ], [ -73.607602, -38.648954 ], [ -73.627522, -38.551318 ], [ -73.636045, -38.512959 ], [ -73.6362, -38.512587 ], [ -73.64007, -38.479585 ], [ -73.643831, -38.458748 ], [ -73.643759, -38.44916 ], [ -73.647873, -38.431403 ], [ -73.646701, -38.421908 ], [ -73.652132, -38.404831 ], [ -73.634613, -38.291075 ], [ -73.633145, -38.266398 ], [ -73.635129, -38.251714 ], [ -73.623831, -38.207368 ], [ -73.596975, -38.166163 ], [ -73.578847, -38.087294 ], [ -73.595417, -38.029297 ], [ -73.596819, -38.022076 ], [ -73.648718, -37.927931 ], [ -73.764192, -37.79145 ], [ -73.785596, -37.715865 ], [ -73.782048, -37.69845 ], [ -73.781113, -37.688655 ], [ -73.792326, -37.666865 ], [ -73.798611, -37.628073 ], [ -73.792824, -37.591641 ], [ -73.767617, -37.529967 ], [ -73.755038, -37.515914 ], [ -73.738528, -37.474882 ], [ -73.793909, -37.410985 ], [ -73.802498, -37.367272 ], [ -73.7913, -37.28377 ], [ -73.783312, -37.245863 ], [ -73.773922, -37.206089 ], [ -73.762867, -37.176732 ], [ -73.674843, -37.066276 ], [ -73.670298, -37.063775 ], [ -73.675704, -37.023344 ], [ -73.655719, -36.961852 ], [ -73.617456, -36.884347 ], [ -73.54064, -36.850858 ], [ -73.463488, -36.87032 ], [ -73.379111, -36.956838 ], [ -73.344152, -37.014538 ], [ -73.337078, -37.053156 ], [ -73.355955, -37.1208 ], [ -73.296121, -37.087905 ], [ -73.293934, -37.069231 ], [ -73.301542, -37.050222 ], [ -73.307212, -37.031151 ], [ -73.306949, -36.973713 ], [ -73.28278, -36.917882 ], [ -73.274109, -36.891653 ], [ -73.328885, -36.831872 ], [ -73.339139, -36.792353 ], [ -73.331862, -36.741122 ], [ -73.294417, -36.684225 ], [ -73.282319, -36.671618 ], [ -73.266101, -36.653847 ], [ -73.251686, -36.630909 ], [ -73.231089, -36.574354 ], [ -73.210431, -36.537299 ], [ -73.182142, -36.512082 ], [ -73.144233, -36.496128 ], [ -73.086346, -36.474374 ], [ -73.020774, -36.414236 ], [ -72.972883, -36.313254 ], [ -72.936135, -36.258245 ], [ -72.93494, -36.255539 ], [ -72.944092, -36.189015 ], [ -72.93149, -36.132529 ], [ -72.926254, -36.034678 ], [ -72.905412, -36.000197 ], [ -72.907922, -35.972831 ], [ -72.897939, -35.926253 ], [ -72.868609, -35.884968 ], [ -72.845431, -35.866314 ], [ -72.726513, -35.750659 ], [ -72.703458, -35.730927 ], [ -72.715633, -35.702587 ], [ -72.755904, -35.62408 ], [ -72.748275, -35.555857 ], [ -72.741169, -35.530257 ], [ -72.723629, -35.499816 ], [ -72.6968, -35.46486 ], [ -72.669674, -35.44465 ], [ -72.658769, -35.43863 ], [ -72.637875, -35.418268 ], [ -72.619076, -35.386358 ], [ -72.556321, -35.270631 ], [ -72.552155, -35.266983 ], [ -72.532787, -35.253336 ], [ -72.47588, -35.138128 ], [ -72.429399, -35.09995 ], [ -72.408657, -35.086558 ], [ -72.360866, -35.052998 ], [ -72.337346, -35.039588 ], [ -72.307463, -35.026777 ], [ -72.305087, -35.011572 ], [ -72.307323, -35.0 ], [ -81.5, -35.0 ], [ -81.5, -25.0 ], [ -70.613267, -25.0 ], [ -70.636857, -24.962356 ], [ -70.652285, -24.904006 ], [ -70.652415, -24.897673 ], [ -70.651747, -24.890235 ], [ -70.665312, -24.856163 ], [ -70.669457, -24.826874 ], [ -70.669747, -24.823168 ], [ -70.695813, -24.74793 ], [ -70.692578, -24.673647 ], [ -70.691435, -24.670596 ], [ -70.6834, -24.604486 ], [ -70.696191, -24.569949 ], [ -70.695653, -24.514573 ], [ -70.690937, -24.499729 ], [ -70.668015, -24.411313 ], [ -70.672426, -24.370799 ], [ -70.672075, -24.364867 ], [ -70.66926, -24.35329 ], [ -70.671395, -24.345794 ], [ -70.664517, -24.294196 ], [ -70.653781, -24.275591 ], [ -70.64769, -24.203605 ], [ -70.631442, -24.151441 ], [ -70.633063, -24.13427 ], [ -70.633208, -24.12773 ], [ -70.629327, -24.094688 ], [ -70.623805, -24.072098 ], [ -70.634691, -24.030939 ], [ -70.634875, -24.027781 ], [ -70.630682, -24.000187 ], [ -70.629961, -23.988342 ], [ -70.629493, -23.985255 ], [ -70.631906, -23.972655 ], [ -70.627683, -23.936423 ], [ -70.625654, -23.903883 ], [ -70.634002, -23.876773 ], [ -70.617943, -23.801527 ], [ -70.588061, -23.71514 ], [ -70.585711, -23.712378 ], [ -70.583934, -23.710589 ], [ -70.549483, -23.666024 ], [ -70.538478, -23.652649 ], [ -70.573056, -23.650253 ], [ -70.574706, -23.650181 ], [ -70.610231, -23.637733 ], [ -70.610916, -23.637731 ], [ -70.653263, -23.632901 ], [ -70.691251, -23.613573 ], [ -70.72621, -23.576506 ], [ -70.741906, -23.534461 ], [ -70.743279, -23.526422 ], [ -70.738778, -23.473192 ], [ -70.729552, -23.428075 ], [ -70.723234, -23.396477 ], [ -70.721812, -23.382371 ], [ -70.713887, -23.323196 ], [ -70.715543, -23.301663 ], [ -70.688215, -23.149254 ], [ -70.692413, -23.138528 ], [ -70.696345, -23.09942 ], [ -70.694476, -23.052241 ], [ -70.653594, -22.989731 ], [ -70.651931, -22.988367 ], [ -70.605753, -22.944574 ], [ -70.598326, -22.935829 ], [ -70.52287, -22.902068 ], [ -70.426855, -22.905265 ], [ -70.424774, -22.902947 ], [ -70.414908, -22.877256 ], [ -70.430744, -22.823912 ], [ -70.428734, -22.77412 ], [ -70.428971, -22.773247 ], [ -70.411021, -22.697268 ], [ -70.402224, -22.686759 ], [ -70.406133, -22.676393 ], [ -70.408133, -22.639886 ], [ -70.396988, -22.599656 ], [ -70.398289, -22.594248 ], [ -70.397409, -22.579157 ], [ -70.397751, -22.577909 ], [ -70.394671, -22.53708 ], [ -70.374699, -22.49196 ], [ -70.377078, -22.486659 ], [ -70.380583, -22.446944 ], [ -70.380293, -22.443276 ], [ -70.371546, -22.345652 ], [ -70.366112, -22.321547 ], [ -70.359373, -22.289356 ], [ -70.35972, -22.268014 ], [ -70.344271, -22.203424 ], [ -70.336842, -22.131184 ], [ -70.329076, -22.104779 ], [ -70.330073, -22.077458 ], [ -70.329287, -22.073336 ], [ -70.312467, -22.021474 ], [ -70.305552, -21.968013 ], [ -70.300952, -21.943313 ], [ -70.308539, -21.923241 ], [ -70.31012, -21.885034 ], [ -70.299601, -21.84827 ], [ -70.27805, -21.816681 ], [ -70.268823, -21.808659 ], [ -70.273084, -21.797115 ], [ -70.274725, -21.79021 ], [ -70.27748, -21.751595 ], [ -70.275491, -21.743896 ], [ -70.275835, -21.737849 ], [ -70.269354, -21.71159 ], [ -70.274293, -21.692727 ], [ -70.269057, -21.647172 ], [ -70.266495, -21.628426 ], [ -70.263394, -21.603235 ], [ -70.245821, -21.564894 ], [ -70.211864, -21.532056 ], [ -70.208156, -21.530153 ], [ -70.201734, -21.503196 ], [ -70.20271, -21.499218 ], [ -70.201415, -21.465829 ], [ -70.191117, -21.433349 ], [ -70.214364, -21.358898 ], [ -70.202659, -21.287063 ], [ -70.208551, -21.246802 ], [ -70.226789, -21.210381 ], [ -70.232257, -21.196293 ], [ -70.254777, -21.143496 ], [ -70.264149, -21.10853 ], [ -70.295262, -21.050279 ], [ -70.289692, -20.984395 ], [ -70.263222, -20.921999 ], [ -70.274035, -20.911199 ], [ -70.295292, -20.894098 ], [ -70.32773, -20.802778 ], [ -70.317496, -20.763723 ], [ -70.316218, -20.734863 ], [ -70.3184, -20.719342 ], [ -70.311487, -20.68233 ], [ -70.311925, -20.678872 ], [ -70.313851, -20.652797 ], [ -70.314779, -20.584468 ], [ -70.320566, -20.540608 ], [ -70.316847, -20.503067 ], [ -70.302374, -20.467422 ], [ -70.284913, -20.440445 ], [ -70.299331, -20.408118 ], [ -70.303544, -20.349413 ], [ -70.285947, -20.294725 ], [ -70.280163, -20.188213 ], [ -70.272027, -20.15861 ], [ -70.26666, -20.121401 ], [ -70.250715, -20.089042 ], [ -70.252995, -20.0784 ], [ -70.245207, -20.008013 ], [ -70.249117, -20.000498 ], [ -70.260351, -19.940406 ], [ -70.259352, -19.932189 ], [ -70.263789, -19.892276 ], [ -70.270466, -19.883064 ], [ -70.282376, -19.848375 ], [ -70.272253, -19.771792 ], [ -70.271354, -19.77054 ], [ -70.272029, -19.763628 ], [ -70.271855, -19.760204 ], [ -70.279723, -19.748135 ], [ -70.289556, -19.713809 ], [ -70.316581, -19.690223 ], [ -70.352955, -19.624011 ], [ -70.353634, -19.620324 ], [ -70.35466, -19.58345 ], [ -70.344437, -19.548007 ], [ -70.327976, -19.523391 ], [ -70.327065, -19.516189 ], [ -70.332178, -19.49898 ], [ -70.333477, -19.487595 ], [ -70.351154, -19.430328 ], [ -70.364648, -19.410987 ], [ -70.401488, -19.332389 ], [ -70.401683, -19.270528 ], [ -70.399159, -19.250227 ], [ -70.396757, -19.184081 ], [ -70.391742, -19.171365 ], [ -70.395655, -19.164377 ], [ -70.403659, -19.125055 ], [ -70.407679, -19.117294 ], [ -70.410275, -19.104772 ], [ -70.431107, -19.052266 ], [ -70.435106, -19.01039 ], [ -70.432349, -18.99882 ], [ -70.44157, -18.96374 ], [ -70.444711, -18.928768 ], [ -70.445518, -18.914983 ], [ -70.447291, -18.907029 ], [ -70.469463, -18.853067 ], [ -70.469357, -18.844085 ], [ -70.479226, -18.804926 ], [ -70.476248, -18.767357 ], [ -70.470116, -18.750614 ], [ -70.460912, -18.696891 ], [ -70.458981, -18.690681 ], [ -70.465433, -18.669709 ], [ -70.466231, -18.636931 ], [ -70.464881, -18.624998 ], [ -70.45858, -18.597806 ], [ -70.45758, -18.565639 ], [ -70.450467, -18.479481 ], [ -70.447682, -18.450119 ], [ -70.449353, -18.448188 ], [ -70.457849, -18.435834 ], [ -70.518284, -18.393644 ], [ -70.53013, -18.385107 ], [ -70.542751, -18.376899 ], [ -70.582397, -18.349626 ], [ -70.603343, -18.336601 ], [ -70.612258, -18.331945 ], [ -70.641379, -18.315255 ], [ -70.660123, -18.301999 ], [ -70.661977, -18.301169 ], [ -70.595955, -18.199251 ], [ -70.557053, -18.225275 ], [ -70.55027, -18.228975 ], [ -70.495941, -18.266405 ], [ -70.374191, -18.349728 ], [ -70.355125, -18.32762 ], [ -70.340485, -18.316393 ], [ -70.159409, -18.315836 ], [ -70.13665, -18.307026 ], [ -70.09716, -18.290216 ], [ -70.022491, -18.26799 ], [ -69.993889, -18.267984 ], [ -69.967789, -18.259893 ], [ -69.915024, -18.208796 ], [ -69.844391, -18.150139 ], [ -69.785194, -18.051785 ], [ -69.755455, -17.991808 ], [ -69.745201, -17.949694 ], [ -69.760178, -17.925591 ], [ -69.792397, -17.869772 ], [ -69.796562, -17.799433 ], [ -69.779915, -17.778137 ], [ -69.785141, -17.775152 ], [ -69.815636, -17.757608 ], [ -69.818878, -17.747467 ], [ -69.819786, -17.72127 ], [ -69.814072, -17.713476 ], [ -69.821335, -17.701181 ], [ -69.809151, -17.67156 ], [ -69.798996, -17.650354 ], [ -69.794884, -17.647888 ], [ -69.769554, -17.651014 ], [ -69.682777, -17.660521 ], [ -69.640366, -17.642509 ], [ -69.622948, -17.63035 ], [ -69.556435, -17.583485 ], [ -69.521797, -17.554321 ], [ -69.504128, -17.539856 ], [ -69.461487, -17.605848 ], [ -69.344681, -17.717327 ], [ -69.308182, -17.801001 ], [ -69.299141, -17.943911 ], [ -69.104187, -18.029619 ], [ -69.067223, -18.071812 ], [ -69.135544, -18.165943 ], [ -69.070061, -18.238306 ], [ -69.023674, -18.455172 ], [ -68.977989, -18.749912 ], [ -68.909378, -18.87579 ], [ -68.954407, -18.935547 ], [ -68.897957, -19.031897 ], [ -68.799461, -19.086332 ], [ -68.669914, -19.188759 ], [ -68.616211, -19.269604 ], [ -68.532524, -19.30011 ], [ -68.410347, -19.397928 ], [ -68.43145, -19.437071 ], [ -68.595604, -19.638296 ], [ -68.622047, -19.69668 ], [ -68.684624, -19.724897 ], [ -68.606827, -19.818111 ], [ -68.529846, -19.842819 ], [ -68.523972, -19.927412 ], [ -68.559662, -20.044783 ], [ -68.652557, -20.050724 ], [ -68.780464, -20.082048 ], [ -68.704674, -20.141741 ], [ -68.712875, -20.239777 ], [ -68.663246, -20.324041 ], [ -68.741539, -20.364286 ], [ -68.735451, -20.44245 ], [ -68.678207, -20.498291 ], [ -68.538551, -20.560022 ], [ -68.502602, -20.670551 ], [ -68.549171, -20.726265 ], [ -68.548363, -20.866165 ], [ -68.5047, -20.936312 ], [ -68.400589, -20.937944 ], [ -68.295502, -21.089737 ], [ -68.172417, -21.296675 ], [ -68.177132, -21.599545 ], [ -68.059875, -21.758326 ], [ -68.064438, -21.975716 ], [ -67.963882, -22.048464 ], [ -67.953484, -22.14629 ], [ -67.92083, -22.229277 ], [ -67.946129, -22.32144 ], [ -67.895714, -22.414806 ], [ -67.888641, -22.496523 ], [ -67.848099, -22.546459 ], [ -67.88298, -22.686295 ], [ -67.872421, -22.829714 ], [ -67.7939, -22.873558 ], [ -67.57222, -22.896133 ], [ -67.177742, -22.805611 ], [ -67.122169, -22.71084 ], [ -67.013504, -22.644667 ], [ -67.024536, -22.537531 ], [ -66.970222, -22.530806 ], [ -66.926369, -22.484844 ], [ -66.782875, -22.429701 ], [ -66.739349, -22.236582 ], [ -66.675148, -22.204031 ], [ -66.347893, -22.123537 ], [ -66.288277, -22.081659 ], [ -66.274422, -21.943729 ], [ -66.221611, -21.781277 ], [ -66.078705, -21.830694 ], [ -66.043137, -21.916096 ], [ -65.92617, -21.932043 ], [ -65.81237, -22.069746 ], [ -65.75531, -22.108543 ], [ -65.656761, -22.111191 ], [ -65.574562, -22.07744 ], [ -65.47123, -22.091839 ], [ -64.983742, -22.086403 ], [ -64.871742, -22.12039 ], [ -64.742165, -22.19471 ], [ -64.655251, -22.191767 ], [ -64.541176, -22.290604 ], [ -64.57119, -22.363108 ], [ -64.411743, -22.538935 ], [ -64.441811, -22.637613 ], [ -64.393219, -22.720087 ], [ -64.337959, -22.753046 ], [ -64.334953, -22.838812 ], [ -64.296295, -22.847158 ], [ -64.26577, -22.761272 ], [ -64.26799, -22.65069 ], [ -64.207451, -22.495255 ], [ -64.169571, -22.469728 ], [ -64.078308, -22.292671 ], [ -64.036491, -22.245047 ], [ -63.991222, -22.103397 ], [ -63.958149, -22.088572 ], [ -63.935253, -22.002724 ], [ -62.808064, -22.00444 ], [ -62.815125, -22.110928 ], [ -62.68742, -22.206707 ], [ -62.61776, -22.30274 ], [ -62.48587, -22.380816 ], [ -62.390091, -22.452646 ], [ -62.26609, -22.508268 ], [ -62.246983, -22.587626 ], [ -62.200916, -22.643961 ], [ -62.136288, -22.789499 ], [ -62.090275, -22.818949 ], [ -62.012165, -22.933062 ], [ -61.989819, -23.02355 ], [ -61.937656, -23.068697 ], [ -61.863735, -23.08939 ], [ -61.819813, -23.151896 ], [ -61.757999, -23.181223 ], [ -61.739323, -23.239704 ], [ -61.672638, -23.285799 ], [ -61.611473, -23.285118 ], [ -61.495605, -23.418417 ], [ -61.395866, -23.462955 ], [ -61.358479, -23.448719 ], [ -61.235249, -23.551317 ], [ -61.2001, -23.543812 ], [ -61.092274, -23.620857 ], [ -61.100117, -23.660902 ], [ -61.002472, -23.794147 ], [ -60.931942, -23.804802 ], [ -60.825005, -23.873764 ], [ -60.734867, -23.876431 ], [ -60.584038, -23.945009 ], [ -60.469322, -23.960855 ], [ -60.32008, -24.048523 ], [ -60.116695, -24.039494 ], [ -60.046623, -24.012131 ], [ -59.494984, -24.325083 ], [ -59.352993, -24.484718 ], [ -59.181454, -24.569651 ], [ -59.109066, -24.623266 ], [ -59.049267, -24.630917 ], [ -58.940216, -24.681837 ], [ -58.795845, -24.774811 ], [ -58.711945, -24.784903 ], [ -58.654743, -24.833561 ], [ -58.566032, -24.82617 ], [ -58.423958, -24.89085 ], [ -58.419704, -24.923058 ], [ -58.327259, -24.99917 ], [ -58.246483, -24.93379 ], [ -58.14843, -24.977417 ], [ -58.066578, -25.043455 ], [ -57.999268, -25.03863 ], [ -57.985916, -25.083776 ], [ -57.874336, -25.08222 ], [ -57.788227, -25.154484 ], [ -57.722721, -25.266859 ], [ -57.669575, -25.275646 ], [ -57.639709, -25.376892 ], [ -57.556614, -25.44768 ], [ -57.562531, -25.545593 ], [ -57.603168, -25.611706 ], [ -57.671101, -25.601357 ], [ -57.679382, -25.66235 ], [ -57.751072, -25.662785 ], [ -57.764854, -25.751343 ], [ -57.81535, -25.771088 ], [ -57.796757, -25.829599 ], [ -57.856541, -25.86091 ], [ -57.883339, -25.939693 ], [ -57.849354, -26.006014 ], [ -58.115852, -26.154106 ], [ -58.120441, -26.244438 ], [ -58.200439, -26.374983 ], [ -58.177402, -26.452932 ], [ -58.219624, -26.532639 ], [ -58.191021, -26.647156 ], [ -58.253117, -26.653145 ], [ -58.245926, -26.742037 ], [ -58.283581, -26.790993 ], [ -58.35466, -26.826445 ], [ -58.370426, -26.868376 ], [ -58.491913, -26.935892 ], [ -58.478283, -26.994698 ], [ -58.548298, -27.041265 ], [ -58.560226, -27.108776 ], [ -58.640804, -27.127163 ], [ -58.663143, -27.175026 ], [ -58.594391, -27.232431 ], [ -58.596546, -27.30121 ], [ -58.485607, -27.274845 ], [ -58.376415, -27.279015 ], [ -58.243351, -27.249126 ], [ -58.097252, -27.272621 ], [ -58.021065, -27.263735 ], [ -57.852055, -27.296431 ], [ -57.809803, -27.328304 ], [ -57.702507, -27.333624 ], [ -57.545567, -27.430344 ], [ -57.492741, -27.440533 ], [ -57.386642, -27.416693 ], [ -57.288254, -27.421616 ], [ -57.0, -27.510633 ], [ -56.913815, -27.574446 ], [ -56.833344, -27.601109 ], [ -56.737278, -27.559475 ], [ -56.703979, -27.462017 ], [ -56.598835, -27.447981 ], [ -56.519691, -27.506001 ], [ -56.487972, -27.575657 ], [ -56.425476, -27.606359 ], [ -56.364822, -27.598721 ], [ -56.339893, -27.52984 ], [ -56.28965, -27.488049 ], [ -56.282654, -27.408508 ], [ -56.143482, -27.312521 ], [ -56.059593, -27.304419 ], [ -55.996075, -27.340899 ], [ -55.877544, -27.36194 ], [ -55.828491, -27.43322 ], [ -55.725994, -27.439798 ], [ -55.675861, -27.381163 ], [ -55.595531, -27.337038 ], [ -55.580315, -27.251814 ], [ -55.617344, -27.209044 ], [ -55.540974, -27.108486 ], [ -55.456573, -27.102175 ], [ -55.431095, -27.008717 ], [ -55.371178, -26.968576 ], [ -55.273838, -26.946413 ], [ -55.201389, -26.972109 ], [ -55.14386, -26.957678 ], [ -55.135178, -26.866289 ], [ -55.060379, -26.804615 ], [ -54.961952, -26.790579 ], [ -54.938946, -26.693182 ], [ -54.893608, -26.666676 ], [ -54.814026, -26.673847 ], [ -54.790886, -26.638393 ], [ -54.795929, -26.529539 ], [ -54.700329, -26.440239 ], [ -54.697723, -26.385002 ], [ -54.64986, -26.317989 ], [ -54.680908, -26.276575 ], [ -54.631092, -26.231852 ], [ -54.665485, -26.178944 ], [ -54.645748, -26.075251 ], [ -54.675156, -25.985432 ], [ -54.623989, -25.926716 ], [ -54.590351, -25.838356 ], [ -54.656265, -25.702965 ], [ -54.593636, -25.668255 ], [ -54.616024, -25.457193 ], [ -54.496696, -25.280205 ], [ -54.437, -25.146608 ], [ -54.465706, -25.079165 ], [ -54.405254, -24.836107 ], [ -54.335812, -24.649237 ], [ -54.333027, -24.492779 ], [ -54.262371, -24.375605 ], [ -54.278988, -24.2889 ], [ -54.324097, -24.245342 ], [ -54.331337, -24.15107 ], [ -54.283779, -24.07127 ], [ -54.097229, -23.968613 ], [ -54.066116, -23.90028 ], [ -54.056946, -23.766113 ], [ -53.986671, -23.546947 ], [ -53.973618, -23.457779 ], [ -53.769173, -23.346947 ], [ -53.701668, -23.267223 ], [ -53.638062, -23.11417 ], [ -53.636948, -23.007504 ], [ -53.572174, -22.885265 ], [ -53.496674, -22.836945 ], [ -53.156845, -22.705822 ], [ -53.083893, -22.61639 ], [ -53.063614, -22.56028 ], [ -52.975281, -22.482224 ], [ -52.861389, -22.440556 ], [ -52.73278, -22.336391 ], [ -52.644173, -22.281391 ], [ -52.484169, -22.207779 ], [ -52.365562, -22.100281 ], [ -52.293335, -21.965557 ], [ -52.171669, -21.853336 ], [ -52.156113, -21.792503 ], [ -52.048615, -21.708889 ], [ -52.037224, -21.646389 ], [ -52.093895, -21.568336 ], [ -52.059448, -21.507504 ], [ -51.998894, -21.511391 ], [ -51.932503, -21.460835 ], [ -51.849724, -21.294724 ], [ -51.872505, -21.153893 ], [ -51.803894, -21.101391 ], [ -51.726952, -20.978889 ], [ -51.624725, -20.868057 ], [ -51.617226, -20.697502 ], [ -51.580833, -20.600281 ], [ -51.507965, -20.575645 ], [ -51.343895, -20.382504 ], [ -51.260559, -20.315281 ], [ -51.179169, -20.308056 ], [ -51.03389, -20.233334 ], [ -51.007225, -20.103889 ], [ -50.98584, -19.907501 ], [ -51.023613, -19.722504 ], [ -50.992783, -19.649445 ], [ -50.943893, -19.423615 ], [ -51.009171, -19.386391 ], [ -51.105003, -19.295559 ], [ -51.315559, -19.253334 ], [ -51.402779, -19.168613 ], [ -51.541672, -19.134724 ], [ -51.632225, -19.133335 ], [ -51.851952, -19.048889 ], [ -51.936668, -18.976112 ], [ -52.05584, -18.949722 ], [ -52.129723, -18.8675 ], [ -52.25695, -18.812778 ], [ -52.349167, -18.816669 ], [ -52.431396, -18.739723 ], [ -52.497505, -18.70417 ], [ -52.636673, -18.723057 ], [ -52.755005, -18.711113 ], [ -52.890007, -18.678059 ], [ -52.845284, -18.535278 ], [ -52.763336, -18.432224 ], [ -52.772224, -18.395836 ], [ -52.895004, -18.346947 ], [ -52.978058, -18.386391 ], [ -53.043892, -18.351112 ], [ -53.05806, -18.283058 ], [ -53.039452, -18.075001 ], [ -53.056396, -18.001114 ], [ -53.113892, -17.888889 ], [ -53.126114, -17.671669 ], [ -53.216393, -17.539722 ], [ -53.218895, -17.425282 ], [ -53.190285, -17.355556 ], [ -53.203056, -17.290836 ], [ -53.13945, -17.175835 ], [ -53.039726, -17.052502 ], [ -53.011673, -16.861115 ], [ -52.973335, -16.821114 ], [ -52.83223, -16.764168 ], [ -52.72084, -16.664722 ], [ -52.69445, -16.581112 ], [ -52.637779, -16.538891 ], [ -52.614723, -16.412502 ], [ -52.577507, -16.341667 ], [ -52.500839, -16.285835 ], [ -52.434723, -16.271389 ], [ -52.453613, -16.151669 ], [ -52.440559, -16.096947 ], [ -52.330559, -16.042503 ], [ -52.239174, -15.876945 ], [ -52.027504, -15.871946 ], [ -51.960556, -15.799168 ], [ -51.876945, -15.800556 ], [ -51.775002, -15.616112 ], [ -51.754173, -15.543335 ], [ -51.70195, -15.476667 ], [ -51.674446, -15.359724 ], [ -51.663338, -15.226389 ], [ -51.580833, -15.148613 ], [ -51.516396, -15.059446 ], [ -51.412506, -14.997223 ], [ -51.308617, -14.966946 ], [ -51.26889, -15.023613 ], [ -51.155006, -14.966391 ], [ -51.097504, -14.891111 ], [ -51.065559, -14.800001 ], [ -51.064445, -14.7325 ], [ -51.006111, -14.623611 ], [ -50.966667, -14.481668 ], [ -50.999168, -14.405556 ], [ -50.962227, -14.233891 ], [ -50.916946, -14.146946 ], [ -50.863617, -14.110279 ], [ -50.866112, -13.958057 ], [ -50.843056, -13.870001 ], [ -50.87056, -13.718613 ], [ -50.789726, -13.668056 ], [ -50.758339, -13.537779 ], [ -50.670563, -13.444168 ], [ -50.661118, -13.388334 ], [ -50.572502, -13.245556 ], [ -50.589172, -13.082779 ], [ -50.552223, -13.003613 ], [ -50.498062, -12.960556 ], [ -50.477226, -12.87639 ], [ -50.559174, -12.832224 ], [ -50.610001, -12.77389 ], [ -50.625557, -12.656389 ], [ -50.663063, -12.645 ], [ -50.615837, -12.448057 ], [ -50.613617, -12.384167 ], [ -50.645004, -12.228334 ], [ -50.674446, -12.196667 ], [ -50.682228, -11.999723 ], [ -50.663895, -11.923056 ], [ -50.711113, -11.714724 ], [ -50.657501, -11.664167 ], [ -50.648056, -11.609446 ], [ -50.743057, -11.510279 ], [ -50.694725, -11.305557 ], [ -50.659172, -11.243057 ], [ -50.664726, -11.142502 ], [ -50.609451, -11.065279 ], [ -50.637779, -10.932501 ], [ -50.629173, -10.837778 ], [ -50.58667, -10.770834 ], [ -50.606674, -10.655834 ], [ -50.543335, -10.602779 ], [ -50.495003, -10.4825 ], [ -50.48278, -10.393612 ], [ -50.430557, -10.355835 ], [ -50.390556, -10.233057 ], [ -50.381668, -10.110279 ], [ -50.29528, -10.000557 ], [ -50.273895, -9.908611 ], [ -50.232506, -9.844168 ], [ -52.012222, -9.751667 ], [ -53.806671, -9.650557 ], [ -55.391945, -9.544724 ], [ -56.447784, -9.468889 ], [ -56.483528, -9.473377 ], [ -56.600563, -9.403334 ], [ -56.678337, -9.374168 ], [ -56.786392, -9.395834 ], [ -56.806946, -9.313334 ], [ -56.847504, -9.263334 ], [ -56.946114, -9.23889 ], [ -56.998894, -9.249723 ], [ -57.065834, -9.218056 ], [ -57.090561, -9.055557 ], [ -57.361389, -8.916113 ], [ -57.373611, -8.872223 ], [ -57.501114, -8.776669 ], [ -57.58667, -8.763889 ], [ -57.607224, -8.653334 ], [ -57.646118, -8.603889 ], [ -57.651115, -8.495556 ], [ -57.683334, -8.446112 ], [ -57.643616, -8.19639 ], [ -57.705284, -8.156389 ], [ -57.782784, -8.045834 ], [ -57.836945, -7.866667 ], [ -57.878059, -7.780556 ], [ -57.892227, -7.693611 ], [ -57.939728, -7.64 ], [ -57.978889, -7.530556 ], [ -58.06028, -7.408334 ], [ -58.171951, -7.303056 ], [ -58.17334, -7.220834 ], [ -58.226952, -7.092223 ], [ -58.300835, -7.017501 ], [ -58.389168, -6.965 ], [ -58.428337, -6.900556 ], [ -58.472229, -6.723612 ], [ -58.430283, -6.639723 ], [ -58.341667, -6.5725 ], [ -58.208893, -6.321112 ], [ -57.875282, -5.591111 ], [ -57.248894, -4.2475 ], [ -56.734451, -3.137778 ], [ -56.513062, -2.665556 ], [ -56.371674, -2.353333 ], [ -56.39695, -2.273889 ], [ -56.488617, -2.239722 ], [ -56.488892, -2.163611 ], [ -56.573616, -2.182778 ], [ -56.634445, -2.225833 ], [ -56.75, -2.178056 ], [ -56.740562, -2.053334 ], [ -56.844727, -2.028889 ], [ -57.001396, -1.939167 ], [ -57.159172, -1.765 ], [ -57.253616, -1.764445 ], [ -57.273613, -1.713611 ], [ -57.338615, -1.730834 ], [ -57.447502, -1.691945 ], [ -57.585556, -1.6125 ], [ -57.666946, -1.587778 ], [ -57.695007, -1.538333 ], [ -57.75528, -1.52 ], [ -57.804726, -1.451945 ], [ -57.912781, -1.42 ], [ -57.970558, -1.351389 ], [ -58.069725, -1.306111 ], [ -58.130005, -1.232778 ], [ -58.171112, -1.233611 ], [ -58.243896, -1.131389 ], [ -58.298058, -1.131389 ], [ -58.390556, -1.049167 ], [ -58.443336, -0.848333 ], [ -58.571671, -0.761389 ], [ -58.638618, -0.757222 ], [ -58.746948, -0.642222 ], [ -58.750282, -0.505833 ], [ -58.731674, -0.429722 ], [ -58.845001, -0.372222 ], [ -58.872223, -0.181667 ], [ -58.841949, -0.0825 ], [ -58.859451, 0.049167 ], [ -58.89473, 0.519444 ], [ -58.933334, 0.8675 ], [ -58.972088, 1.309811 ], [ -58.913773, 1.29851 ], [ -58.90361, 1.233826 ], [ -58.796116, 1.175265 ], [ -58.746651, 1.198208 ], [ -58.692009, 1.288506 ], [ -58.507111, 1.264406 ], [ -58.467083, 1.350642 ], [ -58.502628, 1.444474 ], [ -58.390087, 1.465866 ], [ -58.376362, 1.544452 ], [ -58.319176, 1.591944 ], [ -58.235325, 1.551614 ], [ -58.176765, 1.561129 ], [ -58.142136, 1.507995 ], [ -58.008511, 1.500673 ], [ -58.0, 1.665301 ], [ -57.933014, 1.644896 ], [ -57.817326, 1.678573 ], [ -57.770401, 1.718252 ], [ -57.639664, 1.689638 ], [ -57.544678, 1.700689 ], [ -57.423721, 1.904481 ], [ -57.302399, 1.990075 ], [ -57.253845, 1.945109 ], [ -57.122406, 2.014143 ], [ -56.986225, 1.910692 ], [ -56.914501, 1.91795 ], [ -56.800163, 1.863873 ], [ -56.723507, 1.919642 ], [ -56.628956, 1.939786 ], [ -56.591675, 1.915002 ], [ -56.480251, 1.941472 ], [ -56.555508, 2.009794 ], [ -56.707043, 2.033958 ], [ -56.819576, 2.204659 ], [ -56.825649, 2.270658 ], [ -56.88377, 2.300921 ], [ -56.879753, 2.348309 ], [ -56.994816, 2.503534 ], [ -56.996029, 2.553908 ], [ -57.059872, 2.644254 ], [ -57.109787, 2.770451 ], [ -57.207619, 2.841797 ], [ -57.225842, 2.902034 ], [ -57.213673, 3.068398 ], [ -57.29459, 3.129192 ], [ -57.305061, 3.373516 ], [ -57.477974, 3.333537 ], [ -57.610638, 3.385432 ], [ -57.692398, 3.402242 ], [ -57.674175, 3.506522 ], [ -57.740864, 3.60413 ], [ -57.828239, 3.651974 ], [ -57.857269, 3.777523 ], [ -57.928627, 3.889601 ], [ -58.0, 3.893642 ], [ -58.050678, 3.982001 ], [ -58.05719, 4.074831 ], [ -58.086399, 4.131202 ], [ -58.001839, 4.268556 ], [ -58.0, 4.326353 ], [ -57.924583, 4.461399 ], [ -57.84584, 4.630972 ], [ -57.883171, 4.760627 ], [ -57.928577, 4.832965 ], [ -57.873558, 4.904678 ], [ -57.680843, 5.020937 ], [ -57.613838, 5.006851 ], [ -57.539368, 5.027977 ], [ -57.415699, 5.005502 ], [ -57.33971, 5.06158 ], [ -57.29517, 5.220871 ], [ -57.297649, 5.292176 ], [ -57.33083, 5.34869 ], [ -57.277538, 5.412064 ], [ -57.279259, 5.457143 ], [ -57.180748, 5.613526 ], [ -57.188904, 5.756562 ], [ -57.14632, 5.994199 ], [ -57.160044, 6.040344 ], [ -57.083048, 6.179154 ], [ -57.047968, 6.092151 ], [ -56.967152, 6.118586 ], [ -56.816598, 6.107843 ], [ -56.582719, 6.060735 ], [ -56.515095, 6.063865 ], [ -56.237715, 6.01304 ], [ -56.033795, 5.944343 ], [ -55.907858, 6.051434 ], [ -55.839931, 6.073116 ], [ -55.584577, 6.100878 ], [ -55.366385, 6.0809 ], [ -55.268703, 6.053504 ], [ -55.203013, 6.085397 ], [ -55.064369, 6.121452 ], [ -54.838842, 6.113918 ], [ -54.488482, 6.044968 ], [ -54.374374, 6.035828 ], [ -54.148096, 5.989297 ], [ -53.875747, 5.896467 ], [ -53.764647, 5.87216 ], [ -53.636653, 5.781828 ], [ -53.57614, 5.761423 ], [ -53.432922, 5.671764 ], [ -53.291813, 5.658221 ], [ -53.047062, 5.584181 ], [ -52.988179, 5.595882 ], [ -52.884819, 5.568465 ], [ -52.748242, 5.451519 ], [ -52.693996, 5.367508 ], [ -52.648284, 5.3608 ], [ -52.5, 5.20706 ], [ -52.5, 46.3 ], [ -52.5, 52.8 ], [ -52.5, 64.86084 ], [ -52.600538, 64.913267 ], [ -52.645328, 64.966875 ], [ -52.672216, 65.065842 ], [ -52.653103, 65.125643 ], [ -52.713922, 65.145859 ], [ -52.758849, 65.200485 ], [ -52.904308, 65.252039 ], [ -53.036431, 65.329626 ], [ -53.221437, 65.327663 ], [ -53.308308, 65.382257 ], [ -53.387383, 65.481956 ], [ -53.400757, 65.553548 ], [ -53.367701, 65.62907 ], [ -53.392003, 65.697657 ], [ -53.464903, 65.725844 ], [ -53.635065, 65.909351 ], [ -53.737111, 65.958204 ], [ -53.777965, 65.998098 ], [ -53.87069, 65.946624 ], [ -53.997271, 65.968662 ], [ -54.041468, 66.025694 ], [ -54.04497, 66.097762 ], [ -53.997054, 66.169717 ], [ -53.876618, 66.194823 ], [ -53.894107, 66.304833 ], [ -53.87726, 66.371605 ], [ -53.823702, 66.42141 ], [ -53.810591, 66.514498 ], [ -53.769178, 66.574755 ], [ -53.704561, 66.609019 ], [ -53.68058, 66.668082 ], [ -53.694534, 66.72482 ], [ -53.745204, 66.777708 ], [ -53.83869, 66.794952 ], [ -53.975002, 66.884681 ], [ -54.002816, 66.954187 ], [ -54.066973, 66.98561 ], [ -54.106076, 67.037939 ], [ -54.114774, 67.110083 ], [ -54.086693, 67.169109 ], [ -54.023565, 67.211629 ], [ -53.979951, 67.403778 ], [ -53.878438, 67.517011 ], [ -53.879295, 67.682387 ], [ -53.950263, 67.768202 ], [ -53.970184, 67.834704 ], [ -53.956714, 67.977817 ], [ -53.907136, 68.132139 ], [ -53.870528, 68.181883 ], [ -53.840384, 68.352195 ], [ -53.786702, 68.396189 ], [ -53.668347, 68.40704 ], [ -53.694563, 68.489971 ], [ -53.691189, 68.566747 ], [ -53.64077, 68.707121 ], [ -53.586486, 68.744384 ], [ -53.549146, 68.906385 ], [ -53.57157, 68.979071 ], [ -53.554562, 69.0367 ], [ -53.597391, 69.116396 ], [ -53.649751, 69.137951 ], [ -53.894883, 69.150657 ], [ -53.961778, 69.202042 ], [ -54.047997, 69.199302 ], [ -54.189675, 69.220094 ], [ -54.290813, 69.255229 ], [ -54.388925, 69.32778 ], [ -54.411537, 69.411867 ], [ -54.456227, 69.444108 ], [ -54.730894, 69.463949 ], [ -54.880485, 69.504698 ], [ -55.060198, 69.598276 ], [ -55.109235, 69.669137 ], [ -55.101046, 69.756197 ], [ -55.060189, 69.818468 ], [ -55.034666, 69.922914 ], [ -54.943239, 70.032281 ], [ -54.968482, 70.212129 ], [ -54.947581, 70.260011 ], [ -55.038763, 70.286002 ], [ -55.131635, 70.372319 ], [ -55.14717, 70.497948 ], [ -55.524521, 71.335794 ], [ -55.580827, 71.366029 ], [ -55.771058, 71.55482 ], [ -55.943965, 71.586576 ], [ -55.996898, 71.648584 ], [ -55.997258, 71.737766 ], [ -55.943742, 71.8049 ], [ -55.89576, 71.825827 ], [ -55.910769, 71.890449 ], [ -55.890875, 71.950023 ], [ -56.020073, 71.972637 ], [ -56.122186, 72.039261 ], [ -56.170155, 72.091096 ], [ -56.163709, 72.212695 ], [ -56.081596, 72.272846 ], [ -56.044115, 72.407447 ], [ -56.122467, 72.440363 ], [ -56.16869, 72.497439 ], [ -56.245554, 72.541559 ], [ -56.284581, 72.603842 ], [ -56.34558, 72.597912 ], [ -56.488427, 72.639464 ], [ -56.541637, 72.7018 ], [ -56.525039, 72.815635 ], [ -56.600114, 72.883164 ], [ -56.629597, 72.956913 ], [ -56.573244, 73.066287 ], [ -56.45424, 73.104166 ], [ -56.546908, 73.252789 ], [ -56.557549, 73.32359 ], [ -56.62328, 73.321011 ], [ -56.712299, 73.36066 ], [ -56.753873, 73.423803 ], [ -56.893699, 73.433645 ], [ -56.987394, 73.5093 ], [ -57.116384, 73.520913 ], [ -57.177468, 73.567191 ], [ -57.193795, 73.672608 ], [ -57.152001, 73.731901 ], [ -57.08787, 73.755474 ], [ -57.100157, 73.852013 ], [ -57.059825, 73.910666 ], [ -57.126081, 73.987326 ], [ -57.304327, 73.977548 ], [ -57.394063, 74.018258 ], [ -57.430946, 74.115694 ], [ -57.400505, 74.189734 ], [ -57.289977, 74.255478 ], [ -57.406202, 74.306253 ], [ -57.464984, 74.362796 ], [ -57.553436, 74.371726 ], [ -57.632845, 74.423971 ], [ -57.654952, 74.490767 ], [ -57.696977, 74.506031 ], [ -57.792867, 74.476641 ], [ -57.908574, 74.519257 ], [ -57.964512, 74.697939 ], [ -57.951306, 74.780444 ], [ -58.123167, 74.715974 ], [ -58.219918, 74.727563 ], [ -58.27518, 74.773121 ], [ -58.294648, 74.842045 ], [ -58.271386, 74.909782 ], [ -58.390549, 74.932134 ], [ -58.441669, 74.987805 ], [ -58.44937, 75.062993 ], [ -58.388362, 75.144305 ], [ -58.521191, 75.223907 ], [ -58.649394, 75.221701 ], [ -58.755942, 75.248591 ], [ -58.811332, 75.31755 ], [ -58.811924, 75.394975 ], [ -58.770487, 75.455155 ], [ -58.809429, 75.531216 ], [ -58.808622, 75.593582 ], [ -59.047515, 75.581971 ], [ -59.15625, 75.613581 ], [ -59.276955, 75.597115 ], [ -59.373323, 75.610119 ], [ -59.413132, 75.64241 ], [ -59.509226, 75.660848 ], [ -59.549744, 75.707505 ], [ -59.832452, 75.644655 ], [ -59.929201, 75.697365 ], [ -60.00991, 75.677374 ], [ -60.096154, 75.688776 ], [ -60.171449, 75.657902 ], [ -60.261465, 75.678369 ], [ -60.319355, 75.774437 ], [ -60.299619, 75.854546 ], [ -60.235045, 75.905824 ], [ -60.346798, 75.927775 ], [ -60.415717, 75.91005 ], [ -60.502084, 75.924955 ], [ -60.688964, 75.877019 ], [ -60.748545, 75.877089 ], [ -60.863025, 75.93332 ], [ -60.946534, 75.891189 ], [ -61.051116, 75.898086 ], [ -61.120848, 75.875678 ], [ -61.204142, 75.885808 ], [ -61.262616, 75.93835 ], [ -61.321414, 75.948617 ], [ -61.384983, 76.015624 ], [ -61.476829, 76.001225 ], [ -61.583207, 76.009093 ], [ -61.630169, 75.932464 ], [ -61.703172, 75.903567 ], [ -61.859818, 75.940298 ], [ -61.904772, 75.980247 ], [ -61.985334, 75.942359 ], [ -62.074136, 75.952045 ], [ -62.215519, 76.042828 ], [ -62.241628, 75.970793 ], [ -62.308415, 75.929017 ], [ -62.467182, 75.959009 ], [ -62.516029, 76.014745 ], [ -62.524497, 76.08665 ], [ -62.673267, 76.039147 ], [ -62.777979, 76.054027 ], [ -62.89474, 76.131454 ], [ -62.952371, 76.201741 ], [ -63.053063, 76.218343 ], [ -63.095425, 76.186538 ], [ -63.250952, 76.158181 ], [ -63.335861, 76.18081 ], [ -63.376461, 76.226747 ], [ -63.472915, 76.183782 ], [ -63.535276, 76.133399 ], [ -63.525811, 76.067404 ], [ -63.581562, 75.986185 ], [ -66.426631, 79.211214 ], [ -66.463863, 79.253418 ], [ -67.527728, 80.138835 ], [ -67.58747, 80.544598 ], [ -61.468391, 81.874615 ], [ -60.827129, 81.994686 ], [ -60.606422, 82.01683 ], [ -60.003054, 82.055477 ], [ -59.639026, 82.014934 ], [ -59.595936, 82.083058 ], [ -59.509383, 82.117651 ], [ -58.897502, 82.192326 ], [ -58.596009, 82.224667 ], [ -58.448678, 82.216667 ], [ -58.370352, 82.237667 ], [ -57.907675, 82.269105 ], [ -57.209302, 82.296225 ], [ -56.579973, 82.343894 ], [ -56.418219, 82.313336 ], [ -56.298592, 82.304127 ], [ -56.193406, 82.356479 ], [ -55.966439, 82.383545 ], [ -55.84651, 82.387122 ], [ -55.707051, 82.36641 ], [ -55.650984, 82.395016 ], [ -55.450689, 82.417746 ], [ -55.362181, 82.414068 ], [ -55.239665, 82.434585 ], [ -54.593305, 82.482373 ], [ -54.434215, 82.477882 ], [ -54.343793, 82.454827 ], [ -54.156054, 82.436723 ], [ -53.847852, 82.336573 ], [ -53.779951, 82.32579 ], [ -53.627937, 82.24281 ], [ -53.537395, 82.217196 ], [ -53.500335, 82.319154 ], [ -53.397841, 82.380117 ], [ -53.21288, 82.440755 ], [ -53.082761, 82.449707 ], [ -52.758651, 82.424874 ], [ -52.568443, 82.392989 ], [ -52.5, 82.36558 ], [ -52.5, 89.0 ], [ -37.523430220779204, 89.0 ], [ -37.5, 83.606742 ], [ -37.416405, 83.593414 ], [ -37.222728, 83.578496 ], [ -37.068138, 83.568521 ], [ -37.042432, 83.596507 ], [ -37.001474, 83.629026 ], [ -36.93772, 83.642404 ], [ -36.849499, 83.653023 ], [ -36.722016, 83.66876 ], [ -36.562212, 83.678713 ], [ -36.539538, 83.680849 ], [ -36.434785, 83.684253 ], [ -36.411439, 83.683009 ], [ -36.324263, 83.682636 ], [ -36.159342, 83.681984 ], [ -36.014578, 83.67913 ], [ -35.997464, 83.679261 ], [ -35.885641, 83.676379 ], [ -35.826716, 83.671966 ], [ -35.687512, 83.675592 ], [ -35.59903, 83.675191 ], [ -35.517697, 83.676345 ], [ -35.419899, 83.678983 ], [ -35.332176, 83.664139 ], [ -35.164084, 83.680405 ], [ -34.984742, 83.709576 ], [ -34.828163, 83.729382 ], [ -34.783314, 83.728945 ], [ -34.731842, 83.72327 ], [ -34.68527, 83.707629 ], [ -34.65382, 83.700591 ], [ -34.616955, 83.687994 ], [ -34.540115, 83.720792 ], [ -34.511751, 83.723631 ], [ -34.404929, 83.716829 ], [ -34.258635, 83.669173 ], [ -34.25312, 83.66471 ], [ -34.242758, 83.659457 ], [ -34.24102, 83.661625 ], [ -34.139349, 83.705921 ], [ -34.044664, 83.71394 ], [ -33.648989, 83.734536 ], [ -33.503317, 83.737618 ], [ -33.432567, 83.736679 ], [ -33.429412, 83.736592 ], [ -33.204147, 83.741569 ], [ -33.155883, 83.743347 ], [ -33.020655, 83.736141 ], [ -32.777433, 83.737415 ], [ -32.752163, 83.740808 ], [ -32.679404, 83.746479 ], [ -32.663425, 83.747414 ], [ -32.607631, 83.746957 ], [ -32.501509, 83.734948 ], [ -32.421289, 83.734241 ], [ -32.237543, 83.728853 ], [ -32.210735, 83.72697 ], [ -32.140812, 83.705955 ], [ -31.871828, 83.731512 ], [ -31.699838, 83.709843 ], [ -31.425718, 83.695325 ], [ -31.346154, 83.693032 ], [ -31.334497, 83.692126 ], [ -31.304016, 83.688256 ], [ -31.247253, 83.686055 ], [ -31.203539, 83.688672 ], [ -31.137022, 83.688595 ], [ -30.89707, 83.695155 ], [ -30.745325, 83.71195 ], [ -30.675604, 83.718375 ], [ -30.310073, 83.719176 ], [ -29.993965, 83.704817 ], [ -29.850469, 83.70132 ], [ -29.225924, 83.645937 ], [ -29.156697, 83.616164 ], [ -28.99501, 83.623009 ], [ -28.930509, 83.63293 ], [ -28.870481, 83.635323 ], [ -28.662157, 83.634275 ], [ -28.492411, 83.619896 ], [ -28.425436, 83.584114 ], [ -28.15256, 83.585874 ], [ -28.048706, 83.585703 ], [ -27.958645, 83.59924 ], [ -27.378868, 83.588124 ], [ -27.005161, 83.563381 ], [ -26.724488, 83.543291 ], [ -26.375774, 83.515664 ], [ -26.243427, 83.505132 ], [ -26.242142, 83.504673 ], [ -26.086467, 83.478978 ], [ -26.034421, 83.472876 ], [ -25.905806, 83.462779 ], [ -25.77932, 83.436412 ], [ -25.690059, 83.423559 ], [ -25.598252, 83.354852 ], [ -25.584895, 83.27102 ], [ -25.441689, 83.276279 ], [ -25.307401, 83.285533 ], [ -25.25422, 83.285723 ], [ -25.163285, 83.281794 ], [ -24.994147, 83.268157 ], [ -24.913751, 83.231504 ], [ -24.776017, 83.203334 ], [ -24.736075, 83.143916 ], [ -24.675106, 83.089108 ], [ -24.646711, 83.014171 ], [ -24.403873, 83.021774 ], [ -24.320719, 83.028747 ], [ -24.240146, 83.039918 ], [ -24.144123, 83.019162 ], [ -24.089291, 83.03127 ], [ -23.994483, 83.035177 ], [ -23.81821, 83.024863 ], [ -23.779434, 83.019258 ], [ -23.710409, 82.982071 ], [ -23.532859, 82.964057 ], [ -23.437898, 82.974269 ], [ -23.416456, 82.974384 ], [ -23.398305, 82.973101 ], [ -23.347833, 82.963094 ], [ -23.234971, 82.955577 ], [ -23.104138, 82.91622 ], [ -23.051356, 82.908206 ], [ -22.99648, 82.915894 ], [ -22.963413, 82.916603 ], [ -22.831983, 82.886436 ], [ -22.747045, 82.919588 ], [ -22.446733, 82.900744 ], [ -22.397532, 82.906817 ], [ -22.296501, 82.907806 ], [ -22.222303, 82.894073 ], [ -22.15826, 82.858704 ], [ -22.059767, 82.843579 ], [ -21.976213, 82.821401 ], [ -21.777927, 82.803722 ], [ -21.742582, 82.795029 ], [ -21.60147, 82.781257 ], [ -21.301168, 82.722359 ], [ -21.242985, 82.684972 ], [ -21.210448, 82.622798 ], [ -21.210886, 82.571683 ], [ -21.222634, 82.531705 ], [ -21.247346, 82.498155 ], [ -21.28204, 82.475077 ], [ -21.41041, 82.434343 ], [ -21.613546, 82.414314 ], [ -21.655453, 82.400251 ], [ -21.830131, 82.36281 ], [ -22.103838, 82.347676 ], [ -22.200726, 82.269213 ], [ -22.444312, 82.22019 ], [ -22.494742, 82.214989 ], [ -22.5, 82.213851 ], [ -22.502754, 82.15878 ], [ -22.365956, 82.168654 ], [ -22.071681, 82.17088 ], [ -22.039035, 82.172243 ], [ -21.98579, 82.174684 ], [ -21.945723, 82.174782 ], [ -21.665909, 82.185065 ], [ -21.274958, 82.193263 ], [ -21.220413, 82.186957 ], [ -21.073951, 82.11347 ], [ -21.066159, 82.104022 ], [ -20.918262, 82.016902 ], [ -20.887789, 81.956437 ], [ -20.873885, 81.922365 ], [ -20.874634, 81.833083 ], [ -20.879691, 81.712028 ], [ -20.892906, 81.672281 ], [ -20.967152, 81.601861 ], [ -21.027304, 81.517052 ], [ -21.163447, 81.413074 ], [ -21.229153, 81.370882 ], [ -21.297793, 81.333973 ], [ -21.251652, 81.303558 ], [ -21.101171, 81.313474 ], [ -21.048315, 81.342644 ], [ -21.014864, 81.36054 ], [ -20.89725, 81.392138 ], [ -20.756369, 81.393126 ], [ -20.747161, 81.401172 ], [ -20.744994, 81.406934 ], [ -20.721755, 81.436145 ], [ -20.608992, 81.496018 ], [ -20.451474, 81.518486 ], [ -20.24574, 81.559663 ], [ -20.178315, 81.578663 ], [ -20.166994, 81.630632 ], [ -20.081129, 81.745311 ], [ -20.019301, 81.775329 ], [ -19.717725, 81.823011 ], [ -19.597528, 81.803623 ], [ -19.548736, 81.790816 ], [ -19.498273, 81.745381 ], [ -19.42346, 81.721061 ], [ -19.294557, 81.724512 ], [ -19.209483, 81.736136 ], [ -19.237777, 81.753076 ], [ -19.275225, 81.76899 ], [ -19.430341, 81.826998 ], [ -19.583627, 81.890738 ], [ -19.65471, 81.955891 ], [ -19.674072, 81.996809 ], [ -19.682037, 82.027716 ], [ -19.685243, 82.069558 ], [ -19.673845, 82.109946 ], [ -19.649238, 82.14394 ], [ -19.550237, 82.194258 ], [ -19.395908, 82.229643 ], [ -19.212536, 82.234721 ], [ -19.153805, 82.221316 ], [ -19.079813, 82.187229 ], [ -19.032914, 82.176184 ], [ -18.88906, 82.09522 ], [ -18.810524, 82.07006 ], [ -18.746914, 82.046014 ], [ -18.648188, 81.993447 ], [ -18.623045, 81.980679 ], [ -18.513833, 81.899868 ], [ -18.511736, 81.773194 ], [ -18.530271, 81.740851 ], [ -18.571363, 81.707082 ], [ -18.653366, 81.680896 ], [ -18.826951, 81.676868 ], [ -18.802647, 81.577491 ], [ -18.749089, 81.585309 ], [ -18.544716, 81.605895 ], [ -18.414447, 81.608336 ], [ -18.314431, 81.58685 ], [ -18.268401, 81.587849 ], [ -18.302912, 81.60381 ], [ -18.349316, 81.664927 ], [ -18.355557, 81.703305 ], [ -18.3492, 81.741664 ], [ -18.265636, 81.822555 ], [ -18.206525, 81.831406 ], [ -18.103955, 81.837395 ], [ -18.123166, 81.851884 ], [ -18.155219, 81.956974 ], [ -18.161072, 81.959106 ], [ -18.2158, 82.01569 ], [ -18.269464, 82.062164 ], [ -18.287474, 82.130831 ], [ -18.263529, 82.19766 ], [ -18.206008, 82.239263 ], [ -18.043885, 82.260709 ], [ -17.971913, 82.24587 ], [ -17.877191, 82.17024 ], [ -17.875964, 82.166157 ], [ -17.791512, 82.109064 ], [ -17.70299, 82.080974 ], [ -17.604411, 82.025112 ], [ -17.555933, 81.974596 ], [ -17.543897, 81.905624 ], [ -17.581927, 81.795348 ], [ -17.562793, 81.788565 ], [ -17.457189, 81.75484 ], [ -17.410188, 81.732133 ], [ -17.272272, 81.699721 ], [ -17.208311, 81.656024 ], [ -17.187537, 81.603305 ], [ -17.140075, 81.608451 ], [ -17.104079, 81.603505 ], [ -17.074338, 81.648836 ], [ -17.004761, 81.70171 ], [ -16.852307, 81.767221 ], [ -16.831418, 81.767374 ], [ -16.771435, 81.759129 ], [ -16.688194, 81.755245 ], [ -16.644714, 81.757375 ], [ -16.584266, 81.816793 ], [ -16.562388, 81.828622 ], [ -16.495603, 81.872681 ], [ -16.355031, 81.886279 ], [ -16.22865, 81.891006 ], [ -16.206628, 81.893287 ], [ -16.000563, 81.87406 ], [ -15.913807, 81.876756 ], [ -15.809601, 81.921728 ], [ -15.64126, 81.949883 ], [ -15.616967, 81.950657 ], [ -15.588396, 81.948666 ], [ -15.560171, 81.943887 ], [ -15.49666, 81.938448 ], [ -15.437976, 81.930643 ], [ -15.384388, 81.927429 ], [ -15.174628, 81.926946 ], [ -15.128552, 81.934599 ], [ -15.105716, 81.936598 ], [ -15.094552, 81.937053 ], [ -14.950512, 81.940219 ], [ -14.902496, 81.935247 ], [ -14.870858, 81.925603 ], [ -14.866116, 81.922547 ], [ -14.864115, 81.922878 ], [ -14.802872, 81.924587 ], [ -14.740821, 81.91909 ], [ -14.702807, 81.921717 ], [ -14.649557, 81.913253 ], [ -14.616627, 81.912372 ], [ -14.557944, 81.913738 ], [ -14.4927, 81.917918 ], [ -14.43641, 81.916765 ], [ -14.327927, 81.920497 ], [ -14.321021, 81.920535 ], [ -14.319045, 81.92049 ], [ -14.295417, 81.919934 ], [ -14.257058, 81.921609 ], [ -14.092595, 81.933193 ], [ -13.977963, 81.924292 ], [ -13.715649, 81.917019 ], [ -13.539812, 81.89843 ], [ -13.316322, 81.854065 ], [ -13.189251, 81.849979 ], [ -12.925445, 81.810851 ], [ -12.85259, 81.814136 ], [ -12.728586, 81.808978 ], [ -12.696934, 81.807147 ], [ -12.546714, 81.792397 ], [ -12.3401, 81.76711 ], [ -11.986012, 81.73483 ], [ -11.790334, 81.686852 ], [ -11.611994, 81.605154 ], [ -11.386821, 81.595703 ], [ -11.27797, 81.571667 ], [ -11.218265, 81.531213 ], [ -11.200218, 81.499506 ], [ -11.192532, 81.463841 ], [ -11.233663, 81.366061 ], [ -11.316087, 81.326297 ], [ -11.393838, 81.307959 ], [ -11.401088, 81.304171 ], [ -11.452335, 81.286657 ], [ -11.487245, 81.27328 ], [ -11.546506, 81.258252 ], [ -11.669917, 81.239622 ], [ -11.696915, 81.232502 ], [ -11.819709, 81.209446 ], [ -12.251849, 81.159713 ], [ -12.390935, 81.127777 ], [ -12.445048, 81.076953 ], [ -12.578507, 81.060184 ], [ -12.747704, 81.056856 ], [ -12.896152, 81.015418 ], [ -13.004598, 80.972652 ], [ -13.171671, 80.932541 ], [ -13.336317, 80.892413 ], [ -13.462615, 80.884738 ], [ -13.466604, 80.884562 ], [ -13.557008, 80.882082 ], [ -13.564903, 80.882125 ], [ -13.631458, 80.884682 ], [ -13.730897, 80.88377 ], [ -13.943769, 80.897357 ], [ -13.987382, 80.871935 ], [ -13.98902, 80.800546 ], [ -14.030924, 80.742727 ], [ -14.241138, 80.670502 ], [ -14.521222, 80.622914 ], [ -14.796166, 80.612889 ], [ -15.174731, 80.600382 ], [ -15.287945, 80.589999 ], [ -15.319182, 80.552013 ], [ -15.34806, 80.53413 ], [ -15.521676, 80.493181 ], [ -15.590428, 80.49594 ], [ -15.598167, 80.356637 ], [ -15.622218, 80.328111 ], [ -15.638808, 80.31373 ], [ -15.725256, 80.276331 ], [ -15.795268, 80.255287 ], [ -16.003858, 80.224401 ], [ -16.019864, 80.209919 ], [ -16.198768, 80.160524 ], [ -16.201634, 80.160495 ], [ -16.328676, 80.109656 ], [ -16.506972, 80.084702 ], [ -16.513115, 80.083842 ], [ -16.55983, 80.078524 ], [ -16.599958, 80.076166 ], [ -16.643797, 80.06764 ], [ -16.791068, 80.054609 ], [ -17.047994, 80.047021 ], [ -17.042347, 80.035516 ], [ -17.043191, 79.96188 ], [ -17.086885, 79.902603 ], [ -17.120153, 79.885796 ], [ -17.204267, 79.861376 ], [ -17.260787, 79.836024 ], [ -17.338944, 79.787484 ], [ -17.516483, 79.728287 ], [ -17.552541, 79.702117 ], [ -17.629419, 79.653068 ], [ -17.874277, 79.597646 ], [ -17.882934, 79.585304 ], [ -17.935394, 79.534772 ], [ -17.987275, 79.521509 ], [ -18.07485, 79.522067 ], [ -18.14458, 79.562802 ], [ -18.312895, 79.567676 ], [ -18.437952, 79.583246 ], [ -18.539558, 79.594473 ], [ -18.648224, 79.603447 ], [ -18.83585, 79.611852 ], [ -18.888066, 79.612308 ], [ -18.933626, 79.612564 ], [ -19.061753, 79.600073 ], [ -19.132403, 79.561754 ], [ -19.210652, 79.538404 ], [ -19.213642, 79.532946 ], [ -19.219361, 79.492367 ], [ -22.675187, 79.654553 ], [ -22.921953, 75.940074 ], [ -19.24181, 75.725302 ], [ -17.913073, 75.500434 ], [ -17.259853, 75.237896 ], [ -17.201256, 75.117367 ], [ -17.321812, 74.908777 ], [ -17.384205372595062, 74.884013859236845 ], [ -18.285816, 74.526176 ], [ -18.30917, 74.520357 ], [ -18.316707, 74.514985 ], [ -18.340284, 74.503175 ], [ -18.369163, 74.493071 ], [ -18.453031, 74.501626 ], [ -18.49456, 74.502142 ], [ -18.617761, 74.553761 ], [ -18.648164, 74.441812 ], [ -18.692551, 74.403911 ], [ -18.736837, 74.386562 ], [ -18.750433, 74.384174 ], [ -18.792868, 74.384339 ], [ -18.832593, 74.399263 ], [ -18.854764, 74.412994 ], [ -18.857167, 74.413006 ], [ -18.859857, 74.41343 ], [ -18.859866873322716, 74.413430844849287 ], [ -18.877936, 74.414977 ], [ -18.900975, 74.388306 ], [ -19.019619, 74.320743 ], [ -19.076076, 74.290536 ], [ -19.155453, 74.228805 ], [ -19.301207, 74.175245 ], [ -19.455749, 74.12945 ], [ -19.476874, 74.125872 ], [ -19.54769, 74.121245 ], [ -19.654205, 74.116514 ], [ -19.762448, 74.123419 ], [ -19.902186, 74.135968 ], [ -19.917116, 74.138999 ], [ -19.962001, 74.143474 ], [ -19.981986, 74.145475 ], [ -20.016793, 74.151093 ], [ -20.064179, 74.087281 ], [ -20.129229, 74.060624 ], [ -20.128437, 74.054034 ], [ -20.090307, 74.049519 ], [ -20.042766, 74.039559 ], [ -20.025441, 74.033837 ], [ -19.946476, 73.990775 ], [ -19.901145, 73.878858 ], [ -19.93654, 73.807493 ], [ -20.016858, 73.770804 ], [ -20.070486, 73.772762 ], [ -20.10979, 73.769532 ], [ -20.119308, 73.769181 ], [ -20.171318, 73.745674 ], [ -20.23475, 73.69374 ], [ -20.218659, 73.588222 ], [ -20.260236, 73.511667 ], [ -20.267401, 73.479566 ], [ -20.307519, 73.417551 ], [ -20.411316, 73.362528 ], [ -20.456451, 73.347775 ], [ -20.512722, 73.333745 ], [ -20.576546, 73.325573 ], [ -20.648615, 73.325275 ], [ -20.824822, 73.333423 ], [ -20.850051, 73.333523 ], [ -20.961102, 73.335937 ], [ -21.107763, 73.33085 ], [ -21.149685, 73.329136 ], [ -21.216713, 73.332407 ], [ -21.31292, 73.333076 ], [ -21.449318, 73.361418 ], [ -21.519555, 73.289621 ], [ -21.534129, 73.283708 ], [ -21.616489, 73.264665 ], [ -21.678637, 73.25582 ], [ -21.752474, 73.244666 ], [ -21.94054, 73.221863 ], [ -22.007932, 73.198908 ], [ -22.111465, 73.157684 ], [ -22.208295, 73.130876 ], [ -22.37731, 73.108862 ], [ -22.297489, 73.098957 ], [ -22.258301, 73.092396 ], [ -22.245718, 73.093571 ], [ -22.174317, 73.083411 ], [ -22.142629, 73.063699 ], [ -22.128344, 73.054877 ], [ -22.020131, 73.054763 ], [ -21.936594, 73.051032 ], [ -21.88422, 73.035206 ], [ -21.824971, 73.002146 ], [ -21.819662, 72.99814 ], [ -21.775382, 72.931214 ], [ -21.794429, 72.809688 ], [ -21.791011, 72.806491 ], [ -21.76229, 72.763355 ], [ -21.756818, 72.76582 ], [ -21.688511, 72.778276 ], [ -21.671133, 72.777505 ], [ -21.577223, 72.725109 ], [ -21.561089, 72.618049 ], [ -21.63189, 72.542522 ], [ -21.638113, 72.540096 ], [ -21.770615, 72.548502 ], [ -21.82345, 72.606987 ], [ -21.850593, 72.596901 ], [ -21.867717, 72.591575 ], [ -21.806157, 72.49383 ], [ -21.830968, 72.351804 ], [ -21.875076, 72.309094 ], [ -21.914343, 72.289766 ], [ -21.912617, 72.283322 ], [ -21.915305, 72.244007 ], [ -21.930583, 72.207682 ], [ -21.991233, 72.139174 ], [ -22.008353, 72.105478 ], [ -22.062611, 72.063305 ], [ -22.129447, 72.02666 ], [ -22.224009, 72.005585 ], [ -22.314737, 71.999811 ], [ -22.438431, 72.008878 ], [ -23.038842, 72.147669 ], [ -23.201464, 72.226389 ], [ -23.492232, 72.274017 ], [ -23.584325, 72.290533 ], [ -24.305962, 72.459303 ], [ -24.390599, 72.46856 ], [ -24.601249, 70.387396 ], [ -24.349007, 70.33923 ], [ -24.007428, 70.293479 ], [ -23.985132, 70.283878 ], [ -23.974759420891949, 70.279650171554152 ], [ -23.974759, 70.27965 ], [ -23.951096, 70.275883 ], [ -23.319925, 70.220134 ], [ -22.816285, 70.203393 ], [ -22.378579, 70.232922 ], [ -22.236063, 70.265338 ], [ -22.135546, 70.27386 ], [ -22.050706, 70.260438 ], [ -22.009377, 70.236883 ], [ -21.965319, 70.172947 ], [ -21.978297, 70.06991 ], [ -22.026325, 70.023596 ], [ -22.037187, 70.012451 ], [ -22.067125, 69.992503 ], [ -22.221245, 69.910457 ], [ -22.289994, 69.870412 ], [ -22.405467, 69.850441 ], [ -22.474596, 69.857767 ], [ -22.49169, 69.841666 ], [ -22.528336, 69.825321 ], [ -22.539255, 69.822514 ], [ -22.558495, 69.810573 ], [ -22.576187, 69.797668 ], [ -22.627972, 69.781683 ], [ -22.696468, 69.791362 ], [ -22.786488, 69.759793 ], [ -22.828315, 69.701741 ], [ -22.889848, 69.670639 ], [ -22.993884, 69.636501 ], [ -23.052752, 69.638508 ], [ -23.090432, 69.639726 ], [ -23.136273, 69.573082 ], [ -23.326951, 69.522268 ], [ -23.478633, 69.536962 ], [ -23.527055, 69.509586 ], [ -23.645232, 69.432924 ], [ -23.687308, 69.419223 ], [ -23.708688, 69.414511 ], [ -23.741555, 69.401448 ], [ -23.835792, 69.393246 ], [ -23.891893, 69.401135 ], [ -23.971109, 69.377232 ], [ -23.994147, 69.336125 ], [ -24.045271, 69.297807 ], [ -24.162607, 69.294946 ], [ -24.268846, 69.316659 ], [ -24.343412, 69.26128 ], [ -24.450202, 69.232795 ], [ -24.48919, 69.236426 ], [ -24.537878, 69.168433 ], [ -24.566921, 69.153436 ], [ -24.616072, 69.134949 ], [ -24.798937, 69.116988 ], [ -24.815131, 69.115302 ], [ -24.860143, 69.122944 ], [ -24.924841, 69.047515 ], [ -25.049953, 68.987848 ], [ -25.061153, 68.987039 ], [ -25.136665, 68.966691 ], [ -25.241695, 68.91595 ], [ -25.351221, 68.905561 ], [ -25.410215, 68.85552 ], [ -25.494182, 68.838231 ], [ -25.558998, 68.778335 ], [ -25.650558, 68.748934 ], [ -25.688322, 68.747978 ], [ -25.720324, 68.754161 ], [ -25.838671, 68.703047 ], [ -25.894116, 68.690532 ], [ -25.914936, 68.680282 ], [ -25.920917, 68.67797 ], [ -25.979815, 68.668737 ], [ -26.000647, 68.668619 ], [ -26.172024, 68.663609 ], [ -26.243134, 68.590018 ], [ -26.305694, 68.567094 ], [ -26.431747, 68.538141 ], [ -26.529443, 68.549037 ], [ -26.636637, 68.536887 ], [ -26.767195, 68.545609 ], [ -26.793889, 68.533936 ], [ -26.928699, 68.519416 ], [ -27.06198, 68.463275 ], [ -27.133455, 68.469652 ], [ -27.158863, 68.445155 ], [ -27.219133, 68.420379 ], [ -27.353396, 68.410208 ], [ -27.51357, 68.416622 ], [ -27.536348, 68.390437 ], [ -27.54208, 68.385745 ], [ -27.65258, 68.353254 ], [ -27.809743, 68.349399 ], [ -27.914778, 68.378098 ], [ -28.005635, 68.327639 ], [ -28.204438, 68.318711 ], [ -28.219325, 68.311867 ], [ -28.254837, 68.301054 ], [ -28.286662, 68.297931 ], [ -28.300285, 68.29842 ], [ -28.320655, 68.300906 ], [ -28.38409, 68.311592 ], [ -28.431735, 68.324064 ], [ -28.537268, 68.285287 ], [ -28.650413, 68.238505 ], [ -28.667433, 68.239657 ], [ -28.682326, 68.241607 ], [ -28.72774, 68.250474 ], [ -28.844656, 68.201646 ], [ -28.922057, 68.208963 ], [ -28.959, 68.229166 ], [ -28.977729, 68.228216 ], [ -29.057132, 68.180137 ], [ -29.114643, 68.157979 ], [ -29.121783, 68.157398 ], [ -29.209236, 68.141446 ], [ -29.271404, 68.155927 ], [ -29.344668, 68.099929 ], [ -29.418712, 68.089441 ], [ -29.532562, 68.098037 ], [ -29.582499, 68.114249 ], [ -29.616019, 68.119397 ], [ -29.621019, 68.119549 ], [ -29.64036, 68.09637 ], [ -29.694334, 68.062767 ], [ -29.835136, 68.02873 ], [ -29.928526, 68.030193 ], [ -29.943501, 68.018933 ], [ -29.993099, 67.998522 ], [ -30.054303, 67.994571 ], [ -30.074168, 67.997533 ], [ -30.104757, 67.98345 ], [ -30.151925, 67.977776 ], [ -30.226142, 67.986735 ], [ -30.285644, 67.97555 ], [ -30.298506, 67.97584 ], [ -30.325303, 67.972946 ], [ -30.347643, 67.972159 ], [ -30.373131, 67.968528 ], [ -30.379017, 67.964713 ], [ -30.476502, 67.935864 ], [ -30.639618, 67.947259 ], [ -30.684706, 67.943637 ], [ -30.800347, 67.953017 ], [ -30.847172, 67.949484 ], [ -30.849463, 67.949655 ], [ -30.878309, 67.938032 ], [ -31.016016, 67.924042 ], [ -31.035801, 67.924086 ], [ -31.116653, 67.934138 ], [ -31.195402, 67.946926 ], [ -31.260498, 67.95505 ], [ -31.359237, 67.975959 ], [ -31.46521, 67.953757 ], [ -31.523517, 67.95061 ], [ -31.598002, 67.949255 ], [ -31.655698, 67.961714 ], [ -31.752567, 67.986985 ], [ -31.81689, 68.032762 ], [ -31.84748, 68.038148 ], [ -31.856034, 68.040177 ], [ -31.89534, 67.923703 ], [ -31.93835, 67.846408 ], [ -31.997538, 67.808888 ], [ -32.019888, 67.803919 ], [ -32.04747, 67.779724 ], [ -32.049446, 67.776636 ], [ -32.077698, 67.745765 ], [ -32.18563, 67.660669 ], [ -32.232003, 67.652195 ], [ -32.282144, 67.658207 ], [ -32.28972, 67.658079 ], [ -32.383318, 67.725977 ], [ -32.3851, 67.731526 ], [ -32.367385, 67.650241 ], [ -32.356594, 67.61163 ], [ -32.374691, 67.534675 ], [ -32.401559, 67.504921 ], [ -32.436729, 67.485676 ], [ -32.559, 67.501567 ], [ -32.565969, 67.506244 ], [ -32.612323, 67.566122 ], [ -32.619087, 67.603875 ], [ -32.600638, 67.667676 ], [ -32.64578, 67.65597 ], [ -32.659174, 67.646441 ], [ -32.690736, 67.635272 ], [ -32.758728, 67.53647 ], [ -32.847085, 67.502108 ], [ -32.916289, 67.502011 ], [ -32.980521, 67.540842 ], [ -32.987724, 67.535002 ], [ -33.075378, 67.475606 ], [ -33.085348, 67.469109 ], [ -33.117083, 67.350605 ], [ -33.071903, 67.303882 ], [ -33.058635, 67.26967 ], [ -33.056326, 67.233047 ], [ -33.065192, 67.197439 ], [ -33.084405, 67.166176 ], [ -33.112166, 67.142179 ], [ -33.167236, 67.116515 ], [ -33.249062, 67.128762 ], [ -33.297833, 67.091846 ], [ -33.291496, 67.069076 ], [ -33.292573, 67.033066 ], [ -33.325591, 66.969944 ], [ -33.388575, 66.936662 ], [ -33.474161, 66.933057 ], [ -33.499567, 66.86622 ], [ -33.522407, 66.838927 ], [ -33.635942, 66.80916 ], [ -33.694338, 66.802751 ], [ -33.717315, 66.73838 ], [ -33.748717, 66.705577 ], [ -33.836488, 66.679953 ], [ -33.877111, 66.649755 ], [ -34.037304, 66.596885 ], [ -34.049642, 66.579752 ], [ -34.109702, 66.528633 ], [ -34.197504, 66.47466 ], [ -34.240469, 66.461323 ], [ -34.259714, 66.457668 ], [ -34.312177, 66.457685 ], [ -34.417334, 66.391854 ], [ -34.434027, 66.389008 ], [ -34.439146, 66.382876 ], [ -34.443113, 66.377749 ], [ -34.510583, 66.335093 ], [ -34.515229, 66.317468 ], [ -34.569704, 66.260254 ], [ -34.634212, 66.248195 ], [ -34.681442, 66.218968 ], [ -34.815433, 66.187217 ], [ -34.862069, 66.173155 ], [ -34.870042, 66.17021 ], [ -34.905067, 66.157529 ], [ -34.939417, 66.150968 ], [ -35.02694, 66.127384 ], [ -35.079713, 66.118973 ], [ -35.117105, 66.116619 ], [ -35.210639, 66.124015 ], [ -35.215662, 66.124313 ], [ -35.282442, 66.137176 ], [ -35.368303, 66.095177 ], [ -35.426177, 66.066145 ], [ -35.506648, 65.967263 ], [ -35.545396, 65.920437 ], [ -35.634159, 65.882211 ], [ -35.682466, 65.890232 ], [ -35.752413, 65.874951 ], [ -35.820625, 65.852622 ], [ -35.866378, 65.831956 ], [ -35.986144, 65.788572 ], [ -36.050842, 65.786221 ], [ -36.031987, 65.713084 ], [ -36.055284, 65.645309 ], [ -36.111426, 65.602852 ], [ -36.118453, 65.600288 ], [ -36.261152, 65.620232 ], [ -36.298763, 65.608899 ], [ -36.302143, 65.608517 ], [ -36.37159, 65.621595 ], [ -36.413511, 65.64366 ], [ -36.454081, 65.671277 ], [ -36.578674, 65.672752 ], [ -36.588836, 65.645597 ], [ -36.608332, 65.549142 ], [ -36.718085, 65.497806 ], [ -36.750738, 65.494135 ], [ -36.765771, 65.492933 ], [ -36.779137, 65.487272 ], [ -36.916572, 65.440285 ], [ -36.927669, 65.439591 ], [ -37.03844, 65.400805 ], [ -37.106951, 65.412083 ], [ -37.111999, 65.409637 ], [ -37.142974, 65.398897 ], [ -37.181683, 65.394323 ], [ -37.198101, 65.39507 ], [ -37.229861, 65.400864 ], [ -37.265534, 65.419576 ], [ -37.33671, 65.478888 ], [ -37.362692, 65.506187 ], [ -37.41688, 65.491651 ], [ -37.470288, 65.477454 ], [ -37.5, 65.471518 ], [ -37.5, -4.505914 ], [ -37.498358, -4.505626 ], [ -37.279315, -4.585496 ], [ -37.172673, -4.695949 ], [ -37.123054, -4.807029 ], [ -37.055997, -4.813931 ], [ -36.945752, -4.799983 ], [ -36.816931, -4.845165 ], [ -36.758435, -4.898115 ], [ -36.739023, -4.92377 ], [ -36.730709, -4.937552 ], [ -36.721053, -4.942494 ], [ -36.71388, -4.944897 ], [ -36.69552, -4.943712 ], [ -36.663086, -4.950725 ], [ -36.645499, -4.960115 ], [ -36.570602, -4.960928 ], [ -36.565055, -4.957621 ], [ -36.533905, -4.944579 ], [ -36.465045, -4.941686 ], [ -36.411521, -4.950784 ], [ -36.386347, -4.957012 ], [ -36.369543, -4.964994 ], [ -36.364657, -4.965984 ], [ -36.271418, -4.968349 ], [ -36.226986, -4.974134 ], [ -36.182806, -4.97584 ], [ -36.171218, -4.976287 ], [ -36.160008, -4.975116 ], [ -36.012257, -4.926544 ], [ -35.951703, -4.925163 ], [ -35.628744, -4.99144 ], [ -35.532556, -5.017888 ], [ -35.433071, -5.051555 ], [ -35.349791, -5.117751 ], [ -35.288747, -5.182893 ], [ -35.175328, -5.39379 ], [ -35.139356, -5.450255 ], [ -35.070145, -5.711764 ], [ -35.033175, -5.892531 ], [ -35.010685, -5.925569 ], [ -35.002264, -5.943044 ], [ -34.998285, -5.953359 ], [ -34.990462, -5.989322 ], [ -34.989936, -5.998053 ], [ -34.990258, -6.011093 ], [ -34.989261, -6.01277 ], [ -34.981045, -6.049949 ], [ -34.980095, -6.129477 ], [ -34.954308, -6.149965 ], [ -34.928953, -6.188242 ], [ -34.919829, -6.233239 ], [ -34.914507, -6.283994 ], [ -34.85763, -6.407669 ], [ -34.846367, -6.581719 ], [ -34.8135, -6.654249 ], [ -34.794216, -6.795801 ], [ -34.749015, -6.83923 ], [ -34.703257, -7.007292 ], [ -34.709293, -7.062822 ], [ -34.670125, -7.159769 ], [ -34.682326, -7.2401 ], [ -34.683599, -7.487899 ], [ -34.692726, -7.532482 ], [ -34.703892, -7.564175 ], [ -34.703811, -7.564323 ], [ -34.690921, -7.600796 ], [ -34.690305, -7.639475 ], [ -34.702026, -7.67634 ], [ -34.711674, -7.695346 ], [ -34.719298, -7.815212 ], [ -34.699732, -7.928145 ], [ -34.717744, -8.053137 ], [ -34.756311, -8.124898 ], [ -34.812664, -8.29278 ], [ -34.811379, -8.30051 ], [ -34.811302, -8.304648 ], [ -34.813942, -8.374363 ], [ -34.854988, -8.47637 ], [ -34.884072, -8.565656 ], [ -34.888772, -8.585753 ], [ -34.935107, -8.664674 ], [ -35.029642, -8.951366 ], [ -35.1268, -9.112738 ], [ -35.210366, -9.271087 ], [ -35.45969, -9.560847 ], [ -35.555875, -9.655819 ], [ -35.591095, -9.737165 ], [ -35.696989, -9.798744 ], [ -35.956261, -10.151717 ], [ -36.015836, -10.195013 ], [ -36.048935, -10.241398 ], [ -36.087082, -10.266401 ], [ -36.106161, -10.281953 ], [ -36.116547, -10.293484 ], [ -36.14937, -10.311817 ], [ -36.166939, -10.330895 ], [ -36.170559, -10.333931 ], [ -36.169871, -10.370568 ], [ -36.180396, -10.405893 ], [ -36.248194, -10.487887 ], [ -36.336088, -10.607461 ], [ -36.395928, -10.637006 ], [ -36.533485, -10.670339 ], [ -36.785514, -10.839387 ], [ -36.815351, -10.87365 ], [ -36.923238, -11.010019 ], [ -36.961414, -11.078957 ], [ -37.034585, -11.192879 ], [ -37.035561, -11.210747 ], [ -37.049197, -11.245896 ], [ -37.05514, -11.256091 ], [ -37.133363, -11.320195 ], [ -37.195922, -11.417492 ], [ -37.334745, -11.644769 ], [ -37.337267, -11.652881 ], [ -37.5, -12.018852 ], [ -37.5, -53.0 ], [ -42.5, -53.0 ], [ -42.479643, -55.0 ], [ -37.5, -55.0 ], [ -37.5, -90.0 ], [ -52.5, -90.0 ], [ -52.5, -33.130601 ], [ -52.560607, -33.231605 ], [ -52.701394, -33.386417 ], [ -52.870376, -33.518675 ], [ -53.150252, -33.749879 ], [ -53.282441, -33.834551 ], [ -53.377818, -33.921705 ], [ -53.411502, -34.086311 ], [ -53.448349, -34.15134 ], [ -53.539028, -34.216841 ], [ -53.646721, -34.325081 ], [ -53.638418, -34.382192 ], [ -53.710226, -34.501911 ], [ -53.919704, -34.612685 ], [ -54.011908, -34.682906 ], [ -54.095894, -34.79148 ], [ -54.178248, -34.797616 ], [ -54.395409, -34.877967 ], [ -54.583279, -34.968241 ], [ -54.660508, -34.982365 ], [ -54.761666, -35.032209 ], [ -54.81639, -35.147255 ], [ -54.896606, -35.167416 ], [ -54.968469, -35.134516 ], [ -55.063722, -35.037779 ], [ -55.125714, -35.005587 ], [ -55.230384, -35.028933 ], [ -55.317339, -35.013036 ], [ -55.397577, -34.926557 ], [ -55.554409, -34.921193 ], [ -55.618556, -34.900822 ], [ -55.779701, -34.903666 ], [ -55.818343, -35.018672 ], [ -55.880923, -35.070056 ], [ -55.992644, -35.057412 ], [ -56.031713, -35.015825 ], [ -56.115794, -35.05109 ], [ -56.360717, -35.022534 ], [ -56.492197, -34.944292 ], [ -56.53697, -34.888574 ], [ -56.681411, -34.842588 ], [ -56.838781, -34.814895 ], [ -56.963196, -34.760163 ], [ -56.998148, -34.715694 ], [ -57.126446, -34.635254 ], [ -57.164902, -34.579218 ], [ -57.378283, -34.561743 ], [ -57.507559, -34.606821 ], [ -57.597128, -34.606063 ], [ -57.642293, -34.5799 ], [ -57.762882, -34.603595 ], [ -57.859332, -34.604951 ], [ -57.929853, -34.579802 ], [ -58.004598, -34.493989 ], [ -58.018433, -34.435064 ], [ -58.075198, -34.362856 ], [ -58.170125, -34.286442 ], [ -58.288177, -34.305873 ], [ -58.359224, -34.374294 ], [ -58.362451, -34.462513 ], [ -58.306268, -34.486775 ], [ -58.233951, -34.574588 ], [ -58.131788, -34.63547 ], [ -57.969522, -34.674851 ], [ -57.862176, -34.716007 ], [ -57.615132, -34.837616 ], [ -57.522315, -34.903239 ], [ -57.454607, -34.925659 ], [ -57.262021, -35.064686 ], [ -57.099715, -35.234532 ], [ -57.027114, -35.33998 ], [ -56.999912, -35.463939 ], [ -57.025562, -35.534202 ], [ -57.199759, -35.740856 ], [ -57.267816, -35.847659 ], [ -57.256252, -35.932697 ], [ -57.171738, -36.074656 ], [ -57.094209, -36.140675 ], [ -56.960088, -36.221664 ], [ -56.872079, -36.218188 ], [ -56.81672, -36.182699 ], [ -56.735686, -36.184657 ], [ -56.657678, -36.238061 ], [ -56.610339, -36.306002 ], [ -56.573805, -36.416046 ], [ -56.551141, -36.711005 ], [ -56.554936, -36.93573 ], [ -56.575585, -36.977877 ], [ -56.888366, -37.361695 ], [ -57.02965, -37.579027 ], [ -57.340325, -37.8465 ], [ -57.400028, -37.919877 ], [ -57.405385, -38.031945 ], [ -57.429727, -38.135369 ], [ -57.477903, -38.204322 ], [ -57.624198, -38.31498 ], [ -57.816684, -38.411941 ], [ -58.150451, -38.55671 ], [ -58.471297, -38.653965 ], [ -58.682947, -38.695703 ], [ -58.737503, -38.717894 ], [ -59.063772, -38.811562 ], [ -59.238109, -38.835928 ], [ -59.401208, -38.873052 ], [ -59.612481, -38.906555 ], [ -59.778364, -38.952889 ], [ -60.035429, -38.980621 ], [ -60.380468, -39.035568 ], [ -60.497731, -39.045236 ], [ -60.823432, -39.098606 ], [ -61.046813, -39.103991 ], [ -61.131367, -39.124153 ], [ -61.375027, -39.107998 ], [ -61.556545, -39.134766 ], [ -61.638086, -39.129378 ], [ -61.733213, -39.097736 ], [ -61.743345, -39.260249 ], [ -61.776275, -39.320538 ], [ -61.892237, -39.356221 ], [ -61.892171, -39.407676 ], [ -61.989872, -39.650179 ], [ -61.994898, -39.889614 ], [ -62.06892, -39.990798 ], [ -61.989867, -40.122449 ], [ -61.981537, -40.216952 ], [ -62.028985, -40.308173 ], [ -62.006722, -40.379772 ], [ -62.068148, -40.537471 ], [ -62.050142, -40.595051 ], [ -62.060983, -40.680883 ], [ -62.124282, -40.748907 ], [ -62.219016, -40.944572 ], [ -62.358549, -41.030185 ], [ -62.473772, -41.060589 ], [ -62.701769, -41.153077 ], [ -62.923291, -41.216831 ], [ -63.042925, -41.270127 ], [ -63.150237, -41.282209 ], [ -63.819333, -41.279916 ], [ -63.917102, -41.251024 ], [ -63.995269, -41.198004 ], [ -64.15089, -41.135247 ], [ -64.278787, -41.112844 ], [ -64.471195, -41.022342 ], [ -64.762201, -40.94627 ], [ -64.920453, -40.955089 ], [ -65.013753, -40.908497 ], [ -65.057759, -41.006436 ], [ -65.052947, -41.078482 ], [ -64.98316, -41.350162 ], [ -64.910012, -41.447842 ], [ -64.884625, -41.547063 ], [ -64.91347, -41.696631 ], [ -64.890836, -41.786347 ], [ -64.954043, -41.947388 ], [ -64.933262, -42.013555 ], [ -64.843367, -42.074155 ], [ -64.728359, -42.095518 ], [ -64.426374, -42.131855 ], [ -64.114991, -42.066636 ], [ -63.971671, -41.986292 ], [ -63.798798, -41.950469 ], [ -63.725863, -41.95909 ], [ -63.657825, -42.004413 ], [ -63.588539, -42.141563 ], [ -63.536371, -42.194978 ], [ -63.473342, -42.319715 ], [ -63.488395, -42.431788 ], [ -63.473434, -42.647512 ], [ -63.517865, -42.726981 ], [ -63.525728, -42.815647 ], [ -63.569157, -42.869993 ], [ -63.648795, -42.913031 ], [ -64.075057, -42.9948 ], [ -64.188439, -42.987422 ], [ -64.252141, -43.095928 ], [ -64.445074, -43.190567 ], [ -64.658582, -43.244398 ], [ -64.839956, -43.315173 ], [ -64.93066, -43.373436 ], [ -64.961446, -43.477007 ], [ -65.221153, -43.712498 ], [ -65.194746, -43.774524 ], [ -65.197472, -43.858988 ], [ -65.147036, -43.889959 ], [ -65.080522, -43.981895 ], [ -65.075966, -44.085639 ], [ -65.110901, -44.189714 ], [ -65.151381, -44.237305 ], [ -65.095032, -44.355032 ], [ -65.113394, -44.433273 ], [ -65.165193, -44.484267 ], [ -65.189316, -44.593284 ], [ -65.321185, -44.696749 ], [ -65.482188, -44.725254 ], [ -65.517621, -44.760107 ], [ -65.440556, -44.803057 ], [ -65.401424, -44.940839 ], [ -65.302817, -45.077888 ], [ -65.314953, -45.155839 ], [ -65.378397, -45.213931 ], [ -65.506153, -45.19892 ], [ -65.538966, -45.162321 ], [ -65.765265, -45.202535 ], [ -65.839939, -45.179079 ], [ -65.880159, -45.221425 ], [ -65.948871, -45.238819 ], [ -66.095539, -45.186596 ], [ -66.132613, -45.111068 ], [ -66.25462, -45.175161 ], [ -66.345562, -45.17869 ], [ -66.452624, -45.329136 ], [ -66.520833, -45.34853 ], [ -66.645793, -45.33787 ], [ -66.835077, -45.354261 ], [ -66.962425, -45.418439 ], [ -67.135031, -45.625352 ], [ -67.231034, -45.690283 ], [ -67.262515, -45.84078 ], [ -67.360858, -45.910004 ], [ -67.419934, -46.013943 ], [ -67.50611, -46.128541 ], [ -67.494631, -46.212878 ], [ -67.450901, -46.305785 ], [ -67.341651, -46.461657 ], [ -67.283367, -46.511115 ], [ -67.030856, -46.620739 ], [ -66.956231, -46.714442 ], [ -66.879966, -46.755752 ], [ -66.703213, -46.919204 ], [ -66.612486, -46.936896 ], [ -66.481445, -46.932688 ], [ -66.185034, -46.975978 ], [ -65.975914, -46.956428 ], [ -65.840636, -46.988685 ], [ -65.665934, -47.116639 ], [ -65.638178, -47.154291 ], [ -65.59596, -47.32922 ], [ -65.619917, -47.525359 ], [ -65.724666, -47.789572 ], [ -65.650604, -47.888171 ], [ -65.665285, -47.999957 ], [ -65.721989, -48.059298 ], [ -65.787808, -48.07555 ], [ -65.792524, -48.140398 ], [ -65.840343, -48.206972 ], [ -65.911592, -48.236847 ], [ -65.994371, -48.226697 ], [ -66.043555, -48.251061 ], [ -66.139434, -48.360575 ], [ -66.054721, -48.45864 ], [ -66.05643, -48.527995 ], [ -66.117667, -48.599023 ], [ -66.242982, -48.60366 ], [ -66.302766, -48.544709 ], [ -66.313161, -48.474581 ], [ -66.367865, -48.472582 ], [ -66.449469, -48.530391 ], [ -66.610318, -48.554541 ], [ -66.788225, -48.675277 ], [ -66.934393, -48.72564 ], [ -66.980046, -48.829632 ], [ -67.095033, -48.853942 ], [ -67.200882, -48.941261 ], [ -67.324476, -48.990073 ], [ -67.483951, -49.12638 ], [ -67.466398, -49.280391 ], [ -67.532292, -49.449244 ], [ -67.576076, -49.609995 ], [ -67.593707, -49.768804 ], [ -67.676797, -49.96377 ], [ -67.846598, -50.108812 ], [ -67.946133, -50.166359 ], [ -68.116515, -50.226775 ], [ -68.266669, -50.244697 ], [ -68.325116, -50.288239 ], [ -68.734251, -50.41396 ], [ -68.83759, -50.480332 ], [ -68.966856, -50.61996 ], [ -69.015656, -50.764118 ], [ -69.002867, -50.849875 ], [ -69.035366, -50.979474 ], [ -69.012402, -51.091602 ], [ -68.912815, -51.311664 ], [ -68.894432, -51.38285 ], [ -68.828497, -51.504154 ], [ -68.836612, -51.607472 ], [ -68.75534, -51.710629 ], [ -68.658277, -51.861786 ], [ -68.543836, -51.987599 ], [ -68.423996, -52.088677 ], [ -68.278147, -52.230329 ], [ -68.244748, -52.321808 ], [ -68.272767, -52.41344 ], [ -68.469028, -52.632035 ], [ -68.191748, -52.875859 ], [ -68.143536, -52.949786 ], [ -68.082229, -53.089639 ], [ -68.080058, -53.171222 ], [ -68.049698, -53.238115 ], [ -67.965577, -53.340277 ], [ -67.913474, -53.488894 ], [ -67.734211, -53.619885 ], [ -67.49942, -53.735802 ], [ -67.436278, -53.839136 ], [ -67.292307, -53.920003 ], [ -67.239244, -53.963867 ], [ -67.055833, -54.016421 ], [ -66.868922, -54.101125 ], [ -66.775786, -54.120217 ], [ -66.605871, -54.206215 ], [ -66.487443, -54.302624 ], [ -66.319071, -54.35188 ], [ -66.213804, -54.409889 ], [ -65.969879, -54.496717 ], [ -65.841448, -54.513211 ], [ -65.679883, -54.552949 ], [ -65.398962, -54.530452 ], [ -65.217885, -54.499603 ], [ -65.059242, -54.548526 ], [ -65.020289, -54.578965 ], [ -64.991846, -54.684378 ], [ -65.069243, -54.775901 ], [ -65.119652, -54.882892 ], [ -65.211667, -54.985802 ], [ -65.271484, -55.027683 ], [ -65.37118, -55.057375 ], [ -65.44346, -55.042668 ], [ -65.625303, -55.088172 ], [ -65.72825, -55.081592 ], [ -65.808784, -55.016468 ], [ -65.854989, -55.012448 ], [ -65.91907, -55.056495 ], [ -66.025141, -55.091249 ], [ -66.212891, -55.115523 ], [ -66.299932, -55.112112 ], [ -66.308312, -55.260966 ], [ -66.335689, -55.304881 ], [ -66.447701, -55.385838 ], [ -66.572572, -55.409374 ], [ -66.6447, -55.40179 ], [ -66.676649, -55.51312 ], [ -66.645216, -55.578495 ], [ -66.657196, -55.650039 ], [ -66.72053, -55.707933 ], [ -66.657802, -55.764939 ], [ -66.637185, -55.837951 ], [ -66.6845, -55.932865 ], [ -66.752977, -55.959964 ], [ -66.869325, -55.924605 ], [ -66.937848, -56.02184 ], [ -67.056256, -56.049952 ], [ -67.105414, -56.031872 ], [ -67.144157, -56.072022 ], [ -67.276851, -56.099228 ], [ -67.363757, -56.07278 ], [ -67.467576, -55.993698 ], [ -67.526883, -56.008284 ], [ -67.622511, -56.020868 ], [ -67.665033, -56.006388 ], [ -67.678257, -55.995796 ], [ -67.693726, -55.992624 ], [ -67.708007, -55.988815 ], [ -67.743148, -55.996564 ], [ -67.802448, -55.984295 ], [ -67.82174, -55.984701 ], [ -67.859147, -55.977104 ], [ -67.864801, -55.975033 ], [ -67.910292, -55.950412 ], [ -67.953807, -55.883616 ], [ -67.958035, -55.799977 ], [ -67.959008, -55.798078 ], [ -67.964659, -55.80401 ], [ -67.994538, -55.824956 ], [ -68.045241, -55.840209 ], [ -68.113909, -55.835917 ], [ -68.140445, -55.82147 ], [ -68.247468, -55.747445 ], [ -68.284141, -55.739567 ], [ -68.386965, -55.666493 ], [ -68.442673, -55.680546 ], [ -68.510303, -55.711102 ], [ -68.541315, -55.709638 ], [ -68.553702, -55.709608 ], [ -68.6615, -55.716024 ], [ -68.665431, -55.717232 ], [ -68.738648, -55.706829 ], [ -68.762375, -55.695474 ], [ -68.839884, -55.693236 ], [ -68.870231, -55.703639 ], [ -68.873984, -55.704105 ], [ -68.87937, -55.708144 ], [ -68.928493, -55.730245 ], [ -68.964622, -55.734433 ], [ -68.985799, -55.73258 ], [ -68.995835, -55.736925 ], [ -69.039792, -55.743084 ], [ -69.042397, -55.743817 ], [ -69.131005, -55.736258 ], [ -69.150769, -55.722488 ], [ -69.19019, -55.732759 ], [ -69.227211, -55.729637 ], [ -69.267004, -55.713421 ], [ -69.296052, -55.687519 ], [ -69.316183, -55.666218 ], [ -69.484388, -55.610873 ] ] ] ] } }, +{ "type": "Feature", "properties": { "name": "+6.5" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.347221, 28.210583 ], [ 97.460861, 28.26811 ], [ 97.477081, 28.369528 ], [ 97.548531, 28.495832 ], [ 97.620918, 28.480139 ], [ 97.717972, 28.50386 ], [ 97.741608, 28.415167 ], [ 97.790581, 28.344055 ], [ 97.905083, 28.37211 ], [ 98.021362, 28.264694 ], [ 98.150887, 28.113916 ], [ 98.138443, 27.968805 ], [ 98.207359, 27.905111 ], [ 98.180252, 27.847416 ], [ 98.221359, 27.732222 ], [ 98.295364, 27.639639 ], [ 98.318832, 27.542778 ], [ 98.364418, 27.525972 ], [ 98.424721, 27.588722 ], [ 98.428276, 27.689028 ], [ 98.467583, 27.690166 ], [ 98.580917, 27.609806 ], [ 98.692917, 27.589666 ], [ 98.696442, 27.391056 ], [ 98.73217, 27.317194 ], [ 98.686859, 27.213722 ], [ 98.700447, 27.118221 ], [ 98.760887, 27.064556 ], [ 98.733643, 27.005167 ], [ 98.767418, 26.810055 ], [ 98.76178, 26.731417 ], [ 98.781059, 26.619888 ], [ 98.756332, 26.564083 ], [ 98.737198, 26.384556 ], [ 98.676636, 26.31575 ], [ 98.672806, 26.249945 ], [ 98.73275, 26.18786 ], [ 98.690666, 26.119194 ], [ 98.640251, 26.147972 ], [ 98.572861, 26.119083 ], [ 98.610664, 25.989861 ], [ 98.652473, 25.971222 ], [ 98.694252, 25.843721 ], [ 98.637581, 25.804222 ], [ 98.552055, 25.848417 ], [ 98.475777, 25.797695 ], [ 98.439392, 25.693056 ], [ 98.40583, 25.673973 ], [ 98.369164, 25.573 ], [ 98.320221, 25.546278 ], [ 98.182663, 25.625334 ], [ 98.180496, 25.553278 ], [ 98.113525, 25.394417 ], [ 98.062553, 25.309389 ], [ 98.014641, 25.303194 ], [ 97.949059, 25.223722 ], [ 97.845024, 25.267889 ], [ 97.782143, 25.123333 ], [ 97.729942, 25.06525 ], [ 97.717445, 24.980833 ], [ 97.767723, 24.823473 ], [ 97.686775, 24.825251 ], [ 97.64222, 24.776777 ], [ 97.57589, 24.763334 ], [ 97.557587, 24.496 ], [ 97.536583, 24.435862 ], [ 97.673553, 24.453194 ], [ 97.713806, 24.371361 ], [ 97.669357, 24.307167 ], [ 97.761475, 24.278805 ], [ 97.728249, 24.193527 ], [ 97.734276, 24.117027 ], [ 97.661888, 24.060362 ], [ 97.632637, 24.0 ], [ 97.534081, 23.942612 ], [ 97.673141, 23.862055 ], [ 97.795135, 23.947611 ], [ 97.852364, 23.952888 ], [ 97.885246, 24.010221 ], [ 98.029747, 24.071222 ], [ 98.230919, 24.116888 ], [ 98.345886, 24.102194 ], [ 98.427109, 24.126167 ], [ 98.535919, 24.129583 ], [ 98.608223, 24.094749 ], [ 98.71167, 24.124306 ], [ 98.846474, 24.134277 ], [ 98.839722, 24.050556 ], [ 98.76886, 24.023556 ], [ 98.692802, 23.920334 ], [ 98.704498, 23.789778 ], [ 98.813499, 23.770971 ], [ 98.824028, 23.705723 ], [ 98.882919, 23.590889 ], [ 98.811058, 23.551167 ], [ 98.829056, 23.473639 ], [ 98.878998, 23.487083 ], [ 98.923058, 23.423111 ], [ 98.941582, 23.312166 ], [ 98.897415, 23.219694 ], [ 98.968002, 23.171749 ], [ 99.040558, 23.165751 ], [ 99.109802, 23.093695 ], [ 99.212196, 23.093111 ], [ 99.360863, 23.133806 ], [ 99.385887, 23.109722 ], [ 99.511276, 23.08375 ], [ 99.518669, 23.004 ], [ 99.564224, 22.925806 ], [ 99.509087, 22.908278 ], [ 99.32547, 22.751083 ], [ 99.387611, 22.569 ], [ 99.389526, 22.499416 ], [ 99.289642, 22.403278 ], [ 99.236832, 22.253416 ], [ 99.168976, 22.155251 ], [ 99.218941, 22.11875 ], [ 99.402115, 22.103138 ], [ 99.476418, 22.137472 ], [ 99.519554, 22.104944 ], [ 99.652611, 22.10486 ], [ 99.696556, 22.066555 ], [ 99.757919, 22.077944 ], [ 99.856613, 22.02375 ], [ 99.891418, 22.067112 ], [ 99.970612, 22.052029 ], [ 99.997864, 21.97575 ], [ 99.949669, 21.866028 ], [ 99.986137, 21.718666 ], [ 100.026749, 21.692944 ], [ 100.14003, 21.694 ], [ 100.172531, 21.659916 ], [ 100.114807, 21.586611 ], [ 100.135582, 21.502056 ], [ 100.202583, 21.439362 ], [ 100.307976, 21.480473 ], [ 100.36158, 21.536583 ], [ 100.437447, 21.529083 ], [ 100.471443, 21.473139 ], [ 100.577774, 21.450251 ], [ 100.724419, 21.511499 ], [ 100.800781, 21.585083 ], [ 100.82811, 21.643389 ], [ 100.89183, 21.684889 ], [ 101.018028, 21.712139 ], [ 101.126526, 21.775444 ], [ 101.121246, 21.654556 ], [ 101.168114, 21.644194 ], [ 101.154747, 21.563862 ], [ 101.159225, 21.525888 ], [ 101.005386, 21.392221 ], [ 100.912613, 21.358973 ], [ 100.848808, 21.30261 ], [ 100.727028, 21.312111 ], [ 100.701721, 21.181833 ], [ 100.636948, 21.064278 ], [ 100.527863, 20.9575 ], [ 100.503502, 20.809889 ], [ 100.401276, 20.832001 ], [ 100.259476, 20.746944 ], [ 100.177803, 20.620527 ], [ 100.128441, 20.400667 ], [ 100.09642, 20.361195 ], [ 99.949448, 20.449444 ], [ 99.883919, 20.442139 ], [ 99.826111, 20.348917 ], [ 99.688667, 20.315472 ], [ 99.521858, 20.361221 ], [ 99.520752, 20.234249 ], [ 99.556442, 20.208279 ], [ 99.537277, 20.144751 ], [ 99.429192, 20.08639 ], [ 99.330475, 20.064112 ], [ 99.251724, 20.1145 ], [ 99.167809, 20.127945 ], [ 99.070724, 20.088499 ], [ 99.026642, 19.931139 ], [ 99.034943, 19.843666 ], [ 99.003555, 19.775249 ], [ 98.924583, 19.744139 ], [ 98.833748, 19.809944 ], [ 98.778473, 19.757694 ], [ 98.710335, 19.760361 ], [ 98.582527, 19.707527 ], [ 98.515221, 19.716055 ], [ 98.248528, 19.679806 ], [ 98.171143, 19.77014 ], [ 98.045166, 19.808584 ], [ 98.028275, 19.640806 ], [ 97.966637, 19.598749 ], [ 97.863556, 19.573639 ], [ 97.887001, 19.505611 ], [ 97.804253, 19.406473 ], [ 97.801498, 19.356638 ], [ 97.841972, 19.295584 ], [ 97.832031, 19.098972 ], [ 97.738503, 19.031195 ], [ 97.736191, 18.976084 ], [ 97.671165, 18.945444 ], [ 97.747803, 18.842251 ], [ 97.773445, 18.691278 ], [ 97.76767, 18.579222 ], [ 97.671524, 18.577833 ], [ 97.551552, 18.526028 ], [ 97.533165, 18.491722 ], [ 97.449142, 18.493805 ], [ 97.399834, 18.467388 ], [ 97.453667, 18.384445 ], [ 97.445442, 18.353971 ], [ 97.507309, 18.264528 ], [ 97.560944, 18.337055 ], [ 97.62986, 18.309834 ], [ 97.623192, 18.216333 ], [ 97.742027, 17.978582 ], [ 97.678528, 17.867001 ], [ 97.697746, 17.820305 ], [ 97.777695, 17.750805 ], [ 97.802193, 17.674973 ], [ 97.905281, 17.586805 ], [ 97.929108, 17.539917 ], [ 97.998024, 17.504694 ], [ 98.178001, 17.255388 ], [ 98.293694, 17.14986 ], [ 98.349831, 17.041416 ], [ 98.412918, 17.049028 ], [ 98.456779, 17.0165 ], [ 98.537918, 16.888584 ], [ 98.49678, 16.835251 ], [ 98.467888, 16.7255 ], [ 98.572639, 16.624584 ], [ 98.578529, 16.56275 ], [ 98.662971, 16.452667 ], [ 98.643692, 16.408472 ], [ 98.674858, 16.285917 ], [ 98.819031, 16.380861 ], [ 98.832832, 16.432362 ], [ 98.917503, 16.394751 ], [ 98.900002, 16.264723 ], [ 98.855614, 16.238832 ], [ 98.847031, 16.141472 ], [ 98.806, 16.115278 ], [ 98.70208, 16.144417 ], [ 98.617302, 16.051445 ], [ 98.616081, 15.9615 ], [ 98.58783, 15.908139 ], [ 98.614136, 15.857028 ], [ 98.579613, 15.784194 ], [ 98.559723, 15.598056 ], [ 98.592087, 15.436861 ], [ 98.583641, 15.362028 ], [ 98.506836, 15.381722 ], [ 98.419807, 15.34675 ], [ 98.402809, 15.303166 ], [ 98.319778, 15.308139 ], [ 98.26889, 15.237139 ], [ 98.204941, 15.218083 ], [ 98.190613, 15.111055 ], [ 98.237831, 15.035944 ], [ 98.218529, 14.988472 ], [ 98.254837, 14.907639 ], [ 98.256142, 14.815 ], [ 98.303307, 14.739417 ], [ 98.426918, 14.623722 ], [ 98.499969, 14.532056 ], [ 98.519974, 14.475166 ], [ 98.604332, 14.366889 ], [ 98.610443, 14.314639 ], [ 98.70211, 14.266528 ], [ 98.890915, 14.116583 ], [ 98.963608, 14.097278 ], [ 99.028778, 13.946389 ], [ 99.058609, 13.935389 ], [ 99.132942, 13.763473 ], [ 99.176613, 13.715305 ], [ 99.181274, 13.579056 ], [ 99.214226, 13.455944 ], [ 99.209724, 13.197083 ], [ 99.141167, 13.195528 ], [ 99.136024, 13.098695 ], [ 99.111443, 13.073778 ], [ 99.204697, 12.958472 ], [ 99.188225, 12.917417 ], [ 99.254997, 12.721027 ], [ 99.374191, 12.621111 ], [ 99.443916, 12.581639 ], [ 99.415169, 12.472083 ], [ 99.451836, 12.4025 ], [ 99.446861, 12.339 ], [ 99.504753, 12.182889 ], [ 99.559891, 12.145833 ], [ 99.553055, 12.010445 ], [ 99.60128, 11.970222 ], [ 99.583725, 11.905583 ], [ 99.662781, 11.827111 ], [ 99.639893, 11.728389 ], [ 99.57058, 11.625417 ], [ 99.514641, 11.633778 ], [ 99.467583, 11.589306 ], [ 99.457695, 11.493389 ], [ 99.402611, 11.460944 ], [ 99.409805, 11.396639 ], [ 99.32122, 11.311973 ], [ 99.325165, 11.27625 ], [ 99.17453, 11.040083 ], [ 99.032417, 10.965138 ], [ 99.001747, 10.831555 ], [ 98.927887, 10.822278 ], [ 98.791832, 10.68225 ], [ 98.775665, 10.629194 ], [ 98.821724, 10.526694 ], [ 98.801414, 10.448112 ], [ 98.756165, 10.385361 ], [ 98.709335, 10.223528 ], [ 98.681747, 10.177584 ], [ 98.246384, 9.364133 ], [ 98.144903, 9.190062 ], [ 97.5, 9.042358 ], [ 97.5, 15.901856 ], [ 97.495427, 15.916165 ], [ 97.484954, 15.924938 ], [ 97.438198, 16.072987 ], [ 97.455653, 16.13287 ], [ 97.396055, 16.187075 ], [ 97.346986, 16.269607 ], [ 97.34455, 16.362018 ], [ 97.286133, 16.386777 ], [ 97.23856, 16.468967 ], [ 97.217012, 16.581744 ], [ 97.181325, 16.614029 ], [ 97.085011, 16.783079 ], [ 97.053678, 16.878563 ], [ 96.999435, 16.926629 ], [ 96.952301, 16.76719 ], [ 96.876365, 16.631882 ], [ 96.716009, 16.471937 ], [ 96.637546, 16.423486 ], [ 96.534396, 16.390359 ], [ 96.439687, 16.382486 ], [ 96.346539, 16.290562 ], [ 96.17432, 16.201555 ], [ 96.047412, 16.120688 ], [ 95.899471, 16.078259 ], [ 95.827122, 16.019395 ], [ 95.759658, 15.87466 ], [ 95.605007, 15.707812 ], [ 95.464399, 15.606833 ], [ 95.297323, 15.556261 ], [ 95.096936, 15.54194 ], [ 95.016199, 15.552667 ], [ 94.943812, 15.620981 ], [ 94.79084, 15.666085 ], [ 94.685893, 15.683181 ], [ 94.518484, 15.795992 ], [ 94.492464, 15.756124 ], [ 94.383519, 15.713033 ], [ 94.314731, 15.747154 ], [ 94.249919, 15.743557 ], [ 94.187748, 15.780838 ], [ 94.155261, 15.874118 ], [ 94.077569, 16.034451 ], [ 94.114512, 16.289355 ], [ 94.107073, 16.382973 ], [ 94.135521, 16.463203 ], [ 94.133635, 16.579865 ], [ 94.238367, 16.683308 ], [ 94.272628, 16.816166 ], [ 94.262012, 16.902201 ], [ 94.29371, 16.980524 ], [ 94.33622, 17.013529 ], [ 94.325122, 17.189145 ], [ 94.442969, 17.401571 ], [ 94.422151, 17.53714 ], [ 94.439095, 17.619688 ], [ 94.370279, 17.771201 ], [ 94.366062, 17.861685 ], [ 94.319026, 18.014846 ], [ 94.323854, 18.120881 ], [ 94.235254, 18.171212 ], [ 94.202498, 18.251385 ], [ 94.220028, 18.353821 ], [ 94.124797, 18.488152 ], [ 94.125596, 18.588969 ], [ 94.073565, 18.629764 ], [ 93.953136, 18.61738 ], [ 93.910747, 18.559767 ], [ 94.002572, 18.513102 ], [ 94.030833, 18.434064 ], [ 94.00941, 18.361907 ], [ 93.949225, 18.316704 ], [ 93.829506, 18.338393 ], [ 93.786363, 18.412284 ], [ 93.794826, 18.483596 ], [ 93.708463, 18.51065 ], [ 93.559435, 18.594002 ], [ 93.436725, 18.710121 ], [ 93.377325, 18.809899 ], [ 93.364441, 18.889533 ], [ 93.406533, 18.963022 ], [ 93.535521, 19.021419 ], [ 93.477319, 19.140819 ], [ 93.366436, 19.30755 ], [ 93.353444, 19.349617 ], [ 93.39365, 19.485374 ], [ 93.377876, 19.601651 ], [ 93.293216, 19.705672 ], [ 93.187593, 19.667799 ], [ 93.081374, 19.711688 ], [ 93.007039, 19.700926 ], [ 92.935393, 19.742182 ], [ 92.896624, 19.850689 ], [ 92.803246, 20.01508 ], [ 92.638333, 20.149256 ], [ 92.530877, 20.377062 ], [ 92.415469, 20.504495 ], [ 92.320058, 20.465411 ], [ 92.248745, 20.493636 ], [ 92.194555, 20.606924 ], [ 92.20732, 20.683382 ], [ 92.340775, 20.752388 ], [ 92.312973, 20.846945 ], [ 92.272942, 20.906639 ], [ 92.254974, 21.061527 ], [ 92.195442, 21.126917 ], [ 92.218307, 21.259556 ], [ 92.196808, 21.316528 ], [ 92.388863, 21.470362 ], [ 92.423836, 21.379168 ], [ 92.474556, 21.349194 ], [ 92.543587, 21.376055 ], [ 92.593559, 21.245167 ], [ 92.673668, 21.291277 ], [ 92.619446, 21.496056 ], [ 92.601219, 21.699223 ], [ 92.626663, 21.884583 ], [ 92.608803, 21.975861 ], [ 92.676086, 22.013195 ], [ 92.694359, 22.147388 ], [ 92.865219, 22.058916 ], [ 92.930275, 22.002138 ], [ 92.993721, 22.050362 ], [ 93.048752, 22.199499 ], [ 93.105469, 22.205444 ], [ 93.195724, 22.251167 ], [ 93.178917, 22.422361 ], [ 93.113113, 22.52739 ], [ 93.137802, 22.583555 ], [ 93.104553, 22.646139 ], [ 93.099915, 22.779417 ], [ 93.148415, 22.93136 ], [ 93.131302, 23.043972 ], [ 93.204803, 23.048555 ], [ 93.240028, 23.003639 ], [ 93.312859, 23.018499 ], [ 93.359833, 23.11414 ], [ 93.384666, 23.21839 ], [ 93.366333, 23.276611 ], [ 93.402527, 23.386499 ], [ 93.391502, 23.423056 ], [ 93.436752, 23.685278 ], [ 93.399864, 23.749861 ], [ 93.390808, 23.92436 ], [ 93.331253, 23.98311 ], [ 93.336555, 24.08625 ], [ 93.384277, 24.084694 ], [ 93.500252, 23.952694 ], [ 93.585197, 23.963583 ], [ 93.616554, 24.0 ], [ 93.761024, 24.0 ], [ 93.812309, 23.928944 ], [ 93.933167, 23.949888 ], [ 94.054779, 23.88961 ], [ 94.160698, 23.855473 ], [ 94.165779, 23.928612 ], [ 94.255447, 24.081861 ], [ 94.255806, 24.152445 ], [ 94.311775, 24.256306 ], [ 94.318275, 24.307917 ], [ 94.374809, 24.370472 ], [ 94.395226, 24.462723 ], [ 94.4505, 24.556917 ], [ 94.513557, 24.60111 ], [ 94.545891, 24.6975 ], [ 94.602859, 24.708389 ], [ 94.644806, 24.837139 ], [ 94.702003, 24.92275 ], [ 94.694916, 24.968861 ], [ 94.73967, 25.022112 ], [ 94.733498, 25.12925 ], [ 94.608665, 25.170639 ], [ 94.579056, 25.210527 ], [ 94.631165, 25.387306 ], [ 94.679581, 25.454611 ], [ 94.807724, 25.504473 ], [ 94.903114, 25.597389 ], [ 94.926414, 25.647167 ], [ 95.042862, 25.768223 ], [ 95.023834, 25.924583 ], [ 95.091698, 25.956139 ], [ 95.183418, 26.063583 ], [ 95.115692, 26.112167 ], [ 95.118553, 26.147751 ], [ 95.070831, 26.307861 ], [ 95.098305, 26.404694 ], [ 95.072418, 26.457556 ], [ 95.154747, 26.621334 ], [ 95.240776, 26.680334 ], [ 95.275414, 26.64325 ], [ 95.425636, 26.69364 ], [ 95.500946, 26.802334 ], [ 95.598503, 26.809166 ], [ 95.668747, 26.896 ], [ 95.747749, 26.910639 ], [ 95.808807, 27.00964 ], [ 95.923363, 27.032417 ], [ 96.035332, 27.187389 ], [ 96.094025, 27.224277 ], [ 96.292168, 27.288195 ], [ 96.563835, 27.303362 ], [ 96.628365, 27.366138 ], [ 96.783691, 27.349056 ], [ 96.887085, 27.252445 ], [ 96.871391, 27.183083 ], [ 97.125725, 27.088306 ], [ 97.167053, 27.126194 ], [ 96.965385, 27.367695 ], [ 96.901253, 27.458471 ], [ 96.920776, 27.497223 ], [ 96.89183, 27.616167 ], [ 96.967026, 27.663723 ], [ 97.017807, 27.738472 ], [ 97.123917, 27.789557 ], [ 97.259277, 27.907555 ], [ 97.36467, 27.947445 ], [ 97.398804, 28.024666 ], [ 97.317863, 28.107 ], [ 97.347221, 28.210583 ] ] ], [ [ [ 125.17937, -8.083568 ], [ 125.179370955087364, -8.083569814699079 ], [ 125.245713, -8.209622 ], [ 125.209097, -8.229172 ], [ 125.17937, -8.083568 ] ] ], [ [ [ 71.08725, 40.0 ], [ 71.007698, 40.039528 ], [ 71.003944, 40.174778 ], [ 71.081444, 40.150696 ], [ 71.119751, 40.017471 ], [ 71.229332, 39.91975 ], [ 71.180443, 39.875805 ], [ 71.112778, 39.915279 ], [ 71.08725, 40.0 ] ] ], [ [ [ 70.673615, 39.895248 ], [ 70.725441, 39.849972 ], [ 70.627975, 39.798695 ], [ 70.545998, 39.838638 ], [ 70.521248, 39.895611 ], [ 70.673615, 39.895248 ] ] ], [ [ [ 97.5, -11.5 ], [ 97.5, -12.8 ], [ 96.4, -12.8 ], [ 96.4, -11.5 ], [ 97.5, -11.5 ] ] ] ] } }, +{ "type": "Feature", "properties": { "name": "+6" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 97.5, 81.965368 ], [ 82.5, 81.965368 ], [ 82.5, 89.0 ], [ 97.5, 89.0 ], [ 97.5, 81.965368 ] ] ], [ [ [ 87.832306, 49.174999 ], [ 87.702332, 49.169693 ], [ 87.43808, 49.084667 ], [ 87.221725, 49.114418 ], [ 87.134697, 49.150806 ], [ 86.986, 49.103138 ], [ 86.855194, 49.107529 ], [ 86.82933, 49.050472 ], [ 86.723221, 48.990665 ], [ 86.738892, 48.906223 ], [ 86.810448, 48.850304 ], [ 86.751945, 48.794388 ], [ 86.763054, 48.714863 ], [ 86.671471, 48.631554 ], [ 86.634087, 48.624668 ], [ 86.591309, 48.546276 ], [ 86.448196, 48.499054 ], [ 86.318054, 48.500973 ], [ 86.214386, 48.435471 ], [ 86.050026, 48.447304 ], [ 85.839363, 48.425499 ], [ 85.735443, 48.370998 ], [ 85.61039, 48.156723 ], [ 85.612053, 48.083332 ], [ 85.54158, 47.939445 ], [ 85.621246, 47.607639 ], [ 85.6035, 47.519665 ], [ 85.698303, 47.397778 ], [ 85.690666, 47.218224 ], [ 85.5765, 47.190666 ], [ 85.529724, 47.059387 ], [ 85.445778, 47.064919 ], [ 85.322693, 47.046749 ], [ 85.219414, 47.051388 ], [ 85.190247, 47.006916 ], [ 85.069916, 46.933167 ], [ 84.982193, 46.918915 ], [ 84.962585, 46.871639 ], [ 84.826691, 46.832333 ], [ 84.703331, 46.834141 ], [ 84.780197, 46.902111 ], [ 84.70472, 46.996223 ], [ 84.569504, 46.996113 ], [ 84.507027, 46.977833 ], [ 84.420441, 47.010918 ], [ 84.372833, 46.997276 ], [ 84.214806, 46.999611 ], [ 84.038223, 46.965363 ], [ 83.760971, 47.029804 ], [ 83.701584, 47.030083 ], [ 83.555305, 47.068306 ], [ 83.458084, 47.131943 ], [ 83.416862, 47.121307 ], [ 83.343475, 47.176056 ], [ 83.244308, 47.178165 ], [ 83.174667, 47.223667 ], [ 83.030891, 47.212112 ], [ 82.979889, 47.030693 ], [ 82.936417, 47.012444 ], [ 82.890137, 46.876415 ], [ 82.807304, 46.749638 ], [ 82.739029, 46.517693 ], [ 82.578445, 46.281666 ], [ 82.52903, 46.184029 ], [ 82.504448, 45.983387 ], [ 82.418777, 45.86639 ], [ 82.289108, 45.632473 ], [ 82.275719, 45.545387 ], [ 82.429665, 45.468613 ], [ 82.590141, 45.44561 ], [ 82.630859, 45.359665 ], [ 82.592529, 45.231445 ], [ 82.57592, 45.210861 ], [ 82.486191, 45.120667 ], [ 82.326775, 45.215832 ], [ 82.240837, 45.235363 ], [ 82.114388, 45.207916 ], [ 82.008247, 45.158474 ], [ 81.92514, 45.168861 ], [ 81.907364, 45.205696 ], [ 81.827835, 45.199974 ], [ 81.78817, 45.306889 ], [ 81.689583, 45.366638 ], [ 81.626335, 45.353889 ], [ 81.555359, 45.303444 ], [ 81.452774, 45.268696 ], [ 81.112587, 45.219723 ], [ 81.075195, 45.174389 ], [ 80.951614, 45.167137 ], [ 80.854111, 45.127945 ], [ 80.751419, 45.157722 ], [ 80.606056, 45.110332 ], [ 80.445137, 45.102695 ], [ 80.402779, 45.052834 ], [ 80.298859, 45.06575 ], [ 80.231941, 45.032749 ], [ 80.081833, 45.049557 ], [ 79.995308, 44.969139 ], [ 79.851974, 44.904945 ], [ 79.960419, 44.878944 ], [ 79.989418, 44.817001 ], [ 80.040169, 44.800415 ], [ 80.143471, 44.83036 ], [ 80.246666, 44.839584 ], [ 80.340614, 44.820251 ], [ 80.446976, 44.757416 ], [ 80.489754, 44.711418 ], [ 80.361084, 44.656361 ], [ 80.404114, 44.609165 ], [ 80.342834, 44.481304 ], [ 80.400085, 44.289417 ], [ 80.402779, 44.197971 ], [ 80.447418, 44.075722 ], [ 80.454193, 44.003387 ], [ 80.506554, 43.919666 ], [ 80.519753, 43.834194 ], [ 80.590111, 43.741417 ], [ 80.745972, 43.448502 ], [ 80.660721, 43.312832 ], [ 80.744751, 43.29789 ], [ 80.799446, 43.175415 ], [ 80.716499, 43.132332 ], [ 80.593086, 43.131748 ], [ 80.502113, 43.076752 ], [ 80.409691, 43.057304 ], [ 80.39492, 42.995419 ], [ 80.482719, 42.940498 ], [ 80.590836, 42.895668 ], [ 80.419586, 42.848362 ], [ 80.398087, 42.827389 ], [ 80.258331, 42.828445 ], [ 80.213974, 42.697056 ], [ 80.167336, 42.636585 ], [ 80.221306, 42.536251 ], [ 80.208527, 42.427723 ], [ 80.228165, 42.351665 ], [ 80.2715, 42.330639 ], [ 80.289024, 42.260139 ], [ 80.263031, 42.204029 ], [ 80.278748, 42.057777 ], [ 80.126526, 42.034752 ], [ 80.03167, 42.051613 ], [ 79.881531, 42.037998 ], [ 79.767525, 41.892113 ], [ 79.762527, 41.862305 ], [ 79.670502, 41.790085 ], [ 79.603722, 41.780918 ], [ 79.460556, 41.794224 ], [ 79.452026, 41.849194 ], [ 79.362587, 41.802387 ], [ 79.268753, 41.786278 ], [ 79.225441, 41.737751 ], [ 79.136528, 41.724083 ], [ 79.010109, 41.657639 ], [ 78.936996, 41.645557 ], [ 78.836365, 41.5755 ], [ 78.708443, 41.550694 ], [ 78.639832, 41.469582 ], [ 78.531998, 41.456085 ], [ 78.47625, 41.420723 ], [ 78.405029, 41.413502 ], [ 78.379471, 41.361279 ], [ 78.385498, 41.271084 ], [ 78.272392, 41.213276 ], [ 78.190025, 41.079029 ], [ 78.059387, 41.032776 ], [ 77.983192, 41.077805 ], [ 77.877525, 41.073193 ], [ 77.663834, 40.998585 ], [ 77.469833, 41.00111 ], [ 77.332031, 41.030056 ], [ 77.261169, 41.006554 ], [ 77.152809, 41.016388 ], [ 77.047279, 41.059696 ], [ 76.864052, 41.020943 ], [ 76.786087, 40.960667 ], [ 76.788803, 40.860001 ], [ 76.634003, 40.757332 ], [ 76.640358, 40.622833 ], [ 76.538193, 40.534863 ], [ 76.521332, 40.462612 ], [ 76.439888, 40.402416 ], [ 76.324806, 40.370609 ], [ 76.289108, 40.460804 ], [ 76.187584, 40.382805 ], [ 76.106667, 40.404804 ], [ 75.974831, 40.380112 ], [ 75.885223, 40.307888 ], [ 75.699913, 40.277279 ], [ 75.647057, 40.376945 ], [ 75.715248, 40.437363 ], [ 75.719475, 40.485085 ], [ 75.640892, 40.506916 ], [ 75.593109, 40.658722 ], [ 75.455559, 40.603249 ], [ 75.410057, 40.553333 ], [ 75.193947, 40.438751 ], [ 74.987892, 40.450584 ], [ 74.82811, 40.52475 ], [ 74.804947, 40.429611 ], [ 74.899475, 40.337082 ], [ 74.703552, 40.346111 ], [ 74.680252, 40.264221 ], [ 74.585915, 40.274529 ], [ 74.523666, 40.204277 ], [ 74.340446, 40.083862 ], [ 74.262863, 40.124832 ], [ 74.113304, 40.081055 ], [ 74.028503, 40.083637 ], [ 73.861946, 39.838085 ], [ 73.832832, 39.779804 ], [ 73.915108, 39.714638 ], [ 73.94136, 39.602917 ], [ 73.863831, 39.478889 ], [ 73.821419, 39.458946 ], [ 73.658249, 39.465084 ], [ 73.563248, 39.452057 ], [ 73.508972, 39.467777 ], [ 73.390114, 39.451248 ], [ 73.355141, 39.39753 ], [ 73.238777, 39.405693 ], [ 73.212997, 39.356224 ], [ 73.095695, 39.373444 ], [ 73.029442, 39.353584 ], [ 72.923416, 39.365696 ], [ 72.77108, 39.351833 ], [ 72.690971, 39.384445 ], [ 72.595108, 39.357307 ], [ 72.496414, 39.376335 ], [ 72.46933, 39.348915 ], [ 72.349525, 39.330002 ], [ 72.307892, 39.297974 ], [ 72.263031, 39.210861 ], [ 72.168282, 39.261639 ], [ 72.106697, 39.264637 ], [ 72.035637, 39.366501 ], [ 71.95797, 39.331276 ], [ 71.918747, 39.280277 ], [ 71.802025, 39.273693 ], [ 71.75267, 39.323971 ], [ 71.796143, 39.375278 ], [ 71.786469, 39.443417 ], [ 71.706886, 39.456139 ], [ 71.64064, 39.439888 ], [ 71.562447, 39.454861 ], [ 71.551025, 39.58736 ], [ 71.498947, 39.613609 ], [ 71.414581, 39.571167 ], [ 71.36097, 39.576332 ], [ 71.30764, 39.523361 ], [ 71.258583, 39.548916 ], [ 71.193359, 39.511276 ], [ 71.089668, 39.499168 ], [ 71.066055, 39.414223 ], [ 70.912415, 39.383305 ], [ 70.768028, 39.399361 ], [ 70.761444, 39.462471 ], [ 70.660614, 39.565971 ], [ 70.484779, 39.612583 ], [ 70.451668, 39.576805 ], [ 70.374947, 39.590973 ], [ 70.272781, 39.527279 ], [ 70.198112, 39.589722 ], [ 70.108498, 39.584 ], [ 70.013168, 39.539555 ], [ 69.932053, 39.577084 ], [ 69.867332, 39.523445 ], [ 69.811165, 39.565418 ], [ 69.712112, 39.59325 ], [ 69.626137, 39.585167 ], [ 69.483276, 39.524887 ], [ 69.398888, 39.549221 ], [ 69.340195, 39.539249 ], [ 69.320305, 39.709473 ], [ 69.276611, 39.791138 ], [ 69.373085, 40.020443 ], [ 69.426003, 39.906113 ], [ 69.533081, 39.932919 ], [ 69.507057, 40.033833 ], [ 69.562553, 40.103832 ], [ 69.701279, 40.116417 ], [ 69.802055, 40.158779 ], [ 70.039948, 40.23875 ], [ 70.215164, 40.128334 ], [ 70.26886, 40.131721 ], [ 70.429863, 40.062916 ], [ 70.523582, 40.051418 ], [ 70.565086, 40.020695 ], [ 70.45639, 39.947613 ], [ 70.481583, 39.925056 ], [ 70.57547, 39.943417 ], [ 70.64064, 39.979305 ], [ 70.654419, 40.066113 ], [ 70.759056, 40.089863 ], [ 70.82428, 40.159752 ], [ 70.910278, 40.144165 ], [ 70.971222, 40.164612 ], [ 70.963165, 40.259918 ], [ 71.118225, 40.319332 ], [ 71.277336, 40.326721 ], [ 71.486916, 40.262417 ], [ 71.551056, 40.199638 ], [ 71.680191, 40.231972 ], [ 71.716194, 40.150806 ], [ 71.939476, 40.22464 ], [ 71.948586, 40.305332 ], [ 72.070778, 40.383472 ], [ 72.183502, 40.498249 ], [ 72.4105, 40.401249 ], [ 72.440918, 40.473331 ], [ 72.406059, 40.622971 ], [ 72.476303, 40.564056 ], [ 72.636665, 40.51939 ], [ 72.683525, 40.593166 ], [ 72.762085, 40.57 ], [ 72.773781, 40.681362 ], [ 72.815247, 40.680668 ], [ 73.11364, 40.796112 ], [ 73.127251, 40.850555 ], [ 73.02108, 40.86525 ], [ 72.909248, 40.817055 ], [ 72.834808, 40.869473 ], [ 72.680809, 40.85561 ], [ 72.5755, 40.890472 ], [ 72.497581, 41.03064 ], [ 72.351692, 41.064777 ], [ 72.292946, 41.027805 ], [ 72.228363, 41.052418 ], [ 72.192719, 41.154861 ], [ 72.083557, 41.140888 ], [ 72.02375, 41.162777 ], [ 71.890358, 41.172165 ], [ 71.862, 41.200863 ], [ 71.935165, 41.308277 ], [ 71.799309, 41.431446 ], [ 71.731308, 41.456833 ], [ 71.725998, 41.553722 ], [ 71.660309, 41.519165 ], [ 71.67617, 41.398582 ], [ 71.591003, 41.303391 ], [ 71.480782, 41.314888 ], [ 71.477165, 41.221169 ], [ 71.435081, 41.123611 ], [ 71.365219, 41.162666 ], [ 71.295723, 41.106224 ], [ 71.257469, 41.186359 ], [ 71.143913, 41.152527 ], [ 71.019279, 41.192665 ], [ 70.96167, 41.163082 ], [ 70.875359, 41.231445 ], [ 70.783165, 41.188194 ], [ 70.780083, 41.375389 ], [ 70.715942, 41.460972 ], [ 70.594803, 41.448029 ], [ 70.528419, 41.399666 ], [ 70.483391, 41.399612 ], [ 70.407143, 41.466667 ], [ 70.320274, 41.514416 ], [ 70.186165, 41.518555 ], [ 70.195557, 41.598305 ], [ 70.348251, 41.637749 ], [ 70.492386, 41.718861 ], [ 70.508888, 41.776333 ], [ 70.601196, 41.827583 ], [ 70.656586, 41.891445 ], [ 70.759056, 41.933361 ], [ 70.824532, 41.922417 ], [ 70.861641, 42.041805 ], [ 70.966225, 42.026333 ], [ 71.145142, 42.132751 ], [ 71.213608, 42.13475 ], [ 71.261139, 42.195946 ], [ 71.154747, 42.264557 ], [ 71.070274, 42.287834 ], [ 70.940224, 42.259193 ], [ 70.839058, 42.193943 ], [ 70.800941, 42.209862 ], [ 70.693581, 42.126835 ], [ 70.626976, 42.000832 ], [ 70.559166, 42.018723 ], [ 70.546471, 42.069527 ], [ 70.433304, 42.130085 ], [ 70.322609, 42.034363 ], [ 70.330887, 41.975613 ], [ 70.240303, 41.941166 ], [ 70.159752, 41.844307 ], [ 69.984558, 41.780804 ], [ 69.95211, 41.718807 ], [ 69.881416, 41.697807 ], [ 69.832802, 41.719082 ], [ 69.621086, 41.658028 ], [ 69.519974, 41.563057 ], [ 69.420891, 41.522415 ], [ 69.423141, 41.454887 ], [ 69.231476, 41.461723 ], [ 69.033249, 41.342167 ], [ 68.988197, 41.253193 ], [ 68.829529, 41.116222 ], [ 68.744804, 40.987446 ], [ 68.645248, 40.936333 ], [ 68.612473, 40.990807 ], [ 68.52597, 41.018196 ], [ 68.495392, 41.076279 ], [ 68.436607, 41.10989 ], [ 68.297112, 41.119167 ], [ 68.181221, 41.15686 ], [ 68.071053, 41.162224 ], [ 68.029274, 41.196609 ], [ 67.924057, 41.195305 ], [ 67.846359, 41.160252 ], [ 67.743469, 41.201946 ], [ 67.311165, 41.211807 ], [ 66.60611, 41.251415 ], [ 66.530746, 41.896305 ], [ 66.008553, 41.943501 ], [ 66.016441, 42.378418 ], [ 66.105667, 42.347332 ], [ 66.099197, 42.962196 ], [ 65.827194, 42.868137 ], [ 65.683556, 43.207584 ], [ 65.651085, 43.303528 ], [ 65.415642, 43.456276 ], [ 65.294136, 43.545277 ], [ 65.17025, 43.743557 ], [ 65.114418, 43.775585 ], [ 65.010246, 43.766861 ], [ 64.53653, 43.603306 ], [ 64.21875, 43.610889 ], [ 63.911888, 43.628082 ], [ 63.456638, 43.662777 ], [ 63.388889, 43.672863 ], [ 62.938946, 43.616749 ], [ 62.028694, 43.486526 ], [ 61.975639, 43.51228 ], [ 61.275444, 44.136776 ], [ 61.121418, 44.268665 ], [ 61.111195, 44.35775 ], [ 60.726994, 44.584438 ], [ 58.60796, 45.584942 ], [ 58.580151, 45.599678 ], [ 58.624882, 45.782261 ], [ 58.706078, 45.908924 ], [ 58.741802, 45.934902 ], [ 58.923672, 45.970627 ], [ 58.995121, 46.009602 ], [ 59.043358, 46.00444 ], [ 59.189713, 46.141937 ], [ 59.450546, 46.409714 ], [ 59.575272, 46.524437 ], [ 59.852219, 46.746101 ], [ 60.006104, 46.833054 ], [ 60.097214, 46.909714 ], [ 60.351105, 46.930275 ], [ 60.388603, 47.258049 ], [ 60.68055, 47.20916 ], [ 60.953323, 47.203606 ], [ 60.976936, 47.217766 ], [ 61.306381, 47.785828 ], [ 61.377769, 47.821106 ], [ 61.927216, 47.825829 ], [ 62.052773, 47.751106 ], [ 62.250275, 47.539162 ], [ 62.347771, 47.541382 ], [ 62.583603, 47.3461 ], [ 62.653046, 47.188324 ], [ 62.851921, 47.138885 ], [ 62.961937, 47.205269 ], [ 63.142494, 47.284996 ], [ 63.184433, 47.335266 ], [ 63.427773, 47.449158 ], [ 63.684433, 47.551659 ], [ 64.016098, 47.721657 ], [ 64.289154, 47.888329 ], [ 64.13443, 47.984993 ], [ 64.043045, 48.12471 ], [ 63.915543, 48.233879 ], [ 63.885269, 48.305267 ], [ 63.812492, 48.404434 ], [ 63.720268, 48.472214 ], [ 63.589989, 48.513885 ], [ 63.470825, 48.535828 ], [ 63.414993, 48.592491 ], [ 63.266388, 48.623322 ], [ 63.094154, 48.679436 ], [ 63.058601, 48.736382 ], [ 63.114159, 48.842491 ], [ 62.976097, 48.911934 ], [ 62.847214, 48.843323 ], [ 62.673882, 48.931107 ], [ 62.552773, 49.023048 ], [ 62.462494, 49.176384 ], [ 62.336105, 49.199715 ], [ 62.356659, 49.259438 ], [ 62.544998, 49.251106 ], [ 62.350273, 49.469437 ], [ 62.303604, 49.493324 ], [ 62.361107, 49.562767 ], [ 62.45166, 49.607216 ], [ 62.454437, 49.678879 ], [ 62.596939, 49.779991 ], [ 62.57666, 49.852776 ], [ 62.738602, 49.947769 ], [ 62.904434, 49.894157 ], [ 62.940826, 49.991379 ], [ 62.864159, 50.097771 ], [ 62.790833, 50.166664 ], [ 62.710274, 50.212212 ], [ 62.698326, 50.283051 ], [ 62.624161, 50.371376 ], [ 62.565826, 50.402771 ], [ 62.455551, 50.548882 ], [ 62.450272, 50.604439 ], [ 62.399719, 50.65416 ], [ 62.382492, 50.722488 ], [ 62.25444, 50.682495 ], [ 62.235268, 50.803322 ], [ 62.262497, 50.835548 ], [ 62.406937, 50.868599 ], [ 62.165543, 51.01416 ], [ 62.223045, 51.054161 ], [ 62.211662, 51.106384 ], [ 62.146103, 51.148048 ], [ 62.063324, 51.13472 ], [ 62.017212, 51.086655 ], [ 61.91082, 51.164154 ], [ 61.92527, 51.250832 ], [ 61.86055, 51.306381 ], [ 61.799164, 51.274437 ], [ 61.674091, 51.266075 ], [ 61.552696, 51.340332 ], [ 61.510502, 51.41386 ], [ 61.399361, 51.417194 ], [ 61.325474, 51.439251 ], [ 61.239029, 51.434776 ], [ 61.172001, 51.461304 ], [ 61.002724, 51.465111 ], [ 60.959251, 51.500584 ], [ 60.90514, 51.614113 ], [ 60.598557, 51.615196 ], [ 60.435249, 51.630943 ], [ 60.356224, 51.688499 ], [ 60.453499, 51.734165 ], [ 60.519417, 51.798557 ], [ 60.403805, 51.813526 ], [ 60.180862, 51.903557 ], [ 60.183109, 51.865196 ], [ 60.071056, 51.858307 ], [ 60.023388, 51.886196 ], [ 60.010502, 51.989029 ], [ 60.2715, 52.012333 ], [ 60.298, 52.05439 ], [ 60.484806, 52.144333 ], [ 60.724251, 52.169445 ], [ 60.797249, 52.232193 ], [ 60.966583, 52.274361 ], [ 61.070168, 52.33461 ], [ 60.972279, 52.418446 ], [ 60.981667, 52.483891 ], [ 60.901054, 52.491665 ], [ 60.845722, 52.527168 ], [ 60.843555, 52.619694 ], [ 60.722557, 52.632389 ], [ 60.71925, 52.742332 ], [ 60.823612, 52.762722 ], [ 60.852612, 52.834667 ], [ 61.071945, 52.921696 ], [ 61.118446, 52.97089 ], [ 61.239193, 53.032585 ], [ 61.373638, 52.987446 ], [ 61.462029, 53.035805 ], [ 61.660194, 52.961418 ], [ 61.717278, 52.998055 ], [ 61.895279, 53.011307 ], [ 62.010334, 52.952389 ], [ 62.13961, 53.006527 ], [ 62.112972, 53.117584 ], [ 61.948444, 53.12989 ], [ 61.801361, 53.161667 ], [ 61.66964, 53.25264 ], [ 61.612141, 53.216026 ], [ 61.465248, 53.224556 ], [ 61.39761, 53.267918 ], [ 61.266972, 53.271168 ], [ 61.185081, 53.296944 ], [ 61.163418, 53.39286 ], [ 61.237473, 53.438194 ], [ 61.259861, 53.504223 ], [ 61.386055, 53.491749 ], [ 61.483639, 53.462112 ], [ 61.581333, 53.501167 ], [ 61.558334, 53.575668 ], [ 61.43314, 53.592609 ], [ 61.357582, 53.559891 ], [ 61.174583, 53.568638 ], [ 61.124863, 53.594582 ], [ 60.918304, 53.6175 ], [ 60.921307, 53.667721 ], [ 60.987473, 53.671528 ], [ 61.110806, 53.71611 ], [ 61.218334, 53.815887 ], [ 61.136276, 53.880917 ], [ 60.989887, 53.897141 ], [ 61.027721, 53.951889 ], [ 61.157501, 53.961582 ], [ 61.18264, 53.927029 ], [ 61.256416, 53.917473 ], [ 61.275723, 53.984806 ], [ 61.256168, 54.034111 ], [ 61.331333, 54.079777 ], [ 61.461056, 54.083973 ], [ 61.491695, 54.025002 ], [ 61.58147, 53.995388 ], [ 61.73761, 54.029362 ], [ 61.792027, 53.984222 ], [ 61.879944, 54.018082 ], [ 61.890057, 53.960888 ], [ 62.027527, 53.948307 ], [ 62.004971, 54.019249 ], [ 62.08839, 54.057861 ], [ 62.205582, 54.03297 ], [ 62.346054, 54.035778 ], [ 62.4375, 54.055054 ], [ 62.411335, 53.986889 ], [ 62.454082, 53.925945 ], [ 62.531334, 53.900391 ], [ 62.593945, 53.984859 ], [ 62.799446, 54.080917 ], [ 62.816139, 54.115833 ], [ 62.929279, 54.117249 ], [ 63.062138, 54.100418 ], [ 63.161777, 54.126751 ], [ 63.168335, 54.192444 ], [ 63.242973, 54.204334 ], [ 63.411751, 54.193527 ], [ 63.516445, 54.205555 ], [ 63.736721, 54.261528 ], [ 63.880417, 54.285862 ], [ 64.030746, 54.281502 ], [ 64.079109, 54.31778 ], [ 64.184975, 54.307278 ], [ 64.352776, 54.334526 ], [ 64.457642, 54.335724 ], [ 64.597054, 54.374889 ], [ 64.732803, 54.356667 ], [ 64.809639, 54.366833 ], [ 64.977943, 54.419613 ], [ 65.120781, 54.337776 ], [ 65.222473, 54.34161 ], [ 65.240196, 54.367474 ], [ 65.189087, 54.455528 ], [ 65.200775, 54.524582 ], [ 65.357803, 54.580891 ], [ 65.446083, 54.570137 ], [ 65.501305, 54.651165 ], [ 65.632057, 54.638195 ], [ 65.74189, 54.602974 ], [ 65.803108, 54.629082 ], [ 65.832497, 54.688389 ], [ 65.960526, 54.710415 ], [ 65.952446, 54.630974 ], [ 66.020058, 54.618084 ], [ 66.405441, 54.696835 ], [ 66.439552, 54.719166 ], [ 66.552002, 54.71711 ], [ 66.657143, 54.733387 ], [ 66.735191, 54.725056 ], [ 66.781693, 54.760445 ], [ 66.95192, 54.778694 ], [ 67.048447, 54.774166 ], [ 67.098, 54.801029 ], [ 67.280441, 54.820805 ], [ 67.336113, 54.865334 ], [ 67.380669, 54.850388 ], [ 67.552528, 54.83836 ], [ 67.752335, 54.878723 ], [ 67.793472, 54.942196 ], [ 67.884392, 54.978584 ], [ 68.102165, 54.917694 ], [ 68.219307, 55.022667 ], [ 68.285278, 55.064445 ], [ 68.195198, 55.136082 ], [ 68.183556, 55.18914 ], [ 68.557442, 55.200974 ], [ 68.617447, 55.188999 ], [ 68.641388, 55.241196 ], [ 68.703918, 55.27964 ], [ 68.724693, 55.340279 ], [ 68.81414, 55.352974 ], [ 68.913223, 55.31739 ], [ 68.93483, 55.283527 ], [ 69.011192, 55.302361 ], [ 68.978638, 55.372028 ], [ 69.041527, 55.422001 ], [ 69.139725, 55.389252 ], [ 69.185692, 55.339195 ], [ 69.330193, 55.362583 ], [ 69.488976, 55.341167 ], [ 69.668053, 55.342945 ], [ 69.831497, 55.302387 ], [ 69.883919, 55.275112 ], [ 69.919609, 55.215611 ], [ 70.228584, 55.136333 ], [ 70.327675, 55.182816 ], [ 70.506653, 55.337769 ], [ 70.466095, 55.404991 ], [ 70.549149, 55.491379 ], [ 70.69664, 55.506386 ], [ 70.763611, 55.597771 ], [ 70.699417, 55.633881 ], [ 70.634155, 55.628044 ], [ 70.548874, 55.673325 ], [ 70.542206, 55.714714 ], [ 70.628586, 55.816101 ], [ 70.475266, 55.852219 ], [ 70.474152, 55.891663 ], [ 70.748032, 55.898048 ], [ 70.804153, 55.920273 ], [ 70.862198, 55.985268 ], [ 70.916382, 56.11055 ], [ 70.831665, 56.154991 ], [ 70.764435, 56.291939 ], [ 70.835815, 56.331108 ], [ 70.919144, 56.341377 ], [ 70.857758, 56.503052 ], [ 70.954163, 56.491104 ], [ 71.09082, 56.55555 ], [ 71.119141, 56.645546 ], [ 71.264999, 56.689987 ], [ 71.348877, 56.669159 ], [ 71.390549, 56.729431 ], [ 71.540817, 56.719154 ], [ 71.585541, 56.794441 ], [ 71.669144, 56.822769 ], [ 71.653046, 56.924438 ], [ 71.563034, 56.986382 ], [ 71.370819, 57.063606 ], [ 71.231094, 57.18499 ], [ 71.135269, 57.207497 ], [ 71.092758, 57.343323 ], [ 71.006378, 57.352776 ], [ 70.958328, 57.330276 ], [ 70.811646, 57.328049 ], [ 70.754166, 57.277489 ], [ 70.781937, 57.199158 ], [ 70.609711, 57.199158 ], [ 70.656097, 57.26416 ], [ 70.551926, 57.270271 ], [ 70.498596, 57.297775 ], [ 70.4272, 57.383881 ], [ 70.435806, 57.409714 ], [ 70.687485, 57.514442 ], [ 70.678314, 57.591103 ], [ 70.577209, 57.578606 ], [ 70.574432, 57.70916 ], [ 70.498871, 57.707497 ], [ 70.483871, 57.767769 ], [ 70.425537, 57.766388 ], [ 70.441711, 57.838425 ], [ 70.383881, 57.901382 ], [ 70.424988, 57.925552 ], [ 70.873032, 58.542496 ], [ 70.948593, 58.546944 ], [ 71.011383, 58.516388 ], [ 71.078873, 58.528603 ], [ 71.126648, 58.445267 ], [ 71.303864, 58.397491 ], [ 71.247208, 58.356102 ], [ 71.219147, 58.146942 ], [ 71.238586, 58.071106 ], [ 71.41748, 58.095825 ], [ 71.471375, 58.07972 ], [ 71.584991, 58.095543 ], [ 71.988876, 58.12471 ], [ 72.070541, 58.094154 ], [ 72.121643, 58.023048 ], [ 72.480545, 58.032494 ], [ 72.521652, 58.011665 ], [ 72.872208, 58.006104 ], [ 72.938583, 58.087494 ], [ 73.084427, 58.149162 ], [ 73.662766, 58.145546 ], [ 74.206375, 58.133606 ], [ 74.430817, 58.24749 ], [ 74.626648, 58.29805 ], [ 74.626648, 58.339157 ], [ 74.799988, 58.426941 ], [ 74.888321, 58.435547 ], [ 74.891663, 58.477768 ], [ 75.170822, 58.618599 ], [ 75.150269, 58.678047 ], [ 75.381653, 58.788048 ], [ 75.690536, 59.01194 ], [ 75.683594, 59.061935 ], [ 75.615265, 59.241104 ], [ 75.778595, 59.272217 ], [ 75.831375, 59.296387 ], [ 75.891098, 59.433052 ], [ 75.990814, 59.419716 ], [ 76.16304, 59.54361 ], [ 76.455826, 59.544441 ], [ 76.648331, 59.580276 ], [ 76.645538, 59.693321 ], [ 76.741364, 59.729431 ], [ 76.739151, 59.954437 ], [ 76.758881, 60.060822 ], [ 76.691925, 60.113609 ], [ 76.781662, 60.172493 ], [ 76.851654, 60.268051 ], [ 76.803589, 60.337212 ], [ 76.744705, 60.342491 ], [ 76.774429, 60.476654 ], [ 76.886658, 60.488602 ], [ 77.037491, 60.534996 ], [ 77.024429, 60.635269 ], [ 76.961929, 60.645828 ], [ 76.984985, 60.722763 ], [ 77.072495, 60.722214 ], [ 77.090546, 60.8461 ], [ 77.134995, 60.857216 ], [ 77.408035, 60.810272 ], [ 77.561646, 60.82972 ], [ 77.689423, 60.827492 ], [ 77.94165, 60.748878 ], [ 78.081375, 60.796104 ], [ 78.163879, 60.803604 ], [ 78.475266, 60.776939 ], [ 78.678864, 60.830276 ], [ 78.783875, 60.783882 ], [ 78.902206, 60.784721 ], [ 78.979156, 60.829437 ], [ 79.106934, 60.817215 ], [ 79.185532, 60.8386 ], [ 79.288315, 60.80999 ], [ 79.2836, 60.719986 ], [ 79.386658, 60.648605 ], [ 79.502487, 60.686935 ], [ 79.71582, 60.695541 ], [ 79.888046, 60.690826 ], [ 80.173141, 60.661377 ], [ 80.42099, 60.765572 ], [ 80.6306, 60.767677 ], [ 80.697708, 60.800163 ], [ 81.038223, 60.754189 ], [ 81.055496, 60.68084 ], [ 81.11116, 60.637497 ], [ 81.497757, 60.615547 ], [ 81.540543, 60.633881 ], [ 81.861649, 60.650543 ], [ 82.008041, 60.579994 ], [ 82.166656, 60.518326 ], [ 82.390274, 60.610275 ], [ 82.382477, 60.712769 ], [ 82.764709, 60.886658 ], [ 82.92276, 60.938042 ], [ 83.144989, 61.032768 ], [ 83.50943, 61.049164 ], [ 83.615814, 60.981659 ], [ 83.869431, 60.882767 ], [ 83.993866, 60.824715 ], [ 84.259644, 60.855415 ], [ 84.359985, 60.788887 ], [ 84.711929, 60.4561 ], [ 84.784714, 60.372215 ], [ 84.715271, 60.294159 ], [ 84.69693, 60.241379 ], [ 84.616653, 60.171379 ], [ 84.61554, 60.05471 ], [ 84.52916, 59.985268 ], [ 84.693863, 59.900269 ], [ 85.062759, 59.888046 ], [ 85.491653, 59.890831 ], [ 85.938873, 59.9561 ], [ 86.571381, 59.956657 ], [ 86.983597, 59.893051 ], [ 87.097763, 59.88166 ], [ 87.182755, 59.68499 ], [ 87.522766, 59.672768 ], [ 87.693314, 59.49527 ], [ 87.90332, 59.263885 ], [ 88.630539, 59.301384 ], [ 88.585266, 59.225548 ], [ 88.834427, 59.025826 ], [ 88.65416, 58.970268 ], [ 88.399429, 58.918327 ], [ 88.106705, 58.662392 ], [ 87.929977, 58.525551 ], [ 87.931091, 58.473877 ], [ 88.019714, 58.232765 ], [ 88.070541, 58.211662 ], [ 88.122757, 58.117767 ], [ 88.158325, 58.103882 ], [ 88.391663, 58.081383 ], [ 88.709152, 58.033607 ], [ 88.853592, 57.958046 ], [ 89.348602, 57.948044 ], [ 89.40387, 57.887772 ], [ 89.354431, 57.796387 ], [ 89.392487, 57.634438 ], [ 89.253601, 57.598877 ], [ 89.146378, 57.617767 ], [ 89.071381, 57.509163 ], [ 88.97554, 57.464996 ], [ 88.8647, 57.441933 ], [ 88.836929, 57.371101 ], [ 88.727203, 57.221931 ], [ 88.647217, 57.212494 ], [ 88.524704, 57.123878 ], [ 88.51915, 57.097771 ], [ 88.731369, 57.06916 ], [ 88.639435, 56.894997 ], [ 88.624146, 56.833153 ], [ 88.537491, 56.779991 ], [ 88.399719, 56.83416 ], [ 88.332489, 56.792496 ], [ 88.12915, 56.713608 ], [ 87.784424, 56.54361 ], [ 87.623871, 56.641663 ], [ 87.512772, 56.659157 ], [ 87.383331, 56.609993 ], [ 87.32666, 56.644997 ], [ 87.148041, 56.674164 ], [ 87.178864, 56.611664 ], [ 87.138596, 56.539162 ], [ 87.026657, 56.534439 ], [ 86.972763, 56.571663 ], [ 86.925262, 56.551384 ], [ 86.820831, 56.621658 ], [ 86.787201, 56.603325 ], [ 86.688309, 56.637497 ], [ 86.589157, 56.609161 ], [ 86.541092, 56.570274 ], [ 86.3936, 56.54583 ], [ 86.319443, 56.629433 ], [ 86.207214, 56.625549 ], [ 86.172485, 56.55027 ], [ 86.127472, 56.546661 ], [ 86.102203, 56.487213 ], [ 85.998032, 56.486107 ], [ 85.91832, 56.431107 ], [ 85.861374, 56.443604 ], [ 85.783325, 56.406937 ], [ 85.805542, 56.364441 ], [ 85.59082, 56.319717 ], [ 85.581375, 56.276382 ], [ 85.688034, 56.238884 ], [ 85.409714, 56.210274 ], [ 85.266937, 56.245827 ], [ 85.122757, 56.221931 ], [ 85.085266, 56.143051 ], [ 84.99498, 56.132767 ], [ 84.921921, 56.179718 ], [ 84.431931, 56.058327 ], [ 84.530823, 56.043884 ], [ 84.577209, 55.96138 ], [ 84.511932, 55.910545 ], [ 84.501938, 55.866661 ], [ 84.608032, 55.842216 ], [ 84.635818, 55.760277 ], [ 84.558594, 55.705269 ], [ 84.649719, 55.669991 ], [ 84.702774, 55.672218 ], [ 84.775543, 55.525551 ], [ 84.763885, 55.453606 ], [ 84.649429, 55.396942 ], [ 84.875534, 55.388603 ], [ 84.864426, 55.289719 ], [ 84.820831, 55.226097 ], [ 84.918594, 55.164993 ], [ 84.907486, 54.960823 ], [ 84.980545, 54.94471 ], [ 85.023605, 54.886108 ], [ 85.079437, 54.873322 ], [ 85.027206, 54.801102 ], [ 84.999146, 54.715271 ], [ 85.049423, 54.65416 ], [ 84.948593, 54.604164 ], [ 85.079468, 54.469437 ], [ 85.184143, 54.473877 ], [ 85.447205, 54.195824 ], [ 85.604706, 54.24305 ], [ 85.718872, 54.148048 ], [ 85.763046, 54.161659 ], [ 85.930267, 54.039719 ], [ 86.120819, 53.999161 ], [ 86.198318, 53.943878 ], [ 86.219986, 53.891106 ], [ 86.286926, 53.884995 ], [ 86.414993, 53.755554 ], [ 86.395264, 53.695267 ], [ 86.460541, 53.604996 ], [ 86.513321, 53.605827 ], [ 86.546097, 53.556656 ], [ 86.629974, 53.508049 ], [ 86.713608, 53.485825 ], [ 86.861099, 53.476379 ], [ 86.998032, 53.510826 ], [ 86.993591, 53.416939 ], [ 86.881363, 53.306656 ], [ 86.825272, 53.27166 ], [ 86.754166, 53.266006 ], [ 86.700821, 53.195541 ], [ 86.876923, 53.12471 ], [ 86.943863, 53.078331 ], [ 87.081665, 53.081383 ], [ 87.022766, 53.002495 ], [ 87.024429, 52.915268 ], [ 86.938309, 52.858887 ], [ 86.988586, 52.783882 ], [ 87.045822, 52.767769 ], [ 87.079163, 52.707771 ], [ 87.20504, 52.58168 ], [ 87.342209, 52.598602 ], [ 87.370255, 52.507774 ], [ 87.549713, 52.49305 ], [ 87.672211, 52.453606 ], [ 87.721375, 52.484718 ], [ 87.828598, 52.506943 ], [ 87.931091, 52.549164 ], [ 88.079163, 52.486938 ], [ 88.208603, 52.411934 ], [ 88.323608, 52.448875 ], [ 88.41304, 52.456383 ], [ 88.405548, 52.383881 ], [ 88.363037, 52.313049 ], [ 88.370255, 52.179436 ], [ 88.345535, 52.126938 ], [ 88.247757, 52.120544 ], [ 88.210266, 52.053604 ], [ 88.128586, 52.101662 ], [ 88.072495, 52.071106 ], [ 88.068604, 52.019157 ], [ 87.982483, 51.9711 ], [ 87.971924, 51.921661 ], [ 87.856644, 51.833603 ], [ 87.982208, 51.754166 ], [ 88.093048, 51.779716 ], [ 88.086929, 51.713326 ], [ 87.978592, 51.646103 ], [ 87.96138, 51.594154 ], [ 87.861649, 51.549438 ], [ 87.906097, 51.486938 ], [ 88.013321, 51.4786 ], [ 88.101929, 51.441933 ], [ 88.120255, 51.388885 ], [ 88.184143, 51.363052 ], [ 88.288315, 51.357498 ], [ 88.364426, 51.318886 ], [ 88.514999, 51.31694 ], [ 88.596375, 51.388603 ], [ 88.66748, 51.423325 ], [ 88.658875, 51.535553 ], [ 88.735855, 51.559479 ], [ 88.836929, 51.508888 ], [ 88.861649, 51.47332 ], [ 88.95665, 51.438599 ], [ 88.948029, 51.223602 ], [ 89.025543, 51.192215 ], [ 89.044144, 51.078331 ], [ 89.099991, 51.023605 ], [ 89.337494, 50.874161 ], [ 89.647766, 50.620544 ], [ 89.66832, 50.578049 ], [ 89.824707, 50.547493 ], [ 89.86998, 50.485268 ], [ 89.844147, 50.429436 ], [ 89.643051, 50.383606 ], [ 89.613312, 50.423607 ], [ 89.501938, 50.465546 ], [ 89.496368, 50.349998 ], [ 89.421921, 50.3386 ], [ 89.352768, 50.270271 ], [ 89.336105, 50.206657 ], [ 89.399719, 50.184715 ], [ 89.506943, 50.20694 ], [ 89.51915, 50.122765 ], [ 89.590546, 50.086105 ], [ 89.605545, 50.008049 ], [ 89.583603, 49.939156 ], [ 89.63858, 49.904724 ], [ 89.636719, 49.831749 ], [ 89.738525, 49.794498 ], [ 89.681831, 49.709721 ], [ 89.444725, 49.658833 ], [ 89.377335, 49.594666 ], [ 89.249809, 49.654026 ], [ 89.189941, 49.598526 ], [ 89.226639, 49.559193 ], [ 89.099503, 49.499779 ], [ 88.96386, 49.484612 ], [ 88.891113, 49.555805 ], [ 88.81514, 49.466194 ], [ 88.679001, 49.474998 ], [ 88.649971, 49.520084 ], [ 88.555359, 49.484444 ], [ 88.445274, 49.48011 ], [ 88.339836, 49.508057 ], [ 88.223221, 49.489861 ], [ 88.102974, 49.365528 ], [ 88.196777, 49.287334 ], [ 88.121193, 49.244583 ], [ 88.055275, 49.266361 ], [ 87.994331, 49.186359 ], [ 87.899918, 49.166943 ], [ 87.832306, 49.174999 ] ], [ [ 71.08725, 40.0 ], [ 71.112778, 39.915279 ], [ 71.180443, 39.875805 ], [ 71.229332, 39.91975 ], [ 71.119751, 40.017471 ], [ 71.081444, 40.150696 ], [ 71.003944, 40.174778 ], [ 71.007698, 40.039528 ], [ 71.08725, 40.0 ] ], [ [ 70.673615, 39.895248 ], [ 70.521248, 39.895611 ], [ 70.545998, 39.838638 ], [ 70.627975, 39.798695 ], [ 70.725441, 39.849972 ], [ 70.673615, 39.895248 ] ] ], [ [ [ 97.5, -11.5 ], [ 96.4, -11.5 ], [ 96.4, -12.8 ], [ 97.5, -12.8 ], [ 97.5, -89.68607 ], [ 97.5, -90.0 ], [ 82.5, -90.0 ], [ 82.5, 16.841007495529976 ], [ 82.5, 16.841014 ], [ 82.500253, 16.848571 ], [ 82.5, 17.05291 ], [ 82.5389, 17.091883 ], [ 82.650558, 17.172599 ], [ 82.79003, 17.251357 ], [ 83.038903, 17.362 ], [ 83.092463, 17.404803 ], [ 83.28062, 17.48971 ], [ 83.443889, 17.652314 ], [ 83.569349, 17.823715 ], [ 83.685483, 17.937672 ], [ 83.793375, 18.010185 ], [ 84.142671, 18.169703 ], [ 84.239303, 18.245253 ], [ 84.261258, 18.303787 ], [ 84.462059, 18.482739 ], [ 84.568101, 18.629811 ], [ 84.647419, 18.70467 ], [ 84.701576, 18.800443 ], [ 84.777716, 18.873037 ], [ 84.955429, 19.129342 ], [ 85.037794, 19.19933 ], [ 85.165447, 19.277971 ], [ 85.201323, 19.328048 ], [ 85.389649, 19.463682 ], [ 85.732096, 19.633927 ], [ 85.971277, 19.707296 ], [ 86.196458, 19.758879 ], [ 86.4738, 19.871286 ], [ 86.540656, 19.947888 ], [ 86.548118, 19.99085 ], [ 86.623961, 20.095645 ], [ 86.851844, 20.230211 ], [ 86.918977, 20.319669 ], [ 86.931343, 20.475015 ], [ 87.07163, 20.567171 ], [ 87.158042, 20.647327 ], [ 87.170761, 20.724569 ], [ 87.105051, 20.812228 ], [ 87.070019, 20.915596 ], [ 86.97633, 21.07795 ], [ 86.947356, 21.155351 ], [ 86.995094, 21.24026 ], [ 87.060986, 21.311819 ], [ 87.173834, 21.400281 ], [ 87.244801, 21.4345 ], [ 87.403112, 21.446791 ], [ 87.493265, 21.490454 ], [ 87.723144, 21.542275 ], [ 87.871579, 21.608721 ], [ 87.932724, 21.655104 ], [ 87.94855, 21.584384 ], [ 88.005571, 21.532997 ], [ 88.06982, 21.511434 ], [ 88.158701, 21.41946 ], [ 88.249253, 21.413656 ], [ 88.400839, 21.464145 ], [ 88.440507, 21.432175 ], [ 88.539927, 21.404918 ], [ 88.61305, 21.429521 ], [ 88.651872, 21.473324 ], [ 88.725529, 21.441629 ], [ 88.783533, 21.446179 ], [ 88.854345, 21.415144 ], [ 88.959017, 21.433458 ], [ 89.013796, 21.483529 ], [ 89.173346, 21.532527 ], [ 89.096802, 21.624945 ], [ 89.083748, 21.700666 ], [ 89.080055, 21.708139 ], [ 89.035614, 21.754417 ], [ 89.034447, 21.864471 ], [ 89.063469, 21.92775 ], [ 89.070335, 21.927944 ], [ 89.083557, 21.938555 ], [ 89.088448, 21.949278 ], [ 89.090721, 22.009388 ], [ 89.049141, 22.092501 ], [ 89.086746, 22.147528 ], [ 89.075974, 22.199472 ], [ 89.00647, 22.283278 ], [ 89.006638, 22.422638 ], [ 88.964996, 22.602777 ], [ 88.935524, 22.642334 ], [ 88.965805, 22.697083 ], [ 88.942253, 22.762417 ], [ 88.971611, 22.844528 ], [ 88.911446, 22.894945 ], [ 88.882416, 22.978277 ], [ 88.873169, 23.078777 ], [ 88.948112, 23.174862 ], [ 88.923248, 23.232611 ], [ 88.727943, 23.257416 ], [ 88.774361, 23.443195 ], [ 88.618919, 23.600584 ], [ 88.580475, 23.724611 ], [ 88.613197, 23.810499 ], [ 88.73764, 23.905861 ], [ 88.760361, 24.005083 ], [ 88.705307, 24.086945 ], [ 88.697861, 24.167028 ], [ 88.732918, 24.266722 ], [ 88.685303, 24.328278 ], [ 88.648109, 24.303389 ], [ 88.547386, 24.311251 ], [ 88.379837, 24.395445 ], [ 88.341972, 24.438 ], [ 88.20372, 24.474777 ], [ 88.120613, 24.521944 ], [ 88.083862, 24.623806 ], [ 88.028336, 24.688334 ], [ 88.16214, 24.848694 ], [ 88.163528, 24.944834 ], [ 88.221336, 24.959917 ], [ 88.315918, 24.881945 ], [ 88.444778, 25.03775 ], [ 88.438698, 25.182278 ], [ 88.480637, 25.216 ], [ 88.548691, 25.195694 ], [ 88.708252, 25.209499 ], [ 88.797142, 25.174999 ], [ 88.835831, 25.211527 ], [ 88.922165, 25.172251 ], [ 88.946472, 25.251249 ], [ 88.995804, 25.317833 ], [ 88.909554, 25.320139 ], [ 88.834167, 25.371277 ], [ 88.824837, 25.494888 ], [ 88.759697, 25.529194 ], [ 88.664612, 25.476862 ], [ 88.548141, 25.51689 ], [ 88.443581, 25.605667 ], [ 88.446945, 25.668222 ], [ 88.267998, 25.788889 ], [ 88.11467, 25.802055 ], [ 88.086502, 25.931444 ], [ 88.174637, 26.032694 ], [ 88.180359, 26.144722 ], [ 88.250275, 26.191528 ], [ 88.351585, 26.218555 ], [ 88.358803, 26.301306 ], [ 88.457108, 26.36064 ], [ 88.517586, 26.365805 ], [ 88.470497, 26.465334 ], [ 88.345253, 26.504723 ], [ 88.388306, 26.599222 ], [ 88.523415, 26.485027 ], [ 88.556, 26.485945 ], [ 88.683113, 26.414362 ], [ 88.721581, 26.31925 ], [ 88.795639, 26.31214 ], [ 88.806664, 26.256222 ], [ 88.857002, 26.231806 ], [ 88.911552, 26.2885 ], [ 88.958641, 26.235695 ], [ 89.065781, 26.2635 ], [ 88.919113, 26.412222 ], [ 88.947723, 26.439417 ], [ 89.049309, 26.397028 ], [ 89.100166, 26.395971 ], [ 89.092751, 26.323029 ], [ 89.151253, 26.208055 ], [ 89.16758, 26.138639 ], [ 89.217331, 26.126472 ], [ 89.259308, 26.067055 ], [ 89.357391, 26.008333 ], [ 89.410889, 26.03739 ], [ 89.475082, 26.001612 ], [ 89.495087, 26.005556 ], [ 89.582581, 25.978195 ], [ 89.612747, 26.060472 ], [ 89.608139, 26.157278 ], [ 89.744141, 26.156694 ], [ 89.820557, 25.993889 ], [ 89.878334, 25.924805 ], [ 89.838554, 25.883139 ], [ 89.822556, 25.73275 ], [ 89.869003, 25.664862 ], [ 89.868637, 25.582611 ], [ 89.815666, 25.371639 ], [ 89.834473, 25.296778 ], [ 89.952225, 25.302029 ], [ 90.10778, 25.2265 ], [ 90.31839, 25.187361 ], [ 90.443169, 25.145584 ], [ 90.533112, 25.174194 ], [ 90.648972, 25.185888 ], [ 90.716698, 25.156055 ], [ 90.762253, 25.179722 ], [ 90.83886, 25.153305 ], [ 90.957336, 25.159527 ], [ 91.083809, 25.196417 ], [ 91.261497, 25.202389 ], [ 91.346138, 25.1665 ], [ 91.476471, 25.135139 ], [ 91.584503, 25.165583 ], [ 91.632385, 25.122639 ], [ 91.759941, 25.168777 ], [ 92.019531, 25.184999 ], [ 92.122391, 25.166222 ], [ 92.21875, 25.100639 ], [ 92.340858, 25.072889 ], [ 92.463219, 24.959917 ], [ 92.489555, 24.868139 ], [ 92.296585, 24.850416 ], [ 92.203613, 24.625639 ], [ 92.193558, 24.572666 ], [ 92.128807, 24.513111 ], [ 92.137581, 24.398834 ], [ 92.088112, 24.373751 ], [ 92.010498, 24.383167 ], [ 91.920364, 24.326416 ], [ 91.933334, 24.279444 ], [ 91.906113, 24.145166 ], [ 91.757385, 24.236305 ], [ 91.733948, 24.135778 ], [ 91.652748, 24.187529 ], [ 91.637863, 24.105305 ], [ 91.536942, 24.070972 ], [ 91.412666, 24.108444 ], [ 91.370193, 23.977583 ], [ 91.302475, 23.987667 ], [ 91.261864, 23.95875 ], [ 91.227058, 23.880777 ], [ 91.246002, 23.833361 ], [ 91.21933, 23.74575 ], [ 91.162666, 23.741945 ], [ 91.150948, 23.641138 ], [ 91.197052, 23.519527 ], [ 91.243416, 23.484083 ], [ 91.319778, 23.247305 ], [ 91.349503, 23.085417 ], [ 91.402084, 23.085417 ], [ 91.379776, 23.175222 ], [ 91.427666, 23.259056 ], [ 91.497307, 23.186945 ], [ 91.54464, 22.992584 ], [ 91.575279, 22.963167 ], [ 91.71772, 22.9855 ], [ 91.813141, 23.068027 ], [ 91.805336, 23.167166 ], [ 91.770416, 23.267611 ], [ 91.84214, 23.399918 ], [ 91.935753, 23.429806 ], [ 91.966553, 23.487139 ], [ 91.938751, 23.654139 ], [ 91.97953, 23.721527 ], [ 92.022362, 23.645222 ], [ 92.074112, 23.645222 ], [ 92.143974, 23.726528 ], [ 92.177696, 23.732056 ], [ 92.272835, 23.641195 ], [ 92.302109, 23.580334 ], [ 92.321198, 23.466084 ], [ 92.376556, 23.348362 ], [ 92.349892, 23.191195 ], [ 92.383308, 23.073473 ], [ 92.374969, 22.928528 ], [ 92.416, 22.909166 ], [ 92.474609, 22.745056 ], [ 92.516281, 22.716249 ], [ 92.545219, 22.46525 ], [ 92.578026, 22.327444 ], [ 92.606476, 22.131945 ], [ 92.608803, 21.975861 ], [ 92.626663, 21.884583 ], [ 92.601219, 21.699223 ], [ 92.619446, 21.496056 ], [ 92.673668, 21.291277 ], [ 92.593559, 21.245167 ], [ 92.543587, 21.376055 ], [ 92.474556, 21.349194 ], [ 92.423836, 21.379168 ], [ 92.388863, 21.470362 ], [ 92.196808, 21.316528 ], [ 92.218307, 21.259556 ], [ 92.195442, 21.126917 ], [ 92.254974, 21.061527 ], [ 92.272942, 20.906639 ], [ 92.312973, 20.846945 ], [ 92.340775, 20.752388 ], [ 92.20732, 20.683382 ], [ 92.194555, 20.606924 ], [ 92.248745, 20.493636 ], [ 92.320058, 20.465411 ], [ 92.415469, 20.504495 ], [ 92.530877, 20.377062 ], [ 92.638333, 20.149256 ], [ 92.803246, 20.01508 ], [ 92.896624, 19.850689 ], [ 92.935393, 19.742182 ], [ 93.007039, 19.700926 ], [ 93.081374, 19.711688 ], [ 93.187593, 19.667799 ], [ 93.293216, 19.705672 ], [ 93.377876, 19.601651 ], [ 93.39365, 19.485374 ], [ 93.353444, 19.349617 ], [ 93.366436, 19.30755 ], [ 93.477319, 19.140819 ], [ 93.535521, 19.021419 ], [ 93.406533, 18.963022 ], [ 93.364441, 18.889533 ], [ 93.377325, 18.809899 ], [ 93.436725, 18.710121 ], [ 93.559435, 18.594002 ], [ 93.708463, 18.51065 ], [ 93.794826, 18.483596 ], [ 93.786363, 18.412284 ], [ 93.829506, 18.338393 ], [ 93.949225, 18.316704 ], [ 94.00941, 18.361907 ], [ 94.030833, 18.434064 ], [ 94.002572, 18.513102 ], [ 93.910747, 18.559767 ], [ 93.953136, 18.61738 ], [ 94.073565, 18.629764 ], [ 94.125596, 18.588969 ], [ 94.124797, 18.488152 ], [ 94.220028, 18.353821 ], [ 94.202498, 18.251385 ], [ 94.235254, 18.171212 ], [ 94.323854, 18.120881 ], [ 94.319026, 18.014846 ], [ 94.366062, 17.861685 ], [ 94.370279, 17.771201 ], [ 94.439095, 17.619688 ], [ 94.422151, 17.53714 ], [ 94.442969, 17.401571 ], [ 94.325122, 17.189145 ], [ 94.33622, 17.013529 ], [ 94.29371, 16.980524 ], [ 94.262012, 16.902201 ], [ 94.272628, 16.816166 ], [ 94.238367, 16.683308 ], [ 94.133635, 16.579865 ], [ 94.135521, 16.463203 ], [ 94.107073, 16.382973 ], [ 94.114512, 16.289355 ], [ 94.077569, 16.034451 ], [ 94.155261, 15.874118 ], [ 94.187748, 15.780838 ], [ 94.249919, 15.743557 ], [ 94.314731, 15.747154 ], [ 94.383519, 15.713033 ], [ 94.492464, 15.756124 ], [ 94.518484, 15.795992 ], [ 94.685893, 15.683181 ], [ 94.79084, 15.666085 ], [ 94.943812, 15.620981 ], [ 95.016199, 15.552667 ], [ 95.096936, 15.54194 ], [ 95.297323, 15.556261 ], [ 95.464399, 15.606833 ], [ 95.605007, 15.707812 ], [ 95.759658, 15.87466 ], [ 95.827122, 16.019395 ], [ 95.899471, 16.078259 ], [ 96.047412, 16.120688 ], [ 96.17432, 16.201555 ], [ 96.346539, 16.290562 ], [ 96.439687, 16.382486 ], [ 96.534396, 16.390359 ], [ 96.637546, 16.423486 ], [ 96.716009, 16.471937 ], [ 96.876365, 16.631882 ], [ 96.952301, 16.76719 ], [ 96.999435, 16.926629 ], [ 97.053678, 16.878563 ], [ 97.085011, 16.783079 ], [ 97.181325, 16.614029 ], [ 97.217012, 16.581744 ], [ 97.23856, 16.468967 ], [ 97.286133, 16.386777 ], [ 97.34455, 16.362018 ], [ 97.346986, 16.269607 ], [ 97.396055, 16.187075 ], [ 97.455653, 16.13287 ], [ 97.438198, 16.072987 ], [ 97.484954, 15.924938 ], [ 97.495427, 15.916165 ], [ 97.5, 15.901856 ], [ 97.5, 9.042358 ], [ 97.5, 5.37223 ], [ 97.285742, 5.306729 ], [ 97.233207, 5.286033 ], [ 97.13257, 5.341471 ], [ 97.016719, 5.380691 ], [ 96.823579, 5.397983 ], [ 96.698839, 5.373996 ], [ 96.544075, 5.328111 ], [ 96.494367, 5.353989 ], [ 96.393657, 5.338645 ], [ 96.277179, 5.382139 ], [ 96.140198, 5.401299 ], [ 96.009598, 5.49987 ], [ 95.954197, 5.600247 ], [ 95.887733, 5.636862 ], [ 95.719745, 5.696977 ], [ 95.622365, 5.746261 ], [ 95.540703, 5.733395 ], [ 95.48824, 5.764934 ], [ 95.489927, 5.876571 ], [ 95.448987, 5.948511 ], [ 95.366886, 6.007688 ], [ 95.234456, 6.022856 ], [ 95.158313, 6.010095 ], [ 95.105702, 5.95359 ], [ 95.099679, 5.861216 ], [ 94.988197, 5.861156 ], [ 94.912631, 5.796405 ], [ 94.890317, 5.709644 ], [ 94.941764, 5.561437 ], [ 95.038181, 5.501099 ], [ 95.110158, 5.431329 ], [ 95.092708, 5.250298 ], [ 95.179143, 5.046377 ], [ 95.239698, 4.971965 ], [ 95.242683, 4.865329 ], [ 95.277909, 4.780842 ], [ 95.387424, 4.679238 ], [ 95.458891, 4.557634 ], [ 95.593801, 4.469575 ], [ 95.789816, 4.279957 ], [ 95.934679, 4.114672 ], [ 96.117206, 4.009388 ], [ 96.293562, 3.77525 ], [ 96.378474, 3.691591 ], [ 96.469414, 3.629157 ], [ 96.549435, 3.615411 ], [ 96.662731, 3.630958 ], [ 96.774249, 3.607963 ], [ 96.811832, 3.523854 ], [ 96.909513, 3.459891 ], [ 97.021786, 3.262253 ], [ 97.097106, 3.160673 ], [ 97.163794, 3.12797 ], [ 96.989724, 2.767104 ], [ 96.310208, 2.807076 ], [ 95.825553, 3.041908 ], [ 95.330905, 3.066891 ], [ 95.300926, 2.912001 ], [ 96.25025, 2.167531 ], [ 97.5, 0.458748 ], [ 97.5, -11.5 ] ], [ [ 94.5, 6.5 ], [ 94.5, 14.5 ], [ 91.5, 14.5 ], [ 91.5, 6.5 ], [ 94.5, 6.5 ] ] ], [ [ [ 70.5, -4.5 ], [ 73.5, -4.5 ], [ 73.5, -8.1 ], [ 70.5, -8.1 ], [ 70.5, -4.5 ] ] ], [ [ [ 89.561028, 26.8095 ], [ 89.539497, 26.815083 ], [ 89.482475, 26.808277 ], [ 89.370972, 26.860611 ], [ 89.265083, 26.821638 ], [ 89.137054, 26.810362 ], [ 89.093475, 26.889 ], [ 89.013916, 26.938499 ], [ 88.947746, 26.935083 ], [ 88.930359, 26.985584 ], [ 88.875084, 26.992332 ], [ 88.878525, 27.068277 ], [ 88.805222, 27.101833 ], [ 88.809196, 27.205111 ], [ 88.915863, 27.239889 ], [ 88.927254, 27.289778 ], [ 88.998108, 27.307722 ], [ 88.962418, 27.373583 ], [ 88.980972, 27.472723 ], [ 89.022163, 27.568056 ], [ 89.072777, 27.615499 ], [ 89.131279, 27.617472 ], [ 89.25528, 27.815195 ], [ 89.374275, 27.875389 ], [ 89.34864, 27.947222 ], [ 89.449448, 27.991888 ], [ 89.515831, 28.094917 ], [ 89.600693, 28.156305 ], [ 89.753281, 28.171194 ], [ 89.808525, 28.204027 ], [ 89.89917, 28.304028 ], [ 89.943169, 28.284222 ], [ 90.00264, 28.323778 ], [ 90.243553, 28.283028 ], [ 90.380753, 28.247999 ], [ 90.399025, 28.213444 ], [ 90.361862, 28.115723 ], [ 90.371475, 28.077444 ], [ 90.454834, 28.065861 ], [ 90.714195, 28.09086 ], [ 90.84008, 28.042389 ], [ 90.921524, 28.046333 ], [ 91.014832, 27.977722 ], [ 91.127808, 27.974138 ], [ 91.221695, 28.067972 ], [ 91.322502, 28.089277 ], [ 91.47953, 27.979694 ], [ 91.527748, 27.985001 ], [ 91.657082, 27.951973 ], [ 91.687531, 27.918667 ], [ 91.654442, 27.856583 ], [ 91.657196, 27.760361 ], [ 91.651558, 27.70075 ], [ 91.60186, 27.653667 ], [ 91.628334, 27.543777 ], [ 91.695862, 27.480778 ], [ 91.810364, 27.420416 ], [ 91.948219, 27.444056 ], [ 92.001724, 27.47525 ], [ 92.10125, 27.33761 ], [ 92.124557, 27.280416 ], [ 92.068863, 27.235889 ], [ 92.032333, 27.168306 ], [ 92.030388, 27.074556 ], [ 92.080391, 27.034916 ], [ 92.122169, 26.934 ], [ 92.06958, 26.854166 ], [ 91.983696, 26.859278 ], [ 91.915886, 26.837194 ], [ 91.838913, 26.861944 ], [ 91.715332, 26.795555 ], [ 91.635223, 26.813223 ], [ 91.549751, 26.803167 ], [ 91.500252, 26.873388 ], [ 91.42836, 26.870695 ], [ 91.334526, 26.777361 ], [ 91.262665, 26.807194 ], [ 91.088028, 26.815861 ], [ 91.04525, 26.786861 ], [ 90.657028, 26.778084 ], [ 90.537331, 26.820999 ], [ 90.416695, 26.903528 ], [ 90.348335, 26.896029 ], [ 90.300087, 26.854221 ], [ 90.232414, 26.860916 ], [ 90.170166, 26.765278 ], [ 90.064972, 26.741417 ], [ 89.828392, 26.71525 ], [ 89.622833, 26.738333 ], [ 89.63636, 26.782278 ], [ 89.561028, 26.8095 ] ] ] ] } }, +{ "type": "Feature", "properties": { "name": "+5" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 61.276638, 35.613167 ], [ 61.222889, 35.660362 ], [ 61.259972, 35.812916 ], [ 61.234001, 35.915501 ], [ 61.159279, 35.989613 ], [ 61.226471, 36.120083 ], [ 61.229221, 36.17239 ], [ 61.17025, 36.340332 ], [ 61.172359, 36.498665 ], [ 61.190971, 36.567722 ], [ 61.140251, 36.662056 ], [ 60.634777, 36.627556 ], [ 60.370667, 36.624249 ], [ 60.270527, 36.751305 ], [ 60.17675, 36.842415 ], [ 60.084332, 36.978527 ], [ 60.004417, 37.039665 ], [ 59.938751, 37.027779 ], [ 59.833057, 37.092083 ], [ 59.699554, 37.128193 ], [ 59.651165, 37.109222 ], [ 59.553833, 37.122528 ], [ 59.551998, 37.166248 ], [ 59.402, 37.306252 ], [ 59.373501, 37.398418 ], [ 59.403111, 37.426029 ], [ 59.347832, 37.515446 ], [ 59.276279, 37.497307 ], [ 59.186417, 37.531471 ], [ 59.047611, 37.612751 ], [ 58.89336, 37.650276 ], [ 58.851387, 37.680279 ], [ 58.742249, 37.62989 ], [ 58.620499, 37.655472 ], [ 58.577221, 37.692749 ], [ 58.459835, 37.625057 ], [ 58.237335, 37.673473 ], [ 58.211887, 37.760113 ], [ 58.049362, 37.795307 ], [ 57.956001, 37.842415 ], [ 57.834415, 37.860527 ], [ 57.787193, 37.893082 ], [ 57.589249, 37.924641 ], [ 57.524971, 37.91486 ], [ 57.359138, 37.974445 ], [ 57.380585, 38.072945 ], [ 57.293694, 38.150249 ], [ 57.295471, 38.198776 ], [ 57.24511, 38.261696 ], [ 57.1605, 38.256527 ], [ 57.089359, 38.180946 ], [ 56.856083, 38.211529 ], [ 56.754665, 38.272583 ], [ 56.604084, 38.223415 ], [ 56.567665, 38.254028 ], [ 56.417057, 38.24036 ], [ 56.327221, 38.16489 ], [ 56.339195, 38.070641 ], [ 56.211498, 38.061359 ], [ 56.173195, 38.082527 ], [ 55.980778, 38.065029 ], [ 55.813362, 38.111526 ], [ 55.474194, 38.084332 ], [ 55.406445, 38.040279 ], [ 55.186138, 37.958668 ], [ 55.129333, 37.950974 ], [ 55.027943, 37.86311 ], [ 54.823833, 37.725224 ], [ 54.784, 37.632694 ], [ 54.819111, 37.605389 ], [ 54.797779, 37.523056 ], [ 54.653252, 37.430721 ], [ 54.583027, 37.455444 ], [ 54.507057, 37.430668 ], [ 54.358971, 37.344196 ], [ 54.285721, 37.342888 ], [ 54.243584, 37.309193 ], [ 53.897804, 37.340805 ], [ 53.778243, 37.344498 ], [ 51.301118, 38.646307 ], [ 51.00029, 41.133148 ], [ 49.523443, 42.699501 ], [ 49.014828, 43.23894 ], [ 48.974718, 44.522471 ], [ 50.037642, 45.685671 ], [ 49.712914, 46.104977 ], [ 49.702064, 46.106518 ], [ 49.178055, 46.351196 ], [ 49.038887, 46.392223 ], [ 48.981415, 46.428307 ], [ 48.816223, 46.480167 ], [ 48.77589, 46.535889 ], [ 48.672638, 46.562305 ], [ 48.645248, 46.604557 ], [ 48.558693, 46.608276 ], [ 48.480694, 46.657665 ], [ 48.511501, 46.733223 ], [ 48.581223, 46.773945 ], [ 48.656971, 46.771278 ], [ 48.751335, 46.687862 ], [ 48.914055, 46.693138 ], [ 49.005333, 46.767166 ], [ 48.970974, 46.83514 ], [ 48.781334, 47.010887 ], [ 48.661388, 47.209057 ], [ 48.60775, 47.414471 ], [ 48.380695, 47.433582 ], [ 48.277832, 47.545502 ], [ 48.182304, 47.678055 ], [ 48.05825, 47.760639 ], [ 47.666779, 47.747417 ], [ 47.406666, 47.812584 ], [ 47.371277, 47.676918 ], [ 47.174305, 47.76075 ], [ 47.161861, 47.836834 ], [ 47.017639, 48.0 ], [ 47.139416, 48.039944 ], [ 47.097111, 48.104916 ], [ 47.118694, 48.155918 ], [ 47.113777, 48.265499 ], [ 46.926777, 48.32325 ], [ 46.771832, 48.356224 ], [ 46.491859, 48.443001 ], [ 46.60125, 48.646694 ], [ 46.7785, 48.938526 ], [ 46.937611, 49.003666 ], [ 47.00375, 49.060528 ], [ 47.052834, 49.164917 ], [ 47.021446, 49.208889 ], [ 46.864445, 49.300972 ], [ 46.782665, 49.332668 ], [ 46.819889, 49.556946 ], [ 46.859585, 49.60825 ], [ 46.892887, 49.839306 ], [ 47.108665, 49.903137 ], [ 47.22414, 49.966362 ], [ 47.339359, 50.105278 ], [ 47.260918, 50.198917 ], [ 47.319611, 50.331779 ], [ 47.397194, 50.335361 ], [ 47.443611, 50.415943 ], [ 47.551472, 50.462723 ], [ 47.744221, 50.378918 ], [ 47.816555, 50.331306 ], [ 47.985279, 50.177193 ], [ 47.989944, 50.148945 ], [ 48.096474, 50.091389 ], [ 48.130165, 50.002445 ], [ 48.216888, 49.909363 ], [ 48.217918, 49.873055 ], [ 48.311806, 49.868584 ], [ 48.348057, 49.828918 ], [ 48.43325, 49.837971 ], [ 48.735001, 49.92675 ], [ 48.877556, 50.023361 ], [ 48.852196, 50.085667 ], [ 48.76189, 50.101917 ], [ 48.779388, 50.180222 ], [ 48.716835, 50.256027 ], [ 48.636055, 50.542252 ], [ 48.632805, 50.662888 ], [ 48.700527, 50.623165 ], [ 48.824749, 50.600334 ], [ 48.938667, 50.658779 ], [ 49.092972, 50.783474 ], [ 49.273693, 50.838001 ], [ 49.410915, 50.858418 ], [ 49.370083, 50.958168 ], [ 49.32478, 50.989582 ], [ 49.420502, 51.129581 ], [ 49.504082, 51.108334 ], [ 49.59436, 51.124638 ], [ 49.736, 51.114723 ], [ 49.952278, 51.240582 ], [ 50.220306, 51.294277 ], [ 50.367638, 51.340305 ], [ 50.336388, 51.375389 ], [ 50.362251, 51.436584 ], [ 50.46064, 51.439335 ], [ 50.514194, 51.601276 ], [ 50.567638, 51.642445 ], [ 50.716805, 51.628445 ], [ 50.78075, 51.598499 ], [ 50.793026, 51.661388 ], [ 50.737667, 51.687443 ], [ 50.7733, 51.76918 ], [ 50.91082, 51.856941 ], [ 50.990829, 51.87999 ], [ 51.034721, 51.918884 ], [ 51.412491, 52.089714 ], [ 51.457497, 52.227768 ], [ 51.406097, 52.259438 ], [ 51.409157, 52.352219 ], [ 51.466103, 52.362213 ], [ 51.476654, 52.418053 ], [ 51.543884, 52.42749 ], [ 51.539719, 52.479156 ], [ 51.479988, 52.5075 ], [ 51.469711, 52.57444 ], [ 51.50666, 52.632767 ], [ 51.585823, 52.688881 ], [ 51.653603, 52.651932 ], [ 51.733604, 52.667496 ], [ 51.779434, 52.79583 ], [ 51.713051, 52.833328 ], [ 51.733047, 52.876099 ], [ 51.830826, 52.876656 ], [ 51.866936, 52.929436 ], [ 51.95916, 52.952774 ], [ 52.063881, 53.007774 ], [ 52.062492, 53.078331 ], [ 52.155823, 53.09166 ], [ 52.123604, 53.223877 ], [ 52.161377, 53.242767 ], [ 52.196655, 53.379433 ], [ 52.138046, 53.403046 ], [ 52.091103, 53.46666 ], [ 52.09166, 53.55027 ], [ 52.183601, 53.556938 ], [ 52.258049, 53.655266 ], [ 52.283333, 53.734161 ], [ 52.338326, 53.781937 ], [ 52.407768, 53.918327 ], [ 52.373047, 53.965271 ], [ 52.409988, 54.01194 ], [ 52.485268, 54.051102 ], [ 52.34388, 54.171936 ], [ 52.326942, 54.249161 ], [ 52.207771, 54.278877 ], [ 52.270828, 54.327217 ], [ 52.5186, 54.324715 ], [ 52.537445, 54.377075 ], [ 52.630272, 54.340828 ], [ 52.666382, 54.361938 ], [ 52.861382, 54.31694 ], [ 52.886383, 54.27388 ], [ 53.013611, 54.268051 ], [ 53.047493, 54.34166 ], [ 53.111107, 54.283882 ], [ 53.095825, 54.240547 ], [ 52.941933, 54.20388 ], [ 53.081383, 54.067497 ], [ 53.266388, 54.073326 ], [ 53.290833, 54.02388 ], [ 53.385826, 53.972763 ], [ 53.41082, 54.026939 ], [ 53.4702, 54.045197 ], [ 53.460548, 54.111938 ], [ 53.413048, 54.222214 ], [ 53.434433, 54.269157 ], [ 53.369156, 54.319992 ], [ 53.343605, 54.38166 ], [ 53.418602, 54.48082 ], [ 53.408325, 54.550827 ], [ 53.504997, 54.606659 ], [ 53.608604, 54.71138 ], [ 53.578049, 54.821106 ], [ 53.642494, 54.901382 ], [ 53.514122, 54.881203 ], [ 53.39138, 55.003326 ], [ 53.266937, 55.010277 ], [ 53.219986, 55.078049 ], [ 53.14138, 55.09388 ], [ 53.143326, 55.149162 ], [ 53.276657, 55.165268 ], [ 53.399437, 55.2211 ], [ 53.504997, 55.201103 ], [ 53.592491, 55.21138 ], [ 53.599998, 55.260277 ], [ 53.715546, 55.336937 ], [ 53.898331, 55.38166 ], [ 53.991936, 55.544441 ], [ 54.142769, 55.61805 ], [ 54.175827, 55.706657 ], [ 54.038208, 55.800957 ], [ 53.962494, 55.791382 ], [ 53.868599, 55.880272 ], [ 53.733879, 55.884163 ], [ 53.63842, 55.91552 ], [ 53.659157, 55.953049 ], [ 53.784721, 55.969154 ], [ 53.837944, 56.04377 ], [ 53.955826, 56.017494 ], [ 54.018051, 56.025826 ], [ 54.087212, 56.128876 ], [ 54.266663, 56.232208 ], [ 54.327492, 56.244156 ], [ 54.371933, 56.309715 ], [ 54.324715, 56.462494 ], [ 54.243607, 56.43277 ], [ 54.184715, 56.537216 ], [ 54.114441, 56.536659 ], [ 54.095825, 56.628876 ], [ 54.038048, 56.693604 ], [ 53.963882, 56.631104 ], [ 53.901382, 56.634438 ], [ 53.871658, 56.703606 ], [ 53.885269, 56.7686 ], [ 53.987213, 56.742218 ], [ 54.091774, 56.791733 ], [ 54.092491, 56.958328 ], [ 54.203323, 57.008049 ], [ 54.33416, 57.009163 ], [ 54.374435, 57.073883 ], [ 54.289993, 57.083054 ], [ 54.334717, 57.155548 ], [ 54.315269, 57.290833 ], [ 54.157494, 57.314995 ], [ 54.140831, 57.381104 ], [ 54.264999, 57.418602 ], [ 54.238884, 57.471657 ], [ 54.186378, 57.461937 ], [ 54.158882, 57.561661 ], [ 54.101387, 57.518051 ], [ 54.04055, 57.5261 ], [ 54.071938, 57.673325 ], [ 54.156654, 57.702492 ], [ 54.132767, 57.842491 ], [ 54.087494, 57.913322 ], [ 54.105553, 57.977768 ], [ 53.942764, 58.095268 ], [ 53.894157, 58.188042 ], [ 53.809715, 58.228874 ], [ 53.887215, 58.327217 ], [ 53.808601, 58.375549 ], [ 53.78463, 58.439964 ], [ 53.699715, 58.609161 ], [ 53.757217, 58.652489 ], [ 53.776382, 58.720543 ], [ 53.928329, 58.781662 ], [ 53.820274, 58.820831 ], [ 53.753326, 58.873878 ], [ 53.721657, 58.949715 ], [ 53.764999, 59.022766 ], [ 53.884163, 59.090546 ], [ 53.754166, 59.141106 ], [ 53.691933, 59.101105 ], [ 53.490829, 59.14888 ], [ 53.43499, 59.143051 ], [ 53.345268, 59.176659 ], [ 53.244156, 59.275826 ], [ 53.20694, 59.338882 ], [ 53.223877, 59.389435 ], [ 53.314713, 59.45166 ], [ 53.366104, 59.518326 ], [ 53.424995, 59.690544 ], [ 53.602493, 59.699997 ], [ 53.663605, 59.837769 ], [ 53.677773, 59.928604 ], [ 53.711937, 60.003326 ], [ 53.598877, 60.156654 ], [ 53.524162, 60.168884 ], [ 53.468323, 60.21888 ], [ 53.411377, 60.224434 ], [ 53.386108, 60.165543 ], [ 53.010826, 60.159157 ], [ 52.454437, 60.200272 ], [ 52.298157, 60.241707 ], [ 52.348877, 60.379715 ], [ 52.343048, 60.446381 ], [ 52.124992, 60.470268 ], [ 52.154709, 60.545547 ], [ 51.773323, 60.596939 ], [ 51.847214, 60.783607 ], [ 51.902214, 60.883606 ], [ 52.343323, 60.834991 ], [ 52.421936, 60.978043 ], [ 52.79055, 60.948044 ], [ 52.876656, 61.09388 ], [ 53.17527, 61.065826 ], [ 53.384995, 61.033882 ], [ 53.339432, 60.893883 ], [ 53.641663, 60.858604 ], [ 53.809158, 60.847771 ], [ 53.865547, 60.987495 ], [ 54.979713, 60.863884 ], [ 55.016342, 60.904953 ], [ 55.0569, 61.013573 ], [ 55.197472, 61.004105 ], [ 55.279213, 61.129593 ], [ 55.723228, 61.081459 ], [ 55.818848, 61.248901 ], [ 56.107216, 61.225548 ], [ 56.290276, 61.203049 ], [ 56.348045, 61.293884 ], [ 56.316383, 61.325272 ], [ 56.388603, 61.43943 ], [ 56.545273, 61.428879 ], [ 56.60083, 61.502495 ], [ 56.675552, 61.527771 ], [ 57.105553, 61.48555 ], [ 57.179993, 61.51194 ], [ 57.533333, 61.500832 ], [ 58.044716, 61.502495 ], [ 58.283333, 61.510277 ], [ 58.67305, 61.502777 ], [ 58.809715, 61.505554 ], [ 58.952217, 61.561104 ], [ 59.010826, 61.544716 ], [ 59.128601, 61.626381 ], [ 59.348877, 61.682213 ], [ 59.39444, 61.766663 ], [ 59.339157, 61.802216 ], [ 59.341377, 61.856941 ], [ 59.481934, 61.975548 ], [ 59.404434, 62.105827 ], [ 59.404434, 62.14222 ], [ 59.501106, 62.265274 ], [ 59.521378, 62.321381 ], [ 59.606659, 62.377769 ], [ 59.584717, 62.414993 ], [ 59.64888, 62.510826 ], [ 59.50972, 62.547218 ], [ 59.389992, 62.736107 ], [ 59.4561, 62.774437 ], [ 59.487213, 62.897774 ], [ 59.406937, 62.949715 ], [ 59.276939, 62.970825 ], [ 59.223877, 63.041107 ], [ 59.231934, 63.089989 ], [ 59.302773, 63.126381 ], [ 59.258888, 63.201103 ], [ 59.323326, 63.255272 ], [ 59.352219, 63.363052 ], [ 59.32666, 63.408325 ], [ 59.421936, 63.489433 ], [ 59.477768, 63.568054 ], [ 59.505829, 63.645546 ], [ 59.513885, 63.779991 ], [ 59.572495, 63.836655 ], [ 59.583878, 63.938599 ], [ 59.75444, 63.992767 ], [ 59.84388, 64.083054 ], [ 59.837212, 64.15332 ], [ 59.733879, 64.15332 ], [ 59.588043, 64.232483 ], [ 59.579437, 64.279434 ], [ 59.636108, 64.337494 ], [ 59.600273, 64.464996 ], [ 59.478325, 64.488037 ], [ 59.575554, 64.563309 ], [ 59.613609, 64.622757 ], [ 59.702492, 64.651657 ], [ 59.643883, 64.712769 ], [ 59.647217, 64.772766 ], [ 59.749435, 64.859146 ], [ 59.911102, 64.912491 ], [ 60.021378, 65.003052 ], [ 60.14666, 65.065262 ], [ 60.298607, 65.073318 ], [ 60.438042, 65.042755 ], [ 60.46666, 64.982758 ], [ 60.588882, 64.945526 ], [ 60.631378, 64.883606 ], [ 60.774712, 64.994705 ], [ 60.811935, 65.048599 ], [ 60.962769, 65.041656 ], [ 61.020546, 65.07193 ], [ 61.121658, 65.174698 ], [ 61.232491, 65.181366 ], [ 61.255829, 65.231934 ], [ 61.32666, 65.270538 ], [ 61.29583, 65.346375 ], [ 61.390549, 65.381088 ], [ 61.494438, 65.4897 ], [ 61.582214, 65.551651 ], [ 61.686935, 65.573883 ], [ 61.78833, 65.631363 ], [ 61.87027, 65.702209 ], [ 62.113052, 65.720825 ], [ 62.196938, 65.756378 ], [ 62.526382, 65.842209 ], [ 62.681938, 65.863037 ], [ 62.846657, 65.867477 ], [ 62.805824, 65.937195 ], [ 62.853607, 66.071106 ], [ 62.951103, 66.103592 ], [ 62.975822, 66.156937 ], [ 63.064713, 66.234711 ], [ 63.153877, 66.267487 ], [ 63.29055, 66.232758 ], [ 63.304161, 66.274704 ], [ 63.22332, 66.326385 ], [ 63.29583, 66.396942 ], [ 63.4086, 66.452774 ], [ 63.428879, 66.488312 ], [ 63.537216, 66.460266 ], [ 63.658882, 66.525818 ], [ 63.815544, 66.547211 ], [ 63.972488, 66.650543 ], [ 64.097763, 66.64888 ], [ 64.322769, 66.66748 ], [ 64.434418, 66.729156 ], [ 64.539978, 66.727203 ], [ 64.565536, 66.796097 ], [ 64.803314, 66.833603 ], [ 64.909714, 66.862488 ], [ 64.993591, 66.863876 ], [ 65.116089, 66.899155 ], [ 65.088318, 67.055252 ], [ 65.205551, 67.066376 ], [ 65.23526, 67.147217 ], [ 65.328049, 67.200272 ], [ 65.421371, 67.212204 ], [ 65.658875, 67.306091 ], [ 65.718872, 67.340546 ], [ 65.701096, 67.389709 ], [ 65.805542, 67.380814 ], [ 65.96138, 67.395264 ], [ 66.106644, 67.478592 ], [ 66.039703, 67.576935 ], [ 65.836929, 67.554153 ], [ 65.795258, 67.579987 ], [ 65.830826, 67.647217 ], [ 66.021652, 67.673874 ], [ 66.092484, 67.645538 ], [ 66.180817, 67.66832 ], [ 66.199417, 67.7397 ], [ 66.125534, 67.772766 ], [ 66.018051, 67.793045 ], [ 66.086105, 67.934418 ], [ 66.013611, 67.930817 ], [ 65.899155, 67.961105 ], [ 65.742477, 67.921921 ], [ 65.566666, 67.934418 ], [ 65.434708, 67.918045 ], [ 65.284988, 68.011932 ], [ 65.333328, 68.08638 ], [ 65.267761, 68.219986 ], [ 65.299423, 68.267761 ], [ 65.411102, 68.3461 ], [ 65.415268, 68.376648 ], [ 65.5336, 68.462204 ], [ 65.606094, 68.484985 ], [ 65.641937, 68.564987 ], [ 65.515549, 68.588318 ], [ 65.455551, 68.647491 ], [ 65.326385, 68.724991 ], [ 65.348602, 68.791931 ], [ 65.202209, 68.823318 ], [ 65.122757, 68.805817 ], [ 64.944702, 68.851089 ], [ 64.913605, 68.873306 ], [ 64.764435, 68.891098 ], [ 64.732483, 68.85498 ], [ 64.549988, 68.870529 ], [ 64.517487, 68.982483 ], [ 64.533875, 69.02916 ], [ 64.688873, 69.080551 ], [ 64.768051, 69.141937 ], [ 64.817963, 69.139114 ], [ 64.948105, 69.255112 ], [ 64.954366, 69.252011 ], [ 64.948735, 72.087368 ], [ 70.0, 75.986103 ], [ 70.0, 85.0 ], [ 67.5, 85.0 ], [ 67.5, 89.0 ], [ 82.5, 89.0 ], [ 82.5, 81.965368 ], [ 75.605868, 81.965368 ], [ 75.605868, 79.0 ], [ 78.445007, 79.0 ], [ 78.445007, 72.378515029194702 ], [ 78.445007, 72.347382 ], [ 78.448868, 72.343048 ], [ 78.524994, 72.306931 ], [ 78.602203, 72.301926 ], [ 78.659149, 72.261108 ], [ 78.676926, 72.179428 ], [ 78.774994, 72.185806 ], [ 78.985809, 72.122757 ], [ 79.082764, 72.105545 ], [ 79.087769, 72.074707 ], [ 79.225815, 72.07666 ], [ 79.413605, 72.039429 ], [ 79.61554, 72.042206 ], [ 79.67804, 72.059418 ], [ 79.873871, 72.018051 ], [ 79.910019, 71.984482 ], [ 80.042694, 71.978546 ], [ 80.089325, 71.949936 ], [ 80.239792, 71.938004 ], [ 80.305099, 71.905594 ], [ 80.274643, 71.851486 ], [ 80.173294, 71.869308 ], [ 80.07312, 71.846893 ], [ 80.127396, 71.774902 ], [ 80.089615, 71.746231 ], [ 80.135406, 71.67453 ], [ 80.025955, 71.661789 ], [ 79.988037, 71.620255 ], [ 79.869705, 71.600266 ], [ 79.584717, 71.608597 ], [ 79.514435, 71.599152 ], [ 79.380264, 71.616379 ], [ 79.390823, 71.543869 ], [ 79.334427, 71.48082 ], [ 79.178589, 71.445526 ], [ 79.140274, 71.421646 ], [ 79.170532, 71.351089 ], [ 79.243042, 71.316086 ], [ 79.390823, 71.311646 ], [ 79.587204, 71.270828 ], [ 79.779984, 71.192749 ], [ 79.966385, 71.131088 ], [ 80.338043, 71.092392 ], [ 80.405258, 71.092651 ], [ 80.55368, 71.052567 ], [ 80.550644, 70.911835 ], [ 80.570068, 70.849747 ], [ 80.69017, 70.801865 ], [ 80.604523, 70.753525 ], [ 80.598404, 70.712296 ], [ 80.750183, 70.670303 ], [ 80.754349, 70.634689 ], [ 80.657608, 70.568756 ], [ 80.670135, 70.446228 ], [ 80.625671, 70.421677 ], [ 80.571762, 70.461884 ], [ 80.349121, 70.460663 ], [ 80.289368, 70.431091 ], [ 80.19072, 70.436569 ], [ 80.186005, 70.391815 ], [ 79.881363, 70.277771 ], [ 79.707764, 70.276093 ], [ 79.614426, 70.192749 ], [ 79.486374, 70.108322 ], [ 79.328049, 70.14888 ], [ 79.330551, 70.082489 ], [ 79.194427, 70.051651 ], [ 79.125809, 70.002213 ], [ 79.1436, 69.960541 ], [ 79.049988, 69.931931 ], [ 78.954987, 69.877472 ], [ 78.985809, 69.8022 ], [ 79.054977, 69.790543 ], [ 79.099991, 69.680817 ], [ 79.465271, 69.658325 ], [ 79.587769, 69.592209 ], [ 79.63916, 69.485809 ], [ 79.721924, 69.428589 ], [ 79.972763, 69.336105 ], [ 80.032944, 69.355194 ], [ 80.227646, 69.35881 ], [ 80.462692, 69.316254 ], [ 80.766693, 69.305038 ], [ 80.793106, 69.263947 ], [ 80.955963, 69.206665 ], [ 81.15799, 69.236633 ], [ 81.351089, 69.288315 ], [ 81.444138, 69.25444 ], [ 81.611649, 69.286102 ], [ 81.672485, 69.448318 ], [ 81.781097, 69.431366 ], [ 81.932755, 69.351654 ], [ 81.901657, 69.313873 ], [ 81.818054, 69.289429 ], [ 81.767212, 69.231934 ], [ 81.843872, 69.184982 ], [ 82.010269, 69.180542 ], [ 82.271378, 69.156937 ], [ 82.357208, 69.170822 ], [ 82.469147, 69.155823 ], [ 82.451096, 69.075821 ], [ 82.322495, 69.059143 ], [ 82.351379, 69.021103 ], [ 82.497208, 68.987762 ], [ 82.537201, 68.926651 ], [ 82.5522, 68.818329 ], [ 82.729431, 68.787491 ], [ 82.782883, 68.798813 ], [ 82.801651, 68.740814 ], [ 83.032486, 68.676926 ], [ 82.901093, 68.625259 ], [ 82.693039, 68.632751 ], [ 82.589981, 68.602768 ], [ 82.618317, 68.534714 ], [ 82.686646, 68.481369 ], [ 82.711105, 68.398041 ], [ 82.684418, 68.346375 ], [ 82.70665, 68.29332 ], [ 82.573608, 68.255829 ], [ 82.512497, 68.164429 ], [ 82.392761, 68.177475 ], [ 82.356934, 68.095825 ], [ 82.393051, 68.064148 ], [ 82.37442, 67.949142 ], [ 82.296646, 67.941086 ], [ 82.05748, 67.947479 ], [ 81.988876, 67.963318 ], [ 81.877197, 67.931656 ], [ 81.778046, 67.951935 ], [ 81.723877, 67.906097 ], [ 81.848602, 67.833328 ], [ 81.903046, 67.777771 ], [ 82.089432, 67.729156 ], [ 82.101654, 67.680267 ], [ 82.046371, 67.651932 ], [ 82.114151, 67.599426 ], [ 82.261658, 67.551086 ], [ 82.337204, 67.564697 ], [ 82.3936, 67.52832 ], [ 82.233597, 67.420822 ], [ 82.357758, 67.334427 ], [ 82.259155, 67.279984 ], [ 82.141373, 67.256943 ], [ 82.12442, 67.234421 ], [ 82.370529, 67.142761 ], [ 82.891373, 66.938309 ], [ 83.041092, 66.892212 ], [ 83.065811, 66.84082 ], [ 83.162766, 66.818329 ], [ 83.188309, 66.743042 ], [ 83.2836, 66.695251 ], [ 83.305817, 66.661652 ], [ 83.183594, 66.622208 ], [ 83.103867, 66.617752 ], [ 83.076935, 66.578598 ], [ 83.0961, 66.448868 ], [ 83.124695, 66.421646 ], [ 83.26416, 66.389984 ], [ 83.344147, 66.341934 ], [ 83.426086, 66.258041 ], [ 83.522491, 66.202209 ], [ 83.470825, 66.15387 ], [ 83.379425, 66.140274 ], [ 83.290268, 66.061371 ], [ 83.338882, 66.00943 ], [ 83.528046, 65.904434 ], [ 83.506378, 65.829437 ], [ 83.591095, 65.773605 ], [ 83.743317, 65.801086 ], [ 83.949707, 65.803589 ], [ 84.032486, 65.793869 ], [ 84.073044, 65.752777 ], [ 84.209427, 65.69136 ], [ 84.32666, 65.687759 ], [ 84.299988, 65.616653 ], [ 84.257767, 65.585266 ], [ 84.431931, 65.551926 ], [ 84.49971, 65.506943 ], [ 84.554428, 65.425812 ], [ 84.501938, 65.396652 ], [ 84.585815, 65.317764 ], [ 84.524429, 65.212769 ], [ 84.437759, 65.199997 ], [ 84.374832, 65.164261 ], [ 84.305817, 65.08194 ], [ 84.381088, 65.032761 ], [ 84.324997, 64.966934 ], [ 84.3022, 64.897766 ], [ 84.44693, 64.888885 ], [ 84.819443, 64.931091 ], [ 84.952774, 64.918594 ], [ 84.938583, 64.82222 ], [ 85.094437, 64.812195 ], [ 85.115265, 64.768875 ], [ 85.20665, 64.753052 ], [ 85.44693, 64.794708 ], [ 85.546936, 64.830276 ], [ 85.708878, 64.81192 ], [ 85.820541, 64.784714 ], [ 85.858871, 64.739426 ], [ 85.808594, 64.647491 ], [ 85.903046, 64.601929 ], [ 85.905823, 64.565811 ], [ 85.845261, 64.507492 ], [ 85.839432, 64.464432 ], [ 85.931931, 64.408325 ], [ 85.954163, 64.323883 ], [ 86.031097, 64.275269 ], [ 86.01915, 64.231659 ], [ 85.93248, 64.122482 ], [ 85.958038, 64.054428 ], [ 85.654434, 63.985268 ], [ 85.516388, 63.929993 ], [ 85.372757, 63.819443 ], [ 85.333878, 63.758049 ], [ 85.339981, 63.70694 ], [ 85.267212, 63.646385 ], [ 85.154434, 63.590271 ], [ 85.103317, 63.606659 ], [ 85.069443, 63.544441 ], [ 85.20166, 63.506386 ], [ 85.296097, 63.515831 ], [ 85.374146, 63.462212 ], [ 85.356369, 63.408882 ], [ 85.398041, 63.359161 ], [ 85.631363, 63.372765 ], [ 85.672211, 63.338326 ], [ 85.536652, 63.260826 ], [ 85.469147, 63.142769 ], [ 85.58194, 63.042496 ], [ 85.498032, 62.99527 ], [ 85.522491, 62.938324 ], [ 85.451096, 62.882767 ], [ 85.34137, 62.876099 ], [ 85.184708, 62.77166 ], [ 85.098602, 62.638603 ], [ 84.948029, 62.591377 ], [ 84.913605, 62.504715 ], [ 84.813873, 62.42305 ], [ 84.726379, 62.406937 ], [ 84.43692, 62.189156 ], [ 84.554428, 61.996941 ], [ 84.516663, 61.939156 ], [ 84.567215, 61.89138 ], [ 84.633881, 61.879715 ], [ 84.687485, 61.806099 ], [ 84.816376, 61.786659 ], [ 84.940811, 61.797218 ], [ 85.098328, 61.75444 ], [ 85.157211, 61.708328 ], [ 85.284424, 61.681938 ], [ 85.385818, 61.70166 ], [ 85.467758, 61.628601 ], [ 85.722763, 61.573608 ], [ 85.851929, 61.597771 ], [ 85.969147, 61.543053 ], [ 85.96138, 61.464996 ], [ 85.780548, 61.445541 ], [ 85.633606, 61.376656 ], [ 85.710541, 61.297493 ], [ 85.363037, 61.2061 ], [ 84.998322, 61.099998 ], [ 84.698868, 61.002777 ], [ 84.614151, 61.0 ], [ 84.259644, 60.855415 ], [ 83.993866, 60.824715 ], [ 83.869431, 60.882767 ], [ 83.615814, 60.981659 ], [ 83.50943, 61.049164 ], [ 83.144989, 61.032768 ], [ 82.92276, 60.938042 ], [ 82.764709, 60.886658 ], [ 82.382477, 60.712769 ], [ 82.390274, 60.610275 ], [ 82.166656, 60.518326 ], [ 82.008041, 60.579994 ], [ 81.861649, 60.650543 ], [ 81.540543, 60.633881 ], [ 81.497757, 60.615547 ], [ 81.11116, 60.637497 ], [ 81.055496, 60.68084 ], [ 81.038223, 60.754189 ], [ 80.697708, 60.800163 ], [ 80.6306, 60.767677 ], [ 80.42099, 60.765572 ], [ 80.173141, 60.661377 ], [ 79.888046, 60.690826 ], [ 79.71582, 60.695541 ], [ 79.502487, 60.686935 ], [ 79.386658, 60.648605 ], [ 79.2836, 60.719986 ], [ 79.288315, 60.80999 ], [ 79.185532, 60.8386 ], [ 79.106934, 60.817215 ], [ 78.979156, 60.829437 ], [ 78.902206, 60.784721 ], [ 78.783875, 60.783882 ], [ 78.678864, 60.830276 ], [ 78.475266, 60.776939 ], [ 78.163879, 60.803604 ], [ 78.081375, 60.796104 ], [ 77.94165, 60.748878 ], [ 77.689423, 60.827492 ], [ 77.561646, 60.82972 ], [ 77.408035, 60.810272 ], [ 77.134995, 60.857216 ], [ 77.090546, 60.8461 ], [ 77.072495, 60.722214 ], [ 76.984985, 60.722763 ], [ 76.961929, 60.645828 ], [ 77.024429, 60.635269 ], [ 77.037491, 60.534996 ], [ 76.886658, 60.488602 ], [ 76.774429, 60.476654 ], [ 76.744705, 60.342491 ], [ 76.803589, 60.337212 ], [ 76.851654, 60.268051 ], [ 76.781662, 60.172493 ], [ 76.691925, 60.113609 ], [ 76.758881, 60.060822 ], [ 76.739151, 59.954437 ], [ 76.741364, 59.729431 ], [ 76.645538, 59.693321 ], [ 76.648331, 59.580276 ], [ 76.455826, 59.544441 ], [ 76.16304, 59.54361 ], [ 75.990814, 59.419716 ], [ 75.891098, 59.433052 ], [ 75.831375, 59.296387 ], [ 75.778595, 59.272217 ], [ 75.615265, 59.241104 ], [ 75.683594, 59.061935 ], [ 75.690536, 59.01194 ], [ 75.381653, 58.788048 ], [ 75.150269, 58.678047 ], [ 75.170822, 58.618599 ], [ 74.891663, 58.477768 ], [ 74.888321, 58.435547 ], [ 74.799988, 58.426941 ], [ 74.626648, 58.339157 ], [ 74.626648, 58.29805 ], [ 74.430817, 58.24749 ], [ 74.206375, 58.133606 ], [ 73.662766, 58.145546 ], [ 73.084427, 58.149162 ], [ 72.938583, 58.087494 ], [ 72.872208, 58.006104 ], [ 72.521652, 58.011665 ], [ 72.480545, 58.032494 ], [ 72.121643, 58.023048 ], [ 72.070541, 58.094154 ], [ 71.988876, 58.12471 ], [ 71.584991, 58.095543 ], [ 71.471375, 58.07972 ], [ 71.41748, 58.095825 ], [ 71.238586, 58.071106 ], [ 71.219147, 58.146942 ], [ 71.247208, 58.356102 ], [ 71.303864, 58.397491 ], [ 71.126648, 58.445267 ], [ 71.078873, 58.528603 ], [ 71.011383, 58.516388 ], [ 70.948593, 58.546944 ], [ 70.873032, 58.542496 ], [ 70.424988, 57.925552 ], [ 70.383881, 57.901382 ], [ 70.441711, 57.838425 ], [ 70.425537, 57.766388 ], [ 70.483871, 57.767769 ], [ 70.498871, 57.707497 ], [ 70.574432, 57.70916 ], [ 70.577209, 57.578606 ], [ 70.678314, 57.591103 ], [ 70.687485, 57.514442 ], [ 70.435806, 57.409714 ], [ 70.4272, 57.383881 ], [ 70.498596, 57.297775 ], [ 70.551926, 57.270271 ], [ 70.656097, 57.26416 ], [ 70.609711, 57.199158 ], [ 70.781937, 57.199158 ], [ 70.754166, 57.277489 ], [ 70.811646, 57.328049 ], [ 70.958328, 57.330276 ], [ 71.006378, 57.352776 ], [ 71.092758, 57.343323 ], [ 71.135269, 57.207497 ], [ 71.231094, 57.18499 ], [ 71.370819, 57.063606 ], [ 71.563034, 56.986382 ], [ 71.653046, 56.924438 ], [ 71.669144, 56.822769 ], [ 71.585541, 56.794441 ], [ 71.540817, 56.719154 ], [ 71.390549, 56.729431 ], [ 71.348877, 56.669159 ], [ 71.264999, 56.689987 ], [ 71.119141, 56.645546 ], [ 71.09082, 56.55555 ], [ 70.954163, 56.491104 ], [ 70.857758, 56.503052 ], [ 70.919144, 56.341377 ], [ 70.835815, 56.331108 ], [ 70.764435, 56.291939 ], [ 70.831665, 56.154991 ], [ 70.916382, 56.11055 ], [ 70.862198, 55.985268 ], [ 70.804153, 55.920273 ], [ 70.748032, 55.898048 ], [ 70.474152, 55.891663 ], [ 70.475266, 55.852219 ], [ 70.628586, 55.816101 ], [ 70.542206, 55.714714 ], [ 70.548874, 55.673325 ], [ 70.634155, 55.628044 ], [ 70.699417, 55.633881 ], [ 70.763611, 55.597771 ], [ 70.69664, 55.506386 ], [ 70.549149, 55.491379 ], [ 70.466095, 55.404991 ], [ 70.506653, 55.337769 ], [ 70.327675, 55.182816 ], [ 70.228584, 55.136333 ], [ 69.919609, 55.215611 ], [ 69.883919, 55.275112 ], [ 69.831497, 55.302387 ], [ 69.668053, 55.342945 ], [ 69.488976, 55.341167 ], [ 69.330193, 55.362583 ], [ 69.185692, 55.339195 ], [ 69.139725, 55.389252 ], [ 69.041527, 55.422001 ], [ 68.978638, 55.372028 ], [ 69.011192, 55.302361 ], [ 68.93483, 55.283527 ], [ 68.913223, 55.31739 ], [ 68.81414, 55.352974 ], [ 68.724693, 55.340279 ], [ 68.703918, 55.27964 ], [ 68.641388, 55.241196 ], [ 68.617447, 55.188999 ], [ 68.557442, 55.200974 ], [ 68.183556, 55.18914 ], [ 68.195198, 55.136082 ], [ 68.285278, 55.064445 ], [ 68.219307, 55.022667 ], [ 68.102165, 54.917694 ], [ 67.884392, 54.978584 ], [ 67.793472, 54.942196 ], [ 67.752335, 54.878723 ], [ 67.552528, 54.83836 ], [ 67.380669, 54.850388 ], [ 67.336113, 54.865334 ], [ 67.280441, 54.820805 ], [ 67.098, 54.801029 ], [ 67.048447, 54.774166 ], [ 66.95192, 54.778694 ], [ 66.781693, 54.760445 ], [ 66.735191, 54.725056 ], [ 66.657143, 54.733387 ], [ 66.552002, 54.71711 ], [ 66.439552, 54.719166 ], [ 66.405441, 54.696835 ], [ 66.020058, 54.618084 ], [ 65.952446, 54.630974 ], [ 65.960526, 54.710415 ], [ 65.832497, 54.688389 ], [ 65.803108, 54.629082 ], [ 65.74189, 54.602974 ], [ 65.632057, 54.638195 ], [ 65.501305, 54.651165 ], [ 65.446083, 54.570137 ], [ 65.357803, 54.580891 ], [ 65.200775, 54.524582 ], [ 65.189087, 54.455528 ], [ 65.240196, 54.367474 ], [ 65.222473, 54.34161 ], [ 65.120781, 54.337776 ], [ 64.977943, 54.419613 ], [ 64.809639, 54.366833 ], [ 64.732803, 54.356667 ], [ 64.597054, 54.374889 ], [ 64.457642, 54.335724 ], [ 64.352776, 54.334526 ], [ 64.184975, 54.307278 ], [ 64.079109, 54.31778 ], [ 64.030746, 54.281502 ], [ 63.880417, 54.285862 ], [ 63.736721, 54.261528 ], [ 63.516445, 54.205555 ], [ 63.411751, 54.193527 ], [ 63.242973, 54.204334 ], [ 63.168335, 54.192444 ], [ 63.161777, 54.126751 ], [ 63.062138, 54.100418 ], [ 62.929279, 54.117249 ], [ 62.816139, 54.115833 ], [ 62.799446, 54.080917 ], [ 62.593945, 53.984859 ], [ 62.531334, 53.900391 ], [ 62.454082, 53.925945 ], [ 62.411335, 53.986889 ], [ 62.4375, 54.055054 ], [ 62.346054, 54.035778 ], [ 62.205582, 54.03297 ], [ 62.08839, 54.057861 ], [ 62.004971, 54.019249 ], [ 62.027527, 53.948307 ], [ 61.890057, 53.960888 ], [ 61.879944, 54.018082 ], [ 61.792027, 53.984222 ], [ 61.73761, 54.029362 ], [ 61.58147, 53.995388 ], [ 61.491695, 54.025002 ], [ 61.461056, 54.083973 ], [ 61.331333, 54.079777 ], [ 61.256168, 54.034111 ], [ 61.275723, 53.984806 ], [ 61.256416, 53.917473 ], [ 61.18264, 53.927029 ], [ 61.157501, 53.961582 ], [ 61.027721, 53.951889 ], [ 60.989887, 53.897141 ], [ 61.136276, 53.880917 ], [ 61.218334, 53.815887 ], [ 61.110806, 53.71611 ], [ 60.987473, 53.671528 ], [ 60.921307, 53.667721 ], [ 60.918304, 53.6175 ], [ 61.124863, 53.594582 ], [ 61.174583, 53.568638 ], [ 61.357582, 53.559891 ], [ 61.43314, 53.592609 ], [ 61.558334, 53.575668 ], [ 61.581333, 53.501167 ], [ 61.483639, 53.462112 ], [ 61.386055, 53.491749 ], [ 61.259861, 53.504223 ], [ 61.237473, 53.438194 ], [ 61.163418, 53.39286 ], [ 61.185081, 53.296944 ], [ 61.266972, 53.271168 ], [ 61.39761, 53.267918 ], [ 61.465248, 53.224556 ], [ 61.612141, 53.216026 ], [ 61.66964, 53.25264 ], [ 61.801361, 53.161667 ], [ 61.948444, 53.12989 ], [ 62.112972, 53.117584 ], [ 62.13961, 53.006527 ], [ 62.010334, 52.952389 ], [ 61.895279, 53.011307 ], [ 61.717278, 52.998055 ], [ 61.660194, 52.961418 ], [ 61.462029, 53.035805 ], [ 61.373638, 52.987446 ], [ 61.239193, 53.032585 ], [ 61.118446, 52.97089 ], [ 61.071945, 52.921696 ], [ 60.852612, 52.834667 ], [ 60.823612, 52.762722 ], [ 60.71925, 52.742332 ], [ 60.722557, 52.632389 ], [ 60.843555, 52.619694 ], [ 60.845722, 52.527168 ], [ 60.901054, 52.491665 ], [ 60.981667, 52.483891 ], [ 60.972279, 52.418446 ], [ 61.070168, 52.33461 ], [ 60.966583, 52.274361 ], [ 60.797249, 52.232193 ], [ 60.724251, 52.169445 ], [ 60.484806, 52.144333 ], [ 60.298, 52.05439 ], [ 60.2715, 52.012333 ], [ 60.010502, 51.989029 ], [ 60.023388, 51.886196 ], [ 60.071056, 51.858307 ], [ 60.183109, 51.865196 ], [ 60.180862, 51.903557 ], [ 60.403805, 51.813526 ], [ 60.519417, 51.798557 ], [ 60.453499, 51.734165 ], [ 60.356224, 51.688499 ], [ 60.435249, 51.630943 ], [ 60.598557, 51.615196 ], [ 60.90514, 51.614113 ], [ 60.959251, 51.500584 ], [ 61.002724, 51.465111 ], [ 61.172001, 51.461304 ], [ 61.239029, 51.434776 ], [ 61.325474, 51.439251 ], [ 61.399361, 51.417194 ], [ 61.510502, 51.41386 ], [ 61.552696, 51.340332 ], [ 61.674091, 51.266075 ], [ 61.799164, 51.274437 ], [ 61.86055, 51.306381 ], [ 61.92527, 51.250832 ], [ 61.91082, 51.164154 ], [ 62.017212, 51.086655 ], [ 62.063324, 51.13472 ], [ 62.146103, 51.148048 ], [ 62.211662, 51.106384 ], [ 62.223045, 51.054161 ], [ 62.165543, 51.01416 ], [ 62.406937, 50.868599 ], [ 62.262497, 50.835548 ], [ 62.235268, 50.803322 ], [ 62.25444, 50.682495 ], [ 62.382492, 50.722488 ], [ 62.399719, 50.65416 ], [ 62.450272, 50.604439 ], [ 62.455551, 50.548882 ], [ 62.565826, 50.402771 ], [ 62.624161, 50.371376 ], [ 62.698326, 50.283051 ], [ 62.710274, 50.212212 ], [ 62.790833, 50.166664 ], [ 62.864159, 50.097771 ], [ 62.940826, 49.991379 ], [ 62.904434, 49.894157 ], [ 62.738602, 49.947769 ], [ 62.57666, 49.852776 ], [ 62.596939, 49.779991 ], [ 62.454437, 49.678879 ], [ 62.45166, 49.607216 ], [ 62.361107, 49.562767 ], [ 62.303604, 49.493324 ], [ 62.350273, 49.469437 ], [ 62.544998, 49.251106 ], [ 62.356659, 49.259438 ], [ 62.336105, 49.199715 ], [ 62.462494, 49.176384 ], [ 62.552773, 49.023048 ], [ 62.673882, 48.931107 ], [ 62.847214, 48.843323 ], [ 62.976097, 48.911934 ], [ 63.114159, 48.842491 ], [ 63.058601, 48.736382 ], [ 63.094154, 48.679436 ], [ 63.266388, 48.623322 ], [ 63.414993, 48.592491 ], [ 63.470825, 48.535828 ], [ 63.589989, 48.513885 ], [ 63.720268, 48.472214 ], [ 63.812492, 48.404434 ], [ 63.885269, 48.305267 ], [ 63.915543, 48.233879 ], [ 64.043045, 48.12471 ], [ 64.13443, 47.984993 ], [ 64.289154, 47.888329 ], [ 64.016098, 47.721657 ], [ 63.684433, 47.551659 ], [ 63.427773, 47.449158 ], [ 63.184433, 47.335266 ], [ 63.142494, 47.284996 ], [ 62.961937, 47.205269 ], [ 62.851921, 47.138885 ], [ 62.653046, 47.188324 ], [ 62.583603, 47.3461 ], [ 62.347771, 47.541382 ], [ 62.250275, 47.539162 ], [ 62.052773, 47.751106 ], [ 61.927216, 47.825829 ], [ 61.377769, 47.821106 ], [ 61.306381, 47.785828 ], [ 60.976936, 47.217766 ], [ 60.953323, 47.203606 ], [ 60.68055, 47.20916 ], [ 60.388603, 47.258049 ], [ 60.351105, 46.930275 ], [ 60.097214, 46.909714 ], [ 60.006104, 46.833054 ], [ 59.852219, 46.746101 ], [ 59.575272, 46.524437 ], [ 59.450546, 46.409714 ], [ 59.189713, 46.141937 ], [ 59.043358, 46.00444 ], [ 58.995121, 46.009602 ], [ 58.923672, 45.970627 ], [ 58.741802, 45.934902 ], [ 58.706078, 45.908924 ], [ 58.624882, 45.782261 ], [ 58.580151, 45.599678 ], [ 58.60796, 45.584942 ], [ 60.726994, 44.584438 ], [ 61.111195, 44.35775 ], [ 61.121418, 44.268665 ], [ 61.275444, 44.136776 ], [ 61.975639, 43.51228 ], [ 62.028694, 43.486526 ], [ 62.938946, 43.616749 ], [ 63.388889, 43.672863 ], [ 63.456638, 43.662777 ], [ 63.911888, 43.628082 ], [ 64.21875, 43.610889 ], [ 64.53653, 43.603306 ], [ 65.010246, 43.766861 ], [ 65.114418, 43.775585 ], [ 65.17025, 43.743557 ], [ 65.294136, 43.545277 ], [ 65.415642, 43.456276 ], [ 65.651085, 43.303528 ], [ 65.683556, 43.207584 ], [ 65.827194, 42.868137 ], [ 66.099197, 42.962196 ], [ 66.105667, 42.347332 ], [ 66.016441, 42.378418 ], [ 66.008553, 41.943501 ], [ 66.530746, 41.896305 ], [ 66.60611, 41.251415 ], [ 67.311165, 41.211807 ], [ 67.743469, 41.201946 ], [ 67.846359, 41.160252 ], [ 67.924057, 41.195305 ], [ 68.029274, 41.196609 ], [ 68.071053, 41.162224 ], [ 68.181221, 41.15686 ], [ 68.297112, 41.119167 ], [ 68.436607, 41.10989 ], [ 68.495392, 41.076279 ], [ 68.52597, 41.018196 ], [ 68.612473, 40.990807 ], [ 68.645248, 40.936333 ], [ 68.744804, 40.987446 ], [ 68.829529, 41.116222 ], [ 68.988197, 41.253193 ], [ 69.033249, 41.342167 ], [ 69.231476, 41.461723 ], [ 69.423141, 41.454887 ], [ 69.420891, 41.522415 ], [ 69.519974, 41.563057 ], [ 69.621086, 41.658028 ], [ 69.832802, 41.719082 ], [ 69.881416, 41.697807 ], [ 69.95211, 41.718807 ], [ 69.984558, 41.780804 ], [ 70.159752, 41.844307 ], [ 70.240303, 41.941166 ], [ 70.330887, 41.975613 ], [ 70.322609, 42.034363 ], [ 70.433304, 42.130085 ], [ 70.546471, 42.069527 ], [ 70.559166, 42.018723 ], [ 70.626976, 42.000832 ], [ 70.693581, 42.126835 ], [ 70.800941, 42.209862 ], [ 70.839058, 42.193943 ], [ 70.940224, 42.259193 ], [ 71.070274, 42.287834 ], [ 71.154747, 42.264557 ], [ 71.261139, 42.195946 ], [ 71.213608, 42.13475 ], [ 71.145142, 42.132751 ], [ 70.966225, 42.026333 ], [ 70.861641, 42.041805 ], [ 70.824532, 41.922417 ], [ 70.759056, 41.933361 ], [ 70.656586, 41.891445 ], [ 70.601196, 41.827583 ], [ 70.508888, 41.776333 ], [ 70.492386, 41.718861 ], [ 70.348251, 41.637749 ], [ 70.195557, 41.598305 ], [ 70.186165, 41.518555 ], [ 70.320274, 41.514416 ], [ 70.407143, 41.466667 ], [ 70.483391, 41.399612 ], [ 70.528419, 41.399666 ], [ 70.594803, 41.448029 ], [ 70.715942, 41.460972 ], [ 70.780083, 41.375389 ], [ 70.783165, 41.188194 ], [ 70.875359, 41.231445 ], [ 70.96167, 41.163082 ], [ 71.019279, 41.192665 ], [ 71.143913, 41.152527 ], [ 71.257469, 41.186359 ], [ 71.295723, 41.106224 ], [ 71.365219, 41.162666 ], [ 71.435081, 41.123611 ], [ 71.477165, 41.221169 ], [ 71.480782, 41.314888 ], [ 71.591003, 41.303391 ], [ 71.67617, 41.398582 ], [ 71.660309, 41.519165 ], [ 71.725998, 41.553722 ], [ 71.731308, 41.456833 ], [ 71.799309, 41.431446 ], [ 71.935165, 41.308277 ], [ 71.862, 41.200863 ], [ 71.890358, 41.172165 ], [ 72.02375, 41.162777 ], [ 72.083557, 41.140888 ], [ 72.192719, 41.154861 ], [ 72.228363, 41.052418 ], [ 72.292946, 41.027805 ], [ 72.351692, 41.064777 ], [ 72.497581, 41.03064 ], [ 72.5755, 40.890472 ], [ 72.680809, 40.85561 ], [ 72.834808, 40.869473 ], [ 72.909248, 40.817055 ], [ 73.02108, 40.86525 ], [ 73.127251, 40.850555 ], [ 73.11364, 40.796112 ], [ 72.815247, 40.680668 ], [ 72.773781, 40.681362 ], [ 72.762085, 40.57 ], [ 72.683525, 40.593166 ], [ 72.636665, 40.51939 ], [ 72.476303, 40.564056 ], [ 72.406059, 40.622971 ], [ 72.440918, 40.473331 ], [ 72.4105, 40.401249 ], [ 72.183502, 40.498249 ], [ 72.070778, 40.383472 ], [ 71.948586, 40.305332 ], [ 71.939476, 40.22464 ], [ 71.716194, 40.150806 ], [ 71.680191, 40.231972 ], [ 71.551056, 40.199638 ], [ 71.486916, 40.262417 ], [ 71.277336, 40.326721 ], [ 71.118225, 40.319332 ], [ 70.963165, 40.259918 ], [ 70.971222, 40.164612 ], [ 70.910278, 40.144165 ], [ 70.82428, 40.159752 ], [ 70.759056, 40.089863 ], [ 70.654419, 40.066113 ], [ 70.64064, 39.979305 ], [ 70.57547, 39.943417 ], [ 70.481583, 39.925056 ], [ 70.45639, 39.947613 ], [ 70.565086, 40.020695 ], [ 70.523582, 40.051418 ], [ 70.429863, 40.062916 ], [ 70.26886, 40.131721 ], [ 70.215164, 40.128334 ], [ 70.039948, 40.23875 ], [ 69.802055, 40.158779 ], [ 69.701279, 40.116417 ], [ 69.562553, 40.103832 ], [ 69.507057, 40.033833 ], [ 69.533081, 39.932919 ], [ 69.426003, 39.906113 ], [ 69.373085, 40.020443 ], [ 69.276611, 39.791138 ], [ 69.320305, 39.709473 ], [ 69.340195, 39.539249 ], [ 69.398888, 39.549221 ], [ 69.483276, 39.524887 ], [ 69.626137, 39.585167 ], [ 69.712112, 39.59325 ], [ 69.811165, 39.565418 ], [ 69.867332, 39.523445 ], [ 69.932053, 39.577084 ], [ 70.013168, 39.539555 ], [ 70.108498, 39.584 ], [ 70.198112, 39.589722 ], [ 70.272781, 39.527279 ], [ 70.374947, 39.590973 ], [ 70.451668, 39.576805 ], [ 70.484779, 39.612583 ], [ 70.660614, 39.565971 ], [ 70.761444, 39.462471 ], [ 70.768028, 39.399361 ], [ 70.912415, 39.383305 ], [ 71.066055, 39.414223 ], [ 71.089668, 39.499168 ], [ 71.193359, 39.511276 ], [ 71.258583, 39.548916 ], [ 71.30764, 39.523361 ], [ 71.36097, 39.576332 ], [ 71.414581, 39.571167 ], [ 71.498947, 39.613609 ], [ 71.551025, 39.58736 ], [ 71.562447, 39.454861 ], [ 71.64064, 39.439888 ], [ 71.706886, 39.456139 ], [ 71.786469, 39.443417 ], [ 71.796143, 39.375278 ], [ 71.75267, 39.323971 ], [ 71.802025, 39.273693 ], [ 71.918747, 39.280277 ], [ 71.95797, 39.331276 ], [ 72.035637, 39.366501 ], [ 72.106697, 39.264637 ], [ 72.168282, 39.261639 ], [ 72.263031, 39.210861 ], [ 72.307892, 39.297974 ], [ 72.349525, 39.330002 ], [ 72.46933, 39.348915 ], [ 72.496414, 39.376335 ], [ 72.595108, 39.357307 ], [ 72.690971, 39.384445 ], [ 72.77108, 39.351833 ], [ 72.923416, 39.365696 ], [ 73.029442, 39.353584 ], [ 73.095695, 39.373444 ], [ 73.212997, 39.356224 ], [ 73.238777, 39.405693 ], [ 73.355141, 39.39753 ], [ 73.390114, 39.451248 ], [ 73.508972, 39.467777 ], [ 73.563248, 39.452057 ], [ 73.658249, 39.465084 ], [ 73.669975, 39.390835 ], [ 73.565109, 39.240417 ], [ 73.616219, 39.237835 ], [ 73.691559, 39.156776 ], [ 73.744835, 39.030388 ], [ 73.819748, 39.03297 ], [ 73.821198, 38.93861 ], [ 73.747307, 38.933083 ], [ 73.706779, 38.885555 ], [ 73.756195, 38.777611 ], [ 73.76886, 38.690224 ], [ 73.806725, 38.633499 ], [ 73.924332, 38.536083 ], [ 74.069809, 38.531029 ], [ 74.070663, 38.568722 ], [ 74.134087, 38.668446 ], [ 74.287247, 38.648724 ], [ 74.382225, 38.653027 ], [ 74.506615, 38.629776 ], [ 74.630997, 38.583027 ], [ 74.718666, 38.522251 ], [ 74.867249, 38.498417 ], [ 74.869415, 38.403526 ], [ 74.787781, 38.354527 ], [ 74.802223, 38.225555 ], [ 74.785805, 38.185528 ], [ 74.822891, 38.083057 ], [ 74.864914, 38.025333 ], [ 74.914558, 38.009029 ], [ 74.905441, 37.842861 ], [ 74.995087, 37.762806 ], [ 74.896614, 37.657665 ], [ 74.928024, 37.556252 ], [ 75.0, 37.518166 ], [ 75.055473, 37.527168 ], [ 75.133835, 37.437443 ], [ 75.101418, 37.375389 ], [ 75.116249, 37.320251 ], [ 74.934914, 37.289501 ], [ 74.878555, 37.235695 ], [ 74.829697, 37.329166 ], [ 74.682587, 37.40414 ], [ 74.562225, 37.379471 ], [ 74.544052, 37.398556 ], [ 74.424614, 37.388222 ], [ 74.344696, 37.416332 ], [ 74.243225, 37.379665 ], [ 74.222252, 37.348026 ], [ 73.963501, 37.292168 ], [ 73.752083, 37.222832 ], [ 73.627335, 37.244335 ], [ 73.660614, 37.30661 ], [ 73.766586, 37.338585 ], [ 73.755974, 37.435001 ], [ 73.569916, 37.44175 ], [ 73.510086, 37.47036 ], [ 73.367691, 37.437973 ], [ 73.308418, 37.462418 ], [ 73.204002, 37.402637 ], [ 73.156059, 37.407833 ], [ 73.075302, 37.317638 ], [ 72.928947, 37.276222 ], [ 72.817802, 37.229279 ], [ 72.76947, 37.18211 ], [ 72.675636, 37.026222 ], [ 72.516945, 36.998028 ], [ 72.424225, 37.004528 ], [ 72.318726, 36.977055 ], [ 72.172806, 36.905724 ], [ 72.106194, 36.847195 ], [ 72.047142, 36.834026 ], [ 71.830223, 36.687054 ], [ 71.666832, 36.67786 ], [ 71.560585, 36.756695 ], [ 71.505669, 36.900585 ], [ 71.459137, 36.951668 ], [ 71.427193, 37.055111 ], [ 71.446442, 37.173973 ], [ 71.499001, 37.308193 ], [ 71.485085, 37.339333 ], [ 71.523026, 37.478222 ], [ 71.493942, 37.538139 ], [ 71.546753, 37.709499 ], [ 71.529945, 37.757416 ], [ 71.589081, 37.796501 ], [ 71.578247, 37.927891 ], [ 71.529388, 37.954166 ], [ 71.326836, 37.885139 ], [ 71.26017, 37.93375 ], [ 71.285385, 38.036221 ], [ 71.3125, 38.061584 ], [ 71.367249, 38.236637 ], [ 71.327446, 38.294529 ], [ 71.181747, 38.338249 ], [ 71.162918, 38.379276 ], [ 71.079613, 38.415585 ], [ 71.04483, 38.398556 ], [ 70.989082, 38.483418 ], [ 70.950226, 38.434418 ], [ 70.765305, 38.448002 ], [ 70.678108, 38.407166 ], [ 70.690002, 38.367416 ], [ 70.605972, 38.34325 ], [ 70.502777, 38.127945 ], [ 70.365364, 38.051777 ], [ 70.278053, 37.940861 ], [ 70.179916, 37.944195 ], [ 70.196747, 37.842529 ], [ 70.281113, 37.811554 ], [ 70.306137, 37.695915 ], [ 70.250053, 37.611973 ], [ 70.102142, 37.524666 ], [ 69.953888, 37.563972 ], [ 69.908081, 37.616779 ], [ 69.818192, 37.573833 ], [ 69.524246, 37.584999 ], [ 69.447304, 37.489166 ], [ 69.381226, 37.451668 ], [ 69.367165, 37.405499 ], [ 69.417137, 37.234806 ], [ 69.398415, 37.172722 ], [ 69.318863, 37.117916 ], [ 69.248833, 37.097305 ], [ 69.126472, 37.17186 ], [ 69.007942, 37.300777 ], [ 68.944389, 37.321556 ], [ 68.887337, 37.27314 ], [ 68.843697, 37.316666 ], [ 68.729553, 37.271084 ], [ 68.680496, 37.276165 ], [ 68.639053, 37.207249 ], [ 68.539391, 37.166779 ], [ 68.436531, 37.148777 ], [ 68.379974, 37.101723 ], [ 68.327164, 37.112362 ], [ 68.261917, 37.002834 ], [ 68.203445, 37.023945 ], [ 68.078194, 36.942638 ], [ 68.023834, 36.928276 ], [ 67.981056, 36.977917 ], [ 67.903999, 37.019222 ], [ 67.899055, 37.06422 ], [ 67.78653, 37.093945 ], [ 67.790527, 37.18375 ], [ 67.752136, 37.217972 ], [ 67.633331, 37.248444 ], [ 67.558693, 37.230946 ], [ 67.496223, 37.271805 ], [ 67.440308, 37.233139 ], [ 67.263969, 37.188499 ], [ 67.203751, 37.25486 ], [ 67.10778, 37.286194 ], [ 67.098335, 37.330387 ], [ 66.971359, 37.386749 ], [ 66.831253, 37.351612 ], [ 66.683365, 37.337223 ], [ 66.568947, 37.360222 ], [ 66.48436, 37.334057 ], [ 66.300415, 37.323334 ], [ 66.230164, 37.367584 ], [ 66.132668, 37.387722 ], [ 66.098503, 37.429443 ], [ 65.877052, 37.47261 ], [ 65.798309, 37.538223 ], [ 65.697586, 37.528362 ], [ 65.643692, 37.431137 ], [ 65.624191, 37.319611 ], [ 65.524307, 37.234165 ], [ 65.263359, 37.23275 ], [ 65.228058, 37.250168 ], [ 64.982613, 37.212944 ], [ 64.756615, 37.106472 ], [ 64.795441, 36.936001 ], [ 64.707664, 36.805889 ], [ 64.605194, 36.626556 ], [ 64.622948, 36.472721 ], [ 64.604332, 36.4035 ], [ 64.448807, 36.237 ], [ 64.317833, 36.199055 ], [ 64.289108, 36.153694 ], [ 64.221497, 36.166332 ], [ 64.082222, 36.112751 ], [ 64.065224, 36.00172 ], [ 63.976223, 36.041943 ], [ 63.815277, 35.99889 ], [ 63.574471, 35.956417 ], [ 63.547195, 35.913307 ], [ 63.30011, 35.864529 ], [ 63.129223, 35.869305 ], [ 63.140556, 35.775639 ], [ 63.244251, 35.686611 ], [ 63.119751, 35.645084 ], [ 63.127224, 35.549721 ], [ 63.096359, 35.427723 ], [ 62.926388, 35.382446 ], [ 62.747833, 35.265194 ], [ 62.569916, 35.23439 ], [ 62.466835, 35.284306 ], [ 62.309807, 35.142944 ], [ 62.283001, 35.255333 ], [ 62.248138, 35.308807 ], [ 62.143444, 35.344776 ], [ 62.057388, 35.437473 ], [ 61.964279, 35.453583 ], [ 61.766998, 35.414501 ], [ 61.599861, 35.436474 ], [ 61.387222, 35.562473 ], [ 61.368805, 35.624416 ], [ 61.276638, 35.613167 ] ] ], [ [ [ 67.5, -90.0 ], [ 67.5, 23.754217 ], [ 67.389644, 23.813652 ], [ 67.277358, 23.94083 ], [ 67.274457, 24.004638 ], [ 67.216328, 24.151338 ], [ 67.175429, 24.299385 ], [ 67.190519, 24.360824 ], [ 67.098832, 24.53951 ], [ 66.945321, 24.676621 ], [ 66.863762, 24.72404 ], [ 66.673844, 24.701158 ], [ 66.581866, 24.731553 ], [ 66.510223, 24.807167 ], [ 66.477572, 24.872447 ], [ 66.513785, 24.984649 ], [ 66.577159, 25.020061 ], [ 66.612366, 25.1659 ], [ 66.450936, 25.297949 ], [ 66.310105, 25.347152 ], [ 66.145126, 25.332003 ], [ 65.976289, 25.29508 ], [ 65.861293, 25.298434 ], [ 65.795265, 25.265164 ], [ 65.660108, 25.23197 ], [ 65.373462, 25.266574 ], [ 65.281736, 25.210804 ], [ 65.149772, 25.186268 ], [ 64.910122, 25.20535 ], [ 64.817784, 25.199698 ], [ 64.810408, 25.138511 ], [ 64.752618, 25.069691 ], [ 64.599769, 25.034612 ], [ 64.51935, 25.058698 ], [ 64.470303, 25.122481 ], [ 64.372934, 25.122752 ], [ 64.179482, 25.203991 ], [ 64.011805, 25.217878 ], [ 63.988205, 25.070341 ], [ 63.942982, 25.019053 ], [ 63.869195, 24.993852 ], [ 63.776897, 25.014996 ], [ 63.720882, 25.116155 ], [ 63.744606, 25.191474 ], [ 63.803729, 25.241936 ], [ 63.682703, 25.26171 ], [ 63.621054, 25.247885 ], [ 63.610601, 25.154189 ], [ 63.53478, 25.085788 ], [ 63.454872, 25.081379 ], [ 63.143997, 25.13558 ], [ 63.030415, 25.092923 ], [ 62.815443, 25.126901 ], [ 62.567948, 25.139228 ], [ 62.508315, 25.10112 ], [ 62.496672, 25.047922 ], [ 62.428045, 24.987114 ], [ 62.334092, 24.969667 ], [ 62.25561, 24.979083 ], [ 62.188309, 25.013589 ], [ 62.116982, 24.97762 ], [ 61.950864, 24.987818 ], [ 61.90319, 24.938403 ], [ 61.77284, 24.913076 ], [ 61.706257, 24.922094 ], [ 61.625234, 24.982023 ], [ 61.584851, 25.063832 ], [ 61.610443, 25.194944 ], [ 61.655613, 25.297501 ], [ 61.689194, 25.799166 ], [ 61.768833, 25.801777 ], [ 61.833027, 26.171112 ], [ 61.87075, 26.24675 ], [ 62.061138, 26.315416 ], [ 62.12114, 26.31675 ], [ 62.128082, 26.380362 ], [ 62.282501, 26.35836 ], [ 62.26461, 26.432083 ], [ 62.315056, 26.528862 ], [ 62.434528, 26.568138 ], [ 62.608139, 26.584999 ], [ 62.778694, 26.652277 ], [ 63.001915, 26.651945 ], [ 63.051445, 26.637583 ], [ 63.169193, 26.647306 ], [ 63.199722, 26.737972 ], [ 63.192139, 26.8435 ], [ 63.275528, 26.864779 ], [ 63.256695, 26.928667 ], [ 63.255917, 27.082945 ], [ 63.317471, 27.138666 ], [ 63.299252, 27.178917 ], [ 63.184223, 27.241444 ], [ 63.05864, 27.233194 ], [ 62.977249, 27.19511 ], [ 62.821362, 27.212334 ], [ 62.807388, 27.340084 ], [ 62.855389, 27.465139 ], [ 62.819805, 27.805 ], [ 62.790054, 27.978111 ], [ 62.768223, 28.032417 ], [ 62.796585, 28.208944 ], [ 62.786945, 28.281195 ], [ 62.592304, 28.255138 ], [ 62.439667, 28.407139 ], [ 62.296276, 28.463444 ], [ 62.115776, 28.485111 ], [ 61.957584, 28.548695 ], [ 61.804165, 28.640167 ], [ 61.681026, 28.770584 ], [ 61.504307, 29.007555 ], [ 61.503166, 29.056417 ], [ 61.428665, 29.193777 ], [ 61.35775, 29.282778 ], [ 61.371387, 29.349611 ], [ 61.192585, 29.502501 ], [ 60.878613, 29.861778 ], [ 61.652527, 29.625694 ], [ 62.455776, 29.388971 ], [ 63.364498, 29.47636 ], [ 63.590832, 29.490417 ], [ 64.032364, 29.417694 ], [ 64.105309, 29.377472 ], [ 64.152336, 29.449556 ], [ 64.266808, 29.523834 ], [ 64.48761, 29.571777 ], [ 64.63192, 29.581083 ], [ 64.95578, 29.553583 ], [ 65.067055, 29.536222 ], [ 65.781136, 29.723749 ], [ 66.245636, 29.85136 ], [ 66.318916, 29.912695 ], [ 66.358749, 29.974445 ], [ 66.241669, 30.055056 ], [ 66.238441, 30.084084 ], [ 66.316612, 30.242861 ], [ 66.354111, 30.427279 ], [ 66.281059, 30.569279 ], [ 66.386581, 30.933916 ], [ 66.562553, 30.977612 ], [ 66.683167, 31.074583 ], [ 66.731087, 31.2125 ], [ 66.802002, 31.219084 ], [ 66.834969, 31.264278 ], [ 66.969109, 31.312611 ], [ 67.044472, 31.303833 ], [ 67.056168, 31.230833 ], [ 67.166336, 31.243389 ], [ 67.2715, 31.205778 ], [ 67.390526, 31.216583 ], [ 67.620415, 31.276388 ], [ 67.774086, 31.332861 ], [ 67.740944, 31.414778 ], [ 67.66008, 31.397223 ], [ 67.594696, 31.434305 ], [ 67.569557, 31.534695 ], [ 67.648476, 31.518362 ], [ 67.742058, 31.533722 ], [ 67.84314, 31.616528 ], [ 67.949913, 31.633417 ], [ 68.064087, 31.699389 ], [ 68.177498, 31.814501 ], [ 68.259361, 31.801556 ], [ 68.286613, 31.757 ], [ 68.423027, 31.755362 ], [ 68.570137, 31.827972 ], [ 68.632225, 31.77825 ], [ 68.701836, 31.76989 ], [ 68.717003, 31.696638 ], [ 68.804947, 31.609972 ], [ 68.900642, 31.60125 ], [ 68.985947, 31.628 ], [ 69.117943, 31.703251 ], [ 69.197609, 31.848389 ], [ 69.323502, 31.944166 ], [ 69.300331, 31.991945 ], [ 69.272835, 32.151001 ], [ 69.28083, 32.356388 ], [ 69.240692, 32.461388 ], [ 69.285225, 32.53297 ], [ 69.385246, 32.566555 ], [ 69.451225, 32.663166 ], [ 69.441223, 32.727749 ], [ 69.395226, 32.781582 ], [ 69.47422, 32.851055 ], [ 69.530525, 32.861168 ], [ 69.492027, 32.942696 ], [ 69.507111, 33.029026 ], [ 69.580055, 33.097557 ], [ 69.722557, 33.09314 ], [ 69.78653, 33.127556 ], [ 69.875526, 33.095695 ], [ 70.023087, 33.143276 ], [ 70.067307, 33.213554 ], [ 70.155746, 33.221195 ], [ 70.29142, 33.327835 ], [ 70.315392, 33.395557 ], [ 70.258499, 33.433029 ], [ 70.173584, 33.525055 ], [ 70.197029, 33.63361 ], [ 70.149277, 33.653526 ], [ 70.136971, 33.715057 ], [ 70.005638, 33.733528 ], [ 69.865753, 33.926918 ], [ 69.913498, 34.037945 ], [ 70.046196, 34.036724 ], [ 70.238831, 33.973141 ], [ 70.426308, 33.960388 ], [ 70.46772, 33.943333 ], [ 70.593887, 33.964333 ], [ 70.767944, 33.954861 ], [ 70.884941, 33.976749 ], [ 70.935608, 34.011665 ], [ 71.076279, 34.0625 ], [ 71.072746, 34.105694 ], [ 71.126083, 34.162418 ], [ 71.122055, 34.267193 ], [ 71.169472, 34.363609 ], [ 71.08728, 34.389137 ], [ 71.006805, 34.461113 ], [ 70.995552, 34.554779 ], [ 71.087082, 34.590443 ], [ 71.095665, 34.675529 ], [ 71.279442, 34.805027 ], [ 71.30986, 34.878834 ], [ 71.499252, 34.963749 ], [ 71.552086, 35.019085 ], [ 71.530052, 35.072361 ], [ 71.674889, 35.196529 ], [ 71.57003, 35.274361 ], [ 71.555809, 35.312862 ], [ 71.648941, 35.452473 ], [ 71.593391, 35.497528 ], [ 71.612221, 35.573223 ], [ 71.499474, 35.626415 ], [ 71.546669, 35.720222 ], [ 71.485359, 35.753887 ], [ 71.489861, 35.803471 ], [ 71.376724, 35.956112 ], [ 71.319336, 35.96489 ], [ 71.201416, 36.035778 ], [ 71.245445, 36.122776 ], [ 71.347443, 36.172554 ], [ 71.434471, 36.260944 ], [ 71.524223, 36.320862 ], [ 71.613892, 36.409111 ], [ 71.656197, 36.478222 ], [ 71.795776, 36.400585 ], [ 71.832054, 36.505474 ], [ 71.909142, 36.505306 ], [ 71.935303, 36.56089 ], [ 72.096748, 36.597332 ], [ 72.102913, 36.648556 ], [ 72.196892, 36.693554 ], [ 72.241364, 36.753471 ], [ 72.302559, 36.744999 ], [ 72.411163, 36.776669 ], [ 72.495224, 36.777557 ], [ 72.566109, 36.832417 ], [ 72.656166, 36.849834 ], [ 72.882637, 36.841084 ], [ 72.953392, 36.872112 ], [ 73.026833, 36.860695 ], [ 73.071747, 36.889057 ], [ 73.273361, 36.888557 ], [ 73.30661, 36.873138 ], [ 73.403137, 36.899139 ], [ 73.527779, 36.885555 ], [ 73.705055, 36.912724 ], [ 73.846581, 36.898613 ], [ 73.963196, 36.837502 ], [ 74.05275, 36.828724 ], [ 74.127419, 36.84811 ], [ 74.152031, 36.909863 ], [ 74.264, 36.904446 ], [ 74.427864, 36.997639 ], [ 74.517365, 36.998917 ], [ 74.571556, 37.034443 ], [ 74.619781, 37.088974 ], [ 74.67675, 37.097 ], [ 74.729469, 37.024887 ], [ 74.821587, 37.060307 ], [ 74.85128, 36.987972 ], [ 74.922417, 36.934555 ], [ 75.039864, 37.01553 ], [ 75.146858, 37.01989 ], [ 75.230309, 36.959721 ], [ 75.37236, 36.943611 ], [ 75.417336, 36.877556 ], [ 75.422943, 36.771721 ], [ 75.454498, 36.721611 ], [ 75.546219, 36.766556 ], [ 75.652443, 36.768833 ], [ 75.729698, 36.746471 ], [ 75.918861, 36.620472 ], [ 75.928864, 36.558193 ], [ 76.008392, 36.453304 ], [ 76.025169, 36.389416 ], [ 75.983109, 36.337555 ], [ 76.053024, 36.237335 ], [ 75.936806, 36.133945 ], [ 75.946281, 36.069332 ], [ 76.001556, 36.018166 ], [ 76.080055, 36.018391 ], [ 76.155167, 35.938499 ], [ 76.168999, 35.838223 ], [ 76.221832, 35.850945 ], [ 76.358414, 35.836971 ], [ 76.55542, 35.917667 ], [ 76.59053, 35.893112 ], [ 76.578529, 35.813057 ], [ 76.675415, 35.750584 ], [ 76.763779, 35.66964 ], [ 76.830307, 35.67725 ], [ 76.932945, 35.615917 ], [ 77.056725, 35.599415 ], [ 77.186722, 35.528332 ], [ 77.266945, 35.535416 ], [ 77.427277, 35.469028 ], [ 77.53611, 35.495945 ], [ 77.623222, 35.476555 ], [ 77.840919, 35.504223 ], [ 77.650558, 35.367085 ], [ 77.280807, 35.138279 ], [ 77.15683, 35.054695 ], [ 77.068359, 35.024113 ], [ 77.013779, 35.03511 ], [ 77.010139, 34.956276 ], [ 76.950333, 34.940945 ], [ 76.863136, 34.970833 ], [ 76.738861, 34.901917 ], [ 76.744698, 34.844723 ], [ 76.671638, 34.757416 ], [ 76.561806, 34.758335 ], [ 76.469193, 34.791668 ], [ 76.385948, 34.735943 ], [ 76.316139, 34.73164 ], [ 76.275108, 34.693638 ], [ 76.157913, 34.643417 ], [ 76.036469, 34.670277 ], [ 75.93222, 34.624416 ], [ 75.749191, 34.515835 ], [ 75.591888, 34.540054 ], [ 75.394974, 34.548805 ], [ 75.261864, 34.610889 ], [ 75.266052, 34.639557 ], [ 75.142303, 34.662418 ], [ 75.018753, 34.641499 ], [ 74.893753, 34.684502 ], [ 74.835609, 34.677555 ], [ 74.671303, 34.700695 ], [ 74.58017, 34.770111 ], [ 74.375557, 34.803444 ], [ 74.30278, 34.797527 ], [ 74.148972, 34.695278 ], [ 73.96022, 34.696667 ], [ 73.92733, 34.645889 ], [ 73.948059, 34.573082 ], [ 73.895332, 34.546665 ], [ 73.89872, 34.495777 ], [ 73.77697, 34.416306 ], [ 73.763222, 34.359638 ], [ 73.841751, 34.338306 ], [ 73.899414, 34.359806 ], [ 73.976219, 34.264805 ], [ 73.976585, 34.211807 ], [ 73.904083, 34.12225 ], [ 73.89817, 34.032833 ], [ 74.214668, 34.038555 ], [ 74.248695, 34.013832 ], [ 74.261108, 33.924805 ], [ 74.170082, 33.83989 ], [ 74.049057, 33.808834 ], [ 73.966583, 33.740391 ], [ 74.028442, 33.574665 ], [ 74.088364, 33.573193 ], [ 74.178169, 33.481667 ], [ 74.185081, 33.383499 ], [ 74.102974, 33.270527 ], [ 74.024391, 33.262444 ], [ 74.014275, 33.19825 ], [ 74.082832, 33.180752 ], [ 74.176247, 33.107166 ], [ 74.205254, 33.043304 ], [ 74.254974, 33.048779 ], [ 74.351692, 33.013138 ], [ 74.318031, 32.919693 ], [ 74.413887, 32.903946 ], [ 74.466057, 32.781361 ], [ 74.531525, 32.740723 ], [ 74.614693, 32.757668 ], [ 74.641998, 32.822887 ], [ 74.700386, 32.827026 ], [ 74.650139, 32.718418 ], [ 74.675636, 32.665779 ], [ 74.642197, 32.611057 ], [ 74.698418, 32.484943 ], [ 74.856415, 32.492668 ], [ 74.987892, 32.449554 ], [ 75.030167, 32.491749 ], [ 75.082642, 32.480057 ], [ 75.147636, 32.413387 ], [ 75.179558, 32.425446 ], [ 75.330414, 32.331722 ], [ 75.374748, 32.224335 ], [ 75.239166, 32.087139 ], [ 75.126694, 32.074306 ], [ 74.998413, 32.028667 ], [ 74.932503, 32.060307 ], [ 74.831665, 32.0 ], [ 74.807808, 31.949833 ], [ 74.703247, 31.924889 ], [ 74.573029, 31.823029 ], [ 74.543831, 31.822306 ], [ 74.517281, 31.722918 ], [ 74.578499, 31.623417 ], [ 74.611748, 31.506195 ], [ 74.641113, 31.464695 ], [ 74.550247, 31.294695 ], [ 74.533638, 31.193916 ], [ 74.545303, 31.133612 ], [ 74.671776, 31.100056 ], [ 74.639137, 31.021111 ], [ 74.571693, 31.067444 ], [ 74.54847, 30.992834 ], [ 74.470581, 30.966 ], [ 74.319641, 30.843555 ], [ 74.273697, 30.74325 ], [ 74.150948, 30.63261 ], [ 74.097115, 30.563778 ], [ 73.988525, 30.504555 ], [ 73.927864, 30.420918 ], [ 73.873222, 30.383444 ], [ 73.956665, 30.277472 ], [ 73.965248, 30.191305 ], [ 73.803917, 30.06986 ], [ 73.578224, 30.010111 ], [ 73.39653, 29.938999 ], [ 73.274803, 29.556168 ], [ 73.096611, 29.255388 ], [ 73.005753, 29.156778 ], [ 72.936226, 29.027555 ], [ 72.730194, 28.950111 ], [ 72.506416, 28.82275 ], [ 72.411415, 28.786222 ], [ 72.301941, 28.664806 ], [ 72.208832, 28.399973 ], [ 72.184418, 28.358 ], [ 71.992027, 28.203556 ], [ 71.922279, 28.113972 ], [ 71.899582, 27.964195 ], [ 71.674889, 27.885529 ], [ 71.352531, 27.866083 ], [ 71.221085, 27.842751 ], [ 70.88533, 27.705833 ], [ 70.76722, 27.714945 ], [ 70.678413, 27.839056 ], [ 70.672112, 27.914333 ], [ 70.562637, 28.019806 ], [ 70.47908, 28.033751 ], [ 70.366165, 28.008249 ], [ 70.302917, 27.946167 ], [ 70.207581, 27.885389 ], [ 70.107803, 27.766861 ], [ 70.016281, 27.556 ], [ 69.936249, 27.502111 ], [ 69.861969, 27.402779 ], [ 69.665947, 27.251444 ], [ 69.58667, 27.177999 ], [ 69.513191, 27.016861 ], [ 69.483719, 26.806223 ], [ 69.522415, 26.736 ], [ 69.721863, 26.653833 ], [ 69.855553, 26.582916 ], [ 70.024864, 26.598722 ], [ 70.106888, 26.589527 ], [ 70.167747, 26.550751 ], [ 70.183891, 26.486834 ], [ 70.172668, 26.245083 ], [ 70.145195, 26.166166 ], [ 70.080444, 26.058222 ], [ 70.091309, 25.965166 ], [ 70.145027, 25.868528 ], [ 70.225052, 25.792473 ], [ 70.275391, 25.711306 ], [ 70.374641, 25.681278 ], [ 70.526497, 25.688528 ], [ 70.64003, 25.715445 ], [ 70.672447, 25.661417 ], [ 70.665886, 25.395971 ], [ 70.737198, 25.325722 ], [ 70.752502, 25.271723 ], [ 70.881248, 25.145945 ], [ 70.917946, 24.986389 ], [ 70.962502, 24.887306 ], [ 71.086052, 24.693361 ], [ 70.989388, 24.603167 ], [ 71.000725, 24.448889 ], [ 71.107361, 24.433195 ], [ 71.050308, 24.362249 ], [ 70.980858, 24.363361 ], [ 70.872719, 24.304945 ], [ 70.853668, 24.247389 ], [ 70.805748, 24.222723 ], [ 70.655304, 24.225082 ], [ 70.593559, 24.240278 ], [ 70.561386, 24.358389 ], [ 70.57486, 24.420305 ], [ 70.370308, 24.353445 ], [ 70.110107, 24.284889 ], [ 70.077309, 24.215639 ], [ 70.024086, 24.169361 ], [ 69.912247, 24.164194 ], [ 69.724586, 24.175083 ], [ 69.590111, 24.286777 ], [ 69.504219, 24.263 ], [ 69.31028, 24.276695 ], [ 69.199776, 24.235195 ], [ 69.085442, 24.268278 ], [ 69.013725, 24.229084 ], [ 68.939003, 24.290861 ], [ 68.840309, 24.228195 ], [ 68.826363, 24.30839 ], [ 68.764114, 24.284111 ], [ 68.759552, 24.035833 ], [ 68.749252, 23.962055 ], [ 68.334946, 23.965445 ], [ 68.213364, 23.888889 ], [ 68.200417, 23.885416 ], [ 68.116859, 23.851749 ], [ 68.103531, 23.855528 ], [ 68.042747, 23.790277 ], [ 67.914621, 23.696945 ], [ 67.916482, 23.683148 ], [ 67.949638, 23.622189 ], [ 67.988856, 23.595188 ], [ 68.032589, 23.585577 ], [ 68.047499, 23.586353 ], [ 68.125428, 23.477765 ], [ 68.264482, 23.448313 ], [ 68.297069, 23.350446 ], [ 68.424653, 23.239881 ], [ 68.451027, 23.186943 ], [ 68.589995, 23.047247 ], [ 68.764351, 22.952813 ], [ 68.883584, 22.874609 ], [ 69.18227, 22.714438 ], [ 69.34683, 22.699258 ], [ 69.393546, 22.669863 ], [ 69.514289, 22.656242 ], [ 69.683086, 22.618907 ], [ 69.801385, 22.65997 ], [ 69.879756, 22.740535 ], [ 70.001663, 22.774149 ], [ 70.141294, 22.780131 ], [ 70.120243, 22.704686 ], [ 70.073124, 22.691757 ], [ 69.970328, 22.721795 ], [ 69.872862, 22.698451 ], [ 69.75536, 22.590651 ], [ 69.608005, 22.577259 ], [ 69.474494, 22.535936 ], [ 69.453965, 22.58671 ], [ 69.365029, 22.641587 ], [ 69.263406, 22.626921 ], [ 69.211471, 22.574087 ], [ 69.141854, 22.594051 ], [ 69.021964, 22.584464 ], [ 68.913796, 22.511436 ], [ 68.85564, 22.434494 ], [ 68.820772, 22.350848 ], [ 68.817667, 22.27813 ], [ 68.86162, 22.165848 ], [ 69.069686, 21.935813 ], [ 69.202509, 21.804782 ], [ 69.648744, 21.417656 ], [ 69.930066, 21.10209 ], [ 70.134539, 20.917117 ], [ 70.375932, 20.750637 ], [ 70.564767, 20.65721 ], [ 70.827729, 20.568336 ], [ 70.99443, 20.582094 ], [ 71.177071, 20.639696 ], [ 71.28518, 20.697506 ], [ 71.514119, 20.772634 ], [ 71.584094, 20.833401 ], [ 71.852571, 20.929339 ], [ 71.907618, 20.978269 ], [ 72.053907, 21.031264 ], [ 72.180624, 21.108979 ], [ 72.225714, 21.185052 ], [ 72.219519, 21.250535 ], [ 72.298033, 21.33955 ], [ 72.369157, 21.473091 ], [ 72.41755, 21.488106 ], [ 72.477228, 21.55601 ], [ 72.527833, 21.494891 ], [ 72.527545, 21.405506 ], [ 72.500959, 21.343541 ], [ 72.498757, 21.113667 ], [ 72.515022, 21.043441 ], [ 72.577211, 20.952279 ], [ 72.627154, 20.932874 ], [ 72.725836, 20.742303 ], [ 72.768768, 20.581449 ], [ 72.703301, 20.430706 ], [ 72.64012, 20.332215 ], [ 72.591755, 20.026076 ], [ 72.554545, 19.962886 ], [ 72.539388, 19.843526 ], [ 72.600913, 19.619925 ], [ 72.61567, 19.426415 ], [ 72.662326, 19.303949 ], [ 72.661403, 19.146984 ], [ 72.698542, 19.056824 ], [ 72.672552, 18.933015 ], [ 72.720215, 18.811284 ], [ 72.685341, 18.688428 ], [ 72.712716, 18.620623 ], [ 72.786589, 18.548419 ], [ 72.770561, 18.447921 ], [ 72.81857, 18.277897 ], [ 72.817401, 18.180879 ], [ 72.926664, 17.890797 ], [ 73.005023, 17.727213 ], [ 73.024386, 17.524565 ], [ 73.063062, 17.454632 ], [ 73.051261, 17.397961 ], [ 73.073864, 17.268971 ], [ 73.151381, 17.097383 ], [ 73.139118, 16.995763 ], [ 73.203121, 16.656727 ], [ 73.191567, 16.538513 ], [ 73.204045, 16.473551 ], [ 73.338064, 16.106735 ], [ 73.323378, 15.894617 ], [ 73.340411, 15.82787 ], [ 73.391004, 15.781378 ], [ 73.514658, 15.788271 ], [ 73.538016, 15.697511 ], [ 73.58711, 15.634847 ], [ 73.658759, 15.425705 ], [ 73.642596, 15.318093 ], [ 73.690192, 15.254953 ], [ 73.793199, 15.23486 ], [ 73.811094, 15.174247 ], [ 73.79331, 15.043523 ], [ 73.918289, 14.92509 ], [ 73.93152, 14.792921 ], [ 73.962074, 14.732144 ], [ 74.074653, 14.620991 ], [ 74.147163, 14.600602 ], [ 74.210255, 14.446242 ], [ 74.256742, 14.410252 ], [ 74.276541, 14.27763 ], [ 74.346158, 14.139996 ], [ 74.285575, 14.134765 ], [ 74.22204, 14.084799 ], [ 74.203595, 14.033369 ], [ 74.226809, 13.94565 ], [ 74.284723, 13.900895 ], [ 74.396611, 13.914607 ], [ 74.474992, 13.852779 ], [ 74.544446, 13.60162 ], [ 74.565846, 13.462021 ], [ 74.545804, 13.391187 ], [ 74.571613, 13.215351 ], [ 74.628832, 13.142861 ], [ 74.689628, 12.870932 ], [ 74.855819, 12.460697 ], [ 74.959157, 12.27767 ], [ 75.055231, 12.025258 ], [ 75.100646, 11.936443 ], [ 75.18502, 11.885932 ], [ 75.268476, 11.774163 ], [ 75.328129, 11.736391 ], [ 75.431222, 11.627436 ], [ 75.518564, 11.406403 ], [ 75.598285, 11.345364 ], [ 75.728698, 11.031667 ], [ 75.803642, 10.728907 ], [ 76.007931, 10.285645 ], [ 76.042706, 10.148397 ], [ 76.123709, 9.919312 ], [ 76.165567, 9.720415 ], [ 76.208817, 9.428289 ], [ 76.253158, 9.300199 ], [ 76.404622, 8.966219 ], [ 76.466906, 8.804814 ], [ 76.534296, 8.75857 ], [ 76.60825, 8.657924 ], [ 76.892286, 8.302622 ], [ 77.164698, 8.07921 ], [ 77.279174, 8.00381 ], [ 77.539908, 7.949669 ], [ 77.608561, 7.962869 ], [ 77.671572, 8.034342 ], [ 77.79259, 8.062092 ], [ 77.881849, 8.133139 ], [ 78.123785, 8.259438 ], [ 78.176202, 8.311197 ], [ 78.188375, 8.373035 ], [ 78.252563, 8.478065 ], [ 78.25538, 8.638334 ], [ 78.313631, 8.708497 ], [ 78.325496, 8.759877 ], [ 78.301094, 8.867626 ], [ 78.468171, 8.998946 ], [ 78.551948, 8.978906 ], [ 78.635926, 8.987263 ], [ 78.743175, 9.065869 ], [ 78.806737, 9.033314 ], [ 78.963816, 9.05757 ], [ 79.019711, 9.084513 ], [ 79.095276, 9.068233 ], [ 79.180416, 9.111216 ], [ 79.263872, 9.128503 ], [ 79.377654, 9.050322 ], [ 79.648804, 8.957717 ], [ 79.750202, 8.931861 ], [ 79.804978, 8.85465 ], [ 79.798624, 8.801688 ], [ 79.829794, 8.710816 ], [ 79.812424, 8.641163 ], [ 79.730896, 8.635432 ], [ 79.67171, 8.581752 ], [ 79.653882, 8.506441 ], [ 79.668394, 8.400592 ], [ 79.586252, 8.256534 ], [ 79.587651, 8.027492 ], [ 79.661671, 7.797319 ], [ 79.684842, 7.655736 ], [ 79.673215, 7.557979 ], [ 79.724173, 7.270349 ], [ 79.700219, 7.176149 ], [ 79.745179, 7.00472 ], [ 79.725581, 6.908991 ], [ 79.756213, 6.763868 ], [ 79.839339, 6.555764 ], [ 79.859603, 6.429399 ], [ 79.913014, 6.286388 ], [ 79.915664, 6.233712 ], [ 79.963423, 6.123363 ], [ 80.040199, 6.014528 ], [ 80.143469, 5.92837 ], [ 80.212227, 5.891296 ], [ 80.437543, 5.820716 ], [ 80.585216, 5.796844 ], [ 80.761689, 5.848098 ], [ 80.87075, 5.921209 ], [ 81.040929, 5.981226 ], [ 81.181944, 6.007593 ], [ 81.239398, 6.041556 ], [ 81.37065, 6.082119 ], [ 81.46592, 6.139586 ], [ 81.630946, 6.264487 ], [ 81.804257, 6.422027 ], [ 81.868512, 6.528724 ], [ 81.945498, 6.734655 ], [ 82.00051, 7.040233 ], [ 81.980458, 7.110484 ], [ 81.991641, 7.321679 ], [ 81.940663, 7.474166 ], [ 81.910517, 7.623721 ], [ 81.810475, 7.809938 ], [ 81.737598, 7.866316 ], [ 81.67503, 8.003006 ], [ 81.58595, 8.086918 ], [ 81.51119, 8.33525 ], [ 81.513009, 8.369731 ], [ 81.462539, 8.539859 ], [ 81.393369, 8.619021 ], [ 81.345477, 8.642456 ], [ 81.33273, 8.703677 ], [ 81.179895, 8.934953 ], [ 81.121884, 8.975818 ], [ 80.993765, 9.176972 ], [ 80.915844, 9.350026 ], [ 80.737372, 9.520218 ], [ 80.449647, 9.746417 ], [ 80.338255, 9.904166 ], [ 79.994139, 10.317128 ], [ 79.975488, 10.651029 ], [ 79.981076, 11.145542 ], [ 79.958459, 11.357269 ], [ 79.924922, 11.488286 ], [ 79.878389, 11.590556 ], [ 79.913703, 11.755537 ], [ 79.988672, 11.995819 ], [ 80.131749, 12.226612 ], [ 80.245898, 12.379807 ], [ 80.364997, 12.728249 ], [ 80.367841, 12.851119 ], [ 80.421902, 13.117465 ], [ 80.458091, 13.243266 ], [ 80.464819, 13.323707 ], [ 80.443354, 13.460606 ], [ 80.353966, 13.6572 ], [ 80.368544, 13.821195 ], [ 80.264779, 14.067246 ], [ 80.246308, 14.188627 ], [ 80.288661, 14.335134 ], [ 80.315962, 14.575917 ], [ 80.218004, 14.807217 ], [ 80.169365, 15.081167 ], [ 80.209332, 15.184502 ], [ 80.221491, 15.299877 ], [ 80.295507, 15.390143 ], [ 80.358214, 15.581598 ], [ 80.392248, 15.633551 ], [ 80.490845, 15.702354 ], [ 80.624593, 15.756801 ], [ 80.67628, 15.75912 ], [ 80.711739, 15.636705 ], [ 80.826558, 15.577315 ], [ 80.971941, 15.592602 ], [ 81.125459, 15.684137 ], [ 81.151753, 15.754914 ], [ 81.136854, 15.81419 ], [ 81.233567, 15.87992 ], [ 81.322031, 16.097822 ], [ 81.332094, 16.161952 ], [ 81.381322, 16.204428 ], [ 81.523839, 16.238813 ], [ 81.70247, 16.190775 ], [ 81.774762, 16.201341 ], [ 81.894061, 16.260323 ], [ 81.981049, 16.280019 ], [ 82.248967, 16.407609 ], [ 82.431998, 16.517859 ], [ 82.466858, 16.587778 ], [ 82.459233, 16.654054 ], [ 82.49947, 16.825163 ], [ 82.5, 16.841014 ], [ 82.5, 16.841007495529976 ], [ 82.5, -90.0 ], [ 67.5, -90.0 ] ], [ [ 70.5, -4.5 ], [ 70.5, -8.1 ], [ 73.5, -8.1 ], [ 73.5, -4.5 ], [ 70.5, -4.5 ] ], [ [ 71.7, 12.5 ], [ 71.7, 7.5 ], [ 74.0, 7.5 ], [ 74.0, 12.5 ], [ 71.7, 12.5 ] ] ], [ [ [ 51.869024, 24.318671 ], [ 52.509712, 24.441764 ], [ 52.588978, 24.475276 ], [ 52.654155, 24.471477 ], [ 52.745775, 24.412808 ], [ 52.772017, 24.330327 ], [ 52.764854, 24.268075 ], [ 52.935434, 24.255334 ], [ 52.982354, 24.419897 ], [ 53.060368, 24.481595 ], [ 53.142676, 24.489077 ], [ 53.220741, 24.427664 ], [ 53.25571, 24.547703 ], [ 53.357473, 24.600617 ], [ 53.433672, 24.575001 ], [ 53.534908, 24.488213 ], [ 53.556053, 24.429332 ], [ 53.613504, 24.441565 ], [ 53.689218, 24.412333 ], [ 53.762974, 24.457571 ], [ 53.850822, 24.457819 ], [ 53.99076, 24.368325 ], [ 54.106873, 24.479491 ], [ 54.220596, 24.530707 ], [ 54.30602, 24.62218 ], [ 54.522558, 24.771494 ], [ 54.634144, 24.917296 ], [ 54.757636, 24.966975 ], [ 54.866212, 25.04612 ], [ 55.014593, 25.133289 ], [ 55.180692, 25.334028 ], [ 55.352779, 25.506157 ], [ 55.457898, 25.656749 ], [ 55.558803, 25.724344 ], [ 55.673043, 25.761336 ], [ 55.734443, 25.823179 ], [ 55.822757, 25.850426 ], [ 55.918767, 25.968463 ], [ 55.972844, 26.114527 ], [ 56.055366, 26.231786 ], [ 56.097012, 26.317635 ], [ 56.144156, 26.359409 ], [ 56.221524, 26.375442 ], [ 56.270279, 26.46898 ], [ 56.358188, 26.507327 ], [ 56.471203, 26.491755 ], [ 56.526199, 26.505936 ], [ 56.603175, 26.47905 ], [ 56.65105, 26.404205 ], [ 56.652522, 26.329988 ], [ 56.607146, 26.239175 ], [ 56.600546, 26.126334 ], [ 56.555993, 25.999227 ], [ 56.569261, 25.919122 ], [ 56.424654, 25.682335 ], [ 56.477673, 25.546465 ], [ 56.478447, 25.400245 ], [ 56.493746, 25.310652 ], [ 56.473902, 25.162369 ], [ 56.483786, 25.031801 ], [ 56.484486, 25.029475 ], [ 56.375252, 24.977388 ], [ 56.371834, 24.977777 ], [ 56.341473, 24.898527 ], [ 56.276279, 24.848305 ], [ 56.193668, 24.824862 ], [ 56.179749, 24.777 ], [ 56.119556, 24.734278 ], [ 56.067417, 24.741444 ], [ 56.027195, 24.827806 ], [ 56.043415, 24.893 ], [ 56.027138, 24.963888 ], [ 55.957863, 24.98311 ], [ 55.866222, 24.943695 ], [ 55.806, 24.846889 ], [ 55.816666, 24.724138 ], [ 55.843166, 24.656723 ], [ 55.787556, 24.570444 ], [ 55.797333, 24.431612 ], [ 55.832832, 24.400667 ], [ 55.835167, 24.334223 ], [ 55.779694, 24.234222 ], [ 55.871918, 24.213638 ], [ 55.950054, 24.236166 ], [ 56.008335, 24.068806 ], [ 55.816776, 24.010471 ], [ 55.642166, 24.028528 ], [ 55.485863, 23.9335 ], [ 55.561165, 23.891111 ], [ 55.568501, 23.759001 ], [ 55.500446, 23.662167 ], [ 55.464306, 23.531111 ], [ 55.403862, 23.472279 ], [ 55.350971, 23.275749 ], [ 55.249832, 23.118917 ], [ 55.218777, 23.012056 ], [ 55.224224, 22.811472 ], [ 55.210827, 22.705933 ], [ 55.141727, 22.634071 ], [ 52.583302, 22.9389 ], [ 51.583332, 24.116781 ], [ 51.583305, 24.239895 ], [ 51.47566, 24.391784 ], [ 51.628581, 24.482032 ], [ 51.869024, 24.318671 ] ] ] ] } }, +{ "type": "Feature", "properties": { "name": "+4" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 52.5, 89.0 ], [ 67.5, 89.0 ], [ 67.5, 85.0 ], [ 52.5, 85.0 ], [ 52.5, 89.0 ] ] ], [ [ [ 53.74356, 37.017095 ], [ 53.736717, 37.017174 ], [ 53.736947, 37.017186 ], [ 53.74356, 37.017095 ] ] ], [ [ [ 55.210827, 22.705933 ], [ 55.224224, 22.811472 ], [ 55.218777, 23.012056 ], [ 55.249832, 23.118917 ], [ 55.350971, 23.275749 ], [ 55.403862, 23.472279 ], [ 55.464306, 23.531111 ], [ 55.500446, 23.662167 ], [ 55.568501, 23.759001 ], [ 55.561165, 23.891111 ], [ 55.485863, 23.9335 ], [ 55.642166, 24.028528 ], [ 55.816776, 24.010471 ], [ 56.008335, 24.068806 ], [ 55.950054, 24.236166 ], [ 55.871918, 24.213638 ], [ 55.779694, 24.234222 ], [ 55.835167, 24.334223 ], [ 55.832832, 24.400667 ], [ 55.797333, 24.431612 ], [ 55.787556, 24.570444 ], [ 55.843166, 24.656723 ], [ 55.816666, 24.724138 ], [ 55.806, 24.846889 ], [ 55.866222, 24.943695 ], [ 55.957863, 24.98311 ], [ 56.027138, 24.963888 ], [ 56.043415, 24.893 ], [ 56.027195, 24.827806 ], [ 56.067417, 24.741444 ], [ 56.119556, 24.734278 ], [ 56.179749, 24.777 ], [ 56.193668, 24.824862 ], [ 56.276279, 24.848305 ], [ 56.341473, 24.898527 ], [ 56.371834, 24.977777 ], [ 56.375252, 24.977388 ], [ 56.484486, 25.029475 ], [ 56.483786, 25.031801 ], [ 56.473902, 25.162369 ], [ 56.493746, 25.310652 ], [ 56.478447, 25.400245 ], [ 56.477673, 25.546465 ], [ 56.424654, 25.682335 ], [ 56.569261, 25.919122 ], [ 56.555993, 25.999227 ], [ 56.600546, 26.126334 ], [ 56.607146, 26.239175 ], [ 56.652522, 26.329988 ], [ 56.65105, 26.404205 ], [ 56.603175, 26.47905 ], [ 56.526199, 26.505936 ], [ 56.471203, 26.491755 ], [ 56.358188, 26.507327 ], [ 56.270279, 26.46898 ], [ 56.221524, 26.375442 ], [ 56.144156, 26.359409 ], [ 56.097012, 26.317635 ], [ 56.055366, 26.231786 ], [ 55.972844, 26.114527 ], [ 55.918767, 25.968463 ], [ 55.822757, 25.850426 ], [ 55.734443, 25.823179 ], [ 55.673043, 25.761336 ], [ 55.558803, 25.724344 ], [ 55.457898, 25.656749 ], [ 55.352779, 25.506157 ], [ 55.180692, 25.334028 ], [ 55.014593, 25.133289 ], [ 54.866212, 25.04612 ], [ 54.757636, 24.966975 ], [ 54.634144, 24.917296 ], [ 54.522558, 24.771494 ], [ 54.30602, 24.62218 ], [ 54.220596, 24.530707 ], [ 54.106873, 24.479491 ], [ 53.99076, 24.368325 ], [ 53.850822, 24.457819 ], [ 53.762974, 24.457571 ], [ 53.689218, 24.412333 ], [ 53.613504, 24.441565 ], [ 53.556053, 24.429332 ], [ 53.534908, 24.488213 ], [ 53.433672, 24.575001 ], [ 53.357473, 24.600617 ], [ 53.25571, 24.547703 ], [ 53.220741, 24.427664 ], [ 53.142676, 24.489077 ], [ 53.060368, 24.481595 ], [ 52.982354, 24.419897 ], [ 52.935434, 24.255334 ], [ 52.764854, 24.268075 ], [ 52.772017, 24.330327 ], [ 52.745775, 24.412808 ], [ 52.654155, 24.471477 ], [ 52.588978, 24.475276 ], [ 52.509712, 24.441764 ], [ 51.869024, 24.318671 ], [ 51.628581, 24.482032 ], [ 52.5, 24.915511 ], [ 52.5, 27.291387 ], [ 52.625868, 27.193445 ], [ 52.760733, 27.10515 ], [ 52.917805, 27.024149 ], [ 53.078343, 26.975218 ], [ 53.038292, 26.892381 ], [ 53.054824, 26.769094 ], [ 53.139678, 26.70374 ], [ 53.246267, 26.6736 ], [ 53.435216, 26.673843 ], [ 53.496234, 26.605505 ], [ 53.610317, 26.541733 ], [ 53.69165, 26.550467 ], [ 53.779139, 26.599251 ], [ 53.787483, 26.491453 ], [ 53.840828, 26.424058 ], [ 54.00139, 26.378191 ], [ 54.100447, 26.402107 ], [ 54.146896, 26.453959 ], [ 54.162165, 26.535918 ], [ 54.136965, 26.594734 ], [ 54.24562, 26.597697 ], [ 54.315213, 26.50695 ], [ 54.3604, 26.481719 ], [ 54.499184, 26.452145 ], [ 54.634116, 26.384679 ], [ 54.7131, 26.395923 ], [ 54.788129, 26.379006 ], [ 54.885811, 26.407772 ], [ 55.02563, 26.514349 ], [ 55.147907, 26.572263 ], [ 55.175421, 26.482805 ], [ 55.243774, 26.42891 ], [ 55.335578, 26.430244 ], [ 55.499636, 26.474289 ], [ 55.7177, 26.568925 ], [ 55.798755, 26.508126 ], [ 55.901395, 26.503653 ], [ 55.976036, 26.544525 ], [ 56.057539, 26.639051 ], [ 56.149868, 26.695077 ], [ 56.216435, 26.759609 ], [ 56.264508, 26.717833 ], [ 56.388295, 26.714895 ], [ 56.461463, 26.755148 ], [ 56.518239, 26.837238 ], [ 56.514909, 26.923219 ], [ 56.566648, 26.951027 ], [ 56.60952, 27.026396 ], [ 56.703533, 27.026092 ], [ 56.802754, 26.908502 ], [ 56.900017, 26.772307 ], [ 56.942827, 26.657598 ], [ 56.957938, 26.55083 ], [ 56.930097, 26.427872 ], [ 56.964278, 26.272832 ], [ 57.07227, 26.13947 ], [ 57.065797, 26.023885 ], [ 57.087326, 25.956556 ], [ 57.16269, 25.877039 ], [ 57.185697, 25.754584 ], [ 57.241701, 25.685799 ], [ 57.463733, 25.630869 ], [ 57.639771, 25.627314 ], [ 57.660482, 25.570611 ], [ 57.720154, 25.525618 ], [ 57.794881, 25.524665 ], [ 57.896964, 25.57352 ], [ 57.973301, 25.493824 ], [ 58.133123, 25.435166 ], [ 58.393181, 25.479791 ], [ 58.541226, 25.481431 ], [ 58.675232, 25.44955 ], [ 58.752623, 25.455483 ], [ 58.841371, 25.418446 ], [ 58.938186, 25.321694 ], [ 59.07545, 25.286459 ], [ 59.232136, 25.324816 ], [ 59.429876, 25.35399 ], [ 59.471317, 25.315664 ], [ 59.573206, 25.275178 ], [ 59.763333, 25.288229 ], [ 59.843095, 25.233128 ], [ 59.928963, 25.230989 ], [ 60.029628, 25.263819 ], [ 60.17203, 25.211305 ], [ 60.262836, 25.227929 ], [ 60.443789, 25.173311 ], [ 60.530146, 25.196982 ], [ 60.577962, 25.171562 ], [ 60.711804, 25.154929 ], [ 61.070227, 25.074838 ], [ 61.121978, 25.021113 ], [ 61.405818, 24.944404 ], [ 61.470082, 24.957687 ], [ 61.584851, 25.063832 ], [ 61.625234, 24.982023 ], [ 61.706257, 24.922094 ], [ 61.77284, 24.913076 ], [ 61.90319, 24.938403 ], [ 61.950864, 24.987818 ], [ 62.116982, 24.97762 ], [ 62.188309, 25.013589 ], [ 62.25561, 24.979083 ], [ 62.334092, 24.969667 ], [ 62.428045, 24.987114 ], [ 62.496672, 25.047922 ], [ 62.508315, 25.10112 ], [ 62.567948, 25.139228 ], [ 62.815443, 25.126901 ], [ 63.030415, 25.092923 ], [ 63.143997, 25.13558 ], [ 63.454872, 25.081379 ], [ 63.53478, 25.085788 ], [ 63.610601, 25.154189 ], [ 63.621054, 25.247885 ], [ 63.682703, 25.26171 ], [ 63.803729, 25.241936 ], [ 63.744606, 25.191474 ], [ 63.720882, 25.116155 ], [ 63.776897, 25.014996 ], [ 63.869195, 24.993852 ], [ 63.942982, 25.019053 ], [ 63.988205, 25.070341 ], [ 64.011805, 25.217878 ], [ 64.179482, 25.203991 ], [ 64.372934, 25.122752 ], [ 64.470303, 25.122481 ], [ 64.51935, 25.058698 ], [ 64.599769, 25.034612 ], [ 64.752618, 25.069691 ], [ 64.810408, 25.138511 ], [ 64.817784, 25.199698 ], [ 64.910122, 25.20535 ], [ 65.149772, 25.186268 ], [ 65.281736, 25.210804 ], [ 65.373462, 25.266574 ], [ 65.660108, 25.23197 ], [ 65.795265, 25.265164 ], [ 65.861293, 25.298434 ], [ 65.976289, 25.29508 ], [ 66.145126, 25.332003 ], [ 66.310105, 25.347152 ], [ 66.450936, 25.297949 ], [ 66.612366, 25.1659 ], [ 66.577159, 25.020061 ], [ 66.513785, 24.984649 ], [ 66.477572, 24.872447 ], [ 66.510223, 24.807167 ], [ 66.581866, 24.731553 ], [ 66.673844, 24.701158 ], [ 66.863762, 24.72404 ], [ 66.945321, 24.676621 ], [ 67.098832, 24.53951 ], [ 67.190519, 24.360824 ], [ 67.175429, 24.299385 ], [ 67.216328, 24.151338 ], [ 67.274457, 24.004638 ], [ 67.277358, 23.94083 ], [ 67.389644, 23.813652 ], [ 67.5, 23.754217 ], [ 67.5, -90.0 ], [ 52.5, -90.0 ], [ 52.5, -47.7 ], [ 49.5, -47.7 ], [ 49.5, -45.2 ], [ 52.5, -45.2 ], [ 52.5, -10.9 ], [ 45.5, -10.9 ], [ 45.5, -8.0 ], [ 52.5, -8.0 ], [ 52.5, 11.7 ], [ 54.8, 11.7 ], [ 54.8, 13.0 ], [ 52.5, 13.0 ], [ 52.5, 16.30734 ], [ 52.563711, 16.340577 ], [ 52.873852, 16.452031 ], [ 52.997494, 16.504685 ], [ 53.124853, 16.53446 ], [ 53.107059, 16.654402 ], [ 52.7822, 17.349701 ], [ 52.0, 19.0 ], [ 55.0, 20.0 ], [ 55.666698, 22.0 ], [ 55.210827, 22.705933 ] ] ], [ [ [ 44.820251, 39.625252 ], [ 44.812752, 39.676998 ], [ 44.722195, 39.761971 ], [ 44.598526, 39.828835 ], [ 44.557556, 39.903778 ], [ 44.488693, 39.965057 ], [ 44.278973, 40.045387 ], [ 44.127529, 40.023888 ], [ 43.905472, 40.018471 ], [ 43.769917, 40.079529 ], [ 43.655472, 40.110779 ], [ 43.681915, 40.257057 ], [ 43.639332, 40.271252 ], [ 43.592667, 40.345444 ], [ 43.609196, 40.433056 ], [ 43.547417, 40.477554 ], [ 43.689751, 40.591473 ], [ 43.749363, 40.681583 ], [ 43.748695, 40.735943 ], [ 43.676109, 40.844444 ], [ 43.67178, 40.933445 ], [ 43.599415, 40.985638 ], [ 43.472168, 41.027973 ], [ 43.437222, 41.17939 ], [ 43.355362, 41.201248 ], [ 43.231777, 41.192749 ], [ 43.202332, 41.300362 ], [ 43.024776, 41.37825 ], [ 42.969582, 41.4515 ], [ 42.866196, 41.499111 ], [ 42.809612, 41.492668 ], [ 42.783611, 41.57822 ], [ 42.677834, 41.597252 ], [ 42.58411, 41.570251 ], [ 42.510113, 41.468613 ], [ 42.447083, 41.440445 ], [ 42.407665, 41.466583 ], [ 42.183887, 41.5145 ], [ 42.053585, 41.495499 ], [ 41.955193, 41.524639 ], [ 41.823112, 41.434612 ], [ 41.708832, 41.497723 ], [ 41.654945, 41.483612 ], [ 41.546117, 41.523018 ], [ 41.456593, 41.623731 ], [ 41.484898, 41.685788 ], [ 41.616676, 41.776286 ], [ 41.656268, 41.863585 ], [ 41.640671, 41.96299 ], [ 41.546852, 42.077236 ], [ 41.506935, 42.200339 ], [ 41.497285, 42.292042 ], [ 41.446283, 42.341732 ], [ 41.41097, 42.49733 ], [ 41.364503, 42.63373 ], [ 41.220598, 42.680472 ], [ 41.124252, 42.682127 ], [ 41.013815, 42.766582 ], [ 40.978565, 42.861593 ], [ 40.912604, 42.874271 ], [ 40.808381, 42.962507 ], [ 40.550589, 42.975861 ], [ 40.399979, 43.039836 ], [ 40.300248, 43.032428 ], [ 40.177935, 43.123848 ], [ 40.155147, 43.214715 ], [ 40.019804, 43.260315 ], [ 40.010139, 43.424057 ], [ 40.092304, 43.554501 ], [ 40.272083, 43.583363 ], [ 40.33522, 43.552639 ], [ 40.44186, 43.5555 ], [ 40.571835, 43.516109 ], [ 40.668777, 43.558193 ], [ 40.831833, 43.4855 ], [ 40.879028, 43.485001 ], [ 40.948971, 43.422112 ], [ 40.997055, 43.431641 ], [ 41.043221, 43.39072 ], [ 41.139194, 43.394585 ], [ 41.284084, 43.3535 ], [ 41.42025, 43.353111 ], [ 41.478668, 43.296833 ], [ 41.5825, 43.23539 ], [ 41.814751, 43.203804 ], [ 41.878193, 43.246082 ], [ 42.038582, 43.196835 ], [ 42.181332, 43.21711 ], [ 42.323891, 43.214722 ], [ 42.439888, 43.255749 ], [ 42.488529, 43.206306 ], [ 42.682999, 43.137112 ], [ 42.681721, 43.173721 ], [ 42.893471, 43.179085 ], [ 42.930862, 43.138306 ], [ 43.038582, 43.090611 ], [ 43.026611, 43.049862 ], [ 43.192081, 42.934444 ], [ 43.34314, 42.889999 ], [ 43.465168, 42.890862 ], [ 43.561695, 42.866085 ], [ 43.64489, 42.799862 ], [ 43.790859, 42.750084 ], [ 43.803749, 42.718361 ], [ 43.731388, 42.627556 ], [ 43.948082, 42.558472 ], [ 44.034721, 42.605026 ], [ 44.209026, 42.626751 ], [ 44.256611, 42.688721 ], [ 44.323334, 42.71339 ], [ 44.503471, 42.701332 ], [ 44.523304, 42.751167 ], [ 44.66214, 42.750252 ], [ 44.727417, 42.720585 ], [ 44.746498, 42.644028 ], [ 44.798195, 42.631721 ], [ 44.87825, 42.746918 ], [ 44.971054, 42.744583 ], [ 45.035057, 42.701248 ], [ 45.176529, 42.690693 ], [ 45.349998, 42.529026 ], [ 45.47086, 42.555195 ], [ 45.69561, 42.484833 ], [ 45.751415, 42.485889 ], [ 45.772888, 42.436333 ], [ 45.731251, 42.38586 ], [ 45.713554, 42.290554 ], [ 45.64072, 42.289391 ], [ 45.60614, 42.218971 ], [ 45.768696, 42.125832 ], [ 45.906502, 42.088085 ], [ 45.946724, 42.02536 ], [ 46.059917, 42.040779 ], [ 46.103416, 41.991417 ], [ 46.226166, 42.001804 ], [ 46.325054, 41.936501 ], [ 46.442585, 41.889278 ], [ 46.539749, 41.873779 ], [ 46.576778, 41.806557 ], [ 46.700359, 41.829887 ], [ 46.748695, 41.863056 ], [ 46.781166, 41.785389 ], [ 46.855221, 41.728001 ], [ 46.895805, 41.731583 ], [ 47.00975, 41.556026 ], [ 47.100945, 41.587196 ], [ 47.22747, 41.442276 ], [ 47.269859, 41.318474 ], [ 47.404915, 41.266277 ], [ 47.478222, 41.268055 ], [ 47.535915, 41.207195 ], [ 47.613667, 41.236443 ], [ 47.719917, 41.197445 ], [ 47.878807, 41.219223 ], [ 47.937084, 41.312389 ], [ 47.940945, 41.35989 ], [ 48.025139, 41.432335 ], [ 48.051056, 41.491196 ], [ 48.193554, 41.50325 ], [ 48.411472, 41.621529 ], [ 48.481403, 41.805177 ], [ 48.683026, 41.923732 ], [ 49.523443, 42.699501 ], [ 51.00029, 41.133148 ], [ 51.299478961711522, 38.646140318272892 ], [ 51.299479, 38.64614 ], [ 48.999005101964599, 38.412194010369255 ], [ 48.999005, 38.412194 ], [ 48.999709, 38.418893 ], [ 48.791138, 38.444584 ], [ 48.732666, 38.406696 ], [ 48.632027, 38.402416 ], [ 48.57436, 38.471169 ], [ 48.463001, 38.566776 ], [ 48.4375, 38.611443 ], [ 48.315666, 38.60136 ], [ 48.263279, 38.653416 ], [ 48.24625, 38.723583 ], [ 48.116028, 38.76775 ], [ 48.020638, 38.841167 ], [ 48.0135, 38.904583 ], [ 48.109306, 38.94278 ], [ 48.291695, 38.964973 ], [ 48.35339, 38.993195 ], [ 48.357777, 39.040554 ], [ 48.301388, 39.108917 ], [ 48.136555, 39.210472 ], [ 48.131779, 39.264832 ], [ 48.207863, 39.32164 ], [ 48.374638, 39.370777 ], [ 48.233665, 39.470249 ], [ 48.148335, 39.563583 ], [ 47.990749, 39.696335 ], [ 47.89975, 39.654915 ], [ 47.807835, 39.650082 ], [ 47.74189, 39.598 ], [ 47.541916, 39.499554 ], [ 47.384945, 39.457554 ], [ 47.310638, 39.371944 ], [ 47.210583, 39.311417 ], [ 47.143749, 39.298443 ], [ 47.064667, 39.243137 ], [ 47.033249, 39.175777 ], [ 46.954834, 39.1325 ], [ 46.852722, 39.13961 ], [ 46.609165, 38.915474 ], [ 46.533722, 38.864887 ], [ 46.359055, 38.907276 ], [ 46.290916, 38.893665 ], [ 46.177555, 38.830528 ], [ 46.075474, 38.867638 ], [ 45.921001, 38.869778 ], [ 45.767555, 38.921528 ], [ 45.617168, 38.938416 ], [ 45.436359, 38.99839 ], [ 45.446693, 39.050415 ], [ 45.295387, 39.183334 ], [ 45.160831, 39.237141 ], [ 45.087971, 39.349361 ], [ 44.946362, 39.46064 ], [ 44.920082, 39.568779 ], [ 44.820251, 39.625252 ] ] ], [ [ [ 52.537445, 54.377075 ], [ 52.5186, 54.324715 ], [ 52.270828, 54.327217 ], [ 52.207771, 54.278877 ], [ 52.326942, 54.249161 ], [ 52.34388, 54.171936 ], [ 52.485268, 54.051102 ], [ 52.409988, 54.01194 ], [ 52.373047, 53.965271 ], [ 52.407768, 53.918327 ], [ 52.338326, 53.781937 ], [ 52.283333, 53.734161 ], [ 52.258049, 53.655266 ], [ 52.183601, 53.556938 ], [ 52.09166, 53.55027 ], [ 52.091103, 53.46666 ], [ 52.138046, 53.403046 ], [ 52.196655, 53.379433 ], [ 52.161377, 53.242767 ], [ 52.123604, 53.223877 ], [ 52.155823, 53.09166 ], [ 52.062492, 53.078331 ], [ 52.063881, 53.007774 ], [ 51.95916, 52.952774 ], [ 51.866936, 52.929436 ], [ 51.830826, 52.876656 ], [ 51.733047, 52.876099 ], [ 51.713051, 52.833328 ], [ 51.779434, 52.79583 ], [ 51.733604, 52.667496 ], [ 51.653603, 52.651932 ], [ 51.585823, 52.688881 ], [ 51.50666, 52.632767 ], [ 51.469711, 52.57444 ], [ 51.479988, 52.5075 ], [ 51.539719, 52.479156 ], [ 51.543884, 52.42749 ], [ 51.476654, 52.418053 ], [ 51.466103, 52.362213 ], [ 51.409157, 52.352219 ], [ 51.406097, 52.259438 ], [ 51.457497, 52.227768 ], [ 51.412491, 52.089714 ], [ 51.034721, 51.918884 ], [ 50.990829, 51.87999 ], [ 50.91082, 51.856941 ], [ 50.7733, 51.76918 ], [ 50.715271, 51.83416 ], [ 50.724159, 51.929161 ], [ 50.669716, 51.954437 ], [ 50.548332, 51.963326 ], [ 50.536942, 51.988327 ], [ 50.393608, 51.996658 ], [ 50.344994, 52.053322 ], [ 50.296387, 52.019714 ], [ 50.214157, 52.03611 ], [ 50.126656, 52.153877 ], [ 49.978043, 52.183052 ], [ 49.809715, 52.193604 ], [ 49.719437, 52.293053 ], [ 49.685265, 52.265549 ], [ 49.619438, 52.321938 ], [ 49.579994, 52.402489 ], [ 49.514999, 52.390274 ], [ 49.471931, 52.330826 ], [ 49.354164, 52.463051 ], [ 49.231659, 52.511108 ], [ 49.165543, 52.48333 ], [ 49.113052, 52.493607 ], [ 48.934715, 52.476379 ], [ 48.890831, 52.411102 ], [ 48.843048, 52.549995 ], [ 48.734718, 52.55777 ], [ 48.704712, 52.641937 ], [ 48.589432, 52.640549 ], [ 48.494156, 52.687492 ], [ 48.403046, 52.671104 ], [ 48.355553, 52.705826 ], [ 48.395271, 52.75972 ], [ 48.586937, 52.868599 ], [ 48.588882, 52.922218 ], [ 48.510567, 52.977989 ], [ 48.368881, 52.968048 ], [ 48.274712, 53.05999 ], [ 48.236938, 52.994713 ], [ 48.144714, 53.059158 ], [ 48.213608, 53.141663 ], [ 48.142494, 53.161659 ], [ 48.104439, 53.248329 ], [ 48.044998, 53.307495 ], [ 47.950272, 53.354996 ], [ 48.048523, 53.477707 ], [ 48.166382, 53.482491 ], [ 48.30249, 53.452492 ], [ 48.378326, 53.471375 ], [ 48.356384, 53.671104 ], [ 48.584991, 53.651382 ], [ 48.468323, 53.737495 ], [ 48.492493, 53.771103 ], [ 48.607498, 53.74305 ], [ 48.863327, 53.712769 ], [ 48.992493, 53.837494 ], [ 49.056381, 53.86055 ], [ 49.31694, 53.833328 ], [ 49.33638, 53.86721 ], [ 49.46666, 53.853607 ], [ 49.609161, 53.854996 ], [ 49.726654, 53.836655 ], [ 49.822495, 53.889992 ], [ 49.857216, 53.833603 ], [ 50.011665, 53.821381 ], [ 50.038605, 53.881378 ], [ 49.953606, 53.905266 ], [ 49.974434, 53.96138 ], [ 50.081665, 54.006104 ], [ 50.191658, 54.033333 ], [ 50.198044, 54.114761 ], [ 50.261108, 54.276939 ], [ 50.199432, 54.384163 ], [ 50.123604, 54.426941 ], [ 50.136383, 54.504715 ], [ 50.225266, 54.503609 ], [ 50.264717, 54.441658 ], [ 50.388885, 54.488884 ], [ 50.429436, 54.42749 ], [ 50.471657, 54.423325 ], [ 50.5186, 54.326385 ], [ 50.624992, 54.399437 ], [ 50.723877, 54.424995 ], [ 50.801933, 54.379433 ], [ 50.879433, 54.376656 ], [ 50.909988, 54.341377 ], [ 50.994995, 54.421104 ], [ 51.00972, 54.551659 ], [ 51.093605, 54.548607 ], [ 51.168327, 54.639992 ], [ 51.289162, 54.638885 ], [ 51.379158, 54.67527 ], [ 51.393883, 54.593048 ], [ 51.493881, 54.595268 ], [ 51.515274, 54.64444 ], [ 51.664711, 54.567497 ], [ 51.802773, 54.532494 ], [ 51.927216, 54.53611 ], [ 51.937492, 54.432213 ], [ 52.019989, 54.436653 ], [ 52.053322, 54.408325 ], [ 52.199997, 54.40638 ], [ 52.225548, 54.446938 ], [ 52.421661, 54.476654 ], [ 52.503052, 54.451935 ], [ 52.537445, 54.377075 ] ] ], [ [ [ 53.63842, 55.91552 ], [ 53.297249, 55.852524 ], [ 53.182495, 55.923882 ], [ 53.277771, 55.934433 ], [ 53.378876, 55.989716 ], [ 53.474709, 56.121101 ], [ 53.53611, 56.130547 ], [ 53.566383, 56.176102 ], [ 53.549995, 56.24749 ], [ 53.416664, 56.278328 ], [ 53.27166, 56.261665 ], [ 53.344437, 56.142494 ], [ 53.344994, 56.084717 ], [ 53.261108, 56.085548 ], [ 53.181107, 56.116936 ], [ 53.154434, 56.159157 ], [ 53.094437, 56.153603 ], [ 53.041939, 56.208046 ], [ 52.9561, 56.251663 ], [ 52.943321, 56.379158 ], [ 53.083054, 56.501663 ], [ 52.944435, 56.544716 ], [ 52.952774, 56.441658 ], [ 52.82666, 56.388885 ], [ 52.722763, 56.39138 ], [ 52.629158, 56.301384 ], [ 52.581108, 56.287216 ], [ 52.575829, 56.227486 ], [ 52.704163, 56.234161 ], [ 52.81694, 56.202492 ], [ 52.854439, 56.126656 ], [ 52.653603, 56.015831 ], [ 52.548332, 56.064156 ], [ 52.484718, 56.036942 ], [ 52.35083, 56.037216 ], [ 52.313049, 56.075554 ], [ 52.204712, 56.08416 ], [ 52.20388, 55.942215 ], [ 52.169159, 55.893051 ], [ 52.056381, 55.894997 ], [ 52.037498, 55.95916 ], [ 51.934433, 55.974991 ], [ 51.788887, 55.883881 ], [ 51.740273, 55.958046 ], [ 51.679718, 55.933601 ], [ 51.642769, 55.960548 ], [ 51.466385, 55.931664 ], [ 51.397209, 55.992188 ], [ 51.48999, 56.07888 ], [ 51.624435, 56.106941 ], [ 51.628044, 56.151932 ], [ 51.492218, 56.130272 ], [ 51.436668, 56.14444 ], [ 51.424438, 56.266388 ], [ 51.318329, 56.325829 ], [ 51.325554, 56.37471 ], [ 51.273048, 56.440544 ], [ 51.201935, 56.43943 ], [ 51.146103, 56.476936 ], [ 51.187767, 56.662209 ], [ 51.389435, 56.677773 ], [ 51.405266, 56.777771 ], [ 51.450829, 56.784439 ], [ 51.538605, 56.885826 ], [ 51.320831, 56.933327 ], [ 51.320831, 57.013611 ], [ 51.233047, 57.05777 ], [ 51.182495, 57.160271 ], [ 51.196938, 57.199997 ], [ 51.123878, 57.255272 ], [ 51.113884, 57.298607 ], [ 51.169716, 57.438881 ], [ 51.374992, 57.4786 ], [ 51.601662, 57.458885 ], [ 51.629433, 57.543327 ], [ 51.734436, 57.53833 ], [ 51.759995, 57.581665 ], [ 51.827492, 57.606384 ], [ 51.873878, 57.678329 ], [ 51.869438, 57.728325 ], [ 51.926941, 57.753326 ], [ 51.924164, 57.826103 ], [ 51.841103, 57.843048 ], [ 51.838882, 57.906654 ], [ 51.88166, 57.988884 ], [ 51.790833, 58.044159 ], [ 51.829163, 58.081383 ], [ 51.7761, 58.143326 ], [ 51.724434, 58.13166 ], [ 51.675827, 58.184715 ], [ 51.798882, 58.287498 ], [ 51.789993, 58.358887 ], [ 51.983879, 58.469986 ], [ 52.102493, 58.469711 ], [ 52.172768, 58.493324 ], [ 52.279991, 58.476097 ], [ 52.330826, 58.441658 ], [ 52.481377, 58.436935 ], [ 52.865273, 58.403877 ], [ 52.908325, 58.530273 ], [ 53.044716, 58.522491 ], [ 53.129433, 58.543327 ], [ 53.161659, 58.449997 ], [ 53.209717, 58.425827 ], [ 53.391106, 58.401382 ], [ 53.479156, 58.446938 ], [ 53.614998, 58.43499 ], [ 53.78463, 58.439964 ], [ 53.808601, 58.375549 ], [ 53.887215, 58.327217 ], [ 53.809715, 58.228874 ], [ 53.894157, 58.188042 ], [ 53.942764, 58.095268 ], [ 54.105553, 57.977768 ], [ 54.087494, 57.913322 ], [ 54.132767, 57.842491 ], [ 54.156654, 57.702492 ], [ 54.071938, 57.673325 ], [ 54.04055, 57.5261 ], [ 54.101387, 57.518051 ], [ 54.158882, 57.561661 ], [ 54.186378, 57.461937 ], [ 54.238884, 57.471657 ], [ 54.264999, 57.418602 ], [ 54.140831, 57.381104 ], [ 54.157494, 57.314995 ], [ 54.315269, 57.290833 ], [ 54.334717, 57.155548 ], [ 54.289993, 57.083054 ], [ 54.374435, 57.073883 ], [ 54.33416, 57.009163 ], [ 54.203323, 57.008049 ], [ 54.092491, 56.958328 ], [ 54.091774, 56.791733 ], [ 53.987213, 56.742218 ], [ 53.885269, 56.7686 ], [ 53.871658, 56.703606 ], [ 53.901382, 56.634438 ], [ 53.963882, 56.631104 ], [ 54.038048, 56.693604 ], [ 54.095825, 56.628876 ], [ 54.114441, 56.536659 ], [ 54.184715, 56.537216 ], [ 54.243607, 56.43277 ], [ 54.324715, 56.462494 ], [ 54.371933, 56.309715 ], [ 54.327492, 56.244156 ], [ 54.266663, 56.232208 ], [ 54.087212, 56.128876 ], [ 54.018051, 56.025826 ], [ 53.955826, 56.017494 ], [ 53.837944, 56.04377 ], [ 53.784721, 55.969154 ], [ 53.659157, 55.953049 ], [ 53.63842, 55.91552 ] ] ] ] } }, +{ "type": "Feature", "properties": { "name": "-2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ -22.5, -90.0 ], [ -37.5, -90.0 ], [ -37.5, -55.0 ], [ -42.479643, -55.0 ], [ -42.5, -53.0 ], [ -37.5, -53.0 ], [ -37.5, -12.018852 ], [ -37.337267, -11.652881 ], [ -37.334745, -11.644769 ], [ -37.195922, -11.417492 ], [ -37.133363, -11.320195 ], [ -37.05514, -11.256091 ], [ -37.049197, -11.245896 ], [ -37.035561, -11.210747 ], [ -37.034585, -11.192879 ], [ -36.961414, -11.078957 ], [ -36.923238, -11.010019 ], [ -36.815351, -10.87365 ], [ -36.785514, -10.839387 ], [ -36.533485, -10.670339 ], [ -36.395928, -10.637006 ], [ -36.336088, -10.607461 ], [ -36.248194, -10.487887 ], [ -36.180396, -10.405893 ], [ -36.169871, -10.370568 ], [ -36.170559, -10.333931 ], [ -36.166939, -10.330895 ], [ -36.14937, -10.311817 ], [ -36.116547, -10.293484 ], [ -36.106161, -10.281953 ], [ -36.087082, -10.266401 ], [ -36.048935, -10.241398 ], [ -36.015836, -10.195013 ], [ -35.956261, -10.151717 ], [ -35.696989, -9.798744 ], [ -35.591095, -9.737165 ], [ -35.555875, -9.655819 ], [ -35.45969, -9.560847 ], [ -35.210366, -9.271087 ], [ -35.1268, -9.112738 ], [ -35.029642, -8.951366 ], [ -34.935107, -8.664674 ], [ -34.888772, -8.585753 ], [ -34.884072, -8.565656 ], [ -34.854988, -8.47637 ], [ -34.813942, -8.374363 ], [ -34.811302, -8.304648 ], [ -34.811379, -8.30051 ], [ -34.812664, -8.29278 ], [ -34.756311, -8.124898 ], [ -34.717744, -8.053137 ], [ -34.699732, -7.928145 ], [ -34.719298, -7.815212 ], [ -34.711674, -7.695346 ], [ -34.702026, -7.67634 ], [ -34.690305, -7.639475 ], [ -34.703892, -7.564175 ], [ -34.692726, -7.532482 ], [ -34.683599, -7.487899 ], [ -34.682326, -7.2401 ], [ -34.670125, -7.159769 ], [ -34.709293, -7.062822 ], [ -34.703257, -7.007292 ], [ -34.749015, -6.83923 ], [ -34.794216, -6.795801 ], [ -34.8135, -6.654249 ], [ -34.846367, -6.581719 ], [ -34.85763, -6.407669 ], [ -34.914507, -6.283994 ], [ -34.919829, -6.233239 ], [ -34.928953, -6.188242 ], [ -34.954308, -6.149965 ], [ -34.980095, -6.129477 ], [ -34.981045, -6.049949 ], [ -34.989261, -6.01277 ], [ -34.990258, -6.011093 ], [ -34.989936, -5.998053 ], [ -34.990462, -5.989322 ], [ -34.998285, -5.953359 ], [ -35.002264, -5.943044 ], [ -35.010685, -5.925569 ], [ -35.033175, -5.892531 ], [ -35.070145, -5.711764 ], [ -35.139356, -5.450255 ], [ -35.175328, -5.39379 ], [ -35.288747, -5.182893 ], [ -35.349791, -5.117751 ], [ -35.433071, -5.051555 ], [ -35.532556, -5.017888 ], [ -35.628744, -4.99144 ], [ -35.951703, -4.925163 ], [ -36.012257, -4.926544 ], [ -36.160008, -4.975116 ], [ -36.171218, -4.976287 ], [ -36.182806, -4.97584 ], [ -36.226986, -4.974134 ], [ -36.271418, -4.968349 ], [ -36.364657, -4.965984 ], [ -36.369543, -4.964994 ], [ -36.386347, -4.957012 ], [ -36.411521, -4.950784 ], [ -36.465045, -4.941686 ], [ -36.533905, -4.944579 ], [ -36.565055, -4.957621 ], [ -36.570602, -4.960928 ], [ -36.645499, -4.960115 ], [ -36.663086, -4.950725 ], [ -36.69552, -4.943712 ], [ -36.71388, -4.944897 ], [ -36.721053, -4.942494 ], [ -36.730709, -4.937552 ], [ -36.816931, -4.845165 ], [ -36.945752, -4.799983 ], [ -37.055997, -4.813931 ], [ -37.123054, -4.807029 ], [ -37.172673, -4.695949 ], [ -37.279315, -4.585496 ], [ -37.498358, -4.505626 ], [ -37.5, -4.505914 ], [ -37.5, 65.471518 ], [ -37.470288, 65.477454 ], [ -37.41688, 65.491651 ], [ -37.362692, 65.506187 ], [ -37.33671, 65.478888 ], [ -37.265534, 65.419576 ], [ -37.181683, 65.394323 ], [ -37.142974, 65.398897 ], [ -37.111999, 65.409637 ], [ -37.106951, 65.412083 ], [ -37.03844, 65.400805 ], [ -36.927669, 65.439591 ], [ -36.916572, 65.440285 ], [ -36.779137, 65.487272 ], [ -36.765771, 65.492933 ], [ -36.750738, 65.494135 ], [ -36.718085, 65.497806 ], [ -36.608332, 65.549142 ], [ -36.588836, 65.645597 ], [ -36.578674, 65.672752 ], [ -36.454081, 65.671277 ], [ -36.413511, 65.64366 ], [ -36.37159, 65.621595 ], [ -36.302143, 65.608517 ], [ -36.298763, 65.608899 ], [ -36.261152, 65.620232 ], [ -36.118453, 65.600288 ], [ -36.111426, 65.602852 ], [ -36.055284, 65.645309 ], [ -36.031987, 65.713084 ], [ -36.050842, 65.786221 ], [ -35.986144, 65.788572 ], [ -35.866378, 65.831956 ], [ -35.820625, 65.852622 ], [ -35.752413, 65.874951 ], [ -35.682466, 65.890232 ], [ -35.634159, 65.882211 ], [ -35.545396, 65.920437 ], [ -35.506648, 65.967263 ], [ -35.426177, 66.066145 ], [ -35.368303, 66.095177 ], [ -35.282442, 66.137176 ], [ -35.215662, 66.124313 ], [ -35.210639, 66.124015 ], [ -35.117105, 66.116619 ], [ -35.079713, 66.118973 ], [ -35.02694, 66.127384 ], [ -34.939417, 66.150968 ], [ -34.905067, 66.157529 ], [ -34.870042, 66.17021 ], [ -34.862069, 66.173155 ], [ -34.815433, 66.187217 ], [ -34.681442, 66.218968 ], [ -34.634212, 66.248195 ], [ -34.569704, 66.260254 ], [ -34.515229, 66.317468 ], [ -34.510583, 66.335093 ], [ -34.443113, 66.377749 ], [ -34.439146, 66.382876 ], [ -34.434027, 66.389008 ], [ -34.417334, 66.391854 ], [ -34.312177, 66.457685 ], [ -34.259714, 66.457668 ], [ -34.240469, 66.461323 ], [ -34.197504, 66.47466 ], [ -34.109702, 66.528633 ], [ -34.049642, 66.579752 ], [ -34.037304, 66.596885 ], [ -33.877111, 66.649755 ], [ -33.836488, 66.679953 ], [ -33.748717, 66.705577 ], [ -33.717315, 66.73838 ], [ -33.694338, 66.802751 ], [ -33.635942, 66.80916 ], [ -33.522407, 66.838927 ], [ -33.499567, 66.86622 ], [ -33.474161, 66.933057 ], [ -33.388575, 66.936662 ], [ -33.325591, 66.969944 ], [ -33.292573, 67.033066 ], [ -33.291496, 67.069076 ], [ -33.297833, 67.091846 ], [ -33.249062, 67.128762 ], [ -33.167236, 67.116515 ], [ -33.112166, 67.142179 ], [ -33.084405, 67.166176 ], [ -33.065192, 67.197439 ], [ -33.056326, 67.233047 ], [ -33.058635, 67.26967 ], [ -33.071903, 67.303882 ], [ -33.117083, 67.350605 ], [ -33.085348, 67.469109 ], [ -33.075378, 67.475606 ], [ -32.987724, 67.535002 ], [ -32.980521, 67.540842 ], [ -32.916289, 67.502011 ], [ -32.847085, 67.502108 ], [ -32.758728, 67.53647 ], [ -32.690736, 67.635272 ], [ -32.659174, 67.646441 ], [ -32.64578, 67.65597 ], [ -32.600638, 67.667676 ], [ -32.619087, 67.603875 ], [ -32.612323, 67.566122 ], [ -32.565969, 67.506244 ], [ -32.559, 67.501567 ], [ -32.436729, 67.485676 ], [ -32.401559, 67.504921 ], [ -32.374691, 67.534675 ], [ -32.356594, 67.61163 ], [ -32.367385, 67.650241 ], [ -32.3851, 67.731526 ], [ -32.383318, 67.725977 ], [ -32.28972, 67.658079 ], [ -32.282144, 67.658207 ], [ -32.232003, 67.652195 ], [ -32.18563, 67.660669 ], [ -32.077698, 67.745765 ], [ -32.049446, 67.776636 ], [ -32.04747, 67.779724 ], [ -32.019888, 67.803919 ], [ -31.997538, 67.808888 ], [ -31.93835, 67.846408 ], [ -31.89534, 67.923703 ], [ -31.856034, 68.040177 ], [ -31.84748, 68.038148 ], [ -31.81689, 68.032762 ], [ -31.752567, 67.986985 ], [ -31.655698, 67.961714 ], [ -31.598002, 67.949255 ], [ -31.523517, 67.95061 ], [ -31.46521, 67.953757 ], [ -31.359237, 67.975959 ], [ -31.260498, 67.95505 ], [ -31.195402, 67.946926 ], [ -31.116653, 67.934138 ], [ -31.035801, 67.924086 ], [ -31.016016, 67.924042 ], [ -30.878309, 67.938032 ], [ -30.849463, 67.949655 ], [ -30.847172, 67.949484 ], [ -30.800347, 67.953017 ], [ -30.684706, 67.943637 ], [ -30.639618, 67.947259 ], [ -30.476502, 67.935864 ], [ -30.379017, 67.964713 ], [ -30.373131, 67.968528 ], [ -30.347643, 67.972159 ], [ -30.325303, 67.972946 ], [ -30.298506, 67.97584 ], [ -30.285644, 67.97555 ], [ -30.226142, 67.986735 ], [ -30.151925, 67.977776 ], [ -30.104757, 67.98345 ], [ -30.074168, 67.997533 ], [ -30.054303, 67.994571 ], [ -29.993099, 67.998522 ], [ -29.943501, 68.018933 ], [ -29.928526, 68.030193 ], [ -29.835136, 68.02873 ], [ -29.694334, 68.062767 ], [ -29.64036, 68.09637 ], [ -29.621019, 68.119549 ], [ -29.616019, 68.119397 ], [ -29.582499, 68.114249 ], [ -29.532562, 68.098037 ], [ -29.418712, 68.089441 ], [ -29.344668, 68.099929 ], [ -29.271404, 68.155927 ], [ -29.209236, 68.141446 ], [ -29.121783, 68.157398 ], [ -29.114643, 68.157979 ], [ -29.057132, 68.180137 ], [ -28.977729, 68.228216 ], [ -28.959, 68.229166 ], [ -28.922057, 68.208963 ], [ -28.844656, 68.201646 ], [ -28.72774, 68.250474 ], [ -28.682326, 68.241607 ], [ -28.667433, 68.239657 ], [ -28.650413, 68.238505 ], [ -28.616392, 68.241063 ], [ -28.576825, 68.253463 ], [ -28.537268, 68.285287 ], [ -28.431735, 68.324064 ], [ -28.38409, 68.311592 ], [ -28.320655, 68.300906 ], [ -28.300285, 68.29842 ], [ -28.286662, 68.297931 ], [ -28.254837, 68.301054 ], [ -28.219325, 68.311867 ], [ -28.204438, 68.318711 ], [ -28.005635, 68.327639 ], [ -27.914778, 68.378098 ], [ -27.809743, 68.349399 ], [ -27.65258, 68.353254 ], [ -27.54208, 68.385745 ], [ -27.536348, 68.390437 ], [ -27.51357, 68.416622 ], [ -27.353396, 68.410208 ], [ -27.219133, 68.420379 ], [ -27.158863, 68.445155 ], [ -27.133455, 68.469652 ], [ -27.06198, 68.463275 ], [ -26.928699, 68.519416 ], [ -26.793889, 68.533936 ], [ -26.767195, 68.545609 ], [ -26.636637, 68.536887 ], [ -26.529443, 68.549037 ], [ -26.431747, 68.538141 ], [ -26.305694, 68.567094 ], [ -26.243134, 68.590018 ], [ -26.172024, 68.663609 ], [ -26.000647, 68.668619 ], [ -25.979815, 68.668737 ], [ -25.920917, 68.67797 ], [ -25.914936, 68.680282 ], [ -25.894116, 68.690532 ], [ -25.838671, 68.703047 ], [ -25.720324, 68.754161 ], [ -25.688322, 68.747978 ], [ -25.650558, 68.748934 ], [ -25.558998, 68.778335 ], [ -25.494182, 68.838231 ], [ -25.410215, 68.85552 ], [ -25.351221, 68.905561 ], [ -25.241695, 68.91595 ], [ -25.136665, 68.966691 ], [ -25.061153, 68.987039 ], [ -25.049953, 68.987848 ], [ -24.924841, 69.047515 ], [ -24.860143, 69.122944 ], [ -24.815131, 69.115302 ], [ -24.798937, 69.116988 ], [ -24.616072, 69.134949 ], [ -24.566921, 69.153436 ], [ -24.537878, 69.168433 ], [ -24.48919, 69.236426 ], [ -24.450202, 69.232795 ], [ -24.343412, 69.26128 ], [ -24.268846, 69.316659 ], [ -24.162607, 69.294946 ], [ -24.045271, 69.297807 ], [ -23.994147, 69.336125 ], [ -23.971109, 69.377232 ], [ -23.891893, 69.401135 ], [ -23.835792, 69.393246 ], [ -23.741555, 69.401448 ], [ -23.708688, 69.414511 ], [ -23.687308, 69.419223 ], [ -23.645232, 69.432924 ], [ -23.527055, 69.509586 ], [ -23.478633, 69.536962 ], [ -23.326951, 69.522268 ], [ -23.136273, 69.573082 ], [ -23.08928, 69.644076 ], [ -23.052752, 69.638508 ], [ -22.993884, 69.636501 ], [ -22.889848, 69.670639 ], [ -22.828315, 69.701741 ], [ -22.786488, 69.759793 ], [ -22.696468, 69.791362 ], [ -22.676276, 69.783462 ], [ -22.640944, 69.780752 ], [ -22.627972, 69.781683 ], [ -22.576187, 69.797668 ], [ -22.558495, 69.810573 ], [ -22.539255, 69.822514 ], [ -22.528336, 69.825321 ], [ -22.5, 69.837959 ], [ -22.5, 67.3 ], [ -25.4, 67.3 ], [ -25.4, 62.15 ], [ -22.5, 62.15 ], [ -22.5, 40.0 ], [ -32.0, 40.0 ], [ -32.0, 36.0 ], [ -22.5, 36.0 ], [ -22.5, 18.0 ], [ -26.0, 18.0 ], [ -26.0, 14.0 ], [ -22.5, 14.0 ], [ -22.5, -90.0 ] ] ], [ [ [ -37.523430220779204, 89.0 ], [ -22.5, 89.0 ], [ -22.5, 82.905422 ], [ -22.747045, 82.919588 ], [ -22.831983, 82.886436 ], [ -22.963413, 82.916603 ], [ -22.99648, 82.915894 ], [ -23.051356, 82.908206 ], [ -23.104138, 82.91622 ], [ -23.234971, 82.955577 ], [ -23.347833, 82.963094 ], [ -23.437898, 82.974269 ], [ -23.532859, 82.964057 ], [ -23.710409, 82.982071 ], [ -23.779434, 83.019258 ], [ -23.81821, 83.024863 ], [ -23.994483, 83.035177 ], [ -24.035738, 83.035735 ], [ -24.089291, 83.03127 ], [ -24.144123, 83.019162 ], [ -24.240146, 83.039918 ], [ -24.320719, 83.028747 ], [ -24.403873, 83.021774 ], [ -24.646711, 83.014171 ], [ -24.675106, 83.089108 ], [ -24.736075, 83.143916 ], [ -24.776017, 83.203334 ], [ -24.913751, 83.231504 ], [ -24.994147, 83.268157 ], [ -25.163285, 83.281794 ], [ -25.307401, 83.285533 ], [ -25.441689, 83.276279 ], [ -25.584895, 83.27102 ], [ -25.598252, 83.354852 ], [ -25.690059, 83.423559 ], [ -25.77932, 83.436412 ], [ -25.905806, 83.462779 ], [ -26.034421, 83.472876 ], [ -26.086467, 83.478978 ], [ -26.242142, 83.504673 ], [ -26.243427, 83.505132 ], [ -26.375774, 83.515664 ], [ -26.724488, 83.543291 ], [ -27.005161, 83.563381 ], [ -27.378868, 83.588124 ], [ -27.958645, 83.59924 ], [ -28.048706, 83.585703 ], [ -28.15256, 83.585874 ], [ -28.425436, 83.584114 ], [ -28.492411, 83.619896 ], [ -28.662157, 83.634275 ], [ -28.870481, 83.635323 ], [ -28.882253, 83.635318 ], [ -28.930509, 83.63293 ], [ -28.99501, 83.623009 ], [ -29.156697, 83.616164 ], [ -29.225924, 83.645937 ], [ -29.850469, 83.70132 ], [ -29.993965, 83.704817 ], [ -30.310073, 83.719176 ], [ -30.675604, 83.718375 ], [ -30.745325, 83.71195 ], [ -30.89707, 83.695155 ], [ -31.137022, 83.688595 ], [ -31.203539, 83.688672 ], [ -31.211327, 83.688414 ], [ -31.247253, 83.686055 ], [ -31.304016, 83.688256 ], [ -31.334497, 83.692126 ], [ -31.346154, 83.693032 ], [ -31.425718, 83.695325 ], [ -31.699838, 83.709843 ], [ -31.871828, 83.731512 ], [ -32.140812, 83.705955 ], [ -32.210735, 83.72697 ], [ -32.237543, 83.728853 ], [ -32.421289, 83.734241 ], [ -32.501509, 83.734948 ], [ -32.607631, 83.746957 ], [ -32.663425, 83.747414 ], [ -32.679404, 83.746479 ], [ -32.752163, 83.740808 ], [ -32.777433, 83.737415 ], [ -33.020655, 83.736141 ], [ -33.155883, 83.743347 ], [ -33.204147, 83.741569 ], [ -33.429412, 83.736592 ], [ -33.432567, 83.736679 ], [ -33.503317, 83.737618 ], [ -33.648989, 83.734536 ], [ -34.044664, 83.71394 ], [ -34.139349, 83.705921 ], [ -34.24102, 83.661625 ], [ -34.242758, 83.659457 ], [ -34.25312, 83.66471 ], [ -34.258635, 83.669173 ], [ -34.404929, 83.716829 ], [ -34.511751, 83.723631 ], [ -34.540115, 83.720792 ], [ -34.616955, 83.687994 ], [ -34.65382, 83.700591 ], [ -34.68527, 83.707629 ], [ -34.731842, 83.72327 ], [ -34.783314, 83.728945 ], [ -34.828163, 83.729382 ], [ -34.984742, 83.709576 ], [ -35.164084, 83.680405 ], [ -35.332176, 83.664139 ], [ -35.419899, 83.678983 ], [ -35.517697, 83.676345 ], [ -35.59903, 83.675191 ], [ -35.687512, 83.675592 ], [ -35.826716, 83.671966 ], [ -35.885641, 83.676379 ], [ -35.997464, 83.679261 ], [ -36.014578, 83.67913 ], [ -36.159342, 83.681984 ], [ -36.324263, 83.682636 ], [ -36.411439, 83.683009 ], [ -36.434785, 83.684253 ], [ -36.539538, 83.680849 ], [ -36.562212, 83.678713 ], [ -36.722016, 83.66876 ], [ -36.849499, 83.653023 ], [ -36.93772, 83.642404 ], [ -37.001474, 83.629026 ], [ -37.042432, 83.596507 ], [ -37.068138, 83.568521 ], [ -37.222728, 83.578496 ], [ -37.416405, 83.593414 ], [ -37.5, 83.606742 ], [ -37.523430220779204, 89.0 ] ] ] ] } }, +{ "type": "Feature", "properties": { "name": "+11" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 169.31865, 70.03946 ], [ 169.224017, 70.057139 ], [ 169.060593, 70.06406 ], [ 169.005963, 70.028584 ], [ 168.887704, 70.039765 ], [ 168.826014, 70.074639 ], [ 168.683987, 70.105915 ], [ 168.369672, 70.138358 ], [ 168.232185, 70.129035 ], [ 167.939834, 70.047567 ], [ 167.856808, 70.014915 ], [ 167.715194, 69.922143 ], [ 167.672943, 69.8672 ], [ 167.168697, 69.661872 ], [ 166.947699, 69.594888 ], [ 166.791401, 69.600348 ], [ 166.66387, 69.628134 ], [ 166.539307, 69.611717 ], [ 166.245249, 69.620414 ], [ 166.080834, 69.637585 ], [ 165.852374, 69.679779 ], [ 165.458044, 69.684657 ], [ 165.213387, 69.702871 ], [ 164.99406, 69.678004 ], [ 164.824557, 69.676346 ], [ 164.608072, 69.693659 ], [ 164.329895, 69.765732 ], [ 164.162106, 69.860914 ], [ 164.049163, 69.86958 ], [ 163.944947, 69.851595 ], [ 163.842286, 69.801181 ], [ 163.660149, 69.785062 ], [ 163.519436, 69.787606 ], [ 163.374703, 69.81608 ], [ 163.214391, 69.816816 ], [ 162.853036, 69.75286 ], [ 162.710561, 69.759432 ], [ 162.590532, 69.785441 ], [ 162.487523, 69.769465 ], [ 162.447754, 69.637497 ], [ 162.348297, 69.622482 ], [ 162.339142, 69.506378 ], [ 162.4086, 69.468872 ], [ 162.361908, 69.416382 ], [ 162.461914, 69.399719 ], [ 162.522766, 69.319992 ], [ 162.775543, 69.203598 ], [ 162.75415, 69.173874 ], [ 162.499115, 69.117203 ], [ 162.549408, 69.057755 ], [ 162.55246, 68.991089 ], [ 162.776367, 68.928589 ], [ 162.847473, 68.87442 ], [ 162.756104, 68.801651 ], [ 162.711365, 68.789429 ], [ 162.596924, 68.809143 ], [ 162.606079, 68.714432 ], [ 162.687195, 68.673599 ], [ 162.72052, 68.621368 ], [ 162.696625, 68.577774 ], [ 162.579681, 68.501099 ], [ 162.593842, 68.45665 ], [ 162.536926, 68.404434 ], [ 162.5336, 68.352203 ], [ 162.435242, 68.305542 ], [ 162.24469, 68.334427 ], [ 162.194427, 68.353317 ], [ 161.982452, 68.368317 ], [ 161.709137, 68.372482 ], [ 161.63916, 68.3936 ], [ 161.393311, 68.412201 ], [ 161.256653, 68.394714 ], [ 161.000824, 68.301651 ], [ 160.71579, 68.278046 ], [ 160.498566, 68.268875 ], [ 160.017212, 68.282761 ], [ 159.851074, 68.27916 ], [ 159.791656, 68.20665 ], [ 159.708008, 68.237762 ], [ 159.525543, 68.238312 ], [ 159.448578, 68.218872 ], [ 159.107452, 68.193314 ], [ 159.002197, 68.174149 ], [ 158.954681, 68.14415 ], [ 158.862732, 68.135544 ], [ 158.637756, 68.143051 ], [ 158.441345, 68.116653 ], [ 158.2547, 68.070541 ], [ 158.251923, 68.002213 ], [ 158.166931, 67.941086 ], [ 158.083588, 67.927765 ], [ 158.058319, 67.848038 ], [ 158.260254, 67.832489 ], [ 158.319977, 67.743317 ], [ 158.123016, 67.720261 ], [ 158.063873, 67.736649 ], [ 157.923035, 67.736923 ], [ 157.794708, 67.702209 ], [ 157.743011, 67.659149 ], [ 157.690247, 67.545258 ], [ 157.744415, 67.474701 ], [ 157.864685, 67.453049 ], [ 157.876892, 67.412491 ], [ 157.781372, 67.336929 ], [ 157.859955, 67.270828 ], [ 157.947754, 67.261932 ], [ 158.158325, 67.197754 ], [ 158.208588, 67.163879 ], [ 158.300812, 67.148041 ], [ 158.336639, 67.117203 ], [ 158.441925, 67.120529 ], [ 158.694977, 67.059143 ], [ 158.796082, 66.986374 ], [ 158.804413, 66.901932 ], [ 158.861908, 66.874695 ], [ 158.887756, 66.781662 ], [ 158.806091, 66.746368 ], [ 158.695526, 66.724991 ], [ 158.623566, 66.607208 ], [ 158.548035, 66.579163 ], [ 158.47995, 66.525543 ], [ 158.481354, 66.488586 ], [ 158.385254, 66.467209 ], [ 158.471069, 66.385818 ], [ 158.529236, 66.359482 ], [ 158.391937, 66.25444 ], [ 158.400818, 66.213318 ], [ 158.488281, 66.113876 ], [ 158.253326, 66.12442 ], [ 158.155548, 66.15387 ], [ 158.080261, 66.153046 ], [ 157.919708, 66.118591 ], [ 157.728302, 66.11499 ], [ 157.638306, 66.089706 ], [ 157.570801, 66.044983 ], [ 157.373291, 65.997482 ], [ 157.382446, 65.925262 ], [ 157.133606, 65.91304 ], [ 157.060516, 65.921371 ], [ 156.91803, 65.969147 ], [ 156.958862, 66.040543 ], [ 156.768585, 66.10054 ], [ 156.660248, 66.193314 ], [ 156.578583, 66.19664 ], [ 156.489685, 66.150269 ], [ 156.466064, 66.112198 ], [ 156.352173, 66.062759 ], [ 156.277771, 66.084717 ], [ 155.957184, 66.095825 ], [ 155.923309, 66.125809 ], [ 155.842743, 66.132477 ], [ 155.758331, 66.179428 ], [ 155.602173, 66.142487 ], [ 155.528046, 66.169708 ], [ 155.322998, 66.139999 ], [ 155.299957, 66.175552 ], [ 155.199341, 66.208374 ], [ 155.117371, 66.208954 ], [ 155.032654, 66.15007 ], [ 154.880798, 66.131363 ], [ 154.823578, 66.178589 ], [ 154.616913, 66.208603 ], [ 154.522766, 66.243591 ], [ 154.38443, 66.203323 ], [ 154.348022, 66.137497 ], [ 154.211639, 66.058868 ], [ 154.360504, 66.0336 ], [ 154.382721, 65.944427 ], [ 154.254425, 65.829163 ], [ 154.139984, 65.79332 ], [ 154.067474, 65.797485 ], [ 154.067749, 65.846939 ], [ 153.956635, 65.888885 ], [ 153.786377, 65.874695 ], [ 153.690796, 65.885818 ], [ 153.532745, 65.851929 ], [ 153.453857, 65.79332 ], [ 153.470795, 65.741928 ], [ 153.534149, 65.7061 ], [ 153.508606, 65.622482 ], [ 153.392212, 65.505554 ], [ 153.426086, 65.463608 ], [ 153.511383, 65.433044 ], [ 153.463013, 65.359985 ], [ 153.375793, 65.35582 ], [ 153.154968, 65.300262 ], [ 153.115509, 65.268051 ], [ 153.031372, 65.275269 ], [ 152.91748, 65.251099 ], [ 152.849121, 65.258606 ], [ 152.791656, 65.231934 ], [ 152.70636, 65.241928 ], [ 152.683594, 65.195251 ], [ 152.608582, 65.162201 ], [ 152.609406, 65.107758 ], [ 152.660248, 65.074432 ], [ 152.624115, 65.008041 ], [ 152.51416, 64.961929 ], [ 152.55246, 64.889435 ], [ 152.548309, 64.817215 ], [ 152.677185, 64.781097 ], [ 152.743286, 64.673599 ], [ 152.54303, 64.607758 ], [ 152.407196, 64.541931 ], [ 152.332733, 64.529434 ], [ 152.399994, 64.392212 ], [ 152.301636, 64.388321 ], [ 152.154144, 64.353043 ], [ 152.136383, 64.429428 ], [ 152.094696, 64.486374 ], [ 152.037476, 64.505829 ], [ 151.925262, 64.482483 ], [ 151.44693, 64.421371 ], [ 151.393311, 64.291656 ], [ 151.328583, 64.353043 ], [ 151.241913, 64.353592 ], [ 151.1633, 64.378586 ], [ 150.955536, 64.329987 ], [ 150.643585, 64.339706 ], [ 150.647491, 64.257767 ], [ 150.613007, 64.226089 ], [ 150.628845, 64.165543 ], [ 150.486908, 64.175812 ], [ 150.342743, 64.211655 ], [ 150.213013, 64.212769 ], [ 150.046936, 64.330551 ], [ 150.022766, 64.369705 ], [ 150.095795, 64.463318 ], [ 150.069702, 64.502213 ], [ 149.823578, 64.568054 ], [ 149.623566, 64.538879 ], [ 149.429688, 64.433868 ], [ 149.280273, 64.454163 ], [ 149.253601, 64.415817 ], [ 149.147217, 64.411926 ], [ 149.096924, 64.444427 ], [ 148.792755, 64.423874 ], [ 148.719971, 64.431656 ], [ 148.611633, 64.413605 ], [ 148.49884, 64.468872 ], [ 148.42804, 64.530273 ], [ 148.30246, 64.557755 ], [ 148.191071, 64.496933 ], [ 148.162201, 64.457214 ], [ 148.025818, 64.440811 ], [ 148.05719, 64.400818 ], [ 148.033875, 64.34166 ], [ 148.254974, 64.255829 ], [ 148.231628, 64.173599 ], [ 148.185791, 64.168594 ], [ 148.125519, 64.113037 ], [ 148.122192, 64.054977 ], [ 148.033875, 64.007492 ], [ 147.959412, 63.943878 ], [ 147.876617, 63.979431 ], [ 147.800812, 63.943321 ], [ 147.738556, 64.023315 ], [ 147.666382, 64.012772 ], [ 147.599701, 64.045822 ], [ 147.628845, 64.169708 ], [ 147.584137, 64.170822 ], [ 147.297485, 64.129974 ], [ 147.34079, 64.08638 ], [ 147.216644, 64.0522 ], [ 147.039703, 64.13472 ], [ 146.852753, 64.166931 ], [ 146.760529, 64.165268 ], [ 146.493835, 64.210266 ], [ 146.40802, 64.212769 ], [ 146.322479, 64.121643 ], [ 146.167016, 64.229904 ], [ 145.92056, 64.382017 ], [ 145.684908, 64.451083 ], [ 145.358934, 64.441418 ], [ 144.879289, 64.525875 ], [ 144.756807, 64.578315 ], [ 144.590413, 64.668221 ], [ 144.558419, 64.788866 ], [ 144.419134, 64.896768 ], [ 144.269402, 64.94635 ], [ 144.162817, 64.957769 ], [ 143.862693, 64.962635 ], [ 143.5246, 65.104406 ], [ 143.319399, 65.183792 ], [ 143.097309, 65.174397 ], [ 142.587704, 65.272145 ], [ 142.281832, 65.316043 ], [ 141.960284, 65.38864 ], [ 141.609988, 65.375097 ], [ 141.311203, 65.423812 ], [ 140.954501, 65.501231 ], [ 140.819371, 65.59248 ], [ 140.572582, 65.576033 ], [ 140.43263, 65.524948 ], [ 140.061631, 65.579294 ], [ 139.951395, 65.646244 ], [ 140.051097, 65.731117 ], [ 140.205788, 65.810599 ], [ 140.050904, 65.887836 ], [ 139.919517, 65.98445 ], [ 139.923461, 66.074372 ], [ 139.810777, 66.082911 ], [ 139.776681, 66.131927 ], [ 139.682059, 66.153237 ], [ 139.618261, 66.267038 ], [ 139.747432, 66.386279 ], [ 139.978639, 66.458513 ], [ 140.228312, 66.443628 ], [ 140.425956, 66.44834 ], [ 140.419603, 66.515746 ], [ 140.450357, 66.608116 ], [ 140.264092, 66.609542 ], [ 139.99564, 66.702151 ], [ 139.953975, 66.760886 ], [ 139.813294, 66.825194 ], [ 139.6794, 66.821402 ], [ 139.547717, 66.875229 ], [ 139.411027, 66.987238 ], [ 139.248996, 67.038187 ], [ 139.160861, 67.123077 ], [ 139.02155, 67.160664 ], [ 138.903103, 67.242709 ], [ 139.500492, 67.486566 ], [ 139.873376, 67.588343 ], [ 140.172501, 67.714009 ], [ 140.538654, 67.791886 ], [ 140.922134, 67.850177 ], [ 141.266497, 67.88227 ], [ 141.266171, 67.924172 ], [ 141.162779, 67.972425 ], [ 141.158039, 68.03984 ], [ 141.247333, 68.179276 ], [ 141.100963, 68.244003 ], [ 141.027485, 68.351617 ], [ 141.205806, 68.446577 ], [ 141.379997, 68.442403 ], [ 141.557125, 68.479344 ], [ 141.720504, 68.493724 ], [ 141.95784, 68.63441 ], [ 141.91151, 68.745241 ], [ 141.957754, 68.827533 ], [ 141.740925, 68.891978 ], [ 141.696318, 69.018521 ], [ 141.56151, 69.106601 ], [ 141.526702, 69.155933 ], [ 141.701652, 69.243774 ], [ 141.870727, 69.21673 ], [ 142.053369, 69.252594 ], [ 142.137188, 69.217989 ], [ 142.373609, 69.242824 ], [ 142.550443, 69.195063 ], [ 142.783087, 69.203637 ], [ 142.59624, 69.422391 ], [ 142.442057, 69.472409 ], [ 142.405403, 69.547434 ], [ 142.231957, 69.559784 ], [ 142.086129, 69.599118 ], [ 142.193037, 69.727689 ], [ 142.340194, 69.823093 ], [ 142.150372, 69.854924 ], [ 141.774767, 69.782595 ], [ 141.562381, 69.843119 ], [ 141.384803, 69.921508 ], [ 141.377159, 69.97314 ], [ 141.087417, 69.948381 ], [ 140.919788, 70.007504 ], [ 140.919848, 70.132569 ], [ 141.073153, 70.276243 ], [ 141.274598, 70.361395 ], [ 141.514684, 70.480808 ], [ 141.73875, 70.603667 ], [ 141.901735, 70.747295 ], [ 142.034576, 70.846063 ], [ 142.346226, 70.901532 ], [ 142.43407, 71.002233 ], [ 142.63792, 71.053891 ], [ 142.639334, 71.163191 ], [ 142.529796, 71.269824 ], [ 142.581769, 71.378071 ], [ 142.648004, 71.466138 ], [ 142.753295, 71.546528 ], [ 143.330719, 71.87312 ], [ 143.523631, 71.953323 ], [ 143.464173, 71.99114 ], [ 143.539354, 72.078265 ], [ 143.689899, 72.099357 ], [ 143.772201, 72.151691 ], [ 143.985921, 72.134023 ], [ 144.103134, 72.110365 ], [ 144.530218, 72.052679 ], [ 145.191094, 72.198119 ], [ 145.790295, 72.158471 ], [ 146.345372, 72.164866 ], [ 146.879345, 72.167424 ], [ 147.388789, 72.318422 ], [ 147.525251, 72.447219 ], [ 147.619358, 72.450636 ], [ 148.01101, 72.437397 ], [ 148.137584, 72.446514 ], [ 148.546368, 72.431527 ], [ 148.806674, 72.386741 ], [ 149.216577, 72.342516 ], [ 149.369543, 72.31822 ], [ 149.610601, 72.265944 ], [ 149.863822, 72.183066 ], [ 149.994734, 72.128353 ], [ 150.108365, 72.055639 ], [ 150.194285, 71.963276 ], [ 150.226373, 71.867589 ], [ 150.18849, 71.750387 ], [ 150.237409, 71.722514 ], [ 150.404243, 71.706022 ], [ 150.471663, 71.677347 ], [ 150.658379, 71.665643 ], [ 150.739904, 71.616959 ], [ 150.865922, 71.612131 ], [ 150.901616, 71.584049 ], [ 151.001337, 71.595629 ], [ 151.027772, 71.641218 ], [ 151.097335, 71.676111 ], [ 151.261019, 71.666368 ], [ 151.324013, 71.633184 ], [ 151.404607, 71.552689 ], [ 151.426684, 71.486344 ], [ 151.539104, 71.447069 ], [ 151.783688, 71.380521 ], [ 151.859677, 71.345573 ], [ 151.9466, 71.230868 ], [ 152.179038, 71.111824 ], [ 152.238911, 71.059449 ], [ 152.351753, 71.021932 ], [ 152.410345, 70.959281 ], [ 152.569287, 70.940924 ], [ 152.710808, 70.946433 ], [ 152.990671, 70.942797 ], [ 153.125025, 70.959705 ], [ 153.590088, 70.990428 ], [ 153.811356, 70.982266 ], [ 154.072612, 71.035788 ], [ 154.348791, 71.072859 ], [ 154.974832, 71.127505 ], [ 155.134155, 71.150915 ], [ 155.348146, 71.151252 ], [ 155.537826, 71.180759 ], [ 155.627674, 71.175245 ], [ 155.882349, 71.198247 ], [ 156.175662, 71.203817 ], [ 156.576632, 71.1937 ], [ 156.919149, 71.210322 ], [ 157.018132, 71.19986 ], [ 157.351141, 71.189433 ], [ 157.5, 71.176813 ], [ 157.5, 89.0 ], [ 172.5, 89.0 ], [ 172.5, 70.057248 ], [ 172.29994, 70.084959 ], [ 172.037823, 70.094583 ], [ 171.759907, 70.131738 ], [ 171.66078, 70.137349 ], [ 171.481429, 70.170184 ], [ 171.310698, 70.17499 ], [ 170.98526, 70.208357 ], [ 170.824689, 70.201484 ], [ 170.571847, 70.247511 ], [ 170.487904, 70.240686 ], [ 169.31865, 70.03946 ] ] ], [ [ [ 172.5, -30.0 ], [ 165.0, -40.5 ], [ 165.0, -53.0 ], [ 172.5, -53.0 ], [ 172.5, -90.0 ], [ 157.5, -90.0 ], [ 157.5, -11.4 ], [ 154.0, -8.0 ], [ 154.0, 9.0 ], [ 157.5, 9.0 ], [ 157.5, 47.394307 ], [ 154.483762, 47.418394 ], [ 152.369453, 50.294331 ], [ 155.0, 52.3 ], [ 157.5, 50.0 ], [ 161.0, 50.0 ], [ 167.0, 53.0 ], [ 172.5, 50.8846 ], [ 172.5, 20.0 ], [ 160.0, 20.0 ], [ 160.0, 9.0 ], [ 164.0, 9.0 ], [ 164.0, -2.5 ], [ 172.5, -2.5 ], [ 172.5, -30.0 ] ], [ [ 167.5, -28.7 ], [ 167.5, -29.4 ], [ 168.3, -29.4 ], [ 168.3, -28.7 ], [ 167.5, -28.7 ] ], [ [ 158.6, -31.1 ], [ 158.6, -32.0 ], [ 159.6, -32.0 ], [ 159.6, -31.1 ], [ 158.6, -31.1 ] ] ] ] } }, +{ "type": "Feature", "properties": { "name": "+12" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 169.31865, 70.03946 ], [ 170.487904, 70.240686 ], [ 170.571847, 70.247511 ], [ 170.824689, 70.201484 ], [ 170.98526, 70.208357 ], [ 171.310698, 70.17499 ], [ 171.481429, 70.170184 ], [ 171.66078, 70.137349 ], [ 171.759907, 70.131738 ], [ 172.037823, 70.094583 ], [ 172.29994, 70.084959 ], [ 172.5, 70.057248 ], [ 172.5, 89.0 ], [ 180.0, 89.0 ], [ 180.0, 59.5 ], [ 167.0, 53.0 ], [ 161.0, 50.0 ], [ 157.5, 50.0 ], [ 155.0, 52.3 ], [ 155.0, 57.189239 ], [ 162.448002, 61.105454 ], [ 162.511475, 61.655689 ], [ 162.464417, 61.713882 ], [ 162.481628, 61.753326 ], [ 162.459686, 61.833603 ], [ 162.376892, 61.860275 ], [ 162.355804, 61.96666 ], [ 162.470245, 61.961937 ], [ 162.540527, 62.021103 ], [ 162.5383, 62.093323 ], [ 162.374969, 62.122765 ], [ 162.273315, 62.12471 ], [ 162.183868, 62.161102 ], [ 162.257751, 62.215546 ], [ 162.323578, 62.203323 ], [ 162.403595, 62.253609 ], [ 162.548859, 62.253052 ], [ 162.601074, 62.282768 ], [ 162.64444, 62.258888 ], [ 162.752472, 62.313881 ], [ 162.776642, 62.494156 ], [ 162.696075, 62.589432 ], [ 162.825256, 62.686935 ], [ 162.815247, 62.716385 ], [ 162.672211, 62.710274 ], [ 162.603577, 62.755829 ], [ 162.60495, 62.808327 ], [ 162.549713, 62.845825 ], [ 162.295532, 62.908325 ], [ 162.268311, 62.924438 ], [ 162.326355, 63.034164 ], [ 162.30191, 63.079994 ], [ 162.378021, 63.120827 ], [ 162.454132, 63.106659 ], [ 162.593292, 63.130272 ], [ 162.615784, 63.183876 ], [ 162.756653, 63.180275 ], [ 162.779144, 63.2286 ], [ 162.749115, 63.304436 ], [ 162.683868, 63.39222 ], [ 162.798309, 63.430824 ], [ 162.86911, 63.429161 ], [ 162.97052, 63.500549 ], [ 162.951904, 63.523323 ], [ 162.974121, 63.631104 ], [ 162.866364, 63.656937 ], [ 162.855225, 63.70694 ], [ 162.762482, 63.734436 ], [ 162.715515, 63.825829 ], [ 162.930542, 63.940269 ], [ 162.891663, 64.021103 ], [ 162.839966, 64.014999 ], [ 162.832733, 64.079987 ], [ 162.778595, 64.138596 ], [ 162.879395, 64.189697 ], [ 163.013031, 64.200546 ], [ 163.140808, 64.178314 ], [ 163.254425, 64.32222 ], [ 163.314972, 64.321381 ], [ 163.396088, 64.402206 ], [ 163.346924, 64.487488 ], [ 163.232452, 64.503876 ], [ 163.168854, 64.550812 ], [ 163.168579, 64.642761 ], [ 163.231079, 64.668869 ], [ 163.256653, 64.724701 ], [ 163.132446, 64.76416 ], [ 163.120239, 64.694977 ], [ 163.034698, 64.651382 ], [ 162.776093, 64.656937 ], [ 162.665802, 64.686096 ], [ 162.609131, 64.734421 ], [ 162.502472, 64.753876 ], [ 162.318848, 64.738312 ], [ 162.209961, 64.774429 ], [ 161.859131, 64.813873 ], [ 161.783051, 64.837769 ], [ 161.713867, 64.930817 ], [ 161.709137, 64.981659 ], [ 161.645538, 65.013321 ], [ 161.394989, 65.080551 ], [ 161.334137, 65.133041 ], [ 161.174988, 65.14415 ], [ 161.007751, 65.170258 ], [ 160.861633, 65.153595 ], [ 160.626343, 65.146652 ], [ 160.510681, 65.168564 ], [ 160.431396, 65.245422 ], [ 160.170807, 65.376648 ], [ 160.185699, 65.435425 ], [ 160.141541, 65.471741 ], [ 160.027466, 65.517761 ], [ 159.82663, 65.527771 ], [ 159.549988, 65.618042 ], [ 159.341064, 65.664703 ], [ 159.231354, 65.668594 ], [ 159.066833, 65.715607 ], [ 158.911926, 65.743042 ], [ 158.892548, 65.79184 ], [ 158.931091, 65.902771 ], [ 158.989136, 65.929428 ], [ 159.051636, 66.048035 ], [ 159.191071, 66.144989 ], [ 159.181091, 66.234146 ], [ 158.994415, 66.260818 ], [ 158.888885, 66.263321 ], [ 158.746613, 66.294434 ], [ 158.652191, 66.346649 ], [ 158.529236, 66.359482 ], [ 158.471069, 66.385818 ], [ 158.385254, 66.467209 ], [ 158.481354, 66.488586 ], [ 158.47995, 66.525543 ], [ 158.548035, 66.579163 ], [ 158.623566, 66.607208 ], [ 158.695526, 66.724991 ], [ 158.806091, 66.746368 ], [ 158.887756, 66.781662 ], [ 158.861908, 66.874695 ], [ 158.804413, 66.901932 ], [ 158.796082, 66.986374 ], [ 158.694977, 67.059143 ], [ 158.441925, 67.120529 ], [ 158.336639, 67.117203 ], [ 158.300812, 67.148041 ], [ 158.208588, 67.163879 ], [ 158.158325, 67.197754 ], [ 157.947754, 67.261932 ], [ 157.859955, 67.270828 ], [ 157.781372, 67.336929 ], [ 157.876892, 67.412491 ], [ 157.864685, 67.453049 ], [ 157.744415, 67.474701 ], [ 157.690247, 67.545258 ], [ 157.743011, 67.659149 ], [ 157.794708, 67.702209 ], [ 157.923035, 67.736923 ], [ 158.063873, 67.736649 ], [ 158.123016, 67.720261 ], [ 158.319977, 67.743317 ], [ 158.260254, 67.832489 ], [ 158.058319, 67.848038 ], [ 158.083588, 67.927765 ], [ 158.166931, 67.941086 ], [ 158.251923, 68.002213 ], [ 158.2547, 68.070541 ], [ 158.441345, 68.116653 ], [ 158.637756, 68.143051 ], [ 158.862732, 68.135544 ], [ 158.954681, 68.14415 ], [ 159.002197, 68.174149 ], [ 159.107452, 68.193314 ], [ 159.448578, 68.218872 ], [ 159.525543, 68.238312 ], [ 159.708008, 68.237762 ], [ 159.791656, 68.20665 ], [ 159.851074, 68.27916 ], [ 160.017212, 68.282761 ], [ 160.498566, 68.268875 ], [ 160.71579, 68.278046 ], [ 161.000824, 68.301651 ], [ 161.256653, 68.394714 ], [ 161.393311, 68.412201 ], [ 161.63916, 68.3936 ], [ 161.709137, 68.372482 ], [ 161.982452, 68.368317 ], [ 162.194427, 68.353317 ], [ 162.24469, 68.334427 ], [ 162.435242, 68.305542 ], [ 162.5336, 68.352203 ], [ 162.536926, 68.404434 ], [ 162.593842, 68.45665 ], [ 162.579681, 68.501099 ], [ 162.696625, 68.577774 ], [ 162.72052, 68.621368 ], [ 162.687195, 68.673599 ], [ 162.606079, 68.714432 ], [ 162.596924, 68.809143 ], [ 162.711365, 68.789429 ], [ 162.756104, 68.801651 ], [ 162.847473, 68.87442 ], [ 162.776367, 68.928589 ], [ 162.55246, 68.991089 ], [ 162.549408, 69.057755 ], [ 162.499115, 69.117203 ], [ 162.75415, 69.173874 ], [ 162.775543, 69.203598 ], [ 162.522766, 69.319992 ], [ 162.461914, 69.399719 ], [ 162.361908, 69.416382 ], [ 162.4086, 69.468872 ], [ 162.339142, 69.506378 ], [ 162.348297, 69.622482 ], [ 162.447754, 69.637497 ], [ 162.487523, 69.769465 ], [ 162.590532, 69.785441 ], [ 162.710561, 69.759432 ], [ 162.853036, 69.75286 ], [ 163.214391, 69.816816 ], [ 163.374703, 69.81608 ], [ 163.519436, 69.787606 ], [ 163.660149, 69.785062 ], [ 163.842286, 69.801181 ], [ 163.944947, 69.851595 ], [ 164.049163, 69.86958 ], [ 164.162106, 69.860914 ], [ 164.329895, 69.765732 ], [ 164.608072, 69.693659 ], [ 164.824557, 69.676346 ], [ 164.99406, 69.678004 ], [ 165.213387, 69.702871 ], [ 165.458044, 69.684657 ], [ 165.852374, 69.679779 ], [ 166.080834, 69.637585 ], [ 166.245249, 69.620414 ], [ 166.539307, 69.611717 ], [ 166.66387, 69.628134 ], [ 166.791401, 69.600348 ], [ 166.947699, 69.594888 ], [ 167.168697, 69.661872 ], [ 167.672943, 69.8672 ], [ 167.715194, 69.922143 ], [ 167.856808, 70.014915 ], [ 167.939834, 70.047567 ], [ 168.232185, 70.129035 ], [ 168.369672, 70.138358 ], [ 168.683987, 70.105915 ], [ 168.826014, 70.074639 ], [ 168.887704, 70.039765 ], [ 169.005963, 70.028584 ], [ 169.060593, 70.06406 ], [ 169.224017, 70.057139 ], [ 169.31865, 70.03946 ] ] ], [ [ [ 172.5, 50.8846 ], [ 180.0, 48.0 ], [ 180.0, -90.0 ], [ 172.5, -90.0 ], [ 172.5, -53.0 ], [ 165.0, -53.0 ], [ 165.0, -40.5 ], [ 172.5, -30.0 ], [ 172.5, -2.5 ], [ 164.0, -2.5 ], [ 164.0, 9.0 ], [ 160.0, 9.0 ], [ 160.0, 20.0 ], [ 172.5, 20.0 ], [ 172.5, 50.8846 ] ] ], [ [ [ -180.0, -52.0 ], [ -180.0, -25.0 ], [ -172.500023, -25.0 ], [ -172.500023, -45.0 ], [ -180.0, -52.0 ] ] ], [ [ [ -180.0, -25.0 ], [ -180.0, -2.509434 ], [ -178.506863, -2.509434 ], [ -178.5, -9.750274 ], [ -175.0, -12.5 ], [ -175.0, -15.0 ], [ -177.8, -15.0 ], [ -177.8, -19.8 ], [ -180.0, -25.0 ] ] ], [ [ [ -179.999971, 59.501864 ], [ -180.0, 75.0 ], [ -169.0, 68.0 ], [ -169.0, 65.5 ], [ -173.400001999998835, 63.100738184103847 ], [ -179.999971, 59.501864 ] ] ] ] } }, +{ "type": "Feature", "properties": { "name": "+3.5" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 52.5, 27.291387 ], [ 52.465203, 27.354083 ], [ 52.478136, 27.442714 ], [ 52.425915, 27.506966 ], [ 52.141639, 27.599535 ], [ 51.999448, 27.719131 ], [ 51.848242, 27.72308 ], [ 51.707998, 27.703812 ], [ 51.52659, 27.745097 ], [ 51.445411, 27.724289 ], [ 51.373843, 27.756757 ], [ 51.28907, 27.891072 ], [ 51.217766, 27.947104 ], [ 51.171436, 28.04329 ], [ 51.161412, 28.19188 ], [ 51.089717, 28.271828 ], [ 50.992943, 28.438423 ], [ 50.943212, 28.697842 ], [ 50.865355, 28.703541 ], [ 50.797946, 28.745515 ], [ 50.719345, 28.845913 ], [ 50.698723, 28.965176 ], [ 50.618845, 28.998617 ], [ 50.52998, 29.118682 ], [ 50.522478, 29.199939 ], [ 50.546128, 29.262745 ], [ 50.546071, 29.356282 ], [ 50.424384, 29.475987 ], [ 50.397764, 29.520737 ], [ 50.251906, 29.637429 ], [ 50.170232, 29.751346 ], [ 50.048639, 29.868868 ], [ 50.027575, 29.918525 ], [ 50.03182, 30.035701 ], [ 50.003744, 30.091784 ], [ 49.955092, 30.085554 ], [ 49.663991, 29.911361 ], [ 49.565833, 29.877722 ], [ 49.502186, 29.892152 ], [ 49.403717, 29.992481 ], [ 49.391276, 30.026433 ], [ 49.213519, 30.020537 ], [ 49.132045, 29.976816 ], [ 49.041311, 29.993204 ], [ 48.98129, 29.920143 ], [ 48.889137, 29.889001 ], [ 48.767059, 29.89588 ], [ 48.575182, 29.930143 ], [ 48.453453, 29.998596 ], [ 48.443783, 30.064909 ], [ 48.387306, 30.112728 ], [ 48.412003, 30.196175 ], [ 48.268608, 30.338013 ], [ 48.192463, 30.333328 ], [ 48.165577, 30.424028 ], [ 48.026402, 30.482599 ], [ 48.032211, 30.997009 ], [ 47.681652, 30.999229 ], [ 47.683044, 31.394873 ], [ 47.865818, 31.783682 ], [ 47.808762, 31.843676 ], [ 47.810123, 31.882671 ], [ 47.729427, 31.944208 ], [ 47.707352, 32.005524 ], [ 47.5947, 32.124798 ], [ 47.567551, 32.192177 ], [ 47.462196, 32.31591 ], [ 47.466228, 32.379608 ], [ 47.392735, 32.466084 ], [ 47.283306, 32.497593 ], [ 47.245956, 32.463505 ], [ 47.168301, 32.457302 ], [ 47.000336, 32.570389 ], [ 46.887184, 32.632034 ], [ 46.720791, 32.786476 ], [ 46.622738, 32.822308 ], [ 46.480782, 32.916199 ], [ 46.31245, 32.968979 ], [ 46.173553, 32.953419 ], [ 46.097404, 32.981209 ], [ 46.156956, 33.073341 ], [ 46.041801, 33.09565 ], [ 46.186466, 33.171791 ], [ 46.191109, 33.263409 ], [ 46.080502, 33.352596 ], [ 46.070934, 33.402767 ], [ 46.006557, 33.508701 ], [ 45.87114, 33.635273 ], [ 45.771362, 33.638439 ], [ 45.719105, 33.662601 ], [ 45.639931, 33.742882 ], [ 45.552635, 33.889709 ], [ 45.489647, 33.949272 ], [ 45.409645, 33.978355 ], [ 45.47765, 34.036087 ], [ 45.474007, 34.077274 ], [ 45.5816, 34.146217 ], [ 45.561871, 34.331779 ], [ 45.466599, 34.38372 ], [ 45.440704, 34.460194 ], [ 45.507957, 34.472614 ], [ 45.538193, 34.601097 ], [ 45.608795, 34.55164 ], [ 45.738312, 34.588512 ], [ 45.702236, 34.694572 ], [ 45.654358, 34.722961 ], [ 45.704102, 34.790398 ], [ 45.865498, 34.89595 ], [ 45.897751, 34.959206 ], [ 45.874699, 35.033764 ], [ 45.96846, 35.074341 ], [ 46.067703, 35.043419 ], [ 46.071068, 35.082603 ], [ 46.159702, 35.088554 ], [ 46.130505, 35.227905 ], [ 46.142834, 35.315395 ], [ 46.07465, 35.365219 ], [ 45.986301, 35.495998 ], [ 46.013, 35.594025 ], [ 46.007717, 35.675964 ], [ 46.035828, 35.705196 ], [ 46.166203, 35.689564 ], [ 46.198341, 35.721313 ], [ 46.288277, 35.734028 ], [ 46.337917, 35.820007 ], [ 46.16732, 35.801903 ], [ 46.094177, 35.868767 ], [ 46.025501, 35.835968 ], [ 45.895645, 35.839081 ], [ 45.832153, 35.809589 ], [ 45.756561, 35.808502 ], [ 45.667145, 35.925526 ], [ 45.550285, 36.001244 ], [ 45.478889, 36.00235 ], [ 45.39399, 35.968491 ], [ 45.341816, 36.008949 ], [ 45.381786, 36.079632 ], [ 45.349995, 36.110004 ], [ 45.304611, 36.274082 ], [ 45.237682, 36.431957 ], [ 45.114868, 36.406071 ], [ 45.077896, 36.431511 ], [ 45.028187, 36.606369 ], [ 45.063648, 36.690651 ], [ 45.031231, 36.74086 ], [ 44.937828, 36.785999 ], [ 44.848652, 36.777676 ], [ 44.841389, 36.819237 ], [ 44.900867, 36.857784 ], [ 44.882393, 36.954742 ], [ 44.900314, 37.022255 ], [ 44.805958, 37.046024 ], [ 44.752834, 37.11211 ], [ 44.805027, 37.165638 ], [ 44.778221, 37.223999 ], [ 44.823307, 37.307556 ], [ 44.601166, 37.445332 ], [ 44.638474, 37.603638 ], [ 44.58086, 37.646526 ], [ 44.638306, 37.716305 ], [ 44.597111, 37.763748 ], [ 44.476665, 37.765499 ], [ 44.416443, 37.854084 ], [ 44.238861, 37.887112 ], [ 44.281555, 38.00325 ], [ 44.364082, 38.12714 ], [ 44.401333, 38.140972 ], [ 44.426918, 38.278168 ], [ 44.50539, 38.318443 ], [ 44.446777, 38.385582 ], [ 44.399334, 38.364861 ], [ 44.323002, 38.382446 ], [ 44.339527, 38.502834 ], [ 44.332527, 38.628971 ], [ 44.277195, 38.716026 ], [ 44.316139, 38.833862 ], [ 44.255974, 38.855083 ], [ 44.20261, 38.931 ], [ 44.187416, 39.012474 ], [ 44.218388, 39.138638 ], [ 44.12661, 39.189445 ], [ 44.111694, 39.286446 ], [ 44.050777, 39.357277 ], [ 44.069805, 39.405304 ], [ 44.15789, 39.392971 ], [ 44.224304, 39.410278 ], [ 44.301723, 39.371471 ], [ 44.441113, 39.43589 ], [ 44.436195, 39.560665 ], [ 44.489613, 39.630138 ], [ 44.487057, 39.686554 ], [ 44.606556, 39.773361 ], [ 44.721916, 39.707279 ], [ 44.820251, 39.625252 ], [ 44.920082, 39.568779 ], [ 44.946362, 39.46064 ], [ 45.087971, 39.349361 ], [ 45.160831, 39.237141 ], [ 45.295387, 39.183334 ], [ 45.446693, 39.050415 ], [ 45.436359, 38.99839 ], [ 45.617168, 38.938416 ], [ 45.767555, 38.921528 ], [ 45.921001, 38.869778 ], [ 46.075474, 38.867638 ], [ 46.177555, 38.830528 ], [ 46.290916, 38.893665 ], [ 46.359055, 38.907276 ], [ 46.533722, 38.864887 ], [ 46.609165, 38.915474 ], [ 46.852722, 39.13961 ], [ 46.954834, 39.1325 ], [ 47.033249, 39.175777 ], [ 47.064667, 39.243137 ], [ 47.143749, 39.298443 ], [ 47.210583, 39.311417 ], [ 47.310638, 39.371944 ], [ 47.384945, 39.457554 ], [ 47.541916, 39.499554 ], [ 47.74189, 39.598 ], [ 47.807835, 39.650082 ], [ 47.89975, 39.654915 ], [ 47.990749, 39.696335 ], [ 48.148335, 39.563583 ], [ 48.233665, 39.470249 ], [ 48.374638, 39.370777 ], [ 48.207863, 39.32164 ], [ 48.131779, 39.264832 ], [ 48.136555, 39.210472 ], [ 48.301388, 39.108917 ], [ 48.357777, 39.040554 ], [ 48.35339, 38.993195 ], [ 48.291695, 38.964973 ], [ 48.109306, 38.94278 ], [ 48.0135, 38.904583 ], [ 48.020638, 38.841167 ], [ 48.116028, 38.76775 ], [ 48.24625, 38.723583 ], [ 48.263279, 38.653416 ], [ 48.315666, 38.60136 ], [ 48.4375, 38.611443 ], [ 48.463001, 38.566776 ], [ 48.57436, 38.471169 ], [ 48.632027, 38.402416 ], [ 48.732666, 38.406696 ], [ 48.791138, 38.444584 ], [ 48.999709, 38.418893 ], [ 48.999005101964599, 38.412194010369276 ], [ 48.999005101964599, 38.412194010369255 ], [ 48.996707, 38.390323 ], [ 48.984715, 38.31441 ], [ 49.014143, 38.192337 ], [ 49.023832, 38.06258 ], [ 49.059521, 37.97779 ], [ 49.113219, 37.784385 ], [ 49.275149, 37.664744 ], [ 49.364418, 37.628185 ], [ 49.556086, 37.586197 ], [ 49.837046, 37.562901 ], [ 49.966765, 37.584989 ], [ 50.055548, 37.526684 ], [ 50.236146, 37.500113 ], [ 50.317406, 37.432735 ], [ 50.342875, 37.337466 ], [ 50.393931, 37.230961 ], [ 50.553083, 37.122253 ], [ 50.733313, 37.039008 ], [ 50.757556, 37.014765 ], [ 51.010132, 36.891933 ], [ 51.179656, 36.840137 ], [ 51.466994, 36.801352 ], [ 51.691217, 36.718132 ], [ 51.865582, 36.695961 ], [ 52.041174, 36.706645 ], [ 52.440283, 36.802662 ], [ 52.498622, 36.810821 ], [ 52.513615, 36.812355 ], [ 52.681967, 36.839628 ], [ 52.777432, 36.855709 ], [ 52.864693, 36.873196 ], [ 52.920883, 36.887991 ], [ 53.1697, 36.952046 ], [ 53.195334, 36.955605 ], [ 53.269511, 36.968154 ], [ 53.469782, 36.992772 ], [ 53.501871, 36.994625 ], [ 53.554874, 37.001654 ], [ 53.665259, 37.011856 ], [ 53.68358, 37.013383 ], [ 53.719679, 37.016299 ], [ 53.736717, 37.017174 ], [ 53.74356, 37.017095 ], [ 53.824739, 37.025185 ], [ 53.851054, 37.02742 ], [ 53.875421, 37.027906 ], [ 53.863773, 37.064491 ], [ 53.845833, 37.112413 ], [ 53.833357, 37.153527 ], [ 53.796321, 37.265697 ], [ 53.794332, 37.271616 ], [ 53.778243, 37.344498 ], [ 53.883644, 37.436923 ], [ 53.897804, 37.340805 ], [ 54.243584, 37.309193 ], [ 54.285721, 37.342888 ], [ 54.358971, 37.344196 ], [ 54.507057, 37.430668 ], [ 54.583027, 37.455444 ], [ 54.653252, 37.430721 ], [ 54.797779, 37.523056 ], [ 54.819111, 37.605389 ], [ 54.784, 37.632694 ], [ 54.823833, 37.725224 ], [ 55.027943, 37.86311 ], [ 55.129333, 37.950974 ], [ 55.186138, 37.958668 ], [ 55.406445, 38.040279 ], [ 55.474194, 38.084332 ], [ 55.813362, 38.111526 ], [ 55.980778, 38.065029 ], [ 56.173195, 38.082527 ], [ 56.211498, 38.061359 ], [ 56.339195, 38.070641 ], [ 56.327221, 38.16489 ], [ 56.417057, 38.24036 ], [ 56.567665, 38.254028 ], [ 56.604084, 38.223415 ], [ 56.754665, 38.272583 ], [ 56.856083, 38.211529 ], [ 57.089359, 38.180946 ], [ 57.1605, 38.256527 ], [ 57.24511, 38.261696 ], [ 57.295471, 38.198776 ], [ 57.293694, 38.150249 ], [ 57.380585, 38.072945 ], [ 57.359138, 37.974445 ], [ 57.524971, 37.91486 ], [ 57.589249, 37.924641 ], [ 57.787193, 37.893082 ], [ 57.834415, 37.860527 ], [ 57.956001, 37.842415 ], [ 58.049362, 37.795307 ], [ 58.211887, 37.760113 ], [ 58.237335, 37.673473 ], [ 58.459835, 37.625057 ], [ 58.577221, 37.692749 ], [ 58.620499, 37.655472 ], [ 58.742249, 37.62989 ], [ 58.851387, 37.680279 ], [ 58.89336, 37.650276 ], [ 59.047611, 37.612751 ], [ 59.186417, 37.531471 ], [ 59.276279, 37.497307 ], [ 59.347832, 37.515446 ], [ 59.403111, 37.426029 ], [ 59.373501, 37.398418 ], [ 59.402, 37.306252 ], [ 59.551998, 37.166248 ], [ 59.553833, 37.122528 ], [ 59.651165, 37.109222 ], [ 59.699554, 37.128193 ], [ 59.833057, 37.092083 ], [ 59.938751, 37.027779 ], [ 60.004417, 37.039665 ], [ 60.084332, 36.978527 ], [ 60.17675, 36.842415 ], [ 60.270527, 36.751305 ], [ 60.370667, 36.624249 ], [ 60.634777, 36.627556 ], [ 61.140251, 36.662056 ], [ 61.190971, 36.567722 ], [ 61.172359, 36.498665 ], [ 61.17025, 36.340332 ], [ 61.229221, 36.17239 ], [ 61.226471, 36.120083 ], [ 61.159279, 35.989613 ], [ 61.234001, 35.915501 ], [ 61.259972, 35.812916 ], [ 61.222889, 35.660362 ], [ 61.276638, 35.613167 ], [ 61.271641, 35.521721 ], [ 61.233944, 35.429668 ], [ 61.173416, 35.349304 ], [ 61.190887, 35.28997 ], [ 61.107613, 35.281139 ], [ 61.090668, 35.171696 ], [ 61.144611, 35.130138 ], [ 61.118832, 35.014389 ], [ 61.075249, 34.932529 ], [ 61.07711, 34.839027 ], [ 61.002419, 34.704334 ], [ 60.997971, 34.632694 ], [ 60.920444, 34.619526 ], [ 60.900471, 34.571777 ], [ 60.745693, 34.522972 ], [ 60.854305, 34.409557 ], [ 60.866859, 34.30661 ], [ 60.694221, 34.311165 ], [ 60.590946, 34.212723 ], [ 60.562389, 34.152248 ], [ 60.482582, 34.062195 ], [ 60.567307, 33.817307 ], [ 60.549583, 33.730221 ], [ 60.643223, 33.56461 ], [ 60.716251, 33.528557 ], [ 60.901138, 33.536915 ], [ 60.863167, 33.485943 ], [ 60.869999, 33.424667 ], [ 60.62764, 33.223915 ], [ 60.586113, 33.143112 ], [ 60.647915, 32.961304 ], [ 60.718277, 32.688778 ], [ 60.819, 32.479252 ], [ 60.877251, 32.198833 ], [ 60.834278, 32.054165 ], [ 60.823555, 31.88925 ], [ 60.83836, 31.736389 ], [ 60.829834, 31.666471 ], [ 60.856888, 31.491667 ], [ 61.682999, 31.384556 ], [ 61.756443, 31.332611 ], [ 61.778946, 31.231556 ], [ 61.815334, 31.170305 ], [ 61.845695, 31.040833 ], [ 61.832638, 30.973639 ], [ 61.78661, 30.927195 ], [ 61.803528, 30.84086 ], [ 61.766499, 30.796972 ], [ 61.293999, 30.307028 ], [ 60.878613, 29.861778 ], [ 61.192585, 29.502501 ], [ 61.371387, 29.349611 ], [ 61.35775, 29.282778 ], [ 61.428665, 29.193777 ], [ 61.503166, 29.056417 ], [ 61.504307, 29.007555 ], [ 61.681026, 28.770584 ], [ 61.804165, 28.640167 ], [ 61.957584, 28.548695 ], [ 62.115776, 28.485111 ], [ 62.296276, 28.463444 ], [ 62.439667, 28.407139 ], [ 62.592304, 28.255138 ], [ 62.786945, 28.281195 ], [ 62.796585, 28.208944 ], [ 62.768223, 28.032417 ], [ 62.790054, 27.978111 ], [ 62.819805, 27.805 ], [ 62.855389, 27.465139 ], [ 62.807388, 27.340084 ], [ 62.821362, 27.212334 ], [ 62.977249, 27.19511 ], [ 63.05864, 27.233194 ], [ 63.184223, 27.241444 ], [ 63.299252, 27.178917 ], [ 63.317471, 27.138666 ], [ 63.255917, 27.082945 ], [ 63.256695, 26.928667 ], [ 63.275528, 26.864779 ], [ 63.192139, 26.8435 ], [ 63.199722, 26.737972 ], [ 63.169193, 26.647306 ], [ 63.051445, 26.637583 ], [ 63.001915, 26.651945 ], [ 62.778694, 26.652277 ], [ 62.608139, 26.584999 ], [ 62.434528, 26.568138 ], [ 62.315056, 26.528862 ], [ 62.26461, 26.432083 ], [ 62.282501, 26.35836 ], [ 62.128082, 26.380362 ], [ 62.12114, 26.31675 ], [ 62.061138, 26.315416 ], [ 61.87075, 26.24675 ], [ 61.833027, 26.171112 ], [ 61.768833, 25.801777 ], [ 61.689194, 25.799166 ], [ 61.655613, 25.297501 ], [ 61.610443, 25.194944 ], [ 61.584851, 25.063832 ], [ 61.470082, 24.957687 ], [ 61.405818, 24.944404 ], [ 61.121978, 25.021113 ], [ 61.070227, 25.074838 ], [ 60.711804, 25.154929 ], [ 60.577962, 25.171562 ], [ 60.530146, 25.196982 ], [ 60.443789, 25.173311 ], [ 60.262836, 25.227929 ], [ 60.17203, 25.211305 ], [ 60.029628, 25.263819 ], [ 59.928963, 25.230989 ], [ 59.843095, 25.233128 ], [ 59.763333, 25.288229 ], [ 59.573206, 25.275178 ], [ 59.471317, 25.315664 ], [ 59.429876, 25.35399 ], [ 59.232136, 25.324816 ], [ 59.07545, 25.286459 ], [ 58.938186, 25.321694 ], [ 58.841371, 25.418446 ], [ 58.752623, 25.455483 ], [ 58.675232, 25.44955 ], [ 58.541226, 25.481431 ], [ 58.393181, 25.479791 ], [ 58.133123, 25.435166 ], [ 57.973301, 25.493824 ], [ 57.896964, 25.57352 ], [ 57.794881, 25.524665 ], [ 57.720154, 25.525618 ], [ 57.660482, 25.570611 ], [ 57.639771, 25.627314 ], [ 57.463733, 25.630869 ], [ 57.241701, 25.685799 ], [ 57.185697, 25.754584 ], [ 57.16269, 25.877039 ], [ 57.087326, 25.956556 ], [ 57.065797, 26.023885 ], [ 57.07227, 26.13947 ], [ 56.964278, 26.272832 ], [ 56.930097, 26.427872 ], [ 56.957938, 26.55083 ], [ 56.942827, 26.657598 ], [ 56.900017, 26.772307 ], [ 56.802754, 26.908502 ], [ 56.703533, 27.026092 ], [ 56.60952, 27.026396 ], [ 56.566648, 26.951027 ], [ 56.514909, 26.923219 ], [ 56.518239, 26.837238 ], [ 56.461463, 26.755148 ], [ 56.388295, 26.714895 ], [ 56.264508, 26.717833 ], [ 56.216435, 26.759609 ], [ 56.149868, 26.695077 ], [ 56.057539, 26.639051 ], [ 55.976036, 26.544525 ], [ 55.901395, 26.503653 ], [ 55.798755, 26.508126 ], [ 55.7177, 26.568925 ], [ 55.499636, 26.474289 ], [ 55.335578, 26.430244 ], [ 55.243774, 26.42891 ], [ 55.175421, 26.482805 ], [ 55.147907, 26.572263 ], [ 55.02563, 26.514349 ], [ 54.885811, 26.407772 ], [ 54.788129, 26.379006 ], [ 54.7131, 26.395923 ], [ 54.634116, 26.384679 ], [ 54.499184, 26.452145 ], [ 54.3604, 26.481719 ], [ 54.315213, 26.50695 ], [ 54.24562, 26.597697 ], [ 54.136965, 26.594734 ], [ 54.162165, 26.535918 ], [ 54.146896, 26.453959 ], [ 54.100447, 26.402107 ], [ 54.00139, 26.378191 ], [ 53.840828, 26.424058 ], [ 53.787483, 26.491453 ], [ 53.779139, 26.599251 ], [ 53.69165, 26.550467 ], [ 53.610317, 26.541733 ], [ 53.496234, 26.605505 ], [ 53.435216, 26.673843 ], [ 53.246267, 26.6736 ], [ 53.139678, 26.70374 ], [ 53.054824, 26.769094 ], [ 53.038292, 26.892381 ], [ 53.078343, 26.975218 ], [ 52.917805, 27.024149 ], [ 52.760733, 27.10515 ], [ 52.625868, 27.193445 ], [ 52.5, 27.291387 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "+9.5" }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 137.995887, -16.385755 ], [ 137.998886, -26.002361 ], [ 141.003586, -26.00264 ], [ 140.967055, -38.182957 ], [ 140.629234, -38.180767 ], [ 140.296603, -37.993781 ], [ 140.033193, -37.676986 ], [ 139.636638, -37.248778 ], [ 139.592908, -36.85844 ], [ 139.689869, -36.559607 ], [ 139.366419, -36.055707 ], [ 138.774946, -35.760228 ], [ 138.268901, -36.165064 ], [ 136.548347, -36.425316 ], [ 136.027843, -35.601185 ], [ 134.697667, -34.834888 ], [ 134.061496, -34.039674 ], [ 133.19174, -32.672731 ], [ 132.726982, -32.072997 ], [ 132.223707, -32.217808 ], [ 132.058779, -32.194021 ], [ 131.88009, -31.936484 ], [ 131.203367, -31.609917 ], [ 130.875472, -31.719067 ], [ 130.517211, -31.718814 ], [ 129.59034, -31.741874 ], [ 128.988527, -31.818189 ], [ 128.988572471481348, -31.727365028974088 ], [ 128.997077, -14.740563 ], [ 129.249241, -14.474998 ], [ 129.243614, -14.34611 ], [ 129.372651, -13.987241 ], [ 129.600395, -13.824725 ], [ 129.710712, -13.436848 ], [ 129.889846, -13.130504 ], [ 130.364979, -12.407155 ], [ 130.542523, -12.290541 ], [ 130.849721, -12.21537 ], [ 130.841255, -12.001087 ], [ 130.602875, -11.955387 ], [ 130.058667, -11.946788 ], [ 129.921036, -11.868764 ], [ 129.957753, -11.628227 ], [ 130.217088, -11.027043 ], [ 130.332079, -10.973151 ], [ 130.607632, -11.161018 ], [ 131.190742, -11.088379 ], [ 131.795323, -11.083988 ], [ 132.498732, -10.877232 ], [ 133.105456, -10.804078 ], [ 133.297755, -11.414195 ], [ 133.475304, -11.344208 ], [ 133.66888, -11.655243 ], [ 133.936524, -11.623746 ], [ 134.446676, -11.951271 ], [ 134.602566, -11.880997 ], [ 134.834768, -11.862148 ], [ 135.143233, -11.568421 ], [ 135.612822, -11.832326 ], [ 136.636001, -10.79774 ], [ 136.867423, -10.950233 ], [ 137.074484, -12.278738 ], [ 137.054664, -13.561735 ], [ 137.076834, -14.149112 ], [ 137.030194, -14.427589 ], [ 136.437113, -14.351294 ], [ 135.874801, -14.334753 ], [ 135.714626, -14.581041 ], [ 135.87688, -15.013713 ], [ 136.292835, -15.313681 ], [ 136.590658, -15.393439 ], [ 136.902558, -15.389956 ], [ 137.094909, -15.503908 ], [ 137.210927, -15.719124 ], [ 137.211897, -15.866851 ], [ 137.516192, -16.041832 ], [ 137.814364, -16.148807 ], [ 137.887932, -16.251336 ], [ 137.995887, -16.385755 ] ] ] } }, +{ "type": "Feature", "properties": { "name": "+9" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 126.404419, 37.877609 ], [ 126.410858, 37.872639 ], [ 126.423027, 37.851665 ], [ 126.433334, 37.849583 ], [ 126.46228, 37.836666 ], [ 126.471863, 37.816029 ], [ 126.566528, 37.780251 ], [ 126.574448, 37.769501 ], [ 126.595833, 37.770054 ], [ 126.601028, 37.776554 ], [ 126.689247, 37.858944 ], [ 126.682861, 37.945332 ], [ 126.783997, 37.967945 ], [ 126.89225, 38.099194 ], [ 126.966888, 38.138943 ], [ 126.9645, 38.180527 ], [ 127.016586, 38.237415 ], [ 127.132332, 38.304943 ], [ 127.238747, 38.327278 ], [ 127.325584, 38.313915 ], [ 127.390526, 38.331944 ], [ 127.498917, 38.297806 ], [ 127.586082, 38.333111 ], [ 127.681862, 38.318974 ], [ 127.797165, 38.33614 ], [ 127.833473, 38.300415 ], [ 127.898247, 38.328529 ], [ 128.046951, 38.305 ], [ 128.137726, 38.328304 ], [ 128.2892, 38.434418 ], [ 128.336411, 38.599693 ], [ 128.361694, 38.601139 ], [ 128.478916, 38.651522 ], [ 128.446066, 38.758195 ], [ 128.354566, 38.838512 ], [ 128.239326, 38.866462 ], [ 128.181887, 38.91904 ], [ 128.215234, 39.025373 ], [ 128.183461, 39.089216 ], [ 128.069463, 39.127121 ], [ 127.970116, 39.059044 ], [ 127.926117, 39.085205 ], [ 127.821669, 39.219557 ], [ 127.748766, 39.247789 ], [ 127.6812, 39.337471 ], [ 127.638373, 39.471068 ], [ 127.677852, 39.516179 ], [ 127.694178, 39.603072 ], [ 127.669626, 39.675187 ], [ 127.757002, 39.725165 ], [ 127.921743, 39.770243 ], [ 127.97852, 39.813053 ], [ 128.000779, 39.881776 ], [ 128.068498, 39.911299 ], [ 128.155818, 39.859941 ], [ 128.270357, 39.877638 ], [ 128.37224, 39.915192 ], [ 128.437018, 39.981221 ], [ 128.484962, 39.989154 ], [ 128.613874, 40.058855 ], [ 128.709478, 40.080187 ], [ 128.762819, 40.127865 ], [ 128.786272, 40.225474 ], [ 128.90886, 40.26405 ], [ 129.025729, 40.346901 ], [ 129.1301, 40.366433 ], [ 129.234675, 40.458632 ], [ 129.291811, 40.557078 ], [ 129.353172, 40.567259 ], [ 129.419898, 40.638253 ], [ 129.539681, 40.672225 ], [ 129.623914, 40.715005 ], [ 129.718094, 40.708137 ], [ 129.762719, 40.719898 ], [ 129.811615, 40.758246 ], [ 129.830005, 40.782755 ], [ 129.883947, 40.921721 ], [ 129.883198, 40.959675 ], [ 129.846057, 41.035656 ], [ 129.863693, 41.097769 ], [ 129.845949, 41.157416 ], [ 129.920979, 41.330378 ], [ 129.924793, 41.407579 ], [ 129.86533, 41.482418 ], [ 129.776795, 41.526149 ], [ 129.852029, 41.640262 ], [ 129.957301, 41.70565 ], [ 129.993838, 41.779037 ], [ 130.050986, 41.821318 ], [ 130.149155, 41.947545 ], [ 130.2596, 41.98901 ], [ 130.352617, 42.048375 ], [ 130.496499, 42.180325 ], [ 130.645035, 42.348305 ], [ 130.660034, 42.367554 ], [ 136.738117, 42.347848 ], [ 140.972433, 45.790915 ], [ 145.730473, 45.408959 ], [ 145.344668, 43.636064 ], [ 146.518208, 43.779985 ], [ 147.573467, 41.922932 ], [ 142.5, 38.736064 ], [ 142.5, 20.73 ], [ 136.5, 20.73 ], [ 136.5, 5.93 ], [ 142.5, 5.93 ], [ 142.5, -1.408224 ], [ 140.991651, -2.481672 ], [ 140.998993, -2.60875 ], [ 140.999329, -4.627222 ], [ 141.000748, -6.299417 ], [ 140.978912, -6.384778 ], [ 140.916245, -6.429306 ], [ 140.956894, -6.477778 ], [ 140.930313, -6.557556 ], [ 140.874588, -6.623194 ], [ 140.853638, -6.723778 ], [ 140.910965, -6.863417 ], [ 140.989441, -6.89975 ], [ 140.998245, -6.894055 ], [ 141.003311, -6.890778 ], [ 141.0103, -6.890666 ], [ 141.018951, -6.893167 ], [ 141.021698, -7.031722 ], [ 141.021606, -7.340861 ], [ 141.021606, -7.419417 ], [ 141.020859, -8.991639 ], [ 141.022145, -9.297989 ], [ 141.070265, -9.339002 ], [ 141.146124, -9.354576 ], [ 141.190033, -9.358446 ], [ 141.226022, -9.351287 ], [ 141.268244, -9.333747 ], [ 141.297518, -9.3174 ], [ 141.3207, -9.306751 ], [ 141.339263, -9.294746 ], [ 141.36596, -9.273683 ], [ 141.383691, -9.258772 ], [ 141.397604, -9.256395 ], [ 141.419191, -9.261751 ], [ 141.426209, -9.270967 ], [ 141.450276, -9.294703 ], [ 141.485562, -9.312842 ], [ 141.52102, -9.320146 ], [ 141.561614, -9.321913 ], [ 141.576352, -9.321578 ], [ 141.592415, -9.327551 ], [ 141.631562, -9.333163 ], [ 141.646033, -9.332831 ], [ 141.68218, -9.327648 ], [ 141.721626, -9.317339 ], [ 141.785156, -9.30503 ], [ 141.815657, -9.313908 ], [ 141.853735, -9.31986 ], [ 141.876699, -9.322895 ], [ 141.905996, -9.322743 ], [ 141.935002, -9.319489 ], [ 141.996228, -9.32533 ], [ 142.013973, -9.321542 ], [ 142.02687, -9.324305 ], [ 142.047885, -9.354294 ], [ 142.048538, -9.943827 ], [ 141.975307, -10.081331 ], [ 141.984675, -10.184912 ], [ 142.019959, -10.239616 ], [ 141.959536, -10.277957 ], [ 141.931682, -10.343873 ], [ 141.941856, -10.410438 ], [ 141.988594, -10.464406 ], [ 142.066213, -10.485331 ], [ 142.000406, -10.628677 ], [ 142.009465, -10.780367 ], [ 142.068572, -10.853851 ], [ 141.982809, -10.951186 ], [ 141.987049, -11.031022 ], [ 142.028706, -11.08856 ], [ 142.006371, -11.187432 ], [ 142.001206, -11.345138 ], [ 141.944362, -11.500476 ], [ 141.889857, -11.695424 ], [ 141.835098, -11.846688 ], [ 141.715484, -11.97545 ], [ 141.638288, -12.142642 ], [ 141.60748, -12.182199 ], [ 141.562166, -12.324851 ], [ 141.477774, -12.522108 ], [ 141.476169, -12.591426 ], [ 141.529266, -12.667326 ], [ 141.601515, -12.699457 ], [ 141.68059, -12.692106 ], [ 141.654636, -12.76494 ], [ 141.54943, -12.828264 ], [ 141.498082, -12.895042 ], [ 141.466774, -12.980355 ], [ 141.519259, -13.205722 ], [ 141.558365, -13.266925 ], [ 141.494008, -13.390556 ], [ 141.447871, -13.438338 ], [ 141.390708, -13.61057 ], [ 141.355884, -13.805875 ], [ 141.348411, -13.92853 ], [ 141.385989, -14.027621 ], [ 141.478971, -14.130268 ], [ 141.482789, -14.222159 ], [ 141.431594, -14.359651 ], [ 141.408922, -14.45966 ], [ 141.435494, -14.606824 ], [ 141.450521, -14.767433 ], [ 141.481187, -14.901567 ], [ 141.537113, -15.022045 ], [ 141.513116, -15.101102 ], [ 141.459307, -15.185816 ], [ 141.46015, -15.237722 ], [ 141.355407, -15.493937 ], [ 141.320714, -15.62531 ], [ 141.295583, -15.825733 ], [ 141.255582, -15.935259 ], [ 141.30048, -16.076628 ], [ 141.258584, -16.143471 ], [ 141.215885, -16.295355 ], [ 141.172281, -16.395732 ], [ 141.180631, -16.45808 ], [ 141.127291, -16.53469 ], [ 141.105539, -16.621701 ], [ 140.986363, -16.73554 ], [ 140.963477, -16.80889 ], [ 140.85727, -16.935123 ], [ 140.807921, -17.062108 ], [ 140.827377, -17.12595 ], [ 140.798063, -17.193455 ], [ 140.773232, -17.326136 ], [ 140.474142, -17.524783 ], [ 140.352158, -17.564628 ], [ 140.052636, -17.601821 ], [ 140.015612, -17.541556 ], [ 139.86508, -17.461617 ], [ 139.698602, -17.426659 ], [ 139.543356, -17.298376 ], [ 139.694232, -17.227631 ], [ 139.751997, -17.118857 ], [ 139.757815, -17.049997 ], [ 139.72354, -16.983935 ], [ 139.635796, -16.941859 ], [ 139.548379, -16.869506 ], [ 139.433569, -16.876263 ], [ 139.382132, -16.940626 ], [ 139.304792, -16.857866 ], [ 139.401864, -16.817337 ], [ 139.499895, -16.823055 ], [ 139.569374, -16.77111 ], [ 139.604177, -16.6783 ], [ 139.7226, -16.652406 ], [ 139.705989, -16.713614 ], [ 139.727651, -16.780489 ], [ 139.783052, -16.823756 ], [ 139.857364, -16.829965 ], [ 139.92361, -16.795967 ], [ 140.008782, -16.682223 ], [ 139.982431, -16.582277 ], [ 139.921872, -16.544152 ], [ 139.931311, -16.465838 ], [ 139.889332, -16.398135 ], [ 139.783521, -16.344751 ], [ 139.709175, -16.33422 ], [ 139.655338, -16.293284 ], [ 139.574499, -16.273039 ], [ 139.491805, -16.287125 ], [ 139.431176, -16.327529 ], [ 139.359532, -16.211251 ], [ 139.2968, -16.191623 ], [ 139.229895, -16.209181 ], [ 139.183777, -16.259336 ], [ 139.171083, -16.337014 ], [ 139.196017, -16.396893 ], [ 139.158622, -16.42409 ], [ 139.054245, -16.559409 ], [ 139.014804, -16.729124 ], [ 138.986827, -16.768012 ], [ 138.887845, -16.756112 ], [ 138.638477, -16.651121 ], [ 138.529994, -16.665343 ], [ 138.335669, -16.622736 ], [ 138.187343, -16.552068 ], [ 137.996656, -16.386476 ], [ 137.995887, -16.385755 ], [ 137.887932, -16.251336 ], [ 137.814364, -16.148807 ], [ 137.516192, -16.041832 ], [ 137.211897, -15.866851 ], [ 137.210927, -15.719124 ], [ 137.094909, -15.503908 ], [ 136.902558, -15.389956 ], [ 136.590658, -15.393439 ], [ 136.292835, -15.313681 ], [ 135.87688, -15.013713 ], [ 135.714626, -14.581041 ], [ 135.874801, -14.334753 ], [ 136.437113, -14.351294 ], [ 137.030194, -14.427589 ], [ 137.076834, -14.149112 ], [ 137.054664, -13.561735 ], [ 137.074484, -12.278738 ], [ 136.867423, -10.950233 ], [ 136.636001, -10.79774 ], [ 135.612822, -11.832326 ], [ 135.143233, -11.568421 ], [ 134.834768, -11.862148 ], [ 134.602566, -11.880997 ], [ 134.446676, -11.951271 ], [ 133.936524, -11.623746 ], [ 133.66888, -11.655243 ], [ 133.475304, -11.344208 ], [ 133.297755, -11.414195 ], [ 133.105456, -10.804078 ], [ 132.498732, -10.877232 ], [ 131.795323, -11.083988 ], [ 131.190742, -11.088379 ], [ 130.607632, -11.161018 ], [ 130.332079, -10.973151 ], [ 130.217088, -11.027043 ], [ 129.957753, -11.628227 ], [ 129.921036, -11.868764 ], [ 130.058667, -11.946788 ], [ 130.602875, -11.955387 ], [ 130.841255, -12.001087 ], [ 130.849721, -12.21537 ], [ 130.542523, -12.290541 ], [ 130.364979, -12.407155 ], [ 129.889846, -13.130504 ], [ 129.710712, -13.436848 ], [ 129.600395, -13.824725 ], [ 129.372651, -13.987241 ], [ 129.243614, -14.34611 ], [ 129.249241, -14.474998 ], [ 128.997077, -14.740563 ], [ 128.86827, -14.725139 ], [ 128.84175, -14.722609 ], [ 128.728072, -14.676161 ], [ 128.533402, -14.642695 ], [ 128.443157, -14.67017 ], [ 128.425042, -14.672714 ], [ 128.378907, -14.632265 ], [ 128.221347, -14.583032 ], [ 128.0489, -14.457727 ], [ 127.991795, -14.400453 ], [ 127.918083, -14.290017 ], [ 127.868322, -14.247587 ], [ 127.814937, -14.159074 ], [ 127.724225, -14.069543 ], [ 127.615608, -13.99844 ], [ 127.5, -13.852976 ], [ 127.5, -10.926096 ], [ 125.164205, -9.55827 ], [ 125.120392, -9.438945 ], [ 124.971001, -9.274391 ], [ 124.966301, -9.221311 ], [ 125.019699, -9.167853 ], [ 125.139999, -9.150401 ], [ 125.165901, -9.109211 ], [ 125.1399, -9.024118 ], [ 125.0933, -9.011669 ], [ 124.965302, -9.037271 ], [ 124.931503, -8.969778 ], [ 124.911415, -8.978306 ], [ 124.87117, -8.991167 ], [ 124.859108, -8.993028 ], [ 124.837723, -8.998861 ], [ 124.809776, -8.996278 ], [ 124.786972, -9.002528 ], [ 124.776558, -9.01525 ], [ 124.696556, -9.050138 ], [ 124.689392, -9.049778 ], [ 124.643501, -9.12675 ], [ 124.628914, -9.126917 ], [ 124.600136, -9.154944 ], [ 124.57692, -9.159333 ], [ 124.544556, -9.180139 ], [ 124.530586, -9.175222 ], [ 124.525169, -9.176778 ], [ 124.515251, -9.186944 ], [ 124.494698, -9.184 ], [ 124.481636, -9.183722 ], [ 124.463577, -9.178817 ], [ 124.449303, -9.282654 ], [ 124.340401, -9.46166 ], [ 124.293404, -9.463627 ], [ 124.249397, -9.404364 ], [ 124.118797, -9.432285 ], [ 124.066597, -9.401597 ], [ 124.037697, -9.225813 ], [ 125.197419, -8.49661 ], [ 125.256156, -8.459677 ], [ 125.17937, -8.083568 ], [ 123.881809, -1.727936 ], [ 127.5, 3.797013 ], [ 127.5, 23.0 ], [ 122.6, 23.0 ], [ 122.6, 24.763042 ], [ 124.158606, 26.456676 ], [ 124.158606, 34.707463 ], [ 124.132185, 39.699269 ], [ 124.254862, 39.666921 ], [ 124.330796, 39.712128 ], [ 124.400143, 39.680353 ], [ 124.484595, 39.580906 ], [ 124.470294, 39.410965 ], [ 124.53058, 39.323569 ], [ 124.646311, 39.309974 ], [ 124.703786, 39.283977 ], [ 124.788918, 39.30282 ], [ 124.873273, 39.370802 ], [ 125.027299, 39.461873 ], [ 125.133744, 39.394733 ], [ 125.232018, 39.394942 ], [ 125.274107, 39.312432 ], [ 125.21411, 39.253329 ], [ 125.14072, 39.104686 ], [ 125.081879, 39.042771 ], [ 125.067108, 38.984261 ], [ 125.006964, 38.889177 ], [ 125.018677, 38.784983 ], [ 124.945583, 38.779521 ], [ 124.889875, 38.73446 ], [ 124.867923, 38.665429 ], [ 124.802049, 38.675744 ], [ 124.703498, 38.626549 ], [ 124.650381, 38.521594 ], [ 124.695545, 38.418118 ], [ 124.750092, 38.392533 ], [ 124.744669, 38.295303 ], [ 124.685697, 38.25721 ], [ 124.596412, 38.23934 ], [ 124.540495, 38.170723 ], [ 124.538472, 38.069402 ], [ 124.494381, 38.007807 ], [ 124.494563, 37.925622 ], [ 124.54645, 37.837914 ], [ 124.561771, 37.757073 ], [ 124.658481, 37.650079 ], [ 124.763653, 37.63712 ], [ 124.832187, 37.663785 ], [ 124.899464, 37.721936 ], [ 124.968698, 37.680429 ], [ 124.982879, 37.618696 ], [ 125.040911, 37.56422 ], [ 125.115858, 37.556873 ], [ 125.164454, 37.580635 ], [ 125.350085, 37.553647 ], [ 125.447008, 37.603175 ], [ 125.562824, 37.617105 ], [ 125.611184, 37.524519 ], [ 125.669603, 37.483625 ], [ 125.752907, 37.481931 ], [ 125.813846, 37.521876 ], [ 125.83197, 37.64381 ], [ 125.979938, 37.671367 ], [ 126.018282, 37.634485 ], [ 126.404419, 37.877609 ] ] ], [ [ [ 140.967055, -38.182957 ], [ 141.088712, -38.234401 ], [ 141.252881, -38.344957 ], [ 141.256291, -38.420993 ], [ 141.306477, -38.484477 ], [ 141.397114, -38.518942 ], [ 141.4498, -38.510972 ], [ 141.54962, -38.550407 ], [ 141.712876, -38.494347 ], [ 141.761565, -38.430787 ], [ 141.764994, -38.375826 ], [ 141.87655, -38.390627 ], [ 141.910029, -38.507983 ], [ 141.968606, -38.540891 ], [ 142.03569, -38.537155 ], [ 142.09189, -38.500242 ], [ 142.23999, -38.520476 ], [ 142.358612, -38.475022 ], [ 142.5, -38.527018 ], [ 142.5, -90.0 ], [ 127.5, -90.0 ], [ 127.5, -32.341179 ], [ 127.562126, -32.330845 ], [ 127.679795, -32.275122 ], [ 127.691275, -32.272121 ], [ 127.710115, -32.268374 ], [ 127.724169, -32.264271 ], [ 127.739836, -32.258484 ], [ 127.745907, -32.257441 ], [ 127.798887, -32.245889 ], [ 127.805505, -32.243797 ], [ 127.840512, -32.238631 ], [ 127.861799, -32.234595 ], [ 127.980401, -32.21151 ], [ 127.985977, -32.210567 ], [ 128.001251, -32.206939 ], [ 128.01597, -32.202558 ], [ 128.067038, -32.190398 ], [ 128.078565, -32.186509 ], [ 128.144405, -32.165484 ], [ 128.19147, -32.146811 ], [ 128.210239, -32.142097 ], [ 128.320676, -32.10667 ], [ 128.341537, -32.097806 ], [ 128.539896, -32.02839 ], [ 128.723832, -31.947495 ], [ 128.73564, -31.938263 ], [ 128.770114, -31.917435 ], [ 128.776485, -31.914202 ], [ 128.957365, -31.828823 ], [ 128.964573, -31.826888 ], [ 128.985084, -31.819749 ], [ 128.988527, -31.818189 ], [ 129.59034, -31.741874 ], [ 130.517211, -31.718814 ], [ 130.875472, -31.719067 ], [ 131.203367, -31.609917 ], [ 131.88009, -31.936484 ], [ 132.058779, -32.194021 ], [ 132.223707, -32.217808 ], [ 132.726982, -32.072997 ], [ 133.19174, -32.672731 ], [ 134.061496, -34.039674 ], [ 134.697667, -34.834888 ], [ 136.027843, -35.601185 ], [ 136.548347, -36.425316 ], [ 138.268901, -36.165064 ], [ 138.774946, -35.760228 ], [ 139.366419, -36.055707 ], [ 139.689869, -36.559607 ], [ 139.592908, -36.85844 ], [ 139.636638, -37.248778 ], [ 140.033193, -37.676986 ], [ 140.296603, -37.993781 ], [ 140.629234, -38.180767 ], [ 140.967055, -38.182957 ] ] ], [ [ [ 131.655876, 71.078339 ], [ 131.78189, 71.037339 ], [ 132.145353, 71.001258 ], [ 132.215358, 70.889731 ], [ 132.184217725472735, 70.868934038939969 ], [ 132.032469, 70.767589 ], [ 132.092401, 70.556514 ], [ 132.11574, 70.412448 ], [ 132.577194, 70.369935 ], [ 133.098487, 70.340328 ], [ 133.249307, 70.223843 ], [ 133.102564, 70.112581 ], [ 132.954588, 70.016993 ], [ 133.171909, 69.952721 ], [ 133.159351, 69.836767 ], [ 133.386662, 69.731813 ], [ 133.518039, 69.72694 ], [ 133.508588, 69.649651 ], [ 133.193545, 69.635861 ], [ 133.193464, 69.564987 ], [ 133.0128, 69.530372 ], [ 132.91091, 69.482882 ], [ 132.886797, 69.377373 ], [ 132.539143, 69.257652 ], [ 132.621727, 69.182891 ], [ 132.372307, 69.103578 ], [ 132.246714, 69.034554 ], [ 132.717985, 68.88476 ], [ 133.141182, 68.417573 ], [ 133.104497, 67.959625 ], [ 132.565517, 67.500679 ], [ 131.867842, 67.027176 ], [ 130.407675, 66.612656 ], [ 130.04377, 66.49224 ], [ 130.078261, 66.454039 ], [ 130.071022, 66.347795 ], [ 130.10755, 66.226471 ], [ 130.291406, 66.159256 ], [ 130.453792, 66.087512 ], [ 130.672128, 66.014118 ], [ 130.953574, 65.968773 ], [ 131.227801, 65.799902 ], [ 131.413688, 65.776684 ], [ 131.60505, 65.737027 ], [ 131.607802, 65.627442 ], [ 131.563379, 65.565517 ], [ 131.634517, 65.429069 ], [ 131.815948, 65.366707 ], [ 131.948134, 65.180245 ], [ 132.082449, 65.071059 ], [ 132.131183, 64.952994 ], [ 132.259136, 64.86056 ], [ 132.293155, 64.783971 ], [ 132.223321, 64.679243 ], [ 132.246157, 64.628405 ], [ 132.401259, 64.615757 ], [ 132.697739, 64.578033 ], [ 132.881514, 64.574949 ], [ 133.067769, 64.627422 ], [ 132.881699, 64.825743 ], [ 132.81108, 64.917101 ], [ 132.822234, 65.017358 ], [ 132.867015, 65.095383 ], [ 133.142864, 65.139064 ], [ 133.31975, 65.216887 ], [ 133.596418, 65.188888 ], [ 134.017387, 65.307476 ], [ 134.207725, 65.39023 ], [ 134.347512, 65.379239 ], [ 134.55951, 65.512996 ], [ 134.602659, 65.584138 ], [ 134.726526, 65.639901 ], [ 134.824576, 65.740373 ], [ 134.9539, 65.69918 ], [ 135.160739, 65.706838 ], [ 135.310014, 65.765391 ], [ 135.459905, 65.840257 ], [ 135.644748, 65.811862 ], [ 135.712921, 65.854122 ], [ 135.927855, 65.947505 ], [ 135.966981, 66.027779 ], [ 136.023028, 66.089025 ], [ 136.128501, 66.06027 ], [ 136.305976, 66.121016 ], [ 136.516847, 66.15926 ], [ 137.122313, 66.157402 ], [ 137.41995, 66.10387 ], [ 137.579768, 66.054624 ], [ 137.731061, 66.063455 ], [ 137.897518, 66.019514 ], [ 138.24214, 65.986649 ], [ 138.423948, 65.939393 ], [ 138.676978, 65.917143 ], [ 139.124645, 65.97365 ], [ 139.281962, 65.938621 ], [ 139.612136, 65.823881 ], [ 139.862306, 65.840547 ], [ 140.205788, 65.810599 ], [ 140.051097, 65.731117 ], [ 139.951395, 65.646244 ], [ 140.061631, 65.579294 ], [ 140.43263, 65.524948 ], [ 140.035195, 65.502646 ], [ 139.799931, 65.39275 ], [ 139.609981, 65.255486 ], [ 139.514744, 65.112639 ], [ 139.427325, 64.960067 ], [ 139.565068, 64.829265 ], [ 139.822886, 64.72702 ], [ 140.087181, 64.630473 ], [ 140.371233, 64.537187 ], [ 140.19255, 64.464393 ], [ 140.044306, 64.384238 ], [ 140.248681, 64.31815 ], [ 140.264981, 64.214915 ], [ 140.533866, 64.156539 ], [ 140.619968, 63.97678 ], [ 140.586538, 63.852202 ], [ 140.50491, 63.748819 ], [ 140.635053, 63.690621 ], [ 140.631303, 63.616492 ], [ 140.509372, 63.539808 ], [ 140.316996, 63.538813 ], [ 140.124438, 63.520561 ], [ 139.715639, 63.367111 ], [ 139.567964, 63.164305 ], [ 139.54764, 63.045639 ], [ 139.596374, 62.910486 ], [ 139.727864, 62.794727 ], [ 139.894018, 62.677839 ], [ 140.05099, 62.629401 ], [ 140.148311, 62.546553 ], [ 140.286682, 62.51056 ], [ 140.334137, 62.373604 ], [ 140.303864, 62.286385 ], [ 140.303589, 62.119438 ], [ 140.245514, 62.091103 ], [ 140.257751, 62.033333 ], [ 140.168854, 62.022217 ], [ 140.101074, 61.969711 ], [ 139.989136, 61.975822 ], [ 139.949982, 61.907768 ], [ 139.981903, 61.869438 ], [ 139.924133, 61.803047 ], [ 139.726898, 61.669991 ], [ 139.666077, 61.643883 ], [ 139.646637, 61.563881 ], [ 139.545532, 61.477768 ], [ 139.433533, 61.493179 ], [ 139.247742, 61.432495 ], [ 139.107452, 61.449997 ], [ 139.069122, 61.399994 ], [ 138.921631, 61.316383 ], [ 138.839691, 61.3386 ], [ 138.774994, 61.314156 ], [ 138.732727, 61.344437 ], [ 138.641357, 61.276657 ], [ 138.641083, 61.17749 ], [ 138.552185, 61.138046 ], [ 138.464966, 61.135551 ], [ 138.396942, 61.099434 ], [ 138.295807, 61.11277 ], [ 138.344971, 61.039993 ], [ 138.311096, 60.976097 ], [ 138.228302, 60.969986 ], [ 138.179962, 60.885826 ], [ 138.206085, 60.851387 ], [ 138.361908, 60.724991 ], [ 138.438873, 60.680275 ], [ 138.4086, 60.609718 ], [ 138.33136, 60.594994 ], [ 138.338287, 60.537498 ], [ 138.244965, 60.498878 ], [ 138.327179, 60.40638 ], [ 138.319427, 60.315544 ], [ 138.227753, 60.2761 ], [ 138.199402, 60.231102 ], [ 138.241333, 60.181664 ], [ 138.208313, 60.109161 ], [ 138.244415, 59.98082 ], [ 138.286652, 59.948044 ], [ 138.19693, 59.896942 ], [ 138.207733, 59.74749 ], [ 138.178589, 59.678047 ], [ 138.04303, 59.683601 ], [ 138.012482, 59.792221 ], [ 137.899994, 59.744713 ], [ 137.833038, 59.761383 ], [ 137.596924, 59.737213 ], [ 137.443024, 59.64444 ], [ 137.454956, 59.546944 ], [ 137.352448, 59.553879 ], [ 137.188873, 59.440269 ], [ 137.105804, 59.453323 ], [ 137.048035, 59.425552 ], [ 136.963013, 59.430275 ], [ 136.84079, 59.4011 ], [ 136.771362, 59.353882 ], [ 136.661652, 59.344994 ], [ 136.617462, 59.38221 ], [ 136.539429, 59.374992 ], [ 136.446625, 59.396942 ], [ 136.375793, 59.391663 ], [ 136.321075, 59.430824 ], [ 136.214417, 59.408043 ], [ 136.090515, 59.42083 ], [ 136.005249, 59.48555 ], [ 135.938873, 59.478043 ], [ 135.852173, 59.53138 ], [ 135.75415, 59.530548 ], [ 135.611908, 59.494156 ], [ 135.571075, 59.45166 ], [ 135.421082, 59.387772 ], [ 135.322754, 59.2686 ], [ 135.258331, 59.219986 ], [ 135.268311, 59.179436 ], [ 135.209961, 59.121658 ], [ 135.113281, 59.11055 ], [ 135.072205, 59.137772 ], [ 134.923584, 59.151382 ], [ 134.855804, 59.123878 ], [ 134.748291, 59.151657 ], [ 134.673859, 59.19249 ], [ 134.544434, 59.179993 ], [ 134.525543, 59.144157 ], [ 134.392487, 59.195541 ], [ 134.218292, 59.208603 ], [ 134.104675, 59.247772 ], [ 134.023315, 59.257217 ], [ 133.859955, 59.245544 ], [ 133.807465, 59.224159 ], [ 133.613007, 59.23333 ], [ 133.608582, 59.282494 ], [ 133.538574, 59.29583 ], [ 133.437744, 59.277771 ], [ 133.314148, 59.218597 ], [ 133.19635, 59.196098 ], [ 133.103577, 59.204994 ], [ 132.813873, 59.013329 ], [ 132.810516, 58.875549 ], [ 132.703583, 58.89666 ], [ 132.591644, 58.888603 ], [ 132.549408, 58.812767 ], [ 132.539154, 58.802773 ], [ 132.572479, 58.756386 ], [ 132.484955, 58.611382 ], [ 132.413879, 58.560272 ], [ 132.382721, 58.503609 ], [ 132.12384, 58.483047 ], [ 132.212738, 58.346382 ], [ 132.19635, 58.237213 ], [ 132.108582, 58.251938 ], [ 132.045807, 58.204163 ], [ 132.002472, 58.114998 ], [ 132.11441, 58.077492 ], [ 132.046082, 58.016106 ], [ 131.847473, 58.12249 ], [ 131.748566, 58.13221 ], [ 131.723297, 58.170273 ], [ 131.539429, 58.179436 ], [ 131.460236, 58.163322 ], [ 131.548859, 58.079163 ], [ 131.624115, 58.067497 ], [ 131.609406, 57.995544 ], [ 131.735229, 57.927773 ], [ 131.785797, 57.92749 ], [ 131.821899, 57.8386 ], [ 131.890259, 57.809433 ], [ 132.042206, 57.681938 ], [ 132.043854, 57.643608 ], [ 131.958862, 57.62471 ], [ 131.967743, 57.580551 ], [ 131.832184, 57.588043 ], [ 131.762756, 57.55555 ], [ 131.728027, 57.498604 ], [ 131.594696, 57.438881 ], [ 131.566925, 57.353607 ], [ 131.600525, 57.296387 ], [ 131.502197, 57.283607 ], [ 131.510925, 57.243935 ], [ 131.34552, 57.249435 ], [ 131.25885, 57.30777 ], [ 131.184143, 57.234993 ], [ 131.111084, 57.222488 ], [ 131.210236, 57.13221 ], [ 131.238007, 57.162766 ], [ 131.474976, 57.07972 ], [ 131.443024, 57.033607 ], [ 131.55304, 56.947487 ], [ 131.64859, 56.909157 ], [ 131.654694, 56.876656 ], [ 131.753876, 56.844154 ], [ 131.800537, 56.745544 ], [ 131.721619, 56.673882 ], [ 131.669983, 56.654991 ], [ 131.674408, 56.551102 ], [ 131.646637, 56.468048 ], [ 131.49939, 56.55027 ], [ 131.434967, 56.524437 ], [ 131.39386, 56.467491 ], [ 131.317749, 56.497772 ], [ 131.184143, 56.468323 ], [ 131.085785, 56.3461 ], [ 131.121338, 56.26194 ], [ 131.093018, 56.205551 ], [ 130.981628, 56.14888 ], [ 130.976349, 56.07666 ], [ 130.915253, 55.996941 ], [ 130.927185, 55.943047 ], [ 130.858307, 55.898605 ], [ 130.866364, 55.814995 ], [ 130.919983, 55.770828 ], [ 130.923035, 55.677773 ], [ 131.103302, 55.612495 ], [ 131.180817, 55.643883 ], [ 131.307465, 55.615547 ], [ 131.411652, 55.64138 ], [ 131.573303, 55.609161 ], [ 131.611908, 55.658325 ], [ 131.758331, 55.644997 ], [ 131.816925, 55.61277 ], [ 131.96109, 55.658325 ], [ 132.117462, 55.635269 ], [ 132.224976, 55.70916 ], [ 132.295807, 55.694992 ], [ 132.395264, 55.706383 ], [ 132.542206, 55.678604 ], [ 132.554962, 55.637497 ], [ 132.663025, 55.560822 ], [ 132.642761, 55.490273 ], [ 132.760803, 55.417213 ], [ 132.868439, 55.415504 ], [ 132.91748, 55.359718 ], [ 132.741333, 55.345825 ], [ 132.681366, 55.369438 ], [ 132.657745, 55.322769 ], [ 132.691345, 55.275826 ], [ 132.591064, 55.195541 ], [ 132.398865, 55.2061 ], [ 132.34024, 55.158043 ], [ 132.404968, 55.073051 ], [ 132.264984, 55.039436 ], [ 132.076355, 55.05027 ], [ 131.955231, 54.986938 ], [ 131.98941, 54.897217 ], [ 131.888031, 54.856384 ], [ 131.786926, 54.840828 ], [ 131.767212, 54.794716 ], [ 131.59024, 54.766388 ], [ 131.567474, 54.727211 ], [ 131.38916, 54.719711 ], [ 131.274689, 54.635269 ], [ 131.187469, 54.605553 ], [ 131.224121, 54.551102 ], [ 131.208862, 54.491379 ], [ 131.113281, 54.316101 ], [ 131.05191, 54.281662 ], [ 130.927185, 54.327492 ], [ 130.830811, 54.279716 ], [ 130.727448, 54.258331 ], [ 130.506073, 54.120544 ], [ 130.468018, 53.966934 ], [ 130.39859, 53.940544 ], [ 130.433868, 53.884438 ], [ 130.521912, 53.899719 ], [ 130.568848, 53.876938 ], [ 130.651367, 53.889992 ], [ 130.74469, 53.839989 ], [ 130.822479, 53.839432 ], [ 130.852448, 53.787216 ], [ 130.924988, 53.762772 ], [ 131.009705, 53.811661 ], [ 131.107178, 53.812767 ], [ 131.268585, 53.776657 ], [ 131.320251, 53.783333 ], [ 131.426361, 53.756943 ], [ 131.499695, 53.556381 ], [ 131.46637, 53.514999 ], [ 131.534149, 53.314438 ], [ 131.510529, 53.204437 ], [ 131.784698, 53.244438 ], [ 131.861359, 53.233879 ], [ 131.835785, 53.161659 ], [ 131.897491, 53.124992 ], [ 132.001923, 53.132492 ], [ 132.064972, 53.200546 ], [ 132.391937, 53.248047 ], [ 132.442749, 53.226654 ], [ 132.589691, 53.223602 ], [ 132.647491, 53.260551 ], [ 132.698578, 53.240547 ], [ 132.901367, 53.233879 ], [ 132.928589, 53.282768 ], [ 133.023865, 53.283051 ], [ 133.106354, 53.306381 ], [ 133.152771, 53.288887 ], [ 133.209412, 53.421661 ], [ 133.313599, 53.469986 ], [ 133.395538, 53.474159 ], [ 133.470795, 53.513054 ], [ 133.531921, 53.496101 ], [ 133.564148, 53.54583 ], [ 133.641083, 53.543327 ], [ 133.723022, 53.46666 ], [ 133.803589, 53.489159 ], [ 134.006378, 53.432495 ], [ 134.199707, 53.467766 ], [ 134.223297, 53.520828 ], [ 134.453583, 53.538048 ], [ 134.448303, 53.595543 ], [ 134.546936, 53.621101 ], [ 134.63858, 53.595268 ], [ 134.74939, 53.539719 ], [ 134.747742, 53.481102 ], [ 134.916656, 53.427773 ], [ 134.911652, 53.36805 ], [ 134.828857, 53.383606 ], [ 134.8172, 53.329437 ], [ 134.899719, 53.316101 ], [ 134.96109, 53.262497 ], [ 134.943573, 53.214439 ], [ 134.859955, 53.193878 ], [ 134.798584, 53.060272 ], [ 134.653595, 52.921936 ], [ 134.625793, 52.855553 ], [ 134.664154, 52.714439 ], [ 134.757202, 52.714157 ], [ 134.792206, 52.653046 ], [ 134.646637, 52.568054 ], [ 134.616058, 52.504997 ], [ 134.66275, 52.459717 ], [ 134.620239, 52.416939 ], [ 134.544708, 52.418602 ], [ 134.464691, 52.452217 ], [ 134.313873, 52.458885 ], [ 134.22525, 52.489159 ], [ 134.126068, 52.476654 ], [ 134.002472, 52.540833 ], [ 133.858307, 52.524437 ], [ 133.847473, 52.548882 ], [ 133.647766, 52.575554 ], [ 133.627167, 52.596382 ], [ 133.414429, 52.654434 ], [ 133.359406, 52.685265 ], [ 133.274994, 52.6661 ], [ 133.237457, 52.63221 ], [ 133.236084, 52.560547 ], [ 133.286926, 52.528046 ], [ 133.258881, 52.437767 ], [ 133.323303, 52.412491 ], [ 133.336639, 52.334717 ], [ 133.42276, 52.303879 ], [ 133.436371, 52.263611 ], [ 133.305817, 52.189713 ], [ 133.183594, 52.163048 ], [ 133.058594, 52.172768 ], [ 132.928864, 52.149719 ], [ 132.833862, 52.181381 ], [ 132.777466, 52.12999 ], [ 132.591064, 52.085266 ], [ 132.540802, 52.04277 ], [ 132.519135, 51.951385 ], [ 132.394989, 51.954712 ], [ 132.424683, 51.859436 ], [ 132.281097, 51.790276 ], [ 132.219116, 51.820274 ], [ 132.063873, 51.800827 ], [ 131.971069, 51.736656 ], [ 131.857452, 51.756943 ], [ 131.746613, 51.683327 ], [ 131.595795, 51.666939 ], [ 131.427765, 51.690826 ], [ 131.393585, 51.611938 ], [ 131.412201, 51.539993 ], [ 131.486084, 51.476936 ], [ 131.507477, 51.38221 ], [ 131.489136, 51.34388 ], [ 131.375793, 51.377769 ], [ 131.289429, 51.364441 ], [ 131.169128, 51.24749 ], [ 131.060791, 51.243881 ], [ 131.044434, 51.184433 ], [ 130.93219, 51.028328 ], [ 130.814148, 51.021103 ], [ 130.799408, 50.866104 ], [ 130.679138, 50.724434 ], [ 130.646088, 50.651932 ], [ 130.741058, 50.607773 ], [ 130.796936, 50.651382 ], [ 130.961914, 50.649437 ], [ 131.014709, 50.572769 ], [ 130.949402, 50.504715 ], [ 130.872742, 50.481377 ], [ 130.988403, 50.381027 ], [ 131.026428, 50.415169 ], [ 131.126892, 50.434563 ], [ 131.183319, 50.328049 ], [ 131.304688, 50.369438 ], [ 131.327759, 50.260826 ], [ 131.444702, 50.187492 ], [ 131.370789, 50.08638 ], [ 131.300812, 50.061935 ], [ 131.371063, 49.982491 ], [ 131.483032, 49.944153 ], [ 131.484406, 49.731102 ], [ 131.371063, 49.724991 ], [ 131.356079, 49.687767 ], [ 131.495239, 49.61721 ], [ 131.501099, 49.414154 ], [ 131.397766, 49.248878 ], [ 131.302765, 49.232208 ], [ 131.258026, 49.263329 ], [ 131.16748, 49.247215 ], [ 131.131073, 49.180275 ], [ 131.004974, 49.05027 ], [ 130.974396, 48.964714 ], [ 130.856628, 48.987495 ], [ 130.67746, 48.926941 ], [ 130.626358, 48.877632 ], [ 130.516022, 48.852612 ], [ 130.443253, 48.900307 ], [ 130.257477, 48.861832 ], [ 129.906418, 49.054001 ], [ 129.912552, 49.097111 ], [ 129.841995, 49.119778 ], [ 129.779556, 49.176418 ], [ 129.743835, 49.249111 ], [ 129.667755, 49.290195 ], [ 129.596222, 49.275749 ], [ 129.545395, 49.299721 ], [ 129.520966, 49.411888 ], [ 129.384048, 49.431473 ], [ 129.368744, 49.367085 ], [ 129.317886, 49.354362 ], [ 129.205811, 49.398945 ], [ 129.118134, 49.348721 ], [ 129.048187, 49.372166 ], [ 128.995163, 49.4505 ], [ 128.880554, 49.480499 ], [ 128.77298, 49.470612 ], [ 128.708252, 49.563721 ], [ 128.535477, 49.601833 ], [ 128.392029, 49.58889 ], [ 128.260895, 49.499943 ], [ 128.222977, 49.524582 ], [ 128.065918, 49.542252 ], [ 127.942749, 49.613083 ], [ 127.904831, 49.577583 ], [ 127.802414, 49.591251 ], [ 127.684914, 49.673306 ], [ 127.649719, 49.777779 ], [ 127.578003, 49.783916 ], [ 127.515137, 49.834641 ], [ 127.536247, 49.925861 ], [ 127.492722, 49.975639 ], [ 127.501335, 50.061028 ], [ 127.59433, 50.172916 ], [ 127.571472, 50.242748 ], [ 127.368805, 50.293167 ], [ 127.328667, 50.337334 ], [ 127.361053, 50.403946 ], [ 127.287636, 50.468082 ], [ 127.35936, 50.583279 ], [ 127.279892, 50.687027 ], [ 127.284363, 50.756973 ], [ 127.232803, 50.776943 ], [ 127.111809, 50.933861 ], [ 127.031723, 50.971695 ], [ 126.922859, 51.057999 ], [ 126.897919, 51.188362 ], [ 126.979858, 51.307777 ], [ 126.892113, 51.319473 ], [ 126.902885, 51.243637 ], [ 126.81942, 51.282112 ], [ 126.818611, 51.322193 ], [ 126.895973, 51.33503 ], [ 126.886833, 51.403362 ], [ 126.783836, 51.440361 ], [ 126.832779, 51.526554 ], [ 126.694, 51.575668 ], [ 126.734612, 51.632805 ], [ 126.713364, 51.720695 ], [ 126.680252, 51.72261 ], [ 126.469193, 51.935307 ], [ 126.452637, 52.028252 ], [ 126.506302, 52.029026 ], [ 126.549973, 52.130165 ], [ 126.435524, 52.175777 ], [ 126.333054, 52.188446 ], [ 126.302666, 52.223278 ], [ 126.339195, 52.299362 ], [ 126.343697, 52.395943 ], [ 126.258469, 52.468918 ], [ 126.202003, 52.462387 ], [ 126.183914, 52.541695 ], [ 126.069832, 52.60014 ], [ 126.005722, 52.580971 ], [ 125.970413, 52.656776 ], [ 126.049751, 52.668335 ], [ 126.058861, 52.794693 ], [ 125.967697, 52.760834 ], [ 125.849113, 52.860168 ], [ 125.774529, 52.89489 ], [ 125.672638, 52.856918 ], [ 125.662666, 52.915943 ], [ 125.722389, 52.934113 ], [ 125.736359, 52.984501 ], [ 125.669197, 53.007473 ], [ 125.579666, 53.080723 ], [ 125.508362, 53.046417 ], [ 125.482056, 53.090305 ], [ 125.188225, 53.191582 ], [ 124.981972, 53.19286 ], [ 124.833054, 53.132694 ], [ 124.748337, 53.138638 ], [ 124.663025, 53.199196 ], [ 124.530334, 53.194889 ], [ 124.375504, 53.246193 ], [ 124.319641, 53.318359 ], [ 124.224808, 53.367695 ], [ 124.220886, 53.368111 ], [ 124.114998, 53.343693 ], [ 124.062531, 53.391724 ], [ 123.856613, 53.485474 ], [ 123.718529, 53.49736 ], [ 123.521805, 53.553165 ], [ 123.442307, 53.530304 ], [ 123.257004, 53.56086 ], [ 123.150307, 53.508141 ], [ 123.049698, 53.51125 ], [ 122.833557, 53.452915 ], [ 122.642525, 53.462612 ], [ 122.442108, 53.441833 ], [ 122.305389, 53.495918 ], [ 122.214638, 53.46125 ], [ 122.132057, 53.465416 ], [ 122.076057, 53.421139 ], [ 122.025726, 53.420399 ], [ 122.021103, 53.523605 ], [ 121.943863, 53.604713 ], [ 121.974426, 53.702217 ], [ 121.9272, 53.716934 ], [ 121.930542, 53.821106 ], [ 121.824158, 53.932213 ], [ 121.678864, 53.998329 ], [ 121.630539, 54.084991 ], [ 121.66832, 54.134163 ], [ 121.756653, 54.141106 ], [ 121.729156, 54.222763 ], [ 121.754173, 54.282211 ], [ 121.669983, 54.369987 ], [ 121.730553, 54.426384 ], [ 121.812187, 54.438881 ], [ 121.876083, 54.419441 ], [ 121.896103, 54.369438 ], [ 122.124687, 54.407211 ], [ 122.13472, 54.466385 ], [ 122.013321, 54.508888 ], [ 121.922211, 54.572495 ], [ 121.940811, 54.616936 ], [ 121.879433, 54.657211 ], [ 121.925537, 54.70916 ], [ 121.90387, 54.798882 ], [ 121.739433, 54.759995 ], [ 121.68692, 54.720543 ], [ 121.651657, 54.760551 ], [ 121.665268, 54.821938 ], [ 121.777206, 54.881378 ], [ 121.948318, 54.994156 ], [ 121.946091, 55.20694 ], [ 121.98082, 55.48777 ], [ 121.93692, 55.504997 ], [ 121.897217, 55.608047 ], [ 121.766098, 55.61805 ], [ 121.684708, 55.598602 ], [ 121.634987, 55.534164 ], [ 121.556091, 55.505272 ], [ 121.460541, 55.503883 ], [ 121.420822, 55.48082 ], [ 121.335274, 55.509995 ], [ 121.359993, 55.592216 ], [ 121.300262, 55.732208 ], [ 121.355263, 55.81221 ], [ 121.27388, 55.866661 ], [ 121.263611, 55.965271 ], [ 121.205261, 56.020546 ], [ 121.083054, 55.99527 ], [ 120.991089, 56.02166 ], [ 120.856644, 56.006943 ], [ 120.80304, 55.974434 ], [ 120.667763, 55.949997 ], [ 120.633041, 55.928047 ], [ 120.508331, 55.918884 ], [ 120.487198, 55.874992 ], [ 120.360809, 55.871101 ], [ 120.337769, 55.907494 ], [ 120.260269, 55.921104 ], [ 120.181664, 55.86805 ], [ 120.128311, 55.911659 ], [ 120.1586, 55.999435 ], [ 120.063026, 56.068886 ], [ 120.054977, 56.135269 ], [ 120.164146, 56.15638 ], [ 120.201393, 56.191658 ], [ 120.29248, 56.193321 ], [ 120.342758, 56.220543 ], [ 120.529427, 56.229713 ], [ 120.538589, 56.287216 ], [ 120.395264, 56.310547 ], [ 120.412491, 56.351387 ], [ 120.276657, 56.390274 ], [ 120.262207, 56.461937 ], [ 120.208603, 56.452774 ], [ 120.099152, 56.484436 ], [ 119.974152, 56.486938 ], [ 119.927467, 56.546104 ], [ 119.804153, 56.608047 ], [ 119.877197, 56.658043 ], [ 119.868317, 56.695541 ], [ 119.785538, 56.699158 ], [ 119.664993, 56.768051 ], [ 119.713318, 56.811935 ], [ 119.886932, 56.866386 ], [ 119.774429, 56.983604 ], [ 119.700821, 56.984436 ], [ 119.614151, 57.033607 ], [ 119.616928, 57.089714 ], [ 119.683868, 57.175827 ], [ 119.612762, 57.219437 ], [ 119.561653, 57.328049 ], [ 119.448318, 57.361938 ], [ 119.400543, 57.431107 ], [ 119.421097, 57.516937 ], [ 119.496368, 57.591103 ], [ 119.422493, 57.614441 ], [ 119.319992, 57.610825 ], [ 119.185806, 57.50222 ], [ 119.148041, 57.63472 ], [ 119.166382, 57.700272 ], [ 119.045822, 57.726936 ], [ 119.077766, 57.78611 ], [ 119.106934, 57.935547 ], [ 119.138321, 58.012215 ], [ 119.161377, 58.146942 ], [ 119.108383, 58.222672 ], [ 119.120529, 58.29805 ], [ 119.069992, 58.368599 ], [ 119.126083, 58.408325 ], [ 119.133041, 58.477486 ], [ 119.0336, 58.502495 ], [ 118.981369, 58.543327 ], [ 118.793869, 58.580826 ], [ 118.874977, 58.722488 ], [ 118.896652, 58.80777 ], [ 118.793869, 58.877769 ], [ 118.792191, 58.939697 ], [ 118.853867, 58.943604 ], [ 118.847794, 59.014412 ], [ 118.736923, 59.023605 ], [ 118.702477, 59.065544 ], [ 118.686096, 59.185822 ], [ 118.728592, 59.233604 ], [ 118.803864, 59.249435 ], [ 118.833878, 59.304436 ], [ 118.755257, 59.333328 ], [ 118.764427, 59.4011 ], [ 118.578598, 59.452492 ], [ 118.551933, 59.480545 ], [ 118.390266, 59.517769 ], [ 118.350273, 59.588882 ], [ 118.2836, 59.61055 ], [ 118.149986, 59.609993 ], [ 118.057213, 59.583328 ], [ 117.973602, 59.522217 ], [ 117.906937, 59.443604 ], [ 117.818878, 59.449432 ], [ 117.758331, 59.540833 ], [ 117.598877, 59.470825 ], [ 117.452209, 59.500275 ], [ 117.331383, 59.494156 ], [ 117.236099, 59.527771 ], [ 117.209991, 59.56221 ], [ 117.099716, 59.60305 ], [ 117.191093, 59.646103 ], [ 117.23082, 59.810822 ], [ 117.057213, 59.908882 ], [ 117.123596, 59.965271 ], [ 117.205551, 59.95166 ], [ 117.281097, 60.024994 ], [ 117.033867, 60.048882 ], [ 116.968048, 60.161659 ], [ 116.885818, 60.196655 ], [ 116.839981, 60.242218 ], [ 116.732208, 60.257774 ], [ 116.591087, 60.359993 ], [ 116.382751, 60.388046 ], [ 116.246094, 60.375824 ], [ 116.185257, 60.400826 ], [ 116.054153, 60.413048 ], [ 116.003197, 60.459305 ], [ 115.855553, 60.462494 ], [ 115.733322, 60.52166 ], [ 115.665817, 60.525551 ], [ 115.34166, 60.477486 ], [ 115.189148, 60.429718 ], [ 115.097214, 60.387497 ], [ 115.013046, 60.27166 ], [ 114.803307, 60.18055 ], [ 114.69664, 60.219986 ], [ 114.609993, 60.136108 ], [ 114.551086, 60.11805 ], [ 114.523323, 60.040276 ], [ 114.546097, 59.984993 ], [ 114.302467, 59.874435 ], [ 114.27388, 59.832214 ], [ 114.165543, 59.745827 ], [ 114.051933, 59.74305 ], [ 114.041931, 59.68055 ], [ 113.938309, 59.692215 ], [ 113.878593, 59.678879 ], [ 113.775543, 59.607216 ], [ 113.608871, 59.581108 ], [ 113.609711, 59.49527 ], [ 113.515823, 59.437767 ], [ 113.47998, 59.442215 ], [ 113.423599, 59.366661 ], [ 113.483047, 59.337769 ], [ 113.469437, 59.264999 ], [ 113.218872, 59.149437 ], [ 113.141663, 59.165825 ], [ 112.971367, 59.134438 ], [ 112.911652, 59.154991 ], [ 112.882202, 59.118324 ], [ 112.71666, 59.080551 ], [ 112.63443, 59.033051 ], [ 112.627617, 58.961182 ], [ 112.485527, 58.874992 ], [ 112.44693, 58.92305 ], [ 112.466377, 59.031662 ], [ 112.449707, 59.124992 ], [ 112.464706, 59.168053 ], [ 112.537773, 59.236938 ], [ 112.638603, 59.26944 ], [ 112.624153, 59.319443 ], [ 112.428589, 59.329163 ], [ 112.291367, 59.299721 ], [ 112.276382, 59.369987 ], [ 112.329437, 59.426659 ], [ 112.221367, 59.503609 ], [ 112.094437, 59.394997 ], [ 111.981659, 59.334435 ], [ 111.941933, 59.271103 ], [ 111.887772, 59.285828 ], [ 111.760536, 59.275269 ], [ 111.646103, 59.2061 ], [ 111.570541, 59.21888 ], [ 111.424149, 59.274162 ], [ 111.304153, 59.256943 ], [ 111.182213, 59.183327 ], [ 111.105263, 59.234161 ], [ 110.996933, 59.208046 ], [ 110.92276, 59.238045 ], [ 110.741364, 59.262497 ], [ 110.654427, 59.242493 ], [ 110.578873, 59.191658 ], [ 110.592758, 59.136658 ], [ 110.538589, 59.06221 ], [ 110.481934, 59.033333 ], [ 110.330276, 59.025826 ], [ 110.287773, 58.983047 ], [ 110.181931, 58.974159 ], [ 109.915268, 59.008049 ], [ 109.830276, 58.978043 ], [ 109.720543, 59.077217 ], [ 109.640549, 59.061661 ], [ 109.639427, 59.13221 ], [ 109.50499, 59.238602 ], [ 109.48082, 59.295547 ], [ 109.287491, 59.30777 ], [ 109.250816, 59.36805 ], [ 109.317207, 59.397774 ], [ 109.267487, 59.462212 ], [ 109.428307, 59.57972 ], [ 109.506104, 59.619987 ], [ 109.494713, 59.750275 ], [ 109.52887, 59.790833 ], [ 109.651382, 59.861938 ], [ 109.67804, 59.931107 ], [ 109.76944, 60.028877 ], [ 109.716377, 60.052216 ], [ 109.692749, 60.11721 ], [ 109.731369, 60.231934 ], [ 109.794144, 60.245827 ], [ 109.805542, 60.313049 ], [ 109.855263, 60.369156 ], [ 109.939972, 60.393883 ], [ 109.910538, 60.447487 ], [ 110.038879, 60.558327 ], [ 110.117752, 60.57972 ], [ 110.076927, 60.676102 ], [ 110.228867, 60.675827 ], [ 110.267761, 60.691933 ], [ 110.270264, 60.762215 ], [ 110.222214, 60.800827 ], [ 110.319992, 60.902214 ], [ 110.387497, 60.933876 ], [ 110.46582, 61.000832 ], [ 110.506653, 61.064995 ], [ 110.497482, 61.152214 ], [ 110.409988, 61.179993 ], [ 110.321114, 61.146385 ], [ 110.171654, 61.159714 ], [ 110.090271, 61.270271 ], [ 109.948593, 61.300827 ], [ 109.855263, 61.291382 ], [ 109.804153, 61.309433 ], [ 109.801651, 61.368881 ], [ 109.848877, 61.441376 ], [ 109.865807, 61.547493 ], [ 109.794144, 61.594437 ], [ 109.719147, 61.671936 ], [ 109.612633, 61.713936 ], [ 109.638893, 61.760826 ], [ 109.58638, 61.823326 ], [ 109.633621, 61.894165 ], [ 109.765823, 61.988045 ], [ 109.818268, 62.003624 ], [ 109.924698, 62.125824 ], [ 110.004173, 62.180824 ], [ 109.932213, 62.23999 ], [ 109.997482, 62.2761 ], [ 109.962486, 62.333328 ], [ 109.889977, 62.35833 ], [ 109.913879, 62.41082 ], [ 109.732758, 62.411102 ], [ 109.544144, 62.432495 ], [ 109.4711, 62.404991 ], [ 109.402481, 62.463882 ], [ 109.3022, 62.48333 ], [ 109.244431, 62.572769 ], [ 109.371094, 62.576103 ], [ 109.380257, 62.649437 ], [ 109.463043, 62.679161 ], [ 109.467209, 62.740273 ], [ 109.554428, 62.789436 ], [ 109.623871, 62.801659 ], [ 109.615807, 62.876099 ], [ 109.486099, 62.916382 ], [ 109.481087, 63.027771 ], [ 109.453049, 63.154434 ], [ 109.375259, 63.255272 ], [ 109.391663, 63.324715 ], [ 109.351379, 63.363609 ], [ 109.260536, 63.361107 ], [ 109.228867, 63.440269 ], [ 109.140266, 63.473877 ], [ 109.04332, 63.554161 ], [ 108.856644, 63.535828 ], [ 108.70665, 63.579163 ], [ 108.617752, 63.573326 ], [ 108.535538, 63.598602 ], [ 108.136658, 63.563606 ], [ 108.106934, 63.606102 ], [ 108.190262, 63.632767 ], [ 108.272774, 63.68499 ], [ 108.277771, 63.796387 ], [ 108.366653, 63.814156 ], [ 108.466087, 63.789436 ], [ 108.605553, 63.807495 ], [ 108.687477, 63.794998 ], [ 108.76944, 63.858604 ], [ 108.683868, 63.9086 ], [ 108.741364, 63.976097 ], [ 108.703323, 64.005554 ], [ 108.577477, 64.047211 ], [ 108.53804, 64.104156 ], [ 108.530823, 64.241653 ], [ 108.452209, 64.289154 ], [ 108.36998, 64.300537 ], [ 108.29776, 64.246933 ], [ 108.139977, 64.262207 ], [ 108.026543, 64.223465 ], [ 107.993317, 64.169708 ], [ 107.850807, 64.180542 ], [ 107.787491, 64.214996 ], [ 107.66832, 64.247208 ], [ 107.594711, 64.299149 ], [ 107.334427, 64.244431 ], [ 107.236649, 64.286926 ], [ 107.220833, 64.333603 ], [ 107.117203, 64.334991 ], [ 106.886383, 64.416092 ], [ 106.726929, 64.422211 ], [ 106.678589, 64.493866 ], [ 106.571663, 64.508606 ], [ 106.563309, 64.4422 ], [ 106.39444, 64.443314 ], [ 106.263046, 64.426086 ], [ 106.186653, 64.396378 ], [ 106.124977, 64.448029 ], [ 106.139977, 64.488876 ], [ 106.038879, 64.516098 ], [ 105.941933, 64.482483 ], [ 105.79248, 64.478043 ], [ 105.804153, 64.530548 ], [ 105.726089, 64.57222 ], [ 105.776932, 64.649429 ], [ 105.85498, 64.645828 ], [ 105.835823, 64.714996 ], [ 105.847214, 64.791656 ], [ 105.898041, 64.821381 ], [ 105.957764, 64.808319 ], [ 105.949142, 64.894989 ], [ 106.025543, 64.906372 ], [ 106.10582, 64.859146 ], [ 106.1297, 64.895264 ], [ 106.076927, 64.960815 ], [ 105.974808, 65.003052 ], [ 106.026657, 65.050537 ], [ 106.173599, 65.096375 ], [ 106.192467, 65.128586 ], [ 106.2836, 65.135818 ], [ 106.426933, 65.261383 ], [ 106.450821, 65.313873 ], [ 106.556374, 65.378586 ], [ 106.647774, 65.391937 ], [ 106.786102, 65.369705 ], [ 106.84137, 65.376083 ], [ 106.940811, 65.511658 ], [ 106.698868, 65.551086 ], [ 106.699707, 65.601379 ], [ 106.631927, 65.635818 ], [ 106.428864, 65.662766 ], [ 106.463882, 65.72998 ], [ 106.448318, 65.821381 ], [ 106.496094, 65.894989 ], [ 106.46666, 65.931931 ], [ 106.488876, 66.004715 ], [ 106.343048, 66.154709 ], [ 106.224426, 66.149155 ], [ 106.130257, 66.175537 ], [ 106.12442, 66.315262 ], [ 106.100807, 66.378036 ], [ 106.185257, 66.434982 ], [ 106.326927, 66.47554 ], [ 106.296944, 66.562759 ], [ 106.241653, 66.581665 ], [ 106.227203, 66.660538 ], [ 106.25, 66.703323 ], [ 106.149429, 66.722214 ], [ 106.147774, 66.809143 ], [ 106.048027, 66.788315 ], [ 106.069153, 66.85498 ], [ 106.043869, 66.901657 ], [ 105.85582, 66.921646 ], [ 105.829163, 66.944702 ], [ 105.6436, 66.94664 ], [ 105.551651, 67.024994 ], [ 105.717209, 67.025269 ], [ 105.89415, 67.04332 ], [ 105.968872, 67.062759 ], [ 106.044144, 67.163879 ], [ 106.221367, 67.182755 ], [ 106.317757, 67.208328 ], [ 106.413879, 67.267212 ], [ 106.503601, 67.286377 ], [ 106.642212, 67.244141 ], [ 106.686371, 67.253876 ], [ 106.798866, 67.338318 ], [ 106.82193, 67.488586 ], [ 106.832489, 67.681656 ], [ 106.876648, 67.84166 ], [ 106.881088, 68.023315 ], [ 106.896942, 68.120255 ], [ 106.875809, 68.316376 ], [ 106.893883, 68.443588 ], [ 106.900543, 68.609985 ], [ 106.886108, 68.866928 ], [ 106.131363, 69.404984 ], [ 106.263321, 69.451096 ], [ 106.409416, 69.558868 ], [ 106.514427, 69.563309 ], [ 106.591087, 69.516663 ], [ 106.800262, 69.514435 ], [ 106.948868, 69.537766 ], [ 107.14444, 69.591934 ], [ 107.50943, 69.642487 ], [ 107.744431, 69.68248 ], [ 107.902206, 69.674988 ], [ 108.018051, 69.707489 ], [ 108.063599, 69.785538 ], [ 108.224426, 69.852478 ], [ 108.488312, 69.853592 ], [ 108.583054, 69.836929 ], [ 108.88472, 69.839157 ], [ 108.937477, 69.788879 ], [ 109.149719, 69.761108 ], [ 109.214432, 69.7686 ], [ 109.364433, 69.838318 ], [ 109.421097, 69.892761 ], [ 109.383614, 69.929428 ], [ 109.453049, 69.989975 ], [ 109.524696, 70.008606 ], [ 109.381088, 70.079437 ], [ 109.382751, 70.119431 ], [ 109.305542, 70.177765 ], [ 109.352478, 70.23027 ], [ 109.410812, 70.227203 ], [ 109.546944, 70.256104 ], [ 109.632202, 70.329437 ], [ 109.641663, 70.384995 ], [ 109.753052, 70.387772 ], [ 109.853043, 70.4086 ], [ 110.016937, 70.41832 ], [ 110.272491, 70.417206 ], [ 110.264999, 70.46138 ], [ 110.140549, 70.478592 ], [ 110.159416, 70.552475 ], [ 110.120529, 70.631927 ], [ 110.213882, 70.669708 ], [ 110.283867, 70.672211 ], [ 110.323608, 70.704712 ], [ 110.513611, 70.716934 ], [ 110.503326, 70.765823 ], [ 110.564148, 70.8022 ], [ 110.682213, 70.796936 ], [ 110.722351, 70.821655 ], [ 110.880814, 70.796371 ], [ 110.913971, 70.817535 ], [ 111.148331, 70.853043 ], [ 111.335541, 70.852478 ], [ 111.51416, 70.935806 ], [ 111.977203, 70.982758 ], [ 112.053307, 71.05304 ], [ 112.150269, 71.055542 ], [ 112.199142, 71.009155 ], [ 112.292213, 71.013321 ], [ 112.384987, 71.064697 ], [ 112.473038, 71.062195 ], [ 112.588043, 71.101089 ], [ 112.530823, 71.169434 ], [ 112.686897, 71.202774 ], [ 112.723297, 71.248322 ], [ 112.642754, 71.289703 ], [ 112.512756, 71.265823 ], [ 112.333038, 71.343323 ], [ 112.012192, 71.407486 ], [ 112.012207, 72.133331 ], [ 111.943314, 72.127197 ], [ 111.774986, 72.144989 ], [ 111.740257, 72.187195 ], [ 111.633041, 72.209152 ], [ 111.662773, 72.275269 ], [ 111.580551, 72.319443 ], [ 111.359154, 72.31694 ], [ 111.325272, 72.33638 ], [ 111.111366, 72.3647 ], [ 111.075821, 72.406097 ], [ 111.303589, 72.478317 ], [ 111.233047, 72.545822 ], [ 111.010818, 72.576385 ], [ 110.951927, 72.571381 ], [ 110.908043, 72.633881 ], [ 110.711929, 72.65332 ], [ 110.632202, 72.786652 ], [ 110.691933, 72.809418 ], [ 110.659149, 72.900543 ], [ 110.761108, 72.912201 ], [ 110.827209, 72.950272 ], [ 110.777771, 73.000549 ], [ 110.932747, 73.028595 ], [ 110.8647, 73.073608 ], [ 110.809982, 73.168869 ], [ 110.711929, 73.18248 ], [ 110.435532, 73.185806 ], [ 110.596649, 73.253052 ], [ 110.566673, 73.319443 ], [ 110.431091, 73.334152 ], [ 110.183868, 73.384155 ], [ 110.359421, 73.399719 ], [ 110.534149, 73.403595 ], [ 110.653587, 73.439972 ], [ 110.731934, 73.494705 ], [ 110.803589, 73.508331 ], [ 110.848328, 73.565536 ], [ 110.994431, 73.564987 ], [ 111.108597, 73.588043 ], [ 111.133614, 73.641937 ], [ 110.92395, 73.694214 ], [ 110.843292, 73.71492 ], [ 110.895538, 73.76915 ], [ 111.059143, 73.81694 ], [ 111.138321, 73.820831 ], [ 111.292763, 73.859146 ], [ 111.980964, 74.075685 ], [ 111.046344, 74.433244 ], [ 111.311446, 74.532842 ], [ 114.761647, 75.085271 ], [ 114.797921662233421, 78.494813252511122 ], [ 114.797922, 78.494845 ], [ 119.744986, 78.483647 ], [ 127.5, 81.78707 ], [ 127.5, 89.0 ], [ 142.5, 89.0 ], [ 142.5, 78.0 ], [ 135.0, 78.0 ], [ 134.987257, 71.625301 ], [ 134.730135, 71.541245 ], [ 134.676837, 71.510547 ], [ 134.485677, 71.481721 ], [ 134.355126, 71.478868 ], [ 134.086146, 71.496857 ], [ 133.786571, 71.537119 ], [ 133.574307, 71.58114 ], [ 133.25867, 71.687131 ], [ 133.127144, 71.774336 ], [ 133.229888, 71.781032 ], [ 133.271526, 71.74465 ], [ 133.400844, 71.734845 ], [ 133.464159, 71.790012 ], [ 133.48013, 71.863053 ], [ 133.435022, 71.95395 ], [ 133.377106, 71.994954 ], [ 133.197457, 72.076279 ], [ 133.01369, 72.08533 ], [ 132.873383, 72.062727 ], [ 132.690298, 72.05574 ], [ 132.499791, 71.97369 ], [ 132.280554, 71.821844 ], [ 132.162819, 71.722499 ], [ 131.974263, 71.491383 ], [ 131.927885, 71.37055 ], [ 131.783692, 71.259244 ], [ 131.719619, 71.236306 ], [ 131.666519, 71.183757 ], [ 131.655876, 71.078339 ] ] ], [ [ [ 142.5, -10.380002 ], [ 142.5, -10.553171 ], [ 142.446554, -10.593748 ], [ 142.435573, -10.48565 ], [ 142.5, -10.380002 ] ] ] ] } }, +{ "type": "Feature", "properties": { "name": "-10" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 180.0, 48.0 ], [ 167.0, 53.0 ], [ 180.0, 59.5 ], [ 180.0, 48.0 ] ] ], [ [ [ -157.5, 89.0 ], [ -142.5, 89.0 ], [ -142.5, 70.099716 ], [ -142.733683, 70.168203 ], [ -142.897895, 70.192521 ], [ -143.289366, 70.275019 ], [ -143.385769, 70.247649 ], [ -143.544487, 70.270117 ], [ -143.928599, 70.243443 ], [ -144.096026, 70.187477 ], [ -144.245772, 70.184768 ], [ -144.513563, 70.140352 ], [ -144.611457, 70.096607 ], [ -144.681053, 70.086282 ], [ -144.818902, 70.10523 ], [ -144.93934, 70.086767 ], [ -145.080795, 70.106771 ], [ -145.12891, 70.142157 ], [ -145.285537, 70.138064 ], [ -145.394099, 70.155154 ], [ -145.788645, 70.278355 ], [ -146.090709, 70.326105 ], [ -146.243882, 70.319616 ], [ -146.287343, 70.341629 ], [ -146.41655, 70.355285 ], [ -146.600307, 70.355211 ], [ -146.684545, 70.300339 ], [ -146.878039, 70.308091 ], [ -146.894138, 70.367658 ], [ -146.948137, 70.415881 ], [ -147.09286, 70.431146 ], [ -147.1625, 70.410154 ], [ -147.20707, 70.357821 ], [ -147.316555, 70.362071 ], [ -147.371186, 70.464602 ], [ -147.435152, 70.508345 ], [ -147.566537, 70.515149 ], [ -147.624551, 70.475261 ], [ -147.650208, 70.409699 ], [ -147.634676, 70.34103 ], [ -147.749096, 70.407695 ], [ -147.824242, 70.424507 ], [ -147.807654, 70.480492 ], [ -147.829615, 70.552422 ], [ -147.943973, 70.617114 ], [ -148.039523, 70.601909 ], [ -148.097217, 70.540351 ], [ -148.103058, 70.467608 ], [ -148.190374, 70.471772 ], [ -148.203684, 70.539442 ], [ -148.259418, 70.593588 ], [ -148.367717, 70.609391 ], [ -148.440999, 70.58365 ], [ -148.497021, 70.496615 ], [ -148.561463, 70.535308 ], [ -148.734069, 70.563294 ], [ -148.813158, 70.598097 ], [ -148.971812, 70.605048 ], [ -149.2658, 70.654696 ], [ -149.338146, 70.639938 ], [ -149.386846, 70.666313 ], [ -149.613881, 70.689991 ], [ -149.771219, 70.676165 ], [ -149.85701, 70.688051 ], [ -149.973396, 70.6742 ], [ -150.035309, 70.610202 ], [ -150.079078, 70.654747 ], [ -150.151533, 70.677942 ], [ -150.277028, 70.654196 ], [ -150.318099, 70.607529 ], [ -150.563874, 70.624943 ], [ -150.776937, 70.620469 ], [ -150.8818, 70.580708 ], [ -150.931814, 70.585264 ], [ -151.204424, 70.553904 ], [ -151.271682, 70.519357 ], [ -151.586512, 70.562155 ], [ -151.613978, 70.629122 ], [ -151.684983, 70.675308 ], [ -151.804423, 70.670609 ], [ -151.871619, 70.696046 ], [ -152.107333, 70.711386 ], [ -152.07276, 70.815983 ], [ -152.103144, 70.88415 ], [ -152.249726, 70.96153 ], [ -152.633889, 71.008895 ], [ -152.742735, 71.002984 ], [ -152.840555, 71.033589 ], [ -152.948318, 71.020416 ], [ -153.131139, 71.045129 ], [ -153.269731, 71.043495 ], [ -153.414875, 71.013187 ], [ -153.559638, 71.008645 ], [ -153.73033, 71.01752 ], [ -153.969013, 70.995237 ], [ -154.057271, 70.93147 ], [ -154.155181, 70.896767 ], [ -154.245562, 70.936156 ], [ -154.35444, 70.953597 ], [ -154.462922, 70.949273 ], [ -154.481164, 71.069719 ], [ -154.558947, 71.127917 ], [ -154.802961, 71.21568 ], [ -155.166061, 71.29694 ], [ -155.229619, 71.302676 ], [ -155.324675, 71.263863 ], [ -155.401313, 71.318657 ], [ -155.497988, 71.344301 ], [ -155.709915, 71.364109 ], [ -155.824884, 71.333914 ], [ -155.875732, 71.393459 ], [ -156.000023, 71.439172 ], [ -156.310175, 71.471327 ], [ -156.447784, 71.509241 ], [ -156.662636, 71.461554 ], [ -156.839881, 71.406152 ], [ -157.179773, 71.241494 ], [ -157.361234, 71.135077 ], [ -157.484045, 71.086672 ], [ -157.5, 71.080565 ], [ -157.5, 89.0 ] ] ], [ [ [ -156.080438, -5.842297 ], [ -154.566159, -11.645359 ], [ -150.000233, -11.645359 ], [ -150.000233, -9.909233 ], [ -155.528634, 4.937315 ], [ -157.5, 4.937315 ], [ -157.5, 15.0 ], [ -172.5, 15.0 ], [ -172.5, 24.0 ], [ -180.0, 24.0 ], [ -180.0, 30.0 ], [ -178.8, 30.0 ], [ -178.8, 27.8 ], [ -176.8, 27.8 ], [ -176.8, 30.0 ], [ -157.5, 30.0 ], [ -157.5, 47.0 ], [ -172.5, 47.0 ], [ -180.0, 47.0 ], [ -179.999971, 59.501864 ], [ -173.400002, 63.10074 ], [ -173.400001999998835, 63.100738184103847 ], [ -173.4, 59.980477 ], [ -169.4, 54.1 ], [ -169.4, 52.3 ], [ -156.842254, 54.711991 ], [ -142.5, 59.960316 ], [ -142.5, -6.0 ], [ -142.5, -12.3 ], [ -136.5, -12.3 ], [ -135.0, -16.261722 ], [ -135.0, -21.8 ], [ -135.6, -21.8 ], [ -135.6, -27.5 ], [ -140.4, -27.5 ], [ -140.4, -29.5 ], [ -142.5, -29.5 ], [ -142.5, -90.0 ], [ -157.5, -90.0 ], [ -157.5, -23.5 ], [ -161.5, -23.5 ], [ -161.5, -21.5 ], [ -164.0, -21.5 ], [ -164.0, -11.5 ], [ -167.5, -11.5 ], [ -167.5, -5.842297 ], [ -158.486571, -5.842297 ], [ -157.5, -5.842297 ], [ -156.080438, -5.842297 ] ] ] ] } }, +{ "type": "Feature", "properties": { "name": "+3" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 48.999005, 38.412194 ], [ 48.999005101964599, 38.412194010369276 ], [ 51.299478961711522, 38.646140318272892 ], [ 51.301118, 38.646307 ], [ 53.778243, 37.344498 ], [ 53.794332, 37.271616 ], [ 53.796321, 37.265697 ], [ 53.833357, 37.153527 ], [ 53.845833, 37.112413 ], [ 53.863773, 37.064491 ], [ 53.875421, 37.027906 ], [ 53.851054, 37.02742 ], [ 53.824739, 37.025185 ], [ 53.74356, 37.017095 ], [ 53.736947, 37.017186 ], [ 53.719679, 37.016299 ], [ 53.68358, 37.013383 ], [ 53.665259, 37.011856 ], [ 53.554874, 37.001654 ], [ 53.501871, 36.994625 ], [ 53.469782, 36.992772 ], [ 53.269511, 36.968154 ], [ 53.195334, 36.955605 ], [ 53.1697, 36.952046 ], [ 52.920883, 36.887991 ], [ 52.864693, 36.873196 ], [ 52.777432, 36.855709 ], [ 52.681967, 36.839628 ], [ 52.513615, 36.812355 ], [ 52.498622, 36.810821 ], [ 52.440283, 36.802662 ], [ 52.041174, 36.706645 ], [ 51.865582, 36.695961 ], [ 51.691217, 36.718132 ], [ 51.466994, 36.801352 ], [ 51.179656, 36.840137 ], [ 51.010132, 36.891933 ], [ 50.757556, 37.014765 ], [ 50.733313, 37.039008 ], [ 50.553083, 37.122253 ], [ 50.393931, 37.230961 ], [ 50.342875, 37.337466 ], [ 50.317406, 37.432735 ], [ 50.236146, 37.500113 ], [ 50.055548, 37.526684 ], [ 49.966765, 37.584989 ], [ 49.837046, 37.562901 ], [ 49.556086, 37.586197 ], [ 49.364418, 37.628185 ], [ 49.275149, 37.664744 ], [ 49.113219, 37.784385 ], [ 49.059521, 37.97779 ], [ 49.023832, 38.06258 ], [ 49.014143, 38.192337 ], [ 48.984715, 38.31441 ], [ 48.996707, 38.390323 ], [ 48.999005, 38.412194 ] ] ], [ [ [ 52.5, -90.0 ], [ 37.5, -90.0 ], [ 37.5, -18.307249 ], [ 37.5, -17.73076 ], [ 37.517601, -17.721811 ], [ 37.978576, -17.461873 ], [ 38.210761, -17.390525 ], [ 38.273894, -17.342834 ], [ 38.549834, -17.240951 ], [ 38.711444, -17.198813 ], [ 38.952778, -17.150907 ], [ 38.996526, -17.210466 ], [ 39.095212, -17.240932 ], [ 39.184156, -17.189413 ], [ 39.207514, -17.11935 ], [ 39.188705, -17.053024 ], [ 39.242722, -16.952719 ], [ 39.37496, -16.860902 ], [ 39.570263, -16.766317 ], [ 39.698849, -16.676734 ], [ 39.906823, -16.554687 ], [ 39.994906, -16.488962 ], [ 40.063738, -16.312623 ], [ 40.108971, -16.265096 ], [ 40.231244, -16.071979 ], [ 40.246901, -16.004968 ], [ 40.44135, -15.807911 ], [ 40.515794, -15.694455 ], [ 40.613066, -15.618613 ], [ 40.79085, -15.288491 ], [ 40.776985, -15.17522 ], [ 40.874146, -15.070536 ], [ 40.895615, -14.970012 ], [ 40.948865, -14.89411 ], [ 40.962902, -14.751916 ], [ 40.942641, -14.608742 ], [ 40.964381, -14.541617 ], [ 40.944866, -14.411501 ], [ 40.899571, -14.321127 ], [ 40.859296, -14.293051 ], [ 40.827443, -14.140027 ], [ 40.751612, -14.072161 ], [ 40.761149, -14.020107 ], [ 40.740136, -13.901436 ], [ 40.71267, -13.84612 ], [ 40.683629, -13.653412 ], [ 40.72087, -13.589543 ], [ 40.718327, -13.514806 ], [ 40.677876, -13.454463 ], [ 40.706012, -13.371533 ], [ 40.684378, -13.264103 ], [ 40.672251, -13.094506 ], [ 40.708557, -12.969853 ], [ 40.681667, -12.894318 ], [ 40.747112, -12.786055 ], [ 40.732086, -12.685273 ], [ 40.75109, -12.474669 ], [ 40.710861, -12.146686 ], [ 40.659687, -12.089599 ], [ 40.702698, -12.026564 ], [ 40.688634, -11.908273 ], [ 40.726373, -11.847438 ], [ 40.720595, -11.772072 ], [ 40.667126, -11.712881 ], [ 40.57746, -11.699517 ], [ 40.580404, -11.482629 ], [ 40.679953, -11.482539 ], [ 40.745216, -11.436349 ], [ 40.767496, -11.368294 ], [ 40.731955, -11.283492 ], [ 40.784544, -11.248887 ], [ 40.817459, -11.172098 ], [ 40.80276, -11.101226 ], [ 40.839805, -10.982201 ], [ 40.785308, -10.900424 ], [ 40.799202, -10.853069 ], [ 40.747196, -10.631708 ], [ 40.649959, -10.506226 ], [ 40.62776, -10.428747 ], [ 40.55921, -10.37254 ], [ 40.558395, -10.320328 ], [ 40.415628, -10.429432 ], [ 40.419075, -10.483057 ], [ 40.339947, -10.576442 ], [ 40.233543, -10.607371 ], [ 39.991428, -10.81613 ], [ 39.887905, -10.845959 ], [ 39.860126, -10.868277 ], [ 39.785889, -10.910685 ], [ 39.775646, -10.910854 ], [ 39.694508, -10.945992 ], [ 39.529575, -10.985414 ], [ 39.432903, -11.057749 ], [ 39.365524, -11.084299 ], [ 39.241627, -11.179976 ], [ 39.135853, -11.151134 ], [ 39.045071, -11.174488 ], [ 38.884743, -11.175511 ], [ 38.744179, -11.278317 ], [ 38.652092, -11.278788 ], [ 38.486149, -11.4149 ], [ 38.378235, -11.383034 ], [ 38.261925, -11.288426 ], [ 38.113094, -11.259668 ], [ 37.927895, -11.290549 ], [ 37.85817, -11.340202 ], [ 37.817753, -11.473763 ], [ 37.825993, -11.528198 ], [ 37.787922, -11.572027 ], [ 37.641636, -11.652708 ], [ 37.559902, -11.649964 ], [ 37.442734, -11.734662 ], [ 37.331894, -11.687695 ], [ 37.281612, -11.707168 ], [ 37.133213, -11.689842 ], [ 37.041145, -11.580296 ], [ 37.006992, -11.602601 ], [ 36.88868, -11.606109 ], [ 36.810833, -11.587023 ], [ 36.719498, -11.692884 ], [ 36.56031, -11.745696 ], [ 36.501423, -11.692849 ], [ 36.377872, -11.684204 ], [ 36.267113, -11.718006 ], [ 36.20126, -11.716186 ], [ 36.170006, -11.665466 ], [ 36.172279, -11.589557 ], [ 36.123909, -11.551973 ], [ 35.956997, -11.483055 ], [ 35.941891, -11.424907 ], [ 35.823818, -11.406803 ], [ 35.776859, -11.471077 ], [ 35.639271, -11.58572 ], [ 35.575569, -11.603462 ], [ 35.389797, -11.580019 ], [ 35.340698, -11.556542 ], [ 34.957932, -11.571344 ], [ 34.925709, -11.41508 ], [ 34.882683, -11.3552 ], [ 34.804882, -11.321221 ], [ 34.686054, -11.141225 ], [ 34.628342, -11.102043 ], [ 34.604225, -10.989516 ], [ 34.636486, -10.94684 ], [ 34.651936, -10.757631 ], [ 34.594311, -10.581552 ], [ 34.555122, -10.549006 ], [ 34.571152, -10.479848 ], [ 34.541611, -10.415602 ], [ 34.569839, -10.307633 ], [ 34.55476, -10.188474 ], [ 34.517357, -10.097792 ], [ 34.538979, -10.064199 ], [ 34.501526, -9.976361 ], [ 34.344543, -9.8065 ], [ 34.306023, -9.740206 ], [ 34.036301, -9.49193 ], [ 33.96476, -9.52838 ], [ 33.967117, -9.62705 ], [ 33.921345, -9.709304 ], [ 33.763893, -9.582588 ], [ 33.684872, -9.608034 ], [ 33.592926, -9.581412 ], [ 33.519829, -9.626969 ], [ 33.440281, -9.612694 ], [ 33.392551, -9.53884 ], [ 33.329735, -9.491529 ], [ 33.210243, -9.508881 ], [ 33.079613, -9.449467 ], [ 32.990807, -9.368879 ], [ 32.953506, -9.401445 ], [ 32.867374, -9.373852 ], [ 32.768288, -9.317944 ], [ 32.751926, -9.28485 ], [ 32.540909, -9.254656 ], [ 32.4314, -9.118252 ], [ 32.267021, -9.133574 ], [ 32.161392, -9.061675 ], [ 32.060913, -9.051372 ], [ 31.996113, -9.076138 ], [ 31.936659, -9.018008 ], [ 31.947081, -8.9368 ], [ 31.821665, -8.89028 ], [ 31.734747, -8.923262 ], [ 31.584745, -8.838832 ], [ 31.570477, -8.709552 ], [ 31.489515, -8.684135 ], [ 31.458731, -8.640335 ], [ 31.319895, -8.608783 ], [ 31.275015, -8.631579 ], [ 31.211452, -8.587496 ], [ 31.136457, -8.632804 ], [ 31.028078, -8.592154 ], [ 30.9781, -8.538345 ], [ 30.807409, -8.310655 ], [ 30.738659, -8.109818 ], [ 30.651621, -7.980675 ], [ 30.575212, -7.750932 ], [ 30.522249, -7.619986 ], [ 30.422859, -7.418212 ], [ 30.358889, -7.247829 ], [ 30.238564, -7.021798 ], [ 30.18375, -6.940332 ], [ 30.08506, -6.836075 ], [ 29.906258, -6.708418 ], [ 29.791624, -6.60899 ], [ 29.655048, -6.413446 ], [ 29.594872, -6.252271 ], [ 29.579317, -6.146805 ], [ 29.57818, -5.962873 ], [ 29.607328, -5.768335 ], [ 29.575602, -5.555771 ], [ 29.529745, -5.415081 ], [ 29.410162, -5.12354 ], [ 29.337156, -4.853596 ], [ 29.327168, -4.698912 ], [ 29.386379, -4.540749 ], [ 29.391476, -4.44525 ], [ 29.655046, -4.445394 ], [ 29.756708, -4.464615 ], [ 29.814556, -4.359261 ], [ 29.868317, -4.374803 ], [ 30.049816, -4.255608 ], [ 30.07534, -4.165472 ], [ 30.127422, -4.13798 ], [ 30.21981, -4.026513 ], [ 30.259924, -3.887548 ], [ 30.301298, -3.859733 ], [ 30.324396, -3.79167 ], [ 30.405819, -3.768395 ], [ 30.390545, -3.715807 ], [ 30.487581, -3.511953 ], [ 30.61409, -3.461382 ], [ 30.666922, -3.420379 ], [ 30.641329, -3.35371 ], [ 30.677912, -3.321291 ], [ 30.836933, -3.25414 ], [ 30.847717, -3.163778 ], [ 30.792173, -3.05372 ], [ 30.743656, -2.996557 ], [ 30.571642, -2.897041 ], [ 30.485052, -2.947957 ], [ 30.407255, -2.856773 ], [ 30.444254, -2.782436 ], [ 30.457598, -2.692539 ], [ 30.419981, -2.657842 ], [ 30.476286, -2.569636 ], [ 30.540243, -2.432877 ], [ 30.608498, -2.398344 ], [ 30.65958, -2.410769 ], [ 30.713615, -2.356321 ], [ 30.765104, -2.388607 ], [ 30.848717, -2.314381 ], [ 30.842756, -2.230204 ], [ 30.895958, -2.078556 ], [ 30.8053, -1.928111 ], [ 30.828257, -1.856863 ], [ 30.81222, -1.733731 ], [ 30.830462, -1.64703 ], [ 30.74449, -1.526573 ], [ 30.732616, -1.447708 ], [ 30.66296, -1.391046 ], [ 30.559937, -1.339275 ], [ 30.551136, -1.290194 ], [ 30.47368, -1.12594 ], [ 30.476864, -1.062396 ], [ 30.348373, -1.068344 ], [ 30.339556, -1.13228 ], [ 30.171144, -1.304084 ], [ 30.159571, -1.349256 ], [ 29.98447, -1.455435 ], [ 29.913498, -1.483161 ], [ 29.877251, -1.369634 ], [ 29.818903, -1.31493 ], [ 29.792175, -1.366717 ], [ 29.702852, -1.35485 ], [ 29.609722, -1.389604 ], [ 29.577084, -1.196532 ], [ 29.587933, -0.904934 ], [ 29.625111, -0.90588 ], [ 29.638851, -0.818742 ], [ 29.626041, -0.705782 ], [ 29.681017, -0.566212 ], [ 29.653698, -0.46851 ], [ 29.722786, -0.1005 ], [ 29.743191, -0.030166 ], [ 29.716425, 0.026434 ], [ 29.734697, 0.129093 ], [ 29.814989, 0.164289 ], [ 29.872433, 0.392724 ], [ 29.973263, 0.517733 ], [ 29.950308, 0.633025 ], [ 29.984388, 0.841495 ], [ 30.100248, 0.894276 ], [ 30.14459, 0.885302 ], [ 30.224483, 0.994873 ], [ 30.243277, 1.085276 ], [ 30.362999, 1.200461 ], [ 30.468384, 1.213292 ], [ 30.699884, 1.494337 ], [ 31.02577, 1.749802 ], [ 31.150394, 1.908913 ], [ 31.228189, 1.991877 ], [ 31.305361, 2.11931 ], [ 31.30493, 2.15688 ], [ 31.203491, 2.224187 ], [ 31.199127, 2.296254 ], [ 31.126642, 2.269035 ], [ 31.064062, 2.348836 ], [ 30.985323, 2.408754 ], [ 30.885963, 2.344041 ], [ 30.833559, 2.426479 ], [ 30.752777, 2.438503 ], [ 30.756674, 2.592711 ], [ 30.828596, 2.755839 ], [ 30.870279, 2.801793 ], [ 30.880405, 2.883495 ], [ 30.845552, 2.962138 ], [ 30.788269, 3.01024 ], [ 30.779251, 3.06835 ], [ 30.829168, 3.255208 ], [ 30.885162, 3.310562 ], [ 30.935602, 3.40154 ], [ 30.933472, 3.482229 ], [ 30.846092, 3.50834 ], [ 30.85696, 3.568896 ], [ 30.799339, 3.590437 ], [ 30.786036, 3.648012 ], [ 30.718967, 3.62064 ], [ 30.667433, 3.636404 ], [ 30.57329, 3.592095 ], [ 30.584925, 3.680238 ], [ 30.5466, 3.86815 ], [ 30.493002, 3.856813 ], [ 30.386951, 3.908523 ], [ 30.222595, 3.937438 ], [ 30.15773, 4.092711 ], [ 30.078886, 4.112746 ], [ 30.038128, 4.188783 ], [ 29.944063, 4.241593 ], [ 29.963572, 4.277373 ], [ 29.902332, 4.343625 ], [ 29.839674, 4.336678 ], [ 29.798374, 4.368258 ], [ 29.82029, 4.558717 ], [ 29.733219, 4.574481 ], [ 29.708031, 4.61631 ], [ 29.611044, 4.660898 ], [ 29.461695, 4.662755 ], [ 29.471807, 4.592255 ], [ 29.408733, 4.483301 ], [ 29.366892, 4.467902 ], [ 29.338272, 4.401318 ], [ 29.204639, 4.338347 ], [ 29.133253, 4.405982 ], [ 29.009434, 4.492551 ], [ 28.975386, 4.475247 ], [ 28.83316, 4.473036 ], [ 28.7866, 4.558228 ], [ 28.721333, 4.536247 ], [ 28.66222, 4.419617 ], [ 28.581718, 4.376295 ], [ 28.510124, 4.36906 ], [ 28.45787, 4.285298 ], [ 28.374577, 4.275577 ], [ 28.318312, 4.352965 ], [ 28.201092, 4.347533 ], [ 28.071817, 4.414419 ], [ 28.031967, 4.47767 ], [ 28.035048, 4.550398 ], [ 27.868265, 4.547898 ], [ 27.786022, 4.628577 ], [ 27.787395, 4.736298 ], [ 27.713717, 4.785858 ], [ 27.657469, 4.891273 ], [ 27.580336, 4.885361 ], [ 27.52146, 4.97075 ], [ 27.463421, 5.016153 ], [ 27.456636, 5.06467 ], [ 27.396597, 5.15258 ], [ 27.323767, 5.199333 ], [ 27.24892, 5.326864 ], [ 27.233204, 5.426795 ], [ 27.283386, 5.58701 ], [ 27.188328, 5.727467 ], [ 27.105873, 5.799759 ], [ 27.046581, 5.79489 ], [ 27.002674, 5.856691 ], [ 26.963123, 5.847153 ], [ 26.904686, 5.894726 ], [ 26.833025, 5.903914 ], [ 26.819244, 5.980795 ], [ 26.75178, 6.013197 ], [ 26.655008, 6.004957 ], [ 26.560179, 6.033278 ], [ 26.517195, 6.115283 ], [ 26.533728, 6.194599 ], [ 26.476244, 6.274101 ], [ 26.396557, 6.305809 ], [ 26.297903, 6.387691 ], [ 26.297241, 6.493942 ], [ 26.415108, 6.637383 ], [ 26.357512, 6.689029 ], [ 26.262802, 6.709022 ], [ 26.167589, 6.813153 ], [ 26.114687, 6.815335 ], [ 26.041094, 6.931811 ], [ 26.048601, 7.000528 ], [ 25.985573, 7.006858 ], [ 25.824764, 7.142074 ], [ 25.604427, 7.215968 ], [ 25.53455, 7.273749 ], [ 25.361103, 7.344516 ], [ 25.287355, 7.460864 ], [ 25.206348, 7.485071 ], [ 25.173059, 7.573323 ], [ 25.287798, 7.638908 ], [ 25.286818, 7.781548 ], [ 25.180088, 7.902913 ], [ 25.100374, 7.884384 ], [ 24.971701, 7.983683 ], [ 24.909491, 8.047219 ], [ 24.86475, 8.180498 ], [ 24.779299, 8.181822 ], [ 24.729748, 8.209771 ], [ 24.621927, 8.222956 ], [ 24.554003, 8.20427 ], [ 24.478775, 8.272289 ], [ 24.3715, 8.251407 ], [ 24.203583, 8.303996 ], [ 24.153368, 8.369939 ], [ 24.171225, 8.481531 ], [ 24.267941, 8.592734 ], [ 24.259888, 8.683774 ], [ 24.164513, 8.707838 ], [ 24.131796, 8.692358 ], [ 23.994438, 8.707966 ], [ 23.940582, 8.730035 ], [ 23.829782, 8.734871 ], [ 23.738941, 8.716108 ], [ 23.637728, 8.742492 ], [ 23.520107, 8.726969 ], [ 23.508539, 8.814837 ], [ 23.569605, 8.878985 ], [ 23.531273, 8.963513 ], [ 23.463476, 8.984043 ], [ 23.476307, 9.141964 ], [ 23.610962, 9.230542 ], [ 23.653646, 9.293913 ], [ 23.639111, 9.343263 ], [ 23.677443, 9.438735 ], [ 23.633532, 9.473898 ], [ 23.65016, 9.57207 ], [ 23.697866, 9.667719 ], [ 23.668243, 9.891512 ], [ 23.301876, 10.474637 ], [ 23.26384, 10.494612 ], [ 23.13674, 10.634233 ], [ 23.00738, 10.71609 ], [ 22.877228, 10.917418 ], [ 22.986078, 11.199601 ], [ 22.98209, 11.296127 ], [ 22.953314, 11.312012 ], [ 22.945282, 11.417245 ], [ 22.789005, 11.403181 ], [ 22.754213, 11.475113 ], [ 22.662172, 11.515491 ], [ 22.566088, 11.620659 ], [ 22.554052, 11.687226 ], [ 22.635042, 12.026801 ], [ 22.551409, 12.052981 ], [ 22.491673, 12.020497 ], [ 22.492456, 12.148483 ], [ 22.443953, 12.272038 ], [ 22.421904, 12.387854 ], [ 22.372139, 12.441509 ], [ 22.412973, 12.495199 ], [ 22.458885, 12.619767 ], [ 22.287437, 12.696554 ], [ 22.195063, 12.706912 ], [ 22.136251, 12.66586 ], [ 22.032839, 12.637202 ], [ 21.934244, 12.639363 ], [ 21.857975, 12.734151 ], [ 21.850737, 12.871535 ], [ 21.925674, 13.046878 ], [ 22.020376, 13.139103 ], [ 22.127871, 13.164268 ], [ 22.18424, 13.245126 ], [ 22.284214, 13.349694 ], [ 22.220997, 13.451769 ], [ 22.213734, 13.566467 ], [ 22.142582, 13.629091 ], [ 22.12945, 13.715859 ], [ 22.092207, 13.776198 ], [ 22.231857, 13.947371 ], [ 22.392715, 14.049981 ], [ 22.431053, 14.05109 ], [ 22.536352, 14.118576 ], [ 22.579067, 14.184409 ], [ 22.558165, 14.229709 ], [ 22.479246, 14.232004 ], [ 22.437609, 14.275731 ], [ 22.449614, 14.472433 ], [ 22.384214, 14.506742 ], [ 22.411163, 14.595858 ], [ 22.50305, 14.630434 ], [ 22.617266, 14.650246 ], [ 22.717203, 14.686426 ], [ 22.671072, 14.848719 ], [ 22.759361, 14.917297 ], [ 22.75691, 14.972213 ], [ 22.870703, 15.083105 ], [ 22.940062, 15.107514 ], [ 22.930603, 15.157508 ], [ 22.999733, 15.237209 ], [ 22.990156, 15.415928 ], [ 22.932901, 15.464097 ], [ 22.930586, 15.550809 ], [ 23.004742, 15.589433 ], [ 23.12228, 15.709895 ], [ 23.333431, 15.686207 ], [ 23.416468, 15.693098 ], [ 23.578144, 15.753811 ], [ 23.805841, 15.742705 ], [ 24.001585, 15.704918 ], [ 24.0, 16.0 ], [ 24.0, 19.508045 ], [ 24.0, 20.0 ], [ 25.0, 20.0 ], [ 25.0, 21.999195 ], [ 25.13925, 22.004444 ], [ 26.947445, 22.005194 ], [ 27.633972, 22.007639 ], [ 29.866083, 22.004583 ], [ 30.977528, 22.008528 ], [ 31.318527, 22.006416 ], [ 31.356916, 22.114973 ], [ 31.468805, 22.222834 ], [ 31.512888, 22.18075 ], [ 31.435528, 22.081194 ], [ 31.412111, 22.008139 ], [ 32.023193, 22.003222 ], [ 33.1665, 22.006195 ], [ 33.564083, 21.725389 ], [ 34.005222, 21.772333 ], [ 34.160694, 22.207083 ], [ 34.691944, 22.297916 ], [ 34.951363, 22.857584 ], [ 35.212166, 22.787306 ], [ 35.601749, 23.128056 ], [ 35.62336, 23.146889 ], [ 37.5, 23.146889 ], [ 37.5, 24.289109 ], [ 37.423832, 24.392889 ], [ 37.462387, 24.43314 ], [ 37.296585, 24.671223 ], [ 37.224888, 24.70825 ], [ 37.224751, 24.838833 ], [ 37.285583, 24.987862 ], [ 37.244778, 25.07725 ], [ 37.251972, 25.160944 ], [ 37.089611, 25.344889 ], [ 37.07486, 25.439888 ], [ 37.009388, 25.490499 ], [ 37.000526, 25.543638 ], [ 36.935665, 25.647028 ], [ 36.879555, 25.673111 ], [ 36.821751, 25.746529 ], [ 36.712776, 25.747389 ], [ 36.702415, 25.815222 ], [ 36.649113, 25.857056 ], [ 36.703304, 25.933945 ], [ 36.70686, 26.022112 ], [ 36.652889, 26.057501 ], [ 36.581722, 26.057444 ], [ 36.498165, 26.115555 ], [ 36.483555, 26.18 ], [ 36.347557, 26.404249 ], [ 36.289749, 26.538305 ], [ 36.230415, 26.625723 ], [ 36.167667, 26.677305 ], [ 35.998444, 26.908751 ], [ 35.804779, 27.113222 ], [ 35.803417, 27.235666 ], [ 35.739723, 27.321972 ], [ 35.667057, 27.356806 ], [ 35.546112, 27.50975 ], [ 35.530499, 27.6005 ], [ 35.481804, 27.655416 ], [ 35.424835, 27.774221 ], [ 35.353054, 27.836666 ], [ 35.266361, 27.951 ], [ 35.164612, 28.010361 ], [ 35.05611, 28.116249 ], [ 34.930138, 28.077723 ], [ 34.81139, 28.111029 ], [ 34.758915, 28.096083 ], [ 34.703556, 28.128416 ], [ 34.631222, 28.026501 ], [ 34.609943, 28.141445 ], [ 34.666889, 28.222639 ], [ 34.755001, 28.443361 ], [ 34.806252, 28.523556 ], [ 34.775776, 28.66375 ], [ 34.834084, 28.811445 ], [ 34.832195, 28.92075 ], [ 34.864887, 29.008167 ], [ 34.884361, 29.139139 ], [ 34.957981, 29.357397 ], [ 35.02702, 29.34918 ], [ 36.070099, 29.185036 ], [ 36.504536, 29.499941 ], [ 36.753536, 29.868496 ], [ 37.499115, 29.999039 ], [ 37.665539, 30.332651 ], [ 37.997158, 30.500607 ], [ 37.744904, 30.767195 ], [ 37.511337, 30.996246 ], [ 37.499954, 31.006445 ], [ 37.000896, 31.500114 ], [ 38.243687, 31.816307 ], [ 38.995914, 31.996464 ], [ 39.301201, 32.230202 ], [ 39.259998, 32.355499 ], [ 39.043701, 32.304001 ], [ 38.986, 32.477699 ], [ 39.085999, 32.501499 ], [ 38.789616, 33.37125 ], [ 39.79586, 33.893417 ], [ 40.667431, 34.333775 ], [ 40.958046, 34.382568 ], [ 41.001579, 34.420135 ], [ 41.12508, 34.660854 ], [ 41.230854, 34.781715 ], [ 41.206741, 35.142288 ], [ 41.216599, 35.249428 ], [ 41.261246, 35.37109 ], [ 41.262325, 35.474613 ], [ 41.369408, 35.624329 ], [ 41.366165, 35.840164 ], [ 41.253185, 36.057495 ], [ 41.2813, 36.350033 ], [ 41.396603, 36.521912 ], [ 41.813816, 36.587322 ], [ 41.881336, 36.635925 ], [ 42.249981, 36.966579 ], [ 42.365383, 37.062817 ], [ 42.337082, 37.174862 ], [ 42.357418, 37.227528 ], [ 42.307304, 37.261307 ], [ 42.193943, 37.282196 ], [ 42.10611, 37.21286 ], [ 41.97514, 37.159584 ], [ 41.75864, 37.117474 ], [ 41.65736, 37.112415 ], [ 41.500862, 37.079556 ], [ 41.285973, 37.080139 ], [ 41.218418, 37.06361 ], [ 41.16975, 37.092251 ], [ 40.921082, 37.12711 ], [ 40.858082, 37.10836 ], [ 40.781723, 37.120583 ], [ 40.546276, 37.026722 ], [ 40.461834, 37.014862 ], [ 40.180862, 36.878693 ], [ 39.841835, 36.755333 ], [ 39.22736, 36.665001 ], [ 39.020222, 36.703304 ], [ 38.847057, 36.696693 ], [ 38.731472, 36.707474 ], [ 38.563389, 36.838833 ], [ 38.407833, 36.89539 ], [ 38.200474, 36.908001 ], [ 37.908028, 36.785694 ], [ 37.791195, 36.748585 ], [ 37.65514, 36.731415 ], [ 37.46114, 36.638138 ], [ 37.266445, 36.664944 ], [ 37.126835, 36.661667 ], [ 37.091, 36.623638 ], [ 37.033249, 36.678444 ], [ 37.056641, 36.712696 ], [ 36.944363, 36.78125 ], [ 36.902668, 36.777695 ], [ 36.739029, 36.824196 ], [ 36.678196, 36.811195 ], [ 36.623974, 36.747082 ], [ 36.638695, 36.711555 ], [ 36.591862, 36.650112 ], [ 36.604168, 36.579056 ], [ 36.553028, 36.50111 ], [ 36.593224, 36.394222 ], [ 36.669193, 36.326168 ], [ 36.706028, 36.255165 ], [ 36.609249, 36.217529 ], [ 36.54261, 36.238056 ], [ 36.471054, 36.201805 ], [ 36.403389, 36.22636 ], [ 36.376694, 36.169388 ], [ 36.397835, 36.083752 ], [ 36.368362, 35.994804 ], [ 36.317196, 36.004112 ], [ 36.212723, 35.9515 ], [ 36.180916, 35.901749 ], [ 36.183056, 35.835583 ], [ 36.014832, 35.889862 ], [ 35.993637, 35.939304 ], [ 35.935806, 35.918667 ], [ 35.909499, 35.962009 ], [ 35.967259, 36.014758 ], [ 35.927456, 36.086068 ], [ 35.780401, 36.2768 ], [ 35.370143, 36.531601 ], [ 35.105575, 36.642882 ], [ 35.016977, 36.691497 ], [ 34.91467, 36.698122 ], [ 34.826579, 36.78303 ], [ 34.728941, 36.79614 ], [ 34.597873, 36.763973 ], [ 34.435078, 36.643446 ], [ 34.298992, 36.573746 ], [ 34.184381, 36.452612 ], [ 34.10657, 36.404003 ], [ 34.10765, 36.32121 ], [ 34.03996, 36.286376 ], [ 33.938147, 36.199401 ], [ 33.935011, 36.259865 ], [ 33.885926, 36.29427 ], [ 33.805449, 36.207634 ], [ 33.798071, 36.169776 ], [ 33.697227, 36.111916 ], [ 33.643819, 36.165307 ], [ 33.578672, 36.10948 ], [ 33.458171, 36.132648 ], [ 33.404709, 36.108039 ], [ 33.140324, 36.107587 ], [ 33.098746, 36.053076 ], [ 32.952396, 36.080213 ], [ 32.812485, 35.99957 ], [ 32.676855, 36.019013 ], [ 32.561277, 36.078683 ], [ 32.478731, 36.092872 ], [ 32.285485, 36.220401 ], [ 32.25528, 36.277984 ], [ 32.083872, 36.478878 ], [ 32.021783, 36.522662 ], [ 31.772781, 36.587067 ], [ 31.669599, 36.628282 ], [ 31.564928, 36.691595 ], [ 31.380541, 36.751568 ], [ 31.296948, 36.799793 ], [ 31.154064, 36.812965 ], [ 31.006389, 36.841066 ], [ 30.753825, 36.831205 ], [ 30.68501, 36.866388 ], [ 30.594942, 36.783023 ], [ 30.596972, 36.678994 ], [ 30.578336, 36.61838 ], [ 30.612281, 36.586258 ], [ 30.585307, 36.514893 ], [ 30.505972, 36.40447 ], [ 30.543979, 36.354658 ], [ 30.509873, 36.297276 ], [ 30.491463, 36.204867 ], [ 30.38367, 36.159192 ], [ 30.381568, 36.227524 ], [ 30.26894, 36.28693 ], [ 30.170239, 36.278847 ], [ 30.157324, 36.240574 ], [ 30.065563, 36.226988 ], [ 29.878639, 36.142132 ], [ 29.833951, 36.142371 ], [ 29.744664, 36.091376 ], [ 29.628499, 36.078617 ], [ 29.556677, 36.089724 ], [ 29.345902, 36.189077 ], [ 29.228023, 36.308009 ], [ 29.104835, 36.360998 ], [ 29.084261, 36.396673 ], [ 29.105013, 36.526149 ], [ 29.031023, 36.519126 ], [ 28.846751, 36.570267 ], [ 28.777345, 36.667044 ], [ 28.608017, 36.694775 ], [ 28.597172, 36.776374 ], [ 28.443095, 36.754471 ], [ 28.343807, 36.788777 ], [ 28.297968, 36.701951 ], [ 28.182023, 36.660566 ], [ 28.107062, 36.570525 ], [ 27.986924, 36.53803 ], [ 27.849569, 36.506787 ], [ 27.813839, 36.516865 ], [ 27.6441, 36.646579 ], [ 27.520899, 36.65646 ], [ 27.49349, 36.635626 ], [ 27.345768, 36.678397 ], [ 27.356795, 36.72667 ], [ 27.47281, 36.783239 ], [ 27.607978, 36.786924 ], [ 27.645769, 36.832799 ], [ 27.70063, 36.807518 ], [ 27.826573, 36.838464 ], [ 27.994539, 36.823745 ], [ 28.009895, 36.94286 ], [ 27.953765, 36.999758 ], [ 27.874802, 37.005189 ], [ 27.810631, 36.981341 ], [ 27.667375, 36.980837 ], [ 27.59116, 36.952972 ], [ 27.495878, 36.946661 ], [ 27.355255, 36.990943 ], [ 27.315693, 36.948488 ], [ 27.256442, 36.95013 ], [ 27.205146, 37.052752 ], [ 27.237829, 37.137828 ], [ 27.327947, 37.180192 ], [ 27.440187, 37.14778 ], [ 27.492122, 37.217221 ], [ 27.344421, 37.332644 ], [ 27.24863, 37.316586 ], [ 27.17079, 37.353402 ], [ 27.201058, 37.41459 ], [ 27.15525, 37.462449 ], [ 27.16425, 37.528102 ], [ 27.120409, 37.612448 ], [ 27.011566, 37.63465 ], [ 27.017531, 37.710169 ], [ 27.094991, 37.706823 ], [ 27.225452, 37.747134 ], [ 27.245578, 37.785457 ], [ 27.217255, 37.849555 ], [ 27.243041, 37.884618 ], [ 27.231188, 37.969275 ], [ 27.132685, 37.969164 ], [ 26.978061, 38.056635 ], [ 26.853039, 38.026506 ], [ 26.803372, 38.150762 ], [ 26.708663, 38.192502 ], [ 26.654268, 38.18791 ], [ 26.608562, 38.086891 ], [ 26.517015, 38.119922 ], [ 26.493146, 38.163583 ], [ 26.334926, 38.211426 ], [ 26.272015, 38.255284 ], [ 26.264867, 38.377846 ], [ 26.354647, 38.523128 ], [ 26.335724, 38.652831 ], [ 26.409093, 38.70113 ], [ 26.479642, 38.695223 ], [ 26.543015, 38.658386 ], [ 26.591653, 38.572469 ], [ 26.64367, 38.540965 ], [ 26.742817, 38.606124 ], [ 26.689464, 38.708172 ], [ 26.741427, 38.763314 ], [ 26.816442, 38.78329 ], [ 27.005807, 38.890363 ], [ 26.956601, 38.917813 ], [ 26.82269, 38.892441 ], [ 26.793043, 38.906559 ], [ 26.783276, 39.044496 ], [ 26.866766, 39.085293 ], [ 26.820668, 39.134081 ], [ 26.757134, 39.154821 ], [ 26.685181, 39.250859 ], [ 26.570606, 39.264861 ], [ 26.586038, 39.325508 ], [ 26.559674, 39.404708 ], [ 26.497133, 39.507583 ], [ 26.367426, 39.463334 ], [ 26.291483, 39.467199 ], [ 26.144895, 39.437165 ], [ 26.054233, 39.464786 ], [ 26.082275, 39.591467 ], [ 26.139079, 39.672637 ], [ 26.119149, 39.75763 ], [ 26.042387, 39.769941 ], [ 25.944092, 39.838318 ], [ 25.732398, 40.079018 ], [ 25.659052, 40.110718 ], [ 25.658821, 40.167022 ], [ 25.714874, 40.203659 ], [ 26.018577, 40.734259 ], [ 26.100361, 40.743305 ], [ 26.154945, 40.809666 ], [ 26.223167, 40.85461 ], [ 26.290083, 40.928917 ], [ 26.357277, 40.965832 ], [ 26.311777, 41.182499 ], [ 26.343111, 41.268055 ], [ 26.40711, 41.260445 ], [ 26.507555, 41.335361 ], [ 26.592194, 41.328667 ], [ 26.636862, 41.356083 ], [ 26.633917, 41.428391 ], [ 26.597805, 41.538582 ], [ 26.596138, 41.615471 ], [ 26.518778, 41.638916 ], [ 26.44389, 41.694946 ], [ 26.384945, 41.702415 ], [ 26.338362, 41.747749 ], [ 26.381472, 41.836056 ], [ 26.535, 41.83625 ], [ 26.581722, 41.879581 ], [ 26.580862, 41.944221 ], [ 26.623833, 41.968472 ], [ 26.759945, 41.962917 ], [ 26.790251, 41.987804 ], [ 26.971277, 42.004444 ], [ 27.033945, 42.084915 ], [ 27.082277, 42.096722 ], [ 27.190889, 42.073139 ], [ 27.274334, 42.107613 ], [ 27.381332, 42.053612 ], [ 27.449167, 41.977417 ], [ 27.546444, 41.923862 ], [ 27.704361, 41.98489 ], [ 27.796862, 41.955696 ], [ 27.872889, 42.00964 ], [ 27.960194, 41.983749 ], [ 28.054544, 41.988891 ], [ 28.079387, 41.880875 ], [ 28.007628, 41.837867 ], [ 28.117454, 41.656985 ], [ 28.255677, 41.540181 ], [ 28.641918, 41.380358 ], [ 28.961461, 41.283037 ], [ 29.093733, 41.276354 ], [ 29.159765, 41.245119 ], [ 29.252892, 41.260659 ], [ 29.398457, 41.240206 ], [ 29.595787, 41.19698 ], [ 29.735826, 41.177624 ], [ 29.990458, 41.161871 ], [ 30.143927, 41.169446 ], [ 30.276696, 41.236583 ], [ 30.495882, 41.169985 ], [ 30.666585, 41.152031 ], [ 30.75918, 41.111542 ], [ 30.941799, 41.0976 ], [ 31.229298, 41.123761 ], [ 31.300025, 41.143481 ], [ 31.389513, 41.219713 ], [ 31.395254, 41.341318 ], [ 31.523378, 41.389965 ], [ 31.614493, 41.408121 ], [ 31.864386, 41.534963 ], [ 32.023273, 41.599663 ], [ 32.151101, 41.635716 ], [ 32.268976, 41.741296 ], [ 32.368339, 41.776358 ], [ 32.407967, 41.768623 ], [ 32.519177, 41.834947 ], [ 32.673858, 41.857505 ], [ 32.787117, 41.88797 ], [ 32.855418, 41.886622 ], [ 32.970934, 41.917228 ], [ 33.037537, 41.955043 ], [ 33.164441, 41.980217 ], [ 33.332685, 42.044193 ], [ 33.540683, 42.02743 ], [ 33.602662, 42.012621 ], [ 33.790207, 42.000873 ], [ 34.105116, 42.00463 ], [ 34.319568, 41.964752 ], [ 34.469948, 41.989033 ], [ 34.614812, 41.965997 ], [ 34.71676, 41.967053 ], [ 34.818197, 41.988021 ], [ 34.925698, 42.08213 ], [ 34.942336, 42.121513 ], [ 35.032471, 42.110284 ], [ 35.128678, 42.041997 ], [ 35.186917, 42.058689 ], [ 35.237607, 42.001665 ], [ 35.140307, 41.994322 ], [ 35.112462, 41.921885 ], [ 35.221674, 41.817199 ], [ 35.286894, 41.736407 ], [ 35.432218, 41.696953 ], [ 35.479956, 41.667183 ], [ 35.581136, 41.650946 ], [ 35.820932, 41.702736 ], [ 35.957205, 41.75864 ], [ 36.078253, 41.701298 ], [ 36.153622, 41.603192 ], [ 36.146803, 41.481004 ], [ 36.260896, 41.368342 ], [ 36.361124, 41.326037 ], [ 36.410329, 41.269248 ], [ 36.477767, 41.262859 ], [ 36.548759, 41.298324 ], [ 36.596863, 41.383345 ], [ 36.729581, 41.388463 ], [ 36.879566, 41.360433 ], [ 37.011831, 41.298135 ], [ 37.046988, 41.207255 ], [ 37.142384, 41.166465 ], [ 37.25841, 41.166252 ], [ 37.401563, 41.124257 ], [ 37.493738, 41.073362 ], [ 37.5, 41.463995 ], [ 37.5, 44.565212 ], [ 37.48064, 44.696083 ], [ 37.386528, 44.759804 ], [ 37.30164, 44.893444 ], [ 37.28936, 44.950474 ], [ 37.151165, 45.028641 ], [ 36.890751, 45.104057 ], [ 36.736584, 45.10675 ], [ 36.632862, 45.137249 ], [ 36.599667, 45.189194 ], [ 36.689026, 45.221111 ], [ 36.874279, 45.247166 ], [ 36.981472, 45.275391 ], [ 36.96489, 45.323002 ], [ 36.799084, 45.301334 ], [ 36.81789, 45.348 ], [ 36.758835, 45.398861 ], [ 36.850582, 45.442917 ], [ 37.145638, 45.339417 ], [ 37.372917, 45.325611 ], [ 37.46339, 45.348694 ], [ 37.5, 45.36361618807527 ], [ 37.502502, 45.364636 ], [ 37.5, 45.714959 ], [ 37.499402, 47.058823 ], [ 37.514850236586476, 47.06011687935603 ], [ 37.945162465527908, 47.096158022729185 ], [ 38.234575, 47.120398 ], [ 38.234665, 47.122501 ], [ 38.245888, 47.228359 ], [ 38.327499, 47.24889 ], [ 38.325638, 47.300751 ], [ 38.224415, 47.31311 ], [ 38.298306, 47.375916 ], [ 38.311333, 47.451443 ], [ 38.290527, 47.520195 ], [ 38.371613, 47.611084 ], [ 38.457417, 47.63736 ], [ 38.605526, 47.63789 ], [ 38.67514, 47.696804 ], [ 38.764778, 47.684139 ], [ 38.83939, 47.854137 ], [ 39.03825, 47.865028 ], [ 39.126221, 47.839695 ], [ 39.225945, 47.866055 ], [ 39.379444, 47.875832 ], [ 39.52961, 47.82914 ], [ 39.630028, 47.840363 ], [ 39.741638, 47.82822 ], [ 39.820641, 47.958195 ], [ 39.818943, 48.049057 ], [ 39.879501, 48.088585 ], [ 39.907028, 48.164585 ], [ 40.014889, 48.266582 ], [ 39.938026, 48.360138 ], [ 39.850056, 48.570805 ], [ 39.783695, 48.59314 ], [ 39.681026, 48.593193 ], [ 39.72039, 48.731834 ], [ 39.800362, 48.837776 ], [ 40.0, 48.794582 ], [ 39.994946, 48.873138 ], [ 39.949638, 48.905472 ], [ 39.820389, 48.895916 ], [ 39.751167, 48.984417 ], [ 39.694248, 49.003887 ], [ 39.704334, 49.059029 ], [ 39.941471, 49.059055 ], [ 40.033417, 49.181 ], [ 40.076, 49.188026 ], [ 40.200333, 49.270584 ], [ 40.164444, 49.394028 ], [ 40.098721, 49.439693 ], [ 40.07011, 49.532028 ], [ 40.20739, 49.563137 ], [ 40.142361, 49.619415 ], [ 39.98, 49.603359 ], [ 39.92411, 49.566223 ], [ 39.802555, 49.574749 ], [ 39.64275, 49.639946 ], [ 39.611668, 49.739971 ], [ 39.459835, 49.763584 ], [ 39.368805, 49.739193 ], [ 39.282276, 49.761639 ], [ 39.218918, 49.85239 ], [ 39.164001, 49.878029 ], [ 39.082584, 49.819557 ], [ 38.946693, 49.811085 ], [ 38.921082, 49.868862 ], [ 38.84964, 49.870724 ], [ 38.698334, 49.955029 ], [ 38.612526, 49.985916 ], [ 38.538193, 49.967445 ], [ 38.461693, 49.996361 ], [ 38.366501, 50.002945 ], [ 38.35025, 50.07439 ], [ 38.206417, 50.080334 ], [ 38.21814, 49.976002 ], [ 38.14661, 49.931332 ], [ 38.029388, 49.920528 ], [ 38.005196, 49.972805 ], [ 37.910862, 50.045944 ], [ 37.761391, 50.091972 ], [ 37.652332, 50.176918 ], [ 37.625305, 50.221027 ], [ 37.649113, 50.286861 ], [ 37.536221, 50.32914 ], [ 37.481304, 50.37114 ], [ 37.474277, 50.440723 ], [ 37.343277, 50.425415 ], [ 37.174946, 50.355221 ], [ 36.931946, 50.353748 ], [ 36.729443, 50.292946 ], [ 36.65675, 50.237526 ], [ 36.452835, 50.334026 ], [ 36.315388, 50.294029 ], [ 36.295807, 50.357693 ], [ 36.231083, 50.418694 ], [ 36.086723, 50.456249 ], [ 35.859974, 50.43486 ], [ 35.724472, 50.368168 ], [ 35.617916, 50.378471 ], [ 35.588749, 50.459362 ], [ 35.467251, 50.517056 ], [ 35.443668, 50.619167 ], [ 35.481834, 50.694778 ], [ 35.489971, 50.775139 ], [ 35.423443, 50.80061 ], [ 35.357807, 50.948471 ], [ 35.3195, 51.071999 ], [ 35.238804, 51.044998 ], [ 35.167389, 51.081974 ], [ 35.128029, 51.221863 ], [ 34.962833, 51.235168 ], [ 34.822224, 51.176807 ], [ 34.726139, 51.175972 ], [ 34.656139, 51.247112 ], [ 34.457333, 51.240891 ], [ 34.377251, 51.267834 ], [ 34.3255, 51.239307 ], [ 34.273582, 51.255585 ], [ 34.341415, 51.354332 ], [ 34.224472, 51.405861 ], [ 34.302307, 51.505112 ], [ 34.257915, 51.58025 ], [ 34.21439, 51.588223 ], [ 34.151722, 51.689278 ], [ 34.331085, 51.723194 ], [ 34.438667, 51.727249 ], [ 34.451637, 51.768307 ], [ 34.409138, 51.838085 ], [ 34.264999, 51.855083 ], [ 34.257999, 51.909863 ], [ 34.110054, 51.998196 ], [ 34.090416, 52.078945 ], [ 34.12925, 52.140167 ], [ 34.021416, 52.193333 ], [ 33.941113, 52.254166 ], [ 33.936916, 52.292168 ], [ 33.860111, 52.307919 ], [ 33.814499, 52.362915 ], [ 33.706276, 52.357388 ], [ 33.545887, 52.302307 ], [ 33.458443, 52.35886 ], [ 33.342751, 52.349834 ], [ 33.201248, 52.369362 ], [ 33.079887, 52.310055 ], [ 32.905499, 52.243805 ], [ 32.873417, 52.272026 ], [ 32.706306, 52.254639 ], [ 32.539417, 52.326668 ], [ 32.388027, 52.33511 ], [ 32.396137, 52.260971 ], [ 32.335999, 52.233696 ], [ 32.334915, 52.119999 ], [ 32.141582, 52.055 ], [ 31.974083, 52.025612 ], [ 31.937334, 52.090084 ], [ 31.867083, 52.106556 ], [ 31.747389, 52.09539 ], [ 31.395361, 52.135361 ], [ 31.280027, 52.042473 ], [ 31.137417, 52.094055 ], [ 30.973778, 52.077972 ], [ 30.831028, 51.923389 ], [ 30.754694, 51.902943 ], [ 30.621778, 51.709389 ], [ 30.577499, 51.711193 ], [ 30.567139, 51.626335 ], [ 30.524944, 51.592945 ], [ 30.585083, 51.526443 ], [ 30.59314, 51.428471 ], [ 30.633833, 51.423527 ], [ 30.651695, 51.335056 ], [ 30.589722, 51.311279 ], [ 30.574194, 51.262554 ], [ 30.458389, 51.309971 ], [ 30.410084, 51.308029 ], [ 30.36389, 51.389305 ], [ 30.256361, 51.482224 ], [ 30.161612, 51.510418 ], [ 29.904194, 51.484085 ], [ 29.876888, 51.448418 ], [ 29.784695, 51.448334 ], [ 29.715805, 51.519527 ], [ 29.63525, 51.505474 ], [ 29.526167, 51.41478 ], [ 29.42761, 51.419971 ], [ 29.326334, 51.381416 ], [ 29.27475, 51.391972 ], [ 29.267944, 51.458195 ], [ 29.229723, 51.488693 ], [ 29.211584, 51.578304 ], [ 29.22864, 51.62714 ], [ 29.11175, 51.648724 ], [ 28.999527, 51.565666 ], [ 28.911388, 51.590637 ], [ 28.820639, 51.547695 ], [ 28.786694, 51.494972 ], [ 28.677639, 51.443474 ], [ 28.645361, 51.523418 ], [ 28.524027, 51.586388 ], [ 28.404249, 51.546165 ], [ 28.309889, 51.620224 ], [ 28.190083, 51.651806 ], [ 28.018583, 51.561863 ], [ 28.000639, 51.605167 ], [ 27.845083, 51.603943 ], [ 27.840666, 51.544693 ], [ 27.749916, 51.474998 ], [ 27.682278, 51.503193 ], [ 27.7255, 51.564083 ], [ 27.720638, 51.62236 ], [ 27.535166, 51.630695 ], [ 27.265306, 51.629307 ], [ 27.198778, 51.680832 ], [ 27.191833, 51.784832 ], [ 27.002501, 51.788502 ], [ 26.97275, 51.758999 ], [ 26.79439, 51.783974 ], [ 26.630611, 51.832001 ], [ 26.515066, 51.800957 ], [ 26.40457, 51.867252 ], [ 26.183575, 51.87941 ], [ 26.096281, 51.925819 ], [ 25.963472, 51.917084 ], [ 25.831667, 51.933777 ], [ 25.680445, 51.914196 ], [ 25.505083, 51.935055 ], [ 25.399555, 51.927723 ], [ 25.297832, 51.974972 ], [ 25.142084, 51.969776 ], [ 25.027834, 51.918304 ], [ 24.657461, 51.920864 ], [ 24.440651, 51.928993 ], [ 24.394579, 51.920864 ], [ 24.372898, 51.785358 ], [ 24.340376, 51.741997 ], [ 24.223841, 51.655273 ], [ 24.000671, 51.581779 ], [ 23.87397, 51.649479 ], [ 23.819597, 51.627392 ], [ 23.739084, 51.660027 ], [ 23.649639, 51.629112 ], [ 23.630833, 51.496861 ], [ 23.545639, 51.605999 ], [ 23.561195, 51.700668 ], [ 23.53739, 51.74511 ], [ 23.643389, 51.804111 ], [ 23.612417, 51.873695 ], [ 23.673805, 51.984943 ], [ 23.654417, 52.077221 ], [ 23.528278, 52.130749 ], [ 23.489944, 52.179863 ], [ 23.435139, 52.171112 ], [ 23.353333, 52.211529 ], [ 23.213833, 52.2215 ], [ 23.176889, 52.282585 ], [ 23.290695, 52.446804 ], [ 23.407389, 52.548389 ], [ 23.54425, 52.603306 ], [ 23.924541, 52.669956 ], [ 23.938612, 53.018776 ], [ 23.876499, 53.083889 ], [ 23.916334, 53.13739 ], [ 23.863333, 53.231277 ], [ 23.778639, 53.306305 ], [ 23.638222, 53.583557 ], [ 23.613972, 53.600918 ], [ 23.610945, 53.742443 ], [ 23.564083, 53.782833 ], [ 23.55925, 53.845722 ], [ 23.505945, 53.966583 ], [ 23.63611, 53.916668 ], [ 23.74225, 53.932804 ], [ 23.786751, 53.905056 ], [ 23.84639, 53.956974 ], [ 23.935749, 53.966557 ], [ 23.997389, 53.939724 ], [ 24.155251, 53.961666 ], [ 24.246639, 53.919109 ], [ 24.43325, 53.909222 ], [ 24.632223, 54.006084 ], [ 24.759064, 53.954456 ], [ 24.841938, 54.01965 ], [ 24.805323, 54.078079 ], [ 24.821545, 54.122993 ], [ 24.97146, 54.162857 ], [ 25.077656, 54.141216 ], [ 25.160072, 54.188522 ], [ 25.242239, 54.264301 ], [ 25.37446, 54.275829 ], [ 25.4501, 54.300606 ], [ 25.52899, 54.295162 ], [ 25.586712, 54.249744 ], [ 25.542711, 54.158524 ], [ 25.665045, 54.140579 ], [ 25.796822, 54.204521 ], [ 25.764601, 54.270523 ], [ 25.693129, 54.320606 ], [ 25.595905, 54.315994 ], [ 25.559238, 54.346996 ], [ 25.639322, 54.436882 ], [ 25.645155, 54.480412 ], [ 25.722933, 54.573635 ], [ 25.760433, 54.720329 ], [ 25.754044, 54.815327 ], [ 25.867794, 54.922829 ], [ 26.002659, 54.955448 ], [ 26.068298, 54.937721 ], [ 26.102001, 54.9659 ], [ 26.221972, 55.002514 ], [ 26.262138, 55.109501 ], [ 26.372444, 55.152748 ], [ 26.467777, 55.125946 ], [ 26.498333, 55.154221 ], [ 26.61511, 55.142445 ], [ 26.677361, 55.154251 ], [ 26.685417, 55.203918 ], [ 26.810556, 55.322834 ], [ 26.665056, 55.345139 ], [ 26.593445, 55.323223 ], [ 26.558945, 55.390388 ], [ 26.549889, 55.489887 ], [ 26.628389, 55.580776 ], [ 26.631611, 55.65786 ], [ 26.667694, 55.705582 ], [ 26.803473, 55.688473 ], [ 26.879417, 55.717251 ], [ 26.936916, 55.791668 ], [ 27.008055, 55.831528 ], [ 27.083471, 55.828804 ], [ 27.175917, 55.853222 ], [ 27.299667, 55.791195 ], [ 27.388472, 55.813473 ], [ 27.466667, 55.791279 ], [ 27.602972, 55.786472 ], [ 27.625389, 55.890415 ], [ 27.665167, 55.93539 ], [ 27.804611, 55.987026 ], [ 27.824389, 56.020054 ], [ 27.936501, 56.06461 ], [ 27.969166, 56.117554 ], [ 28.04089, 56.120361 ], [ 28.175501, 56.172165 ], [ 28.192583, 56.234249 ], [ 28.241138, 56.275555 ], [ 28.164862, 56.380085 ], [ 28.184334, 56.441113 ], [ 28.102556, 56.52261 ], [ 28.133528, 56.577168 ], [ 28.039778, 56.595055 ], [ 27.98325, 56.708057 ], [ 27.920473, 56.736057 ], [ 27.960583, 56.827332 ], [ 27.90225, 56.832165 ], [ 27.846333, 56.875668 ], [ 27.708778, 56.855 ], [ 27.758888, 57.127445 ], [ 27.821472, 57.159668 ], [ 27.86425, 57.242363 ], [ 27.839445, 57.316582 ], [ 27.680166, 57.377918 ], [ 27.649666, 57.405083 ], [ 27.521139, 57.440861 ], [ 27.551195, 57.53886 ], [ 27.398556, 57.528305 ], [ 27.327139, 57.575554 ], [ 27.400749, 57.622002 ], [ 27.393778, 57.680721 ], [ 27.445084, 57.712555 ], [ 27.531027, 57.708637 ], [ 27.501305, 57.792557 ], [ 27.559473, 57.830502 ], [ 27.710501, 57.838974 ], [ 27.778999, 57.829361 ], [ 27.826889, 57.858501 ], [ 27.796778, 57.91497 ], [ 27.727472, 57.915222 ], [ 27.625334, 58.005665 ], [ 27.614889, 58.079193 ], [ 27.490667, 58.218498 ], [ 27.509306, 58.265305 ], [ 27.437056, 58.380474 ], [ 27.476723, 58.648224 ], [ 27.548166, 58.861668 ], [ 27.617445, 58.933498 ], [ 27.742027, 58.998028 ], [ 27.808445, 59.129696 ], [ 27.970722, 59.27486 ], [ 28.117361, 59.294224 ], [ 28.197666, 59.350639 ], [ 28.195778, 59.400696 ], [ 28.048889, 59.470806 ], [ 27.710689, 59.502772 ], [ 27.414087, 59.588457 ], [ 27.20976, 59.562093 ], [ 26.873611, 59.970745 ], [ 27.381131, 60.491447 ], [ 27.845909, 60.562174 ], [ 27.877388, 60.601696 ], [ 28.174639, 60.775776 ], [ 28.234722, 60.78714 ], [ 28.314112, 60.838974 ], [ 28.527666, 60.953278 ], [ 28.655722, 60.952721 ], [ 28.729279, 61.055138 ], [ 28.828861, 61.125832 ], [ 28.954111, 61.151669 ], [ 28.984444, 61.177055 ], [ 29.245556, 61.273418 ], [ 29.333973, 61.352974 ], [ 29.490944, 61.44614 ], [ 29.502832, 61.488529 ], [ 29.628973, 61.497696 ], [ 29.747278, 61.572388 ], [ 29.754749, 61.601387 ], [ 29.876833, 61.687721 ], [ 30.046389, 61.766251 ], [ 30.080111, 61.819332 ], [ 30.318388, 61.946972 ], [ 30.352777, 61.980335 ], [ 30.60014, 62.138668 ], [ 30.658251, 62.205917 ], [ 30.718805, 62.212891 ], [ 31.229834, 62.507057 ], [ 31.383499, 62.687695 ], [ 31.435028, 62.780251 ], [ 31.580944, 62.908028 ], [ 31.504528, 62.998554 ], [ 31.318777, 63.088917 ], [ 31.258556, 63.135639 ], [ 31.231251, 63.225834 ], [ 31.085583, 63.287777 ], [ 30.967722, 63.321251 ], [ 30.932917, 63.353584 ], [ 30.790861, 63.404556 ], [ 30.505138, 63.461861 ], [ 30.39275, 63.54311 ], [ 30.251499, 63.603416 ], [ 30.041584, 63.71125 ], [ 29.980944, 63.754471 ], [ 30.239805, 63.818279 ], [ 30.321112, 63.90189 ], [ 30.526167, 64.04908 ], [ 30.550306, 64.125893 ], [ 30.472694, 64.197639 ], [ 30.484972, 64.254913 ], [ 30.369528, 64.277252 ], [ 30.258417, 64.335777 ], [ 30.119972, 64.359169 ], [ 30.052999, 64.404251 ], [ 30.064972, 64.456024 ], [ 30.012667, 64.517754 ], [ 30.018278, 64.591721 ], [ 30.143, 64.652748 ], [ 30.057112, 64.710808 ], [ 30.045666, 64.792168 ], [ 29.754417, 64.788055 ], [ 29.684055, 64.819504 ], [ 29.632694, 64.890167 ], [ 29.596251, 64.989944 ], [ 29.622833, 65.059166 ], [ 29.737888, 65.09008 ], [ 29.835917, 65.089615 ], [ 29.822889, 65.140419 ], [ 29.877583, 65.213249 ], [ 29.657694, 65.227753 ], [ 29.61861, 65.273392 ], [ 29.768583, 65.334114 ], [ 29.743029, 65.390137 ], [ 29.765388, 65.495026 ], [ 29.881222, 65.564087 ], [ 29.734417, 65.627914 ], [ 30.006639, 65.689919 ], [ 30.122723, 65.664497 ], [ 30.127777, 65.734917 ], [ 30.064695, 65.913391 ], [ 29.984112, 66.016052 ], [ 29.917528, 66.127892 ], [ 29.669861, 66.291946 ], [ 29.606277, 66.401527 ], [ 29.476805, 66.541748 ], [ 29.304695, 66.671997 ], [ 29.086277, 66.82428 ], [ 29.029751, 66.91658 ], [ 29.051889, 66.976753 ], [ 29.137417, 67.036003 ], [ 29.642195, 67.353668 ], [ 29.787722, 67.436165 ], [ 29.959167, 67.517334 ], [ 30.027334, 67.682388 ], [ 29.694529, 67.793747 ], [ 29.573668, 67.87767 ], [ 29.334667, 68.074692 ], [ 28.659805, 68.195114 ], [ 28.450361, 68.547668 ], [ 28.718416, 68.739471 ], [ 28.803528, 68.874947 ], [ 28.675917, 68.887138 ], [ 28.500668, 68.882141 ], [ 28.43475, 68.908417 ], [ 28.926945, 69.057388 ], [ 29.035223, 69.01683 ], [ 29.118279, 69.043419 ], [ 29.258862, 69.119804 ], [ 29.30975, 69.182114 ], [ 29.342112, 69.310417 ], [ 29.616638, 69.333969 ], [ 29.83036, 69.418663 ], [ 29.971138, 69.411835 ], [ 30.109888, 69.462723 ], [ 30.19186, 69.535057 ], [ 30.145361, 69.671524 ], [ 30.365778, 69.617111 ], [ 30.5355, 69.541473 ], [ 30.820139, 69.541664 ], [ 30.929361, 69.572281 ], [ 30.945389, 69.641335 ], [ 30.897833, 69.695778 ], [ 30.924694, 69.764168 ], [ 31.069424, 69.76668 ], [ 31.108982, 69.885649 ], [ 31.258328, 69.864569 ], [ 31.267079553967822, 69.862427553967308 ], [ 31.276371, 69.860154 ], [ 31.433933, 69.827675 ], [ 31.445149, 69.895123 ], [ 31.547364, 69.965174 ], [ 31.636525, 69.955758 ], [ 31.680502, 69.919286 ], [ 31.783496, 69.94978 ], [ 31.852386, 70.051915 ], [ 31.954202, 70.074001 ], [ 32.071043, 70.062295 ], [ 32.442261, 69.978879 ], [ 32.649989, 69.898412 ], [ 32.718625, 69.909448 ], [ 32.935668, 69.893403 ], [ 33.131072, 69.853577 ], [ 33.190907, 69.818037 ], [ 33.231781, 69.754841 ], [ 33.231411, 69.663134 ], [ 33.176612, 69.559907 ], [ 33.247329, 69.531125 ], [ 33.331661, 69.542272 ], [ 33.469427, 69.534291 ], [ 33.579753, 69.483415 ], [ 33.620628, 69.41735 ], [ 33.876108, 69.419536 ], [ 33.984205, 69.486152 ], [ 34.05359, 69.502027 ], [ 34.216391, 69.49371 ], [ 34.432519, 69.443056 ], [ 34.500397, 69.373633 ], [ 34.698878, 69.374375 ], [ 34.828856, 69.361956 ], [ 34.878856, 69.337611 ], [ 35.069881, 69.324175 ], [ 35.146562, 69.360782 ], [ 35.255366, 69.364825 ], [ 35.38683, 69.341169 ], [ 35.520345, 69.335267 ], [ 35.598483, 69.316027 ], [ 35.823513, 69.303354 ], [ 36.015841, 69.247537 ], [ 36.324448, 69.21042 ], [ 36.47554, 69.17009 ], [ 36.510235, 69.14383 ], [ 36.75993, 69.083615 ], [ 36.859124, 69.041337 ], [ 37.266148, 68.927402 ], [ 37.360767, 68.93541 ], [ 37.372511, 68.932729 ], [ 37.5, 69.305389 ], [ 37.5, 89.0 ], [ 52.5, 89.0 ], [ 52.5, 85.0 ], [ 67.5, 85.0 ], [ 70.0, 85.0 ], [ 70.0, 75.986103 ], [ 64.948735, 72.087368 ], [ 64.948105, 69.255112 ], [ 64.817963, 69.139114 ], [ 64.768051, 69.141937 ], [ 64.688873, 69.080551 ], [ 64.533875, 69.02916 ], [ 64.517487, 68.982483 ], [ 64.549988, 68.870529 ], [ 64.732483, 68.85498 ], [ 64.764435, 68.891098 ], [ 64.913605, 68.873306 ], [ 64.944702, 68.851089 ], [ 65.122757, 68.805817 ], [ 65.202209, 68.823318 ], [ 65.348602, 68.791931 ], [ 65.326385, 68.724991 ], [ 65.455551, 68.647491 ], [ 65.515549, 68.588318 ], [ 65.641937, 68.564987 ], [ 65.606094, 68.484985 ], [ 65.5336, 68.462204 ], [ 65.415268, 68.376648 ], [ 65.411102, 68.3461 ], [ 65.299423, 68.267761 ], [ 65.267761, 68.219986 ], [ 65.333328, 68.08638 ], [ 65.284988, 68.011932 ], [ 65.434708, 67.918045 ], [ 65.566666, 67.934418 ], [ 65.742477, 67.921921 ], [ 65.899155, 67.961105 ], [ 66.013611, 67.930817 ], [ 66.086105, 67.934418 ], [ 66.018051, 67.793045 ], [ 66.125534, 67.772766 ], [ 66.199417, 67.7397 ], [ 66.180817, 67.66832 ], [ 66.092484, 67.645538 ], [ 66.021652, 67.673874 ], [ 65.830826, 67.647217 ], [ 65.795258, 67.579987 ], [ 65.836929, 67.554153 ], [ 66.039703, 67.576935 ], [ 66.106644, 67.478592 ], [ 65.96138, 67.395264 ], [ 65.805542, 67.380814 ], [ 65.701096, 67.389709 ], [ 65.718872, 67.340546 ], [ 65.658875, 67.306091 ], [ 65.421371, 67.212204 ], [ 65.328049, 67.200272 ], [ 65.23526, 67.147217 ], [ 65.205551, 67.066376 ], [ 65.088318, 67.055252 ], [ 65.116089, 66.899155 ], [ 64.993591, 66.863876 ], [ 64.909714, 66.862488 ], [ 64.803314, 66.833603 ], [ 64.565536, 66.796097 ], [ 64.539978, 66.727203 ], [ 64.434418, 66.729156 ], [ 64.322769, 66.66748 ], [ 64.097763, 66.64888 ], [ 63.972488, 66.650543 ], [ 63.815544, 66.547211 ], [ 63.658882, 66.525818 ], [ 63.537216, 66.460266 ], [ 63.428879, 66.488312 ], [ 63.4086, 66.452774 ], [ 63.29583, 66.396942 ], [ 63.22332, 66.326385 ], [ 63.304161, 66.274704 ], [ 63.29055, 66.232758 ], [ 63.153877, 66.267487 ], [ 63.064713, 66.234711 ], [ 62.975822, 66.156937 ], [ 62.951103, 66.103592 ], [ 62.853607, 66.071106 ], [ 62.805824, 65.937195 ], [ 62.846657, 65.867477 ], [ 62.681938, 65.863037 ], [ 62.526382, 65.842209 ], [ 62.196938, 65.756378 ], [ 62.113052, 65.720825 ], [ 61.87027, 65.702209 ], [ 61.78833, 65.631363 ], [ 61.686935, 65.573883 ], [ 61.582214, 65.551651 ], [ 61.494438, 65.4897 ], [ 61.390549, 65.381088 ], [ 61.29583, 65.346375 ], [ 61.32666, 65.270538 ], [ 61.255829, 65.231934 ], [ 61.232491, 65.181366 ], [ 61.121658, 65.174698 ], [ 61.020546, 65.07193 ], [ 60.962769, 65.041656 ], [ 60.811935, 65.048599 ], [ 60.774712, 64.994705 ], [ 60.631378, 64.883606 ], [ 60.588882, 64.945526 ], [ 60.46666, 64.982758 ], [ 60.438042, 65.042755 ], [ 60.298607, 65.073318 ], [ 60.14666, 65.065262 ], [ 60.021378, 65.003052 ], [ 59.911102, 64.912491 ], [ 59.749435, 64.859146 ], [ 59.647217, 64.772766 ], [ 59.643883, 64.712769 ], [ 59.702492, 64.651657 ], [ 59.613609, 64.622757 ], [ 59.575554, 64.563309 ], [ 59.478325, 64.488037 ], [ 59.600273, 64.464996 ], [ 59.636108, 64.337494 ], [ 59.579437, 64.279434 ], [ 59.588043, 64.232483 ], [ 59.733879, 64.15332 ], [ 59.837212, 64.15332 ], [ 59.84388, 64.083054 ], [ 59.75444, 63.992767 ], [ 59.583878, 63.938599 ], [ 59.572495, 63.836655 ], [ 59.513885, 63.779991 ], [ 59.505829, 63.645546 ], [ 59.477768, 63.568054 ], [ 59.421936, 63.489433 ], [ 59.32666, 63.408325 ], [ 59.352219, 63.363052 ], [ 59.323326, 63.255272 ], [ 59.258888, 63.201103 ], [ 59.302773, 63.126381 ], [ 59.231934, 63.089989 ], [ 59.223877, 63.041107 ], [ 59.276939, 62.970825 ], [ 59.406937, 62.949715 ], [ 59.487213, 62.897774 ], [ 59.4561, 62.774437 ], [ 59.389992, 62.736107 ], [ 59.50972, 62.547218 ], [ 59.64888, 62.510826 ], [ 59.584717, 62.414993 ], [ 59.606659, 62.377769 ], [ 59.521378, 62.321381 ], [ 59.501106, 62.265274 ], [ 59.404434, 62.14222 ], [ 59.404434, 62.105827 ], [ 59.481934, 61.975548 ], [ 59.341377, 61.856941 ], [ 59.339157, 61.802216 ], [ 59.39444, 61.766663 ], [ 59.348877, 61.682213 ], [ 59.128601, 61.626381 ], [ 59.010826, 61.544716 ], [ 58.952217, 61.561104 ], [ 58.809715, 61.505554 ], [ 58.67305, 61.502777 ], [ 58.283333, 61.510277 ], [ 58.044716, 61.502495 ], [ 57.533333, 61.500832 ], [ 57.179993, 61.51194 ], [ 57.105553, 61.48555 ], [ 56.675552, 61.527771 ], [ 56.60083, 61.502495 ], [ 56.545273, 61.428879 ], [ 56.388603, 61.43943 ], [ 56.316383, 61.325272 ], [ 56.348045, 61.293884 ], [ 56.290276, 61.203049 ], [ 56.107216, 61.225548 ], [ 55.818848, 61.248901 ], [ 55.723228, 61.081459 ], [ 55.279213, 61.129593 ], [ 55.197472, 61.004105 ], [ 55.0569, 61.013573 ], [ 55.016342, 60.904953 ], [ 54.979713, 60.863884 ], [ 53.865547, 60.987495 ], [ 53.809158, 60.847771 ], [ 53.641663, 60.858604 ], [ 53.339432, 60.893883 ], [ 53.384995, 61.033882 ], [ 53.17527, 61.065826 ], [ 52.876656, 61.09388 ], [ 52.79055, 60.948044 ], [ 52.421936, 60.978043 ], [ 52.343323, 60.834991 ], [ 51.902214, 60.883606 ], [ 51.847214, 60.783607 ], [ 51.773323, 60.596939 ], [ 52.154709, 60.545547 ], [ 52.124992, 60.470268 ], [ 52.343048, 60.446381 ], [ 52.348877, 60.379715 ], [ 52.298157, 60.241707 ], [ 52.454437, 60.200272 ], [ 53.010826, 60.159157 ], [ 53.386108, 60.165543 ], [ 53.411377, 60.224434 ], [ 53.468323, 60.21888 ], [ 53.524162, 60.168884 ], [ 53.598877, 60.156654 ], [ 53.711937, 60.003326 ], [ 53.677773, 59.928604 ], [ 53.663605, 59.837769 ], [ 53.602493, 59.699997 ], [ 53.424995, 59.690544 ], [ 53.366104, 59.518326 ], [ 53.314713, 59.45166 ], [ 53.223877, 59.389435 ], [ 53.20694, 59.338882 ], [ 53.244156, 59.275826 ], [ 53.345268, 59.176659 ], [ 53.43499, 59.143051 ], [ 53.490829, 59.14888 ], [ 53.691933, 59.101105 ], [ 53.754166, 59.141106 ], [ 53.884163, 59.090546 ], [ 53.764999, 59.022766 ], [ 53.721657, 58.949715 ], [ 53.753326, 58.873878 ], [ 53.820274, 58.820831 ], [ 53.928329, 58.781662 ], [ 53.776382, 58.720543 ], [ 53.757217, 58.652489 ], [ 53.699715, 58.609161 ], [ 53.78463, 58.439964 ], [ 53.614998, 58.43499 ], [ 53.479156, 58.446938 ], [ 53.391106, 58.401382 ], [ 53.209717, 58.425827 ], [ 53.161659, 58.449997 ], [ 53.129433, 58.543327 ], [ 53.044716, 58.522491 ], [ 52.908325, 58.530273 ], [ 52.865273, 58.403877 ], [ 52.481377, 58.436935 ], [ 52.330826, 58.441658 ], [ 52.279991, 58.476097 ], [ 52.172768, 58.493324 ], [ 52.102493, 58.469711 ], [ 51.983879, 58.469986 ], [ 51.789993, 58.358887 ], [ 51.798882, 58.287498 ], [ 51.675827, 58.184715 ], [ 51.724434, 58.13166 ], [ 51.7761, 58.143326 ], [ 51.829163, 58.081383 ], [ 51.790833, 58.044159 ], [ 51.88166, 57.988884 ], [ 51.838882, 57.906654 ], [ 51.841103, 57.843048 ], [ 51.924164, 57.826103 ], [ 51.926941, 57.753326 ], [ 51.869438, 57.728325 ], [ 51.873878, 57.678329 ], [ 51.827492, 57.606384 ], [ 51.759995, 57.581665 ], [ 51.734436, 57.53833 ], [ 51.629433, 57.543327 ], [ 51.601662, 57.458885 ], [ 51.374992, 57.4786 ], [ 51.169716, 57.438881 ], [ 51.113884, 57.298607 ], [ 51.123878, 57.255272 ], [ 51.196938, 57.199997 ], [ 51.182495, 57.160271 ], [ 51.233047, 57.05777 ], [ 51.320831, 57.013611 ], [ 51.320831, 56.933327 ], [ 51.538605, 56.885826 ], [ 51.450829, 56.784439 ], [ 51.405266, 56.777771 ], [ 51.389435, 56.677773 ], [ 51.187767, 56.662209 ], [ 51.146103, 56.476936 ], [ 51.201935, 56.43943 ], [ 51.273048, 56.440544 ], [ 51.325554, 56.37471 ], [ 51.318329, 56.325829 ], [ 51.424438, 56.266388 ], [ 51.436668, 56.14444 ], [ 51.492218, 56.130272 ], [ 51.628044, 56.151932 ], [ 51.624435, 56.106941 ], [ 51.48999, 56.07888 ], [ 51.397209, 55.992188 ], [ 51.466385, 55.931664 ], [ 51.642769, 55.960548 ], [ 51.679718, 55.933601 ], [ 51.740273, 55.958046 ], [ 51.788887, 55.883881 ], [ 51.934433, 55.974991 ], [ 52.037498, 55.95916 ], [ 52.056381, 55.894997 ], [ 52.169159, 55.893051 ], [ 52.20388, 55.942215 ], [ 52.204712, 56.08416 ], [ 52.313049, 56.075554 ], [ 52.35083, 56.037216 ], [ 52.484718, 56.036942 ], [ 52.548332, 56.064156 ], [ 52.653603, 56.015831 ], [ 52.854439, 56.126656 ], [ 52.81694, 56.202492 ], [ 52.704163, 56.234161 ], [ 52.575829, 56.227486 ], [ 52.581108, 56.287216 ], [ 52.629158, 56.301384 ], [ 52.722763, 56.39138 ], [ 52.82666, 56.388885 ], [ 52.952774, 56.441658 ], [ 52.944435, 56.544716 ], [ 53.083054, 56.501663 ], [ 52.943321, 56.379158 ], [ 52.9561, 56.251663 ], [ 53.041939, 56.208046 ], [ 53.094437, 56.153603 ], [ 53.154434, 56.159157 ], [ 53.181107, 56.116936 ], [ 53.261108, 56.085548 ], [ 53.344994, 56.084717 ], [ 53.344437, 56.142494 ], [ 53.27166, 56.261665 ], [ 53.416664, 56.278328 ], [ 53.549995, 56.24749 ], [ 53.566383, 56.176102 ], [ 53.53611, 56.130547 ], [ 53.474709, 56.121101 ], [ 53.378876, 55.989716 ], [ 53.277771, 55.934433 ], [ 53.182495, 55.923882 ], [ 53.297249, 55.852524 ], [ 53.63842, 55.91552 ], [ 53.733879, 55.884163 ], [ 53.868599, 55.880272 ], [ 53.962494, 55.791382 ], [ 54.038208, 55.800957 ], [ 54.175827, 55.706657 ], [ 54.142769, 55.61805 ], [ 53.991936, 55.544441 ], [ 53.898331, 55.38166 ], [ 53.715546, 55.336937 ], [ 53.599998, 55.260277 ], [ 53.592491, 55.21138 ], [ 53.504997, 55.201103 ], [ 53.399437, 55.2211 ], [ 53.276657, 55.165268 ], [ 53.143326, 55.149162 ], [ 53.14138, 55.09388 ], [ 53.219986, 55.078049 ], [ 53.266937, 55.010277 ], [ 53.39138, 55.003326 ], [ 53.514122, 54.881203 ], [ 53.642494, 54.901382 ], [ 53.578049, 54.821106 ], [ 53.608604, 54.71138 ], [ 53.504997, 54.606659 ], [ 53.408325, 54.550827 ], [ 53.418602, 54.48082 ], [ 53.343605, 54.38166 ], [ 53.369156, 54.319992 ], [ 53.434433, 54.269157 ], [ 53.413048, 54.222214 ], [ 53.460548, 54.111938 ], [ 53.4702, 54.045197 ], [ 53.41082, 54.026939 ], [ 53.385826, 53.972763 ], [ 53.290833, 54.02388 ], [ 53.266388, 54.073326 ], [ 53.081383, 54.067497 ], [ 52.941933, 54.20388 ], [ 53.095825, 54.240547 ], [ 53.111107, 54.283882 ], [ 53.047493, 54.34166 ], [ 53.013611, 54.268051 ], [ 52.886383, 54.27388 ], [ 52.861382, 54.31694 ], [ 52.666382, 54.361938 ], [ 52.630272, 54.340828 ], [ 52.537445, 54.377075 ], [ 52.503052, 54.451935 ], [ 52.421661, 54.476654 ], [ 52.225548, 54.446938 ], [ 52.199997, 54.40638 ], [ 52.053322, 54.408325 ], [ 52.019989, 54.436653 ], [ 51.937492, 54.432213 ], [ 51.927216, 54.53611 ], [ 51.802773, 54.532494 ], [ 51.664711, 54.567497 ], [ 51.515274, 54.64444 ], [ 51.493881, 54.595268 ], [ 51.393883, 54.593048 ], [ 51.379158, 54.67527 ], [ 51.289162, 54.638885 ], [ 51.168327, 54.639992 ], [ 51.093605, 54.548607 ], [ 51.00972, 54.551659 ], [ 50.994995, 54.421104 ], [ 50.909988, 54.341377 ], [ 50.879433, 54.376656 ], [ 50.801933, 54.379433 ], [ 50.723877, 54.424995 ], [ 50.624992, 54.399437 ], [ 50.5186, 54.326385 ], [ 50.471657, 54.423325 ], [ 50.429436, 54.42749 ], [ 50.388885, 54.488884 ], [ 50.264717, 54.441658 ], [ 50.225266, 54.503609 ], [ 50.136383, 54.504715 ], [ 50.123604, 54.426941 ], [ 50.199432, 54.384163 ], [ 50.261108, 54.276939 ], [ 50.198044, 54.114761 ], [ 50.191658, 54.033333 ], [ 50.081665, 54.006104 ], [ 49.974434, 53.96138 ], [ 49.953606, 53.905266 ], [ 50.038605, 53.881378 ], [ 50.011665, 53.821381 ], [ 49.857216, 53.833603 ], [ 49.822495, 53.889992 ], [ 49.726654, 53.836655 ], [ 49.609161, 53.854996 ], [ 49.46666, 53.853607 ], [ 49.33638, 53.86721 ], [ 49.31694, 53.833328 ], [ 49.056381, 53.86055 ], [ 48.992493, 53.837494 ], [ 48.863327, 53.712769 ], [ 48.607498, 53.74305 ], [ 48.492493, 53.771103 ], [ 48.468323, 53.737495 ], [ 48.584991, 53.651382 ], [ 48.356384, 53.671104 ], [ 48.378326, 53.471375 ], [ 48.30249, 53.452492 ], [ 48.166382, 53.482491 ], [ 48.048523, 53.477707 ], [ 47.950272, 53.354996 ], [ 48.044998, 53.307495 ], [ 48.104439, 53.248329 ], [ 48.142494, 53.161659 ], [ 48.213608, 53.141663 ], [ 48.144714, 53.059158 ], [ 48.236938, 52.994713 ], [ 48.274712, 53.05999 ], [ 48.368881, 52.968048 ], [ 48.510567, 52.977989 ], [ 48.588882, 52.922218 ], [ 48.586937, 52.868599 ], [ 48.395271, 52.75972 ], [ 48.355553, 52.705826 ], [ 48.403046, 52.671104 ], [ 48.494156, 52.687492 ], [ 48.589432, 52.640549 ], [ 48.704712, 52.641937 ], [ 48.734718, 52.55777 ], [ 48.843048, 52.549995 ], [ 48.890831, 52.411102 ], [ 48.934715, 52.476379 ], [ 49.113052, 52.493607 ], [ 49.165543, 52.48333 ], [ 49.231659, 52.511108 ], [ 49.354164, 52.463051 ], [ 49.471931, 52.330826 ], [ 49.514999, 52.390274 ], [ 49.579994, 52.402489 ], [ 49.619438, 52.321938 ], [ 49.685265, 52.265549 ], [ 49.719437, 52.293053 ], [ 49.809715, 52.193604 ], [ 49.978043, 52.183052 ], [ 50.126656, 52.153877 ], [ 50.214157, 52.03611 ], [ 50.296387, 52.019714 ], [ 50.344994, 52.053322 ], [ 50.393608, 51.996658 ], [ 50.536942, 51.988327 ], [ 50.548332, 51.963326 ], [ 50.669716, 51.954437 ], [ 50.724159, 51.929161 ], [ 50.715271, 51.83416 ], [ 50.7733, 51.76918 ], [ 50.737667, 51.687443 ], [ 50.793026, 51.661388 ], [ 50.78075, 51.598499 ], [ 50.716805, 51.628445 ], [ 50.567638, 51.642445 ], [ 50.514194, 51.601276 ], [ 50.46064, 51.439335 ], [ 50.362251, 51.436584 ], [ 50.336388, 51.375389 ], [ 50.367638, 51.340305 ], [ 50.220306, 51.294277 ], [ 49.952278, 51.240582 ], [ 49.736, 51.114723 ], [ 49.59436, 51.124638 ], [ 49.504082, 51.108334 ], [ 49.420502, 51.129581 ], [ 49.32478, 50.989582 ], [ 49.370083, 50.958168 ], [ 49.410915, 50.858418 ], [ 49.273693, 50.838001 ], [ 49.092972, 50.783474 ], [ 48.938667, 50.658779 ], [ 48.824749, 50.600334 ], [ 48.700527, 50.623165 ], [ 48.632805, 50.662888 ], [ 48.636055, 50.542252 ], [ 48.716835, 50.256027 ], [ 48.779388, 50.180222 ], [ 48.76189, 50.101917 ], [ 48.852196, 50.085667 ], [ 48.877556, 50.023361 ], [ 48.735001, 49.92675 ], [ 48.43325, 49.837971 ], [ 48.348057, 49.828918 ], [ 48.311806, 49.868584 ], [ 48.217918, 49.873055 ], [ 48.216888, 49.909363 ], [ 48.130165, 50.002445 ], [ 48.096474, 50.091389 ], [ 47.989944, 50.148945 ], [ 47.985279, 50.177193 ], [ 47.816555, 50.331306 ], [ 47.744221, 50.378918 ], [ 47.551472, 50.462723 ], [ 47.443611, 50.415943 ], [ 47.397194, 50.335361 ], [ 47.319611, 50.331779 ], [ 47.260918, 50.198917 ], [ 47.339359, 50.105278 ], [ 47.22414, 49.966362 ], [ 47.108665, 49.903137 ], [ 46.892887, 49.839306 ], [ 46.859585, 49.60825 ], [ 46.819889, 49.556946 ], [ 46.782665, 49.332668 ], [ 46.864445, 49.300972 ], [ 47.021446, 49.208889 ], [ 47.052834, 49.164917 ], [ 47.00375, 49.060528 ], [ 46.937611, 49.003666 ], [ 46.7785, 48.938526 ], [ 46.60125, 48.646694 ], [ 46.491859, 48.443001 ], [ 46.771832, 48.356224 ], [ 46.926777, 48.32325 ], [ 47.113777, 48.265499 ], [ 47.118694, 48.155918 ], [ 47.097111, 48.104916 ], [ 47.139416, 48.039944 ], [ 47.017639, 48.0 ], [ 47.161861, 47.836834 ], [ 47.174305, 47.76075 ], [ 47.371277, 47.676918 ], [ 47.406666, 47.812584 ], [ 47.666779, 47.747417 ], [ 48.05825, 47.760639 ], [ 48.182304, 47.678055 ], [ 48.277832, 47.545502 ], [ 48.380695, 47.433582 ], [ 48.60775, 47.414471 ], [ 48.661388, 47.209057 ], [ 48.781334, 47.010887 ], [ 48.970974, 46.83514 ], [ 49.005333, 46.767166 ], [ 48.914055, 46.693138 ], [ 48.751335, 46.687862 ], [ 48.656971, 46.771278 ], [ 48.581223, 46.773945 ], [ 48.511501, 46.733223 ], [ 48.480694, 46.657665 ], [ 48.558693, 46.608276 ], [ 48.645248, 46.604557 ], [ 48.672638, 46.562305 ], [ 48.77589, 46.535889 ], [ 48.816223, 46.480167 ], [ 48.981415, 46.428307 ], [ 49.038887, 46.392223 ], [ 49.178055, 46.351196 ], [ 49.699227, 46.097803 ], [ 49.702064, 46.106518 ], [ 49.712914, 46.104977 ], [ 49.740106, 46.100417 ], [ 50.037642, 45.685671 ], [ 48.974718, 44.522471 ], [ 49.014828, 43.23894 ], [ 49.523443, 42.699501 ], [ 48.683026, 41.923732 ], [ 48.481403, 41.805177 ], [ 48.411472, 41.621529 ], [ 48.193554, 41.50325 ], [ 48.051056, 41.491196 ], [ 48.025139, 41.432335 ], [ 47.940945, 41.35989 ], [ 47.937084, 41.312389 ], [ 47.878807, 41.219223 ], [ 47.719917, 41.197445 ], [ 47.613667, 41.236443 ], [ 47.535915, 41.207195 ], [ 47.478222, 41.268055 ], [ 47.404915, 41.266277 ], [ 47.269859, 41.318474 ], [ 47.22747, 41.442276 ], [ 47.100945, 41.587196 ], [ 47.00975, 41.556026 ], [ 46.895805, 41.731583 ], [ 46.855221, 41.728001 ], [ 46.781166, 41.785389 ], [ 46.748695, 41.863056 ], [ 46.700359, 41.829887 ], [ 46.576778, 41.806557 ], [ 46.539749, 41.873779 ], [ 46.442585, 41.889278 ], [ 46.325054, 41.936501 ], [ 46.226166, 42.001804 ], [ 46.103416, 41.991417 ], [ 46.059917, 42.040779 ], [ 45.946724, 42.02536 ], [ 45.906502, 42.088085 ], [ 45.768696, 42.125832 ], [ 45.60614, 42.218971 ], [ 45.64072, 42.289391 ], [ 45.713554, 42.290554 ], [ 45.731251, 42.38586 ], [ 45.772888, 42.436333 ], [ 45.751415, 42.485889 ], [ 45.69561, 42.484833 ], [ 45.47086, 42.555195 ], [ 45.349998, 42.529026 ], [ 45.176529, 42.690693 ], [ 45.035057, 42.701248 ], [ 44.971054, 42.744583 ], [ 44.87825, 42.746918 ], [ 44.798195, 42.631721 ], [ 44.746498, 42.644028 ], [ 44.727417, 42.720585 ], [ 44.66214, 42.750252 ], [ 44.523304, 42.751167 ], [ 44.503471, 42.701332 ], [ 44.323334, 42.71339 ], [ 44.256611, 42.688721 ], [ 44.209026, 42.626751 ], [ 44.034721, 42.605026 ], [ 43.948082, 42.558472 ], [ 43.731388, 42.627556 ], [ 43.803749, 42.718361 ], [ 43.790859, 42.750084 ], [ 43.64489, 42.799862 ], [ 43.561695, 42.866085 ], [ 43.465168, 42.890862 ], [ 43.34314, 42.889999 ], [ 43.192081, 42.934444 ], [ 43.026611, 43.049862 ], [ 43.038582, 43.090611 ], [ 42.930862, 43.138306 ], [ 42.893471, 43.179085 ], [ 42.681721, 43.173721 ], [ 42.682999, 43.137112 ], [ 42.488529, 43.206306 ], [ 42.439888, 43.255749 ], [ 42.323891, 43.214722 ], [ 42.181332, 43.21711 ], [ 42.038582, 43.196835 ], [ 41.878193, 43.246082 ], [ 41.814751, 43.203804 ], [ 41.5825, 43.23539 ], [ 41.478668, 43.296833 ], [ 41.42025, 43.353111 ], [ 41.284084, 43.3535 ], [ 41.139194, 43.394585 ], [ 41.043221, 43.39072 ], [ 40.997055, 43.431641 ], [ 40.948971, 43.422112 ], [ 40.879028, 43.485001 ], [ 40.831833, 43.4855 ], [ 40.668777, 43.558193 ], [ 40.571835, 43.516109 ], [ 40.44186, 43.5555 ], [ 40.33522, 43.552639 ], [ 40.272083, 43.583363 ], [ 40.092304, 43.554501 ], [ 40.010139, 43.424057 ], [ 40.019804, 43.260315 ], [ 40.155147, 43.214715 ], [ 40.177935, 43.123848 ], [ 40.300248, 43.032428 ], [ 40.399979, 43.039836 ], [ 40.550589, 42.975861 ], [ 40.808381, 42.962507 ], [ 40.912604, 42.874271 ], [ 40.978565, 42.861593 ], [ 41.013815, 42.766582 ], [ 41.124252, 42.682127 ], [ 41.220598, 42.680472 ], [ 41.364503, 42.63373 ], [ 41.41097, 42.49733 ], [ 41.446283, 42.341732 ], [ 41.497285, 42.292042 ], [ 41.506935, 42.200339 ], [ 41.546852, 42.077236 ], [ 41.640671, 41.96299 ], [ 41.656268, 41.863585 ], [ 41.616676, 41.776286 ], [ 41.484898, 41.685788 ], [ 41.456593, 41.623731 ], [ 41.546117, 41.523018 ], [ 41.654945, 41.483612 ], [ 41.708832, 41.497723 ], [ 41.823112, 41.434612 ], [ 41.955193, 41.524639 ], [ 42.053585, 41.495499 ], [ 42.183887, 41.5145 ], [ 42.407665, 41.466583 ], [ 42.447083, 41.440445 ], [ 42.510113, 41.468613 ], [ 42.58411, 41.570251 ], [ 42.677834, 41.597252 ], [ 42.783611, 41.57822 ], [ 42.809612, 41.492668 ], [ 42.866196, 41.499111 ], [ 42.969582, 41.4515 ], [ 43.024776, 41.37825 ], [ 43.202332, 41.300362 ], [ 43.231777, 41.192749 ], [ 43.355362, 41.201248 ], [ 43.437222, 41.17939 ], [ 43.472168, 41.027973 ], [ 43.599415, 40.985638 ], [ 43.67178, 40.933445 ], [ 43.676109, 40.844444 ], [ 43.748695, 40.735943 ], [ 43.749363, 40.681583 ], [ 43.689751, 40.591473 ], [ 43.547417, 40.477554 ], [ 43.609196, 40.433056 ], [ 43.592667, 40.345444 ], [ 43.639332, 40.271252 ], [ 43.681915, 40.257057 ], [ 43.655472, 40.110779 ], [ 43.769917, 40.079529 ], [ 43.905472, 40.018471 ], [ 44.127529, 40.023888 ], [ 44.278973, 40.045387 ], [ 44.488693, 39.965057 ], [ 44.557556, 39.903778 ], [ 44.598526, 39.828835 ], [ 44.722195, 39.761971 ], [ 44.812752, 39.676998 ], [ 44.820251, 39.625252 ], [ 44.721916, 39.707279 ], [ 44.606556, 39.773361 ], [ 44.487057, 39.686554 ], [ 44.489613, 39.630138 ], [ 44.436195, 39.560665 ], [ 44.441113, 39.43589 ], [ 44.301723, 39.371471 ], [ 44.224304, 39.410278 ], [ 44.15789, 39.392971 ], [ 44.069805, 39.405304 ], [ 44.050777, 39.357277 ], [ 44.111694, 39.286446 ], [ 44.12661, 39.189445 ], [ 44.218388, 39.138638 ], [ 44.187416, 39.012474 ], [ 44.20261, 38.931 ], [ 44.255974, 38.855083 ], [ 44.316139, 38.833862 ], [ 44.277195, 38.716026 ], [ 44.332527, 38.628971 ], [ 44.339527, 38.502834 ], [ 44.323002, 38.382446 ], [ 44.399334, 38.364861 ], [ 44.446777, 38.385582 ], [ 44.50539, 38.318443 ], [ 44.426918, 38.278168 ], [ 44.401333, 38.140972 ], [ 44.364082, 38.12714 ], [ 44.281555, 38.00325 ], [ 44.238861, 37.887112 ], [ 44.416443, 37.854084 ], [ 44.476665, 37.765499 ], [ 44.597111, 37.763748 ], [ 44.638306, 37.716305 ], [ 44.58086, 37.646526 ], [ 44.638474, 37.603638 ], [ 44.601166, 37.445332 ], [ 44.823307, 37.307556 ], [ 44.778221, 37.223999 ], [ 44.805027, 37.165638 ], [ 44.752834, 37.11211 ], [ 44.805958, 37.046024 ], [ 44.900314, 37.022255 ], [ 44.882393, 36.954742 ], [ 44.900867, 36.857784 ], [ 44.841389, 36.819237 ], [ 44.848652, 36.777676 ], [ 44.937828, 36.785999 ], [ 45.031231, 36.74086 ], [ 45.063648, 36.690651 ], [ 45.028187, 36.606369 ], [ 45.077896, 36.431511 ], [ 45.114868, 36.406071 ], [ 45.237682, 36.431957 ], [ 45.304611, 36.274082 ], [ 45.349995, 36.110004 ], [ 45.381786, 36.079632 ], [ 45.341816, 36.008949 ], [ 45.39399, 35.968491 ], [ 45.478889, 36.00235 ], [ 45.550285, 36.001244 ], [ 45.667145, 35.925526 ], [ 45.756561, 35.808502 ], [ 45.832153, 35.809589 ], [ 45.895645, 35.839081 ], [ 46.025501, 35.835968 ], [ 46.094177, 35.868767 ], [ 46.16732, 35.801903 ], [ 46.337917, 35.820007 ], [ 46.288277, 35.734028 ], [ 46.198341, 35.721313 ], [ 46.166203, 35.689564 ], [ 46.035828, 35.705196 ], [ 46.007717, 35.675964 ], [ 46.013, 35.594025 ], [ 45.986301, 35.495998 ], [ 46.07465, 35.365219 ], [ 46.142834, 35.315395 ], [ 46.130505, 35.227905 ], [ 46.159702, 35.088554 ], [ 46.071068, 35.082603 ], [ 46.067703, 35.043419 ], [ 45.96846, 35.074341 ], [ 45.874699, 35.033764 ], [ 45.897751, 34.959206 ], [ 45.865498, 34.89595 ], [ 45.704102, 34.790398 ], [ 45.654358, 34.722961 ], [ 45.702236, 34.694572 ], [ 45.738312, 34.588512 ], [ 45.608795, 34.55164 ], [ 45.538193, 34.601097 ], [ 45.507957, 34.472614 ], [ 45.440704, 34.460194 ], [ 45.466599, 34.38372 ], [ 45.561871, 34.331779 ], [ 45.5816, 34.146217 ], [ 45.474007, 34.077274 ], [ 45.47765, 34.036087 ], [ 45.409645, 33.978355 ], [ 45.489647, 33.949272 ], [ 45.552635, 33.889709 ], [ 45.639931, 33.742882 ], [ 45.719105, 33.662601 ], [ 45.771362, 33.638439 ], [ 45.87114, 33.635273 ], [ 46.006557, 33.508701 ], [ 46.070934, 33.402767 ], [ 46.080502, 33.352596 ], [ 46.191109, 33.263409 ], [ 46.186466, 33.171791 ], [ 46.041801, 33.09565 ], [ 46.156956, 33.073341 ], [ 46.097404, 32.981209 ], [ 46.173553, 32.953419 ], [ 46.31245, 32.968979 ], [ 46.480782, 32.916199 ], [ 46.622738, 32.822308 ], [ 46.720791, 32.786476 ], [ 46.887184, 32.632034 ], [ 47.000336, 32.570389 ], [ 47.168301, 32.457302 ], [ 47.245956, 32.463505 ], [ 47.283306, 32.497593 ], [ 47.392735, 32.466084 ], [ 47.466228, 32.379608 ], [ 47.462196, 32.31591 ], [ 47.567551, 32.192177 ], [ 47.5947, 32.124798 ], [ 47.707352, 32.005524 ], [ 47.729427, 31.944208 ], [ 47.810123, 31.882671 ], [ 47.808762, 31.843676 ], [ 47.865818, 31.783682 ], [ 47.683044, 31.394873 ], [ 47.681652, 30.999229 ], [ 48.032211, 30.997009 ], [ 48.026402, 30.482599 ], [ 48.165577, 30.424028 ], [ 48.192463, 30.333328 ], [ 48.268608, 30.338013 ], [ 48.412003, 30.196175 ], [ 48.387306, 30.112728 ], [ 48.443783, 30.064909 ], [ 48.453453, 29.998596 ], [ 48.575182, 29.930143 ], [ 48.767059, 29.89588 ], [ 48.889137, 29.889001 ], [ 48.98129, 29.920143 ], [ 49.041311, 29.993204 ], [ 49.132045, 29.976816 ], [ 49.213519, 30.020537 ], [ 49.391276, 30.026433 ], [ 49.403717, 29.992481 ], [ 49.502186, 29.892152 ], [ 49.565833, 29.877722 ], [ 49.663991, 29.911361 ], [ 49.955092, 30.085554 ], [ 50.003744, 30.091784 ], [ 50.03182, 30.035701 ], [ 50.027575, 29.918525 ], [ 50.048639, 29.868868 ], [ 50.170232, 29.751346 ], [ 50.251906, 29.637429 ], [ 50.397764, 29.520737 ], [ 50.424384, 29.475987 ], [ 50.546071, 29.356282 ], [ 50.546128, 29.262745 ], [ 50.522478, 29.199939 ], [ 50.52998, 29.118682 ], [ 50.618845, 28.998617 ], [ 50.698723, 28.965176 ], [ 50.719345, 28.845913 ], [ 50.797946, 28.745515 ], [ 50.865355, 28.703541 ], [ 50.943212, 28.697842 ], [ 50.992943, 28.438423 ], [ 51.089717, 28.271828 ], [ 51.161412, 28.19188 ], [ 51.171436, 28.04329 ], [ 51.217766, 27.947104 ], [ 51.28907, 27.891072 ], [ 51.373843, 27.756757 ], [ 51.445411, 27.724289 ], [ 51.52659, 27.745097 ], [ 51.707998, 27.703812 ], [ 51.848242, 27.72308 ], [ 51.999448, 27.719131 ], [ 52.141639, 27.599535 ], [ 52.425915, 27.506966 ], [ 52.478136, 27.442714 ], [ 52.465203, 27.354083 ], [ 52.5, 27.291387 ], [ 52.5, 24.915511 ], [ 51.628581, 24.482032 ], [ 51.47566, 24.391784 ], [ 51.583305, 24.239895 ], [ 51.583332, 24.116781 ], [ 52.583302, 22.9389 ], [ 55.141727, 22.634071 ], [ 55.210827, 22.705933 ], [ 55.666698, 22.0 ], [ 55.0, 20.0 ], [ 52.0, 19.0 ], [ 52.7822, 17.349701 ], [ 53.107059, 16.654402 ], [ 53.124853, 16.53446 ], [ 52.997494, 16.504685 ], [ 52.873852, 16.452031 ], [ 52.563711, 16.340577 ], [ 52.5, 16.30734 ], [ 52.5, 13.0 ], [ 54.8, 13.0 ], [ 54.8, 11.7 ], [ 52.5, 11.7 ], [ 52.5, -8.0 ], [ 45.5, -8.0 ], [ 45.5, -10.9 ], [ 52.5, -10.9 ], [ 52.5, -45.2 ], [ 49.5, -45.2 ], [ 49.5, -47.7 ], [ 52.5, -47.7 ], [ 52.5, -90.0 ] ] ] ] } }, +{ "type": "Feature", "properties": { "name": "+2" }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 27.813839, 36.516865 ], [ 27.849569, 36.506787 ], [ 27.986924, 36.53803 ], [ 28.107062, 36.570525 ], [ 28.182023, 36.660566 ], [ 28.297968, 36.701951 ], [ 28.343807, 36.788777 ], [ 28.443095, 36.754471 ], [ 28.597172, 36.776374 ], [ 28.608017, 36.694775 ], [ 28.777345, 36.667044 ], [ 28.846751, 36.570267 ], [ 29.031023, 36.519126 ], [ 29.105013, 36.526149 ], [ 29.084261, 36.396673 ], [ 29.104835, 36.360998 ], [ 29.228023, 36.308009 ], [ 29.345902, 36.189077 ], [ 29.556677, 36.089724 ], [ 29.628499, 36.078617 ], [ 29.744664, 36.091376 ], [ 29.833951, 36.142371 ], [ 29.878639, 36.142132 ], [ 30.065563, 36.226988 ], [ 30.157324, 36.240574 ], [ 30.170239, 36.278847 ], [ 30.26894, 36.28693 ], [ 30.381568, 36.227524 ], [ 30.38367, 36.159192 ], [ 30.491463, 36.204867 ], [ 30.509873, 36.297276 ], [ 30.543979, 36.354658 ], [ 30.505972, 36.40447 ], [ 30.585307, 36.514893 ], [ 30.612281, 36.586258 ], [ 30.578336, 36.61838 ], [ 30.596972, 36.678994 ], [ 30.594942, 36.783023 ], [ 30.68501, 36.866388 ], [ 30.753825, 36.831205 ], [ 31.006389, 36.841066 ], [ 31.154064, 36.812965 ], [ 31.296948, 36.799793 ], [ 31.380541, 36.751568 ], [ 31.564928, 36.691595 ], [ 31.669599, 36.628282 ], [ 31.772781, 36.587067 ], [ 32.021783, 36.522662 ], [ 32.083872, 36.478878 ], [ 32.25528, 36.277984 ], [ 32.285485, 36.220401 ], [ 32.478731, 36.092872 ], [ 32.561277, 36.078683 ], [ 32.676855, 36.019013 ], [ 32.812485, 35.99957 ], [ 32.952396, 36.080213 ], [ 33.098746, 36.053076 ], [ 33.140324, 36.107587 ], [ 33.404709, 36.108039 ], [ 33.458171, 36.132648 ], [ 33.578672, 36.10948 ], [ 33.643819, 36.165307 ], [ 33.697227, 36.111916 ], [ 33.798071, 36.169776 ], [ 33.805449, 36.207634 ], [ 33.885926, 36.29427 ], [ 33.935011, 36.259865 ], [ 33.938147, 36.199401 ], [ 34.03996, 36.286376 ], [ 34.10765, 36.32121 ], [ 34.10657, 36.404003 ], [ 34.184381, 36.452612 ], [ 34.298992, 36.573746 ], [ 34.435078, 36.643446 ], [ 34.597873, 36.763973 ], [ 34.728941, 36.79614 ], [ 34.826579, 36.78303 ], [ 34.91467, 36.698122 ], [ 35.016977, 36.691497 ], [ 35.105575, 36.642882 ], [ 35.370143, 36.531601 ], [ 35.780401, 36.2768 ], [ 35.927456, 36.086068 ], [ 35.967259, 36.014758 ], [ 35.909499, 35.962009 ], [ 35.935806, 35.918667 ], [ 35.993637, 35.939304 ], [ 36.014832, 35.889862 ], [ 36.183056, 35.835583 ], [ 36.180916, 35.901749 ], [ 36.212723, 35.9515 ], [ 36.317196, 36.004112 ], [ 36.368362, 35.994804 ], [ 36.397835, 36.083752 ], [ 36.376694, 36.169388 ], [ 36.403389, 36.22636 ], [ 36.471054, 36.201805 ], [ 36.54261, 36.238056 ], [ 36.609249, 36.217529 ], [ 36.706028, 36.255165 ], [ 36.669193, 36.326168 ], [ 36.593224, 36.394222 ], [ 36.553028, 36.50111 ], [ 36.604168, 36.579056 ], [ 36.591862, 36.650112 ], [ 36.638695, 36.711555 ], [ 36.623974, 36.747082 ], [ 36.678196, 36.811195 ], [ 36.739029, 36.824196 ], [ 36.902668, 36.777695 ], [ 36.944363, 36.78125 ], [ 37.056641, 36.712696 ], [ 37.033249, 36.678444 ], [ 37.091, 36.623638 ], [ 37.126835, 36.661667 ], [ 37.266445, 36.664944 ], [ 37.46114, 36.638138 ], [ 37.65514, 36.731415 ], [ 37.791195, 36.748585 ], [ 37.908028, 36.785694 ], [ 38.200474, 36.908001 ], [ 38.407833, 36.89539 ], [ 38.563389, 36.838833 ], [ 38.731472, 36.707474 ], [ 38.847057, 36.696693 ], [ 39.020222, 36.703304 ], [ 39.22736, 36.665001 ], [ 39.841835, 36.755333 ], [ 40.180862, 36.878693 ], [ 40.461834, 37.014862 ], [ 40.546276, 37.026722 ], [ 40.781723, 37.120583 ], [ 40.858082, 37.10836 ], [ 40.921082, 37.12711 ], [ 41.16975, 37.092251 ], [ 41.218418, 37.06361 ], [ 41.285973, 37.080139 ], [ 41.500862, 37.079556 ], [ 41.65736, 37.112415 ], [ 41.75864, 37.117474 ], [ 41.97514, 37.159584 ], [ 42.10611, 37.21286 ], [ 42.193943, 37.282196 ], [ 42.307304, 37.261307 ], [ 42.357418, 37.227528 ], [ 42.337082, 37.174862 ], [ 42.365383, 37.062817 ], [ 42.249981, 36.966579 ], [ 41.881336, 36.635925 ], [ 41.813816, 36.587322 ], [ 41.396603, 36.521912 ], [ 41.2813, 36.350033 ], [ 41.253185, 36.057495 ], [ 41.366165, 35.840164 ], [ 41.369408, 35.624329 ], [ 41.262325, 35.474613 ], [ 41.261246, 35.37109 ], [ 41.216599, 35.249428 ], [ 41.206741, 35.142288 ], [ 41.230854, 34.781715 ], [ 41.12508, 34.660854 ], [ 41.001579, 34.420135 ], [ 40.958046, 34.382568 ], [ 40.667431, 34.333775 ], [ 39.79586, 33.893417 ], [ 38.789616, 33.37125 ], [ 39.085999, 32.501499 ], [ 38.986, 32.477699 ], [ 39.043701, 32.304001 ], [ 39.259998, 32.355499 ], [ 39.301201, 32.230202 ], [ 38.995914, 31.996464 ], [ 38.243687, 31.816307 ], [ 37.000896, 31.500114 ], [ 37.499954, 31.006445 ], [ 37.511337, 30.996246 ], [ 37.744904, 30.767195 ], [ 37.997158, 30.500607 ], [ 37.665539, 30.332651 ], [ 37.499115, 29.999039 ], [ 36.753536, 29.868496 ], [ 36.504536, 29.499941 ], [ 36.070099, 29.185036 ], [ 35.02702, 29.34918 ], [ 34.957981, 29.357397 ], [ 34.884361, 29.139139 ], [ 34.864887, 29.008167 ], [ 34.832195, 28.92075 ], [ 34.834084, 28.811445 ], [ 34.775776, 28.66375 ], [ 34.806252, 28.523556 ], [ 34.755001, 28.443361 ], [ 34.666889, 28.222639 ], [ 34.609943, 28.141445 ], [ 34.631222, 28.026501 ], [ 34.703556, 28.128416 ], [ 34.758915, 28.096083 ], [ 34.81139, 28.111029 ], [ 34.930138, 28.077723 ], [ 35.05611, 28.116249 ], [ 35.164612, 28.010361 ], [ 35.266361, 27.951 ], [ 35.353054, 27.836666 ], [ 35.424835, 27.774221 ], [ 35.481804, 27.655416 ], [ 35.530499, 27.6005 ], [ 35.546112, 27.50975 ], [ 35.667057, 27.356806 ], [ 35.739723, 27.321972 ], [ 35.803417, 27.235666 ], [ 35.804779, 27.113222 ], [ 35.998444, 26.908751 ], [ 36.167667, 26.677305 ], [ 36.230415, 26.625723 ], [ 36.289749, 26.538305 ], [ 36.347557, 26.404249 ], [ 36.483555, 26.18 ], [ 36.498165, 26.115555 ], [ 36.581722, 26.057444 ], [ 36.652889, 26.057501 ], [ 36.70686, 26.022112 ], [ 36.703304, 25.933945 ], [ 36.649113, 25.857056 ], [ 36.702415, 25.815222 ], [ 36.712776, 25.747389 ], [ 36.821751, 25.746529 ], [ 36.879555, 25.673111 ], [ 36.935665, 25.647028 ], [ 37.000526, 25.543638 ], [ 37.009388, 25.490499 ], [ 37.07486, 25.439888 ], [ 37.089611, 25.344889 ], [ 37.251972, 25.160944 ], [ 37.244778, 25.07725 ], [ 37.285583, 24.987862 ], [ 37.224751, 24.838833 ], [ 37.224888, 24.70825 ], [ 37.296585, 24.671223 ], [ 37.462387, 24.43314 ], [ 37.423832, 24.392889 ], [ 37.5, 24.289109 ], [ 37.5, 23.146889 ], [ 35.62336, 23.146889 ], [ 35.601749, 23.128056 ], [ 35.212166, 22.787306 ], [ 34.951363, 22.857584 ], [ 34.691944, 22.297916 ], [ 34.160694, 22.207083 ], [ 34.005222, 21.772333 ], [ 33.564083, 21.725389 ], [ 33.1665, 22.006195 ], [ 32.023193, 22.003222 ], [ 31.412111, 22.008139 ], [ 31.435528, 22.081194 ], [ 31.512888, 22.18075 ], [ 31.468805, 22.222834 ], [ 31.356916, 22.114973 ], [ 31.318527, 22.006416 ], [ 30.977528, 22.008528 ], [ 29.866083, 22.004583 ], [ 27.633972, 22.007639 ], [ 26.947445, 22.005194 ], [ 25.13925, 22.004444 ], [ 25.0, 21.999195 ], [ 25.0, 20.0 ], [ 24.0, 20.0 ], [ 24.0, 19.508045 ], [ 21.680883, 20.705065 ], [ 20.921785, 21.086548 ], [ 20.668764, 21.210119 ], [ 20.350657, 21.373545 ], [ 18.726076, 22.167698 ], [ 16.981932, 22.997187 ], [ 15.99817, 23.450369 ], [ 15.441402, 23.206142 ], [ 14.995867, 23.001894 ], [ 14.189322, 22.644482 ], [ 13.680397, 23.072237 ], [ 13.544736, 23.157 ], [ 13.397975, 23.217527 ], [ 12.000672, 23.515301 ], [ 11.979548, 23.525026 ], [ 11.708302, 24.0 ], [ 11.606182, 24.249044 ], [ 11.434692, 24.190147 ], [ 11.124939, 24.400797 ], [ 11.012614, 24.460443 ], [ 10.694419, 24.567823 ], [ 10.493262, 24.488976 ], [ 10.396629, 24.511049 ], [ 10.239261, 24.611713 ], [ 10.185399, 24.793644 ], [ 10.040716, 24.877232 ], [ 10.041826, 25.327713 ], [ 9.774089, 25.689426 ], [ 9.387854, 26.183851 ], [ 9.456484, 26.259447 ], [ 9.520967, 26.374914 ], [ 9.876212, 26.520399 ], [ 9.927657, 26.642883 ], [ 9.908139, 26.726736 ], [ 9.934465, 26.842993 ], [ 9.841372, 26.984644 ], [ 9.829903, 27.142771 ], [ 9.773975, 27.263884 ], [ 9.774294, 27.346806 ], [ 9.806441, 27.47028 ], [ 9.850559, 27.499243 ], [ 9.923803, 27.700525 ], [ 9.935256, 27.828119 ], [ 9.961322, 27.888329 ], [ 9.869641, 28.144865 ], [ 9.835972, 28.28989 ], [ 9.874373, 28.659489 ], [ 9.877125, 29.044134 ], [ 9.792983, 29.430895 ], [ 9.549048, 29.914858 ], [ 9.418528, 30.055389 ], [ 9.395223, 30.171223 ], [ 9.545639, 30.234472 ], [ 9.616138, 30.25025 ], [ 9.744278, 30.315971 ], [ 9.888917, 30.349194 ], [ 9.94725, 30.393583 ], [ 10.019861, 30.505527 ], [ 10.213223, 30.713139 ], [ 10.277833, 30.824612 ], [ 10.307777, 30.908972 ], [ 10.275167, 31.026806 ], [ 10.287639, 31.082611 ], [ 10.147528, 31.406973 ], [ 10.140611, 31.493305 ], [ 10.291166, 31.690111 ], [ 10.364889, 31.734388 ], [ 10.441028, 31.727306 ], [ 10.529805, 31.747305 ], [ 10.635305, 31.86511 ], [ 10.639139, 31.967945 ], [ 10.794695, 32.0 ], [ 10.857944, 32.11039 ], [ 10.982083, 32.186722 ], [ 11.204166, 32.276722 ], [ 11.366389, 32.322361 ], [ 11.527333, 32.402805 ], [ 11.598278, 32.523556 ], [ 11.508472, 32.613445 ], [ 11.488806, 32.667667 ], [ 11.507667, 32.843193 ], [ 11.489223, 32.892834 ], [ 11.532056, 33.086056 ], [ 11.53775, 33.094666 ], [ 11.543583, 33.167835 ], [ 11.545759, 33.289132 ], [ 11.661227, 33.248158 ], [ 11.726739, 33.24946 ], [ 11.952414, 33.165272 ], [ 12.129028, 33.058773 ], [ 12.350485, 32.950613 ], [ 12.568329, 32.918734 ], [ 12.74938, 32.912743 ], [ 12.908093, 32.933759 ], [ 13.175979, 33.025714 ], [ 13.299519, 33.031881 ], [ 13.438143, 33.010139 ], [ 13.631172, 32.910502 ], [ 13.80842, 32.920016 ], [ 13.985654, 32.88777 ], [ 14.0601, 32.847265 ], [ 14.207177, 32.832147 ], [ 14.286406, 32.805531 ], [ 14.534158, 32.627797 ], [ 14.686599, 32.603748 ], [ 14.781642, 32.560975 ], [ 14.883394, 32.565434 ], [ 15.148143, 32.529129 ], [ 15.302779, 32.468976 ], [ 15.391333, 32.378581 ], [ 15.47326, 32.213888 ], [ 15.488315, 32.148027 ], [ 15.480747, 32.014131 ], [ 15.518066, 31.89794 ], [ 15.618723, 31.697807 ], [ 15.738025, 31.547652 ], [ 15.873515, 31.471759 ], [ 16.068606, 31.396647 ], [ 16.377599, 31.342797 ], [ 16.577506, 31.336353 ], [ 16.703421, 31.343232 ], [ 17.009268, 31.290229 ], [ 17.356588, 31.201754 ], [ 17.428466, 31.194834 ], [ 17.521656, 31.134248 ], [ 17.7538, 31.059073 ], [ 17.882423, 31.041133 ], [ 17.977327, 30.963101 ], [ 18.241787, 30.890431 ], [ 18.292465, 30.860452 ], [ 18.390376, 30.759897 ], [ 18.583481, 30.632682 ], [ 18.645424, 30.606626 ], [ 18.739091, 30.515098 ], [ 18.83237, 30.496731 ], [ 18.995993, 30.397033 ], [ 19.1823, 30.386394 ], [ 19.330699, 30.425982 ], [ 19.528991, 30.531192 ], [ 19.580893, 30.539563 ], [ 19.695546, 30.617931 ], [ 19.815016, 30.73481 ], [ 19.954236, 30.91222 ], [ 20.04781, 31.097097 ], [ 20.054619, 31.145835 ], [ 20.018457, 31.22471 ], [ 19.933054, 31.325514 ], [ 19.876702, 31.451549 ], [ 19.840006, 31.63572 ], [ 19.811999, 31.697095 ], [ 19.804963, 31.827571 ], [ 19.82885, 31.992069 ], [ 19.866515, 32.070043 ], [ 19.933884, 32.131678 ], [ 20.012814, 32.269974 ], [ 20.297318, 32.514331 ], [ 20.502507, 32.648877 ], [ 20.842195, 32.788068 ], [ 20.889651, 32.821557 ], [ 21.036188, 32.876265 ], [ 21.110041, 32.888696 ], [ 21.346922, 32.893608 ], [ 21.400362, 32.910388 ], [ 21.579109, 33.033233 ], [ 21.696267, 33.058011 ], [ 21.919088, 33.014991 ], [ 22.033702, 33.021819 ], [ 22.170846, 33.051816 ], [ 22.277195, 32.991571 ], [ 22.418308, 32.981444 ], [ 22.5, 32.948601 ], [ 22.5, 36.270335 ], [ 22.429945, 36.28035 ], [ 22.369472, 36.350123 ], [ 22.262499, 36.424546 ], [ 22.234535, 36.482136 ], [ 22.246227, 36.641495 ], [ 22.163518, 36.773651 ], [ 22.092156, 36.781021 ], [ 21.985811, 36.618335 ], [ 21.90392, 36.574218 ], [ 21.730762, 36.593439 ], [ 21.64749, 36.630701 ], [ 21.590919, 36.682134 ], [ 21.57781, 36.811432 ], [ 21.540993, 36.922945 ], [ 21.47912, 36.946091 ], [ 21.423, 37.04278 ], [ 21.472581, 37.248885 ], [ 21.56712, 37.335778 ], [ 21.485772, 37.452334 ], [ 21.362906, 37.525507 ], [ 21.277143, 37.52051 ], [ 21.210875, 37.565371 ], [ 21.181881, 37.628279 ], [ 21.18377, 37.697222 ], [ 21.116831, 37.717498 ], [ 21.081324, 37.618624 ], [ 21.007995, 37.579029 ], [ 20.954648, 37.583685 ], [ 20.898255, 37.54144 ], [ 20.820126, 37.528716 ], [ 20.747559, 37.551379 ], [ 20.615644, 37.658029 ], [ 20.515049, 37.775316 ], [ 20.505984, 37.875361 ], [ 20.549094, 37.972314 ], [ 20.451172, 38.001844 ], [ 20.409381, 38.037529 ], [ 20.333213, 38.046789 ], [ 20.26213, 38.089772 ], [ 20.219368, 38.17683 ], [ 20.243689, 38.305937 ], [ 20.295735, 38.420322 ], [ 20.363923, 38.473808 ], [ 20.421996, 38.475786 ], [ 20.449138, 38.733084 ], [ 20.504743, 38.851691 ], [ 20.586692, 38.933426 ], [ 20.585972, 38.990404 ], [ 20.457626, 39.097668 ], [ 20.377884, 39.146658 ], [ 20.353959, 39.070843 ], [ 20.26722, 39.016616 ], [ 20.200349, 39.022438 ], [ 20.082439, 39.099145 ], [ 20.019891, 39.166315 ], [ 20.002994, 39.274805 ], [ 19.8008, 39.360629 ], [ 19.697783, 39.501984 ], [ 19.587015, 39.598576 ], [ 19.558596, 39.6434 ], [ 19.454679, 39.664054 ], [ 19.412806, 39.713118 ], [ 19.300994, 39.743528 ], [ 19.254445, 39.85022 ], [ 19.289853, 39.948915 ], [ 19.364765, 39.992366 ], [ 19.480972, 39.978453 ], [ 19.602778, 40.028653 ], [ 19.8736, 40.039485 ], [ 19.933083, 39.945946 ], [ 19.916889, 39.903641 ], [ 19.992056, 39.871529 ], [ 20.013361, 39.827251 ], [ 19.978834, 39.7705 ], [ 20.017031, 39.697521 ], [ 20.190916, 39.644882 ], [ 20.299721, 39.715225 ], [ 20.305878, 39.815445 ], [ 20.390425, 39.788277 ], [ 20.416054, 39.837952 ], [ 20.323957, 39.991955 ], [ 20.395424, 39.998947 ], [ 20.409992, 40.045486 ], [ 20.409992, 40.046207 ], [ 20.51166, 40.082699 ], [ 20.549414, 40.063492 ], [ 20.671606, 40.097973 ], [ 20.707558, 40.268444 ], [ 20.792316, 40.383209 ], [ 20.785191, 40.423073 ], [ 20.844213, 40.480377 ], [ 20.948006, 40.466446 ], [ 20.967579, 40.518303 ], [ 21.042191, 40.557953 ], [ 21.057281, 40.667603 ], [ 20.983522, 40.738068 ], [ 20.980568, 40.855221 ], [ 21.157011, 40.858349 ], [ 21.21295, 40.883812 ], [ 21.259954, 40.859879 ], [ 21.361689, 40.879059 ], [ 21.417091, 40.918034 ], [ 21.524864, 40.909939 ], [ 21.567787, 40.866589 ], [ 21.705103, 40.944347 ], [ 21.756752, 40.925259 ], [ 21.800362, 40.974838 ], [ 21.909302, 41.046192 ], [ 21.931063, 41.103779 ], [ 22.067457, 41.156757 ], [ 22.129551, 41.12344 ], [ 22.172552, 41.157513 ], [ 22.260443, 41.166183 ], [ 22.333298, 41.1287 ], [ 22.465981, 41.117085 ], [ 22.61149, 41.12944 ], [ 22.666767, 41.186508 ], [ 22.747747, 41.16547 ], [ 22.764927, 41.323154 ], [ 22.936724, 41.340839 ], [ 22.9671, 41.566593 ], [ 22.951115, 41.64201 ], [ 23.033573, 41.708698 ], [ 22.970232, 41.770435 ], [ 22.873531, 41.935867 ], [ 22.865559, 42.022278 ], [ 22.674755, 42.065029 ], [ 22.528339, 42.1399 ], [ 22.43409, 42.258072 ], [ 22.366102, 42.32132 ], [ 22.461, 42.340885 ], [ 22.516245, 42.393398 ], [ 22.55331, 42.50034 ], [ 22.440367, 42.589115 ], [ 22.486229, 42.750229 ], [ 22.4384, 42.822567 ], [ 22.6229, 42.893631 ], [ 22.682247, 42.863628 ], [ 22.750811, 42.889996 ], [ 22.78912, 42.980614 ], [ 22.897285, 43.038254 ], [ 22.980762, 43.111023 ], [ 23.005156, 43.18718 ], [ 22.897867, 43.224972 ], [ 22.827429, 43.328751 ], [ 22.767479, 43.376877 ], [ 22.676462, 43.395245 ], [ 22.534889, 43.470406 ], [ 22.489939, 43.556316 ], [ 22.476746, 43.656979 ], [ 22.408287, 43.697819 ], [ 22.356945, 43.812294 ], [ 22.408676, 43.939667 ], [ 22.408533, 44.005283 ], [ 22.531092, 44.020657 ], [ 22.621105, 44.062893 ], [ 22.611485, 44.1133 ], [ 22.67008, 44.284798 ], [ 22.566397, 44.303169 ], [ 22.525211, 44.339157 ], [ 22.49934, 44.422344 ], [ 22.515999, 44.474724 ], [ 22.582167, 44.548164 ], [ 22.693169, 44.516361 ], [ 22.751619, 44.533192 ], [ 22.712875, 44.599995 ], [ 22.580832, 44.632389 ], [ 22.464455, 44.714977 ], [ 22.331902, 44.674446 ], [ 22.27734, 44.628353 ], [ 22.180405, 44.480103 ], [ 22.130028, 44.476749 ], [ 22.026606, 44.562595 ], [ 21.990036, 44.633564 ], [ 21.765202, 44.660263 ], [ 21.629421, 44.659836 ], [ 21.612267, 44.726719 ], [ 21.552271, 44.769863 ], [ 21.397186, 44.778271 ], [ 21.367008, 44.866585 ], [ 21.559759, 44.888809 ], [ 21.546654, 44.930595 ], [ 21.406219, 44.977875 ], [ 21.456003, 45.041126 ], [ 21.51405, 45.170567 ], [ 21.402584, 45.22842 ], [ 21.276138, 45.229836 ], [ 21.202452, 45.264881 ], [ 21.176018, 45.32515 ], [ 21.096163, 45.296017 ], [ 21.06389, 45.331726 ], [ 20.950686, 45.373135 ], [ 20.867966, 45.463764 ], [ 20.832932, 45.535839 ], [ 20.766083, 45.612164 ], [ 20.806581, 45.657707 ], [ 20.802914, 45.738106 ], [ 20.700541, 45.750069 ], [ 20.660128, 45.829185 ], [ 20.515776, 45.892109 ], [ 20.483646, 45.952908 ], [ 20.353415, 45.995373 ], [ 20.335613, 46.054508 ], [ 20.264395, 46.110962 ], [ 20.276501, 46.145027 ], [ 20.358917, 46.168056 ], [ 20.442389, 46.147388 ], [ 20.503389, 46.192638 ], [ 20.64539, 46.135082 ], [ 20.760334, 46.205334 ], [ 20.789362, 46.269974 ], [ 20.857584, 46.285667 ], [ 20.920389, 46.264446 ], [ 21.071583, 46.247944 ], [ 21.121416, 46.297306 ], [ 21.173195, 46.300499 ], [ 21.218445, 46.405083 ], [ 21.299473, 46.41589 ], [ 21.31875, 46.456085 ], [ 21.270889, 46.50386 ], [ 21.333166, 46.625557 ], [ 21.415361, 46.622223 ], [ 21.545389, 46.842693 ], [ 21.608028, 46.863804 ], [ 21.625639, 46.93639 ], [ 21.684223, 46.960777 ], [ 21.667084, 47.028194 ], [ 21.733723, 47.095165 ], [ 21.793222, 47.112473 ], [ 21.887056, 47.306026 ], [ 21.960722, 47.379749 ], [ 22.026056, 47.394112 ], [ 22.022194, 47.508278 ], [ 22.062222, 47.551388 ], [ 22.197056, 47.630695 ], [ 22.282667, 47.732361 ], [ 22.331667, 47.759445 ], [ 22.433445, 47.743862 ], [ 22.48, 47.806862 ], [ 22.557194, 47.774361 ], [ 22.65661, 47.778278 ], [ 22.778944, 47.89061 ], [ 22.860056, 47.912971 ], [ 22.895222, 47.954693 ], [ 22.856527, 48.0 ], [ 22.8895, 48.043499 ], [ 22.837694, 48.11264 ], [ 22.733194, 48.117332 ], [ 22.679611, 48.091972 ], [ 22.601473, 48.113834 ], [ 22.572195, 48.186165 ], [ 22.492277, 48.255112 ], [ 22.394444, 48.241749 ], [ 22.282555, 48.357971 ], [ 22.277721, 48.413387 ], [ 22.157278, 48.408195 ], [ 22.178556, 48.588444 ], [ 22.259445, 48.655972 ], [ 22.357056, 48.699333 ], [ 22.36064, 48.770748 ], [ 22.442612, 48.941223 ], [ 22.559973, 49.036861 ], [ 22.601862, 49.094166 ], [ 22.696777, 49.041973 ], [ 22.784027, 49.05386 ], [ 22.887972, 49.006363 ], [ 22.872555, 49.098999 ], [ 22.713638, 49.177277 ], [ 22.758917, 49.285805 ], [ 22.729139, 49.405445 ], [ 22.671083, 49.523804 ], [ 22.680416, 49.566776 ], [ 22.762667, 49.635666 ], [ 22.803333, 49.695389 ], [ 22.896889, 49.750751 ], [ 22.905695, 49.790833 ], [ 23.022751, 49.86689 ], [ 23.292278, 50.095528 ], [ 23.45536, 50.204056 ], [ 23.601833, 50.275112 ], [ 23.690361, 50.337612 ], [ 23.720861, 50.386696 ], [ 23.821222, 50.420361 ], [ 23.937056, 50.412277 ], [ 24.025099, 50.435246 ], [ 24.060457, 50.469501 ], [ 24.108862, 50.635918 ], [ 23.964777, 50.800777 ], [ 24.063334, 50.895084 ], [ 23.927305, 51.009804 ], [ 23.918083, 51.075001 ], [ 23.876499, 51.136776 ], [ 23.74614, 51.214027 ], [ 23.728222, 51.258305 ], [ 23.640944, 51.321999 ], [ 23.703333, 51.420444 ], [ 23.630833, 51.496861 ], [ 23.649639, 51.629112 ], [ 23.739084, 51.660027 ], [ 23.819597, 51.627392 ], [ 23.87397, 51.649479 ], [ 24.000671, 51.581779 ], [ 24.223841, 51.655273 ], [ 24.340376, 51.741997 ], [ 24.372898, 51.785358 ], [ 24.394579, 51.920864 ], [ 24.440651, 51.928993 ], [ 24.657461, 51.920864 ], [ 25.027834, 51.918304 ], [ 25.142084, 51.969776 ], [ 25.297832, 51.974972 ], [ 25.399555, 51.927723 ], [ 25.505083, 51.935055 ], [ 25.680445, 51.914196 ], [ 25.831667, 51.933777 ], [ 25.963472, 51.917084 ], [ 26.096281, 51.925819 ], [ 26.183575, 51.87941 ], [ 26.40457, 51.867252 ], [ 26.515066, 51.800957 ], [ 26.630611, 51.832001 ], [ 26.79439, 51.783974 ], [ 26.97275, 51.758999 ], [ 27.002501, 51.788502 ], [ 27.191833, 51.784832 ], [ 27.198778, 51.680832 ], [ 27.265306, 51.629307 ], [ 27.535166, 51.630695 ], [ 27.720638, 51.62236 ], [ 27.7255, 51.564083 ], [ 27.682278, 51.503193 ], [ 27.749916, 51.474998 ], [ 27.840666, 51.544693 ], [ 27.845083, 51.603943 ], [ 28.000639, 51.605167 ], [ 28.018583, 51.561863 ], [ 28.190083, 51.651806 ], [ 28.309889, 51.620224 ], [ 28.404249, 51.546165 ], [ 28.524027, 51.586388 ], [ 28.645361, 51.523418 ], [ 28.677639, 51.443474 ], [ 28.786694, 51.494972 ], [ 28.820639, 51.547695 ], [ 28.911388, 51.590637 ], [ 28.999527, 51.565666 ], [ 29.11175, 51.648724 ], [ 29.22864, 51.62714 ], [ 29.211584, 51.578304 ], [ 29.229723, 51.488693 ], [ 29.267944, 51.458195 ], [ 29.27475, 51.391972 ], [ 29.326334, 51.381416 ], [ 29.42761, 51.419971 ], [ 29.526167, 51.41478 ], [ 29.63525, 51.505474 ], [ 29.715805, 51.519527 ], [ 29.784695, 51.448334 ], [ 29.876888, 51.448418 ], [ 29.904194, 51.484085 ], [ 30.161612, 51.510418 ], [ 30.256361, 51.482224 ], [ 30.36389, 51.389305 ], [ 30.410084, 51.308029 ], [ 30.458389, 51.309971 ], [ 30.574194, 51.262554 ], [ 30.589722, 51.311279 ], [ 30.651695, 51.335056 ], [ 30.633833, 51.423527 ], [ 30.59314, 51.428471 ], [ 30.585083, 51.526443 ], [ 30.524944, 51.592945 ], [ 30.567139, 51.626335 ], [ 30.577499, 51.711193 ], [ 30.621778, 51.709389 ], [ 30.754694, 51.902943 ], [ 30.831028, 51.923389 ], [ 30.973778, 52.077972 ], [ 31.137417, 52.094055 ], [ 31.280027, 52.042473 ], [ 31.395361, 52.135361 ], [ 31.747389, 52.09539 ], [ 31.867083, 52.106556 ], [ 31.937334, 52.090084 ], [ 31.974083, 52.025612 ], [ 32.141582, 52.055 ], [ 32.334915, 52.119999 ], [ 32.335999, 52.233696 ], [ 32.396137, 52.260971 ], [ 32.388027, 52.33511 ], [ 32.539417, 52.326668 ], [ 32.706306, 52.254639 ], [ 32.873417, 52.272026 ], [ 32.905499, 52.243805 ], [ 33.079887, 52.310055 ], [ 33.201248, 52.369362 ], [ 33.342751, 52.349834 ], [ 33.458443, 52.35886 ], [ 33.545887, 52.302307 ], [ 33.706276, 52.357388 ], [ 33.814499, 52.362915 ], [ 33.860111, 52.307919 ], [ 33.936916, 52.292168 ], [ 33.941113, 52.254166 ], [ 34.021416, 52.193333 ], [ 34.12925, 52.140167 ], [ 34.090416, 52.078945 ], [ 34.110054, 51.998196 ], [ 34.257999, 51.909863 ], [ 34.264999, 51.855083 ], [ 34.409138, 51.838085 ], [ 34.451637, 51.768307 ], [ 34.438667, 51.727249 ], [ 34.331085, 51.723194 ], [ 34.151722, 51.689278 ], [ 34.21439, 51.588223 ], [ 34.257915, 51.58025 ], [ 34.302307, 51.505112 ], [ 34.224472, 51.405861 ], [ 34.341415, 51.354332 ], [ 34.273582, 51.255585 ], [ 34.3255, 51.239307 ], [ 34.377251, 51.267834 ], [ 34.457333, 51.240891 ], [ 34.656139, 51.247112 ], [ 34.726139, 51.175972 ], [ 34.822224, 51.176807 ], [ 34.962833, 51.235168 ], [ 35.128029, 51.221863 ], [ 35.167389, 51.081974 ], [ 35.238804, 51.044998 ], [ 35.3195, 51.071999 ], [ 35.357807, 50.948471 ], [ 35.423443, 50.80061 ], [ 35.489971, 50.775139 ], [ 35.481834, 50.694778 ], [ 35.443668, 50.619167 ], [ 35.467251, 50.517056 ], [ 35.588749, 50.459362 ], [ 35.617916, 50.378471 ], [ 35.724472, 50.368168 ], [ 35.859974, 50.43486 ], [ 36.086723, 50.456249 ], [ 36.231083, 50.418694 ], [ 36.295807, 50.357693 ], [ 36.315388, 50.294029 ], [ 36.452835, 50.334026 ], [ 36.65675, 50.237526 ], [ 36.729443, 50.292946 ], [ 36.931946, 50.353748 ], [ 37.174946, 50.355221 ], [ 37.343277, 50.425415 ], [ 37.474277, 50.440723 ], [ 37.481304, 50.37114 ], [ 37.536221, 50.32914 ], [ 37.649113, 50.286861 ], [ 37.625305, 50.221027 ], [ 37.652332, 50.176918 ], [ 37.761391, 50.091972 ], [ 37.910862, 50.045944 ], [ 38.005196, 49.972805 ], [ 38.029388, 49.920528 ], [ 38.14661, 49.931332 ], [ 38.21814, 49.976002 ], [ 38.206417, 50.080334 ], [ 38.35025, 50.07439 ], [ 38.366501, 50.002945 ], [ 38.461693, 49.996361 ], [ 38.538193, 49.967445 ], [ 38.612526, 49.985916 ], [ 38.698334, 49.955029 ], [ 38.84964, 49.870724 ], [ 38.921082, 49.868862 ], [ 38.946693, 49.811085 ], [ 39.082584, 49.819557 ], [ 39.164001, 49.878029 ], [ 39.218918, 49.85239 ], [ 39.282276, 49.761639 ], [ 39.368805, 49.739193 ], [ 39.459835, 49.763584 ], [ 39.611668, 49.739971 ], [ 39.64275, 49.639946 ], [ 39.802555, 49.574749 ], [ 39.92411, 49.566223 ], [ 39.98, 49.603359 ], [ 40.142361, 49.619415 ], [ 40.20739, 49.563137 ], [ 40.07011, 49.532028 ], [ 40.098721, 49.439693 ], [ 40.164444, 49.394028 ], [ 40.200333, 49.270584 ], [ 40.076, 49.188026 ], [ 40.033417, 49.181 ], [ 39.941471, 49.059055 ], [ 39.704334, 49.059029 ], [ 39.694248, 49.003887 ], [ 39.751167, 48.984417 ], [ 39.820389, 48.895916 ], [ 39.949638, 48.905472 ], [ 39.994946, 48.873138 ], [ 40.0, 48.794582 ], [ 39.800362, 48.837776 ], [ 39.72039, 48.731834 ], [ 39.681026, 48.593193 ], [ 39.783695, 48.59314 ], [ 39.850056, 48.570805 ], [ 39.938026, 48.360138 ], [ 40.014889, 48.266582 ], [ 39.907028, 48.164585 ], [ 39.879501, 48.088585 ], [ 39.818943, 48.049057 ], [ 39.820641, 47.958195 ], [ 39.741638, 47.82822 ], [ 39.630028, 47.840363 ], [ 39.52961, 47.82914 ], [ 39.379444, 47.875832 ], [ 39.225945, 47.866055 ], [ 39.126221, 47.839695 ], [ 39.03825, 47.865028 ], [ 38.83939, 47.854137 ], [ 38.764778, 47.684139 ], [ 38.67514, 47.696804 ], [ 38.605526, 47.63789 ], [ 38.457417, 47.63736 ], [ 38.371613, 47.611084 ], [ 38.290527, 47.520195 ], [ 38.311333, 47.451443 ], [ 38.298306, 47.375916 ], [ 38.224415, 47.31311 ], [ 38.325638, 47.300751 ], [ 38.327499, 47.24889 ], [ 38.245888, 47.228359 ], [ 38.234665, 47.122501 ], [ 38.23436, 47.11536 ], [ 38.224724, 47.114082 ], [ 38.208778, 47.100418 ], [ 38.199974, 47.097332 ], [ 38.158943, 47.059528 ], [ 38.108833, 47.101528 ], [ 37.968277, 47.088055 ], [ 37.945162465527908, 47.096158022729185 ], [ 37.938168, 47.09861 ], [ 37.913113, 47.107388 ], [ 37.911556, 47.107944 ], [ 37.900944, 47.110474 ], [ 37.801693, 47.084999 ], [ 37.590527, 47.096279 ], [ 37.52, 47.069778 ], [ 37.514850236586476, 47.06011687935603 ], [ 37.512611, 47.055916 ], [ 37.504581, 47.048916 ], [ 37.5, 47.03861 ], [ 37.5, 45.714959 ], [ 37.5, 45.36361618807527 ], [ 37.5, 45.363616 ], [ 37.46339, 45.348694 ], [ 37.372917, 45.325611 ], [ 37.145638, 45.339417 ], [ 36.850582, 45.442917 ], [ 36.758835, 45.398861 ], [ 36.81789, 45.348 ], [ 36.799084, 45.301334 ], [ 36.96489, 45.323002 ], [ 36.981472, 45.275391 ], [ 36.874279, 45.247166 ], [ 36.689026, 45.221111 ], [ 36.599667, 45.189194 ], [ 36.632862, 45.137249 ], [ 36.736584, 45.10675 ], [ 36.890751, 45.104057 ], [ 37.151165, 45.028641 ], [ 37.28936, 44.950474 ], [ 37.30164, 44.893444 ], [ 37.386528, 44.759804 ], [ 37.48064, 44.696083 ], [ 37.5, 44.565212 ], [ 37.5, 41.463995 ], [ 37.5, 41.062893 ], [ 37.493738, 41.073362 ], [ 37.401563, 41.124257 ], [ 37.25841, 41.166252 ], [ 37.142384, 41.166465 ], [ 37.046988, 41.207255 ], [ 37.011831, 41.298135 ], [ 36.879566, 41.360433 ], [ 36.729581, 41.388463 ], [ 36.596863, 41.383345 ], [ 36.548759, 41.298324 ], [ 36.477767, 41.262859 ], [ 36.410329, 41.269248 ], [ 36.361124, 41.326037 ], [ 36.260896, 41.368342 ], [ 36.146803, 41.481004 ], [ 36.153622, 41.603192 ], [ 36.078253, 41.701298 ], [ 35.957205, 41.75864 ], [ 35.820932, 41.702736 ], [ 35.581136, 41.650946 ], [ 35.479956, 41.667183 ], [ 35.432218, 41.696953 ], [ 35.286894, 41.736407 ], [ 35.221674, 41.817199 ], [ 35.112462, 41.921885 ], [ 35.140307, 41.994322 ], [ 35.237607, 42.001665 ], [ 35.186917, 42.058689 ], [ 35.128678, 42.041997 ], [ 35.032471, 42.110284 ], [ 34.942336, 42.121513 ], [ 34.925698, 42.08213 ], [ 34.818197, 41.988021 ], [ 34.71676, 41.967053 ], [ 34.614812, 41.965997 ], [ 34.469948, 41.989033 ], [ 34.319568, 41.964752 ], [ 34.105116, 42.00463 ], [ 33.790207, 42.000873 ], [ 33.602662, 42.012621 ], [ 33.540683, 42.02743 ], [ 33.332685, 42.044193 ], [ 33.164441, 41.980217 ], [ 33.037537, 41.955043 ], [ 32.970934, 41.917228 ], [ 32.855418, 41.886622 ], [ 32.787117, 41.88797 ], [ 32.673858, 41.857505 ], [ 32.519177, 41.834947 ], [ 32.407967, 41.768623 ], [ 32.368339, 41.776358 ], [ 32.268976, 41.741296 ], [ 32.151101, 41.635716 ], [ 32.023273, 41.599663 ], [ 31.864386, 41.534963 ], [ 31.614493, 41.408121 ], [ 31.523378, 41.389965 ], [ 31.395254, 41.341318 ], [ 31.389513, 41.219713 ], [ 31.300025, 41.143481 ], [ 31.229298, 41.123761 ], [ 30.941799, 41.0976 ], [ 30.75918, 41.111542 ], [ 30.666585, 41.152031 ], [ 30.495882, 41.169985 ], [ 30.276696, 41.236583 ], [ 30.143927, 41.169446 ], [ 29.990458, 41.161871 ], [ 29.735826, 41.177624 ], [ 29.595787, 41.19698 ], [ 29.398457, 41.240206 ], [ 29.252892, 41.260659 ], [ 29.159765, 41.245119 ], [ 29.093733, 41.276354 ], [ 28.961461, 41.283037 ], [ 28.641918, 41.380358 ], [ 28.255677, 41.540181 ], [ 28.117454, 41.656985 ], [ 28.007628, 41.837867 ], [ 28.079387, 41.880875 ], [ 28.054544, 41.988891 ], [ 27.960194, 41.983749 ], [ 27.872889, 42.00964 ], [ 27.796862, 41.955696 ], [ 27.704361, 41.98489 ], [ 27.546444, 41.923862 ], [ 27.449167, 41.977417 ], [ 27.381332, 42.053612 ], [ 27.274334, 42.107613 ], [ 27.190889, 42.073139 ], [ 27.082277, 42.096722 ], [ 27.033945, 42.084915 ], [ 26.971277, 42.004444 ], [ 26.790251, 41.987804 ], [ 26.759945, 41.962917 ], [ 26.623833, 41.968472 ], [ 26.580862, 41.944221 ], [ 26.581722, 41.879581 ], [ 26.535, 41.83625 ], [ 26.381472, 41.836056 ], [ 26.338362, 41.747749 ], [ 26.384945, 41.702415 ], [ 26.44389, 41.694946 ], [ 26.518778, 41.638916 ], [ 26.596138, 41.615471 ], [ 26.597805, 41.538582 ], [ 26.633917, 41.428391 ], [ 26.636862, 41.356083 ], [ 26.592194, 41.328667 ], [ 26.507555, 41.335361 ], [ 26.40711, 41.260445 ], [ 26.343111, 41.268055 ], [ 26.311777, 41.182499 ], [ 26.357277, 40.965832 ], [ 26.290083, 40.928917 ], [ 26.223167, 40.85461 ], [ 26.154945, 40.809666 ], [ 26.100361, 40.743305 ], [ 26.018577, 40.734259 ], [ 25.714874, 40.203659 ], [ 25.658821, 40.167022 ], [ 25.659052, 40.110718 ], [ 25.732398, 40.079018 ], [ 25.944092, 39.838318 ], [ 26.042387, 39.769941 ], [ 26.119149, 39.75763 ], [ 26.139079, 39.672637 ], [ 26.082275, 39.591467 ], [ 26.054233, 39.464786 ], [ 26.144895, 39.437165 ], [ 26.291483, 39.467199 ], [ 26.367426, 39.463334 ], [ 26.497133, 39.507583 ], [ 26.559674, 39.404708 ], [ 26.586038, 39.325508 ], [ 26.570606, 39.264861 ], [ 26.685181, 39.250859 ], [ 26.757134, 39.154821 ], [ 26.820668, 39.134081 ], [ 26.866766, 39.085293 ], [ 26.783276, 39.044496 ], [ 26.793043, 38.906559 ], [ 26.82269, 38.892441 ], [ 26.956601, 38.917813 ], [ 27.005807, 38.890363 ], [ 26.816442, 38.78329 ], [ 26.741427, 38.763314 ], [ 26.689464, 38.708172 ], [ 26.742817, 38.606124 ], [ 26.64367, 38.540965 ], [ 26.591653, 38.572469 ], [ 26.543015, 38.658386 ], [ 26.479642, 38.695223 ], [ 26.409093, 38.70113 ], [ 26.335724, 38.652831 ], [ 26.354647, 38.523128 ], [ 26.264867, 38.377846 ], [ 26.272015, 38.255284 ], [ 26.334926, 38.211426 ], [ 26.493146, 38.163583 ], [ 26.517015, 38.119922 ], [ 26.608562, 38.086891 ], [ 26.654268, 38.18791 ], [ 26.708663, 38.192502 ], [ 26.803372, 38.150762 ], [ 26.853039, 38.026506 ], [ 26.978061, 38.056635 ], [ 27.132685, 37.969164 ], [ 27.231188, 37.969275 ], [ 27.243041, 37.884618 ], [ 27.217255, 37.849555 ], [ 27.245578, 37.785457 ], [ 27.225452, 37.747134 ], [ 27.094991, 37.706823 ], [ 27.017531, 37.710169 ], [ 27.011566, 37.63465 ], [ 27.120409, 37.612448 ], [ 27.16425, 37.528102 ], [ 27.15525, 37.462449 ], [ 27.201058, 37.41459 ], [ 27.17079, 37.353402 ], [ 27.24863, 37.316586 ], [ 27.344421, 37.332644 ], [ 27.492122, 37.217221 ], [ 27.440187, 37.14778 ], [ 27.327947, 37.180192 ], [ 27.237829, 37.137828 ], [ 27.205146, 37.052752 ], [ 27.256442, 36.95013 ], [ 27.315693, 36.948488 ], [ 27.355255, 36.990943 ], [ 27.495878, 36.946661 ], [ 27.59116, 36.952972 ], [ 27.667375, 36.980837 ], [ 27.810631, 36.981341 ], [ 27.874802, 37.005189 ], [ 27.953765, 36.999758 ], [ 28.009895, 36.94286 ], [ 27.994539, 36.823745 ], [ 27.826573, 36.838464 ], [ 27.70063, 36.807518 ], [ 27.645769, 36.832799 ], [ 27.607978, 36.786924 ], [ 27.47281, 36.783239 ], [ 27.356795, 36.72667 ], [ 27.345768, 36.678397 ], [ 27.49349, 36.635626 ], [ 27.520899, 36.65646 ], [ 27.6441, 36.646579 ], [ 27.813839, 36.516865 ] ] ], [ [ [ 40.558395, -10.320328 ], [ 40.55921, -10.37254 ], [ 40.62776, -10.428747 ], [ 40.649959, -10.506226 ], [ 40.747196, -10.631708 ], [ 40.799202, -10.853069 ], [ 40.785308, -10.900424 ], [ 40.839805, -10.982201 ], [ 40.80276, -11.101226 ], [ 40.817459, -11.172098 ], [ 40.784544, -11.248887 ], [ 40.731955, -11.283492 ], [ 40.767496, -11.368294 ], [ 40.745216, -11.436349 ], [ 40.679953, -11.482539 ], [ 40.580404, -11.482629 ], [ 40.57746, -11.699517 ], [ 40.667126, -11.712881 ], [ 40.720595, -11.772072 ], [ 40.726373, -11.847438 ], [ 40.688634, -11.908273 ], [ 40.702698, -12.026564 ], [ 40.659687, -12.089599 ], [ 40.710861, -12.146686 ], [ 40.75109, -12.474669 ], [ 40.732086, -12.685273 ], [ 40.747112, -12.786055 ], [ 40.681667, -12.894318 ], [ 40.708557, -12.969853 ], [ 40.672251, -13.094506 ], [ 40.684378, -13.264103 ], [ 40.706012, -13.371533 ], [ 40.677876, -13.454463 ], [ 40.718327, -13.514806 ], [ 40.72087, -13.589543 ], [ 40.683629, -13.653412 ], [ 40.71267, -13.84612 ], [ 40.740136, -13.901436 ], [ 40.761149, -14.020107 ], [ 40.751612, -14.072161 ], [ 40.827443, -14.140027 ], [ 40.859296, -14.293051 ], [ 40.899571, -14.321127 ], [ 40.944866, -14.411501 ], [ 40.964381, -14.541617 ], [ 40.942641, -14.608742 ], [ 40.962902, -14.751916 ], [ 40.948865, -14.89411 ], [ 40.895615, -14.970012 ], [ 40.874146, -15.070536 ], [ 40.776985, -15.17522 ], [ 40.79085, -15.288491 ], [ 40.613066, -15.618613 ], [ 40.515794, -15.694455 ], [ 40.44135, -15.807911 ], [ 40.246901, -16.004968 ], [ 40.231244, -16.071979 ], [ 40.108971, -16.265096 ], [ 40.063738, -16.312623 ], [ 39.994906, -16.488962 ], [ 39.906823, -16.554687 ], [ 39.698849, -16.676734 ], [ 39.570263, -16.766317 ], [ 39.37496, -16.860902 ], [ 39.242722, -16.952719 ], [ 39.188705, -17.053024 ], [ 39.207514, -17.11935 ], [ 39.184156, -17.189413 ], [ 39.095212, -17.240932 ], [ 38.996526, -17.210466 ], [ 38.952778, -17.150907 ], [ 38.711444, -17.198813 ], [ 38.549834, -17.240951 ], [ 38.273894, -17.342834 ], [ 38.210761, -17.390525 ], [ 37.978576, -17.461873 ], [ 37.517601, -17.721811 ], [ 37.506166, -17.727625 ], [ 37.5, -18.307249 ], [ 37.5, -90.0 ], [ 22.5, -90.0 ], [ 22.5, -34.1657 ], [ 22.399465, -34.178745 ], [ 22.303995, -34.169461 ], [ 22.245654, -34.270162 ], [ 22.161949, -34.312804 ], [ 22.055125, -34.322988 ], [ 21.967531, -34.446726 ], [ 21.870909, -34.490331 ], [ 21.741847, -34.519432 ], [ 21.52665, -34.480773 ], [ 21.458243, -34.516172 ], [ 21.314897, -34.558138 ], [ 21.264877, -34.557788 ], [ 21.111264, -34.505282 ], [ 20.978567, -34.48751 ], [ 20.915534, -34.571123 ], [ 20.831421, -34.594303 ], [ 20.651552, -34.571804 ], [ 20.516492, -34.608068 ], [ 20.481927, -34.654902 ], [ 20.342427, -34.735629 ], [ 20.254114, -34.813106 ], [ 20.177267, -34.823981 ], [ 20.161185, -34.878107 ], [ 20.105188, -34.930766 ], [ 20.020518, -34.958864 ], [ 19.891374, -34.930347 ], [ 19.8288, -34.889776 ], [ 19.654908, -34.911532 ], [ 19.554497, -34.880346 ], [ 19.455517, -34.785919 ], [ 19.363451, -34.746317 ], [ 19.238569, -34.739765 ], [ 19.182319, -34.676562 ], [ 19.196272, -34.55806 ], [ 19.092888, -34.536908 ], [ 19.007297, -34.469331 ], [ 18.871186, -34.50671 ], [ 18.792277, -34.501517 ], [ 18.727183, -34.458988 ], [ 18.686961, -34.36783 ], [ 18.692551, -34.189832 ], [ 18.586435, -34.200131 ], [ 18.60667, -34.31735 ], [ 18.590137, -34.423756 ], [ 18.529832, -34.469284 ], [ 18.410857, -34.457289 ], [ 18.309518, -34.387977 ], [ 18.25768, -34.264006 ], [ 18.210637, -34.193424 ], [ 18.191956, -34.03803 ], [ 18.20474, -33.972738 ], [ 18.261029, -33.887822 ], [ 18.234857, -33.810759 ], [ 18.294266, -33.703063 ], [ 18.196583, -33.606988 ], [ 18.1723, -33.515472 ], [ 18.115427, -33.545544 ], [ 18.035783, -33.539145 ], [ 17.965327, -33.47152 ], [ 17.950618, -33.421618 ], [ 18.005734, -33.306233 ], [ 17.890886, -33.224291 ], [ 17.77297, -33.065991 ], [ 17.739303, -32.919505 ], [ 17.72748, -32.804148 ], [ 17.808832, -32.664541 ], [ 17.866037, -32.612802 ], [ 17.938695, -32.58745 ], [ 18.010046, -32.591046 ], [ 18.094819, -32.652544 ], [ 18.161291, -32.59303 ], [ 18.199696, -32.524718 ], [ 18.208838, -32.429838 ], [ 18.193072, -32.338741 ], [ 18.211015, -32.2569 ], [ 18.180358, -32.150632 ], [ 18.181446, -32.078264 ], [ 18.151381, -31.911194 ], [ 18.106711, -31.794516 ], [ 18.003333, -31.636754 ], [ 17.820658, -31.443296 ], [ 17.761316, -31.333458 ], [ 17.689392, -31.262417 ], [ 17.56878, -31.057745 ], [ 17.500621, -30.978518 ], [ 17.41568, -30.793295 ], [ 17.368087, -30.737794 ], [ 17.302572, -30.603731 ], [ 17.25972, -30.54982 ], [ 17.165483, -30.376167 ], [ 17.15023, -30.301972 ], [ 17.08688, -30.180199 ], [ 17.043465, -30.035992 ], [ 17.011687, -29.988341 ], [ 16.934201, -29.771494 ], [ 16.9186, -29.665924 ], [ 16.829503, -29.424365 ], [ 16.724916, -29.250218 ], [ 16.702235, -29.155574 ], [ 16.624691, -29.084567 ], [ 16.58707, -29.006434 ], [ 16.502196, -28.942545 ], [ 16.445402, -28.792009 ], [ 16.394382, -28.741556 ], [ 16.455729, -28.634415 ], [ 16.47328, -28.583567 ], [ 16.565689, -28.555614 ], [ 16.634956, -28.489346 ], [ 16.732834, -28.492819 ], [ 16.774389, -28.441629 ], [ 16.792807, -28.351049 ], [ 16.748398, -28.288834 ], [ 16.87648, -28.180933 ], [ 16.899778, -28.071592 ], [ 17.001648, -28.077005 ], [ 17.083324, -28.037775 ], [ 17.193094, -28.129667 ], [ 17.179968, -28.204765 ], [ 17.220682, -28.251648 ], [ 17.311808, -28.225023 ], [ 17.374403, -28.28727 ], [ 17.403767, -28.41106 ], [ 17.329664, -28.471457 ], [ 17.417404, -28.567707 ], [ 17.409491, -28.722952 ], [ 17.486361, -28.69857 ], [ 17.597996, -28.700886 ], [ 17.610027, -28.759741 ], [ 17.696325, -28.751398 ], [ 17.920086, -28.771666 ], [ 18.053329, -28.880913 ], [ 18.17901, -28.915888 ], [ 18.265015, -28.883556 ], [ 18.434662, -28.90132 ], [ 18.559448, -28.860701 ], [ 18.732044, -28.841171 ], [ 18.94862, -28.864576 ], [ 19.064875, -28.956392 ], [ 19.111198, -28.97143 ], [ 19.208967, -28.940571 ], [ 19.256201, -28.859968 ], [ 19.240953, -28.815722 ], [ 19.295662, -28.736004 ], [ 19.40477, -28.739849 ], [ 19.492449, -28.677385 ], [ 19.505596, -28.605068 ], [ 19.562378, -28.531885 ], [ 19.670256, -28.534422 ], [ 19.729679, -28.489332 ], [ 19.80776, -28.507708 ], [ 19.872667, -28.442833 ], [ 19.996761, -28.433113 ], [ 20.000244, -24.750099 ], [ 20.0, -22.001778 ], [ 21.001741, -22.003838 ], [ 20.99695, -20.957802 ], [ 20.998827, -18.317877 ], [ 21.468939, -18.318029 ], [ 22.988407, -18.018293 ], [ 23.103615, -17.998857 ], [ 23.296621, -17.997524 ], [ 23.327845, -18.079741 ], [ 23.41293, -18.204363 ], [ 23.527056, -18.273859 ], [ 23.556379, -18.340744 ], [ 23.568802, -18.476692 ], [ 23.61286, -18.504047 ], [ 23.791918, -18.382067 ], [ 23.811361, -18.337955 ], [ 23.908863, -18.26354 ], [ 23.935255, -18.205763 ], [ 24.073225, -18.114796 ], [ 24.117397, -18.104357 ], [ 24.201082, -18.016554 ], [ 24.30723, -18.002279 ], [ 24.367975, -17.951073 ], [ 24.423664, -17.953142 ], [ 24.489399, -18.046997 ], [ 24.575153, -18.0651 ], [ 24.632158, -17.981754 ], [ 24.806965, -17.857407 ], [ 24.966269, -17.804184 ], [ 25.068766, -17.843815 ], [ 25.141853, -17.8113 ], [ 25.157753, -17.717484 ], [ 25.085577, -17.659531 ], [ 25.035522, -17.591057 ], [ 24.88002, -17.53318 ], [ 24.811829, -17.53731 ], [ 24.713196, -17.500038 ], [ 24.601843, -17.542686 ], [ 24.510254, -17.544741 ], [ 24.474314, -17.492105 ], [ 24.388334, -17.477552 ], [ 24.339825, -17.499388 ], [ 24.215244, -17.48214 ], [ 23.428154, -17.63928 ], [ 23.337673, -17.554527 ], [ 23.227287, -17.539074 ], [ 23.128811, -17.428732 ], [ 23.084784, -17.410156 ], [ 22.984095, -17.266916 ], [ 22.902876, -17.208574 ], [ 22.807123, -17.173357 ], [ 22.789991, -17.121233 ], [ 22.583057, -16.907162 ], [ 22.527374, -16.868227 ], [ 22.31571, -16.635971 ], [ 22.190468, -16.546625 ], [ 22.139662, -16.481453 ], [ 22.108549, -16.343204 ], [ 21.999664, -16.197874 ], [ 22.001999, -16.0 ], [ 21.999678, -15.330224 ], [ 22.000751, -14.085768 ], [ 21.999899, -13.004716 ], [ 22.433668, -13.004004 ], [ 24.040287, -12.990556 ], [ 24.029314, -12.954432 ], [ 23.904987, -12.845443 ], [ 23.955654, -12.551822 ], [ 24.026287, -12.449577 ], [ 24.069866, -12.419043 ], [ 24.055706, -12.330236 ], [ 24.068657, -12.265388 ], [ 23.985788, -12.154165 ], [ 23.986118, -11.945529 ], [ 24.024614, -11.822521 ], [ 23.97117, -11.655663 ], [ 24.03648, -11.518435 ], [ 24.037531, -11.434245 ], [ 24.081436, -11.384388 ], [ 24.034739, -11.262874 ], [ 24.037432, -11.169257 ], [ 24.011513, -11.04961 ], [ 24.025587, -10.979017 ], [ 23.995695, -10.891575 ], [ 23.872313, -11.017395 ], [ 23.815474, -11.027856 ], [ 23.763384, -10.997374 ], [ 23.672083, -11.008182 ], [ 23.576206, -10.989503 ], [ 23.540447, -10.95949 ], [ 23.417578, -10.94504 ], [ 23.203173, -11.102197 ], [ 23.152203, -11.093228 ], [ 23.073095, -11.122757 ], [ 22.859133, -11.061598 ], [ 22.787092, -11.113168 ], [ 22.723286, -11.110023 ], [ 22.585417, -11.035999 ], [ 22.510153, -11.042392 ], [ 22.48716, -11.132171 ], [ 22.42555, -11.17889 ], [ 22.347033, -11.178544 ], [ 22.290079, -11.251032 ], [ 22.216583, -11.088059 ], [ 22.207888, -10.95412 ], [ 22.180788, -10.852005 ], [ 22.29364, -10.794472 ], [ 22.334898, -10.754074 ], [ 22.311459, -10.535863 ], [ 22.277967, -10.508468 ], [ 22.322805, -10.420269 ], [ 22.312502, -10.340161 ], [ 22.222672, -10.158716 ], [ 22.218664, -10.022099 ], [ 22.185875, -9.91745 ], [ 22.068207, -9.87302 ], [ 22.025406, -9.835176 ], [ 21.939978, -9.693267 ], [ 21.875927, -9.653144 ], [ 21.868168, -9.565719 ], [ 21.796064, -9.427587 ], [ 21.860544, -9.241109 ], [ 21.84343, -9.068139 ], [ 21.868408, -8.868245 ], [ 21.904457, -8.766575 ], [ 21.898659, -8.718971 ], [ 21.95891, -8.488909 ], [ 21.918108, -8.383592 ], [ 21.93095, -8.315278 ], [ 21.896126, -8.29108 ], [ 21.877857, -8.197234 ], [ 21.813969, -8.056138 ], [ 21.745449, -7.938798 ], [ 21.762056, -7.845356 ], [ 21.853283, -7.553751 ], [ 21.85673, -7.470244 ], [ 21.819744, -7.327551 ], [ 21.780588, -7.283894 ], [ 21.293211, -7.278564 ], [ 20.541683, -7.28143 ], [ 20.551584, -7.112648 ], [ 20.627148, -6.913397 ], [ 20.316999, -6.913004 ], [ 20.30171, -6.998033 ], [ 19.962917, -6.999361 ], [ 19.932499, -6.842501 ], [ 19.748886, -6.602222 ], [ 19.712498, -6.453611 ], [ 19.688469, -6.187502 ], [ 19.69833, -6.150278 ], [ 19.890549, -6.0 ], [ 19.96714, -5.987223 ], [ 20.019741, -5.942223 ], [ 20.044167, -5.876667 ], [ 20.112221, -5.834445 ], [ 20.179996, -5.684445 ], [ 20.144444, -5.522779 ], [ 20.146385, -5.353612 ], [ 20.193607, -5.277779 ], [ 20.191666, -5.159167 ], [ 20.148331, -4.991945 ], [ 20.108608, -4.935278 ], [ 20.081944, -4.810278 ], [ 20.054443, -4.769167 ], [ 20.062222, -4.595834 ], [ 20.117496, -4.495556 ], [ 20.037498, -4.347222 ], [ 20.056664, -4.283056 ], [ 20.133331, -4.280834 ], [ 20.216389, -4.329445 ], [ 20.262775, -4.395556 ], [ 20.352776, -4.385556 ], [ 20.366943, -4.302222 ], [ 20.448608, -4.255 ], [ 20.493053, -4.258334 ], [ 20.622498, -4.196112 ], [ 20.669167, -4.151668 ], [ 20.678055, -4.073056 ], [ 20.659721, -3.865278 ], [ 20.664444, -3.745 ], [ 20.641941, -3.534445 ], [ 20.656109, -3.307222 ], [ 20.692497, -3.197222 ], [ 20.829441, -2.848889 ], [ 20.93861, -2.7175 ], [ 20.968052, -2.560556 ], [ 21.018055, -2.4875 ], [ 21.154442, -2.511389 ], [ 21.286663, -2.51 ], [ 21.453888, -2.470834 ], [ 21.469719, -2.335278 ], [ 21.555275, -2.366945 ], [ 21.601109, -2.411389 ], [ 21.826885, -2.529217 ], [ 21.901943, -2.488611 ], [ 21.951942, -2.415556 ], [ 22.061665, -2.358612 ], [ 22.152222, -2.276389 ], [ 22.19611, -2.335278 ], [ 22.183052, -2.411389 ], [ 22.251389, -2.466945 ], [ 22.296108, -2.420278 ], [ 22.233055, -2.197778 ], [ 22.198055, -2.010834 ], [ 22.163887, -1.918334 ], [ 22.213055, -1.906111 ], [ 22.321388, -1.940278 ], [ 22.520832, -1.956111 ], [ 22.642776, -1.816945 ], [ 22.69083, -1.809445 ], [ 22.763332, -1.853889 ], [ 22.820274, -1.858611 ], [ 22.909443, -1.914167 ], [ 22.936665, -1.962222 ], [ 23.005833, -1.931945 ], [ 23.135555, -1.964167 ], [ 23.208885, -2.077222 ], [ 23.5, -2.01 ], [ 23.693886, -2.018889 ], [ 23.698055, -1.931389 ], [ 23.774719, -1.9175 ], [ 23.783054, -1.806667 ], [ 23.824718, -1.768333 ], [ 23.998333, -1.765 ], [ 24.035275, -1.732778 ], [ 24.276386, -1.775278 ], [ 24.421398, -1.786796 ], [ 24.375832, -1.538889 ], [ 24.292774, -1.384722 ], [ 24.153053, -1.390278 ], [ 24.058609, -1.3675 ], [ 23.935833, -1.298333 ], [ 23.835831, -1.2025 ], [ 23.772778, -1.179167 ], [ 23.729721, -1.083333 ], [ 23.526665, -0.975833 ], [ 23.35611, -0.807222 ], [ 23.50972, -0.686667 ], [ 23.601387, -0.664722 ], [ 23.619999, -0.624167 ], [ 23.561665, -0.580278 ], [ 23.467777, -0.438611 ], [ 23.32111, -0.483056 ], [ 23.243053, -0.485833 ], [ 23.217777, -0.425 ], [ 22.970276, -0.406389 ], [ 23.140831, -0.276667 ], [ 23.293888, -0.317222 ], [ 23.394444, -0.263889 ], [ 23.408333, -0.208333 ], [ 23.246387, 0.035833 ], [ 23.137497, 0.156944 ], [ 23.082775, 0.278889 ], [ 23.021111, 0.338056 ], [ 22.945553, 0.478333 ], [ 22.935276, 0.570833 ], [ 22.861385, 0.671111 ], [ 22.85722, 0.808056 ], [ 22.815552, 0.896389 ], [ 22.81472, 0.996389 ], [ 22.776386, 1.047222 ], [ 22.725555, 1.1725 ], [ 22.673611, 1.2375 ], [ 22.624165, 1.361666 ], [ 22.488609, 1.465 ], [ 22.364441, 1.504722 ], [ 22.311108, 1.5575 ], [ 22.46611, 1.681389 ], [ 22.487221, 1.732778 ], [ 22.516666, 1.916389 ], [ 22.588608, 2.048611 ], [ 22.608608, 2.120555 ], [ 22.66, 2.101944 ], [ 22.699718, 2.034166 ], [ 22.757221, 2.010278 ], [ 22.837498, 2.03 ], [ 22.987499, 2.182222 ], [ 23.055275, 2.108333 ], [ 23.10611, 2.095833 ], [ 23.354721, 2.251944 ], [ 23.651386, 2.1925 ], [ 23.627499, 2.330833 ], [ 23.554996, 2.385555 ], [ 23.44722, 2.436111 ], [ 23.359444, 2.523889 ], [ 23.308052, 2.535277 ], [ 23.151943, 2.5025 ], [ 23.064163, 2.530555 ], [ 22.959999, 2.672222 ], [ 23.003887, 2.757222 ], [ 22.982777, 2.8325 ], [ 23.025276, 2.9275 ], [ 23.085552, 3.135 ], [ 23.00111, 3.161666 ], [ 22.875832, 3.022778 ], [ 22.81472, 2.996111 ], [ 22.782497, 3.037222 ], [ 22.800278, 3.216389 ], [ 22.788055, 3.271667 ], [ 22.656387, 3.316944 ], [ 22.623608, 3.388889 ], [ 22.678333, 3.453888 ], [ 22.849163, 3.503055 ], [ 22.928608, 3.548055 ], [ 23.037498, 3.5475 ], [ 23.171108, 3.678055 ], [ 23.229443, 3.641944 ], [ 23.382221, 3.623333 ], [ 23.476109, 3.726111 ], [ 23.511665, 3.799166 ], [ 23.395275, 3.832778 ], [ 23.375275, 3.812222 ], [ 23.265553, 3.838055 ], [ 23.147221, 3.896111 ], [ 23.035553, 3.860555 ], [ 22.990833, 3.883333 ], [ 22.888885, 3.850277 ], [ 22.765553, 3.905 ], [ 22.75861, 3.991389 ], [ 22.687222, 3.998055 ], [ 22.585278, 4.084167 ], [ 22.462902, 4.136067 ], [ 22.550438, 4.21542 ], [ 22.596701, 4.463446 ], [ 22.688225, 4.461341 ], [ 22.733688, 4.556044 ], [ 22.739521, 4.624882 ], [ 22.790516, 4.714526 ], [ 22.870134, 4.713068 ], [ 22.906668, 4.817867 ], [ 22.983761, 4.823298 ], [ 23.008646, 4.758201 ], [ 23.11335, 4.707964 ], [ 23.159428, 4.736118 ], [ 23.331215, 4.602164 ], [ 23.420927, 4.588927 ], [ 23.425915, 4.644638 ], [ 23.575653, 4.72859 ], [ 23.70915, 4.782346 ], [ 23.780283, 4.783554 ], [ 23.833492, 4.829398 ], [ 23.949842, 4.809446 ], [ 23.949137, 4.852258 ], [ 24.090252, 4.910327 ], [ 24.160479, 4.894931 ], [ 24.298317, 5.002935 ], [ 24.380789, 5.010741 ], [ 24.3894, 5.109155 ], [ 24.534363, 5.080511 ], [ 24.610535, 5.032056 ], [ 24.661749, 4.916743 ], [ 24.784544, 4.905525 ], [ 25.000326, 4.993162 ], [ 25.08222, 4.938931 ], [ 25.15416, 5.028268 ], [ 25.201698, 5.017396 ], [ 25.31797, 5.036223 ], [ 25.355207, 5.149122 ], [ 25.320646, 5.187434 ], [ 25.367708, 5.315548 ], [ 25.419804, 5.318947 ], [ 25.497469, 5.364079 ], [ 25.587898, 5.369894 ], [ 25.658733, 5.328004 ], [ 25.74968, 5.237842 ], [ 25.798954, 5.26261 ], [ 25.902735, 5.170625 ], [ 25.985167, 5.23966 ], [ 26.016474, 5.205685 ], [ 26.09267, 5.206573 ], [ 26.140953, 5.263077 ], [ 26.301683, 5.141724 ], [ 26.390944, 5.147448 ], [ 26.488008, 5.046394 ], [ 26.619413, 5.088082 ], [ 26.74996, 5.103511 ], [ 26.872164, 5.033753 ], [ 26.935108, 5.134194 ], [ 27.078672, 5.204131 ], [ 27.142937, 5.204216 ], [ 27.231823, 5.152315 ], [ 27.431561, 5.077729 ], [ 27.463421, 5.016153 ], [ 27.52146, 4.97075 ], [ 27.580336, 4.885361 ], [ 27.657469, 4.891273 ], [ 27.713717, 4.785858 ], [ 27.787395, 4.736298 ], [ 27.786022, 4.628577 ], [ 27.868265, 4.547898 ], [ 28.035048, 4.550398 ], [ 28.031967, 4.47767 ], [ 28.071817, 4.414419 ], [ 28.201092, 4.347533 ], [ 28.318312, 4.352965 ], [ 28.374577, 4.275577 ], [ 28.45787, 4.285298 ], [ 28.510124, 4.36906 ], [ 28.581718, 4.376295 ], [ 28.66222, 4.419617 ], [ 28.721333, 4.536247 ], [ 28.7866, 4.558228 ], [ 28.83316, 4.473036 ], [ 28.975386, 4.475247 ], [ 29.009434, 4.492551 ], [ 29.133253, 4.405982 ], [ 29.204639, 4.338347 ], [ 29.338272, 4.401318 ], [ 29.366892, 4.467902 ], [ 29.408733, 4.483301 ], [ 29.471807, 4.592255 ], [ 29.461695, 4.662755 ], [ 29.611044, 4.660898 ], [ 29.708031, 4.61631 ], [ 29.733219, 4.574481 ], [ 29.82029, 4.558717 ], [ 29.798374, 4.368258 ], [ 29.839674, 4.336678 ], [ 29.902332, 4.343625 ], [ 29.963572, 4.277373 ], [ 29.944063, 4.241593 ], [ 30.038128, 4.188783 ], [ 30.078886, 4.112746 ], [ 30.15773, 4.092711 ], [ 30.222595, 3.937438 ], [ 30.386951, 3.908523 ], [ 30.493002, 3.856813 ], [ 30.5466, 3.86815 ], [ 30.584925, 3.680238 ], [ 30.57329, 3.592095 ], [ 30.667433, 3.636404 ], [ 30.718967, 3.62064 ], [ 30.786036, 3.648012 ], [ 30.799339, 3.590437 ], [ 30.85696, 3.568896 ], [ 30.846092, 3.50834 ], [ 30.933472, 3.482229 ], [ 30.935602, 3.40154 ], [ 30.885162, 3.310562 ], [ 30.829168, 3.255208 ], [ 30.779251, 3.06835 ], [ 30.788269, 3.01024 ], [ 30.845552, 2.962138 ], [ 30.880405, 2.883495 ], [ 30.870279, 2.801793 ], [ 30.828596, 2.755839 ], [ 30.756674, 2.592711 ], [ 30.752777, 2.438503 ], [ 30.833559, 2.426479 ], [ 30.885963, 2.344041 ], [ 30.985323, 2.408754 ], [ 31.064062, 2.348836 ], [ 31.126642, 2.269035 ], [ 31.199127, 2.296254 ], [ 31.203491, 2.224187 ], [ 31.30493, 2.15688 ], [ 31.305361, 2.11931 ], [ 31.228189, 1.991877 ], [ 31.150394, 1.908913 ], [ 31.02577, 1.749802 ], [ 30.699884, 1.494337 ], [ 30.468384, 1.213292 ], [ 30.362999, 1.200461 ], [ 30.243277, 1.085276 ], [ 30.224483, 0.994873 ], [ 30.14459, 0.885302 ], [ 30.100248, 0.894276 ], [ 29.984388, 0.841495 ], [ 29.950308, 0.633025 ], [ 29.973263, 0.517733 ], [ 29.872433, 0.392724 ], [ 29.814989, 0.164289 ], [ 29.734697, 0.129093 ], [ 29.716425, 0.026434 ], [ 29.743191, -0.030166 ], [ 29.722786, -0.1005 ], [ 29.653698, -0.46851 ], [ 29.681017, -0.566212 ], [ 29.626041, -0.705782 ], [ 29.638851, -0.818742 ], [ 29.625111, -0.90588 ], [ 29.587933, -0.904934 ], [ 29.577084, -1.196532 ], [ 29.609722, -1.389604 ], [ 29.702852, -1.35485 ], [ 29.792175, -1.366717 ], [ 29.818903, -1.31493 ], [ 29.877251, -1.369634 ], [ 29.913498, -1.483161 ], [ 29.98447, -1.455435 ], [ 30.159571, -1.349256 ], [ 30.171144, -1.304084 ], [ 30.339556, -1.13228 ], [ 30.348373, -1.068344 ], [ 30.476864, -1.062396 ], [ 30.47368, -1.12594 ], [ 30.551136, -1.290194 ], [ 30.559937, -1.339275 ], [ 30.66296, -1.391046 ], [ 30.732616, -1.447708 ], [ 30.74449, -1.526573 ], [ 30.830462, -1.64703 ], [ 30.81222, -1.733731 ], [ 30.828257, -1.856863 ], [ 30.8053, -1.928111 ], [ 30.895958, -2.078556 ], [ 30.842756, -2.230204 ], [ 30.848717, -2.314381 ], [ 30.765104, -2.388607 ], [ 30.713615, -2.356321 ], [ 30.65958, -2.410769 ], [ 30.608498, -2.398344 ], [ 30.540243, -2.432877 ], [ 30.476286, -2.569636 ], [ 30.419981, -2.657842 ], [ 30.457598, -2.692539 ], [ 30.444254, -2.782436 ], [ 30.407255, -2.856773 ], [ 30.485052, -2.947957 ], [ 30.571642, -2.897041 ], [ 30.743656, -2.996557 ], [ 30.792173, -3.05372 ], [ 30.847717, -3.163778 ], [ 30.836933, -3.25414 ], [ 30.677912, -3.321291 ], [ 30.641329, -3.35371 ], [ 30.666922, -3.420379 ], [ 30.61409, -3.461382 ], [ 30.487581, -3.511953 ], [ 30.390545, -3.715807 ], [ 30.405819, -3.768395 ], [ 30.324396, -3.79167 ], [ 30.301298, -3.859733 ], [ 30.259924, -3.887548 ], [ 30.21981, -4.026513 ], [ 30.127422, -4.13798 ], [ 30.07534, -4.165472 ], [ 30.049816, -4.255608 ], [ 29.868317, -4.374803 ], [ 29.814556, -4.359261 ], [ 29.756708, -4.464615 ], [ 29.655046, -4.445394 ], [ 29.391476, -4.44525 ], [ 29.386379, -4.540749 ], [ 29.327168, -4.698912 ], [ 29.337156, -4.853596 ], [ 29.410162, -5.12354 ], [ 29.529745, -5.415081 ], [ 29.575602, -5.555771 ], [ 29.607328, -5.768335 ], [ 29.57818, -5.962873 ], [ 29.579317, -6.146805 ], [ 29.594872, -6.252271 ], [ 29.655048, -6.413446 ], [ 29.791624, -6.60899 ], [ 29.906258, -6.708418 ], [ 30.08506, -6.836075 ], [ 30.18375, -6.940332 ], [ 30.238564, -7.021798 ], [ 30.358889, -7.247829 ], [ 30.422859, -7.418212 ], [ 30.522249, -7.619986 ], [ 30.575212, -7.750932 ], [ 30.651621, -7.980675 ], [ 30.738659, -8.109818 ], [ 30.807409, -8.310655 ], [ 30.9781, -8.538345 ], [ 31.028078, -8.592154 ], [ 31.136457, -8.632804 ], [ 31.211452, -8.587496 ], [ 31.275015, -8.631579 ], [ 31.319895, -8.608783 ], [ 31.458731, -8.640335 ], [ 31.489515, -8.684135 ], [ 31.570477, -8.709552 ], [ 31.584745, -8.838832 ], [ 31.734747, -8.923262 ], [ 31.821665, -8.89028 ], [ 31.947081, -8.9368 ], [ 31.936659, -9.018008 ], [ 31.996113, -9.076138 ], [ 32.060913, -9.051372 ], [ 32.161392, -9.061675 ], [ 32.267021, -9.133574 ], [ 32.4314, -9.118252 ], [ 32.540909, -9.254656 ], [ 32.751926, -9.28485 ], [ 32.768288, -9.317944 ], [ 32.867374, -9.373852 ], [ 32.953506, -9.401445 ], [ 32.990807, -9.368879 ], [ 33.079613, -9.449467 ], [ 33.210243, -9.508881 ], [ 33.329735, -9.491529 ], [ 33.392551, -9.53884 ], [ 33.440281, -9.612694 ], [ 33.519829, -9.626969 ], [ 33.592926, -9.581412 ], [ 33.684872, -9.608034 ], [ 33.763893, -9.582588 ], [ 33.921345, -9.709304 ], [ 33.967117, -9.62705 ], [ 33.96476, -9.52838 ], [ 34.036301, -9.49193 ], [ 34.306023, -9.740206 ], [ 34.344543, -9.8065 ], [ 34.501526, -9.976361 ], [ 34.538979, -10.064199 ], [ 34.517357, -10.097792 ], [ 34.55476, -10.188474 ], [ 34.569839, -10.307633 ], [ 34.541611, -10.415602 ], [ 34.571152, -10.479848 ], [ 34.555122, -10.549006 ], [ 34.594311, -10.581552 ], [ 34.651936, -10.757631 ], [ 34.636486, -10.94684 ], [ 34.604225, -10.989516 ], [ 34.628342, -11.102043 ], [ 34.686054, -11.141225 ], [ 34.804882, -11.321221 ], [ 34.882683, -11.3552 ], [ 34.925709, -11.41508 ], [ 34.957932, -11.571344 ], [ 35.340698, -11.556542 ], [ 35.389797, -11.580019 ], [ 35.575569, -11.603462 ], [ 35.639271, -11.58572 ], [ 35.776859, -11.471077 ], [ 35.823818, -11.406803 ], [ 35.941891, -11.424907 ], [ 35.956997, -11.483055 ], [ 36.123909, -11.551973 ], [ 36.172279, -11.589557 ], [ 36.170006, -11.665466 ], [ 36.20126, -11.716186 ], [ 36.267113, -11.718006 ], [ 36.377872, -11.684204 ], [ 36.501423, -11.692849 ], [ 36.56031, -11.745696 ], [ 36.719498, -11.692884 ], [ 36.810833, -11.587023 ], [ 36.88868, -11.606109 ], [ 37.006992, -11.602601 ], [ 37.041145, -11.580296 ], [ 37.133213, -11.689842 ], [ 37.281612, -11.707168 ], [ 37.331894, -11.687695 ], [ 37.442734, -11.734662 ], [ 37.559902, -11.649964 ], [ 37.641636, -11.652708 ], [ 37.787922, -11.572027 ], [ 37.825993, -11.528198 ], [ 37.817753, -11.473763 ], [ 37.85817, -11.340202 ], [ 37.927895, -11.290549 ], [ 38.113094, -11.259668 ], [ 38.261925, -11.288426 ], [ 38.378235, -11.383034 ], [ 38.486149, -11.4149 ], [ 38.652092, -11.278788 ], [ 38.744179, -11.278317 ], [ 38.884743, -11.175511 ], [ 39.045071, -11.174488 ], [ 39.135853, -11.151134 ], [ 39.241627, -11.179976 ], [ 39.365524, -11.084299 ], [ 39.432903, -11.057749 ], [ 39.529575, -10.985414 ], [ 39.694508, -10.945992 ], [ 39.775646, -10.910854 ], [ 39.783936, -10.910717 ], [ 40.558395, -10.320328 ] ] ], [ [ [ 22.5, 89.0 ], [ 37.5, 89.0 ], [ 37.5, 69.305389 ], [ 37.5, 68.893429 ], [ 37.448832, 68.894026 ], [ 37.360767, 68.93541 ], [ 37.266148, 68.927402 ], [ 36.859124, 69.041337 ], [ 36.75993, 69.083615 ], [ 36.510235, 69.14383 ], [ 36.47554, 69.17009 ], [ 36.324448, 69.21042 ], [ 36.015841, 69.247537 ], [ 35.823513, 69.303354 ], [ 35.598483, 69.316027 ], [ 35.520345, 69.335267 ], [ 35.38683, 69.341169 ], [ 35.255366, 69.364825 ], [ 35.146562, 69.360782 ], [ 35.069881, 69.324175 ], [ 34.878856, 69.337611 ], [ 34.828856, 69.361956 ], [ 34.698878, 69.374375 ], [ 34.500397, 69.373633 ], [ 34.432519, 69.443056 ], [ 34.216391, 69.49371 ], [ 34.05359, 69.502027 ], [ 33.984205, 69.486152 ], [ 33.876108, 69.419536 ], [ 33.620628, 69.41735 ], [ 33.579753, 69.483415 ], [ 33.469427, 69.534291 ], [ 33.331661, 69.542272 ], [ 33.247329, 69.531125 ], [ 33.176612, 69.559907 ], [ 33.231411, 69.663134 ], [ 33.231781, 69.754841 ], [ 33.190907, 69.818037 ], [ 33.131072, 69.853577 ], [ 32.935668, 69.893403 ], [ 32.718625, 69.909448 ], [ 32.649989, 69.898412 ], [ 32.442261, 69.978879 ], [ 32.071043, 70.062295 ], [ 31.954202, 70.074001 ], [ 31.852386, 70.051915 ], [ 31.783496, 69.94978 ], [ 31.680502, 69.919286 ], [ 31.636525, 69.955758 ], [ 31.547364, 69.965174 ], [ 31.445149, 69.895123 ], [ 31.433933, 69.827675 ], [ 31.276371, 69.860154 ], [ 31.26708, 69.862428 ], [ 31.258328, 69.864569 ], [ 31.108982, 69.885649 ], [ 30.789587, 69.904906 ], [ 30.690364, 69.929577 ], [ 30.452806, 69.935058 ], [ 30.300212, 70.007543 ], [ 30.427215, 70.041783 ], [ 30.468729, 70.088045 ], [ 30.561395, 70.124145 ], [ 31.072078, 70.167624 ], [ 31.140851, 70.196894 ], [ 31.216566, 70.292651 ], [ 31.255262, 70.368132 ], [ 31.247954, 70.443007 ], [ 31.190957, 70.50398 ], [ 31.051866, 70.522748 ], [ 30.912991, 70.570531 ], [ 30.809853, 70.559016 ], [ 30.739158, 70.589141 ], [ 30.673734, 70.65536 ], [ 30.600956, 70.669504 ], [ 30.423553, 70.671271 ], [ 30.388209, 70.710815 ], [ 30.30493, 70.739743 ], [ 30.243186, 70.787974 ], [ 30.104717, 70.822933 ], [ 30.011334, 70.827785 ], [ 29.884438, 70.805282 ], [ 29.831257, 70.839334 ], [ 29.654468, 70.849485 ], [ 29.501859, 70.822251 ], [ 29.459007, 70.878428 ], [ 29.354597, 70.904376 ], [ 29.278532, 70.959065 ], [ 28.998774, 71.000707 ], [ 28.798729, 70.991521 ], [ 28.666605, 70.941989 ], [ 28.661963, 71.017875 ], [ 28.609611, 71.081754 ], [ 28.531246, 71.107311 ], [ 28.376881, 71.123501 ], [ 28.286976, 71.200501 ], [ 28.17678, 71.216645 ], [ 27.941942, 71.201576 ], [ 27.868848, 71.174026 ], [ 27.768864, 71.233098 ], [ 27.657383, 71.253022 ], [ 27.435891, 71.189345 ], [ 27.392376, 71.144555 ], [ 27.257933, 71.165287 ], [ 27.162206, 71.13821 ], [ 27.059494, 71.062914 ], [ 26.987935, 70.96793 ], [ 26.988477, 70.894652 ], [ 27.031529, 70.835353 ], [ 26.947575, 70.722241 ], [ 26.857203, 70.713571 ], [ 26.839782, 70.760496 ], [ 26.85835, 70.83578 ], [ 26.833337, 70.989042 ], [ 26.720248, 71.079151 ], [ 26.560219, 71.071369 ], [ 26.446211, 71.037596 ], [ 26.326159, 70.984322 ], [ 26.32291, 71.110833 ], [ 26.275754, 71.163339 ], [ 26.150893, 71.176135 ], [ 26.096045, 71.228283 ], [ 25.998341, 71.26079 ], [ 25.903934, 71.250118 ], [ 25.833804, 71.288975 ], [ 25.687386, 71.307512 ], [ 25.488242, 71.273884 ], [ 25.444154, 71.242961 ], [ 25.333711, 71.271522 ], [ 25.288184, 71.261328 ], [ 25.176547, 71.183428 ], [ 25.146306, 71.11427 ], [ 25.098508, 71.148627 ], [ 24.945623, 71.169601 ], [ 24.872966, 71.221302 ], [ 24.664121, 71.23025 ], [ 24.525366, 71.162938 ], [ 24.429815, 71.05443 ], [ 24.333026, 71.016915 ], [ 24.220986, 71.179708 ], [ 24.157752, 71.207334 ], [ 24.026728, 71.209442 ], [ 23.864938, 71.170215 ], [ 23.734464, 71.03575 ], [ 23.666415, 71.043332 ], [ 23.58887, 71.006015 ], [ 23.536129, 70.91455 ], [ 23.366821, 70.98123 ], [ 23.2844, 70.987854 ], [ 23.21306, 70.941995 ], [ 23.146971, 70.943004 ], [ 23.051614, 70.979768 ], [ 22.948086, 70.963974 ], [ 22.839914, 70.880431 ], [ 22.675089, 70.872252 ], [ 22.590668, 70.827044 ], [ 22.5, 70.838489 ], [ 22.5, 75.4 ], [ 34.0, 75.4 ], [ 34.0, 82.0 ], [ 22.5, 82.0 ], [ 22.5, 89.0 ] ] ], [ [ [ 23.505945, 53.966583 ], [ 23.516417, 54.037724 ], [ 23.488667, 54.151833 ], [ 23.356083, 54.230389 ], [ 23.256416, 54.24786 ], [ 23.147833, 54.311085 ], [ 23.049, 54.312363 ], [ 22.995762, 54.385818 ], [ 22.854555, 54.425472 ], [ 22.749083, 54.35939 ], [ 22.104139, 54.335918 ], [ 21.471472, 54.320694 ], [ 20.540501, 54.371807 ], [ 20.2195, 54.40797 ], [ 20.0, 54.421585 ], [ 19.950777, 54.424641 ], [ 19.7565, 54.435307 ], [ 19.663398, 54.356052 ], [ 19.441123, 54.312752 ], [ 19.411147, 54.384694 ], [ 19.090672, 55.685045 ], [ 19.410828, 56.645512 ], [ 20.397975, 58.35301 ], [ 20.184538, 59.446876 ], [ 19.187388, 60.103536 ], [ 19.094746, 60.205929 ], [ 19.25075, 61.687967 ], [ 20.104499, 63.235387 ], [ 20.672494, 63.499581 ], [ 21.391197, 63.835846 ], [ 21.695116, 63.97247 ], [ 22.499976963275437, 64.447226411525477 ], [ 22.5, 64.44724 ], [ 24.059561, 65.397048 ], [ 24.147694, 65.791832 ], [ 24.151112, 65.802528 ], [ 24.151638, 65.819504 ], [ 24.115778, 65.919136 ], [ 24.042944, 65.957275 ], [ 24.039499, 66.004135 ], [ 23.943167, 66.083359 ], [ 23.932362, 66.149971 ], [ 23.801167, 66.18264 ], [ 23.719305, 66.222969 ], [ 23.655416, 66.306725 ], [ 23.681749, 66.380974 ], [ 23.652805, 66.454781 ], [ 23.876862, 66.5625 ], [ 23.879417, 66.637192 ], [ 23.913084, 66.71933 ], [ 24.011055, 66.830475 ], [ 23.893499, 66.912636 ], [ 23.879889, 66.944527 ], [ 23.781889, 66.999664 ], [ 23.655806, 67.120888 ], [ 23.579195, 67.162582 ], [ 23.584249, 67.223083 ], [ 23.624472, 67.269997 ], [ 23.758667, 67.282692 ], [ 23.786388, 67.427864 ], [ 23.577862, 67.463249 ], [ 23.536472, 67.447388 ], [ 23.441278, 67.46447 ], [ 23.414194, 67.508667 ], [ 23.54175, 67.591309 ], [ 23.482639, 67.724052 ], [ 23.486334, 67.82428 ], [ 23.536612, 67.894997 ], [ 23.642166, 67.919998 ], [ 23.655806, 67.962585 ], [ 23.553473, 68.008224 ], [ 23.40711, 68.046143 ], [ 23.29586, 68.152611 ], [ 23.171833, 68.133003 ], [ 23.150833, 68.242554 ], [ 23.076056, 68.269447 ], [ 23.056694, 68.307358 ], [ 22.999222, 68.32003 ], [ 22.869333, 68.35714 ], [ 22.834167, 68.388306 ], [ 22.73875, 68.387253 ], [ 22.634945, 68.433975 ], [ 22.571945, 68.423752 ], [ 22.340584, 68.474052 ], [ 22.03764, 68.480782 ], [ 22.0035, 68.525276 ], [ 21.904556, 68.576279 ], [ 21.720167, 68.588081 ], [ 21.709278, 68.623253 ], [ 21.581333, 68.670753 ], [ 21.418583, 68.699387 ], [ 21.393528, 68.755333 ], [ 21.301861, 68.763275 ], [ 21.255112, 68.805336 ], [ 21.142139, 68.855972 ], [ 20.991917, 68.893303 ], [ 20.903778, 68.893837 ], [ 20.910833, 68.96489 ], [ 20.764668, 69.037918 ], [ 20.556944, 69.0625 ], [ 20.720501, 69.121361 ], [ 21.060333, 69.044334 ], [ 21.068138, 69.123192 ], [ 21.021723, 69.184303 ], [ 21.040751, 69.234024 ], [ 21.287138, 69.307976 ], [ 21.644028, 69.270081 ], [ 21.823694, 69.156197 ], [ 22.174749, 68.96122 ], [ 22.198416, 68.916031 ], [ 22.3365, 68.83197 ], [ 22.373945, 68.720497 ], [ 22.521334, 68.74408 ], [ 22.798334, 68.691109 ], [ 23.041555, 68.697029 ], [ 23.160749, 68.629059 ], [ 23.446138, 68.697418 ], [ 23.664499, 68.713364 ], [ 23.767916, 68.822365 ], [ 23.874027, 68.839447 ], [ 24.002832, 68.828583 ], [ 24.05125, 68.801804 ], [ 24.152472, 68.796585 ], [ 24.2155, 68.744469 ], [ 24.240305, 68.732971 ], [ 24.653084, 68.683556 ], [ 24.804861, 68.631058 ], [ 24.866417, 68.561081 ], [ 24.916082, 68.609833 ], [ 25.124001, 68.646309 ], [ 25.107389, 68.678802 ], [ 25.142139, 68.796471 ], [ 25.250084, 68.84333 ], [ 25.488527, 68.905556 ], [ 25.624556, 68.889809 ], [ 25.730417, 68.991585 ], [ 25.783417, 69.020248 ], [ 25.735111, 69.107475 ], [ 25.753222, 69.149193 ], [ 25.706833, 69.205696 ], [ 25.708564, 69.208172 ], [ 25.755667, 69.336975 ], [ 25.836916, 69.392693 ], [ 25.806555, 69.433586 ], [ 25.862612, 69.513168 ], [ 25.857361, 69.554947 ], [ 25.950417, 69.580498 ], [ 25.99711, 69.721947 ], [ 26.163723, 69.753639 ], [ 26.258417, 69.815086 ], [ 26.395916, 69.86161 ], [ 26.464695, 69.93911 ], [ 26.681473, 69.965942 ], [ 26.715666, 69.949142 ], [ 26.849194, 69.961525 ], [ 26.876278, 69.934135 ], [ 26.961, 69.938835 ], [ 27.037889, 69.910278 ], [ 27.270834, 69.956306 ], [ 27.353416, 69.992836 ], [ 27.53561, 70.036835 ], [ 27.58264, 70.075447 ], [ 27.761084, 70.068863 ], [ 27.977777, 70.092613 ], [ 28.001583, 70.021942 ], [ 28.117971, 69.953308 ], [ 28.352612, 69.881279 ], [ 28.428473, 69.821083 ], [ 29.135084, 69.696892 ], [ 29.137167, 69.676613 ], [ 29.336166, 69.484413 ], [ 29.223305, 69.410583 ], [ 28.824556, 69.229195 ], [ 28.807751, 69.127419 ], [ 28.832027, 69.092278 ], [ 28.926945, 69.057388 ], [ 28.43475, 68.908417 ], [ 28.500668, 68.882141 ], [ 28.675917, 68.887138 ], [ 28.803528, 68.874947 ], [ 28.718416, 68.739471 ], [ 28.450361, 68.547668 ], [ 28.659805, 68.195114 ], [ 29.334667, 68.074692 ], [ 29.573668, 67.87767 ], [ 29.694529, 67.793747 ], [ 30.027334, 67.682388 ], [ 29.959167, 67.517334 ], [ 29.787722, 67.436165 ], [ 29.642195, 67.353668 ], [ 29.137417, 67.036003 ], [ 29.051889, 66.976753 ], [ 29.029751, 66.91658 ], [ 29.086277, 66.82428 ], [ 29.304695, 66.671997 ], [ 29.476805, 66.541748 ], [ 29.606277, 66.401527 ], [ 29.669861, 66.291946 ], [ 29.917528, 66.127892 ], [ 29.984112, 66.016052 ], [ 30.064695, 65.913391 ], [ 30.127777, 65.734917 ], [ 30.122723, 65.664497 ], [ 30.006639, 65.689919 ], [ 29.734417, 65.627914 ], [ 29.881222, 65.564087 ], [ 29.765388, 65.495026 ], [ 29.743029, 65.390137 ], [ 29.768583, 65.334114 ], [ 29.61861, 65.273392 ], [ 29.657694, 65.227753 ], [ 29.877583, 65.213249 ], [ 29.822889, 65.140419 ], [ 29.835917, 65.089615 ], [ 29.737888, 65.09008 ], [ 29.622833, 65.059166 ], [ 29.596251, 64.989944 ], [ 29.632694, 64.890167 ], [ 29.684055, 64.819504 ], [ 29.754417, 64.788055 ], [ 30.045666, 64.792168 ], [ 30.057112, 64.710808 ], [ 30.143, 64.652748 ], [ 30.018278, 64.591721 ], [ 30.012667, 64.517754 ], [ 30.064972, 64.456024 ], [ 30.052999, 64.404251 ], [ 30.119972, 64.359169 ], [ 30.258417, 64.335777 ], [ 30.369528, 64.277252 ], [ 30.484972, 64.254913 ], [ 30.472694, 64.197639 ], [ 30.550306, 64.125893 ], [ 30.526167, 64.04908 ], [ 30.321112, 63.90189 ], [ 30.239805, 63.818279 ], [ 29.980944, 63.754471 ], [ 30.041584, 63.71125 ], [ 30.251499, 63.603416 ], [ 30.39275, 63.54311 ], [ 30.505138, 63.461861 ], [ 30.790861, 63.404556 ], [ 30.932917, 63.353584 ], [ 30.967722, 63.321251 ], [ 31.085583, 63.287777 ], [ 31.231251, 63.225834 ], [ 31.258556, 63.135639 ], [ 31.318777, 63.088917 ], [ 31.504528, 62.998554 ], [ 31.580944, 62.908028 ], [ 31.435028, 62.780251 ], [ 31.383499, 62.687695 ], [ 31.229834, 62.507057 ], [ 30.718805, 62.212891 ], [ 30.658251, 62.205917 ], [ 30.60014, 62.138668 ], [ 30.352777, 61.980335 ], [ 30.318388, 61.946972 ], [ 30.080111, 61.819332 ], [ 30.046389, 61.766251 ], [ 29.876833, 61.687721 ], [ 29.754749, 61.601387 ], [ 29.747278, 61.572388 ], [ 29.628973, 61.497696 ], [ 29.502832, 61.488529 ], [ 29.490944, 61.44614 ], [ 29.333973, 61.352974 ], [ 29.245556, 61.273418 ], [ 28.984444, 61.177055 ], [ 28.954111, 61.151669 ], [ 28.828861, 61.125832 ], [ 28.729279, 61.055138 ], [ 28.655722, 60.952721 ], [ 28.527666, 60.953278 ], [ 28.314112, 60.838974 ], [ 28.234722, 60.78714 ], [ 28.174639, 60.775776 ], [ 27.877388, 60.601696 ], [ 27.845909, 60.562174 ], [ 27.381131, 60.491447 ], [ 26.873611, 59.970745 ], [ 27.20976, 59.562093 ], [ 27.414087, 59.588457 ], [ 27.710689, 59.502772 ], [ 28.048889, 59.470806 ], [ 28.195778, 59.400696 ], [ 28.197666, 59.350639 ], [ 28.117361, 59.294224 ], [ 27.970722, 59.27486 ], [ 27.808445, 59.129696 ], [ 27.742027, 58.998028 ], [ 27.617445, 58.933498 ], [ 27.548166, 58.861668 ], [ 27.476723, 58.648224 ], [ 27.437056, 58.380474 ], [ 27.509306, 58.265305 ], [ 27.490667, 58.218498 ], [ 27.614889, 58.079193 ], [ 27.625334, 58.005665 ], [ 27.727472, 57.915222 ], [ 27.796778, 57.91497 ], [ 27.826889, 57.858501 ], [ 27.778999, 57.829361 ], [ 27.710501, 57.838974 ], [ 27.559473, 57.830502 ], [ 27.501305, 57.792557 ], [ 27.531027, 57.708637 ], [ 27.445084, 57.712555 ], [ 27.393778, 57.680721 ], [ 27.400749, 57.622002 ], [ 27.327139, 57.575554 ], [ 27.398556, 57.528305 ], [ 27.551195, 57.53886 ], [ 27.521139, 57.440861 ], [ 27.649666, 57.405083 ], [ 27.680166, 57.377918 ], [ 27.839445, 57.316582 ], [ 27.86425, 57.242363 ], [ 27.821472, 57.159668 ], [ 27.758888, 57.127445 ], [ 27.708778, 56.855 ], [ 27.846333, 56.875668 ], [ 27.90225, 56.832165 ], [ 27.960583, 56.827332 ], [ 27.920473, 56.736057 ], [ 27.98325, 56.708057 ], [ 28.039778, 56.595055 ], [ 28.133528, 56.577168 ], [ 28.102556, 56.52261 ], [ 28.184334, 56.441113 ], [ 28.164862, 56.380085 ], [ 28.241138, 56.275555 ], [ 28.192583, 56.234249 ], [ 28.175501, 56.172165 ], [ 28.04089, 56.120361 ], [ 27.969166, 56.117554 ], [ 27.936501, 56.06461 ], [ 27.824389, 56.020054 ], [ 27.804611, 55.987026 ], [ 27.665167, 55.93539 ], [ 27.625389, 55.890415 ], [ 27.602972, 55.786472 ], [ 27.466667, 55.791279 ], [ 27.388472, 55.813473 ], [ 27.299667, 55.791195 ], [ 27.175917, 55.853222 ], [ 27.083471, 55.828804 ], [ 27.008055, 55.831528 ], [ 26.936916, 55.791668 ], [ 26.879417, 55.717251 ], [ 26.803473, 55.688473 ], [ 26.667694, 55.705582 ], [ 26.631611, 55.65786 ], [ 26.628389, 55.580776 ], [ 26.549889, 55.489887 ], [ 26.558945, 55.390388 ], [ 26.593445, 55.323223 ], [ 26.665056, 55.345139 ], [ 26.810556, 55.322834 ], [ 26.685417, 55.203918 ], [ 26.677361, 55.154251 ], [ 26.61511, 55.142445 ], [ 26.498333, 55.154221 ], [ 26.467777, 55.125946 ], [ 26.372444, 55.152748 ], [ 26.262138, 55.109501 ], [ 26.221972, 55.002514 ], [ 26.102001, 54.9659 ], [ 26.068298, 54.937721 ], [ 26.002659, 54.955448 ], [ 25.867794, 54.922829 ], [ 25.754044, 54.815327 ], [ 25.760433, 54.720329 ], [ 25.722933, 54.573635 ], [ 25.645155, 54.480412 ], [ 25.639322, 54.436882 ], [ 25.559238, 54.346996 ], [ 25.595905, 54.315994 ], [ 25.693129, 54.320606 ], [ 25.764601, 54.270523 ], [ 25.796822, 54.204521 ], [ 25.665045, 54.140579 ], [ 25.542711, 54.158524 ], [ 25.586712, 54.249744 ], [ 25.52899, 54.295162 ], [ 25.4501, 54.300606 ], [ 25.37446, 54.275829 ], [ 25.242239, 54.264301 ], [ 25.160072, 54.188522 ], [ 25.077656, 54.141216 ], [ 24.97146, 54.162857 ], [ 24.821545, 54.122993 ], [ 24.805323, 54.078079 ], [ 24.841938, 54.01965 ], [ 24.759064, 53.954456 ], [ 24.632223, 54.006084 ], [ 24.43325, 53.909222 ], [ 24.246639, 53.919109 ], [ 24.155251, 53.961666 ], [ 23.997389, 53.939724 ], [ 23.935749, 53.966557 ], [ 23.84639, 53.956974 ], [ 23.786751, 53.905056 ], [ 23.74225, 53.932804 ], [ 23.63611, 53.916668 ], [ 23.505945, 53.966583 ] ] ] ] } } +] +} diff --git a/sigap-website/public/images/danger-svgrepo-com.png b/sigap-website/public/images/danger-svgrepo-com.png new file mode 100644 index 0000000..049d3dd Binary files /dev/null and b/sigap-website/public/images/danger-svgrepo-com.png differ diff --git a/sigap-website/public/images/hex_shape.svg b/sigap-website/public/images/hex_shape.svg new file mode 100644 index 0000000..0fe941e --- /dev/null +++ b/sigap-website/public/images/hex_shape.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/sigap-website/public/images/hexagons.png b/sigap-website/public/images/hexagons.png new file mode 100644 index 0000000..3dd0b38 Binary files /dev/null and b/sigap-website/public/images/hexagons.png differ diff --git a/sigap-website/public/images/hexagons.svg b/sigap-website/public/images/hexagons.svg new file mode 100644 index 0000000..3e980a2 --- /dev/null +++ b/sigap-website/public/images/hexagons.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/sigap-website/public/images/honeycomb-texture.jpg b/sigap-website/public/images/honeycomb-texture.jpg new file mode 100644 index 0000000..babddd0 Binary files /dev/null and b/sigap-website/public/images/honeycomb-texture.jpg differ diff --git a/sigap-website/public/images/logo-bmkg.webp b/sigap-website/public/images/logo-bmkg.webp new file mode 100644 index 0000000..44cc4da Binary files /dev/null and b/sigap-website/public/images/logo-bmkg.webp differ diff --git a/sigap-website/public/images/long_shape.svg b/sigap-website/public/images/long_shape.svg new file mode 100644 index 0000000..b15590c --- /dev/null +++ b/sigap-website/public/images/long_shape.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/sigap-website/public/images/next.svg b/sigap-website/public/images/next.svg new file mode 100644 index 0000000..5174b28 --- /dev/null +++ b/sigap-website/public/images/next.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/sigap-website/public/images/radar-dish-svgrepo-com.png b/sigap-website/public/images/radar-dish-svgrepo-com.png new file mode 100644 index 0000000..54937ad Binary files /dev/null and b/sigap-website/public/images/radar-dish-svgrepo-com.png differ diff --git a/sigap-website/public/images/radar-dish-svgrepo-com.svg b/sigap-website/public/images/radar-dish-svgrepo-com.svg new file mode 100644 index 0000000..d63850f --- /dev/null +++ b/sigap-website/public/images/radar-dish-svgrepo-com.svg @@ -0,0 +1,7 @@ + + + + + + radar-dish + \ No newline at end of file diff --git a/sigap-website/public/images/strip.png b/sigap-website/public/images/strip.png new file mode 100644 index 0000000..858f237 Binary files /dev/null and b/sigap-website/public/images/strip.png differ diff --git a/sigap-website/public/images/strip.svg b/sigap-website/public/images/strip.svg new file mode 100644 index 0000000..701e1ec --- /dev/null +++ b/sigap-website/public/images/strip.svg @@ -0,0 +1,25 @@ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sigap-website/public/images/triangle-filled-svgrepo-com.png b/sigap-website/public/images/triangle-filled-svgrepo-com.png new file mode 100644 index 0000000..0b8db16 Binary files /dev/null and b/sigap-website/public/images/triangle-filled-svgrepo-com.png differ diff --git a/sigap-website/public/images/vercel.svg b/sigap-website/public/images/vercel.svg new file mode 100644 index 0000000..d2f8422 --- /dev/null +++ b/sigap-website/public/images/vercel.svg @@ -0,0 +1 @@ + \ No newline at end of file diff --git a/sigap-website/public/images/warning_gempa_black.png b/sigap-website/public/images/warning_gempa_black.png new file mode 100644 index 0000000..3d7ac87 Binary files /dev/null and b/sigap-website/public/images/warning_gempa_black.png differ diff --git a/sigap-website/public/images/warning_gempa_black.svg b/sigap-website/public/images/warning_gempa_black.svg new file mode 100644 index 0000000..f3a9c12 --- /dev/null +++ b/sigap-website/public/images/warning_gempa_black.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sigap-website/public/images/warning_gempa_red_yellow.svg b/sigap-website/public/images/warning_gempa_red_yellow.svg new file mode 100644 index 0000000..d61512a --- /dev/null +++ b/sigap-website/public/images/warning_gempa_red_yellow.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sigap-website/public/images/warning_hex_red.png b/sigap-website/public/images/warning_hex_red.png new file mode 100644 index 0000000..bf1e896 Binary files /dev/null and b/sigap-website/public/images/warning_hex_red.png differ diff --git a/sigap-website/public/images/warning_shape_black.svg b/sigap-website/public/images/warning_shape_black.svg new file mode 100644 index 0000000..7ab763a --- /dev/null +++ b/sigap-website/public/images/warning_shape_black.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sigap-website/public/images/warning_tsunami_yellow.png b/sigap-website/public/images/warning_tsunami_yellow.png new file mode 100644 index 0000000..64dc956 Binary files /dev/null and b/sigap-website/public/images/warning_tsunami_yellow.png differ diff --git a/sigap-website/public/sounds/error-2-126514.mp3 b/sigap-website/public/sounds/error-2-126514.mp3 new file mode 100644 index 0000000..41bc0d7 Binary files /dev/null and b/sigap-website/public/sounds/error-2-126514.mp3 differ diff --git a/sigap-website/public/sounds/error-2-126514.wav b/sigap-website/public/sounds/error-2-126514.wav new file mode 100644 index 0000000..8816979 Binary files /dev/null and b/sigap-website/public/sounds/error-2-126514.wav differ diff --git a/sigap-website/public/sounds/error-call-to-attention-129258.mp3 b/sigap-website/public/sounds/error-call-to-attention-129258.mp3 new file mode 100644 index 0000000..a629c44 Binary files /dev/null and b/sigap-website/public/sounds/error-call-to-attention-129258.mp3 differ diff --git a/sigap-website/public/sounds/security-alarm-80493.mp3 b/sigap-website/public/sounds/security-alarm-80493.mp3 new file mode 100644 index 0000000..5de24dd Binary files /dev/null and b/sigap-website/public/sounds/security-alarm-80493.mp3 differ diff --git a/sigap-website/public/sounds/siren-alarm-96503.mp3 b/sigap-website/public/sounds/siren-alarm-96503.mp3 new file mode 100644 index 0000000..bbf8506 Binary files /dev/null and b/sigap-website/public/sounds/siren-alarm-96503.mp3 differ diff --git a/sigap-website/public/sounds/system-notification-199277.mp3 b/sigap-website/public/sounds/system-notification-199277.mp3 new file mode 100644 index 0000000..a0f2e2d Binary files /dev/null and b/sigap-website/public/sounds/system-notification-199277.mp3 differ diff --git a/sigap-website/public/sounds/wrong-answer-129254.mp3 b/sigap-website/public/sounds/wrong-answer-129254.mp3 new file mode 100644 index 0000000..c3afd09 Binary files /dev/null and b/sigap-website/public/sounds/wrong-answer-129254.mp3 differ diff --git a/sigap-website/public/svg/hex_shape.svg b/sigap-website/public/svg/hex_shape.svg new file mode 100644 index 0000000..0fe941e --- /dev/null +++ b/sigap-website/public/svg/hex_shape.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/sigap-website/public/svg/hexagon.svg b/sigap-website/public/svg/hexagon.svg new file mode 100644 index 0000000..c90ff02 --- /dev/null +++ b/sigap-website/public/svg/hexagon.svg @@ -0,0 +1,3 @@ + + + diff --git a/sigap-website/public/svg/long_shape.svg b/sigap-website/public/svg/long_shape.svg new file mode 100644 index 0000000..b15590c --- /dev/null +++ b/sigap-website/public/svg/long_shape.svg @@ -0,0 +1,5 @@ + + + + + diff --git a/sigap-website/public/svg/warning_gempa_black.svg b/sigap-website/public/svg/warning_gempa_black.svg new file mode 100644 index 0000000..f3a9c12 --- /dev/null +++ b/sigap-website/public/svg/warning_gempa_black.svg @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sigap-website/public/svg/warning_gempa_red_yellow.svg b/sigap-website/public/svg/warning_gempa_red_yellow.svg new file mode 100644 index 0000000..d61512a --- /dev/null +++ b/sigap-website/public/svg/warning_gempa_red_yellow.svg @@ -0,0 +1,46 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/sigap-website/public/svg/warning_shape_black.svg b/sigap-website/public/svg/warning_shape_black.svg new file mode 100644 index 0000000..7ab763a --- /dev/null +++ b/sigap-website/public/svg/warning_shape_black.svg @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/sigap-website/public/voice/awas.wav b/sigap-website/public/voice/awas.wav new file mode 100644 index 0000000..abb307f Binary files /dev/null and b/sigap-website/public/voice/awas.wav differ diff --git a/sigap-website/public/voice/evakuasi.wav b/sigap-website/public/voice/evakuasi.wav new file mode 100644 index 0000000..e15f60b Binary files /dev/null and b/sigap-website/public/voice/evakuasi.wav differ diff --git a/sigap-website/public/voice/gempabumi.wav b/sigap-website/public/voice/gempabumi.wav new file mode 100644 index 0000000..0e9565b Binary files /dev/null and b/sigap-website/public/voice/gempabumi.wav differ diff --git a/sigap-website/public/voice/informasi.wav b/sigap-website/public/voice/informasi.wav new file mode 100644 index 0000000..e5833f9 Binary files /dev/null and b/sigap-website/public/voice/informasi.wav differ diff --git a/sigap-website/public/voice/potensi.wav b/sigap-website/public/voice/potensi.wav new file mode 100644 index 0000000..4fc7456 Binary files /dev/null and b/sigap-website/public/voice/potensi.wav differ diff --git a/sigap-website/public/voice/siaga.wav b/sigap-website/public/voice/siaga.wav new file mode 100644 index 0000000..9d02279 Binary files /dev/null and b/sigap-website/public/voice/siaga.wav differ diff --git a/sigap-website/public/voice/terdeteksi.wav b/sigap-website/public/voice/terdeteksi.wav new file mode 100644 index 0000000..3a89020 Binary files /dev/null and b/sigap-website/public/voice/terdeteksi.wav differ diff --git a/sigap-website/public/voice/waspada.wav b/sigap-website/public/voice/waspada.wav new file mode 100644 index 0000000..7556bd7 Binary files /dev/null and b/sigap-website/public/voice/waspada.wav differ